diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 42fe713f..3e695f6d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,18 +38,17 @@ jobs: repository: tree-sitter/tree-sitter-c path: node_modules/tree-sitter-c sparse-checkout: queries/ - ref: v0.23.6 + ref: v0.24.1 - name: Set up tree-sitter uses: tree-sitter/setup-action/cli@v2 - name: Run tests uses: tree-sitter/parser-test-action@v3 with: test-rust: true - test-node: true + # test-node: true test-python: true test-go: true test-swift: true - abi-version: 14 - name: Parse examples uses: tree-sitter/parse-action@v4 with: diff --git a/Cargo.toml b/Cargo.toml index 82f541cc..260244ab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,9 +29,10 @@ path = "bindings/rust/lib.rs" [dependencies] tree-sitter-language = "0.1" +tree-sitter = { version = "0.26", optional = true } [build-dependencies] -cc = "1.1" +cc = "1.2" [dev-dependencies] -tree-sitter = "0.24" +tree-sitter = "0.26.5" diff --git a/grammar.js b/grammar.js index 9724e2e9..ffbaf0f1 100644 --- a/grammar.js +++ b/grammar.js @@ -50,6 +50,10 @@ const ASSIGNMENT_OPERATORS = [ 'xor_eq', ]; +const commaSep = C.commaSep; +const commaSep1 = C.commaSep1; +const preprocIf = C.preprocIf; + module.exports = grammar(C, { name: 'cpp', @@ -133,8 +137,12 @@ module.exports = grammar(C, { alias($.operator_cast_definition, $.function_definition), alias($.operator_cast_declaration, $.declaration), ), + _block_item: ($, original) => choice( - ...original.members.filter((member) => member.content?.name != '_old_style_function_definition'), + ...original.members.filter((member) => + member.content?.name != '_old_style_function_definition' && + !member.name.startsWith('preproc_if'), + ), $.namespace_definition, $.concept_definition, $.namespace_alias_definition, @@ -144,11 +152,18 @@ module.exports = grammar(C, { $.consteval_block_declaration, $.template_declaration, $.template_instantiation, + $.export_declaration, + $.import_declaration, + alias($.preproc_if_in_block, $.preproc_if), + alias($.preproc_ifdef_in_block, $.preproc_ifdef), alias($.constructor_or_destructor_definition, $.function_definition), alias($.operator_cast_definition, $.function_definition), alias($.operator_cast_declaration, $.declaration), ), + ...preprocIf('', $ => $._top_level_item), + ...preprocIf('_in_block', $ => $._block_item), + // Types placeholder_type_specifier: $ => prec(1, seq( @@ -371,13 +386,12 @@ module.exports = grammar(C, { ';', ), - export_declaration: $ => seq( + export_declaration: $ => prec(1, seq( 'export', - choice($._block_item, seq('{', repeat($._block_item), '}')), - ), + choice($._block_item, $.declaration_list), + )), import_declaration: $ => seq( - optional('export'), 'import', choice( field('name', $.module_name), @@ -1587,25 +1601,3 @@ module.exports = grammar(C, { _namespace_identifier: $ => alias($.identifier, $.namespace_identifier), }, }); - -/** - * Creates a rule to optionally match one or more of the rules separated by a comma - * - * @param {Rule} rule - * - * @returns {ChoiceRule} - */ -function commaSep(rule) { - return optional(commaSep1(rule)); -} - -/** - * Creates a rule to match one or more of the rules separated by a comma - * - * @param {Rule} rule - * - * @returns {SeqRule} - */ -function commaSep1(rule) { - return seq(rule, repeat(seq(',', rule))); -} diff --git a/package-lock.json b/package-lock.json index 2420e0d3..85f932f3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -12,13 +12,13 @@ "dependencies": { "node-addon-api": "^8.2.1", "node-gyp-build": "^4.8.2", - "tree-sitter-c": "^0.23.6" + "tree-sitter-c": "^0.24.0" }, "devDependencies": { "eslint": "^9.12.0", "eslint-config-treesitter": "^1.0.2", "prebuildify": "^6.0.1", - "tree-sitter-cli": "^0.25.0" + "tree-sitter-cli": "^0.26.0" }, "peerDependencies": { "tree-sitter": "^0.22.4" @@ -1434,31 +1434,18 @@ "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "dev": true }, - "node_modules/tree-sitter": { - "version": "0.22.4", - "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.22.4.tgz", - "integrity": "sha512-usbHZP9/oxNsUY65MQUsduGRqDHQOou1cagUSwjhoSYAmSahjQDAVsh9s+SlZkn8X8+O1FULRGwHu7AFP3kjzg==", - "hasInstallScript": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "node-addon-api": "^8.3.0", - "node-gyp-build": "^4.8.4" - } - }, "node_modules/tree-sitter-c": { - "version": "0.23.6", - "resolved": "https://registry.npmjs.org/tree-sitter-c/-/tree-sitter-c-0.23.6.tgz", - "integrity": "sha512-0dxXKznVyUA0s6PjNolJNs2yF87O5aL538A/eR6njA5oqX3C3vH4vnx3QdOKwuUdpKEcFdHuiDpRKLLCA/tjvQ==", + "version": "0.24.1", + "resolved": "https://registry.npmjs.org/tree-sitter-c/-/tree-sitter-c-0.24.1.tgz", + "integrity": "sha512-lkYwWN3SRecpvaeqmFKkuPNR3ZbtnvHU+4XAEEkJdrp3JfSp2pBrhXOtvfsENUneye76g889Y0ddF2DM0gEDpA==", "hasInstallScript": true, "license": "MIT", "dependencies": { - "node-addon-api": "^8.3.0", + "node-addon-api": "^8.3.1", "node-gyp-build": "^4.8.4" }, "peerDependencies": { - "tree-sitter": "^0.22.1" + "tree-sitter": "^0.22.4" }, "peerDependenciesMeta": { "tree-sitter": { @@ -1467,9 +1454,9 @@ } }, "node_modules/tree-sitter-cli": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.25.9.tgz", - "integrity": "sha512-xcS2EJlNdwG529/JcYl5jV0ew/wY+HXvyNe8nkqhDCwQqxCH7odc9oLKxIWePQqmIKgieZ0YaGyieYKQI3MTKQ==", + "version": "0.26.5", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.26.5.tgz", + "integrity": "sha512-joGY67M2XUVM+ZEs7vTYmSbiDgxtwbuMf1OdKk8q1Dd6wTlbhgtU/mr3j0krBgQs2Zwom6N7vxZaqoM85b79Mw==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/package.json b/package.json index 1a135eb4..51b1e8fc 100644 --- a/package.json +++ b/package.json @@ -35,13 +35,13 @@ "dependencies": { "node-addon-api": "^8.2.1", "node-gyp-build": "^4.8.2", - "tree-sitter-c": "^0.23.6" + "tree-sitter-c": "^0.24.0" }, "devDependencies": { "eslint": "^9.12.0", "eslint-config-treesitter": "^1.0.2", "prebuildify": "^6.0.1", - "tree-sitter-cli": "^0.25.0" + "tree-sitter-cli": "^0.26.0" }, "peerDependencies": { "tree-sitter": "^0.22.4" diff --git a/src/grammar.json b/src/grammar.json index dd079bf2..a091cbff 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -182,14 +182,6 @@ "type": "SYMBOL", "name": "_empty_declaration" }, - { - "type": "SYMBOL", - "name": "preproc_if" - }, - { - "type": "SYMBOL", - "name": "preproc_ifdef" - }, { "type": "SYMBOL", "name": "preproc_include" @@ -242,6 +234,32 @@ "type": "SYMBOL", "name": "template_instantiation" }, + { + "type": "SYMBOL", + "name": "export_declaration" + }, + { + "type": "SYMBOL", + "name": "import_declaration" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_if_in_block" + }, + "named": true, + "value": "preproc_if" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_ifdef_in_block" + }, + "named": true, + "value": "preproc_ifdef" + }, { "type": "ALIAS", "content": { @@ -554,7 +572,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_block_item" + "name": "_top_level_item" } }, { @@ -639,7 +657,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_block_item" + "name": "_top_level_item" } }, { @@ -702,7 +720,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_block_item" + "name": "_top_level_item" } } ] @@ -739,7 +757,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_block_item" + "name": "_top_level_item" } }, { @@ -815,7 +833,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_block_item" + "name": "_top_level_item" } }, { @@ -11224,6 +11242,393 @@ ] } }, + "preproc_if_in_block": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*if" + }, + "named": false, + "value": "#if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_block_item" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_block" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_block" + }, + "named": true, + "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_block" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" + } + ] + } + }, + "preproc_ifdef_in_block": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*ifdef" + }, + "named": false, + "value": "#ifdef" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*ifndef" + }, + "named": false, + "value": "#ifndef" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_block_item" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_block" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_block" + }, + "named": true, + "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_block" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" + } + ] + } + }, + "preproc_else_in_block": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*else" + }, + "named": false, + "value": "#else" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_block_item" + } + } + ] + } + }, + "preproc_elif_in_block": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elif" + }, + "named": false, + "value": "#elif" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "STRING", + "value": "\n" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_block_item" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_block" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_block" + }, + "named": true, + "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_block" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + } + }, + "preproc_elifdef_in_block": { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elifdef" + }, + "named": false, + "value": "#elifdef" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elifndef" + }, + "named": false, + "value": "#elifndef" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_block_item" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_block" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_block" + }, + "named": true, + "value": "preproc_elif" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elifdef_in_block" + }, + "named": true, + "value": "preproc_elifdef" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + } + }, "placeholder_type_specifier": { "type": "PREC", "value": 1, @@ -11929,58 +12334,34 @@ ] }, "export_declaration": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "export" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_block_item" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_block_item" - } - }, - { - "type": "STRING", - "value": "}" - } - ] - } - ] - } - ] + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "export" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_block_item" + }, + { + "type": "SYMBOL", + "name": "declaration_list" + } + ] + } + ] + } }, "import_declaration": { "type": "SEQ", "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "export" - }, - { - "type": "BLANK" - } - ] - }, { "type": "STRING", "value": "import" diff --git a/src/node-types.json b/src/node-types.json index 7e40882b..3b108232 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1706,10 +1706,18 @@ "type": "declaration", "named": true }, + { + "type": "export_declaration", + "named": true + }, { "type": "function_definition", "named": true }, + { + "type": "import_declaration", + "named": true + }, { "type": "linkage_specification", "named": true @@ -2233,10 +2241,18 @@ "type": "declaration", "named": true }, + { + "type": "export_declaration", + "named": true + }, { "type": "function_definition", "named": true }, + { + "type": "import_declaration", + "named": true + }, { "type": "linkage_specification", "named": true @@ -2690,8 +2706,8 @@ "named": true, "fields": {}, "children": { - "multiple": true, - "required": false, + "multiple": false, + "required": true, "types": [ { "type": "alias_declaration", @@ -2709,10 +2725,22 @@ "type": "declaration", "named": true }, + { + "type": "declaration_list", + "named": true + }, + { + "type": "export_declaration", + "named": true + }, { "type": "function_definition", "named": true }, + { + "type": "import_declaration", + "named": true + }, { "type": "linkage_specification", "named": true @@ -5321,6 +5349,10 @@ "type": "enumerator", "named": true }, + { + "type": "export_declaration", + "named": true + }, { "type": "field_declaration", "named": true @@ -5333,10 +5365,22 @@ "type": "function_definition", "named": true }, + { + "type": "global_module_fragment_declaration", + "named": true + }, + { + "type": "import_declaration", + "named": true + }, { "type": "linkage_specification", "named": true }, + { + "type": "module_declaration", + "named": true + }, { "type": "namespace_alias_definition", "named": true @@ -5369,6 +5413,10 @@ "type": "preproc_include", "named": true }, + { + "type": "private_module_fragment_declaration", + "named": true + }, { "type": "statement", "named": true @@ -5461,6 +5509,10 @@ "type": "enumerator", "named": true }, + { + "type": "export_declaration", + "named": true + }, { "type": "field_declaration", "named": true @@ -5473,10 +5525,22 @@ "type": "function_definition", "named": true }, + { + "type": "global_module_fragment_declaration", + "named": true + }, + { + "type": "import_declaration", + "named": true + }, { "type": "linkage_specification", "named": true }, + { + "type": "module_declaration", + "named": true + }, { "type": "namespace_alias_definition", "named": true @@ -5509,6 +5573,10 @@ "type": "preproc_include", "named": true }, + { + "type": "private_module_fragment_declaration", + "named": true + }, { "type": "statement", "named": true @@ -5572,6 +5640,10 @@ "type": "enumerator", "named": true }, + { + "type": "export_declaration", + "named": true + }, { "type": "field_declaration", "named": true @@ -5584,10 +5656,22 @@ "type": "function_definition", "named": true }, + { + "type": "global_module_fragment_declaration", + "named": true + }, + { + "type": "import_declaration", + "named": true + }, { "type": "linkage_specification", "named": true }, + { + "type": "module_declaration", + "named": true + }, { "type": "namespace_alias_definition", "named": true @@ -5620,6 +5704,10 @@ "type": "preproc_include", "named": true }, + { + "type": "private_module_fragment_declaration", + "named": true + }, { "type": "statement", "named": true @@ -5776,6 +5864,10 @@ "type": "enumerator", "named": true }, + { + "type": "export_declaration", + "named": true + }, { "type": "field_declaration", "named": true @@ -5788,10 +5880,22 @@ "type": "function_definition", "named": true }, + { + "type": "global_module_fragment_declaration", + "named": true + }, + { + "type": "import_declaration", + "named": true + }, { "type": "linkage_specification", "named": true }, + { + "type": "module_declaration", + "named": true + }, { "type": "namespace_alias_definition", "named": true @@ -5824,6 +5928,10 @@ "type": "preproc_include", "named": true }, + { + "type": "private_module_fragment_declaration", + "named": true + }, { "type": "statement", "named": true @@ -5916,6 +6024,10 @@ "type": "enumerator", "named": true }, + { + "type": "export_declaration", + "named": true + }, { "type": "field_declaration", "named": true @@ -5928,10 +6040,22 @@ "type": "function_definition", "named": true }, + { + "type": "global_module_fragment_declaration", + "named": true + }, + { + "type": "import_declaration", + "named": true + }, { "type": "linkage_specification", "named": true }, + { + "type": "module_declaration", + "named": true + }, { "type": "namespace_alias_definition", "named": true @@ -5964,6 +6088,10 @@ "type": "preproc_include", "named": true }, + { + "type": "private_module_fragment_declaration", + "named": true + }, { "type": "statement", "named": true diff --git a/src/parser.c b/src/parser.c index 25331c8d..a19b69eb 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,4 +1,4 @@ -/* Automatically @generated by tree-sitter v0.25.9 */ +/* Automatically @generated by tree-sitter */ #include "tree_sitter/parser.h" @@ -14,18 +14,18 @@ #pragma GCC optimize ("O0") #endif -#define LANGUAGE_VERSION 14 -#define STATE_COUNT 11551 -#define LARGE_STATE_COUNT 3721 -#define SYMBOL_COUNT 565 +#define LANGUAGE_VERSION 15 +#define STATE_COUNT 11734 +#define LARGE_STATE_COUNT 3826 +#define SYMBOL_COUNT 570 #define ALIAS_COUNT 5 #define TOKEN_COUNT 225 #define EXTERNAL_TOKEN_COUNT 2 #define FIELD_COUNT 53 #define MAX_ALIAS_SEQUENCE_LENGTH 9 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 236 -#define SUPERTYPE_COUNT 0 +#define PRODUCTION_ID_COUNT 234 +#define SUPERTYPE_COUNT 7 enum ts_symbol_identifiers { sym_identifier = 1, @@ -407,196 +407,201 @@ enum ts_symbol_identifiers { sym_string_literal = 377, sym_null = 378, sym__empty_declaration = 379, - sym_placeholder_type_specifier = 380, - sym_decltype_auto = 381, - sym_decltype = 382, - sym_annotation = 383, - sym__class_declaration = 384, - sym__class_declaration_item = 385, - sym_class_specifier = 386, - sym__class_name = 387, - sym_virtual_specifier = 388, - sym_explicit_function_specifier = 389, - sym_base_class_clause = 390, - sym__enum_base_clause = 391, - sym_dependent_type = 392, - sym_module_name = 393, - sym_module_partition = 394, - sym_module_declaration = 395, - sym_export_declaration = 396, - sym_import_declaration = 397, - sym_global_module_fragment_declaration = 398, - sym_private_module_fragment_declaration = 399, - sym_template_declaration = 400, - sym_template_instantiation = 401, - sym_template_parameter_list = 402, - sym_type_parameter_declaration = 403, - sym_variadic_type_parameter_declaration = 404, - sym_optional_type_parameter_declaration = 405, - sym_template_template_parameter_declaration = 406, - sym_explicit_object_parameter_declaration = 407, - sym_optional_parameter_declaration = 408, - sym_variadic_parameter_declaration = 409, - sym_variadic_declarator = 410, - sym_variadic_reference_declarator = 411, - sym_operator_cast = 412, - sym_field_initializer_list = 413, - sym_field_initializer = 414, - sym_inline_method_definition = 415, - sym__constructor_specifiers = 416, - sym_operator_cast_definition = 417, - sym_operator_cast_declaration = 418, - sym_constructor_try_statement = 419, - sym_constructor_or_destructor_definition = 420, - sym_constructor_or_destructor_declaration = 421, - sym_default_method_clause = 422, - sym_delete_method_clause = 423, - sym_pure_virtual_clause = 424, - sym_friend_declaration = 425, - sym_access_specifier = 426, - sym_reference_declarator = 427, - sym_reference_field_declarator = 428, - sym_reference_type_declarator = 429, - sym_abstract_reference_declarator = 430, - sym_structured_binding_declarator = 431, - sym_ref_qualifier = 432, - sym__function_declarator_seq = 433, - sym__function_attributes_start = 434, - sym__function_exception_specification = 435, - sym__function_attributes_end = 436, - sym__function_postfix = 437, - sym_trailing_return_type = 438, - sym_noexcept = 439, - sym_throw_specifier = 440, - sym_template_type = 441, - sym_template_method = 442, - sym_template_function = 443, - sym_template_argument_list = 444, - sym_namespace_definition = 445, - sym_namespace_alias_definition = 446, - sym__namespace_specifier = 447, - sym_nested_namespace_specifier = 448, - sym_using_declaration = 449, - sym_alias_declaration = 450, - sym_static_assert_declaration = 451, - sym_consteval_block_declaration = 452, - sym_concept_definition = 453, - sym_for_range_loop = 454, - sym__for_range_loop_body = 455, - sym_init_statement = 456, - sym_condition_clause = 457, - sym_condition_declaration = 458, - sym_co_return_statement = 459, - sym_co_yield_statement = 460, - sym_throw_statement = 461, - sym_try_statement = 462, - sym_catch_clause = 463, - sym_raw_string_literal = 464, - sym_subscript_argument_list = 465, - sym_co_await_expression = 466, - sym_new_expression = 467, - sym_new_declarator = 468, - sym_delete_expression = 469, - sym_type_requirement = 470, - sym_compound_requirement = 471, - sym__requirement = 472, - sym_requirement_seq = 473, - sym_constraint_conjunction = 474, - sym_constraint_disjunction = 475, - sym__requirement_clause_constraint = 476, - sym_requires_clause = 477, - sym_requires_parameter_list = 478, - sym_requires_expression = 479, - sym_lambda_specifier = 480, - sym_lambda_declarator = 481, - sym_lambda_expression = 482, - sym_lambda_capture_specifier = 483, - sym_lambda_default_capture = 484, - sym__lambda_capture_identifier = 485, - sym_lambda_capture_initializer = 486, - sym__lambda_capture = 487, - sym__fold_operator = 488, - sym__binary_fold_operator = 489, - sym__unary_left_fold = 490, - sym__unary_right_fold = 491, - sym__binary_fold = 492, - sym_fold_expression = 493, - sym_parameter_pack_expansion = 494, - sym_type_parameter_pack_expansion = 495, - sym_identifier_parameter_pack_expansion = 496, - sym_destructor_name = 497, - sym_dependent_identifier = 498, - sym_dependent_field_identifier = 499, - sym_dependent_type_identifier = 500, - sym__scope_resolution = 501, - sym_qualified_field_identifier = 502, - sym_qualified_identifier = 503, - sym_qualified_type_identifier = 504, - sym_qualified_operator_cast_identifier = 505, - sym__assignment_expression_lhs = 506, - sym_reflect_expression = 507, - sym_splice_specifier = 508, - sym__splice_specialization_specifier = 509, - sym_splice_type_specifier = 510, - sym_splice_expression = 511, - sym_expansion_statement = 512, - sym_operator_name = 513, - sym_user_defined_literal = 514, - aux_sym_translation_unit_repeat1 = 515, - aux_sym_preproc_params_repeat1 = 516, - aux_sym_preproc_if_repeat1 = 517, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 518, - aux_sym_preproc_if_in_enumerator_list_repeat1 = 519, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 520, - aux_sym_preproc_argument_list_repeat1 = 521, - aux_sym_declaration_repeat1 = 522, - aux_sym_type_definition_repeat1 = 523, - aux_sym__type_definition_type_repeat1 = 524, - aux_sym__type_definition_declarators_repeat1 = 525, - aux_sym__declaration_specifiers_repeat1 = 526, - aux_sym_attribute_declaration_repeat1 = 527, - aux_sym_attribute_declaration_repeat2 = 528, - aux_sym_attributed_declarator_repeat1 = 529, - aux_sym_pointer_declarator_repeat1 = 530, - aux_sym_array_declarator_repeat1 = 531, - aux_sym_sized_type_specifier_repeat1 = 532, - aux_sym_enumerator_list_repeat1 = 533, - aux_sym_field_declaration_repeat1 = 534, - aux_sym_parameter_list_repeat1 = 535, - aux_sym_case_statement_repeat1 = 536, - aux_sym_generic_expression_repeat1 = 537, - aux_sym_gnu_asm_expression_repeat1 = 538, - aux_sym_gnu_asm_output_operand_list_repeat1 = 539, - aux_sym_gnu_asm_input_operand_list_repeat1 = 540, - aux_sym_gnu_asm_clobber_list_repeat1 = 541, - aux_sym_gnu_asm_goto_list_repeat1 = 542, - aux_sym_argument_list_repeat1 = 543, - aux_sym_initializer_list_repeat1 = 544, - aux_sym_initializer_pair_repeat1 = 545, - aux_sym_char_literal_repeat1 = 546, - aux_sym_concatenated_string_repeat1 = 547, - aux_sym_string_literal_repeat1 = 548, - aux_sym__class_declaration_repeat1 = 549, - aux_sym_base_class_clause_repeat1 = 550, - aux_sym_module_name_repeat1 = 551, - aux_sym_template_parameter_list_repeat1 = 552, - aux_sym_field_initializer_list_repeat1 = 553, - aux_sym_operator_cast_definition_repeat1 = 554, - aux_sym_constructor_try_statement_repeat1 = 555, - aux_sym_structured_binding_declarator_repeat1 = 556, - aux_sym__function_postfix_repeat1 = 557, - aux_sym_throw_specifier_repeat1 = 558, - aux_sym_template_argument_list_repeat1 = 559, - aux_sym_subscript_argument_list_repeat1 = 560, - aux_sym_requirement_seq_repeat1 = 561, - aux_sym_requires_parameter_list_repeat1 = 562, - aux_sym_lambda_declarator_repeat1 = 563, - aux_sym_lambda_capture_specifier_repeat1 = 564, - alias_sym_field_identifier = 565, - alias_sym_namespace_identifier = 566, - alias_sym_simple_requirement = 567, - alias_sym_statement_identifier = 568, - alias_sym_type_identifier = 569, + sym_preproc_if_in_block = 380, + sym_preproc_ifdef_in_block = 381, + sym_preproc_else_in_block = 382, + sym_preproc_elif_in_block = 383, + sym_preproc_elifdef_in_block = 384, + sym_placeholder_type_specifier = 385, + sym_decltype_auto = 386, + sym_decltype = 387, + sym_annotation = 388, + sym__class_declaration = 389, + sym__class_declaration_item = 390, + sym_class_specifier = 391, + sym__class_name = 392, + sym_virtual_specifier = 393, + sym_explicit_function_specifier = 394, + sym_base_class_clause = 395, + sym__enum_base_clause = 396, + sym_dependent_type = 397, + sym_module_name = 398, + sym_module_partition = 399, + sym_module_declaration = 400, + sym_export_declaration = 401, + sym_import_declaration = 402, + sym_global_module_fragment_declaration = 403, + sym_private_module_fragment_declaration = 404, + sym_template_declaration = 405, + sym_template_instantiation = 406, + sym_template_parameter_list = 407, + sym_type_parameter_declaration = 408, + sym_variadic_type_parameter_declaration = 409, + sym_optional_type_parameter_declaration = 410, + sym_template_template_parameter_declaration = 411, + sym_explicit_object_parameter_declaration = 412, + sym_optional_parameter_declaration = 413, + sym_variadic_parameter_declaration = 414, + sym_variadic_declarator = 415, + sym_variadic_reference_declarator = 416, + sym_operator_cast = 417, + sym_field_initializer_list = 418, + sym_field_initializer = 419, + sym_inline_method_definition = 420, + sym__constructor_specifiers = 421, + sym_operator_cast_definition = 422, + sym_operator_cast_declaration = 423, + sym_constructor_try_statement = 424, + sym_constructor_or_destructor_definition = 425, + sym_constructor_or_destructor_declaration = 426, + sym_default_method_clause = 427, + sym_delete_method_clause = 428, + sym_pure_virtual_clause = 429, + sym_friend_declaration = 430, + sym_access_specifier = 431, + sym_reference_declarator = 432, + sym_reference_field_declarator = 433, + sym_reference_type_declarator = 434, + sym_abstract_reference_declarator = 435, + sym_structured_binding_declarator = 436, + sym_ref_qualifier = 437, + sym__function_declarator_seq = 438, + sym__function_attributes_start = 439, + sym__function_exception_specification = 440, + sym__function_attributes_end = 441, + sym__function_postfix = 442, + sym_trailing_return_type = 443, + sym_noexcept = 444, + sym_throw_specifier = 445, + sym_template_type = 446, + sym_template_method = 447, + sym_template_function = 448, + sym_template_argument_list = 449, + sym_namespace_definition = 450, + sym_namespace_alias_definition = 451, + sym__namespace_specifier = 452, + sym_nested_namespace_specifier = 453, + sym_using_declaration = 454, + sym_alias_declaration = 455, + sym_static_assert_declaration = 456, + sym_consteval_block_declaration = 457, + sym_concept_definition = 458, + sym_for_range_loop = 459, + sym__for_range_loop_body = 460, + sym_init_statement = 461, + sym_condition_clause = 462, + sym_condition_declaration = 463, + sym_co_return_statement = 464, + sym_co_yield_statement = 465, + sym_throw_statement = 466, + sym_try_statement = 467, + sym_catch_clause = 468, + sym_raw_string_literal = 469, + sym_subscript_argument_list = 470, + sym_co_await_expression = 471, + sym_new_expression = 472, + sym_new_declarator = 473, + sym_delete_expression = 474, + sym_type_requirement = 475, + sym_compound_requirement = 476, + sym__requirement = 477, + sym_requirement_seq = 478, + sym_constraint_conjunction = 479, + sym_constraint_disjunction = 480, + sym__requirement_clause_constraint = 481, + sym_requires_clause = 482, + sym_requires_parameter_list = 483, + sym_requires_expression = 484, + sym_lambda_specifier = 485, + sym_lambda_declarator = 486, + sym_lambda_expression = 487, + sym_lambda_capture_specifier = 488, + sym_lambda_default_capture = 489, + sym__lambda_capture_identifier = 490, + sym_lambda_capture_initializer = 491, + sym__lambda_capture = 492, + sym__fold_operator = 493, + sym__binary_fold_operator = 494, + sym__unary_left_fold = 495, + sym__unary_right_fold = 496, + sym__binary_fold = 497, + sym_fold_expression = 498, + sym_parameter_pack_expansion = 499, + sym_type_parameter_pack_expansion = 500, + sym_identifier_parameter_pack_expansion = 501, + sym_destructor_name = 502, + sym_dependent_identifier = 503, + sym_dependent_field_identifier = 504, + sym_dependent_type_identifier = 505, + sym__scope_resolution = 506, + sym_qualified_field_identifier = 507, + sym_qualified_identifier = 508, + sym_qualified_type_identifier = 509, + sym_qualified_operator_cast_identifier = 510, + sym__assignment_expression_lhs = 511, + sym_reflect_expression = 512, + sym_splice_specifier = 513, + sym__splice_specialization_specifier = 514, + sym_splice_type_specifier = 515, + sym_splice_expression = 516, + sym_expansion_statement = 517, + sym_operator_name = 518, + sym_user_defined_literal = 519, + aux_sym_translation_unit_repeat1 = 520, + aux_sym_preproc_params_repeat1 = 521, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 522, + aux_sym_preproc_if_in_enumerator_list_repeat1 = 523, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 524, + aux_sym_preproc_argument_list_repeat1 = 525, + aux_sym_declaration_repeat1 = 526, + aux_sym_type_definition_repeat1 = 527, + aux_sym__type_definition_type_repeat1 = 528, + aux_sym__type_definition_declarators_repeat1 = 529, + aux_sym__declaration_specifiers_repeat1 = 530, + aux_sym_attribute_declaration_repeat1 = 531, + aux_sym_attribute_declaration_repeat2 = 532, + aux_sym_declaration_list_repeat1 = 533, + aux_sym_attributed_declarator_repeat1 = 534, + aux_sym_pointer_declarator_repeat1 = 535, + aux_sym_array_declarator_repeat1 = 536, + aux_sym_sized_type_specifier_repeat1 = 537, + aux_sym_enumerator_list_repeat1 = 538, + aux_sym_field_declaration_repeat1 = 539, + aux_sym_parameter_list_repeat1 = 540, + aux_sym_case_statement_repeat1 = 541, + aux_sym_generic_expression_repeat1 = 542, + aux_sym_gnu_asm_expression_repeat1 = 543, + aux_sym_gnu_asm_output_operand_list_repeat1 = 544, + aux_sym_gnu_asm_input_operand_list_repeat1 = 545, + aux_sym_gnu_asm_clobber_list_repeat1 = 546, + aux_sym_gnu_asm_goto_list_repeat1 = 547, + aux_sym_argument_list_repeat1 = 548, + aux_sym_initializer_list_repeat1 = 549, + aux_sym_initializer_pair_repeat1 = 550, + aux_sym_char_literal_repeat1 = 551, + aux_sym_concatenated_string_repeat1 = 552, + aux_sym_string_literal_repeat1 = 553, + aux_sym__class_declaration_repeat1 = 554, + aux_sym_base_class_clause_repeat1 = 555, + aux_sym_module_name_repeat1 = 556, + aux_sym_template_parameter_list_repeat1 = 557, + aux_sym_field_initializer_list_repeat1 = 558, + aux_sym_operator_cast_definition_repeat1 = 559, + aux_sym_constructor_try_statement_repeat1 = 560, + aux_sym_structured_binding_declarator_repeat1 = 561, + aux_sym__function_postfix_repeat1 = 562, + aux_sym_throw_specifier_repeat1 = 563, + aux_sym_template_argument_list_repeat1 = 564, + aux_sym_subscript_argument_list_repeat1 = 565, + aux_sym_requirement_seq_repeat1 = 566, + aux_sym_requires_parameter_list_repeat1 = 567, + aux_sym_lambda_declarator_repeat1 = 568, + aux_sym_lambda_capture_specifier_repeat1 = 569, + alias_sym_field_identifier = 570, + alias_sym_namespace_identifier = 571, + alias_sym_simple_requirement = 572, + alias_sym_statement_identifier = 573, + alias_sym_type_identifier = 574, }; static const char * const ts_symbol_names[] = { @@ -980,6 +985,11 @@ static const char * const ts_symbol_names[] = { [sym_string_literal] = "string_literal", [sym_null] = "null", [sym__empty_declaration] = "_empty_declaration", + [sym_preproc_if_in_block] = "preproc_if", + [sym_preproc_ifdef_in_block] = "preproc_ifdef", + [sym_preproc_else_in_block] = "preproc_else", + [sym_preproc_elif_in_block] = "preproc_elif", + [sym_preproc_elifdef_in_block] = "preproc_elifdef", [sym_placeholder_type_specifier] = "placeholder_type_specifier", [sym_decltype_auto] = "decltype", [sym_decltype] = "decltype", @@ -1117,7 +1127,6 @@ 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_if_in_enumerator_list_repeat1] = "preproc_if_in_enumerator_list_repeat1", [aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1] = "preproc_if_in_enumerator_list_no_comma_repeat1", @@ -1129,6 +1138,7 @@ static const char * const ts_symbol_names[] = { [aux_sym__declaration_specifiers_repeat1] = "_declaration_specifiers_repeat1", [aux_sym_attribute_declaration_repeat1] = "attribute_declaration_repeat1", [aux_sym_attribute_declaration_repeat2] = "attribute_declaration_repeat2", + [aux_sym_declaration_list_repeat1] = "declaration_list_repeat1", [aux_sym_attributed_declarator_repeat1] = "attributed_declarator_repeat1", [aux_sym_pointer_declarator_repeat1] = "pointer_declarator_repeat1", [aux_sym_array_declarator_repeat1] = "array_declarator_repeat1", @@ -1553,6 +1563,11 @@ static const TSSymbol ts_symbol_map[] = { [sym_string_literal] = sym_string_literal, [sym_null] = sym_null, [sym__empty_declaration] = sym__empty_declaration, + [sym_preproc_if_in_block] = sym_preproc_if, + [sym_preproc_ifdef_in_block] = sym_preproc_ifdef, + [sym_preproc_else_in_block] = sym_preproc_else, + [sym_preproc_elif_in_block] = sym_preproc_elif, + [sym_preproc_elifdef_in_block] = sym_preproc_elifdef, [sym_placeholder_type_specifier] = sym_placeholder_type_specifier, [sym_decltype_auto] = sym_decltype, [sym_decltype] = sym_decltype, @@ -1690,7 +1705,6 @@ 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_if_in_enumerator_list_repeat1] = aux_sym_preproc_if_in_enumerator_list_repeat1, [aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1] = aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, @@ -1702,6 +1716,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__declaration_specifiers_repeat1] = aux_sym__declaration_specifiers_repeat1, [aux_sym_attribute_declaration_repeat1] = aux_sym_attribute_declaration_repeat1, [aux_sym_attribute_declaration_repeat2] = aux_sym_attribute_declaration_repeat2, + [aux_sym_declaration_list_repeat1] = aux_sym_declaration_list_repeat1, [aux_sym_attributed_declarator_repeat1] = aux_sym_attributed_declarator_repeat1, [aux_sym_pointer_declarator_repeat1] = aux_sym_pointer_declarator_repeat1, [aux_sym_array_declarator_repeat1] = aux_sym_array_declarator_repeat1, @@ -3273,6 +3288,26 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_preproc_if_in_block] = { + .visible = true, + .named = true, + }, + [sym_preproc_ifdef_in_block] = { + .visible = true, + .named = true, + }, + [sym_preproc_else_in_block] = { + .visible = true, + .named = true, + }, + [sym_preproc_elif_in_block] = { + .visible = true, + .named = true, + }, + [sym_preproc_elifdef_in_block] = { + .visible = true, + .named = true, + }, [sym_placeholder_type_specifier] = { .visible = true, .named = true, @@ -3821,10 +3856,6 @@ 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, @@ -3869,6 +3900,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_declaration_list_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_attributed_declarator_repeat1] = { .visible = false, .named = false, @@ -4253,127 +4288,125 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [110] = {.index = 159, .length = 3}, [111] = {.index = 162, .length = 1}, [112] = {.index = 163, .length = 1}, - [113] = {.index = 164, .length = 1}, - [114] = {.index = 165, .length = 1}, - [115] = {.index = 166, .length = 2}, - [117] = {.index = 168, .length = 3}, - [118] = {.index = 171, .length = 3}, - [119] = {.index = 174, .length = 3}, - [120] = {.index = 177, .length = 3}, - [121] = {.index = 180, .length = 3}, - [122] = {.index = 183, .length = 2}, - [123] = {.index = 185, .length = 3}, - [124] = {.index = 188, .length = 2}, - [125] = {.index = 190, .length = 3}, - [126] = {.index = 193, .length = 2}, - [127] = {.index = 20, .length = 2}, - [128] = {.index = 38, .length = 2}, - [129] = {.index = 195, .length = 2}, - [130] = {.index = 197, .length = 2}, - [131] = {.index = 199, .length = 4}, - [132] = {.index = 203, .length = 4}, - [133] = {.index = 207, .length = 2}, - [134] = {.index = 209, .length = 3}, - [135] = {.index = 212, .length = 2}, - [136] = {.index = 214, .length = 2}, - [137] = {.index = 216, .length = 1}, - [138] = {.index = 217, .length = 1}, - [139] = {.index = 218, .length = 2}, - [140] = {.index = 220, .length = 2}, - [141] = {.index = 222, .length = 2}, - [142] = {.index = 224, .length = 2}, - [143] = {.index = 226, .length = 3}, - [144] = {.index = 229, .length = 3}, - [145] = {.index = 232, .length = 3}, - [146] = {.index = 235, .length = 2}, + [113] = {.index = 164, .length = 2}, + [115] = {.index = 166, .length = 3}, + [116] = {.index = 169, .length = 3}, + [117] = {.index = 172, .length = 3}, + [118] = {.index = 175, .length = 3}, + [119] = {.index = 178, .length = 3}, + [120] = {.index = 181, .length = 2}, + [121] = {.index = 183, .length = 3}, + [122] = {.index = 186, .length = 2}, + [123] = {.index = 188, .length = 3}, + [124] = {.index = 191, .length = 2}, + [125] = {.index = 20, .length = 2}, + [126] = {.index = 38, .length = 2}, + [127] = {.index = 193, .length = 2}, + [128] = {.index = 195, .length = 2}, + [129] = {.index = 197, .length = 4}, + [130] = {.index = 201, .length = 4}, + [131] = {.index = 205, .length = 2}, + [132] = {.index = 207, .length = 3}, + [133] = {.index = 210, .length = 2}, + [134] = {.index = 212, .length = 2}, + [135] = {.index = 214, .length = 1}, + [136] = {.index = 215, .length = 1}, + [137] = {.index = 216, .length = 2}, + [138] = {.index = 218, .length = 2}, + [139] = {.index = 220, .length = 2}, + [140] = {.index = 222, .length = 2}, + [141] = {.index = 224, .length = 3}, + [142] = {.index = 227, .length = 3}, + [143] = {.index = 230, .length = 3}, + [144] = {.index = 233, .length = 2}, + [145] = {.index = 235, .length = 2}, + [146] = {.index = 237, .length = 2}, [147] = {.index = 237, .length = 2}, [148] = {.index = 239, .length = 2}, [149] = {.index = 239, .length = 2}, [150] = {.index = 241, .length = 2}, - [151] = {.index = 241, .length = 2}, - [152] = {.index = 243, .length = 2}, - [153] = {.index = 245, .length = 3}, - [154] = {.index = 248, .length = 2}, - [155] = {.index = 250, .length = 2}, - [156] = {.index = 252, .length = 3}, - [157] = {.index = 255, .length = 2}, - [158] = {.index = 257, .length = 3}, - [159] = {.index = 260, .length = 2}, - [160] = {.index = 262, .length = 1}, - [161] = {.index = 263, .length = 2}, - [162] = {.index = 265, .length = 2}, - [163] = {.index = 267, .length = 4}, - [164] = {.index = 271, .length = 5}, - [165] = {.index = 276, .length = 1}, - [166] = {.index = 277, .length = 1}, - [167] = {.index = 278, .length = 2}, - [168] = {.index = 280, .length = 1}, - [169] = {.index = 281, .length = 2}, - [171] = {.index = 283, .length = 1}, - [172] = {.index = 284, .length = 2}, - [173] = {.index = 286, .length = 2}, - [174] = {.index = 11, .length = 1}, - [175] = {.index = 11, .length = 1}, - [176] = {.index = 288, .length = 1}, - [177] = {.index = 289, .length = 1}, - [178] = {.index = 290, .length = 4}, - [179] = {.index = 294, .length = 4}, - [180] = {.index = 298, .length = 4}, - [181] = {.index = 302, .length = 2}, - [182] = {.index = 304, .length = 1}, - [183] = {.index = 305, .length = 3}, - [184] = {.index = 308, .length = 2}, - [185] = {.index = 310, .length = 3}, - [186] = {.index = 313, .length = 5}, - [187] = {.index = 318, .length = 2}, - [188] = {.index = 320, .length = 2}, - [189] = {.index = 322, .length = 1}, - [190] = {.index = 323, .length = 2}, - [191] = {.index = 325, .length = 4}, - [192] = {.index = 329, .length = 2}, - [193] = {.index = 331, .length = 2}, - [194] = {.index = 333, .length = 3}, - [195] = {.index = 336, .length = 4}, - [196] = {.index = 340, .length = 4}, - [197] = {.index = 344, .length = 3}, - [198] = {.index = 347, .length = 2}, - [199] = {.index = 349, .length = 3}, - [200] = {.index = 352, .length = 3}, - [201] = {.index = 355, .length = 2}, - [202] = {.index = 357, .length = 2}, - [203] = {.index = 359, .length = 2}, - [204] = {.index = 361, .length = 2}, - [205] = {.index = 363, .length = 3}, - [206] = {.index = 366, .length = 2}, - [207] = {.index = 368, .length = 2}, - [208] = {.index = 370, .length = 3}, - [209] = {.index = 373, .length = 5}, - [210] = {.index = 378, .length = 5}, - [211] = {.index = 383, .length = 3}, - [212] = {.index = 386, .length = 3}, - [213] = {.index = 389, .length = 2}, - [214] = {.index = 391, .length = 2}, - [215] = {.index = 393, .length = 4}, - [216] = {.index = 397, .length = 5}, - [217] = {.index = 402, .length = 3}, - [218] = {.index = 405, .length = 4}, - [219] = {.index = 409, .length = 2}, - [220] = {.index = 411, .length = 1}, - [221] = {.index = 412, .length = 4}, - [222] = {.index = 416, .length = 3}, - [223] = {.index = 419, .length = 2}, - [224] = {.index = 421, .length = 1}, - [225] = {.index = 422, .length = 5}, - [226] = {.index = 427, .length = 2}, - [227] = {.index = 429, .length = 2}, - [228] = {.index = 65, .length = 1}, - [229] = {.index = 431, .length = 5}, - [230] = {.index = 436, .length = 4}, - [231] = {.index = 440, .length = 2}, - [232] = {.index = 442, .length = 2}, - [233] = {.index = 444, .length = 5}, - [234] = {.index = 449, .length = 2}, - [235] = {.index = 451, .length = 3}, + [151] = {.index = 243, .length = 3}, + [152] = {.index = 246, .length = 2}, + [153] = {.index = 248, .length = 2}, + [154] = {.index = 250, .length = 3}, + [155] = {.index = 253, .length = 2}, + [156] = {.index = 255, .length = 3}, + [157] = {.index = 258, .length = 2}, + [158] = {.index = 260, .length = 1}, + [159] = {.index = 261, .length = 2}, + [160] = {.index = 263, .length = 2}, + [161] = {.index = 265, .length = 4}, + [162] = {.index = 269, .length = 5}, + [163] = {.index = 274, .length = 1}, + [164] = {.index = 275, .length = 1}, + [165] = {.index = 276, .length = 2}, + [166] = {.index = 278, .length = 1}, + [167] = {.index = 279, .length = 2}, + [169] = {.index = 281, .length = 1}, + [170] = {.index = 282, .length = 2}, + [171] = {.index = 284, .length = 2}, + [172] = {.index = 11, .length = 1}, + [173] = {.index = 11, .length = 1}, + [174] = {.index = 286, .length = 1}, + [175] = {.index = 287, .length = 1}, + [176] = {.index = 288, .length = 4}, + [177] = {.index = 292, .length = 4}, + [178] = {.index = 296, .length = 4}, + [179] = {.index = 300, .length = 2}, + [180] = {.index = 302, .length = 1}, + [181] = {.index = 303, .length = 3}, + [182] = {.index = 306, .length = 2}, + [183] = {.index = 308, .length = 3}, + [184] = {.index = 311, .length = 5}, + [185] = {.index = 316, .length = 2}, + [186] = {.index = 318, .length = 2}, + [187] = {.index = 320, .length = 1}, + [188] = {.index = 321, .length = 2}, + [189] = {.index = 323, .length = 4}, + [190] = {.index = 327, .length = 2}, + [191] = {.index = 329, .length = 2}, + [192] = {.index = 331, .length = 3}, + [193] = {.index = 334, .length = 4}, + [194] = {.index = 338, .length = 4}, + [195] = {.index = 342, .length = 3}, + [196] = {.index = 345, .length = 2}, + [197] = {.index = 347, .length = 3}, + [198] = {.index = 350, .length = 3}, + [199] = {.index = 353, .length = 2}, + [200] = {.index = 355, .length = 2}, + [201] = {.index = 357, .length = 2}, + [202] = {.index = 359, .length = 2}, + [203] = {.index = 361, .length = 3}, + [204] = {.index = 364, .length = 2}, + [205] = {.index = 366, .length = 2}, + [206] = {.index = 368, .length = 3}, + [207] = {.index = 371, .length = 5}, + [208] = {.index = 376, .length = 5}, + [209] = {.index = 381, .length = 3}, + [210] = {.index = 384, .length = 3}, + [211] = {.index = 387, .length = 2}, + [212] = {.index = 389, .length = 2}, + [213] = {.index = 391, .length = 4}, + [214] = {.index = 395, .length = 5}, + [215] = {.index = 400, .length = 3}, + [216] = {.index = 403, .length = 4}, + [217] = {.index = 407, .length = 2}, + [218] = {.index = 409, .length = 1}, + [219] = {.index = 410, .length = 4}, + [220] = {.index = 414, .length = 3}, + [221] = {.index = 417, .length = 2}, + [222] = {.index = 419, .length = 1}, + [223] = {.index = 420, .length = 5}, + [224] = {.index = 425, .length = 2}, + [225] = {.index = 427, .length = 2}, + [226] = {.index = 65, .length = 1}, + [227] = {.index = 429, .length = 5}, + [228] = {.index = 434, .length = 4}, + [229] = {.index = 438, .length = 2}, + [230] = {.index = 440, .length = 2}, + [231] = {.index = 442, .length = 5}, + [232] = {.index = 447, .length = 2}, + [233] = {.index = 449, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -4635,406 +4668,402 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [163] = {field_assembly_code, 2}, [164] = - {field_header, 2}, - [165] = - {field_partition, 2}, - [166] = {field_name, 1}, {field_partition, 2}, - [168] = + [166] = {field_arguments, 3}, {field_declarator, 2}, {field_type, 1}, - [171] = + [169] = {field_arguments, 3}, {field_placement, 1}, {field_type, 2}, - [174] = + [172] = {field_declarator, 3}, {field_placement, 1}, {field_type, 2}, - [177] = + [175] = {field_declarator, 1}, {field_declarator, 2}, {field_type, 0, .inherited = true}, - [180] = + [178] = {field_body, 3}, {field_declarator, 2}, {field_type, 0, .inherited = true}, - [183] = + [181] = {field_declarator, 0}, {field_value, 2}, - [185] = + [183] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, {field_type, 0, .inherited = true}, - [188] = + [186] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, - [190] = + [188] = {field_body, 3}, {field_declarator, 2}, {field_type, 1, .inherited = true}, - [193] = + [191] = {field_declarator, 0}, {field_size, 2}, - [195] = + [193] = {field_alternative, 3}, {field_condition, 0}, - [197] = + [195] = {field_declarator, 0}, {field_default_value, 2}, - [199] = + [197] = {field_body, 3}, {field_captures, 0}, {field_constraint, 2}, {field_template_parameters, 1}, - [203] = + [201] = {field_body, 3}, {field_captures, 0}, {field_declarator, 2}, {field_template_parameters, 1}, - [207] = + [205] = {field_body, 3}, {field_declarator, 1}, - [209] = + [207] = {field_name, 1}, {field_parameters, 2}, {field_value, 3}, - [212] = + [210] = {field_alternative, 3}, {field_condition, 1}, - [214] = + [212] = {field_alternative, 3}, {field_name, 1}, - [216] = + [214] = {field_size, 1}, - [217] = + [215] = {field_operator, 0}, - [218] = + [216] = {field_declarator, 3}, {field_type, 1}, - [220] = + [218] = {field_declarator, 3, .inherited = true}, {field_type, 2, .inherited = true}, - [222] = + [220] = {field_declarator, 3}, {field_type, 2, .inherited = true}, - [224] = + [222] = {field_name, 1}, {field_type, 3}, - [226] = + [224] = {field_arguments, 4}, {field_declarator, 3}, {field_type, 2}, - [229] = + [227] = {field_arguments, 4}, {field_placement, 2}, {field_type, 3}, - [232] = + [230] = {field_declarator, 4}, {field_placement, 2}, {field_type, 3}, - [235] = + [233] = {field_name, 3}, {field_namespace, 1}, - [237] = + [235] = {field_left, 1}, {field_right, 3}, - [239] = + [237] = {field_body, 4}, {field_name, 3}, - [241] = + [239] = {field_designator, 0}, {field_value, 2}, - [243] = + [241] = {field_name, 0}, {field_value, 2}, - [245] = + [243] = {field_base, 3, .inherited = true}, {field_body, 4}, {field_name, 2}, - [248] = + [246] = {field_body, 3}, {field_name, 0}, - [250] = + [248] = {field_body, 3, .inherited = true}, {field_name, 3, .inherited = true}, - [252] = + [250] = {field_declarator, 1}, {field_type, 0, .inherited = true}, {field_value, 2}, - [255] = + [253] = {field_initializer, 1}, {field_value, 2}, - [257] = + [255] = {field_alternative, 4}, {field_condition, 2}, {field_consequence, 3}, - [260] = + [258] = {field_body, 1}, {field_condition, 3}, - [262] = + [260] = {field_update, 2}, - [263] = + [261] = {field_initializer, 0}, {field_update, 2}, - [265] = + [263] = {field_condition, 1}, {field_initializer, 0}, - [267] = + [265] = {field_body, 4}, {field_condition, 2, .inherited = true}, {field_initializer, 2, .inherited = true}, {field_update, 2, .inherited = true}, - [271] = + [269] = {field_body, 4}, {field_declarator, 2, .inherited = true}, {field_initializer, 2, .inherited = true}, {field_right, 2, .inherited = true}, {field_type, 2, .inherited = true}, - [276] = + [274] = {field_value, 3}, - [277] = + [275] = {field_operand, 1}, - [278] = + [276] = {field_assembly_code, 2}, {field_output_operands, 3}, - [280] = + [278] = {field_assembly_code, 3}, - [281] = + [279] = {field_name, 2}, {field_partition, 3}, - [283] = + [281] = {field_default_type, 2}, - [284] = + [282] = {field_default_value, 2}, {field_type, 0, .inherited = true}, - [286] = + [284] = {field_body, 2}, {field_parameters, 1}, - [288] = + [286] = {field_condition, 2}, - [289] = + [287] = {field_length, 1}, - [290] = + [288] = {field_arguments, 4}, {field_declarator, 3}, {field_placement, 1}, {field_type, 2}, - [294] = + [292] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, {field_type, 0, .inherited = true}, - [298] = + [296] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [302] = + [300] = {field_declarator, 1}, {field_declarator, 2}, - [304] = + [302] = {field_declarator, 4}, - [305] = + [303] = {field_body, 4}, {field_declarator, 3}, {field_type, 1, .inherited = true}, - [308] = + [306] = {field_declarator, 0}, {field_size, 3}, - [310] = + [308] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [313] = + [311] = {field_body, 4}, {field_captures, 0}, {field_constraint, 2}, {field_declarator, 3}, {field_template_parameters, 1}, - [318] = + [316] = {field_declarator, 1}, {field_default_value, 3}, - [320] = + [318] = {field_alternative, 4}, {field_condition, 1}, - [322] = + [320] = {field_size, 2}, - [323] = + [321] = {field_name, 1}, {field_type, 4}, - [325] = + [323] = {field_arguments, 5}, {field_declarator, 4}, {field_placement, 2}, {field_type, 3}, - [329] = + [327] = {field_body, 2}, {field_filter, 1}, - [331] = + [329] = {field_left, 2}, {field_right, 4}, - [333] = + [331] = {field_declarator, 1}, {field_default_value, 2}, {field_type, 0, .inherited = true}, - [336] = + [334] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, {field_default_value, 2, .inherited = true}, {field_type, 0, .inherited = true}, - [340] = + [338] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, {field_default_value, 0, .inherited = true}, {field_default_value, 1, .inherited = true}, - [344] = + [342] = {field_declarator, 1}, {field_type, 0, .inherited = true}, {field_value, 3}, - [347] = + [345] = {field_condition, 1}, {field_update, 3}, - [349] = + [347] = {field_condition, 1}, {field_initializer, 0}, {field_update, 3}, - [352] = + [350] = {field_declarator, 1}, {field_right, 3}, {field_type, 0, .inherited = true}, - [355] = + [353] = {field_initializer, 0}, {field_update, 3}, - [357] = + [355] = {field_condition, 2}, {field_initializer, 0}, - [359] = + [357] = {field_member, 4}, {field_type, 2}, - [361] = + [359] = {field_operand, 1}, {field_operand, 2, .inherited = true}, - [363] = + [361] = {field_assembly_code, 2}, {field_input_operands, 4}, {field_output_operands, 3}, - [366] = + [364] = {field_assembly_code, 3}, {field_output_operands, 4}, - [368] = + [366] = {field_default_type, 3}, {field_name, 1}, - [370] = + [368] = {field_declarator, 1}, {field_default_value, 3}, {field_type, 0, .inherited = true}, - [373] = + [371] = {field_body, 5}, {field_declarator, 3, .inherited = true}, {field_initializer, 3, .inherited = true}, {field_right, 3, .inherited = true}, {field_type, 3, .inherited = true}, - [378] = + [376] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, {field_declarator, 4, .inherited = true}, {field_type, 0, .inherited = true}, - [383] = + [381] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, - [386] = + [384] = {field_name, 5}, {field_namespace, 1}, {field_prefix, 3}, - [389] = + [387] = {field_end, 3}, {field_start, 1}, - [391] = + [389] = {field_declarator, 1}, {field_default_value, 2}, - [393] = + [391] = {field_declarator, 1}, {field_declarator, 3, .inherited = true}, {field_default_value, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [397] = + [395] = {field_declarator, 1}, {field_declarator, 3, .inherited = true}, {field_default_value, 2}, {field_default_value, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [402] = + [400] = {field_condition, 2}, {field_initializer, 0}, {field_update, 4}, - [405] = + [403] = {field_declarator, 2}, {field_initializer, 0}, {field_right, 4}, {field_type, 1, .inherited = true}, - [409] = + [407] = {field_operand, 0, .inherited = true}, {field_operand, 1, .inherited = true}, - [411] = + [409] = {field_register, 1}, - [412] = + [410] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_input_operands, 4}, {field_output_operands, 3}, - [416] = + [414] = {field_assembly_code, 3}, {field_input_operands, 5}, {field_output_operands, 4}, - [419] = + [417] = {field_condition, 2}, {field_message, 4}, - [421] = + [419] = {field_delimiter, 1}, - [422] = + [420] = {field_declarator, 1}, {field_declarator, 4, .inherited = true}, {field_default_value, 3}, {field_default_value, 4, .inherited = true}, {field_type, 0, .inherited = true}, - [427] = + [425] = {field_constraint, 0}, {field_value, 2}, - [429] = + [427] = {field_register, 1}, {field_register, 2, .inherited = true}, - [431] = + [429] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_goto_labels, 6}, {field_input_operands, 4}, {field_output_operands, 3}, - [436] = + [434] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_input_operands, 5}, {field_output_operands, 4}, - [440] = + [438] = {field_register, 0, .inherited = true}, {field_register, 1, .inherited = true}, - [442] = + [440] = {field_label, 1}, {field_label, 2, .inherited = true}, - [444] = + [442] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_goto_labels, 7}, {field_input_operands, 5}, {field_output_operands, 4}, - [449] = + [447] = {field_label, 0, .inherited = true}, {field_label, 1, .inherited = true}, - [451] = + [449] = {field_constraint, 3}, {field_symbol, 1}, {field_value, 5}, @@ -5105,41 +5134,41 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [106] = { [0] = alias_sym_field_identifier, }, - [116] = { + [114] = { [1] = alias_sym_type_identifier, }, - [127] = { + [125] = { [0] = alias_sym_field_identifier, }, - [128] = { + [126] = { [1] = alias_sym_field_identifier, }, - [142] = { + [140] = { [1] = alias_sym_type_identifier, }, - [148] = { + [146] = { [3] = alias_sym_namespace_identifier, }, - [150] = { + [148] = { [0] = alias_sym_field_identifier, }, - [170] = { + [168] = { [2] = alias_sym_type_identifier, }, - [174] = { + [172] = { [1] = alias_sym_namespace_identifier, [3] = alias_sym_namespace_identifier, }, - [175] = { + [173] = { [1] = alias_sym_namespace_identifier, }, - [190] = { + [188] = { [1] = alias_sym_type_identifier, }, - [203] = { + [201] = { [4] = alias_sym_field_identifier, }, - [207] = { + [205] = { [1] = alias_sym_type_identifier, }, }; @@ -5171,355 +5200,355 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [13] = 13, [14] = 14, [15] = 15, - [16] = 14, + [16] = 16, [17] = 17, - [18] = 17, - [19] = 15, - [20] = 17, - [21] = 14, - [22] = 15, + [18] = 18, + [19] = 18, + [20] = 13, + [21] = 21, + [22] = 18, [23] = 13, - [24] = 15, - [25] = 14, - [26] = 17, + [24] = 21, + [25] = 25, + [26] = 18, [27] = 13, - [28] = 13, - [29] = 29, - [30] = 30, - [31] = 31, - [32] = 32, + [28] = 21, + [29] = 25, + [30] = 21, + [31] = 25, + [32] = 25, [33] = 33, [34] = 34, [35] = 35, - [36] = 36, + [36] = 34, [37] = 33, - [38] = 36, - [39] = 39, + [38] = 38, + [39] = 34, [40] = 40, - [41] = 33, - [42] = 42, - [43] = 36, - [44] = 44, - [45] = 39, - [46] = 40, - [47] = 42, - [48] = 42, - [49] = 36, + [41] = 41, + [42] = 41, + [43] = 41, + [44] = 35, + [45] = 33, + [46] = 35, + [47] = 47, + [48] = 48, + [49] = 49, [50] = 50, - [51] = 39, - [52] = 40, + [51] = 51, + [52] = 49, [53] = 53, - [54] = 40, - [55] = 42, + [54] = 54, + [55] = 51, [56] = 56, - [57] = 36, - [58] = 39, - [59] = 39, - [60] = 39, - [61] = 39, - [62] = 36, - [63] = 39, - [64] = 36, - [65] = 39, - [66] = 36, - [67] = 39, - [68] = 36, - [69] = 39, - [70] = 36, - [71] = 39, - [72] = 72, - [73] = 36, - [74] = 39, - [75] = 36, - [76] = 39, - [77] = 36, - [78] = 39, - [79] = 36, - [80] = 39, - [81] = 36, - [82] = 39, - [83] = 36, - [84] = 39, - [85] = 36, - [86] = 39, - [87] = 36, - [88] = 36, - [89] = 89, - [90] = 90, - [91] = 91, - [92] = 92, - [93] = 93, - [94] = 93, - [95] = 92, - [96] = 90, - [97] = 91, - [98] = 89, - [99] = 90, - [100] = 92, - [101] = 93, - [102] = 89, - [103] = 91, - [104] = 89, - [105] = 91, - [106] = 90, - [107] = 93, - [108] = 92, - [109] = 109, - [110] = 93, - [111] = 89, - [112] = 90, - [113] = 113, - [114] = 113, - [115] = 113, - [116] = 113, - [117] = 113, - [118] = 91, - [119] = 92, - [120] = 113, + [57] = 57, + [58] = 56, + [59] = 59, + [60] = 57, + [61] = 61, + [62] = 62, + [63] = 53, + [64] = 54, + [65] = 51, + [66] = 56, + [67] = 57, + [68] = 51, + [69] = 69, + [70] = 61, + [71] = 62, + [72] = 49, + [73] = 53, + [74] = 51, + [75] = 56, + [76] = 57, + [77] = 61, + [78] = 54, + [79] = 51, + [80] = 62, + [81] = 62, + [82] = 53, + [83] = 51, + [84] = 53, + [85] = 51, + [86] = 53, + [87] = 51, + [88] = 53, + [89] = 51, + [90] = 53, + [91] = 51, + [92] = 53, + [93] = 51, + [94] = 53, + [95] = 51, + [96] = 53, + [97] = 51, + [98] = 53, + [99] = 53, + [100] = 53, + [101] = 51, + [102] = 53, + [103] = 51, + [104] = 53, + [105] = 51, + [106] = 53, + [107] = 51, + [108] = 53, + [109] = 51, + [110] = 53, + [111] = 61, + [112] = 112, + [113] = 50, + [114] = 114, + [115] = 112, + [116] = 116, + [117] = 112, + [118] = 112, + [119] = 119, + [120] = 50, [121] = 121, - [122] = 121, - [123] = 121, - [124] = 121, - [125] = 121, - [126] = 121, - [127] = 127, - [128] = 128, - [129] = 129, - [130] = 129, - [131] = 127, - [132] = 129, - [133] = 129, - [134] = 129, - [135] = 129, - [136] = 127, - [137] = 137, - [138] = 138, - [139] = 138, - [140] = 138, - [141] = 138, - [142] = 138, - [143] = 138, - [144] = 138, - [145] = 138, - [146] = 146, - [147] = 147, - [148] = 148, - [149] = 149, - [150] = 148, - [151] = 149, - [152] = 147, - [153] = 149, - [154] = 148, - [155] = 148, - [156] = 149, - [157] = 157, - [158] = 158, + [122] = 122, + [123] = 123, + [124] = 124, + [125] = 125, + [126] = 125, + [127] = 121, + [128] = 123, + [129] = 122, + [130] = 124, + [131] = 124, + [132] = 122, + [133] = 125, + [134] = 121, + [135] = 123, + [136] = 123, + [137] = 122, + [138] = 124, + [139] = 121, + [140] = 125, + [141] = 141, + [142] = 121, + [143] = 125, + [144] = 144, + [145] = 144, + [146] = 144, + [147] = 144, + [148] = 144, + [149] = 144, + [150] = 123, + [151] = 122, + [152] = 124, + [153] = 153, + [154] = 153, + [155] = 153, + [156] = 153, + [157] = 153, + [158] = 153, [159] = 159, [160] = 160, - [161] = 158, + [161] = 159, [162] = 162, - [163] = 160, - [164] = 164, - [165] = 165, - [166] = 166, - [167] = 158, - [168] = 168, - [169] = 148, - [170] = 159, - [171] = 162, - [172] = 160, - [173] = 164, - [174] = 165, - [175] = 168, - [176] = 168, - [177] = 164, - [178] = 162, - [179] = 165, - [180] = 166, - [181] = 166, - [182] = 168, - [183] = 159, - [184] = 159, - [185] = 157, - [186] = 160, - [187] = 162, - [188] = 164, - [189] = 159, - [190] = 147, - [191] = 165, - [192] = 162, - [193] = 160, - [194] = 164, - [195] = 165, - [196] = 160, - [197] = 162, - [198] = 164, - [199] = 166, - [200] = 166, - [201] = 158, - [202] = 165, - [203] = 159, - [204] = 166, - [205] = 148, - [206] = 158, - [207] = 168, - [208] = 168, - [209] = 157, - [210] = 157, - [211] = 157, - [212] = 158, - [213] = 213, - [214] = 213, - [215] = 215, - [216] = 213, - [217] = 215, - [218] = 215, - [219] = 213, - [220] = 215, - [221] = 213, - [222] = 215, - [223] = 213, - [224] = 215, - [225] = 213, - [226] = 215, - [227] = 215, - [228] = 215, - [229] = 215, - [230] = 147, - [231] = 215, - [232] = 213, - [233] = 215, - [234] = 213, - [235] = 215, - [236] = 213, - [237] = 215, - [238] = 213, - [239] = 215, - [240] = 213, - [241] = 213, - [242] = 213, - [243] = 215, - [244] = 213, - [245] = 213, - [246] = 147, - [247] = 147, - [248] = 147, - [249] = 147, - [250] = 147, - [251] = 251, - [252] = 251, - [253] = 253, - [254] = 251, - [255] = 251, - [256] = 256, - [257] = 257, - [258] = 257, - [259] = 257, - [260] = 257, - [261] = 257, - [262] = 257, - [263] = 257, - [264] = 257, - [265] = 257, - [266] = 257, - [267] = 257, - [268] = 268, - [269] = 257, - [270] = 270, - [271] = 271, - [272] = 257, - [273] = 257, - [274] = 257, - [275] = 257, - [276] = 257, - [277] = 270, - [278] = 257, - [279] = 257, - [280] = 280, - [281] = 257, - [282] = 257, - [283] = 251, - [284] = 284, + [163] = 159, + [164] = 159, + [165] = 160, + [166] = 160, + [167] = 159, + [168] = 159, + [169] = 169, + [170] = 170, + [171] = 170, + [172] = 170, + [173] = 170, + [174] = 170, + [175] = 170, + [176] = 170, + [177] = 170, + [178] = 178, + [179] = 179, + [180] = 180, + [181] = 181, + [182] = 181, + [183] = 179, + [184] = 181, + [185] = 180, + [186] = 180, + [187] = 180, + [188] = 181, + [189] = 189, + [190] = 190, + [191] = 191, + [192] = 192, + [193] = 193, + [194] = 191, + [195] = 195, + [196] = 189, + [197] = 191, + [198] = 192, + [199] = 180, + [200] = 195, + [201] = 201, + [202] = 189, + [203] = 195, + [204] = 204, + [205] = 190, + [206] = 191, + [207] = 195, + [208] = 192, + [209] = 179, + [210] = 192, + [211] = 201, + [212] = 189, + [213] = 204, + [214] = 193, + [215] = 193, + [216] = 204, + [217] = 195, + [218] = 189, + [219] = 193, + [220] = 190, + [221] = 193, + [222] = 193, + [223] = 223, + [224] = 201, + [225] = 204, + [226] = 201, + [227] = 204, + [228] = 190, + [229] = 191, + [230] = 204, + [231] = 190, + [232] = 191, + [233] = 192, + [234] = 192, + [235] = 195, + [236] = 201, + [237] = 189, + [238] = 180, + [239] = 201, + [240] = 223, + [241] = 223, + [242] = 223, + [243] = 223, + [244] = 190, + [245] = 245, + [246] = 246, + [247] = 246, + [248] = 245, + [249] = 246, + [250] = 246, + [251] = 245, + [252] = 245, + [253] = 246, + [254] = 245, + [255] = 179, + [256] = 246, + [257] = 246, + [258] = 246, + [259] = 246, + [260] = 245, + [261] = 245, + [262] = 246, + [263] = 245, + [264] = 246, + [265] = 245, + [266] = 246, + [267] = 245, + [268] = 245, + [269] = 245, + [270] = 245, + [271] = 246, + [272] = 245, + [273] = 246, + [274] = 246, + [275] = 245, + [276] = 246, + [277] = 245, + [278] = 179, + [279] = 179, + [280] = 179, + [281] = 179, + [282] = 179, + [283] = 283, + [284] = 283, [285] = 285, - [286] = 286, - [287] = 287, + [286] = 283, + [287] = 283, [288] = 288, [289] = 289, - [290] = 286, - [291] = 288, - [292] = 285, - [293] = 251, - [294] = 285, - [295] = 286, - [296] = 288, - [297] = 289, - [298] = 251, - [299] = 289, - [300] = 300, - [301] = 251, - [302] = 302, - [303] = 251, - [304] = 304, - [305] = 251, - [306] = 306, - [307] = 307, + [290] = 290, + [291] = 291, + [292] = 292, + [293] = 293, + [294] = 294, + [295] = 293, + [296] = 293, + [297] = 293, + [298] = 293, + [299] = 293, + [300] = 293, + [301] = 293, + [302] = 293, + [303] = 293, + [304] = 293, + [305] = 293, + [306] = 293, + [307] = 293, [308] = 308, - [309] = 302, + [309] = 309, [310] = 310, - [311] = 310, - [312] = 310, - [313] = 313, - [314] = 310, - [315] = 313, - [316] = 310, - [317] = 310, - [318] = 313, - [319] = 313, - [320] = 313, - [321] = 313, - [322] = 313, - [323] = 313, - [324] = 313, - [325] = 313, - [326] = 313, - [327] = 313, - [328] = 313, - [329] = 313, - [330] = 313, - [331] = 306, - [332] = 313, - [333] = 313, - [334] = 313, - [335] = 313, - [336] = 313, - [337] = 313, - [338] = 313, - [339] = 310, - [340] = 310, - [341] = 310, - [342] = 310, - [343] = 308, - [344] = 310, - [345] = 310, - [346] = 310, - [347] = 347, - [348] = 310, + [311] = 293, + [312] = 312, + [313] = 293, + [314] = 314, + [315] = 288, + [316] = 293, + [317] = 317, + [318] = 293, + [319] = 293, + [320] = 293, + [321] = 293, + [322] = 285, + [323] = 294, + [324] = 324, + [325] = 325, + [326] = 326, + [327] = 327, + [328] = 328, + [329] = 329, + [330] = 330, + [331] = 331, + [332] = 332, + [333] = 283, + [334] = 334, + [335] = 324, + [336] = 336, + [337] = 337, + [338] = 327, + [339] = 339, + [340] = 340, + [341] = 341, + [342] = 342, + [343] = 324, + [344] = 344, + [345] = 345, + [346] = 336, + [347] = 337, + [348] = 327, [349] = 349, - [350] = 310, - [351] = 310, - [352] = 313, - [353] = 313, + [350] = 350, + [351] = 351, + [352] = 352, + [353] = 353, [354] = 354, [355] = 355, - [356] = 256, + [356] = 336, [357] = 357, - [358] = 253, + [358] = 358, [359] = 359, - [360] = 360, + [360] = 283, [361] = 361, - [362] = 355, - [363] = 354, - [364] = 364, + [362] = 362, + [363] = 363, + [364] = 337, [365] = 365, [366] = 366, [367] = 367, @@ -5537,40 +5566,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [379] = 379, [380] = 380, [381] = 381, - [382] = 382, - [383] = 357, + [382] = 283, + [383] = 383, [384] = 384, [385] = 385, - [386] = 386, - [387] = 387, - [388] = 388, + [386] = 283, + [387] = 283, + [388] = 283, [389] = 389, [390] = 390, [391] = 391, - [392] = 392, - [393] = 393, - [394] = 394, + [392] = 391, + [393] = 391, + [394] = 391, [395] = 395, - [396] = 396, - [397] = 397, - [398] = 398, - [399] = 399, - [400] = 400, - [401] = 401, - [402] = 402, + [396] = 289, + [397] = 289, + [398] = 290, + [399] = 391, + [400] = 391, + [401] = 391, + [402] = 391, [403] = 403, [404] = 404, [405] = 405, [406] = 406, [407] = 407, [408] = 408, - [409] = 401, - [410] = 410, + [409] = 409, + [410] = 290, [411] = 411, [412] = 412, [413] = 413, [414] = 414, - [415] = 415, + [415] = 391, [416] = 416, [417] = 417, [418] = 418, @@ -5585,20 +5614,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [427] = 427, [428] = 428, [429] = 429, - [430] = 372, + [430] = 430, [431] = 431, [432] = 432, - [433] = 359, + [433] = 391, [434] = 434, [435] = 435, [436] = 436, - [437] = 365, + [437] = 437, [438] = 438, [439] = 439, [440] = 440, [441] = 441, [442] = 442, - [443] = 366, + [443] = 443, [444] = 444, [445] = 445, [446] = 446, @@ -5618,11094 +5647,11442 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [460] = 460, [461] = 461, [462] = 462, - [463] = 391, + [463] = 463, [464] = 464, - [465] = 397, - [466] = 382, - [467] = 387, - [468] = 306, + [465] = 465, + [466] = 466, + [467] = 467, + [468] = 468, [469] = 469, [470] = 470, - [471] = 302, + [471] = 471, [472] = 472, [473] = 473, [474] = 474, - [475] = 475, - [476] = 349, - [477] = 368, - [478] = 364, - [479] = 375, - [480] = 147, - [481] = 376, - [482] = 377, - [483] = 380, - [484] = 389, - [485] = 392, - [486] = 403, - [487] = 404, - [488] = 361, - [489] = 347, - [490] = 367, - [491] = 373, - [492] = 374, - [493] = 384, - [494] = 388, - [495] = 379, - [496] = 360, - [497] = 369, - [498] = 390, - [499] = 396, - [500] = 399, - [501] = 381, - [502] = 386, - [503] = 306, - [504] = 405, - [505] = 371, - [506] = 395, - [507] = 302, - [508] = 394, - [509] = 370, + [475] = 391, + [476] = 395, + [477] = 477, + [478] = 391, + [479] = 479, + [480] = 480, + [481] = 481, + [482] = 395, + [483] = 483, + [484] = 484, + [485] = 395, + [486] = 395, + [487] = 395, + [488] = 395, + [489] = 395, + [490] = 395, + [491] = 395, + [492] = 395, + [493] = 395, + [494] = 395, + [495] = 395, + [496] = 395, + [497] = 395, + [498] = 395, + [499] = 395, + [500] = 395, + [501] = 395, + [502] = 395, + [503] = 395, + [504] = 395, + [505] = 395, + [506] = 506, + [507] = 507, + [508] = 508, + [509] = 509, [510] = 510, - [511] = 385, - [512] = 512, - [513] = 513, - [514] = 378, - [515] = 398, - [516] = 400, - [517] = 517, - [518] = 518, + [511] = 511, + [512] = 391, + [513] = 436, + [514] = 514, + [515] = 515, + [516] = 391, + [517] = 391, + [518] = 391, [519] = 519, - [520] = 520, - [521] = 521, - [522] = 522, - [523] = 523, - [524] = 524, - [525] = 525, + [520] = 289, + [521] = 290, + [522] = 292, + [523] = 291, + [524] = 317, + [525] = 288, [526] = 526, [527] = 527, [528] = 528, [529] = 529, - [530] = 526, - [531] = 147, - [532] = 510, - [533] = 402, - [534] = 349, - [535] = 349, - [536] = 347, - [537] = 347, - [538] = 355, - [539] = 147, - [540] = 256, - [541] = 354, - [542] = 253, - [543] = 355, - [544] = 253, - [545] = 357, - [546] = 357, - [547] = 354, - [548] = 256, - [549] = 462, - [550] = 360, - [551] = 393, - [552] = 359, - [553] = 441, - [554] = 442, + [530] = 312, + [531] = 292, + [532] = 532, + [533] = 533, + [534] = 285, + [535] = 535, + [536] = 536, + [537] = 537, + [538] = 538, + [539] = 291, + [540] = 540, + [541] = 541, + [542] = 542, + [543] = 317, + [544] = 544, + [545] = 310, + [546] = 546, + [547] = 547, + [548] = 312, + [549] = 310, + [550] = 550, + [551] = 551, + [552] = 552, + [553] = 553, + [554] = 554, [555] = 555, - [556] = 394, - [557] = 423, - [558] = 558, - [559] = 376, - [560] = 377, - [561] = 380, - [562] = 389, - [563] = 392, - [564] = 564, - [565] = 370, - [566] = 566, - [567] = 373, - [568] = 568, - [569] = 429, - [570] = 444, - [571] = 445, - [572] = 446, - [573] = 447, - [574] = 398, - [575] = 400, - [576] = 448, - [577] = 528, - [578] = 426, - [579] = 391, - [580] = 397, - [581] = 382, - [582] = 387, - [583] = 393, - [584] = 403, - [585] = 404, - [586] = 361, - [587] = 374, - [588] = 449, - [589] = 589, - [590] = 379, - [591] = 386, - [592] = 402, - [593] = 593, - [594] = 594, - [595] = 523, - [596] = 401, - [597] = 406, - [598] = 364, - [599] = 375, - [600] = 367, - [601] = 450, - [602] = 405, - [603] = 381, - [604] = 394, - [605] = 451, - [606] = 452, - [607] = 386, - [608] = 608, - [609] = 513, - [610] = 431, - [611] = 402, - [612] = 612, - [613] = 428, - [614] = 424, - [615] = 432, - [616] = 616, - [617] = 617, - [618] = 618, - [619] = 619, - [620] = 620, - [621] = 621, - [622] = 622, - [623] = 475, - [624] = 453, - [625] = 625, - [626] = 454, - [627] = 455, - [628] = 456, - [629] = 524, - [630] = 527, - [631] = 457, - [632] = 458, - [633] = 434, - [634] = 459, - [635] = 460, - [636] = 461, - [637] = 625, - [638] = 425, - [639] = 639, - [640] = 370, - [641] = 641, - [642] = 612, - [643] = 643, - [644] = 427, - [645] = 645, - [646] = 435, - [647] = 464, - [648] = 648, - [649] = 649, - [650] = 436, - [651] = 612, - [652] = 360, - [653] = 512, - [654] = 654, - [655] = 379, - [656] = 365, - [657] = 366, - [658] = 365, - [659] = 366, - [660] = 625, - [661] = 368, - [662] = 368, - [663] = 369, - [664] = 371, - [665] = 369, - [666] = 372, - [667] = 667, - [668] = 612, - [669] = 371, - [670] = 517, - [671] = 671, - [672] = 372, - [673] = 384, - [674] = 674, - [675] = 675, - [676] = 625, - [677] = 388, - [678] = 390, - [679] = 396, - [680] = 399, - [681] = 395, - [682] = 612, - [683] = 385, - [684] = 378, - [685] = 398, - [686] = 625, - [687] = 400, - [688] = 612, - [689] = 625, - [690] = 612, - [691] = 401, - [692] = 625, - [693] = 402, - [694] = 612, - [695] = 469, - [696] = 625, - [697] = 470, - [698] = 698, - [699] = 612, - [700] = 381, - [701] = 359, - [702] = 625, - [703] = 407, - [704] = 408, - [705] = 612, - [706] = 525, - [707] = 410, - [708] = 625, - [709] = 612, - [710] = 625, - [711] = 391, - [712] = 397, - [713] = 382, - [714] = 387, - [715] = 715, - [716] = 364, - [717] = 375, - [718] = 384, - [719] = 472, - [720] = 473, - [721] = 376, - [722] = 377, - [723] = 380, - [724] = 389, - [725] = 392, - [726] = 518, - [727] = 438, - [728] = 403, - [729] = 404, - [730] = 361, - [731] = 439, - [732] = 367, - [733] = 388, - [734] = 474, - [735] = 373, - [736] = 374, - [737] = 529, - [738] = 411, - [739] = 390, + [556] = 362, + [557] = 385, + [558] = 363, + [559] = 352, + [560] = 292, + [561] = 310, + [562] = 340, + [563] = 366, + [564] = 383, + [565] = 377, + [566] = 384, + [567] = 389, + [568] = 326, + [569] = 352, + [570] = 353, + [571] = 358, + [572] = 288, + [573] = 362, + [574] = 345, + [575] = 359, + [576] = 366, + [577] = 370, + [578] = 339, + [579] = 367, + [580] = 368, + [581] = 369, + [582] = 373, + [583] = 351, + [584] = 365, + [585] = 372, + [586] = 351, + [587] = 354, + [588] = 359, + [589] = 342, + [590] = 353, + [591] = 328, + [592] = 378, + [593] = 379, + [594] = 354, + [595] = 380, + [596] = 374, + [597] = 365, + [598] = 375, + [599] = 355, + [600] = 373, + [601] = 355, + [602] = 370, + [603] = 367, + [604] = 350, + [605] = 371, + [606] = 374, + [607] = 328, + [608] = 285, + [609] = 349, + [610] = 371, + [611] = 312, + [612] = 375, + [613] = 341, + [614] = 357, + [615] = 389, + [616] = 376, + [617] = 361, + [618] = 344, + [619] = 377, + [620] = 349, + [621] = 381, + [622] = 368, + [623] = 383, + [624] = 384, + [625] = 372, + [626] = 291, + [627] = 376, + [628] = 385, + [629] = 369, + [630] = 357, + [631] = 361, + [632] = 363, + [633] = 381, + [634] = 325, + [635] = 317, + [636] = 378, + [637] = 339, + [638] = 379, + [639] = 380, + [640] = 358, + [641] = 340, + [642] = 341, + [643] = 326, + [644] = 342, + [645] = 179, + [646] = 345, + [647] = 344, + [648] = 350, + [649] = 442, + [650] = 405, + [651] = 349, + [652] = 408, + [653] = 409, + [654] = 416, + [655] = 419, + [656] = 424, + [657] = 403, + [658] = 426, + [659] = 427, + [660] = 428, + [661] = 429, + [662] = 430, + [663] = 434, + [664] = 435, + [665] = 390, + [666] = 351, + [667] = 437, + [668] = 438, + [669] = 519, + [670] = 447, + [671] = 448, + [672] = 449, + [673] = 450, + [674] = 352, + [675] = 353, + [676] = 354, + [677] = 355, + [678] = 451, + [679] = 452, + [680] = 453, + [681] = 454, + [682] = 455, + [683] = 457, + [684] = 458, + [685] = 459, + [686] = 460, + [687] = 461, + [688] = 468, + [689] = 470, + [690] = 471, + [691] = 472, + [692] = 473, + [693] = 474, + [694] = 357, + [695] = 477, + [696] = 479, + [697] = 481, + [698] = 483, + [699] = 484, + [700] = 509, + [701] = 510, + [702] = 511, + [703] = 514, + [704] = 358, + [705] = 403, + [706] = 359, + [707] = 389, + [708] = 406, + [709] = 411, + [710] = 414, + [711] = 417, + [712] = 418, + [713] = 420, + [714] = 421, + [715] = 423, + [716] = 361, + [717] = 431, + [718] = 439, + [719] = 440, + [720] = 441, + [721] = 443, + [722] = 444, + [723] = 445, + [724] = 446, + [725] = 456, + [726] = 362, + [727] = 462, + [728] = 463, + [729] = 464, + [730] = 465, + [731] = 466, + [732] = 467, + [733] = 325, + [734] = 480, + [735] = 506, + [736] = 507, + [737] = 515, + [738] = 404, + [739] = 407, [740] = 412, - [741] = 396, - [742] = 399, - [743] = 519, - [744] = 395, - [745] = 413, - [746] = 414, - [747] = 520, - [748] = 385, - [749] = 378, - [750] = 415, - [751] = 440, - [752] = 405, - [753] = 416, - [754] = 417, - [755] = 418, - [756] = 419, - [757] = 420, - [758] = 421, - [759] = 422, - [760] = 521, - [761] = 522, - [762] = 762, - [763] = 448, - [764] = 415, - [765] = 416, - [766] = 417, - [767] = 418, - [768] = 419, - [769] = 420, - [770] = 421, - [771] = 426, - [772] = 407, - [773] = 408, - [774] = 523, - [775] = 429, - [776] = 410, - [777] = 411, - [778] = 434, - [779] = 412, - [780] = 435, - [781] = 432, - [782] = 436, - [783] = 438, - [784] = 413, - [785] = 414, - [786] = 453, - [787] = 454, - [788] = 415, - [789] = 416, - [790] = 417, - [791] = 418, - [792] = 440, - [793] = 419, - [794] = 420, - [795] = 421, - [796] = 441, - [797] = 422, - [798] = 423, - [799] = 424, - [800] = 442, - [801] = 456, - [802] = 425, - [803] = 426, - [804] = 444, - [805] = 525, - [806] = 445, - [807] = 427, - [808] = 428, - [809] = 429, - [810] = 446, - [811] = 474, - [812] = 455, - [813] = 147, - [814] = 527, - [815] = 457, - [816] = 458, - [817] = 461, - [818] = 512, - [819] = 459, - [820] = 460, - [821] = 439, - [822] = 464, - [823] = 447, - [824] = 431, - [825] = 432, - [826] = 448, - [827] = 475, - [828] = 434, - [829] = 449, - [830] = 406, - [831] = 435, - [832] = 436, - [833] = 529, - [834] = 510, + [741] = 413, + [742] = 425, + [743] = 432, + [744] = 325, + [745] = 365, + [746] = 469, + [747] = 508, + [748] = 363, + [749] = 366, + [750] = 367, + [751] = 368, + [752] = 369, + [753] = 421, + [754] = 370, + [755] = 371, + [756] = 373, + [757] = 374, + [758] = 375, + [759] = 376, + [760] = 377, + [761] = 378, + [762] = 379, + [763] = 380, + [764] = 381, + [765] = 384, + [766] = 385, + [767] = 179, + [768] = 326, + [769] = 350, + [770] = 328, + [771] = 372, + [772] = 339, + [773] = 325, + [774] = 383, + [775] = 340, + [776] = 341, + [777] = 342, + [778] = 344, + [779] = 345, + [780] = 422, + [781] = 484, + [782] = 414, + [783] = 390, + [784] = 452, + [785] = 453, + [786] = 454, + [787] = 455, + [788] = 456, + [789] = 457, + [790] = 418, + [791] = 458, + [792] = 459, + [793] = 427, + [794] = 444, + [795] = 445, + [796] = 460, + [797] = 461, + [798] = 462, + [799] = 463, + [800] = 464, + [801] = 465, + [802] = 466, + [803] = 467, + [804] = 428, + [805] = 429, + [806] = 519, + [807] = 468, + [808] = 469, + [809] = 473, + [810] = 474, + [811] = 446, + [812] = 430, + [813] = 437, + [814] = 431, + [815] = 421, + [816] = 477, + [817] = 479, + [818] = 480, + [819] = 481, + [820] = 422, + [821] = 423, + [822] = 419, + [823] = 483, + [824] = 451, + [825] = 443, + [826] = 507, + [827] = 424, + [828] = 508, + [829] = 448, + [830] = 449, + [831] = 515, + [832] = 426, + [833] = 179, + [834] = 411, [835] = 438, - [836] = 439, - [837] = 440, - [838] = 441, - [839] = 442, - [840] = 469, - [841] = 444, - [842] = 445, - [843] = 446, - [844] = 447, - [845] = 428, - [846] = 449, - [847] = 470, - [848] = 406, - [849] = 450, - [850] = 147, - [851] = 451, - [852] = 452, - [853] = 472, - [854] = 473, - [855] = 474, - [856] = 510, - [857] = 529, - [858] = 472, - [859] = 512, - [860] = 469, - [861] = 453, - [862] = 454, - [863] = 455, - [864] = 456, - [865] = 513, - [866] = 513, - [867] = 451, - [868] = 457, - [869] = 458, - [870] = 518, - [871] = 459, - [872] = 460, - [873] = 461, - [874] = 519, - [875] = 462, - [876] = 521, - [877] = 522, - [878] = 450, - [879] = 524, - [880] = 462, - [881] = 464, - [882] = 526, - [883] = 517, - [884] = 528, - [885] = 518, - [886] = 407, - [887] = 470, - [888] = 519, - [889] = 452, - [890] = 520, - [891] = 521, - [892] = 410, - [893] = 147, - [894] = 411, - [895] = 522, - [896] = 412, - [897] = 473, - [898] = 408, - [899] = 413, - [900] = 414, - [901] = 523, - [902] = 422, - [903] = 423, - [904] = 424, - [905] = 425, - [906] = 524, - [907] = 525, - [908] = 526, - [909] = 527, - [910] = 427, - [911] = 147, - [912] = 528, - [913] = 517, - [914] = 520, - [915] = 475, - [916] = 431, - [917] = 917, - [918] = 308, - [919] = 308, - [920] = 308, - [921] = 308, - [922] = 308, - [923] = 308, - [924] = 308, - [925] = 308, - [926] = 308, - [927] = 308, - [928] = 308, - [929] = 308, - [930] = 308, - [931] = 308, - [932] = 308, - [933] = 308, - [934] = 934, - [935] = 934, - [936] = 936, - [937] = 937, - [938] = 938, - [939] = 939, - [940] = 940, - [941] = 938, - [942] = 939, - [943] = 943, - [944] = 936, - [945] = 945, - [946] = 940, - [947] = 945, - [948] = 940, - [949] = 937, - [950] = 938, - [951] = 939, - [952] = 937, - [953] = 936, - [954] = 945, - [955] = 940, - [956] = 937, - [957] = 938, - [958] = 939, - [959] = 936, - [960] = 945, - [961] = 940, - [962] = 937, - [963] = 938, - [964] = 939, - [965] = 936, - [966] = 945, - [967] = 940, - [968] = 938, - [969] = 936, - [970] = 945, - [971] = 940, - [972] = 938, - [973] = 973, - [974] = 936, - [975] = 975, - [976] = 945, - [977] = 940, - [978] = 938, - [979] = 936, - [980] = 945, - [981] = 940, - [982] = 938, - [983] = 936, - [984] = 945, - [985] = 940, - [986] = 938, - [987] = 987, - [988] = 945, - [989] = 936, - [990] = 990, - [991] = 991, - [992] = 991, - [993] = 991, - [994] = 991, - [995] = 991, - [996] = 991, - [997] = 991, - [998] = 308, - [999] = 308, - [1000] = 1000, - [1001] = 1000, - [1002] = 1000, - [1003] = 1000, - [1004] = 1000, - [1005] = 308, - [1006] = 1000, - [1007] = 1000, - [1008] = 1008, - [1009] = 1009, - [1010] = 1010, - [1011] = 1010, - [1012] = 1012, - [1013] = 1013, - [1014] = 1014, - [1015] = 1015, - [1016] = 302, - [1017] = 306, - [1018] = 1018, - [1019] = 1013, + [836] = 450, + [837] = 416, + [838] = 470, + [839] = 471, + [840] = 472, + [841] = 439, + [842] = 440, + [843] = 405, + [844] = 420, + [845] = 404, + [846] = 407, + [847] = 509, + [848] = 510, + [849] = 511, + [850] = 441, + [851] = 514, + [852] = 412, + [853] = 413, + [854] = 403, + [855] = 406, + [856] = 442, + [857] = 417, + [858] = 434, + [859] = 425, + [860] = 408, + [861] = 435, + [862] = 432, + [863] = 409, + [864] = 447, + [865] = 506, + [866] = 529, + [867] = 448, + [868] = 449, + [869] = 419, + [870] = 870, + [871] = 450, + [872] = 872, + [873] = 420, + [874] = 441, + [875] = 519, + [876] = 470, + [877] = 471, + [878] = 472, + [879] = 554, + [880] = 442, + [881] = 412, + [882] = 413, + [883] = 443, + [884] = 555, + [885] = 553, + [886] = 870, + [887] = 447, + [888] = 509, + [889] = 510, + [890] = 511, + [891] = 425, + [892] = 446, + [893] = 514, + [894] = 432, + [895] = 872, + [896] = 550, + [897] = 542, + [898] = 451, + [899] = 444, + [900] = 526, + [901] = 527, + [902] = 528, + [903] = 452, + [904] = 453, + [905] = 454, + [906] = 544, + [907] = 546, + [908] = 870, + [909] = 455, + [910] = 456, + [911] = 457, + [912] = 458, + [913] = 459, + [914] = 872, + [915] = 422, + [916] = 547, + [917] = 423, + [918] = 460, + [919] = 461, + [920] = 445, + [921] = 462, + [922] = 463, + [923] = 464, + [924] = 870, + [925] = 465, + [926] = 466, + [927] = 467, + [928] = 532, + [929] = 872, + [930] = 533, + [931] = 551, + [932] = 870, + [933] = 404, + [934] = 535, + [935] = 872, + [936] = 870, + [937] = 468, + [938] = 469, + [939] = 424, + [940] = 872, + [941] = 872, + [942] = 870, + [943] = 544, + [944] = 407, + [945] = 473, + [946] = 474, + [947] = 870, + [948] = 872, + [949] = 949, + [950] = 552, + [951] = 553, + [952] = 870, + [953] = 554, + [954] = 872, + [955] = 870, + [956] = 872, + [957] = 542, + [958] = 408, + [959] = 546, + [960] = 555, + [961] = 536, + [962] = 537, + [963] = 538, + [964] = 406, + [965] = 477, + [966] = 526, + [967] = 527, + [968] = 528, + [969] = 529, + [970] = 479, + [971] = 480, + [972] = 481, + [973] = 409, + [974] = 870, + [975] = 483, + [976] = 484, + [977] = 426, + [978] = 506, + [979] = 507, + [980] = 540, + [981] = 551, + [982] = 508, + [983] = 427, + [984] = 428, + [985] = 532, + [986] = 533, + [987] = 535, + [988] = 429, + [989] = 989, + [990] = 541, + [991] = 430, + [992] = 431, + [993] = 552, + [994] = 411, + [995] = 515, + [996] = 414, + [997] = 434, + [998] = 416, + [999] = 536, + [1000] = 537, + [1001] = 538, + [1002] = 435, + [1003] = 390, + [1004] = 417, + [1005] = 418, + [1006] = 405, + [1007] = 437, + [1008] = 438, + [1009] = 540, + [1010] = 550, + [1011] = 439, + [1012] = 541, + [1013] = 440, + [1014] = 547, + [1015] = 872, + [1016] = 179, + [1017] = 179, + [1018] = 179, + [1019] = 179, [1020] = 1020, - [1021] = 1021, - [1022] = 1021, - [1023] = 1018, - [1024] = 1013, - [1025] = 1020, - [1026] = 1026, - [1027] = 1026, - [1028] = 1021, - [1029] = 1020, - [1030] = 1020, - [1031] = 1031, - [1032] = 1020, - [1033] = 1018, - [1034] = 1026, - [1035] = 1035, - [1036] = 1026, - [1037] = 1020, - [1038] = 1021, - [1039] = 1026, - [1040] = 1020, - [1041] = 1021, - [1042] = 1026, - [1043] = 1020, - [1044] = 1021, - [1045] = 1020, - [1046] = 1021, - [1047] = 1018, - [1048] = 1020, - [1049] = 1021, - [1050] = 1013, - [1051] = 1020, - [1052] = 1021, - [1053] = 1020, - [1054] = 1021, - [1055] = 1026, - [1056] = 1021, - [1057] = 1026, - [1058] = 1021, - [1059] = 1020, - [1060] = 1021, - [1061] = 1020, - [1062] = 1021, - [1063] = 1013, - [1064] = 1020, - [1065] = 1013, - [1066] = 1021, - [1067] = 1020, - [1068] = 1021, - [1069] = 1069, - [1070] = 1070, - [1071] = 1071, - [1072] = 1072, - [1073] = 1069, - [1074] = 1069, - [1075] = 1070, - [1076] = 1070, - [1077] = 1071, - [1078] = 1072, - [1079] = 1071, - [1080] = 357, - [1081] = 1072, - [1082] = 1082, - [1083] = 1070, - [1084] = 1070, - [1085] = 1070, - [1086] = 1071, - [1087] = 1072, - [1088] = 1069, - [1089] = 1009, - [1090] = 1071, - [1091] = 1070, - [1092] = 1071, - [1093] = 1071, - [1094] = 1070, - [1095] = 1071, - [1096] = 1072, - [1097] = 1069, - [1098] = 1071, - [1099] = 1069, - [1100] = 1072, - [1101] = 1101, - [1102] = 354, - [1103] = 1008, - [1104] = 355, - [1105] = 1070, - [1106] = 1071, - [1107] = 256, - [1108] = 253, - [1109] = 1071, - [1110] = 1072, - [1111] = 1072, - [1112] = 1069, - [1113] = 1070, - [1114] = 1069, - [1115] = 1070, - [1116] = 396, - [1117] = 395, - [1118] = 403, - [1119] = 364, - [1120] = 375, - [1121] = 369, - [1122] = 371, - [1123] = 394, - [1124] = 376, - [1125] = 377, - [1126] = 380, - [1127] = 389, - [1128] = 405, - [1129] = 392, - [1130] = 374, - [1131] = 382, - [1132] = 367, - [1133] = 370, - [1134] = 373, - [1135] = 1135, - [1136] = 372, - [1137] = 404, - [1138] = 387, - [1139] = 361, - [1140] = 359, - [1141] = 381, - [1142] = 360, - [1143] = 384, - [1144] = 1144, - [1145] = 400, - [1146] = 379, - [1147] = 388, - [1148] = 390, - [1149] = 1149, - [1150] = 1012, - [1151] = 391, - [1152] = 401, - [1153] = 386, - [1154] = 365, - [1155] = 366, - [1156] = 385, - [1157] = 399, - [1158] = 397, - [1159] = 398, - [1160] = 368, - [1161] = 378, - [1162] = 1162, - [1163] = 1163, - [1164] = 1163, - [1165] = 1165, - [1166] = 1165, - [1167] = 1167, - [1168] = 1168, - [1169] = 1163, - [1170] = 1170, - [1171] = 1035, - [1172] = 1167, - [1173] = 1163, - [1174] = 1165, + [1021] = 436, + [1022] = 436, + [1023] = 436, + [1024] = 436, + [1025] = 436, + [1026] = 436, + [1027] = 436, + [1028] = 436, + [1029] = 436, + [1030] = 436, + [1031] = 436, + [1032] = 436, + [1033] = 436, + [1034] = 436, + [1035] = 436, + [1036] = 436, + [1037] = 1037, + [1038] = 1037, + [1039] = 1039, + [1040] = 1040, + [1041] = 1041, + [1042] = 1042, + [1043] = 1043, + [1044] = 1039, + [1045] = 1040, + [1046] = 1041, + [1047] = 1043, + [1048] = 1048, + [1049] = 1043, + [1050] = 1039, + [1051] = 1040, + [1052] = 1041, + [1053] = 1053, + [1054] = 1039, + [1055] = 1040, + [1056] = 1048, + [1057] = 1039, + [1058] = 1040, + [1059] = 1048, + [1060] = 1041, + [1061] = 1061, + [1062] = 1043, + [1063] = 1043, + [1064] = 1043, + [1065] = 1039, + [1066] = 1040, + [1067] = 1041, + [1068] = 1040, + [1069] = 1039, + [1070] = 1040, + [1071] = 1048, + [1072] = 1041, + [1073] = 1061, + [1074] = 1048, + [1075] = 1075, + [1076] = 1076, + [1077] = 1041, + [1078] = 1061, + [1079] = 1041, + [1080] = 1043, + [1081] = 1039, + [1082] = 1040, + [1083] = 1041, + [1084] = 1041, + [1085] = 1061, + [1086] = 1061, + [1087] = 1043, + [1088] = 1043, + [1089] = 1039, + [1090] = 1090, + [1091] = 1039, + [1092] = 1040, + [1093] = 1043, + [1094] = 1094, + [1095] = 1094, + [1096] = 1094, + [1097] = 1094, + [1098] = 1094, + [1099] = 1094, + [1100] = 1094, + [1101] = 436, + [1102] = 436, + [1103] = 1103, + [1104] = 436, + [1105] = 1103, + [1106] = 1103, + [1107] = 1103, + [1108] = 1103, + [1109] = 1103, + [1110] = 1103, + [1111] = 1111, + [1112] = 1112, + [1113] = 1111, + [1114] = 1114, + [1115] = 1115, + [1116] = 289, + [1117] = 1117, + [1118] = 290, + [1119] = 1119, + [1120] = 1120, + [1121] = 1121, + [1122] = 1121, + [1123] = 1123, + [1124] = 1124, + [1125] = 1119, + [1126] = 1119, + [1127] = 1127, + [1128] = 1124, + [1129] = 1129, + [1130] = 1129, + [1131] = 1123, + [1132] = 1121, + [1133] = 1121, + [1134] = 1123, + [1135] = 1124, + [1136] = 1129, + [1137] = 1121, + [1138] = 1121, + [1139] = 1123, + [1140] = 1124, + [1141] = 1119, + [1142] = 1121, + [1143] = 1129, + [1144] = 1121, + [1145] = 1123, + [1146] = 1123, + [1147] = 1124, + [1148] = 1124, + [1149] = 1123, + [1150] = 1123, + [1151] = 1119, + [1152] = 1121, + [1153] = 1124, + [1154] = 1123, + [1155] = 1121, + [1156] = 1123, + [1157] = 1124, + [1158] = 1158, + [1159] = 1123, + [1160] = 1121, + [1161] = 1119, + [1162] = 1121, + [1163] = 1121, + [1164] = 1123, + [1165] = 1123, + [1166] = 1123, + [1167] = 1121, + [1168] = 1121, + [1169] = 1123, + [1170] = 1123, + [1171] = 1121, + [1172] = 1172, + [1173] = 1172, + [1174] = 1112, [1175] = 1175, - [1176] = 1163, - [1177] = 1163, - [1178] = 1175, + [1176] = 1176, + [1177] = 1176, + [1178] = 1178, [1179] = 1175, - [1180] = 1175, - [1181] = 1163, - [1182] = 1163, - [1183] = 1163, - [1184] = 1163, - [1185] = 1167, - [1186] = 1175, - [1187] = 1167, - [1188] = 1175, - [1189] = 1167, + [1180] = 1114, + [1181] = 1176, + [1182] = 1175, + [1183] = 1175, + [1184] = 1172, + [1185] = 1176, + [1186] = 1172, + [1187] = 1176, + [1188] = 1178, + [1189] = 1178, [1190] = 1175, - [1191] = 1175, + [1191] = 1172, [1192] = 1175, - [1193] = 1163, - [1194] = 1194, - [1195] = 1195, - [1196] = 1196, - [1197] = 1197, - [1198] = 1198, - [1199] = 1199, - [1200] = 1200, - [1201] = 1201, - [1202] = 1035, - [1203] = 1203, + [1193] = 1175, + [1194] = 1176, + [1195] = 1172, + [1196] = 1176, + [1197] = 1178, + [1198] = 317, + [1199] = 1175, + [1200] = 310, + [1201] = 1176, + [1202] = 1172, + [1203] = 1178, [1204] = 1204, - [1205] = 1205, - [1206] = 1205, - [1207] = 1207, - [1208] = 1205, - [1209] = 1209, - [1210] = 1205, - [1211] = 1211, - [1212] = 1212, - [1213] = 1213, - [1214] = 1214, - [1215] = 1215, - [1216] = 1216, - [1217] = 1217, - [1218] = 1212, - [1219] = 1212, - [1220] = 1212, - [1221] = 1221, - [1222] = 1215, - [1223] = 1213, - [1224] = 1212, - [1225] = 1213, - [1226] = 1212, - [1227] = 1213, - [1228] = 1213, - [1229] = 1229, - [1230] = 1215, - [1231] = 1215, - [1232] = 1213, - [1233] = 1212, - [1234] = 1212, - [1235] = 1212, - [1236] = 1213, - [1237] = 1212, - [1238] = 1213, - [1239] = 1239, - [1240] = 1215, - [1241] = 1212, - [1242] = 1213, - [1243] = 1243, - [1244] = 1213, - [1245] = 1212, - [1246] = 1246, - [1247] = 1247, + [1205] = 312, + [1206] = 1176, + [1207] = 1204, + [1208] = 1208, + [1209] = 1175, + [1210] = 1175, + [1211] = 1176, + [1212] = 1204, + [1213] = 1172, + [1214] = 1178, + [1215] = 285, + [1216] = 288, + [1217] = 1178, + [1218] = 1175, + [1219] = 1176, + [1220] = 1178, + [1221] = 375, + [1222] = 384, + [1223] = 354, + [1224] = 357, + [1225] = 355, + [1226] = 358, + [1227] = 344, + [1228] = 326, + [1229] = 350, + [1230] = 372, + [1231] = 328, + [1232] = 339, + [1233] = 385, + [1234] = 380, + [1235] = 353, + [1236] = 1236, + [1237] = 381, + [1238] = 365, + [1239] = 340, + [1240] = 341, + [1241] = 345, + [1242] = 370, + [1243] = 371, + [1244] = 352, + [1245] = 363, + [1246] = 349, + [1247] = 361, [1248] = 1248, - [1249] = 1213, - [1250] = 1250, - [1251] = 1251, - [1252] = 1212, - [1253] = 1253, - [1254] = 1254, - [1255] = 1215, - [1256] = 1213, - [1257] = 1212, - [1258] = 1215, - [1259] = 1215, - [1260] = 1213, - [1261] = 1213, - [1262] = 1212, - [1263] = 1212, - [1264] = 1264, - [1265] = 1213, - [1266] = 1266, - [1267] = 1213, + [1249] = 359, + [1250] = 366, + [1251] = 342, + [1252] = 351, + [1253] = 367, + [1254] = 389, + [1255] = 368, + [1256] = 377, + [1257] = 383, + [1258] = 373, + [1259] = 369, + [1260] = 374, + [1261] = 362, + [1262] = 1262, + [1263] = 379, + [1264] = 376, + [1265] = 1115, + [1266] = 378, + [1267] = 1267, [1268] = 1268, - [1269] = 1269, - [1270] = 1268, + [1269] = 1268, + [1270] = 1270, [1271] = 1271, [1272] = 1272, - [1273] = 1273, - [1274] = 1274, + [1273] = 1268, + [1274] = 1270, [1275] = 1275, - [1276] = 1276, - [1277] = 1274, - [1278] = 1268, + [1276] = 1268, + [1277] = 1270, + [1278] = 1278, [1279] = 1268, - [1280] = 1268, - [1281] = 1281, - [1282] = 1282, - [1283] = 1268, - [1284] = 1284, - [1285] = 1268, - [1286] = 1286, - [1287] = 1287, - [1288] = 1288, - [1289] = 1281, - [1290] = 1290, - [1291] = 1291, - [1292] = 1281, - [1293] = 1293, - [1294] = 1294, + [1280] = 1270, + [1281] = 1275, + [1282] = 1268, + [1283] = 1272, + [1284] = 1275, + [1285] = 1270, + [1286] = 1272, + [1287] = 1270, + [1288] = 1270, + [1289] = 1270, + [1290] = 1270, + [1291] = 1272, + [1292] = 1270, + [1293] = 1268, + [1294] = 1272, [1295] = 1268, - [1296] = 1296, - [1297] = 1297, - [1298] = 1298, - [1299] = 1288, + [1296] = 1127, + [1297] = 1268, + [1298] = 1270, + [1299] = 1299, [1300] = 1300, [1301] = 1301, [1302] = 1302, - [1303] = 1272, + [1303] = 1301, [1304] = 1304, - [1305] = 1305, - [1306] = 1288, - [1307] = 1268, - [1308] = 1308, - [1309] = 1284, + [1305] = 1301, + [1306] = 1306, + [1307] = 1307, + [1308] = 1127, + [1309] = 1309, [1310] = 1310, [1311] = 1311, - [1312] = 1288, - [1313] = 1313, + [1312] = 1312, + [1313] = 1301, [1314] = 1314, - [1315] = 1284, - [1316] = 1284, - [1317] = 1284, - [1318] = 1272, - [1319] = 1311, - [1320] = 1302, - [1321] = 1321, - [1322] = 1268, - [1323] = 1323, - [1324] = 1272, - [1325] = 1325, - [1326] = 1302, - [1327] = 1268, - [1328] = 1274, - [1329] = 1288, - [1330] = 1284, - [1331] = 1287, - [1332] = 1313, - [1333] = 1281, - [1334] = 1313, - [1335] = 1311, - [1336] = 1321, + [1315] = 1315, + [1316] = 1316, + [1317] = 1317, + [1318] = 1318, + [1319] = 1316, + [1320] = 1316, + [1321] = 1316, + [1322] = 1316, + [1323] = 1316, + [1324] = 1318, + [1325] = 1318, + [1326] = 1317, + [1327] = 1316, + [1328] = 1316, + [1329] = 1329, + [1330] = 1330, + [1331] = 1316, + [1332] = 1332, + [1333] = 1318, + [1334] = 1317, + [1335] = 1335, + [1336] = 1316, [1337] = 1337, - [1338] = 1288, - [1339] = 1302, - [1340] = 1274, - [1341] = 1272, - [1342] = 1313, - [1343] = 1284, - [1344] = 1288, - [1345] = 1313, - [1346] = 1268, - [1347] = 1284, - [1348] = 1313, - [1349] = 1311, - [1350] = 1311, - [1351] = 1313, - [1352] = 1287, - [1353] = 1311, - [1354] = 1313, - [1355] = 1287, - [1356] = 1294, - [1357] = 1313, - [1358] = 1302, - [1359] = 1298, - [1360] = 1313, - [1361] = 1288, - [1362] = 1284, - [1363] = 1313, - [1364] = 1364, - [1365] = 1311, - [1366] = 1366, - [1367] = 1302, - [1368] = 1269, - [1369] = 1369, - [1370] = 1268, - [1371] = 1271, - [1372] = 1287, - [1373] = 1281, - [1374] = 1273, - [1375] = 1275, - [1376] = 1276, - [1377] = 1272, - [1378] = 1282, - [1379] = 1311, - [1380] = 1311, - [1381] = 1302, - [1382] = 1286, + [1338] = 1338, + [1339] = 1339, + [1340] = 1340, + [1341] = 1341, + [1342] = 1318, + [1343] = 1317, + [1344] = 1316, + [1345] = 1318, + [1346] = 1317, + [1347] = 1316, + [1348] = 1348, + [1349] = 1317, + [1350] = 1316, + [1351] = 1317, + [1352] = 1317, + [1353] = 1353, + [1354] = 1354, + [1355] = 1317, + [1356] = 1317, + [1357] = 1357, + [1358] = 1358, + [1359] = 1317, + [1360] = 1316, + [1361] = 1361, + [1362] = 1362, + [1363] = 1363, + [1364] = 1317, + [1365] = 1317, + [1366] = 1317, + [1367] = 1318, + [1368] = 1318, + [1369] = 1316, + [1370] = 1317, + [1371] = 1317, + [1372] = 1316, + [1373] = 1373, + [1374] = 1374, + [1375] = 1375, + [1376] = 1376, + [1377] = 1377, + [1378] = 1378, + [1379] = 1379, + [1380] = 1380, + [1381] = 1381, + [1382] = 1382, [1383] = 1383, - [1384] = 1383, - [1385] = 1268, - [1386] = 1291, - [1387] = 1296, - [1388] = 1300, - [1389] = 1301, - [1390] = 1304, - [1391] = 1305, - [1392] = 1302, - [1393] = 1272, - [1394] = 1366, - [1395] = 1364, - [1396] = 1293, - [1397] = 1272, - [1398] = 1383, - [1399] = 1308, - [1400] = 1310, - [1401] = 1268, - [1402] = 1284, - [1403] = 1272, - [1404] = 1404, - [1405] = 1274, - [1406] = 1383, - [1407] = 1288, - [1408] = 1297, - [1409] = 1323, - [1410] = 1337, - [1411] = 1311, - [1412] = 1302, + [1384] = 1384, + [1385] = 1385, + [1386] = 1386, + [1387] = 1387, + [1388] = 1388, + [1389] = 1389, + [1390] = 1390, + [1391] = 1391, + [1392] = 1392, + [1393] = 1393, + [1394] = 1394, + [1395] = 1395, + [1396] = 1396, + [1397] = 1374, + [1398] = 1378, + [1399] = 1399, + [1400] = 1373, + [1401] = 1379, + [1402] = 1391, + [1403] = 1403, + [1404] = 1383, + [1405] = 1385, + [1406] = 1375, + [1407] = 1376, + [1408] = 1386, + [1409] = 1380, + [1410] = 1403, + [1411] = 1387, + [1412] = 1412, [1413] = 1413, - [1414] = 1413, - [1415] = 1314, - [1416] = 1268, - [1417] = 1364, - [1418] = 1383, - [1419] = 1272, - [1420] = 1302, - [1421] = 1421, - [1422] = 1422, - [1423] = 1423, - [1424] = 1424, - [1425] = 1425, - [1426] = 1426, - [1427] = 1427, - [1428] = 1428, - [1429] = 1429, - [1430] = 1430, - [1431] = 1431, - [1432] = 1432, - [1433] = 1433, - [1434] = 1422, - [1435] = 1423, - [1436] = 1436, - [1437] = 1437, - [1438] = 1423, - [1439] = 1425, - [1440] = 1428, - [1441] = 1441, - [1442] = 1442, - [1443] = 1426, - [1444] = 1427, - [1445] = 1445, - [1446] = 1429, - [1447] = 1429, - [1448] = 1448, - [1449] = 1432, - [1450] = 1436, - [1451] = 1451, + [1414] = 1414, + [1415] = 1379, + [1416] = 1381, + [1417] = 1382, + [1418] = 1389, + [1419] = 1390, + [1420] = 1379, + [1421] = 1391, + [1422] = 1403, + [1423] = 1393, + [1424] = 1375, + [1425] = 1376, + [1426] = 1380, + [1427] = 1412, + [1428] = 1413, + [1429] = 1379, + [1430] = 1381, + [1431] = 1382, + [1432] = 1394, + [1433] = 1391, + [1434] = 1403, + [1435] = 1375, + [1436] = 1376, + [1437] = 1380, + [1438] = 1438, + [1439] = 1412, + [1440] = 1413, + [1441] = 1379, + [1442] = 1395, + [1443] = 1443, + [1444] = 1444, + [1445] = 1399, + [1446] = 1391, + [1447] = 1403, + [1448] = 1375, + [1449] = 1376, + [1450] = 1412, + [1451] = 1379, [1452] = 1452, - [1453] = 1423, - [1454] = 1426, - [1455] = 1427, - [1456] = 1429, - [1457] = 1432, - [1458] = 1436, - [1459] = 1423, - [1460] = 1429, - [1461] = 1432, - [1462] = 1436, - [1463] = 1423, - [1464] = 1429, - [1465] = 1432, - [1466] = 1436, - [1467] = 1423, - [1468] = 1426, - [1469] = 1469, - [1470] = 1470, - [1471] = 1427, - [1472] = 1421, - [1473] = 1426, - [1474] = 1427, - [1475] = 1475, - [1476] = 1476, - [1477] = 1429, - [1478] = 1476, - [1479] = 1429, + [1453] = 1453, + [1454] = 1454, + [1455] = 1455, + [1456] = 1392, + [1457] = 1396, + [1458] = 1412, + [1459] = 1391, + [1460] = 1403, + [1461] = 1375, + [1462] = 1376, + [1463] = 1413, + [1464] = 1412, + [1465] = 1379, + [1466] = 1381, + [1467] = 1444, + [1468] = 1391, + [1469] = 1403, + [1470] = 1452, + [1471] = 1375, + [1472] = 1376, + [1473] = 1453, + [1474] = 1412, + [1475] = 1382, + [1476] = 1379, + [1477] = 1454, + [1478] = 1391, + [1479] = 1403, [1480] = 1480, - [1481] = 1481, - [1482] = 1482, - [1483] = 1483, - [1484] = 1484, - [1485] = 1485, - [1486] = 1486, - [1487] = 1487, - [1488] = 1488, - [1489] = 1489, - [1490] = 1490, - [1491] = 1432, - [1492] = 1436, - [1493] = 1493, - [1494] = 1494, - [1495] = 1495, - [1496] = 1481, - [1497] = 1433, - [1498] = 1482, - [1499] = 1483, - [1500] = 1484, - [1501] = 1485, - [1502] = 1486, - [1503] = 1487, - [1504] = 1423, - [1505] = 1488, - [1506] = 1489, - [1507] = 1490, - [1508] = 1432, - [1509] = 1476, - [1510] = 1426, - [1511] = 1481, - [1512] = 1482, - [1513] = 1483, - [1514] = 1484, - [1515] = 1485, - [1516] = 1486, - [1517] = 1487, - [1518] = 1488, - [1519] = 1489, - [1520] = 1490, - [1521] = 1427, - [1522] = 1421, - [1523] = 1426, - [1524] = 1427, - [1525] = 1469, - [1526] = 1426, - [1527] = 1427, - [1528] = 1429, - [1529] = 1432, - [1530] = 1436, - [1531] = 1423, - [1532] = 1469, - [1533] = 1470, - [1534] = 1421, - [1535] = 1426, - [1536] = 1427, - [1537] = 1475, - [1538] = 1476, - [1539] = 1429, - [1540] = 1475, - [1541] = 1476, - [1542] = 1429, - [1543] = 1431, - [1544] = 1481, - [1545] = 1482, - [1546] = 1483, - [1547] = 1484, - [1548] = 1485, - [1549] = 1486, - [1550] = 1487, - [1551] = 1488, - [1552] = 1489, - [1553] = 1490, - [1554] = 1432, - [1555] = 1555, - [1556] = 1436, - [1557] = 1426, - [1558] = 1436, - [1559] = 1423, - [1560] = 1560, - [1561] = 1561, - [1562] = 1476, - [1563] = 1481, - [1564] = 1482, - [1565] = 1483, - [1566] = 1484, - [1567] = 1485, - [1568] = 1486, - [1569] = 1487, - [1570] = 1488, - [1571] = 1489, - [1572] = 1490, - [1573] = 1426, - [1574] = 1427, - [1575] = 1469, - [1576] = 1421, - [1577] = 1577, - [1578] = 1475, - [1579] = 1579, - [1580] = 1481, - [1581] = 1482, - [1582] = 1483, - [1583] = 1484, - [1584] = 1485, - [1585] = 1486, - [1586] = 1487, - [1587] = 1488, - [1588] = 1489, - [1589] = 1490, - [1590] = 1432, - [1591] = 1470, - [1592] = 1481, - [1593] = 1476, - [1594] = 1481, - [1595] = 1482, - [1596] = 1483, - [1597] = 1484, - [1598] = 1485, - [1599] = 1486, - [1600] = 1487, - [1601] = 1488, - [1602] = 1489, - [1603] = 1490, - [1604] = 1469, - [1605] = 1423, - [1606] = 1421, - [1607] = 1475, - [1608] = 1482, - [1609] = 1483, - [1610] = 1484, - [1611] = 1485, - [1612] = 1423, - [1613] = 1486, - [1614] = 1476, - [1615] = 1481, - [1616] = 1482, - [1617] = 1483, - [1618] = 1484, - [1619] = 1485, - [1620] = 1486, - [1621] = 1487, - [1622] = 1488, - [1623] = 1489, - [1624] = 1490, - [1625] = 1469, - [1626] = 1421, - [1627] = 1487, - [1628] = 1422, - [1629] = 1436, - [1630] = 1489, - [1631] = 1490, - [1632] = 1632, - [1633] = 1427, - [1634] = 1476, - [1635] = 1481, - [1636] = 1482, - [1637] = 1483, - [1638] = 1484, - [1639] = 1485, - [1640] = 1486, - [1641] = 1487, - [1642] = 1488, - [1643] = 1489, - [1644] = 1490, - [1645] = 1469, - [1646] = 1421, - [1647] = 1647, - [1648] = 1432, - [1649] = 1476, - [1650] = 1481, - [1651] = 1482, - [1652] = 1483, - [1653] = 1484, - [1654] = 1485, - [1655] = 1486, - [1656] = 1487, - [1657] = 1488, - [1658] = 1489, - [1659] = 1490, - [1660] = 1469, - [1661] = 1426, - [1662] = 1427, - [1663] = 1469, - [1664] = 1421, - [1665] = 1476, - [1666] = 1429, - [1667] = 1667, - [1668] = 1469, - [1669] = 1421, - [1670] = 1469, - [1671] = 1421, - [1672] = 1481, - [1673] = 1482, - [1674] = 1483, - [1675] = 1484, - [1676] = 1485, - [1677] = 1486, - [1678] = 1469, - [1679] = 1487, - [1680] = 1421, - [1681] = 1488, - [1682] = 1489, - [1683] = 1490, - [1684] = 1469, - [1685] = 1432, - [1686] = 1421, - [1687] = 1687, - [1688] = 1688, - [1689] = 1469, - [1690] = 1560, - [1691] = 1421, - [1692] = 1426, - [1693] = 1632, - [1694] = 1427, - [1695] = 1452, - [1696] = 1475, - [1697] = 1476, - [1698] = 1429, - [1699] = 1481, - [1700] = 1482, - [1701] = 1483, - [1702] = 1484, - [1703] = 1485, - [1704] = 1486, - [1705] = 1487, - [1706] = 1488, - [1707] = 1489, - [1708] = 1490, - [1709] = 1432, - [1710] = 1710, - [1711] = 1561, - [1712] = 1577, - [1713] = 1436, - [1714] = 1647, - [1715] = 1423, - [1716] = 1442, - [1717] = 1476, - [1718] = 1481, - [1719] = 1482, - [1720] = 1483, - [1721] = 1484, - [1722] = 1485, - [1723] = 1486, - [1724] = 1487, - [1725] = 1488, - [1726] = 1489, - [1727] = 1490, - [1728] = 1426, - [1729] = 1427, - [1730] = 1429, - [1731] = 1432, - [1732] = 1436, - [1733] = 1423, - [1734] = 1560, - [1735] = 1632, - [1736] = 1452, - [1737] = 1710, - [1738] = 1561, - [1739] = 1577, - [1740] = 1647, - [1741] = 1741, - [1742] = 1442, - [1743] = 1710, - [1744] = 1560, - [1745] = 1632, - [1746] = 1452, - [1747] = 1710, - [1748] = 1561, - [1749] = 1577, - [1750] = 1647, - [1751] = 1442, - [1752] = 1560, - [1753] = 1632, - [1754] = 1452, - [1755] = 1710, - [1756] = 1561, - [1757] = 1577, - [1758] = 1647, - [1759] = 1442, - [1760] = 1452, - [1761] = 1710, - [1762] = 1561, - [1763] = 1577, - [1764] = 1647, - [1765] = 1442, - [1766] = 1452, - [1767] = 1710, - [1768] = 1561, - [1769] = 1577, - [1770] = 1647, - [1771] = 1442, - [1772] = 1452, - [1773] = 1577, - [1774] = 1442, - [1775] = 1452, - [1776] = 1436, - [1777] = 1452, - [1778] = 1452, - [1779] = 1452, - [1780] = 1452, - [1781] = 1452, - [1782] = 1452, - [1783] = 1436, - [1784] = 1555, - [1785] = 1469, - [1786] = 1421, - [1787] = 1555, - [1788] = 1555, - [1789] = 1555, - [1790] = 1555, - [1791] = 1555, - [1792] = 1475, - [1793] = 1476, - [1794] = 1429, - [1795] = 1481, - [1796] = 1482, - [1797] = 1483, - [1798] = 1484, - [1799] = 1485, - [1800] = 1486, - [1801] = 1487, - [1802] = 1488, - [1803] = 1489, - [1804] = 1490, - [1805] = 1432, - [1806] = 1436, - [1807] = 1423, - [1808] = 1476, - [1809] = 1481, - [1810] = 1482, - [1811] = 1483, - [1812] = 1484, - [1813] = 1485, - [1814] = 1486, - [1815] = 1487, - [1816] = 1488, - [1817] = 1489, - [1818] = 1490, - [1819] = 1426, - [1820] = 1427, - [1821] = 1429, - [1822] = 1432, - [1823] = 1436, - [1824] = 1423, + [1481] = 1375, + [1482] = 1376, + [1483] = 1412, + [1484] = 1379, + [1485] = 1455, + [1486] = 1414, + [1487] = 1391, + [1488] = 1403, + [1489] = 1375, + [1490] = 1376, + [1491] = 1412, + [1492] = 1379, + [1493] = 1381, + [1494] = 1379, + [1495] = 1379, + [1496] = 1496, + [1497] = 1379, + [1498] = 1438, + [1499] = 1403, + [1500] = 1500, + [1501] = 1382, + [1502] = 1502, + [1503] = 1503, + [1504] = 1375, + [1505] = 1376, + [1506] = 1438, + [1507] = 1380, + [1508] = 1438, + [1509] = 1438, + [1510] = 1438, + [1511] = 1438, + [1512] = 1438, + [1513] = 1438, + [1514] = 1438, + [1515] = 1438, + [1516] = 1412, + [1517] = 1379, + [1518] = 1413, + [1519] = 1503, + [1520] = 1496, + [1521] = 1414, + [1522] = 1377, + [1523] = 1379, + [1524] = 1384, + [1525] = 1443, + [1526] = 1526, + [1527] = 1527, + [1528] = 1528, + [1529] = 1529, + [1530] = 1530, + [1531] = 1531, + [1532] = 1532, + [1533] = 1533, + [1534] = 1534, + [1535] = 1535, + [1536] = 1536, + [1537] = 1537, + [1538] = 1538, + [1539] = 1528, + [1540] = 1540, + [1541] = 1541, + [1542] = 1542, + [1543] = 1543, + [1544] = 1544, + [1545] = 1545, + [1546] = 1546, + [1547] = 1538, + [1548] = 1548, + [1549] = 1549, + [1550] = 1528, + [1551] = 1540, + [1552] = 1544, + [1553] = 1529, + [1554] = 1530, + [1555] = 1531, + [1556] = 1534, + [1557] = 1535, + [1558] = 1537, + [1559] = 1545, + [1560] = 1546, + [1561] = 1548, + [1562] = 1549, + [1563] = 1526, + [1564] = 1564, + [1565] = 1565, + [1566] = 1532, + [1567] = 1533, + [1568] = 1544, + [1569] = 1532, + [1570] = 1533, + [1571] = 1536, + [1572] = 1528, + [1573] = 1538, + [1574] = 1544, + [1575] = 1575, + [1576] = 1542, + [1577] = 1544, + [1578] = 1578, + [1579] = 1532, + [1580] = 1536, + [1581] = 1581, + [1582] = 1533, + [1583] = 1529, + [1584] = 1532, + [1585] = 1533, + [1586] = 1586, + [1587] = 1540, + [1588] = 1536, + [1589] = 1536, + [1590] = 1538, + [1591] = 1528, + [1592] = 1575, + [1593] = 1538, + [1594] = 1594, + [1595] = 1529, + [1596] = 1530, + [1597] = 1531, + [1598] = 1534, + [1599] = 1535, + [1600] = 1537, + [1601] = 1545, + [1602] = 1546, + [1603] = 1548, + [1604] = 1549, + [1605] = 1538, + [1606] = 1530, + [1607] = 1528, + [1608] = 1531, + [1609] = 1534, + [1610] = 1610, + [1611] = 1544, + [1612] = 1535, + [1613] = 1613, + [1614] = 1614, + [1615] = 1537, + [1616] = 1538, + [1617] = 1545, + [1618] = 1546, + [1619] = 1548, + [1620] = 1544, + [1621] = 1536, + [1622] = 1549, + [1623] = 1528, + [1624] = 1538, + [1625] = 1528, + [1626] = 1538, + [1627] = 1540, + [1628] = 1529, + [1629] = 1530, + [1630] = 1531, + [1631] = 1534, + [1632] = 1535, + [1633] = 1537, + [1634] = 1545, + [1635] = 1546, + [1636] = 1548, + [1637] = 1549, + [1638] = 1532, + [1639] = 1533, + [1640] = 1575, + [1641] = 1578, + [1642] = 1527, + [1643] = 1532, + [1644] = 1533, + [1645] = 1586, + [1646] = 1540, + [1647] = 1533, + [1648] = 1536, + [1649] = 1578, + [1650] = 1544, + [1651] = 1651, + [1652] = 1532, + [1653] = 1536, + [1654] = 1540, + [1655] = 1529, + [1656] = 1530, + [1657] = 1531, + [1658] = 1534, + [1659] = 1535, + [1660] = 1537, + [1661] = 1545, + [1662] = 1546, + [1663] = 1548, + [1664] = 1549, + [1665] = 1575, + [1666] = 1578, + [1667] = 1528, + [1668] = 1536, + [1669] = 1529, + [1670] = 1586, + [1671] = 1530, + [1672] = 1531, + [1673] = 1534, + [1674] = 1535, + [1675] = 1537, + [1676] = 1545, + [1677] = 1546, + [1678] = 1548, + [1679] = 1549, + [1680] = 1538, + [1681] = 1528, + [1682] = 1544, + [1683] = 1683, + [1684] = 1684, + [1685] = 1540, + [1686] = 1529, + [1687] = 1530, + [1688] = 1531, + [1689] = 1534, + [1690] = 1535, + [1691] = 1537, + [1692] = 1545, + [1693] = 1546, + [1694] = 1548, + [1695] = 1549, + [1696] = 1575, + [1697] = 1578, + [1698] = 1540, + [1699] = 1529, + [1700] = 1530, + [1701] = 1531, + [1702] = 1534, + [1703] = 1535, + [1704] = 1537, + [1705] = 1545, + [1706] = 1546, + [1707] = 1548, + [1708] = 1549, + [1709] = 1575, + [1710] = 1578, + [1711] = 1711, + [1712] = 1712, + [1713] = 1711, + [1714] = 1714, + [1715] = 1540, + [1716] = 1529, + [1717] = 1530, + [1718] = 1531, + [1719] = 1534, + [1720] = 1535, + [1721] = 1537, + [1722] = 1545, + [1723] = 1546, + [1724] = 1548, + [1725] = 1549, + [1726] = 1575, + [1727] = 1578, + [1728] = 1544, + [1729] = 1729, + [1730] = 1538, + [1731] = 1731, + [1732] = 1543, + [1733] = 1575, + [1734] = 1578, + [1735] = 1575, + [1736] = 1542, + [1737] = 1532, + [1738] = 1575, + [1739] = 1578, + [1740] = 1740, + [1741] = 1533, + [1742] = 1742, + [1743] = 1578, + [1744] = 1744, + [1745] = 1532, + [1746] = 1537, + [1747] = 1575, + [1748] = 1578, + [1749] = 1533, + [1750] = 1750, + [1751] = 1575, + [1752] = 1578, + [1753] = 1575, + [1754] = 1578, + [1755] = 1545, + [1756] = 1756, + [1757] = 1544, + [1758] = 1758, + [1759] = 1586, + [1760] = 1586, + [1761] = 1575, + [1762] = 1613, + [1763] = 1578, + [1764] = 1540, + [1765] = 1532, + [1766] = 1742, + [1767] = 1533, + [1768] = 1740, + [1769] = 1586, + [1770] = 1540, + [1771] = 1536, + [1772] = 1529, + [1773] = 1530, + [1774] = 1531, + [1775] = 1534, + [1776] = 1535, + [1777] = 1537, + [1778] = 1545, + [1779] = 1546, + [1780] = 1548, + [1781] = 1549, + [1782] = 1536, + [1783] = 1528, + [1784] = 1784, + [1785] = 1526, + [1786] = 1564, + [1787] = 1538, + [1788] = 1610, + [1789] = 1529, + [1790] = 1530, + [1791] = 1544, + [1792] = 1792, + [1793] = 1756, + [1794] = 1540, + [1795] = 1529, + [1796] = 1530, + [1797] = 1531, + [1798] = 1534, + [1799] = 1535, + [1800] = 1537, + [1801] = 1545, + [1802] = 1546, + [1803] = 1548, + [1804] = 1549, + [1805] = 1532, + [1806] = 1533, + [1807] = 1683, + [1808] = 1536, + [1809] = 1528, + [1810] = 1546, + [1811] = 1684, + [1812] = 1538, + [1813] = 1531, + [1814] = 1540, + [1815] = 1544, + [1816] = 1536, + [1817] = 1817, + [1818] = 1548, + [1819] = 1544, + [1820] = 1820, + [1821] = 1613, + [1822] = 1742, + [1823] = 1740, + [1824] = 1824, [1825] = 1825, - [1826] = 1475, - [1827] = 1827, - [1828] = 1469, - [1829] = 1421, - [1830] = 1426, - [1831] = 1427, - [1832] = 1476, - [1833] = 1422, - [1834] = 1422, - [1835] = 1422, - [1836] = 1422, - [1837] = 1422, - [1838] = 1488, - [1839] = 1839, - [1840] = 1839, - [1841] = 1841, - [1842] = 1841, - [1843] = 1841, - [1844] = 1839, - [1845] = 1839, - [1846] = 1839, - [1847] = 1841, - [1848] = 1839, - [1849] = 1839, - [1850] = 1839, - [1851] = 1839, - [1852] = 1839, - [1853] = 1853, - [1854] = 1854, - [1855] = 1855, - [1856] = 1854, - [1857] = 1857, - [1858] = 1858, - [1859] = 1859, - [1860] = 1860, - [1861] = 1861, - [1862] = 1862, - [1863] = 1854, - [1864] = 1854, - [1865] = 1853, - [1866] = 1866, - [1867] = 1841, - [1868] = 1855, - [1869] = 1841, - [1870] = 1841, - [1871] = 1841, - [1872] = 1841, - [1873] = 1841, - [1874] = 1841, - [1875] = 1841, - [1876] = 1876, - [1877] = 1876, - [1878] = 1878, - [1879] = 1879, - [1880] = 1876, - [1881] = 450, - [1882] = 1876, - [1883] = 462, - [1884] = 1035, - [1885] = 1841, - [1886] = 1035, - [1887] = 1035, - [1888] = 1841, - [1889] = 1889, - [1890] = 1889, - [1891] = 1891, - [1892] = 1891, - [1893] = 1035, - [1894] = 1853, - [1895] = 1895, - [1896] = 1896, - [1897] = 1858, - [1898] = 1855, - [1899] = 1899, - [1900] = 1859, - [1901] = 1901, - [1902] = 1853, - [1903] = 1866, - [1904] = 1857, - [1905] = 1866, - [1906] = 1860, - [1907] = 1861, - [1908] = 1862, - [1909] = 1857, - [1910] = 1035, - [1911] = 1035, - [1912] = 1858, - [1913] = 1899, - [1914] = 1859, - [1915] = 1860, - [1916] = 1861, - [1917] = 1862, - [1918] = 1918, - [1919] = 1891, - [1920] = 1035, - [1921] = 1889, - [1922] = 1891, - [1923] = 1035, - [1924] = 1855, - [1925] = 1889, - [1926] = 1891, - [1927] = 1889, - [1928] = 1928, - [1929] = 1035, - [1930] = 1035, - [1931] = 1931, - [1932] = 1035, - [1933] = 1891, - [1934] = 1035, - [1935] = 1035, - [1936] = 1889, - [1937] = 1035, - [1938] = 1035, - [1939] = 1035, - [1940] = 1035, - [1941] = 1941, - [1942] = 1942, + [1826] = 1538, + [1827] = 1549, + [1828] = 1784, + [1829] = 1526, + [1830] = 1564, + [1831] = 1610, + [1832] = 1534, + [1833] = 1756, + [1834] = 1613, + [1835] = 1742, + [1836] = 1740, + [1837] = 1540, + [1838] = 1784, + [1839] = 1526, + [1840] = 1564, + [1841] = 1610, + [1842] = 1756, + [1843] = 1613, + [1844] = 1742, + [1845] = 1740, + [1846] = 1532, + [1847] = 1784, + [1848] = 1526, + [1849] = 1564, + [1850] = 1610, + [1851] = 1756, + [1852] = 1740, + [1853] = 1533, + [1854] = 1784, + [1855] = 1564, + [1856] = 1610, + [1857] = 1535, + [1858] = 1756, + [1859] = 1740, + [1860] = 1528, + [1861] = 1784, + [1862] = 1526, + [1863] = 1564, + [1864] = 1610, + [1865] = 1756, + [1866] = 1740, + [1867] = 1564, + [1868] = 1532, + [1869] = 1756, + [1870] = 1740, + [1871] = 1533, + [1872] = 1784, + [1873] = 1740, + [1874] = 1740, + [1875] = 1529, + [1876] = 1740, + [1877] = 1740, + [1878] = 1740, + [1879] = 1740, + [1880] = 1536, + [1881] = 1651, + [1882] = 1530, + [1883] = 1575, + [1884] = 1578, + [1885] = 1531, + [1886] = 1651, + [1887] = 1651, + [1888] = 1651, + [1889] = 1651, + [1890] = 1651, + [1891] = 1534, + [1892] = 1586, + [1893] = 1540, + [1894] = 1536, + [1895] = 1535, + [1896] = 1529, + [1897] = 1530, + [1898] = 1531, + [1899] = 1534, + [1900] = 1535, + [1901] = 1537, + [1902] = 1545, + [1903] = 1546, + [1904] = 1548, + [1905] = 1549, + [1906] = 1528, + [1907] = 1537, + [1908] = 1538, + [1909] = 1544, + [1910] = 1540, + [1911] = 1529, + [1912] = 1530, + [1913] = 1531, + [1914] = 1534, + [1915] = 1535, + [1916] = 1537, + [1917] = 1545, + [1918] = 1546, + [1919] = 1548, + [1920] = 1549, + [1921] = 1532, + [1922] = 1533, + [1923] = 1536, + [1924] = 1528, + [1925] = 1545, + [1926] = 1528, + [1927] = 1538, + [1928] = 1544, + [1929] = 1546, + [1930] = 1575, + [1931] = 1578, + [1932] = 1548, + [1933] = 1532, + [1934] = 1533, + [1935] = 1586, + [1936] = 1549, + [1937] = 1527, + [1938] = 1527, + [1939] = 1527, + [1940] = 1527, + [1941] = 1527, + [1942] = 1527, [1943] = 1943, - [1944] = 1866, - [1945] = 1941, - [1946] = 1857, - [1947] = 1858, - [1948] = 1859, - [1949] = 1860, - [1950] = 1861, - [1951] = 1862, - [1952] = 1891, - [1953] = 1942, - [1954] = 1954, - [1955] = 1855, - [1956] = 1956, - [1957] = 1889, + [1944] = 1944, + [1945] = 1944, + [1946] = 1946, + [1947] = 1946, + [1948] = 1944, + [1949] = 1944, + [1950] = 1944, + [1951] = 1944, + [1952] = 1944, + [1953] = 1946, + [1954] = 1944, + [1955] = 1944, + [1956] = 1944, + [1957] = 1946, [1958] = 1958, - [1959] = 1959, - [1960] = 1891, - [1961] = 1961, - [1962] = 1889, + [1959] = 1958, + [1960] = 1960, + [1961] = 1960, + [1962] = 1960, [1963] = 1963, [1964] = 1964, [1965] = 1965, [1966] = 1966, - [1967] = 1891, + [1967] = 1967, [1968] = 1968, [1969] = 1969, - [1970] = 1841, - [1971] = 1841, - [1972] = 1972, - [1973] = 1889, - [1974] = 1974, - [1975] = 1975, - [1976] = 1841, - [1977] = 1841, - [1978] = 1889, - [1979] = 1866, - [1980] = 1857, - [1981] = 1858, - [1982] = 1859, - [1983] = 1860, - [1984] = 1861, - [1985] = 1862, - [1986] = 1986, + [1970] = 1970, + [1971] = 1960, + [1972] = 1946, + [1973] = 1963, + [1974] = 1946, + [1975] = 1946, + [1976] = 1946, + [1977] = 1946, + [1978] = 1946, + [1979] = 1946, + [1980] = 1946, + [1981] = 1981, + [1982] = 508, + [1983] = 469, + [1984] = 1984, + [1985] = 1981, + [1986] = 1981, [1987] = 1987, - [1988] = 1965, - [1989] = 1972, - [1990] = 1990, - [1991] = 1891, - [1992] = 1891, - [1993] = 1889, + [1988] = 1981, + [1989] = 1946, + [1990] = 1127, + [1991] = 1946, + [1992] = 1127, + [1993] = 1127, [1994] = 1994, - [1995] = 1995, - [1996] = 1891, - [1997] = 1954, - [1998] = 1998, - [1999] = 1889, - [2000] = 2000, + [1995] = 1994, + [1996] = 1996, + [1997] = 1996, + [1998] = 1127, + [1999] = 1958, + [2000] = 1127, [2001] = 2001, - [2002] = 2002, - [2003] = 2003, + [2002] = 1958, + [2003] = 1963, [2004] = 2004, - [2005] = 2005, + [2005] = 1970, [2006] = 2006, - [2007] = 2007, - [2008] = 1974, - [2009] = 2009, - [2010] = 2000, - [2011] = 1879, - [2012] = 2012, - [2013] = 2000, - [2014] = 2000, - [2015] = 1891, - [2016] = 2002, - [2017] = 2003, - [2018] = 2004, - [2019] = 2005, - [2020] = 2006, - [2021] = 2007, - [2022] = 2022, - [2023] = 1889, - [2024] = 1965, - [2025] = 1954, + [2007] = 1965, + [2008] = 1968, + [2009] = 1969, + [2010] = 1968, + [2011] = 1969, + [2012] = 1966, + [2013] = 1964, + [2014] = 1967, + [2015] = 1970, + [2016] = 2016, + [2017] = 2006, + [2018] = 1127, + [2019] = 1964, + [2020] = 1966, + [2021] = 1965, + [2022] = 1967, + [2023] = 1996, + [2024] = 1996, + [2025] = 1994, [2026] = 2026, - [2027] = 1972, + [2027] = 1996, [2028] = 2028, - [2029] = 1855, - [2030] = 1956, - [2031] = 2031, - [2032] = 1879, - [2033] = 2033, - [2034] = 2034, - [2035] = 2035, - [2036] = 2036, - [2037] = 2028, - [2038] = 2031, - [2039] = 2039, - [2040] = 1879, - [2041] = 2012, - [2042] = 2042, - [2043] = 2043, - [2044] = 1968, - [2045] = 1954, - [2046] = 2046, + [2029] = 1994, + [2030] = 1994, + [2031] = 1963, + [2032] = 1127, + [2033] = 1127, + [2034] = 1127, + [2035] = 1127, + [2036] = 1127, + [2037] = 2037, + [2038] = 1996, + [2039] = 1127, + [2040] = 1127, + [2041] = 1994, + [2042] = 1127, + [2043] = 1127, + [2044] = 1127, + [2045] = 2045, + [2046] = 1969, [2047] = 2047, [2048] = 2048, [2049] = 2049, - [2050] = 2028, - [2051] = 2031, - [2052] = 1968, + [2050] = 1963, + [2051] = 2045, + [2052] = 1127, [2053] = 2053, - [2054] = 2028, - [2055] = 2055, - [2056] = 2031, - [2057] = 2028, - [2058] = 2031, - [2059] = 2028, - [2060] = 2031, - [2061] = 1855, - [2062] = 1853, + [2054] = 2054, + [2055] = 1964, + [2056] = 1994, + [2057] = 1967, + [2058] = 2058, + [2059] = 2047, + [2060] = 1996, + [2061] = 1970, + [2062] = 1994, [2063] = 2063, - [2064] = 2028, - [2065] = 2031, - [2066] = 2066, - [2067] = 2067, - [2068] = 1853, - [2069] = 2069, + [2064] = 1996, + [2065] = 1965, + [2066] = 1968, + [2067] = 1966, + [2068] = 1994, + [2069] = 1946, [2070] = 2070, [2071] = 2071, - [2072] = 2072, + [2072] = 1946, [2073] = 2073, [2074] = 2074, [2075] = 2075, - [2076] = 1959, + [2076] = 2076, [2077] = 2077, [2078] = 2078, - [2079] = 2079, - [2080] = 2080, - [2081] = 1855, + [2079] = 1946, + [2080] = 1946, + [2081] = 1996, [2082] = 2082, [2083] = 2083, - [2084] = 2084, - [2085] = 2085, + [2084] = 1996, + [2085] = 1994, [2086] = 2086, [2087] = 2087, - [2088] = 2088, - [2089] = 2089, + [2088] = 1970, + [2089] = 1968, [2090] = 2090, - [2091] = 2091, - [2092] = 2092, - [2093] = 2093, + [2091] = 1969, + [2092] = 1994, + [2093] = 2076, [2094] = 2094, - [2095] = 2095, - [2096] = 1855, - [2097] = 2097, - [2098] = 2098, - [2099] = 2099, - [2100] = 2100, + [2095] = 2071, + [2096] = 1965, + [2097] = 1964, + [2098] = 1966, + [2099] = 1996, + [2100] = 1967, [2101] = 2101, [2102] = 2102, [2103] = 2103, - [2104] = 2104, - [2105] = 1972, - [2106] = 1891, - [2107] = 2107, + [2104] = 2049, + [2105] = 2105, + [2106] = 1984, + [2107] = 2102, [2108] = 2108, [2109] = 2109, - [2110] = 2110, - [2111] = 2111, + [2110] = 1996, + [2111] = 2109, [2112] = 2112, - [2113] = 1965, + [2113] = 2105, [2114] = 2114, - [2115] = 1972, - [2116] = 2039, - [2117] = 2117, + [2115] = 1994, + [2116] = 2109, + [2117] = 1996, [2118] = 2118, - [2119] = 1965, - [2120] = 2120, + [2119] = 2119, + [2120] = 2078, [2121] = 2121, - [2122] = 2122, - [2123] = 2123, - [2124] = 2124, - [2125] = 2125, + [2122] = 2121, + [2123] = 2109, + [2124] = 2103, + [2125] = 2101, [2126] = 2126, - [2127] = 2127, - [2128] = 2128, + [2127] = 1994, + [2128] = 2126, [2129] = 2129, - [2130] = 2130, - [2131] = 1889, - [2132] = 2132, - [2133] = 1931, + [2130] = 1963, + [2131] = 1963, + [2132] = 1958, + [2133] = 2133, [2134] = 2134, - [2135] = 2004, - [2136] = 1972, - [2137] = 2006, - [2138] = 2002, - [2139] = 2003, - [2140] = 2004, - [2141] = 2005, - [2142] = 2006, - [2143] = 2007, - [2144] = 1841, - [2145] = 1972, - [2146] = 2002, - [2147] = 2003, - [2148] = 2004, - [2149] = 2005, - [2150] = 2006, - [2151] = 2007, - [2152] = 1841, - [2153] = 1841, - [2154] = 1841, - [2155] = 1954, - [2156] = 2156, - [2157] = 1841, - [2158] = 2123, - [2159] = 2125, - [2160] = 2002, - [2161] = 2124, - [2162] = 1965, - [2163] = 1899, - [2164] = 2128, - [2165] = 2130, - [2166] = 2166, - [2167] = 2007, - [2168] = 2003, - [2169] = 1965, - [2170] = 1879, - [2171] = 2132, - [2172] = 2072, - [2173] = 2075, - [2174] = 2083, - [2175] = 2087, - [2176] = 2166, - [2177] = 2166, - [2178] = 2088, - [2179] = 2179, - [2180] = 1841, - [2181] = 2122, - [2182] = 2005, - [2183] = 2166, + [2135] = 2135, + [2136] = 2136, + [2137] = 2137, + [2138] = 2074, + [2139] = 2139, + [2140] = 2140, + [2141] = 2133, + [2142] = 2049, + [2143] = 2135, + [2144] = 2144, + [2145] = 1984, + [2146] = 2146, + [2147] = 2147, + [2148] = 2108, + [2149] = 2133, + [2150] = 2135, + [2151] = 2151, + [2152] = 2133, + [2153] = 2076, + [2154] = 2135, + [2155] = 2071, + [2156] = 2133, + [2157] = 2135, + [2158] = 2158, + [2159] = 2133, + [2160] = 2135, + [2161] = 2161, + [2162] = 2162, + [2163] = 2074, + [2164] = 1984, + [2165] = 2165, + [2166] = 2135, + [2167] = 1958, + [2168] = 2133, + [2169] = 2169, + [2170] = 2170, + [2171] = 2171, + [2172] = 2172, + [2173] = 2049, + [2174] = 2053, + [2175] = 2175, + [2176] = 2176, + [2177] = 2177, + [2178] = 2178, + [2179] = 2071, + [2180] = 2076, + [2181] = 2181, + [2182] = 1996, + [2183] = 2183, [2184] = 2184, - [2185] = 2004, - [2186] = 1899, - [2187] = 2187, - [2188] = 2007, - [2189] = 2002, - [2190] = 2187, - [2191] = 2187, - [2192] = 2005, + [2185] = 2185, + [2186] = 2186, + [2187] = 2162, + [2188] = 2071, + [2189] = 2189, + [2190] = 2190, + [2191] = 2191, + [2192] = 2192, [2193] = 2193, [2194] = 2194, - [2195] = 1899, - [2196] = 2187, - [2197] = 2187, - [2198] = 2156, - [2199] = 1899, + [2195] = 2195, + [2196] = 2196, + [2197] = 2197, + [2198] = 2198, + [2199] = 2199, [2200] = 2200, - [2201] = 2039, - [2202] = 2187, - [2203] = 1974, - [2204] = 2200, - [2205] = 2193, - [2206] = 1901, - [2207] = 2200, - [2208] = 2193, - [2209] = 2003, - [2210] = 2200, - [2211] = 2187, - [2212] = 2187, + [2201] = 2201, + [2202] = 2202, + [2203] = 2063, + [2204] = 2204, + [2205] = 2205, + [2206] = 1963, + [2207] = 2207, + [2208] = 2208, + [2209] = 2209, + [2210] = 2076, + [2211] = 2211, + [2212] = 2037, [2213] = 2213, [2214] = 2214, - [2215] = 1879, - [2216] = 1896, - [2217] = 2193, - [2218] = 2187, - [2219] = 2006, - [2220] = 2039, - [2221] = 1896, - [2222] = 1931, - [2223] = 1896, - [2224] = 2002, - [2225] = 2003, - [2226] = 2004, - [2227] = 2005, - [2228] = 2006, - [2229] = 2007, - [2230] = 2002, - [2231] = 2003, - [2232] = 2004, - [2233] = 2005, - [2234] = 2006, - [2235] = 2007, - [2236] = 2039, - [2237] = 1901, - [2238] = 1857, - [2239] = 1899, - [2240] = 1965, - [2241] = 2241, - [2242] = 1974, - [2243] = 1918, - [2244] = 1858, - [2245] = 1972, - [2246] = 1860, - [2247] = 1861, - [2248] = 1862, - [2249] = 1859, - [2250] = 1965, - [2251] = 1901, - [2252] = 1899, - [2253] = 1972, - [2254] = 2184, - [2255] = 2213, - [2256] = 1866, - [2257] = 2012, - [2258] = 1974, - [2259] = 1972, - [2260] = 1918, - [2261] = 2214, - [2262] = 2002, - [2263] = 1931, - [2264] = 2003, - [2265] = 2004, - [2266] = 2005, - [2267] = 2006, - [2268] = 1891, - [2269] = 1965, - [2270] = 2007, - [2271] = 2039, - [2272] = 1965, - [2273] = 1972, - [2274] = 2039, - [2275] = 1941, - [2276] = 2012, - [2277] = 1899, - [2278] = 1942, - [2279] = 1889, - [2280] = 1931, - [2281] = 1918, - [2282] = 1889, - [2283] = 1891, - [2284] = 1941, - [2285] = 2003, - [2286] = 2123, - [2287] = 2002, - [2288] = 1961, - [2289] = 2128, - [2290] = 2003, - [2291] = 1899, - [2292] = 2088, - [2293] = 1899, - [2294] = 2004, - [2295] = 1942, - [2296] = 2002, - [2297] = 2007, - [2298] = 2005, - [2299] = 1958, - [2300] = 1942, - [2301] = 2006, - [2302] = 2007, - [2303] = 1943, - [2304] = 1941, - [2305] = 2124, - [2306] = 2005, + [2215] = 2215, + [2216] = 2216, + [2217] = 2217, + [2218] = 2218, + [2219] = 2219, + [2220] = 2220, + [2221] = 2221, + [2222] = 2222, + [2223] = 2223, + [2224] = 1994, + [2225] = 2225, + [2226] = 2226, + [2227] = 2227, + [2228] = 2228, + [2229] = 2229, + [2230] = 2230, + [2231] = 1963, + [2232] = 2232, + [2233] = 2233, + [2234] = 2234, + [2235] = 2235, + [2236] = 2236, + [2237] = 2237, + [2238] = 2238, + [2239] = 2239, + [2240] = 2105, + [2241] = 2121, + [2242] = 2103, + [2243] = 2101, + [2244] = 2126, + [2245] = 2102, + [2246] = 2105, + [2247] = 2247, + [2248] = 2247, + [2249] = 1946, + [2250] = 2102, + [2251] = 2049, + [2252] = 2252, + [2253] = 2220, + [2254] = 2239, + [2255] = 1984, + [2256] = 2103, + [2257] = 2247, + [2258] = 2071, + [2259] = 2121, + [2260] = 2103, + [2261] = 2101, + [2262] = 2126, + [2263] = 2076, + [2264] = 2247, + [2265] = 2213, + [2266] = 2101, + [2267] = 1946, + [2268] = 2268, + [2269] = 2214, + [2270] = 2006, + [2271] = 2215, + [2272] = 2216, + [2273] = 2217, + [2274] = 1946, + [2275] = 1946, + [2276] = 2208, + [2277] = 1946, + [2278] = 2218, + [2279] = 2209, + [2280] = 2121, + [2281] = 1946, + [2282] = 2175, + [2283] = 2076, + [2284] = 2219, + [2285] = 2071, + [2286] = 2126, + [2287] = 2105, + [2288] = 2102, + [2289] = 2078, + [2290] = 2290, + [2291] = 2291, + [2292] = 2121, + [2293] = 2291, + [2294] = 2290, + [2295] = 2103, + [2296] = 2101, + [2297] = 2126, + [2298] = 2105, + [2299] = 2102, + [2300] = 2162, + [2301] = 2016, + [2302] = 2290, + [2303] = 2290, + [2304] = 2290, + [2305] = 2006, + [2306] = 2290, [2307] = 2006, - [2308] = 2004, + [2308] = 2001, [2309] = 2309, - [2310] = 1966, - [2311] = 2132, - [2312] = 1942, - [2313] = 2072, - [2314] = 2122, - [2315] = 1928, - [2316] = 1969, - [2317] = 2166, - [2318] = 2075, - [2319] = 1901, - [2320] = 2083, - [2321] = 2125, - [2322] = 2166, + [2310] = 2291, + [2311] = 2309, + [2312] = 2291, + [2313] = 2313, + [2314] = 2290, + [2315] = 2268, + [2316] = 1984, + [2317] = 2317, + [2318] = 2318, + [2319] = 2290, + [2320] = 2006, + [2321] = 2309, + [2322] = 2309, [2323] = 2323, - [2324] = 1959, - [2325] = 1941, - [2326] = 2087, - [2327] = 1896, - [2328] = 1974, - [2329] = 2329, - [2330] = 2130, - [2331] = 1966, - [2332] = 2332, - [2333] = 2007, - [2334] = 2128, - [2335] = 2130, - [2336] = 1965, - [2337] = 2003, - [2338] = 2004, - [2339] = 1931, - [2340] = 1972, - [2341] = 1928, - [2342] = 1860, - [2343] = 2343, - [2344] = 2132, - [2345] = 2072, - [2346] = 2075, - [2347] = 2083, - [2348] = 2087, - [2349] = 2005, - [2350] = 2332, - [2351] = 1861, + [2324] = 2290, + [2325] = 2001, + [2326] = 2016, + [2327] = 2103, + [2328] = 2101, + [2329] = 2126, + [2330] = 2105, + [2331] = 2102, + [2332] = 2121, + [2333] = 2001, + [2334] = 2103, + [2335] = 2101, + [2336] = 1970, + [2337] = 2016, + [2338] = 2126, + [2339] = 2105, + [2340] = 2102, + [2341] = 2006, + [2342] = 1964, + [2343] = 1966, + [2344] = 1967, + [2345] = 2317, + [2346] = 2318, + [2347] = 2108, + [2348] = 1965, + [2349] = 1968, + [2350] = 1969, + [2351] = 2078, [2352] = 2006, - [2353] = 1958, - [2354] = 2354, - [2355] = 1959, - [2356] = 1896, - [2357] = 1866, - [2358] = 1857, - [2359] = 2088, - [2360] = 1961, - [2361] = 1855, - [2362] = 2002, + [2353] = 2026, + [2354] = 2162, + [2355] = 2037, + [2356] = 2076, + [2357] = 2078, + [2358] = 2071, + [2359] = 2071, + [2360] = 2076, + [2361] = 2162, + [2362] = 2121, [2363] = 2363, - [2364] = 2166, - [2365] = 2039, - [2366] = 1954, - [2367] = 1969, - [2368] = 2012, - [2369] = 1862, - [2370] = 1958, - [2371] = 2122, - [2372] = 1942, - [2373] = 1858, - [2374] = 1859, - [2375] = 1899, - [2376] = 1941, - [2377] = 2125, - [2378] = 2166, - [2379] = 2007, - [2380] = 2002, - [2381] = 1943, - [2382] = 1961, - [2383] = 2166, - [2384] = 1959, - [2385] = 2006, - [2386] = 2166, - [2387] = 2003, - [2388] = 2004, - [2389] = 2039, - [2390] = 1986, - [2391] = 1987, - [2392] = 1990, - [2393] = 1928, - [2394] = 2166, - [2395] = 2166, - [2396] = 2354, - [2397] = 2332, - [2398] = 2193, - [2399] = 1899, - [2400] = 2184, - [2401] = 2213, - [2402] = 2123, - [2403] = 1942, - [2404] = 2193, - [2405] = 1995, - [2406] = 1941, - [2407] = 2200, - [2408] = 1966, - [2409] = 2354, - [2410] = 2332, - [2411] = 1969, - [2412] = 2124, - [2413] = 2354, - [2414] = 2332, - [2415] = 1943, - [2416] = 2332, - [2417] = 2332, - [2418] = 2200, - [2419] = 1918, - [2420] = 2420, - [2421] = 1901, - [2422] = 2005, - [2423] = 1928, - [2424] = 302, - [2425] = 1986, - [2426] = 1987, - [2427] = 2193, - [2428] = 2428, - [2429] = 1889, - [2430] = 2039, - [2431] = 1954, - [2432] = 1942, - [2433] = 2156, - [2434] = 1986, - [2435] = 1987, - [2436] = 1918, - [2437] = 2193, - [2438] = 2200, - [2439] = 2439, - [2440] = 2039, - [2441] = 1990, - [2442] = 2200, - [2443] = 2193, - [2444] = 2022, - [2445] = 1941, - [2446] = 2200, - [2447] = 1990, - [2448] = 2193, - [2449] = 1998, - [2450] = 1866, - [2451] = 2193, - [2452] = 2193, - [2453] = 2200, - [2454] = 306, - [2455] = 1891, - [2456] = 1858, - [2457] = 1859, - [2458] = 2200, - [2459] = 1860, - [2460] = 2200, - [2461] = 1861, - [2462] = 1862, - [2463] = 1889, - [2464] = 2428, - [2465] = 2465, - [2466] = 2466, - [2467] = 2184, - [2468] = 2213, - [2469] = 2184, - [2470] = 2213, - [2471] = 1866, - [2472] = 2428, - [2473] = 2465, - [2474] = 2466, - [2475] = 1889, - [2476] = 2476, - [2477] = 2466, - [2478] = 1857, - [2479] = 1858, - [2480] = 1859, - [2481] = 1860, - [2482] = 2465, - [2483] = 1861, - [2484] = 1862, - [2485] = 1891, - [2486] = 2486, - [2487] = 1995, - [2488] = 349, - [2489] = 2428, - [2490] = 2465, - [2491] = 1995, - [2492] = 2466, - [2493] = 347, - [2494] = 1891, - [2495] = 1857, - [2496] = 2087, - [2497] = 1969, - [2498] = 1942, - [2499] = 2156, - [2500] = 2500, - [2501] = 1941, - [2502] = 2130, - [2503] = 2003, - [2504] = 2004, - [2505] = 2124, - [2506] = 2128, - [2507] = 2088, - [2508] = 2006, - [2509] = 1963, - [2510] = 1956, - [2511] = 2132, - [2512] = 2166, - [2513] = 1941, - [2514] = 2026, - [2515] = 2214, - [2516] = 2083, - [2517] = 2022, - [2518] = 2002, - [2519] = 1954, - [2520] = 2075, - [2521] = 2122, - [2522] = 2001, - [2523] = 1968, - [2524] = 2524, - [2525] = 1995, - [2526] = 1943, - [2527] = 2072, - [2528] = 1959, - [2529] = 1961, - [2530] = 1954, - [2531] = 1964, - [2532] = 2166, - [2533] = 1942, - [2534] = 2067, - [2535] = 2125, - [2536] = 1928, - [2537] = 1966, - [2538] = 2022, - [2539] = 2005, - [2540] = 2540, + [2364] = 2045, + [2365] = 2047, + [2366] = 1994, + [2367] = 2006, + [2368] = 1996, + [2369] = 2037, + [2370] = 1994, + [2371] = 2323, + [2372] = 2108, + [2373] = 1996, + [2374] = 2037, + [2375] = 2026, + [2376] = 2121, + [2377] = 2076, + [2378] = 2071, + [2379] = 2103, + [2380] = 2101, + [2381] = 2126, + [2382] = 2105, + [2383] = 2162, + [2384] = 2102, + [2385] = 2076, + [2386] = 2071, + [2387] = 2162, + [2388] = 2026, + [2389] = 2075, + [2390] = 2045, + [2391] = 2121, + [2392] = 2047, + [2393] = 2045, + [2394] = 2247, + [2395] = 2126, + [2396] = 2077, + [2397] = 2045, + [2398] = 2001, + [2399] = 2247, + [2400] = 2215, + [2401] = 2105, + [2402] = 2402, + [2403] = 2103, + [2404] = 2101, + [2405] = 2058, + [2406] = 2006, + [2407] = 2407, + [2408] = 2408, + [2409] = 2220, + [2410] = 2208, + [2411] = 2078, + [2412] = 2016, + [2413] = 2216, + [2414] = 2214, + [2415] = 2213, + [2416] = 2063, + [2417] = 2102, + [2418] = 2217, + [2419] = 2209, + [2420] = 2054, + [2421] = 2006, + [2422] = 2219, + [2423] = 2047, + [2424] = 2103, + [2425] = 2218, + [2426] = 2121, + [2427] = 2175, + [2428] = 2239, + [2429] = 2028, + [2430] = 2105, + [2431] = 2102, + [2432] = 2126, + [2433] = 2101, + [2434] = 2047, + [2435] = 2048, + [2436] = 2214, + [2437] = 2437, + [2438] = 2028, + [2439] = 2077, + [2440] = 2058, + [2441] = 1964, + [2442] = 1966, + [2443] = 1967, + [2444] = 2437, + [2445] = 2048, + [2446] = 2446, + [2447] = 2447, + [2448] = 2126, + [2449] = 2076, + [2450] = 2105, + [2451] = 1968, + [2452] = 2047, + [2453] = 2054, + [2454] = 2437, + [2455] = 2094, + [2456] = 2446, + [2457] = 2083, + [2458] = 2309, + [2459] = 2001, + [2460] = 2075, + [2461] = 2071, + [2462] = 2446, + [2463] = 2102, + [2464] = 2048, + [2465] = 2309, + [2466] = 2086, + [2467] = 2045, + [2468] = 2291, + [2469] = 2446, + [2470] = 2026, + [2471] = 2063, + [2472] = 2121, + [2473] = 2473, + [2474] = 2208, + [2475] = 2075, + [2476] = 2209, + [2477] = 1969, + [2478] = 2175, + [2479] = 2446, + [2480] = 2291, + [2481] = 2239, + [2482] = 2103, + [2483] = 2162, + [2484] = 2247, + [2485] = 2077, + [2486] = 2247, + [2487] = 2028, + [2488] = 2006, + [2489] = 2016, + [2490] = 2247, + [2491] = 1965, + [2492] = 2047, + [2493] = 1970, + [2494] = 2090, + [2495] = 1963, + [2496] = 2058, + [2497] = 2437, + [2498] = 2446, + [2499] = 2037, + [2500] = 2006, + [2501] = 2121, + [2502] = 2045, + [2503] = 2213, + [2504] = 2247, + [2505] = 2505, + [2506] = 2215, + [2507] = 2216, + [2508] = 2217, + [2509] = 2126, + [2510] = 2247, + [2511] = 2105, + [2512] = 2218, + [2513] = 2247, + [2514] = 2063, + [2515] = 2446, + [2516] = 2108, + [2517] = 2219, + [2518] = 2220, + [2519] = 2102, + [2520] = 2317, + [2521] = 2318, + [2522] = 2049, + [2523] = 2103, + [2524] = 2054, + [2525] = 2162, + [2526] = 2101, + [2527] = 2101, + [2528] = 1994, + [2529] = 2529, + [2530] = 1968, + [2531] = 1969, + [2532] = 2309, + [2533] = 2112, + [2534] = 2291, + [2535] = 2309, + [2536] = 290, + [2537] = 2537, + [2538] = 2538, + [2539] = 1994, + [2540] = 1996, [2541] = 2541, - [2542] = 2007, - [2543] = 2009, - [2544] = 1975, - [2545] = 1958, - [2546] = 1931, - [2547] = 2123, - [2548] = 1998, - [2549] = 1998, - [2550] = 1943, - [2551] = 253, - [2552] = 1866, - [2553] = 1857, - [2554] = 1858, - [2555] = 1859, - [2556] = 1860, - [2557] = 1861, - [2558] = 1862, - [2559] = 1942, - [2560] = 1941, - [2561] = 1968, - [2562] = 2001, - [2563] = 402, - [2564] = 2193, - [2565] = 2200, - [2566] = 2214, - [2567] = 2026, - [2568] = 1994, - [2569] = 2569, - [2570] = 1956, - [2571] = 1961, - [2572] = 2572, - [2573] = 1891, - [2574] = 1891, - [2575] = 1889, - [2576] = 1889, - [2577] = 2067, - [2578] = 1975, - [2579] = 1964, - [2580] = 1963, - [2581] = 2053, - [2582] = 2009, - [2583] = 2001, - [2584] = 402, - [2585] = 2009, - [2586] = 2055, - [2587] = 1942, - [2588] = 1986, - [2589] = 1975, - [2590] = 256, - [2591] = 1963, - [2592] = 1942, - [2593] = 1987, - [2594] = 2042, - [2595] = 2069, - [2596] = 1968, - [2597] = 2026, - [2598] = 2067, - [2599] = 1958, - [2600] = 2033, - [2601] = 2034, - [2602] = 2035, - [2603] = 2036, - [2604] = 2039, - [2605] = 2193, - [2606] = 2184, - [2607] = 2213, - [2608] = 1990, - [2609] = 354, - [2610] = 2200, - [2611] = 1941, - [2612] = 1956, - [2613] = 1959, - [2614] = 2214, - [2615] = 2569, - [2616] = 1941, - [2617] = 2043, - [2618] = 2569, - [2619] = 2046, - [2620] = 2569, - [2621] = 2569, - [2622] = 2569, - [2623] = 2569, - [2624] = 2047, - [2625] = 2048, - [2626] = 1964, - [2627] = 1964, - [2628] = 2628, - [2629] = 2629, - [2630] = 401, - [2631] = 2631, - [2632] = 2632, - [2633] = 2633, - [2634] = 1965, - [2635] = 2540, - [2636] = 469, - [2637] = 2637, - [2638] = 470, - [2639] = 1866, - [2640] = 2640, - [2641] = 1994, - [2642] = 2042, - [2643] = 2042, - [2644] = 2069, - [2645] = 2633, + [2542] = 2291, + [2543] = 2114, + [2544] = 2309, + [2545] = 292, + [2546] = 2291, + [2547] = 2049, + [2548] = 2026, + [2549] = 2309, + [2550] = 2094, + [2551] = 2083, + [2552] = 2291, + [2553] = 2086, + [2554] = 2291, + [2555] = 1964, + [2556] = 2556, + [2557] = 1966, + [2558] = 2529, + [2559] = 1970, + [2560] = 1996, + [2561] = 2537, + [2562] = 1967, + [2563] = 2541, + [2564] = 291, + [2565] = 2565, + [2566] = 2529, + [2567] = 2537, + [2568] = 289, + [2569] = 2317, + [2570] = 2318, + [2571] = 2317, + [2572] = 2318, + [2573] = 2529, + [2574] = 2537, + [2575] = 2541, + [2576] = 2047, + [2577] = 2090, + [2578] = 2045, + [2579] = 2094, + [2580] = 2083, + [2581] = 2309, + [2582] = 2086, + [2583] = 1965, + [2584] = 1996, + [2585] = 1970, + [2586] = 1994, + [2587] = 1965, + [2588] = 1968, + [2589] = 1969, + [2590] = 2268, + [2591] = 1964, + [2592] = 1966, + [2593] = 1967, + [2594] = 2090, + [2595] = 2028, + [2596] = 2162, + [2597] = 2309, + [2598] = 2291, + [2599] = 2162, + [2600] = 2541, + [2601] = 2170, + [2602] = 2058, + [2603] = 2121, + [2604] = 2102, + [2605] = 2049, + [2606] = 2075, + [2607] = 2037, + [2608] = 2118, + [2609] = 2268, + [2610] = 2126, + [2611] = 2247, + [2612] = 2048, + [2613] = 2053, + [2614] = 2208, + [2615] = 2147, + [2616] = 2209, + [2617] = 2063, + [2618] = 2082, + [2619] = 2070, + [2620] = 2175, + [2621] = 2239, + [2622] = 2073, + [2623] = 2054, + [2624] = 2213, + [2625] = 2114, + [2626] = 2119, + [2627] = 2627, + [2628] = 2074, + [2629] = 2103, + [2630] = 2101, + [2631] = 2214, + [2632] = 2215, + [2633] = 2114, + [2634] = 2216, + [2635] = 2247, + [2636] = 2047, + [2637] = 2112, + [2638] = 2049, + [2639] = 2217, + [2640] = 2218, + [2641] = 2045, + [2642] = 2219, + [2643] = 2220, + [2644] = 2105, + [2645] = 2028, [2646] = 2646, [2647] = 2647, - [2648] = 2648, - [2649] = 2649, + [2648] = 2090, + [2649] = 2077, [2650] = 2650, - [2651] = 1891, - [2652] = 2652, - [2653] = 2043, - [2654] = 1889, - [2655] = 1855, - [2656] = 2656, - [2657] = 2657, - [2658] = 2046, - [2659] = 2033, - [2660] = 1857, - [2661] = 1858, - [2662] = 1859, - [2663] = 2034, - [2664] = 2664, - [2665] = 472, - [2666] = 473, - [2667] = 2035, - [2668] = 2036, - [2669] = 1853, - [2670] = 1986, - [2671] = 2540, - [2672] = 1987, - [2673] = 2541, - [2674] = 2047, - [2675] = 2048, - [2676] = 2676, - [2677] = 1954, - [2678] = 1972, - [2679] = 2043, - [2680] = 2035, - [2681] = 1990, - [2682] = 2046, - [2683] = 474, - [2684] = 2047, - [2685] = 2048, - [2686] = 529, - [2687] = 2687, - [2688] = 1860, - [2689] = 1861, - [2690] = 1862, - [2691] = 391, - [2692] = 510, - [2693] = 397, - [2694] = 2053, - [2695] = 382, - [2696] = 387, - [2697] = 2055, - [2698] = 2698, - [2699] = 1994, - [2700] = 513, - [2701] = 2701, - [2702] = 2702, - [2703] = 1998, - [2704] = 1974, - [2705] = 518, - [2706] = 519, - [2707] = 2069, - [2708] = 2036, - [2709] = 364, - [2710] = 520, - [2711] = 2711, - [2712] = 521, - [2713] = 522, - [2714] = 524, - [2715] = 526, - [2716] = 375, - [2717] = 2034, - [2718] = 403, - [2719] = 528, - [2720] = 404, - [2721] = 2541, - [2722] = 2633, - [2723] = 2071, - [2724] = 361, - [2725] = 408, - [2726] = 367, - [2727] = 413, - [2728] = 2077, - [2729] = 414, - [2730] = 2730, - [2731] = 415, - [2732] = 2732, - [2733] = 2053, - [2734] = 416, - [2735] = 417, - [2736] = 462, - [2737] = 418, - [2738] = 419, - [2739] = 374, - [2740] = 420, - [2741] = 421, - [2742] = 2742, - [2743] = 2055, - [2744] = 2633, - [2745] = 2033, - [2746] = 2746, - [2747] = 426, - [2748] = 2748, - [2749] = 2022, - [2750] = 2750, - [2751] = 432, - [2752] = 435, - [2753] = 436, - [2754] = 2754, - [2755] = 438, - [2756] = 439, - [2757] = 440, - [2758] = 441, - [2759] = 442, - [2760] = 2760, - [2761] = 444, - [2762] = 2156, - [2763] = 445, - [2764] = 446, - [2765] = 398, - [2766] = 2090, - [2767] = 2767, - [2768] = 2093, - [2769] = 400, - [2770] = 2540, - [2771] = 2771, - [2772] = 2541, - [2773] = 2773, - [2774] = 2774, - [2775] = 2775, - [2776] = 2098, + [2651] = 2323, + [2652] = 2047, + [2653] = 2045, + [2654] = 2112, + [2655] = 1966, + [2656] = 2074, + [2657] = 1996, + [2658] = 2323, + [2659] = 2170, + [2660] = 2045, + [2661] = 2147, + [2662] = 2161, + [2663] = 2058, + [2664] = 2048, + [2665] = 2119, + [2666] = 2136, + [2667] = 2118, + [2668] = 2129, + [2669] = 1994, + [2670] = 2162, + [2671] = 2158, + [2672] = 2165, + [2673] = 2309, + [2674] = 2139, + [2675] = 2094, + [2676] = 2083, + [2677] = 2291, + [2678] = 2147, + [2679] = 325, + [2680] = 2118, + [2681] = 2053, + [2682] = 2086, + [2683] = 2082, + [2684] = 2684, + [2685] = 325, + [2686] = 2070, + [2687] = 2063, + [2688] = 1994, + [2689] = 1996, + [2690] = 2317, + [2691] = 2171, + [2692] = 2172, + [2693] = 2323, + [2694] = 2684, + [2695] = 2309, + [2696] = 2170, + [2697] = 2140, + [2698] = 2087, + [2699] = 2144, + [2700] = 2054, + [2701] = 2073, + [2702] = 2291, + [2703] = 2074, + [2704] = 2134, + [2705] = 2684, + [2706] = 2706, + [2707] = 2684, + [2708] = 2684, + [2709] = 2070, + [2710] = 2684, + [2711] = 2684, + [2712] = 2073, + [2713] = 288, + [2714] = 285, + [2715] = 1970, + [2716] = 310, + [2717] = 1965, + [2718] = 1968, + [2719] = 1969, + [2720] = 1964, + [2721] = 2053, + [2722] = 1967, + [2723] = 2045, + [2724] = 2047, + [2725] = 2082, + [2726] = 2047, + [2727] = 2047, + [2728] = 2119, + [2729] = 2137, + [2730] = 2045, + [2731] = 2318, + [2732] = 2129, + [2733] = 2158, + [2734] = 2734, + [2735] = 369, + [2736] = 2086, + [2737] = 2268, + [2738] = 417, + [2739] = 418, + [2740] = 446, + [2741] = 370, + [2742] = 2049, + [2743] = 2743, + [2744] = 371, + [2745] = 469, + [2746] = 463, + [2747] = 2747, + [2748] = 2136, + [2749] = 464, + [2750] = 506, + [2751] = 507, + [2752] = 2139, + [2753] = 2140, + [2754] = 2144, + [2755] = 2083, + [2756] = 2646, + [2757] = 2757, + [2758] = 515, + [2759] = 2161, + [2760] = 2165, + [2761] = 2761, + [2762] = 2762, + [2763] = 378, + [2764] = 379, + [2765] = 420, + [2766] = 380, + [2767] = 381, + [2768] = 508, + [2769] = 385, + [2770] = 2647, + [2771] = 465, + [2772] = 444, + [2773] = 421, + [2774] = 2136, + [2775] = 2646, + [2776] = 1996, [2777] = 2777, - [2778] = 455, - [2779] = 456, + [2778] = 2778, + [2779] = 2647, [2780] = 2780, - [2781] = 457, - [2782] = 2109, - [2783] = 458, - [2784] = 459, - [2785] = 460, - [2786] = 2786, - [2787] = 464, - [2788] = 2788, - [2789] = 2789, - [2790] = 2790, - [2791] = 2791, - [2792] = 1975, - [2793] = 450, - [2794] = 2071, - [2795] = 1853, - [2796] = 2428, - [2797] = 1998, - [2798] = 2466, + [2781] = 2087, + [2782] = 2112, + [2783] = 2783, + [2784] = 2082, + [2785] = 456, + [2786] = 2070, + [2787] = 1965, + [2788] = 2078, + [2789] = 404, + [2790] = 458, + [2791] = 407, + [2792] = 459, + [2793] = 466, + [2794] = 460, + [2795] = 461, + [2796] = 2171, + [2797] = 1968, + [2798] = 467, [2799] = 2799, - [2800] = 2098, - [2801] = 2109, - [2802] = 2067, - [2803] = 2428, - [2804] = 1972, - [2805] = 349, - [2806] = 2093, - [2807] = 2214, - [2808] = 2077, - [2809] = 2090, - [2810] = 2109, - [2811] = 1853, - [2812] = 306, - [2813] = 2077, - [2814] = 1963, - [2815] = 2066, - [2816] = 2465, - [2817] = 2465, - [2818] = 2093, - [2819] = 1964, - [2820] = 302, - [2821] = 306, - [2822] = 347, - [2823] = 2090, - [2824] = 1995, - [2825] = 1968, - [2826] = 2009, - [2827] = 2071, - [2828] = 2466, - [2829] = 2001, - [2830] = 1853, - [2831] = 347, - [2832] = 2063, - [2833] = 2098, - [2834] = 2049, - [2835] = 1975, - [2836] = 302, - [2837] = 2026, - [2838] = 1965, - [2839] = 2839, - [2840] = 1956, - [2841] = 349, - [2842] = 2069, - [2843] = 2033, - [2844] = 2428, - [2845] = 2845, - [2846] = 2034, - [2847] = 1891, - [2848] = 1956, - [2849] = 2465, - [2850] = 2073, - [2851] = 2074, - [2852] = 2035, - [2853] = 2036, - [2854] = 1974, - [2855] = 2026, - [2856] = 2063, - [2857] = 2465, - [2858] = 2466, - [2859] = 1855, - [2860] = 2078, - [2861] = 2079, - [2862] = 2080, - [2863] = 2066, + [2800] = 2172, + [2801] = 1958, + [2802] = 423, + [2803] = 2803, + [2804] = 1970, + [2805] = 1969, + [2806] = 412, + [2807] = 2646, + [2808] = 406, + [2809] = 413, + [2810] = 445, + [2811] = 2114, + [2812] = 2094, + [2813] = 1964, + [2814] = 1966, + [2815] = 389, + [2816] = 361, + [2817] = 1967, + [2818] = 2071, + [2819] = 480, + [2820] = 2158, + [2821] = 440, + [2822] = 403, + [2823] = 2197, + [2824] = 2139, + [2825] = 2161, + [2826] = 2165, + [2827] = 2226, + [2828] = 2229, + [2829] = 2829, + [2830] = 2647, + [2831] = 2734, + [2832] = 2832, + [2833] = 2181, + [2834] = 2140, + [2835] = 441, + [2836] = 2836, + [2837] = 431, + [2838] = 442, + [2839] = 439, + [2840] = 443, + [2841] = 362, + [2842] = 2842, + [2843] = 2087, + [2844] = 2844, + [2845] = 481, + [2846] = 1963, + [2847] = 2171, + [2848] = 2172, + [2849] = 2849, + [2850] = 2850, + [2851] = 2851, + [2852] = 2076, + [2853] = 1994, + [2854] = 2854, + [2855] = 437, + [2856] = 2734, + [2857] = 2857, + [2858] = 2144, + [2859] = 2859, + [2860] = 2860, + [2861] = 2861, + [2862] = 2862, + [2863] = 2863, [2864] = 2864, - [2865] = 1853, - [2866] = 2002, - [2867] = 2867, - [2868] = 2126, - [2869] = 2127, - [2870] = 2870, - [2871] = 2871, - [2872] = 2872, - [2873] = 2114, - [2874] = 2067, - [2875] = 2117, - [2876] = 2084, - [2877] = 2118, - [2878] = 2085, - [2879] = 1853, - [2880] = 1853, - [2881] = 2466, - [2882] = 2882, - [2883] = 2883, - [2884] = 1853, - [2885] = 2049, - [2886] = 1889, - [2887] = 1994, - [2888] = 2428, + [2865] = 2865, + [2866] = 2866, + [2867] = 483, + [2868] = 2868, + [2869] = 411, + [2870] = 462, + [2871] = 414, + [2872] = 484, + [2873] = 416, + [2874] = 438, + [2875] = 425, + [2876] = 2876, + [2877] = 2877, + [2878] = 2878, + [2879] = 432, + [2880] = 2880, + [2881] = 366, + [2882] = 2134, + [2883] = 2734, + [2884] = 2884, + [2885] = 2134, + [2886] = 2137, + [2887] = 2193, + [2888] = 367, [2889] = 2889, [2890] = 2890, - [2891] = 256, - [2892] = 2420, + [2891] = 2137, + [2892] = 368, [2893] = 2893, - [2894] = 2043, - [2895] = 2895, - [2896] = 2046, + [2894] = 2894, + [2895] = 2129, + [2896] = 2896, [2897] = 2897, - [2898] = 2049, - [2899] = 2049, - [2900] = 2047, - [2901] = 2048, - [2902] = 253, + [2898] = 2225, + [2899] = 2151, + [2900] = 2529, + [2901] = 1958, + [2902] = 2902, [2903] = 2903, - [2904] = 2003, - [2905] = 2004, - [2906] = 2005, - [2907] = 2465, - [2908] = 2006, - [2909] = 2007, - [2910] = 2910, - [2911] = 2911, - [2912] = 2466, - [2913] = 2913, - [2914] = 2129, - [2915] = 1889, - [2916] = 2428, - [2917] = 2917, - [2918] = 2111, - [2919] = 2465, - [2920] = 2466, - [2921] = 2428, - [2922] = 2042, - [2923] = 2923, - [2924] = 2924, - [2925] = 2070, - [2926] = 2089, - [2927] = 2465, - [2928] = 2466, - [2929] = 2929, - [2930] = 2091, - [2931] = 2092, - [2932] = 2864, - [2933] = 1855, - [2934] = 2428, - [2935] = 2094, - [2936] = 2095, - [2937] = 2003, - [2938] = 2004, - [2939] = 2053, - [2940] = 2005, - [2941] = 2006, - [2942] = 2112, - [2943] = 2465, - [2944] = 2007, - [2945] = 2097, - [2946] = 2099, - [2947] = 2055, - [2948] = 2100, - [2949] = 2063, - [2950] = 2134, - [2951] = 2951, - [2952] = 2002, - [2953] = 2107, - [2954] = 2108, - [2955] = 2102, - [2956] = 2082, - [2957] = 2086, - [2958] = 2103, - [2959] = 2959, + [2904] = 292, + [2905] = 2225, + [2906] = 289, + [2907] = 2229, + [2908] = 2537, + [2909] = 2541, + [2910] = 292, + [2911] = 2197, + [2912] = 290, + [2913] = 2226, + [2914] = 2181, + [2915] = 2193, + [2916] = 2118, + [2917] = 2193, + [2918] = 2541, + [2919] = 1958, + [2920] = 2114, + [2921] = 2170, + [2922] = 291, + [2923] = 2071, + [2924] = 291, + [2925] = 1958, + [2926] = 290, + [2927] = 2181, + [2928] = 2053, + [2929] = 2119, + [2930] = 2074, + [2931] = 2082, + [2932] = 2070, + [2933] = 2073, + [2934] = 2147, + [2935] = 2146, + [2936] = 2529, + [2937] = 2225, + [2938] = 2090, + [2939] = 2197, + [2940] = 289, + [2941] = 2076, + [2942] = 2169, + [2943] = 2537, + [2944] = 2323, + [2945] = 2229, + [2946] = 2226, + [2947] = 2194, + [2948] = 2529, + [2949] = 2189, + [2950] = 2201, + [2951] = 2151, + [2952] = 2234, + [2953] = 2541, + [2954] = 2078, + [2955] = 2955, + [2956] = 2956, + [2957] = 2957, + [2958] = 2958, + [2959] = 2192, [2960] = 2960, - [2961] = 2911, - [2962] = 1891, - [2963] = 2120, - [2964] = 2867, - [2965] = 2466, - [2966] = 1855, + [2961] = 2537, + [2962] = 2196, + [2963] = 2204, + [2964] = 2205, + [2965] = 2136, + [2966] = 2103, [2967] = 2101, - [2968] = 2872, - [2969] = 2104, - [2970] = 1959, - [2971] = 2121, - [2972] = 2012, - [2973] = 2063, - [2974] = 2066, - [2975] = 2959, + [2968] = 2126, + [2969] = 2211, + [2970] = 2102, + [2971] = 2105, + [2972] = 2151, + [2973] = 2973, + [2974] = 2102, + [2975] = 2529, [2976] = 2976, - [2977] = 2428, - [2978] = 1853, - [2979] = 2110, - [2980] = 2980, - [2981] = 2126, - [2982] = 2070, - [2983] = 2089, - [2984] = 2012, - [2985] = 1954, - [2986] = 1959, - [2987] = 2126, - [2988] = 1954, - [2989] = 2079, - [2990] = 2080, - [2991] = 402, - [2992] = 1855, - [2993] = 2109, - [2994] = 2110, - [2995] = 2097, - [2996] = 2134, - [2997] = 2111, - [2998] = 2097, - [2999] = 2107, - [3000] = 1968, - [3001] = 2134, - [3002] = 2107, - [3003] = 2108, - [3004] = 2108, - [3005] = 2082, - [3006] = 2086, - [3007] = 2091, - [3008] = 2540, - [3009] = 2112, - [3010] = 2092, - [3011] = 2101, - [3012] = 2082, - [3013] = 2541, - [3014] = 2086, - [3015] = 2084, - [3016] = 1855, - [3017] = 2094, - [3018] = 2085, - [3019] = 2095, - [3020] = 2114, - [3021] = 2092, - [3022] = 2108, - [3023] = 2073, - [3024] = 1855, - [3025] = 354, - [3026] = 2074, - [3027] = 2078, - [3028] = 2079, - [3029] = 2080, - [3030] = 2101, - [3031] = 1972, - [3032] = 2084, - [3033] = 2085, - [3034] = 2099, - [3035] = 2117, - [3036] = 2118, - [3037] = 2100, - [3038] = 354, - [3039] = 2082, - [3040] = 2102, - [3041] = 2103, - [3042] = 1855, - [3043] = 1855, - [3044] = 2091, - [3045] = 2092, - [3046] = 2039, - [3047] = 2101, - [3048] = 2094, - [3049] = 2095, - [3050] = 2099, - [3051] = 2100, - [3052] = 2102, - [3053] = 2103, - [3054] = 2093, - [3055] = 2086, - [3056] = 2127, - [3057] = 2104, - [3058] = 2094, - [3059] = 3059, - [3060] = 2104, - [3061] = 2095, - [3062] = 2127, - [3063] = 2110, - [3064] = 2111, - [3065] = 2112, - [3066] = 2114, - [3067] = 2104, + [2977] = 2977, + [2978] = 1958, + [2979] = 2529, + [2980] = 2126, + [2981] = 2537, + [2982] = 2190, + [2983] = 2983, + [2984] = 2169, + [2985] = 1963, + [2986] = 2146, + [2987] = 2537, + [2988] = 2447, + [2989] = 1958, + [2990] = 2108, + [2991] = 2151, + [2992] = 2053, + [2993] = 2121, + [2994] = 2994, + [2995] = 2541, + [2996] = 1958, + [2997] = 2221, + [2998] = 1963, + [2999] = 1963, + [3000] = 3000, + [3001] = 2235, + [3002] = 3002, + [3003] = 2139, + [3004] = 3004, + [3005] = 2236, + [3006] = 3006, + [3007] = 2134, + [3008] = 2137, + [3009] = 3009, + [3010] = 1994, + [3011] = 2105, + [3012] = 1996, + [3013] = 2529, + [3014] = 2537, + [3015] = 288, + [3016] = 2238, + [3017] = 2541, + [3018] = 3018, + [3019] = 2541, + [3020] = 2129, + [3021] = 2169, + [3022] = 285, + [3023] = 2233, + [3024] = 3024, + [3025] = 2140, + [3026] = 2161, + [3027] = 3027, + [3028] = 2170, + [3029] = 3029, + [3030] = 2165, + [3031] = 2087, + [3032] = 1994, + [3033] = 2195, + [3034] = 3034, + [3035] = 2144, + [3036] = 2158, + [3037] = 2063, + [3038] = 3038, + [3039] = 2171, + [3040] = 2172, + [3041] = 2223, + [3042] = 2176, + [3043] = 2529, + [3044] = 2537, + [3045] = 2227, + [3046] = 2198, + [3047] = 2200, + [3048] = 2228, + [3049] = 2230, + [3050] = 2237, + [3051] = 2178, + [3052] = 2184, + [3053] = 2169, + [3054] = 2146, + [3055] = 1958, + [3056] = 1996, + [3057] = 2232, + [3058] = 2183, + [3059] = 2207, + [3060] = 2147, + [3061] = 2541, + [3062] = 2121, + [3063] = 2186, + [3064] = 2191, + [3065] = 3065, + [3066] = 2202, + [3067] = 2222, [3068] = 3068, - [3069] = 2103, - [3070] = 2118, - [3071] = 2129, - [3072] = 2120, - [3073] = 2121, - [3074] = 2129, - [3075] = 1879, - [3076] = 2071, - [3077] = 2073, - [3078] = 2074, - [3079] = 2077, - [3080] = 2078, - [3081] = 2079, - [3082] = 2080, - [3083] = 2097, - [3084] = 1959, - [3085] = 402, - [3086] = 2084, - [3087] = 2085, - [3088] = 2098, - [3089] = 2073, - [3090] = 1899, - [3091] = 2074, - [3092] = 2071, - [3093] = 3093, - [3094] = 2077, - [3095] = 2090, - [3096] = 2099, - [3097] = 3097, - [3098] = 3098, - [3099] = 256, - [3100] = 2070, - [3101] = 1853, - [3102] = 2100, - [3103] = 2110, - [3104] = 2111, - [3105] = 3105, - [3106] = 1879, - [3107] = 2112, - [3108] = 2114, - [3109] = 3109, - [3110] = 2117, - [3111] = 2118, - [3112] = 2091, - [3113] = 2134, - [3114] = 2121, - [3115] = 3115, - [3116] = 3116, - [3117] = 3117, - [3118] = 2089, - [3119] = 2090, - [3120] = 2093, - [3121] = 3121, - [3122] = 3122, - [3123] = 1965, - [3124] = 2098, - [3125] = 2120, - [3126] = 3126, - [3127] = 2121, - [3128] = 2120, + [3069] = 2185, + [3070] = 2529, + [3071] = 3071, + [3072] = 2537, + [3073] = 2541, + [3074] = 2994, + [3075] = 3071, + [3076] = 3029, + [3077] = 2973, + [3078] = 2977, + [3079] = 3079, + [3080] = 2177, + [3081] = 2199, + [3082] = 1958, + [3083] = 2103, + [3084] = 2101, + [3085] = 3085, + [3086] = 2176, + [3087] = 2237, + [3088] = 2235, + [3089] = 2233, + [3090] = 2234, + [3091] = 2232, + [3092] = 2225, + [3093] = 2178, + [3094] = 3094, + [3095] = 2238, + [3096] = 2198, + [3097] = 2233, + [3098] = 2236, + [3099] = 2221, + [3100] = 2222, + [3101] = 3101, + [3102] = 2192, + [3103] = 2201, + [3104] = 2196, + [3105] = 2196, + [3106] = 2183, + [3107] = 2186, + [3108] = 2229, + [3109] = 2176, + [3110] = 2198, + [3111] = 3111, + [3112] = 2183, + [3113] = 2194, + [3114] = 2193, + [3115] = 2229, + [3116] = 2184, + [3117] = 2185, + [3118] = 310, + [3119] = 2235, + [3120] = 2181, + [3121] = 2191, + [3122] = 2186, + [3123] = 2222, + [3124] = 3124, + [3125] = 3125, + [3126] = 2076, + [3127] = 2195, + [3128] = 2049, [3129] = 3129, - [3130] = 253, - [3131] = 256, - [3132] = 2109, - [3133] = 402, - [3134] = 253, - [3135] = 2102, - [3136] = 2107, - [3137] = 402, - [3138] = 2070, - [3139] = 2078, - [3140] = 2089, - [3141] = 3141, - [3142] = 2117, - [3143] = 364, - [3144] = 2750, - [3145] = 2760, - [3146] = 435, - [3147] = 2637, - [3148] = 2698, - [3149] = 2664, - [3150] = 1954, - [3151] = 436, - [3152] = 2124, - [3153] = 2777, - [3154] = 2631, - [3155] = 2664, - [3156] = 2746, - [3157] = 2767, - [3158] = 2771, - [3159] = 2774, - [3160] = 2628, - [3161] = 2629, - [3162] = 2687, - [3163] = 520, - [3164] = 2748, - [3165] = 438, - [3166] = 3166, - [3167] = 439, - [3168] = 510, + [3130] = 2200, + [3131] = 1963, + [3132] = 2199, + [3133] = 2190, + [3134] = 2236, + [3135] = 2197, + [3136] = 2201, + [3137] = 1963, + [3138] = 2006, + [3139] = 2235, + [3140] = 3140, + [3141] = 2202, + [3142] = 2191, + [3143] = 2225, + [3144] = 2228, + [3145] = 2223, + [3146] = 2207, + [3147] = 2200, + [3148] = 325, + [3149] = 3149, + [3150] = 288, + [3151] = 1963, + [3152] = 3152, + [3153] = 2211, + [3154] = 1984, + [3155] = 2230, + [3156] = 2162, + [3157] = 1963, + [3158] = 2204, + [3159] = 325, + [3160] = 2063, + [3161] = 325, + [3162] = 2205, + [3163] = 2177, + [3164] = 2191, + [3165] = 2190, + [3166] = 2221, + [3167] = 2222, + [3168] = 325, [3169] = 3169, - [3170] = 1855, - [3171] = 2465, - [3172] = 2128, - [3173] = 2746, - [3174] = 455, - [3175] = 2767, - [3176] = 2130, - [3177] = 2771, - [3178] = 457, - [3179] = 513, - [3180] = 2774, - [3181] = 445, - [3182] = 413, - [3183] = 414, - [3184] = 2628, - [3185] = 2629, - [3186] = 458, - [3187] = 469, - [3188] = 474, - [3189] = 2687, - [3190] = 2702, - [3191] = 2750, - [3192] = 2760, - [3193] = 518, - [3194] = 522, - [3195] = 519, - [3196] = 440, - [3197] = 441, - [3198] = 1969, - [3199] = 442, - [3200] = 438, - [3201] = 521, - [3202] = 522, - [3203] = 3203, - [3204] = 3166, - [3205] = 2646, - [3206] = 2647, - [3207] = 524, - [3208] = 526, - [3209] = 444, - [3210] = 2648, - [3211] = 444, - [3212] = 2649, - [3213] = 2650, - [3214] = 528, - [3215] = 2652, - [3216] = 439, - [3217] = 442, - [3218] = 464, - [3219] = 518, - [3220] = 2656, - [3221] = 440, - [3222] = 2657, - [3223] = 3223, - [3224] = 2790, - [3225] = 470, - [3226] = 2637, - [3227] = 2632, - [3228] = 398, - [3229] = 445, - [3230] = 446, - [3231] = 2698, - [3232] = 400, - [3233] = 2466, - [3234] = 2732, - [3235] = 1954, - [3236] = 426, - [3237] = 375, - [3238] = 521, - [3239] = 1931, - [3240] = 413, - [3241] = 414, - [3242] = 435, - [3243] = 469, - [3244] = 450, - [3245] = 472, - [3246] = 473, - [3247] = 470, - [3248] = 3248, - [3249] = 436, - [3250] = 2428, - [3251] = 1954, - [3252] = 3252, - [3253] = 524, - [3254] = 526, - [3255] = 2702, - [3256] = 455, - [3257] = 456, - [3258] = 457, - [3259] = 2465, - [3260] = 2420, - [3261] = 458, - [3262] = 2063, - [3263] = 2466, - [3264] = 2066, - [3265] = 2786, - [3266] = 432, - [3267] = 398, - [3268] = 2646, - [3269] = 2730, - [3270] = 1965, - [3271] = 374, - [3272] = 400, - [3273] = 441, - [3274] = 528, - [3275] = 1855, - [3276] = 472, - [3277] = 408, - [3278] = 2711, - [3279] = 459, - [3280] = 2647, - [3281] = 519, - [3282] = 2648, - [3283] = 520, - [3284] = 460, - [3285] = 2711, - [3286] = 2789, - [3287] = 2123, - [3288] = 2649, - [3289] = 2650, - [3290] = 2676, - [3291] = 456, - [3292] = 2791, - [3293] = 1972, - [3294] = 415, - [3295] = 2631, - [3296] = 474, - [3297] = 364, - [3298] = 2773, - [3299] = 2652, - [3300] = 529, - [3301] = 2039, - [3302] = 459, - [3303] = 460, - [3304] = 2656, - [3305] = 2657, - [3306] = 473, - [3307] = 2049, - [3308] = 529, - [3309] = 2775, - [3310] = 391, - [3311] = 397, - [3312] = 382, - [3313] = 387, - [3314] = 464, - [3315] = 2132, - [3316] = 2072, - [3317] = 2777, - [3318] = 2075, - [3319] = 415, - [3320] = 2083, - [3321] = 416, - [3322] = 2087, - [3323] = 417, - [3324] = 418, - [3325] = 419, - [3326] = 420, - [3327] = 421, - [3328] = 2428, - [3329] = 416, - [3330] = 417, - [3331] = 401, - [3332] = 401, - [3333] = 1959, - [3334] = 426, - [3335] = 2786, - [3336] = 2789, - [3337] = 513, - [3338] = 2773, - [3339] = 2791, - [3340] = 2022, - [3341] = 418, - [3342] = 2088, - [3343] = 2790, - [3344] = 391, - [3345] = 397, - [3346] = 367, - [3347] = 462, - [3348] = 408, - [3349] = 403, - [3350] = 404, - [3351] = 361, - [3352] = 382, - [3353] = 2775, - [3354] = 387, - [3355] = 419, - [3356] = 420, - [3357] = 374, - [3358] = 421, - [3359] = 2632, - [3360] = 446, - [3361] = 2122, - [3362] = 2125, - [3363] = 2640, - [3364] = 2676, - [3365] = 432, - [3366] = 462, - [3367] = 2730, - [3368] = 375, - [3369] = 450, - [3370] = 403, - [3371] = 510, - [3372] = 404, - [3373] = 361, - [3374] = 2732, - [3375] = 367, - [3376] = 2748, - [3377] = 2640, - [3378] = 1965, - [3379] = 2486, - [3380] = 2097, - [3381] = 2134, - [3382] = 2107, - [3383] = 3383, - [3384] = 2002, - [3385] = 2166, - [3386] = 2108, - [3387] = 2082, - [3388] = 2086, - [3389] = 2002, - [3390] = 2156, - [3391] = 2127, - [3392] = 3392, - [3393] = 2128, - [3394] = 3394, - [3395] = 3395, - [3396] = 2101, - [3397] = 2003, - [3398] = 2004, - [3399] = 2005, - [3400] = 2476, - [3401] = 2006, - [3402] = 2007, - [3403] = 1965, - [3404] = 2439, - [3405] = 3405, - [3406] = 3392, - [3407] = 2130, - [3408] = 1008, - [3409] = 2073, - [3410] = 2074, - [3411] = 1986, - [3412] = 1866, - [3413] = 2078, - [3414] = 3394, - [3415] = 2079, - [3416] = 2080, - [3417] = 2084, - [3418] = 2085, - [3419] = 2122, - [3420] = 2003, - [3421] = 3421, - [3422] = 2127, - [3423] = 1857, - [3424] = 2129, - [3425] = 1969, - [3426] = 2125, - [3427] = 2166, - [3428] = 1858, - [3429] = 1859, - [3430] = 1860, - [3431] = 2088, - [3432] = 2003, - [3433] = 2004, - [3434] = 2166, - [3435] = 1009, - [3436] = 2006, - [3437] = 2007, - [3438] = 1972, - [3439] = 1987, - [3440] = 2002, - [3441] = 2091, - [3442] = 2092, - [3443] = 2094, - [3444] = 2095, - [3445] = 1941, - [3446] = 2420, - [3447] = 2099, - [3448] = 2100, - [3449] = 1861, - [3450] = 2102, - [3451] = 2103, - [3452] = 2104, - [3453] = 2070, - [3454] = 1862, - [3455] = 2420, - [3456] = 1990, - [3457] = 2166, - [3458] = 2004, - [3459] = 2007, - [3460] = 2089, - [3461] = 2126, - [3462] = 1968, - [3463] = 3392, - [3464] = 2124, - [3465] = 2132, - [3466] = 2072, - [3467] = 1959, - [3468] = 2075, - [3469] = 2083, - [3470] = 2087, - [3471] = 2110, - [3472] = 3472, - [3473] = 2111, - [3474] = 2112, - [3475] = 2114, - [3476] = 2117, - [3477] = 2118, - [3478] = 2129, - [3479] = 1855, - [3480] = 2120, - [3481] = 2121, - [3482] = 1942, - [3483] = 2123, - [3484] = 2005, - [3485] = 2006, - [3486] = 1966, - [3487] = 1972, - [3488] = 2005, - [3489] = 2910, - [3490] = 3490, - [3491] = 3491, - [3492] = 3492, - [3493] = 2893, - [3494] = 3494, - [3495] = 3495, - [3496] = 253, - [3497] = 3497, - [3498] = 2976, - [3499] = 2845, - [3500] = 2897, - [3501] = 2890, - [3502] = 2903, - [3503] = 3503, - [3504] = 1860, - [3505] = 3503, - [3506] = 1954, + [3170] = 3170, + [3171] = 2074, + [3172] = 3172, + [3173] = 2108, + [3174] = 1984, + [3175] = 2204, + [3176] = 2207, + [3177] = 2049, + [3178] = 2189, + [3179] = 2202, + [3180] = 3180, + [3181] = 2177, + [3182] = 285, + [3183] = 2237, + [3184] = 2223, + [3185] = 2190, + [3186] = 2197, + [3187] = 2198, + [3188] = 2194, + [3189] = 2195, + [3190] = 2227, + [3191] = 2200, + [3192] = 2226, + [3193] = 1963, + [3194] = 2199, + [3195] = 2176, + [3196] = 2184, + [3197] = 2221, + [3198] = 3198, + [3199] = 2237, + [3200] = 288, + [3201] = 2178, + [3202] = 2185, + [3203] = 2234, + [3204] = 2646, + [3205] = 2238, + [3206] = 285, + [3207] = 2201, + [3208] = 2192, + [3209] = 1958, + [3210] = 2063, + [3211] = 2226, + [3212] = 2236, + [3213] = 2189, + [3214] = 2227, + [3215] = 2238, + [3216] = 3216, + [3217] = 2196, + [3218] = 2178, + [3219] = 2211, + [3220] = 2227, + [3221] = 2193, + [3222] = 2228, + [3223] = 2192, + [3224] = 2204, + [3225] = 2205, + [3226] = 2230, + [3227] = 2228, + [3228] = 2205, + [3229] = 2189, + [3230] = 2232, + [3231] = 2230, + [3232] = 2181, + [3233] = 2232, + [3234] = 310, + [3235] = 2194, + [3236] = 2071, + [3237] = 2202, + [3238] = 2233, + [3239] = 2647, + [3240] = 2183, + [3241] = 2184, + [3242] = 2185, + [3243] = 2186, + [3244] = 2234, + [3245] = 2195, + [3246] = 2199, + [3247] = 2177, + [3248] = 407, + [3249] = 446, + [3250] = 444, + [3251] = 404, + [3252] = 407, + [3253] = 456, + [3254] = 458, + [3255] = 459, + [3256] = 460, + [3257] = 461, + [3258] = 462, + [3259] = 463, + [3260] = 464, + [3261] = 465, + [3262] = 466, + [3263] = 467, + [3264] = 412, + [3265] = 413, + [3266] = 480, + [3267] = 481, + [3268] = 483, + [3269] = 484, + [3270] = 506, + [3271] = 507, + [3272] = 425, + [3273] = 432, + [3274] = 515, + [3275] = 2112, + [3276] = 2857, + [3277] = 2859, + [3278] = 2861, + [3279] = 2862, + [3280] = 2864, + [3281] = 2865, + [3282] = 2866, + [3283] = 2868, + [3284] = 2208, + [3285] = 2209, + [3286] = 2832, + [3287] = 2849, + [3288] = 2850, + [3289] = 2175, + [3290] = 2239, + [3291] = 2854, + [3292] = 2876, + [3293] = 2878, + [3294] = 2884, + [3295] = 2037, + [3296] = 389, + [3297] = 361, + [3298] = 2894, + [3299] = 2213, + [3300] = 2214, + [3301] = 2215, + [3302] = 2216, + [3303] = 2217, + [3304] = 2842, + [3305] = 2863, + [3306] = 362, + [3307] = 2777, + [3308] = 2743, + [3309] = 2747, + [3310] = 2218, + [3311] = 2761, + [3312] = 366, + [3313] = 367, + [3314] = 368, + [3315] = 369, + [3316] = 2778, + [3317] = 2844, + [3318] = 2860, + [3319] = 2219, + [3320] = 2220, + [3321] = 370, + [3322] = 371, + [3323] = 469, + [3324] = 378, + [3325] = 379, + [3326] = 380, + [3327] = 381, + [3328] = 508, + [3329] = 385, + [3330] = 2877, + [3331] = 3331, + [3332] = 2880, + [3333] = 2893, + [3334] = 2896, + [3335] = 2897, + [3336] = 2780, + [3337] = 2783, + [3338] = 2829, + [3339] = 2836, + [3340] = 3340, + [3341] = 403, + [3342] = 406, + [3343] = 411, + [3344] = 414, + [3345] = 417, + [3346] = 418, + [3347] = 2077, + [3348] = 420, + [3349] = 421, + [3350] = 423, + [3351] = 2529, + [3352] = 2537, + [3353] = 2541, + [3354] = 2857, + [3355] = 412, + [3356] = 2859, + [3357] = 431, + [3358] = 2861, + [3359] = 2862, + [3360] = 2864, + [3361] = 2865, + [3362] = 2866, + [3363] = 2868, + [3364] = 413, + [3365] = 439, + [3366] = 440, + [3367] = 441, + [3368] = 442, + [3369] = 443, + [3370] = 444, + [3371] = 445, + [3372] = 362, + [3373] = 2063, + [3374] = 446, + [3375] = 2076, + [3376] = 1963, + [3377] = 2071, + [3378] = 2162, + [3379] = 3379, + [3380] = 456, + [3381] = 2049, + [3382] = 2529, + [3383] = 2537, + [3384] = 2541, + [3385] = 462, + [3386] = 463, + [3387] = 464, + [3388] = 465, + [3389] = 2049, + [3390] = 466, + [3391] = 467, + [3392] = 2049, + [3393] = 370, + [3394] = 371, + [3395] = 469, + [3396] = 480, + [3397] = 2447, + [3398] = 506, + [3399] = 507, + [3400] = 381, + [3401] = 508, + [3402] = 515, + [3403] = 2832, + [3404] = 2849, + [3405] = 2850, + [3406] = 425, + [3407] = 2854, + [3408] = 2876, + [3409] = 2878, + [3410] = 2884, + [3411] = 445, + [3412] = 416, + [3413] = 2894, + [3414] = 2842, + [3415] = 2863, + [3416] = 432, + [3417] = 2777, + [3418] = 2743, + [3419] = 2747, + [3420] = 2761, + [3421] = 2778, + [3422] = 2844, + [3423] = 2860, + [3424] = 2877, + [3425] = 2880, + [3426] = 2893, + [3427] = 2896, + [3428] = 2897, + [3429] = 2780, + [3430] = 2783, + [3431] = 437, + [3432] = 438, + [3433] = 3433, + [3434] = 2829, + [3435] = 2836, + [3436] = 3331, + [3437] = 458, + [3438] = 459, + [3439] = 460, + [3440] = 461, + [3441] = 3441, + [3442] = 481, + [3443] = 483, + [3444] = 484, + [3445] = 404, + [3446] = 2889, + [3447] = 2169, + [3448] = 2146, + [3449] = 1963, + [3450] = 2890, + [3451] = 389, + [3452] = 361, + [3453] = 2151, + [3454] = 366, + [3455] = 367, + [3456] = 368, + [3457] = 369, + [3458] = 378, + [3459] = 379, + [3460] = 380, + [3461] = 385, + [3462] = 403, + [3463] = 406, + [3464] = 411, + [3465] = 414, + [3466] = 416, + [3467] = 417, + [3468] = 418, + [3469] = 420, + [3470] = 421, + [3471] = 2889, + [3472] = 423, + [3473] = 2890, + [3474] = 3474, + [3475] = 431, + [3476] = 437, + [3477] = 438, + [3478] = 439, + [3479] = 440, + [3480] = 441, + [3481] = 442, + [3482] = 443, + [3483] = 2121, + [3484] = 2223, + [3485] = 2211, + [3486] = 2211, + [3487] = 2447, + [3488] = 2076, + [3489] = 2071, + [3490] = 2076, + [3491] = 2094, + [3492] = 2071, + [3493] = 2247, + [3494] = 2074, + [3495] = 2083, + [3496] = 2247, + [3497] = 2047, + [3498] = 2086, + [3499] = 2268, + [3500] = 2063, + [3501] = 2247, + [3502] = 1970, + [3503] = 1965, + [3504] = 1968, + [3505] = 2045, + [3506] = 1969, [3507] = 3507, - [3508] = 2895, - [3509] = 1853, - [3510] = 3510, - [3511] = 3511, - [3512] = 2200, - [3513] = 3513, - [3514] = 3514, - [3515] = 3515, - [3516] = 3516, - [3517] = 2193, - [3518] = 2200, - [3519] = 2193, - [3520] = 1859, - [3521] = 3521, - [3522] = 3522, - [3523] = 3523, - [3524] = 1861, + [3508] = 1964, + [3509] = 1966, + [3510] = 1967, + [3511] = 2103, + [3512] = 2101, + [3513] = 2126, + [3514] = 2105, + [3515] = 2102, + [3516] = 3507, + [3517] = 3517, + [3518] = 2213, + [3519] = 2214, + [3520] = 2103, + [3521] = 2101, + [3522] = 2126, + [3523] = 2105, + [3524] = 2102, [3525] = 3525, - [3526] = 3526, - [3527] = 1857, - [3528] = 3528, - [3529] = 2184, - [3530] = 2213, - [3531] = 2476, - [3532] = 3494, - [3533] = 2039, - [3534] = 1966, - [3535] = 3535, - [3536] = 2742, - [3537] = 2420, - [3538] = 1954, - [3539] = 1998, - [3540] = 3540, - [3541] = 3541, - [3542] = 2788, - [3543] = 3543, - [3544] = 2780, - [3545] = 3545, - [3546] = 2913, - [3547] = 2889, - [3548] = 2200, - [3549] = 3503, - [3550] = 2980, - [3551] = 2193, - [3552] = 2439, - [3553] = 1899, - [3554] = 1969, - [3555] = 1858, - [3556] = 2026, - [3557] = 2486, - [3558] = 2156, - [3559] = 1899, - [3560] = 3560, - [3561] = 1963, - [3562] = 3503, - [3563] = 3503, - [3564] = 2701, - [3565] = 3565, - [3566] = 256, - [3567] = 2951, - [3568] = 2960, - [3569] = 2193, - [3570] = 3570, - [3571] = 3571, - [3572] = 3560, - [3573] = 3573, - [3574] = 2929, - [3575] = 2917, - [3576] = 3576, - [3577] = 2420, - [3578] = 3578, - [3579] = 1986, - [3580] = 3580, + [3526] = 2215, + [3527] = 2221, + [3528] = 2222, + [3529] = 2207, + [3530] = 2227, + [3531] = 2228, + [3532] = 2230, + [3533] = 2232, + [3534] = 2233, + [3535] = 2234, + [3536] = 2101, + [3537] = 2208, + [3538] = 2218, + [3539] = 2223, + [3540] = 2075, + [3541] = 2121, + [3542] = 1112, + [3543] = 2192, + [3544] = 2196, + [3545] = 2176, + [3546] = 2184, + [3547] = 2185, + [3548] = 3548, + [3549] = 2189, + [3550] = 2190, + [3551] = 2216, + [3552] = 2209, + [3553] = 1114, + [3554] = 2198, + [3555] = 2200, + [3556] = 2237, + [3557] = 2178, + [3558] = 2183, + [3559] = 2186, + [3560] = 2191, + [3561] = 2202, + [3562] = 2177, + [3563] = 1963, + [3564] = 2217, + [3565] = 2556, + [3566] = 3566, + [3567] = 3567, + [3568] = 2077, + [3569] = 2247, + [3570] = 2194, + [3571] = 2195, + [3572] = 2199, + [3573] = 2201, + [3574] = 2204, + [3575] = 2205, + [3576] = 2538, + [3577] = 2235, + [3578] = 2236, + [3579] = 2126, + [3580] = 2105, [3581] = 3581, - [3582] = 1995, - [3583] = 1987, - [3584] = 1862, - [3585] = 1998, - [3586] = 3503, - [3587] = 1956, - [3588] = 3588, - [3589] = 1008, - [3590] = 3590, - [3591] = 1866, - [3592] = 3511, - [3593] = 1990, - [3594] = 1009, - [3595] = 3595, - [3596] = 2067, - [3597] = 2200, - [3598] = 3598, - [3599] = 2420, - [3600] = 2476, - [3601] = 1995, - [3602] = 2420, - [3603] = 2486, + [3582] = 2219, + [3583] = 2220, + [3584] = 2102, + [3585] = 2121, + [3586] = 2447, + [3587] = 2175, + [3588] = 2239, + [3589] = 2565, + [3590] = 2103, + [3591] = 3507, + [3592] = 3525, + [3593] = 2238, + [3594] = 2083, + [3595] = 3009, + [3596] = 1958, + [3597] = 288, + [3598] = 2291, + [3599] = 3599, + [3600] = 2757, + [3601] = 3601, + [3602] = 2049, + [3603] = 3603, [3604] = 3604, - [3605] = 3605, - [3606] = 2420, - [3607] = 3607, - [3608] = 1954, - [3609] = 3166, - [3610] = 2439, - [3611] = 1855, - [3612] = 2184, - [3613] = 2213, - [3614] = 2039, - [3615] = 1899, - [3616] = 3616, - [3617] = 1990, - [3618] = 3618, - [3619] = 1956, - [3620] = 1901, - [3621] = 2420, - [3622] = 1974, - [3623] = 1994, - [3624] = 2067, - [3625] = 2476, - [3626] = 2022, - [3627] = 1963, - [3628] = 2003, - [3629] = 2004, - [3630] = 2005, - [3631] = 2006, - [3632] = 2007, - [3633] = 1896, - [3634] = 1954, - [3635] = 2214, - [3636] = 1974, - [3637] = 2439, - [3638] = 2003, - [3639] = 2004, - [3640] = 2026, - [3641] = 2005, - [3642] = 2006, - [3643] = 2007, - [3644] = 2002, - [3645] = 2002, - [3646] = 1986, - [3647] = 1899, - [3648] = 3648, - [3649] = 1987, - [3650] = 1998, - [3651] = 1896, - [3652] = 2486, - [3653] = 1901, - [3654] = 2420, + [3605] = 2162, + [3606] = 2049, + [3607] = 1970, + [3608] = 3608, + [3609] = 2075, + [3610] = 2094, + [3611] = 3611, + [3612] = 2114, + [3613] = 2053, + [3614] = 2086, + [3615] = 3085, + [3616] = 3024, + [3617] = 3034, + [3618] = 2556, + [3619] = 3599, + [3620] = 285, + [3621] = 1969, + [3622] = 3622, + [3623] = 2077, + [3624] = 1964, + [3625] = 3625, + [3626] = 3626, + [3627] = 3038, + [3628] = 3628, + [3629] = 2538, + [3630] = 3027, + [3631] = 2309, + [3632] = 2565, + [3633] = 1966, + [3634] = 2291, + [3635] = 1967, + [3636] = 2957, + [3637] = 3637, + [3638] = 3638, + [3639] = 3599, + [3640] = 3640, + [3641] = 3641, + [3642] = 3599, + [3643] = 2447, + [3644] = 2114, + [3645] = 3645, + [3646] = 2309, + [3647] = 3647, + [3648] = 3006, + [3649] = 2291, + [3650] = 3622, + [3651] = 3651, + [3652] = 2955, + [3653] = 2976, + [3654] = 1965, [3655] = 3655, - [3656] = 2420, - [3657] = 2005, - [3658] = 1994, - [3659] = 3571, - [3660] = 3166, - [3661] = 3661, - [3662] = 3662, - [3663] = 3570, - [3664] = 2006, - [3665] = 3665, - [3666] = 3666, - [3667] = 3667, - [3668] = 3668, - [3669] = 2039, - [3670] = 1931, - [3671] = 2009, - [3672] = 2788, + [3656] = 2309, + [3657] = 3657, + [3658] = 2291, + [3659] = 2006, + [3660] = 1968, + [3661] = 3599, + [3662] = 2960, + [3663] = 2090, + [3664] = 3664, + [3665] = 2317, + [3666] = 2318, + [3667] = 2762, + [3668] = 1112, + [3669] = 3669, + [3670] = 2983, + [3671] = 3671, + [3672] = 3004, [3673] = 3673, - [3674] = 2742, + [3674] = 3674, [3675] = 3675, - [3676] = 3571, - [3677] = 3677, + [3676] = 2147, + [3677] = 2851, [3678] = 3678, - [3679] = 2039, - [3680] = 3680, - [3681] = 1968, - [3682] = 2026, - [3683] = 1965, - [3684] = 3684, + [3679] = 3679, + [3680] = 3002, + [3681] = 3681, + [3682] = 2268, + [3683] = 1114, + [3684] = 2073, [3685] = 3685, - [3686] = 3662, - [3687] = 2001, - [3688] = 1954, - [3689] = 3689, - [3690] = 1972, - [3691] = 2007, - [3692] = 3570, - [3693] = 2004, - [3694] = 2001, - [3695] = 3695, + [3686] = 3686, + [3687] = 3687, + [3688] = 3688, + [3689] = 3657, + [3690] = 3690, + [3691] = 2006, + [3692] = 2309, + [3693] = 3693, + [3694] = 3694, + [3695] = 3599, [3696] = 3696, - [3697] = 1965, + [3697] = 2799, [3698] = 3698, - [3699] = 3570, - [3700] = 3571, - [3701] = 3662, - [3702] = 3702, - [3703] = 2012, - [3704] = 2780, - [3705] = 2214, - [3706] = 3706, - [3707] = 2002, - [3708] = 2701, - [3709] = 1965, - [3710] = 1972, - [3711] = 3711, - [3712] = 2067, - [3713] = 2009, - [3714] = 1972, - [3715] = 1918, - [3716] = 1931, - [3717] = 3717, - [3718] = 2022, - [3719] = 1918, - [3720] = 2003, - [3721] = 2780, - [3722] = 3722, - [3723] = 3723, - [3724] = 3166, - [3725] = 2053, - [3726] = 2047, - [3727] = 3727, - [3728] = 2033, - [3729] = 3729, - [3730] = 2046, - [3731] = 2055, - [3732] = 2035, - [3733] = 2476, - [3734] = 1899, - [3735] = 2701, - [3736] = 1942, - [3737] = 3737, + [3699] = 2170, + [3700] = 3674, + [3701] = 2447, + [3702] = 3068, + [3703] = 3703, + [3704] = 2121, + [3705] = 3705, + [3706] = 2538, + [3707] = 2556, + [3708] = 2001, + [3709] = 3709, + [3710] = 3710, + [3711] = 2170, + [3712] = 2323, + [3713] = 2447, + [3714] = 2103, + [3715] = 2101, + [3716] = 2126, + [3717] = 2105, + [3718] = 2102, + [3719] = 2049, + [3720] = 2103, + [3721] = 2101, + [3722] = 2126, + [3723] = 2105, + [3724] = 2102, + [3725] = 2121, + [3726] = 2447, + [3727] = 2538, + [3728] = 2147, + [3729] = 2078, + [3730] = 2565, + [3731] = 2001, + [3732] = 3732, + [3733] = 2053, + [3734] = 3734, + [3735] = 2090, + [3736] = 2016, + [3737] = 2016, [3738] = 3738, - [3739] = 2036, - [3740] = 3740, - [3741] = 3741, - [3742] = 3742, - [3743] = 2035, - [3744] = 3744, - [3745] = 3745, - [3746] = 2034, - [3747] = 2077, - [3748] = 3748, - [3749] = 3749, - [3750] = 3750, - [3751] = 2788, - [3752] = 2742, - [3753] = 3753, - [3754] = 3754, - [3755] = 3755, - [3756] = 3756, + [3739] = 2086, + [3740] = 1963, + [3741] = 3331, + [3742] = 2078, + [3743] = 2083, + [3744] = 2049, + [3745] = 2447, + [3746] = 2006, + [3747] = 2087, + [3748] = 2094, + [3749] = 2447, + [3750] = 2112, + [3751] = 2556, + [3752] = 2114, + [3753] = 2162, + [3754] = 2006, + [3755] = 2317, + [3756] = 2318, [3757] = 3757, - [3758] = 3758, - [3759] = 3759, - [3760] = 3760, - [3761] = 3761, - [3762] = 2047, - [3763] = 3560, - [3764] = 2090, - [3765] = 3765, - [3766] = 3766, - [3767] = 3738, + [3758] = 2447, + [3759] = 2073, + [3760] = 2565, + [3761] = 2447, + [3762] = 2076, + [3763] = 3763, + [3764] = 2162, + [3765] = 2071, + [3766] = 2037, + [3767] = 2119, [3768] = 3768, - [3769] = 2780, - [3770] = 3770, - [3771] = 2066, - [3772] = 1941, - [3773] = 3560, - [3774] = 2033, - [3775] = 3775, - [3776] = 3776, - [3777] = 3777, - [3778] = 2036, - [3779] = 3711, + [3769] = 3769, + [3770] = 2076, + [3771] = 2074, + [3772] = 3772, + [3773] = 2071, + [3774] = 2103, + [3775] = 2101, + [3776] = 2126, + [3777] = 2105, + [3778] = 2102, + [3779] = 3779, [3780] = 3780, [3781] = 3781, [3782] = 3782, - [3783] = 3783, - [3784] = 3784, - [3785] = 1942, - [3786] = 3786, - [3787] = 2046, - [3788] = 2109, - [3789] = 3789, - [3790] = 3790, + [3783] = 3331, + [3784] = 2026, + [3785] = 3785, + [3786] = 2026, + [3787] = 3685, + [3788] = 3685, + [3789] = 3686, + [3790] = 2147, [3791] = 3791, - [3792] = 2788, - [3793] = 2043, + [3792] = 3792, + [3793] = 2119, [3794] = 3794, - [3795] = 2043, - [3796] = 3796, - [3797] = 2034, - [3798] = 2486, - [3799] = 3744, - [3800] = 2439, - [3801] = 2098, - [3802] = 3166, - [3803] = 3803, - [3804] = 3738, - [3805] = 2701, - [3806] = 3806, - [3807] = 3560, - [3808] = 3808, + [3795] = 3795, + [3796] = 2118, + [3797] = 2108, + [3798] = 3798, + [3799] = 2071, + [3800] = 2049, + [3801] = 2121, + [3802] = 2162, + [3803] = 2112, + [3804] = 3804, + [3805] = 3805, + [3806] = 2851, + [3807] = 2762, + [3808] = 2170, [3809] = 3809, - [3810] = 3740, - [3811] = 3811, - [3812] = 3790, - [3813] = 3744, + [3810] = 3686, + [3811] = 2757, + [3812] = 2799, + [3813] = 3779, [3814] = 3814, [3815] = 3815, - [3816] = 2053, + [3816] = 3779, [3817] = 3817, - [3818] = 2042, - [3819] = 3819, - [3820] = 3740, - [3821] = 3821, - [3822] = 2048, - [3823] = 3823, - [3824] = 3824, - [3825] = 3825, - [3826] = 2071, + [3818] = 2118, + [3819] = 2087, + [3820] = 3820, + [3821] = 2323, + [3822] = 3685, + [3823] = 2037, + [3824] = 2076, + [3825] = 3686, + [3826] = 3826, [3827] = 3827, - [3828] = 3738, - [3829] = 3829, - [3830] = 3830, - [3831] = 3790, - [3832] = 2042, - [3833] = 2055, - [3834] = 2048, - [3835] = 2069, - [3836] = 2742, - [3837] = 2069, - [3838] = 3744, - [3839] = 3839, - [3840] = 1941, + [3828] = 3828, + [3829] = 2161, + [3830] = 2161, + [3831] = 3763, + [3832] = 2136, + [3833] = 3833, + [3834] = 3674, + [3835] = 2139, + [3836] = 2165, + [3837] = 3837, + [3838] = 2762, + [3839] = 2139, + [3840] = 3840, [3841] = 3841, - [3842] = 3740, - [3843] = 2093, + [3842] = 2137, + [3843] = 3331, [3844] = 3844, - [3845] = 3790, - [3846] = 3846, + [3845] = 3845, + [3846] = 2229, [3847] = 3847, [3848] = 3848, [3849] = 3849, - [3850] = 2788, - [3851] = 1966, - [3852] = 1969, - [3853] = 1943, - [3854] = 2049, - [3855] = 1961, - [3856] = 1958, - [3857] = 2002, - [3858] = 1966, - [3859] = 3711, - [3860] = 2022, - [3861] = 3861, - [3862] = 1928, - [3863] = 2166, - [3864] = 1969, - [3865] = 2166, - [3866] = 2780, - [3867] = 1959, - [3868] = 2701, - [3869] = 2742, - [3870] = 2780, - [3871] = 3741, - [3872] = 3742, - [3873] = 1959, - [3874] = 1942, - [3875] = 1941, - [3876] = 3749, - [3877] = 3757, - [3878] = 3782, - [3879] = 3789, - [3880] = 2780, - [3881] = 2788, - [3882] = 2701, - [3883] = 2742, - [3884] = 1942, - [3885] = 1941, - [3886] = 2166, - [3887] = 2063, - [3888] = 2166, - [3889] = 2166, - [3890] = 2788, - [3891] = 2003, - [3892] = 2004, - [3893] = 1954, - [3894] = 2166, - [3895] = 1943, - [3896] = 2005, - [3897] = 2006, - [3898] = 2701, - [3899] = 3560, - [3900] = 3776, - [3901] = 1961, - [3902] = 3902, - [3903] = 2007, - [3904] = 1966, - [3905] = 1958, - [3906] = 2742, - [3907] = 2126, - [3908] = 2754, - [3909] = 1928, - [3910] = 1969, - [3911] = 2012, - [3912] = 2156, - [3913] = 2123, - [3914] = 2124, + [3850] = 3850, + [3851] = 3851, + [3852] = 3852, + [3853] = 3853, + [3854] = 3854, + [3855] = 2140, + [3856] = 3856, + [3857] = 3857, + [3858] = 2565, + [3859] = 3859, + [3860] = 2006, + [3861] = 2181, + [3862] = 2171, + [3863] = 2172, + [3864] = 3864, + [3865] = 2144, + [3866] = 3866, + [3867] = 2851, + [3868] = 2762, + [3869] = 3869, + [3870] = 2146, + [3871] = 2757, + [3872] = 2799, + [3873] = 2134, + [3874] = 3874, + [3875] = 3875, + [3876] = 3876, + [3877] = 2047, + [3878] = 3878, + [3879] = 2556, + [3880] = 3880, + [3881] = 3881, + [3882] = 3882, + [3883] = 3880, + [3884] = 2134, + [3885] = 2197, + [3886] = 2045, + [3887] = 3887, + [3888] = 3888, + [3889] = 3889, + [3890] = 3890, + [3891] = 3891, + [3892] = 3892, + [3893] = 3331, + [3894] = 3894, + [3895] = 3895, + [3896] = 3896, + [3897] = 2538, + [3898] = 3898, + [3899] = 3899, + [3900] = 3900, + [3901] = 2171, + [3902] = 2225, + [3903] = 3903, + [3904] = 3891, + [3905] = 2172, + [3906] = 3906, + [3907] = 3907, + [3908] = 3908, + [3909] = 3674, + [3910] = 3910, + [3911] = 3911, + [3912] = 3912, + [3913] = 3913, + [3914] = 3895, [3915] = 3915, - [3916] = 2128, - [3917] = 2130, - [3918] = 2003, - [3919] = 2004, - [3920] = 3920, - [3921] = 2002, - [3922] = 2132, - [3923] = 2072, - [3924] = 2075, - [3925] = 2083, - [3926] = 2087, - [3927] = 2184, - [3928] = 2213, - [3929] = 2005, - [3930] = 2006, - [3931] = 2088, - [3932] = 3932, - [3933] = 2122, - [3934] = 2125, - [3935] = 2007, - [3936] = 3936, - [3937] = 2184, - [3938] = 2780, - [3939] = 2466, - [3940] = 2788, - [3941] = 2102, - [3942] = 2103, - [3943] = 2104, - [3944] = 2701, - [3945] = 2742, - [3946] = 2108, - [3947] = 2082, - [3948] = 2110, - [3949] = 2111, - [3950] = 2112, - [3951] = 2114, - [3952] = 2117, - [3953] = 2118, - [3954] = 1899, - [3955] = 2193, - [3956] = 2086, - [3957] = 2200, - [3958] = 2120, - [3959] = 2193, - [3960] = 2121, - [3961] = 2200, - [3962] = 2193, - [3963] = 2101, - [3964] = 2200, - [3965] = 1963, - [3966] = 1855, - [3967] = 2134, - [3968] = 1995, - [3969] = 2193, - [3970] = 2754, - [3971] = 2200, - [3972] = 2428, - [3973] = 2073, - [3974] = 2074, - [3975] = 2039, - [3976] = 2066, - [3977] = 2476, - [3978] = 2780, - [3979] = 2788, - [3980] = 2465, - [3981] = 1986, - [3982] = 1987, - [3983] = 3560, - [3984] = 3560, - [3985] = 2428, - [3986] = 2465, - [3987] = 2466, - [3988] = 2039, - [3989] = 1990, - [3990] = 3570, - [3991] = 3571, - [3992] = 2097, - [3993] = 2465, - [3994] = 2193, - [3995] = 2079, - [3996] = 2200, - [3997] = 2701, - [3998] = 2213, - [3999] = 2214, - [4000] = 1995, - [4001] = 3711, - [4002] = 2839, - [4003] = 2799, - [4004] = 2486, - [4005] = 1954, - [4006] = 2080, - [4007] = 2742, - [4008] = 1968, - [4009] = 2193, - [4010] = 2084, - [4011] = 2200, - [4012] = 2085, - [4013] = 2039, - [4014] = 2107, - [4015] = 2439, - [4016] = 2428, - [4017] = 2465, - [4018] = 2466, - [4019] = 2754, - [4020] = 2184, - [4021] = 2213, - [4022] = 2466, - [4023] = 2091, - [4024] = 2092, - [4025] = 2094, - [4026] = 1866, - [4027] = 1857, - [4028] = 1858, - [4029] = 1859, - [4030] = 2095, - [4031] = 2184, - [4032] = 2213, - [4033] = 1860, - [4034] = 1861, - [4035] = 1931, - [4036] = 1862, - [4037] = 3166, - [4038] = 2099, - [4039] = 2428, - [4040] = 2100, - [4041] = 2070, - [4042] = 2089, - [4043] = 2078, - [4044] = 3790, - [4045] = 2067, - [4046] = 2780, - [4047] = 2788, - [4048] = 1994, - [4049] = 2742, - [4050] = 1942, - [4051] = 1941, - [4052] = 4052, - [4053] = 1866, - [4054] = 1857, - [4055] = 1858, - [4056] = 1859, - [4057] = 1860, - [4058] = 1861, - [4059] = 1862, - [4060] = 3711, - [4061] = 2122, - [4062] = 2125, - [4063] = 1990, - [4064] = 2870, - [4065] = 2871, - [4066] = 379, - [4067] = 1954, - [4068] = 4068, - [4069] = 2882, - [4070] = 4070, - [4071] = 386, - [4072] = 1954, - [4073] = 4073, - [4074] = 4070, - [4075] = 2128, - [4076] = 2130, - [4077] = 4068, - [4078] = 2839, - [4079] = 2799, - [4080] = 2126, - [4081] = 4081, - [4082] = 1986, - [4083] = 4083, - [4084] = 4084, - [4085] = 4085, - [4086] = 4086, - [4087] = 4087, - [4088] = 2132, - [4089] = 4089, - [4090] = 4090, - [4091] = 2072, - [4092] = 4092, - [4093] = 2075, - [4094] = 2083, - [4095] = 2087, - [4096] = 2123, - [4097] = 4097, - [4098] = 4073, - [4099] = 4070, - [4100] = 4100, - [4101] = 4068, - [4102] = 3560, - [4103] = 4073, - [4104] = 4070, - [4105] = 4068, - [4106] = 1987, - [4107] = 1995, - [4108] = 4108, - [4109] = 1974, - [4110] = 4073, - [4111] = 4070, - [4112] = 4068, - [4113] = 4073, - [4114] = 4070, - [4115] = 4068, - [4116] = 2088, - [4117] = 4070, - [4118] = 4068, - [4119] = 4070, - [4120] = 4068, - [4121] = 2124, - [4122] = 2883, - [4123] = 4073, - [4124] = 2022, - [4125] = 3711, - [4126] = 4126, - [4127] = 4108, - [4128] = 4073, - [4129] = 4126, - [4130] = 2923, - [4131] = 3711, - [4132] = 2924, - [4133] = 3738, - [4134] = 3790, - [4135] = 3744, - [4136] = 3740, - [4137] = 1998, - [4138] = 3738, - [4139] = 2026, - [4140] = 3744, - [4141] = 3740, - [4142] = 4083, - [4143] = 4084, - [4144] = 4085, - [4145] = 4086, - [4146] = 4087, - [4147] = 4089, - [4148] = 4090, - [4149] = 4092, - [4150] = 4126, - [4151] = 1998, - [4152] = 4108, - [4153] = 4073, - [4154] = 4126, - [4155] = 4108, - [4156] = 4108, - [4157] = 4108, - [4158] = 4108, - [4159] = 4108, - [4160] = 2839, - [4161] = 2799, + [3916] = 2129, + [3917] = 2158, + [3918] = 3880, + [3919] = 3891, + [3920] = 3895, + [3921] = 3896, + [3922] = 3880, + [3923] = 3891, + [3924] = 3895, + [3925] = 3896, + [3926] = 3926, + [3927] = 2136, + [3928] = 3928, + [3929] = 3896, + [3930] = 3930, + [3931] = 3931, + [3932] = 3674, + [3933] = 3933, + [3934] = 2129, + [3935] = 2158, + [3936] = 2140, + [3937] = 3937, + [3938] = 3938, + [3939] = 3939, + [3940] = 2757, + [3941] = 3941, + [3942] = 2144, + [3943] = 3943, + [3944] = 3944, + [3945] = 2047, + [3946] = 2137, + [3947] = 2045, + [3948] = 2193, + [3949] = 2851, + [3950] = 3950, + [3951] = 3951, + [3952] = 2799, + [3953] = 2226, + [3954] = 2165, + [3955] = 2045, + [3956] = 2126, + [3957] = 3848, + [3958] = 2757, + [3959] = 2102, + [3960] = 2049, + [3961] = 3961, + [3962] = 2105, + [3963] = 2077, + [3964] = 2799, + [3965] = 2028, + [3966] = 2075, + [3967] = 2169, + [3968] = 3763, + [3969] = 2126, + [3970] = 2028, + [3971] = 2077, + [3972] = 3851, + [3973] = 2121, + [3974] = 2207, + [3975] = 3853, + [3976] = 2247, + [3977] = 2054, + [3978] = 2054, + [3979] = 3979, + [3980] = 2247, + [3981] = 2103, + [3982] = 2799, + [3983] = 2112, + [3984] = 2108, + [3985] = 2101, + [3986] = 2102, + [3987] = 2077, + [3988] = 2058, + [3989] = 2063, + [3990] = 2757, + [3991] = 2047, + [3992] = 2803, + [3993] = 2851, + [3994] = 2045, + [3995] = 2048, + [3996] = 3850, + [3997] = 2317, + [3998] = 2318, + [3999] = 2220, + [4000] = 2151, + [4001] = 2762, + [4002] = 3674, + [4003] = 2851, + [4004] = 2762, + [4005] = 2247, + [4006] = 4006, + [4007] = 2851, + [4008] = 2268, + [4009] = 2058, + [4010] = 2208, + [4011] = 2762, + [4012] = 2218, + [4013] = 2063, + [4014] = 2048, + [4015] = 2209, + [4016] = 3856, + [4017] = 4017, + [4018] = 3852, + [4019] = 2175, + [4020] = 2757, + [4021] = 2239, + [4022] = 2103, + [4023] = 2101, + [4024] = 4024, + [4025] = 2799, + [4026] = 2047, + [4027] = 3931, + [4028] = 2105, + [4029] = 2075, + [4030] = 2219, + [4031] = 4031, + [4032] = 2075, + [4033] = 2121, + [4034] = 2247, + [4035] = 2213, + [4036] = 2214, + [4037] = 2215, + [4038] = 2216, + [4039] = 2217, + [4040] = 2247, + [4041] = 2247, + [4042] = 2309, + [4043] = 2073, + [4044] = 2309, + [4045] = 1963, + [4046] = 2529, + [4047] = 2537, + [4048] = 2202, + [4049] = 2541, + [4050] = 2538, + [4051] = 2317, + [4052] = 2318, + [4053] = 2317, + [4054] = 2090, + [4055] = 2194, + [4056] = 2195, + [4057] = 2227, + [4058] = 2323, + [4059] = 2196, + [4060] = 2228, + [4061] = 2902, + [4062] = 2757, + [4063] = 2803, + [4064] = 2222, + [4065] = 2037, + [4066] = 2198, + [4067] = 2309, + [4068] = 2199, + [4069] = 2309, + [4070] = 1970, + [4071] = 2851, + [4072] = 2074, + [4073] = 2177, + [4074] = 2309, + [4075] = 2317, + [4076] = 2318, + [4077] = 2178, + [4078] = 2201, + [4079] = 2762, + [4080] = 2086, + [4081] = 2799, + [4082] = 2189, + [4083] = 2291, + [4084] = 2204, + [4085] = 2291, + [4086] = 2529, + [4087] = 2291, + [4088] = 2049, + [4089] = 2192, + [4090] = 3674, + [4091] = 2541, + [4092] = 1965, + [4093] = 2205, + [4094] = 2291, + [4095] = 2200, + [4096] = 2162, + [4097] = 2162, + [4098] = 2185, + [4099] = 2537, + [4100] = 1968, + [4101] = 1969, + [4102] = 2529, + [4103] = 2537, + [4104] = 2757, + [4105] = 2565, + [4106] = 2230, + [4107] = 2232, + [4108] = 2233, + [4109] = 2006, + [4110] = 3674, + [4111] = 2176, + [4112] = 2541, + [4113] = 1964, + [4114] = 1966, + [4115] = 2235, + [4116] = 2234, + [4117] = 1967, + [4118] = 2162, + [4119] = 2221, + [4120] = 3763, + [4121] = 2238, + [4122] = 2236, + [4123] = 2094, + [4124] = 2903, + [4125] = 2183, + [4126] = 3685, + [4127] = 2083, + [4128] = 2184, + [4129] = 3686, + [4130] = 2090, + [4131] = 2190, + [4132] = 2186, + [4133] = 3331, + [4134] = 2803, + [4135] = 2529, + [4136] = 2318, + [4137] = 2799, + [4138] = 2291, + [4139] = 2537, + [4140] = 2556, + [4141] = 2191, + [4142] = 2851, + [4143] = 2541, + [4144] = 2309, + [4145] = 2762, + [4146] = 2291, + [4147] = 2237, + [4148] = 2146, + [4149] = 4149, + [4150] = 2170, + [4151] = 4151, + [4152] = 4152, + [4153] = 4153, + [4154] = 2112, + [4155] = 2207, + [4156] = 328, + [4157] = 4157, + [4158] = 3000, + [4159] = 4159, + [4160] = 4160, + [4161] = 2903, [4162] = 4162, - [4163] = 2022, - [4164] = 1956, - [4165] = 1931, - [4166] = 3711, - [4167] = 2701, - [4168] = 1968, - [4169] = 3740, - [4170] = 2067, - [4171] = 2870, - [4172] = 2214, - [4173] = 2871, - [4174] = 2882, - [4175] = 2701, - [4176] = 2156, - [4177] = 1968, - [4178] = 2754, - [4179] = 1941, - [4180] = 2009, - [4181] = 1964, - [4182] = 2742, - [4183] = 2214, - [4184] = 1968, - [4185] = 3790, - [4186] = 2883, - [4187] = 3738, - [4188] = 2780, - [4189] = 2026, - [4190] = 3744, - [4191] = 1975, - [4192] = 1975, - [4193] = 1974, - [4194] = 3740, - [4195] = 2923, - [4196] = 2924, - [4197] = 2214, - [4198] = 3790, - [4199] = 2883, - [4200] = 1959, - [4201] = 4201, - [4202] = 2788, - [4203] = 1995, - [4204] = 2001, - [4205] = 3560, - [4206] = 1954, - [4207] = 3744, - [4208] = 2923, - [4209] = 2924, - [4210] = 3560, - [4211] = 1956, - [4212] = 3738, - [4213] = 2870, - [4214] = 2871, - [4215] = 2882, - [4216] = 2001, - [4217] = 2009, - [4218] = 1964, - [4219] = 4219, - [4220] = 2864, - [4221] = 1972, - [4222] = 2864, - [4223] = 2701, - [4224] = 3738, - [4225] = 3738, - [4226] = 3738, - [4227] = 3790, - [4228] = 1959, - [4229] = 3740, - [4230] = 2959, - [4231] = 1941, - [4232] = 2867, - [4233] = 3744, - [4234] = 1841, - [4235] = 2035, - [4236] = 3740, - [4237] = 2872, - [4238] = 1942, - [4239] = 2780, - [4240] = 3738, - [4241] = 2911, - [4242] = 3790, - [4243] = 1841, - [4244] = 2839, - [4245] = 3790, - [4246] = 3744, - [4247] = 2799, - [4248] = 3560, - [4249] = 3740, - [4250] = 2033, - [4251] = 2043, - [4252] = 2063, - [4253] = 3790, - [4254] = 2034, - [4255] = 2046, - [4256] = 1969, - [4257] = 2069, - [4258] = 4258, - [4259] = 2867, - [4260] = 2047, - [4261] = 2053, - [4262] = 2788, - [4263] = 2055, - [4264] = 2872, - [4265] = 3744, - [4266] = 2048, - [4267] = 3740, - [4268] = 3711, - [4269] = 2754, - [4270] = 1965, - [4271] = 2213, - [4272] = 3560, - [4273] = 2911, - [4274] = 2959, - [4275] = 2049, - [4276] = 2042, - [4277] = 2069, - [4278] = 2184, - [4279] = 2033, - [4280] = 2034, - [4281] = 2042, - [4282] = 2035, - [4283] = 2036, - [4284] = 2043, - [4285] = 2036, - [4286] = 2046, - [4287] = 2047, - [4288] = 2048, - [4289] = 2053, - [4290] = 2055, - [4291] = 2742, - [4292] = 3744, - [4293] = 4086, - [4294] = 2213, - [4295] = 2114, - [4296] = 2864, - [4297] = 1860, - [4298] = 2117, - [4299] = 1861, - [4300] = 1862, - [4301] = 2118, - [4302] = 4302, - [4303] = 2864, - [4304] = 4302, - [4305] = 2911, - [4306] = 2086, - [4307] = 4092, - [4308] = 2959, - [4309] = 2867, - [4310] = 2911, - [4311] = 2872, - [4312] = 4312, - [4313] = 4313, - [4314] = 4314, - [4315] = 2101, - [4316] = 2090, - [4317] = 2091, - [4318] = 2120, - [4319] = 4319, - [4320] = 4320, - [4321] = 4321, - [4322] = 2121, - [4323] = 2092, - [4324] = 4302, - [4325] = 2959, - [4326] = 2959, - [4327] = 2867, - [4328] = 3129, - [4329] = 2093, - [4330] = 4313, - [4331] = 4314, - [4332] = 2094, - [4333] = 4083, - [4334] = 2095, - [4335] = 4084, - [4336] = 4085, - [4337] = 4086, - [4338] = 4087, - [4339] = 4089, - [4340] = 4090, - [4341] = 4092, - [4342] = 4302, - [4343] = 2098, - [4344] = 2099, - [4345] = 2100, - [4346] = 4313, - [4347] = 4314, - [4348] = 4302, - [4349] = 2872, - [4350] = 1954, - [4351] = 2102, - [4352] = 4313, - [4353] = 4314, - [4354] = 2867, - [4355] = 2009, - [4356] = 2103, - [4357] = 4302, - [4358] = 2104, - [4359] = 4313, - [4360] = 4314, - [4361] = 4084, - [4362] = 4085, - [4363] = 3141, - [4364] = 2071, - [4365] = 3105, - [4366] = 2923, - [4367] = 2924, - [4368] = 1866, - [4369] = 4302, - [4370] = 4314, - [4371] = 2213, - [4372] = 2839, - [4373] = 2073, - [4374] = 2799, - [4375] = 2074, - [4376] = 2082, - [4377] = 2872, - [4378] = 2864, - [4379] = 4313, - [4380] = 4087, - [4381] = 3122, - [4382] = 4089, - [4383] = 2870, - [4384] = 2871, - [4385] = 2077, - [4386] = 4313, - [4387] = 4314, - [4388] = 1857, - [4389] = 1858, - [4390] = 1859, - [4391] = 4391, - [4392] = 4392, - [4393] = 4393, - [4394] = 2078, - [4395] = 2097, - [4396] = 2079, - [4397] = 4086, - [4398] = 2109, - [4399] = 2080, - [4400] = 2134, - [4401] = 2070, - [4402] = 2089, - [4403] = 4083, - [4404] = 2084, - [4405] = 2882, - [4406] = 2085, - [4407] = 2110, - [4408] = 2107, - [4409] = 2864, - [4410] = 2911, - [4411] = 2108, - [4412] = 2959, - [4413] = 2184, - [4414] = 2867, - [4415] = 1959, - [4416] = 4083, - [4417] = 4084, - [4418] = 4085, - [4419] = 2872, - [4420] = 4087, - [4421] = 4089, - [4422] = 4090, - [4423] = 4092, - [4424] = 2911, - [4425] = 2184, - [4426] = 2022, - [4427] = 4090, - [4428] = 2111, - [4429] = 2883, - [4430] = 2112, - [4431] = 4431, - [4432] = 4432, - [4433] = 4433, - [4434] = 4434, - [4435] = 4435, - [4436] = 4436, - [4437] = 4437, - [4438] = 4438, - [4439] = 4439, - [4440] = 4440, - [4441] = 4441, - [4442] = 4442, - [4443] = 4443, - [4444] = 2001, - [4445] = 3122, - [4446] = 2466, - [4447] = 4083, - [4448] = 3790, - [4449] = 2126, - [4450] = 4084, - [4451] = 4085, - [4452] = 4086, - [4453] = 4453, - [4454] = 4453, - [4455] = 3248, - [4456] = 4453, - [4457] = 3740, - [4458] = 4087, - [4459] = 2466, - [4460] = 3223, - [4461] = 4453, - [4462] = 4453, - [4463] = 2428, - [4464] = 2465, - [4465] = 4089, - [4466] = 2066, - [4467] = 2466, - [4468] = 2012, - [4469] = 4469, - [4470] = 2870, - [4471] = 4090, - [4472] = 2466, - [4473] = 2923, - [4474] = 4469, - [4475] = 2924, - [4476] = 4092, - [4477] = 2066, - [4478] = 4478, - [4479] = 2129, - [4480] = 3141, - [4481] = 2428, - [4482] = 2871, - [4483] = 2428, - [4484] = 2882, - [4485] = 3105, - [4486] = 1841, - [4487] = 2465, + [4163] = 4163, + [4164] = 2851, + [4165] = 4165, + [4166] = 4166, + [4167] = 3018, + [4168] = 2762, + [4169] = 4169, + [4170] = 4153, + [4171] = 3065, + [4172] = 4172, + [4173] = 4173, + [4174] = 2757, + [4175] = 2799, + [4176] = 4151, + [4177] = 4177, + [4178] = 2902, + [4179] = 2903, + [4180] = 3674, + [4181] = 4172, + [4182] = 4153, + [4183] = 2047, + [4184] = 4172, + [4185] = 4151, + [4186] = 2218, + [4187] = 2045, + [4188] = 4151, + [4189] = 1970, + [4190] = 4153, + [4191] = 1965, + [4192] = 1968, + [4193] = 1969, + [4194] = 4172, + [4195] = 4151, + [4196] = 1964, + [4197] = 1966, + [4198] = 1967, + [4199] = 4153, + [4200] = 2078, + [4201] = 4172, + [4202] = 4151, + [4203] = 2147, + [4204] = 2087, + [4205] = 3763, + [4206] = 2219, + [4207] = 4172, + [4208] = 4151, + [4209] = 4209, + [4210] = 4172, + [4211] = 4211, + [4212] = 4151, + [4213] = 2220, + [4214] = 2090, + [4215] = 2094, + [4216] = 2175, + [4217] = 2083, + [4218] = 2114, + [4219] = 2053, + [4220] = 2239, + [4221] = 4209, + [4222] = 2086, + [4223] = 4152, + [4224] = 4153, + [4225] = 2208, + [4226] = 326, + [4227] = 3763, + [4228] = 2037, + [4229] = 4229, + [4230] = 3880, + [4231] = 3891, + [4232] = 3895, + [4233] = 3896, + [4234] = 3880, + [4235] = 3891, + [4236] = 3895, + [4237] = 3896, + [4238] = 4157, + [4239] = 4159, + [4240] = 4160, + [4241] = 4149, + [4242] = 4162, + [4243] = 4163, + [4244] = 4165, + [4245] = 4166, + [4246] = 4209, + [4247] = 2213, + [4248] = 2214, + [4249] = 4152, + [4250] = 4153, + [4251] = 2902, + [4252] = 4209, + [4253] = 2215, + [4254] = 2956, + [4255] = 4152, + [4256] = 4152, + [4257] = 3079, + [4258] = 4152, + [4259] = 4152, + [4260] = 2958, + [4261] = 4152, + [4262] = 2112, + [4263] = 2049, + [4264] = 3763, + [4265] = 2216, + [4266] = 2217, + [4267] = 2114, + [4268] = 4153, + [4269] = 3763, + [4270] = 2209, + [4271] = 4172, + [4272] = 2049, + [4273] = 2074, + [4274] = 2851, + [4275] = 3674, + [4276] = 2956, + [4277] = 2757, + [4278] = 4278, + [4279] = 2049, + [4280] = 3674, + [4281] = 2956, + [4282] = 2958, + [4283] = 3000, + [4284] = 3018, + [4285] = 2958, + [4286] = 2078, + [4287] = 3079, + [4288] = 2074, + [4289] = 2803, + [4290] = 3065, + [4291] = 2118, + [4292] = 3891, + [4293] = 2799, + [4294] = 2074, + [4295] = 3880, + [4296] = 2147, + [4297] = 2323, + [4298] = 3891, + [4299] = 3895, + [4300] = 3895, + [4301] = 3896, + [4302] = 2762, + [4303] = 2323, + [4304] = 3000, + [4305] = 2170, + [4306] = 2323, + [4307] = 3018, + [4308] = 2268, + [4309] = 2082, + [4310] = 2070, + [4311] = 3880, + [4312] = 3896, + [4313] = 2053, + [4314] = 3079, + [4315] = 2045, + [4316] = 2119, + [4317] = 3065, + [4318] = 2090, + [4319] = 2119, + [4320] = 2118, + [4321] = 2082, + [4322] = 2070, + [4323] = 2063, + [4324] = 2134, + [4325] = 2803, + [4326] = 3896, + [4327] = 2318, + [4328] = 2136, + [4329] = 2994, + [4330] = 1946, + [4331] = 3896, + [4332] = 2762, + [4333] = 2047, + [4334] = 1946, + [4335] = 2139, + [4336] = 4336, + [4337] = 2063, + [4338] = 2799, + [4339] = 3071, + [4340] = 2161, + [4341] = 3763, + [4342] = 2140, + [4343] = 2144, + [4344] = 2077, + [4345] = 3029, + [4346] = 3880, + [4347] = 3029, + [4348] = 3674, + [4349] = 2973, + [4350] = 2172, + [4351] = 2165, + [4352] = 2977, + [4353] = 3891, + [4354] = 3895, + [4355] = 3891, + [4356] = 3896, + [4357] = 3880, + [4358] = 2171, + [4359] = 2134, + [4360] = 2045, + [4361] = 3895, + [4362] = 2757, + [4363] = 3880, + [4364] = 3895, + [4365] = 2973, + [4366] = 3891, + [4367] = 3895, + [4368] = 2317, + [4369] = 3896, + [4370] = 2137, + [4371] = 2902, + [4372] = 2977, + [4373] = 2169, + [4374] = 4374, + [4375] = 3880, + [4376] = 2129, + [4377] = 2158, + [4378] = 2151, + [4379] = 2171, + [4380] = 2172, + [4381] = 2903, + [4382] = 2137, + [4383] = 3071, + [4384] = 2129, + [4385] = 2158, + [4386] = 2136, + [4387] = 2076, + [4388] = 2139, + [4389] = 2140, + [4390] = 2144, + [4391] = 2161, + [4392] = 2165, + [4393] = 2851, + [4394] = 3891, + [4395] = 2071, + [4396] = 3674, + [4397] = 2994, + [4398] = 2236, + [4399] = 4399, + [4400] = 4400, + [4401] = 4401, + [4402] = 4402, + [4403] = 4403, + [4404] = 4404, + [4405] = 2195, + [4406] = 4406, + [4407] = 4407, + [4408] = 1964, + [4409] = 1966, + [4410] = 1967, + [4411] = 4411, + [4412] = 4412, + [4413] = 4413, + [4414] = 4414, + [4415] = 4415, + [4416] = 2199, + [4417] = 2197, + [4418] = 4418, + [4419] = 4419, + [4420] = 2201, + [4421] = 4421, + [4422] = 2994, + [4423] = 2204, + [4424] = 2205, + [4425] = 4166, + [4426] = 2221, + [4427] = 2198, + [4428] = 4399, + [4429] = 2200, + [4430] = 2222, + [4431] = 4157, + [4432] = 3071, + [4433] = 2235, + [4434] = 4415, + [4435] = 4415, + [4436] = 4418, + [4437] = 4159, + [4438] = 4160, + [4439] = 4399, + [4440] = 3029, + [4441] = 3079, + [4442] = 4399, + [4443] = 2973, + [4444] = 2317, + [4445] = 2226, + [4446] = 2227, + [4447] = 2977, + [4448] = 2228, + [4449] = 4415, + [4450] = 4418, + [4451] = 2230, + [4452] = 2237, + [4453] = 3170, + [4454] = 4454, + [4455] = 2178, + [4456] = 2232, + [4457] = 2233, + [4458] = 2234, + [4459] = 2181, + [4460] = 1970, + [4461] = 2183, + [4462] = 2186, + [4463] = 2191, + [4464] = 2238, + [4465] = 3065, + [4466] = 2202, + [4467] = 2994, + [4468] = 3071, + [4469] = 2177, + [4470] = 3029, + [4471] = 2973, + [4472] = 2977, + [4473] = 4415, + [4474] = 4418, + [4475] = 2994, + [4476] = 3071, + [4477] = 3029, + [4478] = 4165, + [4479] = 3000, + [4480] = 2112, + [4481] = 2977, + [4482] = 4162, + [4483] = 2902, + [4484] = 4163, + [4485] = 2903, + [4486] = 3018, + [4487] = 2317, [4488] = 3129, - [4489] = 2465, - [4490] = 1998, - [4491] = 1969, - [4492] = 3738, - [4493] = 2428, - [4494] = 1841, - [4495] = 4453, - [4496] = 2428, - [4497] = 3105, - [4498] = 3738, - [4499] = 3122, - [4500] = 4453, - [4501] = 2184, - [4502] = 2213, - [4503] = 2465, - [4504] = 3141, - [4505] = 1841, - [4506] = 2465, - [4507] = 3790, - [4508] = 2466, - [4509] = 1841, - [4510] = 3744, - [4511] = 3744, - [4512] = 2883, - [4513] = 1974, - [4514] = 3740, - [4515] = 2428, - [4516] = 2465, - [4517] = 2127, - [4518] = 3129, - [4519] = 2466, - [4520] = 1963, - [4521] = 1994, - [4522] = 4478, - [4523] = 2066, - [4524] = 3560, - [4525] = 4525, - [4526] = 4526, - [4527] = 4527, - [4528] = 4320, - [4529] = 2911, - [4530] = 4321, - [4531] = 2055, - [4532] = 3248, - [4533] = 2042, - [4534] = 4083, - [4535] = 4087, - [4536] = 4089, - [4537] = 4084, - [4538] = 4085, - [4539] = 4090, - [4540] = 4086, - [4541] = 4092, - [4542] = 4083, - [4543] = 4084, - [4544] = 4085, - [4545] = 4086, - [4546] = 2069, - [4547] = 4087, - [4548] = 4089, - [4549] = 4090, - [4550] = 4092, - [4551] = 2959, - [4552] = 4552, - [4553] = 4431, - [4554] = 1841, - [4555] = 4527, - [4556] = 4556, - [4557] = 1959, - [4558] = 3105, - [4559] = 3223, - [4560] = 2127, - [4561] = 2129, - [4562] = 1012, - [4563] = 2867, - [4564] = 2184, - [4565] = 4432, - [4566] = 4552, - [4567] = 2872, - [4568] = 4525, - [4569] = 2035, - [4570] = 2036, - [4571] = 4527, - [4572] = 2864, - [4573] = 2034, - [4574] = 4391, - [4575] = 2126, - [4576] = 4433, - [4577] = 3777, - [4578] = 4434, - [4579] = 4435, - [4580] = 1008, - [4581] = 4436, - [4582] = 4437, - [4583] = 4438, - [4584] = 4439, - [4585] = 4392, - [4586] = 4393, - [4587] = 1855, - [4588] = 4527, - [4589] = 3122, - [4590] = 4527, - [4591] = 1931, - [4592] = 2043, - [4593] = 2093, - [4594] = 2046, - [4595] = 4440, - [4596] = 2864, - [4597] = 2127, - [4598] = 4527, - [4599] = 3395, - [4600] = 3491, - [4601] = 1841, - [4602] = 2911, - [4603] = 2959, - [4604] = 2867, - [4605] = 4527, - [4606] = 4441, - [4607] = 4552, - [4608] = 2872, - [4609] = 3598, - [4610] = 4527, - [4611] = 3248, - [4612] = 2127, - [4613] = 2047, - [4614] = 2048, - [4615] = 4442, - [4616] = 2129, - [4617] = 4525, - [4618] = 4526, - [4619] = 1008, - [4620] = 2053, - [4621] = 4443, - [4622] = 3129, - [4623] = 3141, - [4624] = 1853, - [4625] = 3223, - [4626] = 3490, - [4627] = 3495, - [4628] = 1855, - [4629] = 4526, - [4630] = 3540, - [4631] = 4525, - [4632] = 2213, - [4633] = 1009, - [4634] = 4526, - [4635] = 1853, - [4636] = 3405, - [4637] = 4637, - [4638] = 4526, - [4639] = 3472, - [4640] = 4526, - [4641] = 4526, - [4642] = 2039, - [4643] = 1855, - [4644] = 1942, - [4645] = 4552, - [4646] = 4219, - [4647] = 4647, - [4648] = 2033, - [4649] = 2129, - [4650] = 4319, - [4651] = 4527, - [4652] = 4647, - [4653] = 3383, - [4654] = 4647, - [4655] = 2126, - [4656] = 1009, - [4657] = 3581, - [4658] = 2890, - [4659] = 3522, - [4660] = 3525, - [4661] = 4661, - [4662] = 3526, - [4663] = 4663, - [4664] = 3490, - [4665] = 3580, - [4666] = 2077, - [4667] = 3598, - [4668] = 3495, - [4669] = 3540, - [4670] = 3395, - [4671] = 3491, - [4672] = 3510, - [4673] = 2080, - [4674] = 4432, - [4675] = 3490, - [4676] = 2903, - [4677] = 2022, - [4678] = 4441, - [4679] = 3590, - [4680] = 2107, - [4681] = 3515, - [4682] = 3516, - [4683] = 3507, - [4684] = 2108, - [4685] = 3528, - [4686] = 4083, - [4687] = 4084, - [4688] = 4085, - [4689] = 4442, - [4690] = 4086, - [4691] = 1954, - [4692] = 4087, - [4693] = 4089, - [4694] = 4090, - [4695] = 4092, - [4696] = 3490, - [4697] = 3535, - [4698] = 3395, - [4699] = 4699, - [4700] = 1009, - [4701] = 4701, - [4702] = 3541, - [4703] = 4661, - [4704] = 2117, - [4705] = 4201, - [4706] = 2070, - [4707] = 1866, - [4708] = 2118, - [4709] = 3248, - [4710] = 3405, - [4711] = 4443, - [4712] = 4556, - [4713] = 4713, - [4714] = 2089, - [4715] = 3540, - [4716] = 4433, - [4717] = 4434, - [4718] = 4435, - [4719] = 3540, - [4720] = 4436, - [4721] = 3543, - [4722] = 3523, - [4723] = 3598, - [4724] = 4437, - [4725] = 1841, - [4726] = 2951, - [4727] = 3383, - [4728] = 4699, - [4729] = 3129, - [4730] = 4661, - [4731] = 1855, - [4732] = 1969, - [4733] = 3472, - [4734] = 4734, - [4735] = 4735, - [4736] = 3472, - [4737] = 1860, - [4738] = 4699, - [4739] = 2082, - [4740] = 3565, - [4741] = 4661, - [4742] = 2090, - [4743] = 2091, - [4744] = 3573, - [4745] = 3141, - [4746] = 2092, - [4747] = 3495, - [4748] = 2094, - [4749] = 4699, - [4750] = 2095, - [4751] = 4438, - [4752] = 4439, - [4753] = 4699, - [4754] = 4661, - [4755] = 2917, - [4756] = 2889, - [4757] = 3511, - [4758] = 1009, - [4759] = 3578, - [4760] = 2960, - [4761] = 256, - [4762] = 3223, - [4763] = 3122, - [4764] = 4319, - [4765] = 4661, - [4766] = 4320, - [4767] = 2086, - [4768] = 4321, - [4769] = 4661, - [4770] = 2098, - [4771] = 1861, - [4772] = 1862, - [4773] = 2078, - [4774] = 2099, - [4775] = 2100, - [4776] = 3105, - [4777] = 4661, - [4778] = 3595, - [4779] = 2893, - [4780] = 2895, - [4781] = 2102, - [4782] = 4661, - [4783] = 3166, - [4784] = 2910, - [4785] = 4661, - [4786] = 2103, - [4787] = 4661, - [4788] = 4661, - [4789] = 4661, - [4790] = 2063, - [4791] = 4661, - [4792] = 4661, - [4793] = 4661, - [4794] = 4661, - [4795] = 4661, - [4796] = 4661, - [4797] = 4661, - [4798] = 4661, - [4799] = 3494, - [4800] = 2897, - [4801] = 1853, - [4802] = 1954, - [4803] = 4803, - [4804] = 4734, - [4805] = 4805, - [4806] = 4701, - [4807] = 4807, - [4808] = 2109, - [4809] = 2110, - [4810] = 2111, - [4811] = 2104, - [4812] = 2049, - [4813] = 2112, - [4814] = 1986, - [4815] = 2114, - [4816] = 2079, - [4817] = 2101, - [4818] = 1857, - [4819] = 1858, - [4820] = 1841, - [4821] = 1859, - [4822] = 1987, - [4823] = 1841, - [4824] = 3383, - [4825] = 4661, - [4826] = 2913, - [4827] = 2980, - [4828] = 4734, - [4829] = 2084, - [4830] = 4805, - [4831] = 4391, - [4832] = 3405, - [4833] = 3648, - [4834] = 1008, - [4835] = 2929, - [4836] = 4701, - [4837] = 4805, - [4838] = 2976, - [4839] = 2845, - [4840] = 4392, - [4841] = 4393, - [4842] = 4734, - [4843] = 4805, - [4844] = 3513, - [4845] = 4701, - [4846] = 3497, - [4847] = 253, - [4848] = 4734, - [4849] = 4805, - [4850] = 4701, - [4851] = 3576, - [4852] = 1954, - [4853] = 4734, - [4854] = 4805, - [4855] = 1008, - [4856] = 4701, - [4857] = 4734, - [4858] = 4805, - [4859] = 2097, - [4860] = 4701, - [4861] = 4734, - [4862] = 4805, - [4863] = 4701, - [4864] = 4805, - [4865] = 4701, - [4866] = 2074, - [4867] = 2134, - [4868] = 1954, - [4869] = 1990, - [4870] = 2120, - [4871] = 4713, - [4872] = 4872, - [4873] = 2214, - [4874] = 2085, - [4875] = 4699, - [4876] = 1855, - [4877] = 4713, - [4878] = 4872, - [4879] = 4431, - [4880] = 4713, - [4881] = 4872, - [4882] = 4713, - [4883] = 4872, - [4884] = 4713, - [4885] = 4872, - [4886] = 4713, - [4887] = 4872, - [4888] = 4713, - [4889] = 4872, - [4890] = 4713, - [4891] = 4872, - [4892] = 4735, - [4893] = 2071, - [4894] = 4699, - [4895] = 4872, - [4896] = 4807, - [4897] = 4661, - [4898] = 3598, - [4899] = 3491, - [4900] = 2073, - [4901] = 2121, - [4902] = 4440, - [4903] = 3588, - [4904] = 3521, - [4905] = 4735, - [4906] = 4807, - [4907] = 4735, - [4908] = 4807, - [4909] = 4735, - [4910] = 4807, - [4911] = 4735, - [4912] = 4807, - [4913] = 4735, - [4914] = 4807, - [4915] = 4735, - [4916] = 4807, - [4917] = 3492, - [4918] = 3495, - [4919] = 3166, - [4920] = 3491, - [4921] = 1954, - [4922] = 4922, - [4923] = 1841, - [4924] = 4433, - [4925] = 4925, - [4926] = 3662, - [4927] = 4925, - [4928] = 3576, - [4929] = 4925, - [4930] = 4925, - [4931] = 4925, - [4932] = 4925, - [4933] = 4925, - [4934] = 4925, - [4935] = 4925, - [4936] = 4925, - [4937] = 4925, - [4938] = 4925, - [4939] = 3578, - [4940] = 2960, - [4941] = 2913, - [4942] = 2980, - [4943] = 4925, - [4944] = 2701, - [4945] = 2929, - [4946] = 2022, - [4947] = 1954, - [4948] = 3702, - [4949] = 4949, - [4950] = 2913, - [4951] = 2980, - [4952] = 2929, - [4953] = 1009, - [4954] = 4925, - [4955] = 2088, - [4956] = 3510, - [4957] = 4925, - [4958] = 4090, - [4959] = 253, - [4960] = 4437, - [4961] = 4393, - [4962] = 4087, - [4963] = 4089, - [4964] = 3523, - [4965] = 256, - [4966] = 3510, - [4967] = 3588, - [4968] = 4087, - [4969] = 1841, - [4970] = 3515, - [4971] = 3526, - [4972] = 3666, - [4973] = 3668, - [4974] = 1853, - [4975] = 3515, - [4976] = 4391, - [4977] = 2889, - [4978] = 3535, - [4979] = 2439, - [4980] = 3516, - [4981] = 3595, - [4982] = 2910, - [4983] = 3513, - [4984] = 3513, - [4985] = 1841, - [4986] = 3578, - [4987] = 4089, - [4988] = 3580, - [4989] = 3581, - [4990] = 3590, - [4991] = 3702, - [4992] = 3248, - [4993] = 3492, - [4994] = 3580, - [4995] = 3497, - [4996] = 3494, - [4997] = 3521, - [4998] = 3522, - [4999] = 3525, - [5000] = 3526, - [5001] = 4441, - [5002] = 3528, - [5003] = 3535, - [5004] = 3662, - [5005] = 3541, - [5006] = 1954, - [5007] = 4925, - [5008] = 3543, - [5009] = 1855, - [5010] = 2845, - [5011] = 4443, - [5012] = 4469, - [5013] = 1008, - [5014] = 3541, - [5015] = 4090, - [5016] = 3648, - [5017] = 3648, - [5018] = 2917, - [5019] = 4925, - [5020] = 4320, - [5021] = 2976, - [5022] = 2845, - [5023] = 3528, - [5024] = 4083, - [5025] = 2917, - [5026] = 1954, - [5027] = 3915, - [5028] = 3511, - [5029] = 4092, - [5030] = 5030, - [5031] = 4925, - [5032] = 2895, - [5033] = 3511, - [5034] = 4438, - [5035] = 4084, - [5036] = 2895, - [5037] = 4085, - [5038] = 3695, - [5039] = 2128, - [5040] = 4439, - [5041] = 4431, - [5042] = 3662, - [5043] = 2122, - [5044] = 1954, - [5045] = 3507, - [5046] = 2125, - [5047] = 3497, - [5048] = 4925, - [5049] = 4086, - [5050] = 3665, - [5051] = 4092, - [5052] = 4085, - [5053] = 4321, - [5054] = 3618, - [5055] = 2130, - [5056] = 2486, - [5057] = 3565, - [5058] = 4319, - [5059] = 4925, - [5060] = 2913, - [5061] = 4440, - [5062] = 2917, - [5063] = 3573, - [5064] = 3777, - [5065] = 3604, - [5066] = 2980, - [5067] = 2929, - [5068] = 2895, - [5069] = 2893, - [5070] = 3223, - [5071] = 1954, - [5072] = 2889, - [5073] = 2910, - [5074] = 3581, - [5075] = 3521, - [5076] = 253, - [5077] = 4478, - [5078] = 2476, - [5079] = 4925, - [5080] = 2897, - [5081] = 2890, - [5082] = 3590, - [5083] = 2742, - [5084] = 2903, - [5085] = 1889, - [5086] = 3685, - [5087] = 1853, - [5088] = 3588, - [5089] = 4925, - [5090] = 4442, - [5091] = 4392, - [5092] = 2890, - [5093] = 3516, - [5094] = 4432, - [5095] = 3507, - [5096] = 4925, - [5097] = 2903, - [5098] = 3523, - [5099] = 3492, - [5100] = 2132, - [5101] = 2124, - [5102] = 3689, - [5103] = 4925, - [5104] = 3616, - [5105] = 4086, - [5106] = 4925, - [5107] = 2951, - [5108] = 3522, - [5109] = 2072, - [5110] = 2075, - [5111] = 2960, - [5112] = 2083, - [5113] = 4434, - [5114] = 253, - [5115] = 2893, - [5116] = 2123, - [5117] = 2910, - [5118] = 3494, - [5119] = 4435, - [5120] = 2087, - [5121] = 2897, - [5122] = 4925, - [5123] = 2976, - [5124] = 3525, - [5125] = 3662, - [5126] = 2156, - [5127] = 4925, - [5128] = 3678, - [5129] = 256, - [5130] = 2976, - [5131] = 2845, - [5132] = 2890, - [5133] = 2889, - [5134] = 4925, - [5135] = 3543, - [5136] = 4925, - [5137] = 4083, - [5138] = 4436, - [5139] = 3662, - [5140] = 4925, - [5141] = 1891, - [5142] = 3576, - [5143] = 4925, - [5144] = 2951, - [5145] = 4925, - [5146] = 2960, - [5147] = 4925, - [5148] = 3565, - [5149] = 256, - [5150] = 4925, - [5151] = 3648, - [5152] = 2903, - [5153] = 3595, - [5154] = 2893, - [5155] = 4925, - [5156] = 4084, - [5157] = 2897, - [5158] = 4925, - [5159] = 3573, - [5160] = 2951, - [5161] = 4434, - [5162] = 3661, - [5163] = 3668, - [5164] = 3510, - [5165] = 3515, - [5166] = 2067, - [5167] = 1857, - [5168] = 1858, - [5169] = 1859, - [5170] = 5170, - [5171] = 4083, - [5172] = 5172, - [5173] = 4432, - [5174] = 5174, - [5175] = 4321, - [5176] = 3689, - [5177] = 3776, - [5178] = 3604, - [5179] = 2780, - [5180] = 4319, - [5181] = 4478, - [5182] = 3097, - [5183] = 3109, - [5184] = 3126, - [5185] = 1841, - [5186] = 3666, - [5187] = 3668, - [5188] = 3662, - [5189] = 4086, - [5190] = 3755, - [5191] = 4320, - [5192] = 3695, - [5193] = 3755, - [5194] = 4321, - [5195] = 5195, - [5196] = 5196, - [5197] = 3472, - [5198] = 3395, - [5199] = 4431, - [5200] = 5170, - [5201] = 5172, - [5202] = 3516, - [5203] = 5174, - [5204] = 3796, - [5205] = 1860, - [5206] = 3717, - [5207] = 1861, - [5208] = 1862, - [5209] = 4440, - [5210] = 3059, - [5211] = 3068, - [5212] = 5212, - [5213] = 3618, - [5214] = 3523, - [5215] = 3098, - [5216] = 1841, - [5217] = 3761, - [5218] = 3689, - [5219] = 3662, - [5220] = 1855, - [5221] = 1841, - [5222] = 4391, - [5223] = 3685, - [5224] = 5224, - [5225] = 5170, - [5226] = 5172, - [5227] = 1954, - [5228] = 5174, - [5229] = 3565, - [5230] = 3573, - [5231] = 1959, - [5232] = 3618, - [5233] = 3662, - [5234] = 4469, - [5235] = 5170, - [5236] = 5172, - [5237] = 3796, - [5238] = 2701, - [5239] = 5174, - [5240] = 4433, - [5241] = 3405, - [5242] = 3560, - [5243] = 4434, - [5244] = 5244, - [5245] = 4435, - [5246] = 4436, - [5247] = 1855, - [5248] = 1954, - [5249] = 5170, - [5250] = 5172, - [5251] = 4437, - [5252] = 5174, - [5253] = 4438, - [5254] = 4441, - [5255] = 3121, - [5256] = 1841, - [5257] = 3616, - [5258] = 3513, - [5259] = 1954, - [5260] = 3761, - [5261] = 5170, - [5262] = 5172, - [5263] = 2026, - [5264] = 1963, - [5265] = 5174, - [5266] = 3383, - [5267] = 4439, - [5268] = 5196, - [5269] = 5172, - [5270] = 4392, - [5271] = 3578, - [5272] = 5172, - [5273] = 3580, - [5274] = 3581, - [5275] = 3590, - [5276] = 3741, - [5277] = 5172, - [5278] = 3742, - [5279] = 5170, - [5280] = 3749, - [5281] = 3757, - [5282] = 3782, - [5283] = 5212, - [5284] = 3789, - [5285] = 3662, - [5286] = 5172, - [5287] = 3665, - [5288] = 4393, - [5289] = 4090, - [5290] = 2742, - [5291] = 5174, - [5292] = 3472, - [5293] = 5195, - [5294] = 5196, - [5295] = 3706, - [5296] = 5224, - [5297] = 3492, - [5298] = 1966, - [5299] = 4219, - [5300] = 5170, - [5301] = 4431, - [5302] = 4083, - [5303] = 4086, - [5304] = 3560, - [5305] = 3497, - [5306] = 4319, - [5307] = 4320, - [5308] = 4321, - [5309] = 4431, - [5310] = 4432, - [5311] = 4391, - [5312] = 4433, - [5313] = 4434, - [5314] = 4435, - [5315] = 4436, - [5316] = 4437, - [5317] = 4438, - [5318] = 4439, - [5319] = 4392, - [5320] = 4393, - [5321] = 4432, - [5322] = 4440, - [5323] = 4441, - [5324] = 4442, - [5325] = 4443, - [5326] = 3673, - [5327] = 3702, - [5328] = 3521, - [5329] = 3522, - [5330] = 3525, - [5331] = 3526, - [5332] = 3383, - [5333] = 1008, - [5334] = 4391, - [5335] = 3685, - [5336] = 4442, - [5337] = 4087, - [5338] = 4433, - [5339] = 4434, - [5340] = 4435, - [5341] = 4436, - [5342] = 5342, - [5343] = 4437, - [5344] = 4438, - [5345] = 4439, - [5346] = 4392, - [5347] = 4393, - [5348] = 5224, - [5349] = 1853, - [5350] = 4089, - [5351] = 3722, - [5352] = 5172, - [5353] = 1889, - [5354] = 3678, - [5355] = 3093, - [5356] = 3115, - [5357] = 3116, - [5358] = 3662, - [5359] = 5224, - [5360] = 4087, - [5361] = 3604, - [5362] = 3117, - [5363] = 4089, - [5364] = 3528, - [5365] = 3535, - [5366] = 5366, - [5367] = 4320, - [5368] = 4084, - [5369] = 5224, - [5370] = 3678, - [5371] = 3405, - [5372] = 5224, - [5373] = 3541, - [5374] = 1866, - [5375] = 5224, - [5376] = 4440, - [5377] = 4085, - [5378] = 5224, - [5379] = 3605, - [5380] = 3616, - [5381] = 3543, - [5382] = 4441, - [5383] = 1891, - [5384] = 2184, - [5385] = 4090, - [5386] = 2213, - [5387] = 3395, - [5388] = 3689, - [5389] = 4319, - [5390] = 3666, - [5391] = 3668, - [5392] = 4320, - [5393] = 3695, - [5394] = 4321, - [5395] = 4431, - [5396] = 4432, - [5397] = 4391, - [5398] = 3685, - [5399] = 4433, - [5400] = 4435, - [5401] = 4436, - [5402] = 4437, - [5403] = 4438, - [5404] = 4439, - [5405] = 4392, - [5406] = 4393, - [5407] = 3678, - [5408] = 4442, - [5409] = 4440, - [5410] = 4441, - [5411] = 4442, - [5412] = 4443, - [5413] = 3695, - [5414] = 4443, - [5415] = 4092, - [5416] = 4084, - [5417] = 4085, - [5418] = 4319, - [5419] = 3665, - [5420] = 3665, - [5421] = 1009, - [5422] = 5174, - [5423] = 4092, - [5424] = 4443, - [5425] = 3666, - [5426] = 2788, - [5427] = 1956, - [5428] = 3777, - [5429] = 3605, - [5430] = 3097, - [5431] = 2893, - [5432] = 1008, - [5433] = 3494, - [5434] = 2897, - [5435] = 3109, - [5436] = 3781, - [5437] = 3662, - [5438] = 3737, - [5439] = 3780, - [5440] = 2486, - [5441] = 1841, - [5442] = 3848, - [5443] = 3754, - [5444] = 3753, - [5445] = 3803, - [5446] = 3750, - [5447] = 3673, - [5448] = 2476, - [5449] = 3791, - [5450] = 2439, - [5451] = 3722, - [5452] = 3755, - [5453] = 3849, - [5454] = 3588, - [5455] = 3511, - [5456] = 3126, - [5457] = 3595, - [5458] = 3616, - [5459] = 2895, - [5460] = 2213, - [5461] = 2910, - [5462] = 3516, - [5463] = 3741, - [5464] = 3817, - [5465] = 3806, - [5466] = 2486, - [5467] = 3819, - [5468] = 3576, - [5469] = 3827, - [5470] = 3097, - [5471] = 3109, - [5472] = 3808, - [5473] = 3821, - [5474] = 3742, - [5475] = 2889, - [5476] = 3706, - [5477] = 2476, - [5478] = 3841, - [5479] = 3844, - [5480] = 3605, - [5481] = 3749, - [5482] = 3523, - [5483] = 3662, - [5484] = 3662, - [5485] = 3126, - [5486] = 3757, - [5487] = 253, - [5488] = 3696, - [5489] = 3782, - [5490] = 1956, - [5491] = 3565, - [5492] = 3745, - [5493] = 3573, - [5494] = 1866, - [5495] = 1994, - [5496] = 3588, - [5497] = 3717, - [5498] = 3789, - [5499] = 2890, - [5500] = 2903, - [5501] = 3098, - [5502] = 3059, - [5503] = 3794, - [5504] = 3814, - [5505] = 3166, - [5506] = 3786, - [5507] = 3784, - [5508] = 2917, - [5509] = 3829, - [5510] = 4469, - [5511] = 3068, - [5512] = 3662, - [5513] = 3766, - [5514] = 2976, - [5515] = 3706, - [5516] = 2845, - [5517] = 3661, - [5518] = 3727, - [5519] = 2439, - [5520] = 3662, - [5521] = 3098, - [5522] = 3839, - [5523] = 3783, - [5524] = 3811, - [5525] = 3662, - [5526] = 3492, - [5527] = 3667, - [5528] = 4478, - [5529] = 3758, - [5530] = 3595, - [5531] = 3513, - [5532] = 3093, - [5533] = 3115, - [5534] = 3809, - [5535] = 3815, - [5536] = 3677, - [5537] = 3680, - [5538] = 2960, - [5539] = 3847, - [5540] = 3578, - [5541] = 3830, - [5542] = 3580, - [5543] = 3581, - [5544] = 3590, - [5545] = 1954, - [5546] = 3723, - [5547] = 3775, - [5548] = 3776, - [5549] = 1857, - [5550] = 3702, - [5551] = 1858, - [5552] = 3759, - [5553] = 1859, - [5554] = 3673, - [5555] = 3722, - [5556] = 4478, - [5557] = 3121, - [5558] = 3846, - [5559] = 4469, - [5560] = 1860, - [5561] = 3121, - [5562] = 3729, - [5563] = 3576, - [5564] = 3823, - [5565] = 1009, - [5566] = 3777, - [5567] = 2913, - [5568] = 2980, - [5569] = 3796, - [5570] = 3770, - [5571] = 2929, - [5572] = 1861, - [5573] = 3698, - [5574] = 3824, - [5575] = 3059, - [5576] = 3068, - [5577] = 1862, - [5578] = 3825, - [5579] = 3507, - [5580] = 3760, - [5581] = 3510, - [5582] = 3515, - [5583] = 3684, - [5584] = 3756, - [5585] = 3768, - [5586] = 3662, - [5587] = 3722, - [5588] = 3761, - [5589] = 3748, - [5590] = 3497, - [5591] = 3662, - [5592] = 3507, - [5593] = 3093, - [5594] = 3702, - [5595] = 1855, - [5596] = 3521, - [5597] = 3522, - [5598] = 3525, - [5599] = 3526, - [5600] = 3765, - [5601] = 3116, - [5602] = 3115, - [5603] = 3528, - [5604] = 3675, - [5605] = 3116, - [5606] = 3117, - [5607] = 3117, - [5608] = 3535, - [5609] = 3541, - [5610] = 2066, - [5611] = 2126, - [5612] = 3661, - [5613] = 3777, - [5614] = 3543, - [5615] = 2184, - [5616] = 256, - [5617] = 3717, - [5618] = 2951, - [5619] = 3765, - [5620] = 3830, - [5621] = 3768, - [5622] = 3675, - [5623] = 4321, - [5624] = 3766, - [5625] = 3729, - [5626] = 3848, - [5627] = 3803, - [5628] = 5628, - [5629] = 3824, - [5630] = 4391, - [5631] = 3685, - [5632] = 3766, - [5633] = 3777, - [5634] = 4433, - [5635] = 3777, - [5636] = 4434, - [5637] = 4435, - [5638] = 4436, - [5639] = 4437, - [5640] = 4438, - [5641] = 4439, - [5642] = 3803, - [5643] = 4392, - [5644] = 4393, - [5645] = 3849, - [5646] = 3817, - [5647] = 3819, - [5648] = 3770, - [5649] = 3825, - [5650] = 3811, - [5651] = 3755, - [5652] = 3827, - [5653] = 3662, - [5654] = 3760, - [5655] = 5655, - [5656] = 3777, - [5657] = 5657, - [5658] = 3678, - [5659] = 3689, - [5660] = 3783, - [5661] = 3678, - [5662] = 3723, - [5663] = 3780, - [5664] = 3811, - [5665] = 3667, - [5666] = 2959, - [5667] = 3741, - [5668] = 3765, - [5669] = 3742, - [5670] = 3749, - [5671] = 3757, - [5672] = 3782, - [5673] = 3696, - [5674] = 3808, - [5675] = 3789, - [5676] = 3777, - [5677] = 3809, - [5678] = 3661, - [5679] = 4319, - [5680] = 3727, - [5681] = 3756, - [5682] = 3839, - [5683] = 3796, - [5684] = 3825, - [5685] = 3754, - [5686] = 3823, - [5687] = 3781, - [5688] = 3753, - [5689] = 1855, - [5690] = 3750, - [5691] = 3849, - [5692] = 3756, - [5693] = 4443, - [5694] = 3711, - [5695] = 3776, - [5696] = 3761, - [5697] = 3677, - [5698] = 5698, - [5699] = 3666, - [5700] = 3680, - [5701] = 3668, - [5702] = 4440, - [5703] = 4084, - [5704] = 3758, - [5705] = 4085, - [5706] = 2864, - [5707] = 3723, - [5708] = 3791, - [5709] = 3717, - [5710] = 3759, - [5711] = 2911, - [5712] = 3666, - [5713] = 3770, - [5714] = 3668, - [5715] = 3698, - [5716] = 3815, - [5717] = 3791, - [5718] = 2911, - [5719] = 2959, - [5720] = 5720, - [5721] = 2867, - [5722] = 3776, - [5723] = 2872, - [5724] = 3829, - [5725] = 3847, - [5726] = 2864, - [5727] = 4087, - [5728] = 3815, - [5729] = 3780, - [5730] = 4089, - [5731] = 2009, - [5732] = 3841, - [5733] = 3698, - [5734] = 2780, - [5735] = 3806, - [5736] = 3696, - [5737] = 3844, - [5738] = 4441, - [5739] = 2788, - [5740] = 3846, - [5741] = 3821, - [5742] = 2867, - [5743] = 5743, - [5744] = 4431, - [5745] = 3817, - [5746] = 3819, - [5747] = 3760, - [5748] = 3814, - [5749] = 3844, - [5750] = 3689, - [5751] = 4320, - [5752] = 3758, - [5753] = 3796, - [5754] = 3737, - [5755] = 3827, - [5756] = 3684, - [5757] = 2872, - [5758] = 3748, - [5759] = 3786, - [5760] = 3848, - [5761] = 3784, - [5762] = 3786, - [5763] = 3695, - [5764] = 3821, - [5765] = 3784, - [5766] = 3814, - [5767] = 4090, - [5768] = 3830, - [5769] = 3741, - [5770] = 3742, - [5771] = 3841, - [5772] = 3775, - [5773] = 3749, - [5774] = 3685, - [5775] = 3757, - [5776] = 4086, - [5777] = 3745, - [5778] = 3695, - [5779] = 3829, - [5780] = 3847, - [5781] = 3782, - [5782] = 3780, - [5783] = 3706, - [5784] = 3759, - [5785] = 4442, - [5786] = 3766, - [5787] = 3761, - [5788] = 3777, - [5789] = 3789, - [5790] = 2701, - [5791] = 3729, - [5792] = 3824, - [5793] = 2742, - [5794] = 3846, - [5795] = 4432, - [5796] = 3748, - [5797] = 2001, - [5798] = 3755, - [5799] = 3777, - [5800] = 4092, - [5801] = 3783, - [5802] = 3667, - [5803] = 3808, - [5804] = 3809, - [5805] = 3677, - [5806] = 4083, - [5807] = 3768, - [5808] = 3727, - [5809] = 3839, - [5810] = 3675, - [5811] = 3680, - [5812] = 3754, - [5813] = 3794, - [5814] = 3775, - [5815] = 3753, - [5816] = 1855, - [5817] = 3823, - [5818] = 3806, - [5819] = 3794, - [5820] = 3750, - [5821] = 3775, - [5822] = 3616, - [5823] = 3737, - [5824] = 3745, - [5825] = 3684, - [5826] = 3791, - [5827] = 3781, - [5828] = 2036, - [5829] = 3803, - [5830] = 2053, - [5831] = 1889, - [5832] = 3846, - [5833] = 3560, - [5834] = 3717, - [5835] = 3738, - [5836] = 3821, - [5837] = 3790, - [5838] = 2129, - [5839] = 3823, - [5840] = 3758, - [5841] = 3744, - [5842] = 3744, - [5843] = 3740, - [5844] = 2701, - [5845] = 2742, - [5846] = 1928, - [5847] = 2042, - [5848] = 3738, - [5849] = 3790, - [5850] = 3744, - [5851] = 3740, - [5852] = 3848, - [5853] = 1853, - [5854] = 3847, - [5855] = 2043, - [5856] = 5856, - [5857] = 3794, - [5858] = 1891, - [5859] = 2046, - [5860] = 3811, - [5861] = 2069, - [5862] = 2055, - [5863] = 3748, - [5864] = 3740, - [5865] = 2780, - [5866] = 3760, - [5867] = 3790, - [5868] = 2047, - [5869] = 2048, - [5870] = 3817, - [5871] = 3819, - [5872] = 2788, - [5873] = 3830, - [5874] = 2035, - [5875] = 3759, - [5876] = 3829, - [5877] = 3166, - [5878] = 3806, - [5879] = 4219, - [5880] = 3560, - [5881] = 3808, - [5882] = 2033, - [5883] = 3814, - [5884] = 2049, - [5885] = 3729, - [5886] = 3750, - [5887] = 3809, - [5888] = 3841, - [5889] = 3815, - [5890] = 3844, - [5891] = 2063, - [5892] = 3827, - [5893] = 2034, - [5894] = 3711, - [5895] = 2127, - [5896] = 3753, - [5897] = 3727, - [5898] = 5898, - [5899] = 3839, - [5900] = 3745, - [5901] = 3825, - [5902] = 4478, - [5903] = 3754, - [5904] = 3824, - [5905] = 3738, - [5906] = 3166, - [5907] = 3738, - [5908] = 3790, - [5909] = 3744, - [5910] = 3740, - [5911] = 3737, - [5912] = 4469, - [5913] = 3661, - [5914] = 3765, - [5915] = 3706, - [5916] = 3560, - [5917] = 2184, - [5918] = 2112, - [5919] = 3827, - [5920] = 2872, - [5921] = 3823, - [5922] = 2091, - [5923] = 2092, - [5924] = 2959, - [5925] = 2121, - [5926] = 3753, - [5927] = 2084, - [5928] = 2093, - [5929] = 2094, - [5930] = 3791, - [5931] = 2095, - [5932] = 3811, - [5933] = 2701, - [5934] = 3803, - [5935] = 3750, - [5936] = 1855, - [5937] = 2114, - [5938] = 3711, - [5939] = 2098, - [5940] = 3775, - [5941] = 2085, - [5942] = 2117, - [5943] = 5943, - [5944] = 2097, - [5945] = 2118, - [5946] = 2742, - [5947] = 2134, - [5948] = 2099, - [5949] = 2100, - [5950] = 3806, - [5951] = 2102, - [5952] = 3821, - [5953] = 2103, - [5954] = 3758, - [5955] = 3830, - [5956] = 2107, - [5957] = 3766, - [5958] = 3814, - [5959] = 2108, - [5960] = 2701, - [5961] = 3848, - [5962] = 2071, - [5963] = 1889, - [5964] = 2073, - [5965] = 2104, - [5966] = 1891, - [5967] = 3808, - [5968] = 2742, - [5969] = 2911, - [5970] = 2082, - [5971] = 3754, - [5972] = 2101, - [5973] = 2788, - [5974] = 3809, - [5975] = 2089, - [5976] = 2109, - [5977] = 2867, - [5978] = 3829, - [5979] = 3847, - [5980] = 2086, - [5981] = 3825, - [5982] = 2090, - [5983] = 2110, - [5984] = 2111, - [5985] = 2074, - [5986] = 3759, - [5987] = 3815, - [5988] = 3780, - [5989] = 3737, - [5990] = 2780, - [5991] = 3760, - [5992] = 2213, - [5993] = 3841, - [5994] = 3794, - [5995] = 2120, - [5996] = 2077, - [5997] = 2078, - [5998] = 2079, - [5999] = 5999, - [6000] = 2788, - [6001] = 3745, - [6002] = 2080, - [6003] = 2864, - [6004] = 3817, - [6005] = 2911, - [6006] = 2959, - [6007] = 2867, - [6008] = 3727, - [6009] = 2872, - [6010] = 3846, - [6011] = 3729, - [6012] = 3824, - [6013] = 3839, - [6014] = 3819, - [6015] = 3844, - [6016] = 2780, - [6017] = 3748, - [6018] = 2864, - [6019] = 3765, - [6020] = 2070, - [6021] = 2213, - [6022] = 2701, - [6023] = 2754, - [6024] = 2701, - [6025] = 2184, - [6026] = 2742, - [6027] = 1889, - [6028] = 2780, - [6029] = 2754, - [6030] = 3560, - [6031] = 2780, - [6032] = 1891, - [6033] = 2788, - [6034] = 3560, - [6035] = 2788, - [6036] = 1879, - [6037] = 2742, - [6038] = 4089, - [6039] = 3711, - [6040] = 3738, - [6041] = 3711, - [6042] = 4083, - [6043] = 4092, - [6044] = 4086, - [6045] = 4092, - [6046] = 1889, - [6047] = 3711, - [6048] = 3744, - [6049] = 3494, - [6050] = 3790, - [6051] = 3560, - [6052] = 4087, - [6053] = 5943, - [6054] = 3740, - [6055] = 1889, - [6056] = 4083, - [6057] = 1889, - [6058] = 4090, - [6059] = 4085, - [6060] = 2839, - [6061] = 1891, - [6062] = 4090, - [6063] = 4084, - [6064] = 1891, - [6065] = 2799, - [6066] = 5943, - [6067] = 4089, - [6068] = 4087, - [6069] = 4084, - [6070] = 4085, - [6071] = 2799, - [6072] = 1853, - [6073] = 1964, - [6074] = 3740, - [6075] = 4086, - [6076] = 3711, - [6077] = 3511, - [6078] = 3738, - [6079] = 3744, - [6080] = 1975, - [6081] = 2839, - [6082] = 3790, - [6083] = 1891, - [6084] = 5943, - [6085] = 2883, - [6086] = 2882, - [6087] = 2002, - [6088] = 6088, - [6089] = 6089, - [6090] = 2005, - [6091] = 391, - [6092] = 6089, - [6093] = 403, - [6094] = 404, - [6095] = 361, - [6096] = 6096, - [6097] = 6089, - [6098] = 1966, - [6099] = 364, - [6100] = 375, - [6101] = 386, - [6102] = 397, - [6103] = 382, - [6104] = 1889, - [6105] = 450, - [6106] = 387, - [6107] = 2006, - [6108] = 6096, - [6109] = 6109, - [6110] = 398, - [6111] = 2882, - [6112] = 6109, - [6113] = 6089, - [6114] = 374, - [6115] = 2003, - [6116] = 6088, - [6117] = 6096, - [6118] = 2870, - [6119] = 401, - [6120] = 2923, - [6121] = 2871, - [6122] = 2923, - [6123] = 2924, - [6124] = 2870, - [6125] = 2924, - [6126] = 6096, - [6127] = 6109, - [6128] = 6096, - [6129] = 2007, - [6130] = 379, - [6131] = 1878, - [6132] = 6089, - [6133] = 6109, - [6134] = 6088, - [6135] = 400, - [6136] = 2883, - [6137] = 6096, - [6138] = 6089, - [6139] = 367, - [6140] = 1928, - [6141] = 462, - [6142] = 6109, - [6143] = 6088, - [6144] = 6109, - [6145] = 6096, - [6146] = 2871, - [6147] = 6088, - [6148] = 6109, - [6149] = 6088, - [6150] = 6089, - [6151] = 6088, - [6152] = 2004, - [6153] = 1891, - [6154] = 3511, - [6155] = 3744, - [6156] = 3744, - [6157] = 6157, - [6158] = 2005, - [6159] = 3560, - [6160] = 3738, - [6161] = 3744, - [6162] = 3790, - [6163] = 3790, - [6164] = 3560, - [6165] = 3740, - [6166] = 2002, - [6167] = 3740, - [6168] = 3740, - [6169] = 3744, - [6170] = 3790, - [6171] = 3738, - [6172] = 2006, - [6173] = 1889, - [6174] = 1891, - [6175] = 3738, - [6176] = 3738, - [6177] = 3494, - [6178] = 2003, - [6179] = 2004, - [6180] = 3740, - [6181] = 3790, - [6182] = 2007, - [6183] = 4090, - [6184] = 6184, - [6185] = 1896, - [6186] = 4087, - [6187] = 4089, - [6188] = 4092, - [6189] = 6189, - [6190] = 4087, - [6191] = 4089, - [6192] = 1889, - [6193] = 4083, - [6194] = 2911, - [6195] = 1891, - [6196] = 4084, - [6197] = 4085, - [6198] = 4086, + [4489] = 4166, + [4490] = 3125, + [4491] = 4491, + [4492] = 4492, + [4493] = 4493, + [4494] = 2063, + [4495] = 4415, + [4496] = 2956, + [4497] = 2958, + [4498] = 4498, + [4499] = 4499, + [4500] = 4500, + [4501] = 4418, + [4502] = 4399, + [4503] = 4418, + [4504] = 2049, + [4505] = 2318, + [4506] = 2225, + [4507] = 1965, + [4508] = 1968, + [4509] = 2119, + [4510] = 1969, + [4511] = 2318, + [4512] = 3169, + [4513] = 2192, + [4514] = 2118, + [4515] = 2994, + [4516] = 4149, + [4517] = 2196, + [4518] = 4157, + [4519] = 4159, + [4520] = 4160, + [4521] = 4149, + [4522] = 4162, + [4523] = 4163, + [4524] = 4165, + [4525] = 4166, + [4526] = 2229, + [4527] = 4399, + [4528] = 4415, + [4529] = 2176, + [4530] = 2184, + [4531] = 2185, + [4532] = 3071, + [4533] = 4418, + [4534] = 3029, + [4535] = 2973, + [4536] = 2977, + [4537] = 4157, + [4538] = 4165, + [4539] = 2193, + [4540] = 2194, + [4541] = 4159, + [4542] = 4160, + [4543] = 2189, + [4544] = 2190, + [4545] = 4399, + [4546] = 4149, + [4547] = 4162, + [4548] = 4163, + [4549] = 2973, + [4550] = 2537, + [4551] = 4551, + [4552] = 4165, + [4553] = 4166, + [4554] = 3125, + [4555] = 2077, + [4556] = 3169, + [4557] = 4557, + [4558] = 2541, + [4559] = 3170, + [4560] = 4157, + [4561] = 4557, + [4562] = 1946, + [4563] = 3129, + [4564] = 1946, + [4565] = 2114, + [4566] = 3169, + [4567] = 2529, + [4568] = 3880, + [4569] = 2529, + [4570] = 2541, + [4571] = 4159, + [4572] = 3895, + [4573] = 4557, + [4574] = 2529, + [4575] = 2537, + [4576] = 3891, + [4577] = 2541, + [4578] = 2073, + [4579] = 3891, + [4580] = 4580, + [4581] = 3065, + [4582] = 2146, + [4583] = 2529, + [4584] = 2537, + [4585] = 2541, + [4586] = 1946, + [4587] = 3129, + [4588] = 2537, + [4589] = 3441, + [4590] = 3880, + [4591] = 3895, + [4592] = 2956, + [4593] = 2958, + [4594] = 2318, + [4595] = 3896, + [4596] = 4551, + [4597] = 2529, + [4598] = 2537, + [4599] = 4160, + [4600] = 2541, + [4601] = 2087, + [4602] = 4149, + [4603] = 3079, + [4604] = 2207, + [4605] = 4557, + [4606] = 3000, + [4607] = 3674, + [4608] = 2537, + [4609] = 2211, + [4610] = 3433, + [4611] = 2108, + [4612] = 2317, + [4613] = 1946, + [4614] = 3170, + [4615] = 4162, + [4616] = 4557, + [4617] = 3125, + [4618] = 4580, + [4619] = 3896, + [4620] = 4557, + [4621] = 4557, + [4622] = 2146, + [4623] = 4163, + [4624] = 2541, + [4625] = 3018, + [4626] = 2223, + [4627] = 2146, + [4628] = 2529, + [4629] = 2078, + [4630] = 4630, + [4631] = 4404, + [4632] = 4406, + [4633] = 4407, + [4634] = 4411, + [4635] = 2994, + [4636] = 4636, + [4637] = 4412, + [4638] = 4499, + [4639] = 3029, + [4640] = 3694, + [4641] = 1115, + [4642] = 3071, + [4643] = 4500, + [4644] = 2223, + [4645] = 4645, + [4646] = 3696, + [4647] = 3566, + [4648] = 3129, + [4649] = 3169, + [4650] = 4630, + [4651] = 3581, + [4652] = 4421, + [4653] = 3433, + [4654] = 2172, + [4655] = 4636, + [4656] = 2318, + [4657] = 1112, + [4658] = 4491, + [4659] = 4163, + [4660] = 3029, + [4661] = 4645, + [4662] = 1963, + [4663] = 3517, + [4664] = 4664, + [4665] = 2973, + [4666] = 2223, + [4667] = 4645, + [4668] = 2137, + [4669] = 2977, + [4670] = 3698, + [4671] = 2134, + [4672] = 1946, + [4673] = 2223, + [4674] = 2161, + [4675] = 4645, + [4676] = 2139, + [4677] = 2994, + [4678] = 4630, + [4679] = 3441, + [4680] = 4165, + [4681] = 4645, + [4682] = 4166, + [4683] = 2136, + [4684] = 1114, + [4685] = 4636, + [4686] = 4157, + [4687] = 4492, + [4688] = 4688, + [4689] = 2063, + [4690] = 2211, + [4691] = 1963, + [4692] = 4645, + [4693] = 4162, + [4694] = 4645, + [4695] = 4630, + [4696] = 4630, + [4697] = 1958, + [4698] = 2211, + [4699] = 4163, + [4700] = 4700, + [4701] = 2171, + [4702] = 2977, + [4703] = 4160, + [4704] = 3681, + [4705] = 3433, + [4706] = 1946, + [4707] = 4630, + [4708] = 2317, + [4709] = 4498, + [4710] = 4162, + [4711] = 2162, + [4712] = 1958, + [4713] = 3125, + [4714] = 2207, + [4715] = 2973, + [4716] = 4165, + [4717] = 4419, + [4718] = 2140, + [4719] = 4402, + [4720] = 4630, + [4721] = 1112, + [4722] = 2047, + [4723] = 4664, + [4724] = 4159, + [4725] = 1963, + [4726] = 4403, + [4727] = 4401, + [4728] = 4688, + [4729] = 4664, + [4730] = 2129, + [4731] = 2158, + [4732] = 4149, + [4733] = 3844, + [4734] = 4157, + [4735] = 2037, + [4736] = 2144, + [4737] = 3441, + [4738] = 4166, + [4739] = 4414, + [4740] = 3071, + [4741] = 2226, + [4742] = 4400, + [4743] = 4160, + [4744] = 4149, + [4745] = 4630, + [4746] = 1114, + [4747] = 4636, + [4748] = 4413, + [4749] = 3548, + [4750] = 4493, + [4751] = 4688, + [4752] = 2207, + [4753] = 4630, + [4754] = 4336, + [4755] = 3170, + [4756] = 4756, + [4757] = 4664, + [4758] = 2211, + [4759] = 3604, + [4760] = 2165, + [4761] = 4159, + [4762] = 3645, + [4763] = 2225, + [4764] = 4764, + [4765] = 3517, + [4766] = 2094, + [4767] = 3331, + [4768] = 3651, + [4769] = 3170, + [4770] = 3698, + [4771] = 3664, + [4772] = 2112, + [4773] = 2083, + [4774] = 4764, + [4775] = 3687, + [4776] = 2233, + [4777] = 4498, + [4778] = 3433, + [4779] = 1946, + [4780] = 2177, + [4781] = 4781, + [4782] = 4782, + [4783] = 4414, + [4784] = 4764, + [4785] = 3698, + [4786] = 285, + [4787] = 4499, + [4788] = 4500, + [4789] = 1114, + [4790] = 4764, + [4791] = 3688, + [4792] = 4157, + [4793] = 2232, + [4794] = 4402, + [4795] = 2237, + [4796] = 1946, + [4797] = 4159, + [4798] = 4160, + [4799] = 2178, + [4800] = 3517, + [4801] = 4149, + [4802] = 2049, + [4803] = 4782, + [4804] = 4162, + [4805] = 4163, + [4806] = 2086, + [4807] = 4165, + [4808] = 4166, + [4809] = 4403, + [4810] = 3669, + [4811] = 1963, + [4812] = 2238, + [4813] = 3675, + [4814] = 4782, + [4815] = 2201, + [4816] = 3085, + [4817] = 4404, + [4818] = 4764, + [4819] = 4406, + [4820] = 2181, + [4821] = 4821, + [4822] = 3671, + [4823] = 3548, + [4824] = 2151, + [4825] = 3625, + [4826] = 4826, + [4827] = 3169, + [4828] = 4407, + [4829] = 4821, + [4830] = 2169, + [4831] = 4831, + [4832] = 2983, + [4833] = 3004, + [4834] = 4834, + [4835] = 4831, + [4836] = 2183, + [4837] = 1112, + [4838] = 2193, + [4839] = 4411, + [4840] = 3628, + [4841] = 4782, + [4842] = 2186, + [4843] = 3548, + [4844] = 3331, + [4845] = 4400, + [4846] = 4782, + [4847] = 288, + [4848] = 4782, + [4849] = 3566, + [4850] = 3694, + [4851] = 3678, + [4852] = 2191, + [4853] = 4826, + [4854] = 1112, + [4855] = 4821, + [4856] = 3673, + [4857] = 4857, + [4858] = 4826, + [4859] = 3681, + [4860] = 4831, + [4861] = 1946, + [4862] = 2202, + [4863] = 2192, + [4864] = 4782, + [4865] = 4826, + [4866] = 4821, + [4867] = 2049, + [4868] = 2196, + [4869] = 3604, + [4870] = 2236, + [4871] = 4831, + [4872] = 3694, + [4873] = 2197, + [4874] = 3601, + [4875] = 4421, + [4876] = 4826, + [4877] = 3009, + [4878] = 4782, + [4879] = 4821, + [4880] = 2227, + [4881] = 3566, + [4882] = 4831, + [4883] = 1946, + [4884] = 2228, + [4885] = 2077, + [4886] = 4826, + [4887] = 2198, + [4888] = 4821, + [4889] = 3441, + [4890] = 3655, + [4891] = 4782, + [4892] = 3027, + [4893] = 4831, + [4894] = 3637, + [4895] = 3125, + [4896] = 4782, + [4897] = 4782, + [4898] = 4826, + [4899] = 4782, + [4900] = 4821, + [4901] = 4831, + [4902] = 2229, + [4903] = 4821, + [4904] = 4831, + [4905] = 4764, + [4906] = 2049, + [4907] = 4782, + [4908] = 2204, + [4909] = 3638, + [4910] = 3710, + [4911] = 3640, + [4912] = 2200, + [4913] = 4782, + [4914] = 3641, + [4915] = 4782, + [4916] = 3068, + [4917] = 4782, + [4918] = 4918, + [4919] = 4756, + [4920] = 1958, + [4921] = 4782, + [4922] = 4918, + [4923] = 4834, + [4924] = 4782, + [4925] = 4782, + [4926] = 2323, + [4927] = 2957, + [4928] = 4782, + [4929] = 2960, + [4930] = 4782, + [4931] = 3581, + [4932] = 2205, + [4933] = 3696, + [4934] = 3626, + [4935] = 2222, + [4936] = 3622, + [4937] = 3002, + [4938] = 3698, + [4939] = 4782, + [4940] = 4278, + [4941] = 4918, + [4942] = 4834, + [4943] = 3604, + [4944] = 4918, + [4945] = 4834, + [4946] = 3038, + [4947] = 4918, + [4948] = 2221, + [4949] = 4834, + [4950] = 4918, + [4951] = 2230, + [4952] = 4834, + [4953] = 3703, + [4954] = 4918, + [4955] = 3681, + [4956] = 4834, + [4957] = 4918, + [4958] = 4834, + [4959] = 4918, + [4960] = 4834, + [4961] = 3024, + [4962] = 4764, + [4963] = 3696, + [4964] = 4964, + [4965] = 2955, + [4966] = 4966, + [4967] = 1970, + [4968] = 2176, + [4969] = 2184, + [4970] = 1965, + [4971] = 4826, + [4972] = 1968, + [4973] = 4413, + [4974] = 3647, + [4975] = 3694, + [4976] = 4976, + [4977] = 1964, + [4978] = 2185, + [4979] = 3679, + [4980] = 3006, + [4981] = 1966, + [4982] = 3657, + [4983] = 1967, + [4984] = 2189, + [4985] = 2976, + [4986] = 1969, + [4987] = 2190, + [4988] = 2049, + [4989] = 2049, + [4990] = 4964, + [4991] = 2234, + [4992] = 4821, + [4993] = 2235, + [4994] = 4831, + [4995] = 3604, + [4996] = 4491, + [4997] = 3681, + [4998] = 3608, + [4999] = 3611, + [5000] = 2194, + [5001] = 4492, + [5002] = 4493, + [5003] = 2195, + [5004] = 3129, + [5005] = 4964, + [5006] = 3034, + [5007] = 4976, + [5008] = 4964, + [5009] = 4976, + [5010] = 4964, + [5011] = 4976, + [5012] = 4964, + [5013] = 4976, + [5014] = 4964, + [5015] = 4976, + [5016] = 4964, + [5017] = 4976, + [5018] = 4419, + [5019] = 4782, + [5020] = 3603, + [5021] = 1963, + [5022] = 3696, + [5023] = 4976, + [5024] = 3581, + [5025] = 4401, + [5026] = 1114, + [5027] = 2199, + [5028] = 4412, + [5029] = 3068, + [5030] = 3085, + [5031] = 3647, + [5032] = 5032, + [5033] = 2565, + [5034] = 3024, + [5035] = 3034, + [5036] = 2213, + [5037] = 2214, + [5038] = 2215, + [5039] = 2216, + [5040] = 2799, + [5041] = 2217, + [5042] = 3657, + [5043] = 3710, + [5044] = 2049, + [5045] = 1958, + [5046] = 3651, + [5047] = 3655, + [5048] = 4024, + [5049] = 3664, + [5050] = 4162, + [5051] = 4163, + [5052] = 288, + [5053] = 3669, + [5054] = 3671, + [5055] = 3710, + [5056] = 3673, + [5057] = 285, + [5058] = 2957, + [5059] = 1996, + [5060] = 1994, + [5061] = 3009, + [5062] = 5032, + [5063] = 3625, + [5064] = 2049, + [5065] = 3626, + [5066] = 3675, + [5067] = 3710, + [5068] = 2268, + [5069] = 1112, + [5070] = 3679, + [5071] = 3687, + [5072] = 5072, + [5073] = 3441, + [5074] = 3688, + [5075] = 288, + [5076] = 4400, + [5077] = 2556, + [5078] = 3601, + [5079] = 3603, + [5080] = 4149, + [5081] = 2208, + [5082] = 2218, + [5083] = 2960, + [5084] = 3608, + [5085] = 3611, + [5086] = 3844, + [5087] = 5032, + [5088] = 1114, + [5089] = 4413, + [5090] = 3625, + [5091] = 3626, + [5092] = 2983, + [5093] = 3782, + [5094] = 4498, + [5095] = 3815, + [5096] = 4402, + [5097] = 4403, + [5098] = 4404, + [5099] = 4406, + [5100] = 4407, + [5101] = 4411, + [5102] = 4412, + [5103] = 2209, + [5104] = 4499, + [5105] = 1958, + [5106] = 3004, + [5107] = 4500, + [5108] = 2538, + [5109] = 3757, + [5110] = 3628, + [5111] = 3637, + [5112] = 3779, + [5113] = 3638, + [5114] = 3640, + [5115] = 3641, + [5116] = 3779, + [5117] = 3772, + [5118] = 5032, + [5119] = 4491, + [5120] = 3779, + [5121] = 3655, + [5122] = 3664, + [5123] = 3669, + [5124] = 3671, + [5125] = 3673, + [5126] = 3675, + [5127] = 3679, + [5128] = 3687, + [5129] = 3688, + [5130] = 4580, + [5131] = 3705, + [5132] = 3027, + [5133] = 5032, + [5134] = 2049, + [5135] = 1963, + [5136] = 4414, + [5137] = 3006, + [5138] = 3657, + [5139] = 3009, + [5140] = 3809, + [5141] = 3006, + [5142] = 3085, + [5143] = 3024, + [5144] = 5032, + [5145] = 3034, + [5146] = 3009, + [5147] = 2955, + [5148] = 2219, + [5149] = 2220, + [5150] = 2175, + [5151] = 4165, + [5152] = 4157, + [5153] = 2239, + [5154] = 4551, + [5155] = 2955, + [5156] = 2976, + [5157] = 2049, + [5158] = 3024, + [5159] = 3034, + [5160] = 5032, + [5161] = 2983, + [5162] = 3004, + [5163] = 3703, + [5164] = 3027, + [5165] = 3068, + [5166] = 3622, + [5167] = 5032, + [5168] = 5032, + [5169] = 3038, + [5170] = 2957, + [5171] = 3791, + [5172] = 3792, + [5173] = 3703, + [5174] = 2960, + [5175] = 2955, + [5176] = 2976, + [5177] = 5032, + [5178] = 285, + [5179] = 5032, + [5180] = 3002, + [5181] = 3002, + [5182] = 5032, + [5183] = 2983, + [5184] = 3004, + [5185] = 5032, + [5186] = 4419, + [5187] = 5032, + [5188] = 5032, + [5189] = 5032, + [5190] = 5032, + [5191] = 5032, + [5192] = 5032, + [5193] = 3601, + [5194] = 288, + [5195] = 5032, + [5196] = 5032, + [5197] = 3678, + [5198] = 5032, + [5199] = 5032, + [5200] = 5032, + [5201] = 5032, + [5202] = 5032, + [5203] = 5032, + [5204] = 5032, + [5205] = 5032, + [5206] = 5032, + [5207] = 5032, + [5208] = 5032, + [5209] = 5032, + [5210] = 3820, + [5211] = 5032, + [5212] = 4492, + [5213] = 2112, + [5214] = 4166, + [5215] = 3794, + [5216] = 285, + [5217] = 4493, + [5218] = 3645, + [5219] = 3068, + [5220] = 3779, + [5221] = 3603, + [5222] = 1946, + [5223] = 2976, + [5224] = 2957, + [5225] = 2960, + [5226] = 3647, + [5227] = 1946, + [5228] = 3608, + [5229] = 3611, + [5230] = 2049, + [5231] = 5032, + [5232] = 5232, + [5233] = 3678, + [5234] = 3002, + [5235] = 3779, + [5236] = 3732, + [5237] = 4401, + [5238] = 2757, + [5239] = 5032, + [5240] = 3622, + [5241] = 3809, + [5242] = 4421, + [5243] = 4159, + [5244] = 4160, + [5245] = 3038, + [5246] = 4157, + [5247] = 4159, + [5248] = 4160, + [5249] = 3645, + [5250] = 4149, + [5251] = 3027, + [5252] = 3038, + [5253] = 4162, + [5254] = 4163, + [5255] = 4165, + [5256] = 4166, + [5257] = 3651, + [5258] = 3628, + [5259] = 3006, + [5260] = 3637, + [5261] = 3433, + [5262] = 3638, + [5263] = 3640, + [5264] = 3641, + [5265] = 3085, + [5266] = 4500, + [5267] = 3641, + [5268] = 3772, + [5269] = 5269, + [5270] = 3772, + [5271] = 5271, + [5272] = 2762, + [5273] = 3669, + [5274] = 5274, + [5275] = 5275, + [5276] = 3705, + [5277] = 3757, + [5278] = 3651, + [5279] = 2075, + [5280] = 3781, + [5281] = 3671, + [5282] = 3673, + [5283] = 4162, + [5284] = 3779, + [5285] = 4163, + [5286] = 5286, + [5287] = 4580, + [5288] = 5288, + [5289] = 4157, + [5290] = 3911, + [5291] = 3548, + [5292] = 5269, + [5293] = 3809, + [5294] = 5271, + [5295] = 5269, + [5296] = 4421, + [5297] = 5275, + [5298] = 3566, + [5299] = 4492, + [5300] = 3687, + [5301] = 3794, + [5302] = 3820, + [5303] = 4400, + [5304] = 5275, + [5305] = 4165, + [5306] = 5271, + [5307] = 3817, + [5308] = 3938, + [5309] = 3779, + [5310] = 1946, + [5311] = 3931, + [5312] = 1963, + [5313] = 1946, + [5314] = 3709, + [5315] = 4414, + [5316] = 5269, + [5317] = 5271, + [5318] = 4166, + [5319] = 5275, + [5320] = 3674, + [5321] = 2049, + [5322] = 4493, + [5323] = 3782, + [5324] = 2851, + [5325] = 4491, + [5326] = 3149, + [5327] = 1946, + [5328] = 3732, + [5329] = 5269, + [5330] = 3705, + [5331] = 3791, + [5332] = 3792, + [5333] = 5271, + [5334] = 2053, + [5335] = 3566, + [5336] = 5271, + [5337] = 5275, + [5338] = 3888, + [5339] = 4492, + [5340] = 1946, + [5341] = 3794, + [5342] = 4493, + [5343] = 4413, + [5344] = 5275, + [5345] = 5269, + [5346] = 5271, + [5347] = 3625, + [5348] = 3626, + [5349] = 4401, + [5350] = 5275, + [5351] = 1963, + [5352] = 3688, + [5353] = 2049, + [5354] = 3779, + [5355] = 3941, + [5356] = 4157, + [5357] = 5271, + [5358] = 2757, + [5359] = 3548, + [5360] = 3911, + [5361] = 5271, + [5362] = 3101, + [5363] = 3094, + [5364] = 3844, + [5365] = 2073, + [5366] = 5271, + [5367] = 4421, + [5368] = 5368, + [5369] = 1112, + [5370] = 3941, + [5371] = 5288, + [5372] = 4166, + [5373] = 4498, + [5374] = 4551, + [5375] = 3815, + [5376] = 4402, + [5377] = 5377, + [5378] = 4403, + [5379] = 4404, + [5380] = 4406, + [5381] = 4407, + [5382] = 4411, + [5383] = 4412, + [5384] = 5269, + [5385] = 3581, + [5386] = 4499, + [5387] = 4336, + [5388] = 5368, + [5389] = 5271, + [5390] = 5377, + [5391] = 1970, + [5392] = 4500, + [5393] = 4491, + [5394] = 4492, + [5395] = 4493, + [5396] = 3675, + [5397] = 4400, + [5398] = 4401, + [5399] = 3779, + [5400] = 4498, + [5401] = 4402, + [5402] = 4403, + [5403] = 4404, + [5404] = 4406, + [5405] = 4407, + [5406] = 4411, + [5407] = 4412, + [5408] = 4499, + [5409] = 3140, + [5410] = 4500, + [5411] = 4413, + [5412] = 4414, + [5413] = 4419, + [5414] = 3124, + [5415] = 3601, + [5416] = 5275, + [5417] = 3679, + [5418] = 4162, + [5419] = 4163, + [5420] = 4159, + [5421] = 3820, + [5422] = 4160, + [5423] = 2147, + [5424] = 3732, + [5425] = 5377, + [5426] = 3804, + [5427] = 5286, + [5428] = 3757, + [5429] = 3674, + [5430] = 3603, + [5431] = 3581, + [5432] = 4159, + [5433] = 4160, + [5434] = 5377, + [5435] = 1114, + [5436] = 3152, + [5437] = 5377, + [5438] = 3888, + [5439] = 5377, + [5440] = 3517, + [5441] = 4419, + [5442] = 3782, + [5443] = 3608, + [5444] = 3611, + [5445] = 5377, + [5446] = 3172, + [5447] = 4491, + [5448] = 3180, + [5449] = 2799, + [5450] = 5377, + [5451] = 1996, + [5452] = 3779, + [5453] = 3848, + [5454] = 1965, + [5455] = 2063, + [5456] = 3850, + [5457] = 3851, + [5458] = 1968, + [5459] = 1969, + [5460] = 3628, + [5461] = 3852, + [5462] = 4413, + [5463] = 3853, + [5464] = 5464, + [5465] = 3856, + [5466] = 3517, + [5467] = 3664, + [5468] = 2317, + [5469] = 2318, + [5470] = 3814, + [5471] = 2049, + [5472] = 2170, + [5473] = 3782, + [5474] = 4491, + [5475] = 3791, + [5476] = 3792, + [5477] = 4492, + [5478] = 3794, + [5479] = 4493, + [5480] = 4400, + [5481] = 4401, + [5482] = 4498, + [5483] = 3815, + [5484] = 4402, + [5485] = 4403, + [5486] = 4404, + [5487] = 4406, + [5488] = 4407, + [5489] = 4411, + [5490] = 4412, + [5491] = 4499, + [5492] = 4419, + [5493] = 3820, + [5494] = 4413, + [5495] = 4414, + [5496] = 4419, + [5497] = 4421, + [5498] = 5269, + [5499] = 3198, + [5500] = 1994, + [5501] = 3637, + [5502] = 4400, + [5503] = 4149, + [5504] = 3772, + [5505] = 3216, + [5506] = 3111, + [5507] = 4414, + [5508] = 3791, + [5509] = 4401, + [5510] = 3792, + [5511] = 5288, + [5512] = 4165, + [5513] = 5513, + [5514] = 4149, + [5515] = 1958, + [5516] = 4498, + [5517] = 3815, + [5518] = 4402, + [5519] = 4403, + [5520] = 4404, + [5521] = 4406, + [5522] = 4407, + [5523] = 1964, + [5524] = 4411, + [5525] = 4412, + [5526] = 4499, + [5527] = 4500, + [5528] = 1966, + [5529] = 1967, + [5530] = 3638, + [5531] = 3640, + [5532] = 3655, + [5533] = 4421, + [5534] = 3172, + [5535] = 3805, + [5536] = 3671, + [5537] = 3894, + [5538] = 3899, + [5539] = 3779, + [5540] = 3781, + [5541] = 3673, + [5542] = 3709, + [5543] = 3732, + [5544] = 3930, + [5545] = 288, + [5546] = 3798, + [5547] = 3709, + [5548] = 2957, + [5549] = 2960, + [5550] = 3675, + [5551] = 3657, + [5552] = 4551, + [5553] = 3679, + [5554] = 285, + [5555] = 2983, + [5556] = 3804, + [5557] = 3004, + [5558] = 3931, + [5559] = 3101, + [5560] = 3094, + [5561] = 3828, + [5562] = 2538, + [5563] = 3941, + [5564] = 3844, + [5565] = 1112, + [5566] = 3854, + [5567] = 3866, + [5568] = 2317, + [5569] = 3892, + [5570] = 3875, + [5571] = 3878, + [5572] = 3881, + [5573] = 3826, + [5574] = 2087, + [5575] = 3152, + [5576] = 3779, + [5577] = 3898, + [5578] = 3847, + [5579] = 3887, + [5580] = 2565, + [5581] = 3687, + [5582] = 3779, + [5583] = 3101, + [5584] = 3950, + [5585] = 3140, + [5586] = 3611, + [5587] = 3906, + [5588] = 3943, + [5589] = 3903, + [5590] = 3841, + [5591] = 3094, + [5592] = 3149, + [5593] = 3152, + [5594] = 3180, + [5595] = 3907, + [5596] = 3937, + [5597] = 3678, + [5598] = 3647, + [5599] = 3911, + [5600] = 3198, + [5601] = 3216, + [5602] = 2556, + [5603] = 3111, + [5604] = 1114, + [5605] = 3027, + [5606] = 3622, + [5607] = 3938, + [5608] = 3038, + [5609] = 3833, + [5610] = 3912, + [5611] = 3645, + [5612] = 1970, + [5613] = 2053, + [5614] = 3837, + [5615] = 3908, + [5616] = 1963, + [5617] = 3840, + [5618] = 3849, + [5619] = 3913, + [5620] = 3888, + [5621] = 3068, + [5622] = 3124, + [5623] = 3688, + [5624] = 2318, + [5625] = 1965, + [5626] = 1968, + [5627] = 1969, + [5628] = 3939, + [5629] = 3951, + [5630] = 2146, + [5631] = 2207, + [5632] = 1964, + [5633] = 1966, + [5634] = 3140, + [5635] = 3864, + [5636] = 3876, + [5637] = 3844, + [5638] = 3779, + [5639] = 3779, + [5640] = 3890, + [5641] = 3608, + [5642] = 3882, + [5643] = 3637, + [5644] = 3180, + [5645] = 3703, + [5646] = 3944, + [5647] = 3817, + [5648] = 3938, + [5649] = 3817, + [5650] = 3678, + [5651] = 3859, + [5652] = 2955, + [5653] = 2049, + [5654] = 3638, + [5655] = 2976, + [5656] = 3814, + [5657] = 3640, + [5658] = 3641, + [5659] = 2565, + [5660] = 3933, + [5661] = 3809, + [5662] = 3845, + [5663] = 3874, + [5664] = 3900, + [5665] = 4580, + [5666] = 3331, + [5667] = 3915, + [5668] = 3926, + [5669] = 3781, + [5670] = 4580, + [5671] = 3006, + [5672] = 3703, + [5673] = 3002, + [5674] = 3814, + [5675] = 3928, + [5676] = 3172, + [5677] = 3651, + [5678] = 4551, + [5679] = 3809, + [5680] = 3827, + [5681] = 3655, + [5682] = 3779, + [5683] = 3910, + [5684] = 3198, + [5685] = 3216, + [5686] = 3009, + [5687] = 3111, + [5688] = 2538, + [5689] = 3647, + [5690] = 3779, + [5691] = 3848, + [5692] = 3804, + [5693] = 3625, + [5694] = 3626, + [5695] = 3850, + [5696] = 3628, + [5697] = 1946, + [5698] = 3124, + [5699] = 3769, + [5700] = 3938, + [5701] = 3851, + [5702] = 3852, + [5703] = 3664, + [5704] = 3853, + [5705] = 3856, + [5706] = 3149, + [5707] = 2556, + [5708] = 3857, + [5709] = 3768, + [5710] = 3795, + [5711] = 3601, + [5712] = 3869, + [5713] = 3780, + [5714] = 3785, + [5715] = 3085, + [5716] = 3024, + [5717] = 3603, + [5718] = 3645, + [5719] = 3779, + [5720] = 3034, + [5721] = 3669, + [5722] = 3889, + [5723] = 1967, + [5724] = 3926, + [5725] = 3826, + [5726] = 3768, + [5727] = 3837, + [5728] = 3780, + [5729] = 3912, + [5730] = 3785, + [5731] = 3913, + [5732] = 3805, + [5733] = 3828, + [5734] = 3854, + [5735] = 5735, + [5736] = 3866, + [5737] = 4402, + [5738] = 3887, + [5739] = 3881, + [5740] = 3943, + [5741] = 3874, + [5742] = 2977, + [5743] = 4163, + [5744] = 3889, + [5745] = 4149, + [5746] = 3898, + [5747] = 3847, + [5748] = 4403, + [5749] = 3943, + [5750] = 2799, + [5751] = 3833, + [5752] = 3930, + [5753] = 3910, + [5754] = 3903, + [5755] = 3845, + [5756] = 3763, + [5757] = 4404, + [5758] = 3898, + [5759] = 4400, + [5760] = 3913, + [5761] = 3798, + [5762] = 3864, + [5763] = 3844, + [5764] = 3815, + [5765] = 4406, + [5766] = 3826, + [5767] = 3937, + [5768] = 3844, + [5769] = 3782, + [5770] = 3878, + [5771] = 2119, + [5772] = 3894, + [5773] = 4491, + [5774] = 3931, + [5775] = 3847, + [5776] = 3926, + [5777] = 3859, + [5778] = 3833, + [5779] = 3939, + [5780] = 3887, + [5781] = 3732, + [5782] = 3841, + [5783] = 4165, + [5784] = 3928, + [5785] = 3795, + [5786] = 3837, + [5787] = 5787, + [5788] = 3780, + [5789] = 3892, + [5790] = 3912, + [5791] = 5791, + [5792] = 3791, + [5793] = 3792, + [5794] = 3768, + [5795] = 3827, + [5796] = 3857, + [5797] = 3869, + [5798] = 4159, + [5799] = 3937, + [5800] = 3944, + [5801] = 3906, + [5802] = 4160, + [5803] = 3888, + [5804] = 3820, + [5805] = 3845, + [5806] = 4407, + [5807] = 3892, + [5808] = 3828, + [5809] = 3878, + [5810] = 4401, + [5811] = 3795, + [5812] = 3794, + [5813] = 3939, + [5814] = 5814, + [5815] = 4411, + [5816] = 3933, + [5817] = 3881, + [5818] = 4492, + [5819] = 3854, + [5820] = 3906, + [5821] = 3794, + [5822] = 2762, + [5823] = 3844, + [5824] = 4412, + [5825] = 1963, + [5826] = 3844, + [5827] = 3943, + [5828] = 4499, + [5829] = 4421, + [5830] = 3859, + [5831] = 3944, + [5832] = 4493, + [5833] = 3950, + [5834] = 3911, + [5835] = 3769, + [5836] = 3848, + [5837] = 3782, + [5838] = 3951, + [5839] = 4162, + [5840] = 3805, + [5841] = 3850, + [5842] = 3785, + [5843] = 3899, + [5844] = 3888, + [5845] = 3851, + [5846] = 3951, + [5847] = 3944, + [5848] = 3840, + [5849] = 3852, + [5850] = 3814, + [5851] = 3791, + [5852] = 2851, + [5853] = 3849, + [5854] = 3848, + [5855] = 3941, + [5856] = 3850, + [5857] = 3029, + [5858] = 3851, + [5859] = 3852, + [5860] = 3853, + [5861] = 3853, + [5862] = 3894, + [5863] = 3856, + [5864] = 3915, + [5865] = 4413, + [5866] = 4419, + [5867] = 3930, + [5868] = 3875, + [5869] = 3827, + [5870] = 3882, + [5871] = 3856, + [5872] = 4500, + [5873] = 5873, + [5874] = 5735, + [5875] = 3874, + [5876] = 3899, + [5877] = 3928, + [5878] = 2118, + [5879] = 2757, + [5880] = 3950, + [5881] = 3071, + [5882] = 3941, + [5883] = 3857, + [5884] = 3779, + [5885] = 5735, + [5886] = 4498, + [5887] = 3876, + [5888] = 3890, + [5889] = 3882, + [5890] = 3907, + [5891] = 5891, + [5892] = 4157, + [5893] = 2994, + [5894] = 3875, + [5895] = 3840, + [5896] = 3849, + [5897] = 3769, + [5898] = 3071, + [5899] = 3844, + [5900] = 3911, + [5901] = 3889, + [5902] = 3907, + [5903] = 3804, + [5904] = 3869, + [5905] = 3844, + [5906] = 3798, + [5907] = 3029, + [5908] = 2973, + [5909] = 3908, + [5910] = 3908, + [5911] = 2977, + [5912] = 2994, + [5913] = 3876, + [5914] = 3815, + [5915] = 3890, + [5916] = 1963, + [5917] = 3900, + [5918] = 3910, + [5919] = 3820, + [5920] = 3900, + [5921] = 3781, + [5922] = 4166, + [5923] = 3903, + [5924] = 3869, + [5925] = 3882, + [5926] = 3931, + [5927] = 3866, + [5928] = 3864, + [5929] = 3841, + [5930] = 4414, + [5931] = 3915, + [5932] = 2973, + [5933] = 3933, + [5934] = 3792, + [5935] = 3804, + [5936] = 2129, + [5937] = 3933, + [5938] = 2158, + [5939] = 3331, + [5940] = 1994, + [5941] = 4580, + [5942] = 3781, + [5943] = 2211, + [5944] = 3866, + [5945] = 2165, + [5946] = 3939, + [5947] = 3881, + [5948] = 5948, + [5949] = 3880, + [5950] = 3891, + [5951] = 3895, + [5952] = 3896, + [5953] = 3906, + [5954] = 2172, + [5955] = 3875, + [5956] = 3907, + [5957] = 3908, + [5958] = 3910, + [5959] = 3854, + [5960] = 3891, + [5961] = 3827, + [5962] = 4336, + [5963] = 3895, + [5964] = 3887, + [5965] = 3833, + [5966] = 3913, + [5967] = 3763, + [5968] = 5948, + [5969] = 3899, + [5970] = 2223, + [5971] = 3845, + [5972] = 3674, + [5973] = 2169, + [5974] = 1958, + [5975] = 2161, + [5976] = 3828, + [5977] = 3898, + [5978] = 3847, + [5979] = 2171, + [5980] = 3859, + [5981] = 3912, + [5982] = 3857, + [5983] = 3896, + [5984] = 3814, + [5985] = 3864, + [5986] = 3937, + [5987] = 2762, + [5988] = 3950, + [5989] = 2136, + [5990] = 3837, + [5991] = 3878, + [5992] = 3889, + [5993] = 2139, + [5994] = 3896, + [5995] = 2028, + [5996] = 3331, + [5997] = 3876, + [5998] = 3951, + [5999] = 2140, + [6000] = 2144, + [6001] = 3880, + [6002] = 3674, + [6003] = 5948, + [6004] = 4551, + [6005] = 2134, + [6006] = 3891, + [6007] = 3903, + [6008] = 2151, + [6009] = 3841, + [6010] = 2137, + [6011] = 3674, + [6012] = 3895, + [6013] = 3896, + [6014] = 3890, + [6015] = 3880, + [6016] = 2757, + [6017] = 1996, + [6018] = 2799, + [6019] = 6019, + [6020] = 3880, + [6021] = 3891, + [6022] = 3895, + [6023] = 3840, + [6024] = 3849, + [6025] = 2851, + [6026] = 2233, + [6027] = 3889, + [6028] = 2205, + [6029] = 2799, + [6030] = 2762, + [6031] = 2221, + [6032] = 2184, + [6033] = 2232, + [6034] = 3837, + [6035] = 3845, + [6036] = 2176, + [6037] = 3950, + [6038] = 6038, + [6039] = 3943, + [6040] = 3875, + [6041] = 3903, + [6042] = 3849, + [6043] = 3857, + [6044] = 3869, + [6045] = 3906, + [6046] = 3907, + [6047] = 3908, + [6048] = 3951, + [6049] = 3882, + [6050] = 2222, + [6051] = 2197, + [6052] = 3890, + [6053] = 2317, + [6054] = 2851, + [6055] = 2198, + [6056] = 2200, + [6057] = 3887, + [6058] = 3827, + [6059] = 2201, + [6060] = 2226, + [6061] = 2238, + [6062] = 2237, + [6063] = 2178, + [6064] = 2227, + [6065] = 2228, + [6066] = 3763, + [6067] = 2757, + [6068] = 1996, + [6069] = 1994, + [6070] = 2236, + [6071] = 3912, + [6072] = 2799, + [6073] = 2234, + [6074] = 2181, + [6075] = 2225, + [6076] = 3913, + [6077] = 2183, + [6078] = 2186, + [6079] = 6079, + [6080] = 2191, + [6081] = 3910, + [6082] = 2202, + [6083] = 3841, + [6084] = 2230, + [6085] = 2189, + [6086] = 1963, + [6087] = 2851, + [6088] = 3937, + [6089] = 2192, + [6090] = 3944, + [6091] = 2196, + [6092] = 2177, + [6093] = 3899, + [6094] = 3939, + [6095] = 3828, + [6096] = 3898, + [6097] = 3854, + [6098] = 3847, + [6099] = 2194, + [6100] = 2757, + [6101] = 3864, + [6102] = 2199, + [6103] = 3840, + [6104] = 3859, + [6105] = 3866, + [6106] = 3876, + [6107] = 3878, + [6108] = 3881, + [6109] = 2185, + [6110] = 2762, + [6111] = 2994, + [6112] = 3933, + [6113] = 3833, + [6114] = 2994, + [6115] = 2235, + [6116] = 3071, + [6117] = 2204, + [6118] = 3029, + [6119] = 2973, + [6120] = 2318, + [6121] = 3071, + [6122] = 2190, + [6123] = 3029, + [6124] = 2977, + [6125] = 2229, + [6126] = 2973, + [6127] = 2195, + [6128] = 2977, + [6129] = 2193, + [6130] = 2762, + [6131] = 2757, + [6132] = 1994, + [6133] = 2318, + [6134] = 2762, + [6135] = 3674, + [6136] = 2317, + [6137] = 2803, + [6138] = 2799, + [6139] = 2799, + [6140] = 1996, + [6141] = 3674, + [6142] = 2851, + [6143] = 2757, + [6144] = 1984, + [6145] = 2851, + [6146] = 2803, + [6147] = 3763, + [6148] = 4162, + [6149] = 4163, + [6150] = 4165, + [6151] = 4166, + [6152] = 4149, + [6153] = 1994, + [6154] = 2902, + [6155] = 1958, + [6156] = 4159, + [6157] = 2903, + [6158] = 4157, + [6159] = 1996, + [6160] = 3880, + [6161] = 4160, + [6162] = 3891, + [6163] = 3895, + [6164] = 3896, + [6165] = 2902, + [6166] = 4159, + [6167] = 3896, + [6168] = 3674, + [6169] = 3763, + [6170] = 4162, + [6171] = 4160, + [6172] = 1996, + [6173] = 1994, + [6174] = 6038, + [6175] = 4163, + [6176] = 1994, + [6177] = 4149, + [6178] = 2082, + [6179] = 4165, + [6180] = 1996, + [6181] = 4157, + [6182] = 4166, + [6183] = 6038, + [6184] = 3763, + [6185] = 6038, + [6186] = 3763, + [6187] = 2070, + [6188] = 3657, + [6189] = 3880, + [6190] = 3622, + [6191] = 3891, + [6192] = 3895, + [6193] = 2903, + [6194] = 6194, + [6195] = 1996, + [6196] = 1994, + [6197] = 371, + [6198] = 6198, [6199] = 6199, - [6200] = 5943, - [6201] = 4083, - [6202] = 6202, - [6203] = 4084, - [6204] = 4085, - [6205] = 4086, - [6206] = 4090, - [6207] = 6207, - [6208] = 2184, - [6209] = 2959, - [6210] = 1974, - [6211] = 6211, - [6212] = 2864, - [6213] = 2867, - [6214] = 6202, - [6215] = 2911, - [6216] = 6207, - [6217] = 6211, - [6218] = 6189, - [6219] = 2959, - [6220] = 2213, - [6221] = 2867, - [6222] = 6222, - [6223] = 2872, - [6224] = 2872, - [6225] = 4092, - [6226] = 2184, - [6227] = 2872, - [6228] = 2864, - [6229] = 4083, - [6230] = 4084, - [6231] = 4085, - [6232] = 4086, - [6233] = 2864, - [6234] = 2911, - [6235] = 2959, - [6236] = 2867, - [6237] = 4319, - [6238] = 2872, - [6239] = 4320, - [6240] = 4321, - [6241] = 2864, - [6242] = 4431, - [6243] = 4432, - [6244] = 4391, - [6245] = 4433, - [6246] = 4434, - [6247] = 4435, - [6248] = 4436, - [6249] = 4437, - [6250] = 4438, - [6251] = 4439, - [6252] = 4392, - [6253] = 4393, - [6254] = 2911, - [6255] = 4440, - [6256] = 4441, - [6257] = 4442, - [6258] = 4443, - [6259] = 4087, - [6260] = 4089, - [6261] = 4090, - [6262] = 4092, - [6263] = 2959, - [6264] = 1901, - [6265] = 2867, - [6266] = 1853, - [6267] = 2213, - [6268] = 3915, - [6269] = 3122, - [6270] = 4469, - [6271] = 6271, - [6272] = 6272, - [6273] = 6273, - [6274] = 6274, - [6275] = 6275, - [6276] = 3129, - [6277] = 6277, - [6278] = 3861, - [6279] = 6273, - [6280] = 1899, - [6281] = 6271, - [6282] = 6282, - [6283] = 6273, - [6284] = 6273, - [6285] = 6273, - [6286] = 6271, - [6287] = 1928, - [6288] = 2213, - [6289] = 6275, - [6290] = 6271, - [6291] = 1964, - [6292] = 6271, - [6293] = 6277, - [6294] = 6273, - [6295] = 3141, - [6296] = 1943, - [6297] = 3141, - [6298] = 3902, - [6299] = 1918, - [6300] = 2184, - [6301] = 3105, - [6302] = 3920, - [6303] = 6275, - [6304] = 1889, - [6305] = 3936, - [6306] = 1891, - [6307] = 3105, - [6308] = 4478, - [6309] = 6273, - [6310] = 1965, - [6311] = 1961, - [6312] = 1975, - [6313] = 3129, - [6314] = 3122, - [6315] = 1958, - [6316] = 1972, - [6317] = 4469, - [6318] = 4478, - [6319] = 4092, - [6320] = 2889, - [6321] = 4392, - [6322] = 2895, - [6323] = 2903, - [6324] = 4442, - [6325] = 4087, - [6326] = 4089, - [6327] = 4090, - [6328] = 1974, - [6329] = 3223, - [6330] = 4320, - [6331] = 3248, - [6332] = 4437, - [6333] = 4438, - [6334] = 4319, - [6335] = 1855, - [6336] = 2004, - [6337] = 4433, - [6338] = 4439, - [6339] = 4434, - [6340] = 6340, - [6341] = 4435, - [6342] = 2003, - [6343] = 4436, - [6344] = 6340, - [6345] = 4443, - [6346] = 2893, - [6347] = 2951, - [6348] = 2960, - [6349] = 256, - [6350] = 1889, - [6351] = 2910, - [6352] = 2897, - [6353] = 2976, - [6354] = 6340, - [6355] = 4431, - [6356] = 6340, - [6357] = 2845, - [6358] = 2913, - [6359] = 2002, - [6360] = 2005, - [6361] = 6340, - [6362] = 2980, - [6363] = 4393, - [6364] = 2007, - [6365] = 4083, - [6366] = 4440, - [6367] = 2929, - [6368] = 4084, - [6369] = 6340, - [6370] = 2006, - [6371] = 1891, - [6372] = 4085, - [6373] = 4321, - [6374] = 6374, - [6375] = 4086, - [6376] = 4087, - [6377] = 4089, - [6378] = 4090, - [6379] = 4092, - [6380] = 3223, - [6381] = 4083, - [6382] = 4441, - [6383] = 4084, - [6384] = 4085, - [6385] = 4086, - [6386] = 253, - [6387] = 4432, - [6388] = 2890, - [6389] = 3248, - [6390] = 6340, - [6391] = 4391, - [6392] = 1969, - [6393] = 2917, - [6394] = 3383, - [6395] = 2006, - [6396] = 4085, - [6397] = 4393, - [6398] = 6398, - [6399] = 4431, - [6400] = 4434, - [6401] = 3405, - [6402] = 4086, - [6403] = 4435, - [6404] = 3472, - [6405] = 2005, - [6406] = 2007, - [6407] = 4436, - [6408] = 2012, - [6409] = 1008, - [6410] = 3405, - [6411] = 1009, - [6412] = 4437, - [6413] = 1008, - [6414] = 4438, - [6415] = 3395, - [6416] = 4440, - [6417] = 2002, - [6418] = 4084, - [6419] = 3405, - [6420] = 3383, - [6421] = 1009, - [6422] = 3395, - [6423] = 6423, - [6424] = 4441, - [6425] = 4432, - [6426] = 4319, - [6427] = 6427, - [6428] = 4087, - [6429] = 4089, - [6430] = 4090, - [6431] = 4092, - [6432] = 4442, - [6433] = 4392, - [6434] = 3383, - [6435] = 3472, - [6436] = 6436, - [6437] = 4433, - [6438] = 2003, - [6439] = 3472, - [6440] = 4320, - [6441] = 2004, - [6442] = 4321, - [6443] = 3395, - [6444] = 4083, - [6445] = 4443, - [6446] = 4391, - [6447] = 4439, - [6448] = 6448, - [6449] = 3507, - [6450] = 2893, - [6451] = 3578, - [6452] = 2910, - [6453] = 2897, - [6454] = 3580, - [6455] = 6455, - [6456] = 6456, - [6457] = 3581, - [6458] = 3590, - [6459] = 6448, - [6460] = 2976, - [6461] = 2845, - [6462] = 6462, - [6463] = 6463, - [6464] = 3578, - [6465] = 6463, - [6466] = 3580, - [6467] = 3497, - [6468] = 3581, - [6469] = 3590, - [6470] = 3576, - [6471] = 6455, - [6472] = 6456, - [6473] = 6448, - [6474] = 2005, - [6475] = 3521, - [6476] = 1931, - [6477] = 3522, - [6478] = 3525, - [6479] = 3526, - [6480] = 6463, - [6481] = 3595, - [6482] = 3528, - [6483] = 3494, - [6484] = 3535, - [6485] = 1942, - [6486] = 3541, - [6487] = 6455, - [6488] = 3510, - [6489] = 6448, - [6490] = 3543, - [6491] = 2889, - [6492] = 3516, - [6493] = 6448, - [6494] = 1941, - [6495] = 3511, - [6496] = 6448, - [6497] = 3515, - [6498] = 6448, - [6499] = 256, - [6500] = 6448, - [6501] = 6448, - [6502] = 253, - [6503] = 6448, - [6504] = 6448, - [6505] = 6448, - [6506] = 6448, - [6507] = 6448, - [6508] = 6448, - [6509] = 3497, - [6510] = 6455, - [6511] = 4478, - [6512] = 6456, - [6513] = 3521, - [6514] = 3522, - [6515] = 6448, - [6516] = 3525, - [6517] = 3526, - [6518] = 1954, - [6519] = 1968, - [6520] = 6462, - [6521] = 2006, - [6522] = 6522, - [6523] = 1866, - [6524] = 3528, - [6525] = 1857, - [6526] = 1858, - [6527] = 1859, - [6528] = 1860, - [6529] = 3523, - [6530] = 1861, - [6531] = 1862, - [6532] = 6448, - [6533] = 6463, - [6534] = 3535, - [6535] = 4469, - [6536] = 3515, - [6537] = 6463, - [6538] = 3541, - [6539] = 3543, - [6540] = 3588, - [6541] = 6541, - [6542] = 3565, - [6543] = 3573, - [6544] = 2007, - [6545] = 2022, - [6546] = 2003, - [6547] = 6455, - [6548] = 6456, - [6549] = 1965, - [6550] = 2004, - [6551] = 6455, - [6552] = 1974, - [6553] = 6448, - [6554] = 2890, - [6555] = 3516, - [6556] = 3588, - [6557] = 3576, - [6558] = 3513, - [6559] = 6455, - [6560] = 6456, - [6561] = 6448, - [6562] = 6562, - [6563] = 6463, - [6564] = 2903, - [6565] = 6456, - [6566] = 6455, - [6567] = 6455, - [6568] = 6456, - [6569] = 2166, - [6570] = 1975, - [6571] = 6448, - [6572] = 2951, - [6573] = 6462, - [6574] = 6462, - [6575] = 2960, - [6576] = 6576, - [6577] = 3595, - [6578] = 3494, - [6579] = 3523, - [6580] = 2917, - [6581] = 3511, - [6582] = 2895, - [6583] = 2039, - [6584] = 6463, - [6585] = 3565, - [6586] = 1972, - [6587] = 3573, - [6588] = 3507, - [6589] = 3492, - [6590] = 3492, - [6591] = 2166, - [6592] = 6463, - [6593] = 6593, - [6594] = 2913, - [6595] = 3507, - [6596] = 6456, - [6597] = 2980, - [6598] = 2929, - [6599] = 3588, - [6600] = 3576, - [6601] = 6448, - [6602] = 1954, - [6603] = 1954, - [6604] = 3513, - [6605] = 1986, - [6606] = 1987, - [6607] = 2002, - [6608] = 6608, - [6609] = 6609, - [6610] = 3595, - [6611] = 1990, - [6612] = 3510, - [6613] = 1995, - [6614] = 1964, - [6615] = 6615, - [6616] = 6616, - [6617] = 4393, - [6618] = 2004, - [6619] = 4393, - [6620] = 4440, - [6621] = 4441, - [6622] = 4442, - [6623] = 2007, - [6624] = 6616, - [6625] = 4443, - [6626] = 4443, - [6627] = 3689, - [6628] = 4319, - [6629] = 4442, - [6630] = 6630, - [6631] = 6631, - [6632] = 2002, - [6633] = 6199, - [6634] = 4431, - [6635] = 4440, + [6200] = 3000, + [6201] = 3065, + [6202] = 6198, + [6203] = 368, + [6204] = 3018, + [6205] = 2121, + [6206] = 6199, + [6207] = 6199, + [6208] = 379, + [6209] = 370, + [6210] = 2028, + [6211] = 6198, + [6212] = 469, + [6213] = 6199, + [6214] = 6214, + [6215] = 2102, + [6216] = 380, + [6217] = 3079, + [6218] = 367, + [6219] = 6199, + [6220] = 2956, + [6221] = 2958, + [6222] = 6194, + [6223] = 6214, + [6224] = 6214, + [6225] = 6194, + [6226] = 328, + [6227] = 389, + [6228] = 369, + [6229] = 361, + [6230] = 6194, + [6231] = 6198, + [6232] = 6194, + [6233] = 385, + [6234] = 2103, + [6235] = 2101, + [6236] = 2956, + [6237] = 2958, + [6238] = 6214, + [6239] = 6199, + [6240] = 326, + [6241] = 6214, + [6242] = 6194, + [6243] = 6198, + [6244] = 381, + [6245] = 362, + [6246] = 3000, + [6247] = 6199, + [6248] = 3065, + [6249] = 3079, + [6250] = 3018, + [6251] = 508, + [6252] = 2126, + [6253] = 6194, + [6254] = 378, + [6255] = 6214, + [6256] = 2075, + [6257] = 6214, + [6258] = 6198, + [6259] = 6198, + [6260] = 2105, + [6261] = 366, + [6262] = 1987, + [6263] = 2105, + [6264] = 2102, + [6265] = 1996, + [6266] = 1994, + [6267] = 3896, + [6268] = 3895, + [6269] = 3895, + [6270] = 3896, + [6271] = 3896, + [6272] = 3891, + [6273] = 3895, + [6274] = 3891, + [6275] = 3674, + [6276] = 3880, + [6277] = 3896, + [6278] = 3891, + [6279] = 3880, + [6280] = 3674, + [6281] = 3880, + [6282] = 3622, + [6283] = 2103, + [6284] = 6284, + [6285] = 2101, + [6286] = 3895, + [6287] = 2126, + [6288] = 3657, + [6289] = 2121, + [6290] = 3891, + [6291] = 3880, + [6292] = 3071, + [6293] = 6293, + [6294] = 2973, + [6295] = 3029, + [6296] = 6293, + [6297] = 4159, + [6298] = 4499, + [6299] = 3071, + [6300] = 4160, + [6301] = 6301, + [6302] = 4162, + [6303] = 2318, + [6304] = 6304, + [6305] = 2977, + [6306] = 3071, + [6307] = 4402, + [6308] = 4159, + [6309] = 4498, + [6310] = 6310, + [6311] = 4165, + [6312] = 6038, + [6313] = 4413, + [6314] = 2977, + [6315] = 2994, + [6316] = 3071, + [6317] = 1958, + [6318] = 2973, + [6319] = 2973, + [6320] = 4162, + [6321] = 2994, + [6322] = 4163, + [6323] = 2977, + [6324] = 3029, + [6325] = 2078, + [6326] = 4160, + [6327] = 4491, + [6328] = 4400, + [6329] = 4149, + [6330] = 4401, + [6331] = 4162, + [6332] = 3029, + [6333] = 4403, + [6334] = 4163, + [6335] = 1994, + [6336] = 4149, + [6337] = 4419, + [6338] = 4421, + [6339] = 4166, + [6340] = 2317, + [6341] = 2994, + [6342] = 4411, + [6343] = 4500, + [6344] = 4163, + [6345] = 6345, + [6346] = 4165, + [6347] = 4412, + [6348] = 4404, + [6349] = 4159, + [6350] = 2994, + [6351] = 1996, + [6352] = 6352, + [6353] = 2977, + [6354] = 4492, + [6355] = 6352, + [6356] = 6356, + [6357] = 2973, + [6358] = 4165, + [6359] = 4493, + [6360] = 2001, + [6361] = 4160, + [6362] = 4149, + [6363] = 3029, + [6364] = 4406, + [6365] = 4407, + [6366] = 4157, + [6367] = 6304, + [6368] = 4157, + [6369] = 4166, + [6370] = 4414, + [6371] = 2317, + [6372] = 2016, + [6373] = 4157, + [6374] = 2318, + [6375] = 4166, + [6376] = 6310, + [6377] = 2026, + [6378] = 6378, + [6379] = 2317, + [6380] = 6380, + [6381] = 2318, + [6382] = 6378, + [6383] = 6383, + [6384] = 2058, + [6385] = 6385, + [6386] = 4580, + [6387] = 2082, + [6388] = 2070, + [6389] = 4017, + [6390] = 3979, + [6391] = 6380, + [6392] = 4006, + [6393] = 3125, + [6394] = 6378, + [6395] = 3129, + [6396] = 6380, + [6397] = 3169, + [6398] = 6380, + [6399] = 4031, + [6400] = 3170, + [6401] = 2071, + [6402] = 4580, + [6403] = 3125, + [6404] = 4551, + [6405] = 2054, + [6406] = 6385, + [6407] = 6407, + [6408] = 3129, + [6409] = 1996, + [6410] = 1994, + [6411] = 6385, + [6412] = 3169, + [6413] = 6385, + [6414] = 6385, + [6415] = 6385, + [6416] = 6385, + [6417] = 4024, + [6418] = 6418, + [6419] = 4551, + [6420] = 2006, + [6421] = 6380, + [6422] = 6422, + [6423] = 6407, + [6424] = 3170, + [6425] = 2048, + [6426] = 2076, + [6427] = 2028, + [6428] = 4492, + [6429] = 4421, + [6430] = 3009, + [6431] = 4498, + [6432] = 4402, + [6433] = 4403, + [6434] = 4404, + [6435] = 4401, + [6436] = 4407, + [6437] = 4411, + [6438] = 4162, + [6439] = 4412, + [6440] = 4499, + [6441] = 4163, + [6442] = 3085, + [6443] = 4165, + [6444] = 3024, + [6445] = 3034, + [6446] = 4166, + [6447] = 4500, + [6448] = 2955, + [6449] = 2976, + [6450] = 1996, + [6451] = 2103, + [6452] = 2101, + [6453] = 2983, + [6454] = 3004, + [6455] = 1994, + [6456] = 3441, + [6457] = 3433, + [6458] = 2126, + [6459] = 2105, + [6460] = 3027, + [6461] = 3068, + [6462] = 3038, + [6463] = 3441, + [6464] = 2102, + [6465] = 2957, + [6466] = 2960, + [6467] = 2077, + [6468] = 3002, + [6469] = 2121, + [6470] = 4157, + [6471] = 4159, + [6472] = 4160, + [6473] = 4149, + [6474] = 2078, + [6475] = 4413, + [6476] = 288, + [6477] = 285, + [6478] = 6478, + [6479] = 4400, + [6480] = 4414, + [6481] = 6481, + [6482] = 4419, + [6483] = 4493, + [6484] = 6481, + [6485] = 6481, + [6486] = 6481, + [6487] = 4491, + [6488] = 6481, + [6489] = 6481, + [6490] = 4162, + [6491] = 1963, + [6492] = 3006, + [6493] = 4163, + [6494] = 4165, + [6495] = 4166, + [6496] = 4157, + [6497] = 4159, + [6498] = 4160, + [6499] = 4149, + [6500] = 6481, + [6501] = 3433, + [6502] = 4406, + [6503] = 4400, + [6504] = 4499, + [6505] = 3566, + [6506] = 2103, + [6507] = 2101, + [6508] = 2105, + [6509] = 3517, + [6510] = 4500, + [6511] = 3581, + [6512] = 4402, + [6513] = 3548, + [6514] = 3566, + [6515] = 3566, + [6516] = 4491, + [6517] = 4492, + [6518] = 4493, + [6519] = 6519, + [6520] = 4413, + [6521] = 4414, + [6522] = 1112, + [6523] = 1114, + [6524] = 4419, + [6525] = 4421, + [6526] = 2108, + [6527] = 3548, + [6528] = 2102, + [6529] = 6529, + [6530] = 4403, + [6531] = 6531, + [6532] = 6532, + [6533] = 4404, + [6534] = 3581, + [6535] = 3581, + [6536] = 1112, + [6537] = 4498, + [6538] = 4406, + [6539] = 1114, + [6540] = 3517, + [6541] = 4407, + [6542] = 3517, + [6543] = 4411, + [6544] = 3548, + [6545] = 4401, + [6546] = 4162, + [6547] = 4163, + [6548] = 4165, + [6549] = 2121, + [6550] = 4166, + [6551] = 4157, + [6552] = 4159, + [6553] = 4160, + [6554] = 4149, + [6555] = 4412, + [6556] = 2126, + [6557] = 3611, + [6558] = 6558, + [6559] = 6559, + [6560] = 2162, + [6561] = 6561, + [6562] = 1966, + [6563] = 6563, + [6564] = 6564, + [6565] = 6564, + [6566] = 6566, + [6567] = 2247, + [6568] = 3678, + [6569] = 3678, + [6570] = 1967, + [6571] = 3655, + [6572] = 6572, + [6573] = 3703, + [6574] = 2082, + [6575] = 3645, + [6576] = 3664, + [6577] = 3645, + [6578] = 6572, + [6579] = 2049, + [6580] = 3622, + [6581] = 2049, + [6582] = 3647, + [6583] = 2121, + [6584] = 3669, + [6585] = 6572, + [6586] = 2103, + [6587] = 2101, + [6588] = 3671, + [6589] = 6558, + [6590] = 6559, + [6591] = 3673, + [6592] = 6561, + [6593] = 6564, + [6594] = 2126, + [6595] = 2105, + [6596] = 3678, + [6597] = 2102, + [6598] = 3647, + [6599] = 6572, + [6600] = 4580, + [6601] = 2070, + [6602] = 3651, + [6603] = 6603, + [6604] = 6558, + [6605] = 6559, + [6606] = 6561, + [6607] = 3625, + [6608] = 3626, + [6609] = 6572, + [6610] = 3645, + [6611] = 4551, + [6612] = 2112, + [6613] = 3601, + [6614] = 3622, + [6615] = 3603, + [6616] = 3608, + [6617] = 3611, + [6618] = 6558, + [6619] = 6559, + [6620] = 6561, + [6621] = 6572, + [6622] = 3628, + [6623] = 3637, + [6624] = 3638, + [6625] = 3640, + [6626] = 3641, + [6627] = 6558, + [6628] = 6559, + [6629] = 6561, + [6630] = 3655, + [6631] = 3664, + [6632] = 3669, + [6633] = 3671, + [6634] = 6572, + [6635] = 3673, [6636] = 6636, - [6637] = 4391, - [6638] = 3668, - [6639] = 1969, - [6640] = 4432, - [6641] = 6641, - [6642] = 4320, - [6643] = 3666, - [6644] = 4435, - [6645] = 4436, - [6646] = 4437, - [6647] = 4438, - [6648] = 6616, - [6649] = 6616, - [6650] = 4439, - [6651] = 4087, - [6652] = 4089, - [6653] = 3668, - [6654] = 6654, - [6655] = 2006, - [6656] = 3678, - [6657] = 4083, - [6658] = 2003, - [6659] = 2004, - [6660] = 4392, - [6661] = 6661, - [6662] = 6616, - [6663] = 4393, - [6664] = 4320, - [6665] = 4431, - [6666] = 3695, - [6667] = 6661, - [6668] = 6668, - [6669] = 2004, - [6670] = 4084, - [6671] = 6654, - [6672] = 2006, - [6673] = 4085, - [6674] = 6674, - [6675] = 6616, - [6676] = 4086, - [6677] = 4443, - [6678] = 2002, - [6679] = 4441, - [6680] = 4084, - [6681] = 6661, - [6682] = 4085, - [6683] = 4092, - [6684] = 4321, - [6685] = 6661, - [6686] = 2007, - [6687] = 6674, - [6688] = 6674, - [6689] = 6641, - [6690] = 3616, - [6691] = 4391, - [6692] = 6654, - [6693] = 6693, - [6694] = 6674, - [6695] = 6695, - [6696] = 6661, - [6697] = 4090, - [6698] = 6698, - [6699] = 3685, - [6700] = 4433, - [6701] = 6701, - [6702] = 4092, - [6703] = 2002, - [6704] = 6674, - [6705] = 6616, - [6706] = 4090, - [6707] = 6616, - [6708] = 6616, - [6709] = 6698, - [6710] = 6654, - [6711] = 2005, - [6712] = 6674, - [6713] = 5195, - [6714] = 6714, - [6715] = 4434, - [6716] = 3685, - [6717] = 6616, - [6718] = 3666, - [6719] = 1855, - [6720] = 4441, - [6721] = 6721, - [6722] = 4321, - [6723] = 4435, - [6724] = 4433, - [6725] = 6725, - [6726] = 1855, - [6727] = 2003, - [6728] = 4319, - [6729] = 2012, - [6730] = 4320, - [6731] = 4321, - [6732] = 4431, - [6733] = 4432, - [6734] = 4391, - [6735] = 3685, - [6736] = 4433, - [6737] = 4434, - [6738] = 4435, - [6739] = 4436, - [6740] = 4437, - [6741] = 4438, - [6742] = 4439, - [6743] = 4392, - [6744] = 6616, - [6745] = 4393, - [6746] = 6562, - [6747] = 3678, - [6748] = 4440, - [6749] = 4441, - [6750] = 4442, - [6751] = 4086, - [6752] = 4443, - [6753] = 6661, - [6754] = 4087, - [6755] = 4089, - [6756] = 2007, - [6757] = 4436, - [6758] = 2003, + [6637] = 3675, + [6638] = 3679, + [6639] = 3687, + [6640] = 3688, + [6641] = 3675, + [6642] = 2076, + [6643] = 3679, + [6644] = 6558, + [6645] = 1964, + [6646] = 6561, + [6647] = 3657, + [6648] = 6572, + [6649] = 3006, + [6650] = 3657, + [6651] = 3009, + [6652] = 2071, + [6653] = 6558, + [6654] = 6561, + [6655] = 3085, + [6656] = 3024, + [6657] = 3034, + [6658] = 3687, + [6659] = 6561, + [6660] = 6561, + [6661] = 3688, + [6662] = 2955, + [6663] = 2976, + [6664] = 2247, + [6665] = 2983, + [6666] = 6561, + [6667] = 3004, + [6668] = 6561, + [6669] = 6561, + [6670] = 6561, + [6671] = 6561, + [6672] = 6561, + [6673] = 6561, + [6674] = 6561, + [6675] = 3027, + [6676] = 3068, + [6677] = 3038, + [6678] = 6561, + [6679] = 6561, + [6680] = 6561, + [6681] = 2957, + [6682] = 2960, + [6683] = 6558, + [6684] = 3647, + [6685] = 3002, + [6686] = 6686, + [6687] = 6687, + [6688] = 6559, + [6689] = 6564, + [6690] = 2094, + [6691] = 2083, + [6692] = 2086, + [6693] = 2090, + [6694] = 6558, + [6695] = 3603, + [6696] = 6559, + [6697] = 3628, + [6698] = 3608, + [6699] = 2037, + [6700] = 2074, + [6701] = 3651, + [6702] = 6561, + [6703] = 6703, + [6704] = 3703, + [6705] = 2078, + [6706] = 3637, + [6707] = 2047, + [6708] = 3625, + [6709] = 3626, + [6710] = 2045, + [6711] = 288, + [6712] = 285, + [6713] = 3703, + [6714] = 2049, + [6715] = 3601, + [6716] = 3638, + [6717] = 3640, + [6718] = 3641, + [6719] = 1970, + [6720] = 1965, + [6721] = 1968, + [6722] = 1969, + [6723] = 6559, + [6724] = 4406, + [6725] = 2105, + [6726] = 2105, + [6727] = 2102, + [6728] = 4412, + [6729] = 4499, + [6730] = 4159, + [6731] = 6731, + [6732] = 4493, + [6733] = 6733, + [6734] = 4500, + [6735] = 6735, + [6736] = 4421, + [6737] = 4157, + [6738] = 3791, + [6739] = 3792, + [6740] = 6740, + [6741] = 2121, + [6742] = 6742, + [6743] = 4159, + [6744] = 6735, + [6745] = 4160, + [6746] = 2121, + [6747] = 6747, + [6748] = 4160, + [6749] = 4149, + [6750] = 4162, + [6751] = 4163, + [6752] = 3820, + [6753] = 4403, + [6754] = 1963, + [6755] = 3815, + [6756] = 6756, + [6757] = 6735, + [6758] = 4413, [6759] = 6759, - [6760] = 2005, - [6761] = 6616, - [6762] = 4437, - [6763] = 6763, - [6764] = 6764, + [6760] = 6760, + [6761] = 6735, + [6762] = 2126, + [6763] = 2108, + [6764] = 2102, [6765] = 6765, - [6766] = 4442, - [6767] = 4083, - [6768] = 3689, - [6769] = 6693, - [6770] = 6616, - [6771] = 6771, - [6772] = 4440, - [6773] = 4319, - [6774] = 3689, - [6775] = 4319, - [6776] = 3666, - [6777] = 3668, - [6778] = 4438, - [6779] = 4320, - [6780] = 3695, - [6781] = 3616, - [6782] = 4321, - [6783] = 4434, + [6766] = 6766, + [6767] = 6735, + [6768] = 1963, + [6769] = 6769, + [6770] = 4419, + [6771] = 3782, + [6772] = 4165, + [6773] = 6735, + [6774] = 4402, + [6775] = 4491, + [6776] = 6776, + [6777] = 6777, + [6778] = 4163, + [6779] = 6776, + [6780] = 6777, + [6781] = 4400, + [6782] = 3791, + [6783] = 4401, [6784] = 6784, - [6785] = 4439, - [6786] = 2005, - [6787] = 6787, - [6788] = 4431, - [6789] = 6789, - [6790] = 3678, - [6791] = 2006, - [6792] = 4392, - [6793] = 6793, - [6794] = 4432, - [6795] = 6795, - [6796] = 3695, - [6797] = 6674, - [6798] = 4432, - [6799] = 4391, - [6800] = 6616, - [6801] = 4433, - [6802] = 4434, - [6803] = 4435, - [6804] = 1998, + [6785] = 4498, + [6786] = 4402, + [6787] = 4403, + [6788] = 4404, + [6789] = 4406, + [6790] = 4407, + [6791] = 4411, + [6792] = 4412, + [6793] = 4499, + [6794] = 6735, + [6795] = 4500, + [6796] = 4413, + [6797] = 4414, + [6798] = 4419, + [6799] = 4421, + [6800] = 3732, + [6801] = 3792, + [6802] = 4492, + [6803] = 3794, + [6804] = 6747, [6805] = 6805, - [6806] = 6661, - [6807] = 4436, - [6808] = 4437, + [6806] = 6735, + [6807] = 6747, + [6808] = 4493, [6809] = 6809, - [6810] = 4438, - [6811] = 6654, - [6812] = 4439, - [6813] = 4392, - [6814] = 6814, - [6815] = 6815, - [6816] = 6616, - [6817] = 6616, + [6810] = 5286, + [6811] = 6769, + [6812] = 4149, + [6813] = 6813, + [6814] = 4413, + [6815] = 4157, + [6816] = 6784, + [6817] = 6735, [6818] = 6818, - [6819] = 3717, + [6819] = 6819, [6820] = 6820, - [6821] = 6821, - [6822] = 2132, - [6823] = 6823, - [6824] = 6823, - [6825] = 6825, - [6826] = 6826, - [6827] = 6827, - [6828] = 6821, - [6829] = 6829, - [6830] = 6830, - [6831] = 6820, - [6832] = 6832, - [6833] = 6833, - [6834] = 4478, - [6835] = 6835, - [6836] = 6821, + [6821] = 6784, + [6822] = 2103, + [6823] = 6301, + [6824] = 6784, + [6825] = 2101, + [6826] = 3820, + [6827] = 2114, + [6828] = 6828, + [6829] = 3732, + [6830] = 4404, + [6831] = 6831, + [6832] = 6735, + [6833] = 6784, + [6834] = 2126, + [6835] = 2121, + [6836] = 4498, [6837] = 6837, - [6838] = 6838, - [6839] = 6839, - [6840] = 6827, - [6841] = 6829, - [6842] = 1899, - [6843] = 6825, - [6844] = 6844, - [6845] = 6820, - [6846] = 6846, - [6847] = 6837, - [6848] = 2088, - [6849] = 6838, - [6850] = 6821, - [6851] = 6851, - [6852] = 6852, - [6853] = 6853, - [6854] = 2122, - [6855] = 6839, - [6856] = 6846, - [6857] = 6857, - [6858] = 6837, - [6859] = 6851, - [6860] = 6860, - [6861] = 6827, - [6862] = 6837, - [6863] = 6821, - [6864] = 6864, - [6865] = 6865, - [6866] = 6838, - [6867] = 6867, - [6868] = 6820, - [6869] = 6844, - [6870] = 6830, - [6871] = 2125, - [6872] = 6837, - [6873] = 6829, - [6874] = 6852, - [6875] = 2003, - [6876] = 2004, - [6877] = 6829, - [6878] = 6826, - [6879] = 6833, - [6880] = 6833, - [6881] = 6829, - [6882] = 6857, - [6883] = 6818, - [6884] = 6820, - [6885] = 6821, - [6886] = 6838, - [6887] = 6827, - [6888] = 3661, - [6889] = 6835, - [6890] = 6846, - [6891] = 6837, - [6892] = 6846, - [6893] = 2072, - [6894] = 6865, - [6895] = 6821, - [6896] = 6839, - [6897] = 6826, - [6898] = 6898, - [6899] = 6837, - [6900] = 6818, - [6901] = 6826, - [6902] = 6864, - [6903] = 6821, - [6904] = 6820, - [6905] = 6846, - [6906] = 3706, - [6907] = 6827, - [6908] = 6865, - [6909] = 6898, - [6910] = 6844, - [6911] = 6852, - [6912] = 2166, - [6913] = 6846, - [6914] = 6857, - [6915] = 6915, - [6916] = 6916, - [6917] = 6846, - [6918] = 6851, - [6919] = 2166, - [6920] = 6837, - [6921] = 6835, - [6922] = 6844, - [6923] = 6826, - [6924] = 2006, - [6925] = 6827, - [6926] = 6926, - [6927] = 6825, - [6928] = 6864, + [6838] = 6784, + [6839] = 4492, + [6840] = 2077, + [6841] = 6784, + [6842] = 2105, + [6843] = 2102, + [6844] = 4400, + [6845] = 4491, + [6846] = 4492, + [6847] = 4493, + [6848] = 4400, + [6849] = 4401, + [6850] = 4498, + [6851] = 3815, + [6852] = 4402, + [6853] = 4403, + [6854] = 4404, + [6855] = 4406, + [6856] = 4407, + [6857] = 4411, + [6858] = 4412, + [6859] = 4499, + [6860] = 6735, + [6861] = 4500, + [6862] = 6566, + [6863] = 3820, + [6864] = 3794, + [6865] = 4413, + [6866] = 4414, + [6867] = 4419, + [6868] = 4421, + [6869] = 6869, + [6870] = 6870, + [6871] = 6747, + [6872] = 4166, + [6873] = 6873, + [6874] = 4414, + [6875] = 4421, + [6876] = 6876, + [6877] = 4406, + [6878] = 4166, + [6879] = 4401, + [6880] = 6747, + [6881] = 6769, + [6882] = 3782, + [6883] = 2103, + [6884] = 4491, + [6885] = 3791, + [6886] = 3792, + [6887] = 4492, + [6888] = 3794, + [6889] = 6756, + [6890] = 4493, + [6891] = 6747, + [6892] = 6892, + [6893] = 4400, + [6894] = 2101, + [6895] = 6769, + [6896] = 6896, + [6897] = 4401, + [6898] = 6747, + [6899] = 4407, + [6900] = 6735, + [6901] = 3782, + [6902] = 4165, + [6903] = 6769, + [6904] = 6904, + [6905] = 4411, + [6906] = 2103, + [6907] = 2101, + [6908] = 4498, + [6909] = 4414, + [6910] = 3815, + [6911] = 4402, + [6912] = 4403, + [6913] = 4404, + [6914] = 4162, + [6915] = 4407, + [6916] = 4411, + [6917] = 6735, + [6918] = 4491, + [6919] = 6735, + [6920] = 4419, + [6921] = 6735, + [6922] = 4412, + [6923] = 4499, + [6924] = 4500, + [6925] = 2126, + [6926] = 6735, + [6927] = 6927, + [6928] = 6928, [6929] = 6929, - [6930] = 6898, - [6931] = 6821, - [6932] = 6864, - [6933] = 6898, - [6934] = 6825, - [6935] = 6865, - [6936] = 6827, - [6937] = 6851, + [6930] = 6930, + [6931] = 6931, + [6932] = 6932, + [6933] = 6930, + [6934] = 6934, + [6935] = 6935, + [6936] = 6936, + [6937] = 6937, [6938] = 6938, - [6939] = 6844, - [6940] = 6940, - [6941] = 6852, - [6942] = 6837, - [6943] = 6837, - [6944] = 6940, - [6945] = 6846, - [6946] = 6852, - [6947] = 6829, - [6948] = 6865, - [6949] = 6844, - [6950] = 6827, - [6951] = 6839, - [6952] = 6852, - [6953] = 6953, - [6954] = 6864, - [6955] = 6898, - [6956] = 6865, - [6957] = 6821, - [6958] = 6833, - [6959] = 6829, - [6960] = 6839, - [6961] = 6851, - [6962] = 6826, - [6963] = 6827, - [6964] = 6821, - [6965] = 4469, - [6966] = 6839, - [6967] = 6857, - [6968] = 6898, - [6969] = 6865, - [6970] = 6844, - [6971] = 6821, - [6972] = 6851, - [6973] = 2012, - [6974] = 6857, - [6975] = 6852, - [6976] = 6830, - [6977] = 6827, - [6978] = 6827, - [6979] = 6979, - [6980] = 6839, - [6981] = 6940, - [6982] = 6844, - [6983] = 6821, - [6984] = 6852, - [6985] = 6823, - [6986] = 6846, - [6987] = 6844, - [6988] = 6988, - [6989] = 6857, - [6990] = 6990, - [6991] = 6827, - [6992] = 6857, - [6993] = 2166, - [6994] = 4469, - [6995] = 2087, - [6996] = 3706, - [6997] = 6997, - [6998] = 6998, - [6999] = 6830, - [7000] = 6821, - [7001] = 3661, - [7002] = 6838, - [7003] = 6852, - [7004] = 6821, - [7005] = 7005, - [7006] = 6857, - [7007] = 6864, - [7008] = 4478, - [7009] = 6825, - [7010] = 6818, - [7011] = 6857, - [7012] = 6825, - [7013] = 6827, - [7014] = 6898, - [7015] = 6820, - [7016] = 6821, - [7017] = 6865, - [7018] = 1969, - [7019] = 1956, - [7020] = 6838, - [7021] = 1966, - [7022] = 6851, - [7023] = 6826, - [7024] = 6821, - [7025] = 6857, - [7026] = 2166, - [7027] = 6838, - [7028] = 6940, - [7029] = 6837, - [7030] = 6846, - [7031] = 6821, - [7032] = 2002, - [7033] = 2026, - [7034] = 2067, - [7035] = 3717, - [7036] = 2156, - [7037] = 7037, - [7038] = 6820, - [7039] = 6820, - [7040] = 2123, - [7041] = 2075, - [7042] = 6830, - [7043] = 2124, - [7044] = 7044, - [7045] = 6820, - [7046] = 6821, - [7047] = 6864, - [7048] = 6844, - [7049] = 6835, - [7050] = 6852, - [7051] = 7051, - [7052] = 6820, - [7053] = 7053, - [7054] = 6821, - [7055] = 6898, - [7056] = 2128, - [7057] = 2130, - [7058] = 6838, - [7059] = 6823, - [7060] = 6827, - [7061] = 6821, - [7062] = 6838, - [7063] = 6821, - [7064] = 6823, - [7065] = 6838, - [7066] = 2005, - [7067] = 2007, - [7068] = 6865, - [7069] = 6940, - [7070] = 6821, - [7071] = 6821, - [7072] = 6827, - [7073] = 6833, - [7074] = 6938, - [7075] = 6838, - [7076] = 6938, - [7077] = 6938, - [7078] = 6938, + [6939] = 6939, + [6940] = 3814, + [6941] = 6941, + [6942] = 6942, + [6943] = 6943, + [6944] = 6944, + [6945] = 2103, + [6946] = 2101, + [6947] = 6947, + [6948] = 6948, + [6949] = 6942, + [6950] = 6950, + [6951] = 2105, + [6952] = 6934, + [6953] = 6935, + [6954] = 6938, + [6955] = 6941, + [6956] = 6943, + [6957] = 6928, + [6958] = 6930, + [6959] = 6939, + [6960] = 6960, + [6961] = 6961, + [6962] = 6937, + [6963] = 6928, + [6964] = 6960, + [6965] = 6939, + [6966] = 6937, + [6967] = 6944, + [6968] = 6929, + [6969] = 6937, + [6970] = 6947, + [6971] = 6948, + [6972] = 6939, + [6973] = 6942, + [6974] = 6974, + [6975] = 6950, + [6976] = 6960, + [6977] = 6977, + [6978] = 6978, + [6979] = 6934, + [6980] = 6935, + [6981] = 6938, + [6982] = 6941, + [6983] = 6932, + [6984] = 6943, + [6985] = 6928, + [6986] = 6986, + [6987] = 6930, + [6988] = 6930, + [6989] = 6931, + [6990] = 6944, + [6991] = 6978, + [6992] = 6937, + [6993] = 6939, + [6994] = 6944, + [6995] = 6934, + [6996] = 6932, + [6997] = 6986, + [6998] = 6947, + [6999] = 6935, + [7000] = 2247, + [7001] = 6947, + [7002] = 6948, + [7003] = 6948, + [7004] = 6950, + [7005] = 6977, + [7006] = 6944, + [7007] = 6935, + [7008] = 6938, + [7009] = 6943, + [7010] = 6928, + [7011] = 6930, + [7012] = 3804, + [7013] = 6937, + [7014] = 7014, + [7015] = 6939, + [7016] = 6944, + [7017] = 7017, + [7018] = 7018, + [7019] = 4580, + [7020] = 6947, + [7021] = 6948, + [7022] = 3781, + [7023] = 6950, + [7024] = 6961, + [7025] = 6942, + [7026] = 6938, + [7027] = 6943, + [7028] = 2077, + [7029] = 6928, + [7030] = 6930, + [7031] = 6937, + [7032] = 2247, + [7033] = 6939, + [7034] = 7034, + [7035] = 6944, + [7036] = 6950, + [7037] = 6950, + [7038] = 6947, + [7039] = 6948, + [7040] = 7040, + [7041] = 6950, + [7042] = 6934, + [7043] = 6943, + [7044] = 6928, + [7045] = 6935, + [7046] = 6930, + [7047] = 6938, + [7048] = 6944, + [7049] = 6941, + [7050] = 6947, + [7051] = 6943, + [7052] = 6948, + [7053] = 6928, + [7054] = 6961, + [7055] = 6944, + [7056] = 7056, + [7057] = 6947, + [7058] = 6929, + [7059] = 6944, + [7060] = 6947, + [7061] = 6944, + [7062] = 6947, + [7063] = 6944, + [7064] = 6947, + [7065] = 6930, + [7066] = 6947, + [7067] = 6931, + [7068] = 6947, + [7069] = 6947, + [7070] = 6947, + [7071] = 6947, + [7072] = 7072, + [7073] = 6947, + [7074] = 6947, + [7075] = 6943, + [7076] = 6947, + [7077] = 7077, + [7078] = 7077, [7079] = 6938, - [7080] = 6938, - [7081] = 6938, - [7082] = 6818, - [7083] = 6835, - [7084] = 2083, - [7085] = 6825, - [7086] = 1954, - [7087] = 7087, - [7088] = 7088, - [7089] = 7089, + [7080] = 6937, + [7081] = 6947, + [7082] = 6939, + [7083] = 2108, + [7084] = 6977, + [7085] = 7085, + [7086] = 2006, + [7087] = 6941, + [7088] = 2121, + [7089] = 2075, [7090] = 7090, - [7091] = 7091, - [7092] = 7092, - [7093] = 3775, - [7094] = 2002, - [7095] = 7087, - [7096] = 7088, - [7097] = 7092, - [7098] = 7087, - [7099] = 2004, - [7100] = 2193, - [7101] = 2166, - [7102] = 7102, - [7103] = 7089, - [7104] = 7090, - [7105] = 7091, - [7106] = 3791, - [7107] = 3830, - [7108] = 7108, - [7109] = 7109, - [7110] = 7102, - [7111] = 3806, - [7112] = 7088, - [7113] = 3766, - [7114] = 3727, - [7115] = 3817, - [7116] = 7092, - [7117] = 3808, - [7118] = 3825, - [7119] = 7087, - [7120] = 3760, - [7121] = 3760, - [7122] = 3765, - [7123] = 3808, - [7124] = 3809, - [7125] = 7087, - [7126] = 7088, - [7127] = 7092, - [7128] = 3819, - [7129] = 7108, - [7130] = 1954, - [7131] = 7087, - [7132] = 7088, - [7133] = 7092, - [7134] = 3759, - [7135] = 3809, - [7136] = 3839, - [7137] = 7109, - [7138] = 2005, - [7139] = 3830, - [7140] = 3737, - [7141] = 3815, - [7142] = 7089, - [7143] = 7090, - [7144] = 7091, - [7145] = 3825, - [7146] = 7108, - [7147] = 7109, - [7148] = 7102, - [7149] = 2007, - [7150] = 2003, - [7151] = 3758, - [7152] = 7087, - [7153] = 7088, - [7154] = 7092, - [7155] = 3745, - [7156] = 3841, - [7157] = 3759, - [7158] = 3844, - [7159] = 3727, - [7160] = 3839, - [7161] = 3814, - [7162] = 3823, - [7163] = 3754, - [7164] = 3791, - [7165] = 3729, - [7166] = 7089, - [7167] = 7090, - [7168] = 7091, - [7169] = 7108, - [7170] = 7109, - [7171] = 7102, - [7172] = 3753, - [7173] = 3750, - [7174] = 3824, - [7175] = 3729, + [7091] = 6944, + [7092] = 3781, + [7093] = 6931, + [7094] = 7094, + [7095] = 6961, + [7096] = 6977, + [7097] = 6937, + [7098] = 7077, + [7099] = 7099, + [7100] = 6948, + [7101] = 6943, + [7102] = 6928, + [7103] = 6977, + [7104] = 6939, + [7105] = 6929, + [7106] = 6960, + [7107] = 6947, + [7108] = 2126, + [7109] = 2102, + [7110] = 6978, + [7111] = 6932, + [7112] = 6986, + [7113] = 6948, + [7114] = 6944, + [7115] = 6986, + [7116] = 6961, + [7117] = 6977, + [7118] = 7077, + [7119] = 7077, + [7120] = 6947, + [7121] = 2170, + [7122] = 2147, + [7123] = 2268, + [7124] = 2208, + [7125] = 6977, + [7126] = 2209, + [7127] = 6948, + [7128] = 2175, + [7129] = 2239, + [7130] = 2247, + [7131] = 6942, + [7132] = 6950, + [7133] = 4551, + [7134] = 7077, + [7135] = 2213, + [7136] = 2214, + [7137] = 2215, + [7138] = 2216, + [7139] = 2217, + [7140] = 6934, + [7141] = 2218, + [7142] = 6935, + [7143] = 2219, + [7144] = 6938, + [7145] = 2220, + [7146] = 6941, + [7147] = 4580, + [7148] = 2053, + [7149] = 6937, + [7150] = 2247, + [7151] = 6943, + [7152] = 6928, + [7153] = 6929, + [7154] = 6930, + [7155] = 6931, + [7156] = 7156, + [7157] = 7157, + [7158] = 6978, + [7159] = 6942, + [7160] = 6937, + [7161] = 7077, + [7162] = 6939, + [7163] = 6960, + [7164] = 6978, + [7165] = 6932, + [7166] = 6986, + [7167] = 6944, + [7168] = 6961, + [7169] = 6927, + [7170] = 7170, + [7171] = 4551, + [7172] = 6961, + [7173] = 6950, + [7174] = 6947, + [7175] = 3814, [7176] = 7176, - [7177] = 7089, - [7178] = 7090, - [7179] = 7091, - [7180] = 3844, - [7181] = 7108, - [7182] = 7109, - [7183] = 7102, - [7184] = 7087, - [7185] = 7088, - [7186] = 7092, - [7187] = 3841, - [7188] = 7089, - [7189] = 7090, - [7190] = 7091, - [7191] = 7108, - [7192] = 7109, - [7193] = 7102, - [7194] = 3846, - [7195] = 7087, - [7196] = 7088, - [7197] = 7092, - [7198] = 3817, - [7199] = 3819, - [7200] = 7089, - [7201] = 7090, - [7202] = 7091, - [7203] = 7108, - [7204] = 7109, - [7205] = 7102, - [7206] = 3754, - [7207] = 3766, - [7208] = 3753, - [7209] = 3824, - [7210] = 3811, - [7211] = 3737, - [7212] = 7087, - [7213] = 7088, - [7214] = 7092, - [7215] = 3745, - [7216] = 3803, - [7217] = 3750, - [7218] = 1963, - [7219] = 7087, - [7220] = 7088, - [7221] = 7092, - [7222] = 7087, - [7223] = 7088, - [7224] = 7092, - [7225] = 1966, - [7226] = 7226, - [7227] = 2166, - [7228] = 7087, - [7229] = 7088, - [7230] = 7092, - [7231] = 3827, - [7232] = 3829, - [7233] = 3847, - [7234] = 7087, - [7235] = 3815, - [7236] = 3780, - [7237] = 7088, - [7238] = 7092, - [7239] = 2006, - [7240] = 7087, - [7241] = 3829, - [7242] = 7088, - [7243] = 7092, - [7244] = 3847, - [7245] = 3846, - [7246] = 2193, - [7247] = 7087, - [7248] = 2022, - [7249] = 2200, - [7250] = 7088, - [7251] = 7092, - [7252] = 7088, - [7253] = 3821, - [7254] = 3765, - [7255] = 3748, - [7256] = 2200, - [7257] = 2213, - [7258] = 3748, - [7259] = 3827, - [7260] = 3758, - [7261] = 3780, - [7262] = 3823, - [7263] = 3794, - [7264] = 3775, - [7265] = 3811, - [7266] = 3806, - [7267] = 2184, - [7268] = 7087, - [7269] = 7088, - [7270] = 7092, - [7271] = 7271, - [7272] = 7272, - [7273] = 3848, - [7274] = 7274, - [7275] = 3821, - [7276] = 3803, - [7277] = 7087, - [7278] = 7088, - [7279] = 7092, - [7280] = 3814, - [7281] = 7092, - [7282] = 3794, - [7283] = 3848, - [7284] = 7284, - [7285] = 7285, - [7286] = 7286, - [7287] = 7287, - [7288] = 7288, - [7289] = 7284, - [7290] = 7290, - [7291] = 7291, - [7292] = 2166, - [7293] = 7288, - [7294] = 1994, - [7295] = 7295, - [7296] = 7285, - [7297] = 7284, - [7298] = 7287, - [7299] = 1954, - [7300] = 7300, - [7301] = 7285, - [7302] = 7302, - [7303] = 7302, - [7304] = 7288, - [7305] = 7287, - [7306] = 7285, - [7307] = 7287, - [7308] = 7284, - [7309] = 7284, - [7310] = 7288, - [7311] = 7285, - [7312] = 7284, - [7313] = 7302, - [7314] = 7285, - [7315] = 7302, - [7316] = 7285, - [7317] = 7302, - [7318] = 7284, - [7319] = 7302, - [7320] = 7288, - [7321] = 7288, - [7322] = 2022, - [7323] = 7288, - [7324] = 7288, - [7325] = 7284, - [7326] = 7302, - [7327] = 7302, - [7328] = 7287, - [7329] = 7285, - [7330] = 7284, - [7331] = 7284, - [7332] = 7284, - [7333] = 7287, - [7334] = 7285, - [7335] = 2005, - [7336] = 7285, - [7337] = 2166, - [7338] = 7288, - [7339] = 7284, - [7340] = 7287, - [7341] = 7285, - [7342] = 7288, - [7343] = 7288, - [7344] = 7288, - [7345] = 7285, - [7346] = 7285, - [7347] = 7288, - [7348] = 7285, - [7349] = 7285, - [7350] = 7285, - [7351] = 7286, - [7352] = 1969, - [7353] = 7285, - [7354] = 7285, - [7355] = 7285, - [7356] = 7285, - [7357] = 7285, - [7358] = 7284, - [7359] = 7285, - [7360] = 7284, - [7361] = 7285, - [7362] = 7285, - [7363] = 7288, - [7364] = 7302, - [7365] = 7285, - [7366] = 7287, - [7367] = 7285, - [7368] = 2007, - [7369] = 7288, - [7370] = 7285, - [7371] = 7288, - [7372] = 7287, - [7373] = 7288, - [7374] = 7300, - [7375] = 7302, - [7376] = 7284, - [7377] = 7295, - [7378] = 7288, - [7379] = 2166, - [7380] = 7302, - [7381] = 7284, - [7382] = 7287, - [7383] = 7383, - [7384] = 7285, - [7385] = 7284, - [7386] = 2166, - [7387] = 7287, - [7388] = 7285, - [7389] = 7389, - [7390] = 7390, - [7391] = 7391, - [7392] = 7392, - [7393] = 7393, - [7394] = 7394, - [7395] = 7391, - [7396] = 2003, - [7397] = 1941, - [7398] = 7394, - [7399] = 2004, - [7400] = 7390, - [7401] = 7401, - [7402] = 2001, - [7403] = 7390, - [7404] = 7392, - [7405] = 7389, - [7406] = 7391, - [7407] = 7394, - [7408] = 2166, - [7409] = 7401, - [7410] = 2193, - [7411] = 7392, - [7412] = 2193, - [7413] = 2193, - [7414] = 7391, - [7415] = 2200, - [7416] = 7394, - [7417] = 2002, - [7418] = 7401, - [7419] = 7392, - [7420] = 7391, - [7421] = 7401, - [7422] = 2200, - [7423] = 7401, - [7424] = 7390, - [7425] = 7392, - [7426] = 7426, - [7427] = 7391, - [7428] = 7391, - [7429] = 7392, - [7430] = 7401, - [7431] = 2200, - [7432] = 2200, - [7433] = 2009, - [7434] = 2166, - [7435] = 4556, - [7436] = 1942, - [7437] = 7389, - [7438] = 7392, - [7439] = 7439, - [7440] = 2005, - [7441] = 2007, - [7442] = 2193, - [7443] = 7394, - [7444] = 7394, - [7445] = 2006, - [7446] = 7401, - [7447] = 4201, - [7448] = 7401, - [7449] = 7449, - [7450] = 7389, - [7451] = 2166, - [7452] = 2007, - [7453] = 2036, - [7454] = 2022, - [7455] = 2166, - [7456] = 2043, - [7457] = 2213, - [7458] = 2193, - [7459] = 1965, - [7460] = 2003, - [7461] = 2046, - [7462] = 2004, - [7463] = 2042, - [7464] = 2166, - [7465] = 2184, - [7466] = 2006, - [7467] = 2213, - [7468] = 2047, - [7469] = 2034, - [7470] = 2055, - [7471] = 2033, - [7472] = 2069, - [7473] = 2048, - [7474] = 1974, - [7475] = 1972, - [7476] = 2200, - [7477] = 2049, - [7478] = 2193, - [7479] = 2053, - [7480] = 2002, - [7481] = 2035, - [7482] = 2184, - [7483] = 2166, - [7484] = 2063, - [7485] = 2213, - [7486] = 2200, - [7487] = 2005, - [7488] = 2184, - [7489] = 2012, - [7490] = 2071, - [7491] = 2085, - [7492] = 2118, - [7493] = 1959, - [7494] = 2200, - [7495] = 2120, - [7496] = 2070, - [7497] = 2089, - [7498] = 2111, - [7499] = 2121, - [7500] = 2090, - [7501] = 2091, - [7502] = 2193, - [7503] = 2073, - [7504] = 2200, - [7505] = 2074, - [7506] = 2092, - [7507] = 2093, - [7508] = 2094, - [7509] = 2095, - [7510] = 2193, - [7511] = 2098, - [7512] = 2099, - [7513] = 2109, - [7514] = 2077, - [7515] = 2112, - [7516] = 2078, - [7517] = 2102, - [7518] = 2193, - [7519] = 2079, - [7520] = 2114, - [7521] = 2097, - [7522] = 2200, - [7523] = 2193, - [7524] = 2080, - [7525] = 2103, - [7526] = 2134, - [7527] = 2104, - [7528] = 2107, - [7529] = 2108, - [7530] = 2082, - [7531] = 2117, - [7532] = 2086, - [7533] = 2166, - [7534] = 2084, - [7535] = 2200, - [7536] = 2101, - [7537] = 2110, - [7538] = 2100, - [7539] = 2001, - [7540] = 2193, - [7541] = 2428, - [7542] = 2465, - [7543] = 2466, - [7544] = 2009, - [7545] = 2200, - [7546] = 2465, - [7547] = 2200, - [7548] = 2466, - [7549] = 2193, - [7550] = 2428, - [7551] = 2087, - [7552] = 2122, - [7553] = 2200, - [7554] = 2125, - [7555] = 7555, - [7556] = 2039, - [7557] = 2193, - [7558] = 1972, - [7559] = 2088, - [7560] = 2200, - [7561] = 7555, - [7562] = 7555, - [7563] = 7555, - [7564] = 2132, - [7565] = 2123, - [7566] = 2193, - [7567] = 2124, - [7568] = 7555, - [7569] = 2083, - [7570] = 7555, - [7571] = 2200, - [7572] = 7555, - [7573] = 1965, - [7574] = 2072, - [7575] = 2075, - [7576] = 2193, - [7577] = 1963, - [7578] = 2128, - [7579] = 7555, - [7580] = 2200, - [7581] = 2130, - [7582] = 2193, - [7583] = 7555, - [7584] = 2466, - [7585] = 2428, - [7586] = 2465, - [7587] = 7587, - [7588] = 2046, - [7589] = 2047, - [7590] = 2466, - [7591] = 7591, - [7592] = 2214, - [7593] = 2428, - [7594] = 7594, - [7595] = 7595, - [7596] = 2428, - [7597] = 2465, - [7598] = 2193, - [7599] = 2048, - [7600] = 2465, - [7601] = 2465, - [7602] = 2042, - [7603] = 1994, - [7604] = 2466, - [7605] = 2069, - [7606] = 2428, - [7607] = 2033, - [7608] = 2200, - [7609] = 2034, - [7610] = 2053, - [7611] = 2035, - [7612] = 2055, - [7613] = 2036, - [7614] = 2043, - [7615] = 2466, - [7616] = 2465, - [7617] = 2466, - [7618] = 2465, - [7619] = 2466, - [7620] = 2428, - [7621] = 2428, - [7622] = 7622, - [7623] = 7623, - [7624] = 7623, - [7625] = 7625, - [7626] = 7626, - [7627] = 7626, - [7628] = 7626, - [7629] = 7623, - [7630] = 7625, - [7631] = 7623, - [7632] = 7623, - [7633] = 7623, - [7634] = 7625, - [7635] = 2039, - [7636] = 2466, - [7637] = 7625, - [7638] = 7623, - [7639] = 7626, - [7640] = 7623, - [7641] = 7626, - [7642] = 2428, - [7643] = 2465, - [7644] = 7625, - [7645] = 7626, - [7646] = 2466, - [7647] = 7625, - [7648] = 7626, - [7649] = 7626, - [7650] = 2428, - [7651] = 2156, - [7652] = 7622, - [7653] = 7626, - [7654] = 7626, - [7655] = 7625, - [7656] = 7625, - [7657] = 7626, - [7658] = 7626, - [7659] = 2465, - [7660] = 2428, - [7661] = 2465, - [7662] = 3560, - [7663] = 7625, - [7664] = 2428, - [7665] = 7623, - [7666] = 7625, - [7667] = 7626, - [7668] = 7625, - [7669] = 7626, - [7670] = 2466, - [7671] = 7626, - [7672] = 2465, - [7673] = 7625, - [7674] = 7623, - [7675] = 7625, - [7676] = 7622, - [7677] = 7626, - [7678] = 7623, - [7679] = 7625, - [7680] = 7623, - [7681] = 2466, - [7682] = 7625, - [7683] = 7623, - [7684] = 7623, - [7685] = 7623, - [7686] = 7625, - [7687] = 7623, - [7688] = 7688, - [7689] = 7689, - [7690] = 7690, - [7691] = 7688, - [7692] = 7690, - [7693] = 7693, - [7694] = 7690, - [7695] = 7693, - [7696] = 7690, - [7697] = 7697, - [7698] = 7693, - [7699] = 7688, - [7700] = 2466, - [7701] = 7689, - [7702] = 7688, - [7703] = 7693, - [7704] = 7689, - [7705] = 7688, - [7706] = 7689, - [7707] = 7690, - [7708] = 7708, - [7709] = 2428, - [7710] = 7693, - [7711] = 7688, - [7712] = 7697, - [7713] = 7689, - [7714] = 7693, - [7715] = 2465, - [7716] = 7689, - [7717] = 7688, - [7718] = 7697, - [7719] = 7693, - [7720] = 7693, - [7721] = 2465, - [7722] = 7697, - [7723] = 7697, - [7724] = 7688, - [7725] = 7690, - [7726] = 7708, - [7727] = 7697, - [7728] = 7697, - [7729] = 7690, - [7730] = 7693, - [7731] = 7688, - [7732] = 7689, - [7733] = 7697, - [7734] = 7688, - [7735] = 7690, - [7736] = 7708, - [7737] = 2466, - [7738] = 7697, - [7739] = 7693, - [7740] = 7688, - [7741] = 7693, - [7742] = 7693, - [7743] = 7688, - [7744] = 7689, - [7745] = 2428, + [7177] = 6948, + [7178] = 7178, + [7179] = 3804, + [7180] = 6942, + [7181] = 7181, + [7182] = 6939, + [7183] = 6950, + [7184] = 6927, + [7185] = 6934, + [7186] = 6927, + [7187] = 6927, + [7188] = 6927, + [7189] = 6927, + [7190] = 6935, + [7191] = 6927, + [7192] = 6938, + [7193] = 6941, + [7194] = 6947, + [7195] = 3907, + [7196] = 7196, + [7197] = 7197, + [7198] = 7198, + [7199] = 3849, + [7200] = 7198, + [7201] = 7196, + [7202] = 7197, + [7203] = 7198, + [7204] = 7197, + [7205] = 7205, + [7206] = 3910, + [7207] = 3944, + [7208] = 3828, + [7209] = 3937, + [7210] = 2291, + [7211] = 2112, + [7212] = 3857, + [7213] = 7196, + [7214] = 7197, + [7215] = 7198, + [7216] = 3841, + [7217] = 3939, + [7218] = 7205, + [7219] = 3950, + [7220] = 3951, + [7221] = 7196, + [7222] = 7197, + [7223] = 2121, + [7224] = 7198, + [7225] = 2073, + [7226] = 2105, + [7227] = 3951, + [7228] = 3854, + [7229] = 3869, + [7230] = 3840, + [7231] = 3849, + [7232] = 7196, + [7233] = 7196, + [7234] = 7196, + [7235] = 7197, + [7236] = 7197, + [7237] = 7237, + [7238] = 7238, + [7239] = 7239, + [7240] = 7198, + [7241] = 7241, + [7242] = 7198, + [7243] = 7243, + [7244] = 7244, + [7245] = 7245, + [7246] = 7246, + [7247] = 3827, + [7248] = 2102, + [7249] = 3944, + [7250] = 3933, + [7251] = 3878, + [7252] = 3875, + [7253] = 3833, + [7254] = 3882, + [7255] = 7255, + [7256] = 3887, + [7257] = 2126, + [7258] = 7196, + [7259] = 3833, + [7260] = 2049, + [7261] = 7237, + [7262] = 7238, + [7263] = 7239, + [7264] = 7243, + [7265] = 7244, + [7266] = 7245, + [7267] = 3837, + [7268] = 7197, + [7269] = 3889, + [7270] = 3866, + [7271] = 7198, + [7272] = 2101, + [7273] = 3827, + [7274] = 2317, + [7275] = 7205, + [7276] = 7237, + [7277] = 7238, + [7278] = 7239, + [7279] = 3837, + [7280] = 3913, + [7281] = 7244, + [7282] = 7245, + [7283] = 7198, + [7284] = 3876, + [7285] = 7196, + [7286] = 7197, + [7287] = 3890, + [7288] = 7198, + [7289] = 3828, + [7290] = 3898, + [7291] = 2318, + [7292] = 7237, + [7293] = 7238, + [7294] = 7239, + [7295] = 7243, + [7296] = 7244, + [7297] = 7245, + [7298] = 3899, + [7299] = 3878, + [7300] = 3882, + [7301] = 3906, + [7302] = 3847, + [7303] = 3898, + [7304] = 7237, + [7305] = 7238, + [7306] = 7239, + [7307] = 7243, + [7308] = 7244, + [7309] = 7245, + [7310] = 7243, + [7311] = 7246, + [7312] = 7244, + [7313] = 7245, + [7314] = 7255, + [7315] = 7196, + [7316] = 7197, + [7317] = 7237, + [7318] = 7238, + [7319] = 7239, + [7320] = 7243, + [7321] = 7244, + [7322] = 7245, + [7323] = 7198, + [7324] = 3903, + [7325] = 3847, + [7326] = 2049, + [7327] = 3933, + [7328] = 7196, + [7329] = 7197, + [7330] = 7246, + [7331] = 3943, + [7332] = 7198, + [7333] = 2309, + [7334] = 3943, + [7335] = 3907, + [7336] = 3908, + [7337] = 3912, + [7338] = 3913, + [7339] = 7339, + [7340] = 3950, + [7341] = 3854, + [7342] = 3866, + [7343] = 3864, + [7344] = 3876, + [7345] = 3881, + [7346] = 3890, + [7347] = 3859, + [7348] = 2075, + [7349] = 7255, + [7350] = 2247, + [7351] = 3845, + [7352] = 3864, + [7353] = 7196, + [7354] = 7197, + [7355] = 7198, + [7356] = 3881, + [7357] = 2247, + [7358] = 2309, + [7359] = 7196, + [7360] = 3937, + [7361] = 3845, + [7362] = 7197, + [7363] = 7196, + [7364] = 7197, + [7365] = 3857, + [7366] = 7198, + [7367] = 3869, + [7368] = 3906, + [7369] = 3859, + [7370] = 7196, + [7371] = 7197, + [7372] = 3908, + [7373] = 3887, + [7374] = 7196, + [7375] = 7197, + [7376] = 2291, + [7377] = 7198, + [7378] = 7198, + [7379] = 3889, + [7380] = 3899, + [7381] = 7196, + [7382] = 7197, + [7383] = 7198, + [7384] = 7237, + [7385] = 7238, + [7386] = 7239, + [7387] = 3903, + [7388] = 2103, + [7389] = 3939, + [7390] = 3910, + [7391] = 3840, + [7392] = 7196, + [7393] = 7197, + [7394] = 7198, + [7395] = 3875, + [7396] = 3912, + [7397] = 3841, + [7398] = 7243, + [7399] = 7399, + [7400] = 7400, + [7401] = 7400, + [7402] = 7402, + [7403] = 7400, + [7404] = 7400, + [7405] = 7405, + [7406] = 7399, + [7407] = 7400, + [7408] = 7400, + [7409] = 7399, + [7410] = 7410, + [7411] = 7402, + [7412] = 7399, + [7413] = 7400, + [7414] = 7410, + [7415] = 7400, + [7416] = 2077, + [7417] = 7400, + [7418] = 7399, + [7419] = 7419, + [7420] = 7399, + [7421] = 7400, + [7422] = 7400, + [7423] = 7410, + [7424] = 7410, + [7425] = 7405, + [7426] = 7400, + [7427] = 7410, + [7428] = 7428, + [7429] = 7429, + [7430] = 7400, + [7431] = 7400, + [7432] = 7402, + [7433] = 7429, + [7434] = 7434, + [7435] = 7410, + [7436] = 7400, + [7437] = 7400, + [7438] = 7402, + [7439] = 7402, + [7440] = 2087, + [7441] = 7419, + [7442] = 7419, + [7443] = 7402, + [7444] = 7400, + [7445] = 7410, + [7446] = 7446, + [7447] = 7405, + [7448] = 7399, + [7449] = 7399, + [7450] = 7399, + [7451] = 7400, + [7452] = 2247, + [7453] = 2126, + [7454] = 7410, + [7455] = 7399, + [7456] = 7402, + [7457] = 7402, + [7458] = 7410, + [7459] = 7434, + [7460] = 2112, + [7461] = 7410, + [7462] = 7410, + [7463] = 7410, + [7464] = 7402, + [7465] = 7400, + [7466] = 7399, + [7467] = 2102, + [7468] = 7405, + [7469] = 2247, + [7470] = 7400, + [7471] = 2247, + [7472] = 7399, + [7473] = 7400, + [7474] = 7400, + [7475] = 7399, + [7476] = 7405, + [7477] = 7405, + [7478] = 7399, + [7479] = 7400, + [7480] = 7399, + [7481] = 2049, + [7482] = 7399, + [7483] = 7400, + [7484] = 7484, + [7485] = 7410, + [7486] = 7402, + [7487] = 7405, + [7488] = 7405, + [7489] = 7400, + [7490] = 7400, + [7491] = 7410, + [7492] = 7399, + [7493] = 7410, + [7494] = 7410, + [7495] = 7405, + [7496] = 7400, + [7497] = 7428, + [7498] = 7405, + [7499] = 7400, + [7500] = 7400, + [7501] = 7405, + [7502] = 7402, + [7503] = 7410, + [7504] = 7399, + [7505] = 2247, + [7506] = 7506, + [7507] = 7507, + [7508] = 2121, + [7509] = 2291, + [7510] = 7510, + [7511] = 2047, + [7512] = 7512, + [7513] = 2045, + [7514] = 2309, + [7515] = 7515, + [7516] = 7506, + [7517] = 2103, + [7518] = 2101, + [7519] = 7519, + [7520] = 2309, + [7521] = 7521, + [7522] = 2309, + [7523] = 2291, + [7524] = 7524, + [7525] = 7506, + [7526] = 7526, + [7527] = 7507, + [7528] = 7519, + [7529] = 7510, + [7530] = 7530, + [7531] = 2291, + [7532] = 2119, + [7533] = 2247, + [7534] = 2118, + [7535] = 4756, + [7536] = 2247, + [7537] = 2126, + [7538] = 2102, + [7539] = 7506, + [7540] = 4278, + [7541] = 7526, + [7542] = 7507, + [7543] = 7519, + [7544] = 7510, + [7545] = 7530, + [7546] = 7506, + [7547] = 7526, + [7548] = 7507, + [7549] = 7519, + [7550] = 7510, + [7551] = 7530, + [7552] = 7506, + [7553] = 7507, + [7554] = 7510, + [7555] = 7530, + [7556] = 7507, + [7557] = 7510, + [7558] = 2105, + [7559] = 7506, + [7560] = 7507, + [7561] = 7510, + [7562] = 7506, + [7563] = 7526, + [7564] = 2309, + [7565] = 2291, + [7566] = 7530, + [7567] = 7530, + [7568] = 2101, + [7569] = 2309, + [7570] = 2129, + [7571] = 2158, + [7572] = 2136, + [7573] = 2247, + [7574] = 2139, + [7575] = 2140, + [7576] = 2144, + [7577] = 2151, + [7578] = 2291, + [7579] = 2103, + [7580] = 2161, + [7581] = 2165, + [7582] = 2317, + [7583] = 2291, + [7584] = 2137, + [7585] = 2102, + [7586] = 2317, + [7587] = 2247, + [7588] = 2247, + [7589] = 2112, + [7590] = 2317, + [7591] = 2318, + [7592] = 2169, + [7593] = 2121, + [7594] = 2171, + [7595] = 2172, + [7596] = 2247, + [7597] = 2078, + [7598] = 2126, + [7599] = 2134, + [7600] = 2105, + [7601] = 2318, + [7602] = 2071, + [7603] = 2108, + [7604] = 2309, + [7605] = 2318, + [7606] = 2076, + [7607] = 2238, + [7608] = 2194, + [7609] = 2195, + [7610] = 2190, + [7611] = 2199, + [7612] = 2201, + [7613] = 2204, + [7614] = 2205, + [7615] = 2309, + [7616] = 2291, + [7617] = 2197, + [7618] = 2198, + [7619] = 2235, + [7620] = 2236, + [7621] = 2063, + [7622] = 2200, + [7623] = 2176, + [7624] = 2184, + [7625] = 2221, + [7626] = 2226, + [7627] = 2237, + [7628] = 2178, + [7629] = 2192, + [7630] = 2181, + [7631] = 2183, + [7632] = 2186, + [7633] = 2191, + [7634] = 2227, + [7635] = 2228, + [7636] = 2185, + [7637] = 2230, + [7638] = 2232, + [7639] = 2233, + [7640] = 2234, + [7641] = 2202, + [7642] = 2309, + [7643] = 2291, + [7644] = 2291, + [7645] = 2177, + [7646] = 2196, + [7647] = 2225, + [7648] = 2229, + [7649] = 2247, + [7650] = 2189, + [7651] = 2193, + [7652] = 2309, + [7653] = 2291, + [7654] = 2309, + [7655] = 2222, + [7656] = 2537, + [7657] = 2529, + [7658] = 2309, + [7659] = 2119, + [7660] = 2118, + [7661] = 2537, + [7662] = 2309, + [7663] = 2291, + [7664] = 2541, + [7665] = 2529, + [7666] = 2291, + [7667] = 2541, + [7668] = 2219, + [7669] = 2071, + [7670] = 7670, + [7671] = 2216, + [7672] = 2309, + [7673] = 2291, + [7674] = 7670, + [7675] = 2291, + [7676] = 2217, + [7677] = 2309, + [7678] = 7670, + [7679] = 7670, + [7680] = 2291, + [7681] = 2309, + [7682] = 2208, + [7683] = 7670, + [7684] = 7670, + [7685] = 7670, + [7686] = 2209, + [7687] = 2213, + [7688] = 2309, + [7689] = 2214, + [7690] = 2175, + [7691] = 2239, + [7692] = 2218, + [7693] = 2073, + [7694] = 2162, + [7695] = 7670, + [7696] = 7670, + [7697] = 2215, + [7698] = 2291, + [7699] = 2220, + [7700] = 2076, + [7701] = 2291, + [7702] = 2537, + [7703] = 2529, + [7704] = 2541, + [7705] = 2541, + [7706] = 2541, + [7707] = 7707, + [7708] = 2171, + [7709] = 2172, + [7710] = 2134, + [7711] = 2137, + [7712] = 2129, + [7713] = 2158, + [7714] = 2136, + [7715] = 7715, + [7716] = 2087, + [7717] = 2140, + [7718] = 2144, + [7719] = 2161, + [7720] = 2165, + [7721] = 2309, + [7722] = 7722, + [7723] = 2537, + [7724] = 2537, + [7725] = 7725, + [7726] = 2529, + [7727] = 2537, + [7728] = 2529, + [7729] = 2529, + [7730] = 2323, + [7731] = 2541, + [7732] = 2139, + [7733] = 2537, + [7734] = 2541, + [7735] = 2541, + [7736] = 2529, + [7737] = 2529, + [7738] = 2537, + [7739] = 3674, + [7740] = 7740, + [7741] = 7741, + [7742] = 7741, + [7743] = 2541, + [7744] = 2268, + [7745] = 7741, [7746] = 7746, - [7747] = 7688, - [7748] = 7688, - [7749] = 7689, - [7750] = 7697, - [7751] = 7697, - [7752] = 7690, - [7753] = 7690, - [7754] = 7689, - [7755] = 7688, - [7756] = 7693, - [7757] = 7689, - [7758] = 7693, - [7759] = 7689, - [7760] = 7697, - [7761] = 7689, - [7762] = 7690, - [7763] = 7693, - [7764] = 7708, - [7765] = 7693, - [7766] = 7697, - [7767] = 7688, - [7768] = 7690, - [7769] = 7697, - [7770] = 7697, - [7771] = 7697, - [7772] = 7688, - [7773] = 7690, - [7774] = 7708, - [7775] = 7689, - [7776] = 7690, - [7777] = 7690, - [7778] = 7693, - [7779] = 7689, - [7780] = 7689, - [7781] = 7693, - [7782] = 7690, - [7783] = 7689, - [7784] = 7697, - [7785] = 3560, - [7786] = 7689, - [7787] = 7688, - [7788] = 7697, - [7789] = 7690, - [7790] = 7690, - [7791] = 7791, - [7792] = 7791, - [7793] = 7793, - [7794] = 7794, - [7795] = 7794, - [7796] = 2839, - [7797] = 7791, - [7798] = 7794, - [7799] = 7793, - [7800] = 7794, - [7801] = 2428, - [7802] = 7791, - [7803] = 7791, - [7804] = 7791, - [7805] = 2465, - [7806] = 2428, - [7807] = 7794, - [7808] = 7794, - [7809] = 2465, - [7810] = 7791, - [7811] = 7791, - [7812] = 7793, - [7813] = 7793, - [7814] = 7794, - [7815] = 2428, - [7816] = 7791, - [7817] = 7793, - [7818] = 2129, - [7819] = 7791, - [7820] = 7791, - [7821] = 7794, - [7822] = 2466, - [7823] = 3105, - [7824] = 7793, - [7825] = 7791, - [7826] = 7794, - [7827] = 2466, - [7828] = 2465, - [7829] = 7791, - [7830] = 7830, - [7831] = 7791, - [7832] = 7791, - [7833] = 7793, - [7834] = 7791, - [7835] = 7794, - [7836] = 7793, - [7837] = 7794, - [7838] = 2799, - [7839] = 7791, - [7840] = 7791, - [7841] = 7793, - [7842] = 7794, - [7843] = 7794, - [7844] = 7794, - [7845] = 7793, - [7846] = 2428, - [7847] = 7793, - [7848] = 7793, - [7849] = 7849, - [7850] = 7791, - [7851] = 7793, - [7852] = 7793, - [7853] = 7791, - [7854] = 7794, - [7855] = 2465, - [7856] = 7791, - [7857] = 2466, - [7858] = 7793, - [7859] = 7794, - [7860] = 7791, - [7861] = 2466, - [7862] = 7793, - [7863] = 7791, - [7864] = 7791, - [7865] = 7791, - [7866] = 7791, - [7867] = 7791, - [7868] = 2127, - [7869] = 7869, - [7870] = 7869, - [7871] = 3105, - [7872] = 7869, - [7873] = 7873, - [7874] = 2428, - [7875] = 7875, - [7876] = 2466, - [7877] = 7873, - [7878] = 7869, - [7879] = 7869, - [7880] = 7873, - [7881] = 2465, - [7882] = 3129, - [7883] = 2917, - [7884] = 2895, - [7885] = 7885, - [7886] = 7886, - [7887] = 2980, - [7888] = 2929, - [7889] = 2890, - [7890] = 2903, - [7891] = 2872, - [7892] = 2951, - [7893] = 2960, - [7894] = 7886, - [7895] = 2910, - [7896] = 3494, - [7897] = 7885, - [7898] = 2976, - [7899] = 2845, - [7900] = 3823, - [7901] = 2889, - [7902] = 7902, - [7903] = 7886, - [7904] = 7885, - [7905] = 7905, - [7906] = 7886, - [7907] = 7907, - [7908] = 7886, - [7909] = 7885, - [7910] = 7885, - [7911] = 7885, - [7912] = 7886, - [7913] = 7885, - [7914] = 7886, - [7915] = 7885, - [7916] = 3141, - [7917] = 2911, - [7918] = 7886, - [7919] = 7885, - [7920] = 7886, - [7921] = 7885, - [7922] = 7886, - [7923] = 7885, - [7924] = 2864, - [7925] = 3815, - [7926] = 2911, - [7927] = 2959, - [7928] = 2867, - [7929] = 7929, - [7930] = 3511, - [7931] = 2872, - [7932] = 3560, - [7933] = 2754, - [7934] = 2864, - [7935] = 7886, - [7936] = 7886, - [7937] = 3122, - [7938] = 2959, - [7939] = 7885, - [7940] = 2893, - [7941] = 2897, - [7942] = 256, - [7943] = 253, - [7944] = 2867, - [7945] = 2913, - [7946] = 3740, - [7947] = 3738, - [7948] = 3790, - [7949] = 3744, - [7950] = 3740, - [7951] = 7951, - [7952] = 7952, - [7953] = 7953, - [7954] = 3830, - [7955] = 3560, - [7956] = 3738, - [7957] = 3790, - [7958] = 3744, - [7959] = 7959, - [7960] = 3560, - [7961] = 7959, - [7962] = 7962, - [7963] = 7963, - [7964] = 7964, - [7965] = 7959, - [7966] = 7959, - [7967] = 7962, - [7968] = 7959, - [7969] = 7959, - [7970] = 7963, - [7971] = 2883, - [7972] = 7962, - [7973] = 7959, - [7974] = 7974, - [7975] = 7963, - [7976] = 7959, - [7977] = 7964, - [7978] = 7959, - [7979] = 7963, - [7980] = 7963, + [7747] = 7741, + [7748] = 7741, + [7749] = 7741, + [7750] = 7741, + [7751] = 7746, + [7752] = 7740, + [7753] = 7740, + [7754] = 2529, + [7755] = 7746, + [7756] = 7741, + [7757] = 7740, + [7758] = 2541, + [7759] = 2537, + [7760] = 7746, + [7761] = 7741, + [7762] = 7746, + [7763] = 7740, + [7764] = 7740, + [7765] = 2529, + [7766] = 7746, + [7767] = 2537, + [7768] = 7746, + [7769] = 7741, + [7770] = 2537, + [7771] = 7741, + [7772] = 7746, + [7773] = 7746, + [7774] = 7740, + [7775] = 7740, + [7776] = 2541, + [7777] = 7777, + [7778] = 7741, + [7779] = 7777, + [7780] = 7741, + [7781] = 7741, + [7782] = 7740, + [7783] = 7746, + [7784] = 7777, + [7785] = 7746, + [7786] = 7741, + [7787] = 7740, + [7788] = 7740, + [7789] = 2162, + [7790] = 7746, + [7791] = 7740, + [7792] = 7746, + [7793] = 2529, + [7794] = 2537, + [7795] = 7746, + [7796] = 7740, + [7797] = 7746, + [7798] = 7746, + [7799] = 2529, + [7800] = 2541, + [7801] = 7741, + [7802] = 7740, + [7803] = 7740, + [7804] = 7740, + [7805] = 7805, + [7806] = 7806, + [7807] = 7807, + [7808] = 7805, + [7809] = 7809, + [7810] = 7810, + [7811] = 7805, + [7812] = 7809, + [7813] = 7805, + [7814] = 7809, + [7815] = 7810, + [7816] = 7805, + [7817] = 7809, + [7818] = 7806, + [7819] = 7807, + [7820] = 7805, + [7821] = 7821, + [7822] = 7809, + [7823] = 7806, + [7824] = 7805, + [7825] = 7809, + [7826] = 7807, + [7827] = 7810, + [7828] = 7806, + [7829] = 7810, + [7830] = 7810, + [7831] = 7807, + [7832] = 3674, + [7833] = 2529, + [7834] = 7805, + [7835] = 7809, + [7836] = 7806, + [7837] = 7806, + [7838] = 7807, + [7839] = 7807, + [7840] = 2537, + [7841] = 7809, + [7842] = 2541, + [7843] = 7810, + [7844] = 7805, + [7845] = 7809, + [7846] = 7810, + [7847] = 2529, + [7848] = 2537, + [7849] = 2541, + [7850] = 7810, + [7851] = 7810, + [7852] = 7806, + [7853] = 7807, + [7854] = 7810, + [7855] = 7805, + [7856] = 7809, + [7857] = 7805, + [7858] = 7821, + [7859] = 7806, + [7860] = 7807, + [7861] = 7806, + [7862] = 7807, + [7863] = 7821, + [7864] = 7821, + [7865] = 7806, + [7866] = 7821, + [7867] = 7806, + [7868] = 7807, + [7869] = 7806, + [7870] = 7807, + [7871] = 7807, + [7872] = 7805, + [7873] = 7809, + [7874] = 7805, + [7875] = 7810, + [7876] = 7809, + [7877] = 7810, + [7878] = 7806, + [7879] = 7807, + [7880] = 7805, + [7881] = 7810, + [7882] = 7805, + [7883] = 7809, + [7884] = 7810, + [7885] = 7806, + [7886] = 7807, + [7887] = 7805, + [7888] = 7809, + [7889] = 7810, + [7890] = 7809, + [7891] = 7806, + [7892] = 7807, + [7893] = 7806, + [7894] = 7807, + [7895] = 7806, + [7896] = 7809, + [7897] = 7807, + [7898] = 7805, + [7899] = 7809, + [7900] = 7810, + [7901] = 7901, + [7902] = 7806, + [7903] = 7807, + [7904] = 7805, + [7905] = 7809, + [7906] = 7810, + [7907] = 7810, + [7908] = 7908, + [7909] = 7909, + [7910] = 7910, + [7911] = 7910, + [7912] = 7909, + [7913] = 7908, + [7914] = 7908, + [7915] = 7908, + [7916] = 2529, + [7917] = 2541, + [7918] = 7909, + [7919] = 7909, + [7920] = 7909, + [7921] = 7909, + [7922] = 2541, + [7923] = 2903, + [7924] = 7909, + [7925] = 7909, + [7926] = 7909, + [7927] = 7910, + [7928] = 7909, + [7929] = 2529, + [7930] = 7909, + [7931] = 7909, + [7932] = 7908, + [7933] = 2537, + [7934] = 7909, + [7935] = 2211, + [7936] = 2529, + [7937] = 7909, + [7938] = 2537, + [7939] = 2223, + [7940] = 7910, + [7941] = 7908, + [7942] = 7909, + [7943] = 7909, + [7944] = 7910, + [7945] = 7908, + [7946] = 7908, + [7947] = 7909, + [7948] = 7910, + [7949] = 7909, + [7950] = 2902, + [7951] = 7908, + [7952] = 7908, + [7953] = 7908, + [7954] = 7909, + [7955] = 3170, + [7956] = 7909, + [7957] = 7910, + [7958] = 7908, + [7959] = 7910, + [7960] = 7910, + [7961] = 7910, + [7962] = 2541, + [7963] = 7909, + [7964] = 2529, + [7965] = 7909, + [7966] = 7909, + [7967] = 7908, + [7968] = 2537, + [7969] = 2537, + [7970] = 7970, + [7971] = 7909, + [7972] = 7909, + [7973] = 7910, + [7974] = 7910, + [7975] = 7909, + [7976] = 7909, + [7977] = 7910, + [7978] = 7910, + [7979] = 7908, + [7980] = 7908, [7981] = 7981, - [7982] = 7959, - [7983] = 3223, - [7984] = 7962, - [7985] = 7963, - [7986] = 7959, - [7987] = 2923, - [7988] = 7963, - [7989] = 2924, - [7990] = 7959, - [7991] = 7962, - [7992] = 7963, - [7993] = 7959, - [7994] = 7959, - [7995] = 7959, - [7996] = 7959, - [7997] = 2882, - [7998] = 7959, - [7999] = 7959, - [8000] = 7959, - [8001] = 7959, - [8002] = 7974, - [8003] = 7959, - [8004] = 7959, - [8005] = 3738, - [8006] = 3790, - [8007] = 3744, - [8008] = 7963, - [8009] = 3740, - [8010] = 3248, - [8011] = 3738, - [8012] = 3790, - [8013] = 3744, - [8014] = 3740, - [8015] = 7963, - [8016] = 7953, - [8017] = 7963, - [8018] = 7962, - [8019] = 7962, - [8020] = 7959, - [8021] = 7974, - [8022] = 2870, - [8023] = 2871, - [8024] = 7959, - [8025] = 7964, - [8026] = 7963, - [8027] = 7981, - [8028] = 8028, - [8029] = 7981, - [8030] = 7959, - [8031] = 7959, - [8032] = 7959, - [8033] = 7959, - [8034] = 8034, - [8035] = 8035, - [8036] = 8036, - [8037] = 8037, - [8038] = 8038, - [8039] = 8039, - [8040] = 8038, - [8041] = 8041, - [8042] = 8042, - [8043] = 8043, - [8044] = 8044, - [8045] = 8045, - [8046] = 8046, - [8047] = 8047, - [8048] = 8039, - [8049] = 8049, - [8050] = 8050, - [8051] = 8051, - [8052] = 8052, - [8053] = 8053, - [8054] = 8054, - [8055] = 8041, - [8056] = 3560, - [8057] = 3560, - [8058] = 8035, - [8059] = 8059, - [8060] = 8042, - [8061] = 8061, - [8062] = 8062, - [8063] = 8063, + [7982] = 7910, + [7983] = 7910, + [7984] = 7908, + [7985] = 2541, + [7986] = 7986, + [7987] = 3170, + [7988] = 7988, + [7989] = 2529, + [7990] = 7986, + [7991] = 2537, + [7992] = 7992, + [7993] = 7986, + [7994] = 2541, + [7995] = 7988, + [7996] = 7986, + [7997] = 7988, + [7998] = 7986, + [7999] = 3071, + [8000] = 2955, + [8001] = 8001, + [8002] = 8002, + [8003] = 2976, + [8004] = 3674, + [8005] = 3129, + [8006] = 3933, + [8007] = 8007, + [8008] = 8001, + [8009] = 8001, + [8010] = 8010, + [8011] = 8007, + [8012] = 8007, + [8013] = 3071, + [8014] = 8007, + [8015] = 3009, + [8016] = 2983, + [8017] = 3004, + [8018] = 3006, + [8019] = 8019, + [8020] = 3657, + [8021] = 8021, + [8022] = 2803, + [8023] = 3002, + [8024] = 8001, + [8025] = 288, + [8026] = 285, + [8027] = 8007, + [8028] = 8007, + [8029] = 8007, + [8030] = 8001, + [8031] = 3085, + [8032] = 2973, + [8033] = 3068, + [8034] = 3622, + [8035] = 3029, + [8036] = 3024, + [8037] = 3034, + [8038] = 2994, + [8039] = 8001, + [8040] = 3027, + [8041] = 8001, + [8042] = 8001, + [8043] = 3125, + [8044] = 8007, + [8045] = 8001, + [8046] = 2973, + [8047] = 8001, + [8048] = 8007, + [8049] = 3038, + [8050] = 2977, + [8051] = 2977, + [8052] = 8001, + [8053] = 8007, + [8054] = 2994, + [8055] = 8007, + [8056] = 3169, + [8057] = 3029, + [8058] = 2957, + [8059] = 2960, + [8060] = 8001, + [8061] = 3827, + [8062] = 8007, + [8063] = 3880, [8064] = 8064, - [8065] = 8044, - [8066] = 8066, - [8067] = 8045, - [8068] = 8068, - [8069] = 8069, - [8070] = 8036, - [8071] = 8071, - [8072] = 8037, - [8073] = 8037, - [8074] = 8038, - [8075] = 8043, - [8076] = 8046, + [8065] = 8065, + [8066] = 3891, + [8067] = 3895, + [8068] = 3896, + [8069] = 3891, + [8070] = 3895, + [8071] = 3674, + [8072] = 3875, + [8073] = 3896, + [8074] = 8074, + [8075] = 3880, + [8076] = 8076, [8077] = 8077, [8078] = 8078, - [8079] = 8079, - [8080] = 8037, - [8081] = 8043, + [8079] = 8077, + [8080] = 3895, + [8081] = 3896, [8082] = 8082, - [8083] = 8038, - [8084] = 8084, - [8085] = 8085, - [8086] = 8086, - [8087] = 8037, - [8088] = 8038, - [8089] = 1954, - [8090] = 8043, - [8091] = 8050, - [8092] = 8037, - [8093] = 8038, - [8094] = 8094, - [8095] = 8037, - [8096] = 8038, - [8097] = 8037, - [8098] = 8038, - [8099] = 8051, - [8100] = 8037, - [8101] = 8053, - [8102] = 8038, - [8103] = 3560, - [8104] = 8104, - [8105] = 8105, - [8106] = 8043, - [8107] = 8104, - [8108] = 8108, - [8109] = 8109, - [8110] = 8105, - [8111] = 8104, - [8112] = 8105, - [8113] = 8105, - [8114] = 8114, - [8115] = 8115, - [8116] = 8116, - [8117] = 8117, - [8118] = 4478, - [8119] = 8034, - [8120] = 3578, - [8121] = 8121, - [8122] = 8121, - [8123] = 8121, - [8124] = 8124, - [8125] = 8121, - [8126] = 8121, - [8127] = 8127, - [8128] = 8054, - [8129] = 8121, - [8130] = 8130, - [8131] = 4478, - [8132] = 8132, - [8133] = 8115, - [8134] = 8117, - [8135] = 8121, - [8136] = 8136, - [8137] = 8137, - [8138] = 8132, - [8139] = 8139, - [8140] = 3598, - [8141] = 8136, - [8142] = 8136, - [8143] = 1969, - [8144] = 8137, - [8145] = 8145, - [8146] = 8064, - [8147] = 3490, - [8148] = 3580, - [8149] = 3581, - [8150] = 3590, + [8083] = 8076, + [8084] = 8076, + [8085] = 8076, + [8086] = 8076, + [8087] = 3880, + [8088] = 8076, + [8089] = 8076, + [8090] = 8077, + [8091] = 8077, + [8092] = 8092, + [8093] = 8092, + [8094] = 8076, + [8095] = 8076, + [8096] = 8082, + [8097] = 2956, + [8098] = 8076, + [8099] = 8092, + [8100] = 8082, + [8101] = 8077, + [8102] = 2958, + [8103] = 8076, + [8104] = 3441, + [8105] = 8076, + [8106] = 8076, + [8107] = 8107, + [8108] = 8082, + [8109] = 8076, + [8110] = 8076, + [8111] = 8076, + [8112] = 3018, + [8113] = 8076, + [8114] = 3433, + [8115] = 8077, + [8116] = 3000, + [8117] = 8077, + [8118] = 8107, + [8119] = 8076, + [8120] = 8076, + [8121] = 8082, + [8122] = 8122, + [8123] = 8076, + [8124] = 3880, + [8125] = 3891, + [8126] = 3895, + [8127] = 3896, + [8128] = 8082, + [8129] = 8077, + [8130] = 8076, + [8131] = 8078, + [8132] = 3891, + [8133] = 3079, + [8134] = 8077, + [8135] = 8076, + [8136] = 8074, + [8137] = 8107, + [8138] = 3065, + [8139] = 8076, + [8140] = 8077, + [8141] = 8076, + [8142] = 8076, + [8143] = 8076, + [8144] = 8076, + [8145] = 8078, + [8146] = 8082, + [8147] = 8077, + [8148] = 8077, + [8149] = 3674, + [8150] = 8076, [8151] = 8151, [8152] = 8152, [8153] = 8153, - [8154] = 8121, - [8155] = 3540, - [8156] = 3543, - [8157] = 8136, + [8154] = 8154, + [8155] = 8155, + [8156] = 8156, + [8157] = 8157, [8158] = 8158, - [8159] = 8121, - [8160] = 3516, - [8161] = 8047, - [8162] = 3521, - [8163] = 3522, - [8164] = 3525, - [8165] = 3526, - [8166] = 8166, - [8167] = 8121, - [8168] = 8121, - [8169] = 3535, - [8170] = 3513, - [8171] = 3560, - [8172] = 8121, - [8173] = 8121, - [8174] = 8121, - [8175] = 8121, - [8176] = 8121, - [8177] = 8121, - [8178] = 8121, - [8179] = 8130, - [8180] = 3510, - [8181] = 3523, - [8182] = 8136, - [8183] = 3515, - [8184] = 8137, - [8185] = 8145, - [8186] = 8186, + [8159] = 8159, + [8160] = 8152, + [8161] = 8161, + [8162] = 8154, + [8163] = 8163, + [8164] = 8164, + [8165] = 8154, + [8166] = 8154, + [8167] = 8167, + [8168] = 8168, + [8169] = 8157, + [8170] = 8170, + [8171] = 8154, + [8172] = 8172, + [8173] = 8173, + [8174] = 3674, + [8175] = 8157, + [8176] = 8176, + [8177] = 8163, + [8178] = 8156, + [8179] = 8179, + [8180] = 8180, + [8181] = 8181, + [8182] = 8182, + [8183] = 8161, + [8184] = 3674, + [8185] = 8185, + [8186] = 8182, [8187] = 8187, [8188] = 8188, - [8189] = 8121, - [8190] = 3495, + [8189] = 8157, + [8190] = 8190, [8191] = 8191, - [8192] = 8121, - [8193] = 8121, - [8194] = 8145, - [8195] = 3497, - [8196] = 8130, - [8197] = 8197, - [8198] = 8152, - [8199] = 8137, - [8200] = 8136, - [8201] = 8121, - [8202] = 8121, - [8203] = 8136, + [8192] = 8192, + [8193] = 8193, + [8194] = 8154, + [8195] = 8195, + [8196] = 8157, + [8197] = 8154, + [8198] = 8198, + [8199] = 8199, + [8200] = 8167, + [8201] = 8201, + [8202] = 8202, + [8203] = 8192, [8204] = 8204, - [8205] = 8061, - [8206] = 8137, - [8207] = 8114, - [8208] = 3541, - [8209] = 8121, - [8210] = 2022, - [8211] = 8121, - [8212] = 3702, - [8213] = 8213, - [8214] = 8059, - [8215] = 8215, - [8216] = 3492, - [8217] = 8217, - [8218] = 8218, - [8219] = 8121, - [8220] = 8121, + [8205] = 8190, + [8206] = 8206, + [8207] = 4551, + [8208] = 8157, + [8209] = 8209, + [8210] = 8210, + [8211] = 8211, + [8212] = 8212, + [8213] = 8157, + [8214] = 8157, + [8215] = 8180, + [8216] = 8191, + [8217] = 8172, + [8218] = 3674, + [8219] = 8219, + [8220] = 8182, [8221] = 8221, - [8222] = 8066, - [8223] = 8068, - [8224] = 8069, - [8225] = 8071, - [8226] = 8077, - [8227] = 8079, - [8228] = 8082, - [8229] = 8084, - [8230] = 8121, - [8231] = 8085, - [8232] = 8086, - [8233] = 8233, - [8234] = 3565, - [8235] = 3573, - [8236] = 2022, - [8237] = 1969, - [8238] = 8121, - [8239] = 3528, - [8240] = 3491, - [8241] = 8130, - [8242] = 3491, - [8243] = 3790, - [8244] = 2893, - [8245] = 3761, - [8246] = 3598, + [8222] = 2049, + [8223] = 8181, + [8224] = 8151, + [8225] = 8154, + [8226] = 8226, + [8227] = 8187, + [8228] = 8180, + [8229] = 8181, + [8230] = 8230, + [8231] = 8231, + [8232] = 8232, + [8233] = 8154, + [8234] = 8209, + [8235] = 8161, + [8236] = 8181, + [8237] = 8168, + [8238] = 8181, + [8239] = 8157, + [8240] = 8182, + [8241] = 8241, + [8242] = 3608, + [8243] = 3611, + [8244] = 8244, + [8245] = 8245, + [8246] = 8246, [8247] = 8247, - [8248] = 2976, - [8249] = 8247, - [8250] = 8250, - [8251] = 8251, - [8252] = 2845, - [8253] = 3662, - [8254] = 2890, - [8255] = 3744, - [8256] = 3744, - [8257] = 3648, - [8258] = 8258, - [8259] = 2911, - [8260] = 2903, - [8261] = 2910, - [8262] = 8262, - [8263] = 3511, - [8264] = 3740, - [8265] = 2897, - [8266] = 3738, - [8267] = 8250, - [8268] = 2867, - [8269] = 2864, - [8270] = 8270, - [8271] = 3494, - [8272] = 2913, - [8273] = 8250, - [8274] = 8250, - [8275] = 8275, - [8276] = 2959, - [8277] = 3755, - [8278] = 2951, - [8279] = 3540, - [8280] = 2960, - [8281] = 2929, - [8282] = 8282, - [8283] = 3560, - [8284] = 3738, - [8285] = 8275, + [8248] = 8248, + [8249] = 8249, + [8250] = 3679, + [8251] = 3696, + [8252] = 8252, + [8253] = 8198, + [8254] = 8231, + [8255] = 8255, + [8256] = 8248, + [8257] = 8249, + [8258] = 3637, + [8259] = 8248, + [8260] = 3638, + [8261] = 3651, + [8262] = 3640, + [8263] = 8263, + [8264] = 3641, + [8265] = 8248, + [8266] = 3694, + [8267] = 8249, + [8268] = 8268, + [8269] = 8249, + [8270] = 2077, + [8271] = 8271, + [8272] = 8272, + [8273] = 8246, + [8274] = 8274, + [8275] = 8248, + [8276] = 2112, + [8277] = 8155, + [8278] = 3674, + [8279] = 8248, + [8280] = 8248, + [8281] = 8248, + [8282] = 8248, + [8283] = 8248, + [8284] = 8248, + [8285] = 8248, [8286] = 8286, - [8287] = 8250, - [8288] = 8275, - [8289] = 8275, - [8290] = 8275, - [8291] = 3490, - [8292] = 8247, - [8293] = 2872, - [8294] = 8247, - [8295] = 2917, - [8296] = 2895, - [8297] = 3248, - [8298] = 8250, - [8299] = 8247, - [8300] = 3790, - [8301] = 8275, - [8302] = 3495, - [8303] = 8250, - [8304] = 3223, - [8305] = 4083, - [8306] = 2864, - [8307] = 4087, - [8308] = 4089, - [8309] = 4084, - [8310] = 4085, - [8311] = 4090, - [8312] = 4086, - [8313] = 4092, - [8314] = 2911, - [8315] = 2959, - [8316] = 2867, - [8317] = 2872, - [8318] = 253, - [8319] = 2889, - [8320] = 256, - [8321] = 3740, - [8322] = 2980, - [8323] = 8323, - [8324] = 8323, - [8325] = 8323, - [8326] = 8323, - [8327] = 8327, - [8328] = 4087, - [8329] = 3738, - [8330] = 3790, - [8331] = 3744, - [8332] = 3740, - [8333] = 3738, - [8334] = 8323, - [8335] = 3790, - [8336] = 8323, - [8337] = 3744, - [8338] = 3740, - [8339] = 8323, - [8340] = 8323, - [8341] = 2486, - [8342] = 8323, - [8343] = 8343, + [8287] = 8287, + [8288] = 8288, + [8289] = 8249, + [8290] = 8248, + [8291] = 8291, + [8292] = 8245, + [8293] = 8246, + [8294] = 8294, + [8295] = 2112, + [8296] = 8202, + [8297] = 3675, + [8298] = 3601, + [8299] = 8248, + [8300] = 8248, + [8301] = 3688, + [8302] = 8291, + [8303] = 8303, + [8304] = 8248, + [8305] = 8291, + [8306] = 8211, + [8307] = 8248, + [8308] = 8308, + [8309] = 8248, + [8310] = 8310, + [8311] = 8245, + [8312] = 3625, + [8313] = 3628, + [8314] = 3626, + [8315] = 8206, + [8316] = 8201, + [8317] = 8248, + [8318] = 8212, + [8319] = 8185, + [8320] = 8248, + [8321] = 8193, + [8322] = 8195, + [8323] = 8179, + [8324] = 8232, + [8325] = 8248, + [8326] = 8164, + [8327] = 8159, + [8328] = 8248, + [8329] = 8286, + [8330] = 8210, + [8331] = 8331, + [8332] = 8248, + [8333] = 8221, + [8334] = 8294, + [8335] = 8248, + [8336] = 2077, + [8337] = 8245, + [8338] = 8248, + [8339] = 3681, + [8340] = 8249, + [8341] = 3809, + [8342] = 8247, + [8343] = 3698, [8344] = 8344, - [8345] = 8327, - [8346] = 8323, - [8347] = 8323, - [8348] = 8323, - [8349] = 2439, - [8350] = 4083, - [8351] = 4092, - [8352] = 2476, - [8353] = 8323, - [8354] = 4085, - [8355] = 8323, - [8356] = 8323, - [8357] = 8323, - [8358] = 4090, - [8359] = 4089, - [8360] = 8360, - [8361] = 8323, - [8362] = 1855, - [8363] = 4086, - [8364] = 8364, - [8365] = 8323, - [8366] = 3648, - [8367] = 8323, - [8368] = 8323, - [8369] = 8323, - [8370] = 8370, + [8345] = 8248, + [8346] = 8248, + [8347] = 8347, + [8348] = 8348, + [8349] = 8230, + [8350] = 3664, + [8351] = 3669, + [8352] = 8248, + [8353] = 3671, + [8354] = 3673, + [8355] = 8286, + [8356] = 8291, + [8357] = 8357, + [8358] = 3655, + [8359] = 8359, + [8360] = 8248, + [8361] = 4551, + [8362] = 3603, + [8363] = 3687, + [8364] = 3604, + [8365] = 8249, + [8366] = 8245, + [8367] = 8367, + [8368] = 3911, + [8369] = 2957, + [8370] = 2960, [8371] = 8371, - [8372] = 8323, - [8373] = 8323, - [8374] = 3796, - [8375] = 8323, - [8376] = 8323, - [8377] = 4084, - [8378] = 3560, - [8379] = 8323, - [8380] = 8323, - [8381] = 8323, - [8382] = 8323, - [8383] = 3115, - [8384] = 8384, - [8385] = 8385, - [8386] = 8386, - [8387] = 3494, - [8388] = 8388, - [8389] = 3510, - [8390] = 3744, - [8391] = 3497, - [8392] = 2959, - [8393] = 3515, - [8394] = 8394, - [8395] = 8395, - [8396] = 3560, - [8397] = 3528, - [8398] = 2867, - [8399] = 3740, - [8400] = 3059, - [8401] = 3098, - [8402] = 3068, - [8403] = 8403, - [8404] = 8404, - [8405] = 3492, - [8406] = 8406, - [8407] = 8407, - [8408] = 3541, - [8409] = 2872, - [8410] = 3543, - [8411] = 8404, + [8372] = 3896, + [8373] = 3891, + [8374] = 3029, + [8375] = 8371, + [8376] = 4157, + [8377] = 8371, + [8378] = 3009, + [8379] = 4162, + [8380] = 4163, + [8381] = 3433, + [8382] = 4159, + [8383] = 8383, + [8384] = 4160, + [8385] = 4165, + [8386] = 4149, + [8387] = 4166, + [8388] = 8371, + [8389] = 8389, + [8390] = 8383, + [8391] = 8371, + [8392] = 8389, + [8393] = 8393, + [8394] = 8389, + [8395] = 3085, + [8396] = 2994, + [8397] = 3888, + [8398] = 3071, + [8399] = 3024, + [8400] = 8400, + [8401] = 3029, + [8402] = 2973, + [8403] = 2977, + [8404] = 3604, + [8405] = 3880, + [8406] = 3694, + [8407] = 3698, + [8408] = 2977, + [8409] = 8383, + [8410] = 3891, + [8411] = 3880, [8412] = 8412, - [8413] = 3121, - [8414] = 8406, - [8415] = 8415, - [8416] = 8416, - [8417] = 3578, - [8418] = 3580, - [8419] = 8406, - [8420] = 8404, - [8421] = 3581, - [8422] = 3738, - [8423] = 2864, - [8424] = 3590, - [8425] = 8425, - [8426] = 8404, - [8427] = 3741, - [8428] = 8404, - [8429] = 3776, - [8430] = 3742, - [8431] = 3573, - [8432] = 3749, - [8433] = 3757, - [8434] = 3782, - [8435] = 8404, - [8436] = 3789, - [8437] = 3790, - [8438] = 2911, - [8439] = 8406, - [8440] = 3744, - [8441] = 2959, - [8442] = 8404, - [8443] = 2867, - [8444] = 3740, - [8445] = 8406, - [8446] = 3511, - [8447] = 2872, - [8448] = 3521, - [8449] = 3522, - [8450] = 3525, - [8451] = 3526, - [8452] = 3738, - [8453] = 8406, - [8454] = 3790, - [8455] = 3513, - [8456] = 2911, - [8457] = 3516, - [8458] = 2864, - [8459] = 8459, - [8460] = 8460, - [8461] = 8461, - [8462] = 3535, - [8463] = 8463, - [8464] = 3097, - [8465] = 3109, - [8466] = 3523, - [8467] = 8467, - [8468] = 3126, - [8469] = 8469, - [8470] = 8470, - [8471] = 8471, - [8472] = 8472, - [8473] = 3093, - [8474] = 3116, - [8475] = 3117, - [8476] = 3565, - [8477] = 8406, - [8478] = 3790, - [8479] = 3740, - [8480] = 8480, + [8413] = 2955, + [8414] = 3002, + [8415] = 288, + [8416] = 8371, + [8417] = 3779, + [8418] = 2983, + [8419] = 8419, + [8420] = 3027, + [8421] = 285, + [8422] = 3006, + [8423] = 3068, + [8424] = 3038, + [8425] = 3622, + [8426] = 3004, + [8427] = 2976, + [8428] = 2973, + [8429] = 3895, + [8430] = 3681, + [8431] = 3657, + [8432] = 8389, + [8433] = 3674, + [8434] = 3895, + [8435] = 3896, + [8436] = 3710, + [8437] = 8389, + [8438] = 8383, + [8439] = 8383, + [8440] = 2994, + [8441] = 3071, + [8442] = 8383, + [8443] = 8383, + [8444] = 3441, + [8445] = 8445, + [8446] = 3696, + [8447] = 3034, + [8448] = 3674, + [8449] = 1963, + [8450] = 3895, + [8451] = 8451, + [8452] = 8451, + [8453] = 8451, + [8454] = 8451, + [8455] = 3896, + [8456] = 8451, + [8457] = 8457, + [8458] = 8458, + [8459] = 8451, + [8460] = 2538, + [8461] = 8451, + [8462] = 8462, + [8463] = 8451, + [8464] = 8451, + [8465] = 8451, + [8466] = 8451, + [8467] = 4163, + [8468] = 8468, + [8469] = 8451, + [8470] = 3880, + [8471] = 3891, + [8472] = 3895, + [8473] = 3710, + [8474] = 8474, + [8475] = 8451, + [8476] = 2556, + [8477] = 4149, + [8478] = 8451, + [8479] = 8451, + [8480] = 3896, [8481] = 8481, - [8482] = 8482, - [8483] = 3738, - [8484] = 3790, - [8485] = 3744, - [8486] = 3740, - [8487] = 3790, - [8488] = 8488, - [8489] = 3738, - [8490] = 3790, - [8491] = 3744, - [8492] = 3740, - [8493] = 8481, - [8494] = 8481, - [8495] = 3738, - [8496] = 8482, - [8497] = 3560, - [8498] = 3744, - [8499] = 8481, - [8500] = 8482, - [8501] = 3738, - [8502] = 3790, - [8503] = 3744, - [8504] = 8481, - [8505] = 3740, - [8506] = 8482, - [8507] = 8481, - [8508] = 8481, - [8509] = 8482, - [8510] = 8213, - [8511] = 8482, - [8512] = 8512, - [8513] = 8482, - [8514] = 8481, - [8515] = 8482, - [8516] = 3740, - [8517] = 8517, - [8518] = 8518, - [8519] = 8519, - [8520] = 8520, - [8521] = 8521, - [8522] = 8482, - [8523] = 8517, + [8482] = 4159, + [8483] = 8451, + [8484] = 8451, + [8485] = 4160, + [8486] = 8451, + [8487] = 4157, + [8488] = 8451, + [8489] = 8451, + [8490] = 8474, + [8491] = 3880, + [8492] = 8451, + [8493] = 8451, + [8494] = 4166, + [8495] = 8495, + [8496] = 4162, + [8497] = 3891, + [8498] = 8451, + [8499] = 4165, + [8500] = 8451, + [8501] = 2565, + [8502] = 3941, + [8503] = 8451, + [8504] = 8451, + [8505] = 8451, + [8506] = 8451, + [8507] = 8451, + [8508] = 8508, + [8509] = 3603, + [8510] = 3891, + [8511] = 3071, + [8512] = 3895, + [8513] = 3029, + [8514] = 8514, + [8515] = 3880, + [8516] = 8516, + [8517] = 2973, + [8518] = 3896, + [8519] = 2977, + [8520] = 3216, + [8521] = 3111, + [8522] = 3601, + [8523] = 8523, [8524] = 8524, - [8525] = 8517, - [8526] = 8526, - [8527] = 8517, - [8528] = 8517, - [8529] = 8517, - [8530] = 8517, - [8531] = 8531, - [8532] = 8532, - [8533] = 3166, - [8534] = 3738, - [8535] = 8166, - [8536] = 3744, - [8537] = 8537, - [8538] = 3740, + [8525] = 8525, + [8526] = 2994, + [8527] = 3094, + [8528] = 8528, + [8529] = 3608, + [8530] = 8530, + [8531] = 3124, + [8532] = 8516, + [8533] = 8525, + [8534] = 8534, + [8535] = 8516, + [8536] = 8536, + [8537] = 3637, + [8538] = 8525, [8539] = 8539, - [8540] = 8540, + [8540] = 3101, [8541] = 8541, - [8542] = 3738, - [8543] = 3790, - [8544] = 3744, - [8545] = 8481, - [8546] = 8546, - [8547] = 4092, + [8542] = 3674, + [8543] = 8516, + [8544] = 3638, + [8545] = 8525, + [8546] = 3848, + [8547] = 3850, [8548] = 8548, - [8549] = 8549, - [8550] = 3740, - [8551] = 3662, - [8552] = 8552, - [8553] = 2959, - [8554] = 8548, - [8555] = 2872, + [8549] = 3651, + [8550] = 3675, + [8551] = 2973, + [8552] = 3669, + [8553] = 3671, + [8554] = 3851, + [8555] = 8555, [8556] = 8556, - [8557] = 8548, - [8558] = 8556, - [8559] = 8552, - [8560] = 8546, - [8561] = 3738, - [8562] = 2864, - [8563] = 8546, - [8564] = 8549, - [8565] = 8556, - [8566] = 8552, - [8567] = 3790, - [8568] = 2911, - [8569] = 3744, - [8570] = 2959, - [8571] = 8549, - [8572] = 8552, - [8573] = 2867, - [8574] = 3740, - [8575] = 2872, - [8576] = 8549, - [8577] = 8556, - [8578] = 8548, - [8579] = 8549, - [8580] = 8556, - [8581] = 8581, - [8582] = 3511, - [8583] = 4083, - [8584] = 8549, - [8585] = 8548, - [8586] = 3790, - [8587] = 8587, - [8588] = 8549, - [8589] = 2780, - [8590] = 8549, - [8591] = 4085, - [8592] = 8548, - [8593] = 8549, - [8594] = 8556, - [8595] = 8546, - [8596] = 2911, - [8597] = 3494, - [8598] = 8587, - [8599] = 8548, - [8600] = 8552, - [8601] = 2701, - [8602] = 8546, - [8603] = 3511, - [8604] = 8549, - [8605] = 8549, - [8606] = 8549, - [8607] = 8587, - [8608] = 3738, - [8609] = 8556, - [8610] = 8587, + [8557] = 3853, + [8558] = 3856, + [8559] = 3895, + [8560] = 3687, + [8561] = 3655, + [8562] = 8516, + [8563] = 2977, + [8564] = 3679, + [8565] = 3029, + [8566] = 8516, + [8567] = 3640, + [8568] = 8568, + [8569] = 3622, + [8570] = 3140, + [8571] = 3198, + [8572] = 8572, + [8573] = 3149, + [8574] = 3152, + [8575] = 3172, + [8576] = 3180, + [8577] = 3664, + [8578] = 8578, + [8579] = 3641, + [8580] = 8525, + [8581] = 8516, + [8582] = 3673, + [8583] = 3891, + [8584] = 3628, + [8585] = 3071, + [8586] = 8586, + [8587] = 3880, + [8588] = 2994, + [8589] = 8589, + [8590] = 8590, + [8591] = 8525, + [8592] = 3611, + [8593] = 3896, + [8594] = 8594, + [8595] = 3931, + [8596] = 3625, + [8597] = 3657, + [8598] = 3626, + [8599] = 8599, + [8600] = 8525, + [8601] = 3688, + [8602] = 3852, + [8603] = 8603, + [8604] = 3891, + [8605] = 8605, + [8606] = 3895, + [8607] = 3896, + [8608] = 8603, + [8609] = 3896, + [8610] = 8603, [8611] = 8611, - [8612] = 8549, - [8613] = 4087, - [8614] = 8549, - [8615] = 2864, - [8616] = 4090, - [8617] = 8549, - [8618] = 3494, - [8619] = 2788, - [8620] = 4086, - [8621] = 8549, - [8622] = 8546, - [8623] = 4089, - [8624] = 8549, - [8625] = 8587, - [8626] = 8549, - [8627] = 8587, - [8628] = 8552, - [8629] = 8587, - [8630] = 4084, - [8631] = 8549, - [8632] = 3744, - [8633] = 8611, - [8634] = 8549, - [8635] = 2867, - [8636] = 8549, - [8637] = 2742, - [8638] = 8549, - [8639] = 8549, - [8640] = 8552, - [8641] = 8641, - [8642] = 8641, - [8643] = 8643, - [8644] = 8407, - [8645] = 8645, - [8646] = 8415, - [8647] = 8647, - [8648] = 2012, + [8612] = 8612, + [8613] = 8613, + [8614] = 8603, + [8615] = 8615, + [8616] = 8611, + [8617] = 8617, + [8618] = 8618, + [8619] = 8619, + [8620] = 8603, + [8621] = 8611, + [8622] = 8603, + [8623] = 8611, + [8624] = 8611, + [8625] = 8625, + [8626] = 3880, + [8627] = 3891, + [8628] = 3674, + [8629] = 3895, + [8630] = 3896, + [8631] = 3891, + [8632] = 3896, + [8633] = 8603, + [8634] = 8634, + [8635] = 8615, + [8636] = 3880, + [8637] = 8637, + [8638] = 8638, + [8639] = 8241, + [8640] = 3891, + [8641] = 3895, + [8642] = 3896, + [8643] = 3891, + [8644] = 8603, + [8645] = 8611, + [8646] = 8646, + [8647] = 8268, + [8648] = 8615, [8649] = 8649, - [8650] = 8645, - [8651] = 4084, - [8652] = 8407, - [8653] = 8641, - [8654] = 8654, - [8655] = 8654, - [8656] = 4085, - [8657] = 8649, + [8650] = 8615, + [8651] = 8615, + [8652] = 8603, + [8653] = 8615, + [8654] = 8615, + [8655] = 8611, + [8656] = 3331, + [8657] = 8611, [8658] = 8658, - [8659] = 8649, - [8660] = 8645, - [8661] = 8661, - [8662] = 8641, - [8663] = 8641, - [8664] = 5698, - [8665] = 8665, - [8666] = 8654, - [8667] = 4083, - [8668] = 1974, - [8669] = 8649, - [8670] = 8649, - [8671] = 8641, - [8672] = 8654, - [8673] = 4087, - [8674] = 8654, - [8675] = 4089, - [8676] = 8641, - [8677] = 8649, - [8678] = 4090, - [8679] = 4092, - [8680] = 8641, - [8681] = 8641, - [8682] = 8647, - [8683] = 8641, - [8684] = 8388, - [8685] = 8213, - [8686] = 8384, - [8687] = 8649, - [8688] = 8654, - [8689] = 8388, - [8690] = 8654, - [8691] = 4086, - [8692] = 8649, - [8693] = 8641, - [8694] = 8415, - [8695] = 8649, - [8696] = 8649, - [8697] = 8166, - [8698] = 8654, - [8699] = 8654, - [8700] = 8649, - [8701] = 8467, - [8702] = 8384, - [8703] = 8703, - [8704] = 8654, - [8705] = 8467, - [8706] = 8647, - [8707] = 8645, - [8708] = 8647, - [8709] = 4084, - [8710] = 4089, - [8711] = 4092, - [8712] = 4083, - [8713] = 8713, - [8714] = 8714, - [8715] = 8715, - [8716] = 8716, - [8717] = 3744, - [8718] = 1966, - [8719] = 3738, - [8720] = 8720, - [8721] = 8721, - [8722] = 3698, - [8723] = 8723, - [8724] = 3662, - [8725] = 3740, - [8726] = 8726, - [8727] = 4087, - [8728] = 8728, - [8729] = 4086, - [8730] = 8730, - [8731] = 4085, - [8732] = 4090, - [8733] = 8733, - [8734] = 3790, - [8735] = 8735, - [8736] = 8736, - [8737] = 8737, - [8738] = 8738, - [8739] = 8736, - [8740] = 4084, - [8741] = 4085, - [8742] = 8742, - [8743] = 8736, - [8744] = 8738, - [8745] = 8745, - [8746] = 4087, - [8747] = 8747, - [8748] = 8748, - [8749] = 4089, - [8750] = 4086, - [8751] = 8738, - [8752] = 8736, - [8753] = 4090, - [8754] = 4092, - [8755] = 8755, - [8756] = 8756, - [8757] = 8757, - [8758] = 8736, - [8759] = 8759, - [8760] = 8745, - [8761] = 8761, - [8762] = 8762, - [8763] = 8763, - [8764] = 8764, - [8765] = 1866, - [8766] = 4087, - [8767] = 4089, - [8768] = 4090, - [8769] = 4092, - [8770] = 8736, - [8771] = 8736, - [8772] = 1857, - [8773] = 1858, - [8774] = 8736, - [8775] = 1859, - [8776] = 4083, - [8777] = 8738, - [8778] = 8778, - [8779] = 8779, - [8780] = 8736, - [8781] = 8781, - [8782] = 4084, - [8783] = 8745, - [8784] = 4085, - [8785] = 4086, - [8786] = 8736, - [8787] = 1860, - [8788] = 1861, - [8789] = 1862, - [8790] = 8790, - [8791] = 4087, - [8792] = 4089, - [8793] = 8736, - [8794] = 8794, - [8795] = 2022, - [8796] = 4090, - [8797] = 4092, - [8798] = 8736, - [8799] = 4083, - [8800] = 8800, - [8801] = 8745, - [8802] = 8738, - [8803] = 8745, - [8804] = 4084, - [8805] = 4085, - [8806] = 8745, - [8807] = 8738, - [8808] = 8736, - [8809] = 8736, - [8810] = 8810, - [8811] = 8811, - [8812] = 8812, - [8813] = 4086, - [8814] = 8738, - [8815] = 8815, - [8816] = 4083, - [8817] = 8736, - [8818] = 8736, - [8819] = 8745, - [8820] = 4087, - [8821] = 2132, - [8822] = 8822, - [8823] = 2911, - [8824] = 2072, - [8825] = 2872, - [8826] = 2122, - [8827] = 2125, - [8828] = 2075, - [8829] = 8829, - [8830] = 2083, - [8831] = 4087, - [8832] = 4090, - [8833] = 4092, + [8659] = 3895, + [8660] = 8660, + [8661] = 3880, + [8662] = 3895, + [8663] = 8611, + [8664] = 8664, + [8665] = 3880, + [8666] = 3880, + [8667] = 3891, + [8668] = 3895, + [8669] = 3896, + [8670] = 3880, + [8671] = 8671, + [8672] = 2757, + [8673] = 8673, + [8674] = 8674, + [8675] = 8675, + [8676] = 8675, + [8677] = 8673, + [8678] = 8678, + [8679] = 3779, + [8680] = 3622, + [8681] = 8671, + [8682] = 8675, + [8683] = 3880, + [8684] = 8671, + [8685] = 8675, + [8686] = 8675, + [8687] = 8675, + [8688] = 2994, + [8689] = 8674, + [8690] = 8690, + [8691] = 8675, + [8692] = 8671, + [8693] = 2799, + [8694] = 8694, + [8695] = 8675, + [8696] = 8673, + [8697] = 3622, + [8698] = 8674, + [8699] = 2851, + [8700] = 8675, + [8701] = 8694, + [8702] = 8675, + [8703] = 8690, + [8704] = 4165, + [8705] = 8675, + [8706] = 8706, + [8707] = 8675, + [8708] = 8673, + [8709] = 4160, + [8710] = 8675, + [8711] = 8675, + [8712] = 3880, + [8713] = 2994, + [8714] = 3891, + [8715] = 3071, + [8716] = 8675, + [8717] = 3891, + [8718] = 3071, + [8719] = 3657, + [8720] = 8673, + [8721] = 8706, + [8722] = 4149, + [8723] = 4159, + [8724] = 3895, + [8725] = 3029, + [8726] = 3895, + [8727] = 8706, + [8728] = 8706, + [8729] = 8673, + [8730] = 3029, + [8731] = 8671, + [8732] = 4166, + [8733] = 8674, + [8734] = 8674, + [8735] = 2973, + [8736] = 2973, + [8737] = 3896, + [8738] = 8675, + [8739] = 8694, + [8740] = 8706, + [8741] = 8706, + [8742] = 8694, + [8743] = 3896, + [8744] = 2977, + [8745] = 8675, + [8746] = 8675, + [8747] = 8671, + [8748] = 8706, + [8749] = 2977, + [8750] = 4163, + [8751] = 8671, + [8752] = 8674, + [8753] = 8694, + [8754] = 8675, + [8755] = 8694, + [8756] = 8675, + [8757] = 8675, + [8758] = 4157, + [8759] = 8673, + [8760] = 2762, + [8761] = 8674, + [8762] = 8675, + [8763] = 8675, + [8764] = 4162, + [8765] = 3657, + [8766] = 8766, + [8767] = 8767, + [8768] = 2108, + [8769] = 8766, + [8770] = 8770, + [8771] = 8771, + [8772] = 8767, + [8773] = 8773, + [8774] = 8771, + [8775] = 8771, + [8776] = 8771, + [8777] = 4162, + [8778] = 8773, + [8779] = 8773, + [8780] = 8773, + [8781] = 8771, + [8782] = 8773, + [8783] = 8771, + [8784] = 8784, + [8785] = 8523, + [8786] = 8766, + [8787] = 4163, + [8788] = 8530, + [8789] = 8548, + [8790] = 8784, + [8791] = 4165, + [8792] = 8792, + [8793] = 8773, + [8794] = 8548, + [8795] = 8773, + [8796] = 8766, + [8797] = 8797, + [8798] = 2078, + [8799] = 8766, + [8800] = 4157, + [8801] = 8771, + [8802] = 8802, + [8803] = 4166, + [8804] = 8541, + [8805] = 8773, + [8806] = 8241, + [8807] = 8807, + [8808] = 8523, + [8809] = 8771, + [8810] = 8767, + [8811] = 8771, + [8812] = 8766, + [8813] = 8773, + [8814] = 4159, + [8815] = 8766, + [8816] = 8541, + [8817] = 8766, + [8818] = 8773, + [8819] = 8766, + [8820] = 4160, + [8821] = 5791, + [8822] = 8767, + [8823] = 8528, + [8824] = 8773, + [8825] = 8771, + [8826] = 8528, + [8827] = 8784, + [8828] = 4149, + [8829] = 8766, + [8830] = 8784, + [8831] = 8530, + [8832] = 8268, + [8833] = 8766, [8834] = 8834, - [8835] = 2959, - [8836] = 2867, - [8837] = 4090, - [8838] = 4092, - [8839] = 4089, - [8840] = 2128, - [8841] = 2130, + [8835] = 4149, + [8836] = 8836, + [8837] = 8837, + [8838] = 4166, + [8839] = 8839, + [8840] = 8840, + [8841] = 4159, [8842] = 8842, - [8843] = 2087, + [8843] = 3896, [8844] = 8844, - [8845] = 2088, - [8846] = 8829, + [8845] = 3891, + [8846] = 4160, [8847] = 8847, - [8848] = 2123, - [8849] = 2124, - [8850] = 4083, - [8851] = 4084, - [8852] = 4085, - [8853] = 4086, - [8854] = 2864, - [8855] = 4089, + [8848] = 2075, + [8849] = 4165, + [8850] = 8850, + [8851] = 3880, + [8852] = 4163, + [8853] = 3895, + [8854] = 3805, + [8855] = 8855, [8856] = 8856, - [8857] = 8857, - [8858] = 8858, - [8859] = 4083, - [8860] = 8857, - [8861] = 4085, - [8862] = 8862, - [8863] = 2184, - [8864] = 8862, - [8865] = 8858, - [8866] = 8858, - [8867] = 2213, - [8868] = 4092, - [8869] = 8857, - [8870] = 8862, - [8871] = 4086, - [8872] = 8862, - [8873] = 8873, - [8874] = 8857, - [8875] = 4087, - [8876] = 4089, - [8877] = 4090, - [8878] = 8858, - [8879] = 4084, - [8880] = 8880, - [8881] = 4089, + [8857] = 4157, + [8858] = 4162, + [8859] = 3779, + [8860] = 8860, + [8861] = 8860, + [8862] = 1970, + [8863] = 1965, + [8864] = 1968, + [8865] = 1969, + [8866] = 8866, + [8867] = 2112, + [8868] = 8868, + [8869] = 8860, + [8870] = 8870, + [8871] = 8871, + [8872] = 1964, + [8873] = 8868, + [8874] = 1966, + [8875] = 1967, + [8876] = 8860, + [8877] = 8868, + [8878] = 8860, + [8879] = 8879, + [8880] = 8879, + [8881] = 8860, [8882] = 8882, [8883] = 8883, - [8884] = 8884, - [8885] = 8885, - [8886] = 8882, - [8887] = 8887, - [8888] = 8880, - [8889] = 4092, - [8890] = 8880, - [8891] = 4090, + [8884] = 4162, + [8885] = 4163, + [8886] = 4159, + [8887] = 4160, + [8888] = 8888, + [8889] = 8868, + [8890] = 8890, + [8891] = 4165, [8892] = 8892, [8893] = 8893, [8894] = 8894, - [8895] = 8895, - [8896] = 8880, - [8897] = 4087, - [8898] = 8880, - [8899] = 8880, + [8895] = 4166, + [8896] = 8896, + [8897] = 8897, + [8898] = 8882, + [8899] = 4157, [8900] = 8900, [8901] = 8901, - [8902] = 8902, - [8903] = 4089, - [8904] = 8892, - [8905] = 8905, - [8906] = 8880, - [8907] = 4087, + [8902] = 8860, + [8903] = 8879, + [8904] = 8860, + [8905] = 4160, + [8906] = 4149, + [8907] = 4157, [8908] = 8908, - [8909] = 8512, - [8910] = 8532, - [8911] = 4087, - [8912] = 8912, - [8913] = 8913, - [8914] = 8914, - [8915] = 4089, - [8916] = 8892, - [8917] = 8917, - [8918] = 8918, - [8919] = 8880, - [8920] = 8882, - [8921] = 1918, - [8922] = 8917, - [8923] = 4090, + [8909] = 4149, + [8910] = 8860, + [8911] = 8860, + [8912] = 8860, + [8913] = 8882, + [8914] = 4162, + [8915] = 4163, + [8916] = 8916, + [8917] = 8879, + [8918] = 8860, + [8919] = 8860, + [8920] = 4165, + [8921] = 8868, + [8922] = 4166, + [8923] = 8923, [8924] = 8924, - [8925] = 8913, - [8926] = 4092, - [8927] = 8927, - [8928] = 8928, - [8929] = 8880, + [8925] = 8925, + [8926] = 4159, + [8927] = 4160, + [8928] = 8860, + [8929] = 8868, [8930] = 8930, - [8931] = 4092, - [8932] = 8531, - [8933] = 8917, - [8934] = 8913, - [8935] = 8894, - [8936] = 8936, - [8937] = 8539, - [8938] = 8526, - [8939] = 8939, - [8940] = 8917, - [8941] = 8913, - [8942] = 4090, - [8943] = 8917, - [8944] = 8894, - [8945] = 8945, - [8946] = 8946, - [8947] = 8880, - [8948] = 8917, - [8949] = 8880, - [8950] = 8882, - [8951] = 8894, - [8952] = 8917, - [8953] = 8892, - [8954] = 8954, - [8955] = 8955, - [8956] = 2156, - [8957] = 8957, - [8958] = 8955, - [8959] = 8959, - [8960] = 8960, - [8961] = 8961, - [8962] = 8962, - [8963] = 8963, - [8964] = 4087, - [8965] = 8959, + [8931] = 8879, + [8932] = 8932, + [8933] = 4149, + [8934] = 8879, + [8935] = 8868, + [8936] = 4157, + [8937] = 8882, + [8938] = 4162, + [8939] = 4163, + [8940] = 8860, + [8941] = 8941, + [8942] = 4165, + [8943] = 8860, + [8944] = 4166, + [8945] = 8879, + [8946] = 4159, + [8947] = 2218, + [8948] = 2213, + [8949] = 3029, + [8950] = 2973, + [8951] = 2977, + [8952] = 2214, + [8953] = 4162, + [8954] = 4165, + [8955] = 4166, + [8956] = 8956, + [8957] = 4157, + [8958] = 4162, + [8959] = 4159, + [8960] = 4160, + [8961] = 4163, + [8962] = 4149, + [8963] = 4165, + [8964] = 4166, + [8965] = 2215, [8966] = 8966, - [8967] = 4089, - [8968] = 4090, - [8969] = 8959, - [8970] = 4092, + [8967] = 2216, + [8968] = 2208, + [8969] = 8969, + [8970] = 2217, [8971] = 8971, - [8972] = 8963, - [8973] = 8959, - [8974] = 8960, - [8975] = 8960, - [8976] = 8963, - [8977] = 8977, - [8978] = 8978, - [8979] = 8979, - [8980] = 8963, - [8981] = 8978, - [8982] = 8963, - [8983] = 8959, - [8984] = 8984, + [8972] = 3071, + [8973] = 2209, + [8974] = 4163, + [8975] = 8975, + [8976] = 2175, + [8977] = 2239, + [8978] = 2219, + [8979] = 2220, + [8980] = 2994, + [8981] = 8981, + [8982] = 8975, + [8983] = 8983, + [8984] = 4149, [8985] = 8985, - [8986] = 8986, - [8987] = 4084, - [8988] = 8955, - [8989] = 8955, - [8990] = 8966, - [8991] = 8954, - [8992] = 8963, - [8993] = 8979, - [8994] = 2001, - [8995] = 8963, - [8996] = 2009, - [8997] = 8963, - [8998] = 8998, - [8999] = 8963, - [9000] = 8961, - [9001] = 8978, - [9002] = 8978, - [9003] = 8955, - [9004] = 8966, - [9005] = 8962, - [9006] = 8954, - [9007] = 8979, - [9008] = 8954, - [9009] = 8979, - [9010] = 8954, - [9011] = 8979, - [9012] = 8954, - [9013] = 8979, - [9014] = 8966, - [9015] = 8979, - [9016] = 8954, - [9017] = 8979, - [9018] = 8954, - [9019] = 8979, - [9020] = 8959, - [9021] = 4083, - [9022] = 8959, - [9023] = 9023, - [9024] = 8978, + [8986] = 8985, + [8987] = 4166, + [8988] = 8988, + [8989] = 4162, + [8990] = 8990, + [8991] = 8990, + [8992] = 4160, + [8993] = 8985, + [8994] = 4163, + [8995] = 8988, + [8996] = 2317, + [8997] = 8988, + [8998] = 4157, + [8999] = 8990, + [9000] = 8985, + [9001] = 2318, + [9002] = 8988, + [9003] = 4165, + [9004] = 9004, + [9005] = 8990, + [9006] = 4159, + [9007] = 9007, + [9008] = 9008, + [9009] = 9009, + [9010] = 9010, + [9011] = 9011, + [9012] = 8618, + [9013] = 9013, + [9014] = 9013, + [9015] = 9015, + [9016] = 9011, + [9017] = 9011, + [9018] = 9013, + [9019] = 9019, + [9020] = 9020, + [9021] = 2026, + [9022] = 9011, + [9023] = 4165, + [9024] = 9011, [9025] = 9025, - [9026] = 8960, - [9027] = 4086, - [9028] = 8962, + [9026] = 8638, + [9027] = 9027, + [9028] = 4166, [9029] = 9029, [9030] = 9030, - [9031] = 4085, - [9032] = 8954, - [9033] = 8962, + [9031] = 9020, + [9032] = 9032, + [9033] = 8612, [9034] = 9034, [9035] = 9035, - [9036] = 9036, - [9037] = 9037, - [9038] = 9037, - [9039] = 9037, - [9040] = 9037, - [9041] = 9037, - [9042] = 9042, - [9043] = 9043, + [9036] = 9025, + [9037] = 4163, + [9038] = 9038, + [9039] = 9011, + [9040] = 9025, + [9041] = 4162, + [9042] = 4166, + [9043] = 9020, [9044] = 9044, [9045] = 9045, - [9046] = 9042, - [9047] = 9047, - [9048] = 9042, - [9049] = 9049, - [9050] = 9049, - [9051] = 9051, - [9052] = 9052, - [9053] = 9037, - [9054] = 9037, + [9046] = 9011, + [9047] = 9010, + [9048] = 9020, + [9049] = 9025, + [9050] = 9010, + [9051] = 9025, + [9052] = 4162, + [9053] = 4162, + [9054] = 8625, [9055] = 9055, - [9056] = 9037, - [9057] = 4083, - [9058] = 9037, - [9059] = 4086, - [9060] = 9049, - [9061] = 8658, - [9062] = 1963, - [9063] = 8661, - [9064] = 9049, - [9065] = 9065, + [9056] = 9025, + [9057] = 9011, + [9058] = 9011, + [9059] = 9059, + [9060] = 9011, + [9061] = 4163, + [9062] = 9062, + [9063] = 4166, + [9064] = 9064, + [9065] = 9013, [9066] = 9066, [9067] = 9067, - [9068] = 9037, - [9069] = 9037, - [9070] = 9070, + [9068] = 4163, + [9069] = 9025, + [9070] = 9010, [9071] = 9071, [9072] = 9072, - [9073] = 9073, - [9074] = 9074, - [9075] = 4090, - [9076] = 9049, - [9077] = 9077, - [9078] = 9078, - [9079] = 9037, - [9080] = 9080, + [9073] = 4165, + [9074] = 9055, + [9075] = 9055, + [9076] = 9076, + [9077] = 9055, + [9078] = 9011, + [9079] = 8617, + [9080] = 4165, [9081] = 9081, - [9082] = 9078, - [9083] = 9065, - [9084] = 9080, - [9085] = 9037, + [9082] = 9081, + [9083] = 4149, + [9084] = 9084, + [9085] = 9085, [9086] = 9086, - [9087] = 9066, + [9087] = 9087, [9088] = 9088, - [9089] = 9086, + [9089] = 9089, [9090] = 9090, - [9091] = 9091, - [9092] = 9037, - [9093] = 9071, - [9094] = 9042, - [9095] = 9090, - [9096] = 9096, - [9097] = 9037, - [9098] = 9037, - [9099] = 9037, - [9100] = 9043, - [9101] = 4087, - [9102] = 9037, + [9091] = 4159, + [9092] = 9092, + [9093] = 9093, + [9094] = 9094, + [9095] = 4160, + [9096] = 9090, + [9097] = 9093, + [9098] = 4162, + [9099] = 9099, + [9100] = 9093, + [9101] = 4163, + [9102] = 9086, [9103] = 9103, - [9104] = 9104, - [9105] = 9042, - [9106] = 9071, - [9107] = 9090, - [9108] = 9037, - [9109] = 9078, - [9110] = 9049, - [9111] = 9037, - [9112] = 9080, - [9113] = 9037, - [9114] = 9086, - [9115] = 9042, - [9116] = 9067, - [9117] = 9037, - [9118] = 9042, - [9119] = 9037, - [9120] = 9037, - [9121] = 9065, - [9122] = 9066, - [9123] = 9067, - [9124] = 3662, - [9125] = 9037, - [9126] = 9126, - [9127] = 9037, - [9128] = 9043, - [9129] = 3662, - [9130] = 9043, - [9131] = 4089, - [9132] = 9037, - [9133] = 9133, - [9134] = 9043, - [9135] = 9043, - [9136] = 9037, - [9137] = 4092, - [9138] = 9037, - [9139] = 4084, - [9140] = 4085, - [9141] = 9037, - [9142] = 9049, - [9143] = 9037, - [9144] = 9037, - [9145] = 9145, - [9146] = 9146, - [9147] = 9145, - [9148] = 9148, - [9149] = 9149, + [9104] = 9081, + [9105] = 4165, + [9106] = 4166, + [9107] = 9103, + [9108] = 9093, + [9109] = 9103, + [9110] = 9086, + [9111] = 9094, + [9112] = 9090, + [9113] = 9086, + [9114] = 9103, + [9115] = 9090, + [9116] = 9116, + [9117] = 9117, + [9118] = 9118, + [9119] = 2119, + [9120] = 9084, + [9121] = 9081, + [9122] = 9103, + [9123] = 2118, + [9124] = 9090, + [9125] = 9094, + [9126] = 9117, + [9127] = 9093, + [9128] = 9094, + [9129] = 9090, + [9130] = 9081, + [9131] = 9117, + [9132] = 9118, + [9133] = 9090, + [9134] = 9090, + [9135] = 9117, + [9136] = 9118, + [9137] = 9117, + [9138] = 9118, + [9139] = 9117, + [9140] = 9118, + [9141] = 9117, + [9142] = 9118, + [9143] = 9117, + [9144] = 9093, + [9145] = 9118, + [9146] = 9117, + [9147] = 9118, + [9148] = 9116, + [9149] = 9118, [9150] = 9150, [9151] = 9151, [9152] = 9152, - [9153] = 9145, - [9154] = 3511, + [9153] = 9090, + [9154] = 4157, [9155] = 9155, - [9156] = 9148, + [9156] = 9156, [9157] = 9157, - [9158] = 9146, - [9159] = 9152, - [9160] = 9145, - [9161] = 9146, - [9162] = 8166, - [9163] = 9150, - [9164] = 9148, - [9165] = 3494, - [9166] = 9146, + [9158] = 9116, + [9159] = 9116, + [9160] = 9093, + [9161] = 2268, + [9162] = 9162, + [9163] = 9163, + [9164] = 9164, + [9165] = 9165, + [9166] = 9163, [9167] = 9167, - [9168] = 3662, - [9169] = 9148, - [9170] = 9170, - [9171] = 9171, - [9172] = 9150, - [9173] = 9146, - [9174] = 9146, - [9175] = 9146, - [9176] = 9152, + [9168] = 9168, + [9169] = 9169, + [9170] = 9163, + [9171] = 9163, + [9172] = 9172, + [9173] = 9173, + [9174] = 9174, + [9175] = 9175, + [9176] = 9174, [9177] = 9177, - [9178] = 9146, - [9179] = 9152, - [9180] = 9151, - [9181] = 9150, - [9182] = 9151, - [9183] = 9146, - [9184] = 9145, - [9185] = 3105, - [9186] = 9157, - [9187] = 9157, - [9188] = 9146, + [9178] = 9178, + [9179] = 9163, + [9180] = 9163, + [9181] = 9181, + [9182] = 9182, + [9183] = 9183, + [9184] = 4157, + [9185] = 9181, + [9186] = 9165, + [9187] = 9187, + [9188] = 9188, [9189] = 9189, - [9190] = 9167, + [9190] = 9163, [9191] = 9191, - [9192] = 9150, - [9193] = 9152, - [9194] = 9146, - [9195] = 9150, - [9196] = 9152, - [9197] = 9157, - [9198] = 9150, - [9199] = 9151, - [9200] = 9146, - [9201] = 9189, - [9202] = 9150, - [9203] = 9150, - [9204] = 9150, - [9205] = 9157, - [9206] = 9189, - [9207] = 9146, - [9208] = 9167, - [9209] = 9209, - [9210] = 9151, - [9211] = 9151, + [9192] = 9192, + [9193] = 9188, + [9194] = 9194, + [9195] = 9195, + [9196] = 9163, + [9197] = 9182, + [9198] = 3779, + [9199] = 9199, + [9200] = 4165, + [9201] = 9201, + [9202] = 9202, + [9203] = 9163, + [9204] = 9194, + [9205] = 9199, + [9206] = 9163, + [9207] = 9163, + [9208] = 9163, + [9209] = 9194, + [9210] = 9167, + [9211] = 9167, [9212] = 9212, - [9213] = 2042, - [9214] = 2069, - [9215] = 9215, - [9216] = 9145, - [9217] = 2033, - [9218] = 2034, - [9219] = 9148, - [9220] = 9146, - [9221] = 9189, - [9222] = 2036, - [9223] = 9148, - [9224] = 2043, - [9225] = 2046, - [9226] = 2047, - [9227] = 2048, - [9228] = 9157, - [9229] = 9145, - [9230] = 9167, - [9231] = 2053, - [9232] = 2055, - [9233] = 9146, - [9234] = 9152, - [9235] = 9157, - [9236] = 9150, - [9237] = 9150, - [9238] = 9145, - [9239] = 9146, - [9240] = 9157, - [9241] = 9148, - [9242] = 9167, - [9243] = 9148, - [9244] = 9148, - [9245] = 9146, - [9246] = 1994, - [9247] = 9151, - [9248] = 9146, - [9249] = 9249, - [9250] = 9250, - [9251] = 9189, - [9252] = 9189, - [9253] = 9167, - [9254] = 9152, - [9255] = 9167, - [9256] = 9146, + [9213] = 9201, + [9214] = 9165, + [9215] = 4162, + [9216] = 9163, + [9217] = 9199, + [9218] = 9167, + [9219] = 9219, + [9220] = 9163, + [9221] = 9182, + [9222] = 9163, + [9223] = 9163, + [9224] = 4166, + [9225] = 9174, + [9226] = 4163, + [9227] = 9163, + [9228] = 9163, + [9229] = 9165, + [9230] = 9163, + [9231] = 9163, + [9232] = 9163, + [9233] = 9188, + [9234] = 9167, + [9235] = 8770, + [9236] = 8807, + [9237] = 9162, + [9238] = 9177, + [9239] = 9201, + [9240] = 3779, + [9241] = 9163, + [9242] = 9181, + [9243] = 9165, + [9244] = 9167, + [9245] = 9163, + [9246] = 9163, + [9247] = 9163, + [9248] = 9177, + [9249] = 9163, + [9250] = 4159, + [9251] = 4160, + [9252] = 9252, + [9253] = 9162, + [9254] = 9162, + [9255] = 9162, + [9256] = 9256, [9257] = 9257, - [9258] = 9258, - [9259] = 9145, - [9260] = 9146, - [9261] = 9261, - [9262] = 9151, - [9263] = 9146, - [9264] = 9151, - [9265] = 9189, - [9266] = 9146, - [9267] = 9157, - [9268] = 9268, - [9269] = 9269, - [9270] = 9152, - [9271] = 9151, - [9272] = 9146, - [9273] = 3662, - [9274] = 5698, - [9275] = 9146, - [9276] = 9189, - [9277] = 9146, - [9278] = 9189, - [9279] = 9167, - [9280] = 9146, - [9281] = 9152, - [9282] = 9146, - [9283] = 9146, - [9284] = 3604, - [9285] = 9150, - [9286] = 9167, - [9287] = 2035, - [9288] = 9288, - [9289] = 9289, - [9290] = 9290, - [9291] = 9291, - [9292] = 9292, - [9293] = 9288, - [9294] = 9294, - [9295] = 9295, - [9296] = 9288, - [9297] = 9297, - [9298] = 9298, - [9299] = 9299, - [9300] = 9300, - [9301] = 9299, - [9302] = 9294, - [9303] = 9303, - [9304] = 9303, - [9305] = 9294, - [9306] = 9300, - [9307] = 9307, - [9308] = 9308, - [9309] = 9288, - [9310] = 9289, - [9311] = 9311, - [9312] = 9299, - [9313] = 9291, - [9314] = 9292, - [9315] = 9291, - [9316] = 9288, - [9317] = 9307, - [9318] = 9307, - [9319] = 9311, - [9320] = 9320, - [9321] = 9321, - [9322] = 9322, - [9323] = 9307, - [9324] = 9321, - [9325] = 9295, - [9326] = 9321, - [9327] = 9327, - [9328] = 9289, - [9329] = 9329, - [9330] = 9295, - [9331] = 9298, - [9332] = 9332, - [9333] = 9300, - [9334] = 9308, - [9335] = 9295, - [9336] = 9298, - [9337] = 9321, - [9338] = 9338, - [9339] = 9339, - [9340] = 9340, - [9341] = 9294, - [9342] = 9292, - [9343] = 9298, - [9344] = 9288, - [9345] = 9345, - [9346] = 9346, - [9347] = 9307, - [9348] = 9300, - [9349] = 9307, - [9350] = 9350, - [9351] = 9351, - [9352] = 9322, - [9353] = 9295, - [9354] = 9308, - [9355] = 9300, - [9356] = 9294, - [9357] = 9299, - [9358] = 9292, - [9359] = 9294, - [9360] = 8166, - [9361] = 9361, - [9362] = 9362, - [9363] = 9307, - [9364] = 9364, - [9365] = 9300, - [9366] = 9366, - [9367] = 9289, - [9368] = 9289, - [9369] = 9321, - [9370] = 9294, - [9371] = 9327, - [9372] = 9311, - [9373] = 9295, - [9374] = 9374, - [9375] = 9375, - [9376] = 9291, - [9377] = 9321, - [9378] = 9321, - [9379] = 9322, - [9380] = 9311, - [9381] = 9292, - [9382] = 9321, - [9383] = 9288, - [9384] = 9384, - [9385] = 9291, - [9386] = 9321, - [9387] = 9291, - [9388] = 9320, - [9389] = 9288, - [9390] = 9327, - [9391] = 9292, - [9392] = 9339, - [9393] = 9289, - [9394] = 9294, - [9395] = 9288, - [9396] = 9298, - [9397] = 9294, - [9398] = 9292, - [9399] = 9295, - [9400] = 9339, - [9401] = 9320, - [9402] = 9339, - [9403] = 9295, - [9404] = 9322, - [9405] = 9299, - [9406] = 9406, - [9407] = 9320, - [9408] = 9339, - [9409] = 9291, - [9410] = 9321, - [9411] = 9311, + [9258] = 9162, + [9259] = 9163, + [9260] = 9260, + [9261] = 9163, + [9262] = 2073, + [9263] = 9163, + [9264] = 9163, + [9265] = 9167, + [9266] = 9165, + [9267] = 9163, + [9268] = 9165, + [9269] = 4149, + [9270] = 9163, + [9271] = 9271, + [9272] = 9272, + [9273] = 9273, + [9274] = 9274, + [9275] = 9275, + [9276] = 9276, + [9277] = 9277, + [9278] = 9272, + [9279] = 9273, + [9280] = 9280, + [9281] = 9275, + [9282] = 9282, + [9283] = 9272, + [9284] = 9284, + [9285] = 9285, + [9286] = 9273, + [9287] = 9273, + [9288] = 9273, + [9289] = 9273, + [9290] = 9273, + [9291] = 3705, + [9292] = 9280, + [9293] = 9276, + [9294] = 3779, + [9295] = 9275, + [9296] = 9296, + [9297] = 9280, + [9298] = 9280, + [9299] = 9273, + [9300] = 9274, + [9301] = 9280, + [9302] = 9302, + [9303] = 9273, + [9304] = 9280, + [9305] = 9305, + [9306] = 9280, + [9307] = 9274, + [9308] = 9280, + [9309] = 9273, + [9310] = 9275, + [9311] = 9273, + [9312] = 9284, + [9313] = 9313, + [9314] = 9272, + [9315] = 9276, + [9316] = 9275, + [9317] = 9317, + [9318] = 9318, + [9319] = 2171, + [9320] = 2172, + [9321] = 9305, + [9322] = 9277, + [9323] = 2134, + [9324] = 2137, + [9325] = 9325, + [9326] = 2129, + [9327] = 2158, + [9328] = 9276, + [9329] = 9274, + [9330] = 9330, + [9331] = 9305, + [9332] = 9284, + [9333] = 9274, + [9334] = 9313, + [9335] = 2136, + [9336] = 9273, + [9337] = 2139, + [9338] = 2140, + [9339] = 2144, + [9340] = 9277, + [9341] = 2161, + [9342] = 2165, + [9343] = 2087, + [9344] = 9344, + [9345] = 9285, + [9346] = 9276, + [9347] = 9275, + [9348] = 9276, + [9349] = 9273, + [9350] = 9273, + [9351] = 9280, + [9352] = 9274, + [9353] = 9284, + [9354] = 3170, + [9355] = 9273, + [9356] = 9275, + [9357] = 9277, + [9358] = 9274, + [9359] = 9273, + [9360] = 5791, + [9361] = 9274, + [9362] = 9305, + [9363] = 9280, + [9364] = 9273, + [9365] = 9273, + [9366] = 9273, + [9367] = 9285, + [9368] = 9313, + [9369] = 9273, + [9370] = 9370, + [9371] = 9305, + [9372] = 9273, + [9373] = 9373, + [9374] = 8241, + [9375] = 9305, + [9376] = 9376, + [9377] = 9272, + [9378] = 9284, + [9379] = 9272, + [9380] = 9276, + [9381] = 9273, + [9382] = 9273, + [9383] = 9284, + [9384] = 9277, + [9385] = 9273, + [9386] = 9280, + [9387] = 9387, + [9388] = 9284, + [9389] = 9277, + [9390] = 9305, + [9391] = 3657, + [9392] = 9305, + [9393] = 9284, + [9394] = 9272, + [9395] = 9272, + [9396] = 9280, + [9397] = 9284, + [9398] = 3622, + [9399] = 9305, + [9400] = 9305, + [9401] = 9277, + [9402] = 9272, + [9403] = 9277, + [9404] = 9273, + [9405] = 9276, + [9406] = 9273, + [9407] = 9276, + [9408] = 9275, + [9409] = 9277, + [9410] = 9277, + [9411] = 9273, [9412] = 9412, - [9413] = 9321, - [9414] = 9320, - [9415] = 9339, - [9416] = 9321, - [9417] = 9294, - [9418] = 9418, - [9419] = 9300, - [9420] = 9320, - [9421] = 9339, + [9413] = 9274, + [9414] = 9414, + [9415] = 9273, + [9416] = 9280, + [9417] = 3779, + [9418] = 9275, + [9419] = 9419, + [9420] = 9420, + [9421] = 9421, [9422] = 9422, [9423] = 9423, - [9424] = 9311, - [9425] = 9288, - [9426] = 9320, - [9427] = 9339, - [9428] = 9311, - [9429] = 9299, - [9430] = 9320, + [9424] = 9424, + [9425] = 9419, + [9426] = 9426, + [9427] = 9427, + [9428] = 9428, + [9429] = 9429, + [9430] = 9423, [9431] = 9431, - [9432] = 9288, - [9433] = 9311, - [9434] = 9321, - [9435] = 9320, - [9436] = 9321, - [9437] = 9298, - [9438] = 9292, - [9439] = 9294, - [9440] = 9322, - [9441] = 9288, - [9442] = 9321, - [9443] = 9294, - [9444] = 9292, - [9445] = 9308, - [9446] = 9446, - [9447] = 9288, - [9448] = 9288, - [9449] = 9294, - [9450] = 9295, - [9451] = 9295, - [9452] = 9452, - [9453] = 9321, - [9454] = 9303, - [9455] = 9303, - [9456] = 9295, - [9457] = 9311, - [9458] = 9292, - [9459] = 9288, + [9432] = 9424, + [9433] = 9433, + [9434] = 9434, + [9435] = 9435, + [9436] = 9422, + [9437] = 9423, + [9438] = 9421, + [9439] = 9439, + [9440] = 9420, + [9441] = 9441, + [9442] = 9442, + [9443] = 9424, + [9444] = 9444, + [9445] = 9445, + [9446] = 9429, + [9447] = 9439, + [9448] = 9448, + [9449] = 9423, + [9450] = 9450, + [9451] = 9424, + [9452] = 9424, + [9453] = 9423, + [9454] = 3779, + [9455] = 9455, + [9456] = 9420, + [9457] = 9420, + [9458] = 9429, + [9459] = 9420, [9460] = 9460, - [9461] = 9322, - [9462] = 9294, - [9463] = 9295, - [9464] = 9321, - [9465] = 9288, - [9466] = 9299, - [9467] = 9311, - [9468] = 9288, - [9469] = 9308, - [9470] = 9295, - [9471] = 9471, - [9472] = 9300, - [9473] = 9300, - [9474] = 9303, - [9475] = 9294, - [9476] = 9289, - [9477] = 9321, - [9478] = 9294, - [9479] = 9345, - [9480] = 9308, + [9461] = 9461, + [9462] = 9462, + [9463] = 9423, + [9464] = 9429, + [9465] = 9424, + [9466] = 9466, + [9467] = 9439, + [9468] = 9424, + [9469] = 9420, + [9470] = 9426, + [9471] = 9420, + [9472] = 9434, + [9473] = 9439, + [9474] = 9474, + [9475] = 9420, + [9476] = 9476, + [9477] = 9477, + [9478] = 9419, + [9479] = 9426, + [9480] = 9480, [9481] = 9481, - [9482] = 9307, - [9483] = 9288, - [9484] = 9321, - [9485] = 3662, - [9486] = 9294, - [9487] = 9307, - [9488] = 9488, - [9489] = 9345, - [9490] = 9321, - [9491] = 9292, - [9492] = 9294, - [9493] = 9299, - [9494] = 9311, - [9495] = 9299, + [9482] = 9419, + [9483] = 9426, + [9484] = 9423, + [9485] = 9439, + [9486] = 9429, + [9487] = 9477, + [9488] = 9427, + [9489] = 9439, + [9490] = 9421, + [9491] = 9426, + [9492] = 9420, + [9493] = 9429, + [9494] = 9429, + [9495] = 9420, [9496] = 9496, - [9497] = 9339, - [9498] = 9311, - [9499] = 9295, - [9500] = 9294, - [9501] = 9303, - [9502] = 9292, - [9503] = 9503, - [9504] = 9299, - [9505] = 9288, - [9506] = 9322, - [9507] = 9303, - [9508] = 9294, - [9509] = 9292, - [9510] = 9311, - [9511] = 9292, - [9512] = 9321, - [9513] = 9321, - [9514] = 9288, - [9515] = 9515, - [9516] = 9516, - [9517] = 9289, - [9518] = 9321, - [9519] = 9294, - [9520] = 9289, - [9521] = 9288, - [9522] = 9288, - [9523] = 9311, - [9524] = 9299, - [9525] = 9288, - [9526] = 9345, - [9527] = 9298, - [9528] = 9528, - [9529] = 9528, - [9530] = 9530, - [9531] = 9531, - [9532] = 9532, + [9497] = 9439, + [9498] = 9439, + [9499] = 9424, + [9500] = 9439, + [9501] = 9433, + [9502] = 9419, + [9503] = 9455, + [9504] = 9426, + [9505] = 9428, + [9506] = 9420, + [9507] = 9477, + [9508] = 9423, + [9509] = 9448, + [9510] = 9419, + [9511] = 9466, + [9512] = 9426, + [9513] = 9420, + [9514] = 9433, + [9515] = 9427, + [9516] = 9428, + [9517] = 9460, + [9518] = 9518, + [9519] = 9422, + [9520] = 9429, + [9521] = 9429, + [9522] = 9522, + [9523] = 9433, + [9524] = 9428, + [9525] = 9421, + [9526] = 9448, + [9527] = 9527, + [9528] = 9466, + [9529] = 9433, + [9530] = 9428, + [9531] = 9434, + [9532] = 9421, [9533] = 9533, - [9534] = 9534, - [9535] = 9535, - [9536] = 9536, - [9537] = 9537, - [9538] = 9538, - [9539] = 9539, - [9540] = 9540, - [9541] = 9541, - [9542] = 9542, - [9543] = 9543, - [9544] = 9544, - [9545] = 9545, - [9546] = 9546, - [9547] = 9528, - [9548] = 9548, - [9549] = 9549, - [9550] = 9550, - [9551] = 8905, - [9552] = 9552, - [9553] = 9553, - [9554] = 9530, - [9555] = 9531, - [9556] = 9556, - [9557] = 9557, - [9558] = 9558, - [9559] = 9535, - [9560] = 9536, - [9561] = 9541, - [9562] = 9530, - [9563] = 9545, - [9564] = 9546, - [9565] = 9528, - [9566] = 9531, - [9567] = 9567, - [9568] = 9553, - [9569] = 9569, - [9570] = 9570, - [9571] = 9530, - [9572] = 9531, - [9573] = 9573, - [9574] = 9574, - [9575] = 9535, - [9576] = 9536, - [9577] = 9577, - [9578] = 9541, - [9579] = 9545, - [9580] = 9546, - [9581] = 9528, - [9582] = 9582, - [9583] = 9532, - [9584] = 9534, - [9585] = 9541, - [9586] = 9545, - [9587] = 9546, - [9588] = 9528, - [9589] = 9535, - [9590] = 9536, - [9591] = 9537, - [9592] = 9538, - [9593] = 9593, - [9594] = 9594, - [9595] = 9541, - [9596] = 9545, - [9597] = 9546, - [9598] = 9528, - [9599] = 9535, - [9600] = 9536, - [9601] = 9593, - [9602] = 9602, - [9603] = 9533, - [9604] = 9569, - [9605] = 9541, - [9606] = 9545, - [9607] = 9546, - [9608] = 9528, - [9609] = 9609, - [9610] = 9556, - [9611] = 9557, - [9612] = 9612, - [9613] = 9613, - [9614] = 9614, - [9615] = 9541, - [9616] = 9541, - [9617] = 9545, - [9618] = 9546, - [9619] = 9528, - [9620] = 9533, - [9621] = 9621, - [9622] = 9622, - [9623] = 9623, - [9624] = 9624, - [9625] = 9573, - [9626] = 9541, - [9627] = 9545, - [9628] = 9546, - [9629] = 9528, + [9534] = 9419, + [9535] = 9423, + [9536] = 9439, + [9537] = 9433, + [9538] = 9428, + [9539] = 9439, + [9540] = 9439, + [9541] = 9420, + [9542] = 9422, + [9543] = 9433, + [9544] = 9428, + [9545] = 9429, + [9546] = 9476, + [9547] = 9439, + [9548] = 9433, + [9549] = 9431, + [9550] = 9426, + [9551] = 9434, + [9552] = 9424, + [9553] = 9420, + [9554] = 9420, + [9555] = 9466, + [9556] = 9426, + [9557] = 9439, + [9558] = 9439, + [9559] = 9439, + [9560] = 9419, + [9561] = 9431, + [9562] = 9434, + [9563] = 9428, + [9564] = 9564, + [9565] = 9466, + [9566] = 8241, + [9567] = 9423, + [9568] = 9439, + [9569] = 9460, + [9570] = 9423, + [9571] = 9429, + [9572] = 9423, + [9573] = 9466, + [9574] = 9428, + [9575] = 9575, + [9576] = 9427, + [9577] = 9424, + [9578] = 9466, + [9579] = 9427, + [9580] = 9477, + [9581] = 9424, + [9582] = 9439, + [9583] = 9583, + [9584] = 9433, + [9585] = 9426, + [9586] = 9420, + [9587] = 9426, + [9588] = 9424, + [9589] = 9477, + [9590] = 9590, + [9591] = 9460, + [9592] = 9434, + [9593] = 9427, + [9594] = 9424, + [9595] = 9431, + [9596] = 9427, + [9597] = 9466, + [9598] = 9420, + [9599] = 9427, + [9600] = 9600, + [9601] = 9601, + [9602] = 9422, + [9603] = 9603, + [9604] = 9420, + [9605] = 9605, + [9606] = 9606, + [9607] = 9419, + [9608] = 9455, + [9609] = 9431, + [9610] = 9429, + [9611] = 9426, + [9612] = 9423, + [9613] = 9421, + [9614] = 9420, + [9615] = 9423, + [9616] = 9476, + [9617] = 9424, + [9618] = 9477, + [9619] = 9421, + [9620] = 9439, + [9621] = 9466, + [9622] = 9477, + [9623] = 9429, + [9624] = 9439, + [9625] = 9434, + [9626] = 9439, + [9627] = 9424, + [9628] = 9460, + [9629] = 9439, [9630] = 9630, - [9631] = 9567, - [9632] = 9632, - [9633] = 9569, - [9634] = 9541, - [9635] = 9545, - [9636] = 9546, - [9637] = 9528, - [9638] = 9638, - [9639] = 9541, - [9640] = 9545, - [9641] = 9546, - [9642] = 9528, + [9631] = 9424, + [9632] = 9476, + [9633] = 9420, + [9634] = 9422, + [9635] = 9422, + [9636] = 9426, + [9637] = 9637, + [9638] = 9439, + [9639] = 9639, + [9640] = 9419, + [9641] = 9431, + [9642] = 9642, [9643] = 9643, - [9644] = 9644, - [9645] = 9545, - [9646] = 9558, - [9647] = 3729, - [9648] = 3824, - [9649] = 9541, - [9650] = 9545, - [9651] = 9546, - [9652] = 9528, - [9653] = 9530, - [9654] = 9654, - [9655] = 9655, - [9656] = 9656, + [9644] = 9426, + [9645] = 9460, + [9646] = 9419, + [9647] = 9424, + [9648] = 9431, + [9649] = 9424, + [9650] = 9420, + [9651] = 9421, + [9652] = 9424, + [9653] = 9424, + [9654] = 9429, + [9655] = 9424, + [9656] = 9420, [9657] = 9657, - [9658] = 9658, - [9659] = 9638, - [9660] = 9643, - [9661] = 9545, - [9662] = 9546, - [9663] = 9528, - [9664] = 9546, - [9665] = 9542, - [9666] = 9543, - [9667] = 9544, - [9668] = 9612, - [9669] = 9548, - [9670] = 9549, - [9671] = 9553, + [9658] = 9420, + [9659] = 9421, + [9660] = 9427, + [9661] = 9661, + [9662] = 9662, + [9663] = 9663, + [9664] = 9664, + [9665] = 9665, + [9666] = 9666, + [9667] = 3890, + [9668] = 3854, + [9669] = 312, + [9670] = 9670, + [9671] = 3866, [9672] = 9672, - [9673] = 9528, + [9673] = 9673, [9674] = 9674, - [9675] = 9675, + [9675] = 3881, [9676] = 9676, [9677] = 9677, - [9678] = 9531, - [9679] = 9677, + [9678] = 9678, + [9679] = 9679, [9680] = 9680, - [9681] = 9541, + [9681] = 9681, [9682] = 9682, - [9683] = 9532, - [9684] = 9534, - [9685] = 9537, - [9686] = 9538, - [9687] = 9687, - [9688] = 9556, - [9689] = 3808, - [9690] = 3809, - [9691] = 9557, + [9683] = 9676, + [9684] = 9677, + [9685] = 9685, + [9686] = 9686, + [9687] = 9674, + [9688] = 9688, + [9689] = 9664, + [9690] = 9665, + [9691] = 9666, [9692] = 9692, - [9693] = 9674, - [9694] = 9567, - [9695] = 9569, - [9696] = 9696, - [9697] = 3727, - [9698] = 3839, - [9699] = 9699, - [9700] = 3754, - [9701] = 3753, - [9702] = 9540, - [9703] = 3750, - [9704] = 9704, - [9705] = 9705, - [9706] = 9706, + [9693] = 9693, + [9694] = 9694, + [9695] = 9678, + [9696] = 9679, + [9697] = 9678, + [9698] = 9679, + [9699] = 9676, + [9700] = 9677, + [9701] = 9674, + [9702] = 9664, + [9703] = 9665, + [9704] = 9666, + [9705] = 9673, + [9706] = 9674, [9707] = 9707, - [9708] = 9708, - [9709] = 3662, - [9710] = 9710, - [9711] = 9657, - [9712] = 9712, - [9713] = 9713, - [9714] = 9714, - [9715] = 9621, - [9716] = 9622, - [9717] = 9623, - [9718] = 9718, - [9719] = 9630, - [9720] = 9530, - [9721] = 9531, - [9722] = 9722, - [9723] = 9723, - [9724] = 9724, - [9725] = 9632, - [9726] = 9530, - [9727] = 9531, + [9708] = 9678, + [9709] = 9709, + [9710] = 9679, + [9711] = 9711, + [9712] = 9678, + [9713] = 9679, + [9714] = 9685, + [9715] = 9715, + [9716] = 9716, + [9717] = 9676, + [9718] = 9677, + [9719] = 9719, + [9720] = 9674, + [9721] = 9664, + [9722] = 9665, + [9723] = 9666, + [9724] = 9692, + [9725] = 9725, + [9726] = 9726, + [9727] = 9727, [9728] = 9728, - [9729] = 9729, - [9730] = 9730, - [9731] = 9731, - [9732] = 9621, - [9733] = 9530, - [9734] = 9622, - [9735] = 9573, - [9736] = 9736, - [9737] = 9573, - [9738] = 9623, + [9729] = 9726, + [9730] = 9692, + [9731] = 9726, + [9732] = 9728, + [9733] = 9733, + [9734] = 9733, + [9735] = 9674, + [9736] = 9664, + [9737] = 9665, + [9738] = 9666, [9739] = 9739, - [9740] = 9582, + [9740] = 9740, [9741] = 9741, - [9742] = 9630, - [9743] = 9530, - [9744] = 9531, - [9745] = 9745, - [9746] = 9531, - [9747] = 9747, - [9748] = 9748, - [9749] = 9582, - [9750] = 9535, - [9751] = 9536, - [9752] = 9582, - [9753] = 9593, - [9754] = 9754, - [9755] = 9533, - [9756] = 9756, - [9757] = 9632, - [9758] = 9612, - [9759] = 9541, - [9760] = 9621, - [9761] = 9622, - [9762] = 9623, - [9763] = 9630, - [9764] = 9632, - [9765] = 9765, - [9766] = 9532, - [9767] = 9534, - [9768] = 9768, - [9769] = 9769, - [9770] = 9655, - [9771] = 9731, - [9772] = 9655, - [9773] = 9656, - [9774] = 9774, - [9775] = 9674, - [9776] = 9638, - [9777] = 9643, - [9778] = 9545, - [9779] = 9546, - [9780] = 9528, - [9781] = 9542, - [9782] = 9543, - [9783] = 9544, - [9784] = 9573, - [9785] = 9548, - [9786] = 9549, - [9787] = 9787, - [9788] = 9657, - [9789] = 9553, - [9790] = 9674, - [9791] = 9535, - [9792] = 9536, - [9793] = 9532, - [9794] = 9534, - [9795] = 9537, - [9796] = 9538, - [9797] = 9593, + [9742] = 9676, + [9743] = 9677, + [9744] = 9681, + [9745] = 9674, + [9746] = 9664, + [9747] = 9665, + [9748] = 9666, + [9749] = 9749, + [9750] = 9686, + [9751] = 9728, + [9752] = 9752, + [9753] = 9753, + [9754] = 3779, + [9755] = 9673, + [9756] = 9674, + [9757] = 9664, + [9758] = 9665, + [9759] = 9666, + [9760] = 9739, + [9761] = 9674, + [9762] = 9762, + [9763] = 9763, + [9764] = 9692, + [9765] = 9726, + [9766] = 9728, + [9767] = 9767, + [9768] = 9733, + [9769] = 9674, + [9770] = 9664, + [9771] = 9665, + [9772] = 9666, + [9773] = 9676, + [9774] = 9739, + [9775] = 9677, + [9776] = 9776, + [9777] = 9777, + [9778] = 9778, + [9779] = 9674, + [9780] = 9664, + [9781] = 9665, + [9782] = 9666, + [9783] = 9783, + [9784] = 9784, + [9785] = 9753, + [9786] = 9786, + [9787] = 9674, + [9788] = 9664, + [9789] = 9665, + [9790] = 9666, + [9791] = 9733, + [9792] = 9792, + [9793] = 9672, + [9794] = 9674, + [9795] = 9664, + [9796] = 9665, + [9797] = 9666, [9798] = 9798, - [9799] = 9556, - [9800] = 9557, - [9801] = 9567, - [9802] = 9569, + [9799] = 9799, + [9800] = 9664, + [9801] = 9665, + [9802] = 9666, [9803] = 9674, - [9804] = 9677, - [9805] = 9582, - [9806] = 9806, - [9807] = 9533, - [9808] = 9530, - [9809] = 9531, + [9804] = 9664, + [9805] = 9665, + [9806] = 9666, + [9807] = 9807, + [9808] = 9792, + [9809] = 9809, [9810] = 9810, - [9811] = 9540, - [9812] = 9812, - [9813] = 9612, + [9811] = 9662, + [9812] = 9688, + [9813] = 9776, [9814] = 9814, [9815] = 9815, - [9816] = 9541, - [9817] = 9655, + [9816] = 9816, + [9817] = 9672, [9818] = 9818, - [9819] = 9530, - [9820] = 9531, + [9819] = 9681, + [9820] = 9820, [9821] = 9821, [9822] = 9822, - [9823] = 9573, - [9824] = 9824, - [9825] = 9825, - [9826] = 9621, - [9827] = 9622, - [9828] = 9546, - [9829] = 9623, - [9830] = 9573, - [9831] = 9582, - [9832] = 9630, - [9833] = 9542, - [9834] = 9656, - [9835] = 9582, + [9823] = 9823, + [9824] = 9715, + [9825] = 9798, + [9826] = 9799, + [9827] = 9664, + [9828] = 9665, + [9829] = 9777, + [9830] = 9830, + [9831] = 9807, + [9832] = 9666, + [9833] = 9833, + [9834] = 9814, + [9835] = 9835, [9836] = 9836, - [9837] = 9837, - [9838] = 9674, - [9839] = 9543, - [9840] = 9677, - [9841] = 9632, - [9842] = 9824, - [9843] = 9535, - [9844] = 9844, - [9845] = 9536, - [9846] = 9593, - [9847] = 9540, - [9848] = 9533, - [9849] = 9849, + [9837] = 9694, + [9838] = 9838, + [9839] = 9839, + [9840] = 9840, + [9841] = 9841, + [9842] = 9842, + [9843] = 9809, + [9844] = 9810, + [9845] = 9662, + [9846] = 9688, + [9847] = 9776, + [9848] = 9816, + [9849] = 9814, [9850] = 9850, - [9851] = 9612, - [9852] = 9541, + [9851] = 9851, + [9852] = 9852, [9853] = 9853, - [9854] = 9535, - [9855] = 9536, - [9856] = 9538, - [9857] = 9621, - [9858] = 9622, - [9859] = 9623, - [9860] = 9630, - [9861] = 9593, - [9862] = 9677, + [9854] = 9853, + [9855] = 9685, + [9856] = 9856, + [9857] = 9857, + [9858] = 9858, + [9859] = 3951, + [9860] = 9711, + [9861] = 9861, + [9862] = 9862, [9863] = 9863, - [9864] = 9602, - [9865] = 9535, - [9866] = 9866, - [9867] = 9535, - [9868] = 9540, - [9869] = 9536, - [9870] = 9655, - [9871] = 9656, - [9872] = 9593, - [9873] = 9873, - [9874] = 9602, - [9875] = 9638, - [9876] = 9643, - [9877] = 9545, - [9878] = 9546, - [9879] = 9533, - [9880] = 9528, - [9881] = 9533, - [9882] = 9542, - [9883] = 9543, - [9884] = 9544, - [9885] = 9677, - [9886] = 9548, - [9887] = 9553, - [9888] = 9536, - [9889] = 9540, - [9890] = 9655, - [9891] = 9891, - [9892] = 9656, - [9893] = 9612, - [9894] = 9541, - [9895] = 9532, - [9896] = 9534, - [9897] = 9537, - [9898] = 9538, + [9864] = 9821, + [9865] = 9822, + [9866] = 9792, + [9867] = 9823, + [9868] = 9678, + [9869] = 9679, + [9870] = 9815, + [9871] = 9715, + [9872] = 9672, + [9873] = 9711, + [9874] = 9719, + [9875] = 9850, + [9876] = 9777, + [9877] = 9807, + [9878] = 9878, + [9879] = 9879, + [9880] = 9676, + [9881] = 9677, + [9882] = 9681, + [9883] = 9836, + [9884] = 9686, + [9885] = 9694, + [9886] = 9673, + [9887] = 317, + [9888] = 9674, + [9889] = 9692, + [9890] = 9726, + [9891] = 9728, + [9892] = 9733, + [9893] = 9830, + [9894] = 9739, + [9895] = 9798, + [9896] = 9799, + [9897] = 9664, + [9898] = 9665, [9899] = 9899, - [9900] = 9556, - [9901] = 9557, - [9902] = 9677, - [9903] = 9643, - [9904] = 9567, - [9905] = 9621, - [9906] = 9569, - [9907] = 9622, - [9908] = 9623, - [9909] = 9638, - [9910] = 9630, - [9911] = 9540, - [9912] = 355, - [9913] = 9638, - [9914] = 9632, - [9915] = 9643, + [9900] = 9666, + [9901] = 9838, + [9902] = 9792, + [9903] = 9672, + [9904] = 9739, + [9905] = 9798, + [9906] = 9799, + [9907] = 9664, + [9908] = 9665, + [9909] = 9666, + [9910] = 9809, + [9911] = 9810, + [9912] = 9662, + [9913] = 9688, + [9914] = 9776, + [9915] = 9814, [9916] = 9916, - [9917] = 9545, - [9918] = 9731, - [9919] = 9612, - [9920] = 9677, - [9921] = 9544, - [9922] = 9546, - [9923] = 9528, - [9924] = 9541, - [9925] = 9643, - [9926] = 9926, - [9927] = 9656, - [9928] = 9677, - [9929] = 9542, - [9930] = 9612, - [9931] = 9530, - [9932] = 9531, - [9933] = 9543, - [9934] = 9544, - [9935] = 9545, - [9936] = 9677, - [9937] = 9548, - [9938] = 9549, - [9939] = 9593, - [9940] = 9677, - [9941] = 9553, - [9942] = 9548, - [9943] = 9677, - [9944] = 9677, - [9945] = 9677, - [9946] = 9582, - [9947] = 9546, - [9948] = 9621, - [9949] = 9949, - [9950] = 9655, - [9951] = 9824, - [9952] = 9657, - [9953] = 9656, - [9954] = 9622, - [9955] = 9623, - [9956] = 9573, - [9957] = 9630, + [9917] = 9821, + [9918] = 9822, + [9919] = 9823, + [9920] = 9715, + [9921] = 9719, + [9922] = 9777, + [9923] = 9807, + [9924] = 9836, + [9925] = 9694, + [9926] = 9833, + [9927] = 9719, + [9928] = 9753, + [9929] = 9798, + [9930] = 9799, + [9931] = 9682, + [9932] = 9932, + [9933] = 9809, + [9934] = 9810, + [9935] = 9662, + [9936] = 9664, + [9937] = 9688, + [9938] = 9938, + [9939] = 9665, + [9940] = 9776, + [9941] = 9666, + [9942] = 9816, + [9943] = 9943, + [9944] = 9814, + [9945] = 9945, + [9946] = 9946, + [9947] = 9850, + [9948] = 9674, + [9949] = 9678, + [9950] = 9679, + [9951] = 9830, + [9952] = 9952, + [9953] = 9833, + [9954] = 9954, + [9955] = 9838, + [9956] = 9686, + [9957] = 9957, [9958] = 9958, - [9959] = 9535, - [9960] = 9536, - [9961] = 9593, - [9962] = 9638, - [9963] = 9643, - [9964] = 9545, - [9965] = 9546, - [9966] = 9528, - [9967] = 9612, - [9968] = 9632, - [9969] = 9542, - [9970] = 9541, - [9971] = 9543, - [9972] = 9544, - [9973] = 9542, - [9974] = 9543, - [9975] = 9544, - [9976] = 9548, - [9977] = 9549, - [9978] = 9550, - [9979] = 9621, - [9980] = 9622, - [9981] = 9553, - [9982] = 9623, - [9983] = 9630, - [9984] = 9558, - [9985] = 9548, - [9986] = 9532, - [9987] = 9534, - [9988] = 9537, - [9989] = 9731, - [9990] = 9541, - [9991] = 9538, - [9992] = 9532, - [9993] = 9534, - [9994] = 9994, - [9995] = 9995, - [9996] = 9996, - [9997] = 9537, - [9998] = 9549, - [9999] = 9655, - [10000] = 9538, - [10001] = 9638, - [10002] = 9643, - [10003] = 9545, - [10004] = 9546, - [10005] = 9528, - [10006] = 9542, - [10007] = 9543, - [10008] = 9544, - [10009] = 9548, - [10010] = 9550, - [10011] = 9553, - [10012] = 9582, - [10013] = 9556, - [10014] = 9557, - [10015] = 9532, - [10016] = 9534, - [10017] = 9537, - [10018] = 9538, - [10019] = 9556, - [10020] = 9557, - [10021] = 3844, - [10022] = 9556, - [10023] = 9557, - [10024] = 9567, - [10025] = 9567, - [10026] = 9569, - [10027] = 9553, - [10028] = 10028, - [10029] = 9567, - [10030] = 9569, + [9959] = 9711, + [9960] = 9960, + [9961] = 9030, + [9962] = 9853, + [9963] = 9719, + [9964] = 9938, + [9965] = 9965, + [9966] = 9966, + [9967] = 9676, + [9968] = 9677, + [9969] = 9681, + [9970] = 9686, + [9971] = 9673, + [9972] = 9972, + [9973] = 9674, + [9974] = 9678, + [9975] = 9679, + [9976] = 9692, + [9977] = 9726, + [9978] = 9728, + [9979] = 9733, + [9980] = 9739, + [9981] = 9830, + [9982] = 9830, + [9983] = 9833, + [9984] = 3907, + [9985] = 9821, + [9986] = 9822, + [9987] = 9792, + [9988] = 9672, + [9989] = 9853, + [9990] = 3908, + [9991] = 9798, + [9992] = 9856, + [9993] = 9799, + [9994] = 9664, + [9995] = 9665, + [9996] = 9666, + [9997] = 9809, + [9998] = 9857, + [9999] = 9810, + [10000] = 9662, + [10001] = 10001, + [10002] = 9688, + [10003] = 9776, + [10004] = 9856, + [10005] = 9814, + [10006] = 9857, + [10007] = 9858, + [10008] = 9858, + [10009] = 9823, + [10010] = 10010, + [10011] = 9711, + [10012] = 10012, + [10013] = 10013, + [10014] = 9715, + [10015] = 9833, + [10016] = 9821, + [10017] = 9822, + [10018] = 9823, + [10019] = 9715, + [10020] = 9830, + [10021] = 10021, + [10022] = 9777, + [10023] = 9807, + [10024] = 9853, + [10025] = 9836, + [10026] = 10026, + [10027] = 9694, + [10028] = 9719, + [10029] = 10029, + [10030] = 10030, [10031] = 10031, - [10032] = 10032, + [10032] = 9938, [10033] = 10033, [10034] = 10034, - [10035] = 9530, - [10036] = 9531, - [10037] = 10037, - [10038] = 10038, - [10039] = 9602, - [10040] = 9567, - [10041] = 9655, - [10042] = 9535, - [10043] = 9536, - [10044] = 9824, - [10045] = 9541, - [10046] = 9656, - [10047] = 10047, - [10048] = 10048, - [10049] = 9549, - [10050] = 9545, - [10051] = 9546, - [10052] = 9556, - [10053] = 9528, - [10054] = 9557, - [10055] = 10055, - [10056] = 10056, - [10057] = 9545, - [10058] = 10058, - [10059] = 357, - [10060] = 10060, - [10061] = 9550, - [10062] = 9638, - [10063] = 9537, - [10064] = 10064, - [10065] = 10065, - [10066] = 10066, - [10067] = 10067, - [10068] = 10068, - [10069] = 10069, - [10070] = 10070, - [10071] = 10071, - [10072] = 10072, - [10073] = 10073, - [10074] = 10074, - [10075] = 10075, - [10076] = 10076, - [10077] = 10077, + [10035] = 9833, + [10036] = 10036, + [10037] = 9938, + [10038] = 9836, + [10039] = 9853, + [10040] = 9678, + [10041] = 9679, + [10042] = 10042, + [10043] = 9676, + [10044] = 9677, + [10045] = 9681, + [10046] = 9833, + [10047] = 9711, + [10048] = 9777, + [10049] = 10049, + [10050] = 9682, + [10051] = 9719, + [10052] = 9853, + [10053] = 9807, + [10054] = 9686, + [10055] = 9676, + [10056] = 9677, + [10057] = 9681, + [10058] = 9833, + [10059] = 9686, + [10060] = 9833, + [10061] = 9673, + [10062] = 9673, + [10063] = 9674, + [10064] = 9674, + [10065] = 9678, + [10066] = 9692, + [10067] = 9726, + [10068] = 9728, + [10069] = 9833, + [10070] = 9733, + [10071] = 9833, + [10072] = 9679, + [10073] = 9833, + [10074] = 9792, + [10075] = 9833, + [10076] = 9833, + [10077] = 9692, [10078] = 10078, - [10079] = 10079, - [10080] = 10080, + [10079] = 9726, + [10080] = 9728, [10081] = 10081, - [10082] = 10082, - [10083] = 10083, - [10084] = 10084, - [10085] = 10069, - [10086] = 10071, - [10087] = 10087, - [10088] = 10088, - [10089] = 10089, - [10090] = 10090, - [10091] = 10091, - [10092] = 10092, - [10093] = 10073, - [10094] = 10094, - [10095] = 10095, - [10096] = 10096, - [10097] = 10097, - [10098] = 10091, - [10099] = 10099, - [10100] = 10100, - [10101] = 10091, - [10102] = 10078, - [10103] = 10103, - [10104] = 10094, - [10105] = 10094, - [10106] = 10106, - [10107] = 10094, - [10108] = 10108, - [10109] = 10109, - [10110] = 10110, - [10111] = 10111, - [10112] = 10084, - [10113] = 10091, - [10114] = 10099, - [10115] = 10115, - [10116] = 10096, - [10117] = 10117, - [10118] = 10078, - [10119] = 10119, - [10120] = 10076, - [10121] = 10121, - [10122] = 10078, - [10123] = 10074, - [10124] = 10076, - [10125] = 10080, - [10126] = 10126, - [10127] = 10127, - [10128] = 10128, - [10129] = 10089, - [10130] = 10094, - [10131] = 10096, - [10132] = 10088, + [10082] = 9792, + [10083] = 9733, + [10084] = 9672, + [10085] = 9798, + [10086] = 9799, + [10087] = 9664, + [10088] = 9665, + [10089] = 9666, + [10090] = 9678, + [10091] = 9809, + [10092] = 9810, + [10093] = 9662, + [10094] = 9688, + [10095] = 9814, + [10096] = 9739, + [10097] = 3912, + [10098] = 9753, + [10099] = 9821, + [10100] = 9822, + [10101] = 9823, + [10102] = 9715, + [10103] = 9836, + [10104] = 9777, + [10105] = 9807, + [10106] = 9836, + [10107] = 9694, + [10108] = 9694, + [10109] = 9679, + [10110] = 9676, + [10111] = 9677, + [10112] = 10112, + [10113] = 9792, + [10114] = 10114, + [10115] = 9678, + [10116] = 9679, + [10117] = 9815, + [10118] = 9672, + [10119] = 9711, + [10120] = 9681, + [10121] = 9719, + [10122] = 9856, + [10123] = 9857, + [10124] = 9821, + [10125] = 9798, + [10126] = 9799, + [10127] = 9822, + [10128] = 9664, + [10129] = 9665, + [10130] = 9666, + [10131] = 9858, + [10132] = 9676, [10133] = 10133, - [10134] = 10066, - [10135] = 10091, - [10136] = 10087, - [10137] = 10088, - [10138] = 10100, - [10139] = 10075, - [10140] = 10121, - [10141] = 10092, - [10142] = 10108, - [10143] = 10064, - [10144] = 10080, - [10145] = 10097, - [10146] = 10080, - [10147] = 10099, - [10148] = 10083, - [10149] = 10149, - [10150] = 10082, - [10151] = 10083, - [10152] = 10108, - [10153] = 10153, - [10154] = 10078, - [10155] = 10089, - [10156] = 10117, - [10157] = 10083, - [10158] = 10083, - [10159] = 10080, - [10160] = 10074, - [10161] = 10126, - [10162] = 10069, - [10163] = 10071, - [10164] = 10117, - [10165] = 10084, - [10166] = 10094, - [10167] = 10078, - [10168] = 10168, - [10169] = 10095, - [10170] = 10170, - [10171] = 10066, - [10172] = 10088, - [10173] = 10069, - [10174] = 10092, - [10175] = 10071, - [10176] = 10117, - [10177] = 10092, - [10178] = 10097, - [10179] = 10094, - [10180] = 10067, - [10181] = 10181, - [10182] = 10182, - [10183] = 10082, - [10184] = 10077, + [10134] = 9677, + [10135] = 9681, + [10136] = 10136, + [10137] = 9673, + [10138] = 9809, + [10139] = 9674, + [10140] = 9810, + [10141] = 9662, + [10142] = 9711, + [10143] = 9692, + [10144] = 9726, + [10145] = 9728, + [10146] = 9733, + [10147] = 9688, + [10148] = 9776, + [10149] = 9816, + [10150] = 10150, + [10151] = 9814, + [10152] = 10152, + [10153] = 3913, + [10154] = 9682, + [10155] = 9792, + [10156] = 10156, + [10157] = 9798, + [10158] = 9799, + [10159] = 9664, + [10160] = 9665, + [10161] = 9666, + [10162] = 9809, + [10163] = 9810, + [10164] = 9662, + [10165] = 9688, + [10166] = 9814, + [10167] = 10167, + [10168] = 9809, + [10169] = 10169, + [10170] = 9821, + [10171] = 9822, + [10172] = 9823, + [10173] = 9715, + [10174] = 10174, + [10175] = 9823, + [10176] = 9777, + [10177] = 9807, + [10178] = 9836, + [10179] = 9673, + [10180] = 10180, + [10181] = 9719, + [10182] = 9821, + [10183] = 9822, + [10184] = 10184, [10185] = 10185, - [10186] = 10117, - [10187] = 10096, - [10188] = 10073, - [10189] = 10094, - [10190] = 10111, - [10191] = 10074, - [10192] = 10084, - [10193] = 10193, - [10194] = 10089, - [10195] = 10069, - [10196] = 10071, - [10197] = 10090, - [10198] = 10094, - [10199] = 10100, - [10200] = 10200, - [10201] = 10096, - [10202] = 10170, - [10203] = 10084, - [10204] = 10088, - [10205] = 10095, - [10206] = 10092, + [10186] = 9823, + [10187] = 9715, + [10188] = 9810, + [10189] = 10189, + [10190] = 9777, + [10191] = 9807, + [10192] = 9686, + [10193] = 9678, + [10194] = 9679, + [10195] = 9836, + [10196] = 10196, + [10197] = 9694, + [10198] = 10198, + [10199] = 10199, + [10200] = 9815, + [10201] = 10201, + [10202] = 9676, + [10203] = 9677, + [10204] = 10204, + [10205] = 9674, + [10206] = 3876, [10207] = 10207, - [10208] = 10066, + [10208] = 10208, [10209] = 10209, [10210] = 10210, - [10211] = 10106, - [10212] = 10100, + [10211] = 10211, + [10212] = 10212, [10213] = 10213, - [10214] = 10117, - [10215] = 10185, - [10216] = 10084, + [10214] = 10214, + [10215] = 10215, + [10216] = 10216, [10217] = 10217, [10218] = 10218, - [10219] = 10074, - [10220] = 10082, + [10219] = 10219, + [10220] = 10220, [10221] = 10221, - [10222] = 10088, - [10223] = 10126, - [10224] = 10084, - [10225] = 10111, - [10226] = 10082, - [10227] = 10095, - [10228] = 10108, - [10229] = 10111, - [10230] = 10074, - [10231] = 10066, - [10232] = 10094, + [10222] = 10222, + [10223] = 10223, + [10224] = 10222, + [10225] = 10225, + [10226] = 10226, + [10227] = 10226, + [10228] = 10228, + [10229] = 10229, + [10230] = 10230, + [10231] = 10231, + [10232] = 10232, [10233] = 10233, - [10234] = 10126, - [10235] = 10170, - [10236] = 10100, - [10237] = 10074, - [10238] = 10074, - [10239] = 10149, - [10240] = 10095, - [10241] = 10067, - [10242] = 10242, - [10243] = 10106, - [10244] = 10076, - [10245] = 10074, - [10246] = 10069, - [10247] = 10075, - [10248] = 10071, - [10249] = 10074, - [10250] = 10082, - [10251] = 10126, - [10252] = 10074, - [10253] = 10091, - [10254] = 10084, + [10234] = 10226, + [10235] = 10235, + [10236] = 10216, + [10237] = 10237, + [10238] = 10215, + [10239] = 10228, + [10240] = 10209, + [10241] = 10241, + [10242] = 10241, + [10243] = 10208, + [10244] = 10244, + [10245] = 10245, + [10246] = 10246, + [10247] = 10247, + [10248] = 10230, + [10249] = 10245, + [10250] = 10250, + [10251] = 10251, + [10252] = 10252, + [10253] = 10228, + [10254] = 10211, [10255] = 10255, - [10256] = 10074, - [10257] = 10257, + [10256] = 10256, + [10257] = 10214, [10258] = 10258, - [10259] = 10074, - [10260] = 10095, - [10261] = 10074, - [10262] = 10074, - [10263] = 10074, - [10264] = 10077, - [10265] = 10074, - [10266] = 10266, - [10267] = 10074, - [10268] = 10075, - [10269] = 10269, - [10270] = 10073, - [10271] = 10168, - [10272] = 10078, - [10273] = 10089, - [10274] = 10149, - [10275] = 10094, - [10276] = 10109, - [10277] = 10096, - [10278] = 10126, - [10279] = 10076, + [10259] = 10259, + [10260] = 10208, + [10261] = 10225, + [10262] = 10213, + [10263] = 10232, + [10264] = 10250, + [10265] = 10228, + [10266] = 10225, + [10267] = 10256, + [10268] = 10268, + [10269] = 10218, + [10270] = 10220, + [10271] = 10231, + [10272] = 10245, + [10273] = 10273, + [10274] = 10226, + [10275] = 10237, + [10276] = 10216, + [10277] = 10255, + [10278] = 10217, + [10279] = 10252, [10280] = 10280, - [10281] = 10066, - [10282] = 10080, - [10283] = 10126, - [10284] = 10074, - [10285] = 10082, - [10286] = 10075, - [10287] = 10090, - [10288] = 10100, - [10289] = 10080, - [10290] = 10094, - [10291] = 10097, - [10292] = 10170, - [10293] = 10168, - [10294] = 10073, - [10295] = 10103, - [10296] = 10117, - [10297] = 10067, - [10298] = 10087, - [10299] = 10082, - [10300] = 10083, - [10301] = 10090, - [10302] = 10067, - [10303] = 10069, - [10304] = 10071, - [10305] = 10067, - [10306] = 10108, - [10307] = 10181, - [10308] = 10181, - [10309] = 10069, - [10310] = 10071, + [10281] = 10244, + [10282] = 10233, + [10283] = 10283, + [10284] = 10235, + [10285] = 10285, + [10286] = 10280, + [10287] = 10215, + [10288] = 10288, + [10289] = 10289, + [10290] = 10230, + [10291] = 10288, + [10292] = 10241, + [10293] = 10293, + [10294] = 10252, + [10295] = 10250, + [10296] = 10211, + [10297] = 10225, + [10298] = 10280, + [10299] = 10213, + [10300] = 10255, + [10301] = 10256, + [10302] = 10214, + [10303] = 10303, + [10304] = 10218, + [10305] = 10252, + [10306] = 10255, + [10307] = 10216, + [10308] = 10231, + [10309] = 10288, + [10310] = 10235, [10311] = 10311, - [10312] = 10073, - [10313] = 10091, - [10314] = 10066, - [10315] = 10067, - [10316] = 10316, - [10317] = 10069, - [10318] = 10099, - [10319] = 10242, - [10320] = 10149, - [10321] = 10321, - [10322] = 10126, - [10323] = 10181, - [10324] = 10117, - [10325] = 10075, - [10326] = 10326, - [10327] = 10181, - [10328] = 10084, - [10329] = 10108, - [10330] = 10181, - [10331] = 10331, + [10312] = 10215, + [10313] = 10280, + [10314] = 10314, + [10315] = 10241, + [10316] = 10237, + [10317] = 10225, + [10318] = 10209, + [10319] = 10212, + [10320] = 10288, + [10321] = 10216, + [10322] = 10245, + [10323] = 10222, + [10324] = 10213, + [10325] = 10325, + [10326] = 10251, + [10327] = 10256, + [10328] = 10218, + [10329] = 10209, + [10330] = 10229, + [10331] = 10244, [10332] = 10332, - [10333] = 10083, - [10334] = 10074, - [10335] = 10076, - [10336] = 10077, - [10337] = 10106, - [10338] = 10338, - [10339] = 10087, - [10340] = 10340, - [10341] = 10242, - [10342] = 10342, - [10343] = 10088, - [10344] = 10344, - [10345] = 10149, - [10346] = 10067, - [10347] = 10069, - [10348] = 10071, - [10349] = 10349, - [10350] = 10100, - [10351] = 10066, - [10352] = 10069, - [10353] = 10100, - [10354] = 10078, - [10355] = 10071, - [10356] = 10078, - [10357] = 10073, - [10358] = 10087, - [10359] = 10071, - [10360] = 10111, - [10361] = 10088, - [10362] = 10067, - [10363] = 10092, - [10364] = 10077, - [10365] = 10126, - [10366] = 10185, - [10367] = 10367, - [10368] = 10103, - [10369] = 10083, - [10370] = 10084, - [10371] = 10083, - [10372] = 10097, - [10373] = 10373, - [10374] = 10374, - [10375] = 10092, - [10376] = 10121, - [10377] = 10089, - [10378] = 10378, - [10379] = 10379, - [10380] = 10168, - [10381] = 10095, - [10382] = 10073, - [10383] = 10077, - [10384] = 10106, - [10385] = 10242, - [10386] = 10386, - [10387] = 10089, - [10388] = 10094, - [10389] = 10111, - [10390] = 10126, - [10391] = 10097, - [10392] = 10064, - [10393] = 10067, - [10394] = 10100, - [10395] = 10091, - [10396] = 10185, - [10397] = 10067, - [10398] = 10398, - [10399] = 10094, - [10400] = 10075, - [10401] = 10401, - [10402] = 10103, - [10403] = 10168, - [10404] = 10096, - [10405] = 10067, - [10406] = 10106, - [10407] = 10407, - [10408] = 10069, - [10409] = 10071, - [10410] = 10410, - [10411] = 10100, - [10412] = 10084, - [10413] = 10091, - [10414] = 10091, - [10415] = 10094, - [10416] = 10078, - [10417] = 10094, - [10418] = 10096, - [10419] = 10332, - [10420] = 10109, - [10421] = 10091, - [10422] = 10168, - [10423] = 10078, - [10424] = 10083, - [10425] = 10109, - [10426] = 10069, - [10427] = 10071, - [10428] = 10428, - [10429] = 10066, - [10430] = 10066, - [10431] = 10170, - [10432] = 10121, - [10433] = 10084, - [10434] = 10067, - [10435] = 10106, - [10436] = 10069, - [10437] = 10071, - [10438] = 10100, - [10439] = 10064, - [10440] = 10078, - [10441] = 10066, - [10442] = 10100, - [10443] = 10064, - [10444] = 10444, - [10445] = 10445, - [10446] = 10170, - [10447] = 10094, - [10448] = 10064, - [10449] = 10126, - [10450] = 10096, - [10451] = 10451, - [10452] = 10064, - [10453] = 10126, - [10454] = 10064, - [10455] = 10108, - [10456] = 10100, - [10457] = 10064, - [10458] = 10111, - [10459] = 10064, - [10460] = 10064, - [10461] = 10064, - [10462] = 10064, - [10463] = 10100, - [10464] = 10064, - [10465] = 10064, - [10466] = 10064, - [10467] = 10064, - [10468] = 10064, - [10469] = 10064, - [10470] = 10064, - [10471] = 10064, - [10472] = 10067, - [10473] = 10099, - [10474] = 10094, - [10475] = 10149, - [10476] = 10476, - [10477] = 10477, - [10478] = 10073, - [10479] = 10242, - [10480] = 10185, - [10481] = 10083, + [10333] = 10222, + [10334] = 10334, + [10335] = 10335, + [10336] = 10226, + [10337] = 10250, + [10338] = 10235, + [10339] = 10256, + [10340] = 10214, + [10341] = 10226, + [10342] = 10215, + [10343] = 10252, + [10344] = 10226, + [10345] = 10228, + [10346] = 10225, + [10347] = 10228, + [10348] = 10314, + [10349] = 10213, + [10350] = 10280, + [10351] = 10288, + [10352] = 10218, + [10353] = 10353, + [10354] = 10252, + [10355] = 10219, + [10356] = 10235, + [10357] = 10280, + [10358] = 10288, + [10359] = 10226, + [10360] = 10228, + [10361] = 10237, + [10362] = 10218, + [10363] = 10215, + [10364] = 10228, + [10365] = 10365, + [10366] = 10244, + [10367] = 10244, + [10368] = 10256, + [10369] = 10220, + [10370] = 10213, + [10371] = 10218, + [10372] = 10210, + [10373] = 10256, + [10374] = 10218, + [10375] = 10245, + [10376] = 10212, + [10377] = 10251, + [10378] = 10209, + [10379] = 10218, + [10380] = 10221, + [10381] = 10365, + [10382] = 10218, + [10383] = 10245, + [10384] = 10218, + [10385] = 10209, + [10386] = 10231, + [10387] = 10218, + [10388] = 10218, + [10389] = 10218, + [10390] = 10218, + [10391] = 10391, + [10392] = 10218, + [10393] = 10209, + [10394] = 10218, + [10395] = 10237, + [10396] = 10396, + [10397] = 10208, + [10398] = 10256, + [10399] = 10280, + [10400] = 10226, + [10401] = 10228, + [10402] = 10325, + [10403] = 10210, + [10404] = 10220, + [10405] = 10212, + [10406] = 10217, + [10407] = 10256, + [10408] = 10237, + [10409] = 10409, + [10410] = 10256, + [10411] = 10218, + [10412] = 10211, + [10413] = 10413, + [10414] = 10230, + [10415] = 10245, + [10416] = 10211, + [10417] = 10213, + [10418] = 10418, + [10419] = 10214, + [10420] = 10230, + [10421] = 10207, + [10422] = 10231, + [10423] = 10209, + [10424] = 10237, + [10425] = 10325, + [10426] = 10426, + [10427] = 10245, + [10428] = 10335, + [10429] = 10216, + [10430] = 10209, + [10431] = 10212, + [10432] = 10432, + [10433] = 10221, + [10434] = 10211, + [10435] = 10217, + [10436] = 10280, + [10437] = 10437, + [10438] = 10256, + [10439] = 10210, + [10440] = 10440, + [10441] = 10441, + [10442] = 10288, + [10443] = 10250, + [10444] = 10288, + [10445] = 10216, + [10446] = 10222, + [10447] = 10314, + [10448] = 10229, + [10449] = 10222, + [10450] = 10214, + [10451] = 10226, + [10452] = 10216, + [10453] = 10245, + [10454] = 10228, + [10455] = 10455, + [10456] = 10212, + [10457] = 10244, + [10458] = 10458, + [10459] = 10459, + [10460] = 10250, + [10461] = 10461, + [10462] = 10256, + [10463] = 10216, + [10464] = 10214, + [10465] = 10280, + [10466] = 10288, + [10467] = 10228, + [10468] = 10231, + [10469] = 10219, + [10470] = 10251, + [10471] = 10218, + [10472] = 10311, + [10473] = 10244, + [10474] = 10207, + [10475] = 10475, + [10476] = 10237, + [10477] = 10255, + [10478] = 10219, + [10479] = 10256, + [10480] = 10325, + [10481] = 10220, [10482] = 10482, - [10483] = 10483, - [10484] = 10484, - [10485] = 10485, - [10486] = 10486, - [10487] = 10487, - [10488] = 10488, - [10489] = 10489, - [10490] = 10490, - [10491] = 10491, - [10492] = 10492, - [10493] = 10493, - [10494] = 10494, - [10495] = 10495, + [10483] = 10252, + [10484] = 10280, + [10485] = 10288, + [10486] = 10214, + [10487] = 10208, + [10488] = 10314, + [10489] = 10210, + [10490] = 10219, + [10491] = 10213, + [10492] = 10250, + [10493] = 10221, + [10494] = 10216, + [10495] = 10245, [10496] = 10496, - [10497] = 10497, - [10498] = 10498, - [10499] = 10499, - [10500] = 10500, - [10501] = 10501, + [10497] = 10459, + [10498] = 10365, + [10499] = 10251, + [10500] = 10314, + [10501] = 10218, [10502] = 10502, - [10503] = 10503, - [10504] = 10504, - [10505] = 10505, - [10506] = 10485, - [10507] = 10507, - [10508] = 10508, - [10509] = 10482, - [10510] = 10510, - [10511] = 10511, + [10503] = 10219, + [10504] = 10209, + [10505] = 10245, + [10506] = 10506, + [10507] = 10251, + [10508] = 10220, + [10509] = 10221, + [10510] = 10232, + [10511] = 10459, [10512] = 10512, [10513] = 10513, - [10514] = 10514, - [10515] = 10515, - [10516] = 10484, - [10517] = 10517, - [10518] = 10486, - [10519] = 10519, - [10520] = 10520, - [10521] = 10490, - [10522] = 10522, - [10523] = 10523, - [10524] = 10524, - [10525] = 10508, - [10526] = 10526, - [10527] = 10527, - [10528] = 10528, - [10529] = 10499, - [10530] = 10498, - [10531] = 10487, - [10532] = 10532, - [10533] = 10533, - [10534] = 10534, - [10535] = 10528, - [10536] = 10536, + [10514] = 10231, + [10515] = 10244, + [10516] = 10226, + [10517] = 10228, + [10518] = 10216, + [10519] = 10207, + [10520] = 10209, + [10521] = 10521, + [10522] = 10212, + [10523] = 10252, + [10524] = 10230, + [10525] = 10250, + [10526] = 10233, + [10527] = 10521, + [10528] = 10216, + [10529] = 10255, + [10530] = 10256, + [10531] = 10245, + [10532] = 10233, + [10533] = 10335, + [10534] = 10244, + [10535] = 10535, + [10536] = 10214, [10537] = 10537, - [10538] = 10538, - [10539] = 10539, - [10540] = 10540, - [10541] = 10533, - [10542] = 10542, - [10543] = 10538, - [10544] = 10544, - [10545] = 10545, - [10546] = 10546, + [10538] = 10235, + [10539] = 10232, + [10540] = 10235, + [10541] = 10209, + [10542] = 10280, + [10543] = 10288, + [10544] = 10215, + [10545] = 10228, + [10546] = 10365, [10547] = 10547, - [10548] = 10548, - [10549] = 10549, - [10550] = 10550, + [10548] = 10256, + [10549] = 10225, + [10550] = 10365, [10551] = 10551, - [10552] = 10540, - [10553] = 10553, - [10554] = 10507, - [10555] = 10555, + [10552] = 10241, + [10553] = 10251, + [10554] = 10221, + [10555] = 10244, [10556] = 10556, - [10557] = 10482, + [10557] = 10207, [10558] = 10558, - [10559] = 10508, + [10559] = 10255, [10560] = 10560, - [10561] = 10504, + [10561] = 10207, [10562] = 10562, - [10563] = 10563, + [10563] = 10252, [10564] = 10564, - [10565] = 10498, - [10566] = 10526, - [10567] = 10528, - [10568] = 10568, - [10569] = 10536, - [10570] = 10570, - [10571] = 10520, - [10572] = 10572, - [10573] = 10573, - [10574] = 10490, - [10575] = 10498, + [10565] = 10207, + [10566] = 10230, + [10567] = 10280, + [10568] = 10288, + [10569] = 10569, + [10570] = 10335, + [10571] = 10365, + [10572] = 10216, + [10573] = 10280, + [10574] = 10288, + [10575] = 10228, [10576] = 10576, - [10577] = 10507, - [10578] = 10553, + [10577] = 10521, + [10578] = 10578, [10579] = 10579, - [10580] = 10544, + [10580] = 10219, [10581] = 10581, - [10582] = 10533, - [10583] = 10542, - [10584] = 10498, - [10585] = 10513, - [10586] = 10528, - [10587] = 10587, - [10588] = 10588, - [10589] = 10589, - [10590] = 10524, - [10591] = 10591, - [10592] = 10507, - [10593] = 10589, - [10594] = 10570, - [10595] = 10588, - [10596] = 10596, - [10597] = 10538, - [10598] = 10494, - [10599] = 10498, - [10600] = 10504, - [10601] = 10526, - [10602] = 10536, - [10603] = 10570, - [10604] = 10573, - [10605] = 10528, - [10606] = 10483, - [10607] = 10538, - [10608] = 10608, - [10609] = 10513, - [10610] = 10511, - [10611] = 10611, - [10612] = 10612, - [10613] = 10540, - [10614] = 10614, - [10615] = 10562, - [10616] = 10616, - [10617] = 10544, - [10618] = 10618, - [10619] = 10568, + [10582] = 10582, + [10583] = 10231, + [10584] = 10521, + [10585] = 10250, + [10586] = 10586, + [10587] = 10231, + [10588] = 10256, + [10589] = 10521, + [10590] = 10216, + [10591] = 10252, + [10592] = 10592, + [10593] = 10521, + [10594] = 10594, + [10595] = 10250, + [10596] = 10521, + [10597] = 10233, + [10598] = 10521, + [10599] = 10229, + [10600] = 10244, + [10601] = 10521, + [10602] = 10521, + [10603] = 10521, + [10604] = 10521, + [10605] = 10521, + [10606] = 10521, + [10607] = 10521, + [10608] = 10521, + [10609] = 10521, + [10610] = 10521, + [10611] = 10521, + [10612] = 10521, + [10613] = 10521, + [10614] = 10250, + [10615] = 10250, + [10616] = 10256, + [10617] = 10617, + [10618] = 10256, + [10619] = 10217, [10620] = 10620, - [10621] = 10486, - [10622] = 10533, - [10623] = 10495, - [10624] = 10496, - [10625] = 10625, - [10626] = 10626, - [10627] = 10540, - [10628] = 10490, - [10629] = 10505, - [10630] = 10485, + [10621] = 10252, + [10622] = 10235, + [10623] = 10280, + [10624] = 10288, + [10625] = 10210, + [10626] = 10241, + [10627] = 10627, + [10628] = 10628, + [10629] = 10629, + [10630] = 10630, [10631] = 10631, - [10632] = 10556, - [10633] = 10533, + [10632] = 10632, + [10633] = 10633, [10634] = 10634, - [10635] = 10502, + [10635] = 10635, [10636] = 10636, [10637] = 10637, - [10638] = 10544, - [10639] = 10562, + [10638] = 10638, + [10639] = 10639, [10640] = 10640, - [10641] = 10560, - [10642] = 10483, + [10641] = 10641, + [10642] = 10642, [10643] = 10643, - [10644] = 10545, - [10645] = 10528, - [10646] = 10538, + [10644] = 10641, + [10645] = 10645, + [10646] = 10642, [10647] = 10647, - [10648] = 10540, - [10649] = 10544, - [10650] = 10556, + [10648] = 10648, + [10649] = 10649, + [10650] = 10650, [10651] = 10651, [10652] = 10652, - [10653] = 10555, - [10654] = 10495, - [10655] = 10498, - [10656] = 10563, - [10657] = 10496, - [10658] = 10482, - [10659] = 10659, - [10660] = 10581, - [10661] = 10533, - [10662] = 10570, - [10663] = 10542, - [10664] = 10549, - [10665] = 10596, - [10666] = 10550, - [10667] = 10558, + [10653] = 10653, + [10654] = 10654, + [10655] = 10655, + [10656] = 10656, + [10657] = 10657, + [10658] = 10658, + [10659] = 10636, + [10660] = 10660, + [10661] = 10661, + [10662] = 10662, + [10663] = 10663, + [10664] = 10664, + [10665] = 10665, + [10666] = 10666, + [10667] = 10667, [10668] = 10668, [10669] = 10669, - [10670] = 10618, - [10671] = 10671, + [10670] = 10628, + [10671] = 10642, [10672] = 10672, - [10673] = 10549, - [10674] = 10524, - [10675] = 10550, + [10673] = 10673, + [10674] = 10674, + [10675] = 10675, [10676] = 10676, - [10677] = 10634, - [10678] = 10678, - [10679] = 10558, - [10680] = 10596, - [10681] = 10652, - [10682] = 10505, - [10683] = 10536, - [10684] = 10564, - [10685] = 10573, - [10686] = 10485, + [10677] = 10677, + [10678] = 10639, + [10679] = 10662, + [10680] = 10680, + [10681] = 10635, + [10682] = 10682, + [10683] = 10683, + [10684] = 10684, + [10685] = 10685, + [10686] = 10686, [10687] = 10687, [10688] = 10688, - [10689] = 10513, + [10689] = 10689, [10690] = 10690, [10691] = 10691, - [10692] = 10672, - [10693] = 10555, + [10692] = 10692, + [10693] = 10693, [10694] = 10694, [10695] = 10695, - [10696] = 10492, - [10697] = 10533, + [10696] = 10642, + [10697] = 10647, [10698] = 10698, - [10699] = 10542, - [10700] = 10618, - [10701] = 10493, + [10699] = 10665, + [10700] = 10700, + [10701] = 10701, [10702] = 10702, - [10703] = 10495, - [10704] = 10507, - [10705] = 10498, + [10703] = 10703, + [10704] = 10674, + [10705] = 10705, [10706] = 10706, - [10707] = 10555, - [10708] = 10505, - [10709] = 10485, - [10710] = 10511, - [10711] = 10545, - [10712] = 10712, - [10713] = 10713, - [10714] = 10572, - [10715] = 10562, - [10716] = 10533, - [10717] = 10717, + [10707] = 10707, + [10708] = 10708, + [10709] = 10709, + [10710] = 10710, + [10711] = 10674, + [10712] = 10674, + [10713] = 10668, + [10714] = 10714, + [10715] = 10649, + [10716] = 10716, + [10717] = 10656, [10718] = 10718, - [10719] = 10563, - [10720] = 10659, - [10721] = 10698, - [10722] = 10507, - [10723] = 10482, - [10724] = 10502, - [10725] = 10508, + [10719] = 10719, + [10720] = 10720, + [10721] = 10640, + [10722] = 10722, + [10723] = 10689, + [10724] = 10660, + [10725] = 10725, [10726] = 10726, - [10727] = 10562, - [10728] = 10728, - [10729] = 10690, - [10730] = 10508, + [10727] = 10651, + [10728] = 10688, + [10729] = 10729, + [10730] = 10730, [10731] = 10731, [10732] = 10732, - [10733] = 10672, + [10733] = 10664, [10734] = 10734, - [10735] = 10524, - [10736] = 10555, - [10737] = 10618, - [10738] = 10504, - [10739] = 10526, - [10740] = 10482, - [10741] = 10570, - [10742] = 10536, + [10735] = 10735, + [10736] = 10736, + [10737] = 10635, + [10738] = 10738, + [10739] = 10628, + [10740] = 10667, + [10741] = 10741, + [10742] = 10742, [10743] = 10743, - [10744] = 10573, + [10744] = 10744, [10745] = 10745, - [10746] = 10483, + [10746] = 10661, [10747] = 10747, - [10748] = 10513, - [10749] = 10749, - [10750] = 10717, + [10748] = 10748, + [10749] = 10630, + [10750] = 10750, [10751] = 10751, [10752] = 10752, [10753] = 10753, - [10754] = 10496, - [10755] = 10755, - [10756] = 10756, - [10757] = 10486, + [10754] = 10754, + [10755] = 10734, + [10756] = 10652, + [10757] = 10658, [10758] = 10758, - [10759] = 10581, - [10760] = 10495, - [10761] = 10564, - [10762] = 8047, - [10763] = 10616, - [10764] = 10498, - [10765] = 10505, - [10766] = 10485, - [10767] = 10634, - [10768] = 10545, - [10769] = 10579, - [10770] = 10751, + [10759] = 10706, + [10760] = 10667, + [10761] = 10709, + [10762] = 10762, + [10763] = 10730, + [10764] = 10691, + [10765] = 10765, + [10766] = 10766, + [10767] = 10700, + [10768] = 10768, + [10769] = 10695, + [10770] = 10628, [10771] = 10771, - [10772] = 10533, - [10773] = 10494, + [10772] = 10772, + [10773] = 2757, [10774] = 10774, - [10775] = 10540, - [10776] = 10563, - [10777] = 10625, - [10778] = 10486, - [10779] = 10779, - [10780] = 10780, - [10781] = 10781, - [10782] = 10698, - [10783] = 10587, - [10784] = 10560, - [10785] = 10785, - [10786] = 10494, - [10787] = 10652, - [10788] = 10555, - [10789] = 10482, - [10790] = 10790, - [10791] = 10498, - [10792] = 10524, - [10793] = 10596, - [10794] = 10643, - [10795] = 10690, - [10796] = 10581, - [10797] = 10536, - [10798] = 10798, - [10799] = 10573, - [10800] = 10498, - [10801] = 10549, - [10802] = 10550, - [10803] = 10513, - [10804] = 10558, - [10805] = 10496, - [10806] = 8064, - [10807] = 10544, - [10808] = 10808, + [10775] = 10775, + [10776] = 10716, + [10777] = 10730, + [10778] = 10649, + [10779] = 10638, + [10780] = 10674, + [10781] = 10643, + [10782] = 10641, + [10783] = 10645, + [10784] = 10784, + [10785] = 10648, + [10786] = 10786, + [10787] = 10752, + [10788] = 10661, + [10789] = 10789, + [10790] = 10654, + [10791] = 10791, + [10792] = 10792, + [10793] = 10662, + [10794] = 10653, + [10795] = 10795, + [10796] = 10796, + [10797] = 10653, + [10798] = 10665, + [10799] = 10643, + [10800] = 10641, + [10801] = 10645, + [10802] = 10642, + [10803] = 8155, + [10804] = 10675, + [10805] = 10676, + [10806] = 10668, + [10807] = 10636, + [10808] = 10648, [10809] = 10809, - [10810] = 10504, - [10811] = 10752, - [10812] = 10812, - [10813] = 10526, - [10814] = 10495, - [10815] = 10815, + [10810] = 10685, + [10811] = 10686, + [10812] = 10766, + [10813] = 10765, + [10814] = 10689, + [10815] = 10719, [10816] = 10816, [10817] = 10817, - [10818] = 10570, - [10819] = 10505, - [10820] = 10485, - [10821] = 10483, - [10822] = 10581, - [10823] = 10533, - [10824] = 10542, - [10825] = 10500, - [10826] = 10482, - [10827] = 10563, - [10828] = 10498, - [10829] = 10533, - [10830] = 10562, - [10831] = 10507, + [10818] = 10692, + [10819] = 10654, + [10820] = 10734, + [10821] = 10821, + [10822] = 10627, + [10823] = 10720, + [10824] = 10640, + [10825] = 10725, + [10826] = 10826, + [10827] = 10827, + [10828] = 10707, + [10829] = 10786, + [10830] = 10747, + [10831] = 10735, [10832] = 10832, - [10833] = 10546, - [10834] = 10834, - [10835] = 10533, - [10836] = 10486, - [10837] = 10524, - [10838] = 10528, - [10839] = 10839, - [10840] = 10536, - [10841] = 10538, - [10842] = 10573, - [10843] = 10843, - [10844] = 10513, - [10845] = 10540, - [10846] = 10544, + [10833] = 10636, + [10834] = 10683, + [10835] = 10700, + [10836] = 10695, + [10837] = 10743, + [10838] = 10752, + [10839] = 10660, + [10840] = 10651, + [10841] = 10718, + [10842] = 10664, + [10843] = 10698, + [10844] = 10844, + [10845] = 10660, + [10846] = 10635, [10847] = 10847, - [10848] = 10495, - [10849] = 10490, - [10850] = 10485, - [10851] = 10555, - [10852] = 10852, + [10848] = 10695, + [10849] = 10695, + [10850] = 10850, + [10851] = 10851, + [10852] = 10784, [10853] = 10853, - [10854] = 10498, - [10855] = 10555, - [10856] = 10482, - [10857] = 10570, - [10858] = 10549, - [10859] = 10550, - [10860] = 10616, - [10861] = 10524, - [10862] = 10558, + [10854] = 10636, + [10855] = 10628, + [10856] = 10856, + [10857] = 10857, + [10858] = 10858, + [10859] = 10705, + [10860] = 10734, + [10861] = 10861, + [10862] = 10664, [10863] = 10863, - [10864] = 10864, - [10865] = 10573, - [10866] = 10513, - [10867] = 10560, - [10868] = 10508, - [10869] = 10869, - [10870] = 10485, - [10871] = 10871, - [10872] = 10834, - [10873] = 10483, - [10874] = 10874, - [10875] = 10555, - [10876] = 10616, - [10877] = 10573, - [10878] = 10513, - [10879] = 10752, - [10880] = 10880, - [10881] = 10485, - [10882] = 10882, - [10883] = 10482, - [10884] = 10589, - [10885] = 10486, - [10886] = 10886, - [10887] = 10887, - [10888] = 10573, - [10889] = 10513, - [10890] = 10485, - [10891] = 10570, - [10892] = 10672, + [10864] = 10645, + [10865] = 10692, + [10866] = 10648, + [10867] = 10867, + [10868] = 10868, + [10869] = 10634, + [10870] = 10654, + [10871] = 10772, + [10872] = 9202, + [10873] = 10774, + [10874] = 10851, + [10875] = 10653, + [10876] = 10680, + [10877] = 10877, + [10878] = 10636, + [10879] = 10879, + [10880] = 10784, + [10881] = 10634, + [10882] = 10635, + [10883] = 10676, + [10884] = 10675, + [10885] = 10675, + [10886] = 10676, + [10887] = 10857, + [10888] = 10858, + [10889] = 10685, + [10890] = 10686, + [10891] = 10771, + [10892] = 10725, [10893] = 10893, - [10894] = 10528, - [10895] = 10895, - [10896] = 10513, - [10897] = 10485, + [10894] = 10894, + [10895] = 10649, + [10896] = 10896, + [10897] = 10897, [10898] = 10898, - [10899] = 10690, - [10900] = 10589, - [10901] = 10901, - [10902] = 10533, - [10903] = 10513, - [10904] = 10485, - [10905] = 10905, - [10906] = 10483, - [10907] = 10618, - [10908] = 10863, - [10909] = 10513, - [10910] = 10485, - [10911] = 10533, - [10912] = 10494, - [10913] = 10549, - [10914] = 10513, - [10915] = 10485, - [10916] = 10550, - [10917] = 8061, - [10918] = 10513, - [10919] = 10485, - [10920] = 10558, - [10921] = 10659, - [10922] = 10513, - [10923] = 10485, - [10924] = 10564, - [10925] = 10538, - [10926] = 10513, - [10927] = 10485, - [10928] = 10562, - [10929] = 10929, - [10930] = 10513, - [10931] = 10485, - [10932] = 10579, - [10933] = 10852, - [10934] = 10513, - [10935] = 10485, - [10936] = 10672, - [10937] = 10513, - [10938] = 10485, - [10939] = 10812, - [10940] = 10940, - [10941] = 10625, - [10942] = 10533, - [10943] = 10616, - [10944] = 10753, - [10945] = 10945, - [10946] = 10946, - [10947] = 10636, + [10899] = 10639, + [10900] = 10743, + [10901] = 8231, + [10902] = 10667, + [10903] = 10903, + [10904] = 10653, + [10905] = 10718, + [10906] = 10639, + [10907] = 10639, + [10908] = 10674, + [10909] = 10658, + [10910] = 10656, + [10911] = 10636, + [10912] = 10912, + [10913] = 10913, + [10914] = 10914, + [10915] = 10661, + [10916] = 10628, + [10917] = 10662, + [10918] = 10661, + [10919] = 10662, + [10920] = 10665, + [10921] = 10668, + [10922] = 10665, + [10923] = 10645, + [10924] = 10668, + [10925] = 10648, + [10926] = 10643, + [10927] = 10685, + [10928] = 10673, + [10929] = 10654, + [10930] = 10664, + [10931] = 10726, + [10932] = 10686, + [10933] = 10666, + [10934] = 10627, + [10935] = 10636, + [10936] = 10936, + [10937] = 10937, + [10938] = 10750, + [10939] = 10832, + [10940] = 10664, + [10941] = 10675, + [10942] = 10691, + [10943] = 10774, + [10944] = 10731, + [10945] = 10714, + [10946] = 10685, + [10947] = 10686, [10948] = 10948, - [10949] = 10898, - [10950] = 10950, - [10951] = 10951, - [10952] = 10492, - [10953] = 10493, - [10954] = 10869, - [10955] = 10955, - [10956] = 10492, - [10957] = 10652, - [10958] = 10958, - [10959] = 10497, - [10960] = 10564, + [10949] = 10725, + [10950] = 10732, + [10951] = 10877, + [10952] = 10952, + [10953] = 10816, + [10954] = 10664, + [10955] = 10664, + [10956] = 10853, + [10957] = 10743, + [10958] = 10666, + [10959] = 10897, + [10960] = 10635, [10961] = 10961, - [10962] = 10538, + [10962] = 10653, [10963] = 10963, - [10964] = 10964, - [10965] = 10669, - [10966] = 10690, - [10967] = 10579, - [10968] = 10968, + [10964] = 10638, + [10965] = 10700, + [10966] = 10636, + [10967] = 10702, + [10968] = 10692, [10969] = 10969, - [10970] = 10702, - [10971] = 10616, - [10972] = 10596, - [10973] = 10533, - [10974] = 10589, - [10975] = 10495, - [10976] = 10976, - [10977] = 10852, - [10978] = 10498, - [10979] = 10834, - [10980] = 10591, + [10970] = 10857, + [10971] = 10971, + [10972] = 10648, + [10973] = 10628, + [10974] = 10789, + [10975] = 10641, + [10976] = 10635, + [10977] = 10649, + [10978] = 10645, + [10979] = 10682, + [10980] = 10648, [10981] = 10981, - [10982] = 9047, - [10983] = 10983, - [10984] = 10834, - [10985] = 10549, - [10986] = 10687, - [10987] = 10676, - [10988] = 10643, - [10989] = 10989, - [10990] = 10990, - [10991] = 10690, - [10992] = 10550, - [10993] = 10964, - [10994] = 10994, - [10995] = 10995, - [10996] = 10951, - [10997] = 10946, - [10998] = 10533, - [10999] = 10496, - [11000] = 10678, - [11001] = 10562, - [11002] = 11002, - [11003] = 10507, - [11004] = 11004, - [11005] = 10852, - [11006] = 10555, - [11007] = 10558, - [11008] = 10564, + [10982] = 10982, + [10983] = 10653, + [10984] = 10654, + [10985] = 10985, + [10986] = 10986, + [10987] = 10635, + [10988] = 10988, + [10989] = 10682, + [10990] = 10688, + [10991] = 10991, + [10992] = 10627, + [10993] = 10653, + [10994] = 10636, + [10995] = 10675, + [10996] = 10664, + [10997] = 10666, + [10998] = 10750, + [10999] = 10999, + [11000] = 10685, + [11001] = 10686, + [11002] = 10636, + [11003] = 10642, + [11004] = 10688, + [11005] = 10999, + [11006] = 10861, + [11007] = 11007, + [11008] = 10743, [11009] = 11009, - [11010] = 10834, - [11011] = 11011, - [11012] = 10570, - [11013] = 10834, - [11014] = 10672, - [11015] = 10555, - [11016] = 10545, - [11017] = 11017, - [11018] = 10555, - [11019] = 10498, - [11020] = 10486, - [11021] = 11021, - [11022] = 10564, - [11023] = 10880, - [11024] = 10581, - [11025] = 11025, - [11026] = 10579, - [11027] = 11027, - [11028] = 10564, - [11029] = 10688, - [11030] = 11030, - [11031] = 11031, - [11032] = 11032, - [11033] = 10498, - [11034] = 10498, - [11035] = 10690, - [11036] = 10816, - [11037] = 10533, + [11010] = 10877, + [11011] = 10635, + [11012] = 10682, + [11013] = 11013, + [11014] = 10707, + [11015] = 10660, + [11016] = 10742, + [11017] = 10688, + [11018] = 10628, + [11019] = 10642, + [11020] = 10642, + [11021] = 10645, + [11022] = 10647, + [11023] = 10648, + [11024] = 10647, + [11025] = 10654, + [11026] = 11026, + [11027] = 8230, + [11028] = 10642, + [11029] = 10675, + [11030] = 10982, + [11031] = 10686, + [11032] = 10716, + [11033] = 10647, + [11034] = 10730, + [11035] = 10651, + [11036] = 10674, + [11037] = 10893, [11038] = 11038, - [11039] = 10545, - [11040] = 10659, - [11041] = 10484, - [11042] = 11042, - [11043] = 10487, - [11044] = 10812, - [11045] = 10749, - [11046] = 10562, - [11047] = 11047, + [11039] = 11039, + [11040] = 10674, + [11041] = 10714, + [11042] = 10628, + [11043] = 10661, + [11044] = 10674, + [11045] = 11045, + [11046] = 10648, + [11047] = 10654, [11048] = 11048, [11049] = 11049, - [11050] = 10546, - [11051] = 11051, - [11052] = 10494, - [11053] = 10502, - [11054] = 11054, - [11055] = 10596, - [11056] = 11056, - [11057] = 10752, - [11058] = 11058, - [11059] = 10749, - [11060] = 11060, - [11061] = 10555, - [11062] = 10834, - [11063] = 10563, - [11064] = 10572, - [11065] = 11065, - [11066] = 10502, + [11050] = 10673, + [11051] = 10686, + [11052] = 10772, + [11053] = 10893, + [11054] = 10664, + [11055] = 10662, + [11056] = 10751, + [11057] = 10635, + [11058] = 10648, + [11059] = 10654, + [11060] = 10766, + [11061] = 10786, + [11062] = 10686, + [11063] = 10660, + [11064] = 11064, + [11065] = 10832, + [11066] = 10695, [11067] = 11067, - [11068] = 10751, - [11069] = 10555, - [11070] = 10508, - [11071] = 10659, - [11072] = 10562, - [11073] = 10752, - [11074] = 10555, - [11075] = 10482, - [11076] = 10969, - [11077] = 10493, - [11078] = 10816, - [11079] = 10562, - [11080] = 10498, - [11081] = 10528, - [11082] = 10555, - [11083] = 11083, - [11084] = 10484, - [11085] = 10672, - [11086] = 10570, - [11087] = 10551, - [11088] = 10570, - [11089] = 10482, - [11090] = 10562, - [11091] = 11091, - [11092] = 10564, - [11093] = 10487, + [11068] = 11068, + [11069] = 10648, + [11070] = 10654, + [11071] = 10686, + [11072] = 10719, + [11073] = 10720, + [11074] = 10640, + [11075] = 11075, + [11076] = 10718, + [11077] = 10654, + [11078] = 10686, + [11079] = 10639, + [11080] = 10719, + [11081] = 10649, + [11082] = 10660, + [11083] = 10732, + [11084] = 10654, + [11085] = 10686, + [11086] = 11086, + [11087] = 10651, + [11088] = 10775, + [11089] = 11089, + [11090] = 10654, + [11091] = 10686, + [11092] = 11092, + [11093] = 11093, [11094] = 11094, - [11095] = 10570, - [11096] = 10659, - [11097] = 10482, - [11098] = 10555, - [11099] = 10581, - [11100] = 10555, - [11101] = 10556, - [11102] = 10753, - [11103] = 10946, - [11104] = 10636, - [11105] = 10948, - [11106] = 10898, - [11107] = 10490, - [11108] = 10951, - [11109] = 10717, - [11110] = 11110, - [11111] = 10497, - [11112] = 11110, - [11113] = 10961, - [11114] = 10863, - [11115] = 11115, - [11116] = 10964, - [11117] = 10669, - [11118] = 11118, - [11119] = 10969, - [11120] = 10702, - [11121] = 10589, - [11122] = 11110, - [11123] = 10643, - [11124] = 11118, - [11125] = 10676, - [11126] = 10652, - [11127] = 11127, - [11128] = 10588, - [11129] = 11017, - [11130] = 10880, - [11131] = 10524, - [11132] = 10749, - [11133] = 10753, - [11134] = 10636, - [11135] = 10898, - [11136] = 10568, - [11137] = 10951, - [11138] = 10500, - [11139] = 10540, - [11140] = 10497, + [11095] = 10654, + [11096] = 10686, + [11097] = 10665, + [11098] = 11098, + [11099] = 10654, + [11100] = 10686, + [11101] = 10668, + [11102] = 11102, + [11103] = 10654, + [11104] = 10686, + [11105] = 10667, + [11106] = 11106, + [11107] = 10654, + [11108] = 10686, + [11109] = 11109, + [11110] = 10726, + [11111] = 10654, + [11112] = 10686, + [11113] = 11113, + [11114] = 11114, + [11115] = 10654, + [11116] = 10686, + [11117] = 10816, + [11118] = 10654, + [11119] = 10686, + [11120] = 10730, + [11121] = 10653, + [11122] = 10661, + [11123] = 10636, + [11124] = 10772, + [11125] = 11098, + [11126] = 10730, + [11127] = 10684, + [11128] = 11094, + [11129] = 11129, + [11130] = 10894, + [11131] = 10695, + [11132] = 11132, + [11133] = 11133, + [11134] = 10775, + [11135] = 11135, + [11136] = 10720, + [11137] = 11137, + [11138] = 10640, + [11139] = 11039, + [11140] = 10730, [11141] = 11141, - [11142] = 10961, - [11143] = 10482, - [11144] = 10964, - [11145] = 10749, - [11146] = 10969, - [11147] = 10702, - [11148] = 10749, - [11149] = 10676, - [11150] = 11150, - [11151] = 10548, - [11152] = 10502, - [11153] = 11017, - [11154] = 10880, - [11155] = 11155, - [11156] = 10753, - [11157] = 10636, - [11158] = 10898, - [11159] = 11159, - [11160] = 10951, - [11161] = 11161, - [11162] = 10752, - [11163] = 10497, - [11164] = 10961, - [11165] = 10625, - [11166] = 10964, - [11167] = 10961, - [11168] = 10969, - [11169] = 10702, - [11170] = 10533, - [11171] = 10676, - [11172] = 10948, - [11173] = 10502, - [11174] = 11017, - [11175] = 10880, - [11176] = 10482, - [11177] = 10753, - [11178] = 10636, - [11179] = 10898, - [11180] = 10625, - [11181] = 10951, - [11182] = 10500, - [11183] = 10482, - [11184] = 10961, - [11185] = 10542, - [11186] = 10964, - [11187] = 10698, - [11188] = 10969, - [11189] = 10702, - [11190] = 10563, - [11191] = 10676, - [11192] = 11192, - [11193] = 10616, - [11194] = 11017, - [11195] = 10880, - [11196] = 10532, - [11197] = 10753, - [11198] = 10636, - [11199] = 10898, - [11200] = 11067, - [11201] = 10951, - [11202] = 10520, - [11203] = 10863, - [11204] = 10961, + [11142] = 10775, + [11143] = 10633, + [11144] = 10653, + [11145] = 10647, + [11146] = 10729, + [11147] = 10991, + [11148] = 11039, + [11149] = 10725, + [11150] = 10745, + [11151] = 11151, + [11152] = 11114, + [11153] = 11153, + [11154] = 10695, + [11155] = 10853, + [11156] = 10893, + [11157] = 11157, + [11158] = 10772, + [11159] = 10731, + [11160] = 10719, + [11161] = 10720, + [11162] = 10640, + [11163] = 11163, + [11164] = 10664, + [11165] = 10775, + [11166] = 11166, + [11167] = 10635, + [11168] = 11168, + [11169] = 11169, + [11170] = 10747, + [11171] = 11171, + [11172] = 10752, + [11173] = 10861, + [11174] = 10789, + [11175] = 10635, + [11176] = 10986, + [11177] = 10857, + [11178] = 10660, + [11179] = 10666, + [11180] = 10789, + [11181] = 10692, + [11182] = 10636, + [11183] = 10660, + [11184] = 11184, + [11185] = 10857, + [11186] = 10653, + [11187] = 11187, + [11188] = 10861, + [11189] = 10986, + [11190] = 10653, + [11191] = 10687, + [11192] = 10999, + [11193] = 10636, + [11194] = 10771, + [11195] = 10667, + [11196] = 10632, + [11197] = 10653, + [11198] = 10635, + [11199] = 10988, + [11200] = 11200, + [11201] = 11201, + [11202] = 10861, + [11203] = 11203, + [11204] = 8211, [11205] = 11205, - [11206] = 10964, - [11207] = 10553, - [11208] = 10969, - [11209] = 10702, - [11210] = 10869, - [11211] = 10676, + [11206] = 10821, + [11207] = 10653, + [11208] = 10636, + [11209] = 11209, + [11210] = 10706, + [11211] = 10709, [11212] = 11212, - [11213] = 10698, - [11214] = 11017, - [11215] = 10880, - [11216] = 11216, - [11217] = 10753, - [11218] = 10636, - [11219] = 10898, - [11220] = 10500, - [11221] = 10951, - [11222] = 10587, - [11223] = 10961, - [11224] = 10482, - [11225] = 10964, - [11226] = 10702, - [11227] = 10752, - [11228] = 10676, - [11229] = 11229, - [11230] = 11017, - [11231] = 10880, - [11232] = 10591, - [11233] = 10753, - [11234] = 10636, - [11235] = 10573, - [11236] = 10951, - [11237] = 11118, - [11238] = 10625, - [11239] = 10964, - [11240] = 10702, - [11241] = 10545, - [11242] = 11017, - [11243] = 10753, - [11244] = 10636, - [11245] = 10951, - [11246] = 10964, - [11247] = 10702, - [11248] = 11017, - [11249] = 10753, - [11250] = 10636, - [11251] = 10951, - [11252] = 10964, - [11253] = 10702, - [11254] = 11017, - [11255] = 10753, - [11256] = 10636, - [11257] = 10702, - [11258] = 11017, - [11259] = 10753, - [11260] = 10636, - [11261] = 10702, - [11262] = 11017, - [11263] = 10753, - [11264] = 10636, - [11265] = 10702, - [11266] = 11017, - [11267] = 10753, - [11268] = 10636, - [11269] = 10702, - [11270] = 11017, - [11271] = 10753, - [11272] = 10636, - [11273] = 10702, - [11274] = 11017, - [11275] = 10753, + [11213] = 10863, + [11214] = 11214, + [11215] = 11215, + [11216] = 10689, + [11217] = 10661, + [11218] = 10662, + [11219] = 10665, + [11220] = 10668, + [11221] = 10730, + [11222] = 10821, + [11223] = 10655, + [11224] = 10821, + [11225] = 2799, + [11226] = 11226, + [11227] = 11227, + [11228] = 11228, + [11229] = 10734, + [11230] = 11230, + [11231] = 10636, + [11232] = 11232, + [11233] = 11233, + [11234] = 11234, + [11235] = 11235, + [11236] = 11236, + [11237] = 11237, + [11238] = 10742, + [11239] = 10695, + [11240] = 11240, + [11241] = 11168, + [11242] = 10747, + [11243] = 10656, + [11244] = 10772, + [11245] = 10667, + [11246] = 10635, + [11247] = 11247, + [11248] = 11248, + [11249] = 11249, + [11250] = 10700, + [11251] = 11251, + [11252] = 11039, + [11253] = 10707, + [11254] = 11254, + [11255] = 10688, + [11256] = 11256, + [11257] = 10752, + [11258] = 11205, + [11259] = 11259, + [11260] = 10752, + [11261] = 11261, + [11262] = 11262, + [11263] = 10719, + [11264] = 11264, + [11265] = 10863, + [11266] = 10720, + [11267] = 10676, + [11268] = 10745, + [11269] = 10640, + [11270] = 11270, + [11271] = 10664, + [11272] = 10775, + [11273] = 10689, + [11274] = 10664, + [11275] = 10627, [11276] = 10636, - [11277] = 10702, - [11278] = 11017, - [11279] = 10753, - [11280] = 10636, - [11281] = 10702, - [11282] = 11017, - [11283] = 10753, - [11284] = 10636, - [11285] = 10702, - [11286] = 11017, - [11287] = 10753, - [11288] = 10636, - [11289] = 10702, - [11290] = 11017, - [11291] = 10636, - [11292] = 10702, - [11293] = 11017, - [11294] = 10636, - [11295] = 10636, - [11296] = 10636, - [11297] = 10625, - [11298] = 10546, - [11299] = 10948, - [11300] = 10839, - [11301] = 11054, - [11302] = 10752, - [11303] = 10678, - [11304] = 10688, - [11305] = 10528, - [11306] = 10698, - [11307] = 10538, - [11308] = 10507, - [11309] = 10698, - [11310] = 11310, - [11311] = 2701, - [11312] = 10532, - [11313] = 10659, - [11314] = 10528, - [11315] = 10538, - [11316] = 10669, - [11317] = 10540, - [11318] = 10544, - [11319] = 10540, - [11320] = 11320, - [11321] = 10528, - [11322] = 10544, - [11323] = 11323, - [11324] = 10588, - [11325] = 10556, - [11326] = 11326, - [11327] = 10618, - [11328] = 10652, - [11329] = 10698, - [11330] = 10812, - [11331] = 10511, - [11332] = 11332, + [11277] = 10642, + [11278] = 10635, + [11279] = 10857, + [11280] = 10698, + [11281] = 10664, + [11282] = 10666, + [11283] = 10861, + [11284] = 11098, + [11285] = 10684, + [11286] = 11094, + [11287] = 11129, + [11288] = 10894, + [11289] = 10707, + [11290] = 11132, + [11291] = 11291, + [11292] = 10961, + [11293] = 11293, + [11294] = 11141, + [11295] = 11295, + [11296] = 10633, + [11297] = 10789, + [11298] = 10961, + [11299] = 10729, + [11300] = 10991, + [11301] = 10789, + [11302] = 11151, + [11303] = 11114, + [11304] = 10893, + [11305] = 10635, + [11306] = 10775, + [11307] = 10688, + [11308] = 11169, + [11309] = 11309, + [11310] = 11132, + [11311] = 10653, + [11312] = 10988, + [11313] = 11205, + [11314] = 10726, + [11315] = 11098, + [11316] = 11094, + [11317] = 10894, + [11318] = 10635, + [11319] = 11132, + [11320] = 10642, + [11321] = 11321, + [11322] = 10675, + [11323] = 11141, + [11324] = 11324, + [11325] = 10633, + [11326] = 10653, + [11327] = 10729, + [11328] = 11328, + [11329] = 11151, + [11330] = 11114, + [11331] = 10674, + [11332] = 11169, [11333] = 11333, - [11334] = 10579, - [11335] = 10568, - [11336] = 11336, - [11337] = 11337, + [11334] = 10695, + [11335] = 10734, + [11336] = 10988, + [11337] = 11205, [11338] = 11338, - [11339] = 10687, - [11340] = 10570, - [11341] = 11341, - [11342] = 10512, - [11343] = 11343, - [11344] = 11141, - [11345] = 10563, - [11346] = 10486, - [11347] = 10625, - [11348] = 10533, - [11349] = 10498, - [11350] = 10869, - [11351] = 11150, - [11352] = 11352, - [11353] = 10672, - [11354] = 11354, - [11355] = 10528, - [11356] = 11356, - [11357] = 11357, - [11358] = 10486, - [11359] = 10968, - [11360] = 11161, - [11361] = 10498, - [11362] = 11362, - [11363] = 11363, - [11364] = 10596, + [11339] = 11098, + [11340] = 11094, + [11341] = 10894, + [11342] = 11342, + [11343] = 11132, + [11344] = 11344, + [11345] = 11345, + [11346] = 11141, + [11347] = 10633, + [11348] = 11348, + [11349] = 10729, + [11350] = 11350, + [11351] = 11151, + [11352] = 11114, + [11353] = 11353, + [11354] = 11169, + [11355] = 10772, + [11356] = 10660, + [11357] = 10988, + [11358] = 11205, + [11359] = 10765, + [11360] = 11098, + [11361] = 11094, + [11362] = 10894, + [11363] = 10680, + [11364] = 11132, [11365] = 11365, [11366] = 11366, - [11367] = 10542, - [11368] = 10533, - [11369] = 11369, - [11370] = 11370, - [11371] = 10507, - [11372] = 11009, - [11373] = 11373, - [11374] = 11141, - [11375] = 10490, - [11376] = 10533, - [11377] = 10492, - [11378] = 10570, + [11367] = 10633, + [11368] = 10664, + [11369] = 10729, + [11370] = 10664, + [11371] = 11151, + [11372] = 11114, + [11373] = 11141, + [11374] = 11169, + [11375] = 11129, + [11376] = 10735, + [11377] = 10988, + [11378] = 11205, [11379] = 11379, - [11380] = 11380, - [11381] = 11381, - [11382] = 11382, - [11383] = 11383, - [11384] = 11384, - [11385] = 10486, - [11386] = 10950, - [11387] = 11387, - [11388] = 8114, - [11389] = 10528, - [11390] = 10564, - [11391] = 11391, - [11392] = 11392, - [11393] = 10562, - [11394] = 11394, + [11380] = 11098, + [11381] = 11094, + [11382] = 10894, + [11383] = 10689, + [11384] = 11132, + [11385] = 10705, + [11386] = 10706, + [11387] = 10633, + [11388] = 10672, + [11389] = 10729, + [11390] = 11390, + [11391] = 11151, + [11392] = 11114, + [11393] = 10634, + [11394] = 11169, [11395] = 11395, - [11396] = 10562, - [11397] = 11397, - [11398] = 10618, - [11399] = 10507, - [11400] = 10555, - [11401] = 10544, - [11402] = 11402, - [11403] = 10579, - [11404] = 10551, - [11405] = 10948, - [11406] = 10839, - [11407] = 11054, - [11408] = 10500, - [11409] = 10968, - [11410] = 10749, - [11411] = 10669, - [11412] = 11412, - [11413] = 10687, - [11414] = 10512, - [11415] = 10493, - [11416] = 11416, - [11417] = 10564, - [11418] = 10560, - [11419] = 10948, - [11420] = 10839, - [11421] = 11054, - [11422] = 10482, - [11423] = 11423, - [11424] = 10625, - [11425] = 10669, - [11426] = 10687, - [11427] = 10512, - [11428] = 10950, - [11429] = 10652, - [11430] = 10555, - [11431] = 10839, - [11432] = 11054, - [11433] = 10524, - [11434] = 2742, - [11435] = 11435, - [11436] = 10687, - [11437] = 10512, - [11438] = 11438, - [11439] = 11439, - [11440] = 10839, - [11441] = 11054, - [11442] = 10749, - [11443] = 11443, - [11444] = 10555, - [11445] = 10687, - [11446] = 10512, - [11447] = 11447, - [11448] = 10839, - [11449] = 11054, - [11450] = 10482, - [11451] = 10533, - [11452] = 10687, - [11453] = 10512, - [11454] = 10570, - [11455] = 10548, - [11456] = 11456, - [11457] = 10687, - [11458] = 10512, - [11459] = 10698, - [11460] = 10483, - [11461] = 10512, - [11462] = 10589, - [11463] = 10512, - [11464] = 11150, - [11465] = 10512, - [11466] = 10504, - [11467] = 10512, - [11468] = 10526, - [11469] = 10512, - [11470] = 10536, - [11471] = 10512, - [11472] = 10570, - [11473] = 10512, - [11474] = 11474, - [11475] = 10512, - [11476] = 10573, - [11477] = 10512, - [11478] = 11478, - [11479] = 10512, - [11480] = 11161, - [11481] = 10512, - [11482] = 10528, - [11483] = 10512, - [11484] = 10538, - [11485] = 10512, - [11486] = 11486, - [11487] = 10494, - [11488] = 11488, - [11489] = 10500, - [11490] = 11229, - [11491] = 10482, - [11492] = 10513, - [11493] = 11493, - [11494] = 10528, + [11396] = 10747, + [11397] = 10988, + [11398] = 11205, + [11399] = 10747, + [11400] = 11098, + [11401] = 11094, + [11402] = 10894, + [11403] = 10661, + [11404] = 11132, + [11405] = 10664, + [11406] = 10633, + [11407] = 11407, + [11408] = 10729, + [11409] = 11114, + [11410] = 10730, + [11411] = 11169, + [11412] = 11039, + [11413] = 10988, + [11414] = 11205, + [11415] = 10700, + [11416] = 11098, + [11417] = 11094, + [11418] = 10635, + [11419] = 11132, + [11420] = 10695, + [11421] = 11421, + [11422] = 10729, + [11423] = 11114, + [11424] = 10661, + [11425] = 10988, + [11426] = 11098, + [11427] = 11094, + [11428] = 11132, + [11429] = 10729, + [11430] = 11114, + [11431] = 10988, + [11432] = 11098, + [11433] = 11094, + [11434] = 11132, + [11435] = 10729, + [11436] = 11114, + [11437] = 10988, + [11438] = 11098, + [11439] = 11094, + [11440] = 11114, + [11441] = 10988, + [11442] = 11098, + [11443] = 11094, + [11444] = 11114, + [11445] = 10988, + [11446] = 11098, + [11447] = 11094, + [11448] = 11114, + [11449] = 10988, + [11450] = 11098, + [11451] = 11094, + [11452] = 11114, + [11453] = 10988, + [11454] = 11098, + [11455] = 11094, + [11456] = 11114, + [11457] = 10988, + [11458] = 11098, + [11459] = 11094, + [11460] = 11114, + [11461] = 10988, + [11462] = 11098, + [11463] = 11094, + [11464] = 11114, + [11465] = 10988, + [11466] = 11098, + [11467] = 11094, + [11468] = 11114, + [11469] = 10988, + [11470] = 11098, + [11471] = 11094, + [11472] = 11114, + [11473] = 10988, + [11474] = 11094, + [11475] = 11114, + [11476] = 10988, + [11477] = 11094, + [11478] = 11094, + [11479] = 11094, + [11480] = 11480, + [11481] = 10725, + [11482] = 11129, + [11483] = 11344, + [11484] = 11321, + [11485] = 11007, + [11486] = 10752, + [11487] = 10719, + [11488] = 10653, + [11489] = 10642, + [11490] = 10635, + [11491] = 10660, + [11492] = 11492, + [11493] = 10706, + [11494] = 10660, [11495] = 11495, - [11496] = 10540, - [11497] = 10816, - [11498] = 11498, - [11499] = 10695, - [11500] = 10484, - [11501] = 10487, - [11502] = 11502, - [11503] = 10505, - [11504] = 10562, - [11505] = 11229, - [11506] = 10695, - [11507] = 10643, - [11508] = 11229, - [11509] = 10695, - [11510] = 10544, - [11511] = 11229, - [11512] = 10695, - [11513] = 10482, - [11514] = 11229, - [11515] = 10695, - [11516] = 10533, - [11517] = 11229, - [11518] = 10695, - [11519] = 11519, - [11520] = 11229, - [11521] = 10695, - [11522] = 10542, - [11523] = 10695, - [11524] = 10695, - [11525] = 10695, - [11526] = 10695, - [11527] = 10695, - [11528] = 10695, - [11529] = 10695, - [11530] = 10695, - [11531] = 10695, - [11532] = 10695, - [11533] = 10695, - [11534] = 10695, - [11535] = 10695, - [11536] = 10690, - [11537] = 11537, - [11538] = 10816, - [11539] = 10562, - [11540] = 10672, - [11541] = 10749, - [11542] = 10551, - [11543] = 11030, - [11544] = 11030, - [11545] = 11030, - [11546] = 11030, - [11547] = 11030, - [11548] = 11030, - [11549] = 11030, - [11550] = 11017, + [11496] = 11496, + [11497] = 11497, + [11498] = 10682, + [11499] = 10991, + [11500] = 10766, + [11501] = 11501, + [11502] = 10775, + [11503] = 11503, + [11504] = 11504, + [11505] = 10662, + [11506] = 10747, + [11507] = 11507, + [11508] = 10643, + [11509] = 10664, + [11510] = 10630, + [11511] = 10682, + [11512] = 10747, + [11513] = 11513, + [11514] = 10641, + [11515] = 11515, + [11516] = 10742, + [11517] = 10689, + [11518] = 10685, + [11519] = 10707, + [11520] = 10718, + [11521] = 10653, + [11522] = 11168, + [11523] = 10642, + [11524] = 10636, + [11525] = 11379, + [11526] = 10645, + [11527] = 10686, + [11528] = 10635, + [11529] = 10642, + [11530] = 10647, + [11531] = 10635, + [11532] = 11169, + [11533] = 10649, + [11534] = 11534, + [11535] = 10682, + [11536] = 10662, + [11537] = 10652, + [11538] = 10735, + [11539] = 11151, + [11540] = 10627, + [11541] = 10702, + [11542] = 10661, + [11543] = 10662, + [11544] = 10636, + [11545] = 10857, + [11546] = 10665, + [11547] = 10861, + [11548] = 10635, + [11549] = 10668, + [11550] = 10700, + [11551] = 11551, + [11552] = 10709, + [11553] = 10752, + [11554] = 10743, + [11555] = 11555, + [11556] = 10851, + [11557] = 11557, + [11558] = 10692, + [11559] = 11559, + [11560] = 10636, + [11561] = 10643, + [11562] = 10707, + [11563] = 10725, + [11564] = 11007, + [11565] = 10682, + [11566] = 10665, + [11567] = 10651, + [11568] = 11568, + [11569] = 10683, + [11570] = 10851, + [11571] = 11571, + [11572] = 10661, + [11573] = 10857, + [11574] = 10635, + [11575] = 10661, + [11576] = 10662, + [11577] = 10665, + [11578] = 10668, + [11579] = 10660, + [11580] = 10726, + [11581] = 10897, + [11582] = 10627, + [11583] = 10651, + [11584] = 10688, + [11585] = 11585, + [11586] = 10636, + [11587] = 11587, + [11588] = 11129, + [11589] = 11344, + [11590] = 11321, + [11591] = 10692, + [11592] = 10857, + [11593] = 10735, + [11594] = 10991, + [11595] = 10742, + [11596] = 11168, + [11597] = 11379, + [11598] = 10688, + [11599] = 10745, + [11600] = 11600, + [11601] = 10861, + [11602] = 11129, + [11603] = 11344, + [11604] = 11321, + [11605] = 10630, + [11606] = 11606, + [11607] = 11137, + [11608] = 10991, + [11609] = 11168, + [11610] = 11379, + [11611] = 10861, + [11612] = 10743, + [11613] = 10665, + [11614] = 11344, + [11615] = 11321, + [11616] = 11137, + [11617] = 10745, + [11618] = 10661, + [11619] = 11168, + [11620] = 11379, + [11621] = 10688, + [11622] = 10743, + [11623] = 11344, + [11624] = 11321, + [11625] = 10666, + [11626] = 10786, + [11627] = 10668, + [11628] = 11168, + [11629] = 11379, + [11630] = 10632, + [11631] = 11344, + [11632] = 11321, + [11633] = 10720, + [11634] = 10668, + [11635] = 11168, + [11636] = 11379, + [11637] = 11637, + [11638] = 10652, + [11639] = 11639, + [11640] = 11168, + [11641] = 11379, + [11642] = 10676, + [11643] = 10660, + [11644] = 11379, + [11645] = 10734, + [11646] = 11379, + [11647] = 10709, + [11648] = 11379, + [11649] = 10661, + [11650] = 11379, + [11651] = 10655, + [11652] = 11379, + [11653] = 10658, + [11654] = 11379, + [11655] = 10653, + [11656] = 11379, + [11657] = 10893, + [11658] = 11379, + [11659] = 10961, + [11660] = 11379, + [11661] = 11661, + [11662] = 11379, + [11663] = 11663, + [11664] = 11379, + [11665] = 10858, + [11666] = 11379, + [11667] = 10747, + [11668] = 11379, + [11669] = 11669, + [11670] = 11670, + [11671] = 10673, + [11672] = 10654, + [11673] = 10896, + [11674] = 10660, + [11675] = 10694, + [11676] = 10789, + [11677] = 10661, + [11678] = 11678, + [11679] = 10664, + [11680] = 11680, + [11681] = 10642, + [11682] = 11682, + [11683] = 10653, + [11684] = 10694, + [11685] = 11685, + [11686] = 10893, + [11687] = 10660, + [11688] = 10896, + [11689] = 11682, + [11690] = 10635, + [11691] = 10896, + [11692] = 11682, + [11693] = 11693, + [11694] = 10896, + [11695] = 11682, + [11696] = 10688, + [11697] = 10896, + [11698] = 11682, + [11699] = 10982, + [11700] = 10896, + [11701] = 11682, + [11702] = 10832, + [11703] = 10896, + [11704] = 11682, + [11705] = 11705, + [11706] = 11682, + [11707] = 11682, + [11708] = 11682, + [11709] = 11682, + [11710] = 11682, + [11711] = 11682, + [11712] = 11682, + [11713] = 11682, + [11714] = 11682, + [11715] = 11682, + [11716] = 11682, + [11717] = 11682, + [11718] = 11682, + [11719] = 10653, + [11720] = 10664, + [11721] = 10642, + [11722] = 11682, + [11723] = 10639, + [11724] = 10647, + [11725] = 10674, + [11726] = 10981, + [11727] = 10981, + [11728] = 10981, + [11729] = 10981, + [11730] = 10981, + [11731] = 10981, + [11732] = 10981, + [11733] = 11733, +}; + +static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { + sym__abstract_declarator, + sym__declarator, + sym__field_declarator, + sym__type_declarator, + sym_expression, + sym_statement, + sym_type_specifier, +}; + +static const TSMapSlice ts_supertype_map_slices[] = { + [sym__abstract_declarator] = {.index = 0, .length = 5}, + [sym__declarator] = {.index = 5, .length = 12}, + [sym__field_declarator] = {.index = 17, .length = 20}, + [sym__type_declarator] = {.index = 37, .length = 19}, + [sym_expression] = {.index = 56, .length = 41}, + [sym_statement] = {.index = 97, .length = 22}, + [sym_type_specifier] = {.index = 119, .length = 16}, +}; + +static const TSSymbol ts_supertype_map_entries[] = { + [0] = + sym_abstract_array_declarator, + sym_abstract_function_declarator, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_reference_declarator, + [5] = + sym_array_declarator, + sym_attributed_declarator, + sym_destructor_name, + sym_function_declarator, + sym_identifier, + sym_operator_name, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_qualified_identifier, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + [17] = + alias_sym_field_identifier, + sym_array_declarator, + sym_array_field_declarator, + sym_array_type_declarator, + sym_attributed_declarator, + sym_attributed_field_declarator, + sym_attributed_type_declarator, + sym_function_declarator, + sym_function_field_declarator, + sym_function_type_declarator, + sym_operator_name, + sym_parenthesized_declarator, + sym_parenthesized_field_declarator, + sym_parenthesized_type_declarator, + sym_pointer_declarator, + sym_reference_declarator, + sym_reference_field_declarator, + sym_reference_type_declarator, + sym_template_method, + sym_variadic_reference_declarator, + [37] = + alias_sym_type_identifier, + sym_array_declarator, + sym_array_field_declarator, + sym_array_type_declarator, + sym_attributed_declarator, + sym_attributed_field_declarator, + sym_attributed_type_declarator, + sym_function_declarator, + sym_function_field_declarator, + sym_function_type_declarator, + sym_parenthesized_declarator, + sym_parenthesized_field_declarator, + sym_parenthesized_type_declarator, + sym_pointer_declarator, + sym_primitive_type, + sym_reference_declarator, + sym_reference_field_declarator, + sym_reference_type_declarator, + sym_variadic_reference_declarator, + [56] = + sym_alignof_expression, + sym_assignment_expression, + sym_binary_expression, + sym_call_expression, + sym_cast_expression, + sym_char_literal, + sym_co_await_expression, + sym_compound_literal_expression, + sym_concatenated_string, + sym_conditional_expression, + sym_delete_expression, + sym_extension_expression, + sym_false, + sym_field_expression, + sym_fold_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_identifier, + sym_lambda_expression, + sym_new_expression, + sym_null, + sym_number_literal, + sym_offsetof_expression, + sym_parameter_pack_expansion, + sym_parenthesized_expression, + sym_pointer_expression, + sym_qualified_identifier, + sym_raw_string_literal, + sym_reflect_expression, + sym_requires_clause, + sym_requires_expression, + sym_sizeof_expression, + sym_splice_expression, + sym_string_literal, + sym_subscript_expression, + sym_template_function, + sym_this, + sym_true, + sym_unary_expression, + sym_update_expression, + sym_user_defined_literal, + [97] = + sym_attributed_statement, + sym_break_statement, + sym_case_statement, + sym_co_return_statement, + sym_co_yield_statement, + sym_compound_statement, + sym_continue_statement, + sym_do_statement, + sym_expansion_statement, + sym_expression_statement, + sym_for_range_loop, + sym_for_statement, + sym_goto_statement, + sym_if_statement, + sym_labeled_statement, + sym_return_statement, + sym_seh_leave_statement, + sym_seh_try_statement, + sym_switch_statement, + sym_throw_statement, + sym_try_statement, + sym_while_statement, + [119] = + alias_sym_type_identifier, + sym_class_specifier, + sym_decltype, + sym_dependent_type, + sym_enum_specifier, + sym_placeholder_type_specifier, + sym_primitive_type, + sym_qualified_field_identifier, + sym_qualified_identifier, + sym_qualified_operator_cast_identifier, + sym_qualified_type_identifier, + sym_sized_type_specifier, + sym_splice_type_specifier, + sym_struct_specifier, + sym_template_type, + sym_union_specifier, }; static const TSCharacterRange sym_identifier_character_set_1[] = { @@ -17051,28 +17428,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(426); END_STATE(); case 21: - if (lookahead == '\n') SKIP(286); + if (lookahead == '\n') SKIP(285); END_STATE(); case 22: - if (lookahead == '\n') SKIP(286); + if (lookahead == '\n') SKIP(285); if (lookahead == '\r') SKIP(21); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 23: - if (lookahead == '\n') SKIP(334); + if (lookahead == '\n') SKIP(333); END_STATE(); case 24: - if (lookahead == '\n') SKIP(334); + if (lookahead == '\n') SKIP(333); if (lookahead == '\r') SKIP(23); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 25: - if (lookahead == '\n') SKIP(266); + if (lookahead == '\n') SKIP(286); END_STATE(); case 26: - if (lookahead == '\n') SKIP(266); + if (lookahead == '\n') SKIP(286); if (lookahead == '\r') SKIP(25); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); @@ -17114,10 +17491,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(426); END_STATE(); case 35: - if (lookahead == '\n') SKIP(267); + if (lookahead == '\n') SKIP(266); END_STATE(); case 36: - if (lookahead == '\n') SKIP(267); + if (lookahead == '\n') SKIP(266); if (lookahead == '\r') SKIP(35); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); @@ -17141,64 +17518,64 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(426); END_STATE(); case 41: - if (lookahead == '\n') SKIP(271); + if (lookahead == '\n') SKIP(298); END_STATE(); case 42: - if (lookahead == '\n') SKIP(271); + if (lookahead == '\n') SKIP(298); if (lookahead == '\r') SKIP(41); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 43: - if (lookahead == '\n') SKIP(243); + if (lookahead == '\n') SKIP(270); END_STATE(); case 44: - if (lookahead == '\n') SKIP(243); + if (lookahead == '\n') SKIP(270); if (lookahead == '\r') SKIP(43); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 45: - if (lookahead == '\n') SKIP(287); + if (lookahead == '\n') SKIP(243); END_STATE(); case 46: - if (lookahead == '\n') SKIP(287); + if (lookahead == '\n') SKIP(243); if (lookahead == '\r') SKIP(45); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 47: - if (lookahead == '\n') SKIP(249); + if (lookahead == '\n') SKIP(287); END_STATE(); case 48: - if (lookahead == '\n') SKIP(249); + if (lookahead == '\n') SKIP(287); if (lookahead == '\r') SKIP(47); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 49: - if (lookahead == '\n') SKIP(315); + if (lookahead == '\n') SKIP(249); END_STATE(); case 50: - if (lookahead == '\n') SKIP(315); + if (lookahead == '\n') SKIP(249); if (lookahead == '\r') SKIP(49); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 51: - if (lookahead == '\n') SKIP(273); + if (lookahead == '\n') SKIP(272); END_STATE(); case 52: - if (lookahead == '\n') SKIP(273); + if (lookahead == '\n') SKIP(272); if (lookahead == '\r') SKIP(51); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 53: - if (lookahead == '\n') SKIP(256); + if (lookahead == '\n') SKIP(315); END_STATE(); case 54: - if (lookahead == '\n') SKIP(256); + if (lookahead == '\n') SKIP(315); if (lookahead == '\r') SKIP(53); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); @@ -17213,55 +17590,55 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(426); END_STATE(); case 57: - if (lookahead == '\n') SKIP(301); + if (lookahead == '\n') SKIP(256); END_STATE(); case 58: - if (lookahead == '\n') SKIP(301); + if (lookahead == '\n') SKIP(256); if (lookahead == '\r') SKIP(57); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 59: - if (lookahead == '\n') SKIP(270); + if (lookahead == '\n') SKIP(269); END_STATE(); case 60: - if (lookahead == '\n') SKIP(270); + if (lookahead == '\n') SKIP(269); if (lookahead == '\r') SKIP(59); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 61: - if (lookahead == '\n') SKIP(292); + if (lookahead == '\n') SKIP(301); END_STATE(); case 62: - if (lookahead == '\n') SKIP(292); + if (lookahead == '\n') SKIP(301); if (lookahead == '\r') SKIP(61); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 63: - if (lookahead == '\n') SKIP(309); + if (lookahead == '\n') SKIP(292); END_STATE(); case 64: - if (lookahead == '\n') SKIP(309); + if (lookahead == '\n') SKIP(292); if (lookahead == '\r') SKIP(63); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 65: - if (lookahead == '\n') SKIP(317); + if (lookahead == '\n') SKIP(316); END_STATE(); case 66: - if (lookahead == '\n') SKIP(317); + if (lookahead == '\n') SKIP(316); if (lookahead == '\r') SKIP(65); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 67: - if (lookahead == '\n') SKIP(305); + if (lookahead == '\n') SKIP(309); END_STATE(); case 68: - if (lookahead == '\n') SKIP(305); + if (lookahead == '\n') SKIP(309); if (lookahead == '\r') SKIP(67); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); @@ -17276,91 +17653,91 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(426); END_STATE(); case 71: - if (lookahead == '\n') SKIP(291); + if (lookahead == '\n') SKIP(305); END_STATE(); case 72: - if (lookahead == '\n') SKIP(291); + if (lookahead == '\n') SKIP(305); if (lookahead == '\r') SKIP(71); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 73: - if (lookahead == '\n') SKIP(303); + if (lookahead == '\n') SKIP(291); END_STATE(); case 74: - if (lookahead == '\n') SKIP(303); + if (lookahead == '\n') SKIP(291); if (lookahead == '\r') SKIP(73); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 75: - if (lookahead == '\n') SKIP(244); + if (lookahead == '\n') SKIP(303); END_STATE(); case 76: - if (lookahead == '\n') SKIP(244); + if (lookahead == '\n') SKIP(303); if (lookahead == '\r') SKIP(75); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 77: - if (lookahead == '\n') SKIP(333); + if (lookahead == '\n') SKIP(244); END_STATE(); case 78: - if (lookahead == '\n') SKIP(333); + if (lookahead == '\n') SKIP(244); if (lookahead == '\r') SKIP(77); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 79: - if (lookahead == '\n') SKIP(314); + if (lookahead == '\n') SKIP(334); END_STATE(); case 80: - if (lookahead == '\n') SKIP(314); + if (lookahead == '\n') SKIP(334); if (lookahead == '\r') SKIP(79); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 81: - if (lookahead == '\n') SKIP(254); + if (lookahead == '\n') SKIP(314); END_STATE(); case 82: - if (lookahead == '\n') SKIP(254); + if (lookahead == '\n') SKIP(314); if (lookahead == '\r') SKIP(81); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 83: - if (lookahead == '\n') SKIP(251); + if (lookahead == '\n') SKIP(254); END_STATE(); case 84: - if (lookahead == '\n') SKIP(251); + if (lookahead == '\n') SKIP(254); if (lookahead == '\r') SKIP(83); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 85: - if (lookahead == '\n') SKIP(335); + if (lookahead == '\n') SKIP(251); END_STATE(); case 86: - if (lookahead == '\n') SKIP(335); + if (lookahead == '\n') SKIP(251); if (lookahead == '\r') SKIP(85); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 87: - if (lookahead == '\n') SKIP(259); + if (lookahead == '\n') SKIP(335); END_STATE(); case 88: - if (lookahead == '\n') SKIP(259); + if (lookahead == '\n') SKIP(335); if (lookahead == '\r') SKIP(87); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 89: - if (lookahead == '\n') SKIP(336); + if (lookahead == '\n') SKIP(259); END_STATE(); case 90: - if (lookahead == '\n') SKIP(336); + if (lookahead == '\n') SKIP(259); if (lookahead == '\r') SKIP(89); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); @@ -17375,28 +17752,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(426); END_STATE(); case 93: - if (lookahead == '\n') SKIP(276); + if (lookahead == '\n') SKIP(336); END_STATE(); case 94: - if (lookahead == '\n') SKIP(276); + if (lookahead == '\n') SKIP(336); if (lookahead == '\r') SKIP(93); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 95: - if (lookahead == '\n') SKIP(268); + if (lookahead == '\n') SKIP(267); END_STATE(); case 96: - if (lookahead == '\n') SKIP(268); + if (lookahead == '\n') SKIP(267); if (lookahead == '\r') SKIP(95); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 97: - if (lookahead == '\n') SKIP(339); + if (lookahead == '\n') SKIP(275); END_STATE(); case 98: - if (lookahead == '\n') SKIP(339); + if (lookahead == '\n') SKIP(275); if (lookahead == '\r') SKIP(97); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); @@ -17411,19 +17788,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(426); END_STATE(); case 101: - if (lookahead == '\n') SKIP(288); + if (lookahead == '\n') SKIP(339); END_STATE(); case 102: - if (lookahead == '\n') SKIP(288); + if (lookahead == '\n') SKIP(339); if (lookahead == '\r') SKIP(101); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 103: - if (lookahead == '\n') SKIP(299); + if (lookahead == '\n') SKIP(288); END_STATE(); case 104: - if (lookahead == '\n') SKIP(299); + if (lookahead == '\n') SKIP(288); if (lookahead == '\r') SKIP(103); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); @@ -17447,37 +17824,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(426); END_STATE(); case 109: - if (lookahead == '\n') SKIP(340); + if (lookahead == '\n') SKIP(299); END_STATE(); case 110: - if (lookahead == '\n') SKIP(340); + if (lookahead == '\n') SKIP(299); if (lookahead == '\r') SKIP(109); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 111: - if (lookahead == '\n') SKIP(338); + if (lookahead == '\n') SKIP(340); END_STATE(); case 112: - if (lookahead == '\n') SKIP(338); + if (lookahead == '\n') SKIP(340); if (lookahead == '\r') SKIP(111); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 113: - if (lookahead == '\n') SKIP(234); + if (lookahead == '\n') SKIP(338); END_STATE(); case 114: - if (lookahead == '\n') SKIP(234); + if (lookahead == '\n') SKIP(338); if (lookahead == '\r') SKIP(113); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 115: - if (lookahead == '\n') SKIP(304); + if (lookahead == '\n') SKIP(234); END_STATE(); case 116: - if (lookahead == '\n') SKIP(304); + if (lookahead == '\n') SKIP(234); if (lookahead == '\r') SKIP(115); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); @@ -17492,85 +17869,94 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(426); END_STATE(); case 119: - if (lookahead == '\n') SKIP(307); + if (lookahead == '\n') SKIP(304); END_STATE(); case 120: - if (lookahead == '\n') SKIP(307); + if (lookahead == '\n') SKIP(304); if (lookahead == '\r') SKIP(119); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 121: - if (lookahead == '\n') SKIP(341); + if (lookahead == '\n') SKIP(307); END_STATE(); case 122: - if (lookahead == '\n') SKIP(341); + if (lookahead == '\n') SKIP(307); if (lookahead == '\r') SKIP(121); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 123: - if (lookahead == '\n') SKIP(337); + if (lookahead == '\n') SKIP(341); END_STATE(); case 124: - if (lookahead == '\n') SKIP(337); + if (lookahead == '\n') SKIP(341); if (lookahead == '\r') SKIP(123); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 125: - if (lookahead == '\n') SKIP(313); + if (lookahead == '\n') SKIP(337); END_STATE(); case 126: - if (lookahead == '\n') SKIP(313); + if (lookahead == '\n') SKIP(337); if (lookahead == '\r') SKIP(125); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 127: - if (lookahead == '\n') SKIP(342); + if (lookahead == '\n') SKIP(313); END_STATE(); case 128: - if (lookahead == '\n') SKIP(342); + if (lookahead == '\n') SKIP(313); if (lookahead == '\r') SKIP(127); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 129: - if (lookahead == '\n') SKIP(348); + if (lookahead == '\n') SKIP(342); END_STATE(); case 130: - if (lookahead == '\n') SKIP(348); + if (lookahead == '\n') SKIP(342); if (lookahead == '\r') SKIP(129); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 131: - if (lookahead == '\n') SKIP(343); + if (lookahead == '\n') SKIP(348); END_STATE(); case 132: - if (lookahead == '\n') SKIP(343); + if (lookahead == '\n') SKIP(348); if (lookahead == '\r') SKIP(131); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 133: - if (lookahead == '\n') SKIP(242); + if (lookahead == '\n') SKIP(343); END_STATE(); case 134: - if (lookahead == '\n') SKIP(242); + if (lookahead == '\n') SKIP(343); if (lookahead == '\r') SKIP(133); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 135: - if (lookahead == '\n') SKIP(137); + if (lookahead == '\n') SKIP(242); END_STATE(); case 136: - if (lookahead == '\n') SKIP(137); + if (lookahead == '\n') SKIP(242); if (lookahead == '\r') SKIP(135); + if (lookahead == 'U') ADVANCE(434); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 137: + if (lookahead == '\n') SKIP(139); + END_STATE(); + case 138: + if (lookahead == '\n') SKIP(139); + if (lookahead == '\r') SKIP(137); + END_STATE(); + case 139: ADVANCE_MAP( '\n', 448, '!', 372, @@ -17585,49 +17971,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 373, '>', 546, ); - if (lookahead == '\\') SKIP(136); + if (lookahead == '\\') SKIP(138); if (lookahead == '^') ADVANCE(536); if (lookahead == '|') ADVANCE(535); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(137); + lookahead == ' ') SKIP(139); END_STATE(); - case 138: + case 140: if (lookahead == '\n') SKIP(347); END_STATE(); - case 139: + case 141: if (lookahead == '\n') SKIP(347); - if (lookahead == '\r') SKIP(138); + if (lookahead == '\r') SKIP(140); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); - case 140: + case 142: if (lookahead == '\n') SKIP(329); END_STATE(); - case 141: + case 143: if (lookahead == '\n') SKIP(329); - if (lookahead == '\r') SKIP(140); + if (lookahead == '\r') SKIP(142); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); - case 142: + case 144: if (lookahead == '\n') SKIP(330); END_STATE(); - case 143: + case 145: if (lookahead == '\n') SKIP(330); - if (lookahead == '\r') SKIP(142); + if (lookahead == '\r') SKIP(144); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); - case 144: + case 146: if (lookahead == '\n') SKIP(331); if (lookahead == '"') ADVANCE(632); if (lookahead == '/') ADVANCE(633); - if (lookahead == '\\') ADVANCE(145); + if (lookahead == '\\') ADVANCE(147); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(636); if (lookahead != 0) ADVANCE(637); END_STATE(); - case 145: + case 147: if (lookahead == '\n') ADVANCE(639); if (lookahead == '\r') ADVANCE(638); if (lookahead == 'U') ADVANCE(435); @@ -17636,7 +18022,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9')) ADVANCE(641); if (lookahead != 0) ADVANCE(638); END_STATE(); - case 146: + case 148: if (lookahead == '\n') SKIP(344); if (lookahead == '\'') ADVANCE(623); if (lookahead == '/') ADVANCE(626); @@ -17645,9 +18031,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(627); if (lookahead != 0) ADVANCE(624); END_STATE(); - case 147: + case 149: if (lookahead == '\n') ADVANCE(441); - if (lookahead == '\r') ADVANCE(151); + if (lookahead == '\r') ADVANCE(153); if (lookahead == '(') ADVANCE(443); if (lookahead == '/') ADVANCE(469); if (lookahead == '\\') ADVANCE(464); @@ -17655,33 +18041,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(361); if (lookahead != 0) ADVANCE(471); END_STATE(); - case 148: + case 150: if (lookahead == '\n') ADVANCE(441); - if (lookahead == '\r') ADVANCE(151); + if (lookahead == '\r') ADVANCE(153); if (lookahead == '/') ADVANCE(469); if (lookahead == '\\') ADVANCE(464); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(361); if (lookahead != 0) ADVANCE(471); END_STATE(); - case 149: + case 151: if (lookahead == '\n') ADVANCE(441); - if (lookahead == '\r') ADVANCE(150); + if (lookahead == '\r') ADVANCE(152); if (lookahead == '(') ADVANCE(504); if (lookahead == '/') ADVANCE(352); - if (lookahead == '\\') SKIP(153); + if (lookahead == '\\') SKIP(155); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(349); END_STATE(); - case 150: + case 152: if (lookahead == '\n') ADVANCE(441); if (lookahead == '(') ADVANCE(504); if (lookahead == '/') ADVANCE(352); - if (lookahead == '\\') SKIP(153); + if (lookahead == '\\') SKIP(155); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); END_STATE(); - case 151: + case 153: if (lookahead == '\n') ADVANCE(441); if (lookahead == '/') ADVANCE(469); if (lookahead == '\\') ADVANCE(464); @@ -17689,117 +18075,108 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(361); if (lookahead != 0) ADVANCE(471); END_STATE(); - case 152: - if (lookahead == '\n') SKIP(349); - END_STATE(); - case 153: - if (lookahead == '\n') SKIP(349); - if (lookahead == '\r') SKIP(152); - END_STATE(); case 154: - if (lookahead == '\n') SKIP(226); + if (lookahead == '\n') SKIP(349); END_STATE(); case 155: - if (lookahead == '\n') SKIP(226); + if (lookahead == '\n') SKIP(349); if (lookahead == '\r') SKIP(154); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); END_STATE(); case 156: - if (lookahead == '\n') SKIP(231); + if (lookahead == '\n') SKIP(226); END_STATE(); case 157: - if (lookahead == '\n') SKIP(231); + if (lookahead == '\n') SKIP(226); if (lookahead == '\r') SKIP(156); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 158: - if (lookahead == '\n') SKIP(232); + if (lookahead == '\n') SKIP(231); END_STATE(); case 159: - if (lookahead == '\n') SKIP(232); + if (lookahead == '\n') SKIP(231); if (lookahead == '\r') SKIP(158); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 160: - if (lookahead == '\n') SKIP(298); + if (lookahead == '\n') SKIP(232); END_STATE(); case 161: - if (lookahead == '\n') SKIP(298); + if (lookahead == '\n') SKIP(232); if (lookahead == '\r') SKIP(160); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 162: - if (lookahead == '\n') SKIP(272); + if (lookahead == '\n') SKIP(290); END_STATE(); case 163: - if (lookahead == '\n') SKIP(272); + if (lookahead == '\n') SKIP(290); if (lookahead == '\r') SKIP(162); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 164: - if (lookahead == '\n') SKIP(250); + if (lookahead == '\n') SKIP(271); END_STATE(); case 165: - if (lookahead == '\n') SKIP(250); + if (lookahead == '\n') SKIP(271); if (lookahead == '\r') SKIP(164); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 166: - if (lookahead == '\n') SKIP(282); + if (lookahead == '\n') SKIP(250); END_STATE(); case 167: - if (lookahead == '\n') SKIP(282); + if (lookahead == '\n') SKIP(250); if (lookahead == '\r') SKIP(166); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 168: - if (lookahead == '\n') SKIP(302); + if (lookahead == '\n') SKIP(281); END_STATE(); case 169: - if (lookahead == '\n') SKIP(302); + if (lookahead == '\n') SKIP(281); if (lookahead == '\r') SKIP(168); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 170: - if (lookahead == '\n') SKIP(325); + if (lookahead == '\n') SKIP(302); END_STATE(); case 171: - if (lookahead == '\n') SKIP(325); + if (lookahead == '\n') SKIP(302); if (lookahead == '\r') SKIP(170); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 172: - if (lookahead == '\n') SKIP(321); + if (lookahead == '\n') SKIP(325); END_STATE(); case 173: - if (lookahead == '\n') SKIP(321); + if (lookahead == '\n') SKIP(325); if (lookahead == '\r') SKIP(172); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 174: - if (lookahead == '\n') SKIP(312); + if (lookahead == '\n') SKIP(311); END_STATE(); case 175: - if (lookahead == '\n') SKIP(312); + if (lookahead == '\n') SKIP(311); if (lookahead == '\r') SKIP(174); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 176: - if (lookahead == '\n') SKIP(316); + if (lookahead == '\n') SKIP(321); END_STATE(); case 177: - if (lookahead == '\n') SKIP(316); + if (lookahead == '\n') SKIP(321); if (lookahead == '\r') SKIP(176); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); @@ -17832,19 +18209,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(426); END_STATE(); case 184: - if (lookahead == '\n') SKIP(275); + if (lookahead == '\n') SKIP(276); END_STATE(); case 185: - if (lookahead == '\n') SKIP(275); + if (lookahead == '\n') SKIP(276); if (lookahead == '\r') SKIP(184); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 186: - if (lookahead == '\n') SKIP(277); + if (lookahead == '\n') SKIP(274); END_STATE(); case 187: - if (lookahead == '\n') SKIP(277); + if (lookahead == '\n') SKIP(274); if (lookahead == '\r') SKIP(186); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); @@ -17859,10 +18236,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(426); END_STATE(); case 190: - if (lookahead == '\n') SKIP(319); + if (lookahead == '\n') SKIP(317); END_STATE(); case 191: - if (lookahead == '\n') SKIP(319); + if (lookahead == '\n') SKIP(317); if (lookahead == '\r') SKIP(190); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); @@ -17895,73 +18272,73 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(426); END_STATE(); case 198: - if (lookahead == '\n') SKIP(290); + if (lookahead == '\n') SKIP(279); END_STATE(); case 199: - if (lookahead == '\n') SKIP(290); + if (lookahead == '\n') SKIP(279); if (lookahead == '\r') SKIP(198); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 200: - if (lookahead == '\n') SKIP(269); + if (lookahead == '\n') SKIP(319); END_STATE(); case 201: - if (lookahead == '\n') SKIP(269); + if (lookahead == '\n') SKIP(319); if (lookahead == '\r') SKIP(200); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 202: - if (lookahead == '\n') SKIP(320); + if (lookahead == '\n') SKIP(312); END_STATE(); case 203: - if (lookahead == '\n') SKIP(320); + if (lookahead == '\n') SKIP(312); if (lookahead == '\r') SKIP(202); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 204: - if (lookahead == '\n') SKIP(311); + if (lookahead == '\n') SKIP(284); END_STATE(); case 205: - if (lookahead == '\n') SKIP(311); + if (lookahead == '\n') SKIP(284); if (lookahead == '\r') SKIP(204); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 206: - if (lookahead == '\n') SKIP(285); + if (lookahead == '\n') SKIP(295); END_STATE(); case 207: - if (lookahead == '\n') SKIP(285); + if (lookahead == '\n') SKIP(295); if (lookahead == '\r') SKIP(206); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 208: - if (lookahead == '\n') SKIP(295); + if (lookahead == '\n') SKIP(323); END_STATE(); case 209: - if (lookahead == '\n') SKIP(295); + if (lookahead == '\n') SKIP(323); if (lookahead == '\r') SKIP(208); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 210: - if (lookahead == '\n') SKIP(323); + if (lookahead == '\n') SKIP(268); END_STATE(); case 211: - if (lookahead == '\n') SKIP(323); + if (lookahead == '\n') SKIP(268); if (lookahead == '\r') SKIP(210); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 212: - if (lookahead == '\n') SKIP(280); + if (lookahead == '\n') SKIP(320); END_STATE(); case 213: - if (lookahead == '\n') SKIP(280); + if (lookahead == '\n') SKIP(320); if (lookahead == '\r') SKIP(212); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); @@ -17976,37 +18353,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(426); END_STATE(); case 216: - if (lookahead == '\n') SKIP(281); + if (lookahead == '\n') SKIP(280); END_STATE(); case 217: - if (lookahead == '\n') SKIP(281); + if (lookahead == '\n') SKIP(280); if (lookahead == '\r') SKIP(216); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 218: - if (lookahead == '\n') SKIP(278); + if (lookahead == '\n') SKIP(277); END_STATE(); case 219: - if (lookahead == '\n') SKIP(278); + if (lookahead == '\n') SKIP(277); if (lookahead == '\r') SKIP(218); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 220: - if (lookahead == '\n') SKIP(279); + if (lookahead == '\n') SKIP(278); END_STATE(); case 221: - if (lookahead == '\n') SKIP(279); + if (lookahead == '\n') SKIP(278); if (lookahead == '\r') SKIP(220); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 222: - if (lookahead == '\n') SKIP(283); + if (lookahead == '\n') SKIP(282); END_STATE(); case 223: - if (lookahead == '\n') SKIP(283); + if (lookahead == '\n') SKIP(282); if (lookahead == '\r') SKIP(222); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); @@ -18099,7 +18476,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'T', 679, 'U', 653, '[', 571, - '\\', 155, + '\\', 157, ']', 383, '^', 538, 'b', 721, @@ -18154,7 +18531,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'U', 653, '[', 571, '\\', 197, - ']', 383, + ']', 577, '^', 539, 'b', 721, 'c', 700, @@ -18353,7 +18730,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'T', 679, 'U', 653, '[', 571, - '\\', 157, + '\\', 159, '^', 539, 'b', 721, 'c', 700, @@ -18402,8 +18779,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'T', 679, 'U', 653, '[', 571, - '\\', 159, - ']', 577, + '\\', 161, + ']', 383, '^', 539, 'b', 721, 'c', 700, @@ -18479,7 +18856,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 579, '>', 547, '[', 382, - '\\', 114, + '\\', 116, '^', 537, '|', 534, '~', 507, @@ -18506,7 +18883,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ':', 368, ';', 560, '<', 371, - '>', 374, + '>', 545, 'F', 675, 'L', 649, 'R', 652, @@ -18653,7 +19030,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '0', 605, ':', 368, ';', 560, - '>', 545, + '>', 374, 'F', 675, 'L', 649, 'R', 652, @@ -18830,7 +19207,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '0', 605, 'L', 667, 'U', 668, - '\\', 134, + '\\', 136, 'u', 669, '~', 507, ); @@ -18864,7 +19241,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'R', 652, 'U', 654, '[', 570, - '\\', 44, + '\\', 46, ']', 383, '^', 537, 'u', 657, @@ -18901,7 +19278,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'R', 652, 'U', 654, '[', 570, - '\\', 76, + '\\', 78, ']', 383, '^', 537, 'u', 657, @@ -18937,7 +19314,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'R', 763, 'U', 764, '[', 570, - '\\', 76, + '\\', 78, ']', 383, '^', 537, 'u', 765, @@ -19081,7 +19458,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'R', 652, 'U', 654, '[', 574, - '\\', 48, + '\\', 50, '^', 537, 'u', 657, '{', 568, @@ -19114,7 +19491,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'R', 652, 'U', 654, '[', 570, - '\\', 165, + '\\', 167, '^', 537, 'u', 657, '{', 568, @@ -19146,7 +19523,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'R', 652, 'U', 654, '[', 570, - '\\', 84, + '\\', 86, '^', 537, 'u', 657, '|', 534, @@ -19177,7 +19554,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'R', 763, 'U', 764, '[', 570, - '\\', 84, + '\\', 86, '^', 537, 'u', 765, '|', 534, @@ -19248,7 +19625,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'R', 652, 'U', 654, '[', 574, - '\\', 82, + '\\', 84, '^', 537, 'u', 657, '{', 568, @@ -19313,7 +19690,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'R', 652, 'U', 654, '[', 570, - '\\', 54, + '\\', 58, ']', 577, '^', 537, 'u', 657, @@ -19408,7 +19785,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'R', 652, 'U', 654, '[', 570, - '\\', 88, + '\\', 90, ']', 577, '^', 537, 'u', 657, @@ -19439,7 +19816,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'R', 763, 'U', 764, '[', 570, - '\\', 88, + '\\', 90, ']', 577, '^', 537, 'u', 765, @@ -19612,46 +19989,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); case 266: - ADVANCE_MAP( - '!', 372, - '#', 390, - '%', 529, - '&', 541, - '(', 504, - ')', 446, - '*', 525, - '+', 518, - ',', 445, - '-', 508, - '/', 527, - ':', 368, - ';', 560, - '<', 555, - '=', 373, - '>', 546, - '[', 572, - '\\', 26, - '^', 536, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 713, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 'u', 706, - 'v', 718, - '|', 535, - '}', 569, - '~', 507, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(266); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); - END_STATE(); - case 267: ADVANCE_MAP( '!', 372, '#', 394, @@ -19681,10 +20018,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(267); + lookahead == ' ') SKIP(266); if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 268: + case 267: ADVANCE_MAP( '!', 372, '#', 394, @@ -19713,10 +20050,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(268); + lookahead == ' ') SKIP(267); if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 269: + case 268: ADVANCE_MAP( '!', 372, '#', 394, @@ -19737,7 +20074,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 570, - '\\', 201, + '\\', 211, ']', 383, '^', 537, '{', 568, @@ -19745,10 +20082,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(269); + lookahead == ' ') SKIP(268); if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 270: + case 269: ADVANCE_MAP( '!', 372, '#', 394, @@ -19775,10 +20112,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(269); if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 271: + case 270: ADVANCE_MAP( '!', 372, '#', 394, @@ -19799,7 +20136,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 574, - '\\', 42, + '\\', 44, ']', 577, '^', 537, '{', 568, @@ -19807,10 +20144,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(271); + lookahead == ' ') SKIP(270); if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 272: + case 271: ADVANCE_MAP( '!', 372, '#', 394, @@ -19831,7 +20168,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 570, - '\\', 163, + '\\', 165, ']', 383, '^', 537, '{', 568, @@ -19839,10 +20176,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(271); if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 273: + case 272: ADVANCE_MAP( '!', 372, '#', 394, @@ -19882,10 +20219,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(273); + lookahead == ' ') SKIP(272); if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 274: + case 273: ADVANCE_MAP( '!', 372, '#', 394, @@ -19906,19 +20243,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 570, - '\\', 185, + '\\', 187, ']', 383, '^', 537, '|', 534, '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(275); + lookahead == ' ') SKIP(274); if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 275: + case 274: ADVANCE_MAP( '!', 372, '#', 394, @@ -19939,17 +20276,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 570, - '\\', 185, + '\\', 187, ']', 383, '^', 537, '|', 534, '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(275); + lookahead == ' ') SKIP(274); if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 276: + case 275: ADVANCE_MAP( '!', 372, '#', 394, @@ -19970,17 +20307,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 576, - '\\', 94, + '\\', 98, ']', 383, '^', 537, '|', 534, '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(276); + lookahead == ' ') SKIP(275); if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 277: + case 276: ADVANCE_MAP( '!', 372, '#', 394, @@ -20001,7 +20338,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 546, '?', 582, '[', 571, - '\\', 187, + '\\', 185, ']', 577, '^', 536, '|', 535, @@ -20009,10 +20346,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(277); + lookahead == ' ') SKIP(276); if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 278: + case 277: ADVANCE_MAP( '!', 372, '#', 394, @@ -20041,10 +20378,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(278); + lookahead == ' ') SKIP(277); if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 279: + case 278: ADVANCE_MAP( '!', 372, '#', 394, @@ -20073,10 +20410,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(279); + lookahead == ' ') SKIP(278); if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 280: + case 279: ADVANCE_MAP( '!', 372, '#', 394, @@ -20097,7 +20434,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 546, '?', 582, '[', 574, - '\\', 213, + '\\', 199, ']', 383, '^', 536, '{', 568, @@ -20105,10 +20442,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(280); + lookahead == ' ') SKIP(279); if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 281: + case 280: ADVANCE_MAP( '!', 372, '#', 394, @@ -20137,10 +20474,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(281); + lookahead == ' ') SKIP(280); if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 282: + case 281: ADVANCE_MAP( '!', 372, '#', 394, @@ -20161,7 +20498,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 546, '?', 582, '[', 570, - '\\', 167, + '\\', 169, ']', 383, '^', 536, 'b', 721, @@ -20180,10 +20517,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(282); + lookahead == ' ') SKIP(281); if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 283: + case 282: ADVANCE_MAP( '!', 372, '#', 394, @@ -20212,10 +20549,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(283); + lookahead == ' ') SKIP(282); if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 284: + case 283: ADVANCE_MAP( '!', 372, '#', 394, @@ -20236,19 +20573,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 546, '?', 582, '[', 570, - '\\', 207, + '\\', 205, ']', 383, '^', 536, '|', 535, '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(285); + lookahead == ' ') SKIP(284); if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 285: + case 284: ADVANCE_MAP( '!', 372, '#', 394, @@ -20269,17 +20606,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 546, '?', 582, '[', 570, - '\\', 207, + '\\', 205, ']', 383, '^', 536, '|', 535, '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(285); + lookahead == ' ') SKIP(284); if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); END_STATE(); - case 286: + case 285: ADVANCE_MAP( '!', 372, '#', 386, @@ -20318,6 +20655,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '|', 535, '~', 507, ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(285); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + END_STATE(); + case 286: + ADVANCE_MAP( + '!', 372, + '#', 388, + '%', 529, + '&', 541, + '(', 504, + ')', 446, + '*', 525, + '+', 518, + ',', 445, + '-', 508, + '/', 527, + ':', 368, + ';', 560, + '<', 555, + '=', 373, + '>', 546, + '[', 572, + '\\', 26, + '^', 536, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 713, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 'u', 706, + 'v', 718, + '|', 535, + '~', 507, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(286); if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); @@ -20341,7 +20717,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 572, - '\\', 46, + '\\', 48, '^', 537, '{', 568, '|', 534, @@ -20370,7 +20746,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 571, - '\\', 102, + '\\', 104, '^', 537, '|', 534, '~', 507, @@ -20428,7 +20804,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 570, - '\\', 199, + '\\', 163, '^', 537, '{', 568, '|', 534, @@ -20456,7 +20832,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 570, - '\\', 72, + '\\', 74, '^', 537, '{', 568, '|', 534, @@ -20483,7 +20859,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 570, - '\\', 62, + '\\', 64, '^', 537, 'b', 721, 'c', 700, @@ -20576,7 +20952,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 576, - '\\', 209, + '\\', 207, '^', 537, '|', 534, ); @@ -20660,7 +21036,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 748, '?', 582, '[', 574, - '\\', 161, + '\\', 42, + ']', 577, '^', 537, '{', 568, '|', 534, @@ -20687,7 +21064,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 748, '?', 582, '[', 571, - '\\', 104, + '\\', 110, '^', 537, '|', 534, '~', 507, @@ -20742,7 +21119,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 748, '?', 582, '[', 570, - '\\', 58, + '\\', 62, '^', 537, '{', 568, '|', 534, @@ -20769,7 +21146,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 748, '?', 582, '[', 570, - '\\', 169, + '\\', 171, '^', 537, '{', 568, '|', 534, @@ -20796,7 +21173,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 570, - '\\', 74, + '\\', 76, ']', 577, '^', 537, '{', 568, @@ -20824,7 +21201,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 575, - '\\', 116, + '\\', 120, '^', 537, '|', 534, '}', 569, @@ -20850,7 +21227,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 748, '?', 582, '[', 570, - '\\', 68, + '\\', 72, '^', 537, 'b', 721, 'c', 700, @@ -20887,7 +21264,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 748, '?', 582, '[', 570, - '\\', 120, + '\\', 122, '^', 537, '|', 534, ); @@ -20915,7 +21292,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 748, '?', 582, '[', 570, - '\\', 120, + '\\', 122, '^', 537, '|', 534, ); @@ -20965,7 +21342,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 570, - '\\', 64, + '\\', 68, ']', 577, '^', 537, 'b', 721, @@ -21003,7 +21380,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 570, - '\\', 205, + '\\', 175, ']', 577, '^', 537, '|', 534, @@ -21031,7 +21408,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 570, - '\\', 205, + '\\', 175, ']', 577, '^', 537, '|', 534, @@ -21057,7 +21434,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 576, - '\\', 175, + '\\', 203, ']', 577, '^', 537, '|', 534, @@ -21080,7 +21457,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '<', 553, '=', 579, '>', 547, - '\\', 126, + '\\', 128, '^', 537, '|', 534, ); @@ -21108,7 +21485,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 546, '?', 582, '[', 570, - '\\', 80, + '\\', 82, ']', 383, '^', 536, 'b', 721, @@ -21150,7 +21527,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 546, '?', 582, '[', 572, - '\\', 50, + '\\', 54, ']', 577, '^', 536, '{', 568, @@ -21168,22 +21545,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '%', 529, '&', 541, '(', 504, - ')', 446, '*', 525, '+', 519, ',', 445, '-', 515, '.', 596, '/', 527, - ':', 562, + ':', 368, + ';', 560, '<', 554, '=', 373, '>', 748, '?', 582, - '[', 570, - '\\', 177, + '[', 574, + '\\', 66, '^', 536, - '{', 568, '|', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || @@ -21203,15 +21579,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '.', 596, '/', 527, ':', 368, - ';', 560, '<', 554, '=', 373, '>', 748, '?', 582, - '[', 574, - '\\', 66, + '[', 571, + '\\', 191, '^', 536, '|', 535, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(317); @@ -21232,10 +21608,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ':', 368, '<', 554, '=', 373, - '>', 748, + '>', 546, '?', 582, '[', 571, '\\', 189, + ']', 383, '^', 536, '|', 535, '~', 507, @@ -21256,17 +21633,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 515, '.', 596, '/', 527, - ':', 368, + ':', 562, '<', 554, '=', 373, - '>', 546, + '>', 748, '?', 582, - '[', 571, - '\\', 191, - ']', 383, + '[', 570, + '\\', 201, '^', 536, + '{', 568, '|', 535, - '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(319); @@ -21290,7 +21666,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 748, '?', 582, '[', 570, - '\\', 203, + '\\', 213, '^', 536, '{', 568, '|', 535, @@ -21316,7 +21692,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 748, '?', 582, '[', 570, - '\\', 173, + '\\', 177, '^', 536, 'b', 721, 'c', 700, @@ -21353,7 +21729,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 748, '?', 582, '[', 570, - '\\', 211, + '\\', 209, '^', 536, '|', 535, ); @@ -21381,7 +21757,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 748, '?', 582, '[', 570, - '\\', 211, + '\\', 209, '^', 536, '|', 535, ); @@ -21432,7 +21808,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 546, '?', 582, '[', 570, - '\\', 171, + '\\', 173, ']', 577, '^', 536, 'b', 721, @@ -21546,7 +21922,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'L', 650, 'R', 652, 'U', 654, - '\\', 141, + '\\', 143, 'u', 657, ); if (('\t' <= lookahead && lookahead <= '\r') || @@ -21561,7 +21937,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '<', 378, 'L', 651, 'U', 655, - '\\', 143, + '\\', 145, 'u', 659, ); if (('\t' <= lookahead && lookahead <= '\r') || @@ -21571,7 +21947,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 331: if (lookahead == '"') ADVANCE(632); if (lookahead == '/') ADVANCE(352); - if (lookahead == '\\') ADVANCE(145); + if (lookahead == '\\') ADVANCE(147); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(331); END_STATE(); @@ -21580,12 +21956,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 333: ADVANCE_MAP( - '#', 394, + '#', 390, '&', 541, '(', 504, ')', 446, '*', 525, + '+', 518, ',', 445, + '-', 508, '.', 357, '/', 352, ':', 562, @@ -21593,9 +21971,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '<', 551, '=', 578, '>', 748, - '[', 571, - '\\', 78, + '[', 572, + '\\', 24, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 713, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 'u', 706, + 'v', 718, '{', 568, + '|', 408, + '}', 569, '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || @@ -21604,14 +21995,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 334: ADVANCE_MAP( - '#', 388, + '#', 394, '&', 541, '(', 504, ')', 446, '*', 525, - '+', 518, ',', 445, - '-', 508, '.', 357, '/', 352, ':', 562, @@ -21619,21 +22008,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '<', 551, '=', 578, '>', 748, - '[', 572, - '\\', 24, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 713, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 'u', 706, - 'v', 718, + '[', 571, + '\\', 80, '{', 568, - '|', 408, '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || @@ -21656,7 +22033,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 578, '>', 748, '[', 572, - '\\', 86, + '\\', 88, '{', 568, '|', 408, '~', 507, @@ -21681,7 +22058,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 578, '>', 748, '[', 574, - '\\', 90, + '\\', 94, 'b', 721, 'c', 700, 'd', 717, @@ -21716,7 +22093,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 578, '>', 748, '[', 570, - '\\', 124, + '\\', 126, '{', 568, '|', 408, ); @@ -21740,7 +22117,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 578, '>', 748, '[', 574, - '\\', 112, + '\\', 114, ']', 577, '{', 568, '|', 408, @@ -21764,7 +22141,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 578, '>', 748, '[', 574, - '\\', 98, + '\\', 102, 'b', 721, 'c', 700, 'd', 717, @@ -21797,7 +22174,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 578, '>', 748, '[', 574, - '\\', 110, + '\\', 112, '{', 568, '|', 408, ); @@ -21819,7 +22196,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 578, '>', 748, '[', 570, - '\\', 122, + '\\', 124, 'b', 721, 'c', 700, 'd', 717, @@ -21851,7 +22228,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 578, '>', 748, '[', 570, - '\\', 128, + '\\', 130, '{', 568, '|', 408, ); @@ -21868,7 +22245,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ':', 368, '=', 578, '[', 369, - '\\', 132, + '\\', 134, ']', 577, ); if (('\t' <= lookahead && lookahead <= '\r') || @@ -21878,7 +22255,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 344: if (lookahead == '\'') ADVANCE(623); if (lookahead == '/') ADVANCE(352); - if (lookahead == '\\') ADVANCE(145); + if (lookahead == '\\') ADVANCE(147); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(344); END_STATE(); @@ -21909,7 +22286,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 578, '>', 748, '[', 575, - '\\', 139, + '\\', 141, ']', 577, '{', 568, ); @@ -21925,7 +22302,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'F', 675, 'T', 679, '[', 571, - '\\', 130, + '\\', 132, 'f', 685, 't', 726, '{', 568, @@ -21937,7 +22314,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 349: if (lookahead == '(') ADVANCE(504); if (lookahead == '/') ADVANCE(352); - if (lookahead == '\\') SKIP(153); + if (lookahead == '\\') SKIP(155); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); END_STATE(); @@ -23504,7 +23881,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 627: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(145); + if (lookahead == '\\') ADVANCE(147); END_STATE(); case 628: ACCEPT_TOKEN(anon_sym_L_DQUOTE); @@ -23570,7 +23947,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 639: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(145); + if (lookahead == '\\') ADVANCE(147); END_STATE(); case 640: ACCEPT_TOKEN(sym_escape_sequence); @@ -26349,7 +26726,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { } } -static const TSLexMode ts_lex_modes[STATE_COUNT] = { +static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 438}, [2] = {.lex_state = 438}, @@ -26384,32 +26761,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [31] = {.lex_state = 235}, [32] = {.lex_state = 235}, [33] = {.lex_state = 235}, - [34] = {.lex_state = 438}, - [35] = {.lex_state = 438}, - [36] = {.lex_state = 438}, - [37] = {.lex_state = 238}, - [38] = {.lex_state = 438}, - [39] = {.lex_state = 438}, - [40] = {.lex_state = 438}, - [41] = {.lex_state = 438}, - [42] = {.lex_state = 438}, - [43] = {.lex_state = 438}, - [44] = {.lex_state = 438}, - [45] = {.lex_state = 438}, - [46] = {.lex_state = 438}, - [47] = {.lex_state = 438}, - [48] = {.lex_state = 438}, - [49] = {.lex_state = 438}, - [50] = {.lex_state = 438}, + [34] = {.lex_state = 235}, + [35] = {.lex_state = 235}, + [36] = {.lex_state = 235}, + [37] = {.lex_state = 235}, + [38] = {.lex_state = 235}, + [39] = {.lex_state = 235}, + [40] = {.lex_state = 235}, + [41] = {.lex_state = 235}, + [42] = {.lex_state = 235}, + [43] = {.lex_state = 235}, + [44] = {.lex_state = 235}, + [45] = {.lex_state = 235}, + [46] = {.lex_state = 235}, + [47] = {.lex_state = 235}, + [48] = {.lex_state = 235}, + [49] = {.lex_state = 235}, + [50] = {.lex_state = 235}, [51] = {.lex_state = 438}, - [52] = {.lex_state = 438}, - [53] = {.lex_state = 238}, + [52] = {.lex_state = 238}, + [53] = {.lex_state = 438}, [54] = {.lex_state = 438}, [55] = {.lex_state = 438}, [56] = {.lex_state = 438}, [57] = {.lex_state = 438}, [58] = {.lex_state = 438}, - [59] = {.lex_state = 438}, + [59] = {.lex_state = 238}, [60] = {.lex_state = 438}, [61] = {.lex_state = 438}, [62] = {.lex_state = 438}, @@ -26419,10 +26796,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [66] = {.lex_state = 438}, [67] = {.lex_state = 438}, [68] = {.lex_state = 438}, - [69] = {.lex_state = 438}, + [69] = {.lex_state = 238}, [70] = {.lex_state = 438}, [71] = {.lex_state = 438}, - [72] = {.lex_state = 238}, + [72] = {.lex_state = 438}, [73] = {.lex_state = 438}, [74] = {.lex_state = 438}, [75] = {.lex_state = 438}, @@ -26439,11 +26816,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [86] = {.lex_state = 438}, [87] = {.lex_state = 438}, [88] = {.lex_state = 438}, - [89] = {.lex_state = 235}, - [90] = {.lex_state = 235}, - [91] = {.lex_state = 235}, - [92] = {.lex_state = 235}, - [93] = {.lex_state = 235}, + [89] = {.lex_state = 438}, + [90] = {.lex_state = 438}, + [91] = {.lex_state = 438}, + [92] = {.lex_state = 438}, + [93] = {.lex_state = 438}, [94] = {.lex_state = 438}, [95] = {.lex_state = 438}, [96] = {.lex_state = 438}, @@ -26454,55 +26831,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [101] = {.lex_state = 438}, [102] = {.lex_state = 438}, [103] = {.lex_state = 438}, - [104] = {.lex_state = 238}, - [105] = {.lex_state = 238}, - [106] = {.lex_state = 238}, - [107] = {.lex_state = 238}, - [108] = {.lex_state = 238}, - [109] = {.lex_state = 237}, - [110] = {.lex_state = 237}, - [111] = {.lex_state = 237}, - [112] = {.lex_state = 237}, - [113] = {.lex_state = 237}, - [114] = {.lex_state = 237}, - [115] = {.lex_state = 237}, - [116] = {.lex_state = 237}, - [117] = {.lex_state = 237}, - [118] = {.lex_state = 237}, - [119] = {.lex_state = 237}, - [120] = {.lex_state = 237}, - [121] = {.lex_state = 237}, - [122] = {.lex_state = 237}, - [123] = {.lex_state = 237}, - [124] = {.lex_state = 237}, - [125] = {.lex_state = 237}, - [126] = {.lex_state = 237}, - [127] = {.lex_state = 239}, - [128] = {.lex_state = 237}, - [129] = {.lex_state = 237}, - [130] = {.lex_state = 237}, - [131] = {.lex_state = 239}, - [132] = {.lex_state = 237}, - [133] = {.lex_state = 237}, - [134] = {.lex_state = 237}, - [135] = {.lex_state = 237}, - [136] = {.lex_state = 239}, - [137] = {.lex_state = 237}, - [138] = {.lex_state = 237}, - [139] = {.lex_state = 237}, - [140] = {.lex_state = 237}, + [104] = {.lex_state = 438}, + [105] = {.lex_state = 438}, + [106] = {.lex_state = 438}, + [107] = {.lex_state = 438}, + [108] = {.lex_state = 438}, + [109] = {.lex_state = 438}, + [110] = {.lex_state = 438}, + [111] = {.lex_state = 438}, + [112] = {.lex_state = 438}, + [113] = {.lex_state = 438}, + [114] = {.lex_state = 438}, + [115] = {.lex_state = 438}, + [116] = {.lex_state = 238}, + [117] = {.lex_state = 438}, + [118] = {.lex_state = 438}, + [119] = {.lex_state = 238}, + [120] = {.lex_state = 238}, + [121] = {.lex_state = 235}, + [122] = {.lex_state = 235}, + [123] = {.lex_state = 235}, + [124] = {.lex_state = 235}, + [125] = {.lex_state = 235}, + [126] = {.lex_state = 438}, + [127] = {.lex_state = 238}, + [128] = {.lex_state = 438}, + [129] = {.lex_state = 438}, + [130] = {.lex_state = 438}, + [131] = {.lex_state = 238}, + [132] = {.lex_state = 238}, + [133] = {.lex_state = 238}, + [134] = {.lex_state = 438}, + [135] = {.lex_state = 238}, + [136] = {.lex_state = 438}, + [137] = {.lex_state = 438}, + [138] = {.lex_state = 438}, + [139] = {.lex_state = 438}, + [140] = {.lex_state = 438}, [141] = {.lex_state = 237}, [142] = {.lex_state = 237}, [143] = {.lex_state = 237}, [144] = {.lex_state = 237}, [145] = {.lex_state = 237}, [146] = {.lex_state = 237}, - [147] = {.lex_state = 226}, + [147] = {.lex_state = 237}, [148] = {.lex_state = 237}, [149] = {.lex_state = 237}, [150] = {.lex_state = 237}, [151] = {.lex_state = 237}, - [152] = {.lex_state = 226}, + [152] = {.lex_state = 237}, [153] = {.lex_state = 237}, [154] = {.lex_state = 237}, [155] = {.lex_state = 237}, @@ -26510,13 +26887,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [157] = {.lex_state = 237}, [158] = {.lex_state = 237}, [159] = {.lex_state = 237}, - [160] = {.lex_state = 237}, + [160] = {.lex_state = 239}, [161] = {.lex_state = 237}, [162] = {.lex_state = 237}, [163] = {.lex_state = 237}, [164] = {.lex_state = 237}, - [165] = {.lex_state = 237}, - [166] = {.lex_state = 237}, + [165] = {.lex_state = 239}, + [166] = {.lex_state = 239}, [167] = {.lex_state = 237}, [168] = {.lex_state = 237}, [169] = {.lex_state = 237}, @@ -26529,18 +26906,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [176] = {.lex_state = 237}, [177] = {.lex_state = 237}, [178] = {.lex_state = 237}, - [179] = {.lex_state = 237}, + [179] = {.lex_state = 226}, [180] = {.lex_state = 237}, [181] = {.lex_state = 237}, [182] = {.lex_state = 237}, - [183] = {.lex_state = 237}, + [183] = {.lex_state = 226}, [184] = {.lex_state = 237}, [185] = {.lex_state = 237}, [186] = {.lex_state = 237}, [187] = {.lex_state = 237}, [188] = {.lex_state = 237}, [189] = {.lex_state = 237}, - [190] = {.lex_state = 226}, + [190] = {.lex_state = 237}, [191] = {.lex_state = 237}, [192] = {.lex_state = 237}, [193] = {.lex_state = 237}, @@ -26559,54 +26936,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [206] = {.lex_state = 237}, [207] = {.lex_state = 237}, [208] = {.lex_state = 237}, - [209] = {.lex_state = 237}, + [209] = {.lex_state = 226}, [210] = {.lex_state = 237}, [211] = {.lex_state = 237}, [212] = {.lex_state = 237}, - [213] = {.lex_state = 240}, - [214] = {.lex_state = 240}, - [215] = {.lex_state = 240}, - [216] = {.lex_state = 240}, - [217] = {.lex_state = 240}, - [218] = {.lex_state = 240}, - [219] = {.lex_state = 240}, - [220] = {.lex_state = 240}, - [221] = {.lex_state = 240}, - [222] = {.lex_state = 240}, - [223] = {.lex_state = 240}, - [224] = {.lex_state = 240}, - [225] = {.lex_state = 240}, - [226] = {.lex_state = 240}, - [227] = {.lex_state = 240}, - [228] = {.lex_state = 240}, - [229] = {.lex_state = 240}, - [230] = {.lex_state = 228}, - [231] = {.lex_state = 240}, - [232] = {.lex_state = 240}, - [233] = {.lex_state = 240}, - [234] = {.lex_state = 240}, - [235] = {.lex_state = 240}, - [236] = {.lex_state = 240}, - [237] = {.lex_state = 240}, - [238] = {.lex_state = 240}, - [239] = {.lex_state = 240}, - [240] = {.lex_state = 240}, - [241] = {.lex_state = 240}, - [242] = {.lex_state = 240}, - [243] = {.lex_state = 240}, - [244] = {.lex_state = 240}, + [213] = {.lex_state = 237}, + [214] = {.lex_state = 237}, + [215] = {.lex_state = 237}, + [216] = {.lex_state = 237}, + [217] = {.lex_state = 237}, + [218] = {.lex_state = 237}, + [219] = {.lex_state = 237}, + [220] = {.lex_state = 237}, + [221] = {.lex_state = 237}, + [222] = {.lex_state = 237}, + [223] = {.lex_state = 237}, + [224] = {.lex_state = 237}, + [225] = {.lex_state = 237}, + [226] = {.lex_state = 237}, + [227] = {.lex_state = 237}, + [228] = {.lex_state = 237}, + [229] = {.lex_state = 237}, + [230] = {.lex_state = 237}, + [231] = {.lex_state = 237}, + [232] = {.lex_state = 237}, + [233] = {.lex_state = 237}, + [234] = {.lex_state = 237}, + [235] = {.lex_state = 237}, + [236] = {.lex_state = 237}, + [237] = {.lex_state = 237}, + [238] = {.lex_state = 237}, + [239] = {.lex_state = 237}, + [240] = {.lex_state = 237}, + [241] = {.lex_state = 237}, + [242] = {.lex_state = 237}, + [243] = {.lex_state = 237}, + [244] = {.lex_state = 237}, [245] = {.lex_state = 240}, - [246] = {.lex_state = 229}, - [247] = {.lex_state = 226}, - [248] = {.lex_state = 226}, - [249] = {.lex_state = 230}, - [250] = {.lex_state = 228}, - [251] = {.lex_state = 438}, - [252] = {.lex_state = 438}, - [253] = {.lex_state = 438}, - [254] = {.lex_state = 438}, - [255] = {.lex_state = 438}, - [256] = {.lex_state = 438}, + [246] = {.lex_state = 240}, + [247] = {.lex_state = 240}, + [248] = {.lex_state = 240}, + [249] = {.lex_state = 240}, + [250] = {.lex_state = 240}, + [251] = {.lex_state = 240}, + [252] = {.lex_state = 240}, + [253] = {.lex_state = 240}, + [254] = {.lex_state = 240}, + [255] = {.lex_state = 228}, + [256] = {.lex_state = 240}, [257] = {.lex_state = 240}, [258] = {.lex_state = 240}, [259] = {.lex_state = 240}, @@ -26618,103 +26995,103 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [265] = {.lex_state = 240}, [266] = {.lex_state = 240}, [267] = {.lex_state = 240}, - [268] = {.lex_state = 237}, + [268] = {.lex_state = 240}, [269] = {.lex_state = 240}, - [270] = {.lex_state = 239}, - [271] = {.lex_state = 237}, + [270] = {.lex_state = 240}, + [271] = {.lex_state = 240}, [272] = {.lex_state = 240}, [273] = {.lex_state = 240}, [274] = {.lex_state = 240}, [275] = {.lex_state = 240}, [276] = {.lex_state = 240}, - [277] = {.lex_state = 239}, - [278] = {.lex_state = 240}, - [279] = {.lex_state = 240}, - [280] = {.lex_state = 237}, - [281] = {.lex_state = 240}, - [282] = {.lex_state = 240}, - [283] = {.lex_state = 237}, - [284] = {.lex_state = 286}, - [285] = {.lex_state = 286}, - [286] = {.lex_state = 286}, - [287] = {.lex_state = 240}, - [288] = {.lex_state = 286}, - [289] = {.lex_state = 286}, - [290] = {.lex_state = 286}, - [291] = {.lex_state = 286}, - [292] = {.lex_state = 286}, - [293] = {.lex_state = 237}, - [294] = {.lex_state = 286}, - [295] = {.lex_state = 286}, - [296] = {.lex_state = 286}, - [297] = {.lex_state = 286}, - [298] = {.lex_state = 237}, - [299] = {.lex_state = 286}, - [300] = {.lex_state = 286}, - [301] = {.lex_state = 237}, - [302] = {.lex_state = 235}, - [303] = {.lex_state = 237}, - [304] = {.lex_state = 286}, - [305] = {.lex_state = 237}, - [306] = {.lex_state = 235}, - [307] = {.lex_state = 286}, + [277] = {.lex_state = 240}, + [278] = {.lex_state = 229}, + [279] = {.lex_state = 226}, + [280] = {.lex_state = 226}, + [281] = {.lex_state = 230}, + [282] = {.lex_state = 228}, + [283] = {.lex_state = 438}, + [284] = {.lex_state = 438}, + [285] = {.lex_state = 438}, + [286] = {.lex_state = 438}, + [287] = {.lex_state = 438}, + [288] = {.lex_state = 438}, + [289] = {.lex_state = 235}, + [290] = {.lex_state = 235}, + [291] = {.lex_state = 235}, + [292] = {.lex_state = 235}, + [293] = {.lex_state = 240}, + [294] = {.lex_state = 239}, + [295] = {.lex_state = 240}, + [296] = {.lex_state = 240}, + [297] = {.lex_state = 240}, + [298] = {.lex_state = 240}, + [299] = {.lex_state = 240}, + [300] = {.lex_state = 240}, + [301] = {.lex_state = 240}, + [302] = {.lex_state = 240}, + [303] = {.lex_state = 240}, + [304] = {.lex_state = 240}, + [305] = {.lex_state = 240}, + [306] = {.lex_state = 240}, + [307] = {.lex_state = 240}, [308] = {.lex_state = 237}, - [309] = {.lex_state = 438}, - [310] = {.lex_state = 240}, + [309] = {.lex_state = 237}, + [310] = {.lex_state = 235}, [311] = {.lex_state = 240}, - [312] = {.lex_state = 240}, + [312] = {.lex_state = 235}, [313] = {.lex_state = 240}, - [314] = {.lex_state = 240}, - [315] = {.lex_state = 240}, + [314] = {.lex_state = 237}, + [315] = {.lex_state = 235}, [316] = {.lex_state = 240}, - [317] = {.lex_state = 240}, + [317] = {.lex_state = 235}, [318] = {.lex_state = 240}, [319] = {.lex_state = 240}, [320] = {.lex_state = 240}, [321] = {.lex_state = 240}, - [322] = {.lex_state = 240}, - [323] = {.lex_state = 240}, - [324] = {.lex_state = 240}, - [325] = {.lex_state = 240}, - [326] = {.lex_state = 240}, - [327] = {.lex_state = 240}, - [328] = {.lex_state = 240}, - [329] = {.lex_state = 240}, - [330] = {.lex_state = 240}, - [331] = {.lex_state = 438}, - [332] = {.lex_state = 240}, - [333] = {.lex_state = 240}, + [322] = {.lex_state = 235}, + [323] = {.lex_state = 239}, + [324] = {.lex_state = 285}, + [325] = {.lex_state = 235}, + [326] = {.lex_state = 235}, + [327] = {.lex_state = 285}, + [328] = {.lex_state = 235}, + [329] = {.lex_state = 285}, + [330] = {.lex_state = 285}, + [331] = {.lex_state = 285}, + [332] = {.lex_state = 285}, + [333] = {.lex_state = 237}, [334] = {.lex_state = 240}, - [335] = {.lex_state = 240}, - [336] = {.lex_state = 240}, - [337] = {.lex_state = 240}, - [338] = {.lex_state = 240}, - [339] = {.lex_state = 240}, - [340] = {.lex_state = 240}, - [341] = {.lex_state = 240}, - [342] = {.lex_state = 240}, - [343] = {.lex_state = 237}, - [344] = {.lex_state = 240}, - [345] = {.lex_state = 240}, - [346] = {.lex_state = 240}, - [347] = {.lex_state = 235}, - [348] = {.lex_state = 240}, + [335] = {.lex_state = 285}, + [336] = {.lex_state = 285}, + [337] = {.lex_state = 285}, + [338] = {.lex_state = 285}, + [339] = {.lex_state = 235}, + [340] = {.lex_state = 235}, + [341] = {.lex_state = 235}, + [342] = {.lex_state = 235}, + [343] = {.lex_state = 285}, + [344] = {.lex_state = 235}, + [345] = {.lex_state = 235}, + [346] = {.lex_state = 285}, + [347] = {.lex_state = 285}, + [348] = {.lex_state = 285}, [349] = {.lex_state = 235}, - [350] = {.lex_state = 240}, - [351] = {.lex_state = 240}, - [352] = {.lex_state = 240}, - [353] = {.lex_state = 240}, + [350] = {.lex_state = 235}, + [351] = {.lex_state = 235}, + [352] = {.lex_state = 235}, + [353] = {.lex_state = 235}, [354] = {.lex_state = 235}, [355] = {.lex_state = 235}, - [356] = {.lex_state = 235}, + [356] = {.lex_state = 285}, [357] = {.lex_state = 235}, [358] = {.lex_state = 235}, [359] = {.lex_state = 235}, - [360] = {.lex_state = 235}, + [360] = {.lex_state = 237}, [361] = {.lex_state = 235}, - [362] = {.lex_state = 438}, - [363] = {.lex_state = 438}, - [364] = {.lex_state = 235}, + [362] = {.lex_state = 235}, + [363] = {.lex_state = 235}, + [364] = {.lex_state = 285}, [365] = {.lex_state = 235}, [366] = {.lex_state = 235}, [367] = {.lex_state = 235}, @@ -26732,40 +27109,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [379] = {.lex_state = 235}, [380] = {.lex_state = 235}, [381] = {.lex_state = 235}, - [382] = {.lex_state = 235}, - [383] = {.lex_state = 438}, + [382] = {.lex_state = 237}, + [383] = {.lex_state = 235}, [384] = {.lex_state = 235}, [385] = {.lex_state = 235}, - [386] = {.lex_state = 235}, - [387] = {.lex_state = 235}, - [388] = {.lex_state = 235}, + [386] = {.lex_state = 237}, + [387] = {.lex_state = 237}, + [388] = {.lex_state = 237}, [389] = {.lex_state = 235}, [390] = {.lex_state = 235}, - [391] = {.lex_state = 235}, - [392] = {.lex_state = 235}, - [393] = {.lex_state = 286}, - [394] = {.lex_state = 235}, - [395] = {.lex_state = 235}, - [396] = {.lex_state = 235}, - [397] = {.lex_state = 235}, - [398] = {.lex_state = 235}, - [399] = {.lex_state = 235}, - [400] = {.lex_state = 235}, - [401] = {.lex_state = 235}, - [402] = {.lex_state = 235}, + [391] = {.lex_state = 240}, + [392] = {.lex_state = 240}, + [393] = {.lex_state = 240}, + [394] = {.lex_state = 240}, + [395] = {.lex_state = 240}, + [396] = {.lex_state = 438}, + [397] = {.lex_state = 238}, + [398] = {.lex_state = 438}, + [399] = {.lex_state = 240}, + [400] = {.lex_state = 240}, + [401] = {.lex_state = 240}, + [402] = {.lex_state = 240}, [403] = {.lex_state = 235}, [404] = {.lex_state = 235}, [405] = {.lex_state = 235}, [406] = {.lex_state = 235}, [407] = {.lex_state = 235}, [408] = {.lex_state = 235}, - [409] = {.lex_state = 438}, - [410] = {.lex_state = 235}, + [409] = {.lex_state = 235}, + [410] = {.lex_state = 238}, [411] = {.lex_state = 235}, [412] = {.lex_state = 235}, [413] = {.lex_state = 235}, [414] = {.lex_state = 235}, - [415] = {.lex_state = 235}, + [415] = {.lex_state = 240}, [416] = {.lex_state = 235}, [417] = {.lex_state = 235}, [418] = {.lex_state = 235}, @@ -26780,20 +27157,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [427] = {.lex_state = 235}, [428] = {.lex_state = 235}, [429] = {.lex_state = 235}, - [430] = {.lex_state = 438}, + [430] = {.lex_state = 235}, [431] = {.lex_state = 235}, [432] = {.lex_state = 235}, - [433] = {.lex_state = 438}, + [433] = {.lex_state = 240}, [434] = {.lex_state = 235}, [435] = {.lex_state = 235}, - [436] = {.lex_state = 235}, - [437] = {.lex_state = 438}, + [436] = {.lex_state = 237}, + [437] = {.lex_state = 235}, [438] = {.lex_state = 235}, [439] = {.lex_state = 235}, [440] = {.lex_state = 235}, [441] = {.lex_state = 235}, [442] = {.lex_state = 235}, - [443] = {.lex_state = 438}, + [443] = {.lex_state = 235}, [444] = {.lex_state = 235}, [445] = {.lex_state = 235}, [446] = {.lex_state = 235}, @@ -26813,296 +27190,296 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [460] = {.lex_state = 235}, [461] = {.lex_state = 235}, [462] = {.lex_state = 235}, - [463] = {.lex_state = 438}, + [463] = {.lex_state = 235}, [464] = {.lex_state = 235}, - [465] = {.lex_state = 438}, - [466] = {.lex_state = 438}, - [467] = {.lex_state = 438}, - [468] = {.lex_state = 238}, + [465] = {.lex_state = 235}, + [466] = {.lex_state = 235}, + [467] = {.lex_state = 235}, + [468] = {.lex_state = 235}, [469] = {.lex_state = 235}, [470] = {.lex_state = 235}, - [471] = {.lex_state = 238}, + [471] = {.lex_state = 235}, [472] = {.lex_state = 235}, [473] = {.lex_state = 235}, [474] = {.lex_state = 235}, - [475] = {.lex_state = 235}, - [476] = {.lex_state = 438}, - [477] = {.lex_state = 438}, - [478] = {.lex_state = 438}, - [479] = {.lex_state = 438}, - [480] = {.lex_state = 227}, - [481] = {.lex_state = 438}, - [482] = {.lex_state = 438}, - [483] = {.lex_state = 438}, - [484] = {.lex_state = 438}, - [485] = {.lex_state = 438}, - [486] = {.lex_state = 438}, - [487] = {.lex_state = 438}, - [488] = {.lex_state = 438}, - [489] = {.lex_state = 438}, - [490] = {.lex_state = 438}, - [491] = {.lex_state = 438}, - [492] = {.lex_state = 438}, - [493] = {.lex_state = 438}, - [494] = {.lex_state = 438}, - [495] = {.lex_state = 438}, - [496] = {.lex_state = 438}, - [497] = {.lex_state = 438}, - [498] = {.lex_state = 438}, - [499] = {.lex_state = 438}, - [500] = {.lex_state = 438}, - [501] = {.lex_state = 438}, - [502] = {.lex_state = 438}, - [503] = {.lex_state = 438}, - [504] = {.lex_state = 438}, - [505] = {.lex_state = 438}, - [506] = {.lex_state = 438}, - [507] = {.lex_state = 438}, - [508] = {.lex_state = 438}, - [509] = {.lex_state = 438}, + [475] = {.lex_state = 240}, + [476] = {.lex_state = 240}, + [477] = {.lex_state = 235}, + [478] = {.lex_state = 240}, + [479] = {.lex_state = 235}, + [480] = {.lex_state = 235}, + [481] = {.lex_state = 235}, + [482] = {.lex_state = 240}, + [483] = {.lex_state = 235}, + [484] = {.lex_state = 235}, + [485] = {.lex_state = 240}, + [486] = {.lex_state = 240}, + [487] = {.lex_state = 240}, + [488] = {.lex_state = 240}, + [489] = {.lex_state = 240}, + [490] = {.lex_state = 240}, + [491] = {.lex_state = 240}, + [492] = {.lex_state = 240}, + [493] = {.lex_state = 240}, + [494] = {.lex_state = 240}, + [495] = {.lex_state = 240}, + [496] = {.lex_state = 240}, + [497] = {.lex_state = 240}, + [498] = {.lex_state = 240}, + [499] = {.lex_state = 240}, + [500] = {.lex_state = 240}, + [501] = {.lex_state = 240}, + [502] = {.lex_state = 240}, + [503] = {.lex_state = 240}, + [504] = {.lex_state = 240}, + [505] = {.lex_state = 240}, + [506] = {.lex_state = 235}, + [507] = {.lex_state = 235}, + [508] = {.lex_state = 235}, + [509] = {.lex_state = 235}, [510] = {.lex_state = 235}, - [511] = {.lex_state = 438}, - [512] = {.lex_state = 235}, - [513] = {.lex_state = 235}, - [514] = {.lex_state = 438}, - [515] = {.lex_state = 438}, - [516] = {.lex_state = 438}, - [517] = {.lex_state = 235}, - [518] = {.lex_state = 235}, + [511] = {.lex_state = 235}, + [512] = {.lex_state = 240}, + [513] = {.lex_state = 237}, + [514] = {.lex_state = 235}, + [515] = {.lex_state = 235}, + [516] = {.lex_state = 240}, + [517] = {.lex_state = 240}, + [518] = {.lex_state = 240}, [519] = {.lex_state = 235}, - [520] = {.lex_state = 235}, - [521] = {.lex_state = 235}, - [522] = {.lex_state = 235}, - [523] = {.lex_state = 235}, - [524] = {.lex_state = 235}, - [525] = {.lex_state = 235}, + [520] = {.lex_state = 438}, + [521] = {.lex_state = 438}, + [522] = {.lex_state = 238}, + [523] = {.lex_state = 238}, + [524] = {.lex_state = 438}, + [525] = {.lex_state = 238}, [526] = {.lex_state = 235}, [527] = {.lex_state = 235}, [528] = {.lex_state = 235}, [529] = {.lex_state = 235}, - [530] = {.lex_state = 438}, - [531] = {.lex_state = 227}, - [532] = {.lex_state = 438}, - [533] = {.lex_state = 438}, - [534] = {.lex_state = 438}, - [535] = {.lex_state = 238}, - [536] = {.lex_state = 438}, - [537] = {.lex_state = 238}, - [538] = {.lex_state = 238}, - [539] = {.lex_state = 227}, - [540] = {.lex_state = 238}, - [541] = {.lex_state = 238}, - [542] = {.lex_state = 438}, - [543] = {.lex_state = 438}, - [544] = {.lex_state = 238}, + [530] = {.lex_state = 238}, + [531] = {.lex_state = 438}, + [532] = {.lex_state = 235}, + [533] = {.lex_state = 235}, + [534] = {.lex_state = 238}, + [535] = {.lex_state = 235}, + [536] = {.lex_state = 235}, + [537] = {.lex_state = 235}, + [538] = {.lex_state = 235}, + [539] = {.lex_state = 438}, + [540] = {.lex_state = 235}, + [541] = {.lex_state = 235}, + [542] = {.lex_state = 235}, + [543] = {.lex_state = 238}, + [544] = {.lex_state = 235}, [545] = {.lex_state = 438}, - [546] = {.lex_state = 238}, - [547] = {.lex_state = 438}, + [546] = {.lex_state = 235}, + [547] = {.lex_state = 235}, [548] = {.lex_state = 438}, - [549] = {.lex_state = 438}, - [550] = {.lex_state = 438}, - [551] = {.lex_state = 334}, - [552] = {.lex_state = 238}, - [553] = {.lex_state = 438}, - [554] = {.lex_state = 438}, - [555] = {.lex_state = 438}, - [556] = {.lex_state = 238}, + [549] = {.lex_state = 238}, + [550] = {.lex_state = 235}, + [551] = {.lex_state = 235}, + [552] = {.lex_state = 235}, + [553] = {.lex_state = 235}, + [554] = {.lex_state = 235}, + [555] = {.lex_state = 285}, + [556] = {.lex_state = 438}, [557] = {.lex_state = 438}, - [558] = {.lex_state = 438}, - [559] = {.lex_state = 238}, - [560] = {.lex_state = 238}, - [561] = {.lex_state = 238}, - [562] = {.lex_state = 238}, - [563] = {.lex_state = 238}, + [558] = {.lex_state = 238}, + [559] = {.lex_state = 438}, + [560] = {.lex_state = 438}, + [561] = {.lex_state = 438}, + [562] = {.lex_state = 438}, + [563] = {.lex_state = 438}, [564] = {.lex_state = 438}, - [565] = {.lex_state = 238}, + [565] = {.lex_state = 438}, [566] = {.lex_state = 438}, [567] = {.lex_state = 238}, [568] = {.lex_state = 438}, - [569] = {.lex_state = 438}, - [570] = {.lex_state = 438}, + [569] = {.lex_state = 238}, + [570] = {.lex_state = 238}, [571] = {.lex_state = 438}, [572] = {.lex_state = 438}, - [573] = {.lex_state = 438}, - [574] = {.lex_state = 238}, - [575] = {.lex_state = 238}, - [576] = {.lex_state = 438}, + [573] = {.lex_state = 238}, + [574] = {.lex_state = 438}, + [575] = {.lex_state = 438}, + [576] = {.lex_state = 238}, [577] = {.lex_state = 438}, [578] = {.lex_state = 438}, [579] = {.lex_state = 238}, [580] = {.lex_state = 238}, [581] = {.lex_state = 238}, - [582] = {.lex_state = 238}, - [583] = {.lex_state = 266}, + [582] = {.lex_state = 438}, + [583] = {.lex_state = 238}, [584] = {.lex_state = 238}, [585] = {.lex_state = 238}, - [586] = {.lex_state = 238}, + [586] = {.lex_state = 438}, [587] = {.lex_state = 238}, - [588] = {.lex_state = 438}, + [588] = {.lex_state = 238}, [589] = {.lex_state = 438}, - [590] = {.lex_state = 238}, + [590] = {.lex_state = 438}, [591] = {.lex_state = 238}, [592] = {.lex_state = 238}, - [593] = {.lex_state = 438}, + [593] = {.lex_state = 238}, [594] = {.lex_state = 438}, - [595] = {.lex_state = 438}, - [596] = {.lex_state = 238}, + [595] = {.lex_state = 238}, + [596] = {.lex_state = 438}, [597] = {.lex_state = 438}, - [598] = {.lex_state = 238}, + [598] = {.lex_state = 438}, [599] = {.lex_state = 238}, [600] = {.lex_state = 238}, [601] = {.lex_state = 438}, - [602] = {.lex_state = 438}, + [602] = {.lex_state = 238}, [603] = {.lex_state = 438}, - [604] = {.lex_state = 438}, + [604] = {.lex_state = 238}, [605] = {.lex_state = 438}, - [606] = {.lex_state = 438}, + [606] = {.lex_state = 238}, [607] = {.lex_state = 438}, - [608] = {.lex_state = 334}, + [608] = {.lex_state = 438}, [609] = {.lex_state = 438}, - [610] = {.lex_state = 438}, + [610] = {.lex_state = 238}, [611] = {.lex_state = 438}, - [612] = {.lex_state = 266}, + [612] = {.lex_state = 238}, [613] = {.lex_state = 438}, [614] = {.lex_state = 438}, [615] = {.lex_state = 438}, - [616] = {.lex_state = 438}, + [616] = {.lex_state = 238}, [617] = {.lex_state = 438}, [618] = {.lex_state = 438}, - [619] = {.lex_state = 438}, - [620] = {.lex_state = 438}, - [621] = {.lex_state = 438}, + [619] = {.lex_state = 238}, + [620] = {.lex_state = 238}, + [621] = {.lex_state = 238}, [622] = {.lex_state = 438}, - [623] = {.lex_state = 438}, - [624] = {.lex_state = 438}, - [625] = {.lex_state = 266}, + [623] = {.lex_state = 238}, + [624] = {.lex_state = 238}, + [625] = {.lex_state = 438}, [626] = {.lex_state = 438}, [627] = {.lex_state = 438}, - [628] = {.lex_state = 438}, + [628] = {.lex_state = 238}, [629] = {.lex_state = 438}, - [630] = {.lex_state = 438}, - [631] = {.lex_state = 438}, + [630] = {.lex_state = 238}, + [631] = {.lex_state = 238}, [632] = {.lex_state = 438}, [633] = {.lex_state = 438}, - [634] = {.lex_state = 438}, + [634] = {.lex_state = 238}, [635] = {.lex_state = 438}, [636] = {.lex_state = 438}, - [637] = {.lex_state = 266}, + [637] = {.lex_state = 238}, [638] = {.lex_state = 438}, [639] = {.lex_state = 438}, - [640] = {.lex_state = 438}, - [641] = {.lex_state = 334}, - [642] = {.lex_state = 266}, - [643] = {.lex_state = 438}, - [644] = {.lex_state = 438}, - [645] = {.lex_state = 438}, - [646] = {.lex_state = 438}, - [647] = {.lex_state = 438}, + [640] = {.lex_state = 238}, + [641] = {.lex_state = 238}, + [642] = {.lex_state = 238}, + [643] = {.lex_state = 238}, + [644] = {.lex_state = 238}, + [645] = {.lex_state = 227}, + [646] = {.lex_state = 238}, + [647] = {.lex_state = 238}, [648] = {.lex_state = 438}, - [649] = {.lex_state = 438}, - [650] = {.lex_state = 438}, - [651] = {.lex_state = 266}, + [649] = {.lex_state = 238}, + [650] = {.lex_state = 238}, + [651] = {.lex_state = 438}, [652] = {.lex_state = 238}, - [653] = {.lex_state = 438}, - [654] = {.lex_state = 438}, - [655] = {.lex_state = 438}, + [653] = {.lex_state = 238}, + [654] = {.lex_state = 238}, + [655] = {.lex_state = 238}, [656] = {.lex_state = 238}, - [657] = {.lex_state = 238}, - [658] = {.lex_state = 438}, - [659] = {.lex_state = 438}, - [660] = {.lex_state = 266}, - [661] = {.lex_state = 438}, + [657] = {.lex_state = 438}, + [658] = {.lex_state = 238}, + [659] = {.lex_state = 238}, + [660] = {.lex_state = 238}, + [661] = {.lex_state = 238}, [662] = {.lex_state = 238}, - [663] = {.lex_state = 438}, - [664] = {.lex_state = 438}, + [663] = {.lex_state = 238}, + [664] = {.lex_state = 238}, [665] = {.lex_state = 238}, [666] = {.lex_state = 438}, - [667] = {.lex_state = 438}, - [668] = {.lex_state = 266}, + [667] = {.lex_state = 238}, + [668] = {.lex_state = 238}, [669] = {.lex_state = 238}, - [670] = {.lex_state = 438}, - [671] = {.lex_state = 438}, + [670] = {.lex_state = 238}, + [671] = {.lex_state = 238}, [672] = {.lex_state = 238}, - [673] = {.lex_state = 438}, + [673] = {.lex_state = 238}, [674] = {.lex_state = 438}, [675] = {.lex_state = 438}, - [676] = {.lex_state = 266}, + [676] = {.lex_state = 438}, [677] = {.lex_state = 438}, - [678] = {.lex_state = 438}, - [679] = {.lex_state = 438}, - [680] = {.lex_state = 438}, - [681] = {.lex_state = 438}, - [682] = {.lex_state = 266}, - [683] = {.lex_state = 438}, - [684] = {.lex_state = 438}, - [685] = {.lex_state = 438}, - [686] = {.lex_state = 266}, - [687] = {.lex_state = 438}, - [688] = {.lex_state = 266}, - [689] = {.lex_state = 266}, - [690] = {.lex_state = 266}, - [691] = {.lex_state = 438}, - [692] = {.lex_state = 266}, - [693] = {.lex_state = 438}, - [694] = {.lex_state = 266}, - [695] = {.lex_state = 438}, - [696] = {.lex_state = 266}, - [697] = {.lex_state = 438}, - [698] = {.lex_state = 438}, - [699] = {.lex_state = 266}, + [678] = {.lex_state = 238}, + [679] = {.lex_state = 238}, + [680] = {.lex_state = 238}, + [681] = {.lex_state = 238}, + [682] = {.lex_state = 238}, + [683] = {.lex_state = 238}, + [684] = {.lex_state = 238}, + [685] = {.lex_state = 238}, + [686] = {.lex_state = 238}, + [687] = {.lex_state = 238}, + [688] = {.lex_state = 238}, + [689] = {.lex_state = 238}, + [690] = {.lex_state = 238}, + [691] = {.lex_state = 238}, + [692] = {.lex_state = 238}, + [693] = {.lex_state = 238}, + [694] = {.lex_state = 438}, + [695] = {.lex_state = 238}, + [696] = {.lex_state = 238}, + [697] = {.lex_state = 238}, + [698] = {.lex_state = 238}, + [699] = {.lex_state = 238}, [700] = {.lex_state = 238}, - [701] = {.lex_state = 438}, - [702] = {.lex_state = 266}, - [703] = {.lex_state = 438}, + [701] = {.lex_state = 238}, + [702] = {.lex_state = 238}, + [703] = {.lex_state = 238}, [704] = {.lex_state = 438}, - [705] = {.lex_state = 266}, + [705] = {.lex_state = 238}, [706] = {.lex_state = 438}, [707] = {.lex_state = 438}, - [708] = {.lex_state = 266}, - [709] = {.lex_state = 266}, - [710] = {.lex_state = 266}, - [711] = {.lex_state = 438}, - [712] = {.lex_state = 438}, - [713] = {.lex_state = 438}, - [714] = {.lex_state = 438}, - [715] = {.lex_state = 438}, + [708] = {.lex_state = 238}, + [709] = {.lex_state = 238}, + [710] = {.lex_state = 238}, + [711] = {.lex_state = 238}, + [712] = {.lex_state = 238}, + [713] = {.lex_state = 238}, + [714] = {.lex_state = 238}, + [715] = {.lex_state = 238}, [716] = {.lex_state = 438}, - [717] = {.lex_state = 438}, + [717] = {.lex_state = 238}, [718] = {.lex_state = 238}, - [719] = {.lex_state = 438}, - [720] = {.lex_state = 438}, - [721] = {.lex_state = 438}, - [722] = {.lex_state = 438}, - [723] = {.lex_state = 438}, - [724] = {.lex_state = 438}, - [725] = {.lex_state = 438}, + [719] = {.lex_state = 238}, + [720] = {.lex_state = 238}, + [721] = {.lex_state = 238}, + [722] = {.lex_state = 238}, + [723] = {.lex_state = 238}, + [724] = {.lex_state = 238}, + [725] = {.lex_state = 238}, [726] = {.lex_state = 438}, - [727] = {.lex_state = 438}, - [728] = {.lex_state = 438}, - [729] = {.lex_state = 438}, - [730] = {.lex_state = 438}, - [731] = {.lex_state = 438}, - [732] = {.lex_state = 438}, - [733] = {.lex_state = 238}, - [734] = {.lex_state = 438}, - [735] = {.lex_state = 438}, - [736] = {.lex_state = 438}, - [737] = {.lex_state = 438}, - [738] = {.lex_state = 438}, + [727] = {.lex_state = 238}, + [728] = {.lex_state = 238}, + [729] = {.lex_state = 238}, + [730] = {.lex_state = 238}, + [731] = {.lex_state = 238}, + [732] = {.lex_state = 238}, + [733] = {.lex_state = 438}, + [734] = {.lex_state = 238}, + [735] = {.lex_state = 238}, + [736] = {.lex_state = 238}, + [737] = {.lex_state = 238}, + [738] = {.lex_state = 238}, [739] = {.lex_state = 238}, - [740] = {.lex_state = 438}, + [740] = {.lex_state = 238}, [741] = {.lex_state = 238}, [742] = {.lex_state = 238}, - [743] = {.lex_state = 438}, - [744] = {.lex_state = 238}, + [743] = {.lex_state = 238}, + [744] = {.lex_state = 438}, [745] = {.lex_state = 438}, - [746] = {.lex_state = 438}, - [747] = {.lex_state = 438}, - [748] = {.lex_state = 238}, - [749] = {.lex_state = 238}, + [746] = {.lex_state = 238}, + [747] = {.lex_state = 238}, + [748] = {.lex_state = 438}, + [749] = {.lex_state = 438}, [750] = {.lex_state = 438}, [751] = {.lex_state = 438}, - [752] = {.lex_state = 238}, + [752] = {.lex_state = 438}, [753] = {.lex_state = 438}, [754] = {.lex_state = 438}, [755] = {.lex_state = 438}, @@ -27114,311 +27491,311 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [761] = {.lex_state = 438}, [762] = {.lex_state = 438}, [763] = {.lex_state = 438}, - [764] = {.lex_state = 238}, - [765] = {.lex_state = 238}, - [766] = {.lex_state = 238}, - [767] = {.lex_state = 238}, - [768] = {.lex_state = 238}, - [769] = {.lex_state = 238}, - [770] = {.lex_state = 238}, - [771] = {.lex_state = 238}, + [764] = {.lex_state = 438}, + [765] = {.lex_state = 438}, + [766] = {.lex_state = 438}, + [767] = {.lex_state = 227}, + [768] = {.lex_state = 438}, + [769] = {.lex_state = 438}, + [770] = {.lex_state = 438}, + [771] = {.lex_state = 438}, [772] = {.lex_state = 438}, [773] = {.lex_state = 438}, - [774] = {.lex_state = 238}, - [775] = {.lex_state = 238}, + [774] = {.lex_state = 438}, + [775] = {.lex_state = 438}, [776] = {.lex_state = 438}, [777] = {.lex_state = 438}, - [778] = {.lex_state = 238}, + [778] = {.lex_state = 438}, [779] = {.lex_state = 438}, [780] = {.lex_state = 238}, - [781] = {.lex_state = 238}, - [782] = {.lex_state = 238}, - [783] = {.lex_state = 238}, + [781] = {.lex_state = 438}, + [782] = {.lex_state = 438}, + [783] = {.lex_state = 438}, [784] = {.lex_state = 438}, [785] = {.lex_state = 438}, - [786] = {.lex_state = 238}, - [787] = {.lex_state = 238}, + [786] = {.lex_state = 438}, + [787] = {.lex_state = 438}, [788] = {.lex_state = 438}, [789] = {.lex_state = 438}, [790] = {.lex_state = 438}, [791] = {.lex_state = 438}, - [792] = {.lex_state = 238}, + [792] = {.lex_state = 438}, [793] = {.lex_state = 438}, [794] = {.lex_state = 438}, [795] = {.lex_state = 438}, - [796] = {.lex_state = 238}, + [796] = {.lex_state = 438}, [797] = {.lex_state = 438}, [798] = {.lex_state = 438}, [799] = {.lex_state = 438}, - [800] = {.lex_state = 238}, - [801] = {.lex_state = 238}, + [800] = {.lex_state = 438}, + [801] = {.lex_state = 438}, [802] = {.lex_state = 438}, [803] = {.lex_state = 438}, - [804] = {.lex_state = 238}, - [805] = {.lex_state = 238}, - [806] = {.lex_state = 238}, + [804] = {.lex_state = 438}, + [805] = {.lex_state = 438}, + [806] = {.lex_state = 438}, [807] = {.lex_state = 438}, [808] = {.lex_state = 438}, [809] = {.lex_state = 438}, - [810] = {.lex_state = 238}, + [810] = {.lex_state = 438}, [811] = {.lex_state = 438}, - [812] = {.lex_state = 238}, - [813] = {.lex_state = 227}, - [814] = {.lex_state = 238}, - [815] = {.lex_state = 238}, - [816] = {.lex_state = 238}, - [817] = {.lex_state = 238}, + [812] = {.lex_state = 438}, + [813] = {.lex_state = 438}, + [814] = {.lex_state = 438}, + [815] = {.lex_state = 438}, + [816] = {.lex_state = 438}, + [817] = {.lex_state = 438}, [818] = {.lex_state = 438}, - [819] = {.lex_state = 238}, - [820] = {.lex_state = 238}, - [821] = {.lex_state = 238}, - [822] = {.lex_state = 238}, - [823] = {.lex_state = 238}, + [819] = {.lex_state = 438}, + [820] = {.lex_state = 438}, + [821] = {.lex_state = 438}, + [822] = {.lex_state = 438}, + [823] = {.lex_state = 438}, [824] = {.lex_state = 438}, [825] = {.lex_state = 438}, - [826] = {.lex_state = 238}, - [827] = {.lex_state = 238}, + [826] = {.lex_state = 438}, + [827] = {.lex_state = 438}, [828] = {.lex_state = 438}, - [829] = {.lex_state = 238}, - [830] = {.lex_state = 238}, + [829] = {.lex_state = 438}, + [830] = {.lex_state = 438}, [831] = {.lex_state = 438}, [832] = {.lex_state = 438}, - [833] = {.lex_state = 438}, - [834] = {.lex_state = 238}, + [833] = {.lex_state = 227}, + [834] = {.lex_state = 438}, [835] = {.lex_state = 438}, [836] = {.lex_state = 438}, [837] = {.lex_state = 438}, [838] = {.lex_state = 438}, [839] = {.lex_state = 438}, - [840] = {.lex_state = 238}, + [840] = {.lex_state = 438}, [841] = {.lex_state = 438}, [842] = {.lex_state = 438}, [843] = {.lex_state = 438}, [844] = {.lex_state = 438}, - [845] = {.lex_state = 238}, + [845] = {.lex_state = 438}, [846] = {.lex_state = 438}, - [847] = {.lex_state = 238}, + [847] = {.lex_state = 438}, [848] = {.lex_state = 438}, [849] = {.lex_state = 438}, - [850] = {.lex_state = 232}, + [850] = {.lex_state = 438}, [851] = {.lex_state = 438}, [852] = {.lex_state = 438}, - [853] = {.lex_state = 238}, - [854] = {.lex_state = 238}, - [855] = {.lex_state = 238}, + [853] = {.lex_state = 438}, + [854] = {.lex_state = 438}, + [855] = {.lex_state = 438}, [856] = {.lex_state = 438}, - [857] = {.lex_state = 238}, + [857] = {.lex_state = 438}, [858] = {.lex_state = 438}, - [859] = {.lex_state = 238}, + [859] = {.lex_state = 438}, [860] = {.lex_state = 438}, [861] = {.lex_state = 438}, [862] = {.lex_state = 438}, [863] = {.lex_state = 438}, [864] = {.lex_state = 438}, - [865] = {.lex_state = 238}, + [865] = {.lex_state = 438}, [866] = {.lex_state = 438}, - [867] = {.lex_state = 238}, + [867] = {.lex_state = 438}, [868] = {.lex_state = 438}, [869] = {.lex_state = 438}, - [870] = {.lex_state = 238}, + [870] = {.lex_state = 333}, [871] = {.lex_state = 438}, - [872] = {.lex_state = 438}, + [872] = {.lex_state = 333}, [873] = {.lex_state = 438}, - [874] = {.lex_state = 238}, + [874] = {.lex_state = 438}, [875] = {.lex_state = 438}, - [876] = {.lex_state = 238}, - [877] = {.lex_state = 238}, - [878] = {.lex_state = 238}, - [879] = {.lex_state = 238}, - [880] = {.lex_state = 238}, + [876] = {.lex_state = 438}, + [877] = {.lex_state = 438}, + [878] = {.lex_state = 438}, + [879] = {.lex_state = 438}, + [880] = {.lex_state = 438}, [881] = {.lex_state = 438}, - [882] = {.lex_state = 238}, + [882] = {.lex_state = 438}, [883] = {.lex_state = 438}, - [884] = {.lex_state = 238}, + [884] = {.lex_state = 333}, [885] = {.lex_state = 438}, - [886] = {.lex_state = 238}, + [886] = {.lex_state = 333}, [887] = {.lex_state = 438}, [888] = {.lex_state = 438}, - [889] = {.lex_state = 238}, + [889] = {.lex_state = 438}, [890] = {.lex_state = 438}, [891] = {.lex_state = 438}, - [892] = {.lex_state = 238}, - [893] = {.lex_state = 227}, - [894] = {.lex_state = 238}, - [895] = {.lex_state = 438}, + [892] = {.lex_state = 438}, + [893] = {.lex_state = 438}, + [894] = {.lex_state = 438}, + [895] = {.lex_state = 333}, [896] = {.lex_state = 238}, - [897] = {.lex_state = 438}, - [898] = {.lex_state = 238}, - [899] = {.lex_state = 238}, - [900] = {.lex_state = 238}, + [897] = {.lex_state = 238}, + [898] = {.lex_state = 438}, + [899] = {.lex_state = 438}, + [900] = {.lex_state = 438}, [901] = {.lex_state = 438}, - [902] = {.lex_state = 238}, - [903] = {.lex_state = 238}, - [904] = {.lex_state = 238}, - [905] = {.lex_state = 238}, - [906] = {.lex_state = 438}, - [907] = {.lex_state = 438}, - [908] = {.lex_state = 438}, + [902] = {.lex_state = 438}, + [903] = {.lex_state = 438}, + [904] = {.lex_state = 438}, + [905] = {.lex_state = 438}, + [906] = {.lex_state = 238}, + [907] = {.lex_state = 238}, + [908] = {.lex_state = 333}, [909] = {.lex_state = 438}, - [910] = {.lex_state = 238}, - [911] = {.lex_state = 231}, + [910] = {.lex_state = 438}, + [911] = {.lex_state = 438}, [912] = {.lex_state = 438}, - [913] = {.lex_state = 238}, - [914] = {.lex_state = 238}, + [913] = {.lex_state = 438}, + [914] = {.lex_state = 333}, [915] = {.lex_state = 438}, [916] = {.lex_state = 238}, - [917] = {.lex_state = 232}, - [918] = {.lex_state = 240}, - [919] = {.lex_state = 240}, - [920] = {.lex_state = 240}, - [921] = {.lex_state = 240}, - [922] = {.lex_state = 240}, - [923] = {.lex_state = 240}, - [924] = {.lex_state = 240}, - [925] = {.lex_state = 240}, - [926] = {.lex_state = 240}, - [927] = {.lex_state = 240}, - [928] = {.lex_state = 240}, - [929] = {.lex_state = 240}, - [930] = {.lex_state = 240}, - [931] = {.lex_state = 240}, - [932] = {.lex_state = 240}, - [933] = {.lex_state = 240}, - [934] = {.lex_state = 233}, - [935] = {.lex_state = 233}, - [936] = {.lex_state = 240}, - [937] = {.lex_state = 240}, - [938] = {.lex_state = 240}, - [939] = {.lex_state = 240}, - [940] = {.lex_state = 240}, - [941] = {.lex_state = 240}, - [942] = {.lex_state = 240}, - [943] = {.lex_state = 240}, - [944] = {.lex_state = 240}, - [945] = {.lex_state = 240}, - [946] = {.lex_state = 240}, - [947] = {.lex_state = 240}, - [948] = {.lex_state = 240}, - [949] = {.lex_state = 240}, - [950] = {.lex_state = 240}, - [951] = {.lex_state = 240}, - [952] = {.lex_state = 240}, - [953] = {.lex_state = 240}, - [954] = {.lex_state = 240}, - [955] = {.lex_state = 240}, - [956] = {.lex_state = 240}, - [957] = {.lex_state = 240}, - [958] = {.lex_state = 240}, - [959] = {.lex_state = 240}, - [960] = {.lex_state = 240}, - [961] = {.lex_state = 240}, - [962] = {.lex_state = 240}, - [963] = {.lex_state = 240}, - [964] = {.lex_state = 240}, - [965] = {.lex_state = 240}, - [966] = {.lex_state = 240}, - [967] = {.lex_state = 240}, - [968] = {.lex_state = 240}, - [969] = {.lex_state = 240}, - [970] = {.lex_state = 240}, - [971] = {.lex_state = 240}, - [972] = {.lex_state = 240}, - [973] = {.lex_state = 240}, - [974] = {.lex_state = 240}, - [975] = {.lex_state = 240}, - [976] = {.lex_state = 240}, - [977] = {.lex_state = 240}, - [978] = {.lex_state = 240}, - [979] = {.lex_state = 240}, - [980] = {.lex_state = 240}, - [981] = {.lex_state = 240}, - [982] = {.lex_state = 240}, - [983] = {.lex_state = 240}, - [984] = {.lex_state = 240}, - [985] = {.lex_state = 240}, - [986] = {.lex_state = 240}, - [987] = {.lex_state = 240}, - [988] = {.lex_state = 240}, - [989] = {.lex_state = 240}, - [990] = {.lex_state = 240}, - [991] = {.lex_state = 286}, - [992] = {.lex_state = 286}, - [993] = {.lex_state = 286}, - [994] = {.lex_state = 286}, - [995] = {.lex_state = 286}, - [996] = {.lex_state = 286}, - [997] = {.lex_state = 286}, - [998] = {.lex_state = 239}, - [999] = {.lex_state = 239}, - [1000] = {.lex_state = 286}, - [1001] = {.lex_state = 286}, - [1002] = {.lex_state = 286}, - [1003] = {.lex_state = 286}, - [1004] = {.lex_state = 286}, - [1005] = {.lex_state = 240}, - [1006] = {.lex_state = 286}, - [1007] = {.lex_state = 286}, + [917] = {.lex_state = 438}, + [918] = {.lex_state = 438}, + [919] = {.lex_state = 438}, + [920] = {.lex_state = 438}, + [921] = {.lex_state = 438}, + [922] = {.lex_state = 438}, + [923] = {.lex_state = 438}, + [924] = {.lex_state = 333}, + [925] = {.lex_state = 438}, + [926] = {.lex_state = 438}, + [927] = {.lex_state = 438}, + [928] = {.lex_state = 438}, + [929] = {.lex_state = 333}, + [930] = {.lex_state = 438}, + [931] = {.lex_state = 238}, + [932] = {.lex_state = 333}, + [933] = {.lex_state = 438}, + [934] = {.lex_state = 438}, + [935] = {.lex_state = 333}, + [936] = {.lex_state = 333}, + [937] = {.lex_state = 438}, + [938] = {.lex_state = 438}, + [939] = {.lex_state = 438}, + [940] = {.lex_state = 333}, + [941] = {.lex_state = 333}, + [942] = {.lex_state = 333}, + [943] = {.lex_state = 438}, + [944] = {.lex_state = 438}, + [945] = {.lex_state = 438}, + [946] = {.lex_state = 438}, + [947] = {.lex_state = 333}, + [948] = {.lex_state = 333}, + [949] = {.lex_state = 286}, + [950] = {.lex_state = 238}, + [951] = {.lex_state = 238}, + [952] = {.lex_state = 333}, + [953] = {.lex_state = 238}, + [954] = {.lex_state = 333}, + [955] = {.lex_state = 333}, + [956] = {.lex_state = 333}, + [957] = {.lex_state = 438}, + [958] = {.lex_state = 438}, + [959] = {.lex_state = 438}, + [960] = {.lex_state = 286}, + [961] = {.lex_state = 438}, + [962] = {.lex_state = 438}, + [963] = {.lex_state = 438}, + [964] = {.lex_state = 438}, + [965] = {.lex_state = 438}, + [966] = {.lex_state = 238}, + [967] = {.lex_state = 238}, + [968] = {.lex_state = 238}, + [969] = {.lex_state = 238}, + [970] = {.lex_state = 438}, + [971] = {.lex_state = 438}, + [972] = {.lex_state = 438}, + [973] = {.lex_state = 438}, + [974] = {.lex_state = 333}, + [975] = {.lex_state = 438}, + [976] = {.lex_state = 438}, + [977] = {.lex_state = 438}, + [978] = {.lex_state = 438}, + [979] = {.lex_state = 438}, + [980] = {.lex_state = 438}, + [981] = {.lex_state = 438}, + [982] = {.lex_state = 438}, + [983] = {.lex_state = 438}, + [984] = {.lex_state = 438}, + [985] = {.lex_state = 238}, + [986] = {.lex_state = 238}, + [987] = {.lex_state = 238}, + [988] = {.lex_state = 438}, + [989] = {.lex_state = 286}, + [990] = {.lex_state = 438}, + [991] = {.lex_state = 438}, + [992] = {.lex_state = 438}, + [993] = {.lex_state = 438}, + [994] = {.lex_state = 438}, + [995] = {.lex_state = 438}, + [996] = {.lex_state = 438}, + [997] = {.lex_state = 438}, + [998] = {.lex_state = 438}, + [999] = {.lex_state = 238}, + [1000] = {.lex_state = 238}, + [1001] = {.lex_state = 238}, + [1002] = {.lex_state = 438}, + [1003] = {.lex_state = 438}, + [1004] = {.lex_state = 438}, + [1005] = {.lex_state = 438}, + [1006] = {.lex_state = 438}, + [1007] = {.lex_state = 438}, [1008] = {.lex_state = 438}, - [1009] = {.lex_state = 438}, - [1010] = {.lex_state = 239}, - [1011] = {.lex_state = 239}, - [1012] = {.lex_state = 438}, - [1013] = {.lex_state = 253}, - [1014] = {.lex_state = 253}, - [1015] = {.lex_state = 286}, - [1016] = {.lex_state = 237}, - [1017] = {.lex_state = 237}, - [1018] = {.lex_state = 253}, - [1019] = {.lex_state = 253}, - [1020] = {.lex_state = 241}, - [1021] = {.lex_state = 241}, - [1022] = {.lex_state = 241}, - [1023] = {.lex_state = 253}, - [1024] = {.lex_state = 253}, - [1025] = {.lex_state = 241}, + [1009] = {.lex_state = 238}, + [1010] = {.lex_state = 438}, + [1011] = {.lex_state = 438}, + [1012] = {.lex_state = 238}, + [1013] = {.lex_state = 438}, + [1014] = {.lex_state = 438}, + [1015] = {.lex_state = 333}, + [1016] = {.lex_state = 227}, + [1017] = {.lex_state = 227}, + [1018] = {.lex_state = 231}, + [1019] = {.lex_state = 232}, + [1020] = {.lex_state = 227}, + [1021] = {.lex_state = 240}, + [1022] = {.lex_state = 240}, + [1023] = {.lex_state = 240}, + [1024] = {.lex_state = 240}, + [1025] = {.lex_state = 240}, [1026] = {.lex_state = 240}, [1027] = {.lex_state = 240}, - [1028] = {.lex_state = 241}, - [1029] = {.lex_state = 241}, - [1030] = {.lex_state = 241}, + [1028] = {.lex_state = 240}, + [1029] = {.lex_state = 240}, + [1030] = {.lex_state = 240}, [1031] = {.lex_state = 240}, - [1032] = {.lex_state = 241}, - [1033] = {.lex_state = 253}, + [1032] = {.lex_state = 240}, + [1033] = {.lex_state = 240}, [1034] = {.lex_state = 240}, - [1035] = {.lex_state = 253}, + [1035] = {.lex_state = 240}, [1036] = {.lex_state = 240}, - [1037] = {.lex_state = 241}, - [1038] = {.lex_state = 241}, + [1037] = {.lex_state = 233}, + [1038] = {.lex_state = 233}, [1039] = {.lex_state = 240}, - [1040] = {.lex_state = 241}, - [1041] = {.lex_state = 241}, + [1040] = {.lex_state = 240}, + [1041] = {.lex_state = 240}, [1042] = {.lex_state = 240}, - [1043] = {.lex_state = 241}, - [1044] = {.lex_state = 241}, - [1045] = {.lex_state = 241}, - [1046] = {.lex_state = 241}, - [1047] = {.lex_state = 253}, - [1048] = {.lex_state = 241}, - [1049] = {.lex_state = 241}, - [1050] = {.lex_state = 253}, - [1051] = {.lex_state = 241}, - [1052] = {.lex_state = 241}, - [1053] = {.lex_state = 241}, - [1054] = {.lex_state = 241}, + [1043] = {.lex_state = 240}, + [1044] = {.lex_state = 240}, + [1045] = {.lex_state = 240}, + [1046] = {.lex_state = 240}, + [1047] = {.lex_state = 240}, + [1048] = {.lex_state = 240}, + [1049] = {.lex_state = 240}, + [1050] = {.lex_state = 240}, + [1051] = {.lex_state = 240}, + [1052] = {.lex_state = 240}, + [1053] = {.lex_state = 240}, + [1054] = {.lex_state = 240}, [1055] = {.lex_state = 240}, - [1056] = {.lex_state = 241}, + [1056] = {.lex_state = 240}, [1057] = {.lex_state = 240}, - [1058] = {.lex_state = 241}, - [1059] = {.lex_state = 241}, - [1060] = {.lex_state = 241}, - [1061] = {.lex_state = 241}, - [1062] = {.lex_state = 241}, - [1063] = {.lex_state = 253}, - [1064] = {.lex_state = 241}, - [1065] = {.lex_state = 253}, - [1066] = {.lex_state = 241}, - [1067] = {.lex_state = 241}, - [1068] = {.lex_state = 241}, + [1058] = {.lex_state = 240}, + [1059] = {.lex_state = 240}, + [1060] = {.lex_state = 240}, + [1061] = {.lex_state = 240}, + [1062] = {.lex_state = 240}, + [1063] = {.lex_state = 240}, + [1064] = {.lex_state = 240}, + [1065] = {.lex_state = 240}, + [1066] = {.lex_state = 240}, + [1067] = {.lex_state = 240}, + [1068] = {.lex_state = 240}, [1069] = {.lex_state = 240}, [1070] = {.lex_state = 240}, [1071] = {.lex_state = 240}, @@ -27430,107 +27807,107 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1077] = {.lex_state = 240}, [1078] = {.lex_state = 240}, [1079] = {.lex_state = 240}, - [1080] = {.lex_state = 237}, + [1080] = {.lex_state = 240}, [1081] = {.lex_state = 240}, - [1082] = {.lex_state = 253}, + [1082] = {.lex_state = 240}, [1083] = {.lex_state = 240}, [1084] = {.lex_state = 240}, [1085] = {.lex_state = 240}, [1086] = {.lex_state = 240}, [1087] = {.lex_state = 240}, [1088] = {.lex_state = 240}, - [1089] = {.lex_state = 237}, + [1089] = {.lex_state = 240}, [1090] = {.lex_state = 240}, [1091] = {.lex_state = 240}, [1092] = {.lex_state = 240}, [1093] = {.lex_state = 240}, - [1094] = {.lex_state = 240}, - [1095] = {.lex_state = 240}, - [1096] = {.lex_state = 240}, - [1097] = {.lex_state = 240}, - [1098] = {.lex_state = 240}, - [1099] = {.lex_state = 240}, - [1100] = {.lex_state = 240}, - [1101] = {.lex_state = 240}, - [1102] = {.lex_state = 237}, - [1103] = {.lex_state = 237}, - [1104] = {.lex_state = 237}, - [1105] = {.lex_state = 240}, - [1106] = {.lex_state = 240}, - [1107] = {.lex_state = 237}, - [1108] = {.lex_state = 237}, - [1109] = {.lex_state = 240}, - [1110] = {.lex_state = 240}, - [1111] = {.lex_state = 240}, - [1112] = {.lex_state = 240}, - [1113] = {.lex_state = 240}, - [1114] = {.lex_state = 240}, - [1115] = {.lex_state = 240}, + [1094] = {.lex_state = 285}, + [1095] = {.lex_state = 285}, + [1096] = {.lex_state = 285}, + [1097] = {.lex_state = 285}, + [1098] = {.lex_state = 285}, + [1099] = {.lex_state = 285}, + [1100] = {.lex_state = 285}, + [1101] = {.lex_state = 239}, + [1102] = {.lex_state = 239}, + [1103] = {.lex_state = 285}, + [1104] = {.lex_state = 240}, + [1105] = {.lex_state = 285}, + [1106] = {.lex_state = 285}, + [1107] = {.lex_state = 285}, + [1108] = {.lex_state = 285}, + [1109] = {.lex_state = 285}, + [1110] = {.lex_state = 285}, + [1111] = {.lex_state = 239}, + [1112] = {.lex_state = 438}, + [1113] = {.lex_state = 239}, + [1114] = {.lex_state = 438}, + [1115] = {.lex_state = 438}, [1116] = {.lex_state = 237}, - [1117] = {.lex_state = 237}, + [1117] = {.lex_state = 285}, [1118] = {.lex_state = 237}, - [1119] = {.lex_state = 237}, - [1120] = {.lex_state = 237}, - [1121] = {.lex_state = 237}, - [1122] = {.lex_state = 237}, - [1123] = {.lex_state = 237}, - [1124] = {.lex_state = 237}, - [1125] = {.lex_state = 237}, - [1126] = {.lex_state = 237}, - [1127] = {.lex_state = 237}, - [1128] = {.lex_state = 237}, - [1129] = {.lex_state = 237}, - [1130] = {.lex_state = 237}, - [1131] = {.lex_state = 237}, - [1132] = {.lex_state = 237}, - [1133] = {.lex_state = 237}, - [1134] = {.lex_state = 237}, + [1119] = {.lex_state = 253}, + [1120] = {.lex_state = 253}, + [1121] = {.lex_state = 241}, + [1122] = {.lex_state = 241}, + [1123] = {.lex_state = 241}, + [1124] = {.lex_state = 240}, + [1125] = {.lex_state = 253}, + [1126] = {.lex_state = 253}, + [1127] = {.lex_state = 253}, + [1128] = {.lex_state = 240}, + [1129] = {.lex_state = 253}, + [1130] = {.lex_state = 253}, + [1131] = {.lex_state = 241}, + [1132] = {.lex_state = 241}, + [1133] = {.lex_state = 241}, + [1134] = {.lex_state = 241}, [1135] = {.lex_state = 240}, - [1136] = {.lex_state = 237}, - [1137] = {.lex_state = 237}, - [1138] = {.lex_state = 237}, - [1139] = {.lex_state = 237}, - [1140] = {.lex_state = 237}, - [1141] = {.lex_state = 237}, - [1142] = {.lex_state = 237}, - [1143] = {.lex_state = 237}, - [1144] = {.lex_state = 240}, - [1145] = {.lex_state = 237}, - [1146] = {.lex_state = 237}, - [1147] = {.lex_state = 237}, - [1148] = {.lex_state = 237}, - [1149] = {.lex_state = 240}, - [1150] = {.lex_state = 237}, - [1151] = {.lex_state = 237}, - [1152] = {.lex_state = 237}, - [1153] = {.lex_state = 237}, - [1154] = {.lex_state = 237}, - [1155] = {.lex_state = 237}, - [1156] = {.lex_state = 237}, - [1157] = {.lex_state = 237}, - [1158] = {.lex_state = 237}, - [1159] = {.lex_state = 237}, - [1160] = {.lex_state = 237}, - [1161] = {.lex_state = 237}, - [1162] = {.lex_state = 286}, - [1163] = {.lex_state = 240}, - [1164] = {.lex_state = 240}, - [1165] = {.lex_state = 240}, - [1166] = {.lex_state = 240}, - [1167] = {.lex_state = 240}, - [1168] = {.lex_state = 240}, - [1169] = {.lex_state = 240}, - [1170] = {.lex_state = 240}, - [1171] = {.lex_state = 248}, + [1136] = {.lex_state = 253}, + [1137] = {.lex_state = 241}, + [1138] = {.lex_state = 241}, + [1139] = {.lex_state = 241}, + [1140] = {.lex_state = 240}, + [1141] = {.lex_state = 253}, + [1142] = {.lex_state = 241}, + [1143] = {.lex_state = 253}, + [1144] = {.lex_state = 241}, + [1145] = {.lex_state = 241}, + [1146] = {.lex_state = 241}, + [1147] = {.lex_state = 240}, + [1148] = {.lex_state = 240}, + [1149] = {.lex_state = 241}, + [1150] = {.lex_state = 241}, + [1151] = {.lex_state = 253}, + [1152] = {.lex_state = 241}, + [1153] = {.lex_state = 240}, + [1154] = {.lex_state = 241}, + [1155] = {.lex_state = 241}, + [1156] = {.lex_state = 241}, + [1157] = {.lex_state = 240}, + [1158] = {.lex_state = 240}, + [1159] = {.lex_state = 241}, + [1160] = {.lex_state = 241}, + [1161] = {.lex_state = 253}, + [1162] = {.lex_state = 241}, + [1163] = {.lex_state = 241}, + [1164] = {.lex_state = 241}, + [1165] = {.lex_state = 241}, + [1166] = {.lex_state = 241}, + [1167] = {.lex_state = 241}, + [1168] = {.lex_state = 241}, + [1169] = {.lex_state = 241}, + [1170] = {.lex_state = 241}, + [1171] = {.lex_state = 241}, [1172] = {.lex_state = 240}, [1173] = {.lex_state = 240}, - [1174] = {.lex_state = 240}, + [1174] = {.lex_state = 237}, [1175] = {.lex_state = 240}, [1176] = {.lex_state = 240}, [1177] = {.lex_state = 240}, [1178] = {.lex_state = 240}, [1179] = {.lex_state = 240}, - [1180] = {.lex_state = 240}, + [1180] = {.lex_state = 237}, [1181] = {.lex_state = 240}, [1182] = {.lex_state = 240}, [1183] = {.lex_state = 240}, @@ -27548,76 +27925,76 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1195] = {.lex_state = 240}, [1196] = {.lex_state = 240}, [1197] = {.lex_state = 240}, - [1198] = {.lex_state = 240}, + [1198] = {.lex_state = 237}, [1199] = {.lex_state = 240}, - [1200] = {.lex_state = 240}, + [1200] = {.lex_state = 237}, [1201] = {.lex_state = 240}, - [1202] = {.lex_state = 253}, + [1202] = {.lex_state = 240}, [1203] = {.lex_state = 240}, - [1204] = {.lex_state = 240}, - [1205] = {.lex_state = 240}, + [1204] = {.lex_state = 253}, + [1205] = {.lex_state = 237}, [1206] = {.lex_state = 240}, - [1207] = {.lex_state = 240}, + [1207] = {.lex_state = 253}, [1208] = {.lex_state = 240}, [1209] = {.lex_state = 240}, [1210] = {.lex_state = 240}, [1211] = {.lex_state = 240}, - [1212] = {.lex_state = 240}, + [1212] = {.lex_state = 253}, [1213] = {.lex_state = 240}, [1214] = {.lex_state = 240}, - [1215] = {.lex_state = 240}, - [1216] = {.lex_state = 240}, + [1215] = {.lex_state = 237}, + [1216] = {.lex_state = 237}, [1217] = {.lex_state = 240}, [1218] = {.lex_state = 240}, [1219] = {.lex_state = 240}, [1220] = {.lex_state = 240}, - [1221] = {.lex_state = 240}, - [1222] = {.lex_state = 240}, - [1223] = {.lex_state = 240}, - [1224] = {.lex_state = 240}, - [1225] = {.lex_state = 240}, - [1226] = {.lex_state = 240}, - [1227] = {.lex_state = 240}, - [1228] = {.lex_state = 240}, - [1229] = {.lex_state = 240}, - [1230] = {.lex_state = 240}, - [1231] = {.lex_state = 240}, - [1232] = {.lex_state = 240}, - [1233] = {.lex_state = 240}, - [1234] = {.lex_state = 240}, - [1235] = {.lex_state = 240}, + [1221] = {.lex_state = 237}, + [1222] = {.lex_state = 237}, + [1223] = {.lex_state = 237}, + [1224] = {.lex_state = 237}, + [1225] = {.lex_state = 237}, + [1226] = {.lex_state = 237}, + [1227] = {.lex_state = 237}, + [1228] = {.lex_state = 237}, + [1229] = {.lex_state = 237}, + [1230] = {.lex_state = 237}, + [1231] = {.lex_state = 237}, + [1232] = {.lex_state = 237}, + [1233] = {.lex_state = 237}, + [1234] = {.lex_state = 237}, + [1235] = {.lex_state = 237}, [1236] = {.lex_state = 240}, - [1237] = {.lex_state = 240}, - [1238] = {.lex_state = 240}, - [1239] = {.lex_state = 240}, - [1240] = {.lex_state = 240}, - [1241] = {.lex_state = 240}, - [1242] = {.lex_state = 240}, - [1243] = {.lex_state = 240}, - [1244] = {.lex_state = 240}, - [1245] = {.lex_state = 240}, - [1246] = {.lex_state = 240}, - [1247] = {.lex_state = 240}, + [1237] = {.lex_state = 237}, + [1238] = {.lex_state = 237}, + [1239] = {.lex_state = 237}, + [1240] = {.lex_state = 237}, + [1241] = {.lex_state = 237}, + [1242] = {.lex_state = 237}, + [1243] = {.lex_state = 237}, + [1244] = {.lex_state = 237}, + [1245] = {.lex_state = 237}, + [1246] = {.lex_state = 237}, + [1247] = {.lex_state = 237}, [1248] = {.lex_state = 240}, - [1249] = {.lex_state = 240}, - [1250] = {.lex_state = 240}, - [1251] = {.lex_state = 240}, - [1252] = {.lex_state = 240}, - [1253] = {.lex_state = 240}, - [1254] = {.lex_state = 240}, - [1255] = {.lex_state = 240}, - [1256] = {.lex_state = 240}, - [1257] = {.lex_state = 240}, - [1258] = {.lex_state = 240}, - [1259] = {.lex_state = 240}, - [1260] = {.lex_state = 240}, - [1261] = {.lex_state = 240}, + [1249] = {.lex_state = 237}, + [1250] = {.lex_state = 237}, + [1251] = {.lex_state = 237}, + [1252] = {.lex_state = 237}, + [1253] = {.lex_state = 237}, + [1254] = {.lex_state = 237}, + [1255] = {.lex_state = 237}, + [1256] = {.lex_state = 237}, + [1257] = {.lex_state = 237}, + [1258] = {.lex_state = 237}, + [1259] = {.lex_state = 237}, + [1260] = {.lex_state = 237}, + [1261] = {.lex_state = 237}, [1262] = {.lex_state = 240}, - [1263] = {.lex_state = 240}, - [1264] = {.lex_state = 240}, - [1265] = {.lex_state = 240}, - [1266] = {.lex_state = 240}, - [1267] = {.lex_state = 240}, + [1263] = {.lex_state = 237}, + [1264] = {.lex_state = 237}, + [1265] = {.lex_state = 237}, + [1266] = {.lex_state = 237}, + [1267] = {.lex_state = 285}, [1268] = {.lex_state = 240}, [1269] = {.lex_state = 240}, [1270] = {.lex_state = 240}, @@ -27646,7 +28023,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1293] = {.lex_state = 240}, [1294] = {.lex_state = 240}, [1295] = {.lex_state = 240}, - [1296] = {.lex_state = 240}, + [1296] = {.lex_state = 248}, [1297] = {.lex_state = 240}, [1298] = {.lex_state = 240}, [1299] = {.lex_state = 240}, @@ -27658,7 +28035,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1305] = {.lex_state = 240}, [1306] = {.lex_state = 240}, [1307] = {.lex_state = 240}, - [1308] = {.lex_state = 240}, + [1308] = {.lex_state = 253}, [1309] = {.lex_state = 240}, [1310] = {.lex_state = 240}, [1311] = {.lex_state = 240}, @@ -28189,8171 +28566,8171 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1836] = {.lex_state = 240}, [1837] = {.lex_state = 240}, [1838] = {.lex_state = 240}, - [1839] = {.lex_state = 286}, - [1840] = {.lex_state = 286}, - [1841] = {.lex_state = 267}, - [1842] = {.lex_state = 267}, - [1843] = {.lex_state = 267}, - [1844] = {.lex_state = 286}, - [1845] = {.lex_state = 286}, - [1846] = {.lex_state = 286}, - [1847] = {.lex_state = 267}, - [1848] = {.lex_state = 286}, - [1849] = {.lex_state = 286}, - [1850] = {.lex_state = 286}, - [1851] = {.lex_state = 286}, - [1852] = {.lex_state = 286}, - [1853] = {.lex_state = 265}, - [1854] = {.lex_state = 334}, - [1855] = {.lex_state = 265}, - [1856] = {.lex_state = 334}, - [1857] = {.lex_state = 265}, - [1858] = {.lex_state = 265}, - [1859] = {.lex_state = 265}, - [1860] = {.lex_state = 265}, - [1861] = {.lex_state = 265}, - [1862] = {.lex_state = 265}, - [1863] = {.lex_state = 334}, - [1864] = {.lex_state = 334}, - [1865] = {.lex_state = 265}, - [1866] = {.lex_state = 265}, - [1867] = {.lex_state = 289}, - [1868] = {.lex_state = 265}, - [1869] = {.lex_state = 289}, - [1870] = {.lex_state = 267}, - [1871] = {.lex_state = 267}, - [1872] = {.lex_state = 271}, - [1873] = {.lex_state = 271}, - [1874] = {.lex_state = 298}, - [1875] = {.lex_state = 298}, - [1876] = {.lex_state = 286}, - [1877] = {.lex_state = 286}, - [1878] = {.lex_state = 237}, - [1879] = {.lex_state = 267}, - [1880] = {.lex_state = 286}, - [1881] = {.lex_state = 237}, - [1882] = {.lex_state = 286}, - [1883] = {.lex_state = 237}, - [1884] = {.lex_state = 243}, - [1885] = {.lex_state = 289}, - [1886] = {.lex_state = 243}, - [1887] = {.lex_state = 243}, - [1888] = {.lex_state = 289}, - [1889] = {.lex_state = 272}, - [1890] = {.lex_state = 272}, - [1891] = {.lex_state = 272}, - [1892] = {.lex_state = 272}, - [1893] = {.lex_state = 243}, - [1894] = {.lex_state = 287}, - [1895] = {.lex_state = 249}, - [1896] = {.lex_state = 267}, - [1897] = {.lex_state = 315}, - [1898] = {.lex_state = 287}, - [1899] = {.lex_state = 267}, - [1900] = {.lex_state = 315}, - [1901] = {.lex_state = 267}, - [1902] = {.lex_state = 265}, - [1903] = {.lex_state = 287}, - [1904] = {.lex_state = 287}, - [1905] = {.lex_state = 315}, - [1906] = {.lex_state = 315}, - [1907] = {.lex_state = 315}, - [1908] = {.lex_state = 315}, - [1909] = {.lex_state = 315}, - [1910] = {.lex_state = 243}, - [1911] = {.lex_state = 243}, - [1912] = {.lex_state = 287}, - [1913] = {.lex_state = 273}, - [1914] = {.lex_state = 287}, - [1915] = {.lex_state = 287}, - [1916] = {.lex_state = 287}, - [1917] = {.lex_state = 287}, - [1918] = {.lex_state = 267}, - [1919] = {.lex_state = 272}, - [1920] = {.lex_state = 250}, - [1921] = {.lex_state = 272}, - [1922] = {.lex_state = 272}, - [1923] = {.lex_state = 250}, - [1924] = {.lex_state = 265}, - [1925] = {.lex_state = 272}, - [1926] = {.lex_state = 272}, - [1927] = {.lex_state = 272}, - [1928] = {.lex_state = 272}, - [1929] = {.lex_state = 250}, - [1930] = {.lex_state = 256}, - [1931] = {.lex_state = 273}, - [1932] = {.lex_state = 255}, - [1933] = {.lex_state = 290}, - [1934] = {.lex_state = 256}, - [1935] = {.lex_state = 255}, - [1936] = {.lex_state = 290}, - [1937] = {.lex_state = 243}, - [1938] = {.lex_state = 255}, - [1939] = {.lex_state = 243}, - [1940] = {.lex_state = 243}, - [1941] = {.lex_state = 273}, - [1942] = {.lex_state = 267}, - [1943] = {.lex_state = 267}, - [1944] = {.lex_state = 287}, - [1945] = {.lex_state = 267}, - [1946] = {.lex_state = 287}, - [1947] = {.lex_state = 287}, - [1948] = {.lex_state = 287}, - [1949] = {.lex_state = 287}, - [1950] = {.lex_state = 287}, - [1951] = {.lex_state = 287}, - [1952] = {.lex_state = 301}, - [1953] = {.lex_state = 273}, - [1954] = {.lex_state = 287}, - [1955] = {.lex_state = 287}, - [1956] = {.lex_state = 315}, - [1957] = {.lex_state = 270}, - [1958] = {.lex_state = 267}, - [1959] = {.lex_state = 267}, - [1960] = {.lex_state = 270}, - [1961] = {.lex_state = 267}, - [1962] = {.lex_state = 301}, - [1963] = {.lex_state = 269}, - [1964] = {.lex_state = 272}, - [1965] = {.lex_state = 273}, - [1966] = {.lex_state = 272}, - [1967] = {.lex_state = 272}, - [1968] = {.lex_state = 287}, - [1969] = {.lex_state = 269}, - [1970] = {.lex_state = 280}, - [1971] = {.lex_state = 280}, - [1972] = {.lex_state = 273}, - [1973] = {.lex_state = 272}, - [1974] = {.lex_state = 269}, - [1975] = {.lex_state = 272}, - [1976] = {.lex_state = 280}, - [1977] = {.lex_state = 280}, - [1978] = {.lex_state = 290}, - [1979] = {.lex_state = 269}, - [1980] = {.lex_state = 269}, - [1981] = {.lex_state = 269}, - [1982] = {.lex_state = 269}, - [1983] = {.lex_state = 269}, - [1984] = {.lex_state = 269}, - [1985] = {.lex_state = 269}, - [1986] = {.lex_state = 269}, - [1987] = {.lex_state = 269}, - [1988] = {.lex_state = 273}, - [1989] = {.lex_state = 273}, - [1990] = {.lex_state = 269}, - [1991] = {.lex_state = 290}, - [1992] = {.lex_state = 290}, - [1993] = {.lex_state = 290}, - [1994] = {.lex_state = 272}, - [1995] = {.lex_state = 269}, - [1996] = {.lex_state = 270}, - [1997] = {.lex_state = 269}, - [1998] = {.lex_state = 272}, - [1999] = {.lex_state = 270}, - [2000] = {.lex_state = 286}, - [2001] = {.lex_state = 272}, - [2002] = {.lex_state = 272}, - [2003] = {.lex_state = 272}, - [2004] = {.lex_state = 272}, - [2005] = {.lex_state = 272}, + [1839] = {.lex_state = 240}, + [1840] = {.lex_state = 240}, + [1841] = {.lex_state = 240}, + [1842] = {.lex_state = 240}, + [1843] = {.lex_state = 240}, + [1844] = {.lex_state = 240}, + [1845] = {.lex_state = 240}, + [1846] = {.lex_state = 240}, + [1847] = {.lex_state = 240}, + [1848] = {.lex_state = 240}, + [1849] = {.lex_state = 240}, + [1850] = {.lex_state = 240}, + [1851] = {.lex_state = 240}, + [1852] = {.lex_state = 240}, + [1853] = {.lex_state = 240}, + [1854] = {.lex_state = 240}, + [1855] = {.lex_state = 240}, + [1856] = {.lex_state = 240}, + [1857] = {.lex_state = 240}, + [1858] = {.lex_state = 240}, + [1859] = {.lex_state = 240}, + [1860] = {.lex_state = 240}, + [1861] = {.lex_state = 240}, + [1862] = {.lex_state = 240}, + [1863] = {.lex_state = 240}, + [1864] = {.lex_state = 240}, + [1865] = {.lex_state = 240}, + [1866] = {.lex_state = 240}, + [1867] = {.lex_state = 240}, + [1868] = {.lex_state = 240}, + [1869] = {.lex_state = 240}, + [1870] = {.lex_state = 240}, + [1871] = {.lex_state = 240}, + [1872] = {.lex_state = 240}, + [1873] = {.lex_state = 240}, + [1874] = {.lex_state = 240}, + [1875] = {.lex_state = 240}, + [1876] = {.lex_state = 240}, + [1877] = {.lex_state = 240}, + [1878] = {.lex_state = 240}, + [1879] = {.lex_state = 240}, + [1880] = {.lex_state = 240}, + [1881] = {.lex_state = 240}, + [1882] = {.lex_state = 240}, + [1883] = {.lex_state = 240}, + [1884] = {.lex_state = 240}, + [1885] = {.lex_state = 240}, + [1886] = {.lex_state = 240}, + [1887] = {.lex_state = 240}, + [1888] = {.lex_state = 240}, + [1889] = {.lex_state = 240}, + [1890] = {.lex_state = 240}, + [1891] = {.lex_state = 240}, + [1892] = {.lex_state = 240}, + [1893] = {.lex_state = 240}, + [1894] = {.lex_state = 240}, + [1895] = {.lex_state = 240}, + [1896] = {.lex_state = 240}, + [1897] = {.lex_state = 240}, + [1898] = {.lex_state = 240}, + [1899] = {.lex_state = 240}, + [1900] = {.lex_state = 240}, + [1901] = {.lex_state = 240}, + [1902] = {.lex_state = 240}, + [1903] = {.lex_state = 240}, + [1904] = {.lex_state = 240}, + [1905] = {.lex_state = 240}, + [1906] = {.lex_state = 240}, + [1907] = {.lex_state = 240}, + [1908] = {.lex_state = 240}, + [1909] = {.lex_state = 240}, + [1910] = {.lex_state = 240}, + [1911] = {.lex_state = 240}, + [1912] = {.lex_state = 240}, + [1913] = {.lex_state = 240}, + [1914] = {.lex_state = 240}, + [1915] = {.lex_state = 240}, + [1916] = {.lex_state = 240}, + [1917] = {.lex_state = 240}, + [1918] = {.lex_state = 240}, + [1919] = {.lex_state = 240}, + [1920] = {.lex_state = 240}, + [1921] = {.lex_state = 240}, + [1922] = {.lex_state = 240}, + [1923] = {.lex_state = 240}, + [1924] = {.lex_state = 240}, + [1925] = {.lex_state = 240}, + [1926] = {.lex_state = 240}, + [1927] = {.lex_state = 240}, + [1928] = {.lex_state = 240}, + [1929] = {.lex_state = 240}, + [1930] = {.lex_state = 240}, + [1931] = {.lex_state = 240}, + [1932] = {.lex_state = 240}, + [1933] = {.lex_state = 240}, + [1934] = {.lex_state = 240}, + [1935] = {.lex_state = 240}, + [1936] = {.lex_state = 240}, + [1937] = {.lex_state = 240}, + [1938] = {.lex_state = 240}, + [1939] = {.lex_state = 240}, + [1940] = {.lex_state = 240}, + [1941] = {.lex_state = 240}, + [1942] = {.lex_state = 240}, + [1943] = {.lex_state = 240}, + [1944] = {.lex_state = 285}, + [1945] = {.lex_state = 285}, + [1946] = {.lex_state = 266}, + [1947] = {.lex_state = 266}, + [1948] = {.lex_state = 285}, + [1949] = {.lex_state = 285}, + [1950] = {.lex_state = 285}, + [1951] = {.lex_state = 285}, + [1952] = {.lex_state = 285}, + [1953] = {.lex_state = 266}, + [1954] = {.lex_state = 285}, + [1955] = {.lex_state = 285}, + [1956] = {.lex_state = 285}, + [1957] = {.lex_state = 266}, + [1958] = {.lex_state = 265}, + [1959] = {.lex_state = 265}, + [1960] = {.lex_state = 333}, + [1961] = {.lex_state = 333}, + [1962] = {.lex_state = 333}, + [1963] = {.lex_state = 265}, + [1964] = {.lex_state = 265}, + [1965] = {.lex_state = 265}, + [1966] = {.lex_state = 265}, + [1967] = {.lex_state = 265}, + [1968] = {.lex_state = 265}, + [1969] = {.lex_state = 265}, + [1970] = {.lex_state = 265}, + [1971] = {.lex_state = 333}, + [1972] = {.lex_state = 289}, + [1973] = {.lex_state = 265}, + [1974] = {.lex_state = 289}, + [1975] = {.lex_state = 298}, + [1976] = {.lex_state = 266}, + [1977] = {.lex_state = 270}, + [1978] = {.lex_state = 270}, + [1979] = {.lex_state = 266}, + [1980] = {.lex_state = 298}, + [1981] = {.lex_state = 285}, + [1982] = {.lex_state = 237}, + [1983] = {.lex_state = 237}, + [1984] = {.lex_state = 266}, + [1985] = {.lex_state = 285}, + [1986] = {.lex_state = 285}, + [1987] = {.lex_state = 237}, + [1988] = {.lex_state = 285}, + [1989] = {.lex_state = 289}, + [1990] = {.lex_state = 243}, + [1991] = {.lex_state = 289}, + [1992] = {.lex_state = 243}, + [1993] = {.lex_state = 243}, + [1994] = {.lex_state = 271}, + [1995] = {.lex_state = 271}, + [1996] = {.lex_state = 271}, + [1997] = {.lex_state = 271}, + [1998] = {.lex_state = 243}, + [1999] = {.lex_state = 287}, + [2000] = {.lex_state = 243}, + [2001] = {.lex_state = 266}, + [2002] = {.lex_state = 265}, + [2003] = {.lex_state = 287}, + [2004] = {.lex_state = 249}, + [2005] = {.lex_state = 287}, [2006] = {.lex_state = 272}, - [2007] = {.lex_state = 272}, - [2008] = {.lex_state = 270}, - [2009] = {.lex_state = 272}, - [2010] = {.lex_state = 286}, - [2011] = {.lex_state = 289}, - [2012] = {.lex_state = 270}, - [2013] = {.lex_state = 286}, - [2014] = {.lex_state = 286}, - [2015] = {.lex_state = 301}, - [2016] = {.lex_state = 272}, - [2017] = {.lex_state = 272}, - [2018] = {.lex_state = 272}, - [2019] = {.lex_state = 272}, - [2020] = {.lex_state = 272}, - [2021] = {.lex_state = 272}, - [2022] = {.lex_state = 269}, - [2023] = {.lex_state = 301}, - [2024] = {.lex_state = 273}, - [2025] = {.lex_state = 315}, - [2026] = {.lex_state = 269}, - [2027] = {.lex_state = 273}, - [2028] = {.lex_state = 286}, - [2029] = {.lex_state = 315}, - [2030] = {.lex_state = 269}, - [2031] = {.lex_state = 286}, - [2032] = {.lex_state = 298}, - [2033] = {.lex_state = 272}, - [2034] = {.lex_state = 272}, - [2035] = {.lex_state = 272}, - [2036] = {.lex_state = 272}, - [2037] = {.lex_state = 286}, - [2038] = {.lex_state = 286}, - [2039] = {.lex_state = 273}, - [2040] = {.lex_state = 271}, - [2041] = {.lex_state = 269}, - [2042] = {.lex_state = 272}, - [2043] = {.lex_state = 272}, - [2044] = {.lex_state = 269}, - [2045] = {.lex_state = 315}, - [2046] = {.lex_state = 272}, + [2007] = {.lex_state = 287}, + [2008] = {.lex_state = 287}, + [2009] = {.lex_state = 287}, + [2010] = {.lex_state = 315}, + [2011] = {.lex_state = 315}, + [2012] = {.lex_state = 287}, + [2013] = {.lex_state = 287}, + [2014] = {.lex_state = 287}, + [2015] = {.lex_state = 315}, + [2016] = {.lex_state = 266}, + [2017] = {.lex_state = 266}, + [2018] = {.lex_state = 243}, + [2019] = {.lex_state = 315}, + [2020] = {.lex_state = 315}, + [2021] = {.lex_state = 315}, + [2022] = {.lex_state = 315}, + [2023] = {.lex_state = 271}, + [2024] = {.lex_state = 271}, + [2025] = {.lex_state = 271}, + [2026] = {.lex_state = 266}, + [2027] = {.lex_state = 271}, + [2028] = {.lex_state = 271}, + [2029] = {.lex_state = 271}, + [2030] = {.lex_state = 271}, + [2031] = {.lex_state = 265}, + [2032] = {.lex_state = 250}, + [2033] = {.lex_state = 250}, + [2034] = {.lex_state = 250}, + [2035] = {.lex_state = 255}, + [2036] = {.lex_state = 243}, + [2037] = {.lex_state = 272}, + [2038] = {.lex_state = 290}, + [2039] = {.lex_state = 255}, + [2040] = {.lex_state = 256}, + [2041] = {.lex_state = 290}, + [2042] = {.lex_state = 243}, + [2043] = {.lex_state = 255}, + [2044] = {.lex_state = 256}, + [2045] = {.lex_state = 266}, + [2046] = {.lex_state = 287}, [2047] = {.lex_state = 272}, - [2048] = {.lex_state = 272}, - [2049] = {.lex_state = 269}, - [2050] = {.lex_state = 286}, - [2051] = {.lex_state = 286}, - [2052] = {.lex_state = 315}, - [2053] = {.lex_state = 272}, - [2054] = {.lex_state = 286}, - [2055] = {.lex_state = 272}, - [2056] = {.lex_state = 286}, - [2057] = {.lex_state = 286}, - [2058] = {.lex_state = 286}, - [2059] = {.lex_state = 286}, - [2060] = {.lex_state = 286}, - [2061] = {.lex_state = 315}, - [2062] = {.lex_state = 269}, - [2063] = {.lex_state = 269}, - [2064] = {.lex_state = 286}, - [2065] = {.lex_state = 286}, - [2066] = {.lex_state = 269}, - [2067] = {.lex_state = 269}, - [2068] = {.lex_state = 269}, - [2069] = {.lex_state = 272}, - [2070] = {.lex_state = 272}, + [2048] = {.lex_state = 266}, + [2049] = {.lex_state = 287}, + [2050] = {.lex_state = 287}, + [2051] = {.lex_state = 272}, + [2052] = {.lex_state = 243}, + [2053] = {.lex_state = 315}, + [2054] = {.lex_state = 266}, + [2055] = {.lex_state = 287}, + [2056] = {.lex_state = 269}, + [2057] = {.lex_state = 287}, + [2058] = {.lex_state = 266}, + [2059] = {.lex_state = 266}, + [2060] = {.lex_state = 301}, + [2061] = {.lex_state = 287}, + [2062] = {.lex_state = 301}, + [2063] = {.lex_state = 266}, + [2064] = {.lex_state = 269}, + [2065] = {.lex_state = 287}, + [2066] = {.lex_state = 287}, + [2067] = {.lex_state = 287}, + [2068] = {.lex_state = 271}, + [2069] = {.lex_state = 279}, + [2070] = {.lex_state = 271}, [2071] = {.lex_state = 272}, - [2072] = {.lex_state = 270}, - [2073] = {.lex_state = 272}, - [2074] = {.lex_state = 272}, - [2075] = {.lex_state = 270}, + [2072] = {.lex_state = 279}, + [2073] = {.lex_state = 268}, + [2074] = {.lex_state = 287}, + [2075] = {.lex_state = 271}, [2076] = {.lex_state = 272}, - [2077] = {.lex_state = 272}, - [2078] = {.lex_state = 272}, - [2079] = {.lex_state = 272}, - [2080] = {.lex_state = 272}, - [2081] = {.lex_state = 269}, - [2082] = {.lex_state = 272}, - [2083] = {.lex_state = 270}, - [2084] = {.lex_state = 272}, - [2085] = {.lex_state = 272}, - [2086] = {.lex_state = 272}, - [2087] = {.lex_state = 270}, - [2088] = {.lex_state = 270}, - [2089] = {.lex_state = 272}, - [2090] = {.lex_state = 272}, - [2091] = {.lex_state = 272}, - [2092] = {.lex_state = 272}, + [2077] = {.lex_state = 268}, + [2078] = {.lex_state = 268}, + [2079] = {.lex_state = 279}, + [2080] = {.lex_state = 279}, + [2081] = {.lex_state = 271}, + [2082] = {.lex_state = 271}, + [2083] = {.lex_state = 268}, + [2084] = {.lex_state = 290}, + [2085] = {.lex_state = 290}, + [2086] = {.lex_state = 268}, + [2087] = {.lex_state = 271}, + [2088] = {.lex_state = 268}, + [2089] = {.lex_state = 268}, + [2090] = {.lex_state = 268}, + [2091] = {.lex_state = 268}, + [2092] = {.lex_state = 290}, [2093] = {.lex_state = 272}, - [2094] = {.lex_state = 272}, + [2094] = {.lex_state = 268}, [2095] = {.lex_state = 272}, - [2096] = {.lex_state = 269}, - [2097] = {.lex_state = 272}, - [2098] = {.lex_state = 272}, - [2099] = {.lex_state = 272}, - [2100] = {.lex_state = 272}, - [2101] = {.lex_state = 272}, - [2102] = {.lex_state = 272}, - [2103] = {.lex_state = 272}, - [2104] = {.lex_state = 272}, - [2105] = {.lex_state = 292}, - [2106] = {.lex_state = 290}, - [2107] = {.lex_state = 272}, - [2108] = {.lex_state = 272}, - [2109] = {.lex_state = 272}, - [2110] = {.lex_state = 272}, - [2111] = {.lex_state = 272}, - [2112] = {.lex_state = 272}, - [2113] = {.lex_state = 273}, - [2114] = {.lex_state = 272}, - [2115] = {.lex_state = 273}, - [2116] = {.lex_state = 273}, - [2117] = {.lex_state = 272}, - [2118] = {.lex_state = 272}, - [2119] = {.lex_state = 292}, - [2120] = {.lex_state = 272}, - [2121] = {.lex_state = 272}, - [2122] = {.lex_state = 270}, - [2123] = {.lex_state = 270}, - [2124] = {.lex_state = 270}, - [2125] = {.lex_state = 270}, - [2126] = {.lex_state = 272}, - [2127] = {.lex_state = 269}, - [2128] = {.lex_state = 270}, - [2129] = {.lex_state = 269}, - [2130] = {.lex_state = 270}, - [2131] = {.lex_state = 290}, - [2132] = {.lex_state = 270}, - [2133] = {.lex_state = 270}, - [2134] = {.lex_state = 272}, - [2135] = {.lex_state = 272}, - [2136] = {.lex_state = 309}, - [2137] = {.lex_state = 272}, - [2138] = {.lex_state = 272}, - [2139] = {.lex_state = 272}, - [2140] = {.lex_state = 272}, - [2141] = {.lex_state = 272}, - [2142] = {.lex_state = 272}, - [2143] = {.lex_state = 272}, - [2144] = {.lex_state = 317}, - [2145] = {.lex_state = 305}, - [2146] = {.lex_state = 272}, - [2147] = {.lex_state = 272}, - [2148] = {.lex_state = 272}, - [2149] = {.lex_state = 272}, - [2150] = {.lex_state = 272}, - [2151] = {.lex_state = 272}, - [2152] = {.lex_state = 280}, - [2153] = {.lex_state = 317}, - [2154] = {.lex_state = 324}, - [2155] = {.lex_state = 269}, - [2156] = {.lex_state = 272}, - [2157] = {.lex_state = 280}, - [2158] = {.lex_state = 272}, - [2159] = {.lex_state = 272}, - [2160] = {.lex_state = 272}, - [2161] = {.lex_state = 272}, - [2162] = {.lex_state = 309}, - [2163] = {.lex_state = 292}, - [2164] = {.lex_state = 272}, - [2165] = {.lex_state = 272}, - [2166] = {.lex_state = 267}, - [2167] = {.lex_state = 272}, - [2168] = {.lex_state = 272}, - [2169] = {.lex_state = 305}, - [2170] = {.lex_state = 289}, - [2171] = {.lex_state = 272}, - [2172] = {.lex_state = 272}, - [2173] = {.lex_state = 272}, - [2174] = {.lex_state = 272}, - [2175] = {.lex_state = 272}, - [2176] = {.lex_state = 267}, - [2177] = {.lex_state = 267}, - [2178] = {.lex_state = 272}, - [2179] = {.lex_state = 334}, - [2180] = {.lex_state = 324}, - [2181] = {.lex_state = 272}, - [2182] = {.lex_state = 272}, - [2183] = {.lex_state = 267}, - [2184] = {.lex_state = 272}, - [2185] = {.lex_state = 290}, - [2186] = {.lex_state = 305}, - [2187] = {.lex_state = 286}, - [2188] = {.lex_state = 290}, - [2189] = {.lex_state = 290}, - [2190] = {.lex_state = 286}, - [2191] = {.lex_state = 286}, - [2192] = {.lex_state = 290}, - [2193] = {.lex_state = 267}, - [2194] = {.lex_state = 286}, - [2195] = {.lex_state = 289}, - [2196] = {.lex_state = 286}, - [2197] = {.lex_state = 286}, - [2198] = {.lex_state = 270}, - [2199] = {.lex_state = 309}, - [2200] = {.lex_state = 267}, - [2201] = {.lex_state = 273}, - [2202] = {.lex_state = 286}, - [2203] = {.lex_state = 290}, - [2204] = {.lex_state = 267}, - [2205] = {.lex_state = 267}, - [2206] = {.lex_state = 289}, - [2207] = {.lex_state = 267}, - [2208] = {.lex_state = 267}, - [2209] = {.lex_state = 290}, - [2210] = {.lex_state = 267}, - [2211] = {.lex_state = 286}, - [2212] = {.lex_state = 286}, - [2213] = {.lex_state = 272}, - [2214] = {.lex_state = 272}, - [2215] = {.lex_state = 280}, - [2216] = {.lex_state = 289}, - [2217] = {.lex_state = 267}, - [2218] = {.lex_state = 286}, - [2219] = {.lex_state = 290}, - [2220] = {.lex_state = 292}, + [2096] = {.lex_state = 268}, + [2097] = {.lex_state = 268}, + [2098] = {.lex_state = 268}, + [2099] = {.lex_state = 290}, + [2100] = {.lex_state = 268}, + [2101] = {.lex_state = 271}, + [2102] = {.lex_state = 271}, + [2103] = {.lex_state = 271}, + [2104] = {.lex_state = 268}, + [2105] = {.lex_state = 271}, + [2106] = {.lex_state = 289}, + [2107] = {.lex_state = 271}, + [2108] = {.lex_state = 269}, + [2109] = {.lex_state = 285}, + [2110] = {.lex_state = 269}, + [2111] = {.lex_state = 285}, + [2112] = {.lex_state = 268}, + [2113] = {.lex_state = 271}, + [2114] = {.lex_state = 271}, + [2115] = {.lex_state = 269}, + [2116] = {.lex_state = 285}, + [2117] = {.lex_state = 301}, + [2118] = {.lex_state = 271}, + [2119] = {.lex_state = 271}, + [2120] = {.lex_state = 269}, + [2121] = {.lex_state = 271}, + [2122] = {.lex_state = 271}, + [2123] = {.lex_state = 285}, + [2124] = {.lex_state = 271}, + [2125] = {.lex_state = 271}, + [2126] = {.lex_state = 271}, + [2127] = {.lex_state = 301}, + [2128] = {.lex_state = 271}, + [2129] = {.lex_state = 271}, + [2130] = {.lex_state = 315}, + [2131] = {.lex_state = 315}, + [2132] = {.lex_state = 268}, + [2133] = {.lex_state = 285}, + [2134] = {.lex_state = 271}, + [2135] = {.lex_state = 285}, + [2136] = {.lex_state = 271}, + [2137] = {.lex_state = 271}, + [2138] = {.lex_state = 315}, + [2139] = {.lex_state = 271}, + [2140] = {.lex_state = 271}, + [2141] = {.lex_state = 285}, + [2142] = {.lex_state = 315}, + [2143] = {.lex_state = 285}, + [2144] = {.lex_state = 271}, + [2145] = {.lex_state = 298}, + [2146] = {.lex_state = 268}, + [2147] = {.lex_state = 268}, + [2148] = {.lex_state = 268}, + [2149] = {.lex_state = 285}, + [2150] = {.lex_state = 285}, + [2151] = {.lex_state = 268}, + [2152] = {.lex_state = 285}, + [2153] = {.lex_state = 272}, + [2154] = {.lex_state = 285}, + [2155] = {.lex_state = 272}, + [2156] = {.lex_state = 285}, + [2157] = {.lex_state = 285}, + [2158] = {.lex_state = 271}, + [2159] = {.lex_state = 285}, + [2160] = {.lex_state = 285}, + [2161] = {.lex_state = 271}, + [2162] = {.lex_state = 272}, + [2163] = {.lex_state = 268}, + [2164] = {.lex_state = 270}, + [2165] = {.lex_state = 271}, + [2166] = {.lex_state = 285}, + [2167] = {.lex_state = 268}, + [2168] = {.lex_state = 285}, + [2169] = {.lex_state = 268}, + [2170] = {.lex_state = 268}, + [2171] = {.lex_state = 271}, + [2172] = {.lex_state = 271}, + [2173] = {.lex_state = 315}, + [2174] = {.lex_state = 268}, + [2175] = {.lex_state = 269}, + [2176] = {.lex_state = 271}, + [2177] = {.lex_state = 271}, + [2178] = {.lex_state = 271}, + [2179] = {.lex_state = 272}, + [2180] = {.lex_state = 292}, + [2181] = {.lex_state = 271}, + [2182] = {.lex_state = 290}, + [2183] = {.lex_state = 271}, + [2184] = {.lex_state = 271}, + [2185] = {.lex_state = 271}, + [2186] = {.lex_state = 271}, + [2187] = {.lex_state = 272}, + [2188] = {.lex_state = 292}, + [2189] = {.lex_state = 271}, + [2190] = {.lex_state = 271}, + [2191] = {.lex_state = 271}, + [2192] = {.lex_state = 271}, + [2193] = {.lex_state = 271}, + [2194] = {.lex_state = 271}, + [2195] = {.lex_state = 271}, + [2196] = {.lex_state = 271}, + [2197] = {.lex_state = 271}, + [2198] = {.lex_state = 271}, + [2199] = {.lex_state = 271}, + [2200] = {.lex_state = 271}, + [2201] = {.lex_state = 271}, + [2202] = {.lex_state = 271}, + [2203] = {.lex_state = 271}, + [2204] = {.lex_state = 271}, + [2205] = {.lex_state = 271}, + [2206] = {.lex_state = 268}, + [2207] = {.lex_state = 271}, + [2208] = {.lex_state = 269}, + [2209] = {.lex_state = 269}, + [2210] = {.lex_state = 272}, + [2211] = {.lex_state = 268}, + [2212] = {.lex_state = 269}, + [2213] = {.lex_state = 269}, + [2214] = {.lex_state = 269}, + [2215] = {.lex_state = 269}, + [2216] = {.lex_state = 269}, + [2217] = {.lex_state = 269}, + [2218] = {.lex_state = 269}, + [2219] = {.lex_state = 269}, + [2220] = {.lex_state = 269}, [2221] = {.lex_state = 271}, - [2222] = {.lex_state = 292}, - [2223] = {.lex_state = 298}, - [2224] = {.lex_state = 301}, - [2225] = {.lex_state = 301}, - [2226] = {.lex_state = 301}, - [2227] = {.lex_state = 301}, - [2228] = {.lex_state = 301}, - [2229] = {.lex_state = 301}, - [2230] = {.lex_state = 270}, - [2231] = {.lex_state = 270}, - [2232] = {.lex_state = 270}, - [2233] = {.lex_state = 270}, - [2234] = {.lex_state = 270}, - [2235] = {.lex_state = 270}, - [2236] = {.lex_state = 273}, - [2237] = {.lex_state = 298}, - [2238] = {.lex_state = 289}, - [2239] = {.lex_state = 298}, - [2240] = {.lex_state = 292}, - [2241] = {.lex_state = 286}, - [2242] = {.lex_state = 270}, - [2243] = {.lex_state = 289}, - [2244] = {.lex_state = 289}, - [2245] = {.lex_state = 292}, - [2246] = {.lex_state = 289}, - [2247] = {.lex_state = 289}, - [2248] = {.lex_state = 289}, - [2249] = {.lex_state = 289}, - [2250] = {.lex_state = 292}, - [2251] = {.lex_state = 271}, - [2252] = {.lex_state = 271}, - [2253] = {.lex_state = 292}, - [2254] = {.lex_state = 272}, - [2255] = {.lex_state = 272}, - [2256] = {.lex_state = 289}, - [2257] = {.lex_state = 290}, - [2258] = {.lex_state = 301}, - [2259] = {.lex_state = 305}, + [2222] = {.lex_state = 271}, + [2223] = {.lex_state = 268}, + [2224] = {.lex_state = 290}, + [2225] = {.lex_state = 271}, + [2226] = {.lex_state = 271}, + [2227] = {.lex_state = 271}, + [2228] = {.lex_state = 271}, + [2229] = {.lex_state = 271}, + [2230] = {.lex_state = 271}, + [2231] = {.lex_state = 268}, + [2232] = {.lex_state = 271}, + [2233] = {.lex_state = 271}, + [2234] = {.lex_state = 271}, + [2235] = {.lex_state = 271}, + [2236] = {.lex_state = 271}, + [2237] = {.lex_state = 271}, + [2238] = {.lex_state = 271}, + [2239] = {.lex_state = 269}, + [2240] = {.lex_state = 271}, + [2241] = {.lex_state = 271}, + [2242] = {.lex_state = 271}, + [2243] = {.lex_state = 271}, + [2244] = {.lex_state = 271}, + [2245] = {.lex_state = 271}, + [2246] = {.lex_state = 271}, + [2247] = {.lex_state = 266}, + [2248] = {.lex_state = 266}, + [2249] = {.lex_state = 316}, + [2250] = {.lex_state = 271}, + [2251] = {.lex_state = 268}, + [2252] = {.lex_state = 333}, + [2253] = {.lex_state = 271}, + [2254] = {.lex_state = 271}, + [2255] = {.lex_state = 289}, + [2256] = {.lex_state = 271}, + [2257] = {.lex_state = 266}, + [2258] = {.lex_state = 309}, + [2259] = {.lex_state = 271}, [2260] = {.lex_state = 271}, - [2261] = {.lex_state = 272}, - [2262] = {.lex_state = 272}, + [2261] = {.lex_state = 271}, + [2262] = {.lex_state = 271}, [2263] = {.lex_state = 309}, - [2264] = {.lex_state = 272}, - [2265] = {.lex_state = 272}, - [2266] = {.lex_state = 272}, - [2267] = {.lex_state = 272}, - [2268] = {.lex_state = 281}, - [2269] = {.lex_state = 305}, - [2270] = {.lex_state = 272}, - [2271] = {.lex_state = 305}, - [2272] = {.lex_state = 309}, - [2273] = {.lex_state = 309}, - [2274] = {.lex_state = 309}, - [2275] = {.lex_state = 292}, - [2276] = {.lex_state = 301}, - [2277] = {.lex_state = 292}, - [2278] = {.lex_state = 292}, - [2279] = {.lex_state = 281}, - [2280] = {.lex_state = 305}, - [2281] = {.lex_state = 298}, - [2282] = {.lex_state = 281}, - [2283] = {.lex_state = 281}, - [2284] = {.lex_state = 309}, - [2285] = {.lex_state = 290}, - [2286] = {.lex_state = 290}, - [2287] = {.lex_state = 290}, - [2288] = {.lex_state = 289}, + [2264] = {.lex_state = 266}, + [2265] = {.lex_state = 271}, + [2266] = {.lex_state = 271}, + [2267] = {.lex_state = 324}, + [2268] = {.lex_state = 271}, + [2269] = {.lex_state = 271}, + [2270] = {.lex_state = 292}, + [2271] = {.lex_state = 271}, + [2272] = {.lex_state = 271}, + [2273] = {.lex_state = 271}, + [2274] = {.lex_state = 279}, + [2275] = {.lex_state = 279}, + [2276] = {.lex_state = 271}, + [2277] = {.lex_state = 316}, + [2278] = {.lex_state = 271}, + [2279] = {.lex_state = 271}, + [2280] = {.lex_state = 271}, + [2281] = {.lex_state = 324}, + [2282] = {.lex_state = 271}, + [2283] = {.lex_state = 305}, + [2284] = {.lex_state = 271}, + [2285] = {.lex_state = 305}, + [2286] = {.lex_state = 271}, + [2287] = {.lex_state = 271}, + [2288] = {.lex_state = 271}, [2289] = {.lex_state = 290}, - [2290] = {.lex_state = 290}, - [2291] = {.lex_state = 289}, + [2290] = {.lex_state = 285}, + [2291] = {.lex_state = 266}, [2292] = {.lex_state = 290}, - [2293] = {.lex_state = 270}, - [2294] = {.lex_state = 290}, - [2295] = {.lex_state = 305}, + [2293] = {.lex_state = 266}, + [2294] = {.lex_state = 285}, + [2295] = {.lex_state = 290}, [2296] = {.lex_state = 290}, [2297] = {.lex_state = 290}, [2298] = {.lex_state = 290}, - [2299] = {.lex_state = 289}, - [2300] = {.lex_state = 289}, - [2301] = {.lex_state = 290}, - [2302] = {.lex_state = 290}, - [2303] = {.lex_state = 289}, - [2304] = {.lex_state = 289}, - [2305] = {.lex_state = 290}, - [2306] = {.lex_state = 290}, - [2307] = {.lex_state = 290}, - [2308] = {.lex_state = 290}, - [2309] = {.lex_state = 237}, - [2310] = {.lex_state = 291}, - [2311] = {.lex_state = 290}, - [2312] = {.lex_state = 309}, - [2313] = {.lex_state = 290}, - [2314] = {.lex_state = 290}, - [2315] = {.lex_state = 290}, - [2316] = {.lex_state = 290}, - [2317] = {.lex_state = 289}, - [2318] = {.lex_state = 290}, - [2319] = {.lex_state = 289}, - [2320] = {.lex_state = 290}, - [2321] = {.lex_state = 290}, - [2322] = {.lex_state = 289}, - [2323] = {.lex_state = 286}, - [2324] = {.lex_state = 289}, - [2325] = {.lex_state = 305}, - [2326] = {.lex_state = 290}, - [2327] = {.lex_state = 289}, - [2328] = {.lex_state = 290}, - [2329] = {.lex_state = 237}, - [2330] = {.lex_state = 290}, - [2331] = {.lex_state = 302}, - [2332] = {.lex_state = 315}, - [2333] = {.lex_state = 301}, - [2334] = {.lex_state = 301}, - [2335] = {.lex_state = 301}, - [2336] = {.lex_state = 292}, + [2299] = {.lex_state = 290}, + [2300] = {.lex_state = 272}, + [2301] = {.lex_state = 289}, + [2302] = {.lex_state = 285}, + [2303] = {.lex_state = 285}, + [2304] = {.lex_state = 285}, + [2305] = {.lex_state = 309}, + [2306] = {.lex_state = 285}, + [2307] = {.lex_state = 305}, + [2308] = {.lex_state = 289}, + [2309] = {.lex_state = 266}, + [2310] = {.lex_state = 266}, + [2311] = {.lex_state = 266}, + [2312] = {.lex_state = 266}, + [2313] = {.lex_state = 285}, + [2314] = {.lex_state = 285}, + [2315] = {.lex_state = 269}, + [2316] = {.lex_state = 279}, + [2317] = {.lex_state = 271}, + [2318] = {.lex_state = 271}, + [2319] = {.lex_state = 285}, + [2320] = {.lex_state = 289}, + [2321] = {.lex_state = 266}, + [2322] = {.lex_state = 266}, + [2323] = {.lex_state = 271}, + [2324] = {.lex_state = 285}, + [2325] = {.lex_state = 298}, + [2326] = {.lex_state = 298}, + [2327] = {.lex_state = 301}, + [2328] = {.lex_state = 301}, + [2329] = {.lex_state = 301}, + [2330] = {.lex_state = 301}, + [2331] = {.lex_state = 301}, + [2332] = {.lex_state = 269}, + [2333] = {.lex_state = 270}, + [2334] = {.lex_state = 269}, + [2335] = {.lex_state = 269}, + [2336] = {.lex_state = 289}, [2337] = {.lex_state = 270}, - [2338] = {.lex_state = 270}, - [2339] = {.lex_state = 292}, - [2340] = {.lex_state = 292}, + [2338] = {.lex_state = 269}, + [2339] = {.lex_state = 269}, + [2340] = {.lex_state = 269}, [2341] = {.lex_state = 270}, - [2342] = {.lex_state = 290}, - [2343] = {.lex_state = 286}, - [2344] = {.lex_state = 301}, - [2345] = {.lex_state = 301}, - [2346] = {.lex_state = 301}, - [2347] = {.lex_state = 301}, - [2348] = {.lex_state = 301}, - [2349] = {.lex_state = 270}, - [2350] = {.lex_state = 315}, - [2351] = {.lex_state = 290}, - [2352] = {.lex_state = 270}, - [2353] = {.lex_state = 271}, - [2354] = {.lex_state = 315}, - [2355] = {.lex_state = 298}, - [2356] = {.lex_state = 280}, - [2357] = {.lex_state = 290}, - [2358] = {.lex_state = 290}, - [2359] = {.lex_state = 301}, - [2360] = {.lex_state = 271}, - [2361] = {.lex_state = 315}, - [2362] = {.lex_state = 270}, - [2363] = {.lex_state = 240}, - [2364] = {.lex_state = 267}, + [2342] = {.lex_state = 289}, + [2343] = {.lex_state = 289}, + [2344] = {.lex_state = 289}, + [2345] = {.lex_state = 271}, + [2346] = {.lex_state = 271}, + [2347] = {.lex_state = 290}, + [2348] = {.lex_state = 289}, + [2349] = {.lex_state = 289}, + [2350] = {.lex_state = 289}, + [2351] = {.lex_state = 301}, + [2352] = {.lex_state = 298}, + [2353] = {.lex_state = 289}, + [2354] = {.lex_state = 292}, + [2355] = {.lex_state = 292}, + [2356] = {.lex_state = 292}, + [2357] = {.lex_state = 269}, + [2358] = {.lex_state = 292}, + [2359] = {.lex_state = 292}, + [2360] = {.lex_state = 292}, + [2361] = {.lex_state = 272}, + [2362] = {.lex_state = 301}, + [2363] = {.lex_state = 285}, + [2364] = {.lex_state = 292}, [2365] = {.lex_state = 292}, - [2366] = {.lex_state = 315}, - [2367] = {.lex_state = 270}, - [2368] = {.lex_state = 290}, - [2369] = {.lex_state = 290}, - [2370] = {.lex_state = 298}, - [2371] = {.lex_state = 301}, - [2372] = {.lex_state = 298}, - [2373] = {.lex_state = 290}, - [2374] = {.lex_state = 290}, - [2375] = {.lex_state = 280}, - [2376] = {.lex_state = 298}, - [2377] = {.lex_state = 301}, - [2378] = {.lex_state = 298}, - [2379] = {.lex_state = 270}, - [2380] = {.lex_state = 301}, - [2381] = {.lex_state = 298}, - [2382] = {.lex_state = 298}, - [2383] = {.lex_state = 298}, + [2366] = {.lex_state = 280}, + [2367] = {.lex_state = 292}, + [2368] = {.lex_state = 280}, + [2369] = {.lex_state = 305}, + [2370] = {.lex_state = 280}, + [2371] = {.lex_state = 271}, + [2372] = {.lex_state = 301}, + [2373] = {.lex_state = 280}, + [2374] = {.lex_state = 309}, + [2375] = {.lex_state = 298}, + [2376] = {.lex_state = 271}, + [2377] = {.lex_state = 305}, + [2378] = {.lex_state = 305}, + [2379] = {.lex_state = 271}, + [2380] = {.lex_state = 271}, + [2381] = {.lex_state = 271}, + [2382] = {.lex_state = 271}, + [2383] = {.lex_state = 305}, [2384] = {.lex_state = 271}, - [2385] = {.lex_state = 301}, - [2386] = {.lex_state = 271}, - [2387] = {.lex_state = 301}, - [2388] = {.lex_state = 301}, - [2389] = {.lex_state = 292}, - [2390] = {.lex_state = 290}, + [2385] = {.lex_state = 309}, + [2386] = {.lex_state = 309}, + [2387] = {.lex_state = 309}, + [2388] = {.lex_state = 270}, + [2389] = {.lex_state = 291}, + [2390] = {.lex_state = 309}, [2391] = {.lex_state = 290}, - [2392] = {.lex_state = 290}, - [2393] = {.lex_state = 301}, - [2394] = {.lex_state = 267}, - [2395] = {.lex_state = 271}, - [2396] = {.lex_state = 315}, - [2397] = {.lex_state = 315}, + [2392] = {.lex_state = 289}, + [2393] = {.lex_state = 289}, + [2394] = {.lex_state = 289}, + [2395] = {.lex_state = 290}, + [2396] = {.lex_state = 290}, + [2397] = {.lex_state = 305}, [2398] = {.lex_state = 289}, - [2399] = {.lex_state = 282}, - [2400] = {.lex_state = 291}, - [2401] = {.lex_state = 291}, - [2402] = {.lex_state = 301}, - [2403] = {.lex_state = 271}, - [2404] = {.lex_state = 289}, - [2405] = {.lex_state = 290}, - [2406] = {.lex_state = 271}, - [2407] = {.lex_state = 289}, - [2408] = {.lex_state = 303}, - [2409] = {.lex_state = 315}, - [2410] = {.lex_state = 315}, - [2411] = {.lex_state = 301}, - [2412] = {.lex_state = 301}, - [2413] = {.lex_state = 315}, - [2414] = {.lex_state = 315}, - [2415] = {.lex_state = 271}, - [2416] = {.lex_state = 315}, - [2417] = {.lex_state = 315}, - [2418] = {.lex_state = 289}, - [2419] = {.lex_state = 289}, - [2420] = {.lex_state = 243}, - [2421] = {.lex_state = 280}, - [2422] = {.lex_state = 301}, - [2423] = {.lex_state = 281}, - [2424] = {.lex_state = 286}, - [2425] = {.lex_state = 270}, - [2426] = {.lex_state = 270}, - [2427] = {.lex_state = 298}, - [2428] = {.lex_state = 267}, - [2429] = {.lex_state = 281}, - [2430] = {.lex_state = 305}, + [2399] = {.lex_state = 289}, + [2400] = {.lex_state = 290}, + [2401] = {.lex_state = 290}, + [2402] = {.lex_state = 285}, + [2403] = {.lex_state = 290}, + [2404] = {.lex_state = 290}, + [2405] = {.lex_state = 289}, + [2406] = {.lex_state = 269}, + [2407] = {.lex_state = 237}, + [2408] = {.lex_state = 237}, + [2409] = {.lex_state = 290}, + [2410] = {.lex_state = 290}, + [2411] = {.lex_state = 290}, + [2412] = {.lex_state = 289}, + [2413] = {.lex_state = 290}, + [2414] = {.lex_state = 290}, + [2415] = {.lex_state = 290}, + [2416] = {.lex_state = 289}, + [2417] = {.lex_state = 290}, + [2418] = {.lex_state = 290}, + [2419] = {.lex_state = 290}, + [2420] = {.lex_state = 289}, + [2421] = {.lex_state = 289}, + [2422] = {.lex_state = 290}, + [2423] = {.lex_state = 305}, + [2424] = {.lex_state = 290}, + [2425] = {.lex_state = 290}, + [2426] = {.lex_state = 290}, + [2427] = {.lex_state = 290}, + [2428] = {.lex_state = 290}, + [2429] = {.lex_state = 290}, + [2430] = {.lex_state = 290}, [2431] = {.lex_state = 290}, - [2432] = {.lex_state = 292}, + [2432] = {.lex_state = 290}, [2433] = {.lex_state = 290}, - [2434] = {.lex_state = 301}, - [2435] = {.lex_state = 301}, - [2436] = {.lex_state = 280}, - [2437] = {.lex_state = 298}, - [2438] = {.lex_state = 298}, - [2439] = {.lex_state = 245}, - [2440] = {.lex_state = 309}, - [2441] = {.lex_state = 301}, - [2442] = {.lex_state = 298}, - [2443] = {.lex_state = 271}, - [2444] = {.lex_state = 290}, - [2445] = {.lex_state = 292}, - [2446] = {.lex_state = 271}, - [2447] = {.lex_state = 270}, - [2448] = {.lex_state = 267}, - [2449] = {.lex_state = 291}, - [2450] = {.lex_state = 270}, - [2451] = {.lex_state = 271}, - [2452] = {.lex_state = 267}, - [2453] = {.lex_state = 267}, - [2454] = {.lex_state = 286}, - [2455] = {.lex_state = 281}, - [2456] = {.lex_state = 270}, - [2457] = {.lex_state = 270}, - [2458] = {.lex_state = 271}, - [2459] = {.lex_state = 270}, - [2460] = {.lex_state = 267}, - [2461] = {.lex_state = 270}, - [2462] = {.lex_state = 270}, - [2463] = {.lex_state = 281}, - [2464] = {.lex_state = 267}, - [2465] = {.lex_state = 267}, - [2466] = {.lex_state = 267}, - [2467] = {.lex_state = 302}, - [2468] = {.lex_state = 302}, - [2469] = {.lex_state = 303}, - [2470] = {.lex_state = 303}, - [2471] = {.lex_state = 301}, - [2472] = {.lex_state = 267}, - [2473] = {.lex_state = 267}, - [2474] = {.lex_state = 267}, - [2475] = {.lex_state = 281}, - [2476] = {.lex_state = 245}, - [2477] = {.lex_state = 267}, + [2434] = {.lex_state = 309}, + [2435] = {.lex_state = 289}, + [2436] = {.lex_state = 301}, + [2437] = {.lex_state = 315}, + [2438] = {.lex_state = 301}, + [2439] = {.lex_state = 301}, + [2440] = {.lex_state = 270}, + [2441] = {.lex_state = 290}, + [2442] = {.lex_state = 290}, + [2443] = {.lex_state = 290}, + [2444] = {.lex_state = 315}, + [2445] = {.lex_state = 298}, + [2446] = {.lex_state = 315}, + [2447] = {.lex_state = 243}, + [2448] = {.lex_state = 301}, + [2449] = {.lex_state = 292}, + [2450] = {.lex_state = 301}, + [2451] = {.lex_state = 290}, + [2452] = {.lex_state = 270}, + [2453] = {.lex_state = 270}, + [2454] = {.lex_state = 315}, + [2455] = {.lex_state = 290}, + [2456] = {.lex_state = 315}, + [2457] = {.lex_state = 290}, + [2458] = {.lex_state = 289}, + [2459] = {.lex_state = 279}, + [2460] = {.lex_state = 302}, + [2461] = {.lex_state = 292}, + [2462] = {.lex_state = 315}, + [2463] = {.lex_state = 301}, + [2464] = {.lex_state = 270}, + [2465] = {.lex_state = 289}, + [2466] = {.lex_state = 290}, + [2467] = {.lex_state = 270}, + [2468] = {.lex_state = 289}, + [2469] = {.lex_state = 315}, + [2470] = {.lex_state = 289}, + [2471] = {.lex_state = 298}, + [2472] = {.lex_state = 269}, + [2473] = {.lex_state = 240}, + [2474] = {.lex_state = 301}, + [2475] = {.lex_state = 303}, + [2476] = {.lex_state = 301}, + [2477] = {.lex_state = 290}, [2478] = {.lex_state = 301}, - [2479] = {.lex_state = 301}, - [2480] = {.lex_state = 301}, + [2479] = {.lex_state = 315}, + [2480] = {.lex_state = 289}, [2481] = {.lex_state = 301}, - [2482] = {.lex_state = 267}, - [2483] = {.lex_state = 301}, - [2484] = {.lex_state = 301}, - [2485] = {.lex_state = 281}, - [2486] = {.lex_state = 245}, - [2487] = {.lex_state = 301}, - [2488] = {.lex_state = 286}, - [2489] = {.lex_state = 267}, - [2490] = {.lex_state = 267}, - [2491] = {.lex_state = 270}, - [2492] = {.lex_state = 267}, - [2493] = {.lex_state = 286}, - [2494] = {.lex_state = 281}, - [2495] = {.lex_state = 270}, - [2496] = {.lex_state = 290}, - [2497] = {.lex_state = 290}, - [2498] = {.lex_state = 289}, - [2499] = {.lex_state = 301}, - [2500] = {.lex_state = 315}, - [2501] = {.lex_state = 270}, - [2502] = {.lex_state = 290}, - [2503] = {.lex_state = 290}, - [2504] = {.lex_state = 290}, - [2505] = {.lex_state = 290}, - [2506] = {.lex_state = 290}, - [2507] = {.lex_state = 290}, - [2508] = {.lex_state = 290}, - [2509] = {.lex_state = 290}, - [2510] = {.lex_state = 290}, - [2511] = {.lex_state = 290}, - [2512] = {.lex_state = 289}, - [2513] = {.lex_state = 289}, - [2514] = {.lex_state = 290}, - [2515] = {.lex_state = 290}, + [2482] = {.lex_state = 269}, + [2483] = {.lex_state = 292}, + [2484] = {.lex_state = 298}, + [2485] = {.lex_state = 269}, + [2486] = {.lex_state = 266}, + [2487] = {.lex_state = 269}, + [2488] = {.lex_state = 281}, + [2489] = {.lex_state = 279}, + [2490] = {.lex_state = 270}, + [2491] = {.lex_state = 290}, + [2492] = {.lex_state = 298}, + [2493] = {.lex_state = 290}, + [2494] = {.lex_state = 290}, + [2495] = {.lex_state = 315}, + [2496] = {.lex_state = 298}, + [2497] = {.lex_state = 315}, + [2498] = {.lex_state = 315}, + [2499] = {.lex_state = 292}, + [2500] = {.lex_state = 279}, + [2501] = {.lex_state = 301}, + [2502] = {.lex_state = 298}, + [2503] = {.lex_state = 301}, + [2504] = {.lex_state = 270}, + [2505] = {.lex_state = 285}, + [2506] = {.lex_state = 301}, + [2507] = {.lex_state = 301}, + [2508] = {.lex_state = 301}, + [2509] = {.lex_state = 269}, + [2510] = {.lex_state = 266}, + [2511] = {.lex_state = 269}, + [2512] = {.lex_state = 301}, + [2513] = {.lex_state = 298}, + [2514] = {.lex_state = 270}, + [2515] = {.lex_state = 315}, [2516] = {.lex_state = 290}, - [2517] = {.lex_state = 270}, - [2518] = {.lex_state = 290}, - [2519] = {.lex_state = 301}, - [2520] = {.lex_state = 290}, - [2521] = {.lex_state = 290}, - [2522] = {.lex_state = 290}, - [2523] = {.lex_state = 290}, - [2524] = {.lex_state = 286}, - [2525] = {.lex_state = 290}, - [2526] = {.lex_state = 289}, - [2527] = {.lex_state = 290}, - [2528] = {.lex_state = 289}, - [2529] = {.lex_state = 289}, - [2530] = {.lex_state = 270}, - [2531] = {.lex_state = 290}, - [2532] = {.lex_state = 289}, - [2533] = {.lex_state = 270}, - [2534] = {.lex_state = 290}, - [2535] = {.lex_state = 290}, - [2536] = {.lex_state = 290}, - [2537] = {.lex_state = 291}, - [2538] = {.lex_state = 301}, - [2539] = {.lex_state = 290}, - [2540] = {.lex_state = 333}, - [2541] = {.lex_state = 333}, - [2542] = {.lex_state = 290}, - [2543] = {.lex_state = 290}, - [2544] = {.lex_state = 290}, - [2545] = {.lex_state = 289}, - [2546] = {.lex_state = 282}, + [2517] = {.lex_state = 301}, + [2518] = {.lex_state = 301}, + [2519] = {.lex_state = 269}, + [2520] = {.lex_state = 291}, + [2521] = {.lex_state = 291}, + [2522] = {.lex_state = 315}, + [2523] = {.lex_state = 301}, + [2524] = {.lex_state = 298}, + [2525] = {.lex_state = 292}, + [2526] = {.lex_state = 301}, + [2527] = {.lex_state = 269}, + [2528] = {.lex_state = 280}, + [2529] = {.lex_state = 266}, + [2530] = {.lex_state = 269}, + [2531] = {.lex_state = 269}, + [2532] = {.lex_state = 266}, + [2533] = {.lex_state = 290}, + [2534] = {.lex_state = 266}, + [2535] = {.lex_state = 298}, + [2536] = {.lex_state = 285}, + [2537] = {.lex_state = 266}, + [2538] = {.lex_state = 245}, + [2539] = {.lex_state = 280}, + [2540] = {.lex_state = 280}, + [2541] = {.lex_state = 266}, + [2542] = {.lex_state = 298}, + [2543] = {.lex_state = 291}, + [2544] = {.lex_state = 270}, + [2545] = {.lex_state = 285}, + [2546] = {.lex_state = 270}, [2547] = {.lex_state = 290}, - [2548] = {.lex_state = 303}, - [2549] = {.lex_state = 302}, - [2550] = {.lex_state = 280}, - [2551] = {.lex_state = 286}, - [2552] = {.lex_state = 290}, - [2553] = {.lex_state = 290}, - [2554] = {.lex_state = 290}, - [2555] = {.lex_state = 290}, - [2556] = {.lex_state = 290}, - [2557] = {.lex_state = 290}, - [2558] = {.lex_state = 290}, - [2559] = {.lex_state = 280}, + [2548] = {.lex_state = 279}, + [2549] = {.lex_state = 266}, + [2550] = {.lex_state = 301}, + [2551] = {.lex_state = 301}, + [2552] = {.lex_state = 270}, + [2553] = {.lex_state = 301}, + [2554] = {.lex_state = 266}, + [2555] = {.lex_state = 269}, + [2556] = {.lex_state = 245}, + [2557] = {.lex_state = 269}, + [2558] = {.lex_state = 266}, + [2559] = {.lex_state = 269}, [2560] = {.lex_state = 280}, - [2561] = {.lex_state = 301}, - [2562] = {.lex_state = 301}, - [2563] = {.lex_state = 286}, - [2564] = {.lex_state = 289}, - [2565] = {.lex_state = 289}, - [2566] = {.lex_state = 270}, - [2567] = {.lex_state = 301}, - [2568] = {.lex_state = 290}, - [2569] = {.lex_state = 286}, - [2570] = {.lex_state = 301}, - [2571] = {.lex_state = 280}, - [2572] = {.lex_state = 286}, - [2573] = {.lex_state = 316}, - [2574] = {.lex_state = 278}, - [2575] = {.lex_state = 316}, - [2576] = {.lex_state = 278}, - [2577] = {.lex_state = 301}, - [2578] = {.lex_state = 270}, - [2579] = {.lex_state = 270}, - [2580] = {.lex_state = 270}, - [2581] = {.lex_state = 290}, - [2582] = {.lex_state = 301}, - [2583] = {.lex_state = 270}, - [2584] = {.lex_state = 286}, - [2585] = {.lex_state = 270}, - [2586] = {.lex_state = 290}, - [2587] = {.lex_state = 240}, - [2588] = {.lex_state = 290}, + [2561] = {.lex_state = 266}, + [2562] = {.lex_state = 269}, + [2563] = {.lex_state = 266}, + [2564] = {.lex_state = 285}, + [2565] = {.lex_state = 245}, + [2566] = {.lex_state = 266}, + [2567] = {.lex_state = 266}, + [2568] = {.lex_state = 285}, + [2569] = {.lex_state = 302}, + [2570] = {.lex_state = 302}, + [2571] = {.lex_state = 303}, + [2572] = {.lex_state = 303}, + [2573] = {.lex_state = 266}, + [2574] = {.lex_state = 266}, + [2575] = {.lex_state = 266}, + [2576] = {.lex_state = 292}, + [2577] = {.lex_state = 269}, + [2578] = {.lex_state = 292}, + [2579] = {.lex_state = 269}, + [2580] = {.lex_state = 269}, + [2581] = {.lex_state = 270}, + [2582] = {.lex_state = 269}, + [2583] = {.lex_state = 269}, + [2584] = {.lex_state = 280}, + [2585] = {.lex_state = 301}, + [2586] = {.lex_state = 280}, + [2587] = {.lex_state = 301}, + [2588] = {.lex_state = 301}, [2589] = {.lex_state = 301}, - [2590] = {.lex_state = 286}, + [2590] = {.lex_state = 290}, [2591] = {.lex_state = 301}, - [2592] = {.lex_state = 282}, - [2593] = {.lex_state = 290}, - [2594] = {.lex_state = 290}, - [2595] = {.lex_state = 290}, - [2596] = {.lex_state = 270}, - [2597] = {.lex_state = 270}, - [2598] = {.lex_state = 270}, - [2599] = {.lex_state = 280}, - [2600] = {.lex_state = 290}, + [2592] = {.lex_state = 301}, + [2593] = {.lex_state = 301}, + [2594] = {.lex_state = 301}, + [2595] = {.lex_state = 280}, + [2596] = {.lex_state = 305}, + [2597] = {.lex_state = 298}, + [2598] = {.lex_state = 298}, + [2599] = {.lex_state = 309}, + [2600] = {.lex_state = 266}, [2601] = {.lex_state = 290}, - [2602] = {.lex_state = 290}, + [2602] = {.lex_state = 289}, [2603] = {.lex_state = 290}, - [2604] = {.lex_state = 292}, - [2605] = {.lex_state = 289}, + [2604] = {.lex_state = 290}, + [2605] = {.lex_state = 269}, [2606] = {.lex_state = 291}, - [2607] = {.lex_state = 291}, + [2607] = {.lex_state = 281}, [2608] = {.lex_state = 290}, - [2609] = {.lex_state = 286}, - [2610] = {.lex_state = 289}, - [2611] = {.lex_state = 240}, - [2612] = {.lex_state = 270}, - [2613] = {.lex_state = 280}, - [2614] = {.lex_state = 301}, - [2615] = {.lex_state = 286}, - [2616] = {.lex_state = 282}, - [2617] = {.lex_state = 290}, - [2618] = {.lex_state = 286}, + [2609] = {.lex_state = 301}, + [2610] = {.lex_state = 290}, + [2611] = {.lex_state = 289}, + [2612] = {.lex_state = 289}, + [2613] = {.lex_state = 290}, + [2614] = {.lex_state = 290}, + [2615] = {.lex_state = 290}, + [2616] = {.lex_state = 290}, + [2617] = {.lex_state = 289}, + [2618] = {.lex_state = 290}, [2619] = {.lex_state = 290}, - [2620] = {.lex_state = 286}, - [2621] = {.lex_state = 286}, - [2622] = {.lex_state = 286}, - [2623] = {.lex_state = 286}, + [2620] = {.lex_state = 290}, + [2621] = {.lex_state = 290}, + [2622] = {.lex_state = 290}, + [2623] = {.lex_state = 289}, [2624] = {.lex_state = 290}, - [2625] = {.lex_state = 290}, - [2626] = {.lex_state = 301}, - [2627] = {.lex_state = 281}, - [2628] = {.lex_state = 286}, - [2629] = {.lex_state = 286}, - [2630] = {.lex_state = 286}, - [2631] = {.lex_state = 286}, - [2632] = {.lex_state = 286}, - [2633] = {.lex_state = 286}, - [2634] = {.lex_state = 282}, - [2635] = {.lex_state = 333}, - [2636] = {.lex_state = 286}, - [2637] = {.lex_state = 286}, - [2638] = {.lex_state = 286}, - [2639] = {.lex_state = 314}, - [2640] = {.lex_state = 286}, - [2641] = {.lex_state = 270}, - [2642] = {.lex_state = 301}, - [2643] = {.lex_state = 270}, - [2644] = {.lex_state = 270}, - [2645] = {.lex_state = 286}, - [2646] = {.lex_state = 286}, - [2647] = {.lex_state = 286}, - [2648] = {.lex_state = 286}, - [2649] = {.lex_state = 286}, - [2650] = {.lex_state = 286}, - [2651] = {.lex_state = 281}, - [2652] = {.lex_state = 286}, - [2653] = {.lex_state = 301}, - [2654] = {.lex_state = 281}, - [2655] = {.lex_state = 289}, - [2656] = {.lex_state = 286}, - [2657] = {.lex_state = 286}, + [2625] = {.lex_state = 302}, + [2626] = {.lex_state = 290}, + [2627] = {.lex_state = 285}, + [2628] = {.lex_state = 290}, + [2629] = {.lex_state = 290}, + [2630] = {.lex_state = 290}, + [2631] = {.lex_state = 290}, + [2632] = {.lex_state = 290}, + [2633] = {.lex_state = 303}, + [2634] = {.lex_state = 290}, + [2635] = {.lex_state = 289}, + [2636] = {.lex_state = 289}, + [2637] = {.lex_state = 269}, + [2638] = {.lex_state = 301}, + [2639] = {.lex_state = 290}, + [2640] = {.lex_state = 290}, + [2641] = {.lex_state = 289}, + [2642] = {.lex_state = 290}, + [2643] = {.lex_state = 290}, + [2644] = {.lex_state = 290}, + [2645] = {.lex_state = 290}, + [2646] = {.lex_state = 334}, + [2647] = {.lex_state = 334}, + [2648] = {.lex_state = 290}, + [2649] = {.lex_state = 290}, + [2650] = {.lex_state = 315}, + [2651] = {.lex_state = 290}, + [2652] = {.lex_state = 269}, + [2653] = {.lex_state = 269}, + [2654] = {.lex_state = 301}, + [2655] = {.lex_state = 290}, + [2656] = {.lex_state = 269}, + [2657] = {.lex_state = 277}, [2658] = {.lex_state = 301}, - [2659] = {.lex_state = 270}, - [2660] = {.lex_state = 314}, - [2661] = {.lex_state = 314}, - [2662] = {.lex_state = 314}, - [2663] = {.lex_state = 270}, - [2664] = {.lex_state = 286}, - [2665] = {.lex_state = 286}, - [2666] = {.lex_state = 286}, - [2667] = {.lex_state = 270}, - [2668] = {.lex_state = 270}, - [2669] = {.lex_state = 289}, - [2670] = {.lex_state = 314}, - [2671] = {.lex_state = 333}, - [2672] = {.lex_state = 314}, - [2673] = {.lex_state = 333}, - [2674] = {.lex_state = 301}, - [2675] = {.lex_state = 301}, - [2676] = {.lex_state = 286}, - [2677] = {.lex_state = 290}, - [2678] = {.lex_state = 282}, - [2679] = {.lex_state = 270}, - [2680] = {.lex_state = 301}, - [2681] = {.lex_state = 314}, - [2682] = {.lex_state = 270}, - [2683] = {.lex_state = 286}, - [2684] = {.lex_state = 270}, - [2685] = {.lex_state = 270}, - [2686] = {.lex_state = 286}, - [2687] = {.lex_state = 286}, - [2688] = {.lex_state = 314}, - [2689] = {.lex_state = 314}, - [2690] = {.lex_state = 314}, - [2691] = {.lex_state = 286}, - [2692] = {.lex_state = 286}, - [2693] = {.lex_state = 286}, - [2694] = {.lex_state = 270}, - [2695] = {.lex_state = 286}, - [2696] = {.lex_state = 286}, - [2697] = {.lex_state = 270}, - [2698] = {.lex_state = 286}, - [2699] = {.lex_state = 301}, - [2700] = {.lex_state = 286}, - [2701] = {.lex_state = 245}, - [2702] = {.lex_state = 286}, - [2703] = {.lex_state = 291}, - [2704] = {.lex_state = 279}, - [2705] = {.lex_state = 286}, - [2706] = {.lex_state = 286}, - [2707] = {.lex_state = 301}, - [2708] = {.lex_state = 301}, - [2709] = {.lex_state = 286}, - [2710] = {.lex_state = 286}, - [2711] = {.lex_state = 286}, - [2712] = {.lex_state = 286}, - [2713] = {.lex_state = 286}, - [2714] = {.lex_state = 286}, - [2715] = {.lex_state = 286}, - [2716] = {.lex_state = 286}, - [2717] = {.lex_state = 301}, - [2718] = {.lex_state = 286}, - [2719] = {.lex_state = 286}, - [2720] = {.lex_state = 286}, - [2721] = {.lex_state = 333}, - [2722] = {.lex_state = 286}, - [2723] = {.lex_state = 290}, - [2724] = {.lex_state = 286}, - [2725] = {.lex_state = 286}, - [2726] = {.lex_state = 286}, - [2727] = {.lex_state = 286}, - [2728] = {.lex_state = 290}, - [2729] = {.lex_state = 286}, - [2730] = {.lex_state = 286}, - [2731] = {.lex_state = 286}, - [2732] = {.lex_state = 286}, - [2733] = {.lex_state = 301}, - [2734] = {.lex_state = 286}, - [2735] = {.lex_state = 286}, - [2736] = {.lex_state = 286}, - [2737] = {.lex_state = 286}, - [2738] = {.lex_state = 286}, - [2739] = {.lex_state = 286}, - [2740] = {.lex_state = 286}, - [2741] = {.lex_state = 286}, - [2742] = {.lex_state = 245}, - [2743] = {.lex_state = 301}, - [2744] = {.lex_state = 286}, - [2745] = {.lex_state = 301}, - [2746] = {.lex_state = 286}, - [2747] = {.lex_state = 286}, - [2748] = {.lex_state = 286}, - [2749] = {.lex_state = 290}, - [2750] = {.lex_state = 286}, - [2751] = {.lex_state = 286}, - [2752] = {.lex_state = 286}, - [2753] = {.lex_state = 286}, - [2754] = {.lex_state = 267}, - [2755] = {.lex_state = 286}, - [2756] = {.lex_state = 286}, - [2757] = {.lex_state = 286}, - [2758] = {.lex_state = 286}, - [2759] = {.lex_state = 286}, - [2760] = {.lex_state = 286}, - [2761] = {.lex_state = 286}, - [2762] = {.lex_state = 290}, - [2763] = {.lex_state = 286}, - [2764] = {.lex_state = 286}, - [2765] = {.lex_state = 286}, - [2766] = {.lex_state = 290}, - [2767] = {.lex_state = 286}, - [2768] = {.lex_state = 290}, - [2769] = {.lex_state = 286}, - [2770] = {.lex_state = 333}, - [2771] = {.lex_state = 286}, - [2772] = {.lex_state = 333}, - [2773] = {.lex_state = 286}, - [2774] = {.lex_state = 286}, - [2775] = {.lex_state = 286}, - [2776] = {.lex_state = 290}, - [2777] = {.lex_state = 286}, - [2778] = {.lex_state = 286}, - [2779] = {.lex_state = 286}, - [2780] = {.lex_state = 245}, - [2781] = {.lex_state = 286}, + [2659] = {.lex_state = 269}, + [2660] = {.lex_state = 281}, + [2661] = {.lex_state = 269}, + [2662] = {.lex_state = 290}, + [2663] = {.lex_state = 279}, + [2664] = {.lex_state = 279}, + [2665] = {.lex_state = 269}, + [2666] = {.lex_state = 290}, + [2667] = {.lex_state = 301}, + [2668] = {.lex_state = 290}, + [2669] = {.lex_state = 277}, + [2670] = {.lex_state = 292}, + [2671] = {.lex_state = 290}, + [2672] = {.lex_state = 290}, + [2673] = {.lex_state = 289}, + [2674] = {.lex_state = 290}, + [2675] = {.lex_state = 290}, + [2676] = {.lex_state = 290}, + [2677] = {.lex_state = 289}, + [2678] = {.lex_state = 301}, + [2679] = {.lex_state = 285}, + [2680] = {.lex_state = 269}, + [2681] = {.lex_state = 269}, + [2682] = {.lex_state = 290}, + [2683] = {.lex_state = 269}, + [2684] = {.lex_state = 285}, + [2685] = {.lex_state = 285}, + [2686] = {.lex_state = 269}, + [2687] = {.lex_state = 279}, + [2688] = {.lex_state = 319}, + [2689] = {.lex_state = 319}, + [2690] = {.lex_state = 291}, + [2691] = {.lex_state = 290}, + [2692] = {.lex_state = 290}, + [2693] = {.lex_state = 269}, + [2694] = {.lex_state = 285}, + [2695] = {.lex_state = 289}, + [2696] = {.lex_state = 301}, + [2697] = {.lex_state = 290}, + [2698] = {.lex_state = 290}, + [2699] = {.lex_state = 290}, + [2700] = {.lex_state = 279}, + [2701] = {.lex_state = 301}, + [2702] = {.lex_state = 289}, + [2703] = {.lex_state = 301}, + [2704] = {.lex_state = 290}, + [2705] = {.lex_state = 285}, + [2706] = {.lex_state = 285}, + [2707] = {.lex_state = 285}, + [2708] = {.lex_state = 285}, + [2709] = {.lex_state = 301}, + [2710] = {.lex_state = 285}, + [2711] = {.lex_state = 285}, + [2712] = {.lex_state = 269}, + [2713] = {.lex_state = 285}, + [2714] = {.lex_state = 285}, + [2715] = {.lex_state = 290}, + [2716] = {.lex_state = 285}, + [2717] = {.lex_state = 290}, + [2718] = {.lex_state = 290}, + [2719] = {.lex_state = 290}, + [2720] = {.lex_state = 290}, + [2721] = {.lex_state = 301}, + [2722] = {.lex_state = 290}, + [2723] = {.lex_state = 240}, + [2724] = {.lex_state = 240}, + [2725] = {.lex_state = 301}, + [2726] = {.lex_state = 281}, + [2727] = {.lex_state = 279}, + [2728] = {.lex_state = 301}, + [2729] = {.lex_state = 290}, + [2730] = {.lex_state = 279}, + [2731] = {.lex_state = 291}, + [2732] = {.lex_state = 269}, + [2733] = {.lex_state = 269}, + [2734] = {.lex_state = 285}, + [2735] = {.lex_state = 285}, + [2736] = {.lex_state = 314}, + [2737] = {.lex_state = 290}, + [2738] = {.lex_state = 285}, + [2739] = {.lex_state = 285}, + [2740] = {.lex_state = 285}, + [2741] = {.lex_state = 285}, + [2742] = {.lex_state = 290}, + [2743] = {.lex_state = 285}, + [2744] = {.lex_state = 285}, + [2745] = {.lex_state = 285}, + [2746] = {.lex_state = 285}, + [2747] = {.lex_state = 285}, + [2748] = {.lex_state = 269}, + [2749] = {.lex_state = 285}, + [2750] = {.lex_state = 285}, + [2751] = {.lex_state = 285}, + [2752] = {.lex_state = 269}, + [2753] = {.lex_state = 269}, + [2754] = {.lex_state = 269}, + [2755] = {.lex_state = 314}, + [2756] = {.lex_state = 334}, + [2757] = {.lex_state = 245}, + [2758] = {.lex_state = 285}, + [2759] = {.lex_state = 269}, + [2760] = {.lex_state = 269}, + [2761] = {.lex_state = 285}, + [2762] = {.lex_state = 245}, + [2763] = {.lex_state = 285}, + [2764] = {.lex_state = 285}, + [2765] = {.lex_state = 285}, + [2766] = {.lex_state = 285}, + [2767] = {.lex_state = 285}, + [2768] = {.lex_state = 285}, + [2769] = {.lex_state = 285}, + [2770] = {.lex_state = 334}, + [2771] = {.lex_state = 285}, + [2772] = {.lex_state = 285}, + [2773] = {.lex_state = 285}, + [2774] = {.lex_state = 301}, + [2775] = {.lex_state = 334}, + [2776] = {.lex_state = 280}, + [2777] = {.lex_state = 285}, + [2778] = {.lex_state = 285}, + [2779] = {.lex_state = 334}, + [2780] = {.lex_state = 285}, + [2781] = {.lex_state = 301}, [2782] = {.lex_state = 290}, - [2783] = {.lex_state = 286}, - [2784] = {.lex_state = 286}, - [2785] = {.lex_state = 286}, - [2786] = {.lex_state = 286}, - [2787] = {.lex_state = 286}, - [2788] = {.lex_state = 245}, - [2789] = {.lex_state = 286}, - [2790] = {.lex_state = 286}, - [2791] = {.lex_state = 286}, - [2792] = {.lex_state = 281}, - [2793] = {.lex_state = 286}, - [2794] = {.lex_state = 301}, - [2795] = {.lex_state = 290}, - [2796] = {.lex_state = 289}, - [2797] = {.lex_state = 282}, - [2798] = {.lex_state = 289}, - [2799] = {.lex_state = 267}, + [2783] = {.lex_state = 285}, + [2784] = {.lex_state = 280}, + [2785] = {.lex_state = 285}, + [2786] = {.lex_state = 280}, + [2787] = {.lex_state = 314}, + [2788] = {.lex_state = 278}, + [2789] = {.lex_state = 285}, + [2790] = {.lex_state = 285}, + [2791] = {.lex_state = 285}, + [2792] = {.lex_state = 285}, + [2793] = {.lex_state = 285}, + [2794] = {.lex_state = 285}, + [2795] = {.lex_state = 285}, + [2796] = {.lex_state = 301}, + [2797] = {.lex_state = 314}, + [2798] = {.lex_state = 285}, + [2799] = {.lex_state = 245}, [2800] = {.lex_state = 301}, - [2801] = {.lex_state = 301}, - [2802] = {.lex_state = 290}, - [2803] = {.lex_state = 289}, - [2804] = {.lex_state = 282}, - [2805] = {.lex_state = 266}, - [2806] = {.lex_state = 301}, - [2807] = {.lex_state = 290}, - [2808] = {.lex_state = 270}, - [2809] = {.lex_state = 270}, - [2810] = {.lex_state = 270}, - [2811] = {.lex_state = 290}, - [2812] = {.lex_state = 266}, - [2813] = {.lex_state = 301}, - [2814] = {.lex_state = 290}, - [2815] = {.lex_state = 290}, - [2816] = {.lex_state = 289}, - [2817] = {.lex_state = 289}, - [2818] = {.lex_state = 270}, - [2819] = {.lex_state = 290}, - [2820] = {.lex_state = 334}, - [2821] = {.lex_state = 334}, - [2822] = {.lex_state = 334}, - [2823] = {.lex_state = 301}, - [2824] = {.lex_state = 279}, - [2825] = {.lex_state = 290}, - [2826] = {.lex_state = 290}, - [2827] = {.lex_state = 270}, - [2828] = {.lex_state = 289}, - [2829] = {.lex_state = 290}, - [2830] = {.lex_state = 290}, - [2831] = {.lex_state = 266}, - [2832] = {.lex_state = 290}, - [2833] = {.lex_state = 270}, - [2834] = {.lex_state = 290}, - [2835] = {.lex_state = 290}, - [2836] = {.lex_state = 266}, - [2837] = {.lex_state = 290}, - [2838] = {.lex_state = 282}, - [2839] = {.lex_state = 267}, - [2840] = {.lex_state = 290}, - [2841] = {.lex_state = 334}, - [2842] = {.lex_state = 290}, - [2843] = {.lex_state = 290}, - [2844] = {.lex_state = 267}, - [2845] = {.lex_state = 286}, - [2846] = {.lex_state = 290}, - [2847] = {.lex_state = 278}, - [2848] = {.lex_state = 314}, - [2849] = {.lex_state = 267}, - [2850] = {.lex_state = 290}, - [2851] = {.lex_state = 290}, - [2852] = {.lex_state = 290}, - [2853] = {.lex_state = 290}, - [2854] = {.lex_state = 278}, - [2855] = {.lex_state = 314}, - [2856] = {.lex_state = 270}, - [2857] = {.lex_state = 271}, - [2858] = {.lex_state = 267}, - [2859] = {.lex_state = 290}, - [2860] = {.lex_state = 290}, - [2861] = {.lex_state = 290}, - [2862] = {.lex_state = 290}, - [2863] = {.lex_state = 270}, - [2864] = {.lex_state = 272}, - [2865] = {.lex_state = 270}, - [2866] = {.lex_state = 281}, - [2867] = {.lex_state = 272}, - [2868] = {.lex_state = 290}, - [2869] = {.lex_state = 290}, - [2870] = {.lex_state = 267}, - [2871] = {.lex_state = 267}, - [2872] = {.lex_state = 272}, - [2873] = {.lex_state = 290}, - [2874] = {.lex_state = 314}, - [2875] = {.lex_state = 290}, - [2876] = {.lex_state = 290}, - [2877] = {.lex_state = 290}, - [2878] = {.lex_state = 290}, - [2879] = {.lex_state = 301}, - [2880] = {.lex_state = 301}, - [2881] = {.lex_state = 271}, - [2882] = {.lex_state = 267}, - [2883] = {.lex_state = 267}, - [2884] = {.lex_state = 301}, - [2885] = {.lex_state = 314}, - [2886] = {.lex_state = 316}, + [2801] = {.lex_state = 289}, + [2802] = {.lex_state = 285}, + [2803] = {.lex_state = 266}, + [2804] = {.lex_state = 314}, + [2805] = {.lex_state = 314}, + [2806] = {.lex_state = 285}, + [2807] = {.lex_state = 334}, + [2808] = {.lex_state = 285}, + [2809] = {.lex_state = 285}, + [2810] = {.lex_state = 285}, + [2811] = {.lex_state = 291}, + [2812] = {.lex_state = 314}, + [2813] = {.lex_state = 314}, + [2814] = {.lex_state = 314}, + [2815] = {.lex_state = 285}, + [2816] = {.lex_state = 285}, + [2817] = {.lex_state = 314}, + [2818] = {.lex_state = 281}, + [2819] = {.lex_state = 285}, + [2820] = {.lex_state = 301}, + [2821] = {.lex_state = 285}, + [2822] = {.lex_state = 285}, + [2823] = {.lex_state = 290}, + [2824] = {.lex_state = 301}, + [2825] = {.lex_state = 301}, + [2826] = {.lex_state = 301}, + [2827] = {.lex_state = 290}, + [2828] = {.lex_state = 290}, + [2829] = {.lex_state = 285}, + [2830] = {.lex_state = 334}, + [2831] = {.lex_state = 285}, + [2832] = {.lex_state = 285}, + [2833] = {.lex_state = 290}, + [2834] = {.lex_state = 301}, + [2835] = {.lex_state = 285}, + [2836] = {.lex_state = 285}, + [2837] = {.lex_state = 285}, + [2838] = {.lex_state = 285}, + [2839] = {.lex_state = 285}, + [2840] = {.lex_state = 285}, + [2841] = {.lex_state = 285}, + [2842] = {.lex_state = 285}, + [2843] = {.lex_state = 269}, + [2844] = {.lex_state = 285}, + [2845] = {.lex_state = 285}, + [2846] = {.lex_state = 289}, + [2847] = {.lex_state = 269}, + [2848] = {.lex_state = 269}, + [2849] = {.lex_state = 285}, + [2850] = {.lex_state = 285}, + [2851] = {.lex_state = 245}, + [2852] = {.lex_state = 281}, + [2853] = {.lex_state = 280}, + [2854] = {.lex_state = 285}, + [2855] = {.lex_state = 285}, + [2856] = {.lex_state = 285}, + [2857] = {.lex_state = 285}, + [2858] = {.lex_state = 301}, + [2859] = {.lex_state = 285}, + [2860] = {.lex_state = 285}, + [2861] = {.lex_state = 285}, + [2862] = {.lex_state = 285}, + [2863] = {.lex_state = 285}, + [2864] = {.lex_state = 285}, + [2865] = {.lex_state = 285}, + [2866] = {.lex_state = 285}, + [2867] = {.lex_state = 285}, + [2868] = {.lex_state = 285}, + [2869] = {.lex_state = 285}, + [2870] = {.lex_state = 285}, + [2871] = {.lex_state = 285}, + [2872] = {.lex_state = 285}, + [2873] = {.lex_state = 285}, + [2874] = {.lex_state = 285}, + [2875] = {.lex_state = 285}, + [2876] = {.lex_state = 285}, + [2877] = {.lex_state = 285}, + [2878] = {.lex_state = 285}, + [2879] = {.lex_state = 285}, + [2880] = {.lex_state = 285}, + [2881] = {.lex_state = 285}, + [2882] = {.lex_state = 301}, + [2883] = {.lex_state = 285}, + [2884] = {.lex_state = 285}, + [2885] = {.lex_state = 269}, + [2886] = {.lex_state = 301}, [2887] = {.lex_state = 290}, - [2888] = {.lex_state = 298}, - [2889] = {.lex_state = 286}, - [2890] = {.lex_state = 286}, - [2891] = {.lex_state = 286}, - [2892] = {.lex_state = 243}, - [2893] = {.lex_state = 286}, - [2894] = {.lex_state = 290}, - [2895] = {.lex_state = 286}, - [2896] = {.lex_state = 290}, - [2897] = {.lex_state = 286}, - [2898] = {.lex_state = 301}, - [2899] = {.lex_state = 270}, - [2900] = {.lex_state = 290}, + [2888] = {.lex_state = 285}, + [2889] = {.lex_state = 285}, + [2890] = {.lex_state = 285}, + [2891] = {.lex_state = 269}, + [2892] = {.lex_state = 285}, + [2893] = {.lex_state = 285}, + [2894] = {.lex_state = 285}, + [2895] = {.lex_state = 301}, + [2896] = {.lex_state = 285}, + [2897] = {.lex_state = 285}, + [2898] = {.lex_state = 290}, + [2899] = {.lex_state = 290}, + [2900] = {.lex_state = 289}, [2901] = {.lex_state = 290}, - [2902] = {.lex_state = 286}, - [2903] = {.lex_state = 286}, - [2904] = {.lex_state = 281}, - [2905] = {.lex_state = 281}, - [2906] = {.lex_state = 281}, - [2907] = {.lex_state = 298}, - [2908] = {.lex_state = 281}, - [2909] = {.lex_state = 281}, + [2902] = {.lex_state = 266}, + [2903] = {.lex_state = 266}, + [2904] = {.lex_state = 333}, + [2905] = {.lex_state = 269}, + [2906] = {.lex_state = 286}, + [2907] = {.lex_state = 269}, + [2908] = {.lex_state = 289}, + [2909] = {.lex_state = 289}, [2910] = {.lex_state = 286}, - [2911] = {.lex_state = 272}, - [2912] = {.lex_state = 298}, - [2913] = {.lex_state = 286}, - [2914] = {.lex_state = 290}, - [2915] = {.lex_state = 278}, - [2916] = {.lex_state = 267}, - [2917] = {.lex_state = 286}, - [2918] = {.lex_state = 290}, - [2919] = {.lex_state = 267}, - [2920] = {.lex_state = 267}, - [2921] = {.lex_state = 298}, - [2922] = {.lex_state = 290}, - [2923] = {.lex_state = 267}, - [2924] = {.lex_state = 267}, + [2911] = {.lex_state = 269}, + [2912] = {.lex_state = 286}, + [2913] = {.lex_state = 269}, + [2914] = {.lex_state = 269}, + [2915] = {.lex_state = 269}, + [2916] = {.lex_state = 290}, + [2917] = {.lex_state = 301}, + [2918] = {.lex_state = 289}, + [2919] = {.lex_state = 290}, + [2920] = {.lex_state = 281}, + [2921] = {.lex_state = 290}, + [2922] = {.lex_state = 333}, + [2923] = {.lex_state = 281}, + [2924] = {.lex_state = 286}, [2925] = {.lex_state = 290}, - [2926] = {.lex_state = 290}, - [2927] = {.lex_state = 298}, - [2928] = {.lex_state = 298}, - [2929] = {.lex_state = 286}, + [2926] = {.lex_state = 333}, + [2927] = {.lex_state = 301}, + [2928] = {.lex_state = 290}, + [2929] = {.lex_state = 290}, [2930] = {.lex_state = 290}, [2931] = {.lex_state = 290}, - [2932] = {.lex_state = 272}, + [2932] = {.lex_state = 290}, [2933] = {.lex_state = 290}, - [2934] = {.lex_state = 271}, + [2934] = {.lex_state = 290}, [2935] = {.lex_state = 290}, - [2936] = {.lex_state = 290}, - [2937] = {.lex_state = 281}, - [2938] = {.lex_state = 281}, - [2939] = {.lex_state = 290}, - [2940] = {.lex_state = 281}, + [2936] = {.lex_state = 289}, + [2937] = {.lex_state = 301}, + [2938] = {.lex_state = 278}, + [2939] = {.lex_state = 301}, + [2940] = {.lex_state = 333}, [2941] = {.lex_state = 281}, [2942] = {.lex_state = 290}, - [2943] = {.lex_state = 271}, - [2944] = {.lex_state = 281}, - [2945] = {.lex_state = 290}, - [2946] = {.lex_state = 290}, + [2943] = {.lex_state = 289}, + [2944] = {.lex_state = 290}, + [2945] = {.lex_state = 301}, + [2946] = {.lex_state = 301}, [2947] = {.lex_state = 290}, - [2948] = {.lex_state = 290}, - [2949] = {.lex_state = 314}, + [2948] = {.lex_state = 270}, + [2949] = {.lex_state = 290}, [2950] = {.lex_state = 290}, - [2951] = {.lex_state = 286}, - [2952] = {.lex_state = 281}, - [2953] = {.lex_state = 290}, - [2954] = {.lex_state = 290}, - [2955] = {.lex_state = 290}, - [2956] = {.lex_state = 290}, - [2957] = {.lex_state = 290}, - [2958] = {.lex_state = 290}, - [2959] = {.lex_state = 272}, - [2960] = {.lex_state = 286}, - [2961] = {.lex_state = 272}, - [2962] = {.lex_state = 316}, + [2951] = {.lex_state = 301}, + [2952] = {.lex_state = 290}, + [2953] = {.lex_state = 270}, + [2954] = {.lex_state = 277}, + [2955] = {.lex_state = 285}, + [2956] = {.lex_state = 266}, + [2957] = {.lex_state = 285}, + [2958] = {.lex_state = 266}, + [2959] = {.lex_state = 290}, + [2960] = {.lex_state = 285}, + [2961] = {.lex_state = 270}, + [2962] = {.lex_state = 290}, [2963] = {.lex_state = 290}, - [2964] = {.lex_state = 272}, - [2965] = {.lex_state = 271}, - [2966] = {.lex_state = 290}, - [2967] = {.lex_state = 290}, - [2968] = {.lex_state = 272}, + [2964] = {.lex_state = 290}, + [2965] = {.lex_state = 290}, + [2966] = {.lex_state = 280}, + [2967] = {.lex_state = 280}, + [2968] = {.lex_state = 280}, [2969] = {.lex_state = 290}, - [2970] = {.lex_state = 290}, - [2971] = {.lex_state = 290}, - [2972] = {.lex_state = 278}, - [2973] = {.lex_state = 301}, - [2974] = {.lex_state = 301}, - [2975] = {.lex_state = 272}, - [2976] = {.lex_state = 286}, + [2970] = {.lex_state = 280}, + [2971] = {.lex_state = 280}, + [2972] = {.lex_state = 269}, + [2973] = {.lex_state = 271}, + [2974] = {.lex_state = 280}, + [2975] = {.lex_state = 298}, + [2976] = {.lex_state = 285}, [2977] = {.lex_state = 271}, - [2978] = {.lex_state = 270}, - [2979] = {.lex_state = 290}, - [2980] = {.lex_state = 286}, - [2981] = {.lex_state = 301}, - [2982] = {.lex_state = 270}, - [2983] = {.lex_state = 270}, - [2984] = {.lex_state = 279}, + [2978] = {.lex_state = 269}, + [2979] = {.lex_state = 270}, + [2980] = {.lex_state = 280}, + [2981] = {.lex_state = 298}, + [2982] = {.lex_state = 290}, + [2983] = {.lex_state = 285}, + [2984] = {.lex_state = 301}, [2985] = {.lex_state = 290}, - [2986] = {.lex_state = 270}, + [2986] = {.lex_state = 301}, [2987] = {.lex_state = 270}, - [2988] = {.lex_state = 290}, - [2989] = {.lex_state = 301}, - [2990] = {.lex_state = 301}, - [2991] = {.lex_state = 266}, - [2992] = {.lex_state = 301}, - [2993] = {.lex_state = 282}, - [2994] = {.lex_state = 282}, + [2988] = {.lex_state = 243}, + [2989] = {.lex_state = 269}, + [2990] = {.lex_state = 277}, + [2991] = {.lex_state = 314}, + [2992] = {.lex_state = 314}, + [2993] = {.lex_state = 280}, + [2994] = {.lex_state = 271}, [2995] = {.lex_state = 270}, - [2996] = {.lex_state = 270}, - [2997] = {.lex_state = 282}, - [2998] = {.lex_state = 282}, - [2999] = {.lex_state = 270}, - [3000] = {.lex_state = 279}, - [3001] = {.lex_state = 282}, - [3002] = {.lex_state = 282}, - [3003] = {.lex_state = 282}, - [3004] = {.lex_state = 270}, - [3005] = {.lex_state = 270}, - [3006] = {.lex_state = 270}, - [3007] = {.lex_state = 301}, - [3008] = {.lex_state = 333}, - [3009] = {.lex_state = 282}, - [3010] = {.lex_state = 301}, - [3011] = {.lex_state = 270}, - [3012] = {.lex_state = 282}, - [3013] = {.lex_state = 333}, - [3014] = {.lex_state = 282}, - [3015] = {.lex_state = 301}, - [3016] = {.lex_state = 301}, - [3017] = {.lex_state = 301}, - [3018] = {.lex_state = 301}, - [3019] = {.lex_state = 301}, - [3020] = {.lex_state = 282}, - [3021] = {.lex_state = 282}, - [3022] = {.lex_state = 301}, - [3023] = {.lex_state = 270}, - [3024] = {.lex_state = 301}, - [3025] = {.lex_state = 334}, - [3026] = {.lex_state = 270}, - [3027] = {.lex_state = 270}, - [3028] = {.lex_state = 270}, - [3029] = {.lex_state = 270}, - [3030] = {.lex_state = 282}, - [3031] = {.lex_state = 282}, - [3032] = {.lex_state = 270}, - [3033] = {.lex_state = 270}, - [3034] = {.lex_state = 301}, - [3035] = {.lex_state = 282}, - [3036] = {.lex_state = 282}, - [3037] = {.lex_state = 301}, - [3038] = {.lex_state = 266}, - [3039] = {.lex_state = 301}, - [3040] = {.lex_state = 301}, - [3041] = {.lex_state = 301}, - [3042] = {.lex_state = 270}, - [3043] = {.lex_state = 270}, - [3044] = {.lex_state = 270}, - [3045] = {.lex_state = 270}, - [3046] = {.lex_state = 282}, - [3047] = {.lex_state = 301}, - [3048] = {.lex_state = 270}, - [3049] = {.lex_state = 270}, - [3050] = {.lex_state = 270}, - [3051] = {.lex_state = 270}, - [3052] = {.lex_state = 270}, - [3053] = {.lex_state = 270}, - [3054] = {.lex_state = 282}, + [2996] = {.lex_state = 301}, + [2997] = {.lex_state = 290}, + [2998] = {.lex_state = 290}, + [2999] = {.lex_state = 290}, + [3000] = {.lex_state = 266}, + [3001] = {.lex_state = 290}, + [3002] = {.lex_state = 285}, + [3003] = {.lex_state = 290}, + [3004] = {.lex_state = 285}, + [3005] = {.lex_state = 290}, + [3006] = {.lex_state = 285}, + [3007] = {.lex_state = 290}, + [3008] = {.lex_state = 290}, + [3009] = {.lex_state = 285}, + [3010] = {.lex_state = 319}, + [3011] = {.lex_state = 280}, + [3012] = {.lex_state = 277}, + [3013] = {.lex_state = 266}, + [3014] = {.lex_state = 266}, + [3015] = {.lex_state = 285}, + [3016] = {.lex_state = 290}, + [3017] = {.lex_state = 266}, + [3018] = {.lex_state = 266}, + [3019] = {.lex_state = 298}, + [3020] = {.lex_state = 290}, + [3021] = {.lex_state = 314}, + [3022] = {.lex_state = 285}, + [3023] = {.lex_state = 290}, + [3024] = {.lex_state = 285}, + [3025] = {.lex_state = 290}, + [3026] = {.lex_state = 290}, + [3027] = {.lex_state = 285}, + [3028] = {.lex_state = 314}, + [3029] = {.lex_state = 271}, + [3030] = {.lex_state = 290}, + [3031] = {.lex_state = 290}, + [3032] = {.lex_state = 277}, + [3033] = {.lex_state = 290}, + [3034] = {.lex_state = 285}, + [3035] = {.lex_state = 290}, + [3036] = {.lex_state = 290}, + [3037] = {.lex_state = 290}, + [3038] = {.lex_state = 285}, + [3039] = {.lex_state = 290}, + [3040] = {.lex_state = 290}, + [3041] = {.lex_state = 290}, + [3042] = {.lex_state = 290}, + [3043] = {.lex_state = 266}, + [3044] = {.lex_state = 266}, + [3045] = {.lex_state = 290}, + [3046] = {.lex_state = 290}, + [3047] = {.lex_state = 290}, + [3048] = {.lex_state = 290}, + [3049] = {.lex_state = 290}, + [3050] = {.lex_state = 290}, + [3051] = {.lex_state = 290}, + [3052] = {.lex_state = 290}, + [3053] = {.lex_state = 269}, + [3054] = {.lex_state = 269}, [3055] = {.lex_state = 301}, - [3056] = {.lex_state = 270}, - [3057] = {.lex_state = 301}, - [3058] = {.lex_state = 282}, - [3059] = {.lex_state = 271}, - [3060] = {.lex_state = 270}, - [3061] = {.lex_state = 282}, - [3062] = {.lex_state = 301}, - [3063] = {.lex_state = 270}, - [3064] = {.lex_state = 270}, - [3065] = {.lex_state = 270}, - [3066] = {.lex_state = 270}, - [3067] = {.lex_state = 282}, - [3068] = {.lex_state = 271}, - [3069] = {.lex_state = 282}, - [3070] = {.lex_state = 270}, - [3071] = {.lex_state = 270}, - [3072] = {.lex_state = 270}, - [3073] = {.lex_state = 270}, - [3074] = {.lex_state = 301}, - [3075] = {.lex_state = 324}, - [3076] = {.lex_state = 282}, - [3077] = {.lex_state = 282}, - [3078] = {.lex_state = 282}, - [3079] = {.lex_state = 282}, - [3080] = {.lex_state = 282}, - [3081] = {.lex_state = 282}, - [3082] = {.lex_state = 282}, - [3083] = {.lex_state = 301}, - [3084] = {.lex_state = 301}, - [3085] = {.lex_state = 334}, - [3086] = {.lex_state = 282}, - [3087] = {.lex_state = 282}, - [3088] = {.lex_state = 282}, + [3056] = {.lex_state = 319}, + [3057] = {.lex_state = 290}, + [3058] = {.lex_state = 290}, + [3059] = {.lex_state = 290}, + [3060] = {.lex_state = 314}, + [3061] = {.lex_state = 266}, + [3062] = {.lex_state = 280}, + [3063] = {.lex_state = 290}, + [3064] = {.lex_state = 290}, + [3065] = {.lex_state = 266}, + [3066] = {.lex_state = 290}, + [3067] = {.lex_state = 290}, + [3068] = {.lex_state = 285}, + [3069] = {.lex_state = 290}, + [3070] = {.lex_state = 298}, + [3071] = {.lex_state = 271}, + [3072] = {.lex_state = 298}, + [3073] = {.lex_state = 298}, + [3074] = {.lex_state = 271}, + [3075] = {.lex_state = 271}, + [3076] = {.lex_state = 271}, + [3077] = {.lex_state = 271}, + [3078] = {.lex_state = 271}, + [3079] = {.lex_state = 266}, + [3080] = {.lex_state = 290}, + [3081] = {.lex_state = 290}, + [3082] = {.lex_state = 301}, + [3083] = {.lex_state = 280}, + [3084] = {.lex_state = 280}, + [3085] = {.lex_state = 285}, + [3086] = {.lex_state = 301}, + [3087] = {.lex_state = 269}, + [3088] = {.lex_state = 301}, [3089] = {.lex_state = 301}, - [3090] = {.lex_state = 334}, - [3091] = {.lex_state = 301}, + [3090] = {.lex_state = 301}, + [3091] = {.lex_state = 281}, [3092] = {.lex_state = 290}, - [3093] = {.lex_state = 271}, - [3094] = {.lex_state = 290}, - [3095] = {.lex_state = 282}, - [3096] = {.lex_state = 282}, - [3097] = {.lex_state = 271}, - [3098] = {.lex_state = 271}, - [3099] = {.lex_state = 334}, - [3100] = {.lex_state = 282}, + [3093] = {.lex_state = 269}, + [3094] = {.lex_state = 270}, + [3095] = {.lex_state = 301}, + [3096] = {.lex_state = 301}, + [3097] = {.lex_state = 281}, + [3098] = {.lex_state = 301}, + [3099] = {.lex_state = 301}, + [3100] = {.lex_state = 281}, [3101] = {.lex_state = 270}, - [3102] = {.lex_state = 282}, - [3103] = {.lex_state = 301}, - [3104] = {.lex_state = 301}, - [3105] = {.lex_state = 267}, - [3106] = {.lex_state = 317}, - [3107] = {.lex_state = 301}, - [3108] = {.lex_state = 301}, - [3109] = {.lex_state = 271}, - [3110] = {.lex_state = 301}, - [3111] = {.lex_state = 301}, - [3112] = {.lex_state = 282}, + [3102] = {.lex_state = 269}, + [3103] = {.lex_state = 281}, + [3104] = {.lex_state = 269}, + [3105] = {.lex_state = 281}, + [3106] = {.lex_state = 269}, + [3107] = {.lex_state = 269}, + [3108] = {.lex_state = 281}, + [3109] = {.lex_state = 281}, + [3110] = {.lex_state = 269}, + [3111] = {.lex_state = 270}, + [3112] = {.lex_state = 301}, [3113] = {.lex_state = 301}, - [3114] = {.lex_state = 282}, - [3115] = {.lex_state = 271}, - [3116] = {.lex_state = 271}, - [3117] = {.lex_state = 271}, - [3118] = {.lex_state = 282}, - [3119] = {.lex_state = 290}, + [3114] = {.lex_state = 290}, + [3115] = {.lex_state = 290}, + [3116] = {.lex_state = 281}, + [3117] = {.lex_state = 281}, + [3118] = {.lex_state = 286}, + [3119] = {.lex_state = 269}, [3120] = {.lex_state = 290}, - [3121] = {.lex_state = 271}, - [3122] = {.lex_state = 267}, - [3123] = {.lex_state = 282}, - [3124] = {.lex_state = 290}, - [3125] = {.lex_state = 301}, - [3126] = {.lex_state = 271}, + [3121] = {.lex_state = 269}, + [3122] = {.lex_state = 301}, + [3123] = {.lex_state = 301}, + [3124] = {.lex_state = 270}, + [3125] = {.lex_state = 266}, + [3126] = {.lex_state = 281}, [3127] = {.lex_state = 301}, - [3128] = {.lex_state = 282}, - [3129] = {.lex_state = 267}, - [3130] = {.lex_state = 334}, - [3131] = {.lex_state = 266}, - [3132] = {.lex_state = 290}, - [3133] = {.lex_state = 334}, - [3134] = {.lex_state = 266}, - [3135] = {.lex_state = 282}, + [3128] = {.lex_state = 290}, + [3129] = {.lex_state = 266}, + [3130] = {.lex_state = 269}, + [3131] = {.lex_state = 269}, + [3132] = {.lex_state = 301}, + [3133] = {.lex_state = 301}, + [3134] = {.lex_state = 269}, + [3135] = {.lex_state = 290}, [3136] = {.lex_state = 301}, - [3137] = {.lex_state = 266}, - [3138] = {.lex_state = 301}, - [3139] = {.lex_state = 301}, - [3140] = {.lex_state = 301}, - [3141] = {.lex_state = 267}, - [3142] = {.lex_state = 270}, - [3143] = {.lex_state = 334}, - [3144] = {.lex_state = 334}, - [3145] = {.lex_state = 334}, - [3146] = {.lex_state = 334}, - [3147] = {.lex_state = 334}, - [3148] = {.lex_state = 334}, - [3149] = {.lex_state = 266}, - [3150] = {.lex_state = 270}, - [3151] = {.lex_state = 334}, - [3152] = {.lex_state = 278}, - [3153] = {.lex_state = 266}, - [3154] = {.lex_state = 334}, - [3155] = {.lex_state = 334}, - [3156] = {.lex_state = 334}, - [3157] = {.lex_state = 334}, - [3158] = {.lex_state = 334}, - [3159] = {.lex_state = 334}, - [3160] = {.lex_state = 334}, - [3161] = {.lex_state = 334}, - [3162] = {.lex_state = 334}, - [3163] = {.lex_state = 334}, - [3164] = {.lex_state = 266}, - [3165] = {.lex_state = 334}, - [3166] = {.lex_state = 245}, - [3167] = {.lex_state = 334}, - [3168] = {.lex_state = 266}, - [3169] = {.lex_state = 286}, - [3170] = {.lex_state = 279}, - [3171] = {.lex_state = 289}, - [3172] = {.lex_state = 278}, - [3173] = {.lex_state = 266}, - [3174] = {.lex_state = 266}, - [3175] = {.lex_state = 266}, - [3176] = {.lex_state = 278}, - [3177] = {.lex_state = 266}, - [3178] = {.lex_state = 266}, - [3179] = {.lex_state = 266}, - [3180] = {.lex_state = 266}, - [3181] = {.lex_state = 266}, - [3182] = {.lex_state = 334}, - [3183] = {.lex_state = 334}, - [3184] = {.lex_state = 266}, - [3185] = {.lex_state = 266}, - [3186] = {.lex_state = 266}, - [3187] = {.lex_state = 266}, - [3188] = {.lex_state = 266}, - [3189] = {.lex_state = 266}, - [3190] = {.lex_state = 266}, - [3191] = {.lex_state = 266}, - [3192] = {.lex_state = 266}, - [3193] = {.lex_state = 266}, - [3194] = {.lex_state = 334}, - [3195] = {.lex_state = 266}, - [3196] = {.lex_state = 334}, - [3197] = {.lex_state = 334}, - [3198] = {.lex_state = 334}, - [3199] = {.lex_state = 334}, - [3200] = {.lex_state = 266}, - [3201] = {.lex_state = 266}, - [3202] = {.lex_state = 266}, - [3203] = {.lex_state = 286}, - [3204] = {.lex_state = 245}, - [3205] = {.lex_state = 334}, - [3206] = {.lex_state = 334}, - [3207] = {.lex_state = 266}, - [3208] = {.lex_state = 266}, - [3209] = {.lex_state = 266}, - [3210] = {.lex_state = 334}, - [3211] = {.lex_state = 334}, - [3212] = {.lex_state = 334}, - [3213] = {.lex_state = 334}, - [3214] = {.lex_state = 266}, - [3215] = {.lex_state = 334}, - [3216] = {.lex_state = 266}, - [3217] = {.lex_state = 266}, - [3218] = {.lex_state = 266}, - [3219] = {.lex_state = 334}, - [3220] = {.lex_state = 334}, - [3221] = {.lex_state = 266}, - [3222] = {.lex_state = 334}, - [3223] = {.lex_state = 272}, - [3224] = {.lex_state = 266}, - [3225] = {.lex_state = 266}, - [3226] = {.lex_state = 266}, - [3227] = {.lex_state = 266}, - [3228] = {.lex_state = 266}, - [3229] = {.lex_state = 334}, - [3230] = {.lex_state = 334}, - [3231] = {.lex_state = 266}, - [3232] = {.lex_state = 266}, - [3233] = {.lex_state = 289}, - [3234] = {.lex_state = 266}, - [3235] = {.lex_state = 334}, - [3236] = {.lex_state = 334}, - [3237] = {.lex_state = 266}, - [3238] = {.lex_state = 334}, - [3239] = {.lex_state = 278}, - [3240] = {.lex_state = 266}, - [3241] = {.lex_state = 266}, - [3242] = {.lex_state = 266}, - [3243] = {.lex_state = 334}, - [3244] = {.lex_state = 266}, - [3245] = {.lex_state = 334}, - [3246] = {.lex_state = 334}, - [3247] = {.lex_state = 334}, - [3248] = {.lex_state = 272}, - [3249] = {.lex_state = 266}, - [3250] = {.lex_state = 289}, - [3251] = {.lex_state = 301}, + [3137] = {.lex_state = 269}, + [3138] = {.lex_state = 333}, + [3139] = {.lex_state = 281}, + [3140] = {.lex_state = 270}, + [3141] = {.lex_state = 269}, + [3142] = {.lex_state = 301}, + [3143] = {.lex_state = 281}, + [3144] = {.lex_state = 281}, + [3145] = {.lex_state = 301}, + [3146] = {.lex_state = 301}, + [3147] = {.lex_state = 301}, + [3148] = {.lex_state = 286}, + [3149] = {.lex_state = 270}, + [3150] = {.lex_state = 333}, + [3151] = {.lex_state = 301}, + [3152] = {.lex_state = 270}, + [3153] = {.lex_state = 301}, + [3154] = {.lex_state = 316}, + [3155] = {.lex_state = 281}, + [3156] = {.lex_state = 281}, + [3157] = {.lex_state = 301}, + [3158] = {.lex_state = 301}, + [3159] = {.lex_state = 333}, + [3160] = {.lex_state = 301}, + [3161] = {.lex_state = 286}, + [3162] = {.lex_state = 301}, + [3163] = {.lex_state = 269}, + [3164] = {.lex_state = 281}, + [3165] = {.lex_state = 269}, + [3166] = {.lex_state = 269}, + [3167] = {.lex_state = 269}, + [3168] = {.lex_state = 333}, + [3169] = {.lex_state = 266}, + [3170] = {.lex_state = 266}, + [3171] = {.lex_state = 278}, + [3172] = {.lex_state = 270}, + [3173] = {.lex_state = 278}, + [3174] = {.lex_state = 324}, + [3175] = {.lex_state = 281}, + [3176] = {.lex_state = 269}, + [3177] = {.lex_state = 290}, + [3178] = {.lex_state = 281}, + [3179] = {.lex_state = 301}, + [3180] = {.lex_state = 270}, + [3181] = {.lex_state = 301}, + [3182] = {.lex_state = 333}, + [3183] = {.lex_state = 301}, + [3184] = {.lex_state = 269}, + [3185] = {.lex_state = 281}, + [3186] = {.lex_state = 281}, + [3187] = {.lex_state = 281}, + [3188] = {.lex_state = 269}, + [3189] = {.lex_state = 269}, + [3190] = {.lex_state = 281}, + [3191] = {.lex_state = 281}, + [3192] = {.lex_state = 281}, + [3193] = {.lex_state = 301}, + [3194] = {.lex_state = 269}, + [3195] = {.lex_state = 269}, + [3196] = {.lex_state = 269}, + [3197] = {.lex_state = 281}, + [3198] = {.lex_state = 270}, + [3199] = {.lex_state = 281}, + [3200] = {.lex_state = 286}, + [3201] = {.lex_state = 281}, + [3202] = {.lex_state = 269}, + [3203] = {.lex_state = 281}, + [3204] = {.lex_state = 334}, + [3205] = {.lex_state = 269}, + [3206] = {.lex_state = 286}, + [3207] = {.lex_state = 269}, + [3208] = {.lex_state = 301}, + [3209] = {.lex_state = 269}, + [3210] = {.lex_state = 269}, + [3211] = {.lex_state = 290}, + [3212] = {.lex_state = 281}, + [3213] = {.lex_state = 301}, + [3214] = {.lex_state = 269}, + [3215] = {.lex_state = 281}, + [3216] = {.lex_state = 270}, + [3217] = {.lex_state = 301}, + [3218] = {.lex_state = 301}, + [3219] = {.lex_state = 269}, + [3220] = {.lex_state = 301}, + [3221] = {.lex_state = 281}, + [3222] = {.lex_state = 301}, + [3223] = {.lex_state = 281}, + [3224] = {.lex_state = 269}, + [3225] = {.lex_state = 281}, + [3226] = {.lex_state = 301}, + [3227] = {.lex_state = 269}, + [3228] = {.lex_state = 269}, + [3229] = {.lex_state = 269}, + [3230] = {.lex_state = 301}, + [3231] = {.lex_state = 269}, + [3232] = {.lex_state = 281}, + [3233] = {.lex_state = 269}, + [3234] = {.lex_state = 333}, + [3235] = {.lex_state = 281}, + [3236] = {.lex_state = 281}, + [3237] = {.lex_state = 281}, + [3238] = {.lex_state = 269}, + [3239] = {.lex_state = 334}, + [3240] = {.lex_state = 281}, + [3241] = {.lex_state = 301}, + [3242] = {.lex_state = 301}, + [3243] = {.lex_state = 281}, + [3244] = {.lex_state = 269}, + [3245] = {.lex_state = 281}, + [3246] = {.lex_state = 281}, + [3247] = {.lex_state = 281}, + [3248] = {.lex_state = 333}, + [3249] = {.lex_state = 286}, + [3250] = {.lex_state = 286}, + [3251] = {.lex_state = 286}, [3252] = {.lex_state = 286}, - [3253] = {.lex_state = 334}, - [3254] = {.lex_state = 334}, - [3255] = {.lex_state = 334}, - [3256] = {.lex_state = 334}, - [3257] = {.lex_state = 334}, - [3258] = {.lex_state = 334}, - [3259] = {.lex_state = 289}, - [3260] = {.lex_state = 243}, - [3261] = {.lex_state = 334}, - [3262] = {.lex_state = 290}, - [3263] = {.lex_state = 289}, - [3264] = {.lex_state = 290}, - [3265] = {.lex_state = 266}, - [3266] = {.lex_state = 334}, - [3267] = {.lex_state = 334}, - [3268] = {.lex_state = 266}, - [3269] = {.lex_state = 266}, - [3270] = {.lex_state = 282}, - [3271] = {.lex_state = 334}, - [3272] = {.lex_state = 334}, - [3273] = {.lex_state = 266}, - [3274] = {.lex_state = 334}, - [3275] = {.lex_state = 270}, - [3276] = {.lex_state = 266}, - [3277] = {.lex_state = 266}, - [3278] = {.lex_state = 266}, - [3279] = {.lex_state = 334}, - [3280] = {.lex_state = 266}, - [3281] = {.lex_state = 334}, - [3282] = {.lex_state = 266}, - [3283] = {.lex_state = 266}, - [3284] = {.lex_state = 334}, - [3285] = {.lex_state = 334}, - [3286] = {.lex_state = 266}, - [3287] = {.lex_state = 278}, - [3288] = {.lex_state = 266}, - [3289] = {.lex_state = 266}, - [3290] = {.lex_state = 266}, - [3291] = {.lex_state = 266}, - [3292] = {.lex_state = 266}, - [3293] = {.lex_state = 282}, - [3294] = {.lex_state = 334}, - [3295] = {.lex_state = 266}, - [3296] = {.lex_state = 334}, - [3297] = {.lex_state = 266}, - [3298] = {.lex_state = 334}, - [3299] = {.lex_state = 266}, - [3300] = {.lex_state = 266}, - [3301] = {.lex_state = 282}, - [3302] = {.lex_state = 266}, - [3303] = {.lex_state = 266}, - [3304] = {.lex_state = 266}, - [3305] = {.lex_state = 266}, - [3306] = {.lex_state = 266}, - [3307] = {.lex_state = 290}, - [3308] = {.lex_state = 334}, - [3309] = {.lex_state = 334}, - [3310] = {.lex_state = 266}, - [3311] = {.lex_state = 266}, - [3312] = {.lex_state = 266}, - [3313] = {.lex_state = 266}, - [3314] = {.lex_state = 334}, - [3315] = {.lex_state = 278}, - [3316] = {.lex_state = 278}, - [3317] = {.lex_state = 334}, - [3318] = {.lex_state = 278}, - [3319] = {.lex_state = 266}, - [3320] = {.lex_state = 278}, - [3321] = {.lex_state = 266}, - [3322] = {.lex_state = 278}, - [3323] = {.lex_state = 266}, - [3324] = {.lex_state = 266}, - [3325] = {.lex_state = 266}, - [3326] = {.lex_state = 266}, - [3327] = {.lex_state = 266}, - [3328] = {.lex_state = 289}, - [3329] = {.lex_state = 334}, - [3330] = {.lex_state = 334}, - [3331] = {.lex_state = 334}, - [3332] = {.lex_state = 266}, - [3333] = {.lex_state = 281}, - [3334] = {.lex_state = 266}, - [3335] = {.lex_state = 334}, - [3336] = {.lex_state = 334}, - [3337] = {.lex_state = 334}, - [3338] = {.lex_state = 266}, - [3339] = {.lex_state = 334}, - [3340] = {.lex_state = 334}, - [3341] = {.lex_state = 334}, - [3342] = {.lex_state = 278}, - [3343] = {.lex_state = 334}, - [3344] = {.lex_state = 334}, - [3345] = {.lex_state = 334}, - [3346] = {.lex_state = 266}, - [3347] = {.lex_state = 266}, - [3348] = {.lex_state = 334}, - [3349] = {.lex_state = 266}, - [3350] = {.lex_state = 266}, - [3351] = {.lex_state = 266}, - [3352] = {.lex_state = 334}, - [3353] = {.lex_state = 266}, - [3354] = {.lex_state = 334}, - [3355] = {.lex_state = 334}, - [3356] = {.lex_state = 334}, - [3357] = {.lex_state = 266}, - [3358] = {.lex_state = 334}, - [3359] = {.lex_state = 334}, - [3360] = {.lex_state = 266}, - [3361] = {.lex_state = 278}, - [3362] = {.lex_state = 278}, - [3363] = {.lex_state = 334}, - [3364] = {.lex_state = 334}, - [3365] = {.lex_state = 266}, - [3366] = {.lex_state = 334}, - [3367] = {.lex_state = 334}, - [3368] = {.lex_state = 334}, - [3369] = {.lex_state = 334}, - [3370] = {.lex_state = 334}, - [3371] = {.lex_state = 334}, - [3372] = {.lex_state = 334}, - [3373] = {.lex_state = 334}, - [3374] = {.lex_state = 334}, - [3375] = {.lex_state = 334}, - [3376] = {.lex_state = 334}, - [3377] = {.lex_state = 266}, - [3378] = {.lex_state = 321}, - [3379] = {.lex_state = 245}, - [3380] = {.lex_state = 290}, - [3381] = {.lex_state = 290}, - [3382] = {.lex_state = 290}, - [3383] = {.lex_state = 272}, - [3384] = {.lex_state = 281}, - [3385] = {.lex_state = 280}, - [3386] = {.lex_state = 290}, - [3387] = {.lex_state = 290}, - [3388] = {.lex_state = 290}, - [3389] = {.lex_state = 281}, - [3390] = {.lex_state = 281}, - [3391] = {.lex_state = 290}, - [3392] = {.lex_state = 249}, - [3393] = {.lex_state = 281}, - [3394] = {.lex_state = 249}, - [3395] = {.lex_state = 272}, - [3396] = {.lex_state = 290}, - [3397] = {.lex_state = 281}, - [3398] = {.lex_state = 281}, - [3399] = {.lex_state = 281}, - [3400] = {.lex_state = 245}, - [3401] = {.lex_state = 281}, - [3402] = {.lex_state = 281}, - [3403] = {.lex_state = 325}, - [3404] = {.lex_state = 245}, - [3405] = {.lex_state = 272}, - [3406] = {.lex_state = 254}, - [3407] = {.lex_state = 281}, - [3408] = {.lex_state = 267}, - [3409] = {.lex_state = 290}, - [3410] = {.lex_state = 290}, - [3411] = {.lex_state = 278}, - [3412] = {.lex_state = 278}, - [3413] = {.lex_state = 290}, - [3414] = {.lex_state = 254}, - [3415] = {.lex_state = 290}, - [3416] = {.lex_state = 290}, - [3417] = {.lex_state = 290}, - [3418] = {.lex_state = 290}, - [3419] = {.lex_state = 281}, - [3420] = {.lex_state = 281}, - [3421] = {.lex_state = 243}, - [3422] = {.lex_state = 278}, - [3423] = {.lex_state = 278}, - [3424] = {.lex_state = 278}, - [3425] = {.lex_state = 278}, - [3426] = {.lex_state = 281}, - [3427] = {.lex_state = 280}, - [3428] = {.lex_state = 278}, - [3429] = {.lex_state = 278}, - [3430] = {.lex_state = 278}, - [3431] = {.lex_state = 281}, - [3432] = {.lex_state = 281}, - [3433] = {.lex_state = 281}, - [3434] = {.lex_state = 280}, - [3435] = {.lex_state = 267}, - [3436] = {.lex_state = 281}, - [3437] = {.lex_state = 281}, - [3438] = {.lex_state = 325}, - [3439] = {.lex_state = 278}, - [3440] = {.lex_state = 281}, - [3441] = {.lex_state = 290}, - [3442] = {.lex_state = 290}, - [3443] = {.lex_state = 290}, - [3444] = {.lex_state = 290}, - [3445] = {.lex_state = 334}, - [3446] = {.lex_state = 243}, + [3253] = {.lex_state = 286}, + [3254] = {.lex_state = 286}, + [3255] = {.lex_state = 286}, + [3256] = {.lex_state = 286}, + [3257] = {.lex_state = 286}, + [3258] = {.lex_state = 286}, + [3259] = {.lex_state = 286}, + [3260] = {.lex_state = 286}, + [3261] = {.lex_state = 286}, + [3262] = {.lex_state = 286}, + [3263] = {.lex_state = 286}, + [3264] = {.lex_state = 286}, + [3265] = {.lex_state = 286}, + [3266] = {.lex_state = 286}, + [3267] = {.lex_state = 286}, + [3268] = {.lex_state = 286}, + [3269] = {.lex_state = 286}, + [3270] = {.lex_state = 286}, + [3271] = {.lex_state = 286}, + [3272] = {.lex_state = 286}, + [3273] = {.lex_state = 286}, + [3274] = {.lex_state = 286}, + [3275] = {.lex_state = 333}, + [3276] = {.lex_state = 286}, + [3277] = {.lex_state = 286}, + [3278] = {.lex_state = 286}, + [3279] = {.lex_state = 286}, + [3280] = {.lex_state = 286}, + [3281] = {.lex_state = 286}, + [3282] = {.lex_state = 286}, + [3283] = {.lex_state = 286}, + [3284] = {.lex_state = 277}, + [3285] = {.lex_state = 277}, + [3286] = {.lex_state = 286}, + [3287] = {.lex_state = 286}, + [3288] = {.lex_state = 286}, + [3289] = {.lex_state = 277}, + [3290] = {.lex_state = 277}, + [3291] = {.lex_state = 286}, + [3292] = {.lex_state = 286}, + [3293] = {.lex_state = 286}, + [3294] = {.lex_state = 286}, + [3295] = {.lex_state = 277}, + [3296] = {.lex_state = 286}, + [3297] = {.lex_state = 286}, + [3298] = {.lex_state = 286}, + [3299] = {.lex_state = 277}, + [3300] = {.lex_state = 277}, + [3301] = {.lex_state = 277}, + [3302] = {.lex_state = 277}, + [3303] = {.lex_state = 277}, + [3304] = {.lex_state = 286}, + [3305] = {.lex_state = 286}, + [3306] = {.lex_state = 286}, + [3307] = {.lex_state = 286}, + [3308] = {.lex_state = 286}, + [3309] = {.lex_state = 286}, + [3310] = {.lex_state = 277}, + [3311] = {.lex_state = 286}, + [3312] = {.lex_state = 286}, + [3313] = {.lex_state = 286}, + [3314] = {.lex_state = 286}, + [3315] = {.lex_state = 286}, + [3316] = {.lex_state = 286}, + [3317] = {.lex_state = 286}, + [3318] = {.lex_state = 286}, + [3319] = {.lex_state = 277}, + [3320] = {.lex_state = 277}, + [3321] = {.lex_state = 286}, + [3322] = {.lex_state = 286}, + [3323] = {.lex_state = 286}, + [3324] = {.lex_state = 286}, + [3325] = {.lex_state = 286}, + [3326] = {.lex_state = 286}, + [3327] = {.lex_state = 286}, + [3328] = {.lex_state = 286}, + [3329] = {.lex_state = 286}, + [3330] = {.lex_state = 286}, + [3331] = {.lex_state = 245}, + [3332] = {.lex_state = 286}, + [3333] = {.lex_state = 286}, + [3334] = {.lex_state = 286}, + [3335] = {.lex_state = 286}, + [3336] = {.lex_state = 286}, + [3337] = {.lex_state = 286}, + [3338] = {.lex_state = 286}, + [3339] = {.lex_state = 286}, + [3340] = {.lex_state = 285}, + [3341] = {.lex_state = 333}, + [3342] = {.lex_state = 333}, + [3343] = {.lex_state = 333}, + [3344] = {.lex_state = 333}, + [3345] = {.lex_state = 333}, + [3346] = {.lex_state = 333}, + [3347] = {.lex_state = 333}, + [3348] = {.lex_state = 333}, + [3349] = {.lex_state = 333}, + [3350] = {.lex_state = 333}, + [3351] = {.lex_state = 289}, + [3352] = {.lex_state = 289}, + [3353] = {.lex_state = 289}, + [3354] = {.lex_state = 333}, + [3355] = {.lex_state = 333}, + [3356] = {.lex_state = 333}, + [3357] = {.lex_state = 333}, + [3358] = {.lex_state = 333}, + [3359] = {.lex_state = 333}, + [3360] = {.lex_state = 333}, + [3361] = {.lex_state = 333}, + [3362] = {.lex_state = 333}, + [3363] = {.lex_state = 333}, + [3364] = {.lex_state = 333}, + [3365] = {.lex_state = 333}, + [3366] = {.lex_state = 333}, + [3367] = {.lex_state = 333}, + [3368] = {.lex_state = 333}, + [3369] = {.lex_state = 333}, + [3370] = {.lex_state = 333}, + [3371] = {.lex_state = 333}, + [3372] = {.lex_state = 333}, + [3373] = {.lex_state = 280}, + [3374] = {.lex_state = 333}, + [3375] = {.lex_state = 281}, + [3376] = {.lex_state = 269}, + [3377] = {.lex_state = 281}, + [3378] = {.lex_state = 281}, + [3379] = {.lex_state = 285}, + [3380] = {.lex_state = 333}, + [3381] = {.lex_state = 301}, + [3382] = {.lex_state = 289}, + [3383] = {.lex_state = 289}, + [3384] = {.lex_state = 289}, + [3385] = {.lex_state = 333}, + [3386] = {.lex_state = 333}, + [3387] = {.lex_state = 333}, + [3388] = {.lex_state = 333}, + [3389] = {.lex_state = 333}, + [3390] = {.lex_state = 333}, + [3391] = {.lex_state = 333}, + [3392] = {.lex_state = 269}, + [3393] = {.lex_state = 333}, + [3394] = {.lex_state = 333}, + [3395] = {.lex_state = 333}, + [3396] = {.lex_state = 333}, + [3397] = {.lex_state = 243}, + [3398] = {.lex_state = 333}, + [3399] = {.lex_state = 333}, + [3400] = {.lex_state = 333}, + [3401] = {.lex_state = 333}, + [3402] = {.lex_state = 333}, + [3403] = {.lex_state = 333}, + [3404] = {.lex_state = 333}, + [3405] = {.lex_state = 333}, + [3406] = {.lex_state = 333}, + [3407] = {.lex_state = 333}, + [3408] = {.lex_state = 333}, + [3409] = {.lex_state = 333}, + [3410] = {.lex_state = 333}, + [3411] = {.lex_state = 286}, + [3412] = {.lex_state = 333}, + [3413] = {.lex_state = 333}, + [3414] = {.lex_state = 333}, + [3415] = {.lex_state = 333}, + [3416] = {.lex_state = 333}, + [3417] = {.lex_state = 333}, + [3418] = {.lex_state = 333}, + [3419] = {.lex_state = 333}, + [3420] = {.lex_state = 333}, + [3421] = {.lex_state = 333}, + [3422] = {.lex_state = 333}, + [3423] = {.lex_state = 333}, + [3424] = {.lex_state = 333}, + [3425] = {.lex_state = 333}, + [3426] = {.lex_state = 333}, + [3427] = {.lex_state = 333}, + [3428] = {.lex_state = 333}, + [3429] = {.lex_state = 333}, + [3430] = {.lex_state = 333}, + [3431] = {.lex_state = 333}, + [3432] = {.lex_state = 333}, + [3433] = {.lex_state = 271}, + [3434] = {.lex_state = 333}, + [3435] = {.lex_state = 333}, + [3436] = {.lex_state = 245}, + [3437] = {.lex_state = 333}, + [3438] = {.lex_state = 333}, + [3439] = {.lex_state = 333}, + [3440] = {.lex_state = 333}, + [3441] = {.lex_state = 271}, + [3442] = {.lex_state = 333}, + [3443] = {.lex_state = 333}, + [3444] = {.lex_state = 333}, + [3445] = {.lex_state = 333}, + [3446] = {.lex_state = 333}, [3447] = {.lex_state = 290}, [3448] = {.lex_state = 290}, [3449] = {.lex_state = 278}, - [3450] = {.lex_state = 290}, - [3451] = {.lex_state = 290}, - [3452] = {.lex_state = 290}, + [3450] = {.lex_state = 333}, + [3451] = {.lex_state = 333}, + [3452] = {.lex_state = 333}, [3453] = {.lex_state = 290}, - [3454] = {.lex_state = 278}, - [3455] = {.lex_state = 243}, - [3456] = {.lex_state = 278}, - [3457] = {.lex_state = 280}, - [3458] = {.lex_state = 281}, - [3459] = {.lex_state = 281}, - [3460] = {.lex_state = 290}, - [3461] = {.lex_state = 290}, - [3462] = {.lex_state = 334}, - [3463] = {.lex_state = 254}, - [3464] = {.lex_state = 281}, - [3465] = {.lex_state = 281}, - [3466] = {.lex_state = 281}, - [3467] = {.lex_state = 290}, - [3468] = {.lex_state = 281}, - [3469] = {.lex_state = 281}, - [3470] = {.lex_state = 281}, - [3471] = {.lex_state = 290}, - [3472] = {.lex_state = 272}, - [3473] = {.lex_state = 290}, - [3474] = {.lex_state = 290}, - [3475] = {.lex_state = 290}, - [3476] = {.lex_state = 290}, - [3477] = {.lex_state = 290}, - [3478] = {.lex_state = 290}, - [3479] = {.lex_state = 290}, - [3480] = {.lex_state = 290}, - [3481] = {.lex_state = 290}, - [3482] = {.lex_state = 334}, - [3483] = {.lex_state = 281}, - [3484] = {.lex_state = 281}, - [3485] = {.lex_state = 281}, - [3486] = {.lex_state = 281}, - [3487] = {.lex_state = 321}, - [3488] = {.lex_state = 281}, - [3489] = {.lex_state = 272}, - [3490] = {.lex_state = 267}, - [3491] = {.lex_state = 267}, - [3492] = {.lex_state = 272}, - [3493] = {.lex_state = 272}, - [3494] = {.lex_state = 272}, - [3495] = {.lex_state = 267}, - [3496] = {.lex_state = 272}, - [3497] = {.lex_state = 272}, - [3498] = {.lex_state = 272}, - [3499] = {.lex_state = 272}, - [3500] = {.lex_state = 272}, - [3501] = {.lex_state = 272}, - [3502] = {.lex_state = 272}, - [3503] = {.lex_state = 243}, - [3504] = {.lex_state = 286}, - [3505] = {.lex_state = 243}, - [3506] = {.lex_state = 269}, - [3507] = {.lex_state = 272}, - [3508] = {.lex_state = 272}, - [3509] = {.lex_state = 269}, - [3510] = {.lex_state = 272}, - [3511] = {.lex_state = 286}, + [3454] = {.lex_state = 333}, + [3455] = {.lex_state = 333}, + [3456] = {.lex_state = 333}, + [3457] = {.lex_state = 333}, + [3458] = {.lex_state = 333}, + [3459] = {.lex_state = 333}, + [3460] = {.lex_state = 333}, + [3461] = {.lex_state = 333}, + [3462] = {.lex_state = 286}, + [3463] = {.lex_state = 286}, + [3464] = {.lex_state = 286}, + [3465] = {.lex_state = 286}, + [3466] = {.lex_state = 286}, + [3467] = {.lex_state = 286}, + [3468] = {.lex_state = 286}, + [3469] = {.lex_state = 286}, + [3470] = {.lex_state = 286}, + [3471] = {.lex_state = 286}, + [3472] = {.lex_state = 286}, + [3473] = {.lex_state = 286}, + [3474] = {.lex_state = 285}, + [3475] = {.lex_state = 286}, + [3476] = {.lex_state = 286}, + [3477] = {.lex_state = 286}, + [3478] = {.lex_state = 286}, + [3479] = {.lex_state = 286}, + [3480] = {.lex_state = 286}, + [3481] = {.lex_state = 286}, + [3482] = {.lex_state = 286}, + [3483] = {.lex_state = 280}, + [3484] = {.lex_state = 277}, + [3485] = {.lex_state = 277}, + [3486] = {.lex_state = 290}, + [3487] = {.lex_state = 243}, + [3488] = {.lex_state = 325}, + [3489] = {.lex_state = 325}, + [3490] = {.lex_state = 321}, + [3491] = {.lex_state = 277}, + [3492] = {.lex_state = 321}, + [3493] = {.lex_state = 279}, + [3494] = {.lex_state = 333}, + [3495] = {.lex_state = 277}, + [3496] = {.lex_state = 279}, + [3497] = {.lex_state = 333}, + [3498] = {.lex_state = 277}, + [3499] = {.lex_state = 280}, + [3500] = {.lex_state = 290}, + [3501] = {.lex_state = 279}, + [3502] = {.lex_state = 277}, + [3503] = {.lex_state = 277}, + [3504] = {.lex_state = 277}, + [3505] = {.lex_state = 333}, + [3506] = {.lex_state = 277}, + [3507] = {.lex_state = 254}, + [3508] = {.lex_state = 277}, + [3509] = {.lex_state = 277}, + [3510] = {.lex_state = 277}, + [3511] = {.lex_state = 280}, [3512] = {.lex_state = 280}, - [3513] = {.lex_state = 272}, - [3514] = {.lex_state = 256}, - [3515] = {.lex_state = 272}, - [3516] = {.lex_state = 272}, - [3517] = {.lex_state = 280}, + [3513] = {.lex_state = 280}, + [3514] = {.lex_state = 280}, + [3515] = {.lex_state = 280}, + [3516] = {.lex_state = 249}, + [3517] = {.lex_state = 271}, [3518] = {.lex_state = 280}, [3519] = {.lex_state = 280}, - [3520] = {.lex_state = 286}, - [3521] = {.lex_state = 272}, - [3522] = {.lex_state = 272}, - [3523] = {.lex_state = 272}, - [3524] = {.lex_state = 286}, - [3525] = {.lex_state = 272}, - [3526] = {.lex_state = 272}, - [3527] = {.lex_state = 286}, - [3528] = {.lex_state = 272}, - [3529] = {.lex_state = 281}, - [3530] = {.lex_state = 281}, - [3531] = {.lex_state = 252}, - [3532] = {.lex_state = 286}, - [3533] = {.lex_state = 282}, - [3534] = {.lex_state = 281}, - [3535] = {.lex_state = 272}, - [3536] = {.lex_state = 245}, - [3537] = {.lex_state = 250}, - [3538] = {.lex_state = 290}, - [3539] = {.lex_state = 283}, - [3540] = {.lex_state = 267}, - [3541] = {.lex_state = 272}, - [3542] = {.lex_state = 245}, - [3543] = {.lex_state = 272}, - [3544] = {.lex_state = 245}, - [3545] = {.lex_state = 256}, - [3546] = {.lex_state = 272}, - [3547] = {.lex_state = 272}, - [3548] = {.lex_state = 280}, - [3549] = {.lex_state = 243}, - [3550] = {.lex_state = 272}, + [3520] = {.lex_state = 280}, + [3521] = {.lex_state = 280}, + [3522] = {.lex_state = 280}, + [3523] = {.lex_state = 280}, + [3524] = {.lex_state = 280}, + [3525] = {.lex_state = 249}, + [3526] = {.lex_state = 280}, + [3527] = {.lex_state = 290}, + [3528] = {.lex_state = 290}, + [3529] = {.lex_state = 290}, + [3530] = {.lex_state = 290}, + [3531] = {.lex_state = 290}, + [3532] = {.lex_state = 290}, + [3533] = {.lex_state = 290}, + [3534] = {.lex_state = 290}, + [3535] = {.lex_state = 290}, + [3536] = {.lex_state = 280}, + [3537] = {.lex_state = 280}, + [3538] = {.lex_state = 280}, + [3539] = {.lex_state = 290}, + [3540] = {.lex_state = 280}, + [3541] = {.lex_state = 280}, + [3542] = {.lex_state = 266}, + [3543] = {.lex_state = 290}, + [3544] = {.lex_state = 290}, + [3545] = {.lex_state = 290}, + [3546] = {.lex_state = 290}, + [3547] = {.lex_state = 290}, + [3548] = {.lex_state = 271}, + [3549] = {.lex_state = 290}, + [3550] = {.lex_state = 290}, [3551] = {.lex_state = 280}, - [3552] = {.lex_state = 252}, - [3553] = {.lex_state = 321}, - [3554] = {.lex_state = 279}, - [3555] = {.lex_state = 286}, - [3556] = {.lex_state = 286}, - [3557] = {.lex_state = 252}, - [3558] = {.lex_state = 278}, - [3559] = {.lex_state = 325}, - [3560] = {.lex_state = 272}, - [3561] = {.lex_state = 279}, - [3562] = {.lex_state = 243}, - [3563] = {.lex_state = 243}, - [3564] = {.lex_state = 245}, - [3565] = {.lex_state = 272}, - [3566] = {.lex_state = 272}, - [3567] = {.lex_state = 272}, - [3568] = {.lex_state = 272}, - [3569] = {.lex_state = 280}, - [3570] = {.lex_state = 333}, - [3571] = {.lex_state = 333}, - [3572] = {.lex_state = 272}, - [3573] = {.lex_state = 272}, - [3574] = {.lex_state = 272}, - [3575] = {.lex_state = 272}, - [3576] = {.lex_state = 272}, - [3577] = {.lex_state = 250}, - [3578] = {.lex_state = 272}, - [3579] = {.lex_state = 286}, - [3580] = {.lex_state = 272}, - [3581] = {.lex_state = 272}, - [3582] = {.lex_state = 286}, - [3583] = {.lex_state = 286}, - [3584] = {.lex_state = 286}, - [3585] = {.lex_state = 286}, + [3552] = {.lex_state = 280}, + [3553] = {.lex_state = 266}, + [3554] = {.lex_state = 290}, + [3555] = {.lex_state = 290}, + [3556] = {.lex_state = 290}, + [3557] = {.lex_state = 290}, + [3558] = {.lex_state = 290}, + [3559] = {.lex_state = 290}, + [3560] = {.lex_state = 290}, + [3561] = {.lex_state = 290}, + [3562] = {.lex_state = 290}, + [3563] = {.lex_state = 290}, + [3564] = {.lex_state = 280}, + [3565] = {.lex_state = 245}, + [3566] = {.lex_state = 271}, + [3567] = {.lex_state = 243}, + [3568] = {.lex_state = 277}, + [3569] = {.lex_state = 279}, + [3570] = {.lex_state = 290}, + [3571] = {.lex_state = 290}, + [3572] = {.lex_state = 290}, + [3573] = {.lex_state = 290}, + [3574] = {.lex_state = 290}, + [3575] = {.lex_state = 290}, + [3576] = {.lex_state = 245}, + [3577] = {.lex_state = 290}, + [3578] = {.lex_state = 290}, + [3579] = {.lex_state = 280}, + [3580] = {.lex_state = 280}, + [3581] = {.lex_state = 271}, + [3582] = {.lex_state = 280}, + [3583] = {.lex_state = 280}, + [3584] = {.lex_state = 280}, + [3585] = {.lex_state = 280}, [3586] = {.lex_state = 243}, - [3587] = {.lex_state = 286}, - [3588] = {.lex_state = 272}, - [3589] = {.lex_state = 335}, - [3590] = {.lex_state = 272}, - [3591] = {.lex_state = 286}, - [3592] = {.lex_state = 272}, - [3593] = {.lex_state = 286}, - [3594] = {.lex_state = 335}, - [3595] = {.lex_state = 272}, - [3596] = {.lex_state = 286}, - [3597] = {.lex_state = 280}, - [3598] = {.lex_state = 267}, + [3587] = {.lex_state = 280}, + [3588] = {.lex_state = 280}, + [3589] = {.lex_state = 245}, + [3590] = {.lex_state = 280}, + [3591] = {.lex_state = 254}, + [3592] = {.lex_state = 254}, + [3593] = {.lex_state = 290}, + [3594] = {.lex_state = 285}, + [3595] = {.lex_state = 271}, + [3596] = {.lex_state = 268}, + [3597] = {.lex_state = 271}, + [3598] = {.lex_state = 279}, [3599] = {.lex_state = 243}, - [3600] = {.lex_state = 260}, - [3601] = {.lex_state = 336}, - [3602] = {.lex_state = 255}, - [3603] = {.lex_state = 260}, - [3604] = {.lex_state = 269}, - [3605] = {.lex_state = 269}, - [3606] = {.lex_state = 243}, - [3607] = {.lex_state = 256}, - [3608] = {.lex_state = 269}, - [3609] = {.lex_state = 245}, - [3610] = {.lex_state = 258}, - [3611] = {.lex_state = 269}, - [3612] = {.lex_state = 281}, - [3613] = {.lex_state = 281}, - [3614] = {.lex_state = 282}, - [3615] = {.lex_state = 324}, - [3616] = {.lex_state = 272}, - [3617] = {.lex_state = 335}, - [3618] = {.lex_state = 269}, - [3619] = {.lex_state = 278}, - [3620] = {.lex_state = 324}, - [3621] = {.lex_state = 256}, - [3622] = {.lex_state = 316}, - [3623] = {.lex_state = 281}, - [3624] = {.lex_state = 278}, - [3625] = {.lex_state = 258}, - [3626] = {.lex_state = 278}, - [3627] = {.lex_state = 278}, - [3628] = {.lex_state = 316}, - [3629] = {.lex_state = 316}, - [3630] = {.lex_state = 316}, - [3631] = {.lex_state = 316}, - [3632] = {.lex_state = 316}, - [3633] = {.lex_state = 324}, - [3634] = {.lex_state = 278}, - [3635] = {.lex_state = 281}, - [3636] = {.lex_state = 278}, - [3637] = {.lex_state = 260}, - [3638] = {.lex_state = 278}, - [3639] = {.lex_state = 278}, - [3640] = {.lex_state = 278}, - [3641] = {.lex_state = 278}, - [3642] = {.lex_state = 278}, - [3643] = {.lex_state = 278}, - [3644] = {.lex_state = 316}, - [3645] = {.lex_state = 278}, - [3646] = {.lex_state = 335}, - [3647] = {.lex_state = 317}, - [3648] = {.lex_state = 267}, - [3649] = {.lex_state = 335}, - [3650] = {.lex_state = 335}, - [3651] = {.lex_state = 317}, - [3652] = {.lex_state = 258}, - [3653] = {.lex_state = 317}, - [3654] = {.lex_state = 256}, - [3655] = {.lex_state = 256}, - [3656] = {.lex_state = 255}, - [3657] = {.lex_state = 281}, - [3658] = {.lex_state = 278}, - [3659] = {.lex_state = 333}, - [3660] = {.lex_state = 252}, - [3661] = {.lex_state = 269}, - [3662] = {.lex_state = 272}, - [3663] = {.lex_state = 333}, - [3664] = {.lex_state = 281}, - [3665] = {.lex_state = 272}, - [3666] = {.lex_state = 272}, - [3667] = {.lex_state = 272}, - [3668] = {.lex_state = 272}, - [3669] = {.lex_state = 325}, - [3670] = {.lex_state = 321}, - [3671] = {.lex_state = 281}, - [3672] = {.lex_state = 245}, - [3673] = {.lex_state = 269}, - [3674] = {.lex_state = 245}, - [3675] = {.lex_state = 272}, - [3676] = {.lex_state = 333}, - [3677] = {.lex_state = 272}, - [3678] = {.lex_state = 272}, - [3679] = {.lex_state = 321}, - [3680] = {.lex_state = 272}, - [3681] = {.lex_state = 336}, - [3682] = {.lex_state = 335}, - [3683] = {.lex_state = 321}, - [3684] = {.lex_state = 272}, - [3685] = {.lex_state = 272}, - [3686] = {.lex_state = 272}, - [3687] = {.lex_state = 281}, - [3688] = {.lex_state = 279}, - [3689] = {.lex_state = 272}, - [3690] = {.lex_state = 321}, - [3691] = {.lex_state = 281}, - [3692] = {.lex_state = 333}, - [3693] = {.lex_state = 281}, - [3694] = {.lex_state = 281}, - [3695] = {.lex_state = 272}, - [3696] = {.lex_state = 272}, - [3697] = {.lex_state = 325}, - [3698] = {.lex_state = 272}, - [3699] = {.lex_state = 333}, - [3700] = {.lex_state = 333}, - [3701] = {.lex_state = 272}, - [3702] = {.lex_state = 276}, - [3703] = {.lex_state = 316}, - [3704] = {.lex_state = 245}, - [3705] = {.lex_state = 281}, - [3706] = {.lex_state = 269}, - [3707] = {.lex_state = 281}, - [3708] = {.lex_state = 245}, - [3709] = {.lex_state = 334}, - [3710] = {.lex_state = 334}, - [3711] = {.lex_state = 268}, - [3712] = {.lex_state = 335}, - [3713] = {.lex_state = 281}, - [3714] = {.lex_state = 325}, - [3715] = {.lex_state = 317}, - [3716] = {.lex_state = 325}, - [3717] = {.lex_state = 272}, - [3718] = {.lex_state = 279}, - [3719] = {.lex_state = 324}, - [3720] = {.lex_state = 281}, - [3721] = {.lex_state = 245}, - [3722] = {.lex_state = 272}, - [3723] = {.lex_state = 272}, - [3724] = {.lex_state = 260}, - [3725] = {.lex_state = 281}, - [3726] = {.lex_state = 281}, - [3727] = {.lex_state = 272}, - [3728] = {.lex_state = 281}, - [3729] = {.lex_state = 272}, - [3730] = {.lex_state = 281}, - [3731] = {.lex_state = 281}, - [3732] = {.lex_state = 281}, - [3733] = {.lex_state = 252}, - [3734] = {.lex_state = 278}, - [3735] = {.lex_state = 245}, - [3736] = {.lex_state = 325}, - [3737] = {.lex_state = 272}, - [3738] = {.lex_state = 272}, - [3739] = {.lex_state = 281}, - [3740] = {.lex_state = 272}, - [3741] = {.lex_state = 272}, - [3742] = {.lex_state = 272}, - [3743] = {.lex_state = 281}, - [3744] = {.lex_state = 272}, - [3745] = {.lex_state = 272}, - [3746] = {.lex_state = 281}, - [3747] = {.lex_state = 278}, - [3748] = {.lex_state = 272}, - [3749] = {.lex_state = 272}, - [3750] = {.lex_state = 272}, - [3751] = {.lex_state = 245}, - [3752] = {.lex_state = 245}, - [3753] = {.lex_state = 272}, - [3754] = {.lex_state = 272}, - [3755] = {.lex_state = 272}, - [3756] = {.lex_state = 272}, - [3757] = {.lex_state = 272}, - [3758] = {.lex_state = 272}, - [3759] = {.lex_state = 272}, - [3760] = {.lex_state = 272}, - [3761] = {.lex_state = 272}, - [3762] = {.lex_state = 281}, - [3763] = {.lex_state = 272}, - [3764] = {.lex_state = 278}, - [3765] = {.lex_state = 272}, - [3766] = {.lex_state = 272}, - [3767] = {.lex_state = 272}, - [3768] = {.lex_state = 272}, - [3769] = {.lex_state = 252}, - [3770] = {.lex_state = 272}, - [3771] = {.lex_state = 279}, - [3772] = {.lex_state = 321}, - [3773] = {.lex_state = 272}, - [3774] = {.lex_state = 281}, - [3775] = {.lex_state = 272}, - [3776] = {.lex_state = 272}, - [3777] = {.lex_state = 272}, - [3778] = {.lex_state = 281}, - [3779] = {.lex_state = 268}, - [3780] = {.lex_state = 272}, - [3781] = {.lex_state = 272}, - [3782] = {.lex_state = 272}, - [3783] = {.lex_state = 272}, - [3784] = {.lex_state = 272}, - [3785] = {.lex_state = 321}, - [3786] = {.lex_state = 272}, - [3787] = {.lex_state = 281}, - [3788] = {.lex_state = 278}, - [3789] = {.lex_state = 272}, - [3790] = {.lex_state = 272}, - [3791] = {.lex_state = 272}, - [3792] = {.lex_state = 252}, - [3793] = {.lex_state = 281}, - [3794] = {.lex_state = 272}, - [3795] = {.lex_state = 281}, - [3796] = {.lex_state = 272}, - [3797] = {.lex_state = 281}, - [3798] = {.lex_state = 252}, - [3799] = {.lex_state = 272}, - [3800] = {.lex_state = 252}, - [3801] = {.lex_state = 278}, - [3802] = {.lex_state = 258}, - [3803] = {.lex_state = 272}, - [3804] = {.lex_state = 272}, - [3805] = {.lex_state = 252}, - [3806] = {.lex_state = 272}, - [3807] = {.lex_state = 272}, - [3808] = {.lex_state = 272}, - [3809] = {.lex_state = 272}, - [3810] = {.lex_state = 272}, - [3811] = {.lex_state = 272}, - [3812] = {.lex_state = 272}, - [3813] = {.lex_state = 272}, - [3814] = {.lex_state = 272}, - [3815] = {.lex_state = 272}, - [3816] = {.lex_state = 281}, - [3817] = {.lex_state = 272}, - [3818] = {.lex_state = 281}, - [3819] = {.lex_state = 272}, - [3820] = {.lex_state = 272}, - [3821] = {.lex_state = 272}, - [3822] = {.lex_state = 281}, - [3823] = {.lex_state = 272}, - [3824] = {.lex_state = 272}, - [3825] = {.lex_state = 272}, - [3826] = {.lex_state = 278}, - [3827] = {.lex_state = 272}, - [3828] = {.lex_state = 272}, - [3829] = {.lex_state = 272}, - [3830] = {.lex_state = 272}, - [3831] = {.lex_state = 272}, - [3832] = {.lex_state = 281}, - [3833] = {.lex_state = 281}, - [3834] = {.lex_state = 281}, - [3835] = {.lex_state = 281}, - [3836] = {.lex_state = 252}, - [3837] = {.lex_state = 281}, - [3838] = {.lex_state = 272}, - [3839] = {.lex_state = 272}, - [3840] = {.lex_state = 325}, - [3841] = {.lex_state = 272}, - [3842] = {.lex_state = 272}, - [3843] = {.lex_state = 278}, - [3844] = {.lex_state = 272}, - [3845] = {.lex_state = 272}, - [3846] = {.lex_state = 272}, - [3847] = {.lex_state = 272}, - [3848] = {.lex_state = 272}, - [3849] = {.lex_state = 272}, - [3850] = {.lex_state = 258}, - [3851] = {.lex_state = 283}, - [3852] = {.lex_state = 240}, - [3853] = {.lex_state = 324}, - [3854] = {.lex_state = 278}, - [3855] = {.lex_state = 324}, - [3856] = {.lex_state = 324}, - [3857] = {.lex_state = 278}, - [3858] = {.lex_state = 320}, - [3859] = {.lex_state = 268}, - [3860] = {.lex_state = 240}, - [3861] = {.lex_state = 335}, - [3862] = {.lex_state = 278}, - [3863] = {.lex_state = 317}, - [3864] = {.lex_state = 278}, - [3865] = {.lex_state = 324}, - [3866] = {.lex_state = 258}, - [3867] = {.lex_state = 317}, - [3868] = {.lex_state = 258}, - [3869] = {.lex_state = 258}, - [3870] = {.lex_state = 252}, - [3871] = {.lex_state = 271}, - [3872] = {.lex_state = 271}, - [3873] = {.lex_state = 324}, - [3874] = {.lex_state = 317}, - [3875] = {.lex_state = 317}, + [3600] = {.lex_state = 245}, + [3601] = {.lex_state = 271}, + [3602] = {.lex_state = 268}, + [3603] = {.lex_state = 271}, + [3604] = {.lex_state = 266}, + [3605] = {.lex_state = 281}, + [3606] = {.lex_state = 290}, + [3607] = {.lex_state = 285}, + [3608] = {.lex_state = 271}, + [3609] = {.lex_state = 280}, + [3610] = {.lex_state = 285}, + [3611] = {.lex_state = 271}, + [3612] = {.lex_state = 285}, + [3613] = {.lex_state = 285}, + [3614] = {.lex_state = 285}, + [3615] = {.lex_state = 271}, + [3616] = {.lex_state = 271}, + [3617] = {.lex_state = 271}, + [3618] = {.lex_state = 252}, + [3619] = {.lex_state = 243}, + [3620] = {.lex_state = 271}, + [3621] = {.lex_state = 285}, + [3622] = {.lex_state = 285}, + [3623] = {.lex_state = 278}, + [3624] = {.lex_state = 285}, + [3625] = {.lex_state = 271}, + [3626] = {.lex_state = 271}, + [3627] = {.lex_state = 271}, + [3628] = {.lex_state = 271}, + [3629] = {.lex_state = 252}, + [3630] = {.lex_state = 271}, + [3631] = {.lex_state = 279}, + [3632] = {.lex_state = 252}, + [3633] = {.lex_state = 285}, + [3634] = {.lex_state = 279}, + [3635] = {.lex_state = 285}, + [3636] = {.lex_state = 271}, + [3637] = {.lex_state = 271}, + [3638] = {.lex_state = 271}, + [3639] = {.lex_state = 243}, + [3640] = {.lex_state = 271}, + [3641] = {.lex_state = 271}, + [3642] = {.lex_state = 243}, + [3643] = {.lex_state = 250}, + [3644] = {.lex_state = 282}, + [3645] = {.lex_state = 271}, + [3646] = {.lex_state = 279}, + [3647] = {.lex_state = 271}, + [3648] = {.lex_state = 271}, + [3649] = {.lex_state = 279}, + [3650] = {.lex_state = 271}, + [3651] = {.lex_state = 271}, + [3652] = {.lex_state = 271}, + [3653] = {.lex_state = 271}, + [3654] = {.lex_state = 285}, + [3655] = {.lex_state = 271}, + [3656] = {.lex_state = 279}, + [3657] = {.lex_state = 271}, + [3658] = {.lex_state = 279}, + [3659] = {.lex_state = 325}, + [3660] = {.lex_state = 285}, + [3661] = {.lex_state = 243}, + [3662] = {.lex_state = 271}, + [3663] = {.lex_state = 285}, + [3664] = {.lex_state = 271}, + [3665] = {.lex_state = 280}, + [3666] = {.lex_state = 280}, + [3667] = {.lex_state = 245}, + [3668] = {.lex_state = 335}, + [3669] = {.lex_state = 271}, + [3670] = {.lex_state = 271}, + [3671] = {.lex_state = 271}, + [3672] = {.lex_state = 271}, + [3673] = {.lex_state = 271}, + [3674] = {.lex_state = 271}, + [3675] = {.lex_state = 271}, + [3676] = {.lex_state = 285}, + [3677] = {.lex_state = 245}, + [3678] = {.lex_state = 271}, + [3679] = {.lex_state = 271}, + [3680] = {.lex_state = 271}, + [3681] = {.lex_state = 266}, + [3682] = {.lex_state = 277}, + [3683] = {.lex_state = 335}, + [3684] = {.lex_state = 278}, + [3685] = {.lex_state = 334}, + [3686] = {.lex_state = 334}, + [3687] = {.lex_state = 271}, + [3688] = {.lex_state = 271}, + [3689] = {.lex_state = 285}, + [3690] = {.lex_state = 256}, + [3691] = {.lex_state = 321}, + [3692] = {.lex_state = 279}, + [3693] = {.lex_state = 256}, + [3694] = {.lex_state = 266}, + [3695] = {.lex_state = 243}, + [3696] = {.lex_state = 266}, + [3697] = {.lex_state = 245}, + [3698] = {.lex_state = 266}, + [3699] = {.lex_state = 285}, + [3700] = {.lex_state = 271}, + [3701] = {.lex_state = 250}, + [3702] = {.lex_state = 271}, + [3703] = {.lex_state = 271}, + [3704] = {.lex_state = 319}, + [3705] = {.lex_state = 268}, + [3706] = {.lex_state = 260}, + [3707] = {.lex_state = 258}, + [3708] = {.lex_state = 324}, + [3709] = {.lex_state = 268}, + [3710] = {.lex_state = 266}, + [3711] = {.lex_state = 277}, + [3712] = {.lex_state = 280}, + [3713] = {.lex_state = 255}, + [3714] = {.lex_state = 319}, + [3715] = {.lex_state = 319}, + [3716] = {.lex_state = 319}, + [3717] = {.lex_state = 319}, + [3718] = {.lex_state = 319}, + [3719] = {.lex_state = 277}, + [3720] = {.lex_state = 277}, + [3721] = {.lex_state = 277}, + [3722] = {.lex_state = 277}, + [3723] = {.lex_state = 277}, + [3724] = {.lex_state = 277}, + [3725] = {.lex_state = 277}, + [3726] = {.lex_state = 255}, + [3727] = {.lex_state = 258}, + [3728] = {.lex_state = 277}, + [3729] = {.lex_state = 277}, + [3730] = {.lex_state = 260}, + [3731] = {.lex_state = 316}, + [3732] = {.lex_state = 271}, + [3733] = {.lex_state = 277}, + [3734] = {.lex_state = 256}, + [3735] = {.lex_state = 336}, + [3736] = {.lex_state = 324}, + [3737] = {.lex_state = 316}, + [3738] = {.lex_state = 256}, + [3739] = {.lex_state = 335}, + [3740] = {.lex_state = 268}, + [3741] = {.lex_state = 245}, + [3742] = {.lex_state = 319}, + [3743] = {.lex_state = 335}, + [3744] = {.lex_state = 268}, + [3745] = {.lex_state = 256}, + [3746] = {.lex_state = 316}, + [3747] = {.lex_state = 280}, + [3748] = {.lex_state = 335}, + [3749] = {.lex_state = 243}, + [3750] = {.lex_state = 277}, + [3751] = {.lex_state = 260}, + [3752] = {.lex_state = 335}, + [3753] = {.lex_state = 281}, + [3754] = {.lex_state = 324}, + [3755] = {.lex_state = 280}, + [3756] = {.lex_state = 280}, + [3757] = {.lex_state = 268}, + [3758] = {.lex_state = 256}, + [3759] = {.lex_state = 277}, + [3760] = {.lex_state = 258}, + [3761] = {.lex_state = 243}, + [3762] = {.lex_state = 325}, + [3763] = {.lex_state = 267}, + [3764] = {.lex_state = 321}, + [3765] = {.lex_state = 333}, + [3766] = {.lex_state = 325}, + [3767] = {.lex_state = 280}, + [3768] = {.lex_state = 271}, + [3769] = {.lex_state = 271}, + [3770] = {.lex_state = 321}, + [3771] = {.lex_state = 336}, + [3772] = {.lex_state = 271}, + [3773] = {.lex_state = 321}, + [3774] = {.lex_state = 280}, + [3775] = {.lex_state = 280}, + [3776] = {.lex_state = 280}, + [3777] = {.lex_state = 280}, + [3778] = {.lex_state = 280}, + [3779] = {.lex_state = 271}, + [3780] = {.lex_state = 271}, + [3781] = {.lex_state = 268}, + [3782] = {.lex_state = 271}, + [3783] = {.lex_state = 252}, + [3784] = {.lex_state = 324}, + [3785] = {.lex_state = 271}, + [3786] = {.lex_state = 316}, + [3787] = {.lex_state = 334}, + [3788] = {.lex_state = 334}, + [3789] = {.lex_state = 334}, + [3790] = {.lex_state = 335}, + [3791] = {.lex_state = 271}, + [3792] = {.lex_state = 271}, + [3793] = {.lex_state = 280}, + [3794] = {.lex_state = 271}, + [3795] = {.lex_state = 271}, + [3796] = {.lex_state = 280}, + [3797] = {.lex_state = 319}, + [3798] = {.lex_state = 271}, + [3799] = {.lex_state = 325}, + [3800] = {.lex_state = 278}, + [3801] = {.lex_state = 280}, + [3802] = {.lex_state = 325}, + [3803] = {.lex_state = 278}, + [3804] = {.lex_state = 268}, + [3805] = {.lex_state = 271}, + [3806] = {.lex_state = 245}, + [3807] = {.lex_state = 245}, + [3808] = {.lex_state = 335}, + [3809] = {.lex_state = 275}, + [3810] = {.lex_state = 334}, + [3811] = {.lex_state = 245}, + [3812] = {.lex_state = 245}, + [3813] = {.lex_state = 271}, + [3814] = {.lex_state = 271}, + [3815] = {.lex_state = 271}, + [3816] = {.lex_state = 271}, + [3817] = {.lex_state = 268}, + [3818] = {.lex_state = 280}, + [3819] = {.lex_state = 277}, + [3820] = {.lex_state = 271}, + [3821] = {.lex_state = 280}, + [3822] = {.lex_state = 334}, + [3823] = {.lex_state = 321}, + [3824] = {.lex_state = 333}, + [3825] = {.lex_state = 334}, + [3826] = {.lex_state = 271}, + [3827] = {.lex_state = 271}, + [3828] = {.lex_state = 271}, + [3829] = {.lex_state = 280}, + [3830] = {.lex_state = 280}, + [3831] = {.lex_state = 267}, + [3832] = {.lex_state = 280}, + [3833] = {.lex_state = 271}, + [3834] = {.lex_state = 271}, + [3835] = {.lex_state = 280}, + [3836] = {.lex_state = 280}, + [3837] = {.lex_state = 271}, + [3838] = {.lex_state = 252}, + [3839] = {.lex_state = 280}, + [3840] = {.lex_state = 271}, + [3841] = {.lex_state = 271}, + [3842] = {.lex_state = 280}, + [3843] = {.lex_state = 258}, + [3844] = {.lex_state = 271}, + [3845] = {.lex_state = 271}, + [3846] = {.lex_state = 277}, + [3847] = {.lex_state = 271}, + [3848] = {.lex_state = 271}, + [3849] = {.lex_state = 271}, + [3850] = {.lex_state = 271}, + [3851] = {.lex_state = 271}, + [3852] = {.lex_state = 271}, + [3853] = {.lex_state = 271}, + [3854] = {.lex_state = 271}, + [3855] = {.lex_state = 280}, + [3856] = {.lex_state = 271}, + [3857] = {.lex_state = 271}, + [3858] = {.lex_state = 252}, + [3859] = {.lex_state = 271}, + [3860] = {.lex_state = 277}, + [3861] = {.lex_state = 277}, + [3862] = {.lex_state = 280}, + [3863] = {.lex_state = 280}, + [3864] = {.lex_state = 271}, + [3865] = {.lex_state = 280}, + [3866] = {.lex_state = 271}, + [3867] = {.lex_state = 245}, + [3868] = {.lex_state = 245}, + [3869] = {.lex_state = 271}, + [3870] = {.lex_state = 278}, + [3871] = {.lex_state = 245}, + [3872] = {.lex_state = 245}, + [3873] = {.lex_state = 280}, + [3874] = {.lex_state = 271}, + [3875] = {.lex_state = 271}, [3876] = {.lex_state = 271}, - [3877] = {.lex_state = 271}, + [3877] = {.lex_state = 325}, [3878] = {.lex_state = 271}, - [3879] = {.lex_state = 271}, - [3880] = {.lex_state = 260}, - [3881] = {.lex_state = 260}, - [3882] = {.lex_state = 260}, - [3883] = {.lex_state = 260}, - [3884] = {.lex_state = 324}, - [3885] = {.lex_state = 324}, - [3886] = {.lex_state = 280}, - [3887] = {.lex_state = 278}, - [3888] = {.lex_state = 317}, - [3889] = {.lex_state = 324}, - [3890] = {.lex_state = 252}, - [3891] = {.lex_state = 316}, - [3892] = {.lex_state = 316}, - [3893] = {.lex_state = 240}, - [3894] = {.lex_state = 280}, - [3895] = {.lex_state = 317}, - [3896] = {.lex_state = 316}, - [3897] = {.lex_state = 316}, - [3898] = {.lex_state = 252}, - [3899] = {.lex_state = 290}, + [3879] = {.lex_state = 252}, + [3880] = {.lex_state = 271}, + [3881] = {.lex_state = 271}, + [3882] = {.lex_state = 271}, + [3883] = {.lex_state = 271}, + [3884] = {.lex_state = 280}, + [3885] = {.lex_state = 277}, + [3886] = {.lex_state = 325}, + [3887] = {.lex_state = 271}, + [3888] = {.lex_state = 271}, + [3889] = {.lex_state = 271}, + [3890] = {.lex_state = 271}, + [3891] = {.lex_state = 271}, + [3892] = {.lex_state = 271}, + [3893] = {.lex_state = 260}, + [3894] = {.lex_state = 271}, + [3895] = {.lex_state = 271}, + [3896] = {.lex_state = 271}, + [3897] = {.lex_state = 252}, + [3898] = {.lex_state = 271}, + [3899] = {.lex_state = 271}, [3900] = {.lex_state = 271}, - [3901] = {.lex_state = 317}, - [3902] = {.lex_state = 335}, - [3903] = {.lex_state = 316}, - [3904] = {.lex_state = 335}, - [3905] = {.lex_state = 317}, - [3906] = {.lex_state = 252}, - [3907] = {.lex_state = 281}, - [3908] = {.lex_state = 289}, - [3909] = {.lex_state = 316}, - [3910] = {.lex_state = 316}, - [3911] = {.lex_state = 335}, - [3912] = {.lex_state = 316}, - [3913] = {.lex_state = 316}, - [3914] = {.lex_state = 316}, - [3915] = {.lex_state = 335}, - [3916] = {.lex_state = 316}, - [3917] = {.lex_state = 316}, - [3918] = {.lex_state = 278}, - [3919] = {.lex_state = 278}, - [3920] = {.lex_state = 335}, - [3921] = {.lex_state = 316}, - [3922] = {.lex_state = 316}, - [3923] = {.lex_state = 316}, - [3924] = {.lex_state = 316}, - [3925] = {.lex_state = 316}, - [3926] = {.lex_state = 316}, - [3927] = {.lex_state = 272}, - [3928] = {.lex_state = 272}, - [3929] = {.lex_state = 278}, - [3930] = {.lex_state = 278}, - [3931] = {.lex_state = 316}, - [3932] = {.lex_state = 240}, - [3933] = {.lex_state = 316}, - [3934] = {.lex_state = 316}, - [3935] = {.lex_state = 278}, - [3936] = {.lex_state = 335}, - [3937] = {.lex_state = 272}, - [3938] = {.lex_state = 260}, - [3939] = {.lex_state = 280}, - [3940] = {.lex_state = 260}, - [3941] = {.lex_state = 278}, - [3942] = {.lex_state = 278}, - [3943] = {.lex_state = 278}, - [3944] = {.lex_state = 260}, - [3945] = {.lex_state = 260}, - [3946] = {.lex_state = 278}, - [3947] = {.lex_state = 278}, - [3948] = {.lex_state = 278}, - [3949] = {.lex_state = 278}, - [3950] = {.lex_state = 278}, - [3951] = {.lex_state = 278}, - [3952] = {.lex_state = 278}, - [3953] = {.lex_state = 278}, - [3954] = {.lex_state = 339}, - [3955] = {.lex_state = 280}, - [3956] = {.lex_state = 278}, - [3957] = {.lex_state = 280}, - [3958] = {.lex_state = 278}, - [3959] = {.lex_state = 317}, - [3960] = {.lex_state = 278}, - [3961] = {.lex_state = 317}, - [3962] = {.lex_state = 324}, - [3963] = {.lex_state = 278}, - [3964] = {.lex_state = 324}, - [3965] = {.lex_state = 316}, - [3966] = {.lex_state = 297}, - [3967] = {.lex_state = 278}, - [3968] = {.lex_state = 316}, - [3969] = {.lex_state = 280}, - [3970] = {.lex_state = 271}, - [3971] = {.lex_state = 280}, - [3972] = {.lex_state = 280}, - [3973] = {.lex_state = 278}, - [3974] = {.lex_state = 278}, - [3975] = {.lex_state = 334}, - [3976] = {.lex_state = 278}, - [3977] = {.lex_state = 247}, - [3978] = {.lex_state = 258}, - [3979] = {.lex_state = 258}, - [3980] = {.lex_state = 280}, - [3981] = {.lex_state = 316}, - [3982] = {.lex_state = 316}, - [3983] = {.lex_state = 301}, - [3984] = {.lex_state = 270}, - [3985] = {.lex_state = 280}, - [3986] = {.lex_state = 280}, - [3987] = {.lex_state = 280}, - [3988] = {.lex_state = 321}, - [3989] = {.lex_state = 316}, - [3990] = {.lex_state = 333}, - [3991] = {.lex_state = 333}, - [3992] = {.lex_state = 278}, - [3993] = {.lex_state = 280}, - [3994] = {.lex_state = 317}, - [3995] = {.lex_state = 278}, - [3996] = {.lex_state = 317}, - [3997] = {.lex_state = 258}, - [3998] = {.lex_state = 272}, - [3999] = {.lex_state = 335}, - [4000] = {.lex_state = 278}, - [4001] = {.lex_state = 288}, - [4002] = {.lex_state = 289}, - [4003] = {.lex_state = 289}, - [4004] = {.lex_state = 247}, - [4005] = {.lex_state = 279}, - [4006] = {.lex_state = 278}, - [4007] = {.lex_state = 258}, - [4008] = {.lex_state = 240}, - [4009] = {.lex_state = 324}, - [4010] = {.lex_state = 278}, - [4011] = {.lex_state = 324}, - [4012] = {.lex_state = 278}, - [4013] = {.lex_state = 325}, - [4014] = {.lex_state = 278}, - [4015] = {.lex_state = 247}, - [4016] = {.lex_state = 280}, - [4017] = {.lex_state = 280}, - [4018] = {.lex_state = 280}, - [4019] = {.lex_state = 298}, - [4020] = {.lex_state = 283}, - [4021] = {.lex_state = 283}, - [4022] = {.lex_state = 280}, - [4023] = {.lex_state = 278}, - [4024] = {.lex_state = 278}, - [4025] = {.lex_state = 278}, - [4026] = {.lex_state = 316}, - [4027] = {.lex_state = 316}, - [4028] = {.lex_state = 316}, - [4029] = {.lex_state = 316}, - [4030] = {.lex_state = 278}, - [4031] = {.lex_state = 320}, - [4032] = {.lex_state = 320}, - [4033] = {.lex_state = 316}, + [3901] = {.lex_state = 280}, + [3902] = {.lex_state = 277}, + [3903] = {.lex_state = 271}, + [3904] = {.lex_state = 271}, + [3905] = {.lex_state = 280}, + [3906] = {.lex_state = 271}, + [3907] = {.lex_state = 271}, + [3908] = {.lex_state = 271}, + [3909] = {.lex_state = 271}, + [3910] = {.lex_state = 271}, + [3911] = {.lex_state = 271}, + [3912] = {.lex_state = 271}, + [3913] = {.lex_state = 271}, + [3914] = {.lex_state = 271}, + [3915] = {.lex_state = 271}, + [3916] = {.lex_state = 280}, + [3917] = {.lex_state = 280}, + [3918] = {.lex_state = 271}, + [3919] = {.lex_state = 271}, + [3920] = {.lex_state = 271}, + [3921] = {.lex_state = 271}, + [3922] = {.lex_state = 271}, + [3923] = {.lex_state = 271}, + [3924] = {.lex_state = 271}, + [3925] = {.lex_state = 271}, + [3926] = {.lex_state = 271}, + [3927] = {.lex_state = 280}, + [3928] = {.lex_state = 271}, + [3929] = {.lex_state = 271}, + [3930] = {.lex_state = 271}, + [3931] = {.lex_state = 271}, + [3932] = {.lex_state = 271}, + [3933] = {.lex_state = 271}, + [3934] = {.lex_state = 280}, + [3935] = {.lex_state = 280}, + [3936] = {.lex_state = 280}, + [3937] = {.lex_state = 271}, + [3938] = {.lex_state = 271}, + [3939] = {.lex_state = 271}, + [3940] = {.lex_state = 252}, + [3941] = {.lex_state = 271}, + [3942] = {.lex_state = 280}, + [3943] = {.lex_state = 271}, + [3944] = {.lex_state = 271}, + [3945] = {.lex_state = 321}, + [3946] = {.lex_state = 280}, + [3947] = {.lex_state = 321}, + [3948] = {.lex_state = 277}, + [3949] = {.lex_state = 252}, + [3950] = {.lex_state = 271}, + [3951] = {.lex_state = 271}, + [3952] = {.lex_state = 252}, + [3953] = {.lex_state = 277}, + [3954] = {.lex_state = 280}, + [3955] = {.lex_state = 324}, + [3956] = {.lex_state = 319}, + [3957] = {.lex_state = 270}, + [3958] = {.lex_state = 258}, + [3959] = {.lex_state = 277}, + [3960] = {.lex_state = 240}, + [3961] = {.lex_state = 240}, + [3962] = {.lex_state = 319}, + [3963] = {.lex_state = 240}, + [3964] = {.lex_state = 258}, + [3965] = {.lex_state = 277}, + [3966] = {.lex_state = 320}, + [3967] = {.lex_state = 277}, + [3968] = {.lex_state = 267}, + [3969] = {.lex_state = 277}, + [3970] = {.lex_state = 319}, + [3971] = {.lex_state = 319}, + [3972] = {.lex_state = 270}, + [3973] = {.lex_state = 319}, + [3974] = {.lex_state = 280}, + [3975] = {.lex_state = 270}, + [3976] = {.lex_state = 316}, + [3977] = {.lex_state = 324}, + [3978] = {.lex_state = 316}, + [3979] = {.lex_state = 335}, + [3980] = {.lex_state = 279}, + [3981] = {.lex_state = 319}, + [3982] = {.lex_state = 252}, + [3983] = {.lex_state = 240}, + [3984] = {.lex_state = 335}, + [3985] = {.lex_state = 319}, + [3986] = {.lex_state = 319}, + [3987] = {.lex_state = 277}, + [3988] = {.lex_state = 324}, + [3989] = {.lex_state = 324}, + [3990] = {.lex_state = 252}, + [3991] = {.lex_state = 316}, + [3992] = {.lex_state = 289}, + [3993] = {.lex_state = 252}, + [3994] = {.lex_state = 316}, + [3995] = {.lex_state = 316}, + [3996] = {.lex_state = 270}, + [3997] = {.lex_state = 271}, + [3998] = {.lex_state = 271}, + [3999] = {.lex_state = 319}, + [4000] = {.lex_state = 277}, + [4001] = {.lex_state = 252}, + [4002] = {.lex_state = 290}, + [4003] = {.lex_state = 258}, + [4004] = {.lex_state = 258}, + [4005] = {.lex_state = 324}, + [4006] = {.lex_state = 335}, + [4007] = {.lex_state = 260}, + [4008] = {.lex_state = 319}, + [4009] = {.lex_state = 316}, + [4010] = {.lex_state = 319}, + [4011] = {.lex_state = 260}, + [4012] = {.lex_state = 319}, + [4013] = {.lex_state = 316}, + [4014] = {.lex_state = 324}, + [4015] = {.lex_state = 319}, + [4016] = {.lex_state = 270}, + [4017] = {.lex_state = 335}, + [4018] = {.lex_state = 270}, + [4019] = {.lex_state = 319}, + [4020] = {.lex_state = 260}, + [4021] = {.lex_state = 319}, + [4022] = {.lex_state = 277}, + [4023] = {.lex_state = 277}, + [4024] = {.lex_state = 335}, + [4025] = {.lex_state = 260}, + [4026] = {.lex_state = 324}, + [4027] = {.lex_state = 270}, + [4028] = {.lex_state = 277}, + [4029] = {.lex_state = 335}, + [4030] = {.lex_state = 319}, + [4031] = {.lex_state = 335}, + [4032] = {.lex_state = 282}, + [4033] = {.lex_state = 277}, [4034] = {.lex_state = 316}, - [4035] = {.lex_state = 334}, - [4036] = {.lex_state = 316}, - [4037] = {.lex_state = 252}, - [4038] = {.lex_state = 278}, - [4039] = {.lex_state = 280}, - [4040] = {.lex_state = 278}, - [4041] = {.lex_state = 278}, - [4042] = {.lex_state = 278}, - [4043] = {.lex_state = 278}, - [4044] = {.lex_state = 272}, - [4045] = {.lex_state = 240}, - [4046] = {.lex_state = 252}, - [4047] = {.lex_state = 252}, - [4048] = {.lex_state = 316}, - [4049] = {.lex_state = 252}, - [4050] = {.lex_state = 278}, - [4051] = {.lex_state = 278}, - [4052] = {.lex_state = 240}, - [4053] = {.lex_state = 240}, - [4054] = {.lex_state = 240}, - [4055] = {.lex_state = 240}, - [4056] = {.lex_state = 240}, - [4057] = {.lex_state = 240}, - [4058] = {.lex_state = 240}, - [4059] = {.lex_state = 240}, - [4060] = {.lex_state = 268}, - [4061] = {.lex_state = 335}, - [4062] = {.lex_state = 335}, - [4063] = {.lex_state = 240}, - [4064] = {.lex_state = 289}, - [4065] = {.lex_state = 289}, - [4066] = {.lex_state = 240}, - [4067] = {.lex_state = 316}, - [4068] = {.lex_state = 333}, - [4069] = {.lex_state = 289}, - [4070] = {.lex_state = 333}, - [4071] = {.lex_state = 240}, - [4072] = {.lex_state = 278}, - [4073] = {.lex_state = 333}, - [4074] = {.lex_state = 333}, - [4075] = {.lex_state = 335}, - [4076] = {.lex_state = 335}, - [4077] = {.lex_state = 333}, - [4078] = {.lex_state = 271}, - [4079] = {.lex_state = 271}, - [4080] = {.lex_state = 281}, - [4081] = {.lex_state = 240}, - [4082] = {.lex_state = 240}, - [4083] = {.lex_state = 272}, - [4084] = {.lex_state = 272}, - [4085] = {.lex_state = 272}, - [4086] = {.lex_state = 272}, - [4087] = {.lex_state = 272}, - [4088] = {.lex_state = 335}, - [4089] = {.lex_state = 272}, - [4090] = {.lex_state = 272}, - [4091] = {.lex_state = 335}, - [4092] = {.lex_state = 272}, - [4093] = {.lex_state = 335}, - [4094] = {.lex_state = 335}, - [4095] = {.lex_state = 335}, - [4096] = {.lex_state = 335}, - [4097] = {.lex_state = 240}, - [4098] = {.lex_state = 333}, - [4099] = {.lex_state = 333}, - [4100] = {.lex_state = 240}, - [4101] = {.lex_state = 333}, - [4102] = {.lex_state = 272}, - [4103] = {.lex_state = 333}, - [4104] = {.lex_state = 333}, - [4105] = {.lex_state = 333}, - [4106] = {.lex_state = 240}, - [4107] = {.lex_state = 240}, - [4108] = {.lex_state = 333}, - [4109] = {.lex_state = 335}, - [4110] = {.lex_state = 333}, - [4111] = {.lex_state = 333}, - [4112] = {.lex_state = 333}, - [4113] = {.lex_state = 333}, - [4114] = {.lex_state = 333}, - [4115] = {.lex_state = 333}, - [4116] = {.lex_state = 335}, - [4117] = {.lex_state = 333}, - [4118] = {.lex_state = 333}, - [4119] = {.lex_state = 333}, - [4120] = {.lex_state = 333}, - [4121] = {.lex_state = 335}, - [4122] = {.lex_state = 289}, - [4123] = {.lex_state = 333}, - [4124] = {.lex_state = 316}, - [4125] = {.lex_state = 299}, - [4126] = {.lex_state = 328}, - [4127] = {.lex_state = 333}, - [4128] = {.lex_state = 333}, - [4129] = {.lex_state = 328}, - [4130] = {.lex_state = 289}, - [4131] = {.lex_state = 300}, - [4132] = {.lex_state = 289}, - [4133] = {.lex_state = 272}, - [4134] = {.lex_state = 272}, - [4135] = {.lex_state = 272}, - [4136] = {.lex_state = 272}, - [4137] = {.lex_state = 240}, - [4138] = {.lex_state = 272}, - [4139] = {.lex_state = 240}, - [4140] = {.lex_state = 272}, - [4141] = {.lex_state = 272}, - [4142] = {.lex_state = 272}, - [4143] = {.lex_state = 272}, - [4144] = {.lex_state = 272}, - [4145] = {.lex_state = 272}, - [4146] = {.lex_state = 272}, - [4147] = {.lex_state = 272}, - [4148] = {.lex_state = 272}, - [4149] = {.lex_state = 272}, - [4150] = {.lex_state = 328}, - [4151] = {.lex_state = 320}, - [4152] = {.lex_state = 333}, - [4153] = {.lex_state = 333}, - [4154] = {.lex_state = 328}, - [4155] = {.lex_state = 333}, - [4156] = {.lex_state = 333}, - [4157] = {.lex_state = 333}, - [4158] = {.lex_state = 333}, - [4159] = {.lex_state = 333}, - [4160] = {.lex_state = 298}, + [4035] = {.lex_state = 319}, + [4036] = {.lex_state = 319}, + [4037] = {.lex_state = 319}, + [4038] = {.lex_state = 319}, + [4039] = {.lex_state = 319}, + [4040] = {.lex_state = 279}, + [4041] = {.lex_state = 324}, + [4042] = {.lex_state = 279}, + [4043] = {.lex_state = 319}, + [4044] = {.lex_state = 316}, + [4045] = {.lex_state = 297}, + [4046] = {.lex_state = 279}, + [4047] = {.lex_state = 279}, + [4048] = {.lex_state = 277}, + [4049] = {.lex_state = 279}, + [4050] = {.lex_state = 247}, + [4051] = {.lex_state = 282}, + [4052] = {.lex_state = 282}, + [4053] = {.lex_state = 271}, + [4054] = {.lex_state = 319}, + [4055] = {.lex_state = 277}, + [4056] = {.lex_state = 277}, + [4057] = {.lex_state = 277}, + [4058] = {.lex_state = 335}, + [4059] = {.lex_state = 277}, + [4060] = {.lex_state = 277}, + [4061] = {.lex_state = 289}, + [4062] = {.lex_state = 260}, + [4063] = {.lex_state = 270}, + [4064] = {.lex_state = 277}, + [4065] = {.lex_state = 333}, + [4066] = {.lex_state = 277}, + [4067] = {.lex_state = 324}, + [4068] = {.lex_state = 277}, + [4069] = {.lex_state = 279}, + [4070] = {.lex_state = 319}, + [4071] = {.lex_state = 258}, + [4072] = {.lex_state = 240}, + [4073] = {.lex_state = 277}, + [4074] = {.lex_state = 324}, + [4075] = {.lex_state = 320}, + [4076] = {.lex_state = 320}, + [4077] = {.lex_state = 277}, + [4078] = {.lex_state = 277}, + [4079] = {.lex_state = 258}, + [4080] = {.lex_state = 319}, + [4081] = {.lex_state = 260}, + [4082] = {.lex_state = 277}, + [4083] = {.lex_state = 324}, + [4084] = {.lex_state = 277}, + [4085] = {.lex_state = 316}, + [4086] = {.lex_state = 279}, + [4087] = {.lex_state = 279}, + [4088] = {.lex_state = 278}, + [4089] = {.lex_state = 277}, + [4090] = {.lex_state = 301}, + [4091] = {.lex_state = 279}, + [4092] = {.lex_state = 319}, + [4093] = {.lex_state = 277}, + [4094] = {.lex_state = 324}, + [4095] = {.lex_state = 277}, + [4096] = {.lex_state = 333}, + [4097] = {.lex_state = 325}, + [4098] = {.lex_state = 277}, + [4099] = {.lex_state = 279}, + [4100] = {.lex_state = 319}, + [4101] = {.lex_state = 319}, + [4102] = {.lex_state = 279}, + [4103] = {.lex_state = 279}, + [4104] = {.lex_state = 258}, + [4105] = {.lex_state = 247}, + [4106] = {.lex_state = 277}, + [4107] = {.lex_state = 277}, + [4108] = {.lex_state = 277}, + [4109] = {.lex_state = 339}, + [4110] = {.lex_state = 269}, + [4111] = {.lex_state = 277}, + [4112] = {.lex_state = 279}, + [4113] = {.lex_state = 319}, + [4114] = {.lex_state = 319}, + [4115] = {.lex_state = 277}, + [4116] = {.lex_state = 277}, + [4117] = {.lex_state = 319}, + [4118] = {.lex_state = 321}, + [4119] = {.lex_state = 277}, + [4120] = {.lex_state = 288}, + [4121] = {.lex_state = 277}, + [4122] = {.lex_state = 277}, + [4123] = {.lex_state = 319}, + [4124] = {.lex_state = 289}, + [4125] = {.lex_state = 277}, + [4126] = {.lex_state = 334}, + [4127] = {.lex_state = 319}, + [4128] = {.lex_state = 277}, + [4129] = {.lex_state = 334}, + [4130] = {.lex_state = 277}, + [4131] = {.lex_state = 277}, + [4132] = {.lex_state = 277}, + [4133] = {.lex_state = 252}, + [4134] = {.lex_state = 298}, + [4135] = {.lex_state = 279}, + [4136] = {.lex_state = 271}, + [4137] = {.lex_state = 258}, + [4138] = {.lex_state = 316}, + [4139] = {.lex_state = 279}, + [4140] = {.lex_state = 247}, + [4141] = {.lex_state = 277}, + [4142] = {.lex_state = 260}, + [4143] = {.lex_state = 279}, + [4144] = {.lex_state = 316}, + [4145] = {.lex_state = 260}, + [4146] = {.lex_state = 279}, + [4147] = {.lex_state = 277}, + [4148] = {.lex_state = 277}, + [4149] = {.lex_state = 271}, + [4150] = {.lex_state = 240}, + [4151] = {.lex_state = 334}, + [4152] = {.lex_state = 334}, + [4153] = {.lex_state = 334}, + [4154] = {.lex_state = 277}, + [4155] = {.lex_state = 280}, + [4156] = {.lex_state = 240}, + [4157] = {.lex_state = 271}, + [4158] = {.lex_state = 289}, + [4159] = {.lex_state = 271}, + [4160] = {.lex_state = 271}, [4161] = {.lex_state = 298}, - [4162] = {.lex_state = 240}, - [4163] = {.lex_state = 278}, - [4164] = {.lex_state = 240}, - [4165] = {.lex_state = 335}, - [4166] = {.lex_state = 268}, - [4167] = {.lex_state = 252}, - [4168] = {.lex_state = 335}, - [4169] = {.lex_state = 290}, - [4170] = {.lex_state = 316}, - [4171] = {.lex_state = 271}, - [4172] = {.lex_state = 281}, - [4173] = {.lex_state = 271}, - [4174] = {.lex_state = 271}, + [4162] = {.lex_state = 271}, + [4163] = {.lex_state = 271}, + [4164] = {.lex_state = 252}, + [4165] = {.lex_state = 271}, + [4166] = {.lex_state = 271}, + [4167] = {.lex_state = 289}, + [4168] = {.lex_state = 252}, + [4169] = {.lex_state = 240}, + [4170] = {.lex_state = 334}, + [4171] = {.lex_state = 289}, + [4172] = {.lex_state = 334}, + [4173] = {.lex_state = 240}, + [4174] = {.lex_state = 252}, [4175] = {.lex_state = 252}, - [4176] = {.lex_state = 335}, - [4177] = {.lex_state = 316}, - [4178] = {.lex_state = 289}, - [4179] = {.lex_state = 335}, - [4180] = {.lex_state = 316}, - [4181] = {.lex_state = 316}, - [4182] = {.lex_state = 252}, - [4183] = {.lex_state = 278}, - [4184] = {.lex_state = 278}, - [4185] = {.lex_state = 290}, - [4186] = {.lex_state = 298}, - [4187] = {.lex_state = 290}, - [4188] = {.lex_state = 252}, - [4189] = {.lex_state = 316}, - [4190] = {.lex_state = 290}, - [4191] = {.lex_state = 278}, - [4192] = {.lex_state = 316}, - [4193] = {.lex_state = 340}, - [4194] = {.lex_state = 290}, - [4195] = {.lex_state = 271}, - [4196] = {.lex_state = 271}, - [4197] = {.lex_state = 316}, - [4198] = {.lex_state = 290}, - [4199] = {.lex_state = 271}, + [4176] = {.lex_state = 334}, + [4177] = {.lex_state = 240}, + [4178] = {.lex_state = 270}, + [4179] = {.lex_state = 270}, + [4180] = {.lex_state = 271}, + [4181] = {.lex_state = 334}, + [4182] = {.lex_state = 334}, + [4183] = {.lex_state = 277}, + [4184] = {.lex_state = 334}, + [4185] = {.lex_state = 334}, + [4186] = {.lex_state = 335}, + [4187] = {.lex_state = 277}, + [4188] = {.lex_state = 334}, + [4189] = {.lex_state = 240}, + [4190] = {.lex_state = 334}, + [4191] = {.lex_state = 240}, + [4192] = {.lex_state = 240}, + [4193] = {.lex_state = 240}, + [4194] = {.lex_state = 334}, + [4195] = {.lex_state = 334}, + [4196] = {.lex_state = 240}, + [4197] = {.lex_state = 240}, + [4198] = {.lex_state = 240}, + [4199] = {.lex_state = 334}, [4200] = {.lex_state = 335}, - [4201] = {.lex_state = 335}, - [4202] = {.lex_state = 252}, - [4203] = {.lex_state = 335}, - [4204] = {.lex_state = 316}, - [4205] = {.lex_state = 290}, - [4206] = {.lex_state = 278}, - [4207] = {.lex_state = 290}, - [4208] = {.lex_state = 298}, - [4209] = {.lex_state = 298}, - [4210] = {.lex_state = 290}, - [4211] = {.lex_state = 316}, - [4212] = {.lex_state = 290}, - [4213] = {.lex_state = 298}, - [4214] = {.lex_state = 298}, - [4215] = {.lex_state = 298}, - [4216] = {.lex_state = 278}, - [4217] = {.lex_state = 278}, - [4218] = {.lex_state = 278}, - [4219] = {.lex_state = 335}, - [4220] = {.lex_state = 290}, - [4221] = {.lex_state = 339}, - [4222] = {.lex_state = 290}, - [4223] = {.lex_state = 247}, - [4224] = {.lex_state = 301}, - [4225] = {.lex_state = 270}, - [4226] = {.lex_state = 270}, - [4227] = {.lex_state = 270}, - [4228] = {.lex_state = 334}, - [4229] = {.lex_state = 301}, - [4230] = {.lex_state = 290}, - [4231] = {.lex_state = 339}, - [4232] = {.lex_state = 290}, - [4233] = {.lex_state = 270}, - [4234] = {.lex_state = 338}, - [4235] = {.lex_state = 316}, - [4236] = {.lex_state = 270}, - [4237] = {.lex_state = 290}, - [4238] = {.lex_state = 339}, - [4239] = {.lex_state = 247}, - [4240] = {.lex_state = 301}, - [4241] = {.lex_state = 290}, - [4242] = {.lex_state = 301}, - [4243] = {.lex_state = 338}, - [4244] = {.lex_state = 289}, - [4245] = {.lex_state = 270}, - [4246] = {.lex_state = 270}, - [4247] = {.lex_state = 289}, - [4248] = {.lex_state = 270}, - [4249] = {.lex_state = 270}, - [4250] = {.lex_state = 316}, - [4251] = {.lex_state = 316}, - [4252] = {.lex_state = 316}, - [4253] = {.lex_state = 301}, - [4254] = {.lex_state = 316}, - [4255] = {.lex_state = 316}, - [4256] = {.lex_state = 335}, - [4257] = {.lex_state = 316}, - [4258] = {.lex_state = 335}, - [4259] = {.lex_state = 290}, - [4260] = {.lex_state = 316}, - [4261] = {.lex_state = 316}, - [4262] = {.lex_state = 247}, - [4263] = {.lex_state = 316}, - [4264] = {.lex_state = 290}, - [4265] = {.lex_state = 301}, - [4266] = {.lex_state = 316}, - [4267] = {.lex_state = 301}, - [4268] = {.lex_state = 288}, - [4269] = {.lex_state = 280}, - [4270] = {.lex_state = 339}, - [4271] = {.lex_state = 291}, - [4272] = {.lex_state = 301}, - [4273] = {.lex_state = 290}, - [4274] = {.lex_state = 290}, - [4275] = {.lex_state = 316}, - [4276] = {.lex_state = 278}, - [4277] = {.lex_state = 278}, - [4278] = {.lex_state = 291}, - [4279] = {.lex_state = 278}, - [4280] = {.lex_state = 278}, - [4281] = {.lex_state = 316}, - [4282] = {.lex_state = 278}, - [4283] = {.lex_state = 278}, - [4284] = {.lex_state = 278}, - [4285] = {.lex_state = 316}, - [4286] = {.lex_state = 278}, - [4287] = {.lex_state = 278}, - [4288] = {.lex_state = 278}, - [4289] = {.lex_state = 278}, - [4290] = {.lex_state = 278}, - [4291] = {.lex_state = 247}, - [4292] = {.lex_state = 301}, - [4293] = {.lex_state = 272}, - [4294] = {.lex_state = 303}, - [4295] = {.lex_state = 316}, - [4296] = {.lex_state = 270}, - [4297] = {.lex_state = 340}, - [4298] = {.lex_state = 316}, - [4299] = {.lex_state = 340}, - [4300] = {.lex_state = 340}, - [4301] = {.lex_state = 316}, - [4302] = {.lex_state = 315}, - [4303] = {.lex_state = 270}, - [4304] = {.lex_state = 315}, - [4305] = {.lex_state = 270}, - [4306] = {.lex_state = 316}, - [4307] = {.lex_state = 272}, - [4308] = {.lex_state = 270}, - [4309] = {.lex_state = 270}, - [4310] = {.lex_state = 270}, - [4311] = {.lex_state = 270}, - [4312] = {.lex_state = 240}, - [4313] = {.lex_state = 315}, - [4314] = {.lex_state = 315}, - [4315] = {.lex_state = 316}, - [4316] = {.lex_state = 316}, - [4317] = {.lex_state = 316}, - [4318] = {.lex_state = 316}, - [4319] = {.lex_state = 272}, - [4320] = {.lex_state = 272}, - [4321] = {.lex_state = 272}, - [4322] = {.lex_state = 316}, - [4323] = {.lex_state = 316}, - [4324] = {.lex_state = 315}, - [4325] = {.lex_state = 301}, - [4326] = {.lex_state = 270}, - [4327] = {.lex_state = 270}, - [4328] = {.lex_state = 289}, - [4329] = {.lex_state = 316}, - [4330] = {.lex_state = 315}, - [4331] = {.lex_state = 315}, - [4332] = {.lex_state = 316}, - [4333] = {.lex_state = 272}, - [4334] = {.lex_state = 316}, - [4335] = {.lex_state = 272}, - [4336] = {.lex_state = 272}, - [4337] = {.lex_state = 272}, - [4338] = {.lex_state = 272}, - [4339] = {.lex_state = 272}, - [4340] = {.lex_state = 272}, - [4341] = {.lex_state = 272}, - [4342] = {.lex_state = 315}, - [4343] = {.lex_state = 316}, - [4344] = {.lex_state = 316}, - [4345] = {.lex_state = 316}, - [4346] = {.lex_state = 315}, - [4347] = {.lex_state = 315}, - [4348] = {.lex_state = 315}, - [4349] = {.lex_state = 270}, - [4350] = {.lex_state = 335}, - [4351] = {.lex_state = 316}, - [4352] = {.lex_state = 315}, - [4353] = {.lex_state = 315}, + [4201] = {.lex_state = 334}, + [4202] = {.lex_state = 334}, + [4203] = {.lex_state = 240}, + [4204] = {.lex_state = 319}, + [4205] = {.lex_state = 267}, + [4206] = {.lex_state = 335}, + [4207] = {.lex_state = 334}, + [4208] = {.lex_state = 334}, + [4209] = {.lex_state = 328}, + [4210] = {.lex_state = 334}, + [4211] = {.lex_state = 240}, + [4212] = {.lex_state = 334}, + [4213] = {.lex_state = 335}, + [4214] = {.lex_state = 240}, + [4215] = {.lex_state = 240}, + [4216] = {.lex_state = 335}, + [4217] = {.lex_state = 240}, + [4218] = {.lex_state = 240}, + [4219] = {.lex_state = 240}, + [4220] = {.lex_state = 335}, + [4221] = {.lex_state = 328}, + [4222] = {.lex_state = 240}, + [4223] = {.lex_state = 334}, + [4224] = {.lex_state = 334}, + [4225] = {.lex_state = 335}, + [4226] = {.lex_state = 240}, + [4227] = {.lex_state = 300}, + [4228] = {.lex_state = 335}, + [4229] = {.lex_state = 240}, + [4230] = {.lex_state = 271}, + [4231] = {.lex_state = 271}, + [4232] = {.lex_state = 271}, + [4233] = {.lex_state = 271}, + [4234] = {.lex_state = 271}, + [4235] = {.lex_state = 271}, + [4236] = {.lex_state = 271}, + [4237] = {.lex_state = 271}, + [4238] = {.lex_state = 271}, + [4239] = {.lex_state = 271}, + [4240] = {.lex_state = 271}, + [4241] = {.lex_state = 271}, + [4242] = {.lex_state = 271}, + [4243] = {.lex_state = 271}, + [4244] = {.lex_state = 271}, + [4245] = {.lex_state = 271}, + [4246] = {.lex_state = 328}, + [4247] = {.lex_state = 335}, + [4248] = {.lex_state = 335}, + [4249] = {.lex_state = 334}, + [4250] = {.lex_state = 334}, + [4251] = {.lex_state = 298}, + [4252] = {.lex_state = 328}, + [4253] = {.lex_state = 335}, + [4254] = {.lex_state = 289}, + [4255] = {.lex_state = 334}, + [4256] = {.lex_state = 334}, + [4257] = {.lex_state = 289}, + [4258] = {.lex_state = 334}, + [4259] = {.lex_state = 334}, + [4260] = {.lex_state = 289}, + [4261] = {.lex_state = 334}, + [4262] = {.lex_state = 319}, + [4263] = {.lex_state = 277}, + [4264] = {.lex_state = 299}, + [4265] = {.lex_state = 335}, + [4266] = {.lex_state = 335}, + [4267] = {.lex_state = 320}, + [4268] = {.lex_state = 334}, + [4269] = {.lex_state = 267}, + [4270] = {.lex_state = 335}, + [4271] = {.lex_state = 334}, + [4272] = {.lex_state = 319}, + [4273] = {.lex_state = 335}, + [4274] = {.lex_state = 252}, + [4275] = {.lex_state = 290}, + [4276] = {.lex_state = 298}, + [4277] = {.lex_state = 252}, + [4278] = {.lex_state = 335}, + [4279] = {.lex_state = 277}, + [4280] = {.lex_state = 290}, + [4281] = {.lex_state = 270}, + [4282] = {.lex_state = 270}, + [4283] = {.lex_state = 298}, + [4284] = {.lex_state = 298}, + [4285] = {.lex_state = 298}, + [4286] = {.lex_state = 340}, + [4287] = {.lex_state = 270}, + [4288] = {.lex_state = 319}, + [4289] = {.lex_state = 289}, + [4290] = {.lex_state = 298}, + [4291] = {.lex_state = 319}, + [4292] = {.lex_state = 290}, + [4293] = {.lex_state = 252}, + [4294] = {.lex_state = 277}, + [4295] = {.lex_state = 290}, + [4296] = {.lex_state = 319}, + [4297] = {.lex_state = 280}, + [4298] = {.lex_state = 290}, + [4299] = {.lex_state = 290}, + [4300] = {.lex_state = 290}, + [4301] = {.lex_state = 290}, + [4302] = {.lex_state = 252}, + [4303] = {.lex_state = 277}, + [4304] = {.lex_state = 270}, + [4305] = {.lex_state = 319}, + [4306] = {.lex_state = 319}, + [4307] = {.lex_state = 270}, + [4308] = {.lex_state = 335}, + [4309] = {.lex_state = 277}, + [4310] = {.lex_state = 277}, + [4311] = {.lex_state = 290}, + [4312] = {.lex_state = 290}, + [4313] = {.lex_state = 319}, + [4314] = {.lex_state = 298}, + [4315] = {.lex_state = 335}, + [4316] = {.lex_state = 319}, + [4317] = {.lex_state = 270}, + [4318] = {.lex_state = 335}, + [4319] = {.lex_state = 277}, + [4320] = {.lex_state = 277}, + [4321] = {.lex_state = 319}, + [4322] = {.lex_state = 319}, + [4323] = {.lex_state = 335}, + [4324] = {.lex_state = 277}, + [4325] = {.lex_state = 279}, + [4326] = {.lex_state = 269}, + [4327] = {.lex_state = 291}, + [4328] = {.lex_state = 319}, + [4329] = {.lex_state = 290}, + [4330] = {.lex_state = 338}, + [4331] = {.lex_state = 301}, + [4332] = {.lex_state = 247}, + [4333] = {.lex_state = 339}, + [4334] = {.lex_state = 338}, + [4335] = {.lex_state = 319}, + [4336] = {.lex_state = 335}, + [4337] = {.lex_state = 333}, + [4338] = {.lex_state = 247}, + [4339] = {.lex_state = 290}, + [4340] = {.lex_state = 319}, + [4341] = {.lex_state = 288}, + [4342] = {.lex_state = 319}, + [4343] = {.lex_state = 319}, + [4344] = {.lex_state = 335}, + [4345] = {.lex_state = 290}, + [4346] = {.lex_state = 301}, + [4347] = {.lex_state = 290}, + [4348] = {.lex_state = 269}, + [4349] = {.lex_state = 290}, + [4350] = {.lex_state = 319}, + [4351] = {.lex_state = 319}, + [4352] = {.lex_state = 290}, + [4353] = {.lex_state = 301}, [4354] = {.lex_state = 301}, - [4355] = {.lex_state = 335}, - [4356] = {.lex_state = 316}, - [4357] = {.lex_state = 315}, - [4358] = {.lex_state = 316}, - [4359] = {.lex_state = 315}, - [4360] = {.lex_state = 315}, - [4361] = {.lex_state = 272}, - [4362] = {.lex_state = 272}, - [4363] = {.lex_state = 289}, - [4364] = {.lex_state = 316}, - [4365] = {.lex_state = 289}, - [4366] = {.lex_state = 289}, - [4367] = {.lex_state = 289}, - [4368] = {.lex_state = 340}, - [4369] = {.lex_state = 315}, - [4370] = {.lex_state = 315}, - [4371] = {.lex_state = 302}, - [4372] = {.lex_state = 280}, - [4373] = {.lex_state = 316}, - [4374] = {.lex_state = 280}, - [4375] = {.lex_state = 316}, - [4376] = {.lex_state = 316}, - [4377] = {.lex_state = 301}, - [4378] = {.lex_state = 301}, - [4379] = {.lex_state = 315}, - [4380] = {.lex_state = 272}, + [4355] = {.lex_state = 301}, + [4356] = {.lex_state = 301}, + [4357] = {.lex_state = 269}, + [4358] = {.lex_state = 319}, + [4359] = {.lex_state = 319}, + [4360] = {.lex_state = 339}, + [4361] = {.lex_state = 301}, + [4362] = {.lex_state = 247}, + [4363] = {.lex_state = 269}, + [4364] = {.lex_state = 269}, + [4365] = {.lex_state = 290}, + [4366] = {.lex_state = 269}, + [4367] = {.lex_state = 269}, + [4368] = {.lex_state = 291}, + [4369] = {.lex_state = 269}, + [4370] = {.lex_state = 319}, + [4371] = {.lex_state = 289}, + [4372] = {.lex_state = 290}, + [4373] = {.lex_state = 319}, + [4374] = {.lex_state = 335}, + [4375] = {.lex_state = 301}, + [4376] = {.lex_state = 319}, + [4377] = {.lex_state = 319}, + [4378] = {.lex_state = 319}, + [4379] = {.lex_state = 277}, + [4380] = {.lex_state = 277}, [4381] = {.lex_state = 289}, - [4382] = {.lex_state = 272}, - [4383] = {.lex_state = 289}, - [4384] = {.lex_state = 289}, - [4385] = {.lex_state = 316}, - [4386] = {.lex_state = 315}, - [4387] = {.lex_state = 315}, - [4388] = {.lex_state = 340}, - [4389] = {.lex_state = 340}, - [4390] = {.lex_state = 340}, - [4391] = {.lex_state = 272}, - [4392] = {.lex_state = 272}, - [4393] = {.lex_state = 272}, - [4394] = {.lex_state = 316}, - [4395] = {.lex_state = 316}, - [4396] = {.lex_state = 316}, - [4397] = {.lex_state = 272}, - [4398] = {.lex_state = 316}, - [4399] = {.lex_state = 316}, - [4400] = {.lex_state = 316}, - [4401] = {.lex_state = 316}, - [4402] = {.lex_state = 316}, - [4403] = {.lex_state = 272}, - [4404] = {.lex_state = 316}, - [4405] = {.lex_state = 289}, - [4406] = {.lex_state = 316}, - [4407] = {.lex_state = 316}, - [4408] = {.lex_state = 316}, - [4409] = {.lex_state = 301}, - [4410] = {.lex_state = 301}, - [4411] = {.lex_state = 316}, - [4412] = {.lex_state = 301}, - [4413] = {.lex_state = 303}, - [4414] = {.lex_state = 301}, - [4415] = {.lex_state = 316}, - [4416] = {.lex_state = 272}, - [4417] = {.lex_state = 272}, - [4418] = {.lex_state = 272}, - [4419] = {.lex_state = 301}, - [4420] = {.lex_state = 272}, - [4421] = {.lex_state = 272}, - [4422] = {.lex_state = 272}, - [4423] = {.lex_state = 272}, - [4424] = {.lex_state = 301}, - [4425] = {.lex_state = 302}, - [4426] = {.lex_state = 335}, - [4427] = {.lex_state = 272}, - [4428] = {.lex_state = 316}, - [4429] = {.lex_state = 289}, - [4430] = {.lex_state = 316}, - [4431] = {.lex_state = 272}, - [4432] = {.lex_state = 272}, - [4433] = {.lex_state = 272}, - [4434] = {.lex_state = 272}, - [4435] = {.lex_state = 272}, - [4436] = {.lex_state = 272}, - [4437] = {.lex_state = 272}, - [4438] = {.lex_state = 272}, - [4439] = {.lex_state = 272}, - [4440] = {.lex_state = 272}, - [4441] = {.lex_state = 272}, - [4442] = {.lex_state = 272}, - [4443] = {.lex_state = 272}, - [4444] = {.lex_state = 335}, - [4445] = {.lex_state = 271}, - [4446] = {.lex_state = 324}, - [4447] = {.lex_state = 290}, - [4448] = {.lex_state = 290}, - [4449] = {.lex_state = 335}, - [4450] = {.lex_state = 290}, - [4451] = {.lex_state = 290}, - [4452] = {.lex_state = 290}, - [4453] = {.lex_state = 286}, - [4454] = {.lex_state = 286}, - [4455] = {.lex_state = 290}, - [4456] = {.lex_state = 286}, - [4457] = {.lex_state = 290}, - [4458] = {.lex_state = 290}, - [4459] = {.lex_state = 317}, - [4460] = {.lex_state = 290}, - [4461] = {.lex_state = 286}, - [4462] = {.lex_state = 286}, - [4463] = {.lex_state = 317}, - [4464] = {.lex_state = 317}, - [4465] = {.lex_state = 290}, - [4466] = {.lex_state = 278}, - [4467] = {.lex_state = 317}, - [4468] = {.lex_state = 340}, - [4469] = {.lex_state = 274}, - [4470] = {.lex_state = 280}, - [4471] = {.lex_state = 290}, - [4472] = {.lex_state = 280}, - [4473] = {.lex_state = 280}, - [4474] = {.lex_state = 274}, - [4475] = {.lex_state = 280}, - [4476] = {.lex_state = 290}, - [4477] = {.lex_state = 335}, - [4478] = {.lex_state = 274}, - [4479] = {.lex_state = 335}, - [4480] = {.lex_state = 298}, - [4481] = {.lex_state = 324}, - [4482] = {.lex_state = 280}, - [4483] = {.lex_state = 280}, - [4484] = {.lex_state = 280}, - [4485] = {.lex_state = 271}, - [4486] = {.lex_state = 338}, - [4487] = {.lex_state = 280}, - [4488] = {.lex_state = 271}, - [4489] = {.lex_state = 324}, - [4490] = {.lex_state = 338}, - [4491] = {.lex_state = 340}, - [4492] = {.lex_state = 290}, - [4493] = {.lex_state = 317}, - [4494] = {.lex_state = 338}, - [4495] = {.lex_state = 286}, - [4496] = {.lex_state = 280}, - [4497] = {.lex_state = 298}, - [4498] = {.lex_state = 290}, - [4499] = {.lex_state = 298}, - [4500] = {.lex_state = 286}, + [4382] = {.lex_state = 277}, + [4383] = {.lex_state = 290}, + [4384] = {.lex_state = 277}, + [4385] = {.lex_state = 277}, + [4386] = {.lex_state = 277}, + [4387] = {.lex_state = 339}, + [4388] = {.lex_state = 277}, + [4389] = {.lex_state = 277}, + [4390] = {.lex_state = 277}, + [4391] = {.lex_state = 277}, + [4392] = {.lex_state = 277}, + [4393] = {.lex_state = 247}, + [4394] = {.lex_state = 269}, + [4395] = {.lex_state = 339}, + [4396] = {.lex_state = 301}, + [4397] = {.lex_state = 290}, + [4398] = {.lex_state = 319}, + [4399] = {.lex_state = 315}, + [4400] = {.lex_state = 271}, + [4401] = {.lex_state = 271}, + [4402] = {.lex_state = 271}, + [4403] = {.lex_state = 271}, + [4404] = {.lex_state = 271}, + [4405] = {.lex_state = 319}, + [4406] = {.lex_state = 271}, + [4407] = {.lex_state = 271}, + [4408] = {.lex_state = 340}, + [4409] = {.lex_state = 340}, + [4410] = {.lex_state = 340}, + [4411] = {.lex_state = 271}, + [4412] = {.lex_state = 271}, + [4413] = {.lex_state = 271}, + [4414] = {.lex_state = 271}, + [4415] = {.lex_state = 315}, + [4416] = {.lex_state = 319}, + [4417] = {.lex_state = 319}, + [4418] = {.lex_state = 315}, + [4419] = {.lex_state = 271}, + [4420] = {.lex_state = 319}, + [4421] = {.lex_state = 271}, + [4422] = {.lex_state = 301}, + [4423] = {.lex_state = 319}, + [4424] = {.lex_state = 319}, + [4425] = {.lex_state = 271}, + [4426] = {.lex_state = 319}, + [4427] = {.lex_state = 319}, + [4428] = {.lex_state = 315}, + [4429] = {.lex_state = 319}, + [4430] = {.lex_state = 319}, + [4431] = {.lex_state = 271}, + [4432] = {.lex_state = 301}, + [4433] = {.lex_state = 319}, + [4434] = {.lex_state = 315}, + [4435] = {.lex_state = 315}, + [4436] = {.lex_state = 315}, + [4437] = {.lex_state = 271}, + [4438] = {.lex_state = 271}, + [4439] = {.lex_state = 315}, + [4440] = {.lex_state = 301}, + [4441] = {.lex_state = 289}, + [4442] = {.lex_state = 315}, + [4443] = {.lex_state = 301}, + [4444] = {.lex_state = 302}, + [4445] = {.lex_state = 319}, + [4446] = {.lex_state = 319}, + [4447] = {.lex_state = 301}, + [4448] = {.lex_state = 319}, + [4449] = {.lex_state = 315}, + [4450] = {.lex_state = 315}, + [4451] = {.lex_state = 319}, + [4452] = {.lex_state = 319}, + [4453] = {.lex_state = 289}, + [4454] = {.lex_state = 240}, + [4455] = {.lex_state = 319}, + [4456] = {.lex_state = 319}, + [4457] = {.lex_state = 319}, + [4458] = {.lex_state = 319}, + [4459] = {.lex_state = 319}, + [4460] = {.lex_state = 340}, + [4461] = {.lex_state = 319}, + [4462] = {.lex_state = 319}, + [4463] = {.lex_state = 319}, + [4464] = {.lex_state = 319}, + [4465] = {.lex_state = 289}, + [4466] = {.lex_state = 319}, + [4467] = {.lex_state = 301}, + [4468] = {.lex_state = 301}, + [4469] = {.lex_state = 319}, + [4470] = {.lex_state = 301}, + [4471] = {.lex_state = 301}, + [4472] = {.lex_state = 301}, + [4473] = {.lex_state = 315}, + [4474] = {.lex_state = 315}, + [4475] = {.lex_state = 269}, + [4476] = {.lex_state = 269}, + [4477] = {.lex_state = 269}, + [4478] = {.lex_state = 271}, + [4479] = {.lex_state = 289}, + [4480] = {.lex_state = 335}, + [4481] = {.lex_state = 269}, + [4482] = {.lex_state = 271}, + [4483] = {.lex_state = 279}, + [4484] = {.lex_state = 271}, + [4485] = {.lex_state = 279}, + [4486] = {.lex_state = 289}, + [4487] = {.lex_state = 303}, + [4488] = {.lex_state = 289}, + [4489] = {.lex_state = 271}, + [4490] = {.lex_state = 289}, + [4491] = {.lex_state = 271}, + [4492] = {.lex_state = 271}, + [4493] = {.lex_state = 271}, + [4494] = {.lex_state = 319}, + [4495] = {.lex_state = 315}, + [4496] = {.lex_state = 289}, + [4497] = {.lex_state = 289}, + [4498] = {.lex_state = 271}, + [4499] = {.lex_state = 271}, + [4500] = {.lex_state = 271}, [4501] = {.lex_state = 315}, [4502] = {.lex_state = 315}, - [4503] = {.lex_state = 317}, - [4504] = {.lex_state = 271}, - [4505] = {.lex_state = 338}, - [4506] = {.lex_state = 280}, - [4507] = {.lex_state = 290}, - [4508] = {.lex_state = 324}, - [4509] = {.lex_state = 338}, - [4510] = {.lex_state = 290}, - [4511] = {.lex_state = 290}, - [4512] = {.lex_state = 280}, - [4513] = {.lex_state = 335}, - [4514] = {.lex_state = 290}, - [4515] = {.lex_state = 324}, - [4516] = {.lex_state = 324}, - [4517] = {.lex_state = 335}, - [4518] = {.lex_state = 298}, - [4519] = {.lex_state = 280}, - [4520] = {.lex_state = 335}, - [4521] = {.lex_state = 335}, - [4522] = {.lex_state = 274}, - [4523] = {.lex_state = 316}, - [4524] = {.lex_state = 290}, - [4525] = {.lex_state = 286}, - [4526] = {.lex_state = 286}, - [4527] = {.lex_state = 286}, - [4528] = {.lex_state = 272}, - [4529] = {.lex_state = 290}, - [4530] = {.lex_state = 272}, - [4531] = {.lex_state = 335}, - [4532] = {.lex_state = 301}, - [4533] = {.lex_state = 335}, - [4534] = {.lex_state = 270}, - [4535] = {.lex_state = 301}, - [4536] = {.lex_state = 301}, - [4537] = {.lex_state = 270}, - [4538] = {.lex_state = 270}, - [4539] = {.lex_state = 301}, - [4540] = {.lex_state = 270}, - [4541] = {.lex_state = 301}, - [4542] = {.lex_state = 301}, - [4543] = {.lex_state = 301}, - [4544] = {.lex_state = 301}, - [4545] = {.lex_state = 301}, - [4546] = {.lex_state = 335}, - [4547] = {.lex_state = 270}, - [4548] = {.lex_state = 270}, - [4549] = {.lex_state = 270}, - [4550] = {.lex_state = 270}, - [4551] = {.lex_state = 290}, + [4503] = {.lex_state = 315}, + [4504] = {.lex_state = 335}, + [4505] = {.lex_state = 303}, + [4506] = {.lex_state = 319}, + [4507] = {.lex_state = 340}, + [4508] = {.lex_state = 340}, + [4509] = {.lex_state = 335}, + [4510] = {.lex_state = 340}, + [4511] = {.lex_state = 302}, + [4512] = {.lex_state = 289}, + [4513] = {.lex_state = 319}, + [4514] = {.lex_state = 335}, + [4515] = {.lex_state = 269}, + [4516] = {.lex_state = 271}, + [4517] = {.lex_state = 319}, + [4518] = {.lex_state = 271}, + [4519] = {.lex_state = 271}, + [4520] = {.lex_state = 271}, + [4521] = {.lex_state = 271}, + [4522] = {.lex_state = 271}, + [4523] = {.lex_state = 271}, + [4524] = {.lex_state = 271}, + [4525] = {.lex_state = 271}, + [4526] = {.lex_state = 319}, + [4527] = {.lex_state = 315}, + [4528] = {.lex_state = 315}, + [4529] = {.lex_state = 319}, + [4530] = {.lex_state = 319}, + [4531] = {.lex_state = 319}, + [4532] = {.lex_state = 269}, + [4533] = {.lex_state = 315}, + [4534] = {.lex_state = 269}, + [4535] = {.lex_state = 269}, + [4536] = {.lex_state = 269}, + [4537] = {.lex_state = 271}, + [4538] = {.lex_state = 271}, + [4539] = {.lex_state = 319}, + [4540] = {.lex_state = 319}, + [4541] = {.lex_state = 271}, + [4542] = {.lex_state = 271}, + [4543] = {.lex_state = 319}, + [4544] = {.lex_state = 319}, + [4545] = {.lex_state = 315}, + [4546] = {.lex_state = 271}, + [4547] = {.lex_state = 271}, + [4548] = {.lex_state = 271}, + [4549] = {.lex_state = 269}, + [4550] = {.lex_state = 279}, + [4551] = {.lex_state = 273}, [4552] = {.lex_state = 290}, - [4553] = {.lex_state = 272}, - [4554] = {.lex_state = 280}, - [4555] = {.lex_state = 286}, - [4556] = {.lex_state = 335}, - [4557] = {.lex_state = 278}, - [4558] = {.lex_state = 280}, - [4559] = {.lex_state = 301}, - [4560] = {.lex_state = 279}, - [4561] = {.lex_state = 279}, - [4562] = {.lex_state = 286}, - [4563] = {.lex_state = 290}, - [4564] = {.lex_state = 291}, - [4565] = {.lex_state = 272}, - [4566] = {.lex_state = 290}, - [4567] = {.lex_state = 290}, - [4568] = {.lex_state = 286}, - [4569] = {.lex_state = 335}, - [4570] = {.lex_state = 335}, - [4571] = {.lex_state = 286}, + [4553] = {.lex_state = 290}, + [4554] = {.lex_state = 270}, + [4555] = {.lex_state = 340}, + [4556] = {.lex_state = 270}, + [4557] = {.lex_state = 285}, + [4558] = {.lex_state = 324}, + [4559] = {.lex_state = 270}, + [4560] = {.lex_state = 290}, + [4561] = {.lex_state = 285}, + [4562] = {.lex_state = 338}, + [4563] = {.lex_state = 270}, + [4564] = {.lex_state = 338}, + [4565] = {.lex_state = 338}, + [4566] = {.lex_state = 298}, + [4567] = {.lex_state = 279}, + [4568] = {.lex_state = 290}, + [4569] = {.lex_state = 324}, + [4570] = {.lex_state = 279}, + [4571] = {.lex_state = 290}, [4572] = {.lex_state = 290}, - [4573] = {.lex_state = 335}, - [4574] = {.lex_state = 272}, - [4575] = {.lex_state = 278}, - [4576] = {.lex_state = 272}, - [4577] = {.lex_state = 272}, - [4578] = {.lex_state = 272}, - [4579] = {.lex_state = 272}, - [4580] = {.lex_state = 286}, - [4581] = {.lex_state = 272}, - [4582] = {.lex_state = 272}, - [4583] = {.lex_state = 272}, - [4584] = {.lex_state = 272}, - [4585] = {.lex_state = 272}, - [4586] = {.lex_state = 272}, - [4587] = {.lex_state = 316}, - [4588] = {.lex_state = 286}, - [4589] = {.lex_state = 280}, - [4590] = {.lex_state = 286}, - [4591] = {.lex_state = 339}, - [4592] = {.lex_state = 335}, - [4593] = {.lex_state = 335}, - [4594] = {.lex_state = 335}, - [4595] = {.lex_state = 272}, - [4596] = {.lex_state = 290}, - [4597] = {.lex_state = 278}, - [4598] = {.lex_state = 286}, + [4573] = {.lex_state = 285}, + [4574] = {.lex_state = 316}, + [4575] = {.lex_state = 316}, + [4576] = {.lex_state = 290}, + [4577] = {.lex_state = 316}, + [4578] = {.lex_state = 335}, + [4579] = {.lex_state = 290}, + [4580] = {.lex_state = 273}, + [4581] = {.lex_state = 279}, + [4582] = {.lex_state = 335}, + [4583] = {.lex_state = 324}, + [4584] = {.lex_state = 324}, + [4585] = {.lex_state = 324}, + [4586] = {.lex_state = 338}, + [4587] = {.lex_state = 298}, + [4588] = {.lex_state = 324}, + [4589] = {.lex_state = 290}, + [4590] = {.lex_state = 290}, + [4591] = {.lex_state = 290}, + [4592] = {.lex_state = 279}, + [4593] = {.lex_state = 279}, + [4594] = {.lex_state = 315}, + [4595] = {.lex_state = 290}, + [4596] = {.lex_state = 273}, + [4597] = {.lex_state = 279}, + [4598] = {.lex_state = 279}, [4599] = {.lex_state = 290}, - [4600] = {.lex_state = 289}, - [4601] = {.lex_state = 280}, + [4600] = {.lex_state = 279}, + [4601] = {.lex_state = 335}, [4602] = {.lex_state = 290}, - [4603] = {.lex_state = 290}, - [4604] = {.lex_state = 290}, - [4605] = {.lex_state = 286}, - [4606] = {.lex_state = 272}, + [4603] = {.lex_state = 279}, + [4604] = {.lex_state = 335}, + [4605] = {.lex_state = 285}, + [4606] = {.lex_state = 279}, [4607] = {.lex_state = 290}, - [4608] = {.lex_state = 290}, - [4609] = {.lex_state = 289}, - [4610] = {.lex_state = 286}, - [4611] = {.lex_state = 270}, - [4612] = {.lex_state = 316}, - [4613] = {.lex_state = 335}, - [4614] = {.lex_state = 335}, - [4615] = {.lex_state = 272}, - [4616] = {.lex_state = 316}, - [4617] = {.lex_state = 286}, - [4618] = {.lex_state = 286}, - [4619] = {.lex_state = 289}, - [4620] = {.lex_state = 335}, - [4621] = {.lex_state = 272}, - [4622] = {.lex_state = 280}, - [4623] = {.lex_state = 280}, - [4624] = {.lex_state = 297}, - [4625] = {.lex_state = 270}, - [4626] = {.lex_state = 289}, - [4627] = {.lex_state = 289}, + [4608] = {.lex_state = 316}, + [4609] = {.lex_state = 335}, + [4610] = {.lex_state = 290}, + [4611] = {.lex_state = 340}, + [4612] = {.lex_state = 315}, + [4613] = {.lex_state = 338}, + [4614] = {.lex_state = 298}, + [4615] = {.lex_state = 290}, + [4616] = {.lex_state = 285}, + [4617] = {.lex_state = 298}, + [4618] = {.lex_state = 273}, + [4619] = {.lex_state = 290}, + [4620] = {.lex_state = 285}, + [4621] = {.lex_state = 285}, + [4622] = {.lex_state = 277}, + [4623] = {.lex_state = 290}, + [4624] = {.lex_state = 316}, + [4625] = {.lex_state = 279}, + [4626] = {.lex_state = 335}, + [4627] = {.lex_state = 319}, [4628] = {.lex_state = 316}, - [4629] = {.lex_state = 286}, - [4630] = {.lex_state = 289}, - [4631] = {.lex_state = 286}, - [4632] = {.lex_state = 291}, - [4633] = {.lex_state = 289}, - [4634] = {.lex_state = 286}, - [4635] = {.lex_state = 289}, - [4636] = {.lex_state = 290}, - [4637] = {.lex_state = 335}, - [4638] = {.lex_state = 286}, + [4629] = {.lex_state = 335}, + [4630] = {.lex_state = 285}, + [4631] = {.lex_state = 271}, + [4632] = {.lex_state = 271}, + [4633] = {.lex_state = 271}, + [4634] = {.lex_state = 271}, + [4635] = {.lex_state = 290}, + [4636] = {.lex_state = 285}, + [4637] = {.lex_state = 271}, + [4638] = {.lex_state = 271}, [4639] = {.lex_state = 290}, - [4640] = {.lex_state = 286}, - [4641] = {.lex_state = 286}, - [4642] = {.lex_state = 339}, - [4643] = {.lex_state = 278}, - [4644] = {.lex_state = 335}, - [4645] = {.lex_state = 290}, - [4646] = {.lex_state = 335}, - [4647] = {.lex_state = 286}, - [4648] = {.lex_state = 335}, - [4649] = {.lex_state = 278}, - [4650] = {.lex_state = 272}, - [4651] = {.lex_state = 286}, - [4652] = {.lex_state = 286}, - [4653] = {.lex_state = 290}, - [4654] = {.lex_state = 286}, - [4655] = {.lex_state = 316}, - [4656] = {.lex_state = 286}, - [4657] = {.lex_state = 290}, - [4658] = {.lex_state = 290}, - [4659] = {.lex_state = 290}, + [4640] = {.lex_state = 289}, + [4641] = {.lex_state = 285}, + [4642] = {.lex_state = 290}, + [4643] = {.lex_state = 271}, + [4644] = {.lex_state = 277}, + [4645] = {.lex_state = 285}, + [4646] = {.lex_state = 289}, + [4647] = {.lex_state = 290}, + [4648] = {.lex_state = 279}, + [4649] = {.lex_state = 279}, + [4650] = {.lex_state = 285}, + [4651] = {.lex_state = 290}, + [4652] = {.lex_state = 271}, + [4653] = {.lex_state = 269}, + [4654] = {.lex_state = 335}, + [4655] = {.lex_state = 285}, + [4656] = {.lex_state = 291}, + [4657] = {.lex_state = 285}, + [4658] = {.lex_state = 271}, + [4659] = {.lex_state = 269}, [4660] = {.lex_state = 290}, - [4661] = {.lex_state = 286}, - [4662] = {.lex_state = 290}, - [4663] = {.lex_state = 286}, - [4664] = {.lex_state = 267}, + [4661] = {.lex_state = 285}, + [4662] = {.lex_state = 319}, + [4663] = {.lex_state = 290}, + [4664] = {.lex_state = 290}, [4665] = {.lex_state = 290}, - [4666] = {.lex_state = 335}, - [4667] = {.lex_state = 271}, - [4668] = {.lex_state = 271}, - [4669] = {.lex_state = 271}, - [4670] = {.lex_state = 270}, - [4671] = {.lex_state = 271}, - [4672] = {.lex_state = 290}, - [4673] = {.lex_state = 335}, - [4674] = {.lex_state = 272}, - [4675] = {.lex_state = 271}, - [4676] = {.lex_state = 290}, - [4677] = {.lex_state = 340}, - [4678] = {.lex_state = 272}, - [4679] = {.lex_state = 290}, - [4680] = {.lex_state = 335}, - [4681] = {.lex_state = 290}, - [4682] = {.lex_state = 290}, - [4683] = {.lex_state = 290}, - [4684] = {.lex_state = 335}, - [4685] = {.lex_state = 290}, - [4686] = {.lex_state = 272}, - [4687] = {.lex_state = 272}, - [4688] = {.lex_state = 272}, - [4689] = {.lex_state = 272}, - [4690] = {.lex_state = 272}, - [4691] = {.lex_state = 340}, - [4692] = {.lex_state = 272}, - [4693] = {.lex_state = 272}, - [4694] = {.lex_state = 272}, - [4695] = {.lex_state = 272}, - [4696] = {.lex_state = 298}, - [4697] = {.lex_state = 290}, - [4698] = {.lex_state = 301}, - [4699] = {.lex_state = 234}, - [4700] = {.lex_state = 271}, - [4701] = {.lex_state = 286}, + [4666] = {.lex_state = 278}, + [4667] = {.lex_state = 285}, + [4668] = {.lex_state = 335}, + [4669] = {.lex_state = 290}, + [4670] = {.lex_state = 289}, + [4671] = {.lex_state = 335}, + [4672] = {.lex_state = 279}, + [4673] = {.lex_state = 319}, + [4674] = {.lex_state = 335}, + [4675] = {.lex_state = 285}, + [4676] = {.lex_state = 335}, + [4677] = {.lex_state = 290}, + [4678] = {.lex_state = 285}, + [4679] = {.lex_state = 301}, + [4680] = {.lex_state = 269}, + [4681] = {.lex_state = 285}, + [4682] = {.lex_state = 269}, + [4683] = {.lex_state = 335}, + [4684] = {.lex_state = 285}, + [4685] = {.lex_state = 285}, + [4686] = {.lex_state = 269}, + [4687] = {.lex_state = 271}, + [4688] = {.lex_state = 285}, + [4689] = {.lex_state = 277}, + [4690] = {.lex_state = 319}, + [4691] = {.lex_state = 277}, + [4692] = {.lex_state = 285}, + [4693] = {.lex_state = 301}, + [4694] = {.lex_state = 285}, + [4695] = {.lex_state = 285}, + [4696] = {.lex_state = 285}, + [4697] = {.lex_state = 297}, + [4698] = {.lex_state = 278}, + [4699] = {.lex_state = 301}, + [4700] = {.lex_state = 335}, + [4701] = {.lex_state = 335}, [4702] = {.lex_state = 290}, - [4703] = {.lex_state = 286}, - [4704] = {.lex_state = 335}, - [4705] = {.lex_state = 286}, - [4706] = {.lex_state = 335}, - [4707] = {.lex_state = 297}, - [4708] = {.lex_state = 335}, - [4709] = {.lex_state = 281}, - [4710] = {.lex_state = 301}, - [4711] = {.lex_state = 272}, - [4712] = {.lex_state = 286}, - [4713] = {.lex_state = 286}, - [4714] = {.lex_state = 335}, - [4715] = {.lex_state = 298}, - [4716] = {.lex_state = 272}, - [4717] = {.lex_state = 272}, - [4718] = {.lex_state = 272}, - [4719] = {.lex_state = 267}, - [4720] = {.lex_state = 272}, - [4721] = {.lex_state = 290}, - [4722] = {.lex_state = 290}, - [4723] = {.lex_state = 298}, - [4724] = {.lex_state = 272}, - [4725] = {.lex_state = 340}, - [4726] = {.lex_state = 290}, - [4727] = {.lex_state = 301}, - [4728] = {.lex_state = 234}, - [4729] = {.lex_state = 289}, - [4730] = {.lex_state = 286}, - [4731] = {.lex_state = 289}, - [4732] = {.lex_state = 335}, - [4733] = {.lex_state = 301}, - [4734] = {.lex_state = 286}, - [4735] = {.lex_state = 286}, - [4736] = {.lex_state = 270}, - [4737] = {.lex_state = 297}, - [4738] = {.lex_state = 234}, - [4739] = {.lex_state = 335}, + [4703] = {.lex_state = 269}, + [4704] = {.lex_state = 289}, + [4705] = {.lex_state = 301}, + [4706] = {.lex_state = 279}, + [4707] = {.lex_state = 285}, + [4708] = {.lex_state = 291}, + [4709] = {.lex_state = 271}, + [4710] = {.lex_state = 269}, + [4711] = {.lex_state = 339}, + [4712] = {.lex_state = 289}, + [4713] = {.lex_state = 279}, + [4714] = {.lex_state = 319}, + [4715] = {.lex_state = 290}, + [4716] = {.lex_state = 301}, + [4717] = {.lex_state = 271}, + [4718] = {.lex_state = 335}, + [4719] = {.lex_state = 271}, + [4720] = {.lex_state = 285}, + [4721] = {.lex_state = 289}, + [4722] = {.lex_state = 335}, + [4723] = {.lex_state = 290}, + [4724] = {.lex_state = 301}, + [4725] = {.lex_state = 319}, + [4726] = {.lex_state = 271}, + [4727] = {.lex_state = 271}, + [4728] = {.lex_state = 285}, + [4729] = {.lex_state = 290}, + [4730] = {.lex_state = 335}, + [4731] = {.lex_state = 335}, + [4732] = {.lex_state = 269}, + [4733] = {.lex_state = 271}, + [4734] = {.lex_state = 301}, + [4735] = {.lex_state = 339}, + [4736] = {.lex_state = 335}, + [4737] = {.lex_state = 269}, + [4738] = {.lex_state = 301}, + [4739] = {.lex_state = 271}, [4740] = {.lex_state = 290}, - [4741] = {.lex_state = 286}, - [4742] = {.lex_state = 335}, - [4743] = {.lex_state = 335}, - [4744] = {.lex_state = 290}, - [4745] = {.lex_state = 289}, - [4746] = {.lex_state = 335}, - [4747] = {.lex_state = 298}, - [4748] = {.lex_state = 335}, - [4749] = {.lex_state = 234}, - [4750] = {.lex_state = 335}, - [4751] = {.lex_state = 272}, - [4752] = {.lex_state = 272}, - [4753] = {.lex_state = 234}, - [4754] = {.lex_state = 286}, - [4755] = {.lex_state = 290}, - [4756] = {.lex_state = 290}, + [4741] = {.lex_state = 335}, + [4742] = {.lex_state = 271}, + [4743] = {.lex_state = 301}, + [4744] = {.lex_state = 301}, + [4745] = {.lex_state = 285}, + [4746] = {.lex_state = 289}, + [4747] = {.lex_state = 285}, + [4748] = {.lex_state = 271}, + [4749] = {.lex_state = 290}, + [4750] = {.lex_state = 271}, + [4751] = {.lex_state = 285}, + [4752] = {.lex_state = 277}, + [4753] = {.lex_state = 285}, + [4754] = {.lex_state = 335}, + [4755] = {.lex_state = 279}, + [4756] = {.lex_state = 335}, [4757] = {.lex_state = 290}, - [4758] = {.lex_state = 298}, - [4759] = {.lex_state = 290}, - [4760] = {.lex_state = 290}, - [4761] = {.lex_state = 290}, - [4762] = {.lex_state = 281}, - [4763] = {.lex_state = 289}, - [4764] = {.lex_state = 272}, - [4765] = {.lex_state = 286}, - [4766] = {.lex_state = 272}, - [4767] = {.lex_state = 335}, - [4768] = {.lex_state = 272}, - [4769] = {.lex_state = 286}, - [4770] = {.lex_state = 335}, - [4771] = {.lex_state = 297}, - [4772] = {.lex_state = 297}, - [4773] = {.lex_state = 335}, - [4774] = {.lex_state = 335}, - [4775] = {.lex_state = 335}, - [4776] = {.lex_state = 289}, - [4777] = {.lex_state = 286}, - [4778] = {.lex_state = 290}, - [4779] = {.lex_state = 290}, - [4780] = {.lex_state = 290}, - [4781] = {.lex_state = 335}, - [4782] = {.lex_state = 286}, - [4783] = {.lex_state = 247}, - [4784] = {.lex_state = 290}, - [4785] = {.lex_state = 286}, - [4786] = {.lex_state = 335}, - [4787] = {.lex_state = 286}, - [4788] = {.lex_state = 286}, - [4789] = {.lex_state = 286}, - [4790] = {.lex_state = 335}, - [4791] = {.lex_state = 286}, - [4792] = {.lex_state = 286}, - [4793] = {.lex_state = 286}, - [4794] = {.lex_state = 286}, - [4795] = {.lex_state = 286}, - [4796] = {.lex_state = 286}, - [4797] = {.lex_state = 286}, - [4798] = {.lex_state = 286}, - [4799] = {.lex_state = 290}, - [4800] = {.lex_state = 290}, - [4801] = {.lex_state = 290}, - [4802] = {.lex_state = 316}, - [4803] = {.lex_state = 286}, - [4804] = {.lex_state = 286}, - [4805] = {.lex_state = 286}, - [4806] = {.lex_state = 286}, - [4807] = {.lex_state = 286}, - [4808] = {.lex_state = 335}, - [4809] = {.lex_state = 335}, - [4810] = {.lex_state = 335}, - [4811] = {.lex_state = 335}, + [4758] = {.lex_state = 277}, + [4759] = {.lex_state = 289}, + [4760] = {.lex_state = 335}, + [4761] = {.lex_state = 269}, + [4762] = {.lex_state = 290}, + [4763] = {.lex_state = 335}, + [4764] = {.lex_state = 234}, + [4765] = {.lex_state = 269}, + [4766] = {.lex_state = 340}, + [4767] = {.lex_state = 247}, + [4768] = {.lex_state = 290}, + [4769] = {.lex_state = 289}, + [4770] = {.lex_state = 298}, + [4771] = {.lex_state = 290}, + [4772] = {.lex_state = 340}, + [4773] = {.lex_state = 340}, + [4774] = {.lex_state = 234}, + [4775] = {.lex_state = 290}, + [4776] = {.lex_state = 335}, + [4777] = {.lex_state = 271}, + [4778] = {.lex_state = 280}, + [4779] = {.lex_state = 340}, + [4780] = {.lex_state = 335}, + [4781] = {.lex_state = 285}, + [4782] = {.lex_state = 285}, + [4783] = {.lex_state = 271}, + [4784] = {.lex_state = 234}, + [4785] = {.lex_state = 266}, + [4786] = {.lex_state = 290}, + [4787] = {.lex_state = 271}, + [4788] = {.lex_state = 271}, + [4789] = {.lex_state = 270}, + [4790] = {.lex_state = 234}, + [4791] = {.lex_state = 290}, + [4792] = {.lex_state = 271}, + [4793] = {.lex_state = 335}, + [4794] = {.lex_state = 271}, + [4795] = {.lex_state = 335}, + [4796] = {.lex_state = 340}, + [4797] = {.lex_state = 271}, + [4798] = {.lex_state = 271}, + [4799] = {.lex_state = 335}, + [4800] = {.lex_state = 301}, + [4801] = {.lex_state = 271}, + [4802] = {.lex_state = 340}, + [4803] = {.lex_state = 285}, + [4804] = {.lex_state = 271}, + [4805] = {.lex_state = 271}, + [4806] = {.lex_state = 340}, + [4807] = {.lex_state = 271}, + [4808] = {.lex_state = 271}, + [4809] = {.lex_state = 271}, + [4810] = {.lex_state = 290}, + [4811] = {.lex_state = 289}, [4812] = {.lex_state = 335}, - [4813] = {.lex_state = 335}, - [4814] = {.lex_state = 340}, + [4813] = {.lex_state = 290}, + [4814] = {.lex_state = 285}, [4815] = {.lex_state = 335}, - [4816] = {.lex_state = 335}, - [4817] = {.lex_state = 335}, - [4818] = {.lex_state = 297}, - [4819] = {.lex_state = 297}, - [4820] = {.lex_state = 340}, - [4821] = {.lex_state = 297}, - [4822] = {.lex_state = 340}, - [4823] = {.lex_state = 340}, - [4824] = {.lex_state = 270}, - [4825] = {.lex_state = 286}, - [4826] = {.lex_state = 290}, - [4827] = {.lex_state = 290}, - [4828] = {.lex_state = 286}, - [4829] = {.lex_state = 335}, - [4830] = {.lex_state = 286}, - [4831] = {.lex_state = 272}, - [4832] = {.lex_state = 270}, - [4833] = {.lex_state = 289}, - [4834] = {.lex_state = 298}, - [4835] = {.lex_state = 290}, - [4836] = {.lex_state = 286}, - [4837] = {.lex_state = 286}, - [4838] = {.lex_state = 290}, - [4839] = {.lex_state = 290}, - [4840] = {.lex_state = 272}, - [4841] = {.lex_state = 272}, - [4842] = {.lex_state = 286}, - [4843] = {.lex_state = 286}, - [4844] = {.lex_state = 290}, - [4845] = {.lex_state = 286}, - [4846] = {.lex_state = 290}, + [4816] = {.lex_state = 290}, + [4817] = {.lex_state = 271}, + [4818] = {.lex_state = 234}, + [4819] = {.lex_state = 271}, + [4820] = {.lex_state = 335}, + [4821] = {.lex_state = 285}, + [4822] = {.lex_state = 290}, + [4823] = {.lex_state = 269}, + [4824] = {.lex_state = 335}, + [4825] = {.lex_state = 290}, + [4826] = {.lex_state = 285}, + [4827] = {.lex_state = 289}, + [4828] = {.lex_state = 271}, + [4829] = {.lex_state = 285}, + [4830] = {.lex_state = 335}, + [4831] = {.lex_state = 285}, + [4832] = {.lex_state = 290}, + [4833] = {.lex_state = 290}, + [4834] = {.lex_state = 285}, + [4835] = {.lex_state = 285}, + [4836] = {.lex_state = 335}, + [4837] = {.lex_state = 298}, + [4838] = {.lex_state = 335}, + [4839] = {.lex_state = 271}, + [4840] = {.lex_state = 290}, + [4841] = {.lex_state = 285}, + [4842] = {.lex_state = 335}, + [4843] = {.lex_state = 301}, + [4844] = {.lex_state = 247}, + [4845] = {.lex_state = 271}, + [4846] = {.lex_state = 285}, [4847] = {.lex_state = 290}, - [4848] = {.lex_state = 286}, - [4849] = {.lex_state = 286}, - [4850] = {.lex_state = 286}, + [4848] = {.lex_state = 285}, + [4849] = {.lex_state = 269}, + [4850] = {.lex_state = 266}, [4851] = {.lex_state = 290}, - [4852] = {.lex_state = 316}, - [4853] = {.lex_state = 286}, - [4854] = {.lex_state = 286}, - [4855] = {.lex_state = 271}, - [4856] = {.lex_state = 286}, - [4857] = {.lex_state = 286}, - [4858] = {.lex_state = 286}, - [4859] = {.lex_state = 335}, - [4860] = {.lex_state = 286}, - [4861] = {.lex_state = 286}, - [4862] = {.lex_state = 286}, - [4863] = {.lex_state = 286}, - [4864] = {.lex_state = 286}, - [4865] = {.lex_state = 286}, - [4866] = {.lex_state = 335}, - [4867] = {.lex_state = 335}, - [4868] = {.lex_state = 278}, - [4869] = {.lex_state = 340}, + [4852] = {.lex_state = 335}, + [4853] = {.lex_state = 285}, + [4854] = {.lex_state = 270}, + [4855] = {.lex_state = 285}, + [4856] = {.lex_state = 290}, + [4857] = {.lex_state = 285}, + [4858] = {.lex_state = 285}, + [4859] = {.lex_state = 298}, + [4860] = {.lex_state = 285}, + [4861] = {.lex_state = 340}, + [4862] = {.lex_state = 335}, + [4863] = {.lex_state = 335}, + [4864] = {.lex_state = 285}, + [4865] = {.lex_state = 285}, + [4866] = {.lex_state = 285}, + [4867] = {.lex_state = 319}, + [4868] = {.lex_state = 335}, + [4869] = {.lex_state = 298}, [4870] = {.lex_state = 335}, - [4871] = {.lex_state = 286}, - [4872] = {.lex_state = 286}, + [4871] = {.lex_state = 285}, + [4872] = {.lex_state = 298}, [4873] = {.lex_state = 335}, - [4874] = {.lex_state = 335}, - [4875] = {.lex_state = 234}, - [4876] = {.lex_state = 278}, - [4877] = {.lex_state = 286}, - [4878] = {.lex_state = 286}, - [4879] = {.lex_state = 272}, - [4880] = {.lex_state = 286}, - [4881] = {.lex_state = 286}, - [4882] = {.lex_state = 286}, - [4883] = {.lex_state = 286}, - [4884] = {.lex_state = 286}, - [4885] = {.lex_state = 286}, - [4886] = {.lex_state = 286}, - [4887] = {.lex_state = 286}, - [4888] = {.lex_state = 286}, - [4889] = {.lex_state = 286}, - [4890] = {.lex_state = 286}, - [4891] = {.lex_state = 286}, - [4892] = {.lex_state = 286}, - [4893] = {.lex_state = 335}, - [4894] = {.lex_state = 234}, - [4895] = {.lex_state = 286}, - [4896] = {.lex_state = 286}, - [4897] = {.lex_state = 286}, - [4898] = {.lex_state = 267}, - [4899] = {.lex_state = 298}, - [4900] = {.lex_state = 335}, - [4901] = {.lex_state = 335}, - [4902] = {.lex_state = 272}, - [4903] = {.lex_state = 290}, - [4904] = {.lex_state = 290}, - [4905] = {.lex_state = 286}, - [4906] = {.lex_state = 286}, - [4907] = {.lex_state = 286}, - [4908] = {.lex_state = 286}, - [4909] = {.lex_state = 286}, - [4910] = {.lex_state = 286}, - [4911] = {.lex_state = 286}, - [4912] = {.lex_state = 286}, - [4913] = {.lex_state = 286}, - [4914] = {.lex_state = 286}, - [4915] = {.lex_state = 286}, - [4916] = {.lex_state = 286}, - [4917] = {.lex_state = 290}, - [4918] = {.lex_state = 267}, - [4919] = {.lex_state = 247}, - [4920] = {.lex_state = 267}, - [4921] = {.lex_state = 290}, - [4922] = {.lex_state = 286}, - [4923] = {.lex_state = 340}, - [4924] = {.lex_state = 290}, - [4925] = {.lex_state = 286}, - [4926] = {.lex_state = 272}, - [4927] = {.lex_state = 286}, - [4928] = {.lex_state = 301}, - [4929] = {.lex_state = 286}, - [4930] = {.lex_state = 286}, - [4931] = {.lex_state = 286}, - [4932] = {.lex_state = 286}, - [4933] = {.lex_state = 286}, - [4934] = {.lex_state = 286}, - [4935] = {.lex_state = 286}, - [4936] = {.lex_state = 286}, - [4937] = {.lex_state = 286}, - [4938] = {.lex_state = 286}, - [4939] = {.lex_state = 301}, - [4940] = {.lex_state = 281}, - [4941] = {.lex_state = 301}, - [4942] = {.lex_state = 301}, - [4943] = {.lex_state = 286}, - [4944] = {.lex_state = 286}, - [4945] = {.lex_state = 301}, - [4946] = {.lex_state = 335}, - [4947] = {.lex_state = 278}, - [4948] = {.lex_state = 304}, - [4949] = {.lex_state = 286}, - [4950] = {.lex_state = 281}, - [4951] = {.lex_state = 281}, - [4952] = {.lex_state = 281}, - [4953] = {.lex_state = 280}, - [4954] = {.lex_state = 286}, - [4955] = {.lex_state = 338}, - [4956] = {.lex_state = 301}, - [4957] = {.lex_state = 286}, - [4958] = {.lex_state = 290}, - [4959] = {.lex_state = 270}, - [4960] = {.lex_state = 290}, + [4874] = {.lex_state = 290}, + [4875] = {.lex_state = 271}, + [4876] = {.lex_state = 285}, + [4877] = {.lex_state = 290}, + [4878] = {.lex_state = 285}, + [4879] = {.lex_state = 285}, + [4880] = {.lex_state = 335}, + [4881] = {.lex_state = 301}, + [4882] = {.lex_state = 285}, + [4883] = {.lex_state = 340}, + [4884] = {.lex_state = 335}, + [4885] = {.lex_state = 335}, + [4886] = {.lex_state = 285}, + [4887] = {.lex_state = 335}, + [4888] = {.lex_state = 285}, + [4889] = {.lex_state = 280}, + [4890] = {.lex_state = 290}, + [4891] = {.lex_state = 285}, + [4892] = {.lex_state = 290}, + [4893] = {.lex_state = 285}, + [4894] = {.lex_state = 290}, + [4895] = {.lex_state = 289}, + [4896] = {.lex_state = 285}, + [4897] = {.lex_state = 285}, + [4898] = {.lex_state = 285}, + [4899] = {.lex_state = 285}, + [4900] = {.lex_state = 285}, + [4901] = {.lex_state = 285}, + [4902] = {.lex_state = 335}, + [4903] = {.lex_state = 285}, + [4904] = {.lex_state = 285}, + [4905] = {.lex_state = 234}, + [4906] = {.lex_state = 277}, + [4907] = {.lex_state = 285}, + [4908] = {.lex_state = 335}, + [4909] = {.lex_state = 290}, + [4910] = {.lex_state = 289}, + [4911] = {.lex_state = 290}, + [4912] = {.lex_state = 335}, + [4913] = {.lex_state = 285}, + [4914] = {.lex_state = 290}, + [4915] = {.lex_state = 285}, + [4916] = {.lex_state = 290}, + [4917] = {.lex_state = 285}, + [4918] = {.lex_state = 285}, + [4919] = {.lex_state = 285}, + [4920] = {.lex_state = 290}, + [4921] = {.lex_state = 285}, + [4922] = {.lex_state = 285}, + [4923] = {.lex_state = 285}, + [4924] = {.lex_state = 285}, + [4925] = {.lex_state = 285}, + [4926] = {.lex_state = 335}, + [4927] = {.lex_state = 290}, + [4928] = {.lex_state = 285}, + [4929] = {.lex_state = 290}, + [4930] = {.lex_state = 285}, + [4931] = {.lex_state = 301}, + [4932] = {.lex_state = 335}, + [4933] = {.lex_state = 270}, + [4934] = {.lex_state = 290}, + [4935] = {.lex_state = 335}, + [4936] = {.lex_state = 290}, + [4937] = {.lex_state = 290}, + [4938] = {.lex_state = 270}, + [4939] = {.lex_state = 285}, + [4940] = {.lex_state = 285}, + [4941] = {.lex_state = 285}, + [4942] = {.lex_state = 285}, + [4943] = {.lex_state = 266}, + [4944] = {.lex_state = 285}, + [4945] = {.lex_state = 285}, + [4946] = {.lex_state = 290}, + [4947] = {.lex_state = 285}, + [4948] = {.lex_state = 335}, + [4949] = {.lex_state = 285}, + [4950] = {.lex_state = 285}, + [4951] = {.lex_state = 335}, + [4952] = {.lex_state = 285}, + [4953] = {.lex_state = 290}, + [4954] = {.lex_state = 285}, + [4955] = {.lex_state = 270}, + [4956] = {.lex_state = 285}, + [4957] = {.lex_state = 285}, + [4958] = {.lex_state = 285}, + [4959] = {.lex_state = 285}, + [4960] = {.lex_state = 285}, [4961] = {.lex_state = 290}, - [4962] = {.lex_state = 290}, - [4963] = {.lex_state = 290}, - [4964] = {.lex_state = 301}, - [4965] = {.lex_state = 301}, - [4966] = {.lex_state = 270}, - [4967] = {.lex_state = 270}, - [4968] = {.lex_state = 290}, - [4969] = {.lex_state = 317}, - [4970] = {.lex_state = 301}, - [4971] = {.lex_state = 301}, - [4972] = {.lex_state = 290}, - [4973] = {.lex_state = 290}, - [4974] = {.lex_state = 270}, + [4962] = {.lex_state = 234}, + [4963] = {.lex_state = 266}, + [4964] = {.lex_state = 285}, + [4965] = {.lex_state = 290}, + [4966] = {.lex_state = 285}, + [4967] = {.lex_state = 297}, + [4968] = {.lex_state = 335}, + [4969] = {.lex_state = 335}, + [4970] = {.lex_state = 297}, + [4971] = {.lex_state = 285}, + [4972] = {.lex_state = 297}, + [4973] = {.lex_state = 271}, + [4974] = {.lex_state = 290}, [4975] = {.lex_state = 270}, - [4976] = {.lex_state = 290}, - [4977] = {.lex_state = 281}, - [4978] = {.lex_state = 301}, - [4979] = {.lex_state = 247}, - [4980] = {.lex_state = 301}, - [4981] = {.lex_state = 301}, - [4982] = {.lex_state = 301}, - [4983] = {.lex_state = 270}, - [4984] = {.lex_state = 301}, - [4985] = {.lex_state = 317}, - [4986] = {.lex_state = 270}, - [4987] = {.lex_state = 290}, - [4988] = {.lex_state = 270}, - [4989] = {.lex_state = 270}, - [4990] = {.lex_state = 270}, - [4991] = {.lex_state = 296}, - [4992] = {.lex_state = 290}, - [4993] = {.lex_state = 301}, - [4994] = {.lex_state = 301}, + [4976] = {.lex_state = 285}, + [4977] = {.lex_state = 297}, + [4978] = {.lex_state = 335}, + [4979] = {.lex_state = 290}, + [4980] = {.lex_state = 290}, + [4981] = {.lex_state = 297}, + [4982] = {.lex_state = 290}, + [4983] = {.lex_state = 297}, + [4984] = {.lex_state = 335}, + [4985] = {.lex_state = 290}, + [4986] = {.lex_state = 297}, + [4987] = {.lex_state = 335}, + [4988] = {.lex_state = 319}, + [4989] = {.lex_state = 290}, + [4990] = {.lex_state = 285}, + [4991] = {.lex_state = 335}, + [4992] = {.lex_state = 285}, + [4993] = {.lex_state = 335}, + [4994] = {.lex_state = 285}, [4995] = {.lex_state = 270}, - [4996] = {.lex_state = 270}, - [4997] = {.lex_state = 270}, - [4998] = {.lex_state = 270}, - [4999] = {.lex_state = 270}, - [5000] = {.lex_state = 270}, - [5001] = {.lex_state = 290}, - [5002] = {.lex_state = 270}, - [5003] = {.lex_state = 270}, + [4996] = {.lex_state = 271}, + [4997] = {.lex_state = 266}, + [4998] = {.lex_state = 290}, + [4999] = {.lex_state = 290}, + [5000] = {.lex_state = 335}, + [5001] = {.lex_state = 271}, + [5002] = {.lex_state = 271}, + [5003] = {.lex_state = 335}, [5004] = {.lex_state = 289}, - [5005] = {.lex_state = 270}, - [5006] = {.lex_state = 301}, - [5007] = {.lex_state = 286}, - [5008] = {.lex_state = 270}, - [5009] = {.lex_state = 290}, - [5010] = {.lex_state = 281}, - [5011] = {.lex_state = 290}, - [5012] = {.lex_state = 274}, - [5013] = {.lex_state = 280}, - [5014] = {.lex_state = 301}, - [5015] = {.lex_state = 290}, - [5016] = {.lex_state = 298}, - [5017] = {.lex_state = 271}, - [5018] = {.lex_state = 301}, - [5019] = {.lex_state = 286}, + [5005] = {.lex_state = 285}, + [5006] = {.lex_state = 290}, + [5007] = {.lex_state = 285}, + [5008] = {.lex_state = 285}, + [5009] = {.lex_state = 285}, + [5010] = {.lex_state = 285}, + [5011] = {.lex_state = 285}, + [5012] = {.lex_state = 285}, + [5013] = {.lex_state = 285}, + [5014] = {.lex_state = 285}, + [5015] = {.lex_state = 285}, + [5016] = {.lex_state = 285}, + [5017] = {.lex_state = 285}, + [5018] = {.lex_state = 271}, + [5019] = {.lex_state = 285}, [5020] = {.lex_state = 290}, - [5021] = {.lex_state = 301}, - [5022] = {.lex_state = 301}, - [5023] = {.lex_state = 301}, - [5024] = {.lex_state = 290}, - [5025] = {.lex_state = 270}, - [5026] = {.lex_state = 270}, - [5027] = {.lex_state = 286}, - [5028] = {.lex_state = 270}, - [5029] = {.lex_state = 290}, - [5030] = {.lex_state = 315}, - [5031] = {.lex_state = 286}, - [5032] = {.lex_state = 270}, - [5033] = {.lex_state = 301}, - [5034] = {.lex_state = 290}, - [5035] = {.lex_state = 290}, - [5036] = {.lex_state = 281}, - [5037] = {.lex_state = 290}, - [5038] = {.lex_state = 290}, + [5021] = {.lex_state = 277}, + [5022] = {.lex_state = 298}, + [5023] = {.lex_state = 285}, + [5024] = {.lex_state = 269}, + [5025] = {.lex_state = 271}, + [5026] = {.lex_state = 298}, + [5027] = {.lex_state = 335}, + [5028] = {.lex_state = 271}, + [5029] = {.lex_state = 280}, + [5030] = {.lex_state = 280}, + [5031] = {.lex_state = 269}, + [5032] = {.lex_state = 285}, + [5033] = {.lex_state = 247}, + [5034] = {.lex_state = 280}, + [5035] = {.lex_state = 280}, + [5036] = {.lex_state = 338}, + [5037] = {.lex_state = 338}, + [5038] = {.lex_state = 338}, [5039] = {.lex_state = 338}, - [5040] = {.lex_state = 290}, - [5041] = {.lex_state = 290}, - [5042] = {.lex_state = 289}, - [5043] = {.lex_state = 338}, - [5044] = {.lex_state = 335}, + [5040] = {.lex_state = 285}, + [5041] = {.lex_state = 338}, + [5042] = {.lex_state = 301}, + [5043] = {.lex_state = 270}, + [5044] = {.lex_state = 290}, [5045] = {.lex_state = 301}, - [5046] = {.lex_state = 338}, + [5046] = {.lex_state = 269}, [5047] = {.lex_state = 301}, - [5048] = {.lex_state = 286}, - [5049] = {.lex_state = 290}, + [5048] = {.lex_state = 285}, + [5049] = {.lex_state = 301}, [5050] = {.lex_state = 290}, [5051] = {.lex_state = 290}, - [5052] = {.lex_state = 290}, - [5053] = {.lex_state = 290}, - [5054] = {.lex_state = 290}, - [5055] = {.lex_state = 338}, - [5056] = {.lex_state = 247}, - [5057] = {.lex_state = 301}, - [5058] = {.lex_state = 290}, - [5059] = {.lex_state = 286}, - [5060] = {.lex_state = 270}, - [5061] = {.lex_state = 290}, - [5062] = {.lex_state = 281}, - [5063] = {.lex_state = 301}, - [5064] = {.lex_state = 272}, - [5065] = {.lex_state = 290}, - [5066] = {.lex_state = 270}, - [5067] = {.lex_state = 270}, - [5068] = {.lex_state = 301}, - [5069] = {.lex_state = 281}, - [5070] = {.lex_state = 290}, - [5071] = {.lex_state = 290}, - [5072] = {.lex_state = 301}, - [5073] = {.lex_state = 281}, + [5052] = {.lex_state = 269}, + [5053] = {.lex_state = 301}, + [5054] = {.lex_state = 301}, + [5055] = {.lex_state = 266}, + [5056] = {.lex_state = 301}, + [5057] = {.lex_state = 269}, + [5058] = {.lex_state = 280}, + [5059] = {.lex_state = 338}, + [5060] = {.lex_state = 338}, + [5061] = {.lex_state = 280}, + [5062] = {.lex_state = 285}, + [5063] = {.lex_state = 269}, + [5064] = {.lex_state = 301}, + [5065] = {.lex_state = 269}, + [5066] = {.lex_state = 301}, + [5067] = {.lex_state = 298}, + [5068] = {.lex_state = 338}, + [5069] = {.lex_state = 279}, + [5070] = {.lex_state = 301}, + [5071] = {.lex_state = 301}, + [5072] = {.lex_state = 315}, + [5073] = {.lex_state = 290}, [5074] = {.lex_state = 301}, - [5075] = {.lex_state = 301}, - [5076] = {.lex_state = 281}, - [5077] = {.lex_state = 274}, - [5078] = {.lex_state = 247}, - [5079] = {.lex_state = 286}, - [5080] = {.lex_state = 281}, - [5081] = {.lex_state = 270}, - [5082] = {.lex_state = 301}, - [5083] = {.lex_state = 286}, - [5084] = {.lex_state = 270}, - [5085] = {.lex_state = 338}, - [5086] = {.lex_state = 290}, - [5087] = {.lex_state = 301}, - [5088] = {.lex_state = 301}, - [5089] = {.lex_state = 286}, - [5090] = {.lex_state = 290}, - [5091] = {.lex_state = 290}, - [5092] = {.lex_state = 301}, - [5093] = {.lex_state = 270}, + [5075] = {.lex_state = 280}, + [5076] = {.lex_state = 290}, + [5077] = {.lex_state = 247}, + [5078] = {.lex_state = 269}, + [5079] = {.lex_state = 269}, + [5080] = {.lex_state = 290}, + [5081] = {.lex_state = 338}, + [5082] = {.lex_state = 338}, + [5083] = {.lex_state = 280}, + [5084] = {.lex_state = 269}, + [5085] = {.lex_state = 269}, + [5086] = {.lex_state = 271}, + [5087] = {.lex_state = 285}, + [5088] = {.lex_state = 279}, + [5089] = {.lex_state = 290}, + [5090] = {.lex_state = 301}, + [5091] = {.lex_state = 301}, + [5092] = {.lex_state = 280}, + [5093] = {.lex_state = 290}, [5094] = {.lex_state = 290}, - [5095] = {.lex_state = 270}, - [5096] = {.lex_state = 286}, - [5097] = {.lex_state = 301}, - [5098] = {.lex_state = 270}, - [5099] = {.lex_state = 270}, - [5100] = {.lex_state = 338}, - [5101] = {.lex_state = 338}, + [5095] = {.lex_state = 290}, + [5096] = {.lex_state = 290}, + [5097] = {.lex_state = 290}, + [5098] = {.lex_state = 290}, + [5099] = {.lex_state = 290}, + [5100] = {.lex_state = 290}, + [5101] = {.lex_state = 290}, [5102] = {.lex_state = 290}, - [5103] = {.lex_state = 286}, + [5103] = {.lex_state = 338}, [5104] = {.lex_state = 290}, - [5105] = {.lex_state = 290}, - [5106] = {.lex_state = 286}, - [5107] = {.lex_state = 270}, - [5108] = {.lex_state = 301}, - [5109] = {.lex_state = 338}, - [5110] = {.lex_state = 338}, - [5111] = {.lex_state = 270}, - [5112] = {.lex_state = 338}, - [5113] = {.lex_state = 290}, - [5114] = {.lex_state = 301}, - [5115] = {.lex_state = 270}, - [5116] = {.lex_state = 338}, - [5117] = {.lex_state = 270}, - [5118] = {.lex_state = 301}, + [5105] = {.lex_state = 269}, + [5106] = {.lex_state = 280}, + [5107] = {.lex_state = 290}, + [5108] = {.lex_state = 247}, + [5109] = {.lex_state = 290}, + [5110] = {.lex_state = 269}, + [5111] = {.lex_state = 269}, + [5112] = {.lex_state = 271}, + [5113] = {.lex_state = 269}, + [5114] = {.lex_state = 269}, + [5115] = {.lex_state = 269}, + [5116] = {.lex_state = 266}, + [5117] = {.lex_state = 290}, + [5118] = {.lex_state = 285}, [5119] = {.lex_state = 290}, - [5120] = {.lex_state = 338}, - [5121] = {.lex_state = 270}, - [5122] = {.lex_state = 286}, - [5123] = {.lex_state = 281}, - [5124] = {.lex_state = 301}, - [5125] = {.lex_state = 267}, - [5126] = {.lex_state = 338}, - [5127] = {.lex_state = 286}, - [5128] = {.lex_state = 290}, - [5129] = {.lex_state = 281}, - [5130] = {.lex_state = 270}, - [5131] = {.lex_state = 270}, - [5132] = {.lex_state = 281}, - [5133] = {.lex_state = 270}, - [5134] = {.lex_state = 286}, - [5135] = {.lex_state = 301}, - [5136] = {.lex_state = 286}, - [5137] = {.lex_state = 290}, - [5138] = {.lex_state = 290}, - [5139] = {.lex_state = 267}, - [5140] = {.lex_state = 286}, - [5141] = {.lex_state = 338}, - [5142] = {.lex_state = 270}, - [5143] = {.lex_state = 286}, - [5144] = {.lex_state = 301}, - [5145] = {.lex_state = 286}, + [5120] = {.lex_state = 289}, + [5121] = {.lex_state = 269}, + [5122] = {.lex_state = 269}, + [5123] = {.lex_state = 269}, + [5124] = {.lex_state = 269}, + [5125] = {.lex_state = 269}, + [5126] = {.lex_state = 269}, + [5127] = {.lex_state = 269}, + [5128] = {.lex_state = 269}, + [5129] = {.lex_state = 269}, + [5130] = {.lex_state = 273}, + [5131] = {.lex_state = 290}, + [5132] = {.lex_state = 280}, + [5133] = {.lex_state = 285}, + [5134] = {.lex_state = 269}, + [5135] = {.lex_state = 290}, + [5136] = {.lex_state = 290}, + [5137] = {.lex_state = 269}, + [5138] = {.lex_state = 269}, + [5139] = {.lex_state = 269}, + [5140] = {.lex_state = 296}, + [5141] = {.lex_state = 301}, + [5142] = {.lex_state = 269}, + [5143] = {.lex_state = 269}, + [5144] = {.lex_state = 285}, + [5145] = {.lex_state = 269}, [5146] = {.lex_state = 301}, - [5147] = {.lex_state = 286}, - [5148] = {.lex_state = 270}, - [5149] = {.lex_state = 270}, - [5150] = {.lex_state = 286}, - [5151] = {.lex_state = 267}, - [5152] = {.lex_state = 281}, - [5153] = {.lex_state = 270}, - [5154] = {.lex_state = 301}, - [5155] = {.lex_state = 286}, - [5156] = {.lex_state = 290}, - [5157] = {.lex_state = 301}, - [5158] = {.lex_state = 286}, - [5159] = {.lex_state = 270}, - [5160] = {.lex_state = 281}, - [5161] = {.lex_state = 272}, - [5162] = {.lex_state = 290}, - [5163] = {.lex_state = 270}, - [5164] = {.lex_state = 281}, - [5165] = {.lex_state = 281}, - [5166] = {.lex_state = 340}, - [5167] = {.lex_state = 335}, - [5168] = {.lex_state = 335}, - [5169] = {.lex_state = 335}, - [5170] = {.lex_state = 333}, - [5171] = {.lex_state = 270}, + [5147] = {.lex_state = 280}, + [5148] = {.lex_state = 338}, + [5149] = {.lex_state = 338}, + [5150] = {.lex_state = 338}, + [5151] = {.lex_state = 290}, + [5152] = {.lex_state = 290}, + [5153] = {.lex_state = 338}, + [5154] = {.lex_state = 273}, + [5155] = {.lex_state = 269}, + [5156] = {.lex_state = 269}, + [5157] = {.lex_state = 335}, + [5158] = {.lex_state = 301}, + [5159] = {.lex_state = 301}, + [5160] = {.lex_state = 285}, + [5161] = {.lex_state = 269}, + [5162] = {.lex_state = 269}, + [5163] = {.lex_state = 269}, + [5164] = {.lex_state = 269}, + [5165] = {.lex_state = 269}, + [5166] = {.lex_state = 301}, + [5167] = {.lex_state = 285}, + [5168] = {.lex_state = 285}, + [5169] = {.lex_state = 269}, + [5170] = {.lex_state = 269}, + [5171] = {.lex_state = 290}, [5172] = {.lex_state = 290}, - [5173] = {.lex_state = 270}, - [5174] = {.lex_state = 333}, - [5175] = {.lex_state = 270}, + [5173] = {.lex_state = 301}, + [5174] = {.lex_state = 269}, + [5175] = {.lex_state = 301}, [5176] = {.lex_state = 301}, - [5177] = {.lex_state = 289}, - [5178] = {.lex_state = 301}, - [5179] = {.lex_state = 247}, - [5180] = {.lex_state = 301}, - [5181] = {.lex_state = 293}, - [5182] = {.lex_state = 289}, - [5183] = {.lex_state = 289}, - [5184] = {.lex_state = 289}, - [5185] = {.lex_state = 317}, - [5186] = {.lex_state = 301}, - [5187] = {.lex_state = 301}, - [5188] = {.lex_state = 290}, - [5189] = {.lex_state = 301}, - [5190] = {.lex_state = 289}, - [5191] = {.lex_state = 301}, - [5192] = {.lex_state = 301}, - [5193] = {.lex_state = 267}, + [5177] = {.lex_state = 285}, + [5178] = {.lex_state = 280}, + [5179] = {.lex_state = 285}, + [5180] = {.lex_state = 269}, + [5181] = {.lex_state = 280}, + [5182] = {.lex_state = 285}, + [5183] = {.lex_state = 301}, + [5184] = {.lex_state = 301}, + [5185] = {.lex_state = 285}, + [5186] = {.lex_state = 290}, + [5187] = {.lex_state = 285}, + [5188] = {.lex_state = 285}, + [5189] = {.lex_state = 285}, + [5190] = {.lex_state = 285}, + [5191] = {.lex_state = 285}, + [5192] = {.lex_state = 285}, + [5193] = {.lex_state = 301}, [5194] = {.lex_state = 301}, - [5195] = {.lex_state = 267}, - [5196] = {.lex_state = 267}, - [5197] = {.lex_state = 281}, - [5198] = {.lex_state = 290}, - [5199] = {.lex_state = 270}, - [5200] = {.lex_state = 333}, - [5201] = {.lex_state = 290}, - [5202] = {.lex_state = 281}, - [5203] = {.lex_state = 333}, - [5204] = {.lex_state = 289}, - [5205] = {.lex_state = 335}, - [5206] = {.lex_state = 290}, - [5207] = {.lex_state = 335}, - [5208] = {.lex_state = 335}, - [5209] = {.lex_state = 270}, - [5210] = {.lex_state = 289}, - [5211] = {.lex_state = 289}, - [5212] = {.lex_state = 333}, - [5213] = {.lex_state = 301}, - [5214] = {.lex_state = 281}, - [5215] = {.lex_state = 289}, - [5216] = {.lex_state = 317}, - [5217] = {.lex_state = 289}, - [5218] = {.lex_state = 270}, - [5219] = {.lex_state = 290}, - [5220] = {.lex_state = 301}, - [5221] = {.lex_state = 280}, - [5222] = {.lex_state = 270}, - [5223] = {.lex_state = 270}, - [5224] = {.lex_state = 333}, - [5225] = {.lex_state = 333}, - [5226] = {.lex_state = 290}, - [5227] = {.lex_state = 301}, - [5228] = {.lex_state = 333}, - [5229] = {.lex_state = 281}, - [5230] = {.lex_state = 281}, - [5231] = {.lex_state = 338}, - [5232] = {.lex_state = 270}, - [5233] = {.lex_state = 290}, - [5234] = {.lex_state = 293}, - [5235] = {.lex_state = 333}, + [5195] = {.lex_state = 285}, + [5196] = {.lex_state = 285}, + [5197] = {.lex_state = 301}, + [5198] = {.lex_state = 285}, + [5199] = {.lex_state = 285}, + [5200] = {.lex_state = 285}, + [5201] = {.lex_state = 285}, + [5202] = {.lex_state = 285}, + [5203] = {.lex_state = 285}, + [5204] = {.lex_state = 285}, + [5205] = {.lex_state = 285}, + [5206] = {.lex_state = 285}, + [5207] = {.lex_state = 285}, + [5208] = {.lex_state = 285}, + [5209] = {.lex_state = 285}, + [5210] = {.lex_state = 290}, + [5211] = {.lex_state = 285}, + [5212] = {.lex_state = 290}, + [5213] = {.lex_state = 335}, + [5214] = {.lex_state = 290}, + [5215] = {.lex_state = 290}, + [5216] = {.lex_state = 301}, + [5217] = {.lex_state = 290}, + [5218] = {.lex_state = 301}, + [5219] = {.lex_state = 301}, + [5220] = {.lex_state = 266}, + [5221] = {.lex_state = 301}, + [5222] = {.lex_state = 316}, + [5223] = {.lex_state = 280}, + [5224] = {.lex_state = 301}, + [5225] = {.lex_state = 301}, + [5226] = {.lex_state = 301}, + [5227] = {.lex_state = 316}, + [5228] = {.lex_state = 301}, + [5229] = {.lex_state = 301}, + [5230] = {.lex_state = 277}, + [5231] = {.lex_state = 285}, + [5232] = {.lex_state = 285}, + [5233] = {.lex_state = 269}, + [5234] = {.lex_state = 301}, + [5235] = {.lex_state = 289}, [5236] = {.lex_state = 290}, - [5237] = {.lex_state = 267}, - [5238] = {.lex_state = 247}, - [5239] = {.lex_state = 333}, - [5240] = {.lex_state = 270}, - [5241] = {.lex_state = 290}, - [5242] = {.lex_state = 281}, - [5243] = {.lex_state = 270}, - [5244] = {.lex_state = 272}, - [5245] = {.lex_state = 270}, - [5246] = {.lex_state = 270}, - [5247] = {.lex_state = 270}, - [5248] = {.lex_state = 270}, - [5249] = {.lex_state = 333}, + [5237] = {.lex_state = 290}, + [5238] = {.lex_state = 285}, + [5239] = {.lex_state = 285}, + [5240] = {.lex_state = 269}, + [5241] = {.lex_state = 304}, + [5242] = {.lex_state = 290}, + [5243] = {.lex_state = 290}, + [5244] = {.lex_state = 290}, + [5245] = {.lex_state = 280}, + [5246] = {.lex_state = 290}, + [5247] = {.lex_state = 290}, + [5248] = {.lex_state = 290}, + [5249] = {.lex_state = 269}, [5250] = {.lex_state = 290}, - [5251] = {.lex_state = 270}, - [5252] = {.lex_state = 333}, - [5253] = {.lex_state = 270}, - [5254] = {.lex_state = 270}, - [5255] = {.lex_state = 289}, - [5256] = {.lex_state = 280}, + [5251] = {.lex_state = 301}, + [5252] = {.lex_state = 301}, + [5253] = {.lex_state = 290}, + [5254] = {.lex_state = 290}, + [5255] = {.lex_state = 290}, + [5256] = {.lex_state = 290}, [5257] = {.lex_state = 301}, - [5258] = {.lex_state = 281}, - [5259] = {.lex_state = 279}, - [5260] = {.lex_state = 267}, - [5261] = {.lex_state = 333}, - [5262] = {.lex_state = 290}, - [5263] = {.lex_state = 340}, - [5264] = {.lex_state = 340}, - [5265] = {.lex_state = 333}, - [5266] = {.lex_state = 290}, - [5267] = {.lex_state = 270}, - [5268] = {.lex_state = 267}, - [5269] = {.lex_state = 290}, - [5270] = {.lex_state = 270}, - [5271] = {.lex_state = 281}, - [5272] = {.lex_state = 290}, - [5273] = {.lex_state = 281}, - [5274] = {.lex_state = 281}, - [5275] = {.lex_state = 281}, - [5276] = {.lex_state = 289}, - [5277] = {.lex_state = 290}, - [5278] = {.lex_state = 289}, - [5279] = {.lex_state = 333}, - [5280] = {.lex_state = 289}, - [5281] = {.lex_state = 289}, - [5282] = {.lex_state = 289}, - [5283] = {.lex_state = 333}, - [5284] = {.lex_state = 289}, - [5285] = {.lex_state = 290}, - [5286] = {.lex_state = 290}, - [5287] = {.lex_state = 301}, - [5288] = {.lex_state = 270}, - [5289] = {.lex_state = 301}, - [5290] = {.lex_state = 247}, - [5291] = {.lex_state = 333}, - [5292] = {.lex_state = 290}, - [5293] = {.lex_state = 289}, - [5294] = {.lex_state = 289}, - [5295] = {.lex_state = 290}, - [5296] = {.lex_state = 333}, - [5297] = {.lex_state = 281}, - [5298] = {.lex_state = 338}, - [5299] = {.lex_state = 335}, - [5300] = {.lex_state = 333}, - [5301] = {.lex_state = 301}, + [5258] = {.lex_state = 301}, + [5259] = {.lex_state = 280}, + [5260] = {.lex_state = 301}, + [5261] = {.lex_state = 290}, + [5262] = {.lex_state = 301}, + [5263] = {.lex_state = 301}, + [5264] = {.lex_state = 301}, + [5265] = {.lex_state = 301}, + [5266] = {.lex_state = 271}, + [5267] = {.lex_state = 280}, + [5268] = {.lex_state = 301}, + [5269] = {.lex_state = 334}, + [5270] = {.lex_state = 269}, + [5271] = {.lex_state = 290}, + [5272] = {.lex_state = 247}, + [5273] = {.lex_state = 280}, + [5274] = {.lex_state = 271}, + [5275] = {.lex_state = 334}, + [5276] = {.lex_state = 269}, + [5277] = {.lex_state = 269}, + [5278] = {.lex_state = 280}, + [5279] = {.lex_state = 338}, + [5280] = {.lex_state = 290}, + [5281] = {.lex_state = 280}, + [5282] = {.lex_state = 280}, + [5283] = {.lex_state = 269}, + [5284] = {.lex_state = 290}, + [5285] = {.lex_state = 269}, + [5286] = {.lex_state = 266}, + [5287] = {.lex_state = 293}, + [5288] = {.lex_state = 266}, + [5289] = {.lex_state = 269}, + [5290] = {.lex_state = 266}, + [5291] = {.lex_state = 290}, + [5292] = {.lex_state = 334}, + [5293] = {.lex_state = 295}, + [5294] = {.lex_state = 290}, + [5295] = {.lex_state = 334}, + [5296] = {.lex_state = 301}, + [5297] = {.lex_state = 334}, + [5298] = {.lex_state = 290}, + [5299] = {.lex_state = 269}, + [5300] = {.lex_state = 280}, + [5301] = {.lex_state = 269}, [5302] = {.lex_state = 301}, - [5303] = {.lex_state = 270}, - [5304] = {.lex_state = 281}, - [5305] = {.lex_state = 281}, - [5306] = {.lex_state = 272}, - [5307] = {.lex_state = 272}, - [5308] = {.lex_state = 272}, - [5309] = {.lex_state = 272}, - [5310] = {.lex_state = 272}, - [5311] = {.lex_state = 272}, - [5312] = {.lex_state = 272}, - [5313] = {.lex_state = 272}, - [5314] = {.lex_state = 272}, - [5315] = {.lex_state = 272}, - [5316] = {.lex_state = 272}, - [5317] = {.lex_state = 272}, - [5318] = {.lex_state = 272}, - [5319] = {.lex_state = 272}, - [5320] = {.lex_state = 272}, + [5303] = {.lex_state = 269}, + [5304] = {.lex_state = 334}, + [5305] = {.lex_state = 269}, + [5306] = {.lex_state = 290}, + [5307] = {.lex_state = 290}, + [5308] = {.lex_state = 290}, + [5309] = {.lex_state = 290}, + [5310] = {.lex_state = 316}, + [5311] = {.lex_state = 289}, + [5312] = {.lex_state = 301}, + [5313] = {.lex_state = 279}, + [5314] = {.lex_state = 290}, + [5315] = {.lex_state = 301}, + [5316] = {.lex_state = 334}, + [5317] = {.lex_state = 290}, + [5318] = {.lex_state = 269}, + [5319] = {.lex_state = 334}, + [5320] = {.lex_state = 280}, [5321] = {.lex_state = 301}, - [5322] = {.lex_state = 272}, - [5323] = {.lex_state = 272}, - [5324] = {.lex_state = 272}, - [5325] = {.lex_state = 272}, - [5326] = {.lex_state = 290}, - [5327] = {.lex_state = 295}, - [5328] = {.lex_state = 281}, - [5329] = {.lex_state = 281}, - [5330] = {.lex_state = 281}, - [5331] = {.lex_state = 281}, - [5332] = {.lex_state = 281}, - [5333] = {.lex_state = 289}, - [5334] = {.lex_state = 301}, - [5335] = {.lex_state = 301}, - [5336] = {.lex_state = 270}, - [5337] = {.lex_state = 270}, - [5338] = {.lex_state = 301}, + [5322] = {.lex_state = 269}, + [5323] = {.lex_state = 301}, + [5324] = {.lex_state = 247}, + [5325] = {.lex_state = 301}, + [5326] = {.lex_state = 289}, + [5327] = {.lex_state = 316}, + [5328] = {.lex_state = 269}, + [5329] = {.lex_state = 334}, + [5330] = {.lex_state = 301}, + [5331] = {.lex_state = 301}, + [5332] = {.lex_state = 301}, + [5333] = {.lex_state = 290}, + [5334] = {.lex_state = 340}, + [5335] = {.lex_state = 280}, + [5336] = {.lex_state = 290}, + [5337] = {.lex_state = 334}, + [5338] = {.lex_state = 289}, [5339] = {.lex_state = 301}, - [5340] = {.lex_state = 301}, + [5340] = {.lex_state = 279}, [5341] = {.lex_state = 301}, - [5342] = {.lex_state = 270}, + [5342] = {.lex_state = 301}, [5343] = {.lex_state = 301}, - [5344] = {.lex_state = 301}, - [5345] = {.lex_state = 301}, - [5346] = {.lex_state = 301}, - [5347] = {.lex_state = 301}, - [5348] = {.lex_state = 333}, - [5349] = {.lex_state = 335}, - [5350] = {.lex_state = 270}, - [5351] = {.lex_state = 290}, - [5352] = {.lex_state = 290}, - [5353] = {.lex_state = 338}, - [5354] = {.lex_state = 301}, + [5344] = {.lex_state = 334}, + [5345] = {.lex_state = 334}, + [5346] = {.lex_state = 290}, + [5347] = {.lex_state = 280}, + [5348] = {.lex_state = 280}, + [5349] = {.lex_state = 269}, + [5350] = {.lex_state = 334}, + [5351] = {.lex_state = 269}, + [5352] = {.lex_state = 280}, + [5353] = {.lex_state = 269}, + [5354] = {.lex_state = 290}, [5355] = {.lex_state = 289}, - [5356] = {.lex_state = 289}, - [5357] = {.lex_state = 289}, - [5358] = {.lex_state = 290}, - [5359] = {.lex_state = 333}, - [5360] = {.lex_state = 301}, - [5361] = {.lex_state = 270}, + [5356] = {.lex_state = 301}, + [5357] = {.lex_state = 290}, + [5358] = {.lex_state = 247}, + [5359] = {.lex_state = 280}, + [5360] = {.lex_state = 289}, + [5361] = {.lex_state = 290}, [5362] = {.lex_state = 289}, - [5363] = {.lex_state = 301}, - [5364] = {.lex_state = 281}, - [5365] = {.lex_state = 281}, - [5366] = {.lex_state = 335}, - [5367] = {.lex_state = 270}, - [5368] = {.lex_state = 270}, - [5369] = {.lex_state = 333}, - [5370] = {.lex_state = 270}, - [5371] = {.lex_state = 281}, - [5372] = {.lex_state = 333}, - [5373] = {.lex_state = 281}, - [5374] = {.lex_state = 335}, - [5375] = {.lex_state = 333}, - [5376] = {.lex_state = 301}, - [5377] = {.lex_state = 270}, - [5378] = {.lex_state = 333}, - [5379] = {.lex_state = 290}, - [5380] = {.lex_state = 270}, - [5381] = {.lex_state = 281}, - [5382] = {.lex_state = 301}, - [5383] = {.lex_state = 338}, - [5384] = {.lex_state = 335}, - [5385] = {.lex_state = 270}, - [5386] = {.lex_state = 335}, - [5387] = {.lex_state = 281}, - [5388] = {.lex_state = 272}, - [5389] = {.lex_state = 272}, - [5390] = {.lex_state = 272}, - [5391] = {.lex_state = 272}, - [5392] = {.lex_state = 272}, - [5393] = {.lex_state = 272}, - [5394] = {.lex_state = 272}, - [5395] = {.lex_state = 272}, - [5396] = {.lex_state = 272}, - [5397] = {.lex_state = 272}, - [5398] = {.lex_state = 272}, - [5399] = {.lex_state = 272}, - [5400] = {.lex_state = 272}, - [5401] = {.lex_state = 272}, - [5402] = {.lex_state = 272}, - [5403] = {.lex_state = 272}, - [5404] = {.lex_state = 272}, - [5405] = {.lex_state = 272}, - [5406] = {.lex_state = 272}, - [5407] = {.lex_state = 272}, - [5408] = {.lex_state = 301}, - [5409] = {.lex_state = 272}, - [5410] = {.lex_state = 272}, - [5411] = {.lex_state = 272}, - [5412] = {.lex_state = 272}, - [5413] = {.lex_state = 270}, - [5414] = {.lex_state = 270}, - [5415] = {.lex_state = 270}, - [5416] = {.lex_state = 301}, - [5417] = {.lex_state = 301}, - [5418] = {.lex_state = 270}, - [5419] = {.lex_state = 270}, - [5420] = {.lex_state = 272}, - [5421] = {.lex_state = 289}, - [5422] = {.lex_state = 333}, - [5423] = {.lex_state = 301}, + [5363] = {.lex_state = 289}, + [5364] = {.lex_state = 271}, + [5365] = {.lex_state = 340}, + [5366] = {.lex_state = 290}, + [5367] = {.lex_state = 269}, + [5368] = {.lex_state = 334}, + [5369] = {.lex_state = 289}, + [5370] = {.lex_state = 266}, + [5371] = {.lex_state = 289}, + [5372] = {.lex_state = 301}, + [5373] = {.lex_state = 269}, + [5374] = {.lex_state = 293}, + [5375] = {.lex_state = 269}, + [5376] = {.lex_state = 269}, + [5377] = {.lex_state = 334}, + [5378] = {.lex_state = 269}, + [5379] = {.lex_state = 269}, + [5380] = {.lex_state = 269}, + [5381] = {.lex_state = 269}, + [5382] = {.lex_state = 269}, + [5383] = {.lex_state = 269}, + [5384] = {.lex_state = 334}, + [5385] = {.lex_state = 290}, + [5386] = {.lex_state = 269}, + [5387] = {.lex_state = 335}, + [5388] = {.lex_state = 334}, + [5389] = {.lex_state = 290}, + [5390] = {.lex_state = 334}, + [5391] = {.lex_state = 335}, + [5392] = {.lex_state = 269}, + [5393] = {.lex_state = 271}, + [5394] = {.lex_state = 271}, + [5395] = {.lex_state = 271}, + [5396] = {.lex_state = 280}, + [5397] = {.lex_state = 271}, + [5398] = {.lex_state = 271}, + [5399] = {.lex_state = 290}, + [5400] = {.lex_state = 271}, + [5401] = {.lex_state = 271}, + [5402] = {.lex_state = 271}, + [5403] = {.lex_state = 271}, + [5404] = {.lex_state = 271}, + [5405] = {.lex_state = 271}, + [5406] = {.lex_state = 271}, + [5407] = {.lex_state = 271}, + [5408] = {.lex_state = 271}, + [5409] = {.lex_state = 289}, + [5410] = {.lex_state = 271}, + [5411] = {.lex_state = 271}, + [5412] = {.lex_state = 271}, + [5413] = {.lex_state = 271}, + [5414] = {.lex_state = 289}, + [5415] = {.lex_state = 280}, + [5416] = {.lex_state = 334}, + [5417] = {.lex_state = 280}, + [5418] = {.lex_state = 301}, + [5419] = {.lex_state = 301}, + [5420] = {.lex_state = 269}, + [5421] = {.lex_state = 269}, + [5422] = {.lex_state = 269}, + [5423] = {.lex_state = 340}, [5424] = {.lex_state = 301}, - [5425] = {.lex_state = 270}, - [5426] = {.lex_state = 247}, - [5427] = {.lex_state = 340}, - [5428] = {.lex_state = 272}, - [5429] = {.lex_state = 270}, - [5430] = {.lex_state = 267}, - [5431] = {.lex_state = 290}, - [5432] = {.lex_state = 338}, - [5433] = {.lex_state = 290}, - [5434] = {.lex_state = 290}, - [5435] = {.lex_state = 267}, - [5436] = {.lex_state = 290}, - [5437] = {.lex_state = 272}, - [5438] = {.lex_state = 290}, - [5439] = {.lex_state = 290}, - [5440] = {.lex_state = 262}, - [5441] = {.lex_state = 280}, - [5442] = {.lex_state = 290}, - [5443] = {.lex_state = 290}, - [5444] = {.lex_state = 290}, - [5445] = {.lex_state = 290}, - [5446] = {.lex_state = 290}, - [5447] = {.lex_state = 301}, - [5448] = {.lex_state = 264}, - [5449] = {.lex_state = 290}, - [5450] = {.lex_state = 262}, - [5451] = {.lex_state = 301}, + [5425] = {.lex_state = 334}, + [5426] = {.lex_state = 290}, + [5427] = {.lex_state = 289}, + [5428] = {.lex_state = 301}, + [5429] = {.lex_state = 280}, + [5430] = {.lex_state = 280}, + [5431] = {.lex_state = 280}, + [5432] = {.lex_state = 301}, + [5433] = {.lex_state = 301}, + [5434] = {.lex_state = 334}, + [5435] = {.lex_state = 289}, + [5436] = {.lex_state = 289}, + [5437] = {.lex_state = 334}, + [5438] = {.lex_state = 266}, + [5439] = {.lex_state = 334}, + [5440] = {.lex_state = 290}, + [5441] = {.lex_state = 301}, + [5442] = {.lex_state = 269}, + [5443] = {.lex_state = 280}, + [5444] = {.lex_state = 280}, + [5445] = {.lex_state = 334}, + [5446] = {.lex_state = 289}, + [5447] = {.lex_state = 269}, + [5448] = {.lex_state = 289}, + [5449] = {.lex_state = 247}, + [5450] = {.lex_state = 334}, + [5451] = {.lex_state = 338}, [5452] = {.lex_state = 290}, - [5453] = {.lex_state = 290}, - [5454] = {.lex_state = 281}, - [5455] = {.lex_state = 290}, - [5456] = {.lex_state = 267}, - [5457] = {.lex_state = 290}, - [5458] = {.lex_state = 281}, - [5459] = {.lex_state = 290}, - [5460] = {.lex_state = 338}, - [5461] = {.lex_state = 290}, - [5462] = {.lex_state = 290}, - [5463] = {.lex_state = 290}, - [5464] = {.lex_state = 290}, - [5465] = {.lex_state = 290}, - [5466] = {.lex_state = 264}, - [5467] = {.lex_state = 290}, - [5468] = {.lex_state = 281}, - [5469] = {.lex_state = 290}, - [5470] = {.lex_state = 298}, - [5471] = {.lex_state = 298}, - [5472] = {.lex_state = 290}, - [5473] = {.lex_state = 290}, - [5474] = {.lex_state = 290}, - [5475] = {.lex_state = 290}, - [5476] = {.lex_state = 301}, - [5477] = {.lex_state = 262}, - [5478] = {.lex_state = 290}, - [5479] = {.lex_state = 290}, - [5480] = {.lex_state = 301}, - [5481] = {.lex_state = 290}, - [5482] = {.lex_state = 290}, - [5483] = {.lex_state = 301}, - [5484] = {.lex_state = 270}, - [5485] = {.lex_state = 298}, - [5486] = {.lex_state = 290}, - [5487] = {.lex_state = 290}, - [5488] = {.lex_state = 290}, - [5489] = {.lex_state = 290}, - [5490] = {.lex_state = 335}, - [5491] = {.lex_state = 290}, - [5492] = {.lex_state = 290}, - [5493] = {.lex_state = 290}, - [5494] = {.lex_state = 303}, - [5495] = {.lex_state = 338}, - [5496] = {.lex_state = 290}, - [5497] = {.lex_state = 301}, - [5498] = {.lex_state = 290}, - [5499] = {.lex_state = 290}, - [5500] = {.lex_state = 290}, - [5501] = {.lex_state = 267}, - [5502] = {.lex_state = 298}, - [5503] = {.lex_state = 290}, - [5504] = {.lex_state = 290}, - [5505] = {.lex_state = 247}, - [5506] = {.lex_state = 290}, - [5507] = {.lex_state = 290}, - [5508] = {.lex_state = 290}, - [5509] = {.lex_state = 290}, - [5510] = {.lex_state = 306}, - [5511] = {.lex_state = 298}, + [5453] = {.lex_state = 289}, + [5454] = {.lex_state = 335}, + [5455] = {.lex_state = 338}, + [5456] = {.lex_state = 289}, + [5457] = {.lex_state = 289}, + [5458] = {.lex_state = 335}, + [5459] = {.lex_state = 335}, + [5460] = {.lex_state = 280}, + [5461] = {.lex_state = 289}, + [5462] = {.lex_state = 269}, + [5463] = {.lex_state = 289}, + [5464] = {.lex_state = 335}, + [5465] = {.lex_state = 289}, + [5466] = {.lex_state = 280}, + [5467] = {.lex_state = 280}, + [5468] = {.lex_state = 335}, + [5469] = {.lex_state = 335}, + [5470] = {.lex_state = 290}, + [5471] = {.lex_state = 278}, + [5472] = {.lex_state = 340}, + [5473] = {.lex_state = 271}, + [5474] = {.lex_state = 271}, + [5475] = {.lex_state = 271}, + [5476] = {.lex_state = 271}, + [5477] = {.lex_state = 271}, + [5478] = {.lex_state = 271}, + [5479] = {.lex_state = 271}, + [5480] = {.lex_state = 271}, + [5481] = {.lex_state = 271}, + [5482] = {.lex_state = 271}, + [5483] = {.lex_state = 271}, + [5484] = {.lex_state = 271}, + [5485] = {.lex_state = 271}, + [5486] = {.lex_state = 271}, + [5487] = {.lex_state = 271}, + [5488] = {.lex_state = 271}, + [5489] = {.lex_state = 271}, + [5490] = {.lex_state = 271}, + [5491] = {.lex_state = 271}, + [5492] = {.lex_state = 269}, + [5493] = {.lex_state = 271}, + [5494] = {.lex_state = 271}, + [5495] = {.lex_state = 271}, + [5496] = {.lex_state = 271}, + [5497] = {.lex_state = 271}, + [5498] = {.lex_state = 334}, + [5499] = {.lex_state = 289}, + [5500] = {.lex_state = 338}, + [5501] = {.lex_state = 280}, + [5502] = {.lex_state = 301}, + [5503] = {.lex_state = 301}, + [5504] = {.lex_state = 271}, + [5505] = {.lex_state = 289}, + [5506] = {.lex_state = 289}, + [5507] = {.lex_state = 269}, + [5508] = {.lex_state = 269}, + [5509] = {.lex_state = 301}, + [5510] = {.lex_state = 269}, + [5511] = {.lex_state = 266}, [5512] = {.lex_state = 301}, - [5513] = {.lex_state = 290}, - [5514] = {.lex_state = 290}, - [5515] = {.lex_state = 270}, - [5516] = {.lex_state = 290}, + [5513] = {.lex_state = 269}, + [5514] = {.lex_state = 269}, + [5515] = {.lex_state = 335}, + [5516] = {.lex_state = 301}, [5517] = {.lex_state = 301}, - [5518] = {.lex_state = 290}, - [5519] = {.lex_state = 264}, + [5518] = {.lex_state = 301}, + [5519] = {.lex_state = 301}, [5520] = {.lex_state = 301}, - [5521] = {.lex_state = 298}, - [5522] = {.lex_state = 290}, - [5523] = {.lex_state = 290}, - [5524] = {.lex_state = 290}, - [5525] = {.lex_state = 270}, - [5526] = {.lex_state = 290}, - [5527] = {.lex_state = 290}, - [5528] = {.lex_state = 306}, - [5529] = {.lex_state = 290}, - [5530] = {.lex_state = 281}, - [5531] = {.lex_state = 290}, - [5532] = {.lex_state = 298}, - [5533] = {.lex_state = 298}, - [5534] = {.lex_state = 290}, + [5521] = {.lex_state = 301}, + [5522] = {.lex_state = 301}, + [5523] = {.lex_state = 335}, + [5524] = {.lex_state = 301}, + [5525] = {.lex_state = 301}, + [5526] = {.lex_state = 301}, + [5527] = {.lex_state = 301}, + [5528] = {.lex_state = 335}, + [5529] = {.lex_state = 335}, + [5530] = {.lex_state = 280}, + [5531] = {.lex_state = 280}, + [5532] = {.lex_state = 280}, + [5533] = {.lex_state = 271}, + [5534] = {.lex_state = 298}, [5535] = {.lex_state = 290}, [5536] = {.lex_state = 290}, [5537] = {.lex_state = 290}, [5538] = {.lex_state = 290}, - [5539] = {.lex_state = 290}, - [5540] = {.lex_state = 290}, + [5539] = {.lex_state = 271}, + [5540] = {.lex_state = 301}, [5541] = {.lex_state = 290}, - [5542] = {.lex_state = 290}, - [5543] = {.lex_state = 290}, + [5542] = {.lex_state = 301}, + [5543] = {.lex_state = 280}, [5544] = {.lex_state = 290}, [5545] = {.lex_state = 290}, [5546] = {.lex_state = 290}, - [5547] = {.lex_state = 290}, + [5547] = {.lex_state = 269}, [5548] = {.lex_state = 290}, - [5549] = {.lex_state = 303}, - [5550] = {.lex_state = 312}, - [5551] = {.lex_state = 303}, - [5552] = {.lex_state = 290}, - [5553] = {.lex_state = 303}, - [5554] = {.lex_state = 270}, - [5555] = {.lex_state = 270}, - [5556] = {.lex_state = 310}, - [5557] = {.lex_state = 298}, + [5549] = {.lex_state = 290}, + [5550] = {.lex_state = 290}, + [5551] = {.lex_state = 290}, + [5552] = {.lex_state = 306}, + [5553] = {.lex_state = 290}, + [5554] = {.lex_state = 290}, + [5555] = {.lex_state = 290}, + [5556] = {.lex_state = 301}, + [5557] = {.lex_state = 290}, [5558] = {.lex_state = 290}, - [5559] = {.lex_state = 310}, - [5560] = {.lex_state = 303}, - [5561] = {.lex_state = 267}, - [5562] = {.lex_state = 290}, + [5559] = {.lex_state = 298}, + [5560] = {.lex_state = 298}, + [5561] = {.lex_state = 290}, + [5562] = {.lex_state = 262}, [5563] = {.lex_state = 290}, [5564] = {.lex_state = 290}, [5565] = {.lex_state = 338}, [5566] = {.lex_state = 290}, [5567] = {.lex_state = 290}, - [5568] = {.lex_state = 290}, + [5568] = {.lex_state = 338}, [5569] = {.lex_state = 290}, [5570] = {.lex_state = 290}, [5571] = {.lex_state = 290}, - [5572] = {.lex_state = 303}, + [5572] = {.lex_state = 290}, [5573] = {.lex_state = 290}, - [5574] = {.lex_state = 290}, - [5575] = {.lex_state = 267}, - [5576] = {.lex_state = 267}, - [5577] = {.lex_state = 303}, + [5574] = {.lex_state = 338}, + [5575] = {.lex_state = 266}, + [5576] = {.lex_state = 301}, + [5577] = {.lex_state = 290}, [5578] = {.lex_state = 290}, [5579] = {.lex_state = 290}, - [5580] = {.lex_state = 290}, + [5580] = {.lex_state = 264}, [5581] = {.lex_state = 290}, - [5582] = {.lex_state = 290}, - [5583] = {.lex_state = 290}, + [5582] = {.lex_state = 301}, + [5583] = {.lex_state = 266}, [5584] = {.lex_state = 290}, - [5585] = {.lex_state = 290}, - [5586] = {.lex_state = 301}, - [5587] = {.lex_state = 272}, + [5585] = {.lex_state = 266}, + [5586] = {.lex_state = 290}, + [5587] = {.lex_state = 290}, [5588] = {.lex_state = 290}, [5589] = {.lex_state = 290}, [5590] = {.lex_state = 290}, - [5591] = {.lex_state = 270}, - [5592] = {.lex_state = 281}, - [5593] = {.lex_state = 267}, - [5594] = {.lex_state = 308}, - [5595] = {.lex_state = 279}, + [5591] = {.lex_state = 266}, + [5592] = {.lex_state = 298}, + [5593] = {.lex_state = 298}, + [5594] = {.lex_state = 298}, + [5595] = {.lex_state = 290}, [5596] = {.lex_state = 290}, [5597] = {.lex_state = 290}, [5598] = {.lex_state = 290}, [5599] = {.lex_state = 290}, - [5600] = {.lex_state = 290}, + [5600] = {.lex_state = 298}, [5601] = {.lex_state = 298}, - [5602] = {.lex_state = 267}, - [5603] = {.lex_state = 290}, - [5604] = {.lex_state = 290}, - [5605] = {.lex_state = 267}, - [5606] = {.lex_state = 267}, - [5607] = {.lex_state = 298}, + [5602] = {.lex_state = 262}, + [5603] = {.lex_state = 298}, + [5604] = {.lex_state = 338}, + [5605] = {.lex_state = 290}, + [5606] = {.lex_state = 290}, + [5607] = {.lex_state = 271}, [5608] = {.lex_state = 290}, [5609] = {.lex_state = 290}, - [5610] = {.lex_state = 315}, - [5611] = {.lex_state = 315}, - [5612] = {.lex_state = 270}, - [5613] = {.lex_state = 290}, + [5610] = {.lex_state = 290}, + [5611] = {.lex_state = 290}, + [5612] = {.lex_state = 303}, + [5613] = {.lex_state = 335}, [5614] = {.lex_state = 290}, - [5615] = {.lex_state = 338}, - [5616] = {.lex_state = 290}, - [5617] = {.lex_state = 270}, + [5615] = {.lex_state = 290}, + [5616] = {.lex_state = 278}, + [5617] = {.lex_state = 290}, [5618] = {.lex_state = 290}, - [5619] = {.lex_state = 270}, - [5620] = {.lex_state = 270}, - [5621] = {.lex_state = 301}, - [5622] = {.lex_state = 301}, + [5619] = {.lex_state = 290}, + [5620] = {.lex_state = 290}, + [5621] = {.lex_state = 290}, + [5622] = {.lex_state = 298}, [5623] = {.lex_state = 290}, - [5624] = {.lex_state = 270}, - [5625] = {.lex_state = 270}, - [5626] = {.lex_state = 301}, - [5627] = {.lex_state = 301}, - [5628] = {.lex_state = 270}, - [5629] = {.lex_state = 270}, - [5630] = {.lex_state = 290}, - [5631] = {.lex_state = 290}, - [5632] = {.lex_state = 301}, - [5633] = {.lex_state = 301}, - [5634] = {.lex_state = 290}, - [5635] = {.lex_state = 270}, + [5624] = {.lex_state = 338}, + [5625] = {.lex_state = 303}, + [5626] = {.lex_state = 303}, + [5627] = {.lex_state = 303}, + [5628] = {.lex_state = 290}, + [5629] = {.lex_state = 290}, + [5630] = {.lex_state = 315}, + [5631] = {.lex_state = 315}, + [5632] = {.lex_state = 303}, + [5633] = {.lex_state = 303}, + [5634] = {.lex_state = 298}, + [5635] = {.lex_state = 290}, [5636] = {.lex_state = 290}, [5637] = {.lex_state = 290}, - [5638] = {.lex_state = 290}, - [5639] = {.lex_state = 290}, + [5638] = {.lex_state = 301}, + [5639] = {.lex_state = 269}, [5640] = {.lex_state = 290}, [5641] = {.lex_state = 290}, - [5642] = {.lex_state = 270}, + [5642] = {.lex_state = 290}, [5643] = {.lex_state = 290}, - [5644] = {.lex_state = 290}, - [5645] = {.lex_state = 301}, - [5646] = {.lex_state = 270}, - [5647] = {.lex_state = 270}, + [5644] = {.lex_state = 266}, + [5645] = {.lex_state = 290}, + [5646] = {.lex_state = 290}, + [5647] = {.lex_state = 301}, [5648] = {.lex_state = 301}, - [5649] = {.lex_state = 301}, - [5650] = {.lex_state = 270}, - [5651] = {.lex_state = 270}, - [5652] = {.lex_state = 270}, - [5653] = {.lex_state = 272}, - [5654] = {.lex_state = 301}, - [5655] = {.lex_state = 270}, - [5656] = {.lex_state = 270}, - [5657] = {.lex_state = 267}, + [5649] = {.lex_state = 269}, + [5650] = {.lex_state = 280}, + [5651] = {.lex_state = 290}, + [5652] = {.lex_state = 290}, + [5653] = {.lex_state = 290}, + [5654] = {.lex_state = 290}, + [5655] = {.lex_state = 290}, + [5656] = {.lex_state = 301}, + [5657] = {.lex_state = 290}, [5658] = {.lex_state = 290}, - [5659] = {.lex_state = 290}, - [5660] = {.lex_state = 301}, - [5661] = {.lex_state = 281}, - [5662] = {.lex_state = 301}, - [5663] = {.lex_state = 283}, - [5664] = {.lex_state = 301}, - [5665] = {.lex_state = 270}, - [5666] = {.lex_state = 281}, - [5667] = {.lex_state = 270}, - [5668] = {.lex_state = 301}, - [5669] = {.lex_state = 270}, - [5670] = {.lex_state = 270}, - [5671] = {.lex_state = 270}, - [5672] = {.lex_state = 270}, - [5673] = {.lex_state = 301}, - [5674] = {.lex_state = 270}, - [5675] = {.lex_state = 270}, - [5676] = {.lex_state = 272}, - [5677] = {.lex_state = 270}, - [5678] = {.lex_state = 279}, - [5679] = {.lex_state = 290}, - [5680] = {.lex_state = 270}, - [5681] = {.lex_state = 270}, - [5682] = {.lex_state = 270}, - [5683] = {.lex_state = 270}, - [5684] = {.lex_state = 270}, - [5685] = {.lex_state = 270}, - [5686] = {.lex_state = 301}, - [5687] = {.lex_state = 301}, - [5688] = {.lex_state = 270}, - [5689] = {.lex_state = 290}, - [5690] = {.lex_state = 270}, - [5691] = {.lex_state = 270}, - [5692] = {.lex_state = 301}, + [5659] = {.lex_state = 262}, + [5660] = {.lex_state = 290}, + [5661] = {.lex_state = 308}, + [5662] = {.lex_state = 290}, + [5663] = {.lex_state = 290}, + [5664] = {.lex_state = 290}, + [5665] = {.lex_state = 310}, + [5666] = {.lex_state = 247}, + [5667] = {.lex_state = 290}, + [5668] = {.lex_state = 290}, + [5669] = {.lex_state = 269}, + [5670] = {.lex_state = 306}, + [5671] = {.lex_state = 290}, + [5672] = {.lex_state = 280}, + [5673] = {.lex_state = 290}, + [5674] = {.lex_state = 269}, + [5675] = {.lex_state = 290}, + [5676] = {.lex_state = 266}, + [5677] = {.lex_state = 290}, + [5678] = {.lex_state = 310}, + [5679] = {.lex_state = 312}, + [5680] = {.lex_state = 290}, + [5681] = {.lex_state = 290}, + [5682] = {.lex_state = 301}, + [5683] = {.lex_state = 290}, + [5684] = {.lex_state = 266}, + [5685] = {.lex_state = 266}, + [5686] = {.lex_state = 290}, + [5687] = {.lex_state = 266}, + [5688] = {.lex_state = 264}, + [5689] = {.lex_state = 280}, + [5690] = {.lex_state = 269}, + [5691] = {.lex_state = 290}, + [5692] = {.lex_state = 269}, [5693] = {.lex_state = 290}, - [5694] = {.lex_state = 277}, - [5695] = {.lex_state = 301}, - [5696] = {.lex_state = 270}, - [5697] = {.lex_state = 270}, - [5698] = {.lex_state = 286}, - [5699] = {.lex_state = 281}, - [5700] = {.lex_state = 270}, - [5701] = {.lex_state = 281}, + [5694] = {.lex_state = 290}, + [5695] = {.lex_state = 290}, + [5696] = {.lex_state = 290}, + [5697] = {.lex_state = 279}, + [5698] = {.lex_state = 266}, + [5699] = {.lex_state = 290}, + [5700] = {.lex_state = 269}, + [5701] = {.lex_state = 290}, [5702] = {.lex_state = 290}, [5703] = {.lex_state = 290}, - [5704] = {.lex_state = 301}, + [5704] = {.lex_state = 290}, [5705] = {.lex_state = 290}, - [5706] = {.lex_state = 281}, - [5707] = {.lex_state = 270}, - [5708] = {.lex_state = 283}, - [5709] = {.lex_state = 281}, - [5710] = {.lex_state = 301}, - [5711] = {.lex_state = 281}, + [5706] = {.lex_state = 266}, + [5707] = {.lex_state = 264}, + [5708] = {.lex_state = 290}, + [5709] = {.lex_state = 290}, + [5710] = {.lex_state = 290}, + [5711] = {.lex_state = 290}, [5712] = {.lex_state = 290}, - [5713] = {.lex_state = 270}, + [5713] = {.lex_state = 290}, [5714] = {.lex_state = 290}, - [5715] = {.lex_state = 301}, - [5716] = {.lex_state = 301}, - [5717] = {.lex_state = 301}, - [5718] = {.lex_state = 281}, - [5719] = {.lex_state = 281}, - [5720] = {.lex_state = 270}, - [5721] = {.lex_state = 281}, - [5722] = {.lex_state = 270}, - [5723] = {.lex_state = 281}, - [5724] = {.lex_state = 270}, - [5725] = {.lex_state = 270}, - [5726] = {.lex_state = 281}, - [5727] = {.lex_state = 290}, - [5728] = {.lex_state = 270}, - [5729] = {.lex_state = 270}, - [5730] = {.lex_state = 290}, - [5731] = {.lex_state = 338}, + [5715] = {.lex_state = 290}, + [5716] = {.lex_state = 290}, + [5717] = {.lex_state = 290}, + [5718] = {.lex_state = 280}, + [5719] = {.lex_state = 269}, + [5720] = {.lex_state = 290}, + [5721] = {.lex_state = 290}, + [5722] = {.lex_state = 290}, + [5723] = {.lex_state = 303}, + [5724] = {.lex_state = 301}, + [5725] = {.lex_state = 301}, + [5726] = {.lex_state = 269}, + [5727] = {.lex_state = 269}, + [5728] = {.lex_state = 269}, + [5729] = {.lex_state = 301}, + [5730] = {.lex_state = 269}, + [5731] = {.lex_state = 269}, [5732] = {.lex_state = 301}, - [5733] = {.lex_state = 270}, - [5734] = {.lex_state = 247}, - [5735] = {.lex_state = 301}, - [5736] = {.lex_state = 270}, - [5737] = {.lex_state = 270}, - [5738] = {.lex_state = 290}, - [5739] = {.lex_state = 247}, - [5740] = {.lex_state = 270}, - [5741] = {.lex_state = 270}, - [5742] = {.lex_state = 281}, - [5743] = {.lex_state = 333}, - [5744] = {.lex_state = 290}, - [5745] = {.lex_state = 301}, + [5733] = {.lex_state = 269}, + [5734] = {.lex_state = 269}, + [5735] = {.lex_state = 266}, + [5736] = {.lex_state = 269}, + [5737] = {.lex_state = 290}, + [5738] = {.lex_state = 301}, + [5739] = {.lex_state = 301}, + [5740] = {.lex_state = 282}, + [5741] = {.lex_state = 301}, + [5742] = {.lex_state = 280}, + [5743] = {.lex_state = 290}, + [5744] = {.lex_state = 301}, + [5745] = {.lex_state = 290}, [5746] = {.lex_state = 301}, - [5747] = {.lex_state = 270}, - [5748] = {.lex_state = 270}, + [5747] = {.lex_state = 301}, + [5748] = {.lex_state = 290}, [5749] = {.lex_state = 301}, - [5750] = {.lex_state = 281}, - [5751] = {.lex_state = 290}, - [5752] = {.lex_state = 270}, - [5753] = {.lex_state = 301}, + [5750] = {.lex_state = 247}, + [5751] = {.lex_state = 269}, + [5752] = {.lex_state = 269}, + [5753] = {.lex_state = 269}, [5754] = {.lex_state = 301}, - [5755] = {.lex_state = 301}, - [5756] = {.lex_state = 270}, - [5757] = {.lex_state = 281}, - [5758] = {.lex_state = 270}, - [5759] = {.lex_state = 301}, - [5760] = {.lex_state = 270}, - [5761] = {.lex_state = 301}, - [5762] = {.lex_state = 270}, - [5763] = {.lex_state = 281}, - [5764] = {.lex_state = 301}, - [5765] = {.lex_state = 270}, - [5766] = {.lex_state = 301}, - [5767] = {.lex_state = 290}, - [5768] = {.lex_state = 301}, - [5769] = {.lex_state = 301}, - [5770] = {.lex_state = 301}, - [5771] = {.lex_state = 270}, - [5772] = {.lex_state = 283}, - [5773] = {.lex_state = 301}, - [5774] = {.lex_state = 281}, - [5775] = {.lex_state = 301}, - [5776] = {.lex_state = 290}, + [5755] = {.lex_state = 269}, + [5756] = {.lex_state = 276}, + [5757] = {.lex_state = 290}, + [5758] = {.lex_state = 269}, + [5759] = {.lex_state = 290}, + [5760] = {.lex_state = 301}, + [5761] = {.lex_state = 269}, + [5762] = {.lex_state = 301}, + [5763] = {.lex_state = 301}, + [5764] = {.lex_state = 280}, + [5765] = {.lex_state = 290}, + [5766] = {.lex_state = 269}, + [5767] = {.lex_state = 269}, + [5768] = {.lex_state = 271}, + [5769] = {.lex_state = 290}, + [5770] = {.lex_state = 269}, + [5771] = {.lex_state = 338}, + [5772] = {.lex_state = 269}, + [5773] = {.lex_state = 290}, + [5774] = {.lex_state = 301}, + [5775] = {.lex_state = 269}, + [5776] = {.lex_state = 269}, [5777] = {.lex_state = 301}, - [5778] = {.lex_state = 290}, - [5779] = {.lex_state = 301}, - [5780] = {.lex_state = 301}, - [5781] = {.lex_state = 301}, - [5782] = {.lex_state = 301}, - [5783] = {.lex_state = 279}, - [5784] = {.lex_state = 270}, - [5785] = {.lex_state = 290}, - [5786] = {.lex_state = 283}, - [5787] = {.lex_state = 301}, + [5778] = {.lex_state = 301}, + [5779] = {.lex_state = 269}, + [5780] = {.lex_state = 269}, + [5781] = {.lex_state = 290}, + [5782] = {.lex_state = 269}, + [5783] = {.lex_state = 290}, + [5784] = {.lex_state = 301}, + [5785] = {.lex_state = 269}, + [5786] = {.lex_state = 301}, + [5787] = {.lex_state = 269}, [5788] = {.lex_state = 301}, - [5789] = {.lex_state = 301}, - [5790] = {.lex_state = 247}, - [5791] = {.lex_state = 301}, - [5792] = {.lex_state = 301}, - [5793] = {.lex_state = 247}, + [5789] = {.lex_state = 269}, + [5790] = {.lex_state = 269}, + [5791] = {.lex_state = 285}, + [5792] = {.lex_state = 290}, + [5793] = {.lex_state = 290}, [5794] = {.lex_state = 301}, - [5795] = {.lex_state = 290}, + [5795] = {.lex_state = 269}, [5796] = {.lex_state = 301}, - [5797] = {.lex_state = 338}, - [5798] = {.lex_state = 301}, - [5799] = {.lex_state = 272}, - [5800] = {.lex_state = 290}, - [5801] = {.lex_state = 270}, - [5802] = {.lex_state = 301}, + [5797] = {.lex_state = 301}, + [5798] = {.lex_state = 290}, + [5799] = {.lex_state = 301}, + [5800] = {.lex_state = 269}, + [5801] = {.lex_state = 301}, + [5802] = {.lex_state = 290}, [5803] = {.lex_state = 301}, - [5804] = {.lex_state = 301}, + [5804] = {.lex_state = 290}, [5805] = {.lex_state = 301}, [5806] = {.lex_state = 290}, - [5807] = {.lex_state = 270}, + [5807] = {.lex_state = 301}, [5808] = {.lex_state = 301}, [5809] = {.lex_state = 301}, - [5810] = {.lex_state = 270}, + [5810] = {.lex_state = 290}, [5811] = {.lex_state = 301}, - [5812] = {.lex_state = 301}, - [5813] = {.lex_state = 270}, - [5814] = {.lex_state = 270}, - [5815] = {.lex_state = 301}, - [5816] = {.lex_state = 315}, - [5817] = {.lex_state = 270}, - [5818] = {.lex_state = 270}, + [5812] = {.lex_state = 280}, + [5813] = {.lex_state = 301}, + [5814] = {.lex_state = 269}, + [5815] = {.lex_state = 290}, + [5816] = {.lex_state = 269}, + [5817] = {.lex_state = 269}, + [5818] = {.lex_state = 290}, [5819] = {.lex_state = 301}, - [5820] = {.lex_state = 301}, - [5821] = {.lex_state = 301}, - [5822] = {.lex_state = 290}, - [5823] = {.lex_state = 270}, - [5824] = {.lex_state = 270}, - [5825] = {.lex_state = 301}, - [5826] = {.lex_state = 270}, - [5827] = {.lex_state = 270}, - [5828] = {.lex_state = 338}, - [5829] = {.lex_state = 281}, - [5830] = {.lex_state = 338}, - [5831] = {.lex_state = 338}, - [5832] = {.lex_state = 281}, - [5833] = {.lex_state = 281}, - [5834] = {.lex_state = 290}, - [5835] = {.lex_state = 281}, - [5836] = {.lex_state = 281}, - [5837] = {.lex_state = 281}, - [5838] = {.lex_state = 335}, - [5839] = {.lex_state = 281}, - [5840] = {.lex_state = 281}, - [5841] = {.lex_state = 281}, - [5842] = {.lex_state = 281}, - [5843] = {.lex_state = 281}, - [5844] = {.lex_state = 247}, - [5845] = {.lex_state = 247}, - [5846] = {.lex_state = 341}, - [5847] = {.lex_state = 338}, - [5848] = {.lex_state = 281}, - [5849] = {.lex_state = 281}, - [5850] = {.lex_state = 281}, - [5851] = {.lex_state = 281}, - [5852] = {.lex_state = 281}, - [5853] = {.lex_state = 335}, - [5854] = {.lex_state = 281}, - [5855] = {.lex_state = 338}, - [5856] = {.lex_state = 272}, - [5857] = {.lex_state = 281}, - [5858] = {.lex_state = 338}, - [5859] = {.lex_state = 338}, - [5860] = {.lex_state = 281}, - [5861] = {.lex_state = 338}, - [5862] = {.lex_state = 338}, - [5863] = {.lex_state = 281}, - [5864] = {.lex_state = 281}, - [5865] = {.lex_state = 247}, - [5866] = {.lex_state = 281}, - [5867] = {.lex_state = 281}, - [5868] = {.lex_state = 338}, - [5869] = {.lex_state = 338}, - [5870] = {.lex_state = 281}, - [5871] = {.lex_state = 281}, - [5872] = {.lex_state = 247}, - [5873] = {.lex_state = 281}, - [5874] = {.lex_state = 338}, - [5875] = {.lex_state = 281}, - [5876] = {.lex_state = 281}, - [5877] = {.lex_state = 262}, - [5878] = {.lex_state = 281}, - [5879] = {.lex_state = 340}, - [5880] = {.lex_state = 281}, - [5881] = {.lex_state = 281}, - [5882] = {.lex_state = 338}, - [5883] = {.lex_state = 281}, - [5884] = {.lex_state = 340}, - [5885] = {.lex_state = 281}, - [5886] = {.lex_state = 281}, - [5887] = {.lex_state = 281}, - [5888] = {.lex_state = 281}, - [5889] = {.lex_state = 281}, - [5890] = {.lex_state = 281}, - [5891] = {.lex_state = 340}, - [5892] = {.lex_state = 281}, - [5893] = {.lex_state = 338}, - [5894] = {.lex_state = 277}, - [5895] = {.lex_state = 335}, - [5896] = {.lex_state = 281}, - [5897] = {.lex_state = 281}, - [5898] = {.lex_state = 315}, - [5899] = {.lex_state = 281}, - [5900] = {.lex_state = 281}, - [5901] = {.lex_state = 281}, - [5902] = {.lex_state = 293}, - [5903] = {.lex_state = 281}, - [5904] = {.lex_state = 281}, - [5905] = {.lex_state = 281}, - [5906] = {.lex_state = 264}, - [5907] = {.lex_state = 281}, - [5908] = {.lex_state = 281}, - [5909] = {.lex_state = 281}, - [5910] = {.lex_state = 281}, - [5911] = {.lex_state = 281}, - [5912] = {.lex_state = 293}, - [5913] = {.lex_state = 290}, - [5914] = {.lex_state = 281}, - [5915] = {.lex_state = 290}, - [5916] = {.lex_state = 281}, - [5917] = {.lex_state = 281}, - [5918] = {.lex_state = 338}, - [5919] = {.lex_state = 290}, - [5920] = {.lex_state = 281}, - [5921] = {.lex_state = 290}, - [5922] = {.lex_state = 338}, - [5923] = {.lex_state = 338}, - [5924] = {.lex_state = 281}, - [5925] = {.lex_state = 338}, - [5926] = {.lex_state = 290}, - [5927] = {.lex_state = 338}, - [5928] = {.lex_state = 338}, - [5929] = {.lex_state = 338}, + [5820] = {.lex_state = 269}, + [5821] = {.lex_state = 290}, + [5822] = {.lex_state = 247}, + [5823] = {.lex_state = 269}, + [5824] = {.lex_state = 290}, + [5825] = {.lex_state = 315}, + [5826] = {.lex_state = 301}, + [5827] = {.lex_state = 269}, + [5828] = {.lex_state = 290}, + [5829] = {.lex_state = 290}, + [5830] = {.lex_state = 269}, + [5831] = {.lex_state = 282}, + [5832] = {.lex_state = 290}, + [5833] = {.lex_state = 269}, + [5834] = {.lex_state = 301}, + [5835] = {.lex_state = 269}, + [5836] = {.lex_state = 301}, + [5837] = {.lex_state = 280}, + [5838] = {.lex_state = 269}, + [5839] = {.lex_state = 290}, + [5840] = {.lex_state = 269}, + [5841] = {.lex_state = 301}, + [5842] = {.lex_state = 301}, + [5843] = {.lex_state = 269}, + [5844] = {.lex_state = 269}, + [5845] = {.lex_state = 301}, + [5846] = {.lex_state = 301}, + [5847] = {.lex_state = 301}, + [5848] = {.lex_state = 269}, + [5849] = {.lex_state = 301}, + [5850] = {.lex_state = 280}, + [5851] = {.lex_state = 280}, + [5852] = {.lex_state = 247}, + [5853] = {.lex_state = 269}, + [5854] = {.lex_state = 269}, + [5855] = {.lex_state = 301}, + [5856] = {.lex_state = 269}, + [5857] = {.lex_state = 280}, + [5858] = {.lex_state = 269}, + [5859] = {.lex_state = 269}, + [5860] = {.lex_state = 269}, + [5861] = {.lex_state = 301}, + [5862] = {.lex_state = 301}, + [5863] = {.lex_state = 269}, + [5864] = {.lex_state = 269}, + [5865] = {.lex_state = 290}, + [5866] = {.lex_state = 290}, + [5867] = {.lex_state = 301}, + [5868] = {.lex_state = 269}, + [5869] = {.lex_state = 301}, + [5870] = {.lex_state = 269}, + [5871] = {.lex_state = 301}, + [5872] = {.lex_state = 290}, + [5873] = {.lex_state = 269}, + [5874] = {.lex_state = 266}, + [5875] = {.lex_state = 269}, + [5876] = {.lex_state = 301}, + [5877] = {.lex_state = 269}, + [5878] = {.lex_state = 338}, + [5879] = {.lex_state = 247}, + [5880] = {.lex_state = 301}, + [5881] = {.lex_state = 280}, + [5882] = {.lex_state = 269}, + [5883] = {.lex_state = 269}, + [5884] = {.lex_state = 271}, + [5885] = {.lex_state = 266}, + [5886] = {.lex_state = 290}, + [5887] = {.lex_state = 301}, + [5888] = {.lex_state = 301}, + [5889] = {.lex_state = 282}, + [5890] = {.lex_state = 301}, + [5891] = {.lex_state = 334}, + [5892] = {.lex_state = 290}, + [5893] = {.lex_state = 280}, + [5894] = {.lex_state = 301}, + [5895] = {.lex_state = 301}, + [5896] = {.lex_state = 301}, + [5897] = {.lex_state = 301}, + [5898] = {.lex_state = 280}, + [5899] = {.lex_state = 271}, + [5900] = {.lex_state = 269}, + [5901] = {.lex_state = 269}, + [5902] = {.lex_state = 269}, + [5903] = {.lex_state = 278}, + [5904] = {.lex_state = 269}, + [5905] = {.lex_state = 269}, + [5906] = {.lex_state = 301}, + [5907] = {.lex_state = 280}, + [5908] = {.lex_state = 280}, + [5909] = {.lex_state = 269}, + [5910] = {.lex_state = 301}, + [5911] = {.lex_state = 280}, + [5912] = {.lex_state = 280}, + [5913] = {.lex_state = 269}, + [5914] = {.lex_state = 290}, + [5915] = {.lex_state = 269}, + [5916] = {.lex_state = 290}, + [5917] = {.lex_state = 301}, + [5918] = {.lex_state = 301}, + [5919] = {.lex_state = 280}, + [5920] = {.lex_state = 269}, + [5921] = {.lex_state = 278}, + [5922] = {.lex_state = 290}, + [5923] = {.lex_state = 269}, + [5924] = {.lex_state = 282}, + [5925] = {.lex_state = 301}, + [5926] = {.lex_state = 269}, + [5927] = {.lex_state = 301}, + [5928] = {.lex_state = 269}, + [5929] = {.lex_state = 301}, [5930] = {.lex_state = 290}, - [5931] = {.lex_state = 338}, - [5932] = {.lex_state = 290}, - [5933] = {.lex_state = 264}, - [5934] = {.lex_state = 290}, + [5931] = {.lex_state = 301}, + [5932] = {.lex_state = 280}, + [5933] = {.lex_state = 301}, + [5934] = {.lex_state = 280}, [5935] = {.lex_state = 290}, - [5936] = {.lex_state = 335}, - [5937] = {.lex_state = 338}, - [5938] = {.lex_state = 277}, - [5939] = {.lex_state = 338}, - [5940] = {.lex_state = 290}, - [5941] = {.lex_state = 338}, - [5942] = {.lex_state = 338}, - [5943] = {.lex_state = 333}, - [5944] = {.lex_state = 338}, + [5936] = {.lex_state = 338}, + [5937] = {.lex_state = 280}, + [5938] = {.lex_state = 338}, + [5939] = {.lex_state = 262}, + [5940] = {.lex_state = 338}, + [5941] = {.lex_state = 293}, + [5942] = {.lex_state = 290}, + [5943] = {.lex_state = 335}, + [5944] = {.lex_state = 280}, [5945] = {.lex_state = 338}, - [5946] = {.lex_state = 264}, - [5947] = {.lex_state = 338}, - [5948] = {.lex_state = 338}, - [5949] = {.lex_state = 338}, - [5950] = {.lex_state = 290}, - [5951] = {.lex_state = 338}, - [5952] = {.lex_state = 290}, - [5953] = {.lex_state = 338}, - [5954] = {.lex_state = 290}, - [5955] = {.lex_state = 290}, - [5956] = {.lex_state = 338}, - [5957] = {.lex_state = 290}, - [5958] = {.lex_state = 290}, - [5959] = {.lex_state = 338}, - [5960] = {.lex_state = 262}, - [5961] = {.lex_state = 290}, - [5962] = {.lex_state = 338}, - [5963] = {.lex_state = 337}, - [5964] = {.lex_state = 338}, - [5965] = {.lex_state = 338}, - [5966] = {.lex_state = 337}, - [5967] = {.lex_state = 290}, - [5968] = {.lex_state = 262}, - [5969] = {.lex_state = 281}, - [5970] = {.lex_state = 338}, - [5971] = {.lex_state = 290}, - [5972] = {.lex_state = 338}, - [5973] = {.lex_state = 264}, - [5974] = {.lex_state = 290}, + [5946] = {.lex_state = 280}, + [5947] = {.lex_state = 280}, + [5948] = {.lex_state = 271}, + [5949] = {.lex_state = 280}, + [5950] = {.lex_state = 280}, + [5951] = {.lex_state = 280}, + [5952] = {.lex_state = 280}, + [5953] = {.lex_state = 280}, + [5954] = {.lex_state = 338}, + [5955] = {.lex_state = 280}, + [5956] = {.lex_state = 280}, + [5957] = {.lex_state = 280}, + [5958] = {.lex_state = 280}, + [5959] = {.lex_state = 280}, + [5960] = {.lex_state = 280}, + [5961] = {.lex_state = 280}, + [5962] = {.lex_state = 340}, + [5963] = {.lex_state = 280}, + [5964] = {.lex_state = 280}, + [5965] = {.lex_state = 280}, + [5966] = {.lex_state = 280}, + [5967] = {.lex_state = 276}, + [5968] = {.lex_state = 271}, + [5969] = {.lex_state = 280}, + [5970] = {.lex_state = 335}, + [5971] = {.lex_state = 280}, + [5972] = {.lex_state = 280}, + [5973] = {.lex_state = 340}, + [5974] = {.lex_state = 335}, [5975] = {.lex_state = 338}, - [5976] = {.lex_state = 338}, - [5977] = {.lex_state = 281}, - [5978] = {.lex_state = 290}, - [5979] = {.lex_state = 290}, - [5980] = {.lex_state = 338}, - [5981] = {.lex_state = 290}, - [5982] = {.lex_state = 338}, - [5983] = {.lex_state = 338}, - [5984] = {.lex_state = 338}, - [5985] = {.lex_state = 338}, - [5986] = {.lex_state = 290}, - [5987] = {.lex_state = 290}, - [5988] = {.lex_state = 290}, - [5989] = {.lex_state = 290}, - [5990] = {.lex_state = 262}, - [5991] = {.lex_state = 290}, - [5992] = {.lex_state = 281}, - [5993] = {.lex_state = 290}, - [5994] = {.lex_state = 290}, - [5995] = {.lex_state = 338}, - [5996] = {.lex_state = 338}, - [5997] = {.lex_state = 338}, - [5998] = {.lex_state = 338}, - [5999] = {.lex_state = 333}, - [6000] = {.lex_state = 262}, - [6001] = {.lex_state = 290}, - [6002] = {.lex_state = 338}, - [6003] = {.lex_state = 281}, - [6004] = {.lex_state = 290}, - [6005] = {.lex_state = 281}, - [6006] = {.lex_state = 281}, - [6007] = {.lex_state = 281}, - [6008] = {.lex_state = 290}, - [6009] = {.lex_state = 281}, - [6010] = {.lex_state = 290}, - [6011] = {.lex_state = 290}, - [6012] = {.lex_state = 290}, - [6013] = {.lex_state = 290}, - [6014] = {.lex_state = 290}, - [6015] = {.lex_state = 290}, - [6016] = {.lex_state = 264}, - [6017] = {.lex_state = 290}, - [6018] = {.lex_state = 281}, - [6019] = {.lex_state = 290}, - [6020] = {.lex_state = 338}, - [6021] = {.lex_state = 281}, - [6022] = {.lex_state = 264}, - [6023] = {.lex_state = 317}, - [6024] = {.lex_state = 262}, - [6025] = {.lex_state = 281}, - [6026] = {.lex_state = 262}, - [6027] = {.lex_state = 281}, - [6028] = {.lex_state = 262}, - [6029] = {.lex_state = 324}, - [6030] = {.lex_state = 278}, - [6031] = {.lex_state = 264}, - [6032] = {.lex_state = 281}, - [6033] = {.lex_state = 264}, - [6034] = {.lex_state = 316}, - [6035] = {.lex_state = 262}, + [5976] = {.lex_state = 280}, + [5977] = {.lex_state = 280}, + [5978] = {.lex_state = 280}, + [5979] = {.lex_state = 338}, + [5980] = {.lex_state = 280}, + [5981] = {.lex_state = 280}, + [5982] = {.lex_state = 280}, + [5983] = {.lex_state = 280}, + [5984] = {.lex_state = 290}, + [5985] = {.lex_state = 280}, + [5986] = {.lex_state = 280}, + [5987] = {.lex_state = 247}, + [5988] = {.lex_state = 280}, + [5989] = {.lex_state = 338}, + [5990] = {.lex_state = 280}, + [5991] = {.lex_state = 280}, + [5992] = {.lex_state = 280}, + [5993] = {.lex_state = 338}, + [5994] = {.lex_state = 280}, + [5995] = {.lex_state = 341}, + [5996] = {.lex_state = 264}, + [5997] = {.lex_state = 280}, + [5998] = {.lex_state = 280}, + [5999] = {.lex_state = 338}, + [6000] = {.lex_state = 338}, + [6001] = {.lex_state = 280}, + [6002] = {.lex_state = 280}, + [6003] = {.lex_state = 271}, + [6004] = {.lex_state = 293}, + [6005] = {.lex_state = 338}, + [6006] = {.lex_state = 280}, + [6007] = {.lex_state = 280}, + [6008] = {.lex_state = 340}, + [6009] = {.lex_state = 280}, + [6010] = {.lex_state = 338}, + [6011] = {.lex_state = 280}, + [6012] = {.lex_state = 280}, + [6013] = {.lex_state = 280}, + [6014] = {.lex_state = 280}, + [6015] = {.lex_state = 280}, + [6016] = {.lex_state = 247}, + [6017] = {.lex_state = 338}, + [6018] = {.lex_state = 247}, + [6019] = {.lex_state = 315}, + [6020] = {.lex_state = 280}, + [6021] = {.lex_state = 280}, + [6022] = {.lex_state = 280}, + [6023] = {.lex_state = 280}, + [6024] = {.lex_state = 280}, + [6025] = {.lex_state = 247}, + [6026] = {.lex_state = 338}, + [6027] = {.lex_state = 290}, + [6028] = {.lex_state = 338}, + [6029] = {.lex_state = 262}, + [6030] = {.lex_state = 264}, + [6031] = {.lex_state = 338}, + [6032] = {.lex_state = 338}, + [6033] = {.lex_state = 338}, + [6034] = {.lex_state = 290}, + [6035] = {.lex_state = 290}, [6036] = {.lex_state = 338}, - [6037] = {.lex_state = 264}, - [6038] = {.lex_state = 281}, - [6039] = {.lex_state = 277}, - [6040] = {.lex_state = 281}, - [6041] = {.lex_state = 319}, - [6042] = {.lex_state = 281}, - [6043] = {.lex_state = 281}, - [6044] = {.lex_state = 281}, - [6045] = {.lex_state = 281}, - [6046] = {.lex_state = 316}, - [6047] = {.lex_state = 277}, - [6048] = {.lex_state = 281}, - [6049] = {.lex_state = 281}, - [6050] = {.lex_state = 281}, - [6051] = {.lex_state = 281}, - [6052] = {.lex_state = 281}, - [6053] = {.lex_state = 333}, - [6054] = {.lex_state = 281}, - [6055] = {.lex_state = 337}, - [6056] = {.lex_state = 281}, - [6057] = {.lex_state = 281}, - [6058] = {.lex_state = 281}, - [6059] = {.lex_state = 281}, - [6060] = {.lex_state = 317}, - [6061] = {.lex_state = 337}, - [6062] = {.lex_state = 281}, - [6063] = {.lex_state = 281}, - [6064] = {.lex_state = 281}, - [6065] = {.lex_state = 317}, - [6066] = {.lex_state = 333}, - [6067] = {.lex_state = 281}, - [6068] = {.lex_state = 281}, - [6069] = {.lex_state = 281}, - [6070] = {.lex_state = 281}, - [6071] = {.lex_state = 324}, - [6072] = {.lex_state = 335}, - [6073] = {.lex_state = 341}, - [6074] = {.lex_state = 281}, - [6075] = {.lex_state = 281}, - [6076] = {.lex_state = 318}, - [6077] = {.lex_state = 281}, - [6078] = {.lex_state = 281}, - [6079] = {.lex_state = 281}, - [6080] = {.lex_state = 341}, - [6081] = {.lex_state = 324}, - [6082] = {.lex_state = 281}, - [6083] = {.lex_state = 316}, - [6084] = {.lex_state = 333}, - [6085] = {.lex_state = 317}, - [6086] = {.lex_state = 324}, - [6087] = {.lex_state = 338}, - [6088] = {.lex_state = 286}, - [6089] = {.lex_state = 286}, - [6090] = {.lex_state = 338}, - [6091] = {.lex_state = 286}, - [6092] = {.lex_state = 286}, - [6093] = {.lex_state = 286}, - [6094] = {.lex_state = 286}, - [6095] = {.lex_state = 286}, - [6096] = {.lex_state = 286}, - [6097] = {.lex_state = 286}, - [6098] = {.lex_state = 280}, - [6099] = {.lex_state = 286}, - [6100] = {.lex_state = 286}, - [6101] = {.lex_state = 286}, - [6102] = {.lex_state = 286}, - [6103] = {.lex_state = 286}, - [6104] = {.lex_state = 316}, - [6105] = {.lex_state = 286}, - [6106] = {.lex_state = 286}, - [6107] = {.lex_state = 338}, - [6108] = {.lex_state = 286}, - [6109] = {.lex_state = 286}, - [6110] = {.lex_state = 286}, - [6111] = {.lex_state = 317}, - [6112] = {.lex_state = 286}, - [6113] = {.lex_state = 286}, - [6114] = {.lex_state = 286}, + [6037] = {.lex_state = 290}, + [6038] = {.lex_state = 334}, + [6039] = {.lex_state = 290}, + [6040] = {.lex_state = 290}, + [6041] = {.lex_state = 290}, + [6042] = {.lex_state = 290}, + [6043] = {.lex_state = 290}, + [6044] = {.lex_state = 290}, + [6045] = {.lex_state = 290}, + [6046] = {.lex_state = 290}, + [6047] = {.lex_state = 290}, + [6048] = {.lex_state = 290}, + [6049] = {.lex_state = 290}, + [6050] = {.lex_state = 338}, + [6051] = {.lex_state = 338}, + [6052] = {.lex_state = 290}, + [6053] = {.lex_state = 280}, + [6054] = {.lex_state = 262}, + [6055] = {.lex_state = 338}, + [6056] = {.lex_state = 338}, + [6057] = {.lex_state = 290}, + [6058] = {.lex_state = 290}, + [6059] = {.lex_state = 338}, + [6060] = {.lex_state = 338}, + [6061] = {.lex_state = 338}, + [6062] = {.lex_state = 338}, + [6063] = {.lex_state = 338}, + [6064] = {.lex_state = 338}, + [6065] = {.lex_state = 338}, + [6066] = {.lex_state = 276}, + [6067] = {.lex_state = 262}, + [6068] = {.lex_state = 337}, + [6069] = {.lex_state = 337}, + [6070] = {.lex_state = 338}, + [6071] = {.lex_state = 290}, + [6072] = {.lex_state = 264}, + [6073] = {.lex_state = 338}, + [6074] = {.lex_state = 338}, + [6075] = {.lex_state = 338}, + [6076] = {.lex_state = 290}, + [6077] = {.lex_state = 338}, + [6078] = {.lex_state = 338}, + [6079] = {.lex_state = 334}, + [6080] = {.lex_state = 338}, + [6081] = {.lex_state = 290}, + [6082] = {.lex_state = 338}, + [6083] = {.lex_state = 290}, + [6084] = {.lex_state = 338}, + [6085] = {.lex_state = 338}, + [6086] = {.lex_state = 335}, + [6087] = {.lex_state = 264}, + [6088] = {.lex_state = 290}, + [6089] = {.lex_state = 338}, + [6090] = {.lex_state = 290}, + [6091] = {.lex_state = 338}, + [6092] = {.lex_state = 338}, + [6093] = {.lex_state = 290}, + [6094] = {.lex_state = 290}, + [6095] = {.lex_state = 290}, + [6096] = {.lex_state = 290}, + [6097] = {.lex_state = 290}, + [6098] = {.lex_state = 290}, + [6099] = {.lex_state = 338}, + [6100] = {.lex_state = 264}, + [6101] = {.lex_state = 290}, + [6102] = {.lex_state = 338}, + [6103] = {.lex_state = 290}, + [6104] = {.lex_state = 290}, + [6105] = {.lex_state = 290}, + [6106] = {.lex_state = 290}, + [6107] = {.lex_state = 290}, + [6108] = {.lex_state = 290}, + [6109] = {.lex_state = 338}, + [6110] = {.lex_state = 262}, + [6111] = {.lex_state = 280}, + [6112] = {.lex_state = 290}, + [6113] = {.lex_state = 290}, + [6114] = {.lex_state = 280}, [6115] = {.lex_state = 338}, - [6116] = {.lex_state = 286}, - [6117] = {.lex_state = 286}, - [6118] = {.lex_state = 317}, - [6119] = {.lex_state = 286}, - [6120] = {.lex_state = 317}, - [6121] = {.lex_state = 317}, - [6122] = {.lex_state = 324}, - [6123] = {.lex_state = 317}, - [6124] = {.lex_state = 324}, - [6125] = {.lex_state = 324}, - [6126] = {.lex_state = 286}, - [6127] = {.lex_state = 286}, - [6128] = {.lex_state = 286}, + [6116] = {.lex_state = 280}, + [6117] = {.lex_state = 338}, + [6118] = {.lex_state = 280}, + [6119] = {.lex_state = 280}, + [6120] = {.lex_state = 280}, + [6121] = {.lex_state = 280}, + [6122] = {.lex_state = 338}, + [6123] = {.lex_state = 280}, + [6124] = {.lex_state = 280}, + [6125] = {.lex_state = 338}, + [6126] = {.lex_state = 280}, + [6127] = {.lex_state = 338}, + [6128] = {.lex_state = 280}, [6129] = {.lex_state = 338}, - [6130] = {.lex_state = 286}, - [6131] = {.lex_state = 286}, - [6132] = {.lex_state = 286}, - [6133] = {.lex_state = 286}, - [6134] = {.lex_state = 286}, - [6135] = {.lex_state = 286}, - [6136] = {.lex_state = 324}, - [6137] = {.lex_state = 286}, - [6138] = {.lex_state = 286}, - [6139] = {.lex_state = 286}, - [6140] = {.lex_state = 338}, - [6141] = {.lex_state = 286}, - [6142] = {.lex_state = 286}, - [6143] = {.lex_state = 286}, - [6144] = {.lex_state = 286}, - [6145] = {.lex_state = 286}, - [6146] = {.lex_state = 324}, - [6147] = {.lex_state = 286}, - [6148] = {.lex_state = 286}, - [6149] = {.lex_state = 286}, - [6150] = {.lex_state = 286}, - [6151] = {.lex_state = 286}, - [6152] = {.lex_state = 338}, - [6153] = {.lex_state = 316}, - [6154] = {.lex_state = 281}, - [6155] = {.lex_state = 278}, - [6156] = {.lex_state = 278}, - [6157] = {.lex_state = 315}, - [6158] = {.lex_state = 338}, - [6159] = {.lex_state = 278}, - [6160] = {.lex_state = 278}, - [6161] = {.lex_state = 316}, - [6162] = {.lex_state = 278}, - [6163] = {.lex_state = 316}, - [6164] = {.lex_state = 316}, - [6165] = {.lex_state = 278}, - [6166] = {.lex_state = 338}, - [6167] = {.lex_state = 316}, - [6168] = {.lex_state = 316}, - [6169] = {.lex_state = 316}, - [6170] = {.lex_state = 278}, - [6171] = {.lex_state = 316}, - [6172] = {.lex_state = 338}, - [6173] = {.lex_state = 281}, - [6174] = {.lex_state = 281}, - [6175] = {.lex_state = 278}, - [6176] = {.lex_state = 316}, - [6177] = {.lex_state = 281}, - [6178] = {.lex_state = 338}, - [6179] = {.lex_state = 338}, - [6180] = {.lex_state = 278}, - [6181] = {.lex_state = 316}, - [6182] = {.lex_state = 338}, - [6183] = {.lex_state = 281}, - [6184] = {.lex_state = 315}, - [6185] = {.lex_state = 338}, - [6186] = {.lex_state = 281}, - [6187] = {.lex_state = 281}, - [6188] = {.lex_state = 281}, - [6189] = {.lex_state = 315}, - [6190] = {.lex_state = 281}, - [6191] = {.lex_state = 281}, - [6192] = {.lex_state = 337}, - [6193] = {.lex_state = 281}, - [6194] = {.lex_state = 278}, - [6195] = {.lex_state = 337}, - [6196] = {.lex_state = 281}, - [6197] = {.lex_state = 281}, - [6198] = {.lex_state = 281}, - [6199] = {.lex_state = 281}, - [6200] = {.lex_state = 333}, - [6201] = {.lex_state = 281}, - [6202] = {.lex_state = 315}, - [6203] = {.lex_state = 281}, - [6204] = {.lex_state = 281}, - [6205] = {.lex_state = 281}, - [6206] = {.lex_state = 281}, - [6207] = {.lex_state = 315}, - [6208] = {.lex_state = 283}, - [6209] = {.lex_state = 278}, - [6210] = {.lex_state = 337}, - [6211] = {.lex_state = 315}, - [6212] = {.lex_state = 316}, - [6213] = {.lex_state = 278}, - [6214] = {.lex_state = 315}, - [6215] = {.lex_state = 316}, - [6216] = {.lex_state = 315}, - [6217] = {.lex_state = 315}, - [6218] = {.lex_state = 315}, - [6219] = {.lex_state = 316}, - [6220] = {.lex_state = 283}, - [6221] = {.lex_state = 316}, - [6222] = {.lex_state = 315}, - [6223] = {.lex_state = 316}, - [6224] = {.lex_state = 278}, - [6225] = {.lex_state = 281}, - [6226] = {.lex_state = 320}, - [6227] = {.lex_state = 316}, - [6228] = {.lex_state = 316}, - [6229] = {.lex_state = 281}, - [6230] = {.lex_state = 281}, - [6231] = {.lex_state = 281}, - [6232] = {.lex_state = 281}, - [6233] = {.lex_state = 278}, - [6234] = {.lex_state = 278}, - [6235] = {.lex_state = 278}, - [6236] = {.lex_state = 278}, - [6237] = {.lex_state = 281}, - [6238] = {.lex_state = 278}, - [6239] = {.lex_state = 281}, - [6240] = {.lex_state = 281}, - [6241] = {.lex_state = 278}, - [6242] = {.lex_state = 281}, - [6243] = {.lex_state = 281}, - [6244] = {.lex_state = 281}, - [6245] = {.lex_state = 281}, - [6246] = {.lex_state = 281}, - [6247] = {.lex_state = 281}, - [6248] = {.lex_state = 281}, - [6249] = {.lex_state = 281}, - [6250] = {.lex_state = 281}, - [6251] = {.lex_state = 281}, - [6252] = {.lex_state = 281}, - [6253] = {.lex_state = 281}, - [6254] = {.lex_state = 316}, - [6255] = {.lex_state = 281}, - [6256] = {.lex_state = 281}, - [6257] = {.lex_state = 281}, - [6258] = {.lex_state = 281}, - [6259] = {.lex_state = 281}, - [6260] = {.lex_state = 281}, - [6261] = {.lex_state = 281}, - [6262] = {.lex_state = 281}, - [6263] = {.lex_state = 316}, + [6130] = {.lex_state = 262}, + [6131] = {.lex_state = 264}, + [6132] = {.lex_state = 280}, + [6133] = {.lex_state = 280}, + [6134] = {.lex_state = 264}, + [6135] = {.lex_state = 277}, + [6136] = {.lex_state = 280}, + [6137] = {.lex_state = 324}, + [6138] = {.lex_state = 264}, + [6139] = {.lex_state = 262}, + [6140] = {.lex_state = 280}, + [6141] = {.lex_state = 319}, + [6142] = {.lex_state = 262}, + [6143] = {.lex_state = 262}, + [6144] = {.lex_state = 338}, + [6145] = {.lex_state = 264}, + [6146] = {.lex_state = 316}, + [6147] = {.lex_state = 276}, + [6148] = {.lex_state = 280}, + [6149] = {.lex_state = 280}, + [6150] = {.lex_state = 280}, + [6151] = {.lex_state = 280}, + [6152] = {.lex_state = 280}, + [6153] = {.lex_state = 337}, + [6154] = {.lex_state = 316}, + [6155] = {.lex_state = 335}, + [6156] = {.lex_state = 280}, + [6157] = {.lex_state = 316}, + [6158] = {.lex_state = 280}, + [6159] = {.lex_state = 319}, + [6160] = {.lex_state = 280}, + [6161] = {.lex_state = 280}, + [6162] = {.lex_state = 280}, + [6163] = {.lex_state = 280}, + [6164] = {.lex_state = 280}, + [6165] = {.lex_state = 324}, + [6166] = {.lex_state = 280}, + [6167] = {.lex_state = 280}, + [6168] = {.lex_state = 280}, + [6169] = {.lex_state = 276}, + [6170] = {.lex_state = 280}, + [6171] = {.lex_state = 280}, + [6172] = {.lex_state = 280}, + [6173] = {.lex_state = 280}, + [6174] = {.lex_state = 334}, + [6175] = {.lex_state = 280}, + [6176] = {.lex_state = 319}, + [6177] = {.lex_state = 280}, + [6178] = {.lex_state = 341}, + [6179] = {.lex_state = 280}, + [6180] = {.lex_state = 337}, + [6181] = {.lex_state = 280}, + [6182] = {.lex_state = 280}, + [6183] = {.lex_state = 334}, + [6184] = {.lex_state = 318}, + [6185] = {.lex_state = 334}, + [6186] = {.lex_state = 317}, + [6187] = {.lex_state = 341}, + [6188] = {.lex_state = 280}, + [6189] = {.lex_state = 280}, + [6190] = {.lex_state = 280}, + [6191] = {.lex_state = 280}, + [6192] = {.lex_state = 280}, + [6193] = {.lex_state = 324}, + [6194] = {.lex_state = 285}, + [6195] = {.lex_state = 319}, + [6196] = {.lex_state = 319}, + [6197] = {.lex_state = 285}, + [6198] = {.lex_state = 285}, + [6199] = {.lex_state = 285}, + [6200] = {.lex_state = 316}, + [6201] = {.lex_state = 316}, + [6202] = {.lex_state = 285}, + [6203] = {.lex_state = 285}, + [6204] = {.lex_state = 316}, + [6205] = {.lex_state = 338}, + [6206] = {.lex_state = 285}, + [6207] = {.lex_state = 285}, + [6208] = {.lex_state = 285}, + [6209] = {.lex_state = 285}, + [6210] = {.lex_state = 338}, + [6211] = {.lex_state = 285}, + [6212] = {.lex_state = 285}, + [6213] = {.lex_state = 285}, + [6214] = {.lex_state = 285}, + [6215] = {.lex_state = 338}, + [6216] = {.lex_state = 285}, + [6217] = {.lex_state = 316}, + [6218] = {.lex_state = 285}, + [6219] = {.lex_state = 285}, + [6220] = {.lex_state = 324}, + [6221] = {.lex_state = 324}, + [6222] = {.lex_state = 285}, + [6223] = {.lex_state = 285}, + [6224] = {.lex_state = 285}, + [6225] = {.lex_state = 285}, + [6226] = {.lex_state = 285}, + [6227] = {.lex_state = 285}, + [6228] = {.lex_state = 285}, + [6229] = {.lex_state = 285}, + [6230] = {.lex_state = 285}, + [6231] = {.lex_state = 285}, + [6232] = {.lex_state = 285}, + [6233] = {.lex_state = 285}, + [6234] = {.lex_state = 338}, + [6235] = {.lex_state = 338}, + [6236] = {.lex_state = 316}, + [6237] = {.lex_state = 316}, + [6238] = {.lex_state = 285}, + [6239] = {.lex_state = 285}, + [6240] = {.lex_state = 285}, + [6241] = {.lex_state = 285}, + [6242] = {.lex_state = 285}, + [6243] = {.lex_state = 285}, + [6244] = {.lex_state = 285}, + [6245] = {.lex_state = 285}, + [6246] = {.lex_state = 324}, + [6247] = {.lex_state = 285}, + [6248] = {.lex_state = 324}, + [6249] = {.lex_state = 324}, + [6250] = {.lex_state = 324}, + [6251] = {.lex_state = 285}, + [6252] = {.lex_state = 338}, + [6253] = {.lex_state = 285}, + [6254] = {.lex_state = 285}, + [6255] = {.lex_state = 285}, + [6256] = {.lex_state = 279}, + [6257] = {.lex_state = 285}, + [6258] = {.lex_state = 285}, + [6259] = {.lex_state = 285}, + [6260] = {.lex_state = 338}, + [6261] = {.lex_state = 285}, + [6262] = {.lex_state = 285}, + [6263] = {.lex_state = 338}, [6264] = {.lex_state = 338}, - [6265] = {.lex_state = 316}, - [6266] = {.lex_state = 340}, - [6267] = {.lex_state = 320}, - [6268] = {.lex_state = 280}, - [6269] = {.lex_state = 317}, - [6270] = {.lex_state = 284}, - [6271] = {.lex_state = 333}, - [6272] = {.lex_state = 333}, - [6273] = {.lex_state = 333}, - [6274] = {.lex_state = 333}, - [6275] = {.lex_state = 281}, - [6276] = {.lex_state = 317}, - [6277] = {.lex_state = 333}, - [6278] = {.lex_state = 280}, - [6279] = {.lex_state = 333}, - [6280] = {.lex_state = 341}, - [6281] = {.lex_state = 333}, - [6282] = {.lex_state = 333}, - [6283] = {.lex_state = 333}, - [6284] = {.lex_state = 333}, - [6285] = {.lex_state = 333}, - [6286] = {.lex_state = 333}, - [6287] = {.lex_state = 333}, + [6265] = {.lex_state = 280}, + [6266] = {.lex_state = 280}, + [6267] = {.lex_state = 277}, + [6268] = {.lex_state = 277}, + [6269] = {.lex_state = 277}, + [6270] = {.lex_state = 319}, + [6271] = {.lex_state = 319}, + [6272] = {.lex_state = 277}, + [6273] = {.lex_state = 319}, + [6274] = {.lex_state = 319}, + [6275] = {.lex_state = 277}, + [6276] = {.lex_state = 319}, + [6277] = {.lex_state = 277}, + [6278] = {.lex_state = 319}, + [6279] = {.lex_state = 277}, + [6280] = {.lex_state = 319}, + [6281] = {.lex_state = 319}, + [6282] = {.lex_state = 280}, + [6283] = {.lex_state = 338}, + [6284] = {.lex_state = 315}, + [6285] = {.lex_state = 338}, + [6286] = {.lex_state = 319}, + [6287] = {.lex_state = 338}, [6288] = {.lex_state = 280}, - [6289] = {.lex_state = 281}, - [6290] = {.lex_state = 333}, - [6291] = {.lex_state = 338}, - [6292] = {.lex_state = 333}, - [6293] = {.lex_state = 333}, - [6294] = {.lex_state = 333}, - [6295] = {.lex_state = 317}, - [6296] = {.lex_state = 338}, - [6297] = {.lex_state = 324}, + [6289] = {.lex_state = 338}, + [6290] = {.lex_state = 277}, + [6291] = {.lex_state = 277}, + [6292] = {.lex_state = 319}, + [6293] = {.lex_state = 315}, + [6294] = {.lex_state = 319}, + [6295] = {.lex_state = 319}, + [6296] = {.lex_state = 315}, + [6297] = {.lex_state = 280}, [6298] = {.lex_state = 280}, - [6299] = {.lex_state = 338}, + [6299] = {.lex_state = 319}, [6300] = {.lex_state = 280}, - [6301] = {.lex_state = 324}, + [6301] = {.lex_state = 280}, [6302] = {.lex_state = 280}, - [6303] = {.lex_state = 281}, - [6304] = {.lex_state = 316}, - [6305] = {.lex_state = 280}, - [6306] = {.lex_state = 316}, - [6307] = {.lex_state = 317}, - [6308] = {.lex_state = 284}, - [6309] = {.lex_state = 333}, - [6310] = {.lex_state = 341}, - [6311] = {.lex_state = 338}, - [6312] = {.lex_state = 338}, - [6313] = {.lex_state = 324}, - [6314] = {.lex_state = 324}, - [6315] = {.lex_state = 338}, - [6316] = {.lex_state = 341}, - [6317] = {.lex_state = 284}, - [6318] = {.lex_state = 284}, - [6319] = {.lex_state = 278}, - [6320] = {.lex_state = 316}, - [6321] = {.lex_state = 281}, - [6322] = {.lex_state = 316}, - [6323] = {.lex_state = 316}, - [6324] = {.lex_state = 281}, - [6325] = {.lex_state = 278}, - [6326] = {.lex_state = 278}, - [6327] = {.lex_state = 278}, - [6328] = {.lex_state = 337}, - [6329] = {.lex_state = 316}, - [6330] = {.lex_state = 281}, - [6331] = {.lex_state = 316}, - [6332] = {.lex_state = 281}, - [6333] = {.lex_state = 281}, - [6334] = {.lex_state = 281}, - [6335] = {.lex_state = 317}, - [6336] = {.lex_state = 338}, - [6337] = {.lex_state = 281}, - [6338] = {.lex_state = 281}, - [6339] = {.lex_state = 281}, - [6340] = {.lex_state = 333}, - [6341] = {.lex_state = 281}, - [6342] = {.lex_state = 338}, - [6343] = {.lex_state = 281}, - [6344] = {.lex_state = 333}, - [6345] = {.lex_state = 281}, - [6346] = {.lex_state = 316}, - [6347] = {.lex_state = 316}, - [6348] = {.lex_state = 316}, - [6349] = {.lex_state = 316}, - [6350] = {.lex_state = 281}, - [6351] = {.lex_state = 316}, - [6352] = {.lex_state = 316}, - [6353] = {.lex_state = 316}, - [6354] = {.lex_state = 333}, - [6355] = {.lex_state = 281}, - [6356] = {.lex_state = 333}, - [6357] = {.lex_state = 316}, - [6358] = {.lex_state = 316}, - [6359] = {.lex_state = 338}, + [6303] = {.lex_state = 320}, + [6304] = {.lex_state = 315}, + [6305] = {.lex_state = 277}, + [6306] = {.lex_state = 277}, + [6307] = {.lex_state = 280}, + [6308] = {.lex_state = 280}, + [6309] = {.lex_state = 280}, + [6310] = {.lex_state = 315}, + [6311] = {.lex_state = 280}, + [6312] = {.lex_state = 334}, + [6313] = {.lex_state = 280}, + [6314] = {.lex_state = 277}, + [6315] = {.lex_state = 319}, + [6316] = {.lex_state = 277}, + [6317] = {.lex_state = 340}, + [6318] = {.lex_state = 277}, + [6319] = {.lex_state = 277}, + [6320] = {.lex_state = 280}, + [6321] = {.lex_state = 277}, + [6322] = {.lex_state = 280}, + [6323] = {.lex_state = 319}, + [6324] = {.lex_state = 277}, + [6325] = {.lex_state = 337}, + [6326] = {.lex_state = 280}, + [6327] = {.lex_state = 280}, + [6328] = {.lex_state = 280}, + [6329] = {.lex_state = 280}, + [6330] = {.lex_state = 280}, + [6331] = {.lex_state = 280}, + [6332] = {.lex_state = 319}, + [6333] = {.lex_state = 280}, + [6334] = {.lex_state = 280}, + [6335] = {.lex_state = 337}, + [6336] = {.lex_state = 280}, + [6337] = {.lex_state = 280}, + [6338] = {.lex_state = 280}, + [6339] = {.lex_state = 280}, + [6340] = {.lex_state = 282}, + [6341] = {.lex_state = 319}, + [6342] = {.lex_state = 280}, + [6343] = {.lex_state = 280}, + [6344] = {.lex_state = 280}, + [6345] = {.lex_state = 315}, + [6346] = {.lex_state = 280}, + [6347] = {.lex_state = 280}, + [6348] = {.lex_state = 280}, + [6349] = {.lex_state = 280}, + [6350] = {.lex_state = 277}, + [6351] = {.lex_state = 337}, + [6352] = {.lex_state = 315}, + [6353] = {.lex_state = 319}, + [6354] = {.lex_state = 280}, + [6355] = {.lex_state = 315}, + [6356] = {.lex_state = 315}, + [6357] = {.lex_state = 319}, + [6358] = {.lex_state = 280}, + [6359] = {.lex_state = 280}, [6360] = {.lex_state = 338}, - [6361] = {.lex_state = 333}, - [6362] = {.lex_state = 316}, - [6363] = {.lex_state = 281}, - [6364] = {.lex_state = 338}, - [6365] = {.lex_state = 316}, - [6366] = {.lex_state = 281}, - [6367] = {.lex_state = 316}, - [6368] = {.lex_state = 316}, - [6369] = {.lex_state = 333}, - [6370] = {.lex_state = 338}, - [6371] = {.lex_state = 281}, - [6372] = {.lex_state = 316}, - [6373] = {.lex_state = 281}, - [6374] = {.lex_state = 333}, - [6375] = {.lex_state = 316}, - [6376] = {.lex_state = 316}, - [6377] = {.lex_state = 316}, - [6378] = {.lex_state = 316}, - [6379] = {.lex_state = 316}, - [6380] = {.lex_state = 278}, - [6381] = {.lex_state = 278}, - [6382] = {.lex_state = 281}, - [6383] = {.lex_state = 278}, - [6384] = {.lex_state = 278}, - [6385] = {.lex_state = 278}, - [6386] = {.lex_state = 316}, - [6387] = {.lex_state = 281}, - [6388] = {.lex_state = 316}, - [6389] = {.lex_state = 278}, - [6390] = {.lex_state = 333}, - [6391] = {.lex_state = 281}, - [6392] = {.lex_state = 337}, - [6393] = {.lex_state = 316}, - [6394] = {.lex_state = 281}, - [6395] = {.lex_state = 337}, - [6396] = {.lex_state = 281}, - [6397] = {.lex_state = 281}, - [6398] = {.lex_state = 281}, - [6399] = {.lex_state = 281}, - [6400] = {.lex_state = 281}, - [6401] = {.lex_state = 281}, - [6402] = {.lex_state = 281}, - [6403] = {.lex_state = 281}, - [6404] = {.lex_state = 281}, - [6405] = {.lex_state = 337}, - [6406] = {.lex_state = 337}, - [6407] = {.lex_state = 281}, - [6408] = {.lex_state = 337}, - [6409] = {.lex_state = 317}, - [6410] = {.lex_state = 278}, - [6411] = {.lex_state = 324}, - [6412] = {.lex_state = 281}, - [6413] = {.lex_state = 324}, - [6414] = {.lex_state = 281}, - [6415] = {.lex_state = 278}, - [6416] = {.lex_state = 281}, - [6417] = {.lex_state = 337}, - [6418] = {.lex_state = 281}, - [6419] = {.lex_state = 316}, - [6420] = {.lex_state = 278}, - [6421] = {.lex_state = 317}, - [6422] = {.lex_state = 281}, - [6423] = {.lex_state = 335}, - [6424] = {.lex_state = 281}, - [6425] = {.lex_state = 281}, - [6426] = {.lex_state = 281}, - [6427] = {.lex_state = 281}, - [6428] = {.lex_state = 281}, - [6429] = {.lex_state = 281}, - [6430] = {.lex_state = 281}, - [6431] = {.lex_state = 281}, - [6432] = {.lex_state = 281}, - [6433] = {.lex_state = 281}, - [6434] = {.lex_state = 316}, - [6435] = {.lex_state = 278}, - [6436] = {.lex_state = 281}, - [6437] = {.lex_state = 281}, - [6438] = {.lex_state = 337}, - [6439] = {.lex_state = 316}, - [6440] = {.lex_state = 281}, - [6441] = {.lex_state = 337}, - [6442] = {.lex_state = 281}, - [6443] = {.lex_state = 316}, - [6444] = {.lex_state = 281}, - [6445] = {.lex_state = 281}, - [6446] = {.lex_state = 281}, - [6447] = {.lex_state = 281}, - [6448] = {.lex_state = 316}, - [6449] = {.lex_state = 281}, - [6450] = {.lex_state = 278}, - [6451] = {.lex_state = 316}, - [6452] = {.lex_state = 278}, - [6453] = {.lex_state = 278}, - [6454] = {.lex_state = 316}, - [6455] = {.lex_state = 281}, - [6456] = {.lex_state = 281}, - [6457] = {.lex_state = 316}, - [6458] = {.lex_state = 316}, - [6459] = {.lex_state = 316}, - [6460] = {.lex_state = 278}, - [6461] = {.lex_state = 278}, - [6462] = {.lex_state = 278}, - [6463] = {.lex_state = 281}, - [6464] = {.lex_state = 278}, - [6465] = {.lex_state = 281}, - [6466] = {.lex_state = 278}, - [6467] = {.lex_state = 316}, - [6468] = {.lex_state = 278}, - [6469] = {.lex_state = 278}, - [6470] = {.lex_state = 316}, - [6471] = {.lex_state = 281}, - [6472] = {.lex_state = 281}, - [6473] = {.lex_state = 316}, - [6474] = {.lex_state = 281}, - [6475] = {.lex_state = 316}, - [6476] = {.lex_state = 341}, - [6477] = {.lex_state = 316}, - [6478] = {.lex_state = 316}, - [6479] = {.lex_state = 316}, - [6480] = {.lex_state = 281}, - [6481] = {.lex_state = 316}, - [6482] = {.lex_state = 316}, - [6483] = {.lex_state = 316}, - [6484] = {.lex_state = 316}, - [6485] = {.lex_state = 341}, - [6486] = {.lex_state = 316}, - [6487] = {.lex_state = 281}, - [6488] = {.lex_state = 316}, - [6489] = {.lex_state = 316}, - [6490] = {.lex_state = 316}, - [6491] = {.lex_state = 278}, - [6492] = {.lex_state = 316}, - [6493] = {.lex_state = 316}, - [6494] = {.lex_state = 341}, - [6495] = {.lex_state = 316}, - [6496] = {.lex_state = 316}, - [6497] = {.lex_state = 316}, - [6498] = {.lex_state = 316}, - [6499] = {.lex_state = 278}, - [6500] = {.lex_state = 316}, - [6501] = {.lex_state = 316}, - [6502] = {.lex_state = 278}, - [6503] = {.lex_state = 316}, - [6504] = {.lex_state = 316}, - [6505] = {.lex_state = 316}, - [6506] = {.lex_state = 316}, - [6507] = {.lex_state = 316}, - [6508] = {.lex_state = 316}, - [6509] = {.lex_state = 278}, - [6510] = {.lex_state = 281}, - [6511] = {.lex_state = 284}, - [6512] = {.lex_state = 281}, - [6513] = {.lex_state = 278}, - [6514] = {.lex_state = 278}, - [6515] = {.lex_state = 316}, - [6516] = {.lex_state = 278}, - [6517] = {.lex_state = 278}, - [6518] = {.lex_state = 316}, - [6519] = {.lex_state = 337}, - [6520] = {.lex_state = 278}, - [6521] = {.lex_state = 281}, - [6522] = {.lex_state = 281}, - [6523] = {.lex_state = 337}, - [6524] = {.lex_state = 278}, - [6525] = {.lex_state = 337}, + [6361] = {.lex_state = 280}, + [6362] = {.lex_state = 280}, + [6363] = {.lex_state = 277}, + [6364] = {.lex_state = 280}, + [6365] = {.lex_state = 280}, + [6366] = {.lex_state = 280}, + [6367] = {.lex_state = 315}, + [6368] = {.lex_state = 280}, + [6369] = {.lex_state = 280}, + [6370] = {.lex_state = 280}, + [6371] = {.lex_state = 320}, + [6372] = {.lex_state = 338}, + [6373] = {.lex_state = 280}, + [6374] = {.lex_state = 282}, + [6375] = {.lex_state = 280}, + [6376] = {.lex_state = 315}, + [6377] = {.lex_state = 338}, + [6378] = {.lex_state = 280}, + [6379] = {.lex_state = 279}, + [6380] = {.lex_state = 334}, + [6381] = {.lex_state = 279}, + [6382] = {.lex_state = 280}, + [6383] = {.lex_state = 334}, + [6384] = {.lex_state = 338}, + [6385] = {.lex_state = 334}, + [6386] = {.lex_state = 283}, + [6387] = {.lex_state = 338}, + [6388] = {.lex_state = 338}, + [6389] = {.lex_state = 279}, + [6390] = {.lex_state = 279}, + [6391] = {.lex_state = 334}, + [6392] = {.lex_state = 279}, + [6393] = {.lex_state = 324}, + [6394] = {.lex_state = 280}, + [6395] = {.lex_state = 324}, + [6396] = {.lex_state = 334}, + [6397] = {.lex_state = 324}, + [6398] = {.lex_state = 334}, + [6399] = {.lex_state = 279}, + [6400] = {.lex_state = 324}, + [6401] = {.lex_state = 341}, + [6402] = {.lex_state = 283}, + [6403] = {.lex_state = 316}, + [6404] = {.lex_state = 283}, + [6405] = {.lex_state = 338}, + [6406] = {.lex_state = 334}, + [6407] = {.lex_state = 334}, + [6408] = {.lex_state = 316}, + [6409] = {.lex_state = 319}, + [6410] = {.lex_state = 319}, + [6411] = {.lex_state = 334}, + [6412] = {.lex_state = 316}, + [6413] = {.lex_state = 334}, + [6414] = {.lex_state = 334}, + [6415] = {.lex_state = 334}, + [6416] = {.lex_state = 334}, + [6417] = {.lex_state = 279}, + [6418] = {.lex_state = 334}, + [6419] = {.lex_state = 283}, + [6420] = {.lex_state = 341}, + [6421] = {.lex_state = 334}, + [6422] = {.lex_state = 334}, + [6423] = {.lex_state = 334}, + [6424] = {.lex_state = 316}, + [6425] = {.lex_state = 338}, + [6426] = {.lex_state = 341}, + [6427] = {.lex_state = 334}, + [6428] = {.lex_state = 280}, + [6429] = {.lex_state = 280}, + [6430] = {.lex_state = 319}, + [6431] = {.lex_state = 280}, + [6432] = {.lex_state = 280}, + [6433] = {.lex_state = 280}, + [6434] = {.lex_state = 280}, + [6435] = {.lex_state = 280}, + [6436] = {.lex_state = 280}, + [6437] = {.lex_state = 280}, + [6438] = {.lex_state = 277}, + [6439] = {.lex_state = 280}, + [6440] = {.lex_state = 280}, + [6441] = {.lex_state = 277}, + [6442] = {.lex_state = 319}, + [6443] = {.lex_state = 277}, + [6444] = {.lex_state = 319}, + [6445] = {.lex_state = 319}, + [6446] = {.lex_state = 277}, + [6447] = {.lex_state = 280}, + [6448] = {.lex_state = 319}, + [6449] = {.lex_state = 319}, + [6450] = {.lex_state = 280}, + [6451] = {.lex_state = 338}, + [6452] = {.lex_state = 338}, + [6453] = {.lex_state = 319}, + [6454] = {.lex_state = 319}, + [6455] = {.lex_state = 280}, + [6456] = {.lex_state = 319}, + [6457] = {.lex_state = 277}, + [6458] = {.lex_state = 338}, + [6459] = {.lex_state = 338}, + [6460] = {.lex_state = 319}, + [6461] = {.lex_state = 319}, + [6462] = {.lex_state = 319}, + [6463] = {.lex_state = 277}, + [6464] = {.lex_state = 338}, + [6465] = {.lex_state = 319}, + [6466] = {.lex_state = 319}, + [6467] = {.lex_state = 337}, + [6468] = {.lex_state = 319}, + [6469] = {.lex_state = 338}, + [6470] = {.lex_state = 319}, + [6471] = {.lex_state = 319}, + [6472] = {.lex_state = 319}, + [6473] = {.lex_state = 319}, + [6474] = {.lex_state = 337}, + [6475] = {.lex_state = 280}, + [6476] = {.lex_state = 319}, + [6477] = {.lex_state = 319}, + [6478] = {.lex_state = 334}, + [6479] = {.lex_state = 280}, + [6480] = {.lex_state = 280}, + [6481] = {.lex_state = 334}, + [6482] = {.lex_state = 280}, + [6483] = {.lex_state = 280}, + [6484] = {.lex_state = 334}, + [6485] = {.lex_state = 334}, + [6486] = {.lex_state = 334}, + [6487] = {.lex_state = 280}, + [6488] = {.lex_state = 334}, + [6489] = {.lex_state = 334}, + [6490] = {.lex_state = 319}, + [6491] = {.lex_state = 316}, + [6492] = {.lex_state = 319}, + [6493] = {.lex_state = 319}, + [6494] = {.lex_state = 319}, + [6495] = {.lex_state = 319}, + [6496] = {.lex_state = 277}, + [6497] = {.lex_state = 277}, + [6498] = {.lex_state = 277}, + [6499] = {.lex_state = 277}, + [6500] = {.lex_state = 334}, + [6501] = {.lex_state = 319}, + [6502] = {.lex_state = 280}, + [6503] = {.lex_state = 280}, + [6504] = {.lex_state = 280}, + [6505] = {.lex_state = 319}, + [6506] = {.lex_state = 337}, + [6507] = {.lex_state = 337}, + [6508] = {.lex_state = 337}, + [6509] = {.lex_state = 280}, + [6510] = {.lex_state = 280}, + [6511] = {.lex_state = 280}, + [6512] = {.lex_state = 280}, + [6513] = {.lex_state = 319}, + [6514] = {.lex_state = 280}, + [6515] = {.lex_state = 277}, + [6516] = {.lex_state = 280}, + [6517] = {.lex_state = 280}, + [6518] = {.lex_state = 280}, + [6519] = {.lex_state = 280}, + [6520] = {.lex_state = 280}, + [6521] = {.lex_state = 280}, + [6522] = {.lex_state = 316}, + [6523] = {.lex_state = 316}, + [6524] = {.lex_state = 280}, + [6525] = {.lex_state = 280}, [6526] = {.lex_state = 337}, - [6527] = {.lex_state = 337}, + [6527] = {.lex_state = 277}, [6528] = {.lex_state = 337}, - [6529] = {.lex_state = 316}, - [6530] = {.lex_state = 337}, - [6531] = {.lex_state = 337}, - [6532] = {.lex_state = 316}, - [6533] = {.lex_state = 281}, - [6534] = {.lex_state = 278}, - [6535] = {.lex_state = 284}, - [6536] = {.lex_state = 278}, - [6537] = {.lex_state = 281}, - [6538] = {.lex_state = 278}, - [6539] = {.lex_state = 278}, - [6540] = {.lex_state = 278}, - [6541] = {.lex_state = 313}, - [6542] = {.lex_state = 316}, - [6543] = {.lex_state = 316}, - [6544] = {.lex_state = 281}, - [6545] = {.lex_state = 337}, - [6546] = {.lex_state = 281}, - [6547] = {.lex_state = 281}, - [6548] = {.lex_state = 281}, - [6549] = {.lex_state = 321}, - [6550] = {.lex_state = 281}, - [6551] = {.lex_state = 281}, - [6552] = {.lex_state = 337}, - [6553] = {.lex_state = 316}, - [6554] = {.lex_state = 278}, - [6555] = {.lex_state = 278}, - [6556] = {.lex_state = 281}, - [6557] = {.lex_state = 278}, - [6558] = {.lex_state = 278}, - [6559] = {.lex_state = 281}, - [6560] = {.lex_state = 281}, - [6561] = {.lex_state = 316}, - [6562] = {.lex_state = 281}, - [6563] = {.lex_state = 281}, - [6564] = {.lex_state = 278}, - [6565] = {.lex_state = 281}, - [6566] = {.lex_state = 281}, - [6567] = {.lex_state = 281}, - [6568] = {.lex_state = 281}, - [6569] = {.lex_state = 338}, - [6570] = {.lex_state = 333}, - [6571] = {.lex_state = 316}, - [6572] = {.lex_state = 278}, - [6573] = {.lex_state = 278}, - [6574] = {.lex_state = 278}, - [6575] = {.lex_state = 278}, - [6576] = {.lex_state = 334}, - [6577] = {.lex_state = 278}, - [6578] = {.lex_state = 278}, - [6579] = {.lex_state = 278}, - [6580] = {.lex_state = 278}, - [6581] = {.lex_state = 278}, - [6582] = {.lex_state = 278}, - [6583] = {.lex_state = 341}, - [6584] = {.lex_state = 281}, - [6585] = {.lex_state = 278}, - [6586] = {.lex_state = 321}, - [6587] = {.lex_state = 278}, - [6588] = {.lex_state = 278}, - [6589] = {.lex_state = 278}, - [6590] = {.lex_state = 316}, - [6591] = {.lex_state = 338}, - [6592] = {.lex_state = 281}, - [6593] = {.lex_state = 281}, - [6594] = {.lex_state = 278}, - [6595] = {.lex_state = 316}, - [6596] = {.lex_state = 281}, - [6597] = {.lex_state = 278}, - [6598] = {.lex_state = 278}, - [6599] = {.lex_state = 316}, - [6600] = {.lex_state = 281}, - [6601] = {.lex_state = 316}, - [6602] = {.lex_state = 278}, - [6603] = {.lex_state = 337}, - [6604] = {.lex_state = 316}, - [6605] = {.lex_state = 337}, - [6606] = {.lex_state = 337}, - [6607] = {.lex_state = 281}, - [6608] = {.lex_state = 281}, - [6609] = {.lex_state = 281}, - [6610] = {.lex_state = 281}, - [6611] = {.lex_state = 337}, - [6612] = {.lex_state = 278}, - [6613] = {.lex_state = 337}, - [6614] = {.lex_state = 333}, - [6615] = {.lex_state = 281}, - [6616] = {.lex_state = 281}, - [6617] = {.lex_state = 281}, - [6618] = {.lex_state = 281}, - [6619] = {.lex_state = 278}, - [6620] = {.lex_state = 281}, - [6621] = {.lex_state = 281}, - [6622] = {.lex_state = 281}, - [6623] = {.lex_state = 337}, - [6624] = {.lex_state = 281}, - [6625] = {.lex_state = 281}, - [6626] = {.lex_state = 278}, - [6627] = {.lex_state = 278}, - [6628] = {.lex_state = 278}, - [6629] = {.lex_state = 278}, - [6630] = {.lex_state = 278}, - [6631] = {.lex_state = 278}, - [6632] = {.lex_state = 316}, - [6633] = {.lex_state = 281}, - [6634] = {.lex_state = 316}, - [6635] = {.lex_state = 316}, - [6636] = {.lex_state = 281}, - [6637] = {.lex_state = 316}, - [6638] = {.lex_state = 316}, - [6639] = {.lex_state = 337}, - [6640] = {.lex_state = 316}, - [6641] = {.lex_state = 316}, - [6642] = {.lex_state = 316}, - [6643] = {.lex_state = 278}, - [6644] = {.lex_state = 316}, - [6645] = {.lex_state = 316}, - [6646] = {.lex_state = 316}, - [6647] = {.lex_state = 316}, - [6648] = {.lex_state = 281}, - [6649] = {.lex_state = 281}, - [6650] = {.lex_state = 316}, - [6651] = {.lex_state = 316}, - [6652] = {.lex_state = 316}, - [6653] = {.lex_state = 278}, - [6654] = {.lex_state = 281}, - [6655] = {.lex_state = 316}, - [6656] = {.lex_state = 278}, - [6657] = {.lex_state = 316}, - [6658] = {.lex_state = 337}, - [6659] = {.lex_state = 316}, - [6660] = {.lex_state = 316}, - [6661] = {.lex_state = 281}, - [6662] = {.lex_state = 281}, - [6663] = {.lex_state = 316}, - [6664] = {.lex_state = 278}, - [6665] = {.lex_state = 278}, - [6666] = {.lex_state = 278}, - [6667] = {.lex_state = 281}, - [6668] = {.lex_state = 278}, - [6669] = {.lex_state = 337}, - [6670] = {.lex_state = 316}, - [6671] = {.lex_state = 281}, - [6672] = {.lex_state = 281}, - [6673] = {.lex_state = 316}, - [6674] = {.lex_state = 281}, - [6675] = {.lex_state = 281}, - [6676] = {.lex_state = 316}, - [6677] = {.lex_state = 316}, - [6678] = {.lex_state = 281}, - [6679] = {.lex_state = 316}, - [6680] = {.lex_state = 278}, - [6681] = {.lex_state = 281}, - [6682] = {.lex_state = 278}, - [6683] = {.lex_state = 316}, - [6684] = {.lex_state = 278}, - [6685] = {.lex_state = 281}, - [6686] = {.lex_state = 281}, - [6687] = {.lex_state = 281}, - [6688] = {.lex_state = 281}, - [6689] = {.lex_state = 281}, - [6690] = {.lex_state = 316}, - [6691] = {.lex_state = 278}, - [6692] = {.lex_state = 281}, - [6693] = {.lex_state = 281}, - [6694] = {.lex_state = 281}, - [6695] = {.lex_state = 281}, - [6696] = {.lex_state = 281}, - [6697] = {.lex_state = 316}, - [6698] = {.lex_state = 281}, - [6699] = {.lex_state = 278}, - [6700] = {.lex_state = 278}, - [6701] = {.lex_state = 281}, - [6702] = {.lex_state = 278}, - [6703] = {.lex_state = 337}, - [6704] = {.lex_state = 281}, - [6705] = {.lex_state = 281}, - [6706] = {.lex_state = 278}, - [6707] = {.lex_state = 281}, - [6708] = {.lex_state = 281}, - [6709] = {.lex_state = 316}, - [6710] = {.lex_state = 281}, - [6711] = {.lex_state = 316}, - [6712] = {.lex_state = 281}, - [6713] = {.lex_state = 280}, - [6714] = {.lex_state = 281}, - [6715] = {.lex_state = 278}, - [6716] = {.lex_state = 316}, - [6717] = {.lex_state = 281}, - [6718] = {.lex_state = 316}, - [6719] = {.lex_state = 278}, - [6720] = {.lex_state = 278}, - [6721] = {.lex_state = 281}, - [6722] = {.lex_state = 316}, - [6723] = {.lex_state = 278}, - [6724] = {.lex_state = 316}, - [6725] = {.lex_state = 278}, - [6726] = {.lex_state = 316}, - [6727] = {.lex_state = 281}, - [6728] = {.lex_state = 281}, - [6729] = {.lex_state = 337}, - [6730] = {.lex_state = 281}, - [6731] = {.lex_state = 281}, - [6732] = {.lex_state = 281}, - [6733] = {.lex_state = 281}, - [6734] = {.lex_state = 281}, - [6735] = {.lex_state = 281}, - [6736] = {.lex_state = 281}, - [6737] = {.lex_state = 281}, - [6738] = {.lex_state = 281}, - [6739] = {.lex_state = 281}, - [6740] = {.lex_state = 281}, - [6741] = {.lex_state = 281}, - [6742] = {.lex_state = 281}, - [6743] = {.lex_state = 281}, - [6744] = {.lex_state = 281}, - [6745] = {.lex_state = 281}, - [6746] = {.lex_state = 281}, - [6747] = {.lex_state = 281}, - [6748] = {.lex_state = 281}, - [6749] = {.lex_state = 281}, - [6750] = {.lex_state = 281}, - [6751] = {.lex_state = 278}, - [6752] = {.lex_state = 281}, - [6753] = {.lex_state = 281}, - [6754] = {.lex_state = 278}, - [6755] = {.lex_state = 278}, - [6756] = {.lex_state = 316}, - [6757] = {.lex_state = 278}, - [6758] = {.lex_state = 316}, - [6759] = {.lex_state = 281}, - [6760] = {.lex_state = 337}, - [6761] = {.lex_state = 281}, - [6762] = {.lex_state = 278}, - [6763] = {.lex_state = 281}, - [6764] = {.lex_state = 316}, - [6765] = {.lex_state = 281}, - [6766] = {.lex_state = 316}, - [6767] = {.lex_state = 278}, - [6768] = {.lex_state = 316}, - [6769] = {.lex_state = 316}, - [6770] = {.lex_state = 281}, - [6771] = {.lex_state = 281}, - [6772] = {.lex_state = 278}, - [6773] = {.lex_state = 316}, - [6774] = {.lex_state = 281}, - [6775] = {.lex_state = 281}, - [6776] = {.lex_state = 281}, - [6777] = {.lex_state = 281}, - [6778] = {.lex_state = 278}, - [6779] = {.lex_state = 281}, - [6780] = {.lex_state = 281}, - [6781] = {.lex_state = 278}, - [6782] = {.lex_state = 281}, - [6783] = {.lex_state = 316}, - [6784] = {.lex_state = 281}, - [6785] = {.lex_state = 278}, - [6786] = {.lex_state = 281}, - [6787] = {.lex_state = 281}, - [6788] = {.lex_state = 281}, - [6789] = {.lex_state = 281}, - [6790] = {.lex_state = 316}, - [6791] = {.lex_state = 337}, - [6792] = {.lex_state = 278}, - [6793] = {.lex_state = 281}, - [6794] = {.lex_state = 281}, - [6795] = {.lex_state = 281}, - [6796] = {.lex_state = 316}, - [6797] = {.lex_state = 281}, - [6798] = {.lex_state = 278}, - [6799] = {.lex_state = 281}, - [6800] = {.lex_state = 281}, - [6801] = {.lex_state = 281}, - [6802] = {.lex_state = 281}, - [6803] = {.lex_state = 281}, - [6804] = {.lex_state = 342}, - [6805] = {.lex_state = 281}, - [6806] = {.lex_state = 281}, - [6807] = {.lex_state = 281}, - [6808] = {.lex_state = 281}, - [6809] = {.lex_state = 281}, - [6810] = {.lex_state = 281}, - [6811] = {.lex_state = 281}, - [6812] = {.lex_state = 281}, - [6813] = {.lex_state = 281}, - [6814] = {.lex_state = 278}, - [6815] = {.lex_state = 281}, - [6816] = {.lex_state = 281}, - [6817] = {.lex_state = 281}, - [6818] = {.lex_state = 281}, - [6819] = {.lex_state = 316}, - [6820] = {.lex_state = 286}, - [6821] = {.lex_state = 281}, - [6822] = {.lex_state = 337}, - [6823] = {.lex_state = 281}, - [6824] = {.lex_state = 281}, - [6825] = {.lex_state = 286}, - [6826] = {.lex_state = 281}, - [6827] = {.lex_state = 281}, - [6828] = {.lex_state = 281}, - [6829] = {.lex_state = 286}, - [6830] = {.lex_state = 278}, - [6831] = {.lex_state = 286}, - [6832] = {.lex_state = 281}, - [6833] = {.lex_state = 281}, - [6834] = {.lex_state = 326}, - [6835] = {.lex_state = 281}, - [6836] = {.lex_state = 281}, - [6837] = {.lex_state = 281}, - [6838] = {.lex_state = 286}, - [6839] = {.lex_state = 286}, - [6840] = {.lex_state = 281}, - [6841] = {.lex_state = 286}, - [6842] = {.lex_state = 333}, - [6843] = {.lex_state = 286}, - [6844] = {.lex_state = 278}, - [6845] = {.lex_state = 286}, - [6846] = {.lex_state = 278}, - [6847] = {.lex_state = 281}, - [6848] = {.lex_state = 337}, - [6849] = {.lex_state = 286}, - [6850] = {.lex_state = 281}, - [6851] = {.lex_state = 281}, - [6852] = {.lex_state = 278}, - [6853] = {.lex_state = 278}, - [6854] = {.lex_state = 337}, - [6855] = {.lex_state = 286}, - [6856] = {.lex_state = 278}, - [6857] = {.lex_state = 278}, - [6858] = {.lex_state = 281}, - [6859] = {.lex_state = 281}, - [6860] = {.lex_state = 281}, - [6861] = {.lex_state = 281}, - [6862] = {.lex_state = 281}, - [6863] = {.lex_state = 281}, - [6864] = {.lex_state = 281}, - [6865] = {.lex_state = 281}, - [6866] = {.lex_state = 286}, - [6867] = {.lex_state = 281}, - [6868] = {.lex_state = 286}, - [6869] = {.lex_state = 278}, - [6870] = {.lex_state = 278}, - [6871] = {.lex_state = 337}, - [6872] = {.lex_state = 281}, - [6873] = {.lex_state = 286}, - [6874] = {.lex_state = 278}, - [6875] = {.lex_state = 316}, - [6876] = {.lex_state = 316}, - [6877] = {.lex_state = 286}, - [6878] = {.lex_state = 281}, - [6879] = {.lex_state = 281}, - [6880] = {.lex_state = 281}, - [6881] = {.lex_state = 286}, - [6882] = {.lex_state = 278}, - [6883] = {.lex_state = 281}, - [6884] = {.lex_state = 286}, - [6885] = {.lex_state = 281}, - [6886] = {.lex_state = 286}, - [6887] = {.lex_state = 281}, - [6888] = {.lex_state = 278}, - [6889] = {.lex_state = 281}, - [6890] = {.lex_state = 278}, - [6891] = {.lex_state = 281}, - [6892] = {.lex_state = 278}, - [6893] = {.lex_state = 337}, - [6894] = {.lex_state = 281}, - [6895] = {.lex_state = 281}, - [6896] = {.lex_state = 286}, - [6897] = {.lex_state = 281}, - [6898] = {.lex_state = 278}, - [6899] = {.lex_state = 281}, - [6900] = {.lex_state = 281}, - [6901] = {.lex_state = 281}, - [6902] = {.lex_state = 281}, - [6903] = {.lex_state = 281}, - [6904] = {.lex_state = 286}, - [6905] = {.lex_state = 278}, - [6906] = {.lex_state = 278}, - [6907] = {.lex_state = 281}, - [6908] = {.lex_state = 281}, - [6909] = {.lex_state = 278}, - [6910] = {.lex_state = 278}, - [6911] = {.lex_state = 278}, - [6912] = {.lex_state = 338}, - [6913] = {.lex_state = 278}, - [6914] = {.lex_state = 278}, - [6915] = {.lex_state = 281}, - [6916] = {.lex_state = 281}, - [6917] = {.lex_state = 278}, - [6918] = {.lex_state = 281}, - [6919] = {.lex_state = 338}, - [6920] = {.lex_state = 281}, - [6921] = {.lex_state = 281}, - [6922] = {.lex_state = 278}, - [6923] = {.lex_state = 281}, - [6924] = {.lex_state = 316}, - [6925] = {.lex_state = 281}, - [6926] = {.lex_state = 281}, - [6927] = {.lex_state = 286}, - [6928] = {.lex_state = 281}, - [6929] = {.lex_state = 281}, - [6930] = {.lex_state = 278}, - [6931] = {.lex_state = 281}, - [6932] = {.lex_state = 281}, - [6933] = {.lex_state = 278}, - [6934] = {.lex_state = 286}, - [6935] = {.lex_state = 281}, - [6936] = {.lex_state = 281}, - [6937] = {.lex_state = 281}, - [6938] = {.lex_state = 281}, - [6939] = {.lex_state = 278}, - [6940] = {.lex_state = 278}, - [6941] = {.lex_state = 278}, - [6942] = {.lex_state = 281}, - [6943] = {.lex_state = 281}, - [6944] = {.lex_state = 278}, - [6945] = {.lex_state = 278}, - [6946] = {.lex_state = 278}, - [6947] = {.lex_state = 286}, - [6948] = {.lex_state = 281}, - [6949] = {.lex_state = 278}, - [6950] = {.lex_state = 281}, - [6951] = {.lex_state = 286}, - [6952] = {.lex_state = 278}, - [6953] = {.lex_state = 281}, - [6954] = {.lex_state = 281}, - [6955] = {.lex_state = 278}, - [6956] = {.lex_state = 281}, - [6957] = {.lex_state = 281}, - [6958] = {.lex_state = 281}, - [6959] = {.lex_state = 286}, - [6960] = {.lex_state = 286}, - [6961] = {.lex_state = 281}, - [6962] = {.lex_state = 281}, - [6963] = {.lex_state = 281}, - [6964] = {.lex_state = 281}, - [6965] = {.lex_state = 326}, - [6966] = {.lex_state = 286}, - [6967] = {.lex_state = 278}, - [6968] = {.lex_state = 278}, - [6969] = {.lex_state = 281}, - [6970] = {.lex_state = 278}, - [6971] = {.lex_state = 281}, - [6972] = {.lex_state = 281}, - [6973] = {.lex_state = 337}, - [6974] = {.lex_state = 278}, - [6975] = {.lex_state = 278}, - [6976] = {.lex_state = 278}, - [6977] = {.lex_state = 281}, - [6978] = {.lex_state = 281}, - [6979] = {.lex_state = 278}, - [6980] = {.lex_state = 286}, - [6981] = {.lex_state = 278}, - [6982] = {.lex_state = 278}, - [6983] = {.lex_state = 281}, - [6984] = {.lex_state = 278}, - [6985] = {.lex_state = 281}, - [6986] = {.lex_state = 278}, - [6987] = {.lex_state = 278}, - [6988] = {.lex_state = 281}, - [6989] = {.lex_state = 278}, - [6990] = {.lex_state = 281}, - [6991] = {.lex_state = 281}, - [6992] = {.lex_state = 278}, - [6993] = {.lex_state = 338}, - [6994] = {.lex_state = 322}, - [6995] = {.lex_state = 337}, - [6996] = {.lex_state = 316}, - [6997] = {.lex_state = 278}, - [6998] = {.lex_state = 338}, - [6999] = {.lex_state = 278}, - [7000] = {.lex_state = 281}, - [7001] = {.lex_state = 316}, - [7002] = {.lex_state = 286}, - [7003] = {.lex_state = 278}, - [7004] = {.lex_state = 281}, - [7005] = {.lex_state = 278}, - [7006] = {.lex_state = 278}, - [7007] = {.lex_state = 281}, - [7008] = {.lex_state = 322}, - [7009] = {.lex_state = 286}, - [7010] = {.lex_state = 281}, - [7011] = {.lex_state = 278}, - [7012] = {.lex_state = 286}, - [7013] = {.lex_state = 281}, - [7014] = {.lex_state = 278}, - [7015] = {.lex_state = 286}, - [7016] = {.lex_state = 281}, - [7017] = {.lex_state = 281}, - [7018] = {.lex_state = 334}, - [7019] = {.lex_state = 337}, - [7020] = {.lex_state = 286}, - [7021] = {.lex_state = 342}, - [7022] = {.lex_state = 281}, - [7023] = {.lex_state = 281}, - [7024] = {.lex_state = 281}, - [7025] = {.lex_state = 278}, - [7026] = {.lex_state = 338}, - [7027] = {.lex_state = 286}, - [7028] = {.lex_state = 278}, - [7029] = {.lex_state = 281}, - [7030] = {.lex_state = 278}, - [7031] = {.lex_state = 281}, - [7032] = {.lex_state = 316}, - [7033] = {.lex_state = 337}, - [7034] = {.lex_state = 337}, - [7035] = {.lex_state = 278}, - [7036] = {.lex_state = 337}, - [7037] = {.lex_state = 281}, - [7038] = {.lex_state = 286}, - [7039] = {.lex_state = 286}, - [7040] = {.lex_state = 337}, - [7041] = {.lex_state = 337}, - [7042] = {.lex_state = 278}, - [7043] = {.lex_state = 337}, - [7044] = {.lex_state = 278}, - [7045] = {.lex_state = 286}, - [7046] = {.lex_state = 281}, - [7047] = {.lex_state = 281}, - [7048] = {.lex_state = 278}, - [7049] = {.lex_state = 281}, - [7050] = {.lex_state = 278}, - [7051] = {.lex_state = 278}, - [7052] = {.lex_state = 286}, - [7053] = {.lex_state = 281}, - [7054] = {.lex_state = 281}, - [7055] = {.lex_state = 278}, - [7056] = {.lex_state = 337}, - [7057] = {.lex_state = 337}, - [7058] = {.lex_state = 286}, - [7059] = {.lex_state = 281}, - [7060] = {.lex_state = 281}, - [7061] = {.lex_state = 281}, - [7062] = {.lex_state = 286}, - [7063] = {.lex_state = 281}, - [7064] = {.lex_state = 281}, - [7065] = {.lex_state = 286}, - [7066] = {.lex_state = 316}, - [7067] = {.lex_state = 316}, - [7068] = {.lex_state = 281}, - [7069] = {.lex_state = 278}, - [7070] = {.lex_state = 281}, - [7071] = {.lex_state = 281}, - [7072] = {.lex_state = 281}, - [7073] = {.lex_state = 281}, - [7074] = {.lex_state = 281}, - [7075] = {.lex_state = 286}, - [7076] = {.lex_state = 281}, - [7077] = {.lex_state = 281}, - [7078] = {.lex_state = 281}, - [7079] = {.lex_state = 281}, - [7080] = {.lex_state = 281}, - [7081] = {.lex_state = 281}, - [7082] = {.lex_state = 281}, - [7083] = {.lex_state = 281}, - [7084] = {.lex_state = 337}, - [7085] = {.lex_state = 286}, - [7086] = {.lex_state = 337}, - [7087] = {.lex_state = 265}, - [7088] = {.lex_state = 265}, - [7089] = {.lex_state = 265}, - [7090] = {.lex_state = 265}, - [7091] = {.lex_state = 265}, - [7092] = {.lex_state = 265}, - [7093] = {.lex_state = 316}, - [7094] = {.lex_state = 281}, - [7095] = {.lex_state = 265}, - [7096] = {.lex_state = 265}, - [7097] = {.lex_state = 265}, - [7098] = {.lex_state = 265}, - [7099] = {.lex_state = 281}, - [7100] = {.lex_state = 338}, - [7101] = {.lex_state = 280}, - [7102] = {.lex_state = 265}, - [7103] = {.lex_state = 265}, - [7104] = {.lex_state = 265}, - [7105] = {.lex_state = 265}, - [7106] = {.lex_state = 316}, - [7107] = {.lex_state = 316}, - [7108] = {.lex_state = 265}, - [7109] = {.lex_state = 265}, - [7110] = {.lex_state = 265}, - [7111] = {.lex_state = 316}, - [7112] = {.lex_state = 265}, - [7113] = {.lex_state = 281}, - [7114] = {.lex_state = 278}, - [7115] = {.lex_state = 316}, - [7116] = {.lex_state = 265}, - [7117] = {.lex_state = 278}, - [7118] = {.lex_state = 278}, - [7119] = {.lex_state = 265}, - [7120] = {.lex_state = 278}, - [7121] = {.lex_state = 316}, - [7122] = {.lex_state = 278}, - [7123] = {.lex_state = 316}, - [7124] = {.lex_state = 316}, - [7125] = {.lex_state = 265}, - [7126] = {.lex_state = 265}, - [7127] = {.lex_state = 265}, - [7128] = {.lex_state = 316}, - [7129] = {.lex_state = 265}, - [7130] = {.lex_state = 337}, - [7131] = {.lex_state = 265}, - [7132] = {.lex_state = 265}, - [7133] = {.lex_state = 265}, - [7134] = {.lex_state = 316}, - [7135] = {.lex_state = 278}, - [7136] = {.lex_state = 278}, - [7137] = {.lex_state = 265}, - [7138] = {.lex_state = 281}, - [7139] = {.lex_state = 278}, - [7140] = {.lex_state = 278}, - [7141] = {.lex_state = 278}, - [7142] = {.lex_state = 265}, - [7143] = {.lex_state = 265}, - [7144] = {.lex_state = 265}, - [7145] = {.lex_state = 316}, - [7146] = {.lex_state = 265}, - [7147] = {.lex_state = 265}, - [7148] = {.lex_state = 265}, - [7149] = {.lex_state = 281}, - [7150] = {.lex_state = 281}, - [7151] = {.lex_state = 278}, - [7152] = {.lex_state = 265}, - [7153] = {.lex_state = 265}, - [7154] = {.lex_state = 265}, - [7155] = {.lex_state = 278}, - [7156] = {.lex_state = 316}, - [7157] = {.lex_state = 278}, - [7158] = {.lex_state = 316}, - [7159] = {.lex_state = 316}, - [7160] = {.lex_state = 316}, - [7161] = {.lex_state = 316}, - [7162] = {.lex_state = 316}, - [7163] = {.lex_state = 278}, - [7164] = {.lex_state = 281}, - [7165] = {.lex_state = 278}, - [7166] = {.lex_state = 265}, - [7167] = {.lex_state = 265}, - [7168] = {.lex_state = 265}, - [7169] = {.lex_state = 265}, - [7170] = {.lex_state = 265}, - [7171] = {.lex_state = 265}, - [7172] = {.lex_state = 278}, - [7173] = {.lex_state = 278}, - [7174] = {.lex_state = 278}, - [7175] = {.lex_state = 316}, - [7176] = {.lex_state = 281}, - [7177] = {.lex_state = 265}, - [7178] = {.lex_state = 265}, - [7179] = {.lex_state = 265}, - [7180] = {.lex_state = 278}, - [7181] = {.lex_state = 265}, - [7182] = {.lex_state = 265}, - [7183] = {.lex_state = 265}, - [7184] = {.lex_state = 265}, - [7185] = {.lex_state = 265}, - [7186] = {.lex_state = 265}, - [7187] = {.lex_state = 278}, - [7188] = {.lex_state = 265}, - [7189] = {.lex_state = 265}, - [7190] = {.lex_state = 265}, - [7191] = {.lex_state = 265}, - [7192] = {.lex_state = 265}, - [7193] = {.lex_state = 265}, - [7194] = {.lex_state = 316}, - [7195] = {.lex_state = 265}, + [6529] = {.lex_state = 280}, + [6530] = {.lex_state = 280}, + [6531] = {.lex_state = 280}, + [6532] = {.lex_state = 335}, + [6533] = {.lex_state = 280}, + [6534] = {.lex_state = 277}, + [6535] = {.lex_state = 319}, + [6536] = {.lex_state = 324}, + [6537] = {.lex_state = 280}, + [6538] = {.lex_state = 280}, + [6539] = {.lex_state = 324}, + [6540] = {.lex_state = 277}, + [6541] = {.lex_state = 280}, + [6542] = {.lex_state = 319}, + [6543] = {.lex_state = 280}, + [6544] = {.lex_state = 280}, + [6545] = {.lex_state = 280}, + [6546] = {.lex_state = 280}, + [6547] = {.lex_state = 280}, + [6548] = {.lex_state = 280}, + [6549] = {.lex_state = 337}, + [6550] = {.lex_state = 280}, + [6551] = {.lex_state = 280}, + [6552] = {.lex_state = 280}, + [6553] = {.lex_state = 280}, + [6554] = {.lex_state = 280}, + [6555] = {.lex_state = 280}, + [6556] = {.lex_state = 337}, + [6557] = {.lex_state = 319}, + [6558] = {.lex_state = 280}, + [6559] = {.lex_state = 280}, + [6560] = {.lex_state = 341}, + [6561] = {.lex_state = 319}, + [6562] = {.lex_state = 337}, + [6563] = {.lex_state = 333}, + [6564] = {.lex_state = 277}, + [6565] = {.lex_state = 277}, + [6566] = {.lex_state = 280}, + [6567] = {.lex_state = 338}, + [6568] = {.lex_state = 280}, + [6569] = {.lex_state = 319}, + [6570] = {.lex_state = 337}, + [6571] = {.lex_state = 319}, + [6572] = {.lex_state = 280}, + [6573] = {.lex_state = 277}, + [6574] = {.lex_state = 334}, + [6575] = {.lex_state = 280}, + [6576] = {.lex_state = 319}, + [6577] = {.lex_state = 319}, + [6578] = {.lex_state = 280}, + [6579] = {.lex_state = 277}, + [6580] = {.lex_state = 319}, + [6581] = {.lex_state = 337}, + [6582] = {.lex_state = 280}, + [6583] = {.lex_state = 280}, + [6584] = {.lex_state = 319}, + [6585] = {.lex_state = 280}, + [6586] = {.lex_state = 280}, + [6587] = {.lex_state = 280}, + [6588] = {.lex_state = 319}, + [6589] = {.lex_state = 280}, + [6590] = {.lex_state = 280}, + [6591] = {.lex_state = 319}, + [6592] = {.lex_state = 319}, + [6593] = {.lex_state = 277}, + [6594] = {.lex_state = 280}, + [6595] = {.lex_state = 280}, + [6596] = {.lex_state = 277}, + [6597] = {.lex_state = 280}, + [6598] = {.lex_state = 319}, + [6599] = {.lex_state = 280}, + [6600] = {.lex_state = 283}, + [6601] = {.lex_state = 334}, + [6602] = {.lex_state = 277}, + [6603] = {.lex_state = 280}, + [6604] = {.lex_state = 280}, + [6605] = {.lex_state = 280}, + [6606] = {.lex_state = 319}, + [6607] = {.lex_state = 277}, + [6608] = {.lex_state = 277}, + [6609] = {.lex_state = 280}, + [6610] = {.lex_state = 277}, + [6611] = {.lex_state = 283}, + [6612] = {.lex_state = 337}, + [6613] = {.lex_state = 277}, + [6614] = {.lex_state = 277}, + [6615] = {.lex_state = 277}, + [6616] = {.lex_state = 277}, + [6617] = {.lex_state = 277}, + [6618] = {.lex_state = 280}, + [6619] = {.lex_state = 280}, + [6620] = {.lex_state = 319}, + [6621] = {.lex_state = 280}, + [6622] = {.lex_state = 277}, + [6623] = {.lex_state = 277}, + [6624] = {.lex_state = 277}, + [6625] = {.lex_state = 277}, + [6626] = {.lex_state = 277}, + [6627] = {.lex_state = 280}, + [6628] = {.lex_state = 280}, + [6629] = {.lex_state = 319}, + [6630] = {.lex_state = 277}, + [6631] = {.lex_state = 277}, + [6632] = {.lex_state = 277}, + [6633] = {.lex_state = 277}, + [6634] = {.lex_state = 280}, + [6635] = {.lex_state = 277}, + [6636] = {.lex_state = 313}, + [6637] = {.lex_state = 277}, + [6638] = {.lex_state = 277}, + [6639] = {.lex_state = 277}, + [6640] = {.lex_state = 277}, + [6641] = {.lex_state = 319}, + [6642] = {.lex_state = 321}, + [6643] = {.lex_state = 319}, + [6644] = {.lex_state = 280}, + [6645] = {.lex_state = 337}, + [6646] = {.lex_state = 319}, + [6647] = {.lex_state = 319}, + [6648] = {.lex_state = 280}, + [6649] = {.lex_state = 277}, + [6650] = {.lex_state = 277}, + [6651] = {.lex_state = 277}, + [6652] = {.lex_state = 321}, + [6653] = {.lex_state = 280}, + [6654] = {.lex_state = 319}, + [6655] = {.lex_state = 277}, + [6656] = {.lex_state = 277}, + [6657] = {.lex_state = 277}, + [6658] = {.lex_state = 319}, + [6659] = {.lex_state = 319}, + [6660] = {.lex_state = 319}, + [6661] = {.lex_state = 319}, + [6662] = {.lex_state = 277}, + [6663] = {.lex_state = 277}, + [6664] = {.lex_state = 338}, + [6665] = {.lex_state = 277}, + [6666] = {.lex_state = 319}, + [6667] = {.lex_state = 277}, + [6668] = {.lex_state = 319}, + [6669] = {.lex_state = 319}, + [6670] = {.lex_state = 319}, + [6671] = {.lex_state = 319}, + [6672] = {.lex_state = 319}, + [6673] = {.lex_state = 319}, + [6674] = {.lex_state = 319}, + [6675] = {.lex_state = 277}, + [6676] = {.lex_state = 277}, + [6677] = {.lex_state = 277}, + [6678] = {.lex_state = 319}, + [6679] = {.lex_state = 319}, + [6680] = {.lex_state = 319}, + [6681] = {.lex_state = 277}, + [6682] = {.lex_state = 277}, + [6683] = {.lex_state = 280}, + [6684] = {.lex_state = 277}, + [6685] = {.lex_state = 277}, + [6686] = {.lex_state = 280}, + [6687] = {.lex_state = 280}, + [6688] = {.lex_state = 280}, + [6689] = {.lex_state = 277}, + [6690] = {.lex_state = 337}, + [6691] = {.lex_state = 337}, + [6692] = {.lex_state = 337}, + [6693] = {.lex_state = 337}, + [6694] = {.lex_state = 280}, + [6695] = {.lex_state = 319}, + [6696] = {.lex_state = 280}, + [6697] = {.lex_state = 319}, + [6698] = {.lex_state = 319}, + [6699] = {.lex_state = 341}, + [6700] = {.lex_state = 337}, + [6701] = {.lex_state = 319}, + [6702] = {.lex_state = 319}, + [6703] = {.lex_state = 280}, + [6704] = {.lex_state = 280}, + [6705] = {.lex_state = 337}, + [6706] = {.lex_state = 319}, + [6707] = {.lex_state = 341}, + [6708] = {.lex_state = 319}, + [6709] = {.lex_state = 319}, + [6710] = {.lex_state = 341}, + [6711] = {.lex_state = 277}, + [6712] = {.lex_state = 277}, + [6713] = {.lex_state = 319}, + [6714] = {.lex_state = 319}, + [6715] = {.lex_state = 319}, + [6716] = {.lex_state = 319}, + [6717] = {.lex_state = 319}, + [6718] = {.lex_state = 319}, + [6719] = {.lex_state = 337}, + [6720] = {.lex_state = 337}, + [6721] = {.lex_state = 337}, + [6722] = {.lex_state = 337}, + [6723] = {.lex_state = 280}, + [6724] = {.lex_state = 277}, + [6725] = {.lex_state = 280}, + [6726] = {.lex_state = 337}, + [6727] = {.lex_state = 337}, + [6728] = {.lex_state = 319}, + [6729] = {.lex_state = 319}, + [6730] = {.lex_state = 277}, + [6731] = {.lex_state = 280}, + [6732] = {.lex_state = 319}, + [6733] = {.lex_state = 280}, + [6734] = {.lex_state = 319}, + [6735] = {.lex_state = 280}, + [6736] = {.lex_state = 277}, + [6737] = {.lex_state = 319}, + [6738] = {.lex_state = 319}, + [6739] = {.lex_state = 319}, + [6740] = {.lex_state = 280}, + [6741] = {.lex_state = 337}, + [6742] = {.lex_state = 280}, + [6743] = {.lex_state = 319}, + [6744] = {.lex_state = 280}, + [6745] = {.lex_state = 277}, + [6746] = {.lex_state = 280}, + [6747] = {.lex_state = 280}, + [6748] = {.lex_state = 319}, + [6749] = {.lex_state = 277}, + [6750] = {.lex_state = 277}, + [6751] = {.lex_state = 277}, + [6752] = {.lex_state = 277}, + [6753] = {.lex_state = 319}, + [6754] = {.lex_state = 277}, + [6755] = {.lex_state = 319}, + [6756] = {.lex_state = 280}, + [6757] = {.lex_state = 280}, + [6758] = {.lex_state = 319}, + [6759] = {.lex_state = 280}, + [6760] = {.lex_state = 280}, + [6761] = {.lex_state = 280}, + [6762] = {.lex_state = 319}, + [6763] = {.lex_state = 337}, + [6764] = {.lex_state = 319}, + [6765] = {.lex_state = 280}, + [6766] = {.lex_state = 280}, + [6767] = {.lex_state = 280}, + [6768] = {.lex_state = 319}, + [6769] = {.lex_state = 280}, + [6770] = {.lex_state = 319}, + [6771] = {.lex_state = 277}, + [6772] = {.lex_state = 277}, + [6773] = {.lex_state = 280}, + [6774] = {.lex_state = 319}, + [6775] = {.lex_state = 277}, + [6776] = {.lex_state = 319}, + [6777] = {.lex_state = 319}, + [6778] = {.lex_state = 319}, + [6779] = {.lex_state = 280}, + [6780] = {.lex_state = 280}, + [6781] = {.lex_state = 280}, + [6782] = {.lex_state = 277}, + [6783] = {.lex_state = 280}, + [6784] = {.lex_state = 280}, + [6785] = {.lex_state = 280}, + [6786] = {.lex_state = 280}, + [6787] = {.lex_state = 280}, + [6788] = {.lex_state = 280}, + [6789] = {.lex_state = 280}, + [6790] = {.lex_state = 280}, + [6791] = {.lex_state = 280}, + [6792] = {.lex_state = 280}, + [6793] = {.lex_state = 280}, + [6794] = {.lex_state = 280}, + [6795] = {.lex_state = 280}, + [6796] = {.lex_state = 280}, + [6797] = {.lex_state = 280}, + [6798] = {.lex_state = 280}, + [6799] = {.lex_state = 280}, + [6800] = {.lex_state = 277}, + [6801] = {.lex_state = 277}, + [6802] = {.lex_state = 277}, + [6803] = {.lex_state = 277}, + [6804] = {.lex_state = 280}, + [6805] = {.lex_state = 277}, + [6806] = {.lex_state = 280}, + [6807] = {.lex_state = 280}, + [6808] = {.lex_state = 277}, + [6809] = {.lex_state = 280}, + [6810] = {.lex_state = 279}, + [6811] = {.lex_state = 280}, + [6812] = {.lex_state = 319}, + [6813] = {.lex_state = 277}, + [6814] = {.lex_state = 277}, + [6815] = {.lex_state = 277}, + [6816] = {.lex_state = 280}, + [6817] = {.lex_state = 280}, + [6818] = {.lex_state = 280}, + [6819] = {.lex_state = 280}, + [6820] = {.lex_state = 280}, + [6821] = {.lex_state = 280}, + [6822] = {.lex_state = 319}, + [6823] = {.lex_state = 280}, + [6824] = {.lex_state = 280}, + [6825] = {.lex_state = 319}, + [6826] = {.lex_state = 319}, + [6827] = {.lex_state = 342}, + [6828] = {.lex_state = 277}, + [6829] = {.lex_state = 319}, + [6830] = {.lex_state = 319}, + [6831] = {.lex_state = 277}, + [6832] = {.lex_state = 280}, + [6833] = {.lex_state = 280}, + [6834] = {.lex_state = 280}, + [6835] = {.lex_state = 319}, + [6836] = {.lex_state = 319}, + [6837] = {.lex_state = 280}, + [6838] = {.lex_state = 280}, + [6839] = {.lex_state = 319}, + [6840] = {.lex_state = 337}, + [6841] = {.lex_state = 280}, + [6842] = {.lex_state = 319}, + [6843] = {.lex_state = 280}, + [6844] = {.lex_state = 319}, + [6845] = {.lex_state = 280}, + [6846] = {.lex_state = 280}, + [6847] = {.lex_state = 280}, + [6848] = {.lex_state = 280}, + [6849] = {.lex_state = 280}, + [6850] = {.lex_state = 280}, + [6851] = {.lex_state = 280}, + [6852] = {.lex_state = 280}, + [6853] = {.lex_state = 280}, + [6854] = {.lex_state = 280}, + [6855] = {.lex_state = 280}, + [6856] = {.lex_state = 280}, + [6857] = {.lex_state = 280}, + [6858] = {.lex_state = 280}, + [6859] = {.lex_state = 280}, + [6860] = {.lex_state = 280}, + [6861] = {.lex_state = 280}, + [6862] = {.lex_state = 280}, + [6863] = {.lex_state = 280}, + [6864] = {.lex_state = 319}, + [6865] = {.lex_state = 280}, + [6866] = {.lex_state = 280}, + [6867] = {.lex_state = 280}, + [6868] = {.lex_state = 280}, + [6869] = {.lex_state = 280}, + [6870] = {.lex_state = 280}, + [6871] = {.lex_state = 280}, + [6872] = {.lex_state = 277}, + [6873] = {.lex_state = 280}, + [6874] = {.lex_state = 277}, + [6875] = {.lex_state = 319}, + [6876] = {.lex_state = 319}, + [6877] = {.lex_state = 319}, + [6878] = {.lex_state = 319}, + [6879] = {.lex_state = 319}, + [6880] = {.lex_state = 280}, + [6881] = {.lex_state = 280}, + [6882] = {.lex_state = 280}, + [6883] = {.lex_state = 337}, + [6884] = {.lex_state = 280}, + [6885] = {.lex_state = 280}, + [6886] = {.lex_state = 280}, + [6887] = {.lex_state = 280}, + [6888] = {.lex_state = 280}, + [6889] = {.lex_state = 319}, + [6890] = {.lex_state = 280}, + [6891] = {.lex_state = 280}, + [6892] = {.lex_state = 280}, + [6893] = {.lex_state = 277}, + [6894] = {.lex_state = 337}, + [6895] = {.lex_state = 280}, + [6896] = {.lex_state = 280}, + [6897] = {.lex_state = 277}, + [6898] = {.lex_state = 280}, + [6899] = {.lex_state = 319}, + [6900] = {.lex_state = 280}, + [6901] = {.lex_state = 319}, + [6902] = {.lex_state = 319}, + [6903] = {.lex_state = 280}, + [6904] = {.lex_state = 277}, + [6905] = {.lex_state = 319}, + [6906] = {.lex_state = 280}, + [6907] = {.lex_state = 280}, + [6908] = {.lex_state = 277}, + [6909] = {.lex_state = 319}, + [6910] = {.lex_state = 277}, + [6911] = {.lex_state = 277}, + [6912] = {.lex_state = 277}, + [6913] = {.lex_state = 277}, + [6914] = {.lex_state = 319}, + [6915] = {.lex_state = 277}, + [6916] = {.lex_state = 277}, + [6917] = {.lex_state = 280}, + [6918] = {.lex_state = 319}, + [6919] = {.lex_state = 280}, + [6920] = {.lex_state = 277}, + [6921] = {.lex_state = 280}, + [6922] = {.lex_state = 277}, + [6923] = {.lex_state = 277}, + [6924] = {.lex_state = 277}, + [6925] = {.lex_state = 337}, + [6926] = {.lex_state = 280}, + [6927] = {.lex_state = 280}, + [6928] = {.lex_state = 277}, + [6929] = {.lex_state = 277}, + [6930] = {.lex_state = 277}, + [6931] = {.lex_state = 277}, + [6932] = {.lex_state = 280}, + [6933] = {.lex_state = 277}, + [6934] = {.lex_state = 280}, + [6935] = {.lex_state = 277}, + [6936] = {.lex_state = 280}, + [6937] = {.lex_state = 285}, + [6938] = {.lex_state = 280}, + [6939] = {.lex_state = 285}, + [6940] = {.lex_state = 277}, + [6941] = {.lex_state = 280}, + [6942] = {.lex_state = 280}, + [6943] = {.lex_state = 277}, + [6944] = {.lex_state = 280}, + [6945] = {.lex_state = 319}, + [6946] = {.lex_state = 319}, + [6947] = {.lex_state = 280}, + [6948] = {.lex_state = 280}, + [6949] = {.lex_state = 280}, + [6950] = {.lex_state = 277}, + [6951] = {.lex_state = 319}, + [6952] = {.lex_state = 280}, + [6953] = {.lex_state = 277}, + [6954] = {.lex_state = 280}, + [6955] = {.lex_state = 280}, + [6956] = {.lex_state = 277}, + [6957] = {.lex_state = 277}, + [6958] = {.lex_state = 277}, + [6959] = {.lex_state = 285}, + [6960] = {.lex_state = 280}, + [6961] = {.lex_state = 285}, + [6962] = {.lex_state = 285}, + [6963] = {.lex_state = 277}, + [6964] = {.lex_state = 280}, + [6965] = {.lex_state = 285}, + [6966] = {.lex_state = 285}, + [6967] = {.lex_state = 280}, + [6968] = {.lex_state = 277}, + [6969] = {.lex_state = 285}, + [6970] = {.lex_state = 280}, + [6971] = {.lex_state = 280}, + [6972] = {.lex_state = 285}, + [6973] = {.lex_state = 280}, + [6974] = {.lex_state = 280}, + [6975] = {.lex_state = 277}, + [6976] = {.lex_state = 280}, + [6977] = {.lex_state = 285}, + [6978] = {.lex_state = 280}, + [6979] = {.lex_state = 280}, + [6980] = {.lex_state = 277}, + [6981] = {.lex_state = 280}, + [6982] = {.lex_state = 280}, + [6983] = {.lex_state = 280}, + [6984] = {.lex_state = 277}, + [6985] = {.lex_state = 277}, + [6986] = {.lex_state = 280}, + [6987] = {.lex_state = 277}, + [6988] = {.lex_state = 277}, + [6989] = {.lex_state = 277}, + [6990] = {.lex_state = 280}, + [6991] = {.lex_state = 280}, + [6992] = {.lex_state = 285}, + [6993] = {.lex_state = 285}, + [6994] = {.lex_state = 280}, + [6995] = {.lex_state = 280}, + [6996] = {.lex_state = 280}, + [6997] = {.lex_state = 280}, + [6998] = {.lex_state = 280}, + [6999] = {.lex_state = 277}, + [7000] = {.lex_state = 338}, + [7001] = {.lex_state = 280}, + [7002] = {.lex_state = 280}, + [7003] = {.lex_state = 280}, + [7004] = {.lex_state = 277}, + [7005] = {.lex_state = 285}, + [7006] = {.lex_state = 280}, + [7007] = {.lex_state = 277}, + [7008] = {.lex_state = 280}, + [7009] = {.lex_state = 277}, + [7010] = {.lex_state = 277}, + [7011] = {.lex_state = 277}, + [7012] = {.lex_state = 277}, + [7013] = {.lex_state = 285}, + [7014] = {.lex_state = 277}, + [7015] = {.lex_state = 285}, + [7016] = {.lex_state = 280}, + [7017] = {.lex_state = 280}, + [7018] = {.lex_state = 280}, + [7019] = {.lex_state = 322}, + [7020] = {.lex_state = 280}, + [7021] = {.lex_state = 280}, + [7022] = {.lex_state = 319}, + [7023] = {.lex_state = 277}, + [7024] = {.lex_state = 285}, + [7025] = {.lex_state = 280}, + [7026] = {.lex_state = 280}, + [7027] = {.lex_state = 277}, + [7028] = {.lex_state = 333}, + [7029] = {.lex_state = 277}, + [7030] = {.lex_state = 277}, + [7031] = {.lex_state = 285}, + [7032] = {.lex_state = 338}, + [7033] = {.lex_state = 285}, + [7034] = {.lex_state = 338}, + [7035] = {.lex_state = 280}, + [7036] = {.lex_state = 277}, + [7037] = {.lex_state = 277}, + [7038] = {.lex_state = 280}, + [7039] = {.lex_state = 280}, + [7040] = {.lex_state = 280}, + [7041] = {.lex_state = 277}, + [7042] = {.lex_state = 280}, + [7043] = {.lex_state = 277}, + [7044] = {.lex_state = 277}, + [7045] = {.lex_state = 277}, + [7046] = {.lex_state = 277}, + [7047] = {.lex_state = 280}, + [7048] = {.lex_state = 280}, + [7049] = {.lex_state = 280}, + [7050] = {.lex_state = 280}, + [7051] = {.lex_state = 277}, + [7052] = {.lex_state = 280}, + [7053] = {.lex_state = 277}, + [7054] = {.lex_state = 285}, + [7055] = {.lex_state = 280}, + [7056] = {.lex_state = 277}, + [7057] = {.lex_state = 280}, + [7058] = {.lex_state = 277}, + [7059] = {.lex_state = 280}, + [7060] = {.lex_state = 280}, + [7061] = {.lex_state = 280}, + [7062] = {.lex_state = 280}, + [7063] = {.lex_state = 280}, + [7064] = {.lex_state = 280}, + [7065] = {.lex_state = 277}, + [7066] = {.lex_state = 280}, + [7067] = {.lex_state = 277}, + [7068] = {.lex_state = 280}, + [7069] = {.lex_state = 280}, + [7070] = {.lex_state = 280}, + [7071] = {.lex_state = 280}, + [7072] = {.lex_state = 280}, + [7073] = {.lex_state = 280}, + [7074] = {.lex_state = 280}, + [7075] = {.lex_state = 277}, + [7076] = {.lex_state = 280}, + [7077] = {.lex_state = 285}, + [7078] = {.lex_state = 285}, + [7079] = {.lex_state = 280}, + [7080] = {.lex_state = 285}, + [7081] = {.lex_state = 280}, + [7082] = {.lex_state = 285}, + [7083] = {.lex_state = 337}, + [7084] = {.lex_state = 285}, + [7085] = {.lex_state = 280}, + [7086] = {.lex_state = 334}, + [7087] = {.lex_state = 280}, + [7088] = {.lex_state = 319}, + [7089] = {.lex_state = 342}, + [7090] = {.lex_state = 280}, + [7091] = {.lex_state = 280}, + [7092] = {.lex_state = 277}, + [7093] = {.lex_state = 277}, + [7094] = {.lex_state = 280}, + [7095] = {.lex_state = 285}, + [7096] = {.lex_state = 285}, + [7097] = {.lex_state = 285}, + [7098] = {.lex_state = 285}, + [7099] = {.lex_state = 277}, + [7100] = {.lex_state = 280}, + [7101] = {.lex_state = 277}, + [7102] = {.lex_state = 277}, + [7103] = {.lex_state = 285}, + [7104] = {.lex_state = 285}, + [7105] = {.lex_state = 277}, + [7106] = {.lex_state = 280}, + [7107] = {.lex_state = 280}, + [7108] = {.lex_state = 319}, + [7109] = {.lex_state = 319}, + [7110] = {.lex_state = 280}, + [7111] = {.lex_state = 280}, + [7112] = {.lex_state = 280}, + [7113] = {.lex_state = 280}, + [7114] = {.lex_state = 280}, + [7115] = {.lex_state = 280}, + [7116] = {.lex_state = 285}, + [7117] = {.lex_state = 285}, + [7118] = {.lex_state = 285}, + [7119] = {.lex_state = 285}, + [7120] = {.lex_state = 280}, + [7121] = {.lex_state = 337}, + [7122] = {.lex_state = 337}, + [7123] = {.lex_state = 337}, + [7124] = {.lex_state = 337}, + [7125] = {.lex_state = 285}, + [7126] = {.lex_state = 337}, + [7127] = {.lex_state = 280}, + [7128] = {.lex_state = 337}, + [7129] = {.lex_state = 337}, + [7130] = {.lex_state = 338}, + [7131] = {.lex_state = 280}, + [7132] = {.lex_state = 277}, + [7133] = {.lex_state = 326}, + [7134] = {.lex_state = 285}, + [7135] = {.lex_state = 337}, + [7136] = {.lex_state = 337}, + [7137] = {.lex_state = 337}, + [7138] = {.lex_state = 337}, + [7139] = {.lex_state = 337}, + [7140] = {.lex_state = 280}, + [7141] = {.lex_state = 337}, + [7142] = {.lex_state = 277}, + [7143] = {.lex_state = 337}, + [7144] = {.lex_state = 280}, + [7145] = {.lex_state = 337}, + [7146] = {.lex_state = 280}, + [7147] = {.lex_state = 326}, + [7148] = {.lex_state = 337}, + [7149] = {.lex_state = 285}, + [7150] = {.lex_state = 338}, + [7151] = {.lex_state = 277}, + [7152] = {.lex_state = 277}, + [7153] = {.lex_state = 277}, + [7154] = {.lex_state = 277}, + [7155] = {.lex_state = 277}, + [7156] = {.lex_state = 277}, + [7157] = {.lex_state = 277}, + [7158] = {.lex_state = 280}, + [7159] = {.lex_state = 280}, + [7160] = {.lex_state = 285}, + [7161] = {.lex_state = 285}, + [7162] = {.lex_state = 285}, + [7163] = {.lex_state = 280}, + [7164] = {.lex_state = 280}, + [7165] = {.lex_state = 280}, + [7166] = {.lex_state = 280}, + [7167] = {.lex_state = 280}, + [7168] = {.lex_state = 285}, + [7169] = {.lex_state = 280}, + [7170] = {.lex_state = 277}, + [7171] = {.lex_state = 322}, + [7172] = {.lex_state = 285}, + [7173] = {.lex_state = 277}, + [7174] = {.lex_state = 280}, + [7175] = {.lex_state = 319}, + [7176] = {.lex_state = 280}, + [7177] = {.lex_state = 280}, + [7178] = {.lex_state = 280}, + [7179] = {.lex_state = 319}, + [7180] = {.lex_state = 280}, + [7181] = {.lex_state = 280}, + [7182] = {.lex_state = 285}, + [7183] = {.lex_state = 277}, + [7184] = {.lex_state = 280}, + [7185] = {.lex_state = 280}, + [7186] = {.lex_state = 280}, + [7187] = {.lex_state = 280}, + [7188] = {.lex_state = 280}, + [7189] = {.lex_state = 280}, + [7190] = {.lex_state = 277}, + [7191] = {.lex_state = 280}, + [7192] = {.lex_state = 280}, + [7193] = {.lex_state = 280}, + [7194] = {.lex_state = 280}, + [7195] = {.lex_state = 319}, [7196] = {.lex_state = 265}, [7197] = {.lex_state = 265}, - [7198] = {.lex_state = 278}, - [7199] = {.lex_state = 278}, + [7198] = {.lex_state = 265}, + [7199] = {.lex_state = 277}, [7200] = {.lex_state = 265}, [7201] = {.lex_state = 265}, [7202] = {.lex_state = 265}, [7203] = {.lex_state = 265}, [7204] = {.lex_state = 265}, - [7205] = {.lex_state = 265}, - [7206] = {.lex_state = 316}, - [7207] = {.lex_state = 316}, - [7208] = {.lex_state = 316}, - [7209] = {.lex_state = 316}, - [7210] = {.lex_state = 278}, - [7211] = {.lex_state = 316}, - [7212] = {.lex_state = 265}, + [7205] = {.lex_state = 283}, + [7206] = {.lex_state = 277}, + [7207] = {.lex_state = 319}, + [7208] = {.lex_state = 319}, + [7209] = {.lex_state = 277}, + [7210] = {.lex_state = 338}, + [7211] = {.lex_state = 337}, + [7212] = {.lex_state = 277}, [7213] = {.lex_state = 265}, [7214] = {.lex_state = 265}, - [7215] = {.lex_state = 316}, - [7216] = {.lex_state = 316}, - [7217] = {.lex_state = 316}, - [7218] = {.lex_state = 337}, - [7219] = {.lex_state = 265}, - [7220] = {.lex_state = 265}, + [7215] = {.lex_state = 265}, + [7216] = {.lex_state = 277}, + [7217] = {.lex_state = 277}, + [7218] = {.lex_state = 283}, + [7219] = {.lex_state = 319}, + [7220] = {.lex_state = 319}, [7221] = {.lex_state = 265}, [7222] = {.lex_state = 265}, - [7223] = {.lex_state = 265}, + [7223] = {.lex_state = 280}, [7224] = {.lex_state = 265}, - [7225] = {.lex_state = 282}, - [7226] = {.lex_state = 284}, - [7227] = {.lex_state = 280}, - [7228] = {.lex_state = 265}, - [7229] = {.lex_state = 265}, - [7230] = {.lex_state = 265}, - [7231] = {.lex_state = 316}, - [7232] = {.lex_state = 278}, - [7233] = {.lex_state = 278}, + [7225] = {.lex_state = 337}, + [7226] = {.lex_state = 280}, + [7227] = {.lex_state = 277}, + [7228] = {.lex_state = 319}, + [7229] = {.lex_state = 280}, + [7230] = {.lex_state = 319}, + [7231] = {.lex_state = 319}, + [7232] = {.lex_state = 265}, + [7233] = {.lex_state = 265}, [7234] = {.lex_state = 265}, - [7235] = {.lex_state = 316}, - [7236] = {.lex_state = 281}, + [7235] = {.lex_state = 265}, + [7236] = {.lex_state = 265}, [7237] = {.lex_state = 265}, [7238] = {.lex_state = 265}, - [7239] = {.lex_state = 281}, + [7239] = {.lex_state = 265}, [7240] = {.lex_state = 265}, - [7241] = {.lex_state = 316}, + [7241] = {.lex_state = 280}, [7242] = {.lex_state = 265}, [7243] = {.lex_state = 265}, - [7244] = {.lex_state = 316}, - [7245] = {.lex_state = 278}, - [7246] = {.lex_state = 338}, - [7247] = {.lex_state = 265}, - [7248] = {.lex_state = 337}, - [7249] = {.lex_state = 338}, - [7250] = {.lex_state = 265}, - [7251] = {.lex_state = 265}, - [7252] = {.lex_state = 265}, - [7253] = {.lex_state = 316}, - [7254] = {.lex_state = 316}, - [7255] = {.lex_state = 278}, - [7256] = {.lex_state = 338}, - [7257] = {.lex_state = 342}, - [7258] = {.lex_state = 316}, - [7259] = {.lex_state = 278}, - [7260] = {.lex_state = 316}, - [7261] = {.lex_state = 316}, - [7262] = {.lex_state = 278}, - [7263] = {.lex_state = 278}, - [7264] = {.lex_state = 281}, - [7265] = {.lex_state = 316}, - [7266] = {.lex_state = 278}, - [7267] = {.lex_state = 342}, + [7244] = {.lex_state = 265}, + [7245] = {.lex_state = 265}, + [7246] = {.lex_state = 279}, + [7247] = {.lex_state = 319}, + [7248] = {.lex_state = 280}, + [7249] = {.lex_state = 280}, + [7250] = {.lex_state = 277}, + [7251] = {.lex_state = 319}, + [7252] = {.lex_state = 319}, + [7253] = {.lex_state = 277}, + [7254] = {.lex_state = 280}, + [7255] = {.lex_state = 277}, + [7256] = {.lex_state = 319}, + [7257] = {.lex_state = 280}, + [7258] = {.lex_state = 265}, + [7259] = {.lex_state = 319}, + [7260] = {.lex_state = 337}, + [7261] = {.lex_state = 265}, + [7262] = {.lex_state = 265}, + [7263] = {.lex_state = 265}, + [7264] = {.lex_state = 265}, + [7265] = {.lex_state = 265}, + [7266] = {.lex_state = 265}, + [7267] = {.lex_state = 277}, [7268] = {.lex_state = 265}, - [7269] = {.lex_state = 265}, - [7270] = {.lex_state = 265}, - [7271] = {.lex_state = 278}, + [7269] = {.lex_state = 319}, + [7270] = {.lex_state = 319}, + [7271] = {.lex_state = 265}, [7272] = {.lex_state = 280}, - [7273] = {.lex_state = 278}, - [7274] = {.lex_state = 278}, - [7275] = {.lex_state = 278}, - [7276] = {.lex_state = 278}, + [7273] = {.lex_state = 277}, + [7274] = {.lex_state = 342}, + [7275] = {.lex_state = 283}, + [7276] = {.lex_state = 265}, [7277] = {.lex_state = 265}, [7278] = {.lex_state = 265}, - [7279] = {.lex_state = 265}, - [7280] = {.lex_state = 278}, + [7279] = {.lex_state = 319}, + [7280] = {.lex_state = 319}, [7281] = {.lex_state = 265}, - [7282] = {.lex_state = 316}, - [7283] = {.lex_state = 316}, - [7284] = {.lex_state = 286}, - [7285] = {.lex_state = 286}, - [7286] = {.lex_state = 315}, - [7287] = {.lex_state = 286}, + [7282] = {.lex_state = 265}, + [7283] = {.lex_state = 265}, + [7284] = {.lex_state = 277}, + [7285] = {.lex_state = 265}, + [7286] = {.lex_state = 265}, + [7287] = {.lex_state = 277}, [7288] = {.lex_state = 265}, - [7289] = {.lex_state = 286}, - [7290] = {.lex_state = 281}, - [7291] = {.lex_state = 286}, - [7292] = {.lex_state = 340}, + [7289] = {.lex_state = 277}, + [7290] = {.lex_state = 277}, + [7291] = {.lex_state = 342}, + [7292] = {.lex_state = 265}, [7293] = {.lex_state = 265}, - [7294] = {.lex_state = 337}, - [7295] = {.lex_state = 315}, - [7296] = {.lex_state = 286}, - [7297] = {.lex_state = 286}, - [7298] = {.lex_state = 286}, - [7299] = {.lex_state = 334}, - [7300] = {.lex_state = 315}, - [7301] = {.lex_state = 286}, - [7302] = {.lex_state = 286}, - [7303] = {.lex_state = 286}, + [7294] = {.lex_state = 265}, + [7295] = {.lex_state = 265}, + [7296] = {.lex_state = 265}, + [7297] = {.lex_state = 265}, + [7298] = {.lex_state = 277}, + [7299] = {.lex_state = 277}, + [7300] = {.lex_state = 319}, + [7301] = {.lex_state = 277}, + [7302] = {.lex_state = 277}, + [7303] = {.lex_state = 319}, [7304] = {.lex_state = 265}, - [7305] = {.lex_state = 286}, - [7306] = {.lex_state = 286}, - [7307] = {.lex_state = 286}, - [7308] = {.lex_state = 286}, - [7309] = {.lex_state = 286}, + [7305] = {.lex_state = 265}, + [7306] = {.lex_state = 265}, + [7307] = {.lex_state = 265}, + [7308] = {.lex_state = 265}, + [7309] = {.lex_state = 265}, [7310] = {.lex_state = 265}, - [7311] = {.lex_state = 286}, - [7312] = {.lex_state = 286}, - [7313] = {.lex_state = 286}, - [7314] = {.lex_state = 286}, - [7315] = {.lex_state = 286}, - [7316] = {.lex_state = 286}, - [7317] = {.lex_state = 286}, - [7318] = {.lex_state = 286}, - [7319] = {.lex_state = 286}, + [7311] = {.lex_state = 279}, + [7312] = {.lex_state = 265}, + [7313] = {.lex_state = 265}, + [7314] = {.lex_state = 277}, + [7315] = {.lex_state = 265}, + [7316] = {.lex_state = 265}, + [7317] = {.lex_state = 265}, + [7318] = {.lex_state = 265}, + [7319] = {.lex_state = 265}, [7320] = {.lex_state = 265}, [7321] = {.lex_state = 265}, - [7322] = {.lex_state = 334}, + [7322] = {.lex_state = 265}, [7323] = {.lex_state = 265}, - [7324] = {.lex_state = 265}, - [7325] = {.lex_state = 286}, - [7326] = {.lex_state = 286}, - [7327] = {.lex_state = 286}, - [7328] = {.lex_state = 286}, - [7329] = {.lex_state = 286}, - [7330] = {.lex_state = 286}, - [7331] = {.lex_state = 286}, - [7332] = {.lex_state = 286}, - [7333] = {.lex_state = 286}, - [7334] = {.lex_state = 286}, - [7335] = {.lex_state = 337}, - [7336] = {.lex_state = 286}, - [7337] = {.lex_state = 340}, - [7338] = {.lex_state = 265}, - [7339] = {.lex_state = 286}, - [7340] = {.lex_state = 286}, - [7341] = {.lex_state = 286}, - [7342] = {.lex_state = 265}, - [7343] = {.lex_state = 265}, - [7344] = {.lex_state = 265}, - [7345] = {.lex_state = 286}, - [7346] = {.lex_state = 286}, - [7347] = {.lex_state = 265}, - [7348] = {.lex_state = 286}, - [7349] = {.lex_state = 286}, - [7350] = {.lex_state = 286}, - [7351] = {.lex_state = 315}, - [7352] = {.lex_state = 337}, - [7353] = {.lex_state = 286}, - [7354] = {.lex_state = 286}, - [7355] = {.lex_state = 286}, - [7356] = {.lex_state = 286}, - [7357] = {.lex_state = 286}, - [7358] = {.lex_state = 286}, - [7359] = {.lex_state = 286}, - [7360] = {.lex_state = 286}, - [7361] = {.lex_state = 286}, - [7362] = {.lex_state = 286}, + [7324] = {.lex_state = 319}, + [7325] = {.lex_state = 319}, + [7326] = {.lex_state = 337}, + [7327] = {.lex_state = 319}, + [7328] = {.lex_state = 265}, + [7329] = {.lex_state = 265}, + [7330] = {.lex_state = 279}, + [7331] = {.lex_state = 319}, + [7332] = {.lex_state = 265}, + [7333] = {.lex_state = 338}, + [7334] = {.lex_state = 280}, + [7335] = {.lex_state = 277}, + [7336] = {.lex_state = 277}, + [7337] = {.lex_state = 277}, + [7338] = {.lex_state = 277}, + [7339] = {.lex_state = 277}, + [7340] = {.lex_state = 277}, + [7341] = {.lex_state = 277}, + [7342] = {.lex_state = 277}, + [7343] = {.lex_state = 319}, + [7344] = {.lex_state = 319}, + [7345] = {.lex_state = 277}, + [7346] = {.lex_state = 319}, + [7347] = {.lex_state = 319}, + [7348] = {.lex_state = 281}, + [7349] = {.lex_state = 277}, + [7350] = {.lex_state = 279}, + [7351] = {.lex_state = 319}, + [7352] = {.lex_state = 277}, + [7353] = {.lex_state = 265}, + [7354] = {.lex_state = 265}, + [7355] = {.lex_state = 265}, + [7356] = {.lex_state = 319}, + [7357] = {.lex_state = 279}, + [7358] = {.lex_state = 338}, + [7359] = {.lex_state = 265}, + [7360] = {.lex_state = 319}, + [7361] = {.lex_state = 277}, + [7362] = {.lex_state = 265}, [7363] = {.lex_state = 265}, - [7364] = {.lex_state = 286}, - [7365] = {.lex_state = 286}, - [7366] = {.lex_state = 286}, - [7367] = {.lex_state = 286}, - [7368] = {.lex_state = 337}, - [7369] = {.lex_state = 265}, - [7370] = {.lex_state = 286}, + [7364] = {.lex_state = 265}, + [7365] = {.lex_state = 319}, + [7366] = {.lex_state = 265}, + [7367] = {.lex_state = 319}, + [7368] = {.lex_state = 319}, + [7369] = {.lex_state = 277}, + [7370] = {.lex_state = 265}, [7371] = {.lex_state = 265}, - [7372] = {.lex_state = 286}, - [7373] = {.lex_state = 265}, - [7374] = {.lex_state = 315}, - [7375] = {.lex_state = 286}, - [7376] = {.lex_state = 286}, - [7377] = {.lex_state = 315}, + [7372] = {.lex_state = 319}, + [7373] = {.lex_state = 277}, + [7374] = {.lex_state = 265}, + [7375] = {.lex_state = 265}, + [7376] = {.lex_state = 338}, + [7377] = {.lex_state = 265}, [7378] = {.lex_state = 265}, - [7379] = {.lex_state = 340}, - [7380] = {.lex_state = 286}, - [7381] = {.lex_state = 286}, - [7382] = {.lex_state = 286}, - [7383] = {.lex_state = 286}, - [7384] = {.lex_state = 286}, - [7385] = {.lex_state = 286}, - [7386] = {.lex_state = 340}, - [7387] = {.lex_state = 286}, - [7388] = {.lex_state = 286}, - [7389] = {.lex_state = 333}, - [7390] = {.lex_state = 333}, - [7391] = {.lex_state = 333}, - [7392] = {.lex_state = 333}, - [7393] = {.lex_state = 333}, - [7394] = {.lex_state = 333}, - [7395] = {.lex_state = 333}, - [7396] = {.lex_state = 316}, - [7397] = {.lex_state = 333}, - [7398] = {.lex_state = 333}, - [7399] = {.lex_state = 316}, - [7400] = {.lex_state = 333}, - [7401] = {.lex_state = 333}, - [7402] = {.lex_state = 337}, - [7403] = {.lex_state = 333}, - [7404] = {.lex_state = 333}, - [7405] = {.lex_state = 333}, - [7406] = {.lex_state = 333}, - [7407] = {.lex_state = 333}, - [7408] = {.lex_state = 317}, - [7409] = {.lex_state = 333}, - [7410] = {.lex_state = 338}, - [7411] = {.lex_state = 333}, - [7412] = {.lex_state = 338}, - [7413] = {.lex_state = 338}, - [7414] = {.lex_state = 333}, - [7415] = {.lex_state = 338}, - [7416] = {.lex_state = 333}, - [7417] = {.lex_state = 316}, - [7418] = {.lex_state = 333}, - [7419] = {.lex_state = 333}, - [7420] = {.lex_state = 333}, - [7421] = {.lex_state = 333}, - [7422] = {.lex_state = 338}, - [7423] = {.lex_state = 333}, - [7424] = {.lex_state = 333}, - [7425] = {.lex_state = 333}, - [7426] = {.lex_state = 333}, - [7427] = {.lex_state = 333}, - [7428] = {.lex_state = 333}, - [7429] = {.lex_state = 333}, - [7430] = {.lex_state = 333}, - [7431] = {.lex_state = 338}, - [7432] = {.lex_state = 338}, - [7433] = {.lex_state = 337}, - [7434] = {.lex_state = 317}, - [7435] = {.lex_state = 280}, - [7436] = {.lex_state = 333}, - [7437] = {.lex_state = 333}, - [7438] = {.lex_state = 333}, - [7439] = {.lex_state = 333}, - [7440] = {.lex_state = 316}, - [7441] = {.lex_state = 316}, - [7442] = {.lex_state = 338}, - [7443] = {.lex_state = 333}, - [7444] = {.lex_state = 333}, - [7445] = {.lex_state = 316}, - [7446] = {.lex_state = 333}, - [7447] = {.lex_state = 280}, - [7448] = {.lex_state = 333}, - [7449] = {.lex_state = 333}, - [7450] = {.lex_state = 333}, - [7451] = {.lex_state = 317}, - [7452] = {.lex_state = 281}, + [7379] = {.lex_state = 277}, + [7380] = {.lex_state = 319}, + [7381] = {.lex_state = 265}, + [7382] = {.lex_state = 265}, + [7383] = {.lex_state = 265}, + [7384] = {.lex_state = 265}, + [7385] = {.lex_state = 265}, + [7386] = {.lex_state = 265}, + [7387] = {.lex_state = 277}, + [7388] = {.lex_state = 280}, + [7389] = {.lex_state = 319}, + [7390] = {.lex_state = 319}, + [7391] = {.lex_state = 277}, + [7392] = {.lex_state = 265}, + [7393] = {.lex_state = 265}, + [7394] = {.lex_state = 265}, + [7395] = {.lex_state = 277}, + [7396] = {.lex_state = 319}, + [7397] = {.lex_state = 319}, + [7398] = {.lex_state = 265}, + [7399] = {.lex_state = 265}, + [7400] = {.lex_state = 285}, + [7401] = {.lex_state = 285}, + [7402] = {.lex_state = 285}, + [7403] = {.lex_state = 285}, + [7404] = {.lex_state = 285}, + [7405] = {.lex_state = 285}, + [7406] = {.lex_state = 265}, + [7407] = {.lex_state = 285}, + [7408] = {.lex_state = 285}, + [7409] = {.lex_state = 265}, + [7410] = {.lex_state = 285}, + [7411] = {.lex_state = 285}, + [7412] = {.lex_state = 265}, + [7413] = {.lex_state = 285}, + [7414] = {.lex_state = 285}, + [7415] = {.lex_state = 285}, + [7416] = {.lex_state = 337}, + [7417] = {.lex_state = 285}, + [7418] = {.lex_state = 265}, + [7419] = {.lex_state = 280}, + [7420] = {.lex_state = 265}, + [7421] = {.lex_state = 285}, + [7422] = {.lex_state = 285}, + [7423] = {.lex_state = 285}, + [7424] = {.lex_state = 285}, + [7425] = {.lex_state = 285}, + [7426] = {.lex_state = 285}, + [7427] = {.lex_state = 285}, + [7428] = {.lex_state = 315}, + [7429] = {.lex_state = 315}, + [7430] = {.lex_state = 285}, + [7431] = {.lex_state = 285}, + [7432] = {.lex_state = 285}, + [7433] = {.lex_state = 315}, + [7434] = {.lex_state = 315}, + [7435] = {.lex_state = 285}, + [7436] = {.lex_state = 285}, + [7437] = {.lex_state = 285}, + [7438] = {.lex_state = 285}, + [7439] = {.lex_state = 285}, + [7440] = {.lex_state = 337}, + [7441] = {.lex_state = 280}, + [7442] = {.lex_state = 280}, + [7443] = {.lex_state = 285}, + [7444] = {.lex_state = 285}, + [7445] = {.lex_state = 285}, + [7446] = {.lex_state = 285}, + [7447] = {.lex_state = 285}, + [7448] = {.lex_state = 265}, + [7449] = {.lex_state = 265}, + [7450] = {.lex_state = 265}, + [7451] = {.lex_state = 285}, + [7452] = {.lex_state = 340}, [7453] = {.lex_state = 337}, - [7454] = {.lex_state = 337}, - [7455] = {.lex_state = 317}, - [7456] = {.lex_state = 337}, - [7457] = {.lex_state = 281}, - [7458] = {.lex_state = 267}, - [7459] = {.lex_state = 286}, - [7460] = {.lex_state = 281}, - [7461] = {.lex_state = 337}, - [7462] = {.lex_state = 281}, - [7463] = {.lex_state = 337}, - [7464] = {.lex_state = 280}, - [7465] = {.lex_state = 320}, - [7466] = {.lex_state = 281}, - [7467] = {.lex_state = 282}, - [7468] = {.lex_state = 337}, - [7469] = {.lex_state = 337}, - [7470] = {.lex_state = 337}, - [7471] = {.lex_state = 337}, - [7472] = {.lex_state = 337}, - [7473] = {.lex_state = 337}, - [7474] = {.lex_state = 334}, - [7475] = {.lex_state = 286}, - [7476] = {.lex_state = 267}, - [7477] = {.lex_state = 337}, - [7478] = {.lex_state = 267}, - [7479] = {.lex_state = 337}, - [7480] = {.lex_state = 281}, - [7481] = {.lex_state = 337}, - [7482] = {.lex_state = 282}, - [7483] = {.lex_state = 280}, - [7484] = {.lex_state = 337}, - [7485] = {.lex_state = 320}, - [7486] = {.lex_state = 267}, - [7487] = {.lex_state = 281}, - [7488] = {.lex_state = 281}, - [7489] = {.lex_state = 334}, - [7490] = {.lex_state = 337}, - [7491] = {.lex_state = 337}, - [7492] = {.lex_state = 337}, - [7493] = {.lex_state = 337}, - [7494] = {.lex_state = 340}, - [7495] = {.lex_state = 337}, - [7496] = {.lex_state = 337}, - [7497] = {.lex_state = 337}, - [7498] = {.lex_state = 337}, - [7499] = {.lex_state = 337}, - [7500] = {.lex_state = 337}, - [7501] = {.lex_state = 337}, - [7502] = {.lex_state = 340}, - [7503] = {.lex_state = 337}, - [7504] = {.lex_state = 340}, - [7505] = {.lex_state = 337}, - [7506] = {.lex_state = 337}, - [7507] = {.lex_state = 337}, - [7508] = {.lex_state = 337}, - [7509] = {.lex_state = 337}, - [7510] = {.lex_state = 340}, - [7511] = {.lex_state = 337}, - [7512] = {.lex_state = 337}, - [7513] = {.lex_state = 337}, - [7514] = {.lex_state = 337}, - [7515] = {.lex_state = 337}, - [7516] = {.lex_state = 337}, - [7517] = {.lex_state = 337}, - [7518] = {.lex_state = 340}, - [7519] = {.lex_state = 337}, - [7520] = {.lex_state = 337}, - [7521] = {.lex_state = 337}, - [7522] = {.lex_state = 340}, - [7523] = {.lex_state = 340}, - [7524] = {.lex_state = 337}, - [7525] = {.lex_state = 337}, - [7526] = {.lex_state = 337}, - [7527] = {.lex_state = 337}, - [7528] = {.lex_state = 337}, - [7529] = {.lex_state = 337}, - [7530] = {.lex_state = 337}, - [7531] = {.lex_state = 337}, + [7454] = {.lex_state = 285}, + [7455] = {.lex_state = 265}, + [7456] = {.lex_state = 285}, + [7457] = {.lex_state = 285}, + [7458] = {.lex_state = 285}, + [7459] = {.lex_state = 315}, + [7460] = {.lex_state = 333}, + [7461] = {.lex_state = 285}, + [7462] = {.lex_state = 285}, + [7463] = {.lex_state = 285}, + [7464] = {.lex_state = 285}, + [7465] = {.lex_state = 285}, + [7466] = {.lex_state = 265}, + [7467] = {.lex_state = 337}, + [7468] = {.lex_state = 285}, + [7469] = {.lex_state = 340}, + [7470] = {.lex_state = 285}, + [7471] = {.lex_state = 340}, + [7472] = {.lex_state = 265}, + [7473] = {.lex_state = 285}, + [7474] = {.lex_state = 285}, + [7475] = {.lex_state = 265}, + [7476] = {.lex_state = 285}, + [7477] = {.lex_state = 285}, + [7478] = {.lex_state = 265}, + [7479] = {.lex_state = 285}, + [7480] = {.lex_state = 265}, + [7481] = {.lex_state = 333}, + [7482] = {.lex_state = 265}, + [7483] = {.lex_state = 285}, + [7484] = {.lex_state = 285}, + [7485] = {.lex_state = 285}, + [7486] = {.lex_state = 285}, + [7487] = {.lex_state = 285}, + [7488] = {.lex_state = 285}, + [7489] = {.lex_state = 285}, + [7490] = {.lex_state = 285}, + [7491] = {.lex_state = 285}, + [7492] = {.lex_state = 265}, + [7493] = {.lex_state = 285}, + [7494] = {.lex_state = 285}, + [7495] = {.lex_state = 285}, + [7496] = {.lex_state = 285}, + [7497] = {.lex_state = 315}, + [7498] = {.lex_state = 285}, + [7499] = {.lex_state = 285}, + [7500] = {.lex_state = 285}, + [7501] = {.lex_state = 285}, + [7502] = {.lex_state = 285}, + [7503] = {.lex_state = 285}, + [7504] = {.lex_state = 265}, + [7505] = {.lex_state = 340}, + [7506] = {.lex_state = 334}, + [7507] = {.lex_state = 334}, + [7508] = {.lex_state = 319}, + [7509] = {.lex_state = 338}, + [7510] = {.lex_state = 334}, + [7511] = {.lex_state = 334}, + [7512] = {.lex_state = 334}, + [7513] = {.lex_state = 334}, + [7514] = {.lex_state = 338}, + [7515] = {.lex_state = 334}, + [7516] = {.lex_state = 334}, + [7517] = {.lex_state = 319}, + [7518] = {.lex_state = 319}, + [7519] = {.lex_state = 334}, + [7520] = {.lex_state = 338}, + [7521] = {.lex_state = 334}, + [7522] = {.lex_state = 338}, + [7523] = {.lex_state = 338}, + [7524] = {.lex_state = 334}, + [7525] = {.lex_state = 334}, + [7526] = {.lex_state = 334}, + [7527] = {.lex_state = 334}, + [7528] = {.lex_state = 334}, + [7529] = {.lex_state = 334}, + [7530] = {.lex_state = 334}, + [7531] = {.lex_state = 338}, [7532] = {.lex_state = 337}, - [7533] = {.lex_state = 280}, + [7533] = {.lex_state = 316}, [7534] = {.lex_state = 337}, - [7535] = {.lex_state = 340}, - [7536] = {.lex_state = 337}, - [7537] = {.lex_state = 337}, - [7538] = {.lex_state = 337}, - [7539] = {.lex_state = 286}, - [7540] = {.lex_state = 298}, - [7541] = {.lex_state = 338}, - [7542] = {.lex_state = 338}, - [7543] = {.lex_state = 338}, - [7544] = {.lex_state = 286}, - [7545] = {.lex_state = 298}, - [7546] = {.lex_state = 338}, - [7547] = {.lex_state = 298}, - [7548] = {.lex_state = 338}, - [7549] = {.lex_state = 298}, - [7550] = {.lex_state = 338}, - [7551] = {.lex_state = 286}, - [7552] = {.lex_state = 286}, - [7553] = {.lex_state = 298}, - [7554] = {.lex_state = 286}, - [7555] = {.lex_state = 348}, - [7556] = {.lex_state = 286}, - [7557] = {.lex_state = 267}, - [7558] = {.lex_state = 334}, - [7559] = {.lex_state = 286}, - [7560] = {.lex_state = 267}, - [7561] = {.lex_state = 348}, - [7562] = {.lex_state = 348}, - [7563] = {.lex_state = 348}, - [7564] = {.lex_state = 286}, - [7565] = {.lex_state = 286}, - [7566] = {.lex_state = 298}, - [7567] = {.lex_state = 286}, - [7568] = {.lex_state = 348}, - [7569] = {.lex_state = 286}, - [7570] = {.lex_state = 348}, - [7571] = {.lex_state = 267}, - [7572] = {.lex_state = 348}, - [7573] = {.lex_state = 334}, - [7574] = {.lex_state = 286}, - [7575] = {.lex_state = 286}, - [7576] = {.lex_state = 267}, - [7577] = {.lex_state = 286}, - [7578] = {.lex_state = 286}, - [7579] = {.lex_state = 348}, - [7580] = {.lex_state = 298}, - [7581] = {.lex_state = 286}, - [7582] = {.lex_state = 298}, - [7583] = {.lex_state = 348}, - [7584] = {.lex_state = 338}, - [7585] = {.lex_state = 338}, - [7586] = {.lex_state = 338}, - [7587] = {.lex_state = 286}, - [7588] = {.lex_state = 286}, - [7589] = {.lex_state = 286}, - [7590] = {.lex_state = 338}, - [7591] = {.lex_state = 286}, - [7592] = {.lex_state = 281}, - [7593] = {.lex_state = 338}, - [7594] = {.lex_state = 286}, - [7595] = {.lex_state = 286}, - [7596] = {.lex_state = 338}, - [7597] = {.lex_state = 338}, - [7598] = {.lex_state = 267}, - [7599] = {.lex_state = 286}, - [7600] = {.lex_state = 338}, - [7601] = {.lex_state = 338}, - [7602] = {.lex_state = 286}, - [7603] = {.lex_state = 286}, - [7604] = {.lex_state = 338}, - [7605] = {.lex_state = 286}, - [7606] = {.lex_state = 338}, - [7607] = {.lex_state = 286}, - [7608] = {.lex_state = 267}, - [7609] = {.lex_state = 286}, - [7610] = {.lex_state = 286}, - [7611] = {.lex_state = 286}, - [7612] = {.lex_state = 286}, - [7613] = {.lex_state = 286}, - [7614] = {.lex_state = 286}, - [7615] = {.lex_state = 338}, - [7616] = {.lex_state = 267}, - [7617] = {.lex_state = 267}, - [7618] = {.lex_state = 267}, - [7619] = {.lex_state = 267}, - [7620] = {.lex_state = 267}, - [7621] = {.lex_state = 267}, - [7622] = {.lex_state = 315}, - [7623] = {.lex_state = 348}, - [7624] = {.lex_state = 348}, - [7625] = {.lex_state = 348}, - [7626] = {.lex_state = 348}, - [7627] = {.lex_state = 348}, - [7628] = {.lex_state = 348}, - [7629] = {.lex_state = 348}, - [7630] = {.lex_state = 348}, - [7631] = {.lex_state = 348}, - [7632] = {.lex_state = 348}, - [7633] = {.lex_state = 348}, - [7634] = {.lex_state = 348}, - [7635] = {.lex_state = 334}, - [7636] = {.lex_state = 340}, - [7637] = {.lex_state = 348}, - [7638] = {.lex_state = 348}, - [7639] = {.lex_state = 348}, - [7640] = {.lex_state = 348}, - [7641] = {.lex_state = 348}, + [7535] = {.lex_state = 279}, + [7536] = {.lex_state = 316}, + [7537] = {.lex_state = 319}, + [7538] = {.lex_state = 319}, + [7539] = {.lex_state = 334}, + [7540] = {.lex_state = 279}, + [7541] = {.lex_state = 334}, + [7542] = {.lex_state = 334}, + [7543] = {.lex_state = 334}, + [7544] = {.lex_state = 334}, + [7545] = {.lex_state = 334}, + [7546] = {.lex_state = 334}, + [7547] = {.lex_state = 334}, + [7548] = {.lex_state = 334}, + [7549] = {.lex_state = 334}, + [7550] = {.lex_state = 334}, + [7551] = {.lex_state = 334}, + [7552] = {.lex_state = 334}, + [7553] = {.lex_state = 334}, + [7554] = {.lex_state = 334}, + [7555] = {.lex_state = 334}, + [7556] = {.lex_state = 334}, + [7557] = {.lex_state = 334}, + [7558] = {.lex_state = 319}, + [7559] = {.lex_state = 334}, + [7560] = {.lex_state = 334}, + [7561] = {.lex_state = 334}, + [7562] = {.lex_state = 334}, + [7563] = {.lex_state = 334}, + [7564] = {.lex_state = 338}, + [7565] = {.lex_state = 338}, + [7566] = {.lex_state = 334}, + [7567] = {.lex_state = 334}, + [7568] = {.lex_state = 280}, + [7569] = {.lex_state = 266}, + [7570] = {.lex_state = 337}, + [7571] = {.lex_state = 337}, + [7572] = {.lex_state = 337}, + [7573] = {.lex_state = 279}, + [7574] = {.lex_state = 337}, + [7575] = {.lex_state = 337}, + [7576] = {.lex_state = 337}, + [7577] = {.lex_state = 337}, + [7578] = {.lex_state = 266}, + [7579] = {.lex_state = 280}, + [7580] = {.lex_state = 337}, + [7581] = {.lex_state = 337}, + [7582] = {.lex_state = 280}, + [7583] = {.lex_state = 266}, + [7584] = {.lex_state = 337}, + [7585] = {.lex_state = 280}, + [7586] = {.lex_state = 320}, + [7587] = {.lex_state = 279}, + [7588] = {.lex_state = 316}, + [7589] = {.lex_state = 337}, + [7590] = {.lex_state = 281}, + [7591] = {.lex_state = 280}, + [7592] = {.lex_state = 337}, + [7593] = {.lex_state = 280}, + [7594] = {.lex_state = 337}, + [7595] = {.lex_state = 337}, + [7596] = {.lex_state = 316}, + [7597] = {.lex_state = 333}, + [7598] = {.lex_state = 280}, + [7599] = {.lex_state = 337}, + [7600] = {.lex_state = 280}, + [7601] = {.lex_state = 320}, + [7602] = {.lex_state = 285}, + [7603] = {.lex_state = 333}, + [7604] = {.lex_state = 266}, + [7605] = {.lex_state = 281}, + [7606] = {.lex_state = 285}, + [7607] = {.lex_state = 337}, + [7608] = {.lex_state = 337}, + [7609] = {.lex_state = 337}, + [7610] = {.lex_state = 337}, + [7611] = {.lex_state = 337}, + [7612] = {.lex_state = 337}, + [7613] = {.lex_state = 337}, + [7614] = {.lex_state = 337}, + [7615] = {.lex_state = 340}, + [7616] = {.lex_state = 340}, + [7617] = {.lex_state = 337}, + [7618] = {.lex_state = 337}, + [7619] = {.lex_state = 337}, + [7620] = {.lex_state = 337}, + [7621] = {.lex_state = 337}, + [7622] = {.lex_state = 337}, + [7623] = {.lex_state = 337}, + [7624] = {.lex_state = 337}, + [7625] = {.lex_state = 337}, + [7626] = {.lex_state = 337}, + [7627] = {.lex_state = 337}, + [7628] = {.lex_state = 337}, + [7629] = {.lex_state = 337}, + [7630] = {.lex_state = 337}, + [7631] = {.lex_state = 337}, + [7632] = {.lex_state = 337}, + [7633] = {.lex_state = 337}, + [7634] = {.lex_state = 337}, + [7635] = {.lex_state = 337}, + [7636] = {.lex_state = 337}, + [7637] = {.lex_state = 337}, + [7638] = {.lex_state = 337}, + [7639] = {.lex_state = 337}, + [7640] = {.lex_state = 337}, + [7641] = {.lex_state = 337}, [7642] = {.lex_state = 340}, [7643] = {.lex_state = 340}, - [7644] = {.lex_state = 348}, - [7645] = {.lex_state = 348}, - [7646] = {.lex_state = 340}, - [7647] = {.lex_state = 348}, - [7648] = {.lex_state = 348}, - [7649] = {.lex_state = 348}, - [7650] = {.lex_state = 340}, - [7651] = {.lex_state = 286}, - [7652] = {.lex_state = 315}, - [7653] = {.lex_state = 348}, - [7654] = {.lex_state = 348}, - [7655] = {.lex_state = 348}, - [7656] = {.lex_state = 348}, - [7657] = {.lex_state = 348}, - [7658] = {.lex_state = 348}, - [7659] = {.lex_state = 340}, - [7660] = {.lex_state = 340}, - [7661] = {.lex_state = 340}, - [7662] = {.lex_state = 338}, - [7663] = {.lex_state = 348}, - [7664] = {.lex_state = 340}, - [7665] = {.lex_state = 348}, - [7666] = {.lex_state = 348}, - [7667] = {.lex_state = 348}, - [7668] = {.lex_state = 348}, - [7669] = {.lex_state = 348}, - [7670] = {.lex_state = 340}, - [7671] = {.lex_state = 348}, - [7672] = {.lex_state = 340}, - [7673] = {.lex_state = 348}, + [7644] = {.lex_state = 340}, + [7645] = {.lex_state = 337}, + [7646] = {.lex_state = 337}, + [7647] = {.lex_state = 337}, + [7648] = {.lex_state = 337}, + [7649] = {.lex_state = 279}, + [7650] = {.lex_state = 337}, + [7651] = {.lex_state = 337}, + [7652] = {.lex_state = 340}, + [7653] = {.lex_state = 340}, + [7654] = {.lex_state = 340}, + [7655] = {.lex_state = 337}, + [7656] = {.lex_state = 338}, + [7657] = {.lex_state = 338}, + [7658] = {.lex_state = 298}, + [7659] = {.lex_state = 285}, + [7660] = {.lex_state = 285}, + [7661] = {.lex_state = 338}, + [7662] = {.lex_state = 298}, + [7663] = {.lex_state = 298}, + [7664] = {.lex_state = 338}, + [7665] = {.lex_state = 338}, + [7666] = {.lex_state = 298}, + [7667] = {.lex_state = 338}, + [7668] = {.lex_state = 285}, + [7669] = {.lex_state = 333}, + [7670] = {.lex_state = 348}, + [7671] = {.lex_state = 285}, + [7672] = {.lex_state = 298}, + [7673] = {.lex_state = 266}, [7674] = {.lex_state = 348}, - [7675] = {.lex_state = 348}, - [7676] = {.lex_state = 315}, - [7677] = {.lex_state = 348}, + [7675] = {.lex_state = 298}, + [7676] = {.lex_state = 285}, + [7677] = {.lex_state = 266}, [7678] = {.lex_state = 348}, [7679] = {.lex_state = 348}, - [7680] = {.lex_state = 348}, - [7681] = {.lex_state = 340}, - [7682] = {.lex_state = 348}, + [7680] = {.lex_state = 266}, + [7681] = {.lex_state = 298}, + [7682] = {.lex_state = 285}, [7683] = {.lex_state = 348}, [7684] = {.lex_state = 348}, [7685] = {.lex_state = 348}, - [7686] = {.lex_state = 348}, - [7687] = {.lex_state = 348}, - [7688] = {.lex_state = 265}, - [7689] = {.lex_state = 265}, - [7690] = {.lex_state = 265}, - [7691] = {.lex_state = 265}, - [7692] = {.lex_state = 265}, - [7693] = {.lex_state = 265}, - [7694] = {.lex_state = 265}, - [7695] = {.lex_state = 265}, - [7696] = {.lex_state = 265}, - [7697] = {.lex_state = 265}, - [7698] = {.lex_state = 265}, - [7699] = {.lex_state = 265}, - [7700] = {.lex_state = 298}, - [7701] = {.lex_state = 265}, - [7702] = {.lex_state = 265}, - [7703] = {.lex_state = 265}, - [7704] = {.lex_state = 265}, - [7705] = {.lex_state = 265}, - [7706] = {.lex_state = 265}, - [7707] = {.lex_state = 265}, - [7708] = {.lex_state = 286}, - [7709] = {.lex_state = 298}, - [7710] = {.lex_state = 265}, - [7711] = {.lex_state = 265}, - [7712] = {.lex_state = 265}, - [7713] = {.lex_state = 265}, - [7714] = {.lex_state = 265}, - [7715] = {.lex_state = 298}, - [7716] = {.lex_state = 265}, - [7717] = {.lex_state = 265}, - [7718] = {.lex_state = 265}, - [7719] = {.lex_state = 265}, - [7720] = {.lex_state = 265}, - [7721] = {.lex_state = 298}, - [7722] = {.lex_state = 265}, - [7723] = {.lex_state = 265}, - [7724] = {.lex_state = 265}, - [7725] = {.lex_state = 265}, - [7726] = {.lex_state = 286}, - [7727] = {.lex_state = 265}, - [7728] = {.lex_state = 265}, - [7729] = {.lex_state = 265}, - [7730] = {.lex_state = 265}, - [7731] = {.lex_state = 265}, - [7732] = {.lex_state = 265}, - [7733] = {.lex_state = 265}, - [7734] = {.lex_state = 265}, - [7735] = {.lex_state = 265}, - [7736] = {.lex_state = 286}, - [7737] = {.lex_state = 298}, - [7738] = {.lex_state = 265}, - [7739] = {.lex_state = 265}, - [7740] = {.lex_state = 265}, - [7741] = {.lex_state = 265}, - [7742] = {.lex_state = 265}, - [7743] = {.lex_state = 265}, - [7744] = {.lex_state = 265}, - [7745] = {.lex_state = 298}, - [7746] = {.lex_state = 315}, - [7747] = {.lex_state = 265}, - [7748] = {.lex_state = 265}, - [7749] = {.lex_state = 265}, - [7750] = {.lex_state = 265}, - [7751] = {.lex_state = 265}, - [7752] = {.lex_state = 265}, - [7753] = {.lex_state = 265}, - [7754] = {.lex_state = 265}, - [7755] = {.lex_state = 265}, - [7756] = {.lex_state = 265}, - [7757] = {.lex_state = 265}, - [7758] = {.lex_state = 265}, - [7759] = {.lex_state = 265}, - [7760] = {.lex_state = 265}, - [7761] = {.lex_state = 265}, - [7762] = {.lex_state = 265}, - [7763] = {.lex_state = 265}, - [7764] = {.lex_state = 286}, - [7765] = {.lex_state = 265}, - [7766] = {.lex_state = 265}, - [7767] = {.lex_state = 265}, - [7768] = {.lex_state = 265}, - [7769] = {.lex_state = 265}, - [7770] = {.lex_state = 265}, - [7771] = {.lex_state = 265}, - [7772] = {.lex_state = 265}, - [7773] = {.lex_state = 265}, - [7774] = {.lex_state = 286}, - [7775] = {.lex_state = 265}, - [7776] = {.lex_state = 265}, - [7777] = {.lex_state = 265}, - [7778] = {.lex_state = 265}, - [7779] = {.lex_state = 265}, - [7780] = {.lex_state = 265}, - [7781] = {.lex_state = 265}, - [7782] = {.lex_state = 265}, - [7783] = {.lex_state = 265}, - [7784] = {.lex_state = 265}, - [7785] = {.lex_state = 338}, - [7786] = {.lex_state = 265}, - [7787] = {.lex_state = 265}, - [7788] = {.lex_state = 265}, - [7789] = {.lex_state = 265}, - [7790] = {.lex_state = 265}, - [7791] = {.lex_state = 315}, - [7792] = {.lex_state = 315}, - [7793] = {.lex_state = 343}, - [7794] = {.lex_state = 343}, - [7795] = {.lex_state = 343}, - [7796] = {.lex_state = 338}, - [7797] = {.lex_state = 315}, - [7798] = {.lex_state = 343}, - [7799] = {.lex_state = 343}, - [7800] = {.lex_state = 343}, - [7801] = {.lex_state = 298}, - [7802] = {.lex_state = 315}, - [7803] = {.lex_state = 315}, - [7804] = {.lex_state = 315}, - [7805] = {.lex_state = 267}, - [7806] = {.lex_state = 267}, - [7807] = {.lex_state = 343}, - [7808] = {.lex_state = 343}, - [7809] = {.lex_state = 267}, - [7810] = {.lex_state = 315}, - [7811] = {.lex_state = 315}, - [7812] = {.lex_state = 343}, - [7813] = {.lex_state = 343}, - [7814] = {.lex_state = 343}, - [7815] = {.lex_state = 298}, - [7816] = {.lex_state = 315}, - [7817] = {.lex_state = 343}, - [7818] = {.lex_state = 316}, - [7819] = {.lex_state = 315}, - [7820] = {.lex_state = 315}, - [7821] = {.lex_state = 343}, - [7822] = {.lex_state = 267}, + [7686] = {.lex_state = 285}, + [7687] = {.lex_state = 285}, + [7688] = {.lex_state = 266}, + [7689] = {.lex_state = 285}, + [7690] = {.lex_state = 285}, + [7691] = {.lex_state = 285}, + [7692] = {.lex_state = 285}, + [7693] = {.lex_state = 285}, + [7694] = {.lex_state = 285}, + [7695] = {.lex_state = 348}, + [7696] = {.lex_state = 348}, + [7697] = {.lex_state = 285}, + [7698] = {.lex_state = 298}, + [7699] = {.lex_state = 285}, + [7700] = {.lex_state = 333}, + [7701] = {.lex_state = 266}, + [7702] = {.lex_state = 338}, + [7703] = {.lex_state = 338}, + [7704] = {.lex_state = 338}, + [7705] = {.lex_state = 338}, + [7706] = {.lex_state = 338}, + [7707] = {.lex_state = 285}, + [7708] = {.lex_state = 285}, + [7709] = {.lex_state = 285}, + [7710] = {.lex_state = 285}, + [7711] = {.lex_state = 285}, + [7712] = {.lex_state = 285}, + [7713] = {.lex_state = 285}, + [7714] = {.lex_state = 285}, + [7715] = {.lex_state = 285}, + [7716] = {.lex_state = 285}, + [7717] = {.lex_state = 285}, + [7718] = {.lex_state = 285}, + [7719] = {.lex_state = 285}, + [7720] = {.lex_state = 285}, + [7721] = {.lex_state = 266}, + [7722] = {.lex_state = 285}, + [7723] = {.lex_state = 338}, + [7724] = {.lex_state = 338}, + [7725] = {.lex_state = 285}, + [7726] = {.lex_state = 338}, + [7727] = {.lex_state = 338}, + [7728] = {.lex_state = 338}, + [7729] = {.lex_state = 338}, + [7730] = {.lex_state = 280}, + [7731] = {.lex_state = 338}, + [7732] = {.lex_state = 285}, + [7733] = {.lex_state = 266}, + [7734] = {.lex_state = 266}, + [7735] = {.lex_state = 266}, + [7736] = {.lex_state = 266}, + [7737] = {.lex_state = 266}, + [7738] = {.lex_state = 266}, + [7739] = {.lex_state = 338}, + [7740] = {.lex_state = 348}, + [7741] = {.lex_state = 348}, + [7742] = {.lex_state = 348}, + [7743] = {.lex_state = 340}, + [7744] = {.lex_state = 285}, + [7745] = {.lex_state = 348}, + [7746] = {.lex_state = 348}, + [7747] = {.lex_state = 348}, + [7748] = {.lex_state = 348}, + [7749] = {.lex_state = 348}, + [7750] = {.lex_state = 348}, + [7751] = {.lex_state = 348}, + [7752] = {.lex_state = 348}, + [7753] = {.lex_state = 348}, + [7754] = {.lex_state = 340}, + [7755] = {.lex_state = 348}, + [7756] = {.lex_state = 348}, + [7757] = {.lex_state = 348}, + [7758] = {.lex_state = 340}, + [7759] = {.lex_state = 340}, + [7760] = {.lex_state = 348}, + [7761] = {.lex_state = 348}, + [7762] = {.lex_state = 348}, + [7763] = {.lex_state = 348}, + [7764] = {.lex_state = 348}, + [7765] = {.lex_state = 340}, + [7766] = {.lex_state = 348}, + [7767] = {.lex_state = 340}, + [7768] = {.lex_state = 348}, + [7769] = {.lex_state = 348}, + [7770] = {.lex_state = 340}, + [7771] = {.lex_state = 348}, + [7772] = {.lex_state = 348}, + [7773] = {.lex_state = 348}, + [7774] = {.lex_state = 348}, + [7775] = {.lex_state = 348}, + [7776] = {.lex_state = 340}, + [7777] = {.lex_state = 315}, + [7778] = {.lex_state = 348}, + [7779] = {.lex_state = 315}, + [7780] = {.lex_state = 348}, + [7781] = {.lex_state = 348}, + [7782] = {.lex_state = 348}, + [7783] = {.lex_state = 348}, + [7784] = {.lex_state = 315}, + [7785] = {.lex_state = 348}, + [7786] = {.lex_state = 348}, + [7787] = {.lex_state = 348}, + [7788] = {.lex_state = 348}, + [7789] = {.lex_state = 333}, + [7790] = {.lex_state = 348}, + [7791] = {.lex_state = 348}, + [7792] = {.lex_state = 348}, + [7793] = {.lex_state = 340}, + [7794] = {.lex_state = 340}, + [7795] = {.lex_state = 348}, + [7796] = {.lex_state = 348}, + [7797] = {.lex_state = 348}, + [7798] = {.lex_state = 348}, + [7799] = {.lex_state = 340}, + [7800] = {.lex_state = 340}, + [7801] = {.lex_state = 348}, + [7802] = {.lex_state = 348}, + [7803] = {.lex_state = 348}, + [7804] = {.lex_state = 348}, + [7805] = {.lex_state = 265}, + [7806] = {.lex_state = 265}, + [7807] = {.lex_state = 265}, + [7808] = {.lex_state = 265}, + [7809] = {.lex_state = 265}, + [7810] = {.lex_state = 265}, + [7811] = {.lex_state = 265}, + [7812] = {.lex_state = 265}, + [7813] = {.lex_state = 265}, + [7814] = {.lex_state = 265}, + [7815] = {.lex_state = 265}, + [7816] = {.lex_state = 265}, + [7817] = {.lex_state = 265}, + [7818] = {.lex_state = 265}, + [7819] = {.lex_state = 265}, + [7820] = {.lex_state = 265}, + [7821] = {.lex_state = 285}, + [7822] = {.lex_state = 265}, [7823] = {.lex_state = 265}, - [7824] = {.lex_state = 343}, - [7825] = {.lex_state = 315}, - [7826] = {.lex_state = 343}, - [7827] = {.lex_state = 267}, - [7828] = {.lex_state = 298}, - [7829] = {.lex_state = 315}, - [7830] = {.lex_state = 343}, - [7831] = {.lex_state = 315}, - [7832] = {.lex_state = 315}, - [7833] = {.lex_state = 343}, - [7834] = {.lex_state = 315}, - [7835] = {.lex_state = 343}, - [7836] = {.lex_state = 343}, - [7837] = {.lex_state = 343}, - [7838] = {.lex_state = 338}, - [7839] = {.lex_state = 315}, - [7840] = {.lex_state = 315}, - [7841] = {.lex_state = 343}, - [7842] = {.lex_state = 343}, - [7843] = {.lex_state = 343}, - [7844] = {.lex_state = 343}, - [7845] = {.lex_state = 343}, - [7846] = {.lex_state = 267}, - [7847] = {.lex_state = 343}, - [7848] = {.lex_state = 343}, - [7849] = {.lex_state = 343}, - [7850] = {.lex_state = 315}, - [7851] = {.lex_state = 343}, - [7852] = {.lex_state = 343}, - [7853] = {.lex_state = 315}, - [7854] = {.lex_state = 343}, - [7855] = {.lex_state = 298}, - [7856] = {.lex_state = 315}, - [7857] = {.lex_state = 298}, - [7858] = {.lex_state = 343}, - [7859] = {.lex_state = 343}, - [7860] = {.lex_state = 315}, - [7861] = {.lex_state = 298}, - [7862] = {.lex_state = 343}, - [7863] = {.lex_state = 315}, - [7864] = {.lex_state = 315}, - [7865] = {.lex_state = 315}, - [7866] = {.lex_state = 315}, - [7867] = {.lex_state = 315}, - [7868] = {.lex_state = 316}, - [7869] = {.lex_state = 315}, - [7870] = {.lex_state = 315}, - [7871] = {.lex_state = 338}, - [7872] = {.lex_state = 315}, - [7873] = {.lex_state = 338}, - [7874] = {.lex_state = 267}, - [7875] = {.lex_state = 315}, - [7876] = {.lex_state = 267}, - [7877] = {.lex_state = 338}, - [7878] = {.lex_state = 315}, - [7879] = {.lex_state = 315}, - [7880] = {.lex_state = 338}, - [7881] = {.lex_state = 267}, - [7882] = {.lex_state = 338}, - [7883] = {.lex_state = 338}, - [7884] = {.lex_state = 338}, - [7885] = {.lex_state = 267}, - [7886] = {.lex_state = 335}, - [7887] = {.lex_state = 338}, - [7888] = {.lex_state = 338}, - [7889] = {.lex_state = 338}, - [7890] = {.lex_state = 338}, - [7891] = {.lex_state = 338}, - [7892] = {.lex_state = 338}, - [7893] = {.lex_state = 338}, - [7894] = {.lex_state = 335}, - [7895] = {.lex_state = 338}, - [7896] = {.lex_state = 338}, - [7897] = {.lex_state = 267}, - [7898] = {.lex_state = 338}, - [7899] = {.lex_state = 338}, - [7900] = {.lex_state = 286}, - [7901] = {.lex_state = 338}, + [7824] = {.lex_state = 265}, + [7825] = {.lex_state = 265}, + [7826] = {.lex_state = 265}, + [7827] = {.lex_state = 265}, + [7828] = {.lex_state = 265}, + [7829] = {.lex_state = 265}, + [7830] = {.lex_state = 265}, + [7831] = {.lex_state = 265}, + [7832] = {.lex_state = 338}, + [7833] = {.lex_state = 298}, + [7834] = {.lex_state = 265}, + [7835] = {.lex_state = 265}, + [7836] = {.lex_state = 265}, + [7837] = {.lex_state = 265}, + [7838] = {.lex_state = 265}, + [7839] = {.lex_state = 265}, + [7840] = {.lex_state = 298}, + [7841] = {.lex_state = 265}, + [7842] = {.lex_state = 298}, + [7843] = {.lex_state = 265}, + [7844] = {.lex_state = 265}, + [7845] = {.lex_state = 265}, + [7846] = {.lex_state = 265}, + [7847] = {.lex_state = 298}, + [7848] = {.lex_state = 298}, + [7849] = {.lex_state = 298}, + [7850] = {.lex_state = 265}, + [7851] = {.lex_state = 265}, + [7852] = {.lex_state = 265}, + [7853] = {.lex_state = 265}, + [7854] = {.lex_state = 265}, + [7855] = {.lex_state = 265}, + [7856] = {.lex_state = 265}, + [7857] = {.lex_state = 265}, + [7858] = {.lex_state = 285}, + [7859] = {.lex_state = 265}, + [7860] = {.lex_state = 265}, + [7861] = {.lex_state = 265}, + [7862] = {.lex_state = 265}, + [7863] = {.lex_state = 285}, + [7864] = {.lex_state = 285}, + [7865] = {.lex_state = 265}, + [7866] = {.lex_state = 285}, + [7867] = {.lex_state = 265}, + [7868] = {.lex_state = 265}, + [7869] = {.lex_state = 265}, + [7870] = {.lex_state = 265}, + [7871] = {.lex_state = 265}, + [7872] = {.lex_state = 265}, + [7873] = {.lex_state = 265}, + [7874] = {.lex_state = 265}, + [7875] = {.lex_state = 265}, + [7876] = {.lex_state = 265}, + [7877] = {.lex_state = 265}, + [7878] = {.lex_state = 265}, + [7879] = {.lex_state = 265}, + [7880] = {.lex_state = 265}, + [7881] = {.lex_state = 265}, + [7882] = {.lex_state = 265}, + [7883] = {.lex_state = 265}, + [7884] = {.lex_state = 265}, + [7885] = {.lex_state = 265}, + [7886] = {.lex_state = 265}, + [7887] = {.lex_state = 265}, + [7888] = {.lex_state = 265}, + [7889] = {.lex_state = 265}, + [7890] = {.lex_state = 265}, + [7891] = {.lex_state = 265}, + [7892] = {.lex_state = 265}, + [7893] = {.lex_state = 265}, + [7894] = {.lex_state = 265}, + [7895] = {.lex_state = 265}, + [7896] = {.lex_state = 265}, + [7897] = {.lex_state = 265}, + [7898] = {.lex_state = 265}, + [7899] = {.lex_state = 265}, + [7900] = {.lex_state = 265}, + [7901] = {.lex_state = 315}, [7902] = {.lex_state = 265}, - [7903] = {.lex_state = 335}, - [7904] = {.lex_state = 267}, + [7903] = {.lex_state = 265}, + [7904] = {.lex_state = 265}, [7905] = {.lex_state = 265}, - [7906] = {.lex_state = 335}, + [7906] = {.lex_state = 265}, [7907] = {.lex_state = 265}, - [7908] = {.lex_state = 335}, - [7909] = {.lex_state = 267}, - [7910] = {.lex_state = 267}, - [7911] = {.lex_state = 267}, - [7912] = {.lex_state = 335}, - [7913] = {.lex_state = 267}, - [7914] = {.lex_state = 335}, - [7915] = {.lex_state = 267}, - [7916] = {.lex_state = 338}, - [7917] = {.lex_state = 338}, - [7918] = {.lex_state = 335}, - [7919] = {.lex_state = 267}, - [7920] = {.lex_state = 335}, - [7921] = {.lex_state = 267}, - [7922] = {.lex_state = 335}, - [7923] = {.lex_state = 267}, - [7924] = {.lex_state = 338}, - [7925] = {.lex_state = 286}, - [7926] = {.lex_state = 338}, - [7927] = {.lex_state = 338}, - [7928] = {.lex_state = 338}, - [7929] = {.lex_state = 265}, - [7930] = {.lex_state = 338}, - [7931] = {.lex_state = 338}, - [7932] = {.lex_state = 338}, - [7933] = {.lex_state = 338}, - [7934] = {.lex_state = 338}, - [7935] = {.lex_state = 335}, - [7936] = {.lex_state = 335}, - [7937] = {.lex_state = 338}, - [7938] = {.lex_state = 338}, - [7939] = {.lex_state = 267}, - [7940] = {.lex_state = 338}, - [7941] = {.lex_state = 338}, - [7942] = {.lex_state = 338}, - [7943] = {.lex_state = 338}, - [7944] = {.lex_state = 338}, - [7945] = {.lex_state = 338}, - [7946] = {.lex_state = 338}, - [7947] = {.lex_state = 338}, - [7948] = {.lex_state = 338}, - [7949] = {.lex_state = 338}, + [7908] = {.lex_state = 343}, + [7909] = {.lex_state = 315}, + [7910] = {.lex_state = 343}, + [7911] = {.lex_state = 343}, + [7912] = {.lex_state = 315}, + [7913] = {.lex_state = 343}, + [7914] = {.lex_state = 343}, + [7915] = {.lex_state = 343}, + [7916] = {.lex_state = 298}, + [7917] = {.lex_state = 298}, + [7918] = {.lex_state = 315}, + [7919] = {.lex_state = 315}, + [7920] = {.lex_state = 315}, + [7921] = {.lex_state = 315}, + [7922] = {.lex_state = 266}, + [7923] = {.lex_state = 338}, + [7924] = {.lex_state = 315}, + [7925] = {.lex_state = 315}, + [7926] = {.lex_state = 315}, + [7927] = {.lex_state = 343}, + [7928] = {.lex_state = 315}, + [7929] = {.lex_state = 266}, + [7930] = {.lex_state = 315}, + [7931] = {.lex_state = 315}, + [7932] = {.lex_state = 343}, + [7933] = {.lex_state = 266}, + [7934] = {.lex_state = 315}, + [7935] = {.lex_state = 277}, + [7936] = {.lex_state = 298}, + [7937] = {.lex_state = 315}, + [7938] = {.lex_state = 298}, + [7939] = {.lex_state = 277}, + [7940] = {.lex_state = 343}, + [7941] = {.lex_state = 343}, + [7942] = {.lex_state = 315}, + [7943] = {.lex_state = 315}, + [7944] = {.lex_state = 343}, + [7945] = {.lex_state = 343}, + [7946] = {.lex_state = 343}, + [7947] = {.lex_state = 315}, + [7948] = {.lex_state = 343}, + [7949] = {.lex_state = 315}, [7950] = {.lex_state = 338}, [7951] = {.lex_state = 343}, [7952] = {.lex_state = 343}, - [7953] = {.lex_state = 266}, - [7954] = {.lex_state = 286}, - [7955] = {.lex_state = 337}, - [7956] = {.lex_state = 338}, - [7957] = {.lex_state = 338}, - [7958] = {.lex_state = 338}, - [7959] = {.lex_state = 286}, - [7960] = {.lex_state = 281}, - [7961] = {.lex_state = 286}, - [7962] = {.lex_state = 340}, - [7963] = {.lex_state = 267}, - [7964] = {.lex_state = 315}, - [7965] = {.lex_state = 286}, - [7966] = {.lex_state = 286}, - [7967] = {.lex_state = 340}, - [7968] = {.lex_state = 286}, - [7969] = {.lex_state = 286}, - [7970] = {.lex_state = 267}, - [7971] = {.lex_state = 338}, - [7972] = {.lex_state = 340}, - [7973] = {.lex_state = 286}, - [7974] = {.lex_state = 242}, - [7975] = {.lex_state = 267}, - [7976] = {.lex_state = 286}, - [7977] = {.lex_state = 315}, - [7978] = {.lex_state = 286}, - [7979] = {.lex_state = 267}, - [7980] = {.lex_state = 267}, - [7981] = {.lex_state = 266}, - [7982] = {.lex_state = 286}, - [7983] = {.lex_state = 338}, - [7984] = {.lex_state = 340}, - [7985] = {.lex_state = 267}, - [7986] = {.lex_state = 286}, + [7953] = {.lex_state = 343}, + [7954] = {.lex_state = 315}, + [7955] = {.lex_state = 265}, + [7956] = {.lex_state = 315}, + [7957] = {.lex_state = 343}, + [7958] = {.lex_state = 343}, + [7959] = {.lex_state = 343}, + [7960] = {.lex_state = 343}, + [7961] = {.lex_state = 343}, + [7962] = {.lex_state = 266}, + [7963] = {.lex_state = 315}, + [7964] = {.lex_state = 266}, + [7965] = {.lex_state = 315}, + [7966] = {.lex_state = 315}, + [7967] = {.lex_state = 343}, + [7968] = {.lex_state = 298}, + [7969] = {.lex_state = 266}, + [7970] = {.lex_state = 343}, + [7971] = {.lex_state = 315}, + [7972] = {.lex_state = 315}, + [7973] = {.lex_state = 343}, + [7974] = {.lex_state = 343}, + [7975] = {.lex_state = 315}, + [7976] = {.lex_state = 315}, + [7977] = {.lex_state = 343}, + [7978] = {.lex_state = 343}, + [7979] = {.lex_state = 343}, + [7980] = {.lex_state = 343}, + [7981] = {.lex_state = 343}, + [7982] = {.lex_state = 343}, + [7983] = {.lex_state = 343}, + [7984] = {.lex_state = 343}, + [7985] = {.lex_state = 298}, + [7986] = {.lex_state = 315}, [7987] = {.lex_state = 338}, - [7988] = {.lex_state = 267}, - [7989] = {.lex_state = 338}, - [7990] = {.lex_state = 286}, - [7991] = {.lex_state = 340}, - [7992] = {.lex_state = 267}, - [7993] = {.lex_state = 286}, - [7994] = {.lex_state = 286}, - [7995] = {.lex_state = 286}, - [7996] = {.lex_state = 286}, + [7988] = {.lex_state = 338}, + [7989] = {.lex_state = 266}, + [7990] = {.lex_state = 315}, + [7991] = {.lex_state = 266}, + [7992] = {.lex_state = 315}, + [7993] = {.lex_state = 315}, + [7994] = {.lex_state = 266}, + [7995] = {.lex_state = 338}, + [7996] = {.lex_state = 315}, [7997] = {.lex_state = 338}, - [7998] = {.lex_state = 286}, - [7999] = {.lex_state = 286}, - [8000] = {.lex_state = 286}, - [8001] = {.lex_state = 286}, - [8002] = {.lex_state = 242}, - [8003] = {.lex_state = 286}, - [8004] = {.lex_state = 286}, + [7998] = {.lex_state = 315}, + [7999] = {.lex_state = 338}, + [8000] = {.lex_state = 338}, + [8001] = {.lex_state = 335}, + [8002] = {.lex_state = 265}, + [8003] = {.lex_state = 338}, + [8004] = {.lex_state = 338}, [8005] = {.lex_state = 338}, - [8006] = {.lex_state = 338}, - [8007] = {.lex_state = 338}, - [8008] = {.lex_state = 267}, - [8009] = {.lex_state = 338}, - [8010] = {.lex_state = 338}, - [8011] = {.lex_state = 338}, - [8012] = {.lex_state = 338}, + [8006] = {.lex_state = 285}, + [8007] = {.lex_state = 266}, + [8008] = {.lex_state = 335}, + [8009] = {.lex_state = 335}, + [8010] = {.lex_state = 265}, + [8011] = {.lex_state = 266}, + [8012] = {.lex_state = 266}, [8013] = {.lex_state = 338}, - [8014] = {.lex_state = 338}, - [8015] = {.lex_state = 267}, - [8016] = {.lex_state = 137}, - [8017] = {.lex_state = 267}, - [8018] = {.lex_state = 340}, - [8019] = {.lex_state = 340}, - [8020] = {.lex_state = 286}, - [8021] = {.lex_state = 242}, + [8014] = {.lex_state = 266}, + [8015] = {.lex_state = 338}, + [8016] = {.lex_state = 338}, + [8017] = {.lex_state = 338}, + [8018] = {.lex_state = 338}, + [8019] = {.lex_state = 265}, + [8020] = {.lex_state = 338}, + [8021] = {.lex_state = 265}, [8022] = {.lex_state = 338}, [8023] = {.lex_state = 338}, - [8024] = {.lex_state = 286}, - [8025] = {.lex_state = 315}, - [8026] = {.lex_state = 267}, + [8024] = {.lex_state = 335}, + [8025] = {.lex_state = 338}, + [8026] = {.lex_state = 338}, [8027] = {.lex_state = 266}, - [8028] = {.lex_state = 265}, + [8028] = {.lex_state = 266}, [8029] = {.lex_state = 266}, - [8030] = {.lex_state = 286}, - [8031] = {.lex_state = 286}, - [8032] = {.lex_state = 286}, - [8033] = {.lex_state = 286}, - [8034] = {.lex_state = 242}, - [8035] = {.lex_state = 242}, - [8036] = {.lex_state = 242}, - [8037] = {.lex_state = 286}, - [8038] = {.lex_state = 286}, - [8039] = {.lex_state = 242}, - [8040] = {.lex_state = 286}, - [8041] = {.lex_state = 242}, - [8042] = {.lex_state = 242}, - [8043] = {.lex_state = 265}, - [8044] = {.lex_state = 242}, - [8045] = {.lex_state = 242}, - [8046] = {.lex_state = 242}, - [8047] = {.lex_state = 266}, - [8048] = {.lex_state = 242}, - [8049] = {.lex_state = 242}, - [8050] = {.lex_state = 242}, - [8051] = {.lex_state = 242}, - [8052] = {.lex_state = 242}, - [8053] = {.lex_state = 242}, - [8054] = {.lex_state = 266}, - [8055] = {.lex_state = 242}, - [8056] = {.lex_state = 337}, - [8057] = {.lex_state = 281}, - [8058] = {.lex_state = 242}, - [8059] = {.lex_state = 266}, - [8060] = {.lex_state = 242}, - [8061] = {.lex_state = 266}, - [8062] = {.lex_state = 242}, - [8063] = {.lex_state = 242}, - [8064] = {.lex_state = 266}, - [8065] = {.lex_state = 242}, - [8066] = {.lex_state = 266}, - [8067] = {.lex_state = 242}, - [8068] = {.lex_state = 266}, - [8069] = {.lex_state = 266}, - [8070] = {.lex_state = 242}, - [8071] = {.lex_state = 266}, - [8072] = {.lex_state = 286}, - [8073] = {.lex_state = 286}, + [8030] = {.lex_state = 335}, + [8031] = {.lex_state = 338}, + [8032] = {.lex_state = 338}, + [8033] = {.lex_state = 338}, + [8034] = {.lex_state = 338}, + [8035] = {.lex_state = 338}, + [8036] = {.lex_state = 338}, + [8037] = {.lex_state = 338}, + [8038] = {.lex_state = 338}, + [8039] = {.lex_state = 335}, + [8040] = {.lex_state = 338}, + [8041] = {.lex_state = 335}, + [8042] = {.lex_state = 335}, + [8043] = {.lex_state = 338}, + [8044] = {.lex_state = 266}, + [8045] = {.lex_state = 335}, + [8046] = {.lex_state = 338}, + [8047] = {.lex_state = 335}, + [8048] = {.lex_state = 266}, + [8049] = {.lex_state = 338}, + [8050] = {.lex_state = 338}, + [8051] = {.lex_state = 338}, + [8052] = {.lex_state = 335}, + [8053] = {.lex_state = 266}, + [8054] = {.lex_state = 338}, + [8055] = {.lex_state = 266}, + [8056] = {.lex_state = 338}, + [8057] = {.lex_state = 338}, + [8058] = {.lex_state = 338}, + [8059] = {.lex_state = 338}, + [8060] = {.lex_state = 335}, + [8061] = {.lex_state = 285}, + [8062] = {.lex_state = 266}, + [8063] = {.lex_state = 338}, + [8064] = {.lex_state = 343}, + [8065] = {.lex_state = 343}, + [8066] = {.lex_state = 338}, + [8067] = {.lex_state = 338}, + [8068] = {.lex_state = 338}, + [8069] = {.lex_state = 338}, + [8070] = {.lex_state = 338}, + [8071] = {.lex_state = 337}, + [8072] = {.lex_state = 285}, + [8073] = {.lex_state = 338}, [8074] = {.lex_state = 286}, - [8075] = {.lex_state = 265}, - [8076] = {.lex_state = 242}, + [8075] = {.lex_state = 338}, + [8076] = {.lex_state = 285}, [8077] = {.lex_state = 266}, - [8078] = {.lex_state = 242}, + [8078] = {.lex_state = 286}, [8079] = {.lex_state = 266}, - [8080] = {.lex_state = 286}, - [8081] = {.lex_state = 265}, - [8082] = {.lex_state = 266}, - [8083] = {.lex_state = 286}, - [8084] = {.lex_state = 266}, - [8085] = {.lex_state = 266}, - [8086] = {.lex_state = 266}, - [8087] = {.lex_state = 286}, - [8088] = {.lex_state = 286}, - [8089] = {.lex_state = 335}, - [8090] = {.lex_state = 265}, - [8091] = {.lex_state = 242}, - [8092] = {.lex_state = 286}, - [8093] = {.lex_state = 286}, - [8094] = {.lex_state = 266}, - [8095] = {.lex_state = 286}, - [8096] = {.lex_state = 286}, - [8097] = {.lex_state = 286}, - [8098] = {.lex_state = 286}, - [8099] = {.lex_state = 242}, - [8100] = {.lex_state = 286}, - [8101] = {.lex_state = 242}, - [8102] = {.lex_state = 286}, - [8103] = {.lex_state = 316}, - [8104] = {.lex_state = 242}, - [8105] = {.lex_state = 242}, - [8106] = {.lex_state = 265}, + [8080] = {.lex_state = 338}, + [8081] = {.lex_state = 338}, + [8082] = {.lex_state = 340}, + [8083] = {.lex_state = 285}, + [8084] = {.lex_state = 285}, + [8085] = {.lex_state = 285}, + [8086] = {.lex_state = 285}, + [8087] = {.lex_state = 338}, + [8088] = {.lex_state = 285}, + [8089] = {.lex_state = 285}, + [8090] = {.lex_state = 266}, + [8091] = {.lex_state = 266}, + [8092] = {.lex_state = 315}, + [8093] = {.lex_state = 315}, + [8094] = {.lex_state = 285}, + [8095] = {.lex_state = 285}, + [8096] = {.lex_state = 340}, + [8097] = {.lex_state = 338}, + [8098] = {.lex_state = 285}, + [8099] = {.lex_state = 315}, + [8100] = {.lex_state = 340}, + [8101] = {.lex_state = 266}, + [8102] = {.lex_state = 338}, + [8103] = {.lex_state = 285}, + [8104] = {.lex_state = 338}, + [8105] = {.lex_state = 285}, + [8106] = {.lex_state = 285}, [8107] = {.lex_state = 242}, - [8108] = {.lex_state = 242}, - [8109] = {.lex_state = 242}, - [8110] = {.lex_state = 242}, - [8111] = {.lex_state = 242}, - [8112] = {.lex_state = 242}, - [8113] = {.lex_state = 242}, - [8114] = {.lex_state = 266}, + [8108] = {.lex_state = 340}, + [8109] = {.lex_state = 285}, + [8110] = {.lex_state = 285}, + [8111] = {.lex_state = 285}, + [8112] = {.lex_state = 338}, + [8113] = {.lex_state = 285}, + [8114] = {.lex_state = 338}, [8115] = {.lex_state = 266}, - [8116] = {.lex_state = 242}, + [8116] = {.lex_state = 338}, [8117] = {.lex_state = 266}, - [8118] = {.lex_state = 266}, - [8119] = {.lex_state = 242}, - [8120] = {.lex_state = 338}, - [8121] = {.lex_state = 265}, + [8118] = {.lex_state = 242}, + [8119] = {.lex_state = 285}, + [8120] = {.lex_state = 285}, + [8121] = {.lex_state = 340}, [8122] = {.lex_state = 265}, - [8123] = {.lex_state = 265}, - [8124] = {.lex_state = 267}, - [8125] = {.lex_state = 265}, - [8126] = {.lex_state = 265}, - [8127] = {.lex_state = 267}, - [8128] = {.lex_state = 137}, - [8129] = {.lex_state = 265}, - [8130] = {.lex_state = 137}, - [8131] = {.lex_state = 137}, - [8132] = {.lex_state = 266}, - [8133] = {.lex_state = 137}, - [8134] = {.lex_state = 137}, - [8135] = {.lex_state = 265}, - [8136] = {.lex_state = 286}, - [8137] = {.lex_state = 286}, - [8138] = {.lex_state = 266}, - [8139] = {.lex_state = 267}, - [8140] = {.lex_state = 338}, - [8141] = {.lex_state = 286}, - [8142] = {.lex_state = 286}, - [8143] = {.lex_state = 335}, - [8144] = {.lex_state = 286}, - [8145] = {.lex_state = 137}, - [8146] = {.lex_state = 137}, - [8147] = {.lex_state = 338}, - [8148] = {.lex_state = 338}, - [8149] = {.lex_state = 338}, - [8150] = {.lex_state = 338}, - [8151] = {.lex_state = 265}, - [8152] = {.lex_state = 338}, - [8153] = {.lex_state = 265}, - [8154] = {.lex_state = 265}, - [8155] = {.lex_state = 338}, - [8156] = {.lex_state = 338}, - [8157] = {.lex_state = 286}, - [8158] = {.lex_state = 286}, - [8159] = {.lex_state = 265}, - [8160] = {.lex_state = 338}, - [8161] = {.lex_state = 137}, - [8162] = {.lex_state = 338}, - [8163] = {.lex_state = 338}, - [8164] = {.lex_state = 338}, - [8165] = {.lex_state = 338}, - [8166] = {.lex_state = 340}, - [8167] = {.lex_state = 265}, - [8168] = {.lex_state = 265}, - [8169] = {.lex_state = 338}, - [8170] = {.lex_state = 338}, - [8171] = {.lex_state = 316}, - [8172] = {.lex_state = 265}, - [8173] = {.lex_state = 265}, - [8174] = {.lex_state = 265}, - [8175] = {.lex_state = 265}, - [8176] = {.lex_state = 265}, - [8177] = {.lex_state = 265}, - [8178] = {.lex_state = 265}, - [8179] = {.lex_state = 137}, - [8180] = {.lex_state = 338}, - [8181] = {.lex_state = 338}, - [8182] = {.lex_state = 286}, - [8183] = {.lex_state = 338}, - [8184] = {.lex_state = 286}, - [8185] = {.lex_state = 137}, - [8186] = {.lex_state = 267}, - [8187] = {.lex_state = 137}, - [8188] = {.lex_state = 137}, - [8189] = {.lex_state = 265}, - [8190] = {.lex_state = 338}, - [8191] = {.lex_state = 265}, - [8192] = {.lex_state = 265}, - [8193] = {.lex_state = 265}, - [8194] = {.lex_state = 137}, - [8195] = {.lex_state = 338}, - [8196] = {.lex_state = 137}, - [8197] = {.lex_state = 267}, - [8198] = {.lex_state = 338}, - [8199] = {.lex_state = 286}, - [8200] = {.lex_state = 286}, - [8201] = {.lex_state = 265}, - [8202] = {.lex_state = 265}, - [8203] = {.lex_state = 286}, - [8204] = {.lex_state = 137}, - [8205] = {.lex_state = 137}, + [8123] = {.lex_state = 285}, + [8124] = {.lex_state = 338}, + [8125] = {.lex_state = 338}, + [8126] = {.lex_state = 338}, + [8127] = {.lex_state = 338}, + [8128] = {.lex_state = 340}, + [8129] = {.lex_state = 266}, + [8130] = {.lex_state = 285}, + [8131] = {.lex_state = 286}, + [8132] = {.lex_state = 338}, + [8133] = {.lex_state = 338}, + [8134] = {.lex_state = 266}, + [8135] = {.lex_state = 285}, + [8136] = {.lex_state = 139}, + [8137] = {.lex_state = 242}, + [8138] = {.lex_state = 338}, + [8139] = {.lex_state = 285}, + [8140] = {.lex_state = 266}, + [8141] = {.lex_state = 285}, + [8142] = {.lex_state = 285}, + [8143] = {.lex_state = 285}, + [8144] = {.lex_state = 285}, + [8145] = {.lex_state = 286}, + [8146] = {.lex_state = 340}, + [8147] = {.lex_state = 266}, + [8148] = {.lex_state = 266}, + [8149] = {.lex_state = 280}, + [8150] = {.lex_state = 285}, + [8151] = {.lex_state = 242}, + [8152] = {.lex_state = 242}, + [8153] = {.lex_state = 242}, + [8154] = {.lex_state = 285}, + [8155] = {.lex_state = 286}, + [8156] = {.lex_state = 242}, + [8157] = {.lex_state = 285}, + [8158] = {.lex_state = 242}, + [8159] = {.lex_state = 286}, + [8160] = {.lex_state = 242}, + [8161] = {.lex_state = 242}, + [8162] = {.lex_state = 285}, + [8163] = {.lex_state = 242}, + [8164] = {.lex_state = 286}, + [8165] = {.lex_state = 285}, + [8166] = {.lex_state = 285}, + [8167] = {.lex_state = 242}, + [8168] = {.lex_state = 242}, + [8169] = {.lex_state = 285}, + [8170] = {.lex_state = 242}, + [8171] = {.lex_state = 285}, + [8172] = {.lex_state = 242}, + [8173] = {.lex_state = 242}, + [8174] = {.lex_state = 319}, + [8175] = {.lex_state = 285}, + [8176] = {.lex_state = 242}, + [8177] = {.lex_state = 242}, + [8178] = {.lex_state = 242}, + [8179] = {.lex_state = 286}, + [8180] = {.lex_state = 242}, + [8181] = {.lex_state = 265}, + [8182] = {.lex_state = 242}, + [8183] = {.lex_state = 242}, + [8184] = {.lex_state = 337}, + [8185] = {.lex_state = 286}, + [8186] = {.lex_state = 242}, + [8187] = {.lex_state = 242}, + [8188] = {.lex_state = 286}, + [8189] = {.lex_state = 285}, + [8190] = {.lex_state = 242}, + [8191] = {.lex_state = 242}, + [8192] = {.lex_state = 242}, + [8193] = {.lex_state = 286}, + [8194] = {.lex_state = 285}, + [8195] = {.lex_state = 286}, + [8196] = {.lex_state = 285}, + [8197] = {.lex_state = 285}, + [8198] = {.lex_state = 286}, + [8199] = {.lex_state = 242}, + [8200] = {.lex_state = 242}, + [8201] = {.lex_state = 286}, + [8202] = {.lex_state = 286}, + [8203] = {.lex_state = 242}, + [8204] = {.lex_state = 242}, + [8205] = {.lex_state = 242}, [8206] = {.lex_state = 286}, - [8207] = {.lex_state = 137}, - [8208] = {.lex_state = 338}, - [8209] = {.lex_state = 265}, - [8210] = {.lex_state = 337}, - [8211] = {.lex_state = 265}, - [8212] = {.lex_state = 347}, - [8213] = {.lex_state = 340}, - [8214] = {.lex_state = 137}, - [8215] = {.lex_state = 137}, - [8216] = {.lex_state = 338}, - [8217] = {.lex_state = 137}, - [8218] = {.lex_state = 265}, - [8219] = {.lex_state = 265}, - [8220] = {.lex_state = 265}, - [8221] = {.lex_state = 137}, - [8222] = {.lex_state = 137}, - [8223] = {.lex_state = 137}, - [8224] = {.lex_state = 137}, - [8225] = {.lex_state = 137}, - [8226] = {.lex_state = 137}, - [8227] = {.lex_state = 137}, - [8228] = {.lex_state = 137}, - [8229] = {.lex_state = 137}, - [8230] = {.lex_state = 265}, - [8231] = {.lex_state = 137}, - [8232] = {.lex_state = 137}, - [8233] = {.lex_state = 137}, - [8234] = {.lex_state = 338}, - [8235] = {.lex_state = 338}, - [8236] = {.lex_state = 335}, - [8237] = {.lex_state = 337}, + [8207] = {.lex_state = 286}, + [8208] = {.lex_state = 285}, + [8209] = {.lex_state = 242}, + [8210] = {.lex_state = 286}, + [8211] = {.lex_state = 286}, + [8212] = {.lex_state = 286}, + [8213] = {.lex_state = 285}, + [8214] = {.lex_state = 285}, + [8215] = {.lex_state = 242}, + [8216] = {.lex_state = 242}, + [8217] = {.lex_state = 242}, + [8218] = {.lex_state = 280}, + [8219] = {.lex_state = 242}, + [8220] = {.lex_state = 242}, + [8221] = {.lex_state = 286}, + [8222] = {.lex_state = 335}, + [8223] = {.lex_state = 265}, + [8224] = {.lex_state = 242}, + [8225] = {.lex_state = 285}, + [8226] = {.lex_state = 242}, + [8227] = {.lex_state = 242}, + [8228] = {.lex_state = 242}, + [8229] = {.lex_state = 265}, + [8230] = {.lex_state = 286}, + [8231] = {.lex_state = 286}, + [8232] = {.lex_state = 286}, + [8233] = {.lex_state = 285}, + [8234] = {.lex_state = 242}, + [8235] = {.lex_state = 242}, + [8236] = {.lex_state = 265}, + [8237] = {.lex_state = 242}, [8238] = {.lex_state = 265}, - [8239] = {.lex_state = 338}, - [8240] = {.lex_state = 338}, - [8241] = {.lex_state = 137}, - [8242] = {.lex_state = 271}, + [8239] = {.lex_state = 285}, + [8240] = {.lex_state = 242}, + [8241] = {.lex_state = 340}, + [8242] = {.lex_state = 338}, [8243] = {.lex_state = 338}, - [8244] = {.lex_state = 337}, - [8245] = {.lex_state = 338}, - [8246] = {.lex_state = 271}, - [8247] = {.lex_state = 340}, - [8248] = {.lex_state = 337}, - [8249] = {.lex_state = 340}, - [8250] = {.lex_state = 267}, - [8251] = {.lex_state = 340}, - [8252] = {.lex_state = 337}, - [8253] = {.lex_state = 338}, - [8254] = {.lex_state = 337}, - [8255] = {.lex_state = 338}, - [8256] = {.lex_state = 338}, - [8257] = {.lex_state = 338}, - [8258] = {.lex_state = 265}, - [8259] = {.lex_state = 337}, - [8260] = {.lex_state = 337}, - [8261] = {.lex_state = 337}, - [8262] = {.lex_state = 265}, - [8263] = {.lex_state = 337}, + [8244] = {.lex_state = 266}, + [8245] = {.lex_state = 285}, + [8246] = {.lex_state = 139}, + [8247] = {.lex_state = 286}, + [8248] = {.lex_state = 265}, + [8249] = {.lex_state = 285}, + [8250] = {.lex_state = 338}, + [8251] = {.lex_state = 338}, + [8252] = {.lex_state = 266}, + [8253] = {.lex_state = 139}, + [8254] = {.lex_state = 139}, + [8255] = {.lex_state = 265}, + [8256] = {.lex_state = 265}, + [8257] = {.lex_state = 285}, + [8258] = {.lex_state = 338}, + [8259] = {.lex_state = 265}, + [8260] = {.lex_state = 338}, + [8261] = {.lex_state = 338}, + [8262] = {.lex_state = 338}, + [8263] = {.lex_state = 266}, [8264] = {.lex_state = 338}, - [8265] = {.lex_state = 337}, + [8265] = {.lex_state = 265}, [8266] = {.lex_state = 338}, - [8267] = {.lex_state = 267}, - [8268] = {.lex_state = 337}, - [8269] = {.lex_state = 337}, - [8270] = {.lex_state = 265}, - [8271] = {.lex_state = 337}, - [8272] = {.lex_state = 337}, - [8273] = {.lex_state = 267}, - [8274] = {.lex_state = 267}, + [8267] = {.lex_state = 285}, + [8268] = {.lex_state = 340}, + [8269] = {.lex_state = 285}, + [8270] = {.lex_state = 335}, + [8271] = {.lex_state = 266}, + [8272] = {.lex_state = 139}, + [8273] = {.lex_state = 139}, + [8274] = {.lex_state = 265}, [8275] = {.lex_state = 265}, [8276] = {.lex_state = 337}, - [8277] = {.lex_state = 338}, - [8278] = {.lex_state = 337}, - [8279] = {.lex_state = 271}, - [8280] = {.lex_state = 337}, - [8281] = {.lex_state = 337}, + [8277] = {.lex_state = 139}, + [8278] = {.lex_state = 319}, + [8279] = {.lex_state = 265}, + [8280] = {.lex_state = 265}, + [8281] = {.lex_state = 265}, [8282] = {.lex_state = 265}, - [8283] = {.lex_state = 281}, - [8284] = {.lex_state = 338}, + [8283] = {.lex_state = 265}, + [8284] = {.lex_state = 265}, [8285] = {.lex_state = 265}, - [8286] = {.lex_state = 338}, - [8287] = {.lex_state = 267}, - [8288] = {.lex_state = 265}, - [8289] = {.lex_state = 265}, + [8286] = {.lex_state = 139}, + [8287] = {.lex_state = 139}, + [8288] = {.lex_state = 139}, + [8289] = {.lex_state = 285}, [8290] = {.lex_state = 265}, - [8291] = {.lex_state = 271}, - [8292] = {.lex_state = 340}, - [8293] = {.lex_state = 337}, - [8294] = {.lex_state = 340}, - [8295] = {.lex_state = 337}, - [8296] = {.lex_state = 337}, - [8297] = {.lex_state = 342}, - [8298] = {.lex_state = 267}, - [8299] = {.lex_state = 340}, - [8300] = {.lex_state = 338}, - [8301] = {.lex_state = 265}, - [8302] = {.lex_state = 271}, - [8303] = {.lex_state = 267}, - [8304] = {.lex_state = 342}, - [8305] = {.lex_state = 338}, - [8306] = {.lex_state = 337}, - [8307] = {.lex_state = 338}, - [8308] = {.lex_state = 338}, - [8309] = {.lex_state = 338}, - [8310] = {.lex_state = 338}, - [8311] = {.lex_state = 338}, + [8291] = {.lex_state = 139}, + [8292] = {.lex_state = 285}, + [8293] = {.lex_state = 139}, + [8294] = {.lex_state = 338}, + [8295] = {.lex_state = 335}, + [8296] = {.lex_state = 139}, + [8297] = {.lex_state = 338}, + [8298] = {.lex_state = 338}, + [8299] = {.lex_state = 265}, + [8300] = {.lex_state = 265}, + [8301] = {.lex_state = 338}, + [8302] = {.lex_state = 139}, + [8303] = {.lex_state = 139}, + [8304] = {.lex_state = 265}, + [8305] = {.lex_state = 139}, + [8306] = {.lex_state = 139}, + [8307] = {.lex_state = 265}, + [8308] = {.lex_state = 265}, + [8309] = {.lex_state = 265}, + [8310] = {.lex_state = 265}, + [8311] = {.lex_state = 285}, [8312] = {.lex_state = 338}, [8313] = {.lex_state = 338}, - [8314] = {.lex_state = 337}, - [8315] = {.lex_state = 337}, - [8316] = {.lex_state = 337}, - [8317] = {.lex_state = 337}, - [8318] = {.lex_state = 337}, - [8319] = {.lex_state = 337}, - [8320] = {.lex_state = 337}, - [8321] = {.lex_state = 338}, - [8322] = {.lex_state = 337}, - [8323] = {.lex_state = 265}, - [8324] = {.lex_state = 265}, + [8314] = {.lex_state = 338}, + [8315] = {.lex_state = 139}, + [8316] = {.lex_state = 139}, + [8317] = {.lex_state = 265}, + [8318] = {.lex_state = 139}, + [8319] = {.lex_state = 139}, + [8320] = {.lex_state = 265}, + [8321] = {.lex_state = 139}, + [8322] = {.lex_state = 139}, + [8323] = {.lex_state = 139}, + [8324] = {.lex_state = 139}, [8325] = {.lex_state = 265}, - [8326] = {.lex_state = 265}, - [8327] = {.lex_state = 315}, - [8328] = {.lex_state = 338}, - [8329] = {.lex_state = 337}, - [8330] = {.lex_state = 337}, - [8331] = {.lex_state = 337}, - [8332] = {.lex_state = 337}, - [8333] = {.lex_state = 337}, - [8334] = {.lex_state = 265}, - [8335] = {.lex_state = 337}, - [8336] = {.lex_state = 265}, - [8337] = {.lex_state = 337}, - [8338] = {.lex_state = 337}, - [8339] = {.lex_state = 265}, - [8340] = {.lex_state = 265}, - [8341] = {.lex_state = 329}, - [8342] = {.lex_state = 265}, - [8343] = {.lex_state = 267}, - [8344] = {.lex_state = 340}, - [8345] = {.lex_state = 315}, + [8326] = {.lex_state = 139}, + [8327] = {.lex_state = 139}, + [8328] = {.lex_state = 265}, + [8329] = {.lex_state = 139}, + [8330] = {.lex_state = 139}, + [8331] = {.lex_state = 139}, + [8332] = {.lex_state = 265}, + [8333] = {.lex_state = 139}, + [8334] = {.lex_state = 338}, + [8335] = {.lex_state = 265}, + [8336] = {.lex_state = 337}, + [8337] = {.lex_state = 285}, + [8338] = {.lex_state = 265}, + [8339] = {.lex_state = 338}, + [8340] = {.lex_state = 285}, + [8341] = {.lex_state = 347}, + [8342] = {.lex_state = 286}, + [8343] = {.lex_state = 338}, + [8344] = {.lex_state = 285}, + [8345] = {.lex_state = 265}, [8346] = {.lex_state = 265}, - [8347] = {.lex_state = 265}, - [8348] = {.lex_state = 265}, - [8349] = {.lex_state = 329}, + [8347] = {.lex_state = 139}, + [8348] = {.lex_state = 139}, + [8349] = {.lex_state = 139}, [8350] = {.lex_state = 338}, [8351] = {.lex_state = 338}, - [8352] = {.lex_state = 329}, - [8353] = {.lex_state = 265}, + [8352] = {.lex_state = 265}, + [8353] = {.lex_state = 338}, [8354] = {.lex_state = 338}, - [8355] = {.lex_state = 265}, - [8356] = {.lex_state = 265}, - [8357] = {.lex_state = 265}, + [8355] = {.lex_state = 139}, + [8356] = {.lex_state = 139}, + [8357] = {.lex_state = 139}, [8358] = {.lex_state = 338}, - [8359] = {.lex_state = 338}, - [8360] = {.lex_state = 315}, - [8361] = {.lex_state = 265}, - [8362] = {.lex_state = 340}, + [8359] = {.lex_state = 266}, + [8360] = {.lex_state = 265}, + [8361] = {.lex_state = 139}, + [8362] = {.lex_state = 338}, [8363] = {.lex_state = 338}, - [8364] = {.lex_state = 315}, - [8365] = {.lex_state = 265}, - [8366] = {.lex_state = 271}, - [8367] = {.lex_state = 265}, - [8368] = {.lex_state = 265}, - [8369] = {.lex_state = 265}, - [8370] = {.lex_state = 267}, - [8371] = {.lex_state = 329}, - [8372] = {.lex_state = 265}, - [8373] = {.lex_state = 265}, - [8374] = {.lex_state = 338}, + [8364] = {.lex_state = 338}, + [8365] = {.lex_state = 285}, + [8366] = {.lex_state = 285}, + [8367] = {.lex_state = 338}, + [8368] = {.lex_state = 338}, + [8369] = {.lex_state = 337}, + [8370] = {.lex_state = 337}, + [8371] = {.lex_state = 265}, + [8372] = {.lex_state = 338}, + [8373] = {.lex_state = 338}, + [8374] = {.lex_state = 337}, [8375] = {.lex_state = 265}, - [8376] = {.lex_state = 265}, - [8377] = {.lex_state = 338}, + [8376] = {.lex_state = 338}, + [8377] = {.lex_state = 265}, [8378] = {.lex_state = 337}, - [8379] = {.lex_state = 265}, - [8380] = {.lex_state = 265}, - [8381] = {.lex_state = 265}, - [8382] = {.lex_state = 265}, - [8383] = {.lex_state = 338}, + [8379] = {.lex_state = 338}, + [8380] = {.lex_state = 338}, + [8381] = {.lex_state = 342}, + [8382] = {.lex_state = 338}, + [8383] = {.lex_state = 266}, [8384] = {.lex_state = 338}, [8385] = {.lex_state = 338}, [8386] = {.lex_state = 338}, - [8387] = {.lex_state = 272}, - [8388] = {.lex_state = 338}, - [8389] = {.lex_state = 342}, - [8390] = {.lex_state = 272}, - [8391] = {.lex_state = 342}, - [8392] = {.lex_state = 272}, - [8393] = {.lex_state = 342}, - [8394] = {.lex_state = 338}, - [8395] = {.lex_state = 265}, - [8396] = {.lex_state = 316}, - [8397] = {.lex_state = 342}, - [8398] = {.lex_state = 272}, - [8399] = {.lex_state = 272}, - [8400] = {.lex_state = 338}, - [8401] = {.lex_state = 338}, - [8402] = {.lex_state = 338}, - [8403] = {.lex_state = 265}, - [8404] = {.lex_state = 265}, - [8405] = {.lex_state = 342}, - [8406] = {.lex_state = 265}, - [8407] = {.lex_state = 338}, - [8408] = {.lex_state = 342}, - [8409] = {.lex_state = 272}, - [8410] = {.lex_state = 342}, - [8411] = {.lex_state = 265}, - [8412] = {.lex_state = 338}, - [8413] = {.lex_state = 338}, - [8414] = {.lex_state = 265}, - [8415] = {.lex_state = 338}, + [8387] = {.lex_state = 338}, + [8388] = {.lex_state = 265}, + [8389] = {.lex_state = 340}, + [8390] = {.lex_state = 266}, + [8391] = {.lex_state = 265}, + [8392] = {.lex_state = 340}, + [8393] = {.lex_state = 265}, + [8394] = {.lex_state = 340}, + [8395] = {.lex_state = 337}, + [8396] = {.lex_state = 337}, + [8397] = {.lex_state = 338}, + [8398] = {.lex_state = 337}, + [8399] = {.lex_state = 337}, + [8400] = {.lex_state = 265}, + [8401] = {.lex_state = 337}, + [8402] = {.lex_state = 337}, + [8403] = {.lex_state = 337}, + [8404] = {.lex_state = 298}, + [8405] = {.lex_state = 338}, + [8406] = {.lex_state = 298}, + [8407] = {.lex_state = 298}, + [8408] = {.lex_state = 337}, + [8409] = {.lex_state = 266}, + [8410] = {.lex_state = 338}, + [8411] = {.lex_state = 338}, + [8412] = {.lex_state = 265}, + [8413] = {.lex_state = 337}, + [8414] = {.lex_state = 337}, + [8415] = {.lex_state = 337}, [8416] = {.lex_state = 265}, - [8417] = {.lex_state = 342}, - [8418] = {.lex_state = 342}, - [8419] = {.lex_state = 265}, - [8420] = {.lex_state = 265}, - [8421] = {.lex_state = 342}, - [8422] = {.lex_state = 272}, - [8423] = {.lex_state = 272}, - [8424] = {.lex_state = 342}, - [8425] = {.lex_state = 338}, - [8426] = {.lex_state = 265}, - [8427] = {.lex_state = 338}, - [8428] = {.lex_state = 265}, + [8417] = {.lex_state = 338}, + [8418] = {.lex_state = 337}, + [8419] = {.lex_state = 340}, + [8420] = {.lex_state = 337}, + [8421] = {.lex_state = 337}, + [8422] = {.lex_state = 337}, + [8423] = {.lex_state = 337}, + [8424] = {.lex_state = 337}, + [8425] = {.lex_state = 337}, + [8426] = {.lex_state = 337}, + [8427] = {.lex_state = 337}, + [8428] = {.lex_state = 337}, [8429] = {.lex_state = 338}, - [8430] = {.lex_state = 338}, - [8431] = {.lex_state = 342}, - [8432] = {.lex_state = 338}, - [8433] = {.lex_state = 338}, + [8430] = {.lex_state = 298}, + [8431] = {.lex_state = 337}, + [8432] = {.lex_state = 340}, + [8433] = {.lex_state = 280}, [8434] = {.lex_state = 338}, - [8435] = {.lex_state = 265}, + [8435] = {.lex_state = 338}, [8436] = {.lex_state = 338}, - [8437] = {.lex_state = 272}, - [8438] = {.lex_state = 272}, - [8439] = {.lex_state = 265}, - [8440] = {.lex_state = 272}, - [8441] = {.lex_state = 272}, - [8442] = {.lex_state = 265}, - [8443] = {.lex_state = 272}, - [8444] = {.lex_state = 272}, + [8437] = {.lex_state = 340}, + [8438] = {.lex_state = 266}, + [8439] = {.lex_state = 266}, + [8440] = {.lex_state = 337}, + [8441] = {.lex_state = 337}, + [8442] = {.lex_state = 266}, + [8443] = {.lex_state = 266}, + [8444] = {.lex_state = 342}, [8445] = {.lex_state = 265}, - [8446] = {.lex_state = 272}, - [8447] = {.lex_state = 272}, - [8448] = {.lex_state = 342}, - [8449] = {.lex_state = 342}, - [8450] = {.lex_state = 342}, - [8451] = {.lex_state = 342}, - [8452] = {.lex_state = 272}, + [8446] = {.lex_state = 298}, + [8447] = {.lex_state = 337}, + [8448] = {.lex_state = 337}, + [8449] = {.lex_state = 340}, + [8450] = {.lex_state = 337}, + [8451] = {.lex_state = 265}, + [8452] = {.lex_state = 265}, [8453] = {.lex_state = 265}, - [8454] = {.lex_state = 272}, - [8455] = {.lex_state = 342}, - [8456] = {.lex_state = 272}, - [8457] = {.lex_state = 342}, - [8458] = {.lex_state = 272}, - [8459] = {.lex_state = 338}, - [8460] = {.lex_state = 338}, + [8454] = {.lex_state = 265}, + [8455] = {.lex_state = 337}, + [8456] = {.lex_state = 265}, + [8457] = {.lex_state = 315}, + [8458] = {.lex_state = 266}, + [8459] = {.lex_state = 265}, + [8460] = {.lex_state = 329}, [8461] = {.lex_state = 265}, - [8462] = {.lex_state = 342}, - [8463] = {.lex_state = 338}, - [8464] = {.lex_state = 338}, - [8465] = {.lex_state = 338}, - [8466] = {.lex_state = 342}, + [8462] = {.lex_state = 266}, + [8463] = {.lex_state = 265}, + [8464] = {.lex_state = 265}, + [8465] = {.lex_state = 265}, + [8466] = {.lex_state = 265}, [8467] = {.lex_state = 338}, - [8468] = {.lex_state = 338}, - [8469] = {.lex_state = 338}, - [8470] = {.lex_state = 338}, - [8471] = {.lex_state = 338}, - [8472] = {.lex_state = 265}, - [8473] = {.lex_state = 338}, - [8474] = {.lex_state = 338}, - [8475] = {.lex_state = 338}, - [8476] = {.lex_state = 342}, - [8477] = {.lex_state = 265}, - [8478] = {.lex_state = 337}, - [8479] = {.lex_state = 272}, - [8480] = {.lex_state = 267}, - [8481] = {.lex_state = 253}, - [8482] = {.lex_state = 253}, - [8483] = {.lex_state = 301}, - [8484] = {.lex_state = 301}, - [8485] = {.lex_state = 301}, - [8486] = {.lex_state = 301}, - [8487] = {.lex_state = 337}, + [8468] = {.lex_state = 315}, + [8469] = {.lex_state = 265}, + [8470] = {.lex_state = 337}, + [8471] = {.lex_state = 337}, + [8472] = {.lex_state = 337}, + [8473] = {.lex_state = 298}, + [8474] = {.lex_state = 315}, + [8475] = {.lex_state = 265}, + [8476] = {.lex_state = 329}, + [8477] = {.lex_state = 338}, + [8478] = {.lex_state = 265}, + [8479] = {.lex_state = 265}, + [8480] = {.lex_state = 337}, + [8481] = {.lex_state = 340}, + [8482] = {.lex_state = 338}, + [8483] = {.lex_state = 265}, + [8484] = {.lex_state = 265}, + [8485] = {.lex_state = 338}, + [8486] = {.lex_state = 265}, + [8487] = {.lex_state = 338}, [8488] = {.lex_state = 265}, - [8489] = {.lex_state = 301}, - [8490] = {.lex_state = 301}, - [8491] = {.lex_state = 301}, - [8492] = {.lex_state = 301}, - [8493] = {.lex_state = 253}, - [8494] = {.lex_state = 253}, - [8495] = {.lex_state = 337}, - [8496] = {.lex_state = 253}, - [8497] = {.lex_state = 281}, - [8498] = {.lex_state = 337}, - [8499] = {.lex_state = 253}, - [8500] = {.lex_state = 253}, - [8501] = {.lex_state = 272}, - [8502] = {.lex_state = 272}, - [8503] = {.lex_state = 272}, - [8504] = {.lex_state = 253}, - [8505] = {.lex_state = 272}, - [8506] = {.lex_state = 253}, - [8507] = {.lex_state = 253}, - [8508] = {.lex_state = 253}, - [8509] = {.lex_state = 253}, - [8510] = {.lex_state = 340}, - [8511] = {.lex_state = 253}, - [8512] = {.lex_state = 338}, - [8513] = {.lex_state = 253}, - [8514] = {.lex_state = 253}, - [8515] = {.lex_state = 253}, - [8516] = {.lex_state = 337}, - [8517] = {.lex_state = 253}, - [8518] = {.lex_state = 267}, - [8519] = {.lex_state = 265}, - [8520] = {.lex_state = 253}, - [8521] = {.lex_state = 265}, - [8522] = {.lex_state = 253}, - [8523] = {.lex_state = 253}, - [8524] = {.lex_state = 267}, - [8525] = {.lex_state = 253}, - [8526] = {.lex_state = 338}, - [8527] = {.lex_state = 253}, - [8528] = {.lex_state = 253}, - [8529] = {.lex_state = 253}, - [8530] = {.lex_state = 253}, + [8489] = {.lex_state = 265}, + [8490] = {.lex_state = 315}, + [8491] = {.lex_state = 337}, + [8492] = {.lex_state = 265}, + [8493] = {.lex_state = 265}, + [8494] = {.lex_state = 338}, + [8495] = {.lex_state = 329}, + [8496] = {.lex_state = 338}, + [8497] = {.lex_state = 337}, + [8498] = {.lex_state = 265}, + [8499] = {.lex_state = 338}, + [8500] = {.lex_state = 265}, + [8501] = {.lex_state = 329}, + [8502] = {.lex_state = 338}, + [8503] = {.lex_state = 265}, + [8504] = {.lex_state = 265}, + [8505] = {.lex_state = 265}, + [8506] = {.lex_state = 265}, + [8507] = {.lex_state = 265}, + [8508] = {.lex_state = 265}, + [8509] = {.lex_state = 342}, + [8510] = {.lex_state = 271}, + [8511] = {.lex_state = 271}, + [8512] = {.lex_state = 271}, + [8513] = {.lex_state = 271}, + [8514] = {.lex_state = 338}, + [8515] = {.lex_state = 271}, + [8516] = {.lex_state = 265}, + [8517] = {.lex_state = 271}, + [8518] = {.lex_state = 271}, + [8519] = {.lex_state = 271}, + [8520] = {.lex_state = 338}, + [8521] = {.lex_state = 338}, + [8522] = {.lex_state = 342}, + [8523] = {.lex_state = 338}, + [8524] = {.lex_state = 338}, + [8525] = {.lex_state = 265}, + [8526] = {.lex_state = 271}, + [8527] = {.lex_state = 338}, + [8528] = {.lex_state = 338}, + [8529] = {.lex_state = 342}, + [8530] = {.lex_state = 338}, [8531] = {.lex_state = 338}, - [8532] = {.lex_state = 338}, - [8533] = {.lex_state = 245}, - [8534] = {.lex_state = 337}, - [8535] = {.lex_state = 340}, - [8536] = {.lex_state = 337}, - [8537] = {.lex_state = 265}, - [8538] = {.lex_state = 337}, - [8539] = {.lex_state = 338}, - [8540] = {.lex_state = 267}, - [8541] = {.lex_state = 265}, - [8542] = {.lex_state = 272}, - [8543] = {.lex_state = 272}, - [8544] = {.lex_state = 272}, - [8545] = {.lex_state = 253}, - [8546] = {.lex_state = 267}, + [8532] = {.lex_state = 265}, + [8533] = {.lex_state = 265}, + [8534] = {.lex_state = 265}, + [8535] = {.lex_state = 265}, + [8536] = {.lex_state = 265}, + [8537] = {.lex_state = 342}, + [8538] = {.lex_state = 265}, + [8539] = {.lex_state = 265}, + [8540] = {.lex_state = 338}, + [8541] = {.lex_state = 338}, + [8542] = {.lex_state = 319}, + [8543] = {.lex_state = 265}, + [8544] = {.lex_state = 342}, + [8545] = {.lex_state = 265}, + [8546] = {.lex_state = 338}, [8547] = {.lex_state = 338}, [8548] = {.lex_state = 338}, - [8549] = {.lex_state = 265}, - [8550] = {.lex_state = 301}, - [8551] = {.lex_state = 338}, - [8552] = {.lex_state = 265}, - [8553] = {.lex_state = 301}, + [8549] = {.lex_state = 342}, + [8550] = {.lex_state = 342}, + [8551] = {.lex_state = 271}, + [8552] = {.lex_state = 342}, + [8553] = {.lex_state = 342}, [8554] = {.lex_state = 338}, - [8555] = {.lex_state = 301}, - [8556] = {.lex_state = 265}, + [8555] = {.lex_state = 338}, + [8556] = {.lex_state = 338}, [8557] = {.lex_state = 338}, - [8558] = {.lex_state = 265}, - [8559] = {.lex_state = 265}, - [8560] = {.lex_state = 267}, - [8561] = {.lex_state = 301}, - [8562] = {.lex_state = 301}, - [8563] = {.lex_state = 267}, - [8564] = {.lex_state = 265}, - [8565] = {.lex_state = 265}, + [8558] = {.lex_state = 338}, + [8559] = {.lex_state = 271}, + [8560] = {.lex_state = 342}, + [8561] = {.lex_state = 342}, + [8562] = {.lex_state = 265}, + [8563] = {.lex_state = 271}, + [8564] = {.lex_state = 342}, + [8565] = {.lex_state = 271}, [8566] = {.lex_state = 265}, - [8567] = {.lex_state = 301}, - [8568] = {.lex_state = 301}, - [8569] = {.lex_state = 301}, - [8570] = {.lex_state = 301}, - [8571] = {.lex_state = 265}, - [8572] = {.lex_state = 265}, - [8573] = {.lex_state = 301}, - [8574] = {.lex_state = 301}, - [8575] = {.lex_state = 301}, - [8576] = {.lex_state = 265}, - [8577] = {.lex_state = 265}, + [8567] = {.lex_state = 342}, + [8568] = {.lex_state = 338}, + [8569] = {.lex_state = 271}, + [8570] = {.lex_state = 338}, + [8571] = {.lex_state = 338}, + [8572] = {.lex_state = 338}, + [8573] = {.lex_state = 338}, + [8574] = {.lex_state = 338}, + [8575] = {.lex_state = 338}, + [8576] = {.lex_state = 338}, + [8577] = {.lex_state = 342}, [8578] = {.lex_state = 338}, - [8579] = {.lex_state = 265}, + [8579] = {.lex_state = 342}, [8580] = {.lex_state = 265}, - [8581] = {.lex_state = 338}, - [8582] = {.lex_state = 301}, - [8583] = {.lex_state = 338}, - [8584] = {.lex_state = 265}, - [8585] = {.lex_state = 338}, - [8586] = {.lex_state = 301}, - [8587] = {.lex_state = 338}, - [8588] = {.lex_state = 265}, - [8589] = {.lex_state = 329}, - [8590] = {.lex_state = 265}, - [8591] = {.lex_state = 338}, - [8592] = {.lex_state = 338}, - [8593] = {.lex_state = 265}, - [8594] = {.lex_state = 265}, - [8595] = {.lex_state = 267}, - [8596] = {.lex_state = 301}, - [8597] = {.lex_state = 267}, - [8598] = {.lex_state = 338}, - [8599] = {.lex_state = 338}, + [8581] = {.lex_state = 265}, + [8582] = {.lex_state = 342}, + [8583] = {.lex_state = 271}, + [8584] = {.lex_state = 342}, + [8585] = {.lex_state = 271}, + [8586] = {.lex_state = 338}, + [8587] = {.lex_state = 271}, + [8588] = {.lex_state = 271}, + [8589] = {.lex_state = 338}, + [8590] = {.lex_state = 338}, + [8591] = {.lex_state = 265}, + [8592] = {.lex_state = 342}, + [8593] = {.lex_state = 271}, + [8594] = {.lex_state = 338}, + [8595] = {.lex_state = 338}, + [8596] = {.lex_state = 342}, + [8597] = {.lex_state = 271}, + [8598] = {.lex_state = 342}, + [8599] = {.lex_state = 265}, [8600] = {.lex_state = 265}, - [8601] = {.lex_state = 329}, - [8602] = {.lex_state = 267}, - [8603] = {.lex_state = 267}, - [8604] = {.lex_state = 265}, + [8601] = {.lex_state = 342}, + [8602] = {.lex_state = 338}, + [8603] = {.lex_state = 253}, + [8604] = {.lex_state = 271}, [8605] = {.lex_state = 265}, - [8606] = {.lex_state = 265}, - [8607] = {.lex_state = 338}, - [8608] = {.lex_state = 301}, - [8609] = {.lex_state = 265}, - [8610] = {.lex_state = 338}, - [8611] = {.lex_state = 340}, - [8612] = {.lex_state = 265}, - [8613] = {.lex_state = 338}, - [8614] = {.lex_state = 265}, - [8615] = {.lex_state = 301}, - [8616] = {.lex_state = 338}, - [8617] = {.lex_state = 265}, - [8618] = {.lex_state = 301}, - [8619] = {.lex_state = 329}, - [8620] = {.lex_state = 338}, - [8621] = {.lex_state = 265}, - [8622] = {.lex_state = 267}, - [8623] = {.lex_state = 338}, - [8624] = {.lex_state = 265}, + [8606] = {.lex_state = 271}, + [8607] = {.lex_state = 271}, + [8608] = {.lex_state = 253}, + [8609] = {.lex_state = 301}, + [8610] = {.lex_state = 253}, + [8611] = {.lex_state = 253}, + [8612] = {.lex_state = 338}, + [8613] = {.lex_state = 266}, + [8614] = {.lex_state = 253}, + [8615] = {.lex_state = 253}, + [8616] = {.lex_state = 253}, + [8617] = {.lex_state = 338}, + [8618] = {.lex_state = 338}, + [8619] = {.lex_state = 265}, + [8620] = {.lex_state = 253}, + [8621] = {.lex_state = 253}, + [8622] = {.lex_state = 253}, + [8623] = {.lex_state = 253}, + [8624] = {.lex_state = 253}, [8625] = {.lex_state = 338}, - [8626] = {.lex_state = 265}, - [8627] = {.lex_state = 338}, - [8628] = {.lex_state = 265}, - [8629] = {.lex_state = 338}, - [8630] = {.lex_state = 338}, - [8631] = {.lex_state = 265}, - [8632] = {.lex_state = 301}, - [8633] = {.lex_state = 340}, - [8634] = {.lex_state = 265}, - [8635] = {.lex_state = 301}, - [8636] = {.lex_state = 265}, - [8637] = {.lex_state = 329}, - [8638] = {.lex_state = 265}, - [8639] = {.lex_state = 265}, - [8640] = {.lex_state = 265}, - [8641] = {.lex_state = 265}, - [8642] = {.lex_state = 265}, - [8643] = {.lex_state = 267}, - [8644] = {.lex_state = 338}, - [8645] = {.lex_state = 338}, - [8646] = {.lex_state = 340}, - [8647] = {.lex_state = 338}, - [8648] = {.lex_state = 333}, + [8626] = {.lex_state = 337}, + [8627] = {.lex_state = 337}, + [8628] = {.lex_state = 280}, + [8629] = {.lex_state = 337}, + [8630] = {.lex_state = 337}, + [8631] = {.lex_state = 337}, + [8632] = {.lex_state = 337}, + [8633] = {.lex_state = 253}, + [8634] = {.lex_state = 253}, + [8635] = {.lex_state = 253}, + [8636] = {.lex_state = 301}, + [8637] = {.lex_state = 266}, + [8638] = {.lex_state = 338}, + [8639] = {.lex_state = 340}, + [8640] = {.lex_state = 271}, + [8641] = {.lex_state = 271}, + [8642] = {.lex_state = 271}, + [8643] = {.lex_state = 301}, + [8644] = {.lex_state = 253}, + [8645] = {.lex_state = 253}, + [8646] = {.lex_state = 265}, + [8647] = {.lex_state = 340}, + [8648] = {.lex_state = 253}, [8649] = {.lex_state = 265}, - [8650] = {.lex_state = 338}, - [8651] = {.lex_state = 337}, - [8652] = {.lex_state = 340}, - [8653] = {.lex_state = 265}, - [8654] = {.lex_state = 281}, - [8655] = {.lex_state = 281}, - [8656] = {.lex_state = 337}, - [8657] = {.lex_state = 265}, - [8658] = {.lex_state = 338}, - [8659] = {.lex_state = 265}, - [8660] = {.lex_state = 338}, - [8661] = {.lex_state = 338}, - [8662] = {.lex_state = 265}, - [8663] = {.lex_state = 265}, - [8664] = {.lex_state = 333}, - [8665] = {.lex_state = 267}, - [8666] = {.lex_state = 281}, - [8667] = {.lex_state = 337}, - [8668] = {.lex_state = 333}, - [8669] = {.lex_state = 265}, - [8670] = {.lex_state = 265}, + [8650] = {.lex_state = 253}, + [8651] = {.lex_state = 253}, + [8652] = {.lex_state = 253}, + [8653] = {.lex_state = 253}, + [8654] = {.lex_state = 253}, + [8655] = {.lex_state = 253}, + [8656] = {.lex_state = 245}, + [8657] = {.lex_state = 253}, + [8658] = {.lex_state = 266}, + [8659] = {.lex_state = 337}, + [8660] = {.lex_state = 265}, + [8661] = {.lex_state = 337}, + [8662] = {.lex_state = 301}, + [8663] = {.lex_state = 253}, + [8664] = {.lex_state = 266}, + [8665] = {.lex_state = 271}, + [8666] = {.lex_state = 301}, + [8667] = {.lex_state = 301}, + [8668] = {.lex_state = 301}, + [8669] = {.lex_state = 301}, + [8670] = {.lex_state = 271}, [8671] = {.lex_state = 265}, - [8672] = {.lex_state = 281}, - [8673] = {.lex_state = 337}, - [8674] = {.lex_state = 281}, - [8675] = {.lex_state = 337}, + [8672] = {.lex_state = 329}, + [8673] = {.lex_state = 338}, + [8674] = {.lex_state = 338}, + [8675] = {.lex_state = 265}, [8676] = {.lex_state = 265}, - [8677] = {.lex_state = 265}, - [8678] = {.lex_state = 337}, - [8679] = {.lex_state = 337}, - [8680] = {.lex_state = 265}, + [8677] = {.lex_state = 338}, + [8678] = {.lex_state = 338}, + [8679] = {.lex_state = 338}, + [8680] = {.lex_state = 301}, [8681] = {.lex_state = 265}, - [8682] = {.lex_state = 338}, - [8683] = {.lex_state = 265}, - [8684] = {.lex_state = 338}, - [8685] = {.lex_state = 340}, - [8686] = {.lex_state = 340}, + [8682] = {.lex_state = 265}, + [8683] = {.lex_state = 301}, + [8684] = {.lex_state = 265}, + [8685] = {.lex_state = 265}, + [8686] = {.lex_state = 265}, [8687] = {.lex_state = 265}, - [8688] = {.lex_state = 281}, - [8689] = {.lex_state = 340}, - [8690] = {.lex_state = 281}, - [8691] = {.lex_state = 337}, + [8688] = {.lex_state = 301}, + [8689] = {.lex_state = 338}, + [8690] = {.lex_state = 340}, + [8691] = {.lex_state = 265}, [8692] = {.lex_state = 265}, - [8693] = {.lex_state = 265}, - [8694] = {.lex_state = 338}, + [8693] = {.lex_state = 329}, + [8694] = {.lex_state = 266}, [8695] = {.lex_state = 265}, - [8696] = {.lex_state = 265}, - [8697] = {.lex_state = 340}, - [8698] = {.lex_state = 281}, - [8699] = {.lex_state = 281}, + [8696] = {.lex_state = 338}, + [8697] = {.lex_state = 266}, + [8698] = {.lex_state = 338}, + [8699] = {.lex_state = 329}, [8700] = {.lex_state = 265}, - [8701] = {.lex_state = 338}, - [8702] = {.lex_state = 338}, - [8703] = {.lex_state = 281}, - [8704] = {.lex_state = 281}, - [8705] = {.lex_state = 340}, - [8706] = {.lex_state = 338}, - [8707] = {.lex_state = 338}, + [8701] = {.lex_state = 266}, + [8702] = {.lex_state = 265}, + [8703] = {.lex_state = 340}, + [8704] = {.lex_state = 338}, + [8705] = {.lex_state = 265}, + [8706] = {.lex_state = 265}, + [8707] = {.lex_state = 265}, [8708] = {.lex_state = 338}, - [8709] = {.lex_state = 272}, - [8710] = {.lex_state = 272}, - [8711] = {.lex_state = 272}, - [8712] = {.lex_state = 272}, - [8713] = {.lex_state = 338}, - [8714] = {.lex_state = 338}, - [8715] = {.lex_state = 338}, - [8716] = {.lex_state = 338}, - [8717] = {.lex_state = 272}, - [8718] = {.lex_state = 298}, - [8719] = {.lex_state = 272}, - [8720] = {.lex_state = 0}, - [8721] = {.lex_state = 338}, + [8709] = {.lex_state = 338}, + [8710] = {.lex_state = 265}, + [8711] = {.lex_state = 265}, + [8712] = {.lex_state = 301}, + [8713] = {.lex_state = 301}, + [8714] = {.lex_state = 301}, + [8715] = {.lex_state = 301}, + [8716] = {.lex_state = 265}, + [8717] = {.lex_state = 301}, + [8718] = {.lex_state = 301}, + [8719] = {.lex_state = 266}, + [8720] = {.lex_state = 338}, + [8721] = {.lex_state = 265}, [8722] = {.lex_state = 338}, [8723] = {.lex_state = 338}, - [8724] = {.lex_state = 340}, - [8725] = {.lex_state = 272}, - [8726] = {.lex_state = 338}, - [8727] = {.lex_state = 272}, - [8728] = {.lex_state = 267}, - [8729] = {.lex_state = 272}, - [8730] = {.lex_state = 338}, - [8731] = {.lex_state = 272}, - [8732] = {.lex_state = 272}, + [8724] = {.lex_state = 301}, + [8725] = {.lex_state = 301}, + [8726] = {.lex_state = 301}, + [8727] = {.lex_state = 265}, + [8728] = {.lex_state = 265}, + [8729] = {.lex_state = 338}, + [8730] = {.lex_state = 301}, + [8731] = {.lex_state = 265}, + [8732] = {.lex_state = 338}, [8733] = {.lex_state = 338}, - [8734] = {.lex_state = 272}, - [8735] = {.lex_state = 267}, - [8736] = {.lex_state = 315}, - [8737] = {.lex_state = 335}, - [8738] = {.lex_state = 267}, - [8739] = {.lex_state = 315}, - [8740] = {.lex_state = 337}, - [8741] = {.lex_state = 337}, - [8742] = {.lex_state = 335}, - [8743] = {.lex_state = 315}, - [8744] = {.lex_state = 267}, - [8745] = {.lex_state = 267}, - [8746] = {.lex_state = 337}, - [8747] = {.lex_state = 267}, - [8748] = {.lex_state = 267}, - [8749] = {.lex_state = 337}, - [8750] = {.lex_state = 337}, - [8751] = {.lex_state = 267}, - [8752] = {.lex_state = 315}, - [8753] = {.lex_state = 337}, - [8754] = {.lex_state = 337}, - [8755] = {.lex_state = 267}, + [8734] = {.lex_state = 338}, + [8735] = {.lex_state = 301}, + [8736] = {.lex_state = 301}, + [8737] = {.lex_state = 301}, + [8738] = {.lex_state = 265}, + [8739] = {.lex_state = 266}, + [8740] = {.lex_state = 265}, + [8741] = {.lex_state = 265}, + [8742] = {.lex_state = 266}, + [8743] = {.lex_state = 301}, + [8744] = {.lex_state = 301}, + [8745] = {.lex_state = 265}, + [8746] = {.lex_state = 265}, + [8747] = {.lex_state = 265}, + [8748] = {.lex_state = 265}, + [8749] = {.lex_state = 301}, + [8750] = {.lex_state = 338}, + [8751] = {.lex_state = 265}, + [8752] = {.lex_state = 338}, + [8753] = {.lex_state = 266}, + [8754] = {.lex_state = 265}, + [8755] = {.lex_state = 266}, [8756] = {.lex_state = 265}, - [8757] = {.lex_state = 267}, - [8758] = {.lex_state = 315}, - [8759] = {.lex_state = 267}, - [8760] = {.lex_state = 267}, - [8761] = {.lex_state = 267}, - [8762] = {.lex_state = 267}, - [8763] = {.lex_state = 335}, - [8764] = {.lex_state = 267}, - [8765] = {.lex_state = 338}, - [8766] = {.lex_state = 301}, - [8767] = {.lex_state = 301}, - [8768] = {.lex_state = 301}, - [8769] = {.lex_state = 301}, - [8770] = {.lex_state = 315}, - [8771] = {.lex_state = 315}, + [8757] = {.lex_state = 265}, + [8758] = {.lex_state = 338}, + [8759] = {.lex_state = 338}, + [8760] = {.lex_state = 329}, + [8761] = {.lex_state = 338}, + [8762] = {.lex_state = 265}, + [8763] = {.lex_state = 265}, + [8764] = {.lex_state = 338}, + [8765] = {.lex_state = 301}, + [8766] = {.lex_state = 265}, + [8767] = {.lex_state = 338}, + [8768] = {.lex_state = 334}, + [8769] = {.lex_state = 265}, + [8770] = {.lex_state = 338}, + [8771] = {.lex_state = 280}, [8772] = {.lex_state = 338}, - [8773] = {.lex_state = 338}, - [8774] = {.lex_state = 315}, - [8775] = {.lex_state = 338}, - [8776] = {.lex_state = 301}, - [8777] = {.lex_state = 267}, - [8778] = {.lex_state = 330}, - [8779] = {.lex_state = 267}, - [8780] = {.lex_state = 315}, - [8781] = {.lex_state = 330}, - [8782] = {.lex_state = 301}, - [8783] = {.lex_state = 267}, - [8784] = {.lex_state = 301}, - [8785] = {.lex_state = 301}, - [8786] = {.lex_state = 315}, - [8787] = {.lex_state = 338}, - [8788] = {.lex_state = 338}, - [8789] = {.lex_state = 338}, - [8790] = {.lex_state = 335}, - [8791] = {.lex_state = 272}, - [8792] = {.lex_state = 272}, - [8793] = {.lex_state = 315}, - [8794] = {.lex_state = 267}, - [8795] = {.lex_state = 333}, - [8796] = {.lex_state = 272}, - [8797] = {.lex_state = 272}, - [8798] = {.lex_state = 315}, - [8799] = {.lex_state = 272}, - [8800] = {.lex_state = 267}, - [8801] = {.lex_state = 267}, - [8802] = {.lex_state = 267}, - [8803] = {.lex_state = 267}, - [8804] = {.lex_state = 272}, - [8805] = {.lex_state = 272}, - [8806] = {.lex_state = 267}, - [8807] = {.lex_state = 267}, - [8808] = {.lex_state = 315}, - [8809] = {.lex_state = 315}, - [8810] = {.lex_state = 335}, - [8811] = {.lex_state = 267}, - [8812] = {.lex_state = 267}, - [8813] = {.lex_state = 272}, - [8814] = {.lex_state = 267}, - [8815] = {.lex_state = 267}, - [8816] = {.lex_state = 337}, - [8817] = {.lex_state = 315}, - [8818] = {.lex_state = 315}, - [8819] = {.lex_state = 267}, - [8820] = {.lex_state = 301}, - [8821] = {.lex_state = 298}, - [8822] = {.lex_state = 267}, - [8823] = {.lex_state = 272}, - [8824] = {.lex_state = 298}, - [8825] = {.lex_state = 272}, - [8826] = {.lex_state = 298}, - [8827] = {.lex_state = 298}, - [8828] = {.lex_state = 298}, - [8829] = {.lex_state = 272}, - [8830] = {.lex_state = 298}, - [8831] = {.lex_state = 337}, - [8832] = {.lex_state = 337}, - [8833] = {.lex_state = 337}, - [8834] = {.lex_state = 245}, - [8835] = {.lex_state = 272}, - [8836] = {.lex_state = 272}, - [8837] = {.lex_state = 301}, - [8838] = {.lex_state = 301}, - [8839] = {.lex_state = 337}, - [8840] = {.lex_state = 298}, - [8841] = {.lex_state = 298}, - [8842] = {.lex_state = 336}, - [8843] = {.lex_state = 298}, - [8844] = {.lex_state = 245}, - [8845] = {.lex_state = 298}, - [8846] = {.lex_state = 301}, - [8847] = {.lex_state = 267}, + [8773] = {.lex_state = 265}, + [8774] = {.lex_state = 280}, + [8775] = {.lex_state = 280}, + [8776] = {.lex_state = 280}, + [8777] = {.lex_state = 337}, + [8778] = {.lex_state = 265}, + [8779] = {.lex_state = 265}, + [8780] = {.lex_state = 265}, + [8781] = {.lex_state = 280}, + [8782] = {.lex_state = 265}, + [8783] = {.lex_state = 280}, + [8784] = {.lex_state = 338}, + [8785] = {.lex_state = 338}, + [8786] = {.lex_state = 265}, + [8787] = {.lex_state = 337}, + [8788] = {.lex_state = 340}, + [8789] = {.lex_state = 340}, + [8790] = {.lex_state = 338}, + [8791] = {.lex_state = 337}, + [8792] = {.lex_state = 266}, + [8793] = {.lex_state = 265}, + [8794] = {.lex_state = 338}, + [8795] = {.lex_state = 265}, + [8796] = {.lex_state = 265}, + [8797] = {.lex_state = 280}, + [8798] = {.lex_state = 334}, + [8799] = {.lex_state = 265}, + [8800] = {.lex_state = 337}, + [8801] = {.lex_state = 280}, + [8802] = {.lex_state = 266}, + [8803] = {.lex_state = 337}, + [8804] = {.lex_state = 338}, + [8805] = {.lex_state = 265}, + [8806] = {.lex_state = 340}, + [8807] = {.lex_state = 338}, + [8808] = {.lex_state = 340}, + [8809] = {.lex_state = 280}, + [8810] = {.lex_state = 338}, + [8811] = {.lex_state = 280}, + [8812] = {.lex_state = 265}, + [8813] = {.lex_state = 265}, + [8814] = {.lex_state = 337}, + [8815] = {.lex_state = 265}, + [8816] = {.lex_state = 340}, + [8817] = {.lex_state = 265}, + [8818] = {.lex_state = 265}, + [8819] = {.lex_state = 265}, + [8820] = {.lex_state = 337}, + [8821] = {.lex_state = 334}, + [8822] = {.lex_state = 338}, + [8823] = {.lex_state = 340}, + [8824] = {.lex_state = 265}, + [8825] = {.lex_state = 280}, + [8826] = {.lex_state = 338}, + [8827] = {.lex_state = 338}, + [8828] = {.lex_state = 337}, + [8829] = {.lex_state = 265}, + [8830] = {.lex_state = 338}, + [8831] = {.lex_state = 338}, + [8832] = {.lex_state = 340}, + [8833] = {.lex_state = 265}, + [8834] = {.lex_state = 266}, + [8835] = {.lex_state = 271}, + [8836] = {.lex_state = 338}, + [8837] = {.lex_state = 338}, + [8838] = {.lex_state = 271}, + [8839] = {.lex_state = 338}, + [8840] = {.lex_state = 338}, + [8841] = {.lex_state = 271}, + [8842] = {.lex_state = 338}, + [8843] = {.lex_state = 271}, + [8844] = {.lex_state = 338}, + [8845] = {.lex_state = 271}, + [8846] = {.lex_state = 271}, + [8847] = {.lex_state = 338}, [8848] = {.lex_state = 298}, - [8849] = {.lex_state = 298}, - [8850] = {.lex_state = 301}, - [8851] = {.lex_state = 301}, - [8852] = {.lex_state = 301}, - [8853] = {.lex_state = 301}, - [8854] = {.lex_state = 272}, - [8855] = {.lex_state = 301}, - [8856] = {.lex_state = 315}, - [8857] = {.lex_state = 265}, - [8858] = {.lex_state = 265}, - [8859] = {.lex_state = 272}, - [8860] = {.lex_state = 265}, - [8861] = {.lex_state = 272}, - [8862] = {.lex_state = 330}, - [8863] = {.lex_state = 298}, - [8864] = {.lex_state = 330}, - [8865] = {.lex_state = 265}, - [8866] = {.lex_state = 265}, - [8867] = {.lex_state = 298}, - [8868] = {.lex_state = 272}, - [8869] = {.lex_state = 265}, - [8870] = {.lex_state = 330}, - [8871] = {.lex_state = 272}, - [8872] = {.lex_state = 330}, - [8873] = {.lex_state = 315}, - [8874] = {.lex_state = 265}, - [8875] = {.lex_state = 272}, - [8876] = {.lex_state = 272}, - [8877] = {.lex_state = 272}, - [8878] = {.lex_state = 265}, - [8879] = {.lex_state = 272}, - [8880] = {.lex_state = 265}, - [8881] = {.lex_state = 301}, - [8882] = {.lex_state = 267}, - [8883] = {.lex_state = 267}, - [8884] = {.lex_state = 267}, - [8885] = {.lex_state = 267}, - [8886] = {.lex_state = 267}, - [8887] = {.lex_state = 267}, - [8888] = {.lex_state = 265}, - [8889] = {.lex_state = 272}, - [8890] = {.lex_state = 265}, + [8849] = {.lex_state = 271}, + [8850] = {.lex_state = 0}, + [8851] = {.lex_state = 271}, + [8852] = {.lex_state = 271}, + [8853] = {.lex_state = 271}, + [8854] = {.lex_state = 338}, + [8855] = {.lex_state = 338}, + [8856] = {.lex_state = 338}, + [8857] = {.lex_state = 271}, + [8858] = {.lex_state = 271}, + [8859] = {.lex_state = 340}, + [8860] = {.lex_state = 315}, + [8861] = {.lex_state = 315}, + [8862] = {.lex_state = 338}, + [8863] = {.lex_state = 338}, + [8864] = {.lex_state = 338}, + [8865] = {.lex_state = 338}, + [8866] = {.lex_state = 335}, + [8867] = {.lex_state = 334}, + [8868] = {.lex_state = 266}, + [8869] = {.lex_state = 315}, + [8870] = {.lex_state = 266}, + [8871] = {.lex_state = 266}, + [8872] = {.lex_state = 338}, + [8873] = {.lex_state = 266}, + [8874] = {.lex_state = 338}, + [8875] = {.lex_state = 338}, + [8876] = {.lex_state = 315}, + [8877] = {.lex_state = 266}, + [8878] = {.lex_state = 315}, + [8879] = {.lex_state = 266}, + [8880] = {.lex_state = 266}, + [8881] = {.lex_state = 315}, + [8882] = {.lex_state = 330}, + [8883] = {.lex_state = 335}, + [8884] = {.lex_state = 337}, + [8885] = {.lex_state = 337}, + [8886] = {.lex_state = 337}, + [8887] = {.lex_state = 337}, + [8888] = {.lex_state = 266}, + [8889] = {.lex_state = 266}, + [8890] = {.lex_state = 266}, [8891] = {.lex_state = 337}, - [8892] = {.lex_state = 267}, - [8893] = {.lex_state = 267}, - [8894] = {.lex_state = 267}, - [8895] = {.lex_state = 267}, - [8896] = {.lex_state = 265}, - [8897] = {.lex_state = 272}, - [8898] = {.lex_state = 265}, - [8899] = {.lex_state = 265}, - [8900] = {.lex_state = 267}, - [8901] = {.lex_state = 267}, - [8902] = {.lex_state = 267}, - [8903] = {.lex_state = 272}, - [8904] = {.lex_state = 267}, - [8905] = {.lex_state = 333}, - [8906] = {.lex_state = 265}, - [8907] = {.lex_state = 337}, - [8908] = {.lex_state = 267}, - [8909] = {.lex_state = 267}, - [8910] = {.lex_state = 267}, - [8911] = {.lex_state = 301}, - [8912] = {.lex_state = 337}, - [8913] = {.lex_state = 267}, - [8914] = {.lex_state = 267}, - [8915] = {.lex_state = 337}, - [8916] = {.lex_state = 267}, - [8917] = {.lex_state = 438}, - [8918] = {.lex_state = 438}, - [8919] = {.lex_state = 265}, - [8920] = {.lex_state = 267}, - [8921] = {.lex_state = 298}, - [8922] = {.lex_state = 438}, - [8923] = {.lex_state = 301}, - [8924] = {.lex_state = 267}, - [8925] = {.lex_state = 267}, - [8926] = {.lex_state = 337}, - [8927] = {.lex_state = 267}, - [8928] = {.lex_state = 267}, - [8929] = {.lex_state = 265}, - [8930] = {.lex_state = 267}, - [8931] = {.lex_state = 301}, - [8932] = {.lex_state = 267}, - [8933] = {.lex_state = 438}, - [8934] = {.lex_state = 267}, - [8935] = {.lex_state = 267}, - [8936] = {.lex_state = 267}, - [8937] = {.lex_state = 267}, - [8938] = {.lex_state = 267}, - [8939] = {.lex_state = 267}, - [8940] = {.lex_state = 438}, - [8941] = {.lex_state = 267}, - [8942] = {.lex_state = 272}, - [8943] = {.lex_state = 438}, - [8944] = {.lex_state = 267}, - [8945] = {.lex_state = 243}, - [8946] = {.lex_state = 243}, - [8947] = {.lex_state = 265}, - [8948] = {.lex_state = 438}, - [8949] = {.lex_state = 265}, - [8950] = {.lex_state = 267}, - [8951] = {.lex_state = 267}, - [8952] = {.lex_state = 438}, - [8953] = {.lex_state = 267}, - [8954] = {.lex_state = 267}, - [8955] = {.lex_state = 267}, - [8956] = {.lex_state = 298}, - [8957] = {.lex_state = 267}, - [8958] = {.lex_state = 267}, - [8959] = {.lex_state = 333}, - [8960] = {.lex_state = 265}, - [8961] = {.lex_state = 337}, - [8962] = {.lex_state = 265}, - [8963] = {.lex_state = 267}, - [8964] = {.lex_state = 255}, - [8965] = {.lex_state = 333}, - [8966] = {.lex_state = 265}, - [8967] = {.lex_state = 255}, - [8968] = {.lex_state = 255}, - [8969] = {.lex_state = 333}, - [8970] = {.lex_state = 255}, - [8971] = {.lex_state = 341}, - [8972] = {.lex_state = 267}, - [8973] = {.lex_state = 333}, - [8974] = {.lex_state = 265}, - [8975] = {.lex_state = 265}, - [8976] = {.lex_state = 267}, - [8977] = {.lex_state = 267}, - [8978] = {.lex_state = 267}, - [8979] = {.lex_state = 267}, - [8980] = {.lex_state = 267}, - [8981] = {.lex_state = 267}, - [8982] = {.lex_state = 267}, - [8983] = {.lex_state = 333}, - [8984] = {.lex_state = 298}, - [8985] = {.lex_state = 298}, - [8986] = {.lex_state = 267}, - [8987] = {.lex_state = 255}, - [8988] = {.lex_state = 267}, - [8989] = {.lex_state = 267}, + [8892] = {.lex_state = 266}, + [8893] = {.lex_state = 266}, + [8894] = {.lex_state = 266}, + [8895] = {.lex_state = 337}, + [8896] = {.lex_state = 266}, + [8897] = {.lex_state = 266}, + [8898] = {.lex_state = 330}, + [8899] = {.lex_state = 301}, + [8900] = {.lex_state = 266}, + [8901] = {.lex_state = 266}, + [8902] = {.lex_state = 315}, + [8903] = {.lex_state = 266}, + [8904] = {.lex_state = 315}, + [8905] = {.lex_state = 301}, + [8906] = {.lex_state = 301}, + [8907] = {.lex_state = 271}, + [8908] = {.lex_state = 335}, + [8909] = {.lex_state = 337}, + [8910] = {.lex_state = 315}, + [8911] = {.lex_state = 315}, + [8912] = {.lex_state = 315}, + [8913] = {.lex_state = 330}, + [8914] = {.lex_state = 301}, + [8915] = {.lex_state = 301}, + [8916] = {.lex_state = 266}, + [8917] = {.lex_state = 266}, + [8918] = {.lex_state = 315}, + [8919] = {.lex_state = 315}, + [8920] = {.lex_state = 301}, + [8921] = {.lex_state = 266}, + [8922] = {.lex_state = 301}, + [8923] = {.lex_state = 266}, + [8924] = {.lex_state = 266}, + [8925] = {.lex_state = 335}, + [8926] = {.lex_state = 271}, + [8927] = {.lex_state = 271}, + [8928] = {.lex_state = 315}, + [8929] = {.lex_state = 266}, + [8930] = {.lex_state = 265}, + [8931] = {.lex_state = 266}, + [8932] = {.lex_state = 335}, + [8933] = {.lex_state = 271}, + [8934] = {.lex_state = 266}, + [8935] = {.lex_state = 266}, + [8936] = {.lex_state = 337}, + [8937] = {.lex_state = 330}, + [8938] = {.lex_state = 271}, + [8939] = {.lex_state = 271}, + [8940] = {.lex_state = 315}, + [8941] = {.lex_state = 266}, + [8942] = {.lex_state = 271}, + [8943] = {.lex_state = 315}, + [8944] = {.lex_state = 271}, + [8945] = {.lex_state = 266}, + [8946] = {.lex_state = 301}, + [8947] = {.lex_state = 298}, + [8948] = {.lex_state = 298}, + [8949] = {.lex_state = 271}, + [8950] = {.lex_state = 271}, + [8951] = {.lex_state = 271}, + [8952] = {.lex_state = 298}, + [8953] = {.lex_state = 337}, + [8954] = {.lex_state = 337}, + [8955] = {.lex_state = 337}, + [8956] = {.lex_state = 266}, + [8957] = {.lex_state = 301}, + [8958] = {.lex_state = 301}, + [8959] = {.lex_state = 301}, + [8960] = {.lex_state = 301}, + [8961] = {.lex_state = 301}, + [8962] = {.lex_state = 301}, + [8963] = {.lex_state = 301}, + [8964] = {.lex_state = 301}, + [8965] = {.lex_state = 298}, + [8966] = {.lex_state = 266}, + [8967] = {.lex_state = 298}, + [8968] = {.lex_state = 298}, + [8969] = {.lex_state = 336}, + [8970] = {.lex_state = 298}, + [8971] = {.lex_state = 245}, + [8972] = {.lex_state = 271}, + [8973] = {.lex_state = 298}, + [8974] = {.lex_state = 337}, + [8975] = {.lex_state = 301}, + [8976] = {.lex_state = 298}, + [8977] = {.lex_state = 298}, + [8978] = {.lex_state = 298}, + [8979] = {.lex_state = 298}, + [8980] = {.lex_state = 271}, + [8981] = {.lex_state = 245}, + [8982] = {.lex_state = 271}, + [8983] = {.lex_state = 315}, + [8984] = {.lex_state = 271}, + [8985] = {.lex_state = 265}, + [8986] = {.lex_state = 265}, + [8987] = {.lex_state = 271}, + [8988] = {.lex_state = 330}, + [8989] = {.lex_state = 271}, [8990] = {.lex_state = 265}, - [8991] = {.lex_state = 267}, - [8992] = {.lex_state = 267}, - [8993] = {.lex_state = 267}, - [8994] = {.lex_state = 298}, - [8995] = {.lex_state = 267}, + [8991] = {.lex_state = 265}, + [8992] = {.lex_state = 271}, + [8993] = {.lex_state = 265}, + [8994] = {.lex_state = 271}, + [8995] = {.lex_state = 330}, [8996] = {.lex_state = 298}, - [8997] = {.lex_state = 267}, - [8998] = {.lex_state = 438}, - [8999] = {.lex_state = 267}, - [9000] = {.lex_state = 337}, - [9001] = {.lex_state = 267}, - [9002] = {.lex_state = 267}, - [9003] = {.lex_state = 267}, - [9004] = {.lex_state = 265}, + [8997] = {.lex_state = 330}, + [8998] = {.lex_state = 271}, + [8999] = {.lex_state = 265}, + [9000] = {.lex_state = 265}, + [9001] = {.lex_state = 298}, + [9002] = {.lex_state = 330}, + [9003] = {.lex_state = 271}, + [9004] = {.lex_state = 315}, [9005] = {.lex_state = 265}, - [9006] = {.lex_state = 267}, - [9007] = {.lex_state = 267}, - [9008] = {.lex_state = 267}, - [9009] = {.lex_state = 267}, - [9010] = {.lex_state = 267}, - [9011] = {.lex_state = 267}, - [9012] = {.lex_state = 267}, - [9013] = {.lex_state = 267}, - [9014] = {.lex_state = 265}, - [9015] = {.lex_state = 267}, - [9016] = {.lex_state = 267}, - [9017] = {.lex_state = 267}, - [9018] = {.lex_state = 267}, - [9019] = {.lex_state = 267}, - [9020] = {.lex_state = 333}, - [9021] = {.lex_state = 255}, - [9022] = {.lex_state = 333}, - [9023] = {.lex_state = 438}, - [9024] = {.lex_state = 267}, - [9025] = {.lex_state = 298}, - [9026] = {.lex_state = 265}, - [9027] = {.lex_state = 255}, - [9028] = {.lex_state = 265}, - [9029] = {.lex_state = 333}, - [9030] = {.lex_state = 341}, - [9031] = {.lex_state = 255}, - [9032] = {.lex_state = 267}, - [9033] = {.lex_state = 265}, - [9034] = {.lex_state = 438}, - [9035] = {.lex_state = 267}, - [9036] = {.lex_state = 286}, - [9037] = {.lex_state = 265}, - [9038] = {.lex_state = 265}, + [9006] = {.lex_state = 271}, + [9007] = {.lex_state = 266}, + [9008] = {.lex_state = 266}, + [9009] = {.lex_state = 266}, + [9010] = {.lex_state = 266}, + [9011] = {.lex_state = 265}, + [9012] = {.lex_state = 266}, + [9013] = {.lex_state = 266}, + [9014] = {.lex_state = 266}, + [9015] = {.lex_state = 243}, + [9016] = {.lex_state = 265}, + [9017] = {.lex_state = 265}, + [9018] = {.lex_state = 266}, + [9019] = {.lex_state = 337}, + [9020] = {.lex_state = 266}, + [9021] = {.lex_state = 298}, + [9022] = {.lex_state = 265}, + [9023] = {.lex_state = 301}, + [9024] = {.lex_state = 265}, + [9025] = {.lex_state = 438}, + [9026] = {.lex_state = 266}, + [9027] = {.lex_state = 266}, + [9028] = {.lex_state = 271}, + [9029] = {.lex_state = 266}, + [9030] = {.lex_state = 334}, + [9031] = {.lex_state = 266}, + [9032] = {.lex_state = 438}, + [9033] = {.lex_state = 266}, + [9034] = {.lex_state = 266}, + [9035] = {.lex_state = 266}, + [9036] = {.lex_state = 438}, + [9037] = {.lex_state = 301}, + [9038] = {.lex_state = 266}, [9039] = {.lex_state = 265}, - [9040] = {.lex_state = 265}, - [9041] = {.lex_state = 265}, - [9042] = {.lex_state = 333}, - [9043] = {.lex_state = 265}, - [9044] = {.lex_state = 265}, - [9045] = {.lex_state = 286}, - [9046] = {.lex_state = 333}, - [9047] = {.lex_state = 265}, - [9048] = {.lex_state = 333}, - [9049] = {.lex_state = 333}, - [9050] = {.lex_state = 333}, - [9051] = {.lex_state = 286}, - [9052] = {.lex_state = 265}, - [9053] = {.lex_state = 265}, - [9054] = {.lex_state = 265}, - [9055] = {.lex_state = 265}, - [9056] = {.lex_state = 265}, - [9057] = {.lex_state = 272}, + [9040] = {.lex_state = 438}, + [9041] = {.lex_state = 337}, + [9042] = {.lex_state = 337}, + [9043] = {.lex_state = 266}, + [9044] = {.lex_state = 266}, + [9045] = {.lex_state = 266}, + [9046] = {.lex_state = 265}, + [9047] = {.lex_state = 266}, + [9048] = {.lex_state = 266}, + [9049] = {.lex_state = 438}, + [9050] = {.lex_state = 266}, + [9051] = {.lex_state = 438}, + [9052] = {.lex_state = 301}, + [9053] = {.lex_state = 271}, + [9054] = {.lex_state = 266}, + [9055] = {.lex_state = 266}, + [9056] = {.lex_state = 438}, + [9057] = {.lex_state = 265}, [9058] = {.lex_state = 265}, - [9059] = {.lex_state = 272}, - [9060] = {.lex_state = 333}, - [9061] = {.lex_state = 336}, - [9062] = {.lex_state = 301}, - [9063] = {.lex_state = 336}, - [9064] = {.lex_state = 333}, - [9065] = {.lex_state = 267}, - [9066] = {.lex_state = 267}, - [9067] = {.lex_state = 267}, - [9068] = {.lex_state = 265}, - [9069] = {.lex_state = 265}, - [9070] = {.lex_state = 0}, - [9071] = {.lex_state = 267}, - [9072] = {.lex_state = 286}, - [9073] = {.lex_state = 265}, - [9074] = {.lex_state = 286}, - [9075] = {.lex_state = 272}, - [9076] = {.lex_state = 333}, - [9077] = {.lex_state = 265}, - [9078] = {.lex_state = 267}, - [9079] = {.lex_state = 265}, - [9080] = {.lex_state = 267}, - [9081] = {.lex_state = 265}, - [9082] = {.lex_state = 267}, - [9083] = {.lex_state = 267}, - [9084] = {.lex_state = 267}, - [9085] = {.lex_state = 265}, - [9086] = {.lex_state = 267}, - [9087] = {.lex_state = 267}, - [9088] = {.lex_state = 265}, - [9089] = {.lex_state = 267}, - [9090] = {.lex_state = 267}, - [9091] = {.lex_state = 265}, - [9092] = {.lex_state = 265}, - [9093] = {.lex_state = 267}, - [9094] = {.lex_state = 333}, - [9095] = {.lex_state = 267}, - [9096] = {.lex_state = 265}, - [9097] = {.lex_state = 265}, - [9098] = {.lex_state = 265}, - [9099] = {.lex_state = 265}, - [9100] = {.lex_state = 265}, - [9101] = {.lex_state = 272}, + [9059] = {.lex_state = 243}, + [9060] = {.lex_state = 265}, + [9061] = {.lex_state = 337}, + [9062] = {.lex_state = 266}, + [9063] = {.lex_state = 301}, + [9064] = {.lex_state = 266}, + [9065] = {.lex_state = 266}, + [9066] = {.lex_state = 266}, + [9067] = {.lex_state = 266}, + [9068] = {.lex_state = 271}, + [9069] = {.lex_state = 438}, + [9070] = {.lex_state = 266}, + [9071] = {.lex_state = 266}, + [9072] = {.lex_state = 266}, + [9073] = {.lex_state = 337}, + [9074] = {.lex_state = 266}, + [9075] = {.lex_state = 266}, + [9076] = {.lex_state = 266}, + [9077] = {.lex_state = 266}, + [9078] = {.lex_state = 265}, + [9079] = {.lex_state = 266}, + [9080] = {.lex_state = 271}, + [9081] = {.lex_state = 266}, + [9082] = {.lex_state = 266}, + [9083] = {.lex_state = 255}, + [9084] = {.lex_state = 337}, + [9085] = {.lex_state = 341}, + [9086] = {.lex_state = 265}, + [9087] = {.lex_state = 438}, + [9088] = {.lex_state = 298}, + [9089] = {.lex_state = 266}, + [9090] = {.lex_state = 266}, + [9091] = {.lex_state = 255}, + [9092] = {.lex_state = 266}, + [9093] = {.lex_state = 334}, + [9094] = {.lex_state = 265}, + [9095] = {.lex_state = 255}, + [9096] = {.lex_state = 266}, + [9097] = {.lex_state = 334}, + [9098] = {.lex_state = 255}, + [9099] = {.lex_state = 334}, + [9100] = {.lex_state = 334}, + [9101] = {.lex_state = 255}, [9102] = {.lex_state = 265}, - [9103] = {.lex_state = 0}, - [9104] = {.lex_state = 265}, - [9105] = {.lex_state = 333}, - [9106] = {.lex_state = 267}, - [9107] = {.lex_state = 267}, - [9108] = {.lex_state = 265}, - [9109] = {.lex_state = 267}, - [9110] = {.lex_state = 333}, + [9103] = {.lex_state = 266}, + [9104] = {.lex_state = 266}, + [9105] = {.lex_state = 255}, + [9106] = {.lex_state = 255}, + [9107] = {.lex_state = 266}, + [9108] = {.lex_state = 334}, + [9109] = {.lex_state = 266}, + [9110] = {.lex_state = 265}, [9111] = {.lex_state = 265}, - [9112] = {.lex_state = 267}, + [9112] = {.lex_state = 266}, [9113] = {.lex_state = 265}, - [9114] = {.lex_state = 267}, - [9115] = {.lex_state = 333}, - [9116] = {.lex_state = 267}, - [9117] = {.lex_state = 265}, - [9118] = {.lex_state = 333}, - [9119] = {.lex_state = 265}, - [9120] = {.lex_state = 265}, - [9121] = {.lex_state = 267}, - [9122] = {.lex_state = 267}, - [9123] = {.lex_state = 267}, - [9124] = {.lex_state = 336}, + [9114] = {.lex_state = 266}, + [9115] = {.lex_state = 266}, + [9116] = {.lex_state = 265}, + [9117] = {.lex_state = 266}, + [9118] = {.lex_state = 266}, + [9119] = {.lex_state = 298}, + [9120] = {.lex_state = 337}, + [9121] = {.lex_state = 266}, + [9122] = {.lex_state = 266}, + [9123] = {.lex_state = 298}, + [9124] = {.lex_state = 266}, [9125] = {.lex_state = 265}, - [9126] = {.lex_state = 265}, - [9127] = {.lex_state = 265}, + [9126] = {.lex_state = 266}, + [9127] = {.lex_state = 334}, [9128] = {.lex_state = 265}, - [9129] = {.lex_state = 336}, - [9130] = {.lex_state = 265}, - [9131] = {.lex_state = 272}, - [9132] = {.lex_state = 265}, - [9133] = {.lex_state = 286}, - [9134] = {.lex_state = 265}, - [9135] = {.lex_state = 265}, - [9136] = {.lex_state = 265}, - [9137] = {.lex_state = 272}, - [9138] = {.lex_state = 265}, - [9139] = {.lex_state = 272}, - [9140] = {.lex_state = 272}, - [9141] = {.lex_state = 265}, - [9142] = {.lex_state = 333}, - [9143] = {.lex_state = 265}, - [9144] = {.lex_state = 265}, - [9145] = {.lex_state = 267}, - [9146] = {.lex_state = 265}, - [9147] = {.lex_state = 267}, - [9148] = {.lex_state = 267}, - [9149] = {.lex_state = 267}, - [9150] = {.lex_state = 333}, - [9151] = {.lex_state = 243}, - [9152] = {.lex_state = 243}, - [9153] = {.lex_state = 267}, - [9154] = {.lex_state = 267}, - [9155] = {.lex_state = 267}, - [9156] = {.lex_state = 267}, - [9157] = {.lex_state = 438}, + [9129] = {.lex_state = 266}, + [9130] = {.lex_state = 266}, + [9131] = {.lex_state = 266}, + [9132] = {.lex_state = 266}, + [9133] = {.lex_state = 266}, + [9134] = {.lex_state = 266}, + [9135] = {.lex_state = 266}, + [9136] = {.lex_state = 266}, + [9137] = {.lex_state = 266}, + [9138] = {.lex_state = 266}, + [9139] = {.lex_state = 266}, + [9140] = {.lex_state = 266}, + [9141] = {.lex_state = 266}, + [9142] = {.lex_state = 266}, + [9143] = {.lex_state = 266}, + [9144] = {.lex_state = 334}, + [9145] = {.lex_state = 266}, + [9146] = {.lex_state = 266}, + [9147] = {.lex_state = 266}, + [9148] = {.lex_state = 265}, + [9149] = {.lex_state = 266}, + [9150] = {.lex_state = 298}, + [9151] = {.lex_state = 298}, + [9152] = {.lex_state = 341}, + [9153] = {.lex_state = 266}, + [9154] = {.lex_state = 255}, + [9155] = {.lex_state = 438}, + [9156] = {.lex_state = 438}, + [9157] = {.lex_state = 266}, [9158] = {.lex_state = 265}, - [9159] = {.lex_state = 243}, - [9160] = {.lex_state = 267}, - [9161] = {.lex_state = 265}, - [9162] = {.lex_state = 438}, - [9163] = {.lex_state = 333}, - [9164] = {.lex_state = 267}, - [9165] = {.lex_state = 267}, + [9159] = {.lex_state = 265}, + [9160] = {.lex_state = 334}, + [9161] = {.lex_state = 298}, + [9162] = {.lex_state = 265}, + [9163] = {.lex_state = 265}, + [9164] = {.lex_state = 266}, + [9165] = {.lex_state = 334}, [9166] = {.lex_state = 265}, - [9167] = {.lex_state = 267}, - [9168] = {.lex_state = 336}, - [9169] = {.lex_state = 267}, - [9170] = {.lex_state = 235}, - [9171] = {.lex_state = 333}, - [9172] = {.lex_state = 333}, + [9167] = {.lex_state = 334}, + [9168] = {.lex_state = 265}, + [9169] = {.lex_state = 265}, + [9170] = {.lex_state = 265}, + [9171] = {.lex_state = 265}, + [9172] = {.lex_state = 265}, [9173] = {.lex_state = 265}, - [9174] = {.lex_state = 265}, + [9174] = {.lex_state = 266}, [9175] = {.lex_state = 265}, - [9176] = {.lex_state = 243}, - [9177] = {.lex_state = 267}, + [9176] = {.lex_state = 266}, + [9177] = {.lex_state = 266}, [9178] = {.lex_state = 265}, - [9179] = {.lex_state = 243}, - [9180] = {.lex_state = 243}, - [9181] = {.lex_state = 333}, - [9182] = {.lex_state = 243}, - [9183] = {.lex_state = 265}, - [9184] = {.lex_state = 267}, - [9185] = {.lex_state = 335}, - [9186] = {.lex_state = 438}, - [9187] = {.lex_state = 438}, - [9188] = {.lex_state = 265}, - [9189] = {.lex_state = 267}, - [9190] = {.lex_state = 267}, - [9191] = {.lex_state = 267}, - [9192] = {.lex_state = 333}, - [9193] = {.lex_state = 243}, - [9194] = {.lex_state = 265}, - [9195] = {.lex_state = 333}, - [9196] = {.lex_state = 243}, - [9197] = {.lex_state = 438}, - [9198] = {.lex_state = 333}, - [9199] = {.lex_state = 243}, - [9200] = {.lex_state = 265}, - [9201] = {.lex_state = 267}, - [9202] = {.lex_state = 333}, - [9203] = {.lex_state = 333}, - [9204] = {.lex_state = 333}, - [9205] = {.lex_state = 438}, - [9206] = {.lex_state = 267}, + [9179] = {.lex_state = 265}, + [9180] = {.lex_state = 265}, + [9181] = {.lex_state = 266}, + [9182] = {.lex_state = 266}, + [9183] = {.lex_state = 285}, + [9184] = {.lex_state = 271}, + [9185] = {.lex_state = 266}, + [9186] = {.lex_state = 334}, + [9187] = {.lex_state = 265}, + [9188] = {.lex_state = 266}, + [9189] = {.lex_state = 285}, + [9190] = {.lex_state = 265}, + [9191] = {.lex_state = 285}, + [9192] = {.lex_state = 285}, + [9193] = {.lex_state = 266}, + [9194] = {.lex_state = 266}, + [9195] = {.lex_state = 265}, + [9196] = {.lex_state = 265}, + [9197] = {.lex_state = 266}, + [9198] = {.lex_state = 336}, + [9199] = {.lex_state = 266}, + [9200] = {.lex_state = 271}, + [9201] = {.lex_state = 266}, + [9202] = {.lex_state = 265}, + [9203] = {.lex_state = 265}, + [9204] = {.lex_state = 266}, + [9205] = {.lex_state = 266}, + [9206] = {.lex_state = 265}, [9207] = {.lex_state = 265}, - [9208] = {.lex_state = 267}, - [9209] = {.lex_state = 265}, - [9210] = {.lex_state = 243}, - [9211] = {.lex_state = 243}, - [9212] = {.lex_state = 267}, - [9213] = {.lex_state = 298}, - [9214] = {.lex_state = 298}, - [9215] = {.lex_state = 235}, - [9216] = {.lex_state = 267}, - [9217] = {.lex_state = 298}, - [9218] = {.lex_state = 298}, - [9219] = {.lex_state = 267}, + [9208] = {.lex_state = 265}, + [9209] = {.lex_state = 266}, + [9210] = {.lex_state = 334}, + [9211] = {.lex_state = 334}, + [9212] = {.lex_state = 265}, + [9213] = {.lex_state = 266}, + [9214] = {.lex_state = 334}, + [9215] = {.lex_state = 271}, + [9216] = {.lex_state = 265}, + [9217] = {.lex_state = 266}, + [9218] = {.lex_state = 334}, + [9219] = {.lex_state = 285}, [9220] = {.lex_state = 265}, - [9221] = {.lex_state = 267}, - [9222] = {.lex_state = 298}, - [9223] = {.lex_state = 267}, - [9224] = {.lex_state = 298}, - [9225] = {.lex_state = 298}, - [9226] = {.lex_state = 298}, - [9227] = {.lex_state = 298}, - [9228] = {.lex_state = 438}, - [9229] = {.lex_state = 267}, - [9230] = {.lex_state = 267}, - [9231] = {.lex_state = 298}, - [9232] = {.lex_state = 298}, - [9233] = {.lex_state = 265}, - [9234] = {.lex_state = 243}, - [9235] = {.lex_state = 438}, - [9236] = {.lex_state = 333}, - [9237] = {.lex_state = 333}, - [9238] = {.lex_state = 267}, - [9239] = {.lex_state = 265}, - [9240] = {.lex_state = 438}, - [9241] = {.lex_state = 267}, - [9242] = {.lex_state = 267}, - [9243] = {.lex_state = 267}, - [9244] = {.lex_state = 267}, + [9221] = {.lex_state = 266}, + [9222] = {.lex_state = 265}, + [9223] = {.lex_state = 265}, + [9224] = {.lex_state = 271}, + [9225] = {.lex_state = 266}, + [9226] = {.lex_state = 271}, + [9227] = {.lex_state = 265}, + [9228] = {.lex_state = 265}, + [9229] = {.lex_state = 334}, + [9230] = {.lex_state = 265}, + [9231] = {.lex_state = 265}, + [9232] = {.lex_state = 265}, + [9233] = {.lex_state = 266}, + [9234] = {.lex_state = 334}, + [9235] = {.lex_state = 336}, + [9236] = {.lex_state = 336}, + [9237] = {.lex_state = 265}, + [9238] = {.lex_state = 266}, + [9239] = {.lex_state = 266}, + [9240] = {.lex_state = 336}, + [9241] = {.lex_state = 265}, + [9242] = {.lex_state = 266}, + [9243] = {.lex_state = 334}, + [9244] = {.lex_state = 334}, [9245] = {.lex_state = 265}, - [9246] = {.lex_state = 298}, - [9247] = {.lex_state = 243}, - [9248] = {.lex_state = 265}, - [9249] = {.lex_state = 267}, - [9250] = {.lex_state = 267}, - [9251] = {.lex_state = 267}, - [9252] = {.lex_state = 267}, - [9253] = {.lex_state = 267}, - [9254] = {.lex_state = 243}, - [9255] = {.lex_state = 267}, - [9256] = {.lex_state = 265}, - [9257] = {.lex_state = 267}, - [9258] = {.lex_state = 267}, - [9259] = {.lex_state = 267}, - [9260] = {.lex_state = 265}, + [9246] = {.lex_state = 265}, + [9247] = {.lex_state = 265}, + [9248] = {.lex_state = 266}, + [9249] = {.lex_state = 265}, + [9250] = {.lex_state = 271}, + [9251] = {.lex_state = 271}, + [9252] = {.lex_state = 265}, + [9253] = {.lex_state = 265}, + [9254] = {.lex_state = 265}, + [9255] = {.lex_state = 265}, + [9256] = {.lex_state = 0}, + [9257] = {.lex_state = 265}, + [9258] = {.lex_state = 265}, + [9259] = {.lex_state = 265}, + [9260] = {.lex_state = 0}, [9261] = {.lex_state = 265}, - [9262] = {.lex_state = 243}, + [9262] = {.lex_state = 301}, [9263] = {.lex_state = 265}, - [9264] = {.lex_state = 243}, - [9265] = {.lex_state = 267}, - [9266] = {.lex_state = 265}, - [9267] = {.lex_state = 438}, - [9268] = {.lex_state = 267}, - [9269] = {.lex_state = 267}, - [9270] = {.lex_state = 243}, - [9271] = {.lex_state = 243}, - [9272] = {.lex_state = 265}, - [9273] = {.lex_state = 336}, - [9274] = {.lex_state = 281}, - [9275] = {.lex_state = 265}, - [9276] = {.lex_state = 267}, - [9277] = {.lex_state = 265}, - [9278] = {.lex_state = 267}, - [9279] = {.lex_state = 267}, - [9280] = {.lex_state = 265}, - [9281] = {.lex_state = 243}, - [9282] = {.lex_state = 265}, - [9283] = {.lex_state = 265}, + [9264] = {.lex_state = 265}, + [9265] = {.lex_state = 334}, + [9266] = {.lex_state = 334}, + [9267] = {.lex_state = 265}, + [9268] = {.lex_state = 334}, + [9269] = {.lex_state = 271}, + [9270] = {.lex_state = 265}, + [9271] = {.lex_state = 285}, + [9272] = {.lex_state = 266}, + [9273] = {.lex_state = 265}, + [9274] = {.lex_state = 266}, + [9275] = {.lex_state = 266}, + [9276] = {.lex_state = 266}, + [9277] = {.lex_state = 243}, + [9278] = {.lex_state = 266}, + [9279] = {.lex_state = 265}, + [9280] = {.lex_state = 334}, + [9281] = {.lex_state = 266}, + [9282] = {.lex_state = 266}, + [9283] = {.lex_state = 266}, [9284] = {.lex_state = 438}, - [9285] = {.lex_state = 333}, - [9286] = {.lex_state = 267}, - [9287] = {.lex_state = 298}, - [9288] = {.lex_state = 144}, - [9289] = {.lex_state = 0}, - [9290] = {.lex_state = 146}, + [9285] = {.lex_state = 266}, + [9286] = {.lex_state = 265}, + [9287] = {.lex_state = 265}, + [9288] = {.lex_state = 265}, + [9289] = {.lex_state = 265}, + [9290] = {.lex_state = 265}, [9291] = {.lex_state = 438}, - [9292] = {.lex_state = 146}, - [9293] = {.lex_state = 144}, - [9294] = {.lex_state = 0}, - [9295] = {.lex_state = 267}, - [9296] = {.lex_state = 144}, - [9297] = {.lex_state = 235}, - [9298] = {.lex_state = 267}, - [9299] = {.lex_state = 438}, - [9300] = {.lex_state = 438}, - [9301] = {.lex_state = 438}, - [9302] = {.lex_state = 0}, - [9303] = {.lex_state = 147}, - [9304] = {.lex_state = 147}, - [9305] = {.lex_state = 0}, - [9306] = {.lex_state = 438}, - [9307] = {.lex_state = 438}, - [9308] = {.lex_state = 267}, - [9309] = {.lex_state = 144}, - [9310] = {.lex_state = 0}, - [9311] = {.lex_state = 267}, + [9292] = {.lex_state = 334}, + [9293] = {.lex_state = 266}, + [9294] = {.lex_state = 336}, + [9295] = {.lex_state = 266}, + [9296] = {.lex_state = 266}, + [9297] = {.lex_state = 334}, + [9298] = {.lex_state = 334}, + [9299] = {.lex_state = 265}, + [9300] = {.lex_state = 266}, + [9301] = {.lex_state = 334}, + [9302] = {.lex_state = 235}, + [9303] = {.lex_state = 265}, + [9304] = {.lex_state = 334}, + [9305] = {.lex_state = 243}, + [9306] = {.lex_state = 334}, + [9307] = {.lex_state = 266}, + [9308] = {.lex_state = 334}, + [9309] = {.lex_state = 265}, + [9310] = {.lex_state = 266}, + [9311] = {.lex_state = 265}, [9312] = {.lex_state = 438}, - [9313] = {.lex_state = 438}, - [9314] = {.lex_state = 146}, - [9315] = {.lex_state = 438}, - [9316] = {.lex_state = 144}, - [9317] = {.lex_state = 438}, - [9318] = {.lex_state = 438}, - [9319] = {.lex_state = 267}, - [9320] = {.lex_state = 438}, - [9321] = {.lex_state = 144}, - [9322] = {.lex_state = 438}, - [9323] = {.lex_state = 438}, - [9324] = {.lex_state = 144}, - [9325] = {.lex_state = 267}, - [9326] = {.lex_state = 144}, - [9327] = {.lex_state = 267}, - [9328] = {.lex_state = 0}, - [9329] = {.lex_state = 267}, - [9330] = {.lex_state = 267}, - [9331] = {.lex_state = 267}, - [9332] = {.lex_state = 267}, - [9333] = {.lex_state = 438}, - [9334] = {.lex_state = 267}, - [9335] = {.lex_state = 267}, - [9336] = {.lex_state = 267}, - [9337] = {.lex_state = 144}, - [9338] = {.lex_state = 235}, - [9339] = {.lex_state = 438}, - [9340] = {.lex_state = 267}, - [9341] = {.lex_state = 0}, - [9342] = {.lex_state = 146}, - [9343] = {.lex_state = 267}, - [9344] = {.lex_state = 144}, - [9345] = {.lex_state = 438}, - [9346] = {.lex_state = 0}, - [9347] = {.lex_state = 438}, - [9348] = {.lex_state = 438}, - [9349] = {.lex_state = 438}, - [9350] = {.lex_state = 144}, - [9351] = {.lex_state = 267}, - [9352] = {.lex_state = 438}, - [9353] = {.lex_state = 267}, - [9354] = {.lex_state = 267}, - [9355] = {.lex_state = 438}, - [9356] = {.lex_state = 0}, - [9357] = {.lex_state = 438}, - [9358] = {.lex_state = 146}, - [9359] = {.lex_state = 0}, - [9360] = {.lex_state = 438}, - [9361] = {.lex_state = 267}, - [9362] = {.lex_state = 267}, - [9363] = {.lex_state = 438}, - [9364] = {.lex_state = 267}, - [9365] = {.lex_state = 438}, - [9366] = {.lex_state = 0}, - [9367] = {.lex_state = 0}, - [9368] = {.lex_state = 0}, - [9369] = {.lex_state = 144}, - [9370] = {.lex_state = 0}, - [9371] = {.lex_state = 267}, - [9372] = {.lex_state = 267}, - [9373] = {.lex_state = 267}, - [9374] = {.lex_state = 267}, - [9375] = {.lex_state = 333}, - [9376] = {.lex_state = 438}, - [9377] = {.lex_state = 144}, - [9378] = {.lex_state = 144}, - [9379] = {.lex_state = 438}, - [9380] = {.lex_state = 267}, - [9381] = {.lex_state = 146}, - [9382] = {.lex_state = 144}, - [9383] = {.lex_state = 144}, - [9384] = {.lex_state = 0}, - [9385] = {.lex_state = 438}, - [9386] = {.lex_state = 144}, - [9387] = {.lex_state = 438}, + [9313] = {.lex_state = 266}, + [9314] = {.lex_state = 266}, + [9315] = {.lex_state = 266}, + [9316] = {.lex_state = 266}, + [9317] = {.lex_state = 266}, + [9318] = {.lex_state = 266}, + [9319] = {.lex_state = 298}, + [9320] = {.lex_state = 298}, + [9321] = {.lex_state = 243}, + [9322] = {.lex_state = 243}, + [9323] = {.lex_state = 298}, + [9324] = {.lex_state = 298}, + [9325] = {.lex_state = 266}, + [9326] = {.lex_state = 298}, + [9327] = {.lex_state = 298}, + [9328] = {.lex_state = 266}, + [9329] = {.lex_state = 266}, + [9330] = {.lex_state = 235}, + [9331] = {.lex_state = 243}, + [9332] = {.lex_state = 438}, + [9333] = {.lex_state = 266}, + [9334] = {.lex_state = 266}, + [9335] = {.lex_state = 298}, + [9336] = {.lex_state = 265}, + [9337] = {.lex_state = 298}, + [9338] = {.lex_state = 298}, + [9339] = {.lex_state = 298}, + [9340] = {.lex_state = 243}, + [9341] = {.lex_state = 298}, + [9342] = {.lex_state = 298}, + [9343] = {.lex_state = 298}, + [9344] = {.lex_state = 266}, + [9345] = {.lex_state = 266}, + [9346] = {.lex_state = 266}, + [9347] = {.lex_state = 266}, + [9348] = {.lex_state = 266}, + [9349] = {.lex_state = 265}, + [9350] = {.lex_state = 265}, + [9351] = {.lex_state = 334}, + [9352] = {.lex_state = 266}, + [9353] = {.lex_state = 438}, + [9354] = {.lex_state = 335}, + [9355] = {.lex_state = 265}, + [9356] = {.lex_state = 266}, + [9357] = {.lex_state = 243}, + [9358] = {.lex_state = 266}, + [9359] = {.lex_state = 265}, + [9360] = {.lex_state = 280}, + [9361] = {.lex_state = 266}, + [9362] = {.lex_state = 243}, + [9363] = {.lex_state = 334}, + [9364] = {.lex_state = 265}, + [9365] = {.lex_state = 265}, + [9366] = {.lex_state = 265}, + [9367] = {.lex_state = 266}, + [9368] = {.lex_state = 266}, + [9369] = {.lex_state = 265}, + [9370] = {.lex_state = 265}, + [9371] = {.lex_state = 243}, + [9372] = {.lex_state = 265}, + [9373] = {.lex_state = 266}, + [9374] = {.lex_state = 438}, + [9375] = {.lex_state = 243}, + [9376] = {.lex_state = 334}, + [9377] = {.lex_state = 266}, + [9378] = {.lex_state = 438}, + [9379] = {.lex_state = 266}, + [9380] = {.lex_state = 266}, + [9381] = {.lex_state = 265}, + [9382] = {.lex_state = 265}, + [9383] = {.lex_state = 438}, + [9384] = {.lex_state = 243}, + [9385] = {.lex_state = 265}, + [9386] = {.lex_state = 334}, + [9387] = {.lex_state = 266}, [9388] = {.lex_state = 438}, - [9389] = {.lex_state = 144}, - [9390] = {.lex_state = 267}, - [9391] = {.lex_state = 146}, - [9392] = {.lex_state = 438}, - [9393] = {.lex_state = 0}, - [9394] = {.lex_state = 0}, - [9395] = {.lex_state = 144}, - [9396] = {.lex_state = 267}, - [9397] = {.lex_state = 0}, - [9398] = {.lex_state = 146}, - [9399] = {.lex_state = 267}, - [9400] = {.lex_state = 438}, - [9401] = {.lex_state = 438}, - [9402] = {.lex_state = 438}, - [9403] = {.lex_state = 267}, - [9404] = {.lex_state = 438}, - [9405] = {.lex_state = 438}, - [9406] = {.lex_state = 267}, - [9407] = {.lex_state = 438}, - [9408] = {.lex_state = 438}, - [9409] = {.lex_state = 438}, - [9410] = {.lex_state = 144}, - [9411] = {.lex_state = 267}, - [9412] = {.lex_state = 438}, - [9413] = {.lex_state = 144}, - [9414] = {.lex_state = 438}, - [9415] = {.lex_state = 438}, - [9416] = {.lex_state = 144}, - [9417] = {.lex_state = 0}, - [9418] = {.lex_state = 267}, + [9389] = {.lex_state = 243}, + [9390] = {.lex_state = 243}, + [9391] = {.lex_state = 266}, + [9392] = {.lex_state = 243}, + [9393] = {.lex_state = 438}, + [9394] = {.lex_state = 266}, + [9395] = {.lex_state = 266}, + [9396] = {.lex_state = 334}, + [9397] = {.lex_state = 438}, + [9398] = {.lex_state = 266}, + [9399] = {.lex_state = 243}, + [9400] = {.lex_state = 243}, + [9401] = {.lex_state = 243}, + [9402] = {.lex_state = 266}, + [9403] = {.lex_state = 243}, + [9404] = {.lex_state = 265}, + [9405] = {.lex_state = 266}, + [9406] = {.lex_state = 265}, + [9407] = {.lex_state = 266}, + [9408] = {.lex_state = 266}, + [9409] = {.lex_state = 243}, + [9410] = {.lex_state = 243}, + [9411] = {.lex_state = 265}, + [9412] = {.lex_state = 266}, + [9413] = {.lex_state = 266}, + [9414] = {.lex_state = 265}, + [9415] = {.lex_state = 265}, + [9416] = {.lex_state = 334}, + [9417] = {.lex_state = 336}, + [9418] = {.lex_state = 266}, [9419] = {.lex_state = 438}, - [9420] = {.lex_state = 438}, + [9420] = {.lex_state = 146}, [9421] = {.lex_state = 438}, - [9422] = {.lex_state = 267}, - [9423] = {.lex_state = 267}, - [9424] = {.lex_state = 267}, - [9425] = {.lex_state = 144}, - [9426] = {.lex_state = 438}, - [9427] = {.lex_state = 438}, - [9428] = {.lex_state = 267}, - [9429] = {.lex_state = 438}, - [9430] = {.lex_state = 438}, - [9431] = {.lex_state = 0}, - [9432] = {.lex_state = 144}, - [9433] = {.lex_state = 267}, - [9434] = {.lex_state = 144}, - [9435] = {.lex_state = 438}, - [9436] = {.lex_state = 144}, - [9437] = {.lex_state = 267}, - [9438] = {.lex_state = 146}, - [9439] = {.lex_state = 0}, - [9440] = {.lex_state = 438}, - [9441] = {.lex_state = 144}, - [9442] = {.lex_state = 144}, + [9422] = {.lex_state = 266}, + [9423] = {.lex_state = 266}, + [9424] = {.lex_state = 0}, + [9425] = {.lex_state = 438}, + [9426] = {.lex_state = 266}, + [9427] = {.lex_state = 0}, + [9428] = {.lex_state = 438}, + [9429] = {.lex_state = 148}, + [9430] = {.lex_state = 266}, + [9431] = {.lex_state = 438}, + [9432] = {.lex_state = 0}, + [9433] = {.lex_state = 438}, + [9434] = {.lex_state = 438}, + [9435] = {.lex_state = 266}, + [9436] = {.lex_state = 266}, + [9437] = {.lex_state = 266}, + [9438] = {.lex_state = 438}, + [9439] = {.lex_state = 146}, + [9440] = {.lex_state = 146}, + [9441] = {.lex_state = 266}, + [9442] = {.lex_state = 334}, [9443] = {.lex_state = 0}, - [9444] = {.lex_state = 146}, - [9445] = {.lex_state = 267}, - [9446] = {.lex_state = 267}, - [9447] = {.lex_state = 144}, - [9448] = {.lex_state = 144}, - [9449] = {.lex_state = 0}, - [9450] = {.lex_state = 267}, - [9451] = {.lex_state = 267}, - [9452] = {.lex_state = 267}, - [9453] = {.lex_state = 144}, - [9454] = {.lex_state = 147}, - [9455] = {.lex_state = 147}, - [9456] = {.lex_state = 267}, - [9457] = {.lex_state = 267}, - [9458] = {.lex_state = 146}, - [9459] = {.lex_state = 144}, - [9460] = {.lex_state = 267}, + [9444] = {.lex_state = 266}, + [9445] = {.lex_state = 266}, + [9446] = {.lex_state = 148}, + [9447] = {.lex_state = 146}, + [9448] = {.lex_state = 266}, + [9449] = {.lex_state = 266}, + [9450] = {.lex_state = 266}, + [9451] = {.lex_state = 0}, + [9452] = {.lex_state = 0}, + [9453] = {.lex_state = 266}, + [9454] = {.lex_state = 438}, + [9455] = {.lex_state = 266}, + [9456] = {.lex_state = 146}, + [9457] = {.lex_state = 146}, + [9458] = {.lex_state = 148}, + [9459] = {.lex_state = 146}, + [9460] = {.lex_state = 266}, [9461] = {.lex_state = 438}, - [9462] = {.lex_state = 0}, - [9463] = {.lex_state = 267}, - [9464] = {.lex_state = 144}, - [9465] = {.lex_state = 144}, + [9462] = {.lex_state = 298}, + [9463] = {.lex_state = 266}, + [9464] = {.lex_state = 148}, + [9465] = {.lex_state = 0}, [9466] = {.lex_state = 438}, - [9467] = {.lex_state = 267}, - [9468] = {.lex_state = 144}, - [9469] = {.lex_state = 267}, - [9470] = {.lex_state = 267}, - [9471] = {.lex_state = 267}, + [9467] = {.lex_state = 146}, + [9468] = {.lex_state = 0}, + [9469] = {.lex_state = 146}, + [9470] = {.lex_state = 266}, + [9471] = {.lex_state = 146}, [9472] = {.lex_state = 438}, - [9473] = {.lex_state = 438}, - [9474] = {.lex_state = 147}, - [9475] = {.lex_state = 0}, - [9476] = {.lex_state = 0}, - [9477] = {.lex_state = 144}, - [9478] = {.lex_state = 0}, - [9479] = {.lex_state = 438}, - [9480] = {.lex_state = 267}, - [9481] = {.lex_state = 438}, + [9473] = {.lex_state = 146}, + [9474] = {.lex_state = 266}, + [9475] = {.lex_state = 146}, + [9476] = {.lex_state = 438}, + [9477] = {.lex_state = 149}, + [9478] = {.lex_state = 438}, + [9479] = {.lex_state = 266}, + [9480] = {.lex_state = 266}, + [9481] = {.lex_state = 0}, [9482] = {.lex_state = 438}, - [9483] = {.lex_state = 144}, - [9484] = {.lex_state = 144}, - [9485] = {.lex_state = 438}, - [9486] = {.lex_state = 0}, - [9487] = {.lex_state = 438}, - [9488] = {.lex_state = 298}, - [9489] = {.lex_state = 438}, - [9490] = {.lex_state = 144}, - [9491] = {.lex_state = 146}, - [9492] = {.lex_state = 0}, - [9493] = {.lex_state = 438}, - [9494] = {.lex_state = 267}, - [9495] = {.lex_state = 438}, - [9496] = {.lex_state = 267}, - [9497] = {.lex_state = 438}, - [9498] = {.lex_state = 267}, - [9499] = {.lex_state = 267}, - [9500] = {.lex_state = 0}, - [9501] = {.lex_state = 147}, - [9502] = {.lex_state = 146}, - [9503] = {.lex_state = 267}, - [9504] = {.lex_state = 438}, - [9505] = {.lex_state = 144}, - [9506] = {.lex_state = 438}, - [9507] = {.lex_state = 147}, - [9508] = {.lex_state = 0}, - [9509] = {.lex_state = 146}, - [9510] = {.lex_state = 267}, - [9511] = {.lex_state = 146}, - [9512] = {.lex_state = 144}, - [9513] = {.lex_state = 144}, - [9514] = {.lex_state = 144}, - [9515] = {.lex_state = 267}, - [9516] = {.lex_state = 333}, - [9517] = {.lex_state = 0}, - [9518] = {.lex_state = 144}, - [9519] = {.lex_state = 0}, - [9520] = {.lex_state = 0}, - [9521] = {.lex_state = 144}, - [9522] = {.lex_state = 144}, - [9523] = {.lex_state = 267}, + [9483] = {.lex_state = 266}, + [9484] = {.lex_state = 266}, + [9485] = {.lex_state = 146}, + [9486] = {.lex_state = 148}, + [9487] = {.lex_state = 149}, + [9488] = {.lex_state = 0}, + [9489] = {.lex_state = 146}, + [9490] = {.lex_state = 438}, + [9491] = {.lex_state = 266}, + [9492] = {.lex_state = 146}, + [9493] = {.lex_state = 148}, + [9494] = {.lex_state = 148}, + [9495] = {.lex_state = 146}, + [9496] = {.lex_state = 266}, + [9497] = {.lex_state = 146}, + [9498] = {.lex_state = 146}, + [9499] = {.lex_state = 0}, + [9500] = {.lex_state = 146}, + [9501] = {.lex_state = 438}, + [9502] = {.lex_state = 438}, + [9503] = {.lex_state = 266}, + [9504] = {.lex_state = 266}, + [9505] = {.lex_state = 438}, + [9506] = {.lex_state = 146}, + [9507] = {.lex_state = 149}, + [9508] = {.lex_state = 266}, + [9509] = {.lex_state = 266}, + [9510] = {.lex_state = 438}, + [9511] = {.lex_state = 438}, + [9512] = {.lex_state = 266}, + [9513] = {.lex_state = 146}, + [9514] = {.lex_state = 438}, + [9515] = {.lex_state = 0}, + [9516] = {.lex_state = 438}, + [9517] = {.lex_state = 266}, + [9518] = {.lex_state = 266}, + [9519] = {.lex_state = 266}, + [9520] = {.lex_state = 148}, + [9521] = {.lex_state = 148}, + [9522] = {.lex_state = 266}, + [9523] = {.lex_state = 438}, [9524] = {.lex_state = 438}, - [9525] = {.lex_state = 144}, - [9526] = {.lex_state = 438}, - [9527] = {.lex_state = 267}, - [9528] = {.lex_state = 0}, - [9529] = {.lex_state = 0}, - [9530] = {.lex_state = 235}, - [9531] = {.lex_state = 235}, - [9532] = {.lex_state = 267}, + [9525] = {.lex_state = 438}, + [9526] = {.lex_state = 266}, + [9527] = {.lex_state = 266}, + [9528] = {.lex_state = 438}, + [9529] = {.lex_state = 438}, + [9530] = {.lex_state = 438}, + [9531] = {.lex_state = 438}, + [9532] = {.lex_state = 438}, [9533] = {.lex_state = 0}, - [9534] = {.lex_state = 267}, - [9535] = {.lex_state = 235}, - [9536] = {.lex_state = 235}, - [9537] = {.lex_state = 0}, - [9538] = {.lex_state = 0}, - [9539] = {.lex_state = 0}, - [9540] = {.lex_state = 267}, - [9541] = {.lex_state = 0}, - [9542] = {.lex_state = 0}, - [9543] = {.lex_state = 0}, - [9544] = {.lex_state = 0}, - [9545] = {.lex_state = 0}, - [9546] = {.lex_state = 0}, - [9547] = {.lex_state = 0}, - [9548] = {.lex_state = 0}, - [9549] = {.lex_state = 267}, - [9550] = {.lex_state = 0}, + [9534] = {.lex_state = 438}, + [9535] = {.lex_state = 266}, + [9536] = {.lex_state = 146}, + [9537] = {.lex_state = 438}, + [9538] = {.lex_state = 438}, + [9539] = {.lex_state = 146}, + [9540] = {.lex_state = 146}, + [9541] = {.lex_state = 146}, + [9542] = {.lex_state = 266}, + [9543] = {.lex_state = 438}, + [9544] = {.lex_state = 438}, + [9545] = {.lex_state = 148}, + [9546] = {.lex_state = 438}, + [9547] = {.lex_state = 146}, + [9548] = {.lex_state = 438}, + [9549] = {.lex_state = 438}, + [9550] = {.lex_state = 266}, [9551] = {.lex_state = 438}, - [9552] = {.lex_state = 267}, - [9553] = {.lex_state = 0}, - [9554] = {.lex_state = 235}, - [9555] = {.lex_state = 235}, - [9556] = {.lex_state = 267}, - [9557] = {.lex_state = 267}, - [9558] = {.lex_state = 0}, - [9559] = {.lex_state = 235}, - [9560] = {.lex_state = 235}, - [9561] = {.lex_state = 0}, - [9562] = {.lex_state = 235}, - [9563] = {.lex_state = 0}, - [9564] = {.lex_state = 0}, - [9565] = {.lex_state = 0}, - [9566] = {.lex_state = 235}, - [9567] = {.lex_state = 267}, - [9568] = {.lex_state = 0}, - [9569] = {.lex_state = 0}, - [9570] = {.lex_state = 267}, - [9571] = {.lex_state = 235}, - [9572] = {.lex_state = 235}, - [9573] = {.lex_state = 267}, - [9574] = {.lex_state = 0}, - [9575] = {.lex_state = 235}, - [9576] = {.lex_state = 235}, + [9552] = {.lex_state = 0}, + [9553] = {.lex_state = 146}, + [9554] = {.lex_state = 146}, + [9555] = {.lex_state = 438}, + [9556] = {.lex_state = 266}, + [9557] = {.lex_state = 146}, + [9558] = {.lex_state = 146}, + [9559] = {.lex_state = 146}, + [9560] = {.lex_state = 438}, + [9561] = {.lex_state = 438}, + [9562] = {.lex_state = 438}, + [9563] = {.lex_state = 438}, + [9564] = {.lex_state = 148}, + [9565] = {.lex_state = 438}, + [9566] = {.lex_state = 438}, + [9567] = {.lex_state = 266}, + [9568] = {.lex_state = 146}, + [9569] = {.lex_state = 266}, + [9570] = {.lex_state = 266}, + [9571] = {.lex_state = 148}, + [9572] = {.lex_state = 266}, + [9573] = {.lex_state = 438}, + [9574] = {.lex_state = 438}, + [9575] = {.lex_state = 266}, + [9576] = {.lex_state = 0}, [9577] = {.lex_state = 0}, - [9578] = {.lex_state = 0}, + [9578] = {.lex_state = 438}, [9579] = {.lex_state = 0}, - [9580] = {.lex_state = 0}, + [9580] = {.lex_state = 149}, [9581] = {.lex_state = 0}, - [9582] = {.lex_state = 0}, - [9583] = {.lex_state = 267}, - [9584] = {.lex_state = 267}, - [9585] = {.lex_state = 0}, - [9586] = {.lex_state = 0}, - [9587] = {.lex_state = 0}, + [9582] = {.lex_state = 146}, + [9583] = {.lex_state = 266}, + [9584] = {.lex_state = 438}, + [9585] = {.lex_state = 266}, + [9586] = {.lex_state = 146}, + [9587] = {.lex_state = 266}, [9588] = {.lex_state = 0}, - [9589] = {.lex_state = 235}, - [9590] = {.lex_state = 235}, - [9591] = {.lex_state = 0}, - [9592] = {.lex_state = 0}, + [9589] = {.lex_state = 149}, + [9590] = {.lex_state = 266}, + [9591] = {.lex_state = 266}, + [9592] = {.lex_state = 438}, [9593] = {.lex_state = 0}, - [9594] = {.lex_state = 267}, - [9595] = {.lex_state = 0}, + [9594] = {.lex_state = 0}, + [9595] = {.lex_state = 438}, [9596] = {.lex_state = 0}, - [9597] = {.lex_state = 0}, - [9598] = {.lex_state = 0}, - [9599] = {.lex_state = 235}, - [9600] = {.lex_state = 235}, - [9601] = {.lex_state = 0}, - [9602] = {.lex_state = 0}, + [9597] = {.lex_state = 438}, + [9598] = {.lex_state = 146}, + [9599] = {.lex_state = 0}, + [9600] = {.lex_state = 266}, + [9601] = {.lex_state = 146}, + [9602] = {.lex_state = 266}, [9603] = {.lex_state = 0}, - [9604] = {.lex_state = 0}, - [9605] = {.lex_state = 0}, - [9606] = {.lex_state = 0}, - [9607] = {.lex_state = 0}, - [9608] = {.lex_state = 0}, - [9609] = {.lex_state = 267}, - [9610] = {.lex_state = 267}, - [9611] = {.lex_state = 267}, - [9612] = {.lex_state = 267}, - [9613] = {.lex_state = 267}, - [9614] = {.lex_state = 267}, - [9615] = {.lex_state = 0}, - [9616] = {.lex_state = 0}, + [9604] = {.lex_state = 146}, + [9605] = {.lex_state = 438}, + [9606] = {.lex_state = 266}, + [9607] = {.lex_state = 438}, + [9608] = {.lex_state = 266}, + [9609] = {.lex_state = 438}, + [9610] = {.lex_state = 148}, + [9611] = {.lex_state = 266}, + [9612] = {.lex_state = 266}, + [9613] = {.lex_state = 438}, + [9614] = {.lex_state = 146}, + [9615] = {.lex_state = 266}, + [9616] = {.lex_state = 438}, [9617] = {.lex_state = 0}, - [9618] = {.lex_state = 0}, - [9619] = {.lex_state = 0}, - [9620] = {.lex_state = 0}, - [9621] = {.lex_state = 0}, - [9622] = {.lex_state = 0}, - [9623] = {.lex_state = 0}, - [9624] = {.lex_state = 0}, - [9625] = {.lex_state = 267}, - [9626] = {.lex_state = 0}, + [9618] = {.lex_state = 149}, + [9619] = {.lex_state = 438}, + [9620] = {.lex_state = 146}, + [9621] = {.lex_state = 438}, + [9622] = {.lex_state = 149}, + [9623] = {.lex_state = 148}, + [9624] = {.lex_state = 146}, + [9625] = {.lex_state = 438}, + [9626] = {.lex_state = 146}, [9627] = {.lex_state = 0}, - [9628] = {.lex_state = 0}, - [9629] = {.lex_state = 0}, - [9630] = {.lex_state = 0}, - [9631] = {.lex_state = 267}, - [9632] = {.lex_state = 267}, - [9633] = {.lex_state = 0}, - [9634] = {.lex_state = 0}, - [9635] = {.lex_state = 0}, - [9636] = {.lex_state = 0}, - [9637] = {.lex_state = 0}, - [9638] = {.lex_state = 267}, - [9639] = {.lex_state = 0}, - [9640] = {.lex_state = 0}, - [9641] = {.lex_state = 0}, + [9628] = {.lex_state = 266}, + [9629] = {.lex_state = 146}, + [9630] = {.lex_state = 266}, + [9631] = {.lex_state = 0}, + [9632] = {.lex_state = 438}, + [9633] = {.lex_state = 146}, + [9634] = {.lex_state = 266}, + [9635] = {.lex_state = 266}, + [9636] = {.lex_state = 266}, + [9637] = {.lex_state = 334}, + [9638] = {.lex_state = 146}, + [9639] = {.lex_state = 235}, + [9640] = {.lex_state = 438}, + [9641] = {.lex_state = 438}, [9642] = {.lex_state = 0}, - [9643] = {.lex_state = 267}, - [9644] = {.lex_state = 0}, - [9645] = {.lex_state = 0}, - [9646] = {.lex_state = 0}, - [9647] = {.lex_state = 267}, - [9648] = {.lex_state = 267}, + [9643] = {.lex_state = 266}, + [9644] = {.lex_state = 266}, + [9645] = {.lex_state = 266}, + [9646] = {.lex_state = 438}, + [9647] = {.lex_state = 0}, + [9648] = {.lex_state = 438}, [9649] = {.lex_state = 0}, - [9650] = {.lex_state = 0}, - [9651] = {.lex_state = 0}, + [9650] = {.lex_state = 146}, + [9651] = {.lex_state = 438}, [9652] = {.lex_state = 0}, - [9653] = {.lex_state = 235}, - [9654] = {.lex_state = 0}, + [9653] = {.lex_state = 0}, + [9654] = {.lex_state = 148}, [9655] = {.lex_state = 0}, - [9656] = {.lex_state = 0}, - [9657] = {.lex_state = 149}, - [9658] = {.lex_state = 0}, - [9659] = {.lex_state = 267}, - [9660] = {.lex_state = 267}, + [9656] = {.lex_state = 146}, + [9657] = {.lex_state = 235}, + [9658] = {.lex_state = 146}, + [9659] = {.lex_state = 438}, + [9660] = {.lex_state = 0}, [9661] = {.lex_state = 0}, [9662] = {.lex_state = 0}, [9663] = {.lex_state = 0}, [9664] = {.lex_state = 0}, [9665] = {.lex_state = 0}, [9666] = {.lex_state = 0}, - [9667] = {.lex_state = 0}, - [9668] = {.lex_state = 267}, - [9669] = {.lex_state = 0}, - [9670] = {.lex_state = 267}, - [9671] = {.lex_state = 0}, + [9667] = {.lex_state = 266}, + [9668] = {.lex_state = 266}, + [9669] = {.lex_state = 266}, + [9670] = {.lex_state = 341}, + [9671] = {.lex_state = 266}, [9672] = {.lex_state = 0}, - [9673] = {.lex_state = 0}, - [9674] = {.lex_state = 267}, - [9675] = {.lex_state = 267}, - [9676] = {.lex_state = 267}, - [9677] = {.lex_state = 146}, + [9673] = {.lex_state = 266}, + [9674] = {.lex_state = 0}, + [9675] = {.lex_state = 266}, + [9676] = {.lex_state = 235}, + [9677] = {.lex_state = 235}, [9678] = {.lex_state = 235}, - [9679] = {.lex_state = 146}, + [9679] = {.lex_state = 235}, [9680] = {.lex_state = 0}, [9681] = {.lex_state = 0}, [9682] = {.lex_state = 0}, - [9683] = {.lex_state = 267}, - [9684] = {.lex_state = 267}, + [9683] = {.lex_state = 235}, + [9684] = {.lex_state = 235}, [9685] = {.lex_state = 0}, [9686] = {.lex_state = 0}, [9687] = {.lex_state = 0}, - [9688] = {.lex_state = 267}, - [9689] = {.lex_state = 267}, - [9690] = {.lex_state = 267}, - [9691] = {.lex_state = 267}, + [9688] = {.lex_state = 0}, + [9689] = {.lex_state = 0}, + [9690] = {.lex_state = 0}, + [9691] = {.lex_state = 0}, [9692] = {.lex_state = 0}, - [9693] = {.lex_state = 267}, - [9694] = {.lex_state = 267}, - [9695] = {.lex_state = 0}, - [9696] = {.lex_state = 267}, - [9697] = {.lex_state = 267}, - [9698] = {.lex_state = 267}, - [9699] = {.lex_state = 0}, - [9700] = {.lex_state = 267}, - [9701] = {.lex_state = 267}, - [9702] = {.lex_state = 267}, - [9703] = {.lex_state = 267}, + [9693] = {.lex_state = 266}, + [9694] = {.lex_state = 0}, + [9695] = {.lex_state = 235}, + [9696] = {.lex_state = 235}, + [9697] = {.lex_state = 235}, + [9698] = {.lex_state = 235}, + [9699] = {.lex_state = 235}, + [9700] = {.lex_state = 235}, + [9701] = {.lex_state = 0}, + [9702] = {.lex_state = 0}, + [9703] = {.lex_state = 0}, [9704] = {.lex_state = 0}, - [9705] = {.lex_state = 0}, + [9705] = {.lex_state = 266}, [9706] = {.lex_state = 0}, - [9707] = {.lex_state = 0}, - [9708] = {.lex_state = 341}, - [9709] = {.lex_state = 438}, - [9710] = {.lex_state = 0}, - [9711] = {.lex_state = 149}, - [9712] = {.lex_state = 267}, - [9713] = {.lex_state = 298}, + [9707] = {.lex_state = 266}, + [9708] = {.lex_state = 235}, + [9709] = {.lex_state = 266}, + [9710] = {.lex_state = 235}, + [9711] = {.lex_state = 266}, + [9712] = {.lex_state = 235}, + [9713] = {.lex_state = 235}, [9714] = {.lex_state = 0}, [9715] = {.lex_state = 0}, [9716] = {.lex_state = 0}, - [9717] = {.lex_state = 0}, - [9718] = {.lex_state = 0}, + [9717] = {.lex_state = 235}, + [9718] = {.lex_state = 235}, [9719] = {.lex_state = 0}, - [9720] = {.lex_state = 235}, - [9721] = {.lex_state = 235}, - [9722] = {.lex_state = 267}, + [9720] = {.lex_state = 0}, + [9721] = {.lex_state = 0}, + [9722] = {.lex_state = 0}, [9723] = {.lex_state = 0}, [9724] = {.lex_state = 0}, - [9725] = {.lex_state = 267}, - [9726] = {.lex_state = 235}, - [9727] = {.lex_state = 235}, + [9725] = {.lex_state = 0}, + [9726] = {.lex_state = 0}, + [9727] = {.lex_state = 0}, [9728] = {.lex_state = 0}, [9729] = {.lex_state = 0}, [9730] = {.lex_state = 0}, [9731] = {.lex_state = 0}, [9732] = {.lex_state = 0}, - [9733] = {.lex_state = 235}, + [9733] = {.lex_state = 0}, [9734] = {.lex_state = 0}, - [9735] = {.lex_state = 267}, + [9735] = {.lex_state = 0}, [9736] = {.lex_state = 0}, - [9737] = {.lex_state = 267}, + [9737] = {.lex_state = 0}, [9738] = {.lex_state = 0}, - [9739] = {.lex_state = 341}, + [9739] = {.lex_state = 266}, [9740] = {.lex_state = 0}, [9741] = {.lex_state = 0}, - [9742] = {.lex_state = 0}, + [9742] = {.lex_state = 235}, [9743] = {.lex_state = 235}, - [9744] = {.lex_state = 235}, - [9745] = {.lex_state = 235}, - [9746] = {.lex_state = 235}, - [9747] = {.lex_state = 235}, + [9744] = {.lex_state = 0}, + [9745] = {.lex_state = 0}, + [9746] = {.lex_state = 0}, + [9747] = {.lex_state = 0}, [9748] = {.lex_state = 0}, [9749] = {.lex_state = 0}, - [9750] = {.lex_state = 235}, - [9751] = {.lex_state = 235}, + [9750] = {.lex_state = 0}, + [9751] = {.lex_state = 0}, [9752] = {.lex_state = 0}, [9753] = {.lex_state = 0}, - [9754] = {.lex_state = 0}, - [9755] = {.lex_state = 0}, + [9754] = {.lex_state = 438}, + [9755] = {.lex_state = 266}, [9756] = {.lex_state = 0}, - [9757] = {.lex_state = 267}, - [9758] = {.lex_state = 267}, + [9757] = {.lex_state = 0}, + [9758] = {.lex_state = 0}, [9759] = {.lex_state = 0}, - [9760] = {.lex_state = 0}, + [9760] = {.lex_state = 266}, [9761] = {.lex_state = 0}, [9762] = {.lex_state = 0}, [9763] = {.lex_state = 0}, - [9764] = {.lex_state = 267}, + [9764] = {.lex_state = 0}, [9765] = {.lex_state = 0}, - [9766] = {.lex_state = 267}, - [9767] = {.lex_state = 267}, + [9766] = {.lex_state = 0}, + [9767] = {.lex_state = 266}, [9768] = {.lex_state = 0}, [9769] = {.lex_state = 0}, [9770] = {.lex_state = 0}, [9771] = {.lex_state = 0}, [9772] = {.lex_state = 0}, - [9773] = {.lex_state = 0}, - [9774] = {.lex_state = 0}, - [9775] = {.lex_state = 267}, - [9776] = {.lex_state = 267}, - [9777] = {.lex_state = 267}, + [9773] = {.lex_state = 235}, + [9774] = {.lex_state = 266}, + [9775] = {.lex_state = 235}, + [9776] = {.lex_state = 266}, + [9777] = {.lex_state = 266}, [9778] = {.lex_state = 0}, [9779] = {.lex_state = 0}, [9780] = {.lex_state = 0}, [9781] = {.lex_state = 0}, [9782] = {.lex_state = 0}, - [9783] = {.lex_state = 0}, - [9784] = {.lex_state = 267}, + [9783] = {.lex_state = 266}, + [9784] = {.lex_state = 266}, [9785] = {.lex_state = 0}, - [9786] = {.lex_state = 267}, + [9786] = {.lex_state = 0}, [9787] = {.lex_state = 0}, - [9788] = {.lex_state = 149}, + [9788] = {.lex_state = 0}, [9789] = {.lex_state = 0}, - [9790] = {.lex_state = 267}, - [9791] = {.lex_state = 235}, - [9792] = {.lex_state = 235}, - [9793] = {.lex_state = 267}, - [9794] = {.lex_state = 267}, + [9790] = {.lex_state = 0}, + [9791] = {.lex_state = 0}, + [9792] = {.lex_state = 0}, + [9793] = {.lex_state = 0}, + [9794] = {.lex_state = 0}, [9795] = {.lex_state = 0}, [9796] = {.lex_state = 0}, [9797] = {.lex_state = 0}, - [9798] = {.lex_state = 0}, - [9799] = {.lex_state = 267}, - [9800] = {.lex_state = 267}, - [9801] = {.lex_state = 267}, + [9798] = {.lex_state = 266}, + [9799] = {.lex_state = 266}, + [9800] = {.lex_state = 0}, + [9801] = {.lex_state = 0}, [9802] = {.lex_state = 0}, - [9803] = {.lex_state = 267}, - [9804] = {.lex_state = 146}, + [9803] = {.lex_state = 0}, + [9804] = {.lex_state = 0}, [9805] = {.lex_state = 0}, [9806] = {.lex_state = 0}, - [9807] = {.lex_state = 0}, - [9808] = {.lex_state = 235}, - [9809] = {.lex_state = 235}, + [9807] = {.lex_state = 266}, + [9808] = {.lex_state = 0}, + [9809] = {.lex_state = 0}, [9810] = {.lex_state = 0}, - [9811] = {.lex_state = 267}, - [9812] = {.lex_state = 267}, - [9813] = {.lex_state = 267}, + [9811] = {.lex_state = 0}, + [9812] = {.lex_state = 0}, + [9813] = {.lex_state = 266}, [9814] = {.lex_state = 0}, - [9815] = {.lex_state = 267}, + [9815] = {.lex_state = 0}, [9816] = {.lex_state = 0}, [9817] = {.lex_state = 0}, - [9818] = {.lex_state = 0}, - [9819] = {.lex_state = 235}, - [9820] = {.lex_state = 235}, - [9821] = {.lex_state = 0}, - [9822] = {.lex_state = 0}, - [9823] = {.lex_state = 267}, + [9818] = {.lex_state = 266}, + [9819] = {.lex_state = 0}, + [9820] = {.lex_state = 0}, + [9821] = {.lex_state = 266}, + [9822] = {.lex_state = 266}, + [9823] = {.lex_state = 0}, [9824] = {.lex_state = 0}, - [9825] = {.lex_state = 0}, - [9826] = {.lex_state = 0}, + [9825] = {.lex_state = 266}, + [9826] = {.lex_state = 266}, [9827] = {.lex_state = 0}, [9828] = {.lex_state = 0}, - [9829] = {.lex_state = 0}, - [9830] = {.lex_state = 267}, - [9831] = {.lex_state = 0}, + [9829] = {.lex_state = 266}, + [9830] = {.lex_state = 266}, + [9831] = {.lex_state = 266}, [9832] = {.lex_state = 0}, - [9833] = {.lex_state = 0}, + [9833] = {.lex_state = 148}, [9834] = {.lex_state = 0}, - [9835] = {.lex_state = 0}, - [9836] = {.lex_state = 0}, + [9835] = {.lex_state = 266}, + [9836] = {.lex_state = 266}, [9837] = {.lex_state = 0}, - [9838] = {.lex_state = 267}, - [9839] = {.lex_state = 0}, - [9840] = {.lex_state = 146}, - [9841] = {.lex_state = 267}, - [9842] = {.lex_state = 0}, - [9843] = {.lex_state = 235}, + [9838] = {.lex_state = 0}, + [9839] = {.lex_state = 266}, + [9840] = {.lex_state = 341}, + [9841] = {.lex_state = 266}, + [9842] = {.lex_state = 266}, + [9843] = {.lex_state = 0}, [9844] = {.lex_state = 0}, - [9845] = {.lex_state = 235}, + [9845] = {.lex_state = 0}, [9846] = {.lex_state = 0}, - [9847] = {.lex_state = 267}, + [9847] = {.lex_state = 266}, [9848] = {.lex_state = 0}, [9849] = {.lex_state = 0}, [9850] = {.lex_state = 0}, - [9851] = {.lex_state = 267}, + [9851] = {.lex_state = 438}, [9852] = {.lex_state = 0}, - [9853] = {.lex_state = 267}, - [9854] = {.lex_state = 235}, - [9855] = {.lex_state = 235}, + [9853] = {.lex_state = 266}, + [9854] = {.lex_state = 266}, + [9855] = {.lex_state = 0}, [9856] = {.lex_state = 0}, [9857] = {.lex_state = 0}, [9858] = {.lex_state = 0}, - [9859] = {.lex_state = 0}, - [9860] = {.lex_state = 0}, + [9859] = {.lex_state = 266}, + [9860] = {.lex_state = 266}, [9861] = {.lex_state = 0}, - [9862] = {.lex_state = 146}, - [9863] = {.lex_state = 267}, - [9864] = {.lex_state = 0}, - [9865] = {.lex_state = 235}, - [9866] = {.lex_state = 267}, - [9867] = {.lex_state = 235}, - [9868] = {.lex_state = 267}, + [9862] = {.lex_state = 0}, + [9863] = {.lex_state = 0}, + [9864] = {.lex_state = 266}, + [9865] = {.lex_state = 266}, + [9866] = {.lex_state = 0}, + [9867] = {.lex_state = 0}, + [9868] = {.lex_state = 235}, [9869] = {.lex_state = 235}, [9870] = {.lex_state = 0}, [9871] = {.lex_state = 0}, [9872] = {.lex_state = 0}, - [9873] = {.lex_state = 267}, + [9873] = {.lex_state = 266}, [9874] = {.lex_state = 0}, - [9875] = {.lex_state = 267}, - [9876] = {.lex_state = 267}, - [9877] = {.lex_state = 0}, + [9875] = {.lex_state = 0}, + [9876] = {.lex_state = 266}, + [9877] = {.lex_state = 266}, [9878] = {.lex_state = 0}, [9879] = {.lex_state = 0}, - [9880] = {.lex_state = 0}, - [9881] = {.lex_state = 0}, + [9880] = {.lex_state = 235}, + [9881] = {.lex_state = 235}, [9882] = {.lex_state = 0}, - [9883] = {.lex_state = 0}, + [9883] = {.lex_state = 266}, [9884] = {.lex_state = 0}, - [9885] = {.lex_state = 146}, - [9886] = {.lex_state = 0}, - [9887] = {.lex_state = 0}, - [9888] = {.lex_state = 235}, - [9889] = {.lex_state = 267}, + [9885] = {.lex_state = 0}, + [9886] = {.lex_state = 266}, + [9887] = {.lex_state = 266}, + [9888] = {.lex_state = 0}, + [9889] = {.lex_state = 0}, [9890] = {.lex_state = 0}, - [9891] = {.lex_state = 341}, + [9891] = {.lex_state = 0}, [9892] = {.lex_state = 0}, - [9893] = {.lex_state = 267}, - [9894] = {.lex_state = 0}, - [9895] = {.lex_state = 267}, - [9896] = {.lex_state = 267}, + [9893] = {.lex_state = 266}, + [9894] = {.lex_state = 266}, + [9895] = {.lex_state = 266}, + [9896] = {.lex_state = 266}, [9897] = {.lex_state = 0}, [9898] = {.lex_state = 0}, [9899] = {.lex_state = 0}, - [9900] = {.lex_state = 267}, - [9901] = {.lex_state = 267}, - [9902] = {.lex_state = 146}, - [9903] = {.lex_state = 267}, - [9904] = {.lex_state = 267}, - [9905] = {.lex_state = 0}, - [9906] = {.lex_state = 0}, + [9900] = {.lex_state = 0}, + [9901] = {.lex_state = 0}, + [9902] = {.lex_state = 0}, + [9903] = {.lex_state = 0}, + [9904] = {.lex_state = 266}, + [9905] = {.lex_state = 266}, + [9906] = {.lex_state = 266}, [9907] = {.lex_state = 0}, [9908] = {.lex_state = 0}, - [9909] = {.lex_state = 267}, + [9909] = {.lex_state = 0}, [9910] = {.lex_state = 0}, - [9911] = {.lex_state = 267}, - [9912] = {.lex_state = 267}, - [9913] = {.lex_state = 267}, - [9914] = {.lex_state = 267}, - [9915] = {.lex_state = 267}, + [9911] = {.lex_state = 0}, + [9912] = {.lex_state = 0}, + [9913] = {.lex_state = 0}, + [9914] = {.lex_state = 266}, + [9915] = {.lex_state = 0}, [9916] = {.lex_state = 0}, - [9917] = {.lex_state = 0}, - [9918] = {.lex_state = 0}, - [9919] = {.lex_state = 267}, - [9920] = {.lex_state = 146}, + [9917] = {.lex_state = 266}, + [9918] = {.lex_state = 266}, + [9919] = {.lex_state = 0}, + [9920] = {.lex_state = 0}, [9921] = {.lex_state = 0}, - [9922] = {.lex_state = 0}, - [9923] = {.lex_state = 0}, - [9924] = {.lex_state = 0}, - [9925] = {.lex_state = 267}, - [9926] = {.lex_state = 0}, + [9922] = {.lex_state = 266}, + [9923] = {.lex_state = 266}, + [9924] = {.lex_state = 266}, + [9925] = {.lex_state = 0}, + [9926] = {.lex_state = 148}, [9927] = {.lex_state = 0}, - [9928] = {.lex_state = 146}, - [9929] = {.lex_state = 0}, - [9930] = {.lex_state = 267}, - [9931] = {.lex_state = 235}, - [9932] = {.lex_state = 235}, + [9928] = {.lex_state = 0}, + [9929] = {.lex_state = 266}, + [9930] = {.lex_state = 266}, + [9931] = {.lex_state = 0}, + [9932] = {.lex_state = 0}, [9933] = {.lex_state = 0}, [9934] = {.lex_state = 0}, [9935] = {.lex_state = 0}, - [9936] = {.lex_state = 146}, + [9936] = {.lex_state = 0}, [9937] = {.lex_state = 0}, - [9938] = {.lex_state = 267}, + [9938] = {.lex_state = 151}, [9939] = {.lex_state = 0}, - [9940] = {.lex_state = 146}, + [9940] = {.lex_state = 266}, [9941] = {.lex_state = 0}, [9942] = {.lex_state = 0}, - [9943] = {.lex_state = 146}, - [9944] = {.lex_state = 146}, - [9945] = {.lex_state = 146}, + [9943] = {.lex_state = 226}, + [9944] = {.lex_state = 0}, + [9945] = {.lex_state = 0}, [9946] = {.lex_state = 0}, [9947] = {.lex_state = 0}, [9948] = {.lex_state = 0}, - [9949] = {.lex_state = 0}, - [9950] = {.lex_state = 0}, - [9951] = {.lex_state = 0}, - [9952] = {.lex_state = 149}, - [9953] = {.lex_state = 0}, + [9949] = {.lex_state = 235}, + [9950] = {.lex_state = 235}, + [9951] = {.lex_state = 266}, + [9952] = {.lex_state = 0}, + [9953] = {.lex_state = 148}, [9954] = {.lex_state = 0}, [9955] = {.lex_state = 0}, - [9956] = {.lex_state = 267}, - [9957] = {.lex_state = 0}, - [9958] = {.lex_state = 0}, - [9959] = {.lex_state = 235}, - [9960] = {.lex_state = 235}, - [9961] = {.lex_state = 0}, - [9962] = {.lex_state = 267}, - [9963] = {.lex_state = 267}, - [9964] = {.lex_state = 0}, - [9965] = {.lex_state = 0}, - [9966] = {.lex_state = 0}, - [9967] = {.lex_state = 267}, - [9968] = {.lex_state = 267}, + [9956] = {.lex_state = 0}, + [9957] = {.lex_state = 266}, + [9958] = {.lex_state = 266}, + [9959] = {.lex_state = 266}, + [9960] = {.lex_state = 0}, + [9961] = {.lex_state = 438}, + [9962] = {.lex_state = 266}, + [9963] = {.lex_state = 0}, + [9964] = {.lex_state = 151}, + [9965] = {.lex_state = 298}, + [9966] = {.lex_state = 341}, + [9967] = {.lex_state = 235}, + [9968] = {.lex_state = 235}, [9969] = {.lex_state = 0}, [9970] = {.lex_state = 0}, - [9971] = {.lex_state = 0}, + [9971] = {.lex_state = 266}, [9972] = {.lex_state = 0}, [9973] = {.lex_state = 0}, - [9974] = {.lex_state = 0}, - [9975] = {.lex_state = 0}, + [9974] = {.lex_state = 235}, + [9975] = {.lex_state = 235}, [9976] = {.lex_state = 0}, - [9977] = {.lex_state = 267}, + [9977] = {.lex_state = 0}, [9978] = {.lex_state = 0}, [9979] = {.lex_state = 0}, - [9980] = {.lex_state = 0}, - [9981] = {.lex_state = 0}, - [9982] = {.lex_state = 0}, - [9983] = {.lex_state = 0}, - [9984] = {.lex_state = 0}, - [9985] = {.lex_state = 0}, - [9986] = {.lex_state = 267}, - [9987] = {.lex_state = 267}, + [9980] = {.lex_state = 266}, + [9981] = {.lex_state = 266}, + [9982] = {.lex_state = 266}, + [9983] = {.lex_state = 148}, + [9984] = {.lex_state = 266}, + [9985] = {.lex_state = 266}, + [9986] = {.lex_state = 266}, + [9987] = {.lex_state = 0}, [9988] = {.lex_state = 0}, - [9989] = {.lex_state = 0}, - [9990] = {.lex_state = 0}, - [9991] = {.lex_state = 0}, - [9992] = {.lex_state = 267}, - [9993] = {.lex_state = 267}, + [9989] = {.lex_state = 266}, + [9990] = {.lex_state = 266}, + [9991] = {.lex_state = 266}, + [9992] = {.lex_state = 0}, + [9993] = {.lex_state = 266}, [9994] = {.lex_state = 0}, [9995] = {.lex_state = 0}, [9996] = {.lex_state = 0}, [9997] = {.lex_state = 0}, - [9998] = {.lex_state = 267}, + [9998] = {.lex_state = 0}, [9999] = {.lex_state = 0}, [10000] = {.lex_state = 0}, - [10001] = {.lex_state = 267}, - [10002] = {.lex_state = 267}, - [10003] = {.lex_state = 0}, + [10001] = {.lex_state = 0}, + [10002] = {.lex_state = 0}, + [10003] = {.lex_state = 266}, [10004] = {.lex_state = 0}, [10005] = {.lex_state = 0}, [10006] = {.lex_state = 0}, @@ -36361,417 +36738,417 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [10008] = {.lex_state = 0}, [10009] = {.lex_state = 0}, [10010] = {.lex_state = 0}, - [10011] = {.lex_state = 0}, - [10012] = {.lex_state = 0}, - [10013] = {.lex_state = 267}, - [10014] = {.lex_state = 267}, - [10015] = {.lex_state = 267}, - [10016] = {.lex_state = 267}, - [10017] = {.lex_state = 0}, + [10011] = {.lex_state = 266}, + [10012] = {.lex_state = 266}, + [10013] = {.lex_state = 0}, + [10014] = {.lex_state = 0}, + [10015] = {.lex_state = 148}, + [10016] = {.lex_state = 266}, + [10017] = {.lex_state = 266}, [10018] = {.lex_state = 0}, - [10019] = {.lex_state = 267}, - [10020] = {.lex_state = 267}, - [10021] = {.lex_state = 267}, - [10022] = {.lex_state = 267}, - [10023] = {.lex_state = 267}, - [10024] = {.lex_state = 267}, - [10025] = {.lex_state = 267}, + [10019] = {.lex_state = 0}, + [10020] = {.lex_state = 266}, + [10021] = {.lex_state = 0}, + [10022] = {.lex_state = 266}, + [10023] = {.lex_state = 266}, + [10024] = {.lex_state = 266}, + [10025] = {.lex_state = 266}, [10026] = {.lex_state = 0}, [10027] = {.lex_state = 0}, [10028] = {.lex_state = 0}, - [10029] = {.lex_state = 267}, + [10029] = {.lex_state = 0}, [10030] = {.lex_state = 0}, - [10031] = {.lex_state = 0}, - [10032] = {.lex_state = 0}, + [10031] = {.lex_state = 235}, + [10032] = {.lex_state = 151}, [10033] = {.lex_state = 0}, - [10034] = {.lex_state = 0}, - [10035] = {.lex_state = 235}, - [10036] = {.lex_state = 235}, - [10037] = {.lex_state = 0}, - [10038] = {.lex_state = 0}, - [10039] = {.lex_state = 0}, - [10040] = {.lex_state = 267}, - [10041] = {.lex_state = 0}, - [10042] = {.lex_state = 235}, + [10034] = {.lex_state = 235}, + [10035] = {.lex_state = 148}, + [10036] = {.lex_state = 266}, + [10037] = {.lex_state = 151}, + [10038] = {.lex_state = 266}, + [10039] = {.lex_state = 266}, + [10040] = {.lex_state = 235}, + [10041] = {.lex_state = 235}, + [10042] = {.lex_state = 0}, [10043] = {.lex_state = 235}, - [10044] = {.lex_state = 0}, + [10044] = {.lex_state = 235}, [10045] = {.lex_state = 0}, - [10046] = {.lex_state = 0}, - [10047] = {.lex_state = 0}, - [10048] = {.lex_state = 0}, - [10049] = {.lex_state = 267}, + [10046] = {.lex_state = 148}, + [10047] = {.lex_state = 266}, + [10048] = {.lex_state = 266}, + [10049] = {.lex_state = 0}, [10050] = {.lex_state = 0}, [10051] = {.lex_state = 0}, - [10052] = {.lex_state = 267}, - [10053] = {.lex_state = 0}, - [10054] = {.lex_state = 267}, - [10055] = {.lex_state = 438}, - [10056] = {.lex_state = 267}, + [10052] = {.lex_state = 266}, + [10053] = {.lex_state = 266}, + [10054] = {.lex_state = 0}, + [10055] = {.lex_state = 235}, + [10056] = {.lex_state = 235}, [10057] = {.lex_state = 0}, - [10058] = {.lex_state = 0}, - [10059] = {.lex_state = 267}, - [10060] = {.lex_state = 226}, - [10061] = {.lex_state = 0}, - [10062] = {.lex_state = 267}, + [10058] = {.lex_state = 148}, + [10059] = {.lex_state = 0}, + [10060] = {.lex_state = 148}, + [10061] = {.lex_state = 266}, + [10062] = {.lex_state = 266}, [10063] = {.lex_state = 0}, - [10064] = {.lex_state = 438, .external_lex_state = 2}, + [10064] = {.lex_state = 0}, [10065] = {.lex_state = 235}, [10066] = {.lex_state = 0}, [10067] = {.lex_state = 0}, [10068] = {.lex_state = 0}, - [10069] = {.lex_state = 0}, + [10069] = {.lex_state = 148}, [10070] = {.lex_state = 0}, - [10071] = {.lex_state = 0}, - [10072] = {.lex_state = 0}, - [10073] = {.lex_state = 0}, - [10074] = {.lex_state = 438}, - [10075] = {.lex_state = 0}, - [10076] = {.lex_state = 0}, - [10077] = {.lex_state = 438}, + [10071] = {.lex_state = 148}, + [10072] = {.lex_state = 235}, + [10073] = {.lex_state = 148}, + [10074] = {.lex_state = 0}, + [10075] = {.lex_state = 148}, + [10076] = {.lex_state = 148}, + [10077] = {.lex_state = 0}, [10078] = {.lex_state = 0}, [10079] = {.lex_state = 0}, [10080] = {.lex_state = 0}, - [10081] = {.lex_state = 0}, + [10081] = {.lex_state = 266}, [10082] = {.lex_state = 0}, [10083] = {.lex_state = 0}, [10084] = {.lex_state = 0}, - [10085] = {.lex_state = 0}, - [10086] = {.lex_state = 0}, - [10087] = {.lex_state = 438}, - [10088] = {.lex_state = 438}, - [10089] = {.lex_state = 148}, - [10090] = {.lex_state = 0}, + [10085] = {.lex_state = 266}, + [10086] = {.lex_state = 266}, + [10087] = {.lex_state = 0}, + [10088] = {.lex_state = 0}, + [10089] = {.lex_state = 0}, + [10090] = {.lex_state = 235}, [10091] = {.lex_state = 0}, [10092] = {.lex_state = 0}, [10093] = {.lex_state = 0}, - [10094] = {.lex_state = 438}, + [10094] = {.lex_state = 0}, [10095] = {.lex_state = 0}, - [10096] = {.lex_state = 438}, - [10097] = {.lex_state = 438}, + [10096] = {.lex_state = 266}, + [10097] = {.lex_state = 266}, [10098] = {.lex_state = 0}, - [10099] = {.lex_state = 438}, - [10100] = {.lex_state = 0}, + [10099] = {.lex_state = 266}, + [10100] = {.lex_state = 266}, [10101] = {.lex_state = 0}, [10102] = {.lex_state = 0}, - [10103] = {.lex_state = 0}, - [10104] = {.lex_state = 438}, - [10105] = {.lex_state = 438}, - [10106] = {.lex_state = 0}, - [10107] = {.lex_state = 438}, + [10103] = {.lex_state = 266}, + [10104] = {.lex_state = 266}, + [10105] = {.lex_state = 266}, + [10106] = {.lex_state = 266}, + [10107] = {.lex_state = 0}, [10108] = {.lex_state = 0}, - [10109] = {.lex_state = 0}, - [10110] = {.lex_state = 0}, - [10111] = {.lex_state = 148}, + [10109] = {.lex_state = 235}, + [10110] = {.lex_state = 235}, + [10111] = {.lex_state = 235}, [10112] = {.lex_state = 0}, [10113] = {.lex_state = 0}, - [10114] = {.lex_state = 438}, + [10114] = {.lex_state = 0}, [10115] = {.lex_state = 235}, - [10116] = {.lex_state = 438}, + [10116] = {.lex_state = 235}, [10117] = {.lex_state = 0}, [10118] = {.lex_state = 0}, - [10119] = {.lex_state = 235}, + [10119] = {.lex_state = 266}, [10120] = {.lex_state = 0}, [10121] = {.lex_state = 0}, [10122] = {.lex_state = 0}, - [10123] = {.lex_state = 438}, - [10124] = {.lex_state = 0}, - [10125] = {.lex_state = 0}, - [10126] = {.lex_state = 0}, - [10127] = {.lex_state = 438}, + [10123] = {.lex_state = 0}, + [10124] = {.lex_state = 266}, + [10125] = {.lex_state = 266}, + [10126] = {.lex_state = 266}, + [10127] = {.lex_state = 266}, [10128] = {.lex_state = 0}, - [10129] = {.lex_state = 148}, - [10130] = {.lex_state = 438}, - [10131] = {.lex_state = 438}, - [10132] = {.lex_state = 438}, - [10133] = {.lex_state = 235}, - [10134] = {.lex_state = 0}, + [10129] = {.lex_state = 0}, + [10130] = {.lex_state = 0}, + [10131] = {.lex_state = 0}, + [10132] = {.lex_state = 235}, + [10133] = {.lex_state = 0}, + [10134] = {.lex_state = 235}, [10135] = {.lex_state = 0}, - [10136] = {.lex_state = 438}, - [10137] = {.lex_state = 438}, + [10136] = {.lex_state = 0}, + [10137] = {.lex_state = 266}, [10138] = {.lex_state = 0}, [10139] = {.lex_state = 0}, [10140] = {.lex_state = 0}, [10141] = {.lex_state = 0}, - [10142] = {.lex_state = 0}, - [10143] = {.lex_state = 438, .external_lex_state = 2}, + [10142] = {.lex_state = 266}, + [10143] = {.lex_state = 0}, [10144] = {.lex_state = 0}, - [10145] = {.lex_state = 438}, + [10145] = {.lex_state = 0}, [10146] = {.lex_state = 0}, - [10147] = {.lex_state = 438}, - [10148] = {.lex_state = 0}, - [10149] = {.lex_state = 438}, - [10150] = {.lex_state = 0}, + [10147] = {.lex_state = 0}, + [10148] = {.lex_state = 266}, + [10149] = {.lex_state = 0}, + [10150] = {.lex_state = 266}, [10151] = {.lex_state = 0}, - [10152] = {.lex_state = 0}, - [10153] = {.lex_state = 0}, + [10152] = {.lex_state = 266}, + [10153] = {.lex_state = 266}, [10154] = {.lex_state = 0}, - [10155] = {.lex_state = 148}, + [10155] = {.lex_state = 0}, [10156] = {.lex_state = 0}, - [10157] = {.lex_state = 0}, - [10158] = {.lex_state = 0}, + [10157] = {.lex_state = 266}, + [10158] = {.lex_state = 266}, [10159] = {.lex_state = 0}, - [10160] = {.lex_state = 438}, + [10160] = {.lex_state = 0}, [10161] = {.lex_state = 0}, [10162] = {.lex_state = 0}, [10163] = {.lex_state = 0}, [10164] = {.lex_state = 0}, [10165] = {.lex_state = 0}, - [10166] = {.lex_state = 438}, + [10166] = {.lex_state = 0}, [10167] = {.lex_state = 0}, [10168] = {.lex_state = 0}, [10169] = {.lex_state = 0}, - [10170] = {.lex_state = 438}, - [10171] = {.lex_state = 0}, - [10172] = {.lex_state = 438}, + [10170] = {.lex_state = 266}, + [10171] = {.lex_state = 266}, + [10172] = {.lex_state = 0}, [10173] = {.lex_state = 0}, [10174] = {.lex_state = 0}, [10175] = {.lex_state = 0}, - [10176] = {.lex_state = 0}, - [10177] = {.lex_state = 0}, - [10178] = {.lex_state = 438}, - [10179] = {.lex_state = 438}, + [10176] = {.lex_state = 266}, + [10177] = {.lex_state = 266}, + [10178] = {.lex_state = 266}, + [10179] = {.lex_state = 266}, [10180] = {.lex_state = 0}, [10181] = {.lex_state = 0}, - [10182] = {.lex_state = 0}, - [10183] = {.lex_state = 0}, - [10184] = {.lex_state = 438}, + [10182] = {.lex_state = 266}, + [10183] = {.lex_state = 266}, + [10184] = {.lex_state = 0}, [10185] = {.lex_state = 0}, [10186] = {.lex_state = 0}, - [10187] = {.lex_state = 438}, + [10187] = {.lex_state = 0}, [10188] = {.lex_state = 0}, - [10189] = {.lex_state = 438}, - [10190] = {.lex_state = 148}, - [10191] = {.lex_state = 438}, + [10189] = {.lex_state = 0}, + [10190] = {.lex_state = 266}, + [10191] = {.lex_state = 266}, [10192] = {.lex_state = 0}, - [10193] = {.lex_state = 0}, - [10194] = {.lex_state = 148}, - [10195] = {.lex_state = 0}, + [10193] = {.lex_state = 235}, + [10194] = {.lex_state = 235}, + [10195] = {.lex_state = 266}, [10196] = {.lex_state = 0}, [10197] = {.lex_state = 0}, - [10198] = {.lex_state = 438}, + [10198] = {.lex_state = 0}, [10199] = {.lex_state = 0}, [10200] = {.lex_state = 0}, - [10201] = {.lex_state = 438}, - [10202] = {.lex_state = 438}, - [10203] = {.lex_state = 0}, - [10204] = {.lex_state = 438}, + [10201] = {.lex_state = 0}, + [10202] = {.lex_state = 235}, + [10203] = {.lex_state = 235}, + [10204] = {.lex_state = 0}, [10205] = {.lex_state = 0}, - [10206] = {.lex_state = 0}, - [10207] = {.lex_state = 148}, - [10208] = {.lex_state = 0}, + [10206] = {.lex_state = 266}, + [10207] = {.lex_state = 150}, + [10208] = {.lex_state = 438}, [10209] = {.lex_state = 0}, - [10210] = {.lex_state = 0}, - [10211] = {.lex_state = 0}, + [10210] = {.lex_state = 438}, + [10211] = {.lex_state = 438}, [10212] = {.lex_state = 0}, [10213] = {.lex_state = 0}, - [10214] = {.lex_state = 0}, + [10214] = {.lex_state = 438}, [10215] = {.lex_state = 0}, [10216] = {.lex_state = 0}, - [10217] = {.lex_state = 438}, - [10218] = {.lex_state = 0}, - [10219] = {.lex_state = 438}, + [10217] = {.lex_state = 0}, + [10218] = {.lex_state = 438}, + [10219] = {.lex_state = 0}, [10220] = {.lex_state = 0}, - [10221] = {.lex_state = 0}, - [10222] = {.lex_state = 438}, - [10223] = {.lex_state = 0}, + [10221] = {.lex_state = 438}, + [10222] = {.lex_state = 0}, + [10223] = {.lex_state = 150}, [10224] = {.lex_state = 0}, - [10225] = {.lex_state = 148}, + [10225] = {.lex_state = 0}, [10226] = {.lex_state = 0}, [10227] = {.lex_state = 0}, [10228] = {.lex_state = 0}, - [10229] = {.lex_state = 148}, - [10230] = {.lex_state = 438}, + [10229] = {.lex_state = 0}, + [10230] = {.lex_state = 0}, [10231] = {.lex_state = 0}, - [10232] = {.lex_state = 438}, - [10233] = {.lex_state = 0}, + [10232] = {.lex_state = 0}, + [10233] = {.lex_state = 438}, [10234] = {.lex_state = 0}, [10235] = {.lex_state = 438}, [10236] = {.lex_state = 0}, - [10237] = {.lex_state = 438}, - [10238] = {.lex_state = 438}, - [10239] = {.lex_state = 438}, + [10237] = {.lex_state = 0}, + [10238] = {.lex_state = 0}, + [10239] = {.lex_state = 0}, [10240] = {.lex_state = 0}, - [10241] = {.lex_state = 0}, + [10241] = {.lex_state = 438}, [10242] = {.lex_state = 438}, - [10243] = {.lex_state = 0}, + [10243] = {.lex_state = 438}, [10244] = {.lex_state = 0}, - [10245] = {.lex_state = 438}, + [10245] = {.lex_state = 0}, [10246] = {.lex_state = 0}, - [10247] = {.lex_state = 0}, + [10247] = {.lex_state = 438}, [10248] = {.lex_state = 0}, - [10249] = {.lex_state = 438}, + [10249] = {.lex_state = 0}, [10250] = {.lex_state = 0}, [10251] = {.lex_state = 0}, - [10252] = {.lex_state = 438}, + [10252] = {.lex_state = 0}, [10253] = {.lex_state = 0}, - [10254] = {.lex_state = 0}, - [10255] = {.lex_state = 235}, + [10254] = {.lex_state = 438}, + [10255] = {.lex_state = 150}, [10256] = {.lex_state = 438}, - [10257] = {.lex_state = 0}, - [10258] = {.lex_state = 267}, - [10259] = {.lex_state = 438}, - [10260] = {.lex_state = 0}, - [10261] = {.lex_state = 438}, - [10262] = {.lex_state = 438}, - [10263] = {.lex_state = 438}, - [10264] = {.lex_state = 438}, - [10265] = {.lex_state = 438}, - [10266] = {.lex_state = 235}, + [10257] = {.lex_state = 438}, + [10258] = {.lex_state = 266}, + [10259] = {.lex_state = 150}, + [10260] = {.lex_state = 438}, + [10261] = {.lex_state = 0}, + [10262] = {.lex_state = 0}, + [10263] = {.lex_state = 0}, + [10264] = {.lex_state = 0}, + [10265] = {.lex_state = 0}, + [10266] = {.lex_state = 0}, [10267] = {.lex_state = 438}, [10268] = {.lex_state = 0}, - [10269] = {.lex_state = 148}, + [10269] = {.lex_state = 438}, [10270] = {.lex_state = 0}, [10271] = {.lex_state = 0}, [10272] = {.lex_state = 0}, - [10273] = {.lex_state = 148}, - [10274] = {.lex_state = 438}, - [10275] = {.lex_state = 438}, + [10273] = {.lex_state = 0}, + [10274] = {.lex_state = 0}, + [10275] = {.lex_state = 0}, [10276] = {.lex_state = 0}, - [10277] = {.lex_state = 438}, + [10277] = {.lex_state = 150}, [10278] = {.lex_state = 0}, [10279] = {.lex_state = 0}, [10280] = {.lex_state = 0}, [10281] = {.lex_state = 0}, - [10282] = {.lex_state = 0}, - [10283] = {.lex_state = 0}, + [10282] = {.lex_state = 438}, + [10283] = {.lex_state = 235}, [10284] = {.lex_state = 438}, - [10285] = {.lex_state = 0}, + [10285] = {.lex_state = 266}, [10286] = {.lex_state = 0}, [10287] = {.lex_state = 0}, [10288] = {.lex_state = 0}, [10289] = {.lex_state = 0}, - [10290] = {.lex_state = 438}, - [10291] = {.lex_state = 438}, + [10290] = {.lex_state = 0}, + [10291] = {.lex_state = 0}, [10292] = {.lex_state = 438}, - [10293] = {.lex_state = 0}, + [10293] = {.lex_state = 235}, [10294] = {.lex_state = 0}, [10295] = {.lex_state = 0}, - [10296] = {.lex_state = 0}, + [10296] = {.lex_state = 438}, [10297] = {.lex_state = 0}, - [10298] = {.lex_state = 438}, + [10298] = {.lex_state = 0}, [10299] = {.lex_state = 0}, - [10300] = {.lex_state = 0}, - [10301] = {.lex_state = 0}, - [10302] = {.lex_state = 0}, + [10300] = {.lex_state = 150}, + [10301] = {.lex_state = 438}, + [10302] = {.lex_state = 438}, [10303] = {.lex_state = 0}, - [10304] = {.lex_state = 0}, + [10304] = {.lex_state = 438}, [10305] = {.lex_state = 0}, - [10306] = {.lex_state = 0}, + [10306] = {.lex_state = 150}, [10307] = {.lex_state = 0}, [10308] = {.lex_state = 0}, [10309] = {.lex_state = 0}, - [10310] = {.lex_state = 0}, - [10311] = {.lex_state = 0}, + [10310] = {.lex_state = 438}, + [10311] = {.lex_state = 266}, [10312] = {.lex_state = 0}, [10313] = {.lex_state = 0}, - [10314] = {.lex_state = 0}, - [10315] = {.lex_state = 0}, + [10314] = {.lex_state = 438}, + [10315] = {.lex_state = 438}, [10316] = {.lex_state = 0}, [10317] = {.lex_state = 0}, - [10318] = {.lex_state = 438}, - [10319] = {.lex_state = 438}, - [10320] = {.lex_state = 438}, + [10318] = {.lex_state = 0}, + [10319] = {.lex_state = 0}, + [10320] = {.lex_state = 0}, [10321] = {.lex_state = 0}, [10322] = {.lex_state = 0}, [10323] = {.lex_state = 0}, [10324] = {.lex_state = 0}, [10325] = {.lex_state = 0}, - [10326] = {.lex_state = 267}, - [10327] = {.lex_state = 0}, - [10328] = {.lex_state = 0}, + [10326] = {.lex_state = 0}, + [10327] = {.lex_state = 438}, + [10328] = {.lex_state = 438}, [10329] = {.lex_state = 0}, [10330] = {.lex_state = 0}, [10331] = {.lex_state = 0}, - [10332] = {.lex_state = 267}, + [10332] = {.lex_state = 235}, [10333] = {.lex_state = 0}, - [10334] = {.lex_state = 438}, + [10334] = {.lex_state = 0}, [10335] = {.lex_state = 0}, - [10336] = {.lex_state = 438}, + [10336] = {.lex_state = 0}, [10337] = {.lex_state = 0}, - [10338] = {.lex_state = 0}, + [10338] = {.lex_state = 438}, [10339] = {.lex_state = 438}, - [10340] = {.lex_state = 0}, - [10341] = {.lex_state = 438}, + [10340] = {.lex_state = 438}, + [10341] = {.lex_state = 0}, [10342] = {.lex_state = 0}, - [10343] = {.lex_state = 438}, + [10343] = {.lex_state = 0}, [10344] = {.lex_state = 0}, - [10345] = {.lex_state = 438}, + [10345] = {.lex_state = 0}, [10346] = {.lex_state = 0}, [10347] = {.lex_state = 0}, - [10348] = {.lex_state = 0}, - [10349] = {.lex_state = 267}, + [10348] = {.lex_state = 438}, + [10349] = {.lex_state = 0}, [10350] = {.lex_state = 0}, [10351] = {.lex_state = 0}, - [10352] = {.lex_state = 0}, + [10352] = {.lex_state = 438}, [10353] = {.lex_state = 0}, [10354] = {.lex_state = 0}, [10355] = {.lex_state = 0}, - [10356] = {.lex_state = 0}, + [10356] = {.lex_state = 438}, [10357] = {.lex_state = 0}, - [10358] = {.lex_state = 438}, + [10358] = {.lex_state = 0}, [10359] = {.lex_state = 0}, - [10360] = {.lex_state = 148}, - [10361] = {.lex_state = 438}, - [10362] = {.lex_state = 0}, + [10360] = {.lex_state = 0}, + [10361] = {.lex_state = 0}, + [10362] = {.lex_state = 438}, [10363] = {.lex_state = 0}, - [10364] = {.lex_state = 438}, + [10364] = {.lex_state = 0}, [10365] = {.lex_state = 0}, [10366] = {.lex_state = 0}, [10367] = {.lex_state = 0}, - [10368] = {.lex_state = 0}, + [10368] = {.lex_state = 438}, [10369] = {.lex_state = 0}, [10370] = {.lex_state = 0}, - [10371] = {.lex_state = 0}, + [10371] = {.lex_state = 438}, [10372] = {.lex_state = 438}, - [10373] = {.lex_state = 0}, - [10374] = {.lex_state = 0}, + [10373] = {.lex_state = 438}, + [10374] = {.lex_state = 438}, [10375] = {.lex_state = 0}, [10376] = {.lex_state = 0}, - [10377] = {.lex_state = 148}, + [10377] = {.lex_state = 0}, [10378] = {.lex_state = 0}, - [10379] = {.lex_state = 148}, - [10380] = {.lex_state = 0}, + [10379] = {.lex_state = 438}, + [10380] = {.lex_state = 438}, [10381] = {.lex_state = 0}, - [10382] = {.lex_state = 0}, - [10383] = {.lex_state = 438}, - [10384] = {.lex_state = 0}, - [10385] = {.lex_state = 438}, + [10382] = {.lex_state = 438}, + [10383] = {.lex_state = 0}, + [10384] = {.lex_state = 438}, + [10385] = {.lex_state = 0}, [10386] = {.lex_state = 0}, - [10387] = {.lex_state = 148}, + [10387] = {.lex_state = 438}, [10388] = {.lex_state = 438}, - [10389] = {.lex_state = 148}, - [10390] = {.lex_state = 0}, - [10391] = {.lex_state = 438}, - [10392] = {.lex_state = 438, .external_lex_state = 2}, + [10389] = {.lex_state = 438}, + [10390] = {.lex_state = 438}, + [10391] = {.lex_state = 235}, + [10392] = {.lex_state = 438}, [10393] = {.lex_state = 0}, - [10394] = {.lex_state = 0}, + [10394] = {.lex_state = 438}, [10395] = {.lex_state = 0}, [10396] = {.lex_state = 0}, - [10397] = {.lex_state = 0}, - [10398] = {.lex_state = 0}, - [10399] = {.lex_state = 438}, + [10397] = {.lex_state = 438}, + [10398] = {.lex_state = 438}, + [10399] = {.lex_state = 0}, [10400] = {.lex_state = 0}, [10401] = {.lex_state = 0}, [10402] = {.lex_state = 0}, - [10403] = {.lex_state = 0}, - [10404] = {.lex_state = 438}, + [10403] = {.lex_state = 438}, + [10404] = {.lex_state = 0}, [10405] = {.lex_state = 0}, [10406] = {.lex_state = 0}, - [10407] = {.lex_state = 267}, + [10407] = {.lex_state = 438}, [10408] = {.lex_state = 0}, [10409] = {.lex_state = 0}, - [10410] = {.lex_state = 0}, - [10411] = {.lex_state = 0}, - [10412] = {.lex_state = 0}, + [10410] = {.lex_state = 438}, + [10411] = {.lex_state = 438}, + [10412] = {.lex_state = 438}, [10413] = {.lex_state = 0}, [10414] = {.lex_state = 0}, - [10415] = {.lex_state = 438}, - [10416] = {.lex_state = 0}, - [10417] = {.lex_state = 438}, - [10418] = {.lex_state = 438}, - [10419] = {.lex_state = 267}, + [10415] = {.lex_state = 0}, + [10416] = {.lex_state = 438}, + [10417] = {.lex_state = 0}, + [10418] = {.lex_state = 0}, + [10419] = {.lex_state = 438}, [10420] = {.lex_state = 0}, - [10421] = {.lex_state = 0}, + [10421] = {.lex_state = 150}, [10422] = {.lex_state = 0}, [10423] = {.lex_state = 0}, [10424] = {.lex_state = 0}, @@ -36781,53 +37158,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [10428] = {.lex_state = 0}, [10429] = {.lex_state = 0}, [10430] = {.lex_state = 0}, - [10431] = {.lex_state = 438}, + [10431] = {.lex_state = 0}, [10432] = {.lex_state = 0}, - [10433] = {.lex_state = 0}, - [10434] = {.lex_state = 0}, + [10433] = {.lex_state = 438}, + [10434] = {.lex_state = 438}, [10435] = {.lex_state = 0}, [10436] = {.lex_state = 0}, - [10437] = {.lex_state = 0}, - [10438] = {.lex_state = 0}, - [10439] = {.lex_state = 438, .external_lex_state = 2}, - [10440] = {.lex_state = 0}, - [10441] = {.lex_state = 0}, + [10437] = {.lex_state = 438}, + [10438] = {.lex_state = 438}, + [10439] = {.lex_state = 438}, + [10440] = {.lex_state = 150}, + [10441] = {.lex_state = 235}, [10442] = {.lex_state = 0}, - [10443] = {.lex_state = 438, .external_lex_state = 2}, + [10443] = {.lex_state = 0}, [10444] = {.lex_state = 0}, [10445] = {.lex_state = 0}, - [10446] = {.lex_state = 438}, + [10446] = {.lex_state = 0}, [10447] = {.lex_state = 438}, - [10448] = {.lex_state = 438, .external_lex_state = 2}, + [10448] = {.lex_state = 0}, [10449] = {.lex_state = 0}, [10450] = {.lex_state = 438}, [10451] = {.lex_state = 0}, - [10452] = {.lex_state = 438, .external_lex_state = 2}, + [10452] = {.lex_state = 0}, [10453] = {.lex_state = 0}, - [10454] = {.lex_state = 438, .external_lex_state = 2}, + [10454] = {.lex_state = 0}, [10455] = {.lex_state = 0}, [10456] = {.lex_state = 0}, - [10457] = {.lex_state = 438, .external_lex_state = 2}, - [10458] = {.lex_state = 148}, - [10459] = {.lex_state = 438, .external_lex_state = 2}, - [10460] = {.lex_state = 438, .external_lex_state = 2}, - [10461] = {.lex_state = 438, .external_lex_state = 2}, - [10462] = {.lex_state = 438, .external_lex_state = 2}, + [10457] = {.lex_state = 0}, + [10458] = {.lex_state = 0}, + [10459] = {.lex_state = 266}, + [10460] = {.lex_state = 0}, + [10461] = {.lex_state = 0}, + [10462] = {.lex_state = 438}, [10463] = {.lex_state = 0}, - [10464] = {.lex_state = 438, .external_lex_state = 2}, - [10465] = {.lex_state = 438, .external_lex_state = 2}, - [10466] = {.lex_state = 438, .external_lex_state = 2}, - [10467] = {.lex_state = 438, .external_lex_state = 2}, - [10468] = {.lex_state = 438, .external_lex_state = 2}, - [10469] = {.lex_state = 438, .external_lex_state = 2}, - [10470] = {.lex_state = 438, .external_lex_state = 2}, - [10471] = {.lex_state = 438, .external_lex_state = 2}, - [10472] = {.lex_state = 0}, - [10473] = {.lex_state = 438}, - [10474] = {.lex_state = 438}, - [10475] = {.lex_state = 438}, + [10464] = {.lex_state = 438}, + [10465] = {.lex_state = 0}, + [10466] = {.lex_state = 0}, + [10467] = {.lex_state = 0}, + [10468] = {.lex_state = 0}, + [10469] = {.lex_state = 0}, + [10470] = {.lex_state = 0}, + [10471] = {.lex_state = 438}, + [10472] = {.lex_state = 266}, + [10473] = {.lex_state = 0}, + [10474] = {.lex_state = 150}, + [10475] = {.lex_state = 0}, [10476] = {.lex_state = 0}, - [10477] = {.lex_state = 0}, + [10477] = {.lex_state = 150}, [10478] = {.lex_state = 0}, [10479] = {.lex_state = 438}, [10480] = {.lex_state = 0}, @@ -36835,1072 +37212,1255 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [10482] = {.lex_state = 0}, [10483] = {.lex_state = 0}, [10484] = {.lex_state = 0}, - [10485] = {.lex_state = 0, .external_lex_state = 2}, - [10486] = {.lex_state = 0}, - [10487] = {.lex_state = 0}, - [10488] = {.lex_state = 0}, - [10489] = {.lex_state = 235}, - [10490] = {.lex_state = 149}, + [10485] = {.lex_state = 0}, + [10486] = {.lex_state = 438}, + [10487] = {.lex_state = 438}, + [10488] = {.lex_state = 438}, + [10489] = {.lex_state = 438}, + [10490] = {.lex_state = 0}, [10491] = {.lex_state = 0}, [10492] = {.lex_state = 0}, - [10493] = {.lex_state = 0}, - [10494] = {.lex_state = 149}, - [10495] = {.lex_state = 267}, + [10493] = {.lex_state = 438}, + [10494] = {.lex_state = 0}, + [10495] = {.lex_state = 0}, [10496] = {.lex_state = 0}, - [10497] = {.lex_state = 267}, + [10497] = {.lex_state = 266}, [10498] = {.lex_state = 0}, - [10499] = {.lex_state = 267}, - [10500] = {.lex_state = 0}, - [10501] = {.lex_state = 0}, + [10499] = {.lex_state = 0}, + [10500] = {.lex_state = 438}, + [10501] = {.lex_state = 438}, [10502] = {.lex_state = 0}, [10503] = {.lex_state = 0}, [10504] = {.lex_state = 0}, [10505] = {.lex_state = 0}, - [10506] = {.lex_state = 0, .external_lex_state = 2}, + [10506] = {.lex_state = 0}, [10507] = {.lex_state = 0}, - [10508] = {.lex_state = 267}, - [10509] = {.lex_state = 0}, + [10508] = {.lex_state = 0}, + [10509] = {.lex_state = 438}, [10510] = {.lex_state = 0}, - [10511] = {.lex_state = 237}, - [10512] = {.lex_state = 0, .external_lex_state = 3}, - [10513] = {.lex_state = 0}, + [10511] = {.lex_state = 266}, + [10512] = {.lex_state = 0}, + [10513] = {.lex_state = 235}, [10514] = {.lex_state = 0}, [10515] = {.lex_state = 0}, [10516] = {.lex_state = 0}, - [10517] = {.lex_state = 438}, + [10517] = {.lex_state = 0}, [10518] = {.lex_state = 0}, - [10519] = {.lex_state = 0}, + [10519] = {.lex_state = 150}, [10520] = {.lex_state = 0}, - [10521] = {.lex_state = 149}, + [10521] = {.lex_state = 438, .external_lex_state = 2}, [10522] = {.lex_state = 0}, [10523] = {.lex_state = 0}, - [10524] = {.lex_state = 438}, - [10525] = {.lex_state = 267}, - [10526] = {.lex_state = 0}, - [10527] = {.lex_state = 267}, + [10524] = {.lex_state = 0}, + [10525] = {.lex_state = 0}, + [10526] = {.lex_state = 438}, + [10527] = {.lex_state = 438, .external_lex_state = 2}, [10528] = {.lex_state = 0}, - [10529] = {.lex_state = 267}, - [10530] = {.lex_state = 0}, + [10529] = {.lex_state = 150}, + [10530] = {.lex_state = 438}, [10531] = {.lex_state = 0}, - [10532] = {.lex_state = 237}, + [10532] = {.lex_state = 438}, [10533] = {.lex_state = 0}, - [10534] = {.lex_state = 286}, + [10534] = {.lex_state = 0}, [10535] = {.lex_state = 0}, - [10536] = {.lex_state = 267}, + [10536] = {.lex_state = 438}, [10537] = {.lex_state = 0}, - [10538] = {.lex_state = 0}, + [10538] = {.lex_state = 438}, [10539] = {.lex_state = 0}, - [10540] = {.lex_state = 0}, + [10540] = {.lex_state = 438}, [10541] = {.lex_state = 0}, [10542] = {.lex_state = 0}, [10543] = {.lex_state = 0}, [10544] = {.lex_state = 0}, - [10545] = {.lex_state = 267}, - [10546] = {.lex_state = 267}, + [10545] = {.lex_state = 0}, + [10546] = {.lex_state = 0}, [10547] = {.lex_state = 0}, - [10548] = {.lex_state = 267}, + [10548] = {.lex_state = 438}, [10549] = {.lex_state = 0}, [10550] = {.lex_state = 0}, - [10551] = {.lex_state = 149}, - [10552] = {.lex_state = 0}, + [10551] = {.lex_state = 0}, + [10552] = {.lex_state = 438}, [10553] = {.lex_state = 0}, - [10554] = {.lex_state = 0}, + [10554] = {.lex_state = 438}, [10555] = {.lex_state = 0}, - [10556] = {.lex_state = 267}, - [10557] = {.lex_state = 0}, - [10558] = {.lex_state = 0}, - [10559] = {.lex_state = 267}, + [10556] = {.lex_state = 0}, + [10557] = {.lex_state = 150}, + [10558] = {.lex_state = 266}, + [10559] = {.lex_state = 150}, [10560] = {.lex_state = 0}, - [10561] = {.lex_state = 0}, - [10562] = {.lex_state = 267}, - [10563] = {.lex_state = 438}, + [10561] = {.lex_state = 150}, + [10562] = {.lex_state = 0}, + [10563] = {.lex_state = 0}, [10564] = {.lex_state = 0}, - [10565] = {.lex_state = 0}, + [10565] = {.lex_state = 150}, [10566] = {.lex_state = 0}, [10567] = {.lex_state = 0}, [10568] = {.lex_state = 0}, - [10569] = {.lex_state = 267}, + [10569] = {.lex_state = 0}, [10570] = {.lex_state = 0}, [10571] = {.lex_state = 0}, - [10572] = {.lex_state = 237}, - [10573] = {.lex_state = 267}, - [10574] = {.lex_state = 149}, + [10572] = {.lex_state = 0}, + [10573] = {.lex_state = 0}, + [10574] = {.lex_state = 0}, [10575] = {.lex_state = 0}, - [10576] = {.lex_state = 267}, - [10577] = {.lex_state = 0}, + [10576] = {.lex_state = 0}, + [10577] = {.lex_state = 438, .external_lex_state = 2}, [10578] = {.lex_state = 0}, [10579] = {.lex_state = 0}, [10580] = {.lex_state = 0}, [10581] = {.lex_state = 0}, [10582] = {.lex_state = 0}, [10583] = {.lex_state = 0}, - [10584] = {.lex_state = 0}, + [10584] = {.lex_state = 438, .external_lex_state = 2}, [10585] = {.lex_state = 0}, [10586] = {.lex_state = 0}, [10587] = {.lex_state = 0}, - [10588] = {.lex_state = 0}, - [10589] = {.lex_state = 438}, - [10590] = {.lex_state = 438}, + [10588] = {.lex_state = 438}, + [10589] = {.lex_state = 438, .external_lex_state = 2}, + [10590] = {.lex_state = 0}, [10591] = {.lex_state = 0}, [10592] = {.lex_state = 0}, - [10593] = {.lex_state = 438}, + [10593] = {.lex_state = 438, .external_lex_state = 2}, [10594] = {.lex_state = 0}, [10595] = {.lex_state = 0}, - [10596] = {.lex_state = 267}, - [10597] = {.lex_state = 0}, - [10598] = {.lex_state = 149}, + [10596] = {.lex_state = 438, .external_lex_state = 2}, + [10597] = {.lex_state = 438}, + [10598] = {.lex_state = 438, .external_lex_state = 2}, [10599] = {.lex_state = 0}, [10600] = {.lex_state = 0}, - [10601] = {.lex_state = 0}, - [10602] = {.lex_state = 267}, - [10603] = {.lex_state = 0}, - [10604] = {.lex_state = 267}, - [10605] = {.lex_state = 0}, - [10606] = {.lex_state = 0}, - [10607] = {.lex_state = 0}, - [10608] = {.lex_state = 267}, - [10609] = {.lex_state = 0}, - [10610] = {.lex_state = 237}, - [10611] = {.lex_state = 237}, - [10612] = {.lex_state = 237}, - [10613] = {.lex_state = 0}, - [10614] = {.lex_state = 235}, - [10615] = {.lex_state = 267}, - [10616] = {.lex_state = 149}, + [10601] = {.lex_state = 438, .external_lex_state = 2}, + [10602] = {.lex_state = 438, .external_lex_state = 2}, + [10603] = {.lex_state = 438, .external_lex_state = 2}, + [10604] = {.lex_state = 438, .external_lex_state = 2}, + [10605] = {.lex_state = 438, .external_lex_state = 2}, + [10606] = {.lex_state = 438, .external_lex_state = 2}, + [10607] = {.lex_state = 438, .external_lex_state = 2}, + [10608] = {.lex_state = 438, .external_lex_state = 2}, + [10609] = {.lex_state = 438, .external_lex_state = 2}, + [10610] = {.lex_state = 438, .external_lex_state = 2}, + [10611] = {.lex_state = 438, .external_lex_state = 2}, + [10612] = {.lex_state = 438, .external_lex_state = 2}, + [10613] = {.lex_state = 438, .external_lex_state = 2}, + [10614] = {.lex_state = 0}, + [10615] = {.lex_state = 0}, + [10616] = {.lex_state = 438}, [10617] = {.lex_state = 0}, - [10618] = {.lex_state = 0}, + [10618] = {.lex_state = 438}, [10619] = {.lex_state = 0}, [10620] = {.lex_state = 0}, [10621] = {.lex_state = 0}, - [10622] = {.lex_state = 0}, - [10623] = {.lex_state = 267}, + [10622] = {.lex_state = 438}, + [10623] = {.lex_state = 0}, [10624] = {.lex_state = 0}, - [10625] = {.lex_state = 0}, - [10626] = {.lex_state = 267}, + [10625] = {.lex_state = 438}, + [10626] = {.lex_state = 438}, [10627] = {.lex_state = 0}, - [10628] = {.lex_state = 149}, + [10628] = {.lex_state = 438}, [10629] = {.lex_state = 0}, - [10630] = {.lex_state = 0, .external_lex_state = 2}, + [10630] = {.lex_state = 237}, [10631] = {.lex_state = 0}, - [10632] = {.lex_state = 267}, - [10633] = {.lex_state = 0}, - [10634] = {.lex_state = 0}, + [10632] = {.lex_state = 0}, + [10633] = {.lex_state = 438}, + [10634] = {.lex_state = 151}, [10635] = {.lex_state = 0}, - [10636] = {.lex_state = 438}, + [10636] = {.lex_state = 0}, [10637] = {.lex_state = 0}, - [10638] = {.lex_state = 0}, - [10639] = {.lex_state = 267}, - [10640] = {.lex_state = 267}, + [10638] = {.lex_state = 266}, + [10639] = {.lex_state = 151}, + [10640] = {.lex_state = 0}, [10641] = {.lex_state = 0}, [10642] = {.lex_state = 0}, [10643] = {.lex_state = 0}, - [10644] = {.lex_state = 267}, - [10645] = {.lex_state = 0}, + [10644] = {.lex_state = 0}, + [10645] = {.lex_state = 266}, [10646] = {.lex_state = 0}, - [10647] = {.lex_state = 267}, - [10648] = {.lex_state = 0}, - [10649] = {.lex_state = 0}, - [10650] = {.lex_state = 267}, + [10647] = {.lex_state = 0}, + [10648] = {.lex_state = 266}, + [10649] = {.lex_state = 151}, + [10650] = {.lex_state = 0}, [10651] = {.lex_state = 0}, - [10652] = {.lex_state = 0}, + [10652] = {.lex_state = 237}, [10653] = {.lex_state = 0}, - [10654] = {.lex_state = 267}, - [10655] = {.lex_state = 0}, - [10656] = {.lex_state = 438}, + [10654] = {.lex_state = 0}, + [10655] = {.lex_state = 266}, + [10656] = {.lex_state = 0}, [10657] = {.lex_state = 0}, - [10658] = {.lex_state = 0}, + [10658] = {.lex_state = 266}, [10659] = {.lex_state = 0}, - [10660] = {.lex_state = 0}, + [10660] = {.lex_state = 266}, [10661] = {.lex_state = 0}, [10662] = {.lex_state = 0}, [10663] = {.lex_state = 0}, [10664] = {.lex_state = 0}, - [10665] = {.lex_state = 267}, + [10665] = {.lex_state = 0}, [10666] = {.lex_state = 0}, - [10667] = {.lex_state = 0}, - [10668] = {.lex_state = 237}, - [10669] = {.lex_state = 438}, - [10670] = {.lex_state = 0}, + [10667] = {.lex_state = 151}, + [10668] = {.lex_state = 0}, + [10669] = {.lex_state = 0}, + [10670] = {.lex_state = 438}, [10671] = {.lex_state = 0}, [10672] = {.lex_state = 0}, [10673] = {.lex_state = 0}, - [10674] = {.lex_state = 438}, - [10675] = {.lex_state = 0}, + [10674] = {.lex_state = 0}, + [10675] = {.lex_state = 266}, [10676] = {.lex_state = 0}, - [10677] = {.lex_state = 0}, - [10678] = {.lex_state = 0}, + [10677] = {.lex_state = 438}, + [10678] = {.lex_state = 151}, [10679] = {.lex_state = 0}, - [10680] = {.lex_state = 267}, + [10680] = {.lex_state = 0}, [10681] = {.lex_state = 0}, [10682] = {.lex_state = 0}, - [10683] = {.lex_state = 267}, - [10684] = {.lex_state = 0}, - [10685] = {.lex_state = 267}, + [10683] = {.lex_state = 237}, + [10684] = {.lex_state = 438}, + [10685] = {.lex_state = 0}, [10686] = {.lex_state = 0, .external_lex_state = 2}, - [10687] = {.lex_state = 267}, + [10687] = {.lex_state = 438}, [10688] = {.lex_state = 0}, [10689] = {.lex_state = 0}, - [10690] = {.lex_state = 0}, + [10690] = {.lex_state = 438}, [10691] = {.lex_state = 237}, - [10692] = {.lex_state = 0}, + [10692] = {.lex_state = 266}, [10693] = {.lex_state = 0}, - [10694] = {.lex_state = 0}, - [10695] = {.lex_state = 438}, + [10694] = {.lex_state = 266}, + [10695] = {.lex_state = 0}, [10696] = {.lex_state = 0}, [10697] = {.lex_state = 0}, - [10698] = {.lex_state = 0}, + [10698] = {.lex_state = 237}, [10699] = {.lex_state = 0}, [10700] = {.lex_state = 0}, [10701] = {.lex_state = 0}, - [10702] = {.lex_state = 0, .external_lex_state = 3}, - [10703] = {.lex_state = 267}, + [10702] = {.lex_state = 237}, + [10703] = {.lex_state = 266}, [10704] = {.lex_state = 0}, - [10705] = {.lex_state = 0}, - [10706] = {.lex_state = 267}, + [10705] = {.lex_state = 237}, + [10706] = {.lex_state = 0}, [10707] = {.lex_state = 0}, [10708] = {.lex_state = 0}, - [10709] = {.lex_state = 0, .external_lex_state = 2}, + [10709] = {.lex_state = 0}, [10710] = {.lex_state = 237}, - [10711] = {.lex_state = 267}, + [10711] = {.lex_state = 0}, [10712] = {.lex_state = 0}, - [10713] = {.lex_state = 267}, - [10714] = {.lex_state = 237}, - [10715] = {.lex_state = 267}, + [10713] = {.lex_state = 0}, + [10714] = {.lex_state = 0}, + [10715] = {.lex_state = 151}, [10716] = {.lex_state = 0}, - [10717] = {.lex_state = 267}, + [10717] = {.lex_state = 0}, [10718] = {.lex_state = 0}, - [10719] = {.lex_state = 438}, + [10719] = {.lex_state = 0}, [10720] = {.lex_state = 0}, [10721] = {.lex_state = 0}, - [10722] = {.lex_state = 0}, + [10722] = {.lex_state = 237}, [10723] = {.lex_state = 0}, - [10724] = {.lex_state = 0}, - [10725] = {.lex_state = 267}, - [10726] = {.lex_state = 0}, - [10727] = {.lex_state = 267}, + [10724] = {.lex_state = 266}, + [10725] = {.lex_state = 266}, + [10726] = {.lex_state = 266}, + [10727] = {.lex_state = 0}, [10728] = {.lex_state = 0}, - [10729] = {.lex_state = 0}, - [10730] = {.lex_state = 267}, - [10731] = {.lex_state = 267}, - [10732] = {.lex_state = 235}, + [10729] = {.lex_state = 438}, + [10730] = {.lex_state = 0}, + [10731] = {.lex_state = 0}, + [10732] = {.lex_state = 0}, [10733] = {.lex_state = 0}, - [10734] = {.lex_state = 267}, - [10735] = {.lex_state = 438}, + [10734] = {.lex_state = 266}, + [10735] = {.lex_state = 266}, [10736] = {.lex_state = 0}, [10737] = {.lex_state = 0}, - [10738] = {.lex_state = 0}, - [10739] = {.lex_state = 0}, - [10740] = {.lex_state = 0}, - [10741] = {.lex_state = 0}, - [10742] = {.lex_state = 267}, - [10743] = {.lex_state = 237}, - [10744] = {.lex_state = 267}, + [10738] = {.lex_state = 266}, + [10739] = {.lex_state = 438}, + [10740] = {.lex_state = 151}, + [10741] = {.lex_state = 237}, + [10742] = {.lex_state = 0}, + [10743] = {.lex_state = 438}, + [10744] = {.lex_state = 237}, [10745] = {.lex_state = 0}, [10746] = {.lex_state = 0}, [10747] = {.lex_state = 0}, - [10748] = {.lex_state = 0}, - [10749] = {.lex_state = 0}, - [10750] = {.lex_state = 267}, - [10751] = {.lex_state = 0}, + [10748] = {.lex_state = 237}, + [10749] = {.lex_state = 237}, + [10750] = {.lex_state = 237}, + [10751] = {.lex_state = 266}, [10752] = {.lex_state = 0}, - [10753] = {.lex_state = 438}, - [10754] = {.lex_state = 0}, - [10755] = {.lex_state = 0}, - [10756] = {.lex_state = 0}, - [10757] = {.lex_state = 0}, - [10758] = {.lex_state = 0}, + [10753] = {.lex_state = 266}, + [10754] = {.lex_state = 266}, + [10755] = {.lex_state = 266}, + [10756] = {.lex_state = 237}, + [10757] = {.lex_state = 266}, + [10758] = {.lex_state = 266}, [10759] = {.lex_state = 0}, - [10760] = {.lex_state = 267}, + [10760] = {.lex_state = 151}, [10761] = {.lex_state = 0}, - [10762] = {.lex_state = 149}, - [10763] = {.lex_state = 149}, - [10764] = {.lex_state = 0}, + [10762] = {.lex_state = 0}, + [10763] = {.lex_state = 0}, + [10764] = {.lex_state = 237}, [10765] = {.lex_state = 0}, - [10766] = {.lex_state = 0, .external_lex_state = 2}, + [10766] = {.lex_state = 0}, [10767] = {.lex_state = 0}, - [10768] = {.lex_state = 267}, + [10768] = {.lex_state = 0}, [10769] = {.lex_state = 0}, - [10770] = {.lex_state = 0}, + [10770] = {.lex_state = 438}, [10771] = {.lex_state = 0}, [10772] = {.lex_state = 0}, - [10773] = {.lex_state = 149}, - [10774] = {.lex_state = 235}, + [10773] = {.lex_state = 151}, + [10774] = {.lex_state = 0}, [10775] = {.lex_state = 0}, - [10776] = {.lex_state = 438}, + [10776] = {.lex_state = 0}, [10777] = {.lex_state = 0}, - [10778] = {.lex_state = 0}, - [10779] = {.lex_state = 0}, - [10780] = {.lex_state = 237}, - [10781] = {.lex_state = 438}, + [10778] = {.lex_state = 151}, + [10779] = {.lex_state = 266}, + [10780] = {.lex_state = 0}, + [10781] = {.lex_state = 0}, [10782] = {.lex_state = 0}, - [10783] = {.lex_state = 0}, - [10784] = {.lex_state = 0}, - [10785] = {.lex_state = 0}, - [10786] = {.lex_state = 149}, + [10783] = {.lex_state = 266}, + [10784] = {.lex_state = 237}, + [10785] = {.lex_state = 266}, + [10786] = {.lex_state = 0}, [10787] = {.lex_state = 0}, [10788] = {.lex_state = 0}, [10789] = {.lex_state = 0}, [10790] = {.lex_state = 0}, - [10791] = {.lex_state = 0}, - [10792] = {.lex_state = 438}, - [10793] = {.lex_state = 267}, + [10791] = {.lex_state = 266}, + [10792] = {.lex_state = 0}, + [10793] = {.lex_state = 0}, [10794] = {.lex_state = 0}, [10795] = {.lex_state = 0}, - [10796] = {.lex_state = 0}, - [10797] = {.lex_state = 267}, - [10798] = {.lex_state = 237}, - [10799] = {.lex_state = 267}, + [10796] = {.lex_state = 237}, + [10797] = {.lex_state = 0}, + [10798] = {.lex_state = 0}, + [10799] = {.lex_state = 0}, [10800] = {.lex_state = 0}, - [10801] = {.lex_state = 0}, + [10801] = {.lex_state = 266}, [10802] = {.lex_state = 0}, - [10803] = {.lex_state = 0}, - [10804] = {.lex_state = 0}, + [10803] = {.lex_state = 151}, + [10804] = {.lex_state = 266}, [10805] = {.lex_state = 0}, - [10806] = {.lex_state = 149}, + [10806] = {.lex_state = 0}, [10807] = {.lex_state = 0}, - [10808] = {.lex_state = 0}, - [10809] = {.lex_state = 237}, + [10808] = {.lex_state = 266}, + [10809] = {.lex_state = 266}, [10810] = {.lex_state = 0}, - [10811] = {.lex_state = 0}, - [10812] = {.lex_state = 237}, + [10811] = {.lex_state = 0, .external_lex_state = 2}, + [10812] = {.lex_state = 0}, [10813] = {.lex_state = 0}, - [10814] = {.lex_state = 267}, - [10815] = {.lex_state = 237}, - [10816] = {.lex_state = 267}, + [10814] = {.lex_state = 0}, + [10815] = {.lex_state = 0}, + [10816] = {.lex_state = 0}, [10817] = {.lex_state = 237}, - [10818] = {.lex_state = 0}, + [10818] = {.lex_state = 266}, [10819] = {.lex_state = 0}, - [10820] = {.lex_state = 0, .external_lex_state = 2}, - [10821] = {.lex_state = 0}, + [10820] = {.lex_state = 266}, + [10821] = {.lex_state = 237}, [10822] = {.lex_state = 0}, [10823] = {.lex_state = 0}, [10824] = {.lex_state = 0}, - [10825] = {.lex_state = 0}, - [10826] = {.lex_state = 0}, - [10827] = {.lex_state = 438}, + [10825] = {.lex_state = 266}, + [10826] = {.lex_state = 266}, + [10827] = {.lex_state = 0}, [10828] = {.lex_state = 0}, [10829] = {.lex_state = 0}, - [10830] = {.lex_state = 267}, - [10831] = {.lex_state = 0}, - [10832] = {.lex_state = 267}, - [10833] = {.lex_state = 267}, - [10834] = {.lex_state = 0}, + [10830] = {.lex_state = 0}, + [10831] = {.lex_state = 266}, + [10832] = {.lex_state = 0}, + [10833] = {.lex_state = 0}, + [10834] = {.lex_state = 237}, [10835] = {.lex_state = 0}, [10836] = {.lex_state = 0}, [10837] = {.lex_state = 438}, [10838] = {.lex_state = 0}, - [10839] = {.lex_state = 438}, - [10840] = {.lex_state = 267}, + [10839] = {.lex_state = 266}, + [10840] = {.lex_state = 0}, [10841] = {.lex_state = 0}, - [10842] = {.lex_state = 267}, + [10842] = {.lex_state = 0}, [10843] = {.lex_state = 237}, [10844] = {.lex_state = 0}, - [10845] = {.lex_state = 0}, + [10845] = {.lex_state = 266}, [10846] = {.lex_state = 0}, [10847] = {.lex_state = 0}, - [10848] = {.lex_state = 267}, - [10849] = {.lex_state = 149}, - [10850] = {.lex_state = 0, .external_lex_state = 2}, - [10851] = {.lex_state = 0}, - [10852] = {.lex_state = 0}, + [10848] = {.lex_state = 0}, + [10849] = {.lex_state = 0}, + [10850] = {.lex_state = 237}, + [10851] = {.lex_state = 237}, + [10852] = {.lex_state = 237}, [10853] = {.lex_state = 0}, [10854] = {.lex_state = 0}, - [10855] = {.lex_state = 0}, + [10855] = {.lex_state = 438}, [10856] = {.lex_state = 0}, [10857] = {.lex_state = 0}, - [10858] = {.lex_state = 0}, - [10859] = {.lex_state = 0}, - [10860] = {.lex_state = 149}, - [10861] = {.lex_state = 438}, + [10858] = {.lex_state = 237}, + [10859] = {.lex_state = 237}, + [10860] = {.lex_state = 266}, + [10861] = {.lex_state = 0}, [10862] = {.lex_state = 0}, - [10863] = {.lex_state = 237}, - [10864] = {.lex_state = 237}, - [10865] = {.lex_state = 267}, - [10866] = {.lex_state = 0}, + [10863] = {.lex_state = 0}, + [10864] = {.lex_state = 266}, + [10865] = {.lex_state = 266}, + [10866] = {.lex_state = 266}, [10867] = {.lex_state = 0}, - [10868] = {.lex_state = 267}, - [10869] = {.lex_state = 237}, - [10870] = {.lex_state = 0, .external_lex_state = 2}, + [10868] = {.lex_state = 237}, + [10869] = {.lex_state = 151}, + [10870] = {.lex_state = 0}, [10871] = {.lex_state = 0}, - [10872] = {.lex_state = 0}, + [10872] = {.lex_state = 266}, [10873] = {.lex_state = 0}, - [10874] = {.lex_state = 235}, + [10874] = {.lex_state = 237}, [10875] = {.lex_state = 0}, - [10876] = {.lex_state = 149}, - [10877] = {.lex_state = 267}, + [10876] = {.lex_state = 0}, + [10877] = {.lex_state = 0}, [10878] = {.lex_state = 0}, - [10879] = {.lex_state = 0}, - [10880] = {.lex_state = 267}, - [10881] = {.lex_state = 0, .external_lex_state = 2}, - [10882] = {.lex_state = 267}, + [10879] = {.lex_state = 237}, + [10880] = {.lex_state = 237}, + [10881] = {.lex_state = 151}, + [10882] = {.lex_state = 0}, [10883] = {.lex_state = 0}, - [10884] = {.lex_state = 438}, - [10885] = {.lex_state = 0}, + [10884] = {.lex_state = 266}, + [10885] = {.lex_state = 266}, [10886] = {.lex_state = 0}, [10887] = {.lex_state = 0}, - [10888] = {.lex_state = 267}, + [10888] = {.lex_state = 237}, [10889] = {.lex_state = 0}, [10890] = {.lex_state = 0, .external_lex_state = 2}, [10891] = {.lex_state = 0}, - [10892] = {.lex_state = 0}, - [10893] = {.lex_state = 0}, - [10894] = {.lex_state = 0}, - [10895] = {.lex_state = 267}, - [10896] = {.lex_state = 0}, - [10897] = {.lex_state = 0, .external_lex_state = 2}, - [10898] = {.lex_state = 438}, - [10899] = {.lex_state = 0}, + [10892] = {.lex_state = 266}, + [10893] = {.lex_state = 438}, + [10894] = {.lex_state = 438}, + [10895] = {.lex_state = 151}, + [10896] = {.lex_state = 438}, + [10897] = {.lex_state = 0}, + [10898] = {.lex_state = 266}, + [10899] = {.lex_state = 151}, [10900] = {.lex_state = 438}, - [10901] = {.lex_state = 0}, - [10902] = {.lex_state = 0}, - [10903] = {.lex_state = 0}, - [10904] = {.lex_state = 0, .external_lex_state = 2}, - [10905] = {.lex_state = 438}, - [10906] = {.lex_state = 0}, - [10907] = {.lex_state = 0}, - [10908] = {.lex_state = 237}, - [10909] = {.lex_state = 0}, - [10910] = {.lex_state = 0, .external_lex_state = 2}, + [10901] = {.lex_state = 151}, + [10902] = {.lex_state = 151}, + [10903] = {.lex_state = 438}, + [10904] = {.lex_state = 0}, + [10905] = {.lex_state = 0}, + [10906] = {.lex_state = 151}, + [10907] = {.lex_state = 151}, + [10908] = {.lex_state = 0}, + [10909] = {.lex_state = 266}, + [10910] = {.lex_state = 0}, [10911] = {.lex_state = 0}, - [10912] = {.lex_state = 149}, - [10913] = {.lex_state = 0}, - [10914] = {.lex_state = 0}, - [10915] = {.lex_state = 0, .external_lex_state = 2}, - [10916] = {.lex_state = 0}, - [10917] = {.lex_state = 149}, + [10912] = {.lex_state = 0}, + [10913] = {.lex_state = 235}, + [10914] = {.lex_state = 266}, + [10915] = {.lex_state = 0}, + [10916] = {.lex_state = 438}, + [10917] = {.lex_state = 0}, [10918] = {.lex_state = 0}, - [10919] = {.lex_state = 0, .external_lex_state = 2}, + [10919] = {.lex_state = 0}, [10920] = {.lex_state = 0}, [10921] = {.lex_state = 0}, [10922] = {.lex_state = 0}, - [10923] = {.lex_state = 0, .external_lex_state = 2}, + [10923] = {.lex_state = 266}, [10924] = {.lex_state = 0}, - [10925] = {.lex_state = 0}, + [10925] = {.lex_state = 266}, [10926] = {.lex_state = 0}, - [10927] = {.lex_state = 0, .external_lex_state = 2}, - [10928] = {.lex_state = 267}, - [10929] = {.lex_state = 267}, + [10927] = {.lex_state = 0}, + [10928] = {.lex_state = 0}, + [10929] = {.lex_state = 0}, [10930] = {.lex_state = 0}, - [10931] = {.lex_state = 0, .external_lex_state = 2}, - [10932] = {.lex_state = 0}, + [10931] = {.lex_state = 266}, + [10932] = {.lex_state = 0, .external_lex_state = 2}, [10933] = {.lex_state = 0}, [10934] = {.lex_state = 0}, - [10935] = {.lex_state = 0, .external_lex_state = 2}, - [10936] = {.lex_state = 0}, - [10937] = {.lex_state = 0}, - [10938] = {.lex_state = 0, .external_lex_state = 2}, - [10939] = {.lex_state = 237}, - [10940] = {.lex_state = 237}, - [10941] = {.lex_state = 0}, - [10942] = {.lex_state = 0}, - [10943] = {.lex_state = 149}, - [10944] = {.lex_state = 438}, + [10935] = {.lex_state = 0}, + [10936] = {.lex_state = 266}, + [10937] = {.lex_state = 285}, + [10938] = {.lex_state = 237}, + [10939] = {.lex_state = 0}, + [10940] = {.lex_state = 0}, + [10941] = {.lex_state = 266}, + [10942] = {.lex_state = 237}, + [10943] = {.lex_state = 0}, + [10944] = {.lex_state = 0}, [10945] = {.lex_state = 0}, - [10946] = {.lex_state = 438}, - [10947] = {.lex_state = 438}, - [10948] = {.lex_state = 438}, - [10949] = {.lex_state = 438}, - [10950] = {.lex_state = 267}, - [10951] = {.lex_state = 438}, - [10952] = {.lex_state = 0}, + [10946] = {.lex_state = 0}, + [10947] = {.lex_state = 0, .external_lex_state = 2}, + [10948] = {.lex_state = 0}, + [10949] = {.lex_state = 266}, + [10950] = {.lex_state = 0}, + [10951] = {.lex_state = 0}, + [10952] = {.lex_state = 266}, [10953] = {.lex_state = 0}, - [10954] = {.lex_state = 237}, - [10955] = {.lex_state = 237}, + [10954] = {.lex_state = 0}, + [10955] = {.lex_state = 0}, [10956] = {.lex_state = 0}, - [10957] = {.lex_state = 0}, + [10957] = {.lex_state = 438}, [10958] = {.lex_state = 0}, - [10959] = {.lex_state = 267}, + [10959] = {.lex_state = 0}, [10960] = {.lex_state = 0}, - [10961] = {.lex_state = 438}, + [10961] = {.lex_state = 0}, [10962] = {.lex_state = 0}, - [10963] = {.lex_state = 0}, - [10964] = {.lex_state = 438}, - [10965] = {.lex_state = 438}, + [10963] = {.lex_state = 438}, + [10964] = {.lex_state = 266}, + [10965] = {.lex_state = 0}, [10966] = {.lex_state = 0}, - [10967] = {.lex_state = 0}, - [10968] = {.lex_state = 0}, - [10969] = {.lex_state = 438}, - [10970] = {.lex_state = 0, .external_lex_state = 3}, - [10971] = {.lex_state = 149}, - [10972] = {.lex_state = 267}, - [10973] = {.lex_state = 0}, - [10974] = {.lex_state = 438}, - [10975] = {.lex_state = 267}, + [10967] = {.lex_state = 237}, + [10968] = {.lex_state = 266}, + [10969] = {.lex_state = 266}, + [10970] = {.lex_state = 0}, + [10971] = {.lex_state = 237}, + [10972] = {.lex_state = 266}, + [10973] = {.lex_state = 438}, + [10974] = {.lex_state = 0}, + [10975] = {.lex_state = 0}, [10976] = {.lex_state = 0}, - [10977] = {.lex_state = 0}, - [10978] = {.lex_state = 0}, + [10977] = {.lex_state = 151}, + [10978] = {.lex_state = 266}, [10979] = {.lex_state = 0}, - [10980] = {.lex_state = 0}, - [10981] = {.lex_state = 0}, - [10982] = {.lex_state = 267}, - [10983] = {.lex_state = 267}, + [10980] = {.lex_state = 266}, + [10981] = {.lex_state = 438}, + [10982] = {.lex_state = 266}, + [10983] = {.lex_state = 0}, [10984] = {.lex_state = 0}, - [10985] = {.lex_state = 0}, - [10986] = {.lex_state = 267}, + [10985] = {.lex_state = 266}, + [10986] = {.lex_state = 0}, [10987] = {.lex_state = 0}, [10988] = {.lex_state = 0}, - [10989] = {.lex_state = 237}, - [10990] = {.lex_state = 237}, - [10991] = {.lex_state = 0}, + [10989] = {.lex_state = 0}, + [10990] = {.lex_state = 0}, + [10991] = {.lex_state = 438}, [10992] = {.lex_state = 0}, - [10993] = {.lex_state = 438}, + [10993] = {.lex_state = 0}, [10994] = {.lex_state = 0}, - [10995] = {.lex_state = 0}, - [10996] = {.lex_state = 438}, - [10997] = {.lex_state = 438}, - [10998] = {.lex_state = 0}, + [10995] = {.lex_state = 266}, + [10996] = {.lex_state = 0}, + [10997] = {.lex_state = 0}, + [10998] = {.lex_state = 237}, [10999] = {.lex_state = 0}, [11000] = {.lex_state = 0}, - [11001] = {.lex_state = 267}, - [11002] = {.lex_state = 438}, + [11001] = {.lex_state = 0, .external_lex_state = 2}, + [11002] = {.lex_state = 0}, [11003] = {.lex_state = 0}, - [11004] = {.lex_state = 267}, + [11004] = {.lex_state = 0}, [11005] = {.lex_state = 0}, [11006] = {.lex_state = 0}, - [11007] = {.lex_state = 0}, - [11008] = {.lex_state = 0}, - [11009] = {.lex_state = 438}, + [11007] = {.lex_state = 266}, + [11008] = {.lex_state = 438}, + [11009] = {.lex_state = 237}, [11010] = {.lex_state = 0}, [11011] = {.lex_state = 0}, [11012] = {.lex_state = 0}, [11013] = {.lex_state = 0}, [11014] = {.lex_state = 0}, - [11015] = {.lex_state = 0}, - [11016] = {.lex_state = 267}, + [11015] = {.lex_state = 266}, + [11016] = {.lex_state = 0}, [11017] = {.lex_state = 0}, - [11018] = {.lex_state = 0}, + [11018] = {.lex_state = 438}, [11019] = {.lex_state = 0}, [11020] = {.lex_state = 0}, - [11021] = {.lex_state = 0}, + [11021] = {.lex_state = 266}, [11022] = {.lex_state = 0}, - [11023] = {.lex_state = 267}, + [11023] = {.lex_state = 266}, [11024] = {.lex_state = 0}, [11025] = {.lex_state = 0}, - [11026] = {.lex_state = 0}, - [11027] = {.lex_state = 0}, + [11026] = {.lex_state = 237}, + [11027] = {.lex_state = 151}, [11028] = {.lex_state = 0}, - [11029] = {.lex_state = 0}, - [11030] = {.lex_state = 438}, - [11031] = {.lex_state = 0}, + [11029] = {.lex_state = 266}, + [11030] = {.lex_state = 266}, + [11031] = {.lex_state = 0, .external_lex_state = 2}, [11032] = {.lex_state = 0}, [11033] = {.lex_state = 0}, [11034] = {.lex_state = 0}, [11035] = {.lex_state = 0}, - [11036] = {.lex_state = 267}, - [11037] = {.lex_state = 0}, - [11038] = {.lex_state = 0}, - [11039] = {.lex_state = 267}, + [11036] = {.lex_state = 0}, + [11037] = {.lex_state = 438}, + [11038] = {.lex_state = 237}, + [11039] = {.lex_state = 0}, [11040] = {.lex_state = 0}, [11041] = {.lex_state = 0}, - [11042] = {.lex_state = 0}, + [11042] = {.lex_state = 438}, [11043] = {.lex_state = 0}, - [11044] = {.lex_state = 237}, + [11044] = {.lex_state = 0}, [11045] = {.lex_state = 0}, - [11046] = {.lex_state = 267}, - [11047] = {.lex_state = 267}, - [11048] = {.lex_state = 237}, - [11049] = {.lex_state = 0}, - [11050] = {.lex_state = 267}, - [11051] = {.lex_state = 0}, - [11052] = {.lex_state = 149}, - [11053] = {.lex_state = 0}, - [11054] = {.lex_state = 267}, - [11055] = {.lex_state = 267}, - [11056] = {.lex_state = 0}, + [11046] = {.lex_state = 266}, + [11047] = {.lex_state = 0}, + [11048] = {.lex_state = 0}, + [11049] = {.lex_state = 235}, + [11050] = {.lex_state = 0}, + [11051] = {.lex_state = 0, .external_lex_state = 2}, + [11052] = {.lex_state = 0}, + [11053] = {.lex_state = 438}, + [11054] = {.lex_state = 0}, + [11055] = {.lex_state = 0}, + [11056] = {.lex_state = 266}, [11057] = {.lex_state = 0}, - [11058] = {.lex_state = 267}, + [11058] = {.lex_state = 266}, [11059] = {.lex_state = 0}, - [11060] = {.lex_state = 237}, + [11060] = {.lex_state = 0}, [11061] = {.lex_state = 0}, - [11062] = {.lex_state = 0}, - [11063] = {.lex_state = 438}, + [11062] = {.lex_state = 0, .external_lex_state = 2}, + [11063] = {.lex_state = 266}, [11064] = {.lex_state = 237}, [11065] = {.lex_state = 0}, [11066] = {.lex_state = 0}, - [11067] = {.lex_state = 0}, + [11067] = {.lex_state = 237}, [11068] = {.lex_state = 0}, - [11069] = {.lex_state = 0}, - [11070] = {.lex_state = 267}, - [11071] = {.lex_state = 0}, - [11072] = {.lex_state = 267}, + [11069] = {.lex_state = 266}, + [11070] = {.lex_state = 0}, + [11071] = {.lex_state = 0, .external_lex_state = 2}, + [11072] = {.lex_state = 0}, [11073] = {.lex_state = 0}, [11074] = {.lex_state = 0}, - [11075] = {.lex_state = 0}, - [11076] = {.lex_state = 438}, + [11075] = {.lex_state = 266}, + [11076] = {.lex_state = 0}, [11077] = {.lex_state = 0}, - [11078] = {.lex_state = 267}, - [11079] = {.lex_state = 267}, + [11078] = {.lex_state = 0, .external_lex_state = 2}, + [11079] = {.lex_state = 151}, [11080] = {.lex_state = 0}, - [11081] = {.lex_state = 0}, - [11082] = {.lex_state = 0}, - [11083] = {.lex_state = 438}, + [11081] = {.lex_state = 151}, + [11082] = {.lex_state = 266}, + [11083] = {.lex_state = 0}, [11084] = {.lex_state = 0}, - [11085] = {.lex_state = 0}, + [11085] = {.lex_state = 0, .external_lex_state = 2}, [11086] = {.lex_state = 0}, - [11087] = {.lex_state = 149}, + [11087] = {.lex_state = 0}, [11088] = {.lex_state = 0}, - [11089] = {.lex_state = 0}, - [11090] = {.lex_state = 267}, - [11091] = {.lex_state = 238}, - [11092] = {.lex_state = 0}, - [11093] = {.lex_state = 0}, - [11094] = {.lex_state = 237}, + [11089] = {.lex_state = 238}, + [11090] = {.lex_state = 0}, + [11091] = {.lex_state = 0, .external_lex_state = 2}, + [11092] = {.lex_state = 235}, + [11093] = {.lex_state = 438}, + [11094] = {.lex_state = 438}, [11095] = {.lex_state = 0}, - [11096] = {.lex_state = 0}, + [11096] = {.lex_state = 0, .external_lex_state = 2}, [11097] = {.lex_state = 0}, - [11098] = {.lex_state = 0}, + [11098] = {.lex_state = 438}, [11099] = {.lex_state = 0}, - [11100] = {.lex_state = 0}, - [11101] = {.lex_state = 267}, - [11102] = {.lex_state = 438}, - [11103] = {.lex_state = 438}, - [11104] = {.lex_state = 438}, - [11105] = {.lex_state = 438}, - [11106] = {.lex_state = 438}, - [11107] = {.lex_state = 149}, - [11108] = {.lex_state = 438}, - [11109] = {.lex_state = 267}, - [11110] = {.lex_state = 237}, - [11111] = {.lex_state = 267}, - [11112] = {.lex_state = 237}, + [11100] = {.lex_state = 0, .external_lex_state = 2}, + [11101] = {.lex_state = 0}, + [11102] = {.lex_state = 0}, + [11103] = {.lex_state = 0}, + [11104] = {.lex_state = 0, .external_lex_state = 2}, + [11105] = {.lex_state = 151}, + [11106] = {.lex_state = 235}, + [11107] = {.lex_state = 0}, + [11108] = {.lex_state = 0, .external_lex_state = 2}, + [11109] = {.lex_state = 238}, + [11110] = {.lex_state = 266}, + [11111] = {.lex_state = 0}, + [11112] = {.lex_state = 0, .external_lex_state = 2}, [11113] = {.lex_state = 438}, - [11114] = {.lex_state = 237}, - [11115] = {.lex_state = 237}, - [11116] = {.lex_state = 438}, - [11117] = {.lex_state = 438}, - [11118] = {.lex_state = 237}, - [11119] = {.lex_state = 438}, - [11120] = {.lex_state = 0, .external_lex_state = 3}, - [11121] = {.lex_state = 438}, - [11122] = {.lex_state = 237}, + [11114] = {.lex_state = 0, .external_lex_state = 3}, + [11115] = {.lex_state = 0}, + [11116] = {.lex_state = 0, .external_lex_state = 2}, + [11117] = {.lex_state = 0}, + [11118] = {.lex_state = 0}, + [11119] = {.lex_state = 0, .external_lex_state = 2}, + [11120] = {.lex_state = 0}, + [11121] = {.lex_state = 0}, + [11122] = {.lex_state = 0}, [11123] = {.lex_state = 0}, - [11124] = {.lex_state = 237}, - [11125] = {.lex_state = 0}, + [11124] = {.lex_state = 0}, + [11125] = {.lex_state = 438}, [11126] = {.lex_state = 0}, [11127] = {.lex_state = 438}, - [11128] = {.lex_state = 0}, - [11129] = {.lex_state = 0}, - [11130] = {.lex_state = 267}, - [11131] = {.lex_state = 438}, - [11132] = {.lex_state = 0}, - [11133] = {.lex_state = 438}, - [11134] = {.lex_state = 438}, - [11135] = {.lex_state = 438}, + [11128] = {.lex_state = 438}, + [11129] = {.lex_state = 438}, + [11130] = {.lex_state = 438}, + [11131] = {.lex_state = 0}, + [11132] = {.lex_state = 438}, + [11133] = {.lex_state = 0}, + [11134] = {.lex_state = 0}, + [11135] = {.lex_state = 0}, [11136] = {.lex_state = 0}, - [11137] = {.lex_state = 438}, + [11137] = {.lex_state = 0}, [11138] = {.lex_state = 0}, [11139] = {.lex_state = 0}, - [11140] = {.lex_state = 267}, - [11141] = {.lex_state = 0}, - [11142] = {.lex_state = 438}, - [11143] = {.lex_state = 0}, - [11144] = {.lex_state = 438}, + [11140] = {.lex_state = 0}, + [11141] = {.lex_state = 266}, + [11142] = {.lex_state = 0}, + [11143] = {.lex_state = 438}, + [11144] = {.lex_state = 0}, [11145] = {.lex_state = 0}, [11146] = {.lex_state = 438}, - [11147] = {.lex_state = 0, .external_lex_state = 3}, + [11147] = {.lex_state = 438}, [11148] = {.lex_state = 0}, - [11149] = {.lex_state = 0}, + [11149] = {.lex_state = 266}, [11150] = {.lex_state = 0}, - [11151] = {.lex_state = 267}, - [11152] = {.lex_state = 0}, + [11151] = {.lex_state = 438}, + [11152] = {.lex_state = 0, .external_lex_state = 3}, [11153] = {.lex_state = 0}, - [11154] = {.lex_state = 267}, + [11154] = {.lex_state = 0}, [11155] = {.lex_state = 0}, [11156] = {.lex_state = 438}, - [11157] = {.lex_state = 438}, - [11158] = {.lex_state = 438}, - [11159] = {.lex_state = 267}, - [11160] = {.lex_state = 438}, + [11157] = {.lex_state = 0}, + [11158] = {.lex_state = 0}, + [11159] = {.lex_state = 0}, + [11160] = {.lex_state = 0}, [11161] = {.lex_state = 0}, [11162] = {.lex_state = 0}, - [11163] = {.lex_state = 267}, - [11164] = {.lex_state = 438}, + [11163] = {.lex_state = 0}, + [11164] = {.lex_state = 0}, [11165] = {.lex_state = 0}, - [11166] = {.lex_state = 438}, - [11167] = {.lex_state = 438}, - [11168] = {.lex_state = 438}, - [11169] = {.lex_state = 0, .external_lex_state = 3}, + [11166] = {.lex_state = 0}, + [11167] = {.lex_state = 0}, + [11168] = {.lex_state = 266}, + [11169] = {.lex_state = 0}, [11170] = {.lex_state = 0}, [11171] = {.lex_state = 0}, - [11172] = {.lex_state = 438}, + [11172] = {.lex_state = 0}, [11173] = {.lex_state = 0}, [11174] = {.lex_state = 0}, - [11175] = {.lex_state = 267}, + [11175] = {.lex_state = 0}, [11176] = {.lex_state = 0}, - [11177] = {.lex_state = 438}, - [11178] = {.lex_state = 438}, - [11179] = {.lex_state = 438}, + [11177] = {.lex_state = 0}, + [11178] = {.lex_state = 266}, + [11179] = {.lex_state = 0}, [11180] = {.lex_state = 0}, - [11181] = {.lex_state = 438}, + [11181] = {.lex_state = 266}, [11182] = {.lex_state = 0}, - [11183] = {.lex_state = 0}, - [11184] = {.lex_state = 438}, + [11183] = {.lex_state = 266}, + [11184] = {.lex_state = 0}, [11185] = {.lex_state = 0}, - [11186] = {.lex_state = 438}, + [11186] = {.lex_state = 0}, [11187] = {.lex_state = 0}, - [11188] = {.lex_state = 438}, - [11189] = {.lex_state = 0, .external_lex_state = 3}, - [11190] = {.lex_state = 438}, - [11191] = {.lex_state = 0}, + [11188] = {.lex_state = 0}, + [11189] = {.lex_state = 0}, + [11190] = {.lex_state = 0}, + [11191] = {.lex_state = 438}, [11192] = {.lex_state = 0}, - [11193] = {.lex_state = 149}, + [11193] = {.lex_state = 0}, [11194] = {.lex_state = 0}, - [11195] = {.lex_state = 267}, - [11196] = {.lex_state = 237}, - [11197] = {.lex_state = 438}, - [11198] = {.lex_state = 438}, - [11199] = {.lex_state = 438}, + [11195] = {.lex_state = 151}, + [11196] = {.lex_state = 0}, + [11197] = {.lex_state = 0}, + [11198] = {.lex_state = 0}, + [11199] = {.lex_state = 0}, [11200] = {.lex_state = 0}, - [11201] = {.lex_state = 438}, + [11201] = {.lex_state = 237}, [11202] = {.lex_state = 0}, - [11203] = {.lex_state = 237}, - [11204] = {.lex_state = 438}, - [11205] = {.lex_state = 0}, - [11206] = {.lex_state = 438}, + [11203] = {.lex_state = 266}, + [11204] = {.lex_state = 151}, + [11205] = {.lex_state = 266}, + [11206] = {.lex_state = 237}, [11207] = {.lex_state = 0}, - [11208] = {.lex_state = 438}, - [11209] = {.lex_state = 0, .external_lex_state = 3}, - [11210] = {.lex_state = 237}, + [11208] = {.lex_state = 0}, + [11209] = {.lex_state = 0}, + [11210] = {.lex_state = 0}, [11211] = {.lex_state = 0}, - [11212] = {.lex_state = 0}, + [11212] = {.lex_state = 266}, [11213] = {.lex_state = 0}, [11214] = {.lex_state = 0}, - [11215] = {.lex_state = 267}, + [11215] = {.lex_state = 0}, [11216] = {.lex_state = 0}, - [11217] = {.lex_state = 438}, - [11218] = {.lex_state = 438}, - [11219] = {.lex_state = 438}, + [11217] = {.lex_state = 0}, + [11218] = {.lex_state = 0}, + [11219] = {.lex_state = 0}, [11220] = {.lex_state = 0}, - [11221] = {.lex_state = 438}, - [11222] = {.lex_state = 0}, - [11223] = {.lex_state = 438}, - [11224] = {.lex_state = 0}, - [11225] = {.lex_state = 438}, - [11226] = {.lex_state = 0, .external_lex_state = 3}, + [11221] = {.lex_state = 0}, + [11222] = {.lex_state = 237}, + [11223] = {.lex_state = 266}, + [11224] = {.lex_state = 237}, + [11225] = {.lex_state = 151}, + [11226] = {.lex_state = 0}, [11227] = {.lex_state = 0}, [11228] = {.lex_state = 0}, - [11229] = {.lex_state = 438}, - [11230] = {.lex_state = 0}, - [11231] = {.lex_state = 267}, + [11229] = {.lex_state = 266}, + [11230] = {.lex_state = 237}, + [11231] = {.lex_state = 0}, [11232] = {.lex_state = 0}, - [11233] = {.lex_state = 438}, - [11234] = {.lex_state = 438}, - [11235] = {.lex_state = 267}, - [11236] = {.lex_state = 438}, - [11237] = {.lex_state = 237}, + [11233] = {.lex_state = 0}, + [11234] = {.lex_state = 0}, + [11235] = {.lex_state = 0}, + [11236] = {.lex_state = 266}, + [11237] = {.lex_state = 0}, [11238] = {.lex_state = 0}, - [11239] = {.lex_state = 438}, - [11240] = {.lex_state = 0, .external_lex_state = 3}, - [11241] = {.lex_state = 267}, + [11239] = {.lex_state = 0}, + [11240] = {.lex_state = 0}, + [11241] = {.lex_state = 266}, [11242] = {.lex_state = 0}, - [11243] = {.lex_state = 438}, - [11244] = {.lex_state = 438}, - [11245] = {.lex_state = 438}, - [11246] = {.lex_state = 438}, - [11247] = {.lex_state = 0, .external_lex_state = 3}, - [11248] = {.lex_state = 0}, - [11249] = {.lex_state = 438}, - [11250] = {.lex_state = 438}, - [11251] = {.lex_state = 438}, - [11252] = {.lex_state = 438}, - [11253] = {.lex_state = 0, .external_lex_state = 3}, + [11243] = {.lex_state = 0}, + [11244] = {.lex_state = 0}, + [11245] = {.lex_state = 151}, + [11246] = {.lex_state = 0}, + [11247] = {.lex_state = 0}, + [11248] = {.lex_state = 266}, + [11249] = {.lex_state = 0}, + [11250] = {.lex_state = 0}, + [11251] = {.lex_state = 0}, + [11252] = {.lex_state = 0}, + [11253] = {.lex_state = 0}, [11254] = {.lex_state = 0}, - [11255] = {.lex_state = 438}, - [11256] = {.lex_state = 438}, - [11257] = {.lex_state = 0, .external_lex_state = 3}, - [11258] = {.lex_state = 0}, - [11259] = {.lex_state = 438}, - [11260] = {.lex_state = 438}, - [11261] = {.lex_state = 0, .external_lex_state = 3}, + [11255] = {.lex_state = 0}, + [11256] = {.lex_state = 0}, + [11257] = {.lex_state = 0}, + [11258] = {.lex_state = 266}, + [11259] = {.lex_state = 266}, + [11260] = {.lex_state = 0}, + [11261] = {.lex_state = 438}, [11262] = {.lex_state = 0}, - [11263] = {.lex_state = 438}, - [11264] = {.lex_state = 438}, - [11265] = {.lex_state = 0, .external_lex_state = 3}, + [11263] = {.lex_state = 0}, + [11264] = {.lex_state = 0}, + [11265] = {.lex_state = 0}, [11266] = {.lex_state = 0}, - [11267] = {.lex_state = 438}, - [11268] = {.lex_state = 438}, - [11269] = {.lex_state = 0, .external_lex_state = 3}, + [11267] = {.lex_state = 0}, + [11268] = {.lex_state = 0}, + [11269] = {.lex_state = 0}, [11270] = {.lex_state = 0}, - [11271] = {.lex_state = 438}, - [11272] = {.lex_state = 438}, - [11273] = {.lex_state = 0, .external_lex_state = 3}, + [11271] = {.lex_state = 0}, + [11272] = {.lex_state = 0}, + [11273] = {.lex_state = 0}, [11274] = {.lex_state = 0}, - [11275] = {.lex_state = 438}, - [11276] = {.lex_state = 438}, - [11277] = {.lex_state = 0, .external_lex_state = 3}, + [11275] = {.lex_state = 0}, + [11276] = {.lex_state = 0}, + [11277] = {.lex_state = 0}, [11278] = {.lex_state = 0}, - [11279] = {.lex_state = 438}, - [11280] = {.lex_state = 438}, - [11281] = {.lex_state = 0, .external_lex_state = 3}, + [11279] = {.lex_state = 0}, + [11280] = {.lex_state = 237}, + [11281] = {.lex_state = 0}, [11282] = {.lex_state = 0}, - [11283] = {.lex_state = 438}, + [11283] = {.lex_state = 0}, [11284] = {.lex_state = 438}, - [11285] = {.lex_state = 0, .external_lex_state = 3}, - [11286] = {.lex_state = 0}, + [11285] = {.lex_state = 438}, + [11286] = {.lex_state = 438}, [11287] = {.lex_state = 438}, [11288] = {.lex_state = 438}, - [11289] = {.lex_state = 0, .external_lex_state = 3}, - [11290] = {.lex_state = 0}, - [11291] = {.lex_state = 438}, - [11292] = {.lex_state = 0, .external_lex_state = 3}, - [11293] = {.lex_state = 0}, - [11294] = {.lex_state = 438}, - [11295] = {.lex_state = 438}, + [11289] = {.lex_state = 0}, + [11290] = {.lex_state = 438}, + [11291] = {.lex_state = 266}, + [11292] = {.lex_state = 0}, + [11293] = {.lex_state = 266}, + [11294] = {.lex_state = 266}, + [11295] = {.lex_state = 266}, [11296] = {.lex_state = 438}, [11297] = {.lex_state = 0}, - [11298] = {.lex_state = 267}, + [11298] = {.lex_state = 0}, [11299] = {.lex_state = 438}, [11300] = {.lex_state = 438}, - [11301] = {.lex_state = 267}, - [11302] = {.lex_state = 0}, - [11303] = {.lex_state = 0}, - [11304] = {.lex_state = 0}, + [11301] = {.lex_state = 0}, + [11302] = {.lex_state = 438}, + [11303] = {.lex_state = 0, .external_lex_state = 3}, + [11304] = {.lex_state = 438}, [11305] = {.lex_state = 0}, [11306] = {.lex_state = 0}, [11307] = {.lex_state = 0}, [11308] = {.lex_state = 0}, [11309] = {.lex_state = 0}, - [11310] = {.lex_state = 0}, - [11311] = {.lex_state = 149}, - [11312] = {.lex_state = 237}, - [11313] = {.lex_state = 0}, - [11314] = {.lex_state = 0}, - [11315] = {.lex_state = 0}, + [11310] = {.lex_state = 438}, + [11311] = {.lex_state = 0}, + [11312] = {.lex_state = 0}, + [11313] = {.lex_state = 266}, + [11314] = {.lex_state = 266}, + [11315] = {.lex_state = 438}, [11316] = {.lex_state = 438}, - [11317] = {.lex_state = 0}, + [11317] = {.lex_state = 438}, [11318] = {.lex_state = 0}, - [11319] = {.lex_state = 0}, + [11319] = {.lex_state = 438}, [11320] = {.lex_state = 0}, - [11321] = {.lex_state = 0}, - [11322] = {.lex_state = 0}, - [11323] = {.lex_state = 267}, + [11321] = {.lex_state = 266}, + [11322] = {.lex_state = 266}, + [11323] = {.lex_state = 266}, [11324] = {.lex_state = 0}, - [11325] = {.lex_state = 267}, - [11326] = {.lex_state = 267}, - [11327] = {.lex_state = 0}, + [11325] = {.lex_state = 438}, + [11326] = {.lex_state = 0}, + [11327] = {.lex_state = 438}, [11328] = {.lex_state = 0}, - [11329] = {.lex_state = 0}, - [11330] = {.lex_state = 237}, - [11331] = {.lex_state = 237}, - [11332] = {.lex_state = 237}, - [11333] = {.lex_state = 0}, + [11329] = {.lex_state = 438}, + [11330] = {.lex_state = 0, .external_lex_state = 3}, + [11331] = {.lex_state = 0}, + [11332] = {.lex_state = 0}, + [11333] = {.lex_state = 266}, [11334] = {.lex_state = 0}, - [11335] = {.lex_state = 0}, - [11336] = {.lex_state = 267}, - [11337] = {.lex_state = 267}, - [11338] = {.lex_state = 438}, - [11339] = {.lex_state = 267}, - [11340] = {.lex_state = 0}, - [11341] = {.lex_state = 267}, - [11342] = {.lex_state = 0, .external_lex_state = 3}, - [11343] = {.lex_state = 0}, - [11344] = {.lex_state = 0}, - [11345] = {.lex_state = 438}, - [11346] = {.lex_state = 0}, - [11347] = {.lex_state = 0}, + [11335] = {.lex_state = 266}, + [11336] = {.lex_state = 0}, + [11337] = {.lex_state = 266}, + [11338] = {.lex_state = 266}, + [11339] = {.lex_state = 438}, + [11340] = {.lex_state = 438}, + [11341] = {.lex_state = 438}, + [11342] = {.lex_state = 0}, + [11343] = {.lex_state = 438}, + [11344] = {.lex_state = 438}, + [11345] = {.lex_state = 266}, + [11346] = {.lex_state = 266}, + [11347] = {.lex_state = 438}, [11348] = {.lex_state = 0}, - [11349] = {.lex_state = 0}, - [11350] = {.lex_state = 237}, - [11351] = {.lex_state = 0}, - [11352] = {.lex_state = 267}, - [11353] = {.lex_state = 0}, + [11349] = {.lex_state = 438}, + [11350] = {.lex_state = 0}, + [11351] = {.lex_state = 438}, + [11352] = {.lex_state = 0, .external_lex_state = 3}, + [11353] = {.lex_state = 333}, [11354] = {.lex_state = 0}, [11355] = {.lex_state = 0}, - [11356] = {.lex_state = 0}, - [11357] = {.lex_state = 267}, - [11358] = {.lex_state = 0}, + [11356] = {.lex_state = 266}, + [11357] = {.lex_state = 0}, + [11358] = {.lex_state = 266}, [11359] = {.lex_state = 0}, - [11360] = {.lex_state = 0}, - [11361] = {.lex_state = 0}, - [11362] = {.lex_state = 0}, + [11360] = {.lex_state = 438}, + [11361] = {.lex_state = 438}, + [11362] = {.lex_state = 438}, [11363] = {.lex_state = 0}, - [11364] = {.lex_state = 267}, - [11365] = {.lex_state = 0}, - [11366] = {.lex_state = 0}, - [11367] = {.lex_state = 0}, + [11364] = {.lex_state = 438}, + [11365] = {.lex_state = 266}, + [11366] = {.lex_state = 266}, + [11367] = {.lex_state = 438}, [11368] = {.lex_state = 0}, [11369] = {.lex_state = 438}, [11370] = {.lex_state = 0}, - [11371] = {.lex_state = 0}, - [11372] = {.lex_state = 438}, - [11373] = {.lex_state = 0}, + [11371] = {.lex_state = 438}, + [11372] = {.lex_state = 0, .external_lex_state = 3}, + [11373] = {.lex_state = 266}, [11374] = {.lex_state = 0}, - [11375] = {.lex_state = 149}, - [11376] = {.lex_state = 0}, + [11375] = {.lex_state = 438}, + [11376] = {.lex_state = 266}, [11377] = {.lex_state = 0}, - [11378] = {.lex_state = 0}, - [11379] = {.lex_state = 237}, - [11380] = {.lex_state = 0}, - [11381] = {.lex_state = 0}, - [11382] = {.lex_state = 0}, + [11378] = {.lex_state = 266}, + [11379] = {.lex_state = 0, .external_lex_state = 3}, + [11380] = {.lex_state = 438}, + [11381] = {.lex_state = 438}, + [11382] = {.lex_state = 438}, [11383] = {.lex_state = 0}, - [11384] = {.lex_state = 0}, - [11385] = {.lex_state = 0}, - [11386] = {.lex_state = 267}, - [11387] = {.lex_state = 267}, - [11388] = {.lex_state = 149}, - [11389] = {.lex_state = 0}, + [11384] = {.lex_state = 438}, + [11385] = {.lex_state = 237}, + [11386] = {.lex_state = 0}, + [11387] = {.lex_state = 438}, + [11388] = {.lex_state = 0}, + [11389] = {.lex_state = 438}, [11390] = {.lex_state = 0}, - [11391] = {.lex_state = 0}, - [11392] = {.lex_state = 0}, - [11393] = {.lex_state = 267}, - [11394] = {.lex_state = 438}, - [11395] = {.lex_state = 0}, - [11396] = {.lex_state = 267}, - [11397] = {.lex_state = 267}, - [11398] = {.lex_state = 0}, + [11391] = {.lex_state = 438}, + [11392] = {.lex_state = 0, .external_lex_state = 3}, + [11393] = {.lex_state = 151}, + [11394] = {.lex_state = 0}, + [11395] = {.lex_state = 333}, + [11396] = {.lex_state = 0}, + [11397] = {.lex_state = 0}, + [11398] = {.lex_state = 266}, [11399] = {.lex_state = 0}, - [11400] = {.lex_state = 0}, - [11401] = {.lex_state = 0}, - [11402] = {.lex_state = 0}, + [11400] = {.lex_state = 438}, + [11401] = {.lex_state = 438}, + [11402] = {.lex_state = 438}, [11403] = {.lex_state = 0}, - [11404] = {.lex_state = 149}, - [11405] = {.lex_state = 438}, + [11404] = {.lex_state = 438}, + [11405] = {.lex_state = 0}, [11406] = {.lex_state = 438}, - [11407] = {.lex_state = 267}, - [11408] = {.lex_state = 0}, - [11409] = {.lex_state = 0}, + [11407] = {.lex_state = 237}, + [11408] = {.lex_state = 438}, + [11409] = {.lex_state = 0, .external_lex_state = 3}, [11410] = {.lex_state = 0}, - [11411] = {.lex_state = 438}, - [11412] = {.lex_state = 267}, - [11413] = {.lex_state = 267}, - [11414] = {.lex_state = 0, .external_lex_state = 3}, + [11411] = {.lex_state = 0}, + [11412] = {.lex_state = 0}, + [11413] = {.lex_state = 0}, + [11414] = {.lex_state = 266}, [11415] = {.lex_state = 0}, [11416] = {.lex_state = 438}, - [11417] = {.lex_state = 0}, + [11417] = {.lex_state = 438}, [11418] = {.lex_state = 0}, [11419] = {.lex_state = 438}, - [11420] = {.lex_state = 438}, - [11421] = {.lex_state = 267}, - [11422] = {.lex_state = 0}, - [11423] = {.lex_state = 0}, + [11420] = {.lex_state = 0}, + [11421] = {.lex_state = 438}, + [11422] = {.lex_state = 438}, + [11423] = {.lex_state = 0, .external_lex_state = 3}, [11424] = {.lex_state = 0}, - [11425] = {.lex_state = 438}, - [11426] = {.lex_state = 267}, - [11427] = {.lex_state = 0, .external_lex_state = 3}, - [11428] = {.lex_state = 267}, - [11429] = {.lex_state = 0}, - [11430] = {.lex_state = 0}, - [11431] = {.lex_state = 438}, - [11432] = {.lex_state = 267}, + [11425] = {.lex_state = 0}, + [11426] = {.lex_state = 438}, + [11427] = {.lex_state = 438}, + [11428] = {.lex_state = 438}, + [11429] = {.lex_state = 438}, + [11430] = {.lex_state = 0, .external_lex_state = 3}, + [11431] = {.lex_state = 0}, + [11432] = {.lex_state = 438}, [11433] = {.lex_state = 438}, - [11434] = {.lex_state = 149}, - [11435] = {.lex_state = 0}, - [11436] = {.lex_state = 267}, - [11437] = {.lex_state = 0, .external_lex_state = 3}, - [11438] = {.lex_state = 0}, - [11439] = {.lex_state = 0}, - [11440] = {.lex_state = 438}, - [11441] = {.lex_state = 267}, - [11442] = {.lex_state = 0}, - [11443] = {.lex_state = 237}, - [11444] = {.lex_state = 0}, - [11445] = {.lex_state = 267}, - [11446] = {.lex_state = 0, .external_lex_state = 3}, - [11447] = {.lex_state = 267}, - [11448] = {.lex_state = 438}, - [11449] = {.lex_state = 267}, - [11450] = {.lex_state = 0}, - [11451] = {.lex_state = 0}, - [11452] = {.lex_state = 267}, - [11453] = {.lex_state = 0, .external_lex_state = 3}, - [11454] = {.lex_state = 0}, - [11455] = {.lex_state = 267}, - [11456] = {.lex_state = 334}, - [11457] = {.lex_state = 267}, - [11458] = {.lex_state = 0, .external_lex_state = 3}, - [11459] = {.lex_state = 0}, - [11460] = {.lex_state = 0}, - [11461] = {.lex_state = 0, .external_lex_state = 3}, + [11434] = {.lex_state = 438}, + [11435] = {.lex_state = 438}, + [11436] = {.lex_state = 0, .external_lex_state = 3}, + [11437] = {.lex_state = 0}, + [11438] = {.lex_state = 438}, + [11439] = {.lex_state = 438}, + [11440] = {.lex_state = 0, .external_lex_state = 3}, + [11441] = {.lex_state = 0}, + [11442] = {.lex_state = 438}, + [11443] = {.lex_state = 438}, + [11444] = {.lex_state = 0, .external_lex_state = 3}, + [11445] = {.lex_state = 0}, + [11446] = {.lex_state = 438}, + [11447] = {.lex_state = 438}, + [11448] = {.lex_state = 0, .external_lex_state = 3}, + [11449] = {.lex_state = 0}, + [11450] = {.lex_state = 438}, + [11451] = {.lex_state = 438}, + [11452] = {.lex_state = 0, .external_lex_state = 3}, + [11453] = {.lex_state = 0}, + [11454] = {.lex_state = 438}, + [11455] = {.lex_state = 438}, + [11456] = {.lex_state = 0, .external_lex_state = 3}, + [11457] = {.lex_state = 0}, + [11458] = {.lex_state = 438}, + [11459] = {.lex_state = 438}, + [11460] = {.lex_state = 0, .external_lex_state = 3}, + [11461] = {.lex_state = 0}, [11462] = {.lex_state = 438}, - [11463] = {.lex_state = 0, .external_lex_state = 3}, - [11464] = {.lex_state = 0}, - [11465] = {.lex_state = 0, .external_lex_state = 3}, - [11466] = {.lex_state = 0}, - [11467] = {.lex_state = 0, .external_lex_state = 3}, - [11468] = {.lex_state = 0}, - [11469] = {.lex_state = 0, .external_lex_state = 3}, - [11470] = {.lex_state = 267}, - [11471] = {.lex_state = 0, .external_lex_state = 3}, - [11472] = {.lex_state = 0}, - [11473] = {.lex_state = 0, .external_lex_state = 3}, - [11474] = {.lex_state = 237}, + [11463] = {.lex_state = 438}, + [11464] = {.lex_state = 0, .external_lex_state = 3}, + [11465] = {.lex_state = 0}, + [11466] = {.lex_state = 438}, + [11467] = {.lex_state = 438}, + [11468] = {.lex_state = 0, .external_lex_state = 3}, + [11469] = {.lex_state = 0}, + [11470] = {.lex_state = 438}, + [11471] = {.lex_state = 438}, + [11472] = {.lex_state = 0, .external_lex_state = 3}, + [11473] = {.lex_state = 0}, + [11474] = {.lex_state = 438}, [11475] = {.lex_state = 0, .external_lex_state = 3}, - [11476] = {.lex_state = 267}, - [11477] = {.lex_state = 0, .external_lex_state = 3}, - [11478] = {.lex_state = 237}, - [11479] = {.lex_state = 0, .external_lex_state = 3}, - [11480] = {.lex_state = 0}, - [11481] = {.lex_state = 0, .external_lex_state = 3}, - [11482] = {.lex_state = 0}, - [11483] = {.lex_state = 0, .external_lex_state = 3}, - [11484] = {.lex_state = 0}, - [11485] = {.lex_state = 0, .external_lex_state = 3}, - [11486] = {.lex_state = 334}, - [11487] = {.lex_state = 149}, + [11476] = {.lex_state = 0}, + [11477] = {.lex_state = 438}, + [11478] = {.lex_state = 438}, + [11479] = {.lex_state = 438}, + [11480] = {.lex_state = 438}, + [11481] = {.lex_state = 266}, + [11482] = {.lex_state = 438}, + [11483] = {.lex_state = 438}, + [11484] = {.lex_state = 266}, + [11485] = {.lex_state = 266}, + [11486] = {.lex_state = 0}, + [11487] = {.lex_state = 0}, [11488] = {.lex_state = 0}, [11489] = {.lex_state = 0}, - [11490] = {.lex_state = 438}, - [11491] = {.lex_state = 0}, + [11490] = {.lex_state = 0}, + [11491] = {.lex_state = 266}, [11492] = {.lex_state = 0}, - [11493] = {.lex_state = 438}, - [11494] = {.lex_state = 0}, + [11493] = {.lex_state = 0}, + [11494] = {.lex_state = 266}, [11495] = {.lex_state = 438}, - [11496] = {.lex_state = 0}, - [11497] = {.lex_state = 267}, + [11496] = {.lex_state = 237}, + [11497] = {.lex_state = 237}, [11498] = {.lex_state = 0}, [11499] = {.lex_state = 438}, [11500] = {.lex_state = 0}, [11501] = {.lex_state = 0}, - [11502] = {.lex_state = 438}, - [11503] = {.lex_state = 0}, - [11504] = {.lex_state = 267}, - [11505] = {.lex_state = 438}, - [11506] = {.lex_state = 438}, - [11507] = {.lex_state = 0}, - [11508] = {.lex_state = 438}, - [11509] = {.lex_state = 438}, - [11510] = {.lex_state = 0}, - [11511] = {.lex_state = 438}, - [11512] = {.lex_state = 438}, + [11502] = {.lex_state = 0}, + [11503] = {.lex_state = 237}, + [11504] = {.lex_state = 237}, + [11505] = {.lex_state = 0}, + [11506] = {.lex_state = 0}, + [11507] = {.lex_state = 438}, + [11508] = {.lex_state = 0}, + [11509] = {.lex_state = 0}, + [11510] = {.lex_state = 237}, + [11511] = {.lex_state = 0}, + [11512] = {.lex_state = 0}, [11513] = {.lex_state = 0}, - [11514] = {.lex_state = 438}, - [11515] = {.lex_state = 438}, + [11514] = {.lex_state = 0}, + [11515] = {.lex_state = 0}, [11516] = {.lex_state = 0}, - [11517] = {.lex_state = 438}, - [11518] = {.lex_state = 438}, - [11519] = {.lex_state = 267}, - [11520] = {.lex_state = 438}, - [11521] = {.lex_state = 438}, - [11522] = {.lex_state = 0}, - [11523] = {.lex_state = 438}, - [11524] = {.lex_state = 438}, - [11525] = {.lex_state = 438}, - [11526] = {.lex_state = 438}, - [11527] = {.lex_state = 438}, - [11528] = {.lex_state = 438}, - [11529] = {.lex_state = 438}, - [11530] = {.lex_state = 438}, - [11531] = {.lex_state = 438}, - [11532] = {.lex_state = 438}, - [11533] = {.lex_state = 438}, - [11534] = {.lex_state = 438}, - [11535] = {.lex_state = 438}, + [11517] = {.lex_state = 0}, + [11518] = {.lex_state = 0}, + [11519] = {.lex_state = 0}, + [11520] = {.lex_state = 0}, + [11521] = {.lex_state = 0}, + [11522] = {.lex_state = 266}, + [11523] = {.lex_state = 0}, + [11524] = {.lex_state = 0}, + [11525] = {.lex_state = 0, .external_lex_state = 3}, + [11526] = {.lex_state = 266}, + [11527] = {.lex_state = 0, .external_lex_state = 2}, + [11528] = {.lex_state = 0}, + [11529] = {.lex_state = 0}, + [11530] = {.lex_state = 0}, + [11531] = {.lex_state = 0}, + [11532] = {.lex_state = 0}, + [11533] = {.lex_state = 151}, + [11534] = {.lex_state = 0}, + [11535] = {.lex_state = 0}, [11536] = {.lex_state = 0}, [11537] = {.lex_state = 237}, - [11538] = {.lex_state = 267}, - [11539] = {.lex_state = 267}, + [11538] = {.lex_state = 266}, + [11539] = {.lex_state = 438}, [11540] = {.lex_state = 0}, - [11541] = {.lex_state = 0}, - [11542] = {.lex_state = 149}, - [11543] = {.lex_state = 438}, - [11544] = {.lex_state = 438}, - [11545] = {.lex_state = 438}, - [11546] = {.lex_state = 438}, - [11547] = {.lex_state = 438}, - [11548] = {.lex_state = 438}, - [11549] = {.lex_state = 438}, + [11541] = {.lex_state = 237}, + [11542] = {.lex_state = 0}, + [11543] = {.lex_state = 0}, + [11544] = {.lex_state = 0}, + [11545] = {.lex_state = 0}, + [11546] = {.lex_state = 0}, + [11547] = {.lex_state = 0}, + [11548] = {.lex_state = 0}, + [11549] = {.lex_state = 0}, [11550] = {.lex_state = 0}, + [11551] = {.lex_state = 438}, + [11552] = {.lex_state = 0}, + [11553] = {.lex_state = 0}, + [11554] = {.lex_state = 438}, + [11555] = {.lex_state = 0}, + [11556] = {.lex_state = 237}, + [11557] = {.lex_state = 237}, + [11558] = {.lex_state = 266}, + [11559] = {.lex_state = 237}, + [11560] = {.lex_state = 0}, + [11561] = {.lex_state = 0}, + [11562] = {.lex_state = 0}, + [11563] = {.lex_state = 266}, + [11564] = {.lex_state = 266}, + [11565] = {.lex_state = 0}, + [11566] = {.lex_state = 0}, + [11567] = {.lex_state = 0}, + [11568] = {.lex_state = 438}, + [11569] = {.lex_state = 237}, + [11570] = {.lex_state = 237}, + [11571] = {.lex_state = 0}, + [11572] = {.lex_state = 0}, + [11573] = {.lex_state = 0}, + [11574] = {.lex_state = 0}, + [11575] = {.lex_state = 0}, + [11576] = {.lex_state = 0}, + [11577] = {.lex_state = 0}, + [11578] = {.lex_state = 0}, + [11579] = {.lex_state = 266}, + [11580] = {.lex_state = 266}, + [11581] = {.lex_state = 0}, + [11582] = {.lex_state = 0}, + [11583] = {.lex_state = 0}, + [11584] = {.lex_state = 0}, + [11585] = {.lex_state = 237}, + [11586] = {.lex_state = 0}, + [11587] = {.lex_state = 0}, + [11588] = {.lex_state = 438}, + [11589] = {.lex_state = 438}, + [11590] = {.lex_state = 266}, + [11591] = {.lex_state = 266}, + [11592] = {.lex_state = 0}, + [11593] = {.lex_state = 266}, + [11594] = {.lex_state = 438}, + [11595] = {.lex_state = 0}, + [11596] = {.lex_state = 266}, + [11597] = {.lex_state = 0, .external_lex_state = 3}, + [11598] = {.lex_state = 0}, + [11599] = {.lex_state = 0}, + [11600] = {.lex_state = 266}, + [11601] = {.lex_state = 0}, + [11602] = {.lex_state = 438}, + [11603] = {.lex_state = 438}, + [11604] = {.lex_state = 266}, + [11605] = {.lex_state = 237}, + [11606] = {.lex_state = 237}, + [11607] = {.lex_state = 0}, + [11608] = {.lex_state = 438}, + [11609] = {.lex_state = 266}, + [11610] = {.lex_state = 0, .external_lex_state = 3}, + [11611] = {.lex_state = 0}, + [11612] = {.lex_state = 438}, + [11613] = {.lex_state = 0}, + [11614] = {.lex_state = 438}, + [11615] = {.lex_state = 266}, + [11616] = {.lex_state = 0}, + [11617] = {.lex_state = 0}, + [11618] = {.lex_state = 0}, + [11619] = {.lex_state = 266}, + [11620] = {.lex_state = 0, .external_lex_state = 3}, + [11621] = {.lex_state = 0}, + [11622] = {.lex_state = 438}, + [11623] = {.lex_state = 438}, + [11624] = {.lex_state = 266}, + [11625] = {.lex_state = 0}, + [11626] = {.lex_state = 0}, + [11627] = {.lex_state = 0}, + [11628] = {.lex_state = 266}, + [11629] = {.lex_state = 0, .external_lex_state = 3}, + [11630] = {.lex_state = 0}, + [11631] = {.lex_state = 438}, + [11632] = {.lex_state = 266}, + [11633] = {.lex_state = 0}, + [11634] = {.lex_state = 0}, + [11635] = {.lex_state = 266}, + [11636] = {.lex_state = 0, .external_lex_state = 3}, + [11637] = {.lex_state = 237}, + [11638] = {.lex_state = 237}, + [11639] = {.lex_state = 0}, + [11640] = {.lex_state = 266}, + [11641] = {.lex_state = 0, .external_lex_state = 3}, + [11642] = {.lex_state = 0}, + [11643] = {.lex_state = 266}, + [11644] = {.lex_state = 0, .external_lex_state = 3}, + [11645] = {.lex_state = 266}, + [11646] = {.lex_state = 0, .external_lex_state = 3}, + [11647] = {.lex_state = 0}, + [11648] = {.lex_state = 0, .external_lex_state = 3}, + [11649] = {.lex_state = 0}, + [11650] = {.lex_state = 0, .external_lex_state = 3}, + [11651] = {.lex_state = 266}, + [11652] = {.lex_state = 0, .external_lex_state = 3}, + [11653] = {.lex_state = 266}, + [11654] = {.lex_state = 0, .external_lex_state = 3}, + [11655] = {.lex_state = 0}, + [11656] = {.lex_state = 0, .external_lex_state = 3}, + [11657] = {.lex_state = 438}, + [11658] = {.lex_state = 0, .external_lex_state = 3}, + [11659] = {.lex_state = 0}, + [11660] = {.lex_state = 0, .external_lex_state = 3}, + [11661] = {.lex_state = 266}, + [11662] = {.lex_state = 0, .external_lex_state = 3}, + [11663] = {.lex_state = 0}, + [11664] = {.lex_state = 0, .external_lex_state = 3}, + [11665] = {.lex_state = 237}, + [11666] = {.lex_state = 0, .external_lex_state = 3}, + [11667] = {.lex_state = 0}, + [11668] = {.lex_state = 0, .external_lex_state = 3}, + [11669] = {.lex_state = 0}, + [11670] = {.lex_state = 237}, + [11671] = {.lex_state = 0}, + [11672] = {.lex_state = 0}, + [11673] = {.lex_state = 438}, + [11674] = {.lex_state = 266}, + [11675] = {.lex_state = 266}, + [11676] = {.lex_state = 0}, + [11677] = {.lex_state = 0}, + [11678] = {.lex_state = 0}, + [11679] = {.lex_state = 0}, + [11680] = {.lex_state = 0}, + [11681] = {.lex_state = 0}, + [11682] = {.lex_state = 438}, + [11683] = {.lex_state = 0}, + [11684] = {.lex_state = 266}, + [11685] = {.lex_state = 0}, + [11686] = {.lex_state = 438}, + [11687] = {.lex_state = 266}, + [11688] = {.lex_state = 438}, + [11689] = {.lex_state = 438}, + [11690] = {.lex_state = 0}, + [11691] = {.lex_state = 438}, + [11692] = {.lex_state = 438}, + [11693] = {.lex_state = 266}, + [11694] = {.lex_state = 438}, + [11695] = {.lex_state = 438}, + [11696] = {.lex_state = 0}, + [11697] = {.lex_state = 438}, + [11698] = {.lex_state = 438}, + [11699] = {.lex_state = 266}, + [11700] = {.lex_state = 438}, + [11701] = {.lex_state = 438}, + [11702] = {.lex_state = 0}, + [11703] = {.lex_state = 438}, + [11704] = {.lex_state = 438}, + [11705] = {.lex_state = 237}, + [11706] = {.lex_state = 438}, + [11707] = {.lex_state = 438}, + [11708] = {.lex_state = 438}, + [11709] = {.lex_state = 438}, + [11710] = {.lex_state = 438}, + [11711] = {.lex_state = 438}, + [11712] = {.lex_state = 438}, + [11713] = {.lex_state = 438}, + [11714] = {.lex_state = 438}, + [11715] = {.lex_state = 438}, + [11716] = {.lex_state = 438}, + [11717] = {.lex_state = 438}, + [11718] = {.lex_state = 438}, + [11719] = {.lex_state = 0}, + [11720] = {.lex_state = 0}, + [11721] = {.lex_state = 0}, + [11722] = {.lex_state = 438}, + [11723] = {.lex_state = 151}, + [11724] = {.lex_state = 0}, + [11725] = {.lex_state = 0}, + [11726] = {.lex_state = 438}, + [11727] = {.lex_state = 438}, + [11728] = {.lex_state = 438}, + [11729] = {.lex_state = 438}, + [11730] = {.lex_state = 438}, + [11731] = {.lex_state = 438}, + [11732] = {.lex_state = 438}, + [11733] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -38121,143 +38681,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_content] = ACTIONS(1), }, [STATE(1)] = { - [sym_translation_unit] = STATE(10785), - [sym__top_level_item] = STATE(34), - [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_function_definition] = STATE(34), - [sym_declaration] = STATE(34), - [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6284), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2569), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8682), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4304), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(645), - [sym__top_level_statement] = STATE(34), - [sym_labeled_statement] = STATE(34), - [sym__top_level_expression_statement] = STATE(34), - [sym_if_statement] = STATE(34), - [sym_switch_statement] = STATE(34), - [sym_case_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_do_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_return_statement] = STATE(34), - [sym_break_statement] = STATE(34), - [sym_continue_statement] = STATE(34), - [sym_goto_statement] = STATE(34), - [sym_expression] = STATE(7176), - [sym__string] = STATE(7226), - [sym_conditional_expression] = STATE(7290), - [sym_assignment_expression] = STATE(7290), - [sym_pointer_expression] = STATE(5856), - [sym_unary_expression] = STATE(7290), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(7290), - [sym_cast_expression] = STATE(7290), - [sym_sizeof_expression] = STATE(7290), - [sym_alignof_expression] = STATE(7290), - [sym_offsetof_expression] = STATE(7290), - [sym_generic_expression] = STATE(7290), - [sym_subscript_expression] = STATE(5856), - [sym_call_expression] = STATE(5856), - [sym_gnu_asm_expression] = STATE(7290), - [sym_extension_expression] = STATE(7290), - [sym_field_expression] = STATE(5856), - [sym_compound_literal_expression] = STATE(7290), - [sym_parenthesized_expression] = STATE(5856), - [sym_char_literal] = STATE(7226), - [sym_concatenated_string] = STATE(7226), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(7290), - [sym__empty_declaration] = STATE(34), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2354), - [sym_dependent_type] = STATE(4714), - [sym_module_declaration] = STATE(34), - [sym_export_declaration] = STATE(34), - [sym_import_declaration] = STATE(34), - [sym_global_module_fragment_declaration] = STATE(34), - [sym_private_module_fragment_declaration] = STATE(34), - [sym_template_declaration] = STATE(34), - [sym_template_instantiation] = STATE(34), - [sym_operator_cast] = STATE(9060), - [sym__constructor_specifiers] = STATE(2354), - [sym_operator_cast_definition] = STATE(34), - [sym_operator_cast_declaration] = STATE(34), - [sym_constructor_or_destructor_definition] = STATE(34), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(7272), - [sym_namespace_definition] = STATE(34), - [sym_namespace_alias_definition] = STATE(34), - [sym_using_declaration] = STATE(34), - [sym_alias_declaration] = STATE(34), - [sym_static_assert_declaration] = STATE(34), - [sym_consteval_block_declaration] = STATE(34), - [sym_concept_definition] = STATE(34), - [sym_for_range_loop] = STATE(34), - [sym_co_return_statement] = STATE(34), - [sym_co_yield_statement] = STATE(34), - [sym_throw_statement] = STATE(34), - [sym_try_statement] = STATE(34), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(7290), - [sym_new_expression] = STATE(7290), - [sym_delete_expression] = STATE(7290), - [sym_requires_clause] = STATE(7290), - [sym_requires_expression] = STATE(7290), - [sym_lambda_expression] = STATE(7290), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(7290), - [sym_parameter_pack_expansion] = STATE(7290), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5657), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9060), - [sym_reflect_expression] = STATE(7290), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(7274), - [sym_expansion_statement] = STATE(34), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5856), - [aux_sym_translation_unit_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2354), + [sym_translation_unit] = STATE(10650), + [sym__top_level_item] = STATE(114), + [sym_preproc_include] = STATE(114), + [sym_preproc_def] = STATE(114), + [sym_preproc_function_def] = STATE(114), + [sym_preproc_call] = STATE(114), + [sym_preproc_if] = STATE(114), + [sym_preproc_ifdef] = STATE(114), + [sym_function_definition] = STATE(114), + [sym_declaration] = STATE(114), + [sym_type_definition] = STATE(114), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6385), + [sym_linkage_specification] = STATE(114), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2684), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8772), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(114), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4545), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(957), + [sym__top_level_statement] = STATE(114), + [sym_labeled_statement] = STATE(114), + [sym__top_level_expression_statement] = STATE(114), + [sym_if_statement] = STATE(114), + [sym_switch_statement] = STATE(114), + [sym_case_statement] = STATE(114), + [sym_while_statement] = STATE(114), + [sym_do_statement] = STATE(114), + [sym_for_statement] = STATE(114), + [sym_return_statement] = STATE(114), + [sym_break_statement] = STATE(114), + [sym_continue_statement] = STATE(114), + [sym_goto_statement] = STATE(114), + [sym_expression] = STATE(7241), + [sym__string] = STATE(7205), + [sym_conditional_expression] = STATE(7419), + [sym_assignment_expression] = STATE(7419), + [sym_pointer_expression] = STATE(6003), + [sym_unary_expression] = STATE(7419), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(7419), + [sym_cast_expression] = STATE(7419), + [sym_sizeof_expression] = STATE(7419), + [sym_alignof_expression] = STATE(7419), + [sym_offsetof_expression] = STATE(7419), + [sym_generic_expression] = STATE(7419), + [sym_subscript_expression] = STATE(6003), + [sym_call_expression] = STATE(6003), + [sym_gnu_asm_expression] = STATE(7419), + [sym_extension_expression] = STATE(7419), + [sym_field_expression] = STATE(6003), + [sym_compound_literal_expression] = STATE(7419), + [sym_parenthesized_expression] = STATE(6003), + [sym_char_literal] = STATE(7205), + [sym_concatenated_string] = STATE(7205), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(7419), + [sym__empty_declaration] = STATE(114), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2437), + [sym_dependent_type] = STATE(4935), + [sym_module_declaration] = STATE(114), + [sym_export_declaration] = STATE(114), + [sym_import_declaration] = STATE(114), + [sym_global_module_fragment_declaration] = STATE(114), + [sym_private_module_fragment_declaration] = STATE(114), + [sym_template_declaration] = STATE(114), + [sym_template_instantiation] = STATE(114), + [sym_operator_cast] = STATE(9265), + [sym__constructor_specifiers] = STATE(2437), + [sym_operator_cast_definition] = STATE(114), + [sym_operator_cast_declaration] = STATE(114), + [sym_constructor_or_destructor_definition] = STATE(114), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(7311), + [sym_namespace_definition] = STATE(114), + [sym_namespace_alias_definition] = STATE(114), + [sym_using_declaration] = STATE(114), + [sym_alias_declaration] = STATE(114), + [sym_static_assert_declaration] = STATE(114), + [sym_consteval_block_declaration] = STATE(114), + [sym_concept_definition] = STATE(114), + [sym_for_range_loop] = STATE(114), + [sym_co_return_statement] = STATE(114), + [sym_co_yield_statement] = STATE(114), + [sym_throw_statement] = STATE(114), + [sym_try_statement] = STATE(114), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(7419), + [sym_new_expression] = STATE(7419), + [sym_delete_expression] = STATE(7419), + [sym_requires_clause] = STATE(7419), + [sym_requires_expression] = STATE(7419), + [sym_lambda_expression] = STATE(7419), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(7419), + [sym_parameter_pack_expansion] = STATE(7419), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5885), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9265), + [sym_reflect_expression] = STATE(7419), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(7314), + [sym_expansion_statement] = STATE(114), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(6003), + [aux_sym_translation_unit_repeat1] = STATE(114), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2437), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -38397,146 +38957,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(125), }, [STATE(2)] = { - [sym__block_item] = STATE(59), - [sym_preproc_include] = STATE(59), - [sym_preproc_def] = STATE(59), - [sym_preproc_function_def] = STATE(59), - [sym_preproc_call] = STATE(59), - [sym_preproc_if] = STATE(59), - [sym_preproc_ifdef] = STATE(59), - [sym_function_definition] = STATE(59), - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(59), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(59), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6427), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9533), - [sym_initializer_pair] = STATE(9533), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(59), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(59), - [sym_template_instantiation] = STATE(59), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(59), - [sym_operator_cast_declaration] = STATE(59), - [sym_constructor_or_destructor_definition] = STATE(59), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [sym_namespace_definition] = STATE(59), - [sym_namespace_alias_definition] = STATE(59), - [sym_using_declaration] = STATE(59), - [sym_alias_declaration] = STATE(59), - [sym_static_assert_declaration] = STATE(59), - [sym_consteval_block_declaration] = STATE(59), - [sym_concept_definition] = STATE(59), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(59), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym__block_item] = STATE(68), + [sym_preproc_include] = STATE(68), + [sym_preproc_def] = STATE(68), + [sym_preproc_function_def] = STATE(68), + [sym_preproc_call] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_declaration] = STATE(68), + [sym_type_definition] = STATE(68), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(68), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(68), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6529), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(9956), + [sym_initializer_pair] = STATE(9956), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(68), + [sym_preproc_if_in_block] = STATE(68), + [sym_preproc_ifdef_in_block] = STATE(68), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(68), + [sym_import_declaration] = STATE(68), + [sym_template_declaration] = STATE(68), + [sym_template_instantiation] = STATE(68), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(68), + [sym_operator_cast_declaration] = STATE(68), + [sym_constructor_or_destructor_definition] = STATE(68), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(68), + [sym_namespace_alias_definition] = STATE(68), + [sym_using_declaration] = STATE(68), + [sym_alias_declaration] = STATE(68), + [sym_static_assert_declaration] = STATE(68), + [sym_consteval_block_declaration] = STATE(68), + [sym_concept_definition] = STATE(68), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(68), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -38654,16 +39216,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -38677,146 +39241,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(3)] = { - [sym__block_item] = STATE(84), - [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(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(84), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(84), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6427), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9533), - [sym_initializer_pair] = STATE(9533), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(84), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(84), - [sym_template_instantiation] = STATE(84), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(84), - [sym_operator_cast_declaration] = STATE(84), - [sym_constructor_or_destructor_definition] = STATE(84), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(84), - [sym_concept_definition] = STATE(84), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(84), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym__block_item] = STATE(107), + [sym_preproc_include] = STATE(107), + [sym_preproc_def] = STATE(107), + [sym_preproc_function_def] = STATE(107), + [sym_preproc_call] = STATE(107), + [sym_function_definition] = STATE(107), + [sym_declaration] = STATE(107), + [sym_type_definition] = STATE(107), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(107), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(107), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6529), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(9956), + [sym_initializer_pair] = STATE(9956), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(107), + [sym_preproc_if_in_block] = STATE(107), + [sym_preproc_ifdef_in_block] = STATE(107), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(107), + [sym_import_declaration] = STATE(107), + [sym_template_declaration] = STATE(107), + [sym_template_instantiation] = STATE(107), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(107), + [sym_operator_cast_declaration] = STATE(107), + [sym_constructor_or_destructor_definition] = STATE(107), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(107), + [sym_namespace_alias_definition] = STATE(107), + [sym_using_declaration] = STATE(107), + [sym_alias_declaration] = STATE(107), + [sym_static_assert_declaration] = STATE(107), + [sym_consteval_block_declaration] = STATE(107), + [sym_concept_definition] = STATE(107), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(107), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -38852,7 +39418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(197), - [anon_sym_RBRACE] = ACTIONS(255), + [anon_sym_RBRACE] = ACTIONS(259), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -38934,16 +39500,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -38957,146 +39525,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(4)] = { - [sym__block_item] = STATE(61), - [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(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(61), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6427), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9533), - [sym_initializer_pair] = STATE(9533), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym__block_item] = STATE(55), + [sym_preproc_include] = STATE(55), + [sym_preproc_def] = STATE(55), + [sym_preproc_function_def] = STATE(55), + [sym_preproc_call] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(55), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(55), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6529), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(9956), + [sym_initializer_pair] = STATE(9956), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(55), + [sym_preproc_if_in_block] = STATE(55), + [sym_preproc_ifdef_in_block] = STATE(55), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(55), + [sym_import_declaration] = STATE(55), + [sym_template_declaration] = STATE(55), + [sym_template_instantiation] = STATE(55), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(55), + [sym_operator_cast_declaration] = STATE(55), + [sym_constructor_or_destructor_definition] = STATE(55), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(55), + [sym_concept_definition] = STATE(55), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(55), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -39132,7 +39702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(197), - [anon_sym_RBRACE] = ACTIONS(257), + [anon_sym_RBRACE] = ACTIONS(261), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -39214,16 +39784,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -39237,146 +39809,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(5)] = { - [sym__block_item] = STATE(39), - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(39), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6427), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9533), - [sym_initializer_pair] = STATE(9533), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(39), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(39), - [sym_template_instantiation] = STATE(39), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(39), - [sym_operator_cast_declaration] = STATE(39), - [sym_constructor_or_destructor_definition] = STATE(39), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(39), - [sym_concept_definition] = STATE(39), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym__block_item] = STATE(55), + [sym_preproc_include] = STATE(55), + [sym_preproc_def] = STATE(55), + [sym_preproc_function_def] = STATE(55), + [sym_preproc_call] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(55), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(55), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6529), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(9956), + [sym_initializer_pair] = STATE(9956), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(55), + [sym_preproc_if_in_block] = STATE(55), + [sym_preproc_ifdef_in_block] = STATE(55), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(55), + [sym_import_declaration] = STATE(55), + [sym_template_declaration] = STATE(55), + [sym_template_instantiation] = STATE(55), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(55), + [sym_operator_cast_declaration] = STATE(55), + [sym_constructor_or_destructor_definition] = STATE(55), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(55), + [sym_concept_definition] = STATE(55), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(55), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -39412,7 +39986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(197), - [anon_sym_RBRACE] = ACTIONS(259), + [anon_sym_RBRACE] = ACTIONS(263), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -39494,16 +40068,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -39517,146 +40093,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(6)] = { - [sym__block_item] = STATE(39), - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(39), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6427), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9533), - [sym_initializer_pair] = STATE(9533), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(39), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(39), - [sym_template_instantiation] = STATE(39), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(39), - [sym_operator_cast_declaration] = STATE(39), - [sym_constructor_or_destructor_definition] = STATE(39), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(39), - [sym_concept_definition] = STATE(39), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym__block_item] = STATE(74), + [sym_preproc_include] = STATE(74), + [sym_preproc_def] = STATE(74), + [sym_preproc_function_def] = STATE(74), + [sym_preproc_call] = STATE(74), + [sym_function_definition] = STATE(74), + [sym_declaration] = STATE(74), + [sym_type_definition] = STATE(74), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(74), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(74), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6529), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(9956), + [sym_initializer_pair] = STATE(9956), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(74), + [sym_preproc_if_in_block] = STATE(74), + [sym_preproc_ifdef_in_block] = STATE(74), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(74), + [sym_import_declaration] = STATE(74), + [sym_template_declaration] = STATE(74), + [sym_template_instantiation] = STATE(74), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(74), + [sym_operator_cast_declaration] = STATE(74), + [sym_constructor_or_destructor_definition] = STATE(74), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(74), + [sym_concept_definition] = STATE(74), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(74), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -39692,7 +40270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(197), - [anon_sym_RBRACE] = ACTIONS(261), + [anon_sym_RBRACE] = ACTIONS(265), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -39774,16 +40352,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -39797,146 +40377,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(7)] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6427), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9533), - [sym_initializer_pair] = STATE(9533), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(51), - [sym_concept_definition] = STATE(51), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym__block_item] = STATE(79), + [sym_preproc_include] = STATE(79), + [sym_preproc_def] = STATE(79), + [sym_preproc_function_def] = STATE(79), + [sym_preproc_call] = STATE(79), + [sym_function_definition] = STATE(79), + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(79), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(79), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6529), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(9956), + [sym_initializer_pair] = STATE(9956), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(79), + [sym_preproc_if_in_block] = STATE(79), + [sym_preproc_ifdef_in_block] = STATE(79), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(79), + [sym_import_declaration] = STATE(79), + [sym_template_declaration] = STATE(79), + [sym_template_instantiation] = STATE(79), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(79), + [sym_operator_cast_declaration] = STATE(79), + [sym_constructor_or_destructor_definition] = STATE(79), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(79), + [sym_concept_definition] = STATE(79), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(79), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -39972,7 +40554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(197), - [anon_sym_RBRACE] = ACTIONS(263), + [anon_sym_RBRACE] = ACTIONS(267), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -40054,16 +40636,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -40077,146 +40661,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(8)] = { - [sym__block_item] = STATE(65), - [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(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(65), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(65), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6427), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9533), - [sym_initializer_pair] = STATE(9533), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(65), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(65), - [sym_template_instantiation] = STATE(65), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(65), - [sym_operator_cast_declaration] = STATE(65), - [sym_constructor_or_destructor_definition] = STATE(65), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(65), - [sym_concept_definition] = STATE(65), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(65), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym__block_item] = STATE(89), + [sym_preproc_include] = STATE(89), + [sym_preproc_def] = STATE(89), + [sym_preproc_function_def] = STATE(89), + [sym_preproc_call] = STATE(89), + [sym_function_definition] = STATE(89), + [sym_declaration] = STATE(89), + [sym_type_definition] = STATE(89), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(89), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(89), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6529), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(9956), + [sym_initializer_pair] = STATE(9956), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(89), + [sym_preproc_if_in_block] = STATE(89), + [sym_preproc_ifdef_in_block] = STATE(89), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(89), + [sym_import_declaration] = STATE(89), + [sym_template_declaration] = STATE(89), + [sym_template_instantiation] = STATE(89), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(89), + [sym_operator_cast_declaration] = STATE(89), + [sym_constructor_or_destructor_definition] = STATE(89), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(89), + [sym_namespace_alias_definition] = STATE(89), + [sym_using_declaration] = STATE(89), + [sym_alias_declaration] = STATE(89), + [sym_static_assert_declaration] = STATE(89), + [sym_consteval_block_declaration] = STATE(89), + [sym_concept_definition] = STATE(89), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(89), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -40252,7 +40838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(197), - [anon_sym_RBRACE] = ACTIONS(265), + [anon_sym_RBRACE] = ACTIONS(269), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -40334,16 +40920,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -40357,146 +40945,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(9)] = { - [sym__block_item] = STATE(63), - [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(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(63), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(63), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6427), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9533), - [sym_initializer_pair] = STATE(9533), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(63), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(63), - [sym_template_instantiation] = STATE(63), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(63), - [sym_operator_cast_declaration] = STATE(63), - [sym_constructor_or_destructor_definition] = STATE(63), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(63), - [sym_concept_definition] = STATE(63), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(63), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym__block_item] = STATE(87), + [sym_preproc_include] = STATE(87), + [sym_preproc_def] = STATE(87), + [sym_preproc_function_def] = STATE(87), + [sym_preproc_call] = STATE(87), + [sym_function_definition] = STATE(87), + [sym_declaration] = STATE(87), + [sym_type_definition] = STATE(87), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(87), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(87), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6529), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(9956), + [sym_initializer_pair] = STATE(9956), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(87), + [sym_preproc_if_in_block] = STATE(87), + [sym_preproc_ifdef_in_block] = STATE(87), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(87), + [sym_import_declaration] = STATE(87), + [sym_template_declaration] = STATE(87), + [sym_template_instantiation] = STATE(87), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(87), + [sym_operator_cast_declaration] = STATE(87), + [sym_constructor_or_destructor_definition] = STATE(87), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(87), + [sym_concept_definition] = STATE(87), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(87), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -40532,7 +41122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(197), - [anon_sym_RBRACE] = ACTIONS(267), + [anon_sym_RBRACE] = ACTIONS(271), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -40614,16 +41204,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -40637,146 +41229,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(10)] = { - [sym__block_item] = STATE(65), - [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(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(65), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(65), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6427), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9533), - [sym_initializer_pair] = STATE(9533), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(65), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(65), - [sym_template_instantiation] = STATE(65), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(65), - [sym_operator_cast_declaration] = STATE(65), - [sym_constructor_or_destructor_definition] = STATE(65), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(65), - [sym_concept_definition] = STATE(65), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(65), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym__block_item] = STATE(89), + [sym_preproc_include] = STATE(89), + [sym_preproc_def] = STATE(89), + [sym_preproc_function_def] = STATE(89), + [sym_preproc_call] = STATE(89), + [sym_function_definition] = STATE(89), + [sym_declaration] = STATE(89), + [sym_type_definition] = STATE(89), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(89), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(89), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6529), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(9956), + [sym_initializer_pair] = STATE(9956), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(89), + [sym_preproc_if_in_block] = STATE(89), + [sym_preproc_ifdef_in_block] = STATE(89), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(89), + [sym_import_declaration] = STATE(89), + [sym_template_declaration] = STATE(89), + [sym_template_instantiation] = STATE(89), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(89), + [sym_operator_cast_declaration] = STATE(89), + [sym_constructor_or_destructor_definition] = STATE(89), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(89), + [sym_namespace_alias_definition] = STATE(89), + [sym_using_declaration] = STATE(89), + [sym_alias_declaration] = STATE(89), + [sym_static_assert_declaration] = STATE(89), + [sym_consteval_block_declaration] = STATE(89), + [sym_concept_definition] = STATE(89), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(89), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -40812,7 +41406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(197), - [anon_sym_RBRACE] = ACTIONS(269), + [anon_sym_RBRACE] = ACTIONS(273), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -40894,16 +41488,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -40917,146 +41513,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(11)] = { - [sym__block_item] = STATE(84), - [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(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(84), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(84), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6427), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9533), - [sym_initializer_pair] = STATE(9533), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(84), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(84), - [sym_template_instantiation] = STATE(84), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(84), - [sym_operator_cast_declaration] = STATE(84), - [sym_constructor_or_destructor_definition] = STATE(84), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(84), - [sym_concept_definition] = STATE(84), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(84), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym__block_item] = STATE(107), + [sym_preproc_include] = STATE(107), + [sym_preproc_def] = STATE(107), + [sym_preproc_function_def] = STATE(107), + [sym_preproc_call] = STATE(107), + [sym_function_definition] = STATE(107), + [sym_declaration] = STATE(107), + [sym_type_definition] = STATE(107), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(107), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(107), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6529), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(9956), + [sym_initializer_pair] = STATE(9956), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(107), + [sym_preproc_if_in_block] = STATE(107), + [sym_preproc_ifdef_in_block] = STATE(107), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(107), + [sym_import_declaration] = STATE(107), + [sym_template_declaration] = STATE(107), + [sym_template_instantiation] = STATE(107), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(107), + [sym_operator_cast_declaration] = STATE(107), + [sym_constructor_or_destructor_definition] = STATE(107), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(107), + [sym_namespace_alias_definition] = STATE(107), + [sym_using_declaration] = STATE(107), + [sym_alias_declaration] = STATE(107), + [sym_static_assert_declaration] = STATE(107), + [sym_consteval_block_declaration] = STATE(107), + [sym_concept_definition] = STATE(107), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(107), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -41092,7 +41690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(197), - [anon_sym_RBRACE] = ACTIONS(271), + [anon_sym_RBRACE] = ACTIONS(275), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -41174,16 +41772,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -41197,146 +41797,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(12)] = { - [sym__block_item] = STATE(59), - [sym_preproc_include] = STATE(59), - [sym_preproc_def] = STATE(59), - [sym_preproc_function_def] = STATE(59), - [sym_preproc_call] = STATE(59), - [sym_preproc_if] = STATE(59), - [sym_preproc_ifdef] = STATE(59), - [sym_function_definition] = STATE(59), - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(59), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(59), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6427), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9533), - [sym_initializer_pair] = STATE(9533), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(59), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(59), - [sym_template_instantiation] = STATE(59), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(59), - [sym_operator_cast_declaration] = STATE(59), - [sym_constructor_or_destructor_definition] = STATE(59), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [sym_namespace_definition] = STATE(59), - [sym_namespace_alias_definition] = STATE(59), - [sym_using_declaration] = STATE(59), - [sym_alias_declaration] = STATE(59), - [sym_static_assert_declaration] = STATE(59), - [sym_consteval_block_declaration] = STATE(59), - [sym_concept_definition] = STATE(59), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(59), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), + [sym__block_item] = STATE(79), + [sym_preproc_include] = STATE(79), + [sym_preproc_def] = STATE(79), + [sym_preproc_function_def] = STATE(79), + [sym_preproc_call] = STATE(79), + [sym_function_definition] = STATE(79), + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(79), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(79), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6529), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(9956), + [sym_initializer_pair] = STATE(9956), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(79), + [sym_preproc_if_in_block] = STATE(79), + [sym_preproc_ifdef_in_block] = STATE(79), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(79), + [sym_import_declaration] = STATE(79), + [sym_template_declaration] = STATE(79), + [sym_template_instantiation] = STATE(79), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(79), + [sym_operator_cast_declaration] = STATE(79), + [sym_constructor_or_destructor_definition] = STATE(79), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(79), + [sym_concept_definition] = STATE(79), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(79), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -41372,7 +41974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(197), - [anon_sym_RBRACE] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(277), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -41454,16 +42056,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -41477,155 +42081,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(13)] = { - [sym__block_item] = STATE(33), - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(10812), - [sym_preproc_elif] = STATE(10812), - [sym_preproc_elifdef] = STATE(10812), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6273), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2618), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8647), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(360), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4302), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(33), - [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(9076), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(33), - [sym_operator_cast_declaration] = STATE(33), - [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(33), - [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9076), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(153), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), - [sym_identifier] = ACTIONS(275), - [aux_sym_preproc_include_token1] = ACTIONS(277), - [aux_sym_preproc_def_token1] = ACTIONS(279), - [aux_sym_preproc_if_token1] = ACTIONS(281), - [aux_sym_preproc_if_token2] = ACTIONS(283), - [aux_sym_preproc_ifdef_token1] = ACTIONS(285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(285), - [aux_sym_preproc_else_token1] = ACTIONS(287), - [aux_sym_preproc_elif_token1] = ACTIONS(289), - [aux_sym_preproc_elifdef_token1] = ACTIONS(291), - [aux_sym_preproc_elifdef_token2] = ACTIONS(291), - [sym_preproc_directive] = ACTIONS(293), + [sym__block_item] = STATE(29), + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_function_definition] = STATE(29), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(339), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(405), + [sym_statement] = STATE(29), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(29), + [sym_preproc_if_in_block] = STATE(29), + [sym_preproc_ifdef_in_block] = STATE(29), + [sym_preproc_else_in_block] = STATE(11510), + [sym_preproc_elif_in_block] = STATE(11510), + [sym_preproc_elifdef_in_block] = STATE(11510), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(29), + [sym_import_declaration] = STATE(29), + [sym_template_declaration] = STATE(29), + [sym_template_instantiation] = STATE(29), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(29), + [sym_operator_cast_declaration] = STATE(29), + [sym_constructor_or_destructor_definition] = STATE(29), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(29), + [sym_concept_definition] = STATE(29), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(29), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(287), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(291), + [aux_sym_preproc_elif_token1] = ACTIONS(293), + [aux_sym_preproc_elifdef_token1] = ACTIONS(295), + [aux_sym_preproc_elifdef_token2] = ACTIONS(295), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -41634,14 +42240,14 @@ 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(295), - [anon_sym___extension__] = ACTIONS(297), - [anon_sym_typedef] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(301), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(303), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -41652,7 +42258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -41660,7 +42266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -41677,7 +42283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(309), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -41685,19 +42291,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -41733,16 +42339,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(337), + [anon_sym_export] = ACTIONS(341), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(339), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_static_assert] = ACTIONS(345), - [anon_sym_concept] = ACTIONS(347), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -41756,155 +42364,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(14)] = { - [sym__block_item] = STATE(27), - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(11114), - [sym_preproc_elif] = STATE(11114), - [sym_preproc_elifdef] = STATE(11114), - [sym_function_definition] = STATE(27), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6273), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2618), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8647), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(360), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4302), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(27), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(27), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(27), - [sym_template_instantiation] = STATE(27), - [sym_operator_cast] = STATE(9076), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(27), - [sym_operator_cast_declaration] = STATE(27), - [sym_constructor_or_destructor_definition] = STATE(27), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(27), - [sym_concept_definition] = STATE(27), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9076), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(153), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), - [sym_identifier] = ACTIONS(275), - [aux_sym_preproc_include_token1] = ACTIONS(277), - [aux_sym_preproc_def_token1] = ACTIONS(279), - [aux_sym_preproc_if_token1] = ACTIONS(281), - [aux_sym_preproc_if_token2] = ACTIONS(353), - [aux_sym_preproc_ifdef_token1] = ACTIONS(285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(285), - [aux_sym_preproc_else_token1] = ACTIONS(287), - [aux_sym_preproc_elif_token1] = ACTIONS(289), - [aux_sym_preproc_elifdef_token1] = ACTIONS(291), - [aux_sym_preproc_elifdef_token2] = ACTIONS(291), - [sym_preproc_directive] = ACTIONS(293), + [sym__block_item] = STATE(16), + [sym_preproc_include] = STATE(16), + [sym_preproc_def] = STATE(16), + [sym_preproc_function_def] = STATE(16), + [sym_preproc_call] = STATE(16), + [sym_function_definition] = STATE(16), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(339), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(405), + [sym_statement] = STATE(16), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(16), + [sym_preproc_if_in_block] = STATE(16), + [sym_preproc_ifdef_in_block] = STATE(16), + [sym_preproc_else_in_block] = STATE(11606), + [sym_preproc_elif_in_block] = STATE(11606), + [sym_preproc_elifdef_in_block] = STATE(11606), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(16), + [sym_import_declaration] = STATE(16), + [sym_template_declaration] = STATE(16), + [sym_template_instantiation] = STATE(16), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(16), + [sym_operator_cast_declaration] = STATE(16), + [sym_constructor_or_destructor_definition] = STATE(16), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(16), + [sym_namespace_alias_definition] = STATE(16), + [sym_using_declaration] = STATE(16), + [sym_alias_declaration] = STATE(16), + [sym_static_assert_declaration] = STATE(16), + [sym_consteval_block_declaration] = STATE(16), + [sym_concept_definition] = STATE(16), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(16), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(361), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(291), + [aux_sym_preproc_elif_token1] = ACTIONS(293), + [aux_sym_preproc_elifdef_token1] = ACTIONS(295), + [aux_sym_preproc_elifdef_token2] = ACTIONS(295), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -41913,14 +42523,14 @@ 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(295), - [anon_sym___extension__] = ACTIONS(297), - [anon_sym_typedef] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(301), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(303), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -41931,7 +42541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -41939,7 +42549,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -41956,7 +42566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(309), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -41964,19 +42574,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -42012,16 +42622,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(337), + [anon_sym_export] = ACTIONS(341), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(339), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_static_assert] = ACTIONS(345), - [anon_sym_concept] = ACTIONS(347), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -42040,97 +42652,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(17), [sym_preproc_function_def] = STATE(17), [sym_preproc_call] = STATE(17), - [sym_preproc_if] = STATE(17), - [sym_preproc_ifdef] = STATE(17), - [sym_preproc_else] = STATE(10511), - [sym_preproc_elif] = STATE(10511), - [sym_preproc_elifdef] = STATE(10511), [sym_function_definition] = STATE(17), [sym_declaration] = STATE(17), [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6273), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2618), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8647), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(360), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4302), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(512), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(339), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(405), [sym_statement] = STATE(17), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), [sym__empty_declaration] = STATE(17), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(4714), + [sym_preproc_if_in_block] = STATE(17), + [sym_preproc_ifdef_in_block] = STATE(17), + [sym_preproc_else_in_block] = STATE(10722), + [sym_preproc_elif_in_block] = STATE(10722), + [sym_preproc_elifdef_in_block] = STATE(10722), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(17), + [sym_import_declaration] = STATE(17), [sym_template_declaration] = STATE(17), [sym_template_instantiation] = STATE(17), - [sym_operator_cast] = STATE(9076), - [sym__constructor_specifiers] = STATE(2409), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), [sym_operator_cast_definition] = STATE(17), [sym_operator_cast_declaration] = STATE(17), [sym_constructor_or_destructor_definition] = STATE(17), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(17), [sym_namespace_alias_definition] = STATE(17), [sym_using_declaration] = STATE(17), @@ -42138,52 +42752,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(17), [sym_consteval_block_declaration] = STATE(17), [sym_concept_definition] = STATE(17), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9076), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(153), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), - [sym_identifier] = ACTIONS(275), - [aux_sym_preproc_include_token1] = ACTIONS(277), - [aux_sym_preproc_def_token1] = ACTIONS(279), - [aux_sym_preproc_if_token1] = ACTIONS(281), - [aux_sym_preproc_if_token2] = ACTIONS(355), - [aux_sym_preproc_ifdef_token1] = ACTIONS(285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(285), - [aux_sym_preproc_else_token1] = ACTIONS(287), - [aux_sym_preproc_elif_token1] = ACTIONS(289), - [aux_sym_preproc_elifdef_token1] = ACTIONS(291), - [aux_sym_preproc_elifdef_token2] = ACTIONS(291), - [sym_preproc_directive] = ACTIONS(293), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(17), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(363), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(291), + [aux_sym_preproc_elif_token1] = ACTIONS(293), + [aux_sym_preproc_elifdef_token1] = ACTIONS(295), + [aux_sym_preproc_elifdef_token2] = ACTIONS(295), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -42192,14 +42806,14 @@ 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(295), - [anon_sym___extension__] = ACTIONS(297), - [anon_sym_typedef] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(301), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(303), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -42210,7 +42824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -42218,7 +42832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -42235,7 +42849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(309), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -42243,19 +42857,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -42291,16 +42905,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(337), + [anon_sym_export] = ACTIONS(341), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(339), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_static_assert] = ACTIONS(345), - [anon_sym_concept] = ACTIONS(347), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -42314,155 +42930,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(16)] = { - [sym__block_item] = STATE(13), - [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(11203), - [sym_preproc_elif] = STATE(11203), - [sym_preproc_elifdef] = STATE(11203), - [sym_function_definition] = STATE(13), - [sym_declaration] = STATE(13), - [sym_type_definition] = STATE(13), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6273), - [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2618), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8647), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(360), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4302), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(13), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(13), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(13), - [sym_template_instantiation] = STATE(13), - [sym_operator_cast] = STATE(9076), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(13), - [sym_operator_cast_declaration] = STATE(13), - [sym_constructor_or_destructor_definition] = STATE(13), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(13), - [sym_concept_definition] = STATE(13), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9076), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(153), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), - [sym_identifier] = ACTIONS(275), - [aux_sym_preproc_include_token1] = ACTIONS(277), - [aux_sym_preproc_def_token1] = ACTIONS(279), - [aux_sym_preproc_if_token1] = ACTIONS(281), - [aux_sym_preproc_if_token2] = ACTIONS(357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(285), - [aux_sym_preproc_else_token1] = ACTIONS(287), - [aux_sym_preproc_elif_token1] = ACTIONS(289), - [aux_sym_preproc_elifdef_token1] = ACTIONS(291), - [aux_sym_preproc_elifdef_token2] = ACTIONS(291), - [sym_preproc_directive] = ACTIONS(293), + [sym__block_item] = STATE(49), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_function_definition] = STATE(49), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(339), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(405), + [sym_statement] = STATE(49), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(49), + [sym_preproc_if_in_block] = STATE(49), + [sym_preproc_ifdef_in_block] = STATE(49), + [sym_preproc_else_in_block] = STATE(11067), + [sym_preproc_elif_in_block] = STATE(11067), + [sym_preproc_elifdef_in_block] = STATE(11067), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(49), + [sym_import_declaration] = STATE(49), + [sym_template_declaration] = STATE(49), + [sym_template_instantiation] = STATE(49), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(49), + [sym_operator_cast_declaration] = STATE(49), + [sym_constructor_or_destructor_definition] = STATE(49), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(49), + [sym_concept_definition] = STATE(49), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(49), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(291), + [aux_sym_preproc_elif_token1] = ACTIONS(293), + [aux_sym_preproc_elifdef_token1] = ACTIONS(295), + [aux_sym_preproc_elifdef_token2] = ACTIONS(295), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -42471,14 +43089,14 @@ 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(295), - [anon_sym___extension__] = ACTIONS(297), - [anon_sym_typedef] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(301), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(303), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -42489,7 +43107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -42497,7 +43115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -42514,7 +43132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(309), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -42522,19 +43140,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -42570,16 +43188,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(337), + [anon_sym_export] = ACTIONS(341), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(339), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_static_assert] = ACTIONS(345), - [anon_sym_concept] = ACTIONS(347), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -42593,155 +43213,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(17)] = { - [sym__block_item] = STATE(33), - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(11210), - [sym_preproc_elif] = STATE(11210), - [sym_preproc_elifdef] = STATE(11210), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6273), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2618), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8647), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(360), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4302), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(33), - [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(9076), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(33), - [sym_operator_cast_declaration] = STATE(33), - [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(33), - [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9076), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(153), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), - [sym_identifier] = ACTIONS(275), - [aux_sym_preproc_include_token1] = ACTIONS(277), - [aux_sym_preproc_def_token1] = ACTIONS(279), - [aux_sym_preproc_if_token1] = ACTIONS(281), - [aux_sym_preproc_if_token2] = ACTIONS(359), - [aux_sym_preproc_ifdef_token1] = ACTIONS(285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(285), - [aux_sym_preproc_else_token1] = ACTIONS(287), - [aux_sym_preproc_elif_token1] = ACTIONS(289), - [aux_sym_preproc_elifdef_token1] = ACTIONS(291), - [aux_sym_preproc_elifdef_token2] = ACTIONS(291), - [sym_preproc_directive] = ACTIONS(293), + [sym__block_item] = STATE(49), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_function_definition] = STATE(49), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(339), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(405), + [sym_statement] = STATE(49), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(49), + [sym_preproc_if_in_block] = STATE(49), + [sym_preproc_ifdef_in_block] = STATE(49), + [sym_preproc_else_in_block] = STATE(11407), + [sym_preproc_elif_in_block] = STATE(11407), + [sym_preproc_elifdef_in_block] = STATE(11407), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(49), + [sym_import_declaration] = STATE(49), + [sym_template_declaration] = STATE(49), + [sym_template_instantiation] = STATE(49), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(49), + [sym_operator_cast_declaration] = STATE(49), + [sym_constructor_or_destructor_definition] = STATE(49), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(49), + [sym_concept_definition] = STATE(49), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(49), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(367), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(291), + [aux_sym_preproc_elif_token1] = ACTIONS(293), + [aux_sym_preproc_elifdef_token1] = ACTIONS(295), + [aux_sym_preproc_elifdef_token2] = ACTIONS(295), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -42750,14 +43372,14 @@ 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(295), - [anon_sym___extension__] = ACTIONS(297), - [anon_sym_typedef] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(301), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(303), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -42768,7 +43390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -42776,7 +43398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -42793,7 +43415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(309), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -42801,19 +43423,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -42849,16 +43471,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(337), + [anon_sym_export] = ACTIONS(341), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(339), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_static_assert] = ACTIONS(345), - [anon_sym_concept] = ACTIONS(347), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -42872,155 +43496,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(18)] = { - [sym__block_item] = STATE(33), - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(11350), - [sym_preproc_elif] = STATE(11350), - [sym_preproc_elifdef] = STATE(11350), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6273), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2618), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8647), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(360), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4302), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(33), - [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(9076), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(33), - [sym_operator_cast_declaration] = STATE(33), - [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(33), - [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9076), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(153), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), - [sym_identifier] = ACTIONS(275), - [aux_sym_preproc_include_token1] = ACTIONS(277), - [aux_sym_preproc_def_token1] = ACTIONS(279), - [aux_sym_preproc_if_token1] = ACTIONS(281), - [aux_sym_preproc_if_token2] = ACTIONS(361), - [aux_sym_preproc_ifdef_token1] = ACTIONS(285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(285), - [aux_sym_preproc_else_token1] = ACTIONS(287), - [aux_sym_preproc_elif_token1] = ACTIONS(289), - [aux_sym_preproc_elifdef_token1] = ACTIONS(291), - [aux_sym_preproc_elifdef_token2] = ACTIONS(291), - [sym_preproc_directive] = ACTIONS(293), + [sym__block_item] = STATE(30), + [sym_preproc_include] = STATE(30), + [sym_preproc_def] = STATE(30), + [sym_preproc_function_def] = STATE(30), + [sym_preproc_call] = STATE(30), + [sym_function_definition] = STATE(30), + [sym_declaration] = STATE(30), + [sym_type_definition] = STATE(30), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(30), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(339), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(405), + [sym_statement] = STATE(30), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(30), + [sym_preproc_if_in_block] = STATE(30), + [sym_preproc_ifdef_in_block] = STATE(30), + [sym_preproc_else_in_block] = STATE(11206), + [sym_preproc_elif_in_block] = STATE(11206), + [sym_preproc_elifdef_in_block] = STATE(11206), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(30), + [sym_import_declaration] = STATE(30), + [sym_template_declaration] = STATE(30), + [sym_template_instantiation] = STATE(30), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(30), + [sym_operator_cast_declaration] = STATE(30), + [sym_constructor_or_destructor_definition] = STATE(30), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(30), + [sym_concept_definition] = STATE(30), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(30), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(369), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(291), + [aux_sym_preproc_elif_token1] = ACTIONS(293), + [aux_sym_preproc_elifdef_token1] = ACTIONS(295), + [aux_sym_preproc_elifdef_token2] = ACTIONS(295), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -43029,14 +43655,14 @@ 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(295), - [anon_sym___extension__] = ACTIONS(297), - [anon_sym_typedef] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(301), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(303), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -43047,7 +43673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -43055,7 +43681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -43072,7 +43698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(309), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -43080,19 +43706,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -43128,16 +43754,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(337), + [anon_sym_export] = ACTIONS(341), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(339), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_static_assert] = ACTIONS(345), - [anon_sym_concept] = ACTIONS(347), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -43151,155 +43779,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(19)] = { - [sym__block_item] = STATE(20), - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(10610), - [sym_preproc_elif] = STATE(10610), - [sym_preproc_elifdef] = STATE(10610), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6273), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2618), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8647), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(360), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4302), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(20), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(20), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(20), - [sym_template_instantiation] = STATE(20), - [sym_operator_cast] = STATE(9076), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(20), - [sym_operator_cast_declaration] = STATE(20), - [sym_constructor_or_destructor_definition] = STATE(20), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(20), - [sym_concept_definition] = STATE(20), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9076), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(153), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), - [sym_identifier] = ACTIONS(275), - [aux_sym_preproc_include_token1] = ACTIONS(277), - [aux_sym_preproc_def_token1] = ACTIONS(279), - [aux_sym_preproc_if_token1] = ACTIONS(281), - [aux_sym_preproc_if_token2] = ACTIONS(363), - [aux_sym_preproc_ifdef_token1] = ACTIONS(285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(285), - [aux_sym_preproc_else_token1] = ACTIONS(287), - [aux_sym_preproc_elif_token1] = ACTIONS(289), - [aux_sym_preproc_elifdef_token1] = ACTIONS(291), - [aux_sym_preproc_elifdef_token2] = ACTIONS(291), - [sym_preproc_directive] = ACTIONS(293), + [sym__block_item] = STATE(21), + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_function_definition] = STATE(21), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(339), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(405), + [sym_statement] = STATE(21), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(21), + [sym_preproc_if_in_block] = STATE(21), + [sym_preproc_ifdef_in_block] = STATE(21), + [sym_preproc_else_in_block] = STATE(10821), + [sym_preproc_elif_in_block] = STATE(10821), + [sym_preproc_elifdef_in_block] = STATE(10821), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(21), + [sym_import_declaration] = STATE(21), + [sym_template_declaration] = STATE(21), + [sym_template_instantiation] = STATE(21), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(21), + [sym_operator_cast_declaration] = STATE(21), + [sym_constructor_or_destructor_definition] = STATE(21), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(21), + [sym_namespace_alias_definition] = STATE(21), + [sym_using_declaration] = STATE(21), + [sym_alias_declaration] = STATE(21), + [sym_static_assert_declaration] = STATE(21), + [sym_consteval_block_declaration] = STATE(21), + [sym_concept_definition] = STATE(21), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(21), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(371), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(291), + [aux_sym_preproc_elif_token1] = ACTIONS(293), + [aux_sym_preproc_elifdef_token1] = ACTIONS(295), + [aux_sym_preproc_elifdef_token2] = ACTIONS(295), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -43308,14 +43938,14 @@ 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(295), - [anon_sym___extension__] = ACTIONS(297), - [anon_sym_typedef] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(301), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(303), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -43326,7 +43956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -43334,7 +43964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -43351,7 +43981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(309), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -43359,19 +43989,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -43407,16 +44037,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(337), + [anon_sym_export] = ACTIONS(341), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(339), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_static_assert] = ACTIONS(345), - [anon_sym_concept] = ACTIONS(347), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -43430,155 +44062,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(20)] = { - [sym__block_item] = STATE(33), - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(10869), - [sym_preproc_elif] = STATE(10869), - [sym_preproc_elifdef] = STATE(10869), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6273), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2618), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8647), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(360), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4302), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(33), - [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(9076), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(33), - [sym_operator_cast_declaration] = STATE(33), - [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(33), - [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9076), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(153), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), - [sym_identifier] = ACTIONS(275), - [aux_sym_preproc_include_token1] = ACTIONS(277), - [aux_sym_preproc_def_token1] = ACTIONS(279), - [aux_sym_preproc_if_token1] = ACTIONS(281), - [aux_sym_preproc_if_token2] = ACTIONS(365), - [aux_sym_preproc_ifdef_token1] = ACTIONS(285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(285), - [aux_sym_preproc_else_token1] = ACTIONS(287), - [aux_sym_preproc_elif_token1] = ACTIONS(289), - [aux_sym_preproc_elifdef_token1] = ACTIONS(291), - [aux_sym_preproc_elifdef_token2] = ACTIONS(291), - [sym_preproc_directive] = ACTIONS(293), + [sym__block_item] = STATE(32), + [sym_preproc_include] = STATE(32), + [sym_preproc_def] = STATE(32), + [sym_preproc_function_def] = STATE(32), + [sym_preproc_call] = STATE(32), + [sym_function_definition] = STATE(32), + [sym_declaration] = STATE(32), + [sym_type_definition] = STATE(32), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(32), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(339), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(405), + [sym_statement] = STATE(32), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(32), + [sym_preproc_if_in_block] = STATE(32), + [sym_preproc_ifdef_in_block] = STATE(32), + [sym_preproc_else_in_block] = STATE(10630), + [sym_preproc_elif_in_block] = STATE(10630), + [sym_preproc_elifdef_in_block] = STATE(10630), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(32), + [sym_import_declaration] = STATE(32), + [sym_template_declaration] = STATE(32), + [sym_template_instantiation] = STATE(32), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(32), + [sym_operator_cast_declaration] = STATE(32), + [sym_constructor_or_destructor_definition] = STATE(32), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(32), + [sym_namespace_alias_definition] = STATE(32), + [sym_using_declaration] = STATE(32), + [sym_alias_declaration] = STATE(32), + [sym_static_assert_declaration] = STATE(32), + [sym_consteval_block_declaration] = STATE(32), + [sym_concept_definition] = STATE(32), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(32), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(373), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(291), + [aux_sym_preproc_elif_token1] = ACTIONS(293), + [aux_sym_preproc_elifdef_token1] = ACTIONS(295), + [aux_sym_preproc_elifdef_token2] = ACTIONS(295), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -43587,14 +44221,14 @@ 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(295), - [anon_sym___extension__] = ACTIONS(297), - [anon_sym_typedef] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(301), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(303), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -43605,7 +44239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -43613,7 +44247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -43630,7 +44264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(309), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -43638,19 +44272,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -43686,16 +44320,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(337), + [anon_sym_export] = ACTIONS(341), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(339), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_static_assert] = ACTIONS(345), - [anon_sym_concept] = ACTIONS(347), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -43709,155 +44345,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(21)] = { - [sym__block_item] = STATE(23), - [sym_preproc_include] = STATE(23), - [sym_preproc_def] = STATE(23), - [sym_preproc_function_def] = STATE(23), - [sym_preproc_call] = STATE(23), - [sym_preproc_if] = STATE(23), - [sym_preproc_ifdef] = STATE(23), - [sym_preproc_else] = STATE(10863), - [sym_preproc_elif] = STATE(10863), - [sym_preproc_elifdef] = STATE(10863), - [sym_function_definition] = STATE(23), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6273), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2618), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8647), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(360), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4302), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(23), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(23), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(23), - [sym_template_instantiation] = STATE(23), - [sym_operator_cast] = STATE(9076), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(23), - [sym_operator_cast_declaration] = STATE(23), - [sym_constructor_or_destructor_definition] = STATE(23), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(23), - [sym_concept_definition] = STATE(23), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9076), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(153), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), - [sym_identifier] = ACTIONS(275), - [aux_sym_preproc_include_token1] = ACTIONS(277), - [aux_sym_preproc_def_token1] = ACTIONS(279), - [aux_sym_preproc_if_token1] = ACTIONS(281), - [aux_sym_preproc_if_token2] = ACTIONS(367), - [aux_sym_preproc_ifdef_token1] = ACTIONS(285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(285), - [aux_sym_preproc_else_token1] = ACTIONS(287), - [aux_sym_preproc_elif_token1] = ACTIONS(289), - [aux_sym_preproc_elifdef_token1] = ACTIONS(291), - [aux_sym_preproc_elifdef_token2] = ACTIONS(291), - [sym_preproc_directive] = ACTIONS(293), + [sym__block_item] = STATE(49), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_function_definition] = STATE(49), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(339), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(405), + [sym_statement] = STATE(49), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(49), + [sym_preproc_if_in_block] = STATE(49), + [sym_preproc_ifdef_in_block] = STATE(49), + [sym_preproc_else_in_block] = STATE(10652), + [sym_preproc_elif_in_block] = STATE(10652), + [sym_preproc_elifdef_in_block] = STATE(10652), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(49), + [sym_import_declaration] = STATE(49), + [sym_template_declaration] = STATE(49), + [sym_template_instantiation] = STATE(49), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(49), + [sym_operator_cast_declaration] = STATE(49), + [sym_constructor_or_destructor_definition] = STATE(49), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(49), + [sym_concept_definition] = STATE(49), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(49), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(375), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(291), + [aux_sym_preproc_elif_token1] = ACTIONS(293), + [aux_sym_preproc_elifdef_token1] = ACTIONS(295), + [aux_sym_preproc_elifdef_token2] = ACTIONS(295), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -43866,14 +44504,14 @@ 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(295), - [anon_sym___extension__] = ACTIONS(297), - [anon_sym_typedef] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(301), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(303), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -43884,7 +44522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -43892,7 +44530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -43909,7 +44547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(309), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -43917,19 +44555,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -43965,16 +44603,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(337), + [anon_sym_export] = ACTIONS(341), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(339), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_static_assert] = ACTIONS(345), - [anon_sym_concept] = ACTIONS(347), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -43988,155 +44628,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(22)] = { - [sym__block_item] = STATE(18), - [sym_preproc_include] = STATE(18), - [sym_preproc_def] = STATE(18), - [sym_preproc_function_def] = STATE(18), - [sym_preproc_call] = STATE(18), - [sym_preproc_if] = STATE(18), - [sym_preproc_ifdef] = STATE(18), - [sym_preproc_else] = STATE(10710), - [sym_preproc_elif] = STATE(10710), - [sym_preproc_elifdef] = STATE(10710), - [sym_function_definition] = STATE(18), - [sym_declaration] = STATE(18), - [sym_type_definition] = STATE(18), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6273), - [sym_linkage_specification] = STATE(18), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2618), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8647), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(360), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4302), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(18), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(18), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(18), - [sym_template_instantiation] = STATE(18), - [sym_operator_cast] = STATE(9076), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(18), - [sym_operator_cast_declaration] = STATE(18), - [sym_constructor_or_destructor_definition] = STATE(18), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(18), - [sym_concept_definition] = STATE(18), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9076), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(18), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(153), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), - [sym_identifier] = ACTIONS(275), - [aux_sym_preproc_include_token1] = ACTIONS(277), - [aux_sym_preproc_def_token1] = ACTIONS(279), - [aux_sym_preproc_if_token1] = ACTIONS(281), - [aux_sym_preproc_if_token2] = ACTIONS(369), - [aux_sym_preproc_ifdef_token1] = ACTIONS(285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(285), - [aux_sym_preproc_else_token1] = ACTIONS(287), - [aux_sym_preproc_elif_token1] = ACTIONS(289), - [aux_sym_preproc_elifdef_token1] = ACTIONS(291), - [aux_sym_preproc_elifdef_token2] = ACTIONS(291), - [sym_preproc_directive] = ACTIONS(293), + [sym__block_item] = STATE(24), + [sym_preproc_include] = STATE(24), + [sym_preproc_def] = STATE(24), + [sym_preproc_function_def] = STATE(24), + [sym_preproc_call] = STATE(24), + [sym_function_definition] = STATE(24), + [sym_declaration] = STATE(24), + [sym_type_definition] = STATE(24), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(24), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(339), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(405), + [sym_statement] = STATE(24), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(24), + [sym_preproc_if_in_block] = STATE(24), + [sym_preproc_ifdef_in_block] = STATE(24), + [sym_preproc_else_in_block] = STATE(11222), + [sym_preproc_elif_in_block] = STATE(11222), + [sym_preproc_elifdef_in_block] = STATE(11222), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(24), + [sym_import_declaration] = STATE(24), + [sym_template_declaration] = STATE(24), + [sym_template_instantiation] = STATE(24), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(24), + [sym_operator_cast_declaration] = STATE(24), + [sym_constructor_or_destructor_definition] = STATE(24), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(24), + [sym_namespace_alias_definition] = STATE(24), + [sym_using_declaration] = STATE(24), + [sym_alias_declaration] = STATE(24), + [sym_static_assert_declaration] = STATE(24), + [sym_consteval_block_declaration] = STATE(24), + [sym_concept_definition] = STATE(24), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(24), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(377), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(291), + [aux_sym_preproc_elif_token1] = ACTIONS(293), + [aux_sym_preproc_elifdef_token1] = ACTIONS(295), + [aux_sym_preproc_elifdef_token2] = ACTIONS(295), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -44145,14 +44787,14 @@ 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(295), - [anon_sym___extension__] = ACTIONS(297), - [anon_sym_typedef] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(301), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(303), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -44163,7 +44805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -44171,7 +44813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -44188,7 +44830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(309), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -44196,19 +44838,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -44244,16 +44886,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(337), + [anon_sym_export] = ACTIONS(341), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(339), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_static_assert] = ACTIONS(345), - [anon_sym_concept] = ACTIONS(347), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -44267,155 +44911,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(23)] = { - [sym__block_item] = STATE(33), - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(11044), - [sym_preproc_elif] = STATE(11044), - [sym_preproc_elifdef] = STATE(11044), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6273), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2618), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8647), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(360), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4302), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(33), - [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(9076), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(33), - [sym_operator_cast_declaration] = STATE(33), - [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(33), - [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9076), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(153), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), - [sym_identifier] = ACTIONS(275), - [aux_sym_preproc_include_token1] = ACTIONS(277), - [aux_sym_preproc_def_token1] = ACTIONS(279), - [aux_sym_preproc_if_token1] = ACTIONS(281), - [aux_sym_preproc_if_token2] = ACTIONS(371), - [aux_sym_preproc_ifdef_token1] = ACTIONS(285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(285), - [aux_sym_preproc_else_token1] = ACTIONS(287), - [aux_sym_preproc_elif_token1] = ACTIONS(289), - [aux_sym_preproc_elifdef_token1] = ACTIONS(291), - [aux_sym_preproc_elifdef_token2] = ACTIONS(291), - [sym_preproc_directive] = ACTIONS(293), + [sym__block_item] = STATE(25), + [sym_preproc_include] = STATE(25), + [sym_preproc_def] = STATE(25), + [sym_preproc_function_def] = STATE(25), + [sym_preproc_call] = STATE(25), + [sym_function_definition] = STATE(25), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(339), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(405), + [sym_statement] = STATE(25), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(25), + [sym_preproc_if_in_block] = STATE(25), + [sym_preproc_ifdef_in_block] = STATE(25), + [sym_preproc_else_in_block] = STATE(10749), + [sym_preproc_elif_in_block] = STATE(10749), + [sym_preproc_elifdef_in_block] = STATE(10749), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(25), + [sym_import_declaration] = STATE(25), + [sym_template_declaration] = STATE(25), + [sym_template_instantiation] = STATE(25), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(25), + [sym_operator_cast_declaration] = STATE(25), + [sym_constructor_or_destructor_definition] = STATE(25), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(25), + [sym_concept_definition] = STATE(25), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(25), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(291), + [aux_sym_preproc_elif_token1] = ACTIONS(293), + [aux_sym_preproc_elifdef_token1] = ACTIONS(295), + [aux_sym_preproc_elifdef_token2] = ACTIONS(295), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -44424,14 +45070,14 @@ 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(295), - [anon_sym___extension__] = ACTIONS(297), - [anon_sym_typedef] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(301), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(303), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -44442,7 +45088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -44450,7 +45096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -44467,7 +45113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(309), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -44475,19 +45121,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -44523,16 +45169,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(337), + [anon_sym_export] = ACTIONS(341), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(339), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_static_assert] = ACTIONS(345), - [anon_sym_concept] = ACTIONS(347), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -44546,155 +45194,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(24)] = { - [sym__block_item] = STATE(26), - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_call] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_preproc_else] = STATE(11331), - [sym_preproc_elif] = STATE(11331), - [sym_preproc_elifdef] = STATE(11331), - [sym_function_definition] = STATE(26), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6273), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2618), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8647), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(360), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4302), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(26), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(26), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(26), - [sym_template_instantiation] = STATE(26), - [sym_operator_cast] = STATE(9076), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(26), - [sym_operator_cast_declaration] = STATE(26), - [sym_constructor_or_destructor_definition] = STATE(26), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(26), - [sym_concept_definition] = STATE(26), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9076), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(153), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), - [sym_identifier] = ACTIONS(275), - [aux_sym_preproc_include_token1] = ACTIONS(277), - [aux_sym_preproc_def_token1] = ACTIONS(279), - [aux_sym_preproc_if_token1] = ACTIONS(281), - [aux_sym_preproc_if_token2] = ACTIONS(373), - [aux_sym_preproc_ifdef_token1] = ACTIONS(285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(285), - [aux_sym_preproc_else_token1] = ACTIONS(287), - [aux_sym_preproc_elif_token1] = ACTIONS(289), - [aux_sym_preproc_elifdef_token1] = ACTIONS(291), - [aux_sym_preproc_elifdef_token2] = ACTIONS(291), - [sym_preproc_directive] = ACTIONS(293), + [sym__block_item] = STATE(49), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_function_definition] = STATE(49), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(339), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(405), + [sym_statement] = STATE(49), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(49), + [sym_preproc_if_in_block] = STATE(49), + [sym_preproc_ifdef_in_block] = STATE(49), + [sym_preproc_else_in_block] = STATE(10756), + [sym_preproc_elif_in_block] = STATE(10756), + [sym_preproc_elifdef_in_block] = STATE(10756), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(49), + [sym_import_declaration] = STATE(49), + [sym_template_declaration] = STATE(49), + [sym_template_instantiation] = STATE(49), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(49), + [sym_operator_cast_declaration] = STATE(49), + [sym_constructor_or_destructor_definition] = STATE(49), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(49), + [sym_concept_definition] = STATE(49), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(49), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(381), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(291), + [aux_sym_preproc_elif_token1] = ACTIONS(293), + [aux_sym_preproc_elifdef_token1] = ACTIONS(295), + [aux_sym_preproc_elifdef_token2] = ACTIONS(295), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -44703,14 +45353,14 @@ 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(295), - [anon_sym___extension__] = ACTIONS(297), - [anon_sym_typedef] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(301), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(303), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -44721,7 +45371,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -44729,7 +45379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -44746,7 +45396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(309), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -44754,19 +45404,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -44802,16 +45452,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(337), + [anon_sym_export] = ACTIONS(341), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(339), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_static_assert] = ACTIONS(345), - [anon_sym_concept] = ACTIONS(347), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -44825,155 +45477,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(25)] = { - [sym__block_item] = STATE(28), - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(10908), - [sym_preproc_elif] = STATE(10908), - [sym_preproc_elifdef] = STATE(10908), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6273), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2618), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8647), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(360), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4302), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(28), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(9076), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(28), - [sym_concept_definition] = STATE(28), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9076), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(153), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), - [sym_identifier] = ACTIONS(275), - [aux_sym_preproc_include_token1] = ACTIONS(277), - [aux_sym_preproc_def_token1] = ACTIONS(279), - [aux_sym_preproc_if_token1] = ACTIONS(281), - [aux_sym_preproc_if_token2] = ACTIONS(375), - [aux_sym_preproc_ifdef_token1] = ACTIONS(285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(285), - [aux_sym_preproc_else_token1] = ACTIONS(287), - [aux_sym_preproc_elif_token1] = ACTIONS(289), - [aux_sym_preproc_elifdef_token1] = ACTIONS(291), - [aux_sym_preproc_elifdef_token2] = ACTIONS(291), - [sym_preproc_directive] = ACTIONS(293), + [sym__block_item] = STATE(49), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_function_definition] = STATE(49), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(339), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(405), + [sym_statement] = STATE(49), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(49), + [sym_preproc_if_in_block] = STATE(49), + [sym_preproc_ifdef_in_block] = STATE(49), + [sym_preproc_else_in_block] = STATE(10851), + [sym_preproc_elif_in_block] = STATE(10851), + [sym_preproc_elifdef_in_block] = STATE(10851), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(49), + [sym_import_declaration] = STATE(49), + [sym_template_declaration] = STATE(49), + [sym_template_instantiation] = STATE(49), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(49), + [sym_operator_cast_declaration] = STATE(49), + [sym_constructor_or_destructor_definition] = STATE(49), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(49), + [sym_concept_definition] = STATE(49), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(49), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(291), + [aux_sym_preproc_elif_token1] = ACTIONS(293), + [aux_sym_preproc_elifdef_token1] = ACTIONS(295), + [aux_sym_preproc_elifdef_token2] = ACTIONS(295), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -44982,14 +45636,14 @@ 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(295), - [anon_sym___extension__] = ACTIONS(297), - [anon_sym_typedef] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(301), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(303), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -45000,7 +45654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -45008,7 +45662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -45025,7 +45679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(309), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -45033,19 +45687,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -45081,16 +45735,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(337), + [anon_sym_export] = ACTIONS(341), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(339), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_static_assert] = ACTIONS(345), - [anon_sym_concept] = ACTIONS(347), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -45104,155 +45760,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(26)] = { - [sym__block_item] = STATE(33), - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(10954), - [sym_preproc_elif] = STATE(10954), - [sym_preproc_elifdef] = STATE(10954), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6273), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2618), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8647), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(360), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4302), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(33), - [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(9076), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(33), - [sym_operator_cast_declaration] = STATE(33), - [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(33), - [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9076), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(153), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), - [sym_identifier] = ACTIONS(275), - [aux_sym_preproc_include_token1] = ACTIONS(277), - [aux_sym_preproc_def_token1] = ACTIONS(279), - [aux_sym_preproc_if_token1] = ACTIONS(281), - [aux_sym_preproc_if_token2] = ACTIONS(377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(285), - [aux_sym_preproc_else_token1] = ACTIONS(287), - [aux_sym_preproc_elif_token1] = ACTIONS(289), - [aux_sym_preproc_elifdef_token1] = ACTIONS(291), - [aux_sym_preproc_elifdef_token2] = ACTIONS(291), - [sym_preproc_directive] = ACTIONS(293), + [sym__block_item] = STATE(28), + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(339), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(405), + [sym_statement] = STATE(28), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(28), + [sym_preproc_if_in_block] = STATE(28), + [sym_preproc_ifdef_in_block] = STATE(28), + [sym_preproc_else_in_block] = STATE(11224), + [sym_preproc_elif_in_block] = STATE(11224), + [sym_preproc_elifdef_in_block] = STATE(11224), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(28), + [sym_import_declaration] = STATE(28), + [sym_template_declaration] = STATE(28), + [sym_template_instantiation] = STATE(28), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(28), + [sym_operator_cast_declaration] = STATE(28), + [sym_constructor_or_destructor_definition] = STATE(28), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(28), + [sym_concept_definition] = STATE(28), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(28), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(385), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(291), + [aux_sym_preproc_elif_token1] = ACTIONS(293), + [aux_sym_preproc_elifdef_token1] = ACTIONS(295), + [aux_sym_preproc_elifdef_token2] = ACTIONS(295), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -45261,14 +45919,14 @@ 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(295), - [anon_sym___extension__] = ACTIONS(297), - [anon_sym_typedef] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(301), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(303), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -45279,7 +45937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -45287,7 +45945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -45304,7 +45962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(309), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -45312,19 +45970,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -45360,16 +46018,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(337), + [anon_sym_export] = ACTIONS(341), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(339), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_static_assert] = ACTIONS(345), - [anon_sym_concept] = ACTIONS(347), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -45383,155 +46043,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(27)] = { - [sym__block_item] = STATE(33), - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(10939), - [sym_preproc_elif] = STATE(10939), - [sym_preproc_elifdef] = STATE(10939), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6273), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2618), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8647), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(360), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4302), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(33), - [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(9076), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(33), - [sym_operator_cast_declaration] = STATE(33), - [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(33), - [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9076), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(153), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), - [sym_identifier] = ACTIONS(275), - [aux_sym_preproc_include_token1] = ACTIONS(277), - [aux_sym_preproc_def_token1] = ACTIONS(279), - [aux_sym_preproc_if_token1] = ACTIONS(281), - [aux_sym_preproc_if_token2] = ACTIONS(379), - [aux_sym_preproc_ifdef_token1] = ACTIONS(285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(285), - [aux_sym_preproc_else_token1] = ACTIONS(287), - [aux_sym_preproc_elif_token1] = ACTIONS(289), - [aux_sym_preproc_elifdef_token1] = ACTIONS(291), - [aux_sym_preproc_elifdef_token2] = ACTIONS(291), - [sym_preproc_directive] = ACTIONS(293), + [sym__block_item] = STATE(31), + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_function_definition] = STATE(31), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(339), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(405), + [sym_statement] = STATE(31), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(31), + [sym_preproc_if_in_block] = STATE(31), + [sym_preproc_ifdef_in_block] = STATE(31), + [sym_preproc_else_in_block] = STATE(11605), + [sym_preproc_elif_in_block] = STATE(11605), + [sym_preproc_elifdef_in_block] = STATE(11605), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(31), + [sym_import_declaration] = STATE(31), + [sym_template_declaration] = STATE(31), + [sym_template_instantiation] = STATE(31), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(31), + [sym_operator_cast_declaration] = STATE(31), + [sym_constructor_or_destructor_definition] = STATE(31), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(31), + [sym_namespace_alias_definition] = STATE(31), + [sym_using_declaration] = STATE(31), + [sym_alias_declaration] = STATE(31), + [sym_static_assert_declaration] = STATE(31), + [sym_consteval_block_declaration] = STATE(31), + [sym_concept_definition] = STATE(31), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(31), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(387), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(291), + [aux_sym_preproc_elif_token1] = ACTIONS(293), + [aux_sym_preproc_elifdef_token1] = ACTIONS(295), + [aux_sym_preproc_elifdef_token2] = ACTIONS(295), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -45540,14 +46202,14 @@ 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(295), - [anon_sym___extension__] = ACTIONS(297), - [anon_sym_typedef] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(301), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(303), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -45558,7 +46220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -45566,7 +46228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -45583,7 +46245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(309), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -45591,19 +46253,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -45639,16 +46301,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(337), + [anon_sym_export] = ACTIONS(341), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(339), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_static_assert] = ACTIONS(345), - [anon_sym_concept] = ACTIONS(347), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -45662,155 +46326,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(28)] = { - [sym__block_item] = STATE(33), - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(11330), - [sym_preproc_elif] = STATE(11330), - [sym_preproc_elifdef] = STATE(11330), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6273), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2618), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8647), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(360), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4302), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(33), - [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(9076), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(33), - [sym_operator_cast_declaration] = STATE(33), - [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(33), - [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9076), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(153), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), - [sym_identifier] = ACTIONS(275), - [aux_sym_preproc_include_token1] = ACTIONS(277), - [aux_sym_preproc_def_token1] = ACTIONS(279), - [aux_sym_preproc_if_token1] = ACTIONS(281), - [aux_sym_preproc_if_token2] = ACTIONS(381), - [aux_sym_preproc_ifdef_token1] = ACTIONS(285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(285), - [aux_sym_preproc_else_token1] = ACTIONS(287), - [aux_sym_preproc_elif_token1] = ACTIONS(289), - [aux_sym_preproc_elifdef_token1] = ACTIONS(291), - [aux_sym_preproc_elifdef_token2] = ACTIONS(291), - [sym_preproc_directive] = ACTIONS(293), + [sym__block_item] = STATE(49), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_function_definition] = STATE(49), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(339), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(405), + [sym_statement] = STATE(49), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(49), + [sym_preproc_if_in_block] = STATE(49), + [sym_preproc_ifdef_in_block] = STATE(49), + [sym_preproc_else_in_block] = STATE(11537), + [sym_preproc_elif_in_block] = STATE(11537), + [sym_preproc_elifdef_in_block] = STATE(11537), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(49), + [sym_import_declaration] = STATE(49), + [sym_template_declaration] = STATE(49), + [sym_template_instantiation] = STATE(49), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(49), + [sym_operator_cast_declaration] = STATE(49), + [sym_constructor_or_destructor_definition] = STATE(49), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(49), + [sym_concept_definition] = STATE(49), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(49), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(389), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(291), + [aux_sym_preproc_elif_token1] = ACTIONS(293), + [aux_sym_preproc_elifdef_token1] = ACTIONS(295), + [aux_sym_preproc_elifdef_token2] = ACTIONS(295), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -45819,14 +46485,14 @@ 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(295), - [anon_sym___extension__] = ACTIONS(297), - [anon_sym_typedef] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(301), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(303), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -45837,7 +46503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -45845,7 +46511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -45862,7 +46528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(309), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -45870,19 +46536,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -45918,16 +46584,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(337), + [anon_sym_export] = ACTIONS(341), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(339), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_static_assert] = ACTIONS(345), - [anon_sym_concept] = ACTIONS(347), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -45941,155 +46609,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(29)] = { - [sym__block_item] = STATE(31), - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_preproc_else] = STATE(10955), - [sym_preproc_elif] = STATE(10955), - [sym_preproc_elifdef] = STATE(10955), - [sym_function_definition] = STATE(31), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6273), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2618), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8647), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(360), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4302), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(31), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(31), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(31), - [sym_template_instantiation] = STATE(31), - [sym_operator_cast] = STATE(9076), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(31), - [sym_operator_cast_declaration] = STATE(31), - [sym_constructor_or_destructor_definition] = STATE(31), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [sym_namespace_definition] = STATE(31), - [sym_namespace_alias_definition] = STATE(31), - [sym_using_declaration] = STATE(31), - [sym_alias_declaration] = STATE(31), - [sym_static_assert_declaration] = STATE(31), - [sym_consteval_block_declaration] = STATE(31), - [sym_concept_definition] = STATE(31), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9076), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(153), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), - [sym_identifier] = ACTIONS(275), - [aux_sym_preproc_include_token1] = ACTIONS(277), - [aux_sym_preproc_def_token1] = ACTIONS(279), - [aux_sym_preproc_if_token1] = ACTIONS(281), - [aux_sym_preproc_if_token2] = ACTIONS(383), - [aux_sym_preproc_ifdef_token1] = ACTIONS(285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(285), - [aux_sym_preproc_else_token1] = ACTIONS(287), - [aux_sym_preproc_elif_token1] = ACTIONS(289), - [aux_sym_preproc_elifdef_token1] = ACTIONS(291), - [aux_sym_preproc_elifdef_token2] = ACTIONS(291), - [sym_preproc_directive] = ACTIONS(293), + [sym__block_item] = STATE(49), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_function_definition] = STATE(49), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(339), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(405), + [sym_statement] = STATE(49), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(49), + [sym_preproc_if_in_block] = STATE(49), + [sym_preproc_ifdef_in_block] = STATE(49), + [sym_preproc_else_in_block] = STATE(11570), + [sym_preproc_elif_in_block] = STATE(11570), + [sym_preproc_elifdef_in_block] = STATE(11570), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(49), + [sym_import_declaration] = STATE(49), + [sym_template_declaration] = STATE(49), + [sym_template_instantiation] = STATE(49), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(49), + [sym_operator_cast_declaration] = STATE(49), + [sym_constructor_or_destructor_definition] = STATE(49), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(49), + [sym_concept_definition] = STATE(49), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(49), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(291), + [aux_sym_preproc_elif_token1] = ACTIONS(293), + [aux_sym_preproc_elifdef_token1] = ACTIONS(295), + [aux_sym_preproc_elifdef_token2] = ACTIONS(295), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -46098,14 +46768,14 @@ 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(295), - [anon_sym___extension__] = ACTIONS(297), - [anon_sym_typedef] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(301), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(303), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -46116,7 +46786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -46124,7 +46794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -46141,7 +46811,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(309), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -46149,19 +46819,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -46197,16 +46867,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(337), + [anon_sym_export] = ACTIONS(341), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(339), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_static_assert] = ACTIONS(345), - [anon_sym_concept] = ACTIONS(347), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -46220,155 +46892,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(30)] = { - [sym__block_item] = STATE(32), - [sym_preproc_include] = STATE(32), - [sym_preproc_def] = STATE(32), - [sym_preproc_function_def] = STATE(32), - [sym_preproc_call] = STATE(32), - [sym_preproc_if] = STATE(32), - [sym_preproc_ifdef] = STATE(32), - [sym_preproc_else] = STATE(10815), - [sym_preproc_elif] = STATE(10815), - [sym_preproc_elifdef] = STATE(10815), - [sym_function_definition] = STATE(32), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6273), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2618), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8647), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(360), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4302), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(32), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(32), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(32), - [sym_template_instantiation] = STATE(32), - [sym_operator_cast] = STATE(9076), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(32), - [sym_operator_cast_declaration] = STATE(32), - [sym_constructor_or_destructor_definition] = STATE(32), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [sym_namespace_definition] = STATE(32), - [sym_namespace_alias_definition] = STATE(32), - [sym_using_declaration] = STATE(32), - [sym_alias_declaration] = STATE(32), - [sym_static_assert_declaration] = STATE(32), - [sym_consteval_block_declaration] = STATE(32), - [sym_concept_definition] = STATE(32), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9076), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(153), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), - [sym_identifier] = ACTIONS(275), - [aux_sym_preproc_include_token1] = ACTIONS(277), - [aux_sym_preproc_def_token1] = ACTIONS(279), - [aux_sym_preproc_if_token1] = ACTIONS(281), - [aux_sym_preproc_if_token2] = ACTIONS(385), - [aux_sym_preproc_ifdef_token1] = ACTIONS(285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(285), - [aux_sym_preproc_else_token1] = ACTIONS(287), - [aux_sym_preproc_elif_token1] = ACTIONS(289), - [aux_sym_preproc_elifdef_token1] = ACTIONS(291), - [aux_sym_preproc_elifdef_token2] = ACTIONS(291), - [sym_preproc_directive] = ACTIONS(293), + [sym__block_item] = STATE(49), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_function_definition] = STATE(49), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(339), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(405), + [sym_statement] = STATE(49), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(49), + [sym_preproc_if_in_block] = STATE(49), + [sym_preproc_ifdef_in_block] = STATE(49), + [sym_preproc_else_in_block] = STATE(11638), + [sym_preproc_elif_in_block] = STATE(11638), + [sym_preproc_elifdef_in_block] = STATE(11638), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(49), + [sym_import_declaration] = STATE(49), + [sym_template_declaration] = STATE(49), + [sym_template_instantiation] = STATE(49), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(49), + [sym_operator_cast_declaration] = STATE(49), + [sym_constructor_or_destructor_definition] = STATE(49), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(49), + [sym_concept_definition] = STATE(49), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(49), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(393), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(291), + [aux_sym_preproc_elif_token1] = ACTIONS(293), + [aux_sym_preproc_elifdef_token1] = ACTIONS(295), + [aux_sym_preproc_elifdef_token2] = ACTIONS(295), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -46377,14 +47051,14 @@ 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(295), - [anon_sym___extension__] = ACTIONS(297), - [anon_sym_typedef] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(301), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(303), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -46395,7 +47069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -46403,7 +47077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -46420,7 +47094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(309), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -46428,19 +47102,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -46476,16 +47150,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(337), + [anon_sym_export] = ACTIONS(341), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(339), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_static_assert] = ACTIONS(345), - [anon_sym_concept] = ACTIONS(347), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -46499,155 +47175,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(31)] = { - [sym__block_item] = STATE(33), - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(10817), - [sym_preproc_elif] = STATE(10817), - [sym_preproc_elifdef] = STATE(10817), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6273), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2618), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8647), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(360), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4302), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(33), - [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(9076), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(33), - [sym_operator_cast_declaration] = STATE(33), - [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(33), - [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9076), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(153), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), - [sym_identifier] = ACTIONS(275), - [aux_sym_preproc_include_token1] = ACTIONS(277), - [aux_sym_preproc_def_token1] = ACTIONS(279), - [aux_sym_preproc_if_token1] = ACTIONS(281), - [aux_sym_preproc_if_token2] = ACTIONS(387), - [aux_sym_preproc_ifdef_token1] = ACTIONS(285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(285), - [aux_sym_preproc_else_token1] = ACTIONS(287), - [aux_sym_preproc_elif_token1] = ACTIONS(289), - [aux_sym_preproc_elifdef_token1] = ACTIONS(291), - [aux_sym_preproc_elifdef_token2] = ACTIONS(291), - [sym_preproc_directive] = ACTIONS(293), + [sym__block_item] = STATE(49), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_function_definition] = STATE(49), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(339), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(405), + [sym_statement] = STATE(49), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(49), + [sym_preproc_if_in_block] = STATE(49), + [sym_preproc_ifdef_in_block] = STATE(49), + [sym_preproc_else_in_block] = STATE(11556), + [sym_preproc_elif_in_block] = STATE(11556), + [sym_preproc_elifdef_in_block] = STATE(11556), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(49), + [sym_import_declaration] = STATE(49), + [sym_template_declaration] = STATE(49), + [sym_template_instantiation] = STATE(49), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(49), + [sym_operator_cast_declaration] = STATE(49), + [sym_constructor_or_destructor_definition] = STATE(49), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(49), + [sym_concept_definition] = STATE(49), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(49), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(291), + [aux_sym_preproc_elif_token1] = ACTIONS(293), + [aux_sym_preproc_elifdef_token1] = ACTIONS(295), + [aux_sym_preproc_elifdef_token2] = ACTIONS(295), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -46656,14 +47334,14 @@ 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(295), - [anon_sym___extension__] = ACTIONS(297), - [anon_sym_typedef] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(301), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(303), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -46674,7 +47352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -46682,7 +47360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -46699,7 +47377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(309), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -46707,19 +47385,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -46755,16 +47433,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(337), + [anon_sym_export] = ACTIONS(341), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(339), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_static_assert] = ACTIONS(345), - [anon_sym_concept] = ACTIONS(347), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -46778,155 +47458,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(32)] = { - [sym__block_item] = STATE(33), - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_preproc_else] = STATE(11115), - [sym_preproc_elif] = STATE(11115), - [sym_preproc_elifdef] = STATE(11115), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6273), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2618), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8647), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(360), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4302), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(33), - [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(9076), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(33), - [sym_operator_cast_declaration] = STATE(33), - [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(33), - [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9076), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(153), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), - [sym_identifier] = ACTIONS(275), - [aux_sym_preproc_include_token1] = ACTIONS(277), - [aux_sym_preproc_def_token1] = ACTIONS(279), - [aux_sym_preproc_if_token1] = ACTIONS(281), - [aux_sym_preproc_if_token2] = ACTIONS(389), - [aux_sym_preproc_ifdef_token1] = ACTIONS(285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(285), - [aux_sym_preproc_else_token1] = ACTIONS(287), - [aux_sym_preproc_elif_token1] = ACTIONS(289), - [aux_sym_preproc_elifdef_token1] = ACTIONS(291), - [aux_sym_preproc_elifdef_token2] = ACTIONS(291), - [sym_preproc_directive] = ACTIONS(293), + [sym__block_item] = STATE(49), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_function_definition] = STATE(49), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(339), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(405), + [sym_statement] = STATE(49), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(49), + [sym_preproc_if_in_block] = STATE(49), + [sym_preproc_ifdef_in_block] = STATE(49), + [sym_preproc_else_in_block] = STATE(10874), + [sym_preproc_elif_in_block] = STATE(10874), + [sym_preproc_elifdef_in_block] = STATE(10874), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(49), + [sym_import_declaration] = STATE(49), + [sym_template_declaration] = STATE(49), + [sym_template_instantiation] = STATE(49), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(49), + [sym_operator_cast_declaration] = STATE(49), + [sym_constructor_or_destructor_definition] = STATE(49), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(49), + [sym_concept_definition] = STATE(49), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(49), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_if_token2] = ACTIONS(397), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [aux_sym_preproc_else_token1] = ACTIONS(291), + [aux_sym_preproc_elif_token1] = ACTIONS(293), + [aux_sym_preproc_elifdef_token1] = ACTIONS(295), + [aux_sym_preproc_elifdef_token2] = ACTIONS(295), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -46935,14 +47617,14 @@ 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(295), - [anon_sym___extension__] = ACTIONS(297), - [anon_sym_typedef] = ACTIONS(299), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(301), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(303), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -46953,7 +47635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -46961,7 +47643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -46978,7 +47660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(309), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -46986,19 +47668,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -47034,16 +47716,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(337), + [anon_sym_export] = ACTIONS(341), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(339), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_static_assert] = ACTIONS(345), - [anon_sym_concept] = ACTIONS(347), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -47057,426 +47741,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(33)] = { - [sym__block_item] = STATE(33), - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6273), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2618), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8647), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(360), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4302), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(512), - [sym_statement] = STATE(33), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2409), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(33), - [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(9076), - [sym__constructor_specifiers] = STATE(2409), - [sym_operator_cast_definition] = STATE(33), - [sym_operator_cast_declaration] = STATE(33), - [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(33), - [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9076), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(153), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2409), - [sym_identifier] = ACTIONS(391), - [aux_sym_preproc_include_token1] = ACTIONS(394), - [aux_sym_preproc_def_token1] = ACTIONS(397), - [aux_sym_preproc_if_token1] = ACTIONS(400), + [sym__top_level_item] = STATE(50), + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_preproc_else] = STATE(10843), + [sym_preproc_elif] = STATE(10843), + [sym_preproc_elifdef] = STATE(10843), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(542), + [sym__top_level_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym__top_level_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym_expression] = STATE(7241), + [sym__string] = STATE(7275), + [sym_conditional_expression] = STATE(7441), + [sym_assignment_expression] = STATE(7441), + [sym_pointer_expression] = STATE(5968), + [sym_unary_expression] = STATE(7441), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(7441), + [sym_cast_expression] = STATE(7441), + [sym_sizeof_expression] = STATE(7441), + [sym_alignof_expression] = STATE(7441), + [sym_offsetof_expression] = STATE(7441), + [sym_generic_expression] = STATE(7441), + [sym_subscript_expression] = STATE(5968), + [sym_call_expression] = STATE(5968), + [sym_gnu_asm_expression] = STATE(7441), + [sym_extension_expression] = STATE(7441), + [sym_field_expression] = STATE(5968), + [sym_compound_literal_expression] = STATE(7441), + [sym_parenthesized_expression] = STATE(5968), + [sym_char_literal] = STATE(7275), + [sym_concatenated_string] = STATE(7275), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(7441), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_module_declaration] = STATE(50), + [sym_export_declaration] = STATE(50), + [sym_import_declaration] = STATE(50), + [sym_global_module_fragment_declaration] = STATE(50), + [sym_private_module_fragment_declaration] = STATE(50), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(7330), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_consteval_block_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(7441), + [sym_new_expression] = STATE(7441), + [sym_delete_expression] = STATE(7441), + [sym_requires_clause] = STATE(7441), + [sym_requires_expression] = STATE(7441), + [sym_lambda_expression] = STATE(7441), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(7441), + [sym_parameter_pack_expansion] = STATE(7441), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5735), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(7441), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(7349), + [sym_expansion_statement] = STATE(50), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5968), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(399), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(401), [aux_sym_preproc_if_token2] = ACTIONS(403), [aux_sym_preproc_ifdef_token1] = ACTIONS(405), [aux_sym_preproc_ifdef_token2] = ACTIONS(405), - [aux_sym_preproc_else_token1] = ACTIONS(403), - [aux_sym_preproc_elif_token1] = ACTIONS(403), - [aux_sym_preproc_elifdef_token1] = ACTIONS(403), - [aux_sym_preproc_elifdef_token2] = ACTIONS(403), - [sym_preproc_directive] = ACTIONS(408), - [anon_sym_LPAREN2] = ACTIONS(411), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(423), - [anon_sym_AMP_AMP] = ACTIONS(426), - [anon_sym_AMP] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(432), - [anon_sym___extension__] = ACTIONS(435), - [anon_sym_typedef] = ACTIONS(438), - [anon_sym_virtual] = ACTIONS(441), - [anon_sym_extern] = ACTIONS(444), - [anon_sym___attribute__] = ACTIONS(447), - [anon_sym___attribute] = ACTIONS(447), - [anon_sym_using] = ACTIONS(450), - [anon_sym_COLON_COLON] = ACTIONS(453), - [anon_sym_LBRACK_LBRACK] = ACTIONS(456), - [anon_sym___declspec] = ACTIONS(459), - [anon_sym___based] = ACTIONS(462), - [anon_sym___cdecl] = ACTIONS(465), - [anon_sym___clrcall] = ACTIONS(465), - [anon_sym___stdcall] = ACTIONS(465), - [anon_sym___fastcall] = ACTIONS(465), - [anon_sym___thiscall] = ACTIONS(465), - [anon_sym___vectorcall] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(468), - [anon_sym_signed] = ACTIONS(471), - [anon_sym_unsigned] = ACTIONS(471), - [anon_sym_long] = ACTIONS(471), - [anon_sym_short] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_static] = ACTIONS(477), - [anon_sym_register] = ACTIONS(477), - [anon_sym_inline] = ACTIONS(480), - [anon_sym___inline] = ACTIONS(477), - [anon_sym___inline__] = ACTIONS(477), - [anon_sym___forceinline] = ACTIONS(477), - [anon_sym_thread_local] = ACTIONS(477), - [anon_sym___thread] = ACTIONS(477), - [anon_sym_const] = ACTIONS(483), - [anon_sym_constexpr] = ACTIONS(483), - [anon_sym_volatile] = ACTIONS(483), - [anon_sym_restrict] = ACTIONS(483), - [anon_sym___restrict__] = ACTIONS(483), - [anon_sym__Atomic] = ACTIONS(483), - [anon_sym__Noreturn] = ACTIONS(483), - [anon_sym_noreturn] = ACTIONS(483), - [anon_sym__Nonnull] = ACTIONS(483), - [anon_sym_mutable] = ACTIONS(483), - [anon_sym_constinit] = ACTIONS(483), - [anon_sym_consteval] = ACTIONS(486), - [anon_sym_alignas] = ACTIONS(489), - [anon_sym__Alignas] = ACTIONS(489), - [sym_primitive_type] = ACTIONS(492), - [anon_sym_enum] = ACTIONS(495), - [anon_sym_class] = ACTIONS(498), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_union] = ACTIONS(504), - [anon_sym_if] = ACTIONS(507), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(513), - [anon_sym_default] = ACTIONS(516), - [anon_sym_while] = ACTIONS(519), - [anon_sym_do] = ACTIONS(522), - [anon_sym_for] = ACTIONS(525), - [anon_sym_return] = ACTIONS(528), - [anon_sym_break] = ACTIONS(531), - [anon_sym_continue] = ACTIONS(534), - [anon_sym_goto] = ACTIONS(537), - [anon_sym___try] = ACTIONS(540), - [anon_sym___leave] = ACTIONS(543), - [anon_sym_not] = ACTIONS(420), - [anon_sym_compl] = ACTIONS(420), - [anon_sym_DASH_DASH] = ACTIONS(546), - [anon_sym_PLUS_PLUS] = ACTIONS(546), - [anon_sym_sizeof] = ACTIONS(549), - [anon_sym___alignof__] = ACTIONS(552), - [anon_sym___alignof] = ACTIONS(552), - [anon_sym__alignof] = ACTIONS(552), - [anon_sym_alignof] = ACTIONS(552), - [anon_sym__Alignof] = ACTIONS(552), - [anon_sym_offsetof] = ACTIONS(555), - [anon_sym__Generic] = ACTIONS(558), - [anon_sym_typename] = ACTIONS(561), - [anon_sym_asm] = ACTIONS(564), - [anon_sym___asm__] = ACTIONS(564), - [anon_sym___asm] = ACTIONS(564), - [sym_number_literal] = ACTIONS(567), - [anon_sym_L_SQUOTE] = ACTIONS(570), - [anon_sym_u_SQUOTE] = ACTIONS(570), - [anon_sym_U_SQUOTE] = ACTIONS(570), - [anon_sym_u8_SQUOTE] = ACTIONS(570), - [anon_sym_SQUOTE] = ACTIONS(570), - [anon_sym_L_DQUOTE] = ACTIONS(573), - [anon_sym_u_DQUOTE] = ACTIONS(573), - [anon_sym_U_DQUOTE] = ACTIONS(573), - [anon_sym_u8_DQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(573), - [sym_true] = ACTIONS(576), - [sym_false] = ACTIONS(576), - [anon_sym_NULL] = ACTIONS(579), - [anon_sym_nullptr] = ACTIONS(579), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(582), - [anon_sym_decltype] = ACTIONS(585), - [anon_sym_explicit] = ACTIONS(588), - [anon_sym_template] = ACTIONS(591), - [anon_sym_operator] = ACTIONS(594), - [anon_sym_try] = ACTIONS(597), - [anon_sym_delete] = ACTIONS(600), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(606), - [anon_sym_static_assert] = ACTIONS(609), - [anon_sym_concept] = ACTIONS(612), - [anon_sym_co_return] = ACTIONS(615), - [anon_sym_co_yield] = ACTIONS(618), - [anon_sym_R_DQUOTE] = ACTIONS(621), - [anon_sym_LR_DQUOTE] = ACTIONS(621), - [anon_sym_uR_DQUOTE] = ACTIONS(621), - [anon_sym_UR_DQUOTE] = ACTIONS(621), - [anon_sym_u8R_DQUOTE] = ACTIONS(621), - [anon_sym_co_await] = ACTIONS(624), - [anon_sym_new] = ACTIONS(627), - [anon_sym_requires] = ACTIONS(630), - [anon_sym_CARET_CARET] = ACTIONS(633), - [anon_sym_LBRACK_COLON] = ACTIONS(636), - [sym_this] = ACTIONS(576), - }, - [STATE(34)] = { - [sym__top_level_item] = STATE(35), - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6284), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2569), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8682), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4304), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(645), - [sym__top_level_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym__top_level_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(7176), - [sym__string] = STATE(7226), - [sym_conditional_expression] = STATE(7290), - [sym_assignment_expression] = STATE(7290), - [sym_pointer_expression] = STATE(5856), - [sym_unary_expression] = STATE(7290), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(7290), - [sym_cast_expression] = STATE(7290), - [sym_sizeof_expression] = STATE(7290), - [sym_alignof_expression] = STATE(7290), - [sym_offsetof_expression] = STATE(7290), - [sym_generic_expression] = STATE(7290), - [sym_subscript_expression] = STATE(5856), - [sym_call_expression] = STATE(5856), - [sym_gnu_asm_expression] = STATE(7290), - [sym_extension_expression] = STATE(7290), - [sym_field_expression] = STATE(5856), - [sym_compound_literal_expression] = STATE(7290), - [sym_parenthesized_expression] = STATE(5856), - [sym_char_literal] = STATE(7226), - [sym_concatenated_string] = STATE(7226), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(7290), - [sym__empty_declaration] = STATE(35), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2354), - [sym_dependent_type] = STATE(4714), - [sym_module_declaration] = STATE(35), - [sym_export_declaration] = STATE(35), - [sym_import_declaration] = STATE(35), - [sym_global_module_fragment_declaration] = STATE(35), - [sym_private_module_fragment_declaration] = STATE(35), - [sym_template_declaration] = STATE(35), - [sym_template_instantiation] = STATE(35), - [sym_operator_cast] = STATE(9060), - [sym__constructor_specifiers] = STATE(2354), - [sym_operator_cast_definition] = STATE(35), - [sym_operator_cast_declaration] = STATE(35), - [sym_constructor_or_destructor_definition] = STATE(35), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(7272), - [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_consteval_block_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(4783), - [sym_co_await_expression] = STATE(7290), - [sym_new_expression] = STATE(7290), - [sym_delete_expression] = STATE(7290), - [sym_requires_clause] = STATE(7290), - [sym_requires_expression] = STATE(7290), - [sym_lambda_expression] = STATE(7290), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(7290), - [sym_parameter_pack_expansion] = STATE(7290), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5657), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9060), - [sym_reflect_expression] = STATE(7290), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(7274), - [sym_expansion_statement] = STATE(35), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5856), - [aux_sym_translation_unit_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2354), - [ts_builtin_sym_end] = ACTIONS(639), - [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), + [aux_sym_preproc_else_token1] = ACTIONS(407), + [aux_sym_preproc_elif_token1] = ACTIONS(409), + [aux_sym_preproc_elifdef_token1] = ACTIONS(411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(411), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -47485,14 +47900,14 @@ 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___extension__] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(45), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -47503,7 +47918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -47511,7 +47926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(65), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -47528,7 +47943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(69), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -47536,17 +47951,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(83), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_default] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -47563,7 +47978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(119), + [sym_number_literal] = ACTIONS(415), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -47574,27 +47989,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(123), [anon_sym_u8_DQUOTE] = ACTIONS(123), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(125), - [sym_false] = ACTIONS(125), + [sym_true] = ACTIONS(417), + [sym_false] = ACTIONS(417), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_export] = ACTIONS(135), - [anon_sym_module] = ACTIONS(137), - [anon_sym_import] = ACTIONS(139), - [anon_sym_template] = ACTIONS(141), + [anon_sym_export] = ACTIONS(419), + [anon_sym_module] = ACTIONS(421), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(145), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_namespace] = ACTIONS(151), - [anon_sym_static_assert] = ACTIONS(153), - [anon_sym_concept] = ACTIONS(155), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -47605,425 +48020,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(125), - }, - [STATE(35)] = { - [sym__top_level_item] = STATE(35), - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6284), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2569), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8682), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4304), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(645), - [sym__top_level_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym__top_level_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(7176), - [sym__string] = STATE(7226), - [sym_conditional_expression] = STATE(7290), - [sym_assignment_expression] = STATE(7290), - [sym_pointer_expression] = STATE(5856), - [sym_unary_expression] = STATE(7290), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(7290), - [sym_cast_expression] = STATE(7290), - [sym_sizeof_expression] = STATE(7290), - [sym_alignof_expression] = STATE(7290), - [sym_offsetof_expression] = STATE(7290), - [sym_generic_expression] = STATE(7290), - [sym_subscript_expression] = STATE(5856), - [sym_call_expression] = STATE(5856), - [sym_gnu_asm_expression] = STATE(7290), - [sym_extension_expression] = STATE(7290), - [sym_field_expression] = STATE(5856), - [sym_compound_literal_expression] = STATE(7290), - [sym_parenthesized_expression] = STATE(5856), - [sym_char_literal] = STATE(7226), - [sym_concatenated_string] = STATE(7226), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(7290), - [sym__empty_declaration] = STATE(35), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2354), - [sym_dependent_type] = STATE(4714), - [sym_module_declaration] = STATE(35), - [sym_export_declaration] = STATE(35), - [sym_import_declaration] = STATE(35), - [sym_global_module_fragment_declaration] = STATE(35), - [sym_private_module_fragment_declaration] = STATE(35), - [sym_template_declaration] = STATE(35), - [sym_template_instantiation] = STATE(35), - [sym_operator_cast] = STATE(9060), - [sym__constructor_specifiers] = STATE(2354), - [sym_operator_cast_definition] = STATE(35), - [sym_operator_cast_declaration] = STATE(35), - [sym_constructor_or_destructor_definition] = STATE(35), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(7272), - [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_consteval_block_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(4783), - [sym_co_await_expression] = STATE(7290), - [sym_new_expression] = STATE(7290), - [sym_delete_expression] = STATE(7290), - [sym_requires_clause] = STATE(7290), - [sym_requires_expression] = STATE(7290), - [sym_lambda_expression] = STATE(7290), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(7290), - [sym_parameter_pack_expansion] = STATE(7290), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5657), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9060), - [sym_reflect_expression] = STATE(7290), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(7274), - [sym_expansion_statement] = STATE(35), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5856), - [aux_sym_translation_unit_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2354), - [ts_builtin_sym_end] = ACTIONS(641), - [sym_identifier] = ACTIONS(643), - [aux_sym_preproc_include_token1] = ACTIONS(646), - [aux_sym_preproc_def_token1] = ACTIONS(649), - [aux_sym_preproc_if_token1] = ACTIONS(652), - [aux_sym_preproc_ifdef_token1] = ACTIONS(655), - [aux_sym_preproc_ifdef_token2] = ACTIONS(655), - [sym_preproc_directive] = ACTIONS(658), - [anon_sym_LPAREN2] = ACTIONS(661), - [anon_sym_BANG] = ACTIONS(664), - [anon_sym_TILDE] = ACTIONS(667), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(679), - [anon_sym_SEMI] = ACTIONS(682), - [anon_sym___extension__] = ACTIONS(685), - [anon_sym_typedef] = ACTIONS(688), - [anon_sym_virtual] = ACTIONS(691), - [anon_sym_extern] = ACTIONS(694), - [anon_sym___attribute__] = ACTIONS(697), - [anon_sym___attribute] = ACTIONS(697), - [anon_sym_using] = ACTIONS(700), - [anon_sym_COLON_COLON] = ACTIONS(703), - [anon_sym_LBRACK_LBRACK] = ACTIONS(706), - [anon_sym___declspec] = ACTIONS(709), - [anon_sym___based] = ACTIONS(712), - [anon_sym___cdecl] = ACTIONS(715), - [anon_sym___clrcall] = ACTIONS(715), - [anon_sym___stdcall] = ACTIONS(715), - [anon_sym___fastcall] = ACTIONS(715), - [anon_sym___thiscall] = ACTIONS(715), - [anon_sym___vectorcall] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_signed] = ACTIONS(721), - [anon_sym_unsigned] = ACTIONS(721), - [anon_sym_long] = ACTIONS(721), - [anon_sym_short] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(724), - [anon_sym_static] = ACTIONS(727), - [anon_sym_register] = ACTIONS(727), - [anon_sym_inline] = ACTIONS(730), - [anon_sym___inline] = ACTIONS(727), - [anon_sym___inline__] = ACTIONS(727), - [anon_sym___forceinline] = ACTIONS(727), - [anon_sym_thread_local] = ACTIONS(727), - [anon_sym___thread] = ACTIONS(727), - [anon_sym_const] = ACTIONS(733), - [anon_sym_constexpr] = ACTIONS(733), - [anon_sym_volatile] = ACTIONS(733), - [anon_sym_restrict] = ACTIONS(733), - [anon_sym___restrict__] = ACTIONS(733), - [anon_sym__Atomic] = ACTIONS(733), - [anon_sym__Noreturn] = ACTIONS(733), - [anon_sym_noreturn] = ACTIONS(733), - [anon_sym__Nonnull] = ACTIONS(733), - [anon_sym_mutable] = ACTIONS(733), - [anon_sym_constinit] = ACTIONS(733), - [anon_sym_consteval] = ACTIONS(736), - [anon_sym_alignas] = ACTIONS(739), - [anon_sym__Alignas] = ACTIONS(739), - [sym_primitive_type] = ACTIONS(742), - [anon_sym_enum] = ACTIONS(745), - [anon_sym_class] = ACTIONS(748), - [anon_sym_struct] = ACTIONS(751), - [anon_sym_union] = ACTIONS(754), - [anon_sym_if] = ACTIONS(757), - [anon_sym_switch] = ACTIONS(760), - [anon_sym_case] = ACTIONS(763), - [anon_sym_default] = ACTIONS(766), - [anon_sym_while] = ACTIONS(769), - [anon_sym_do] = ACTIONS(772), - [anon_sym_for] = ACTIONS(775), - [anon_sym_return] = ACTIONS(778), - [anon_sym_break] = ACTIONS(781), - [anon_sym_continue] = ACTIONS(784), - [anon_sym_goto] = ACTIONS(787), - [anon_sym_not] = ACTIONS(670), - [anon_sym_compl] = ACTIONS(670), - [anon_sym_DASH_DASH] = ACTIONS(790), - [anon_sym_PLUS_PLUS] = ACTIONS(790), - [anon_sym_sizeof] = ACTIONS(793), - [anon_sym___alignof__] = ACTIONS(796), - [anon_sym___alignof] = ACTIONS(796), - [anon_sym__alignof] = ACTIONS(796), - [anon_sym_alignof] = ACTIONS(796), - [anon_sym__Alignof] = ACTIONS(796), - [anon_sym_offsetof] = ACTIONS(799), - [anon_sym__Generic] = ACTIONS(802), - [anon_sym_typename] = ACTIONS(805), - [anon_sym_asm] = ACTIONS(808), - [anon_sym___asm__] = ACTIONS(808), - [anon_sym___asm] = ACTIONS(808), - [sym_number_literal] = ACTIONS(811), - [anon_sym_L_SQUOTE] = ACTIONS(814), - [anon_sym_u_SQUOTE] = ACTIONS(814), - [anon_sym_U_SQUOTE] = ACTIONS(814), - [anon_sym_u8_SQUOTE] = ACTIONS(814), - [anon_sym_SQUOTE] = ACTIONS(814), - [anon_sym_L_DQUOTE] = ACTIONS(817), - [anon_sym_u_DQUOTE] = ACTIONS(817), - [anon_sym_U_DQUOTE] = ACTIONS(817), - [anon_sym_u8_DQUOTE] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(817), - [sym_true] = ACTIONS(820), - [sym_false] = ACTIONS(820), - [anon_sym_NULL] = ACTIONS(823), - [anon_sym_nullptr] = ACTIONS(823), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(826), - [anon_sym_decltype] = ACTIONS(829), - [anon_sym_explicit] = ACTIONS(832), - [anon_sym_export] = ACTIONS(835), - [anon_sym_module] = ACTIONS(838), - [anon_sym_import] = ACTIONS(841), - [anon_sym_template] = ACTIONS(844), - [anon_sym_operator] = ACTIONS(847), - [anon_sym_try] = ACTIONS(850), - [anon_sym_delete] = ACTIONS(853), - [anon_sym_throw] = ACTIONS(856), - [anon_sym_namespace] = ACTIONS(859), - [anon_sym_static_assert] = ACTIONS(862), - [anon_sym_concept] = ACTIONS(865), - [anon_sym_co_return] = ACTIONS(868), - [anon_sym_co_yield] = ACTIONS(871), - [anon_sym_R_DQUOTE] = ACTIONS(874), - [anon_sym_LR_DQUOTE] = ACTIONS(874), - [anon_sym_uR_DQUOTE] = ACTIONS(874), - [anon_sym_UR_DQUOTE] = ACTIONS(874), - [anon_sym_u8R_DQUOTE] = ACTIONS(874), - [anon_sym_co_await] = ACTIONS(877), - [anon_sym_new] = ACTIONS(880), - [anon_sym_requires] = ACTIONS(883), - [anon_sym_CARET_CARET] = ACTIONS(886), - [anon_sym_LBRACK_COLON] = ACTIONS(889), - [sym_this] = ACTIONS(820), + [sym_this] = ACTIONS(417), }, - [STATE(36)] = { - [sym__block_item] = STATE(45), - [sym_preproc_include] = STATE(45), - [sym_preproc_def] = STATE(45), - [sym_preproc_function_def] = STATE(45), - [sym_preproc_call] = STATE(45), - [sym_preproc_if] = STATE(45), - [sym_preproc_ifdef] = STATE(45), - [sym_function_definition] = STATE(45), - [sym_declaration] = STATE(45), - [sym_type_definition] = STATE(45), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(45), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(45), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(45), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(45), - [sym_template_instantiation] = STATE(45), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(45), - [sym_operator_cast_declaration] = STATE(45), - [sym_constructor_or_destructor_definition] = STATE(45), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [sym_namespace_definition] = STATE(45), - [sym_namespace_alias_definition] = STATE(45), - [sym_using_declaration] = STATE(45), - [sym_alias_declaration] = STATE(45), - [sym_static_assert_declaration] = STATE(45), - [sym_consteval_block_declaration] = STATE(45), - [sym_concept_definition] = STATE(45), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(45), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), + [STATE(34)] = { + [sym__top_level_item] = STATE(50), + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_preproc_else] = STATE(10967), + [sym_preproc_elif] = STATE(10967), + [sym_preproc_elifdef] = STATE(10967), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(542), + [sym__top_level_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym__top_level_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym_expression] = STATE(7241), + [sym__string] = STATE(7275), + [sym_conditional_expression] = STATE(7441), + [sym_assignment_expression] = STATE(7441), + [sym_pointer_expression] = STATE(5968), + [sym_unary_expression] = STATE(7441), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(7441), + [sym_cast_expression] = STATE(7441), + [sym_sizeof_expression] = STATE(7441), + [sym_alignof_expression] = STATE(7441), + [sym_offsetof_expression] = STATE(7441), + [sym_generic_expression] = STATE(7441), + [sym_subscript_expression] = STATE(5968), + [sym_call_expression] = STATE(5968), + [sym_gnu_asm_expression] = STATE(7441), + [sym_extension_expression] = STATE(7441), + [sym_field_expression] = STATE(5968), + [sym_compound_literal_expression] = STATE(7441), + [sym_parenthesized_expression] = STATE(5968), + [sym_char_literal] = STATE(7275), + [sym_concatenated_string] = STATE(7275), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(7441), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_module_declaration] = STATE(50), + [sym_export_declaration] = STATE(50), + [sym_import_declaration] = STATE(50), + [sym_global_module_fragment_declaration] = STATE(50), + [sym_private_module_fragment_declaration] = STATE(50), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(7330), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_consteval_block_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(7441), + [sym_new_expression] = STATE(7441), + [sym_delete_expression] = STATE(7441), + [sym_requires_clause] = STATE(7441), + [sym_requires_expression] = STATE(7441), + [sym_lambda_expression] = STATE(7441), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(7441), + [sym_parameter_pack_expansion] = STATE(7441), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5735), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(7441), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(7349), + [sym_expansion_statement] = STATE(50), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5968), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(399), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(401), + [aux_sym_preproc_if_token2] = ACTIONS(423), + [aux_sym_preproc_ifdef_token1] = ACTIONS(405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(405), + [aux_sym_preproc_else_token1] = ACTIONS(407), + [aux_sym_preproc_elif_token1] = ACTIONS(409), + [aux_sym_preproc_elifdef_token1] = ACTIONS(411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(411), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -48032,14 +48182,14 @@ 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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -48050,8 +48200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -48059,7 +48208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(203), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -48076,7 +48225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(205), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -48084,19 +48233,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -48113,7 +48260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), + [sym_number_literal] = ACTIONS(415), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -48124,24 +48271,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(123), [anon_sym_u8_DQUOTE] = ACTIONS(123), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), + [sym_true] = ACTIONS(417), + [sym_false] = ACTIONS(417), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(419), + [anon_sym_module] = ACTIONS(421), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -48152,374 +48302,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), - }, - [STATE(37)] = { - [sym__block_item] = STATE(37), - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6279), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2620), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8706), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(652), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4324), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(859), - [sym_statement] = STATE(37), - [sym_labeled_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_if_statement] = STATE(652), - [sym_switch_statement] = STATE(652), - [sym_case_statement] = STATE(652), - [sym_while_statement] = STATE(652), - [sym_do_statement] = STATE(652), - [sym_for_statement] = STATE(652), - [sym_return_statement] = STATE(652), - [sym_break_statement] = STATE(652), - [sym_continue_statement] = STATE(652), - [sym_goto_statement] = STATE(652), - [sym_seh_try_statement] = STATE(652), - [sym_seh_leave_statement] = STATE(652), - [sym_expression] = STATE(6696), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10652), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(37), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2413), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(37), - [sym_template_instantiation] = STATE(37), - [sym_operator_cast] = STATE(9049), - [sym__constructor_specifiers] = STATE(2413), - [sym_operator_cast_definition] = STATE(37), - [sym_operator_cast_declaration] = STATE(37), - [sym_constructor_or_destructor_definition] = STATE(37), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(37), - [sym_concept_definition] = STATE(37), - [sym_for_range_loop] = STATE(652), - [sym_co_return_statement] = STATE(652), - [sym_co_yield_statement] = STATE(652), - [sym_throw_statement] = STATE(652), - [sym_try_statement] = STATE(652), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9049), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(652), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(156), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2413), - [sym_identifier] = ACTIONS(898), - [aux_sym_preproc_include_token1] = ACTIONS(901), - [aux_sym_preproc_def_token1] = ACTIONS(904), - [aux_sym_preproc_if_token1] = ACTIONS(907), - [aux_sym_preproc_if_token2] = ACTIONS(403), - [aux_sym_preproc_ifdef_token1] = ACTIONS(910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(910), - [sym_preproc_directive] = ACTIONS(913), - [anon_sym_LPAREN2] = ACTIONS(411), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(423), - [anon_sym_AMP_AMP] = ACTIONS(426), - [anon_sym_AMP] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(916), - [anon_sym___extension__] = ACTIONS(919), - [anon_sym_typedef] = ACTIONS(922), - [anon_sym_virtual] = ACTIONS(441), - [anon_sym_extern] = ACTIONS(925), - [anon_sym___attribute__] = ACTIONS(447), - [anon_sym___attribute] = ACTIONS(447), - [anon_sym_using] = ACTIONS(928), - [anon_sym_COLON_COLON] = ACTIONS(453), - [anon_sym_LBRACK_LBRACK] = ACTIONS(456), - [anon_sym___declspec] = ACTIONS(459), - [anon_sym___based] = ACTIONS(462), - [anon_sym___cdecl] = ACTIONS(465), - [anon_sym___clrcall] = ACTIONS(465), - [anon_sym___stdcall] = ACTIONS(465), - [anon_sym___fastcall] = ACTIONS(465), - [anon_sym___thiscall] = ACTIONS(465), - [anon_sym___vectorcall] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_signed] = ACTIONS(471), - [anon_sym_unsigned] = ACTIONS(471), - [anon_sym_long] = ACTIONS(471), - [anon_sym_short] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_static] = ACTIONS(477), - [anon_sym_register] = ACTIONS(477), - [anon_sym_inline] = ACTIONS(934), - [anon_sym___inline] = ACTIONS(477), - [anon_sym___inline__] = ACTIONS(477), - [anon_sym___forceinline] = ACTIONS(477), - [anon_sym_thread_local] = ACTIONS(477), - [anon_sym___thread] = ACTIONS(477), - [anon_sym_const] = ACTIONS(483), - [anon_sym_constexpr] = ACTIONS(483), - [anon_sym_volatile] = ACTIONS(483), - [anon_sym_restrict] = ACTIONS(483), - [anon_sym___restrict__] = ACTIONS(483), - [anon_sym__Atomic] = ACTIONS(483), - [anon_sym__Noreturn] = ACTIONS(483), - [anon_sym_noreturn] = ACTIONS(483), - [anon_sym__Nonnull] = ACTIONS(483), - [anon_sym_mutable] = ACTIONS(483), - [anon_sym_constinit] = ACTIONS(483), - [anon_sym_consteval] = ACTIONS(937), - [anon_sym_alignas] = ACTIONS(489), - [anon_sym__Alignas] = ACTIONS(489), - [sym_primitive_type] = ACTIONS(492), - [anon_sym_enum] = ACTIONS(495), - [anon_sym_class] = ACTIONS(498), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_union] = ACTIONS(504), - [anon_sym_if] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(943), - [anon_sym_case] = ACTIONS(946), - [anon_sym_default] = ACTIONS(949), - [anon_sym_while] = ACTIONS(952), - [anon_sym_do] = ACTIONS(955), - [anon_sym_for] = ACTIONS(958), - [anon_sym_return] = ACTIONS(961), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_goto] = ACTIONS(970), - [anon_sym___try] = ACTIONS(973), - [anon_sym___leave] = ACTIONS(976), - [anon_sym_not] = ACTIONS(420), - [anon_sym_compl] = ACTIONS(420), - [anon_sym_DASH_DASH] = ACTIONS(546), - [anon_sym_PLUS_PLUS] = ACTIONS(546), - [anon_sym_sizeof] = ACTIONS(549), - [anon_sym___alignof__] = ACTIONS(552), - [anon_sym___alignof] = ACTIONS(552), - [anon_sym__alignof] = ACTIONS(552), - [anon_sym_alignof] = ACTIONS(552), - [anon_sym__Alignof] = ACTIONS(552), - [anon_sym_offsetof] = ACTIONS(555), - [anon_sym__Generic] = ACTIONS(558), - [anon_sym_typename] = ACTIONS(561), - [anon_sym_asm] = ACTIONS(564), - [anon_sym___asm__] = ACTIONS(564), - [anon_sym___asm] = ACTIONS(564), - [sym_number_literal] = ACTIONS(567), - [anon_sym_L_SQUOTE] = ACTIONS(570), - [anon_sym_u_SQUOTE] = ACTIONS(570), - [anon_sym_U_SQUOTE] = ACTIONS(570), - [anon_sym_u8_SQUOTE] = ACTIONS(570), - [anon_sym_SQUOTE] = ACTIONS(570), - [anon_sym_L_DQUOTE] = ACTIONS(573), - [anon_sym_u_DQUOTE] = ACTIONS(573), - [anon_sym_U_DQUOTE] = ACTIONS(573), - [anon_sym_u8_DQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(573), - [sym_true] = ACTIONS(576), - [sym_false] = ACTIONS(576), - [anon_sym_NULL] = ACTIONS(579), - [anon_sym_nullptr] = ACTIONS(579), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(582), - [anon_sym_decltype] = ACTIONS(585), - [anon_sym_explicit] = ACTIONS(588), - [anon_sym_template] = ACTIONS(979), - [anon_sym_operator] = ACTIONS(594), - [anon_sym_try] = ACTIONS(982), - [anon_sym_delete] = ACTIONS(600), - [anon_sym_throw] = ACTIONS(985), - [anon_sym_namespace] = ACTIONS(988), - [anon_sym_static_assert] = ACTIONS(991), - [anon_sym_concept] = ACTIONS(994), - [anon_sym_co_return] = ACTIONS(997), - [anon_sym_co_yield] = ACTIONS(1000), - [anon_sym_R_DQUOTE] = ACTIONS(621), - [anon_sym_LR_DQUOTE] = ACTIONS(621), - [anon_sym_uR_DQUOTE] = ACTIONS(621), - [anon_sym_UR_DQUOTE] = ACTIONS(621), - [anon_sym_u8R_DQUOTE] = ACTIONS(621), - [anon_sym_co_await] = ACTIONS(624), - [anon_sym_new] = ACTIONS(627), - [anon_sym_requires] = ACTIONS(630), - [anon_sym_CARET_CARET] = ACTIONS(633), - [anon_sym_LBRACK_COLON] = ACTIONS(636), - [sym_this] = ACTIONS(576), + [sym_this] = ACTIONS(417), }, - [STATE(38)] = { - [sym__block_item] = STATE(39), + [STATE(35)] = { + [sym__top_level_item] = STATE(39), [sym_preproc_include] = STATE(39), [sym_preproc_def] = STATE(39), [sym_preproc_function_def] = STATE(39), [sym_preproc_call] = STATE(39), [sym_preproc_if] = STATE(39), [sym_preproc_ifdef] = STATE(39), + [sym_preproc_else] = STATE(10683), + [sym_preproc_elif] = STATE(10683), + [sym_preproc_elifdef] = STATE(10683), [sym_function_definition] = STATE(39), [sym_declaration] = STATE(39), [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(39), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(39), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(542), + [sym__top_level_statement] = STATE(39), + [sym_labeled_statement] = STATE(39), + [sym__top_level_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(7241), + [sym__string] = STATE(7275), + [sym_conditional_expression] = STATE(7441), + [sym_assignment_expression] = STATE(7441), + [sym_pointer_expression] = STATE(5968), + [sym_unary_expression] = STATE(7441), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(7441), + [sym_cast_expression] = STATE(7441), + [sym_sizeof_expression] = STATE(7441), + [sym_alignof_expression] = STATE(7441), + [sym_offsetof_expression] = STATE(7441), + [sym_generic_expression] = STATE(7441), + [sym_subscript_expression] = STATE(5968), + [sym_call_expression] = STATE(5968), + [sym_gnu_asm_expression] = STATE(7441), + [sym_extension_expression] = STATE(7441), + [sym_field_expression] = STATE(5968), + [sym_compound_literal_expression] = STATE(7441), + [sym_parenthesized_expression] = STATE(5968), + [sym_char_literal] = STATE(7275), + [sym_concatenated_string] = STATE(7275), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(7441), [sym__empty_declaration] = STATE(39), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_module_declaration] = STATE(39), + [sym_export_declaration] = STATE(39), + [sym_import_declaration] = STATE(39), + [sym_global_module_fragment_declaration] = STATE(39), + [sym_private_module_fragment_declaration] = STATE(39), [sym_template_declaration] = STATE(39), [sym_template_instantiation] = STATE(39), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), [sym_operator_cast_definition] = STATE(39), [sym_operator_cast_declaration] = STATE(39), [sym_constructor_or_destructor_definition] = STATE(39), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(7330), [sym_namespace_definition] = STATE(39), [sym_namespace_alias_definition] = STATE(39), [sym_using_declaration] = STATE(39), @@ -48527,47 +48410,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(39), [sym_consteval_block_declaration] = STATE(39), [sym_concept_definition] = STATE(39), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), + [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(4767), + [sym_co_await_expression] = STATE(7441), + [sym_new_expression] = STATE(7441), + [sym_delete_expression] = STATE(7441), + [sym_requires_clause] = STATE(7441), + [sym_requires_expression] = STATE(7441), + [sym_lambda_expression] = STATE(7441), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(7441), + [sym_parameter_pack_expansion] = STATE(7441), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5735), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(7441), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(7349), + [sym_expansion_statement] = STATE(39), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5968), + [aux_sym_translation_unit_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(399), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(401), + [aux_sym_preproc_if_token2] = ACTIONS(425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(405), + [aux_sym_preproc_else_token1] = ACTIONS(407), + [aux_sym_preproc_elif_token1] = ACTIONS(409), + [aux_sym_preproc_elifdef_token1] = ACTIONS(411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(411), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -48576,14 +48464,14 @@ 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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -48594,8 +48482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -48603,7 +48490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(203), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -48620,7 +48507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(205), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -48628,19 +48515,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -48657,7 +48542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), + [sym_number_literal] = ACTIONS(415), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -48668,24 +48553,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(123), [anon_sym_u8_DQUOTE] = ACTIONS(123), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), + [sym_true] = ACTIONS(417), + [sym_false] = ACTIONS(417), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(419), + [anon_sym_module] = ACTIONS(421), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -48696,150 +48584,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), + [sym_this] = ACTIONS(417), }, - [STATE(39)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), + [STATE(36)] = { + [sym__top_level_item] = STATE(50), + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_preproc_else] = STATE(10702), + [sym_preproc_elif] = STATE(10702), + [sym_preproc_elifdef] = STATE(10702), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(542), + [sym__top_level_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym__top_level_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym_expression] = STATE(7241), + [sym__string] = STATE(7275), + [sym_conditional_expression] = STATE(7441), + [sym_assignment_expression] = STATE(7441), + [sym_pointer_expression] = STATE(5968), + [sym_unary_expression] = STATE(7441), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(7441), + [sym_cast_expression] = STATE(7441), + [sym_sizeof_expression] = STATE(7441), + [sym_alignof_expression] = STATE(7441), + [sym_offsetof_expression] = STATE(7441), + [sym_generic_expression] = STATE(7441), + [sym_subscript_expression] = STATE(5968), + [sym_call_expression] = STATE(5968), + [sym_gnu_asm_expression] = STATE(7441), + [sym_extension_expression] = STATE(7441), + [sym_field_expression] = STATE(5968), + [sym_compound_literal_expression] = STATE(7441), + [sym_parenthesized_expression] = STATE(5968), + [sym_char_literal] = STATE(7275), + [sym_concatenated_string] = STATE(7275), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(7441), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_module_declaration] = STATE(50), + [sym_export_declaration] = STATE(50), + [sym_import_declaration] = STATE(50), + [sym_global_module_fragment_declaration] = STATE(50), + [sym_private_module_fragment_declaration] = STATE(50), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(7330), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_consteval_block_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(7441), + [sym_new_expression] = STATE(7441), + [sym_delete_expression] = STATE(7441), + [sym_requires_clause] = STATE(7441), + [sym_requires_expression] = STATE(7441), + [sym_lambda_expression] = STATE(7441), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(7441), + [sym_parameter_pack_expansion] = STATE(7441), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5735), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(7441), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(7349), + [sym_expansion_statement] = STATE(50), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5968), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(399), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(401), + [aux_sym_preproc_if_token2] = ACTIONS(427), + [aux_sym_preproc_ifdef_token1] = ACTIONS(405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(405), + [aux_sym_preproc_else_token1] = ACTIONS(407), + [aux_sym_preproc_elif_token1] = ACTIONS(409), + [aux_sym_preproc_elifdef_token1] = ACTIONS(411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(411), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -48848,14 +48746,14 @@ 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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -48866,8 +48764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1005), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -48875,7 +48772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(203), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -48892,7 +48789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(205), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -48900,19 +48797,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -48929,7 +48824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), + [sym_number_literal] = ACTIONS(415), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -48940,24 +48835,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(123), [anon_sym_u8_DQUOTE] = ACTIONS(123), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), + [sym_true] = ACTIONS(417), + [sym_false] = ACTIONS(417), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(419), + [anon_sym_module] = ACTIONS(421), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -48968,150 +48866,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), + [sym_this] = ACTIONS(417), }, - [STATE(40)] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), + [STATE(37)] = { + [sym__top_level_item] = STATE(50), + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_preproc_else] = STATE(10698), + [sym_preproc_elif] = STATE(10698), + [sym_preproc_elifdef] = STATE(10698), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(542), + [sym__top_level_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym__top_level_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym_expression] = STATE(7241), + [sym__string] = STATE(7275), + [sym_conditional_expression] = STATE(7441), + [sym_assignment_expression] = STATE(7441), + [sym_pointer_expression] = STATE(5968), + [sym_unary_expression] = STATE(7441), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(7441), + [sym_cast_expression] = STATE(7441), + [sym_sizeof_expression] = STATE(7441), + [sym_alignof_expression] = STATE(7441), + [sym_offsetof_expression] = STATE(7441), + [sym_generic_expression] = STATE(7441), + [sym_subscript_expression] = STATE(5968), + [sym_call_expression] = STATE(5968), + [sym_gnu_asm_expression] = STATE(7441), + [sym_extension_expression] = STATE(7441), + [sym_field_expression] = STATE(5968), + [sym_compound_literal_expression] = STATE(7441), + [sym_parenthesized_expression] = STATE(5968), + [sym_char_literal] = STATE(7275), + [sym_concatenated_string] = STATE(7275), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(7441), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_module_declaration] = STATE(50), + [sym_export_declaration] = STATE(50), + [sym_import_declaration] = STATE(50), + [sym_global_module_fragment_declaration] = STATE(50), + [sym_private_module_fragment_declaration] = STATE(50), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(7330), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_consteval_block_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(7441), + [sym_new_expression] = STATE(7441), + [sym_delete_expression] = STATE(7441), + [sym_requires_clause] = STATE(7441), + [sym_requires_expression] = STATE(7441), + [sym_lambda_expression] = STATE(7441), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(7441), + [sym_parameter_pack_expansion] = STATE(7441), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5735), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(7441), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(7349), + [sym_expansion_statement] = STATE(50), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5968), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(399), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(401), + [aux_sym_preproc_if_token2] = ACTIONS(429), + [aux_sym_preproc_ifdef_token1] = ACTIONS(405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(405), + [aux_sym_preproc_else_token1] = ACTIONS(407), + [aux_sym_preproc_elif_token1] = ACTIONS(409), + [aux_sym_preproc_elifdef_token1] = ACTIONS(411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(411), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -49120,14 +49028,14 @@ 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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -49138,8 +49046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -49147,7 +49054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(203), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -49164,7 +49071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(205), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -49172,19 +49079,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -49201,7 +49106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), + [sym_number_literal] = ACTIONS(415), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -49212,24 +49117,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(123), [anon_sym_u8_DQUOTE] = ACTIONS(123), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), + [sym_true] = ACTIONS(417), + [sym_false] = ACTIONS(417), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(419), + [anon_sym_module] = ACTIONS(421), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -49240,422 +49148,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), - }, - [STATE(41)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(1009), - [aux_sym_preproc_include_token1] = ACTIONS(1012), - [aux_sym_preproc_def_token1] = ACTIONS(1015), - [aux_sym_preproc_if_token1] = ACTIONS(1018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1021), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1021), - [sym_preproc_directive] = ACTIONS(1024), - [anon_sym_LPAREN2] = ACTIONS(411), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(423), - [anon_sym_AMP_AMP] = ACTIONS(426), - [anon_sym_AMP] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym___extension__] = ACTIONS(1030), - [anon_sym_typedef] = ACTIONS(1033), - [anon_sym_virtual] = ACTIONS(441), - [anon_sym_extern] = ACTIONS(1036), - [anon_sym___attribute__] = ACTIONS(447), - [anon_sym___attribute] = ACTIONS(447), - [anon_sym_using] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(453), - [anon_sym_LBRACK_LBRACK] = ACTIONS(456), - [anon_sym___declspec] = ACTIONS(459), - [anon_sym___based] = ACTIONS(462), - [anon_sym___cdecl] = ACTIONS(465), - [anon_sym___clrcall] = ACTIONS(465), - [anon_sym___stdcall] = ACTIONS(465), - [anon_sym___fastcall] = ACTIONS(465), - [anon_sym___thiscall] = ACTIONS(465), - [anon_sym___vectorcall] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_RBRACE] = ACTIONS(1045), - [anon_sym_signed] = ACTIONS(471), - [anon_sym_unsigned] = ACTIONS(471), - [anon_sym_long] = ACTIONS(471), - [anon_sym_short] = ACTIONS(471), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_static] = ACTIONS(477), - [anon_sym_register] = ACTIONS(477), - [anon_sym_inline] = ACTIONS(1047), - [anon_sym___inline] = ACTIONS(477), - [anon_sym___inline__] = ACTIONS(477), - [anon_sym___forceinline] = ACTIONS(477), - [anon_sym_thread_local] = ACTIONS(477), - [anon_sym___thread] = ACTIONS(477), - [anon_sym_const] = ACTIONS(483), - [anon_sym_constexpr] = ACTIONS(483), - [anon_sym_volatile] = ACTIONS(483), - [anon_sym_restrict] = ACTIONS(483), - [anon_sym___restrict__] = ACTIONS(483), - [anon_sym__Atomic] = ACTIONS(483), - [anon_sym__Noreturn] = ACTIONS(483), - [anon_sym_noreturn] = ACTIONS(483), - [anon_sym__Nonnull] = ACTIONS(483), - [anon_sym_mutable] = ACTIONS(483), - [anon_sym_constinit] = ACTIONS(483), - [anon_sym_consteval] = ACTIONS(1050), - [anon_sym_alignas] = ACTIONS(489), - [anon_sym__Alignas] = ACTIONS(489), - [sym_primitive_type] = ACTIONS(492), - [anon_sym_enum] = ACTIONS(495), - [anon_sym_class] = ACTIONS(498), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_union] = ACTIONS(504), - [anon_sym_if] = ACTIONS(1053), - [anon_sym_switch] = ACTIONS(1056), - [anon_sym_case] = ACTIONS(1059), - [anon_sym_default] = ACTIONS(1062), - [anon_sym_while] = ACTIONS(1065), - [anon_sym_do] = ACTIONS(1068), - [anon_sym_for] = ACTIONS(1071), - [anon_sym_return] = ACTIONS(1074), - [anon_sym_break] = ACTIONS(1077), - [anon_sym_continue] = ACTIONS(1080), - [anon_sym_goto] = ACTIONS(1083), - [anon_sym___try] = ACTIONS(1086), - [anon_sym___leave] = ACTIONS(1089), - [anon_sym_not] = ACTIONS(420), - [anon_sym_compl] = ACTIONS(420), - [anon_sym_DASH_DASH] = ACTIONS(546), - [anon_sym_PLUS_PLUS] = ACTIONS(546), - [anon_sym_sizeof] = ACTIONS(549), - [anon_sym___alignof__] = ACTIONS(552), - [anon_sym___alignof] = ACTIONS(552), - [anon_sym__alignof] = ACTIONS(552), - [anon_sym_alignof] = ACTIONS(552), - [anon_sym__Alignof] = ACTIONS(552), - [anon_sym_offsetof] = ACTIONS(555), - [anon_sym__Generic] = ACTIONS(558), - [anon_sym_typename] = ACTIONS(561), - [anon_sym_asm] = ACTIONS(564), - [anon_sym___asm__] = ACTIONS(564), - [anon_sym___asm] = ACTIONS(564), - [sym_number_literal] = ACTIONS(567), - [anon_sym_L_SQUOTE] = ACTIONS(570), - [anon_sym_u_SQUOTE] = ACTIONS(570), - [anon_sym_U_SQUOTE] = ACTIONS(570), - [anon_sym_u8_SQUOTE] = ACTIONS(570), - [anon_sym_SQUOTE] = ACTIONS(570), - [anon_sym_L_DQUOTE] = ACTIONS(573), - [anon_sym_u_DQUOTE] = ACTIONS(573), - [anon_sym_U_DQUOTE] = ACTIONS(573), - [anon_sym_u8_DQUOTE] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(573), - [sym_true] = ACTIONS(576), - [sym_false] = ACTIONS(576), - [anon_sym_NULL] = ACTIONS(579), - [anon_sym_nullptr] = ACTIONS(579), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(582), - [anon_sym_decltype] = ACTIONS(585), - [anon_sym_explicit] = ACTIONS(588), - [anon_sym_template] = ACTIONS(1092), - [anon_sym_operator] = ACTIONS(594), - [anon_sym_try] = ACTIONS(1095), - [anon_sym_delete] = ACTIONS(600), - [anon_sym_throw] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1101), - [anon_sym_static_assert] = ACTIONS(1104), - [anon_sym_concept] = ACTIONS(1107), - [anon_sym_co_return] = ACTIONS(1110), - [anon_sym_co_yield] = ACTIONS(1113), - [anon_sym_R_DQUOTE] = ACTIONS(621), - [anon_sym_LR_DQUOTE] = ACTIONS(621), - [anon_sym_uR_DQUOTE] = ACTIONS(621), - [anon_sym_UR_DQUOTE] = ACTIONS(621), - [anon_sym_u8R_DQUOTE] = ACTIONS(621), - [anon_sym_co_await] = ACTIONS(624), - [anon_sym_new] = ACTIONS(627), - [anon_sym_requires] = ACTIONS(630), - [anon_sym_CARET_CARET] = ACTIONS(633), - [anon_sym_LBRACK_COLON] = ACTIONS(636), - [sym_this] = ACTIONS(576), + [sym_this] = ACTIONS(417), }, - [STATE(42)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), + [STATE(38)] = { + [sym__top_level_item] = STATE(50), + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_preproc_else] = STATE(11705), + [sym_preproc_elif] = STATE(11705), + [sym_preproc_elifdef] = STATE(11705), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(542), + [sym__top_level_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym__top_level_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym_expression] = STATE(7241), + [sym__string] = STATE(7275), + [sym_conditional_expression] = STATE(7441), + [sym_assignment_expression] = STATE(7441), + [sym_pointer_expression] = STATE(5968), + [sym_unary_expression] = STATE(7441), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(7441), + [sym_cast_expression] = STATE(7441), + [sym_sizeof_expression] = STATE(7441), + [sym_alignof_expression] = STATE(7441), + [sym_offsetof_expression] = STATE(7441), + [sym_generic_expression] = STATE(7441), + [sym_subscript_expression] = STATE(5968), + [sym_call_expression] = STATE(5968), + [sym_gnu_asm_expression] = STATE(7441), + [sym_extension_expression] = STATE(7441), + [sym_field_expression] = STATE(5968), + [sym_compound_literal_expression] = STATE(7441), + [sym_parenthesized_expression] = STATE(5968), + [sym_char_literal] = STATE(7275), + [sym_concatenated_string] = STATE(7275), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(7441), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_module_declaration] = STATE(50), + [sym_export_declaration] = STATE(50), + [sym_import_declaration] = STATE(50), + [sym_global_module_fragment_declaration] = STATE(50), + [sym_private_module_fragment_declaration] = STATE(50), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(7330), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_consteval_block_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(7441), + [sym_new_expression] = STATE(7441), + [sym_delete_expression] = STATE(7441), + [sym_requires_clause] = STATE(7441), + [sym_requires_expression] = STATE(7441), + [sym_lambda_expression] = STATE(7441), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(7441), + [sym_parameter_pack_expansion] = STATE(7441), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5735), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(7441), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(7349), + [sym_expansion_statement] = STATE(50), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5968), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(399), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(401), + [aux_sym_preproc_if_token2] = ACTIONS(431), + [aux_sym_preproc_ifdef_token1] = ACTIONS(405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(405), + [aux_sym_preproc_else_token1] = ACTIONS(407), + [aux_sym_preproc_elif_token1] = ACTIONS(409), + [aux_sym_preproc_elifdef_token1] = ACTIONS(411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(411), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -49664,14 +49310,14 @@ 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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -49682,8 +49328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -49691,7 +49336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(203), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -49708,7 +49353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(205), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -49716,19 +49361,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -49745,7 +49388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), + [sym_number_literal] = ACTIONS(415), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -49756,24 +49399,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(123), [anon_sym_u8_DQUOTE] = ACTIONS(123), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), + [sym_true] = ACTIONS(417), + [sym_false] = ACTIONS(417), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(419), + [anon_sym_module] = ACTIONS(421), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -49784,150 +49430,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), + [sym_this] = ACTIONS(417), }, - [STATE(43)] = { - [sym__block_item] = STATE(61), - [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(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(61), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(61), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), + [STATE(39)] = { + [sym__top_level_item] = STATE(50), + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_preproc_else] = STATE(11541), + [sym_preproc_elif] = STATE(11541), + [sym_preproc_elifdef] = STATE(11541), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(542), + [sym__top_level_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym__top_level_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym_expression] = STATE(7241), + [sym__string] = STATE(7275), + [sym_conditional_expression] = STATE(7441), + [sym_assignment_expression] = STATE(7441), + [sym_pointer_expression] = STATE(5968), + [sym_unary_expression] = STATE(7441), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(7441), + [sym_cast_expression] = STATE(7441), + [sym_sizeof_expression] = STATE(7441), + [sym_alignof_expression] = STATE(7441), + [sym_offsetof_expression] = STATE(7441), + [sym_generic_expression] = STATE(7441), + [sym_subscript_expression] = STATE(5968), + [sym_call_expression] = STATE(5968), + [sym_gnu_asm_expression] = STATE(7441), + [sym_extension_expression] = STATE(7441), + [sym_field_expression] = STATE(5968), + [sym_compound_literal_expression] = STATE(7441), + [sym_parenthesized_expression] = STATE(5968), + [sym_char_literal] = STATE(7275), + [sym_concatenated_string] = STATE(7275), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(7441), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_module_declaration] = STATE(50), + [sym_export_declaration] = STATE(50), + [sym_import_declaration] = STATE(50), + [sym_global_module_fragment_declaration] = STATE(50), + [sym_private_module_fragment_declaration] = STATE(50), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(7330), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_consteval_block_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(7441), + [sym_new_expression] = STATE(7441), + [sym_delete_expression] = STATE(7441), + [sym_requires_clause] = STATE(7441), + [sym_requires_expression] = STATE(7441), + [sym_lambda_expression] = STATE(7441), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(7441), + [sym_parameter_pack_expansion] = STATE(7441), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5735), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(7441), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(7349), + [sym_expansion_statement] = STATE(50), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5968), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(399), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(401), + [aux_sym_preproc_if_token2] = ACTIONS(433), + [aux_sym_preproc_ifdef_token1] = ACTIONS(405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(405), + [aux_sym_preproc_else_token1] = ACTIONS(407), + [aux_sym_preproc_elif_token1] = ACTIONS(409), + [aux_sym_preproc_elifdef_token1] = ACTIONS(411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(411), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -49936,14 +49592,14 @@ 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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -49954,8 +49610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -49963,7 +49618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(203), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -49980,7 +49635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(205), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -49988,19 +49643,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -50017,7 +49670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), + [sym_number_literal] = ACTIONS(415), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -50028,24 +49681,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(123), [anon_sym_u8_DQUOTE] = ACTIONS(123), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), + [sym_true] = ACTIONS(417), + [sym_false] = ACTIONS(417), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(419), + [anon_sym_module] = ACTIONS(421), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -50056,150 +49712,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), + [sym_this] = ACTIONS(417), }, - [STATE(44)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), + [STATE(40)] = { + [sym__top_level_item] = STATE(48), + [sym_preproc_include] = STATE(48), + [sym_preproc_def] = STATE(48), + [sym_preproc_function_def] = STATE(48), + [sym_preproc_call] = STATE(48), + [sym_preproc_if] = STATE(48), + [sym_preproc_ifdef] = STATE(48), + [sym_preproc_else] = STATE(10971), + [sym_preproc_elif] = STATE(10971), + [sym_preproc_elifdef] = STATE(10971), + [sym_function_definition] = STATE(48), + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(542), + [sym__top_level_statement] = STATE(48), + [sym_labeled_statement] = STATE(48), + [sym__top_level_expression_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_switch_statement] = STATE(48), + [sym_case_statement] = STATE(48), + [sym_while_statement] = STATE(48), + [sym_do_statement] = STATE(48), + [sym_for_statement] = STATE(48), + [sym_return_statement] = STATE(48), + [sym_break_statement] = STATE(48), + [sym_continue_statement] = STATE(48), + [sym_goto_statement] = STATE(48), + [sym_expression] = STATE(7241), + [sym__string] = STATE(7275), + [sym_conditional_expression] = STATE(7441), + [sym_assignment_expression] = STATE(7441), + [sym_pointer_expression] = STATE(5968), + [sym_unary_expression] = STATE(7441), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(7441), + [sym_cast_expression] = STATE(7441), + [sym_sizeof_expression] = STATE(7441), + [sym_alignof_expression] = STATE(7441), + [sym_offsetof_expression] = STATE(7441), + [sym_generic_expression] = STATE(7441), + [sym_subscript_expression] = STATE(5968), + [sym_call_expression] = STATE(5968), + [sym_gnu_asm_expression] = STATE(7441), + [sym_extension_expression] = STATE(7441), + [sym_field_expression] = STATE(5968), + [sym_compound_literal_expression] = STATE(7441), + [sym_parenthesized_expression] = STATE(5968), + [sym_char_literal] = STATE(7275), + [sym_concatenated_string] = STATE(7275), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(7441), + [sym__empty_declaration] = STATE(48), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_module_declaration] = STATE(48), + [sym_export_declaration] = STATE(48), + [sym_import_declaration] = STATE(48), + [sym_global_module_fragment_declaration] = STATE(48), + [sym_private_module_fragment_declaration] = STATE(48), + [sym_template_declaration] = STATE(48), + [sym_template_instantiation] = STATE(48), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(48), + [sym_operator_cast_declaration] = STATE(48), + [sym_constructor_or_destructor_definition] = STATE(48), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(7330), + [sym_namespace_definition] = STATE(48), + [sym_namespace_alias_definition] = STATE(48), + [sym_using_declaration] = STATE(48), + [sym_alias_declaration] = STATE(48), + [sym_static_assert_declaration] = STATE(48), + [sym_consteval_block_declaration] = STATE(48), + [sym_concept_definition] = STATE(48), + [sym_for_range_loop] = STATE(48), + [sym_co_return_statement] = STATE(48), + [sym_co_yield_statement] = STATE(48), + [sym_throw_statement] = STATE(48), + [sym_try_statement] = STATE(48), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(7441), + [sym_new_expression] = STATE(7441), + [sym_delete_expression] = STATE(7441), + [sym_requires_clause] = STATE(7441), + [sym_requires_expression] = STATE(7441), + [sym_lambda_expression] = STATE(7441), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(7441), + [sym_parameter_pack_expansion] = STATE(7441), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5735), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(7441), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(7349), + [sym_expansion_statement] = STATE(48), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5968), + [aux_sym_translation_unit_repeat1] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(399), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(401), + [aux_sym_preproc_if_token2] = ACTIONS(435), + [aux_sym_preproc_ifdef_token1] = ACTIONS(405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(405), + [aux_sym_preproc_else_token1] = ACTIONS(407), + [aux_sym_preproc_elif_token1] = ACTIONS(409), + [aux_sym_preproc_elifdef_token1] = ACTIONS(411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(411), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -50208,14 +49874,14 @@ 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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -50226,8 +49892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -50235,7 +49900,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(203), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -50252,7 +49917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(205), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -50260,19 +49925,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -50289,7 +49952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), + [sym_number_literal] = ACTIONS(415), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -50300,24 +49963,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(123), [anon_sym_u8_DQUOTE] = ACTIONS(123), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), + [sym_true] = ACTIONS(417), + [sym_false] = ACTIONS(417), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(419), + [anon_sym_module] = ACTIONS(421), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -50328,150 +49994,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), + [sym_this] = ACTIONS(417), }, - [STATE(45)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), + [STATE(41)] = { + [sym__top_level_item] = STATE(33), + [sym_preproc_include] = STATE(33), + [sym_preproc_def] = STATE(33), + [sym_preproc_function_def] = STATE(33), + [sym_preproc_call] = STATE(33), + [sym_preproc_if] = STATE(33), + [sym_preproc_ifdef] = STATE(33), + [sym_preproc_else] = STATE(11385), + [sym_preproc_elif] = STATE(11385), + [sym_preproc_elifdef] = STATE(11385), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(542), + [sym__top_level_statement] = STATE(33), + [sym_labeled_statement] = STATE(33), + [sym__top_level_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(7241), + [sym__string] = STATE(7275), + [sym_conditional_expression] = STATE(7441), + [sym_assignment_expression] = STATE(7441), + [sym_pointer_expression] = STATE(5968), + [sym_unary_expression] = STATE(7441), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(7441), + [sym_cast_expression] = STATE(7441), + [sym_sizeof_expression] = STATE(7441), + [sym_alignof_expression] = STATE(7441), + [sym_offsetof_expression] = STATE(7441), + [sym_generic_expression] = STATE(7441), + [sym_subscript_expression] = STATE(5968), + [sym_call_expression] = STATE(5968), + [sym_gnu_asm_expression] = STATE(7441), + [sym_extension_expression] = STATE(7441), + [sym_field_expression] = STATE(5968), + [sym_compound_literal_expression] = STATE(7441), + [sym_parenthesized_expression] = STATE(5968), + [sym_char_literal] = STATE(7275), + [sym_concatenated_string] = STATE(7275), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(7441), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_module_declaration] = STATE(33), + [sym_export_declaration] = STATE(33), + [sym_import_declaration] = STATE(33), + [sym_global_module_fragment_declaration] = STATE(33), + [sym_private_module_fragment_declaration] = STATE(33), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(7330), + [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_consteval_block_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(4767), + [sym_co_await_expression] = STATE(7441), + [sym_new_expression] = STATE(7441), + [sym_delete_expression] = STATE(7441), + [sym_requires_clause] = STATE(7441), + [sym_requires_expression] = STATE(7441), + [sym_lambda_expression] = STATE(7441), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(7441), + [sym_parameter_pack_expansion] = STATE(7441), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5735), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(7441), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(7349), + [sym_expansion_statement] = STATE(33), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5968), + [aux_sym_translation_unit_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(399), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(401), + [aux_sym_preproc_if_token2] = ACTIONS(437), + [aux_sym_preproc_ifdef_token1] = ACTIONS(405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(405), + [aux_sym_preproc_else_token1] = ACTIONS(407), + [aux_sym_preproc_elif_token1] = ACTIONS(409), + [aux_sym_preproc_elifdef_token1] = ACTIONS(411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(411), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -50480,14 +50156,14 @@ 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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -50498,8 +50174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1122), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -50507,7 +50182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(203), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -50524,7 +50199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(205), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -50532,19 +50207,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -50561,7 +50234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), + [sym_number_literal] = ACTIONS(415), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -50572,24 +50245,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(123), [anon_sym_u8_DQUOTE] = ACTIONS(123), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), + [sym_true] = ACTIONS(417), + [sym_false] = ACTIONS(417), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(419), + [anon_sym_module] = ACTIONS(421), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -50600,150 +50276,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), + [sym_this] = ACTIONS(417), }, - [STATE(46)] = { - [sym__block_item] = STATE(48), - [sym_preproc_include] = STATE(48), - [sym_preproc_def] = STATE(48), - [sym_preproc_function_def] = STATE(48), - [sym_preproc_call] = STATE(48), - [sym_preproc_if] = STATE(48), - [sym_preproc_ifdef] = STATE(48), - [sym_function_definition] = STATE(48), - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(48), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(48), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(48), - [sym_template_instantiation] = STATE(48), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(48), - [sym_operator_cast_declaration] = STATE(48), - [sym_constructor_or_destructor_definition] = STATE(48), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [sym_namespace_definition] = STATE(48), - [sym_namespace_alias_definition] = STATE(48), - [sym_using_declaration] = STATE(48), - [sym_alias_declaration] = STATE(48), - [sym_static_assert_declaration] = STATE(48), - [sym_consteval_block_declaration] = STATE(48), - [sym_concept_definition] = STATE(48), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), + [STATE(42)] = { + [sym__top_level_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_preproc_else] = STATE(10705), + [sym_preproc_elif] = STATE(10705), + [sym_preproc_elifdef] = STATE(10705), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(542), + [sym__top_level_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym__top_level_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(7241), + [sym__string] = STATE(7275), + [sym_conditional_expression] = STATE(7441), + [sym_assignment_expression] = STATE(7441), + [sym_pointer_expression] = STATE(5968), + [sym_unary_expression] = STATE(7441), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(7441), + [sym_cast_expression] = STATE(7441), + [sym_sizeof_expression] = STATE(7441), + [sym_alignof_expression] = STATE(7441), + [sym_offsetof_expression] = STATE(7441), + [sym_generic_expression] = STATE(7441), + [sym_subscript_expression] = STATE(5968), + [sym_call_expression] = STATE(5968), + [sym_gnu_asm_expression] = STATE(7441), + [sym_extension_expression] = STATE(7441), + [sym_field_expression] = STATE(5968), + [sym_compound_literal_expression] = STATE(7441), + [sym_parenthesized_expression] = STATE(5968), + [sym_char_literal] = STATE(7275), + [sym_concatenated_string] = STATE(7275), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(7441), + [sym__empty_declaration] = STATE(37), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_module_declaration] = STATE(37), + [sym_export_declaration] = STATE(37), + [sym_import_declaration] = STATE(37), + [sym_global_module_fragment_declaration] = STATE(37), + [sym_private_module_fragment_declaration] = STATE(37), + [sym_template_declaration] = STATE(37), + [sym_template_instantiation] = STATE(37), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(37), + [sym_operator_cast_declaration] = STATE(37), + [sym_constructor_or_destructor_definition] = STATE(37), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(7330), + [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_consteval_block_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(4767), + [sym_co_await_expression] = STATE(7441), + [sym_new_expression] = STATE(7441), + [sym_delete_expression] = STATE(7441), + [sym_requires_clause] = STATE(7441), + [sym_requires_expression] = STATE(7441), + [sym_lambda_expression] = STATE(7441), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(7441), + [sym_parameter_pack_expansion] = STATE(7441), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5735), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(7441), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(7349), + [sym_expansion_statement] = STATE(37), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5968), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(399), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(401), + [aux_sym_preproc_if_token2] = ACTIONS(439), + [aux_sym_preproc_ifdef_token1] = ACTIONS(405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(405), + [aux_sym_preproc_else_token1] = ACTIONS(407), + [aux_sym_preproc_elif_token1] = ACTIONS(409), + [aux_sym_preproc_elifdef_token1] = ACTIONS(411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(411), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -50752,14 +50438,14 @@ 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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -50770,8 +50456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -50779,7 +50464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(203), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -50796,7 +50481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(205), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -50804,19 +50489,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -50833,7 +50516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), + [sym_number_literal] = ACTIONS(415), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -50844,24 +50527,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(123), [anon_sym_u8_DQUOTE] = ACTIONS(123), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), + [sym_true] = ACTIONS(417), + [sym_false] = ACTIONS(417), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(419), + [anon_sym_module] = ACTIONS(421), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -50872,150 +50558,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), + [sym_this] = ACTIONS(417), }, - [STATE(47)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), + [STATE(43)] = { + [sym__top_level_item] = STATE(45), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_preproc_else] = STATE(10859), + [sym_preproc_elif] = STATE(10859), + [sym_preproc_elifdef] = STATE(10859), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(542), + [sym__top_level_statement] = STATE(45), + [sym_labeled_statement] = STATE(45), + [sym__top_level_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_case_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym_expression] = STATE(7241), + [sym__string] = STATE(7275), + [sym_conditional_expression] = STATE(7441), + [sym_assignment_expression] = STATE(7441), + [sym_pointer_expression] = STATE(5968), + [sym_unary_expression] = STATE(7441), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(7441), + [sym_cast_expression] = STATE(7441), + [sym_sizeof_expression] = STATE(7441), + [sym_alignof_expression] = STATE(7441), + [sym_offsetof_expression] = STATE(7441), + [sym_generic_expression] = STATE(7441), + [sym_subscript_expression] = STATE(5968), + [sym_call_expression] = STATE(5968), + [sym_gnu_asm_expression] = STATE(7441), + [sym_extension_expression] = STATE(7441), + [sym_field_expression] = STATE(5968), + [sym_compound_literal_expression] = STATE(7441), + [sym_parenthesized_expression] = STATE(5968), + [sym_char_literal] = STATE(7275), + [sym_concatenated_string] = STATE(7275), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(7441), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_module_declaration] = STATE(45), + [sym_export_declaration] = STATE(45), + [sym_import_declaration] = STATE(45), + [sym_global_module_fragment_declaration] = STATE(45), + [sym_private_module_fragment_declaration] = STATE(45), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(7330), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_consteval_block_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(45), + [sym_co_return_statement] = STATE(45), + [sym_co_yield_statement] = STATE(45), + [sym_throw_statement] = STATE(45), + [sym_try_statement] = STATE(45), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(7441), + [sym_new_expression] = STATE(7441), + [sym_delete_expression] = STATE(7441), + [sym_requires_clause] = STATE(7441), + [sym_requires_expression] = STATE(7441), + [sym_lambda_expression] = STATE(7441), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(7441), + [sym_parameter_pack_expansion] = STATE(7441), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5735), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(7441), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(7349), + [sym_expansion_statement] = STATE(45), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5968), + [aux_sym_translation_unit_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(399), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(401), + [aux_sym_preproc_if_token2] = ACTIONS(441), + [aux_sym_preproc_ifdef_token1] = ACTIONS(405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(405), + [aux_sym_preproc_else_token1] = ACTIONS(407), + [aux_sym_preproc_elif_token1] = ACTIONS(409), + [aux_sym_preproc_elifdef_token1] = ACTIONS(411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(411), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -51024,14 +50720,14 @@ 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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -51042,8 +50738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -51051,7 +50746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(203), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -51068,7 +50763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(205), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -51076,19 +50771,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -51105,7 +50798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), + [sym_number_literal] = ACTIONS(415), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -51116,24 +50809,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(123), [anon_sym_u8_DQUOTE] = ACTIONS(123), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), + [sym_true] = ACTIONS(417), + [sym_false] = ACTIONS(417), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(419), + [anon_sym_module] = ACTIONS(421), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -51144,150 +50840,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), + [sym_this] = ACTIONS(417), }, - [STATE(48)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), + [STATE(44)] = { + [sym__top_level_item] = STATE(36), + [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(10834), + [sym_preproc_elif] = STATE(10834), + [sym_preproc_elifdef] = STATE(10834), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(542), + [sym__top_level_statement] = STATE(36), + [sym_labeled_statement] = STATE(36), + [sym__top_level_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(7241), + [sym__string] = STATE(7275), + [sym_conditional_expression] = STATE(7441), + [sym_assignment_expression] = STATE(7441), + [sym_pointer_expression] = STATE(5968), + [sym_unary_expression] = STATE(7441), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(7441), + [sym_cast_expression] = STATE(7441), + [sym_sizeof_expression] = STATE(7441), + [sym_alignof_expression] = STATE(7441), + [sym_offsetof_expression] = STATE(7441), + [sym_generic_expression] = STATE(7441), + [sym_subscript_expression] = STATE(5968), + [sym_call_expression] = STATE(5968), + [sym_gnu_asm_expression] = STATE(7441), + [sym_extension_expression] = STATE(7441), + [sym_field_expression] = STATE(5968), + [sym_compound_literal_expression] = STATE(7441), + [sym_parenthesized_expression] = STATE(5968), + [sym_char_literal] = STATE(7275), + [sym_concatenated_string] = STATE(7275), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(7441), + [sym__empty_declaration] = STATE(36), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_module_declaration] = STATE(36), + [sym_export_declaration] = STATE(36), + [sym_import_declaration] = STATE(36), + [sym_global_module_fragment_declaration] = STATE(36), + [sym_private_module_fragment_declaration] = STATE(36), + [sym_template_declaration] = STATE(36), + [sym_template_instantiation] = STATE(36), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(36), + [sym_operator_cast_declaration] = STATE(36), + [sym_constructor_or_destructor_definition] = STATE(36), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(7330), + [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_consteval_block_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(4767), + [sym_co_await_expression] = STATE(7441), + [sym_new_expression] = STATE(7441), + [sym_delete_expression] = STATE(7441), + [sym_requires_clause] = STATE(7441), + [sym_requires_expression] = STATE(7441), + [sym_lambda_expression] = STATE(7441), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(7441), + [sym_parameter_pack_expansion] = STATE(7441), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5735), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(7441), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(7349), + [sym_expansion_statement] = STATE(36), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5968), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(399), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(401), + [aux_sym_preproc_if_token2] = ACTIONS(443), + [aux_sym_preproc_ifdef_token1] = ACTIONS(405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(405), + [aux_sym_preproc_else_token1] = ACTIONS(407), + [aux_sym_preproc_elif_token1] = ACTIONS(409), + [aux_sym_preproc_elifdef_token1] = ACTIONS(411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(411), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -51296,14 +51002,14 @@ 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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -51314,8 +51020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -51323,7 +51028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(203), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -51340,7 +51045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(205), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -51348,19 +51053,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -51377,7 +51080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), + [sym_number_literal] = ACTIONS(415), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -51388,24 +51091,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(123), [anon_sym_u8_DQUOTE] = ACTIONS(123), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), + [sym_true] = ACTIONS(417), + [sym_false] = ACTIONS(417), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(419), + [anon_sym_module] = ACTIONS(421), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -51416,150 +51122,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), + [sym_this] = ACTIONS(417), }, - [STATE(49)] = { - [sym__block_item] = STATE(51), - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(51), - [sym_concept_definition] = STATE(51), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), + [STATE(45)] = { + [sym__top_level_item] = STATE(50), + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_preproc_else] = STATE(11280), + [sym_preproc_elif] = STATE(11280), + [sym_preproc_elifdef] = STATE(11280), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(542), + [sym__top_level_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym__top_level_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym_expression] = STATE(7241), + [sym__string] = STATE(7275), + [sym_conditional_expression] = STATE(7441), + [sym_assignment_expression] = STATE(7441), + [sym_pointer_expression] = STATE(5968), + [sym_unary_expression] = STATE(7441), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(7441), + [sym_cast_expression] = STATE(7441), + [sym_sizeof_expression] = STATE(7441), + [sym_alignof_expression] = STATE(7441), + [sym_offsetof_expression] = STATE(7441), + [sym_generic_expression] = STATE(7441), + [sym_subscript_expression] = STATE(5968), + [sym_call_expression] = STATE(5968), + [sym_gnu_asm_expression] = STATE(7441), + [sym_extension_expression] = STATE(7441), + [sym_field_expression] = STATE(5968), + [sym_compound_literal_expression] = STATE(7441), + [sym_parenthesized_expression] = STATE(5968), + [sym_char_literal] = STATE(7275), + [sym_concatenated_string] = STATE(7275), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(7441), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_module_declaration] = STATE(50), + [sym_export_declaration] = STATE(50), + [sym_import_declaration] = STATE(50), + [sym_global_module_fragment_declaration] = STATE(50), + [sym_private_module_fragment_declaration] = STATE(50), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(7330), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_consteval_block_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(7441), + [sym_new_expression] = STATE(7441), + [sym_delete_expression] = STATE(7441), + [sym_requires_clause] = STATE(7441), + [sym_requires_expression] = STATE(7441), + [sym_lambda_expression] = STATE(7441), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(7441), + [sym_parameter_pack_expansion] = STATE(7441), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5735), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(7441), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(7349), + [sym_expansion_statement] = STATE(50), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5968), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(399), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(401), + [aux_sym_preproc_if_token2] = ACTIONS(445), + [aux_sym_preproc_ifdef_token1] = ACTIONS(405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(405), + [aux_sym_preproc_else_token1] = ACTIONS(407), + [aux_sym_preproc_elif_token1] = ACTIONS(409), + [aux_sym_preproc_elifdef_token1] = ACTIONS(411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(411), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -51568,14 +51284,14 @@ 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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -51586,8 +51302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -51595,7 +51310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(203), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -51612,7 +51327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(205), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -51620,19 +51335,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -51649,7 +51362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), + [sym_number_literal] = ACTIONS(415), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -51660,24 +51373,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(123), [anon_sym_u8_DQUOTE] = ACTIONS(123), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), + [sym_true] = ACTIONS(417), + [sym_false] = ACTIONS(417), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(419), + [anon_sym_module] = ACTIONS(421), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -51688,422 +51404,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), + [sym_this] = ACTIONS(417), }, - [STATE(50)] = { - [sym__block_item] = STATE(44), - [sym_preproc_include] = STATE(44), - [sym_preproc_def] = STATE(44), - [sym_preproc_function_def] = STATE(44), - [sym_preproc_call] = STATE(44), - [sym_preproc_if] = STATE(44), - [sym_preproc_ifdef] = STATE(44), - [sym_function_definition] = STATE(44), - [sym_declaration] = STATE(44), - [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(44), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(44), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(44), - [sym_template_instantiation] = STATE(44), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(44), - [sym_operator_cast_declaration] = STATE(44), - [sym_constructor_or_destructor_definition] = STATE(44), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(44), - [sym_concept_definition] = STATE(44), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), - [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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(49), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1132), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(203), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(205), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), - }, - [STATE(51)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), + [STATE(46)] = { + [sym__top_level_item] = STATE(34), + [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(11569), + [sym_preproc_elif] = STATE(11569), + [sym_preproc_elifdef] = STATE(11569), + [sym_function_definition] = STATE(34), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(542), + [sym__top_level_statement] = STATE(34), + [sym_labeled_statement] = STATE(34), + [sym__top_level_expression_statement] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_case_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_goto_statement] = STATE(34), + [sym_expression] = STATE(7241), + [sym__string] = STATE(7275), + [sym_conditional_expression] = STATE(7441), + [sym_assignment_expression] = STATE(7441), + [sym_pointer_expression] = STATE(5968), + [sym_unary_expression] = STATE(7441), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(7441), + [sym_cast_expression] = STATE(7441), + [sym_sizeof_expression] = STATE(7441), + [sym_alignof_expression] = STATE(7441), + [sym_offsetof_expression] = STATE(7441), + [sym_generic_expression] = STATE(7441), + [sym_subscript_expression] = STATE(5968), + [sym_call_expression] = STATE(5968), + [sym_gnu_asm_expression] = STATE(7441), + [sym_extension_expression] = STATE(7441), + [sym_field_expression] = STATE(5968), + [sym_compound_literal_expression] = STATE(7441), + [sym_parenthesized_expression] = STATE(5968), + [sym_char_literal] = STATE(7275), + [sym_concatenated_string] = STATE(7275), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(7441), + [sym__empty_declaration] = STATE(34), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_module_declaration] = STATE(34), + [sym_export_declaration] = STATE(34), + [sym_import_declaration] = STATE(34), + [sym_global_module_fragment_declaration] = STATE(34), + [sym_private_module_fragment_declaration] = STATE(34), + [sym_template_declaration] = STATE(34), + [sym_template_instantiation] = STATE(34), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(34), + [sym_operator_cast_declaration] = STATE(34), + [sym_constructor_or_destructor_definition] = STATE(34), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(7330), + [sym_namespace_definition] = STATE(34), + [sym_namespace_alias_definition] = STATE(34), + [sym_using_declaration] = STATE(34), + [sym_alias_declaration] = STATE(34), + [sym_static_assert_declaration] = STATE(34), + [sym_consteval_block_declaration] = STATE(34), + [sym_concept_definition] = STATE(34), + [sym_for_range_loop] = STATE(34), + [sym_co_return_statement] = STATE(34), + [sym_co_yield_statement] = STATE(34), + [sym_throw_statement] = STATE(34), + [sym_try_statement] = STATE(34), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(7441), + [sym_new_expression] = STATE(7441), + [sym_delete_expression] = STATE(7441), + [sym_requires_clause] = STATE(7441), + [sym_requires_expression] = STATE(7441), + [sym_lambda_expression] = STATE(7441), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(7441), + [sym_parameter_pack_expansion] = STATE(7441), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5735), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(7441), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(7349), + [sym_expansion_statement] = STATE(34), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5968), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(399), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(401), + [aux_sym_preproc_if_token2] = ACTIONS(447), + [aux_sym_preproc_ifdef_token1] = ACTIONS(405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(405), + [aux_sym_preproc_else_token1] = ACTIONS(407), + [aux_sym_preproc_elif_token1] = ACTIONS(409), + [aux_sym_preproc_elifdef_token1] = ACTIONS(411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(411), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -52112,14 +51566,14 @@ 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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -52130,8 +51584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -52139,7 +51592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(203), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -52156,7 +51609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(205), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -52164,19 +51617,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -52193,7 +51644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), + [sym_number_literal] = ACTIONS(415), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -52204,24 +51655,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(123), [anon_sym_u8_DQUOTE] = ACTIONS(123), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), + [sym_true] = ACTIONS(417), + [sym_false] = ACTIONS(417), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(419), + [anon_sym_module] = ACTIONS(421), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -52232,150 +51686,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), + [sym_this] = ACTIONS(417), }, - [STATE(52)] = { - [sym__block_item] = STATE(55), - [sym_preproc_include] = STATE(55), - [sym_preproc_def] = STATE(55), - [sym_preproc_function_def] = STATE(55), - [sym_preproc_call] = STATE(55), - [sym_preproc_if] = STATE(55), - [sym_preproc_ifdef] = STATE(55), - [sym_function_definition] = STATE(55), - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(55), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(55), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(55), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(55), - [sym_template_instantiation] = STATE(55), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(55), - [sym_operator_cast_declaration] = STATE(55), - [sym_constructor_or_destructor_definition] = STATE(55), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(55), - [sym_concept_definition] = STATE(55), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(55), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), + [STATE(47)] = { + [sym__top_level_item] = STATE(38), + [sym_preproc_include] = STATE(38), + [sym_preproc_def] = STATE(38), + [sym_preproc_function_def] = STATE(38), + [sym_preproc_call] = STATE(38), + [sym_preproc_if] = STATE(38), + [sym_preproc_ifdef] = STATE(38), + [sym_preproc_else] = STATE(11201), + [sym_preproc_elif] = STATE(11201), + [sym_preproc_elifdef] = STATE(11201), + [sym_function_definition] = STATE(38), + [sym_declaration] = STATE(38), + [sym_type_definition] = STATE(38), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(38), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(542), + [sym__top_level_statement] = STATE(38), + [sym_labeled_statement] = STATE(38), + [sym__top_level_expression_statement] = STATE(38), + [sym_if_statement] = STATE(38), + [sym_switch_statement] = STATE(38), + [sym_case_statement] = STATE(38), + [sym_while_statement] = STATE(38), + [sym_do_statement] = STATE(38), + [sym_for_statement] = STATE(38), + [sym_return_statement] = STATE(38), + [sym_break_statement] = STATE(38), + [sym_continue_statement] = STATE(38), + [sym_goto_statement] = STATE(38), + [sym_expression] = STATE(7241), + [sym__string] = STATE(7275), + [sym_conditional_expression] = STATE(7441), + [sym_assignment_expression] = STATE(7441), + [sym_pointer_expression] = STATE(5968), + [sym_unary_expression] = STATE(7441), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(7441), + [sym_cast_expression] = STATE(7441), + [sym_sizeof_expression] = STATE(7441), + [sym_alignof_expression] = STATE(7441), + [sym_offsetof_expression] = STATE(7441), + [sym_generic_expression] = STATE(7441), + [sym_subscript_expression] = STATE(5968), + [sym_call_expression] = STATE(5968), + [sym_gnu_asm_expression] = STATE(7441), + [sym_extension_expression] = STATE(7441), + [sym_field_expression] = STATE(5968), + [sym_compound_literal_expression] = STATE(7441), + [sym_parenthesized_expression] = STATE(5968), + [sym_char_literal] = STATE(7275), + [sym_concatenated_string] = STATE(7275), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(7441), + [sym__empty_declaration] = STATE(38), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_module_declaration] = STATE(38), + [sym_export_declaration] = STATE(38), + [sym_import_declaration] = STATE(38), + [sym_global_module_fragment_declaration] = STATE(38), + [sym_private_module_fragment_declaration] = STATE(38), + [sym_template_declaration] = STATE(38), + [sym_template_instantiation] = STATE(38), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(38), + [sym_operator_cast_declaration] = STATE(38), + [sym_constructor_or_destructor_definition] = STATE(38), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(7330), + [sym_namespace_definition] = STATE(38), + [sym_namespace_alias_definition] = STATE(38), + [sym_using_declaration] = STATE(38), + [sym_alias_declaration] = STATE(38), + [sym_static_assert_declaration] = STATE(38), + [sym_consteval_block_declaration] = STATE(38), + [sym_concept_definition] = STATE(38), + [sym_for_range_loop] = STATE(38), + [sym_co_return_statement] = STATE(38), + [sym_co_yield_statement] = STATE(38), + [sym_throw_statement] = STATE(38), + [sym_try_statement] = STATE(38), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(7441), + [sym_new_expression] = STATE(7441), + [sym_delete_expression] = STATE(7441), + [sym_requires_clause] = STATE(7441), + [sym_requires_expression] = STATE(7441), + [sym_lambda_expression] = STATE(7441), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(7441), + [sym_parameter_pack_expansion] = STATE(7441), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5735), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(7441), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(7349), + [sym_expansion_statement] = STATE(38), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5968), + [aux_sym_translation_unit_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(399), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(401), + [aux_sym_preproc_if_token2] = ACTIONS(449), + [aux_sym_preproc_ifdef_token1] = ACTIONS(405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(405), + [aux_sym_preproc_else_token1] = ACTIONS(407), + [aux_sym_preproc_elif_token1] = ACTIONS(409), + [aux_sym_preproc_elifdef_token1] = ACTIONS(411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(411), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -52384,14 +51848,14 @@ 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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -52402,8 +51866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -52411,7 +51874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(203), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -52428,7 +51891,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(205), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -52436,19 +51899,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -52465,7 +51926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), + [sym_number_literal] = ACTIONS(415), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -52476,24 +51937,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(123), [anon_sym_u8_DQUOTE] = ACTIONS(123), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), + [sym_true] = ACTIONS(417), + [sym_false] = ACTIONS(417), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(419), + [anon_sym_module] = ACTIONS(421), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -52504,151 +51968,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), + [sym_this] = ACTIONS(417), }, - [STATE(53)] = { - [sym__block_item] = STATE(37), - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6279), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2620), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8706), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(652), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4324), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(859), - [sym_statement] = STATE(37), - [sym_labeled_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_if_statement] = STATE(652), - [sym_switch_statement] = STATE(652), - [sym_case_statement] = STATE(652), - [sym_while_statement] = STATE(652), - [sym_do_statement] = STATE(652), - [sym_for_statement] = STATE(652), - [sym_return_statement] = STATE(652), - [sym_break_statement] = STATE(652), - [sym_continue_statement] = STATE(652), - [sym_goto_statement] = STATE(652), - [sym_seh_try_statement] = STATE(652), - [sym_seh_leave_statement] = STATE(652), - [sym_expression] = STATE(6696), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10652), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(37), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2413), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(37), - [sym_template_instantiation] = STATE(37), - [sym_operator_cast] = STATE(9049), - [sym__constructor_specifiers] = STATE(2413), - [sym_operator_cast_definition] = STATE(37), - [sym_operator_cast_declaration] = STATE(37), - [sym_constructor_or_destructor_definition] = STATE(37), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(37), - [sym_concept_definition] = STATE(37), - [sym_for_range_loop] = STATE(652), - [sym_co_return_statement] = STATE(652), - [sym_co_yield_statement] = STATE(652), - [sym_throw_statement] = STATE(652), - [sym_try_statement] = STATE(652), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9049), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(652), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(156), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2413), - [sym_identifier] = ACTIONS(1138), - [aux_sym_preproc_include_token1] = ACTIONS(1140), - [aux_sym_preproc_def_token1] = ACTIONS(1142), - [aux_sym_preproc_if_token1] = ACTIONS(1144), - [aux_sym_preproc_if_token2] = ACTIONS(1146), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1148), - [sym_preproc_directive] = ACTIONS(1150), + [STATE(48)] = { + [sym__top_level_item] = STATE(50), + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_preproc_else] = STATE(11026), + [sym_preproc_elif] = STATE(11026), + [sym_preproc_elifdef] = STATE(11026), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(542), + [sym__top_level_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym__top_level_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym_expression] = STATE(7241), + [sym__string] = STATE(7275), + [sym_conditional_expression] = STATE(7441), + [sym_assignment_expression] = STATE(7441), + [sym_pointer_expression] = STATE(5968), + [sym_unary_expression] = STATE(7441), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(7441), + [sym_cast_expression] = STATE(7441), + [sym_sizeof_expression] = STATE(7441), + [sym_alignof_expression] = STATE(7441), + [sym_offsetof_expression] = STATE(7441), + [sym_generic_expression] = STATE(7441), + [sym_subscript_expression] = STATE(5968), + [sym_call_expression] = STATE(5968), + [sym_gnu_asm_expression] = STATE(7441), + [sym_extension_expression] = STATE(7441), + [sym_field_expression] = STATE(5968), + [sym_compound_literal_expression] = STATE(7441), + [sym_parenthesized_expression] = STATE(5968), + [sym_char_literal] = STATE(7275), + [sym_concatenated_string] = STATE(7275), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(7441), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_module_declaration] = STATE(50), + [sym_export_declaration] = STATE(50), + [sym_import_declaration] = STATE(50), + [sym_global_module_fragment_declaration] = STATE(50), + [sym_private_module_fragment_declaration] = STATE(50), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(7330), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_consteval_block_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(7441), + [sym_new_expression] = STATE(7441), + [sym_delete_expression] = STATE(7441), + [sym_requires_clause] = STATE(7441), + [sym_requires_expression] = STATE(7441), + [sym_lambda_expression] = STATE(7441), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(7441), + [sym_parameter_pack_expansion] = STATE(7441), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5735), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(7441), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(7349), + [sym_expansion_statement] = STATE(50), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5968), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(399), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(401), + [aux_sym_preproc_if_token2] = ACTIONS(451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(405), + [aux_sym_preproc_else_token1] = ACTIONS(407), + [aux_sym_preproc_elif_token1] = ACTIONS(409), + [aux_sym_preproc_elifdef_token1] = ACTIONS(411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(411), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -52657,14 +52130,14 @@ 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(1152), - [anon_sym___extension__] = ACTIONS(1154), - [anon_sym_typedef] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(1158), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1160), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -52675,7 +52148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -52683,7 +52156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(1164), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -52700,7 +52173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(1166), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -52708,19 +52181,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_goto] = ACTIONS(1188), - [anon_sym___try] = ACTIONS(1190), - [anon_sym___leave] = ACTIONS(1192), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -52737,7 +52208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), + [sym_number_literal] = ACTIONS(415), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -52748,24 +52219,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(123), [anon_sym_u8_DQUOTE] = ACTIONS(123), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), + [sym_true] = ACTIONS(417), + [sym_false] = ACTIONS(417), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(1194), + [anon_sym_export] = ACTIONS(419), + [anon_sym_module] = ACTIONS(421), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(1196), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1198), - [anon_sym_namespace] = ACTIONS(1200), - [anon_sym_static_assert] = ACTIONS(1202), - [anon_sym_concept] = ACTIONS(1204), - [anon_sym_co_return] = ACTIONS(1206), - [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -52776,144 +52250,705 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), + [sym_this] = ACTIONS(417), }, - [STATE(54)] = { - [sym__block_item] = STATE(47), - [sym_preproc_include] = STATE(47), - [sym_preproc_def] = STATE(47), - [sym_preproc_function_def] = STATE(47), - [sym_preproc_call] = STATE(47), - [sym_preproc_if] = STATE(47), - [sym_preproc_ifdef] = STATE(47), - [sym_function_definition] = STATE(47), - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(47), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(47), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(47), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(47), - [sym_template_instantiation] = STATE(47), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(47), - [sym_operator_cast_declaration] = STATE(47), - [sym_constructor_or_destructor_definition] = STATE(47), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [sym_namespace_definition] = STATE(47), - [sym_namespace_alias_definition] = STATE(47), - [sym_using_declaration] = STATE(47), - [sym_alias_declaration] = STATE(47), - [sym_static_assert_declaration] = STATE(47), - [sym_consteval_block_declaration] = STATE(47), - [sym_concept_definition] = STATE(47), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [STATE(49)] = { + [sym__block_item] = STATE(49), + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_function_definition] = STATE(49), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(339), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(405), + [sym_statement] = STATE(49), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(49), + [sym_preproc_if_in_block] = STATE(49), + [sym_preproc_ifdef_in_block] = STATE(49), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(49), + [sym_import_declaration] = STATE(49), + [sym_template_declaration] = STATE(49), + [sym_template_instantiation] = STATE(49), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(49), + [sym_operator_cast_declaration] = STATE(49), + [sym_constructor_or_destructor_definition] = STATE(49), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(49), + [sym_concept_definition] = STATE(49), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(49), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(453), + [aux_sym_preproc_include_token1] = ACTIONS(456), + [aux_sym_preproc_def_token1] = ACTIONS(459), + [aux_sym_preproc_if_token1] = ACTIONS(462), + [aux_sym_preproc_if_token2] = ACTIONS(465), + [aux_sym_preproc_ifdef_token1] = ACTIONS(467), + [aux_sym_preproc_ifdef_token2] = ACTIONS(467), + [aux_sym_preproc_else_token1] = ACTIONS(465), + [aux_sym_preproc_elif_token1] = ACTIONS(465), + [aux_sym_preproc_elifdef_token1] = ACTIONS(465), + [aux_sym_preproc_elifdef_token2] = ACTIONS(465), + [sym_preproc_directive] = ACTIONS(470), + [anon_sym_LPAREN2] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(488), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(494), + [anon_sym___extension__] = ACTIONS(497), + [anon_sym_typedef] = ACTIONS(500), + [anon_sym_virtual] = ACTIONS(503), + [anon_sym_extern] = ACTIONS(506), + [anon_sym___attribute__] = ACTIONS(509), + [anon_sym___attribute] = ACTIONS(509), + [anon_sym_using] = ACTIONS(512), + [anon_sym_COLON_COLON] = ACTIONS(515), + [anon_sym_LBRACK_LBRACK] = ACTIONS(518), + [anon_sym___declspec] = ACTIONS(521), + [anon_sym___based] = ACTIONS(524), + [anon_sym___cdecl] = ACTIONS(527), + [anon_sym___clrcall] = ACTIONS(527), + [anon_sym___stdcall] = ACTIONS(527), + [anon_sym___fastcall] = ACTIONS(527), + [anon_sym___thiscall] = ACTIONS(527), + [anon_sym___vectorcall] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_signed] = ACTIONS(533), + [anon_sym_unsigned] = ACTIONS(533), + [anon_sym_long] = ACTIONS(533), + [anon_sym_short] = ACTIONS(533), + [anon_sym_LBRACK] = ACTIONS(536), + [anon_sym_static] = ACTIONS(539), + [anon_sym_register] = ACTIONS(539), + [anon_sym_inline] = ACTIONS(542), + [anon_sym___inline] = ACTIONS(539), + [anon_sym___inline__] = ACTIONS(539), + [anon_sym___forceinline] = ACTIONS(539), + [anon_sym_thread_local] = ACTIONS(539), + [anon_sym___thread] = ACTIONS(539), + [anon_sym_const] = ACTIONS(545), + [anon_sym_constexpr] = ACTIONS(545), + [anon_sym_volatile] = ACTIONS(545), + [anon_sym_restrict] = ACTIONS(545), + [anon_sym___restrict__] = ACTIONS(545), + [anon_sym__Atomic] = ACTIONS(545), + [anon_sym__Noreturn] = ACTIONS(545), + [anon_sym_noreturn] = ACTIONS(545), + [anon_sym__Nonnull] = ACTIONS(545), + [anon_sym_mutable] = ACTIONS(545), + [anon_sym_constinit] = ACTIONS(545), + [anon_sym_consteval] = ACTIONS(548), + [anon_sym_alignas] = ACTIONS(551), + [anon_sym__Alignas] = ACTIONS(551), + [sym_primitive_type] = ACTIONS(554), + [anon_sym_enum] = ACTIONS(557), + [anon_sym_class] = ACTIONS(560), + [anon_sym_struct] = ACTIONS(563), + [anon_sym_union] = ACTIONS(566), + [anon_sym_if] = ACTIONS(569), + [anon_sym_switch] = ACTIONS(572), + [anon_sym_case] = ACTIONS(575), + [anon_sym_default] = ACTIONS(578), + [anon_sym_while] = ACTIONS(581), + [anon_sym_do] = ACTIONS(584), + [anon_sym_for] = ACTIONS(587), + [anon_sym_return] = ACTIONS(590), + [anon_sym_break] = ACTIONS(593), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_goto] = ACTIONS(599), + [anon_sym___try] = ACTIONS(602), + [anon_sym___leave] = ACTIONS(605), + [anon_sym_not] = ACTIONS(482), + [anon_sym_compl] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(608), + [anon_sym_PLUS_PLUS] = ACTIONS(608), + [anon_sym_sizeof] = ACTIONS(611), + [anon_sym___alignof__] = ACTIONS(614), + [anon_sym___alignof] = ACTIONS(614), + [anon_sym__alignof] = ACTIONS(614), + [anon_sym_alignof] = ACTIONS(614), + [anon_sym__Alignof] = ACTIONS(614), + [anon_sym_offsetof] = ACTIONS(617), + [anon_sym__Generic] = ACTIONS(620), + [anon_sym_typename] = ACTIONS(623), + [anon_sym_asm] = ACTIONS(626), + [anon_sym___asm__] = ACTIONS(626), + [anon_sym___asm] = ACTIONS(626), + [sym_number_literal] = ACTIONS(629), + [anon_sym_L_SQUOTE] = ACTIONS(632), + [anon_sym_u_SQUOTE] = ACTIONS(632), + [anon_sym_U_SQUOTE] = ACTIONS(632), + [anon_sym_u8_SQUOTE] = ACTIONS(632), + [anon_sym_SQUOTE] = ACTIONS(632), + [anon_sym_L_DQUOTE] = ACTIONS(635), + [anon_sym_u_DQUOTE] = ACTIONS(635), + [anon_sym_U_DQUOTE] = ACTIONS(635), + [anon_sym_u8_DQUOTE] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [sym_true] = ACTIONS(638), + [sym_false] = ACTIONS(638), + [anon_sym_NULL] = ACTIONS(641), + [anon_sym_nullptr] = ACTIONS(641), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(644), + [anon_sym_decltype] = ACTIONS(647), + [anon_sym_explicit] = ACTIONS(650), + [anon_sym_export] = ACTIONS(653), + [anon_sym_import] = ACTIONS(656), + [anon_sym_template] = ACTIONS(659), + [anon_sym_operator] = ACTIONS(662), + [anon_sym_try] = ACTIONS(665), + [anon_sym_delete] = ACTIONS(668), + [anon_sym_throw] = ACTIONS(671), + [anon_sym_namespace] = ACTIONS(674), + [anon_sym_static_assert] = ACTIONS(677), + [anon_sym_concept] = ACTIONS(680), + [anon_sym_co_return] = ACTIONS(683), + [anon_sym_co_yield] = ACTIONS(686), + [anon_sym_R_DQUOTE] = ACTIONS(689), + [anon_sym_LR_DQUOTE] = ACTIONS(689), + [anon_sym_uR_DQUOTE] = ACTIONS(689), + [anon_sym_UR_DQUOTE] = ACTIONS(689), + [anon_sym_u8R_DQUOTE] = ACTIONS(689), + [anon_sym_co_await] = ACTIONS(692), + [anon_sym_new] = ACTIONS(695), + [anon_sym_requires] = ACTIONS(698), + [anon_sym_CARET_CARET] = ACTIONS(701), + [anon_sym_LBRACK_COLON] = ACTIONS(704), + [sym_this] = ACTIONS(638), + }, + [STATE(50)] = { + [sym__top_level_item] = STATE(50), + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(542), + [sym__top_level_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym__top_level_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym_expression] = STATE(7241), + [sym__string] = STATE(7275), + [sym_conditional_expression] = STATE(7441), + [sym_assignment_expression] = STATE(7441), + [sym_pointer_expression] = STATE(5968), + [sym_unary_expression] = STATE(7441), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(7441), + [sym_cast_expression] = STATE(7441), + [sym_sizeof_expression] = STATE(7441), + [sym_alignof_expression] = STATE(7441), + [sym_offsetof_expression] = STATE(7441), + [sym_generic_expression] = STATE(7441), + [sym_subscript_expression] = STATE(5968), + [sym_call_expression] = STATE(5968), + [sym_gnu_asm_expression] = STATE(7441), + [sym_extension_expression] = STATE(7441), + [sym_field_expression] = STATE(5968), + [sym_compound_literal_expression] = STATE(7441), + [sym_parenthesized_expression] = STATE(5968), + [sym_char_literal] = STATE(7275), + [sym_concatenated_string] = STATE(7275), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(7441), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_module_declaration] = STATE(50), + [sym_export_declaration] = STATE(50), + [sym_import_declaration] = STATE(50), + [sym_global_module_fragment_declaration] = STATE(50), + [sym_private_module_fragment_declaration] = STATE(50), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(7330), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_consteval_block_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(7441), + [sym_new_expression] = STATE(7441), + [sym_delete_expression] = STATE(7441), + [sym_requires_clause] = STATE(7441), + [sym_requires_expression] = STATE(7441), + [sym_lambda_expression] = STATE(7441), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(7441), + [sym_parameter_pack_expansion] = STATE(7441), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5735), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(7441), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(7349), + [sym_expansion_statement] = STATE(50), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5968), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(707), + [aux_sym_preproc_include_token1] = ACTIONS(710), + [aux_sym_preproc_def_token1] = ACTIONS(713), + [aux_sym_preproc_if_token1] = ACTIONS(716), + [aux_sym_preproc_if_token2] = ACTIONS(719), + [aux_sym_preproc_ifdef_token1] = ACTIONS(721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(721), + [aux_sym_preproc_else_token1] = ACTIONS(719), + [aux_sym_preproc_elif_token1] = ACTIONS(719), + [aux_sym_preproc_elifdef_token1] = ACTIONS(719), + [aux_sym_preproc_elifdef_token2] = ACTIONS(719), + [sym_preproc_directive] = ACTIONS(724), + [anon_sym_LPAREN2] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(730), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(745), + [anon_sym_SEMI] = ACTIONS(748), + [anon_sym___extension__] = ACTIONS(751), + [anon_sym_typedef] = ACTIONS(754), + [anon_sym_virtual] = ACTIONS(757), + [anon_sym_extern] = ACTIONS(760), + [anon_sym___attribute__] = ACTIONS(763), + [anon_sym___attribute] = ACTIONS(763), + [anon_sym_using] = ACTIONS(766), + [anon_sym_COLON_COLON] = ACTIONS(769), + [anon_sym_LBRACK_LBRACK] = ACTIONS(772), + [anon_sym___declspec] = ACTIONS(775), + [anon_sym___based] = ACTIONS(778), + [anon_sym___cdecl] = ACTIONS(781), + [anon_sym___clrcall] = ACTIONS(781), + [anon_sym___stdcall] = ACTIONS(781), + [anon_sym___fastcall] = ACTIONS(781), + [anon_sym___thiscall] = ACTIONS(781), + [anon_sym___vectorcall] = ACTIONS(781), + [anon_sym_LBRACE] = ACTIONS(784), + [anon_sym_signed] = ACTIONS(787), + [anon_sym_unsigned] = ACTIONS(787), + [anon_sym_long] = ACTIONS(787), + [anon_sym_short] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_static] = ACTIONS(793), + [anon_sym_register] = ACTIONS(793), + [anon_sym_inline] = ACTIONS(796), + [anon_sym___inline] = ACTIONS(793), + [anon_sym___inline__] = ACTIONS(793), + [anon_sym___forceinline] = ACTIONS(793), + [anon_sym_thread_local] = ACTIONS(793), + [anon_sym___thread] = ACTIONS(793), + [anon_sym_const] = ACTIONS(799), + [anon_sym_constexpr] = ACTIONS(799), + [anon_sym_volatile] = ACTIONS(799), + [anon_sym_restrict] = ACTIONS(799), + [anon_sym___restrict__] = ACTIONS(799), + [anon_sym__Atomic] = ACTIONS(799), + [anon_sym__Noreturn] = ACTIONS(799), + [anon_sym_noreturn] = ACTIONS(799), + [anon_sym__Nonnull] = ACTIONS(799), + [anon_sym_mutable] = ACTIONS(799), + [anon_sym_constinit] = ACTIONS(799), + [anon_sym_consteval] = ACTIONS(802), + [anon_sym_alignas] = ACTIONS(805), + [anon_sym__Alignas] = ACTIONS(805), + [sym_primitive_type] = ACTIONS(808), + [anon_sym_enum] = ACTIONS(811), + [anon_sym_class] = ACTIONS(814), + [anon_sym_struct] = ACTIONS(817), + [anon_sym_union] = ACTIONS(820), + [anon_sym_if] = ACTIONS(823), + [anon_sym_switch] = ACTIONS(826), + [anon_sym_case] = ACTIONS(829), + [anon_sym_default] = ACTIONS(832), + [anon_sym_while] = ACTIONS(835), + [anon_sym_do] = ACTIONS(838), + [anon_sym_for] = ACTIONS(841), + [anon_sym_return] = ACTIONS(844), + [anon_sym_break] = ACTIONS(847), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_goto] = ACTIONS(853), + [anon_sym_not] = ACTIONS(736), + [anon_sym_compl] = ACTIONS(736), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_sizeof] = ACTIONS(859), + [anon_sym___alignof__] = ACTIONS(862), + [anon_sym___alignof] = ACTIONS(862), + [anon_sym__alignof] = ACTIONS(862), + [anon_sym_alignof] = ACTIONS(862), + [anon_sym__Alignof] = ACTIONS(862), + [anon_sym_offsetof] = ACTIONS(865), + [anon_sym__Generic] = ACTIONS(868), + [anon_sym_typename] = ACTIONS(871), + [anon_sym_asm] = ACTIONS(874), + [anon_sym___asm__] = ACTIONS(874), + [anon_sym___asm] = ACTIONS(874), + [sym_number_literal] = ACTIONS(877), + [anon_sym_L_SQUOTE] = ACTIONS(880), + [anon_sym_u_SQUOTE] = ACTIONS(880), + [anon_sym_U_SQUOTE] = ACTIONS(880), + [anon_sym_u8_SQUOTE] = ACTIONS(880), + [anon_sym_SQUOTE] = ACTIONS(880), + [anon_sym_L_DQUOTE] = ACTIONS(883), + [anon_sym_u_DQUOTE] = ACTIONS(883), + [anon_sym_U_DQUOTE] = ACTIONS(883), + [anon_sym_u8_DQUOTE] = ACTIONS(883), + [anon_sym_DQUOTE] = ACTIONS(883), + [sym_true] = ACTIONS(886), + [sym_false] = ACTIONS(886), + [anon_sym_NULL] = ACTIONS(889), + [anon_sym_nullptr] = ACTIONS(889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(892), + [anon_sym_decltype] = ACTIONS(895), + [anon_sym_explicit] = ACTIONS(898), + [anon_sym_export] = ACTIONS(901), + [anon_sym_module] = ACTIONS(904), + [anon_sym_import] = ACTIONS(907), + [anon_sym_template] = ACTIONS(910), + [anon_sym_operator] = ACTIONS(913), + [anon_sym_try] = ACTIONS(916), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_throw] = ACTIONS(922), + [anon_sym_namespace] = ACTIONS(925), + [anon_sym_static_assert] = ACTIONS(928), + [anon_sym_concept] = ACTIONS(931), + [anon_sym_co_return] = ACTIONS(934), + [anon_sym_co_yield] = ACTIONS(937), + [anon_sym_R_DQUOTE] = ACTIONS(940), + [anon_sym_LR_DQUOTE] = ACTIONS(940), + [anon_sym_uR_DQUOTE] = ACTIONS(940), + [anon_sym_UR_DQUOTE] = ACTIONS(940), + [anon_sym_u8R_DQUOTE] = ACTIONS(940), + [anon_sym_co_await] = ACTIONS(943), + [anon_sym_new] = ACTIONS(946), + [anon_sym_requires] = ACTIONS(949), + [anon_sym_CARET_CARET] = ACTIONS(952), + [anon_sym_LBRACK_COLON] = ACTIONS(955), + [sym_this] = ACTIONS(886), + }, + [STATE(51)] = { + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -52946,8 +52981,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(962), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -53028,16 +53063,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -53050,142 +53087,420 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(55)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [STATE(52)] = { + [sym__block_item] = STATE(52), + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6413), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2707), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8810), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(637), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4502), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(650), + [sym_statement] = STATE(52), + [sym_labeled_statement] = STATE(637), + [sym_expression_statement] = STATE(637), + [sym_if_statement] = STATE(637), + [sym_switch_statement] = STATE(637), + [sym_case_statement] = STATE(637), + [sym_while_statement] = STATE(637), + [sym_do_statement] = STATE(637), + [sym_for_statement] = STATE(637), + [sym_return_statement] = STATE(637), + [sym_break_statement] = STATE(637), + [sym_continue_statement] = STATE(637), + [sym_goto_statement] = STATE(637), + [sym_seh_try_statement] = STATE(637), + [sym_seh_leave_statement] = STATE(637), + [sym_expression] = STATE(6804), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11583), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(52), + [sym_preproc_if_in_block] = STATE(52), + [sym_preproc_ifdef_in_block] = STATE(52), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2454), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(52), + [sym_import_declaration] = STATE(52), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(9210), + [sym__constructor_specifiers] = STATE(2454), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(637), + [sym_co_return_statement] = STATE(637), + [sym_co_yield_statement] = STATE(637), + [sym_throw_statement] = STATE(637), + [sym_try_statement] = STATE(637), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9210), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(637), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(52), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2454), + [sym_identifier] = ACTIONS(964), + [aux_sym_preproc_include_token1] = ACTIONS(967), + [aux_sym_preproc_def_token1] = ACTIONS(970), + [aux_sym_preproc_if_token1] = ACTIONS(973), + [aux_sym_preproc_if_token2] = ACTIONS(465), + [aux_sym_preproc_ifdef_token1] = ACTIONS(976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(979), + [anon_sym_LPAREN2] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(488), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym___extension__] = ACTIONS(985), + [anon_sym_typedef] = ACTIONS(988), + [anon_sym_virtual] = ACTIONS(503), + [anon_sym_extern] = ACTIONS(991), + [anon_sym___attribute__] = ACTIONS(509), + [anon_sym___attribute] = ACTIONS(509), + [anon_sym_using] = ACTIONS(994), + [anon_sym_COLON_COLON] = ACTIONS(515), + [anon_sym_LBRACK_LBRACK] = ACTIONS(518), + [anon_sym___declspec] = ACTIONS(521), + [anon_sym___based] = ACTIONS(524), + [anon_sym___cdecl] = ACTIONS(527), + [anon_sym___clrcall] = ACTIONS(527), + [anon_sym___stdcall] = ACTIONS(527), + [anon_sym___fastcall] = ACTIONS(527), + [anon_sym___thiscall] = ACTIONS(527), + [anon_sym___vectorcall] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(997), + [anon_sym_signed] = ACTIONS(533), + [anon_sym_unsigned] = ACTIONS(533), + [anon_sym_long] = ACTIONS(533), + [anon_sym_short] = ACTIONS(533), + [anon_sym_LBRACK] = ACTIONS(536), + [anon_sym_static] = ACTIONS(539), + [anon_sym_register] = ACTIONS(539), + [anon_sym_inline] = ACTIONS(1000), + [anon_sym___inline] = ACTIONS(539), + [anon_sym___inline__] = ACTIONS(539), + [anon_sym___forceinline] = ACTIONS(539), + [anon_sym_thread_local] = ACTIONS(539), + [anon_sym___thread] = ACTIONS(539), + [anon_sym_const] = ACTIONS(545), + [anon_sym_constexpr] = ACTIONS(545), + [anon_sym_volatile] = ACTIONS(545), + [anon_sym_restrict] = ACTIONS(545), + [anon_sym___restrict__] = ACTIONS(545), + [anon_sym__Atomic] = ACTIONS(545), + [anon_sym__Noreturn] = ACTIONS(545), + [anon_sym_noreturn] = ACTIONS(545), + [anon_sym__Nonnull] = ACTIONS(545), + [anon_sym_mutable] = ACTIONS(545), + [anon_sym_constinit] = ACTIONS(545), + [anon_sym_consteval] = ACTIONS(1003), + [anon_sym_alignas] = ACTIONS(551), + [anon_sym__Alignas] = ACTIONS(551), + [sym_primitive_type] = ACTIONS(554), + [anon_sym_enum] = ACTIONS(557), + [anon_sym_class] = ACTIONS(560), + [anon_sym_struct] = ACTIONS(563), + [anon_sym_union] = ACTIONS(566), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1015), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1027), + [anon_sym_break] = ACTIONS(1030), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_goto] = ACTIONS(1036), + [anon_sym___try] = ACTIONS(1039), + [anon_sym___leave] = ACTIONS(1042), + [anon_sym_not] = ACTIONS(482), + [anon_sym_compl] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(608), + [anon_sym_PLUS_PLUS] = ACTIONS(608), + [anon_sym_sizeof] = ACTIONS(611), + [anon_sym___alignof__] = ACTIONS(614), + [anon_sym___alignof] = ACTIONS(614), + [anon_sym__alignof] = ACTIONS(614), + [anon_sym_alignof] = ACTIONS(614), + [anon_sym__Alignof] = ACTIONS(614), + [anon_sym_offsetof] = ACTIONS(617), + [anon_sym__Generic] = ACTIONS(620), + [anon_sym_typename] = ACTIONS(623), + [anon_sym_asm] = ACTIONS(626), + [anon_sym___asm__] = ACTIONS(626), + [anon_sym___asm] = ACTIONS(626), + [sym_number_literal] = ACTIONS(629), + [anon_sym_L_SQUOTE] = ACTIONS(632), + [anon_sym_u_SQUOTE] = ACTIONS(632), + [anon_sym_U_SQUOTE] = ACTIONS(632), + [anon_sym_u8_SQUOTE] = ACTIONS(632), + [anon_sym_SQUOTE] = ACTIONS(632), + [anon_sym_L_DQUOTE] = ACTIONS(635), + [anon_sym_u_DQUOTE] = ACTIONS(635), + [anon_sym_U_DQUOTE] = ACTIONS(635), + [anon_sym_u8_DQUOTE] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [sym_true] = ACTIONS(638), + [sym_false] = ACTIONS(638), + [anon_sym_NULL] = ACTIONS(641), + [anon_sym_nullptr] = ACTIONS(641), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(644), + [anon_sym_decltype] = ACTIONS(647), + [anon_sym_explicit] = ACTIONS(650), + [anon_sym_export] = ACTIONS(1045), + [anon_sym_import] = ACTIONS(1048), + [anon_sym_template] = ACTIONS(1051), + [anon_sym_operator] = ACTIONS(662), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_delete] = ACTIONS(668), + [anon_sym_throw] = ACTIONS(1057), + [anon_sym_namespace] = ACTIONS(1060), + [anon_sym_static_assert] = ACTIONS(1063), + [anon_sym_concept] = ACTIONS(1066), + [anon_sym_co_return] = ACTIONS(1069), + [anon_sym_co_yield] = ACTIONS(1072), + [anon_sym_R_DQUOTE] = ACTIONS(689), + [anon_sym_LR_DQUOTE] = ACTIONS(689), + [anon_sym_uR_DQUOTE] = ACTIONS(689), + [anon_sym_UR_DQUOTE] = ACTIONS(689), + [anon_sym_u8R_DQUOTE] = ACTIONS(689), + [anon_sym_co_await] = ACTIONS(692), + [anon_sym_new] = ACTIONS(695), + [anon_sym_requires] = ACTIONS(698), + [anon_sym_CARET_CARET] = ACTIONS(701), + [anon_sym_LBRACK_COLON] = ACTIONS(704), + [sym_this] = ACTIONS(638), + }, + [STATE(53)] = { + [sym__block_item] = STATE(55), + [sym_preproc_include] = STATE(55), + [sym_preproc_def] = STATE(55), + [sym_preproc_function_def] = STATE(55), + [sym_preproc_call] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(55), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(55), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(55), + [sym_preproc_if_in_block] = STATE(55), + [sym_preproc_ifdef_in_block] = STATE(55), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(55), + [sym_import_declaration] = STATE(55), + [sym_template_declaration] = STATE(55), + [sym_template_instantiation] = STATE(55), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(55), + [sym_operator_cast_declaration] = STATE(55), + [sym_constructor_or_destructor_definition] = STATE(55), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(55), + [sym_concept_definition] = STATE(55), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(55), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -53218,8 +53533,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1075), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -53300,16 +53615,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -53322,147 +53639,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(56)] = { - [sym__block_item] = STATE(648), - [sym_preproc_include] = STATE(648), - [sym_preproc_def] = STATE(648), - [sym_preproc_function_def] = STATE(648), - [sym_preproc_call] = STATE(648), - [sym_preproc_if] = STATE(648), - [sym_preproc_ifdef] = STATE(648), - [sym_function_definition] = STATE(648), - [sym_declaration] = STATE(648), - [sym_type_definition] = STATE(648), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6284), - [sym_linkage_specification] = STATE(648), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2569), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8682), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(496), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4304), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(653), - [sym_statement] = STATE(648), - [sym_labeled_statement] = STATE(496), - [sym_expression_statement] = STATE(496), - [sym_if_statement] = STATE(496), - [sym_switch_statement] = STATE(496), - [sym_case_statement] = STATE(496), - [sym_while_statement] = STATE(496), - [sym_do_statement] = STATE(496), - [sym_for_statement] = STATE(496), - [sym_return_statement] = STATE(496), - [sym_break_statement] = STATE(496), - [sym_continue_statement] = STATE(496), - [sym_goto_statement] = STATE(496), - [sym_seh_try_statement] = STATE(496), - [sym_seh_leave_statement] = STATE(496), - [sym_expression] = STATE(6685), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10787), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(648), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2354), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(648), - [sym_template_instantiation] = STATE(648), - [sym_operator_cast] = STATE(9060), - [sym__constructor_specifiers] = STATE(2354), - [sym_operator_cast_definition] = STATE(648), - [sym_operator_cast_declaration] = STATE(648), - [sym_constructor_or_destructor_definition] = STATE(648), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [sym_namespace_definition] = STATE(648), - [sym_namespace_alias_definition] = STATE(648), - [sym_using_declaration] = STATE(648), - [sym_alias_declaration] = STATE(648), - [sym_static_assert_declaration] = STATE(648), - [sym_consteval_block_declaration] = STATE(648), - [sym_concept_definition] = STATE(648), - [sym_for_range_loop] = STATE(496), - [sym_co_return_statement] = STATE(496), - [sym_co_yield_statement] = STATE(496), - [sym_throw_statement] = STATE(496), - [sym_try_statement] = STATE(496), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9060), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(496), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2354), - [sym_identifier] = ACTIONS(1214), - [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), + [STATE(54)] = { + [sym__block_item] = STATE(408), + [sym_preproc_include] = STATE(408), + [sym_preproc_def] = STATE(408), + [sym_preproc_function_def] = STATE(408), + [sym_preproc_call] = STATE(408), + [sym_function_definition] = STATE(408), + [sym_declaration] = STATE(408), + [sym_type_definition] = STATE(408), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(408), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym_declaration_list] = STATE(408), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(339), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(405), + [sym_statement] = STATE(408), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(408), + [sym_preproc_if_in_block] = STATE(408), + [sym_preproc_ifdef_in_block] = STATE(408), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(408), + [sym_import_declaration] = STATE(408), + [sym_template_declaration] = STATE(408), + [sym_template_instantiation] = STATE(408), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(408), + [sym_operator_cast_declaration] = STATE(408), + [sym_constructor_or_destructor_definition] = STATE(408), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(408), + [sym_namespace_alias_definition] = STATE(408), + [sym_using_declaration] = STATE(408), + [sym_alias_declaration] = STATE(408), + [sym_static_assert_declaration] = STATE(408), + [sym_consteval_block_declaration] = STATE(408), + [sym_concept_definition] = STATE(408), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -53471,14 +53791,14 @@ 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(1216), - [anon_sym___extension__] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(45), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -53489,7 +53809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1077), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -53497,7 +53817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(65), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -53514,7 +53834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(69), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -53522,19 +53842,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(83), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_default] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1220), - [anon_sym___leave] = ACTIONS(1222), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -53570,18 +53890,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_module] = ACTIONS(1224), - [anon_sym_import] = ACTIONS(1226), - [anon_sym_template] = ACTIONS(141), + [anon_sym_export] = ACTIONS(341), + [anon_sym_module] = ACTIONS(1079), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(145), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_namespace] = ACTIONS(151), - [anon_sym_static_assert] = ACTIONS(153), - [anon_sym_concept] = ACTIONS(155), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -53594,142 +53915,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(57)] = { - [sym__block_item] = STATE(58), - [sym_preproc_include] = STATE(58), - [sym_preproc_def] = STATE(58), - [sym_preproc_function_def] = STATE(58), - [sym_preproc_call] = STATE(58), - [sym_preproc_if] = STATE(58), - [sym_preproc_ifdef] = STATE(58), - [sym_function_definition] = STATE(58), - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(58), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(58), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(58), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(58), - [sym_template_instantiation] = STATE(58), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(58), - [sym_operator_cast_declaration] = STATE(58), - [sym_constructor_or_destructor_definition] = STATE(58), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [sym_namespace_definition] = STATE(58), - [sym_namespace_alias_definition] = STATE(58), - [sym_using_declaration] = STATE(58), - [sym_alias_declaration] = STATE(58), - [sym_static_assert_declaration] = STATE(58), - [sym_consteval_block_declaration] = STATE(58), - [sym_concept_definition] = STATE(58), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(58), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [STATE(55)] = { + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -53762,8 +54085,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1228), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1081), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -53844,16 +54167,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -53866,142 +54191,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(58)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [STATE(56)] = { + [sym__block_item] = STATE(61), + [sym_preproc_include] = STATE(61), + [sym_preproc_def] = STATE(61), + [sym_preproc_function_def] = STATE(61), + [sym_preproc_call] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(61), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(61), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(61), + [sym_preproc_if_in_block] = STATE(61), + [sym_preproc_ifdef_in_block] = STATE(61), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(61), + [sym_import_declaration] = STATE(61), + [sym_template_declaration] = STATE(61), + [sym_template_instantiation] = STATE(61), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(61), + [sym_operator_cast_declaration] = STATE(61), + [sym_constructor_or_destructor_definition] = STATE(61), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(61), + [sym_concept_definition] = STATE(61), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(61), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -54034,8 +54361,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1083), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -54116,16 +54443,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -54138,142 +54467,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(59)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [STATE(57)] = { + [sym__block_item] = STATE(62), + [sym_preproc_include] = STATE(62), + [sym_preproc_def] = STATE(62), + [sym_preproc_function_def] = STATE(62), + [sym_preproc_call] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(62), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(62), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(62), + [sym_preproc_if_in_block] = STATE(62), + [sym_preproc_ifdef_in_block] = STATE(62), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(62), + [sym_import_declaration] = STATE(62), + [sym_template_declaration] = STATE(62), + [sym_template_instantiation] = STATE(62), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(62), + [sym_operator_cast_declaration] = STATE(62), + [sym_constructor_or_destructor_definition] = STATE(62), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(62), + [sym_concept_definition] = STATE(62), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(62), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -54306,8 +54637,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1085), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -54388,16 +54719,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -54410,142 +54743,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(60)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [STATE(58)] = { + [sym__block_item] = STATE(77), + [sym_preproc_include] = STATE(77), + [sym_preproc_def] = STATE(77), + [sym_preproc_function_def] = STATE(77), + [sym_preproc_call] = STATE(77), + [sym_function_definition] = STATE(77), + [sym_declaration] = STATE(77), + [sym_type_definition] = STATE(77), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(77), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(77), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(77), + [sym_preproc_if_in_block] = STATE(77), + [sym_preproc_ifdef_in_block] = STATE(77), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(77), + [sym_import_declaration] = STATE(77), + [sym_template_declaration] = STATE(77), + [sym_template_instantiation] = STATE(77), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(77), + [sym_operator_cast_declaration] = STATE(77), + [sym_constructor_or_destructor_definition] = STATE(77), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(77), + [sym_namespace_alias_definition] = STATE(77), + [sym_using_declaration] = STATE(77), + [sym_alias_declaration] = STATE(77), + [sym_static_assert_declaration] = STATE(77), + [sym_consteval_block_declaration] = STATE(77), + [sym_concept_definition] = STATE(77), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(77), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -54578,8 +54913,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1087), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -54660,16 +54995,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -54682,142 +55019,420 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(61)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [STATE(59)] = { + [sym__block_item] = STATE(69), + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6413), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2707), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8810), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(637), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4502), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(650), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(637), + [sym_expression_statement] = STATE(637), + [sym_if_statement] = STATE(637), + [sym_switch_statement] = STATE(637), + [sym_case_statement] = STATE(637), + [sym_while_statement] = STATE(637), + [sym_do_statement] = STATE(637), + [sym_for_statement] = STATE(637), + [sym_return_statement] = STATE(637), + [sym_break_statement] = STATE(637), + [sym_continue_statement] = STATE(637), + [sym_goto_statement] = STATE(637), + [sym_seh_try_statement] = STATE(637), + [sym_seh_leave_statement] = STATE(637), + [sym_expression] = STATE(6804), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11583), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2454), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9210), + [sym__constructor_specifiers] = STATE(2454), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(637), + [sym_co_return_statement] = STATE(637), + [sym_co_yield_statement] = STATE(637), + [sym_throw_statement] = STATE(637), + [sym_try_statement] = STATE(637), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9210), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(637), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2454), + [sym_identifier] = ACTIONS(1089), + [aux_sym_preproc_include_token1] = ACTIONS(1091), + [aux_sym_preproc_def_token1] = ACTIONS(1093), + [aux_sym_preproc_if_token1] = ACTIONS(1095), + [aux_sym_preproc_if_token2] = ACTIONS(1097), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1099), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1099), + [sym_preproc_directive] = ACTIONS(1101), + [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(1103), + [anon_sym___extension__] = ACTIONS(1105), + [anon_sym_typedef] = ACTIONS(1107), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(1109), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(1115), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(1117), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1125), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1141), + [anon_sym___leave] = ACTIONS(1143), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(1145), + [anon_sym_import] = ACTIONS(1147), + [anon_sym_template] = ACTIONS(1149), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(1151), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1153), + [anon_sym_namespace] = ACTIONS(1155), + [anon_sym_static_assert] = ACTIONS(1157), + [anon_sym_concept] = ACTIONS(1159), + [anon_sym_co_return] = ACTIONS(1161), + [anon_sym_co_yield] = ACTIONS(1163), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), + }, + [STATE(60)] = { + [sym__block_item] = STATE(81), + [sym_preproc_include] = STATE(81), + [sym_preproc_def] = STATE(81), + [sym_preproc_function_def] = STATE(81), + [sym_preproc_call] = STATE(81), + [sym_function_definition] = STATE(81), + [sym_declaration] = STATE(81), + [sym_type_definition] = STATE(81), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(81), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(81), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(81), + [sym_preproc_if_in_block] = STATE(81), + [sym_preproc_ifdef_in_block] = STATE(81), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(81), + [sym_import_declaration] = STATE(81), + [sym_template_declaration] = STATE(81), + [sym_template_instantiation] = STATE(81), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(81), + [sym_operator_cast_declaration] = STATE(81), + [sym_constructor_or_destructor_definition] = STATE(81), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(81), + [sym_concept_definition] = STATE(81), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(81), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -54850,8 +55465,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1165), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -54932,16 +55547,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -54954,142 +55571,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(62)] = { - [sym__block_item] = STATE(63), - [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(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(63), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(63), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(63), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(63), - [sym_template_instantiation] = STATE(63), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(63), - [sym_operator_cast_declaration] = STATE(63), - [sym_constructor_or_destructor_definition] = STATE(63), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(63), - [sym_concept_definition] = STATE(63), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(63), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [STATE(61)] = { + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -55122,8 +55741,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1167), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -55204,16 +55823,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -55226,142 +55847,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(63)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [STATE(62)] = { + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -55394,8 +56017,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1169), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -55476,16 +56099,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -55498,100 +56123,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(64)] = { + [STATE(63)] = { [sym__block_item] = STATE(65), [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(4663), - [sym__declaration_specifiers] = STATE(6309), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), [sym_linkage_specification] = STATE(65), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), [sym_statement] = STATE(65), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), [sym__empty_declaration] = STATE(65), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), + [sym_preproc_if_in_block] = STATE(65), + [sym_preproc_ifdef_in_block] = STATE(65), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(65), + [sym_import_declaration] = STATE(65), [sym_template_declaration] = STATE(65), [sym_template_instantiation] = STATE(65), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), [sym_operator_cast_definition] = STATE(65), [sym_operator_cast_declaration] = STATE(65), [sym_constructor_or_destructor_definition] = STATE(65), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(65), [sym_namespace_alias_definition] = STATE(65), [sym_using_declaration] = STATE(65), @@ -55599,41 +56226,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(65), [sym_consteval_block_declaration] = STATE(65), [sym_concept_definition] = STATE(65), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(65), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(65), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -55666,8 +56293,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1171), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -55748,16 +56375,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -55770,148 +56399,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(65)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), + [STATE(64)] = { + [sym__block_item] = STATE(652), + [sym_preproc_include] = STATE(652), + [sym_preproc_def] = STATE(652), + [sym_preproc_function_def] = STATE(652), + [sym_preproc_call] = STATE(652), + [sym_function_definition] = STATE(652), + [sym_declaration] = STATE(652), + [sym_type_definition] = STATE(652), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6413), + [sym_linkage_specification] = STATE(652), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2707), + [sym_declaration_list] = STATE(652), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8810), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(637), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4502), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(650), + [sym_statement] = STATE(652), + [sym_labeled_statement] = STATE(637), + [sym_expression_statement] = STATE(637), + [sym_if_statement] = STATE(637), + [sym_switch_statement] = STATE(637), + [sym_case_statement] = STATE(637), + [sym_while_statement] = STATE(637), + [sym_do_statement] = STATE(637), + [sym_for_statement] = STATE(637), + [sym_return_statement] = STATE(637), + [sym_break_statement] = STATE(637), + [sym_continue_statement] = STATE(637), + [sym_goto_statement] = STATE(637), + [sym_seh_try_statement] = STATE(637), + [sym_seh_leave_statement] = STATE(637), + [sym_expression] = STATE(6804), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11583), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(652), + [sym_preproc_if_in_block] = STATE(652), + [sym_preproc_ifdef_in_block] = STATE(652), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2454), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(652), + [sym_import_declaration] = STATE(652), + [sym_template_declaration] = STATE(652), + [sym_template_instantiation] = STATE(652), + [sym_operator_cast] = STATE(9210), + [sym__constructor_specifiers] = STATE(2454), + [sym_operator_cast_definition] = STATE(652), + [sym_operator_cast_declaration] = STATE(652), + [sym_constructor_or_destructor_definition] = STATE(652), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(652), + [sym_namespace_alias_definition] = STATE(652), + [sym_using_declaration] = STATE(652), + [sym_alias_declaration] = STATE(652), + [sym_static_assert_declaration] = STATE(652), + [sym_consteval_block_declaration] = STATE(652), + [sym_concept_definition] = STATE(652), + [sym_for_range_loop] = STATE(637), + [sym_co_return_statement] = STATE(637), + [sym_co_yield_statement] = STATE(637), + [sym_throw_statement] = STATE(637), + [sym_try_statement] = STATE(637), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9210), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(637), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2454), + [sym_identifier] = ACTIONS(1089), + [aux_sym_preproc_include_token1] = ACTIONS(1091), + [aux_sym_preproc_def_token1] = ACTIONS(1093), + [aux_sym_preproc_if_token1] = ACTIONS(1095), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1099), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1099), + [sym_preproc_directive] = ACTIONS(1101), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -55920,14 +56551,14 @@ 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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(1105), + [anon_sym_typedef] = ACTIONS(1107), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_extern] = ACTIONS(1109), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), + [anon_sym_using] = ACTIONS(1111), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -55938,8 +56569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1173), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -55947,7 +56577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(203), + [anon_sym_inline] = ACTIONS(1115), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -55964,7 +56594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(205), + [anon_sym_consteval] = ACTIONS(1117), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -55972,19 +56602,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1125), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1141), + [anon_sym___leave] = ACTIONS(1143), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -56020,16 +56650,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(1145), + [anon_sym_module] = ACTIONS(1175), + [anon_sym_import] = ACTIONS(1147), + [anon_sym_template] = ACTIONS(1149), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(1151), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(1153), + [anon_sym_namespace] = ACTIONS(1155), + [anon_sym_static_assert] = ACTIONS(1157), + [anon_sym_concept] = ACTIONS(1159), + [anon_sym_co_return] = ACTIONS(1161), + [anon_sym_co_yield] = ACTIONS(1163), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -56042,142 +56675,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(66)] = { - [sym__block_item] = STATE(67), - [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(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(67), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(67), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(67), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(67), - [sym_template_instantiation] = STATE(67), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(67), - [sym_operator_cast_declaration] = STATE(67), - [sym_constructor_or_destructor_definition] = STATE(67), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(67), - [sym_concept_definition] = STATE(67), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(67), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [STATE(65)] = { + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -56210,8 +56845,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1177), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -56292,16 +56927,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -56314,142 +56951,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(67)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [STATE(66)] = { + [sym__block_item] = STATE(70), + [sym_preproc_include] = STATE(70), + [sym_preproc_def] = STATE(70), + [sym_preproc_function_def] = STATE(70), + [sym_preproc_call] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_declaration] = STATE(70), + [sym_type_definition] = STATE(70), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(70), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(70), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(70), + [sym_preproc_if_in_block] = STATE(70), + [sym_preproc_ifdef_in_block] = STATE(70), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(70), + [sym_import_declaration] = STATE(70), + [sym_template_declaration] = STATE(70), + [sym_template_instantiation] = STATE(70), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(70), + [sym_operator_cast_declaration] = STATE(70), + [sym_constructor_or_destructor_definition] = STATE(70), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(70), + [sym_concept_definition] = STATE(70), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(70), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -56482,8 +57121,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1179), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -56564,16 +57203,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -56586,142 +57227,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(68)] = { - [sym__block_item] = STATE(69), - [sym_preproc_include] = STATE(69), - [sym_preproc_def] = STATE(69), - [sym_preproc_function_def] = STATE(69), - [sym_preproc_call] = STATE(69), - [sym_preproc_if] = STATE(69), - [sym_preproc_ifdef] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_declaration] = STATE(69), - [sym_type_definition] = STATE(69), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(69), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(69), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(69), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(69), - [sym_template_instantiation] = STATE(69), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(69), - [sym_operator_cast_declaration] = STATE(69), - [sym_constructor_or_destructor_definition] = STATE(69), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [sym_namespace_definition] = STATE(69), - [sym_namespace_alias_definition] = STATE(69), - [sym_using_declaration] = STATE(69), - [sym_alias_declaration] = STATE(69), - [sym_static_assert_declaration] = STATE(69), - [sym_consteval_block_declaration] = STATE(69), - [sym_concept_definition] = STATE(69), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(69), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [STATE(67)] = { + [sym__block_item] = STATE(71), + [sym_preproc_include] = STATE(71), + [sym_preproc_def] = STATE(71), + [sym_preproc_function_def] = STATE(71), + [sym_preproc_call] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_declaration] = STATE(71), + [sym_type_definition] = STATE(71), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(71), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(71), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(71), + [sym_preproc_if_in_block] = STATE(71), + [sym_preproc_ifdef_in_block] = STATE(71), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(71), + [sym_import_declaration] = STATE(71), + [sym_template_declaration] = STATE(71), + [sym_template_instantiation] = STATE(71), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(71), + [sym_operator_cast_declaration] = STATE(71), + [sym_constructor_or_destructor_definition] = STATE(71), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(71), + [sym_concept_definition] = STATE(71), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(71), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -56754,8 +57397,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1181), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -56836,16 +57479,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -56858,142 +57503,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(69)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [STATE(68)] = { + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -57026,8 +57673,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1183), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -57108,16 +57755,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -57130,148 +57779,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(70)] = { - [sym__block_item] = STATE(71), - [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(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(71), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(71), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(71), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(71), - [sym_template_instantiation] = STATE(71), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(71), - [sym_operator_cast_declaration] = STATE(71), - [sym_constructor_or_destructor_definition] = STATE(71), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(71), - [sym_concept_definition] = STATE(71), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(71), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), + [STATE(69)] = { + [sym__block_item] = STATE(52), + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6413), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2707), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8810), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(637), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4502), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(650), + [sym_statement] = STATE(52), + [sym_labeled_statement] = STATE(637), + [sym_expression_statement] = STATE(637), + [sym_if_statement] = STATE(637), + [sym_switch_statement] = STATE(637), + [sym_case_statement] = STATE(637), + [sym_while_statement] = STATE(637), + [sym_do_statement] = STATE(637), + [sym_for_statement] = STATE(637), + [sym_return_statement] = STATE(637), + [sym_break_statement] = STATE(637), + [sym_continue_statement] = STATE(637), + [sym_goto_statement] = STATE(637), + [sym_seh_try_statement] = STATE(637), + [sym_seh_leave_statement] = STATE(637), + [sym_expression] = STATE(6804), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11583), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(52), + [sym_preproc_if_in_block] = STATE(52), + [sym_preproc_ifdef_in_block] = STATE(52), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2454), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(52), + [sym_import_declaration] = STATE(52), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(9210), + [sym__constructor_specifiers] = STATE(2454), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(637), + [sym_co_return_statement] = STATE(637), + [sym_co_yield_statement] = STATE(637), + [sym_throw_statement] = STATE(637), + [sym_try_statement] = STATE(637), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9210), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(637), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(52), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2454), + [sym_identifier] = ACTIONS(1089), + [aux_sym_preproc_include_token1] = ACTIONS(1091), + [aux_sym_preproc_def_token1] = ACTIONS(1093), + [aux_sym_preproc_if_token1] = ACTIONS(1095), + [aux_sym_preproc_if_token2] = ACTIONS(1185), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1099), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1099), + [sym_preproc_directive] = ACTIONS(1101), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -57280,14 +57932,14 @@ 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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(1105), + [anon_sym_typedef] = ACTIONS(1107), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_extern] = ACTIONS(1109), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), + [anon_sym_using] = ACTIONS(1111), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -57298,8 +57950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1113), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -57307,7 +57958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(203), + [anon_sym_inline] = ACTIONS(1115), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -57324,7 +57975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(205), + [anon_sym_consteval] = ACTIONS(1117), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -57332,19 +57983,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1125), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1141), + [anon_sym___leave] = ACTIONS(1143), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -57380,16 +58031,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(1145), + [anon_sym_import] = ACTIONS(1147), + [anon_sym_template] = ACTIONS(1149), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(1151), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(1153), + [anon_sym_namespace] = ACTIONS(1155), + [anon_sym_static_assert] = ACTIONS(1157), + [anon_sym_concept] = ACTIONS(1159), + [anon_sym_co_return] = ACTIONS(1161), + [anon_sym_co_yield] = ACTIONS(1163), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -57402,142 +58055,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(71)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [STATE(70)] = { + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -57570,8 +58225,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1187), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -57652,16 +58307,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -57674,149 +58331,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(72)] = { - [sym__block_item] = STATE(53), - [sym_preproc_include] = STATE(53), - [sym_preproc_def] = STATE(53), - [sym_preproc_function_def] = STATE(53), - [sym_preproc_call] = STATE(53), - [sym_preproc_if] = STATE(53), - [sym_preproc_ifdef] = STATE(53), - [sym_function_definition] = STATE(53), - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6279), - [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2620), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8706), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(652), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4324), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(859), - [sym_statement] = STATE(53), - [sym_labeled_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_if_statement] = STATE(652), - [sym_switch_statement] = STATE(652), - [sym_case_statement] = STATE(652), - [sym_while_statement] = STATE(652), - [sym_do_statement] = STATE(652), - [sym_for_statement] = STATE(652), - [sym_return_statement] = STATE(652), - [sym_break_statement] = STATE(652), - [sym_continue_statement] = STATE(652), - [sym_goto_statement] = STATE(652), - [sym_seh_try_statement] = STATE(652), - [sym_seh_leave_statement] = STATE(652), - [sym_expression] = STATE(6696), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10652), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(53), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2413), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(53), - [sym_template_instantiation] = STATE(53), - [sym_operator_cast] = STATE(9049), - [sym__constructor_specifiers] = STATE(2413), - [sym_operator_cast_definition] = STATE(53), - [sym_operator_cast_declaration] = STATE(53), - [sym_constructor_or_destructor_definition] = STATE(53), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [sym_namespace_definition] = STATE(53), - [sym_namespace_alias_definition] = STATE(53), - [sym_using_declaration] = STATE(53), - [sym_alias_declaration] = STATE(53), - [sym_static_assert_declaration] = STATE(53), - [sym_consteval_block_declaration] = STATE(53), - [sym_concept_definition] = STATE(53), - [sym_for_range_loop] = STATE(652), - [sym_co_return_statement] = STATE(652), - [sym_co_yield_statement] = STATE(652), - [sym_throw_statement] = STATE(652), - [sym_try_statement] = STATE(652), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9049), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(652), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(156), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2413), - [sym_identifier] = ACTIONS(1138), - [aux_sym_preproc_include_token1] = ACTIONS(1140), - [aux_sym_preproc_def_token1] = ACTIONS(1142), - [aux_sym_preproc_if_token1] = ACTIONS(1144), - [aux_sym_preproc_if_token2] = ACTIONS(1258), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1148), - [sym_preproc_directive] = ACTIONS(1150), + [STATE(71)] = { + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -57825,14 +58483,14 @@ 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(1152), - [anon_sym___extension__] = ACTIONS(1154), - [anon_sym_typedef] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(1158), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1160), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -57843,7 +58501,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1189), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -57851,7 +58510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(1164), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -57868,7 +58527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(1166), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -57876,19 +58535,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_goto] = ACTIONS(1188), - [anon_sym___try] = ACTIONS(1190), - [anon_sym___leave] = ACTIONS(1192), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -57924,16 +58583,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(1194), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(1196), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1198), - [anon_sym_namespace] = ACTIONS(1200), - [anon_sym_static_assert] = ACTIONS(1202), - [anon_sym_concept] = ACTIONS(1204), - [anon_sym_co_return] = ACTIONS(1206), - [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -57946,100 +58607,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, + [STATE(72)] = { + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(1191), + [aux_sym_preproc_include_token1] = ACTIONS(1194), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [aux_sym_preproc_if_token1] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), + [sym_preproc_directive] = ACTIONS(1206), + [anon_sym_LPAREN2] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(488), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym___extension__] = ACTIONS(1212), + [anon_sym_typedef] = ACTIONS(1215), + [anon_sym_virtual] = ACTIONS(503), + [anon_sym_extern] = ACTIONS(1218), + [anon_sym___attribute__] = ACTIONS(509), + [anon_sym___attribute] = ACTIONS(509), + [anon_sym_using] = ACTIONS(1221), + [anon_sym_COLON_COLON] = ACTIONS(515), + [anon_sym_LBRACK_LBRACK] = ACTIONS(518), + [anon_sym___declspec] = ACTIONS(521), + [anon_sym___based] = ACTIONS(524), + [anon_sym___cdecl] = ACTIONS(527), + [anon_sym___clrcall] = ACTIONS(527), + [anon_sym___stdcall] = ACTIONS(527), + [anon_sym___fastcall] = ACTIONS(527), + [anon_sym___thiscall] = ACTIONS(527), + [anon_sym___vectorcall] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_signed] = ACTIONS(533), + [anon_sym_unsigned] = ACTIONS(533), + [anon_sym_long] = ACTIONS(533), + [anon_sym_short] = ACTIONS(533), + [anon_sym_LBRACK] = ACTIONS(536), + [anon_sym_static] = ACTIONS(539), + [anon_sym_register] = ACTIONS(539), + [anon_sym_inline] = ACTIONS(1229), + [anon_sym___inline] = ACTIONS(539), + [anon_sym___inline__] = ACTIONS(539), + [anon_sym___forceinline] = ACTIONS(539), + [anon_sym_thread_local] = ACTIONS(539), + [anon_sym___thread] = ACTIONS(539), + [anon_sym_const] = ACTIONS(545), + [anon_sym_constexpr] = ACTIONS(545), + [anon_sym_volatile] = ACTIONS(545), + [anon_sym_restrict] = ACTIONS(545), + [anon_sym___restrict__] = ACTIONS(545), + [anon_sym__Atomic] = ACTIONS(545), + [anon_sym__Noreturn] = ACTIONS(545), + [anon_sym_noreturn] = ACTIONS(545), + [anon_sym__Nonnull] = ACTIONS(545), + [anon_sym_mutable] = ACTIONS(545), + [anon_sym_constinit] = ACTIONS(545), + [anon_sym_consteval] = ACTIONS(1232), + [anon_sym_alignas] = ACTIONS(551), + [anon_sym__Alignas] = ACTIONS(551), + [sym_primitive_type] = ACTIONS(554), + [anon_sym_enum] = ACTIONS(557), + [anon_sym_class] = ACTIONS(560), + [anon_sym_struct] = ACTIONS(563), + [anon_sym_union] = ACTIONS(566), + [anon_sym_if] = ACTIONS(1235), + [anon_sym_switch] = ACTIONS(1238), + [anon_sym_case] = ACTIONS(1241), + [anon_sym_default] = ACTIONS(1244), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1253), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1262), + [anon_sym_goto] = ACTIONS(1265), + [anon_sym___try] = ACTIONS(1268), + [anon_sym___leave] = ACTIONS(1271), + [anon_sym_not] = ACTIONS(482), + [anon_sym_compl] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(608), + [anon_sym_PLUS_PLUS] = ACTIONS(608), + [anon_sym_sizeof] = ACTIONS(611), + [anon_sym___alignof__] = ACTIONS(614), + [anon_sym___alignof] = ACTIONS(614), + [anon_sym__alignof] = ACTIONS(614), + [anon_sym_alignof] = ACTIONS(614), + [anon_sym__Alignof] = ACTIONS(614), + [anon_sym_offsetof] = ACTIONS(617), + [anon_sym__Generic] = ACTIONS(620), + [anon_sym_typename] = ACTIONS(623), + [anon_sym_asm] = ACTIONS(626), + [anon_sym___asm__] = ACTIONS(626), + [anon_sym___asm] = ACTIONS(626), + [sym_number_literal] = ACTIONS(629), + [anon_sym_L_SQUOTE] = ACTIONS(632), + [anon_sym_u_SQUOTE] = ACTIONS(632), + [anon_sym_U_SQUOTE] = ACTIONS(632), + [anon_sym_u8_SQUOTE] = ACTIONS(632), + [anon_sym_SQUOTE] = ACTIONS(632), + [anon_sym_L_DQUOTE] = ACTIONS(635), + [anon_sym_u_DQUOTE] = ACTIONS(635), + [anon_sym_U_DQUOTE] = ACTIONS(635), + [anon_sym_u8_DQUOTE] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [sym_true] = ACTIONS(638), + [sym_false] = ACTIONS(638), + [anon_sym_NULL] = ACTIONS(641), + [anon_sym_nullptr] = ACTIONS(641), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(644), + [anon_sym_decltype] = ACTIONS(647), + [anon_sym_explicit] = ACTIONS(650), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_import] = ACTIONS(1277), + [anon_sym_template] = ACTIONS(1280), + [anon_sym_operator] = ACTIONS(662), + [anon_sym_try] = ACTIONS(1283), + [anon_sym_delete] = ACTIONS(668), + [anon_sym_throw] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1289), + [anon_sym_static_assert] = ACTIONS(1292), + [anon_sym_concept] = ACTIONS(1295), + [anon_sym_co_return] = ACTIONS(1298), + [anon_sym_co_yield] = ACTIONS(1301), + [anon_sym_R_DQUOTE] = ACTIONS(689), + [anon_sym_LR_DQUOTE] = ACTIONS(689), + [anon_sym_uR_DQUOTE] = ACTIONS(689), + [anon_sym_UR_DQUOTE] = ACTIONS(689), + [anon_sym_u8R_DQUOTE] = ACTIONS(689), + [anon_sym_co_await] = ACTIONS(692), + [anon_sym_new] = ACTIONS(695), + [anon_sym_requires] = ACTIONS(698), + [anon_sym_CARET_CARET] = ACTIONS(701), + [anon_sym_LBRACK_COLON] = ACTIONS(704), + [sym_this] = ACTIONS(638), + }, [STATE(73)] = { [sym__block_item] = STATE(74), [sym_preproc_include] = STATE(74), [sym_preproc_def] = STATE(74), [sym_preproc_function_def] = STATE(74), [sym_preproc_call] = STATE(74), - [sym_preproc_if] = STATE(74), - [sym_preproc_ifdef] = STATE(74), [sym_function_definition] = STATE(74), [sym_declaration] = STATE(74), [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), [sym_linkage_specification] = STATE(74), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), [sym_statement] = STATE(74), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), [sym__empty_declaration] = STATE(74), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), + [sym_preproc_if_in_block] = STATE(74), + [sym_preproc_ifdef_in_block] = STATE(74), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(74), + [sym_import_declaration] = STATE(74), [sym_template_declaration] = STATE(74), [sym_template_instantiation] = STATE(74), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), [sym_operator_cast_definition] = STATE(74), [sym_operator_cast_declaration] = STATE(74), [sym_constructor_or_destructor_definition] = STATE(74), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(74), [sym_namespace_alias_definition] = STATE(74), [sym_using_declaration] = STATE(74), @@ -58047,41 +58986,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(74), [sym_consteval_block_declaration] = STATE(74), [sym_concept_definition] = STATE(74), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(74), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(74), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -58114,8 +59053,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1304), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -58196,16 +59135,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -58219,141 +59160,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(74)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -58386,8 +59329,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1306), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -58468,16 +59411,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -58491,141 +59436,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(75)] = { - [sym__block_item] = STATE(76), - [sym_preproc_include] = STATE(76), - [sym_preproc_def] = STATE(76), - [sym_preproc_function_def] = STATE(76), - [sym_preproc_call] = STATE(76), - [sym_preproc_if] = STATE(76), - [sym_preproc_ifdef] = STATE(76), - [sym_function_definition] = STATE(76), - [sym_declaration] = STATE(76), - [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(76), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(76), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(76), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(76), - [sym_template_instantiation] = STATE(76), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(76), - [sym_operator_cast_declaration] = STATE(76), - [sym_constructor_or_destructor_definition] = STATE(76), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [sym_namespace_definition] = STATE(76), - [sym_namespace_alias_definition] = STATE(76), - [sym_using_declaration] = STATE(76), - [sym_alias_declaration] = STATE(76), - [sym_static_assert_declaration] = STATE(76), - [sym_consteval_block_declaration] = STATE(76), - [sym_concept_definition] = STATE(76), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(76), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [sym__block_item] = STATE(111), + [sym_preproc_include] = STATE(111), + [sym_preproc_def] = STATE(111), + [sym_preproc_function_def] = STATE(111), + [sym_preproc_call] = STATE(111), + [sym_function_definition] = STATE(111), + [sym_declaration] = STATE(111), + [sym_type_definition] = STATE(111), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(111), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(111), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(111), + [sym_preproc_if_in_block] = STATE(111), + [sym_preproc_ifdef_in_block] = STATE(111), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(111), + [sym_import_declaration] = STATE(111), + [sym_template_declaration] = STATE(111), + [sym_template_instantiation] = STATE(111), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(111), + [sym_operator_cast_declaration] = STATE(111), + [sym_constructor_or_destructor_definition] = STATE(111), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(111), + [sym_namespace_alias_definition] = STATE(111), + [sym_using_declaration] = STATE(111), + [sym_alias_declaration] = STATE(111), + [sym_static_assert_declaration] = STATE(111), + [sym_consteval_block_declaration] = STATE(111), + [sym_concept_definition] = STATE(111), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(111), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -58658,8 +59605,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1308), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -58740,16 +59687,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -58763,141 +59712,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(76)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [sym__block_item] = STATE(80), + [sym_preproc_include] = STATE(80), + [sym_preproc_def] = STATE(80), + [sym_preproc_function_def] = STATE(80), + [sym_preproc_call] = STATE(80), + [sym_function_definition] = STATE(80), + [sym_declaration] = STATE(80), + [sym_type_definition] = STATE(80), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(80), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(80), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(80), + [sym_preproc_if_in_block] = STATE(80), + [sym_preproc_ifdef_in_block] = STATE(80), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(80), + [sym_import_declaration] = STATE(80), + [sym_template_declaration] = STATE(80), + [sym_template_instantiation] = STATE(80), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(80), + [sym_operator_cast_declaration] = STATE(80), + [sym_constructor_or_destructor_definition] = STATE(80), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(80), + [sym_concept_definition] = STATE(80), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(80), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -58930,8 +59881,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1310), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -59012,16 +59963,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -59035,141 +59988,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(77)] = { - [sym__block_item] = STATE(78), - [sym_preproc_include] = STATE(78), - [sym_preproc_def] = STATE(78), - [sym_preproc_function_def] = STATE(78), - [sym_preproc_call] = STATE(78), - [sym_preproc_if] = STATE(78), - [sym_preproc_ifdef] = STATE(78), - [sym_function_definition] = STATE(78), - [sym_declaration] = STATE(78), - [sym_type_definition] = STATE(78), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(78), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(78), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(78), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(78), - [sym_template_instantiation] = STATE(78), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(78), - [sym_operator_cast_declaration] = STATE(78), - [sym_constructor_or_destructor_definition] = STATE(78), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [sym_namespace_definition] = STATE(78), - [sym_namespace_alias_definition] = STATE(78), - [sym_using_declaration] = STATE(78), - [sym_alias_declaration] = STATE(78), - [sym_static_assert_declaration] = STATE(78), - [sym_consteval_block_declaration] = STATE(78), - [sym_concept_definition] = STATE(78), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(78), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -59202,8 +60157,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1312), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -59284,16 +60239,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -59307,147 +60264,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(78)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), + [sym__block_item] = STATE(958), + [sym_preproc_include] = STATE(958), + [sym_preproc_def] = STATE(958), + [sym_preproc_function_def] = STATE(958), + [sym_preproc_call] = STATE(958), + [sym_function_definition] = STATE(958), + [sym_declaration] = STATE(958), + [sym_type_definition] = STATE(958), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6385), + [sym_linkage_specification] = STATE(958), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2684), + [sym_declaration_list] = STATE(958), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8772), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(578), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4545), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(1006), + [sym_statement] = STATE(958), + [sym_labeled_statement] = STATE(578), + [sym_expression_statement] = STATE(578), + [sym_if_statement] = STATE(578), + [sym_switch_statement] = STATE(578), + [sym_case_statement] = STATE(578), + [sym_while_statement] = STATE(578), + [sym_do_statement] = STATE(578), + [sym_for_statement] = STATE(578), + [sym_return_statement] = STATE(578), + [sym_break_statement] = STATE(578), + [sym_continue_statement] = STATE(578), + [sym_goto_statement] = STATE(578), + [sym_seh_try_statement] = STATE(578), + [sym_seh_leave_statement] = STATE(578), + [sym_expression] = STATE(6807), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11035), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(958), + [sym_preproc_if_in_block] = STATE(958), + [sym_preproc_ifdef_in_block] = STATE(958), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2437), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(958), + [sym_import_declaration] = STATE(958), + [sym_template_declaration] = STATE(958), + [sym_template_instantiation] = STATE(958), + [sym_operator_cast] = STATE(9265), + [sym__constructor_specifiers] = STATE(2437), + [sym_operator_cast_definition] = STATE(958), + [sym_operator_cast_declaration] = STATE(958), + [sym_constructor_or_destructor_definition] = STATE(958), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(958), + [sym_namespace_alias_definition] = STATE(958), + [sym_using_declaration] = STATE(958), + [sym_alias_declaration] = STATE(958), + [sym_static_assert_declaration] = STATE(958), + [sym_consteval_block_declaration] = STATE(958), + [sym_concept_definition] = STATE(958), + [sym_for_range_loop] = STATE(578), + [sym_co_return_statement] = STATE(578), + [sym_co_yield_statement] = STATE(578), + [sym_throw_statement] = STATE(578), + [sym_try_statement] = STATE(578), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9265), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(578), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2437), + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(17), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -59456,14 +60415,14 @@ 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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_extern] = ACTIONS(41), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), + [anon_sym_using] = ACTIONS(45), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -59474,8 +60433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1322), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -59483,7 +60441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(203), + [anon_sym_inline] = ACTIONS(65), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -59500,7 +60458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(205), + [anon_sym_consteval] = ACTIONS(69), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -59508,19 +60466,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1324), + [anon_sym___leave] = ACTIONS(1326), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -59556,16 +60514,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(1328), + [anon_sym_module] = ACTIONS(1330), + [anon_sym_import] = ACTIONS(139), + [anon_sym_template] = ACTIONS(141), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_namespace] = ACTIONS(151), + [anon_sym_static_assert] = ACTIONS(153), + [anon_sym_concept] = ACTIONS(155), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -59579,141 +60540,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(79)] = { - [sym__block_item] = STATE(80), - [sym_preproc_include] = STATE(80), - [sym_preproc_def] = STATE(80), - [sym_preproc_function_def] = STATE(80), - [sym_preproc_call] = STATE(80), - [sym_preproc_if] = STATE(80), - [sym_preproc_ifdef] = STATE(80), - [sym_function_definition] = STATE(80), - [sym_declaration] = STATE(80), - [sym_type_definition] = STATE(80), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(80), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(80), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(80), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(80), - [sym_template_instantiation] = STATE(80), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(80), - [sym_operator_cast_declaration] = STATE(80), - [sym_constructor_or_destructor_definition] = STATE(80), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(80), - [sym_concept_definition] = STATE(80), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(80), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -59746,8 +60709,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1332), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -59828,16 +60791,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -59851,141 +60816,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(80)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -60018,8 +60985,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1334), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -60100,16 +61067,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -60123,141 +61092,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(81)] = { - [sym__block_item] = STATE(82), - [sym_preproc_include] = STATE(82), - [sym_preproc_def] = STATE(82), - [sym_preproc_function_def] = STATE(82), - [sym_preproc_call] = STATE(82), - [sym_preproc_if] = STATE(82), - [sym_preproc_ifdef] = STATE(82), - [sym_function_definition] = STATE(82), - [sym_declaration] = STATE(82), - [sym_type_definition] = STATE(82), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(82), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(82), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(82), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(82), - [sym_template_instantiation] = STATE(82), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(82), - [sym_operator_cast_declaration] = STATE(82), - [sym_constructor_or_destructor_definition] = STATE(82), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [sym_namespace_definition] = STATE(82), - [sym_namespace_alias_definition] = STATE(82), - [sym_using_declaration] = STATE(82), - [sym_alias_declaration] = STATE(82), - [sym_static_assert_declaration] = STATE(82), - [sym_consteval_block_declaration] = STATE(82), - [sym_concept_definition] = STATE(82), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(82), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -60290,8 +61261,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1336), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -60372,16 +61343,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -60395,141 +61368,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(82)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [sym__block_item] = STATE(83), + [sym_preproc_include] = STATE(83), + [sym_preproc_def] = STATE(83), + [sym_preproc_function_def] = STATE(83), + [sym_preproc_call] = STATE(83), + [sym_function_definition] = STATE(83), + [sym_declaration] = STATE(83), + [sym_type_definition] = STATE(83), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(83), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(83), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(83), + [sym_preproc_if_in_block] = STATE(83), + [sym_preproc_ifdef_in_block] = STATE(83), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(83), + [sym_import_declaration] = STATE(83), + [sym_template_declaration] = STATE(83), + [sym_template_instantiation] = STATE(83), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(83), + [sym_operator_cast_declaration] = STATE(83), + [sym_constructor_or_destructor_definition] = STATE(83), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(83), + [sym_concept_definition] = STATE(83), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(83), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -60562,8 +61537,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1338), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -60644,16 +61619,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -60667,141 +61644,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(83)] = { - [sym__block_item] = STATE(84), - [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(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(84), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(84), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(84), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(84), - [sym_template_instantiation] = STATE(84), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(84), - [sym_operator_cast_declaration] = STATE(84), - [sym_constructor_or_destructor_definition] = STATE(84), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(84), - [sym_concept_definition] = STATE(84), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(84), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -60834,8 +61813,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1340), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -60916,16 +61895,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -60939,141 +61920,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(84)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [sym__block_item] = STATE(85), + [sym_preproc_include] = STATE(85), + [sym_preproc_def] = STATE(85), + [sym_preproc_function_def] = STATE(85), + [sym_preproc_call] = STATE(85), + [sym_function_definition] = STATE(85), + [sym_declaration] = STATE(85), + [sym_type_definition] = STATE(85), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(85), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(85), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(85), + [sym_preproc_if_in_block] = STATE(85), + [sym_preproc_ifdef_in_block] = STATE(85), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(85), + [sym_import_declaration] = STATE(85), + [sym_template_declaration] = STATE(85), + [sym_template_instantiation] = STATE(85), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(85), + [sym_operator_cast_declaration] = STATE(85), + [sym_constructor_or_destructor_definition] = STATE(85), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(85), + [sym_concept_definition] = STATE(85), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(85), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -61106,8 +62089,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1342), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -61188,16 +62171,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -61211,141 +62196,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(85)] = { - [sym__block_item] = STATE(86), - [sym_preproc_include] = STATE(86), - [sym_preproc_def] = STATE(86), - [sym_preproc_function_def] = STATE(86), - [sym_preproc_call] = STATE(86), - [sym_preproc_if] = STATE(86), - [sym_preproc_ifdef] = STATE(86), - [sym_function_definition] = STATE(86), - [sym_declaration] = STATE(86), - [sym_type_definition] = STATE(86), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(86), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(86), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(86), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(86), - [sym_template_instantiation] = STATE(86), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(86), - [sym_operator_cast_declaration] = STATE(86), - [sym_constructor_or_destructor_definition] = STATE(86), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [sym_namespace_definition] = STATE(86), - [sym_namespace_alias_definition] = STATE(86), - [sym_using_declaration] = STATE(86), - [sym_alias_declaration] = STATE(86), - [sym_static_assert_declaration] = STATE(86), - [sym_consteval_block_declaration] = STATE(86), - [sym_concept_definition] = STATE(86), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(86), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -61378,8 +62365,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1344), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -61460,16 +62447,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -61483,141 +62472,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(86)] = { - [sym__block_item] = STATE(41), - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(41), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [sym__block_item] = STATE(87), + [sym_preproc_include] = STATE(87), + [sym_preproc_def] = STATE(87), + [sym_preproc_function_def] = STATE(87), + [sym_preproc_call] = STATE(87), + [sym_function_definition] = STATE(87), + [sym_declaration] = STATE(87), + [sym_type_definition] = STATE(87), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(87), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(87), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(87), + [sym_preproc_if_in_block] = STATE(87), + [sym_preproc_ifdef_in_block] = STATE(87), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(87), + [sym_import_declaration] = STATE(87), + [sym_template_declaration] = STATE(87), + [sym_template_instantiation] = STATE(87), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(87), + [sym_operator_cast_declaration] = STATE(87), + [sym_constructor_or_destructor_definition] = STATE(87), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(87), + [sym_concept_definition] = STATE(87), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(87), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -61650,8 +62641,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1346), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -61732,16 +62723,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -61755,141 +62748,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(87)] = { - [sym__block_item] = STATE(59), - [sym_preproc_include] = STATE(59), - [sym_preproc_def] = STATE(59), - [sym_preproc_function_def] = STATE(59), - [sym_preproc_call] = STATE(59), - [sym_preproc_if] = STATE(59), - [sym_preproc_ifdef] = STATE(59), - [sym_function_definition] = STATE(59), - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(59), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(59), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(59), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(59), - [sym_template_instantiation] = STATE(59), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(59), - [sym_operator_cast_declaration] = STATE(59), - [sym_constructor_or_destructor_definition] = STATE(59), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [sym_namespace_definition] = STATE(59), - [sym_namespace_alias_definition] = STATE(59), - [sym_using_declaration] = STATE(59), - [sym_alias_declaration] = STATE(59), - [sym_static_assert_declaration] = STATE(59), - [sym_consteval_block_declaration] = STATE(59), - [sym_concept_definition] = STATE(59), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(59), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -61922,8 +62917,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1348), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -62004,16 +62999,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -62027,141 +63024,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(88)] = { - [sym__block_item] = STATE(60), - [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(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_linkage_specification] = STATE(60), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(1012), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(818), - [sym_statement] = STATE(60), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym__empty_declaration] = STATE(60), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_explicit_function_specifier] = STATE(2396), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(60), - [sym_template_instantiation] = STATE(60), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2396), - [sym_operator_cast_definition] = STATE(60), - [sym_operator_cast_declaration] = STATE(60), - [sym_constructor_or_destructor_definition] = STATE(60), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6713), - [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_consteval_block_declaration] = STATE(60), - [sym_concept_definition] = STATE(60), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7676), - [sym_qualified_identifier] = STATE(5268), - [sym_qualified_type_identifier] = STATE(4449), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_preproc_if_repeat1] = STATE(60), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2396), - [sym_identifier] = ACTIONS(892), + [sym__block_item] = STATE(89), + [sym_preproc_include] = STATE(89), + [sym_preproc_def] = STATE(89), + [sym_preproc_function_def] = STATE(89), + [sym_preproc_call] = STATE(89), + [sym_function_definition] = STATE(89), + [sym_declaration] = STATE(89), + [sym_type_definition] = STATE(89), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(89), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(89), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(89), + [sym_preproc_if_in_block] = STATE(89), + [sym_preproc_ifdef_in_block] = STATE(89), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(89), + [sym_import_declaration] = STATE(89), + [sym_template_declaration] = STATE(89), + [sym_template_instantiation] = STATE(89), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(89), + [sym_operator_cast_declaration] = STATE(89), + [sym_constructor_or_destructor_definition] = STATE(89), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(89), + [sym_namespace_alias_definition] = STATE(89), + [sym_using_declaration] = STATE(89), + [sym_alias_declaration] = STATE(89), + [sym_static_assert_declaration] = STATE(89), + [sym_consteval_block_declaration] = STATE(89), + [sym_concept_definition] = STATE(89), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(89), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -62194,8 +63193,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(55), [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1350), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -62276,16 +63275,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(239), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(241), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(245), - [anon_sym_static_assert] = ACTIONS(247), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -62299,146 +63300,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(89)] = { - [sym_declaration] = STATE(91), - [sym_type_definition] = STATE(91), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6292), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(91), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [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_seh_try_statement] = STATE(91), - [sym_seh_leave_statement] = STATE(91), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [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(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(91), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(91), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1294), - [aux_sym_preproc_def_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token2] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), - [aux_sym_preproc_else_token1] = ACTIONS(1294), - [aux_sym_preproc_elif_token1] = ACTIONS(1294), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1294), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1294), - [sym_preproc_directive] = ACTIONS(1294), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(1298), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(295), - [anon_sym___extension__] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(299), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1294), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1294), - [anon_sym___cdecl] = ACTIONS(1294), - [anon_sym___clrcall] = ACTIONS(1294), - [anon_sym___stdcall] = ACTIONS(1294), - [anon_sym___fastcall] = ACTIONS(1294), - [anon_sym___thiscall] = ACTIONS(1294), - [anon_sym___vectorcall] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1352), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -62455,7 +63495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -62463,20 +63503,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -62511,17 +63550,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1294), - [anon_sym_template] = ACTIONS(1312), - [anon_sym_operator] = ACTIONS(1294), - [anon_sym_try] = ACTIONS(339), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(1294), - [anon_sym_static_assert] = ACTIONS(1294), - [anon_sym_concept] = ACTIONS(1294), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -62535,146 +63576,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(90)] = { - [sym_declaration] = STATE(92), - [sym_type_definition] = STATE(92), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6292), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(92), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [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_seh_try_statement] = STATE(92), - [sym_seh_leave_statement] = STATE(92), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [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(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(92), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(92), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token2] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [aux_sym_preproc_else_token1] = ACTIONS(1314), - [aux_sym_preproc_elif_token1] = ACTIONS(1314), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym__block_item] = STATE(91), + [sym_preproc_include] = STATE(91), + [sym_preproc_def] = STATE(91), + [sym_preproc_function_def] = STATE(91), + [sym_preproc_call] = STATE(91), + [sym_function_definition] = STATE(91), + [sym_declaration] = STATE(91), + [sym_type_definition] = STATE(91), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(91), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(91), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(91), + [sym_preproc_if_in_block] = STATE(91), + [sym_preproc_ifdef_in_block] = STATE(91), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(91), + [sym_import_declaration] = STATE(91), + [sym_template_declaration] = STATE(91), + [sym_template_instantiation] = STATE(91), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(91), + [sym_operator_cast_declaration] = STATE(91), + [sym_constructor_or_destructor_definition] = STATE(91), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(91), + [sym_concept_definition] = STATE(91), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(91), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(1298), - [anon_sym_AMP_AMP] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(295), - [anon_sym___extension__] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(299), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1314), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1354), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -62691,7 +63771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -62699,20 +63779,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -62747,17 +63826,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1314), - [anon_sym_template] = ACTIONS(1312), - [anon_sym_operator] = ACTIONS(1314), - [anon_sym_try] = ACTIONS(339), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(1314), - [anon_sym_static_assert] = ACTIONS(1314), - [anon_sym_concept] = ACTIONS(1314), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -62771,146 +63852,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(91)] = { - [sym_declaration] = STATE(93), - [sym_type_definition] = STATE(93), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6292), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [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_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [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(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(93), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(93), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token2] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [aux_sym_preproc_else_token1] = ACTIONS(1318), - [aux_sym_preproc_elif_token1] = ACTIONS(1318), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(1298), - [anon_sym_AMP_AMP] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(295), - [anon_sym___extension__] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(299), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1318), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1356), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -62927,7 +64047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -62935,20 +64055,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -62983,17 +64102,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1318), - [anon_sym_template] = ACTIONS(1312), - [anon_sym_operator] = ACTIONS(1318), - [anon_sym_try] = ACTIONS(339), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_static_assert] = ACTIONS(1318), - [anon_sym_concept] = ACTIONS(1318), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -63007,146 +64128,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(92)] = { + [sym__block_item] = STATE(93), + [sym_preproc_include] = STATE(93), + [sym_preproc_def] = STATE(93), + [sym_preproc_function_def] = STATE(93), + [sym_preproc_call] = STATE(93), + [sym_function_definition] = STATE(93), [sym_declaration] = STATE(93), [sym_type_definition] = STATE(93), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6292), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [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_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [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(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(93), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(93), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token2] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [aux_sym_preproc_else_token1] = ACTIONS(1322), - [aux_sym_preproc_elif_token1] = ACTIONS(1322), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(93), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(93), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(93), + [sym_preproc_if_in_block] = STATE(93), + [sym_preproc_ifdef_in_block] = STATE(93), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(93), + [sym_import_declaration] = STATE(93), + [sym_template_declaration] = STATE(93), + [sym_template_instantiation] = STATE(93), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(93), + [sym_operator_cast_declaration] = STATE(93), + [sym_constructor_or_destructor_definition] = STATE(93), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(93), + [sym_namespace_alias_definition] = STATE(93), + [sym_using_declaration] = STATE(93), + [sym_alias_declaration] = STATE(93), + [sym_static_assert_declaration] = STATE(93), + [sym_consteval_block_declaration] = STATE(93), + [sym_concept_definition] = STATE(93), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(93), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(1298), - [anon_sym_AMP_AMP] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(295), - [anon_sym___extension__] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(299), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1322), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1358), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -63163,7 +64323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -63171,20 +64331,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -63219,17 +64378,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1322), - [anon_sym_template] = ACTIONS(1312), - [anon_sym_operator] = ACTIONS(1322), - [anon_sym_try] = ACTIONS(339), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(1322), - [anon_sym_static_assert] = ACTIONS(1322), - [anon_sym_concept] = ACTIONS(1322), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -63243,613 +64404,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(93)] = { - [sym_declaration] = STATE(93), - [sym_type_definition] = STATE(93), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6292), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [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_seh_try_statement] = STATE(93), - [sym_seh_leave_statement] = STATE(93), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [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(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(93), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(93), - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1329), - [aux_sym_preproc_def_token1] = ACTIONS(1329), - [aux_sym_preproc_if_token1] = ACTIONS(1329), - [aux_sym_preproc_if_token2] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), - [aux_sym_preproc_else_token1] = ACTIONS(1329), - [aux_sym_preproc_elif_token1] = ACTIONS(1329), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1329), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1329), - [sym_preproc_directive] = ACTIONS(1329), - [anon_sym_LPAREN2] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP_AMP] = ACTIONS(1343), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1351), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_virtual] = ACTIONS(1357), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym___attribute__] = ACTIONS(1363), - [anon_sym___attribute] = ACTIONS(1363), - [anon_sym_using] = ACTIONS(1329), - [anon_sym_COLON_COLON] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1369), - [anon_sym___declspec] = ACTIONS(1372), - [anon_sym___based] = ACTIONS(1329), - [anon_sym___cdecl] = ACTIONS(1329), - [anon_sym___clrcall] = ACTIONS(1329), - [anon_sym___stdcall] = ACTIONS(1329), - [anon_sym___fastcall] = ACTIONS(1329), - [anon_sym___thiscall] = ACTIONS(1329), - [anon_sym___vectorcall] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_register] = ACTIONS(1360), - [anon_sym_inline] = ACTIONS(1360), - [anon_sym___inline] = ACTIONS(1360), - [anon_sym___inline__] = ACTIONS(1360), - [anon_sym___forceinline] = ACTIONS(1360), - [anon_sym_thread_local] = ACTIONS(1360), - [anon_sym___thread] = ACTIONS(1360), - [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__Nonnull] = ACTIONS(1384), - [anon_sym_mutable] = ACTIONS(1384), - [anon_sym_constinit] = ACTIONS(1384), - [anon_sym_consteval] = ACTIONS(1384), - [anon_sym_alignas] = ACTIONS(1387), - [anon_sym__Alignas] = 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(1329), - [anon_sym_switch] = ACTIONS(1408), - [anon_sym_case] = ACTIONS(1329), - [anon_sym_default] = ACTIONS(1329), - [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___try] = ACTIONS(1432), - [anon_sym___leave] = ACTIONS(1435), - [anon_sym_not] = ACTIONS(1337), - [anon_sym_compl] = ACTIONS(1337), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_sizeof] = ACTIONS(1441), - [anon_sym___alignof__] = ACTIONS(1444), - [anon_sym___alignof] = ACTIONS(1444), - [anon_sym__alignof] = ACTIONS(1444), - [anon_sym_alignof] = ACTIONS(1444), - [anon_sym__Alignof] = ACTIONS(1444), - [anon_sym_offsetof] = ACTIONS(1447), - [anon_sym__Generic] = ACTIONS(1450), - [anon_sym_typename] = ACTIONS(1453), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym___asm__] = ACTIONS(1456), - [anon_sym___asm] = ACTIONS(1456), - [sym_number_literal] = ACTIONS(1459), - [anon_sym_L_SQUOTE] = ACTIONS(1462), - [anon_sym_u_SQUOTE] = ACTIONS(1462), - [anon_sym_U_SQUOTE] = ACTIONS(1462), - [anon_sym_u8_SQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_L_DQUOTE] = ACTIONS(1465), - [anon_sym_u_DQUOTE] = ACTIONS(1465), - [anon_sym_U_DQUOTE] = ACTIONS(1465), - [anon_sym_u8_DQUOTE] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(1465), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1471), - [anon_sym_nullptr] = ACTIONS(1471), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1474), - [anon_sym_decltype] = ACTIONS(1477), - [anon_sym_explicit] = ACTIONS(1329), - [anon_sym_template] = ACTIONS(1480), - [anon_sym_operator] = ACTIONS(1329), - [anon_sym_try] = ACTIONS(1483), - [anon_sym_delete] = ACTIONS(1486), - [anon_sym_throw] = ACTIONS(1489), - [anon_sym_namespace] = ACTIONS(1329), - [anon_sym_static_assert] = ACTIONS(1329), - [anon_sym_concept] = ACTIONS(1329), - [anon_sym_co_return] = ACTIONS(1492), - [anon_sym_co_yield] = ACTIONS(1495), - [anon_sym_R_DQUOTE] = ACTIONS(1498), - [anon_sym_LR_DQUOTE] = ACTIONS(1498), - [anon_sym_uR_DQUOTE] = ACTIONS(1498), - [anon_sym_UR_DQUOTE] = ACTIONS(1498), - [anon_sym_u8R_DQUOTE] = ACTIONS(1498), - [anon_sym_co_await] = ACTIONS(1501), - [anon_sym_new] = ACTIONS(1504), - [anon_sym_requires] = ACTIONS(1507), - [anon_sym_CARET_CARET] = ACTIONS(1510), - [anon_sym_LBRACK_COLON] = ACTIONS(1513), - [sym_this] = ACTIONS(1468), - }, - [STATE(94)] = { - [sym_declaration] = STATE(94), - [sym_type_definition] = STATE(94), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6290), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(94), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [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_seh_try_statement] = STATE(94), - [sym_seh_leave_statement] = STATE(94), - [sym_expression] = STATE(6685), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10787), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [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(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(94), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(176), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(94), - [ts_builtin_sym_end] = ACTIONS(1343), - [sym_identifier] = ACTIONS(1516), - [aux_sym_preproc_include_token1] = ACTIONS(1329), - [aux_sym_preproc_def_token1] = ACTIONS(1329), - [aux_sym_preproc_if_token1] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), - [sym_preproc_directive] = ACTIONS(1329), - [anon_sym_LPAREN2] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP_AMP] = ACTIONS(1343), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym___extension__] = ACTIONS(1522), - [anon_sym_typedef] = ACTIONS(1525), - [anon_sym_virtual] = ACTIONS(1357), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym___attribute__] = ACTIONS(1363), - [anon_sym___attribute] = ACTIONS(1363), - [anon_sym_using] = ACTIONS(1329), - [anon_sym_COLON_COLON] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1369), - [anon_sym___declspec] = ACTIONS(1372), - [anon_sym___based] = ACTIONS(1329), - [anon_sym___cdecl] = ACTIONS(1329), - [anon_sym___clrcall] = ACTIONS(1329), - [anon_sym___stdcall] = ACTIONS(1329), - [anon_sym___fastcall] = ACTIONS(1329), - [anon_sym___thiscall] = ACTIONS(1329), - [anon_sym___vectorcall] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_register] = ACTIONS(1360), - [anon_sym_inline] = ACTIONS(1360), - [anon_sym___inline] = ACTIONS(1360), - [anon_sym___inline__] = ACTIONS(1360), - [anon_sym___forceinline] = ACTIONS(1360), - [anon_sym_thread_local] = ACTIONS(1360), - [anon_sym___thread] = ACTIONS(1360), - [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__Nonnull] = ACTIONS(1384), - [anon_sym_mutable] = ACTIONS(1384), - [anon_sym_constinit] = ACTIONS(1384), - [anon_sym_consteval] = ACTIONS(1384), - [anon_sym_alignas] = ACTIONS(1387), - [anon_sym__Alignas] = 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(1531), - [anon_sym_else] = ACTIONS(1329), - [anon_sym_switch] = ACTIONS(1534), - [anon_sym_case] = ACTIONS(1329), - [anon_sym_default] = ACTIONS(1329), - [anon_sym_while] = ACTIONS(1537), - [anon_sym_do] = ACTIONS(1540), - [anon_sym_for] = ACTIONS(1543), - [anon_sym_return] = ACTIONS(1546), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1552), - [anon_sym_goto] = ACTIONS(1555), - [anon_sym___try] = ACTIONS(1558), - [anon_sym___leave] = ACTIONS(1561), - [anon_sym_not] = ACTIONS(1337), - [anon_sym_compl] = ACTIONS(1337), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_sizeof] = ACTIONS(1441), - [anon_sym___alignof__] = ACTIONS(1444), - [anon_sym___alignof] = ACTIONS(1444), - [anon_sym__alignof] = ACTIONS(1444), - [anon_sym_alignof] = ACTIONS(1444), - [anon_sym__Alignof] = ACTIONS(1444), - [anon_sym_offsetof] = ACTIONS(1447), - [anon_sym__Generic] = ACTIONS(1450), - [anon_sym_typename] = ACTIONS(1453), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym___asm__] = ACTIONS(1456), - [anon_sym___asm] = ACTIONS(1456), - [sym_number_literal] = ACTIONS(1459), - [anon_sym_L_SQUOTE] = ACTIONS(1462), - [anon_sym_u_SQUOTE] = ACTIONS(1462), - [anon_sym_U_SQUOTE] = ACTIONS(1462), - [anon_sym_u8_SQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_L_DQUOTE] = ACTIONS(1465), - [anon_sym_u_DQUOTE] = ACTIONS(1465), - [anon_sym_U_DQUOTE] = ACTIONS(1465), - [anon_sym_u8_DQUOTE] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(1465), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1471), - [anon_sym_nullptr] = ACTIONS(1471), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1474), - [anon_sym_decltype] = ACTIONS(1477), - [anon_sym_explicit] = ACTIONS(1329), - [anon_sym_export] = ACTIONS(1329), - [anon_sym_module] = ACTIONS(1329), - [anon_sym_import] = ACTIONS(1329), - [anon_sym_template] = ACTIONS(1564), - [anon_sym_operator] = ACTIONS(1329), - [anon_sym_try] = ACTIONS(1567), - [anon_sym_delete] = ACTIONS(1486), - [anon_sym_throw] = ACTIONS(1570), - [anon_sym_namespace] = ACTIONS(1329), - [anon_sym_static_assert] = ACTIONS(1329), - [anon_sym_concept] = ACTIONS(1329), - [anon_sym_co_return] = ACTIONS(1573), - [anon_sym_co_yield] = ACTIONS(1576), - [anon_sym_R_DQUOTE] = ACTIONS(1498), - [anon_sym_LR_DQUOTE] = ACTIONS(1498), - [anon_sym_uR_DQUOTE] = ACTIONS(1498), - [anon_sym_UR_DQUOTE] = ACTIONS(1498), - [anon_sym_u8R_DQUOTE] = ACTIONS(1498), - [anon_sym_co_await] = ACTIONS(1501), - [anon_sym_new] = ACTIONS(1504), - [anon_sym_requires] = ACTIONS(1507), - [anon_sym_CARET_CARET] = ACTIONS(1510), - [anon_sym_LBRACK_COLON] = ACTIONS(1513), - [sym_this] = ACTIONS(1468), - }, - [STATE(95)] = { - [sym_declaration] = STATE(94), - [sym_type_definition] = STATE(94), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6290), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(94), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [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_seh_try_statement] = STATE(94), - [sym_seh_leave_statement] = STATE(94), - [sym_expression] = STATE(6685), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10787), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [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(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(94), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(176), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(94), - [ts_builtin_sym_end] = ACTIONS(1324), - [sym_identifier] = ACTIONS(1579), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(1298), - [anon_sym_AMP_AMP] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(1581), - [anon_sym_typedef] = ACTIONS(37), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1322), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1360), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -63866,7 +64599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -63874,20 +64607,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(83), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1220), - [anon_sym___leave] = ACTIONS(1222), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -63922,20 +64654,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1322), - [anon_sym_export] = ACTIONS(1322), - [anon_sym_module] = ACTIONS(1322), - [anon_sym_import] = ACTIONS(1322), - [anon_sym_template] = ACTIONS(1583), - [anon_sym_operator] = ACTIONS(1322), - [anon_sym_try] = ACTIONS(145), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_namespace] = ACTIONS(1322), - [anon_sym_static_assert] = ACTIONS(1322), - [anon_sym_concept] = ACTIONS(1322), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -63948,143 +64679,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(96)] = { + [STATE(94)] = { + [sym__block_item] = STATE(95), + [sym_preproc_include] = STATE(95), + [sym_preproc_def] = STATE(95), + [sym_preproc_function_def] = STATE(95), + [sym_preproc_call] = STATE(95), + [sym_function_definition] = STATE(95), [sym_declaration] = STATE(95), [sym_type_definition] = STATE(95), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6290), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(95), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(95), - [sym_labeled_statement] = STATE(95), - [sym_expression_statement] = STATE(95), - [sym_if_statement] = STATE(95), - [sym_switch_statement] = STATE(95), - [sym_while_statement] = STATE(95), - [sym_do_statement] = STATE(95), - [sym_for_statement] = STATE(95), - [sym_return_statement] = STATE(95), - [sym_break_statement] = STATE(95), - [sym_continue_statement] = STATE(95), - [sym_goto_statement] = STATE(95), - [sym_seh_try_statement] = STATE(95), - [sym_seh_leave_statement] = STATE(95), - [sym_expression] = STATE(6685), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10787), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(95), - [sym_co_return_statement] = STATE(95), - [sym_co_yield_statement] = STATE(95), - [sym_throw_statement] = STATE(95), - [sym_try_statement] = STATE(95), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(95), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(176), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(95), - [ts_builtin_sym_end] = ACTIONS(1316), - [sym_identifier] = ACTIONS(1579), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(95), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(95), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(95), + [sym_preproc_if_in_block] = STATE(95), + [sym_preproc_ifdef_in_block] = STATE(95), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(95), + [sym_import_declaration] = STATE(95), + [sym_template_declaration] = STATE(95), + [sym_template_instantiation] = STATE(95), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(95), + [sym_operator_cast_declaration] = STATE(95), + [sym_constructor_or_destructor_definition] = STATE(95), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(95), + [sym_namespace_alias_definition] = STATE(95), + [sym_using_declaration] = STATE(95), + [sym_alias_declaration] = STATE(95), + [sym_static_assert_declaration] = STATE(95), + [sym_consteval_block_declaration] = STATE(95), + [sym_concept_definition] = STATE(95), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(95), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(1298), - [anon_sym_AMP_AMP] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(1581), - [anon_sym_typedef] = ACTIONS(37), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1314), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1362), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -64101,7 +64875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -64109,20 +64883,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(83), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1220), - [anon_sym___leave] = ACTIONS(1222), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -64157,20 +64930,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1314), - [anon_sym_export] = ACTIONS(1314), - [anon_sym_module] = ACTIONS(1314), - [anon_sym_import] = ACTIONS(1314), - [anon_sym_template] = ACTIONS(1583), - [anon_sym_operator] = ACTIONS(1314), - [anon_sym_try] = ACTIONS(145), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_namespace] = ACTIONS(1314), - [anon_sym_static_assert] = ACTIONS(1314), - [anon_sym_concept] = ACTIONS(1314), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -64183,143 +64955,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(97)] = { - [sym_declaration] = STATE(94), - [sym_type_definition] = STATE(94), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6290), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(94), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [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_seh_try_statement] = STATE(94), - [sym_seh_leave_statement] = STATE(94), - [sym_expression] = STATE(6685), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10787), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [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(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(94), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(176), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(94), - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_identifier] = ACTIONS(1579), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(95)] = { + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(1298), - [anon_sym_AMP_AMP] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(1581), - [anon_sym_typedef] = ACTIONS(37), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1318), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1364), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -64336,7 +65151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -64344,20 +65159,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(83), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1220), - [anon_sym___leave] = ACTIONS(1222), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -64392,20 +65206,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1318), - [anon_sym_export] = ACTIONS(1318), - [anon_sym_module] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(1318), - [anon_sym_template] = ACTIONS(1583), - [anon_sym_operator] = ACTIONS(1318), - [anon_sym_try] = ACTIONS(145), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_static_assert] = ACTIONS(1318), - [anon_sym_concept] = ACTIONS(1318), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -64418,143 +65231,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(98)] = { + [STATE(96)] = { + [sym__block_item] = STATE(97), + [sym_preproc_include] = STATE(97), + [sym_preproc_def] = STATE(97), + [sym_preproc_function_def] = STATE(97), + [sym_preproc_call] = STATE(97), + [sym_function_definition] = STATE(97), [sym_declaration] = STATE(97), [sym_type_definition] = STATE(97), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6290), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(97), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [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_seh_try_statement] = STATE(97), - [sym_seh_leave_statement] = STATE(97), - [sym_expression] = STATE(6685), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10787), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [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(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(97), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(176), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(97), - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1579), - [aux_sym_preproc_include_token1] = ACTIONS(1294), - [aux_sym_preproc_def_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), - [sym_preproc_directive] = ACTIONS(1294), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(97), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(97), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(97), + [sym_preproc_if_in_block] = STATE(97), + [sym_preproc_ifdef_in_block] = STATE(97), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(97), + [sym_import_declaration] = STATE(97), + [sym_template_declaration] = STATE(97), + [sym_template_instantiation] = STATE(97), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(97), + [sym_operator_cast_declaration] = STATE(97), + [sym_constructor_or_destructor_definition] = STATE(97), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(97), + [sym_namespace_alias_definition] = STATE(97), + [sym_using_declaration] = STATE(97), + [sym_alias_declaration] = STATE(97), + [sym_static_assert_declaration] = STATE(97), + [sym_consteval_block_declaration] = STATE(97), + [sym_concept_definition] = STATE(97), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(97), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(1298), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(1581), - [anon_sym_typedef] = ACTIONS(37), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1294), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1294), - [anon_sym___cdecl] = ACTIONS(1294), - [anon_sym___clrcall] = ACTIONS(1294), - [anon_sym___stdcall] = ACTIONS(1294), - [anon_sym___fastcall] = ACTIONS(1294), - [anon_sym___thiscall] = ACTIONS(1294), - [anon_sym___vectorcall] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1366), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -64571,7 +65427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -64579,20 +65435,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(83), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1220), - [anon_sym___leave] = ACTIONS(1222), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -64627,20 +65482,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1294), - [anon_sym_module] = ACTIONS(1294), - [anon_sym_import] = ACTIONS(1294), - [anon_sym_template] = ACTIONS(1583), - [anon_sym_operator] = ACTIONS(1294), - [anon_sym_try] = ACTIONS(145), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_namespace] = ACTIONS(1294), - [anon_sym_static_assert] = ACTIONS(1294), - [anon_sym_concept] = ACTIONS(1294), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -64653,143 +65507,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(99)] = { - [sym_declaration] = STATE(100), - [sym_type_definition] = STATE(100), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6286), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(100), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(100), - [sym_labeled_statement] = STATE(100), - [sym_expression_statement] = STATE(100), - [sym_if_statement] = STATE(100), - [sym_switch_statement] = STATE(100), - [sym_while_statement] = STATE(100), - [sym_do_statement] = STATE(100), - [sym_for_statement] = STATE(100), - [sym_return_statement] = STATE(100), - [sym_break_statement] = STATE(100), - [sym_continue_statement] = STATE(100), - [sym_goto_statement] = STATE(100), - [sym_seh_try_statement] = STATE(100), - [sym_seh_leave_statement] = STATE(100), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [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(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(100), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(207), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(100), - [sym_identifier] = ACTIONS(1585), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(97)] = { + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(1298), - [anon_sym_AMP_AMP] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(1587), + [anon_sym___extension__] = ACTIONS(189), [anon_sym_typedef] = ACTIONS(191), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1314), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1368), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -64806,7 +65703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -64815,10 +65712,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), [anon_sym_if] = ACTIONS(207), - [anon_sym_else] = ACTIONS(1314), [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), [anon_sym_while] = ACTIONS(215), [anon_sym_do] = ACTIONS(217), [anon_sym_for] = ACTIONS(219), @@ -64862,17 +65758,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1314), - [anon_sym_template] = ACTIONS(1589), - [anon_sym_operator] = ACTIONS(1314), - [anon_sym_try] = ACTIONS(241), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(1314), - [anon_sym_static_assert] = ACTIONS(1314), - [anon_sym_concept] = ACTIONS(1314), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -64885,143 +65783,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(100)] = { - [sym_declaration] = STATE(101), - [sym_type_definition] = STATE(101), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6286), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(101), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [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_seh_try_statement] = STATE(101), - [sym_seh_leave_statement] = STATE(101), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [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(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(101), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(207), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(101), - [sym_identifier] = ACTIONS(1585), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(98)] = { + [sym__block_item] = STATE(51), + [sym_preproc_include] = STATE(51), + [sym_preproc_def] = STATE(51), + [sym_preproc_function_def] = STATE(51), + [sym_preproc_call] = STATE(51), + [sym_function_definition] = STATE(51), + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(51), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(51), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(51), + [sym_preproc_if_in_block] = STATE(51), + [sym_preproc_ifdef_in_block] = STATE(51), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(51), + [sym_import_declaration] = STATE(51), + [sym_template_declaration] = STATE(51), + [sym_template_instantiation] = STATE(51), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(51), + [sym_operator_cast_declaration] = STATE(51), + [sym_constructor_or_destructor_definition] = STATE(51), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(51), + [sym_concept_definition] = STATE(51), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(51), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(1298), - [anon_sym_AMP_AMP] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(1587), + [anon_sym___extension__] = ACTIONS(189), [anon_sym_typedef] = ACTIONS(191), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1322), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1324), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1370), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -65038,7 +65979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -65047,10 +65988,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), [anon_sym_if] = ACTIONS(207), - [anon_sym_else] = ACTIONS(1322), [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), [anon_sym_while] = ACTIONS(215), [anon_sym_do] = ACTIONS(217), [anon_sym_for] = ACTIONS(219), @@ -65094,17 +66034,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1322), - [anon_sym_template] = ACTIONS(1589), - [anon_sym_operator] = ACTIONS(1322), - [anon_sym_try] = ACTIONS(241), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(1322), - [anon_sym_static_assert] = ACTIONS(1322), - [anon_sym_concept] = ACTIONS(1322), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -65117,375 +66059,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(101)] = { - [sym_declaration] = STATE(101), - [sym_type_definition] = STATE(101), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6286), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(101), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [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_seh_try_statement] = STATE(101), - [sym_seh_leave_statement] = STATE(101), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [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(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(101), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(207), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(101), - [sym_identifier] = ACTIONS(1591), - [aux_sym_preproc_include_token1] = ACTIONS(1329), - [aux_sym_preproc_def_token1] = ACTIONS(1329), - [aux_sym_preproc_if_token1] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), - [sym_preproc_directive] = ACTIONS(1329), - [anon_sym_LPAREN2] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP_AMP] = ACTIONS(1343), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_SEMI] = ACTIONS(1594), - [anon_sym___extension__] = ACTIONS(1597), - [anon_sym_typedef] = ACTIONS(1600), - [anon_sym_virtual] = ACTIONS(1357), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym___attribute__] = ACTIONS(1363), - [anon_sym___attribute] = ACTIONS(1363), - [anon_sym_using] = ACTIONS(1329), - [anon_sym_COLON_COLON] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1369), - [anon_sym___declspec] = ACTIONS(1372), - [anon_sym___based] = ACTIONS(1329), - [anon_sym___cdecl] = ACTIONS(1329), - [anon_sym___clrcall] = ACTIONS(1329), - [anon_sym___stdcall] = ACTIONS(1329), - [anon_sym___fastcall] = ACTIONS(1329), - [anon_sym___thiscall] = ACTIONS(1329), - [anon_sym___vectorcall] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(1343), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_register] = ACTIONS(1360), - [anon_sym_inline] = ACTIONS(1360), - [anon_sym___inline] = ACTIONS(1360), - [anon_sym___inline__] = ACTIONS(1360), - [anon_sym___forceinline] = ACTIONS(1360), - [anon_sym_thread_local] = ACTIONS(1360), - [anon_sym___thread] = ACTIONS(1360), - [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__Nonnull] = ACTIONS(1384), - [anon_sym_mutable] = ACTIONS(1384), - [anon_sym_constinit] = ACTIONS(1384), - [anon_sym_consteval] = ACTIONS(1384), - [anon_sym_alignas] = ACTIONS(1387), - [anon_sym__Alignas] = 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(1606), - [anon_sym_else] = ACTIONS(1329), - [anon_sym_switch] = ACTIONS(1609), - [anon_sym_case] = ACTIONS(1329), - [anon_sym_default] = ACTIONS(1329), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_do] = ACTIONS(1615), - [anon_sym_for] = ACTIONS(1618), - [anon_sym_return] = ACTIONS(1621), - [anon_sym_break] = ACTIONS(1624), - [anon_sym_continue] = ACTIONS(1627), - [anon_sym_goto] = ACTIONS(1630), - [anon_sym___try] = ACTIONS(1633), - [anon_sym___leave] = ACTIONS(1636), - [anon_sym_not] = ACTIONS(1337), - [anon_sym_compl] = ACTIONS(1337), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_sizeof] = ACTIONS(1441), - [anon_sym___alignof__] = ACTIONS(1444), - [anon_sym___alignof] = ACTIONS(1444), - [anon_sym__alignof] = ACTIONS(1444), - [anon_sym_alignof] = ACTIONS(1444), - [anon_sym__Alignof] = ACTIONS(1444), - [anon_sym_offsetof] = ACTIONS(1447), - [anon_sym__Generic] = ACTIONS(1450), - [anon_sym_typename] = ACTIONS(1453), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym___asm__] = ACTIONS(1456), - [anon_sym___asm] = ACTIONS(1456), - [sym_number_literal] = ACTIONS(1459), - [anon_sym_L_SQUOTE] = ACTIONS(1462), - [anon_sym_u_SQUOTE] = ACTIONS(1462), - [anon_sym_U_SQUOTE] = ACTIONS(1462), - [anon_sym_u8_SQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_L_DQUOTE] = ACTIONS(1465), - [anon_sym_u_DQUOTE] = ACTIONS(1465), - [anon_sym_U_DQUOTE] = ACTIONS(1465), - [anon_sym_u8_DQUOTE] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(1465), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1471), - [anon_sym_nullptr] = ACTIONS(1471), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1474), - [anon_sym_decltype] = ACTIONS(1477), - [anon_sym_explicit] = ACTIONS(1329), - [anon_sym_template] = ACTIONS(1639), - [anon_sym_operator] = ACTIONS(1329), - [anon_sym_try] = ACTIONS(1642), - [anon_sym_delete] = ACTIONS(1486), - [anon_sym_throw] = ACTIONS(1645), - [anon_sym_namespace] = ACTIONS(1329), - [anon_sym_static_assert] = ACTIONS(1329), - [anon_sym_concept] = ACTIONS(1329), - [anon_sym_co_return] = ACTIONS(1648), - [anon_sym_co_yield] = ACTIONS(1651), - [anon_sym_R_DQUOTE] = ACTIONS(1498), - [anon_sym_LR_DQUOTE] = ACTIONS(1498), - [anon_sym_uR_DQUOTE] = ACTIONS(1498), - [anon_sym_UR_DQUOTE] = ACTIONS(1498), - [anon_sym_u8R_DQUOTE] = ACTIONS(1498), - [anon_sym_co_await] = ACTIONS(1501), - [anon_sym_new] = ACTIONS(1504), - [anon_sym_requires] = ACTIONS(1507), - [anon_sym_CARET_CARET] = ACTIONS(1510), - [anon_sym_LBRACK_COLON] = ACTIONS(1513), - [sym_this] = ACTIONS(1468), - }, - [STATE(102)] = { - [sym_declaration] = STATE(103), - [sym_type_definition] = STATE(103), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6286), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(103), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(103), - [sym_labeled_statement] = STATE(103), - [sym_expression_statement] = STATE(103), - [sym_if_statement] = STATE(103), - [sym_switch_statement] = STATE(103), - [sym_while_statement] = STATE(103), - [sym_do_statement] = STATE(103), - [sym_for_statement] = STATE(103), - [sym_return_statement] = STATE(103), - [sym_break_statement] = STATE(103), - [sym_continue_statement] = STATE(103), - [sym_goto_statement] = STATE(103), - [sym_seh_try_statement] = STATE(103), - [sym_seh_leave_statement] = STATE(103), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(103), - [sym_co_return_statement] = STATE(103), - [sym_co_yield_statement] = STATE(103), - [sym_throw_statement] = STATE(103), - [sym_try_statement] = STATE(103), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(103), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(207), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(103), - [sym_identifier] = ACTIONS(1585), - [aux_sym_preproc_include_token1] = ACTIONS(1294), - [aux_sym_preproc_def_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), - [sym_preproc_directive] = ACTIONS(1294), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(99)] = { + [sym__block_item] = STATE(68), + [sym_preproc_include] = STATE(68), + [sym_preproc_def] = STATE(68), + [sym_preproc_function_def] = STATE(68), + [sym_preproc_call] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_declaration] = STATE(68), + [sym_type_definition] = STATE(68), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(68), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(68), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(68), + [sym_preproc_if_in_block] = STATE(68), + [sym_preproc_ifdef_in_block] = STATE(68), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(68), + [sym_import_declaration] = STATE(68), + [sym_template_declaration] = STATE(68), + [sym_template_instantiation] = STATE(68), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(68), + [sym_operator_cast_declaration] = STATE(68), + [sym_constructor_or_destructor_definition] = STATE(68), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(68), + [sym_namespace_alias_definition] = STATE(68), + [sym_using_declaration] = STATE(68), + [sym_alias_declaration] = STATE(68), + [sym_static_assert_declaration] = STATE(68), + [sym_consteval_block_declaration] = STATE(68), + [sym_concept_definition] = STATE(68), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(68), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(1298), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(1587), + [anon_sym___extension__] = ACTIONS(189), [anon_sym_typedef] = ACTIONS(191), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1294), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1294), - [anon_sym___cdecl] = ACTIONS(1294), - [anon_sym___clrcall] = ACTIONS(1294), - [anon_sym___stdcall] = ACTIONS(1294), - [anon_sym___fastcall] = ACTIONS(1294), - [anon_sym___thiscall] = ACTIONS(1294), - [anon_sym___vectorcall] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1372), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -65502,7 +66255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -65511,10 +66264,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), [anon_sym_if] = ACTIONS(207), - [anon_sym_else] = ACTIONS(1294), [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), [anon_sym_while] = ACTIONS(215), [anon_sym_do] = ACTIONS(217), [anon_sym_for] = ACTIONS(219), @@ -65558,17 +66310,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1294), - [anon_sym_template] = ACTIONS(1589), - [anon_sym_operator] = ACTIONS(1294), - [anon_sym_try] = ACTIONS(241), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(1294), - [anon_sym_static_assert] = ACTIONS(1294), - [anon_sym_concept] = ACTIONS(1294), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -65581,143 +66335,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(103)] = { + [STATE(100)] = { + [sym__block_item] = STATE(101), + [sym_preproc_include] = STATE(101), + [sym_preproc_def] = STATE(101), + [sym_preproc_function_def] = STATE(101), + [sym_preproc_call] = STATE(101), + [sym_function_definition] = STATE(101), [sym_declaration] = STATE(101), [sym_type_definition] = STATE(101), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6286), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(101), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [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_seh_try_statement] = STATE(101), - [sym_seh_leave_statement] = STATE(101), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [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(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(101), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(207), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(101), - [sym_identifier] = ACTIONS(1585), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(101), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(101), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(101), + [sym_preproc_if_in_block] = STATE(101), + [sym_preproc_ifdef_in_block] = STATE(101), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(101), + [sym_import_declaration] = STATE(101), + [sym_template_declaration] = STATE(101), + [sym_template_instantiation] = STATE(101), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(101), + [sym_operator_cast_declaration] = STATE(101), + [sym_constructor_or_destructor_definition] = STATE(101), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(101), + [sym_namespace_alias_definition] = STATE(101), + [sym_using_declaration] = STATE(101), + [sym_alias_declaration] = STATE(101), + [sym_static_assert_declaration] = STATE(101), + [sym_consteval_block_declaration] = STATE(101), + [sym_concept_definition] = STATE(101), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(101), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(1298), - [anon_sym_AMP_AMP] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(1587), + [anon_sym___extension__] = ACTIONS(189), [anon_sym_typedef] = ACTIONS(191), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1318), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(1320), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1374), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -65734,7 +66531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -65743,10 +66540,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), [anon_sym_if] = ACTIONS(207), - [anon_sym_else] = ACTIONS(1318), [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), [anon_sym_while] = ACTIONS(215), [anon_sym_do] = ACTIONS(217), [anon_sym_for] = ACTIONS(219), @@ -65790,17 +66586,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1318), - [anon_sym_template] = ACTIONS(1589), - [anon_sym_operator] = ACTIONS(1318), - [anon_sym_try] = ACTIONS(241), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_static_assert] = ACTIONS(1318), - [anon_sym_concept] = ACTIONS(1318), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -65813,143 +66611,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(104)] = { - [sym_declaration] = STATE(105), - [sym_type_definition] = STATE(105), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6271), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(105), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(105), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym_expression] = STATE(6696), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10652), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(105), - [sym_co_return_statement] = STATE(105), - [sym_co_yield_statement] = STATE(105), - [sym_throw_statement] = STATE(105), - [sym_try_statement] = STATE(105), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(105), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(175), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(105), - [sym_identifier] = ACTIONS(1654), - [aux_sym_preproc_include_token1] = ACTIONS(1294), - [aux_sym_preproc_def_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token2] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), - [sym_preproc_directive] = ACTIONS(1294), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(101)] = { + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(1298), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym___extension__] = ACTIONS(1656), - [anon_sym_typedef] = ACTIONS(1156), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1294), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1294), - [anon_sym___cdecl] = ACTIONS(1294), - [anon_sym___clrcall] = ACTIONS(1294), - [anon_sym___stdcall] = ACTIONS(1294), - [anon_sym___fastcall] = ACTIONS(1294), - [anon_sym___thiscall] = ACTIONS(1294), - [anon_sym___vectorcall] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1376), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -65966,7 +66807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -65974,20 +66815,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_goto] = ACTIONS(1188), - [anon_sym___try] = ACTIONS(1190), - [anon_sym___leave] = ACTIONS(1192), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -66022,17 +66862,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1294), - [anon_sym_template] = ACTIONS(1658), - [anon_sym_operator] = ACTIONS(1294), - [anon_sym_try] = ACTIONS(1196), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1198), - [anon_sym_namespace] = ACTIONS(1294), - [anon_sym_static_assert] = ACTIONS(1294), - [anon_sym_concept] = ACTIONS(1294), - [anon_sym_co_return] = ACTIONS(1206), - [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -66045,143 +66887,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(105)] = { - [sym_declaration] = STATE(107), - [sym_type_definition] = STATE(107), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6271), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(107), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(107), - [sym_labeled_statement] = STATE(107), - [sym_expression_statement] = STATE(107), - [sym_if_statement] = STATE(107), - [sym_switch_statement] = STATE(107), - [sym_while_statement] = STATE(107), - [sym_do_statement] = STATE(107), - [sym_for_statement] = STATE(107), - [sym_return_statement] = STATE(107), - [sym_break_statement] = STATE(107), - [sym_continue_statement] = STATE(107), - [sym_goto_statement] = STATE(107), - [sym_seh_try_statement] = STATE(107), - [sym_seh_leave_statement] = STATE(107), - [sym_expression] = STATE(6696), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10652), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(107), - [sym_co_return_statement] = STATE(107), - [sym_co_yield_statement] = STATE(107), - [sym_throw_statement] = STATE(107), - [sym_try_statement] = STATE(107), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(107), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(175), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(107), - [sym_identifier] = ACTIONS(1654), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token2] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(102)] = { + [sym__block_item] = STATE(103), + [sym_preproc_include] = STATE(103), + [sym_preproc_def] = STATE(103), + [sym_preproc_function_def] = STATE(103), + [sym_preproc_call] = STATE(103), + [sym_function_definition] = STATE(103), + [sym_declaration] = STATE(103), + [sym_type_definition] = STATE(103), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(103), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(103), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(103), + [sym_preproc_if_in_block] = STATE(103), + [sym_preproc_ifdef_in_block] = STATE(103), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(103), + [sym_import_declaration] = STATE(103), + [sym_template_declaration] = STATE(103), + [sym_template_instantiation] = STATE(103), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(103), + [sym_operator_cast_declaration] = STATE(103), + [sym_constructor_or_destructor_definition] = STATE(103), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(103), + [sym_namespace_alias_definition] = STATE(103), + [sym_using_declaration] = STATE(103), + [sym_alias_declaration] = STATE(103), + [sym_static_assert_declaration] = STATE(103), + [sym_consteval_block_declaration] = STATE(103), + [sym_concept_definition] = STATE(103), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(103), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(1298), - [anon_sym_AMP_AMP] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym___extension__] = ACTIONS(1656), - [anon_sym_typedef] = ACTIONS(1156), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1318), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1378), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -66198,7 +67083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -66206,20 +67091,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_goto] = ACTIONS(1188), - [anon_sym___try] = ACTIONS(1190), - [anon_sym___leave] = ACTIONS(1192), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -66254,17 +67138,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1318), - [anon_sym_template] = ACTIONS(1658), - [anon_sym_operator] = ACTIONS(1318), - [anon_sym_try] = ACTIONS(1196), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1198), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_static_assert] = ACTIONS(1318), - [anon_sym_concept] = ACTIONS(1318), - [anon_sym_co_return] = ACTIONS(1206), - [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -66277,143 +67163,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(106)] = { - [sym_declaration] = STATE(108), - [sym_type_definition] = STATE(108), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6271), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(108), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [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_seh_try_statement] = STATE(108), - [sym_seh_leave_statement] = STATE(108), - [sym_expression] = STATE(6696), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10652), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [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(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(108), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(175), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(108), - [sym_identifier] = ACTIONS(1654), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token2] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(103)] = { + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(1298), - [anon_sym_AMP_AMP] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym___extension__] = ACTIONS(1656), - [anon_sym_typedef] = ACTIONS(1156), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1314), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1380), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -66430,7 +67359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -66438,20 +67367,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_goto] = ACTIONS(1188), - [anon_sym___try] = ACTIONS(1190), - [anon_sym___leave] = ACTIONS(1192), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -66486,17 +67414,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1314), - [anon_sym_template] = ACTIONS(1658), - [anon_sym_operator] = ACTIONS(1314), - [anon_sym_try] = ACTIONS(1196), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1198), - [anon_sym_namespace] = ACTIONS(1314), - [anon_sym_static_assert] = ACTIONS(1314), - [anon_sym_concept] = ACTIONS(1314), - [anon_sym_co_return] = ACTIONS(1206), - [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -66509,375 +67439,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(107)] = { - [sym_declaration] = STATE(107), - [sym_type_definition] = STATE(107), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6271), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(107), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(107), - [sym_labeled_statement] = STATE(107), - [sym_expression_statement] = STATE(107), - [sym_if_statement] = STATE(107), - [sym_switch_statement] = STATE(107), - [sym_while_statement] = STATE(107), - [sym_do_statement] = STATE(107), - [sym_for_statement] = STATE(107), - [sym_return_statement] = STATE(107), - [sym_break_statement] = STATE(107), - [sym_continue_statement] = STATE(107), - [sym_goto_statement] = STATE(107), - [sym_seh_try_statement] = STATE(107), - [sym_seh_leave_statement] = STATE(107), - [sym_expression] = STATE(6696), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10652), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(107), - [sym_co_return_statement] = STATE(107), - [sym_co_yield_statement] = STATE(107), - [sym_throw_statement] = STATE(107), - [sym_try_statement] = STATE(107), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(107), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(175), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(107), - [sym_identifier] = ACTIONS(1660), - [aux_sym_preproc_include_token1] = ACTIONS(1329), - [aux_sym_preproc_def_token1] = ACTIONS(1329), - [aux_sym_preproc_if_token1] = ACTIONS(1329), - [aux_sym_preproc_if_token2] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), - [sym_preproc_directive] = ACTIONS(1329), - [anon_sym_LPAREN2] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP_AMP] = ACTIONS(1343), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym___extension__] = ACTIONS(1666), - [anon_sym_typedef] = ACTIONS(1669), - [anon_sym_virtual] = ACTIONS(1357), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym___attribute__] = ACTIONS(1363), - [anon_sym___attribute] = ACTIONS(1363), - [anon_sym_using] = ACTIONS(1329), - [anon_sym_COLON_COLON] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1369), - [anon_sym___declspec] = ACTIONS(1372), - [anon_sym___based] = ACTIONS(1329), - [anon_sym___cdecl] = ACTIONS(1329), - [anon_sym___clrcall] = ACTIONS(1329), - [anon_sym___stdcall] = ACTIONS(1329), - [anon_sym___fastcall] = ACTIONS(1329), - [anon_sym___thiscall] = ACTIONS(1329), - [anon_sym___vectorcall] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1672), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_register] = ACTIONS(1360), - [anon_sym_inline] = ACTIONS(1360), - [anon_sym___inline] = ACTIONS(1360), - [anon_sym___inline__] = ACTIONS(1360), - [anon_sym___forceinline] = ACTIONS(1360), - [anon_sym_thread_local] = ACTIONS(1360), - [anon_sym___thread] = ACTIONS(1360), - [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__Nonnull] = ACTIONS(1384), - [anon_sym_mutable] = ACTIONS(1384), - [anon_sym_constinit] = ACTIONS(1384), - [anon_sym_consteval] = ACTIONS(1384), - [anon_sym_alignas] = ACTIONS(1387), - [anon_sym__Alignas] = 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(1675), - [anon_sym_else] = ACTIONS(1329), - [anon_sym_switch] = ACTIONS(1678), - [anon_sym_case] = ACTIONS(1329), - [anon_sym_default] = ACTIONS(1329), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_do] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1687), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_break] = ACTIONS(1693), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_goto] = ACTIONS(1699), - [anon_sym___try] = ACTIONS(1702), - [anon_sym___leave] = ACTIONS(1705), - [anon_sym_not] = ACTIONS(1337), - [anon_sym_compl] = ACTIONS(1337), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_sizeof] = ACTIONS(1441), - [anon_sym___alignof__] = ACTIONS(1444), - [anon_sym___alignof] = ACTIONS(1444), - [anon_sym__alignof] = ACTIONS(1444), - [anon_sym_alignof] = ACTIONS(1444), - [anon_sym__Alignof] = ACTIONS(1444), - [anon_sym_offsetof] = ACTIONS(1447), - [anon_sym__Generic] = ACTIONS(1450), - [anon_sym_typename] = ACTIONS(1453), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym___asm__] = ACTIONS(1456), - [anon_sym___asm] = ACTIONS(1456), - [sym_number_literal] = ACTIONS(1459), - [anon_sym_L_SQUOTE] = ACTIONS(1462), - [anon_sym_u_SQUOTE] = ACTIONS(1462), - [anon_sym_U_SQUOTE] = ACTIONS(1462), - [anon_sym_u8_SQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_L_DQUOTE] = ACTIONS(1465), - [anon_sym_u_DQUOTE] = ACTIONS(1465), - [anon_sym_U_DQUOTE] = ACTIONS(1465), - [anon_sym_u8_DQUOTE] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(1465), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1471), - [anon_sym_nullptr] = ACTIONS(1471), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1474), - [anon_sym_decltype] = ACTIONS(1477), - [anon_sym_explicit] = ACTIONS(1329), - [anon_sym_template] = ACTIONS(1708), - [anon_sym_operator] = ACTIONS(1329), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_delete] = ACTIONS(1486), - [anon_sym_throw] = ACTIONS(1714), - [anon_sym_namespace] = ACTIONS(1329), - [anon_sym_static_assert] = ACTIONS(1329), - [anon_sym_concept] = ACTIONS(1329), - [anon_sym_co_return] = ACTIONS(1717), - [anon_sym_co_yield] = ACTIONS(1720), - [anon_sym_R_DQUOTE] = ACTIONS(1498), - [anon_sym_LR_DQUOTE] = ACTIONS(1498), - [anon_sym_uR_DQUOTE] = ACTIONS(1498), - [anon_sym_UR_DQUOTE] = ACTIONS(1498), - [anon_sym_u8R_DQUOTE] = ACTIONS(1498), - [anon_sym_co_await] = ACTIONS(1501), - [anon_sym_new] = ACTIONS(1504), - [anon_sym_requires] = ACTIONS(1507), - [anon_sym_CARET_CARET] = ACTIONS(1510), - [anon_sym_LBRACK_COLON] = ACTIONS(1513), - [sym_this] = ACTIONS(1468), - }, - [STATE(108)] = { - [sym_declaration] = STATE(107), - [sym_type_definition] = STATE(107), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6271), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(107), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(107), - [sym_labeled_statement] = STATE(107), - [sym_expression_statement] = STATE(107), - [sym_if_statement] = STATE(107), - [sym_switch_statement] = STATE(107), - [sym_while_statement] = STATE(107), - [sym_do_statement] = STATE(107), - [sym_for_statement] = STATE(107), - [sym_return_statement] = STATE(107), - [sym_break_statement] = STATE(107), - [sym_continue_statement] = STATE(107), - [sym_goto_statement] = STATE(107), - [sym_seh_try_statement] = STATE(107), - [sym_seh_leave_statement] = STATE(107), - [sym_expression] = STATE(6696), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10652), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(107), - [sym_co_return_statement] = STATE(107), - [sym_co_yield_statement] = STATE(107), - [sym_throw_statement] = STATE(107), - [sym_try_statement] = STATE(107), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(107), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(175), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(107), - [sym_identifier] = ACTIONS(1654), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token2] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(104)] = { + [sym__block_item] = STATE(105), + [sym_preproc_include] = STATE(105), + [sym_preproc_def] = STATE(105), + [sym_preproc_function_def] = STATE(105), + [sym_preproc_call] = STATE(105), + [sym_function_definition] = STATE(105), + [sym_declaration] = STATE(105), + [sym_type_definition] = STATE(105), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(105), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(105), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(105), + [sym_preproc_if_in_block] = STATE(105), + [sym_preproc_ifdef_in_block] = STATE(105), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(105), + [sym_import_declaration] = STATE(105), + [sym_template_declaration] = STATE(105), + [sym_template_instantiation] = STATE(105), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(105), + [sym_operator_cast_declaration] = STATE(105), + [sym_constructor_or_destructor_definition] = STATE(105), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(105), + [sym_namespace_alias_definition] = STATE(105), + [sym_using_declaration] = STATE(105), + [sym_alias_declaration] = STATE(105), + [sym_static_assert_declaration] = STATE(105), + [sym_consteval_block_declaration] = STATE(105), + [sym_concept_definition] = STATE(105), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(105), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(1298), - [anon_sym_AMP_AMP] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym___extension__] = ACTIONS(1656), - [anon_sym_typedef] = ACTIONS(1156), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1322), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1382), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -66894,7 +67635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -66902,20 +67643,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_goto] = ACTIONS(1188), - [anon_sym___try] = ACTIONS(1190), - [anon_sym___leave] = ACTIONS(1192), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -66950,17 +67690,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1322), - [anon_sym_template] = ACTIONS(1658), - [anon_sym_operator] = ACTIONS(1322), - [anon_sym_try] = ACTIONS(1196), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1198), - [anon_sym_namespace] = ACTIONS(1322), - [anon_sym_static_assert] = ACTIONS(1322), - [anon_sym_concept] = ACTIONS(1322), - [anon_sym_co_return] = ACTIONS(1206), - [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -66973,127 +67715,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(109)] = { - [sym_declaration] = STATE(680), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6286), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(680), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6608), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10331), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(207), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(105)] = { + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(1298), - [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(1723), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1384), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -67110,7 +67911,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -67165,12 +67966,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(241), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -67183,336 +67991,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(110)] = { - [sym_declaration] = STATE(110), - [sym_type_definition] = STATE(110), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6281), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [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_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(6681), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11126), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [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(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(110), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(208), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(110), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym___extension__] = ACTIONS(1731), - [anon_sym_typedef] = ACTIONS(1734), - [anon_sym_virtual] = ACTIONS(1357), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym___attribute__] = ACTIONS(1363), - [anon_sym___attribute] = ACTIONS(1363), - [anon_sym_COLON_COLON] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1369), - [anon_sym___declspec] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_register] = ACTIONS(1360), - [anon_sym_inline] = ACTIONS(1360), - [anon_sym___inline] = ACTIONS(1360), - [anon_sym___inline__] = ACTIONS(1360), - [anon_sym___forceinline] = ACTIONS(1360), - [anon_sym_thread_local] = ACTIONS(1360), - [anon_sym___thread] = ACTIONS(1360), - [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__Nonnull] = ACTIONS(1384), - [anon_sym_mutable] = ACTIONS(1384), - [anon_sym_constinit] = ACTIONS(1384), - [anon_sym_consteval] = ACTIONS(1384), - [anon_sym_alignas] = ACTIONS(1387), - [anon_sym__Alignas] = 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(1740), - [anon_sym_else] = ACTIONS(1329), - [anon_sym_switch] = ACTIONS(1743), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_do] = ACTIONS(1749), - [anon_sym_for] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1758), - [anon_sym_continue] = ACTIONS(1761), - [anon_sym_goto] = ACTIONS(1764), - [anon_sym___try] = ACTIONS(1767), - [anon_sym___leave] = ACTIONS(1770), - [anon_sym_not] = ACTIONS(1337), - [anon_sym_compl] = ACTIONS(1337), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_sizeof] = ACTIONS(1441), - [anon_sym___alignof__] = ACTIONS(1444), - [anon_sym___alignof] = ACTIONS(1444), - [anon_sym__alignof] = ACTIONS(1444), - [anon_sym_alignof] = ACTIONS(1444), - [anon_sym__Alignof] = ACTIONS(1444), - [anon_sym_offsetof] = ACTIONS(1447), - [anon_sym__Generic] = ACTIONS(1450), - [anon_sym_typename] = ACTIONS(1453), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym___asm__] = ACTIONS(1456), - [anon_sym___asm] = ACTIONS(1456), - [sym_number_literal] = ACTIONS(1459), - [anon_sym_L_SQUOTE] = ACTIONS(1462), - [anon_sym_u_SQUOTE] = ACTIONS(1462), - [anon_sym_U_SQUOTE] = ACTIONS(1462), - [anon_sym_u8_SQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_L_DQUOTE] = ACTIONS(1465), - [anon_sym_u_DQUOTE] = ACTIONS(1465), - [anon_sym_U_DQUOTE] = ACTIONS(1465), - [anon_sym_u8_DQUOTE] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(1465), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1471), - [anon_sym_nullptr] = ACTIONS(1471), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1474), - [anon_sym_decltype] = ACTIONS(1477), - [anon_sym_template] = ACTIONS(1773), - [anon_sym_try] = ACTIONS(1776), - [anon_sym_delete] = ACTIONS(1486), - [anon_sym_throw] = ACTIONS(1779), - [anon_sym_co_return] = ACTIONS(1782), - [anon_sym_co_yield] = ACTIONS(1785), - [anon_sym_R_DQUOTE] = ACTIONS(1498), - [anon_sym_LR_DQUOTE] = ACTIONS(1498), - [anon_sym_uR_DQUOTE] = ACTIONS(1498), - [anon_sym_UR_DQUOTE] = ACTIONS(1498), - [anon_sym_u8R_DQUOTE] = ACTIONS(1498), - [anon_sym_co_await] = ACTIONS(1501), - [anon_sym_new] = ACTIONS(1504), - [anon_sym_requires] = ACTIONS(1507), - [anon_sym_CARET_CARET] = ACTIONS(1510), - [anon_sym_LBRACK_COLON] = ACTIONS(1513), - [sym_this] = ACTIONS(1468), - }, - [STATE(111)] = { - [sym_declaration] = STATE(118), - [sym_type_definition] = STATE(118), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6281), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(118), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [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_seh_try_statement] = STATE(118), - [sym_seh_leave_statement] = STATE(118), - [sym_expression] = STATE(6681), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11126), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [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(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(118), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(208), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(118), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(106)] = { + [sym__block_item] = STATE(107), + [sym_preproc_include] = STATE(107), + [sym_preproc_def] = STATE(107), + [sym_preproc_function_def] = STATE(107), + [sym_preproc_call] = STATE(107), + [sym_function_definition] = STATE(107), + [sym_declaration] = STATE(107), + [sym_type_definition] = STATE(107), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(107), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(107), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(107), + [sym_preproc_if_in_block] = STATE(107), + [sym_preproc_ifdef_in_block] = STATE(107), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(107), + [sym_import_declaration] = STATE(107), + [sym_template_declaration] = STATE(107), + [sym_template_instantiation] = STATE(107), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(107), + [sym_operator_cast_declaration] = STATE(107), + [sym_constructor_or_destructor_definition] = STATE(107), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(107), + [sym_namespace_alias_definition] = STATE(107), + [sym_using_declaration] = STATE(107), + [sym_alias_declaration] = STATE(107), + [sym_static_assert_declaration] = STATE(107), + [sym_consteval_block_declaration] = STATE(107), + [sym_concept_definition] = STATE(107), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(107), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym___extension__] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1386), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -67529,7 +68187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -67537,18 +68195,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1810), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_goto] = ACTIONS(1814), - [anon_sym___try] = ACTIONS(1816), - [anon_sym___leave] = ACTIONS(1818), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -67583,12 +68242,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1822), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1824), - [anon_sym_co_return] = ACTIONS(1826), - [anon_sym_co_yield] = ACTIONS(1828), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -67601,127 +68267,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(112)] = { - [sym_declaration] = STATE(119), - [sym_type_definition] = STATE(119), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6281), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(119), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(119), - [sym_labeled_statement] = STATE(119), - [sym_expression_statement] = STATE(119), - [sym_if_statement] = STATE(119), - [sym_switch_statement] = STATE(119), - [sym_while_statement] = STATE(119), - [sym_do_statement] = STATE(119), - [sym_for_statement] = STATE(119), - [sym_return_statement] = STATE(119), - [sym_break_statement] = STATE(119), - [sym_continue_statement] = STATE(119), - [sym_goto_statement] = STATE(119), - [sym_seh_try_statement] = STATE(119), - [sym_seh_leave_statement] = STATE(119), - [sym_expression] = STATE(6681), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11126), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(119), - [sym_co_return_statement] = STATE(119), - [sym_co_yield_statement] = STATE(119), - [sym_throw_statement] = STATE(119), - [sym_try_statement] = STATE(119), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(119), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(208), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(119), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(107)] = { + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym___extension__] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1388), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -67738,7 +68463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -67746,18 +68471,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1810), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_goto] = ACTIONS(1814), - [anon_sym___try] = ACTIONS(1816), - [anon_sym___leave] = ACTIONS(1818), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -67792,12 +68518,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1822), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1824), - [anon_sym_co_return] = ACTIONS(1826), - [anon_sym_co_yield] = ACTIONS(1828), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -67810,126 +68543,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(113)] = { - [sym_declaration] = STATE(500), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6290), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(500), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1830), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(108)] = { + [sym__block_item] = STATE(109), + [sym_preproc_include] = STATE(109), + [sym_preproc_def] = STATE(109), + [sym_preproc_function_def] = STATE(109), + [sym_preproc_call] = STATE(109), + [sym_function_definition] = STATE(109), + [sym_declaration] = STATE(109), + [sym_type_definition] = STATE(109), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(109), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(109), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(109), + [sym_preproc_if_in_block] = STATE(109), + [sym_preproc_ifdef_in_block] = STATE(109), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(109), + [sym_import_declaration] = STATE(109), + [sym_template_declaration] = STATE(109), + [sym_template_instantiation] = STATE(109), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(109), + [sym_operator_cast_declaration] = STATE(109), + [sym_constructor_or_destructor_definition] = STATE(109), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(109), + [sym_namespace_alias_definition] = STATE(109), + [sym_using_declaration] = STATE(109), + [sym_alias_declaration] = STATE(109), + [sym_static_assert_declaration] = STATE(109), + [sym_consteval_block_declaration] = STATE(109), + [sym_concept_definition] = STATE(109), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(109), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(1298), - [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(1723), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1390), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -67946,7 +68739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -67954,18 +68747,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1842), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -68001,12 +68794,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1844), - [anon_sym_try] = ACTIONS(145), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -68019,126 +68819,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(114)] = { - [sym_declaration] = STATE(742), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6271), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(652), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(652), - [sym_statement] = STATE(742), - [sym_labeled_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_if_statement] = STATE(652), - [sym_switch_statement] = STATE(652), - [sym_case_statement] = STATE(652), - [sym_while_statement] = STATE(652), - [sym_do_statement] = STATE(652), - [sym_for_statement] = STATE(652), - [sym_return_statement] = STATE(652), - [sym_break_statement] = STATE(652), - [sym_continue_statement] = STATE(652), - [sym_goto_statement] = STATE(652), - [sym_seh_try_statement] = STATE(652), - [sym_seh_leave_statement] = STATE(652), - [sym_expression] = STATE(6696), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10652), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(652), - [sym_co_return_statement] = STATE(652), - [sym_co_yield_statement] = STATE(652), - [sym_throw_statement] = STATE(652), - [sym_try_statement] = STATE(652), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(652), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(175), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1654), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(109)] = { + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym___extension__] = ACTIONS(1723), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1392), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -68155,7 +69015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -68163,19 +69023,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_goto] = ACTIONS(1188), - [anon_sym___try] = ACTIONS(1190), - [anon_sym___leave] = ACTIONS(1192), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -68210,12 +69070,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1658), - [anon_sym_try] = ACTIONS(1196), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1198), - [anon_sym_co_return] = ACTIONS(1206), - [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -68228,126 +69095,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(115)] = { - [sym_declaration] = STATE(500), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6290), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(496), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(496), - [sym_statement] = STATE(500), - [sym_labeled_statement] = STATE(496), - [sym_expression_statement] = STATE(496), - [sym_if_statement] = STATE(496), - [sym_switch_statement] = STATE(496), - [sym_case_statement] = STATE(496), - [sym_while_statement] = STATE(496), - [sym_do_statement] = STATE(496), - [sym_for_statement] = STATE(496), - [sym_return_statement] = STATE(496), - [sym_break_statement] = STATE(496), - [sym_continue_statement] = STATE(496), - [sym_goto_statement] = STATE(496), - [sym_seh_try_statement] = STATE(496), - [sym_seh_leave_statement] = STATE(496), - [sym_expression] = STATE(6685), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10787), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(496), - [sym_co_return_statement] = STATE(496), - [sym_co_yield_statement] = STATE(496), - [sym_throw_statement] = STATE(496), - [sym_try_statement] = STATE(496), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(496), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(176), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1579), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(110)] = { + [sym__block_item] = STATE(79), + [sym_preproc_include] = STATE(79), + [sym_preproc_def] = STATE(79), + [sym_preproc_function_def] = STATE(79), + [sym_preproc_call] = STATE(79), + [sym_function_definition] = STATE(79), + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(79), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(79), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(79), + [sym_preproc_if_in_block] = STATE(79), + [sym_preproc_ifdef_in_block] = STATE(79), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(79), + [sym_import_declaration] = STATE(79), + [sym_template_declaration] = STATE(79), + [sym_template_instantiation] = STATE(79), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(79), + [sym_operator_cast_declaration] = STATE(79), + [sym_constructor_or_destructor_definition] = STATE(79), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(79), + [sym_concept_definition] = STATE(79), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(79), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(1723), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1394), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -68364,7 +69291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -68372,19 +69299,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(83), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_default] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1220), - [anon_sym___leave] = ACTIONS(1222), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -68419,12 +69346,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1583), - [anon_sym_try] = ACTIONS(145), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -68437,126 +69371,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(116)] = { - [sym_declaration] = STATE(680), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6286), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(550), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(680), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(207), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(111)] = { + [sym__block_item] = STATE(72), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(1298), - [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(1723), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1396), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -68573,7 +69567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -68628,12 +69622,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(241), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -68646,126 +69647,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(117)] = { - [sym_declaration] = STATE(1157), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6281), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(1142), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(1142), - [sym_statement] = STATE(1157), - [sym_labeled_statement] = STATE(1142), - [sym_expression_statement] = STATE(1142), - [sym_if_statement] = STATE(1142), - [sym_switch_statement] = STATE(1142), - [sym_case_statement] = STATE(1142), - [sym_while_statement] = STATE(1142), - [sym_do_statement] = STATE(1142), - [sym_for_statement] = STATE(1142), - [sym_return_statement] = STATE(1142), - [sym_break_statement] = STATE(1142), - [sym_continue_statement] = STATE(1142), - [sym_goto_statement] = STATE(1142), - [sym_seh_try_statement] = STATE(1142), - [sym_seh_leave_statement] = STATE(1142), - [sym_expression] = STATE(6681), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11126), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(1142), - [sym_co_return_statement] = STATE(1142), - [sym_co_yield_statement] = STATE(1142), - [sym_throw_statement] = STATE(1142), - [sym_try_statement] = STATE(1142), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(1142), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(208), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(112)] = { + [sym__block_item] = STATE(958), + [sym_preproc_include] = STATE(958), + [sym_preproc_def] = STATE(958), + [sym_preproc_function_def] = STATE(958), + [sym_preproc_call] = STATE(958), + [sym_function_definition] = STATE(958), + [sym_declaration] = STATE(958), + [sym_type_definition] = STATE(958), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6385), + [sym_linkage_specification] = STATE(958), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2684), + [sym_declaration_list] = STATE(958), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8772), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(578), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4545), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(1006), + [sym_statement] = STATE(958), + [sym_labeled_statement] = STATE(578), + [sym_expression_statement] = STATE(578), + [sym_if_statement] = STATE(578), + [sym_switch_statement] = STATE(578), + [sym_case_statement] = STATE(578), + [sym_while_statement] = STATE(578), + [sym_do_statement] = STATE(578), + [sym_for_statement] = STATE(578), + [sym_return_statement] = STATE(578), + [sym_break_statement] = STATE(578), + [sym_continue_statement] = STATE(578), + [sym_goto_statement] = STATE(578), + [sym_seh_try_statement] = STATE(578), + [sym_seh_leave_statement] = STATE(578), + [sym_expression] = STATE(6807), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11035), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(958), + [sym_preproc_if_in_block] = STATE(958), + [sym_preproc_ifdef_in_block] = STATE(958), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2437), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(958), + [sym_import_declaration] = STATE(958), + [sym_template_declaration] = STATE(958), + [sym_template_instantiation] = STATE(958), + [sym_operator_cast] = STATE(9265), + [sym__constructor_specifiers] = STATE(2437), + [sym_operator_cast_definition] = STATE(958), + [sym_operator_cast_declaration] = STATE(958), + [sym_constructor_or_destructor_definition] = STATE(958), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(958), + [sym_namespace_alias_definition] = STATE(958), + [sym_using_declaration] = STATE(958), + [sym_alias_declaration] = STATE(958), + [sym_static_assert_declaration] = STATE(958), + [sym_consteval_block_declaration] = STATE(958), + [sym_concept_definition] = STATE(958), + [sym_for_range_loop] = STATE(578), + [sym_co_return_statement] = STATE(578), + [sym_co_yield_statement] = STATE(578), + [sym_throw_statement] = STATE(578), + [sym_try_statement] = STATE(578), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9265), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(578), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2437), + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [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(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym___extension__] = ACTIONS(1723), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(41), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(45), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(1322), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(65), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -68782,7 +69842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(69), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -68790,19 +69850,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1800), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1810), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_goto] = ACTIONS(1814), - [anon_sym___try] = ACTIONS(1816), - [anon_sym___leave] = ACTIONS(1818), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1324), + [anon_sym___leave] = ACTIONS(1326), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -68837,12 +69897,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1822), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(1328), + [anon_sym_import] = ACTIONS(139), + [anon_sym_template] = ACTIONS(141), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1824), - [anon_sym_co_return] = ACTIONS(1826), - [anon_sym_co_yield] = ACTIONS(1828), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_namespace] = ACTIONS(151), + [anon_sym_static_assert] = ACTIONS(153), + [anon_sym_concept] = ACTIONS(155), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -68855,127 +69922,461 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(118)] = { - [sym_declaration] = STATE(110), - [sym_type_definition] = STATE(110), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6281), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [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_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(6681), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11126), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [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(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(110), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(208), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(110), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [STATE(113)] = { + [sym__top_level_item] = STATE(113), + [sym_preproc_include] = STATE(113), + [sym_preproc_def] = STATE(113), + [sym_preproc_function_def] = STATE(113), + [sym_preproc_call] = STATE(113), + [sym_preproc_if] = STATE(113), + [sym_preproc_ifdef] = STATE(113), + [sym_function_definition] = STATE(113), + [sym_declaration] = STATE(113), + [sym_type_definition] = STATE(113), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6385), + [sym_linkage_specification] = STATE(113), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2684), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8772), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(113), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4545), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(957), + [sym__top_level_statement] = STATE(113), + [sym_labeled_statement] = STATE(113), + [sym__top_level_expression_statement] = STATE(113), + [sym_if_statement] = STATE(113), + [sym_switch_statement] = STATE(113), + [sym_case_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(7241), + [sym__string] = STATE(7205), + [sym_conditional_expression] = STATE(7419), + [sym_assignment_expression] = STATE(7419), + [sym_pointer_expression] = STATE(6003), + [sym_unary_expression] = STATE(7419), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(7419), + [sym_cast_expression] = STATE(7419), + [sym_sizeof_expression] = STATE(7419), + [sym_alignof_expression] = STATE(7419), + [sym_offsetof_expression] = STATE(7419), + [sym_generic_expression] = STATE(7419), + [sym_subscript_expression] = STATE(6003), + [sym_call_expression] = STATE(6003), + [sym_gnu_asm_expression] = STATE(7419), + [sym_extension_expression] = STATE(7419), + [sym_field_expression] = STATE(6003), + [sym_compound_literal_expression] = STATE(7419), + [sym_parenthesized_expression] = STATE(6003), + [sym_char_literal] = STATE(7205), + [sym_concatenated_string] = STATE(7205), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(7419), + [sym__empty_declaration] = STATE(113), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2437), + [sym_dependent_type] = STATE(4935), + [sym_module_declaration] = STATE(113), + [sym_export_declaration] = STATE(113), + [sym_import_declaration] = STATE(113), + [sym_global_module_fragment_declaration] = STATE(113), + [sym_private_module_fragment_declaration] = STATE(113), + [sym_template_declaration] = STATE(113), + [sym_template_instantiation] = STATE(113), + [sym_operator_cast] = STATE(9265), + [sym__constructor_specifiers] = STATE(2437), + [sym_operator_cast_definition] = STATE(113), + [sym_operator_cast_declaration] = STATE(113), + [sym_constructor_or_destructor_definition] = STATE(113), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(7311), + [sym_namespace_definition] = STATE(113), + [sym_namespace_alias_definition] = STATE(113), + [sym_using_declaration] = STATE(113), + [sym_alias_declaration] = STATE(113), + [sym_static_assert_declaration] = STATE(113), + [sym_consteval_block_declaration] = STATE(113), + [sym_concept_definition] = STATE(113), + [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(4767), + [sym_co_await_expression] = STATE(7419), + [sym_new_expression] = STATE(7419), + [sym_delete_expression] = STATE(7419), + [sym_requires_clause] = STATE(7419), + [sym_requires_expression] = STATE(7419), + [sym_lambda_expression] = STATE(7419), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(7419), + [sym_parameter_pack_expansion] = STATE(7419), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5885), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9265), + [sym_reflect_expression] = STATE(7419), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(7314), + [sym_expansion_statement] = STATE(113), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(6003), + [aux_sym_translation_unit_repeat1] = STATE(113), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2437), + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1400), + [aux_sym_preproc_include_token1] = ACTIONS(1403), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1409), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), + [sym_preproc_directive] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(730), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(745), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1421), + [anon_sym_typedef] = ACTIONS(1424), + [anon_sym_virtual] = ACTIONS(757), + [anon_sym_extern] = ACTIONS(1427), + [anon_sym___attribute__] = ACTIONS(763), + [anon_sym___attribute] = ACTIONS(763), + [anon_sym_using] = ACTIONS(1430), + [anon_sym_COLON_COLON] = ACTIONS(769), + [anon_sym_LBRACK_LBRACK] = ACTIONS(772), + [anon_sym___declspec] = ACTIONS(775), + [anon_sym___based] = ACTIONS(778), + [anon_sym___cdecl] = ACTIONS(781), + [anon_sym___clrcall] = ACTIONS(781), + [anon_sym___stdcall] = ACTIONS(781), + [anon_sym___fastcall] = ACTIONS(781), + [anon_sym___thiscall] = ACTIONS(781), + [anon_sym___vectorcall] = ACTIONS(781), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_signed] = ACTIONS(787), + [anon_sym_unsigned] = ACTIONS(787), + [anon_sym_long] = ACTIONS(787), + [anon_sym_short] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_static] = ACTIONS(793), + [anon_sym_register] = ACTIONS(793), + [anon_sym_inline] = ACTIONS(1436), + [anon_sym___inline] = ACTIONS(793), + [anon_sym___inline__] = ACTIONS(793), + [anon_sym___forceinline] = ACTIONS(793), + [anon_sym_thread_local] = ACTIONS(793), + [anon_sym___thread] = ACTIONS(793), + [anon_sym_const] = ACTIONS(799), + [anon_sym_constexpr] = ACTIONS(799), + [anon_sym_volatile] = ACTIONS(799), + [anon_sym_restrict] = ACTIONS(799), + [anon_sym___restrict__] = ACTIONS(799), + [anon_sym__Atomic] = ACTIONS(799), + [anon_sym__Noreturn] = ACTIONS(799), + [anon_sym_noreturn] = ACTIONS(799), + [anon_sym__Nonnull] = ACTIONS(799), + [anon_sym_mutable] = ACTIONS(799), + [anon_sym_constinit] = ACTIONS(799), + [anon_sym_consteval] = ACTIONS(1439), + [anon_sym_alignas] = ACTIONS(805), + [anon_sym__Alignas] = ACTIONS(805), + [sym_primitive_type] = ACTIONS(808), + [anon_sym_enum] = ACTIONS(811), + [anon_sym_class] = ACTIONS(814), + [anon_sym_struct] = ACTIONS(817), + [anon_sym_union] = ACTIONS(820), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1451), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1463), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_goto] = ACTIONS(1472), + [anon_sym_not] = ACTIONS(736), + [anon_sym_compl] = ACTIONS(736), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_sizeof] = ACTIONS(859), + [anon_sym___alignof__] = ACTIONS(862), + [anon_sym___alignof] = ACTIONS(862), + [anon_sym__alignof] = ACTIONS(862), + [anon_sym_alignof] = ACTIONS(862), + [anon_sym__Alignof] = ACTIONS(862), + [anon_sym_offsetof] = ACTIONS(865), + [anon_sym__Generic] = ACTIONS(868), + [anon_sym_typename] = ACTIONS(871), + [anon_sym_asm] = ACTIONS(874), + [anon_sym___asm__] = ACTIONS(874), + [anon_sym___asm] = ACTIONS(874), + [sym_number_literal] = ACTIONS(1475), + [anon_sym_L_SQUOTE] = ACTIONS(880), + [anon_sym_u_SQUOTE] = ACTIONS(880), + [anon_sym_U_SQUOTE] = ACTIONS(880), + [anon_sym_u8_SQUOTE] = ACTIONS(880), + [anon_sym_SQUOTE] = ACTIONS(880), + [anon_sym_L_DQUOTE] = ACTIONS(883), + [anon_sym_u_DQUOTE] = ACTIONS(883), + [anon_sym_U_DQUOTE] = ACTIONS(883), + [anon_sym_u8_DQUOTE] = ACTIONS(883), + [anon_sym_DQUOTE] = ACTIONS(883), + [sym_true] = ACTIONS(1478), + [sym_false] = ACTIONS(1478), + [anon_sym_NULL] = ACTIONS(889), + [anon_sym_nullptr] = ACTIONS(889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(892), + [anon_sym_decltype] = ACTIONS(895), + [anon_sym_explicit] = ACTIONS(898), + [anon_sym_export] = ACTIONS(1481), + [anon_sym_module] = ACTIONS(1484), + [anon_sym_import] = ACTIONS(1487), + [anon_sym_template] = ACTIONS(1490), + [anon_sym_operator] = ACTIONS(913), + [anon_sym_try] = ACTIONS(1493), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_throw] = ACTIONS(1496), + [anon_sym_namespace] = ACTIONS(1499), + [anon_sym_static_assert] = ACTIONS(1502), + [anon_sym_concept] = ACTIONS(1505), + [anon_sym_co_return] = ACTIONS(1508), + [anon_sym_co_yield] = ACTIONS(1511), + [anon_sym_R_DQUOTE] = ACTIONS(940), + [anon_sym_LR_DQUOTE] = ACTIONS(940), + [anon_sym_uR_DQUOTE] = ACTIONS(940), + [anon_sym_UR_DQUOTE] = ACTIONS(940), + [anon_sym_u8R_DQUOTE] = ACTIONS(940), + [anon_sym_co_await] = ACTIONS(943), + [anon_sym_new] = ACTIONS(946), + [anon_sym_requires] = ACTIONS(949), + [anon_sym_CARET_CARET] = ACTIONS(952), + [anon_sym_LBRACK_COLON] = ACTIONS(955), + [sym_this] = ACTIONS(1478), + }, + [STATE(114)] = { + [sym__top_level_item] = STATE(113), + [sym_preproc_include] = STATE(113), + [sym_preproc_def] = STATE(113), + [sym_preproc_function_def] = STATE(113), + [sym_preproc_call] = STATE(113), + [sym_preproc_if] = STATE(113), + [sym_preproc_ifdef] = STATE(113), + [sym_function_definition] = STATE(113), + [sym_declaration] = STATE(113), + [sym_type_definition] = STATE(113), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6385), + [sym_linkage_specification] = STATE(113), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2684), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8772), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(113), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4545), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(957), + [sym__top_level_statement] = STATE(113), + [sym_labeled_statement] = STATE(113), + [sym__top_level_expression_statement] = STATE(113), + [sym_if_statement] = STATE(113), + [sym_switch_statement] = STATE(113), + [sym_case_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(7241), + [sym__string] = STATE(7205), + [sym_conditional_expression] = STATE(7419), + [sym_assignment_expression] = STATE(7419), + [sym_pointer_expression] = STATE(6003), + [sym_unary_expression] = STATE(7419), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(7419), + [sym_cast_expression] = STATE(7419), + [sym_sizeof_expression] = STATE(7419), + [sym_alignof_expression] = STATE(7419), + [sym_offsetof_expression] = STATE(7419), + [sym_generic_expression] = STATE(7419), + [sym_subscript_expression] = STATE(6003), + [sym_call_expression] = STATE(6003), + [sym_gnu_asm_expression] = STATE(7419), + [sym_extension_expression] = STATE(7419), + [sym_field_expression] = STATE(6003), + [sym_compound_literal_expression] = STATE(7419), + [sym_parenthesized_expression] = STATE(6003), + [sym_char_literal] = STATE(7205), + [sym_concatenated_string] = STATE(7205), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(7419), + [sym__empty_declaration] = STATE(113), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2437), + [sym_dependent_type] = STATE(4935), + [sym_module_declaration] = STATE(113), + [sym_export_declaration] = STATE(113), + [sym_import_declaration] = STATE(113), + [sym_global_module_fragment_declaration] = STATE(113), + [sym_private_module_fragment_declaration] = STATE(113), + [sym_template_declaration] = STATE(113), + [sym_template_instantiation] = STATE(113), + [sym_operator_cast] = STATE(9265), + [sym__constructor_specifiers] = STATE(2437), + [sym_operator_cast_definition] = STATE(113), + [sym_operator_cast_declaration] = STATE(113), + [sym_constructor_or_destructor_definition] = STATE(113), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(7311), + [sym_namespace_definition] = STATE(113), + [sym_namespace_alias_definition] = STATE(113), + [sym_using_declaration] = STATE(113), + [sym_alias_declaration] = STATE(113), + [sym_static_assert_declaration] = STATE(113), + [sym_consteval_block_declaration] = STATE(113), + [sym_concept_definition] = STATE(113), + [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(4767), + [sym_co_await_expression] = STATE(7419), + [sym_new_expression] = STATE(7419), + [sym_delete_expression] = STATE(7419), + [sym_requires_clause] = STATE(7419), + [sym_requires_expression] = STATE(7419), + [sym_lambda_expression] = STATE(7419), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(7419), + [sym_parameter_pack_expansion] = STATE(7419), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5885), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9265), + [sym_reflect_expression] = STATE(7419), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(7314), + [sym_expansion_statement] = STATE(113), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(6003), + [aux_sym_translation_unit_repeat1] = STATE(113), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2437), + [ts_builtin_sym_end] = ACTIONS(1514), + [sym_identifier] = ACTIONS(7), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token2] = ACTIONS(15), + [sym_preproc_directive] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym___extension__] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym___extension__] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(41), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(45), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(65), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -68992,7 +70393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(69), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -69000,18 +70401,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1810), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_goto] = ACTIONS(1814), - [anon_sym___try] = ACTIONS(1816), - [anon_sym___leave] = ACTIONS(1818), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -69028,7 +70428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), + [sym_number_literal] = ACTIONS(119), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -69039,19 +70439,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(123), [anon_sym_u8_DQUOTE] = ACTIONS(123), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), + [sym_true] = ACTIONS(125), + [sym_false] = ACTIONS(125), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1822), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(135), + [anon_sym_module] = ACTIONS(137), + [anon_sym_import] = ACTIONS(139), + [anon_sym_template] = ACTIONS(141), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1824), - [anon_sym_co_return] = ACTIONS(1826), - [anon_sym_co_yield] = ACTIONS(1828), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_namespace] = ACTIONS(151), + [anon_sym_static_assert] = ACTIONS(153), + [anon_sym_concept] = ACTIONS(155), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -69062,129 +70470,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), + [sym_this] = ACTIONS(125), }, - [STATE(119)] = { - [sym_declaration] = STATE(110), - [sym_type_definition] = STATE(110), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6281), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(110), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [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_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(110), - [sym_expression] = STATE(6681), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11126), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [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(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(110), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(208), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_case_statement_repeat1] = STATE(110), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(115)] = { + [sym__block_item] = STATE(652), + [sym_preproc_include] = STATE(652), + [sym_preproc_def] = STATE(652), + [sym_preproc_function_def] = STATE(652), + [sym_preproc_call] = STATE(652), + [sym_function_definition] = STATE(652), + [sym_declaration] = STATE(652), + [sym_type_definition] = STATE(652), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6413), + [sym_linkage_specification] = STATE(652), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2707), + [sym_declaration_list] = STATE(652), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8810), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(637), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4502), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(650), + [sym_statement] = STATE(652), + [sym_labeled_statement] = STATE(637), + [sym_expression_statement] = STATE(637), + [sym_if_statement] = STATE(637), + [sym_switch_statement] = STATE(637), + [sym_case_statement] = STATE(637), + [sym_while_statement] = STATE(637), + [sym_do_statement] = STATE(637), + [sym_for_statement] = STATE(637), + [sym_return_statement] = STATE(637), + [sym_break_statement] = STATE(637), + [sym_continue_statement] = STATE(637), + [sym_goto_statement] = STATE(637), + [sym_seh_try_statement] = STATE(637), + [sym_seh_leave_statement] = STATE(637), + [sym_expression] = STATE(6804), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11583), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(652), + [sym_preproc_if_in_block] = STATE(652), + [sym_preproc_ifdef_in_block] = STATE(652), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2454), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(652), + [sym_import_declaration] = STATE(652), + [sym_template_declaration] = STATE(652), + [sym_template_instantiation] = STATE(652), + [sym_operator_cast] = STATE(9210), + [sym__constructor_specifiers] = STATE(2454), + [sym_operator_cast_definition] = STATE(652), + [sym_operator_cast_declaration] = STATE(652), + [sym_constructor_or_destructor_definition] = STATE(652), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(652), + [sym_namespace_alias_definition] = STATE(652), + [sym_using_declaration] = STATE(652), + [sym_alias_declaration] = STATE(652), + [sym_static_assert_declaration] = STATE(652), + [sym_consteval_block_declaration] = STATE(652), + [sym_concept_definition] = STATE(652), + [sym_for_range_loop] = STATE(637), + [sym_co_return_statement] = STATE(637), + [sym_co_yield_statement] = STATE(637), + [sym_throw_statement] = STATE(637), + [sym_try_statement] = STATE(637), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9210), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(637), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2454), + [sym_identifier] = ACTIONS(1089), + [aux_sym_preproc_include_token1] = ACTIONS(1091), + [aux_sym_preproc_def_token1] = ACTIONS(1093), + [aux_sym_preproc_if_token1] = ACTIONS(1095), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1099), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1099), + [sym_preproc_directive] = ACTIONS(1101), + [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(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym___extension__] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(1105), + [anon_sym_typedef] = ACTIONS(1107), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(1109), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(1111), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(1173), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(1115), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -69201,7 +70667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(1117), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -69209,18 +70675,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1810), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_goto] = ACTIONS(1814), - [anon_sym___try] = ACTIONS(1816), - [anon_sym___leave] = ACTIONS(1818), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1125), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1141), + [anon_sym___leave] = ACTIONS(1143), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -69255,12 +70722,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1822), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(1145), + [anon_sym_import] = ACTIONS(1147), + [anon_sym_template] = ACTIONS(1149), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(1151), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1824), - [anon_sym_co_return] = ACTIONS(1826), - [anon_sym_co_yield] = ACTIONS(1828), + [anon_sym_throw] = ACTIONS(1153), + [anon_sym_namespace] = ACTIONS(1155), + [anon_sym_static_assert] = ACTIONS(1157), + [anon_sym_concept] = ACTIONS(1159), + [anon_sym_co_return] = ACTIONS(1161), + [anon_sym_co_yield] = ACTIONS(1163), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -69273,126 +70747,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(120)] = { - [sym_declaration] = STATE(399), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6292), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(1150), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_compound_statement] = STATE(360), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_attributed_statement] = STATE(360), - [sym_statement] = STATE(399), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(116)] = { + [sym__top_level_item] = STATE(119), + [sym_preproc_include] = STATE(119), + [sym_preproc_def] = STATE(119), + [sym_preproc_function_def] = STATE(119), + [sym_preproc_call] = STATE(119), + [sym_preproc_if] = STATE(119), + [sym_preproc_ifdef] = STATE(119), + [sym_function_definition] = STATE(119), + [sym_declaration] = STATE(119), + [sym_type_definition] = STATE(119), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6413), + [sym_linkage_specification] = STATE(119), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2707), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8810), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(119), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4502), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(897), + [sym__top_level_statement] = STATE(119), + [sym_labeled_statement] = STATE(119), + [sym__top_level_expression_statement] = STATE(119), + [sym_if_statement] = STATE(119), + [sym_switch_statement] = STATE(119), + [sym_case_statement] = STATE(119), + [sym_while_statement] = STATE(119), + [sym_do_statement] = STATE(119), + [sym_for_statement] = STATE(119), + [sym_return_statement] = STATE(119), + [sym_break_statement] = STATE(119), + [sym_continue_statement] = STATE(119), + [sym_goto_statement] = STATE(119), + [sym_expression] = STATE(7241), + [sym__string] = STATE(7218), + [sym_conditional_expression] = STATE(7442), + [sym_assignment_expression] = STATE(7442), + [sym_pointer_expression] = STATE(5948), + [sym_unary_expression] = STATE(7442), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(7442), + [sym_cast_expression] = STATE(7442), + [sym_sizeof_expression] = STATE(7442), + [sym_alignof_expression] = STATE(7442), + [sym_offsetof_expression] = STATE(7442), + [sym_generic_expression] = STATE(7442), + [sym_subscript_expression] = STATE(5948), + [sym_call_expression] = STATE(5948), + [sym_gnu_asm_expression] = STATE(7442), + [sym_extension_expression] = STATE(7442), + [sym_field_expression] = STATE(5948), + [sym_compound_literal_expression] = STATE(7442), + [sym_parenthesized_expression] = STATE(5948), + [sym_char_literal] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(7442), + [sym__empty_declaration] = STATE(119), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2454), + [sym_dependent_type] = STATE(4935), + [sym_module_declaration] = STATE(119), + [sym_export_declaration] = STATE(119), + [sym_import_declaration] = STATE(119), + [sym_global_module_fragment_declaration] = STATE(119), + [sym_private_module_fragment_declaration] = STATE(119), + [sym_template_declaration] = STATE(119), + [sym_template_instantiation] = STATE(119), + [sym_operator_cast] = STATE(9210), + [sym__constructor_specifiers] = STATE(2454), + [sym_operator_cast_definition] = STATE(119), + [sym_operator_cast_declaration] = STATE(119), + [sym_constructor_or_destructor_definition] = STATE(119), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(7246), + [sym_namespace_definition] = STATE(119), + [sym_namespace_alias_definition] = STATE(119), + [sym_using_declaration] = STATE(119), + [sym_alias_declaration] = STATE(119), + [sym_static_assert_declaration] = STATE(119), + [sym_consteval_block_declaration] = STATE(119), + [sym_concept_definition] = STATE(119), + [sym_for_range_loop] = STATE(119), + [sym_co_return_statement] = STATE(119), + [sym_co_yield_statement] = STATE(119), + [sym_throw_statement] = STATE(119), + [sym_try_statement] = STATE(119), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(7442), + [sym_new_expression] = STATE(7442), + [sym_delete_expression] = STATE(7442), + [sym_requires_clause] = STATE(7442), + [sym_requires_expression] = STATE(7442), + [sym_lambda_expression] = STATE(7442), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(7442), + [sym_parameter_pack_expansion] = STATE(7442), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5874), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9210), + [sym_reflect_expression] = STATE(7442), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(7255), + [sym_expansion_statement] = STATE(119), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5948), + [aux_sym_translation_unit_repeat1] = STATE(119), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2454), + [sym_identifier] = ACTIONS(1516), + [aux_sym_preproc_include_token1] = ACTIONS(1091), + [aux_sym_preproc_def_token1] = ACTIONS(1093), + [aux_sym_preproc_if_token1] = ACTIONS(1518), + [aux_sym_preproc_if_token2] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), + [sym_preproc_directive] = ACTIONS(1101), + [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(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(295), - [anon_sym___extension__] = ACTIONS(1723), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(1105), + [anon_sym_typedef] = ACTIONS(1107), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(1109), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(1111), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(1113), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(1115), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -69409,7 +70943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(1117), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -69417,19 +70951,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1125), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1139), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -69446,7 +70978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), + [sym_number_literal] = ACTIONS(1526), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -69457,19 +70989,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(123), [anon_sym_u8_DQUOTE] = ACTIONS(123), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), + [sym_true] = ACTIONS(1528), + [sym_false] = ACTIONS(1528), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(339), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(1530), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(1147), + [anon_sym_template] = ACTIONS(1149), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(1151), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(1153), + [anon_sym_namespace] = ACTIONS(1155), + [anon_sym_static_assert] = ACTIONS(1157), + [anon_sym_concept] = ACTIONS(1159), + [anon_sym_co_return] = ACTIONS(1161), + [anon_sym_co_yield] = ACTIONS(1163), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -69480,111 +71020,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), + [sym_this] = ACTIONS(1528), }, - [STATE(121)] = { - [sym_declaration] = STATE(280), - [sym_type_definition] = STATE(6131), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6293), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_expression_statement] = STATE(6131), - [sym__for_statement_body] = STATE(10561), - [sym_expression] = STATE(6636), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10523), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_alias_declaration] = STATE(6131), - [sym__for_range_loop_body] = STATE(10566), - [sym_init_statement] = STATE(2572), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(117)] = { + [sym__block_item] = STATE(860), + [sym_preproc_include] = STATE(860), + [sym_preproc_def] = STATE(860), + [sym_preproc_function_def] = STATE(860), + [sym_preproc_call] = STATE(860), + [sym_function_definition] = STATE(860), + [sym_declaration] = STATE(860), + [sym_type_definition] = STATE(860), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_linkage_specification] = STATE(860), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym_declaration_list] = STATE(860), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8767), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(843), + [sym_statement] = STATE(860), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(860), + [sym_preproc_if_in_block] = STATE(860), + [sym_preproc_ifdef_in_block] = STATE(860), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2497), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(860), + [sym_import_declaration] = STATE(860), + [sym_template_declaration] = STATE(860), + [sym_template_instantiation] = STATE(860), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast_definition] = STATE(860), + [sym_operator_cast_declaration] = STATE(860), + [sym_constructor_or_destructor_definition] = STATE(860), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(860), + [sym_namespace_alias_definition] = STATE(860), + [sym_using_declaration] = STATE(860), + [sym_alias_declaration] = STATE(860), + [sym_static_assert_declaration] = STATE(860), + [sym_consteval_block_declaration] = STATE(860), + [sym_concept_definition] = STATE(860), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(188), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_identifier] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym___extension__] = ACTIONS(1850), - [anon_sym_typedef] = ACTIONS(1852), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1854), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(1534), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -69601,7 +71217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -69609,6 +71225,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -69643,8 +71272,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -69657,109 +71297,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(122)] = { - [sym_declaration] = STATE(280), - [sym_type_definition] = STATE(6131), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6293), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_expression_statement] = STATE(6131), - [sym__for_statement_body] = STATE(10504), - [sym_expression] = STATE(6636), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10523), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_alias_declaration] = STATE(6131), - [sym__for_range_loop_body] = STATE(10526), - [sym_init_statement] = STATE(2572), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(118)] = { + [sym__block_item] = STATE(408), + [sym_preproc_include] = STATE(408), + [sym_preproc_def] = STATE(408), + [sym_preproc_function_def] = STATE(408), + [sym_preproc_call] = STATE(408), + [sym_function_definition] = STATE(408), + [sym_declaration] = STATE(408), + [sym_type_definition] = STATE(408), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_linkage_specification] = STATE(408), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym_declaration_list] = STATE(408), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8822), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(339), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(405), + [sym_statement] = STATE(408), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym__empty_declaration] = STATE(408), + [sym_preproc_if_in_block] = STATE(408), + [sym_preproc_ifdef_in_block] = STATE(408), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2444), + [sym_dependent_type] = STATE(4935), + [sym_export_declaration] = STATE(408), + [sym_import_declaration] = STATE(408), + [sym_template_declaration] = STATE(408), + [sym_template_instantiation] = STATE(408), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast_definition] = STATE(408), + [sym_operator_cast_declaration] = STATE(408), + [sym_constructor_or_destructor_definition] = STATE(408), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(408), + [sym_namespace_alias_definition] = STATE(408), + [sym_using_declaration] = STATE(408), + [sym_alias_declaration] = STATE(408), + [sym_static_assert_declaration] = STATE(408), + [sym_consteval_block_declaration] = STATE(408), + [sym_concept_definition] = STATE(408), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5511), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [sym_preproc_directive] = ACTIONS(297), + [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(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym___extension__] = ACTIONS(1850), - [anon_sym_typedef] = ACTIONS(1852), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1854), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(1077), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -69776,7 +71492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -69784,6 +71500,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -69818,8 +71547,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(341), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -69832,109 +71572,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(123)] = { - [sym_declaration] = STATE(280), - [sym_type_definition] = STATE(6131), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6293), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_expression_statement] = STATE(6131), - [sym__for_statement_body] = STATE(10600), - [sym_expression] = STATE(6636), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10523), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_alias_declaration] = STATE(6131), - [sym__for_range_loop_body] = STATE(10601), - [sym_init_statement] = STATE(2572), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(119)] = { + [sym__top_level_item] = STATE(120), + [sym_preproc_include] = STATE(120), + [sym_preproc_def] = STATE(120), + [sym_preproc_function_def] = STATE(120), + [sym_preproc_call] = STATE(120), + [sym_preproc_if] = STATE(120), + [sym_preproc_ifdef] = STATE(120), + [sym_function_definition] = STATE(120), + [sym_declaration] = STATE(120), + [sym_type_definition] = STATE(120), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6413), + [sym_linkage_specification] = STATE(120), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2707), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8810), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(120), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4502), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(897), + [sym__top_level_statement] = STATE(120), + [sym_labeled_statement] = STATE(120), + [sym__top_level_expression_statement] = STATE(120), + [sym_if_statement] = STATE(120), + [sym_switch_statement] = STATE(120), + [sym_case_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(7241), + [sym__string] = STATE(7218), + [sym_conditional_expression] = STATE(7442), + [sym_assignment_expression] = STATE(7442), + [sym_pointer_expression] = STATE(5948), + [sym_unary_expression] = STATE(7442), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(7442), + [sym_cast_expression] = STATE(7442), + [sym_sizeof_expression] = STATE(7442), + [sym_alignof_expression] = STATE(7442), + [sym_offsetof_expression] = STATE(7442), + [sym_generic_expression] = STATE(7442), + [sym_subscript_expression] = STATE(5948), + [sym_call_expression] = STATE(5948), + [sym_gnu_asm_expression] = STATE(7442), + [sym_extension_expression] = STATE(7442), + [sym_field_expression] = STATE(5948), + [sym_compound_literal_expression] = STATE(7442), + [sym_parenthesized_expression] = STATE(5948), + [sym_char_literal] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(7442), + [sym__empty_declaration] = STATE(120), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2454), + [sym_dependent_type] = STATE(4935), + [sym_module_declaration] = STATE(120), + [sym_export_declaration] = STATE(120), + [sym_import_declaration] = STATE(120), + [sym_global_module_fragment_declaration] = STATE(120), + [sym_private_module_fragment_declaration] = STATE(120), + [sym_template_declaration] = STATE(120), + [sym_template_instantiation] = STATE(120), + [sym_operator_cast] = STATE(9210), + [sym__constructor_specifiers] = STATE(2454), + [sym_operator_cast_definition] = STATE(120), + [sym_operator_cast_declaration] = STATE(120), + [sym_constructor_or_destructor_definition] = STATE(120), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(7246), + [sym_namespace_definition] = STATE(120), + [sym_namespace_alias_definition] = STATE(120), + [sym_using_declaration] = STATE(120), + [sym_alias_declaration] = STATE(120), + [sym_static_assert_declaration] = STATE(120), + [sym_consteval_block_declaration] = STATE(120), + [sym_concept_definition] = STATE(120), + [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(4767), + [sym_co_await_expression] = STATE(7442), + [sym_new_expression] = STATE(7442), + [sym_delete_expression] = STATE(7442), + [sym_requires_clause] = STATE(7442), + [sym_requires_expression] = STATE(7442), + [sym_lambda_expression] = STATE(7442), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(7442), + [sym_parameter_pack_expansion] = STATE(7442), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5874), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9210), + [sym_reflect_expression] = STATE(7442), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(7255), + [sym_expansion_statement] = STATE(120), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5948), + [aux_sym_translation_unit_repeat1] = STATE(120), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2454), + [sym_identifier] = ACTIONS(1516), + [aux_sym_preproc_include_token1] = ACTIONS(1091), + [aux_sym_preproc_def_token1] = ACTIONS(1093), + [aux_sym_preproc_if_token1] = ACTIONS(1518), + [aux_sym_preproc_if_token2] = ACTIONS(1536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), + [sym_preproc_directive] = ACTIONS(1101), + [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(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym___extension__] = ACTIONS(1850), - [anon_sym_typedef] = ACTIONS(1852), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(1105), + [anon_sym_typedef] = ACTIONS(1107), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(1109), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1854), + [anon_sym_using] = ACTIONS(1111), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(1113), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(1115), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -69951,7 +71768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(1117), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -69959,6 +71776,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1125), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1139), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -69975,7 +71803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), + [sym_number_literal] = ACTIONS(1526), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -69986,15 +71814,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(123), [anon_sym_u8_DQUOTE] = ACTIONS(123), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), + [sym_true] = ACTIONS(1528), + [sym_false] = ACTIONS(1528), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(1530), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(1147), + [anon_sym_template] = ACTIONS(1149), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(1151), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1153), + [anon_sym_namespace] = ACTIONS(1155), + [anon_sym_static_assert] = ACTIONS(1157), + [anon_sym_concept] = ACTIONS(1159), + [anon_sym_co_return] = ACTIONS(1161), + [anon_sym_co_yield] = ACTIONS(1163), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -70005,108 +71845,421 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), + [sym_this] = ACTIONS(1528), }, - [STATE(124)] = { - [sym_declaration] = STATE(280), - [sym_type_definition] = STATE(6131), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6293), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_expression_statement] = STATE(6131), - [sym__for_statement_body] = STATE(10810), - [sym_expression] = STATE(6636), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10523), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_alias_declaration] = STATE(6131), - [sym__for_range_loop_body] = STATE(10813), - [sym_init_statement] = STATE(2572), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(120)] = { + [sym__top_level_item] = STATE(120), + [sym_preproc_include] = STATE(120), + [sym_preproc_def] = STATE(120), + [sym_preproc_function_def] = STATE(120), + [sym_preproc_call] = STATE(120), + [sym_preproc_if] = STATE(120), + [sym_preproc_ifdef] = STATE(120), + [sym_function_definition] = STATE(120), + [sym_declaration] = STATE(120), + [sym_type_definition] = STATE(120), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6413), + [sym_linkage_specification] = STATE(120), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(1115), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2707), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8810), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(120), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4502), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(897), + [sym__top_level_statement] = STATE(120), + [sym_labeled_statement] = STATE(120), + [sym__top_level_expression_statement] = STATE(120), + [sym_if_statement] = STATE(120), + [sym_switch_statement] = STATE(120), + [sym_case_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(7241), + [sym__string] = STATE(7218), + [sym_conditional_expression] = STATE(7442), + [sym_assignment_expression] = STATE(7442), + [sym_pointer_expression] = STATE(5948), + [sym_unary_expression] = STATE(7442), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(7442), + [sym_cast_expression] = STATE(7442), + [sym_sizeof_expression] = STATE(7442), + [sym_alignof_expression] = STATE(7442), + [sym_offsetof_expression] = STATE(7442), + [sym_generic_expression] = STATE(7442), + [sym_subscript_expression] = STATE(5948), + [sym_call_expression] = STATE(5948), + [sym_gnu_asm_expression] = STATE(7442), + [sym_extension_expression] = STATE(7442), + [sym_field_expression] = STATE(5948), + [sym_compound_literal_expression] = STATE(7442), + [sym_parenthesized_expression] = STATE(5948), + [sym_char_literal] = STATE(7218), + [sym_concatenated_string] = STATE(7218), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(7442), + [sym__empty_declaration] = STATE(120), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_explicit_function_specifier] = STATE(2454), + [sym_dependent_type] = STATE(4935), + [sym_module_declaration] = STATE(120), + [sym_export_declaration] = STATE(120), + [sym_import_declaration] = STATE(120), + [sym_global_module_fragment_declaration] = STATE(120), + [sym_private_module_fragment_declaration] = STATE(120), + [sym_template_declaration] = STATE(120), + [sym_template_instantiation] = STATE(120), + [sym_operator_cast] = STATE(9210), + [sym__constructor_specifiers] = STATE(2454), + [sym_operator_cast_definition] = STATE(120), + [sym_operator_cast_declaration] = STATE(120), + [sym_constructor_or_destructor_definition] = STATE(120), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(7246), + [sym_namespace_definition] = STATE(120), + [sym_namespace_alias_definition] = STATE(120), + [sym_using_declaration] = STATE(120), + [sym_alias_declaration] = STATE(120), + [sym_static_assert_declaration] = STATE(120), + [sym_consteval_block_declaration] = STATE(120), + [sym_concept_definition] = STATE(120), + [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(4767), + [sym_co_await_expression] = STATE(7442), + [sym_new_expression] = STATE(7442), + [sym_delete_expression] = STATE(7442), + [sym_requires_clause] = STATE(7442), + [sym_requires_expression] = STATE(7442), + [sym_lambda_expression] = STATE(7442), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(7442), + [sym_parameter_pack_expansion] = STATE(7442), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7779), + [sym_qualified_identifier] = STATE(5874), + [sym_qualified_type_identifier] = STATE(4604), + [sym_qualified_operator_cast_identifier] = STATE(9210), + [sym_reflect_expression] = STATE(7442), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(7255), + [sym_expansion_statement] = STATE(120), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5948), + [aux_sym_translation_unit_repeat1] = STATE(120), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2454), + [sym_identifier] = ACTIONS(1538), + [aux_sym_preproc_include_token1] = ACTIONS(1541), + [aux_sym_preproc_def_token1] = ACTIONS(1544), + [aux_sym_preproc_if_token1] = ACTIONS(1547), + [aux_sym_preproc_if_token2] = ACTIONS(719), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1550), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1550), + [sym_preproc_directive] = ACTIONS(1553), + [anon_sym_LPAREN2] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(730), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(745), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym___extension__] = ACTIONS(1559), + [anon_sym_typedef] = ACTIONS(1562), + [anon_sym_virtual] = ACTIONS(757), + [anon_sym_extern] = ACTIONS(1565), + [anon_sym___attribute__] = ACTIONS(763), + [anon_sym___attribute] = ACTIONS(763), + [anon_sym_using] = ACTIONS(1568), + [anon_sym_COLON_COLON] = ACTIONS(769), + [anon_sym_LBRACK_LBRACK] = ACTIONS(772), + [anon_sym___declspec] = ACTIONS(775), + [anon_sym___based] = ACTIONS(778), + [anon_sym___cdecl] = ACTIONS(781), + [anon_sym___clrcall] = ACTIONS(781), + [anon_sym___stdcall] = ACTIONS(781), + [anon_sym___fastcall] = ACTIONS(781), + [anon_sym___thiscall] = ACTIONS(781), + [anon_sym___vectorcall] = ACTIONS(781), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_signed] = ACTIONS(787), + [anon_sym_unsigned] = ACTIONS(787), + [anon_sym_long] = ACTIONS(787), + [anon_sym_short] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_static] = ACTIONS(793), + [anon_sym_register] = ACTIONS(793), + [anon_sym_inline] = ACTIONS(1574), + [anon_sym___inline] = ACTIONS(793), + [anon_sym___inline__] = ACTIONS(793), + [anon_sym___forceinline] = ACTIONS(793), + [anon_sym_thread_local] = ACTIONS(793), + [anon_sym___thread] = ACTIONS(793), + [anon_sym_const] = ACTIONS(799), + [anon_sym_constexpr] = ACTIONS(799), + [anon_sym_volatile] = ACTIONS(799), + [anon_sym_restrict] = ACTIONS(799), + [anon_sym___restrict__] = ACTIONS(799), + [anon_sym__Atomic] = ACTIONS(799), + [anon_sym__Noreturn] = ACTIONS(799), + [anon_sym_noreturn] = ACTIONS(799), + [anon_sym__Nonnull] = ACTIONS(799), + [anon_sym_mutable] = ACTIONS(799), + [anon_sym_constinit] = ACTIONS(799), + [anon_sym_consteval] = ACTIONS(1577), + [anon_sym_alignas] = ACTIONS(805), + [anon_sym__Alignas] = ACTIONS(805), + [sym_primitive_type] = ACTIONS(808), + [anon_sym_enum] = ACTIONS(811), + [anon_sym_class] = ACTIONS(814), + [anon_sym_struct] = ACTIONS(817), + [anon_sym_union] = ACTIONS(820), + [anon_sym_if] = ACTIONS(1580), + [anon_sym_switch] = ACTIONS(1583), + [anon_sym_case] = ACTIONS(1586), + [anon_sym_default] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1592), + [anon_sym_do] = ACTIONS(1595), + [anon_sym_for] = ACTIONS(1598), + [anon_sym_return] = ACTIONS(1601), + [anon_sym_break] = ACTIONS(1604), + [anon_sym_continue] = ACTIONS(1607), + [anon_sym_goto] = ACTIONS(1610), + [anon_sym_not] = ACTIONS(736), + [anon_sym_compl] = ACTIONS(736), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_sizeof] = ACTIONS(859), + [anon_sym___alignof__] = ACTIONS(862), + [anon_sym___alignof] = ACTIONS(862), + [anon_sym__alignof] = ACTIONS(862), + [anon_sym_alignof] = ACTIONS(862), + [anon_sym__Alignof] = ACTIONS(862), + [anon_sym_offsetof] = ACTIONS(865), + [anon_sym__Generic] = ACTIONS(868), + [anon_sym_typename] = ACTIONS(871), + [anon_sym_asm] = ACTIONS(874), + [anon_sym___asm__] = ACTIONS(874), + [anon_sym___asm] = ACTIONS(874), + [sym_number_literal] = ACTIONS(1613), + [anon_sym_L_SQUOTE] = ACTIONS(880), + [anon_sym_u_SQUOTE] = ACTIONS(880), + [anon_sym_U_SQUOTE] = ACTIONS(880), + [anon_sym_u8_SQUOTE] = ACTIONS(880), + [anon_sym_SQUOTE] = ACTIONS(880), + [anon_sym_L_DQUOTE] = ACTIONS(883), + [anon_sym_u_DQUOTE] = ACTIONS(883), + [anon_sym_U_DQUOTE] = ACTIONS(883), + [anon_sym_u8_DQUOTE] = ACTIONS(883), + [anon_sym_DQUOTE] = ACTIONS(883), + [sym_true] = ACTIONS(1616), + [sym_false] = ACTIONS(1616), + [anon_sym_NULL] = ACTIONS(889), + [anon_sym_nullptr] = ACTIONS(889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(892), + [anon_sym_decltype] = ACTIONS(895), + [anon_sym_explicit] = ACTIONS(898), + [anon_sym_export] = ACTIONS(1619), + [anon_sym_module] = ACTIONS(1622), + [anon_sym_import] = ACTIONS(1625), + [anon_sym_template] = ACTIONS(1628), + [anon_sym_operator] = ACTIONS(913), + [anon_sym_try] = ACTIONS(1631), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_throw] = ACTIONS(1634), + [anon_sym_namespace] = ACTIONS(1637), + [anon_sym_static_assert] = ACTIONS(1640), + [anon_sym_concept] = ACTIONS(1643), + [anon_sym_co_return] = ACTIONS(1646), + [anon_sym_co_yield] = ACTIONS(1649), + [anon_sym_R_DQUOTE] = ACTIONS(940), + [anon_sym_LR_DQUOTE] = ACTIONS(940), + [anon_sym_uR_DQUOTE] = ACTIONS(940), + [anon_sym_UR_DQUOTE] = ACTIONS(940), + [anon_sym_u8R_DQUOTE] = ACTIONS(940), + [anon_sym_co_await] = ACTIONS(943), + [anon_sym_new] = ACTIONS(946), + [anon_sym_requires] = ACTIONS(949), + [anon_sym_CARET_CARET] = ACTIONS(952), + [anon_sym_LBRACK_COLON] = ACTIONS(955), + [sym_this] = ACTIONS(1616), + }, + [STATE(121)] = { + [sym_declaration] = STATE(125), + [sym_type_definition] = STATE(125), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6396), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(125), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(125), + [sym_labeled_statement] = STATE(125), + [sym_expression_statement] = STATE(125), + [sym_if_statement] = STATE(125), + [sym_switch_statement] = STATE(125), + [sym_while_statement] = STATE(125), + [sym_do_statement] = STATE(125), + [sym_for_statement] = STATE(125), + [sym_return_statement] = STATE(125), + [sym_break_statement] = STATE(125), + [sym_continue_statement] = STATE(125), + [sym_goto_statement] = STATE(125), + [sym_seh_try_statement] = STATE(125), + [sym_seh_leave_statement] = STATE(125), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(125), + [sym_co_return_statement] = STATE(125), + [sym_co_yield_statement] = STATE(125), + [sym_throw_statement] = STATE(125), + [sym_try_statement] = STATE(125), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(125), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(193), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(125), + [sym_identifier] = ACTIONS(1652), + [aux_sym_preproc_include_token1] = ACTIONS(1654), + [aux_sym_preproc_def_token1] = ACTIONS(1654), + [aux_sym_preproc_if_token1] = ACTIONS(1654), + [aux_sym_preproc_if_token2] = ACTIONS(1654), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1654), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1654), + [aux_sym_preproc_else_token1] = ACTIONS(1654), + [aux_sym_preproc_elif_token1] = ACTIONS(1654), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1654), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1654), + [sym_preproc_directive] = ACTIONS(1654), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym___extension__] = ACTIONS(1850), - [anon_sym_typedef] = ACTIONS(1852), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP_AMP] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(1664), + [anon_sym_typedef] = ACTIONS(303), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1854), + [anon_sym_using] = ACTIONS(1654), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(1654), + [anon_sym___cdecl] = ACTIONS(1654), + [anon_sym___clrcall] = ACTIONS(1654), + [anon_sym___stdcall] = ACTIONS(1654), + [anon_sym___fastcall] = ACTIONS(1654), + [anon_sym___thiscall] = ACTIONS(1654), + [anon_sym___vectorcall] = ACTIONS(1654), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -70134,6 +72287,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(315), + [anon_sym_else] = ACTIONS(1654), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(1654), + [anon_sym_default] = ACTIONS(1654), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -70168,8 +72335,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_explicit] = ACTIONS(1654), + [anon_sym_export] = ACTIONS(1654), + [anon_sym_module] = ACTIONS(1654), + [anon_sym_import] = ACTIONS(1654), + [anon_sym_template] = ACTIONS(1672), + [anon_sym_operator] = ACTIONS(1654), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(1654), + [anon_sym_static_assert] = ACTIONS(1654), + [anon_sym_concept] = ACTIONS(1654), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -70182,281 +72361,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(125)] = { - [sym_declaration] = STATE(280), - [sym_type_definition] = STATE(6131), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6293), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_expression_statement] = STATE(6131), - [sym__for_statement_body] = STATE(10738), - [sym_expression] = STATE(6636), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10523), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_alias_declaration] = STATE(6131), - [sym__for_range_loop_body] = STATE(10739), - [sym_init_statement] = STATE(2572), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym___extension__] = ACTIONS(1850), - [anon_sym_typedef] = ACTIONS(1852), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1854), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), - }, - [STATE(126)] = { - [sym_declaration] = STATE(280), - [sym_type_definition] = STATE(6131), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6293), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_expression_statement] = STATE(6131), - [sym__for_statement_body] = STATE(11466), - [sym_expression] = STATE(6636), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10523), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_alias_declaration] = STATE(6131), - [sym__for_range_loop_body] = STATE(11468), - [sym_init_statement] = STATE(2572), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(122)] = { + [sym_declaration] = STATE(121), + [sym_type_definition] = STATE(121), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6396), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(121), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(121), + [sym_labeled_statement] = STATE(121), + [sym_expression_statement] = STATE(121), + [sym_if_statement] = STATE(121), + [sym_switch_statement] = STATE(121), + [sym_while_statement] = STATE(121), + [sym_do_statement] = STATE(121), + [sym_for_statement] = STATE(121), + [sym_return_statement] = STATE(121), + [sym_break_statement] = STATE(121), + [sym_continue_statement] = STATE(121), + [sym_goto_statement] = STATE(121), + [sym_seh_try_statement] = STATE(121), + [sym_seh_leave_statement] = STATE(121), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(121), + [sym_co_return_statement] = STATE(121), + [sym_co_yield_statement] = STATE(121), + [sym_throw_statement] = STATE(121), + [sym_try_statement] = STATE(121), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(121), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(193), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(1652), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token2] = ACTIONS(1674), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1674), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1674), + [aux_sym_preproc_else_token1] = ACTIONS(1674), + [aux_sym_preproc_elif_token1] = ACTIONS(1674), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1674), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1674), + [sym_preproc_directive] = ACTIONS(1674), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym___extension__] = ACTIONS(1850), - [anon_sym_typedef] = ACTIONS(1852), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP_AMP] = ACTIONS(1676), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(1664), + [anon_sym_typedef] = ACTIONS(303), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1854), + [anon_sym_using] = ACTIONS(1674), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(1674), + [anon_sym___cdecl] = ACTIONS(1674), + [anon_sym___clrcall] = ACTIONS(1674), + [anon_sym___stdcall] = ACTIONS(1674), + [anon_sym___fastcall] = ACTIONS(1674), + [anon_sym___thiscall] = ACTIONS(1674), + [anon_sym___vectorcall] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -70484,6 +72526,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(315), + [anon_sym_else] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(1674), + [anon_sym_default] = ACTIONS(1674), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -70518,8 +72574,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_explicit] = ACTIONS(1674), + [anon_sym_export] = ACTIONS(1674), + [anon_sym_module] = ACTIONS(1674), + [anon_sym_import] = ACTIONS(1674), + [anon_sym_template] = ACTIONS(1672), + [anon_sym_operator] = ACTIONS(1674), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(1674), + [anon_sym_static_assert] = ACTIONS(1674), + [anon_sym_concept] = ACTIONS(1674), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -70532,279 +72600,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(127)] = { - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(7449), - [sym__declarator] = STATE(8939), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8469), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(10588), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4607), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10588), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(10894), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5293), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(10925), - [sym__unary_right_fold] = STATE(10775), - [sym__binary_fold] = STATE(10807), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7791), - [sym_qualified_identifier] = STATE(5294), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11136), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(1860), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1872), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(1880), - [anon_sym___clrcall] = ACTIONS(1880), - [anon_sym___stdcall] = ACTIONS(1880), - [anon_sym___fastcall] = ACTIONS(1880), - [anon_sym___thiscall] = ACTIONS(1880), - [anon_sym___vectorcall] = ACTIONS(1880), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(128)] = { - [sym_declaration] = STATE(1878), - [sym_type_definition] = STATE(1878), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6274), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_expression_statement] = STATE(1878), - [sym_expression] = STATE(6522), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10153), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_alias_declaration] = STATE(1878), - [sym_init_statement] = STATE(146), - [sym_condition_declaration] = STATE(10886), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(123)] = { + [sym_declaration] = STATE(124), + [sym_type_definition] = STATE(124), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6396), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(124), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(124), + [sym_labeled_statement] = STATE(124), + [sym_expression_statement] = STATE(124), + [sym_if_statement] = STATE(124), + [sym_switch_statement] = STATE(124), + [sym_while_statement] = STATE(124), + [sym_do_statement] = STATE(124), + [sym_for_statement] = STATE(124), + [sym_return_statement] = STATE(124), + [sym_break_statement] = STATE(124), + [sym_continue_statement] = STATE(124), + [sym_goto_statement] = STATE(124), + [sym_seh_try_statement] = STATE(124), + [sym_seh_leave_statement] = STATE(124), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(124), + [sym_co_return_statement] = STATE(124), + [sym_co_yield_statement] = STATE(124), + [sym_throw_statement] = STATE(124), + [sym_try_statement] = STATE(124), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(124), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(193), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(124), + [sym_identifier] = ACTIONS(1652), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token2] = ACTIONS(1678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1678), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1678), + [aux_sym_preproc_else_token1] = ACTIONS(1678), + [aux_sym_preproc_elif_token1] = ACTIONS(1678), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1678), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1678), + [sym_preproc_directive] = ACTIONS(1678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym___extension__] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP_AMP] = ACTIONS(1680), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(1664), + [anon_sym_typedef] = ACTIONS(303), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1940), + [anon_sym_using] = ACTIONS(1678), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(1678), + [anon_sym___cdecl] = ACTIONS(1678), + [anon_sym___clrcall] = ACTIONS(1678), + [anon_sym___stdcall] = ACTIONS(1678), + [anon_sym___fastcall] = ACTIONS(1678), + [anon_sym___thiscall] = ACTIONS(1678), + [anon_sym___vectorcall] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -70832,6 +72765,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(315), + [anon_sym_else] = ACTIONS(1678), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -70866,8 +72813,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_explicit] = ACTIONS(1678), + [anon_sym_export] = ACTIONS(1678), + [anon_sym_module] = ACTIONS(1678), + [anon_sym_import] = ACTIONS(1678), + [anon_sym_template] = ACTIONS(1672), + [anon_sym_operator] = ACTIONS(1678), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(1678), + [anon_sym_static_assert] = ACTIONS(1678), + [anon_sym_concept] = ACTIONS(1678), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -70880,105 +72839,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(129)] = { - [sym_declaration] = STATE(6131), - [sym_type_definition] = STATE(6131), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6277), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_expression_statement] = STATE(6131), - [sym_expression] = STATE(6661), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10681), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_alias_declaration] = STATE(6131), - [sym__for_range_loop_body] = STATE(10805), - [sym_init_statement] = STATE(2572), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(124)] = { + [sym_declaration] = STATE(125), + [sym_type_definition] = STATE(125), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6396), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(125), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(125), + [sym_labeled_statement] = STATE(125), + [sym_expression_statement] = STATE(125), + [sym_if_statement] = STATE(125), + [sym_switch_statement] = STATE(125), + [sym_while_statement] = STATE(125), + [sym_do_statement] = STATE(125), + [sym_for_statement] = STATE(125), + [sym_return_statement] = STATE(125), + [sym_break_statement] = STATE(125), + [sym_continue_statement] = STATE(125), + [sym_goto_statement] = STATE(125), + [sym_seh_try_statement] = STATE(125), + [sym_seh_leave_statement] = STATE(125), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(125), + [sym_co_return_statement] = STATE(125), + [sym_co_yield_statement] = STATE(125), + [sym_throw_statement] = STATE(125), + [sym_try_statement] = STATE(125), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(125), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(193), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(125), + [sym_identifier] = ACTIONS(1652), + [aux_sym_preproc_include_token1] = ACTIONS(1682), + [aux_sym_preproc_def_token1] = ACTIONS(1682), + [aux_sym_preproc_if_token1] = ACTIONS(1682), + [aux_sym_preproc_if_token2] = ACTIONS(1682), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1682), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1682), + [aux_sym_preproc_else_token1] = ACTIONS(1682), + [aux_sym_preproc_elif_token1] = ACTIONS(1682), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1682), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1682), + [sym_preproc_directive] = ACTIONS(1682), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym___extension__] = ACTIONS(1850), - [anon_sym_typedef] = ACTIONS(1852), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(1664), + [anon_sym_typedef] = ACTIONS(303), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1854), + [anon_sym_using] = ACTIONS(1682), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(1682), + [anon_sym___cdecl] = ACTIONS(1682), + [anon_sym___clrcall] = ACTIONS(1682), + [anon_sym___stdcall] = ACTIONS(1682), + [anon_sym___fastcall] = ACTIONS(1682), + [anon_sym___thiscall] = ACTIONS(1682), + [anon_sym___vectorcall] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -71006,6 +73004,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(315), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(1682), + [anon_sym_default] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -71040,8 +73052,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_explicit] = ACTIONS(1682), + [anon_sym_export] = ACTIONS(1682), + [anon_sym_module] = ACTIONS(1682), + [anon_sym_import] = ACTIONS(1682), + [anon_sym_template] = ACTIONS(1672), + [anon_sym_operator] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(1682), + [anon_sym_static_assert] = ACTIONS(1682), + [anon_sym_concept] = ACTIONS(1682), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -71054,453 +73078,614 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(130)] = { - [sym_declaration] = STATE(6131), - [sym_type_definition] = STATE(6131), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6277), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_expression_statement] = STATE(6131), - [sym_expression] = STATE(6661), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10681), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_alias_declaration] = STATE(6131), - [sym__for_range_loop_body] = STATE(10754), - [sym_init_statement] = STATE(2572), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym___extension__] = ACTIONS(1850), - [anon_sym_typedef] = ACTIONS(1852), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1854), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), + [STATE(125)] = { + [sym_declaration] = STATE(125), + [sym_type_definition] = STATE(125), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6396), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(125), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(125), + [sym_labeled_statement] = STATE(125), + [sym_expression_statement] = STATE(125), + [sym_if_statement] = STATE(125), + [sym_switch_statement] = STATE(125), + [sym_while_statement] = STATE(125), + [sym_do_statement] = STATE(125), + [sym_for_statement] = STATE(125), + [sym_return_statement] = STATE(125), + [sym_break_statement] = STATE(125), + [sym_continue_statement] = STATE(125), + [sym_goto_statement] = STATE(125), + [sym_seh_try_statement] = STATE(125), + [sym_seh_leave_statement] = STATE(125), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(125), + [sym_co_return_statement] = STATE(125), + [sym_co_yield_statement] = STATE(125), + [sym_throw_statement] = STATE(125), + [sym_try_statement] = STATE(125), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(125), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(193), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(125), + [sym_identifier] = ACTIONS(1686), + [aux_sym_preproc_include_token1] = ACTIONS(1689), + [aux_sym_preproc_def_token1] = ACTIONS(1689), + [aux_sym_preproc_if_token1] = ACTIONS(1689), + [aux_sym_preproc_if_token2] = ACTIONS(1689), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1689), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1689), + [aux_sym_preproc_else_token1] = ACTIONS(1689), + [aux_sym_preproc_elif_token1] = ACTIONS(1689), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1689), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1689), + [sym_preproc_directive] = ACTIONS(1689), + [anon_sym_LPAREN2] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_TILDE] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_STAR] = ACTIONS(1700), + [anon_sym_AMP_AMP] = ACTIONS(1703), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1708), + [anon_sym___extension__] = ACTIONS(1711), + [anon_sym_typedef] = ACTIONS(1714), + [anon_sym_virtual] = ACTIONS(1717), + [anon_sym_extern] = ACTIONS(1720), + [anon_sym___attribute__] = ACTIONS(1723), + [anon_sym___attribute] = ACTIONS(1723), + [anon_sym_using] = ACTIONS(1689), + [anon_sym_COLON_COLON] = ACTIONS(1726), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1732), + [anon_sym___based] = ACTIONS(1689), + [anon_sym___cdecl] = ACTIONS(1689), + [anon_sym___clrcall] = ACTIONS(1689), + [anon_sym___stdcall] = ACTIONS(1689), + [anon_sym___fastcall] = ACTIONS(1689), + [anon_sym___thiscall] = ACTIONS(1689), + [anon_sym___vectorcall] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1735), + [anon_sym_signed] = ACTIONS(1738), + [anon_sym_unsigned] = ACTIONS(1738), + [anon_sym_long] = ACTIONS(1738), + [anon_sym_short] = ACTIONS(1738), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_static] = ACTIONS(1720), + [anon_sym_register] = ACTIONS(1720), + [anon_sym_inline] = ACTIONS(1720), + [anon_sym___inline] = ACTIONS(1720), + [anon_sym___inline__] = ACTIONS(1720), + [anon_sym___forceinline] = ACTIONS(1720), + [anon_sym_thread_local] = ACTIONS(1720), + [anon_sym___thread] = ACTIONS(1720), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_constexpr] = ACTIONS(1744), + [anon_sym_volatile] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1744), + [anon_sym___restrict__] = ACTIONS(1744), + [anon_sym__Atomic] = ACTIONS(1744), + [anon_sym__Noreturn] = ACTIONS(1744), + [anon_sym_noreturn] = ACTIONS(1744), + [anon_sym__Nonnull] = ACTIONS(1744), + [anon_sym_mutable] = ACTIONS(1744), + [anon_sym_constinit] = ACTIONS(1744), + [anon_sym_consteval] = ACTIONS(1744), + [anon_sym_alignas] = ACTIONS(1747), + [anon_sym__Alignas] = ACTIONS(1747), + [sym_primitive_type] = ACTIONS(1750), + [anon_sym_enum] = ACTIONS(1753), + [anon_sym_class] = ACTIONS(1756), + [anon_sym_struct] = ACTIONS(1759), + [anon_sym_union] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1689), + [anon_sym_switch] = ACTIONS(1768), + [anon_sym_case] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1774), + [anon_sym_for] = ACTIONS(1777), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1786), + [anon_sym_goto] = ACTIONS(1789), + [anon_sym___try] = ACTIONS(1792), + [anon_sym___leave] = ACTIONS(1795), + [anon_sym_not] = ACTIONS(1697), + [anon_sym_compl] = ACTIONS(1697), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1801), + [anon_sym___alignof__] = ACTIONS(1804), + [anon_sym___alignof] = ACTIONS(1804), + [anon_sym__alignof] = ACTIONS(1804), + [anon_sym_alignof] = ACTIONS(1804), + [anon_sym__Alignof] = ACTIONS(1804), + [anon_sym_offsetof] = ACTIONS(1807), + [anon_sym__Generic] = ACTIONS(1810), + [anon_sym_typename] = ACTIONS(1813), + [anon_sym_asm] = ACTIONS(1816), + [anon_sym___asm__] = ACTIONS(1816), + [anon_sym___asm] = ACTIONS(1816), + [sym_number_literal] = ACTIONS(1819), + [anon_sym_L_SQUOTE] = ACTIONS(1822), + [anon_sym_u_SQUOTE] = ACTIONS(1822), + [anon_sym_U_SQUOTE] = ACTIONS(1822), + [anon_sym_u8_SQUOTE] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1822), + [anon_sym_L_DQUOTE] = ACTIONS(1825), + [anon_sym_u_DQUOTE] = ACTIONS(1825), + [anon_sym_U_DQUOTE] = ACTIONS(1825), + [anon_sym_u8_DQUOTE] = ACTIONS(1825), + [anon_sym_DQUOTE] = ACTIONS(1825), + [sym_true] = ACTIONS(1828), + [sym_false] = ACTIONS(1828), + [anon_sym_NULL] = ACTIONS(1831), + [anon_sym_nullptr] = ACTIONS(1831), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1834), + [anon_sym_decltype] = ACTIONS(1837), + [anon_sym_explicit] = ACTIONS(1689), + [anon_sym_export] = ACTIONS(1689), + [anon_sym_module] = ACTIONS(1689), + [anon_sym_import] = ACTIONS(1689), + [anon_sym_template] = ACTIONS(1840), + [anon_sym_operator] = ACTIONS(1689), + [anon_sym_try] = ACTIONS(1843), + [anon_sym_delete] = ACTIONS(1846), + [anon_sym_throw] = ACTIONS(1849), + [anon_sym_namespace] = ACTIONS(1689), + [anon_sym_static_assert] = ACTIONS(1689), + [anon_sym_concept] = ACTIONS(1689), + [anon_sym_co_return] = ACTIONS(1852), + [anon_sym_co_yield] = ACTIONS(1855), + [anon_sym_R_DQUOTE] = ACTIONS(1858), + [anon_sym_LR_DQUOTE] = ACTIONS(1858), + [anon_sym_uR_DQUOTE] = ACTIONS(1858), + [anon_sym_UR_DQUOTE] = ACTIONS(1858), + [anon_sym_u8R_DQUOTE] = ACTIONS(1858), + [anon_sym_co_await] = ACTIONS(1861), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_requires] = ACTIONS(1867), + [anon_sym_CARET_CARET] = ACTIONS(1870), + [anon_sym_LBRACK_COLON] = ACTIONS(1873), + [sym_this] = ACTIONS(1828), }, - [STATE(131)] = { - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(7449), - [sym__declarator] = STATE(8939), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8469), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(10595), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4645), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10595), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(10605), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5293), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(10607), - [sym__unary_right_fold] = STATE(10613), - [sym__binary_fold] = STATE(10617), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7791), - [sym_qualified_identifier] = STATE(5294), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(10619), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(1860), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1872), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(1880), - [anon_sym___clrcall] = ACTIONS(1880), - [anon_sym___stdcall] = ACTIONS(1880), - [anon_sym___fastcall] = ACTIONS(1880), - [anon_sym___thiscall] = ACTIONS(1880), - [anon_sym___vectorcall] = ACTIONS(1880), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), + [STATE(126)] = { + [sym_declaration] = STATE(126), + [sym_type_definition] = STATE(126), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6421), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(126), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(126), + [sym_labeled_statement] = STATE(126), + [sym_expression_statement] = STATE(126), + [sym_if_statement] = STATE(126), + [sym_switch_statement] = STATE(126), + [sym_while_statement] = STATE(126), + [sym_do_statement] = STATE(126), + [sym_for_statement] = STATE(126), + [sym_return_statement] = STATE(126), + [sym_break_statement] = STATE(126), + [sym_continue_statement] = STATE(126), + [sym_goto_statement] = STATE(126), + [sym_seh_try_statement] = STATE(126), + [sym_seh_leave_statement] = STATE(126), + [sym_expression] = STATE(6807), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11035), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(126), + [sym_co_return_statement] = STATE(126), + [sym_co_yield_statement] = STATE(126), + [sym_throw_statement] = STATE(126), + [sym_try_statement] = STATE(126), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(126), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(214), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(126), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym_identifier] = ACTIONS(1876), + [aux_sym_preproc_include_token1] = ACTIONS(1689), + [aux_sym_preproc_def_token1] = ACTIONS(1689), + [aux_sym_preproc_if_token1] = ACTIONS(1689), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1689), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1689), + [sym_preproc_directive] = ACTIONS(1689), + [anon_sym_LPAREN2] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_TILDE] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_STAR] = ACTIONS(1700), + [anon_sym_AMP_AMP] = ACTIONS(1703), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1879), + [anon_sym___extension__] = ACTIONS(1882), + [anon_sym_typedef] = ACTIONS(1885), + [anon_sym_virtual] = ACTIONS(1717), + [anon_sym_extern] = ACTIONS(1720), + [anon_sym___attribute__] = ACTIONS(1723), + [anon_sym___attribute] = ACTIONS(1723), + [anon_sym_using] = ACTIONS(1689), + [anon_sym_COLON_COLON] = ACTIONS(1726), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1732), + [anon_sym___based] = ACTIONS(1689), + [anon_sym___cdecl] = ACTIONS(1689), + [anon_sym___clrcall] = ACTIONS(1689), + [anon_sym___stdcall] = ACTIONS(1689), + [anon_sym___fastcall] = ACTIONS(1689), + [anon_sym___thiscall] = ACTIONS(1689), + [anon_sym___vectorcall] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_signed] = ACTIONS(1738), + [anon_sym_unsigned] = ACTIONS(1738), + [anon_sym_long] = ACTIONS(1738), + [anon_sym_short] = ACTIONS(1738), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_static] = ACTIONS(1720), + [anon_sym_register] = ACTIONS(1720), + [anon_sym_inline] = ACTIONS(1720), + [anon_sym___inline] = ACTIONS(1720), + [anon_sym___inline__] = ACTIONS(1720), + [anon_sym___forceinline] = ACTIONS(1720), + [anon_sym_thread_local] = ACTIONS(1720), + [anon_sym___thread] = ACTIONS(1720), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_constexpr] = ACTIONS(1744), + [anon_sym_volatile] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1744), + [anon_sym___restrict__] = ACTIONS(1744), + [anon_sym__Atomic] = ACTIONS(1744), + [anon_sym__Noreturn] = ACTIONS(1744), + [anon_sym_noreturn] = ACTIONS(1744), + [anon_sym__Nonnull] = ACTIONS(1744), + [anon_sym_mutable] = ACTIONS(1744), + [anon_sym_constinit] = ACTIONS(1744), + [anon_sym_consteval] = ACTIONS(1744), + [anon_sym_alignas] = ACTIONS(1747), + [anon_sym__Alignas] = ACTIONS(1747), + [sym_primitive_type] = ACTIONS(1750), + [anon_sym_enum] = ACTIONS(1753), + [anon_sym_class] = ACTIONS(1756), + [anon_sym_struct] = ACTIONS(1759), + [anon_sym_union] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1891), + [anon_sym_else] = ACTIONS(1689), + [anon_sym_switch] = ACTIONS(1894), + [anon_sym_case] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(1897), + [anon_sym_do] = ACTIONS(1900), + [anon_sym_for] = ACTIONS(1903), + [anon_sym_return] = ACTIONS(1906), + [anon_sym_break] = ACTIONS(1909), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_goto] = ACTIONS(1915), + [anon_sym___try] = ACTIONS(1918), + [anon_sym___leave] = ACTIONS(1921), + [anon_sym_not] = ACTIONS(1697), + [anon_sym_compl] = ACTIONS(1697), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1801), + [anon_sym___alignof__] = ACTIONS(1804), + [anon_sym___alignof] = ACTIONS(1804), + [anon_sym__alignof] = ACTIONS(1804), + [anon_sym_alignof] = ACTIONS(1804), + [anon_sym__Alignof] = ACTIONS(1804), + [anon_sym_offsetof] = ACTIONS(1807), + [anon_sym__Generic] = ACTIONS(1810), + [anon_sym_typename] = ACTIONS(1813), + [anon_sym_asm] = ACTIONS(1816), + [anon_sym___asm__] = ACTIONS(1816), + [anon_sym___asm] = ACTIONS(1816), + [sym_number_literal] = ACTIONS(1819), + [anon_sym_L_SQUOTE] = ACTIONS(1822), + [anon_sym_u_SQUOTE] = ACTIONS(1822), + [anon_sym_U_SQUOTE] = ACTIONS(1822), + [anon_sym_u8_SQUOTE] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1822), + [anon_sym_L_DQUOTE] = ACTIONS(1825), + [anon_sym_u_DQUOTE] = ACTIONS(1825), + [anon_sym_U_DQUOTE] = ACTIONS(1825), + [anon_sym_u8_DQUOTE] = ACTIONS(1825), + [anon_sym_DQUOTE] = ACTIONS(1825), + [sym_true] = ACTIONS(1828), + [sym_false] = ACTIONS(1828), + [anon_sym_NULL] = ACTIONS(1831), + [anon_sym_nullptr] = ACTIONS(1831), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1834), + [anon_sym_decltype] = ACTIONS(1837), + [anon_sym_explicit] = ACTIONS(1689), + [anon_sym_export] = ACTIONS(1689), + [anon_sym_module] = ACTIONS(1689), + [anon_sym_import] = ACTIONS(1689), + [anon_sym_template] = ACTIONS(1924), + [anon_sym_operator] = ACTIONS(1689), + [anon_sym_try] = ACTIONS(1927), + [anon_sym_delete] = ACTIONS(1846), + [anon_sym_throw] = ACTIONS(1930), + [anon_sym_namespace] = ACTIONS(1689), + [anon_sym_static_assert] = ACTIONS(1689), + [anon_sym_concept] = ACTIONS(1689), + [anon_sym_co_return] = ACTIONS(1933), + [anon_sym_co_yield] = ACTIONS(1936), + [anon_sym_R_DQUOTE] = ACTIONS(1858), + [anon_sym_LR_DQUOTE] = ACTIONS(1858), + [anon_sym_uR_DQUOTE] = ACTIONS(1858), + [anon_sym_UR_DQUOTE] = ACTIONS(1858), + [anon_sym_u8R_DQUOTE] = ACTIONS(1858), + [anon_sym_co_await] = ACTIONS(1861), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_requires] = ACTIONS(1867), + [anon_sym_CARET_CARET] = ACTIONS(1870), + [anon_sym_LBRACK_COLON] = ACTIONS(1873), + [sym_this] = ACTIONS(1828), }, - [STATE(132)] = { - [sym_declaration] = STATE(6131), - [sym_type_definition] = STATE(6131), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6277), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_expression_statement] = STATE(6131), - [sym_expression] = STATE(6661), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10681), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_alias_declaration] = STATE(6131), - [sym__for_range_loop_body] = STATE(10999), - [sym_init_statement] = STATE(2572), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(127)] = { + [sym_declaration] = STATE(133), + [sym_type_definition] = STATE(133), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6398), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(133), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(133), + [sym_labeled_statement] = STATE(133), + [sym_expression_statement] = STATE(133), + [sym_if_statement] = STATE(133), + [sym_switch_statement] = STATE(133), + [sym_while_statement] = STATE(133), + [sym_do_statement] = STATE(133), + [sym_for_statement] = STATE(133), + [sym_return_statement] = STATE(133), + [sym_break_statement] = STATE(133), + [sym_continue_statement] = STATE(133), + [sym_goto_statement] = STATE(133), + [sym_seh_try_statement] = STATE(133), + [sym_seh_leave_statement] = STATE(133), + [sym_expression] = STATE(6804), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11583), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(133), + [sym_co_return_statement] = STATE(133), + [sym_co_yield_statement] = STATE(133), + [sym_throw_statement] = STATE(133), + [sym_try_statement] = STATE(133), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(133), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(215), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(133), + [sym_identifier] = ACTIONS(1939), + [aux_sym_preproc_include_token1] = ACTIONS(1654), + [aux_sym_preproc_def_token1] = ACTIONS(1654), + [aux_sym_preproc_if_token1] = ACTIONS(1654), + [aux_sym_preproc_if_token2] = ACTIONS(1654), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1654), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1654), + [sym_preproc_directive] = ACTIONS(1654), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym___extension__] = ACTIONS(1850), - [anon_sym_typedef] = ACTIONS(1852), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP_AMP] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(1941), + [anon_sym_typedef] = ACTIONS(1107), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1854), + [anon_sym_using] = ACTIONS(1654), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(1654), + [anon_sym___cdecl] = ACTIONS(1654), + [anon_sym___clrcall] = ACTIONS(1654), + [anon_sym___stdcall] = ACTIONS(1654), + [anon_sym___fastcall] = ACTIONS(1654), + [anon_sym___thiscall] = ACTIONS(1654), + [anon_sym___vectorcall] = ACTIONS(1654), + [anon_sym_LBRACE] = ACTIONS(1113), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -71528,6 +73713,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_else] = ACTIONS(1654), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_case] = ACTIONS(1654), + [anon_sym_default] = ACTIONS(1654), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1141), + [anon_sym___leave] = ACTIONS(1143), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -71562,8 +73761,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_explicit] = ACTIONS(1654), + [anon_sym_export] = ACTIONS(1654), + [anon_sym_module] = ACTIONS(1654), + [anon_sym_import] = ACTIONS(1654), + [anon_sym_template] = ACTIONS(1943), + [anon_sym_operator] = ACTIONS(1654), + [anon_sym_try] = ACTIONS(1151), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1153), + [anon_sym_namespace] = ACTIONS(1654), + [anon_sym_static_assert] = ACTIONS(1654), + [anon_sym_concept] = ACTIONS(1654), + [anon_sym_co_return] = ACTIONS(1161), + [anon_sym_co_yield] = ACTIONS(1163), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -71576,105 +73787,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(133)] = { - [sym_declaration] = STATE(6131), - [sym_type_definition] = STATE(6131), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6277), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_expression_statement] = STATE(6131), - [sym_expression] = STATE(6661), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10681), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_alias_declaration] = STATE(6131), - [sym__for_range_loop_body] = STATE(10624), - [sym_init_statement] = STATE(2572), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(128)] = { + [sym_declaration] = STATE(130), + [sym_type_definition] = STATE(130), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6421), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(130), + [sym_labeled_statement] = STATE(130), + [sym_expression_statement] = STATE(130), + [sym_if_statement] = STATE(130), + [sym_switch_statement] = STATE(130), + [sym_while_statement] = STATE(130), + [sym_do_statement] = STATE(130), + [sym_for_statement] = STATE(130), + [sym_return_statement] = STATE(130), + [sym_break_statement] = STATE(130), + [sym_continue_statement] = STATE(130), + [sym_goto_statement] = STATE(130), + [sym_seh_try_statement] = STATE(130), + [sym_seh_leave_statement] = STATE(130), + [sym_expression] = STATE(6807), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11035), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(130), + [sym_co_return_statement] = STATE(130), + [sym_co_yield_statement] = STATE(130), + [sym_throw_statement] = STATE(130), + [sym_try_statement] = STATE(130), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(130), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(214), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(130), + [ts_builtin_sym_end] = ACTIONS(1680), + [sym_identifier] = ACTIONS(1945), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1678), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1678), + [sym_preproc_directive] = ACTIONS(1678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym___extension__] = ACTIONS(1850), - [anon_sym_typedef] = ACTIONS(1852), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP_AMP] = ACTIONS(1680), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1947), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1854), + [anon_sym_using] = ACTIONS(1678), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(1678), + [anon_sym___cdecl] = ACTIONS(1678), + [anon_sym___clrcall] = ACTIONS(1678), + [anon_sym___stdcall] = ACTIONS(1678), + [anon_sym___fastcall] = ACTIONS(1678), + [anon_sym___thiscall] = ACTIONS(1678), + [anon_sym___vectorcall] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -71702,6 +73948,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_else] = ACTIONS(1678), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1324), + [anon_sym___leave] = ACTIONS(1326), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -71736,8 +73996,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_explicit] = ACTIONS(1678), + [anon_sym_export] = ACTIONS(1678), + [anon_sym_module] = ACTIONS(1678), + [anon_sym_import] = ACTIONS(1678), + [anon_sym_template] = ACTIONS(1949), + [anon_sym_operator] = ACTIONS(1678), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_namespace] = ACTIONS(1678), + [anon_sym_static_assert] = ACTIONS(1678), + [anon_sym_concept] = ACTIONS(1678), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -71750,105 +74022,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(134)] = { - [sym_declaration] = STATE(6131), - [sym_type_definition] = STATE(6131), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6277), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_expression_statement] = STATE(6131), - [sym_expression] = STATE(6661), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10681), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_alias_declaration] = STATE(6131), - [sym__for_range_loop_body] = STATE(10657), - [sym_init_statement] = STATE(2572), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(129)] = { + [sym_declaration] = STATE(134), + [sym_type_definition] = STATE(134), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6421), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(134), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(134), + [sym_labeled_statement] = STATE(134), + [sym_expression_statement] = STATE(134), + [sym_if_statement] = STATE(134), + [sym_switch_statement] = STATE(134), + [sym_while_statement] = STATE(134), + [sym_do_statement] = STATE(134), + [sym_for_statement] = STATE(134), + [sym_return_statement] = STATE(134), + [sym_break_statement] = STATE(134), + [sym_continue_statement] = STATE(134), + [sym_goto_statement] = STATE(134), + [sym_seh_try_statement] = STATE(134), + [sym_seh_leave_statement] = STATE(134), + [sym_expression] = STATE(6807), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11035), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(134), + [sym_co_return_statement] = STATE(134), + [sym_co_yield_statement] = STATE(134), + [sym_throw_statement] = STATE(134), + [sym_try_statement] = STATE(134), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(134), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(214), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(134), + [ts_builtin_sym_end] = ACTIONS(1676), + [sym_identifier] = ACTIONS(1945), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1674), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1674), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1674), + [sym_preproc_directive] = ACTIONS(1674), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym___extension__] = ACTIONS(1850), - [anon_sym_typedef] = ACTIONS(1852), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP_AMP] = ACTIONS(1676), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1947), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1854), + [anon_sym_using] = ACTIONS(1674), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(1674), + [anon_sym___cdecl] = ACTIONS(1674), + [anon_sym___clrcall] = ACTIONS(1674), + [anon_sym___stdcall] = ACTIONS(1674), + [anon_sym___fastcall] = ACTIONS(1674), + [anon_sym___thiscall] = ACTIONS(1674), + [anon_sym___vectorcall] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -71876,6 +74183,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_else] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1674), + [anon_sym_default] = ACTIONS(1674), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1324), + [anon_sym___leave] = ACTIONS(1326), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -71910,8 +74231,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_explicit] = ACTIONS(1674), + [anon_sym_export] = ACTIONS(1674), + [anon_sym_module] = ACTIONS(1674), + [anon_sym_import] = ACTIONS(1674), + [anon_sym_template] = ACTIONS(1949), + [anon_sym_operator] = ACTIONS(1674), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_namespace] = ACTIONS(1674), + [anon_sym_static_assert] = ACTIONS(1674), + [anon_sym_concept] = ACTIONS(1674), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -71924,105 +74257,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(135)] = { - [sym_declaration] = STATE(6131), - [sym_type_definition] = STATE(6131), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6277), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_expression_statement] = STATE(6131), - [sym_expression] = STATE(6661), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10681), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_alias_declaration] = STATE(6131), - [sym__for_range_loop_body] = STATE(10496), - [sym_init_statement] = STATE(2572), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2025), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(130)] = { + [sym_declaration] = STATE(126), + [sym_type_definition] = STATE(126), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6421), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(126), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(126), + [sym_labeled_statement] = STATE(126), + [sym_expression_statement] = STATE(126), + [sym_if_statement] = STATE(126), + [sym_switch_statement] = STATE(126), + [sym_while_statement] = STATE(126), + [sym_do_statement] = STATE(126), + [sym_for_statement] = STATE(126), + [sym_return_statement] = STATE(126), + [sym_break_statement] = STATE(126), + [sym_continue_statement] = STATE(126), + [sym_goto_statement] = STATE(126), + [sym_seh_try_statement] = STATE(126), + [sym_seh_leave_statement] = STATE(126), + [sym_expression] = STATE(6807), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11035), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(126), + [sym_co_return_statement] = STATE(126), + [sym_co_yield_statement] = STATE(126), + [sym_throw_statement] = STATE(126), + [sym_try_statement] = STATE(126), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(126), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(214), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(126), + [ts_builtin_sym_end] = ACTIONS(1684), + [sym_identifier] = ACTIONS(1945), + [aux_sym_preproc_include_token1] = ACTIONS(1682), + [aux_sym_preproc_def_token1] = ACTIONS(1682), + [aux_sym_preproc_if_token1] = ACTIONS(1682), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1682), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1682), + [sym_preproc_directive] = ACTIONS(1682), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym___extension__] = ACTIONS(1850), - [anon_sym_typedef] = ACTIONS(1852), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1947), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1854), + [anon_sym_using] = ACTIONS(1682), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(1682), + [anon_sym___cdecl] = ACTIONS(1682), + [anon_sym___clrcall] = ACTIONS(1682), + [anon_sym___stdcall] = ACTIONS(1682), + [anon_sym___fastcall] = ACTIONS(1682), + [anon_sym___thiscall] = ACTIONS(1682), + [anon_sym___vectorcall] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -72050,6 +74418,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1682), + [anon_sym_default] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1324), + [anon_sym___leave] = ACTIONS(1326), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -72084,8 +74466,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_explicit] = ACTIONS(1682), + [anon_sym_export] = ACTIONS(1682), + [anon_sym_module] = ACTIONS(1682), + [anon_sym_import] = ACTIONS(1682), + [anon_sym_template] = ACTIONS(1949), + [anon_sym_operator] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_namespace] = ACTIONS(1682), + [anon_sym_static_assert] = ACTIONS(1682), + [anon_sym_concept] = ACTIONS(1682), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -72098,278 +74492,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(136)] = { - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(7449), - [sym__declarator] = STATE(8939), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8469), - [sym_array_declarator] = STATE(8469), - [sym_compound_statement] = STATE(10588), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4607), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10588), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(11305), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5293), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(11307), - [sym__unary_right_fold] = STATE(11319), - [sym__binary_fold] = STATE(11322), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7791), - [sym_qualified_identifier] = STATE(5294), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11136), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(1860), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1872), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(1880), - [anon_sym___clrcall] = ACTIONS(1880), - [anon_sym___stdcall] = ACTIONS(1880), - [anon_sym___fastcall] = ACTIONS(1880), - [anon_sym___thiscall] = ACTIONS(1880), - [anon_sym___vectorcall] = ACTIONS(1880), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(137)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_compound_statement] = STATE(9939), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(9742), - [sym_expression] = STATE(6567), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9939), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_explicit_object_parameter_declaration] = STATE(9742), - [sym_optional_parameter_declaration] = STATE(9742), - [sym_variadic_parameter_declaration] = STATE(9742), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7803), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2366), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), - [anon_sym_RPAREN] = ACTIONS(1948), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(131)] = { + [sym_declaration] = STATE(133), + [sym_type_definition] = STATE(133), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6398), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(133), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(133), + [sym_labeled_statement] = STATE(133), + [sym_expression_statement] = STATE(133), + [sym_if_statement] = STATE(133), + [sym_switch_statement] = STATE(133), + [sym_while_statement] = STATE(133), + [sym_do_statement] = STATE(133), + [sym_for_statement] = STATE(133), + [sym_return_statement] = STATE(133), + [sym_break_statement] = STATE(133), + [sym_continue_statement] = STATE(133), + [sym_goto_statement] = STATE(133), + [sym_seh_try_statement] = STATE(133), + [sym_seh_leave_statement] = STATE(133), + [sym_expression] = STATE(6804), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11583), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(133), + [sym_co_return_statement] = STATE(133), + [sym_co_yield_statement] = STATE(133), + [sym_throw_statement] = STATE(133), + [sym_try_statement] = STATE(133), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(133), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(215), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(133), + [sym_identifier] = ACTIONS(1939), + [aux_sym_preproc_include_token1] = ACTIONS(1682), + [aux_sym_preproc_def_token1] = ACTIONS(1682), + [aux_sym_preproc_if_token1] = ACTIONS(1682), + [aux_sym_preproc_if_token2] = ACTIONS(1682), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1682), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1682), + [sym_preproc_directive] = ACTIONS(1682), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(1723), - [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(1941), + [anon_sym_typedef] = ACTIONS(1107), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(1682), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(1952), + [anon_sym___based] = ACTIONS(1682), + [anon_sym___cdecl] = ACTIONS(1682), + [anon_sym___clrcall] = ACTIONS(1682), + [anon_sym___stdcall] = ACTIONS(1682), + [anon_sym___fastcall] = ACTIONS(1682), + [anon_sym___thiscall] = ACTIONS(1682), + [anon_sym___vectorcall] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1113), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -72393,10 +74649,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_case] = ACTIONS(1682), + [anon_sym_default] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1141), + [anon_sym___leave] = ACTIONS(1143), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -72409,7 +74679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1962), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -72431,8 +74701,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_explicit] = ACTIONS(1682), + [anon_sym_export] = ACTIONS(1682), + [anon_sym_module] = ACTIONS(1682), + [anon_sym_import] = ACTIONS(1682), + [anon_sym_template] = ACTIONS(1943), + [anon_sym_operator] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1151), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1153), + [anon_sym_namespace] = ACTIONS(1682), + [anon_sym_static_assert] = ACTIONS(1682), + [anon_sym_concept] = ACTIONS(1682), + [anon_sym_co_return] = ACTIONS(1161), + [anon_sym_co_yield] = ACTIONS(1163), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -72443,449 +74725,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(1964), - }, - [STATE(138)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(9706), - [sym_expression] = STATE(5172), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10294), - [sym_dependent_type] = STATE(4714), - [sym_optional_parameter_declaration] = STATE(9706), - [sym_variadic_parameter_declaration] = STATE(9706), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym__unary_left_fold] = STATE(11307), - [sym__unary_right_fold] = STATE(11319), - [sym__binary_fold] = STATE(11322), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7811), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(1954), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(5895), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1966), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_RPAREN] = ACTIONS(1968), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1978), - [anon_sym_virtual] = ACTIONS(1950), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1982), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(1994), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2022), - [sym_this] = ACTIONS(2004), - }, - [STATE(139)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(9706), - [sym_expression] = STATE(5277), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10294), - [sym_dependent_type] = STATE(4714), - [sym_optional_parameter_declaration] = STATE(9706), - [sym_variadic_parameter_declaration] = STATE(9706), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym__unary_left_fold] = STATE(10841), - [sym__unary_right_fold] = STATE(10845), - [sym__binary_fold] = STATE(10846), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7811), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(1954), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(5895), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1966), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_RPAREN] = ACTIONS(1968), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1978), - [anon_sym_virtual] = ACTIONS(1950), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1982), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(1994), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2022), - [sym_this] = ACTIONS(2004), + [sym_this] = ACTIONS(237), }, - [STATE(140)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(9706), - [sym_expression] = STATE(5250), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10294), - [sym_dependent_type] = STATE(4714), - [sym_optional_parameter_declaration] = STATE(9706), - [sym_variadic_parameter_declaration] = STATE(9706), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym__unary_left_fold] = STATE(10597), - [sym__unary_right_fold] = STATE(10627), - [sym__binary_fold] = STATE(10638), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7811), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(1954), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(5895), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1966), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_RPAREN] = ACTIONS(1968), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1978), - [anon_sym_virtual] = ACTIONS(1950), + [STATE(132)] = { + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6398), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(127), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(127), + [sym_labeled_statement] = STATE(127), + [sym_expression_statement] = STATE(127), + [sym_if_statement] = STATE(127), + [sym_switch_statement] = STATE(127), + [sym_while_statement] = STATE(127), + [sym_do_statement] = STATE(127), + [sym_for_statement] = STATE(127), + [sym_return_statement] = STATE(127), + [sym_break_statement] = STATE(127), + [sym_continue_statement] = STATE(127), + [sym_goto_statement] = STATE(127), + [sym_seh_try_statement] = STATE(127), + [sym_seh_leave_statement] = STATE(127), + [sym_expression] = STATE(6804), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11583), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(127), + [sym_co_return_statement] = STATE(127), + [sym_co_yield_statement] = STATE(127), + [sym_throw_statement] = STATE(127), + [sym_try_statement] = STATE(127), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(127), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(215), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(127), + [sym_identifier] = ACTIONS(1939), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token2] = ACTIONS(1674), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1674), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1674), + [sym_preproc_directive] = ACTIONS(1674), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP_AMP] = ACTIONS(1676), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(1941), + [anon_sym_typedef] = ACTIONS(1107), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1674), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(1674), + [anon_sym___cdecl] = ACTIONS(1674), + [anon_sym___clrcall] = ACTIONS(1674), + [anon_sym___stdcall] = ACTIONS(1674), + [anon_sym___fastcall] = ACTIONS(1674), + [anon_sym___thiscall] = ACTIONS(1674), + [anon_sym___vectorcall] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1113), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -72908,328 +74883,454 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1982), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(1994), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_else] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_case] = ACTIONS(1674), + [anon_sym_default] = ACTIONS(1674), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1141), + [anon_sym___leave] = ACTIONS(1143), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2022), - [sym_this] = ACTIONS(2004), + [anon_sym_explicit] = ACTIONS(1674), + [anon_sym_export] = ACTIONS(1674), + [anon_sym_module] = ACTIONS(1674), + [anon_sym_import] = ACTIONS(1674), + [anon_sym_template] = ACTIONS(1943), + [anon_sym_operator] = ACTIONS(1674), + [anon_sym_try] = ACTIONS(1151), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1153), + [anon_sym_namespace] = ACTIONS(1674), + [anon_sym_static_assert] = ACTIONS(1674), + [anon_sym_concept] = ACTIONS(1674), + [anon_sym_co_return] = ACTIONS(1161), + [anon_sym_co_yield] = ACTIONS(1163), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(141)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(9706), - [sym_expression] = STATE(5201), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10294), - [sym_dependent_type] = STATE(4714), - [sym_optional_parameter_declaration] = STATE(9706), - [sym_variadic_parameter_declaration] = STATE(9706), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym__unary_left_fold] = STATE(10962), - [sym__unary_right_fold] = STATE(11139), - [sym__binary_fold] = STATE(11401), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7811), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(1954), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(5895), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1966), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_RPAREN] = ACTIONS(1968), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1978), - [anon_sym_virtual] = ACTIONS(1950), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1982), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(1994), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2022), - [sym_this] = ACTIONS(2004), + [STATE(133)] = { + [sym_declaration] = STATE(133), + [sym_type_definition] = STATE(133), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6398), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(133), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(133), + [sym_labeled_statement] = STATE(133), + [sym_expression_statement] = STATE(133), + [sym_if_statement] = STATE(133), + [sym_switch_statement] = STATE(133), + [sym_while_statement] = STATE(133), + [sym_do_statement] = STATE(133), + [sym_for_statement] = STATE(133), + [sym_return_statement] = STATE(133), + [sym_break_statement] = STATE(133), + [sym_continue_statement] = STATE(133), + [sym_goto_statement] = STATE(133), + [sym_seh_try_statement] = STATE(133), + [sym_seh_leave_statement] = STATE(133), + [sym_expression] = STATE(6804), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11583), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(133), + [sym_co_return_statement] = STATE(133), + [sym_co_yield_statement] = STATE(133), + [sym_throw_statement] = STATE(133), + [sym_try_statement] = STATE(133), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(133), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(215), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(133), + [sym_identifier] = ACTIONS(1951), + [aux_sym_preproc_include_token1] = ACTIONS(1689), + [aux_sym_preproc_def_token1] = ACTIONS(1689), + [aux_sym_preproc_if_token1] = ACTIONS(1689), + [aux_sym_preproc_if_token2] = ACTIONS(1689), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1689), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1689), + [sym_preproc_directive] = ACTIONS(1689), + [anon_sym_LPAREN2] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_TILDE] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_STAR] = ACTIONS(1700), + [anon_sym_AMP_AMP] = ACTIONS(1703), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1954), + [anon_sym___extension__] = ACTIONS(1957), + [anon_sym_typedef] = ACTIONS(1960), + [anon_sym_virtual] = ACTIONS(1717), + [anon_sym_extern] = ACTIONS(1720), + [anon_sym___attribute__] = ACTIONS(1723), + [anon_sym___attribute] = ACTIONS(1723), + [anon_sym_using] = ACTIONS(1689), + [anon_sym_COLON_COLON] = ACTIONS(1726), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1732), + [anon_sym___based] = ACTIONS(1689), + [anon_sym___cdecl] = ACTIONS(1689), + [anon_sym___clrcall] = ACTIONS(1689), + [anon_sym___stdcall] = ACTIONS(1689), + [anon_sym___fastcall] = ACTIONS(1689), + [anon_sym___thiscall] = ACTIONS(1689), + [anon_sym___vectorcall] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1963), + [anon_sym_signed] = ACTIONS(1738), + [anon_sym_unsigned] = ACTIONS(1738), + [anon_sym_long] = ACTIONS(1738), + [anon_sym_short] = ACTIONS(1738), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_static] = ACTIONS(1720), + [anon_sym_register] = ACTIONS(1720), + [anon_sym_inline] = ACTIONS(1720), + [anon_sym___inline] = ACTIONS(1720), + [anon_sym___inline__] = ACTIONS(1720), + [anon_sym___forceinline] = ACTIONS(1720), + [anon_sym_thread_local] = ACTIONS(1720), + [anon_sym___thread] = ACTIONS(1720), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_constexpr] = ACTIONS(1744), + [anon_sym_volatile] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1744), + [anon_sym___restrict__] = ACTIONS(1744), + [anon_sym__Atomic] = ACTIONS(1744), + [anon_sym__Noreturn] = ACTIONS(1744), + [anon_sym_noreturn] = ACTIONS(1744), + [anon_sym__Nonnull] = ACTIONS(1744), + [anon_sym_mutable] = ACTIONS(1744), + [anon_sym_constinit] = ACTIONS(1744), + [anon_sym_consteval] = ACTIONS(1744), + [anon_sym_alignas] = ACTIONS(1747), + [anon_sym__Alignas] = ACTIONS(1747), + [sym_primitive_type] = ACTIONS(1750), + [anon_sym_enum] = ACTIONS(1753), + [anon_sym_class] = ACTIONS(1756), + [anon_sym_struct] = ACTIONS(1759), + [anon_sym_union] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1966), + [anon_sym_else] = ACTIONS(1689), + [anon_sym_switch] = ACTIONS(1969), + [anon_sym_case] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1975), + [anon_sym_for] = ACTIONS(1978), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1984), + [anon_sym_continue] = ACTIONS(1987), + [anon_sym_goto] = ACTIONS(1990), + [anon_sym___try] = ACTIONS(1993), + [anon_sym___leave] = ACTIONS(1996), + [anon_sym_not] = ACTIONS(1697), + [anon_sym_compl] = ACTIONS(1697), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1801), + [anon_sym___alignof__] = ACTIONS(1804), + [anon_sym___alignof] = ACTIONS(1804), + [anon_sym__alignof] = ACTIONS(1804), + [anon_sym_alignof] = ACTIONS(1804), + [anon_sym__Alignof] = ACTIONS(1804), + [anon_sym_offsetof] = ACTIONS(1807), + [anon_sym__Generic] = ACTIONS(1810), + [anon_sym_typename] = ACTIONS(1813), + [anon_sym_asm] = ACTIONS(1816), + [anon_sym___asm__] = ACTIONS(1816), + [anon_sym___asm] = ACTIONS(1816), + [sym_number_literal] = ACTIONS(1819), + [anon_sym_L_SQUOTE] = ACTIONS(1822), + [anon_sym_u_SQUOTE] = ACTIONS(1822), + [anon_sym_U_SQUOTE] = ACTIONS(1822), + [anon_sym_u8_SQUOTE] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1822), + [anon_sym_L_DQUOTE] = ACTIONS(1825), + [anon_sym_u_DQUOTE] = ACTIONS(1825), + [anon_sym_U_DQUOTE] = ACTIONS(1825), + [anon_sym_u8_DQUOTE] = ACTIONS(1825), + [anon_sym_DQUOTE] = ACTIONS(1825), + [sym_true] = ACTIONS(1828), + [sym_false] = ACTIONS(1828), + [anon_sym_NULL] = ACTIONS(1831), + [anon_sym_nullptr] = ACTIONS(1831), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1834), + [anon_sym_decltype] = ACTIONS(1837), + [anon_sym_explicit] = ACTIONS(1689), + [anon_sym_export] = ACTIONS(1689), + [anon_sym_module] = ACTIONS(1689), + [anon_sym_import] = ACTIONS(1689), + [anon_sym_template] = ACTIONS(1999), + [anon_sym_operator] = ACTIONS(1689), + [anon_sym_try] = ACTIONS(2002), + [anon_sym_delete] = ACTIONS(1846), + [anon_sym_throw] = ACTIONS(2005), + [anon_sym_namespace] = ACTIONS(1689), + [anon_sym_static_assert] = ACTIONS(1689), + [anon_sym_concept] = ACTIONS(1689), + [anon_sym_co_return] = ACTIONS(2008), + [anon_sym_co_yield] = ACTIONS(2011), + [anon_sym_R_DQUOTE] = ACTIONS(1858), + [anon_sym_LR_DQUOTE] = ACTIONS(1858), + [anon_sym_uR_DQUOTE] = ACTIONS(1858), + [anon_sym_UR_DQUOTE] = ACTIONS(1858), + [anon_sym_u8R_DQUOTE] = ACTIONS(1858), + [anon_sym_co_await] = ACTIONS(1861), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_requires] = ACTIONS(1867), + [anon_sym_CARET_CARET] = ACTIONS(1870), + [anon_sym_LBRACK_COLON] = ACTIONS(1873), + [sym_this] = ACTIONS(1828), }, - [STATE(142)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(9706), - [sym_expression] = STATE(5269), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10294), - [sym_dependent_type] = STATE(4714), - [sym_optional_parameter_declaration] = STATE(9706), - [sym_variadic_parameter_declaration] = STATE(9706), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym__unary_left_fold] = STATE(10646), - [sym__unary_right_fold] = STATE(10648), - [sym__binary_fold] = STATE(10649), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7811), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(1954), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(5895), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1966), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_RPAREN] = ACTIONS(1968), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1978), - [anon_sym_virtual] = ACTIONS(1950), + [STATE(134)] = { + [sym_declaration] = STATE(126), + [sym_type_definition] = STATE(126), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6421), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(126), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(126), + [sym_labeled_statement] = STATE(126), + [sym_expression_statement] = STATE(126), + [sym_if_statement] = STATE(126), + [sym_switch_statement] = STATE(126), + [sym_while_statement] = STATE(126), + [sym_do_statement] = STATE(126), + [sym_for_statement] = STATE(126), + [sym_return_statement] = STATE(126), + [sym_break_statement] = STATE(126), + [sym_continue_statement] = STATE(126), + [sym_goto_statement] = STATE(126), + [sym_seh_try_statement] = STATE(126), + [sym_seh_leave_statement] = STATE(126), + [sym_expression] = STATE(6807), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11035), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(126), + [sym_co_return_statement] = STATE(126), + [sym_co_yield_statement] = STATE(126), + [sym_throw_statement] = STATE(126), + [sym_try_statement] = STATE(126), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(126), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(214), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(126), + [ts_builtin_sym_end] = ACTIONS(1660), + [sym_identifier] = ACTIONS(1945), + [aux_sym_preproc_include_token1] = ACTIONS(1654), + [aux_sym_preproc_def_token1] = ACTIONS(1654), + [aux_sym_preproc_if_token1] = ACTIONS(1654), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1654), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1654), + [sym_preproc_directive] = ACTIONS(1654), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP_AMP] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1947), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1654), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(1654), + [anon_sym___cdecl] = ACTIONS(1654), + [anon_sym___clrcall] = ACTIONS(1654), + [anon_sym___stdcall] = ACTIONS(1654), + [anon_sym___fastcall] = ACTIONS(1654), + [anon_sym___thiscall] = ACTIONS(1654), + [anon_sym___vectorcall] = ACTIONS(1654), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -73252,156 +75353,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1982), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(1994), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_else] = ACTIONS(1654), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1654), + [anon_sym_default] = ACTIONS(1654), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1324), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2022), - [sym_this] = ACTIONS(2004), + [anon_sym_explicit] = ACTIONS(1654), + [anon_sym_export] = ACTIONS(1654), + [anon_sym_module] = ACTIONS(1654), + [anon_sym_import] = ACTIONS(1654), + [anon_sym_template] = ACTIONS(1949), + [anon_sym_operator] = ACTIONS(1654), + [anon_sym_try] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_namespace] = ACTIONS(1654), + [anon_sym_static_assert] = ACTIONS(1654), + [anon_sym_concept] = ACTIONS(1654), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(143)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(9706), - [sym_expression] = STATE(5352), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10294), - [sym_dependent_type] = STATE(4714), - [sym_optional_parameter_declaration] = STATE(9706), - [sym_variadic_parameter_declaration] = STATE(9706), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym__unary_left_fold] = STATE(10925), - [sym__unary_right_fold] = STATE(10775), - [sym__binary_fold] = STATE(10807), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7811), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(1954), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(5895), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1966), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_RPAREN] = ACTIONS(1968), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1978), - [anon_sym_virtual] = ACTIONS(1950), + [STATE(135)] = { + [sym_declaration] = STATE(131), + [sym_type_definition] = STATE(131), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6398), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(131), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(131), + [sym_labeled_statement] = STATE(131), + [sym_expression_statement] = STATE(131), + [sym_if_statement] = STATE(131), + [sym_switch_statement] = STATE(131), + [sym_while_statement] = STATE(131), + [sym_do_statement] = STATE(131), + [sym_for_statement] = STATE(131), + [sym_return_statement] = STATE(131), + [sym_break_statement] = STATE(131), + [sym_continue_statement] = STATE(131), + [sym_goto_statement] = STATE(131), + [sym_seh_try_statement] = STATE(131), + [sym_seh_leave_statement] = STATE(131), + [sym_expression] = STATE(6804), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11583), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(131), + [sym_co_return_statement] = STATE(131), + [sym_co_yield_statement] = STATE(131), + [sym_throw_statement] = STATE(131), + [sym_try_statement] = STATE(131), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(131), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(215), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(131), + [sym_identifier] = ACTIONS(1939), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token2] = ACTIONS(1678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1678), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1678), + [sym_preproc_directive] = ACTIONS(1678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP_AMP] = ACTIONS(1680), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(1941), + [anon_sym_typedef] = ACTIONS(1107), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1678), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(1678), + [anon_sym___cdecl] = ACTIONS(1678), + [anon_sym___clrcall] = ACTIONS(1678), + [anon_sym___stdcall] = ACTIONS(1678), + [anon_sym___fastcall] = ACTIONS(1678), + [anon_sym___thiscall] = ACTIONS(1678), + [anon_sym___vectorcall] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1113), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -73424,156 +75588,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1982), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(1994), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_else] = ACTIONS(1678), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_case] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1141), + [anon_sym___leave] = ACTIONS(1143), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2022), - [sym_this] = ACTIONS(2004), + [anon_sym_explicit] = ACTIONS(1678), + [anon_sym_export] = ACTIONS(1678), + [anon_sym_module] = ACTIONS(1678), + [anon_sym_import] = ACTIONS(1678), + [anon_sym_template] = ACTIONS(1943), + [anon_sym_operator] = ACTIONS(1678), + [anon_sym_try] = ACTIONS(1151), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1153), + [anon_sym_namespace] = ACTIONS(1678), + [anon_sym_static_assert] = ACTIONS(1678), + [anon_sym_concept] = ACTIONS(1678), + [anon_sym_co_return] = ACTIONS(1161), + [anon_sym_co_yield] = ACTIONS(1163), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(144)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(9706), - [sym_expression] = STATE(5236), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10294), - [sym_dependent_type] = STATE(4714), - [sym_optional_parameter_declaration] = STATE(9706), - [sym_variadic_parameter_declaration] = STATE(9706), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym__unary_left_fold] = STATE(10538), - [sym__unary_right_fold] = STATE(10540), - [sym__binary_fold] = STATE(10544), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7811), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(1954), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(5895), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1966), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_RPAREN] = ACTIONS(1968), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1978), - [anon_sym_virtual] = ACTIONS(1950), + [STATE(136)] = { + [sym_declaration] = STATE(138), + [sym_type_definition] = STATE(138), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6380), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(138), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(138), + [sym_labeled_statement] = STATE(138), + [sym_expression_statement] = STATE(138), + [sym_if_statement] = STATE(138), + [sym_switch_statement] = STATE(138), + [sym_while_statement] = STATE(138), + [sym_do_statement] = STATE(138), + [sym_for_statement] = STATE(138), + [sym_return_statement] = STATE(138), + [sym_break_statement] = STATE(138), + [sym_continue_statement] = STATE(138), + [sym_goto_statement] = STATE(138), + [sym_seh_try_statement] = STATE(138), + [sym_seh_leave_statement] = STATE(138), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(138), + [sym_co_return_statement] = STATE(138), + [sym_co_yield_statement] = STATE(138), + [sym_throw_statement] = STATE(138), + [sym_try_statement] = STATE(138), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(138), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(138), + [sym_identifier] = ACTIONS(2014), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1678), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1678), + [sym_preproc_directive] = ACTIONS(1678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP_AMP] = ACTIONS(1680), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2016), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1678), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(1678), + [anon_sym___cdecl] = ACTIONS(1678), + [anon_sym___clrcall] = ACTIONS(1678), + [anon_sym___stdcall] = ACTIONS(1678), + [anon_sym___fastcall] = ACTIONS(1678), + [anon_sym___thiscall] = ACTIONS(1678), + [anon_sym___vectorcall] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1680), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -73596,156 +75823,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1982), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(1994), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_else] = ACTIONS(1678), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2022), - [sym_this] = ACTIONS(2004), + [anon_sym_explicit] = ACTIONS(1678), + [anon_sym_export] = ACTIONS(1678), + [anon_sym_import] = ACTIONS(1678), + [anon_sym_template] = ACTIONS(2018), + [anon_sym_operator] = ACTIONS(1678), + [anon_sym_try] = ACTIONS(245), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(1678), + [anon_sym_static_assert] = ACTIONS(1678), + [anon_sym_concept] = ACTIONS(1678), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(145)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(9706), - [sym_expression] = STATE(5286), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10294), - [sym_dependent_type] = STATE(4714), - [sym_optional_parameter_declaration] = STATE(9706), - [sym_variadic_parameter_declaration] = STATE(9706), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym__unary_left_fold] = STATE(10607), - [sym__unary_right_fold] = STATE(10613), - [sym__binary_fold] = STATE(10617), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7811), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(1954), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(5895), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1966), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_RPAREN] = ACTIONS(1968), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1978), - [anon_sym_virtual] = ACTIONS(1950), + [STATE(137)] = { + [sym_declaration] = STATE(139), + [sym_type_definition] = STATE(139), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6380), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(139), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(139), + [sym_labeled_statement] = STATE(139), + [sym_expression_statement] = STATE(139), + [sym_if_statement] = STATE(139), + [sym_switch_statement] = STATE(139), + [sym_while_statement] = STATE(139), + [sym_do_statement] = STATE(139), + [sym_for_statement] = STATE(139), + [sym_return_statement] = STATE(139), + [sym_break_statement] = STATE(139), + [sym_continue_statement] = STATE(139), + [sym_goto_statement] = STATE(139), + [sym_seh_try_statement] = STATE(139), + [sym_seh_leave_statement] = STATE(139), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(139), + [sym_co_return_statement] = STATE(139), + [sym_co_yield_statement] = STATE(139), + [sym_throw_statement] = STATE(139), + [sym_try_statement] = STATE(139), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(139), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(2014), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1674), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1674), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1674), + [sym_preproc_directive] = ACTIONS(1674), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP_AMP] = ACTIONS(1676), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2016), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(1674), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(1674), + [anon_sym___cdecl] = ACTIONS(1674), + [anon_sym___clrcall] = ACTIONS(1674), + [anon_sym___stdcall] = ACTIONS(1674), + [anon_sym___fastcall] = ACTIONS(1674), + [anon_sym___thiscall] = ACTIONS(1674), + [anon_sym___vectorcall] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1676), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -73768,150 +76057,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1982), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(1994), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_else] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(1674), + [anon_sym_default] = ACTIONS(1674), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2022), - [sym_this] = ACTIONS(2004), + [anon_sym_explicit] = ACTIONS(1674), + [anon_sym_export] = ACTIONS(1674), + [anon_sym_import] = ACTIONS(1674), + [anon_sym_template] = ACTIONS(2018), + [anon_sym_operator] = ACTIONS(1674), + [anon_sym_try] = ACTIONS(245), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(1674), + [anon_sym_static_assert] = ACTIONS(1674), + [anon_sym_concept] = ACTIONS(1674), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), }, - [STATE(146)] = { - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(7393), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_expression] = STATE(6701), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10747), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4477), - [sym_template_function] = STATE(5900), - [sym_condition_declaration] = STATE(10747), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7866), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(4449), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(2045), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4517), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(138)] = { + [sym_declaration] = STATE(140), + [sym_type_definition] = STATE(140), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6380), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(140), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(140), + [sym_labeled_statement] = STATE(140), + [sym_expression_statement] = STATE(140), + [sym_if_statement] = STATE(140), + [sym_switch_statement] = STATE(140), + [sym_while_statement] = STATE(140), + [sym_do_statement] = STATE(140), + [sym_for_statement] = STATE(140), + [sym_return_statement] = STATE(140), + [sym_break_statement] = STATE(140), + [sym_continue_statement] = STATE(140), + [sym_goto_statement] = STATE(140), + [sym_seh_try_statement] = STATE(140), + [sym_seh_leave_statement] = STATE(140), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(140), + [sym_co_return_statement] = STATE(140), + [sym_co_yield_statement] = STATE(140), + [sym_throw_statement] = STATE(140), + [sym_try_statement] = STATE(140), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(140), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(2014), + [aux_sym_preproc_include_token1] = ACTIONS(1682), + [aux_sym_preproc_def_token1] = ACTIONS(1682), + [aux_sym_preproc_if_token1] = ACTIONS(1682), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1682), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1682), + [sym_preproc_directive] = ACTIONS(1682), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(1723), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2016), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(1682), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(1682), + [anon_sym___cdecl] = ACTIONS(1682), + [anon_sym___clrcall] = ACTIONS(1682), + [anon_sym___stdcall] = ACTIONS(1682), + [anon_sym___fastcall] = ACTIONS(1682), + [anon_sym___thiscall] = ACTIONS(1682), + [anon_sym___vectorcall] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1684), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -73939,6 +76296,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(1682), + [anon_sym_default] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -73973,8 +76344,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_explicit] = ACTIONS(1682), + [anon_sym_export] = ACTIONS(1682), + [anon_sym_import] = ACTIONS(1682), + [anon_sym_template] = ACTIONS(2018), + [anon_sym_operator] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(1682), + [anon_sym_static_assert] = ACTIONS(1682), + [anon_sym_concept] = ACTIONS(1682), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -73987,412 +76369,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(147)] = { - [sym_expression] = STATE(3678), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_initializer_list] = STATE(3758), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2024), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_COMMA] = ACTIONS(2026), - [aux_sym_preproc_if_token2] = ACTIONS(2026), - [aux_sym_preproc_else_token1] = ACTIONS(2026), - [aux_sym_preproc_elif_token1] = ACTIONS(2024), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2026), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(2028), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2024), - [anon_sym_PLUS] = ACTIONS(2024), - [anon_sym_STAR] = ACTIONS(2024), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - [anon_sym_EQ_EQ] = ACTIONS(2026), - [anon_sym_BANG_EQ] = ACTIONS(2026), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2026), - [anon_sym_LT_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2024), - [anon_sym_GT_GT] = ACTIONS(2024), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_EQ] = ACTIONS(2024), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_QMARK] = ACTIONS(2026), - [anon_sym_STAR_EQ] = ACTIONS(2026), - [anon_sym_SLASH_EQ] = ACTIONS(2026), - [anon_sym_PERCENT_EQ] = ACTIONS(2026), - [anon_sym_PLUS_EQ] = ACTIONS(2026), - [anon_sym_DASH_EQ] = ACTIONS(2026), - [anon_sym_LT_LT_EQ] = ACTIONS(2026), - [anon_sym_GT_GT_EQ] = ACTIONS(2026), - [anon_sym_AMP_EQ] = ACTIONS(2026), - [anon_sym_CARET_EQ] = ACTIONS(2026), - [anon_sym_PIPE_EQ] = ACTIONS(2026), - [anon_sym_and_eq] = ACTIONS(2024), - [anon_sym_or_eq] = ACTIONS(2024), - [anon_sym_xor_eq] = ACTIONS(2024), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_LT_EQ_GT] = ACTIONS(2026), - [anon_sym_or] = ACTIONS(2024), - [anon_sym_and] = ACTIONS(2024), - [anon_sym_bitor] = ACTIONS(2024), - [anon_sym_xor] = ACTIONS(2024), - [anon_sym_bitand] = ACTIONS(2024), - [anon_sym_not_eq] = ACTIONS(2024), - [anon_sym_DASH_DASH] = ACTIONS(2026), - [anon_sym_PLUS_PLUS] = ACTIONS(2026), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2026), - [anon_sym_DASH_GT] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(148)] = { - [sym_attribute_declaration] = STATE(148), - [sym_compound_statement] = STATE(652), - [sym_attributed_statement] = STATE(652), - [sym_statement] = STATE(672), - [sym_labeled_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_if_statement] = STATE(652), - [sym_switch_statement] = STATE(652), - [sym_case_statement] = STATE(652), - [sym_while_statement] = STATE(652), - [sym_do_statement] = STATE(652), - [sym_for_statement] = STATE(652), - [sym_return_statement] = STATE(652), - [sym_break_statement] = STATE(652), - [sym_continue_statement] = STATE(652), - [sym_goto_statement] = STATE(652), - [sym_seh_try_statement] = STATE(652), - [sym_seh_leave_statement] = STATE(652), - [sym_expression] = STATE(6696), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10652), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(652), - [sym_co_return_statement] = STATE(652), - [sym_co_yield_statement] = STATE(652), - [sym_throw_statement] = STATE(652), - [sym_try_statement] = STATE(652), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(652), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(148), - [sym_identifier] = ACTIONS(2080), - [anon_sym_LPAREN2] = ACTIONS(2083), - [anon_sym_BANG] = ACTIONS(2086), - [anon_sym_TILDE] = ACTIONS(2086), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2092), - [anon_sym_AMP] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2095), - [anon_sym___extension__] = ACTIONS(2098), - [anon_sym_using] = ACTIONS(2101), - [anon_sym_COLON_COLON] = ACTIONS(2103), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2112), - [sym_primitive_type] = ACTIONS(2115), - [anon_sym_if] = ACTIONS(2118), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_case] = ACTIONS(2124), - [anon_sym_default] = ACTIONS(2127), - [anon_sym_while] = ACTIONS(2130), - [anon_sym_do] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(2139), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_goto] = ACTIONS(2148), - [anon_sym___try] = ACTIONS(2151), - [anon_sym___leave] = ACTIONS(2154), - [anon_sym_not] = ACTIONS(2089), - [anon_sym_compl] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_sizeof] = ACTIONS(2160), - [anon_sym___alignof__] = ACTIONS(2163), - [anon_sym___alignof] = ACTIONS(2163), - [anon_sym__alignof] = ACTIONS(2163), - [anon_sym_alignof] = ACTIONS(2163), - [anon_sym__Alignof] = ACTIONS(2163), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2169), - [anon_sym_typename] = ACTIONS(2172), - [anon_sym_asm] = ACTIONS(2175), - [anon_sym___asm__] = ACTIONS(2175), - [anon_sym___asm] = ACTIONS(2175), - [sym_number_literal] = ACTIONS(2178), - [anon_sym_L_SQUOTE] = ACTIONS(2181), - [anon_sym_u_SQUOTE] = ACTIONS(2181), - [anon_sym_U_SQUOTE] = ACTIONS(2181), - [anon_sym_u8_SQUOTE] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_L_DQUOTE] = ACTIONS(2184), - [anon_sym_u_DQUOTE] = ACTIONS(2184), - [anon_sym_U_DQUOTE] = ACTIONS(2184), - [anon_sym_u8_DQUOTE] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [sym_true] = ACTIONS(2187), - [sym_false] = ACTIONS(2187), - [anon_sym_NULL] = ACTIONS(2190), - [anon_sym_nullptr] = ACTIONS(2190), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2193), - [anon_sym_template] = ACTIONS(2196), - [anon_sym_try] = ACTIONS(2199), - [anon_sym_delete] = ACTIONS(2202), - [anon_sym_throw] = ACTIONS(2205), - [anon_sym_co_return] = ACTIONS(2208), - [anon_sym_co_yield] = ACTIONS(2211), - [anon_sym_R_DQUOTE] = ACTIONS(2214), - [anon_sym_LR_DQUOTE] = ACTIONS(2214), - [anon_sym_uR_DQUOTE] = ACTIONS(2214), - [anon_sym_UR_DQUOTE] = ACTIONS(2214), - [anon_sym_u8R_DQUOTE] = ACTIONS(2214), - [anon_sym_co_await] = ACTIONS(2217), - [anon_sym_new] = ACTIONS(2220), - [anon_sym_requires] = ACTIONS(2223), - [anon_sym_CARET_CARET] = ACTIONS(2226), - [anon_sym_LBRACK_COLON] = ACTIONS(2229), - [sym_this] = ACTIONS(2187), - }, - [STATE(149)] = { - [sym_attribute_declaration] = STATE(154), - [sym_compound_statement] = STATE(550), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(666), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(154), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(139)] = { + [sym_declaration] = STATE(140), + [sym_type_definition] = STATE(140), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6380), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(140), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(140), + [sym_labeled_statement] = STATE(140), + [sym_expression_statement] = STATE(140), + [sym_if_statement] = STATE(140), + [sym_switch_statement] = STATE(140), + [sym_while_statement] = STATE(140), + [sym_do_statement] = STATE(140), + [sym_for_statement] = STATE(140), + [sym_return_statement] = STATE(140), + [sym_break_statement] = STATE(140), + [sym_continue_statement] = STATE(140), + [sym_goto_statement] = STATE(140), + [sym_seh_try_statement] = STATE(140), + [sym_seh_leave_statement] = STATE(140), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(140), + [sym_co_return_statement] = STATE(140), + [sym_co_yield_statement] = STATE(140), + [sym_throw_statement] = STATE(140), + [sym_try_statement] = STATE(140), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(140), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(2014), + [aux_sym_preproc_include_token1] = ACTIONS(1654), + [aux_sym_preproc_def_token1] = ACTIONS(1654), + [aux_sym_preproc_if_token1] = ACTIONS(1654), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1654), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1654), + [sym_preproc_directive] = ACTIONS(1654), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP_AMP] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1662), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_using] = ACTIONS(2236), + [anon_sym___extension__] = ACTIONS(2016), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(1654), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(1654), + [anon_sym___cdecl] = ACTIONS(1654), + [anon_sym___clrcall] = ACTIONS(1654), + [anon_sym___stdcall] = ACTIONS(1654), + [anon_sym___fastcall] = ACTIONS(1654), + [anon_sym___thiscall] = ACTIONS(1654), + [anon_sym___vectorcall] = ACTIONS(1654), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1660), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), [anon_sym_if] = ACTIONS(207), + [anon_sym_else] = ACTIONS(1654), [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), + [anon_sym_case] = ACTIONS(1654), + [anon_sym_default] = ACTIONS(1654), [anon_sym_while] = ACTIONS(215), [anon_sym_do] = ACTIONS(217), [anon_sym_for] = ACTIONS(219), @@ -74414,7 +76556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -74434,13 +76576,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(241), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(1654), + [anon_sym_export] = ACTIONS(1654), + [anon_sym_import] = ACTIONS(1654), + [anon_sym_template] = ACTIONS(2018), + [anon_sym_operator] = ACTIONS(1654), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(1654), + [anon_sym_static_assert] = ACTIONS(1654), + [anon_sym_concept] = ACTIONS(1654), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -74450,268 +76600,401 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(150)] = { - [sym_attribute_declaration] = STATE(150), - [sym_compound_statement] = STATE(360), - [sym_attributed_statement] = STATE(360), - [sym_statement] = STATE(372), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(150), - [sym_identifier] = ACTIONS(2244), - [anon_sym_LPAREN2] = ACTIONS(2083), - [anon_sym_BANG] = ACTIONS(2086), - [anon_sym_TILDE] = ACTIONS(2086), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2092), - [anon_sym_AMP] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2247), - [anon_sym___extension__] = ACTIONS(2098), - [anon_sym_using] = ACTIONS(2101), - [anon_sym_COLON_COLON] = ACTIONS(2103), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2112), - [sym_primitive_type] = ACTIONS(2115), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_switch] = ACTIONS(2256), - [anon_sym_case] = ACTIONS(2259), - [anon_sym_default] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2265), - [anon_sym_do] = ACTIONS(2268), - [anon_sym_for] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2274), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2280), - [anon_sym_goto] = ACTIONS(2283), - [anon_sym___try] = ACTIONS(2286), - [anon_sym___leave] = ACTIONS(2289), - [anon_sym_not] = ACTIONS(2089), - [anon_sym_compl] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_sizeof] = ACTIONS(2160), - [anon_sym___alignof__] = ACTIONS(2163), - [anon_sym___alignof] = ACTIONS(2163), - [anon_sym__alignof] = ACTIONS(2163), - [anon_sym_alignof] = ACTIONS(2163), - [anon_sym__Alignof] = ACTIONS(2163), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2169), - [anon_sym_typename] = ACTIONS(2172), - [anon_sym_asm] = ACTIONS(2175), - [anon_sym___asm__] = ACTIONS(2175), - [anon_sym___asm] = ACTIONS(2175), - [sym_number_literal] = ACTIONS(2178), - [anon_sym_L_SQUOTE] = ACTIONS(2181), - [anon_sym_u_SQUOTE] = ACTIONS(2181), - [anon_sym_U_SQUOTE] = ACTIONS(2181), - [anon_sym_u8_SQUOTE] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_L_DQUOTE] = ACTIONS(2184), - [anon_sym_u_DQUOTE] = ACTIONS(2184), - [anon_sym_U_DQUOTE] = ACTIONS(2184), - [anon_sym_u8_DQUOTE] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [sym_true] = ACTIONS(2187), - [sym_false] = ACTIONS(2187), - [anon_sym_NULL] = ACTIONS(2190), - [anon_sym_nullptr] = ACTIONS(2190), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2193), - [anon_sym_template] = ACTIONS(2292), - [anon_sym_try] = ACTIONS(2295), - [anon_sym_delete] = ACTIONS(2202), - [anon_sym_throw] = ACTIONS(2298), - [anon_sym_co_return] = ACTIONS(2301), - [anon_sym_co_yield] = ACTIONS(2304), - [anon_sym_R_DQUOTE] = ACTIONS(2214), - [anon_sym_LR_DQUOTE] = ACTIONS(2214), - [anon_sym_uR_DQUOTE] = ACTIONS(2214), - [anon_sym_UR_DQUOTE] = ACTIONS(2214), - [anon_sym_u8R_DQUOTE] = ACTIONS(2214), - [anon_sym_co_await] = ACTIONS(2217), - [anon_sym_new] = ACTIONS(2220), - [anon_sym_requires] = ACTIONS(2223), - [anon_sym_CARET_CARET] = ACTIONS(2226), - [anon_sym_LBRACK_COLON] = ACTIONS(2229), - [sym_this] = ACTIONS(2187), + [STATE(140)] = { + [sym_declaration] = STATE(140), + [sym_type_definition] = STATE(140), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6380), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(140), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(140), + [sym_labeled_statement] = STATE(140), + [sym_expression_statement] = STATE(140), + [sym_if_statement] = STATE(140), + [sym_switch_statement] = STATE(140), + [sym_while_statement] = STATE(140), + [sym_do_statement] = STATE(140), + [sym_for_statement] = STATE(140), + [sym_return_statement] = STATE(140), + [sym_break_statement] = STATE(140), + [sym_continue_statement] = STATE(140), + [sym_goto_statement] = STATE(140), + [sym_seh_try_statement] = STATE(140), + [sym_seh_leave_statement] = STATE(140), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(140), + [sym_co_return_statement] = STATE(140), + [sym_co_yield_statement] = STATE(140), + [sym_throw_statement] = STATE(140), + [sym_try_statement] = STATE(140), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(140), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(2020), + [aux_sym_preproc_include_token1] = ACTIONS(1689), + [aux_sym_preproc_def_token1] = ACTIONS(1689), + [aux_sym_preproc_if_token1] = ACTIONS(1689), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1689), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1689), + [sym_preproc_directive] = ACTIONS(1689), + [anon_sym_LPAREN2] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_TILDE] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_STAR] = ACTIONS(1700), + [anon_sym_AMP_AMP] = ACTIONS(1703), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(2023), + [anon_sym___extension__] = ACTIONS(2026), + [anon_sym_typedef] = ACTIONS(2029), + [anon_sym_virtual] = ACTIONS(1717), + [anon_sym_extern] = ACTIONS(1720), + [anon_sym___attribute__] = ACTIONS(1723), + [anon_sym___attribute] = ACTIONS(1723), + [anon_sym_using] = ACTIONS(1689), + [anon_sym_COLON_COLON] = ACTIONS(1726), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1732), + [anon_sym___based] = ACTIONS(1689), + [anon_sym___cdecl] = ACTIONS(1689), + [anon_sym___clrcall] = ACTIONS(1689), + [anon_sym___stdcall] = ACTIONS(1689), + [anon_sym___fastcall] = ACTIONS(1689), + [anon_sym___thiscall] = ACTIONS(1689), + [anon_sym___vectorcall] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(2032), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_signed] = ACTIONS(1738), + [anon_sym_unsigned] = ACTIONS(1738), + [anon_sym_long] = ACTIONS(1738), + [anon_sym_short] = ACTIONS(1738), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_static] = ACTIONS(1720), + [anon_sym_register] = ACTIONS(1720), + [anon_sym_inline] = ACTIONS(1720), + [anon_sym___inline] = ACTIONS(1720), + [anon_sym___inline__] = ACTIONS(1720), + [anon_sym___forceinline] = ACTIONS(1720), + [anon_sym_thread_local] = ACTIONS(1720), + [anon_sym___thread] = ACTIONS(1720), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_constexpr] = ACTIONS(1744), + [anon_sym_volatile] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1744), + [anon_sym___restrict__] = ACTIONS(1744), + [anon_sym__Atomic] = ACTIONS(1744), + [anon_sym__Noreturn] = ACTIONS(1744), + [anon_sym_noreturn] = ACTIONS(1744), + [anon_sym__Nonnull] = ACTIONS(1744), + [anon_sym_mutable] = ACTIONS(1744), + [anon_sym_constinit] = ACTIONS(1744), + [anon_sym_consteval] = ACTIONS(1744), + [anon_sym_alignas] = ACTIONS(1747), + [anon_sym__Alignas] = ACTIONS(1747), + [sym_primitive_type] = ACTIONS(1750), + [anon_sym_enum] = ACTIONS(1753), + [anon_sym_class] = ACTIONS(1756), + [anon_sym_struct] = ACTIONS(1759), + [anon_sym_union] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(2035), + [anon_sym_else] = ACTIONS(1689), + [anon_sym_switch] = ACTIONS(2038), + [anon_sym_case] = ACTIONS(1689), + [anon_sym_default] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(2041), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_return] = ACTIONS(2050), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2056), + [anon_sym_goto] = ACTIONS(2059), + [anon_sym___try] = ACTIONS(2062), + [anon_sym___leave] = ACTIONS(2065), + [anon_sym_not] = ACTIONS(1697), + [anon_sym_compl] = ACTIONS(1697), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1801), + [anon_sym___alignof__] = ACTIONS(1804), + [anon_sym___alignof] = ACTIONS(1804), + [anon_sym__alignof] = ACTIONS(1804), + [anon_sym_alignof] = ACTIONS(1804), + [anon_sym__Alignof] = ACTIONS(1804), + [anon_sym_offsetof] = ACTIONS(1807), + [anon_sym__Generic] = ACTIONS(1810), + [anon_sym_typename] = ACTIONS(1813), + [anon_sym_asm] = ACTIONS(1816), + [anon_sym___asm__] = ACTIONS(1816), + [anon_sym___asm] = ACTIONS(1816), + [sym_number_literal] = ACTIONS(1819), + [anon_sym_L_SQUOTE] = ACTIONS(1822), + [anon_sym_u_SQUOTE] = ACTIONS(1822), + [anon_sym_U_SQUOTE] = ACTIONS(1822), + [anon_sym_u8_SQUOTE] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1822), + [anon_sym_L_DQUOTE] = ACTIONS(1825), + [anon_sym_u_DQUOTE] = ACTIONS(1825), + [anon_sym_U_DQUOTE] = ACTIONS(1825), + [anon_sym_u8_DQUOTE] = ACTIONS(1825), + [anon_sym_DQUOTE] = ACTIONS(1825), + [sym_true] = ACTIONS(1828), + [sym_false] = ACTIONS(1828), + [anon_sym_NULL] = ACTIONS(1831), + [anon_sym_nullptr] = ACTIONS(1831), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1834), + [anon_sym_decltype] = ACTIONS(1837), + [anon_sym_explicit] = ACTIONS(1689), + [anon_sym_export] = ACTIONS(1689), + [anon_sym_import] = ACTIONS(1689), + [anon_sym_template] = ACTIONS(2068), + [anon_sym_operator] = ACTIONS(1689), + [anon_sym_try] = ACTIONS(2071), + [anon_sym_delete] = ACTIONS(1846), + [anon_sym_throw] = ACTIONS(2074), + [anon_sym_namespace] = ACTIONS(1689), + [anon_sym_static_assert] = ACTIONS(1689), + [anon_sym_concept] = ACTIONS(1689), + [anon_sym_co_return] = ACTIONS(2077), + [anon_sym_co_yield] = ACTIONS(2080), + [anon_sym_R_DQUOTE] = ACTIONS(1858), + [anon_sym_LR_DQUOTE] = ACTIONS(1858), + [anon_sym_uR_DQUOTE] = ACTIONS(1858), + [anon_sym_UR_DQUOTE] = ACTIONS(1858), + [anon_sym_u8R_DQUOTE] = ACTIONS(1858), + [anon_sym_co_await] = ACTIONS(1861), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_requires] = ACTIONS(1867), + [anon_sym_CARET_CARET] = ACTIONS(1870), + [anon_sym_LBRACK_COLON] = ACTIONS(1873), + [sym_this] = ACTIONS(1828), }, - [STATE(151)] = { - [sym_attribute_declaration] = STATE(155), - [sym_compound_statement] = STATE(496), - [sym_attributed_statement] = STATE(496), - [sym_statement] = STATE(430), - [sym_labeled_statement] = STATE(496), - [sym_expression_statement] = STATE(496), - [sym_if_statement] = STATE(496), - [sym_switch_statement] = STATE(496), - [sym_case_statement] = STATE(496), - [sym_while_statement] = STATE(496), - [sym_do_statement] = STATE(496), - [sym_for_statement] = STATE(496), - [sym_return_statement] = STATE(496), - [sym_break_statement] = STATE(496), - [sym_continue_statement] = STATE(496), - [sym_goto_statement] = STATE(496), - [sym_seh_try_statement] = STATE(496), - [sym_seh_leave_statement] = STATE(496), - [sym_expression] = STATE(6685), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10787), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(496), - [sym_co_return_statement] = STATE(496), - [sym_co_yield_statement] = STATE(496), - [sym_throw_statement] = STATE(496), - [sym_try_statement] = STATE(496), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(496), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(155), - [sym_identifier] = ACTIONS(2307), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(141)] = { + [sym_declaration] = STATE(677), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6380), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(677), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6686), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10556), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2014), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_using] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2083), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(83), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_default] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1220), - [anon_sym___leave] = ACTIONS(1222), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -74724,7 +77007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -74744,13 +77027,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1583), - [anon_sym_try] = ACTIONS(145), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2018), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -74760,268 +77044,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(152)] = { - [sym_expression] = STATE(3678), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_initializer_list] = STATE(3758), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_COMMA] = ACTIONS(2026), - [anon_sym_RPAREN] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(2313), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2024), - [anon_sym_PLUS] = ACTIONS(2024), - [anon_sym_STAR] = ACTIONS(2024), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - [anon_sym_EQ_EQ] = ACTIONS(2026), - [anon_sym_BANG_EQ] = ACTIONS(2026), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2026), - [anon_sym_LT_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2024), - [anon_sym_GT_GT] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2026), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_RBRACE] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_EQ] = ACTIONS(2024), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_QMARK] = ACTIONS(2026), - [anon_sym_STAR_EQ] = ACTIONS(2026), - [anon_sym_SLASH_EQ] = ACTIONS(2026), - [anon_sym_PERCENT_EQ] = ACTIONS(2026), - [anon_sym_PLUS_EQ] = ACTIONS(2026), - [anon_sym_DASH_EQ] = ACTIONS(2026), - [anon_sym_LT_LT_EQ] = ACTIONS(2026), - [anon_sym_GT_GT_EQ] = ACTIONS(2026), - [anon_sym_AMP_EQ] = ACTIONS(2026), - [anon_sym_CARET_EQ] = ACTIONS(2026), - [anon_sym_PIPE_EQ] = ACTIONS(2026), - [anon_sym_and_eq] = ACTIONS(2024), - [anon_sym_or_eq] = ACTIONS(2024), - [anon_sym_xor_eq] = ACTIONS(2024), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_LT_EQ_GT] = ACTIONS(2026), - [anon_sym_or] = ACTIONS(2024), - [anon_sym_and] = ACTIONS(2024), - [anon_sym_bitor] = ACTIONS(2024), - [anon_sym_xor] = ACTIONS(2024), - [anon_sym_bitand] = ACTIONS(2024), - [anon_sym_not_eq] = ACTIONS(2024), - [anon_sym_DASH_DASH] = ACTIONS(2026), - [anon_sym_PLUS_PLUS] = ACTIONS(2026), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2026), - [anon_sym_DASH_GT] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [anon_sym_COLON_RBRACK] = ACTIONS(2026), - [sym_this] = ACTIONS(2058), - }, - [STATE(153)] = { - [sym_attribute_declaration] = STATE(150), - [sym_compound_statement] = STATE(360), - [sym_attributed_statement] = STATE(360), - [sym_statement] = STATE(372), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(150), - [sym_identifier] = ACTIONS(2339), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(142)] = { + [sym_declaration] = STATE(143), + [sym_type_definition] = STATE(143), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6391), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(143), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(143), + [sym_labeled_statement] = STATE(143), + [sym_expression_statement] = STATE(143), + [sym_if_statement] = STATE(143), + [sym_switch_statement] = STATE(143), + [sym_while_statement] = STATE(143), + [sym_do_statement] = STATE(143), + [sym_for_statement] = STATE(143), + [sym_return_statement] = STATE(143), + [sym_break_statement] = STATE(143), + [sym_continue_statement] = STATE(143), + [sym_goto_statement] = STATE(143), + [sym_seh_try_statement] = STATE(143), + [sym_seh_leave_statement] = STATE(143), + [sym_expression] = STATE(6880), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11567), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(143), + [sym_co_return_statement] = STATE(143), + [sym_co_yield_statement] = STATE(143), + [sym_throw_statement] = STATE(143), + [sym_try_statement] = STATE(143), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(143), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(2085), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(295), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_using] = ACTIONS(2341), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym___extension__] = ACTIONS(2089), + [anon_sym_typedef] = ACTIONS(2091), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(305), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_else] = ACTIONS(1654), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2099), + [anon_sym_do] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2107), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_goto] = ACTIONS(2111), + [anon_sym___try] = ACTIONS(2113), + [anon_sym___leave] = ACTIONS(2115), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -75034,7 +77216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -75054,13 +77236,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(339), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2119), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(2121), + [anon_sym_co_return] = ACTIONS(2123), + [anon_sym_co_yield] = ACTIONS(2125), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -75070,423 +77253,375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(154)] = { - [sym_attribute_declaration] = STATE(154), - [sym_compound_statement] = STATE(550), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(666), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(154), - [sym_identifier] = ACTIONS(2343), - [anon_sym_LPAREN2] = ACTIONS(2083), - [anon_sym_BANG] = ACTIONS(2086), - [anon_sym_TILDE] = ACTIONS(2086), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2092), - [anon_sym_AMP] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2346), - [anon_sym___extension__] = ACTIONS(2098), - [anon_sym_using] = ACTIONS(2101), - [anon_sym_COLON_COLON] = ACTIONS(2103), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2112), - [sym_primitive_type] = ACTIONS(2115), - [anon_sym_if] = ACTIONS(2352), - [anon_sym_switch] = ACTIONS(2355), - [anon_sym_case] = ACTIONS(2358), - [anon_sym_default] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2364), - [anon_sym_do] = ACTIONS(2367), - [anon_sym_for] = ACTIONS(2370), - [anon_sym_return] = ACTIONS(2373), - [anon_sym_break] = ACTIONS(2376), - [anon_sym_continue] = ACTIONS(2379), - [anon_sym_goto] = ACTIONS(2382), - [anon_sym___try] = ACTIONS(2385), - [anon_sym___leave] = ACTIONS(2388), - [anon_sym_not] = ACTIONS(2089), - [anon_sym_compl] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_sizeof] = ACTIONS(2160), - [anon_sym___alignof__] = ACTIONS(2163), - [anon_sym___alignof] = ACTIONS(2163), - [anon_sym__alignof] = ACTIONS(2163), - [anon_sym_alignof] = ACTIONS(2163), - [anon_sym__Alignof] = ACTIONS(2163), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2169), - [anon_sym_typename] = ACTIONS(2172), - [anon_sym_asm] = ACTIONS(2175), - [anon_sym___asm__] = ACTIONS(2175), - [anon_sym___asm] = ACTIONS(2175), - [sym_number_literal] = ACTIONS(2178), - [anon_sym_L_SQUOTE] = ACTIONS(2181), - [anon_sym_u_SQUOTE] = ACTIONS(2181), - [anon_sym_U_SQUOTE] = ACTIONS(2181), - [anon_sym_u8_SQUOTE] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_L_DQUOTE] = ACTIONS(2184), - [anon_sym_u_DQUOTE] = ACTIONS(2184), - [anon_sym_U_DQUOTE] = ACTIONS(2184), - [anon_sym_u8_DQUOTE] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [sym_true] = ACTIONS(2187), - [sym_false] = ACTIONS(2187), - [anon_sym_NULL] = ACTIONS(2190), - [anon_sym_nullptr] = ACTIONS(2190), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2193), - [anon_sym_template] = ACTIONS(2391), - [anon_sym_try] = ACTIONS(2394), - [anon_sym_delete] = ACTIONS(2202), - [anon_sym_throw] = ACTIONS(2397), - [anon_sym_co_return] = ACTIONS(2400), - [anon_sym_co_yield] = ACTIONS(2403), - [anon_sym_R_DQUOTE] = ACTIONS(2214), - [anon_sym_LR_DQUOTE] = ACTIONS(2214), - [anon_sym_uR_DQUOTE] = ACTIONS(2214), - [anon_sym_UR_DQUOTE] = ACTIONS(2214), - [anon_sym_u8R_DQUOTE] = ACTIONS(2214), - [anon_sym_co_await] = ACTIONS(2217), - [anon_sym_new] = ACTIONS(2220), - [anon_sym_requires] = ACTIONS(2223), - [anon_sym_CARET_CARET] = ACTIONS(2226), - [anon_sym_LBRACK_COLON] = ACTIONS(2229), - [sym_this] = ACTIONS(2187), - }, - [STATE(155)] = { - [sym_attribute_declaration] = STATE(155), - [sym_compound_statement] = STATE(496), - [sym_attributed_statement] = STATE(496), - [sym_statement] = STATE(430), - [sym_labeled_statement] = STATE(496), - [sym_expression_statement] = STATE(496), - [sym_if_statement] = STATE(496), - [sym_switch_statement] = STATE(496), - [sym_case_statement] = STATE(496), - [sym_while_statement] = STATE(496), - [sym_do_statement] = STATE(496), - [sym_for_statement] = STATE(496), - [sym_return_statement] = STATE(496), - [sym_break_statement] = STATE(496), - [sym_continue_statement] = STATE(496), - [sym_goto_statement] = STATE(496), - [sym_seh_try_statement] = STATE(496), - [sym_seh_leave_statement] = STATE(496), - [sym_expression] = STATE(6685), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10787), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(496), - [sym_co_return_statement] = STATE(496), - [sym_co_yield_statement] = STATE(496), - [sym_throw_statement] = STATE(496), - [sym_try_statement] = STATE(496), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(496), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(155), - [sym_identifier] = ACTIONS(2406), - [anon_sym_LPAREN2] = ACTIONS(2083), - [anon_sym_BANG] = ACTIONS(2086), - [anon_sym_TILDE] = ACTIONS(2086), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2092), - [anon_sym_AMP] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2409), - [anon_sym___extension__] = ACTIONS(2098), - [anon_sym_using] = ACTIONS(2101), - [anon_sym_COLON_COLON] = ACTIONS(2103), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2412), - [anon_sym_LBRACK] = ACTIONS(2112), - [sym_primitive_type] = ACTIONS(2115), - [anon_sym_if] = ACTIONS(2415), - [anon_sym_switch] = ACTIONS(2418), - [anon_sym_case] = ACTIONS(2421), - [anon_sym_default] = ACTIONS(2424), - [anon_sym_while] = ACTIONS(2427), - [anon_sym_do] = ACTIONS(2430), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2436), - [anon_sym_break] = ACTIONS(2439), - [anon_sym_continue] = ACTIONS(2442), - [anon_sym_goto] = ACTIONS(2445), - [anon_sym___try] = ACTIONS(2448), - [anon_sym___leave] = ACTIONS(2451), - [anon_sym_not] = ACTIONS(2089), - [anon_sym_compl] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_sizeof] = ACTIONS(2160), - [anon_sym___alignof__] = ACTIONS(2163), - [anon_sym___alignof] = ACTIONS(2163), - [anon_sym__alignof] = ACTIONS(2163), - [anon_sym_alignof] = ACTIONS(2163), - [anon_sym__Alignof] = ACTIONS(2163), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2169), - [anon_sym_typename] = ACTIONS(2172), - [anon_sym_asm] = ACTIONS(2175), - [anon_sym___asm__] = ACTIONS(2175), - [anon_sym___asm] = ACTIONS(2175), - [sym_number_literal] = ACTIONS(2178), - [anon_sym_L_SQUOTE] = ACTIONS(2181), - [anon_sym_u_SQUOTE] = ACTIONS(2181), - [anon_sym_U_SQUOTE] = ACTIONS(2181), - [anon_sym_u8_SQUOTE] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_L_DQUOTE] = ACTIONS(2184), - [anon_sym_u_DQUOTE] = ACTIONS(2184), - [anon_sym_U_DQUOTE] = ACTIONS(2184), - [anon_sym_u8_DQUOTE] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [sym_true] = ACTIONS(2187), - [sym_false] = ACTIONS(2187), - [anon_sym_NULL] = ACTIONS(2190), - [anon_sym_nullptr] = ACTIONS(2190), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2193), - [anon_sym_template] = ACTIONS(2454), - [anon_sym_try] = ACTIONS(2457), - [anon_sym_delete] = ACTIONS(2202), - [anon_sym_throw] = ACTIONS(2460), - [anon_sym_co_return] = ACTIONS(2463), - [anon_sym_co_yield] = ACTIONS(2466), - [anon_sym_R_DQUOTE] = ACTIONS(2214), - [anon_sym_LR_DQUOTE] = ACTIONS(2214), - [anon_sym_uR_DQUOTE] = ACTIONS(2214), - [anon_sym_UR_DQUOTE] = ACTIONS(2214), - [anon_sym_u8R_DQUOTE] = ACTIONS(2214), - [anon_sym_co_await] = ACTIONS(2217), - [anon_sym_new] = ACTIONS(2220), - [anon_sym_requires] = ACTIONS(2223), - [anon_sym_CARET_CARET] = ACTIONS(2226), - [anon_sym_LBRACK_COLON] = ACTIONS(2229), - [sym_this] = ACTIONS(2187), + [STATE(143)] = { + [sym_declaration] = STATE(143), + [sym_type_definition] = STATE(143), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6391), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(143), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(143), + [sym_labeled_statement] = STATE(143), + [sym_expression_statement] = STATE(143), + [sym_if_statement] = STATE(143), + [sym_switch_statement] = STATE(143), + [sym_while_statement] = STATE(143), + [sym_do_statement] = STATE(143), + [sym_for_statement] = STATE(143), + [sym_return_statement] = STATE(143), + [sym_break_statement] = STATE(143), + [sym_continue_statement] = STATE(143), + [sym_goto_statement] = STATE(143), + [sym_seh_try_statement] = STATE(143), + [sym_seh_leave_statement] = STATE(143), + [sym_expression] = STATE(6880), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11567), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(143), + [sym_co_return_statement] = STATE(143), + [sym_co_yield_statement] = STATE(143), + [sym_throw_statement] = STATE(143), + [sym_try_statement] = STATE(143), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(143), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(2127), + [anon_sym_LPAREN2] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_TILDE] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_STAR] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(2130), + [anon_sym___extension__] = ACTIONS(2133), + [anon_sym_typedef] = ACTIONS(2136), + [anon_sym_virtual] = ACTIONS(1717), + [anon_sym_extern] = ACTIONS(1720), + [anon_sym___attribute__] = ACTIONS(1723), + [anon_sym___attribute] = ACTIONS(1723), + [anon_sym_COLON_COLON] = ACTIONS(1726), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), + [anon_sym___declspec] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_signed] = ACTIONS(1738), + [anon_sym_unsigned] = ACTIONS(1738), + [anon_sym_long] = ACTIONS(1738), + [anon_sym_short] = ACTIONS(1738), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_static] = ACTIONS(1720), + [anon_sym_register] = ACTIONS(1720), + [anon_sym_inline] = ACTIONS(1720), + [anon_sym___inline] = ACTIONS(1720), + [anon_sym___inline__] = ACTIONS(1720), + [anon_sym___forceinline] = ACTIONS(1720), + [anon_sym_thread_local] = ACTIONS(1720), + [anon_sym___thread] = ACTIONS(1720), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_constexpr] = ACTIONS(1744), + [anon_sym_volatile] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1744), + [anon_sym___restrict__] = ACTIONS(1744), + [anon_sym__Atomic] = ACTIONS(1744), + [anon_sym__Noreturn] = ACTIONS(1744), + [anon_sym_noreturn] = ACTIONS(1744), + [anon_sym__Nonnull] = ACTIONS(1744), + [anon_sym_mutable] = ACTIONS(1744), + [anon_sym_constinit] = ACTIONS(1744), + [anon_sym_consteval] = ACTIONS(1744), + [anon_sym_alignas] = ACTIONS(1747), + [anon_sym__Alignas] = ACTIONS(1747), + [sym_primitive_type] = ACTIONS(1750), + [anon_sym_enum] = ACTIONS(1753), + [anon_sym_class] = ACTIONS(1756), + [anon_sym_struct] = ACTIONS(1759), + [anon_sym_union] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_else] = ACTIONS(1689), + [anon_sym_switch] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(2148), + [anon_sym_do] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2154), + [anon_sym_return] = ACTIONS(2157), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2163), + [anon_sym_goto] = ACTIONS(2166), + [anon_sym___try] = ACTIONS(2169), + [anon_sym___leave] = ACTIONS(2172), + [anon_sym_not] = ACTIONS(1697), + [anon_sym_compl] = ACTIONS(1697), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1801), + [anon_sym___alignof__] = ACTIONS(1804), + [anon_sym___alignof] = ACTIONS(1804), + [anon_sym__alignof] = ACTIONS(1804), + [anon_sym_alignof] = ACTIONS(1804), + [anon_sym__Alignof] = ACTIONS(1804), + [anon_sym_offsetof] = ACTIONS(1807), + [anon_sym__Generic] = ACTIONS(1810), + [anon_sym_typename] = ACTIONS(1813), + [anon_sym_asm] = ACTIONS(1816), + [anon_sym___asm__] = ACTIONS(1816), + [anon_sym___asm] = ACTIONS(1816), + [sym_number_literal] = ACTIONS(1819), + [anon_sym_L_SQUOTE] = ACTIONS(1822), + [anon_sym_u_SQUOTE] = ACTIONS(1822), + [anon_sym_U_SQUOTE] = ACTIONS(1822), + [anon_sym_u8_SQUOTE] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1822), + [anon_sym_L_DQUOTE] = ACTIONS(1825), + [anon_sym_u_DQUOTE] = ACTIONS(1825), + [anon_sym_U_DQUOTE] = ACTIONS(1825), + [anon_sym_u8_DQUOTE] = ACTIONS(1825), + [anon_sym_DQUOTE] = ACTIONS(1825), + [sym_true] = ACTIONS(1828), + [sym_false] = ACTIONS(1828), + [anon_sym_NULL] = ACTIONS(1831), + [anon_sym_nullptr] = ACTIONS(1831), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1834), + [anon_sym_decltype] = ACTIONS(1837), + [anon_sym_template] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_delete] = ACTIONS(1846), + [anon_sym_throw] = ACTIONS(2181), + [anon_sym_co_return] = ACTIONS(2184), + [anon_sym_co_yield] = ACTIONS(2187), + [anon_sym_R_DQUOTE] = ACTIONS(1858), + [anon_sym_LR_DQUOTE] = ACTIONS(1858), + [anon_sym_uR_DQUOTE] = ACTIONS(1858), + [anon_sym_UR_DQUOTE] = ACTIONS(1858), + [anon_sym_u8R_DQUOTE] = ACTIONS(1858), + [anon_sym_co_await] = ACTIONS(1861), + [anon_sym_new] = ACTIONS(1864), + [anon_sym_requires] = ACTIONS(1867), + [anon_sym_CARET_CARET] = ACTIONS(1870), + [anon_sym_LBRACK_COLON] = ACTIONS(1873), + [sym_this] = ACTIONS(1828), }, - [STATE(156)] = { - [sym_attribute_declaration] = STATE(148), - [sym_compound_statement] = STATE(652), - [sym_attributed_statement] = STATE(652), - [sym_statement] = STATE(672), - [sym_labeled_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_if_statement] = STATE(652), - [sym_switch_statement] = STATE(652), - [sym_case_statement] = STATE(652), - [sym_while_statement] = STATE(652), - [sym_do_statement] = STATE(652), - [sym_for_statement] = STATE(652), - [sym_return_statement] = STATE(652), - [sym_break_statement] = STATE(652), - [sym_continue_statement] = STATE(652), - [sym_goto_statement] = STATE(652), - [sym_seh_try_statement] = STATE(652), - [sym_seh_leave_statement] = STATE(652), - [sym_expression] = STATE(6696), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10652), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(652), - [sym_co_return_statement] = STATE(652), - [sym_co_yield_statement] = STATE(652), - [sym_throw_statement] = STATE(652), - [sym_try_statement] = STATE(652), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(652), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(148), - [sym_identifier] = ACTIONS(2469), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(144)] = { + [sym_declaration] = STATE(599), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6398), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(637), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(637), + [sym_statement] = STATE(599), + [sym_labeled_statement] = STATE(637), + [sym_expression_statement] = STATE(637), + [sym_if_statement] = STATE(637), + [sym_switch_statement] = STATE(637), + [sym_case_statement] = STATE(637), + [sym_while_statement] = STATE(637), + [sym_do_statement] = STATE(637), + [sym_for_statement] = STATE(637), + [sym_return_statement] = STATE(637), + [sym_break_statement] = STATE(637), + [sym_continue_statement] = STATE(637), + [sym_goto_statement] = STATE(637), + [sym_seh_try_statement] = STATE(637), + [sym_seh_leave_statement] = STATE(637), + [sym_expression] = STATE(6804), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11583), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(637), + [sym_co_return_statement] = STATE(637), + [sym_co_yield_statement] = STATE(637), + [sym_throw_statement] = STATE(637), + [sym_try_statement] = STATE(637), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(637), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(215), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(1939), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_using] = ACTIONS(2471), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(2083), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_goto] = ACTIONS(1188), - [anon_sym___try] = ACTIONS(1190), - [anon_sym___leave] = ACTIONS(1192), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1125), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1141), + [anon_sym___leave] = ACTIONS(1143), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -75499,7 +77634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -75519,13 +77654,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1658), - [anon_sym_try] = ACTIONS(1196), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1943), + [anon_sym_try] = ACTIONS(1151), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1198), - [anon_sym_co_return] = ACTIONS(1206), - [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_throw] = ACTIONS(1153), + [anon_sym_co_return] = ACTIONS(1161), + [anon_sym_co_yield] = ACTIONS(1163), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -75535,111 +77671,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(157)] = { - [sym_attribute_declaration] = STATE(182), - [sym_compound_statement] = STATE(550), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(10497), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [sym_identifier] = ACTIONS(2473), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(145)] = { + [sym_declaration] = STATE(601), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6421), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(601), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(221), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym___extension__] = ACTIONS(2083), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym___declspec] = ACTIONS(51), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1832), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(2192), [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1838), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2198), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(1840), + [anon_sym_for] = ACTIONS(2200), [anon_sym_return] = ACTIONS(97), [anon_sym_break] = ACTIONS(99), [anon_sym_continue] = ACTIONS(101), [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1842), + [anon_sym___try] = ACTIONS(2202), [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -75653,7 +77843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -75673,8 +77863,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1844), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2204), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -75689,112 +77880,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(158)] = { - [sym_attribute_declaration] = STATE(176), - [sym_compound_statement] = STATE(496), - [sym_attributed_statement] = STATE(496), - [sym_statement] = STATE(494), - [sym_labeled_statement] = STATE(496), - [sym_expression_statement] = STATE(496), - [sym_if_statement] = STATE(496), - [sym_switch_statement] = STATE(496), - [sym_case_statement] = STATE(496), - [sym_while_statement] = STATE(496), - [sym_do_statement] = STATE(496), - [sym_for_statement] = STATE(496), - [sym_return_statement] = STATE(496), - [sym_break_statement] = STATE(496), - [sym_continue_statement] = STATE(496), - [sym_goto_statement] = STATE(496), - [sym_seh_try_statement] = STATE(496), - [sym_seh_leave_statement] = STATE(496), - [sym_expression] = STATE(6685), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10787), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(496), - [sym_co_return_statement] = STATE(496), - [sym_co_yield_statement] = STATE(496), - [sym_throw_statement] = STATE(496), - [sym_try_statement] = STATE(496), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(496), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(176), - [sym_identifier] = ACTIONS(2307), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(146)] = { + [sym_declaration] = STATE(355), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6396), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(339), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(339), + [sym_statement] = STATE(355), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(193), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(1652), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2083), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(83), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_default] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1220), - [anon_sym___leave] = ACTIONS(1222), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -75807,7 +78052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -75827,13 +78072,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1583), - [anon_sym_try] = ACTIONS(145), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1672), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -75843,112 +78089,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(159)] = { - [sym_attribute_declaration] = STATE(168), - [sym_compound_statement] = STATE(360), - [sym_attributed_statement] = STATE(360), - [sym_statement] = STATE(357), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [sym_identifier] = ACTIONS(2339), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(147)] = { + [sym_declaration] = STATE(601), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6421), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(578), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(578), + [sym_statement] = STATE(601), + [sym_labeled_statement] = STATE(578), + [sym_expression_statement] = STATE(578), + [sym_if_statement] = STATE(578), + [sym_switch_statement] = STATE(578), + [sym_case_statement] = STATE(578), + [sym_while_statement] = STATE(578), + [sym_do_statement] = STATE(578), + [sym_for_statement] = STATE(578), + [sym_return_statement] = STATE(578), + [sym_break_statement] = STATE(578), + [sym_continue_statement] = STATE(578), + [sym_goto_statement] = STATE(578), + [sym_seh_try_statement] = STATE(578), + [sym_seh_leave_statement] = STATE(578), + [sym_expression] = STATE(6807), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11035), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(578), + [sym_co_return_statement] = STATE(578), + [sym_co_yield_statement] = STATE(578), + [sym_throw_statement] = STATE(578), + [sym_try_statement] = STATE(578), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(578), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(214), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(1945), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(295), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(2083), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(305), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1324), + [anon_sym___leave] = ACTIONS(1326), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -75961,7 +78261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -75981,13 +78281,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(339), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1949), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -75997,112 +78298,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(160)] = { - [sym_attribute_declaration] = STATE(208), - [sym_compound_statement] = STATE(1142), - [sym_attributed_statement] = STATE(1142), - [sym_statement] = STATE(1127), - [sym_labeled_statement] = STATE(1142), - [sym_expression_statement] = STATE(1142), - [sym_if_statement] = STATE(1142), - [sym_switch_statement] = STATE(1142), - [sym_case_statement] = STATE(1142), - [sym_while_statement] = STATE(1142), - [sym_do_statement] = STATE(1142), - [sym_for_statement] = STATE(1142), - [sym_return_statement] = STATE(1142), - [sym_break_statement] = STATE(1142), - [sym_continue_statement] = STATE(1142), - [sym_goto_statement] = STATE(1142), - [sym_seh_try_statement] = STATE(1142), - [sym_seh_leave_statement] = STATE(1142), - [sym_expression] = STATE(6681), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11126), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(1142), - [sym_co_return_statement] = STATE(1142), - [sym_co_yield_statement] = STATE(1142), - [sym_throw_statement] = STATE(1142), - [sym_try_statement] = STATE(1142), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(1142), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(208), - [sym_identifier] = ACTIONS(2475), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(148)] = { + [sym_declaration] = STATE(1225), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6391), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(1232), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(1232), + [sym_statement] = STATE(1225), + [sym_labeled_statement] = STATE(1232), + [sym_expression_statement] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_case_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_goto_statement] = STATE(1232), + [sym_seh_try_statement] = STATE(1232), + [sym_seh_leave_statement] = STATE(1232), + [sym_expression] = STATE(6880), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11567), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(1232), + [sym_co_return_statement] = STATE(1232), + [sym_co_yield_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(1232), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2085), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym___extension__] = ACTIONS(2083), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1800), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1810), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_goto] = ACTIONS(1814), - [anon_sym___try] = ACTIONS(1816), - [anon_sym___leave] = ACTIONS(1818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2099), + [anon_sym_do] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2107), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_goto] = ACTIONS(2111), + [anon_sym___try] = ACTIONS(2113), + [anon_sym___leave] = ACTIONS(2115), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -76115,7 +78470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -76135,13 +78490,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1822), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2119), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1824), - [anon_sym_co_return] = ACTIONS(1826), - [anon_sym_co_yield] = ACTIONS(1828), + [anon_sym_throw] = ACTIONS(2121), + [anon_sym_co_return] = ACTIONS(2123), + [anon_sym_co_yield] = ACTIONS(2125), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -76151,99 +78507,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(161)] = { - [sym_attribute_declaration] = STATE(207), - [sym_compound_statement] = STATE(550), - [sym_attributed_statement] = STATE(550), + [STATE(149)] = { + [sym_declaration] = STATE(677), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6380), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(772), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(772), [sym_statement] = STATE(677), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(207), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2014), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym___extension__] = ACTIONS(2083), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), [anon_sym_if] = ACTIONS(207), [anon_sym_switch] = ACTIONS(209), [anon_sym_case] = ACTIONS(211), @@ -76269,7 +78679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -76289,13 +78699,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(241), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2018), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -76305,112 +78716,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(162)] = { - [sym_attribute_declaration] = STATE(168), - [sym_compound_statement] = STATE(360), - [sym_attributed_statement] = STATE(360), - [sym_statement] = STATE(377), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [sym_identifier] = ACTIONS(2339), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(150)] = { + [sym_declaration] = STATE(152), + [sym_type_definition] = STATE(152), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6391), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(152), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(152), + [sym_labeled_statement] = STATE(152), + [sym_expression_statement] = STATE(152), + [sym_if_statement] = STATE(152), + [sym_switch_statement] = STATE(152), + [sym_while_statement] = STATE(152), + [sym_do_statement] = STATE(152), + [sym_for_statement] = STATE(152), + [sym_return_statement] = STATE(152), + [sym_break_statement] = STATE(152), + [sym_continue_statement] = STATE(152), + [sym_goto_statement] = STATE(152), + [sym_seh_try_statement] = STATE(152), + [sym_seh_leave_statement] = STATE(152), + [sym_expression] = STATE(6880), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11567), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(152), + [sym_co_return_statement] = STATE(152), + [sym_co_yield_statement] = STATE(152), + [sym_throw_statement] = STATE(152), + [sym_try_statement] = STATE(152), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(152), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(152), + [sym_identifier] = ACTIONS(2085), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(295), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym___extension__] = ACTIONS(2089), + [anon_sym_typedef] = ACTIONS(2091), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(305), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_else] = ACTIONS(1678), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2099), + [anon_sym_do] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2107), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_goto] = ACTIONS(2111), + [anon_sym___try] = ACTIONS(2113), + [anon_sym___leave] = ACTIONS(2115), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -76423,7 +78888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -76443,13 +78908,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(339), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2119), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(2121), + [anon_sym_co_return] = ACTIONS(2123), + [anon_sym_co_yield] = ACTIONS(2125), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -76459,266 +78925,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(163)] = { - [sym_attribute_declaration] = STATE(168), - [sym_compound_statement] = STATE(360), - [sym_attributed_statement] = STATE(360), - [sym_statement] = STATE(389), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [sym_identifier] = ACTIONS(2339), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(151)] = { + [sym_declaration] = STATE(142), + [sym_type_definition] = STATE(142), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6391), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(142), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(142), + [sym_labeled_statement] = STATE(142), + [sym_expression_statement] = STATE(142), + [sym_if_statement] = STATE(142), + [sym_switch_statement] = STATE(142), + [sym_while_statement] = STATE(142), + [sym_do_statement] = STATE(142), + [sym_for_statement] = STATE(142), + [sym_return_statement] = STATE(142), + [sym_break_statement] = STATE(142), + [sym_continue_statement] = STATE(142), + [sym_goto_statement] = STATE(142), + [sym_seh_try_statement] = STATE(142), + [sym_seh_leave_statement] = STATE(142), + [sym_expression] = STATE(6880), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11567), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(142), + [sym_co_return_statement] = STATE(142), + [sym_co_yield_statement] = STATE(142), + [sym_throw_statement] = STATE(142), + [sym_try_statement] = STATE(142), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(142), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(2085), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(295), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym___extension__] = ACTIONS(2089), + [anon_sym_typedef] = ACTIONS(2091), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(305), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(339), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(164)] = { - [sym_attribute_declaration] = STATE(168), - [sym_compound_statement] = STATE(360), - [sym_attributed_statement] = STATE(360), - [sym_statement] = STATE(392), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [sym_identifier] = ACTIONS(2339), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(295), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(305), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_else] = ACTIONS(1674), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2099), + [anon_sym_do] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2107), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_goto] = ACTIONS(2111), + [anon_sym___try] = ACTIONS(2113), + [anon_sym___leave] = ACTIONS(2115), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -76731,7 +79097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -76751,13 +79117,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(339), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2119), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(2121), + [anon_sym_co_return] = ACTIONS(2123), + [anon_sym_co_yield] = ACTIONS(2125), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -76767,112 +79134,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(165)] = { - [sym_attribute_declaration] = STATE(168), - [sym_compound_statement] = STATE(360), - [sym_attributed_statement] = STATE(360), - [sym_statement] = STATE(373), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [sym_identifier] = ACTIONS(2339), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(152)] = { + [sym_declaration] = STATE(143), + [sym_type_definition] = STATE(143), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6391), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(1265), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_compound_statement] = STATE(143), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_attributed_statement] = STATE(143), + [sym_labeled_statement] = STATE(143), + [sym_expression_statement] = STATE(143), + [sym_if_statement] = STATE(143), + [sym_switch_statement] = STATE(143), + [sym_while_statement] = STATE(143), + [sym_do_statement] = STATE(143), + [sym_for_statement] = STATE(143), + [sym_return_statement] = STATE(143), + [sym_break_statement] = STATE(143), + [sym_continue_statement] = STATE(143), + [sym_goto_statement] = STATE(143), + [sym_seh_try_statement] = STATE(143), + [sym_seh_leave_statement] = STATE(143), + [sym_expression] = STATE(6880), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11567), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(143), + [sym_co_return_statement] = STATE(143), + [sym_co_yield_statement] = STATE(143), + [sym_throw_statement] = STATE(143), + [sym_try_statement] = STATE(143), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(143), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_case_statement_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(2085), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(295), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym___extension__] = ACTIONS(2089), + [anon_sym_typedef] = ACTIONS(2091), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(305), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2099), + [anon_sym_do] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2107), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_goto] = ACTIONS(2111), + [anon_sym___try] = ACTIONS(2113), + [anon_sym___leave] = ACTIONS(2115), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -76885,7 +79306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -76905,13 +79326,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(339), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2119), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(2121), + [anon_sym_co_return] = ACTIONS(2123), + [anon_sym_co_yield] = ACTIONS(2125), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -76921,112 +79343,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(166)] = { - [sym_attribute_declaration] = STATE(182), - [sym_compound_statement] = STATE(550), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(9912), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [sym_identifier] = ACTIONS(2473), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(153)] = { + [sym_declaration] = STATE(309), + [sym_type_definition] = STATE(6262), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6423), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_expression_statement] = STATE(6262), + [sym__for_statement_body] = STATE(11508), + [sym_expression] = STATE(6892), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11513), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_alias_declaration] = STATE(6262), + [sym__for_range_loop_body] = STATE(11514), + [sym_init_statement] = STATE(2706), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym___extension__] = ACTIONS(2210), + [anon_sym_typedef] = ACTIONS(2212), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(2214), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1842), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -77039,7 +79485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -77059,13 +79505,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1844), - [anon_sym_try] = ACTIONS(145), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -77075,112 +79518,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(167)] = { - [sym_attribute_declaration] = STATE(182), - [sym_compound_statement] = STATE(550), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(494), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [sym_identifier] = ACTIONS(2473), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(154)] = { + [sym_declaration] = STATE(309), + [sym_type_definition] = STATE(6262), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6423), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_expression_statement] = STATE(6262), + [sym__for_statement_body] = STATE(10926), + [sym_expression] = STATE(6892), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11513), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_alias_declaration] = STATE(6262), + [sym__for_range_loop_body] = STATE(10975), + [sym_init_statement] = STATE(2706), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym___extension__] = ACTIONS(2210), + [anon_sym_typedef] = ACTIONS(2212), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(2214), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1842), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -77193,7 +79660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -77213,13 +79680,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1844), - [anon_sym_try] = ACTIONS(145), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -77229,112 +79693,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(168)] = { - [sym_attribute_declaration] = STATE(150), - [sym_compound_statement] = STATE(360), - [sym_attributed_statement] = STATE(360), - [sym_statement] = STATE(372), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(150), - [sym_identifier] = ACTIONS(2339), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(155)] = { + [sym_declaration] = STATE(309), + [sym_type_definition] = STATE(6262), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6423), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_expression_statement] = STATE(6262), + [sym__for_statement_body] = STATE(11561), + [sym_expression] = STATE(6892), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11513), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_alias_declaration] = STATE(6262), + [sym__for_range_loop_body] = STATE(10641), + [sym_init_statement] = STATE(2706), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(295), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym___extension__] = ACTIONS(2210), + [anon_sym_typedef] = ACTIONS(2212), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(2214), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(305), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -77347,7 +79835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -77367,13 +79855,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(339), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -77383,266 +79868,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(169)] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(550), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(430), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(2477), - [anon_sym_LPAREN2] = ACTIONS(2083), - [anon_sym_BANG] = ACTIONS(2086), - [anon_sym_TILDE] = ACTIONS(2086), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2092), - [anon_sym_AMP] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2346), - [anon_sym___extension__] = ACTIONS(2098), - [anon_sym_COLON_COLON] = ACTIONS(2103), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2412), - [anon_sym_LBRACK] = ACTIONS(2112), - [sym_primitive_type] = ACTIONS(2115), - [anon_sym_if] = ACTIONS(2480), - [anon_sym_switch] = ACTIONS(2418), - [anon_sym_case] = ACTIONS(2483), - [anon_sym_default] = ACTIONS(2486), - [anon_sym_while] = ACTIONS(2489), - [anon_sym_do] = ACTIONS(2430), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2436), - [anon_sym_break] = ACTIONS(2439), - [anon_sym_continue] = ACTIONS(2442), - [anon_sym_goto] = ACTIONS(2445), - [anon_sym___try] = ACTIONS(2495), - [anon_sym___leave] = ACTIONS(2388), - [anon_sym_not] = ACTIONS(2089), - [anon_sym_compl] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_sizeof] = ACTIONS(2160), - [anon_sym___alignof__] = ACTIONS(2163), - [anon_sym___alignof] = ACTIONS(2163), - [anon_sym__alignof] = ACTIONS(2163), - [anon_sym_alignof] = ACTIONS(2163), - [anon_sym__Alignof] = ACTIONS(2163), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2169), - [anon_sym_typename] = ACTIONS(2172), - [anon_sym_asm] = ACTIONS(2175), - [anon_sym___asm__] = ACTIONS(2175), - [anon_sym___asm] = ACTIONS(2175), - [sym_number_literal] = ACTIONS(2178), - [anon_sym_L_SQUOTE] = ACTIONS(2181), - [anon_sym_u_SQUOTE] = ACTIONS(2181), - [anon_sym_U_SQUOTE] = ACTIONS(2181), - [anon_sym_u8_SQUOTE] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_L_DQUOTE] = ACTIONS(2184), - [anon_sym_u_DQUOTE] = ACTIONS(2184), - [anon_sym_U_DQUOTE] = ACTIONS(2184), - [anon_sym_u8_DQUOTE] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [sym_true] = ACTIONS(2187), - [sym_false] = ACTIONS(2187), - [anon_sym_NULL] = ACTIONS(2190), - [anon_sym_nullptr] = ACTIONS(2190), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2193), - [anon_sym_template] = ACTIONS(2498), - [anon_sym_try] = ACTIONS(2457), - [anon_sym_delete] = ACTIONS(2202), - [anon_sym_throw] = ACTIONS(2460), - [anon_sym_co_return] = ACTIONS(2463), - [anon_sym_co_yield] = ACTIONS(2466), - [anon_sym_R_DQUOTE] = ACTIONS(2214), - [anon_sym_LR_DQUOTE] = ACTIONS(2214), - [anon_sym_uR_DQUOTE] = ACTIONS(2214), - [anon_sym_UR_DQUOTE] = ACTIONS(2214), - [anon_sym_u8R_DQUOTE] = ACTIONS(2214), - [anon_sym_co_await] = ACTIONS(2217), - [anon_sym_new] = ACTIONS(2220), - [anon_sym_requires] = ACTIONS(2223), - [anon_sym_CARET_CARET] = ACTIONS(2226), - [anon_sym_LBRACK_COLON] = ACTIONS(2229), - [sym_this] = ACTIONS(2187), - }, - [STATE(170)] = { - [sym_attribute_declaration] = STATE(182), - [sym_compound_statement] = STATE(550), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(10059), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [sym_identifier] = ACTIONS(2473), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(156)] = { + [sym_declaration] = STATE(309), + [sym_type_definition] = STATE(6262), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6423), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_expression_statement] = STATE(6262), + [sym__for_statement_body] = STATE(10799), + [sym_expression] = STATE(6892), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11513), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_alias_declaration] = STATE(6262), + [sym__for_range_loop_body] = STATE(10800), + [sym_init_statement] = STATE(2706), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym___extension__] = ACTIONS(2210), + [anon_sym_typedef] = ACTIONS(2212), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(2214), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1842), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -77655,7 +80010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -77675,13 +80030,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1844), - [anon_sym_try] = ACTIONS(145), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -77691,112 +80043,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(171)] = { - [sym_attribute_declaration] = STATE(182), - [sym_compound_statement] = STATE(550), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(482), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [sym_identifier] = ACTIONS(2473), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(157)] = { + [sym_declaration] = STATE(309), + [sym_type_definition] = STATE(6262), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6423), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_expression_statement] = STATE(6262), + [sym__for_statement_body] = STATE(10643), + [sym_expression] = STATE(6892), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11513), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_alias_declaration] = STATE(6262), + [sym__for_range_loop_body] = STATE(10644), + [sym_init_statement] = STATE(2706), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym___extension__] = ACTIONS(2210), + [anon_sym_typedef] = ACTIONS(2212), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(2214), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1842), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -77809,7 +80185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -77829,13 +80205,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1844), - [anon_sym_try] = ACTIONS(145), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -77845,112 +80218,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(172)] = { - [sym_attribute_declaration] = STATE(182), - [sym_compound_statement] = STATE(550), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(484), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [sym_identifier] = ACTIONS(2473), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(158)] = { + [sym_declaration] = STATE(309), + [sym_type_definition] = STATE(6262), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6423), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_expression_statement] = STATE(6262), + [sym__for_statement_body] = STATE(10781), + [sym_expression] = STATE(6892), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11513), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_alias_declaration] = STATE(6262), + [sym__for_range_loop_body] = STATE(10782), + [sym_init_statement] = STATE(2706), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym___extension__] = ACTIONS(2210), + [anon_sym_typedef] = ACTIONS(2212), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(2214), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1842), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -77963,7 +80360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -77983,13 +80380,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1844), - [anon_sym_try] = ACTIONS(145), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -77999,112 +80393,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(173)] = { - [sym_attribute_declaration] = STATE(182), - [sym_compound_statement] = STATE(550), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(485), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [sym_identifier] = ACTIONS(2473), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(159)] = { + [sym_declaration] = STATE(6262), + [sym_type_definition] = STATE(6262), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6407), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_expression_statement] = STATE(6262), + [sym_expression] = STATE(6747), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10840), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_alias_declaration] = STATE(6262), + [sym__for_range_loop_body] = STATE(11642), + [sym_init_statement] = STATE(2706), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym___extension__] = ACTIONS(2210), + [anon_sym_typedef] = ACTIONS(2212), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(2214), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1842), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -78117,7 +80534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -78137,13 +80554,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1844), - [anon_sym_try] = ACTIONS(145), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -78153,266 +80567,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(174)] = { - [sym_attribute_declaration] = STATE(182), - [sym_compound_statement] = STATE(550), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(491), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [sym_identifier] = ACTIONS(2473), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [STATE(160)] = { + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(7524), + [sym__declarator] = STATE(9071), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8555), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(10717), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4729), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10717), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(11122), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5427), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(11505), + [sym__unary_right_fold] = STATE(11613), + [sym__binary_fold] = STATE(11634), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7934), + [sym_qualified_identifier] = STATE(5371), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11050), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2222), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2226), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(2242), + [anon_sym___clrcall] = ACTIONS(2242), + [anon_sym___stdcall] = ACTIONS(2242), + [anon_sym___fastcall] = ACTIONS(2242), + [anon_sym___thiscall] = ACTIONS(2242), + [anon_sym___vectorcall] = ACTIONS(2242), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1842), - [anon_sym___leave] = ACTIONS(231), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1844), - [anon_sym_try] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), }, - [STATE(175)] = { - [sym_attribute_declaration] = STATE(148), - [sym_compound_statement] = STATE(652), - [sym_attributed_statement] = STATE(652), - [sym_statement] = STATE(672), - [sym_labeled_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_if_statement] = STATE(652), - [sym_switch_statement] = STATE(652), - [sym_case_statement] = STATE(652), - [sym_while_statement] = STATE(652), - [sym_do_statement] = STATE(652), - [sym_for_statement] = STATE(652), - [sym_return_statement] = STATE(652), - [sym_break_statement] = STATE(652), - [sym_continue_statement] = STATE(652), - [sym_goto_statement] = STATE(652), - [sym_seh_try_statement] = STATE(652), - [sym_seh_leave_statement] = STATE(652), - [sym_expression] = STATE(6696), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10652), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(652), - [sym_co_return_statement] = STATE(652), - [sym_co_yield_statement] = STATE(652), - [sym_throw_statement] = STATE(652), - [sym_try_statement] = STATE(652), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(652), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(148), - [sym_identifier] = ACTIONS(2469), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(161)] = { + [sym_declaration] = STATE(6262), + [sym_type_definition] = STATE(6262), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6407), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_expression_statement] = STATE(6262), + [sym_expression] = STATE(6747), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10840), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_alias_declaration] = STATE(6262), + [sym__for_range_loop_body] = STATE(10883), + [sym_init_statement] = STATE(2706), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym___extension__] = ACTIONS(2210), + [anon_sym_typedef] = ACTIONS(2212), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(2214), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_goto] = ACTIONS(1188), - [anon_sym___try] = ACTIONS(1190), - [anon_sym___leave] = ACTIONS(1192), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -78425,7 +80882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -78445,13 +80902,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1658), - [anon_sym_try] = ACTIONS(1196), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1198), - [anon_sym_co_return] = ACTIONS(1206), - [anon_sym_co_yield] = ACTIONS(1208), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -78461,112 +80915,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(176)] = { - [sym_attribute_declaration] = STATE(155), - [sym_compound_statement] = STATE(496), - [sym_attributed_statement] = STATE(496), - [sym_statement] = STATE(430), - [sym_labeled_statement] = STATE(496), - [sym_expression_statement] = STATE(496), - [sym_if_statement] = STATE(496), - [sym_switch_statement] = STATE(496), - [sym_case_statement] = STATE(496), - [sym_while_statement] = STATE(496), - [sym_do_statement] = STATE(496), - [sym_for_statement] = STATE(496), - [sym_return_statement] = STATE(496), - [sym_break_statement] = STATE(496), - [sym_continue_statement] = STATE(496), - [sym_goto_statement] = STATE(496), - [sym_seh_try_statement] = STATE(496), - [sym_seh_leave_statement] = STATE(496), - [sym_expression] = STATE(6685), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10787), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(496), - [sym_co_return_statement] = STATE(496), - [sym_co_yield_statement] = STATE(496), - [sym_throw_statement] = STATE(496), - [sym_try_statement] = STATE(496), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(496), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(155), - [sym_identifier] = ACTIONS(2307), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(162)] = { + [sym_declaration] = STATE(1987), + [sym_type_definition] = STATE(1987), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6418), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_expression_statement] = STATE(1987), + [sym_expression] = STATE(6703), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10455), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_alias_declaration] = STATE(1987), + [sym_init_statement] = STATE(178), + [sym_condition_declaration] = STATE(11262), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym___extension__] = ACTIONS(2089), + [anon_sym_typedef] = ACTIONS(2091), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(2302), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(83), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_default] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1220), - [anon_sym___leave] = ACTIONS(1222), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -78579,7 +81056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -78599,13 +81076,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1583), - [anon_sym_try] = ACTIONS(145), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -78615,112 +81089,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(177)] = { - [sym_attribute_declaration] = STATE(208), - [sym_compound_statement] = STATE(1142), - [sym_attributed_statement] = STATE(1142), - [sym_statement] = STATE(1129), - [sym_labeled_statement] = STATE(1142), - [sym_expression_statement] = STATE(1142), - [sym_if_statement] = STATE(1142), - [sym_switch_statement] = STATE(1142), - [sym_case_statement] = STATE(1142), - [sym_while_statement] = STATE(1142), - [sym_do_statement] = STATE(1142), - [sym_for_statement] = STATE(1142), - [sym_return_statement] = STATE(1142), - [sym_break_statement] = STATE(1142), - [sym_continue_statement] = STATE(1142), - [sym_goto_statement] = STATE(1142), - [sym_seh_try_statement] = STATE(1142), - [sym_seh_leave_statement] = STATE(1142), - [sym_expression] = STATE(6681), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11126), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(1142), - [sym_co_return_statement] = STATE(1142), - [sym_co_yield_statement] = STATE(1142), - [sym_throw_statement] = STATE(1142), - [sym_try_statement] = STATE(1142), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(1142), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(208), - [sym_identifier] = ACTIONS(2475), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(163)] = { + [sym_declaration] = STATE(6262), + [sym_type_definition] = STATE(6262), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6407), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_expression_statement] = STATE(6262), + [sym_expression] = STATE(6747), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10840), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_alias_declaration] = STATE(6262), + [sym__for_range_loop_body] = STATE(10886), + [sym_init_statement] = STATE(2706), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym___extension__] = ACTIONS(2210), + [anon_sym_typedef] = ACTIONS(2212), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(2214), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1800), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1810), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_goto] = ACTIONS(1814), - [anon_sym___try] = ACTIONS(1816), - [anon_sym___leave] = ACTIONS(1818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -78733,7 +81230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -78753,13 +81250,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1822), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1824), - [anon_sym_co_return] = ACTIONS(1826), - [anon_sym_co_yield] = ACTIONS(1828), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -78769,112 +81263,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(178)] = { - [sym_attribute_declaration] = STATE(176), - [sym_compound_statement] = STATE(496), - [sym_attributed_statement] = STATE(496), - [sym_statement] = STATE(482), - [sym_labeled_statement] = STATE(496), - [sym_expression_statement] = STATE(496), - [sym_if_statement] = STATE(496), - [sym_switch_statement] = STATE(496), - [sym_case_statement] = STATE(496), - [sym_while_statement] = STATE(496), - [sym_do_statement] = STATE(496), - [sym_for_statement] = STATE(496), - [sym_return_statement] = STATE(496), - [sym_break_statement] = STATE(496), - [sym_continue_statement] = STATE(496), - [sym_goto_statement] = STATE(496), - [sym_seh_try_statement] = STATE(496), - [sym_seh_leave_statement] = STATE(496), - [sym_expression] = STATE(6685), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10787), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(496), - [sym_co_return_statement] = STATE(496), - [sym_co_yield_statement] = STATE(496), - [sym_throw_statement] = STATE(496), - [sym_try_statement] = STATE(496), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(496), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(176), - [sym_identifier] = ACTIONS(2307), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(164)] = { + [sym_declaration] = STATE(6262), + [sym_type_definition] = STATE(6262), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6407), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_expression_statement] = STATE(6262), + [sym_expression] = STATE(6747), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10840), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_alias_declaration] = STATE(6262), + [sym__for_range_loop_body] = STATE(11267), + [sym_init_statement] = STATE(2706), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym___extension__] = ACTIONS(2210), + [anon_sym_typedef] = ACTIONS(2212), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(2214), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(83), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_default] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1220), - [anon_sym___leave] = ACTIONS(1222), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -78887,7 +81404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -78907,13 +81424,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1583), - [anon_sym_try] = ACTIONS(145), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -78923,266 +81437,483 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(179)] = { - [sym_attribute_declaration] = STATE(208), - [sym_compound_statement] = STATE(1142), - [sym_attributed_statement] = STATE(1142), - [sym_statement] = STATE(1134), - [sym_labeled_statement] = STATE(1142), - [sym_expression_statement] = STATE(1142), - [sym_if_statement] = STATE(1142), - [sym_switch_statement] = STATE(1142), - [sym_case_statement] = STATE(1142), - [sym_while_statement] = STATE(1142), - [sym_do_statement] = STATE(1142), - [sym_for_statement] = STATE(1142), - [sym_return_statement] = STATE(1142), - [sym_break_statement] = STATE(1142), - [sym_continue_statement] = STATE(1142), - [sym_goto_statement] = STATE(1142), - [sym_seh_try_statement] = STATE(1142), - [sym_seh_leave_statement] = STATE(1142), - [sym_expression] = STATE(6681), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11126), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(1142), - [sym_co_return_statement] = STATE(1142), - [sym_co_yield_statement] = STATE(1142), - [sym_throw_statement] = STATE(1142), - [sym_try_statement] = STATE(1142), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(1142), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(208), - [sym_identifier] = ACTIONS(2475), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1800), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1810), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_goto] = ACTIONS(1814), - [anon_sym___try] = ACTIONS(1816), - [anon_sym___leave] = ACTIONS(1818), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1824), - [anon_sym_co_return] = ACTIONS(1826), - [anon_sym_co_yield] = ACTIONS(1828), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [STATE(165)] = { + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(7524), + [sym__declarator] = STATE(9071), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8555), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(11243), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4723), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(11243), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(11403), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5427), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(11536), + [sym__unary_right_fold] = STATE(11566), + [sym__binary_fold] = STATE(11627), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7934), + [sym_qualified_identifier] = STATE(5371), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11671), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2222), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2226), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(2242), + [anon_sym___clrcall] = ACTIONS(2242), + [anon_sym___stdcall] = ACTIONS(2242), + [anon_sym___fastcall] = ACTIONS(2242), + [anon_sym___thiscall] = ACTIONS(2242), + [anon_sym___vectorcall] = ACTIONS(2242), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), }, - [STATE(180)] = { - [sym_attribute_declaration] = STATE(175), - [sym_compound_statement] = STATE(652), - [sym_attributed_statement] = STATE(652), - [sym_statement] = STATE(538), - [sym_labeled_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_if_statement] = STATE(652), - [sym_switch_statement] = STATE(652), - [sym_case_statement] = STATE(652), - [sym_while_statement] = STATE(652), - [sym_do_statement] = STATE(652), - [sym_for_statement] = STATE(652), - [sym_return_statement] = STATE(652), - [sym_break_statement] = STATE(652), - [sym_continue_statement] = STATE(652), - [sym_goto_statement] = STATE(652), - [sym_seh_try_statement] = STATE(652), - [sym_seh_leave_statement] = STATE(652), - [sym_expression] = STATE(6696), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10652), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(652), - [sym_co_return_statement] = STATE(652), - [sym_co_yield_statement] = STATE(652), - [sym_throw_statement] = STATE(652), - [sym_try_statement] = STATE(652), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(652), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(175), - [sym_identifier] = ACTIONS(2469), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(166)] = { + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(7524), + [sym__declarator] = STATE(9071), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8555), + [sym_array_declarator] = STATE(8555), + [sym_compound_statement] = STATE(10717), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4729), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10717), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(10915), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5427), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(10917), + [sym__unary_right_fold] = STATE(10922), + [sym__binary_fold] = STATE(10924), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7934), + [sym_qualified_identifier] = STATE(5371), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11050), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2222), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2226), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(2242), + [anon_sym___clrcall] = ACTIONS(2242), + [anon_sym___stdcall] = ACTIONS(2242), + [anon_sym___fastcall] = ACTIONS(2242), + [anon_sym___thiscall] = ACTIONS(2242), + [anon_sym___vectorcall] = ACTIONS(2242), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(167)] = { + [sym_declaration] = STATE(6262), + [sym_type_definition] = STATE(6262), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6407), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_expression_statement] = STATE(6262), + [sym_expression] = STATE(6747), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10840), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_alias_declaration] = STATE(6262), + [sym__for_range_loop_body] = STATE(10676), + [sym_init_statement] = STATE(2706), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym___extension__] = ACTIONS(2210), + [anon_sym_typedef] = ACTIONS(2212), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(2214), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_goto] = ACTIONS(1188), - [anon_sym___try] = ACTIONS(1190), - [anon_sym___leave] = ACTIONS(1192), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -79195,7 +81926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -79215,13 +81946,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1658), - [anon_sym_try] = ACTIONS(1196), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1198), - [anon_sym_co_return] = ACTIONS(1206), - [anon_sym_co_yield] = ACTIONS(1208), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -79231,112 +81959,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(181)] = { - [sym_attribute_declaration] = STATE(176), - [sym_compound_statement] = STATE(496), - [sym_attributed_statement] = STATE(496), - [sym_statement] = STATE(362), - [sym_labeled_statement] = STATE(496), - [sym_expression_statement] = STATE(496), - [sym_if_statement] = STATE(496), - [sym_switch_statement] = STATE(496), - [sym_case_statement] = STATE(496), - [sym_while_statement] = STATE(496), - [sym_do_statement] = STATE(496), - [sym_for_statement] = STATE(496), - [sym_return_statement] = STATE(496), - [sym_break_statement] = STATE(496), - [sym_continue_statement] = STATE(496), - [sym_goto_statement] = STATE(496), - [sym_seh_try_statement] = STATE(496), - [sym_seh_leave_statement] = STATE(496), - [sym_expression] = STATE(6685), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10787), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(496), - [sym_co_return_statement] = STATE(496), - [sym_co_yield_statement] = STATE(496), - [sym_throw_statement] = STATE(496), - [sym_try_statement] = STATE(496), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(496), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(176), - [sym_identifier] = ACTIONS(2307), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(168)] = { + [sym_declaration] = STATE(6262), + [sym_type_definition] = STATE(6262), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6407), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_expression_statement] = STATE(6262), + [sym_expression] = STATE(6747), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10840), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_alias_declaration] = STATE(6262), + [sym__for_range_loop_body] = STATE(10805), + [sym_init_statement] = STATE(2706), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2173), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym___extension__] = ACTIONS(2210), + [anon_sym_typedef] = ACTIONS(2212), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(2214), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(83), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_default] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1220), - [anon_sym___leave] = ACTIONS(1222), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -79349,7 +82100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -79369,13 +82120,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1583), - [anon_sym_try] = ACTIONS(145), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -79385,112 +82133,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(182)] = { - [sym_attribute_declaration] = STATE(169), - [sym_compound_statement] = STATE(550), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(430), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(2473), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(169)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_compound_statement] = STATE(9819), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(9791), + [sym_expression] = STATE(6683), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(9819), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_explicit_object_parameter_declaration] = STATE(9791), + [sym_optional_parameter_declaration] = STATE(9791), + [sym_variadic_parameter_declaration] = STATE(9791), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7963), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2522), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), + [anon_sym_RPAREN] = ACTIONS(2308), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2083), + [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1842), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2312), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -79503,7 +82273,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2322), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -79523,13 +82293,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1844), - [anon_sym_try] = ACTIONS(145), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -79539,112 +82306,1503 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(2324), }, - [STATE(183)] = { - [sym_attribute_declaration] = STATE(207), - [sym_compound_statement] = STATE(550), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(545), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(207), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [STATE(170)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(9862), + [sym_expression] = STATE(5271), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10386), + [sym_dependent_type] = STATE(4935), + [sym_optional_parameter_declaration] = STATE(9862), + [sym_variadic_parameter_declaration] = STATE(9862), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym__unary_left_fold] = STATE(10662), + [sym__unary_right_fold] = STATE(10665), + [sym__binary_fold] = STATE(10668), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7924), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(2049), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(5970), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_RPAREN] = ACTIONS(2328), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2338), + [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2342), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(2354), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(2382), + [sym_this] = ACTIONS(2364), + }, + [STATE(171)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(9862), + [sym_expression] = STATE(5306), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10386), + [sym_dependent_type] = STATE(4935), + [sym_optional_parameter_declaration] = STATE(9862), + [sym_variadic_parameter_declaration] = STATE(9862), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym__unary_left_fold] = STATE(10917), + [sym__unary_right_fold] = STATE(10922), + [sym__binary_fold] = STATE(10924), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7924), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(2049), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(5970), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_RPAREN] = ACTIONS(2328), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2338), + [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2342), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(2354), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(2382), + [sym_this] = ACTIONS(2364), + }, + [STATE(172)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(9862), + [sym_expression] = STATE(5336), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10386), + [sym_dependent_type] = STATE(4935), + [sym_optional_parameter_declaration] = STATE(9862), + [sym_variadic_parameter_declaration] = STATE(9862), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym__unary_left_fold] = STATE(11505), + [sym__unary_right_fold] = STATE(11613), + [sym__binary_fold] = STATE(11634), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7924), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(2049), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(5970), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_RPAREN] = ACTIONS(2328), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2338), + [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2342), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(2354), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(2382), + [sym_this] = ACTIONS(2364), + }, + [STATE(173)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(9862), + [sym_expression] = STATE(5357), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10386), + [sym_dependent_type] = STATE(4935), + [sym_optional_parameter_declaration] = STATE(9862), + [sym_variadic_parameter_declaration] = STATE(9862), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym__unary_left_fold] = STATE(11543), + [sym__unary_right_fold] = STATE(11546), + [sym__binary_fold] = STATE(11549), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7924), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(2049), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(5970), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_RPAREN] = ACTIONS(2328), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2338), + [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2342), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(2354), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(2382), + [sym_this] = ACTIONS(2364), + }, + [STATE(174)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(9862), + [sym_expression] = STATE(5366), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10386), + [sym_dependent_type] = STATE(4935), + [sym_optional_parameter_declaration] = STATE(9862), + [sym_variadic_parameter_declaration] = STATE(9862), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym__unary_left_fold] = STATE(11218), + [sym__unary_right_fold] = STATE(11219), + [sym__binary_fold] = STATE(11220), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7924), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(2049), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(5970), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_RPAREN] = ACTIONS(2328), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2338), + [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2342), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(2354), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(2382), + [sym_this] = ACTIONS(2364), + }, + [STATE(175)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(9862), + [sym_expression] = STATE(5333), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10386), + [sym_dependent_type] = STATE(4935), + [sym_optional_parameter_declaration] = STATE(9862), + [sym_variadic_parameter_declaration] = STATE(9862), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym__unary_left_fold] = STATE(10793), + [sym__unary_right_fold] = STATE(10798), + [sym__binary_fold] = STATE(10806), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7924), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(2049), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(5970), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_RPAREN] = ACTIONS(2328), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2338), + [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2342), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(2354), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(2382), + [sym_this] = ACTIONS(2364), + }, + [STATE(176)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(9862), + [sym_expression] = STATE(5389), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10386), + [sym_dependent_type] = STATE(4935), + [sym_optional_parameter_declaration] = STATE(9862), + [sym_variadic_parameter_declaration] = STATE(9862), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym__unary_left_fold] = STATE(11536), + [sym__unary_right_fold] = STATE(11566), + [sym__binary_fold] = STATE(11627), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7924), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(2049), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(5970), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_RPAREN] = ACTIONS(2328), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2338), + [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2342), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(2354), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(2382), + [sym_this] = ACTIONS(2364), + }, + [STATE(177)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(9862), + [sym_expression] = STATE(5317), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10386), + [sym_dependent_type] = STATE(4935), + [sym_optional_parameter_declaration] = STATE(9862), + [sym_variadic_parameter_declaration] = STATE(9862), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym__unary_left_fold] = STATE(11055), + [sym__unary_right_fold] = STATE(11097), + [sym__binary_fold] = STATE(11101), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7924), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(2049), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(5970), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_RPAREN] = ACTIONS(2328), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2338), + [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2342), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(2354), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(2382), + [sym_this] = ACTIONS(2364), + }, + [STATE(178)] = { + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(7512), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_expression] = STATE(6760), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11045), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4582), + [sym_template_function] = STATE(6009), + [sym_condition_declaration] = STATE(11045), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(4604), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(2142), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4626), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2083), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -79657,7 +83815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(115), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -79677,13 +83835,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(241), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -79693,112 +83848,424 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(184)] = { - [sym_attribute_declaration] = STATE(208), - [sym_compound_statement] = STATE(1142), - [sym_attributed_statement] = STATE(1142), - [sym_statement] = STATE(1080), - [sym_labeled_statement] = STATE(1142), - [sym_expression_statement] = STATE(1142), - [sym_if_statement] = STATE(1142), - [sym_switch_statement] = STATE(1142), - [sym_case_statement] = STATE(1142), - [sym_while_statement] = STATE(1142), - [sym_do_statement] = STATE(1142), - [sym_for_statement] = STATE(1142), - [sym_return_statement] = STATE(1142), - [sym_break_statement] = STATE(1142), - [sym_continue_statement] = STATE(1142), - [sym_goto_statement] = STATE(1142), - [sym_seh_try_statement] = STATE(1142), - [sym_seh_leave_statement] = STATE(1142), - [sym_expression] = STATE(6681), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11126), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(1142), - [sym_co_return_statement] = STATE(1142), - [sym_co_yield_statement] = STATE(1142), - [sym_throw_statement] = STATE(1142), - [sym_try_statement] = STATE(1142), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(1142), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(208), - [sym_identifier] = ACTIONS(2475), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(179)] = { + [sym_expression] = STATE(3820), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_initializer_list] = STATE(3937), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2384), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2386), + [aux_sym_preproc_if_token2] = ACTIONS(2386), + [aux_sym_preproc_else_token1] = ACTIONS(2386), + [aux_sym_preproc_elif_token1] = ACTIONS(2384), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2386), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2386), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_PERCENT] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_CARET] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_EQ_EQ] = ACTIONS(2386), + [anon_sym_BANG_EQ] = ACTIONS(2386), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_GT_EQ] = ACTIONS(2386), + [anon_sym_LT_EQ] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2384), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_EQ] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_QMARK] = ACTIONS(2386), + [anon_sym_STAR_EQ] = ACTIONS(2386), + [anon_sym_SLASH_EQ] = ACTIONS(2386), + [anon_sym_PERCENT_EQ] = ACTIONS(2386), + [anon_sym_PLUS_EQ] = ACTIONS(2386), + [anon_sym_DASH_EQ] = ACTIONS(2386), + [anon_sym_LT_LT_EQ] = ACTIONS(2386), + [anon_sym_GT_GT_EQ] = ACTIONS(2386), + [anon_sym_AMP_EQ] = ACTIONS(2386), + [anon_sym_CARET_EQ] = ACTIONS(2386), + [anon_sym_PIPE_EQ] = ACTIONS(2386), + [anon_sym_and_eq] = ACTIONS(2384), + [anon_sym_or_eq] = ACTIONS(2384), + [anon_sym_xor_eq] = ACTIONS(2384), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_LT_EQ_GT] = ACTIONS(2386), + [anon_sym_or] = ACTIONS(2384), + [anon_sym_and] = ACTIONS(2384), + [anon_sym_bitor] = ACTIONS(2384), + [anon_sym_xor] = ACTIONS(2384), + [anon_sym_bitand] = ACTIONS(2384), + [anon_sym_not_eq] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DOT_STAR] = ACTIONS(2386), + [anon_sym_DASH_GT] = ACTIONS(2386), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(180)] = { + [sym_attribute_declaration] = STATE(180), + [sym_compound_statement] = STATE(637), + [sym_attributed_statement] = STATE(637), + [sym_statement] = STATE(620), + [sym_labeled_statement] = STATE(637), + [sym_expression_statement] = STATE(637), + [sym_if_statement] = STATE(637), + [sym_switch_statement] = STATE(637), + [sym_case_statement] = STATE(637), + [sym_while_statement] = STATE(637), + [sym_do_statement] = STATE(637), + [sym_for_statement] = STATE(637), + [sym_return_statement] = STATE(637), + [sym_break_statement] = STATE(637), + [sym_continue_statement] = STATE(637), + [sym_goto_statement] = STATE(637), + [sym_seh_try_statement] = STATE(637), + [sym_seh_leave_statement] = STATE(637), + [sym_expression] = STATE(6804), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11583), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(637), + [sym_co_return_statement] = STATE(637), + [sym_co_yield_statement] = STATE(637), + [sym_throw_statement] = STATE(637), + [sym_try_statement] = STATE(637), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(637), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(180), + [sym_identifier] = ACTIONS(2440), + [anon_sym_LPAREN2] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(2446), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2455), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2461), + [anon_sym_COLON_COLON] = ACTIONS(2463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2469), + [anon_sym_LBRACK] = ACTIONS(2472), + [sym_primitive_type] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_switch] = ACTIONS(2481), + [anon_sym_case] = ACTIONS(2484), + [anon_sym_default] = ACTIONS(2487), + [anon_sym_while] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(2496), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_break] = ACTIONS(2502), + [anon_sym_continue] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2508), + [anon_sym___try] = ACTIONS(2511), + [anon_sym___leave] = ACTIONS(2514), + [anon_sym_not] = ACTIONS(2449), + [anon_sym_compl] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2517), + [anon_sym_PLUS_PLUS] = ACTIONS(2517), + [anon_sym_sizeof] = ACTIONS(2520), + [anon_sym___alignof__] = ACTIONS(2523), + [anon_sym___alignof] = ACTIONS(2523), + [anon_sym__alignof] = ACTIONS(2523), + [anon_sym_alignof] = ACTIONS(2523), + [anon_sym__Alignof] = ACTIONS(2523), + [anon_sym_offsetof] = ACTIONS(2526), + [anon_sym__Generic] = ACTIONS(2529), + [anon_sym_typename] = ACTIONS(2532), + [anon_sym_asm] = ACTIONS(2535), + [anon_sym___asm__] = ACTIONS(2535), + [anon_sym___asm] = ACTIONS(2535), + [sym_number_literal] = ACTIONS(2538), + [anon_sym_L_SQUOTE] = ACTIONS(2541), + [anon_sym_u_SQUOTE] = ACTIONS(2541), + [anon_sym_U_SQUOTE] = ACTIONS(2541), + [anon_sym_u8_SQUOTE] = ACTIONS(2541), + [anon_sym_SQUOTE] = ACTIONS(2541), + [anon_sym_L_DQUOTE] = ACTIONS(2544), + [anon_sym_u_DQUOTE] = ACTIONS(2544), + [anon_sym_U_DQUOTE] = ACTIONS(2544), + [anon_sym_u8_DQUOTE] = ACTIONS(2544), + [anon_sym_DQUOTE] = ACTIONS(2544), + [sym_true] = ACTIONS(2547), + [sym_false] = ACTIONS(2547), + [anon_sym_NULL] = ACTIONS(2550), + [anon_sym_nullptr] = ACTIONS(2550), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2553), + [anon_sym_template] = ACTIONS(2556), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2562), + [anon_sym_throw] = ACTIONS(2565), + [anon_sym_co_return] = ACTIONS(2568), + [anon_sym_co_yield] = ACTIONS(2571), + [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(2577), + [anon_sym_new] = ACTIONS(2580), + [anon_sym_requires] = ACTIONS(2583), + [anon_sym_CARET_CARET] = ACTIONS(2586), + [anon_sym_LBRACK_COLON] = ACTIONS(2589), + [sym_this] = ACTIONS(2547), + }, + [STATE(181)] = { + [sym_attribute_declaration] = STATE(180), + [sym_compound_statement] = STATE(637), + [sym_attributed_statement] = STATE(637), + [sym_statement] = STATE(620), + [sym_labeled_statement] = STATE(637), + [sym_expression_statement] = STATE(637), + [sym_if_statement] = STATE(637), + [sym_switch_statement] = STATE(637), + [sym_case_statement] = STATE(637), + [sym_while_statement] = STATE(637), + [sym_do_statement] = STATE(637), + [sym_for_statement] = STATE(637), + [sym_return_statement] = STATE(637), + [sym_break_statement] = STATE(637), + [sym_continue_statement] = STATE(637), + [sym_goto_statement] = STATE(637), + [sym_seh_try_statement] = STATE(637), + [sym_seh_leave_statement] = STATE(637), + [sym_expression] = STATE(6804), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11583), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(637), + [sym_co_return_statement] = STATE(637), + [sym_co_yield_statement] = STATE(637), + [sym_throw_statement] = STATE(637), + [sym_try_statement] = STATE(637), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(637), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(180), + [sym_identifier] = ACTIONS(2592), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_using] = ACTIONS(2596), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1800), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1810), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_goto] = ACTIONS(1814), - [anon_sym___try] = ACTIONS(1816), - [anon_sym___leave] = ACTIONS(1818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1125), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1141), + [anon_sym___leave] = ACTIONS(1143), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -79811,7 +84278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -79831,13 +84298,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1822), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1943), + [anon_sym_try] = ACTIONS(1151), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1824), - [anon_sym_co_return] = ACTIONS(1826), - [anon_sym_co_yield] = ACTIONS(1828), + [anon_sym_throw] = ACTIONS(1153), + [anon_sym_co_return] = ACTIONS(1161), + [anon_sym_co_yield] = ACTIONS(1163), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -79847,112 +84314,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(185)] = { - [sym_attribute_declaration] = STATE(182), - [sym_compound_statement] = STATE(550), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(11163), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [sym_identifier] = ACTIONS(2473), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(182)] = { + [sym_attribute_declaration] = STATE(186), + [sym_compound_statement] = STATE(339), + [sym_attributed_statement] = STATE(339), + [sym_statement] = STATE(349), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(2604), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_using] = ACTIONS(2606), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1842), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -79965,7 +84433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -79985,13 +84453,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1844), - [anon_sym_try] = ACTIONS(145), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1672), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -80001,99 +84469,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(186)] = { - [sym_attribute_declaration] = STATE(176), - [sym_compound_statement] = STATE(496), - [sym_attributed_statement] = STATE(496), - [sym_statement] = STATE(484), - [sym_labeled_statement] = STATE(496), - [sym_expression_statement] = STATE(496), - [sym_if_statement] = STATE(496), - [sym_switch_statement] = STATE(496), - [sym_case_statement] = STATE(496), - [sym_while_statement] = STATE(496), - [sym_do_statement] = STATE(496), - [sym_for_statement] = STATE(496), - [sym_return_statement] = STATE(496), - [sym_break_statement] = STATE(496), - [sym_continue_statement] = STATE(496), - [sym_goto_statement] = STATE(496), - [sym_seh_try_statement] = STATE(496), - [sym_seh_leave_statement] = STATE(496), - [sym_expression] = STATE(6685), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10787), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(496), - [sym_co_return_statement] = STATE(496), - [sym_co_yield_statement] = STATE(496), - [sym_throw_statement] = STATE(496), - [sym_try_statement] = STATE(496), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(496), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(176), - [sym_identifier] = ACTIONS(2307), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(183)] = { + [sym_expression] = STATE(3820), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_initializer_list] = STATE(3937), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2386), + [anon_sym_RPAREN] = ACTIONS(2386), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2610), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_PERCENT] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_CARET] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_EQ_EQ] = ACTIONS(2386), + [anon_sym_BANG_EQ] = ACTIONS(2386), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_GT_EQ] = ACTIONS(2386), + [anon_sym_LT_EQ] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2384), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_EQ] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_QMARK] = ACTIONS(2386), + [anon_sym_STAR_EQ] = ACTIONS(2386), + [anon_sym_SLASH_EQ] = ACTIONS(2386), + [anon_sym_PERCENT_EQ] = ACTIONS(2386), + [anon_sym_PLUS_EQ] = ACTIONS(2386), + [anon_sym_DASH_EQ] = ACTIONS(2386), + [anon_sym_LT_LT_EQ] = ACTIONS(2386), + [anon_sym_GT_GT_EQ] = ACTIONS(2386), + [anon_sym_AMP_EQ] = ACTIONS(2386), + [anon_sym_CARET_EQ] = ACTIONS(2386), + [anon_sym_PIPE_EQ] = ACTIONS(2386), + [anon_sym_and_eq] = ACTIONS(2384), + [anon_sym_or_eq] = ACTIONS(2384), + [anon_sym_xor_eq] = ACTIONS(2384), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_LT_EQ_GT] = ACTIONS(2386), + [anon_sym_or] = ACTIONS(2384), + [anon_sym_and] = ACTIONS(2384), + [anon_sym_bitor] = ACTIONS(2384), + [anon_sym_xor] = ACTIONS(2384), + [anon_sym_bitand] = ACTIONS(2384), + [anon_sym_not_eq] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DOT_STAR] = ACTIONS(2386), + [anon_sym_DASH_GT] = ACTIONS(2386), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [anon_sym_COLON_RBRACK] = ACTIONS(2386), + [sym_this] = ACTIONS(2418), + }, + [STATE(184)] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(578), + [sym_attributed_statement] = STATE(578), + [sym_statement] = STATE(609), + [sym_labeled_statement] = STATE(578), + [sym_expression_statement] = STATE(578), + [sym_if_statement] = STATE(578), + [sym_switch_statement] = STATE(578), + [sym_case_statement] = STATE(578), + [sym_while_statement] = STATE(578), + [sym_do_statement] = STATE(578), + [sym_for_statement] = STATE(578), + [sym_return_statement] = STATE(578), + [sym_break_statement] = STATE(578), + [sym_continue_statement] = STATE(578), + [sym_goto_statement] = STATE(578), + [sym_seh_try_statement] = STATE(578), + [sym_seh_leave_statement] = STATE(578), + [sym_expression] = STATE(6807), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11035), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(578), + [sym_co_return_statement] = STATE(578), + [sym_co_yield_statement] = STATE(578), + [sym_throw_statement] = STATE(578), + [sym_try_statement] = STATE(578), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(578), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(2636), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_using] = ACTIONS(2638), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_if] = ACTIONS(83), [anon_sym_switch] = ACTIONS(85), [anon_sym_case] = ACTIONS(87), @@ -80105,8 +84729,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(99), [anon_sym_continue] = ACTIONS(101), [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1220), - [anon_sym___leave] = ACTIONS(1222), + [anon_sym___try] = ACTIONS(1324), + [anon_sym___leave] = ACTIONS(1326), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -80119,7 +84743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -80139,8 +84763,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1583), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1949), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -80155,99 +84779,565 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, + [STATE(185)] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(578), + [sym_attributed_statement] = STATE(578), + [sym_statement] = STATE(609), + [sym_labeled_statement] = STATE(578), + [sym_expression_statement] = STATE(578), + [sym_if_statement] = STATE(578), + [sym_switch_statement] = STATE(578), + [sym_case_statement] = STATE(578), + [sym_while_statement] = STATE(578), + [sym_do_statement] = STATE(578), + [sym_for_statement] = STATE(578), + [sym_return_statement] = STATE(578), + [sym_break_statement] = STATE(578), + [sym_continue_statement] = STATE(578), + [sym_goto_statement] = STATE(578), + [sym_seh_try_statement] = STATE(578), + [sym_seh_leave_statement] = STATE(578), + [sym_expression] = STATE(6807), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11035), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(578), + [sym_co_return_statement] = STATE(578), + [sym_co_yield_statement] = STATE(578), + [sym_throw_statement] = STATE(578), + [sym_try_statement] = STATE(578), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(578), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(2640), + [anon_sym_LPAREN2] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(2446), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2643), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2461), + [anon_sym_COLON_COLON] = ACTIONS(2463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2646), + [anon_sym_LBRACK] = ACTIONS(2472), + [sym_primitive_type] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_switch] = ACTIONS(2652), + [anon_sym_case] = ACTIONS(2655), + [anon_sym_default] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2661), + [anon_sym_do] = ACTIONS(2664), + [anon_sym_for] = ACTIONS(2667), + [anon_sym_return] = ACTIONS(2670), + [anon_sym_break] = ACTIONS(2673), + [anon_sym_continue] = ACTIONS(2676), + [anon_sym_goto] = ACTIONS(2679), + [anon_sym___try] = ACTIONS(2682), + [anon_sym___leave] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2449), + [anon_sym_compl] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2517), + [anon_sym_PLUS_PLUS] = ACTIONS(2517), + [anon_sym_sizeof] = ACTIONS(2520), + [anon_sym___alignof__] = ACTIONS(2523), + [anon_sym___alignof] = ACTIONS(2523), + [anon_sym__alignof] = ACTIONS(2523), + [anon_sym_alignof] = ACTIONS(2523), + [anon_sym__Alignof] = ACTIONS(2523), + [anon_sym_offsetof] = ACTIONS(2526), + [anon_sym__Generic] = ACTIONS(2529), + [anon_sym_typename] = ACTIONS(2532), + [anon_sym_asm] = ACTIONS(2535), + [anon_sym___asm__] = ACTIONS(2535), + [anon_sym___asm] = ACTIONS(2535), + [sym_number_literal] = ACTIONS(2538), + [anon_sym_L_SQUOTE] = ACTIONS(2541), + [anon_sym_u_SQUOTE] = ACTIONS(2541), + [anon_sym_U_SQUOTE] = ACTIONS(2541), + [anon_sym_u8_SQUOTE] = ACTIONS(2541), + [anon_sym_SQUOTE] = ACTIONS(2541), + [anon_sym_L_DQUOTE] = ACTIONS(2544), + [anon_sym_u_DQUOTE] = ACTIONS(2544), + [anon_sym_U_DQUOTE] = ACTIONS(2544), + [anon_sym_u8_DQUOTE] = ACTIONS(2544), + [anon_sym_DQUOTE] = ACTIONS(2544), + [sym_true] = ACTIONS(2547), + [sym_false] = ACTIONS(2547), + [anon_sym_NULL] = ACTIONS(2550), + [anon_sym_nullptr] = ACTIONS(2550), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2553), + [anon_sym_template] = ACTIONS(2688), + [anon_sym_try] = ACTIONS(2691), + [anon_sym_delete] = ACTIONS(2562), + [anon_sym_throw] = ACTIONS(2694), + [anon_sym_co_return] = ACTIONS(2697), + [anon_sym_co_yield] = ACTIONS(2700), + [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(2577), + [anon_sym_new] = ACTIONS(2580), + [anon_sym_requires] = ACTIONS(2583), + [anon_sym_CARET_CARET] = ACTIONS(2586), + [anon_sym_LBRACK_COLON] = ACTIONS(2589), + [sym_this] = ACTIONS(2547), + }, + [STATE(186)] = { + [sym_attribute_declaration] = STATE(186), + [sym_compound_statement] = STATE(339), + [sym_attributed_statement] = STATE(339), + [sym_statement] = STATE(349), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(2703), + [anon_sym_LPAREN2] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(2446), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2461), + [anon_sym_COLON_COLON] = ACTIONS(2463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2472), + [sym_primitive_type] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_switch] = ACTIONS(2715), + [anon_sym_case] = ACTIONS(2718), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_do] = ACTIONS(2727), + [anon_sym_for] = ACTIONS(2730), + [anon_sym_return] = ACTIONS(2733), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2739), + [anon_sym_goto] = ACTIONS(2742), + [anon_sym___try] = ACTIONS(2745), + [anon_sym___leave] = ACTIONS(2748), + [anon_sym_not] = ACTIONS(2449), + [anon_sym_compl] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2517), + [anon_sym_PLUS_PLUS] = ACTIONS(2517), + [anon_sym_sizeof] = ACTIONS(2520), + [anon_sym___alignof__] = ACTIONS(2523), + [anon_sym___alignof] = ACTIONS(2523), + [anon_sym__alignof] = ACTIONS(2523), + [anon_sym_alignof] = ACTIONS(2523), + [anon_sym__Alignof] = ACTIONS(2523), + [anon_sym_offsetof] = ACTIONS(2526), + [anon_sym__Generic] = ACTIONS(2529), + [anon_sym_typename] = ACTIONS(2532), + [anon_sym_asm] = ACTIONS(2535), + [anon_sym___asm__] = ACTIONS(2535), + [anon_sym___asm] = ACTIONS(2535), + [sym_number_literal] = ACTIONS(2538), + [anon_sym_L_SQUOTE] = ACTIONS(2541), + [anon_sym_u_SQUOTE] = ACTIONS(2541), + [anon_sym_U_SQUOTE] = ACTIONS(2541), + [anon_sym_u8_SQUOTE] = ACTIONS(2541), + [anon_sym_SQUOTE] = ACTIONS(2541), + [anon_sym_L_DQUOTE] = ACTIONS(2544), + [anon_sym_u_DQUOTE] = ACTIONS(2544), + [anon_sym_U_DQUOTE] = ACTIONS(2544), + [anon_sym_u8_DQUOTE] = ACTIONS(2544), + [anon_sym_DQUOTE] = ACTIONS(2544), + [sym_true] = ACTIONS(2547), + [sym_false] = ACTIONS(2547), + [anon_sym_NULL] = ACTIONS(2550), + [anon_sym_nullptr] = ACTIONS(2550), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2553), + [anon_sym_template] = ACTIONS(2751), + [anon_sym_try] = ACTIONS(2754), + [anon_sym_delete] = ACTIONS(2562), + [anon_sym_throw] = ACTIONS(2757), + [anon_sym_co_return] = ACTIONS(2760), + [anon_sym_co_yield] = ACTIONS(2763), + [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(2577), + [anon_sym_new] = ACTIONS(2580), + [anon_sym_requires] = ACTIONS(2583), + [anon_sym_CARET_CARET] = ACTIONS(2586), + [anon_sym_LBRACK_COLON] = ACTIONS(2589), + [sym_this] = ACTIONS(2547), + }, [STATE(187)] = { - [sym_attribute_declaration] = STATE(207), - [sym_compound_statement] = STATE(550), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(722), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(207), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym_attribute_declaration] = STATE(187), + [sym_compound_statement] = STATE(772), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(651), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [sym_identifier] = ACTIONS(2766), + [anon_sym_LPAREN2] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(2446), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2769), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2461), + [anon_sym_COLON_COLON] = ACTIONS(2463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2472), + [sym_primitive_type] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2775), + [anon_sym_switch] = ACTIONS(2778), + [anon_sym_case] = ACTIONS(2781), + [anon_sym_default] = ACTIONS(2784), + [anon_sym_while] = ACTIONS(2787), + [anon_sym_do] = ACTIONS(2790), + [anon_sym_for] = ACTIONS(2793), + [anon_sym_return] = ACTIONS(2796), + [anon_sym_break] = ACTIONS(2799), + [anon_sym_continue] = ACTIONS(2802), + [anon_sym_goto] = ACTIONS(2805), + [anon_sym___try] = ACTIONS(2808), + [anon_sym___leave] = ACTIONS(2811), + [anon_sym_not] = ACTIONS(2449), + [anon_sym_compl] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2517), + [anon_sym_PLUS_PLUS] = ACTIONS(2517), + [anon_sym_sizeof] = ACTIONS(2520), + [anon_sym___alignof__] = ACTIONS(2523), + [anon_sym___alignof] = ACTIONS(2523), + [anon_sym__alignof] = ACTIONS(2523), + [anon_sym_alignof] = ACTIONS(2523), + [anon_sym__Alignof] = ACTIONS(2523), + [anon_sym_offsetof] = ACTIONS(2526), + [anon_sym__Generic] = ACTIONS(2529), + [anon_sym_typename] = ACTIONS(2532), + [anon_sym_asm] = ACTIONS(2535), + [anon_sym___asm__] = ACTIONS(2535), + [anon_sym___asm] = ACTIONS(2535), + [sym_number_literal] = ACTIONS(2538), + [anon_sym_L_SQUOTE] = ACTIONS(2541), + [anon_sym_u_SQUOTE] = ACTIONS(2541), + [anon_sym_U_SQUOTE] = ACTIONS(2541), + [anon_sym_u8_SQUOTE] = ACTIONS(2541), + [anon_sym_SQUOTE] = ACTIONS(2541), + [anon_sym_L_DQUOTE] = ACTIONS(2544), + [anon_sym_u_DQUOTE] = ACTIONS(2544), + [anon_sym_U_DQUOTE] = ACTIONS(2544), + [anon_sym_u8_DQUOTE] = ACTIONS(2544), + [anon_sym_DQUOTE] = ACTIONS(2544), + [sym_true] = ACTIONS(2547), + [sym_false] = ACTIONS(2547), + [anon_sym_NULL] = ACTIONS(2550), + [anon_sym_nullptr] = ACTIONS(2550), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2553), + [anon_sym_template] = ACTIONS(2814), + [anon_sym_try] = ACTIONS(2817), + [anon_sym_delete] = ACTIONS(2562), + [anon_sym_throw] = ACTIONS(2820), + [anon_sym_co_return] = ACTIONS(2823), + [anon_sym_co_yield] = ACTIONS(2826), + [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(2577), + [anon_sym_new] = ACTIONS(2580), + [anon_sym_requires] = ACTIONS(2583), + [anon_sym_CARET_CARET] = ACTIONS(2586), + [anon_sym_LBRACK_COLON] = ACTIONS(2589), + [sym_this] = ACTIONS(2547), + }, + [STATE(188)] = { + [sym_attribute_declaration] = STATE(187), + [sym_compound_statement] = STATE(772), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(651), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [sym_identifier] = ACTIONS(2829), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_using] = ACTIONS(2831), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_if] = ACTIONS(207), [anon_sym_switch] = ACTIONS(209), [anon_sym_case] = ACTIONS(211), @@ -80273,7 +85363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -80293,13 +85383,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(241), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2018), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -80309,99 +85399,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(188)] = { - [sym_attribute_declaration] = STATE(176), - [sym_compound_statement] = STATE(496), - [sym_attributed_statement] = STATE(496), - [sym_statement] = STATE(485), - [sym_labeled_statement] = STATE(496), - [sym_expression_statement] = STATE(496), - [sym_if_statement] = STATE(496), - [sym_switch_statement] = STATE(496), - [sym_case_statement] = STATE(496), - [sym_while_statement] = STATE(496), - [sym_do_statement] = STATE(496), - [sym_for_statement] = STATE(496), - [sym_return_statement] = STATE(496), - [sym_break_statement] = STATE(496), - [sym_continue_statement] = STATE(496), - [sym_goto_statement] = STATE(496), - [sym_seh_try_statement] = STATE(496), - [sym_seh_leave_statement] = STATE(496), - [sym_expression] = STATE(6685), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10787), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(496), - [sym_co_return_statement] = STATE(496), - [sym_co_yield_statement] = STATE(496), - [sym_throw_statement] = STATE(496), - [sym_try_statement] = STATE(496), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(496), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(176), - [sym_identifier] = ACTIONS(2307), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(189)] = { + [sym_attribute_declaration] = STATE(214), + [sym_compound_statement] = STATE(578), + [sym_attributed_statement] = STATE(578), + [sym_statement] = STATE(559), + [sym_labeled_statement] = STATE(578), + [sym_expression_statement] = STATE(578), + [sym_if_statement] = STATE(578), + [sym_switch_statement] = STATE(578), + [sym_case_statement] = STATE(578), + [sym_while_statement] = STATE(578), + [sym_do_statement] = STATE(578), + [sym_for_statement] = STATE(578), + [sym_return_statement] = STATE(578), + [sym_break_statement] = STATE(578), + [sym_continue_statement] = STATE(578), + [sym_goto_statement] = STATE(578), + [sym_seh_try_statement] = STATE(578), + [sym_seh_leave_statement] = STATE(578), + [sym_expression] = STATE(6807), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11035), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(578), + [sym_co_return_statement] = STATE(578), + [sym_co_yield_statement] = STATE(578), + [sym_throw_statement] = STATE(578), + [sym_try_statement] = STATE(578), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(578), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(214), + [sym_identifier] = ACTIONS(2636), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_if] = ACTIONS(83), [anon_sym_switch] = ACTIONS(85), [anon_sym_case] = ACTIONS(87), @@ -80413,8 +85503,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(99), [anon_sym_continue] = ACTIONS(101), [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1220), - [anon_sym___leave] = ACTIONS(1222), + [anon_sym___try] = ACTIONS(1324), + [anon_sym___leave] = ACTIONS(1326), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -80427,7 +85517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -80447,8 +85537,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1583), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1949), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -80463,112 +85553,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(189)] = { - [sym_attribute_declaration] = STATE(175), - [sym_compound_statement] = STATE(652), - [sym_attributed_statement] = STATE(652), - [sym_statement] = STATE(546), - [sym_labeled_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_if_statement] = STATE(652), - [sym_switch_statement] = STATE(652), - [sym_case_statement] = STATE(652), - [sym_while_statement] = STATE(652), - [sym_do_statement] = STATE(652), - [sym_for_statement] = STATE(652), - [sym_return_statement] = STATE(652), - [sym_break_statement] = STATE(652), - [sym_continue_statement] = STATE(652), - [sym_goto_statement] = STATE(652), - [sym_seh_try_statement] = STATE(652), - [sym_seh_leave_statement] = STATE(652), - [sym_expression] = STATE(6696), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10652), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(652), - [sym_co_return_statement] = STATE(652), - [sym_co_yield_statement] = STATE(652), - [sym_throw_statement] = STATE(652), - [sym_try_statement] = STATE(652), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(652), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(175), - [sym_identifier] = ACTIONS(2469), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(190)] = { + [sym_attribute_declaration] = STATE(215), + [sym_compound_statement] = STATE(637), + [sym_attributed_statement] = STATE(637), + [sym_statement] = STATE(616), + [sym_labeled_statement] = STATE(637), + [sym_expression_statement] = STATE(637), + [sym_if_statement] = STATE(637), + [sym_switch_statement] = STATE(637), + [sym_case_statement] = STATE(637), + [sym_while_statement] = STATE(637), + [sym_do_statement] = STATE(637), + [sym_for_statement] = STATE(637), + [sym_return_statement] = STATE(637), + [sym_break_statement] = STATE(637), + [sym_continue_statement] = STATE(637), + [sym_goto_statement] = STATE(637), + [sym_seh_try_statement] = STATE(637), + [sym_seh_leave_statement] = STATE(637), + [sym_expression] = STATE(6804), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11583), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(637), + [sym_co_return_statement] = STATE(637), + [sym_co_yield_statement] = STATE(637), + [sym_throw_statement] = STATE(637), + [sym_try_statement] = STATE(637), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(637), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(215), + [sym_identifier] = ACTIONS(2592), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_goto] = ACTIONS(1188), - [anon_sym___try] = ACTIONS(1190), - [anon_sym___leave] = ACTIONS(1192), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1125), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1141), + [anon_sym___leave] = ACTIONS(1143), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -80581,7 +85671,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -80601,13 +85691,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1658), - [anon_sym_try] = ACTIONS(1196), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1943), + [anon_sym_try] = ACTIONS(1151), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1198), - [anon_sym_co_return] = ACTIONS(1206), - [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_throw] = ACTIONS(1153), + [anon_sym_co_return] = ACTIONS(1161), + [anon_sym_co_yield] = ACTIONS(1163), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -80617,266 +85707,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(190)] = { - [sym_expression] = STATE(3678), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_initializer_list] = STATE(3758), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_COMMA] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(2503), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2024), - [anon_sym_PLUS] = ACTIONS(2024), - [anon_sym_STAR] = ACTIONS(2024), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - [anon_sym_EQ_EQ] = ACTIONS(2026), - [anon_sym_BANG_EQ] = ACTIONS(2026), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2026), - [anon_sym_LT_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2024), - [anon_sym_GT_GT] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2026), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym___attribute__] = ACTIONS(2024), - [anon_sym___attribute] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_EQ] = ACTIONS(2024), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_QMARK] = ACTIONS(2026), - [anon_sym_STAR_EQ] = ACTIONS(2026), - [anon_sym_SLASH_EQ] = ACTIONS(2026), - [anon_sym_PERCENT_EQ] = ACTIONS(2026), - [anon_sym_PLUS_EQ] = ACTIONS(2026), - [anon_sym_DASH_EQ] = ACTIONS(2026), - [anon_sym_LT_LT_EQ] = ACTIONS(2026), - [anon_sym_GT_GT_EQ] = ACTIONS(2026), - [anon_sym_AMP_EQ] = ACTIONS(2026), - [anon_sym_CARET_EQ] = ACTIONS(2026), - [anon_sym_PIPE_EQ] = ACTIONS(2026), - [anon_sym_and_eq] = ACTIONS(2024), - [anon_sym_or_eq] = ACTIONS(2024), - [anon_sym_xor_eq] = ACTIONS(2024), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_LT_EQ_GT] = ACTIONS(2026), - [anon_sym_or] = ACTIONS(2024), - [anon_sym_and] = ACTIONS(2024), - [anon_sym_bitor] = ACTIONS(2024), - [anon_sym_xor] = ACTIONS(2024), - [anon_sym_bitand] = ACTIONS(2024), - [anon_sym_not_eq] = ACTIONS(2024), - [anon_sym_DASH_DASH] = ACTIONS(2026), - [anon_sym_PLUS_PLUS] = ACTIONS(2026), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2026), - [anon_sym_DASH_GT] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, [STATE(191)] = { - [sym_attribute_declaration] = STATE(176), - [sym_compound_statement] = STATE(496), - [sym_attributed_statement] = STATE(496), - [sym_statement] = STATE(491), - [sym_labeled_statement] = STATE(496), - [sym_expression_statement] = STATE(496), - [sym_if_statement] = STATE(496), - [sym_switch_statement] = STATE(496), - [sym_case_statement] = STATE(496), - [sym_while_statement] = STATE(496), - [sym_do_statement] = STATE(496), - [sym_for_statement] = STATE(496), - [sym_return_statement] = STATE(496), - [sym_break_statement] = STATE(496), - [sym_continue_statement] = STATE(496), - [sym_goto_statement] = STATE(496), - [sym_seh_try_statement] = STATE(496), - [sym_seh_leave_statement] = STATE(496), - [sym_expression] = STATE(6685), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10787), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(496), - [sym_co_return_statement] = STATE(496), - [sym_co_yield_statement] = STATE(496), - [sym_throw_statement] = STATE(496), - [sym_try_statement] = STATE(496), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(496), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(176), - [sym_identifier] = ACTIONS(2307), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym_attribute_declaration] = STATE(215), + [sym_compound_statement] = STATE(637), + [sym_attributed_statement] = STATE(637), + [sym_statement] = STATE(619), + [sym_labeled_statement] = STATE(637), + [sym_expression_statement] = STATE(637), + [sym_if_statement] = STATE(637), + [sym_switch_statement] = STATE(637), + [sym_case_statement] = STATE(637), + [sym_while_statement] = STATE(637), + [sym_do_statement] = STATE(637), + [sym_for_statement] = STATE(637), + [sym_return_statement] = STATE(637), + [sym_break_statement] = STATE(637), + [sym_continue_statement] = STATE(637), + [sym_goto_statement] = STATE(637), + [sym_seh_try_statement] = STATE(637), + [sym_seh_leave_statement] = STATE(637), + [sym_expression] = STATE(6804), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11583), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(637), + [sym_co_return_statement] = STATE(637), + [sym_co_yield_statement] = STATE(637), + [sym_throw_statement] = STATE(637), + [sym_try_statement] = STATE(637), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(637), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(215), + [sym_identifier] = ACTIONS(2592), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(83), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_default] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1220), - [anon_sym___leave] = ACTIONS(1222), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1125), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1141), + [anon_sym___leave] = ACTIONS(1143), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -80889,7 +85825,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -80909,13 +85845,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1583), - [anon_sym_try] = ACTIONS(145), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1943), + [anon_sym_try] = ACTIONS(1151), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(1153), + [anon_sym_co_return] = ACTIONS(1161), + [anon_sym_co_yield] = ACTIONS(1163), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -80925,112 +85861,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, [STATE(192)] = { - [sym_attribute_declaration] = STATE(175), - [sym_compound_statement] = STATE(652), - [sym_attributed_statement] = STATE(652), - [sym_statement] = STATE(560), - [sym_labeled_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_if_statement] = STATE(652), - [sym_switch_statement] = STATE(652), - [sym_case_statement] = STATE(652), - [sym_while_statement] = STATE(652), - [sym_do_statement] = STATE(652), - [sym_for_statement] = STATE(652), - [sym_return_statement] = STATE(652), - [sym_break_statement] = STATE(652), - [sym_continue_statement] = STATE(652), - [sym_goto_statement] = STATE(652), - [sym_seh_try_statement] = STATE(652), - [sym_seh_leave_statement] = STATE(652), - [sym_expression] = STATE(6696), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10652), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(652), - [sym_co_return_statement] = STATE(652), - [sym_co_yield_statement] = STATE(652), - [sym_throw_statement] = STATE(652), - [sym_try_statement] = STATE(652), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(652), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(175), - [sym_identifier] = ACTIONS(2469), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym_attribute_declaration] = STATE(215), + [sym_compound_statement] = STATE(637), + [sym_attributed_statement] = STATE(637), + [sym_statement] = STATE(624), + [sym_labeled_statement] = STATE(637), + [sym_expression_statement] = STATE(637), + [sym_if_statement] = STATE(637), + [sym_switch_statement] = STATE(637), + [sym_case_statement] = STATE(637), + [sym_while_statement] = STATE(637), + [sym_do_statement] = STATE(637), + [sym_for_statement] = STATE(637), + [sym_return_statement] = STATE(637), + [sym_break_statement] = STATE(637), + [sym_continue_statement] = STATE(637), + [sym_goto_statement] = STATE(637), + [sym_seh_try_statement] = STATE(637), + [sym_seh_leave_statement] = STATE(637), + [sym_expression] = STATE(6804), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11583), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(637), + [sym_co_return_statement] = STATE(637), + [sym_co_yield_statement] = STATE(637), + [sym_throw_statement] = STATE(637), + [sym_try_statement] = STATE(637), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(637), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(215), + [sym_identifier] = ACTIONS(2592), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_goto] = ACTIONS(1188), - [anon_sym___try] = ACTIONS(1190), - [anon_sym___leave] = ACTIONS(1192), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1125), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1141), + [anon_sym___leave] = ACTIONS(1143), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -81043,7 +85979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -81063,13 +85999,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1658), - [anon_sym_try] = ACTIONS(1196), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1943), + [anon_sym_try] = ACTIONS(1151), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1198), - [anon_sym_co_return] = ACTIONS(1206), - [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_throw] = ACTIONS(1153), + [anon_sym_co_return] = ACTIONS(1161), + [anon_sym_co_yield] = ACTIONS(1163), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -81079,112 +86015,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, [STATE(193)] = { - [sym_attribute_declaration] = STATE(175), - [sym_compound_statement] = STATE(652), - [sym_attributed_statement] = STATE(652), - [sym_statement] = STATE(562), - [sym_labeled_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_if_statement] = STATE(652), - [sym_switch_statement] = STATE(652), - [sym_case_statement] = STATE(652), - [sym_while_statement] = STATE(652), - [sym_do_statement] = STATE(652), - [sym_for_statement] = STATE(652), - [sym_return_statement] = STATE(652), - [sym_break_statement] = STATE(652), - [sym_continue_statement] = STATE(652), - [sym_goto_statement] = STATE(652), - [sym_seh_try_statement] = STATE(652), - [sym_seh_leave_statement] = STATE(652), - [sym_expression] = STATE(6696), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10652), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(652), - [sym_co_return_statement] = STATE(652), - [sym_co_yield_statement] = STATE(652), - [sym_throw_statement] = STATE(652), - [sym_try_statement] = STATE(652), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(652), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(175), - [sym_identifier] = ACTIONS(2469), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym_attribute_declaration] = STATE(186), + [sym_compound_statement] = STATE(339), + [sym_attributed_statement] = STATE(339), + [sym_statement] = STATE(349), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(2604), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_goto] = ACTIONS(1188), - [anon_sym___try] = ACTIONS(1190), - [anon_sym___leave] = ACTIONS(1192), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -81197,7 +86133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -81217,13 +86153,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1658), - [anon_sym_try] = ACTIONS(1196), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1672), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1198), - [anon_sym_co_return] = ACTIONS(1206), - [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -81233,112 +86169,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, [STATE(194)] = { - [sym_attribute_declaration] = STATE(175), - [sym_compound_statement] = STATE(652), - [sym_attributed_statement] = STATE(652), - [sym_statement] = STATE(563), - [sym_labeled_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_if_statement] = STATE(652), - [sym_switch_statement] = STATE(652), - [sym_case_statement] = STATE(652), - [sym_while_statement] = STATE(652), - [sym_do_statement] = STATE(652), - [sym_for_statement] = STATE(652), - [sym_return_statement] = STATE(652), - [sym_break_statement] = STATE(652), - [sym_continue_statement] = STATE(652), - [sym_goto_statement] = STATE(652), - [sym_seh_try_statement] = STATE(652), - [sym_seh_leave_statement] = STATE(652), - [sym_expression] = STATE(6696), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10652), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(652), - [sym_co_return_statement] = STATE(652), - [sym_co_yield_statement] = STATE(652), - [sym_throw_statement] = STATE(652), - [sym_try_statement] = STATE(652), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(652), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(175), - [sym_identifier] = ACTIONS(2469), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym_attribute_declaration] = STATE(221), + [sym_compound_statement] = STATE(772), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(565), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_goto] = ACTIONS(1188), - [anon_sym___try] = ACTIONS(1190), - [anon_sym___leave] = ACTIONS(1192), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2202), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -81351,7 +86287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -81371,13 +86307,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1658), - [anon_sym_try] = ACTIONS(1196), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1198), - [anon_sym_co_return] = ACTIONS(1206), - [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -81387,112 +86323,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, [STATE(195)] = { - [sym_attribute_declaration] = STATE(175), - [sym_compound_statement] = STATE(652), - [sym_attributed_statement] = STATE(652), - [sym_statement] = STATE(567), - [sym_labeled_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_if_statement] = STATE(652), - [sym_switch_statement] = STATE(652), - [sym_case_statement] = STATE(652), - [sym_while_statement] = STATE(652), - [sym_do_statement] = STATE(652), - [sym_for_statement] = STATE(652), - [sym_return_statement] = STATE(652), - [sym_break_statement] = STATE(652), - [sym_continue_statement] = STATE(652), - [sym_goto_statement] = STATE(652), - [sym_seh_try_statement] = STATE(652), - [sym_seh_leave_statement] = STATE(652), - [sym_expression] = STATE(6696), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10652), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(652), - [sym_co_return_statement] = STATE(652), - [sym_co_yield_statement] = STATE(652), - [sym_throw_statement] = STATE(652), - [sym_try_statement] = STATE(652), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(652), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(175), - [sym_identifier] = ACTIONS(2469), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym_attribute_declaration] = STATE(222), + [sym_compound_statement] = STATE(1232), + [sym_attributed_statement] = STATE(1232), + [sym_statement] = STATE(1205), + [sym_labeled_statement] = STATE(1232), + [sym_expression_statement] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_case_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_goto_statement] = STATE(1232), + [sym_seh_try_statement] = STATE(1232), + [sym_seh_leave_statement] = STATE(1232), + [sym_expression] = STATE(6880), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11567), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(1232), + [sym_co_return_statement] = STATE(1232), + [sym_co_yield_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(1232), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_goto] = ACTIONS(1188), - [anon_sym___try] = ACTIONS(1190), - [anon_sym___leave] = ACTIONS(1192), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2099), + [anon_sym_do] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2107), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_goto] = ACTIONS(2111), + [anon_sym___try] = ACTIONS(2113), + [anon_sym___leave] = ACTIONS(2115), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -81505,7 +86441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -81525,13 +86461,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1658), - [anon_sym_try] = ACTIONS(1196), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2119), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1198), - [anon_sym_co_return] = ACTIONS(1206), - [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_throw] = ACTIONS(2121), + [anon_sym_co_return] = ACTIONS(2123), + [anon_sym_co_yield] = ACTIONS(2125), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -81541,112 +86477,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, [STATE(196)] = { - [sym_attribute_declaration] = STATE(207), - [sym_compound_statement] = STATE(550), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(724), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(207), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym_attribute_declaration] = STATE(222), + [sym_compound_statement] = STATE(1232), + [sym_attributed_statement] = STATE(1232), + [sym_statement] = STATE(1244), + [sym_labeled_statement] = STATE(1232), + [sym_expression_statement] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_case_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_goto_statement] = STATE(1232), + [sym_seh_try_statement] = STATE(1232), + [sym_seh_leave_statement] = STATE(1232), + [sym_expression] = STATE(6880), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11567), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(1232), + [sym_co_return_statement] = STATE(1232), + [sym_co_yield_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(1232), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2099), + [anon_sym_do] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2107), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_goto] = ACTIONS(2111), + [anon_sym___try] = ACTIONS(2113), + [anon_sym___leave] = ACTIONS(2115), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -81659,7 +86595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -81679,13 +86615,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(241), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2119), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(2121), + [anon_sym_co_return] = ACTIONS(2123), + [anon_sym_co_yield] = ACTIONS(2125), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -81695,112 +86631,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, [STATE(197)] = { - [sym_attribute_declaration] = STATE(208), - [sym_compound_statement] = STATE(1142), - [sym_attributed_statement] = STATE(1142), - [sym_statement] = STATE(1125), - [sym_labeled_statement] = STATE(1142), - [sym_expression_statement] = STATE(1142), - [sym_if_statement] = STATE(1142), - [sym_switch_statement] = STATE(1142), - [sym_case_statement] = STATE(1142), - [sym_while_statement] = STATE(1142), - [sym_do_statement] = STATE(1142), - [sym_for_statement] = STATE(1142), - [sym_return_statement] = STATE(1142), - [sym_break_statement] = STATE(1142), - [sym_continue_statement] = STATE(1142), - [sym_goto_statement] = STATE(1142), - [sym_seh_try_statement] = STATE(1142), - [sym_seh_leave_statement] = STATE(1142), - [sym_expression] = STATE(6681), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11126), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(1142), - [sym_co_return_statement] = STATE(1142), - [sym_co_yield_statement] = STATE(1142), - [sym_throw_statement] = STATE(1142), - [sym_try_statement] = STATE(1142), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(1142), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(208), - [sym_identifier] = ACTIONS(2475), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym_attribute_declaration] = STATE(214), + [sym_compound_statement] = STATE(578), + [sym_attributed_statement] = STATE(578), + [sym_statement] = STATE(565), + [sym_labeled_statement] = STATE(578), + [sym_expression_statement] = STATE(578), + [sym_if_statement] = STATE(578), + [sym_switch_statement] = STATE(578), + [sym_case_statement] = STATE(578), + [sym_while_statement] = STATE(578), + [sym_do_statement] = STATE(578), + [sym_for_statement] = STATE(578), + [sym_return_statement] = STATE(578), + [sym_break_statement] = STATE(578), + [sym_continue_statement] = STATE(578), + [sym_goto_statement] = STATE(578), + [sym_seh_try_statement] = STATE(578), + [sym_seh_leave_statement] = STATE(578), + [sym_expression] = STATE(6807), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11035), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(578), + [sym_co_return_statement] = STATE(578), + [sym_co_yield_statement] = STATE(578), + [sym_throw_statement] = STATE(578), + [sym_try_statement] = STATE(578), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(578), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(214), + [sym_identifier] = ACTIONS(2636), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1800), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1810), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_goto] = ACTIONS(1814), - [anon_sym___try] = ACTIONS(1816), - [anon_sym___leave] = ACTIONS(1818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1324), + [anon_sym___leave] = ACTIONS(1326), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -81813,7 +86749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -81833,13 +86769,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1822), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1949), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1824), - [anon_sym_co_return] = ACTIONS(1826), - [anon_sym_co_yield] = ACTIONS(1828), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -81849,112 +86785,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, [STATE(198)] = { - [sym_attribute_declaration] = STATE(207), - [sym_compound_statement] = STATE(550), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(725), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(207), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym_attribute_declaration] = STATE(214), + [sym_compound_statement] = STATE(578), + [sym_attributed_statement] = STATE(578), + [sym_statement] = STATE(566), + [sym_labeled_statement] = STATE(578), + [sym_expression_statement] = STATE(578), + [sym_if_statement] = STATE(578), + [sym_switch_statement] = STATE(578), + [sym_case_statement] = STATE(578), + [sym_while_statement] = STATE(578), + [sym_do_statement] = STATE(578), + [sym_for_statement] = STATE(578), + [sym_return_statement] = STATE(578), + [sym_break_statement] = STATE(578), + [sym_continue_statement] = STATE(578), + [sym_goto_statement] = STATE(578), + [sym_seh_try_statement] = STATE(578), + [sym_seh_leave_statement] = STATE(578), + [sym_expression] = STATE(6807), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11035), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(578), + [sym_co_return_statement] = STATE(578), + [sym_co_yield_statement] = STATE(578), + [sym_throw_statement] = STATE(578), + [sym_try_statement] = STATE(578), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(578), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(214), + [sym_identifier] = ACTIONS(2636), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1324), + [anon_sym___leave] = ACTIONS(1326), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -81967,7 +86903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -81987,13 +86923,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(241), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1949), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -82003,112 +86939,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, [STATE(199)] = { - [sym_attribute_declaration] = STATE(207), - [sym_compound_statement] = STATE(550), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(543), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(207), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym_attribute_declaration] = STATE(199), + [sym_compound_statement] = STATE(1232), + [sym_attributed_statement] = STATE(1232), + [sym_statement] = STATE(1246), + [sym_labeled_statement] = STATE(1232), + [sym_expression_statement] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_case_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_goto_statement] = STATE(1232), + [sym_seh_try_statement] = STATE(1232), + [sym_seh_leave_statement] = STATE(1232), + [sym_expression] = STATE(6880), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11567), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(1232), + [sym_co_return_statement] = STATE(1232), + [sym_co_yield_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(1232), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(2837), + [anon_sym_LPAREN2] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(2446), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_COLON_COLON] = ACTIONS(2463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(2472), + [sym_primitive_type] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2846), + [anon_sym_switch] = ACTIONS(2849), + [anon_sym_case] = ACTIONS(2852), + [anon_sym_default] = ACTIONS(2855), + [anon_sym_while] = ACTIONS(2858), + [anon_sym_do] = ACTIONS(2861), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2870), + [anon_sym_continue] = ACTIONS(2873), + [anon_sym_goto] = ACTIONS(2876), + [anon_sym___try] = ACTIONS(2879), + [anon_sym___leave] = ACTIONS(2882), + [anon_sym_not] = ACTIONS(2449), + [anon_sym_compl] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2517), + [anon_sym_PLUS_PLUS] = ACTIONS(2517), + [anon_sym_sizeof] = ACTIONS(2520), + [anon_sym___alignof__] = ACTIONS(2523), + [anon_sym___alignof] = ACTIONS(2523), + [anon_sym__alignof] = ACTIONS(2523), + [anon_sym_alignof] = ACTIONS(2523), + [anon_sym__Alignof] = ACTIONS(2523), + [anon_sym_offsetof] = ACTIONS(2526), + [anon_sym__Generic] = ACTIONS(2529), + [anon_sym_typename] = ACTIONS(2532), + [anon_sym_asm] = ACTIONS(2535), + [anon_sym___asm__] = ACTIONS(2535), + [anon_sym___asm] = ACTIONS(2535), + [sym_number_literal] = ACTIONS(2538), + [anon_sym_L_SQUOTE] = ACTIONS(2541), + [anon_sym_u_SQUOTE] = ACTIONS(2541), + [anon_sym_U_SQUOTE] = ACTIONS(2541), + [anon_sym_u8_SQUOTE] = ACTIONS(2541), + [anon_sym_SQUOTE] = ACTIONS(2541), + [anon_sym_L_DQUOTE] = ACTIONS(2544), + [anon_sym_u_DQUOTE] = ACTIONS(2544), + [anon_sym_U_DQUOTE] = ACTIONS(2544), + [anon_sym_u8_DQUOTE] = ACTIONS(2544), + [anon_sym_DQUOTE] = ACTIONS(2544), + [sym_true] = ACTIONS(2547), + [sym_false] = ACTIONS(2547), + [anon_sym_NULL] = ACTIONS(2550), + [anon_sym_nullptr] = ACTIONS(2550), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2553), + [anon_sym_template] = ACTIONS(2885), + [anon_sym_try] = ACTIONS(2888), + [anon_sym_delete] = ACTIONS(2562), + [anon_sym_throw] = ACTIONS(2891), + [anon_sym_co_return] = ACTIONS(2894), + [anon_sym_co_yield] = ACTIONS(2897), + [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(2577), + [anon_sym_new] = ACTIONS(2580), + [anon_sym_requires] = ACTIONS(2583), + [anon_sym_CARET_CARET] = ACTIONS(2586), + [anon_sym_LBRACK_COLON] = ACTIONS(2589), + [sym_this] = ACTIONS(2547), + }, + [STATE(200)] = { + [sym_attribute_declaration] = STATE(215), + [sym_compound_statement] = STATE(637), + [sym_attributed_statement] = STATE(637), + [sym_statement] = STATE(530), + [sym_labeled_statement] = STATE(637), + [sym_expression_statement] = STATE(637), + [sym_if_statement] = STATE(637), + [sym_switch_statement] = STATE(637), + [sym_case_statement] = STATE(637), + [sym_while_statement] = STATE(637), + [sym_do_statement] = STATE(637), + [sym_for_statement] = STATE(637), + [sym_return_statement] = STATE(637), + [sym_break_statement] = STATE(637), + [sym_continue_statement] = STATE(637), + [sym_goto_statement] = STATE(637), + [sym_seh_try_statement] = STATE(637), + [sym_seh_leave_statement] = STATE(637), + [sym_expression] = STATE(6804), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11583), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(637), + [sym_co_return_statement] = STATE(637), + [sym_co_yield_statement] = STATE(637), + [sym_throw_statement] = STATE(637), + [sym_try_statement] = STATE(637), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(637), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(215), + [sym_identifier] = ACTIONS(2592), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1125), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1141), + [anon_sym___leave] = ACTIONS(1143), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -82121,7 +87211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -82141,13 +87231,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(241), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1943), + [anon_sym_try] = ACTIONS(1151), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(1153), + [anon_sym_co_return] = ACTIONS(1161), + [anon_sym_co_yield] = ACTIONS(1163), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -82157,112 +87247,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(200)] = { - [sym_attribute_declaration] = STATE(208), - [sym_compound_statement] = STATE(1142), - [sym_attributed_statement] = STATE(1142), - [sym_statement] = STATE(1104), - [sym_labeled_statement] = STATE(1142), - [sym_expression_statement] = STATE(1142), - [sym_if_statement] = STATE(1142), - [sym_switch_statement] = STATE(1142), - [sym_case_statement] = STATE(1142), - [sym_while_statement] = STATE(1142), - [sym_do_statement] = STATE(1142), - [sym_for_statement] = STATE(1142), - [sym_return_statement] = STATE(1142), - [sym_break_statement] = STATE(1142), - [sym_continue_statement] = STATE(1142), - [sym_goto_statement] = STATE(1142), - [sym_seh_try_statement] = STATE(1142), - [sym_seh_leave_statement] = STATE(1142), - [sym_expression] = STATE(6681), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11126), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(1142), - [sym_co_return_statement] = STATE(1142), - [sym_co_yield_statement] = STATE(1142), - [sym_throw_statement] = STATE(1142), - [sym_try_statement] = STATE(1142), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(1142), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(208), - [sym_identifier] = ACTIONS(2475), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(201)] = { + [sym_attribute_declaration] = STATE(222), + [sym_compound_statement] = STATE(1232), + [sym_attributed_statement] = STATE(1232), + [sym_statement] = STATE(1198), + [sym_labeled_statement] = STATE(1232), + [sym_expression_statement] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_case_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_goto_statement] = STATE(1232), + [sym_seh_try_statement] = STATE(1232), + [sym_seh_leave_statement] = STATE(1232), + [sym_expression] = STATE(6880), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11567), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(1232), + [sym_co_return_statement] = STATE(1232), + [sym_co_yield_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(1232), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1800), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1810), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_goto] = ACTIONS(1814), - [anon_sym___try] = ACTIONS(1816), - [anon_sym___leave] = ACTIONS(1818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2099), + [anon_sym_do] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2107), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_goto] = ACTIONS(2111), + [anon_sym___try] = ACTIONS(2113), + [anon_sym___leave] = ACTIONS(2115), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -82275,7 +87365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -82295,13 +87385,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1822), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2119), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1824), - [anon_sym_co_return] = ACTIONS(1826), - [anon_sym_co_yield] = ACTIONS(1828), + [anon_sym_throw] = ACTIONS(2121), + [anon_sym_co_return] = ACTIONS(2123), + [anon_sym_co_yield] = ACTIONS(2125), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -82311,112 +87401,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(201)] = { - [sym_attribute_declaration] = STATE(208), - [sym_compound_statement] = STATE(1142), - [sym_attributed_statement] = STATE(1142), - [sym_statement] = STATE(1147), - [sym_labeled_statement] = STATE(1142), - [sym_expression_statement] = STATE(1142), - [sym_if_statement] = STATE(1142), - [sym_switch_statement] = STATE(1142), - [sym_case_statement] = STATE(1142), - [sym_while_statement] = STATE(1142), - [sym_do_statement] = STATE(1142), - [sym_for_statement] = STATE(1142), - [sym_return_statement] = STATE(1142), - [sym_break_statement] = STATE(1142), - [sym_continue_statement] = STATE(1142), - [sym_goto_statement] = STATE(1142), - [sym_seh_try_statement] = STATE(1142), - [sym_seh_leave_statement] = STATE(1142), - [sym_expression] = STATE(6681), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11126), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(1142), - [sym_co_return_statement] = STATE(1142), - [sym_co_yield_statement] = STATE(1142), - [sym_throw_statement] = STATE(1142), - [sym_try_statement] = STATE(1142), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(1142), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(208), - [sym_identifier] = ACTIONS(2475), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(202)] = { + [sym_attribute_declaration] = STATE(215), + [sym_compound_statement] = STATE(637), + [sym_attributed_statement] = STATE(637), + [sym_statement] = STATE(569), + [sym_labeled_statement] = STATE(637), + [sym_expression_statement] = STATE(637), + [sym_if_statement] = STATE(637), + [sym_switch_statement] = STATE(637), + [sym_case_statement] = STATE(637), + [sym_while_statement] = STATE(637), + [sym_do_statement] = STATE(637), + [sym_for_statement] = STATE(637), + [sym_return_statement] = STATE(637), + [sym_break_statement] = STATE(637), + [sym_continue_statement] = STATE(637), + [sym_goto_statement] = STATE(637), + [sym_seh_try_statement] = STATE(637), + [sym_seh_leave_statement] = STATE(637), + [sym_expression] = STATE(6804), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11583), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(637), + [sym_co_return_statement] = STATE(637), + [sym_co_yield_statement] = STATE(637), + [sym_throw_statement] = STATE(637), + [sym_try_statement] = STATE(637), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(637), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(215), + [sym_identifier] = ACTIONS(2592), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1800), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1810), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_goto] = ACTIONS(1814), - [anon_sym___try] = ACTIONS(1816), - [anon_sym___leave] = ACTIONS(1818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1125), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1141), + [anon_sym___leave] = ACTIONS(1143), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -82429,7 +87519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -82449,13 +87539,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1822), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1943), + [anon_sym_try] = ACTIONS(1151), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1824), - [anon_sym_co_return] = ACTIONS(1826), - [anon_sym_co_yield] = ACTIONS(1828), + [anon_sym_throw] = ACTIONS(1153), + [anon_sym_co_return] = ACTIONS(1161), + [anon_sym_co_yield] = ACTIONS(1163), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -82465,112 +87555,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(202)] = { - [sym_attribute_declaration] = STATE(207), - [sym_compound_statement] = STATE(550), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(735), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(207), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(203)] = { + [sym_attribute_declaration] = STATE(214), + [sym_compound_statement] = STATE(578), + [sym_attributed_statement] = STATE(578), + [sym_statement] = STATE(548), + [sym_labeled_statement] = STATE(578), + [sym_expression_statement] = STATE(578), + [sym_if_statement] = STATE(578), + [sym_switch_statement] = STATE(578), + [sym_case_statement] = STATE(578), + [sym_while_statement] = STATE(578), + [sym_do_statement] = STATE(578), + [sym_for_statement] = STATE(578), + [sym_return_statement] = STATE(578), + [sym_break_statement] = STATE(578), + [sym_continue_statement] = STATE(578), + [sym_goto_statement] = STATE(578), + [sym_seh_try_statement] = STATE(578), + [sym_seh_leave_statement] = STATE(578), + [sym_expression] = STATE(6807), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11035), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(578), + [sym_co_return_statement] = STATE(578), + [sym_co_yield_statement] = STATE(578), + [sym_throw_statement] = STATE(578), + [sym_try_statement] = STATE(578), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(578), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(214), + [sym_identifier] = ACTIONS(2636), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1324), + [anon_sym___leave] = ACTIONS(1326), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -82583,7 +87673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -82603,13 +87693,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(241), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1949), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -82619,112 +87709,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(203)] = { - [sym_attribute_declaration] = STATE(176), - [sym_compound_statement] = STATE(496), - [sym_attributed_statement] = STATE(496), - [sym_statement] = STATE(383), - [sym_labeled_statement] = STATE(496), - [sym_expression_statement] = STATE(496), - [sym_if_statement] = STATE(496), - [sym_switch_statement] = STATE(496), - [sym_case_statement] = STATE(496), - [sym_while_statement] = STATE(496), - [sym_do_statement] = STATE(496), - [sym_for_statement] = STATE(496), - [sym_return_statement] = STATE(496), - [sym_break_statement] = STATE(496), - [sym_continue_statement] = STATE(496), - [sym_goto_statement] = STATE(496), - [sym_seh_try_statement] = STATE(496), - [sym_seh_leave_statement] = STATE(496), - [sym_expression] = STATE(6685), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10787), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(496), - [sym_co_return_statement] = STATE(496), - [sym_co_yield_statement] = STATE(496), - [sym_throw_statement] = STATE(496), - [sym_try_statement] = STATE(496), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(496), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(176), - [sym_identifier] = ACTIONS(2307), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(204)] = { + [sym_attribute_declaration] = STATE(222), + [sym_compound_statement] = STATE(1232), + [sym_attributed_statement] = STATE(1232), + [sym_statement] = STATE(1260), + [sym_labeled_statement] = STATE(1232), + [sym_expression_statement] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_case_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_goto_statement] = STATE(1232), + [sym_seh_try_statement] = STATE(1232), + [sym_seh_leave_statement] = STATE(1232), + [sym_expression] = STATE(6880), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11567), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(1232), + [sym_co_return_statement] = STATE(1232), + [sym_co_yield_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(1232), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(83), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_default] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1220), - [anon_sym___leave] = ACTIONS(1222), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2099), + [anon_sym_do] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2107), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_goto] = ACTIONS(2111), + [anon_sym___try] = ACTIONS(2113), + [anon_sym___leave] = ACTIONS(2115), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -82737,7 +87827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -82757,13 +87847,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1583), - [anon_sym_try] = ACTIONS(145), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2119), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(2121), + [anon_sym_co_return] = ACTIONS(2123), + [anon_sym_co_yield] = ACTIONS(2125), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -82773,112 +87863,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(204)] = { - [sym_attribute_declaration] = STATE(168), - [sym_compound_statement] = STATE(360), - [sym_attributed_statement] = STATE(360), - [sym_statement] = STATE(355), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [sym_identifier] = ACTIONS(2339), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(205)] = { + [sym_attribute_declaration] = STATE(222), + [sym_compound_statement] = STATE(1232), + [sym_attributed_statement] = STATE(1232), + [sym_statement] = STATE(1264), + [sym_labeled_statement] = STATE(1232), + [sym_expression_statement] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_case_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_goto_statement] = STATE(1232), + [sym_seh_try_statement] = STATE(1232), + [sym_seh_leave_statement] = STATE(1232), + [sym_expression] = STATE(6880), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11567), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(1232), + [sym_co_return_statement] = STATE(1232), + [sym_co_yield_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(1232), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(295), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(305), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2099), + [anon_sym_do] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2107), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_goto] = ACTIONS(2111), + [anon_sym___try] = ACTIONS(2113), + [anon_sym___leave] = ACTIONS(2115), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -82891,7 +87981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -82911,13 +88001,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(339), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2119), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(2121), + [anon_sym_co_return] = ACTIONS(2123), + [anon_sym_co_yield] = ACTIONS(2125), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -82927,266 +88017,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(205)] = { - [sym_attribute_declaration] = STATE(205), - [sym_compound_statement] = STATE(1142), - [sym_attributed_statement] = STATE(1142), - [sym_statement] = STATE(1136), - [sym_labeled_statement] = STATE(1142), - [sym_expression_statement] = STATE(1142), - [sym_if_statement] = STATE(1142), - [sym_switch_statement] = STATE(1142), - [sym_case_statement] = STATE(1142), - [sym_while_statement] = STATE(1142), - [sym_do_statement] = STATE(1142), - [sym_for_statement] = STATE(1142), - [sym_return_statement] = STATE(1142), - [sym_break_statement] = STATE(1142), - [sym_continue_statement] = STATE(1142), - [sym_goto_statement] = STATE(1142), - [sym_seh_try_statement] = STATE(1142), - [sym_seh_leave_statement] = STATE(1142), - [sym_expression] = STATE(6681), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11126), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(1142), - [sym_co_return_statement] = STATE(1142), - [sym_co_yield_statement] = STATE(1142), - [sym_throw_statement] = STATE(1142), - [sym_try_statement] = STATE(1142), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(1142), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(2527), - [anon_sym_LPAREN2] = ACTIONS(2083), - [anon_sym_BANG] = ACTIONS(2086), - [anon_sym_TILDE] = ACTIONS(2086), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2092), - [anon_sym_AMP] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2530), - [anon_sym___extension__] = ACTIONS(2098), - [anon_sym_COLON_COLON] = ACTIONS(2103), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_LBRACK] = ACTIONS(2112), - [sym_primitive_type] = ACTIONS(2115), - [anon_sym_if] = ACTIONS(2536), - [anon_sym_switch] = ACTIONS(2539), - [anon_sym_case] = ACTIONS(2483), - [anon_sym_default] = ACTIONS(2486), - [anon_sym_while] = ACTIONS(2542), - [anon_sym_do] = ACTIONS(2545), - [anon_sym_for] = ACTIONS(2548), - [anon_sym_return] = ACTIONS(2551), - [anon_sym_break] = ACTIONS(2554), - [anon_sym_continue] = ACTIONS(2557), - [anon_sym_goto] = ACTIONS(2560), - [anon_sym___try] = ACTIONS(2563), - [anon_sym___leave] = ACTIONS(2566), - [anon_sym_not] = ACTIONS(2089), - [anon_sym_compl] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_sizeof] = ACTIONS(2160), - [anon_sym___alignof__] = ACTIONS(2163), - [anon_sym___alignof] = ACTIONS(2163), - [anon_sym__alignof] = ACTIONS(2163), - [anon_sym_alignof] = ACTIONS(2163), - [anon_sym__Alignof] = ACTIONS(2163), - [anon_sym_offsetof] = ACTIONS(2166), - [anon_sym__Generic] = ACTIONS(2169), - [anon_sym_typename] = ACTIONS(2172), - [anon_sym_asm] = ACTIONS(2175), - [anon_sym___asm__] = ACTIONS(2175), - [anon_sym___asm] = ACTIONS(2175), - [sym_number_literal] = ACTIONS(2178), - [anon_sym_L_SQUOTE] = ACTIONS(2181), - [anon_sym_u_SQUOTE] = ACTIONS(2181), - [anon_sym_U_SQUOTE] = ACTIONS(2181), - [anon_sym_u8_SQUOTE] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_L_DQUOTE] = ACTIONS(2184), - [anon_sym_u_DQUOTE] = ACTIONS(2184), - [anon_sym_U_DQUOTE] = ACTIONS(2184), - [anon_sym_u8_DQUOTE] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [sym_true] = ACTIONS(2187), - [sym_false] = ACTIONS(2187), - [anon_sym_NULL] = ACTIONS(2190), - [anon_sym_nullptr] = ACTIONS(2190), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2193), - [anon_sym_template] = ACTIONS(2569), - [anon_sym_try] = ACTIONS(2572), - [anon_sym_delete] = ACTIONS(2202), - [anon_sym_throw] = ACTIONS(2575), - [anon_sym_co_return] = ACTIONS(2578), - [anon_sym_co_yield] = ACTIONS(2581), - [anon_sym_R_DQUOTE] = ACTIONS(2214), - [anon_sym_LR_DQUOTE] = ACTIONS(2214), - [anon_sym_uR_DQUOTE] = ACTIONS(2214), - [anon_sym_UR_DQUOTE] = ACTIONS(2214), - [anon_sym_u8R_DQUOTE] = ACTIONS(2214), - [anon_sym_co_await] = ACTIONS(2217), - [anon_sym_new] = ACTIONS(2220), - [anon_sym_requires] = ACTIONS(2223), - [anon_sym_CARET_CARET] = ACTIONS(2226), - [anon_sym_LBRACK_COLON] = ACTIONS(2229), - [sym_this] = ACTIONS(2187), - }, [STATE(206)] = { - [sym_attribute_declaration] = STATE(168), - [sym_compound_statement] = STATE(360), - [sym_attributed_statement] = STATE(360), - [sym_statement] = STATE(388), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym_seh_try_statement] = STATE(360), - [sym_seh_leave_statement] = STATE(360), - [sym_expression] = STATE(6667), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11429), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(360), - [sym_co_return_statement] = STATE(360), - [sym_co_yield_statement] = STATE(360), - [sym_throw_statement] = STATE(360), - [sym_try_statement] = STATE(360), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(360), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [sym_identifier] = ACTIONS(2339), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym_attribute_declaration] = STATE(222), + [sym_compound_statement] = STATE(1232), + [sym_attributed_statement] = STATE(1232), + [sym_statement] = STATE(1256), + [sym_labeled_statement] = STATE(1232), + [sym_expression_statement] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_case_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_goto_statement] = STATE(1232), + [sym_seh_try_statement] = STATE(1232), + [sym_seh_leave_statement] = STATE(1232), + [sym_expression] = STATE(6880), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11567), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(1232), + [sym_co_return_statement] = STATE(1232), + [sym_co_yield_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(1232), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(295), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(305), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(313), - [anon_sym_case] = ACTIONS(315), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(319), - [anon_sym_do] = ACTIONS(321), - [anon_sym_for] = ACTIONS(323), - [anon_sym_return] = ACTIONS(325), - [anon_sym_break] = ACTIONS(327), - [anon_sym_continue] = ACTIONS(329), - [anon_sym_goto] = ACTIONS(331), - [anon_sym___try] = ACTIONS(333), - [anon_sym___leave] = ACTIONS(335), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2099), + [anon_sym_do] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2107), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_goto] = ACTIONS(2111), + [anon_sym___try] = ACTIONS(2113), + [anon_sym___leave] = ACTIONS(2115), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -83199,7 +88135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -83219,13 +88155,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(339), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2119), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_co_return] = ACTIONS(349), - [anon_sym_co_yield] = ACTIONS(351), + [anon_sym_throw] = ACTIONS(2121), + [anon_sym_co_return] = ACTIONS(2123), + [anon_sym_co_yield] = ACTIONS(2125), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -83235,99 +88171,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, [STATE(207)] = { - [sym_attribute_declaration] = STATE(154), - [sym_compound_statement] = STATE(550), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(666), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(154), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym_attribute_declaration] = STATE(219), + [sym_compound_statement] = STATE(772), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(611), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(2829), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_if] = ACTIONS(207), [anon_sym_switch] = ACTIONS(209), [anon_sym_case] = ACTIONS(211), @@ -83353,7 +88289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -83373,13 +88309,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(241), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2018), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(243), - [anon_sym_co_return] = ACTIONS(251), - [anon_sym_co_yield] = ACTIONS(253), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -83389,112 +88325,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, [STATE(208)] = { - [sym_attribute_declaration] = STATE(205), - [sym_compound_statement] = STATE(1142), - [sym_attributed_statement] = STATE(1142), - [sym_statement] = STATE(1136), - [sym_labeled_statement] = STATE(1142), - [sym_expression_statement] = STATE(1142), - [sym_if_statement] = STATE(1142), - [sym_switch_statement] = STATE(1142), - [sym_case_statement] = STATE(1142), - [sym_while_statement] = STATE(1142), - [sym_do_statement] = STATE(1142), - [sym_for_statement] = STATE(1142), - [sym_return_statement] = STATE(1142), - [sym_break_statement] = STATE(1142), - [sym_continue_statement] = STATE(1142), - [sym_goto_statement] = STATE(1142), - [sym_seh_try_statement] = STATE(1142), - [sym_seh_leave_statement] = STATE(1142), - [sym_expression] = STATE(6681), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11126), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(1142), - [sym_co_return_statement] = STATE(1142), - [sym_co_yield_statement] = STATE(1142), - [sym_throw_statement] = STATE(1142), - [sym_try_statement] = STATE(1142), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(1142), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(2475), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym_attribute_declaration] = STATE(222), + [sym_compound_statement] = STATE(1232), + [sym_attributed_statement] = STATE(1232), + [sym_statement] = STATE(1222), + [sym_labeled_statement] = STATE(1232), + [sym_expression_statement] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_case_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_goto_statement] = STATE(1232), + [sym_seh_try_statement] = STATE(1232), + [sym_seh_leave_statement] = STATE(1232), + [sym_expression] = STATE(6880), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11567), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(1232), + [sym_co_return_statement] = STATE(1232), + [sym_co_yield_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(1232), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1800), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1810), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_goto] = ACTIONS(1814), - [anon_sym___try] = ACTIONS(1816), - [anon_sym___leave] = ACTIONS(1818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2099), + [anon_sym_do] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2107), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_goto] = ACTIONS(2111), + [anon_sym___try] = ACTIONS(2113), + [anon_sym___leave] = ACTIONS(2115), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -83507,7 +88443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -83527,13 +88463,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1822), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2119), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1824), - [anon_sym_co_return] = ACTIONS(1826), - [anon_sym_co_yield] = ACTIONS(1828), + [anon_sym_throw] = ACTIONS(2121), + [anon_sym_co_return] = ACTIONS(2123), + [anon_sym_co_yield] = ACTIONS(2125), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -83543,111 +88479,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, [STATE(209)] = { - [sym_attribute_declaration] = STATE(182), - [sym_compound_statement] = STATE(550), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(10959), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [sym_identifier] = ACTIONS(2473), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym_expression] = STATE(3820), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_initializer_list] = STATE(3937), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2386), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_PERCENT] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_CARET] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_EQ_EQ] = ACTIONS(2386), + [anon_sym_BANG_EQ] = ACTIONS(2386), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_GT_EQ] = ACTIONS(2386), + [anon_sym_LT_EQ] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2384), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym___attribute__] = ACTIONS(2384), + [anon_sym___attribute] = ACTIONS(2384), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_EQ] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_QMARK] = ACTIONS(2386), + [anon_sym_STAR_EQ] = ACTIONS(2386), + [anon_sym_SLASH_EQ] = ACTIONS(2386), + [anon_sym_PERCENT_EQ] = ACTIONS(2386), + [anon_sym_PLUS_EQ] = ACTIONS(2386), + [anon_sym_DASH_EQ] = ACTIONS(2386), + [anon_sym_LT_LT_EQ] = ACTIONS(2386), + [anon_sym_GT_GT_EQ] = ACTIONS(2386), + [anon_sym_AMP_EQ] = ACTIONS(2386), + [anon_sym_CARET_EQ] = ACTIONS(2386), + [anon_sym_PIPE_EQ] = ACTIONS(2386), + [anon_sym_and_eq] = ACTIONS(2384), + [anon_sym_or_eq] = ACTIONS(2384), + [anon_sym_xor_eq] = ACTIONS(2384), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_LT_EQ_GT] = ACTIONS(2386), + [anon_sym_or] = ACTIONS(2384), + [anon_sym_and] = ACTIONS(2384), + [anon_sym_bitor] = ACTIONS(2384), + [anon_sym_xor] = ACTIONS(2384), + [anon_sym_bitand] = ACTIONS(2384), + [anon_sym_not_eq] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DOT_STAR] = ACTIONS(2386), + [anon_sym_DASH_GT] = ACTIONS(2386), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(210)] = { + [sym_attribute_declaration] = STATE(221), + [sym_compound_statement] = STATE(772), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(566), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1832), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2192), [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1838), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2198), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(1840), + [anon_sym_for] = ACTIONS(2200), [anon_sym_return] = ACTIONS(97), [anon_sym_break] = ACTIONS(99), [anon_sym_continue] = ACTIONS(101), [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1842), + [anon_sym___try] = ACTIONS(2202), [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -83661,7 +88751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -83681,8 +88771,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2204), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -83697,112 +88787,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(210)] = { - [sym_attribute_declaration] = STATE(182), - [sym_compound_statement] = STATE(550), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(11111), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [sym_identifier] = ACTIONS(2473), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(211)] = { + [sym_attribute_declaration] = STATE(214), + [sym_compound_statement] = STATE(578), + [sym_attributed_statement] = STATE(578), + [sym_statement] = STATE(524), + [sym_labeled_statement] = STATE(578), + [sym_expression_statement] = STATE(578), + [sym_if_statement] = STATE(578), + [sym_switch_statement] = STATE(578), + [sym_case_statement] = STATE(578), + [sym_while_statement] = STATE(578), + [sym_do_statement] = STATE(578), + [sym_for_statement] = STATE(578), + [sym_return_statement] = STATE(578), + [sym_break_statement] = STATE(578), + [sym_continue_statement] = STATE(578), + [sym_goto_statement] = STATE(578), + [sym_seh_try_statement] = STATE(578), + [sym_seh_leave_statement] = STATE(578), + [sym_expression] = STATE(6807), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11035), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(578), + [sym_co_return_statement] = STATE(578), + [sym_co_yield_statement] = STATE(578), + [sym_throw_statement] = STATE(578), + [sym_try_statement] = STATE(578), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(578), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(214), + [sym_identifier] = ACTIONS(2636), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1832), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(83), [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1838), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(1840), + [anon_sym_for] = ACTIONS(95), [anon_sym_return] = ACTIONS(97), [anon_sym_break] = ACTIONS(99), [anon_sym_continue] = ACTIONS(101), [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1842), - [anon_sym___leave] = ACTIONS(231), + [anon_sym___try] = ACTIONS(1324), + [anon_sym___leave] = ACTIONS(1326), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -83815,7 +88905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -83835,8 +88925,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1844), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1949), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -83851,111 +88941,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(211)] = { - [sym_attribute_declaration] = STATE(182), - [sym_compound_statement] = STATE(550), - [sym_attributed_statement] = STATE(550), - [sym_statement] = STATE(11140), - [sym_labeled_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_case_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_goto_statement] = STATE(550), - [sym_seh_try_statement] = STATE(550), - [sym_seh_leave_statement] = STATE(550), - [sym_expression] = STATE(6753), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11328), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(550), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(550), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [sym_identifier] = ACTIONS(2473), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(212)] = { + [sym_attribute_declaration] = STATE(219), + [sym_compound_statement] = STATE(772), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(674), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(2829), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1842), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -83969,7 +89059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -83989,13 +89079,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1844), - [anon_sym_try] = ACTIONS(145), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2018), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -84005,112 +89095,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(212)] = { - [sym_attribute_declaration] = STATE(175), - [sym_compound_statement] = STATE(652), - [sym_attributed_statement] = STATE(652), - [sym_statement] = STATE(733), - [sym_labeled_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_if_statement] = STATE(652), - [sym_switch_statement] = STATE(652), - [sym_case_statement] = STATE(652), - [sym_while_statement] = STATE(652), - [sym_do_statement] = STATE(652), - [sym_for_statement] = STATE(652), - [sym_return_statement] = STATE(652), - [sym_break_statement] = STATE(652), - [sym_continue_statement] = STATE(652), - [sym_goto_statement] = STATE(652), - [sym_seh_try_statement] = STATE(652), - [sym_seh_leave_statement] = STATE(652), - [sym_expression] = STATE(6696), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10652), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_for_range_loop] = STATE(652), - [sym_co_return_statement] = STATE(652), - [sym_co_yield_statement] = STATE(652), - [sym_throw_statement] = STATE(652), - [sym_try_statement] = STATE(652), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_expansion_statement] = STATE(652), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_attributed_declarator_repeat1] = STATE(175), - [sym_identifier] = ACTIONS(2469), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(213)] = { + [sym_attribute_declaration] = STATE(215), + [sym_compound_statement] = STATE(637), + [sym_attributed_statement] = STATE(637), + [sym_statement] = STATE(606), + [sym_labeled_statement] = STATE(637), + [sym_expression_statement] = STATE(637), + [sym_if_statement] = STATE(637), + [sym_switch_statement] = STATE(637), + [sym_case_statement] = STATE(637), + [sym_while_statement] = STATE(637), + [sym_do_statement] = STATE(637), + [sym_for_statement] = STATE(637), + [sym_return_statement] = STATE(637), + [sym_break_statement] = STATE(637), + [sym_continue_statement] = STATE(637), + [sym_goto_statement] = STATE(637), + [sym_seh_try_statement] = STATE(637), + [sym_seh_leave_statement] = STATE(637), + [sym_expression] = STATE(6804), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11583), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(637), + [sym_co_return_statement] = STATE(637), + [sym_co_yield_statement] = STATE(637), + [sym_throw_statement] = STATE(637), + [sym_try_statement] = STATE(637), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(637), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(215), + [sym_identifier] = ACTIONS(2592), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_switch] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_goto] = ACTIONS(1188), - [anon_sym___try] = ACTIONS(1190), - [anon_sym___leave] = ACTIONS(1192), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1125), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1141), + [anon_sym___leave] = ACTIONS(1143), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -84123,7 +89213,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -84143,13 +89233,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1658), - [anon_sym_try] = ACTIONS(1196), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1943), + [anon_sym_try] = ACTIONS(1151), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1198), - [anon_sym_co_return] = ACTIONS(1206), - [anon_sym_co_yield] = ACTIONS(1208), + [anon_sym_throw] = ACTIONS(1153), + [anon_sym_co_return] = ACTIONS(1161), + [anon_sym_co_yield] = ACTIONS(1163), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -84159,5916 +89249,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(213)] = { - [sym_compound_statement] = STATE(10588), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4607), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10588), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(11340), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(10925), - [sym__unary_right_fold] = STATE(10775), - [sym__binary_fold] = STATE(10807), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11136), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, [STATE(214)] = { - [sym_compound_statement] = STATE(10588), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4607), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10588), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(10741), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(11307), - [sym__unary_right_fold] = STATE(11319), - [sym__binary_fold] = STATE(11322), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11136), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(215)] = { - [sym_compound_statement] = STATE(11128), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4552), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(11128), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(10528), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(10962), - [sym__unary_right_fold] = STATE(11139), - [sym__binary_fold] = STATE(11401), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11335), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(216)] = { - [sym_compound_statement] = STATE(11128), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4552), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(11128), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(10891), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(10962), - [sym__unary_right_fold] = STATE(11139), - [sym__binary_fold] = STATE(11401), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11335), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(217)] = { - [sym_compound_statement] = STATE(10588), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4607), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10588), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(10894), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(10925), - [sym__unary_right_fold] = STATE(10775), - [sym__binary_fold] = STATE(10807), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11136), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(218)] = { - [sym_compound_statement] = STATE(10595), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4645), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10595), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(10535), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(10538), - [sym__unary_right_fold] = STATE(10540), - [sym__binary_fold] = STATE(10544), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(10619), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(219)] = { - [sym_compound_statement] = STATE(10595), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4645), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10595), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(11454), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(10538), - [sym__unary_right_fold] = STATE(10540), - [sym__binary_fold] = STATE(10544), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(10619), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(220)] = { - [sym_compound_statement] = STATE(11324), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4566), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(11324), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(10586), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(10597), - [sym__unary_right_fold] = STATE(10627), - [sym__binary_fold] = STATE(10638), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(10568), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(221)] = { - [sym_compound_statement] = STATE(11324), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4566), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(11324), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(11086), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(10597), - [sym__unary_right_fold] = STATE(10627), - [sym__binary_fold] = STATE(10638), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(10568), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(222)] = { - [sym_compound_statement] = STATE(11128), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4552), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(11128), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(10645), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(10646), - [sym__unary_right_fold] = STATE(10648), - [sym__binary_fold] = STATE(10649), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11335), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(223)] = { - [sym_compound_statement] = STATE(11128), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4552), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(11128), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(10857), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(10646), - [sym__unary_right_fold] = STATE(10648), - [sym__binary_fold] = STATE(10649), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11335), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(224)] = { - [sym_compound_statement] = STATE(11324), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4566), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(11324), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(11482), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(10841), - [sym__unary_right_fold] = STATE(10845), - [sym__binary_fold] = STATE(10846), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(10568), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(225)] = { - [sym_compound_statement] = STATE(11324), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4566), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(11324), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(10603), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(10841), - [sym__unary_right_fold] = STATE(10845), - [sym__binary_fold] = STATE(10846), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(10568), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(226)] = { - [sym_compound_statement] = STATE(10588), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4607), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10588), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(10838), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(11307), - [sym__unary_right_fold] = STATE(11319), - [sym__binary_fold] = STATE(11322), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11136), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(227)] = { - [sym_compound_statement] = STATE(10588), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4607), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10588), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(11314), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(11307), - [sym__unary_right_fold] = STATE(11319), - [sym__binary_fold] = STATE(11322), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11136), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(228)] = { - [sym_compound_statement] = STATE(10588), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4607), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10588), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(11305), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(11307), - [sym__unary_right_fold] = STATE(11319), - [sym__binary_fold] = STATE(11322), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11136), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(229)] = { - [sym_compound_statement] = STATE(10595), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4645), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10595), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(10605), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(10607), - [sym__unary_right_fold] = STATE(10613), - [sym__binary_fold] = STATE(10617), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(10619), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(230)] = { - [sym_expression] = STATE(5128), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_initializer_list] = STATE(5529), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_COMMA] = ACTIONS(2026), - [anon_sym_RPAREN] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(2024), - [anon_sym_PLUS] = ACTIONS(2024), - [anon_sym_STAR] = ACTIONS(2024), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - [anon_sym_EQ_EQ] = ACTIONS(2026), - [anon_sym_BANG_EQ] = ACTIONS(2026), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2026), - [anon_sym_LT_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2024), - [anon_sym_GT_GT] = ACTIONS(2024), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_EQ] = ACTIONS(2024), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_QMARK] = ACTIONS(2026), - [anon_sym_STAR_EQ] = ACTIONS(2026), - [anon_sym_SLASH_EQ] = ACTIONS(2026), - [anon_sym_PERCENT_EQ] = ACTIONS(2026), - [anon_sym_PLUS_EQ] = ACTIONS(2026), - [anon_sym_DASH_EQ] = ACTIONS(2026), - [anon_sym_LT_LT_EQ] = ACTIONS(2026), - [anon_sym_GT_GT_EQ] = ACTIONS(2026), - [anon_sym_AMP_EQ] = ACTIONS(2026), - [anon_sym_CARET_EQ] = ACTIONS(2026), - [anon_sym_PIPE_EQ] = ACTIONS(2026), - [anon_sym_and_eq] = ACTIONS(2024), - [anon_sym_or_eq] = ACTIONS(2024), - [anon_sym_xor_eq] = ACTIONS(2024), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_LT_EQ_GT] = ACTIONS(2026), - [anon_sym_or] = ACTIONS(2024), - [anon_sym_and] = ACTIONS(2024), - [anon_sym_bitor] = ACTIONS(2024), - [anon_sym_xor] = ACTIONS(2024), - [anon_sym_bitand] = ACTIONS(2024), - [anon_sym_not_eq] = ACTIONS(2024), - [anon_sym_DASH_DASH] = ACTIONS(2026), - [anon_sym_PLUS_PLUS] = ACTIONS(2026), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2026), - [anon_sym_DASH_GT] = ACTIONS(2024), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_DASH_GT_STAR] = ACTIONS(2026), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(231)] = { - [sym_compound_statement] = STATE(10588), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4607), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10588), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(11494), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(10925), - [sym__unary_right_fold] = STATE(10775), - [sym__binary_fold] = STATE(10807), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11136), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(232)] = { - [sym_compound_statement] = STATE(10595), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4645), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10595), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(10818), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(10607), - [sym__unary_right_fold] = STATE(10613), - [sym__binary_fold] = STATE(10617), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(10619), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(233)] = { - [sym_compound_statement] = STATE(10588), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4607), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10588), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(11321), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(10925), - [sym__unary_right_fold] = STATE(10775), - [sym__binary_fold] = STATE(10807), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11136), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(234)] = { - [sym_compound_statement] = STATE(10588), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4607), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10588), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(11012), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(10925), - [sym__unary_right_fold] = STATE(10775), - [sym__binary_fold] = STATE(10807), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11136), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(235)] = { - [sym_compound_statement] = STATE(10588), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4607), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10588), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(11081), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(11307), - [sym__unary_right_fold] = STATE(11319), - [sym__binary_fold] = STATE(11322), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11136), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(236)] = { - [sym_compound_statement] = STATE(10588), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4607), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10588), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(11378), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(11307), - [sym__unary_right_fold] = STATE(11319), - [sym__binary_fold] = STATE(11322), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11136), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(237)] = { - [sym_compound_statement] = STATE(10588), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4607), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10588), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(11355), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(10925), - [sym__unary_right_fold] = STATE(10775), - [sym__binary_fold] = STATE(10807), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11136), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(238)] = { - [sym_compound_statement] = STATE(10588), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4607), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10588), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(10662), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(11307), - [sym__unary_right_fold] = STATE(11319), - [sym__binary_fold] = STATE(11322), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11136), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(239)] = { - [sym_compound_statement] = STATE(10588), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4607), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10588), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(10567), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(10925), - [sym__unary_right_fold] = STATE(10775), - [sym__binary_fold] = STATE(10807), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11136), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(240)] = { - [sym_compound_statement] = STATE(10588), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4607), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10588), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(10570), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(10925), - [sym__unary_right_fold] = STATE(10775), - [sym__binary_fold] = STATE(10807), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11136), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(241)] = { - [sym_compound_statement] = STATE(10588), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4607), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10588), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(11088), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(11307), - [sym__unary_right_fold] = STATE(11319), - [sym__binary_fold] = STATE(11322), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11136), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(242)] = { - [sym_compound_statement] = STATE(10588), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4607), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10588), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(11472), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(10925), - [sym__unary_right_fold] = STATE(10775), - [sym__binary_fold] = STATE(10807), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11136), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(243)] = { - [sym_compound_statement] = STATE(10588), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4607), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10588), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(11389), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(11307), - [sym__unary_right_fold] = STATE(11319), - [sym__binary_fold] = STATE(11322), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11136), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(244)] = { - [sym_compound_statement] = STATE(10588), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4607), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10588), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(11095), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(11307), - [sym__unary_right_fold] = STATE(11319), - [sym__binary_fold] = STATE(11322), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11136), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(245)] = { - [sym_compound_statement] = STATE(10588), - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(4607), - [sym__string] = STATE(5234), - [sym_comma_expression] = STATE(10588), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(10594), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym__unary_left_fold] = STATE(10925), - [sym__unary_right_fold] = STATE(10775), - [sym__binary_fold] = STATE(10807), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7853), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(3907), - [sym__assignment_expression_lhs] = STATE(11136), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2985), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(7868), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(2584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(1904), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(246)] = { - [sym_expression] = STATE(5354), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_initializer_list] = STATE(5704), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_COMMA] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(2600), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2024), - [anon_sym_PLUS] = ACTIONS(2024), - [anon_sym_STAR] = ACTIONS(2024), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - [anon_sym_EQ_EQ] = ACTIONS(2026), - [anon_sym_BANG_EQ] = ACTIONS(2026), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2024), - [anon_sym_LT_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2024), - [anon_sym_GT_GT] = ACTIONS(2024), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_EQ] = ACTIONS(2024), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_QMARK] = ACTIONS(2026), - [anon_sym_STAR_EQ] = ACTIONS(2026), - [anon_sym_SLASH_EQ] = ACTIONS(2026), - [anon_sym_PERCENT_EQ] = ACTIONS(2026), - [anon_sym_PLUS_EQ] = ACTIONS(2026), - [anon_sym_DASH_EQ] = ACTIONS(2026), - [anon_sym_LT_LT_EQ] = ACTIONS(2026), - [anon_sym_GT_GT_EQ] = ACTIONS(2024), - [anon_sym_AMP_EQ] = ACTIONS(2026), - [anon_sym_CARET_EQ] = ACTIONS(2026), - [anon_sym_PIPE_EQ] = ACTIONS(2026), - [anon_sym_and_eq] = ACTIONS(2024), - [anon_sym_or_eq] = ACTIONS(2024), - [anon_sym_xor_eq] = ACTIONS(2024), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_LT_EQ_GT] = ACTIONS(2026), - [anon_sym_or] = ACTIONS(2024), - [anon_sym_and] = ACTIONS(2024), - [anon_sym_bitor] = ACTIONS(2024), - [anon_sym_xor] = ACTIONS(2024), - [anon_sym_bitand] = ACTIONS(2024), - [anon_sym_not_eq] = ACTIONS(2024), - [anon_sym_DASH_DASH] = ACTIONS(2026), - [anon_sym_PLUS_PLUS] = ACTIONS(2026), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2026), - [anon_sym_DASH_GT] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_GT2] = ACTIONS(2026), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), - }, - [STATE(247)] = { - [sym_expression] = STATE(3678), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_initializer_list] = STATE(3758), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_COMMA] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(2650), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2024), - [anon_sym_PLUS] = ACTIONS(2024), - [anon_sym_STAR] = ACTIONS(2024), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - [anon_sym_EQ_EQ] = ACTIONS(2026), - [anon_sym_BANG_EQ] = ACTIONS(2026), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2026), - [anon_sym_LT_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2024), - [anon_sym_GT_GT] = ACTIONS(2024), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_EQ] = ACTIONS(2024), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_QMARK] = ACTIONS(2026), - [anon_sym_STAR_EQ] = ACTIONS(2026), - [anon_sym_SLASH_EQ] = ACTIONS(2026), - [anon_sym_PERCENT_EQ] = ACTIONS(2026), - [anon_sym_PLUS_EQ] = ACTIONS(2026), - [anon_sym_DASH_EQ] = ACTIONS(2026), - [anon_sym_LT_LT_EQ] = ACTIONS(2026), - [anon_sym_GT_GT_EQ] = ACTIONS(2026), - [anon_sym_AMP_EQ] = ACTIONS(2026), - [anon_sym_CARET_EQ] = ACTIONS(2026), - [anon_sym_PIPE_EQ] = ACTIONS(2026), - [anon_sym_and_eq] = ACTIONS(2024), - [anon_sym_or_eq] = ACTIONS(2024), - [anon_sym_xor_eq] = ACTIONS(2024), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_LT_EQ_GT] = ACTIONS(2026), - [anon_sym_or] = ACTIONS(2024), - [anon_sym_and] = ACTIONS(2024), - [anon_sym_bitor] = ACTIONS(2024), - [anon_sym_xor] = ACTIONS(2024), - [anon_sym_bitand] = ACTIONS(2024), - [anon_sym_not_eq] = ACTIONS(2024), - [anon_sym_DASH_DASH] = ACTIONS(2026), - [anon_sym_PLUS_PLUS] = ACTIONS(2026), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2026), - [anon_sym_DASH_GT] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(248)] = { - [sym_expression] = STATE(5407), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_initializer_list] = STATE(3758), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_COMMA] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(2666), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2024), - [anon_sym_PLUS] = ACTIONS(2024), - [anon_sym_STAR] = ACTIONS(2024), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - [anon_sym_EQ_EQ] = ACTIONS(2026), - [anon_sym_BANG_EQ] = ACTIONS(2026), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2026), - [anon_sym_LT_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2024), - [anon_sym_GT_GT] = ACTIONS(2024), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_EQ] = ACTIONS(2024), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_QMARK] = ACTIONS(2026), - [anon_sym_STAR_EQ] = ACTIONS(2026), - [anon_sym_SLASH_EQ] = ACTIONS(2026), - [anon_sym_PERCENT_EQ] = ACTIONS(2026), - [anon_sym_PLUS_EQ] = ACTIONS(2026), - [anon_sym_DASH_EQ] = ACTIONS(2026), - [anon_sym_LT_LT_EQ] = ACTIONS(2026), - [anon_sym_GT_GT_EQ] = ACTIONS(2026), - [anon_sym_AMP_EQ] = ACTIONS(2026), - [anon_sym_CARET_EQ] = ACTIONS(2026), - [anon_sym_PIPE_EQ] = ACTIONS(2026), - [anon_sym_and_eq] = ACTIONS(2024), - [anon_sym_or_eq] = ACTIONS(2024), - [anon_sym_xor_eq] = ACTIONS(2024), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_LT_EQ_GT] = ACTIONS(2026), - [anon_sym_or] = ACTIONS(2024), - [anon_sym_and] = ACTIONS(2024), - [anon_sym_bitor] = ACTIONS(2024), - [anon_sym_xor] = ACTIONS(2024), - [anon_sym_bitand] = ACTIONS(2024), - [anon_sym_not_eq] = ACTIONS(2024), - [anon_sym_DASH_DASH] = ACTIONS(2026), - [anon_sym_PLUS_PLUS] = ACTIONS(2026), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2026), - [anon_sym_DASH_GT] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(249)] = { - [sym_expression] = STATE(5370), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_initializer_list] = STATE(5752), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_COMMA] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2024), - [anon_sym_PLUS] = ACTIONS(2024), - [anon_sym_STAR] = ACTIONS(2024), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - [anon_sym_EQ_EQ] = ACTIONS(2026), - [anon_sym_BANG_EQ] = ACTIONS(2026), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2026), - [anon_sym_LT_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2024), - [anon_sym_GT_GT] = ACTIONS(2024), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_RBRACK] = ACTIONS(2026), - [anon_sym_EQ] = ACTIONS(2024), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_QMARK] = ACTIONS(2026), - [anon_sym_STAR_EQ] = ACTIONS(2026), - [anon_sym_SLASH_EQ] = ACTIONS(2026), - [anon_sym_PERCENT_EQ] = ACTIONS(2026), - [anon_sym_PLUS_EQ] = ACTIONS(2026), - [anon_sym_DASH_EQ] = ACTIONS(2026), - [anon_sym_LT_LT_EQ] = ACTIONS(2026), - [anon_sym_GT_GT_EQ] = ACTIONS(2026), - [anon_sym_AMP_EQ] = ACTIONS(2026), - [anon_sym_CARET_EQ] = ACTIONS(2026), - [anon_sym_PIPE_EQ] = ACTIONS(2026), - [anon_sym_and_eq] = ACTIONS(2024), - [anon_sym_or_eq] = ACTIONS(2024), - [anon_sym_xor_eq] = ACTIONS(2024), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_LT_EQ_GT] = ACTIONS(2026), - [anon_sym_or] = ACTIONS(2024), - [anon_sym_and] = ACTIONS(2024), - [anon_sym_bitor] = ACTIONS(2024), - [anon_sym_xor] = ACTIONS(2024), - [anon_sym_bitand] = ACTIONS(2024), - [anon_sym_not_eq] = ACTIONS(2024), - [anon_sym_DASH_DASH] = ACTIONS(2026), - [anon_sym_PLUS_PLUS] = ACTIONS(2026), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2026), - [anon_sym_DASH_GT] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(250)] = { - [sym_expression] = STATE(5658), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_initializer_list] = STATE(5954), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_COMMA] = ACTIONS(2026), - [anon_sym_RPAREN] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(1974), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(2024), - [anon_sym_PLUS] = ACTIONS(2024), - [anon_sym_STAR] = ACTIONS(2024), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - [anon_sym_EQ_EQ] = ACTIONS(2026), - [anon_sym_BANG_EQ] = ACTIONS(2026), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2026), - [anon_sym_LT_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2024), - [anon_sym_GT_GT] = ACTIONS(2024), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_EQ] = ACTIONS(2024), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2026), - [anon_sym_STAR_EQ] = ACTIONS(2026), - [anon_sym_SLASH_EQ] = ACTIONS(2026), - [anon_sym_PERCENT_EQ] = ACTIONS(2026), - [anon_sym_PLUS_EQ] = ACTIONS(2026), - [anon_sym_DASH_EQ] = ACTIONS(2026), - [anon_sym_LT_LT_EQ] = ACTIONS(2026), - [anon_sym_GT_GT_EQ] = ACTIONS(2026), - [anon_sym_AMP_EQ] = ACTIONS(2026), - [anon_sym_CARET_EQ] = ACTIONS(2026), - [anon_sym_PIPE_EQ] = ACTIONS(2026), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_LT_EQ_GT] = ACTIONS(2026), - [anon_sym_or] = ACTIONS(2024), - [anon_sym_and] = ACTIONS(2024), - [anon_sym_bitor] = ACTIONS(2024), - [anon_sym_xor] = ACTIONS(2024), - [anon_sym_bitand] = ACTIONS(2024), - [anon_sym_not_eq] = ACTIONS(2024), - [anon_sym_DASH_DASH] = ACTIONS(2026), - [anon_sym_PLUS_PLUS] = ACTIONS(2026), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2026), - [anon_sym_DASH_GT] = ACTIONS(2024), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_DASH_GT_STAR] = ACTIONS(2026), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(251)] = { - [sym_expression] = STATE(6334), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(2746), - [anon_sym_LPAREN2] = ACTIONS(2749), + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(578), + [sym_attributed_statement] = STATE(578), + [sym_statement] = STATE(609), + [sym_labeled_statement] = STATE(578), + [sym_expression_statement] = STATE(578), + [sym_if_statement] = STATE(578), + [sym_switch_statement] = STATE(578), + [sym_case_statement] = STATE(578), + [sym_while_statement] = STATE(578), + [sym_do_statement] = STATE(578), + [sym_for_statement] = STATE(578), + [sym_return_statement] = STATE(578), + [sym_break_statement] = STATE(578), + [sym_continue_statement] = STATE(578), + [sym_goto_statement] = STATE(578), + [sym_seh_try_statement] = STATE(578), + [sym_seh_leave_statement] = STATE(578), + [sym_expression] = STATE(6807), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11035), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(578), + [sym_co_return_statement] = STATE(578), + [sym_co_yield_statement] = STATE(578), + [sym_throw_statement] = STATE(578), + [sym_try_statement] = STATE(578), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(578), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(2636), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(2755), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_AMP] = ACTIONS(2760), - [anon_sym___extension__] = ACTIONS(2763), - [anon_sym_typedef] = ACTIONS(2766), - [anon_sym_virtual] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), - [anon_sym___declspec] = ACTIONS(2768), - [anon_sym___based] = ACTIONS(2768), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_register] = ACTIONS(2768), - [anon_sym_inline] = ACTIONS(2768), - [anon_sym___inline] = ACTIONS(2768), - [anon_sym___inline__] = ACTIONS(2768), - [anon_sym___forceinline] = ACTIONS(2768), - [anon_sym_thread_local] = ACTIONS(2768), - [anon_sym___thread] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2776), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1324), + [anon_sym___leave] = ACTIONS(1326), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -90081,7 +89367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2779), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -90101,12 +89387,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_explicit] = ACTIONS(2768), - [anon_sym_template] = ACTIONS(2785), - [anon_sym_operator] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1949), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -90116,109 +89403,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(252)] = { - [sym_expression] = STATE(6334), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(2746), - [anon_sym_LPAREN2] = ACTIONS(2749), + [STATE(215)] = { + [sym_attribute_declaration] = STATE(180), + [sym_compound_statement] = STATE(637), + [sym_attributed_statement] = STATE(637), + [sym_statement] = STATE(620), + [sym_labeled_statement] = STATE(637), + [sym_expression_statement] = STATE(637), + [sym_if_statement] = STATE(637), + [sym_switch_statement] = STATE(637), + [sym_case_statement] = STATE(637), + [sym_while_statement] = STATE(637), + [sym_do_statement] = STATE(637), + [sym_for_statement] = STATE(637), + [sym_return_statement] = STATE(637), + [sym_break_statement] = STATE(637), + [sym_continue_statement] = STATE(637), + [sym_goto_statement] = STATE(637), + [sym_seh_try_statement] = STATE(637), + [sym_seh_leave_statement] = STATE(637), + [sym_expression] = STATE(6804), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11583), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(637), + [sym_co_return_statement] = STATE(637), + [sym_co_yield_statement] = STATE(637), + [sym_throw_statement] = STATE(637), + [sym_try_statement] = STATE(637), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(637), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(180), + [sym_identifier] = ACTIONS(2592), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(2755), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_AMP] = ACTIONS(2760), - [anon_sym___extension__] = ACTIONS(2763), - [anon_sym_typedef] = ACTIONS(2791), - [anon_sym_virtual] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), - [anon_sym___declspec] = ACTIONS(2768), - [anon_sym___based] = ACTIONS(2768), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_register] = ACTIONS(2768), - [anon_sym_inline] = ACTIONS(2768), - [anon_sym___inline] = ACTIONS(2768), - [anon_sym___inline__] = ACTIONS(2768), - [anon_sym___forceinline] = ACTIONS(2768), - [anon_sym_thread_local] = ACTIONS(2768), - [anon_sym___thread] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2776), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1125), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1141), + [anon_sym___leave] = ACTIONS(1143), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -90231,7 +89521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2779), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -90251,12 +89541,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_explicit] = ACTIONS(2768), - [anon_sym_template] = ACTIONS(2785), - [anon_sym_operator] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1943), + [anon_sym_try] = ACTIONS(1151), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1153), + [anon_sym_co_return] = ACTIONS(1161), + [anon_sym_co_yield] = ACTIONS(1163), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -90266,259 +89557,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(253)] = { - [ts_builtin_sym_end] = ACTIONS(2793), - [sym_identifier] = ACTIONS(2795), - [aux_sym_preproc_include_token1] = ACTIONS(2795), - [aux_sym_preproc_def_token1] = ACTIONS(2795), - [anon_sym_COMMA] = ACTIONS(2793), - [anon_sym_RPAREN] = ACTIONS(2793), - [aux_sym_preproc_if_token1] = ACTIONS(2795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), - [sym_preproc_directive] = ACTIONS(2795), - [anon_sym_LPAREN2] = ACTIONS(2793), - [anon_sym_BANG] = ACTIONS(2793), - [anon_sym_TILDE] = ACTIONS(2793), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2793), - [anon_sym_PIPE_PIPE] = ACTIONS(2793), - [anon_sym_AMP_AMP] = ACTIONS(2793), - [anon_sym_AMP] = ACTIONS(2795), - [anon_sym_SEMI] = ACTIONS(2793), - [anon_sym___extension__] = ACTIONS(2795), - [anon_sym_typedef] = ACTIONS(2795), - [anon_sym_virtual] = ACTIONS(2795), - [anon_sym_extern] = ACTIONS(2795), - [anon_sym___attribute__] = ACTIONS(2795), - [anon_sym___attribute] = ACTIONS(2795), - [anon_sym_using] = ACTIONS(2795), - [anon_sym_COLON_COLON] = ACTIONS(2793), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), - [anon_sym___declspec] = ACTIONS(2795), - [anon_sym___based] = ACTIONS(2795), - [anon_sym___cdecl] = ACTIONS(2795), - [anon_sym___clrcall] = ACTIONS(2795), - [anon_sym___stdcall] = ACTIONS(2795), - [anon_sym___fastcall] = ACTIONS(2795), - [anon_sym___thiscall] = ACTIONS(2795), - [anon_sym___vectorcall] = ACTIONS(2795), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_signed] = ACTIONS(2795), - [anon_sym_unsigned] = ACTIONS(2795), - [anon_sym_long] = ACTIONS(2795), - [anon_sym_short] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2795), - [anon_sym_static] = ACTIONS(2795), - [anon_sym_register] = ACTIONS(2795), - [anon_sym_inline] = ACTIONS(2795), - [anon_sym___inline] = ACTIONS(2795), - [anon_sym___inline__] = ACTIONS(2795), - [anon_sym___forceinline] = ACTIONS(2795), - [anon_sym_thread_local] = ACTIONS(2795), - [anon_sym___thread] = ACTIONS(2795), - [anon_sym_const] = ACTIONS(2795), - [anon_sym_constexpr] = ACTIONS(2795), - [anon_sym_volatile] = ACTIONS(2795), - [anon_sym_restrict] = ACTIONS(2795), - [anon_sym___restrict__] = ACTIONS(2795), - [anon_sym__Atomic] = ACTIONS(2795), - [anon_sym__Noreturn] = ACTIONS(2795), - [anon_sym_noreturn] = ACTIONS(2795), - [anon_sym__Nonnull] = ACTIONS(2795), - [anon_sym_mutable] = ACTIONS(2795), - [anon_sym_constinit] = ACTIONS(2795), - [anon_sym_consteval] = ACTIONS(2795), - [anon_sym_alignas] = ACTIONS(2795), - [anon_sym__Alignas] = ACTIONS(2795), - [sym_primitive_type] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2795), - [anon_sym_class] = ACTIONS(2795), - [anon_sym_struct] = ACTIONS(2795), - [anon_sym_union] = ACTIONS(2795), - [anon_sym_if] = ACTIONS(2795), - [anon_sym_else] = ACTIONS(2795), - [anon_sym_switch] = ACTIONS(2795), - [anon_sym_case] = ACTIONS(2795), - [anon_sym_default] = ACTIONS(2795), - [anon_sym_while] = ACTIONS(2795), - [anon_sym_do] = ACTIONS(2795), - [anon_sym_for] = ACTIONS(2795), - [anon_sym_return] = ACTIONS(2795), - [anon_sym_break] = ACTIONS(2795), - [anon_sym_continue] = ACTIONS(2795), - [anon_sym_goto] = ACTIONS(2795), - [anon_sym___try] = ACTIONS(2795), - [anon_sym___except] = ACTIONS(2795), - [anon_sym___finally] = ACTIONS(2795), - [anon_sym___leave] = ACTIONS(2795), - [anon_sym_not] = ACTIONS(2795), - [anon_sym_compl] = ACTIONS(2795), - [anon_sym_or] = ACTIONS(2795), - [anon_sym_and] = ACTIONS(2795), - [anon_sym_DASH_DASH] = ACTIONS(2793), - [anon_sym_PLUS_PLUS] = ACTIONS(2793), - [anon_sym_sizeof] = ACTIONS(2795), - [anon_sym___alignof__] = ACTIONS(2795), - [anon_sym___alignof] = ACTIONS(2795), - [anon_sym__alignof] = ACTIONS(2795), - [anon_sym_alignof] = ACTIONS(2795), - [anon_sym__Alignof] = ACTIONS(2795), - [anon_sym_offsetof] = ACTIONS(2795), - [anon_sym__Generic] = ACTIONS(2795), - [anon_sym_typename] = ACTIONS(2795), - [anon_sym_asm] = ACTIONS(2795), - [anon_sym___asm__] = ACTIONS(2795), - [anon_sym___asm] = ACTIONS(2795), - [sym_number_literal] = ACTIONS(2793), - [anon_sym_L_SQUOTE] = ACTIONS(2793), - [anon_sym_u_SQUOTE] = ACTIONS(2793), - [anon_sym_U_SQUOTE] = ACTIONS(2793), - [anon_sym_u8_SQUOTE] = ACTIONS(2793), - [anon_sym_SQUOTE] = ACTIONS(2793), - [anon_sym_L_DQUOTE] = ACTIONS(2793), - [anon_sym_u_DQUOTE] = ACTIONS(2793), - [anon_sym_U_DQUOTE] = ACTIONS(2793), - [anon_sym_u8_DQUOTE] = ACTIONS(2793), - [anon_sym_DQUOTE] = ACTIONS(2793), - [sym_true] = ACTIONS(2795), - [sym_false] = ACTIONS(2795), - [anon_sym_NULL] = ACTIONS(2795), - [anon_sym_nullptr] = ACTIONS(2795), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2795), - [anon_sym_decltype] = ACTIONS(2795), - [anon_sym_explicit] = ACTIONS(2795), - [anon_sym_export] = ACTIONS(2795), - [anon_sym_module] = ACTIONS(2795), - [anon_sym_import] = ACTIONS(2795), - [anon_sym_template] = ACTIONS(2795), - [anon_sym_operator] = ACTIONS(2795), - [anon_sym_try] = ACTIONS(2795), - [anon_sym_delete] = ACTIONS(2795), - [anon_sym_throw] = ACTIONS(2795), - [anon_sym_namespace] = ACTIONS(2795), - [anon_sym_static_assert] = ACTIONS(2795), - [anon_sym_concept] = ACTIONS(2795), - [anon_sym_co_return] = ACTIONS(2795), - [anon_sym_co_yield] = ACTIONS(2795), - [anon_sym_catch] = ACTIONS(2795), - [anon_sym_R_DQUOTE] = ACTIONS(2793), - [anon_sym_LR_DQUOTE] = ACTIONS(2793), - [anon_sym_uR_DQUOTE] = ACTIONS(2793), - [anon_sym_UR_DQUOTE] = ACTIONS(2793), - [anon_sym_u8R_DQUOTE] = ACTIONS(2793), - [anon_sym_co_await] = ACTIONS(2795), - [anon_sym_new] = ACTIONS(2795), - [anon_sym_requires] = ACTIONS(2795), - [anon_sym_CARET_CARET] = ACTIONS(2793), - [anon_sym_LBRACK_COLON] = ACTIONS(2793), - [sym_this] = ACTIONS(2795), - }, - [STATE(254)] = { - [sym_expression] = STATE(6334), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(2746), - [anon_sym_LPAREN2] = ACTIONS(2749), + [STATE(216)] = { + [sym_attribute_declaration] = STATE(221), + [sym_compound_statement] = STATE(772), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(596), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(2755), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_AMP] = ACTIONS(2760), - [anon_sym___extension__] = ACTIONS(2763), - [anon_sym_typedef] = ACTIONS(2797), - [anon_sym_virtual] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), - [anon_sym___declspec] = ACTIONS(2768), - [anon_sym___based] = ACTIONS(2768), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_register] = ACTIONS(2768), - [anon_sym_inline] = ACTIONS(2768), - [anon_sym___inline] = ACTIONS(2768), - [anon_sym___inline__] = ACTIONS(2768), - [anon_sym___forceinline] = ACTIONS(2768), - [anon_sym_thread_local] = ACTIONS(2768), - [anon_sym___thread] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2776), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2202), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -90531,7 +89675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2779), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -90551,12 +89695,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_explicit] = ACTIONS(2768), - [anon_sym_template] = ACTIONS(2785), - [anon_sym_operator] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -90566,109 +89711,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(255)] = { - [sym_expression] = STATE(6334), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(2746), - [anon_sym_LPAREN2] = ACTIONS(2749), + [STATE(217)] = { + [sym_attribute_declaration] = STATE(193), + [sym_compound_statement] = STATE(339), + [sym_attributed_statement] = STATE(339), + [sym_statement] = STATE(312), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(2604), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(2752), + [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(2755), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_AMP] = ACTIONS(2760), - [anon_sym___extension__] = ACTIONS(2763), - [anon_sym_typedef] = ACTIONS(2799), - [anon_sym_virtual] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), - [anon_sym___declspec] = ACTIONS(2768), - [anon_sym___based] = ACTIONS(2768), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_register] = ACTIONS(2768), - [anon_sym_inline] = ACTIONS(2768), - [anon_sym___inline] = ACTIONS(2768), - [anon_sym___inline__] = ACTIONS(2768), - [anon_sym___forceinline] = ACTIONS(2768), - [anon_sym_thread_local] = ACTIONS(2768), - [anon_sym___thread] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2776), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -90681,7 +89829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2779), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -90701,12 +89849,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_explicit] = ACTIONS(2768), - [anon_sym_template] = ACTIONS(2785), - [anon_sym_operator] = ACTIONS(2768), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1672), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -90716,1874 +89865,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(256)] = { - [ts_builtin_sym_end] = ACTIONS(2801), - [sym_identifier] = ACTIONS(2803), - [aux_sym_preproc_include_token1] = ACTIONS(2803), - [aux_sym_preproc_def_token1] = ACTIONS(2803), - [anon_sym_RPAREN] = ACTIONS(2801), - [aux_sym_preproc_if_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2803), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2803), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_PIPE_PIPE] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym___extension__] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2803), - [anon_sym_virtual] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym___attribute__] = ACTIONS(2803), - [anon_sym___attribute] = ACTIONS(2803), - [anon_sym_using] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2803), - [anon_sym___based] = ACTIONS(2803), - [anon_sym___cdecl] = ACTIONS(2803), - [anon_sym___clrcall] = ACTIONS(2803), - [anon_sym___stdcall] = ACTIONS(2803), - [anon_sym___fastcall] = ACTIONS(2803), - [anon_sym___thiscall] = ACTIONS(2803), - [anon_sym___vectorcall] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_signed] = ACTIONS(2803), - [anon_sym_unsigned] = ACTIONS(2803), - [anon_sym_long] = ACTIONS(2803), - [anon_sym_short] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_register] = ACTIONS(2803), - [anon_sym_inline] = ACTIONS(2803), - [anon_sym___inline] = ACTIONS(2803), - [anon_sym___inline__] = ACTIONS(2803), - [anon_sym___forceinline] = ACTIONS(2803), - [anon_sym_thread_local] = ACTIONS(2803), - [anon_sym___thread] = ACTIONS(2803), - [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__Nonnull] = ACTIONS(2803), - [anon_sym_mutable] = ACTIONS(2803), - [anon_sym_constinit] = ACTIONS(2803), - [anon_sym_consteval] = ACTIONS(2803), - [anon_sym_alignas] = ACTIONS(2803), - [anon_sym__Alignas] = ACTIONS(2803), - [sym_primitive_type] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_if] = ACTIONS(2803), - [anon_sym_else] = ACTIONS(2803), - [anon_sym_switch] = ACTIONS(2803), - [anon_sym_case] = ACTIONS(2803), - [anon_sym_default] = ACTIONS(2803), - [anon_sym_while] = ACTIONS(2803), - [anon_sym_do] = ACTIONS(2803), - [anon_sym_for] = ACTIONS(2803), - [anon_sym_return] = ACTIONS(2803), - [anon_sym_break] = ACTIONS(2803), - [anon_sym_continue] = ACTIONS(2803), - [anon_sym_goto] = ACTIONS(2803), - [anon_sym___try] = ACTIONS(2803), - [anon_sym___except] = ACTIONS(2803), - [anon_sym___finally] = ACTIONS(2803), - [anon_sym___leave] = ACTIONS(2803), - [anon_sym_not] = ACTIONS(2803), - [anon_sym_compl] = ACTIONS(2803), - [anon_sym_or] = ACTIONS(2803), - [anon_sym_and] = ACTIONS(2803), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_sizeof] = ACTIONS(2803), - [anon_sym___alignof__] = ACTIONS(2803), - [anon_sym___alignof] = ACTIONS(2803), - [anon_sym__alignof] = ACTIONS(2803), - [anon_sym_alignof] = ACTIONS(2803), - [anon_sym__Alignof] = ACTIONS(2803), - [anon_sym_offsetof] = ACTIONS(2803), - [anon_sym__Generic] = ACTIONS(2803), - [anon_sym_typename] = ACTIONS(2803), - [anon_sym_asm] = ACTIONS(2803), - [anon_sym___asm__] = ACTIONS(2803), - [anon_sym___asm] = ACTIONS(2803), - [sym_number_literal] = ACTIONS(2801), - [anon_sym_L_SQUOTE] = ACTIONS(2801), - [anon_sym_u_SQUOTE] = ACTIONS(2801), - [anon_sym_U_SQUOTE] = ACTIONS(2801), - [anon_sym_u8_SQUOTE] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2801), - [anon_sym_L_DQUOTE] = ACTIONS(2801), - [anon_sym_u_DQUOTE] = ACTIONS(2801), - [anon_sym_U_DQUOTE] = ACTIONS(2801), - [anon_sym_u8_DQUOTE] = ACTIONS(2801), - [anon_sym_DQUOTE] = ACTIONS(2801), - [sym_true] = ACTIONS(2803), - [sym_false] = ACTIONS(2803), - [anon_sym_NULL] = ACTIONS(2803), - [anon_sym_nullptr] = ACTIONS(2803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2803), - [anon_sym_decltype] = ACTIONS(2803), - [anon_sym_explicit] = ACTIONS(2803), - [anon_sym_export] = ACTIONS(2803), - [anon_sym_module] = ACTIONS(2803), - [anon_sym_import] = ACTIONS(2803), - [anon_sym_template] = ACTIONS(2803), - [anon_sym_operator] = ACTIONS(2803), - [anon_sym_try] = ACTIONS(2803), - [anon_sym_delete] = ACTIONS(2803), - [anon_sym_throw] = ACTIONS(2803), - [anon_sym_namespace] = ACTIONS(2803), - [anon_sym_static_assert] = ACTIONS(2803), - [anon_sym_concept] = ACTIONS(2803), - [anon_sym_co_return] = ACTIONS(2803), - [anon_sym_co_yield] = ACTIONS(2803), - [anon_sym_catch] = ACTIONS(2803), - [anon_sym_R_DQUOTE] = ACTIONS(2801), - [anon_sym_LR_DQUOTE] = ACTIONS(2801), - [anon_sym_uR_DQUOTE] = ACTIONS(2801), - [anon_sym_UR_DQUOTE] = ACTIONS(2801), - [anon_sym_u8R_DQUOTE] = ACTIONS(2801), - [anon_sym_co_await] = ACTIONS(2803), - [anon_sym_new] = ACTIONS(2803), - [anon_sym_requires] = ACTIONS(2803), - [anon_sym_CARET_CARET] = ACTIONS(2801), - [anon_sym_LBRACK_COLON] = ACTIONS(2801), - [sym_this] = ACTIONS(2803), - }, - [STATE(257)] = { - [sym_type_qualifier] = STATE(5103), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7417), - [sym_sized_type_specifier] = STATE(4402), - [sym_enum_specifier] = STATE(4402), - [sym_struct_specifier] = STATE(4402), - [sym_union_specifier] = STATE(4402), - [sym_expression] = STATE(6498), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_type_descriptor] = STATE(9359), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_placeholder_type_specifier] = STATE(4402), - [sym_decltype_auto] = STATE(4401), - [sym_decltype] = STATE(4252), - [sym_class_specifier] = STATE(4402), - [sym__class_name] = STATE(10478), - [sym_dependent_type] = STATE(4402), - [sym_template_type] = STATE(4523), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_type_parameter_pack_expansion] = STATE(9561), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7816), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(4655), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(4852), - [sym__splice_specialization_specifier] = STATE(4189), - [sym_splice_type_specifier] = STATE(4612), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [aux_sym__type_definition_type_repeat1] = STATE(5103), - [aux_sym_sized_type_specifier_repeat1] = STATE(6549), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2857), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_GT2] = ACTIONS(2861), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(258)] = { - [sym_type_qualifier] = STATE(5103), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7417), - [sym_sized_type_specifier] = STATE(4402), - [sym_enum_specifier] = STATE(4402), - [sym_struct_specifier] = STATE(4402), - [sym_union_specifier] = STATE(4402), - [sym_expression] = STATE(6448), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_type_descriptor] = STATE(9370), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_placeholder_type_specifier] = STATE(4402), - [sym_decltype_auto] = STATE(4401), - [sym_decltype] = STATE(4252), - [sym_class_specifier] = STATE(4402), - [sym__class_name] = STATE(10478), - [sym_dependent_type] = STATE(4402), - [sym_template_type] = STATE(4523), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_type_parameter_pack_expansion] = STATE(9595), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7816), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(4655), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(4852), - [sym__splice_specialization_specifier] = STATE(4189), - [sym_splice_type_specifier] = STATE(4612), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [aux_sym__type_definition_type_repeat1] = STATE(5103), - [aux_sym_sized_type_specifier_repeat1] = STATE(6549), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2857), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_GT2] = ACTIONS(2877), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(259)] = { - [sym_type_qualifier] = STATE(5103), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7417), - [sym_sized_type_specifier] = STATE(4402), - [sym_enum_specifier] = STATE(4402), - [sym_struct_specifier] = STATE(4402), - [sym_union_specifier] = STATE(4402), - [sym_expression] = STATE(6503), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_type_descriptor] = STATE(9397), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_placeholder_type_specifier] = STATE(4402), - [sym_decltype_auto] = STATE(4401), - [sym_decltype] = STATE(4252), - [sym_class_specifier] = STATE(4402), - [sym__class_name] = STATE(10478), - [sym_dependent_type] = STATE(4402), - [sym_template_type] = STATE(4523), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_type_parameter_pack_expansion] = STATE(9605), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7816), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(4655), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(4852), - [sym__splice_specialization_specifier] = STATE(4189), - [sym_splice_type_specifier] = STATE(4612), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [aux_sym__type_definition_type_repeat1] = STATE(5103), - [aux_sym_sized_type_specifier_repeat1] = STATE(6549), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2857), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_GT2] = ACTIONS(2879), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(260)] = { - [sym_type_qualifier] = STATE(5103), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7417), - [sym_sized_type_specifier] = STATE(4402), - [sym_enum_specifier] = STATE(4402), - [sym_struct_specifier] = STATE(4402), - [sym_union_specifier] = STATE(4402), - [sym_expression] = STATE(6504), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_type_descriptor] = STATE(9439), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_placeholder_type_specifier] = STATE(4402), - [sym_decltype_auto] = STATE(4401), - [sym_decltype] = STATE(4252), - [sym_class_specifier] = STATE(4402), - [sym__class_name] = STATE(10478), - [sym_dependent_type] = STATE(4402), - [sym_template_type] = STATE(4523), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_type_parameter_pack_expansion] = STATE(9616), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7816), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(4655), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(4852), - [sym__splice_specialization_specifier] = STATE(4189), - [sym_splice_type_specifier] = STATE(4612), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [aux_sym__type_definition_type_repeat1] = STATE(5103), - [aux_sym_sized_type_specifier_repeat1] = STATE(6549), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2857), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_GT2] = ACTIONS(2881), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(261)] = { - [sym_type_qualifier] = STATE(5103), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7417), - [sym_sized_type_specifier] = STATE(4402), - [sym_enum_specifier] = STATE(4402), - [sym_struct_specifier] = STATE(4402), - [sym_union_specifier] = STATE(4402), - [sym_expression] = STATE(6505), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_type_descriptor] = STATE(9449), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_placeholder_type_specifier] = STATE(4402), - [sym_decltype_auto] = STATE(4401), - [sym_decltype] = STATE(4252), - [sym_class_specifier] = STATE(4402), - [sym__class_name] = STATE(10478), - [sym_dependent_type] = STATE(4402), - [sym_template_type] = STATE(4523), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_type_parameter_pack_expansion] = STATE(9626), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7816), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(4655), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(4852), - [sym__splice_specialization_specifier] = STATE(4189), - [sym_splice_type_specifier] = STATE(4612), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [aux_sym__type_definition_type_repeat1] = STATE(5103), - [aux_sym_sized_type_specifier_repeat1] = STATE(6549), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2857), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_GT2] = ACTIONS(2883), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(262)] = { - [sym_type_qualifier] = STATE(5103), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7417), - [sym_sized_type_specifier] = STATE(4402), - [sym_enum_specifier] = STATE(4402), - [sym_struct_specifier] = STATE(4402), - [sym_union_specifier] = STATE(4402), - [sym_expression] = STATE(6506), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_type_descriptor] = STATE(9462), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_placeholder_type_specifier] = STATE(4402), - [sym_decltype_auto] = STATE(4401), - [sym_decltype] = STATE(4252), - [sym_class_specifier] = STATE(4402), - [sym__class_name] = STATE(10478), - [sym_dependent_type] = STATE(4402), - [sym_template_type] = STATE(4523), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_type_parameter_pack_expansion] = STATE(9634), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7816), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(4655), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(4852), - [sym__splice_specialization_specifier] = STATE(4189), - [sym_splice_type_specifier] = STATE(4612), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [aux_sym__type_definition_type_repeat1] = STATE(5103), - [aux_sym_sized_type_specifier_repeat1] = STATE(6549), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2857), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_GT2] = ACTIONS(2885), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(263)] = { - [sym_type_qualifier] = STATE(5103), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7417), - [sym_sized_type_specifier] = STATE(4402), - [sym_enum_specifier] = STATE(4402), - [sym_struct_specifier] = STATE(4402), - [sym_union_specifier] = STATE(4402), - [sym_expression] = STATE(6507), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_type_descriptor] = STATE(9475), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_placeholder_type_specifier] = STATE(4402), - [sym_decltype_auto] = STATE(4401), - [sym_decltype] = STATE(4252), - [sym_class_specifier] = STATE(4402), - [sym__class_name] = STATE(10478), - [sym_dependent_type] = STATE(4402), - [sym_template_type] = STATE(4523), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_type_parameter_pack_expansion] = STATE(9639), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7816), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(4655), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(4852), - [sym__splice_specialization_specifier] = STATE(4189), - [sym_splice_type_specifier] = STATE(4612), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [aux_sym__type_definition_type_repeat1] = STATE(5103), - [aux_sym_sized_type_specifier_repeat1] = STATE(6549), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2857), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_GT2] = ACTIONS(2887), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(264)] = { - [sym_type_qualifier] = STATE(5103), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7417), - [sym_sized_type_specifier] = STATE(4402), - [sym_enum_specifier] = STATE(4402), - [sym_struct_specifier] = STATE(4402), - [sym_union_specifier] = STATE(4402), - [sym_expression] = STATE(6508), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_type_descriptor] = STATE(9486), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_placeholder_type_specifier] = STATE(4402), - [sym_decltype_auto] = STATE(4401), - [sym_decltype] = STATE(4252), - [sym_class_specifier] = STATE(4402), - [sym__class_name] = STATE(10478), - [sym_dependent_type] = STATE(4402), - [sym_template_type] = STATE(4523), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_type_parameter_pack_expansion] = STATE(9649), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7816), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(4655), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(4852), - [sym__splice_specialization_specifier] = STATE(4189), - [sym_splice_type_specifier] = STATE(4612), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [aux_sym__type_definition_type_repeat1] = STATE(5103), - [aux_sym_sized_type_specifier_repeat1] = STATE(6549), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2857), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_GT2] = ACTIONS(2889), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(265)] = { - [sym_type_qualifier] = STATE(5103), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7417), - [sym_sized_type_specifier] = STATE(4402), - [sym_enum_specifier] = STATE(4402), - [sym_struct_specifier] = STATE(4402), - [sym_union_specifier] = STATE(4402), - [sym_expression] = STATE(6473), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_type_descriptor] = STATE(9417), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_placeholder_type_specifier] = STATE(4402), - [sym_decltype_auto] = STATE(4401), - [sym_decltype] = STATE(4252), - [sym_class_specifier] = STATE(4402), - [sym__class_name] = STATE(10478), - [sym_dependent_type] = STATE(4402), - [sym_template_type] = STATE(4523), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_type_parameter_pack_expansion] = STATE(9852), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7816), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(4655), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(4852), - [sym__splice_specialization_specifier] = STATE(4189), - [sym_splice_type_specifier] = STATE(4612), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [aux_sym__type_definition_type_repeat1] = STATE(5103), - [aux_sym_sized_type_specifier_repeat1] = STATE(6549), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2857), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_GT2] = ACTIONS(2891), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(266)] = { - [sym_type_qualifier] = STATE(5103), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7417), - [sym_sized_type_specifier] = STATE(4402), - [sym_enum_specifier] = STATE(4402), - [sym_struct_specifier] = STATE(4402), - [sym_union_specifier] = STATE(4402), - [sym_expression] = STATE(6601), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_type_descriptor] = STATE(9500), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_placeholder_type_specifier] = STATE(4402), - [sym_decltype_auto] = STATE(4401), - [sym_decltype] = STATE(4252), - [sym_class_specifier] = STATE(4402), - [sym__class_name] = STATE(10478), - [sym_dependent_type] = STATE(4402), - [sym_template_type] = STATE(4523), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_type_parameter_pack_expansion] = STATE(9681), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7816), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(4655), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(4852), - [sym__splice_specialization_specifier] = STATE(4189), - [sym_splice_type_specifier] = STATE(4612), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [aux_sym__type_definition_type_repeat1] = STATE(5103), - [aux_sym_sized_type_specifier_repeat1] = STATE(6549), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2857), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_GT2] = ACTIONS(2893), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(267)] = { - [sym_type_qualifier] = STATE(5103), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7417), - [sym_sized_type_specifier] = STATE(4402), - [sym_enum_specifier] = STATE(4402), - [sym_struct_specifier] = STATE(4402), - [sym_union_specifier] = STATE(4402), - [sym_expression] = STATE(6515), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_type_descriptor] = STATE(9508), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_placeholder_type_specifier] = STATE(4402), - [sym_decltype_auto] = STATE(4401), - [sym_decltype] = STATE(4252), - [sym_class_specifier] = STATE(4402), - [sym__class_name] = STATE(10478), - [sym_dependent_type] = STATE(4402), - [sym_template_type] = STATE(4523), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_type_parameter_pack_expansion] = STATE(9816), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7816), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(4655), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(4852), - [sym__splice_specialization_specifier] = STATE(4189), - [sym_splice_type_specifier] = STATE(4612), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [aux_sym__type_definition_type_repeat1] = STATE(5103), - [aux_sym_sized_type_specifier_repeat1] = STATE(6549), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2857), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_GT2] = ACTIONS(2895), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(268)] = { - [sym_expression] = STATE(6763), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10510), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(2897), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(218)] = { + [sym_attribute_declaration] = STATE(193), + [sym_compound_statement] = STATE(339), + [sym_attributed_statement] = STATE(339), + [sym_statement] = STATE(352), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(2604), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(2900), - [anon_sym___extension__] = ACTIONS(2902), - [anon_sym_virtual] = ACTIONS(2905), - [anon_sym_extern] = ACTIONS(2905), - [anon_sym___attribute__] = ACTIONS(2905), - [anon_sym___attribute] = ACTIONS(2905), - [anon_sym_COLON_COLON] = ACTIONS(2907), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2910), - [anon_sym___declspec] = ACTIONS(2905), - [anon_sym_signed] = ACTIONS(2905), - [anon_sym_unsigned] = ACTIONS(2905), - [anon_sym_long] = ACTIONS(2905), - [anon_sym_short] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_register] = ACTIONS(2905), - [anon_sym_inline] = ACTIONS(2905), - [anon_sym___inline] = ACTIONS(2905), - [anon_sym___inline__] = ACTIONS(2905), - [anon_sym___forceinline] = ACTIONS(2905), - [anon_sym_thread_local] = ACTIONS(2905), - [anon_sym___thread] = ACTIONS(2905), - [anon_sym_const] = ACTIONS(2905), - [anon_sym_constexpr] = ACTIONS(2905), - [anon_sym_volatile] = ACTIONS(2905), - [anon_sym_restrict] = ACTIONS(2905), - [anon_sym___restrict__] = ACTIONS(2905), - [anon_sym__Atomic] = ACTIONS(2905), - [anon_sym__Noreturn] = ACTIONS(2905), - [anon_sym_noreturn] = ACTIONS(2905), - [anon_sym__Nonnull] = ACTIONS(2905), - [anon_sym_mutable] = ACTIONS(2905), - [anon_sym_constinit] = ACTIONS(2905), - [anon_sym_consteval] = ACTIONS(2905), - [anon_sym_alignas] = ACTIONS(2905), - [anon_sym__Alignas] = ACTIONS(2905), - [sym_primitive_type] = ACTIONS(2912), - [anon_sym_enum] = ACTIONS(2905), - [anon_sym_class] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2905), - [anon_sym_union] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -92596,7 +89983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2915), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -92616,10 +90003,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2905), - [anon_sym_decltype] = ACTIONS(2918), - [anon_sym_template] = ACTIONS(2921), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1672), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -92629,402 +90019,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(269)] = { - [sym_type_qualifier] = STATE(5103), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7417), - [sym_sized_type_specifier] = STATE(4402), - [sym_enum_specifier] = STATE(4402), - [sym_struct_specifier] = STATE(4402), - [sym_union_specifier] = STATE(4402), - [sym_expression] = STATE(6489), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_type_descriptor] = STATE(9341), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_placeholder_type_specifier] = STATE(4402), - [sym_decltype_auto] = STATE(4401), - [sym_decltype] = STATE(4252), - [sym_class_specifier] = STATE(4402), - [sym__class_name] = STATE(10478), - [sym_dependent_type] = STATE(4402), - [sym_template_type] = STATE(4523), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_type_parameter_pack_expansion] = STATE(9970), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7816), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(4655), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(4852), - [sym__splice_specialization_specifier] = STATE(4189), - [sym_splice_type_specifier] = STATE(4612), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [aux_sym__type_definition_type_repeat1] = STATE(5103), - [aux_sym_sized_type_specifier_repeat1] = STATE(6549), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2857), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_GT2] = ACTIONS(2927), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(270)] = { - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_unaligned_ptr_modifier] = STATE(6570), - [sym_ms_pointer_modifier] = STATE(4108), - [sym__declarator] = STATE(8702), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8469), - [sym_array_declarator] = STATE(8469), - [sym_type_qualifier] = STATE(5224), - [sym_alignas_qualifier] = STATE(7436), - [sym_expression] = STATE(5050), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5293), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7840), - [sym_qualified_identifier] = STATE(5294), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(5224), - [aux_sym_pointer_declarator_repeat1] = STATE(4108), - [sym_identifier] = ACTIONS(2929), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1872), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2931), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(2933), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(2933), - [sym_ms_signed_ptr_modifier] = ACTIONS(2933), - [anon_sym__unaligned] = ACTIONS(2935), - [anon_sym___unaligned] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym__Nonnull] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2939), - [anon_sym__Alignas] = ACTIONS(2939), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(271)] = { - [sym_expression] = STATE(6759), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10871), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(2941), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(219)] = { + [sym_attribute_declaration] = STATE(187), + [sym_compound_statement] = STATE(772), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(651), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [sym_identifier] = ACTIONS(2829), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(2944), - [anon_sym___extension__] = ACTIONS(2946), - [anon_sym_virtual] = ACTIONS(2949), - [anon_sym_extern] = ACTIONS(2949), - [anon_sym___attribute__] = ACTIONS(2949), - [anon_sym___attribute] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2954), - [anon_sym___declspec] = ACTIONS(2949), - [anon_sym_signed] = ACTIONS(2949), - [anon_sym_unsigned] = ACTIONS(2949), - [anon_sym_long] = ACTIONS(2949), - [anon_sym_short] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(2949), - [anon_sym_register] = ACTIONS(2949), - [anon_sym_inline] = ACTIONS(2949), - [anon_sym___inline] = ACTIONS(2949), - [anon_sym___inline__] = ACTIONS(2949), - [anon_sym___forceinline] = ACTIONS(2949), - [anon_sym_thread_local] = ACTIONS(2949), - [anon_sym___thread] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_constexpr] = ACTIONS(2949), - [anon_sym_volatile] = ACTIONS(2949), - [anon_sym_restrict] = ACTIONS(2949), - [anon_sym___restrict__] = ACTIONS(2949), - [anon_sym__Atomic] = ACTIONS(2949), - [anon_sym__Noreturn] = ACTIONS(2949), - [anon_sym_noreturn] = ACTIONS(2949), - [anon_sym__Nonnull] = ACTIONS(2949), - [anon_sym_mutable] = ACTIONS(2949), - [anon_sym_constinit] = ACTIONS(2949), - [anon_sym_consteval] = ACTIONS(2949), - [anon_sym_alignas] = ACTIONS(2949), - [anon_sym__Alignas] = ACTIONS(2949), - [sym_primitive_type] = ACTIONS(2956), - [anon_sym_enum] = ACTIONS(2949), - [anon_sym_class] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -93037,7 +90137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2959), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -93057,10 +90157,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2949), - [anon_sym_decltype] = ACTIONS(2962), - [anon_sym_template] = ACTIONS(2965), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2018), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -93070,1284 +90173,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2968), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(272)] = { - [sym_type_qualifier] = STATE(5103), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7417), - [sym_sized_type_specifier] = STATE(4402), - [sym_enum_specifier] = STATE(4402), - [sym_struct_specifier] = STATE(4402), - [sym_union_specifier] = STATE(4402), - [sym_expression] = STATE(6561), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_type_descriptor] = STATE(9356), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_placeholder_type_specifier] = STATE(4402), - [sym_decltype_auto] = STATE(4401), - [sym_decltype] = STATE(4252), - [sym_class_specifier] = STATE(4402), - [sym__class_name] = STATE(10478), - [sym_dependent_type] = STATE(4402), - [sym_template_type] = STATE(4523), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_type_parameter_pack_expansion] = STATE(9894), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7816), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(4655), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(4852), - [sym__splice_specialization_specifier] = STATE(4189), - [sym_splice_type_specifier] = STATE(4612), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [aux_sym__type_definition_type_repeat1] = STATE(5103), - [aux_sym_sized_type_specifier_repeat1] = STATE(6549), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2857), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_GT2] = ACTIONS(2971), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(273)] = { - [sym_type_qualifier] = STATE(5103), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7417), - [sym_sized_type_specifier] = STATE(4402), - [sym_enum_specifier] = STATE(4402), - [sym_struct_specifier] = STATE(4402), - [sym_union_specifier] = STATE(4402), - [sym_expression] = STATE(6493), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_type_descriptor] = STATE(9519), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_placeholder_type_specifier] = STATE(4402), - [sym_decltype_auto] = STATE(4401), - [sym_decltype] = STATE(4252), - [sym_class_specifier] = STATE(4402), - [sym__class_name] = STATE(10478), - [sym_dependent_type] = STATE(4402), - [sym_template_type] = STATE(4523), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_type_parameter_pack_expansion] = STATE(10045), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7816), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(4655), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(4852), - [sym__splice_specialization_specifier] = STATE(4189), - [sym_splice_type_specifier] = STATE(4612), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [aux_sym__type_definition_type_repeat1] = STATE(5103), - [aux_sym_sized_type_specifier_repeat1] = STATE(6549), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2857), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_GT2] = ACTIONS(2973), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(274)] = { - [sym_type_qualifier] = STATE(5103), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7417), - [sym_sized_type_specifier] = STATE(4402), - [sym_enum_specifier] = STATE(4402), - [sym_struct_specifier] = STATE(4402), - [sym_union_specifier] = STATE(4402), - [sym_expression] = STATE(6532), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_type_descriptor] = STATE(9394), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_placeholder_type_specifier] = STATE(4402), - [sym_decltype_auto] = STATE(4401), - [sym_decltype] = STATE(4252), - [sym_class_specifier] = STATE(4402), - [sym__class_name] = STATE(10478), - [sym_dependent_type] = STATE(4402), - [sym_template_type] = STATE(4523), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_type_parameter_pack_expansion] = STATE(9990), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7816), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(4655), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(4852), - [sym__splice_specialization_specifier] = STATE(4189), - [sym_splice_type_specifier] = STATE(4612), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [aux_sym__type_definition_type_repeat1] = STATE(5103), - [aux_sym_sized_type_specifier_repeat1] = STATE(6549), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2857), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_GT2] = ACTIONS(2975), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(275)] = { - [sym_type_qualifier] = STATE(5103), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7417), - [sym_sized_type_specifier] = STATE(4402), - [sym_enum_specifier] = STATE(4402), - [sym_struct_specifier] = STATE(4402), - [sym_union_specifier] = STATE(4402), - [sym_expression] = STATE(6496), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_type_descriptor] = STATE(9294), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_placeholder_type_specifier] = STATE(4402), - [sym_decltype_auto] = STATE(4401), - [sym_decltype] = STATE(4252), - [sym_class_specifier] = STATE(4402), - [sym__class_name] = STATE(10478), - [sym_dependent_type] = STATE(4402), - [sym_template_type] = STATE(4523), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_type_parameter_pack_expansion] = STATE(9541), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7816), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(4655), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(4852), - [sym__splice_specialization_specifier] = STATE(4189), - [sym_splice_type_specifier] = STATE(4612), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [aux_sym__type_definition_type_repeat1] = STATE(5103), - [aux_sym_sized_type_specifier_repeat1] = STATE(6549), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2857), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_GT2] = ACTIONS(2977), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(276)] = { - [sym_type_qualifier] = STATE(5103), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7417), - [sym_sized_type_specifier] = STATE(4402), - [sym_enum_specifier] = STATE(4402), - [sym_struct_specifier] = STATE(4402), - [sym_union_specifier] = STATE(4402), - [sym_expression] = STATE(6459), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_type_descriptor] = STATE(9478), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_placeholder_type_specifier] = STATE(4402), - [sym_decltype_auto] = STATE(4401), - [sym_decltype] = STATE(4252), - [sym_class_specifier] = STATE(4402), - [sym__class_name] = STATE(10478), - [sym_dependent_type] = STATE(4402), - [sym_template_type] = STATE(4523), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_type_parameter_pack_expansion] = STATE(9759), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7816), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(4655), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(4852), - [sym__splice_specialization_specifier] = STATE(4189), - [sym_splice_type_specifier] = STATE(4612), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [aux_sym__type_definition_type_repeat1] = STATE(5103), - [aux_sym_sized_type_specifier_repeat1] = STATE(6549), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2857), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_GT2] = ACTIONS(2979), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(277)] = { - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_unaligned_ptr_modifier] = STATE(6570), - [sym_ms_pointer_modifier] = STATE(4108), - [sym__declarator] = STATE(8702), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8469), - [sym_array_declarator] = STATE(8469), - [sym_type_qualifier] = STATE(5224), - [sym_alignas_qualifier] = STATE(7436), - [sym_expression] = STATE(3665), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5195), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7863), - [sym_qualified_identifier] = STATE(5196), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(3777), - [aux_sym__type_definition_type_repeat1] = STATE(5224), - [aux_sym_pointer_declarator_repeat1] = STATE(4108), - [sym_identifier] = ACTIONS(2981), - [anon_sym_LPAREN2] = ACTIONS(2983), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym___extension__] = ACTIONS(2987), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(2933), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(2933), - [sym_ms_signed_ptr_modifier] = ACTIONS(2933), - [anon_sym__unaligned] = ACTIONS(2935), - [anon_sym___unaligned] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym__Nonnull] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2939), - [anon_sym__Alignas] = ACTIONS(2939), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(278)] = { - [sym_type_qualifier] = STATE(5103), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7417), - [sym_sized_type_specifier] = STATE(4402), - [sym_enum_specifier] = STATE(4402), - [sym_struct_specifier] = STATE(4402), - [sym_union_specifier] = STATE(4402), - [sym_expression] = STATE(6571), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_type_descriptor] = STATE(9302), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_placeholder_type_specifier] = STATE(4402), - [sym_decltype_auto] = STATE(4401), - [sym_decltype] = STATE(4252), - [sym_class_specifier] = STATE(4402), - [sym__class_name] = STATE(10478), - [sym_dependent_type] = STATE(4402), - [sym_template_type] = STATE(4523), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_type_parameter_pack_expansion] = STATE(9615), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7816), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(4655), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(4852), - [sym__splice_specialization_specifier] = STATE(4189), - [sym_splice_type_specifier] = STATE(4612), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [aux_sym__type_definition_type_repeat1] = STATE(5103), - [aux_sym_sized_type_specifier_repeat1] = STATE(6549), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2857), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_GT2] = ACTIONS(2991), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(279)] = { - [sym_type_qualifier] = STATE(5103), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7417), - [sym_sized_type_specifier] = STATE(4402), - [sym_enum_specifier] = STATE(4402), - [sym_struct_specifier] = STATE(4402), - [sym_union_specifier] = STATE(4402), - [sym_expression] = STATE(6500), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_type_descriptor] = STATE(9492), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_placeholder_type_specifier] = STATE(4402), - [sym_decltype_auto] = STATE(4401), - [sym_decltype] = STATE(4252), - [sym_class_specifier] = STATE(4402), - [sym__class_name] = STATE(10478), - [sym_dependent_type] = STATE(4402), - [sym_template_type] = STATE(4523), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_type_parameter_pack_expansion] = STATE(9578), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7816), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(4655), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(4852), - [sym__splice_specialization_specifier] = STATE(4189), - [sym_splice_type_specifier] = STATE(4612), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [aux_sym__type_definition_type_repeat1] = STATE(5103), - [aux_sym_sized_type_specifier_repeat1] = STATE(6549), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2857), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_GT2] = ACTIONS(2993), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(280)] = { - [sym_expression] = STATE(6784), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10726), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(2995), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(220)] = { + [sym_attribute_declaration] = STATE(221), + [sym_compound_statement] = STATE(772), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(627), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(2998), - [anon_sym___extension__] = ACTIONS(3000), - [anon_sym_virtual] = ACTIONS(3003), - [anon_sym_extern] = ACTIONS(3003), - [anon_sym___attribute__] = ACTIONS(3003), - [anon_sym___attribute] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3005), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3008), - [anon_sym___declspec] = ACTIONS(3003), - [anon_sym_signed] = ACTIONS(3003), - [anon_sym_unsigned] = ACTIONS(3003), - [anon_sym_long] = ACTIONS(3003), - [anon_sym_short] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(3003), - [anon_sym_register] = ACTIONS(3003), - [anon_sym_inline] = ACTIONS(3003), - [anon_sym___inline] = ACTIONS(3003), - [anon_sym___inline__] = ACTIONS(3003), - [anon_sym___forceinline] = ACTIONS(3003), - [anon_sym_thread_local] = ACTIONS(3003), - [anon_sym___thread] = ACTIONS(3003), - [anon_sym_const] = ACTIONS(3003), - [anon_sym_constexpr] = ACTIONS(3003), - [anon_sym_volatile] = ACTIONS(3003), - [anon_sym_restrict] = ACTIONS(3003), - [anon_sym___restrict__] = ACTIONS(3003), - [anon_sym__Atomic] = ACTIONS(3003), - [anon_sym__Noreturn] = ACTIONS(3003), - [anon_sym_noreturn] = ACTIONS(3003), - [anon_sym__Nonnull] = ACTIONS(3003), - [anon_sym_mutable] = ACTIONS(3003), - [anon_sym_constinit] = ACTIONS(3003), - [anon_sym_consteval] = ACTIONS(3003), - [anon_sym_alignas] = ACTIONS(3003), - [anon_sym__Alignas] = ACTIONS(3003), - [sym_primitive_type] = ACTIONS(3010), - [anon_sym_enum] = ACTIONS(3003), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3003), - [anon_sym_union] = ACTIONS(3003), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2202), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -94360,7 +90291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3013), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -94380,11 +90311,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3003), - [anon_sym_decltype] = ACTIONS(3016), - [anon_sym_template] = ACTIONS(3019), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), @@ -94393,401 +90327,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(281)] = { - [sym_type_qualifier] = STATE(5103), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7417), - [sym_sized_type_specifier] = STATE(4402), - [sym_enum_specifier] = STATE(4402), - [sym_struct_specifier] = STATE(4402), - [sym_union_specifier] = STATE(4402), - [sym_expression] = STATE(6553), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_type_descriptor] = STATE(9443), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_placeholder_type_specifier] = STATE(4402), - [sym_decltype_auto] = STATE(4401), - [sym_decltype] = STATE(4252), - [sym_class_specifier] = STATE(4402), - [sym__class_name] = STATE(10478), - [sym_dependent_type] = STATE(4402), - [sym_template_type] = STATE(4523), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_type_parameter_pack_expansion] = STATE(9924), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7816), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(4655), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(4852), - [sym__splice_specialization_specifier] = STATE(4189), - [sym_splice_type_specifier] = STATE(4612), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [aux_sym__type_definition_type_repeat1] = STATE(5103), - [aux_sym_sized_type_specifier_repeat1] = STATE(6549), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2857), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_GT2] = ACTIONS(3025), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(282)] = { - [sym_type_qualifier] = STATE(5103), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7417), - [sym_sized_type_specifier] = STATE(4402), - [sym_enum_specifier] = STATE(4402), - [sym_struct_specifier] = STATE(4402), - [sym_union_specifier] = STATE(4402), - [sym_expression] = STATE(6501), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_type_descriptor] = STATE(9305), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_placeholder_type_specifier] = STATE(4402), - [sym_decltype_auto] = STATE(4401), - [sym_decltype] = STATE(4252), - [sym_class_specifier] = STATE(4402), - [sym__class_name] = STATE(10478), - [sym_dependent_type] = STATE(4402), - [sym_template_type] = STATE(4523), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_type_parameter_pack_expansion] = STATE(9585), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7816), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(4655), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(4852), - [sym__splice_specialization_specifier] = STATE(4189), - [sym_splice_type_specifier] = STATE(4612), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [aux_sym__type_definition_type_repeat1] = STATE(5103), - [aux_sym_sized_type_specifier_repeat1] = STATE(6549), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2857), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_GT2] = ACTIONS(3027), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(283)] = { - [sym_expression] = STATE(6334), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(2746), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(221)] = { + [sym_attribute_declaration] = STATE(238), + [sym_compound_statement] = STATE(772), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(609), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(238), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2763), - [anon_sym_typedef] = ACTIONS(2797), - [anon_sym_virtual] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), - [anon_sym___declspec] = ACTIONS(2768), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_register] = ACTIONS(2768), - [anon_sym_inline] = ACTIONS(2768), - [anon_sym___inline] = ACTIONS(2768), - [anon_sym___inline__] = ACTIONS(2768), - [anon_sym___forceinline] = ACTIONS(2768), - [anon_sym_thread_local] = ACTIONS(2768), - [anon_sym___thread] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2776), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2202), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -94800,7 +90445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2779), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -94820,10 +90465,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(2785), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -94833,1421 +90481,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(284)] = { - [sym_preproc_def] = STATE(393), - [sym_preproc_function_def] = STATE(393), - [sym_preproc_call] = STATE(393), - [sym_preproc_if_in_field_declaration_list] = STATE(393), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(393), - [sym_preproc_else_in_field_declaration_list] = STATE(10864), - [sym_preproc_elif_in_field_declaration_list] = STATE(10864), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(10864), - [sym_type_definition] = STATE(393), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7977), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8548), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(393), - [sym_field_declaration] = STATE(393), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2414), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(393), - [sym_operator_cast] = STATE(9050), - [sym_inline_method_definition] = STATE(393), - [sym__constructor_specifiers] = STATE(2414), - [sym_operator_cast_definition] = STATE(393), - [sym_operator_cast_declaration] = STATE(393), - [sym_constructor_or_destructor_definition] = STATE(393), - [sym_constructor_or_destructor_declaration] = STATE(393), - [sym_friend_declaration] = STATE(393), - [sym_access_specifier] = STATE(10750), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(393), - [sym_alias_declaration] = STATE(393), - [sym_static_assert_declaration] = STATE(393), - [sym_consteval_block_declaration] = STATE(393), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9050), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(393), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9327), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2414), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3033), - [aux_sym_preproc_if_token2] = ACTIONS(3035), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), - [aux_sym_preproc_else_token1] = ACTIONS(3039), - [aux_sym_preproc_elif_token1] = ACTIONS(3041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), - [sym_preproc_directive] = ACTIONS(3045), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3055), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3059), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3061), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3069), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3089), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(285)] = { - [sym_preproc_def] = STATE(288), - [sym_preproc_function_def] = STATE(288), - [sym_preproc_call] = STATE(288), - [sym_preproc_if_in_field_declaration_list] = STATE(288), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(288), - [sym_preproc_else_in_field_declaration_list] = STATE(11064), - [sym_preproc_elif_in_field_declaration_list] = STATE(11064), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(11064), - [sym_type_definition] = STATE(288), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7977), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8548), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(288), - [sym_field_declaration] = STATE(288), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2414), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(288), - [sym_operator_cast] = STATE(9050), - [sym_inline_method_definition] = STATE(288), - [sym__constructor_specifiers] = STATE(2414), - [sym_operator_cast_definition] = STATE(288), - [sym_operator_cast_declaration] = STATE(288), - [sym_constructor_or_destructor_definition] = STATE(288), - [sym_constructor_or_destructor_declaration] = STATE(288), - [sym_friend_declaration] = STATE(288), - [sym_access_specifier] = STATE(10750), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(288), - [sym_alias_declaration] = STATE(288), - [sym_static_assert_declaration] = STATE(288), - [sym_consteval_block_declaration] = STATE(288), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9050), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(288), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9327), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2414), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3033), - [aux_sym_preproc_if_token2] = ACTIONS(3093), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), - [aux_sym_preproc_else_token1] = ACTIONS(3039), - [aux_sym_preproc_elif_token1] = ACTIONS(3041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), - [sym_preproc_directive] = ACTIONS(3045), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3095), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3059), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3061), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3069), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3089), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(286)] = { - [sym_preproc_def] = STATE(289), - [sym_preproc_function_def] = STATE(289), - [sym_preproc_call] = STATE(289), - [sym_preproc_if_in_field_declaration_list] = STATE(289), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(289), - [sym_preproc_else_in_field_declaration_list] = STATE(11112), - [sym_preproc_elif_in_field_declaration_list] = STATE(11112), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(11112), - [sym_type_definition] = STATE(289), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7977), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8548), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(289), - [sym_field_declaration] = STATE(289), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2414), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(289), - [sym_operator_cast] = STATE(9050), - [sym_inline_method_definition] = STATE(289), - [sym__constructor_specifiers] = STATE(2414), - [sym_operator_cast_definition] = STATE(289), - [sym_operator_cast_declaration] = STATE(289), - [sym_constructor_or_destructor_definition] = STATE(289), - [sym_constructor_or_destructor_declaration] = STATE(289), - [sym_friend_declaration] = STATE(289), - [sym_access_specifier] = STATE(10750), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(289), - [sym_alias_declaration] = STATE(289), - [sym_static_assert_declaration] = STATE(289), - [sym_consteval_block_declaration] = STATE(289), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9050), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(289), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9327), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2414), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3033), - [aux_sym_preproc_if_token2] = ACTIONS(3097), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), - [aux_sym_preproc_else_token1] = ACTIONS(3039), - [aux_sym_preproc_elif_token1] = ACTIONS(3041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), - [sym_preproc_directive] = ACTIONS(3045), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3059), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3061), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3069), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3089), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(287)] = { - [sym_type_qualifier] = STATE(5103), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7417), - [sym_sized_type_specifier] = STATE(4402), - [sym_enum_specifier] = STATE(4402), - [sym_struct_specifier] = STATE(4402), - [sym_union_specifier] = STATE(4402), - [sym_expression] = STATE(6764), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_type_descriptor] = STATE(9768), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_placeholder_type_specifier] = STATE(4402), - [sym_decltype_auto] = STATE(4401), - [sym_decltype] = STATE(4252), - [sym_class_specifier] = STATE(4402), - [sym__class_name] = STATE(10478), - [sym_dependent_type] = STATE(4402), - [sym_template_type] = STATE(4523), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_type_parameter_pack_expansion] = STATE(10213), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7816), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(4655), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(4852), - [sym__splice_specialization_specifier] = STATE(4189), - [sym_splice_type_specifier] = STATE(4612), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [aux_sym__type_definition_type_repeat1] = STATE(5103), - [aux_sym_sized_type_specifier_repeat1] = STATE(6549), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_signed] = ACTIONS(2819), - [anon_sym_unsigned] = ACTIONS(2819), - [anon_sym_long] = ACTIONS(2819), - [anon_sym_short] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2841), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2857), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(288)] = { - [sym_preproc_def] = STATE(393), - [sym_preproc_function_def] = STATE(393), - [sym_preproc_call] = STATE(393), - [sym_preproc_if_in_field_declaration_list] = STATE(393), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(393), - [sym_preproc_else_in_field_declaration_list] = STATE(11118), - [sym_preproc_elif_in_field_declaration_list] = STATE(11118), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(11118), - [sym_type_definition] = STATE(393), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7977), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8548), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(393), - [sym_field_declaration] = STATE(393), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2414), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(393), - [sym_operator_cast] = STATE(9050), - [sym_inline_method_definition] = STATE(393), - [sym__constructor_specifiers] = STATE(2414), - [sym_operator_cast_definition] = STATE(393), - [sym_operator_cast_declaration] = STATE(393), - [sym_constructor_or_destructor_definition] = STATE(393), - [sym_constructor_or_destructor_declaration] = STATE(393), - [sym_friend_declaration] = STATE(393), - [sym_access_specifier] = STATE(10750), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(393), - [sym_alias_declaration] = STATE(393), - [sym_static_assert_declaration] = STATE(393), - [sym_consteval_block_declaration] = STATE(393), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9050), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(393), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9327), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2414), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3033), - [aux_sym_preproc_if_token2] = ACTIONS(3101), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), - [aux_sym_preproc_else_token1] = ACTIONS(3039), - [aux_sym_preproc_elif_token1] = ACTIONS(3041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), - [sym_preproc_directive] = ACTIONS(3045), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3055), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3059), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3061), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3069), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3089), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(289)] = { - [sym_preproc_def] = STATE(393), - [sym_preproc_function_def] = STATE(393), - [sym_preproc_call] = STATE(393), - [sym_preproc_if_in_field_declaration_list] = STATE(393), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(393), - [sym_preproc_else_in_field_declaration_list] = STATE(11196), - [sym_preproc_elif_in_field_declaration_list] = STATE(11196), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(11196), - [sym_type_definition] = STATE(393), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7977), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8548), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(393), - [sym_field_declaration] = STATE(393), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2414), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(393), - [sym_operator_cast] = STATE(9050), - [sym_inline_method_definition] = STATE(393), - [sym__constructor_specifiers] = STATE(2414), - [sym_operator_cast_definition] = STATE(393), - [sym_operator_cast_declaration] = STATE(393), - [sym_constructor_or_destructor_definition] = STATE(393), - [sym_constructor_or_destructor_declaration] = STATE(393), - [sym_friend_declaration] = STATE(393), - [sym_access_specifier] = STATE(10750), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(393), - [sym_alias_declaration] = STATE(393), - [sym_static_assert_declaration] = STATE(393), - [sym_consteval_block_declaration] = STATE(393), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9050), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(393), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9327), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2414), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3033), - [aux_sym_preproc_if_token2] = ACTIONS(3103), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), - [aux_sym_preproc_else_token1] = ACTIONS(3039), - [aux_sym_preproc_elif_token1] = ACTIONS(3041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), - [sym_preproc_directive] = ACTIONS(3045), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3055), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3059), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3061), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3069), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3089), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(290)] = { - [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_preproc_else_in_field_declaration_list] = STATE(11110), - [sym_preproc_elif_in_field_declaration_list] = STATE(11110), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(11110), - [sym_type_definition] = STATE(299), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7977), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8548), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(299), - [sym_field_declaration] = STATE(299), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2414), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(299), - [sym_operator_cast] = STATE(9050), - [sym_inline_method_definition] = STATE(299), - [sym__constructor_specifiers] = STATE(2414), - [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(10750), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(299), - [sym_alias_declaration] = STATE(299), - [sym_static_assert_declaration] = STATE(299), - [sym_consteval_block_declaration] = STATE(299), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9050), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(299), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9327), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2414), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3033), - [aux_sym_preproc_if_token2] = ACTIONS(3105), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), - [aux_sym_preproc_else_token1] = ACTIONS(3039), - [aux_sym_preproc_elif_token1] = ACTIONS(3041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), - [sym_preproc_directive] = ACTIONS(3045), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3059), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3061), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3069), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3089), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(291)] = { - [sym_preproc_def] = STATE(393), - [sym_preproc_function_def] = STATE(393), - [sym_preproc_call] = STATE(393), - [sym_preproc_if_in_field_declaration_list] = STATE(393), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(393), - [sym_preproc_else_in_field_declaration_list] = STATE(11237), - [sym_preproc_elif_in_field_declaration_list] = STATE(11237), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(11237), - [sym_type_definition] = STATE(393), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7977), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8548), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(393), - [sym_field_declaration] = STATE(393), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2414), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(393), - [sym_operator_cast] = STATE(9050), - [sym_inline_method_definition] = STATE(393), - [sym__constructor_specifiers] = STATE(2414), - [sym_operator_cast_definition] = STATE(393), - [sym_operator_cast_declaration] = STATE(393), - [sym_constructor_or_destructor_definition] = STATE(393), - [sym_constructor_or_destructor_declaration] = STATE(393), - [sym_friend_declaration] = STATE(393), - [sym_access_specifier] = STATE(10750), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(393), - [sym_alias_declaration] = STATE(393), - [sym_static_assert_declaration] = STATE(393), - [sym_consteval_block_declaration] = STATE(393), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9050), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(393), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9327), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2414), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3033), - [aux_sym_preproc_if_token2] = ACTIONS(3109), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), - [aux_sym_preproc_else_token1] = ACTIONS(3039), - [aux_sym_preproc_elif_token1] = ACTIONS(3041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), - [sym_preproc_directive] = ACTIONS(3045), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3055), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3059), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3061), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3069), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3089), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(292)] = { - [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_preproc_else_in_field_declaration_list] = STATE(10572), - [sym_preproc_elif_in_field_declaration_list] = STATE(10572), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(10572), - [sym_type_definition] = STATE(296), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7977), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8548), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(296), - [sym_field_declaration] = STATE(296), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2414), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(296), - [sym_operator_cast] = STATE(9050), - [sym_inline_method_definition] = STATE(296), - [sym__constructor_specifiers] = STATE(2414), - [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(10750), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(296), - [sym_alias_declaration] = STATE(296), - [sym_static_assert_declaration] = STATE(296), - [sym_consteval_block_declaration] = STATE(296), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9050), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(296), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9327), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2414), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3033), - [aux_sym_preproc_if_token2] = ACTIONS(3111), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), - [aux_sym_preproc_else_token1] = ACTIONS(3039), - [aux_sym_preproc_elif_token1] = ACTIONS(3041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), - [sym_preproc_directive] = ACTIONS(3045), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3113), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3059), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3061), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3069), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3089), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(293)] = { - [sym_expression] = STATE(6334), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(2746), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(222)] = { + [sym_attribute_declaration] = STATE(199), + [sym_compound_statement] = STATE(1232), + [sym_attributed_statement] = STATE(1232), + [sym_statement] = STATE(1246), + [sym_labeled_statement] = STATE(1232), + [sym_expression_statement] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_case_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_goto_statement] = STATE(1232), + [sym_seh_try_statement] = STATE(1232), + [sym_seh_leave_statement] = STATE(1232), + [sym_expression] = STATE(6880), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11567), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(1232), + [sym_co_return_statement] = STATE(1232), + [sym_co_yield_statement] = STATE(1232), + [sym_throw_statement] = STATE(1232), + [sym_try_statement] = STATE(1232), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(1232), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2763), - [anon_sym_typedef] = ACTIONS(3115), - [anon_sym_virtual] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), - [anon_sym___declspec] = ACTIONS(2768), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_register] = ACTIONS(2768), - [anon_sym_inline] = ACTIONS(2768), - [anon_sym___inline] = ACTIONS(2768), - [anon_sym___inline__] = ACTIONS(2768), - [anon_sym___forceinline] = ACTIONS(2768), - [anon_sym_thread_local] = ACTIONS(2768), - [anon_sym___thread] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2776), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_switch] = ACTIONS(2097), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2099), + [anon_sym_do] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2107), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_goto] = ACTIONS(2111), + [anon_sym___try] = ACTIONS(2113), + [anon_sym___leave] = ACTIONS(2115), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -96260,7 +90599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2779), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -96280,10 +90619,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(2785), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2119), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(2121), + [anon_sym_co_return] = ACTIONS(2123), + [anon_sym_co_yield] = ACTIONS(2125), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -96293,691 +90635,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(294)] = { - [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(10714), - [sym_preproc_elif_in_field_declaration_list] = STATE(10714), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(10714), - [sym_type_definition] = STATE(291), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7977), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8548), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(291), - [sym_field_declaration] = STATE(291), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2414), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(291), - [sym_operator_cast] = STATE(9050), - [sym_inline_method_definition] = STATE(291), - [sym__constructor_specifiers] = STATE(2414), - [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(10750), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(291), - [sym_alias_declaration] = STATE(291), - [sym_static_assert_declaration] = STATE(291), - [sym_consteval_block_declaration] = STATE(291), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9050), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(291), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9327), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2414), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3033), - [aux_sym_preproc_if_token2] = ACTIONS(3117), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), - [aux_sym_preproc_else_token1] = ACTIONS(3039), - [aux_sym_preproc_elif_token1] = ACTIONS(3041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), - [sym_preproc_directive] = ACTIONS(3045), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3119), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3059), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3061), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3069), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3089), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(295)] = { - [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_preproc_else_in_field_declaration_list] = STATE(11122), - [sym_preproc_elif_in_field_declaration_list] = STATE(11122), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(11122), - [sym_type_definition] = STATE(297), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7977), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8548), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(297), - [sym_field_declaration] = STATE(297), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2414), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(297), - [sym_operator_cast] = STATE(9050), - [sym_inline_method_definition] = STATE(297), - [sym__constructor_specifiers] = STATE(2414), - [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(10750), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(297), - [sym_alias_declaration] = STATE(297), - [sym_static_assert_declaration] = STATE(297), - [sym_consteval_block_declaration] = STATE(297), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9050), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(297), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9327), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2414), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3033), - [aux_sym_preproc_if_token2] = ACTIONS(3121), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), - [aux_sym_preproc_else_token1] = ACTIONS(3039), - [aux_sym_preproc_elif_token1] = ACTIONS(3041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), - [sym_preproc_directive] = ACTIONS(3045), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3059), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3061), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3069), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3089), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(296)] = { - [sym_preproc_def] = STATE(393), - [sym_preproc_function_def] = STATE(393), - [sym_preproc_call] = STATE(393), - [sym_preproc_if_in_field_declaration_list] = STATE(393), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(393), - [sym_preproc_else_in_field_declaration_list] = STATE(11124), - [sym_preproc_elif_in_field_declaration_list] = STATE(11124), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(11124), - [sym_type_definition] = STATE(393), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7977), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8548), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(393), - [sym_field_declaration] = STATE(393), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2414), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(393), - [sym_operator_cast] = STATE(9050), - [sym_inline_method_definition] = STATE(393), - [sym__constructor_specifiers] = STATE(2414), - [sym_operator_cast_definition] = STATE(393), - [sym_operator_cast_declaration] = STATE(393), - [sym_constructor_or_destructor_definition] = STATE(393), - [sym_constructor_or_destructor_declaration] = STATE(393), - [sym_friend_declaration] = STATE(393), - [sym_access_specifier] = STATE(10750), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(393), - [sym_alias_declaration] = STATE(393), - [sym_static_assert_declaration] = STATE(393), - [sym_consteval_block_declaration] = STATE(393), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9050), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(393), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9327), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2414), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3033), - [aux_sym_preproc_if_token2] = ACTIONS(3125), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), - [aux_sym_preproc_else_token1] = ACTIONS(3039), - [aux_sym_preproc_elif_token1] = ACTIONS(3041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), - [sym_preproc_directive] = ACTIONS(3045), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3055), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3059), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3061), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3069), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3089), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(297)] = { - [sym_preproc_def] = STATE(393), - [sym_preproc_function_def] = STATE(393), - [sym_preproc_call] = STATE(393), - [sym_preproc_if_in_field_declaration_list] = STATE(393), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(393), - [sym_preproc_else_in_field_declaration_list] = STATE(10532), - [sym_preproc_elif_in_field_declaration_list] = STATE(10532), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(10532), - [sym_type_definition] = STATE(393), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7977), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8548), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(393), - [sym_field_declaration] = STATE(393), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2414), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(393), - [sym_operator_cast] = STATE(9050), - [sym_inline_method_definition] = STATE(393), - [sym__constructor_specifiers] = STATE(2414), - [sym_operator_cast_definition] = STATE(393), - [sym_operator_cast_declaration] = STATE(393), - [sym_constructor_or_destructor_definition] = STATE(393), - [sym_constructor_or_destructor_declaration] = STATE(393), - [sym_friend_declaration] = STATE(393), - [sym_access_specifier] = STATE(10750), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(393), - [sym_alias_declaration] = STATE(393), - [sym_static_assert_declaration] = STATE(393), - [sym_consteval_block_declaration] = STATE(393), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9050), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(393), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9327), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2414), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3033), - [aux_sym_preproc_if_token2] = ACTIONS(3127), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), - [aux_sym_preproc_else_token1] = ACTIONS(3039), - [aux_sym_preproc_elif_token1] = ACTIONS(3041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), - [sym_preproc_directive] = ACTIONS(3045), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3055), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3059), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3061), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3069), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3089), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(298)] = { - [sym_expression] = STATE(6334), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(2746), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(223)] = { + [sym_attribute_declaration] = STATE(221), + [sym_compound_statement] = STATE(772), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(11373), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2763), - [anon_sym_typedef] = ACTIONS(2799), - [anon_sym_virtual] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), - [anon_sym___declspec] = ACTIONS(2768), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_register] = ACTIONS(2768), - [anon_sym_inline] = ACTIONS(2768), - [anon_sym___inline] = ACTIONS(2768), - [anon_sym___inline__] = ACTIONS(2768), - [anon_sym___forceinline] = ACTIONS(2768), - [anon_sym_thread_local] = ACTIONS(2768), - [anon_sym___thread] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2776), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2202), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -96990,7 +90753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2779), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -97010,10 +90773,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(2785), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -97023,399 +90789,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(299)] = { - [sym_preproc_def] = STATE(393), - [sym_preproc_function_def] = STATE(393), - [sym_preproc_call] = STATE(393), - [sym_preproc_if_in_field_declaration_list] = STATE(393), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(393), - [sym_preproc_else_in_field_declaration_list] = STATE(11312), - [sym_preproc_elif_in_field_declaration_list] = STATE(11312), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(11312), - [sym_type_definition] = STATE(393), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7977), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8548), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(393), - [sym_field_declaration] = STATE(393), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2414), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(393), - [sym_operator_cast] = STATE(9050), - [sym_inline_method_definition] = STATE(393), - [sym__constructor_specifiers] = STATE(2414), - [sym_operator_cast_definition] = STATE(393), - [sym_operator_cast_declaration] = STATE(393), - [sym_constructor_or_destructor_definition] = STATE(393), - [sym_constructor_or_destructor_declaration] = STATE(393), - [sym_friend_declaration] = STATE(393), - [sym_access_specifier] = STATE(10750), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(393), - [sym_alias_declaration] = STATE(393), - [sym_static_assert_declaration] = STATE(393), - [sym_consteval_block_declaration] = STATE(393), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9050), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(393), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9327), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2414), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3033), - [aux_sym_preproc_if_token2] = ACTIONS(3129), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), - [aux_sym_preproc_else_token1] = ACTIONS(3039), - [aux_sym_preproc_elif_token1] = ACTIONS(3041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), - [sym_preproc_directive] = ACTIONS(3045), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3055), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3059), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3061), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3069), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3089), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(300)] = { - [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_preproc_else_in_field_declaration_list] = STATE(11379), - [sym_preproc_elif_in_field_declaration_list] = STATE(11379), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(11379), - [sym_type_definition] = STATE(307), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7977), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8548), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(307), - [sym_field_declaration] = STATE(307), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2414), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(307), - [sym_operator_cast] = STATE(9050), - [sym_inline_method_definition] = STATE(307), - [sym__constructor_specifiers] = STATE(2414), - [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(10750), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(307), - [sym_alias_declaration] = STATE(307), - [sym_static_assert_declaration] = STATE(307), - [sym_consteval_block_declaration] = STATE(307), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9050), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(307), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9327), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2414), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3033), - [aux_sym_preproc_if_token2] = ACTIONS(3131), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), - [aux_sym_preproc_else_token1] = ACTIONS(3039), - [aux_sym_preproc_elif_token1] = ACTIONS(3041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), - [sym_preproc_directive] = ACTIONS(3045), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3133), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3059), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3061), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3069), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3089), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(301)] = { - [sym_expression] = STATE(6334), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(2746), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(224)] = { + [sym_attribute_declaration] = STATE(219), + [sym_compound_statement] = STATE(772), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(635), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(2829), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2763), - [anon_sym_typedef] = ACTIONS(3135), - [anon_sym_virtual] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), - [anon_sym___declspec] = ACTIONS(2768), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_register] = ACTIONS(2768), - [anon_sym_inline] = ACTIONS(2768), - [anon_sym___inline] = ACTIONS(2768), - [anon_sym___inline__] = ACTIONS(2768), - [anon_sym___forceinline] = ACTIONS(2768), - [anon_sym_thread_local] = ACTIONS(2768), - [anon_sym___thread] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2776), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -97428,7 +90907,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2779), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -97448,10 +90927,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(2785), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2018), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -97461,253 +90943,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(302)] = { - [sym_catch_clause] = STATE(302), - [aux_sym_constructor_try_statement_repeat1] = STATE(302), - [sym_identifier] = ACTIONS(3137), - [aux_sym_preproc_include_token1] = ACTIONS(3137), - [aux_sym_preproc_def_token1] = ACTIONS(3137), - [aux_sym_preproc_if_token1] = ACTIONS(3137), - [aux_sym_preproc_if_token2] = ACTIONS(3137), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3137), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3137), - [aux_sym_preproc_else_token1] = ACTIONS(3137), - [aux_sym_preproc_elif_token1] = ACTIONS(3137), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3137), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3137), - [sym_preproc_directive] = ACTIONS(3137), - [anon_sym_LPAREN2] = ACTIONS(3139), - [anon_sym_BANG] = ACTIONS(3139), - [anon_sym_TILDE] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3139), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym___extension__] = ACTIONS(3137), - [anon_sym_typedef] = ACTIONS(3137), - [anon_sym_virtual] = ACTIONS(3137), - [anon_sym_extern] = ACTIONS(3137), - [anon_sym___attribute__] = ACTIONS(3137), - [anon_sym___attribute] = ACTIONS(3137), - [anon_sym_using] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3139), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3139), - [anon_sym___declspec] = ACTIONS(3137), - [anon_sym___based] = ACTIONS(3137), - [anon_sym___cdecl] = ACTIONS(3137), - [anon_sym___clrcall] = ACTIONS(3137), - [anon_sym___stdcall] = ACTIONS(3137), - [anon_sym___fastcall] = ACTIONS(3137), - [anon_sym___thiscall] = ACTIONS(3137), - [anon_sym___vectorcall] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_signed] = ACTIONS(3137), - [anon_sym_unsigned] = ACTIONS(3137), - [anon_sym_long] = ACTIONS(3137), - [anon_sym_short] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_static] = ACTIONS(3137), - [anon_sym_register] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym___inline] = ACTIONS(3137), - [anon_sym___inline__] = ACTIONS(3137), - [anon_sym___forceinline] = ACTIONS(3137), - [anon_sym_thread_local] = ACTIONS(3137), - [anon_sym___thread] = ACTIONS(3137), - [anon_sym_const] = ACTIONS(3137), - [anon_sym_constexpr] = ACTIONS(3137), - [anon_sym_volatile] = ACTIONS(3137), - [anon_sym_restrict] = ACTIONS(3137), - [anon_sym___restrict__] = ACTIONS(3137), - [anon_sym__Atomic] = ACTIONS(3137), - [anon_sym__Noreturn] = ACTIONS(3137), - [anon_sym_noreturn] = ACTIONS(3137), - [anon_sym__Nonnull] = ACTIONS(3137), - [anon_sym_mutable] = ACTIONS(3137), - [anon_sym_constinit] = ACTIONS(3137), - [anon_sym_consteval] = ACTIONS(3137), - [anon_sym_alignas] = ACTIONS(3137), - [anon_sym__Alignas] = ACTIONS(3137), - [sym_primitive_type] = ACTIONS(3137), - [anon_sym_enum] = ACTIONS(3137), - [anon_sym_class] = ACTIONS(3137), - [anon_sym_struct] = ACTIONS(3137), - [anon_sym_union] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_switch] = ACTIONS(3137), - [anon_sym_case] = ACTIONS(3137), - [anon_sym_default] = ACTIONS(3137), - [anon_sym_while] = ACTIONS(3137), - [anon_sym_do] = ACTIONS(3137), - [anon_sym_for] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_goto] = ACTIONS(3137), - [anon_sym___try] = ACTIONS(3137), - [anon_sym___leave] = ACTIONS(3137), - [anon_sym_not] = ACTIONS(3137), - [anon_sym_compl] = ACTIONS(3137), - [anon_sym_DASH_DASH] = ACTIONS(3139), - [anon_sym_PLUS_PLUS] = ACTIONS(3139), - [anon_sym_sizeof] = ACTIONS(3137), - [anon_sym___alignof__] = ACTIONS(3137), - [anon_sym___alignof] = ACTIONS(3137), - [anon_sym__alignof] = ACTIONS(3137), - [anon_sym_alignof] = ACTIONS(3137), - [anon_sym__Alignof] = ACTIONS(3137), - [anon_sym_offsetof] = ACTIONS(3137), - [anon_sym__Generic] = ACTIONS(3137), - [anon_sym_typename] = ACTIONS(3137), - [anon_sym_asm] = ACTIONS(3137), - [anon_sym___asm__] = ACTIONS(3137), - [anon_sym___asm] = ACTIONS(3137), - [sym_number_literal] = ACTIONS(3139), - [anon_sym_L_SQUOTE] = ACTIONS(3139), - [anon_sym_u_SQUOTE] = ACTIONS(3139), - [anon_sym_U_SQUOTE] = ACTIONS(3139), - [anon_sym_u8_SQUOTE] = ACTIONS(3139), - [anon_sym_SQUOTE] = ACTIONS(3139), - [anon_sym_L_DQUOTE] = ACTIONS(3139), - [anon_sym_u_DQUOTE] = ACTIONS(3139), - [anon_sym_U_DQUOTE] = ACTIONS(3139), - [anon_sym_u8_DQUOTE] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3139), - [sym_true] = ACTIONS(3137), - [sym_false] = ACTIONS(3137), - [anon_sym_NULL] = ACTIONS(3137), - [anon_sym_nullptr] = ACTIONS(3137), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3137), - [anon_sym_decltype] = ACTIONS(3137), - [anon_sym_explicit] = ACTIONS(3137), - [anon_sym_template] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_try] = ACTIONS(3137), - [anon_sym_delete] = ACTIONS(3137), - [anon_sym_throw] = ACTIONS(3137), - [anon_sym_namespace] = ACTIONS(3137), - [anon_sym_static_assert] = ACTIONS(3137), - [anon_sym_concept] = ACTIONS(3137), - [anon_sym_co_return] = ACTIONS(3137), - [anon_sym_co_yield] = ACTIONS(3137), - [anon_sym_catch] = ACTIONS(3141), - [anon_sym_R_DQUOTE] = ACTIONS(3139), - [anon_sym_LR_DQUOTE] = ACTIONS(3139), - [anon_sym_uR_DQUOTE] = ACTIONS(3139), - [anon_sym_UR_DQUOTE] = ACTIONS(3139), - [anon_sym_u8R_DQUOTE] = ACTIONS(3139), - [anon_sym_co_await] = ACTIONS(3137), - [anon_sym_new] = ACTIONS(3137), - [anon_sym_requires] = ACTIONS(3137), - [anon_sym_CARET_CARET] = ACTIONS(3139), - [anon_sym_LBRACK_COLON] = ACTIONS(3139), - [sym_this] = ACTIONS(3137), - }, - [STATE(303)] = { - [sym_expression] = STATE(6334), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(2746), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(225)] = { + [sym_attribute_declaration] = STATE(219), + [sym_compound_statement] = STATE(772), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(757), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(2829), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2763), - [anon_sym_typedef] = ACTIONS(2766), - [anon_sym_virtual] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), - [anon_sym___declspec] = ACTIONS(2768), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_register] = ACTIONS(2768), - [anon_sym_inline] = ACTIONS(2768), - [anon_sym___inline] = ACTIONS(2768), - [anon_sym___inline__] = ACTIONS(2768), - [anon_sym___forceinline] = ACTIONS(2768), - [anon_sym_thread_local] = ACTIONS(2768), - [anon_sym___thread] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2776), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -97720,7 +91061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2779), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -97740,10 +91081,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(2785), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2018), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -97753,253 +91097,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(304)] = { - [sym_preproc_def] = STATE(284), - [sym_preproc_function_def] = STATE(284), - [sym_preproc_call] = STATE(284), - [sym_preproc_if_in_field_declaration_list] = STATE(284), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(284), - [sym_preproc_else_in_field_declaration_list] = STATE(10743), - [sym_preproc_elif_in_field_declaration_list] = STATE(10743), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(10743), - [sym_type_definition] = STATE(284), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7977), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8548), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(284), - [sym_field_declaration] = STATE(284), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2414), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(284), - [sym_operator_cast] = STATE(9050), - [sym_inline_method_definition] = STATE(284), - [sym__constructor_specifiers] = STATE(2414), - [sym_operator_cast_definition] = STATE(284), - [sym_operator_cast_declaration] = STATE(284), - [sym_constructor_or_destructor_definition] = STATE(284), - [sym_constructor_or_destructor_declaration] = STATE(284), - [sym_friend_declaration] = STATE(284), - [sym_access_specifier] = STATE(10750), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(284), - [sym_alias_declaration] = STATE(284), - [sym_static_assert_declaration] = STATE(284), - [sym_consteval_block_declaration] = STATE(284), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9050), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(284), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9327), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2414), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3033), - [aux_sym_preproc_if_token2] = ACTIONS(3144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), - [aux_sym_preproc_else_token1] = ACTIONS(3039), - [aux_sym_preproc_elif_token1] = ACTIONS(3041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), - [sym_preproc_directive] = ACTIONS(3045), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3146), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3059), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3061), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3069), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3089), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(305)] = { - [sym_expression] = STATE(6334), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(2746), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(226)] = { + [sym_attribute_declaration] = STATE(193), + [sym_compound_statement] = STATE(339), + [sym_attributed_statement] = STATE(339), + [sym_statement] = STATE(317), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(2604), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2763), - [anon_sym_typedef] = ACTIONS(2791), - [anon_sym_virtual] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), - [anon_sym___declspec] = ACTIONS(2768), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_register] = ACTIONS(2768), - [anon_sym_inline] = ACTIONS(2768), - [anon_sym___inline] = ACTIONS(2768), - [anon_sym___inline__] = ACTIONS(2768), - [anon_sym___forceinline] = ACTIONS(2768), - [anon_sym_thread_local] = ACTIONS(2768), - [anon_sym___thread] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2776), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -98012,7 +91215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2779), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -98032,10 +91235,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(2785), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1672), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -98045,398 +91251,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(306)] = { - [sym_catch_clause] = STATE(302), - [aux_sym_constructor_try_statement_repeat1] = STATE(302), - [sym_identifier] = ACTIONS(3148), - [aux_sym_preproc_include_token1] = ACTIONS(3148), - [aux_sym_preproc_def_token1] = ACTIONS(3148), - [aux_sym_preproc_if_token1] = ACTIONS(3148), - [aux_sym_preproc_if_token2] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3148), - [aux_sym_preproc_else_token1] = ACTIONS(3148), - [aux_sym_preproc_elif_token1] = ACTIONS(3148), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3148), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3148), - [sym_preproc_directive] = ACTIONS(3148), - [anon_sym_LPAREN2] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym___extension__] = ACTIONS(3148), - [anon_sym_typedef] = ACTIONS(3148), - [anon_sym_virtual] = ACTIONS(3148), - [anon_sym_extern] = ACTIONS(3148), - [anon_sym___attribute__] = ACTIONS(3148), - [anon_sym___attribute] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3150), - [anon_sym___declspec] = ACTIONS(3148), - [anon_sym___based] = ACTIONS(3148), - [anon_sym___cdecl] = ACTIONS(3148), - [anon_sym___clrcall] = ACTIONS(3148), - [anon_sym___stdcall] = ACTIONS(3148), - [anon_sym___fastcall] = ACTIONS(3148), - [anon_sym___thiscall] = ACTIONS(3148), - [anon_sym___vectorcall] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_signed] = ACTIONS(3148), - [anon_sym_unsigned] = ACTIONS(3148), - [anon_sym_long] = ACTIONS(3148), - [anon_sym_short] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_register] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym___inline] = ACTIONS(3148), - [anon_sym___inline__] = ACTIONS(3148), - [anon_sym___forceinline] = ACTIONS(3148), - [anon_sym_thread_local] = ACTIONS(3148), - [anon_sym___thread] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_constexpr] = ACTIONS(3148), - [anon_sym_volatile] = ACTIONS(3148), - [anon_sym_restrict] = ACTIONS(3148), - [anon_sym___restrict__] = ACTIONS(3148), - [anon_sym__Atomic] = ACTIONS(3148), - [anon_sym__Noreturn] = ACTIONS(3148), - [anon_sym_noreturn] = ACTIONS(3148), - [anon_sym__Nonnull] = ACTIONS(3148), - [anon_sym_mutable] = ACTIONS(3148), - [anon_sym_constinit] = ACTIONS(3148), - [anon_sym_consteval] = ACTIONS(3148), - [anon_sym_alignas] = ACTIONS(3148), - [anon_sym__Alignas] = ACTIONS(3148), - [sym_primitive_type] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(3148), - [anon_sym_union] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_switch] = ACTIONS(3148), - [anon_sym_case] = ACTIONS(3148), - [anon_sym_default] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_do] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_goto] = ACTIONS(3148), - [anon_sym___try] = ACTIONS(3148), - [anon_sym___leave] = ACTIONS(3148), - [anon_sym_not] = ACTIONS(3148), - [anon_sym_compl] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_sizeof] = ACTIONS(3148), - [anon_sym___alignof__] = ACTIONS(3148), - [anon_sym___alignof] = ACTIONS(3148), - [anon_sym__alignof] = ACTIONS(3148), - [anon_sym_alignof] = ACTIONS(3148), - [anon_sym__Alignof] = ACTIONS(3148), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3148), - [anon_sym_typename] = ACTIONS(3148), - [anon_sym_asm] = ACTIONS(3148), - [anon_sym___asm__] = ACTIONS(3148), - [anon_sym___asm] = ACTIONS(3148), - [sym_number_literal] = ACTIONS(3150), - [anon_sym_L_SQUOTE] = ACTIONS(3150), - [anon_sym_u_SQUOTE] = ACTIONS(3150), - [anon_sym_U_SQUOTE] = ACTIONS(3150), - [anon_sym_u8_SQUOTE] = ACTIONS(3150), - [anon_sym_SQUOTE] = ACTIONS(3150), - [anon_sym_L_DQUOTE] = ACTIONS(3150), - [anon_sym_u_DQUOTE] = ACTIONS(3150), - [anon_sym_U_DQUOTE] = ACTIONS(3150), - [anon_sym_u8_DQUOTE] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3150), - [sym_true] = ACTIONS(3148), - [sym_false] = ACTIONS(3148), - [anon_sym_NULL] = ACTIONS(3148), - [anon_sym_nullptr] = ACTIONS(3148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3148), - [anon_sym_decltype] = ACTIONS(3148), - [anon_sym_explicit] = ACTIONS(3148), - [anon_sym_template] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_delete] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_namespace] = ACTIONS(3148), - [anon_sym_static_assert] = ACTIONS(3148), - [anon_sym_concept] = ACTIONS(3148), - [anon_sym_co_return] = ACTIONS(3148), - [anon_sym_co_yield] = ACTIONS(3148), - [anon_sym_catch] = ACTIONS(3152), - [anon_sym_R_DQUOTE] = ACTIONS(3150), - [anon_sym_LR_DQUOTE] = ACTIONS(3150), - [anon_sym_uR_DQUOTE] = ACTIONS(3150), - [anon_sym_UR_DQUOTE] = ACTIONS(3150), - [anon_sym_u8R_DQUOTE] = ACTIONS(3150), - [anon_sym_co_await] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3148), - [anon_sym_requires] = ACTIONS(3148), - [anon_sym_CARET_CARET] = ACTIONS(3150), - [anon_sym_LBRACK_COLON] = ACTIONS(3150), - [sym_this] = ACTIONS(3148), - }, - [STATE(307)] = { - [sym_preproc_def] = STATE(393), - [sym_preproc_function_def] = STATE(393), - [sym_preproc_call] = STATE(393), - [sym_preproc_if_in_field_declaration_list] = STATE(393), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(393), - [sym_preproc_else_in_field_declaration_list] = STATE(10780), - [sym_preproc_elif_in_field_declaration_list] = STATE(10780), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(10780), - [sym_type_definition] = STATE(393), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7977), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8548), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(393), - [sym_field_declaration] = STATE(393), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2414), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(393), - [sym_operator_cast] = STATE(9050), - [sym_inline_method_definition] = STATE(393), - [sym__constructor_specifiers] = STATE(2414), - [sym_operator_cast_definition] = STATE(393), - [sym_operator_cast_declaration] = STATE(393), - [sym_constructor_or_destructor_definition] = STATE(393), - [sym_constructor_or_destructor_declaration] = STATE(393), - [sym_friend_declaration] = STATE(393), - [sym_access_specifier] = STATE(10750), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(393), - [sym_alias_declaration] = STATE(393), - [sym_static_assert_declaration] = STATE(393), - [sym_consteval_block_declaration] = STATE(393), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9050), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(393), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9327), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2414), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(3031), - [aux_sym_preproc_if_token1] = ACTIONS(3033), - [aux_sym_preproc_if_token2] = ACTIONS(3154), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3037), - [aux_sym_preproc_else_token1] = ACTIONS(3039), - [aux_sym_preproc_elif_token1] = ACTIONS(3041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3043), - [sym_preproc_directive] = ACTIONS(3045), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3055), - [anon_sym___extension__] = ACTIONS(3057), - [anon_sym_typedef] = ACTIONS(3059), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3061), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3067), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3069), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(3085), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(3089), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(308)] = { - [sym_expression] = STATE(6334), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(2746), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(227)] = { + [sym_attribute_declaration] = STATE(214), + [sym_compound_statement] = STATE(578), + [sym_attributed_statement] = STATE(578), + [sym_statement] = STATE(596), + [sym_labeled_statement] = STATE(578), + [sym_expression_statement] = STATE(578), + [sym_if_statement] = STATE(578), + [sym_switch_statement] = STATE(578), + [sym_case_statement] = STATE(578), + [sym_while_statement] = STATE(578), + [sym_do_statement] = STATE(578), + [sym_for_statement] = STATE(578), + [sym_return_statement] = STATE(578), + [sym_break_statement] = STATE(578), + [sym_continue_statement] = STATE(578), + [sym_goto_statement] = STATE(578), + [sym_seh_try_statement] = STATE(578), + [sym_seh_leave_statement] = STATE(578), + [sym_expression] = STATE(6807), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11035), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(578), + [sym_co_return_statement] = STATE(578), + [sym_co_yield_statement] = STATE(578), + [sym_throw_statement] = STATE(578), + [sym_try_statement] = STATE(578), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(578), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(214), + [sym_identifier] = ACTIONS(2636), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2763), - [anon_sym_virtual] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), - [anon_sym___declspec] = ACTIONS(2768), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_register] = ACTIONS(2768), - [anon_sym_inline] = ACTIONS(2768), - [anon_sym___inline] = ACTIONS(2768), - [anon_sym___inline__] = ACTIONS(2768), - [anon_sym___forceinline] = ACTIONS(2768), - [anon_sym_thread_local] = ACTIONS(2768), - [anon_sym___thread] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2776), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1324), + [anon_sym___leave] = ACTIONS(1326), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -98449,7 +91369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2779), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -98469,10 +91389,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(2785), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1949), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -98482,686 +91405,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2788), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(309)] = { - [sym_catch_clause] = STATE(309), - [aux_sym_constructor_try_statement_repeat1] = STATE(309), - [ts_builtin_sym_end] = ACTIONS(3139), - [sym_identifier] = ACTIONS(3137), - [aux_sym_preproc_include_token1] = ACTIONS(3137), - [aux_sym_preproc_def_token1] = ACTIONS(3137), - [aux_sym_preproc_if_token1] = ACTIONS(3137), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3137), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3137), - [sym_preproc_directive] = ACTIONS(3137), - [anon_sym_LPAREN2] = ACTIONS(3139), - [anon_sym_BANG] = ACTIONS(3139), - [anon_sym_TILDE] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3139), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym___extension__] = ACTIONS(3137), - [anon_sym_typedef] = ACTIONS(3137), - [anon_sym_virtual] = ACTIONS(3137), - [anon_sym_extern] = ACTIONS(3137), - [anon_sym___attribute__] = ACTIONS(3137), - [anon_sym___attribute] = ACTIONS(3137), - [anon_sym_using] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3139), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3139), - [anon_sym___declspec] = ACTIONS(3137), - [anon_sym___based] = ACTIONS(3137), - [anon_sym___cdecl] = ACTIONS(3137), - [anon_sym___clrcall] = ACTIONS(3137), - [anon_sym___stdcall] = ACTIONS(3137), - [anon_sym___fastcall] = ACTIONS(3137), - [anon_sym___thiscall] = ACTIONS(3137), - [anon_sym___vectorcall] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_signed] = ACTIONS(3137), - [anon_sym_unsigned] = ACTIONS(3137), - [anon_sym_long] = ACTIONS(3137), - [anon_sym_short] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_static] = ACTIONS(3137), - [anon_sym_register] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym___inline] = ACTIONS(3137), - [anon_sym___inline__] = ACTIONS(3137), - [anon_sym___forceinline] = ACTIONS(3137), - [anon_sym_thread_local] = ACTIONS(3137), - [anon_sym___thread] = ACTIONS(3137), - [anon_sym_const] = ACTIONS(3137), - [anon_sym_constexpr] = ACTIONS(3137), - [anon_sym_volatile] = ACTIONS(3137), - [anon_sym_restrict] = ACTIONS(3137), - [anon_sym___restrict__] = ACTIONS(3137), - [anon_sym__Atomic] = ACTIONS(3137), - [anon_sym__Noreturn] = ACTIONS(3137), - [anon_sym_noreturn] = ACTIONS(3137), - [anon_sym__Nonnull] = ACTIONS(3137), - [anon_sym_mutable] = ACTIONS(3137), - [anon_sym_constinit] = ACTIONS(3137), - [anon_sym_consteval] = ACTIONS(3137), - [anon_sym_alignas] = ACTIONS(3137), - [anon_sym__Alignas] = ACTIONS(3137), - [sym_primitive_type] = ACTIONS(3137), - [anon_sym_enum] = ACTIONS(3137), - [anon_sym_class] = ACTIONS(3137), - [anon_sym_struct] = ACTIONS(3137), - [anon_sym_union] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_switch] = ACTIONS(3137), - [anon_sym_case] = ACTIONS(3137), - [anon_sym_default] = ACTIONS(3137), - [anon_sym_while] = ACTIONS(3137), - [anon_sym_do] = ACTIONS(3137), - [anon_sym_for] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_goto] = ACTIONS(3137), - [anon_sym___try] = ACTIONS(3137), - [anon_sym___leave] = ACTIONS(3137), - [anon_sym_not] = ACTIONS(3137), - [anon_sym_compl] = ACTIONS(3137), - [anon_sym_DASH_DASH] = ACTIONS(3139), - [anon_sym_PLUS_PLUS] = ACTIONS(3139), - [anon_sym_sizeof] = ACTIONS(3137), - [anon_sym___alignof__] = ACTIONS(3137), - [anon_sym___alignof] = ACTIONS(3137), - [anon_sym__alignof] = ACTIONS(3137), - [anon_sym_alignof] = ACTIONS(3137), - [anon_sym__Alignof] = ACTIONS(3137), - [anon_sym_offsetof] = ACTIONS(3137), - [anon_sym__Generic] = ACTIONS(3137), - [anon_sym_typename] = ACTIONS(3137), - [anon_sym_asm] = ACTIONS(3137), - [anon_sym___asm__] = ACTIONS(3137), - [anon_sym___asm] = ACTIONS(3137), - [sym_number_literal] = ACTIONS(3139), - [anon_sym_L_SQUOTE] = ACTIONS(3139), - [anon_sym_u_SQUOTE] = ACTIONS(3139), - [anon_sym_U_SQUOTE] = ACTIONS(3139), - [anon_sym_u8_SQUOTE] = ACTIONS(3139), - [anon_sym_SQUOTE] = ACTIONS(3139), - [anon_sym_L_DQUOTE] = ACTIONS(3139), - [anon_sym_u_DQUOTE] = ACTIONS(3139), - [anon_sym_U_DQUOTE] = ACTIONS(3139), - [anon_sym_u8_DQUOTE] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3139), - [sym_true] = ACTIONS(3137), - [sym_false] = ACTIONS(3137), - [anon_sym_NULL] = ACTIONS(3137), - [anon_sym_nullptr] = ACTIONS(3137), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3137), - [anon_sym_decltype] = ACTIONS(3137), - [anon_sym_explicit] = ACTIONS(3137), - [anon_sym_export] = ACTIONS(3137), - [anon_sym_module] = ACTIONS(3137), - [anon_sym_import] = ACTIONS(3137), - [anon_sym_template] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_try] = ACTIONS(3137), - [anon_sym_delete] = ACTIONS(3137), - [anon_sym_throw] = ACTIONS(3137), - [anon_sym_namespace] = ACTIONS(3137), - [anon_sym_static_assert] = ACTIONS(3137), - [anon_sym_concept] = ACTIONS(3137), - [anon_sym_co_return] = ACTIONS(3137), - [anon_sym_co_yield] = ACTIONS(3137), - [anon_sym_catch] = ACTIONS(3156), - [anon_sym_R_DQUOTE] = ACTIONS(3139), - [anon_sym_LR_DQUOTE] = ACTIONS(3139), - [anon_sym_uR_DQUOTE] = ACTIONS(3139), - [anon_sym_UR_DQUOTE] = ACTIONS(3139), - [anon_sym_u8R_DQUOTE] = ACTIONS(3139), - [anon_sym_co_await] = ACTIONS(3137), - [anon_sym_new] = ACTIONS(3137), - [anon_sym_requires] = ACTIONS(3137), - [anon_sym_CARET_CARET] = ACTIONS(3139), - [anon_sym_LBRACK_COLON] = ACTIONS(3139), - [sym_this] = ACTIONS(3137), - }, - [STATE(310)] = { - [sym_type_qualifier] = STATE(5048), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(2160), - [sym_sized_type_specifier] = STATE(2089), - [sym_enum_specifier] = STATE(2089), - [sym_struct_specifier] = STATE(2089), - [sym_union_specifier] = STATE(2089), - [sym_expression] = STATE(5308), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_type_descriptor] = STATE(3827), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_placeholder_type_specifier] = STATE(2089), - [sym_decltype_auto] = STATE(2070), - [sym_decltype] = STATE(2063), - [sym_class_specifier] = STATE(2089), - [sym__class_name] = STATE(10270), - [sym_dependent_type] = STATE(2089), - [sym_template_type] = STATE(2066), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7819), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(2126), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(2155), - [sym__splice_specialization_specifier] = STATE(2026), - [sym_splice_type_specifier] = STATE(2127), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [aux_sym__type_definition_type_repeat1] = STATE(5048), - [aux_sym_sized_type_specifier_repeat1] = STATE(1965), - [sym_identifier] = ACTIONS(3159), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_signed] = ACTIONS(3169), - [anon_sym_unsigned] = ACTIONS(3169), - [anon_sym_long] = ACTIONS(3169), - [anon_sym_short] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3173), - [anon_sym_class] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_union] = ACTIONS(3179), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(3183), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3185), - [anon_sym_decltype] = ACTIONS(3187), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(311)] = { - [sym_type_qualifier] = STATE(5122), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(2296), - [sym_sized_type_specifier] = STATE(2926), - [sym_enum_specifier] = STATE(2926), - [sym_struct_specifier] = STATE(2926), - [sym_union_specifier] = STATE(2926), - [sym_expression] = STATE(5053), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_type_descriptor] = STATE(5469), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_placeholder_type_specifier] = STATE(2926), - [sym_decltype_auto] = STATE(2925), - [sym_decltype] = STATE(2832), - [sym_class_specifier] = STATE(2926), - [sym__class_name] = STATE(10312), - [sym_dependent_type] = STATE(2926), - [sym_template_type] = STATE(2815), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7804), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(2868), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(2988), - [sym__splice_specialization_specifier] = STATE(2514), - [sym_splice_type_specifier] = STATE(2869), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [aux_sym__type_definition_type_repeat1] = STATE(5122), - [aux_sym_sized_type_specifier_repeat1] = STATE(2119), - [sym_identifier] = ACTIONS(3189), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_signed] = ACTIONS(3193), - [anon_sym_unsigned] = ACTIONS(3193), - [anon_sym_long] = ACTIONS(3193), - [anon_sym_short] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3195), - [anon_sym_enum] = ACTIONS(3197), - [anon_sym_class] = ACTIONS(3199), - [anon_sym_struct] = ACTIONS(3201), - [anon_sym_union] = ACTIONS(3203), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(3205), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3207), - [anon_sym_decltype] = ACTIONS(3209), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(312)] = { - [sym_type_qualifier] = STATE(4931), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(2262), - [sym_sized_type_specifier] = STATE(2089), - [sym_enum_specifier] = STATE(2089), - [sym_struct_specifier] = STATE(2089), - [sym_union_specifier] = STATE(2089), - [sym_expression] = STATE(4768), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_type_descriptor] = STATE(3827), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_placeholder_type_specifier] = STATE(2089), - [sym_decltype_auto] = STATE(2070), - [sym_decltype] = STATE(2063), - [sym_class_specifier] = STATE(2089), - [sym__class_name] = STATE(10270), - [sym_dependent_type] = STATE(2089), - [sym_template_type] = STATE(2066), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7802), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(2126), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(2155), - [sym__splice_specialization_specifier] = STATE(2026), - [sym_splice_type_specifier] = STATE(2127), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [aux_sym__type_definition_type_repeat1] = STATE(4931), - [aux_sym_sized_type_specifier_repeat1] = STATE(1965), - [sym_identifier] = ACTIONS(3211), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(3217), - [anon_sym_COLON_COLON] = ACTIONS(3219), - [anon_sym_signed] = ACTIONS(3169), - [anon_sym_unsigned] = ACTIONS(3169), - [anon_sym_long] = ACTIONS(3169), - [anon_sym_short] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3173), - [anon_sym_class] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_union] = ACTIONS(3179), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(3183), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3185), - [anon_sym_decltype] = ACTIONS(3187), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(313)] = { - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(6971), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(11516), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7792), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4947), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(228)] = { + [sym_attribute_declaration] = STATE(219), + [sym_compound_statement] = STATE(772), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(759), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(2829), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -99174,7 +91523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3229), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -99194,10 +91543,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2018), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -99207,251 +91559,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(314)] = { - [sym_type_qualifier] = STATE(5096), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(2380), - [sym_sized_type_specifier] = STATE(3140), - [sym_enum_specifier] = STATE(3140), - [sym_struct_specifier] = STATE(3140), - [sym_union_specifier] = STATE(3140), - [sym_expression] = STATE(5194), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_type_descriptor] = STATE(5755), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_placeholder_type_specifier] = STATE(3140), - [sym_decltype_auto] = STATE(3138), - [sym_decltype] = STATE(2973), - [sym_class_specifier] = STATE(3140), - [sym__class_name] = STATE(10382), - [sym_dependent_type] = STATE(3140), - [sym_template_type] = STATE(2974), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7825), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(2981), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(3251), - [sym__splice_specialization_specifier] = STATE(2567), - [sym_splice_type_specifier] = STATE(3062), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [aux_sym__type_definition_type_repeat1] = STATE(5096), - [aux_sym_sized_type_specifier_repeat1] = STATE(2169), - [sym_identifier] = ACTIONS(3231), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(3235), - [anon_sym_COLON_COLON] = ACTIONS(3237), - [anon_sym_signed] = ACTIONS(3239), - [anon_sym_unsigned] = ACTIONS(3239), - [anon_sym_long] = ACTIONS(3239), - [anon_sym_short] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3241), - [anon_sym_enum] = ACTIONS(3243), - [anon_sym_class] = ACTIONS(3245), - [anon_sym_struct] = ACTIONS(3247), - [anon_sym_union] = ACTIONS(3249), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(3253), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3255), - [anon_sym_decltype] = ACTIONS(3257), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), - }, - [STATE(315)] = { - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(6863), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(10697), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7792), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4947), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(229)] = { + [sym_attribute_declaration] = STATE(219), + [sym_compound_statement] = STATE(772), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(760), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(2829), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -99464,7 +91677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3229), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -99484,10 +91697,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2018), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -99497,396 +91713,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(316)] = { - [sym_type_qualifier] = STATE(4934), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(2138), - [sym_sized_type_specifier] = STATE(2089), - [sym_enum_specifier] = STATE(2089), - [sym_struct_specifier] = STATE(2089), - [sym_union_specifier] = STATE(2089), - [sym_expression] = STATE(4321), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_type_descriptor] = STATE(3827), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_placeholder_type_specifier] = STATE(2089), - [sym_decltype_auto] = STATE(2070), - [sym_decltype] = STATE(2063), - [sym_class_specifier] = STATE(2089), - [sym__class_name] = STATE(10270), - [sym_dependent_type] = STATE(2089), - [sym_template_type] = STATE(2066), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7802), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(2126), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(2155), - [sym__splice_specialization_specifier] = STATE(2026), - [sym_splice_type_specifier] = STATE(2127), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [aux_sym__type_definition_type_repeat1] = STATE(4934), - [aux_sym_sized_type_specifier_repeat1] = STATE(1988), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(3265), - [anon_sym_COLON_COLON] = ACTIONS(3267), - [anon_sym_signed] = ACTIONS(3269), - [anon_sym_unsigned] = ACTIONS(3269), - [anon_sym_long] = ACTIONS(3269), - [anon_sym_short] = ACTIONS(3269), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3271), - [anon_sym_enum] = ACTIONS(3273), - [anon_sym_class] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_union] = ACTIONS(3179), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(3277), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3185), - [anon_sym_decltype] = ACTIONS(3187), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(317)] = { - [sym_type_qualifier] = STATE(5150), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3707), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(6442), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(5892), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7860), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4005), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [aux_sym__type_definition_type_repeat1] = STATE(5150), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3279), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(3287), - [anon_sym_COLON_COLON] = ACTIONS(3289), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3291), - [anon_sym_class] = ACTIONS(3293), - [anon_sym_struct] = ACTIONS(3295), - [anon_sym_union] = ACTIONS(3297), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(318)] = { - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(6828), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(10541), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7792), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4947), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(230)] = { + [sym_attribute_declaration] = STATE(193), + [sym_compound_statement] = STATE(339), + [sym_attributed_statement] = STATE(339), + [sym_statement] = STATE(374), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(2604), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -99899,7 +91831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3229), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -99919,10 +91851,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1672), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -99932,106 +91867,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(319)] = { - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(6821), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(11348), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7792), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4947), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(231)] = { + [sym_attribute_declaration] = STATE(193), + [sym_compound_statement] = STATE(339), + [sym_attributed_statement] = STATE(339), + [sym_statement] = STATE(376), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(2604), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -100044,7 +91985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3229), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -100064,10 +92005,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1672), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -100077,106 +92021,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(320)] = { - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(6885), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(11170), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7792), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4947), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(232)] = { + [sym_attribute_declaration] = STATE(193), + [sym_compound_statement] = STATE(339), + [sym_attributed_statement] = STATE(339), + [sym_statement] = STATE(377), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(2604), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -100189,7 +92139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3229), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -100209,10 +92159,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1672), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -100222,108 +92175,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(321)] = { - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(6850), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(10823), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7792), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4947), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(233)] = { + [sym_attribute_declaration] = STATE(219), + [sym_compound_statement] = STATE(772), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(765), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(2829), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), [anon_sym_PLUS_PLUS] = ACTIONS(105), [anon_sym_sizeof] = ACTIONS(107), @@ -100334,7 +92293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3229), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -100354,10 +92313,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2018), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -100367,106 +92329,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(322)] = { - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(6903), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(10582), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7792), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4947), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(234)] = { + [sym_attribute_declaration] = STATE(193), + [sym_compound_statement] = STATE(339), + [sym_attributed_statement] = STATE(339), + [sym_statement] = STATE(384), + [sym_labeled_statement] = STATE(339), + [sym_expression_statement] = STATE(339), + [sym_if_statement] = STATE(339), + [sym_switch_statement] = STATE(339), + [sym_case_statement] = STATE(339), + [sym_while_statement] = STATE(339), + [sym_do_statement] = STATE(339), + [sym_for_statement] = STATE(339), + [sym_return_statement] = STATE(339), + [sym_break_statement] = STATE(339), + [sym_continue_statement] = STATE(339), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(339), + [sym_seh_leave_statement] = STATE(339), + [sym_expression] = STATE(6898), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10727), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(339), + [sym_co_return_statement] = STATE(339), + [sym_co_yield_statement] = STATE(339), + [sym_throw_statement] = STATE(339), + [sym_try_statement] = STATE(339), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(339), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(2604), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -100479,7 +92447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3229), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -100499,10 +92467,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1672), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -100512,106 +92483,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(323)] = { - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(6836), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(10998), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7792), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4947), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(235)] = { + [sym_attribute_declaration] = STATE(221), + [sym_compound_statement] = STATE(772), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(9669), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2202), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -100624,7 +92601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3229), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -100644,10 +92621,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -100657,106 +92637,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(324)] = { - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(6895), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(11368), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7792), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4947), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(236)] = { + [sym_attribute_declaration] = STATE(215), + [sym_compound_statement] = STATE(637), + [sym_attributed_statement] = STATE(637), + [sym_statement] = STATE(543), + [sym_labeled_statement] = STATE(637), + [sym_expression_statement] = STATE(637), + [sym_if_statement] = STATE(637), + [sym_switch_statement] = STATE(637), + [sym_case_statement] = STATE(637), + [sym_while_statement] = STATE(637), + [sym_do_statement] = STATE(637), + [sym_for_statement] = STATE(637), + [sym_return_statement] = STATE(637), + [sym_break_statement] = STATE(637), + [sym_continue_statement] = STATE(637), + [sym_goto_statement] = STATE(637), + [sym_seh_try_statement] = STATE(637), + [sym_seh_leave_statement] = STATE(637), + [sym_expression] = STATE(6804), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11583), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(637), + [sym_co_return_statement] = STATE(637), + [sym_co_yield_statement] = STATE(637), + [sym_throw_statement] = STATE(637), + [sym_try_statement] = STATE(637), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(637), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(215), + [sym_identifier] = ACTIONS(2592), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(1119), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_case] = ACTIONS(1123), + [anon_sym_default] = ACTIONS(1125), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1129), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1133), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1137), + [anon_sym_goto] = ACTIONS(1139), + [anon_sym___try] = ACTIONS(1141), + [anon_sym___leave] = ACTIONS(1143), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -100769,7 +92755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3229), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -100789,10 +92775,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1943), + [anon_sym_try] = ACTIONS(1151), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1153), + [anon_sym_co_return] = ACTIONS(1161), + [anon_sym_co_yield] = ACTIONS(1163), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -100802,106 +92791,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(325)] = { - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(6931), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(11451), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7792), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4947), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(237)] = { + [sym_attribute_declaration] = STATE(221), + [sym_compound_statement] = STATE(772), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(559), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2202), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -100914,7 +92909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3229), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -100934,10 +92929,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -100947,106 +92945,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(326)] = { - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(6957), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(10911), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7792), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4947), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(238)] = { + [sym_attribute_declaration] = STATE(238), + [sym_compound_statement] = STATE(772), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(609), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(238), + [sym_identifier] = ACTIONS(2926), + [anon_sym_LPAREN2] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(2446), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2769), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_COLON_COLON] = ACTIONS(2463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2646), + [anon_sym_LBRACK] = ACTIONS(2472), + [sym_primitive_type] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2929), + [anon_sym_switch] = ACTIONS(2652), + [anon_sym_case] = ACTIONS(2852), + [anon_sym_default] = ACTIONS(2855), + [anon_sym_while] = ACTIONS(2932), + [anon_sym_do] = ACTIONS(2664), + [anon_sym_for] = ACTIONS(2935), + [anon_sym_return] = ACTIONS(2670), + [anon_sym_break] = ACTIONS(2673), + [anon_sym_continue] = ACTIONS(2676), + [anon_sym_goto] = ACTIONS(2679), + [anon_sym___try] = ACTIONS(2938), + [anon_sym___leave] = ACTIONS(2811), + [anon_sym_not] = ACTIONS(2449), + [anon_sym_compl] = ACTIONS(2449), + [anon_sym_DASH_DASH] = ACTIONS(2517), + [anon_sym_PLUS_PLUS] = ACTIONS(2517), + [anon_sym_sizeof] = ACTIONS(2520), + [anon_sym___alignof__] = ACTIONS(2523), + [anon_sym___alignof] = ACTIONS(2523), + [anon_sym__alignof] = ACTIONS(2523), + [anon_sym_alignof] = ACTIONS(2523), + [anon_sym__Alignof] = ACTIONS(2523), + [anon_sym_offsetof] = ACTIONS(2526), + [anon_sym__Generic] = ACTIONS(2529), + [anon_sym_typename] = ACTIONS(2532), + [anon_sym_asm] = ACTIONS(2535), + [anon_sym___asm__] = ACTIONS(2535), + [anon_sym___asm] = ACTIONS(2535), + [sym_number_literal] = ACTIONS(2538), + [anon_sym_L_SQUOTE] = ACTIONS(2541), + [anon_sym_u_SQUOTE] = ACTIONS(2541), + [anon_sym_U_SQUOTE] = ACTIONS(2541), + [anon_sym_u8_SQUOTE] = ACTIONS(2541), + [anon_sym_SQUOTE] = ACTIONS(2541), + [anon_sym_L_DQUOTE] = ACTIONS(2544), + [anon_sym_u_DQUOTE] = ACTIONS(2544), + [anon_sym_U_DQUOTE] = ACTIONS(2544), + [anon_sym_u8_DQUOTE] = ACTIONS(2544), + [anon_sym_DQUOTE] = ACTIONS(2544), + [sym_true] = ACTIONS(2547), + [sym_false] = ACTIONS(2547), + [anon_sym_NULL] = ACTIONS(2550), + [anon_sym_nullptr] = ACTIONS(2550), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2553), + [anon_sym_template] = ACTIONS(2941), + [anon_sym_try] = ACTIONS(2691), + [anon_sym_delete] = ACTIONS(2562), + [anon_sym_throw] = ACTIONS(2694), + [anon_sym_co_return] = ACTIONS(2697), + [anon_sym_co_yield] = ACTIONS(2700), + [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(2577), + [anon_sym_new] = ACTIONS(2580), + [anon_sym_requires] = ACTIONS(2583), + [anon_sym_CARET_CARET] = ACTIONS(2586), + [anon_sym_LBRACK_COLON] = ACTIONS(2589), + [sym_this] = ACTIONS(2547), + }, + [STATE(239)] = { + [sym_attribute_declaration] = STATE(221), + [sym_compound_statement] = STATE(772), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(9887), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2202), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -101059,7 +93217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3229), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -101079,10 +93237,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -101092,106 +93253,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(327)] = { - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(6964), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(10633), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7792), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4947), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(240)] = { + [sym_attribute_declaration] = STATE(221), + [sym_compound_statement] = STATE(772), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(11141), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2202), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -101204,7 +93371,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3229), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -101224,10 +93391,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -101237,106 +93407,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(328)] = { - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(6983), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(10835), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7792), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4947), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(241)] = { + [sym_attribute_declaration] = STATE(221), + [sym_compound_statement] = STATE(772), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(11294), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2202), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -101349,7 +93525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3229), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -101369,10 +93545,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -101382,106 +93561,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(329)] = { - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(7000), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(11037), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7792), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4947), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(242)] = { + [sym_attribute_declaration] = STATE(221), + [sym_compound_statement] = STATE(772), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(11323), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2202), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -101494,7 +93679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3229), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -101514,10 +93699,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -101527,106 +93715,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(330)] = { - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(7004), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(11376), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7792), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4947), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(243)] = { + [sym_attribute_declaration] = STATE(221), + [sym_compound_statement] = STATE(772), + [sym_attributed_statement] = STATE(772), + [sym_statement] = STATE(11346), + [sym_labeled_statement] = STATE(772), + [sym_expression_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_switch_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_do_statement] = STATE(772), + [sym_for_statement] = STATE(772), + [sym_return_statement] = STATE(772), + [sym_break_statement] = STATE(772), + [sym_continue_statement] = STATE(772), + [sym_goto_statement] = STATE(772), + [sym_seh_try_statement] = STATE(772), + [sym_seh_leave_statement] = STATE(772), + [sym_expression] = STATE(6871), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10651), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(772), + [sym_co_return_statement] = STATE(772), + [sym_co_yield_statement] = STATE(772), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(772), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(772), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2202), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -101639,7 +93833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3229), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -101659,10 +93853,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -101672,251 +93869,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(331)] = { - [sym_catch_clause] = STATE(309), - [aux_sym_constructor_try_statement_repeat1] = STATE(309), - [ts_builtin_sym_end] = ACTIONS(3150), - [sym_identifier] = ACTIONS(3148), - [aux_sym_preproc_include_token1] = ACTIONS(3148), - [aux_sym_preproc_def_token1] = ACTIONS(3148), - [aux_sym_preproc_if_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3148), - [sym_preproc_directive] = ACTIONS(3148), - [anon_sym_LPAREN2] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym___extension__] = ACTIONS(3148), - [anon_sym_typedef] = ACTIONS(3148), - [anon_sym_virtual] = ACTIONS(3148), - [anon_sym_extern] = ACTIONS(3148), - [anon_sym___attribute__] = ACTIONS(3148), - [anon_sym___attribute] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3150), - [anon_sym___declspec] = ACTIONS(3148), - [anon_sym___based] = ACTIONS(3148), - [anon_sym___cdecl] = ACTIONS(3148), - [anon_sym___clrcall] = ACTIONS(3148), - [anon_sym___stdcall] = ACTIONS(3148), - [anon_sym___fastcall] = ACTIONS(3148), - [anon_sym___thiscall] = ACTIONS(3148), - [anon_sym___vectorcall] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_signed] = ACTIONS(3148), - [anon_sym_unsigned] = ACTIONS(3148), - [anon_sym_long] = ACTIONS(3148), - [anon_sym_short] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_register] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym___inline] = ACTIONS(3148), - [anon_sym___inline__] = ACTIONS(3148), - [anon_sym___forceinline] = ACTIONS(3148), - [anon_sym_thread_local] = ACTIONS(3148), - [anon_sym___thread] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_constexpr] = ACTIONS(3148), - [anon_sym_volatile] = ACTIONS(3148), - [anon_sym_restrict] = ACTIONS(3148), - [anon_sym___restrict__] = ACTIONS(3148), - [anon_sym__Atomic] = ACTIONS(3148), - [anon_sym__Noreturn] = ACTIONS(3148), - [anon_sym_noreturn] = ACTIONS(3148), - [anon_sym__Nonnull] = ACTIONS(3148), - [anon_sym_mutable] = ACTIONS(3148), - [anon_sym_constinit] = ACTIONS(3148), - [anon_sym_consteval] = ACTIONS(3148), - [anon_sym_alignas] = ACTIONS(3148), - [anon_sym__Alignas] = ACTIONS(3148), - [sym_primitive_type] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(3148), - [anon_sym_union] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_switch] = ACTIONS(3148), - [anon_sym_case] = ACTIONS(3148), - [anon_sym_default] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_do] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_goto] = ACTIONS(3148), - [anon_sym___try] = ACTIONS(3148), - [anon_sym___leave] = ACTIONS(3148), - [anon_sym_not] = ACTIONS(3148), - [anon_sym_compl] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_sizeof] = ACTIONS(3148), - [anon_sym___alignof__] = ACTIONS(3148), - [anon_sym___alignof] = ACTIONS(3148), - [anon_sym__alignof] = ACTIONS(3148), - [anon_sym_alignof] = ACTIONS(3148), - [anon_sym__Alignof] = ACTIONS(3148), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3148), - [anon_sym_typename] = ACTIONS(3148), - [anon_sym_asm] = ACTIONS(3148), - [anon_sym___asm__] = ACTIONS(3148), - [anon_sym___asm] = ACTIONS(3148), - [sym_number_literal] = ACTIONS(3150), - [anon_sym_L_SQUOTE] = ACTIONS(3150), - [anon_sym_u_SQUOTE] = ACTIONS(3150), - [anon_sym_U_SQUOTE] = ACTIONS(3150), - [anon_sym_u8_SQUOTE] = ACTIONS(3150), - [anon_sym_SQUOTE] = ACTIONS(3150), - [anon_sym_L_DQUOTE] = ACTIONS(3150), - [anon_sym_u_DQUOTE] = ACTIONS(3150), - [anon_sym_U_DQUOTE] = ACTIONS(3150), - [anon_sym_u8_DQUOTE] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3150), - [sym_true] = ACTIONS(3148), - [sym_false] = ACTIONS(3148), - [anon_sym_NULL] = ACTIONS(3148), - [anon_sym_nullptr] = ACTIONS(3148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3148), - [anon_sym_decltype] = ACTIONS(3148), - [anon_sym_explicit] = ACTIONS(3148), - [anon_sym_export] = ACTIONS(3148), - [anon_sym_module] = ACTIONS(3148), - [anon_sym_import] = ACTIONS(3148), - [anon_sym_template] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_delete] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_namespace] = ACTIONS(3148), - [anon_sym_static_assert] = ACTIONS(3148), - [anon_sym_concept] = ACTIONS(3148), - [anon_sym_co_return] = ACTIONS(3148), - [anon_sym_co_yield] = ACTIONS(3148), - [anon_sym_catch] = ACTIONS(3319), - [anon_sym_R_DQUOTE] = ACTIONS(3150), - [anon_sym_LR_DQUOTE] = ACTIONS(3150), - [anon_sym_uR_DQUOTE] = ACTIONS(3150), - [anon_sym_UR_DQUOTE] = ACTIONS(3150), - [anon_sym_u8R_DQUOTE] = ACTIONS(3150), - [anon_sym_co_await] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3148), - [anon_sym_requires] = ACTIONS(3148), - [anon_sym_CARET_CARET] = ACTIONS(3150), - [anon_sym_LBRACK_COLON] = ACTIONS(3150), - [sym_this] = ACTIONS(3148), - }, - [STATE(332)] = { - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(7024), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(10622), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7792), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4947), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(244)] = { + [sym_attribute_declaration] = STATE(214), + [sym_compound_statement] = STATE(578), + [sym_attributed_statement] = STATE(578), + [sym_statement] = STATE(627), + [sym_labeled_statement] = STATE(578), + [sym_expression_statement] = STATE(578), + [sym_if_statement] = STATE(578), + [sym_switch_statement] = STATE(578), + [sym_case_statement] = STATE(578), + [sym_while_statement] = STATE(578), + [sym_do_statement] = STATE(578), + [sym_for_statement] = STATE(578), + [sym_return_statement] = STATE(578), + [sym_break_statement] = STATE(578), + [sym_continue_statement] = STATE(578), + [sym_goto_statement] = STATE(578), + [sym_seh_try_statement] = STATE(578), + [sym_seh_leave_statement] = STATE(578), + [sym_expression] = STATE(6807), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11035), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_for_range_loop] = STATE(578), + [sym_co_return_statement] = STATE(578), + [sym_co_yield_statement] = STATE(578), + [sym_throw_statement] = STATE(578), + [sym_try_statement] = STATE(578), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_expansion_statement] = STATE(578), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_attributed_declarator_repeat1] = STATE(214), + [sym_identifier] = ACTIONS(2636), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1324), + [anon_sym___leave] = ACTIONS(1326), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -101929,7 +93987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3229), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -101949,10 +94007,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1949), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -101962,87 +94023,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(333)] = { - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(7031), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(10716), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7792), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4947), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), + [STATE(245)] = { + [sym_compound_statement] = STATE(11243), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4723), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(11243), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(11003), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(11536), + [sym__unary_right_fold] = STATE(11566), + [sym__binary_fold] = STATE(11627), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11671), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -102057,137 +94126,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3229), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), }, - [STATE(334)] = { - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(7046), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(10772), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7792), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4947), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), + [STATE(246)] = { + [sym_compound_statement] = STATE(10910), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4664), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10910), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(10661), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(10662), + [sym__unary_right_fold] = STATE(10665), + [sym__binary_fold] = STATE(10668), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(10928), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -102202,137 +94279,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3229), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), }, - [STATE(335)] = { - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(7054), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(10829), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7792), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4947), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), + [STATE(247)] = { + [sym_compound_statement] = STATE(10717), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4729), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10717), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(11217), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(10917), + [sym__unary_right_fold] = STATE(10922), + [sym__binary_fold] = STATE(10924), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11050), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -102347,137 +94432,4582 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3229), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), }, - [STATE(336)] = { - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(7063), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(10902), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7792), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4947), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), + [STATE(248)] = { + [sym_compound_statement] = STATE(10910), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4664), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10910), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(11020), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(10662), + [sym__unary_right_fold] = STATE(10665), + [sym__binary_fold] = STATE(10668), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(10928), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(249)] = { + [sym_compound_statement] = STATE(11243), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4723), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(11243), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(11043), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(11055), + [sym__unary_right_fold] = STATE(11097), + [sym__binary_fold] = STATE(11101), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11671), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(250)] = { + [sym_compound_statement] = STATE(10717), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4729), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10717), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(11575), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(10917), + [sym__unary_right_fold] = STATE(10922), + [sym__binary_fold] = STATE(10924), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11050), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(251)] = { + [sym_compound_statement] = STATE(11243), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4723), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(11243), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(11681), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(11055), + [sym__unary_right_fold] = STATE(11097), + [sym__binary_fold] = STATE(11101), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11671), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(252)] = { + [sym_compound_statement] = STATE(10717), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4729), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10717), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(11529), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(11505), + [sym__unary_right_fold] = STATE(11613), + [sym__binary_fold] = STATE(11634), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11050), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(253)] = { + [sym_compound_statement] = STATE(10656), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4757), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10656), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(10788), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(10793), + [sym__unary_right_fold] = STATE(10798), + [sym__binary_fold] = STATE(10806), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(10673), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(254)] = { + [sym_compound_statement] = STATE(10656), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4757), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10656), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(11019), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(10793), + [sym__unary_right_fold] = STATE(10798), + [sym__binary_fold] = STATE(10806), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(10673), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(255)] = { + [sym_expression] = STATE(5210), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_initializer_list] = STATE(5596), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2386), + [anon_sym_RPAREN] = ACTIONS(2386), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2232), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_PERCENT] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_CARET] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_EQ_EQ] = ACTIONS(2386), + [anon_sym_BANG_EQ] = ACTIONS(2386), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_GT_EQ] = ACTIONS(2386), + [anon_sym_LT_EQ] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2384), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(2952), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_EQ] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_QMARK] = ACTIONS(2386), + [anon_sym_STAR_EQ] = ACTIONS(2386), + [anon_sym_SLASH_EQ] = ACTIONS(2386), + [anon_sym_PERCENT_EQ] = ACTIONS(2386), + [anon_sym_PLUS_EQ] = ACTIONS(2386), + [anon_sym_DASH_EQ] = ACTIONS(2386), + [anon_sym_LT_LT_EQ] = ACTIONS(2386), + [anon_sym_GT_GT_EQ] = ACTIONS(2386), + [anon_sym_AMP_EQ] = ACTIONS(2386), + [anon_sym_CARET_EQ] = ACTIONS(2386), + [anon_sym_PIPE_EQ] = ACTIONS(2386), + [anon_sym_and_eq] = ACTIONS(2384), + [anon_sym_or_eq] = ACTIONS(2384), + [anon_sym_xor_eq] = ACTIONS(2384), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_LT_EQ_GT] = ACTIONS(2386), + [anon_sym_or] = ACTIONS(2384), + [anon_sym_and] = ACTIONS(2384), + [anon_sym_bitor] = ACTIONS(2384), + [anon_sym_xor] = ACTIONS(2384), + [anon_sym_bitand] = ACTIONS(2384), + [anon_sym_not_eq] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DOT_STAR] = ACTIONS(2386), + [anon_sym_DASH_GT] = ACTIONS(2384), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_DASH_GT_STAR] = ACTIONS(2386), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(256)] = { + [sym_compound_statement] = STATE(10717), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4729), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10717), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(11122), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(11505), + [sym__unary_right_fold] = STATE(11613), + [sym__binary_fold] = STATE(11634), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11050), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(257)] = { + [sym_compound_statement] = STATE(10910), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4664), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10910), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(11542), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(11543), + [sym__unary_right_fold] = STATE(11546), + [sym__binary_fold] = STATE(11549), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(10928), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(258)] = { + [sym_compound_statement] = STATE(10717), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4729), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10717), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(11649), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(11505), + [sym__unary_right_fold] = STATE(11613), + [sym__binary_fold] = STATE(11634), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11050), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(259)] = { + [sym_compound_statement] = STATE(10717), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4729), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10717), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(10915), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(10917), + [sym__unary_right_fold] = STATE(10922), + [sym__binary_fold] = STATE(10924), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11050), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(260)] = { + [sym_compound_statement] = STATE(10717), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4729), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10717), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(11320), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(11505), + [sym__unary_right_fold] = STATE(11613), + [sym__binary_fold] = STATE(11634), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11050), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(261)] = { + [sym_compound_statement] = STATE(10910), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4664), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10910), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(10696), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(11543), + [sym__unary_right_fold] = STATE(11546), + [sym__binary_fold] = STATE(11549), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(10928), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(262)] = { + [sym_compound_statement] = STATE(10717), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4729), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10717), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(11424), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(10917), + [sym__unary_right_fold] = STATE(10922), + [sym__binary_fold] = STATE(10924), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11050), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(263)] = { + [sym_compound_statement] = STATE(10717), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4729), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10717), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(11721), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(10917), + [sym__unary_right_fold] = STATE(10922), + [sym__binary_fold] = STATE(10924), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11050), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(264)] = { + [sym_compound_statement] = STATE(10717), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4729), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10717), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(11618), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(11505), + [sym__unary_right_fold] = STATE(11613), + [sym__binary_fold] = STATE(11634), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11050), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(265)] = { + [sym_compound_statement] = STATE(10717), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4729), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10717), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(10671), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(10917), + [sym__unary_right_fold] = STATE(10922), + [sym__binary_fold] = STATE(10924), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11050), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(266)] = { + [sym_compound_statement] = STATE(10717), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4729), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10717), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(10746), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(11505), + [sym__unary_right_fold] = STATE(11613), + [sym__binary_fold] = STATE(11634), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11050), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(267)] = { + [sym_compound_statement] = STATE(10717), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4729), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10717), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(10802), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(11505), + [sym__unary_right_fold] = STATE(11613), + [sym__binary_fold] = STATE(11634), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11050), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(268)] = { + [sym_compound_statement] = STATE(10717), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4729), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10717), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(11489), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(10917), + [sym__unary_right_fold] = STATE(10922), + [sym__binary_fold] = STATE(10924), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11050), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(269)] = { + [sym_compound_statement] = STATE(10717), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4729), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10717), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(10646), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(11505), + [sym__unary_right_fold] = STATE(11613), + [sym__binary_fold] = STATE(11634), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11050), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(270)] = { + [sym_compound_statement] = STATE(10717), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4729), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10717), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(10642), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(10917), + [sym__unary_right_fold] = STATE(10922), + [sym__binary_fold] = STATE(10924), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11050), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(271)] = { + [sym_compound_statement] = STATE(10717), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4729), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10717), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(11572), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(10917), + [sym__unary_right_fold] = STATE(10922), + [sym__binary_fold] = STATE(10924), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11050), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(272)] = { + [sym_compound_statement] = STATE(10717), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4729), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10717), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(11277), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(10917), + [sym__unary_right_fold] = STATE(10922), + [sym__binary_fold] = STATE(10924), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11050), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(273)] = { + [sym_compound_statement] = STATE(10656), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4757), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10656), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(10918), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(11218), + [sym__unary_right_fold] = STATE(11219), + [sym__binary_fold] = STATE(11220), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(10673), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(274)] = { + [sym_compound_statement] = STATE(11243), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4723), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(11243), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(11403), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(11536), + [sym__unary_right_fold] = STATE(11566), + [sym__binary_fold] = STATE(11627), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11671), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(275)] = { + [sym_compound_statement] = STATE(10656), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4757), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10656), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(11028), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(11218), + [sym__unary_right_fold] = STATE(11219), + [sym__binary_fold] = STATE(11220), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(10673), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(276)] = { + [sym_compound_statement] = STATE(10717), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4729), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10717), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(11677), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(11505), + [sym__unary_right_fold] = STATE(11613), + [sym__binary_fold] = STATE(11634), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11050), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(277)] = { + [sym_compound_statement] = STATE(10717), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(4729), + [sym__string] = STATE(5287), + [sym_comma_expression] = STATE(10717), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(11523), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym__unary_left_fold] = STATE(11505), + [sym__unary_right_fold] = STATE(11613), + [sym__binary_fold] = STATE(11634), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7937), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3974), + [sym__assignment_expression_lhs] = STATE(11050), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3128), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(7939), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(2944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -102492,11 +99022,917 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), + [sym_primitive_type] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2266), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(278)] = { + [sym_expression] = STATE(5302), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_initializer_list] = STATE(5799), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2386), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2960), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_PERCENT] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_CARET] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_EQ_EQ] = ACTIONS(2386), + [anon_sym_BANG_EQ] = ACTIONS(2386), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_GT_EQ] = ACTIONS(2384), + [anon_sym_LT_EQ] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2384), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_EQ] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_QMARK] = ACTIONS(2386), + [anon_sym_STAR_EQ] = ACTIONS(2386), + [anon_sym_SLASH_EQ] = ACTIONS(2386), + [anon_sym_PERCENT_EQ] = ACTIONS(2386), + [anon_sym_PLUS_EQ] = ACTIONS(2386), + [anon_sym_DASH_EQ] = ACTIONS(2386), + [anon_sym_LT_LT_EQ] = ACTIONS(2386), + [anon_sym_GT_GT_EQ] = ACTIONS(2384), + [anon_sym_AMP_EQ] = ACTIONS(2386), + [anon_sym_CARET_EQ] = ACTIONS(2386), + [anon_sym_PIPE_EQ] = ACTIONS(2386), + [anon_sym_and_eq] = ACTIONS(2384), + [anon_sym_or_eq] = ACTIONS(2384), + [anon_sym_xor_eq] = ACTIONS(2384), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_LT_EQ_GT] = ACTIONS(2386), + [anon_sym_or] = ACTIONS(2384), + [anon_sym_and] = ACTIONS(2384), + [anon_sym_bitor] = ACTIONS(2384), + [anon_sym_xor] = ACTIONS(2384), + [anon_sym_bitand] = ACTIONS(2384), + [anon_sym_not_eq] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DOT_STAR] = ACTIONS(2386), + [anon_sym_DASH_GT] = ACTIONS(2386), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_GT2] = ACTIONS(2386), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), + }, + [STATE(279)] = { + [sym_expression] = STATE(3820), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_initializer_list] = STATE(3937), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2386), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(3010), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_PERCENT] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_CARET] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_EQ_EQ] = ACTIONS(2386), + [anon_sym_BANG_EQ] = ACTIONS(2386), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_GT_EQ] = ACTIONS(2386), + [anon_sym_LT_EQ] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2384), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2386), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_EQ] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_QMARK] = ACTIONS(2386), + [anon_sym_STAR_EQ] = ACTIONS(2386), + [anon_sym_SLASH_EQ] = ACTIONS(2386), + [anon_sym_PERCENT_EQ] = ACTIONS(2386), + [anon_sym_PLUS_EQ] = ACTIONS(2386), + [anon_sym_DASH_EQ] = ACTIONS(2386), + [anon_sym_LT_LT_EQ] = ACTIONS(2386), + [anon_sym_GT_GT_EQ] = ACTIONS(2386), + [anon_sym_AMP_EQ] = ACTIONS(2386), + [anon_sym_CARET_EQ] = ACTIONS(2386), + [anon_sym_PIPE_EQ] = ACTIONS(2386), + [anon_sym_and_eq] = ACTIONS(2384), + [anon_sym_or_eq] = ACTIONS(2384), + [anon_sym_xor_eq] = ACTIONS(2384), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_LT_EQ_GT] = ACTIONS(2386), + [anon_sym_or] = ACTIONS(2384), + [anon_sym_and] = ACTIONS(2384), + [anon_sym_bitor] = ACTIONS(2384), + [anon_sym_xor] = ACTIONS(2384), + [anon_sym_bitand] = ACTIONS(2384), + [anon_sym_not_eq] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DOT_STAR] = ACTIONS(2386), + [anon_sym_DASH_GT] = ACTIONS(2386), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(280)] = { + [sym_expression] = STATE(5493), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_initializer_list] = STATE(3937), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2386), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_PERCENT] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_CARET] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_EQ_EQ] = ACTIONS(2386), + [anon_sym_BANG_EQ] = ACTIONS(2386), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_GT_EQ] = ACTIONS(2386), + [anon_sym_LT_EQ] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2384), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON] = ACTIONS(2384), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_EQ] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_QMARK] = ACTIONS(2386), + [anon_sym_STAR_EQ] = ACTIONS(2386), + [anon_sym_SLASH_EQ] = ACTIONS(2386), + [anon_sym_PERCENT_EQ] = ACTIONS(2386), + [anon_sym_PLUS_EQ] = ACTIONS(2386), + [anon_sym_DASH_EQ] = ACTIONS(2386), + [anon_sym_LT_LT_EQ] = ACTIONS(2386), + [anon_sym_GT_GT_EQ] = ACTIONS(2386), + [anon_sym_AMP_EQ] = ACTIONS(2386), + [anon_sym_CARET_EQ] = ACTIONS(2386), + [anon_sym_PIPE_EQ] = ACTIONS(2386), + [anon_sym_and_eq] = ACTIONS(2384), + [anon_sym_or_eq] = ACTIONS(2384), + [anon_sym_xor_eq] = ACTIONS(2384), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_LT_EQ_GT] = ACTIONS(2386), + [anon_sym_or] = ACTIONS(2384), + [anon_sym_and] = ACTIONS(2384), + [anon_sym_bitor] = ACTIONS(2384), + [anon_sym_xor] = ACTIONS(2384), + [anon_sym_bitand] = ACTIONS(2384), + [anon_sym_not_eq] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DOT_STAR] = ACTIONS(2386), + [anon_sym_DASH_GT] = ACTIONS(2386), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(281)] = { + [sym_expression] = STATE(5421), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_initializer_list] = STATE(5767), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2386), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(3044), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_PERCENT] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_CARET] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_EQ_EQ] = ACTIONS(2386), + [anon_sym_BANG_EQ] = ACTIONS(2386), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_GT_EQ] = ACTIONS(2386), + [anon_sym_LT_EQ] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2384), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_RBRACK] = ACTIONS(2386), + [anon_sym_EQ] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_QMARK] = ACTIONS(2386), + [anon_sym_STAR_EQ] = ACTIONS(2386), + [anon_sym_SLASH_EQ] = ACTIONS(2386), + [anon_sym_PERCENT_EQ] = ACTIONS(2386), + [anon_sym_PLUS_EQ] = ACTIONS(2386), + [anon_sym_DASH_EQ] = ACTIONS(2386), + [anon_sym_LT_LT_EQ] = ACTIONS(2386), + [anon_sym_GT_GT_EQ] = ACTIONS(2386), + [anon_sym_AMP_EQ] = ACTIONS(2386), + [anon_sym_CARET_EQ] = ACTIONS(2386), + [anon_sym_PIPE_EQ] = ACTIONS(2386), + [anon_sym_and_eq] = ACTIONS(2384), + [anon_sym_or_eq] = ACTIONS(2384), + [anon_sym_xor_eq] = ACTIONS(2384), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_LT_EQ_GT] = ACTIONS(2386), + [anon_sym_or] = ACTIONS(2384), + [anon_sym_and] = ACTIONS(2384), + [anon_sym_bitor] = ACTIONS(2384), + [anon_sym_xor] = ACTIONS(2384), + [anon_sym_bitand] = ACTIONS(2384), + [anon_sym_not_eq] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DOT_STAR] = ACTIONS(2386), + [anon_sym_DASH_GT] = ACTIONS(2386), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(282)] = { + [sym_expression] = STATE(5804), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_initializer_list] = STATE(6088), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2386), + [anon_sym_RPAREN] = ACTIONS(2386), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2334), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_PERCENT] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_CARET] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_EQ_EQ] = ACTIONS(2386), + [anon_sym_BANG_EQ] = ACTIONS(2386), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_GT_EQ] = ACTIONS(2386), + [anon_sym_LT_EQ] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2384), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_EQ] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_QMARK] = ACTIONS(2386), + [anon_sym_STAR_EQ] = ACTIONS(2386), + [anon_sym_SLASH_EQ] = ACTIONS(2386), + [anon_sym_PERCENT_EQ] = ACTIONS(2386), + [anon_sym_PLUS_EQ] = ACTIONS(2386), + [anon_sym_DASH_EQ] = ACTIONS(2386), + [anon_sym_LT_LT_EQ] = ACTIONS(2386), + [anon_sym_GT_GT_EQ] = ACTIONS(2386), + [anon_sym_AMP_EQ] = ACTIONS(2386), + [anon_sym_CARET_EQ] = ACTIONS(2386), + [anon_sym_PIPE_EQ] = ACTIONS(2386), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_LT_EQ_GT] = ACTIONS(2386), + [anon_sym_or] = ACTIONS(2384), + [anon_sym_and] = ACTIONS(2384), + [anon_sym_bitor] = ACTIONS(2384), + [anon_sym_xor] = ACTIONS(2384), + [anon_sym_bitand] = ACTIONS(2384), + [anon_sym_not_eq] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DOT_STAR] = ACTIONS(2386), + [anon_sym_DASH_GT] = ACTIONS(2384), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_DASH_GT_STAR] = ACTIONS(2386), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(283)] = { + [sym_expression] = STATE(6487), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(3106), + [anon_sym_LPAREN2] = ACTIONS(3109), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(3112), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym___extension__] = ACTIONS(3123), + [anon_sym_typedef] = ACTIONS(3126), + [anon_sym_virtual] = ACTIONS(3128), + [anon_sym_extern] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym___declspec] = ACTIONS(3128), + [anon_sym___based] = ACTIONS(3128), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3133), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_register] = ACTIONS(3128), + [anon_sym_inline] = ACTIONS(3128), + [anon_sym___inline] = ACTIONS(3128), + [anon_sym___inline__] = ACTIONS(3128), + [anon_sym___forceinline] = ACTIONS(3128), + [anon_sym_thread_local] = ACTIONS(3128), + [anon_sym___thread] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -102509,7 +99945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3229), + [anon_sym_typename] = ACTIONS(3139), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -102529,9 +99965,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_explicit] = ACTIONS(3128), + [anon_sym_template] = ACTIONS(3145), + [anon_sym_operator] = ACTIONS(3128), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -102542,106 +99980,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(3148), [sym_this] = ACTIONS(237), }, - [STATE(337)] = { - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(7070), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(10942), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7792), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4947), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(284)] = { + [sym_expression] = STATE(6487), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(3106), + [anon_sym_LPAREN2] = ACTIONS(3109), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(3112), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym___extension__] = ACTIONS(3123), + [anon_sym_typedef] = ACTIONS(3151), + [anon_sym_virtual] = ACTIONS(3128), + [anon_sym_extern] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym___declspec] = ACTIONS(3128), + [anon_sym___based] = ACTIONS(3128), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3133), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_register] = ACTIONS(3128), + [anon_sym_inline] = ACTIONS(3128), + [anon_sym___inline] = ACTIONS(3128), + [anon_sym___inline__] = ACTIONS(3128), + [anon_sym___forceinline] = ACTIONS(3128), + [anon_sym_thread_local] = ACTIONS(3128), + [anon_sym___thread] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -102654,7 +100095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3229), + [anon_sym_typename] = ACTIONS(3139), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -102674,9 +100115,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_explicit] = ACTIONS(3128), + [anon_sym_template] = ACTIONS(3145), + [anon_sym_operator] = ACTIONS(3128), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -102687,106 +100130,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(3148), [sym_this] = ACTIONS(237), }, - [STATE(338)] = { - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(7071), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(10973), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7792), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4947), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(285)] = { + [ts_builtin_sym_end] = ACTIONS(3153), + [sym_identifier] = ACTIONS(3155), + [aux_sym_preproc_include_token1] = ACTIONS(3155), + [aux_sym_preproc_def_token1] = ACTIONS(3155), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_RPAREN] = ACTIONS(3153), + [aux_sym_preproc_if_token1] = ACTIONS(3155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3155), + [sym_preproc_directive] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_PIPE_PIPE] = ACTIONS(3153), + [anon_sym_AMP_AMP] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym___extension__] = ACTIONS(3155), + [anon_sym_typedef] = ACTIONS(3155), + [anon_sym_virtual] = ACTIONS(3155), + [anon_sym_extern] = ACTIONS(3155), + [anon_sym___attribute__] = ACTIONS(3155), + [anon_sym___attribute] = ACTIONS(3155), + [anon_sym_using] = ACTIONS(3155), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), + [anon_sym___declspec] = ACTIONS(3155), + [anon_sym___based] = ACTIONS(3155), + [anon_sym___cdecl] = ACTIONS(3155), + [anon_sym___clrcall] = ACTIONS(3155), + [anon_sym___stdcall] = ACTIONS(3155), + [anon_sym___fastcall] = ACTIONS(3155), + [anon_sym___thiscall] = ACTIONS(3155), + [anon_sym___vectorcall] = ACTIONS(3155), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_static] = ACTIONS(3155), + [anon_sym_register] = ACTIONS(3155), + [anon_sym_inline] = ACTIONS(3155), + [anon_sym___inline] = ACTIONS(3155), + [anon_sym___inline__] = ACTIONS(3155), + [anon_sym___forceinline] = ACTIONS(3155), + [anon_sym_thread_local] = ACTIONS(3155), + [anon_sym___thread] = ACTIONS(3155), + [anon_sym_const] = ACTIONS(3155), + [anon_sym_constexpr] = ACTIONS(3155), + [anon_sym_volatile] = ACTIONS(3155), + [anon_sym_restrict] = ACTIONS(3155), + [anon_sym___restrict__] = ACTIONS(3155), + [anon_sym__Atomic] = ACTIONS(3155), + [anon_sym__Noreturn] = ACTIONS(3155), + [anon_sym_noreturn] = ACTIONS(3155), + [anon_sym__Nonnull] = ACTIONS(3155), + [anon_sym_mutable] = ACTIONS(3155), + [anon_sym_constinit] = ACTIONS(3155), + [anon_sym_consteval] = ACTIONS(3155), + [anon_sym_alignas] = ACTIONS(3155), + [anon_sym__Alignas] = ACTIONS(3155), + [sym_primitive_type] = ACTIONS(3155), + [anon_sym_enum] = ACTIONS(3155), + [anon_sym_class] = ACTIONS(3155), + [anon_sym_struct] = ACTIONS(3155), + [anon_sym_union] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_else] = ACTIONS(3155), + [anon_sym_switch] = ACTIONS(3155), + [anon_sym_case] = ACTIONS(3155), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_do] = ACTIONS(3155), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_break] = ACTIONS(3155), + [anon_sym_continue] = ACTIONS(3155), + [anon_sym_goto] = ACTIONS(3155), + [anon_sym___try] = ACTIONS(3155), + [anon_sym___except] = ACTIONS(3155), + [anon_sym___finally] = ACTIONS(3155), + [anon_sym___leave] = ACTIONS(3155), + [anon_sym_not] = ACTIONS(3155), + [anon_sym_compl] = ACTIONS(3155), + [anon_sym_or] = ACTIONS(3155), + [anon_sym_and] = ACTIONS(3155), + [anon_sym_DASH_DASH] = ACTIONS(3153), + [anon_sym_PLUS_PLUS] = ACTIONS(3153), + [anon_sym_sizeof] = ACTIONS(3155), + [anon_sym___alignof__] = ACTIONS(3155), + [anon_sym___alignof] = ACTIONS(3155), + [anon_sym__alignof] = ACTIONS(3155), + [anon_sym_alignof] = ACTIONS(3155), + [anon_sym__Alignof] = ACTIONS(3155), + [anon_sym_offsetof] = ACTIONS(3155), + [anon_sym__Generic] = ACTIONS(3155), + [anon_sym_typename] = ACTIONS(3155), + [anon_sym_asm] = ACTIONS(3155), + [anon_sym___asm__] = ACTIONS(3155), + [anon_sym___asm] = ACTIONS(3155), + [sym_number_literal] = ACTIONS(3153), + [anon_sym_L_SQUOTE] = ACTIONS(3153), + [anon_sym_u_SQUOTE] = ACTIONS(3153), + [anon_sym_U_SQUOTE] = ACTIONS(3153), + [anon_sym_u8_SQUOTE] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3153), + [anon_sym_L_DQUOTE] = ACTIONS(3153), + [anon_sym_u_DQUOTE] = ACTIONS(3153), + [anon_sym_U_DQUOTE] = ACTIONS(3153), + [anon_sym_u8_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE] = ACTIONS(3153), + [sym_true] = ACTIONS(3155), + [sym_false] = ACTIONS(3155), + [anon_sym_NULL] = ACTIONS(3155), + [anon_sym_nullptr] = ACTIONS(3155), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3155), + [anon_sym_decltype] = ACTIONS(3155), + [anon_sym_explicit] = ACTIONS(3155), + [anon_sym_export] = ACTIONS(3155), + [anon_sym_module] = ACTIONS(3155), + [anon_sym_import] = ACTIONS(3155), + [anon_sym_template] = ACTIONS(3155), + [anon_sym_operator] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [anon_sym_delete] = ACTIONS(3155), + [anon_sym_throw] = ACTIONS(3155), + [anon_sym_namespace] = ACTIONS(3155), + [anon_sym_static_assert] = ACTIONS(3155), + [anon_sym_concept] = ACTIONS(3155), + [anon_sym_co_return] = ACTIONS(3155), + [anon_sym_co_yield] = ACTIONS(3155), + [anon_sym_catch] = ACTIONS(3155), + [anon_sym_R_DQUOTE] = ACTIONS(3153), + [anon_sym_LR_DQUOTE] = ACTIONS(3153), + [anon_sym_uR_DQUOTE] = ACTIONS(3153), + [anon_sym_UR_DQUOTE] = ACTIONS(3153), + [anon_sym_u8R_DQUOTE] = ACTIONS(3153), + [anon_sym_co_await] = ACTIONS(3155), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_requires] = ACTIONS(3155), + [anon_sym_CARET_CARET] = ACTIONS(3153), + [anon_sym_LBRACK_COLON] = ACTIONS(3153), + [sym_this] = ACTIONS(3155), + }, + [STATE(286)] = { + [sym_expression] = STATE(6487), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(3106), + [anon_sym_LPAREN2] = ACTIONS(3109), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(3112), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym___extension__] = ACTIONS(3123), + [anon_sym_typedef] = ACTIONS(3157), + [anon_sym_virtual] = ACTIONS(3128), + [anon_sym_extern] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym___declspec] = ACTIONS(3128), + [anon_sym___based] = ACTIONS(3128), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3133), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_register] = ACTIONS(3128), + [anon_sym_inline] = ACTIONS(3128), + [anon_sym___inline] = ACTIONS(3128), + [anon_sym___inline__] = ACTIONS(3128), + [anon_sym___forceinline] = ACTIONS(3128), + [anon_sym_thread_local] = ACTIONS(3128), + [anon_sym___thread] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -102799,7 +100395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3229), + [anon_sym_typename] = ACTIONS(3139), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -102819,9 +100415,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_explicit] = ACTIONS(3128), + [anon_sym_template] = ACTIONS(3145), + [anon_sym_operator] = ACTIONS(3128), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -102832,106 +100430,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(3148), [sym_this] = ACTIONS(237), }, - [STATE(339)] = { - [sym_type_qualifier] = STATE(5089), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3440), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(6373), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(5892), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7860), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4005), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(5089), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3321), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(287)] = { + [sym_expression] = STATE(6487), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(3106), + [anon_sym_LPAREN2] = ACTIONS(3109), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(3112), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), - [anon_sym_COLON_COLON] = ACTIONS(3323), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3291), - [anon_sym_class] = ACTIONS(3293), - [anon_sym_struct] = ACTIONS(3295), - [anon_sym_union] = ACTIONS(3297), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym___extension__] = ACTIONS(3123), + [anon_sym_typedef] = ACTIONS(3159), + [anon_sym_virtual] = ACTIONS(3128), + [anon_sym_extern] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym___declspec] = ACTIONS(3128), + [anon_sym___based] = ACTIONS(3128), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3133), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_register] = ACTIONS(3128), + [anon_sym_inline] = ACTIONS(3128), + [anon_sym___inline] = ACTIONS(3128), + [anon_sym___inline__] = ACTIONS(3128), + [anon_sym___forceinline] = ACTIONS(3128), + [anon_sym_thread_local] = ACTIONS(3128), + [anon_sym___thread] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -102944,7 +100545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3303), + [anon_sym_typename] = ACTIONS(3139), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -102964,9 +100565,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_explicit] = ACTIONS(3128), + [anon_sym_template] = ACTIONS(3145), + [anon_sym_operator] = ACTIONS(3128), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -102977,87 +100580,831 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(3148), [sym_this] = ACTIONS(237), }, - [STATE(340)] = { - [sym_type_qualifier] = STATE(4930), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3384), - [sym_sized_type_specifier] = STATE(4042), - [sym_enum_specifier] = STATE(4042), - [sym_struct_specifier] = STATE(4042), - [sym_union_specifier] = STATE(4042), - [sym_expression] = STATE(6240), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(5892), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(4042), - [sym_decltype_auto] = STATE(4041), - [sym_decltype] = STATE(3887), - [sym_class_specifier] = STATE(4042), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(4042), - [sym_template_type] = STATE(3976), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7834), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(4080), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4206), - [sym__splice_specialization_specifier] = STATE(3640), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [aux_sym__type_definition_type_repeat1] = STATE(4930), - [aux_sym_sized_type_specifier_repeat1] = STATE(2838), - [sym_identifier] = ACTIONS(3325), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(3333), - [anon_sym_COLON_COLON] = ACTIONS(3335), - [anon_sym_signed] = ACTIONS(3337), - [anon_sym_unsigned] = ACTIONS(3337), - [anon_sym_long] = ACTIONS(3337), - [anon_sym_short] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(1310), + [STATE(288)] = { + [ts_builtin_sym_end] = ACTIONS(3161), + [sym_identifier] = ACTIONS(3163), + [aux_sym_preproc_include_token1] = ACTIONS(3163), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [anon_sym_RPAREN] = ACTIONS(3161), + [aux_sym_preproc_if_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), + [sym_preproc_directive] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_PIPE_PIPE] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_extern] = ACTIONS(3163), + [anon_sym___attribute__] = ACTIONS(3163), + [anon_sym___attribute] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3163), + [anon_sym___based] = ACTIONS(3163), + [anon_sym___cdecl] = ACTIONS(3163), + [anon_sym___clrcall] = ACTIONS(3163), + [anon_sym___stdcall] = ACTIONS(3163), + [anon_sym___fastcall] = ACTIONS(3163), + [anon_sym___thiscall] = ACTIONS(3163), + [anon_sym___vectorcall] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym___inline] = ACTIONS(3163), + [anon_sym___inline__] = ACTIONS(3163), + [anon_sym___forceinline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym___thread] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym___restrict__] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym__Noreturn] = ACTIONS(3163), + [anon_sym_noreturn] = ACTIONS(3163), + [anon_sym__Nonnull] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym__Alignas] = ACTIONS(3163), + [sym_primitive_type] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_else] = ACTIONS(3163), + [anon_sym_switch] = ACTIONS(3163), + [anon_sym_case] = ACTIONS(3163), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_goto] = ACTIONS(3163), + [anon_sym___try] = ACTIONS(3163), + [anon_sym___except] = ACTIONS(3163), + [anon_sym___finally] = ACTIONS(3163), + [anon_sym___leave] = ACTIONS(3163), + [anon_sym_not] = ACTIONS(3163), + [anon_sym_compl] = ACTIONS(3163), + [anon_sym_or] = ACTIONS(3163), + [anon_sym_and] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3163), + [anon_sym___alignof__] = ACTIONS(3163), + [anon_sym___alignof] = ACTIONS(3163), + [anon_sym__alignof] = ACTIONS(3163), + [anon_sym_alignof] = ACTIONS(3163), + [anon_sym__Alignof] = ACTIONS(3163), + [anon_sym_offsetof] = ACTIONS(3163), + [anon_sym__Generic] = ACTIONS(3163), + [anon_sym_typename] = ACTIONS(3163), + [anon_sym_asm] = ACTIONS(3163), + [anon_sym___asm__] = ACTIONS(3163), + [anon_sym___asm] = ACTIONS(3163), + [sym_number_literal] = ACTIONS(3161), + [anon_sym_L_SQUOTE] = ACTIONS(3161), + [anon_sym_u_SQUOTE] = ACTIONS(3161), + [anon_sym_U_SQUOTE] = ACTIONS(3161), + [anon_sym_u8_SQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_L_DQUOTE] = ACTIONS(3161), + [anon_sym_u_DQUOTE] = ACTIONS(3161), + [anon_sym_U_DQUOTE] = ACTIONS(3161), + [anon_sym_u8_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [anon_sym_NULL] = ACTIONS(3163), + [anon_sym_nullptr] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_export] = ACTIONS(3163), + [anon_sym_module] = ACTIONS(3163), + [anon_sym_import] = ACTIONS(3163), + [anon_sym_template] = ACTIONS(3163), + [anon_sym_operator] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_delete] = ACTIONS(3163), + [anon_sym_throw] = ACTIONS(3163), + [anon_sym_namespace] = ACTIONS(3163), + [anon_sym_static_assert] = ACTIONS(3163), + [anon_sym_concept] = ACTIONS(3163), + [anon_sym_co_return] = ACTIONS(3163), + [anon_sym_co_yield] = ACTIONS(3163), + [anon_sym_catch] = ACTIONS(3163), + [anon_sym_R_DQUOTE] = ACTIONS(3161), + [anon_sym_LR_DQUOTE] = ACTIONS(3161), + [anon_sym_uR_DQUOTE] = ACTIONS(3161), + [anon_sym_UR_DQUOTE] = ACTIONS(3161), + [anon_sym_u8R_DQUOTE] = ACTIONS(3161), + [anon_sym_co_await] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_requires] = ACTIONS(3163), + [anon_sym_CARET_CARET] = ACTIONS(3161), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), + [sym_this] = ACTIONS(3163), + }, + [STATE(289)] = { + [sym_catch_clause] = STATE(290), + [aux_sym_constructor_try_statement_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(3165), + [aux_sym_preproc_include_token1] = ACTIONS(3165), + [aux_sym_preproc_def_token1] = ACTIONS(3165), + [aux_sym_preproc_if_token1] = ACTIONS(3165), + [aux_sym_preproc_if_token2] = ACTIONS(3165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3165), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3165), + [aux_sym_preproc_else_token1] = ACTIONS(3165), + [aux_sym_preproc_elif_token1] = ACTIONS(3165), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3165), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3165), + [sym_preproc_directive] = ACTIONS(3165), + [anon_sym_LPAREN2] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(3167), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym___extension__] = ACTIONS(3165), + [anon_sym_typedef] = ACTIONS(3165), + [anon_sym_virtual] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3165), + [anon_sym___attribute__] = ACTIONS(3165), + [anon_sym___attribute] = ACTIONS(3165), + [anon_sym_using] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(3167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3167), + [anon_sym___declspec] = ACTIONS(3165), + [anon_sym___based] = ACTIONS(3165), + [anon_sym___cdecl] = ACTIONS(3165), + [anon_sym___clrcall] = ACTIONS(3165), + [anon_sym___stdcall] = ACTIONS(3165), + [anon_sym___fastcall] = ACTIONS(3165), + [anon_sym___thiscall] = ACTIONS(3165), + [anon_sym___vectorcall] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_signed] = ACTIONS(3165), + [anon_sym_unsigned] = ACTIONS(3165), + [anon_sym_long] = ACTIONS(3165), + [anon_sym_short] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_static] = ACTIONS(3165), + [anon_sym_register] = ACTIONS(3165), + [anon_sym_inline] = ACTIONS(3165), + [anon_sym___inline] = ACTIONS(3165), + [anon_sym___inline__] = ACTIONS(3165), + [anon_sym___forceinline] = ACTIONS(3165), + [anon_sym_thread_local] = ACTIONS(3165), + [anon_sym___thread] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_constexpr] = ACTIONS(3165), + [anon_sym_volatile] = ACTIONS(3165), + [anon_sym_restrict] = ACTIONS(3165), + [anon_sym___restrict__] = ACTIONS(3165), + [anon_sym__Atomic] = ACTIONS(3165), + [anon_sym__Noreturn] = ACTIONS(3165), + [anon_sym_noreturn] = ACTIONS(3165), + [anon_sym__Nonnull] = ACTIONS(3165), + [anon_sym_mutable] = ACTIONS(3165), + [anon_sym_constinit] = ACTIONS(3165), + [anon_sym_consteval] = ACTIONS(3165), + [anon_sym_alignas] = ACTIONS(3165), + [anon_sym__Alignas] = ACTIONS(3165), + [sym_primitive_type] = ACTIONS(3165), + [anon_sym_enum] = ACTIONS(3165), + [anon_sym_class] = ACTIONS(3165), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3165), + [anon_sym_else] = ACTIONS(3165), + [anon_sym_switch] = ACTIONS(3165), + [anon_sym_case] = ACTIONS(3165), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_while] = ACTIONS(3165), + [anon_sym_do] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3165), + [anon_sym_return] = ACTIONS(3165), + [anon_sym_break] = ACTIONS(3165), + [anon_sym_continue] = ACTIONS(3165), + [anon_sym_goto] = ACTIONS(3165), + [anon_sym___try] = ACTIONS(3165), + [anon_sym___leave] = ACTIONS(3165), + [anon_sym_not] = ACTIONS(3165), + [anon_sym_compl] = ACTIONS(3165), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_sizeof] = ACTIONS(3165), + [anon_sym___alignof__] = ACTIONS(3165), + [anon_sym___alignof] = ACTIONS(3165), + [anon_sym__alignof] = ACTIONS(3165), + [anon_sym_alignof] = ACTIONS(3165), + [anon_sym__Alignof] = ACTIONS(3165), + [anon_sym_offsetof] = ACTIONS(3165), + [anon_sym__Generic] = ACTIONS(3165), + [anon_sym_typename] = ACTIONS(3165), + [anon_sym_asm] = ACTIONS(3165), + [anon_sym___asm__] = ACTIONS(3165), + [anon_sym___asm] = ACTIONS(3165), + [sym_number_literal] = ACTIONS(3167), + [anon_sym_L_SQUOTE] = ACTIONS(3167), + [anon_sym_u_SQUOTE] = ACTIONS(3167), + [anon_sym_U_SQUOTE] = ACTIONS(3167), + [anon_sym_u8_SQUOTE] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3167), + [anon_sym_L_DQUOTE] = ACTIONS(3167), + [anon_sym_u_DQUOTE] = ACTIONS(3167), + [anon_sym_U_DQUOTE] = ACTIONS(3167), + [anon_sym_u8_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [sym_true] = ACTIONS(3165), + [sym_false] = ACTIONS(3165), + [anon_sym_NULL] = ACTIONS(3165), + [anon_sym_nullptr] = ACTIONS(3165), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3165), + [anon_sym_decltype] = ACTIONS(3165), + [anon_sym_explicit] = ACTIONS(3165), + [anon_sym_export] = ACTIONS(3165), + [anon_sym_module] = ACTIONS(3165), + [anon_sym_import] = ACTIONS(3165), + [anon_sym_template] = ACTIONS(3165), + [anon_sym_operator] = ACTIONS(3165), + [anon_sym_try] = ACTIONS(3165), + [anon_sym_delete] = ACTIONS(3165), + [anon_sym_throw] = ACTIONS(3165), + [anon_sym_namespace] = ACTIONS(3165), + [anon_sym_static_assert] = ACTIONS(3165), + [anon_sym_concept] = ACTIONS(3165), + [anon_sym_co_return] = ACTIONS(3165), + [anon_sym_co_yield] = ACTIONS(3165), + [anon_sym_catch] = ACTIONS(3169), + [anon_sym_R_DQUOTE] = ACTIONS(3167), + [anon_sym_LR_DQUOTE] = ACTIONS(3167), + [anon_sym_uR_DQUOTE] = ACTIONS(3167), + [anon_sym_UR_DQUOTE] = ACTIONS(3167), + [anon_sym_u8R_DQUOTE] = ACTIONS(3167), + [anon_sym_co_await] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3165), + [anon_sym_requires] = ACTIONS(3165), + [anon_sym_CARET_CARET] = ACTIONS(3167), + [anon_sym_LBRACK_COLON] = ACTIONS(3167), + [sym_this] = ACTIONS(3165), + }, + [STATE(290)] = { + [sym_catch_clause] = STATE(290), + [aux_sym_constructor_try_statement_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(3171), + [aux_sym_preproc_include_token1] = ACTIONS(3171), + [aux_sym_preproc_def_token1] = ACTIONS(3171), + [aux_sym_preproc_if_token1] = ACTIONS(3171), + [aux_sym_preproc_if_token2] = ACTIONS(3171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3171), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3171), + [aux_sym_preproc_else_token1] = ACTIONS(3171), + [aux_sym_preproc_elif_token1] = ACTIONS(3171), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3171), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3171), + [sym_preproc_directive] = ACTIONS(3171), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(3173), + [anon_sym_AMP_AMP] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym___extension__] = ACTIONS(3171), + [anon_sym_typedef] = ACTIONS(3171), + [anon_sym_virtual] = ACTIONS(3171), + [anon_sym_extern] = ACTIONS(3171), + [anon_sym___attribute__] = ACTIONS(3171), + [anon_sym___attribute] = ACTIONS(3171), + [anon_sym_using] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3173), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), + [anon_sym___declspec] = ACTIONS(3171), + [anon_sym___based] = ACTIONS(3171), + [anon_sym___cdecl] = ACTIONS(3171), + [anon_sym___clrcall] = ACTIONS(3171), + [anon_sym___stdcall] = ACTIONS(3171), + [anon_sym___fastcall] = ACTIONS(3171), + [anon_sym___thiscall] = ACTIONS(3171), + [anon_sym___vectorcall] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3173), + [anon_sym_signed] = ACTIONS(3171), + [anon_sym_unsigned] = ACTIONS(3171), + [anon_sym_long] = ACTIONS(3171), + [anon_sym_short] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_register] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym___inline] = ACTIONS(3171), + [anon_sym___inline__] = ACTIONS(3171), + [anon_sym___forceinline] = ACTIONS(3171), + [anon_sym_thread_local] = ACTIONS(3171), + [anon_sym___thread] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_constexpr] = ACTIONS(3171), + [anon_sym_volatile] = ACTIONS(3171), + [anon_sym_restrict] = ACTIONS(3171), + [anon_sym___restrict__] = ACTIONS(3171), + [anon_sym__Atomic] = ACTIONS(3171), + [anon_sym__Noreturn] = ACTIONS(3171), + [anon_sym_noreturn] = ACTIONS(3171), + [anon_sym__Nonnull] = ACTIONS(3171), + [anon_sym_mutable] = ACTIONS(3171), + [anon_sym_constinit] = ACTIONS(3171), + [anon_sym_consteval] = ACTIONS(3171), + [anon_sym_alignas] = ACTIONS(3171), + [anon_sym__Alignas] = ACTIONS(3171), + [sym_primitive_type] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), + [anon_sym_class] = ACTIONS(3171), + [anon_sym_struct] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_switch] = ACTIONS(3171), + [anon_sym_case] = ACTIONS(3171), + [anon_sym_default] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_goto] = ACTIONS(3171), + [anon_sym___try] = ACTIONS(3171), + [anon_sym___leave] = ACTIONS(3171), + [anon_sym_not] = ACTIONS(3171), + [anon_sym_compl] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3173), + [anon_sym_PLUS_PLUS] = ACTIONS(3173), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3171), + [anon_sym___alignof] = ACTIONS(3171), + [anon_sym__alignof] = ACTIONS(3171), + [anon_sym_alignof] = ACTIONS(3171), + [anon_sym__Alignof] = ACTIONS(3171), + [anon_sym_offsetof] = ACTIONS(3171), + [anon_sym__Generic] = ACTIONS(3171), + [anon_sym_typename] = ACTIONS(3171), + [anon_sym_asm] = ACTIONS(3171), + [anon_sym___asm__] = ACTIONS(3171), + [anon_sym___asm] = ACTIONS(3171), + [sym_number_literal] = ACTIONS(3173), + [anon_sym_L_SQUOTE] = ACTIONS(3173), + [anon_sym_u_SQUOTE] = ACTIONS(3173), + [anon_sym_U_SQUOTE] = ACTIONS(3173), + [anon_sym_u8_SQUOTE] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_L_DQUOTE] = ACTIONS(3173), + [anon_sym_u_DQUOTE] = ACTIONS(3173), + [anon_sym_U_DQUOTE] = ACTIONS(3173), + [anon_sym_u8_DQUOTE] = ACTIONS(3173), + [anon_sym_DQUOTE] = ACTIONS(3173), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [anon_sym_NULL] = ACTIONS(3171), + [anon_sym_nullptr] = ACTIONS(3171), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3171), + [anon_sym_decltype] = ACTIONS(3171), + [anon_sym_explicit] = ACTIONS(3171), + [anon_sym_export] = ACTIONS(3171), + [anon_sym_module] = ACTIONS(3171), + [anon_sym_import] = ACTIONS(3171), + [anon_sym_template] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_delete] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_namespace] = ACTIONS(3171), + [anon_sym_static_assert] = ACTIONS(3171), + [anon_sym_concept] = ACTIONS(3171), + [anon_sym_co_return] = ACTIONS(3171), + [anon_sym_co_yield] = ACTIONS(3171), + [anon_sym_catch] = ACTIONS(3175), + [anon_sym_R_DQUOTE] = ACTIONS(3173), + [anon_sym_LR_DQUOTE] = ACTIONS(3173), + [anon_sym_uR_DQUOTE] = ACTIONS(3173), + [anon_sym_UR_DQUOTE] = ACTIONS(3173), + [anon_sym_u8R_DQUOTE] = ACTIONS(3173), + [anon_sym_co_await] = ACTIONS(3171), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_requires] = ACTIONS(3171), + [anon_sym_CARET_CARET] = ACTIONS(3173), + [anon_sym_LBRACK_COLON] = ACTIONS(3173), + [sym_this] = ACTIONS(3171), + }, + [STATE(291)] = { + [sym_catch_clause] = STATE(290), + [aux_sym_constructor_try_statement_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(3178), + [aux_sym_preproc_include_token1] = ACTIONS(3178), + [aux_sym_preproc_def_token1] = ACTIONS(3178), + [aux_sym_preproc_if_token1] = ACTIONS(3178), + [aux_sym_preproc_if_token2] = ACTIONS(3178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3178), + [aux_sym_preproc_else_token1] = ACTIONS(3178), + [aux_sym_preproc_elif_token1] = ACTIONS(3178), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3178), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3178), + [sym_preproc_directive] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3180), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_TILDE] = ACTIONS(3180), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_AMP_AMP] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym___extension__] = ACTIONS(3178), + [anon_sym_typedef] = ACTIONS(3178), + [anon_sym_virtual] = ACTIONS(3178), + [anon_sym_extern] = ACTIONS(3178), + [anon_sym___attribute__] = ACTIONS(3178), + [anon_sym___attribute] = ACTIONS(3178), + [anon_sym_using] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3180), + [anon_sym___declspec] = ACTIONS(3178), + [anon_sym___based] = ACTIONS(3178), + [anon_sym___cdecl] = ACTIONS(3178), + [anon_sym___clrcall] = ACTIONS(3178), + [anon_sym___stdcall] = ACTIONS(3178), + [anon_sym___fastcall] = ACTIONS(3178), + [anon_sym___thiscall] = ACTIONS(3178), + [anon_sym___vectorcall] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3180), + [anon_sym_signed] = ACTIONS(3178), + [anon_sym_unsigned] = ACTIONS(3178), + [anon_sym_long] = ACTIONS(3178), + [anon_sym_short] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_static] = ACTIONS(3178), + [anon_sym_register] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym___inline] = ACTIONS(3178), + [anon_sym___inline__] = ACTIONS(3178), + [anon_sym___forceinline] = ACTIONS(3178), + [anon_sym_thread_local] = ACTIONS(3178), + [anon_sym___thread] = ACTIONS(3178), + [anon_sym_const] = ACTIONS(3178), + [anon_sym_constexpr] = ACTIONS(3178), + [anon_sym_volatile] = ACTIONS(3178), + [anon_sym_restrict] = ACTIONS(3178), + [anon_sym___restrict__] = ACTIONS(3178), + [anon_sym__Atomic] = ACTIONS(3178), + [anon_sym__Noreturn] = ACTIONS(3178), + [anon_sym_noreturn] = ACTIONS(3178), + [anon_sym__Nonnull] = ACTIONS(3178), + [anon_sym_mutable] = ACTIONS(3178), + [anon_sym_constinit] = ACTIONS(3178), + [anon_sym_consteval] = ACTIONS(3178), + [anon_sym_alignas] = ACTIONS(3178), + [anon_sym__Alignas] = ACTIONS(3178), + [sym_primitive_type] = ACTIONS(3178), + [anon_sym_enum] = ACTIONS(3178), + [anon_sym_class] = ACTIONS(3178), + [anon_sym_struct] = ACTIONS(3178), + [anon_sym_union] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_switch] = ACTIONS(3178), + [anon_sym_case] = ACTIONS(3178), + [anon_sym_default] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_break] = ACTIONS(3178), + [anon_sym_continue] = ACTIONS(3178), + [anon_sym_goto] = ACTIONS(3178), + [anon_sym___try] = ACTIONS(3178), + [anon_sym___leave] = ACTIONS(3178), + [anon_sym_not] = ACTIONS(3178), + [anon_sym_compl] = ACTIONS(3178), + [anon_sym_DASH_DASH] = ACTIONS(3180), + [anon_sym_PLUS_PLUS] = ACTIONS(3180), + [anon_sym_sizeof] = ACTIONS(3178), + [anon_sym___alignof__] = ACTIONS(3178), + [anon_sym___alignof] = ACTIONS(3178), + [anon_sym__alignof] = ACTIONS(3178), + [anon_sym_alignof] = ACTIONS(3178), + [anon_sym__Alignof] = ACTIONS(3178), + [anon_sym_offsetof] = ACTIONS(3178), + [anon_sym__Generic] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3178), + [anon_sym_asm] = ACTIONS(3178), + [anon_sym___asm__] = ACTIONS(3178), + [anon_sym___asm] = ACTIONS(3178), + [sym_number_literal] = ACTIONS(3180), + [anon_sym_L_SQUOTE] = ACTIONS(3180), + [anon_sym_u_SQUOTE] = ACTIONS(3180), + [anon_sym_U_SQUOTE] = ACTIONS(3180), + [anon_sym_u8_SQUOTE] = ACTIONS(3180), + [anon_sym_SQUOTE] = ACTIONS(3180), + [anon_sym_L_DQUOTE] = ACTIONS(3180), + [anon_sym_u_DQUOTE] = ACTIONS(3180), + [anon_sym_U_DQUOTE] = ACTIONS(3180), + [anon_sym_u8_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE] = ACTIONS(3180), + [sym_true] = ACTIONS(3178), + [sym_false] = ACTIONS(3178), + [anon_sym_NULL] = ACTIONS(3178), + [anon_sym_nullptr] = ACTIONS(3178), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3178), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_explicit] = ACTIONS(3178), + [anon_sym_export] = ACTIONS(3178), + [anon_sym_module] = ACTIONS(3178), + [anon_sym_import] = ACTIONS(3178), + [anon_sym_template] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_delete] = ACTIONS(3178), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_namespace] = ACTIONS(3178), + [anon_sym_static_assert] = ACTIONS(3178), + [anon_sym_concept] = ACTIONS(3178), + [anon_sym_co_return] = ACTIONS(3178), + [anon_sym_co_yield] = ACTIONS(3178), + [anon_sym_catch] = ACTIONS(3169), + [anon_sym_R_DQUOTE] = ACTIONS(3180), + [anon_sym_LR_DQUOTE] = ACTIONS(3180), + [anon_sym_uR_DQUOTE] = ACTIONS(3180), + [anon_sym_UR_DQUOTE] = ACTIONS(3180), + [anon_sym_u8R_DQUOTE] = ACTIONS(3180), + [anon_sym_co_await] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_requires] = ACTIONS(3178), + [anon_sym_CARET_CARET] = ACTIONS(3180), + [anon_sym_LBRACK_COLON] = ACTIONS(3180), + [sym_this] = ACTIONS(3178), + }, + [STATE(292)] = { + [sym_catch_clause] = STATE(290), + [aux_sym_constructor_try_statement_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(3182), + [aux_sym_preproc_include_token1] = ACTIONS(3182), + [aux_sym_preproc_def_token1] = ACTIONS(3182), + [aux_sym_preproc_if_token1] = ACTIONS(3182), + [aux_sym_preproc_if_token2] = ACTIONS(3182), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3182), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3182), + [aux_sym_preproc_else_token1] = ACTIONS(3182), + [aux_sym_preproc_elif_token1] = ACTIONS(3182), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3182), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3182), + [sym_preproc_directive] = ACTIONS(3182), + [anon_sym_LPAREN2] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3184), + [anon_sym_AMP_AMP] = ACTIONS(3184), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym___extension__] = ACTIONS(3182), + [anon_sym_typedef] = ACTIONS(3182), + [anon_sym_virtual] = ACTIONS(3182), + [anon_sym_extern] = ACTIONS(3182), + [anon_sym___attribute__] = ACTIONS(3182), + [anon_sym___attribute] = ACTIONS(3182), + [anon_sym_using] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3184), + [anon_sym___declspec] = ACTIONS(3182), + [anon_sym___based] = ACTIONS(3182), + [anon_sym___cdecl] = ACTIONS(3182), + [anon_sym___clrcall] = ACTIONS(3182), + [anon_sym___stdcall] = ACTIONS(3182), + [anon_sym___fastcall] = ACTIONS(3182), + [anon_sym___thiscall] = ACTIONS(3182), + [anon_sym___vectorcall] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_signed] = ACTIONS(3182), + [anon_sym_unsigned] = ACTIONS(3182), + [anon_sym_long] = ACTIONS(3182), + [anon_sym_short] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_register] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym___inline] = ACTIONS(3182), + [anon_sym___inline__] = ACTIONS(3182), + [anon_sym___forceinline] = ACTIONS(3182), + [anon_sym_thread_local] = ACTIONS(3182), + [anon_sym___thread] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_constexpr] = ACTIONS(3182), + [anon_sym_volatile] = ACTIONS(3182), + [anon_sym_restrict] = ACTIONS(3182), + [anon_sym___restrict__] = ACTIONS(3182), + [anon_sym__Atomic] = ACTIONS(3182), + [anon_sym__Noreturn] = ACTIONS(3182), + [anon_sym_noreturn] = ACTIONS(3182), + [anon_sym__Nonnull] = ACTIONS(3182), + [anon_sym_mutable] = ACTIONS(3182), + [anon_sym_constinit] = ACTIONS(3182), + [anon_sym_consteval] = ACTIONS(3182), + [anon_sym_alignas] = ACTIONS(3182), + [anon_sym__Alignas] = ACTIONS(3182), + [sym_primitive_type] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), + [anon_sym_class] = ACTIONS(3182), + [anon_sym_struct] = ACTIONS(3182), + [anon_sym_union] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_switch] = ACTIONS(3182), + [anon_sym_case] = ACTIONS(3182), + [anon_sym_default] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_do] = ACTIONS(3182), + [anon_sym_for] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_goto] = ACTIONS(3182), + [anon_sym___try] = ACTIONS(3182), + [anon_sym___leave] = ACTIONS(3182), + [anon_sym_not] = ACTIONS(3182), + [anon_sym_compl] = ACTIONS(3182), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_sizeof] = ACTIONS(3182), + [anon_sym___alignof__] = ACTIONS(3182), + [anon_sym___alignof] = ACTIONS(3182), + [anon_sym__alignof] = ACTIONS(3182), + [anon_sym_alignof] = ACTIONS(3182), + [anon_sym__Alignof] = ACTIONS(3182), + [anon_sym_offsetof] = ACTIONS(3182), + [anon_sym__Generic] = ACTIONS(3182), + [anon_sym_typename] = ACTIONS(3182), + [anon_sym_asm] = ACTIONS(3182), + [anon_sym___asm__] = ACTIONS(3182), + [anon_sym___asm] = ACTIONS(3182), + [sym_number_literal] = ACTIONS(3184), + [anon_sym_L_SQUOTE] = ACTIONS(3184), + [anon_sym_u_SQUOTE] = ACTIONS(3184), + [anon_sym_U_SQUOTE] = ACTIONS(3184), + [anon_sym_u8_SQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [anon_sym_L_DQUOTE] = ACTIONS(3184), + [anon_sym_u_DQUOTE] = ACTIONS(3184), + [anon_sym_U_DQUOTE] = ACTIONS(3184), + [anon_sym_u8_DQUOTE] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3182), + [anon_sym_decltype] = ACTIONS(3182), + [anon_sym_explicit] = ACTIONS(3182), + [anon_sym_export] = ACTIONS(3182), + [anon_sym_module] = ACTIONS(3182), + [anon_sym_import] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_delete] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_namespace] = ACTIONS(3182), + [anon_sym_static_assert] = ACTIONS(3182), + [anon_sym_concept] = ACTIONS(3182), + [anon_sym_co_return] = ACTIONS(3182), + [anon_sym_co_yield] = ACTIONS(3182), + [anon_sym_catch] = ACTIONS(3169), + [anon_sym_R_DQUOTE] = ACTIONS(3184), + [anon_sym_LR_DQUOTE] = ACTIONS(3184), + [anon_sym_uR_DQUOTE] = ACTIONS(3184), + [anon_sym_UR_DQUOTE] = ACTIONS(3184), + [anon_sym_u8R_DQUOTE] = ACTIONS(3184), + [anon_sym_co_await] = ACTIONS(3182), + [anon_sym_new] = ACTIONS(3182), + [anon_sym_requires] = ACTIONS(3182), + [anon_sym_CARET_CARET] = ACTIONS(3184), + [anon_sym_LBRACK_COLON] = ACTIONS(3184), + [sym_this] = ACTIONS(3182), + }, + [STATE(293)] = { + [sym_type_qualifier] = STATE(5087), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7508), + [sym_sized_type_specifier] = STATE(4430), + [sym_enum_specifier] = STATE(4430), + [sym_struct_specifier] = STATE(4430), + [sym_union_specifier] = STATE(4430), + [sym_expression] = STATE(6659), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_type_descriptor] = STATE(9443), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_placeholder_type_specifier] = STATE(4430), + [sym_decltype_auto] = STATE(4426), + [sym_decltype] = STATE(4373), + [sym_class_specifier] = STATE(4430), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4430), + [sym_template_type] = STATE(4627), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_type_parameter_pack_expansion] = STATE(9948), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7921), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(4714), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(4988), + [sym__splice_specialization_specifier] = STATE(4305), + [sym_splice_type_specifier] = STATE(4673), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [aux_sym__type_definition_type_repeat1] = STATE(5087), + [aux_sym_sized_type_specifier_repeat1] = STATE(6642), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_signed] = ACTIONS(3200), + [anon_sym_unsigned] = ACTIONS(3200), + [anon_sym_long] = ACTIONS(3200), + [anon_sym_short] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -103072,137 +101419,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3339), - [anon_sym_enum] = ACTIONS(3341), - [anon_sym_class] = ACTIONS(3343), - [anon_sym_struct] = ACTIONS(3345), - [anon_sym_union] = ACTIONS(3347), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3353), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3361), - [anon_sym_decltype] = ACTIONS(3363), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_GT2] = ACTIONS(3242), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), }, - [STATE(341)] = { - [sym_type_qualifier] = STATE(5059), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3857), - [sym_sized_type_specifier] = STATE(4042), - [sym_enum_specifier] = STATE(4042), - [sym_struct_specifier] = STATE(4042), - [sym_union_specifier] = STATE(4042), - [sym_expression] = STATE(6684), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_type_descriptor] = STATE(7259), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_placeholder_type_specifier] = STATE(4042), - [sym_decltype_auto] = STATE(4041), - [sym_decltype] = STATE(3887), - [sym_class_specifier] = STATE(4042), - [sym__class_name] = STATE(10093), - [sym_dependent_type] = STATE(4042), - [sym_template_type] = STATE(4466), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7810), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(4575), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(4868), - [sym__splice_specialization_specifier] = STATE(3640), - [sym_splice_type_specifier] = STATE(4597), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym__type_definition_type_repeat1] = STATE(5059), - [aux_sym_sized_type_specifier_repeat1] = STATE(3403), - [sym_identifier] = ACTIONS(3379), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(3389), - [anon_sym_COLON_COLON] = ACTIONS(3391), - [anon_sym_signed] = ACTIONS(3393), - [anon_sym_unsigned] = ACTIONS(3393), - [anon_sym_long] = ACTIONS(3393), - [anon_sym_short] = ACTIONS(3393), - [anon_sym_LBRACK] = ACTIONS(1310), + [STATE(294)] = { + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_unaligned_ptr_modifier] = STATE(6574), + [sym_ms_pointer_modifier] = STATE(4152), + [sym__declarator] = STATE(8826), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8555), + [sym_array_declarator] = STATE(8555), + [sym_type_qualifier] = STATE(5390), + [sym_alignas_qualifier] = STATE(7511), + [sym_expression] = STATE(3772), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5286), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7947), + [sym_qualified_identifier] = STATE(5288), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(3844), + [aux_sym__type_definition_type_repeat1] = STATE(5390), + [aux_sym_pointer_declarator_repeat1] = STATE(4152), + [sym_identifier] = ACTIONS(3258), + [anon_sym_LPAREN2] = ACTIONS(3260), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym___extension__] = ACTIONS(3264), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3266), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3266), + [sym_ms_signed_ptr_modifier] = ACTIONS(3266), + [anon_sym__unaligned] = ACTIONS(3268), + [anon_sym___unaligned] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(61), + [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__Nonnull] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(295)] = { + [sym_type_qualifier] = STATE(5087), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7508), + [sym_sized_type_specifier] = STATE(4430), + [sym_enum_specifier] = STATE(4430), + [sym_struct_specifier] = STATE(4430), + [sym_union_specifier] = STATE(4430), + [sym_expression] = STATE(6654), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_type_descriptor] = STATE(9577), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_placeholder_type_specifier] = STATE(4430), + [sym_decltype_auto] = STATE(4426), + [sym_decltype] = STATE(4373), + [sym_class_specifier] = STATE(4430), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4430), + [sym_template_type] = STATE(4627), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_type_parameter_pack_expansion] = STATE(10139), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7921), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(4714), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(4988), + [sym__splice_specialization_specifier] = STATE(4305), + [sym_splice_type_specifier] = STATE(4673), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [aux_sym__type_definition_type_repeat1] = STATE(5087), + [aux_sym_sized_type_specifier_repeat1] = STATE(6642), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_signed] = ACTIONS(3200), + [anon_sym_unsigned] = ACTIONS(3200), + [anon_sym_long] = ACTIONS(3200), + [anon_sym_short] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -103217,137 +101713,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3397), - [anon_sym_class] = ACTIONS(3399), - [anon_sym_struct] = ACTIONS(3401), - [anon_sym_union] = ACTIONS(3403), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(3415), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3361), - [anon_sym_decltype] = ACTIONS(3363), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_GT2] = ACTIONS(3276), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), }, - [STATE(342)] = { - [sym_type_qualifier] = STATE(5019), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(2518), - [sym_sized_type_specifier] = STATE(3460), - [sym_enum_specifier] = STATE(3460), - [sym_struct_specifier] = STATE(3460), - [sym_union_specifier] = STATE(3460), - [sym_expression] = STATE(5623), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_type_descriptor] = STATE(5919), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_placeholder_type_specifier] = STATE(3460), - [sym_decltype_auto] = STATE(3453), - [sym_decltype] = STATE(3262), - [sym_class_specifier] = STATE(3460), - [sym__class_name] = STATE(10294), - [sym_dependent_type] = STATE(3460), - [sym_template_type] = STATE(3264), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7865), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(3461), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(3538), - [sym__splice_specialization_specifier] = STATE(2837), - [sym_splice_type_specifier] = STATE(3391), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [aux_sym__type_definition_type_repeat1] = STATE(5019), - [aux_sym_sized_type_specifier_repeat1] = STATE(2240), - [sym_identifier] = ACTIONS(3445), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(3447), - [anon_sym_COLON_COLON] = ACTIONS(3449), - [anon_sym_signed] = ACTIONS(3451), - [anon_sym_unsigned] = ACTIONS(3451), - [anon_sym_long] = ACTIONS(3451), - [anon_sym_short] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(1310), + [STATE(296)] = { + [sym_type_qualifier] = STATE(5087), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7508), + [sym_sized_type_specifier] = STATE(4430), + [sym_enum_specifier] = STATE(4430), + [sym_struct_specifier] = STATE(4430), + [sym_union_specifier] = STATE(4430), + [sym_expression] = STATE(6669), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_type_descriptor] = STATE(9627), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_placeholder_type_specifier] = STATE(4430), + [sym_decltype_auto] = STATE(4426), + [sym_decltype] = STATE(4373), + [sym_class_specifier] = STATE(4430), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4430), + [sym_template_type] = STATE(4627), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_type_parameter_pack_expansion] = STATE(9720), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7921), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(4714), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(4988), + [sym__splice_specialization_specifier] = STATE(4305), + [sym_splice_type_specifier] = STATE(4673), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [aux_sym__type_definition_type_repeat1] = STATE(5087), + [aux_sym_sized_type_specifier_repeat1] = STATE(6642), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_signed] = ACTIONS(3200), + [anon_sym_unsigned] = ACTIONS(3200), + [anon_sym_long] = ACTIONS(3200), + [anon_sym_short] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -103362,282 +101860,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3453), - [anon_sym_enum] = ACTIONS(3455), - [anon_sym_class] = ACTIONS(3457), - [anon_sym_struct] = ACTIONS(3459), - [anon_sym_union] = ACTIONS(3461), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(3463), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3465), - [anon_sym_decltype] = ACTIONS(3467), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_GT2] = ACTIONS(3278), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), }, - [STATE(343)] = { - [sym_expression] = STATE(5679), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(3469), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(3472), - [anon_sym_virtual] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), - [anon_sym___declspec] = ACTIONS(2768), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_register] = ACTIONS(2768), - [anon_sym_inline] = ACTIONS(2768), - [anon_sym___inline] = ACTIONS(2768), - [anon_sym___inline__] = ACTIONS(2768), - [anon_sym___forceinline] = ACTIONS(2768), - [anon_sym_thread_local] = ACTIONS(2768), - [anon_sym___thread] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(3478), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(3481), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(3484), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(3487), - [sym_this] = ACTIONS(2004), + [STATE(297)] = { + [sym_type_qualifier] = STATE(5087), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7508), + [sym_sized_type_specifier] = STATE(4430), + [sym_enum_specifier] = STATE(4430), + [sym_struct_specifier] = STATE(4430), + [sym_union_specifier] = STATE(4430), + [sym_expression] = STATE(6666), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_type_descriptor] = STATE(9468), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_placeholder_type_specifier] = STATE(4430), + [sym_decltype_auto] = STATE(4426), + [sym_decltype] = STATE(4373), + [sym_class_specifier] = STATE(4430), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4430), + [sym_template_type] = STATE(4627), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_type_parameter_pack_expansion] = STATE(9687), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7921), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(4714), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(4988), + [sym__splice_specialization_specifier] = STATE(4305), + [sym_splice_type_specifier] = STATE(4673), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [aux_sym__type_definition_type_repeat1] = STATE(5087), + [aux_sym_sized_type_specifier_repeat1] = STATE(6642), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_signed] = ACTIONS(3200), + [anon_sym_unsigned] = ACTIONS(3200), + [anon_sym_long] = ACTIONS(3200), + [anon_sym_short] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_GT2] = ACTIONS(3280), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), }, - [STATE(344)] = { - [sym_type_qualifier] = STATE(5048), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(2160), - [sym_sized_type_specifier] = STATE(2089), - [sym_enum_specifier] = STATE(2089), - [sym_struct_specifier] = STATE(2089), - [sym_union_specifier] = STATE(2089), - [sym_expression] = STATE(5394), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_type_descriptor] = STATE(3827), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_placeholder_type_specifier] = STATE(2089), - [sym_decltype_auto] = STATE(2070), - [sym_decltype] = STATE(2063), - [sym_class_specifier] = STATE(2089), - [sym__class_name] = STATE(10270), - [sym_dependent_type] = STATE(2089), - [sym_template_type] = STATE(2066), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7802), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(2126), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(2155), - [sym__splice_specialization_specifier] = STATE(2026), - [sym_splice_type_specifier] = STATE(2127), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [aux_sym__type_definition_type_repeat1] = STATE(5048), - [aux_sym_sized_type_specifier_repeat1] = STATE(1965), - [sym_identifier] = ACTIONS(3159), - [anon_sym_LPAREN2] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(3494), - [anon_sym_COLON_COLON] = ACTIONS(3496), - [anon_sym_signed] = ACTIONS(3169), - [anon_sym_unsigned] = ACTIONS(3169), - [anon_sym_long] = ACTIONS(3169), - [anon_sym_short] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(1310), + [STATE(298)] = { + [sym_type_qualifier] = STATE(5087), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7508), + [sym_sized_type_specifier] = STATE(4430), + [sym_enum_specifier] = STATE(4430), + [sym_struct_specifier] = STATE(4430), + [sym_union_specifier] = STATE(4430), + [sym_expression] = STATE(6702), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_type_descriptor] = STATE(9655), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_placeholder_type_specifier] = STATE(4430), + [sym_decltype_auto] = STATE(4426), + [sym_decltype] = STATE(4373), + [sym_class_specifier] = STATE(4430), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4430), + [sym_template_type] = STATE(4627), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_type_parameter_pack_expansion] = STATE(9674), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7921), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(4714), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(4988), + [sym__splice_specialization_specifier] = STATE(4305), + [sym_splice_type_specifier] = STATE(4673), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [aux_sym__type_definition_type_repeat1] = STATE(5087), + [aux_sym_sized_type_specifier_repeat1] = STATE(6642), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_signed] = ACTIONS(3200), + [anon_sym_unsigned] = ACTIONS(3200), + [anon_sym_long] = ACTIONS(3200), + [anon_sym_short] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -103652,137 +102154,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3173), - [anon_sym_class] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_union] = ACTIONS(3179), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(3183), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3185), - [anon_sym_decltype] = ACTIONS(3187), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_GT2] = ACTIONS(3282), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), }, - [STATE(345)] = { - [sym_type_qualifier] = STATE(5136), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(2362), - [sym_sized_type_specifier] = STATE(2983), - [sym_enum_specifier] = STATE(2983), - [sym_struct_specifier] = STATE(2983), - [sym_union_specifier] = STATE(2983), - [sym_expression] = STATE(5175), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_type_descriptor] = STATE(5652), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_placeholder_type_specifier] = STATE(2983), - [sym_decltype_auto] = STATE(2982), - [sym_decltype] = STATE(2856), - [sym_class_specifier] = STATE(2983), - [sym__class_name] = STATE(10357), - [sym_dependent_type] = STATE(2983), - [sym_template_type] = STATE(2863), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7832), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(2987), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(3150), - [sym__splice_specialization_specifier] = STATE(2597), - [sym_splice_type_specifier] = STATE(3056), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [aux_sym__type_definition_type_repeat1] = STATE(5136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2162), - [sym_identifier] = ACTIONS(3500), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(3504), - [anon_sym_COLON_COLON] = ACTIONS(3506), - [anon_sym_signed] = ACTIONS(3508), - [anon_sym_unsigned] = ACTIONS(3508), - [anon_sym_long] = ACTIONS(3508), - [anon_sym_short] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(1310), + [STATE(299)] = { + [sym_type_qualifier] = STATE(5087), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7508), + [sym_sized_type_specifier] = STATE(4430), + [sym_enum_specifier] = STATE(4430), + [sym_struct_specifier] = STATE(4430), + [sym_union_specifier] = STATE(4430), + [sym_expression] = STATE(6629), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_type_descriptor] = STATE(9451), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_placeholder_type_specifier] = STATE(4430), + [sym_decltype_auto] = STATE(4426), + [sym_decltype] = STATE(4373), + [sym_class_specifier] = STATE(4430), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4430), + [sym_template_type] = STATE(4627), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_type_parameter_pack_expansion] = STATE(9973), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7921), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(4714), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(4988), + [sym__splice_specialization_specifier] = STATE(4305), + [sym_splice_type_specifier] = STATE(4673), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [aux_sym__type_definition_type_repeat1] = STATE(5087), + [aux_sym_sized_type_specifier_repeat1] = STATE(6642), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_signed] = ACTIONS(3200), + [anon_sym_unsigned] = ACTIONS(3200), + [anon_sym_long] = ACTIONS(3200), + [anon_sym_short] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -103797,137 +102301,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3510), - [anon_sym_enum] = ACTIONS(3512), - [anon_sym_class] = ACTIONS(3514), - [anon_sym_struct] = ACTIONS(3516), - [anon_sym_union] = ACTIONS(3518), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(3522), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3524), - [anon_sym_decltype] = ACTIONS(3526), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_GT2] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), }, - [STATE(346)] = { - [sym_type_qualifier] = STATE(5048), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(2160), - [sym_sized_type_specifier] = STATE(2089), - [sym_enum_specifier] = STATE(2089), - [sym_struct_specifier] = STATE(2089), - [sym_union_specifier] = STATE(2089), - [sym_expression] = STATE(4530), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_type_descriptor] = STATE(3827), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_placeholder_type_specifier] = STATE(2089), - [sym_decltype_auto] = STATE(2070), - [sym_decltype] = STATE(2063), - [sym_class_specifier] = STATE(2089), - [sym__class_name] = STATE(10270), - [sym_dependent_type] = STATE(2089), - [sym_template_type] = STATE(2066), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7802), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(2126), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(2155), - [sym__splice_specialization_specifier] = STATE(2026), - [sym_splice_type_specifier] = STATE(2127), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [aux_sym__type_definition_type_repeat1] = STATE(5048), - [aux_sym_sized_type_specifier_repeat1] = STATE(1965), - [sym_identifier] = ACTIONS(3159), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3530), - [anon_sym_COLON_COLON] = ACTIONS(3532), - [anon_sym_signed] = ACTIONS(3169), - [anon_sym_unsigned] = ACTIONS(3169), - [anon_sym_long] = ACTIONS(3169), - [anon_sym_short] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(1310), + [STATE(300)] = { + [sym_type_qualifier] = STATE(5087), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7508), + [sym_sized_type_specifier] = STATE(4430), + [sym_enum_specifier] = STATE(4430), + [sym_struct_specifier] = STATE(4430), + [sym_union_specifier] = STATE(4430), + [sym_expression] = STATE(6678), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_type_descriptor] = STATE(9552), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_placeholder_type_specifier] = STATE(4430), + [sym_decltype_auto] = STATE(4426), + [sym_decltype] = STATE(4373), + [sym_class_specifier] = STATE(4430), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4430), + [sym_template_type] = STATE(4627), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_type_parameter_pack_expansion] = STATE(9787), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7921), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(4714), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(4988), + [sym__splice_specialization_specifier] = STATE(4305), + [sym_splice_type_specifier] = STATE(4673), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [aux_sym__type_definition_type_repeat1] = STATE(5087), + [aux_sym_sized_type_specifier_repeat1] = STATE(6642), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_signed] = ACTIONS(3200), + [anon_sym_unsigned] = ACTIONS(3200), + [anon_sym_long] = ACTIONS(3200), + [anon_sym_short] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -103942,282 +102448,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3173), - [anon_sym_class] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_union] = ACTIONS(3179), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(3183), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3185), - [anon_sym_decltype] = ACTIONS(3187), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_GT2] = ACTIONS(3286), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), }, - [STATE(347)] = { - [sym_catch_clause] = STATE(302), - [aux_sym_constructor_try_statement_repeat1] = STATE(302), - [sym_identifier] = ACTIONS(3534), - [aux_sym_preproc_include_token1] = ACTIONS(3534), - [aux_sym_preproc_def_token1] = ACTIONS(3534), - [aux_sym_preproc_if_token1] = ACTIONS(3534), - [aux_sym_preproc_if_token2] = ACTIONS(3534), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3534), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3534), - [aux_sym_preproc_else_token1] = ACTIONS(3534), - [aux_sym_preproc_elif_token1] = ACTIONS(3534), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3534), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3534), - [sym_preproc_directive] = ACTIONS(3534), - [anon_sym_LPAREN2] = ACTIONS(3536), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_TILDE] = ACTIONS(3536), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_STAR] = ACTIONS(3536), - [anon_sym_AMP_AMP] = ACTIONS(3536), - [anon_sym_AMP] = ACTIONS(3534), - [anon_sym_SEMI] = ACTIONS(3536), - [anon_sym___extension__] = ACTIONS(3534), - [anon_sym_typedef] = ACTIONS(3534), - [anon_sym_virtual] = ACTIONS(3534), - [anon_sym_extern] = ACTIONS(3534), - [anon_sym___attribute__] = ACTIONS(3534), - [anon_sym___attribute] = ACTIONS(3534), - [anon_sym_using] = ACTIONS(3534), - [anon_sym_COLON_COLON] = ACTIONS(3536), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3536), - [anon_sym___declspec] = ACTIONS(3534), - [anon_sym___based] = ACTIONS(3534), - [anon_sym___cdecl] = ACTIONS(3534), - [anon_sym___clrcall] = ACTIONS(3534), - [anon_sym___stdcall] = ACTIONS(3534), - [anon_sym___fastcall] = ACTIONS(3534), - [anon_sym___thiscall] = ACTIONS(3534), - [anon_sym___vectorcall] = ACTIONS(3534), - [anon_sym_LBRACE] = ACTIONS(3536), - [anon_sym_signed] = ACTIONS(3534), - [anon_sym_unsigned] = ACTIONS(3534), - [anon_sym_long] = ACTIONS(3534), - [anon_sym_short] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_static] = ACTIONS(3534), - [anon_sym_register] = ACTIONS(3534), - [anon_sym_inline] = ACTIONS(3534), - [anon_sym___inline] = ACTIONS(3534), - [anon_sym___inline__] = ACTIONS(3534), - [anon_sym___forceinline] = ACTIONS(3534), - [anon_sym_thread_local] = ACTIONS(3534), - [anon_sym___thread] = ACTIONS(3534), - [anon_sym_const] = ACTIONS(3534), - [anon_sym_constexpr] = ACTIONS(3534), - [anon_sym_volatile] = ACTIONS(3534), - [anon_sym_restrict] = ACTIONS(3534), - [anon_sym___restrict__] = ACTIONS(3534), - [anon_sym__Atomic] = ACTIONS(3534), - [anon_sym__Noreturn] = ACTIONS(3534), - [anon_sym_noreturn] = ACTIONS(3534), - [anon_sym__Nonnull] = ACTIONS(3534), - [anon_sym_mutable] = ACTIONS(3534), - [anon_sym_constinit] = ACTIONS(3534), - [anon_sym_consteval] = ACTIONS(3534), - [anon_sym_alignas] = ACTIONS(3534), - [anon_sym__Alignas] = ACTIONS(3534), - [sym_primitive_type] = ACTIONS(3534), - [anon_sym_enum] = ACTIONS(3534), - [anon_sym_class] = ACTIONS(3534), - [anon_sym_struct] = ACTIONS(3534), - [anon_sym_union] = ACTIONS(3534), - [anon_sym_if] = ACTIONS(3534), - [anon_sym_switch] = ACTIONS(3534), - [anon_sym_case] = ACTIONS(3534), - [anon_sym_default] = ACTIONS(3534), - [anon_sym_while] = ACTIONS(3534), - [anon_sym_do] = ACTIONS(3534), - [anon_sym_for] = ACTIONS(3534), - [anon_sym_return] = ACTIONS(3534), - [anon_sym_break] = ACTIONS(3534), - [anon_sym_continue] = ACTIONS(3534), - [anon_sym_goto] = ACTIONS(3534), - [anon_sym___try] = ACTIONS(3534), - [anon_sym___leave] = ACTIONS(3534), - [anon_sym_not] = ACTIONS(3534), - [anon_sym_compl] = ACTIONS(3534), - [anon_sym_DASH_DASH] = ACTIONS(3536), - [anon_sym_PLUS_PLUS] = ACTIONS(3536), - [anon_sym_sizeof] = ACTIONS(3534), - [anon_sym___alignof__] = ACTIONS(3534), - [anon_sym___alignof] = ACTIONS(3534), - [anon_sym__alignof] = ACTIONS(3534), - [anon_sym_alignof] = ACTIONS(3534), - [anon_sym__Alignof] = ACTIONS(3534), - [anon_sym_offsetof] = ACTIONS(3534), - [anon_sym__Generic] = ACTIONS(3534), - [anon_sym_typename] = ACTIONS(3534), - [anon_sym_asm] = ACTIONS(3534), - [anon_sym___asm__] = ACTIONS(3534), - [anon_sym___asm] = ACTIONS(3534), - [sym_number_literal] = ACTIONS(3536), - [anon_sym_L_SQUOTE] = ACTIONS(3536), - [anon_sym_u_SQUOTE] = ACTIONS(3536), - [anon_sym_U_SQUOTE] = ACTIONS(3536), - [anon_sym_u8_SQUOTE] = ACTIONS(3536), - [anon_sym_SQUOTE] = ACTIONS(3536), - [anon_sym_L_DQUOTE] = ACTIONS(3536), - [anon_sym_u_DQUOTE] = ACTIONS(3536), - [anon_sym_U_DQUOTE] = ACTIONS(3536), - [anon_sym_u8_DQUOTE] = ACTIONS(3536), - [anon_sym_DQUOTE] = ACTIONS(3536), - [sym_true] = ACTIONS(3534), - [sym_false] = ACTIONS(3534), - [anon_sym_NULL] = ACTIONS(3534), - [anon_sym_nullptr] = ACTIONS(3534), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3534), - [anon_sym_decltype] = ACTIONS(3534), - [anon_sym_explicit] = ACTIONS(3534), - [anon_sym_template] = ACTIONS(3534), - [anon_sym_operator] = ACTIONS(3534), - [anon_sym_try] = ACTIONS(3534), - [anon_sym_delete] = ACTIONS(3534), - [anon_sym_throw] = ACTIONS(3534), - [anon_sym_namespace] = ACTIONS(3534), - [anon_sym_static_assert] = ACTIONS(3534), - [anon_sym_concept] = ACTIONS(3534), - [anon_sym_co_return] = ACTIONS(3534), - [anon_sym_co_yield] = ACTIONS(3534), - [anon_sym_catch] = ACTIONS(3152), - [anon_sym_R_DQUOTE] = ACTIONS(3536), - [anon_sym_LR_DQUOTE] = ACTIONS(3536), - [anon_sym_uR_DQUOTE] = ACTIONS(3536), - [anon_sym_UR_DQUOTE] = ACTIONS(3536), - [anon_sym_u8R_DQUOTE] = ACTIONS(3536), - [anon_sym_co_await] = ACTIONS(3534), - [anon_sym_new] = ACTIONS(3534), - [anon_sym_requires] = ACTIONS(3534), - [anon_sym_CARET_CARET] = ACTIONS(3536), - [anon_sym_LBRACK_COLON] = ACTIONS(3536), - [sym_this] = ACTIONS(3534), + [STATE(301)] = { + [sym_type_qualifier] = STATE(5087), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7508), + [sym_sized_type_specifier] = STATE(4430), + [sym_enum_specifier] = STATE(4430), + [sym_struct_specifier] = STATE(4430), + [sym_union_specifier] = STATE(4430), + [sym_expression] = STATE(6592), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_type_descriptor] = STATE(9649), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_placeholder_type_specifier] = STATE(4430), + [sym_decltype_auto] = STATE(4426), + [sym_decltype] = STATE(4373), + [sym_class_specifier] = STATE(4430), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4430), + [sym_template_type] = STATE(4627), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_type_parameter_pack_expansion] = STATE(10064), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7921), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(4714), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(4988), + [sym__splice_specialization_specifier] = STATE(4305), + [sym_splice_type_specifier] = STATE(4673), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [aux_sym__type_definition_type_repeat1] = STATE(5087), + [aux_sym_sized_type_specifier_repeat1] = STATE(6642), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_signed] = ACTIONS(3200), + [anon_sym_unsigned] = ACTIONS(3200), + [anon_sym_long] = ACTIONS(3200), + [anon_sym_short] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_GT2] = ACTIONS(3288), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), }, - [STATE(348)] = { - [sym_type_qualifier] = STATE(4957), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3921), - [sym_sized_type_specifier] = STATE(4402), - [sym_enum_specifier] = STATE(4402), - [sym_struct_specifier] = STATE(4402), - [sym_union_specifier] = STATE(4402), - [sym_expression] = STATE(6722), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_type_descriptor] = STATE(7231), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_placeholder_type_specifier] = STATE(4402), - [sym_decltype_auto] = STATE(4401), - [sym_decltype] = STATE(4252), - [sym_class_specifier] = STATE(4402), - [sym__class_name] = STATE(10478), - [sym_dependent_type] = STATE(4402), - [sym_template_type] = STATE(4523), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7850), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(4655), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(4802), - [sym__splice_specialization_specifier] = STATE(4189), - [sym_splice_type_specifier] = STATE(4612), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [aux_sym__type_definition_type_repeat1] = STATE(4957), - [aux_sym_sized_type_specifier_repeat1] = STATE(3378), - [sym_identifier] = ACTIONS(3538), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(3540), - [anon_sym_signed] = ACTIONS(3542), - [anon_sym_unsigned] = ACTIONS(3542), - [anon_sym_long] = ACTIONS(3542), - [anon_sym_short] = ACTIONS(3542), - [anon_sym_LBRACK] = ACTIONS(1310), + [STATE(302)] = { + [sym_type_qualifier] = STATE(5087), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7508), + [sym_sized_type_specifier] = STATE(4430), + [sym_enum_specifier] = STATE(4430), + [sym_struct_specifier] = STATE(4430), + [sym_union_specifier] = STATE(4430), + [sym_expression] = STATE(6670), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_type_descriptor] = STATE(9465), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_placeholder_type_specifier] = STATE(4430), + [sym_decltype_auto] = STATE(4426), + [sym_decltype] = STATE(4373), + [sym_class_specifier] = STATE(4430), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4430), + [sym_template_type] = STATE(4627), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_type_parameter_pack_expansion] = STATE(9735), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7921), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(4714), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(4988), + [sym__splice_specialization_specifier] = STATE(4305), + [sym_splice_type_specifier] = STATE(4673), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [aux_sym__type_definition_type_repeat1] = STATE(5087), + [aux_sym_sized_type_specifier_repeat1] = STATE(6642), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_signed] = ACTIONS(3200), + [anon_sym_unsigned] = ACTIONS(3200), + [anon_sym_long] = ACTIONS(3200), + [anon_sym_short] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -104232,282 +102742,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(3544), - [anon_sym_class] = ACTIONS(3546), - [anon_sym_struct] = ACTIONS(3548), - [anon_sym_union] = ACTIONS(3550), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(3552), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2855), - [anon_sym_decltype] = ACTIONS(2857), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_GT2] = ACTIONS(3290), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), }, - [STATE(349)] = { - [sym_catch_clause] = STATE(302), - [aux_sym_constructor_try_statement_repeat1] = STATE(302), - [sym_identifier] = ACTIONS(3554), - [aux_sym_preproc_include_token1] = ACTIONS(3554), - [aux_sym_preproc_def_token1] = ACTIONS(3554), - [aux_sym_preproc_if_token1] = ACTIONS(3554), - [aux_sym_preproc_if_token2] = ACTIONS(3554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3554), - [aux_sym_preproc_else_token1] = ACTIONS(3554), - [aux_sym_preproc_elif_token1] = ACTIONS(3554), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3554), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3554), - [sym_preproc_directive] = ACTIONS(3554), - [anon_sym_LPAREN2] = ACTIONS(3556), - [anon_sym_BANG] = ACTIONS(3556), - [anon_sym_TILDE] = ACTIONS(3556), - [anon_sym_DASH] = ACTIONS(3554), - [anon_sym_PLUS] = ACTIONS(3554), - [anon_sym_STAR] = ACTIONS(3556), - [anon_sym_AMP_AMP] = ACTIONS(3556), - [anon_sym_AMP] = ACTIONS(3554), - [anon_sym_SEMI] = ACTIONS(3556), - [anon_sym___extension__] = ACTIONS(3554), - [anon_sym_typedef] = ACTIONS(3554), - [anon_sym_virtual] = ACTIONS(3554), - [anon_sym_extern] = ACTIONS(3554), - [anon_sym___attribute__] = ACTIONS(3554), - [anon_sym___attribute] = ACTIONS(3554), - [anon_sym_using] = ACTIONS(3554), - [anon_sym_COLON_COLON] = ACTIONS(3556), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3556), - [anon_sym___declspec] = ACTIONS(3554), - [anon_sym___based] = ACTIONS(3554), - [anon_sym___cdecl] = ACTIONS(3554), - [anon_sym___clrcall] = ACTIONS(3554), - [anon_sym___stdcall] = ACTIONS(3554), - [anon_sym___fastcall] = ACTIONS(3554), - [anon_sym___thiscall] = ACTIONS(3554), - [anon_sym___vectorcall] = ACTIONS(3554), - [anon_sym_LBRACE] = ACTIONS(3556), - [anon_sym_signed] = ACTIONS(3554), - [anon_sym_unsigned] = ACTIONS(3554), - [anon_sym_long] = ACTIONS(3554), - [anon_sym_short] = ACTIONS(3554), - [anon_sym_LBRACK] = ACTIONS(3554), - [anon_sym_static] = ACTIONS(3554), - [anon_sym_register] = ACTIONS(3554), - [anon_sym_inline] = ACTIONS(3554), - [anon_sym___inline] = ACTIONS(3554), - [anon_sym___inline__] = ACTIONS(3554), - [anon_sym___forceinline] = ACTIONS(3554), - [anon_sym_thread_local] = ACTIONS(3554), - [anon_sym___thread] = ACTIONS(3554), - [anon_sym_const] = ACTIONS(3554), - [anon_sym_constexpr] = ACTIONS(3554), - [anon_sym_volatile] = ACTIONS(3554), - [anon_sym_restrict] = ACTIONS(3554), - [anon_sym___restrict__] = ACTIONS(3554), - [anon_sym__Atomic] = ACTIONS(3554), - [anon_sym__Noreturn] = ACTIONS(3554), - [anon_sym_noreturn] = ACTIONS(3554), - [anon_sym__Nonnull] = ACTIONS(3554), - [anon_sym_mutable] = ACTIONS(3554), - [anon_sym_constinit] = ACTIONS(3554), - [anon_sym_consteval] = ACTIONS(3554), - [anon_sym_alignas] = ACTIONS(3554), - [anon_sym__Alignas] = ACTIONS(3554), - [sym_primitive_type] = ACTIONS(3554), - [anon_sym_enum] = ACTIONS(3554), - [anon_sym_class] = ACTIONS(3554), - [anon_sym_struct] = ACTIONS(3554), - [anon_sym_union] = ACTIONS(3554), - [anon_sym_if] = ACTIONS(3554), - [anon_sym_switch] = ACTIONS(3554), - [anon_sym_case] = ACTIONS(3554), - [anon_sym_default] = ACTIONS(3554), - [anon_sym_while] = ACTIONS(3554), - [anon_sym_do] = ACTIONS(3554), - [anon_sym_for] = ACTIONS(3554), - [anon_sym_return] = ACTIONS(3554), - [anon_sym_break] = ACTIONS(3554), - [anon_sym_continue] = ACTIONS(3554), - [anon_sym_goto] = ACTIONS(3554), - [anon_sym___try] = ACTIONS(3554), - [anon_sym___leave] = ACTIONS(3554), - [anon_sym_not] = ACTIONS(3554), - [anon_sym_compl] = ACTIONS(3554), - [anon_sym_DASH_DASH] = ACTIONS(3556), - [anon_sym_PLUS_PLUS] = ACTIONS(3556), - [anon_sym_sizeof] = ACTIONS(3554), - [anon_sym___alignof__] = ACTIONS(3554), - [anon_sym___alignof] = ACTIONS(3554), - [anon_sym__alignof] = ACTIONS(3554), - [anon_sym_alignof] = ACTIONS(3554), - [anon_sym__Alignof] = ACTIONS(3554), - [anon_sym_offsetof] = ACTIONS(3554), - [anon_sym__Generic] = ACTIONS(3554), - [anon_sym_typename] = ACTIONS(3554), - [anon_sym_asm] = ACTIONS(3554), - [anon_sym___asm__] = ACTIONS(3554), - [anon_sym___asm] = ACTIONS(3554), - [sym_number_literal] = ACTIONS(3556), - [anon_sym_L_SQUOTE] = ACTIONS(3556), - [anon_sym_u_SQUOTE] = ACTIONS(3556), - [anon_sym_U_SQUOTE] = ACTIONS(3556), - [anon_sym_u8_SQUOTE] = ACTIONS(3556), - [anon_sym_SQUOTE] = ACTIONS(3556), - [anon_sym_L_DQUOTE] = ACTIONS(3556), - [anon_sym_u_DQUOTE] = ACTIONS(3556), - [anon_sym_U_DQUOTE] = ACTIONS(3556), - [anon_sym_u8_DQUOTE] = ACTIONS(3556), - [anon_sym_DQUOTE] = ACTIONS(3556), - [sym_true] = ACTIONS(3554), - [sym_false] = ACTIONS(3554), - [anon_sym_NULL] = ACTIONS(3554), - [anon_sym_nullptr] = ACTIONS(3554), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3554), - [anon_sym_decltype] = ACTIONS(3554), - [anon_sym_explicit] = ACTIONS(3554), - [anon_sym_template] = ACTIONS(3554), - [anon_sym_operator] = ACTIONS(3554), - [anon_sym_try] = ACTIONS(3554), - [anon_sym_delete] = ACTIONS(3554), - [anon_sym_throw] = ACTIONS(3554), - [anon_sym_namespace] = ACTIONS(3554), - [anon_sym_static_assert] = ACTIONS(3554), - [anon_sym_concept] = ACTIONS(3554), - [anon_sym_co_return] = ACTIONS(3554), - [anon_sym_co_yield] = ACTIONS(3554), - [anon_sym_catch] = ACTIONS(3152), - [anon_sym_R_DQUOTE] = ACTIONS(3556), - [anon_sym_LR_DQUOTE] = ACTIONS(3556), - [anon_sym_uR_DQUOTE] = ACTIONS(3556), - [anon_sym_UR_DQUOTE] = ACTIONS(3556), - [anon_sym_u8R_DQUOTE] = ACTIONS(3556), - [anon_sym_co_await] = ACTIONS(3554), - [anon_sym_new] = ACTIONS(3554), - [anon_sym_requires] = ACTIONS(3554), - [anon_sym_CARET_CARET] = ACTIONS(3556), - [anon_sym_LBRACK_COLON] = ACTIONS(3556), - [sym_this] = ACTIONS(3554), + [STATE(303)] = { + [sym_type_qualifier] = STATE(5087), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7508), + [sym_sized_type_specifier] = STATE(4430), + [sym_enum_specifier] = STATE(4430), + [sym_struct_specifier] = STATE(4430), + [sym_union_specifier] = STATE(4430), + [sym_expression] = STATE(6674), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_type_descriptor] = STATE(9499), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_placeholder_type_specifier] = STATE(4430), + [sym_decltype_auto] = STATE(4426), + [sym_decltype] = STATE(4373), + [sym_class_specifier] = STATE(4430), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4430), + [sym_template_type] = STATE(4627), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_type_parameter_pack_expansion] = STATE(9779), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7921), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(4714), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(4988), + [sym__splice_specialization_specifier] = STATE(4305), + [sym_splice_type_specifier] = STATE(4673), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [aux_sym__type_definition_type_repeat1] = STATE(5087), + [aux_sym_sized_type_specifier_repeat1] = STATE(6642), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_signed] = ACTIONS(3200), + [anon_sym_unsigned] = ACTIONS(3200), + [anon_sym_long] = ACTIONS(3200), + [anon_sym_short] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_GT2] = ACTIONS(3292), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), }, - [STATE(350)] = { - [sym_type_qualifier] = STATE(5089), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3440), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(6731), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(5892), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10188), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7820), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4005), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(4560), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [aux_sym__type_definition_type_repeat1] = STATE(5089), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3558), - [anon_sym_LPAREN2] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(3566), - [anon_sym_COLON_COLON] = ACTIONS(3568), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), + [STATE(304)] = { + [sym_type_qualifier] = STATE(5087), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7508), + [sym_sized_type_specifier] = STATE(4430), + [sym_enum_specifier] = STATE(4430), + [sym_struct_specifier] = STATE(4430), + [sym_union_specifier] = STATE(4430), + [sym_expression] = STATE(6660), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_type_descriptor] = STATE(9452), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_placeholder_type_specifier] = STATE(4430), + [sym_decltype_auto] = STATE(4426), + [sym_decltype] = STATE(4373), + [sym_class_specifier] = STATE(4430), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4430), + [sym_template_type] = STATE(4627), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_type_parameter_pack_expansion] = STATE(10205), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7921), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(4714), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(4988), + [sym__splice_specialization_specifier] = STATE(4305), + [sym_splice_type_specifier] = STATE(4673), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [aux_sym__type_definition_type_repeat1] = STATE(5087), + [aux_sym_sized_type_specifier_repeat1] = STATE(6642), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_signed] = ACTIONS(3200), + [anon_sym_unsigned] = ACTIONS(3200), + [anon_sym_long] = ACTIONS(3200), + [anon_sym_short] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -104522,16 +103036,605 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3570), - [anon_sym_enum] = ACTIONS(3291), - [anon_sym_class] = ACTIONS(3293), - [anon_sym_struct] = ACTIONS(3295), - [anon_sym_union] = ACTIONS(3297), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_GT2] = ACTIONS(3294), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(305)] = { + [sym_type_qualifier] = STATE(5087), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7508), + [sym_sized_type_specifier] = STATE(4430), + [sym_enum_specifier] = STATE(4430), + [sym_struct_specifier] = STATE(4430), + [sym_union_specifier] = STATE(4430), + [sym_expression] = STATE(6679), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_type_descriptor] = STATE(9594), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_placeholder_type_specifier] = STATE(4430), + [sym_decltype_auto] = STATE(4426), + [sym_decltype] = STATE(4373), + [sym_class_specifier] = STATE(4430), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4430), + [sym_template_type] = STATE(4627), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_type_parameter_pack_expansion] = STATE(9794), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7921), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(4714), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(4988), + [sym__splice_specialization_specifier] = STATE(4305), + [sym_splice_type_specifier] = STATE(4673), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [aux_sym__type_definition_type_repeat1] = STATE(5087), + [aux_sym_sized_type_specifier_repeat1] = STATE(6642), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_signed] = ACTIONS(3200), + [anon_sym_unsigned] = ACTIONS(3200), + [anon_sym_long] = ACTIONS(3200), + [anon_sym_short] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_GT2] = ACTIONS(3296), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(306)] = { + [sym_type_qualifier] = STATE(5087), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7508), + [sym_sized_type_specifier] = STATE(4430), + [sym_enum_specifier] = STATE(4430), + [sym_struct_specifier] = STATE(4430), + [sym_union_specifier] = STATE(4430), + [sym_expression] = STATE(6680), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_type_descriptor] = STATE(9647), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_placeholder_type_specifier] = STATE(4430), + [sym_decltype_auto] = STATE(4426), + [sym_decltype] = STATE(4373), + [sym_class_specifier] = STATE(4430), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4430), + [sym_template_type] = STATE(4627), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_type_parameter_pack_expansion] = STATE(9803), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7921), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(4714), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(4988), + [sym__splice_specialization_specifier] = STATE(4305), + [sym_splice_type_specifier] = STATE(4673), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [aux_sym__type_definition_type_repeat1] = STATE(5087), + [aux_sym_sized_type_specifier_repeat1] = STATE(6642), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_signed] = ACTIONS(3200), + [anon_sym_unsigned] = ACTIONS(3200), + [anon_sym_long] = ACTIONS(3200), + [anon_sym_short] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_GT2] = ACTIONS(3298), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(307)] = { + [sym_type_qualifier] = STATE(5087), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7508), + [sym_sized_type_specifier] = STATE(4430), + [sym_enum_specifier] = STATE(4430), + [sym_struct_specifier] = STATE(4430), + [sym_union_specifier] = STATE(4430), + [sym_expression] = STATE(6671), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_type_descriptor] = STATE(9617), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_placeholder_type_specifier] = STATE(4430), + [sym_decltype_auto] = STATE(4426), + [sym_decltype] = STATE(4373), + [sym_class_specifier] = STATE(4430), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4430), + [sym_template_type] = STATE(4627), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_type_parameter_pack_expansion] = STATE(9745), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7921), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(4714), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(4988), + [sym__splice_specialization_specifier] = STATE(4305), + [sym_splice_type_specifier] = STATE(4673), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [aux_sym__type_definition_type_repeat1] = STATE(5087), + [aux_sym_sized_type_specifier_repeat1] = STATE(6642), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_signed] = ACTIONS(3200), + [anon_sym_unsigned] = ACTIONS(3200), + [anon_sym_long] = ACTIONS(3200), + [anon_sym_short] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_GT2] = ACTIONS(3300), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(308)] = { + [sym_expression] = STATE(6873), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11247), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(3302), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym___extension__] = ACTIONS(3307), + [anon_sym_virtual] = ACTIONS(3310), + [anon_sym_extern] = ACTIONS(3310), + [anon_sym___attribute__] = ACTIONS(3310), + [anon_sym___attribute] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3315), + [anon_sym___declspec] = ACTIONS(3310), + [anon_sym_signed] = ACTIONS(3310), + [anon_sym_unsigned] = ACTIONS(3310), + [anon_sym_long] = ACTIONS(3310), + [anon_sym_short] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(3310), + [anon_sym_register] = ACTIONS(3310), + [anon_sym_inline] = ACTIONS(3310), + [anon_sym___inline] = ACTIONS(3310), + [anon_sym___inline__] = ACTIONS(3310), + [anon_sym___forceinline] = ACTIONS(3310), + [anon_sym_thread_local] = ACTIONS(3310), + [anon_sym___thread] = ACTIONS(3310), + [anon_sym_const] = ACTIONS(3310), + [anon_sym_constexpr] = ACTIONS(3310), + [anon_sym_volatile] = ACTIONS(3310), + [anon_sym_restrict] = ACTIONS(3310), + [anon_sym___restrict__] = ACTIONS(3310), + [anon_sym__Atomic] = ACTIONS(3310), + [anon_sym__Noreturn] = ACTIONS(3310), + [anon_sym_noreturn] = ACTIONS(3310), + [anon_sym__Nonnull] = ACTIONS(3310), + [anon_sym_mutable] = ACTIONS(3310), + [anon_sym_constinit] = ACTIONS(3310), + [anon_sym_consteval] = ACTIONS(3310), + [anon_sym_alignas] = ACTIONS(3310), + [anon_sym__Alignas] = ACTIONS(3310), + [sym_primitive_type] = ACTIONS(3317), + [anon_sym_enum] = ACTIONS(3310), + [anon_sym_class] = ACTIONS(3310), + [anon_sym_struct] = ACTIONS(3310), + [anon_sym_union] = ACTIONS(3310), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -104539,7 +103642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3576), + [anon_sym_typename] = ACTIONS(3320), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -104559,124 +103662,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), + [sym_auto] = ACTIONS(3310), + [anon_sym_decltype] = ACTIONS(3323), + [anon_sym_template] = ACTIONS(3326), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(3329), [sym_this] = ACTIONS(237), }, - [STATE(351)] = { - [sym_type_qualifier] = STATE(5089), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3440), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(6782), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(5892), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7860), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4005), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [aux_sym__type_definition_type_repeat1] = STATE(5089), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3586), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(3594), - [anon_sym_COLON_COLON] = ACTIONS(3596), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3291), - [anon_sym_class] = ACTIONS(3293), - [anon_sym_struct] = ACTIONS(3295), - [anon_sym_union] = ACTIONS(3297), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(309)] = { + [sym_expression] = STATE(6766), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11251), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(3332), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(3335), + [anon_sym___extension__] = ACTIONS(3337), + [anon_sym_virtual] = ACTIONS(3340), + [anon_sym_extern] = ACTIONS(3340), + [anon_sym___attribute__] = ACTIONS(3340), + [anon_sym___attribute] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3345), + [anon_sym___declspec] = ACTIONS(3340), + [anon_sym_signed] = ACTIONS(3340), + [anon_sym_unsigned] = ACTIONS(3340), + [anon_sym_long] = ACTIONS(3340), + [anon_sym_short] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(3340), + [anon_sym_register] = ACTIONS(3340), + [anon_sym_inline] = ACTIONS(3340), + [anon_sym___inline] = ACTIONS(3340), + [anon_sym___inline__] = ACTIONS(3340), + [anon_sym___forceinline] = ACTIONS(3340), + [anon_sym_thread_local] = ACTIONS(3340), + [anon_sym___thread] = ACTIONS(3340), + [anon_sym_const] = ACTIONS(3340), + [anon_sym_constexpr] = ACTIONS(3340), + [anon_sym_volatile] = ACTIONS(3340), + [anon_sym_restrict] = ACTIONS(3340), + [anon_sym___restrict__] = ACTIONS(3340), + [anon_sym__Atomic] = ACTIONS(3340), + [anon_sym__Noreturn] = ACTIONS(3340), + [anon_sym_noreturn] = ACTIONS(3340), + [anon_sym__Nonnull] = ACTIONS(3340), + [anon_sym_mutable] = ACTIONS(3340), + [anon_sym_constinit] = ACTIONS(3340), + [anon_sym_consteval] = ACTIONS(3340), + [anon_sym_alignas] = ACTIONS(3340), + [anon_sym__Alignas] = ACTIONS(3340), + [sym_primitive_type] = ACTIONS(3347), + [anon_sym_enum] = ACTIONS(3340), + [anon_sym_class] = ACTIONS(3340), + [anon_sym_struct] = ACTIONS(3340), + [anon_sym_union] = ACTIONS(3340), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -104684,7 +103789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3303), + [anon_sym_typename] = ACTIONS(3350), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -104704,100 +103809,542 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [sym_auto] = ACTIONS(3340), + [anon_sym_decltype] = ACTIONS(3353), + [anon_sym_template] = ACTIONS(3356), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(3359), [sym_this] = ACTIONS(237), }, - [STATE(352)] = { - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(7061), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(10661), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7792), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4947), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), + [STATE(310)] = { + [sym_identifier] = ACTIONS(3362), + [aux_sym_preproc_include_token1] = ACTIONS(3362), + [aux_sym_preproc_def_token1] = ACTIONS(3362), + [aux_sym_preproc_if_token1] = ACTIONS(3362), + [aux_sym_preproc_if_token2] = ACTIONS(3362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), + [aux_sym_preproc_else_token1] = ACTIONS(3362), + [aux_sym_preproc_elif_token1] = ACTIONS(3362), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3362), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3362), + [sym_preproc_directive] = ACTIONS(3362), + [anon_sym_LPAREN2] = ACTIONS(3364), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_STAR] = ACTIONS(3364), + [anon_sym_AMP_AMP] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3362), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym___extension__] = ACTIONS(3362), + [anon_sym_typedef] = ACTIONS(3362), + [anon_sym_virtual] = ACTIONS(3362), + [anon_sym_extern] = ACTIONS(3362), + [anon_sym___attribute__] = ACTIONS(3362), + [anon_sym___attribute] = ACTIONS(3362), + [anon_sym_using] = ACTIONS(3362), + [anon_sym_COLON_COLON] = ACTIONS(3364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), + [anon_sym___declspec] = ACTIONS(3362), + [anon_sym___based] = ACTIONS(3362), + [anon_sym___cdecl] = ACTIONS(3362), + [anon_sym___clrcall] = ACTIONS(3362), + [anon_sym___stdcall] = ACTIONS(3362), + [anon_sym___fastcall] = ACTIONS(3362), + [anon_sym___thiscall] = ACTIONS(3362), + [anon_sym___vectorcall] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_signed] = ACTIONS(3362), + [anon_sym_unsigned] = ACTIONS(3362), + [anon_sym_long] = ACTIONS(3362), + [anon_sym_short] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_static] = ACTIONS(3362), + [anon_sym_register] = ACTIONS(3362), + [anon_sym_inline] = ACTIONS(3362), + [anon_sym___inline] = ACTIONS(3362), + [anon_sym___inline__] = ACTIONS(3362), + [anon_sym___forceinline] = ACTIONS(3362), + [anon_sym_thread_local] = ACTIONS(3362), + [anon_sym___thread] = ACTIONS(3362), + [anon_sym_const] = ACTIONS(3362), + [anon_sym_constexpr] = ACTIONS(3362), + [anon_sym_volatile] = ACTIONS(3362), + [anon_sym_restrict] = ACTIONS(3362), + [anon_sym___restrict__] = ACTIONS(3362), + [anon_sym__Atomic] = ACTIONS(3362), + [anon_sym__Noreturn] = ACTIONS(3362), + [anon_sym_noreturn] = ACTIONS(3362), + [anon_sym__Nonnull] = ACTIONS(3362), + [anon_sym_mutable] = ACTIONS(3362), + [anon_sym_constinit] = ACTIONS(3362), + [anon_sym_consteval] = ACTIONS(3362), + [anon_sym_alignas] = ACTIONS(3362), + [anon_sym__Alignas] = ACTIONS(3362), + [sym_primitive_type] = ACTIONS(3362), + [anon_sym_enum] = ACTIONS(3362), + [anon_sym_class] = ACTIONS(3362), + [anon_sym_struct] = ACTIONS(3362), + [anon_sym_union] = ACTIONS(3362), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_else] = ACTIONS(3362), + [anon_sym_switch] = ACTIONS(3362), + [anon_sym_case] = ACTIONS(3362), + [anon_sym_default] = ACTIONS(3362), + [anon_sym_while] = ACTIONS(3362), + [anon_sym_do] = ACTIONS(3362), + [anon_sym_for] = ACTIONS(3362), + [anon_sym_return] = ACTIONS(3362), + [anon_sym_break] = ACTIONS(3362), + [anon_sym_continue] = ACTIONS(3362), + [anon_sym_goto] = ACTIONS(3362), + [anon_sym___try] = ACTIONS(3362), + [anon_sym___leave] = ACTIONS(3362), + [anon_sym_not] = ACTIONS(3362), + [anon_sym_compl] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3364), + [anon_sym_PLUS_PLUS] = ACTIONS(3364), + [anon_sym_sizeof] = ACTIONS(3362), + [anon_sym___alignof__] = ACTIONS(3362), + [anon_sym___alignof] = ACTIONS(3362), + [anon_sym__alignof] = ACTIONS(3362), + [anon_sym_alignof] = ACTIONS(3362), + [anon_sym__Alignof] = ACTIONS(3362), + [anon_sym_offsetof] = ACTIONS(3362), + [anon_sym__Generic] = ACTIONS(3362), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_asm] = ACTIONS(3362), + [anon_sym___asm__] = ACTIONS(3362), + [anon_sym___asm] = ACTIONS(3362), + [sym_number_literal] = ACTIONS(3364), + [anon_sym_L_SQUOTE] = ACTIONS(3364), + [anon_sym_u_SQUOTE] = ACTIONS(3364), + [anon_sym_U_SQUOTE] = ACTIONS(3364), + [anon_sym_u8_SQUOTE] = ACTIONS(3364), + [anon_sym_SQUOTE] = ACTIONS(3364), + [anon_sym_L_DQUOTE] = ACTIONS(3364), + [anon_sym_u_DQUOTE] = ACTIONS(3364), + [anon_sym_U_DQUOTE] = ACTIONS(3364), + [anon_sym_u8_DQUOTE] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [sym_true] = ACTIONS(3362), + [sym_false] = ACTIONS(3362), + [anon_sym_NULL] = ACTIONS(3362), + [anon_sym_nullptr] = ACTIONS(3362), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3362), + [anon_sym_decltype] = ACTIONS(3362), + [anon_sym_explicit] = ACTIONS(3362), + [anon_sym_export] = ACTIONS(3362), + [anon_sym_module] = ACTIONS(3362), + [anon_sym_import] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(3362), + [anon_sym_operator] = ACTIONS(3362), + [anon_sym_try] = ACTIONS(3362), + [anon_sym_delete] = ACTIONS(3362), + [anon_sym_throw] = ACTIONS(3362), + [anon_sym_namespace] = ACTIONS(3362), + [anon_sym_static_assert] = ACTIONS(3362), + [anon_sym_concept] = ACTIONS(3362), + [anon_sym_co_return] = ACTIONS(3362), + [anon_sym_co_yield] = ACTIONS(3362), + [anon_sym_catch] = ACTIONS(3362), + [anon_sym_R_DQUOTE] = ACTIONS(3364), + [anon_sym_LR_DQUOTE] = ACTIONS(3364), + [anon_sym_uR_DQUOTE] = ACTIONS(3364), + [anon_sym_UR_DQUOTE] = ACTIONS(3364), + [anon_sym_u8R_DQUOTE] = ACTIONS(3364), + [anon_sym_co_await] = ACTIONS(3362), + [anon_sym_new] = ACTIONS(3362), + [anon_sym_requires] = ACTIONS(3362), + [anon_sym_CARET_CARET] = ACTIONS(3364), + [anon_sym_LBRACK_COLON] = ACTIONS(3364), + [sym_this] = ACTIONS(3362), + }, + [STATE(311)] = { + [sym_type_qualifier] = STATE(5087), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7508), + [sym_sized_type_specifier] = STATE(4430), + [sym_enum_specifier] = STATE(4430), + [sym_struct_specifier] = STATE(4430), + [sym_union_specifier] = STATE(4430), + [sym_expression] = STATE(6646), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_type_descriptor] = STATE(9631), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_placeholder_type_specifier] = STATE(4430), + [sym_decltype_auto] = STATE(4426), + [sym_decltype] = STATE(4373), + [sym_class_specifier] = STATE(4430), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4430), + [sym_template_type] = STATE(4627), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_type_parameter_pack_expansion] = STATE(10063), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7921), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(4714), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(4988), + [sym__splice_specialization_specifier] = STATE(4305), + [sym_splice_type_specifier] = STATE(4673), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [aux_sym__type_definition_type_repeat1] = STATE(5087), + [aux_sym_sized_type_specifier_repeat1] = STATE(6642), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_signed] = ACTIONS(3200), + [anon_sym_unsigned] = ACTIONS(3200), + [anon_sym_long] = ACTIONS(3200), + [anon_sym_short] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_GT2] = ACTIONS(3366), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(312)] = { + [sym_else_clause] = STATE(365), + [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___extension__] = ACTIONS(3368), + [anon_sym_typedef] = ACTIONS(3368), + [anon_sym_virtual] = ACTIONS(3368), + [anon_sym_extern] = ACTIONS(3368), + [anon_sym___attribute__] = ACTIONS(3368), + [anon_sym___attribute] = ACTIONS(3368), + [anon_sym_using] = 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_signed] = ACTIONS(3368), + [anon_sym_unsigned] = ACTIONS(3368), + [anon_sym_long] = ACTIONS(3368), + [anon_sym_short] = ACTIONS(3368), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_register] = ACTIONS(3368), + [anon_sym_inline] = ACTIONS(3368), + [anon_sym___inline] = ACTIONS(3368), + [anon_sym___inline__] = ACTIONS(3368), + [anon_sym___forceinline] = ACTIONS(3368), + [anon_sym_thread_local] = ACTIONS(3368), + [anon_sym___thread] = 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__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3368), + [anon_sym__Alignas] = 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_else] = ACTIONS(3372), + [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___try] = ACTIONS(3368), + [anon_sym___leave] = 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___alignof__] = ACTIONS(3368), + [anon_sym___alignof] = ACTIONS(3368), + [anon_sym__alignof] = ACTIONS(3368), + [anon_sym_alignof] = ACTIONS(3368), + [anon_sym__Alignof] = ACTIONS(3368), + [anon_sym_offsetof] = ACTIONS(3368), + [anon_sym__Generic] = ACTIONS(3368), + [anon_sym_typename] = ACTIONS(3368), + [anon_sym_asm] = 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_explicit] = ACTIONS(3368), + [anon_sym_export] = ACTIONS(3368), + [anon_sym_module] = ACTIONS(3368), + [anon_sym_import] = 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_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), + [anon_sym_CARET_CARET] = ACTIONS(3370), + [anon_sym_LBRACK_COLON] = ACTIONS(3370), + [sym_this] = ACTIONS(3368), + }, + [STATE(313)] = { + [sym_type_qualifier] = STATE(5087), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7508), + [sym_sized_type_specifier] = STATE(4430), + [sym_enum_specifier] = STATE(4430), + [sym_struct_specifier] = STATE(4430), + [sym_union_specifier] = STATE(4430), + [sym_expression] = STATE(6606), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_type_descriptor] = STATE(9652), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_placeholder_type_specifier] = STATE(4430), + [sym_decltype_auto] = STATE(4426), + [sym_decltype] = STATE(4373), + [sym_class_specifier] = STATE(4430), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4430), + [sym_template_type] = STATE(4627), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_type_parameter_pack_expansion] = STATE(9761), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7921), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(4714), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(4988), + [sym__splice_specialization_specifier] = STATE(4305), + [sym_splice_type_specifier] = STATE(4673), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [aux_sym__type_definition_type_repeat1] = STATE(5087), + [aux_sym_sized_type_specifier_repeat1] = STATE(6642), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_signed] = ACTIONS(3200), + [anon_sym_unsigned] = ACTIONS(3200), + [anon_sym_long] = ACTIONS(3200), + [anon_sym_short] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -104812,11 +104359,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_GT2] = ACTIONS(3374), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(314)] = { + [sym_expression] = STATE(6765), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11233), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(3376), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(3379), + [anon_sym___extension__] = ACTIONS(3381), + [anon_sym_virtual] = ACTIONS(3384), + [anon_sym_extern] = ACTIONS(3384), + [anon_sym___attribute__] = ACTIONS(3384), + [anon_sym___attribute] = ACTIONS(3384), + [anon_sym_COLON_COLON] = ACTIONS(3386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3389), + [anon_sym___declspec] = ACTIONS(3384), + [anon_sym_signed] = ACTIONS(3384), + [anon_sym_unsigned] = ACTIONS(3384), + [anon_sym_long] = ACTIONS(3384), + [anon_sym_short] = ACTIONS(3384), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(3384), + [anon_sym_register] = ACTIONS(3384), + [anon_sym_inline] = ACTIONS(3384), + [anon_sym___inline] = ACTIONS(3384), + [anon_sym___inline__] = ACTIONS(3384), + [anon_sym___forceinline] = ACTIONS(3384), + [anon_sym_thread_local] = ACTIONS(3384), + [anon_sym___thread] = 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__Nonnull] = ACTIONS(3384), + [anon_sym_mutable] = ACTIONS(3384), + [anon_sym_constinit] = ACTIONS(3384), + [anon_sym_consteval] = ACTIONS(3384), + [anon_sym_alignas] = ACTIONS(3384), + [anon_sym__Alignas] = ACTIONS(3384), + [sym_primitive_type] = ACTIONS(3391), + [anon_sym_enum] = ACTIONS(3384), + [anon_sym_class] = ACTIONS(3384), + [anon_sym_struct] = ACTIONS(3384), + [anon_sym_union] = ACTIONS(3384), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -104829,7 +104524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3229), + [anon_sym_typename] = ACTIONS(3394), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -104849,9 +104544,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), + [sym_auto] = ACTIONS(3384), + [anon_sym_decltype] = ACTIONS(3397), + [anon_sym_template] = ACTIONS(3400), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -104862,87 +104557,2871 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(3403), [sym_this] = ACTIONS(237), }, - [STATE(353)] = { - [sym_type_qualifier] = STATE(4954), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(7094), - [sym_sized_type_specifier] = STATE(3118), - [sym_enum_specifier] = STATE(3118), - [sym_struct_specifier] = STATE(3118), - [sym_union_specifier] = STATE(3118), - [sym_expression] = STATE(7016), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_type_descriptor] = STATE(10533), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_placeholder_type_specifier] = STATE(3118), - [sym_decltype_auto] = STATE(3100), - [sym_decltype] = STATE(2949), - [sym_class_specifier] = STATE(3118), - [sym__class_name] = STATE(10073), - [sym_dependent_type] = STATE(3118), - [sym_template_type] = STATE(3771), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7792), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(3907), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(4947), - [sym__splice_specialization_specifier] = STATE(2855), - [sym_splice_type_specifier] = STATE(3422), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym__type_definition_type_repeat1] = STATE(4954), - [aux_sym_sized_type_specifier_repeat1] = STATE(2634), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(315)] = { + [sym_identifier] = ACTIONS(3163), + [aux_sym_preproc_include_token1] = ACTIONS(3163), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [aux_sym_preproc_if_token1] = ACTIONS(3163), + [aux_sym_preproc_if_token2] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), + [aux_sym_preproc_else_token1] = ACTIONS(3163), + [aux_sym_preproc_elif_token1] = ACTIONS(3163), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3163), + [sym_preproc_directive] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_extern] = ACTIONS(3163), + [anon_sym___attribute__] = ACTIONS(3163), + [anon_sym___attribute] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3163), + [anon_sym___based] = ACTIONS(3163), + [anon_sym___cdecl] = ACTIONS(3163), + [anon_sym___clrcall] = ACTIONS(3163), + [anon_sym___stdcall] = ACTIONS(3163), + [anon_sym___fastcall] = ACTIONS(3163), + [anon_sym___thiscall] = ACTIONS(3163), + [anon_sym___vectorcall] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym___inline] = ACTIONS(3163), + [anon_sym___inline__] = ACTIONS(3163), + [anon_sym___forceinline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym___thread] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym___restrict__] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym__Noreturn] = ACTIONS(3163), + [anon_sym_noreturn] = ACTIONS(3163), + [anon_sym__Nonnull] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym__Alignas] = ACTIONS(3163), + [sym_primitive_type] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_else] = ACTIONS(3163), + [anon_sym_switch] = ACTIONS(3163), + [anon_sym_case] = ACTIONS(3163), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_goto] = ACTIONS(3163), + [anon_sym___try] = ACTIONS(3163), + [anon_sym___leave] = ACTIONS(3163), + [anon_sym_not] = ACTIONS(3163), + [anon_sym_compl] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3163), + [anon_sym___alignof__] = ACTIONS(3163), + [anon_sym___alignof] = ACTIONS(3163), + [anon_sym__alignof] = ACTIONS(3163), + [anon_sym_alignof] = ACTIONS(3163), + [anon_sym__Alignof] = ACTIONS(3163), + [anon_sym_offsetof] = ACTIONS(3163), + [anon_sym__Generic] = ACTIONS(3163), + [anon_sym_typename] = ACTIONS(3163), + [anon_sym_asm] = ACTIONS(3163), + [anon_sym___asm__] = ACTIONS(3163), + [anon_sym___asm] = ACTIONS(3163), + [sym_number_literal] = ACTIONS(3161), + [anon_sym_L_SQUOTE] = ACTIONS(3161), + [anon_sym_u_SQUOTE] = ACTIONS(3161), + [anon_sym_U_SQUOTE] = ACTIONS(3161), + [anon_sym_u8_SQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_L_DQUOTE] = ACTIONS(3161), + [anon_sym_u_DQUOTE] = ACTIONS(3161), + [anon_sym_U_DQUOTE] = ACTIONS(3161), + [anon_sym_u8_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [anon_sym_NULL] = ACTIONS(3163), + [anon_sym_nullptr] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_export] = ACTIONS(3163), + [anon_sym_module] = ACTIONS(3163), + [anon_sym_import] = ACTIONS(3163), + [anon_sym_template] = ACTIONS(3163), + [anon_sym_operator] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_delete] = ACTIONS(3163), + [anon_sym_throw] = ACTIONS(3163), + [anon_sym_namespace] = ACTIONS(3163), + [anon_sym_static_assert] = ACTIONS(3163), + [anon_sym_concept] = ACTIONS(3163), + [anon_sym_co_return] = ACTIONS(3163), + [anon_sym_co_yield] = ACTIONS(3163), + [anon_sym_catch] = ACTIONS(3163), + [anon_sym_R_DQUOTE] = ACTIONS(3161), + [anon_sym_LR_DQUOTE] = ACTIONS(3161), + [anon_sym_uR_DQUOTE] = ACTIONS(3161), + [anon_sym_UR_DQUOTE] = ACTIONS(3161), + [anon_sym_u8R_DQUOTE] = ACTIONS(3161), + [anon_sym_co_await] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_requires] = ACTIONS(3163), + [anon_sym_CARET_CARET] = ACTIONS(3161), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), + [sym_this] = ACTIONS(3163), + }, + [STATE(316)] = { + [sym_type_qualifier] = STATE(5087), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7508), + [sym_sized_type_specifier] = STATE(4430), + [sym_enum_specifier] = STATE(4430), + [sym_struct_specifier] = STATE(4430), + [sym_union_specifier] = STATE(4430), + [sym_expression] = STATE(6672), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_type_descriptor] = STATE(9424), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_placeholder_type_specifier] = STATE(4430), + [sym_decltype_auto] = STATE(4426), + [sym_decltype] = STATE(4373), + [sym_class_specifier] = STATE(4430), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4430), + [sym_template_type] = STATE(4627), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_type_parameter_pack_expansion] = STATE(9756), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7921), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(4714), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(4988), + [sym__splice_specialization_specifier] = STATE(4305), + [sym_splice_type_specifier] = STATE(4673), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [aux_sym__type_definition_type_repeat1] = STATE(5087), + [aux_sym_sized_type_specifier_repeat1] = STATE(6642), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_signed] = ACTIONS(3200), + [anon_sym_unsigned] = ACTIONS(3200), + [anon_sym_long] = ACTIONS(3200), + [anon_sym_short] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_GT2] = ACTIONS(3406), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(317)] = { + [sym_else_clause] = STATE(373), + [sym_identifier] = ACTIONS(3408), + [aux_sym_preproc_include_token1] = ACTIONS(3408), + [aux_sym_preproc_def_token1] = ACTIONS(3408), + [aux_sym_preproc_if_token1] = ACTIONS(3408), + [aux_sym_preproc_if_token2] = ACTIONS(3408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3408), + [aux_sym_preproc_else_token1] = ACTIONS(3408), + [aux_sym_preproc_elif_token1] = ACTIONS(3408), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3408), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3408), + [sym_preproc_directive] = ACTIONS(3408), + [anon_sym_LPAREN2] = ACTIONS(3410), + [anon_sym_BANG] = ACTIONS(3410), + [anon_sym_TILDE] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(3408), + [anon_sym_PLUS] = ACTIONS(3408), + [anon_sym_STAR] = ACTIONS(3410), + [anon_sym_AMP_AMP] = ACTIONS(3410), + [anon_sym_AMP] = ACTIONS(3408), + [anon_sym_SEMI] = ACTIONS(3410), + [anon_sym___extension__] = ACTIONS(3408), + [anon_sym_typedef] = ACTIONS(3408), + [anon_sym_virtual] = ACTIONS(3408), + [anon_sym_extern] = ACTIONS(3408), + [anon_sym___attribute__] = ACTIONS(3408), + [anon_sym___attribute] = ACTIONS(3408), + [anon_sym_using] = ACTIONS(3408), + [anon_sym_COLON_COLON] = ACTIONS(3410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3410), + [anon_sym___declspec] = ACTIONS(3408), + [anon_sym___based] = ACTIONS(3408), + [anon_sym___cdecl] = ACTIONS(3408), + [anon_sym___clrcall] = ACTIONS(3408), + [anon_sym___stdcall] = ACTIONS(3408), + [anon_sym___fastcall] = ACTIONS(3408), + [anon_sym___thiscall] = ACTIONS(3408), + [anon_sym___vectorcall] = ACTIONS(3408), + [anon_sym_LBRACE] = ACTIONS(3410), + [anon_sym_signed] = ACTIONS(3408), + [anon_sym_unsigned] = ACTIONS(3408), + [anon_sym_long] = ACTIONS(3408), + [anon_sym_short] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3408), + [anon_sym_static] = ACTIONS(3408), + [anon_sym_register] = ACTIONS(3408), + [anon_sym_inline] = ACTIONS(3408), + [anon_sym___inline] = ACTIONS(3408), + [anon_sym___inline__] = ACTIONS(3408), + [anon_sym___forceinline] = ACTIONS(3408), + [anon_sym_thread_local] = ACTIONS(3408), + [anon_sym___thread] = ACTIONS(3408), + [anon_sym_const] = ACTIONS(3408), + [anon_sym_constexpr] = ACTIONS(3408), + [anon_sym_volatile] = ACTIONS(3408), + [anon_sym_restrict] = ACTIONS(3408), + [anon_sym___restrict__] = ACTIONS(3408), + [anon_sym__Atomic] = ACTIONS(3408), + [anon_sym__Noreturn] = ACTIONS(3408), + [anon_sym_noreturn] = ACTIONS(3408), + [anon_sym__Nonnull] = ACTIONS(3408), + [anon_sym_mutable] = ACTIONS(3408), + [anon_sym_constinit] = ACTIONS(3408), + [anon_sym_consteval] = ACTIONS(3408), + [anon_sym_alignas] = ACTIONS(3408), + [anon_sym__Alignas] = ACTIONS(3408), + [sym_primitive_type] = ACTIONS(3408), + [anon_sym_enum] = ACTIONS(3408), + [anon_sym_class] = ACTIONS(3408), + [anon_sym_struct] = ACTIONS(3408), + [anon_sym_union] = ACTIONS(3408), + [anon_sym_if] = ACTIONS(3408), + [anon_sym_else] = ACTIONS(3372), + [anon_sym_switch] = ACTIONS(3408), + [anon_sym_case] = ACTIONS(3408), + [anon_sym_default] = ACTIONS(3408), + [anon_sym_while] = ACTIONS(3408), + [anon_sym_do] = ACTIONS(3408), + [anon_sym_for] = ACTIONS(3408), + [anon_sym_return] = ACTIONS(3408), + [anon_sym_break] = ACTIONS(3408), + [anon_sym_continue] = ACTIONS(3408), + [anon_sym_goto] = ACTIONS(3408), + [anon_sym___try] = ACTIONS(3408), + [anon_sym___leave] = ACTIONS(3408), + [anon_sym_not] = ACTIONS(3408), + [anon_sym_compl] = ACTIONS(3408), + [anon_sym_DASH_DASH] = ACTIONS(3410), + [anon_sym_PLUS_PLUS] = ACTIONS(3410), + [anon_sym_sizeof] = ACTIONS(3408), + [anon_sym___alignof__] = ACTIONS(3408), + [anon_sym___alignof] = ACTIONS(3408), + [anon_sym__alignof] = ACTIONS(3408), + [anon_sym_alignof] = ACTIONS(3408), + [anon_sym__Alignof] = ACTIONS(3408), + [anon_sym_offsetof] = ACTIONS(3408), + [anon_sym__Generic] = ACTIONS(3408), + [anon_sym_typename] = ACTIONS(3408), + [anon_sym_asm] = ACTIONS(3408), + [anon_sym___asm__] = ACTIONS(3408), + [anon_sym___asm] = ACTIONS(3408), + [sym_number_literal] = ACTIONS(3410), + [anon_sym_L_SQUOTE] = ACTIONS(3410), + [anon_sym_u_SQUOTE] = ACTIONS(3410), + [anon_sym_U_SQUOTE] = ACTIONS(3410), + [anon_sym_u8_SQUOTE] = ACTIONS(3410), + [anon_sym_SQUOTE] = ACTIONS(3410), + [anon_sym_L_DQUOTE] = ACTIONS(3410), + [anon_sym_u_DQUOTE] = ACTIONS(3410), + [anon_sym_U_DQUOTE] = ACTIONS(3410), + [anon_sym_u8_DQUOTE] = ACTIONS(3410), + [anon_sym_DQUOTE] = ACTIONS(3410), + [sym_true] = ACTIONS(3408), + [sym_false] = ACTIONS(3408), + [anon_sym_NULL] = ACTIONS(3408), + [anon_sym_nullptr] = ACTIONS(3408), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3408), + [anon_sym_decltype] = ACTIONS(3408), + [anon_sym_explicit] = ACTIONS(3408), + [anon_sym_export] = ACTIONS(3408), + [anon_sym_module] = ACTIONS(3408), + [anon_sym_import] = ACTIONS(3408), + [anon_sym_template] = ACTIONS(3408), + [anon_sym_operator] = ACTIONS(3408), + [anon_sym_try] = ACTIONS(3408), + [anon_sym_delete] = ACTIONS(3408), + [anon_sym_throw] = ACTIONS(3408), + [anon_sym_namespace] = ACTIONS(3408), + [anon_sym_static_assert] = ACTIONS(3408), + [anon_sym_concept] = ACTIONS(3408), + [anon_sym_co_return] = ACTIONS(3408), + [anon_sym_co_yield] = ACTIONS(3408), + [anon_sym_R_DQUOTE] = ACTIONS(3410), + [anon_sym_LR_DQUOTE] = ACTIONS(3410), + [anon_sym_uR_DQUOTE] = ACTIONS(3410), + [anon_sym_UR_DQUOTE] = ACTIONS(3410), + [anon_sym_u8R_DQUOTE] = ACTIONS(3410), + [anon_sym_co_await] = ACTIONS(3408), + [anon_sym_new] = ACTIONS(3408), + [anon_sym_requires] = ACTIONS(3408), + [anon_sym_CARET_CARET] = ACTIONS(3410), + [anon_sym_LBRACK_COLON] = ACTIONS(3410), + [sym_this] = ACTIONS(3408), + }, + [STATE(318)] = { + [sym_type_qualifier] = STATE(5087), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7508), + [sym_sized_type_specifier] = STATE(4430), + [sym_enum_specifier] = STATE(4430), + [sym_struct_specifier] = STATE(4430), + [sym_union_specifier] = STATE(4430), + [sym_expression] = STATE(6561), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_type_descriptor] = STATE(9581), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_placeholder_type_specifier] = STATE(4430), + [sym_decltype_auto] = STATE(4426), + [sym_decltype] = STATE(4373), + [sym_class_specifier] = STATE(4430), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4430), + [sym_template_type] = STATE(4627), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_type_parameter_pack_expansion] = STATE(9706), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7921), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(4714), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(4988), + [sym__splice_specialization_specifier] = STATE(4305), + [sym_splice_type_specifier] = STATE(4673), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [aux_sym__type_definition_type_repeat1] = STATE(5087), + [aux_sym_sized_type_specifier_repeat1] = STATE(6642), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_signed] = ACTIONS(3200), + [anon_sym_unsigned] = ACTIONS(3200), + [anon_sym_long] = ACTIONS(3200), + [anon_sym_short] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_GT2] = ACTIONS(3412), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(319)] = { + [sym_type_qualifier] = STATE(5087), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7508), + [sym_sized_type_specifier] = STATE(4430), + [sym_enum_specifier] = STATE(4430), + [sym_struct_specifier] = STATE(4430), + [sym_union_specifier] = STATE(4430), + [sym_expression] = STATE(6620), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_type_descriptor] = STATE(9432), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_placeholder_type_specifier] = STATE(4430), + [sym_decltype_auto] = STATE(4426), + [sym_decltype] = STATE(4373), + [sym_class_specifier] = STATE(4430), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4430), + [sym_template_type] = STATE(4627), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_type_parameter_pack_expansion] = STATE(9888), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7921), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(4714), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(4988), + [sym__splice_specialization_specifier] = STATE(4305), + [sym_splice_type_specifier] = STATE(4673), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [aux_sym__type_definition_type_repeat1] = STATE(5087), + [aux_sym_sized_type_specifier_repeat1] = STATE(6642), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_signed] = ACTIONS(3200), + [anon_sym_unsigned] = ACTIONS(3200), + [anon_sym_long] = ACTIONS(3200), + [anon_sym_short] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_GT2] = ACTIONS(3414), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(320)] = { + [sym_type_qualifier] = STATE(5087), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7508), + [sym_sized_type_specifier] = STATE(4430), + [sym_enum_specifier] = STATE(4430), + [sym_struct_specifier] = STATE(4430), + [sym_union_specifier] = STATE(4430), + [sym_expression] = STATE(6668), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_type_descriptor] = STATE(9588), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_placeholder_type_specifier] = STATE(4430), + [sym_decltype_auto] = STATE(4426), + [sym_decltype] = STATE(4373), + [sym_class_specifier] = STATE(4430), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4430), + [sym_template_type] = STATE(4627), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_type_parameter_pack_expansion] = STATE(9701), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7921), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(4714), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(4988), + [sym__splice_specialization_specifier] = STATE(4305), + [sym_splice_type_specifier] = STATE(4673), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [aux_sym__type_definition_type_repeat1] = STATE(5087), + [aux_sym_sized_type_specifier_repeat1] = STATE(6642), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_signed] = ACTIONS(3200), + [anon_sym_unsigned] = ACTIONS(3200), + [anon_sym_long] = ACTIONS(3200), + [anon_sym_short] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_GT2] = ACTIONS(3416), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(321)] = { + [sym_type_qualifier] = STATE(5087), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7508), + [sym_sized_type_specifier] = STATE(4430), + [sym_enum_specifier] = STATE(4430), + [sym_struct_specifier] = STATE(4430), + [sym_union_specifier] = STATE(4430), + [sym_expression] = STATE(6673), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_type_descriptor] = STATE(9653), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_placeholder_type_specifier] = STATE(4430), + [sym_decltype_auto] = STATE(4426), + [sym_decltype] = STATE(4373), + [sym_class_specifier] = STATE(4430), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4430), + [sym_template_type] = STATE(4627), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_type_parameter_pack_expansion] = STATE(9769), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7921), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(4714), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(4988), + [sym__splice_specialization_specifier] = STATE(4305), + [sym_splice_type_specifier] = STATE(4673), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [aux_sym__type_definition_type_repeat1] = STATE(5087), + [aux_sym_sized_type_specifier_repeat1] = STATE(6642), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_signed] = ACTIONS(3200), + [anon_sym_unsigned] = ACTIONS(3200), + [anon_sym_long] = ACTIONS(3200), + [anon_sym_short] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_GT2] = ACTIONS(3418), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(322)] = { + [sym_identifier] = ACTIONS(3155), + [aux_sym_preproc_include_token1] = ACTIONS(3155), + [aux_sym_preproc_def_token1] = ACTIONS(3155), + [aux_sym_preproc_if_token1] = ACTIONS(3155), + [aux_sym_preproc_if_token2] = ACTIONS(3155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3155), + [aux_sym_preproc_else_token1] = ACTIONS(3155), + [aux_sym_preproc_elif_token1] = ACTIONS(3155), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3155), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3155), + [sym_preproc_directive] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_AMP_AMP] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym___extension__] = ACTIONS(3155), + [anon_sym_typedef] = ACTIONS(3155), + [anon_sym_virtual] = ACTIONS(3155), + [anon_sym_extern] = ACTIONS(3155), + [anon_sym___attribute__] = ACTIONS(3155), + [anon_sym___attribute] = ACTIONS(3155), + [anon_sym_using] = ACTIONS(3155), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), + [anon_sym___declspec] = ACTIONS(3155), + [anon_sym___based] = ACTIONS(3155), + [anon_sym___cdecl] = ACTIONS(3155), + [anon_sym___clrcall] = ACTIONS(3155), + [anon_sym___stdcall] = ACTIONS(3155), + [anon_sym___fastcall] = ACTIONS(3155), + [anon_sym___thiscall] = ACTIONS(3155), + [anon_sym___vectorcall] = ACTIONS(3155), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_static] = ACTIONS(3155), + [anon_sym_register] = ACTIONS(3155), + [anon_sym_inline] = ACTIONS(3155), + [anon_sym___inline] = ACTIONS(3155), + [anon_sym___inline__] = ACTIONS(3155), + [anon_sym___forceinline] = ACTIONS(3155), + [anon_sym_thread_local] = ACTIONS(3155), + [anon_sym___thread] = ACTIONS(3155), + [anon_sym_const] = ACTIONS(3155), + [anon_sym_constexpr] = ACTIONS(3155), + [anon_sym_volatile] = ACTIONS(3155), + [anon_sym_restrict] = ACTIONS(3155), + [anon_sym___restrict__] = ACTIONS(3155), + [anon_sym__Atomic] = ACTIONS(3155), + [anon_sym__Noreturn] = ACTIONS(3155), + [anon_sym_noreturn] = ACTIONS(3155), + [anon_sym__Nonnull] = ACTIONS(3155), + [anon_sym_mutable] = ACTIONS(3155), + [anon_sym_constinit] = ACTIONS(3155), + [anon_sym_consteval] = ACTIONS(3155), + [anon_sym_alignas] = ACTIONS(3155), + [anon_sym__Alignas] = ACTIONS(3155), + [sym_primitive_type] = ACTIONS(3155), + [anon_sym_enum] = ACTIONS(3155), + [anon_sym_class] = ACTIONS(3155), + [anon_sym_struct] = ACTIONS(3155), + [anon_sym_union] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_else] = ACTIONS(3155), + [anon_sym_switch] = ACTIONS(3155), + [anon_sym_case] = ACTIONS(3155), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_do] = ACTIONS(3155), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_break] = ACTIONS(3155), + [anon_sym_continue] = ACTIONS(3155), + [anon_sym_goto] = ACTIONS(3155), + [anon_sym___try] = ACTIONS(3155), + [anon_sym___leave] = ACTIONS(3155), + [anon_sym_not] = ACTIONS(3155), + [anon_sym_compl] = ACTIONS(3155), + [anon_sym_DASH_DASH] = ACTIONS(3153), + [anon_sym_PLUS_PLUS] = ACTIONS(3153), + [anon_sym_sizeof] = ACTIONS(3155), + [anon_sym___alignof__] = ACTIONS(3155), + [anon_sym___alignof] = ACTIONS(3155), + [anon_sym__alignof] = ACTIONS(3155), + [anon_sym_alignof] = ACTIONS(3155), + [anon_sym__Alignof] = ACTIONS(3155), + [anon_sym_offsetof] = ACTIONS(3155), + [anon_sym__Generic] = ACTIONS(3155), + [anon_sym_typename] = ACTIONS(3155), + [anon_sym_asm] = ACTIONS(3155), + [anon_sym___asm__] = ACTIONS(3155), + [anon_sym___asm] = ACTIONS(3155), + [sym_number_literal] = ACTIONS(3153), + [anon_sym_L_SQUOTE] = ACTIONS(3153), + [anon_sym_u_SQUOTE] = ACTIONS(3153), + [anon_sym_U_SQUOTE] = ACTIONS(3153), + [anon_sym_u8_SQUOTE] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3153), + [anon_sym_L_DQUOTE] = ACTIONS(3153), + [anon_sym_u_DQUOTE] = ACTIONS(3153), + [anon_sym_U_DQUOTE] = ACTIONS(3153), + [anon_sym_u8_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE] = ACTIONS(3153), + [sym_true] = ACTIONS(3155), + [sym_false] = ACTIONS(3155), + [anon_sym_NULL] = ACTIONS(3155), + [anon_sym_nullptr] = ACTIONS(3155), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3155), + [anon_sym_decltype] = ACTIONS(3155), + [anon_sym_explicit] = ACTIONS(3155), + [anon_sym_export] = ACTIONS(3155), + [anon_sym_module] = ACTIONS(3155), + [anon_sym_import] = ACTIONS(3155), + [anon_sym_template] = ACTIONS(3155), + [anon_sym_operator] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [anon_sym_delete] = ACTIONS(3155), + [anon_sym_throw] = ACTIONS(3155), + [anon_sym_namespace] = ACTIONS(3155), + [anon_sym_static_assert] = ACTIONS(3155), + [anon_sym_concept] = ACTIONS(3155), + [anon_sym_co_return] = ACTIONS(3155), + [anon_sym_co_yield] = ACTIONS(3155), + [anon_sym_catch] = ACTIONS(3155), + [anon_sym_R_DQUOTE] = ACTIONS(3153), + [anon_sym_LR_DQUOTE] = ACTIONS(3153), + [anon_sym_uR_DQUOTE] = ACTIONS(3153), + [anon_sym_UR_DQUOTE] = ACTIONS(3153), + [anon_sym_u8R_DQUOTE] = ACTIONS(3153), + [anon_sym_co_await] = ACTIONS(3155), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_requires] = ACTIONS(3155), + [anon_sym_CARET_CARET] = ACTIONS(3153), + [anon_sym_LBRACK_COLON] = ACTIONS(3153), + [sym_this] = ACTIONS(3155), + }, + [STATE(323)] = { + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_unaligned_ptr_modifier] = STATE(6574), + [sym_ms_pointer_modifier] = STATE(4152), + [sym__declarator] = STATE(8826), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8555), + [sym_array_declarator] = STATE(8555), + [sym_type_qualifier] = STATE(5390), + [sym_alignas_qualifier] = STATE(7511), + [sym_expression] = STATE(5117), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5427), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7942), + [sym_qualified_identifier] = STATE(5371), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5390), + [aux_sym_pointer_declarator_repeat1] = STATE(4152), + [sym_identifier] = ACTIONS(3420), + [anon_sym_LPAREN2] = ACTIONS(2226), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym___extension__] = ACTIONS(3422), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3266), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3266), + [sym_ms_signed_ptr_modifier] = ACTIONS(3266), + [anon_sym__unaligned] = ACTIONS(3268), + [anon_sym___unaligned] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(61), + [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__Nonnull] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(324)] = { + [sym_preproc_def] = STATE(364), + [sym_preproc_function_def] = STATE(364), + [sym_preproc_call] = STATE(364), + [sym_preproc_if_in_field_declaration_list] = STATE(364), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(364), + [sym_preproc_else_in_field_declaration_list] = STATE(10942), + [sym_preproc_elif_in_field_declaration_list] = STATE(10942), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(10942), + [sym_type_definition] = STATE(364), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8093), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8674), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(364), + [sym_field_declaration] = STATE(364), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2456), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(364), + [sym_operator_cast] = STATE(9218), + [sym_inline_method_definition] = STATE(364), + [sym__constructor_specifiers] = STATE(2456), + [sym_operator_cast_definition] = STATE(364), + [sym_operator_cast_declaration] = STATE(364), + [sym_constructor_or_destructor_definition] = STATE(364), + [sym_constructor_or_destructor_declaration] = STATE(364), + [sym_friend_declaration] = STATE(364), + [sym_access_specifier] = STATE(11699), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(364), + [sym_alias_declaration] = STATE(364), + [sym_static_assert_declaration] = STATE(364), + [sym_consteval_block_declaration] = STATE(364), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9218), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(364), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9608), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2456), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_if_token2] = ACTIONS(3430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), + [aux_sym_preproc_else_token1] = ACTIONS(3434), + [aux_sym_preproc_elif_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3450), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3462), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(3480), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3482), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(3484), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(325)] = { + [sym_identifier] = ACTIONS(3163), + [aux_sym_preproc_include_token1] = ACTIONS(3163), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [anon_sym_COMMA] = ACTIONS(3488), + [aux_sym_preproc_if_token1] = ACTIONS(3163), + [aux_sym_preproc_if_token2] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), + [aux_sym_preproc_else_token1] = ACTIONS(3163), + [aux_sym_preproc_elif_token1] = ACTIONS(3163), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3163), + [sym_preproc_directive] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3488), + [anon_sym___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_extern] = ACTIONS(3163), + [anon_sym___attribute__] = ACTIONS(3163), + [anon_sym___attribute] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3163), + [anon_sym___based] = ACTIONS(3163), + [anon_sym___cdecl] = ACTIONS(3163), + [anon_sym___clrcall] = ACTIONS(3163), + [anon_sym___stdcall] = ACTIONS(3163), + [anon_sym___fastcall] = ACTIONS(3163), + [anon_sym___thiscall] = ACTIONS(3163), + [anon_sym___vectorcall] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym___inline] = ACTIONS(3163), + [anon_sym___inline__] = ACTIONS(3163), + [anon_sym___forceinline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym___thread] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym___restrict__] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym__Noreturn] = ACTIONS(3163), + [anon_sym_noreturn] = ACTIONS(3163), + [anon_sym__Nonnull] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym__Alignas] = ACTIONS(3163), + [sym_primitive_type] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_switch] = ACTIONS(3163), + [anon_sym_case] = ACTIONS(3163), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_goto] = ACTIONS(3163), + [anon_sym___try] = ACTIONS(3163), + [anon_sym___leave] = ACTIONS(3163), + [anon_sym_not] = ACTIONS(3163), + [anon_sym_compl] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3163), + [anon_sym___alignof__] = ACTIONS(3163), + [anon_sym___alignof] = ACTIONS(3163), + [anon_sym__alignof] = ACTIONS(3163), + [anon_sym_alignof] = ACTIONS(3163), + [anon_sym__Alignof] = ACTIONS(3163), + [anon_sym_offsetof] = ACTIONS(3163), + [anon_sym__Generic] = ACTIONS(3163), + [anon_sym_typename] = ACTIONS(3163), + [anon_sym_asm] = ACTIONS(3163), + [anon_sym___asm__] = ACTIONS(3163), + [anon_sym___asm] = ACTIONS(3163), + [sym_number_literal] = ACTIONS(3161), + [anon_sym_L_SQUOTE] = ACTIONS(3161), + [anon_sym_u_SQUOTE] = ACTIONS(3161), + [anon_sym_U_SQUOTE] = ACTIONS(3161), + [anon_sym_u8_SQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_L_DQUOTE] = ACTIONS(3161), + [anon_sym_u_DQUOTE] = ACTIONS(3161), + [anon_sym_U_DQUOTE] = ACTIONS(3161), + [anon_sym_u8_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [anon_sym_NULL] = ACTIONS(3163), + [anon_sym_nullptr] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_export] = ACTIONS(3163), + [anon_sym_module] = ACTIONS(3163), + [anon_sym_import] = ACTIONS(3163), + [anon_sym_template] = ACTIONS(3163), + [anon_sym_operator] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_delete] = ACTIONS(3163), + [anon_sym_throw] = ACTIONS(3163), + [anon_sym_namespace] = ACTIONS(3163), + [anon_sym_static_assert] = ACTIONS(3163), + [anon_sym_concept] = ACTIONS(3163), + [anon_sym_co_return] = ACTIONS(3163), + [anon_sym_co_yield] = ACTIONS(3163), + [anon_sym_R_DQUOTE] = ACTIONS(3161), + [anon_sym_LR_DQUOTE] = ACTIONS(3161), + [anon_sym_uR_DQUOTE] = ACTIONS(3161), + [anon_sym_UR_DQUOTE] = ACTIONS(3161), + [anon_sym_u8R_DQUOTE] = ACTIONS(3161), + [anon_sym_co_await] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_requires] = ACTIONS(3163), + [anon_sym_CARET_CARET] = ACTIONS(3161), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), + [sym_this] = ACTIONS(3163), + }, + [STATE(326)] = { + [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(3389), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3384), + [anon_sym_PLUS] = ACTIONS(3384), + [anon_sym_STAR] = ACTIONS(3389), + [anon_sym_AMP_AMP] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3384), + [anon_sym_SEMI] = ACTIONS(3389), + [anon_sym___extension__] = ACTIONS(3384), + [anon_sym_typedef] = ACTIONS(3384), + [anon_sym_virtual] = ACTIONS(3384), + [anon_sym_extern] = ACTIONS(3384), + [anon_sym___attribute__] = ACTIONS(3384), + [anon_sym___attribute] = ACTIONS(3384), + [anon_sym_using] = ACTIONS(3384), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3389), + [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(3389), + [anon_sym_signed] = ACTIONS(3384), + [anon_sym_unsigned] = ACTIONS(3384), + [anon_sym_long] = ACTIONS(3384), + [anon_sym_short] = ACTIONS(3384), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3384), + [anon_sym_register] = ACTIONS(3384), + [anon_sym_inline] = ACTIONS(3384), + [anon_sym___inline] = ACTIONS(3384), + [anon_sym___inline__] = ACTIONS(3384), + [anon_sym___forceinline] = ACTIONS(3384), + [anon_sym_thread_local] = ACTIONS(3384), + [anon_sym___thread] = 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__Nonnull] = ACTIONS(3384), + [anon_sym_mutable] = ACTIONS(3384), + [anon_sym_constinit] = ACTIONS(3384), + [anon_sym_consteval] = ACTIONS(3384), + [anon_sym_alignas] = ACTIONS(3384), + [anon_sym__Alignas] = 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_else] = 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___try] = ACTIONS(3384), + [anon_sym___leave] = ACTIONS(3384), + [anon_sym_not] = ACTIONS(3384), + [anon_sym_compl] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3389), + [anon_sym_PLUS_PLUS] = ACTIONS(3389), + [anon_sym_sizeof] = ACTIONS(3384), + [anon_sym___alignof__] = ACTIONS(3384), + [anon_sym___alignof] = ACTIONS(3384), + [anon_sym__alignof] = ACTIONS(3384), + [anon_sym_alignof] = ACTIONS(3384), + [anon_sym__Alignof] = ACTIONS(3384), + [anon_sym_offsetof] = ACTIONS(3384), + [anon_sym__Generic] = ACTIONS(3384), + [anon_sym_typename] = ACTIONS(3384), + [anon_sym_asm] = ACTIONS(3384), + [anon_sym___asm__] = ACTIONS(3384), + [anon_sym___asm] = ACTIONS(3384), + [sym_number_literal] = ACTIONS(3389), + [anon_sym_L_SQUOTE] = ACTIONS(3389), + [anon_sym_u_SQUOTE] = ACTIONS(3389), + [anon_sym_U_SQUOTE] = ACTIONS(3389), + [anon_sym_u8_SQUOTE] = ACTIONS(3389), + [anon_sym_SQUOTE] = ACTIONS(3389), + [anon_sym_L_DQUOTE] = ACTIONS(3389), + [anon_sym_u_DQUOTE] = ACTIONS(3389), + [anon_sym_U_DQUOTE] = ACTIONS(3389), + [anon_sym_u8_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(3389), + [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_explicit] = ACTIONS(3384), + [anon_sym_export] = ACTIONS(3384), + [anon_sym_module] = ACTIONS(3384), + [anon_sym_import] = 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_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(3389), + [anon_sym_LR_DQUOTE] = ACTIONS(3389), + [anon_sym_uR_DQUOTE] = ACTIONS(3389), + [anon_sym_UR_DQUOTE] = ACTIONS(3389), + [anon_sym_u8R_DQUOTE] = ACTIONS(3389), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3384), + [anon_sym_requires] = ACTIONS(3384), + [anon_sym_CARET_CARET] = ACTIONS(3389), + [anon_sym_LBRACK_COLON] = ACTIONS(3389), + [sym_this] = ACTIONS(3384), + }, + [STATE(327)] = { + [sym_preproc_def] = STATE(555), + [sym_preproc_function_def] = STATE(555), + [sym_preproc_call] = STATE(555), + [sym_preproc_if_in_field_declaration_list] = STATE(555), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), + [sym_preproc_else_in_field_declaration_list] = STATE(10750), + [sym_preproc_elif_in_field_declaration_list] = STATE(10750), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(10750), + [sym_type_definition] = STATE(555), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8093), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8674), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(555), + [sym_field_declaration] = STATE(555), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2456), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(555), + [sym_operator_cast] = STATE(9218), + [sym_inline_method_definition] = STATE(555), + [sym__constructor_specifiers] = STATE(2456), + [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_access_specifier] = STATE(11699), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(555), + [sym_alias_declaration] = STATE(555), + [sym_static_assert_declaration] = STATE(555), + [sym_consteval_block_declaration] = STATE(555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9218), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9608), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2456), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_if_token2] = ACTIONS(3490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), + [aux_sym_preproc_else_token1] = ACTIONS(3434), + [aux_sym_preproc_elif_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3462), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(3480), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3482), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(3484), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(328)] = { + [sym_identifier] = ACTIONS(3310), + [aux_sym_preproc_include_token1] = ACTIONS(3310), + [aux_sym_preproc_def_token1] = ACTIONS(3310), + [aux_sym_preproc_if_token1] = ACTIONS(3310), + [aux_sym_preproc_if_token2] = ACTIONS(3310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3310), + [aux_sym_preproc_else_token1] = ACTIONS(3310), + [aux_sym_preproc_elif_token1] = ACTIONS(3310), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3310), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3310), + [sym_preproc_directive] = ACTIONS(3310), + [anon_sym_LPAREN2] = ACTIONS(3315), + [anon_sym_BANG] = ACTIONS(3315), + [anon_sym_TILDE] = ACTIONS(3315), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3315), + [anon_sym_AMP_AMP] = ACTIONS(3315), + [anon_sym_AMP] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3315), + [anon_sym___extension__] = ACTIONS(3310), + [anon_sym_typedef] = ACTIONS(3310), + [anon_sym_virtual] = ACTIONS(3310), + [anon_sym_extern] = ACTIONS(3310), + [anon_sym___attribute__] = ACTIONS(3310), + [anon_sym___attribute] = ACTIONS(3310), + [anon_sym_using] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3315), + [anon_sym___declspec] = ACTIONS(3310), + [anon_sym___based] = ACTIONS(3310), + [anon_sym___cdecl] = ACTIONS(3310), + [anon_sym___clrcall] = ACTIONS(3310), + [anon_sym___stdcall] = ACTIONS(3310), + [anon_sym___fastcall] = ACTIONS(3310), + [anon_sym___thiscall] = ACTIONS(3310), + [anon_sym___vectorcall] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3315), + [anon_sym_signed] = ACTIONS(3310), + [anon_sym_unsigned] = ACTIONS(3310), + [anon_sym_long] = ACTIONS(3310), + [anon_sym_short] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3310), + [anon_sym_static] = ACTIONS(3310), + [anon_sym_register] = ACTIONS(3310), + [anon_sym_inline] = ACTIONS(3310), + [anon_sym___inline] = ACTIONS(3310), + [anon_sym___inline__] = ACTIONS(3310), + [anon_sym___forceinline] = ACTIONS(3310), + [anon_sym_thread_local] = ACTIONS(3310), + [anon_sym___thread] = ACTIONS(3310), + [anon_sym_const] = ACTIONS(3310), + [anon_sym_constexpr] = ACTIONS(3310), + [anon_sym_volatile] = ACTIONS(3310), + [anon_sym_restrict] = ACTIONS(3310), + [anon_sym___restrict__] = ACTIONS(3310), + [anon_sym__Atomic] = ACTIONS(3310), + [anon_sym__Noreturn] = ACTIONS(3310), + [anon_sym_noreturn] = ACTIONS(3310), + [anon_sym__Nonnull] = ACTIONS(3310), + [anon_sym_mutable] = ACTIONS(3310), + [anon_sym_constinit] = ACTIONS(3310), + [anon_sym_consteval] = ACTIONS(3310), + [anon_sym_alignas] = ACTIONS(3310), + [anon_sym__Alignas] = ACTIONS(3310), + [sym_primitive_type] = ACTIONS(3310), + [anon_sym_enum] = ACTIONS(3310), + [anon_sym_class] = ACTIONS(3310), + [anon_sym_struct] = ACTIONS(3310), + [anon_sym_union] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_switch] = ACTIONS(3310), + [anon_sym_case] = ACTIONS(3310), + [anon_sym_default] = ACTIONS(3310), + [anon_sym_while] = ACTIONS(3310), + [anon_sym_do] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_goto] = ACTIONS(3310), + [anon_sym___try] = ACTIONS(3310), + [anon_sym___leave] = ACTIONS(3310), + [anon_sym_not] = ACTIONS(3310), + [anon_sym_compl] = ACTIONS(3310), + [anon_sym_DASH_DASH] = ACTIONS(3315), + [anon_sym_PLUS_PLUS] = ACTIONS(3315), + [anon_sym_sizeof] = ACTIONS(3310), + [anon_sym___alignof__] = ACTIONS(3310), + [anon_sym___alignof] = ACTIONS(3310), + [anon_sym__alignof] = ACTIONS(3310), + [anon_sym_alignof] = ACTIONS(3310), + [anon_sym__Alignof] = ACTIONS(3310), + [anon_sym_offsetof] = ACTIONS(3310), + [anon_sym__Generic] = ACTIONS(3310), + [anon_sym_typename] = ACTIONS(3310), + [anon_sym_asm] = ACTIONS(3310), + [anon_sym___asm__] = ACTIONS(3310), + [anon_sym___asm] = ACTIONS(3310), + [sym_number_literal] = ACTIONS(3315), + [anon_sym_L_SQUOTE] = ACTIONS(3315), + [anon_sym_u_SQUOTE] = ACTIONS(3315), + [anon_sym_U_SQUOTE] = ACTIONS(3315), + [anon_sym_u8_SQUOTE] = ACTIONS(3315), + [anon_sym_SQUOTE] = ACTIONS(3315), + [anon_sym_L_DQUOTE] = ACTIONS(3315), + [anon_sym_u_DQUOTE] = ACTIONS(3315), + [anon_sym_U_DQUOTE] = ACTIONS(3315), + [anon_sym_u8_DQUOTE] = ACTIONS(3315), + [anon_sym_DQUOTE] = ACTIONS(3315), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [anon_sym_NULL] = ACTIONS(3310), + [anon_sym_nullptr] = ACTIONS(3310), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3310), + [anon_sym_decltype] = ACTIONS(3310), + [anon_sym_explicit] = ACTIONS(3310), + [anon_sym_export] = ACTIONS(3310), + [anon_sym_module] = ACTIONS(3310), + [anon_sym_import] = ACTIONS(3310), + [anon_sym_template] = ACTIONS(3310), + [anon_sym_operator] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_delete] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_namespace] = ACTIONS(3310), + [anon_sym_static_assert] = ACTIONS(3310), + [anon_sym_concept] = ACTIONS(3310), + [anon_sym_co_return] = ACTIONS(3310), + [anon_sym_co_yield] = ACTIONS(3310), + [anon_sym_R_DQUOTE] = ACTIONS(3315), + [anon_sym_LR_DQUOTE] = ACTIONS(3315), + [anon_sym_uR_DQUOTE] = ACTIONS(3315), + [anon_sym_UR_DQUOTE] = ACTIONS(3315), + [anon_sym_u8R_DQUOTE] = ACTIONS(3315), + [anon_sym_co_await] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3310), + [anon_sym_requires] = ACTIONS(3310), + [anon_sym_CARET_CARET] = ACTIONS(3315), + [anon_sym_LBRACK_COLON] = ACTIONS(3315), + [sym_this] = ACTIONS(3310), + }, + [STATE(329)] = { + [sym_preproc_def] = STATE(331), + [sym_preproc_function_def] = STATE(331), + [sym_preproc_call] = STATE(331), + [sym_preproc_if_in_field_declaration_list] = STATE(331), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(331), + [sym_preproc_else_in_field_declaration_list] = STATE(10796), + [sym_preproc_elif_in_field_declaration_list] = STATE(10796), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(10796), + [sym_type_definition] = STATE(331), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8093), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8674), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(331), + [sym_field_declaration] = STATE(331), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2456), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(331), + [sym_operator_cast] = STATE(9218), + [sym_inline_method_definition] = STATE(331), + [sym__constructor_specifiers] = STATE(2456), + [sym_operator_cast_definition] = STATE(331), + [sym_operator_cast_declaration] = STATE(331), + [sym_constructor_or_destructor_definition] = STATE(331), + [sym_constructor_or_destructor_declaration] = STATE(331), + [sym_friend_declaration] = STATE(331), + [sym_access_specifier] = STATE(11699), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(331), + [sym_alias_declaration] = STATE(331), + [sym_static_assert_declaration] = STATE(331), + [sym_consteval_block_declaration] = STATE(331), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9218), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(331), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9608), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2456), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_if_token2] = ACTIONS(3494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), + [aux_sym_preproc_else_token1] = ACTIONS(3434), + [aux_sym_preproc_elif_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3496), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3462), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(3480), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3482), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(3484), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(330)] = { + [sym_preproc_def] = STATE(332), + [sym_preproc_function_def] = STATE(332), + [sym_preproc_call] = STATE(332), + [sym_preproc_if_in_field_declaration_list] = STATE(332), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(332), + [sym_preproc_else_in_field_declaration_list] = STATE(11637), + [sym_preproc_elif_in_field_declaration_list] = STATE(11637), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11637), + [sym_type_definition] = STATE(332), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8093), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8674), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(332), + [sym_field_declaration] = STATE(332), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2456), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(332), + [sym_operator_cast] = STATE(9218), + [sym_inline_method_definition] = STATE(332), + [sym__constructor_specifiers] = STATE(2456), + [sym_operator_cast_definition] = STATE(332), + [sym_operator_cast_declaration] = STATE(332), + [sym_constructor_or_destructor_definition] = STATE(332), + [sym_constructor_or_destructor_declaration] = STATE(332), + [sym_friend_declaration] = STATE(332), + [sym_access_specifier] = STATE(11699), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(332), + [sym_alias_declaration] = STATE(332), + [sym_static_assert_declaration] = STATE(332), + [sym_consteval_block_declaration] = STATE(332), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9218), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(332), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9608), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2456), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_if_token2] = ACTIONS(3498), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), + [aux_sym_preproc_else_token1] = ACTIONS(3434), + [aux_sym_preproc_elif_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3500), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3462), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(3480), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3482), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(3484), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(331)] = { + [sym_preproc_def] = STATE(555), + [sym_preproc_function_def] = STATE(555), + [sym_preproc_call] = STATE(555), + [sym_preproc_if_in_field_declaration_list] = STATE(555), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), + [sym_preproc_else_in_field_declaration_list] = STATE(11670), + [sym_preproc_elif_in_field_declaration_list] = STATE(11670), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11670), + [sym_type_definition] = STATE(555), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8093), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8674), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(555), + [sym_field_declaration] = STATE(555), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2456), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(555), + [sym_operator_cast] = STATE(9218), + [sym_inline_method_definition] = STATE(555), + [sym__constructor_specifiers] = STATE(2456), + [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_access_specifier] = STATE(11699), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(555), + [sym_alias_declaration] = STATE(555), + [sym_static_assert_declaration] = STATE(555), + [sym_consteval_block_declaration] = STATE(555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9218), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9608), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2456), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_if_token2] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), + [aux_sym_preproc_else_token1] = ACTIONS(3434), + [aux_sym_preproc_elif_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3462), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(3480), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3482), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(3484), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(332)] = { + [sym_preproc_def] = STATE(555), + [sym_preproc_function_def] = STATE(555), + [sym_preproc_call] = STATE(555), + [sym_preproc_if_in_field_declaration_list] = STATE(555), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), + [sym_preproc_else_in_field_declaration_list] = STATE(11585), + [sym_preproc_elif_in_field_declaration_list] = STATE(11585), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11585), + [sym_type_definition] = STATE(555), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8093), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8674), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(555), + [sym_field_declaration] = STATE(555), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2456), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(555), + [sym_operator_cast] = STATE(9218), + [sym_inline_method_definition] = STATE(555), + [sym__constructor_specifiers] = STATE(2456), + [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_access_specifier] = STATE(11699), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(555), + [sym_alias_declaration] = STATE(555), + [sym_static_assert_declaration] = STATE(555), + [sym_consteval_block_declaration] = STATE(555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9218), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9608), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2456), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_if_token2] = ACTIONS(3504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), + [aux_sym_preproc_else_token1] = ACTIONS(3434), + [aux_sym_preproc_elif_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3462), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(3480), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3482), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(3484), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(333)] = { + [sym_expression] = STATE(6487), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(3106), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(3225), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3123), + [anon_sym_typedef] = ACTIONS(3506), + [anon_sym_virtual] = ACTIONS(3128), + [anon_sym_extern] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym___declspec] = ACTIONS(3128), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_register] = ACTIONS(3128), + [anon_sym_inline] = ACTIONS(3128), + [anon_sym___inline] = ACTIONS(3128), + [anon_sym___inline__] = ACTIONS(3128), + [anon_sym___forceinline] = ACTIONS(3128), + [anon_sym_thread_local] = ACTIONS(3128), + [anon_sym___thread] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3139), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(3145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(3148), + [sym_this] = ACTIONS(237), + }, + [STATE(334)] = { + [sym_type_qualifier] = STATE(5087), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7508), + [sym_sized_type_specifier] = STATE(4430), + [sym_enum_specifier] = STATE(4430), + [sym_struct_specifier] = STATE(4430), + [sym_union_specifier] = STATE(4430), + [sym_expression] = STATE(6876), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_type_descriptor] = STATE(10133), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_placeholder_type_specifier] = STATE(4430), + [sym_decltype_auto] = STATE(4426), + [sym_decltype] = STATE(4373), + [sym_class_specifier] = STATE(4430), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4430), + [sym_template_type] = STATE(4627), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_type_parameter_pack_expansion] = STATE(10482), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7921), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(4714), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(4988), + [sym__splice_specialization_specifier] = STATE(4305), + [sym_splice_type_specifier] = STATE(4673), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [aux_sym__type_definition_type_repeat1] = STATE(5087), + [aux_sym_sized_type_specifier_repeat1] = STATE(6642), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_signed] = ACTIONS(3200), + [anon_sym_unsigned] = ACTIONS(3200), + [anon_sym_long] = ACTIONS(3200), + [anon_sym_short] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(1670), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -104957,11 +107436,3807 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1892), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_struct] = ACTIONS(3208), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(335)] = { + [sym_preproc_def] = STATE(337), + [sym_preproc_function_def] = STATE(337), + [sym_preproc_call] = STATE(337), + [sym_preproc_if_in_field_declaration_list] = STATE(337), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(337), + [sym_preproc_else_in_field_declaration_list] = STATE(10691), + [sym_preproc_elif_in_field_declaration_list] = STATE(10691), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(10691), + [sym_type_definition] = STATE(337), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8093), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8674), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(337), + [sym_field_declaration] = STATE(337), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2456), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(337), + [sym_operator_cast] = STATE(9218), + [sym_inline_method_definition] = STATE(337), + [sym__constructor_specifiers] = STATE(2456), + [sym_operator_cast_definition] = STATE(337), + [sym_operator_cast_declaration] = STATE(337), + [sym_constructor_or_destructor_definition] = STATE(337), + [sym_constructor_or_destructor_declaration] = STATE(337), + [sym_friend_declaration] = STATE(337), + [sym_access_specifier] = STATE(11699), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(337), + [sym_alias_declaration] = STATE(337), + [sym_static_assert_declaration] = STATE(337), + [sym_consteval_block_declaration] = STATE(337), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9218), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(337), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9608), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2456), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_if_token2] = ACTIONS(3508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), + [aux_sym_preproc_else_token1] = ACTIONS(3434), + [aux_sym_preproc_elif_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3510), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3462), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(3480), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3482), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(3484), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(336)] = { + [sym_preproc_def] = STATE(338), + [sym_preproc_function_def] = STATE(338), + [sym_preproc_call] = STATE(338), + [sym_preproc_if_in_field_declaration_list] = STATE(338), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(338), + [sym_preproc_else_in_field_declaration_list] = STATE(10880), + [sym_preproc_elif_in_field_declaration_list] = STATE(10880), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(10880), + [sym_type_definition] = STATE(338), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8093), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8674), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(338), + [sym_field_declaration] = STATE(338), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2456), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(338), + [sym_operator_cast] = STATE(9218), + [sym_inline_method_definition] = STATE(338), + [sym__constructor_specifiers] = STATE(2456), + [sym_operator_cast_definition] = STATE(338), + [sym_operator_cast_declaration] = STATE(338), + [sym_constructor_or_destructor_definition] = STATE(338), + [sym_constructor_or_destructor_declaration] = STATE(338), + [sym_friend_declaration] = STATE(338), + [sym_access_specifier] = STATE(11699), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(338), + [sym_alias_declaration] = STATE(338), + [sym_static_assert_declaration] = STATE(338), + [sym_consteval_block_declaration] = STATE(338), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9218), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(338), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9608), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2456), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_if_token2] = ACTIONS(3512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), + [aux_sym_preproc_else_token1] = ACTIONS(3434), + [aux_sym_preproc_elif_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3514), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3462), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(3480), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3482), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(3484), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(337)] = { + [sym_preproc_def] = STATE(555), + [sym_preproc_function_def] = STATE(555), + [sym_preproc_call] = STATE(555), + [sym_preproc_if_in_field_declaration_list] = STATE(555), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), + [sym_preproc_else_in_field_declaration_list] = STATE(10888), + [sym_preproc_elif_in_field_declaration_list] = STATE(10888), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(10888), + [sym_type_definition] = STATE(555), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8093), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8674), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(555), + [sym_field_declaration] = STATE(555), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2456), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(555), + [sym_operator_cast] = STATE(9218), + [sym_inline_method_definition] = STATE(555), + [sym__constructor_specifiers] = STATE(2456), + [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_access_specifier] = STATE(11699), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(555), + [sym_alias_declaration] = STATE(555), + [sym_static_assert_declaration] = STATE(555), + [sym_consteval_block_declaration] = STATE(555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9218), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9608), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2456), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_if_token2] = ACTIONS(3516), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), + [aux_sym_preproc_else_token1] = ACTIONS(3434), + [aux_sym_preproc_elif_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3462), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(3480), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3482), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(3484), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(338)] = { + [sym_preproc_def] = STATE(555), + [sym_preproc_function_def] = STATE(555), + [sym_preproc_call] = STATE(555), + [sym_preproc_if_in_field_declaration_list] = STATE(555), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), + [sym_preproc_else_in_field_declaration_list] = STATE(10998), + [sym_preproc_elif_in_field_declaration_list] = STATE(10998), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(10998), + [sym_type_definition] = STATE(555), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8093), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8674), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(555), + [sym_field_declaration] = STATE(555), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2456), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(555), + [sym_operator_cast] = STATE(9218), + [sym_inline_method_definition] = STATE(555), + [sym__constructor_specifiers] = STATE(2456), + [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_access_specifier] = STATE(11699), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(555), + [sym_alias_declaration] = STATE(555), + [sym_static_assert_declaration] = STATE(555), + [sym_consteval_block_declaration] = STATE(555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9218), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9608), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2456), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_if_token2] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), + [aux_sym_preproc_else_token1] = ACTIONS(3434), + [aux_sym_preproc_elif_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3462), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(3480), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3482), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(3484), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(339)] = { + [sym_identifier] = ACTIONS(3520), + [aux_sym_preproc_include_token1] = ACTIONS(3520), + [aux_sym_preproc_def_token1] = ACTIONS(3520), + [aux_sym_preproc_if_token1] = ACTIONS(3520), + [aux_sym_preproc_if_token2] = ACTIONS(3520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3520), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3520), + [aux_sym_preproc_else_token1] = ACTIONS(3520), + [aux_sym_preproc_elif_token1] = ACTIONS(3520), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3520), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3520), + [sym_preproc_directive] = ACTIONS(3520), + [anon_sym_LPAREN2] = ACTIONS(3522), + [anon_sym_BANG] = ACTIONS(3522), + [anon_sym_TILDE] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3520), + [anon_sym_PLUS] = ACTIONS(3520), + [anon_sym_STAR] = ACTIONS(3522), + [anon_sym_AMP_AMP] = ACTIONS(3522), + [anon_sym_AMP] = ACTIONS(3520), + [anon_sym_SEMI] = ACTIONS(3522), + [anon_sym___extension__] = ACTIONS(3520), + [anon_sym_typedef] = ACTIONS(3520), + [anon_sym_virtual] = ACTIONS(3520), + [anon_sym_extern] = ACTIONS(3520), + [anon_sym___attribute__] = ACTIONS(3520), + [anon_sym___attribute] = ACTIONS(3520), + [anon_sym_using] = ACTIONS(3520), + [anon_sym_COLON_COLON] = ACTIONS(3522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3522), + [anon_sym___declspec] = ACTIONS(3520), + [anon_sym___based] = ACTIONS(3520), + [anon_sym___cdecl] = ACTIONS(3520), + [anon_sym___clrcall] = ACTIONS(3520), + [anon_sym___stdcall] = ACTIONS(3520), + [anon_sym___fastcall] = ACTIONS(3520), + [anon_sym___thiscall] = ACTIONS(3520), + [anon_sym___vectorcall] = ACTIONS(3520), + [anon_sym_LBRACE] = ACTIONS(3522), + [anon_sym_signed] = ACTIONS(3520), + [anon_sym_unsigned] = ACTIONS(3520), + [anon_sym_long] = ACTIONS(3520), + [anon_sym_short] = ACTIONS(3520), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_static] = ACTIONS(3520), + [anon_sym_register] = ACTIONS(3520), + [anon_sym_inline] = ACTIONS(3520), + [anon_sym___inline] = ACTIONS(3520), + [anon_sym___inline__] = ACTIONS(3520), + [anon_sym___forceinline] = ACTIONS(3520), + [anon_sym_thread_local] = ACTIONS(3520), + [anon_sym___thread] = ACTIONS(3520), + [anon_sym_const] = ACTIONS(3520), + [anon_sym_constexpr] = ACTIONS(3520), + [anon_sym_volatile] = ACTIONS(3520), + [anon_sym_restrict] = ACTIONS(3520), + [anon_sym___restrict__] = ACTIONS(3520), + [anon_sym__Atomic] = ACTIONS(3520), + [anon_sym__Noreturn] = ACTIONS(3520), + [anon_sym_noreturn] = ACTIONS(3520), + [anon_sym__Nonnull] = ACTIONS(3520), + [anon_sym_mutable] = ACTIONS(3520), + [anon_sym_constinit] = ACTIONS(3520), + [anon_sym_consteval] = ACTIONS(3520), + [anon_sym_alignas] = ACTIONS(3520), + [anon_sym__Alignas] = ACTIONS(3520), + [sym_primitive_type] = ACTIONS(3520), + [anon_sym_enum] = ACTIONS(3520), + [anon_sym_class] = ACTIONS(3520), + [anon_sym_struct] = ACTIONS(3520), + [anon_sym_union] = ACTIONS(3520), + [anon_sym_if] = ACTIONS(3520), + [anon_sym_else] = ACTIONS(3520), + [anon_sym_switch] = ACTIONS(3520), + [anon_sym_case] = ACTIONS(3520), + [anon_sym_default] = ACTIONS(3520), + [anon_sym_while] = ACTIONS(3520), + [anon_sym_do] = ACTIONS(3520), + [anon_sym_for] = ACTIONS(3520), + [anon_sym_return] = ACTIONS(3520), + [anon_sym_break] = ACTIONS(3520), + [anon_sym_continue] = ACTIONS(3520), + [anon_sym_goto] = ACTIONS(3520), + [anon_sym___try] = ACTIONS(3520), + [anon_sym___leave] = ACTIONS(3520), + [anon_sym_not] = ACTIONS(3520), + [anon_sym_compl] = ACTIONS(3520), + [anon_sym_DASH_DASH] = ACTIONS(3522), + [anon_sym_PLUS_PLUS] = ACTIONS(3522), + [anon_sym_sizeof] = ACTIONS(3520), + [anon_sym___alignof__] = ACTIONS(3520), + [anon_sym___alignof] = ACTIONS(3520), + [anon_sym__alignof] = ACTIONS(3520), + [anon_sym_alignof] = ACTIONS(3520), + [anon_sym__Alignof] = ACTIONS(3520), + [anon_sym_offsetof] = ACTIONS(3520), + [anon_sym__Generic] = ACTIONS(3520), + [anon_sym_typename] = ACTIONS(3520), + [anon_sym_asm] = ACTIONS(3520), + [anon_sym___asm__] = ACTIONS(3520), + [anon_sym___asm] = ACTIONS(3520), + [sym_number_literal] = ACTIONS(3522), + [anon_sym_L_SQUOTE] = ACTIONS(3522), + [anon_sym_u_SQUOTE] = ACTIONS(3522), + [anon_sym_U_SQUOTE] = ACTIONS(3522), + [anon_sym_u8_SQUOTE] = ACTIONS(3522), + [anon_sym_SQUOTE] = ACTIONS(3522), + [anon_sym_L_DQUOTE] = ACTIONS(3522), + [anon_sym_u_DQUOTE] = ACTIONS(3522), + [anon_sym_U_DQUOTE] = ACTIONS(3522), + [anon_sym_u8_DQUOTE] = ACTIONS(3522), + [anon_sym_DQUOTE] = ACTIONS(3522), + [sym_true] = ACTIONS(3520), + [sym_false] = ACTIONS(3520), + [anon_sym_NULL] = ACTIONS(3520), + [anon_sym_nullptr] = ACTIONS(3520), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3520), + [anon_sym_decltype] = ACTIONS(3520), + [anon_sym_explicit] = ACTIONS(3520), + [anon_sym_export] = ACTIONS(3520), + [anon_sym_module] = ACTIONS(3520), + [anon_sym_import] = ACTIONS(3520), + [anon_sym_template] = ACTIONS(3520), + [anon_sym_operator] = ACTIONS(3520), + [anon_sym_try] = ACTIONS(3520), + [anon_sym_delete] = ACTIONS(3520), + [anon_sym_throw] = ACTIONS(3520), + [anon_sym_namespace] = ACTIONS(3520), + [anon_sym_static_assert] = ACTIONS(3520), + [anon_sym_concept] = ACTIONS(3520), + [anon_sym_co_return] = ACTIONS(3520), + [anon_sym_co_yield] = ACTIONS(3520), + [anon_sym_R_DQUOTE] = ACTIONS(3522), + [anon_sym_LR_DQUOTE] = ACTIONS(3522), + [anon_sym_uR_DQUOTE] = ACTIONS(3522), + [anon_sym_UR_DQUOTE] = ACTIONS(3522), + [anon_sym_u8R_DQUOTE] = ACTIONS(3522), + [anon_sym_co_await] = ACTIONS(3520), + [anon_sym_new] = ACTIONS(3520), + [anon_sym_requires] = ACTIONS(3520), + [anon_sym_CARET_CARET] = ACTIONS(3522), + [anon_sym_LBRACK_COLON] = ACTIONS(3522), + [sym_this] = ACTIONS(3520), + }, + [STATE(340)] = { + [sym_identifier] = ACTIONS(3524), + [aux_sym_preproc_include_token1] = ACTIONS(3524), + [aux_sym_preproc_def_token1] = ACTIONS(3524), + [aux_sym_preproc_if_token1] = ACTIONS(3524), + [aux_sym_preproc_if_token2] = ACTIONS(3524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3524), + [aux_sym_preproc_else_token1] = ACTIONS(3524), + [aux_sym_preproc_elif_token1] = ACTIONS(3524), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3524), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3524), + [sym_preproc_directive] = ACTIONS(3524), + [anon_sym_LPAREN2] = ACTIONS(3526), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_TILDE] = ACTIONS(3526), + [anon_sym_DASH] = ACTIONS(3524), + [anon_sym_PLUS] = ACTIONS(3524), + [anon_sym_STAR] = ACTIONS(3526), + [anon_sym_AMP_AMP] = ACTIONS(3526), + [anon_sym_AMP] = ACTIONS(3524), + [anon_sym_SEMI] = ACTIONS(3526), + [anon_sym___extension__] = ACTIONS(3524), + [anon_sym_typedef] = ACTIONS(3524), + [anon_sym_virtual] = ACTIONS(3524), + [anon_sym_extern] = ACTIONS(3524), + [anon_sym___attribute__] = ACTIONS(3524), + [anon_sym___attribute] = ACTIONS(3524), + [anon_sym_using] = ACTIONS(3524), + [anon_sym_COLON_COLON] = ACTIONS(3526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3526), + [anon_sym___declspec] = ACTIONS(3524), + [anon_sym___based] = ACTIONS(3524), + [anon_sym___cdecl] = ACTIONS(3524), + [anon_sym___clrcall] = ACTIONS(3524), + [anon_sym___stdcall] = ACTIONS(3524), + [anon_sym___fastcall] = ACTIONS(3524), + [anon_sym___thiscall] = ACTIONS(3524), + [anon_sym___vectorcall] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(3526), + [anon_sym_signed] = ACTIONS(3524), + [anon_sym_unsigned] = ACTIONS(3524), + [anon_sym_long] = ACTIONS(3524), + [anon_sym_short] = ACTIONS(3524), + [anon_sym_LBRACK] = ACTIONS(3524), + [anon_sym_static] = ACTIONS(3524), + [anon_sym_register] = ACTIONS(3524), + [anon_sym_inline] = ACTIONS(3524), + [anon_sym___inline] = ACTIONS(3524), + [anon_sym___inline__] = ACTIONS(3524), + [anon_sym___forceinline] = ACTIONS(3524), + [anon_sym_thread_local] = ACTIONS(3524), + [anon_sym___thread] = ACTIONS(3524), + [anon_sym_const] = ACTIONS(3524), + [anon_sym_constexpr] = ACTIONS(3524), + [anon_sym_volatile] = ACTIONS(3524), + [anon_sym_restrict] = ACTIONS(3524), + [anon_sym___restrict__] = ACTIONS(3524), + [anon_sym__Atomic] = ACTIONS(3524), + [anon_sym__Noreturn] = ACTIONS(3524), + [anon_sym_noreturn] = ACTIONS(3524), + [anon_sym__Nonnull] = ACTIONS(3524), + [anon_sym_mutable] = ACTIONS(3524), + [anon_sym_constinit] = ACTIONS(3524), + [anon_sym_consteval] = ACTIONS(3524), + [anon_sym_alignas] = ACTIONS(3524), + [anon_sym__Alignas] = ACTIONS(3524), + [sym_primitive_type] = ACTIONS(3524), + [anon_sym_enum] = ACTIONS(3524), + [anon_sym_class] = ACTIONS(3524), + [anon_sym_struct] = ACTIONS(3524), + [anon_sym_union] = ACTIONS(3524), + [anon_sym_if] = ACTIONS(3524), + [anon_sym_else] = ACTIONS(3524), + [anon_sym_switch] = ACTIONS(3524), + [anon_sym_case] = ACTIONS(3524), + [anon_sym_default] = ACTIONS(3524), + [anon_sym_while] = ACTIONS(3524), + [anon_sym_do] = ACTIONS(3524), + [anon_sym_for] = ACTIONS(3524), + [anon_sym_return] = ACTIONS(3524), + [anon_sym_break] = ACTIONS(3524), + [anon_sym_continue] = ACTIONS(3524), + [anon_sym_goto] = ACTIONS(3524), + [anon_sym___try] = ACTIONS(3524), + [anon_sym___leave] = ACTIONS(3524), + [anon_sym_not] = ACTIONS(3524), + [anon_sym_compl] = ACTIONS(3524), + [anon_sym_DASH_DASH] = ACTIONS(3526), + [anon_sym_PLUS_PLUS] = ACTIONS(3526), + [anon_sym_sizeof] = ACTIONS(3524), + [anon_sym___alignof__] = ACTIONS(3524), + [anon_sym___alignof] = ACTIONS(3524), + [anon_sym__alignof] = ACTIONS(3524), + [anon_sym_alignof] = ACTIONS(3524), + [anon_sym__Alignof] = ACTIONS(3524), + [anon_sym_offsetof] = ACTIONS(3524), + [anon_sym__Generic] = ACTIONS(3524), + [anon_sym_typename] = ACTIONS(3524), + [anon_sym_asm] = ACTIONS(3524), + [anon_sym___asm__] = ACTIONS(3524), + [anon_sym___asm] = ACTIONS(3524), + [sym_number_literal] = ACTIONS(3526), + [anon_sym_L_SQUOTE] = ACTIONS(3526), + [anon_sym_u_SQUOTE] = ACTIONS(3526), + [anon_sym_U_SQUOTE] = ACTIONS(3526), + [anon_sym_u8_SQUOTE] = ACTIONS(3526), + [anon_sym_SQUOTE] = ACTIONS(3526), + [anon_sym_L_DQUOTE] = ACTIONS(3526), + [anon_sym_u_DQUOTE] = ACTIONS(3526), + [anon_sym_U_DQUOTE] = ACTIONS(3526), + [anon_sym_u8_DQUOTE] = ACTIONS(3526), + [anon_sym_DQUOTE] = ACTIONS(3526), + [sym_true] = ACTIONS(3524), + [sym_false] = ACTIONS(3524), + [anon_sym_NULL] = ACTIONS(3524), + [anon_sym_nullptr] = ACTIONS(3524), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3524), + [anon_sym_decltype] = ACTIONS(3524), + [anon_sym_explicit] = ACTIONS(3524), + [anon_sym_export] = ACTIONS(3524), + [anon_sym_module] = ACTIONS(3524), + [anon_sym_import] = ACTIONS(3524), + [anon_sym_template] = ACTIONS(3524), + [anon_sym_operator] = ACTIONS(3524), + [anon_sym_try] = ACTIONS(3524), + [anon_sym_delete] = ACTIONS(3524), + [anon_sym_throw] = ACTIONS(3524), + [anon_sym_namespace] = ACTIONS(3524), + [anon_sym_static_assert] = ACTIONS(3524), + [anon_sym_concept] = ACTIONS(3524), + [anon_sym_co_return] = ACTIONS(3524), + [anon_sym_co_yield] = ACTIONS(3524), + [anon_sym_R_DQUOTE] = ACTIONS(3526), + [anon_sym_LR_DQUOTE] = ACTIONS(3526), + [anon_sym_uR_DQUOTE] = ACTIONS(3526), + [anon_sym_UR_DQUOTE] = ACTIONS(3526), + [anon_sym_u8R_DQUOTE] = ACTIONS(3526), + [anon_sym_co_await] = ACTIONS(3524), + [anon_sym_new] = ACTIONS(3524), + [anon_sym_requires] = ACTIONS(3524), + [anon_sym_CARET_CARET] = ACTIONS(3526), + [anon_sym_LBRACK_COLON] = ACTIONS(3526), + [sym_this] = ACTIONS(3524), + }, + [STATE(341)] = { + [sym_identifier] = ACTIONS(3528), + [aux_sym_preproc_include_token1] = ACTIONS(3528), + [aux_sym_preproc_def_token1] = ACTIONS(3528), + [aux_sym_preproc_if_token1] = ACTIONS(3528), + [aux_sym_preproc_if_token2] = ACTIONS(3528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3528), + [aux_sym_preproc_else_token1] = ACTIONS(3528), + [aux_sym_preproc_elif_token1] = ACTIONS(3528), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3528), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3528), + [sym_preproc_directive] = ACTIONS(3528), + [anon_sym_LPAREN2] = ACTIONS(3530), + [anon_sym_BANG] = ACTIONS(3530), + [anon_sym_TILDE] = ACTIONS(3530), + [anon_sym_DASH] = ACTIONS(3528), + [anon_sym_PLUS] = ACTIONS(3528), + [anon_sym_STAR] = ACTIONS(3530), + [anon_sym_AMP_AMP] = ACTIONS(3530), + [anon_sym_AMP] = ACTIONS(3528), + [anon_sym_SEMI] = ACTIONS(3530), + [anon_sym___extension__] = ACTIONS(3528), + [anon_sym_typedef] = ACTIONS(3528), + [anon_sym_virtual] = ACTIONS(3528), + [anon_sym_extern] = ACTIONS(3528), + [anon_sym___attribute__] = ACTIONS(3528), + [anon_sym___attribute] = ACTIONS(3528), + [anon_sym_using] = ACTIONS(3528), + [anon_sym_COLON_COLON] = ACTIONS(3530), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3530), + [anon_sym___declspec] = ACTIONS(3528), + [anon_sym___based] = ACTIONS(3528), + [anon_sym___cdecl] = ACTIONS(3528), + [anon_sym___clrcall] = ACTIONS(3528), + [anon_sym___stdcall] = ACTIONS(3528), + [anon_sym___fastcall] = ACTIONS(3528), + [anon_sym___thiscall] = ACTIONS(3528), + [anon_sym___vectorcall] = ACTIONS(3528), + [anon_sym_LBRACE] = ACTIONS(3530), + [anon_sym_signed] = ACTIONS(3528), + [anon_sym_unsigned] = ACTIONS(3528), + [anon_sym_long] = ACTIONS(3528), + [anon_sym_short] = ACTIONS(3528), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_static] = ACTIONS(3528), + [anon_sym_register] = ACTIONS(3528), + [anon_sym_inline] = ACTIONS(3528), + [anon_sym___inline] = ACTIONS(3528), + [anon_sym___inline__] = ACTIONS(3528), + [anon_sym___forceinline] = ACTIONS(3528), + [anon_sym_thread_local] = ACTIONS(3528), + [anon_sym___thread] = ACTIONS(3528), + [anon_sym_const] = ACTIONS(3528), + [anon_sym_constexpr] = ACTIONS(3528), + [anon_sym_volatile] = ACTIONS(3528), + [anon_sym_restrict] = ACTIONS(3528), + [anon_sym___restrict__] = ACTIONS(3528), + [anon_sym__Atomic] = ACTIONS(3528), + [anon_sym__Noreturn] = ACTIONS(3528), + [anon_sym_noreturn] = ACTIONS(3528), + [anon_sym__Nonnull] = ACTIONS(3528), + [anon_sym_mutable] = ACTIONS(3528), + [anon_sym_constinit] = ACTIONS(3528), + [anon_sym_consteval] = ACTIONS(3528), + [anon_sym_alignas] = ACTIONS(3528), + [anon_sym__Alignas] = ACTIONS(3528), + [sym_primitive_type] = ACTIONS(3528), + [anon_sym_enum] = ACTIONS(3528), + [anon_sym_class] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(3528), + [anon_sym_union] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(3528), + [anon_sym_else] = ACTIONS(3528), + [anon_sym_switch] = ACTIONS(3528), + [anon_sym_case] = ACTIONS(3528), + [anon_sym_default] = ACTIONS(3528), + [anon_sym_while] = ACTIONS(3528), + [anon_sym_do] = ACTIONS(3528), + [anon_sym_for] = ACTIONS(3528), + [anon_sym_return] = ACTIONS(3528), + [anon_sym_break] = ACTIONS(3528), + [anon_sym_continue] = ACTIONS(3528), + [anon_sym_goto] = ACTIONS(3528), + [anon_sym___try] = ACTIONS(3528), + [anon_sym___leave] = ACTIONS(3528), + [anon_sym_not] = ACTIONS(3528), + [anon_sym_compl] = ACTIONS(3528), + [anon_sym_DASH_DASH] = ACTIONS(3530), + [anon_sym_PLUS_PLUS] = ACTIONS(3530), + [anon_sym_sizeof] = ACTIONS(3528), + [anon_sym___alignof__] = ACTIONS(3528), + [anon_sym___alignof] = ACTIONS(3528), + [anon_sym__alignof] = ACTIONS(3528), + [anon_sym_alignof] = ACTIONS(3528), + [anon_sym__Alignof] = ACTIONS(3528), + [anon_sym_offsetof] = ACTIONS(3528), + [anon_sym__Generic] = ACTIONS(3528), + [anon_sym_typename] = ACTIONS(3528), + [anon_sym_asm] = ACTIONS(3528), + [anon_sym___asm__] = ACTIONS(3528), + [anon_sym___asm] = ACTIONS(3528), + [sym_number_literal] = ACTIONS(3530), + [anon_sym_L_SQUOTE] = ACTIONS(3530), + [anon_sym_u_SQUOTE] = ACTIONS(3530), + [anon_sym_U_SQUOTE] = ACTIONS(3530), + [anon_sym_u8_SQUOTE] = ACTIONS(3530), + [anon_sym_SQUOTE] = ACTIONS(3530), + [anon_sym_L_DQUOTE] = ACTIONS(3530), + [anon_sym_u_DQUOTE] = ACTIONS(3530), + [anon_sym_U_DQUOTE] = ACTIONS(3530), + [anon_sym_u8_DQUOTE] = ACTIONS(3530), + [anon_sym_DQUOTE] = ACTIONS(3530), + [sym_true] = ACTIONS(3528), + [sym_false] = ACTIONS(3528), + [anon_sym_NULL] = ACTIONS(3528), + [anon_sym_nullptr] = ACTIONS(3528), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3528), + [anon_sym_decltype] = ACTIONS(3528), + [anon_sym_explicit] = ACTIONS(3528), + [anon_sym_export] = ACTIONS(3528), + [anon_sym_module] = ACTIONS(3528), + [anon_sym_import] = ACTIONS(3528), + [anon_sym_template] = ACTIONS(3528), + [anon_sym_operator] = ACTIONS(3528), + [anon_sym_try] = ACTIONS(3528), + [anon_sym_delete] = ACTIONS(3528), + [anon_sym_throw] = ACTIONS(3528), + [anon_sym_namespace] = ACTIONS(3528), + [anon_sym_static_assert] = ACTIONS(3528), + [anon_sym_concept] = ACTIONS(3528), + [anon_sym_co_return] = ACTIONS(3528), + [anon_sym_co_yield] = ACTIONS(3528), + [anon_sym_R_DQUOTE] = ACTIONS(3530), + [anon_sym_LR_DQUOTE] = ACTIONS(3530), + [anon_sym_uR_DQUOTE] = ACTIONS(3530), + [anon_sym_UR_DQUOTE] = ACTIONS(3530), + [anon_sym_u8R_DQUOTE] = ACTIONS(3530), + [anon_sym_co_await] = ACTIONS(3528), + [anon_sym_new] = ACTIONS(3528), + [anon_sym_requires] = ACTIONS(3528), + [anon_sym_CARET_CARET] = ACTIONS(3530), + [anon_sym_LBRACK_COLON] = ACTIONS(3530), + [sym_this] = ACTIONS(3528), + }, + [STATE(342)] = { + [sym_identifier] = ACTIONS(3532), + [aux_sym_preproc_include_token1] = ACTIONS(3532), + [aux_sym_preproc_def_token1] = ACTIONS(3532), + [aux_sym_preproc_if_token1] = ACTIONS(3532), + [aux_sym_preproc_if_token2] = ACTIONS(3532), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3532), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3532), + [aux_sym_preproc_else_token1] = ACTIONS(3532), + [aux_sym_preproc_elif_token1] = ACTIONS(3532), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3532), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3532), + [sym_preproc_directive] = ACTIONS(3532), + [anon_sym_LPAREN2] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3534), + [anon_sym_TILDE] = ACTIONS(3534), + [anon_sym_DASH] = ACTIONS(3532), + [anon_sym_PLUS] = ACTIONS(3532), + [anon_sym_STAR] = ACTIONS(3534), + [anon_sym_AMP_AMP] = ACTIONS(3534), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_SEMI] = ACTIONS(3534), + [anon_sym___extension__] = ACTIONS(3532), + [anon_sym_typedef] = ACTIONS(3532), + [anon_sym_virtual] = ACTIONS(3532), + [anon_sym_extern] = ACTIONS(3532), + [anon_sym___attribute__] = ACTIONS(3532), + [anon_sym___attribute] = ACTIONS(3532), + [anon_sym_using] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3534), + [anon_sym___declspec] = ACTIONS(3532), + [anon_sym___based] = ACTIONS(3532), + [anon_sym___cdecl] = ACTIONS(3532), + [anon_sym___clrcall] = ACTIONS(3532), + [anon_sym___stdcall] = ACTIONS(3532), + [anon_sym___fastcall] = ACTIONS(3532), + [anon_sym___thiscall] = ACTIONS(3532), + [anon_sym___vectorcall] = ACTIONS(3532), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_signed] = ACTIONS(3532), + [anon_sym_unsigned] = ACTIONS(3532), + [anon_sym_long] = ACTIONS(3532), + [anon_sym_short] = ACTIONS(3532), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_static] = ACTIONS(3532), + [anon_sym_register] = ACTIONS(3532), + [anon_sym_inline] = ACTIONS(3532), + [anon_sym___inline] = ACTIONS(3532), + [anon_sym___inline__] = ACTIONS(3532), + [anon_sym___forceinline] = ACTIONS(3532), + [anon_sym_thread_local] = ACTIONS(3532), + [anon_sym___thread] = ACTIONS(3532), + [anon_sym_const] = ACTIONS(3532), + [anon_sym_constexpr] = ACTIONS(3532), + [anon_sym_volatile] = ACTIONS(3532), + [anon_sym_restrict] = ACTIONS(3532), + [anon_sym___restrict__] = ACTIONS(3532), + [anon_sym__Atomic] = ACTIONS(3532), + [anon_sym__Noreturn] = ACTIONS(3532), + [anon_sym_noreturn] = ACTIONS(3532), + [anon_sym__Nonnull] = ACTIONS(3532), + [anon_sym_mutable] = ACTIONS(3532), + [anon_sym_constinit] = ACTIONS(3532), + [anon_sym_consteval] = ACTIONS(3532), + [anon_sym_alignas] = ACTIONS(3532), + [anon_sym__Alignas] = ACTIONS(3532), + [sym_primitive_type] = ACTIONS(3532), + [anon_sym_enum] = ACTIONS(3532), + [anon_sym_class] = ACTIONS(3532), + [anon_sym_struct] = ACTIONS(3532), + [anon_sym_union] = ACTIONS(3532), + [anon_sym_if] = ACTIONS(3532), + [anon_sym_else] = ACTIONS(3532), + [anon_sym_switch] = ACTIONS(3532), + [anon_sym_case] = ACTIONS(3532), + [anon_sym_default] = ACTIONS(3532), + [anon_sym_while] = ACTIONS(3532), + [anon_sym_do] = ACTIONS(3532), + [anon_sym_for] = ACTIONS(3532), + [anon_sym_return] = ACTIONS(3532), + [anon_sym_break] = ACTIONS(3532), + [anon_sym_continue] = ACTIONS(3532), + [anon_sym_goto] = ACTIONS(3532), + [anon_sym___try] = ACTIONS(3532), + [anon_sym___leave] = ACTIONS(3532), + [anon_sym_not] = ACTIONS(3532), + [anon_sym_compl] = ACTIONS(3532), + [anon_sym_DASH_DASH] = ACTIONS(3534), + [anon_sym_PLUS_PLUS] = ACTIONS(3534), + [anon_sym_sizeof] = ACTIONS(3532), + [anon_sym___alignof__] = ACTIONS(3532), + [anon_sym___alignof] = ACTIONS(3532), + [anon_sym__alignof] = ACTIONS(3532), + [anon_sym_alignof] = ACTIONS(3532), + [anon_sym__Alignof] = ACTIONS(3532), + [anon_sym_offsetof] = ACTIONS(3532), + [anon_sym__Generic] = ACTIONS(3532), + [anon_sym_typename] = ACTIONS(3532), + [anon_sym_asm] = ACTIONS(3532), + [anon_sym___asm__] = ACTIONS(3532), + [anon_sym___asm] = ACTIONS(3532), + [sym_number_literal] = ACTIONS(3534), + [anon_sym_L_SQUOTE] = ACTIONS(3534), + [anon_sym_u_SQUOTE] = ACTIONS(3534), + [anon_sym_U_SQUOTE] = ACTIONS(3534), + [anon_sym_u8_SQUOTE] = ACTIONS(3534), + [anon_sym_SQUOTE] = ACTIONS(3534), + [anon_sym_L_DQUOTE] = ACTIONS(3534), + [anon_sym_u_DQUOTE] = ACTIONS(3534), + [anon_sym_U_DQUOTE] = ACTIONS(3534), + [anon_sym_u8_DQUOTE] = ACTIONS(3534), + [anon_sym_DQUOTE] = ACTIONS(3534), + [sym_true] = ACTIONS(3532), + [sym_false] = ACTIONS(3532), + [anon_sym_NULL] = ACTIONS(3532), + [anon_sym_nullptr] = ACTIONS(3532), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3532), + [anon_sym_decltype] = ACTIONS(3532), + [anon_sym_explicit] = ACTIONS(3532), + [anon_sym_export] = ACTIONS(3532), + [anon_sym_module] = ACTIONS(3532), + [anon_sym_import] = ACTIONS(3532), + [anon_sym_template] = ACTIONS(3532), + [anon_sym_operator] = ACTIONS(3532), + [anon_sym_try] = ACTIONS(3532), + [anon_sym_delete] = ACTIONS(3532), + [anon_sym_throw] = ACTIONS(3532), + [anon_sym_namespace] = ACTIONS(3532), + [anon_sym_static_assert] = ACTIONS(3532), + [anon_sym_concept] = ACTIONS(3532), + [anon_sym_co_return] = ACTIONS(3532), + [anon_sym_co_yield] = ACTIONS(3532), + [anon_sym_R_DQUOTE] = ACTIONS(3534), + [anon_sym_LR_DQUOTE] = ACTIONS(3534), + [anon_sym_uR_DQUOTE] = ACTIONS(3534), + [anon_sym_UR_DQUOTE] = ACTIONS(3534), + [anon_sym_u8R_DQUOTE] = ACTIONS(3534), + [anon_sym_co_await] = ACTIONS(3532), + [anon_sym_new] = ACTIONS(3532), + [anon_sym_requires] = ACTIONS(3532), + [anon_sym_CARET_CARET] = ACTIONS(3534), + [anon_sym_LBRACK_COLON] = ACTIONS(3534), + [sym_this] = ACTIONS(3532), + }, + [STATE(343)] = { + [sym_preproc_def] = STATE(347), + [sym_preproc_function_def] = STATE(347), + [sym_preproc_call] = STATE(347), + [sym_preproc_if_in_field_declaration_list] = STATE(347), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(347), + [sym_preproc_else_in_field_declaration_list] = STATE(10764), + [sym_preproc_elif_in_field_declaration_list] = STATE(10764), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(10764), + [sym_type_definition] = STATE(347), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8093), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8674), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(347), + [sym_field_declaration] = STATE(347), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2456), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(347), + [sym_operator_cast] = STATE(9218), + [sym_inline_method_definition] = STATE(347), + [sym__constructor_specifiers] = STATE(2456), + [sym_operator_cast_definition] = STATE(347), + [sym_operator_cast_declaration] = STATE(347), + [sym_constructor_or_destructor_definition] = STATE(347), + [sym_constructor_or_destructor_declaration] = STATE(347), + [sym_friend_declaration] = STATE(347), + [sym_access_specifier] = STATE(11699), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(347), + [sym_alias_declaration] = STATE(347), + [sym_static_assert_declaration] = STATE(347), + [sym_consteval_block_declaration] = STATE(347), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9218), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(347), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9608), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2456), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_if_token2] = ACTIONS(3536), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), + [aux_sym_preproc_else_token1] = ACTIONS(3434), + [aux_sym_preproc_elif_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3538), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3462), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(3480), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3482), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(3484), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(344)] = { + [sym_identifier] = ACTIONS(3540), + [aux_sym_preproc_include_token1] = ACTIONS(3540), + [aux_sym_preproc_def_token1] = ACTIONS(3540), + [aux_sym_preproc_if_token1] = ACTIONS(3540), + [aux_sym_preproc_if_token2] = ACTIONS(3540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3540), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3540), + [aux_sym_preproc_else_token1] = ACTIONS(3540), + [aux_sym_preproc_elif_token1] = ACTIONS(3540), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3540), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3540), + [sym_preproc_directive] = ACTIONS(3540), + [anon_sym_LPAREN2] = ACTIONS(3542), + [anon_sym_BANG] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_STAR] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3540), + [anon_sym_SEMI] = ACTIONS(3542), + [anon_sym___extension__] = ACTIONS(3540), + [anon_sym_typedef] = ACTIONS(3540), + [anon_sym_virtual] = ACTIONS(3540), + [anon_sym_extern] = ACTIONS(3540), + [anon_sym___attribute__] = ACTIONS(3540), + [anon_sym___attribute] = ACTIONS(3540), + [anon_sym_using] = ACTIONS(3540), + [anon_sym_COLON_COLON] = ACTIONS(3542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3542), + [anon_sym___declspec] = ACTIONS(3540), + [anon_sym___based] = ACTIONS(3540), + [anon_sym___cdecl] = ACTIONS(3540), + [anon_sym___clrcall] = ACTIONS(3540), + [anon_sym___stdcall] = ACTIONS(3540), + [anon_sym___fastcall] = ACTIONS(3540), + [anon_sym___thiscall] = ACTIONS(3540), + [anon_sym___vectorcall] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_signed] = ACTIONS(3540), + [anon_sym_unsigned] = ACTIONS(3540), + [anon_sym_long] = ACTIONS(3540), + [anon_sym_short] = ACTIONS(3540), + [anon_sym_LBRACK] = ACTIONS(3540), + [anon_sym_static] = ACTIONS(3540), + [anon_sym_register] = ACTIONS(3540), + [anon_sym_inline] = ACTIONS(3540), + [anon_sym___inline] = ACTIONS(3540), + [anon_sym___inline__] = ACTIONS(3540), + [anon_sym___forceinline] = ACTIONS(3540), + [anon_sym_thread_local] = ACTIONS(3540), + [anon_sym___thread] = ACTIONS(3540), + [anon_sym_const] = ACTIONS(3540), + [anon_sym_constexpr] = ACTIONS(3540), + [anon_sym_volatile] = ACTIONS(3540), + [anon_sym_restrict] = ACTIONS(3540), + [anon_sym___restrict__] = ACTIONS(3540), + [anon_sym__Atomic] = ACTIONS(3540), + [anon_sym__Noreturn] = ACTIONS(3540), + [anon_sym_noreturn] = ACTIONS(3540), + [anon_sym__Nonnull] = ACTIONS(3540), + [anon_sym_mutable] = ACTIONS(3540), + [anon_sym_constinit] = ACTIONS(3540), + [anon_sym_consteval] = ACTIONS(3540), + [anon_sym_alignas] = ACTIONS(3540), + [anon_sym__Alignas] = ACTIONS(3540), + [sym_primitive_type] = ACTIONS(3540), + [anon_sym_enum] = ACTIONS(3540), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3540), + [anon_sym_union] = ACTIONS(3540), + [anon_sym_if] = ACTIONS(3540), + [anon_sym_else] = ACTIONS(3540), + [anon_sym_switch] = ACTIONS(3540), + [anon_sym_case] = ACTIONS(3540), + [anon_sym_default] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3540), + [anon_sym_do] = ACTIONS(3540), + [anon_sym_for] = ACTIONS(3540), + [anon_sym_return] = ACTIONS(3540), + [anon_sym_break] = ACTIONS(3540), + [anon_sym_continue] = ACTIONS(3540), + [anon_sym_goto] = ACTIONS(3540), + [anon_sym___try] = ACTIONS(3540), + [anon_sym___leave] = ACTIONS(3540), + [anon_sym_not] = ACTIONS(3540), + [anon_sym_compl] = ACTIONS(3540), + [anon_sym_DASH_DASH] = ACTIONS(3542), + [anon_sym_PLUS_PLUS] = ACTIONS(3542), + [anon_sym_sizeof] = ACTIONS(3540), + [anon_sym___alignof__] = ACTIONS(3540), + [anon_sym___alignof] = ACTIONS(3540), + [anon_sym__alignof] = ACTIONS(3540), + [anon_sym_alignof] = ACTIONS(3540), + [anon_sym__Alignof] = ACTIONS(3540), + [anon_sym_offsetof] = ACTIONS(3540), + [anon_sym__Generic] = ACTIONS(3540), + [anon_sym_typename] = ACTIONS(3540), + [anon_sym_asm] = ACTIONS(3540), + [anon_sym___asm__] = ACTIONS(3540), + [anon_sym___asm] = ACTIONS(3540), + [sym_number_literal] = ACTIONS(3542), + [anon_sym_L_SQUOTE] = ACTIONS(3542), + [anon_sym_u_SQUOTE] = ACTIONS(3542), + [anon_sym_U_SQUOTE] = ACTIONS(3542), + [anon_sym_u8_SQUOTE] = ACTIONS(3542), + [anon_sym_SQUOTE] = ACTIONS(3542), + [anon_sym_L_DQUOTE] = ACTIONS(3542), + [anon_sym_u_DQUOTE] = ACTIONS(3542), + [anon_sym_U_DQUOTE] = ACTIONS(3542), + [anon_sym_u8_DQUOTE] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [sym_true] = ACTIONS(3540), + [sym_false] = ACTIONS(3540), + [anon_sym_NULL] = ACTIONS(3540), + [anon_sym_nullptr] = ACTIONS(3540), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3540), + [anon_sym_decltype] = ACTIONS(3540), + [anon_sym_explicit] = ACTIONS(3540), + [anon_sym_export] = ACTIONS(3540), + [anon_sym_module] = ACTIONS(3540), + [anon_sym_import] = ACTIONS(3540), + [anon_sym_template] = ACTIONS(3540), + [anon_sym_operator] = ACTIONS(3540), + [anon_sym_try] = ACTIONS(3540), + [anon_sym_delete] = ACTIONS(3540), + [anon_sym_throw] = ACTIONS(3540), + [anon_sym_namespace] = ACTIONS(3540), + [anon_sym_static_assert] = ACTIONS(3540), + [anon_sym_concept] = ACTIONS(3540), + [anon_sym_co_return] = ACTIONS(3540), + [anon_sym_co_yield] = ACTIONS(3540), + [anon_sym_R_DQUOTE] = ACTIONS(3542), + [anon_sym_LR_DQUOTE] = ACTIONS(3542), + [anon_sym_uR_DQUOTE] = ACTIONS(3542), + [anon_sym_UR_DQUOTE] = ACTIONS(3542), + [anon_sym_u8R_DQUOTE] = ACTIONS(3542), + [anon_sym_co_await] = ACTIONS(3540), + [anon_sym_new] = ACTIONS(3540), + [anon_sym_requires] = ACTIONS(3540), + [anon_sym_CARET_CARET] = ACTIONS(3542), + [anon_sym_LBRACK_COLON] = ACTIONS(3542), + [sym_this] = ACTIONS(3540), + }, + [STATE(345)] = { + [sym_identifier] = ACTIONS(3544), + [aux_sym_preproc_include_token1] = ACTIONS(3544), + [aux_sym_preproc_def_token1] = ACTIONS(3544), + [aux_sym_preproc_if_token1] = ACTIONS(3544), + [aux_sym_preproc_if_token2] = ACTIONS(3544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3544), + [aux_sym_preproc_else_token1] = ACTIONS(3544), + [aux_sym_preproc_elif_token1] = ACTIONS(3544), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3544), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3544), + [sym_preproc_directive] = ACTIONS(3544), + [anon_sym_LPAREN2] = ACTIONS(3546), + [anon_sym_BANG] = ACTIONS(3546), + [anon_sym_TILDE] = ACTIONS(3546), + [anon_sym_DASH] = ACTIONS(3544), + [anon_sym_PLUS] = ACTIONS(3544), + [anon_sym_STAR] = ACTIONS(3546), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3544), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym___extension__] = ACTIONS(3544), + [anon_sym_typedef] = ACTIONS(3544), + [anon_sym_virtual] = ACTIONS(3544), + [anon_sym_extern] = ACTIONS(3544), + [anon_sym___attribute__] = ACTIONS(3544), + [anon_sym___attribute] = ACTIONS(3544), + [anon_sym_using] = ACTIONS(3544), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3546), + [anon_sym___declspec] = ACTIONS(3544), + [anon_sym___based] = ACTIONS(3544), + [anon_sym___cdecl] = ACTIONS(3544), + [anon_sym___clrcall] = ACTIONS(3544), + [anon_sym___stdcall] = ACTIONS(3544), + [anon_sym___fastcall] = ACTIONS(3544), + [anon_sym___thiscall] = ACTIONS(3544), + [anon_sym___vectorcall] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3546), + [anon_sym_signed] = ACTIONS(3544), + [anon_sym_unsigned] = ACTIONS(3544), + [anon_sym_long] = ACTIONS(3544), + [anon_sym_short] = ACTIONS(3544), + [anon_sym_LBRACK] = ACTIONS(3544), + [anon_sym_static] = ACTIONS(3544), + [anon_sym_register] = ACTIONS(3544), + [anon_sym_inline] = ACTIONS(3544), + [anon_sym___inline] = ACTIONS(3544), + [anon_sym___inline__] = ACTIONS(3544), + [anon_sym___forceinline] = ACTIONS(3544), + [anon_sym_thread_local] = ACTIONS(3544), + [anon_sym___thread] = ACTIONS(3544), + [anon_sym_const] = ACTIONS(3544), + [anon_sym_constexpr] = ACTIONS(3544), + [anon_sym_volatile] = ACTIONS(3544), + [anon_sym_restrict] = ACTIONS(3544), + [anon_sym___restrict__] = ACTIONS(3544), + [anon_sym__Atomic] = ACTIONS(3544), + [anon_sym__Noreturn] = ACTIONS(3544), + [anon_sym_noreturn] = ACTIONS(3544), + [anon_sym__Nonnull] = ACTIONS(3544), + [anon_sym_mutable] = ACTIONS(3544), + [anon_sym_constinit] = ACTIONS(3544), + [anon_sym_consteval] = ACTIONS(3544), + [anon_sym_alignas] = ACTIONS(3544), + [anon_sym__Alignas] = ACTIONS(3544), + [sym_primitive_type] = ACTIONS(3544), + [anon_sym_enum] = ACTIONS(3544), + [anon_sym_class] = ACTIONS(3544), + [anon_sym_struct] = ACTIONS(3544), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_else] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3544), + [anon_sym_case] = ACTIONS(3544), + [anon_sym_default] = ACTIONS(3544), + [anon_sym_while] = ACTIONS(3544), + [anon_sym_do] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3544), + [anon_sym_return] = ACTIONS(3544), + [anon_sym_break] = ACTIONS(3544), + [anon_sym_continue] = ACTIONS(3544), + [anon_sym_goto] = ACTIONS(3544), + [anon_sym___try] = ACTIONS(3544), + [anon_sym___leave] = ACTIONS(3544), + [anon_sym_not] = ACTIONS(3544), + [anon_sym_compl] = ACTIONS(3544), + [anon_sym_DASH_DASH] = ACTIONS(3546), + [anon_sym_PLUS_PLUS] = ACTIONS(3546), + [anon_sym_sizeof] = ACTIONS(3544), + [anon_sym___alignof__] = ACTIONS(3544), + [anon_sym___alignof] = ACTIONS(3544), + [anon_sym__alignof] = ACTIONS(3544), + [anon_sym_alignof] = ACTIONS(3544), + [anon_sym__Alignof] = ACTIONS(3544), + [anon_sym_offsetof] = ACTIONS(3544), + [anon_sym__Generic] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3544), + [anon_sym_asm] = ACTIONS(3544), + [anon_sym___asm__] = ACTIONS(3544), + [anon_sym___asm] = ACTIONS(3544), + [sym_number_literal] = ACTIONS(3546), + [anon_sym_L_SQUOTE] = ACTIONS(3546), + [anon_sym_u_SQUOTE] = ACTIONS(3546), + [anon_sym_U_SQUOTE] = ACTIONS(3546), + [anon_sym_u8_SQUOTE] = ACTIONS(3546), + [anon_sym_SQUOTE] = ACTIONS(3546), + [anon_sym_L_DQUOTE] = ACTIONS(3546), + [anon_sym_u_DQUOTE] = ACTIONS(3546), + [anon_sym_U_DQUOTE] = ACTIONS(3546), + [anon_sym_u8_DQUOTE] = ACTIONS(3546), + [anon_sym_DQUOTE] = ACTIONS(3546), + [sym_true] = ACTIONS(3544), + [sym_false] = ACTIONS(3544), + [anon_sym_NULL] = ACTIONS(3544), + [anon_sym_nullptr] = ACTIONS(3544), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3544), + [anon_sym_decltype] = ACTIONS(3544), + [anon_sym_explicit] = ACTIONS(3544), + [anon_sym_export] = ACTIONS(3544), + [anon_sym_module] = ACTIONS(3544), + [anon_sym_import] = ACTIONS(3544), + [anon_sym_template] = ACTIONS(3544), + [anon_sym_operator] = ACTIONS(3544), + [anon_sym_try] = ACTIONS(3544), + [anon_sym_delete] = ACTIONS(3544), + [anon_sym_throw] = ACTIONS(3544), + [anon_sym_namespace] = ACTIONS(3544), + [anon_sym_static_assert] = ACTIONS(3544), + [anon_sym_concept] = ACTIONS(3544), + [anon_sym_co_return] = ACTIONS(3544), + [anon_sym_co_yield] = ACTIONS(3544), + [anon_sym_R_DQUOTE] = ACTIONS(3546), + [anon_sym_LR_DQUOTE] = ACTIONS(3546), + [anon_sym_uR_DQUOTE] = ACTIONS(3546), + [anon_sym_UR_DQUOTE] = ACTIONS(3546), + [anon_sym_u8R_DQUOTE] = ACTIONS(3546), + [anon_sym_co_await] = ACTIONS(3544), + [anon_sym_new] = ACTIONS(3544), + [anon_sym_requires] = ACTIONS(3544), + [anon_sym_CARET_CARET] = ACTIONS(3546), + [anon_sym_LBRACK_COLON] = ACTIONS(3546), + [sym_this] = ACTIONS(3544), + }, + [STATE(346)] = { + [sym_preproc_def] = STATE(348), + [sym_preproc_function_def] = STATE(348), + [sym_preproc_call] = STATE(348), + [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(10852), + [sym_preproc_elif_in_field_declaration_list] = STATE(10852), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(10852), + [sym_type_definition] = STATE(348), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8093), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8674), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(348), + [sym_field_declaration] = STATE(348), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2456), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(348), + [sym_operator_cast] = STATE(9218), + [sym_inline_method_definition] = STATE(348), + [sym__constructor_specifiers] = STATE(2456), + [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(11699), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(348), + [sym_alias_declaration] = STATE(348), + [sym_static_assert_declaration] = STATE(348), + [sym_consteval_block_declaration] = STATE(348), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9218), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(348), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9608), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2456), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_if_token2] = ACTIONS(3548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), + [aux_sym_preproc_else_token1] = ACTIONS(3434), + [aux_sym_preproc_elif_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3550), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3462), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(3480), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3482), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(3484), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(347)] = { + [sym_preproc_def] = STATE(555), + [sym_preproc_function_def] = STATE(555), + [sym_preproc_call] = STATE(555), + [sym_preproc_if_in_field_declaration_list] = STATE(555), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), + [sym_preproc_else_in_field_declaration_list] = STATE(10858), + [sym_preproc_elif_in_field_declaration_list] = STATE(10858), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(10858), + [sym_type_definition] = STATE(555), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8093), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8674), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(555), + [sym_field_declaration] = STATE(555), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2456), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(555), + [sym_operator_cast] = STATE(9218), + [sym_inline_method_definition] = STATE(555), + [sym__constructor_specifiers] = STATE(2456), + [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_access_specifier] = STATE(11699), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(555), + [sym_alias_declaration] = STATE(555), + [sym_static_assert_declaration] = STATE(555), + [sym_consteval_block_declaration] = STATE(555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9218), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9608), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2456), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_if_token2] = ACTIONS(3552), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), + [aux_sym_preproc_else_token1] = ACTIONS(3434), + [aux_sym_preproc_elif_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3462), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(3480), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3482), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(3484), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(348)] = { + [sym_preproc_def] = STATE(555), + [sym_preproc_function_def] = STATE(555), + [sym_preproc_call] = STATE(555), + [sym_preproc_if_in_field_declaration_list] = STATE(555), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), + [sym_preproc_else_in_field_declaration_list] = STATE(10938), + [sym_preproc_elif_in_field_declaration_list] = STATE(10938), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(10938), + [sym_type_definition] = STATE(555), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8093), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8674), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(555), + [sym_field_declaration] = STATE(555), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2456), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(555), + [sym_operator_cast] = STATE(9218), + [sym_inline_method_definition] = STATE(555), + [sym__constructor_specifiers] = STATE(2456), + [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_access_specifier] = STATE(11699), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(555), + [sym_alias_declaration] = STATE(555), + [sym_static_assert_declaration] = STATE(555), + [sym_consteval_block_declaration] = STATE(555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9218), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9608), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2456), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_if_token2] = ACTIONS(3554), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), + [aux_sym_preproc_else_token1] = ACTIONS(3434), + [aux_sym_preproc_elif_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3462), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(3480), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3482), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(3484), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(349)] = { + [sym_identifier] = ACTIONS(3556), + [aux_sym_preproc_include_token1] = ACTIONS(3556), + [aux_sym_preproc_def_token1] = ACTIONS(3556), + [aux_sym_preproc_if_token1] = ACTIONS(3556), + [aux_sym_preproc_if_token2] = ACTIONS(3556), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3556), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3556), + [aux_sym_preproc_else_token1] = ACTIONS(3556), + [aux_sym_preproc_elif_token1] = ACTIONS(3556), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3556), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3556), + [sym_preproc_directive] = ACTIONS(3556), + [anon_sym_LPAREN2] = ACTIONS(3558), + [anon_sym_BANG] = ACTIONS(3558), + [anon_sym_TILDE] = ACTIONS(3558), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(3558), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_AMP] = ACTIONS(3556), + [anon_sym_SEMI] = ACTIONS(3558), + [anon_sym___extension__] = ACTIONS(3556), + [anon_sym_typedef] = ACTIONS(3556), + [anon_sym_virtual] = ACTIONS(3556), + [anon_sym_extern] = ACTIONS(3556), + [anon_sym___attribute__] = ACTIONS(3556), + [anon_sym___attribute] = ACTIONS(3556), + [anon_sym_using] = ACTIONS(3556), + [anon_sym_COLON_COLON] = ACTIONS(3558), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3558), + [anon_sym___declspec] = ACTIONS(3556), + [anon_sym___based] = ACTIONS(3556), + [anon_sym___cdecl] = ACTIONS(3556), + [anon_sym___clrcall] = ACTIONS(3556), + [anon_sym___stdcall] = ACTIONS(3556), + [anon_sym___fastcall] = ACTIONS(3556), + [anon_sym___thiscall] = ACTIONS(3556), + [anon_sym___vectorcall] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3558), + [anon_sym_signed] = ACTIONS(3556), + [anon_sym_unsigned] = ACTIONS(3556), + [anon_sym_long] = ACTIONS(3556), + [anon_sym_short] = ACTIONS(3556), + [anon_sym_LBRACK] = ACTIONS(3556), + [anon_sym_static] = ACTIONS(3556), + [anon_sym_register] = ACTIONS(3556), + [anon_sym_inline] = ACTIONS(3556), + [anon_sym___inline] = ACTIONS(3556), + [anon_sym___inline__] = ACTIONS(3556), + [anon_sym___forceinline] = ACTIONS(3556), + [anon_sym_thread_local] = ACTIONS(3556), + [anon_sym___thread] = ACTIONS(3556), + [anon_sym_const] = ACTIONS(3556), + [anon_sym_constexpr] = ACTIONS(3556), + [anon_sym_volatile] = ACTIONS(3556), + [anon_sym_restrict] = ACTIONS(3556), + [anon_sym___restrict__] = ACTIONS(3556), + [anon_sym__Atomic] = ACTIONS(3556), + [anon_sym__Noreturn] = ACTIONS(3556), + [anon_sym_noreturn] = ACTIONS(3556), + [anon_sym__Nonnull] = ACTIONS(3556), + [anon_sym_mutable] = ACTIONS(3556), + [anon_sym_constinit] = ACTIONS(3556), + [anon_sym_consteval] = ACTIONS(3556), + [anon_sym_alignas] = ACTIONS(3556), + [anon_sym__Alignas] = ACTIONS(3556), + [sym_primitive_type] = ACTIONS(3556), + [anon_sym_enum] = ACTIONS(3556), + [anon_sym_class] = ACTIONS(3556), + [anon_sym_struct] = ACTIONS(3556), + [anon_sym_union] = ACTIONS(3556), + [anon_sym_if] = ACTIONS(3556), + [anon_sym_else] = ACTIONS(3556), + [anon_sym_switch] = ACTIONS(3556), + [anon_sym_case] = ACTIONS(3556), + [anon_sym_default] = ACTIONS(3556), + [anon_sym_while] = ACTIONS(3556), + [anon_sym_do] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3556), + [anon_sym_return] = ACTIONS(3556), + [anon_sym_break] = ACTIONS(3556), + [anon_sym_continue] = ACTIONS(3556), + [anon_sym_goto] = ACTIONS(3556), + [anon_sym___try] = ACTIONS(3556), + [anon_sym___leave] = ACTIONS(3556), + [anon_sym_not] = ACTIONS(3556), + [anon_sym_compl] = ACTIONS(3556), + [anon_sym_DASH_DASH] = ACTIONS(3558), + [anon_sym_PLUS_PLUS] = ACTIONS(3558), + [anon_sym_sizeof] = ACTIONS(3556), + [anon_sym___alignof__] = ACTIONS(3556), + [anon_sym___alignof] = ACTIONS(3556), + [anon_sym__alignof] = ACTIONS(3556), + [anon_sym_alignof] = ACTIONS(3556), + [anon_sym__Alignof] = ACTIONS(3556), + [anon_sym_offsetof] = ACTIONS(3556), + [anon_sym__Generic] = ACTIONS(3556), + [anon_sym_typename] = ACTIONS(3556), + [anon_sym_asm] = ACTIONS(3556), + [anon_sym___asm__] = ACTIONS(3556), + [anon_sym___asm] = ACTIONS(3556), + [sym_number_literal] = ACTIONS(3558), + [anon_sym_L_SQUOTE] = ACTIONS(3558), + [anon_sym_u_SQUOTE] = ACTIONS(3558), + [anon_sym_U_SQUOTE] = ACTIONS(3558), + [anon_sym_u8_SQUOTE] = ACTIONS(3558), + [anon_sym_SQUOTE] = ACTIONS(3558), + [anon_sym_L_DQUOTE] = ACTIONS(3558), + [anon_sym_u_DQUOTE] = ACTIONS(3558), + [anon_sym_U_DQUOTE] = ACTIONS(3558), + [anon_sym_u8_DQUOTE] = ACTIONS(3558), + [anon_sym_DQUOTE] = ACTIONS(3558), + [sym_true] = ACTIONS(3556), + [sym_false] = ACTIONS(3556), + [anon_sym_NULL] = ACTIONS(3556), + [anon_sym_nullptr] = ACTIONS(3556), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3556), + [anon_sym_decltype] = ACTIONS(3556), + [anon_sym_explicit] = ACTIONS(3556), + [anon_sym_export] = ACTIONS(3556), + [anon_sym_module] = ACTIONS(3556), + [anon_sym_import] = ACTIONS(3556), + [anon_sym_template] = ACTIONS(3556), + [anon_sym_operator] = ACTIONS(3556), + [anon_sym_try] = ACTIONS(3556), + [anon_sym_delete] = ACTIONS(3556), + [anon_sym_throw] = ACTIONS(3556), + [anon_sym_namespace] = ACTIONS(3556), + [anon_sym_static_assert] = ACTIONS(3556), + [anon_sym_concept] = ACTIONS(3556), + [anon_sym_co_return] = ACTIONS(3556), + [anon_sym_co_yield] = ACTIONS(3556), + [anon_sym_R_DQUOTE] = ACTIONS(3558), + [anon_sym_LR_DQUOTE] = ACTIONS(3558), + [anon_sym_uR_DQUOTE] = ACTIONS(3558), + [anon_sym_UR_DQUOTE] = ACTIONS(3558), + [anon_sym_u8R_DQUOTE] = ACTIONS(3558), + [anon_sym_co_await] = ACTIONS(3556), + [anon_sym_new] = ACTIONS(3556), + [anon_sym_requires] = ACTIONS(3556), + [anon_sym_CARET_CARET] = ACTIONS(3558), + [anon_sym_LBRACK_COLON] = ACTIONS(3558), + [sym_this] = ACTIONS(3556), + }, + [STATE(350)] = { + [sym_identifier] = ACTIONS(3560), + [aux_sym_preproc_include_token1] = ACTIONS(3560), + [aux_sym_preproc_def_token1] = ACTIONS(3560), + [aux_sym_preproc_if_token1] = ACTIONS(3560), + [aux_sym_preproc_if_token2] = ACTIONS(3560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3560), + [aux_sym_preproc_else_token1] = ACTIONS(3560), + [aux_sym_preproc_elif_token1] = ACTIONS(3560), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3560), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3560), + [sym_preproc_directive] = ACTIONS(3560), + [anon_sym_LPAREN2] = ACTIONS(3562), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3560), + [anon_sym_PLUS] = ACTIONS(3560), + [anon_sym_STAR] = ACTIONS(3562), + [anon_sym_AMP_AMP] = ACTIONS(3562), + [anon_sym_AMP] = ACTIONS(3560), + [anon_sym_SEMI] = ACTIONS(3562), + [anon_sym___extension__] = ACTIONS(3560), + [anon_sym_typedef] = ACTIONS(3560), + [anon_sym_virtual] = ACTIONS(3560), + [anon_sym_extern] = ACTIONS(3560), + [anon_sym___attribute__] = ACTIONS(3560), + [anon_sym___attribute] = ACTIONS(3560), + [anon_sym_using] = ACTIONS(3560), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3562), + [anon_sym___declspec] = ACTIONS(3560), + [anon_sym___based] = ACTIONS(3560), + [anon_sym___cdecl] = ACTIONS(3560), + [anon_sym___clrcall] = ACTIONS(3560), + [anon_sym___stdcall] = ACTIONS(3560), + [anon_sym___fastcall] = ACTIONS(3560), + [anon_sym___thiscall] = ACTIONS(3560), + [anon_sym___vectorcall] = ACTIONS(3560), + [anon_sym_LBRACE] = ACTIONS(3562), + [anon_sym_signed] = ACTIONS(3560), + [anon_sym_unsigned] = ACTIONS(3560), + [anon_sym_long] = ACTIONS(3560), + [anon_sym_short] = ACTIONS(3560), + [anon_sym_LBRACK] = ACTIONS(3560), + [anon_sym_static] = ACTIONS(3560), + [anon_sym_register] = ACTIONS(3560), + [anon_sym_inline] = ACTIONS(3560), + [anon_sym___inline] = ACTIONS(3560), + [anon_sym___inline__] = ACTIONS(3560), + [anon_sym___forceinline] = ACTIONS(3560), + [anon_sym_thread_local] = ACTIONS(3560), + [anon_sym___thread] = ACTIONS(3560), + [anon_sym_const] = ACTIONS(3560), + [anon_sym_constexpr] = ACTIONS(3560), + [anon_sym_volatile] = ACTIONS(3560), + [anon_sym_restrict] = ACTIONS(3560), + [anon_sym___restrict__] = ACTIONS(3560), + [anon_sym__Atomic] = ACTIONS(3560), + [anon_sym__Noreturn] = ACTIONS(3560), + [anon_sym_noreturn] = ACTIONS(3560), + [anon_sym__Nonnull] = ACTIONS(3560), + [anon_sym_mutable] = ACTIONS(3560), + [anon_sym_constinit] = ACTIONS(3560), + [anon_sym_consteval] = ACTIONS(3560), + [anon_sym_alignas] = ACTIONS(3560), + [anon_sym__Alignas] = ACTIONS(3560), + [sym_primitive_type] = ACTIONS(3560), + [anon_sym_enum] = ACTIONS(3560), + [anon_sym_class] = ACTIONS(3560), + [anon_sym_struct] = ACTIONS(3560), + [anon_sym_union] = ACTIONS(3560), + [anon_sym_if] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(3560), + [anon_sym_switch] = ACTIONS(3560), + [anon_sym_case] = ACTIONS(3560), + [anon_sym_default] = ACTIONS(3560), + [anon_sym_while] = ACTIONS(3560), + [anon_sym_do] = ACTIONS(3560), + [anon_sym_for] = ACTIONS(3560), + [anon_sym_return] = ACTIONS(3560), + [anon_sym_break] = ACTIONS(3560), + [anon_sym_continue] = ACTIONS(3560), + [anon_sym_goto] = ACTIONS(3560), + [anon_sym___try] = ACTIONS(3560), + [anon_sym___leave] = ACTIONS(3560), + [anon_sym_not] = ACTIONS(3560), + [anon_sym_compl] = ACTIONS(3560), + [anon_sym_DASH_DASH] = ACTIONS(3562), + [anon_sym_PLUS_PLUS] = ACTIONS(3562), + [anon_sym_sizeof] = ACTIONS(3560), + [anon_sym___alignof__] = ACTIONS(3560), + [anon_sym___alignof] = ACTIONS(3560), + [anon_sym__alignof] = ACTIONS(3560), + [anon_sym_alignof] = ACTIONS(3560), + [anon_sym__Alignof] = ACTIONS(3560), + [anon_sym_offsetof] = ACTIONS(3560), + [anon_sym__Generic] = ACTIONS(3560), + [anon_sym_typename] = ACTIONS(3560), + [anon_sym_asm] = ACTIONS(3560), + [anon_sym___asm__] = ACTIONS(3560), + [anon_sym___asm] = ACTIONS(3560), + [sym_number_literal] = ACTIONS(3562), + [anon_sym_L_SQUOTE] = ACTIONS(3562), + [anon_sym_u_SQUOTE] = ACTIONS(3562), + [anon_sym_U_SQUOTE] = ACTIONS(3562), + [anon_sym_u8_SQUOTE] = ACTIONS(3562), + [anon_sym_SQUOTE] = ACTIONS(3562), + [anon_sym_L_DQUOTE] = ACTIONS(3562), + [anon_sym_u_DQUOTE] = ACTIONS(3562), + [anon_sym_U_DQUOTE] = ACTIONS(3562), + [anon_sym_u8_DQUOTE] = ACTIONS(3562), + [anon_sym_DQUOTE] = ACTIONS(3562), + [sym_true] = ACTIONS(3560), + [sym_false] = ACTIONS(3560), + [anon_sym_NULL] = ACTIONS(3560), + [anon_sym_nullptr] = ACTIONS(3560), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3560), + [anon_sym_decltype] = ACTIONS(3560), + [anon_sym_explicit] = ACTIONS(3560), + [anon_sym_export] = ACTIONS(3560), + [anon_sym_module] = ACTIONS(3560), + [anon_sym_import] = ACTIONS(3560), + [anon_sym_template] = ACTIONS(3560), + [anon_sym_operator] = ACTIONS(3560), + [anon_sym_try] = ACTIONS(3560), + [anon_sym_delete] = ACTIONS(3560), + [anon_sym_throw] = ACTIONS(3560), + [anon_sym_namespace] = ACTIONS(3560), + [anon_sym_static_assert] = ACTIONS(3560), + [anon_sym_concept] = ACTIONS(3560), + [anon_sym_co_return] = ACTIONS(3560), + [anon_sym_co_yield] = ACTIONS(3560), + [anon_sym_R_DQUOTE] = ACTIONS(3562), + [anon_sym_LR_DQUOTE] = ACTIONS(3562), + [anon_sym_uR_DQUOTE] = ACTIONS(3562), + [anon_sym_UR_DQUOTE] = ACTIONS(3562), + [anon_sym_u8R_DQUOTE] = ACTIONS(3562), + [anon_sym_co_await] = ACTIONS(3560), + [anon_sym_new] = ACTIONS(3560), + [anon_sym_requires] = ACTIONS(3560), + [anon_sym_CARET_CARET] = ACTIONS(3562), + [anon_sym_LBRACK_COLON] = ACTIONS(3562), + [sym_this] = ACTIONS(3560), + }, + [STATE(351)] = { + [sym_identifier] = ACTIONS(3564), + [aux_sym_preproc_include_token1] = ACTIONS(3564), + [aux_sym_preproc_def_token1] = ACTIONS(3564), + [aux_sym_preproc_if_token1] = ACTIONS(3564), + [aux_sym_preproc_if_token2] = ACTIONS(3564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3564), + [aux_sym_preproc_else_token1] = ACTIONS(3564), + [aux_sym_preproc_elif_token1] = ACTIONS(3564), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3564), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3564), + [sym_preproc_directive] = ACTIONS(3564), + [anon_sym_LPAREN2] = ACTIONS(3566), + [anon_sym_BANG] = ACTIONS(3566), + [anon_sym_TILDE] = ACTIONS(3566), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3566), + [anon_sym_AMP_AMP] = ACTIONS(3566), + [anon_sym_AMP] = ACTIONS(3564), + [anon_sym_SEMI] = ACTIONS(3566), + [anon_sym___extension__] = ACTIONS(3564), + [anon_sym_typedef] = ACTIONS(3564), + [anon_sym_virtual] = ACTIONS(3564), + [anon_sym_extern] = ACTIONS(3564), + [anon_sym___attribute__] = ACTIONS(3564), + [anon_sym___attribute] = ACTIONS(3564), + [anon_sym_using] = ACTIONS(3564), + [anon_sym_COLON_COLON] = ACTIONS(3566), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3566), + [anon_sym___declspec] = ACTIONS(3564), + [anon_sym___based] = ACTIONS(3564), + [anon_sym___cdecl] = ACTIONS(3564), + [anon_sym___clrcall] = ACTIONS(3564), + [anon_sym___stdcall] = ACTIONS(3564), + [anon_sym___fastcall] = ACTIONS(3564), + [anon_sym___thiscall] = ACTIONS(3564), + [anon_sym___vectorcall] = ACTIONS(3564), + [anon_sym_LBRACE] = ACTIONS(3566), + [anon_sym_signed] = ACTIONS(3564), + [anon_sym_unsigned] = ACTIONS(3564), + [anon_sym_long] = ACTIONS(3564), + [anon_sym_short] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3564), + [anon_sym_static] = ACTIONS(3564), + [anon_sym_register] = ACTIONS(3564), + [anon_sym_inline] = ACTIONS(3564), + [anon_sym___inline] = ACTIONS(3564), + [anon_sym___inline__] = ACTIONS(3564), + [anon_sym___forceinline] = ACTIONS(3564), + [anon_sym_thread_local] = ACTIONS(3564), + [anon_sym___thread] = ACTIONS(3564), + [anon_sym_const] = ACTIONS(3564), + [anon_sym_constexpr] = ACTIONS(3564), + [anon_sym_volatile] = ACTIONS(3564), + [anon_sym_restrict] = ACTIONS(3564), + [anon_sym___restrict__] = ACTIONS(3564), + [anon_sym__Atomic] = ACTIONS(3564), + [anon_sym__Noreturn] = ACTIONS(3564), + [anon_sym_noreturn] = ACTIONS(3564), + [anon_sym__Nonnull] = ACTIONS(3564), + [anon_sym_mutable] = ACTIONS(3564), + [anon_sym_constinit] = ACTIONS(3564), + [anon_sym_consteval] = ACTIONS(3564), + [anon_sym_alignas] = ACTIONS(3564), + [anon_sym__Alignas] = ACTIONS(3564), + [sym_primitive_type] = ACTIONS(3564), + [anon_sym_enum] = ACTIONS(3564), + [anon_sym_class] = ACTIONS(3564), + [anon_sym_struct] = ACTIONS(3564), + [anon_sym_union] = ACTIONS(3564), + [anon_sym_if] = ACTIONS(3564), + [anon_sym_else] = ACTIONS(3564), + [anon_sym_switch] = ACTIONS(3564), + [anon_sym_case] = ACTIONS(3564), + [anon_sym_default] = ACTIONS(3564), + [anon_sym_while] = ACTIONS(3564), + [anon_sym_do] = ACTIONS(3564), + [anon_sym_for] = ACTIONS(3564), + [anon_sym_return] = ACTIONS(3564), + [anon_sym_break] = ACTIONS(3564), + [anon_sym_continue] = ACTIONS(3564), + [anon_sym_goto] = ACTIONS(3564), + [anon_sym___try] = ACTIONS(3564), + [anon_sym___leave] = ACTIONS(3564), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3566), + [anon_sym_sizeof] = ACTIONS(3564), + [anon_sym___alignof__] = ACTIONS(3564), + [anon_sym___alignof] = ACTIONS(3564), + [anon_sym__alignof] = ACTIONS(3564), + [anon_sym_alignof] = ACTIONS(3564), + [anon_sym__Alignof] = ACTIONS(3564), + [anon_sym_offsetof] = ACTIONS(3564), + [anon_sym__Generic] = ACTIONS(3564), + [anon_sym_typename] = ACTIONS(3564), + [anon_sym_asm] = ACTIONS(3564), + [anon_sym___asm__] = ACTIONS(3564), + [anon_sym___asm] = ACTIONS(3564), + [sym_number_literal] = ACTIONS(3566), + [anon_sym_L_SQUOTE] = ACTIONS(3566), + [anon_sym_u_SQUOTE] = ACTIONS(3566), + [anon_sym_U_SQUOTE] = ACTIONS(3566), + [anon_sym_u8_SQUOTE] = ACTIONS(3566), + [anon_sym_SQUOTE] = ACTIONS(3566), + [anon_sym_L_DQUOTE] = ACTIONS(3566), + [anon_sym_u_DQUOTE] = ACTIONS(3566), + [anon_sym_U_DQUOTE] = ACTIONS(3566), + [anon_sym_u8_DQUOTE] = ACTIONS(3566), + [anon_sym_DQUOTE] = ACTIONS(3566), + [sym_true] = ACTIONS(3564), + [sym_false] = ACTIONS(3564), + [anon_sym_NULL] = ACTIONS(3564), + [anon_sym_nullptr] = ACTIONS(3564), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3564), + [anon_sym_decltype] = ACTIONS(3564), + [anon_sym_explicit] = ACTIONS(3564), + [anon_sym_export] = ACTIONS(3564), + [anon_sym_module] = ACTIONS(3564), + [anon_sym_import] = ACTIONS(3564), + [anon_sym_template] = ACTIONS(3564), + [anon_sym_operator] = ACTIONS(3564), + [anon_sym_try] = ACTIONS(3564), + [anon_sym_delete] = ACTIONS(3564), + [anon_sym_throw] = ACTIONS(3564), + [anon_sym_namespace] = ACTIONS(3564), + [anon_sym_static_assert] = ACTIONS(3564), + [anon_sym_concept] = ACTIONS(3564), + [anon_sym_co_return] = ACTIONS(3564), + [anon_sym_co_yield] = ACTIONS(3564), + [anon_sym_R_DQUOTE] = ACTIONS(3566), + [anon_sym_LR_DQUOTE] = ACTIONS(3566), + [anon_sym_uR_DQUOTE] = ACTIONS(3566), + [anon_sym_UR_DQUOTE] = ACTIONS(3566), + [anon_sym_u8R_DQUOTE] = ACTIONS(3566), + [anon_sym_co_await] = ACTIONS(3564), + [anon_sym_new] = ACTIONS(3564), + [anon_sym_requires] = ACTIONS(3564), + [anon_sym_CARET_CARET] = ACTIONS(3566), + [anon_sym_LBRACK_COLON] = ACTIONS(3566), + [sym_this] = ACTIONS(3564), + }, + [STATE(352)] = { + [sym_identifier] = ACTIONS(3568), + [aux_sym_preproc_include_token1] = ACTIONS(3568), + [aux_sym_preproc_def_token1] = ACTIONS(3568), + [aux_sym_preproc_if_token1] = ACTIONS(3568), + [aux_sym_preproc_if_token2] = ACTIONS(3568), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3568), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3568), + [aux_sym_preproc_else_token1] = ACTIONS(3568), + [aux_sym_preproc_elif_token1] = ACTIONS(3568), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3568), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3568), + [sym_preproc_directive] = ACTIONS(3568), + [anon_sym_LPAREN2] = ACTIONS(3570), + [anon_sym_BANG] = ACTIONS(3570), + [anon_sym_TILDE] = ACTIONS(3570), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_STAR] = ACTIONS(3570), + [anon_sym_AMP_AMP] = ACTIONS(3570), + [anon_sym_AMP] = ACTIONS(3568), + [anon_sym_SEMI] = ACTIONS(3570), + [anon_sym___extension__] = ACTIONS(3568), + [anon_sym_typedef] = ACTIONS(3568), + [anon_sym_virtual] = ACTIONS(3568), + [anon_sym_extern] = ACTIONS(3568), + [anon_sym___attribute__] = ACTIONS(3568), + [anon_sym___attribute] = ACTIONS(3568), + [anon_sym_using] = ACTIONS(3568), + [anon_sym_COLON_COLON] = ACTIONS(3570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3570), + [anon_sym___declspec] = ACTIONS(3568), + [anon_sym___based] = ACTIONS(3568), + [anon_sym___cdecl] = ACTIONS(3568), + [anon_sym___clrcall] = ACTIONS(3568), + [anon_sym___stdcall] = ACTIONS(3568), + [anon_sym___fastcall] = ACTIONS(3568), + [anon_sym___thiscall] = ACTIONS(3568), + [anon_sym___vectorcall] = ACTIONS(3568), + [anon_sym_LBRACE] = ACTIONS(3570), + [anon_sym_signed] = ACTIONS(3568), + [anon_sym_unsigned] = ACTIONS(3568), + [anon_sym_long] = ACTIONS(3568), + [anon_sym_short] = ACTIONS(3568), + [anon_sym_LBRACK] = ACTIONS(3568), + [anon_sym_static] = ACTIONS(3568), + [anon_sym_register] = ACTIONS(3568), + [anon_sym_inline] = ACTIONS(3568), + [anon_sym___inline] = ACTIONS(3568), + [anon_sym___inline__] = ACTIONS(3568), + [anon_sym___forceinline] = ACTIONS(3568), + [anon_sym_thread_local] = ACTIONS(3568), + [anon_sym___thread] = ACTIONS(3568), + [anon_sym_const] = ACTIONS(3568), + [anon_sym_constexpr] = ACTIONS(3568), + [anon_sym_volatile] = ACTIONS(3568), + [anon_sym_restrict] = ACTIONS(3568), + [anon_sym___restrict__] = ACTIONS(3568), + [anon_sym__Atomic] = ACTIONS(3568), + [anon_sym__Noreturn] = ACTIONS(3568), + [anon_sym_noreturn] = ACTIONS(3568), + [anon_sym__Nonnull] = ACTIONS(3568), + [anon_sym_mutable] = ACTIONS(3568), + [anon_sym_constinit] = ACTIONS(3568), + [anon_sym_consteval] = ACTIONS(3568), + [anon_sym_alignas] = ACTIONS(3568), + [anon_sym__Alignas] = ACTIONS(3568), + [sym_primitive_type] = ACTIONS(3568), + [anon_sym_enum] = ACTIONS(3568), + [anon_sym_class] = ACTIONS(3568), + [anon_sym_struct] = ACTIONS(3568), + [anon_sym_union] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_else] = ACTIONS(3568), + [anon_sym_switch] = ACTIONS(3568), + [anon_sym_case] = ACTIONS(3568), + [anon_sym_default] = ACTIONS(3568), + [anon_sym_while] = ACTIONS(3568), + [anon_sym_do] = ACTIONS(3568), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_break] = ACTIONS(3568), + [anon_sym_continue] = ACTIONS(3568), + [anon_sym_goto] = ACTIONS(3568), + [anon_sym___try] = ACTIONS(3568), + [anon_sym___leave] = ACTIONS(3568), + [anon_sym_not] = ACTIONS(3568), + [anon_sym_compl] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3570), + [anon_sym_PLUS_PLUS] = ACTIONS(3570), + [anon_sym_sizeof] = ACTIONS(3568), + [anon_sym___alignof__] = ACTIONS(3568), + [anon_sym___alignof] = ACTIONS(3568), + [anon_sym__alignof] = ACTIONS(3568), + [anon_sym_alignof] = ACTIONS(3568), + [anon_sym__Alignof] = ACTIONS(3568), + [anon_sym_offsetof] = ACTIONS(3568), + [anon_sym__Generic] = ACTIONS(3568), + [anon_sym_typename] = ACTIONS(3568), + [anon_sym_asm] = ACTIONS(3568), + [anon_sym___asm__] = ACTIONS(3568), + [anon_sym___asm] = ACTIONS(3568), + [sym_number_literal] = ACTIONS(3570), + [anon_sym_L_SQUOTE] = ACTIONS(3570), + [anon_sym_u_SQUOTE] = ACTIONS(3570), + [anon_sym_U_SQUOTE] = ACTIONS(3570), + [anon_sym_u8_SQUOTE] = ACTIONS(3570), + [anon_sym_SQUOTE] = ACTIONS(3570), + [anon_sym_L_DQUOTE] = ACTIONS(3570), + [anon_sym_u_DQUOTE] = ACTIONS(3570), + [anon_sym_U_DQUOTE] = ACTIONS(3570), + [anon_sym_u8_DQUOTE] = ACTIONS(3570), + [anon_sym_DQUOTE] = ACTIONS(3570), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [anon_sym_NULL] = ACTIONS(3568), + [anon_sym_nullptr] = ACTIONS(3568), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3568), + [anon_sym_decltype] = ACTIONS(3568), + [anon_sym_explicit] = ACTIONS(3568), + [anon_sym_export] = ACTIONS(3568), + [anon_sym_module] = ACTIONS(3568), + [anon_sym_import] = ACTIONS(3568), + [anon_sym_template] = ACTIONS(3568), + [anon_sym_operator] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3568), + [anon_sym_delete] = ACTIONS(3568), + [anon_sym_throw] = ACTIONS(3568), + [anon_sym_namespace] = ACTIONS(3568), + [anon_sym_static_assert] = ACTIONS(3568), + [anon_sym_concept] = ACTIONS(3568), + [anon_sym_co_return] = ACTIONS(3568), + [anon_sym_co_yield] = ACTIONS(3568), + [anon_sym_R_DQUOTE] = ACTIONS(3570), + [anon_sym_LR_DQUOTE] = ACTIONS(3570), + [anon_sym_uR_DQUOTE] = ACTIONS(3570), + [anon_sym_UR_DQUOTE] = ACTIONS(3570), + [anon_sym_u8R_DQUOTE] = ACTIONS(3570), + [anon_sym_co_await] = ACTIONS(3568), + [anon_sym_new] = ACTIONS(3568), + [anon_sym_requires] = ACTIONS(3568), + [anon_sym_CARET_CARET] = ACTIONS(3570), + [anon_sym_LBRACK_COLON] = ACTIONS(3570), + [sym_this] = ACTIONS(3568), + }, + [STATE(353)] = { + [sym_identifier] = ACTIONS(3572), + [aux_sym_preproc_include_token1] = ACTIONS(3572), + [aux_sym_preproc_def_token1] = ACTIONS(3572), + [aux_sym_preproc_if_token1] = ACTIONS(3572), + [aux_sym_preproc_if_token2] = ACTIONS(3572), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3572), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3572), + [aux_sym_preproc_else_token1] = ACTIONS(3572), + [aux_sym_preproc_elif_token1] = ACTIONS(3572), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3572), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3572), + [sym_preproc_directive] = ACTIONS(3572), + [anon_sym_LPAREN2] = ACTIONS(3574), + [anon_sym_BANG] = ACTIONS(3574), + [anon_sym_TILDE] = ACTIONS(3574), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_STAR] = ACTIONS(3574), + [anon_sym_AMP_AMP] = ACTIONS(3574), + [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3574), + [anon_sym___extension__] = ACTIONS(3572), + [anon_sym_typedef] = ACTIONS(3572), + [anon_sym_virtual] = ACTIONS(3572), + [anon_sym_extern] = ACTIONS(3572), + [anon_sym___attribute__] = ACTIONS(3572), + [anon_sym___attribute] = ACTIONS(3572), + [anon_sym_using] = ACTIONS(3572), + [anon_sym_COLON_COLON] = ACTIONS(3574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3574), + [anon_sym___declspec] = ACTIONS(3572), + [anon_sym___based] = ACTIONS(3572), + [anon_sym___cdecl] = ACTIONS(3572), + [anon_sym___clrcall] = ACTIONS(3572), + [anon_sym___stdcall] = ACTIONS(3572), + [anon_sym___fastcall] = ACTIONS(3572), + [anon_sym___thiscall] = ACTIONS(3572), + [anon_sym___vectorcall] = ACTIONS(3572), + [anon_sym_LBRACE] = ACTIONS(3574), + [anon_sym_signed] = ACTIONS(3572), + [anon_sym_unsigned] = ACTIONS(3572), + [anon_sym_long] = ACTIONS(3572), + [anon_sym_short] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_static] = ACTIONS(3572), + [anon_sym_register] = ACTIONS(3572), + [anon_sym_inline] = ACTIONS(3572), + [anon_sym___inline] = ACTIONS(3572), + [anon_sym___inline__] = ACTIONS(3572), + [anon_sym___forceinline] = ACTIONS(3572), + [anon_sym_thread_local] = ACTIONS(3572), + [anon_sym___thread] = ACTIONS(3572), + [anon_sym_const] = ACTIONS(3572), + [anon_sym_constexpr] = ACTIONS(3572), + [anon_sym_volatile] = ACTIONS(3572), + [anon_sym_restrict] = ACTIONS(3572), + [anon_sym___restrict__] = ACTIONS(3572), + [anon_sym__Atomic] = ACTIONS(3572), + [anon_sym__Noreturn] = ACTIONS(3572), + [anon_sym_noreturn] = ACTIONS(3572), + [anon_sym__Nonnull] = ACTIONS(3572), + [anon_sym_mutable] = ACTIONS(3572), + [anon_sym_constinit] = ACTIONS(3572), + [anon_sym_consteval] = ACTIONS(3572), + [anon_sym_alignas] = ACTIONS(3572), + [anon_sym__Alignas] = ACTIONS(3572), + [sym_primitive_type] = ACTIONS(3572), + [anon_sym_enum] = ACTIONS(3572), + [anon_sym_class] = ACTIONS(3572), + [anon_sym_struct] = ACTIONS(3572), + [anon_sym_union] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_else] = ACTIONS(3572), + [anon_sym_switch] = ACTIONS(3572), + [anon_sym_case] = ACTIONS(3572), + [anon_sym_default] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_break] = ACTIONS(3572), + [anon_sym_continue] = ACTIONS(3572), + [anon_sym_goto] = ACTIONS(3572), + [anon_sym___try] = ACTIONS(3572), + [anon_sym___leave] = ACTIONS(3572), + [anon_sym_not] = ACTIONS(3572), + [anon_sym_compl] = ACTIONS(3572), + [anon_sym_DASH_DASH] = ACTIONS(3574), + [anon_sym_PLUS_PLUS] = ACTIONS(3574), + [anon_sym_sizeof] = ACTIONS(3572), + [anon_sym___alignof__] = ACTIONS(3572), + [anon_sym___alignof] = ACTIONS(3572), + [anon_sym__alignof] = ACTIONS(3572), + [anon_sym_alignof] = ACTIONS(3572), + [anon_sym__Alignof] = ACTIONS(3572), + [anon_sym_offsetof] = ACTIONS(3572), + [anon_sym__Generic] = ACTIONS(3572), + [anon_sym_typename] = ACTIONS(3572), + [anon_sym_asm] = ACTIONS(3572), + [anon_sym___asm__] = ACTIONS(3572), + [anon_sym___asm] = ACTIONS(3572), + [sym_number_literal] = ACTIONS(3574), + [anon_sym_L_SQUOTE] = ACTIONS(3574), + [anon_sym_u_SQUOTE] = ACTIONS(3574), + [anon_sym_U_SQUOTE] = ACTIONS(3574), + [anon_sym_u8_SQUOTE] = ACTIONS(3574), + [anon_sym_SQUOTE] = ACTIONS(3574), + [anon_sym_L_DQUOTE] = ACTIONS(3574), + [anon_sym_u_DQUOTE] = ACTIONS(3574), + [anon_sym_U_DQUOTE] = ACTIONS(3574), + [anon_sym_u8_DQUOTE] = ACTIONS(3574), + [anon_sym_DQUOTE] = ACTIONS(3574), + [sym_true] = ACTIONS(3572), + [sym_false] = ACTIONS(3572), + [anon_sym_NULL] = ACTIONS(3572), + [anon_sym_nullptr] = ACTIONS(3572), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3572), + [anon_sym_decltype] = ACTIONS(3572), + [anon_sym_explicit] = ACTIONS(3572), + [anon_sym_export] = ACTIONS(3572), + [anon_sym_module] = ACTIONS(3572), + [anon_sym_import] = ACTIONS(3572), + [anon_sym_template] = ACTIONS(3572), + [anon_sym_operator] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_delete] = ACTIONS(3572), + [anon_sym_throw] = ACTIONS(3572), + [anon_sym_namespace] = ACTIONS(3572), + [anon_sym_static_assert] = ACTIONS(3572), + [anon_sym_concept] = ACTIONS(3572), + [anon_sym_co_return] = ACTIONS(3572), + [anon_sym_co_yield] = ACTIONS(3572), + [anon_sym_R_DQUOTE] = ACTIONS(3574), + [anon_sym_LR_DQUOTE] = ACTIONS(3574), + [anon_sym_uR_DQUOTE] = ACTIONS(3574), + [anon_sym_UR_DQUOTE] = ACTIONS(3574), + [anon_sym_u8R_DQUOTE] = ACTIONS(3574), + [anon_sym_co_await] = ACTIONS(3572), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_requires] = ACTIONS(3572), + [anon_sym_CARET_CARET] = ACTIONS(3574), + [anon_sym_LBRACK_COLON] = ACTIONS(3574), + [sym_this] = ACTIONS(3572), + }, + [STATE(354)] = { + [sym_identifier] = ACTIONS(3576), + [aux_sym_preproc_include_token1] = ACTIONS(3576), + [aux_sym_preproc_def_token1] = ACTIONS(3576), + [aux_sym_preproc_if_token1] = ACTIONS(3576), + [aux_sym_preproc_if_token2] = ACTIONS(3576), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3576), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3576), + [aux_sym_preproc_else_token1] = ACTIONS(3576), + [aux_sym_preproc_elif_token1] = ACTIONS(3576), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3576), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3576), + [sym_preproc_directive] = ACTIONS(3576), + [anon_sym_LPAREN2] = ACTIONS(3578), + [anon_sym_BANG] = ACTIONS(3578), + [anon_sym_TILDE] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_STAR] = ACTIONS(3578), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_AMP] = ACTIONS(3576), + [anon_sym_SEMI] = ACTIONS(3578), + [anon_sym___extension__] = ACTIONS(3576), + [anon_sym_typedef] = ACTIONS(3576), + [anon_sym_virtual] = ACTIONS(3576), + [anon_sym_extern] = ACTIONS(3576), + [anon_sym___attribute__] = ACTIONS(3576), + [anon_sym___attribute] = ACTIONS(3576), + [anon_sym_using] = ACTIONS(3576), + [anon_sym_COLON_COLON] = ACTIONS(3578), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3578), + [anon_sym___declspec] = ACTIONS(3576), + [anon_sym___based] = ACTIONS(3576), + [anon_sym___cdecl] = ACTIONS(3576), + [anon_sym___clrcall] = ACTIONS(3576), + [anon_sym___stdcall] = ACTIONS(3576), + [anon_sym___fastcall] = ACTIONS(3576), + [anon_sym___thiscall] = ACTIONS(3576), + [anon_sym___vectorcall] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_signed] = ACTIONS(3576), + [anon_sym_unsigned] = ACTIONS(3576), + [anon_sym_long] = ACTIONS(3576), + [anon_sym_short] = ACTIONS(3576), + [anon_sym_LBRACK] = ACTIONS(3576), + [anon_sym_static] = ACTIONS(3576), + [anon_sym_register] = ACTIONS(3576), + [anon_sym_inline] = ACTIONS(3576), + [anon_sym___inline] = ACTIONS(3576), + [anon_sym___inline__] = ACTIONS(3576), + [anon_sym___forceinline] = ACTIONS(3576), + [anon_sym_thread_local] = ACTIONS(3576), + [anon_sym___thread] = ACTIONS(3576), + [anon_sym_const] = ACTIONS(3576), + [anon_sym_constexpr] = ACTIONS(3576), + [anon_sym_volatile] = ACTIONS(3576), + [anon_sym_restrict] = ACTIONS(3576), + [anon_sym___restrict__] = ACTIONS(3576), + [anon_sym__Atomic] = ACTIONS(3576), + [anon_sym__Noreturn] = ACTIONS(3576), + [anon_sym_noreturn] = ACTIONS(3576), + [anon_sym__Nonnull] = ACTIONS(3576), + [anon_sym_mutable] = ACTIONS(3576), + [anon_sym_constinit] = ACTIONS(3576), + [anon_sym_consteval] = ACTIONS(3576), + [anon_sym_alignas] = ACTIONS(3576), + [anon_sym__Alignas] = ACTIONS(3576), + [sym_primitive_type] = ACTIONS(3576), + [anon_sym_enum] = ACTIONS(3576), + [anon_sym_class] = ACTIONS(3576), + [anon_sym_struct] = ACTIONS(3576), + [anon_sym_union] = ACTIONS(3576), + [anon_sym_if] = ACTIONS(3576), + [anon_sym_else] = ACTIONS(3576), + [anon_sym_switch] = ACTIONS(3576), + [anon_sym_case] = ACTIONS(3576), + [anon_sym_default] = ACTIONS(3576), + [anon_sym_while] = ACTIONS(3576), + [anon_sym_do] = ACTIONS(3576), + [anon_sym_for] = ACTIONS(3576), + [anon_sym_return] = ACTIONS(3576), + [anon_sym_break] = ACTIONS(3576), + [anon_sym_continue] = ACTIONS(3576), + [anon_sym_goto] = ACTIONS(3576), + [anon_sym___try] = ACTIONS(3576), + [anon_sym___leave] = ACTIONS(3576), + [anon_sym_not] = ACTIONS(3576), + [anon_sym_compl] = ACTIONS(3576), + [anon_sym_DASH_DASH] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3578), + [anon_sym_sizeof] = ACTIONS(3576), + [anon_sym___alignof__] = ACTIONS(3576), + [anon_sym___alignof] = ACTIONS(3576), + [anon_sym__alignof] = ACTIONS(3576), + [anon_sym_alignof] = ACTIONS(3576), + [anon_sym__Alignof] = ACTIONS(3576), + [anon_sym_offsetof] = ACTIONS(3576), + [anon_sym__Generic] = ACTIONS(3576), + [anon_sym_typename] = ACTIONS(3576), + [anon_sym_asm] = ACTIONS(3576), + [anon_sym___asm__] = ACTIONS(3576), + [anon_sym___asm] = ACTIONS(3576), + [sym_number_literal] = ACTIONS(3578), + [anon_sym_L_SQUOTE] = ACTIONS(3578), + [anon_sym_u_SQUOTE] = ACTIONS(3578), + [anon_sym_U_SQUOTE] = ACTIONS(3578), + [anon_sym_u8_SQUOTE] = ACTIONS(3578), + [anon_sym_SQUOTE] = ACTIONS(3578), + [anon_sym_L_DQUOTE] = ACTIONS(3578), + [anon_sym_u_DQUOTE] = ACTIONS(3578), + [anon_sym_U_DQUOTE] = ACTIONS(3578), + [anon_sym_u8_DQUOTE] = ACTIONS(3578), + [anon_sym_DQUOTE] = ACTIONS(3578), + [sym_true] = ACTIONS(3576), + [sym_false] = ACTIONS(3576), + [anon_sym_NULL] = ACTIONS(3576), + [anon_sym_nullptr] = ACTIONS(3576), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3576), + [anon_sym_decltype] = ACTIONS(3576), + [anon_sym_explicit] = ACTIONS(3576), + [anon_sym_export] = ACTIONS(3576), + [anon_sym_module] = ACTIONS(3576), + [anon_sym_import] = ACTIONS(3576), + [anon_sym_template] = ACTIONS(3576), + [anon_sym_operator] = ACTIONS(3576), + [anon_sym_try] = ACTIONS(3576), + [anon_sym_delete] = ACTIONS(3576), + [anon_sym_throw] = ACTIONS(3576), + [anon_sym_namespace] = ACTIONS(3576), + [anon_sym_static_assert] = ACTIONS(3576), + [anon_sym_concept] = ACTIONS(3576), + [anon_sym_co_return] = ACTIONS(3576), + [anon_sym_co_yield] = ACTIONS(3576), + [anon_sym_R_DQUOTE] = ACTIONS(3578), + [anon_sym_LR_DQUOTE] = ACTIONS(3578), + [anon_sym_uR_DQUOTE] = ACTIONS(3578), + [anon_sym_UR_DQUOTE] = ACTIONS(3578), + [anon_sym_u8R_DQUOTE] = ACTIONS(3578), + [anon_sym_co_await] = ACTIONS(3576), + [anon_sym_new] = ACTIONS(3576), + [anon_sym_requires] = ACTIONS(3576), + [anon_sym_CARET_CARET] = ACTIONS(3578), + [anon_sym_LBRACK_COLON] = ACTIONS(3578), + [sym_this] = ACTIONS(3576), + }, + [STATE(355)] = { + [sym_identifier] = ACTIONS(3580), + [aux_sym_preproc_include_token1] = ACTIONS(3580), + [aux_sym_preproc_def_token1] = ACTIONS(3580), + [aux_sym_preproc_if_token1] = ACTIONS(3580), + [aux_sym_preproc_if_token2] = ACTIONS(3580), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3580), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3580), + [aux_sym_preproc_else_token1] = ACTIONS(3580), + [aux_sym_preproc_elif_token1] = ACTIONS(3580), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3580), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3580), + [sym_preproc_directive] = ACTIONS(3580), + [anon_sym_LPAREN2] = ACTIONS(3582), + [anon_sym_BANG] = ACTIONS(3582), + [anon_sym_TILDE] = ACTIONS(3582), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_STAR] = ACTIONS(3582), + [anon_sym_AMP_AMP] = ACTIONS(3582), + [anon_sym_AMP] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym___extension__] = ACTIONS(3580), + [anon_sym_typedef] = ACTIONS(3580), + [anon_sym_virtual] = ACTIONS(3580), + [anon_sym_extern] = ACTIONS(3580), + [anon_sym___attribute__] = ACTIONS(3580), + [anon_sym___attribute] = ACTIONS(3580), + [anon_sym_using] = ACTIONS(3580), + [anon_sym_COLON_COLON] = ACTIONS(3582), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3582), + [anon_sym___declspec] = ACTIONS(3580), + [anon_sym___based] = ACTIONS(3580), + [anon_sym___cdecl] = ACTIONS(3580), + [anon_sym___clrcall] = ACTIONS(3580), + [anon_sym___stdcall] = ACTIONS(3580), + [anon_sym___fastcall] = ACTIONS(3580), + [anon_sym___thiscall] = ACTIONS(3580), + [anon_sym___vectorcall] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_signed] = ACTIONS(3580), + [anon_sym_unsigned] = ACTIONS(3580), + [anon_sym_long] = ACTIONS(3580), + [anon_sym_short] = ACTIONS(3580), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_register] = ACTIONS(3580), + [anon_sym_inline] = ACTIONS(3580), + [anon_sym___inline] = ACTIONS(3580), + [anon_sym___inline__] = ACTIONS(3580), + [anon_sym___forceinline] = ACTIONS(3580), + [anon_sym_thread_local] = ACTIONS(3580), + [anon_sym___thread] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_constexpr] = ACTIONS(3580), + [anon_sym_volatile] = ACTIONS(3580), + [anon_sym_restrict] = ACTIONS(3580), + [anon_sym___restrict__] = ACTIONS(3580), + [anon_sym__Atomic] = ACTIONS(3580), + [anon_sym__Noreturn] = ACTIONS(3580), + [anon_sym_noreturn] = ACTIONS(3580), + [anon_sym__Nonnull] = ACTIONS(3580), + [anon_sym_mutable] = ACTIONS(3580), + [anon_sym_constinit] = ACTIONS(3580), + [anon_sym_consteval] = ACTIONS(3580), + [anon_sym_alignas] = ACTIONS(3580), + [anon_sym__Alignas] = ACTIONS(3580), + [sym_primitive_type] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), + [anon_sym_class] = ACTIONS(3580), + [anon_sym_struct] = ACTIONS(3580), + [anon_sym_union] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_else] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_case] = ACTIONS(3580), + [anon_sym_default] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_goto] = ACTIONS(3580), + [anon_sym___try] = ACTIONS(3580), + [anon_sym___leave] = ACTIONS(3580), + [anon_sym_not] = ACTIONS(3580), + [anon_sym_compl] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3582), + [anon_sym_PLUS_PLUS] = ACTIONS(3582), + [anon_sym_sizeof] = ACTIONS(3580), + [anon_sym___alignof__] = ACTIONS(3580), + [anon_sym___alignof] = ACTIONS(3580), + [anon_sym__alignof] = ACTIONS(3580), + [anon_sym_alignof] = ACTIONS(3580), + [anon_sym__Alignof] = ACTIONS(3580), + [anon_sym_offsetof] = ACTIONS(3580), + [anon_sym__Generic] = ACTIONS(3580), + [anon_sym_typename] = ACTIONS(3580), + [anon_sym_asm] = ACTIONS(3580), + [anon_sym___asm__] = ACTIONS(3580), + [anon_sym___asm] = ACTIONS(3580), + [sym_number_literal] = ACTIONS(3582), + [anon_sym_L_SQUOTE] = ACTIONS(3582), + [anon_sym_u_SQUOTE] = ACTIONS(3582), + [anon_sym_U_SQUOTE] = ACTIONS(3582), + [anon_sym_u8_SQUOTE] = ACTIONS(3582), + [anon_sym_SQUOTE] = ACTIONS(3582), + [anon_sym_L_DQUOTE] = ACTIONS(3582), + [anon_sym_u_DQUOTE] = ACTIONS(3582), + [anon_sym_U_DQUOTE] = ACTIONS(3582), + [anon_sym_u8_DQUOTE] = ACTIONS(3582), + [anon_sym_DQUOTE] = ACTIONS(3582), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [anon_sym_NULL] = ACTIONS(3580), + [anon_sym_nullptr] = ACTIONS(3580), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3580), + [anon_sym_decltype] = ACTIONS(3580), + [anon_sym_explicit] = ACTIONS(3580), + [anon_sym_export] = ACTIONS(3580), + [anon_sym_module] = ACTIONS(3580), + [anon_sym_import] = ACTIONS(3580), + [anon_sym_template] = ACTIONS(3580), + [anon_sym_operator] = ACTIONS(3580), + [anon_sym_try] = ACTIONS(3580), + [anon_sym_delete] = ACTIONS(3580), + [anon_sym_throw] = ACTIONS(3580), + [anon_sym_namespace] = ACTIONS(3580), + [anon_sym_static_assert] = ACTIONS(3580), + [anon_sym_concept] = ACTIONS(3580), + [anon_sym_co_return] = ACTIONS(3580), + [anon_sym_co_yield] = ACTIONS(3580), + [anon_sym_R_DQUOTE] = ACTIONS(3582), + [anon_sym_LR_DQUOTE] = ACTIONS(3582), + [anon_sym_uR_DQUOTE] = ACTIONS(3582), + [anon_sym_UR_DQUOTE] = ACTIONS(3582), + [anon_sym_u8R_DQUOTE] = ACTIONS(3582), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3580), + [anon_sym_requires] = ACTIONS(3580), + [anon_sym_CARET_CARET] = ACTIONS(3582), + [anon_sym_LBRACK_COLON] = ACTIONS(3582), + [sym_this] = ACTIONS(3580), + }, + [STATE(356)] = { + [sym_preproc_def] = STATE(327), + [sym_preproc_function_def] = STATE(327), + [sym_preproc_call] = STATE(327), + [sym_preproc_if_in_field_declaration_list] = STATE(327), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(327), + [sym_preproc_else_in_field_declaration_list] = STATE(10784), + [sym_preproc_elif_in_field_declaration_list] = STATE(10784), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(10784), + [sym_type_definition] = STATE(327), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8093), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8674), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(327), + [sym_field_declaration] = STATE(327), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2456), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(327), + [sym_operator_cast] = STATE(9218), + [sym_inline_method_definition] = STATE(327), + [sym__constructor_specifiers] = STATE(2456), + [sym_operator_cast_definition] = STATE(327), + [sym_operator_cast_declaration] = STATE(327), + [sym_constructor_or_destructor_definition] = STATE(327), + [sym_constructor_or_destructor_declaration] = STATE(327), + [sym_friend_declaration] = STATE(327), + [sym_access_specifier] = STATE(11699), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(327), + [sym_alias_declaration] = STATE(327), + [sym_static_assert_declaration] = STATE(327), + [sym_consteval_block_declaration] = STATE(327), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9218), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(327), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9608), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2456), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token1] = ACTIONS(3428), + [aux_sym_preproc_if_token2] = ACTIONS(3584), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), + [aux_sym_preproc_else_token1] = ACTIONS(3434), + [aux_sym_preproc_elif_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3586), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3462), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(3480), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3482), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(3484), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(357)] = { + [sym_identifier] = ACTIONS(3588), + [aux_sym_preproc_include_token1] = ACTIONS(3588), + [aux_sym_preproc_def_token1] = ACTIONS(3588), + [aux_sym_preproc_if_token1] = ACTIONS(3588), + [aux_sym_preproc_if_token2] = ACTIONS(3588), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3588), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3588), + [aux_sym_preproc_else_token1] = ACTIONS(3588), + [aux_sym_preproc_elif_token1] = ACTIONS(3588), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3588), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3588), + [sym_preproc_directive] = ACTIONS(3588), + [anon_sym_LPAREN2] = ACTIONS(3590), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3588), + [anon_sym_STAR] = ACTIONS(3590), + [anon_sym_AMP_AMP] = ACTIONS(3590), + [anon_sym_AMP] = ACTIONS(3588), + [anon_sym_SEMI] = ACTIONS(3590), + [anon_sym___extension__] = ACTIONS(3588), + [anon_sym_typedef] = ACTIONS(3588), + [anon_sym_virtual] = ACTIONS(3588), + [anon_sym_extern] = ACTIONS(3588), + [anon_sym___attribute__] = ACTIONS(3588), + [anon_sym___attribute] = ACTIONS(3588), + [anon_sym_using] = ACTIONS(3588), + [anon_sym_COLON_COLON] = ACTIONS(3590), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3590), + [anon_sym___declspec] = ACTIONS(3588), + [anon_sym___based] = ACTIONS(3588), + [anon_sym___cdecl] = ACTIONS(3588), + [anon_sym___clrcall] = ACTIONS(3588), + [anon_sym___stdcall] = ACTIONS(3588), + [anon_sym___fastcall] = ACTIONS(3588), + [anon_sym___thiscall] = ACTIONS(3588), + [anon_sym___vectorcall] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3590), + [anon_sym_signed] = ACTIONS(3588), + [anon_sym_unsigned] = ACTIONS(3588), + [anon_sym_long] = ACTIONS(3588), + [anon_sym_short] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3588), + [anon_sym_static] = ACTIONS(3588), + [anon_sym_register] = ACTIONS(3588), + [anon_sym_inline] = ACTIONS(3588), + [anon_sym___inline] = ACTIONS(3588), + [anon_sym___inline__] = ACTIONS(3588), + [anon_sym___forceinline] = ACTIONS(3588), + [anon_sym_thread_local] = ACTIONS(3588), + [anon_sym___thread] = ACTIONS(3588), + [anon_sym_const] = ACTIONS(3588), + [anon_sym_constexpr] = ACTIONS(3588), + [anon_sym_volatile] = ACTIONS(3588), + [anon_sym_restrict] = ACTIONS(3588), + [anon_sym___restrict__] = ACTIONS(3588), + [anon_sym__Atomic] = ACTIONS(3588), + [anon_sym__Noreturn] = ACTIONS(3588), + [anon_sym_noreturn] = ACTIONS(3588), + [anon_sym__Nonnull] = ACTIONS(3588), + [anon_sym_mutable] = ACTIONS(3588), + [anon_sym_constinit] = ACTIONS(3588), + [anon_sym_consteval] = ACTIONS(3588), + [anon_sym_alignas] = ACTIONS(3588), + [anon_sym__Alignas] = ACTIONS(3588), + [sym_primitive_type] = ACTIONS(3588), + [anon_sym_enum] = ACTIONS(3588), + [anon_sym_class] = ACTIONS(3588), + [anon_sym_struct] = ACTIONS(3588), + [anon_sym_union] = ACTIONS(3588), + [anon_sym_if] = ACTIONS(3588), + [anon_sym_else] = ACTIONS(3588), + [anon_sym_switch] = ACTIONS(3588), + [anon_sym_case] = ACTIONS(3588), + [anon_sym_default] = ACTIONS(3588), + [anon_sym_while] = ACTIONS(3588), + [anon_sym_do] = ACTIONS(3588), + [anon_sym_for] = ACTIONS(3588), + [anon_sym_return] = ACTIONS(3588), + [anon_sym_break] = ACTIONS(3588), + [anon_sym_continue] = ACTIONS(3588), + [anon_sym_goto] = ACTIONS(3588), + [anon_sym___try] = ACTIONS(3588), + [anon_sym___leave] = ACTIONS(3588), + [anon_sym_not] = ACTIONS(3588), + [anon_sym_compl] = ACTIONS(3588), + [anon_sym_DASH_DASH] = ACTIONS(3590), + [anon_sym_PLUS_PLUS] = ACTIONS(3590), + [anon_sym_sizeof] = ACTIONS(3588), + [anon_sym___alignof__] = ACTIONS(3588), + [anon_sym___alignof] = ACTIONS(3588), + [anon_sym__alignof] = ACTIONS(3588), + [anon_sym_alignof] = ACTIONS(3588), + [anon_sym__Alignof] = ACTIONS(3588), + [anon_sym_offsetof] = ACTIONS(3588), + [anon_sym__Generic] = ACTIONS(3588), + [anon_sym_typename] = ACTIONS(3588), + [anon_sym_asm] = ACTIONS(3588), + [anon_sym___asm__] = ACTIONS(3588), + [anon_sym___asm] = ACTIONS(3588), + [sym_number_literal] = ACTIONS(3590), + [anon_sym_L_SQUOTE] = ACTIONS(3590), + [anon_sym_u_SQUOTE] = ACTIONS(3590), + [anon_sym_U_SQUOTE] = ACTIONS(3590), + [anon_sym_u8_SQUOTE] = ACTIONS(3590), + [anon_sym_SQUOTE] = ACTIONS(3590), + [anon_sym_L_DQUOTE] = ACTIONS(3590), + [anon_sym_u_DQUOTE] = ACTIONS(3590), + [anon_sym_U_DQUOTE] = ACTIONS(3590), + [anon_sym_u8_DQUOTE] = ACTIONS(3590), + [anon_sym_DQUOTE] = ACTIONS(3590), + [sym_true] = ACTIONS(3588), + [sym_false] = ACTIONS(3588), + [anon_sym_NULL] = ACTIONS(3588), + [anon_sym_nullptr] = ACTIONS(3588), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3588), + [anon_sym_decltype] = ACTIONS(3588), + [anon_sym_explicit] = ACTIONS(3588), + [anon_sym_export] = ACTIONS(3588), + [anon_sym_module] = ACTIONS(3588), + [anon_sym_import] = ACTIONS(3588), + [anon_sym_template] = ACTIONS(3588), + [anon_sym_operator] = ACTIONS(3588), + [anon_sym_try] = ACTIONS(3588), + [anon_sym_delete] = ACTIONS(3588), + [anon_sym_throw] = ACTIONS(3588), + [anon_sym_namespace] = ACTIONS(3588), + [anon_sym_static_assert] = ACTIONS(3588), + [anon_sym_concept] = ACTIONS(3588), + [anon_sym_co_return] = ACTIONS(3588), + [anon_sym_co_yield] = ACTIONS(3588), + [anon_sym_R_DQUOTE] = ACTIONS(3590), + [anon_sym_LR_DQUOTE] = ACTIONS(3590), + [anon_sym_uR_DQUOTE] = ACTIONS(3590), + [anon_sym_UR_DQUOTE] = ACTIONS(3590), + [anon_sym_u8R_DQUOTE] = ACTIONS(3590), + [anon_sym_co_await] = ACTIONS(3588), + [anon_sym_new] = ACTIONS(3588), + [anon_sym_requires] = ACTIONS(3588), + [anon_sym_CARET_CARET] = ACTIONS(3590), + [anon_sym_LBRACK_COLON] = ACTIONS(3590), + [sym_this] = ACTIONS(3588), + }, + [STATE(358)] = { + [sym_identifier] = ACTIONS(3592), + [aux_sym_preproc_include_token1] = ACTIONS(3592), + [aux_sym_preproc_def_token1] = ACTIONS(3592), + [aux_sym_preproc_if_token1] = ACTIONS(3592), + [aux_sym_preproc_if_token2] = ACTIONS(3592), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3592), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3592), + [aux_sym_preproc_else_token1] = ACTIONS(3592), + [aux_sym_preproc_elif_token1] = ACTIONS(3592), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3592), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3592), + [sym_preproc_directive] = ACTIONS(3592), + [anon_sym_LPAREN2] = ACTIONS(3594), + [anon_sym_BANG] = ACTIONS(3594), + [anon_sym_TILDE] = ACTIONS(3594), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3594), + [anon_sym_AMP_AMP] = ACTIONS(3594), + [anon_sym_AMP] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym___extension__] = ACTIONS(3592), + [anon_sym_typedef] = ACTIONS(3592), + [anon_sym_virtual] = ACTIONS(3592), + [anon_sym_extern] = ACTIONS(3592), + [anon_sym___attribute__] = ACTIONS(3592), + [anon_sym___attribute] = ACTIONS(3592), + [anon_sym_using] = ACTIONS(3592), + [anon_sym_COLON_COLON] = ACTIONS(3594), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3594), + [anon_sym___declspec] = ACTIONS(3592), + [anon_sym___based] = ACTIONS(3592), + [anon_sym___cdecl] = ACTIONS(3592), + [anon_sym___clrcall] = ACTIONS(3592), + [anon_sym___stdcall] = ACTIONS(3592), + [anon_sym___fastcall] = ACTIONS(3592), + [anon_sym___thiscall] = ACTIONS(3592), + [anon_sym___vectorcall] = ACTIONS(3592), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_signed] = ACTIONS(3592), + [anon_sym_unsigned] = ACTIONS(3592), + [anon_sym_long] = ACTIONS(3592), + [anon_sym_short] = ACTIONS(3592), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_static] = ACTIONS(3592), + [anon_sym_register] = ACTIONS(3592), + [anon_sym_inline] = ACTIONS(3592), + [anon_sym___inline] = ACTIONS(3592), + [anon_sym___inline__] = ACTIONS(3592), + [anon_sym___forceinline] = ACTIONS(3592), + [anon_sym_thread_local] = ACTIONS(3592), + [anon_sym___thread] = ACTIONS(3592), + [anon_sym_const] = ACTIONS(3592), + [anon_sym_constexpr] = ACTIONS(3592), + [anon_sym_volatile] = ACTIONS(3592), + [anon_sym_restrict] = ACTIONS(3592), + [anon_sym___restrict__] = ACTIONS(3592), + [anon_sym__Atomic] = ACTIONS(3592), + [anon_sym__Noreturn] = ACTIONS(3592), + [anon_sym_noreturn] = ACTIONS(3592), + [anon_sym__Nonnull] = ACTIONS(3592), + [anon_sym_mutable] = ACTIONS(3592), + [anon_sym_constinit] = ACTIONS(3592), + [anon_sym_consteval] = ACTIONS(3592), + [anon_sym_alignas] = ACTIONS(3592), + [anon_sym__Alignas] = ACTIONS(3592), + [sym_primitive_type] = ACTIONS(3592), + [anon_sym_enum] = ACTIONS(3592), + [anon_sym_class] = ACTIONS(3592), + [anon_sym_struct] = ACTIONS(3592), + [anon_sym_union] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_else] = ACTIONS(3592), + [anon_sym_switch] = ACTIONS(3592), + [anon_sym_case] = ACTIONS(3592), + [anon_sym_default] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_break] = ACTIONS(3592), + [anon_sym_continue] = ACTIONS(3592), + [anon_sym_goto] = ACTIONS(3592), + [anon_sym___try] = ACTIONS(3592), + [anon_sym___leave] = ACTIONS(3592), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3594), + [anon_sym_PLUS_PLUS] = ACTIONS(3594), + [anon_sym_sizeof] = ACTIONS(3592), + [anon_sym___alignof__] = ACTIONS(3592), + [anon_sym___alignof] = ACTIONS(3592), + [anon_sym__alignof] = ACTIONS(3592), + [anon_sym_alignof] = ACTIONS(3592), + [anon_sym__Alignof] = ACTIONS(3592), + [anon_sym_offsetof] = ACTIONS(3592), + [anon_sym__Generic] = ACTIONS(3592), + [anon_sym_typename] = ACTIONS(3592), + [anon_sym_asm] = ACTIONS(3592), + [anon_sym___asm__] = ACTIONS(3592), + [anon_sym___asm] = ACTIONS(3592), + [sym_number_literal] = ACTIONS(3594), + [anon_sym_L_SQUOTE] = ACTIONS(3594), + [anon_sym_u_SQUOTE] = ACTIONS(3594), + [anon_sym_U_SQUOTE] = ACTIONS(3594), + [anon_sym_u8_SQUOTE] = ACTIONS(3594), + [anon_sym_SQUOTE] = ACTIONS(3594), + [anon_sym_L_DQUOTE] = ACTIONS(3594), + [anon_sym_u_DQUOTE] = ACTIONS(3594), + [anon_sym_U_DQUOTE] = ACTIONS(3594), + [anon_sym_u8_DQUOTE] = ACTIONS(3594), + [anon_sym_DQUOTE] = ACTIONS(3594), + [sym_true] = ACTIONS(3592), + [sym_false] = ACTIONS(3592), + [anon_sym_NULL] = ACTIONS(3592), + [anon_sym_nullptr] = ACTIONS(3592), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3592), + [anon_sym_decltype] = ACTIONS(3592), + [anon_sym_explicit] = ACTIONS(3592), + [anon_sym_export] = ACTIONS(3592), + [anon_sym_module] = ACTIONS(3592), + [anon_sym_import] = ACTIONS(3592), + [anon_sym_template] = ACTIONS(3592), + [anon_sym_operator] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_delete] = ACTIONS(3592), + [anon_sym_throw] = ACTIONS(3592), + [anon_sym_namespace] = ACTIONS(3592), + [anon_sym_static_assert] = ACTIONS(3592), + [anon_sym_concept] = ACTIONS(3592), + [anon_sym_co_return] = ACTIONS(3592), + [anon_sym_co_yield] = ACTIONS(3592), + [anon_sym_R_DQUOTE] = ACTIONS(3594), + [anon_sym_LR_DQUOTE] = ACTIONS(3594), + [anon_sym_uR_DQUOTE] = ACTIONS(3594), + [anon_sym_UR_DQUOTE] = ACTIONS(3594), + [anon_sym_u8R_DQUOTE] = ACTIONS(3594), + [anon_sym_co_await] = ACTIONS(3592), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_requires] = ACTIONS(3592), + [anon_sym_CARET_CARET] = ACTIONS(3594), + [anon_sym_LBRACK_COLON] = ACTIONS(3594), + [sym_this] = ACTIONS(3592), + }, + [STATE(359)] = { + [sym_identifier] = ACTIONS(3596), + [aux_sym_preproc_include_token1] = ACTIONS(3596), + [aux_sym_preproc_def_token1] = ACTIONS(3596), + [aux_sym_preproc_if_token1] = ACTIONS(3596), + [aux_sym_preproc_if_token2] = ACTIONS(3596), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3596), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3596), + [aux_sym_preproc_else_token1] = ACTIONS(3596), + [aux_sym_preproc_elif_token1] = ACTIONS(3596), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3596), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3596), + [sym_preproc_directive] = ACTIONS(3596), + [anon_sym_LPAREN2] = ACTIONS(3598), + [anon_sym_BANG] = ACTIONS(3598), + [anon_sym_TILDE] = ACTIONS(3598), + [anon_sym_DASH] = ACTIONS(3596), + [anon_sym_PLUS] = ACTIONS(3596), + [anon_sym_STAR] = ACTIONS(3598), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_AMP] = ACTIONS(3596), + [anon_sym_SEMI] = ACTIONS(3598), + [anon_sym___extension__] = ACTIONS(3596), + [anon_sym_typedef] = ACTIONS(3596), + [anon_sym_virtual] = ACTIONS(3596), + [anon_sym_extern] = ACTIONS(3596), + [anon_sym___attribute__] = ACTIONS(3596), + [anon_sym___attribute] = ACTIONS(3596), + [anon_sym_using] = ACTIONS(3596), + [anon_sym_COLON_COLON] = ACTIONS(3598), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3598), + [anon_sym___declspec] = ACTIONS(3596), + [anon_sym___based] = ACTIONS(3596), + [anon_sym___cdecl] = ACTIONS(3596), + [anon_sym___clrcall] = ACTIONS(3596), + [anon_sym___stdcall] = ACTIONS(3596), + [anon_sym___fastcall] = ACTIONS(3596), + [anon_sym___thiscall] = ACTIONS(3596), + [anon_sym___vectorcall] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_signed] = ACTIONS(3596), + [anon_sym_unsigned] = ACTIONS(3596), + [anon_sym_long] = ACTIONS(3596), + [anon_sym_short] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_static] = ACTIONS(3596), + [anon_sym_register] = ACTIONS(3596), + [anon_sym_inline] = ACTIONS(3596), + [anon_sym___inline] = ACTIONS(3596), + [anon_sym___inline__] = ACTIONS(3596), + [anon_sym___forceinline] = ACTIONS(3596), + [anon_sym_thread_local] = ACTIONS(3596), + [anon_sym___thread] = ACTIONS(3596), + [anon_sym_const] = ACTIONS(3596), + [anon_sym_constexpr] = ACTIONS(3596), + [anon_sym_volatile] = ACTIONS(3596), + [anon_sym_restrict] = ACTIONS(3596), + [anon_sym___restrict__] = ACTIONS(3596), + [anon_sym__Atomic] = ACTIONS(3596), + [anon_sym__Noreturn] = ACTIONS(3596), + [anon_sym_noreturn] = ACTIONS(3596), + [anon_sym__Nonnull] = ACTIONS(3596), + [anon_sym_mutable] = ACTIONS(3596), + [anon_sym_constinit] = ACTIONS(3596), + [anon_sym_consteval] = ACTIONS(3596), + [anon_sym_alignas] = ACTIONS(3596), + [anon_sym__Alignas] = ACTIONS(3596), + [sym_primitive_type] = ACTIONS(3596), + [anon_sym_enum] = ACTIONS(3596), + [anon_sym_class] = ACTIONS(3596), + [anon_sym_struct] = ACTIONS(3596), + [anon_sym_union] = ACTIONS(3596), + [anon_sym_if] = ACTIONS(3596), + [anon_sym_else] = ACTIONS(3596), + [anon_sym_switch] = ACTIONS(3596), + [anon_sym_case] = ACTIONS(3596), + [anon_sym_default] = ACTIONS(3596), + [anon_sym_while] = ACTIONS(3596), + [anon_sym_do] = ACTIONS(3596), + [anon_sym_for] = ACTIONS(3596), + [anon_sym_return] = ACTIONS(3596), + [anon_sym_break] = ACTIONS(3596), + [anon_sym_continue] = ACTIONS(3596), + [anon_sym_goto] = ACTIONS(3596), + [anon_sym___try] = ACTIONS(3596), + [anon_sym___leave] = ACTIONS(3596), + [anon_sym_not] = ACTIONS(3596), + [anon_sym_compl] = ACTIONS(3596), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3596), + [anon_sym___alignof__] = ACTIONS(3596), + [anon_sym___alignof] = ACTIONS(3596), + [anon_sym__alignof] = ACTIONS(3596), + [anon_sym_alignof] = ACTIONS(3596), + [anon_sym__Alignof] = ACTIONS(3596), + [anon_sym_offsetof] = ACTIONS(3596), + [anon_sym__Generic] = ACTIONS(3596), + [anon_sym_typename] = ACTIONS(3596), + [anon_sym_asm] = ACTIONS(3596), + [anon_sym___asm__] = ACTIONS(3596), + [anon_sym___asm] = ACTIONS(3596), + [sym_number_literal] = ACTIONS(3598), + [anon_sym_L_SQUOTE] = ACTIONS(3598), + [anon_sym_u_SQUOTE] = ACTIONS(3598), + [anon_sym_U_SQUOTE] = ACTIONS(3598), + [anon_sym_u8_SQUOTE] = ACTIONS(3598), + [anon_sym_SQUOTE] = ACTIONS(3598), + [anon_sym_L_DQUOTE] = ACTIONS(3598), + [anon_sym_u_DQUOTE] = ACTIONS(3598), + [anon_sym_U_DQUOTE] = ACTIONS(3598), + [anon_sym_u8_DQUOTE] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3598), + [sym_true] = ACTIONS(3596), + [sym_false] = ACTIONS(3596), + [anon_sym_NULL] = ACTIONS(3596), + [anon_sym_nullptr] = ACTIONS(3596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3596), + [anon_sym_decltype] = ACTIONS(3596), + [anon_sym_explicit] = ACTIONS(3596), + [anon_sym_export] = ACTIONS(3596), + [anon_sym_module] = ACTIONS(3596), + [anon_sym_import] = ACTIONS(3596), + [anon_sym_template] = ACTIONS(3596), + [anon_sym_operator] = ACTIONS(3596), + [anon_sym_try] = ACTIONS(3596), + [anon_sym_delete] = ACTIONS(3596), + [anon_sym_throw] = ACTIONS(3596), + [anon_sym_namespace] = ACTIONS(3596), + [anon_sym_static_assert] = ACTIONS(3596), + [anon_sym_concept] = ACTIONS(3596), + [anon_sym_co_return] = ACTIONS(3596), + [anon_sym_co_yield] = ACTIONS(3596), + [anon_sym_R_DQUOTE] = ACTIONS(3598), + [anon_sym_LR_DQUOTE] = ACTIONS(3598), + [anon_sym_uR_DQUOTE] = ACTIONS(3598), + [anon_sym_UR_DQUOTE] = ACTIONS(3598), + [anon_sym_u8R_DQUOTE] = ACTIONS(3598), + [anon_sym_co_await] = ACTIONS(3596), + [anon_sym_new] = ACTIONS(3596), + [anon_sym_requires] = ACTIONS(3596), + [anon_sym_CARET_CARET] = ACTIONS(3598), + [anon_sym_LBRACK_COLON] = ACTIONS(3598), + [sym_this] = ACTIONS(3596), + }, + [STATE(360)] = { + [sym_expression] = STATE(6487), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(3106), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3123), + [anon_sym_typedef] = ACTIONS(3159), + [anon_sym_virtual] = ACTIONS(3128), + [anon_sym_extern] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym___declspec] = ACTIONS(3128), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_register] = ACTIONS(3128), + [anon_sym_inline] = ACTIONS(3128), + [anon_sym___inline] = ACTIONS(3128), + [anon_sym___inline__] = ACTIONS(3128), + [anon_sym___forceinline] = ACTIONS(3128), + [anon_sym_thread_local] = ACTIONS(3128), + [anon_sym___thread] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -104974,7 +111249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3229), + [anon_sym_typename] = ACTIONS(3139), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -104994,9 +111269,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1918), - [anon_sym_decltype] = ACTIONS(1920), - [anon_sym_template] = ACTIONS(1858), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(3145), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -105007,10 +111282,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(3148), [sym_this] = ACTIONS(237), }, - [STATE(354)] = { + [STATE(361)] = { + [sym_identifier] = ACTIONS(3600), + [aux_sym_preproc_include_token1] = ACTIONS(3600), + [aux_sym_preproc_def_token1] = ACTIONS(3600), + [aux_sym_preproc_if_token1] = ACTIONS(3600), + [aux_sym_preproc_if_token2] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), + [aux_sym_preproc_else_token1] = ACTIONS(3600), + [aux_sym_preproc_elif_token1] = ACTIONS(3600), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3600), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3600), + [sym_preproc_directive] = ACTIONS(3600), + [anon_sym_LPAREN2] = ACTIONS(3602), + [anon_sym_BANG] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3600), + [anon_sym_STAR] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_AMP] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym___extension__] = ACTIONS(3600), + [anon_sym_typedef] = ACTIONS(3600), + [anon_sym_virtual] = ACTIONS(3600), + [anon_sym_extern] = ACTIONS(3600), + [anon_sym___attribute__] = ACTIONS(3600), + [anon_sym___attribute] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), + [anon_sym___declspec] = ACTIONS(3600), + [anon_sym___based] = ACTIONS(3600), + [anon_sym___cdecl] = ACTIONS(3600), + [anon_sym___clrcall] = ACTIONS(3600), + [anon_sym___stdcall] = ACTIONS(3600), + [anon_sym___fastcall] = ACTIONS(3600), + [anon_sym___thiscall] = ACTIONS(3600), + [anon_sym___vectorcall] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_signed] = ACTIONS(3600), + [anon_sym_unsigned] = ACTIONS(3600), + [anon_sym_long] = ACTIONS(3600), + [anon_sym_short] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_register] = ACTIONS(3600), + [anon_sym_inline] = ACTIONS(3600), + [anon_sym___inline] = ACTIONS(3600), + [anon_sym___inline__] = ACTIONS(3600), + [anon_sym___forceinline] = ACTIONS(3600), + [anon_sym_thread_local] = ACTIONS(3600), + [anon_sym___thread] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_constexpr] = ACTIONS(3600), + [anon_sym_volatile] = ACTIONS(3600), + [anon_sym_restrict] = ACTIONS(3600), + [anon_sym___restrict__] = ACTIONS(3600), + [anon_sym__Atomic] = ACTIONS(3600), + [anon_sym__Noreturn] = ACTIONS(3600), + [anon_sym_noreturn] = ACTIONS(3600), + [anon_sym__Nonnull] = ACTIONS(3600), + [anon_sym_mutable] = ACTIONS(3600), + [anon_sym_constinit] = ACTIONS(3600), + [anon_sym_consteval] = ACTIONS(3600), + [anon_sym_alignas] = ACTIONS(3600), + [anon_sym__Alignas] = ACTIONS(3600), + [sym_primitive_type] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_struct] = ACTIONS(3600), + [anon_sym_union] = ACTIONS(3600), + [anon_sym_if] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3600), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_case] = ACTIONS(3600), + [anon_sym_default] = ACTIONS(3600), + [anon_sym_while] = ACTIONS(3600), + [anon_sym_do] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3600), + [anon_sym_return] = ACTIONS(3600), + [anon_sym_break] = ACTIONS(3600), + [anon_sym_continue] = ACTIONS(3600), + [anon_sym_goto] = ACTIONS(3600), + [anon_sym___try] = ACTIONS(3600), + [anon_sym___leave] = ACTIONS(3600), + [anon_sym_not] = ACTIONS(3600), + [anon_sym_compl] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3602), + [anon_sym_PLUS_PLUS] = ACTIONS(3602), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(3600), + [anon_sym___alignof] = ACTIONS(3600), + [anon_sym__alignof] = ACTIONS(3600), + [anon_sym_alignof] = ACTIONS(3600), + [anon_sym__Alignof] = ACTIONS(3600), + [anon_sym_offsetof] = ACTIONS(3600), + [anon_sym__Generic] = ACTIONS(3600), + [anon_sym_typename] = ACTIONS(3600), + [anon_sym_asm] = ACTIONS(3600), + [anon_sym___asm__] = ACTIONS(3600), + [anon_sym___asm] = ACTIONS(3600), + [sym_number_literal] = ACTIONS(3602), + [anon_sym_L_SQUOTE] = ACTIONS(3602), + [anon_sym_u_SQUOTE] = ACTIONS(3602), + [anon_sym_U_SQUOTE] = ACTIONS(3602), + [anon_sym_u8_SQUOTE] = ACTIONS(3602), + [anon_sym_SQUOTE] = ACTIONS(3602), + [anon_sym_L_DQUOTE] = ACTIONS(3602), + [anon_sym_u_DQUOTE] = ACTIONS(3602), + [anon_sym_U_DQUOTE] = ACTIONS(3602), + [anon_sym_u8_DQUOTE] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [sym_true] = ACTIONS(3600), + [sym_false] = ACTIONS(3600), + [anon_sym_NULL] = ACTIONS(3600), + [anon_sym_nullptr] = ACTIONS(3600), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3600), + [anon_sym_decltype] = ACTIONS(3600), + [anon_sym_explicit] = ACTIONS(3600), + [anon_sym_export] = ACTIONS(3600), + [anon_sym_module] = ACTIONS(3600), + [anon_sym_import] = ACTIONS(3600), + [anon_sym_template] = ACTIONS(3600), + [anon_sym_operator] = ACTIONS(3600), + [anon_sym_try] = ACTIONS(3600), + [anon_sym_delete] = ACTIONS(3600), + [anon_sym_throw] = ACTIONS(3600), + [anon_sym_namespace] = ACTIONS(3600), + [anon_sym_static_assert] = ACTIONS(3600), + [anon_sym_concept] = ACTIONS(3600), + [anon_sym_co_return] = ACTIONS(3600), + [anon_sym_co_yield] = ACTIONS(3600), + [anon_sym_R_DQUOTE] = ACTIONS(3602), + [anon_sym_LR_DQUOTE] = ACTIONS(3602), + [anon_sym_uR_DQUOTE] = ACTIONS(3602), + [anon_sym_UR_DQUOTE] = ACTIONS(3602), + [anon_sym_u8R_DQUOTE] = ACTIONS(3602), + [anon_sym_co_await] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3600), + [anon_sym_requires] = ACTIONS(3600), + [anon_sym_CARET_CARET] = ACTIONS(3602), + [anon_sym_LBRACK_COLON] = ACTIONS(3602), + [sym_this] = ACTIONS(3600), + }, + [STATE(362)] = { + [sym_identifier] = ACTIONS(3604), + [aux_sym_preproc_include_token1] = ACTIONS(3604), + [aux_sym_preproc_def_token1] = ACTIONS(3604), + [aux_sym_preproc_if_token1] = ACTIONS(3604), + [aux_sym_preproc_if_token2] = ACTIONS(3604), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3604), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3604), + [aux_sym_preproc_else_token1] = ACTIONS(3604), + [aux_sym_preproc_elif_token1] = ACTIONS(3604), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3604), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3604), + [sym_preproc_directive] = ACTIONS(3604), + [anon_sym_LPAREN2] = ACTIONS(3606), + [anon_sym_BANG] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3606), + [anon_sym_DASH] = ACTIONS(3604), + [anon_sym_PLUS] = ACTIONS(3604), + [anon_sym_STAR] = ACTIONS(3606), + [anon_sym_AMP_AMP] = ACTIONS(3606), + [anon_sym_AMP] = ACTIONS(3604), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym___extension__] = ACTIONS(3604), + [anon_sym_typedef] = ACTIONS(3604), + [anon_sym_virtual] = ACTIONS(3604), + [anon_sym_extern] = ACTIONS(3604), + [anon_sym___attribute__] = ACTIONS(3604), + [anon_sym___attribute] = ACTIONS(3604), + [anon_sym_using] = ACTIONS(3604), + [anon_sym_COLON_COLON] = ACTIONS(3606), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3606), + [anon_sym___declspec] = ACTIONS(3604), + [anon_sym___based] = ACTIONS(3604), + [anon_sym___cdecl] = ACTIONS(3604), + [anon_sym___clrcall] = ACTIONS(3604), + [anon_sym___stdcall] = ACTIONS(3604), + [anon_sym___fastcall] = ACTIONS(3604), + [anon_sym___thiscall] = ACTIONS(3604), + [anon_sym___vectorcall] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3606), + [anon_sym_signed] = ACTIONS(3604), + [anon_sym_unsigned] = ACTIONS(3604), + [anon_sym_long] = ACTIONS(3604), + [anon_sym_short] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3604), + [anon_sym_static] = ACTIONS(3604), + [anon_sym_register] = ACTIONS(3604), + [anon_sym_inline] = ACTIONS(3604), + [anon_sym___inline] = ACTIONS(3604), + [anon_sym___inline__] = ACTIONS(3604), + [anon_sym___forceinline] = ACTIONS(3604), + [anon_sym_thread_local] = ACTIONS(3604), + [anon_sym___thread] = ACTIONS(3604), + [anon_sym_const] = ACTIONS(3604), + [anon_sym_constexpr] = ACTIONS(3604), + [anon_sym_volatile] = ACTIONS(3604), + [anon_sym_restrict] = ACTIONS(3604), + [anon_sym___restrict__] = ACTIONS(3604), + [anon_sym__Atomic] = ACTIONS(3604), + [anon_sym__Noreturn] = ACTIONS(3604), + [anon_sym_noreturn] = ACTIONS(3604), + [anon_sym__Nonnull] = ACTIONS(3604), + [anon_sym_mutable] = ACTIONS(3604), + [anon_sym_constinit] = ACTIONS(3604), + [anon_sym_consteval] = ACTIONS(3604), + [anon_sym_alignas] = ACTIONS(3604), + [anon_sym__Alignas] = ACTIONS(3604), + [sym_primitive_type] = ACTIONS(3604), + [anon_sym_enum] = ACTIONS(3604), + [anon_sym_class] = ACTIONS(3604), + [anon_sym_struct] = ACTIONS(3604), + [anon_sym_union] = ACTIONS(3604), + [anon_sym_if] = ACTIONS(3604), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_switch] = ACTIONS(3604), + [anon_sym_case] = ACTIONS(3604), + [anon_sym_default] = ACTIONS(3604), + [anon_sym_while] = ACTIONS(3604), + [anon_sym_do] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3604), + [anon_sym_return] = ACTIONS(3604), + [anon_sym_break] = ACTIONS(3604), + [anon_sym_continue] = ACTIONS(3604), + [anon_sym_goto] = ACTIONS(3604), + [anon_sym___try] = ACTIONS(3604), + [anon_sym___leave] = ACTIONS(3604), + [anon_sym_not] = ACTIONS(3604), + [anon_sym_compl] = ACTIONS(3604), + [anon_sym_DASH_DASH] = ACTIONS(3606), + [anon_sym_PLUS_PLUS] = ACTIONS(3606), + [anon_sym_sizeof] = ACTIONS(3604), + [anon_sym___alignof__] = ACTIONS(3604), + [anon_sym___alignof] = ACTIONS(3604), + [anon_sym__alignof] = ACTIONS(3604), + [anon_sym_alignof] = ACTIONS(3604), + [anon_sym__Alignof] = ACTIONS(3604), + [anon_sym_offsetof] = ACTIONS(3604), + [anon_sym__Generic] = ACTIONS(3604), + [anon_sym_typename] = ACTIONS(3604), + [anon_sym_asm] = ACTIONS(3604), + [anon_sym___asm__] = ACTIONS(3604), + [anon_sym___asm] = ACTIONS(3604), + [sym_number_literal] = ACTIONS(3606), + [anon_sym_L_SQUOTE] = ACTIONS(3606), + [anon_sym_u_SQUOTE] = ACTIONS(3606), + [anon_sym_U_SQUOTE] = ACTIONS(3606), + [anon_sym_u8_SQUOTE] = ACTIONS(3606), + [anon_sym_SQUOTE] = ACTIONS(3606), + [anon_sym_L_DQUOTE] = ACTIONS(3606), + [anon_sym_u_DQUOTE] = ACTIONS(3606), + [anon_sym_U_DQUOTE] = ACTIONS(3606), + [anon_sym_u8_DQUOTE] = ACTIONS(3606), + [anon_sym_DQUOTE] = ACTIONS(3606), + [sym_true] = ACTIONS(3604), + [sym_false] = ACTIONS(3604), + [anon_sym_NULL] = ACTIONS(3604), + [anon_sym_nullptr] = ACTIONS(3604), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3604), + [anon_sym_decltype] = ACTIONS(3604), + [anon_sym_explicit] = ACTIONS(3604), + [anon_sym_export] = ACTIONS(3604), + [anon_sym_module] = ACTIONS(3604), + [anon_sym_import] = ACTIONS(3604), + [anon_sym_template] = ACTIONS(3604), + [anon_sym_operator] = ACTIONS(3604), + [anon_sym_try] = ACTIONS(3604), + [anon_sym_delete] = ACTIONS(3604), + [anon_sym_throw] = ACTIONS(3604), + [anon_sym_namespace] = ACTIONS(3604), + [anon_sym_static_assert] = ACTIONS(3604), + [anon_sym_concept] = ACTIONS(3604), + [anon_sym_co_return] = ACTIONS(3604), + [anon_sym_co_yield] = ACTIONS(3604), + [anon_sym_R_DQUOTE] = ACTIONS(3606), + [anon_sym_LR_DQUOTE] = ACTIONS(3606), + [anon_sym_uR_DQUOTE] = ACTIONS(3606), + [anon_sym_UR_DQUOTE] = ACTIONS(3606), + [anon_sym_u8R_DQUOTE] = ACTIONS(3606), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(3604), + [anon_sym_requires] = ACTIONS(3604), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(3606), + [sym_this] = ACTIONS(3604), + }, + [STATE(363)] = { [sym_identifier] = ACTIONS(3608), [aux_sym_preproc_include_token1] = ACTIONS(3608), [aux_sym_preproc_def_token1] = ACTIONS(3608), @@ -105131,6 +111698,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(3608), [anon_sym_decltype] = ACTIONS(3608), [anon_sym_explicit] = ACTIONS(3608), + [anon_sym_export] = ACTIONS(3608), + [anon_sym_module] = ACTIONS(3608), + [anon_sym_import] = ACTIONS(3608), [anon_sym_template] = ACTIONS(3608), [anon_sym_operator] = ACTIONS(3608), [anon_sym_try] = ACTIONS(3608), @@ -105141,7 +111711,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(3608), [anon_sym_co_return] = ACTIONS(3608), [anon_sym_co_yield] = ACTIONS(3608), - [anon_sym_catch] = ACTIONS(3608), [anon_sym_R_DQUOTE] = ACTIONS(3610), [anon_sym_LR_DQUOTE] = ACTIONS(3610), [anon_sym_uR_DQUOTE] = ACTIONS(3610), @@ -105154,296 +111723,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3610), [sym_this] = ACTIONS(3608), }, - [STATE(355)] = { - [sym_else_clause] = STATE(359), - [sym_identifier] = ACTIONS(3612), - [aux_sym_preproc_include_token1] = ACTIONS(3612), - [aux_sym_preproc_def_token1] = ACTIONS(3612), - [aux_sym_preproc_if_token1] = ACTIONS(3612), + [STATE(364)] = { + [sym_preproc_def] = STATE(555), + [sym_preproc_function_def] = STATE(555), + [sym_preproc_call] = STATE(555), + [sym_preproc_if_in_field_declaration_list] = STATE(555), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), + [sym_preproc_else_in_field_declaration_list] = STATE(11665), + [sym_preproc_elif_in_field_declaration_list] = STATE(11665), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11665), + [sym_type_definition] = STATE(555), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8093), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8674), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(555), + [sym_field_declaration] = STATE(555), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2456), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(555), + [sym_operator_cast] = STATE(9218), + [sym_inline_method_definition] = STATE(555), + [sym__constructor_specifiers] = STATE(2456), + [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_access_specifier] = STATE(11699), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(555), + [sym_alias_declaration] = STATE(555), + [sym_static_assert_declaration] = STATE(555), + [sym_consteval_block_declaration] = STATE(555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9218), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9608), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2456), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token1] = ACTIONS(3428), [aux_sym_preproc_if_token2] = ACTIONS(3612), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3612), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3612), - [aux_sym_preproc_else_token1] = ACTIONS(3612), - [aux_sym_preproc_elif_token1] = ACTIONS(3612), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3612), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3612), - [sym_preproc_directive] = ACTIONS(3612), - [anon_sym_LPAREN2] = ACTIONS(3614), - [anon_sym_BANG] = ACTIONS(3614), - [anon_sym_TILDE] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_STAR] = ACTIONS(3614), - [anon_sym_AMP_AMP] = ACTIONS(3614), - [anon_sym_AMP] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3614), - [anon_sym___extension__] = ACTIONS(3612), - [anon_sym_typedef] = ACTIONS(3612), - [anon_sym_virtual] = ACTIONS(3612), - [anon_sym_extern] = ACTIONS(3612), - [anon_sym___attribute__] = ACTIONS(3612), - [anon_sym___attribute] = ACTIONS(3612), - [anon_sym_using] = ACTIONS(3612), - [anon_sym_COLON_COLON] = ACTIONS(3614), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3614), - [anon_sym___declspec] = ACTIONS(3612), - [anon_sym___based] = ACTIONS(3612), - [anon_sym___cdecl] = ACTIONS(3612), - [anon_sym___clrcall] = ACTIONS(3612), - [anon_sym___stdcall] = ACTIONS(3612), - [anon_sym___fastcall] = ACTIONS(3612), - [anon_sym___thiscall] = ACTIONS(3612), - [anon_sym___vectorcall] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_signed] = ACTIONS(3612), - [anon_sym_unsigned] = ACTIONS(3612), - [anon_sym_long] = ACTIONS(3612), - [anon_sym_short] = ACTIONS(3612), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_static] = ACTIONS(3612), - [anon_sym_register] = ACTIONS(3612), - [anon_sym_inline] = ACTIONS(3612), - [anon_sym___inline] = ACTIONS(3612), - [anon_sym___inline__] = ACTIONS(3612), - [anon_sym___forceinline] = ACTIONS(3612), - [anon_sym_thread_local] = ACTIONS(3612), - [anon_sym___thread] = ACTIONS(3612), - [anon_sym_const] = ACTIONS(3612), - [anon_sym_constexpr] = ACTIONS(3612), - [anon_sym_volatile] = ACTIONS(3612), - [anon_sym_restrict] = ACTIONS(3612), - [anon_sym___restrict__] = ACTIONS(3612), - [anon_sym__Atomic] = ACTIONS(3612), - [anon_sym__Noreturn] = ACTIONS(3612), - [anon_sym_noreturn] = ACTIONS(3612), - [anon_sym__Nonnull] = ACTIONS(3612), - [anon_sym_mutable] = ACTIONS(3612), - [anon_sym_constinit] = ACTIONS(3612), - [anon_sym_consteval] = ACTIONS(3612), - [anon_sym_alignas] = ACTIONS(3612), - [anon_sym__Alignas] = ACTIONS(3612), - [sym_primitive_type] = ACTIONS(3612), - [anon_sym_enum] = ACTIONS(3612), - [anon_sym_class] = ACTIONS(3612), - [anon_sym_struct] = ACTIONS(3612), - [anon_sym_union] = ACTIONS(3612), - [anon_sym_if] = ACTIONS(3612), - [anon_sym_else] = ACTIONS(3616), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_case] = ACTIONS(3612), - [anon_sym_default] = ACTIONS(3612), - [anon_sym_while] = ACTIONS(3612), - [anon_sym_do] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3612), - [anon_sym_return] = ACTIONS(3612), - [anon_sym_break] = ACTIONS(3612), - [anon_sym_continue] = ACTIONS(3612), - [anon_sym_goto] = ACTIONS(3612), - [anon_sym___try] = ACTIONS(3612), - [anon_sym___leave] = ACTIONS(3612), - [anon_sym_not] = ACTIONS(3612), - [anon_sym_compl] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3614), - [anon_sym_sizeof] = ACTIONS(3612), - [anon_sym___alignof__] = ACTIONS(3612), - [anon_sym___alignof] = ACTIONS(3612), - [anon_sym__alignof] = ACTIONS(3612), - [anon_sym_alignof] = ACTIONS(3612), - [anon_sym__Alignof] = ACTIONS(3612), - [anon_sym_offsetof] = ACTIONS(3612), - [anon_sym__Generic] = ACTIONS(3612), - [anon_sym_typename] = ACTIONS(3612), - [anon_sym_asm] = ACTIONS(3612), - [anon_sym___asm__] = ACTIONS(3612), - [anon_sym___asm] = ACTIONS(3612), - [sym_number_literal] = ACTIONS(3614), - [anon_sym_L_SQUOTE] = ACTIONS(3614), - [anon_sym_u_SQUOTE] = ACTIONS(3614), - [anon_sym_U_SQUOTE] = ACTIONS(3614), - [anon_sym_u8_SQUOTE] = ACTIONS(3614), - [anon_sym_SQUOTE] = ACTIONS(3614), - [anon_sym_L_DQUOTE] = ACTIONS(3614), - [anon_sym_u_DQUOTE] = ACTIONS(3614), - [anon_sym_U_DQUOTE] = ACTIONS(3614), - [anon_sym_u8_DQUOTE] = ACTIONS(3614), - [anon_sym_DQUOTE] = ACTIONS(3614), - [sym_true] = ACTIONS(3612), - [sym_false] = ACTIONS(3612), - [anon_sym_NULL] = ACTIONS(3612), - [anon_sym_nullptr] = ACTIONS(3612), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3612), - [anon_sym_decltype] = ACTIONS(3612), - [anon_sym_explicit] = ACTIONS(3612), - [anon_sym_template] = ACTIONS(3612), - [anon_sym_operator] = ACTIONS(3612), - [anon_sym_try] = ACTIONS(3612), - [anon_sym_delete] = ACTIONS(3612), - [anon_sym_throw] = ACTIONS(3612), - [anon_sym_namespace] = ACTIONS(3612), - [anon_sym_static_assert] = ACTIONS(3612), - [anon_sym_concept] = ACTIONS(3612), - [anon_sym_co_return] = ACTIONS(3612), - [anon_sym_co_yield] = ACTIONS(3612), - [anon_sym_R_DQUOTE] = ACTIONS(3614), - [anon_sym_LR_DQUOTE] = ACTIONS(3614), - [anon_sym_uR_DQUOTE] = ACTIONS(3614), - [anon_sym_UR_DQUOTE] = ACTIONS(3614), - [anon_sym_u8R_DQUOTE] = ACTIONS(3614), - [anon_sym_co_await] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3612), - [anon_sym_requires] = ACTIONS(3612), - [anon_sym_CARET_CARET] = ACTIONS(3614), - [anon_sym_LBRACK_COLON] = ACTIONS(3614), - [sym_this] = ACTIONS(3612), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), + [aux_sym_preproc_else_token1] = ACTIONS(3434), + [aux_sym_preproc_elif_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3440), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3462), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(3480), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3482), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(3484), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(356)] = { - [sym_identifier] = ACTIONS(2803), - [aux_sym_preproc_include_token1] = ACTIONS(2803), - [aux_sym_preproc_def_token1] = ACTIONS(2803), - [aux_sym_preproc_if_token1] = ACTIONS(2803), - [aux_sym_preproc_if_token2] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), - [aux_sym_preproc_else_token1] = ACTIONS(2803), - [aux_sym_preproc_elif_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2803), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2803), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym___extension__] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2803), - [anon_sym_virtual] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym___attribute__] = ACTIONS(2803), - [anon_sym___attribute] = ACTIONS(2803), - [anon_sym_using] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2803), - [anon_sym___based] = ACTIONS(2803), - [anon_sym___cdecl] = ACTIONS(2803), - [anon_sym___clrcall] = ACTIONS(2803), - [anon_sym___stdcall] = ACTIONS(2803), - [anon_sym___fastcall] = ACTIONS(2803), - [anon_sym___thiscall] = ACTIONS(2803), - [anon_sym___vectorcall] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_signed] = ACTIONS(2803), - [anon_sym_unsigned] = ACTIONS(2803), - [anon_sym_long] = ACTIONS(2803), - [anon_sym_short] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_register] = ACTIONS(2803), - [anon_sym_inline] = ACTIONS(2803), - [anon_sym___inline] = ACTIONS(2803), - [anon_sym___inline__] = ACTIONS(2803), - [anon_sym___forceinline] = ACTIONS(2803), - [anon_sym_thread_local] = ACTIONS(2803), - [anon_sym___thread] = ACTIONS(2803), - [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__Nonnull] = ACTIONS(2803), - [anon_sym_mutable] = ACTIONS(2803), - [anon_sym_constinit] = ACTIONS(2803), - [anon_sym_consteval] = ACTIONS(2803), - [anon_sym_alignas] = ACTIONS(2803), - [anon_sym__Alignas] = ACTIONS(2803), - [sym_primitive_type] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_if] = ACTIONS(2803), - [anon_sym_else] = ACTIONS(2803), - [anon_sym_switch] = ACTIONS(2803), - [anon_sym_case] = ACTIONS(2803), - [anon_sym_default] = ACTIONS(2803), - [anon_sym_while] = ACTIONS(2803), - [anon_sym_do] = ACTIONS(2803), - [anon_sym_for] = ACTIONS(2803), - [anon_sym_return] = ACTIONS(2803), - [anon_sym_break] = ACTIONS(2803), - [anon_sym_continue] = ACTIONS(2803), - [anon_sym_goto] = ACTIONS(2803), - [anon_sym___try] = ACTIONS(2803), - [anon_sym___leave] = ACTIONS(2803), - [anon_sym_not] = ACTIONS(2803), - [anon_sym_compl] = ACTIONS(2803), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_sizeof] = ACTIONS(2803), - [anon_sym___alignof__] = ACTIONS(2803), - [anon_sym___alignof] = ACTIONS(2803), - [anon_sym__alignof] = ACTIONS(2803), - [anon_sym_alignof] = ACTIONS(2803), - [anon_sym__Alignof] = ACTIONS(2803), - [anon_sym_offsetof] = ACTIONS(2803), - [anon_sym__Generic] = ACTIONS(2803), - [anon_sym_typename] = ACTIONS(2803), - [anon_sym_asm] = ACTIONS(2803), - [anon_sym___asm__] = ACTIONS(2803), - [anon_sym___asm] = ACTIONS(2803), - [sym_number_literal] = ACTIONS(2801), - [anon_sym_L_SQUOTE] = ACTIONS(2801), - [anon_sym_u_SQUOTE] = ACTIONS(2801), - [anon_sym_U_SQUOTE] = ACTIONS(2801), - [anon_sym_u8_SQUOTE] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2801), - [anon_sym_L_DQUOTE] = ACTIONS(2801), - [anon_sym_u_DQUOTE] = ACTIONS(2801), - [anon_sym_U_DQUOTE] = ACTIONS(2801), - [anon_sym_u8_DQUOTE] = ACTIONS(2801), - [anon_sym_DQUOTE] = ACTIONS(2801), - [sym_true] = ACTIONS(2803), - [sym_false] = ACTIONS(2803), - [anon_sym_NULL] = ACTIONS(2803), - [anon_sym_nullptr] = ACTIONS(2803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2803), - [anon_sym_decltype] = ACTIONS(2803), - [anon_sym_explicit] = ACTIONS(2803), - [anon_sym_template] = ACTIONS(2803), - [anon_sym_operator] = ACTIONS(2803), - [anon_sym_try] = ACTIONS(2803), - [anon_sym_delete] = ACTIONS(2803), - [anon_sym_throw] = ACTIONS(2803), - [anon_sym_namespace] = ACTIONS(2803), - [anon_sym_static_assert] = ACTIONS(2803), - [anon_sym_concept] = ACTIONS(2803), - [anon_sym_co_return] = ACTIONS(2803), - [anon_sym_co_yield] = ACTIONS(2803), - [anon_sym_catch] = ACTIONS(2803), - [anon_sym_R_DQUOTE] = ACTIONS(2801), - [anon_sym_LR_DQUOTE] = ACTIONS(2801), - [anon_sym_uR_DQUOTE] = ACTIONS(2801), - [anon_sym_UR_DQUOTE] = ACTIONS(2801), - [anon_sym_u8R_DQUOTE] = ACTIONS(2801), - [anon_sym_co_await] = ACTIONS(2803), - [anon_sym_new] = ACTIONS(2803), - [anon_sym_requires] = ACTIONS(2803), - [anon_sym_CARET_CARET] = ACTIONS(2801), - [anon_sym_LBRACK_COLON] = ACTIONS(2801), - [sym_this] = ACTIONS(2803), + [STATE(365)] = { + [sym_identifier] = ACTIONS(3614), + [aux_sym_preproc_include_token1] = ACTIONS(3614), + [aux_sym_preproc_def_token1] = ACTIONS(3614), + [aux_sym_preproc_if_token1] = ACTIONS(3614), + [aux_sym_preproc_if_token2] = ACTIONS(3614), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3614), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3614), + [aux_sym_preproc_else_token1] = ACTIONS(3614), + [aux_sym_preproc_elif_token1] = ACTIONS(3614), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3614), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3614), + [sym_preproc_directive] = ACTIONS(3614), + [anon_sym_LPAREN2] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3614), + [anon_sym_STAR] = ACTIONS(3616), + [anon_sym_AMP_AMP] = ACTIONS(3616), + [anon_sym_AMP] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3616), + [anon_sym___extension__] = ACTIONS(3614), + [anon_sym_typedef] = ACTIONS(3614), + [anon_sym_virtual] = ACTIONS(3614), + [anon_sym_extern] = ACTIONS(3614), + [anon_sym___attribute__] = ACTIONS(3614), + [anon_sym___attribute] = ACTIONS(3614), + [anon_sym_using] = ACTIONS(3614), + [anon_sym_COLON_COLON] = ACTIONS(3616), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3616), + [anon_sym___declspec] = ACTIONS(3614), + [anon_sym___based] = ACTIONS(3614), + [anon_sym___cdecl] = ACTIONS(3614), + [anon_sym___clrcall] = ACTIONS(3614), + [anon_sym___stdcall] = ACTIONS(3614), + [anon_sym___fastcall] = ACTIONS(3614), + [anon_sym___thiscall] = ACTIONS(3614), + [anon_sym___vectorcall] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_signed] = ACTIONS(3614), + [anon_sym_unsigned] = ACTIONS(3614), + [anon_sym_long] = ACTIONS(3614), + [anon_sym_short] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3614), + [anon_sym_static] = ACTIONS(3614), + [anon_sym_register] = ACTIONS(3614), + [anon_sym_inline] = ACTIONS(3614), + [anon_sym___inline] = ACTIONS(3614), + [anon_sym___inline__] = ACTIONS(3614), + [anon_sym___forceinline] = ACTIONS(3614), + [anon_sym_thread_local] = ACTIONS(3614), + [anon_sym___thread] = ACTIONS(3614), + [anon_sym_const] = ACTIONS(3614), + [anon_sym_constexpr] = ACTIONS(3614), + [anon_sym_volatile] = ACTIONS(3614), + [anon_sym_restrict] = ACTIONS(3614), + [anon_sym___restrict__] = ACTIONS(3614), + [anon_sym__Atomic] = ACTIONS(3614), + [anon_sym__Noreturn] = ACTIONS(3614), + [anon_sym_noreturn] = ACTIONS(3614), + [anon_sym__Nonnull] = ACTIONS(3614), + [anon_sym_mutable] = ACTIONS(3614), + [anon_sym_constinit] = ACTIONS(3614), + [anon_sym_consteval] = ACTIONS(3614), + [anon_sym_alignas] = ACTIONS(3614), + [anon_sym__Alignas] = ACTIONS(3614), + [sym_primitive_type] = ACTIONS(3614), + [anon_sym_enum] = ACTIONS(3614), + [anon_sym_class] = ACTIONS(3614), + [anon_sym_struct] = ACTIONS(3614), + [anon_sym_union] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(3614), + [anon_sym_else] = ACTIONS(3614), + [anon_sym_switch] = ACTIONS(3614), + [anon_sym_case] = ACTIONS(3614), + [anon_sym_default] = ACTIONS(3614), + [anon_sym_while] = ACTIONS(3614), + [anon_sym_do] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3614), + [anon_sym_return] = ACTIONS(3614), + [anon_sym_break] = ACTIONS(3614), + [anon_sym_continue] = ACTIONS(3614), + [anon_sym_goto] = ACTIONS(3614), + [anon_sym___try] = ACTIONS(3614), + [anon_sym___leave] = ACTIONS(3614), + [anon_sym_not] = ACTIONS(3614), + [anon_sym_compl] = ACTIONS(3614), + [anon_sym_DASH_DASH] = ACTIONS(3616), + [anon_sym_PLUS_PLUS] = ACTIONS(3616), + [anon_sym_sizeof] = ACTIONS(3614), + [anon_sym___alignof__] = ACTIONS(3614), + [anon_sym___alignof] = ACTIONS(3614), + [anon_sym__alignof] = ACTIONS(3614), + [anon_sym_alignof] = ACTIONS(3614), + [anon_sym__Alignof] = ACTIONS(3614), + [anon_sym_offsetof] = ACTIONS(3614), + [anon_sym__Generic] = ACTIONS(3614), + [anon_sym_typename] = ACTIONS(3614), + [anon_sym_asm] = ACTIONS(3614), + [anon_sym___asm__] = ACTIONS(3614), + [anon_sym___asm] = ACTIONS(3614), + [sym_number_literal] = ACTIONS(3616), + [anon_sym_L_SQUOTE] = ACTIONS(3616), + [anon_sym_u_SQUOTE] = ACTIONS(3616), + [anon_sym_U_SQUOTE] = ACTIONS(3616), + [anon_sym_u8_SQUOTE] = ACTIONS(3616), + [anon_sym_SQUOTE] = ACTIONS(3616), + [anon_sym_L_DQUOTE] = ACTIONS(3616), + [anon_sym_u_DQUOTE] = ACTIONS(3616), + [anon_sym_U_DQUOTE] = ACTIONS(3616), + [anon_sym_u8_DQUOTE] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [sym_true] = ACTIONS(3614), + [sym_false] = ACTIONS(3614), + [anon_sym_NULL] = ACTIONS(3614), + [anon_sym_nullptr] = ACTIONS(3614), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3614), + [anon_sym_decltype] = ACTIONS(3614), + [anon_sym_explicit] = ACTIONS(3614), + [anon_sym_export] = ACTIONS(3614), + [anon_sym_module] = ACTIONS(3614), + [anon_sym_import] = ACTIONS(3614), + [anon_sym_template] = ACTIONS(3614), + [anon_sym_operator] = ACTIONS(3614), + [anon_sym_try] = ACTIONS(3614), + [anon_sym_delete] = ACTIONS(3614), + [anon_sym_throw] = ACTIONS(3614), + [anon_sym_namespace] = ACTIONS(3614), + [anon_sym_static_assert] = ACTIONS(3614), + [anon_sym_concept] = ACTIONS(3614), + [anon_sym_co_return] = ACTIONS(3614), + [anon_sym_co_yield] = ACTIONS(3614), + [anon_sym_R_DQUOTE] = ACTIONS(3616), + [anon_sym_LR_DQUOTE] = ACTIONS(3616), + [anon_sym_uR_DQUOTE] = ACTIONS(3616), + [anon_sym_UR_DQUOTE] = ACTIONS(3616), + [anon_sym_u8R_DQUOTE] = ACTIONS(3616), + [anon_sym_co_await] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3614), + [anon_sym_requires] = ACTIONS(3614), + [anon_sym_CARET_CARET] = ACTIONS(3616), + [anon_sym_LBRACK_COLON] = ACTIONS(3616), + [sym_this] = ACTIONS(3614), }, - [STATE(357)] = { - [sym_else_clause] = STATE(376), + [STATE(366)] = { [sym_identifier] = ACTIONS(3618), [aux_sym_preproc_include_token1] = ACTIONS(3618), [aux_sym_preproc_def_token1] = ACTIONS(3618), @@ -105516,7 +112088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(3618), [anon_sym_union] = ACTIONS(3618), [anon_sym_if] = ACTIONS(3618), - [anon_sym_else] = ACTIONS(3616), + [anon_sym_else] = ACTIONS(3618), [anon_sym_switch] = ACTIONS(3618), [anon_sym_case] = ACTIONS(3618), [anon_sym_default] = ACTIONS(3618), @@ -105564,6 +112136,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(3618), [anon_sym_decltype] = ACTIONS(3618), [anon_sym_explicit] = ACTIONS(3618), + [anon_sym_export] = ACTIONS(3618), + [anon_sym_module] = ACTIONS(3618), + [anon_sym_import] = ACTIONS(3618), [anon_sym_template] = ACTIONS(3618), [anon_sym_operator] = ACTIONS(3618), [anon_sym_try] = ACTIONS(3618), @@ -105586,294 +112161,445 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3620), [sym_this] = ACTIONS(3618), }, - [STATE(358)] = { - [sym_identifier] = ACTIONS(2795), - [aux_sym_preproc_include_token1] = ACTIONS(2795), - [aux_sym_preproc_def_token1] = ACTIONS(2795), - [aux_sym_preproc_if_token1] = ACTIONS(2795), - [aux_sym_preproc_if_token2] = ACTIONS(2795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), - [aux_sym_preproc_else_token1] = ACTIONS(2795), - [aux_sym_preproc_elif_token1] = ACTIONS(2795), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2795), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2795), - [sym_preproc_directive] = ACTIONS(2795), - [anon_sym_LPAREN2] = ACTIONS(2793), - [anon_sym_BANG] = ACTIONS(2793), - [anon_sym_TILDE] = ACTIONS(2793), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2793), - [anon_sym_AMP_AMP] = ACTIONS(2793), - [anon_sym_AMP] = ACTIONS(2795), - [anon_sym_SEMI] = ACTIONS(2793), - [anon_sym___extension__] = ACTIONS(2795), - [anon_sym_typedef] = ACTIONS(2795), - [anon_sym_virtual] = ACTIONS(2795), - [anon_sym_extern] = ACTIONS(2795), - [anon_sym___attribute__] = ACTIONS(2795), - [anon_sym___attribute] = ACTIONS(2795), - [anon_sym_using] = ACTIONS(2795), - [anon_sym_COLON_COLON] = ACTIONS(2793), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), - [anon_sym___declspec] = ACTIONS(2795), - [anon_sym___based] = ACTIONS(2795), - [anon_sym___cdecl] = ACTIONS(2795), - [anon_sym___clrcall] = ACTIONS(2795), - [anon_sym___stdcall] = ACTIONS(2795), - [anon_sym___fastcall] = ACTIONS(2795), - [anon_sym___thiscall] = ACTIONS(2795), - [anon_sym___vectorcall] = ACTIONS(2795), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_signed] = ACTIONS(2795), - [anon_sym_unsigned] = ACTIONS(2795), - [anon_sym_long] = ACTIONS(2795), - [anon_sym_short] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2795), - [anon_sym_static] = ACTIONS(2795), - [anon_sym_register] = ACTIONS(2795), - [anon_sym_inline] = ACTIONS(2795), - [anon_sym___inline] = ACTIONS(2795), - [anon_sym___inline__] = ACTIONS(2795), - [anon_sym___forceinline] = ACTIONS(2795), - [anon_sym_thread_local] = ACTIONS(2795), - [anon_sym___thread] = ACTIONS(2795), - [anon_sym_const] = ACTIONS(2795), - [anon_sym_constexpr] = ACTIONS(2795), - [anon_sym_volatile] = ACTIONS(2795), - [anon_sym_restrict] = ACTIONS(2795), - [anon_sym___restrict__] = ACTIONS(2795), - [anon_sym__Atomic] = ACTIONS(2795), - [anon_sym__Noreturn] = ACTIONS(2795), - [anon_sym_noreturn] = ACTIONS(2795), - [anon_sym__Nonnull] = ACTIONS(2795), - [anon_sym_mutable] = ACTIONS(2795), - [anon_sym_constinit] = ACTIONS(2795), - [anon_sym_consteval] = ACTIONS(2795), - [anon_sym_alignas] = ACTIONS(2795), - [anon_sym__Alignas] = ACTIONS(2795), - [sym_primitive_type] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2795), - [anon_sym_class] = ACTIONS(2795), - [anon_sym_struct] = ACTIONS(2795), - [anon_sym_union] = ACTIONS(2795), - [anon_sym_if] = ACTIONS(2795), - [anon_sym_else] = ACTIONS(2795), - [anon_sym_switch] = ACTIONS(2795), - [anon_sym_case] = ACTIONS(2795), - [anon_sym_default] = ACTIONS(2795), - [anon_sym_while] = ACTIONS(2795), - [anon_sym_do] = ACTIONS(2795), - [anon_sym_for] = ACTIONS(2795), - [anon_sym_return] = ACTIONS(2795), - [anon_sym_break] = ACTIONS(2795), - [anon_sym_continue] = ACTIONS(2795), - [anon_sym_goto] = ACTIONS(2795), - [anon_sym___try] = ACTIONS(2795), - [anon_sym___leave] = ACTIONS(2795), - [anon_sym_not] = ACTIONS(2795), - [anon_sym_compl] = ACTIONS(2795), - [anon_sym_DASH_DASH] = ACTIONS(2793), - [anon_sym_PLUS_PLUS] = ACTIONS(2793), - [anon_sym_sizeof] = ACTIONS(2795), - [anon_sym___alignof__] = ACTIONS(2795), - [anon_sym___alignof] = ACTIONS(2795), - [anon_sym__alignof] = ACTIONS(2795), - [anon_sym_alignof] = ACTIONS(2795), - [anon_sym__Alignof] = ACTIONS(2795), - [anon_sym_offsetof] = ACTIONS(2795), - [anon_sym__Generic] = ACTIONS(2795), - [anon_sym_typename] = ACTIONS(2795), - [anon_sym_asm] = ACTIONS(2795), - [anon_sym___asm__] = ACTIONS(2795), - [anon_sym___asm] = ACTIONS(2795), - [sym_number_literal] = ACTIONS(2793), - [anon_sym_L_SQUOTE] = ACTIONS(2793), - [anon_sym_u_SQUOTE] = ACTIONS(2793), - [anon_sym_U_SQUOTE] = ACTIONS(2793), - [anon_sym_u8_SQUOTE] = ACTIONS(2793), - [anon_sym_SQUOTE] = ACTIONS(2793), - [anon_sym_L_DQUOTE] = ACTIONS(2793), - [anon_sym_u_DQUOTE] = ACTIONS(2793), - [anon_sym_U_DQUOTE] = ACTIONS(2793), - [anon_sym_u8_DQUOTE] = ACTIONS(2793), - [anon_sym_DQUOTE] = ACTIONS(2793), - [sym_true] = ACTIONS(2795), - [sym_false] = ACTIONS(2795), - [anon_sym_NULL] = ACTIONS(2795), - [anon_sym_nullptr] = ACTIONS(2795), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2795), - [anon_sym_decltype] = ACTIONS(2795), - [anon_sym_explicit] = ACTIONS(2795), - [anon_sym_template] = ACTIONS(2795), - [anon_sym_operator] = ACTIONS(2795), - [anon_sym_try] = ACTIONS(2795), - [anon_sym_delete] = ACTIONS(2795), - [anon_sym_throw] = ACTIONS(2795), - [anon_sym_namespace] = ACTIONS(2795), - [anon_sym_static_assert] = ACTIONS(2795), - [anon_sym_concept] = ACTIONS(2795), - [anon_sym_co_return] = ACTIONS(2795), - [anon_sym_co_yield] = ACTIONS(2795), - [anon_sym_catch] = ACTIONS(2795), - [anon_sym_R_DQUOTE] = ACTIONS(2793), - [anon_sym_LR_DQUOTE] = ACTIONS(2793), - [anon_sym_uR_DQUOTE] = ACTIONS(2793), - [anon_sym_UR_DQUOTE] = ACTIONS(2793), - [anon_sym_u8R_DQUOTE] = ACTIONS(2793), - [anon_sym_co_await] = ACTIONS(2795), - [anon_sym_new] = ACTIONS(2795), - [anon_sym_requires] = ACTIONS(2795), - [anon_sym_CARET_CARET] = ACTIONS(2793), - [anon_sym_LBRACK_COLON] = ACTIONS(2793), - [sym_this] = ACTIONS(2795), - }, - [STATE(359)] = { - [sym_identifier] = ACTIONS(3622), - [aux_sym_preproc_include_token1] = ACTIONS(3622), - [aux_sym_preproc_def_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token2] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), - [aux_sym_preproc_else_token1] = ACTIONS(3622), - [aux_sym_preproc_elif_token1] = ACTIONS(3622), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3622), - [sym_preproc_directive] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3622), - [anon_sym_PLUS] = ACTIONS(3622), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP_AMP] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym___attribute] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym___based] = ACTIONS(3622), - [anon_sym___cdecl] = ACTIONS(3622), - [anon_sym___clrcall] = ACTIONS(3622), - [anon_sym___stdcall] = ACTIONS(3622), - [anon_sym___fastcall] = ACTIONS(3622), - [anon_sym___thiscall] = ACTIONS(3622), - [anon_sym___vectorcall] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3624), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym__Nonnull] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym__Alignas] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_if] = ACTIONS(3622), - [anon_sym_else] = ACTIONS(3622), - [anon_sym_switch] = ACTIONS(3622), - [anon_sym_case] = ACTIONS(3622), - [anon_sym_default] = ACTIONS(3622), - [anon_sym_while] = ACTIONS(3622), - [anon_sym_do] = ACTIONS(3622), - [anon_sym_for] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3622), - [anon_sym_break] = ACTIONS(3622), - [anon_sym_continue] = ACTIONS(3622), - [anon_sym_goto] = ACTIONS(3622), - [anon_sym___try] = ACTIONS(3622), - [anon_sym___leave] = ACTIONS(3622), - [anon_sym_not] = ACTIONS(3622), - [anon_sym_compl] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3624), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_sizeof] = ACTIONS(3622), - [anon_sym___alignof__] = ACTIONS(3622), - [anon_sym___alignof] = ACTIONS(3622), - [anon_sym__alignof] = ACTIONS(3622), - [anon_sym_alignof] = ACTIONS(3622), - [anon_sym__Alignof] = ACTIONS(3622), - [anon_sym_offsetof] = ACTIONS(3622), - [anon_sym__Generic] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [anon_sym_asm] = ACTIONS(3622), - [anon_sym___asm__] = ACTIONS(3622), - [anon_sym___asm] = ACTIONS(3622), - [sym_number_literal] = ACTIONS(3624), - [anon_sym_L_SQUOTE] = ACTIONS(3624), - [anon_sym_u_SQUOTE] = ACTIONS(3624), - [anon_sym_U_SQUOTE] = ACTIONS(3624), - [anon_sym_u8_SQUOTE] = ACTIONS(3624), - [anon_sym_SQUOTE] = ACTIONS(3624), - [anon_sym_L_DQUOTE] = ACTIONS(3624), - [anon_sym_u_DQUOTE] = ACTIONS(3624), - [anon_sym_U_DQUOTE] = ACTIONS(3624), - [anon_sym_u8_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [sym_true] = ACTIONS(3622), - [sym_false] = ACTIONS(3622), - [anon_sym_NULL] = ACTIONS(3622), - [anon_sym_nullptr] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_explicit] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_operator] = ACTIONS(3622), - [anon_sym_try] = ACTIONS(3622), - [anon_sym_delete] = ACTIONS(3622), - [anon_sym_throw] = ACTIONS(3622), - [anon_sym_namespace] = ACTIONS(3622), - [anon_sym_static_assert] = ACTIONS(3622), - [anon_sym_concept] = ACTIONS(3622), - [anon_sym_co_return] = ACTIONS(3622), - [anon_sym_co_yield] = ACTIONS(3622), - [anon_sym_R_DQUOTE] = ACTIONS(3624), - [anon_sym_LR_DQUOTE] = ACTIONS(3624), - [anon_sym_uR_DQUOTE] = ACTIONS(3624), - [anon_sym_UR_DQUOTE] = ACTIONS(3624), - [anon_sym_u8R_DQUOTE] = ACTIONS(3624), - [anon_sym_co_await] = ACTIONS(3622), - [anon_sym_new] = ACTIONS(3622), - [anon_sym_requires] = ACTIONS(3622), - [anon_sym_CARET_CARET] = ACTIONS(3624), + [STATE(367)] = { + [sym_identifier] = ACTIONS(3618), + [aux_sym_preproc_include_token1] = ACTIONS(3618), + [aux_sym_preproc_def_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token2] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), + [aux_sym_preproc_else_token1] = ACTIONS(3618), + [aux_sym_preproc_elif_token1] = ACTIONS(3618), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3618), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3618), + [sym_preproc_directive] = ACTIONS(3618), + [anon_sym_LPAREN2] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_AMP] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym___extension__] = ACTIONS(3618), + [anon_sym_typedef] = ACTIONS(3618), + [anon_sym_virtual] = ACTIONS(3618), + [anon_sym_extern] = ACTIONS(3618), + [anon_sym___attribute__] = ACTIONS(3618), + [anon_sym___attribute] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_COLON_COLON] = ACTIONS(3620), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), + [anon_sym___declspec] = ACTIONS(3618), + [anon_sym___based] = ACTIONS(3618), + [anon_sym___cdecl] = ACTIONS(3618), + [anon_sym___clrcall] = ACTIONS(3618), + [anon_sym___stdcall] = ACTIONS(3618), + [anon_sym___fastcall] = ACTIONS(3618), + [anon_sym___thiscall] = ACTIONS(3618), + [anon_sym___vectorcall] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_signed] = ACTIONS(3618), + [anon_sym_unsigned] = ACTIONS(3618), + [anon_sym_long] = ACTIONS(3618), + [anon_sym_short] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_register] = ACTIONS(3618), + [anon_sym_inline] = ACTIONS(3618), + [anon_sym___inline] = ACTIONS(3618), + [anon_sym___inline__] = ACTIONS(3618), + [anon_sym___forceinline] = ACTIONS(3618), + [anon_sym_thread_local] = ACTIONS(3618), + [anon_sym___thread] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_constexpr] = ACTIONS(3618), + [anon_sym_volatile] = ACTIONS(3618), + [anon_sym_restrict] = ACTIONS(3618), + [anon_sym___restrict__] = ACTIONS(3618), + [anon_sym__Atomic] = ACTIONS(3618), + [anon_sym__Noreturn] = ACTIONS(3618), + [anon_sym_noreturn] = ACTIONS(3618), + [anon_sym__Nonnull] = ACTIONS(3618), + [anon_sym_mutable] = ACTIONS(3618), + [anon_sym_constinit] = ACTIONS(3618), + [anon_sym_consteval] = ACTIONS(3618), + [anon_sym_alignas] = ACTIONS(3618), + [anon_sym__Alignas] = ACTIONS(3618), + [sym_primitive_type] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_struct] = ACTIONS(3618), + [anon_sym_union] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_else] = ACTIONS(3618), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_case] = ACTIONS(3618), + [anon_sym_default] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_goto] = ACTIONS(3618), + [anon_sym___try] = ACTIONS(3618), + [anon_sym___leave] = ACTIONS(3618), + [anon_sym_not] = ACTIONS(3618), + [anon_sym_compl] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_sizeof] = ACTIONS(3618), + [anon_sym___alignof__] = ACTIONS(3618), + [anon_sym___alignof] = ACTIONS(3618), + [anon_sym__alignof] = ACTIONS(3618), + [anon_sym_alignof] = ACTIONS(3618), + [anon_sym__Alignof] = ACTIONS(3618), + [anon_sym_offsetof] = ACTIONS(3618), + [anon_sym__Generic] = ACTIONS(3618), + [anon_sym_typename] = ACTIONS(3618), + [anon_sym_asm] = ACTIONS(3618), + [anon_sym___asm__] = ACTIONS(3618), + [anon_sym___asm] = ACTIONS(3618), + [sym_number_literal] = ACTIONS(3620), + [anon_sym_L_SQUOTE] = ACTIONS(3620), + [anon_sym_u_SQUOTE] = ACTIONS(3620), + [anon_sym_U_SQUOTE] = ACTIONS(3620), + [anon_sym_u8_SQUOTE] = ACTIONS(3620), + [anon_sym_SQUOTE] = ACTIONS(3620), + [anon_sym_L_DQUOTE] = ACTIONS(3620), + [anon_sym_u_DQUOTE] = ACTIONS(3620), + [anon_sym_U_DQUOTE] = ACTIONS(3620), + [anon_sym_u8_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [anon_sym_NULL] = ACTIONS(3618), + [anon_sym_nullptr] = ACTIONS(3618), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3618), + [anon_sym_decltype] = ACTIONS(3618), + [anon_sym_explicit] = ACTIONS(3618), + [anon_sym_export] = ACTIONS(3618), + [anon_sym_module] = ACTIONS(3618), + [anon_sym_import] = ACTIONS(3618), + [anon_sym_template] = ACTIONS(3618), + [anon_sym_operator] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_namespace] = ACTIONS(3618), + [anon_sym_static_assert] = ACTIONS(3618), + [anon_sym_concept] = ACTIONS(3618), + [anon_sym_co_return] = ACTIONS(3618), + [anon_sym_co_yield] = ACTIONS(3618), + [anon_sym_R_DQUOTE] = ACTIONS(3620), + [anon_sym_LR_DQUOTE] = ACTIONS(3620), + [anon_sym_uR_DQUOTE] = ACTIONS(3620), + [anon_sym_UR_DQUOTE] = ACTIONS(3620), + [anon_sym_u8R_DQUOTE] = ACTIONS(3620), + [anon_sym_co_await] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_requires] = ACTIONS(3618), + [anon_sym_CARET_CARET] = ACTIONS(3620), + [anon_sym_LBRACK_COLON] = ACTIONS(3620), + [sym_this] = ACTIONS(3618), + }, + [STATE(368)] = { + [sym_identifier] = ACTIONS(3622), + [aux_sym_preproc_include_token1] = ACTIONS(3622), + [aux_sym_preproc_def_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token2] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), + [aux_sym_preproc_else_token1] = ACTIONS(3622), + [aux_sym_preproc_elif_token1] = ACTIONS(3622), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3622), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3622), + [sym_preproc_directive] = ACTIONS(3622), + [anon_sym_LPAREN2] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_STAR] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_AMP] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym___extension__] = ACTIONS(3622), + [anon_sym_typedef] = ACTIONS(3622), + [anon_sym_virtual] = ACTIONS(3622), + [anon_sym_extern] = ACTIONS(3622), + [anon_sym___attribute__] = ACTIONS(3622), + [anon_sym___attribute] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_COLON_COLON] = ACTIONS(3624), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), + [anon_sym___declspec] = ACTIONS(3622), + [anon_sym___based] = ACTIONS(3622), + [anon_sym___cdecl] = ACTIONS(3622), + [anon_sym___clrcall] = ACTIONS(3622), + [anon_sym___stdcall] = ACTIONS(3622), + [anon_sym___fastcall] = ACTIONS(3622), + [anon_sym___thiscall] = ACTIONS(3622), + [anon_sym___vectorcall] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_signed] = ACTIONS(3622), + [anon_sym_unsigned] = ACTIONS(3622), + [anon_sym_long] = ACTIONS(3622), + [anon_sym_short] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_register] = ACTIONS(3622), + [anon_sym_inline] = ACTIONS(3622), + [anon_sym___inline] = ACTIONS(3622), + [anon_sym___inline__] = ACTIONS(3622), + [anon_sym___forceinline] = ACTIONS(3622), + [anon_sym_thread_local] = ACTIONS(3622), + [anon_sym___thread] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_constexpr] = ACTIONS(3622), + [anon_sym_volatile] = ACTIONS(3622), + [anon_sym_restrict] = ACTIONS(3622), + [anon_sym___restrict__] = ACTIONS(3622), + [anon_sym__Atomic] = ACTIONS(3622), + [anon_sym__Noreturn] = ACTIONS(3622), + [anon_sym_noreturn] = ACTIONS(3622), + [anon_sym__Nonnull] = ACTIONS(3622), + [anon_sym_mutable] = ACTIONS(3622), + [anon_sym_constinit] = ACTIONS(3622), + [anon_sym_consteval] = ACTIONS(3622), + [anon_sym_alignas] = ACTIONS(3622), + [anon_sym__Alignas] = ACTIONS(3622), + [sym_primitive_type] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_struct] = ACTIONS(3622), + [anon_sym_union] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_case] = ACTIONS(3622), + [anon_sym_default] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_goto] = ACTIONS(3622), + [anon_sym___try] = ACTIONS(3622), + [anon_sym___leave] = ACTIONS(3622), + [anon_sym_not] = ACTIONS(3622), + [anon_sym_compl] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_sizeof] = ACTIONS(3622), + [anon_sym___alignof__] = ACTIONS(3622), + [anon_sym___alignof] = ACTIONS(3622), + [anon_sym__alignof] = ACTIONS(3622), + [anon_sym_alignof] = ACTIONS(3622), + [anon_sym__Alignof] = ACTIONS(3622), + [anon_sym_offsetof] = ACTIONS(3622), + [anon_sym__Generic] = ACTIONS(3622), + [anon_sym_typename] = ACTIONS(3622), + [anon_sym_asm] = ACTIONS(3622), + [anon_sym___asm__] = ACTIONS(3622), + [anon_sym___asm] = ACTIONS(3622), + [sym_number_literal] = ACTIONS(3624), + [anon_sym_L_SQUOTE] = ACTIONS(3624), + [anon_sym_u_SQUOTE] = ACTIONS(3624), + [anon_sym_U_SQUOTE] = ACTIONS(3624), + [anon_sym_u8_SQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_L_DQUOTE] = ACTIONS(3624), + [anon_sym_u_DQUOTE] = ACTIONS(3624), + [anon_sym_U_DQUOTE] = ACTIONS(3624), + [anon_sym_u8_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [anon_sym_NULL] = ACTIONS(3622), + [anon_sym_nullptr] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3622), + [anon_sym_decltype] = ACTIONS(3622), + [anon_sym_explicit] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_template] = ACTIONS(3622), + [anon_sym_operator] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_static_assert] = ACTIONS(3622), + [anon_sym_concept] = ACTIONS(3622), + [anon_sym_co_return] = ACTIONS(3622), + [anon_sym_co_yield] = ACTIONS(3622), + [anon_sym_R_DQUOTE] = ACTIONS(3624), + [anon_sym_LR_DQUOTE] = ACTIONS(3624), + [anon_sym_uR_DQUOTE] = ACTIONS(3624), + [anon_sym_UR_DQUOTE] = ACTIONS(3624), + [anon_sym_u8R_DQUOTE] = ACTIONS(3624), + [anon_sym_co_await] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_requires] = ACTIONS(3622), + [anon_sym_CARET_CARET] = ACTIONS(3624), [anon_sym_LBRACK_COLON] = ACTIONS(3624), [sym_this] = ACTIONS(3622), }, - [STATE(360)] = { + [STATE(369)] = { + [sym_identifier] = ACTIONS(3622), + [aux_sym_preproc_include_token1] = ACTIONS(3622), + [aux_sym_preproc_def_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token2] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), + [aux_sym_preproc_else_token1] = ACTIONS(3622), + [aux_sym_preproc_elif_token1] = ACTIONS(3622), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3622), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3622), + [sym_preproc_directive] = ACTIONS(3622), + [anon_sym_LPAREN2] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_STAR] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_AMP] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym___extension__] = ACTIONS(3622), + [anon_sym_typedef] = ACTIONS(3622), + [anon_sym_virtual] = ACTIONS(3622), + [anon_sym_extern] = ACTIONS(3622), + [anon_sym___attribute__] = ACTIONS(3622), + [anon_sym___attribute] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_COLON_COLON] = ACTIONS(3624), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), + [anon_sym___declspec] = ACTIONS(3622), + [anon_sym___based] = ACTIONS(3622), + [anon_sym___cdecl] = ACTIONS(3622), + [anon_sym___clrcall] = ACTIONS(3622), + [anon_sym___stdcall] = ACTIONS(3622), + [anon_sym___fastcall] = ACTIONS(3622), + [anon_sym___thiscall] = ACTIONS(3622), + [anon_sym___vectorcall] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_signed] = ACTIONS(3622), + [anon_sym_unsigned] = ACTIONS(3622), + [anon_sym_long] = ACTIONS(3622), + [anon_sym_short] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_register] = ACTIONS(3622), + [anon_sym_inline] = ACTIONS(3622), + [anon_sym___inline] = ACTIONS(3622), + [anon_sym___inline__] = ACTIONS(3622), + [anon_sym___forceinline] = ACTIONS(3622), + [anon_sym_thread_local] = ACTIONS(3622), + [anon_sym___thread] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_constexpr] = ACTIONS(3622), + [anon_sym_volatile] = ACTIONS(3622), + [anon_sym_restrict] = ACTIONS(3622), + [anon_sym___restrict__] = ACTIONS(3622), + [anon_sym__Atomic] = ACTIONS(3622), + [anon_sym__Noreturn] = ACTIONS(3622), + [anon_sym_noreturn] = ACTIONS(3622), + [anon_sym__Nonnull] = ACTIONS(3622), + [anon_sym_mutable] = ACTIONS(3622), + [anon_sym_constinit] = ACTIONS(3622), + [anon_sym_consteval] = ACTIONS(3622), + [anon_sym_alignas] = ACTIONS(3622), + [anon_sym__Alignas] = ACTIONS(3622), + [sym_primitive_type] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_struct] = ACTIONS(3622), + [anon_sym_union] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_case] = ACTIONS(3622), + [anon_sym_default] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_goto] = ACTIONS(3622), + [anon_sym___try] = ACTIONS(3622), + [anon_sym___leave] = ACTIONS(3622), + [anon_sym_not] = ACTIONS(3622), + [anon_sym_compl] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_sizeof] = ACTIONS(3622), + [anon_sym___alignof__] = ACTIONS(3622), + [anon_sym___alignof] = ACTIONS(3622), + [anon_sym__alignof] = ACTIONS(3622), + [anon_sym_alignof] = ACTIONS(3622), + [anon_sym__Alignof] = ACTIONS(3622), + [anon_sym_offsetof] = ACTIONS(3622), + [anon_sym__Generic] = ACTIONS(3622), + [anon_sym_typename] = ACTIONS(3622), + [anon_sym_asm] = ACTIONS(3622), + [anon_sym___asm__] = ACTIONS(3622), + [anon_sym___asm] = ACTIONS(3622), + [sym_number_literal] = ACTIONS(3624), + [anon_sym_L_SQUOTE] = ACTIONS(3624), + [anon_sym_u_SQUOTE] = ACTIONS(3624), + [anon_sym_U_SQUOTE] = ACTIONS(3624), + [anon_sym_u8_SQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_L_DQUOTE] = ACTIONS(3624), + [anon_sym_u_DQUOTE] = ACTIONS(3624), + [anon_sym_U_DQUOTE] = ACTIONS(3624), + [anon_sym_u8_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [anon_sym_NULL] = ACTIONS(3622), + [anon_sym_nullptr] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3622), + [anon_sym_decltype] = ACTIONS(3622), + [anon_sym_explicit] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_template] = ACTIONS(3622), + [anon_sym_operator] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_static_assert] = ACTIONS(3622), + [anon_sym_concept] = ACTIONS(3622), + [anon_sym_co_return] = ACTIONS(3622), + [anon_sym_co_yield] = ACTIONS(3622), + [anon_sym_R_DQUOTE] = ACTIONS(3624), + [anon_sym_LR_DQUOTE] = ACTIONS(3624), + [anon_sym_uR_DQUOTE] = ACTIONS(3624), + [anon_sym_UR_DQUOTE] = ACTIONS(3624), + [anon_sym_u8R_DQUOTE] = ACTIONS(3624), + [anon_sym_co_await] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_requires] = ACTIONS(3622), + [anon_sym_CARET_CARET] = ACTIONS(3624), + [anon_sym_LBRACK_COLON] = ACTIONS(3624), + [sym_this] = ACTIONS(3622), + }, + [STATE(370)] = { [sym_identifier] = ACTIONS(3626), [aux_sym_preproc_include_token1] = ACTIONS(3626), [aux_sym_preproc_def_token1] = ACTIONS(3626), @@ -105994,6 +112720,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(3626), [anon_sym_decltype] = ACTIONS(3626), [anon_sym_explicit] = ACTIONS(3626), + [anon_sym_export] = ACTIONS(3626), + [anon_sym_module] = ACTIONS(3626), + [anon_sym_import] = ACTIONS(3626), [anon_sym_template] = ACTIONS(3626), [anon_sym_operator] = ACTIONS(3626), [anon_sym_try] = ACTIONS(3626), @@ -106016,7 +112745,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3628), [sym_this] = ACTIONS(3626), }, - [STATE(361)] = { + [STATE(371)] = { [sym_identifier] = ACTIONS(3630), [aux_sym_preproc_include_token1] = ACTIONS(3630), [aux_sym_preproc_def_token1] = ACTIONS(3630), @@ -106137,6 +112866,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(3630), [anon_sym_decltype] = ACTIONS(3630), [anon_sym_explicit] = ACTIONS(3630), + [anon_sym_export] = ACTIONS(3630), + [anon_sym_module] = ACTIONS(3630), + [anon_sym_import] = ACTIONS(3630), [anon_sym_template] = ACTIONS(3630), [anon_sym_operator] = ACTIONS(3630), [anon_sym_try] = ACTIONS(3630), @@ -106159,2009 +112891,2635 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3632), [sym_this] = ACTIONS(3630), }, - [STATE(362)] = { - [sym_else_clause] = STATE(433), - [ts_builtin_sym_end] = ACTIONS(3614), - [sym_identifier] = ACTIONS(3612), - [aux_sym_preproc_include_token1] = ACTIONS(3612), - [aux_sym_preproc_def_token1] = ACTIONS(3612), - [aux_sym_preproc_if_token1] = ACTIONS(3612), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3612), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3612), - [sym_preproc_directive] = ACTIONS(3612), - [anon_sym_LPAREN2] = ACTIONS(3614), - [anon_sym_BANG] = ACTIONS(3614), - [anon_sym_TILDE] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_STAR] = ACTIONS(3614), - [anon_sym_AMP_AMP] = ACTIONS(3614), - [anon_sym_AMP] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3614), - [anon_sym___extension__] = ACTIONS(3612), - [anon_sym_typedef] = ACTIONS(3612), - [anon_sym_virtual] = ACTIONS(3612), - [anon_sym_extern] = ACTIONS(3612), - [anon_sym___attribute__] = ACTIONS(3612), - [anon_sym___attribute] = ACTIONS(3612), - [anon_sym_using] = ACTIONS(3612), - [anon_sym_COLON_COLON] = ACTIONS(3614), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3614), - [anon_sym___declspec] = ACTIONS(3612), - [anon_sym___based] = ACTIONS(3612), - [anon_sym___cdecl] = ACTIONS(3612), - [anon_sym___clrcall] = ACTIONS(3612), - [anon_sym___stdcall] = ACTIONS(3612), - [anon_sym___fastcall] = ACTIONS(3612), - [anon_sym___thiscall] = ACTIONS(3612), - [anon_sym___vectorcall] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_signed] = ACTIONS(3612), - [anon_sym_unsigned] = ACTIONS(3612), - [anon_sym_long] = ACTIONS(3612), - [anon_sym_short] = ACTIONS(3612), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_static] = ACTIONS(3612), - [anon_sym_register] = ACTIONS(3612), - [anon_sym_inline] = ACTIONS(3612), - [anon_sym___inline] = ACTIONS(3612), - [anon_sym___inline__] = ACTIONS(3612), - [anon_sym___forceinline] = ACTIONS(3612), - [anon_sym_thread_local] = ACTIONS(3612), - [anon_sym___thread] = ACTIONS(3612), - [anon_sym_const] = ACTIONS(3612), - [anon_sym_constexpr] = ACTIONS(3612), - [anon_sym_volatile] = ACTIONS(3612), - [anon_sym_restrict] = ACTIONS(3612), - [anon_sym___restrict__] = ACTIONS(3612), - [anon_sym__Atomic] = ACTIONS(3612), - [anon_sym__Noreturn] = ACTIONS(3612), - [anon_sym_noreturn] = ACTIONS(3612), - [anon_sym__Nonnull] = ACTIONS(3612), - [anon_sym_mutable] = ACTIONS(3612), - [anon_sym_constinit] = ACTIONS(3612), - [anon_sym_consteval] = ACTIONS(3612), - [anon_sym_alignas] = ACTIONS(3612), - [anon_sym__Alignas] = ACTIONS(3612), - [sym_primitive_type] = ACTIONS(3612), - [anon_sym_enum] = ACTIONS(3612), - [anon_sym_class] = ACTIONS(3612), - [anon_sym_struct] = ACTIONS(3612), - [anon_sym_union] = ACTIONS(3612), - [anon_sym_if] = ACTIONS(3612), + [STATE(372)] = { + [sym_identifier] = ACTIONS(3634), + [aux_sym_preproc_include_token1] = ACTIONS(3634), + [aux_sym_preproc_def_token1] = ACTIONS(3634), + [aux_sym_preproc_if_token1] = ACTIONS(3634), + [aux_sym_preproc_if_token2] = ACTIONS(3634), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3634), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3634), + [aux_sym_preproc_else_token1] = ACTIONS(3634), + [aux_sym_preproc_elif_token1] = ACTIONS(3634), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3634), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3634), + [sym_preproc_directive] = ACTIONS(3634), + [anon_sym_LPAREN2] = ACTIONS(3636), + [anon_sym_BANG] = ACTIONS(3636), + [anon_sym_TILDE] = ACTIONS(3636), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_STAR] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3636), + [anon_sym_AMP] = ACTIONS(3634), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym___extension__] = ACTIONS(3634), + [anon_sym_typedef] = ACTIONS(3634), + [anon_sym_virtual] = ACTIONS(3634), + [anon_sym_extern] = ACTIONS(3634), + [anon_sym___attribute__] = ACTIONS(3634), + [anon_sym___attribute] = ACTIONS(3634), + [anon_sym_using] = ACTIONS(3634), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3636), + [anon_sym___declspec] = ACTIONS(3634), + [anon_sym___based] = ACTIONS(3634), + [anon_sym___cdecl] = ACTIONS(3634), + [anon_sym___clrcall] = ACTIONS(3634), + [anon_sym___stdcall] = ACTIONS(3634), + [anon_sym___fastcall] = ACTIONS(3634), + [anon_sym___thiscall] = ACTIONS(3634), + [anon_sym___vectorcall] = ACTIONS(3634), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_signed] = ACTIONS(3634), + [anon_sym_unsigned] = ACTIONS(3634), + [anon_sym_long] = ACTIONS(3634), + [anon_sym_short] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3634), + [anon_sym_static] = ACTIONS(3634), + [anon_sym_register] = ACTIONS(3634), + [anon_sym_inline] = ACTIONS(3634), + [anon_sym___inline] = ACTIONS(3634), + [anon_sym___inline__] = ACTIONS(3634), + [anon_sym___forceinline] = ACTIONS(3634), + [anon_sym_thread_local] = ACTIONS(3634), + [anon_sym___thread] = ACTIONS(3634), + [anon_sym_const] = ACTIONS(3634), + [anon_sym_constexpr] = ACTIONS(3634), + [anon_sym_volatile] = ACTIONS(3634), + [anon_sym_restrict] = ACTIONS(3634), + [anon_sym___restrict__] = ACTIONS(3634), + [anon_sym__Atomic] = ACTIONS(3634), + [anon_sym__Noreturn] = ACTIONS(3634), + [anon_sym_noreturn] = ACTIONS(3634), + [anon_sym__Nonnull] = ACTIONS(3634), + [anon_sym_mutable] = ACTIONS(3634), + [anon_sym_constinit] = ACTIONS(3634), + [anon_sym_consteval] = ACTIONS(3634), + [anon_sym_alignas] = ACTIONS(3634), + [anon_sym__Alignas] = ACTIONS(3634), + [sym_primitive_type] = ACTIONS(3634), + [anon_sym_enum] = ACTIONS(3634), + [anon_sym_class] = ACTIONS(3634), + [anon_sym_struct] = ACTIONS(3634), + [anon_sym_union] = ACTIONS(3634), + [anon_sym_if] = ACTIONS(3634), [anon_sym_else] = ACTIONS(3634), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_case] = ACTIONS(3612), - [anon_sym_default] = ACTIONS(3612), - [anon_sym_while] = ACTIONS(3612), - [anon_sym_do] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3612), - [anon_sym_return] = ACTIONS(3612), - [anon_sym_break] = ACTIONS(3612), - [anon_sym_continue] = ACTIONS(3612), - [anon_sym_goto] = ACTIONS(3612), - [anon_sym___try] = ACTIONS(3612), - [anon_sym___leave] = ACTIONS(3612), - [anon_sym_not] = ACTIONS(3612), - [anon_sym_compl] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3614), - [anon_sym_sizeof] = ACTIONS(3612), - [anon_sym___alignof__] = ACTIONS(3612), - [anon_sym___alignof] = ACTIONS(3612), - [anon_sym__alignof] = ACTIONS(3612), - [anon_sym_alignof] = ACTIONS(3612), - [anon_sym__Alignof] = ACTIONS(3612), - [anon_sym_offsetof] = ACTIONS(3612), - [anon_sym__Generic] = ACTIONS(3612), - [anon_sym_typename] = ACTIONS(3612), - [anon_sym_asm] = ACTIONS(3612), - [anon_sym___asm__] = ACTIONS(3612), - [anon_sym___asm] = ACTIONS(3612), - [sym_number_literal] = ACTIONS(3614), - [anon_sym_L_SQUOTE] = ACTIONS(3614), - [anon_sym_u_SQUOTE] = ACTIONS(3614), - [anon_sym_U_SQUOTE] = ACTIONS(3614), - [anon_sym_u8_SQUOTE] = ACTIONS(3614), - [anon_sym_SQUOTE] = ACTIONS(3614), - [anon_sym_L_DQUOTE] = ACTIONS(3614), - [anon_sym_u_DQUOTE] = ACTIONS(3614), - [anon_sym_U_DQUOTE] = ACTIONS(3614), - [anon_sym_u8_DQUOTE] = ACTIONS(3614), - [anon_sym_DQUOTE] = ACTIONS(3614), - [sym_true] = ACTIONS(3612), - [sym_false] = ACTIONS(3612), - [anon_sym_NULL] = ACTIONS(3612), - [anon_sym_nullptr] = ACTIONS(3612), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3612), - [anon_sym_decltype] = ACTIONS(3612), - [anon_sym_explicit] = ACTIONS(3612), - [anon_sym_export] = ACTIONS(3612), - [anon_sym_module] = ACTIONS(3612), - [anon_sym_import] = ACTIONS(3612), - [anon_sym_template] = ACTIONS(3612), - [anon_sym_operator] = ACTIONS(3612), - [anon_sym_try] = ACTIONS(3612), - [anon_sym_delete] = ACTIONS(3612), - [anon_sym_throw] = ACTIONS(3612), - [anon_sym_namespace] = ACTIONS(3612), - [anon_sym_static_assert] = ACTIONS(3612), - [anon_sym_concept] = ACTIONS(3612), - [anon_sym_co_return] = ACTIONS(3612), - [anon_sym_co_yield] = ACTIONS(3612), - [anon_sym_R_DQUOTE] = ACTIONS(3614), - [anon_sym_LR_DQUOTE] = ACTIONS(3614), - [anon_sym_uR_DQUOTE] = ACTIONS(3614), - [anon_sym_UR_DQUOTE] = ACTIONS(3614), - [anon_sym_u8R_DQUOTE] = ACTIONS(3614), - [anon_sym_co_await] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3612), - [anon_sym_requires] = ACTIONS(3612), - [anon_sym_CARET_CARET] = ACTIONS(3614), - [anon_sym_LBRACK_COLON] = ACTIONS(3614), - [sym_this] = ACTIONS(3612), + [anon_sym_switch] = ACTIONS(3634), + [anon_sym_case] = ACTIONS(3634), + [anon_sym_default] = ACTIONS(3634), + [anon_sym_while] = ACTIONS(3634), + [anon_sym_do] = ACTIONS(3634), + [anon_sym_for] = ACTIONS(3634), + [anon_sym_return] = ACTIONS(3634), + [anon_sym_break] = ACTIONS(3634), + [anon_sym_continue] = ACTIONS(3634), + [anon_sym_goto] = ACTIONS(3634), + [anon_sym___try] = ACTIONS(3634), + [anon_sym___leave] = ACTIONS(3634), + [anon_sym_not] = ACTIONS(3634), + [anon_sym_compl] = ACTIONS(3634), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_sizeof] = ACTIONS(3634), + [anon_sym___alignof__] = ACTIONS(3634), + [anon_sym___alignof] = ACTIONS(3634), + [anon_sym__alignof] = ACTIONS(3634), + [anon_sym_alignof] = ACTIONS(3634), + [anon_sym__Alignof] = ACTIONS(3634), + [anon_sym_offsetof] = ACTIONS(3634), + [anon_sym__Generic] = ACTIONS(3634), + [anon_sym_typename] = ACTIONS(3634), + [anon_sym_asm] = ACTIONS(3634), + [anon_sym___asm__] = ACTIONS(3634), + [anon_sym___asm] = ACTIONS(3634), + [sym_number_literal] = ACTIONS(3636), + [anon_sym_L_SQUOTE] = ACTIONS(3636), + [anon_sym_u_SQUOTE] = ACTIONS(3636), + [anon_sym_U_SQUOTE] = ACTIONS(3636), + [anon_sym_u8_SQUOTE] = ACTIONS(3636), + [anon_sym_SQUOTE] = ACTIONS(3636), + [anon_sym_L_DQUOTE] = ACTIONS(3636), + [anon_sym_u_DQUOTE] = ACTIONS(3636), + [anon_sym_U_DQUOTE] = ACTIONS(3636), + [anon_sym_u8_DQUOTE] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(3636), + [sym_true] = ACTIONS(3634), + [sym_false] = ACTIONS(3634), + [anon_sym_NULL] = ACTIONS(3634), + [anon_sym_nullptr] = ACTIONS(3634), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3634), + [anon_sym_decltype] = ACTIONS(3634), + [anon_sym_explicit] = ACTIONS(3634), + [anon_sym_export] = ACTIONS(3634), + [anon_sym_module] = ACTIONS(3634), + [anon_sym_import] = ACTIONS(3634), + [anon_sym_template] = ACTIONS(3634), + [anon_sym_operator] = ACTIONS(3634), + [anon_sym_try] = ACTIONS(3634), + [anon_sym_delete] = ACTIONS(3634), + [anon_sym_throw] = ACTIONS(3634), + [anon_sym_namespace] = ACTIONS(3634), + [anon_sym_static_assert] = ACTIONS(3634), + [anon_sym_concept] = ACTIONS(3634), + [anon_sym_co_return] = ACTIONS(3634), + [anon_sym_co_yield] = ACTIONS(3634), + [anon_sym_R_DQUOTE] = ACTIONS(3636), + [anon_sym_LR_DQUOTE] = ACTIONS(3636), + [anon_sym_uR_DQUOTE] = ACTIONS(3636), + [anon_sym_UR_DQUOTE] = ACTIONS(3636), + [anon_sym_u8R_DQUOTE] = ACTIONS(3636), + [anon_sym_co_await] = ACTIONS(3634), + [anon_sym_new] = ACTIONS(3634), + [anon_sym_requires] = ACTIONS(3634), + [anon_sym_CARET_CARET] = ACTIONS(3636), + [anon_sym_LBRACK_COLON] = ACTIONS(3636), + [sym_this] = ACTIONS(3634), }, - [STATE(363)] = { - [ts_builtin_sym_end] = ACTIONS(3610), - [sym_identifier] = ACTIONS(3608), - [aux_sym_preproc_include_token1] = ACTIONS(3608), - [aux_sym_preproc_def_token1] = ACTIONS(3608), - [aux_sym_preproc_if_token1] = ACTIONS(3608), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3608), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3608), - [sym_preproc_directive] = ACTIONS(3608), - [anon_sym_LPAREN2] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3608), - [anon_sym_STAR] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3608), - [anon_sym_SEMI] = ACTIONS(3610), - [anon_sym___extension__] = ACTIONS(3608), - [anon_sym_typedef] = ACTIONS(3608), - [anon_sym_virtual] = ACTIONS(3608), - [anon_sym_extern] = ACTIONS(3608), - [anon_sym___attribute__] = ACTIONS(3608), - [anon_sym___attribute] = ACTIONS(3608), - [anon_sym_using] = ACTIONS(3608), - [anon_sym_COLON_COLON] = ACTIONS(3610), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3610), - [anon_sym___declspec] = ACTIONS(3608), - [anon_sym___based] = ACTIONS(3608), - [anon_sym___cdecl] = ACTIONS(3608), - [anon_sym___clrcall] = ACTIONS(3608), - [anon_sym___stdcall] = ACTIONS(3608), - [anon_sym___fastcall] = ACTIONS(3608), - [anon_sym___thiscall] = ACTIONS(3608), - [anon_sym___vectorcall] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_signed] = ACTIONS(3608), - [anon_sym_unsigned] = ACTIONS(3608), - [anon_sym_long] = ACTIONS(3608), - [anon_sym_short] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_static] = ACTIONS(3608), - [anon_sym_register] = ACTIONS(3608), - [anon_sym_inline] = ACTIONS(3608), - [anon_sym___inline] = ACTIONS(3608), - [anon_sym___inline__] = ACTIONS(3608), - [anon_sym___forceinline] = ACTIONS(3608), - [anon_sym_thread_local] = ACTIONS(3608), - [anon_sym___thread] = ACTIONS(3608), - [anon_sym_const] = ACTIONS(3608), - [anon_sym_constexpr] = ACTIONS(3608), - [anon_sym_volatile] = ACTIONS(3608), - [anon_sym_restrict] = ACTIONS(3608), - [anon_sym___restrict__] = ACTIONS(3608), - [anon_sym__Atomic] = ACTIONS(3608), - [anon_sym__Noreturn] = ACTIONS(3608), - [anon_sym_noreturn] = ACTIONS(3608), - [anon_sym__Nonnull] = ACTIONS(3608), - [anon_sym_mutable] = ACTIONS(3608), - [anon_sym_constinit] = ACTIONS(3608), - [anon_sym_consteval] = ACTIONS(3608), - [anon_sym_alignas] = ACTIONS(3608), - [anon_sym__Alignas] = ACTIONS(3608), - [sym_primitive_type] = ACTIONS(3608), - [anon_sym_enum] = ACTIONS(3608), - [anon_sym_class] = ACTIONS(3608), - [anon_sym_struct] = ACTIONS(3608), - [anon_sym_union] = ACTIONS(3608), - [anon_sym_if] = ACTIONS(3608), - [anon_sym_else] = ACTIONS(3608), - [anon_sym_switch] = ACTIONS(3608), - [anon_sym_case] = ACTIONS(3608), - [anon_sym_default] = ACTIONS(3608), - [anon_sym_while] = ACTIONS(3608), - [anon_sym_do] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3608), - [anon_sym_return] = ACTIONS(3608), - [anon_sym_break] = ACTIONS(3608), - [anon_sym_continue] = ACTIONS(3608), - [anon_sym_goto] = ACTIONS(3608), - [anon_sym___try] = ACTIONS(3608), - [anon_sym___leave] = ACTIONS(3608), - [anon_sym_not] = ACTIONS(3608), - [anon_sym_compl] = ACTIONS(3608), - [anon_sym_DASH_DASH] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3610), - [anon_sym_sizeof] = ACTIONS(3608), - [anon_sym___alignof__] = ACTIONS(3608), - [anon_sym___alignof] = ACTIONS(3608), - [anon_sym__alignof] = ACTIONS(3608), - [anon_sym_alignof] = ACTIONS(3608), - [anon_sym__Alignof] = ACTIONS(3608), - [anon_sym_offsetof] = ACTIONS(3608), - [anon_sym__Generic] = ACTIONS(3608), - [anon_sym_typename] = ACTIONS(3608), - [anon_sym_asm] = ACTIONS(3608), - [anon_sym___asm__] = ACTIONS(3608), - [anon_sym___asm] = ACTIONS(3608), - [sym_number_literal] = ACTIONS(3610), - [anon_sym_L_SQUOTE] = ACTIONS(3610), - [anon_sym_u_SQUOTE] = ACTIONS(3610), - [anon_sym_U_SQUOTE] = ACTIONS(3610), - [anon_sym_u8_SQUOTE] = ACTIONS(3610), - [anon_sym_SQUOTE] = ACTIONS(3610), - [anon_sym_L_DQUOTE] = ACTIONS(3610), - [anon_sym_u_DQUOTE] = ACTIONS(3610), - [anon_sym_U_DQUOTE] = ACTIONS(3610), - [anon_sym_u8_DQUOTE] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [sym_true] = ACTIONS(3608), - [sym_false] = ACTIONS(3608), - [anon_sym_NULL] = ACTIONS(3608), - [anon_sym_nullptr] = ACTIONS(3608), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3608), - [anon_sym_decltype] = ACTIONS(3608), - [anon_sym_explicit] = ACTIONS(3608), - [anon_sym_export] = ACTIONS(3608), - [anon_sym_module] = ACTIONS(3608), - [anon_sym_import] = ACTIONS(3608), - [anon_sym_template] = ACTIONS(3608), - [anon_sym_operator] = ACTIONS(3608), - [anon_sym_try] = ACTIONS(3608), - [anon_sym_delete] = ACTIONS(3608), - [anon_sym_throw] = ACTIONS(3608), - [anon_sym_namespace] = ACTIONS(3608), - [anon_sym_static_assert] = ACTIONS(3608), - [anon_sym_concept] = ACTIONS(3608), - [anon_sym_co_return] = ACTIONS(3608), - [anon_sym_co_yield] = ACTIONS(3608), - [anon_sym_catch] = ACTIONS(3608), - [anon_sym_R_DQUOTE] = ACTIONS(3610), - [anon_sym_LR_DQUOTE] = ACTIONS(3610), - [anon_sym_uR_DQUOTE] = ACTIONS(3610), - [anon_sym_UR_DQUOTE] = ACTIONS(3610), - [anon_sym_u8R_DQUOTE] = ACTIONS(3610), - [anon_sym_co_await] = ACTIONS(3608), - [anon_sym_new] = ACTIONS(3608), - [anon_sym_requires] = ACTIONS(3608), - [anon_sym_CARET_CARET] = ACTIONS(3610), - [anon_sym_LBRACK_COLON] = ACTIONS(3610), - [sym_this] = ACTIONS(3608), + [STATE(373)] = { + [sym_identifier] = ACTIONS(3638), + [aux_sym_preproc_include_token1] = ACTIONS(3638), + [aux_sym_preproc_def_token1] = ACTIONS(3638), + [aux_sym_preproc_if_token1] = ACTIONS(3638), + [aux_sym_preproc_if_token2] = ACTIONS(3638), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3638), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3638), + [aux_sym_preproc_else_token1] = ACTIONS(3638), + [aux_sym_preproc_elif_token1] = ACTIONS(3638), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3638), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3638), + [sym_preproc_directive] = ACTIONS(3638), + [anon_sym_LPAREN2] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3640), + [anon_sym_TILDE] = ACTIONS(3640), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym___extension__] = ACTIONS(3638), + [anon_sym_typedef] = ACTIONS(3638), + [anon_sym_virtual] = ACTIONS(3638), + [anon_sym_extern] = ACTIONS(3638), + [anon_sym___attribute__] = ACTIONS(3638), + [anon_sym___attribute] = ACTIONS(3638), + [anon_sym_using] = ACTIONS(3638), + [anon_sym_COLON_COLON] = ACTIONS(3640), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3640), + [anon_sym___declspec] = ACTIONS(3638), + [anon_sym___based] = ACTIONS(3638), + [anon_sym___cdecl] = ACTIONS(3638), + [anon_sym___clrcall] = ACTIONS(3638), + [anon_sym___stdcall] = ACTIONS(3638), + [anon_sym___fastcall] = ACTIONS(3638), + [anon_sym___thiscall] = ACTIONS(3638), + [anon_sym___vectorcall] = ACTIONS(3638), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_signed] = ACTIONS(3638), + [anon_sym_unsigned] = ACTIONS(3638), + [anon_sym_long] = ACTIONS(3638), + [anon_sym_short] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_static] = ACTIONS(3638), + [anon_sym_register] = ACTIONS(3638), + [anon_sym_inline] = ACTIONS(3638), + [anon_sym___inline] = ACTIONS(3638), + [anon_sym___inline__] = ACTIONS(3638), + [anon_sym___forceinline] = ACTIONS(3638), + [anon_sym_thread_local] = ACTIONS(3638), + [anon_sym___thread] = ACTIONS(3638), + [anon_sym_const] = ACTIONS(3638), + [anon_sym_constexpr] = ACTIONS(3638), + [anon_sym_volatile] = ACTIONS(3638), + [anon_sym_restrict] = ACTIONS(3638), + [anon_sym___restrict__] = ACTIONS(3638), + [anon_sym__Atomic] = ACTIONS(3638), + [anon_sym__Noreturn] = ACTIONS(3638), + [anon_sym_noreturn] = ACTIONS(3638), + [anon_sym__Nonnull] = ACTIONS(3638), + [anon_sym_mutable] = ACTIONS(3638), + [anon_sym_constinit] = ACTIONS(3638), + [anon_sym_consteval] = ACTIONS(3638), + [anon_sym_alignas] = ACTIONS(3638), + [anon_sym__Alignas] = ACTIONS(3638), + [sym_primitive_type] = ACTIONS(3638), + [anon_sym_enum] = ACTIONS(3638), + [anon_sym_class] = ACTIONS(3638), + [anon_sym_struct] = ACTIONS(3638), + [anon_sym_union] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_else] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_case] = ACTIONS(3638), + [anon_sym_default] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_break] = ACTIONS(3638), + [anon_sym_continue] = ACTIONS(3638), + [anon_sym_goto] = ACTIONS(3638), + [anon_sym___try] = ACTIONS(3638), + [anon_sym___leave] = ACTIONS(3638), + [anon_sym_not] = ACTIONS(3638), + [anon_sym_compl] = ACTIONS(3638), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_sizeof] = ACTIONS(3638), + [anon_sym___alignof__] = ACTIONS(3638), + [anon_sym___alignof] = ACTIONS(3638), + [anon_sym__alignof] = ACTIONS(3638), + [anon_sym_alignof] = ACTIONS(3638), + [anon_sym__Alignof] = ACTIONS(3638), + [anon_sym_offsetof] = ACTIONS(3638), + [anon_sym__Generic] = ACTIONS(3638), + [anon_sym_typename] = ACTIONS(3638), + [anon_sym_asm] = ACTIONS(3638), + [anon_sym___asm__] = ACTIONS(3638), + [anon_sym___asm] = ACTIONS(3638), + [sym_number_literal] = ACTIONS(3640), + [anon_sym_L_SQUOTE] = ACTIONS(3640), + [anon_sym_u_SQUOTE] = ACTIONS(3640), + [anon_sym_U_SQUOTE] = ACTIONS(3640), + [anon_sym_u8_SQUOTE] = ACTIONS(3640), + [anon_sym_SQUOTE] = ACTIONS(3640), + [anon_sym_L_DQUOTE] = ACTIONS(3640), + [anon_sym_u_DQUOTE] = ACTIONS(3640), + [anon_sym_U_DQUOTE] = ACTIONS(3640), + [anon_sym_u8_DQUOTE] = ACTIONS(3640), + [anon_sym_DQUOTE] = ACTIONS(3640), + [sym_true] = ACTIONS(3638), + [sym_false] = ACTIONS(3638), + [anon_sym_NULL] = ACTIONS(3638), + [anon_sym_nullptr] = ACTIONS(3638), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3638), + [anon_sym_decltype] = ACTIONS(3638), + [anon_sym_explicit] = ACTIONS(3638), + [anon_sym_export] = ACTIONS(3638), + [anon_sym_module] = ACTIONS(3638), + [anon_sym_import] = ACTIONS(3638), + [anon_sym_template] = ACTIONS(3638), + [anon_sym_operator] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_delete] = ACTIONS(3638), + [anon_sym_throw] = ACTIONS(3638), + [anon_sym_namespace] = ACTIONS(3638), + [anon_sym_static_assert] = ACTIONS(3638), + [anon_sym_concept] = ACTIONS(3638), + [anon_sym_co_return] = ACTIONS(3638), + [anon_sym_co_yield] = ACTIONS(3638), + [anon_sym_R_DQUOTE] = ACTIONS(3640), + [anon_sym_LR_DQUOTE] = ACTIONS(3640), + [anon_sym_uR_DQUOTE] = ACTIONS(3640), + [anon_sym_UR_DQUOTE] = ACTIONS(3640), + [anon_sym_u8R_DQUOTE] = ACTIONS(3640), + [anon_sym_co_await] = ACTIONS(3638), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_requires] = ACTIONS(3638), + [anon_sym_CARET_CARET] = ACTIONS(3640), + [anon_sym_LBRACK_COLON] = ACTIONS(3640), + [sym_this] = ACTIONS(3638), }, - [STATE(364)] = { - [sym_identifier] = ACTIONS(3636), - [aux_sym_preproc_include_token1] = ACTIONS(3636), - [aux_sym_preproc_def_token1] = ACTIONS(3636), - [aux_sym_preproc_if_token1] = ACTIONS(3636), - [aux_sym_preproc_if_token2] = ACTIONS(3636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3636), - [aux_sym_preproc_else_token1] = ACTIONS(3636), - [aux_sym_preproc_elif_token1] = ACTIONS(3636), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3636), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3636), - [sym_preproc_directive] = ACTIONS(3636), - [anon_sym_LPAREN2] = ACTIONS(3638), - [anon_sym_BANG] = ACTIONS(3638), - [anon_sym_TILDE] = ACTIONS(3638), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3638), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym___extension__] = ACTIONS(3636), - [anon_sym_typedef] = ACTIONS(3636), - [anon_sym_virtual] = ACTIONS(3636), - [anon_sym_extern] = ACTIONS(3636), - [anon_sym___attribute__] = ACTIONS(3636), - [anon_sym___attribute] = ACTIONS(3636), - [anon_sym_using] = ACTIONS(3636), - [anon_sym_COLON_COLON] = ACTIONS(3638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3638), - [anon_sym___declspec] = ACTIONS(3636), - [anon_sym___based] = ACTIONS(3636), - [anon_sym___cdecl] = ACTIONS(3636), - [anon_sym___clrcall] = ACTIONS(3636), - [anon_sym___stdcall] = ACTIONS(3636), - [anon_sym___fastcall] = ACTIONS(3636), - [anon_sym___thiscall] = ACTIONS(3636), - [anon_sym___vectorcall] = ACTIONS(3636), - [anon_sym_LBRACE] = ACTIONS(3638), - [anon_sym_signed] = ACTIONS(3636), - [anon_sym_unsigned] = ACTIONS(3636), - [anon_sym_long] = ACTIONS(3636), - [anon_sym_short] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_static] = ACTIONS(3636), - [anon_sym_register] = ACTIONS(3636), - [anon_sym_inline] = ACTIONS(3636), - [anon_sym___inline] = ACTIONS(3636), - [anon_sym___inline__] = ACTIONS(3636), - [anon_sym___forceinline] = ACTIONS(3636), - [anon_sym_thread_local] = ACTIONS(3636), - [anon_sym___thread] = ACTIONS(3636), - [anon_sym_const] = ACTIONS(3636), - [anon_sym_constexpr] = ACTIONS(3636), - [anon_sym_volatile] = ACTIONS(3636), - [anon_sym_restrict] = ACTIONS(3636), - [anon_sym___restrict__] = ACTIONS(3636), - [anon_sym__Atomic] = ACTIONS(3636), - [anon_sym__Noreturn] = ACTIONS(3636), - [anon_sym_noreturn] = ACTIONS(3636), - [anon_sym__Nonnull] = ACTIONS(3636), - [anon_sym_mutable] = ACTIONS(3636), - [anon_sym_constinit] = ACTIONS(3636), - [anon_sym_consteval] = ACTIONS(3636), - [anon_sym_alignas] = ACTIONS(3636), - [anon_sym__Alignas] = ACTIONS(3636), - [sym_primitive_type] = ACTIONS(3636), - [anon_sym_enum] = ACTIONS(3636), - [anon_sym_class] = ACTIONS(3636), - [anon_sym_struct] = ACTIONS(3636), - [anon_sym_union] = ACTIONS(3636), - [anon_sym_if] = ACTIONS(3636), - [anon_sym_else] = ACTIONS(3636), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_case] = ACTIONS(3636), - [anon_sym_default] = ACTIONS(3636), - [anon_sym_while] = ACTIONS(3636), - [anon_sym_do] = ACTIONS(3636), - [anon_sym_for] = ACTIONS(3636), - [anon_sym_return] = ACTIONS(3636), - [anon_sym_break] = ACTIONS(3636), - [anon_sym_continue] = ACTIONS(3636), - [anon_sym_goto] = ACTIONS(3636), - [anon_sym___try] = ACTIONS(3636), - [anon_sym___leave] = ACTIONS(3636), - [anon_sym_not] = ACTIONS(3636), - [anon_sym_compl] = ACTIONS(3636), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_sizeof] = ACTIONS(3636), - [anon_sym___alignof__] = ACTIONS(3636), - [anon_sym___alignof] = ACTIONS(3636), - [anon_sym__alignof] = ACTIONS(3636), - [anon_sym_alignof] = ACTIONS(3636), - [anon_sym__Alignof] = ACTIONS(3636), - [anon_sym_offsetof] = ACTIONS(3636), - [anon_sym__Generic] = ACTIONS(3636), - [anon_sym_typename] = ACTIONS(3636), - [anon_sym_asm] = ACTIONS(3636), - [anon_sym___asm__] = ACTIONS(3636), - [anon_sym___asm] = ACTIONS(3636), - [sym_number_literal] = ACTIONS(3638), - [anon_sym_L_SQUOTE] = ACTIONS(3638), - [anon_sym_u_SQUOTE] = ACTIONS(3638), - [anon_sym_U_SQUOTE] = ACTIONS(3638), - [anon_sym_u8_SQUOTE] = ACTIONS(3638), - [anon_sym_SQUOTE] = ACTIONS(3638), - [anon_sym_L_DQUOTE] = ACTIONS(3638), - [anon_sym_u_DQUOTE] = ACTIONS(3638), - [anon_sym_U_DQUOTE] = ACTIONS(3638), - [anon_sym_u8_DQUOTE] = ACTIONS(3638), - [anon_sym_DQUOTE] = ACTIONS(3638), - [sym_true] = ACTIONS(3636), - [sym_false] = ACTIONS(3636), - [anon_sym_NULL] = ACTIONS(3636), - [anon_sym_nullptr] = ACTIONS(3636), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3636), - [anon_sym_decltype] = ACTIONS(3636), - [anon_sym_explicit] = ACTIONS(3636), - [anon_sym_template] = ACTIONS(3636), - [anon_sym_operator] = ACTIONS(3636), - [anon_sym_try] = ACTIONS(3636), - [anon_sym_delete] = ACTIONS(3636), - [anon_sym_throw] = ACTIONS(3636), - [anon_sym_namespace] = ACTIONS(3636), - [anon_sym_static_assert] = ACTIONS(3636), - [anon_sym_concept] = ACTIONS(3636), - [anon_sym_co_return] = ACTIONS(3636), - [anon_sym_co_yield] = ACTIONS(3636), - [anon_sym_R_DQUOTE] = ACTIONS(3638), - [anon_sym_LR_DQUOTE] = ACTIONS(3638), - [anon_sym_uR_DQUOTE] = ACTIONS(3638), - [anon_sym_UR_DQUOTE] = ACTIONS(3638), - [anon_sym_u8R_DQUOTE] = ACTIONS(3638), - [anon_sym_co_await] = ACTIONS(3636), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_requires] = ACTIONS(3636), - [anon_sym_CARET_CARET] = ACTIONS(3638), - [anon_sym_LBRACK_COLON] = ACTIONS(3638), - [sym_this] = ACTIONS(3636), + [STATE(374)] = { + [sym_identifier] = ACTIONS(3642), + [aux_sym_preproc_include_token1] = ACTIONS(3642), + [aux_sym_preproc_def_token1] = ACTIONS(3642), + [aux_sym_preproc_if_token1] = ACTIONS(3642), + [aux_sym_preproc_if_token2] = ACTIONS(3642), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3642), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3642), + [aux_sym_preproc_else_token1] = ACTIONS(3642), + [aux_sym_preproc_elif_token1] = ACTIONS(3642), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3642), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3642), + [sym_preproc_directive] = ACTIONS(3642), + [anon_sym_LPAREN2] = ACTIONS(3644), + [anon_sym_BANG] = ACTIONS(3644), + [anon_sym_TILDE] = ACTIONS(3644), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(3644), + [anon_sym_AMP_AMP] = ACTIONS(3644), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym___extension__] = ACTIONS(3642), + [anon_sym_typedef] = ACTIONS(3642), + [anon_sym_virtual] = ACTIONS(3642), + [anon_sym_extern] = ACTIONS(3642), + [anon_sym___attribute__] = ACTIONS(3642), + [anon_sym___attribute] = ACTIONS(3642), + [anon_sym_using] = ACTIONS(3642), + [anon_sym_COLON_COLON] = ACTIONS(3644), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3644), + [anon_sym___declspec] = ACTIONS(3642), + [anon_sym___based] = ACTIONS(3642), + [anon_sym___cdecl] = ACTIONS(3642), + [anon_sym___clrcall] = ACTIONS(3642), + [anon_sym___stdcall] = ACTIONS(3642), + [anon_sym___fastcall] = ACTIONS(3642), + [anon_sym___thiscall] = ACTIONS(3642), + [anon_sym___vectorcall] = ACTIONS(3642), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_signed] = ACTIONS(3642), + [anon_sym_unsigned] = ACTIONS(3642), + [anon_sym_long] = ACTIONS(3642), + [anon_sym_short] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_static] = ACTIONS(3642), + [anon_sym_register] = ACTIONS(3642), + [anon_sym_inline] = ACTIONS(3642), + [anon_sym___inline] = ACTIONS(3642), + [anon_sym___inline__] = ACTIONS(3642), + [anon_sym___forceinline] = ACTIONS(3642), + [anon_sym_thread_local] = ACTIONS(3642), + [anon_sym___thread] = ACTIONS(3642), + [anon_sym_const] = ACTIONS(3642), + [anon_sym_constexpr] = ACTIONS(3642), + [anon_sym_volatile] = ACTIONS(3642), + [anon_sym_restrict] = ACTIONS(3642), + [anon_sym___restrict__] = ACTIONS(3642), + [anon_sym__Atomic] = ACTIONS(3642), + [anon_sym__Noreturn] = ACTIONS(3642), + [anon_sym_noreturn] = ACTIONS(3642), + [anon_sym__Nonnull] = ACTIONS(3642), + [anon_sym_mutable] = ACTIONS(3642), + [anon_sym_constinit] = ACTIONS(3642), + [anon_sym_consteval] = ACTIONS(3642), + [anon_sym_alignas] = ACTIONS(3642), + [anon_sym__Alignas] = ACTIONS(3642), + [sym_primitive_type] = ACTIONS(3642), + [anon_sym_enum] = ACTIONS(3642), + [anon_sym_class] = ACTIONS(3642), + [anon_sym_struct] = ACTIONS(3642), + [anon_sym_union] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_else] = ACTIONS(3642), + [anon_sym_switch] = ACTIONS(3642), + [anon_sym_case] = ACTIONS(3642), + [anon_sym_default] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_break] = ACTIONS(3642), + [anon_sym_continue] = ACTIONS(3642), + [anon_sym_goto] = ACTIONS(3642), + [anon_sym___try] = ACTIONS(3642), + [anon_sym___leave] = ACTIONS(3642), + [anon_sym_not] = ACTIONS(3642), + [anon_sym_compl] = ACTIONS(3642), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_sizeof] = ACTIONS(3642), + [anon_sym___alignof__] = ACTIONS(3642), + [anon_sym___alignof] = ACTIONS(3642), + [anon_sym__alignof] = ACTIONS(3642), + [anon_sym_alignof] = ACTIONS(3642), + [anon_sym__Alignof] = ACTIONS(3642), + [anon_sym_offsetof] = ACTIONS(3642), + [anon_sym__Generic] = ACTIONS(3642), + [anon_sym_typename] = ACTIONS(3642), + [anon_sym_asm] = ACTIONS(3642), + [anon_sym___asm__] = ACTIONS(3642), + [anon_sym___asm] = ACTIONS(3642), + [sym_number_literal] = ACTIONS(3644), + [anon_sym_L_SQUOTE] = ACTIONS(3644), + [anon_sym_u_SQUOTE] = ACTIONS(3644), + [anon_sym_U_SQUOTE] = ACTIONS(3644), + [anon_sym_u8_SQUOTE] = ACTIONS(3644), + [anon_sym_SQUOTE] = ACTIONS(3644), + [anon_sym_L_DQUOTE] = ACTIONS(3644), + [anon_sym_u_DQUOTE] = ACTIONS(3644), + [anon_sym_U_DQUOTE] = ACTIONS(3644), + [anon_sym_u8_DQUOTE] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(3644), + [sym_true] = ACTIONS(3642), + [sym_false] = ACTIONS(3642), + [anon_sym_NULL] = ACTIONS(3642), + [anon_sym_nullptr] = ACTIONS(3642), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3642), + [anon_sym_decltype] = ACTIONS(3642), + [anon_sym_explicit] = ACTIONS(3642), + [anon_sym_export] = ACTIONS(3642), + [anon_sym_module] = ACTIONS(3642), + [anon_sym_import] = ACTIONS(3642), + [anon_sym_template] = ACTIONS(3642), + [anon_sym_operator] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_delete] = ACTIONS(3642), + [anon_sym_throw] = ACTIONS(3642), + [anon_sym_namespace] = ACTIONS(3642), + [anon_sym_static_assert] = ACTIONS(3642), + [anon_sym_concept] = ACTIONS(3642), + [anon_sym_co_return] = ACTIONS(3642), + [anon_sym_co_yield] = ACTIONS(3642), + [anon_sym_R_DQUOTE] = ACTIONS(3644), + [anon_sym_LR_DQUOTE] = ACTIONS(3644), + [anon_sym_uR_DQUOTE] = ACTIONS(3644), + [anon_sym_UR_DQUOTE] = ACTIONS(3644), + [anon_sym_u8R_DQUOTE] = ACTIONS(3644), + [anon_sym_co_await] = ACTIONS(3642), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_requires] = ACTIONS(3642), + [anon_sym_CARET_CARET] = ACTIONS(3644), + [anon_sym_LBRACK_COLON] = ACTIONS(3644), + [sym_this] = ACTIONS(3642), }, - [STATE(365)] = { - [sym_identifier] = ACTIONS(3640), - [aux_sym_preproc_include_token1] = ACTIONS(3640), - [aux_sym_preproc_def_token1] = ACTIONS(3640), - [aux_sym_preproc_if_token1] = ACTIONS(3640), - [aux_sym_preproc_if_token2] = ACTIONS(3640), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3640), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3640), - [aux_sym_preproc_else_token1] = ACTIONS(3640), - [aux_sym_preproc_elif_token1] = ACTIONS(3640), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3640), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3640), - [sym_preproc_directive] = ACTIONS(3640), - [anon_sym_LPAREN2] = ACTIONS(3642), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(3642), - [anon_sym_AMP_AMP] = ACTIONS(3642), - [anon_sym_AMP] = ACTIONS(3640), - [anon_sym_SEMI] = ACTIONS(3642), - [anon_sym___extension__] = ACTIONS(3640), - [anon_sym_typedef] = ACTIONS(3640), - [anon_sym_virtual] = ACTIONS(3640), - [anon_sym_extern] = ACTIONS(3640), - [anon_sym___attribute__] = ACTIONS(3640), - [anon_sym___attribute] = ACTIONS(3640), - [anon_sym_using] = ACTIONS(3640), - [anon_sym_COLON_COLON] = ACTIONS(3642), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), - [anon_sym___declspec] = ACTIONS(3640), - [anon_sym___based] = ACTIONS(3640), - [anon_sym___cdecl] = ACTIONS(3640), - [anon_sym___clrcall] = ACTIONS(3640), - [anon_sym___stdcall] = ACTIONS(3640), - [anon_sym___fastcall] = ACTIONS(3640), - [anon_sym___thiscall] = ACTIONS(3640), - [anon_sym___vectorcall] = ACTIONS(3640), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_signed] = ACTIONS(3640), - [anon_sym_unsigned] = ACTIONS(3640), - [anon_sym_long] = ACTIONS(3640), - [anon_sym_short] = ACTIONS(3640), - [anon_sym_LBRACK] = ACTIONS(3640), - [anon_sym_static] = ACTIONS(3640), - [anon_sym_register] = ACTIONS(3640), - [anon_sym_inline] = ACTIONS(3640), - [anon_sym___inline] = ACTIONS(3640), - [anon_sym___inline__] = ACTIONS(3640), - [anon_sym___forceinline] = ACTIONS(3640), - [anon_sym_thread_local] = ACTIONS(3640), - [anon_sym___thread] = ACTIONS(3640), - [anon_sym_const] = ACTIONS(3640), - [anon_sym_constexpr] = ACTIONS(3640), - [anon_sym_volatile] = ACTIONS(3640), - [anon_sym_restrict] = ACTIONS(3640), - [anon_sym___restrict__] = ACTIONS(3640), - [anon_sym__Atomic] = ACTIONS(3640), - [anon_sym__Noreturn] = ACTIONS(3640), - [anon_sym_noreturn] = ACTIONS(3640), - [anon_sym__Nonnull] = ACTIONS(3640), - [anon_sym_mutable] = ACTIONS(3640), - [anon_sym_constinit] = ACTIONS(3640), - [anon_sym_consteval] = ACTIONS(3640), - [anon_sym_alignas] = ACTIONS(3640), - [anon_sym__Alignas] = ACTIONS(3640), - [sym_primitive_type] = ACTIONS(3640), - [anon_sym_enum] = ACTIONS(3640), - [anon_sym_class] = ACTIONS(3640), - [anon_sym_struct] = ACTIONS(3640), - [anon_sym_union] = ACTIONS(3640), - [anon_sym_if] = ACTIONS(3640), - [anon_sym_else] = ACTIONS(3640), - [anon_sym_switch] = ACTIONS(3640), - [anon_sym_case] = ACTIONS(3640), - [anon_sym_default] = ACTIONS(3640), - [anon_sym_while] = ACTIONS(3640), - [anon_sym_do] = ACTIONS(3640), - [anon_sym_for] = ACTIONS(3640), - [anon_sym_return] = ACTIONS(3640), - [anon_sym_break] = ACTIONS(3640), - [anon_sym_continue] = ACTIONS(3640), - [anon_sym_goto] = ACTIONS(3640), - [anon_sym___try] = ACTIONS(3640), - [anon_sym___leave] = ACTIONS(3640), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(3642), - [anon_sym_PLUS_PLUS] = ACTIONS(3642), - [anon_sym_sizeof] = ACTIONS(3640), - [anon_sym___alignof__] = ACTIONS(3640), - [anon_sym___alignof] = ACTIONS(3640), - [anon_sym__alignof] = ACTIONS(3640), - [anon_sym_alignof] = ACTIONS(3640), - [anon_sym__Alignof] = ACTIONS(3640), - [anon_sym_offsetof] = ACTIONS(3640), - [anon_sym__Generic] = ACTIONS(3640), - [anon_sym_typename] = ACTIONS(3640), - [anon_sym_asm] = ACTIONS(3640), - [anon_sym___asm__] = ACTIONS(3640), - [anon_sym___asm] = ACTIONS(3640), - [sym_number_literal] = ACTIONS(3642), - [anon_sym_L_SQUOTE] = ACTIONS(3642), - [anon_sym_u_SQUOTE] = ACTIONS(3642), - [anon_sym_U_SQUOTE] = ACTIONS(3642), - [anon_sym_u8_SQUOTE] = ACTIONS(3642), - [anon_sym_SQUOTE] = ACTIONS(3642), - [anon_sym_L_DQUOTE] = ACTIONS(3642), - [anon_sym_u_DQUOTE] = ACTIONS(3642), - [anon_sym_U_DQUOTE] = ACTIONS(3642), - [anon_sym_u8_DQUOTE] = ACTIONS(3642), - [anon_sym_DQUOTE] = ACTIONS(3642), - [sym_true] = ACTIONS(3640), - [sym_false] = ACTIONS(3640), - [anon_sym_NULL] = ACTIONS(3640), - [anon_sym_nullptr] = ACTIONS(3640), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3640), - [anon_sym_decltype] = ACTIONS(3640), - [anon_sym_explicit] = ACTIONS(3640), - [anon_sym_template] = ACTIONS(3640), - [anon_sym_operator] = ACTIONS(3640), - [anon_sym_try] = ACTIONS(3640), - [anon_sym_delete] = ACTIONS(3640), - [anon_sym_throw] = ACTIONS(3640), - [anon_sym_namespace] = ACTIONS(3640), - [anon_sym_static_assert] = ACTIONS(3640), - [anon_sym_concept] = ACTIONS(3640), - [anon_sym_co_return] = ACTIONS(3640), - [anon_sym_co_yield] = ACTIONS(3640), - [anon_sym_R_DQUOTE] = ACTIONS(3642), - [anon_sym_LR_DQUOTE] = ACTIONS(3642), - [anon_sym_uR_DQUOTE] = ACTIONS(3642), - [anon_sym_UR_DQUOTE] = ACTIONS(3642), - [anon_sym_u8R_DQUOTE] = ACTIONS(3642), - [anon_sym_co_await] = ACTIONS(3640), - [anon_sym_new] = ACTIONS(3640), - [anon_sym_requires] = ACTIONS(3640), - [anon_sym_CARET_CARET] = ACTIONS(3642), - [anon_sym_LBRACK_COLON] = ACTIONS(3642), - [sym_this] = ACTIONS(3640), + [STATE(375)] = { + [sym_identifier] = ACTIONS(3646), + [aux_sym_preproc_include_token1] = ACTIONS(3646), + [aux_sym_preproc_def_token1] = ACTIONS(3646), + [aux_sym_preproc_if_token1] = ACTIONS(3646), + [aux_sym_preproc_if_token2] = ACTIONS(3646), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3646), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3646), + [aux_sym_preproc_else_token1] = ACTIONS(3646), + [aux_sym_preproc_elif_token1] = ACTIONS(3646), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3646), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3646), + [sym_preproc_directive] = ACTIONS(3646), + [anon_sym_LPAREN2] = ACTIONS(3648), + [anon_sym_BANG] = ACTIONS(3648), + [anon_sym_TILDE] = ACTIONS(3648), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_AMP_AMP] = ACTIONS(3648), + [anon_sym_AMP] = ACTIONS(3646), + [anon_sym_SEMI] = ACTIONS(3648), + [anon_sym___extension__] = ACTIONS(3646), + [anon_sym_typedef] = ACTIONS(3646), + [anon_sym_virtual] = ACTIONS(3646), + [anon_sym_extern] = ACTIONS(3646), + [anon_sym___attribute__] = ACTIONS(3646), + [anon_sym___attribute] = ACTIONS(3646), + [anon_sym_using] = ACTIONS(3646), + [anon_sym_COLON_COLON] = ACTIONS(3648), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3648), + [anon_sym___declspec] = ACTIONS(3646), + [anon_sym___based] = ACTIONS(3646), + [anon_sym___cdecl] = ACTIONS(3646), + [anon_sym___clrcall] = ACTIONS(3646), + [anon_sym___stdcall] = ACTIONS(3646), + [anon_sym___fastcall] = ACTIONS(3646), + [anon_sym___thiscall] = ACTIONS(3646), + [anon_sym___vectorcall] = ACTIONS(3646), + [anon_sym_LBRACE] = ACTIONS(3648), + [anon_sym_signed] = ACTIONS(3646), + [anon_sym_unsigned] = ACTIONS(3646), + [anon_sym_long] = ACTIONS(3646), + [anon_sym_short] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_static] = ACTIONS(3646), + [anon_sym_register] = ACTIONS(3646), + [anon_sym_inline] = ACTIONS(3646), + [anon_sym___inline] = ACTIONS(3646), + [anon_sym___inline__] = ACTIONS(3646), + [anon_sym___forceinline] = ACTIONS(3646), + [anon_sym_thread_local] = ACTIONS(3646), + [anon_sym___thread] = ACTIONS(3646), + [anon_sym_const] = ACTIONS(3646), + [anon_sym_constexpr] = ACTIONS(3646), + [anon_sym_volatile] = ACTIONS(3646), + [anon_sym_restrict] = ACTIONS(3646), + [anon_sym___restrict__] = ACTIONS(3646), + [anon_sym__Atomic] = ACTIONS(3646), + [anon_sym__Noreturn] = ACTIONS(3646), + [anon_sym_noreturn] = ACTIONS(3646), + [anon_sym__Nonnull] = ACTIONS(3646), + [anon_sym_mutable] = ACTIONS(3646), + [anon_sym_constinit] = ACTIONS(3646), + [anon_sym_consteval] = ACTIONS(3646), + [anon_sym_alignas] = ACTIONS(3646), + [anon_sym__Alignas] = ACTIONS(3646), + [sym_primitive_type] = ACTIONS(3646), + [anon_sym_enum] = ACTIONS(3646), + [anon_sym_class] = ACTIONS(3646), + [anon_sym_struct] = ACTIONS(3646), + [anon_sym_union] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_else] = ACTIONS(3646), + [anon_sym_switch] = ACTIONS(3646), + [anon_sym_case] = ACTIONS(3646), + [anon_sym_default] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_break] = ACTIONS(3646), + [anon_sym_continue] = ACTIONS(3646), + [anon_sym_goto] = ACTIONS(3646), + [anon_sym___try] = ACTIONS(3646), + [anon_sym___leave] = ACTIONS(3646), + [anon_sym_not] = ACTIONS(3646), + [anon_sym_compl] = ACTIONS(3646), + [anon_sym_DASH_DASH] = ACTIONS(3648), + [anon_sym_PLUS_PLUS] = ACTIONS(3648), + [anon_sym_sizeof] = ACTIONS(3646), + [anon_sym___alignof__] = ACTIONS(3646), + [anon_sym___alignof] = ACTIONS(3646), + [anon_sym__alignof] = ACTIONS(3646), + [anon_sym_alignof] = ACTIONS(3646), + [anon_sym__Alignof] = ACTIONS(3646), + [anon_sym_offsetof] = ACTIONS(3646), + [anon_sym__Generic] = ACTIONS(3646), + [anon_sym_typename] = ACTIONS(3646), + [anon_sym_asm] = ACTIONS(3646), + [anon_sym___asm__] = ACTIONS(3646), + [anon_sym___asm] = ACTIONS(3646), + [sym_number_literal] = ACTIONS(3648), + [anon_sym_L_SQUOTE] = ACTIONS(3648), + [anon_sym_u_SQUOTE] = ACTIONS(3648), + [anon_sym_U_SQUOTE] = ACTIONS(3648), + [anon_sym_u8_SQUOTE] = ACTIONS(3648), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_L_DQUOTE] = ACTIONS(3648), + [anon_sym_u_DQUOTE] = ACTIONS(3648), + [anon_sym_U_DQUOTE] = ACTIONS(3648), + [anon_sym_u8_DQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3648), + [sym_true] = ACTIONS(3646), + [sym_false] = ACTIONS(3646), + [anon_sym_NULL] = ACTIONS(3646), + [anon_sym_nullptr] = ACTIONS(3646), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3646), + [anon_sym_decltype] = ACTIONS(3646), + [anon_sym_explicit] = ACTIONS(3646), + [anon_sym_export] = ACTIONS(3646), + [anon_sym_module] = ACTIONS(3646), + [anon_sym_import] = ACTIONS(3646), + [anon_sym_template] = ACTIONS(3646), + [anon_sym_operator] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_delete] = ACTIONS(3646), + [anon_sym_throw] = ACTIONS(3646), + [anon_sym_namespace] = ACTIONS(3646), + [anon_sym_static_assert] = ACTIONS(3646), + [anon_sym_concept] = ACTIONS(3646), + [anon_sym_co_return] = ACTIONS(3646), + [anon_sym_co_yield] = ACTIONS(3646), + [anon_sym_R_DQUOTE] = ACTIONS(3648), + [anon_sym_LR_DQUOTE] = ACTIONS(3648), + [anon_sym_uR_DQUOTE] = ACTIONS(3648), + [anon_sym_UR_DQUOTE] = ACTIONS(3648), + [anon_sym_u8R_DQUOTE] = ACTIONS(3648), + [anon_sym_co_await] = ACTIONS(3646), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_requires] = ACTIONS(3646), + [anon_sym_CARET_CARET] = ACTIONS(3648), + [anon_sym_LBRACK_COLON] = ACTIONS(3648), + [sym_this] = ACTIONS(3646), }, - [STATE(366)] = { - [sym_identifier] = ACTIONS(3644), - [aux_sym_preproc_include_token1] = ACTIONS(3644), - [aux_sym_preproc_def_token1] = ACTIONS(3644), - [aux_sym_preproc_if_token1] = ACTIONS(3644), - [aux_sym_preproc_if_token2] = ACTIONS(3644), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3644), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3644), - [aux_sym_preproc_else_token1] = ACTIONS(3644), - [aux_sym_preproc_elif_token1] = ACTIONS(3644), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3644), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3644), - [sym_preproc_directive] = ACTIONS(3644), - [anon_sym_LPAREN2] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3646), - [anon_sym_TILDE] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3646), - [anon_sym_AMP_AMP] = ACTIONS(3646), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_SEMI] = ACTIONS(3646), - [anon_sym___extension__] = ACTIONS(3644), - [anon_sym_typedef] = ACTIONS(3644), - [anon_sym_virtual] = ACTIONS(3644), - [anon_sym_extern] = ACTIONS(3644), - [anon_sym___attribute__] = ACTIONS(3644), - [anon_sym___attribute] = ACTIONS(3644), - [anon_sym_using] = ACTIONS(3644), - [anon_sym_COLON_COLON] = ACTIONS(3646), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), - [anon_sym___declspec] = ACTIONS(3644), - [anon_sym___based] = ACTIONS(3644), - [anon_sym___cdecl] = ACTIONS(3644), - [anon_sym___clrcall] = ACTIONS(3644), - [anon_sym___stdcall] = ACTIONS(3644), - [anon_sym___fastcall] = ACTIONS(3644), - [anon_sym___thiscall] = ACTIONS(3644), - [anon_sym___vectorcall] = ACTIONS(3644), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_signed] = ACTIONS(3644), - [anon_sym_unsigned] = ACTIONS(3644), - [anon_sym_long] = ACTIONS(3644), - [anon_sym_short] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(3644), - [anon_sym_static] = ACTIONS(3644), - [anon_sym_register] = ACTIONS(3644), - [anon_sym_inline] = ACTIONS(3644), - [anon_sym___inline] = ACTIONS(3644), - [anon_sym___inline__] = ACTIONS(3644), - [anon_sym___forceinline] = ACTIONS(3644), - [anon_sym_thread_local] = ACTIONS(3644), - [anon_sym___thread] = ACTIONS(3644), - [anon_sym_const] = ACTIONS(3644), - [anon_sym_constexpr] = ACTIONS(3644), - [anon_sym_volatile] = ACTIONS(3644), - [anon_sym_restrict] = ACTIONS(3644), - [anon_sym___restrict__] = ACTIONS(3644), - [anon_sym__Atomic] = ACTIONS(3644), - [anon_sym__Noreturn] = ACTIONS(3644), - [anon_sym_noreturn] = ACTIONS(3644), - [anon_sym__Nonnull] = ACTIONS(3644), - [anon_sym_mutable] = ACTIONS(3644), - [anon_sym_constinit] = ACTIONS(3644), - [anon_sym_consteval] = ACTIONS(3644), - [anon_sym_alignas] = ACTIONS(3644), - [anon_sym__Alignas] = ACTIONS(3644), - [sym_primitive_type] = ACTIONS(3644), - [anon_sym_enum] = ACTIONS(3644), - [anon_sym_class] = ACTIONS(3644), - [anon_sym_struct] = ACTIONS(3644), - [anon_sym_union] = ACTIONS(3644), - [anon_sym_if] = ACTIONS(3644), - [anon_sym_else] = ACTIONS(3644), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_case] = ACTIONS(3644), - [anon_sym_default] = ACTIONS(3644), - [anon_sym_while] = ACTIONS(3644), - [anon_sym_do] = ACTIONS(3644), - [anon_sym_for] = ACTIONS(3644), - [anon_sym_return] = ACTIONS(3644), - [anon_sym_break] = ACTIONS(3644), - [anon_sym_continue] = ACTIONS(3644), - [anon_sym_goto] = ACTIONS(3644), - [anon_sym___try] = ACTIONS(3644), - [anon_sym___leave] = ACTIONS(3644), - [anon_sym_not] = ACTIONS(3644), - [anon_sym_compl] = ACTIONS(3644), - [anon_sym_DASH_DASH] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3646), - [anon_sym_sizeof] = ACTIONS(3644), - [anon_sym___alignof__] = ACTIONS(3644), - [anon_sym___alignof] = ACTIONS(3644), - [anon_sym__alignof] = ACTIONS(3644), - [anon_sym_alignof] = ACTIONS(3644), - [anon_sym__Alignof] = ACTIONS(3644), - [anon_sym_offsetof] = ACTIONS(3644), - [anon_sym__Generic] = ACTIONS(3644), - [anon_sym_typename] = ACTIONS(3644), - [anon_sym_asm] = ACTIONS(3644), - [anon_sym___asm__] = ACTIONS(3644), - [anon_sym___asm] = ACTIONS(3644), - [sym_number_literal] = ACTIONS(3646), - [anon_sym_L_SQUOTE] = ACTIONS(3646), - [anon_sym_u_SQUOTE] = ACTIONS(3646), - [anon_sym_U_SQUOTE] = ACTIONS(3646), - [anon_sym_u8_SQUOTE] = ACTIONS(3646), - [anon_sym_SQUOTE] = ACTIONS(3646), - [anon_sym_L_DQUOTE] = ACTIONS(3646), - [anon_sym_u_DQUOTE] = ACTIONS(3646), - [anon_sym_U_DQUOTE] = ACTIONS(3646), - [anon_sym_u8_DQUOTE] = ACTIONS(3646), - [anon_sym_DQUOTE] = ACTIONS(3646), - [sym_true] = ACTIONS(3644), - [sym_false] = ACTIONS(3644), - [anon_sym_NULL] = ACTIONS(3644), - [anon_sym_nullptr] = ACTIONS(3644), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3644), - [anon_sym_decltype] = ACTIONS(3644), - [anon_sym_explicit] = ACTIONS(3644), - [anon_sym_template] = ACTIONS(3644), - [anon_sym_operator] = ACTIONS(3644), - [anon_sym_try] = ACTIONS(3644), - [anon_sym_delete] = ACTIONS(3644), - [anon_sym_throw] = ACTIONS(3644), - [anon_sym_namespace] = ACTIONS(3644), - [anon_sym_static_assert] = ACTIONS(3644), - [anon_sym_concept] = ACTIONS(3644), - [anon_sym_co_return] = ACTIONS(3644), - [anon_sym_co_yield] = ACTIONS(3644), - [anon_sym_R_DQUOTE] = ACTIONS(3646), - [anon_sym_LR_DQUOTE] = ACTIONS(3646), - [anon_sym_uR_DQUOTE] = ACTIONS(3646), - [anon_sym_UR_DQUOTE] = ACTIONS(3646), - [anon_sym_u8R_DQUOTE] = ACTIONS(3646), - [anon_sym_co_await] = ACTIONS(3644), - [anon_sym_new] = ACTIONS(3644), - [anon_sym_requires] = ACTIONS(3644), - [anon_sym_CARET_CARET] = ACTIONS(3646), - [anon_sym_LBRACK_COLON] = ACTIONS(3646), - [sym_this] = ACTIONS(3644), + [STATE(376)] = { + [sym_identifier] = ACTIONS(3650), + [aux_sym_preproc_include_token1] = ACTIONS(3650), + [aux_sym_preproc_def_token1] = ACTIONS(3650), + [aux_sym_preproc_if_token1] = ACTIONS(3650), + [aux_sym_preproc_if_token2] = ACTIONS(3650), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3650), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3650), + [aux_sym_preproc_else_token1] = ACTIONS(3650), + [aux_sym_preproc_elif_token1] = ACTIONS(3650), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3650), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3650), + [sym_preproc_directive] = ACTIONS(3650), + [anon_sym_LPAREN2] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3652), + [anon_sym_TILDE] = ACTIONS(3652), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_STAR] = ACTIONS(3652), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_AMP] = ACTIONS(3650), + [anon_sym_SEMI] = ACTIONS(3652), + [anon_sym___extension__] = ACTIONS(3650), + [anon_sym_typedef] = ACTIONS(3650), + [anon_sym_virtual] = ACTIONS(3650), + [anon_sym_extern] = ACTIONS(3650), + [anon_sym___attribute__] = ACTIONS(3650), + [anon_sym___attribute] = ACTIONS(3650), + [anon_sym_using] = ACTIONS(3650), + [anon_sym_COLON_COLON] = ACTIONS(3652), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3652), + [anon_sym___declspec] = ACTIONS(3650), + [anon_sym___based] = ACTIONS(3650), + [anon_sym___cdecl] = ACTIONS(3650), + [anon_sym___clrcall] = ACTIONS(3650), + [anon_sym___stdcall] = ACTIONS(3650), + [anon_sym___fastcall] = ACTIONS(3650), + [anon_sym___thiscall] = ACTIONS(3650), + [anon_sym___vectorcall] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_signed] = ACTIONS(3650), + [anon_sym_unsigned] = ACTIONS(3650), + [anon_sym_long] = ACTIONS(3650), + [anon_sym_short] = ACTIONS(3650), + [anon_sym_LBRACK] = ACTIONS(3650), + [anon_sym_static] = ACTIONS(3650), + [anon_sym_register] = ACTIONS(3650), + [anon_sym_inline] = ACTIONS(3650), + [anon_sym___inline] = ACTIONS(3650), + [anon_sym___inline__] = ACTIONS(3650), + [anon_sym___forceinline] = ACTIONS(3650), + [anon_sym_thread_local] = ACTIONS(3650), + [anon_sym___thread] = ACTIONS(3650), + [anon_sym_const] = ACTIONS(3650), + [anon_sym_constexpr] = ACTIONS(3650), + [anon_sym_volatile] = ACTIONS(3650), + [anon_sym_restrict] = ACTIONS(3650), + [anon_sym___restrict__] = ACTIONS(3650), + [anon_sym__Atomic] = ACTIONS(3650), + [anon_sym__Noreturn] = ACTIONS(3650), + [anon_sym_noreturn] = ACTIONS(3650), + [anon_sym__Nonnull] = ACTIONS(3650), + [anon_sym_mutable] = ACTIONS(3650), + [anon_sym_constinit] = ACTIONS(3650), + [anon_sym_consteval] = ACTIONS(3650), + [anon_sym_alignas] = ACTIONS(3650), + [anon_sym__Alignas] = ACTIONS(3650), + [sym_primitive_type] = ACTIONS(3650), + [anon_sym_enum] = ACTIONS(3650), + [anon_sym_class] = ACTIONS(3650), + [anon_sym_struct] = ACTIONS(3650), + [anon_sym_union] = ACTIONS(3650), + [anon_sym_if] = ACTIONS(3650), + [anon_sym_else] = ACTIONS(3650), + [anon_sym_switch] = ACTIONS(3650), + [anon_sym_case] = ACTIONS(3650), + [anon_sym_default] = ACTIONS(3650), + [anon_sym_while] = ACTIONS(3650), + [anon_sym_do] = ACTIONS(3650), + [anon_sym_for] = ACTIONS(3650), + [anon_sym_return] = ACTIONS(3650), + [anon_sym_break] = ACTIONS(3650), + [anon_sym_continue] = ACTIONS(3650), + [anon_sym_goto] = ACTIONS(3650), + [anon_sym___try] = ACTIONS(3650), + [anon_sym___leave] = ACTIONS(3650), + [anon_sym_not] = ACTIONS(3650), + [anon_sym_compl] = ACTIONS(3650), + [anon_sym_DASH_DASH] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3652), + [anon_sym_sizeof] = ACTIONS(3650), + [anon_sym___alignof__] = ACTIONS(3650), + [anon_sym___alignof] = ACTIONS(3650), + [anon_sym__alignof] = ACTIONS(3650), + [anon_sym_alignof] = ACTIONS(3650), + [anon_sym__Alignof] = ACTIONS(3650), + [anon_sym_offsetof] = ACTIONS(3650), + [anon_sym__Generic] = ACTIONS(3650), + [anon_sym_typename] = ACTIONS(3650), + [anon_sym_asm] = ACTIONS(3650), + [anon_sym___asm__] = ACTIONS(3650), + [anon_sym___asm] = ACTIONS(3650), + [sym_number_literal] = ACTIONS(3652), + [anon_sym_L_SQUOTE] = ACTIONS(3652), + [anon_sym_u_SQUOTE] = ACTIONS(3652), + [anon_sym_U_SQUOTE] = ACTIONS(3652), + [anon_sym_u8_SQUOTE] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(3652), + [anon_sym_L_DQUOTE] = ACTIONS(3652), + [anon_sym_u_DQUOTE] = ACTIONS(3652), + [anon_sym_U_DQUOTE] = ACTIONS(3652), + [anon_sym_u8_DQUOTE] = ACTIONS(3652), + [anon_sym_DQUOTE] = ACTIONS(3652), + [sym_true] = ACTIONS(3650), + [sym_false] = ACTIONS(3650), + [anon_sym_NULL] = ACTIONS(3650), + [anon_sym_nullptr] = ACTIONS(3650), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3650), + [anon_sym_decltype] = ACTIONS(3650), + [anon_sym_explicit] = ACTIONS(3650), + [anon_sym_export] = ACTIONS(3650), + [anon_sym_module] = ACTIONS(3650), + [anon_sym_import] = ACTIONS(3650), + [anon_sym_template] = ACTIONS(3650), + [anon_sym_operator] = ACTIONS(3650), + [anon_sym_try] = ACTIONS(3650), + [anon_sym_delete] = ACTIONS(3650), + [anon_sym_throw] = ACTIONS(3650), + [anon_sym_namespace] = ACTIONS(3650), + [anon_sym_static_assert] = ACTIONS(3650), + [anon_sym_concept] = ACTIONS(3650), + [anon_sym_co_return] = ACTIONS(3650), + [anon_sym_co_yield] = ACTIONS(3650), + [anon_sym_R_DQUOTE] = ACTIONS(3652), + [anon_sym_LR_DQUOTE] = ACTIONS(3652), + [anon_sym_uR_DQUOTE] = ACTIONS(3652), + [anon_sym_UR_DQUOTE] = ACTIONS(3652), + [anon_sym_u8R_DQUOTE] = ACTIONS(3652), + [anon_sym_co_await] = ACTIONS(3650), + [anon_sym_new] = ACTIONS(3650), + [anon_sym_requires] = ACTIONS(3650), + [anon_sym_CARET_CARET] = ACTIONS(3652), + [anon_sym_LBRACK_COLON] = ACTIONS(3652), + [sym_this] = ACTIONS(3650), }, - [STATE(367)] = { - [sym_identifier] = ACTIONS(3648), - [aux_sym_preproc_include_token1] = ACTIONS(3648), - [aux_sym_preproc_def_token1] = ACTIONS(3648), - [aux_sym_preproc_if_token1] = ACTIONS(3648), - [aux_sym_preproc_if_token2] = ACTIONS(3648), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3648), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3648), - [aux_sym_preproc_else_token1] = ACTIONS(3648), - [aux_sym_preproc_elif_token1] = ACTIONS(3648), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3648), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3648), - [sym_preproc_directive] = ACTIONS(3648), - [anon_sym_LPAREN2] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_TILDE] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_AMP_AMP] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3650), - [anon_sym___extension__] = ACTIONS(3648), - [anon_sym_typedef] = ACTIONS(3648), - [anon_sym_virtual] = ACTIONS(3648), - [anon_sym_extern] = ACTIONS(3648), - [anon_sym___attribute__] = ACTIONS(3648), - [anon_sym___attribute] = ACTIONS(3648), - [anon_sym_using] = ACTIONS(3648), - [anon_sym_COLON_COLON] = ACTIONS(3650), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), - [anon_sym___declspec] = ACTIONS(3648), - [anon_sym___based] = ACTIONS(3648), - [anon_sym___cdecl] = ACTIONS(3648), - [anon_sym___clrcall] = ACTIONS(3648), - [anon_sym___stdcall] = ACTIONS(3648), - [anon_sym___fastcall] = ACTIONS(3648), - [anon_sym___thiscall] = ACTIONS(3648), - [anon_sym___vectorcall] = ACTIONS(3648), - [anon_sym_LBRACE] = ACTIONS(3650), - [anon_sym_signed] = ACTIONS(3648), - [anon_sym_unsigned] = ACTIONS(3648), - [anon_sym_long] = ACTIONS(3648), - [anon_sym_short] = ACTIONS(3648), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_static] = ACTIONS(3648), - [anon_sym_register] = ACTIONS(3648), - [anon_sym_inline] = ACTIONS(3648), - [anon_sym___inline] = ACTIONS(3648), - [anon_sym___inline__] = ACTIONS(3648), - [anon_sym___forceinline] = ACTIONS(3648), - [anon_sym_thread_local] = ACTIONS(3648), - [anon_sym___thread] = ACTIONS(3648), - [anon_sym_const] = ACTIONS(3648), - [anon_sym_constexpr] = ACTIONS(3648), - [anon_sym_volatile] = ACTIONS(3648), - [anon_sym_restrict] = ACTIONS(3648), - [anon_sym___restrict__] = ACTIONS(3648), - [anon_sym__Atomic] = ACTIONS(3648), - [anon_sym__Noreturn] = ACTIONS(3648), - [anon_sym_noreturn] = ACTIONS(3648), - [anon_sym__Nonnull] = ACTIONS(3648), - [anon_sym_mutable] = ACTIONS(3648), - [anon_sym_constinit] = ACTIONS(3648), - [anon_sym_consteval] = ACTIONS(3648), - [anon_sym_alignas] = ACTIONS(3648), - [anon_sym__Alignas] = ACTIONS(3648), - [sym_primitive_type] = ACTIONS(3648), - [anon_sym_enum] = ACTIONS(3648), - [anon_sym_class] = ACTIONS(3648), - [anon_sym_struct] = ACTIONS(3648), - [anon_sym_union] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3648), - [anon_sym_else] = ACTIONS(3648), - [anon_sym_switch] = ACTIONS(3648), - [anon_sym_case] = ACTIONS(3648), - [anon_sym_default] = ACTIONS(3648), - [anon_sym_while] = ACTIONS(3648), - [anon_sym_do] = ACTIONS(3648), - [anon_sym_for] = ACTIONS(3648), - [anon_sym_return] = ACTIONS(3648), - [anon_sym_break] = ACTIONS(3648), - [anon_sym_continue] = ACTIONS(3648), - [anon_sym_goto] = ACTIONS(3648), - [anon_sym___try] = ACTIONS(3648), - [anon_sym___leave] = ACTIONS(3648), - [anon_sym_not] = ACTIONS(3648), - [anon_sym_compl] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3650), - [anon_sym_sizeof] = ACTIONS(3648), - [anon_sym___alignof__] = ACTIONS(3648), - [anon_sym___alignof] = ACTIONS(3648), - [anon_sym__alignof] = ACTIONS(3648), - [anon_sym_alignof] = ACTIONS(3648), - [anon_sym__Alignof] = ACTIONS(3648), - [anon_sym_offsetof] = ACTIONS(3648), - [anon_sym__Generic] = ACTIONS(3648), - [anon_sym_typename] = ACTIONS(3648), - [anon_sym_asm] = ACTIONS(3648), - [anon_sym___asm__] = ACTIONS(3648), - [anon_sym___asm] = ACTIONS(3648), - [sym_number_literal] = ACTIONS(3650), - [anon_sym_L_SQUOTE] = ACTIONS(3650), - [anon_sym_u_SQUOTE] = ACTIONS(3650), - [anon_sym_U_SQUOTE] = ACTIONS(3650), - [anon_sym_u8_SQUOTE] = ACTIONS(3650), - [anon_sym_SQUOTE] = ACTIONS(3650), - [anon_sym_L_DQUOTE] = ACTIONS(3650), - [anon_sym_u_DQUOTE] = ACTIONS(3650), - [anon_sym_U_DQUOTE] = ACTIONS(3650), - [anon_sym_u8_DQUOTE] = ACTIONS(3650), - [anon_sym_DQUOTE] = ACTIONS(3650), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [anon_sym_NULL] = ACTIONS(3648), - [anon_sym_nullptr] = ACTIONS(3648), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3648), - [anon_sym_decltype] = ACTIONS(3648), - [anon_sym_explicit] = ACTIONS(3648), - [anon_sym_template] = ACTIONS(3648), - [anon_sym_operator] = ACTIONS(3648), - [anon_sym_try] = ACTIONS(3648), - [anon_sym_delete] = ACTIONS(3648), - [anon_sym_throw] = ACTIONS(3648), - [anon_sym_namespace] = ACTIONS(3648), - [anon_sym_static_assert] = ACTIONS(3648), - [anon_sym_concept] = ACTIONS(3648), - [anon_sym_co_return] = ACTIONS(3648), - [anon_sym_co_yield] = ACTIONS(3648), - [anon_sym_R_DQUOTE] = ACTIONS(3650), - [anon_sym_LR_DQUOTE] = ACTIONS(3650), - [anon_sym_uR_DQUOTE] = ACTIONS(3650), - [anon_sym_UR_DQUOTE] = ACTIONS(3650), - [anon_sym_u8R_DQUOTE] = ACTIONS(3650), - [anon_sym_co_await] = ACTIONS(3648), - [anon_sym_new] = ACTIONS(3648), - [anon_sym_requires] = ACTIONS(3648), - [anon_sym_CARET_CARET] = ACTIONS(3650), - [anon_sym_LBRACK_COLON] = ACTIONS(3650), - [sym_this] = ACTIONS(3648), + [STATE(377)] = { + [sym_identifier] = ACTIONS(3654), + [aux_sym_preproc_include_token1] = ACTIONS(3654), + [aux_sym_preproc_def_token1] = ACTIONS(3654), + [aux_sym_preproc_if_token1] = ACTIONS(3654), + [aux_sym_preproc_if_token2] = ACTIONS(3654), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3654), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3654), + [aux_sym_preproc_else_token1] = ACTIONS(3654), + [aux_sym_preproc_elif_token1] = ACTIONS(3654), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3654), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3654), + [sym_preproc_directive] = ACTIONS(3654), + [anon_sym_LPAREN2] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_STAR] = ACTIONS(3656), + [anon_sym_AMP_AMP] = ACTIONS(3656), + [anon_sym_AMP] = ACTIONS(3654), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym___extension__] = ACTIONS(3654), + [anon_sym_typedef] = ACTIONS(3654), + [anon_sym_virtual] = ACTIONS(3654), + [anon_sym_extern] = ACTIONS(3654), + [anon_sym___attribute__] = ACTIONS(3654), + [anon_sym___attribute] = ACTIONS(3654), + [anon_sym_using] = ACTIONS(3654), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3656), + [anon_sym___declspec] = ACTIONS(3654), + [anon_sym___based] = ACTIONS(3654), + [anon_sym___cdecl] = ACTIONS(3654), + [anon_sym___clrcall] = ACTIONS(3654), + [anon_sym___stdcall] = ACTIONS(3654), + [anon_sym___fastcall] = ACTIONS(3654), + [anon_sym___thiscall] = ACTIONS(3654), + [anon_sym___vectorcall] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_signed] = ACTIONS(3654), + [anon_sym_unsigned] = ACTIONS(3654), + [anon_sym_long] = ACTIONS(3654), + [anon_sym_short] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_register] = ACTIONS(3654), + [anon_sym_inline] = ACTIONS(3654), + [anon_sym___inline] = ACTIONS(3654), + [anon_sym___inline__] = ACTIONS(3654), + [anon_sym___forceinline] = ACTIONS(3654), + [anon_sym_thread_local] = ACTIONS(3654), + [anon_sym___thread] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3654), + [anon_sym_constexpr] = ACTIONS(3654), + [anon_sym_volatile] = ACTIONS(3654), + [anon_sym_restrict] = ACTIONS(3654), + [anon_sym___restrict__] = ACTIONS(3654), + [anon_sym__Atomic] = ACTIONS(3654), + [anon_sym__Noreturn] = ACTIONS(3654), + [anon_sym_noreturn] = ACTIONS(3654), + [anon_sym__Nonnull] = ACTIONS(3654), + [anon_sym_mutable] = ACTIONS(3654), + [anon_sym_constinit] = ACTIONS(3654), + [anon_sym_consteval] = ACTIONS(3654), + [anon_sym_alignas] = ACTIONS(3654), + [anon_sym__Alignas] = ACTIONS(3654), + [sym_primitive_type] = ACTIONS(3654), + [anon_sym_enum] = ACTIONS(3654), + [anon_sym_class] = ACTIONS(3654), + [anon_sym_struct] = ACTIONS(3654), + [anon_sym_union] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_case] = ACTIONS(3654), + [anon_sym_default] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_goto] = ACTIONS(3654), + [anon_sym___try] = ACTIONS(3654), + [anon_sym___leave] = ACTIONS(3654), + [anon_sym_not] = ACTIONS(3654), + [anon_sym_compl] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_sizeof] = ACTIONS(3654), + [anon_sym___alignof__] = ACTIONS(3654), + [anon_sym___alignof] = ACTIONS(3654), + [anon_sym__alignof] = ACTIONS(3654), + [anon_sym_alignof] = ACTIONS(3654), + [anon_sym__Alignof] = ACTIONS(3654), + [anon_sym_offsetof] = ACTIONS(3654), + [anon_sym__Generic] = ACTIONS(3654), + [anon_sym_typename] = ACTIONS(3654), + [anon_sym_asm] = ACTIONS(3654), + [anon_sym___asm__] = ACTIONS(3654), + [anon_sym___asm] = ACTIONS(3654), + [sym_number_literal] = ACTIONS(3656), + [anon_sym_L_SQUOTE] = ACTIONS(3656), + [anon_sym_u_SQUOTE] = ACTIONS(3656), + [anon_sym_U_SQUOTE] = ACTIONS(3656), + [anon_sym_u8_SQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_L_DQUOTE] = ACTIONS(3656), + [anon_sym_u_DQUOTE] = ACTIONS(3656), + [anon_sym_U_DQUOTE] = ACTIONS(3656), + [anon_sym_u8_DQUOTE] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [sym_true] = ACTIONS(3654), + [sym_false] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_nullptr] = ACTIONS(3654), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3654), + [anon_sym_decltype] = ACTIONS(3654), + [anon_sym_explicit] = ACTIONS(3654), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_module] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_template] = ACTIONS(3654), + [anon_sym_operator] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_delete] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_namespace] = ACTIONS(3654), + [anon_sym_static_assert] = ACTIONS(3654), + [anon_sym_concept] = ACTIONS(3654), + [anon_sym_co_return] = ACTIONS(3654), + [anon_sym_co_yield] = ACTIONS(3654), + [anon_sym_R_DQUOTE] = ACTIONS(3656), + [anon_sym_LR_DQUOTE] = ACTIONS(3656), + [anon_sym_uR_DQUOTE] = ACTIONS(3656), + [anon_sym_UR_DQUOTE] = ACTIONS(3656), + [anon_sym_u8R_DQUOTE] = ACTIONS(3656), + [anon_sym_co_await] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_requires] = ACTIONS(3654), + [anon_sym_CARET_CARET] = ACTIONS(3656), + [anon_sym_LBRACK_COLON] = ACTIONS(3656), + [sym_this] = ACTIONS(3654), }, - [STATE(368)] = { - [sym_identifier] = ACTIONS(3652), - [aux_sym_preproc_include_token1] = ACTIONS(3652), - [aux_sym_preproc_def_token1] = ACTIONS(3652), - [aux_sym_preproc_if_token1] = ACTIONS(3652), - [aux_sym_preproc_if_token2] = ACTIONS(3652), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3652), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3652), - [aux_sym_preproc_else_token1] = ACTIONS(3652), - [aux_sym_preproc_elif_token1] = ACTIONS(3652), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3652), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3652), - [sym_preproc_directive] = ACTIONS(3652), - [anon_sym_LPAREN2] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_TILDE] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3652), - [anon_sym_STAR] = ACTIONS(3654), - [anon_sym_AMP_AMP] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3654), - [anon_sym___extension__] = ACTIONS(3652), - [anon_sym_typedef] = ACTIONS(3652), - [anon_sym_virtual] = ACTIONS(3652), - [anon_sym_extern] = ACTIONS(3652), - [anon_sym___attribute__] = ACTIONS(3652), - [anon_sym___attribute] = ACTIONS(3652), - [anon_sym_using] = ACTIONS(3652), - [anon_sym_COLON_COLON] = ACTIONS(3654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3654), - [anon_sym___declspec] = ACTIONS(3652), - [anon_sym___based] = ACTIONS(3652), - [anon_sym___cdecl] = ACTIONS(3652), - [anon_sym___clrcall] = ACTIONS(3652), - [anon_sym___stdcall] = ACTIONS(3652), - [anon_sym___fastcall] = ACTIONS(3652), - [anon_sym___thiscall] = ACTIONS(3652), - [anon_sym___vectorcall] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_signed] = ACTIONS(3652), - [anon_sym_unsigned] = ACTIONS(3652), - [anon_sym_long] = ACTIONS(3652), - [anon_sym_short] = ACTIONS(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_static] = ACTIONS(3652), - [anon_sym_register] = ACTIONS(3652), - [anon_sym_inline] = ACTIONS(3652), - [anon_sym___inline] = ACTIONS(3652), - [anon_sym___inline__] = ACTIONS(3652), - [anon_sym___forceinline] = ACTIONS(3652), - [anon_sym_thread_local] = ACTIONS(3652), - [anon_sym___thread] = ACTIONS(3652), - [anon_sym_const] = ACTIONS(3652), - [anon_sym_constexpr] = ACTIONS(3652), - [anon_sym_volatile] = ACTIONS(3652), - [anon_sym_restrict] = ACTIONS(3652), - [anon_sym___restrict__] = ACTIONS(3652), - [anon_sym__Atomic] = ACTIONS(3652), - [anon_sym__Noreturn] = ACTIONS(3652), - [anon_sym_noreturn] = ACTIONS(3652), - [anon_sym__Nonnull] = ACTIONS(3652), - [anon_sym_mutable] = ACTIONS(3652), - [anon_sym_constinit] = ACTIONS(3652), - [anon_sym_consteval] = ACTIONS(3652), - [anon_sym_alignas] = ACTIONS(3652), - [anon_sym__Alignas] = ACTIONS(3652), - [sym_primitive_type] = ACTIONS(3652), - [anon_sym_enum] = ACTIONS(3652), - [anon_sym_class] = ACTIONS(3652), - [anon_sym_struct] = ACTIONS(3652), - [anon_sym_union] = ACTIONS(3652), - [anon_sym_if] = ACTIONS(3652), - [anon_sym_else] = ACTIONS(3652), - [anon_sym_switch] = ACTIONS(3652), - [anon_sym_case] = ACTIONS(3652), - [anon_sym_default] = ACTIONS(3652), - [anon_sym_while] = ACTIONS(3652), - [anon_sym_do] = ACTIONS(3652), - [anon_sym_for] = ACTIONS(3652), - [anon_sym_return] = ACTIONS(3652), - [anon_sym_break] = ACTIONS(3652), - [anon_sym_continue] = ACTIONS(3652), - [anon_sym_goto] = ACTIONS(3652), - [anon_sym___try] = ACTIONS(3652), - [anon_sym___leave] = ACTIONS(3652), - [anon_sym_not] = ACTIONS(3652), - [anon_sym_compl] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3654), - [anon_sym_sizeof] = ACTIONS(3652), - [anon_sym___alignof__] = ACTIONS(3652), - [anon_sym___alignof] = ACTIONS(3652), - [anon_sym__alignof] = ACTIONS(3652), - [anon_sym_alignof] = ACTIONS(3652), - [anon_sym__Alignof] = ACTIONS(3652), - [anon_sym_offsetof] = ACTIONS(3652), - [anon_sym__Generic] = ACTIONS(3652), - [anon_sym_typename] = ACTIONS(3652), - [anon_sym_asm] = ACTIONS(3652), - [anon_sym___asm__] = ACTIONS(3652), - [anon_sym___asm] = ACTIONS(3652), - [sym_number_literal] = ACTIONS(3654), - [anon_sym_L_SQUOTE] = ACTIONS(3654), - [anon_sym_u_SQUOTE] = ACTIONS(3654), - [anon_sym_U_SQUOTE] = ACTIONS(3654), - [anon_sym_u8_SQUOTE] = ACTIONS(3654), - [anon_sym_SQUOTE] = ACTIONS(3654), - [anon_sym_L_DQUOTE] = ACTIONS(3654), - [anon_sym_u_DQUOTE] = ACTIONS(3654), - [anon_sym_U_DQUOTE] = ACTIONS(3654), - [anon_sym_u8_DQUOTE] = ACTIONS(3654), - [anon_sym_DQUOTE] = ACTIONS(3654), - [sym_true] = ACTIONS(3652), - [sym_false] = ACTIONS(3652), - [anon_sym_NULL] = ACTIONS(3652), - [anon_sym_nullptr] = ACTIONS(3652), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3652), - [anon_sym_decltype] = ACTIONS(3652), - [anon_sym_explicit] = ACTIONS(3652), - [anon_sym_template] = ACTIONS(3652), - [anon_sym_operator] = ACTIONS(3652), - [anon_sym_try] = ACTIONS(3652), - [anon_sym_delete] = ACTIONS(3652), - [anon_sym_throw] = ACTIONS(3652), - [anon_sym_namespace] = ACTIONS(3652), - [anon_sym_static_assert] = ACTIONS(3652), - [anon_sym_concept] = ACTIONS(3652), - [anon_sym_co_return] = ACTIONS(3652), - [anon_sym_co_yield] = ACTIONS(3652), - [anon_sym_R_DQUOTE] = ACTIONS(3654), - [anon_sym_LR_DQUOTE] = ACTIONS(3654), - [anon_sym_uR_DQUOTE] = ACTIONS(3654), - [anon_sym_UR_DQUOTE] = ACTIONS(3654), - [anon_sym_u8R_DQUOTE] = ACTIONS(3654), - [anon_sym_co_await] = ACTIONS(3652), - [anon_sym_new] = ACTIONS(3652), - [anon_sym_requires] = ACTIONS(3652), - [anon_sym_CARET_CARET] = ACTIONS(3654), - [anon_sym_LBRACK_COLON] = ACTIONS(3654), - [sym_this] = ACTIONS(3652), + [STATE(378)] = { + [sym_identifier] = ACTIONS(3658), + [aux_sym_preproc_include_token1] = ACTIONS(3658), + [aux_sym_preproc_def_token1] = ACTIONS(3658), + [aux_sym_preproc_if_token1] = ACTIONS(3658), + [aux_sym_preproc_if_token2] = ACTIONS(3658), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3658), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3658), + [aux_sym_preproc_else_token1] = ACTIONS(3658), + [aux_sym_preproc_elif_token1] = ACTIONS(3658), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3658), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3658), + [sym_preproc_directive] = ACTIONS(3658), + [anon_sym_LPAREN2] = ACTIONS(3660), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_STAR] = ACTIONS(3660), + [anon_sym_AMP_AMP] = ACTIONS(3660), + [anon_sym_AMP] = ACTIONS(3658), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym___extension__] = ACTIONS(3658), + [anon_sym_typedef] = ACTIONS(3658), + [anon_sym_virtual] = ACTIONS(3658), + [anon_sym_extern] = ACTIONS(3658), + [anon_sym___attribute__] = ACTIONS(3658), + [anon_sym___attribute] = ACTIONS(3658), + [anon_sym_using] = ACTIONS(3658), + [anon_sym_COLON_COLON] = ACTIONS(3660), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3660), + [anon_sym___declspec] = ACTIONS(3658), + [anon_sym___based] = ACTIONS(3658), + [anon_sym___cdecl] = ACTIONS(3658), + [anon_sym___clrcall] = ACTIONS(3658), + [anon_sym___stdcall] = ACTIONS(3658), + [anon_sym___fastcall] = ACTIONS(3658), + [anon_sym___thiscall] = ACTIONS(3658), + [anon_sym___vectorcall] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_signed] = ACTIONS(3658), + [anon_sym_unsigned] = ACTIONS(3658), + [anon_sym_long] = ACTIONS(3658), + [anon_sym_short] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_register] = ACTIONS(3658), + [anon_sym_inline] = ACTIONS(3658), + [anon_sym___inline] = ACTIONS(3658), + [anon_sym___inline__] = ACTIONS(3658), + [anon_sym___forceinline] = ACTIONS(3658), + [anon_sym_thread_local] = ACTIONS(3658), + [anon_sym___thread] = ACTIONS(3658), + [anon_sym_const] = ACTIONS(3658), + [anon_sym_constexpr] = ACTIONS(3658), + [anon_sym_volatile] = ACTIONS(3658), + [anon_sym_restrict] = ACTIONS(3658), + [anon_sym___restrict__] = ACTIONS(3658), + [anon_sym__Atomic] = ACTIONS(3658), + [anon_sym__Noreturn] = ACTIONS(3658), + [anon_sym_noreturn] = ACTIONS(3658), + [anon_sym__Nonnull] = ACTIONS(3658), + [anon_sym_mutable] = ACTIONS(3658), + [anon_sym_constinit] = ACTIONS(3658), + [anon_sym_consteval] = ACTIONS(3658), + [anon_sym_alignas] = ACTIONS(3658), + [anon_sym__Alignas] = ACTIONS(3658), + [sym_primitive_type] = ACTIONS(3658), + [anon_sym_enum] = ACTIONS(3658), + [anon_sym_class] = ACTIONS(3658), + [anon_sym_struct] = ACTIONS(3658), + [anon_sym_union] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_else] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_case] = ACTIONS(3658), + [anon_sym_default] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_goto] = ACTIONS(3658), + [anon_sym___try] = ACTIONS(3658), + [anon_sym___leave] = ACTIONS(3658), + [anon_sym_not] = ACTIONS(3658), + [anon_sym_compl] = ACTIONS(3658), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_sizeof] = ACTIONS(3658), + [anon_sym___alignof__] = ACTIONS(3658), + [anon_sym___alignof] = ACTIONS(3658), + [anon_sym__alignof] = ACTIONS(3658), + [anon_sym_alignof] = ACTIONS(3658), + [anon_sym__Alignof] = ACTIONS(3658), + [anon_sym_offsetof] = ACTIONS(3658), + [anon_sym__Generic] = ACTIONS(3658), + [anon_sym_typename] = ACTIONS(3658), + [anon_sym_asm] = ACTIONS(3658), + [anon_sym___asm__] = ACTIONS(3658), + [anon_sym___asm] = ACTIONS(3658), + [sym_number_literal] = ACTIONS(3660), + [anon_sym_L_SQUOTE] = ACTIONS(3660), + [anon_sym_u_SQUOTE] = ACTIONS(3660), + [anon_sym_U_SQUOTE] = ACTIONS(3660), + [anon_sym_u8_SQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [anon_sym_L_DQUOTE] = ACTIONS(3660), + [anon_sym_u_DQUOTE] = ACTIONS(3660), + [anon_sym_U_DQUOTE] = ACTIONS(3660), + [anon_sym_u8_DQUOTE] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [sym_true] = ACTIONS(3658), + [sym_false] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_nullptr] = ACTIONS(3658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3658), + [anon_sym_decltype] = ACTIONS(3658), + [anon_sym_explicit] = ACTIONS(3658), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_module] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_template] = ACTIONS(3658), + [anon_sym_operator] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_delete] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_namespace] = ACTIONS(3658), + [anon_sym_static_assert] = ACTIONS(3658), + [anon_sym_concept] = ACTIONS(3658), + [anon_sym_co_return] = ACTIONS(3658), + [anon_sym_co_yield] = ACTIONS(3658), + [anon_sym_R_DQUOTE] = ACTIONS(3660), + [anon_sym_LR_DQUOTE] = ACTIONS(3660), + [anon_sym_uR_DQUOTE] = ACTIONS(3660), + [anon_sym_UR_DQUOTE] = ACTIONS(3660), + [anon_sym_u8R_DQUOTE] = ACTIONS(3660), + [anon_sym_co_await] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_requires] = ACTIONS(3658), + [anon_sym_CARET_CARET] = ACTIONS(3660), + [anon_sym_LBRACK_COLON] = ACTIONS(3660), + [sym_this] = ACTIONS(3658), }, - [STATE(369)] = { - [sym_identifier] = ACTIONS(3656), - [aux_sym_preproc_include_token1] = ACTIONS(3656), - [aux_sym_preproc_def_token1] = ACTIONS(3656), - [aux_sym_preproc_if_token1] = ACTIONS(3656), - [aux_sym_preproc_if_token2] = ACTIONS(3656), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3656), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3656), - [aux_sym_preproc_else_token1] = ACTIONS(3656), - [aux_sym_preproc_elif_token1] = ACTIONS(3656), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3656), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3656), - [sym_preproc_directive] = ACTIONS(3656), - [anon_sym_LPAREN2] = ACTIONS(3658), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_TILDE] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(3656), - [anon_sym_STAR] = ACTIONS(3658), - [anon_sym_AMP_AMP] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3656), - [anon_sym_SEMI] = ACTIONS(3658), - [anon_sym___extension__] = ACTIONS(3656), - [anon_sym_typedef] = ACTIONS(3656), - [anon_sym_virtual] = ACTIONS(3656), - [anon_sym_extern] = ACTIONS(3656), - [anon_sym___attribute__] = ACTIONS(3656), - [anon_sym___attribute] = ACTIONS(3656), - [anon_sym_using] = ACTIONS(3656), - [anon_sym_COLON_COLON] = ACTIONS(3658), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3658), - [anon_sym___declspec] = ACTIONS(3656), - [anon_sym___based] = ACTIONS(3656), - [anon_sym___cdecl] = ACTIONS(3656), - [anon_sym___clrcall] = ACTIONS(3656), - [anon_sym___stdcall] = ACTIONS(3656), - [anon_sym___fastcall] = ACTIONS(3656), - [anon_sym___thiscall] = ACTIONS(3656), - [anon_sym___vectorcall] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_signed] = ACTIONS(3656), - [anon_sym_unsigned] = ACTIONS(3656), - [anon_sym_long] = ACTIONS(3656), - [anon_sym_short] = ACTIONS(3656), - [anon_sym_LBRACK] = ACTIONS(3656), - [anon_sym_static] = ACTIONS(3656), - [anon_sym_register] = ACTIONS(3656), - [anon_sym_inline] = ACTIONS(3656), - [anon_sym___inline] = ACTIONS(3656), - [anon_sym___inline__] = ACTIONS(3656), - [anon_sym___forceinline] = ACTIONS(3656), - [anon_sym_thread_local] = ACTIONS(3656), - [anon_sym___thread] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_constexpr] = ACTIONS(3656), - [anon_sym_volatile] = ACTIONS(3656), - [anon_sym_restrict] = ACTIONS(3656), - [anon_sym___restrict__] = ACTIONS(3656), - [anon_sym__Atomic] = ACTIONS(3656), - [anon_sym__Noreturn] = ACTIONS(3656), - [anon_sym_noreturn] = ACTIONS(3656), - [anon_sym__Nonnull] = ACTIONS(3656), - [anon_sym_mutable] = ACTIONS(3656), - [anon_sym_constinit] = ACTIONS(3656), - [anon_sym_consteval] = ACTIONS(3656), - [anon_sym_alignas] = ACTIONS(3656), - [anon_sym__Alignas] = ACTIONS(3656), - [sym_primitive_type] = ACTIONS(3656), - [anon_sym_enum] = ACTIONS(3656), - [anon_sym_class] = ACTIONS(3656), - [anon_sym_struct] = ACTIONS(3656), - [anon_sym_union] = ACTIONS(3656), - [anon_sym_if] = ACTIONS(3656), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_switch] = ACTIONS(3656), - [anon_sym_case] = ACTIONS(3656), - [anon_sym_default] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(3656), - [anon_sym_do] = ACTIONS(3656), - [anon_sym_for] = ACTIONS(3656), - [anon_sym_return] = ACTIONS(3656), - [anon_sym_break] = ACTIONS(3656), - [anon_sym_continue] = ACTIONS(3656), - [anon_sym_goto] = ACTIONS(3656), - [anon_sym___try] = ACTIONS(3656), - [anon_sym___leave] = ACTIONS(3656), - [anon_sym_not] = ACTIONS(3656), - [anon_sym_compl] = ACTIONS(3656), - [anon_sym_DASH_DASH] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3658), - [anon_sym_sizeof] = ACTIONS(3656), - [anon_sym___alignof__] = ACTIONS(3656), - [anon_sym___alignof] = ACTIONS(3656), - [anon_sym__alignof] = ACTIONS(3656), - [anon_sym_alignof] = ACTIONS(3656), - [anon_sym__Alignof] = ACTIONS(3656), - [anon_sym_offsetof] = ACTIONS(3656), - [anon_sym__Generic] = ACTIONS(3656), - [anon_sym_typename] = ACTIONS(3656), - [anon_sym_asm] = ACTIONS(3656), - [anon_sym___asm__] = ACTIONS(3656), - [anon_sym___asm] = ACTIONS(3656), - [sym_number_literal] = ACTIONS(3658), - [anon_sym_L_SQUOTE] = ACTIONS(3658), - [anon_sym_u_SQUOTE] = ACTIONS(3658), - [anon_sym_U_SQUOTE] = ACTIONS(3658), - [anon_sym_u8_SQUOTE] = ACTIONS(3658), - [anon_sym_SQUOTE] = ACTIONS(3658), - [anon_sym_L_DQUOTE] = ACTIONS(3658), - [anon_sym_u_DQUOTE] = ACTIONS(3658), - [anon_sym_U_DQUOTE] = ACTIONS(3658), - [anon_sym_u8_DQUOTE] = ACTIONS(3658), - [anon_sym_DQUOTE] = ACTIONS(3658), - [sym_true] = ACTIONS(3656), - [sym_false] = ACTIONS(3656), - [anon_sym_NULL] = ACTIONS(3656), - [anon_sym_nullptr] = ACTIONS(3656), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3656), - [anon_sym_decltype] = ACTIONS(3656), - [anon_sym_explicit] = ACTIONS(3656), - [anon_sym_template] = ACTIONS(3656), - [anon_sym_operator] = ACTIONS(3656), - [anon_sym_try] = ACTIONS(3656), - [anon_sym_delete] = ACTIONS(3656), - [anon_sym_throw] = ACTIONS(3656), - [anon_sym_namespace] = ACTIONS(3656), - [anon_sym_static_assert] = ACTIONS(3656), - [anon_sym_concept] = ACTIONS(3656), - [anon_sym_co_return] = ACTIONS(3656), - [anon_sym_co_yield] = ACTIONS(3656), - [anon_sym_R_DQUOTE] = ACTIONS(3658), - [anon_sym_LR_DQUOTE] = ACTIONS(3658), - [anon_sym_uR_DQUOTE] = ACTIONS(3658), - [anon_sym_UR_DQUOTE] = ACTIONS(3658), - [anon_sym_u8R_DQUOTE] = ACTIONS(3658), - [anon_sym_co_await] = ACTIONS(3656), - [anon_sym_new] = ACTIONS(3656), - [anon_sym_requires] = ACTIONS(3656), - [anon_sym_CARET_CARET] = ACTIONS(3658), - [anon_sym_LBRACK_COLON] = ACTIONS(3658), - [sym_this] = ACTIONS(3656), + [STATE(379)] = { + [sym_identifier] = ACTIONS(3662), + [aux_sym_preproc_include_token1] = ACTIONS(3662), + [aux_sym_preproc_def_token1] = ACTIONS(3662), + [aux_sym_preproc_if_token1] = ACTIONS(3662), + [aux_sym_preproc_if_token2] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), + [aux_sym_preproc_else_token1] = ACTIONS(3662), + [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3662), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3662), + [sym_preproc_directive] = ACTIONS(3662), + [anon_sym_LPAREN2] = ACTIONS(3664), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym___extension__] = ACTIONS(3662), + [anon_sym_typedef] = ACTIONS(3662), + [anon_sym_virtual] = ACTIONS(3662), + [anon_sym_extern] = ACTIONS(3662), + [anon_sym___attribute__] = ACTIONS(3662), + [anon_sym___attribute] = ACTIONS(3662), + [anon_sym_using] = ACTIONS(3662), + [anon_sym_COLON_COLON] = ACTIONS(3664), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), + [anon_sym___declspec] = ACTIONS(3662), + [anon_sym___based] = ACTIONS(3662), + [anon_sym___cdecl] = ACTIONS(3662), + [anon_sym___clrcall] = ACTIONS(3662), + [anon_sym___stdcall] = ACTIONS(3662), + [anon_sym___fastcall] = ACTIONS(3662), + [anon_sym___thiscall] = ACTIONS(3662), + [anon_sym___vectorcall] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_signed] = ACTIONS(3662), + [anon_sym_unsigned] = ACTIONS(3662), + [anon_sym_long] = ACTIONS(3662), + [anon_sym_short] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3662), + [anon_sym_static] = ACTIONS(3662), + [anon_sym_register] = ACTIONS(3662), + [anon_sym_inline] = ACTIONS(3662), + [anon_sym___inline] = ACTIONS(3662), + [anon_sym___inline__] = ACTIONS(3662), + [anon_sym___forceinline] = ACTIONS(3662), + [anon_sym_thread_local] = ACTIONS(3662), + [anon_sym___thread] = ACTIONS(3662), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_constexpr] = ACTIONS(3662), + [anon_sym_volatile] = ACTIONS(3662), + [anon_sym_restrict] = ACTIONS(3662), + [anon_sym___restrict__] = ACTIONS(3662), + [anon_sym__Atomic] = ACTIONS(3662), + [anon_sym__Noreturn] = ACTIONS(3662), + [anon_sym_noreturn] = ACTIONS(3662), + [anon_sym__Nonnull] = ACTIONS(3662), + [anon_sym_mutable] = ACTIONS(3662), + [anon_sym_constinit] = ACTIONS(3662), + [anon_sym_consteval] = ACTIONS(3662), + [anon_sym_alignas] = ACTIONS(3662), + [anon_sym__Alignas] = ACTIONS(3662), + [sym_primitive_type] = ACTIONS(3662), + [anon_sym_enum] = ACTIONS(3662), + [anon_sym_class] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(3662), + [anon_sym_union] = ACTIONS(3662), + [anon_sym_if] = ACTIONS(3662), + [anon_sym_else] = ACTIONS(3662), + [anon_sym_switch] = ACTIONS(3662), + [anon_sym_case] = ACTIONS(3662), + [anon_sym_default] = ACTIONS(3662), + [anon_sym_while] = ACTIONS(3662), + [anon_sym_do] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3662), + [anon_sym_return] = ACTIONS(3662), + [anon_sym_break] = ACTIONS(3662), + [anon_sym_continue] = ACTIONS(3662), + [anon_sym_goto] = ACTIONS(3662), + [anon_sym___try] = ACTIONS(3662), + [anon_sym___leave] = ACTIONS(3662), + [anon_sym_not] = ACTIONS(3662), + [anon_sym_compl] = ACTIONS(3662), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_sizeof] = ACTIONS(3662), + [anon_sym___alignof__] = ACTIONS(3662), + [anon_sym___alignof] = ACTIONS(3662), + [anon_sym__alignof] = ACTIONS(3662), + [anon_sym_alignof] = ACTIONS(3662), + [anon_sym__Alignof] = ACTIONS(3662), + [anon_sym_offsetof] = ACTIONS(3662), + [anon_sym__Generic] = ACTIONS(3662), + [anon_sym_typename] = ACTIONS(3662), + [anon_sym_asm] = ACTIONS(3662), + [anon_sym___asm__] = ACTIONS(3662), + [anon_sym___asm] = ACTIONS(3662), + [sym_number_literal] = ACTIONS(3664), + [anon_sym_L_SQUOTE] = ACTIONS(3664), + [anon_sym_u_SQUOTE] = ACTIONS(3664), + [anon_sym_U_SQUOTE] = ACTIONS(3664), + [anon_sym_u8_SQUOTE] = ACTIONS(3664), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_L_DQUOTE] = ACTIONS(3664), + [anon_sym_u_DQUOTE] = ACTIONS(3664), + [anon_sym_U_DQUOTE] = ACTIONS(3664), + [anon_sym_u8_DQUOTE] = ACTIONS(3664), + [anon_sym_DQUOTE] = ACTIONS(3664), + [sym_true] = ACTIONS(3662), + [sym_false] = ACTIONS(3662), + [anon_sym_NULL] = ACTIONS(3662), + [anon_sym_nullptr] = ACTIONS(3662), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3662), + [anon_sym_decltype] = ACTIONS(3662), + [anon_sym_explicit] = ACTIONS(3662), + [anon_sym_export] = ACTIONS(3662), + [anon_sym_module] = ACTIONS(3662), + [anon_sym_import] = ACTIONS(3662), + [anon_sym_template] = ACTIONS(3662), + [anon_sym_operator] = ACTIONS(3662), + [anon_sym_try] = ACTIONS(3662), + [anon_sym_delete] = ACTIONS(3662), + [anon_sym_throw] = ACTIONS(3662), + [anon_sym_namespace] = ACTIONS(3662), + [anon_sym_static_assert] = ACTIONS(3662), + [anon_sym_concept] = ACTIONS(3662), + [anon_sym_co_return] = ACTIONS(3662), + [anon_sym_co_yield] = ACTIONS(3662), + [anon_sym_R_DQUOTE] = ACTIONS(3664), + [anon_sym_LR_DQUOTE] = ACTIONS(3664), + [anon_sym_uR_DQUOTE] = ACTIONS(3664), + [anon_sym_UR_DQUOTE] = ACTIONS(3664), + [anon_sym_u8R_DQUOTE] = ACTIONS(3664), + [anon_sym_co_await] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3662), + [anon_sym_requires] = ACTIONS(3662), + [anon_sym_CARET_CARET] = ACTIONS(3664), + [anon_sym_LBRACK_COLON] = ACTIONS(3664), + [sym_this] = ACTIONS(3662), }, - [STATE(370)] = { - [sym_identifier] = ACTIONS(3660), - [aux_sym_preproc_include_token1] = ACTIONS(3660), - [aux_sym_preproc_def_token1] = ACTIONS(3660), - [aux_sym_preproc_if_token1] = ACTIONS(3660), - [aux_sym_preproc_if_token2] = ACTIONS(3660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3660), - [aux_sym_preproc_else_token1] = ACTIONS(3660), - [aux_sym_preproc_elif_token1] = ACTIONS(3660), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3660), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3660), - [sym_preproc_directive] = ACTIONS(3660), - [anon_sym_LPAREN2] = ACTIONS(3662), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_TILDE] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym___extension__] = ACTIONS(3660), - [anon_sym_typedef] = ACTIONS(3660), - [anon_sym_virtual] = ACTIONS(3660), - [anon_sym_extern] = ACTIONS(3660), - [anon_sym___attribute__] = ACTIONS(3660), - [anon_sym___attribute] = ACTIONS(3660), - [anon_sym_using] = ACTIONS(3660), - [anon_sym_COLON_COLON] = ACTIONS(3662), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), - [anon_sym___declspec] = ACTIONS(3660), - [anon_sym___based] = ACTIONS(3660), - [anon_sym___cdecl] = ACTIONS(3660), - [anon_sym___clrcall] = ACTIONS(3660), - [anon_sym___stdcall] = ACTIONS(3660), - [anon_sym___fastcall] = ACTIONS(3660), - [anon_sym___thiscall] = ACTIONS(3660), - [anon_sym___vectorcall] = ACTIONS(3660), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_signed] = ACTIONS(3660), - [anon_sym_unsigned] = ACTIONS(3660), - [anon_sym_long] = ACTIONS(3660), - [anon_sym_short] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_static] = ACTIONS(3660), - [anon_sym_register] = ACTIONS(3660), - [anon_sym_inline] = ACTIONS(3660), - [anon_sym___inline] = ACTIONS(3660), - [anon_sym___inline__] = ACTIONS(3660), - [anon_sym___forceinline] = ACTIONS(3660), - [anon_sym_thread_local] = ACTIONS(3660), - [anon_sym___thread] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3660), - [anon_sym_constexpr] = ACTIONS(3660), - [anon_sym_volatile] = ACTIONS(3660), - [anon_sym_restrict] = ACTIONS(3660), - [anon_sym___restrict__] = ACTIONS(3660), - [anon_sym__Atomic] = ACTIONS(3660), - [anon_sym__Noreturn] = ACTIONS(3660), - [anon_sym_noreturn] = ACTIONS(3660), - [anon_sym__Nonnull] = ACTIONS(3660), - [anon_sym_mutable] = ACTIONS(3660), - [anon_sym_constinit] = ACTIONS(3660), - [anon_sym_consteval] = ACTIONS(3660), - [anon_sym_alignas] = ACTIONS(3660), - [anon_sym__Alignas] = ACTIONS(3660), - [sym_primitive_type] = ACTIONS(3660), - [anon_sym_enum] = ACTIONS(3660), - [anon_sym_class] = ACTIONS(3660), - [anon_sym_struct] = ACTIONS(3660), - [anon_sym_union] = ACTIONS(3660), - [anon_sym_if] = ACTIONS(3660), - [anon_sym_else] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_case] = ACTIONS(3660), - [anon_sym_default] = ACTIONS(3660), - [anon_sym_while] = ACTIONS(3660), - [anon_sym_do] = ACTIONS(3660), - [anon_sym_for] = ACTIONS(3660), - [anon_sym_return] = ACTIONS(3660), - [anon_sym_break] = ACTIONS(3660), - [anon_sym_continue] = ACTIONS(3660), - [anon_sym_goto] = ACTIONS(3660), - [anon_sym___try] = ACTIONS(3660), - [anon_sym___leave] = ACTIONS(3660), - [anon_sym_not] = ACTIONS(3660), - [anon_sym_compl] = ACTIONS(3660), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_sizeof] = ACTIONS(3660), - [anon_sym___alignof__] = ACTIONS(3660), - [anon_sym___alignof] = ACTIONS(3660), - [anon_sym__alignof] = ACTIONS(3660), - [anon_sym_alignof] = ACTIONS(3660), - [anon_sym__Alignof] = ACTIONS(3660), - [anon_sym_offsetof] = ACTIONS(3660), - [anon_sym__Generic] = ACTIONS(3660), - [anon_sym_typename] = ACTIONS(3660), - [anon_sym_asm] = ACTIONS(3660), - [anon_sym___asm__] = ACTIONS(3660), - [anon_sym___asm] = ACTIONS(3660), - [sym_number_literal] = ACTIONS(3662), - [anon_sym_L_SQUOTE] = ACTIONS(3662), - [anon_sym_u_SQUOTE] = ACTIONS(3662), - [anon_sym_U_SQUOTE] = ACTIONS(3662), - [anon_sym_u8_SQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3662), - [anon_sym_L_DQUOTE] = ACTIONS(3662), - [anon_sym_u_DQUOTE] = ACTIONS(3662), - [anon_sym_U_DQUOTE] = ACTIONS(3662), - [anon_sym_u8_DQUOTE] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3662), - [sym_true] = ACTIONS(3660), - [sym_false] = ACTIONS(3660), - [anon_sym_NULL] = ACTIONS(3660), - [anon_sym_nullptr] = ACTIONS(3660), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3660), - [anon_sym_decltype] = ACTIONS(3660), - [anon_sym_explicit] = ACTIONS(3660), - [anon_sym_template] = ACTIONS(3660), - [anon_sym_operator] = ACTIONS(3660), - [anon_sym_try] = ACTIONS(3660), - [anon_sym_delete] = ACTIONS(3660), - [anon_sym_throw] = ACTIONS(3660), - [anon_sym_namespace] = ACTIONS(3660), - [anon_sym_static_assert] = ACTIONS(3660), - [anon_sym_concept] = ACTIONS(3660), - [anon_sym_co_return] = ACTIONS(3660), - [anon_sym_co_yield] = ACTIONS(3660), - [anon_sym_R_DQUOTE] = ACTIONS(3662), - [anon_sym_LR_DQUOTE] = ACTIONS(3662), - [anon_sym_uR_DQUOTE] = ACTIONS(3662), - [anon_sym_UR_DQUOTE] = ACTIONS(3662), - [anon_sym_u8R_DQUOTE] = ACTIONS(3662), - [anon_sym_co_await] = ACTIONS(3660), - [anon_sym_new] = ACTIONS(3660), - [anon_sym_requires] = ACTIONS(3660), - [anon_sym_CARET_CARET] = ACTIONS(3662), - [anon_sym_LBRACK_COLON] = ACTIONS(3662), - [sym_this] = ACTIONS(3660), + [STATE(380)] = { + [sym_identifier] = ACTIONS(3662), + [aux_sym_preproc_include_token1] = ACTIONS(3662), + [aux_sym_preproc_def_token1] = ACTIONS(3662), + [aux_sym_preproc_if_token1] = ACTIONS(3662), + [aux_sym_preproc_if_token2] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), + [aux_sym_preproc_else_token1] = ACTIONS(3662), + [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3662), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3662), + [sym_preproc_directive] = ACTIONS(3662), + [anon_sym_LPAREN2] = ACTIONS(3664), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym___extension__] = ACTIONS(3662), + [anon_sym_typedef] = ACTIONS(3662), + [anon_sym_virtual] = ACTIONS(3662), + [anon_sym_extern] = ACTIONS(3662), + [anon_sym___attribute__] = ACTIONS(3662), + [anon_sym___attribute] = ACTIONS(3662), + [anon_sym_using] = ACTIONS(3662), + [anon_sym_COLON_COLON] = ACTIONS(3664), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), + [anon_sym___declspec] = ACTIONS(3662), + [anon_sym___based] = ACTIONS(3662), + [anon_sym___cdecl] = ACTIONS(3662), + [anon_sym___clrcall] = ACTIONS(3662), + [anon_sym___stdcall] = ACTIONS(3662), + [anon_sym___fastcall] = ACTIONS(3662), + [anon_sym___thiscall] = ACTIONS(3662), + [anon_sym___vectorcall] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_signed] = ACTIONS(3662), + [anon_sym_unsigned] = ACTIONS(3662), + [anon_sym_long] = ACTIONS(3662), + [anon_sym_short] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3662), + [anon_sym_static] = ACTIONS(3662), + [anon_sym_register] = ACTIONS(3662), + [anon_sym_inline] = ACTIONS(3662), + [anon_sym___inline] = ACTIONS(3662), + [anon_sym___inline__] = ACTIONS(3662), + [anon_sym___forceinline] = ACTIONS(3662), + [anon_sym_thread_local] = ACTIONS(3662), + [anon_sym___thread] = ACTIONS(3662), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_constexpr] = ACTIONS(3662), + [anon_sym_volatile] = ACTIONS(3662), + [anon_sym_restrict] = ACTIONS(3662), + [anon_sym___restrict__] = ACTIONS(3662), + [anon_sym__Atomic] = ACTIONS(3662), + [anon_sym__Noreturn] = ACTIONS(3662), + [anon_sym_noreturn] = ACTIONS(3662), + [anon_sym__Nonnull] = ACTIONS(3662), + [anon_sym_mutable] = ACTIONS(3662), + [anon_sym_constinit] = ACTIONS(3662), + [anon_sym_consteval] = ACTIONS(3662), + [anon_sym_alignas] = ACTIONS(3662), + [anon_sym__Alignas] = ACTIONS(3662), + [sym_primitive_type] = ACTIONS(3662), + [anon_sym_enum] = ACTIONS(3662), + [anon_sym_class] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(3662), + [anon_sym_union] = ACTIONS(3662), + [anon_sym_if] = ACTIONS(3662), + [anon_sym_else] = ACTIONS(3662), + [anon_sym_switch] = ACTIONS(3662), + [anon_sym_case] = ACTIONS(3662), + [anon_sym_default] = ACTIONS(3662), + [anon_sym_while] = ACTIONS(3662), + [anon_sym_do] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3662), + [anon_sym_return] = ACTIONS(3662), + [anon_sym_break] = ACTIONS(3662), + [anon_sym_continue] = ACTIONS(3662), + [anon_sym_goto] = ACTIONS(3662), + [anon_sym___try] = ACTIONS(3662), + [anon_sym___leave] = ACTIONS(3662), + [anon_sym_not] = ACTIONS(3662), + [anon_sym_compl] = ACTIONS(3662), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_sizeof] = ACTIONS(3662), + [anon_sym___alignof__] = ACTIONS(3662), + [anon_sym___alignof] = ACTIONS(3662), + [anon_sym__alignof] = ACTIONS(3662), + [anon_sym_alignof] = ACTIONS(3662), + [anon_sym__Alignof] = ACTIONS(3662), + [anon_sym_offsetof] = ACTIONS(3662), + [anon_sym__Generic] = ACTIONS(3662), + [anon_sym_typename] = ACTIONS(3662), + [anon_sym_asm] = ACTIONS(3662), + [anon_sym___asm__] = ACTIONS(3662), + [anon_sym___asm] = ACTIONS(3662), + [sym_number_literal] = ACTIONS(3664), + [anon_sym_L_SQUOTE] = ACTIONS(3664), + [anon_sym_u_SQUOTE] = ACTIONS(3664), + [anon_sym_U_SQUOTE] = ACTIONS(3664), + [anon_sym_u8_SQUOTE] = ACTIONS(3664), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_L_DQUOTE] = ACTIONS(3664), + [anon_sym_u_DQUOTE] = ACTIONS(3664), + [anon_sym_U_DQUOTE] = ACTIONS(3664), + [anon_sym_u8_DQUOTE] = ACTIONS(3664), + [anon_sym_DQUOTE] = ACTIONS(3664), + [sym_true] = ACTIONS(3662), + [sym_false] = ACTIONS(3662), + [anon_sym_NULL] = ACTIONS(3662), + [anon_sym_nullptr] = ACTIONS(3662), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3662), + [anon_sym_decltype] = ACTIONS(3662), + [anon_sym_explicit] = ACTIONS(3662), + [anon_sym_export] = ACTIONS(3662), + [anon_sym_module] = ACTIONS(3662), + [anon_sym_import] = ACTIONS(3662), + [anon_sym_template] = ACTIONS(3662), + [anon_sym_operator] = ACTIONS(3662), + [anon_sym_try] = ACTIONS(3662), + [anon_sym_delete] = ACTIONS(3662), + [anon_sym_throw] = ACTIONS(3662), + [anon_sym_namespace] = ACTIONS(3662), + [anon_sym_static_assert] = ACTIONS(3662), + [anon_sym_concept] = ACTIONS(3662), + [anon_sym_co_return] = ACTIONS(3662), + [anon_sym_co_yield] = ACTIONS(3662), + [anon_sym_R_DQUOTE] = ACTIONS(3664), + [anon_sym_LR_DQUOTE] = ACTIONS(3664), + [anon_sym_uR_DQUOTE] = ACTIONS(3664), + [anon_sym_UR_DQUOTE] = ACTIONS(3664), + [anon_sym_u8R_DQUOTE] = ACTIONS(3664), + [anon_sym_co_await] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3662), + [anon_sym_requires] = ACTIONS(3662), + [anon_sym_CARET_CARET] = ACTIONS(3664), + [anon_sym_LBRACK_COLON] = ACTIONS(3664), + [sym_this] = ACTIONS(3662), }, - [STATE(371)] = { - [sym_identifier] = ACTIONS(3664), - [aux_sym_preproc_include_token1] = ACTIONS(3664), - [aux_sym_preproc_def_token1] = ACTIONS(3664), - [aux_sym_preproc_if_token1] = ACTIONS(3664), - [aux_sym_preproc_if_token2] = ACTIONS(3664), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3664), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3664), - [aux_sym_preproc_else_token1] = ACTIONS(3664), - [aux_sym_preproc_elif_token1] = ACTIONS(3664), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3664), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3664), - [sym_preproc_directive] = ACTIONS(3664), - [anon_sym_LPAREN2] = ACTIONS(3666), - [anon_sym_BANG] = ACTIONS(3666), - [anon_sym_TILDE] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3664), - [anon_sym_PLUS] = ACTIONS(3664), - [anon_sym_STAR] = ACTIONS(3666), - [anon_sym_AMP_AMP] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3664), - [anon_sym_SEMI] = ACTIONS(3666), - [anon_sym___extension__] = ACTIONS(3664), - [anon_sym_typedef] = ACTIONS(3664), - [anon_sym_virtual] = ACTIONS(3664), - [anon_sym_extern] = ACTIONS(3664), - [anon_sym___attribute__] = ACTIONS(3664), - [anon_sym___attribute] = ACTIONS(3664), - [anon_sym_using] = ACTIONS(3664), - [anon_sym_COLON_COLON] = ACTIONS(3666), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), - [anon_sym___declspec] = ACTIONS(3664), - [anon_sym___based] = ACTIONS(3664), - [anon_sym___cdecl] = ACTIONS(3664), - [anon_sym___clrcall] = ACTIONS(3664), - [anon_sym___stdcall] = ACTIONS(3664), - [anon_sym___fastcall] = ACTIONS(3664), - [anon_sym___thiscall] = ACTIONS(3664), - [anon_sym___vectorcall] = ACTIONS(3664), - [anon_sym_LBRACE] = ACTIONS(3666), - [anon_sym_signed] = ACTIONS(3664), - [anon_sym_unsigned] = ACTIONS(3664), - [anon_sym_long] = ACTIONS(3664), - [anon_sym_short] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3664), - [anon_sym_static] = ACTIONS(3664), - [anon_sym_register] = ACTIONS(3664), - [anon_sym_inline] = ACTIONS(3664), - [anon_sym___inline] = ACTIONS(3664), - [anon_sym___inline__] = ACTIONS(3664), - [anon_sym___forceinline] = ACTIONS(3664), - [anon_sym_thread_local] = ACTIONS(3664), - [anon_sym___thread] = ACTIONS(3664), - [anon_sym_const] = ACTIONS(3664), - [anon_sym_constexpr] = ACTIONS(3664), - [anon_sym_volatile] = ACTIONS(3664), - [anon_sym_restrict] = ACTIONS(3664), - [anon_sym___restrict__] = ACTIONS(3664), - [anon_sym__Atomic] = ACTIONS(3664), - [anon_sym__Noreturn] = ACTIONS(3664), - [anon_sym_noreturn] = ACTIONS(3664), - [anon_sym__Nonnull] = ACTIONS(3664), - [anon_sym_mutable] = ACTIONS(3664), - [anon_sym_constinit] = ACTIONS(3664), - [anon_sym_consteval] = ACTIONS(3664), - [anon_sym_alignas] = ACTIONS(3664), - [anon_sym__Alignas] = ACTIONS(3664), - [sym_primitive_type] = ACTIONS(3664), - [anon_sym_enum] = ACTIONS(3664), - [anon_sym_class] = ACTIONS(3664), - [anon_sym_struct] = ACTIONS(3664), - [anon_sym_union] = ACTIONS(3664), - [anon_sym_if] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(3664), - [anon_sym_switch] = ACTIONS(3664), - [anon_sym_case] = ACTIONS(3664), - [anon_sym_default] = ACTIONS(3664), - [anon_sym_while] = ACTIONS(3664), - [anon_sym_do] = ACTIONS(3664), - [anon_sym_for] = ACTIONS(3664), - [anon_sym_return] = ACTIONS(3664), - [anon_sym_break] = ACTIONS(3664), - [anon_sym_continue] = ACTIONS(3664), - [anon_sym_goto] = ACTIONS(3664), - [anon_sym___try] = ACTIONS(3664), - [anon_sym___leave] = ACTIONS(3664), - [anon_sym_not] = ACTIONS(3664), - [anon_sym_compl] = ACTIONS(3664), - [anon_sym_DASH_DASH] = ACTIONS(3666), - [anon_sym_PLUS_PLUS] = ACTIONS(3666), - [anon_sym_sizeof] = ACTIONS(3664), - [anon_sym___alignof__] = ACTIONS(3664), - [anon_sym___alignof] = ACTIONS(3664), - [anon_sym__alignof] = ACTIONS(3664), - [anon_sym_alignof] = ACTIONS(3664), - [anon_sym__Alignof] = ACTIONS(3664), - [anon_sym_offsetof] = ACTIONS(3664), - [anon_sym__Generic] = ACTIONS(3664), - [anon_sym_typename] = ACTIONS(3664), - [anon_sym_asm] = ACTIONS(3664), - [anon_sym___asm__] = ACTIONS(3664), - [anon_sym___asm] = ACTIONS(3664), - [sym_number_literal] = ACTIONS(3666), - [anon_sym_L_SQUOTE] = ACTIONS(3666), - [anon_sym_u_SQUOTE] = ACTIONS(3666), - [anon_sym_U_SQUOTE] = ACTIONS(3666), - [anon_sym_u8_SQUOTE] = ACTIONS(3666), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_L_DQUOTE] = ACTIONS(3666), - [anon_sym_u_DQUOTE] = ACTIONS(3666), - [anon_sym_U_DQUOTE] = ACTIONS(3666), - [anon_sym_u8_DQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3666), - [sym_true] = ACTIONS(3664), - [sym_false] = ACTIONS(3664), - [anon_sym_NULL] = ACTIONS(3664), - [anon_sym_nullptr] = ACTIONS(3664), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3664), - [anon_sym_decltype] = ACTIONS(3664), - [anon_sym_explicit] = ACTIONS(3664), - [anon_sym_template] = ACTIONS(3664), - [anon_sym_operator] = ACTIONS(3664), - [anon_sym_try] = ACTIONS(3664), - [anon_sym_delete] = ACTIONS(3664), - [anon_sym_throw] = ACTIONS(3664), - [anon_sym_namespace] = ACTIONS(3664), - [anon_sym_static_assert] = ACTIONS(3664), - [anon_sym_concept] = ACTIONS(3664), - [anon_sym_co_return] = ACTIONS(3664), - [anon_sym_co_yield] = ACTIONS(3664), - [anon_sym_R_DQUOTE] = ACTIONS(3666), - [anon_sym_LR_DQUOTE] = ACTIONS(3666), - [anon_sym_uR_DQUOTE] = ACTIONS(3666), - [anon_sym_UR_DQUOTE] = ACTIONS(3666), - [anon_sym_u8R_DQUOTE] = ACTIONS(3666), - [anon_sym_co_await] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3664), - [anon_sym_requires] = ACTIONS(3664), - [anon_sym_CARET_CARET] = ACTIONS(3666), - [anon_sym_LBRACK_COLON] = ACTIONS(3666), - [sym_this] = ACTIONS(3664), + [STATE(381)] = { + [sym_identifier] = ACTIONS(3666), + [aux_sym_preproc_include_token1] = ACTIONS(3666), + [aux_sym_preproc_def_token1] = ACTIONS(3666), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_if_token2] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3666), + [aux_sym_preproc_else_token1] = ACTIONS(3666), + [aux_sym_preproc_elif_token1] = ACTIONS(3666), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3666), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3666), + [sym_preproc_directive] = ACTIONS(3666), + [anon_sym_LPAREN2] = ACTIONS(3668), + [anon_sym_BANG] = ACTIONS(3668), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym___extension__] = ACTIONS(3666), + [anon_sym_typedef] = ACTIONS(3666), + [anon_sym_virtual] = ACTIONS(3666), + [anon_sym_extern] = ACTIONS(3666), + [anon_sym___attribute__] = ACTIONS(3666), + [anon_sym___attribute] = ACTIONS(3666), + [anon_sym_using] = ACTIONS(3666), + [anon_sym_COLON_COLON] = ACTIONS(3668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3668), + [anon_sym___declspec] = ACTIONS(3666), + [anon_sym___based] = ACTIONS(3666), + [anon_sym___cdecl] = ACTIONS(3666), + [anon_sym___clrcall] = ACTIONS(3666), + [anon_sym___stdcall] = ACTIONS(3666), + [anon_sym___fastcall] = ACTIONS(3666), + [anon_sym___thiscall] = ACTIONS(3666), + [anon_sym___vectorcall] = ACTIONS(3666), + [anon_sym_LBRACE] = ACTIONS(3668), + [anon_sym_signed] = ACTIONS(3666), + [anon_sym_unsigned] = ACTIONS(3666), + [anon_sym_long] = ACTIONS(3666), + [anon_sym_short] = ACTIONS(3666), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_static] = ACTIONS(3666), + [anon_sym_register] = ACTIONS(3666), + [anon_sym_inline] = ACTIONS(3666), + [anon_sym___inline] = ACTIONS(3666), + [anon_sym___inline__] = ACTIONS(3666), + [anon_sym___forceinline] = ACTIONS(3666), + [anon_sym_thread_local] = ACTIONS(3666), + [anon_sym___thread] = ACTIONS(3666), + [anon_sym_const] = ACTIONS(3666), + [anon_sym_constexpr] = ACTIONS(3666), + [anon_sym_volatile] = ACTIONS(3666), + [anon_sym_restrict] = ACTIONS(3666), + [anon_sym___restrict__] = ACTIONS(3666), + [anon_sym__Atomic] = ACTIONS(3666), + [anon_sym__Noreturn] = ACTIONS(3666), + [anon_sym_noreturn] = ACTIONS(3666), + [anon_sym__Nonnull] = ACTIONS(3666), + [anon_sym_mutable] = ACTIONS(3666), + [anon_sym_constinit] = ACTIONS(3666), + [anon_sym_consteval] = ACTIONS(3666), + [anon_sym_alignas] = ACTIONS(3666), + [anon_sym__Alignas] = ACTIONS(3666), + [sym_primitive_type] = ACTIONS(3666), + [anon_sym_enum] = ACTIONS(3666), + [anon_sym_class] = ACTIONS(3666), + [anon_sym_struct] = ACTIONS(3666), + [anon_sym_union] = ACTIONS(3666), + [anon_sym_if] = ACTIONS(3666), + [anon_sym_else] = ACTIONS(3666), + [anon_sym_switch] = ACTIONS(3666), + [anon_sym_case] = ACTIONS(3666), + [anon_sym_default] = ACTIONS(3666), + [anon_sym_while] = ACTIONS(3666), + [anon_sym_do] = ACTIONS(3666), + [anon_sym_for] = ACTIONS(3666), + [anon_sym_return] = ACTIONS(3666), + [anon_sym_break] = ACTIONS(3666), + [anon_sym_continue] = ACTIONS(3666), + [anon_sym_goto] = ACTIONS(3666), + [anon_sym___try] = ACTIONS(3666), + [anon_sym___leave] = ACTIONS(3666), + [anon_sym_not] = ACTIONS(3666), + [anon_sym_compl] = ACTIONS(3666), + [anon_sym_DASH_DASH] = ACTIONS(3668), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_sizeof] = ACTIONS(3666), + [anon_sym___alignof__] = ACTIONS(3666), + [anon_sym___alignof] = ACTIONS(3666), + [anon_sym__alignof] = ACTIONS(3666), + [anon_sym_alignof] = ACTIONS(3666), + [anon_sym__Alignof] = ACTIONS(3666), + [anon_sym_offsetof] = ACTIONS(3666), + [anon_sym__Generic] = ACTIONS(3666), + [anon_sym_typename] = ACTIONS(3666), + [anon_sym_asm] = ACTIONS(3666), + [anon_sym___asm__] = ACTIONS(3666), + [anon_sym___asm] = ACTIONS(3666), + [sym_number_literal] = ACTIONS(3668), + [anon_sym_L_SQUOTE] = ACTIONS(3668), + [anon_sym_u_SQUOTE] = ACTIONS(3668), + [anon_sym_U_SQUOTE] = ACTIONS(3668), + [anon_sym_u8_SQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3668), + [anon_sym_L_DQUOTE] = ACTIONS(3668), + [anon_sym_u_DQUOTE] = ACTIONS(3668), + [anon_sym_U_DQUOTE] = ACTIONS(3668), + [anon_sym_u8_DQUOTE] = ACTIONS(3668), + [anon_sym_DQUOTE] = ACTIONS(3668), + [sym_true] = ACTIONS(3666), + [sym_false] = ACTIONS(3666), + [anon_sym_NULL] = ACTIONS(3666), + [anon_sym_nullptr] = ACTIONS(3666), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3666), + [anon_sym_decltype] = ACTIONS(3666), + [anon_sym_explicit] = ACTIONS(3666), + [anon_sym_export] = ACTIONS(3666), + [anon_sym_module] = ACTIONS(3666), + [anon_sym_import] = ACTIONS(3666), + [anon_sym_template] = ACTIONS(3666), + [anon_sym_operator] = ACTIONS(3666), + [anon_sym_try] = ACTIONS(3666), + [anon_sym_delete] = ACTIONS(3666), + [anon_sym_throw] = ACTIONS(3666), + [anon_sym_namespace] = ACTIONS(3666), + [anon_sym_static_assert] = ACTIONS(3666), + [anon_sym_concept] = ACTIONS(3666), + [anon_sym_co_return] = ACTIONS(3666), + [anon_sym_co_yield] = ACTIONS(3666), + [anon_sym_R_DQUOTE] = ACTIONS(3668), + [anon_sym_LR_DQUOTE] = ACTIONS(3668), + [anon_sym_uR_DQUOTE] = ACTIONS(3668), + [anon_sym_UR_DQUOTE] = ACTIONS(3668), + [anon_sym_u8R_DQUOTE] = ACTIONS(3668), + [anon_sym_co_await] = ACTIONS(3666), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_requires] = ACTIONS(3666), + [anon_sym_CARET_CARET] = ACTIONS(3668), + [anon_sym_LBRACK_COLON] = ACTIONS(3668), + [sym_this] = ACTIONS(3666), }, - [STATE(372)] = { - [sym_identifier] = ACTIONS(3668), - [aux_sym_preproc_include_token1] = ACTIONS(3668), - [aux_sym_preproc_def_token1] = ACTIONS(3668), - [aux_sym_preproc_if_token1] = ACTIONS(3668), - [aux_sym_preproc_if_token2] = ACTIONS(3668), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), - [aux_sym_preproc_else_token1] = ACTIONS(3668), - [aux_sym_preproc_elif_token1] = ACTIONS(3668), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3668), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3668), - [sym_preproc_directive] = ACTIONS(3668), - [anon_sym_LPAREN2] = ACTIONS(3670), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_TILDE] = ACTIONS(3670), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3670), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_SEMI] = ACTIONS(3670), - [anon_sym___extension__] = ACTIONS(3668), - [anon_sym_typedef] = ACTIONS(3668), - [anon_sym_virtual] = ACTIONS(3668), - [anon_sym_extern] = ACTIONS(3668), - [anon_sym___attribute__] = ACTIONS(3668), - [anon_sym___attribute] = ACTIONS(3668), - [anon_sym_using] = ACTIONS(3668), - [anon_sym_COLON_COLON] = ACTIONS(3670), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), - [anon_sym___declspec] = ACTIONS(3668), - [anon_sym___based] = ACTIONS(3668), - [anon_sym___cdecl] = ACTIONS(3668), - [anon_sym___clrcall] = ACTIONS(3668), - [anon_sym___stdcall] = ACTIONS(3668), - [anon_sym___fastcall] = ACTIONS(3668), - [anon_sym___thiscall] = ACTIONS(3668), - [anon_sym___vectorcall] = ACTIONS(3668), - [anon_sym_LBRACE] = ACTIONS(3670), - [anon_sym_signed] = ACTIONS(3668), - [anon_sym_unsigned] = ACTIONS(3668), - [anon_sym_long] = ACTIONS(3668), - [anon_sym_short] = ACTIONS(3668), - [anon_sym_LBRACK] = ACTIONS(3668), - [anon_sym_static] = ACTIONS(3668), - [anon_sym_register] = ACTIONS(3668), - [anon_sym_inline] = ACTIONS(3668), - [anon_sym___inline] = ACTIONS(3668), - [anon_sym___inline__] = ACTIONS(3668), - [anon_sym___forceinline] = ACTIONS(3668), - [anon_sym_thread_local] = ACTIONS(3668), - [anon_sym___thread] = ACTIONS(3668), - [anon_sym_const] = ACTIONS(3668), - [anon_sym_constexpr] = ACTIONS(3668), - [anon_sym_volatile] = ACTIONS(3668), - [anon_sym_restrict] = ACTIONS(3668), - [anon_sym___restrict__] = ACTIONS(3668), - [anon_sym__Atomic] = ACTIONS(3668), - [anon_sym__Noreturn] = ACTIONS(3668), - [anon_sym_noreturn] = ACTIONS(3668), - [anon_sym__Nonnull] = ACTIONS(3668), - [anon_sym_mutable] = ACTIONS(3668), - [anon_sym_constinit] = ACTIONS(3668), - [anon_sym_consteval] = ACTIONS(3668), - [anon_sym_alignas] = ACTIONS(3668), - [anon_sym__Alignas] = ACTIONS(3668), - [sym_primitive_type] = ACTIONS(3668), - [anon_sym_enum] = ACTIONS(3668), - [anon_sym_class] = ACTIONS(3668), - [anon_sym_struct] = ACTIONS(3668), - [anon_sym_union] = ACTIONS(3668), - [anon_sym_if] = ACTIONS(3668), - [anon_sym_else] = ACTIONS(3668), - [anon_sym_switch] = ACTIONS(3668), - [anon_sym_case] = ACTIONS(3668), - [anon_sym_default] = ACTIONS(3668), - [anon_sym_while] = ACTIONS(3668), - [anon_sym_do] = ACTIONS(3668), - [anon_sym_for] = ACTIONS(3668), - [anon_sym_return] = ACTIONS(3668), - [anon_sym_break] = ACTIONS(3668), - [anon_sym_continue] = ACTIONS(3668), - [anon_sym_goto] = ACTIONS(3668), - [anon_sym___try] = ACTIONS(3668), - [anon_sym___leave] = ACTIONS(3668), - [anon_sym_not] = ACTIONS(3668), - [anon_sym_compl] = ACTIONS(3668), - [anon_sym_DASH_DASH] = ACTIONS(3670), - [anon_sym_PLUS_PLUS] = ACTIONS(3670), - [anon_sym_sizeof] = ACTIONS(3668), - [anon_sym___alignof__] = ACTIONS(3668), - [anon_sym___alignof] = ACTIONS(3668), - [anon_sym__alignof] = ACTIONS(3668), - [anon_sym_alignof] = ACTIONS(3668), - [anon_sym__Alignof] = ACTIONS(3668), - [anon_sym_offsetof] = ACTIONS(3668), - [anon_sym__Generic] = ACTIONS(3668), - [anon_sym_typename] = ACTIONS(3668), - [anon_sym_asm] = ACTIONS(3668), - [anon_sym___asm__] = ACTIONS(3668), - [anon_sym___asm] = ACTIONS(3668), - [sym_number_literal] = ACTIONS(3670), - [anon_sym_L_SQUOTE] = ACTIONS(3670), - [anon_sym_u_SQUOTE] = ACTIONS(3670), - [anon_sym_U_SQUOTE] = ACTIONS(3670), - [anon_sym_u8_SQUOTE] = ACTIONS(3670), - [anon_sym_SQUOTE] = ACTIONS(3670), - [anon_sym_L_DQUOTE] = ACTIONS(3670), - [anon_sym_u_DQUOTE] = ACTIONS(3670), - [anon_sym_U_DQUOTE] = ACTIONS(3670), - [anon_sym_u8_DQUOTE] = ACTIONS(3670), - [anon_sym_DQUOTE] = ACTIONS(3670), - [sym_true] = ACTIONS(3668), - [sym_false] = ACTIONS(3668), - [anon_sym_NULL] = ACTIONS(3668), - [anon_sym_nullptr] = ACTIONS(3668), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3668), - [anon_sym_decltype] = ACTIONS(3668), - [anon_sym_explicit] = ACTIONS(3668), - [anon_sym_template] = ACTIONS(3668), - [anon_sym_operator] = ACTIONS(3668), - [anon_sym_try] = ACTIONS(3668), - [anon_sym_delete] = ACTIONS(3668), - [anon_sym_throw] = ACTIONS(3668), - [anon_sym_namespace] = ACTIONS(3668), - [anon_sym_static_assert] = ACTIONS(3668), - [anon_sym_concept] = ACTIONS(3668), - [anon_sym_co_return] = ACTIONS(3668), - [anon_sym_co_yield] = ACTIONS(3668), - [anon_sym_R_DQUOTE] = ACTIONS(3670), - [anon_sym_LR_DQUOTE] = ACTIONS(3670), - [anon_sym_uR_DQUOTE] = ACTIONS(3670), - [anon_sym_UR_DQUOTE] = ACTIONS(3670), - [anon_sym_u8R_DQUOTE] = ACTIONS(3670), - [anon_sym_co_await] = ACTIONS(3668), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_requires] = ACTIONS(3668), - [anon_sym_CARET_CARET] = ACTIONS(3670), - [anon_sym_LBRACK_COLON] = ACTIONS(3670), - [sym_this] = ACTIONS(3668), + [STATE(382)] = { + [sym_expression] = STATE(6487), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(3106), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3123), + [anon_sym_typedef] = ACTIONS(3126), + [anon_sym_virtual] = ACTIONS(3128), + [anon_sym_extern] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym___declspec] = ACTIONS(3128), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_register] = ACTIONS(3128), + [anon_sym_inline] = ACTIONS(3128), + [anon_sym___inline] = ACTIONS(3128), + [anon_sym___inline__] = ACTIONS(3128), + [anon_sym___forceinline] = ACTIONS(3128), + [anon_sym_thread_local] = ACTIONS(3128), + [anon_sym___thread] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3139), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(3145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(3148), + [sym_this] = ACTIONS(237), }, - [STATE(373)] = { - [sym_identifier] = ACTIONS(3672), - [aux_sym_preproc_include_token1] = ACTIONS(3672), - [aux_sym_preproc_def_token1] = ACTIONS(3672), - [aux_sym_preproc_if_token1] = ACTIONS(3672), - [aux_sym_preproc_if_token2] = ACTIONS(3672), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3672), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3672), - [aux_sym_preproc_else_token1] = ACTIONS(3672), - [aux_sym_preproc_elif_token1] = ACTIONS(3672), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3672), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3672), - [sym_preproc_directive] = ACTIONS(3672), - [anon_sym_LPAREN2] = ACTIONS(3674), - [anon_sym_BANG] = ACTIONS(3674), - [anon_sym_TILDE] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_STAR] = ACTIONS(3674), - [anon_sym_AMP_AMP] = ACTIONS(3674), - [anon_sym_AMP] = ACTIONS(3672), - [anon_sym_SEMI] = ACTIONS(3674), - [anon_sym___extension__] = ACTIONS(3672), - [anon_sym_typedef] = ACTIONS(3672), - [anon_sym_virtual] = ACTIONS(3672), - [anon_sym_extern] = ACTIONS(3672), - [anon_sym___attribute__] = ACTIONS(3672), - [anon_sym___attribute] = ACTIONS(3672), - [anon_sym_using] = ACTIONS(3672), - [anon_sym_COLON_COLON] = ACTIONS(3674), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3674), - [anon_sym___declspec] = ACTIONS(3672), - [anon_sym___based] = ACTIONS(3672), - [anon_sym___cdecl] = ACTIONS(3672), - [anon_sym___clrcall] = ACTIONS(3672), - [anon_sym___stdcall] = ACTIONS(3672), - [anon_sym___fastcall] = ACTIONS(3672), - [anon_sym___thiscall] = ACTIONS(3672), - [anon_sym___vectorcall] = ACTIONS(3672), - [anon_sym_LBRACE] = ACTIONS(3674), - [anon_sym_signed] = ACTIONS(3672), - [anon_sym_unsigned] = ACTIONS(3672), - [anon_sym_long] = ACTIONS(3672), - [anon_sym_short] = ACTIONS(3672), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_static] = ACTIONS(3672), - [anon_sym_register] = ACTIONS(3672), - [anon_sym_inline] = ACTIONS(3672), - [anon_sym___inline] = ACTIONS(3672), - [anon_sym___inline__] = ACTIONS(3672), - [anon_sym___forceinline] = ACTIONS(3672), - [anon_sym_thread_local] = ACTIONS(3672), - [anon_sym___thread] = ACTIONS(3672), - [anon_sym_const] = ACTIONS(3672), - [anon_sym_constexpr] = ACTIONS(3672), - [anon_sym_volatile] = ACTIONS(3672), - [anon_sym_restrict] = ACTIONS(3672), - [anon_sym___restrict__] = ACTIONS(3672), - [anon_sym__Atomic] = ACTIONS(3672), - [anon_sym__Noreturn] = ACTIONS(3672), - [anon_sym_noreturn] = ACTIONS(3672), - [anon_sym__Nonnull] = ACTIONS(3672), - [anon_sym_mutable] = ACTIONS(3672), - [anon_sym_constinit] = ACTIONS(3672), - [anon_sym_consteval] = ACTIONS(3672), - [anon_sym_alignas] = ACTIONS(3672), - [anon_sym__Alignas] = ACTIONS(3672), - [sym_primitive_type] = ACTIONS(3672), - [anon_sym_enum] = ACTIONS(3672), - [anon_sym_class] = ACTIONS(3672), - [anon_sym_struct] = ACTIONS(3672), - [anon_sym_union] = ACTIONS(3672), - [anon_sym_if] = ACTIONS(3672), - [anon_sym_else] = ACTIONS(3672), - [anon_sym_switch] = ACTIONS(3672), - [anon_sym_case] = ACTIONS(3672), - [anon_sym_default] = ACTIONS(3672), - [anon_sym_while] = ACTIONS(3672), - [anon_sym_do] = ACTIONS(3672), - [anon_sym_for] = ACTIONS(3672), - [anon_sym_return] = ACTIONS(3672), - [anon_sym_break] = ACTIONS(3672), - [anon_sym_continue] = ACTIONS(3672), - [anon_sym_goto] = ACTIONS(3672), - [anon_sym___try] = ACTIONS(3672), - [anon_sym___leave] = ACTIONS(3672), - [anon_sym_not] = ACTIONS(3672), - [anon_sym_compl] = ACTIONS(3672), - [anon_sym_DASH_DASH] = ACTIONS(3674), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_sizeof] = ACTIONS(3672), - [anon_sym___alignof__] = ACTIONS(3672), - [anon_sym___alignof] = ACTIONS(3672), - [anon_sym__alignof] = ACTIONS(3672), - [anon_sym_alignof] = ACTIONS(3672), - [anon_sym__Alignof] = ACTIONS(3672), - [anon_sym_offsetof] = ACTIONS(3672), - [anon_sym__Generic] = ACTIONS(3672), - [anon_sym_typename] = ACTIONS(3672), - [anon_sym_asm] = ACTIONS(3672), - [anon_sym___asm__] = ACTIONS(3672), - [anon_sym___asm] = ACTIONS(3672), - [sym_number_literal] = ACTIONS(3674), - [anon_sym_L_SQUOTE] = ACTIONS(3674), - [anon_sym_u_SQUOTE] = ACTIONS(3674), - [anon_sym_U_SQUOTE] = ACTIONS(3674), - [anon_sym_u8_SQUOTE] = ACTIONS(3674), - [anon_sym_SQUOTE] = ACTIONS(3674), - [anon_sym_L_DQUOTE] = ACTIONS(3674), - [anon_sym_u_DQUOTE] = ACTIONS(3674), - [anon_sym_U_DQUOTE] = ACTIONS(3674), - [anon_sym_u8_DQUOTE] = ACTIONS(3674), - [anon_sym_DQUOTE] = ACTIONS(3674), - [sym_true] = ACTIONS(3672), - [sym_false] = ACTIONS(3672), - [anon_sym_NULL] = ACTIONS(3672), - [anon_sym_nullptr] = ACTIONS(3672), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3672), - [anon_sym_decltype] = ACTIONS(3672), - [anon_sym_explicit] = ACTIONS(3672), - [anon_sym_template] = ACTIONS(3672), - [anon_sym_operator] = ACTIONS(3672), - [anon_sym_try] = ACTIONS(3672), - [anon_sym_delete] = ACTIONS(3672), - [anon_sym_throw] = ACTIONS(3672), - [anon_sym_namespace] = ACTIONS(3672), - [anon_sym_static_assert] = ACTIONS(3672), - [anon_sym_concept] = ACTIONS(3672), - [anon_sym_co_return] = ACTIONS(3672), - [anon_sym_co_yield] = ACTIONS(3672), - [anon_sym_R_DQUOTE] = ACTIONS(3674), - [anon_sym_LR_DQUOTE] = ACTIONS(3674), - [anon_sym_uR_DQUOTE] = ACTIONS(3674), - [anon_sym_UR_DQUOTE] = ACTIONS(3674), - [anon_sym_u8R_DQUOTE] = ACTIONS(3674), - [anon_sym_co_await] = ACTIONS(3672), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_requires] = ACTIONS(3672), - [anon_sym_CARET_CARET] = ACTIONS(3674), - [anon_sym_LBRACK_COLON] = ACTIONS(3674), - [sym_this] = ACTIONS(3672), + [STATE(383)] = { + [sym_identifier] = ACTIONS(3670), + [aux_sym_preproc_include_token1] = ACTIONS(3670), + [aux_sym_preproc_def_token1] = ACTIONS(3670), + [aux_sym_preproc_if_token1] = ACTIONS(3670), + [aux_sym_preproc_if_token2] = ACTIONS(3670), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3670), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3670), + [aux_sym_preproc_else_token1] = ACTIONS(3670), + [aux_sym_preproc_elif_token1] = ACTIONS(3670), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3670), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3670), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3672), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_TILDE] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_STAR] = ACTIONS(3672), + [anon_sym_AMP_AMP] = ACTIONS(3672), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym___extension__] = ACTIONS(3670), + [anon_sym_typedef] = ACTIONS(3670), + [anon_sym_virtual] = ACTIONS(3670), + [anon_sym_extern] = ACTIONS(3670), + [anon_sym___attribute__] = ACTIONS(3670), + [anon_sym___attribute] = ACTIONS(3670), + [anon_sym_using] = ACTIONS(3670), + [anon_sym_COLON_COLON] = ACTIONS(3672), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3672), + [anon_sym___declspec] = ACTIONS(3670), + [anon_sym___based] = ACTIONS(3670), + [anon_sym___cdecl] = ACTIONS(3670), + [anon_sym___clrcall] = ACTIONS(3670), + [anon_sym___stdcall] = ACTIONS(3670), + [anon_sym___fastcall] = ACTIONS(3670), + [anon_sym___thiscall] = ACTIONS(3670), + [anon_sym___vectorcall] = ACTIONS(3670), + [anon_sym_LBRACE] = ACTIONS(3672), + [anon_sym_signed] = ACTIONS(3670), + [anon_sym_unsigned] = ACTIONS(3670), + [anon_sym_long] = ACTIONS(3670), + [anon_sym_short] = ACTIONS(3670), + [anon_sym_LBRACK] = ACTIONS(3670), + [anon_sym_static] = ACTIONS(3670), + [anon_sym_register] = ACTIONS(3670), + [anon_sym_inline] = ACTIONS(3670), + [anon_sym___inline] = ACTIONS(3670), + [anon_sym___inline__] = ACTIONS(3670), + [anon_sym___forceinline] = ACTIONS(3670), + [anon_sym_thread_local] = ACTIONS(3670), + [anon_sym___thread] = ACTIONS(3670), + [anon_sym_const] = ACTIONS(3670), + [anon_sym_constexpr] = ACTIONS(3670), + [anon_sym_volatile] = ACTIONS(3670), + [anon_sym_restrict] = ACTIONS(3670), + [anon_sym___restrict__] = ACTIONS(3670), + [anon_sym__Atomic] = ACTIONS(3670), + [anon_sym__Noreturn] = ACTIONS(3670), + [anon_sym_noreturn] = ACTIONS(3670), + [anon_sym__Nonnull] = ACTIONS(3670), + [anon_sym_mutable] = ACTIONS(3670), + [anon_sym_constinit] = ACTIONS(3670), + [anon_sym_consteval] = ACTIONS(3670), + [anon_sym_alignas] = ACTIONS(3670), + [anon_sym__Alignas] = ACTIONS(3670), + [sym_primitive_type] = ACTIONS(3670), + [anon_sym_enum] = ACTIONS(3670), + [anon_sym_class] = ACTIONS(3670), + [anon_sym_struct] = ACTIONS(3670), + [anon_sym_union] = ACTIONS(3670), + [anon_sym_if] = ACTIONS(3670), + [anon_sym_else] = ACTIONS(3670), + [anon_sym_switch] = ACTIONS(3670), + [anon_sym_case] = ACTIONS(3670), + [anon_sym_default] = ACTIONS(3670), + [anon_sym_while] = ACTIONS(3670), + [anon_sym_do] = ACTIONS(3670), + [anon_sym_for] = ACTIONS(3670), + [anon_sym_return] = ACTIONS(3670), + [anon_sym_break] = ACTIONS(3670), + [anon_sym_continue] = ACTIONS(3670), + [anon_sym_goto] = ACTIONS(3670), + [anon_sym___try] = ACTIONS(3670), + [anon_sym___leave] = ACTIONS(3670), + [anon_sym_not] = ACTIONS(3670), + [anon_sym_compl] = ACTIONS(3670), + [anon_sym_DASH_DASH] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3672), + [anon_sym_sizeof] = ACTIONS(3670), + [anon_sym___alignof__] = ACTIONS(3670), + [anon_sym___alignof] = ACTIONS(3670), + [anon_sym__alignof] = ACTIONS(3670), + [anon_sym_alignof] = ACTIONS(3670), + [anon_sym__Alignof] = ACTIONS(3670), + [anon_sym_offsetof] = ACTIONS(3670), + [anon_sym__Generic] = ACTIONS(3670), + [anon_sym_typename] = ACTIONS(3670), + [anon_sym_asm] = ACTIONS(3670), + [anon_sym___asm__] = ACTIONS(3670), + [anon_sym___asm] = ACTIONS(3670), + [sym_number_literal] = ACTIONS(3672), + [anon_sym_L_SQUOTE] = ACTIONS(3672), + [anon_sym_u_SQUOTE] = ACTIONS(3672), + [anon_sym_U_SQUOTE] = ACTIONS(3672), + [anon_sym_u8_SQUOTE] = ACTIONS(3672), + [anon_sym_SQUOTE] = ACTIONS(3672), + [anon_sym_L_DQUOTE] = ACTIONS(3672), + [anon_sym_u_DQUOTE] = ACTIONS(3672), + [anon_sym_U_DQUOTE] = ACTIONS(3672), + [anon_sym_u8_DQUOTE] = ACTIONS(3672), + [anon_sym_DQUOTE] = ACTIONS(3672), + [sym_true] = ACTIONS(3670), + [sym_false] = ACTIONS(3670), + [anon_sym_NULL] = ACTIONS(3670), + [anon_sym_nullptr] = ACTIONS(3670), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3670), + [anon_sym_decltype] = ACTIONS(3670), + [anon_sym_explicit] = ACTIONS(3670), + [anon_sym_export] = ACTIONS(3670), + [anon_sym_module] = ACTIONS(3670), + [anon_sym_import] = ACTIONS(3670), + [anon_sym_template] = ACTIONS(3670), + [anon_sym_operator] = ACTIONS(3670), + [anon_sym_try] = ACTIONS(3670), + [anon_sym_delete] = ACTIONS(3670), + [anon_sym_throw] = ACTIONS(3670), + [anon_sym_namespace] = ACTIONS(3670), + [anon_sym_static_assert] = ACTIONS(3670), + [anon_sym_concept] = ACTIONS(3670), + [anon_sym_co_return] = ACTIONS(3670), + [anon_sym_co_yield] = ACTIONS(3670), + [anon_sym_R_DQUOTE] = ACTIONS(3672), + [anon_sym_LR_DQUOTE] = ACTIONS(3672), + [anon_sym_uR_DQUOTE] = ACTIONS(3672), + [anon_sym_UR_DQUOTE] = ACTIONS(3672), + [anon_sym_u8R_DQUOTE] = ACTIONS(3672), + [anon_sym_co_await] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3670), + [anon_sym_requires] = ACTIONS(3670), + [anon_sym_CARET_CARET] = ACTIONS(3672), + [anon_sym_LBRACK_COLON] = ACTIONS(3672), + [sym_this] = ACTIONS(3670), }, - [STATE(374)] = { - [sym_identifier] = ACTIONS(3676), - [aux_sym_preproc_include_token1] = ACTIONS(3676), - [aux_sym_preproc_def_token1] = ACTIONS(3676), - [aux_sym_preproc_if_token1] = ACTIONS(3676), - [aux_sym_preproc_if_token2] = ACTIONS(3676), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3676), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3676), - [aux_sym_preproc_else_token1] = ACTIONS(3676), - [aux_sym_preproc_elif_token1] = ACTIONS(3676), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3676), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3676), - [sym_preproc_directive] = ACTIONS(3676), - [anon_sym_LPAREN2] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_TILDE] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_STAR] = ACTIONS(3678), - [anon_sym_AMP_AMP] = ACTIONS(3678), - [anon_sym_AMP] = ACTIONS(3676), - [anon_sym_SEMI] = ACTIONS(3678), - [anon_sym___extension__] = ACTIONS(3676), - [anon_sym_typedef] = ACTIONS(3676), - [anon_sym_virtual] = ACTIONS(3676), - [anon_sym_extern] = ACTIONS(3676), - [anon_sym___attribute__] = ACTIONS(3676), - [anon_sym___attribute] = ACTIONS(3676), - [anon_sym_using] = ACTIONS(3676), - [anon_sym_COLON_COLON] = ACTIONS(3678), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3678), - [anon_sym___declspec] = ACTIONS(3676), - [anon_sym___based] = ACTIONS(3676), - [anon_sym___cdecl] = ACTIONS(3676), - [anon_sym___clrcall] = ACTIONS(3676), - [anon_sym___stdcall] = ACTIONS(3676), - [anon_sym___fastcall] = ACTIONS(3676), - [anon_sym___thiscall] = ACTIONS(3676), - [anon_sym___vectorcall] = ACTIONS(3676), - [anon_sym_LBRACE] = ACTIONS(3678), - [anon_sym_signed] = ACTIONS(3676), - [anon_sym_unsigned] = ACTIONS(3676), - [anon_sym_long] = ACTIONS(3676), - [anon_sym_short] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3676), - [anon_sym_static] = ACTIONS(3676), - [anon_sym_register] = ACTIONS(3676), - [anon_sym_inline] = ACTIONS(3676), - [anon_sym___inline] = ACTIONS(3676), - [anon_sym___inline__] = ACTIONS(3676), - [anon_sym___forceinline] = ACTIONS(3676), - [anon_sym_thread_local] = ACTIONS(3676), - [anon_sym___thread] = ACTIONS(3676), - [anon_sym_const] = ACTIONS(3676), - [anon_sym_constexpr] = ACTIONS(3676), - [anon_sym_volatile] = ACTIONS(3676), - [anon_sym_restrict] = ACTIONS(3676), - [anon_sym___restrict__] = ACTIONS(3676), - [anon_sym__Atomic] = ACTIONS(3676), - [anon_sym__Noreturn] = ACTIONS(3676), - [anon_sym_noreturn] = ACTIONS(3676), - [anon_sym__Nonnull] = ACTIONS(3676), - [anon_sym_mutable] = ACTIONS(3676), - [anon_sym_constinit] = ACTIONS(3676), - [anon_sym_consteval] = ACTIONS(3676), - [anon_sym_alignas] = ACTIONS(3676), - [anon_sym__Alignas] = ACTIONS(3676), - [sym_primitive_type] = ACTIONS(3676), - [anon_sym_enum] = ACTIONS(3676), - [anon_sym_class] = ACTIONS(3676), - [anon_sym_struct] = ACTIONS(3676), - [anon_sym_union] = ACTIONS(3676), - [anon_sym_if] = ACTIONS(3676), - [anon_sym_else] = ACTIONS(3676), - [anon_sym_switch] = ACTIONS(3676), - [anon_sym_case] = ACTIONS(3676), - [anon_sym_default] = ACTIONS(3676), - [anon_sym_while] = ACTIONS(3676), - [anon_sym_do] = ACTIONS(3676), - [anon_sym_for] = ACTIONS(3676), - [anon_sym_return] = ACTIONS(3676), - [anon_sym_break] = ACTIONS(3676), - [anon_sym_continue] = ACTIONS(3676), - [anon_sym_goto] = ACTIONS(3676), - [anon_sym___try] = ACTIONS(3676), - [anon_sym___leave] = ACTIONS(3676), - [anon_sym_not] = ACTIONS(3676), - [anon_sym_compl] = ACTIONS(3676), - [anon_sym_DASH_DASH] = ACTIONS(3678), - [anon_sym_PLUS_PLUS] = ACTIONS(3678), - [anon_sym_sizeof] = ACTIONS(3676), - [anon_sym___alignof__] = ACTIONS(3676), - [anon_sym___alignof] = ACTIONS(3676), - [anon_sym__alignof] = ACTIONS(3676), - [anon_sym_alignof] = ACTIONS(3676), - [anon_sym__Alignof] = ACTIONS(3676), - [anon_sym_offsetof] = ACTIONS(3676), - [anon_sym__Generic] = ACTIONS(3676), - [anon_sym_typename] = ACTIONS(3676), - [anon_sym_asm] = ACTIONS(3676), - [anon_sym___asm__] = ACTIONS(3676), - [anon_sym___asm] = ACTIONS(3676), - [sym_number_literal] = ACTIONS(3678), - [anon_sym_L_SQUOTE] = ACTIONS(3678), - [anon_sym_u_SQUOTE] = ACTIONS(3678), - [anon_sym_U_SQUOTE] = ACTIONS(3678), - [anon_sym_u8_SQUOTE] = ACTIONS(3678), - [anon_sym_SQUOTE] = ACTIONS(3678), - [anon_sym_L_DQUOTE] = ACTIONS(3678), - [anon_sym_u_DQUOTE] = ACTIONS(3678), - [anon_sym_U_DQUOTE] = ACTIONS(3678), - [anon_sym_u8_DQUOTE] = ACTIONS(3678), - [anon_sym_DQUOTE] = ACTIONS(3678), - [sym_true] = ACTIONS(3676), - [sym_false] = ACTIONS(3676), - [anon_sym_NULL] = ACTIONS(3676), - [anon_sym_nullptr] = ACTIONS(3676), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3676), - [anon_sym_decltype] = ACTIONS(3676), - [anon_sym_explicit] = ACTIONS(3676), - [anon_sym_template] = ACTIONS(3676), - [anon_sym_operator] = ACTIONS(3676), - [anon_sym_try] = ACTIONS(3676), - [anon_sym_delete] = ACTIONS(3676), - [anon_sym_throw] = ACTIONS(3676), - [anon_sym_namespace] = ACTIONS(3676), - [anon_sym_static_assert] = ACTIONS(3676), - [anon_sym_concept] = ACTIONS(3676), - [anon_sym_co_return] = ACTIONS(3676), - [anon_sym_co_yield] = ACTIONS(3676), - [anon_sym_R_DQUOTE] = ACTIONS(3678), - [anon_sym_LR_DQUOTE] = ACTIONS(3678), - [anon_sym_uR_DQUOTE] = ACTIONS(3678), - [anon_sym_UR_DQUOTE] = ACTIONS(3678), - [anon_sym_u8R_DQUOTE] = ACTIONS(3678), - [anon_sym_co_await] = ACTIONS(3676), - [anon_sym_new] = ACTIONS(3676), - [anon_sym_requires] = ACTIONS(3676), - [anon_sym_CARET_CARET] = ACTIONS(3678), - [anon_sym_LBRACK_COLON] = ACTIONS(3678), - [sym_this] = ACTIONS(3676), + [STATE(384)] = { + [sym_identifier] = ACTIONS(3674), + [aux_sym_preproc_include_token1] = ACTIONS(3674), + [aux_sym_preproc_def_token1] = ACTIONS(3674), + [aux_sym_preproc_if_token1] = ACTIONS(3674), + [aux_sym_preproc_if_token2] = ACTIONS(3674), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3674), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3674), + [aux_sym_preproc_else_token1] = ACTIONS(3674), + [aux_sym_preproc_elif_token1] = ACTIONS(3674), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3674), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3674), + [sym_preproc_directive] = ACTIONS(3674), + [anon_sym_LPAREN2] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3676), + [anon_sym_TILDE] = ACTIONS(3676), + [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_PLUS] = ACTIONS(3674), + [anon_sym_STAR] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3676), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_SEMI] = ACTIONS(3676), + [anon_sym___extension__] = ACTIONS(3674), + [anon_sym_typedef] = ACTIONS(3674), + [anon_sym_virtual] = ACTIONS(3674), + [anon_sym_extern] = ACTIONS(3674), + [anon_sym___attribute__] = ACTIONS(3674), + [anon_sym___attribute] = ACTIONS(3674), + [anon_sym_using] = ACTIONS(3674), + [anon_sym_COLON_COLON] = ACTIONS(3676), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3676), + [anon_sym___declspec] = ACTIONS(3674), + [anon_sym___based] = ACTIONS(3674), + [anon_sym___cdecl] = ACTIONS(3674), + [anon_sym___clrcall] = ACTIONS(3674), + [anon_sym___stdcall] = ACTIONS(3674), + [anon_sym___fastcall] = ACTIONS(3674), + [anon_sym___thiscall] = ACTIONS(3674), + [anon_sym___vectorcall] = ACTIONS(3674), + [anon_sym_LBRACE] = ACTIONS(3676), + [anon_sym_signed] = ACTIONS(3674), + [anon_sym_unsigned] = ACTIONS(3674), + [anon_sym_long] = ACTIONS(3674), + [anon_sym_short] = ACTIONS(3674), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_static] = ACTIONS(3674), + [anon_sym_register] = ACTIONS(3674), + [anon_sym_inline] = ACTIONS(3674), + [anon_sym___inline] = ACTIONS(3674), + [anon_sym___inline__] = ACTIONS(3674), + [anon_sym___forceinline] = ACTIONS(3674), + [anon_sym_thread_local] = ACTIONS(3674), + [anon_sym___thread] = ACTIONS(3674), + [anon_sym_const] = ACTIONS(3674), + [anon_sym_constexpr] = ACTIONS(3674), + [anon_sym_volatile] = ACTIONS(3674), + [anon_sym_restrict] = ACTIONS(3674), + [anon_sym___restrict__] = ACTIONS(3674), + [anon_sym__Atomic] = ACTIONS(3674), + [anon_sym__Noreturn] = ACTIONS(3674), + [anon_sym_noreturn] = ACTIONS(3674), + [anon_sym__Nonnull] = ACTIONS(3674), + [anon_sym_mutable] = ACTIONS(3674), + [anon_sym_constinit] = ACTIONS(3674), + [anon_sym_consteval] = ACTIONS(3674), + [anon_sym_alignas] = ACTIONS(3674), + [anon_sym__Alignas] = ACTIONS(3674), + [sym_primitive_type] = ACTIONS(3674), + [anon_sym_enum] = ACTIONS(3674), + [anon_sym_class] = ACTIONS(3674), + [anon_sym_struct] = ACTIONS(3674), + [anon_sym_union] = ACTIONS(3674), + [anon_sym_if] = ACTIONS(3674), + [anon_sym_else] = ACTIONS(3674), + [anon_sym_switch] = ACTIONS(3674), + [anon_sym_case] = ACTIONS(3674), + [anon_sym_default] = ACTIONS(3674), + [anon_sym_while] = ACTIONS(3674), + [anon_sym_do] = ACTIONS(3674), + [anon_sym_for] = ACTIONS(3674), + [anon_sym_return] = ACTIONS(3674), + [anon_sym_break] = ACTIONS(3674), + [anon_sym_continue] = ACTIONS(3674), + [anon_sym_goto] = ACTIONS(3674), + [anon_sym___try] = ACTIONS(3674), + [anon_sym___leave] = ACTIONS(3674), + [anon_sym_not] = ACTIONS(3674), + [anon_sym_compl] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [anon_sym_PLUS_PLUS] = ACTIONS(3676), + [anon_sym_sizeof] = ACTIONS(3674), + [anon_sym___alignof__] = ACTIONS(3674), + [anon_sym___alignof] = ACTIONS(3674), + [anon_sym__alignof] = ACTIONS(3674), + [anon_sym_alignof] = ACTIONS(3674), + [anon_sym__Alignof] = ACTIONS(3674), + [anon_sym_offsetof] = ACTIONS(3674), + [anon_sym__Generic] = ACTIONS(3674), + [anon_sym_typename] = ACTIONS(3674), + [anon_sym_asm] = ACTIONS(3674), + [anon_sym___asm__] = ACTIONS(3674), + [anon_sym___asm] = ACTIONS(3674), + [sym_number_literal] = ACTIONS(3676), + [anon_sym_L_SQUOTE] = ACTIONS(3676), + [anon_sym_u_SQUOTE] = ACTIONS(3676), + [anon_sym_U_SQUOTE] = ACTIONS(3676), + [anon_sym_u8_SQUOTE] = ACTIONS(3676), + [anon_sym_SQUOTE] = ACTIONS(3676), + [anon_sym_L_DQUOTE] = ACTIONS(3676), + [anon_sym_u_DQUOTE] = ACTIONS(3676), + [anon_sym_U_DQUOTE] = ACTIONS(3676), + [anon_sym_u8_DQUOTE] = ACTIONS(3676), + [anon_sym_DQUOTE] = ACTIONS(3676), + [sym_true] = ACTIONS(3674), + [sym_false] = ACTIONS(3674), + [anon_sym_NULL] = ACTIONS(3674), + [anon_sym_nullptr] = ACTIONS(3674), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3674), + [anon_sym_decltype] = ACTIONS(3674), + [anon_sym_explicit] = ACTIONS(3674), + [anon_sym_export] = ACTIONS(3674), + [anon_sym_module] = ACTIONS(3674), + [anon_sym_import] = ACTIONS(3674), + [anon_sym_template] = ACTIONS(3674), + [anon_sym_operator] = ACTIONS(3674), + [anon_sym_try] = ACTIONS(3674), + [anon_sym_delete] = ACTIONS(3674), + [anon_sym_throw] = ACTIONS(3674), + [anon_sym_namespace] = ACTIONS(3674), + [anon_sym_static_assert] = ACTIONS(3674), + [anon_sym_concept] = ACTIONS(3674), + [anon_sym_co_return] = ACTIONS(3674), + [anon_sym_co_yield] = ACTIONS(3674), + [anon_sym_R_DQUOTE] = ACTIONS(3676), + [anon_sym_LR_DQUOTE] = ACTIONS(3676), + [anon_sym_uR_DQUOTE] = ACTIONS(3676), + [anon_sym_UR_DQUOTE] = ACTIONS(3676), + [anon_sym_u8R_DQUOTE] = ACTIONS(3676), + [anon_sym_co_await] = ACTIONS(3674), + [anon_sym_new] = ACTIONS(3674), + [anon_sym_requires] = ACTIONS(3674), + [anon_sym_CARET_CARET] = ACTIONS(3676), + [anon_sym_LBRACK_COLON] = ACTIONS(3676), + [sym_this] = ACTIONS(3674), }, - [STATE(375)] = { - [sym_identifier] = ACTIONS(3680), - [aux_sym_preproc_include_token1] = ACTIONS(3680), - [aux_sym_preproc_def_token1] = ACTIONS(3680), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_if_token2] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3680), - [aux_sym_preproc_else_token1] = ACTIONS(3680), - [aux_sym_preproc_elif_token1] = ACTIONS(3680), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3680), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3680), - [sym_preproc_directive] = ACTIONS(3680), - [anon_sym_LPAREN2] = ACTIONS(3682), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(3682), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym___extension__] = ACTIONS(3680), - [anon_sym_typedef] = ACTIONS(3680), - [anon_sym_virtual] = ACTIONS(3680), - [anon_sym_extern] = ACTIONS(3680), - [anon_sym___attribute__] = ACTIONS(3680), - [anon_sym___attribute] = ACTIONS(3680), - [anon_sym_using] = ACTIONS(3680), - [anon_sym_COLON_COLON] = ACTIONS(3682), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3682), - [anon_sym___declspec] = ACTIONS(3680), - [anon_sym___based] = ACTIONS(3680), - [anon_sym___cdecl] = ACTIONS(3680), - [anon_sym___clrcall] = ACTIONS(3680), - [anon_sym___stdcall] = ACTIONS(3680), - [anon_sym___fastcall] = ACTIONS(3680), - [anon_sym___thiscall] = ACTIONS(3680), - [anon_sym___vectorcall] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_signed] = ACTIONS(3680), - [anon_sym_unsigned] = ACTIONS(3680), - [anon_sym_long] = ACTIONS(3680), - [anon_sym_short] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3680), - [anon_sym_static] = ACTIONS(3680), - [anon_sym_register] = ACTIONS(3680), - [anon_sym_inline] = ACTIONS(3680), - [anon_sym___inline] = ACTIONS(3680), - [anon_sym___inline__] = ACTIONS(3680), - [anon_sym___forceinline] = ACTIONS(3680), - [anon_sym_thread_local] = ACTIONS(3680), - [anon_sym___thread] = ACTIONS(3680), - [anon_sym_const] = ACTIONS(3680), - [anon_sym_constexpr] = ACTIONS(3680), - [anon_sym_volatile] = ACTIONS(3680), - [anon_sym_restrict] = ACTIONS(3680), - [anon_sym___restrict__] = ACTIONS(3680), - [anon_sym__Atomic] = ACTIONS(3680), - [anon_sym__Noreturn] = ACTIONS(3680), - [anon_sym_noreturn] = ACTIONS(3680), - [anon_sym__Nonnull] = ACTIONS(3680), - [anon_sym_mutable] = ACTIONS(3680), - [anon_sym_constinit] = ACTIONS(3680), - [anon_sym_consteval] = ACTIONS(3680), - [anon_sym_alignas] = ACTIONS(3680), - [anon_sym__Alignas] = ACTIONS(3680), - [sym_primitive_type] = ACTIONS(3680), - [anon_sym_enum] = ACTIONS(3680), - [anon_sym_class] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(3680), - [anon_sym_union] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(3680), - [anon_sym_else] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_case] = ACTIONS(3680), - [anon_sym_default] = ACTIONS(3680), - [anon_sym_while] = ACTIONS(3680), - [anon_sym_do] = ACTIONS(3680), - [anon_sym_for] = ACTIONS(3680), - [anon_sym_return] = ACTIONS(3680), - [anon_sym_break] = ACTIONS(3680), - [anon_sym_continue] = ACTIONS(3680), - [anon_sym_goto] = ACTIONS(3680), - [anon_sym___try] = ACTIONS(3680), - [anon_sym___leave] = ACTIONS(3680), - [anon_sym_not] = ACTIONS(3680), - [anon_sym_compl] = ACTIONS(3680), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_sizeof] = ACTIONS(3680), - [anon_sym___alignof__] = ACTIONS(3680), - [anon_sym___alignof] = ACTIONS(3680), - [anon_sym__alignof] = ACTIONS(3680), - [anon_sym_alignof] = ACTIONS(3680), - [anon_sym__Alignof] = ACTIONS(3680), - [anon_sym_offsetof] = ACTIONS(3680), - [anon_sym__Generic] = ACTIONS(3680), - [anon_sym_typename] = ACTIONS(3680), - [anon_sym_asm] = ACTIONS(3680), - [anon_sym___asm__] = ACTIONS(3680), - [anon_sym___asm] = ACTIONS(3680), - [sym_number_literal] = ACTIONS(3682), - [anon_sym_L_SQUOTE] = ACTIONS(3682), - [anon_sym_u_SQUOTE] = ACTIONS(3682), - [anon_sym_U_SQUOTE] = ACTIONS(3682), - [anon_sym_u8_SQUOTE] = ACTIONS(3682), - [anon_sym_SQUOTE] = ACTIONS(3682), - [anon_sym_L_DQUOTE] = ACTIONS(3682), - [anon_sym_u_DQUOTE] = ACTIONS(3682), - [anon_sym_U_DQUOTE] = ACTIONS(3682), - [anon_sym_u8_DQUOTE] = ACTIONS(3682), - [anon_sym_DQUOTE] = ACTIONS(3682), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [anon_sym_NULL] = ACTIONS(3680), - [anon_sym_nullptr] = ACTIONS(3680), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3680), - [anon_sym_decltype] = ACTIONS(3680), - [anon_sym_explicit] = ACTIONS(3680), - [anon_sym_template] = ACTIONS(3680), - [anon_sym_operator] = ACTIONS(3680), - [anon_sym_try] = ACTIONS(3680), - [anon_sym_delete] = ACTIONS(3680), - [anon_sym_throw] = ACTIONS(3680), - [anon_sym_namespace] = ACTIONS(3680), - [anon_sym_static_assert] = ACTIONS(3680), - [anon_sym_concept] = ACTIONS(3680), - [anon_sym_co_return] = ACTIONS(3680), - [anon_sym_co_yield] = ACTIONS(3680), - [anon_sym_R_DQUOTE] = ACTIONS(3682), - [anon_sym_LR_DQUOTE] = ACTIONS(3682), - [anon_sym_uR_DQUOTE] = ACTIONS(3682), - [anon_sym_UR_DQUOTE] = ACTIONS(3682), - [anon_sym_u8R_DQUOTE] = ACTIONS(3682), - [anon_sym_co_await] = ACTIONS(3680), - [anon_sym_new] = ACTIONS(3680), - [anon_sym_requires] = ACTIONS(3680), - [anon_sym_CARET_CARET] = ACTIONS(3682), - [anon_sym_LBRACK_COLON] = ACTIONS(3682), - [sym_this] = ACTIONS(3680), + [STATE(385)] = { + [sym_identifier] = ACTIONS(3678), + [aux_sym_preproc_include_token1] = ACTIONS(3678), + [aux_sym_preproc_def_token1] = ACTIONS(3678), + [aux_sym_preproc_if_token1] = ACTIONS(3678), + [aux_sym_preproc_if_token2] = ACTIONS(3678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3678), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3678), + [aux_sym_preproc_else_token1] = ACTIONS(3678), + [aux_sym_preproc_elif_token1] = ACTIONS(3678), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3678), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3678), + [sym_preproc_directive] = ACTIONS(3678), + [anon_sym_LPAREN2] = ACTIONS(3680), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3680), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym___extension__] = ACTIONS(3678), + [anon_sym_typedef] = ACTIONS(3678), + [anon_sym_virtual] = ACTIONS(3678), + [anon_sym_extern] = ACTIONS(3678), + [anon_sym___attribute__] = ACTIONS(3678), + [anon_sym___attribute] = ACTIONS(3678), + [anon_sym_using] = ACTIONS(3678), + [anon_sym_COLON_COLON] = ACTIONS(3680), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3680), + [anon_sym___declspec] = ACTIONS(3678), + [anon_sym___based] = ACTIONS(3678), + [anon_sym___cdecl] = ACTIONS(3678), + [anon_sym___clrcall] = ACTIONS(3678), + [anon_sym___stdcall] = ACTIONS(3678), + [anon_sym___fastcall] = ACTIONS(3678), + [anon_sym___thiscall] = ACTIONS(3678), + [anon_sym___vectorcall] = ACTIONS(3678), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_signed] = ACTIONS(3678), + [anon_sym_unsigned] = ACTIONS(3678), + [anon_sym_long] = ACTIONS(3678), + [anon_sym_short] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_static] = ACTIONS(3678), + [anon_sym_register] = ACTIONS(3678), + [anon_sym_inline] = ACTIONS(3678), + [anon_sym___inline] = ACTIONS(3678), + [anon_sym___inline__] = ACTIONS(3678), + [anon_sym___forceinline] = ACTIONS(3678), + [anon_sym_thread_local] = ACTIONS(3678), + [anon_sym___thread] = ACTIONS(3678), + [anon_sym_const] = ACTIONS(3678), + [anon_sym_constexpr] = ACTIONS(3678), + [anon_sym_volatile] = ACTIONS(3678), + [anon_sym_restrict] = ACTIONS(3678), + [anon_sym___restrict__] = ACTIONS(3678), + [anon_sym__Atomic] = ACTIONS(3678), + [anon_sym__Noreturn] = ACTIONS(3678), + [anon_sym_noreturn] = ACTIONS(3678), + [anon_sym__Nonnull] = ACTIONS(3678), + [anon_sym_mutable] = ACTIONS(3678), + [anon_sym_constinit] = ACTIONS(3678), + [anon_sym_consteval] = ACTIONS(3678), + [anon_sym_alignas] = ACTIONS(3678), + [anon_sym__Alignas] = ACTIONS(3678), + [sym_primitive_type] = ACTIONS(3678), + [anon_sym_enum] = ACTIONS(3678), + [anon_sym_class] = ACTIONS(3678), + [anon_sym_struct] = ACTIONS(3678), + [anon_sym_union] = ACTIONS(3678), + [anon_sym_if] = ACTIONS(3678), + [anon_sym_else] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_case] = ACTIONS(3678), + [anon_sym_default] = ACTIONS(3678), + [anon_sym_while] = ACTIONS(3678), + [anon_sym_do] = ACTIONS(3678), + [anon_sym_for] = ACTIONS(3678), + [anon_sym_return] = ACTIONS(3678), + [anon_sym_break] = ACTIONS(3678), + [anon_sym_continue] = ACTIONS(3678), + [anon_sym_goto] = ACTIONS(3678), + [anon_sym___try] = ACTIONS(3678), + [anon_sym___leave] = ACTIONS(3678), + [anon_sym_not] = ACTIONS(3678), + [anon_sym_compl] = ACTIONS(3678), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_sizeof] = ACTIONS(3678), + [anon_sym___alignof__] = ACTIONS(3678), + [anon_sym___alignof] = ACTIONS(3678), + [anon_sym__alignof] = ACTIONS(3678), + [anon_sym_alignof] = ACTIONS(3678), + [anon_sym__Alignof] = ACTIONS(3678), + [anon_sym_offsetof] = ACTIONS(3678), + [anon_sym__Generic] = ACTIONS(3678), + [anon_sym_typename] = ACTIONS(3678), + [anon_sym_asm] = ACTIONS(3678), + [anon_sym___asm__] = ACTIONS(3678), + [anon_sym___asm] = ACTIONS(3678), + [sym_number_literal] = ACTIONS(3680), + [anon_sym_L_SQUOTE] = ACTIONS(3680), + [anon_sym_u_SQUOTE] = ACTIONS(3680), + [anon_sym_U_SQUOTE] = ACTIONS(3680), + [anon_sym_u8_SQUOTE] = ACTIONS(3680), + [anon_sym_SQUOTE] = ACTIONS(3680), + [anon_sym_L_DQUOTE] = ACTIONS(3680), + [anon_sym_u_DQUOTE] = ACTIONS(3680), + [anon_sym_U_DQUOTE] = ACTIONS(3680), + [anon_sym_u8_DQUOTE] = ACTIONS(3680), + [anon_sym_DQUOTE] = ACTIONS(3680), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [anon_sym_NULL] = ACTIONS(3678), + [anon_sym_nullptr] = ACTIONS(3678), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3678), + [anon_sym_decltype] = ACTIONS(3678), + [anon_sym_explicit] = ACTIONS(3678), + [anon_sym_export] = ACTIONS(3678), + [anon_sym_module] = ACTIONS(3678), + [anon_sym_import] = ACTIONS(3678), + [anon_sym_template] = ACTIONS(3678), + [anon_sym_operator] = ACTIONS(3678), + [anon_sym_try] = ACTIONS(3678), + [anon_sym_delete] = ACTIONS(3678), + [anon_sym_throw] = ACTIONS(3678), + [anon_sym_namespace] = ACTIONS(3678), + [anon_sym_static_assert] = ACTIONS(3678), + [anon_sym_concept] = ACTIONS(3678), + [anon_sym_co_return] = ACTIONS(3678), + [anon_sym_co_yield] = ACTIONS(3678), + [anon_sym_R_DQUOTE] = ACTIONS(3680), + [anon_sym_LR_DQUOTE] = ACTIONS(3680), + [anon_sym_uR_DQUOTE] = ACTIONS(3680), + [anon_sym_UR_DQUOTE] = ACTIONS(3680), + [anon_sym_u8R_DQUOTE] = ACTIONS(3680), + [anon_sym_co_await] = ACTIONS(3678), + [anon_sym_new] = ACTIONS(3678), + [anon_sym_requires] = ACTIONS(3678), + [anon_sym_CARET_CARET] = ACTIONS(3680), + [anon_sym_LBRACK_COLON] = ACTIONS(3680), + [sym_this] = ACTIONS(3678), }, - [STATE(376)] = { + [STATE(386)] = { + [sym_expression] = STATE(6487), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(3106), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3123), + [anon_sym_typedef] = ACTIONS(3682), + [anon_sym_virtual] = ACTIONS(3128), + [anon_sym_extern] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym___declspec] = ACTIONS(3128), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_register] = ACTIONS(3128), + [anon_sym_inline] = ACTIONS(3128), + [anon_sym___inline] = ACTIONS(3128), + [anon_sym___inline__] = ACTIONS(3128), + [anon_sym___forceinline] = ACTIONS(3128), + [anon_sym_thread_local] = ACTIONS(3128), + [anon_sym___thread] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3139), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(3145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(3148), + [sym_this] = ACTIONS(237), + }, + [STATE(387)] = { + [sym_expression] = STATE(6487), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(3106), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3123), + [anon_sym_typedef] = ACTIONS(3151), + [anon_sym_virtual] = ACTIONS(3128), + [anon_sym_extern] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym___declspec] = ACTIONS(3128), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_register] = ACTIONS(3128), + [anon_sym_inline] = ACTIONS(3128), + [anon_sym___inline] = ACTIONS(3128), + [anon_sym___inline__] = ACTIONS(3128), + [anon_sym___forceinline] = ACTIONS(3128), + [anon_sym_thread_local] = ACTIONS(3128), + [anon_sym___thread] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3139), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(3145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(3148), + [sym_this] = ACTIONS(237), + }, + [STATE(388)] = { + [sym_expression] = STATE(6487), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(3106), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3123), + [anon_sym_typedef] = ACTIONS(3157), + [anon_sym_virtual] = ACTIONS(3128), + [anon_sym_extern] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym___declspec] = ACTIONS(3128), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_register] = ACTIONS(3128), + [anon_sym_inline] = ACTIONS(3128), + [anon_sym___inline] = ACTIONS(3128), + [anon_sym___inline__] = ACTIONS(3128), + [anon_sym___forceinline] = ACTIONS(3128), + [anon_sym_thread_local] = ACTIONS(3128), + [anon_sym___thread] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3139), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(3145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(3148), + [sym_this] = ACTIONS(237), + }, + [STATE(389)] = { + [sym_identifier] = ACTIONS(3600), + [aux_sym_preproc_include_token1] = ACTIONS(3600), + [aux_sym_preproc_def_token1] = ACTIONS(3600), + [aux_sym_preproc_if_token1] = ACTIONS(3600), + [aux_sym_preproc_if_token2] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), + [aux_sym_preproc_else_token1] = ACTIONS(3600), + [aux_sym_preproc_elif_token1] = ACTIONS(3600), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3600), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3600), + [sym_preproc_directive] = ACTIONS(3600), + [anon_sym_LPAREN2] = ACTIONS(3602), + [anon_sym_BANG] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3600), + [anon_sym_STAR] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_AMP] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym___extension__] = ACTIONS(3600), + [anon_sym_typedef] = ACTIONS(3600), + [anon_sym_virtual] = ACTIONS(3600), + [anon_sym_extern] = ACTIONS(3600), + [anon_sym___attribute__] = ACTIONS(3600), + [anon_sym___attribute] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), + [anon_sym___declspec] = ACTIONS(3600), + [anon_sym___based] = ACTIONS(3600), + [anon_sym___cdecl] = ACTIONS(3600), + [anon_sym___clrcall] = ACTIONS(3600), + [anon_sym___stdcall] = ACTIONS(3600), + [anon_sym___fastcall] = ACTIONS(3600), + [anon_sym___thiscall] = ACTIONS(3600), + [anon_sym___vectorcall] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_signed] = ACTIONS(3600), + [anon_sym_unsigned] = ACTIONS(3600), + [anon_sym_long] = ACTIONS(3600), + [anon_sym_short] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_register] = ACTIONS(3600), + [anon_sym_inline] = ACTIONS(3600), + [anon_sym___inline] = ACTIONS(3600), + [anon_sym___inline__] = ACTIONS(3600), + [anon_sym___forceinline] = ACTIONS(3600), + [anon_sym_thread_local] = ACTIONS(3600), + [anon_sym___thread] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_constexpr] = ACTIONS(3600), + [anon_sym_volatile] = ACTIONS(3600), + [anon_sym_restrict] = ACTIONS(3600), + [anon_sym___restrict__] = ACTIONS(3600), + [anon_sym__Atomic] = ACTIONS(3600), + [anon_sym__Noreturn] = ACTIONS(3600), + [anon_sym_noreturn] = ACTIONS(3600), + [anon_sym__Nonnull] = ACTIONS(3600), + [anon_sym_mutable] = ACTIONS(3600), + [anon_sym_constinit] = ACTIONS(3600), + [anon_sym_consteval] = ACTIONS(3600), + [anon_sym_alignas] = ACTIONS(3600), + [anon_sym__Alignas] = ACTIONS(3600), + [sym_primitive_type] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_struct] = ACTIONS(3600), + [anon_sym_union] = ACTIONS(3600), + [anon_sym_if] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3600), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_case] = ACTIONS(3600), + [anon_sym_default] = ACTIONS(3600), + [anon_sym_while] = ACTIONS(3600), + [anon_sym_do] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3600), + [anon_sym_return] = ACTIONS(3600), + [anon_sym_break] = ACTIONS(3600), + [anon_sym_continue] = ACTIONS(3600), + [anon_sym_goto] = ACTIONS(3600), + [anon_sym___try] = ACTIONS(3600), + [anon_sym___leave] = ACTIONS(3600), + [anon_sym_not] = ACTIONS(3600), + [anon_sym_compl] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3602), + [anon_sym_PLUS_PLUS] = ACTIONS(3602), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(3600), + [anon_sym___alignof] = ACTIONS(3600), + [anon_sym__alignof] = ACTIONS(3600), + [anon_sym_alignof] = ACTIONS(3600), + [anon_sym__Alignof] = ACTIONS(3600), + [anon_sym_offsetof] = ACTIONS(3600), + [anon_sym__Generic] = ACTIONS(3600), + [anon_sym_typename] = ACTIONS(3600), + [anon_sym_asm] = ACTIONS(3600), + [anon_sym___asm__] = ACTIONS(3600), + [anon_sym___asm] = ACTIONS(3600), + [sym_number_literal] = ACTIONS(3602), + [anon_sym_L_SQUOTE] = ACTIONS(3602), + [anon_sym_u_SQUOTE] = ACTIONS(3602), + [anon_sym_U_SQUOTE] = ACTIONS(3602), + [anon_sym_u8_SQUOTE] = ACTIONS(3602), + [anon_sym_SQUOTE] = ACTIONS(3602), + [anon_sym_L_DQUOTE] = ACTIONS(3602), + [anon_sym_u_DQUOTE] = ACTIONS(3602), + [anon_sym_U_DQUOTE] = ACTIONS(3602), + [anon_sym_u8_DQUOTE] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [sym_true] = ACTIONS(3600), + [sym_false] = ACTIONS(3600), + [anon_sym_NULL] = ACTIONS(3600), + [anon_sym_nullptr] = ACTIONS(3600), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3600), + [anon_sym_decltype] = ACTIONS(3600), + [anon_sym_explicit] = ACTIONS(3600), + [anon_sym_export] = ACTIONS(3600), + [anon_sym_module] = ACTIONS(3600), + [anon_sym_import] = ACTIONS(3600), + [anon_sym_template] = ACTIONS(3600), + [anon_sym_operator] = ACTIONS(3600), + [anon_sym_try] = ACTIONS(3600), + [anon_sym_delete] = ACTIONS(3600), + [anon_sym_throw] = ACTIONS(3600), + [anon_sym_namespace] = ACTIONS(3600), + [anon_sym_static_assert] = ACTIONS(3600), + [anon_sym_concept] = ACTIONS(3600), + [anon_sym_co_return] = ACTIONS(3600), + [anon_sym_co_yield] = ACTIONS(3600), + [anon_sym_R_DQUOTE] = ACTIONS(3602), + [anon_sym_LR_DQUOTE] = ACTIONS(3602), + [anon_sym_uR_DQUOTE] = ACTIONS(3602), + [anon_sym_UR_DQUOTE] = ACTIONS(3602), + [anon_sym_u8R_DQUOTE] = ACTIONS(3602), + [anon_sym_co_await] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3600), + [anon_sym_requires] = ACTIONS(3600), + [anon_sym_CARET_CARET] = ACTIONS(3602), + [anon_sym_LBRACK_COLON] = ACTIONS(3602), + [sym_this] = ACTIONS(3600), + }, + [STATE(390)] = { [sym_identifier] = ACTIONS(3684), [aux_sym_preproc_include_token1] = ACTIONS(3684), [aux_sym_preproc_def_token1] = ACTIONS(3684), @@ -108234,7 +115592,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(3684), [anon_sym_union] = ACTIONS(3684), [anon_sym_if] = ACTIONS(3684), - [anon_sym_else] = ACTIONS(3684), [anon_sym_switch] = ACTIONS(3684), [anon_sym_case] = ACTIONS(3684), [anon_sym_default] = ACTIONS(3684), @@ -108282,6 +115639,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(3684), [anon_sym_decltype] = ACTIONS(3684), [anon_sym_explicit] = ACTIONS(3684), + [anon_sym_export] = ACTIONS(3684), + [anon_sym_module] = ACTIONS(3684), + [anon_sym_import] = ACTIONS(3684), [anon_sym_template] = ACTIONS(3684), [anon_sym_operator] = ACTIONS(3684), [anon_sym_try] = ACTIONS(3684), @@ -108304,5532 +115664,2137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3686), [sym_this] = ACTIONS(3684), }, - [STATE(377)] = { + [STATE(391)] = { + [sym_type_qualifier] = STATE(5177), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(3585), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(6890), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(5965), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7943), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(4088), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [aux_sym__type_definition_type_repeat1] = STATE(5177), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), [sym_identifier] = ACTIONS(3688), - [aux_sym_preproc_include_token1] = ACTIONS(3688), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token2] = ACTIONS(3688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3688), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3688), - [aux_sym_preproc_else_token1] = ACTIONS(3688), - [aux_sym_preproc_elif_token1] = ACTIONS(3688), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3688), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3688), - [sym_preproc_directive] = ACTIONS(3688), [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3690), - [anon_sym_TILDE] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3688), - [anon_sym_PLUS] = ACTIONS(3688), - [anon_sym_STAR] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3690), - [anon_sym_AMP] = ACTIONS(3688), - [anon_sym_SEMI] = ACTIONS(3690), - [anon_sym___extension__] = ACTIONS(3688), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_virtual] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(3688), - [anon_sym___attribute__] = ACTIONS(3688), - [anon_sym___attribute] = ACTIONS(3688), - [anon_sym_using] = ACTIONS(3688), - [anon_sym_COLON_COLON] = ACTIONS(3690), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3690), - [anon_sym___declspec] = ACTIONS(3688), - [anon_sym___based] = ACTIONS(3688), - [anon_sym___cdecl] = ACTIONS(3688), - [anon_sym___clrcall] = ACTIONS(3688), - [anon_sym___stdcall] = ACTIONS(3688), - [anon_sym___fastcall] = ACTIONS(3688), - [anon_sym___thiscall] = ACTIONS(3688), - [anon_sym___vectorcall] = ACTIONS(3688), - [anon_sym_LBRACE] = ACTIONS(3690), - [anon_sym_signed] = ACTIONS(3688), - [anon_sym_unsigned] = ACTIONS(3688), - [anon_sym_long] = ACTIONS(3688), - [anon_sym_short] = ACTIONS(3688), - [anon_sym_LBRACK] = ACTIONS(3688), - [anon_sym_static] = ACTIONS(3688), - [anon_sym_register] = ACTIONS(3688), - [anon_sym_inline] = ACTIONS(3688), - [anon_sym___inline] = ACTIONS(3688), - [anon_sym___inline__] = ACTIONS(3688), - [anon_sym___forceinline] = ACTIONS(3688), - [anon_sym_thread_local] = ACTIONS(3688), - [anon_sym___thread] = ACTIONS(3688), - [anon_sym_const] = ACTIONS(3688), - [anon_sym_constexpr] = ACTIONS(3688), - [anon_sym_volatile] = ACTIONS(3688), - [anon_sym_restrict] = ACTIONS(3688), - [anon_sym___restrict__] = ACTIONS(3688), - [anon_sym__Atomic] = ACTIONS(3688), - [anon_sym__Noreturn] = ACTIONS(3688), - [anon_sym_noreturn] = ACTIONS(3688), - [anon_sym__Nonnull] = ACTIONS(3688), - [anon_sym_mutable] = ACTIONS(3688), - [anon_sym_constinit] = ACTIONS(3688), - [anon_sym_consteval] = ACTIONS(3688), - [anon_sym_alignas] = ACTIONS(3688), - [anon_sym__Alignas] = ACTIONS(3688), - [sym_primitive_type] = ACTIONS(3688), - [anon_sym_enum] = ACTIONS(3688), - [anon_sym_class] = ACTIONS(3688), - [anon_sym_struct] = ACTIONS(3688), - [anon_sym_union] = ACTIONS(3688), - [anon_sym_if] = ACTIONS(3688), - [anon_sym_else] = ACTIONS(3688), - [anon_sym_switch] = ACTIONS(3688), - [anon_sym_case] = ACTIONS(3688), - [anon_sym_default] = ACTIONS(3688), - [anon_sym_while] = ACTIONS(3688), - [anon_sym_do] = ACTIONS(3688), - [anon_sym_for] = ACTIONS(3688), - [anon_sym_return] = ACTIONS(3688), - [anon_sym_break] = ACTIONS(3688), - [anon_sym_continue] = ACTIONS(3688), - [anon_sym_goto] = ACTIONS(3688), - [anon_sym___try] = ACTIONS(3688), - [anon_sym___leave] = ACTIONS(3688), - [anon_sym_not] = ACTIONS(3688), - [anon_sym_compl] = ACTIONS(3688), - [anon_sym_DASH_DASH] = ACTIONS(3690), - [anon_sym_PLUS_PLUS] = ACTIONS(3690), - [anon_sym_sizeof] = ACTIONS(3688), - [anon_sym___alignof__] = ACTIONS(3688), - [anon_sym___alignof] = ACTIONS(3688), - [anon_sym__alignof] = ACTIONS(3688), - [anon_sym_alignof] = ACTIONS(3688), - [anon_sym__Alignof] = ACTIONS(3688), - [anon_sym_offsetof] = ACTIONS(3688), - [anon_sym__Generic] = ACTIONS(3688), - [anon_sym_typename] = ACTIONS(3688), - [anon_sym_asm] = ACTIONS(3688), - [anon_sym___asm__] = ACTIONS(3688), - [anon_sym___asm] = ACTIONS(3688), - [sym_number_literal] = ACTIONS(3690), - [anon_sym_L_SQUOTE] = ACTIONS(3690), - [anon_sym_u_SQUOTE] = ACTIONS(3690), - [anon_sym_U_SQUOTE] = ACTIONS(3690), - [anon_sym_u8_SQUOTE] = ACTIONS(3690), - [anon_sym_SQUOTE] = ACTIONS(3690), - [anon_sym_L_DQUOTE] = ACTIONS(3690), - [anon_sym_u_DQUOTE] = ACTIONS(3690), - [anon_sym_U_DQUOTE] = ACTIONS(3690), - [anon_sym_u8_DQUOTE] = ACTIONS(3690), - [anon_sym_DQUOTE] = ACTIONS(3690), - [sym_true] = ACTIONS(3688), - [sym_false] = ACTIONS(3688), - [anon_sym_NULL] = ACTIONS(3688), - [anon_sym_nullptr] = ACTIONS(3688), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3688), - [anon_sym_decltype] = ACTIONS(3688), - [anon_sym_explicit] = ACTIONS(3688), - [anon_sym_template] = ACTIONS(3688), - [anon_sym_operator] = ACTIONS(3688), - [anon_sym_try] = ACTIONS(3688), - [anon_sym_delete] = ACTIONS(3688), - [anon_sym_throw] = ACTIONS(3688), - [anon_sym_namespace] = ACTIONS(3688), - [anon_sym_static_assert] = ACTIONS(3688), - [anon_sym_concept] = ACTIONS(3688), - [anon_sym_co_return] = ACTIONS(3688), - [anon_sym_co_yield] = ACTIONS(3688), - [anon_sym_R_DQUOTE] = ACTIONS(3690), - [anon_sym_LR_DQUOTE] = ACTIONS(3690), - [anon_sym_uR_DQUOTE] = ACTIONS(3690), - [anon_sym_UR_DQUOTE] = ACTIONS(3690), - [anon_sym_u8R_DQUOTE] = ACTIONS(3690), - [anon_sym_co_await] = ACTIONS(3688), - [anon_sym_new] = ACTIONS(3688), - [anon_sym_requires] = ACTIONS(3688), - [anon_sym_CARET_CARET] = ACTIONS(3690), - [anon_sym_LBRACK_COLON] = ACTIONS(3690), - [sym_this] = ACTIONS(3688), - }, - [STATE(378)] = { - [sym_identifier] = ACTIONS(3692), - [aux_sym_preproc_include_token1] = ACTIONS(3692), - [aux_sym_preproc_def_token1] = ACTIONS(3692), - [aux_sym_preproc_if_token1] = ACTIONS(3692), - [aux_sym_preproc_if_token2] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [aux_sym_preproc_else_token1] = ACTIONS(3692), - [aux_sym_preproc_elif_token1] = ACTIONS(3692), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3692), - [anon_sym_LPAREN2] = ACTIONS(3694), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_TILDE] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3692), - [anon_sym_PLUS] = ACTIONS(3692), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_AMP_AMP] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3694), - [anon_sym___extension__] = ACTIONS(3692), - [anon_sym_typedef] = ACTIONS(3692), - [anon_sym_virtual] = ACTIONS(3692), - [anon_sym_extern] = ACTIONS(3692), - [anon_sym___attribute__] = ACTIONS(3692), - [anon_sym___attribute] = ACTIONS(3692), - [anon_sym_using] = ACTIONS(3692), - [anon_sym_COLON_COLON] = ACTIONS(3694), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3694), - [anon_sym___declspec] = ACTIONS(3692), - [anon_sym___based] = ACTIONS(3692), - [anon_sym___cdecl] = ACTIONS(3692), - [anon_sym___clrcall] = ACTIONS(3692), - [anon_sym___stdcall] = ACTIONS(3692), - [anon_sym___fastcall] = ACTIONS(3692), - [anon_sym___thiscall] = ACTIONS(3692), - [anon_sym___vectorcall] = ACTIONS(3692), - [anon_sym_LBRACE] = ACTIONS(3694), - [anon_sym_signed] = ACTIONS(3692), - [anon_sym_unsigned] = ACTIONS(3692), - [anon_sym_long] = ACTIONS(3692), - [anon_sym_short] = ACTIONS(3692), - [anon_sym_LBRACK] = ACTIONS(3692), - [anon_sym_static] = ACTIONS(3692), - [anon_sym_register] = ACTIONS(3692), - [anon_sym_inline] = ACTIONS(3692), - [anon_sym___inline] = ACTIONS(3692), - [anon_sym___inline__] = ACTIONS(3692), - [anon_sym___forceinline] = ACTIONS(3692), - [anon_sym_thread_local] = ACTIONS(3692), - [anon_sym___thread] = ACTIONS(3692), - [anon_sym_const] = ACTIONS(3692), - [anon_sym_constexpr] = ACTIONS(3692), - [anon_sym_volatile] = ACTIONS(3692), - [anon_sym_restrict] = ACTIONS(3692), - [anon_sym___restrict__] = ACTIONS(3692), - [anon_sym__Atomic] = ACTIONS(3692), - [anon_sym__Noreturn] = ACTIONS(3692), - [anon_sym_noreturn] = ACTIONS(3692), - [anon_sym__Nonnull] = ACTIONS(3692), - [anon_sym_mutable] = ACTIONS(3692), - [anon_sym_constinit] = ACTIONS(3692), - [anon_sym_consteval] = ACTIONS(3692), - [anon_sym_alignas] = ACTIONS(3692), - [anon_sym__Alignas] = ACTIONS(3692), - [sym_primitive_type] = ACTIONS(3692), - [anon_sym_enum] = ACTIONS(3692), - [anon_sym_class] = ACTIONS(3692), - [anon_sym_struct] = ACTIONS(3692), - [anon_sym_union] = ACTIONS(3692), - [anon_sym_if] = ACTIONS(3692), - [anon_sym_else] = ACTIONS(3692), - [anon_sym_switch] = ACTIONS(3692), - [anon_sym_case] = ACTIONS(3692), - [anon_sym_default] = ACTIONS(3692), - [anon_sym_while] = ACTIONS(3692), - [anon_sym_do] = ACTIONS(3692), - [anon_sym_for] = ACTIONS(3692), - [anon_sym_return] = ACTIONS(3692), - [anon_sym_break] = ACTIONS(3692), - [anon_sym_continue] = ACTIONS(3692), - [anon_sym_goto] = ACTIONS(3692), - [anon_sym___try] = ACTIONS(3692), - [anon_sym___leave] = ACTIONS(3692), - [anon_sym_not] = ACTIONS(3692), - [anon_sym_compl] = ACTIONS(3692), - [anon_sym_DASH_DASH] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3694), - [anon_sym_sizeof] = ACTIONS(3692), - [anon_sym___alignof__] = ACTIONS(3692), - [anon_sym___alignof] = ACTIONS(3692), - [anon_sym__alignof] = ACTIONS(3692), - [anon_sym_alignof] = ACTIONS(3692), - [anon_sym__Alignof] = ACTIONS(3692), - [anon_sym_offsetof] = ACTIONS(3692), - [anon_sym__Generic] = ACTIONS(3692), - [anon_sym_typename] = ACTIONS(3692), - [anon_sym_asm] = ACTIONS(3692), - [anon_sym___asm__] = ACTIONS(3692), - [anon_sym___asm] = ACTIONS(3692), - [sym_number_literal] = ACTIONS(3694), - [anon_sym_L_SQUOTE] = ACTIONS(3694), - [anon_sym_u_SQUOTE] = ACTIONS(3694), - [anon_sym_U_SQUOTE] = ACTIONS(3694), - [anon_sym_u8_SQUOTE] = ACTIONS(3694), - [anon_sym_SQUOTE] = ACTIONS(3694), - [anon_sym_L_DQUOTE] = ACTIONS(3694), - [anon_sym_u_DQUOTE] = ACTIONS(3694), - [anon_sym_U_DQUOTE] = ACTIONS(3694), - [anon_sym_u8_DQUOTE] = ACTIONS(3694), - [anon_sym_DQUOTE] = ACTIONS(3694), - [sym_true] = ACTIONS(3692), - [sym_false] = ACTIONS(3692), - [anon_sym_NULL] = ACTIONS(3692), - [anon_sym_nullptr] = ACTIONS(3692), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3692), - [anon_sym_decltype] = ACTIONS(3692), - [anon_sym_explicit] = ACTIONS(3692), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_operator] = ACTIONS(3692), - [anon_sym_try] = ACTIONS(3692), - [anon_sym_delete] = ACTIONS(3692), - [anon_sym_throw] = ACTIONS(3692), - [anon_sym_namespace] = ACTIONS(3692), - [anon_sym_static_assert] = ACTIONS(3692), - [anon_sym_concept] = ACTIONS(3692), - [anon_sym_co_return] = ACTIONS(3692), - [anon_sym_co_yield] = ACTIONS(3692), - [anon_sym_R_DQUOTE] = ACTIONS(3694), - [anon_sym_LR_DQUOTE] = ACTIONS(3694), - [anon_sym_uR_DQUOTE] = ACTIONS(3694), - [anon_sym_UR_DQUOTE] = ACTIONS(3694), - [anon_sym_u8R_DQUOTE] = ACTIONS(3694), - [anon_sym_co_await] = ACTIONS(3692), - [anon_sym_new] = ACTIONS(3692), - [anon_sym_requires] = ACTIONS(3692), - [anon_sym_CARET_CARET] = ACTIONS(3694), - [anon_sym_LBRACK_COLON] = ACTIONS(3694), - [sym_this] = ACTIONS(3692), - }, - [STATE(379)] = { - [sym_identifier] = ACTIONS(2905), - [aux_sym_preproc_include_token1] = ACTIONS(2905), - [aux_sym_preproc_def_token1] = ACTIONS(2905), - [aux_sym_preproc_if_token1] = ACTIONS(2905), - [aux_sym_preproc_if_token2] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2905), - [aux_sym_preproc_else_token1] = ACTIONS(2905), - [aux_sym_preproc_elif_token1] = ACTIONS(2905), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2905), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2905), - [sym_preproc_directive] = ACTIONS(2905), - [anon_sym_LPAREN2] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2910), - [anon_sym_AMP_AMP] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2910), - [anon_sym___extension__] = ACTIONS(2905), - [anon_sym_typedef] = ACTIONS(2905), - [anon_sym_virtual] = ACTIONS(2905), - [anon_sym_extern] = ACTIONS(2905), - [anon_sym___attribute__] = ACTIONS(2905), - [anon_sym___attribute] = ACTIONS(2905), - [anon_sym_using] = ACTIONS(2905), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2910), - [anon_sym___declspec] = ACTIONS(2905), - [anon_sym___based] = ACTIONS(2905), - [anon_sym___cdecl] = ACTIONS(2905), - [anon_sym___clrcall] = ACTIONS(2905), - [anon_sym___stdcall] = ACTIONS(2905), - [anon_sym___fastcall] = ACTIONS(2905), - [anon_sym___thiscall] = ACTIONS(2905), - [anon_sym___vectorcall] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2910), - [anon_sym_signed] = ACTIONS(2905), - [anon_sym_unsigned] = ACTIONS(2905), - [anon_sym_long] = ACTIONS(2905), - [anon_sym_short] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_register] = ACTIONS(2905), - [anon_sym_inline] = ACTIONS(2905), - [anon_sym___inline] = ACTIONS(2905), - [anon_sym___inline__] = ACTIONS(2905), - [anon_sym___forceinline] = ACTIONS(2905), - [anon_sym_thread_local] = ACTIONS(2905), - [anon_sym___thread] = ACTIONS(2905), - [anon_sym_const] = ACTIONS(2905), - [anon_sym_constexpr] = ACTIONS(2905), - [anon_sym_volatile] = ACTIONS(2905), - [anon_sym_restrict] = ACTIONS(2905), - [anon_sym___restrict__] = ACTIONS(2905), - [anon_sym__Atomic] = ACTIONS(2905), - [anon_sym__Noreturn] = ACTIONS(2905), - [anon_sym_noreturn] = ACTIONS(2905), - [anon_sym__Nonnull] = ACTIONS(2905), - [anon_sym_mutable] = ACTIONS(2905), - [anon_sym_constinit] = ACTIONS(2905), - [anon_sym_consteval] = ACTIONS(2905), - [anon_sym_alignas] = ACTIONS(2905), - [anon_sym__Alignas] = ACTIONS(2905), - [sym_primitive_type] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2905), - [anon_sym_class] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2905), - [anon_sym_union] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2905), - [anon_sym_else] = ACTIONS(2905), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2905), - [anon_sym_default] = ACTIONS(2905), - [anon_sym_while] = ACTIONS(2905), - [anon_sym_do] = ACTIONS(2905), - [anon_sym_for] = ACTIONS(2905), - [anon_sym_return] = ACTIONS(2905), - [anon_sym_break] = ACTIONS(2905), - [anon_sym_continue] = ACTIONS(2905), - [anon_sym_goto] = ACTIONS(2905), - [anon_sym___try] = ACTIONS(2905), - [anon_sym___leave] = ACTIONS(2905), - [anon_sym_not] = ACTIONS(2905), - [anon_sym_compl] = ACTIONS(2905), - [anon_sym_DASH_DASH] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2910), - [anon_sym_sizeof] = ACTIONS(2905), - [anon_sym___alignof__] = ACTIONS(2905), - [anon_sym___alignof] = ACTIONS(2905), - [anon_sym__alignof] = ACTIONS(2905), - [anon_sym_alignof] = ACTIONS(2905), - [anon_sym__Alignof] = ACTIONS(2905), - [anon_sym_offsetof] = ACTIONS(2905), - [anon_sym__Generic] = ACTIONS(2905), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_asm] = ACTIONS(2905), - [anon_sym___asm__] = ACTIONS(2905), - [anon_sym___asm] = ACTIONS(2905), - [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(2905), - [sym_false] = ACTIONS(2905), - [anon_sym_NULL] = ACTIONS(2905), - [anon_sym_nullptr] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2905), - [anon_sym_decltype] = ACTIONS(2905), - [anon_sym_explicit] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(2905), - [anon_sym_operator] = ACTIONS(2905), - [anon_sym_try] = ACTIONS(2905), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_throw] = ACTIONS(2905), - [anon_sym_namespace] = ACTIONS(2905), - [anon_sym_static_assert] = ACTIONS(2905), - [anon_sym_concept] = ACTIONS(2905), - [anon_sym_co_return] = ACTIONS(2905), - [anon_sym_co_yield] = ACTIONS(2905), - [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(2905), - [anon_sym_new] = ACTIONS(2905), - [anon_sym_requires] = ACTIONS(2905), - [anon_sym_CARET_CARET] = ACTIONS(2910), - [anon_sym_LBRACK_COLON] = ACTIONS(2910), - [sym_this] = ACTIONS(2905), - }, - [STATE(380)] = { - [sym_identifier] = ACTIONS(3696), - [aux_sym_preproc_include_token1] = ACTIONS(3696), - [aux_sym_preproc_def_token1] = ACTIONS(3696), - [aux_sym_preproc_if_token1] = ACTIONS(3696), - [aux_sym_preproc_if_token2] = ACTIONS(3696), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3696), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3696), - [aux_sym_preproc_else_token1] = ACTIONS(3696), - [aux_sym_preproc_elif_token1] = ACTIONS(3696), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3696), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3696), - [sym_preproc_directive] = ACTIONS(3696), - [anon_sym_LPAREN2] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_TILDE] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3696), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), [anon_sym_AMP] = ACTIONS(3696), - [anon_sym_SEMI] = ACTIONS(3698), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3696), - [anon_sym_virtual] = ACTIONS(3696), - [anon_sym_extern] = ACTIONS(3696), - [anon_sym___attribute__] = ACTIONS(3696), - [anon_sym___attribute] = ACTIONS(3696), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3698), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3698), - [anon_sym___declspec] = ACTIONS(3696), - [anon_sym___based] = ACTIONS(3696), - [anon_sym___cdecl] = ACTIONS(3696), - [anon_sym___clrcall] = ACTIONS(3696), - [anon_sym___stdcall] = ACTIONS(3696), - [anon_sym___fastcall] = ACTIONS(3696), - [anon_sym___thiscall] = ACTIONS(3696), - [anon_sym___vectorcall] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3698), - [anon_sym_signed] = ACTIONS(3696), - [anon_sym_unsigned] = ACTIONS(3696), - [anon_sym_long] = ACTIONS(3696), - [anon_sym_short] = ACTIONS(3696), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_static] = ACTIONS(3696), - [anon_sym_register] = ACTIONS(3696), - [anon_sym_inline] = ACTIONS(3696), - [anon_sym___inline] = ACTIONS(3696), - [anon_sym___inline__] = ACTIONS(3696), - [anon_sym___forceinline] = ACTIONS(3696), - [anon_sym_thread_local] = ACTIONS(3696), - [anon_sym___thread] = ACTIONS(3696), - [anon_sym_const] = ACTIONS(3696), - [anon_sym_constexpr] = ACTIONS(3696), - [anon_sym_volatile] = ACTIONS(3696), - [anon_sym_restrict] = ACTIONS(3696), - [anon_sym___restrict__] = ACTIONS(3696), - [anon_sym__Atomic] = ACTIONS(3696), - [anon_sym__Noreturn] = ACTIONS(3696), - [anon_sym_noreturn] = ACTIONS(3696), - [anon_sym__Nonnull] = ACTIONS(3696), - [anon_sym_mutable] = ACTIONS(3696), - [anon_sym_constinit] = ACTIONS(3696), - [anon_sym_consteval] = ACTIONS(3696), - [anon_sym_alignas] = ACTIONS(3696), - [anon_sym__Alignas] = ACTIONS(3696), - [sym_primitive_type] = ACTIONS(3696), - [anon_sym_enum] = ACTIONS(3696), - [anon_sym_class] = ACTIONS(3696), - [anon_sym_struct] = ACTIONS(3696), - [anon_sym_union] = ACTIONS(3696), - [anon_sym_if] = ACTIONS(3696), - [anon_sym_else] = ACTIONS(3696), - [anon_sym_switch] = ACTIONS(3696), - [anon_sym_case] = ACTIONS(3696), - [anon_sym_default] = ACTIONS(3696), - [anon_sym_while] = ACTIONS(3696), - [anon_sym_do] = ACTIONS(3696), - [anon_sym_for] = ACTIONS(3696), - [anon_sym_return] = ACTIONS(3696), - [anon_sym_break] = ACTIONS(3696), - [anon_sym_continue] = ACTIONS(3696), - [anon_sym_goto] = ACTIONS(3696), - [anon_sym___try] = ACTIONS(3696), - [anon_sym___leave] = ACTIONS(3696), - [anon_sym_not] = ACTIONS(3696), - [anon_sym_compl] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3698), - [anon_sym_sizeof] = ACTIONS(3696), - [anon_sym___alignof__] = ACTIONS(3696), - [anon_sym___alignof] = ACTIONS(3696), - [anon_sym__alignof] = ACTIONS(3696), - [anon_sym_alignof] = ACTIONS(3696), - [anon_sym__Alignof] = ACTIONS(3696), - [anon_sym_offsetof] = ACTIONS(3696), - [anon_sym__Generic] = ACTIONS(3696), - [anon_sym_typename] = ACTIONS(3696), - [anon_sym_asm] = ACTIONS(3696), - [anon_sym___asm__] = ACTIONS(3696), - [anon_sym___asm] = ACTIONS(3696), - [sym_number_literal] = ACTIONS(3698), - [anon_sym_L_SQUOTE] = ACTIONS(3698), - [anon_sym_u_SQUOTE] = ACTIONS(3698), - [anon_sym_U_SQUOTE] = ACTIONS(3698), - [anon_sym_u8_SQUOTE] = ACTIONS(3698), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_L_DQUOTE] = ACTIONS(3698), - [anon_sym_u_DQUOTE] = ACTIONS(3698), - [anon_sym_U_DQUOTE] = ACTIONS(3698), - [anon_sym_u8_DQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3698), - [sym_true] = ACTIONS(3696), - [sym_false] = ACTIONS(3696), - [anon_sym_NULL] = ACTIONS(3696), - [anon_sym_nullptr] = ACTIONS(3696), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3696), - [anon_sym_decltype] = ACTIONS(3696), - [anon_sym_explicit] = ACTIONS(3696), - [anon_sym_template] = ACTIONS(3696), - [anon_sym_operator] = ACTIONS(3696), - [anon_sym_try] = ACTIONS(3696), - [anon_sym_delete] = ACTIONS(3696), - [anon_sym_throw] = ACTIONS(3696), - [anon_sym_namespace] = ACTIONS(3696), - [anon_sym_static_assert] = ACTIONS(3696), - [anon_sym_concept] = ACTIONS(3696), - [anon_sym_co_return] = ACTIONS(3696), - [anon_sym_co_yield] = ACTIONS(3696), - [anon_sym_R_DQUOTE] = ACTIONS(3698), - [anon_sym_LR_DQUOTE] = ACTIONS(3698), - [anon_sym_uR_DQUOTE] = ACTIONS(3698), - [anon_sym_UR_DQUOTE] = ACTIONS(3698), - [anon_sym_u8R_DQUOTE] = ACTIONS(3698), - [anon_sym_co_await] = ACTIONS(3696), - [anon_sym_new] = ACTIONS(3696), - [anon_sym_requires] = ACTIONS(3696), - [anon_sym_CARET_CARET] = ACTIONS(3698), - [anon_sym_LBRACK_COLON] = ACTIONS(3698), - [sym_this] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3698), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(3704), + [anon_sym_class] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_union] = ACTIONS(3710), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3716), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(381)] = { - [sym_identifier] = ACTIONS(3700), - [aux_sym_preproc_include_token1] = ACTIONS(3700), - [aux_sym_preproc_def_token1] = ACTIONS(3700), - [aux_sym_preproc_if_token1] = ACTIONS(3700), - [aux_sym_preproc_if_token2] = ACTIONS(3700), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3700), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3700), - [aux_sym_preproc_else_token1] = ACTIONS(3700), - [aux_sym_preproc_elif_token1] = ACTIONS(3700), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3700), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3700), - [sym_preproc_directive] = ACTIONS(3700), - [anon_sym_LPAREN2] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_TILDE] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3700), - [anon_sym_SEMI] = ACTIONS(3702), - [anon_sym___extension__] = ACTIONS(3700), - [anon_sym_typedef] = ACTIONS(3700), - [anon_sym_virtual] = ACTIONS(3700), - [anon_sym_extern] = ACTIONS(3700), - [anon_sym___attribute__] = ACTIONS(3700), - [anon_sym___attribute] = ACTIONS(3700), - [anon_sym_using] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3702), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3702), - [anon_sym___declspec] = ACTIONS(3700), - [anon_sym___based] = ACTIONS(3700), - [anon_sym___cdecl] = ACTIONS(3700), - [anon_sym___clrcall] = ACTIONS(3700), - [anon_sym___stdcall] = ACTIONS(3700), - [anon_sym___fastcall] = ACTIONS(3700), - [anon_sym___thiscall] = ACTIONS(3700), - [anon_sym___vectorcall] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3702), - [anon_sym_signed] = ACTIONS(3700), - [anon_sym_unsigned] = ACTIONS(3700), - [anon_sym_long] = ACTIONS(3700), - [anon_sym_short] = ACTIONS(3700), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_static] = ACTIONS(3700), - [anon_sym_register] = ACTIONS(3700), - [anon_sym_inline] = ACTIONS(3700), - [anon_sym___inline] = ACTIONS(3700), - [anon_sym___inline__] = ACTIONS(3700), - [anon_sym___forceinline] = ACTIONS(3700), - [anon_sym_thread_local] = ACTIONS(3700), - [anon_sym___thread] = ACTIONS(3700), - [anon_sym_const] = ACTIONS(3700), - [anon_sym_constexpr] = ACTIONS(3700), - [anon_sym_volatile] = ACTIONS(3700), - [anon_sym_restrict] = ACTIONS(3700), - [anon_sym___restrict__] = ACTIONS(3700), - [anon_sym__Atomic] = ACTIONS(3700), - [anon_sym__Noreturn] = ACTIONS(3700), - [anon_sym_noreturn] = ACTIONS(3700), - [anon_sym__Nonnull] = ACTIONS(3700), - [anon_sym_mutable] = ACTIONS(3700), - [anon_sym_constinit] = ACTIONS(3700), - [anon_sym_consteval] = ACTIONS(3700), - [anon_sym_alignas] = ACTIONS(3700), - [anon_sym__Alignas] = ACTIONS(3700), - [sym_primitive_type] = ACTIONS(3700), - [anon_sym_enum] = ACTIONS(3700), - [anon_sym_class] = ACTIONS(3700), - [anon_sym_struct] = ACTIONS(3700), - [anon_sym_union] = ACTIONS(3700), - [anon_sym_if] = ACTIONS(3700), - [anon_sym_else] = ACTIONS(3700), - [anon_sym_switch] = ACTIONS(3700), - [anon_sym_case] = ACTIONS(3700), - [anon_sym_default] = ACTIONS(3700), - [anon_sym_while] = ACTIONS(3700), - [anon_sym_do] = ACTIONS(3700), - [anon_sym_for] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(3700), - [anon_sym_break] = ACTIONS(3700), - [anon_sym_continue] = ACTIONS(3700), - [anon_sym_goto] = ACTIONS(3700), - [anon_sym___try] = ACTIONS(3700), - [anon_sym___leave] = ACTIONS(3700), - [anon_sym_not] = ACTIONS(3700), - [anon_sym_compl] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3702), - [anon_sym_sizeof] = ACTIONS(3700), - [anon_sym___alignof__] = ACTIONS(3700), - [anon_sym___alignof] = ACTIONS(3700), - [anon_sym__alignof] = ACTIONS(3700), - [anon_sym_alignof] = ACTIONS(3700), - [anon_sym__Alignof] = ACTIONS(3700), - [anon_sym_offsetof] = ACTIONS(3700), - [anon_sym__Generic] = ACTIONS(3700), - [anon_sym_typename] = ACTIONS(3700), - [anon_sym_asm] = ACTIONS(3700), - [anon_sym___asm__] = ACTIONS(3700), - [anon_sym___asm] = ACTIONS(3700), - [sym_number_literal] = ACTIONS(3702), - [anon_sym_L_SQUOTE] = ACTIONS(3702), - [anon_sym_u_SQUOTE] = ACTIONS(3702), - [anon_sym_U_SQUOTE] = ACTIONS(3702), - [anon_sym_u8_SQUOTE] = ACTIONS(3702), - [anon_sym_SQUOTE] = ACTIONS(3702), - [anon_sym_L_DQUOTE] = ACTIONS(3702), - [anon_sym_u_DQUOTE] = ACTIONS(3702), - [anon_sym_U_DQUOTE] = ACTIONS(3702), - [anon_sym_u8_DQUOTE] = ACTIONS(3702), - [anon_sym_DQUOTE] = ACTIONS(3702), - [sym_true] = ACTIONS(3700), - [sym_false] = ACTIONS(3700), - [anon_sym_NULL] = ACTIONS(3700), - [anon_sym_nullptr] = ACTIONS(3700), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3700), - [anon_sym_decltype] = ACTIONS(3700), - [anon_sym_explicit] = ACTIONS(3700), - [anon_sym_template] = ACTIONS(3700), - [anon_sym_operator] = ACTIONS(3700), - [anon_sym_try] = ACTIONS(3700), - [anon_sym_delete] = ACTIONS(3700), - [anon_sym_throw] = ACTIONS(3700), - [anon_sym_namespace] = ACTIONS(3700), - [anon_sym_static_assert] = ACTIONS(3700), - [anon_sym_concept] = ACTIONS(3700), - [anon_sym_co_return] = ACTIONS(3700), - [anon_sym_co_yield] = ACTIONS(3700), - [anon_sym_R_DQUOTE] = ACTIONS(3702), - [anon_sym_LR_DQUOTE] = ACTIONS(3702), - [anon_sym_uR_DQUOTE] = ACTIONS(3702), - [anon_sym_UR_DQUOTE] = ACTIONS(3702), - [anon_sym_u8R_DQUOTE] = ACTIONS(3702), - [anon_sym_co_await] = ACTIONS(3700), - [anon_sym_new] = ACTIONS(3700), - [anon_sym_requires] = ACTIONS(3700), - [anon_sym_CARET_CARET] = ACTIONS(3702), - [anon_sym_LBRACK_COLON] = ACTIONS(3702), - [sym_this] = ACTIONS(3700), + [STATE(392)] = { + [sym_type_qualifier] = STATE(5032), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(2426), + [sym_sized_type_specifier] = STATE(3067), + [sym_enum_specifier] = STATE(3067), + [sym_struct_specifier] = STATE(3067), + [sym_union_specifier] = STATE(3067), + [sym_expression] = STATE(5217), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_type_descriptor] = STATE(5609), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_placeholder_type_specifier] = STATE(3067), + [sym_decltype_auto] = STATE(2997), + [sym_decltype] = STATE(2942), + [sym_class_specifier] = STATE(3067), + [sym__class_name] = STATE(10583), + [sym_dependent_type] = STATE(3067), + [sym_template_type] = STATE(2935), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(3059), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(3177), + [sym__splice_specialization_specifier] = STATE(2601), + [sym_splice_type_specifier] = STATE(3041), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [aux_sym__type_definition_type_repeat1] = STATE(5032), + [aux_sym_sized_type_specifier_repeat1] = STATE(2180), + [sym_identifier] = ACTIONS(3724), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(3726), + [anon_sym_signed] = ACTIONS(3728), + [anon_sym_unsigned] = ACTIONS(3728), + [anon_sym_long] = ACTIONS(3728), + [anon_sym_short] = ACTIONS(3728), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3730), + [anon_sym_enum] = ACTIONS(3732), + [anon_sym_class] = ACTIONS(3734), + [anon_sym_struct] = ACTIONS(3736), + [anon_sym_union] = ACTIONS(3738), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(3740), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3742), + [anon_sym_decltype] = ACTIONS(3744), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), }, - [STATE(382)] = { - [sym_identifier] = ACTIONS(3704), - [aux_sym_preproc_include_token1] = ACTIONS(3704), - [aux_sym_preproc_def_token1] = ACTIONS(3704), - [aux_sym_preproc_if_token1] = ACTIONS(3704), - [aux_sym_preproc_if_token2] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), - [aux_sym_preproc_else_token1] = ACTIONS(3704), - [aux_sym_preproc_elif_token1] = ACTIONS(3704), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3704), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3704), - [sym_preproc_directive] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3706), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3706), - [anon_sym___extension__] = ACTIONS(3704), - [anon_sym_typedef] = ACTIONS(3704), - [anon_sym_virtual] = ACTIONS(3704), - [anon_sym_extern] = ACTIONS(3704), - [anon_sym___attribute__] = ACTIONS(3704), - [anon_sym___attribute] = ACTIONS(3704), - [anon_sym_using] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), - [anon_sym___declspec] = ACTIONS(3704), - [anon_sym___based] = ACTIONS(3704), - [anon_sym___cdecl] = ACTIONS(3704), - [anon_sym___clrcall] = ACTIONS(3704), - [anon_sym___stdcall] = ACTIONS(3704), - [anon_sym___fastcall] = ACTIONS(3704), - [anon_sym___thiscall] = ACTIONS(3704), - [anon_sym___vectorcall] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3706), - [anon_sym_signed] = ACTIONS(3704), - [anon_sym_unsigned] = ACTIONS(3704), - [anon_sym_long] = ACTIONS(3704), - [anon_sym_short] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_static] = ACTIONS(3704), - [anon_sym_register] = ACTIONS(3704), - [anon_sym_inline] = ACTIONS(3704), - [anon_sym___inline] = ACTIONS(3704), - [anon_sym___inline__] = ACTIONS(3704), - [anon_sym___forceinline] = ACTIONS(3704), - [anon_sym_thread_local] = ACTIONS(3704), - [anon_sym___thread] = ACTIONS(3704), - [anon_sym_const] = ACTIONS(3704), - [anon_sym_constexpr] = ACTIONS(3704), - [anon_sym_volatile] = ACTIONS(3704), - [anon_sym_restrict] = ACTIONS(3704), - [anon_sym___restrict__] = ACTIONS(3704), - [anon_sym__Atomic] = ACTIONS(3704), - [anon_sym__Noreturn] = ACTIONS(3704), - [anon_sym_noreturn] = ACTIONS(3704), - [anon_sym__Nonnull] = ACTIONS(3704), - [anon_sym_mutable] = ACTIONS(3704), - [anon_sym_constinit] = ACTIONS(3704), - [anon_sym_consteval] = ACTIONS(3704), - [anon_sym_alignas] = ACTIONS(3704), - [anon_sym__Alignas] = ACTIONS(3704), - [sym_primitive_type] = ACTIONS(3704), + [STATE(393)] = { + [sym_type_qualifier] = STATE(5192), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(3801), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(6518), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(5965), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7943), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(4088), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [aux_sym__type_definition_type_repeat1] = STATE(5192), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(3756), + [anon_sym_COLON_COLON] = ACTIONS(3758), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), [anon_sym_enum] = ACTIONS(3704), - [anon_sym_class] = ACTIONS(3704), - [anon_sym_struct] = ACTIONS(3704), - [anon_sym_union] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_else] = ACTIONS(3704), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_case] = ACTIONS(3704), - [anon_sym_default] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_break] = ACTIONS(3704), - [anon_sym_continue] = ACTIONS(3704), - [anon_sym_goto] = ACTIONS(3704), - [anon_sym___try] = ACTIONS(3704), - [anon_sym___leave] = ACTIONS(3704), - [anon_sym_not] = ACTIONS(3704), - [anon_sym_compl] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_sizeof] = ACTIONS(3704), - [anon_sym___alignof__] = ACTIONS(3704), - [anon_sym___alignof] = ACTIONS(3704), - [anon_sym__alignof] = ACTIONS(3704), - [anon_sym_alignof] = ACTIONS(3704), - [anon_sym__Alignof] = ACTIONS(3704), - [anon_sym_offsetof] = ACTIONS(3704), - [anon_sym__Generic] = ACTIONS(3704), - [anon_sym_typename] = ACTIONS(3704), - [anon_sym_asm] = ACTIONS(3704), - [anon_sym___asm__] = ACTIONS(3704), - [anon_sym___asm] = ACTIONS(3704), - [sym_number_literal] = ACTIONS(3706), - [anon_sym_L_SQUOTE] = ACTIONS(3706), - [anon_sym_u_SQUOTE] = ACTIONS(3706), - [anon_sym_U_SQUOTE] = ACTIONS(3706), - [anon_sym_u8_SQUOTE] = ACTIONS(3706), - [anon_sym_SQUOTE] = ACTIONS(3706), - [anon_sym_L_DQUOTE] = ACTIONS(3706), - [anon_sym_u_DQUOTE] = ACTIONS(3706), - [anon_sym_U_DQUOTE] = ACTIONS(3706), - [anon_sym_u8_DQUOTE] = ACTIONS(3706), - [anon_sym_DQUOTE] = ACTIONS(3706), - [sym_true] = ACTIONS(3704), - [sym_false] = ACTIONS(3704), - [anon_sym_NULL] = ACTIONS(3704), - [anon_sym_nullptr] = ACTIONS(3704), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3704), - [anon_sym_decltype] = ACTIONS(3704), - [anon_sym_explicit] = ACTIONS(3704), - [anon_sym_template] = ACTIONS(3704), - [anon_sym_operator] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_delete] = ACTIONS(3704), - [anon_sym_throw] = ACTIONS(3704), - [anon_sym_namespace] = ACTIONS(3704), - [anon_sym_static_assert] = ACTIONS(3704), - [anon_sym_concept] = ACTIONS(3704), - [anon_sym_co_return] = ACTIONS(3704), - [anon_sym_co_yield] = ACTIONS(3704), - [anon_sym_R_DQUOTE] = ACTIONS(3706), - [anon_sym_LR_DQUOTE] = ACTIONS(3706), - [anon_sym_uR_DQUOTE] = ACTIONS(3706), - [anon_sym_UR_DQUOTE] = ACTIONS(3706), - [anon_sym_u8R_DQUOTE] = ACTIONS(3706), - [anon_sym_co_await] = ACTIONS(3704), - [anon_sym_new] = ACTIONS(3704), - [anon_sym_requires] = ACTIONS(3704), - [anon_sym_CARET_CARET] = ACTIONS(3706), - [anon_sym_LBRACK_COLON] = ACTIONS(3706), - [sym_this] = ACTIONS(3704), + [anon_sym_class] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_union] = ACTIONS(3710), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3716), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(383)] = { - [sym_else_clause] = STATE(481), - [ts_builtin_sym_end] = ACTIONS(3620), - [sym_identifier] = ACTIONS(3618), - [aux_sym_preproc_include_token1] = ACTIONS(3618), - [aux_sym_preproc_def_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), - [sym_preproc_directive] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_BANG] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP_AMP] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym___attribute] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym___based] = ACTIONS(3618), - [anon_sym___cdecl] = ACTIONS(3618), - [anon_sym___clrcall] = ACTIONS(3618), - [anon_sym___stdcall] = ACTIONS(3618), - [anon_sym___fastcall] = ACTIONS(3618), - [anon_sym___thiscall] = ACTIONS(3618), - [anon_sym___vectorcall] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym__Nonnull] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym__Alignas] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_else] = ACTIONS(3634), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_case] = ACTIONS(3618), - [anon_sym_default] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_goto] = ACTIONS(3618), - [anon_sym___try] = ACTIONS(3618), - [anon_sym___leave] = ACTIONS(3618), - [anon_sym_not] = ACTIONS(3618), - [anon_sym_compl] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_sizeof] = ACTIONS(3618), - [anon_sym___alignof__] = ACTIONS(3618), - [anon_sym___alignof] = ACTIONS(3618), - [anon_sym__alignof] = ACTIONS(3618), - [anon_sym_alignof] = ACTIONS(3618), - [anon_sym__Alignof] = ACTIONS(3618), - [anon_sym_offsetof] = ACTIONS(3618), - [anon_sym__Generic] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [anon_sym_asm] = ACTIONS(3618), - [anon_sym___asm__] = ACTIONS(3618), - [anon_sym___asm] = ACTIONS(3618), - [sym_number_literal] = ACTIONS(3620), - [anon_sym_L_SQUOTE] = ACTIONS(3620), - [anon_sym_u_SQUOTE] = ACTIONS(3620), - [anon_sym_U_SQUOTE] = ACTIONS(3620), - [anon_sym_u8_SQUOTE] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3620), - [anon_sym_L_DQUOTE] = ACTIONS(3620), - [anon_sym_u_DQUOTE] = ACTIONS(3620), - [anon_sym_U_DQUOTE] = ACTIONS(3620), - [anon_sym_u8_DQUOTE] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(3620), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [anon_sym_NULL] = ACTIONS(3618), - [anon_sym_nullptr] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_explicit] = ACTIONS(3618), - [anon_sym_export] = ACTIONS(3618), - [anon_sym_module] = ACTIONS(3618), - [anon_sym_import] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_operator] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_static_assert] = ACTIONS(3618), - [anon_sym_concept] = ACTIONS(3618), - [anon_sym_co_return] = ACTIONS(3618), - [anon_sym_co_yield] = ACTIONS(3618), - [anon_sym_R_DQUOTE] = ACTIONS(3620), - [anon_sym_LR_DQUOTE] = ACTIONS(3620), - [anon_sym_uR_DQUOTE] = ACTIONS(3620), - [anon_sym_UR_DQUOTE] = ACTIONS(3620), - [anon_sym_u8R_DQUOTE] = ACTIONS(3620), - [anon_sym_co_await] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_requires] = ACTIONS(3618), - [anon_sym_CARET_CARET] = ACTIONS(3620), - [anon_sym_LBRACK_COLON] = ACTIONS(3620), - [sym_this] = ACTIONS(3618), - }, - [STATE(384)] = { - [sym_identifier] = ACTIONS(3708), - [aux_sym_preproc_include_token1] = ACTIONS(3708), - [aux_sym_preproc_def_token1] = ACTIONS(3708), - [aux_sym_preproc_if_token1] = ACTIONS(3708), - [aux_sym_preproc_if_token2] = ACTIONS(3708), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3708), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3708), - [aux_sym_preproc_else_token1] = ACTIONS(3708), - [aux_sym_preproc_elif_token1] = ACTIONS(3708), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3708), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3708), - [sym_preproc_directive] = ACTIONS(3708), - [anon_sym_LPAREN2] = ACTIONS(3710), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3708), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3708), - [anon_sym_SEMI] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3708), - [anon_sym_typedef] = ACTIONS(3708), - [anon_sym_virtual] = ACTIONS(3708), - [anon_sym_extern] = ACTIONS(3708), - [anon_sym___attribute__] = ACTIONS(3708), - [anon_sym___attribute] = ACTIONS(3708), - [anon_sym_using] = ACTIONS(3708), - [anon_sym_COLON_COLON] = ACTIONS(3710), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3710), - [anon_sym___declspec] = ACTIONS(3708), - [anon_sym___based] = ACTIONS(3708), - [anon_sym___cdecl] = ACTIONS(3708), - [anon_sym___clrcall] = ACTIONS(3708), - [anon_sym___stdcall] = ACTIONS(3708), - [anon_sym___fastcall] = ACTIONS(3708), - [anon_sym___thiscall] = ACTIONS(3708), - [anon_sym___vectorcall] = ACTIONS(3708), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_signed] = ACTIONS(3708), - [anon_sym_unsigned] = ACTIONS(3708), - [anon_sym_long] = ACTIONS(3708), - [anon_sym_short] = ACTIONS(3708), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_static] = ACTIONS(3708), - [anon_sym_register] = ACTIONS(3708), - [anon_sym_inline] = ACTIONS(3708), - [anon_sym___inline] = ACTIONS(3708), - [anon_sym___inline__] = ACTIONS(3708), - [anon_sym___forceinline] = ACTIONS(3708), - [anon_sym_thread_local] = ACTIONS(3708), - [anon_sym___thread] = ACTIONS(3708), - [anon_sym_const] = ACTIONS(3708), - [anon_sym_constexpr] = ACTIONS(3708), - [anon_sym_volatile] = ACTIONS(3708), - [anon_sym_restrict] = ACTIONS(3708), - [anon_sym___restrict__] = ACTIONS(3708), - [anon_sym__Atomic] = ACTIONS(3708), - [anon_sym__Noreturn] = ACTIONS(3708), - [anon_sym_noreturn] = ACTIONS(3708), - [anon_sym__Nonnull] = ACTIONS(3708), - [anon_sym_mutable] = ACTIONS(3708), - [anon_sym_constinit] = ACTIONS(3708), - [anon_sym_consteval] = ACTIONS(3708), - [anon_sym_alignas] = ACTIONS(3708), - [anon_sym__Alignas] = ACTIONS(3708), - [sym_primitive_type] = ACTIONS(3708), - [anon_sym_enum] = ACTIONS(3708), - [anon_sym_class] = ACTIONS(3708), - [anon_sym_struct] = ACTIONS(3708), - [anon_sym_union] = ACTIONS(3708), - [anon_sym_if] = ACTIONS(3708), - [anon_sym_else] = ACTIONS(3708), - [anon_sym_switch] = ACTIONS(3708), - [anon_sym_case] = ACTIONS(3708), - [anon_sym_default] = ACTIONS(3708), - [anon_sym_while] = ACTIONS(3708), - [anon_sym_do] = ACTIONS(3708), - [anon_sym_for] = ACTIONS(3708), - [anon_sym_return] = ACTIONS(3708), - [anon_sym_break] = ACTIONS(3708), - [anon_sym_continue] = ACTIONS(3708), - [anon_sym_goto] = ACTIONS(3708), - [anon_sym___try] = ACTIONS(3708), - [anon_sym___leave] = ACTIONS(3708), - [anon_sym_not] = ACTIONS(3708), - [anon_sym_compl] = ACTIONS(3708), - [anon_sym_DASH_DASH] = ACTIONS(3710), - [anon_sym_PLUS_PLUS] = ACTIONS(3710), - [anon_sym_sizeof] = ACTIONS(3708), - [anon_sym___alignof__] = ACTIONS(3708), - [anon_sym___alignof] = ACTIONS(3708), - [anon_sym__alignof] = ACTIONS(3708), - [anon_sym_alignof] = ACTIONS(3708), - [anon_sym__Alignof] = ACTIONS(3708), - [anon_sym_offsetof] = ACTIONS(3708), - [anon_sym__Generic] = ACTIONS(3708), - [anon_sym_typename] = ACTIONS(3708), - [anon_sym_asm] = ACTIONS(3708), - [anon_sym___asm__] = ACTIONS(3708), - [anon_sym___asm] = ACTIONS(3708), - [sym_number_literal] = ACTIONS(3710), - [anon_sym_L_SQUOTE] = ACTIONS(3710), - [anon_sym_u_SQUOTE] = ACTIONS(3710), - [anon_sym_U_SQUOTE] = ACTIONS(3710), - [anon_sym_u8_SQUOTE] = ACTIONS(3710), - [anon_sym_SQUOTE] = ACTIONS(3710), - [anon_sym_L_DQUOTE] = ACTIONS(3710), - [anon_sym_u_DQUOTE] = ACTIONS(3710), - [anon_sym_U_DQUOTE] = ACTIONS(3710), - [anon_sym_u8_DQUOTE] = ACTIONS(3710), - [anon_sym_DQUOTE] = ACTIONS(3710), - [sym_true] = ACTIONS(3708), - [sym_false] = ACTIONS(3708), - [anon_sym_NULL] = ACTIONS(3708), - [anon_sym_nullptr] = ACTIONS(3708), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3708), - [anon_sym_decltype] = ACTIONS(3708), - [anon_sym_explicit] = ACTIONS(3708), - [anon_sym_template] = ACTIONS(3708), - [anon_sym_operator] = ACTIONS(3708), - [anon_sym_try] = ACTIONS(3708), - [anon_sym_delete] = ACTIONS(3708), - [anon_sym_throw] = ACTIONS(3708), - [anon_sym_namespace] = ACTIONS(3708), - [anon_sym_static_assert] = ACTIONS(3708), - [anon_sym_concept] = ACTIONS(3708), - [anon_sym_co_return] = ACTIONS(3708), - [anon_sym_co_yield] = ACTIONS(3708), - [anon_sym_R_DQUOTE] = ACTIONS(3710), - [anon_sym_LR_DQUOTE] = ACTIONS(3710), - [anon_sym_uR_DQUOTE] = ACTIONS(3710), - [anon_sym_UR_DQUOTE] = ACTIONS(3710), - [anon_sym_u8R_DQUOTE] = ACTIONS(3710), - [anon_sym_co_await] = ACTIONS(3708), - [anon_sym_new] = ACTIONS(3708), - [anon_sym_requires] = ACTIONS(3708), - [anon_sym_CARET_CARET] = ACTIONS(3710), - [anon_sym_LBRACK_COLON] = ACTIONS(3710), - [sym_this] = ACTIONS(3708), - }, - [STATE(385)] = { - [sym_identifier] = ACTIONS(3712), - [aux_sym_preproc_include_token1] = ACTIONS(3712), - [aux_sym_preproc_def_token1] = ACTIONS(3712), - [aux_sym_preproc_if_token1] = ACTIONS(3712), - [aux_sym_preproc_if_token2] = ACTIONS(3712), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3712), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3712), - [aux_sym_preproc_else_token1] = ACTIONS(3712), - [aux_sym_preproc_elif_token1] = ACTIONS(3712), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3712), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3712), - [sym_preproc_directive] = ACTIONS(3712), - [anon_sym_LPAREN2] = ACTIONS(3714), - [anon_sym_BANG] = ACTIONS(3714), - [anon_sym_TILDE] = ACTIONS(3714), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3714), - [anon_sym_AMP_AMP] = ACTIONS(3714), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_SEMI] = ACTIONS(3714), - [anon_sym___extension__] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3712), - [anon_sym_virtual] = ACTIONS(3712), - [anon_sym_extern] = ACTIONS(3712), - [anon_sym___attribute__] = ACTIONS(3712), - [anon_sym___attribute] = ACTIONS(3712), - [anon_sym_using] = ACTIONS(3712), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3714), - [anon_sym___declspec] = ACTIONS(3712), - [anon_sym___based] = ACTIONS(3712), - [anon_sym___cdecl] = ACTIONS(3712), - [anon_sym___clrcall] = ACTIONS(3712), - [anon_sym___stdcall] = ACTIONS(3712), - [anon_sym___fastcall] = ACTIONS(3712), - [anon_sym___thiscall] = ACTIONS(3712), - [anon_sym___vectorcall] = ACTIONS(3712), - [anon_sym_LBRACE] = ACTIONS(3714), - [anon_sym_signed] = ACTIONS(3712), - [anon_sym_unsigned] = ACTIONS(3712), - [anon_sym_long] = ACTIONS(3712), - [anon_sym_short] = ACTIONS(3712), - [anon_sym_LBRACK] = ACTIONS(3712), - [anon_sym_static] = ACTIONS(3712), - [anon_sym_register] = ACTIONS(3712), - [anon_sym_inline] = ACTIONS(3712), - [anon_sym___inline] = ACTIONS(3712), - [anon_sym___inline__] = ACTIONS(3712), - [anon_sym___forceinline] = ACTIONS(3712), - [anon_sym_thread_local] = ACTIONS(3712), - [anon_sym___thread] = ACTIONS(3712), - [anon_sym_const] = ACTIONS(3712), - [anon_sym_constexpr] = ACTIONS(3712), - [anon_sym_volatile] = ACTIONS(3712), - [anon_sym_restrict] = ACTIONS(3712), - [anon_sym___restrict__] = ACTIONS(3712), - [anon_sym__Atomic] = ACTIONS(3712), - [anon_sym__Noreturn] = ACTIONS(3712), - [anon_sym_noreturn] = ACTIONS(3712), - [anon_sym__Nonnull] = ACTIONS(3712), - [anon_sym_mutable] = ACTIONS(3712), - [anon_sym_constinit] = ACTIONS(3712), - [anon_sym_consteval] = ACTIONS(3712), - [anon_sym_alignas] = ACTIONS(3712), - [anon_sym__Alignas] = ACTIONS(3712), - [sym_primitive_type] = ACTIONS(3712), - [anon_sym_enum] = ACTIONS(3712), - [anon_sym_class] = ACTIONS(3712), - [anon_sym_struct] = ACTIONS(3712), - [anon_sym_union] = ACTIONS(3712), - [anon_sym_if] = ACTIONS(3712), - [anon_sym_else] = ACTIONS(3712), - [anon_sym_switch] = ACTIONS(3712), - [anon_sym_case] = ACTIONS(3712), - [anon_sym_default] = ACTIONS(3712), - [anon_sym_while] = ACTIONS(3712), - [anon_sym_do] = ACTIONS(3712), - [anon_sym_for] = ACTIONS(3712), - [anon_sym_return] = ACTIONS(3712), - [anon_sym_break] = ACTIONS(3712), - [anon_sym_continue] = ACTIONS(3712), - [anon_sym_goto] = ACTIONS(3712), - [anon_sym___try] = ACTIONS(3712), - [anon_sym___leave] = ACTIONS(3712), - [anon_sym_not] = ACTIONS(3712), - [anon_sym_compl] = ACTIONS(3712), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_sizeof] = ACTIONS(3712), - [anon_sym___alignof__] = ACTIONS(3712), - [anon_sym___alignof] = ACTIONS(3712), - [anon_sym__alignof] = ACTIONS(3712), - [anon_sym_alignof] = ACTIONS(3712), - [anon_sym__Alignof] = ACTIONS(3712), - [anon_sym_offsetof] = ACTIONS(3712), - [anon_sym__Generic] = ACTIONS(3712), - [anon_sym_typename] = ACTIONS(3712), - [anon_sym_asm] = ACTIONS(3712), - [anon_sym___asm__] = ACTIONS(3712), - [anon_sym___asm] = ACTIONS(3712), - [sym_number_literal] = ACTIONS(3714), - [anon_sym_L_SQUOTE] = ACTIONS(3714), - [anon_sym_u_SQUOTE] = ACTIONS(3714), - [anon_sym_U_SQUOTE] = ACTIONS(3714), - [anon_sym_u8_SQUOTE] = ACTIONS(3714), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_L_DQUOTE] = ACTIONS(3714), - [anon_sym_u_DQUOTE] = ACTIONS(3714), - [anon_sym_U_DQUOTE] = ACTIONS(3714), - [anon_sym_u8_DQUOTE] = ACTIONS(3714), - [anon_sym_DQUOTE] = ACTIONS(3714), - [sym_true] = ACTIONS(3712), - [sym_false] = ACTIONS(3712), - [anon_sym_NULL] = ACTIONS(3712), - [anon_sym_nullptr] = ACTIONS(3712), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3712), - [anon_sym_decltype] = ACTIONS(3712), - [anon_sym_explicit] = ACTIONS(3712), - [anon_sym_template] = ACTIONS(3712), - [anon_sym_operator] = ACTIONS(3712), - [anon_sym_try] = ACTIONS(3712), - [anon_sym_delete] = ACTIONS(3712), - [anon_sym_throw] = ACTIONS(3712), - [anon_sym_namespace] = ACTIONS(3712), - [anon_sym_static_assert] = ACTIONS(3712), - [anon_sym_concept] = ACTIONS(3712), - [anon_sym_co_return] = ACTIONS(3712), - [anon_sym_co_yield] = ACTIONS(3712), - [anon_sym_R_DQUOTE] = ACTIONS(3714), - [anon_sym_LR_DQUOTE] = ACTIONS(3714), - [anon_sym_uR_DQUOTE] = ACTIONS(3714), - [anon_sym_UR_DQUOTE] = ACTIONS(3714), - [anon_sym_u8R_DQUOTE] = ACTIONS(3714), - [anon_sym_co_await] = ACTIONS(3712), - [anon_sym_new] = ACTIONS(3712), - [anon_sym_requires] = ACTIONS(3712), - [anon_sym_CARET_CARET] = ACTIONS(3714), - [anon_sym_LBRACK_COLON] = ACTIONS(3714), - [sym_this] = ACTIONS(3712), - }, - [STATE(386)] = { - [sym_identifier] = ACTIONS(2949), - [aux_sym_preproc_include_token1] = ACTIONS(2949), - [aux_sym_preproc_def_token1] = ACTIONS(2949), - [aux_sym_preproc_if_token1] = ACTIONS(2949), - [aux_sym_preproc_if_token2] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2949), - [aux_sym_preproc_else_token1] = ACTIONS(2949), - [aux_sym_preproc_elif_token1] = ACTIONS(2949), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2949), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2949), - [sym_preproc_directive] = ACTIONS(2949), - [anon_sym_LPAREN2] = ACTIONS(2954), - [anon_sym_BANG] = ACTIONS(2954), - [anon_sym_TILDE] = ACTIONS(2954), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_STAR] = ACTIONS(2954), - [anon_sym_AMP_AMP] = ACTIONS(2954), - [anon_sym_AMP] = ACTIONS(2949), - [anon_sym_SEMI] = ACTIONS(2954), - [anon_sym___extension__] = ACTIONS(2949), - [anon_sym_typedef] = ACTIONS(2949), - [anon_sym_virtual] = ACTIONS(2949), - [anon_sym_extern] = ACTIONS(2949), - [anon_sym___attribute__] = ACTIONS(2949), - [anon_sym___attribute] = ACTIONS(2949), - [anon_sym_using] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2954), - [anon_sym___declspec] = ACTIONS(2949), - [anon_sym___based] = ACTIONS(2949), - [anon_sym___cdecl] = ACTIONS(2949), - [anon_sym___clrcall] = ACTIONS(2949), - [anon_sym___stdcall] = ACTIONS(2949), - [anon_sym___fastcall] = ACTIONS(2949), - [anon_sym___thiscall] = ACTIONS(2949), - [anon_sym___vectorcall] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2954), - [anon_sym_signed] = ACTIONS(2949), - [anon_sym_unsigned] = ACTIONS(2949), - [anon_sym_long] = ACTIONS(2949), - [anon_sym_short] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_static] = ACTIONS(2949), - [anon_sym_register] = ACTIONS(2949), - [anon_sym_inline] = ACTIONS(2949), - [anon_sym___inline] = ACTIONS(2949), - [anon_sym___inline__] = ACTIONS(2949), - [anon_sym___forceinline] = ACTIONS(2949), - [anon_sym_thread_local] = ACTIONS(2949), - [anon_sym___thread] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_constexpr] = ACTIONS(2949), - [anon_sym_volatile] = ACTIONS(2949), - [anon_sym_restrict] = ACTIONS(2949), - [anon_sym___restrict__] = ACTIONS(2949), - [anon_sym__Atomic] = ACTIONS(2949), - [anon_sym__Noreturn] = ACTIONS(2949), - [anon_sym_noreturn] = ACTIONS(2949), - [anon_sym__Nonnull] = ACTIONS(2949), - [anon_sym_mutable] = ACTIONS(2949), - [anon_sym_constinit] = ACTIONS(2949), - [anon_sym_consteval] = ACTIONS(2949), - [anon_sym_alignas] = ACTIONS(2949), - [anon_sym__Alignas] = ACTIONS(2949), - [sym_primitive_type] = ACTIONS(2949), - [anon_sym_enum] = ACTIONS(2949), - [anon_sym_class] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2949), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_else] = ACTIONS(2949), - [anon_sym_switch] = ACTIONS(2949), - [anon_sym_case] = ACTIONS(2949), - [anon_sym_default] = ACTIONS(2949), - [anon_sym_while] = ACTIONS(2949), - [anon_sym_do] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_return] = ACTIONS(2949), - [anon_sym_break] = ACTIONS(2949), - [anon_sym_continue] = ACTIONS(2949), - [anon_sym_goto] = ACTIONS(2949), - [anon_sym___try] = ACTIONS(2949), - [anon_sym___leave] = ACTIONS(2949), - [anon_sym_not] = ACTIONS(2949), - [anon_sym_compl] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2954), - [anon_sym_PLUS_PLUS] = ACTIONS(2954), - [anon_sym_sizeof] = ACTIONS(2949), - [anon_sym___alignof__] = ACTIONS(2949), - [anon_sym___alignof] = ACTIONS(2949), - [anon_sym__alignof] = ACTIONS(2949), - [anon_sym_alignof] = ACTIONS(2949), - [anon_sym__Alignof] = ACTIONS(2949), - [anon_sym_offsetof] = ACTIONS(2949), - [anon_sym__Generic] = ACTIONS(2949), - [anon_sym_typename] = ACTIONS(2949), - [anon_sym_asm] = ACTIONS(2949), - [anon_sym___asm__] = ACTIONS(2949), - [anon_sym___asm] = ACTIONS(2949), - [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(2949), - [sym_false] = ACTIONS(2949), - [anon_sym_NULL] = ACTIONS(2949), - [anon_sym_nullptr] = ACTIONS(2949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2949), - [anon_sym_decltype] = ACTIONS(2949), - [anon_sym_explicit] = ACTIONS(2949), - [anon_sym_template] = ACTIONS(2949), - [anon_sym_operator] = ACTIONS(2949), - [anon_sym_try] = ACTIONS(2949), - [anon_sym_delete] = ACTIONS(2949), - [anon_sym_throw] = ACTIONS(2949), - [anon_sym_namespace] = ACTIONS(2949), - [anon_sym_static_assert] = ACTIONS(2949), - [anon_sym_concept] = ACTIONS(2949), - [anon_sym_co_return] = ACTIONS(2949), - [anon_sym_co_yield] = ACTIONS(2949), - [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(2949), - [anon_sym_new] = ACTIONS(2949), - [anon_sym_requires] = ACTIONS(2949), - [anon_sym_CARET_CARET] = ACTIONS(2954), - [anon_sym_LBRACK_COLON] = ACTIONS(2954), - [sym_this] = ACTIONS(2949), - }, - [STATE(387)] = { - [sym_identifier] = ACTIONS(3704), - [aux_sym_preproc_include_token1] = ACTIONS(3704), - [aux_sym_preproc_def_token1] = ACTIONS(3704), - [aux_sym_preproc_if_token1] = ACTIONS(3704), - [aux_sym_preproc_if_token2] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), - [aux_sym_preproc_else_token1] = ACTIONS(3704), - [aux_sym_preproc_elif_token1] = ACTIONS(3704), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3704), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3704), - [sym_preproc_directive] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3706), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3706), - [anon_sym___extension__] = ACTIONS(3704), - [anon_sym_typedef] = ACTIONS(3704), - [anon_sym_virtual] = ACTIONS(3704), - [anon_sym_extern] = ACTIONS(3704), - [anon_sym___attribute__] = ACTIONS(3704), - [anon_sym___attribute] = ACTIONS(3704), - [anon_sym_using] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), - [anon_sym___declspec] = ACTIONS(3704), - [anon_sym___based] = ACTIONS(3704), - [anon_sym___cdecl] = ACTIONS(3704), - [anon_sym___clrcall] = ACTIONS(3704), - [anon_sym___stdcall] = ACTIONS(3704), - [anon_sym___fastcall] = ACTIONS(3704), - [anon_sym___thiscall] = ACTIONS(3704), - [anon_sym___vectorcall] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3706), - [anon_sym_signed] = ACTIONS(3704), - [anon_sym_unsigned] = ACTIONS(3704), - [anon_sym_long] = ACTIONS(3704), - [anon_sym_short] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_static] = ACTIONS(3704), - [anon_sym_register] = ACTIONS(3704), - [anon_sym_inline] = ACTIONS(3704), - [anon_sym___inline] = ACTIONS(3704), - [anon_sym___inline__] = ACTIONS(3704), - [anon_sym___forceinline] = ACTIONS(3704), - [anon_sym_thread_local] = ACTIONS(3704), - [anon_sym___thread] = ACTIONS(3704), - [anon_sym_const] = ACTIONS(3704), - [anon_sym_constexpr] = ACTIONS(3704), - [anon_sym_volatile] = ACTIONS(3704), - [anon_sym_restrict] = ACTIONS(3704), - [anon_sym___restrict__] = ACTIONS(3704), - [anon_sym__Atomic] = ACTIONS(3704), - [anon_sym__Noreturn] = ACTIONS(3704), - [anon_sym_noreturn] = ACTIONS(3704), - [anon_sym__Nonnull] = ACTIONS(3704), - [anon_sym_mutable] = ACTIONS(3704), - [anon_sym_constinit] = ACTIONS(3704), - [anon_sym_consteval] = ACTIONS(3704), - [anon_sym_alignas] = ACTIONS(3704), - [anon_sym__Alignas] = ACTIONS(3704), - [sym_primitive_type] = ACTIONS(3704), + [STATE(394)] = { + [sym_type_qualifier] = STATE(5177), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(3585), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(6483), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(5965), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7943), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(4088), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5177), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(3782), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), [anon_sym_enum] = ACTIONS(3704), - [anon_sym_class] = ACTIONS(3704), - [anon_sym_struct] = ACTIONS(3704), - [anon_sym_union] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_else] = ACTIONS(3704), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_case] = ACTIONS(3704), - [anon_sym_default] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_break] = ACTIONS(3704), - [anon_sym_continue] = ACTIONS(3704), - [anon_sym_goto] = ACTIONS(3704), - [anon_sym___try] = ACTIONS(3704), - [anon_sym___leave] = ACTIONS(3704), - [anon_sym_not] = ACTIONS(3704), - [anon_sym_compl] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_sizeof] = ACTIONS(3704), - [anon_sym___alignof__] = ACTIONS(3704), - [anon_sym___alignof] = ACTIONS(3704), - [anon_sym__alignof] = ACTIONS(3704), - [anon_sym_alignof] = ACTIONS(3704), - [anon_sym__Alignof] = ACTIONS(3704), - [anon_sym_offsetof] = ACTIONS(3704), - [anon_sym__Generic] = ACTIONS(3704), - [anon_sym_typename] = ACTIONS(3704), - [anon_sym_asm] = ACTIONS(3704), - [anon_sym___asm__] = ACTIONS(3704), - [anon_sym___asm] = ACTIONS(3704), - [sym_number_literal] = ACTIONS(3706), - [anon_sym_L_SQUOTE] = ACTIONS(3706), - [anon_sym_u_SQUOTE] = ACTIONS(3706), - [anon_sym_U_SQUOTE] = ACTIONS(3706), - [anon_sym_u8_SQUOTE] = ACTIONS(3706), - [anon_sym_SQUOTE] = ACTIONS(3706), - [anon_sym_L_DQUOTE] = ACTIONS(3706), - [anon_sym_u_DQUOTE] = ACTIONS(3706), - [anon_sym_U_DQUOTE] = ACTIONS(3706), - [anon_sym_u8_DQUOTE] = ACTIONS(3706), - [anon_sym_DQUOTE] = ACTIONS(3706), - [sym_true] = ACTIONS(3704), - [sym_false] = ACTIONS(3704), - [anon_sym_NULL] = ACTIONS(3704), - [anon_sym_nullptr] = ACTIONS(3704), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3704), - [anon_sym_decltype] = ACTIONS(3704), - [anon_sym_explicit] = ACTIONS(3704), - [anon_sym_template] = ACTIONS(3704), - [anon_sym_operator] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_delete] = ACTIONS(3704), - [anon_sym_throw] = ACTIONS(3704), - [anon_sym_namespace] = ACTIONS(3704), - [anon_sym_static_assert] = ACTIONS(3704), - [anon_sym_concept] = ACTIONS(3704), - [anon_sym_co_return] = ACTIONS(3704), - [anon_sym_co_yield] = ACTIONS(3704), - [anon_sym_R_DQUOTE] = ACTIONS(3706), - [anon_sym_LR_DQUOTE] = ACTIONS(3706), - [anon_sym_uR_DQUOTE] = ACTIONS(3706), - [anon_sym_UR_DQUOTE] = ACTIONS(3706), - [anon_sym_u8R_DQUOTE] = ACTIONS(3706), - [anon_sym_co_await] = ACTIONS(3704), - [anon_sym_new] = ACTIONS(3704), - [anon_sym_requires] = ACTIONS(3704), - [anon_sym_CARET_CARET] = ACTIONS(3706), - [anon_sym_LBRACK_COLON] = ACTIONS(3706), - [sym_this] = ACTIONS(3704), - }, - [STATE(388)] = { - [sym_identifier] = ACTIONS(3716), - [aux_sym_preproc_include_token1] = ACTIONS(3716), - [aux_sym_preproc_def_token1] = ACTIONS(3716), - [aux_sym_preproc_if_token1] = ACTIONS(3716), - [aux_sym_preproc_if_token2] = ACTIONS(3716), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3716), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3716), - [aux_sym_preproc_else_token1] = ACTIONS(3716), - [aux_sym_preproc_elif_token1] = ACTIONS(3716), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3716), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3716), - [sym_preproc_directive] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3718), - [anon_sym_BANG] = ACTIONS(3718), - [anon_sym_TILDE] = ACTIONS(3718), - [anon_sym_DASH] = ACTIONS(3716), - [anon_sym_PLUS] = ACTIONS(3716), - [anon_sym_STAR] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_AMP] = ACTIONS(3716), - [anon_sym_SEMI] = ACTIONS(3718), - [anon_sym___extension__] = ACTIONS(3716), - [anon_sym_typedef] = ACTIONS(3716), - [anon_sym_virtual] = ACTIONS(3716), - [anon_sym_extern] = ACTIONS(3716), - [anon_sym___attribute__] = ACTIONS(3716), - [anon_sym___attribute] = ACTIONS(3716), - [anon_sym_using] = ACTIONS(3716), - [anon_sym_COLON_COLON] = ACTIONS(3718), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3718), - [anon_sym___declspec] = ACTIONS(3716), - [anon_sym___based] = ACTIONS(3716), - [anon_sym___cdecl] = ACTIONS(3716), - [anon_sym___clrcall] = ACTIONS(3716), - [anon_sym___stdcall] = ACTIONS(3716), - [anon_sym___fastcall] = ACTIONS(3716), - [anon_sym___thiscall] = ACTIONS(3716), - [anon_sym___vectorcall] = ACTIONS(3716), - [anon_sym_LBRACE] = ACTIONS(3718), - [anon_sym_signed] = ACTIONS(3716), - [anon_sym_unsigned] = ACTIONS(3716), - [anon_sym_long] = ACTIONS(3716), - [anon_sym_short] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(3716), - [anon_sym_static] = ACTIONS(3716), - [anon_sym_register] = ACTIONS(3716), - [anon_sym_inline] = ACTIONS(3716), - [anon_sym___inline] = ACTIONS(3716), - [anon_sym___inline__] = ACTIONS(3716), - [anon_sym___forceinline] = ACTIONS(3716), - [anon_sym_thread_local] = ACTIONS(3716), - [anon_sym___thread] = ACTIONS(3716), - [anon_sym_const] = ACTIONS(3716), - [anon_sym_constexpr] = ACTIONS(3716), - [anon_sym_volatile] = ACTIONS(3716), - [anon_sym_restrict] = ACTIONS(3716), - [anon_sym___restrict__] = ACTIONS(3716), - [anon_sym__Atomic] = ACTIONS(3716), - [anon_sym__Noreturn] = ACTIONS(3716), - [anon_sym_noreturn] = ACTIONS(3716), - [anon_sym__Nonnull] = ACTIONS(3716), - [anon_sym_mutable] = ACTIONS(3716), - [anon_sym_constinit] = ACTIONS(3716), - [anon_sym_consteval] = ACTIONS(3716), - [anon_sym_alignas] = ACTIONS(3716), - [anon_sym__Alignas] = ACTIONS(3716), - [sym_primitive_type] = ACTIONS(3716), - [anon_sym_enum] = ACTIONS(3716), - [anon_sym_class] = ACTIONS(3716), - [anon_sym_struct] = ACTIONS(3716), - [anon_sym_union] = ACTIONS(3716), - [anon_sym_if] = ACTIONS(3716), - [anon_sym_else] = ACTIONS(3716), - [anon_sym_switch] = ACTIONS(3716), - [anon_sym_case] = ACTIONS(3716), - [anon_sym_default] = ACTIONS(3716), - [anon_sym_while] = ACTIONS(3716), - [anon_sym_do] = ACTIONS(3716), - [anon_sym_for] = ACTIONS(3716), - [anon_sym_return] = ACTIONS(3716), - [anon_sym_break] = ACTIONS(3716), - [anon_sym_continue] = ACTIONS(3716), - [anon_sym_goto] = ACTIONS(3716), - [anon_sym___try] = ACTIONS(3716), - [anon_sym___leave] = ACTIONS(3716), - [anon_sym_not] = ACTIONS(3716), - [anon_sym_compl] = ACTIONS(3716), - [anon_sym_DASH_DASH] = ACTIONS(3718), - [anon_sym_PLUS_PLUS] = ACTIONS(3718), - [anon_sym_sizeof] = ACTIONS(3716), - [anon_sym___alignof__] = ACTIONS(3716), - [anon_sym___alignof] = ACTIONS(3716), - [anon_sym__alignof] = ACTIONS(3716), - [anon_sym_alignof] = ACTIONS(3716), - [anon_sym__Alignof] = ACTIONS(3716), - [anon_sym_offsetof] = ACTIONS(3716), - [anon_sym__Generic] = ACTIONS(3716), + [anon_sym_class] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_union] = ACTIONS(3710), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), [anon_sym_typename] = ACTIONS(3716), - [anon_sym_asm] = ACTIONS(3716), - [anon_sym___asm__] = ACTIONS(3716), - [anon_sym___asm] = ACTIONS(3716), - [sym_number_literal] = ACTIONS(3718), - [anon_sym_L_SQUOTE] = ACTIONS(3718), - [anon_sym_u_SQUOTE] = ACTIONS(3718), - [anon_sym_U_SQUOTE] = ACTIONS(3718), - [anon_sym_u8_SQUOTE] = ACTIONS(3718), - [anon_sym_SQUOTE] = ACTIONS(3718), - [anon_sym_L_DQUOTE] = ACTIONS(3718), - [anon_sym_u_DQUOTE] = ACTIONS(3718), - [anon_sym_U_DQUOTE] = ACTIONS(3718), - [anon_sym_u8_DQUOTE] = ACTIONS(3718), - [anon_sym_DQUOTE] = ACTIONS(3718), - [sym_true] = ACTIONS(3716), - [sym_false] = ACTIONS(3716), - [anon_sym_NULL] = ACTIONS(3716), - [anon_sym_nullptr] = ACTIONS(3716), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3716), - [anon_sym_decltype] = ACTIONS(3716), - [anon_sym_explicit] = ACTIONS(3716), - [anon_sym_template] = ACTIONS(3716), - [anon_sym_operator] = ACTIONS(3716), - [anon_sym_try] = ACTIONS(3716), - [anon_sym_delete] = ACTIONS(3716), - [anon_sym_throw] = ACTIONS(3716), - [anon_sym_namespace] = ACTIONS(3716), - [anon_sym_static_assert] = ACTIONS(3716), - [anon_sym_concept] = ACTIONS(3716), - [anon_sym_co_return] = ACTIONS(3716), - [anon_sym_co_yield] = ACTIONS(3716), - [anon_sym_R_DQUOTE] = ACTIONS(3718), - [anon_sym_LR_DQUOTE] = ACTIONS(3718), - [anon_sym_uR_DQUOTE] = ACTIONS(3718), - [anon_sym_UR_DQUOTE] = ACTIONS(3718), - [anon_sym_u8R_DQUOTE] = ACTIONS(3718), - [anon_sym_co_await] = ACTIONS(3716), - [anon_sym_new] = ACTIONS(3716), - [anon_sym_requires] = ACTIONS(3716), - [anon_sym_CARET_CARET] = ACTIONS(3718), - [anon_sym_LBRACK_COLON] = ACTIONS(3718), - [sym_this] = ACTIONS(3716), - }, - [STATE(389)] = { - [sym_identifier] = ACTIONS(3720), - [aux_sym_preproc_include_token1] = ACTIONS(3720), - [aux_sym_preproc_def_token1] = ACTIONS(3720), - [aux_sym_preproc_if_token1] = ACTIONS(3720), - [aux_sym_preproc_if_token2] = ACTIONS(3720), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3720), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3720), - [aux_sym_preproc_else_token1] = ACTIONS(3720), - [aux_sym_preproc_elif_token1] = ACTIONS(3720), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3720), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3720), - [sym_preproc_directive] = ACTIONS(3720), - [anon_sym_LPAREN2] = ACTIONS(3722), - [anon_sym_BANG] = ACTIONS(3722), - [anon_sym_TILDE] = ACTIONS(3722), - [anon_sym_DASH] = ACTIONS(3720), - [anon_sym_PLUS] = ACTIONS(3720), - [anon_sym_STAR] = ACTIONS(3722), - [anon_sym_AMP_AMP] = ACTIONS(3722), - [anon_sym_AMP] = ACTIONS(3720), - [anon_sym_SEMI] = ACTIONS(3722), - [anon_sym___extension__] = ACTIONS(3720), - [anon_sym_typedef] = ACTIONS(3720), - [anon_sym_virtual] = ACTIONS(3720), - [anon_sym_extern] = ACTIONS(3720), - [anon_sym___attribute__] = ACTIONS(3720), - [anon_sym___attribute] = ACTIONS(3720), - [anon_sym_using] = ACTIONS(3720), - [anon_sym_COLON_COLON] = ACTIONS(3722), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3722), - [anon_sym___declspec] = ACTIONS(3720), - [anon_sym___based] = ACTIONS(3720), - [anon_sym___cdecl] = ACTIONS(3720), - [anon_sym___clrcall] = ACTIONS(3720), - [anon_sym___stdcall] = ACTIONS(3720), - [anon_sym___fastcall] = ACTIONS(3720), - [anon_sym___thiscall] = ACTIONS(3720), - [anon_sym___vectorcall] = ACTIONS(3720), - [anon_sym_LBRACE] = ACTIONS(3722), - [anon_sym_signed] = ACTIONS(3720), - [anon_sym_unsigned] = ACTIONS(3720), - [anon_sym_long] = ACTIONS(3720), - [anon_sym_short] = ACTIONS(3720), - [anon_sym_LBRACK] = ACTIONS(3720), - [anon_sym_static] = ACTIONS(3720), - [anon_sym_register] = ACTIONS(3720), - [anon_sym_inline] = ACTIONS(3720), - [anon_sym___inline] = ACTIONS(3720), - [anon_sym___inline__] = ACTIONS(3720), - [anon_sym___forceinline] = ACTIONS(3720), - [anon_sym_thread_local] = ACTIONS(3720), - [anon_sym___thread] = ACTIONS(3720), - [anon_sym_const] = ACTIONS(3720), - [anon_sym_constexpr] = ACTIONS(3720), - [anon_sym_volatile] = ACTIONS(3720), - [anon_sym_restrict] = ACTIONS(3720), - [anon_sym___restrict__] = ACTIONS(3720), - [anon_sym__Atomic] = ACTIONS(3720), - [anon_sym__Noreturn] = ACTIONS(3720), - [anon_sym_noreturn] = ACTIONS(3720), - [anon_sym__Nonnull] = ACTIONS(3720), - [anon_sym_mutable] = ACTIONS(3720), - [anon_sym_constinit] = ACTIONS(3720), - [anon_sym_consteval] = ACTIONS(3720), - [anon_sym_alignas] = ACTIONS(3720), - [anon_sym__Alignas] = ACTIONS(3720), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3720), - [anon_sym_class] = ACTIONS(3720), - [anon_sym_struct] = ACTIONS(3720), - [anon_sym_union] = ACTIONS(3720), - [anon_sym_if] = ACTIONS(3720), - [anon_sym_else] = ACTIONS(3720), - [anon_sym_switch] = ACTIONS(3720), - [anon_sym_case] = ACTIONS(3720), - [anon_sym_default] = ACTIONS(3720), - [anon_sym_while] = ACTIONS(3720), - [anon_sym_do] = ACTIONS(3720), - [anon_sym_for] = ACTIONS(3720), - [anon_sym_return] = ACTIONS(3720), - [anon_sym_break] = ACTIONS(3720), - [anon_sym_continue] = ACTIONS(3720), - [anon_sym_goto] = ACTIONS(3720), - [anon_sym___try] = ACTIONS(3720), - [anon_sym___leave] = ACTIONS(3720), - [anon_sym_not] = ACTIONS(3720), - [anon_sym_compl] = ACTIONS(3720), - [anon_sym_DASH_DASH] = ACTIONS(3722), - [anon_sym_PLUS_PLUS] = ACTIONS(3722), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3720), - [anon_sym___alignof] = ACTIONS(3720), - [anon_sym__alignof] = ACTIONS(3720), - [anon_sym_alignof] = ACTIONS(3720), - [anon_sym__Alignof] = ACTIONS(3720), - [anon_sym_offsetof] = ACTIONS(3720), - [anon_sym__Generic] = ACTIONS(3720), - [anon_sym_typename] = ACTIONS(3720), - [anon_sym_asm] = ACTIONS(3720), - [anon_sym___asm__] = ACTIONS(3720), - [anon_sym___asm] = ACTIONS(3720), - [sym_number_literal] = ACTIONS(3722), - [anon_sym_L_SQUOTE] = ACTIONS(3722), - [anon_sym_u_SQUOTE] = ACTIONS(3722), - [anon_sym_U_SQUOTE] = ACTIONS(3722), - [anon_sym_u8_SQUOTE] = ACTIONS(3722), - [anon_sym_SQUOTE] = ACTIONS(3722), - [anon_sym_L_DQUOTE] = ACTIONS(3722), - [anon_sym_u_DQUOTE] = ACTIONS(3722), - [anon_sym_U_DQUOTE] = ACTIONS(3722), - [anon_sym_u8_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE] = ACTIONS(3722), - [sym_true] = ACTIONS(3720), - [sym_false] = ACTIONS(3720), - [anon_sym_NULL] = ACTIONS(3720), - [anon_sym_nullptr] = ACTIONS(3720), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3720), - [anon_sym_decltype] = ACTIONS(3720), - [anon_sym_explicit] = ACTIONS(3720), - [anon_sym_template] = ACTIONS(3720), - [anon_sym_operator] = ACTIONS(3720), - [anon_sym_try] = ACTIONS(3720), - [anon_sym_delete] = ACTIONS(3720), - [anon_sym_throw] = ACTIONS(3720), - [anon_sym_namespace] = ACTIONS(3720), - [anon_sym_static_assert] = ACTIONS(3720), - [anon_sym_concept] = ACTIONS(3720), - [anon_sym_co_return] = ACTIONS(3720), - [anon_sym_co_yield] = ACTIONS(3720), - [anon_sym_R_DQUOTE] = ACTIONS(3722), - [anon_sym_LR_DQUOTE] = ACTIONS(3722), - [anon_sym_uR_DQUOTE] = ACTIONS(3722), - [anon_sym_UR_DQUOTE] = ACTIONS(3722), - [anon_sym_u8R_DQUOTE] = ACTIONS(3722), - [anon_sym_co_await] = ACTIONS(3720), - [anon_sym_new] = ACTIONS(3720), - [anon_sym_requires] = ACTIONS(3720), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(3722), - [sym_this] = ACTIONS(3720), - }, - [STATE(390)] = { - [sym_identifier] = ACTIONS(3724), - [aux_sym_preproc_include_token1] = ACTIONS(3724), - [aux_sym_preproc_def_token1] = ACTIONS(3724), - [aux_sym_preproc_if_token1] = ACTIONS(3724), - [aux_sym_preproc_if_token2] = ACTIONS(3724), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3724), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3724), - [aux_sym_preproc_else_token1] = ACTIONS(3724), - [aux_sym_preproc_elif_token1] = ACTIONS(3724), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3724), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3724), - [sym_preproc_directive] = ACTIONS(3724), - [anon_sym_LPAREN2] = ACTIONS(3726), - [anon_sym_BANG] = ACTIONS(3726), - [anon_sym_TILDE] = ACTIONS(3726), - [anon_sym_DASH] = ACTIONS(3724), - [anon_sym_PLUS] = ACTIONS(3724), - [anon_sym_STAR] = ACTIONS(3726), - [anon_sym_AMP_AMP] = ACTIONS(3726), - [anon_sym_AMP] = ACTIONS(3724), - [anon_sym_SEMI] = ACTIONS(3726), - [anon_sym___extension__] = ACTIONS(3724), - [anon_sym_typedef] = ACTIONS(3724), - [anon_sym_virtual] = ACTIONS(3724), - [anon_sym_extern] = ACTIONS(3724), - [anon_sym___attribute__] = ACTIONS(3724), - [anon_sym___attribute] = ACTIONS(3724), - [anon_sym_using] = ACTIONS(3724), - [anon_sym_COLON_COLON] = ACTIONS(3726), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3726), - [anon_sym___declspec] = ACTIONS(3724), - [anon_sym___based] = ACTIONS(3724), - [anon_sym___cdecl] = ACTIONS(3724), - [anon_sym___clrcall] = ACTIONS(3724), - [anon_sym___stdcall] = ACTIONS(3724), - [anon_sym___fastcall] = ACTIONS(3724), - [anon_sym___thiscall] = ACTIONS(3724), - [anon_sym___vectorcall] = ACTIONS(3724), - [anon_sym_LBRACE] = ACTIONS(3726), - [anon_sym_signed] = ACTIONS(3724), - [anon_sym_unsigned] = ACTIONS(3724), - [anon_sym_long] = ACTIONS(3724), - [anon_sym_short] = ACTIONS(3724), - [anon_sym_LBRACK] = ACTIONS(3724), - [anon_sym_static] = ACTIONS(3724), - [anon_sym_register] = ACTIONS(3724), - [anon_sym_inline] = ACTIONS(3724), - [anon_sym___inline] = ACTIONS(3724), - [anon_sym___inline__] = ACTIONS(3724), - [anon_sym___forceinline] = ACTIONS(3724), - [anon_sym_thread_local] = ACTIONS(3724), - [anon_sym___thread] = ACTIONS(3724), - [anon_sym_const] = ACTIONS(3724), - [anon_sym_constexpr] = ACTIONS(3724), - [anon_sym_volatile] = ACTIONS(3724), - [anon_sym_restrict] = ACTIONS(3724), - [anon_sym___restrict__] = ACTIONS(3724), - [anon_sym__Atomic] = ACTIONS(3724), - [anon_sym__Noreturn] = ACTIONS(3724), - [anon_sym_noreturn] = ACTIONS(3724), - [anon_sym__Nonnull] = ACTIONS(3724), - [anon_sym_mutable] = ACTIONS(3724), - [anon_sym_constinit] = ACTIONS(3724), - [anon_sym_consteval] = ACTIONS(3724), - [anon_sym_alignas] = ACTIONS(3724), - [anon_sym__Alignas] = ACTIONS(3724), - [sym_primitive_type] = ACTIONS(3724), - [anon_sym_enum] = ACTIONS(3724), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3724), - [anon_sym_union] = ACTIONS(3724), - [anon_sym_if] = ACTIONS(3724), - [anon_sym_else] = ACTIONS(3724), - [anon_sym_switch] = ACTIONS(3724), - [anon_sym_case] = ACTIONS(3724), - [anon_sym_default] = ACTIONS(3724), - [anon_sym_while] = ACTIONS(3724), - [anon_sym_do] = ACTIONS(3724), - [anon_sym_for] = ACTIONS(3724), - [anon_sym_return] = ACTIONS(3724), - [anon_sym_break] = ACTIONS(3724), - [anon_sym_continue] = ACTIONS(3724), - [anon_sym_goto] = ACTIONS(3724), - [anon_sym___try] = ACTIONS(3724), - [anon_sym___leave] = ACTIONS(3724), - [anon_sym_not] = ACTIONS(3724), - [anon_sym_compl] = ACTIONS(3724), - [anon_sym_DASH_DASH] = ACTIONS(3726), - [anon_sym_PLUS_PLUS] = ACTIONS(3726), - [anon_sym_sizeof] = ACTIONS(3724), - [anon_sym___alignof__] = ACTIONS(3724), - [anon_sym___alignof] = ACTIONS(3724), - [anon_sym__alignof] = ACTIONS(3724), - [anon_sym_alignof] = ACTIONS(3724), - [anon_sym__Alignof] = ACTIONS(3724), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3724), - [anon_sym_typename] = ACTIONS(3724), - [anon_sym_asm] = ACTIONS(3724), - [anon_sym___asm__] = ACTIONS(3724), - [anon_sym___asm] = ACTIONS(3724), - [sym_number_literal] = ACTIONS(3726), - [anon_sym_L_SQUOTE] = ACTIONS(3726), - [anon_sym_u_SQUOTE] = ACTIONS(3726), - [anon_sym_U_SQUOTE] = ACTIONS(3726), - [anon_sym_u8_SQUOTE] = ACTIONS(3726), - [anon_sym_SQUOTE] = ACTIONS(3726), - [anon_sym_L_DQUOTE] = ACTIONS(3726), - [anon_sym_u_DQUOTE] = ACTIONS(3726), - [anon_sym_U_DQUOTE] = ACTIONS(3726), - [anon_sym_u8_DQUOTE] = ACTIONS(3726), - [anon_sym_DQUOTE] = ACTIONS(3726), - [sym_true] = ACTIONS(3724), - [sym_false] = ACTIONS(3724), - [anon_sym_NULL] = ACTIONS(3724), - [anon_sym_nullptr] = ACTIONS(3724), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3724), - [anon_sym_decltype] = ACTIONS(3724), - [anon_sym_explicit] = ACTIONS(3724), - [anon_sym_template] = ACTIONS(3724), - [anon_sym_operator] = ACTIONS(3724), - [anon_sym_try] = ACTIONS(3724), - [anon_sym_delete] = ACTIONS(3724), - [anon_sym_throw] = ACTIONS(3724), - [anon_sym_namespace] = ACTIONS(3724), - [anon_sym_static_assert] = ACTIONS(3724), - [anon_sym_concept] = ACTIONS(3724), - [anon_sym_co_return] = ACTIONS(3724), - [anon_sym_co_yield] = ACTIONS(3724), - [anon_sym_R_DQUOTE] = ACTIONS(3726), - [anon_sym_LR_DQUOTE] = ACTIONS(3726), - [anon_sym_uR_DQUOTE] = ACTIONS(3726), - [anon_sym_UR_DQUOTE] = ACTIONS(3726), - [anon_sym_u8R_DQUOTE] = ACTIONS(3726), - [anon_sym_co_await] = ACTIONS(3724), - [anon_sym_new] = ACTIONS(3724), - [anon_sym_requires] = ACTIONS(3724), - [anon_sym_CARET_CARET] = ACTIONS(3726), - [anon_sym_LBRACK_COLON] = ACTIONS(3726), - [sym_this] = ACTIONS(3724), - }, - [STATE(391)] = { - [sym_identifier] = ACTIONS(3728), - [aux_sym_preproc_include_token1] = ACTIONS(3728), - [aux_sym_preproc_def_token1] = ACTIONS(3728), - [aux_sym_preproc_if_token1] = ACTIONS(3728), - [aux_sym_preproc_if_token2] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), - [aux_sym_preproc_else_token1] = ACTIONS(3728), - [aux_sym_preproc_elif_token1] = ACTIONS(3728), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3728), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3728), - [sym_preproc_directive] = ACTIONS(3728), - [anon_sym_LPAREN2] = ACTIONS(3730), - [anon_sym_BANG] = ACTIONS(3730), - [anon_sym_TILDE] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3730), - [anon_sym_AMP_AMP] = ACTIONS(3730), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_SEMI] = ACTIONS(3730), - [anon_sym___extension__] = ACTIONS(3728), - [anon_sym_typedef] = ACTIONS(3728), - [anon_sym_virtual] = ACTIONS(3728), - [anon_sym_extern] = ACTIONS(3728), - [anon_sym___attribute__] = ACTIONS(3728), - [anon_sym___attribute] = ACTIONS(3728), - [anon_sym_using] = ACTIONS(3728), - [anon_sym_COLON_COLON] = ACTIONS(3730), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), - [anon_sym___declspec] = ACTIONS(3728), - [anon_sym___based] = ACTIONS(3728), - [anon_sym___cdecl] = ACTIONS(3728), - [anon_sym___clrcall] = ACTIONS(3728), - [anon_sym___stdcall] = ACTIONS(3728), - [anon_sym___fastcall] = ACTIONS(3728), - [anon_sym___thiscall] = ACTIONS(3728), - [anon_sym___vectorcall] = ACTIONS(3728), - [anon_sym_LBRACE] = ACTIONS(3730), - [anon_sym_signed] = ACTIONS(3728), - [anon_sym_unsigned] = ACTIONS(3728), - [anon_sym_long] = ACTIONS(3728), - [anon_sym_short] = ACTIONS(3728), - [anon_sym_LBRACK] = ACTIONS(3728), - [anon_sym_static] = ACTIONS(3728), - [anon_sym_register] = ACTIONS(3728), - [anon_sym_inline] = ACTIONS(3728), - [anon_sym___inline] = ACTIONS(3728), - [anon_sym___inline__] = ACTIONS(3728), - [anon_sym___forceinline] = ACTIONS(3728), - [anon_sym_thread_local] = ACTIONS(3728), - [anon_sym___thread] = ACTIONS(3728), - [anon_sym_const] = ACTIONS(3728), - [anon_sym_constexpr] = ACTIONS(3728), - [anon_sym_volatile] = ACTIONS(3728), - [anon_sym_restrict] = ACTIONS(3728), - [anon_sym___restrict__] = ACTIONS(3728), - [anon_sym__Atomic] = ACTIONS(3728), - [anon_sym__Noreturn] = ACTIONS(3728), - [anon_sym_noreturn] = ACTIONS(3728), - [anon_sym__Nonnull] = ACTIONS(3728), - [anon_sym_mutable] = ACTIONS(3728), - [anon_sym_constinit] = ACTIONS(3728), - [anon_sym_consteval] = ACTIONS(3728), - [anon_sym_alignas] = ACTIONS(3728), - [anon_sym__Alignas] = ACTIONS(3728), - [sym_primitive_type] = ACTIONS(3728), - [anon_sym_enum] = ACTIONS(3728), - [anon_sym_class] = ACTIONS(3728), - [anon_sym_struct] = ACTIONS(3728), - [anon_sym_union] = ACTIONS(3728), - [anon_sym_if] = ACTIONS(3728), - [anon_sym_else] = ACTIONS(3728), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_case] = ACTIONS(3728), - [anon_sym_default] = ACTIONS(3728), - [anon_sym_while] = ACTIONS(3728), - [anon_sym_do] = ACTIONS(3728), - [anon_sym_for] = ACTIONS(3728), - [anon_sym_return] = ACTIONS(3728), - [anon_sym_break] = ACTIONS(3728), - [anon_sym_continue] = ACTIONS(3728), - [anon_sym_goto] = ACTIONS(3728), - [anon_sym___try] = ACTIONS(3728), - [anon_sym___leave] = ACTIONS(3728), - [anon_sym_not] = ACTIONS(3728), - [anon_sym_compl] = ACTIONS(3728), - [anon_sym_DASH_DASH] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3730), - [anon_sym_sizeof] = ACTIONS(3728), - [anon_sym___alignof__] = ACTIONS(3728), - [anon_sym___alignof] = ACTIONS(3728), - [anon_sym__alignof] = ACTIONS(3728), - [anon_sym_alignof] = ACTIONS(3728), - [anon_sym__Alignof] = ACTIONS(3728), - [anon_sym_offsetof] = ACTIONS(3728), - [anon_sym__Generic] = ACTIONS(3728), - [anon_sym_typename] = ACTIONS(3728), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [anon_sym___asm] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3730), - [anon_sym_u_SQUOTE] = ACTIONS(3730), - [anon_sym_U_SQUOTE] = ACTIONS(3730), - [anon_sym_u8_SQUOTE] = ACTIONS(3730), - [anon_sym_SQUOTE] = ACTIONS(3730), - [anon_sym_L_DQUOTE] = ACTIONS(3730), - [anon_sym_u_DQUOTE] = ACTIONS(3730), - [anon_sym_U_DQUOTE] = ACTIONS(3730), - [anon_sym_u8_DQUOTE] = ACTIONS(3730), - [anon_sym_DQUOTE] = ACTIONS(3730), - [sym_true] = ACTIONS(3728), - [sym_false] = ACTIONS(3728), - [anon_sym_NULL] = ACTIONS(3728), - [anon_sym_nullptr] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3728), - [anon_sym_decltype] = ACTIONS(3728), - [anon_sym_explicit] = ACTIONS(3728), - [anon_sym_template] = ACTIONS(3728), - [anon_sym_operator] = ACTIONS(3728), - [anon_sym_try] = ACTIONS(3728), - [anon_sym_delete] = ACTIONS(3728), - [anon_sym_throw] = ACTIONS(3728), - [anon_sym_namespace] = ACTIONS(3728), - [anon_sym_static_assert] = ACTIONS(3728), - [anon_sym_concept] = ACTIONS(3728), - [anon_sym_co_return] = ACTIONS(3728), - [anon_sym_co_yield] = ACTIONS(3728), - [anon_sym_R_DQUOTE] = ACTIONS(3730), - [anon_sym_LR_DQUOTE] = ACTIONS(3730), - [anon_sym_uR_DQUOTE] = ACTIONS(3730), - [anon_sym_UR_DQUOTE] = ACTIONS(3730), - [anon_sym_u8R_DQUOTE] = ACTIONS(3730), - [anon_sym_co_await] = ACTIONS(3728), - [anon_sym_new] = ACTIONS(3728), - [anon_sym_requires] = ACTIONS(3728), - [anon_sym_CARET_CARET] = ACTIONS(3730), - [anon_sym_LBRACK_COLON] = ACTIONS(3730), - [sym_this] = ACTIONS(3728), - }, - [STATE(392)] = { - [sym_identifier] = ACTIONS(3732), - [aux_sym_preproc_include_token1] = ACTIONS(3732), - [aux_sym_preproc_def_token1] = ACTIONS(3732), - [aux_sym_preproc_if_token1] = ACTIONS(3732), - [aux_sym_preproc_if_token2] = ACTIONS(3732), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3732), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3732), - [aux_sym_preproc_else_token1] = ACTIONS(3732), - [aux_sym_preproc_elif_token1] = ACTIONS(3732), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3732), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3732), - [sym_preproc_directive] = ACTIONS(3732), - [anon_sym_LPAREN2] = ACTIONS(3734), - [anon_sym_BANG] = ACTIONS(3734), - [anon_sym_TILDE] = ACTIONS(3734), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3734), - [anon_sym_AMP_AMP] = ACTIONS(3734), - [anon_sym_AMP] = ACTIONS(3732), - [anon_sym_SEMI] = ACTIONS(3734), - [anon_sym___extension__] = ACTIONS(3732), - [anon_sym_typedef] = ACTIONS(3732), - [anon_sym_virtual] = ACTIONS(3732), - [anon_sym_extern] = ACTIONS(3732), - [anon_sym___attribute__] = ACTIONS(3732), - [anon_sym___attribute] = ACTIONS(3732), - [anon_sym_using] = ACTIONS(3732), - [anon_sym_COLON_COLON] = ACTIONS(3734), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3734), - [anon_sym___declspec] = ACTIONS(3732), - [anon_sym___based] = ACTIONS(3732), - [anon_sym___cdecl] = ACTIONS(3732), - [anon_sym___clrcall] = ACTIONS(3732), - [anon_sym___stdcall] = ACTIONS(3732), - [anon_sym___fastcall] = ACTIONS(3732), - [anon_sym___thiscall] = ACTIONS(3732), - [anon_sym___vectorcall] = ACTIONS(3732), - [anon_sym_LBRACE] = ACTIONS(3734), - [anon_sym_signed] = ACTIONS(3732), - [anon_sym_unsigned] = ACTIONS(3732), - [anon_sym_long] = ACTIONS(3732), - [anon_sym_short] = ACTIONS(3732), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_static] = ACTIONS(3732), - [anon_sym_register] = ACTIONS(3732), - [anon_sym_inline] = ACTIONS(3732), - [anon_sym___inline] = ACTIONS(3732), - [anon_sym___inline__] = ACTIONS(3732), - [anon_sym___forceinline] = ACTIONS(3732), - [anon_sym_thread_local] = ACTIONS(3732), - [anon_sym___thread] = ACTIONS(3732), - [anon_sym_const] = ACTIONS(3732), - [anon_sym_constexpr] = ACTIONS(3732), - [anon_sym_volatile] = ACTIONS(3732), - [anon_sym_restrict] = ACTIONS(3732), - [anon_sym___restrict__] = ACTIONS(3732), - [anon_sym__Atomic] = ACTIONS(3732), - [anon_sym__Noreturn] = ACTIONS(3732), - [anon_sym_noreturn] = ACTIONS(3732), - [anon_sym__Nonnull] = ACTIONS(3732), - [anon_sym_mutable] = ACTIONS(3732), - [anon_sym_constinit] = ACTIONS(3732), - [anon_sym_consteval] = ACTIONS(3732), - [anon_sym_alignas] = ACTIONS(3732), - [anon_sym__Alignas] = ACTIONS(3732), - [sym_primitive_type] = ACTIONS(3732), - [anon_sym_enum] = ACTIONS(3732), - [anon_sym_class] = ACTIONS(3732), - [anon_sym_struct] = ACTIONS(3732), - [anon_sym_union] = ACTIONS(3732), - [anon_sym_if] = ACTIONS(3732), - [anon_sym_else] = ACTIONS(3732), - [anon_sym_switch] = ACTIONS(3732), - [anon_sym_case] = ACTIONS(3732), - [anon_sym_default] = ACTIONS(3732), - [anon_sym_while] = ACTIONS(3732), - [anon_sym_do] = ACTIONS(3732), - [anon_sym_for] = ACTIONS(3732), - [anon_sym_return] = ACTIONS(3732), - [anon_sym_break] = ACTIONS(3732), - [anon_sym_continue] = ACTIONS(3732), - [anon_sym_goto] = ACTIONS(3732), - [anon_sym___try] = ACTIONS(3732), - [anon_sym___leave] = ACTIONS(3732), - [anon_sym_not] = ACTIONS(3732), - [anon_sym_compl] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3734), - [anon_sym_PLUS_PLUS] = ACTIONS(3734), - [anon_sym_sizeof] = ACTIONS(3732), - [anon_sym___alignof__] = ACTIONS(3732), - [anon_sym___alignof] = ACTIONS(3732), - [anon_sym__alignof] = ACTIONS(3732), - [anon_sym_alignof] = ACTIONS(3732), - [anon_sym__Alignof] = ACTIONS(3732), - [anon_sym_offsetof] = ACTIONS(3732), - [anon_sym__Generic] = ACTIONS(3732), - [anon_sym_typename] = ACTIONS(3732), - [anon_sym_asm] = ACTIONS(3732), - [anon_sym___asm__] = ACTIONS(3732), - [anon_sym___asm] = ACTIONS(3732), - [sym_number_literal] = ACTIONS(3734), - [anon_sym_L_SQUOTE] = ACTIONS(3734), - [anon_sym_u_SQUOTE] = ACTIONS(3734), - [anon_sym_U_SQUOTE] = ACTIONS(3734), - [anon_sym_u8_SQUOTE] = ACTIONS(3734), - [anon_sym_SQUOTE] = ACTIONS(3734), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3732), - [sym_false] = ACTIONS(3732), - [anon_sym_NULL] = ACTIONS(3732), - [anon_sym_nullptr] = ACTIONS(3732), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3732), - [anon_sym_decltype] = ACTIONS(3732), - [anon_sym_explicit] = ACTIONS(3732), - [anon_sym_template] = ACTIONS(3732), - [anon_sym_operator] = ACTIONS(3732), - [anon_sym_try] = ACTIONS(3732), - [anon_sym_delete] = ACTIONS(3732), - [anon_sym_throw] = ACTIONS(3732), - [anon_sym_namespace] = ACTIONS(3732), - [anon_sym_static_assert] = ACTIONS(3732), - [anon_sym_concept] = ACTIONS(3732), - [anon_sym_co_return] = ACTIONS(3732), - [anon_sym_co_yield] = ACTIONS(3732), - [anon_sym_R_DQUOTE] = ACTIONS(3734), - [anon_sym_LR_DQUOTE] = ACTIONS(3734), - [anon_sym_uR_DQUOTE] = ACTIONS(3734), - [anon_sym_UR_DQUOTE] = ACTIONS(3734), - [anon_sym_u8R_DQUOTE] = ACTIONS(3734), - [anon_sym_co_await] = ACTIONS(3732), - [anon_sym_new] = ACTIONS(3732), - [anon_sym_requires] = ACTIONS(3732), - [anon_sym_CARET_CARET] = ACTIONS(3734), - [anon_sym_LBRACK_COLON] = ACTIONS(3734), - [sym_this] = ACTIONS(3732), - }, - [STATE(393)] = { - [sym_preproc_def] = STATE(393), - [sym_preproc_function_def] = STATE(393), - [sym_preproc_call] = STATE(393), - [sym_preproc_if_in_field_declaration_list] = STATE(393), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(393), - [sym_type_definition] = STATE(393), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7977), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8548), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(393), - [sym_field_declaration] = STATE(393), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2414), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(393), - [sym_operator_cast] = STATE(9050), - [sym_inline_method_definition] = STATE(393), - [sym__constructor_specifiers] = STATE(2414), - [sym_operator_cast_definition] = STATE(393), - [sym_operator_cast_declaration] = STATE(393), - [sym_constructor_or_destructor_definition] = STATE(393), - [sym_constructor_or_destructor_declaration] = STATE(393), - [sym_friend_declaration] = STATE(393), - [sym_access_specifier] = STATE(10750), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(393), - [sym_alias_declaration] = STATE(393), - [sym_static_assert_declaration] = STATE(393), - [sym_consteval_block_declaration] = STATE(393), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9050), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(393), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9327), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2414), - [sym_identifier] = ACTIONS(3736), - [aux_sym_preproc_def_token1] = ACTIONS(3739), - [aux_sym_preproc_if_token1] = ACTIONS(3742), - [aux_sym_preproc_if_token2] = ACTIONS(3745), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3747), - [aux_sym_preproc_else_token1] = ACTIONS(3745), - [aux_sym_preproc_elif_token1] = ACTIONS(3745), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3745), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3745), - [sym_preproc_directive] = ACTIONS(3750), - [anon_sym_LPAREN2] = ACTIONS(3753), - [anon_sym_TILDE] = ACTIONS(3756), - [anon_sym_STAR] = ACTIONS(3759), - [anon_sym_AMP_AMP] = ACTIONS(3762), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_SEMI] = ACTIONS(3768), - [anon_sym___extension__] = ACTIONS(3771), - [anon_sym_typedef] = ACTIONS(3774), - [anon_sym_virtual] = ACTIONS(3777), - [anon_sym_extern] = ACTIONS(3780), - [anon_sym___attribute__] = ACTIONS(3783), - [anon_sym___attribute] = ACTIONS(3783), - [anon_sym_using] = ACTIONS(3786), - [anon_sym_COLON_COLON] = ACTIONS(3789), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3792), - [anon_sym___declspec] = ACTIONS(3795), - [anon_sym___based] = ACTIONS(3798), - [anon_sym_signed] = ACTIONS(3801), - [anon_sym_unsigned] = ACTIONS(3801), - [anon_sym_long] = ACTIONS(3801), - [anon_sym_short] = ACTIONS(3801), - [anon_sym_LBRACK] = ACTIONS(3804), - [anon_sym_static] = ACTIONS(3780), - [anon_sym_register] = ACTIONS(3780), - [anon_sym_inline] = ACTIONS(3780), - [anon_sym___inline] = ACTIONS(3780), - [anon_sym___inline__] = ACTIONS(3780), - [anon_sym___forceinline] = ACTIONS(3780), - [anon_sym_thread_local] = ACTIONS(3780), - [anon_sym___thread] = ACTIONS(3780), - [anon_sym_const] = ACTIONS(3807), - [anon_sym_constexpr] = ACTIONS(3810), - [anon_sym_volatile] = ACTIONS(3807), - [anon_sym_restrict] = ACTIONS(3807), - [anon_sym___restrict__] = ACTIONS(3807), - [anon_sym__Atomic] = ACTIONS(3807), - [anon_sym__Noreturn] = ACTIONS(3807), - [anon_sym_noreturn] = ACTIONS(3807), - [anon_sym__Nonnull] = ACTIONS(3807), - [anon_sym_mutable] = ACTIONS(3807), - [anon_sym_constinit] = ACTIONS(3807), - [anon_sym_consteval] = ACTIONS(3813), - [anon_sym_alignas] = ACTIONS(3816), - [anon_sym__Alignas] = ACTIONS(3816), - [sym_primitive_type] = ACTIONS(3819), - [anon_sym_enum] = ACTIONS(3822), - [anon_sym_class] = ACTIONS(3825), - [anon_sym_struct] = ACTIONS(3828), - [anon_sym_union] = ACTIONS(3831), - [anon_sym_typename] = ACTIONS(3834), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3837), - [anon_sym_decltype] = ACTIONS(3840), - [anon_sym_explicit] = ACTIONS(3843), - [anon_sym_private] = ACTIONS(3846), - [anon_sym_template] = ACTIONS(3849), - [anon_sym_operator] = ACTIONS(3852), - [anon_sym_friend] = ACTIONS(3855), - [anon_sym_public] = ACTIONS(3846), - [anon_sym_protected] = ACTIONS(3846), - [anon_sym_static_assert] = ACTIONS(3858), - [anon_sym_LBRACK_COLON] = ACTIONS(3861), - }, - [STATE(394)] = { - [sym_identifier] = ACTIONS(3864), - [aux_sym_preproc_include_token1] = ACTIONS(3864), - [aux_sym_preproc_def_token1] = ACTIONS(3864), - [aux_sym_preproc_if_token1] = ACTIONS(3864), - [aux_sym_preproc_if_token2] = ACTIONS(3864), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3864), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3864), - [aux_sym_preproc_else_token1] = ACTIONS(3864), - [aux_sym_preproc_elif_token1] = ACTIONS(3864), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3864), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3864), - [sym_preproc_directive] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(3866), - [anon_sym_BANG] = ACTIONS(3866), - [anon_sym_TILDE] = ACTIONS(3866), - [anon_sym_DASH] = ACTIONS(3864), - [anon_sym_PLUS] = ACTIONS(3864), - [anon_sym_STAR] = ACTIONS(3866), - [anon_sym_AMP_AMP] = ACTIONS(3866), - [anon_sym_AMP] = ACTIONS(3864), - [anon_sym_SEMI] = ACTIONS(3866), - [anon_sym___extension__] = ACTIONS(3864), - [anon_sym_typedef] = ACTIONS(3864), - [anon_sym_virtual] = ACTIONS(3864), - [anon_sym_extern] = ACTIONS(3864), - [anon_sym___attribute__] = ACTIONS(3864), - [anon_sym___attribute] = ACTIONS(3864), - [anon_sym_using] = ACTIONS(3864), - [anon_sym_COLON_COLON] = ACTIONS(3866), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3866), - [anon_sym___declspec] = ACTIONS(3864), - [anon_sym___based] = ACTIONS(3864), - [anon_sym___cdecl] = ACTIONS(3864), - [anon_sym___clrcall] = ACTIONS(3864), - [anon_sym___stdcall] = ACTIONS(3864), - [anon_sym___fastcall] = ACTIONS(3864), - [anon_sym___thiscall] = ACTIONS(3864), - [anon_sym___vectorcall] = ACTIONS(3864), - [anon_sym_LBRACE] = ACTIONS(3866), - [anon_sym_signed] = ACTIONS(3864), - [anon_sym_unsigned] = ACTIONS(3864), - [anon_sym_long] = ACTIONS(3864), - [anon_sym_short] = ACTIONS(3864), - [anon_sym_LBRACK] = ACTIONS(3864), - [anon_sym_static] = ACTIONS(3864), - [anon_sym_register] = ACTIONS(3864), - [anon_sym_inline] = ACTIONS(3864), - [anon_sym___inline] = ACTIONS(3864), - [anon_sym___inline__] = ACTIONS(3864), - [anon_sym___forceinline] = ACTIONS(3864), - [anon_sym_thread_local] = ACTIONS(3864), - [anon_sym___thread] = ACTIONS(3864), - [anon_sym_const] = ACTIONS(3864), - [anon_sym_constexpr] = ACTIONS(3864), - [anon_sym_volatile] = ACTIONS(3864), - [anon_sym_restrict] = ACTIONS(3864), - [anon_sym___restrict__] = ACTIONS(3864), - [anon_sym__Atomic] = ACTIONS(3864), - [anon_sym__Noreturn] = ACTIONS(3864), - [anon_sym_noreturn] = ACTIONS(3864), - [anon_sym__Nonnull] = ACTIONS(3864), - [anon_sym_mutable] = ACTIONS(3864), - [anon_sym_constinit] = ACTIONS(3864), - [anon_sym_consteval] = ACTIONS(3864), - [anon_sym_alignas] = ACTIONS(3864), - [anon_sym__Alignas] = ACTIONS(3864), - [sym_primitive_type] = ACTIONS(3864), - [anon_sym_enum] = ACTIONS(3864), - [anon_sym_class] = ACTIONS(3864), - [anon_sym_struct] = ACTIONS(3864), - [anon_sym_union] = ACTIONS(3864), - [anon_sym_if] = ACTIONS(3864), - [anon_sym_else] = ACTIONS(3864), - [anon_sym_switch] = ACTIONS(3864), - [anon_sym_case] = ACTIONS(3864), - [anon_sym_default] = ACTIONS(3864), - [anon_sym_while] = ACTIONS(3864), - [anon_sym_do] = ACTIONS(3864), - [anon_sym_for] = ACTIONS(3864), - [anon_sym_return] = ACTIONS(3864), - [anon_sym_break] = ACTIONS(3864), - [anon_sym_continue] = ACTIONS(3864), - [anon_sym_goto] = ACTIONS(3864), - [anon_sym___try] = ACTIONS(3864), - [anon_sym___leave] = ACTIONS(3864), - [anon_sym_not] = ACTIONS(3864), - [anon_sym_compl] = ACTIONS(3864), - [anon_sym_DASH_DASH] = ACTIONS(3866), - [anon_sym_PLUS_PLUS] = ACTIONS(3866), - [anon_sym_sizeof] = ACTIONS(3864), - [anon_sym___alignof__] = ACTIONS(3864), - [anon_sym___alignof] = ACTIONS(3864), - [anon_sym__alignof] = ACTIONS(3864), - [anon_sym_alignof] = ACTIONS(3864), - [anon_sym__Alignof] = ACTIONS(3864), - [anon_sym_offsetof] = ACTIONS(3864), - [anon_sym__Generic] = ACTIONS(3864), - [anon_sym_typename] = ACTIONS(3864), - [anon_sym_asm] = ACTIONS(3864), - [anon_sym___asm__] = ACTIONS(3864), - [anon_sym___asm] = ACTIONS(3864), - [sym_number_literal] = ACTIONS(3866), - [anon_sym_L_SQUOTE] = ACTIONS(3866), - [anon_sym_u_SQUOTE] = ACTIONS(3866), - [anon_sym_U_SQUOTE] = ACTIONS(3866), - [anon_sym_u8_SQUOTE] = ACTIONS(3866), - [anon_sym_SQUOTE] = ACTIONS(3866), - [anon_sym_L_DQUOTE] = ACTIONS(3866), - [anon_sym_u_DQUOTE] = ACTIONS(3866), - [anon_sym_U_DQUOTE] = ACTIONS(3866), - [anon_sym_u8_DQUOTE] = ACTIONS(3866), - [anon_sym_DQUOTE] = ACTIONS(3866), - [sym_true] = ACTIONS(3864), - [sym_false] = ACTIONS(3864), - [anon_sym_NULL] = ACTIONS(3864), - [anon_sym_nullptr] = ACTIONS(3864), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3864), - [anon_sym_decltype] = ACTIONS(3864), - [anon_sym_explicit] = ACTIONS(3864), - [anon_sym_template] = ACTIONS(3864), - [anon_sym_operator] = ACTIONS(3864), - [anon_sym_try] = ACTIONS(3864), - [anon_sym_delete] = ACTIONS(3864), - [anon_sym_throw] = ACTIONS(3864), - [anon_sym_namespace] = ACTIONS(3864), - [anon_sym_static_assert] = ACTIONS(3864), - [anon_sym_concept] = ACTIONS(3864), - [anon_sym_co_return] = ACTIONS(3864), - [anon_sym_co_yield] = ACTIONS(3864), - [anon_sym_R_DQUOTE] = ACTIONS(3866), - [anon_sym_LR_DQUOTE] = ACTIONS(3866), - [anon_sym_uR_DQUOTE] = ACTIONS(3866), - [anon_sym_UR_DQUOTE] = ACTIONS(3866), - [anon_sym_u8R_DQUOTE] = ACTIONS(3866), - [anon_sym_co_await] = ACTIONS(3864), - [anon_sym_new] = ACTIONS(3864), - [anon_sym_requires] = ACTIONS(3864), - [anon_sym_CARET_CARET] = ACTIONS(3866), - [anon_sym_LBRACK_COLON] = ACTIONS(3866), - [sym_this] = ACTIONS(3864), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(395)] = { - [sym_identifier] = ACTIONS(3868), - [aux_sym_preproc_include_token1] = ACTIONS(3868), - [aux_sym_preproc_def_token1] = ACTIONS(3868), - [aux_sym_preproc_if_token1] = ACTIONS(3868), - [aux_sym_preproc_if_token2] = ACTIONS(3868), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3868), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3868), - [aux_sym_preproc_else_token1] = ACTIONS(3868), - [aux_sym_preproc_elif_token1] = ACTIONS(3868), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3868), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3868), - [sym_preproc_directive] = ACTIONS(3868), - [anon_sym_LPAREN2] = ACTIONS(3870), - [anon_sym_BANG] = ACTIONS(3870), - [anon_sym_TILDE] = ACTIONS(3870), - [anon_sym_DASH] = ACTIONS(3868), - [anon_sym_PLUS] = ACTIONS(3868), - [anon_sym_STAR] = ACTIONS(3870), - [anon_sym_AMP_AMP] = ACTIONS(3870), - [anon_sym_AMP] = ACTIONS(3868), - [anon_sym_SEMI] = ACTIONS(3870), - [anon_sym___extension__] = ACTIONS(3868), - [anon_sym_typedef] = ACTIONS(3868), - [anon_sym_virtual] = ACTIONS(3868), - [anon_sym_extern] = ACTIONS(3868), - [anon_sym___attribute__] = ACTIONS(3868), - [anon_sym___attribute] = ACTIONS(3868), - [anon_sym_using] = ACTIONS(3868), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3870), - [anon_sym___declspec] = ACTIONS(3868), - [anon_sym___based] = ACTIONS(3868), - [anon_sym___cdecl] = ACTIONS(3868), - [anon_sym___clrcall] = ACTIONS(3868), - [anon_sym___stdcall] = ACTIONS(3868), - [anon_sym___fastcall] = ACTIONS(3868), - [anon_sym___thiscall] = ACTIONS(3868), - [anon_sym___vectorcall] = ACTIONS(3868), - [anon_sym_LBRACE] = ACTIONS(3870), - [anon_sym_signed] = ACTIONS(3868), - [anon_sym_unsigned] = ACTIONS(3868), - [anon_sym_long] = ACTIONS(3868), - [anon_sym_short] = ACTIONS(3868), - [anon_sym_LBRACK] = ACTIONS(3868), - [anon_sym_static] = ACTIONS(3868), - [anon_sym_register] = ACTIONS(3868), - [anon_sym_inline] = ACTIONS(3868), - [anon_sym___inline] = ACTIONS(3868), - [anon_sym___inline__] = ACTIONS(3868), - [anon_sym___forceinline] = ACTIONS(3868), - [anon_sym_thread_local] = ACTIONS(3868), - [anon_sym___thread] = ACTIONS(3868), - [anon_sym_const] = ACTIONS(3868), - [anon_sym_constexpr] = ACTIONS(3868), - [anon_sym_volatile] = ACTIONS(3868), - [anon_sym_restrict] = ACTIONS(3868), - [anon_sym___restrict__] = ACTIONS(3868), - [anon_sym__Atomic] = ACTIONS(3868), - [anon_sym__Noreturn] = ACTIONS(3868), - [anon_sym_noreturn] = ACTIONS(3868), - [anon_sym__Nonnull] = ACTIONS(3868), - [anon_sym_mutable] = ACTIONS(3868), - [anon_sym_constinit] = ACTIONS(3868), - [anon_sym_consteval] = ACTIONS(3868), - [anon_sym_alignas] = ACTIONS(3868), - [anon_sym__Alignas] = ACTIONS(3868), - [sym_primitive_type] = ACTIONS(3868), - [anon_sym_enum] = ACTIONS(3868), - [anon_sym_class] = ACTIONS(3868), - [anon_sym_struct] = ACTIONS(3868), - [anon_sym_union] = ACTIONS(3868), - [anon_sym_if] = ACTIONS(3868), - [anon_sym_else] = ACTIONS(3868), - [anon_sym_switch] = ACTIONS(3868), - [anon_sym_case] = ACTIONS(3868), - [anon_sym_default] = ACTIONS(3868), - [anon_sym_while] = ACTIONS(3868), - [anon_sym_do] = ACTIONS(3868), - [anon_sym_for] = ACTIONS(3868), - [anon_sym_return] = ACTIONS(3868), - [anon_sym_break] = ACTIONS(3868), - [anon_sym_continue] = ACTIONS(3868), - [anon_sym_goto] = ACTIONS(3868), - [anon_sym___try] = ACTIONS(3868), - [anon_sym___leave] = ACTIONS(3868), - [anon_sym_not] = ACTIONS(3868), - [anon_sym_compl] = ACTIONS(3868), - [anon_sym_DASH_DASH] = ACTIONS(3870), - [anon_sym_PLUS_PLUS] = ACTIONS(3870), - [anon_sym_sizeof] = ACTIONS(3868), - [anon_sym___alignof__] = ACTIONS(3868), - [anon_sym___alignof] = ACTIONS(3868), - [anon_sym__alignof] = ACTIONS(3868), - [anon_sym_alignof] = ACTIONS(3868), - [anon_sym__Alignof] = ACTIONS(3868), - [anon_sym_offsetof] = ACTIONS(3868), - [anon_sym__Generic] = ACTIONS(3868), - [anon_sym_typename] = ACTIONS(3868), - [anon_sym_asm] = ACTIONS(3868), - [anon_sym___asm__] = ACTIONS(3868), - [anon_sym___asm] = ACTIONS(3868), - [sym_number_literal] = ACTIONS(3870), - [anon_sym_L_SQUOTE] = ACTIONS(3870), - [anon_sym_u_SQUOTE] = ACTIONS(3870), - [anon_sym_U_SQUOTE] = ACTIONS(3870), - [anon_sym_u8_SQUOTE] = ACTIONS(3870), - [anon_sym_SQUOTE] = ACTIONS(3870), - [anon_sym_L_DQUOTE] = ACTIONS(3870), - [anon_sym_u_DQUOTE] = ACTIONS(3870), - [anon_sym_U_DQUOTE] = ACTIONS(3870), - [anon_sym_u8_DQUOTE] = ACTIONS(3870), - [anon_sym_DQUOTE] = ACTIONS(3870), - [sym_true] = ACTIONS(3868), - [sym_false] = ACTIONS(3868), - [anon_sym_NULL] = ACTIONS(3868), - [anon_sym_nullptr] = ACTIONS(3868), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3868), - [anon_sym_decltype] = ACTIONS(3868), - [anon_sym_explicit] = ACTIONS(3868), - [anon_sym_template] = ACTIONS(3868), - [anon_sym_operator] = ACTIONS(3868), - [anon_sym_try] = ACTIONS(3868), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_throw] = ACTIONS(3868), - [anon_sym_namespace] = ACTIONS(3868), - [anon_sym_static_assert] = ACTIONS(3868), - [anon_sym_concept] = ACTIONS(3868), - [anon_sym_co_return] = ACTIONS(3868), - [anon_sym_co_yield] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(3870), - [anon_sym_LR_DQUOTE] = ACTIONS(3870), - [anon_sym_uR_DQUOTE] = ACTIONS(3870), - [anon_sym_UR_DQUOTE] = ACTIONS(3870), - [anon_sym_u8R_DQUOTE] = ACTIONS(3870), - [anon_sym_co_await] = ACTIONS(3868), - [anon_sym_new] = ACTIONS(3868), - [anon_sym_requires] = ACTIONS(3868), - [anon_sym_CARET_CARET] = ACTIONS(3870), - [anon_sym_LBRACK_COLON] = ACTIONS(3870), - [sym_this] = ACTIONS(3868), + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(7107), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(11418), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7912), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5230), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3784), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3786), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(396)] = { - [sym_identifier] = ACTIONS(3872), - [aux_sym_preproc_include_token1] = ACTIONS(3872), - [aux_sym_preproc_def_token1] = ACTIONS(3872), - [aux_sym_preproc_if_token1] = ACTIONS(3872), - [aux_sym_preproc_if_token2] = ACTIONS(3872), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3872), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3872), - [aux_sym_preproc_else_token1] = ACTIONS(3872), - [aux_sym_preproc_elif_token1] = ACTIONS(3872), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3872), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3872), - [sym_preproc_directive] = ACTIONS(3872), - [anon_sym_LPAREN2] = ACTIONS(3874), - [anon_sym_BANG] = ACTIONS(3874), - [anon_sym_TILDE] = ACTIONS(3874), - [anon_sym_DASH] = ACTIONS(3872), - [anon_sym_PLUS] = ACTIONS(3872), - [anon_sym_STAR] = ACTIONS(3874), - [anon_sym_AMP_AMP] = ACTIONS(3874), - [anon_sym_AMP] = ACTIONS(3872), - [anon_sym_SEMI] = ACTIONS(3874), - [anon_sym___extension__] = ACTIONS(3872), - [anon_sym_typedef] = ACTIONS(3872), - [anon_sym_virtual] = ACTIONS(3872), - [anon_sym_extern] = ACTIONS(3872), - [anon_sym___attribute__] = ACTIONS(3872), - [anon_sym___attribute] = ACTIONS(3872), - [anon_sym_using] = ACTIONS(3872), - [anon_sym_COLON_COLON] = ACTIONS(3874), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3874), - [anon_sym___declspec] = ACTIONS(3872), - [anon_sym___based] = ACTIONS(3872), - [anon_sym___cdecl] = ACTIONS(3872), - [anon_sym___clrcall] = ACTIONS(3872), - [anon_sym___stdcall] = ACTIONS(3872), - [anon_sym___fastcall] = ACTIONS(3872), - [anon_sym___thiscall] = ACTIONS(3872), - [anon_sym___vectorcall] = ACTIONS(3872), - [anon_sym_LBRACE] = ACTIONS(3874), - [anon_sym_signed] = ACTIONS(3872), - [anon_sym_unsigned] = ACTIONS(3872), - [anon_sym_long] = ACTIONS(3872), - [anon_sym_short] = ACTIONS(3872), - [anon_sym_LBRACK] = ACTIONS(3872), - [anon_sym_static] = ACTIONS(3872), - [anon_sym_register] = ACTIONS(3872), - [anon_sym_inline] = ACTIONS(3872), - [anon_sym___inline] = ACTIONS(3872), - [anon_sym___inline__] = ACTIONS(3872), - [anon_sym___forceinline] = ACTIONS(3872), - [anon_sym_thread_local] = ACTIONS(3872), - [anon_sym___thread] = ACTIONS(3872), - [anon_sym_const] = ACTIONS(3872), - [anon_sym_constexpr] = ACTIONS(3872), - [anon_sym_volatile] = ACTIONS(3872), - [anon_sym_restrict] = ACTIONS(3872), - [anon_sym___restrict__] = ACTIONS(3872), - [anon_sym__Atomic] = ACTIONS(3872), - [anon_sym__Noreturn] = ACTIONS(3872), - [anon_sym_noreturn] = ACTIONS(3872), - [anon_sym__Nonnull] = ACTIONS(3872), - [anon_sym_mutable] = ACTIONS(3872), - [anon_sym_constinit] = ACTIONS(3872), - [anon_sym_consteval] = ACTIONS(3872), - [anon_sym_alignas] = ACTIONS(3872), - [anon_sym__Alignas] = ACTIONS(3872), - [sym_primitive_type] = ACTIONS(3872), - [anon_sym_enum] = ACTIONS(3872), - [anon_sym_class] = ACTIONS(3872), - [anon_sym_struct] = ACTIONS(3872), - [anon_sym_union] = ACTIONS(3872), - [anon_sym_if] = ACTIONS(3872), - [anon_sym_else] = ACTIONS(3872), - [anon_sym_switch] = ACTIONS(3872), - [anon_sym_case] = ACTIONS(3872), - [anon_sym_default] = ACTIONS(3872), - [anon_sym_while] = ACTIONS(3872), - [anon_sym_do] = ACTIONS(3872), - [anon_sym_for] = ACTIONS(3872), - [anon_sym_return] = ACTIONS(3872), - [anon_sym_break] = ACTIONS(3872), - [anon_sym_continue] = ACTIONS(3872), - [anon_sym_goto] = ACTIONS(3872), - [anon_sym___try] = ACTIONS(3872), - [anon_sym___leave] = ACTIONS(3872), - [anon_sym_not] = ACTIONS(3872), - [anon_sym_compl] = ACTIONS(3872), - [anon_sym_DASH_DASH] = ACTIONS(3874), - [anon_sym_PLUS_PLUS] = ACTIONS(3874), - [anon_sym_sizeof] = ACTIONS(3872), - [anon_sym___alignof__] = ACTIONS(3872), - [anon_sym___alignof] = ACTIONS(3872), - [anon_sym__alignof] = ACTIONS(3872), - [anon_sym_alignof] = ACTIONS(3872), - [anon_sym__Alignof] = ACTIONS(3872), - [anon_sym_offsetof] = ACTIONS(3872), - [anon_sym__Generic] = ACTIONS(3872), - [anon_sym_typename] = ACTIONS(3872), - [anon_sym_asm] = ACTIONS(3872), - [anon_sym___asm__] = ACTIONS(3872), - [anon_sym___asm] = ACTIONS(3872), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3874), - [anon_sym_u_SQUOTE] = ACTIONS(3874), - [anon_sym_U_SQUOTE] = ACTIONS(3874), - [anon_sym_u8_SQUOTE] = ACTIONS(3874), - [anon_sym_SQUOTE] = ACTIONS(3874), - [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(3872), - [sym_false] = ACTIONS(3872), - [anon_sym_NULL] = ACTIONS(3872), - [anon_sym_nullptr] = ACTIONS(3872), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3872), - [anon_sym_decltype] = ACTIONS(3872), - [anon_sym_explicit] = ACTIONS(3872), - [anon_sym_template] = ACTIONS(3872), - [anon_sym_operator] = ACTIONS(3872), - [anon_sym_try] = ACTIONS(3872), - [anon_sym_delete] = ACTIONS(3872), - [anon_sym_throw] = ACTIONS(3872), - [anon_sym_namespace] = ACTIONS(3872), - [anon_sym_static_assert] = ACTIONS(3872), - [anon_sym_concept] = ACTIONS(3872), - [anon_sym_co_return] = ACTIONS(3872), - [anon_sym_co_yield] = ACTIONS(3872), - [anon_sym_R_DQUOTE] = ACTIONS(3874), - [anon_sym_LR_DQUOTE] = ACTIONS(3874), - [anon_sym_uR_DQUOTE] = ACTIONS(3874), - [anon_sym_UR_DQUOTE] = ACTIONS(3874), - [anon_sym_u8R_DQUOTE] = ACTIONS(3874), - [anon_sym_co_await] = ACTIONS(3872), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(3872), - [anon_sym_CARET_CARET] = ACTIONS(3874), - [anon_sym_LBRACK_COLON] = ACTIONS(3874), - [sym_this] = ACTIONS(3872), + [sym_catch_clause] = STATE(398), + [aux_sym_constructor_try_statement_repeat1] = STATE(398), + [ts_builtin_sym_end] = ACTIONS(3167), + [sym_identifier] = ACTIONS(3165), + [aux_sym_preproc_include_token1] = ACTIONS(3165), + [aux_sym_preproc_def_token1] = ACTIONS(3165), + [aux_sym_preproc_if_token1] = ACTIONS(3165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3165), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3165), + [sym_preproc_directive] = ACTIONS(3165), + [anon_sym_LPAREN2] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(3167), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym___extension__] = ACTIONS(3165), + [anon_sym_typedef] = ACTIONS(3165), + [anon_sym_virtual] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3165), + [anon_sym___attribute__] = ACTIONS(3165), + [anon_sym___attribute] = ACTIONS(3165), + [anon_sym_using] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(3167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3167), + [anon_sym___declspec] = ACTIONS(3165), + [anon_sym___based] = ACTIONS(3165), + [anon_sym___cdecl] = ACTIONS(3165), + [anon_sym___clrcall] = ACTIONS(3165), + [anon_sym___stdcall] = ACTIONS(3165), + [anon_sym___fastcall] = ACTIONS(3165), + [anon_sym___thiscall] = ACTIONS(3165), + [anon_sym___vectorcall] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_signed] = ACTIONS(3165), + [anon_sym_unsigned] = ACTIONS(3165), + [anon_sym_long] = ACTIONS(3165), + [anon_sym_short] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_static] = ACTIONS(3165), + [anon_sym_register] = ACTIONS(3165), + [anon_sym_inline] = ACTIONS(3165), + [anon_sym___inline] = ACTIONS(3165), + [anon_sym___inline__] = ACTIONS(3165), + [anon_sym___forceinline] = ACTIONS(3165), + [anon_sym_thread_local] = ACTIONS(3165), + [anon_sym___thread] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_constexpr] = ACTIONS(3165), + [anon_sym_volatile] = ACTIONS(3165), + [anon_sym_restrict] = ACTIONS(3165), + [anon_sym___restrict__] = ACTIONS(3165), + [anon_sym__Atomic] = ACTIONS(3165), + [anon_sym__Noreturn] = ACTIONS(3165), + [anon_sym_noreturn] = ACTIONS(3165), + [anon_sym__Nonnull] = ACTIONS(3165), + [anon_sym_mutable] = ACTIONS(3165), + [anon_sym_constinit] = ACTIONS(3165), + [anon_sym_consteval] = ACTIONS(3165), + [anon_sym_alignas] = ACTIONS(3165), + [anon_sym__Alignas] = ACTIONS(3165), + [sym_primitive_type] = ACTIONS(3165), + [anon_sym_enum] = ACTIONS(3165), + [anon_sym_class] = ACTIONS(3165), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3165), + [anon_sym_else] = ACTIONS(3165), + [anon_sym_switch] = ACTIONS(3165), + [anon_sym_case] = ACTIONS(3165), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_while] = ACTIONS(3165), + [anon_sym_do] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3165), + [anon_sym_return] = ACTIONS(3165), + [anon_sym_break] = ACTIONS(3165), + [anon_sym_continue] = ACTIONS(3165), + [anon_sym_goto] = ACTIONS(3165), + [anon_sym___try] = ACTIONS(3165), + [anon_sym___leave] = ACTIONS(3165), + [anon_sym_not] = ACTIONS(3165), + [anon_sym_compl] = ACTIONS(3165), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_sizeof] = ACTIONS(3165), + [anon_sym___alignof__] = ACTIONS(3165), + [anon_sym___alignof] = ACTIONS(3165), + [anon_sym__alignof] = ACTIONS(3165), + [anon_sym_alignof] = ACTIONS(3165), + [anon_sym__Alignof] = ACTIONS(3165), + [anon_sym_offsetof] = ACTIONS(3165), + [anon_sym__Generic] = ACTIONS(3165), + [anon_sym_typename] = ACTIONS(3165), + [anon_sym_asm] = ACTIONS(3165), + [anon_sym___asm__] = ACTIONS(3165), + [anon_sym___asm] = ACTIONS(3165), + [sym_number_literal] = ACTIONS(3167), + [anon_sym_L_SQUOTE] = ACTIONS(3167), + [anon_sym_u_SQUOTE] = ACTIONS(3167), + [anon_sym_U_SQUOTE] = ACTIONS(3167), + [anon_sym_u8_SQUOTE] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3167), + [anon_sym_L_DQUOTE] = ACTIONS(3167), + [anon_sym_u_DQUOTE] = ACTIONS(3167), + [anon_sym_U_DQUOTE] = ACTIONS(3167), + [anon_sym_u8_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [sym_true] = ACTIONS(3165), + [sym_false] = ACTIONS(3165), + [anon_sym_NULL] = ACTIONS(3165), + [anon_sym_nullptr] = ACTIONS(3165), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3165), + [anon_sym_decltype] = ACTIONS(3165), + [anon_sym_explicit] = ACTIONS(3165), + [anon_sym_export] = ACTIONS(3165), + [anon_sym_module] = ACTIONS(3165), + [anon_sym_import] = ACTIONS(3165), + [anon_sym_template] = ACTIONS(3165), + [anon_sym_operator] = ACTIONS(3165), + [anon_sym_try] = ACTIONS(3165), + [anon_sym_delete] = ACTIONS(3165), + [anon_sym_throw] = ACTIONS(3165), + [anon_sym_namespace] = ACTIONS(3165), + [anon_sym_static_assert] = ACTIONS(3165), + [anon_sym_concept] = ACTIONS(3165), + [anon_sym_co_return] = ACTIONS(3165), + [anon_sym_co_yield] = ACTIONS(3165), + [anon_sym_catch] = ACTIONS(3788), + [anon_sym_R_DQUOTE] = ACTIONS(3167), + [anon_sym_LR_DQUOTE] = ACTIONS(3167), + [anon_sym_uR_DQUOTE] = ACTIONS(3167), + [anon_sym_UR_DQUOTE] = ACTIONS(3167), + [anon_sym_u8R_DQUOTE] = ACTIONS(3167), + [anon_sym_co_await] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3165), + [anon_sym_requires] = ACTIONS(3165), + [anon_sym_CARET_CARET] = ACTIONS(3167), + [anon_sym_LBRACK_COLON] = ACTIONS(3167), + [sym_this] = ACTIONS(3165), }, [STATE(397)] = { - [sym_identifier] = ACTIONS(3728), - [aux_sym_preproc_include_token1] = ACTIONS(3728), - [aux_sym_preproc_def_token1] = ACTIONS(3728), - [aux_sym_preproc_if_token1] = ACTIONS(3728), - [aux_sym_preproc_if_token2] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), - [aux_sym_preproc_else_token1] = ACTIONS(3728), - [aux_sym_preproc_elif_token1] = ACTIONS(3728), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3728), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3728), - [sym_preproc_directive] = ACTIONS(3728), - [anon_sym_LPAREN2] = ACTIONS(3730), - [anon_sym_BANG] = ACTIONS(3730), - [anon_sym_TILDE] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3730), - [anon_sym_AMP_AMP] = ACTIONS(3730), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_SEMI] = ACTIONS(3730), - [anon_sym___extension__] = ACTIONS(3728), - [anon_sym_typedef] = ACTIONS(3728), - [anon_sym_virtual] = ACTIONS(3728), - [anon_sym_extern] = ACTIONS(3728), - [anon_sym___attribute__] = ACTIONS(3728), - [anon_sym___attribute] = ACTIONS(3728), - [anon_sym_using] = ACTIONS(3728), - [anon_sym_COLON_COLON] = ACTIONS(3730), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), - [anon_sym___declspec] = ACTIONS(3728), - [anon_sym___based] = ACTIONS(3728), - [anon_sym___cdecl] = ACTIONS(3728), - [anon_sym___clrcall] = ACTIONS(3728), - [anon_sym___stdcall] = ACTIONS(3728), - [anon_sym___fastcall] = ACTIONS(3728), - [anon_sym___thiscall] = ACTIONS(3728), - [anon_sym___vectorcall] = ACTIONS(3728), - [anon_sym_LBRACE] = ACTIONS(3730), - [anon_sym_signed] = ACTIONS(3728), - [anon_sym_unsigned] = ACTIONS(3728), - [anon_sym_long] = ACTIONS(3728), - [anon_sym_short] = ACTIONS(3728), - [anon_sym_LBRACK] = ACTIONS(3728), - [anon_sym_static] = ACTIONS(3728), - [anon_sym_register] = ACTIONS(3728), - [anon_sym_inline] = ACTIONS(3728), - [anon_sym___inline] = ACTIONS(3728), - [anon_sym___inline__] = ACTIONS(3728), - [anon_sym___forceinline] = ACTIONS(3728), - [anon_sym_thread_local] = ACTIONS(3728), - [anon_sym___thread] = ACTIONS(3728), - [anon_sym_const] = ACTIONS(3728), - [anon_sym_constexpr] = ACTIONS(3728), - [anon_sym_volatile] = ACTIONS(3728), - [anon_sym_restrict] = ACTIONS(3728), - [anon_sym___restrict__] = ACTIONS(3728), - [anon_sym__Atomic] = ACTIONS(3728), - [anon_sym__Noreturn] = ACTIONS(3728), - [anon_sym_noreturn] = ACTIONS(3728), - [anon_sym__Nonnull] = ACTIONS(3728), - [anon_sym_mutable] = ACTIONS(3728), - [anon_sym_constinit] = ACTIONS(3728), - [anon_sym_consteval] = ACTIONS(3728), - [anon_sym_alignas] = ACTIONS(3728), - [anon_sym__Alignas] = ACTIONS(3728), - [sym_primitive_type] = ACTIONS(3728), - [anon_sym_enum] = ACTIONS(3728), - [anon_sym_class] = ACTIONS(3728), - [anon_sym_struct] = ACTIONS(3728), - [anon_sym_union] = ACTIONS(3728), - [anon_sym_if] = ACTIONS(3728), - [anon_sym_else] = ACTIONS(3728), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_case] = ACTIONS(3728), - [anon_sym_default] = ACTIONS(3728), - [anon_sym_while] = ACTIONS(3728), - [anon_sym_do] = ACTIONS(3728), - [anon_sym_for] = ACTIONS(3728), - [anon_sym_return] = ACTIONS(3728), - [anon_sym_break] = ACTIONS(3728), - [anon_sym_continue] = ACTIONS(3728), - [anon_sym_goto] = ACTIONS(3728), - [anon_sym___try] = ACTIONS(3728), - [anon_sym___leave] = ACTIONS(3728), - [anon_sym_not] = ACTIONS(3728), - [anon_sym_compl] = ACTIONS(3728), - [anon_sym_DASH_DASH] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3730), - [anon_sym_sizeof] = ACTIONS(3728), - [anon_sym___alignof__] = ACTIONS(3728), - [anon_sym___alignof] = ACTIONS(3728), - [anon_sym__alignof] = ACTIONS(3728), - [anon_sym_alignof] = ACTIONS(3728), - [anon_sym__Alignof] = ACTIONS(3728), - [anon_sym_offsetof] = ACTIONS(3728), - [anon_sym__Generic] = ACTIONS(3728), - [anon_sym_typename] = ACTIONS(3728), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [anon_sym___asm] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3730), - [anon_sym_u_SQUOTE] = ACTIONS(3730), - [anon_sym_U_SQUOTE] = ACTIONS(3730), - [anon_sym_u8_SQUOTE] = ACTIONS(3730), - [anon_sym_SQUOTE] = ACTIONS(3730), - [anon_sym_L_DQUOTE] = ACTIONS(3730), - [anon_sym_u_DQUOTE] = ACTIONS(3730), - [anon_sym_U_DQUOTE] = ACTIONS(3730), - [anon_sym_u8_DQUOTE] = ACTIONS(3730), - [anon_sym_DQUOTE] = ACTIONS(3730), - [sym_true] = ACTIONS(3728), - [sym_false] = ACTIONS(3728), - [anon_sym_NULL] = ACTIONS(3728), - [anon_sym_nullptr] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3728), - [anon_sym_decltype] = ACTIONS(3728), - [anon_sym_explicit] = ACTIONS(3728), - [anon_sym_template] = ACTIONS(3728), - [anon_sym_operator] = ACTIONS(3728), - [anon_sym_try] = ACTIONS(3728), - [anon_sym_delete] = ACTIONS(3728), - [anon_sym_throw] = ACTIONS(3728), - [anon_sym_namespace] = ACTIONS(3728), - [anon_sym_static_assert] = ACTIONS(3728), - [anon_sym_concept] = ACTIONS(3728), - [anon_sym_co_return] = ACTIONS(3728), - [anon_sym_co_yield] = ACTIONS(3728), - [anon_sym_R_DQUOTE] = ACTIONS(3730), - [anon_sym_LR_DQUOTE] = ACTIONS(3730), - [anon_sym_uR_DQUOTE] = ACTIONS(3730), - [anon_sym_UR_DQUOTE] = ACTIONS(3730), - [anon_sym_u8R_DQUOTE] = ACTIONS(3730), - [anon_sym_co_await] = ACTIONS(3728), - [anon_sym_new] = ACTIONS(3728), - [anon_sym_requires] = ACTIONS(3728), - [anon_sym_CARET_CARET] = ACTIONS(3730), - [anon_sym_LBRACK_COLON] = ACTIONS(3730), - [sym_this] = ACTIONS(3728), + [sym_catch_clause] = STATE(410), + [aux_sym_constructor_try_statement_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(3165), + [aux_sym_preproc_include_token1] = ACTIONS(3165), + [aux_sym_preproc_def_token1] = ACTIONS(3165), + [aux_sym_preproc_if_token1] = ACTIONS(3165), + [aux_sym_preproc_if_token2] = ACTIONS(3165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3165), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3165), + [sym_preproc_directive] = ACTIONS(3165), + [anon_sym_LPAREN2] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(3167), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym___extension__] = ACTIONS(3165), + [anon_sym_typedef] = ACTIONS(3165), + [anon_sym_virtual] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3165), + [anon_sym___attribute__] = ACTIONS(3165), + [anon_sym___attribute] = ACTIONS(3165), + [anon_sym_using] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(3167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3167), + [anon_sym___declspec] = ACTIONS(3165), + [anon_sym___based] = ACTIONS(3165), + [anon_sym___cdecl] = ACTIONS(3165), + [anon_sym___clrcall] = ACTIONS(3165), + [anon_sym___stdcall] = ACTIONS(3165), + [anon_sym___fastcall] = ACTIONS(3165), + [anon_sym___thiscall] = ACTIONS(3165), + [anon_sym___vectorcall] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_signed] = ACTIONS(3165), + [anon_sym_unsigned] = ACTIONS(3165), + [anon_sym_long] = ACTIONS(3165), + [anon_sym_short] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_static] = ACTIONS(3165), + [anon_sym_register] = ACTIONS(3165), + [anon_sym_inline] = ACTIONS(3165), + [anon_sym___inline] = ACTIONS(3165), + [anon_sym___inline__] = ACTIONS(3165), + [anon_sym___forceinline] = ACTIONS(3165), + [anon_sym_thread_local] = ACTIONS(3165), + [anon_sym___thread] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_constexpr] = ACTIONS(3165), + [anon_sym_volatile] = ACTIONS(3165), + [anon_sym_restrict] = ACTIONS(3165), + [anon_sym___restrict__] = ACTIONS(3165), + [anon_sym__Atomic] = ACTIONS(3165), + [anon_sym__Noreturn] = ACTIONS(3165), + [anon_sym_noreturn] = ACTIONS(3165), + [anon_sym__Nonnull] = ACTIONS(3165), + [anon_sym_mutable] = ACTIONS(3165), + [anon_sym_constinit] = ACTIONS(3165), + [anon_sym_consteval] = ACTIONS(3165), + [anon_sym_alignas] = ACTIONS(3165), + [anon_sym__Alignas] = ACTIONS(3165), + [sym_primitive_type] = ACTIONS(3165), + [anon_sym_enum] = ACTIONS(3165), + [anon_sym_class] = ACTIONS(3165), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3165), + [anon_sym_else] = ACTIONS(3165), + [anon_sym_switch] = ACTIONS(3165), + [anon_sym_case] = ACTIONS(3165), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_while] = ACTIONS(3165), + [anon_sym_do] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3165), + [anon_sym_return] = ACTIONS(3165), + [anon_sym_break] = ACTIONS(3165), + [anon_sym_continue] = ACTIONS(3165), + [anon_sym_goto] = ACTIONS(3165), + [anon_sym___try] = ACTIONS(3165), + [anon_sym___leave] = ACTIONS(3165), + [anon_sym_not] = ACTIONS(3165), + [anon_sym_compl] = ACTIONS(3165), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_sizeof] = ACTIONS(3165), + [anon_sym___alignof__] = ACTIONS(3165), + [anon_sym___alignof] = ACTIONS(3165), + [anon_sym__alignof] = ACTIONS(3165), + [anon_sym_alignof] = ACTIONS(3165), + [anon_sym__Alignof] = ACTIONS(3165), + [anon_sym_offsetof] = ACTIONS(3165), + [anon_sym__Generic] = ACTIONS(3165), + [anon_sym_typename] = ACTIONS(3165), + [anon_sym_asm] = ACTIONS(3165), + [anon_sym___asm__] = ACTIONS(3165), + [anon_sym___asm] = ACTIONS(3165), + [sym_number_literal] = ACTIONS(3167), + [anon_sym_L_SQUOTE] = ACTIONS(3167), + [anon_sym_u_SQUOTE] = ACTIONS(3167), + [anon_sym_U_SQUOTE] = ACTIONS(3167), + [anon_sym_u8_SQUOTE] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3167), + [anon_sym_L_DQUOTE] = ACTIONS(3167), + [anon_sym_u_DQUOTE] = ACTIONS(3167), + [anon_sym_U_DQUOTE] = ACTIONS(3167), + [anon_sym_u8_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [sym_true] = ACTIONS(3165), + [sym_false] = ACTIONS(3165), + [anon_sym_NULL] = ACTIONS(3165), + [anon_sym_nullptr] = ACTIONS(3165), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3165), + [anon_sym_decltype] = ACTIONS(3165), + [anon_sym_explicit] = ACTIONS(3165), + [anon_sym_export] = ACTIONS(3165), + [anon_sym_module] = ACTIONS(3165), + [anon_sym_import] = ACTIONS(3165), + [anon_sym_template] = ACTIONS(3165), + [anon_sym_operator] = ACTIONS(3165), + [anon_sym_try] = ACTIONS(3165), + [anon_sym_delete] = ACTIONS(3165), + [anon_sym_throw] = ACTIONS(3165), + [anon_sym_namespace] = ACTIONS(3165), + [anon_sym_static_assert] = ACTIONS(3165), + [anon_sym_concept] = ACTIONS(3165), + [anon_sym_co_return] = ACTIONS(3165), + [anon_sym_co_yield] = ACTIONS(3165), + [anon_sym_catch] = ACTIONS(3790), + [anon_sym_R_DQUOTE] = ACTIONS(3167), + [anon_sym_LR_DQUOTE] = ACTIONS(3167), + [anon_sym_uR_DQUOTE] = ACTIONS(3167), + [anon_sym_UR_DQUOTE] = ACTIONS(3167), + [anon_sym_u8R_DQUOTE] = ACTIONS(3167), + [anon_sym_co_await] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3165), + [anon_sym_requires] = ACTIONS(3165), + [anon_sym_CARET_CARET] = ACTIONS(3167), + [anon_sym_LBRACK_COLON] = ACTIONS(3167), + [sym_this] = ACTIONS(3165), }, [STATE(398)] = { - [sym_identifier] = ACTIONS(3876), - [aux_sym_preproc_include_token1] = ACTIONS(3876), - [aux_sym_preproc_def_token1] = ACTIONS(3876), - [aux_sym_preproc_if_token1] = ACTIONS(3876), - [aux_sym_preproc_if_token2] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), - [aux_sym_preproc_else_token1] = ACTIONS(3876), - [aux_sym_preproc_elif_token1] = ACTIONS(3876), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3876), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3876), - [sym_preproc_directive] = ACTIONS(3876), - [anon_sym_LPAREN2] = ACTIONS(3878), - [anon_sym_BANG] = ACTIONS(3878), - [anon_sym_TILDE] = ACTIONS(3878), - [anon_sym_DASH] = ACTIONS(3876), - [anon_sym_PLUS] = ACTIONS(3876), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_AMP_AMP] = ACTIONS(3878), - [anon_sym_AMP] = ACTIONS(3876), - [anon_sym_SEMI] = ACTIONS(3878), - [anon_sym___extension__] = ACTIONS(3876), - [anon_sym_typedef] = ACTIONS(3876), - [anon_sym_virtual] = ACTIONS(3876), - [anon_sym_extern] = ACTIONS(3876), - [anon_sym___attribute__] = ACTIONS(3876), - [anon_sym___attribute] = ACTIONS(3876), - [anon_sym_using] = ACTIONS(3876), - [anon_sym_COLON_COLON] = ACTIONS(3878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), - [anon_sym___declspec] = ACTIONS(3876), - [anon_sym___based] = ACTIONS(3876), - [anon_sym___cdecl] = ACTIONS(3876), - [anon_sym___clrcall] = ACTIONS(3876), - [anon_sym___stdcall] = ACTIONS(3876), - [anon_sym___fastcall] = ACTIONS(3876), - [anon_sym___thiscall] = ACTIONS(3876), - [anon_sym___vectorcall] = ACTIONS(3876), - [anon_sym_LBRACE] = ACTIONS(3878), - [anon_sym_signed] = ACTIONS(3876), - [anon_sym_unsigned] = ACTIONS(3876), - [anon_sym_long] = ACTIONS(3876), - [anon_sym_short] = ACTIONS(3876), - [anon_sym_LBRACK] = ACTIONS(3876), - [anon_sym_static] = ACTIONS(3876), - [anon_sym_register] = ACTIONS(3876), - [anon_sym_inline] = ACTIONS(3876), - [anon_sym___inline] = ACTIONS(3876), - [anon_sym___inline__] = ACTIONS(3876), - [anon_sym___forceinline] = ACTIONS(3876), - [anon_sym_thread_local] = ACTIONS(3876), - [anon_sym___thread] = ACTIONS(3876), - [anon_sym_const] = ACTIONS(3876), - [anon_sym_constexpr] = ACTIONS(3876), - [anon_sym_volatile] = ACTIONS(3876), - [anon_sym_restrict] = ACTIONS(3876), - [anon_sym___restrict__] = ACTIONS(3876), - [anon_sym__Atomic] = ACTIONS(3876), - [anon_sym__Noreturn] = ACTIONS(3876), - [anon_sym_noreturn] = ACTIONS(3876), - [anon_sym__Nonnull] = ACTIONS(3876), - [anon_sym_mutable] = ACTIONS(3876), - [anon_sym_constinit] = ACTIONS(3876), - [anon_sym_consteval] = ACTIONS(3876), - [anon_sym_alignas] = ACTIONS(3876), - [anon_sym__Alignas] = ACTIONS(3876), - [sym_primitive_type] = ACTIONS(3876), - [anon_sym_enum] = ACTIONS(3876), - [anon_sym_class] = ACTIONS(3876), - [anon_sym_struct] = ACTIONS(3876), - [anon_sym_union] = ACTIONS(3876), - [anon_sym_if] = ACTIONS(3876), - [anon_sym_else] = ACTIONS(3876), - [anon_sym_switch] = ACTIONS(3876), - [anon_sym_case] = ACTIONS(3876), - [anon_sym_default] = ACTIONS(3876), - [anon_sym_while] = ACTIONS(3876), - [anon_sym_do] = ACTIONS(3876), - [anon_sym_for] = ACTIONS(3876), - [anon_sym_return] = ACTIONS(3876), - [anon_sym_break] = ACTIONS(3876), - [anon_sym_continue] = ACTIONS(3876), - [anon_sym_goto] = ACTIONS(3876), - [anon_sym___try] = ACTIONS(3876), - [anon_sym___leave] = ACTIONS(3876), - [anon_sym_not] = ACTIONS(3876), - [anon_sym_compl] = ACTIONS(3876), - [anon_sym_DASH_DASH] = ACTIONS(3878), - [anon_sym_PLUS_PLUS] = ACTIONS(3878), - [anon_sym_sizeof] = ACTIONS(3876), - [anon_sym___alignof__] = ACTIONS(3876), - [anon_sym___alignof] = ACTIONS(3876), - [anon_sym__alignof] = ACTIONS(3876), - [anon_sym_alignof] = ACTIONS(3876), - [anon_sym__Alignof] = ACTIONS(3876), - [anon_sym_offsetof] = ACTIONS(3876), - [anon_sym__Generic] = ACTIONS(3876), - [anon_sym_typename] = ACTIONS(3876), - [anon_sym_asm] = ACTIONS(3876), - [anon_sym___asm__] = ACTIONS(3876), - [anon_sym___asm] = ACTIONS(3876), - [sym_number_literal] = ACTIONS(3878), - [anon_sym_L_SQUOTE] = ACTIONS(3878), - [anon_sym_u_SQUOTE] = ACTIONS(3878), - [anon_sym_U_SQUOTE] = ACTIONS(3878), - [anon_sym_u8_SQUOTE] = ACTIONS(3878), - [anon_sym_SQUOTE] = ACTIONS(3878), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(3876), - [sym_false] = ACTIONS(3876), - [anon_sym_NULL] = ACTIONS(3876), - [anon_sym_nullptr] = ACTIONS(3876), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3876), - [anon_sym_decltype] = ACTIONS(3876), - [anon_sym_explicit] = ACTIONS(3876), - [anon_sym_template] = ACTIONS(3876), - [anon_sym_operator] = ACTIONS(3876), - [anon_sym_try] = ACTIONS(3876), - [anon_sym_delete] = ACTIONS(3876), - [anon_sym_throw] = ACTIONS(3876), - [anon_sym_namespace] = ACTIONS(3876), - [anon_sym_static_assert] = ACTIONS(3876), - [anon_sym_concept] = ACTIONS(3876), - [anon_sym_co_return] = ACTIONS(3876), - [anon_sym_co_yield] = ACTIONS(3876), - [anon_sym_R_DQUOTE] = ACTIONS(3878), - [anon_sym_LR_DQUOTE] = ACTIONS(3878), - [anon_sym_uR_DQUOTE] = ACTIONS(3878), - [anon_sym_UR_DQUOTE] = ACTIONS(3878), - [anon_sym_u8R_DQUOTE] = ACTIONS(3878), - [anon_sym_co_await] = ACTIONS(3876), - [anon_sym_new] = ACTIONS(3876), - [anon_sym_requires] = ACTIONS(3876), - [anon_sym_CARET_CARET] = ACTIONS(3878), - [anon_sym_LBRACK_COLON] = ACTIONS(3878), - [sym_this] = ACTIONS(3876), + [sym_catch_clause] = STATE(398), + [aux_sym_constructor_try_statement_repeat1] = STATE(398), + [ts_builtin_sym_end] = ACTIONS(3173), + [sym_identifier] = ACTIONS(3171), + [aux_sym_preproc_include_token1] = ACTIONS(3171), + [aux_sym_preproc_def_token1] = ACTIONS(3171), + [aux_sym_preproc_if_token1] = ACTIONS(3171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3171), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3171), + [sym_preproc_directive] = ACTIONS(3171), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(3173), + [anon_sym_AMP_AMP] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym___extension__] = ACTIONS(3171), + [anon_sym_typedef] = ACTIONS(3171), + [anon_sym_virtual] = ACTIONS(3171), + [anon_sym_extern] = ACTIONS(3171), + [anon_sym___attribute__] = ACTIONS(3171), + [anon_sym___attribute] = ACTIONS(3171), + [anon_sym_using] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3173), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), + [anon_sym___declspec] = ACTIONS(3171), + [anon_sym___based] = ACTIONS(3171), + [anon_sym___cdecl] = ACTIONS(3171), + [anon_sym___clrcall] = ACTIONS(3171), + [anon_sym___stdcall] = ACTIONS(3171), + [anon_sym___fastcall] = ACTIONS(3171), + [anon_sym___thiscall] = ACTIONS(3171), + [anon_sym___vectorcall] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3173), + [anon_sym_signed] = ACTIONS(3171), + [anon_sym_unsigned] = ACTIONS(3171), + [anon_sym_long] = ACTIONS(3171), + [anon_sym_short] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_register] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym___inline] = ACTIONS(3171), + [anon_sym___inline__] = ACTIONS(3171), + [anon_sym___forceinline] = ACTIONS(3171), + [anon_sym_thread_local] = ACTIONS(3171), + [anon_sym___thread] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_constexpr] = ACTIONS(3171), + [anon_sym_volatile] = ACTIONS(3171), + [anon_sym_restrict] = ACTIONS(3171), + [anon_sym___restrict__] = ACTIONS(3171), + [anon_sym__Atomic] = ACTIONS(3171), + [anon_sym__Noreturn] = ACTIONS(3171), + [anon_sym_noreturn] = ACTIONS(3171), + [anon_sym__Nonnull] = ACTIONS(3171), + [anon_sym_mutable] = ACTIONS(3171), + [anon_sym_constinit] = ACTIONS(3171), + [anon_sym_consteval] = ACTIONS(3171), + [anon_sym_alignas] = ACTIONS(3171), + [anon_sym__Alignas] = ACTIONS(3171), + [sym_primitive_type] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), + [anon_sym_class] = ACTIONS(3171), + [anon_sym_struct] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_switch] = ACTIONS(3171), + [anon_sym_case] = ACTIONS(3171), + [anon_sym_default] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_goto] = ACTIONS(3171), + [anon_sym___try] = ACTIONS(3171), + [anon_sym___leave] = ACTIONS(3171), + [anon_sym_not] = ACTIONS(3171), + [anon_sym_compl] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3173), + [anon_sym_PLUS_PLUS] = ACTIONS(3173), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3171), + [anon_sym___alignof] = ACTIONS(3171), + [anon_sym__alignof] = ACTIONS(3171), + [anon_sym_alignof] = ACTIONS(3171), + [anon_sym__Alignof] = ACTIONS(3171), + [anon_sym_offsetof] = ACTIONS(3171), + [anon_sym__Generic] = ACTIONS(3171), + [anon_sym_typename] = ACTIONS(3171), + [anon_sym_asm] = ACTIONS(3171), + [anon_sym___asm__] = ACTIONS(3171), + [anon_sym___asm] = ACTIONS(3171), + [sym_number_literal] = ACTIONS(3173), + [anon_sym_L_SQUOTE] = ACTIONS(3173), + [anon_sym_u_SQUOTE] = ACTIONS(3173), + [anon_sym_U_SQUOTE] = ACTIONS(3173), + [anon_sym_u8_SQUOTE] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_L_DQUOTE] = ACTIONS(3173), + [anon_sym_u_DQUOTE] = ACTIONS(3173), + [anon_sym_U_DQUOTE] = ACTIONS(3173), + [anon_sym_u8_DQUOTE] = ACTIONS(3173), + [anon_sym_DQUOTE] = ACTIONS(3173), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [anon_sym_NULL] = ACTIONS(3171), + [anon_sym_nullptr] = ACTIONS(3171), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3171), + [anon_sym_decltype] = ACTIONS(3171), + [anon_sym_explicit] = ACTIONS(3171), + [anon_sym_export] = ACTIONS(3171), + [anon_sym_module] = ACTIONS(3171), + [anon_sym_import] = ACTIONS(3171), + [anon_sym_template] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_delete] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_namespace] = ACTIONS(3171), + [anon_sym_static_assert] = ACTIONS(3171), + [anon_sym_concept] = ACTIONS(3171), + [anon_sym_co_return] = ACTIONS(3171), + [anon_sym_co_yield] = ACTIONS(3171), + [anon_sym_catch] = ACTIONS(3792), + [anon_sym_R_DQUOTE] = ACTIONS(3173), + [anon_sym_LR_DQUOTE] = ACTIONS(3173), + [anon_sym_uR_DQUOTE] = ACTIONS(3173), + [anon_sym_UR_DQUOTE] = ACTIONS(3173), + [anon_sym_u8R_DQUOTE] = ACTIONS(3173), + [anon_sym_co_await] = ACTIONS(3171), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_requires] = ACTIONS(3171), + [anon_sym_CARET_CARET] = ACTIONS(3173), + [anon_sym_LBRACK_COLON] = ACTIONS(3173), + [sym_this] = ACTIONS(3171), }, [STATE(399)] = { - [sym_identifier] = ACTIONS(3880), - [aux_sym_preproc_include_token1] = ACTIONS(3880), - [aux_sym_preproc_def_token1] = ACTIONS(3880), - [aux_sym_preproc_if_token1] = ACTIONS(3880), - [aux_sym_preproc_if_token2] = ACTIONS(3880), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3880), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3880), - [aux_sym_preproc_else_token1] = ACTIONS(3880), - [aux_sym_preproc_elif_token1] = ACTIONS(3880), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3880), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3880), - [sym_preproc_directive] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3882), - [anon_sym_TILDE] = ACTIONS(3882), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_STAR] = ACTIONS(3882), - [anon_sym_AMP_AMP] = ACTIONS(3882), - [anon_sym_AMP] = ACTIONS(3880), - [anon_sym_SEMI] = ACTIONS(3882), - [anon_sym___extension__] = ACTIONS(3880), - [anon_sym_typedef] = ACTIONS(3880), - [anon_sym_virtual] = ACTIONS(3880), - [anon_sym_extern] = ACTIONS(3880), - [anon_sym___attribute__] = ACTIONS(3880), - [anon_sym___attribute] = ACTIONS(3880), - [anon_sym_using] = ACTIONS(3880), - [anon_sym_COLON_COLON] = ACTIONS(3882), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3882), - [anon_sym___declspec] = ACTIONS(3880), - [anon_sym___based] = ACTIONS(3880), - [anon_sym___cdecl] = ACTIONS(3880), - [anon_sym___clrcall] = ACTIONS(3880), - [anon_sym___stdcall] = ACTIONS(3880), - [anon_sym___fastcall] = ACTIONS(3880), - [anon_sym___thiscall] = ACTIONS(3880), - [anon_sym___vectorcall] = ACTIONS(3880), - [anon_sym_LBRACE] = ACTIONS(3882), - [anon_sym_signed] = ACTIONS(3880), - [anon_sym_unsigned] = ACTIONS(3880), - [anon_sym_long] = ACTIONS(3880), - [anon_sym_short] = ACTIONS(3880), - [anon_sym_LBRACK] = ACTIONS(3880), - [anon_sym_static] = ACTIONS(3880), - [anon_sym_register] = ACTIONS(3880), - [anon_sym_inline] = ACTIONS(3880), - [anon_sym___inline] = ACTIONS(3880), - [anon_sym___inline__] = ACTIONS(3880), - [anon_sym___forceinline] = ACTIONS(3880), - [anon_sym_thread_local] = ACTIONS(3880), - [anon_sym___thread] = ACTIONS(3880), - [anon_sym_const] = ACTIONS(3880), - [anon_sym_constexpr] = ACTIONS(3880), - [anon_sym_volatile] = ACTIONS(3880), - [anon_sym_restrict] = ACTIONS(3880), - [anon_sym___restrict__] = ACTIONS(3880), - [anon_sym__Atomic] = ACTIONS(3880), - [anon_sym__Noreturn] = ACTIONS(3880), - [anon_sym_noreturn] = ACTIONS(3880), - [anon_sym__Nonnull] = ACTIONS(3880), - [anon_sym_mutable] = ACTIONS(3880), - [anon_sym_constinit] = ACTIONS(3880), - [anon_sym_consteval] = ACTIONS(3880), - [anon_sym_alignas] = ACTIONS(3880), - [anon_sym__Alignas] = ACTIONS(3880), - [sym_primitive_type] = ACTIONS(3880), - [anon_sym_enum] = ACTIONS(3880), - [anon_sym_class] = ACTIONS(3880), - [anon_sym_struct] = ACTIONS(3880), - [anon_sym_union] = ACTIONS(3880), - [anon_sym_if] = ACTIONS(3880), - [anon_sym_else] = ACTIONS(3880), - [anon_sym_switch] = ACTIONS(3880), - [anon_sym_case] = ACTIONS(3880), - [anon_sym_default] = ACTIONS(3880), - [anon_sym_while] = ACTIONS(3880), - [anon_sym_do] = ACTIONS(3880), - [anon_sym_for] = ACTIONS(3880), - [anon_sym_return] = ACTIONS(3880), - [anon_sym_break] = ACTIONS(3880), - [anon_sym_continue] = ACTIONS(3880), - [anon_sym_goto] = ACTIONS(3880), - [anon_sym___try] = ACTIONS(3880), - [anon_sym___leave] = ACTIONS(3880), - [anon_sym_not] = ACTIONS(3880), - [anon_sym_compl] = ACTIONS(3880), - [anon_sym_DASH_DASH] = ACTIONS(3882), - [anon_sym_PLUS_PLUS] = ACTIONS(3882), - [anon_sym_sizeof] = ACTIONS(3880), - [anon_sym___alignof__] = ACTIONS(3880), - [anon_sym___alignof] = ACTIONS(3880), - [anon_sym__alignof] = ACTIONS(3880), - [anon_sym_alignof] = ACTIONS(3880), - [anon_sym__Alignof] = ACTIONS(3880), - [anon_sym_offsetof] = ACTIONS(3880), - [anon_sym__Generic] = ACTIONS(3880), - [anon_sym_typename] = ACTIONS(3880), - [anon_sym_asm] = ACTIONS(3880), - [anon_sym___asm__] = ACTIONS(3880), - [anon_sym___asm] = ACTIONS(3880), - [sym_number_literal] = ACTIONS(3882), - [anon_sym_L_SQUOTE] = ACTIONS(3882), - [anon_sym_u_SQUOTE] = ACTIONS(3882), - [anon_sym_U_SQUOTE] = ACTIONS(3882), - [anon_sym_u8_SQUOTE] = ACTIONS(3882), - [anon_sym_SQUOTE] = ACTIONS(3882), - [anon_sym_L_DQUOTE] = ACTIONS(3882), - [anon_sym_u_DQUOTE] = ACTIONS(3882), - [anon_sym_U_DQUOTE] = ACTIONS(3882), - [anon_sym_u8_DQUOTE] = ACTIONS(3882), - [anon_sym_DQUOTE] = ACTIONS(3882), - [sym_true] = ACTIONS(3880), - [sym_false] = ACTIONS(3880), - [anon_sym_NULL] = ACTIONS(3880), - [anon_sym_nullptr] = ACTIONS(3880), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3880), - [anon_sym_decltype] = ACTIONS(3880), - [anon_sym_explicit] = ACTIONS(3880), - [anon_sym_template] = ACTIONS(3880), - [anon_sym_operator] = ACTIONS(3880), - [anon_sym_try] = ACTIONS(3880), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_throw] = ACTIONS(3880), - [anon_sym_namespace] = ACTIONS(3880), - [anon_sym_static_assert] = ACTIONS(3880), - [anon_sym_concept] = ACTIONS(3880), - [anon_sym_co_return] = ACTIONS(3880), - [anon_sym_co_yield] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3880), - [anon_sym_new] = ACTIONS(3880), - [anon_sym_requires] = ACTIONS(3880), - [anon_sym_CARET_CARET] = ACTIONS(3882), - [anon_sym_LBRACK_COLON] = ACTIONS(3882), - [sym_this] = ACTIONS(3880), + [sym_type_qualifier] = STATE(5202), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(2376), + [sym_sized_type_specifier] = STATE(2222), + [sym_enum_specifier] = STATE(2222), + [sym_struct_specifier] = STATE(2222), + [sym_union_specifier] = STATE(2222), + [sym_expression] = STATE(5002), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_type_descriptor] = STATE(3833), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_placeholder_type_specifier] = STATE(2222), + [sym_decltype_auto] = STATE(2221), + [sym_decltype] = STATE(2169), + [sym_class_specifier] = STATE(2222), + [sym__class_name] = STATE(10271), + [sym_dependent_type] = STATE(2222), + [sym_template_type] = STATE(2146), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7954), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(2207), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(2251), + [sym__splice_specialization_specifier] = STATE(2170), + [sym_splice_type_specifier] = STATE(2223), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [aux_sym__type_definition_type_repeat1] = STATE(5202), + [aux_sym_sized_type_specifier_repeat1] = STATE(2076), + [sym_identifier] = ACTIONS(3795), + [anon_sym_LPAREN2] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(3799), + [anon_sym_COLON_COLON] = ACTIONS(3801), + [anon_sym_signed] = ACTIONS(3803), + [anon_sym_unsigned] = ACTIONS(3803), + [anon_sym_long] = ACTIONS(3803), + [anon_sym_short] = ACTIONS(3803), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3805), + [anon_sym_enum] = ACTIONS(3807), + [anon_sym_class] = ACTIONS(3809), + [anon_sym_struct] = ACTIONS(3811), + [anon_sym_union] = ACTIONS(3813), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(3817), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3819), + [anon_sym_decltype] = ACTIONS(3821), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, [STATE(400)] = { - [sym_identifier] = ACTIONS(3876), - [aux_sym_preproc_include_token1] = ACTIONS(3876), - [aux_sym_preproc_def_token1] = ACTIONS(3876), - [aux_sym_preproc_if_token1] = ACTIONS(3876), - [aux_sym_preproc_if_token2] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), - [aux_sym_preproc_else_token1] = ACTIONS(3876), - [aux_sym_preproc_elif_token1] = ACTIONS(3876), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3876), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3876), - [sym_preproc_directive] = ACTIONS(3876), - [anon_sym_LPAREN2] = ACTIONS(3878), - [anon_sym_BANG] = ACTIONS(3878), - [anon_sym_TILDE] = ACTIONS(3878), - [anon_sym_DASH] = ACTIONS(3876), - [anon_sym_PLUS] = ACTIONS(3876), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_AMP_AMP] = ACTIONS(3878), - [anon_sym_AMP] = ACTIONS(3876), - [anon_sym_SEMI] = ACTIONS(3878), - [anon_sym___extension__] = ACTIONS(3876), - [anon_sym_typedef] = ACTIONS(3876), - [anon_sym_virtual] = ACTIONS(3876), - [anon_sym_extern] = ACTIONS(3876), - [anon_sym___attribute__] = ACTIONS(3876), - [anon_sym___attribute] = ACTIONS(3876), - [anon_sym_using] = ACTIONS(3876), - [anon_sym_COLON_COLON] = ACTIONS(3878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), - [anon_sym___declspec] = ACTIONS(3876), - [anon_sym___based] = ACTIONS(3876), - [anon_sym___cdecl] = ACTIONS(3876), - [anon_sym___clrcall] = ACTIONS(3876), - [anon_sym___stdcall] = ACTIONS(3876), - [anon_sym___fastcall] = ACTIONS(3876), - [anon_sym___thiscall] = ACTIONS(3876), - [anon_sym___vectorcall] = ACTIONS(3876), - [anon_sym_LBRACE] = ACTIONS(3878), - [anon_sym_signed] = ACTIONS(3876), - [anon_sym_unsigned] = ACTIONS(3876), - [anon_sym_long] = ACTIONS(3876), - [anon_sym_short] = ACTIONS(3876), - [anon_sym_LBRACK] = ACTIONS(3876), - [anon_sym_static] = ACTIONS(3876), - [anon_sym_register] = ACTIONS(3876), - [anon_sym_inline] = ACTIONS(3876), - [anon_sym___inline] = ACTIONS(3876), - [anon_sym___inline__] = ACTIONS(3876), - [anon_sym___forceinline] = ACTIONS(3876), - [anon_sym_thread_local] = ACTIONS(3876), - [anon_sym___thread] = ACTIONS(3876), - [anon_sym_const] = ACTIONS(3876), - [anon_sym_constexpr] = ACTIONS(3876), - [anon_sym_volatile] = ACTIONS(3876), - [anon_sym_restrict] = ACTIONS(3876), - [anon_sym___restrict__] = ACTIONS(3876), - [anon_sym__Atomic] = ACTIONS(3876), - [anon_sym__Noreturn] = ACTIONS(3876), - [anon_sym_noreturn] = ACTIONS(3876), - [anon_sym__Nonnull] = ACTIONS(3876), - [anon_sym_mutable] = ACTIONS(3876), - [anon_sym_constinit] = ACTIONS(3876), - [anon_sym_consteval] = ACTIONS(3876), - [anon_sym_alignas] = ACTIONS(3876), - [anon_sym__Alignas] = ACTIONS(3876), - [sym_primitive_type] = ACTIONS(3876), - [anon_sym_enum] = ACTIONS(3876), - [anon_sym_class] = ACTIONS(3876), - [anon_sym_struct] = ACTIONS(3876), - [anon_sym_union] = ACTIONS(3876), - [anon_sym_if] = ACTIONS(3876), - [anon_sym_else] = ACTIONS(3876), - [anon_sym_switch] = ACTIONS(3876), - [anon_sym_case] = ACTIONS(3876), - [anon_sym_default] = ACTIONS(3876), - [anon_sym_while] = ACTIONS(3876), - [anon_sym_do] = ACTIONS(3876), - [anon_sym_for] = ACTIONS(3876), - [anon_sym_return] = ACTIONS(3876), - [anon_sym_break] = ACTIONS(3876), - [anon_sym_continue] = ACTIONS(3876), - [anon_sym_goto] = ACTIONS(3876), - [anon_sym___try] = ACTIONS(3876), - [anon_sym___leave] = ACTIONS(3876), - [anon_sym_not] = ACTIONS(3876), - [anon_sym_compl] = ACTIONS(3876), - [anon_sym_DASH_DASH] = ACTIONS(3878), - [anon_sym_PLUS_PLUS] = ACTIONS(3878), - [anon_sym_sizeof] = ACTIONS(3876), - [anon_sym___alignof__] = ACTIONS(3876), - [anon_sym___alignof] = ACTIONS(3876), - [anon_sym__alignof] = ACTIONS(3876), - [anon_sym_alignof] = ACTIONS(3876), - [anon_sym__Alignof] = ACTIONS(3876), - [anon_sym_offsetof] = ACTIONS(3876), - [anon_sym__Generic] = ACTIONS(3876), - [anon_sym_typename] = ACTIONS(3876), - [anon_sym_asm] = ACTIONS(3876), - [anon_sym___asm__] = ACTIONS(3876), - [anon_sym___asm] = ACTIONS(3876), - [sym_number_literal] = ACTIONS(3878), - [anon_sym_L_SQUOTE] = ACTIONS(3878), - [anon_sym_u_SQUOTE] = ACTIONS(3878), - [anon_sym_U_SQUOTE] = ACTIONS(3878), - [anon_sym_u8_SQUOTE] = ACTIONS(3878), - [anon_sym_SQUOTE] = ACTIONS(3878), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(3876), - [sym_false] = ACTIONS(3876), - [anon_sym_NULL] = ACTIONS(3876), - [anon_sym_nullptr] = ACTIONS(3876), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3876), - [anon_sym_decltype] = ACTIONS(3876), - [anon_sym_explicit] = ACTIONS(3876), - [anon_sym_template] = ACTIONS(3876), - [anon_sym_operator] = ACTIONS(3876), - [anon_sym_try] = ACTIONS(3876), - [anon_sym_delete] = ACTIONS(3876), - [anon_sym_throw] = ACTIONS(3876), - [anon_sym_namespace] = ACTIONS(3876), - [anon_sym_static_assert] = ACTIONS(3876), - [anon_sym_concept] = ACTIONS(3876), - [anon_sym_co_return] = ACTIONS(3876), - [anon_sym_co_yield] = ACTIONS(3876), - [anon_sym_R_DQUOTE] = ACTIONS(3878), - [anon_sym_LR_DQUOTE] = ACTIONS(3878), - [anon_sym_uR_DQUOTE] = ACTIONS(3878), - [anon_sym_UR_DQUOTE] = ACTIONS(3878), - [anon_sym_u8R_DQUOTE] = ACTIONS(3878), - [anon_sym_co_await] = ACTIONS(3876), - [anon_sym_new] = ACTIONS(3876), - [anon_sym_requires] = ACTIONS(3876), - [anon_sym_CARET_CARET] = ACTIONS(3878), - [anon_sym_LBRACK_COLON] = ACTIONS(3878), - [sym_this] = ACTIONS(3876), + [sym_type_qualifier] = STATE(5187), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(2472), + [sym_sized_type_specifier] = STATE(3167), + [sym_enum_specifier] = STATE(3167), + [sym_struct_specifier] = STATE(3167), + [sym_union_specifier] = STATE(3167), + [sym_expression] = STATE(5322), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_type_descriptor] = STATE(5751), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_placeholder_type_specifier] = STATE(3167), + [sym_decltype_auto] = STATE(3166), + [sym_decltype] = STATE(3053), + [sym_class_specifier] = STATE(3167), + [sym__class_name] = STATE(10308), + [sym_dependent_type] = STATE(3167), + [sym_template_type] = STATE(3054), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7919), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(3176), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(3392), + [sym__splice_specialization_specifier] = STATE(2659), + [sym_splice_type_specifier] = STATE(3184), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [aux_sym__type_definition_type_repeat1] = STATE(5187), + [aux_sym_sized_type_specifier_repeat1] = STATE(2263), + [sym_identifier] = ACTIONS(3823), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3829), + [anon_sym_COLON_COLON] = ACTIONS(3831), + [anon_sym_signed] = ACTIONS(3833), + [anon_sym_unsigned] = ACTIONS(3833), + [anon_sym_long] = ACTIONS(3833), + [anon_sym_short] = ACTIONS(3833), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3835), + [anon_sym_enum] = ACTIONS(3837), + [anon_sym_class] = ACTIONS(3839), + [anon_sym_struct] = ACTIONS(3841), + [anon_sym_union] = ACTIONS(3843), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3847), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3849), + [anon_sym_decltype] = ACTIONS(3851), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, [STATE(401)] = { - [sym_identifier] = ACTIONS(3884), - [aux_sym_preproc_include_token1] = ACTIONS(3884), - [aux_sym_preproc_def_token1] = ACTIONS(3884), - [aux_sym_preproc_if_token1] = ACTIONS(3884), - [aux_sym_preproc_if_token2] = ACTIONS(3884), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3884), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3884), - [aux_sym_preproc_else_token1] = ACTIONS(3884), - [aux_sym_preproc_elif_token1] = ACTIONS(3884), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3884), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3884), - [sym_preproc_directive] = ACTIONS(3884), - [anon_sym_LPAREN2] = ACTIONS(3886), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3886), - [anon_sym_AMP_AMP] = ACTIONS(3886), - [anon_sym_AMP] = ACTIONS(3884), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym___extension__] = ACTIONS(3884), - [anon_sym_typedef] = ACTIONS(3884), - [anon_sym_virtual] = ACTIONS(3884), - [anon_sym_extern] = ACTIONS(3884), - [anon_sym___attribute__] = ACTIONS(3884), - [anon_sym___attribute] = ACTIONS(3884), - [anon_sym_using] = 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___cdecl] = ACTIONS(3884), - [anon_sym___clrcall] = ACTIONS(3884), - [anon_sym___stdcall] = ACTIONS(3884), - [anon_sym___fastcall] = ACTIONS(3884), - [anon_sym___thiscall] = ACTIONS(3884), - [anon_sym___vectorcall] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_signed] = ACTIONS(3884), - [anon_sym_unsigned] = ACTIONS(3884), - [anon_sym_long] = ACTIONS(3884), - [anon_sym_short] = ACTIONS(3884), - [anon_sym_LBRACK] = ACTIONS(3884), - [anon_sym_static] = ACTIONS(3884), - [anon_sym_register] = ACTIONS(3884), - [anon_sym_inline] = ACTIONS(3884), - [anon_sym___inline] = ACTIONS(3884), - [anon_sym___inline__] = ACTIONS(3884), - [anon_sym___forceinline] = ACTIONS(3884), - [anon_sym_thread_local] = ACTIONS(3884), - [anon_sym___thread] = ACTIONS(3884), - [anon_sym_const] = ACTIONS(3884), - [anon_sym_constexpr] = ACTIONS(3884), - [anon_sym_volatile] = ACTIONS(3884), - [anon_sym_restrict] = ACTIONS(3884), - [anon_sym___restrict__] = ACTIONS(3884), - [anon_sym__Atomic] = ACTIONS(3884), - [anon_sym__Noreturn] = ACTIONS(3884), - [anon_sym_noreturn] = ACTIONS(3884), - [anon_sym__Nonnull] = ACTIONS(3884), - [anon_sym_mutable] = ACTIONS(3884), - [anon_sym_constinit] = ACTIONS(3884), - [anon_sym_consteval] = ACTIONS(3884), - [anon_sym_alignas] = ACTIONS(3884), - [anon_sym__Alignas] = ACTIONS(3884), - [sym_primitive_type] = ACTIONS(3884), - [anon_sym_enum] = ACTIONS(3884), - [anon_sym_class] = ACTIONS(3884), - [anon_sym_struct] = ACTIONS(3884), - [anon_sym_union] = ACTIONS(3884), - [anon_sym_if] = ACTIONS(3884), - [anon_sym_else] = ACTIONS(3884), - [anon_sym_switch] = ACTIONS(3884), - [anon_sym_case] = ACTIONS(3884), - [anon_sym_default] = ACTIONS(3884), - [anon_sym_while] = ACTIONS(3884), - [anon_sym_do] = ACTIONS(3884), - [anon_sym_for] = ACTIONS(3884), - [anon_sym_return] = ACTIONS(3884), - [anon_sym_break] = ACTIONS(3884), - [anon_sym_continue] = ACTIONS(3884), - [anon_sym_goto] = ACTIONS(3884), - [anon_sym___try] = ACTIONS(3884), - [anon_sym___leave] = ACTIONS(3884), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3886), - [anon_sym_PLUS_PLUS] = ACTIONS(3886), - [anon_sym_sizeof] = ACTIONS(3884), - [anon_sym___alignof__] = ACTIONS(3884), - [anon_sym___alignof] = ACTIONS(3884), - [anon_sym__alignof] = ACTIONS(3884), - [anon_sym_alignof] = ACTIONS(3884), - [anon_sym__Alignof] = ACTIONS(3884), - [anon_sym_offsetof] = ACTIONS(3884), - [anon_sym__Generic] = ACTIONS(3884), - [anon_sym_typename] = ACTIONS(3884), - [anon_sym_asm] = ACTIONS(3884), - [anon_sym___asm__] = ACTIONS(3884), - [anon_sym___asm] = ACTIONS(3884), - [sym_number_literal] = ACTIONS(3886), - [anon_sym_L_SQUOTE] = ACTIONS(3886), - [anon_sym_u_SQUOTE] = ACTIONS(3886), - [anon_sym_U_SQUOTE] = ACTIONS(3886), - [anon_sym_u8_SQUOTE] = ACTIONS(3886), - [anon_sym_SQUOTE] = ACTIONS(3886), - [anon_sym_L_DQUOTE] = ACTIONS(3886), - [anon_sym_u_DQUOTE] = ACTIONS(3886), - [anon_sym_U_DQUOTE] = ACTIONS(3886), - [anon_sym_u8_DQUOTE] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(3886), - [sym_true] = ACTIONS(3884), - [sym_false] = ACTIONS(3884), - [anon_sym_NULL] = ACTIONS(3884), - [anon_sym_nullptr] = ACTIONS(3884), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3884), - [anon_sym_decltype] = ACTIONS(3884), - [anon_sym_explicit] = ACTIONS(3884), - [anon_sym_template] = ACTIONS(3884), - [anon_sym_operator] = ACTIONS(3884), - [anon_sym_try] = ACTIONS(3884), - [anon_sym_delete] = ACTIONS(3884), - [anon_sym_throw] = ACTIONS(3884), - [anon_sym_namespace] = ACTIONS(3884), - [anon_sym_static_assert] = ACTIONS(3884), - [anon_sym_concept] = ACTIONS(3884), - [anon_sym_co_return] = ACTIONS(3884), - [anon_sym_co_yield] = ACTIONS(3884), - [anon_sym_R_DQUOTE] = ACTIONS(3886), - [anon_sym_LR_DQUOTE] = ACTIONS(3886), - [anon_sym_uR_DQUOTE] = ACTIONS(3886), - [anon_sym_UR_DQUOTE] = ACTIONS(3886), - [anon_sym_u8R_DQUOTE] = ACTIONS(3886), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(3884), - [anon_sym_requires] = ACTIONS(3884), - [anon_sym_CARET_CARET] = ACTIONS(3886), - [anon_sym_LBRACK_COLON] = ACTIONS(3886), - [sym_this] = ACTIONS(3884), + [sym_type_qualifier] = STATE(5201), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(3483), + [sym_sized_type_specifier] = STATE(4064), + [sym_enum_specifier] = STATE(4064), + [sym_struct_specifier] = STATE(4064), + [sym_union_specifier] = STATE(4064), + [sym_expression] = STATE(6359), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(5965), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(4064), + [sym_decltype_auto] = STATE(4119), + [sym_decltype] = STATE(3967), + [sym_class_specifier] = STATE(4064), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(4064), + [sym_template_type] = STATE(4148), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7920), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(4155), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(4279), + [sym__splice_specialization_specifier] = STATE(3711), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [aux_sym__type_definition_type_repeat1] = STATE(5201), + [aux_sym_sized_type_specifier_repeat1] = STATE(2941), + [sym_identifier] = ACTIONS(3853), + [anon_sym_LPAREN2] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(3863), + [anon_sym_COLON_COLON] = ACTIONS(3865), + [anon_sym_signed] = ACTIONS(3867), + [anon_sym_unsigned] = ACTIONS(3867), + [anon_sym_long] = ACTIONS(3867), + [anon_sym_short] = ACTIONS(3867), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3869), + [anon_sym_enum] = ACTIONS(3871), + [anon_sym_class] = ACTIONS(3873), + [anon_sym_struct] = ACTIONS(3875), + [anon_sym_union] = ACTIONS(3877), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3883), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3891), + [anon_sym_decltype] = ACTIONS(3893), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(402)] = { - [sym_identifier] = ACTIONS(2803), - [aux_sym_preproc_include_token1] = ACTIONS(2803), - [aux_sym_preproc_def_token1] = ACTIONS(2803), - [anon_sym_COMMA] = ACTIONS(3888), - [aux_sym_preproc_if_token1] = ACTIONS(2803), - [aux_sym_preproc_if_token2] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), - [aux_sym_preproc_else_token1] = ACTIONS(2803), - [aux_sym_preproc_elif_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2803), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2803), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(3888), - [anon_sym___extension__] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2803), - [anon_sym_virtual] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym___attribute__] = ACTIONS(2803), - [anon_sym___attribute] = ACTIONS(2803), - [anon_sym_using] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2803), - [anon_sym___based] = ACTIONS(2803), - [anon_sym___cdecl] = ACTIONS(2803), - [anon_sym___clrcall] = ACTIONS(2803), - [anon_sym___stdcall] = ACTIONS(2803), - [anon_sym___fastcall] = ACTIONS(2803), - [anon_sym___thiscall] = ACTIONS(2803), - [anon_sym___vectorcall] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_signed] = ACTIONS(2803), - [anon_sym_unsigned] = ACTIONS(2803), - [anon_sym_long] = ACTIONS(2803), - [anon_sym_short] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_register] = ACTIONS(2803), - [anon_sym_inline] = ACTIONS(2803), - [anon_sym___inline] = ACTIONS(2803), - [anon_sym___inline__] = ACTIONS(2803), - [anon_sym___forceinline] = ACTIONS(2803), - [anon_sym_thread_local] = ACTIONS(2803), - [anon_sym___thread] = ACTIONS(2803), - [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__Nonnull] = ACTIONS(2803), - [anon_sym_mutable] = ACTIONS(2803), - [anon_sym_constinit] = ACTIONS(2803), - [anon_sym_consteval] = ACTIONS(2803), - [anon_sym_alignas] = ACTIONS(2803), - [anon_sym__Alignas] = ACTIONS(2803), - [sym_primitive_type] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_if] = ACTIONS(2803), - [anon_sym_switch] = ACTIONS(2803), - [anon_sym_case] = ACTIONS(2803), - [anon_sym_default] = ACTIONS(2803), - [anon_sym_while] = ACTIONS(2803), - [anon_sym_do] = ACTIONS(2803), - [anon_sym_for] = ACTIONS(2803), - [anon_sym_return] = ACTIONS(2803), - [anon_sym_break] = ACTIONS(2803), - [anon_sym_continue] = ACTIONS(2803), - [anon_sym_goto] = ACTIONS(2803), - [anon_sym___try] = ACTIONS(2803), - [anon_sym___leave] = ACTIONS(2803), - [anon_sym_not] = ACTIONS(2803), - [anon_sym_compl] = ACTIONS(2803), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_sizeof] = ACTIONS(2803), - [anon_sym___alignof__] = ACTIONS(2803), - [anon_sym___alignof] = ACTIONS(2803), - [anon_sym__alignof] = ACTIONS(2803), - [anon_sym_alignof] = ACTIONS(2803), - [anon_sym__Alignof] = ACTIONS(2803), - [anon_sym_offsetof] = ACTIONS(2803), - [anon_sym__Generic] = ACTIONS(2803), - [anon_sym_typename] = ACTIONS(2803), - [anon_sym_asm] = ACTIONS(2803), - [anon_sym___asm__] = ACTIONS(2803), - [anon_sym___asm] = ACTIONS(2803), - [sym_number_literal] = ACTIONS(2801), - [anon_sym_L_SQUOTE] = ACTIONS(2801), - [anon_sym_u_SQUOTE] = ACTIONS(2801), - [anon_sym_U_SQUOTE] = ACTIONS(2801), - [anon_sym_u8_SQUOTE] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2801), - [anon_sym_L_DQUOTE] = ACTIONS(2801), - [anon_sym_u_DQUOTE] = ACTIONS(2801), - [anon_sym_U_DQUOTE] = ACTIONS(2801), - [anon_sym_u8_DQUOTE] = ACTIONS(2801), - [anon_sym_DQUOTE] = ACTIONS(2801), - [sym_true] = ACTIONS(2803), - [sym_false] = ACTIONS(2803), - [anon_sym_NULL] = ACTIONS(2803), - [anon_sym_nullptr] = ACTIONS(2803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2803), - [anon_sym_decltype] = ACTIONS(2803), - [anon_sym_explicit] = ACTIONS(2803), - [anon_sym_template] = ACTIONS(2803), - [anon_sym_operator] = ACTIONS(2803), - [anon_sym_try] = ACTIONS(2803), - [anon_sym_delete] = ACTIONS(2803), - [anon_sym_throw] = ACTIONS(2803), - [anon_sym_namespace] = ACTIONS(2803), - [anon_sym_static_assert] = ACTIONS(2803), - [anon_sym_concept] = ACTIONS(2803), - [anon_sym_co_return] = ACTIONS(2803), - [anon_sym_co_yield] = ACTIONS(2803), - [anon_sym_R_DQUOTE] = ACTIONS(2801), - [anon_sym_LR_DQUOTE] = ACTIONS(2801), - [anon_sym_uR_DQUOTE] = ACTIONS(2801), - [anon_sym_UR_DQUOTE] = ACTIONS(2801), - [anon_sym_u8R_DQUOTE] = ACTIONS(2801), - [anon_sym_co_await] = ACTIONS(2803), - [anon_sym_new] = ACTIONS(2803), - [anon_sym_requires] = ACTIONS(2803), - [anon_sym_CARET_CARET] = ACTIONS(2801), - [anon_sym_LBRACK_COLON] = ACTIONS(2801), - [sym_this] = ACTIONS(2803), + [sym_type_qualifier] = STATE(5062), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(2280), + [sym_sized_type_specifier] = STATE(2222), + [sym_enum_specifier] = STATE(2222), + [sym_struct_specifier] = STATE(2222), + [sym_union_specifier] = STATE(2222), + [sym_expression] = STATE(4750), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_type_descriptor] = STATE(3833), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_placeholder_type_specifier] = STATE(2222), + [sym_decltype_auto] = STATE(2221), + [sym_decltype] = STATE(2169), + [sym_class_specifier] = STATE(2222), + [sym__class_name] = STATE(10271), + [sym_dependent_type] = STATE(2222), + [sym_template_type] = STATE(2146), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7954), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(2207), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(2251), + [sym__splice_specialization_specifier] = STATE(2170), + [sym_splice_type_specifier] = STATE(2223), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [aux_sym__type_definition_type_repeat1] = STATE(5062), + [aux_sym_sized_type_specifier_repeat1] = STATE(2076), + [sym_identifier] = ACTIONS(3909), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3913), + [anon_sym_COLON_COLON] = ACTIONS(3915), + [anon_sym_signed] = ACTIONS(3803), + [anon_sym_unsigned] = ACTIONS(3803), + [anon_sym_long] = ACTIONS(3803), + [anon_sym_short] = ACTIONS(3803), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3805), + [anon_sym_enum] = ACTIONS(3807), + [anon_sym_class] = ACTIONS(3809), + [anon_sym_struct] = ACTIONS(3811), + [anon_sym_union] = ACTIONS(3813), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(3817), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3819), + [anon_sym_decltype] = ACTIONS(3821), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, [STATE(403)] = { - [sym_identifier] = ACTIONS(3890), - [aux_sym_preproc_include_token1] = ACTIONS(3890), - [aux_sym_preproc_def_token1] = ACTIONS(3890), - [aux_sym_preproc_if_token1] = ACTIONS(3890), - [aux_sym_preproc_if_token2] = ACTIONS(3890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3890), - [aux_sym_preproc_else_token1] = ACTIONS(3890), - [aux_sym_preproc_elif_token1] = ACTIONS(3890), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3890), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3890), - [sym_preproc_directive] = ACTIONS(3890), - [anon_sym_LPAREN2] = ACTIONS(3892), - [anon_sym_BANG] = ACTIONS(3892), - [anon_sym_TILDE] = ACTIONS(3892), - [anon_sym_DASH] = ACTIONS(3890), - [anon_sym_PLUS] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(3892), - [anon_sym_AMP_AMP] = ACTIONS(3892), - [anon_sym_AMP] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3892), - [anon_sym___extension__] = ACTIONS(3890), - [anon_sym_typedef] = ACTIONS(3890), - [anon_sym_virtual] = ACTIONS(3890), - [anon_sym_extern] = ACTIONS(3890), - [anon_sym___attribute__] = ACTIONS(3890), - [anon_sym___attribute] = ACTIONS(3890), - [anon_sym_using] = ACTIONS(3890), - [anon_sym_COLON_COLON] = ACTIONS(3892), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3892), - [anon_sym___declspec] = ACTIONS(3890), - [anon_sym___based] = ACTIONS(3890), - [anon_sym___cdecl] = ACTIONS(3890), - [anon_sym___clrcall] = ACTIONS(3890), - [anon_sym___stdcall] = ACTIONS(3890), - [anon_sym___fastcall] = ACTIONS(3890), - [anon_sym___thiscall] = ACTIONS(3890), - [anon_sym___vectorcall] = ACTIONS(3890), - [anon_sym_LBRACE] = ACTIONS(3892), - [anon_sym_signed] = ACTIONS(3890), - [anon_sym_unsigned] = ACTIONS(3890), - [anon_sym_long] = ACTIONS(3890), - [anon_sym_short] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_static] = ACTIONS(3890), - [anon_sym_register] = ACTIONS(3890), - [anon_sym_inline] = ACTIONS(3890), - [anon_sym___inline] = ACTIONS(3890), - [anon_sym___inline__] = ACTIONS(3890), - [anon_sym___forceinline] = ACTIONS(3890), - [anon_sym_thread_local] = ACTIONS(3890), - [anon_sym___thread] = ACTIONS(3890), - [anon_sym_const] = ACTIONS(3890), - [anon_sym_constexpr] = ACTIONS(3890), - [anon_sym_volatile] = ACTIONS(3890), - [anon_sym_restrict] = ACTIONS(3890), - [anon_sym___restrict__] = ACTIONS(3890), - [anon_sym__Atomic] = ACTIONS(3890), - [anon_sym__Noreturn] = ACTIONS(3890), - [anon_sym_noreturn] = ACTIONS(3890), - [anon_sym__Nonnull] = ACTIONS(3890), - [anon_sym_mutable] = ACTIONS(3890), - [anon_sym_constinit] = ACTIONS(3890), - [anon_sym_consteval] = ACTIONS(3890), - [anon_sym_alignas] = ACTIONS(3890), - [anon_sym__Alignas] = ACTIONS(3890), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_enum] = ACTIONS(3890), - [anon_sym_class] = ACTIONS(3890), - [anon_sym_struct] = ACTIONS(3890), - [anon_sym_union] = ACTIONS(3890), - [anon_sym_if] = ACTIONS(3890), - [anon_sym_else] = ACTIONS(3890), - [anon_sym_switch] = ACTIONS(3890), - [anon_sym_case] = ACTIONS(3890), - [anon_sym_default] = ACTIONS(3890), - [anon_sym_while] = ACTIONS(3890), - [anon_sym_do] = ACTIONS(3890), - [anon_sym_for] = ACTIONS(3890), - [anon_sym_return] = ACTIONS(3890), - [anon_sym_break] = ACTIONS(3890), - [anon_sym_continue] = ACTIONS(3890), - [anon_sym_goto] = ACTIONS(3890), - [anon_sym___try] = ACTIONS(3890), - [anon_sym___leave] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_compl] = ACTIONS(3890), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym___alignof__] = ACTIONS(3890), - [anon_sym___alignof] = ACTIONS(3890), - [anon_sym__alignof] = ACTIONS(3890), - [anon_sym_alignof] = ACTIONS(3890), - [anon_sym__Alignof] = ACTIONS(3890), - [anon_sym_offsetof] = ACTIONS(3890), - [anon_sym__Generic] = ACTIONS(3890), - [anon_sym_typename] = ACTIONS(3890), - [anon_sym_asm] = ACTIONS(3890), - [anon_sym___asm__] = ACTIONS(3890), - [anon_sym___asm] = ACTIONS(3890), - [sym_number_literal] = ACTIONS(3892), - [anon_sym_L_SQUOTE] = ACTIONS(3892), - [anon_sym_u_SQUOTE] = ACTIONS(3892), - [anon_sym_U_SQUOTE] = ACTIONS(3892), - [anon_sym_u8_SQUOTE] = ACTIONS(3892), - [anon_sym_SQUOTE] = ACTIONS(3892), - [anon_sym_L_DQUOTE] = ACTIONS(3892), - [anon_sym_u_DQUOTE] = ACTIONS(3892), - [anon_sym_U_DQUOTE] = ACTIONS(3892), - [anon_sym_u8_DQUOTE] = ACTIONS(3892), - [anon_sym_DQUOTE] = ACTIONS(3892), - [sym_true] = ACTIONS(3890), - [sym_false] = ACTIONS(3890), - [anon_sym_NULL] = ACTIONS(3890), - [anon_sym_nullptr] = ACTIONS(3890), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3890), - [anon_sym_decltype] = ACTIONS(3890), - [anon_sym_explicit] = ACTIONS(3890), - [anon_sym_template] = ACTIONS(3890), - [anon_sym_operator] = ACTIONS(3890), - [anon_sym_try] = ACTIONS(3890), - [anon_sym_delete] = ACTIONS(3890), - [anon_sym_throw] = ACTIONS(3890), - [anon_sym_namespace] = ACTIONS(3890), - [anon_sym_static_assert] = ACTIONS(3890), - [anon_sym_concept] = ACTIONS(3890), - [anon_sym_co_return] = ACTIONS(3890), - [anon_sym_co_yield] = ACTIONS(3890), - [anon_sym_R_DQUOTE] = ACTIONS(3892), - [anon_sym_LR_DQUOTE] = ACTIONS(3892), - [anon_sym_uR_DQUOTE] = ACTIONS(3892), - [anon_sym_UR_DQUOTE] = ACTIONS(3892), - [anon_sym_u8R_DQUOTE] = ACTIONS(3892), - [anon_sym_co_await] = ACTIONS(3890), - [anon_sym_new] = ACTIONS(3890), - [anon_sym_requires] = ACTIONS(3890), - [anon_sym_CARET_CARET] = ACTIONS(3892), - [anon_sym_LBRACK_COLON] = ACTIONS(3892), - [sym_this] = ACTIONS(3890), + [sym_identifier] = ACTIONS(3917), + [aux_sym_preproc_include_token1] = ACTIONS(3917), + [aux_sym_preproc_def_token1] = ACTIONS(3917), + [aux_sym_preproc_if_token1] = ACTIONS(3917), + [aux_sym_preproc_if_token2] = ACTIONS(3917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3917), + [aux_sym_preproc_else_token1] = ACTIONS(3917), + [aux_sym_preproc_elif_token1] = ACTIONS(3917), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3917), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3917), + [sym_preproc_directive] = ACTIONS(3917), + [anon_sym_LPAREN2] = ACTIONS(3919), + [anon_sym_BANG] = ACTIONS(3919), + [anon_sym_TILDE] = ACTIONS(3919), + [anon_sym_DASH] = ACTIONS(3917), + [anon_sym_PLUS] = ACTIONS(3917), + [anon_sym_STAR] = ACTIONS(3919), + [anon_sym_AMP_AMP] = ACTIONS(3919), + [anon_sym_AMP] = ACTIONS(3917), + [anon_sym_SEMI] = ACTIONS(3919), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_typedef] = ACTIONS(3917), + [anon_sym_virtual] = ACTIONS(3917), + [anon_sym_extern] = ACTIONS(3917), + [anon_sym___attribute__] = ACTIONS(3917), + [anon_sym___attribute] = ACTIONS(3917), + [anon_sym_using] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(3919), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3919), + [anon_sym___declspec] = ACTIONS(3917), + [anon_sym___based] = ACTIONS(3917), + [anon_sym___cdecl] = ACTIONS(3917), + [anon_sym___clrcall] = ACTIONS(3917), + [anon_sym___stdcall] = ACTIONS(3917), + [anon_sym___fastcall] = ACTIONS(3917), + [anon_sym___thiscall] = ACTIONS(3917), + [anon_sym___vectorcall] = ACTIONS(3917), + [anon_sym_LBRACE] = ACTIONS(3919), + [anon_sym_signed] = ACTIONS(3917), + [anon_sym_unsigned] = ACTIONS(3917), + [anon_sym_long] = ACTIONS(3917), + [anon_sym_short] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(3917), + [anon_sym_static] = ACTIONS(3917), + [anon_sym_register] = ACTIONS(3917), + [anon_sym_inline] = ACTIONS(3917), + [anon_sym___inline] = ACTIONS(3917), + [anon_sym___inline__] = ACTIONS(3917), + [anon_sym___forceinline] = ACTIONS(3917), + [anon_sym_thread_local] = ACTIONS(3917), + [anon_sym___thread] = ACTIONS(3917), + [anon_sym_const] = ACTIONS(3917), + [anon_sym_constexpr] = ACTIONS(3917), + [anon_sym_volatile] = ACTIONS(3917), + [anon_sym_restrict] = ACTIONS(3917), + [anon_sym___restrict__] = ACTIONS(3917), + [anon_sym__Atomic] = ACTIONS(3917), + [anon_sym__Noreturn] = ACTIONS(3917), + [anon_sym_noreturn] = ACTIONS(3917), + [anon_sym__Nonnull] = ACTIONS(3917), + [anon_sym_mutable] = ACTIONS(3917), + [anon_sym_constinit] = ACTIONS(3917), + [anon_sym_consteval] = ACTIONS(3917), + [anon_sym_alignas] = ACTIONS(3917), + [anon_sym__Alignas] = ACTIONS(3917), + [sym_primitive_type] = ACTIONS(3917), + [anon_sym_enum] = ACTIONS(3917), + [anon_sym_class] = ACTIONS(3917), + [anon_sym_struct] = ACTIONS(3917), + [anon_sym_union] = ACTIONS(3917), + [anon_sym_if] = ACTIONS(3917), + [anon_sym_switch] = ACTIONS(3917), + [anon_sym_case] = ACTIONS(3917), + [anon_sym_default] = ACTIONS(3917), + [anon_sym_while] = ACTIONS(3917), + [anon_sym_do] = ACTIONS(3917), + [anon_sym_for] = ACTIONS(3917), + [anon_sym_return] = ACTIONS(3917), + [anon_sym_break] = ACTIONS(3917), + [anon_sym_continue] = ACTIONS(3917), + [anon_sym_goto] = ACTIONS(3917), + [anon_sym___try] = ACTIONS(3917), + [anon_sym___leave] = ACTIONS(3917), + [anon_sym_not] = ACTIONS(3917), + [anon_sym_compl] = ACTIONS(3917), + [anon_sym_DASH_DASH] = ACTIONS(3919), + [anon_sym_PLUS_PLUS] = ACTIONS(3919), + [anon_sym_sizeof] = ACTIONS(3917), + [anon_sym___alignof__] = ACTIONS(3917), + [anon_sym___alignof] = ACTIONS(3917), + [anon_sym__alignof] = ACTIONS(3917), + [anon_sym_alignof] = ACTIONS(3917), + [anon_sym__Alignof] = ACTIONS(3917), + [anon_sym_offsetof] = ACTIONS(3917), + [anon_sym__Generic] = ACTIONS(3917), + [anon_sym_typename] = ACTIONS(3917), + [anon_sym_asm] = ACTIONS(3917), + [anon_sym___asm__] = ACTIONS(3917), + [anon_sym___asm] = ACTIONS(3917), + [sym_number_literal] = ACTIONS(3919), + [anon_sym_L_SQUOTE] = ACTIONS(3919), + [anon_sym_u_SQUOTE] = ACTIONS(3919), + [anon_sym_U_SQUOTE] = ACTIONS(3919), + [anon_sym_u8_SQUOTE] = ACTIONS(3919), + [anon_sym_SQUOTE] = ACTIONS(3919), + [anon_sym_L_DQUOTE] = ACTIONS(3919), + [anon_sym_u_DQUOTE] = ACTIONS(3919), + [anon_sym_U_DQUOTE] = ACTIONS(3919), + [anon_sym_u8_DQUOTE] = ACTIONS(3919), + [anon_sym_DQUOTE] = ACTIONS(3919), + [sym_true] = ACTIONS(3917), + [sym_false] = ACTIONS(3917), + [anon_sym_NULL] = ACTIONS(3917), + [anon_sym_nullptr] = ACTIONS(3917), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3917), + [anon_sym_decltype] = ACTIONS(3917), + [anon_sym_explicit] = ACTIONS(3917), + [anon_sym_export] = ACTIONS(3917), + [anon_sym_module] = ACTIONS(3917), + [anon_sym_import] = ACTIONS(3917), + [anon_sym_template] = ACTIONS(3917), + [anon_sym_operator] = ACTIONS(3917), + [anon_sym_try] = ACTIONS(3917), + [anon_sym_delete] = ACTIONS(3917), + [anon_sym_throw] = ACTIONS(3917), + [anon_sym_namespace] = ACTIONS(3917), + [anon_sym_static_assert] = ACTIONS(3917), + [anon_sym_concept] = ACTIONS(3917), + [anon_sym_co_return] = ACTIONS(3917), + [anon_sym_co_yield] = ACTIONS(3917), + [anon_sym_R_DQUOTE] = ACTIONS(3919), + [anon_sym_LR_DQUOTE] = ACTIONS(3919), + [anon_sym_uR_DQUOTE] = ACTIONS(3919), + [anon_sym_UR_DQUOTE] = ACTIONS(3919), + [anon_sym_u8R_DQUOTE] = ACTIONS(3919), + [anon_sym_co_await] = ACTIONS(3917), + [anon_sym_new] = ACTIONS(3917), + [anon_sym_requires] = ACTIONS(3917), + [anon_sym_CARET_CARET] = ACTIONS(3919), + [anon_sym_LBRACK_COLON] = ACTIONS(3919), + [sym_this] = ACTIONS(3917), }, [STATE(404)] = { - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_include_token1] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token2] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [aux_sym_preproc_else_token1] = ACTIONS(3630), - [aux_sym_preproc_elif_token1] = ACTIONS(3630), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym___attribute] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym___cdecl] = ACTIONS(3630), - [anon_sym___clrcall] = ACTIONS(3630), - [anon_sym___stdcall] = ACTIONS(3630), - [anon_sym___fastcall] = ACTIONS(3630), - [anon_sym___thiscall] = ACTIONS(3630), - [anon_sym___vectorcall] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym__Nonnull] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym__Alignas] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_else] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [anon_sym_case] = ACTIONS(3630), - [anon_sym_default] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [anon_sym_goto] = ACTIONS(3630), - [anon_sym___try] = ACTIONS(3630), - [anon_sym___leave] = ACTIONS(3630), - [anon_sym_not] = ACTIONS(3630), - [anon_sym_compl] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3632), - [anon_sym_PLUS_PLUS] = ACTIONS(3632), - [anon_sym_sizeof] = ACTIONS(3630), - [anon_sym___alignof__] = ACTIONS(3630), - [anon_sym___alignof] = ACTIONS(3630), - [anon_sym__alignof] = ACTIONS(3630), - [anon_sym_alignof] = ACTIONS(3630), - [anon_sym__Alignof] = ACTIONS(3630), - [anon_sym_offsetof] = ACTIONS(3630), - [anon_sym__Generic] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [anon_sym_asm] = ACTIONS(3630), - [anon_sym___asm__] = ACTIONS(3630), - [anon_sym___asm] = ACTIONS(3630), - [sym_number_literal] = ACTIONS(3632), - [anon_sym_L_SQUOTE] = ACTIONS(3632), - [anon_sym_u_SQUOTE] = ACTIONS(3632), - [anon_sym_U_SQUOTE] = ACTIONS(3632), - [anon_sym_u8_SQUOTE] = ACTIONS(3632), - [anon_sym_SQUOTE] = ACTIONS(3632), - [anon_sym_L_DQUOTE] = ACTIONS(3632), - [anon_sym_u_DQUOTE] = ACTIONS(3632), - [anon_sym_U_DQUOTE] = ACTIONS(3632), - [anon_sym_u8_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE] = ACTIONS(3632), - [sym_true] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [anon_sym_NULL] = ACTIONS(3630), - [anon_sym_nullptr] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_delete] = ACTIONS(3630), - [anon_sym_throw] = ACTIONS(3630), - [anon_sym_namespace] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), - [anon_sym_concept] = ACTIONS(3630), - [anon_sym_co_return] = ACTIONS(3630), - [anon_sym_co_yield] = ACTIONS(3630), - [anon_sym_R_DQUOTE] = ACTIONS(3632), - [anon_sym_LR_DQUOTE] = ACTIONS(3632), - [anon_sym_uR_DQUOTE] = ACTIONS(3632), - [anon_sym_UR_DQUOTE] = ACTIONS(3632), - [anon_sym_u8R_DQUOTE] = ACTIONS(3632), - [anon_sym_co_await] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_requires] = ACTIONS(3630), - [anon_sym_CARET_CARET] = ACTIONS(3632), - [anon_sym_LBRACK_COLON] = ACTIONS(3632), - [sym_this] = ACTIONS(3630), + [sym_identifier] = ACTIONS(3921), + [aux_sym_preproc_include_token1] = ACTIONS(3921), + [aux_sym_preproc_def_token1] = ACTIONS(3921), + [aux_sym_preproc_if_token1] = ACTIONS(3921), + [aux_sym_preproc_if_token2] = ACTIONS(3921), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3921), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3921), + [aux_sym_preproc_else_token1] = ACTIONS(3921), + [aux_sym_preproc_elif_token1] = ACTIONS(3921), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3921), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3921), + [sym_preproc_directive] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3923), + [anon_sym_BANG] = ACTIONS(3923), + [anon_sym_TILDE] = ACTIONS(3923), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_STAR] = ACTIONS(3923), + [anon_sym_AMP_AMP] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym___extension__] = ACTIONS(3921), + [anon_sym_typedef] = ACTIONS(3921), + [anon_sym_virtual] = ACTIONS(3921), + [anon_sym_extern] = ACTIONS(3921), + [anon_sym___attribute__] = ACTIONS(3921), + [anon_sym___attribute] = ACTIONS(3921), + [anon_sym_using] = ACTIONS(3921), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3923), + [anon_sym___declspec] = ACTIONS(3921), + [anon_sym___based] = ACTIONS(3921), + [anon_sym___cdecl] = ACTIONS(3921), + [anon_sym___clrcall] = ACTIONS(3921), + [anon_sym___stdcall] = ACTIONS(3921), + [anon_sym___fastcall] = ACTIONS(3921), + [anon_sym___thiscall] = ACTIONS(3921), + [anon_sym___vectorcall] = ACTIONS(3921), + [anon_sym_LBRACE] = ACTIONS(3923), + [anon_sym_signed] = ACTIONS(3921), + [anon_sym_unsigned] = ACTIONS(3921), + [anon_sym_long] = ACTIONS(3921), + [anon_sym_short] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_static] = ACTIONS(3921), + [anon_sym_register] = ACTIONS(3921), + [anon_sym_inline] = ACTIONS(3921), + [anon_sym___inline] = ACTIONS(3921), + [anon_sym___inline__] = ACTIONS(3921), + [anon_sym___forceinline] = ACTIONS(3921), + [anon_sym_thread_local] = ACTIONS(3921), + [anon_sym___thread] = ACTIONS(3921), + [anon_sym_const] = ACTIONS(3921), + [anon_sym_constexpr] = ACTIONS(3921), + [anon_sym_volatile] = ACTIONS(3921), + [anon_sym_restrict] = ACTIONS(3921), + [anon_sym___restrict__] = ACTIONS(3921), + [anon_sym__Atomic] = ACTIONS(3921), + [anon_sym__Noreturn] = ACTIONS(3921), + [anon_sym_noreturn] = ACTIONS(3921), + [anon_sym__Nonnull] = ACTIONS(3921), + [anon_sym_mutable] = ACTIONS(3921), + [anon_sym_constinit] = ACTIONS(3921), + [anon_sym_consteval] = ACTIONS(3921), + [anon_sym_alignas] = ACTIONS(3921), + [anon_sym__Alignas] = ACTIONS(3921), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_enum] = ACTIONS(3921), + [anon_sym_class] = ACTIONS(3921), + [anon_sym_struct] = ACTIONS(3921), + [anon_sym_union] = ACTIONS(3921), + [anon_sym_if] = ACTIONS(3921), + [anon_sym_switch] = ACTIONS(3921), + [anon_sym_case] = ACTIONS(3921), + [anon_sym_default] = ACTIONS(3921), + [anon_sym_while] = ACTIONS(3921), + [anon_sym_do] = ACTIONS(3921), + [anon_sym_for] = ACTIONS(3921), + [anon_sym_return] = ACTIONS(3921), + [anon_sym_break] = ACTIONS(3921), + [anon_sym_continue] = ACTIONS(3921), + [anon_sym_goto] = ACTIONS(3921), + [anon_sym___try] = ACTIONS(3921), + [anon_sym___leave] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(3921), + [anon_sym_compl] = ACTIONS(3921), + [anon_sym_DASH_DASH] = ACTIONS(3923), + [anon_sym_PLUS_PLUS] = ACTIONS(3923), + [anon_sym_sizeof] = ACTIONS(3921), + [anon_sym___alignof__] = ACTIONS(3921), + [anon_sym___alignof] = ACTIONS(3921), + [anon_sym__alignof] = ACTIONS(3921), + [anon_sym_alignof] = ACTIONS(3921), + [anon_sym__Alignof] = ACTIONS(3921), + [anon_sym_offsetof] = ACTIONS(3921), + [anon_sym__Generic] = ACTIONS(3921), + [anon_sym_typename] = ACTIONS(3921), + [anon_sym_asm] = ACTIONS(3921), + [anon_sym___asm__] = ACTIONS(3921), + [anon_sym___asm] = ACTIONS(3921), + [sym_number_literal] = ACTIONS(3923), + [anon_sym_L_SQUOTE] = ACTIONS(3923), + [anon_sym_u_SQUOTE] = ACTIONS(3923), + [anon_sym_U_SQUOTE] = ACTIONS(3923), + [anon_sym_u8_SQUOTE] = ACTIONS(3923), + [anon_sym_SQUOTE] = ACTIONS(3923), + [anon_sym_L_DQUOTE] = ACTIONS(3923), + [anon_sym_u_DQUOTE] = ACTIONS(3923), + [anon_sym_U_DQUOTE] = ACTIONS(3923), + [anon_sym_u8_DQUOTE] = ACTIONS(3923), + [anon_sym_DQUOTE] = ACTIONS(3923), + [sym_true] = ACTIONS(3921), + [sym_false] = ACTIONS(3921), + [anon_sym_NULL] = ACTIONS(3921), + [anon_sym_nullptr] = ACTIONS(3921), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3921), + [anon_sym_decltype] = ACTIONS(3921), + [anon_sym_explicit] = ACTIONS(3921), + [anon_sym_export] = ACTIONS(3921), + [anon_sym_module] = ACTIONS(3921), + [anon_sym_import] = ACTIONS(3921), + [anon_sym_template] = ACTIONS(3921), + [anon_sym_operator] = ACTIONS(3921), + [anon_sym_try] = ACTIONS(3921), + [anon_sym_delete] = ACTIONS(3921), + [anon_sym_throw] = ACTIONS(3921), + [anon_sym_namespace] = ACTIONS(3921), + [anon_sym_static_assert] = ACTIONS(3921), + [anon_sym_concept] = ACTIONS(3921), + [anon_sym_co_return] = ACTIONS(3921), + [anon_sym_co_yield] = ACTIONS(3921), + [anon_sym_R_DQUOTE] = ACTIONS(3923), + [anon_sym_LR_DQUOTE] = ACTIONS(3923), + [anon_sym_uR_DQUOTE] = ACTIONS(3923), + [anon_sym_UR_DQUOTE] = ACTIONS(3923), + [anon_sym_u8R_DQUOTE] = ACTIONS(3923), + [anon_sym_co_await] = ACTIONS(3921), + [anon_sym_new] = ACTIONS(3921), + [anon_sym_requires] = ACTIONS(3921), + [anon_sym_CARET_CARET] = ACTIONS(3923), + [anon_sym_LBRACK_COLON] = ACTIONS(3923), + [sym_this] = ACTIONS(3921), }, [STATE(405)] = { - [sym_identifier] = ACTIONS(3894), - [aux_sym_preproc_include_token1] = ACTIONS(3894), - [aux_sym_preproc_def_token1] = ACTIONS(3894), - [aux_sym_preproc_if_token1] = ACTIONS(3894), - [aux_sym_preproc_if_token2] = ACTIONS(3894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3894), - [aux_sym_preproc_else_token1] = ACTIONS(3894), - [aux_sym_preproc_elif_token1] = ACTIONS(3894), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3894), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3894), - [sym_preproc_directive] = ACTIONS(3894), - [anon_sym_LPAREN2] = ACTIONS(3896), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(3896), - [anon_sym_AMP_AMP] = ACTIONS(3896), - [anon_sym_AMP] = ACTIONS(3894), - [anon_sym_SEMI] = ACTIONS(3896), - [anon_sym___extension__] = ACTIONS(3894), - [anon_sym_typedef] = ACTIONS(3894), - [anon_sym_virtual] = ACTIONS(3894), - [anon_sym_extern] = ACTIONS(3894), - [anon_sym___attribute__] = ACTIONS(3894), - [anon_sym___attribute] = ACTIONS(3894), - [anon_sym_using] = ACTIONS(3894), - [anon_sym_COLON_COLON] = ACTIONS(3896), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3896), - [anon_sym___declspec] = ACTIONS(3894), - [anon_sym___based] = ACTIONS(3894), - [anon_sym___cdecl] = ACTIONS(3894), - [anon_sym___clrcall] = ACTIONS(3894), - [anon_sym___stdcall] = ACTIONS(3894), - [anon_sym___fastcall] = ACTIONS(3894), - [anon_sym___thiscall] = ACTIONS(3894), - [anon_sym___vectorcall] = ACTIONS(3894), - [anon_sym_LBRACE] = ACTIONS(3896), - [anon_sym_signed] = ACTIONS(3894), - [anon_sym_unsigned] = ACTIONS(3894), - [anon_sym_long] = ACTIONS(3894), - [anon_sym_short] = ACTIONS(3894), - [anon_sym_LBRACK] = ACTIONS(3894), - [anon_sym_static] = ACTIONS(3894), - [anon_sym_register] = ACTIONS(3894), - [anon_sym_inline] = ACTIONS(3894), - [anon_sym___inline] = ACTIONS(3894), - [anon_sym___inline__] = ACTIONS(3894), - [anon_sym___forceinline] = ACTIONS(3894), - [anon_sym_thread_local] = ACTIONS(3894), - [anon_sym___thread] = ACTIONS(3894), - [anon_sym_const] = ACTIONS(3894), - [anon_sym_constexpr] = ACTIONS(3894), - [anon_sym_volatile] = ACTIONS(3894), - [anon_sym_restrict] = ACTIONS(3894), - [anon_sym___restrict__] = ACTIONS(3894), - [anon_sym__Atomic] = ACTIONS(3894), - [anon_sym__Noreturn] = ACTIONS(3894), - [anon_sym_noreturn] = ACTIONS(3894), - [anon_sym__Nonnull] = ACTIONS(3894), - [anon_sym_mutable] = ACTIONS(3894), - [anon_sym_constinit] = ACTIONS(3894), - [anon_sym_consteval] = ACTIONS(3894), - [anon_sym_alignas] = ACTIONS(3894), - [anon_sym__Alignas] = ACTIONS(3894), - [sym_primitive_type] = ACTIONS(3894), - [anon_sym_enum] = ACTIONS(3894), - [anon_sym_class] = ACTIONS(3894), - [anon_sym_struct] = ACTIONS(3894), - [anon_sym_union] = ACTIONS(3894), - [anon_sym_if] = ACTIONS(3894), - [anon_sym_else] = ACTIONS(3894), - [anon_sym_switch] = ACTIONS(3894), - [anon_sym_case] = ACTIONS(3894), - [anon_sym_default] = ACTIONS(3894), - [anon_sym_while] = ACTIONS(3894), - [anon_sym_do] = ACTIONS(3894), - [anon_sym_for] = ACTIONS(3894), - [anon_sym_return] = ACTIONS(3894), - [anon_sym_break] = ACTIONS(3894), - [anon_sym_continue] = ACTIONS(3894), - [anon_sym_goto] = ACTIONS(3894), - [anon_sym___try] = ACTIONS(3894), - [anon_sym___leave] = ACTIONS(3894), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3896), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(3894), - [anon_sym___alignof] = ACTIONS(3894), - [anon_sym__alignof] = ACTIONS(3894), - [anon_sym_alignof] = ACTIONS(3894), - [anon_sym__Alignof] = ACTIONS(3894), - [anon_sym_offsetof] = ACTIONS(3894), - [anon_sym__Generic] = ACTIONS(3894), - [anon_sym_typename] = ACTIONS(3894), - [anon_sym_asm] = ACTIONS(3894), - [anon_sym___asm__] = ACTIONS(3894), - [anon_sym___asm] = ACTIONS(3894), - [sym_number_literal] = ACTIONS(3896), - [anon_sym_L_SQUOTE] = ACTIONS(3896), - [anon_sym_u_SQUOTE] = ACTIONS(3896), - [anon_sym_U_SQUOTE] = ACTIONS(3896), - [anon_sym_u8_SQUOTE] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(3896), - [anon_sym_L_DQUOTE] = ACTIONS(3896), - [anon_sym_u_DQUOTE] = ACTIONS(3896), - [anon_sym_U_DQUOTE] = ACTIONS(3896), - [anon_sym_u8_DQUOTE] = ACTIONS(3896), - [anon_sym_DQUOTE] = ACTIONS(3896), - [sym_true] = ACTIONS(3894), - [sym_false] = ACTIONS(3894), - [anon_sym_NULL] = ACTIONS(3894), - [anon_sym_nullptr] = ACTIONS(3894), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3894), - [anon_sym_decltype] = ACTIONS(3894), - [anon_sym_explicit] = ACTIONS(3894), - [anon_sym_template] = ACTIONS(3894), - [anon_sym_operator] = ACTIONS(3894), - [anon_sym_try] = ACTIONS(3894), - [anon_sym_delete] = ACTIONS(3894), - [anon_sym_throw] = ACTIONS(3894), - [anon_sym_namespace] = ACTIONS(3894), - [anon_sym_static_assert] = ACTIONS(3894), - [anon_sym_concept] = ACTIONS(3894), - [anon_sym_co_return] = ACTIONS(3894), - [anon_sym_co_yield] = ACTIONS(3894), - [anon_sym_R_DQUOTE] = ACTIONS(3896), - [anon_sym_LR_DQUOTE] = ACTIONS(3896), - [anon_sym_uR_DQUOTE] = ACTIONS(3896), - [anon_sym_UR_DQUOTE] = ACTIONS(3896), - [anon_sym_u8R_DQUOTE] = ACTIONS(3896), - [anon_sym_co_await] = ACTIONS(3894), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_requires] = ACTIONS(3894), - [anon_sym_CARET_CARET] = ACTIONS(3896), - [anon_sym_LBRACK_COLON] = ACTIONS(3896), - [sym_this] = ACTIONS(3894), - }, - [STATE(406)] = { - [sym_identifier] = ACTIONS(3898), - [aux_sym_preproc_include_token1] = ACTIONS(3898), - [aux_sym_preproc_def_token1] = ACTIONS(3898), - [aux_sym_preproc_if_token1] = ACTIONS(3898), - [aux_sym_preproc_if_token2] = ACTIONS(3898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3898), - [aux_sym_preproc_else_token1] = ACTIONS(3898), - [aux_sym_preproc_elif_token1] = ACTIONS(3898), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3898), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3898), - [sym_preproc_directive] = ACTIONS(3898), - [anon_sym_LPAREN2] = ACTIONS(3900), - [anon_sym_BANG] = ACTIONS(3900), - [anon_sym_TILDE] = ACTIONS(3900), - [anon_sym_DASH] = ACTIONS(3898), - [anon_sym_PLUS] = ACTIONS(3898), - [anon_sym_STAR] = ACTIONS(3900), - [anon_sym_AMP_AMP] = ACTIONS(3900), - [anon_sym_AMP] = ACTIONS(3898), - [anon_sym_SEMI] = ACTIONS(3900), - [anon_sym___extension__] = ACTIONS(3898), - [anon_sym_typedef] = ACTIONS(3898), - [anon_sym_virtual] = ACTIONS(3898), - [anon_sym_extern] = ACTIONS(3898), - [anon_sym___attribute__] = ACTIONS(3898), - [anon_sym___attribute] = ACTIONS(3898), - [anon_sym_using] = ACTIONS(3898), - [anon_sym_COLON_COLON] = ACTIONS(3900), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3900), - [anon_sym___declspec] = ACTIONS(3898), - [anon_sym___based] = ACTIONS(3898), - [anon_sym___cdecl] = ACTIONS(3898), - [anon_sym___clrcall] = ACTIONS(3898), - [anon_sym___stdcall] = ACTIONS(3898), - [anon_sym___fastcall] = ACTIONS(3898), - [anon_sym___thiscall] = ACTIONS(3898), - [anon_sym___vectorcall] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(3900), - [anon_sym_signed] = ACTIONS(3898), - [anon_sym_unsigned] = ACTIONS(3898), - [anon_sym_long] = ACTIONS(3898), - [anon_sym_short] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(3898), - [anon_sym_static] = ACTIONS(3898), - [anon_sym_register] = ACTIONS(3898), - [anon_sym_inline] = ACTIONS(3898), - [anon_sym___inline] = ACTIONS(3898), - [anon_sym___inline__] = ACTIONS(3898), - [anon_sym___forceinline] = ACTIONS(3898), - [anon_sym_thread_local] = ACTIONS(3898), - [anon_sym___thread] = ACTIONS(3898), - [anon_sym_const] = ACTIONS(3898), - [anon_sym_constexpr] = ACTIONS(3898), - [anon_sym_volatile] = ACTIONS(3898), - [anon_sym_restrict] = ACTIONS(3898), - [anon_sym___restrict__] = ACTIONS(3898), - [anon_sym__Atomic] = ACTIONS(3898), - [anon_sym__Noreturn] = ACTIONS(3898), - [anon_sym_noreturn] = ACTIONS(3898), - [anon_sym__Nonnull] = ACTIONS(3898), - [anon_sym_mutable] = ACTIONS(3898), - [anon_sym_constinit] = ACTIONS(3898), - [anon_sym_consteval] = ACTIONS(3898), - [anon_sym_alignas] = ACTIONS(3898), - [anon_sym__Alignas] = ACTIONS(3898), - [sym_primitive_type] = ACTIONS(3898), - [anon_sym_enum] = ACTIONS(3898), - [anon_sym_class] = ACTIONS(3898), - [anon_sym_struct] = ACTIONS(3898), - [anon_sym_union] = ACTIONS(3898), - [anon_sym_if] = ACTIONS(3898), - [anon_sym_switch] = ACTIONS(3898), - [anon_sym_case] = ACTIONS(3898), - [anon_sym_default] = ACTIONS(3898), - [anon_sym_while] = ACTIONS(3898), - [anon_sym_do] = ACTIONS(3898), - [anon_sym_for] = ACTIONS(3898), - [anon_sym_return] = ACTIONS(3898), - [anon_sym_break] = ACTIONS(3898), - [anon_sym_continue] = ACTIONS(3898), - [anon_sym_goto] = ACTIONS(3898), - [anon_sym___try] = ACTIONS(3898), - [anon_sym___leave] = ACTIONS(3898), - [anon_sym_not] = ACTIONS(3898), - [anon_sym_compl] = ACTIONS(3898), - [anon_sym_DASH_DASH] = ACTIONS(3900), - [anon_sym_PLUS_PLUS] = ACTIONS(3900), - [anon_sym_sizeof] = ACTIONS(3898), - [anon_sym___alignof__] = ACTIONS(3898), - [anon_sym___alignof] = ACTIONS(3898), - [anon_sym__alignof] = ACTIONS(3898), - [anon_sym_alignof] = ACTIONS(3898), - [anon_sym__Alignof] = ACTIONS(3898), - [anon_sym_offsetof] = ACTIONS(3898), - [anon_sym__Generic] = ACTIONS(3898), - [anon_sym_typename] = ACTIONS(3898), - [anon_sym_asm] = ACTIONS(3898), - [anon_sym___asm__] = ACTIONS(3898), - [anon_sym___asm] = ACTIONS(3898), - [sym_number_literal] = ACTIONS(3900), - [anon_sym_L_SQUOTE] = ACTIONS(3900), - [anon_sym_u_SQUOTE] = ACTIONS(3900), - [anon_sym_U_SQUOTE] = ACTIONS(3900), - [anon_sym_u8_SQUOTE] = ACTIONS(3900), - [anon_sym_SQUOTE] = ACTIONS(3900), - [anon_sym_L_DQUOTE] = ACTIONS(3900), - [anon_sym_u_DQUOTE] = ACTIONS(3900), - [anon_sym_U_DQUOTE] = ACTIONS(3900), - [anon_sym_u8_DQUOTE] = ACTIONS(3900), - [anon_sym_DQUOTE] = ACTIONS(3900), - [sym_true] = ACTIONS(3898), - [sym_false] = ACTIONS(3898), - [anon_sym_NULL] = ACTIONS(3898), - [anon_sym_nullptr] = ACTIONS(3898), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3898), - [anon_sym_decltype] = ACTIONS(3898), - [anon_sym_explicit] = ACTIONS(3898), - [anon_sym_template] = ACTIONS(3898), - [anon_sym_operator] = ACTIONS(3898), - [anon_sym_try] = ACTIONS(3898), - [anon_sym_delete] = ACTIONS(3898), - [anon_sym_throw] = ACTIONS(3898), - [anon_sym_namespace] = ACTIONS(3898), - [anon_sym_static_assert] = ACTIONS(3898), - [anon_sym_concept] = ACTIONS(3898), - [anon_sym_co_return] = ACTIONS(3898), - [anon_sym_co_yield] = ACTIONS(3898), - [anon_sym_R_DQUOTE] = ACTIONS(3900), - [anon_sym_LR_DQUOTE] = ACTIONS(3900), - [anon_sym_uR_DQUOTE] = ACTIONS(3900), - [anon_sym_UR_DQUOTE] = ACTIONS(3900), - [anon_sym_u8R_DQUOTE] = ACTIONS(3900), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3898), - [anon_sym_requires] = ACTIONS(3898), - [anon_sym_CARET_CARET] = ACTIONS(3900), - [anon_sym_LBRACK_COLON] = ACTIONS(3900), - [sym_this] = ACTIONS(3898), - }, - [STATE(407)] = { - [sym_identifier] = ACTIONS(3902), - [aux_sym_preproc_include_token1] = ACTIONS(3902), - [aux_sym_preproc_def_token1] = ACTIONS(3902), - [aux_sym_preproc_if_token1] = ACTIONS(3902), - [aux_sym_preproc_if_token2] = ACTIONS(3902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3902), - [aux_sym_preproc_else_token1] = ACTIONS(3902), - [aux_sym_preproc_elif_token1] = ACTIONS(3902), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3902), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3902), - [sym_preproc_directive] = ACTIONS(3902), - [anon_sym_LPAREN2] = ACTIONS(3904), - [anon_sym_BANG] = ACTIONS(3904), - [anon_sym_TILDE] = ACTIONS(3904), - [anon_sym_DASH] = ACTIONS(3902), - [anon_sym_PLUS] = ACTIONS(3902), - [anon_sym_STAR] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3904), - [anon_sym_AMP] = ACTIONS(3902), - [anon_sym_SEMI] = ACTIONS(3904), - [anon_sym___extension__] = ACTIONS(3902), - [anon_sym_typedef] = ACTIONS(3902), - [anon_sym_virtual] = ACTIONS(3902), - [anon_sym_extern] = ACTIONS(3902), - [anon_sym___attribute__] = ACTIONS(3902), - [anon_sym___attribute] = ACTIONS(3902), - [anon_sym_using] = 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___cdecl] = ACTIONS(3902), - [anon_sym___clrcall] = ACTIONS(3902), - [anon_sym___stdcall] = ACTIONS(3902), - [anon_sym___fastcall] = ACTIONS(3902), - [anon_sym___thiscall] = ACTIONS(3902), - [anon_sym___vectorcall] = ACTIONS(3902), - [anon_sym_LBRACE] = ACTIONS(3904), - [anon_sym_signed] = ACTIONS(3902), - [anon_sym_unsigned] = ACTIONS(3902), - [anon_sym_long] = ACTIONS(3902), - [anon_sym_short] = ACTIONS(3902), - [anon_sym_LBRACK] = ACTIONS(3902), - [anon_sym_static] = ACTIONS(3902), - [anon_sym_register] = ACTIONS(3902), - [anon_sym_inline] = ACTIONS(3902), - [anon_sym___inline] = ACTIONS(3902), - [anon_sym___inline__] = ACTIONS(3902), - [anon_sym___forceinline] = ACTIONS(3902), - [anon_sym_thread_local] = ACTIONS(3902), - [anon_sym___thread] = ACTIONS(3902), - [anon_sym_const] = ACTIONS(3902), - [anon_sym_constexpr] = ACTIONS(3902), - [anon_sym_volatile] = ACTIONS(3902), - [anon_sym_restrict] = ACTIONS(3902), - [anon_sym___restrict__] = ACTIONS(3902), - [anon_sym__Atomic] = ACTIONS(3902), - [anon_sym__Noreturn] = ACTIONS(3902), - [anon_sym_noreturn] = ACTIONS(3902), - [anon_sym__Nonnull] = ACTIONS(3902), - [anon_sym_mutable] = ACTIONS(3902), - [anon_sym_constinit] = ACTIONS(3902), - [anon_sym_consteval] = ACTIONS(3902), - [anon_sym_alignas] = ACTIONS(3902), - [anon_sym__Alignas] = ACTIONS(3902), - [sym_primitive_type] = ACTIONS(3902), - [anon_sym_enum] = ACTIONS(3902), - [anon_sym_class] = ACTIONS(3902), - [anon_sym_struct] = ACTIONS(3902), - [anon_sym_union] = ACTIONS(3902), - [anon_sym_if] = ACTIONS(3902), - [anon_sym_switch] = ACTIONS(3902), - [anon_sym_case] = ACTIONS(3902), - [anon_sym_default] = ACTIONS(3902), - [anon_sym_while] = ACTIONS(3902), - [anon_sym_do] = ACTIONS(3902), - [anon_sym_for] = ACTIONS(3902), - [anon_sym_return] = ACTIONS(3902), - [anon_sym_break] = ACTIONS(3902), - [anon_sym_continue] = ACTIONS(3902), - [anon_sym_goto] = ACTIONS(3902), - [anon_sym___try] = ACTIONS(3902), - [anon_sym___leave] = ACTIONS(3902), - [anon_sym_not] = ACTIONS(3902), - [anon_sym_compl] = ACTIONS(3902), - [anon_sym_DASH_DASH] = ACTIONS(3904), - [anon_sym_PLUS_PLUS] = ACTIONS(3904), - [anon_sym_sizeof] = ACTIONS(3902), - [anon_sym___alignof__] = ACTIONS(3902), - [anon_sym___alignof] = ACTIONS(3902), - [anon_sym__alignof] = ACTIONS(3902), - [anon_sym_alignof] = ACTIONS(3902), - [anon_sym__Alignof] = ACTIONS(3902), - [anon_sym_offsetof] = ACTIONS(3902), - [anon_sym__Generic] = ACTIONS(3902), - [anon_sym_typename] = ACTIONS(3902), - [anon_sym_asm] = ACTIONS(3902), - [anon_sym___asm__] = ACTIONS(3902), - [anon_sym___asm] = ACTIONS(3902), - [sym_number_literal] = ACTIONS(3904), - [anon_sym_L_SQUOTE] = ACTIONS(3904), - [anon_sym_u_SQUOTE] = ACTIONS(3904), - [anon_sym_U_SQUOTE] = ACTIONS(3904), - [anon_sym_u8_SQUOTE] = ACTIONS(3904), - [anon_sym_SQUOTE] = ACTIONS(3904), - [anon_sym_L_DQUOTE] = ACTIONS(3904), - [anon_sym_u_DQUOTE] = ACTIONS(3904), - [anon_sym_U_DQUOTE] = ACTIONS(3904), - [anon_sym_u8_DQUOTE] = ACTIONS(3904), - [anon_sym_DQUOTE] = ACTIONS(3904), - [sym_true] = ACTIONS(3902), - [sym_false] = ACTIONS(3902), - [anon_sym_NULL] = ACTIONS(3902), - [anon_sym_nullptr] = ACTIONS(3902), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3902), - [anon_sym_decltype] = ACTIONS(3902), - [anon_sym_explicit] = ACTIONS(3902), - [anon_sym_template] = ACTIONS(3902), - [anon_sym_operator] = ACTIONS(3902), - [anon_sym_try] = ACTIONS(3902), - [anon_sym_delete] = ACTIONS(3902), - [anon_sym_throw] = ACTIONS(3902), - [anon_sym_namespace] = ACTIONS(3902), - [anon_sym_static_assert] = ACTIONS(3902), - [anon_sym_concept] = ACTIONS(3902), - [anon_sym_co_return] = ACTIONS(3902), - [anon_sym_co_yield] = ACTIONS(3902), - [anon_sym_R_DQUOTE] = ACTIONS(3904), - [anon_sym_LR_DQUOTE] = ACTIONS(3904), - [anon_sym_uR_DQUOTE] = ACTIONS(3904), - [anon_sym_UR_DQUOTE] = ACTIONS(3904), - [anon_sym_u8R_DQUOTE] = ACTIONS(3904), - [anon_sym_co_await] = ACTIONS(3902), - [anon_sym_new] = ACTIONS(3902), - [anon_sym_requires] = ACTIONS(3902), - [anon_sym_CARET_CARET] = ACTIONS(3904), - [anon_sym_LBRACK_COLON] = ACTIONS(3904), - [sym_this] = ACTIONS(3902), - }, - [STATE(408)] = { - [sym_identifier] = ACTIONS(3906), - [aux_sym_preproc_include_token1] = ACTIONS(3906), - [aux_sym_preproc_def_token1] = ACTIONS(3906), - [aux_sym_preproc_if_token1] = ACTIONS(3906), - [aux_sym_preproc_if_token2] = ACTIONS(3906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3906), - [aux_sym_preproc_else_token1] = ACTIONS(3906), - [aux_sym_preproc_elif_token1] = ACTIONS(3906), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3906), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3906), - [sym_preproc_directive] = ACTIONS(3906), - [anon_sym_LPAREN2] = ACTIONS(3908), - [anon_sym_BANG] = ACTIONS(3908), - [anon_sym_TILDE] = ACTIONS(3908), - [anon_sym_DASH] = ACTIONS(3906), - [anon_sym_PLUS] = ACTIONS(3906), - [anon_sym_STAR] = ACTIONS(3908), - [anon_sym_AMP_AMP] = ACTIONS(3908), - [anon_sym_AMP] = ACTIONS(3906), - [anon_sym_SEMI] = ACTIONS(3908), - [anon_sym___extension__] = ACTIONS(3906), - [anon_sym_typedef] = ACTIONS(3906), - [anon_sym_virtual] = ACTIONS(3906), - [anon_sym_extern] = ACTIONS(3906), - [anon_sym___attribute__] = ACTIONS(3906), - [anon_sym___attribute] = ACTIONS(3906), - [anon_sym_using] = ACTIONS(3906), - [anon_sym_COLON_COLON] = ACTIONS(3908), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3908), - [anon_sym___declspec] = ACTIONS(3906), - [anon_sym___based] = ACTIONS(3906), - [anon_sym___cdecl] = ACTIONS(3906), - [anon_sym___clrcall] = ACTIONS(3906), - [anon_sym___stdcall] = ACTIONS(3906), - [anon_sym___fastcall] = ACTIONS(3906), - [anon_sym___thiscall] = ACTIONS(3906), - [anon_sym___vectorcall] = ACTIONS(3906), - [anon_sym_LBRACE] = ACTIONS(3908), - [anon_sym_signed] = ACTIONS(3906), - [anon_sym_unsigned] = ACTIONS(3906), - [anon_sym_long] = ACTIONS(3906), - [anon_sym_short] = ACTIONS(3906), - [anon_sym_LBRACK] = ACTIONS(3906), - [anon_sym_static] = ACTIONS(3906), - [anon_sym_register] = ACTIONS(3906), - [anon_sym_inline] = ACTIONS(3906), - [anon_sym___inline] = ACTIONS(3906), - [anon_sym___inline__] = ACTIONS(3906), - [anon_sym___forceinline] = ACTIONS(3906), - [anon_sym_thread_local] = ACTIONS(3906), - [anon_sym___thread] = ACTIONS(3906), - [anon_sym_const] = ACTIONS(3906), - [anon_sym_constexpr] = ACTIONS(3906), - [anon_sym_volatile] = ACTIONS(3906), - [anon_sym_restrict] = ACTIONS(3906), - [anon_sym___restrict__] = ACTIONS(3906), - [anon_sym__Atomic] = ACTIONS(3906), - [anon_sym__Noreturn] = ACTIONS(3906), - [anon_sym_noreturn] = ACTIONS(3906), - [anon_sym__Nonnull] = ACTIONS(3906), - [anon_sym_mutable] = ACTIONS(3906), - [anon_sym_constinit] = ACTIONS(3906), - [anon_sym_consteval] = ACTIONS(3906), - [anon_sym_alignas] = ACTIONS(3906), - [anon_sym__Alignas] = ACTIONS(3906), - [sym_primitive_type] = ACTIONS(3906), - [anon_sym_enum] = ACTIONS(3906), - [anon_sym_class] = ACTIONS(3906), - [anon_sym_struct] = ACTIONS(3906), - [anon_sym_union] = ACTIONS(3906), - [anon_sym_if] = ACTIONS(3906), - [anon_sym_switch] = ACTIONS(3906), - [anon_sym_case] = ACTIONS(3906), - [anon_sym_default] = ACTIONS(3906), - [anon_sym_while] = ACTIONS(3906), - [anon_sym_do] = ACTIONS(3906), - [anon_sym_for] = ACTIONS(3906), - [anon_sym_return] = ACTIONS(3906), - [anon_sym_break] = ACTIONS(3906), - [anon_sym_continue] = ACTIONS(3906), - [anon_sym_goto] = ACTIONS(3906), - [anon_sym___try] = ACTIONS(3906), - [anon_sym___leave] = ACTIONS(3906), - [anon_sym_not] = ACTIONS(3906), - [anon_sym_compl] = ACTIONS(3906), - [anon_sym_DASH_DASH] = ACTIONS(3908), - [anon_sym_PLUS_PLUS] = ACTIONS(3908), - [anon_sym_sizeof] = ACTIONS(3906), - [anon_sym___alignof__] = ACTIONS(3906), - [anon_sym___alignof] = ACTIONS(3906), - [anon_sym__alignof] = ACTIONS(3906), - [anon_sym_alignof] = ACTIONS(3906), - [anon_sym__Alignof] = ACTIONS(3906), - [anon_sym_offsetof] = ACTIONS(3906), - [anon_sym__Generic] = ACTIONS(3906), - [anon_sym_typename] = ACTIONS(3906), - [anon_sym_asm] = ACTIONS(3906), - [anon_sym___asm__] = ACTIONS(3906), - [anon_sym___asm] = ACTIONS(3906), - [sym_number_literal] = ACTIONS(3908), - [anon_sym_L_SQUOTE] = ACTIONS(3908), - [anon_sym_u_SQUOTE] = ACTIONS(3908), - [anon_sym_U_SQUOTE] = ACTIONS(3908), - [anon_sym_u8_SQUOTE] = ACTIONS(3908), - [anon_sym_SQUOTE] = ACTIONS(3908), - [anon_sym_L_DQUOTE] = ACTIONS(3908), - [anon_sym_u_DQUOTE] = ACTIONS(3908), - [anon_sym_U_DQUOTE] = ACTIONS(3908), - [anon_sym_u8_DQUOTE] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(3908), - [sym_true] = ACTIONS(3906), - [sym_false] = ACTIONS(3906), - [anon_sym_NULL] = ACTIONS(3906), - [anon_sym_nullptr] = ACTIONS(3906), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3906), - [anon_sym_decltype] = ACTIONS(3906), - [anon_sym_explicit] = ACTIONS(3906), - [anon_sym_template] = ACTIONS(3906), - [anon_sym_operator] = ACTIONS(3906), - [anon_sym_try] = ACTIONS(3906), - [anon_sym_delete] = ACTIONS(3906), - [anon_sym_throw] = ACTIONS(3906), - [anon_sym_namespace] = ACTIONS(3906), - [anon_sym_static_assert] = ACTIONS(3906), - [anon_sym_concept] = ACTIONS(3906), - [anon_sym_co_return] = ACTIONS(3906), - [anon_sym_co_yield] = ACTIONS(3906), - [anon_sym_R_DQUOTE] = ACTIONS(3908), - [anon_sym_LR_DQUOTE] = ACTIONS(3908), - [anon_sym_uR_DQUOTE] = ACTIONS(3908), - [anon_sym_UR_DQUOTE] = ACTIONS(3908), - [anon_sym_u8R_DQUOTE] = ACTIONS(3908), - [anon_sym_co_await] = ACTIONS(3906), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(3906), - [anon_sym_CARET_CARET] = ACTIONS(3908), - [anon_sym_LBRACK_COLON] = ACTIONS(3908), - [sym_this] = ACTIONS(3906), - }, - [STATE(409)] = { - [ts_builtin_sym_end] = ACTIONS(3886), - [sym_identifier] = ACTIONS(3884), - [aux_sym_preproc_include_token1] = ACTIONS(3884), - [aux_sym_preproc_def_token1] = ACTIONS(3884), - [aux_sym_preproc_if_token1] = ACTIONS(3884), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3884), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3884), - [sym_preproc_directive] = ACTIONS(3884), - [anon_sym_LPAREN2] = ACTIONS(3886), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3886), - [anon_sym_AMP_AMP] = ACTIONS(3886), - [anon_sym_AMP] = ACTIONS(3884), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym___extension__] = ACTIONS(3884), - [anon_sym_typedef] = ACTIONS(3884), - [anon_sym_virtual] = ACTIONS(3884), - [anon_sym_extern] = ACTIONS(3884), - [anon_sym___attribute__] = ACTIONS(3884), - [anon_sym___attribute] = ACTIONS(3884), - [anon_sym_using] = 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___cdecl] = ACTIONS(3884), - [anon_sym___clrcall] = ACTIONS(3884), - [anon_sym___stdcall] = ACTIONS(3884), - [anon_sym___fastcall] = ACTIONS(3884), - [anon_sym___thiscall] = ACTIONS(3884), - [anon_sym___vectorcall] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_signed] = ACTIONS(3884), - [anon_sym_unsigned] = ACTIONS(3884), - [anon_sym_long] = ACTIONS(3884), - [anon_sym_short] = ACTIONS(3884), - [anon_sym_LBRACK] = ACTIONS(3884), - [anon_sym_static] = ACTIONS(3884), - [anon_sym_register] = ACTIONS(3884), - [anon_sym_inline] = ACTIONS(3884), - [anon_sym___inline] = ACTIONS(3884), - [anon_sym___inline__] = ACTIONS(3884), - [anon_sym___forceinline] = ACTIONS(3884), - [anon_sym_thread_local] = ACTIONS(3884), - [anon_sym___thread] = ACTIONS(3884), - [anon_sym_const] = ACTIONS(3884), - [anon_sym_constexpr] = ACTIONS(3884), - [anon_sym_volatile] = ACTIONS(3884), - [anon_sym_restrict] = ACTIONS(3884), - [anon_sym___restrict__] = ACTIONS(3884), - [anon_sym__Atomic] = ACTIONS(3884), - [anon_sym__Noreturn] = ACTIONS(3884), - [anon_sym_noreturn] = ACTIONS(3884), - [anon_sym__Nonnull] = ACTIONS(3884), - [anon_sym_mutable] = ACTIONS(3884), - [anon_sym_constinit] = ACTIONS(3884), - [anon_sym_consteval] = ACTIONS(3884), - [anon_sym_alignas] = ACTIONS(3884), - [anon_sym__Alignas] = ACTIONS(3884), - [sym_primitive_type] = ACTIONS(3884), - [anon_sym_enum] = ACTIONS(3884), - [anon_sym_class] = ACTIONS(3884), - [anon_sym_struct] = ACTIONS(3884), - [anon_sym_union] = ACTIONS(3884), - [anon_sym_if] = ACTIONS(3884), - [anon_sym_else] = ACTIONS(3884), - [anon_sym_switch] = ACTIONS(3884), - [anon_sym_case] = ACTIONS(3884), - [anon_sym_default] = ACTIONS(3884), - [anon_sym_while] = ACTIONS(3884), - [anon_sym_do] = ACTIONS(3884), - [anon_sym_for] = ACTIONS(3884), - [anon_sym_return] = ACTIONS(3884), - [anon_sym_break] = ACTIONS(3884), - [anon_sym_continue] = ACTIONS(3884), - [anon_sym_goto] = ACTIONS(3884), - [anon_sym___try] = ACTIONS(3884), - [anon_sym___leave] = ACTIONS(3884), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3886), - [anon_sym_PLUS_PLUS] = ACTIONS(3886), - [anon_sym_sizeof] = ACTIONS(3884), - [anon_sym___alignof__] = ACTIONS(3884), - [anon_sym___alignof] = ACTIONS(3884), - [anon_sym__alignof] = ACTIONS(3884), - [anon_sym_alignof] = ACTIONS(3884), - [anon_sym__Alignof] = ACTIONS(3884), - [anon_sym_offsetof] = ACTIONS(3884), - [anon_sym__Generic] = ACTIONS(3884), - [anon_sym_typename] = ACTIONS(3884), - [anon_sym_asm] = ACTIONS(3884), - [anon_sym___asm__] = ACTIONS(3884), - [anon_sym___asm] = ACTIONS(3884), - [sym_number_literal] = ACTIONS(3886), - [anon_sym_L_SQUOTE] = ACTIONS(3886), - [anon_sym_u_SQUOTE] = ACTIONS(3886), - [anon_sym_U_SQUOTE] = ACTIONS(3886), - [anon_sym_u8_SQUOTE] = ACTIONS(3886), - [anon_sym_SQUOTE] = ACTIONS(3886), - [anon_sym_L_DQUOTE] = ACTIONS(3886), - [anon_sym_u_DQUOTE] = ACTIONS(3886), - [anon_sym_U_DQUOTE] = ACTIONS(3886), - [anon_sym_u8_DQUOTE] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(3886), - [sym_true] = ACTIONS(3884), - [sym_false] = ACTIONS(3884), - [anon_sym_NULL] = ACTIONS(3884), - [anon_sym_nullptr] = ACTIONS(3884), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3884), - [anon_sym_decltype] = ACTIONS(3884), - [anon_sym_explicit] = ACTIONS(3884), - [anon_sym_export] = ACTIONS(3884), - [anon_sym_module] = ACTIONS(3884), - [anon_sym_import] = ACTIONS(3884), - [anon_sym_template] = ACTIONS(3884), - [anon_sym_operator] = ACTIONS(3884), - [anon_sym_try] = ACTIONS(3884), - [anon_sym_delete] = ACTIONS(3884), - [anon_sym_throw] = ACTIONS(3884), - [anon_sym_namespace] = ACTIONS(3884), - [anon_sym_static_assert] = ACTIONS(3884), - [anon_sym_concept] = ACTIONS(3884), - [anon_sym_co_return] = ACTIONS(3884), - [anon_sym_co_yield] = ACTIONS(3884), - [anon_sym_R_DQUOTE] = ACTIONS(3886), - [anon_sym_LR_DQUOTE] = ACTIONS(3886), - [anon_sym_uR_DQUOTE] = ACTIONS(3886), - [anon_sym_UR_DQUOTE] = ACTIONS(3886), - [anon_sym_u8R_DQUOTE] = ACTIONS(3886), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(3884), - [anon_sym_requires] = ACTIONS(3884), - [anon_sym_CARET_CARET] = ACTIONS(3886), - [anon_sym_LBRACK_COLON] = ACTIONS(3886), - [sym_this] = ACTIONS(3884), - }, - [STATE(410)] = { - [sym_identifier] = ACTIONS(3910), - [aux_sym_preproc_include_token1] = ACTIONS(3910), - [aux_sym_preproc_def_token1] = ACTIONS(3910), - [aux_sym_preproc_if_token1] = ACTIONS(3910), - [aux_sym_preproc_if_token2] = ACTIONS(3910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3910), - [aux_sym_preproc_else_token1] = ACTIONS(3910), - [aux_sym_preproc_elif_token1] = ACTIONS(3910), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3910), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3910), - [sym_preproc_directive] = ACTIONS(3910), - [anon_sym_LPAREN2] = ACTIONS(3912), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(3912), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_AMP] = ACTIONS(3910), - [anon_sym_SEMI] = ACTIONS(3912), - [anon_sym___extension__] = ACTIONS(3910), - [anon_sym_typedef] = ACTIONS(3910), - [anon_sym_virtual] = ACTIONS(3910), - [anon_sym_extern] = ACTIONS(3910), - [anon_sym___attribute__] = ACTIONS(3910), - [anon_sym___attribute] = ACTIONS(3910), - [anon_sym_using] = ACTIONS(3910), - [anon_sym_COLON_COLON] = ACTIONS(3912), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3912), - [anon_sym___declspec] = ACTIONS(3910), - [anon_sym___based] = ACTIONS(3910), - [anon_sym___cdecl] = ACTIONS(3910), - [anon_sym___clrcall] = ACTIONS(3910), - [anon_sym___stdcall] = ACTIONS(3910), - [anon_sym___fastcall] = ACTIONS(3910), - [anon_sym___thiscall] = ACTIONS(3910), - [anon_sym___vectorcall] = ACTIONS(3910), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_signed] = ACTIONS(3910), - [anon_sym_unsigned] = ACTIONS(3910), - [anon_sym_long] = ACTIONS(3910), - [anon_sym_short] = ACTIONS(3910), - [anon_sym_LBRACK] = ACTIONS(3910), - [anon_sym_static] = ACTIONS(3910), - [anon_sym_register] = ACTIONS(3910), - [anon_sym_inline] = ACTIONS(3910), - [anon_sym___inline] = ACTIONS(3910), - [anon_sym___inline__] = ACTIONS(3910), - [anon_sym___forceinline] = ACTIONS(3910), - [anon_sym_thread_local] = ACTIONS(3910), - [anon_sym___thread] = ACTIONS(3910), - [anon_sym_const] = ACTIONS(3910), - [anon_sym_constexpr] = ACTIONS(3910), - [anon_sym_volatile] = ACTIONS(3910), - [anon_sym_restrict] = ACTIONS(3910), - [anon_sym___restrict__] = ACTIONS(3910), - [anon_sym__Atomic] = ACTIONS(3910), - [anon_sym__Noreturn] = ACTIONS(3910), - [anon_sym_noreturn] = ACTIONS(3910), - [anon_sym__Nonnull] = ACTIONS(3910), - [anon_sym_mutable] = ACTIONS(3910), - [anon_sym_constinit] = ACTIONS(3910), - [anon_sym_consteval] = ACTIONS(3910), - [anon_sym_alignas] = ACTIONS(3910), - [anon_sym__Alignas] = ACTIONS(3910), - [sym_primitive_type] = ACTIONS(3910), - [anon_sym_enum] = ACTIONS(3910), - [anon_sym_class] = ACTIONS(3910), - [anon_sym_struct] = ACTIONS(3910), - [anon_sym_union] = ACTIONS(3910), - [anon_sym_if] = ACTIONS(3910), - [anon_sym_switch] = ACTIONS(3910), - [anon_sym_case] = ACTIONS(3910), - [anon_sym_default] = ACTIONS(3910), - [anon_sym_while] = ACTIONS(3910), - [anon_sym_do] = ACTIONS(3910), - [anon_sym_for] = ACTIONS(3910), - [anon_sym_return] = ACTIONS(3910), - [anon_sym_break] = ACTIONS(3910), - [anon_sym_continue] = ACTIONS(3910), - [anon_sym_goto] = ACTIONS(3910), - [anon_sym___try] = ACTIONS(3910), - [anon_sym___leave] = ACTIONS(3910), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(3912), - [anon_sym_PLUS_PLUS] = ACTIONS(3912), - [anon_sym_sizeof] = ACTIONS(3910), - [anon_sym___alignof__] = ACTIONS(3910), - [anon_sym___alignof] = ACTIONS(3910), - [anon_sym__alignof] = ACTIONS(3910), - [anon_sym_alignof] = ACTIONS(3910), - [anon_sym__Alignof] = ACTIONS(3910), - [anon_sym_offsetof] = ACTIONS(3910), - [anon_sym__Generic] = ACTIONS(3910), - [anon_sym_typename] = ACTIONS(3910), - [anon_sym_asm] = ACTIONS(3910), - [anon_sym___asm__] = ACTIONS(3910), - [anon_sym___asm] = ACTIONS(3910), - [sym_number_literal] = ACTIONS(3912), - [anon_sym_L_SQUOTE] = ACTIONS(3912), - [anon_sym_u_SQUOTE] = ACTIONS(3912), - [anon_sym_U_SQUOTE] = ACTIONS(3912), - [anon_sym_u8_SQUOTE] = ACTIONS(3912), - [anon_sym_SQUOTE] = ACTIONS(3912), - [anon_sym_L_DQUOTE] = ACTIONS(3912), - [anon_sym_u_DQUOTE] = ACTIONS(3912), - [anon_sym_U_DQUOTE] = ACTIONS(3912), - [anon_sym_u8_DQUOTE] = ACTIONS(3912), - [anon_sym_DQUOTE] = ACTIONS(3912), - [sym_true] = ACTIONS(3910), - [sym_false] = ACTIONS(3910), - [anon_sym_NULL] = ACTIONS(3910), - [anon_sym_nullptr] = ACTIONS(3910), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3910), - [anon_sym_decltype] = ACTIONS(3910), - [anon_sym_explicit] = ACTIONS(3910), - [anon_sym_template] = ACTIONS(3910), - [anon_sym_operator] = ACTIONS(3910), - [anon_sym_try] = ACTIONS(3910), - [anon_sym_delete] = ACTIONS(3910), - [anon_sym_throw] = ACTIONS(3910), - [anon_sym_namespace] = ACTIONS(3910), - [anon_sym_static_assert] = ACTIONS(3910), - [anon_sym_concept] = ACTIONS(3910), - [anon_sym_co_return] = ACTIONS(3910), - [anon_sym_co_yield] = ACTIONS(3910), - [anon_sym_R_DQUOTE] = ACTIONS(3912), - [anon_sym_LR_DQUOTE] = ACTIONS(3912), - [anon_sym_uR_DQUOTE] = ACTIONS(3912), - [anon_sym_UR_DQUOTE] = ACTIONS(3912), - [anon_sym_u8R_DQUOTE] = ACTIONS(3912), - [anon_sym_co_await] = ACTIONS(3910), - [anon_sym_new] = ACTIONS(3910), - [anon_sym_requires] = ACTIONS(3910), - [anon_sym_CARET_CARET] = ACTIONS(3912), - [anon_sym_LBRACK_COLON] = ACTIONS(3912), - [sym_this] = ACTIONS(3910), - }, - [STATE(411)] = { - [sym_identifier] = ACTIONS(3914), - [aux_sym_preproc_include_token1] = ACTIONS(3914), - [aux_sym_preproc_def_token1] = ACTIONS(3914), - [aux_sym_preproc_if_token1] = ACTIONS(3914), - [aux_sym_preproc_if_token2] = ACTIONS(3914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3914), - [aux_sym_preproc_else_token1] = ACTIONS(3914), - [aux_sym_preproc_elif_token1] = ACTIONS(3914), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3914), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3914), - [sym_preproc_directive] = ACTIONS(3914), - [anon_sym_LPAREN2] = ACTIONS(3916), - [anon_sym_BANG] = ACTIONS(3916), - [anon_sym_TILDE] = ACTIONS(3916), - [anon_sym_DASH] = ACTIONS(3914), - [anon_sym_PLUS] = ACTIONS(3914), - [anon_sym_STAR] = ACTIONS(3916), - [anon_sym_AMP_AMP] = ACTIONS(3916), - [anon_sym_AMP] = ACTIONS(3914), - [anon_sym_SEMI] = ACTIONS(3916), - [anon_sym___extension__] = ACTIONS(3914), - [anon_sym_typedef] = ACTIONS(3914), - [anon_sym_virtual] = ACTIONS(3914), - [anon_sym_extern] = ACTIONS(3914), - [anon_sym___attribute__] = ACTIONS(3914), - [anon_sym___attribute] = ACTIONS(3914), - [anon_sym_using] = ACTIONS(3914), - [anon_sym_COLON_COLON] = ACTIONS(3916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3916), - [anon_sym___declspec] = ACTIONS(3914), - [anon_sym___based] = ACTIONS(3914), - [anon_sym___cdecl] = ACTIONS(3914), - [anon_sym___clrcall] = ACTIONS(3914), - [anon_sym___stdcall] = ACTIONS(3914), - [anon_sym___fastcall] = ACTIONS(3914), - [anon_sym___thiscall] = ACTIONS(3914), - [anon_sym___vectorcall] = ACTIONS(3914), - [anon_sym_LBRACE] = ACTIONS(3916), - [anon_sym_signed] = ACTIONS(3914), - [anon_sym_unsigned] = ACTIONS(3914), - [anon_sym_long] = ACTIONS(3914), - [anon_sym_short] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_register] = ACTIONS(3914), - [anon_sym_inline] = ACTIONS(3914), - [anon_sym___inline] = ACTIONS(3914), - [anon_sym___inline__] = ACTIONS(3914), - [anon_sym___forceinline] = ACTIONS(3914), - [anon_sym_thread_local] = ACTIONS(3914), - [anon_sym___thread] = ACTIONS(3914), - [anon_sym_const] = ACTIONS(3914), - [anon_sym_constexpr] = ACTIONS(3914), - [anon_sym_volatile] = ACTIONS(3914), - [anon_sym_restrict] = ACTIONS(3914), - [anon_sym___restrict__] = ACTIONS(3914), - [anon_sym__Atomic] = ACTIONS(3914), - [anon_sym__Noreturn] = ACTIONS(3914), - [anon_sym_noreturn] = ACTIONS(3914), - [anon_sym__Nonnull] = ACTIONS(3914), - [anon_sym_mutable] = ACTIONS(3914), - [anon_sym_constinit] = ACTIONS(3914), - [anon_sym_consteval] = ACTIONS(3914), - [anon_sym_alignas] = ACTIONS(3914), - [anon_sym__Alignas] = ACTIONS(3914), - [sym_primitive_type] = ACTIONS(3914), - [anon_sym_enum] = ACTIONS(3914), - [anon_sym_class] = ACTIONS(3914), - [anon_sym_struct] = ACTIONS(3914), - [anon_sym_union] = ACTIONS(3914), - [anon_sym_if] = ACTIONS(3914), - [anon_sym_switch] = ACTIONS(3914), - [anon_sym_case] = ACTIONS(3914), - [anon_sym_default] = ACTIONS(3914), - [anon_sym_while] = ACTIONS(3914), - [anon_sym_do] = ACTIONS(3914), - [anon_sym_for] = ACTIONS(3914), - [anon_sym_return] = ACTIONS(3914), - [anon_sym_break] = ACTIONS(3914), - [anon_sym_continue] = ACTIONS(3914), - [anon_sym_goto] = ACTIONS(3914), - [anon_sym___try] = ACTIONS(3914), - [anon_sym___leave] = ACTIONS(3914), - [anon_sym_not] = ACTIONS(3914), - [anon_sym_compl] = ACTIONS(3914), - [anon_sym_DASH_DASH] = ACTIONS(3916), - [anon_sym_PLUS_PLUS] = ACTIONS(3916), - [anon_sym_sizeof] = ACTIONS(3914), - [anon_sym___alignof__] = ACTIONS(3914), - [anon_sym___alignof] = ACTIONS(3914), - [anon_sym__alignof] = ACTIONS(3914), - [anon_sym_alignof] = ACTIONS(3914), - [anon_sym__Alignof] = ACTIONS(3914), - [anon_sym_offsetof] = ACTIONS(3914), - [anon_sym__Generic] = ACTIONS(3914), - [anon_sym_typename] = ACTIONS(3914), - [anon_sym_asm] = ACTIONS(3914), - [anon_sym___asm__] = ACTIONS(3914), - [anon_sym___asm] = ACTIONS(3914), - [sym_number_literal] = ACTIONS(3916), - [anon_sym_L_SQUOTE] = ACTIONS(3916), - [anon_sym_u_SQUOTE] = ACTIONS(3916), - [anon_sym_U_SQUOTE] = ACTIONS(3916), - [anon_sym_u8_SQUOTE] = ACTIONS(3916), - [anon_sym_SQUOTE] = ACTIONS(3916), - [anon_sym_L_DQUOTE] = ACTIONS(3916), - [anon_sym_u_DQUOTE] = ACTIONS(3916), - [anon_sym_U_DQUOTE] = ACTIONS(3916), - [anon_sym_u8_DQUOTE] = ACTIONS(3916), - [anon_sym_DQUOTE] = ACTIONS(3916), - [sym_true] = ACTIONS(3914), - [sym_false] = ACTIONS(3914), - [anon_sym_NULL] = ACTIONS(3914), - [anon_sym_nullptr] = ACTIONS(3914), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3914), - [anon_sym_decltype] = ACTIONS(3914), - [anon_sym_explicit] = ACTIONS(3914), - [anon_sym_template] = ACTIONS(3914), - [anon_sym_operator] = ACTIONS(3914), - [anon_sym_try] = ACTIONS(3914), - [anon_sym_delete] = ACTIONS(3914), - [anon_sym_throw] = ACTIONS(3914), - [anon_sym_namespace] = ACTIONS(3914), - [anon_sym_static_assert] = ACTIONS(3914), - [anon_sym_concept] = ACTIONS(3914), - [anon_sym_co_return] = ACTIONS(3914), - [anon_sym_co_yield] = ACTIONS(3914), - [anon_sym_R_DQUOTE] = ACTIONS(3916), - [anon_sym_LR_DQUOTE] = ACTIONS(3916), - [anon_sym_uR_DQUOTE] = ACTIONS(3916), - [anon_sym_UR_DQUOTE] = ACTIONS(3916), - [anon_sym_u8R_DQUOTE] = ACTIONS(3916), - [anon_sym_co_await] = ACTIONS(3914), - [anon_sym_new] = ACTIONS(3914), - [anon_sym_requires] = ACTIONS(3914), - [anon_sym_CARET_CARET] = ACTIONS(3916), - [anon_sym_LBRACK_COLON] = ACTIONS(3916), - [sym_this] = ACTIONS(3914), - }, - [STATE(412)] = { - [sym_identifier] = ACTIONS(3918), - [aux_sym_preproc_include_token1] = ACTIONS(3918), - [aux_sym_preproc_def_token1] = ACTIONS(3918), - [aux_sym_preproc_if_token1] = ACTIONS(3918), - [aux_sym_preproc_if_token2] = ACTIONS(3918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3918), - [aux_sym_preproc_else_token1] = ACTIONS(3918), - [aux_sym_preproc_elif_token1] = ACTIONS(3918), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3918), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3918), - [sym_preproc_directive] = ACTIONS(3918), - [anon_sym_LPAREN2] = ACTIONS(3920), - [anon_sym_BANG] = ACTIONS(3920), - [anon_sym_TILDE] = ACTIONS(3920), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_STAR] = ACTIONS(3920), - [anon_sym_AMP_AMP] = ACTIONS(3920), - [anon_sym_AMP] = ACTIONS(3918), - [anon_sym_SEMI] = ACTIONS(3920), - [anon_sym___extension__] = ACTIONS(3918), - [anon_sym_typedef] = ACTIONS(3918), - [anon_sym_virtual] = ACTIONS(3918), - [anon_sym_extern] = ACTIONS(3918), - [anon_sym___attribute__] = ACTIONS(3918), - [anon_sym___attribute] = ACTIONS(3918), - [anon_sym_using] = ACTIONS(3918), - [anon_sym_COLON_COLON] = ACTIONS(3920), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3920), - [anon_sym___declspec] = ACTIONS(3918), - [anon_sym___based] = ACTIONS(3918), - [anon_sym___cdecl] = ACTIONS(3918), - [anon_sym___clrcall] = ACTIONS(3918), - [anon_sym___stdcall] = ACTIONS(3918), - [anon_sym___fastcall] = ACTIONS(3918), - [anon_sym___thiscall] = ACTIONS(3918), - [anon_sym___vectorcall] = ACTIONS(3918), - [anon_sym_LBRACE] = ACTIONS(3920), - [anon_sym_signed] = ACTIONS(3918), - [anon_sym_unsigned] = ACTIONS(3918), - [anon_sym_long] = ACTIONS(3918), - [anon_sym_short] = ACTIONS(3918), - [anon_sym_LBRACK] = ACTIONS(3918), - [anon_sym_static] = ACTIONS(3918), - [anon_sym_register] = ACTIONS(3918), - [anon_sym_inline] = ACTIONS(3918), - [anon_sym___inline] = ACTIONS(3918), - [anon_sym___inline__] = ACTIONS(3918), - [anon_sym___forceinline] = ACTIONS(3918), - [anon_sym_thread_local] = ACTIONS(3918), - [anon_sym___thread] = ACTIONS(3918), - [anon_sym_const] = ACTIONS(3918), - [anon_sym_constexpr] = ACTIONS(3918), - [anon_sym_volatile] = ACTIONS(3918), - [anon_sym_restrict] = ACTIONS(3918), - [anon_sym___restrict__] = ACTIONS(3918), - [anon_sym__Atomic] = ACTIONS(3918), - [anon_sym__Noreturn] = ACTIONS(3918), - [anon_sym_noreturn] = ACTIONS(3918), - [anon_sym__Nonnull] = ACTIONS(3918), - [anon_sym_mutable] = ACTIONS(3918), - [anon_sym_constinit] = ACTIONS(3918), - [anon_sym_consteval] = ACTIONS(3918), - [anon_sym_alignas] = ACTIONS(3918), - [anon_sym__Alignas] = ACTIONS(3918), - [sym_primitive_type] = ACTIONS(3918), - [anon_sym_enum] = ACTIONS(3918), - [anon_sym_class] = ACTIONS(3918), - [anon_sym_struct] = ACTIONS(3918), - [anon_sym_union] = ACTIONS(3918), - [anon_sym_if] = ACTIONS(3918), - [anon_sym_switch] = ACTIONS(3918), - [anon_sym_case] = ACTIONS(3918), - [anon_sym_default] = ACTIONS(3918), - [anon_sym_while] = ACTIONS(3918), - [anon_sym_do] = ACTIONS(3918), - [anon_sym_for] = ACTIONS(3918), - [anon_sym_return] = ACTIONS(3918), - [anon_sym_break] = ACTIONS(3918), - [anon_sym_continue] = ACTIONS(3918), - [anon_sym_goto] = ACTIONS(3918), - [anon_sym___try] = ACTIONS(3918), - [anon_sym___leave] = ACTIONS(3918), - [anon_sym_not] = ACTIONS(3918), - [anon_sym_compl] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3920), - [anon_sym_PLUS_PLUS] = ACTIONS(3920), - [anon_sym_sizeof] = ACTIONS(3918), - [anon_sym___alignof__] = ACTIONS(3918), - [anon_sym___alignof] = ACTIONS(3918), - [anon_sym__alignof] = ACTIONS(3918), - [anon_sym_alignof] = ACTIONS(3918), - [anon_sym__Alignof] = ACTIONS(3918), - [anon_sym_offsetof] = ACTIONS(3918), - [anon_sym__Generic] = ACTIONS(3918), - [anon_sym_typename] = ACTIONS(3918), - [anon_sym_asm] = ACTIONS(3918), - [anon_sym___asm__] = ACTIONS(3918), - [anon_sym___asm] = ACTIONS(3918), - [sym_number_literal] = ACTIONS(3920), - [anon_sym_L_SQUOTE] = ACTIONS(3920), - [anon_sym_u_SQUOTE] = ACTIONS(3920), - [anon_sym_U_SQUOTE] = ACTIONS(3920), - [anon_sym_u8_SQUOTE] = ACTIONS(3920), - [anon_sym_SQUOTE] = ACTIONS(3920), - [anon_sym_L_DQUOTE] = ACTIONS(3920), - [anon_sym_u_DQUOTE] = ACTIONS(3920), - [anon_sym_U_DQUOTE] = ACTIONS(3920), - [anon_sym_u8_DQUOTE] = ACTIONS(3920), - [anon_sym_DQUOTE] = ACTIONS(3920), - [sym_true] = ACTIONS(3918), - [sym_false] = ACTIONS(3918), - [anon_sym_NULL] = ACTIONS(3918), - [anon_sym_nullptr] = ACTIONS(3918), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3918), - [anon_sym_decltype] = ACTIONS(3918), - [anon_sym_explicit] = ACTIONS(3918), - [anon_sym_template] = ACTIONS(3918), - [anon_sym_operator] = ACTIONS(3918), - [anon_sym_try] = ACTIONS(3918), - [anon_sym_delete] = ACTIONS(3918), - [anon_sym_throw] = ACTIONS(3918), - [anon_sym_namespace] = ACTIONS(3918), - [anon_sym_static_assert] = ACTIONS(3918), - [anon_sym_concept] = ACTIONS(3918), - [anon_sym_co_return] = ACTIONS(3918), - [anon_sym_co_yield] = ACTIONS(3918), - [anon_sym_R_DQUOTE] = ACTIONS(3920), - [anon_sym_LR_DQUOTE] = ACTIONS(3920), - [anon_sym_uR_DQUOTE] = ACTIONS(3920), - [anon_sym_UR_DQUOTE] = ACTIONS(3920), - [anon_sym_u8R_DQUOTE] = ACTIONS(3920), - [anon_sym_co_await] = ACTIONS(3918), - [anon_sym_new] = ACTIONS(3918), - [anon_sym_requires] = ACTIONS(3918), - [anon_sym_CARET_CARET] = ACTIONS(3920), - [anon_sym_LBRACK_COLON] = ACTIONS(3920), - [sym_this] = ACTIONS(3918), - }, - [STATE(413)] = { - [sym_identifier] = ACTIONS(3922), - [aux_sym_preproc_include_token1] = ACTIONS(3922), - [aux_sym_preproc_def_token1] = ACTIONS(3922), - [aux_sym_preproc_if_token1] = ACTIONS(3922), - [aux_sym_preproc_if_token2] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), - [aux_sym_preproc_else_token1] = ACTIONS(3922), - [aux_sym_preproc_elif_token1] = ACTIONS(3922), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3922), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3922), - [sym_preproc_directive] = ACTIONS(3922), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3924), - [anon_sym_TILDE] = ACTIONS(3924), - [anon_sym_DASH] = ACTIONS(3922), - [anon_sym_PLUS] = ACTIONS(3922), - [anon_sym_STAR] = ACTIONS(3924), - [anon_sym_AMP_AMP] = ACTIONS(3924), - [anon_sym_AMP] = ACTIONS(3922), - [anon_sym_SEMI] = ACTIONS(3924), - [anon_sym___extension__] = ACTIONS(3922), - [anon_sym_typedef] = ACTIONS(3922), - [anon_sym_virtual] = ACTIONS(3922), - [anon_sym_extern] = ACTIONS(3922), - [anon_sym___attribute__] = ACTIONS(3922), - [anon_sym___attribute] = ACTIONS(3922), - [anon_sym_using] = ACTIONS(3922), - [anon_sym_COLON_COLON] = ACTIONS(3924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), - [anon_sym___declspec] = ACTIONS(3922), - [anon_sym___based] = ACTIONS(3922), - [anon_sym___cdecl] = ACTIONS(3922), - [anon_sym___clrcall] = ACTIONS(3922), - [anon_sym___stdcall] = ACTIONS(3922), - [anon_sym___fastcall] = ACTIONS(3922), - [anon_sym___thiscall] = ACTIONS(3922), - [anon_sym___vectorcall] = ACTIONS(3922), - [anon_sym_LBRACE] = ACTIONS(3924), - [anon_sym_signed] = ACTIONS(3922), - [anon_sym_unsigned] = ACTIONS(3922), - [anon_sym_long] = ACTIONS(3922), - [anon_sym_short] = ACTIONS(3922), - [anon_sym_LBRACK] = ACTIONS(3922), - [anon_sym_static] = ACTIONS(3922), - [anon_sym_register] = ACTIONS(3922), - [anon_sym_inline] = ACTIONS(3922), - [anon_sym___inline] = ACTIONS(3922), - [anon_sym___inline__] = ACTIONS(3922), - [anon_sym___forceinline] = ACTIONS(3922), - [anon_sym_thread_local] = ACTIONS(3922), - [anon_sym___thread] = ACTIONS(3922), - [anon_sym_const] = ACTIONS(3922), - [anon_sym_constexpr] = ACTIONS(3922), - [anon_sym_volatile] = ACTIONS(3922), - [anon_sym_restrict] = ACTIONS(3922), - [anon_sym___restrict__] = ACTIONS(3922), - [anon_sym__Atomic] = ACTIONS(3922), - [anon_sym__Noreturn] = ACTIONS(3922), - [anon_sym_noreturn] = ACTIONS(3922), - [anon_sym__Nonnull] = ACTIONS(3922), - [anon_sym_mutable] = ACTIONS(3922), - [anon_sym_constinit] = ACTIONS(3922), - [anon_sym_consteval] = ACTIONS(3922), - [anon_sym_alignas] = ACTIONS(3922), - [anon_sym__Alignas] = ACTIONS(3922), - [sym_primitive_type] = ACTIONS(3922), - [anon_sym_enum] = ACTIONS(3922), - [anon_sym_class] = ACTIONS(3922), - [anon_sym_struct] = ACTIONS(3922), - [anon_sym_union] = ACTIONS(3922), - [anon_sym_if] = ACTIONS(3922), - [anon_sym_switch] = ACTIONS(3922), - [anon_sym_case] = ACTIONS(3922), - [anon_sym_default] = ACTIONS(3922), - [anon_sym_while] = ACTIONS(3922), - [anon_sym_do] = ACTIONS(3922), - [anon_sym_for] = ACTIONS(3922), - [anon_sym_return] = ACTIONS(3922), - [anon_sym_break] = ACTIONS(3922), - [anon_sym_continue] = ACTIONS(3922), - [anon_sym_goto] = ACTIONS(3922), - [anon_sym___try] = ACTIONS(3922), - [anon_sym___leave] = ACTIONS(3922), - [anon_sym_not] = ACTIONS(3922), - [anon_sym_compl] = ACTIONS(3922), - [anon_sym_DASH_DASH] = ACTIONS(3924), - [anon_sym_PLUS_PLUS] = ACTIONS(3924), - [anon_sym_sizeof] = ACTIONS(3922), - [anon_sym___alignof__] = ACTIONS(3922), - [anon_sym___alignof] = ACTIONS(3922), - [anon_sym__alignof] = ACTIONS(3922), - [anon_sym_alignof] = ACTIONS(3922), - [anon_sym__Alignof] = ACTIONS(3922), - [anon_sym_offsetof] = ACTIONS(3922), - [anon_sym__Generic] = ACTIONS(3922), - [anon_sym_typename] = ACTIONS(3922), - [anon_sym_asm] = ACTIONS(3922), - [anon_sym___asm__] = ACTIONS(3922), - [anon_sym___asm] = ACTIONS(3922), - [sym_number_literal] = ACTIONS(3924), - [anon_sym_L_SQUOTE] = ACTIONS(3924), - [anon_sym_u_SQUOTE] = ACTIONS(3924), - [anon_sym_U_SQUOTE] = ACTIONS(3924), - [anon_sym_u8_SQUOTE] = ACTIONS(3924), - [anon_sym_SQUOTE] = ACTIONS(3924), - [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_true] = ACTIONS(3922), - [sym_false] = ACTIONS(3922), - [anon_sym_NULL] = ACTIONS(3922), - [anon_sym_nullptr] = ACTIONS(3922), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3922), - [anon_sym_decltype] = ACTIONS(3922), - [anon_sym_explicit] = ACTIONS(3922), - [anon_sym_template] = ACTIONS(3922), - [anon_sym_operator] = ACTIONS(3922), - [anon_sym_try] = ACTIONS(3922), - [anon_sym_delete] = ACTIONS(3922), - [anon_sym_throw] = ACTIONS(3922), - [anon_sym_namespace] = ACTIONS(3922), - [anon_sym_static_assert] = ACTIONS(3922), - [anon_sym_concept] = ACTIONS(3922), - [anon_sym_co_return] = ACTIONS(3922), - [anon_sym_co_yield] = ACTIONS(3922), - [anon_sym_R_DQUOTE] = ACTIONS(3924), - [anon_sym_LR_DQUOTE] = ACTIONS(3924), - [anon_sym_uR_DQUOTE] = ACTIONS(3924), - [anon_sym_UR_DQUOTE] = ACTIONS(3924), - [anon_sym_u8R_DQUOTE] = ACTIONS(3924), - [anon_sym_co_await] = ACTIONS(3922), - [anon_sym_new] = ACTIONS(3922), - [anon_sym_requires] = ACTIONS(3922), - [anon_sym_CARET_CARET] = ACTIONS(3924), - [anon_sym_LBRACK_COLON] = ACTIONS(3924), - [sym_this] = ACTIONS(3922), - }, - [STATE(414)] = { - [sym_identifier] = ACTIONS(3922), - [aux_sym_preproc_include_token1] = ACTIONS(3922), - [aux_sym_preproc_def_token1] = ACTIONS(3922), - [aux_sym_preproc_if_token1] = ACTIONS(3922), - [aux_sym_preproc_if_token2] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), - [aux_sym_preproc_else_token1] = ACTIONS(3922), - [aux_sym_preproc_elif_token1] = ACTIONS(3922), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3922), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3922), - [sym_preproc_directive] = ACTIONS(3922), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3924), - [anon_sym_TILDE] = ACTIONS(3924), - [anon_sym_DASH] = ACTIONS(3922), - [anon_sym_PLUS] = ACTIONS(3922), - [anon_sym_STAR] = ACTIONS(3924), - [anon_sym_AMP_AMP] = ACTIONS(3924), - [anon_sym_AMP] = ACTIONS(3922), - [anon_sym_SEMI] = ACTIONS(3924), - [anon_sym___extension__] = ACTIONS(3922), - [anon_sym_typedef] = ACTIONS(3922), - [anon_sym_virtual] = ACTIONS(3922), - [anon_sym_extern] = ACTIONS(3922), - [anon_sym___attribute__] = ACTIONS(3922), - [anon_sym___attribute] = ACTIONS(3922), - [anon_sym_using] = ACTIONS(3922), - [anon_sym_COLON_COLON] = ACTIONS(3924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), - [anon_sym___declspec] = ACTIONS(3922), - [anon_sym___based] = ACTIONS(3922), - [anon_sym___cdecl] = ACTIONS(3922), - [anon_sym___clrcall] = ACTIONS(3922), - [anon_sym___stdcall] = ACTIONS(3922), - [anon_sym___fastcall] = ACTIONS(3922), - [anon_sym___thiscall] = ACTIONS(3922), - [anon_sym___vectorcall] = ACTIONS(3922), - [anon_sym_LBRACE] = ACTIONS(3924), - [anon_sym_signed] = ACTIONS(3922), - [anon_sym_unsigned] = ACTIONS(3922), - [anon_sym_long] = ACTIONS(3922), - [anon_sym_short] = ACTIONS(3922), - [anon_sym_LBRACK] = ACTIONS(3922), - [anon_sym_static] = ACTIONS(3922), - [anon_sym_register] = ACTIONS(3922), - [anon_sym_inline] = ACTIONS(3922), - [anon_sym___inline] = ACTIONS(3922), - [anon_sym___inline__] = ACTIONS(3922), - [anon_sym___forceinline] = ACTIONS(3922), - [anon_sym_thread_local] = ACTIONS(3922), - [anon_sym___thread] = ACTIONS(3922), - [anon_sym_const] = ACTIONS(3922), - [anon_sym_constexpr] = ACTIONS(3922), - [anon_sym_volatile] = ACTIONS(3922), - [anon_sym_restrict] = ACTIONS(3922), - [anon_sym___restrict__] = ACTIONS(3922), - [anon_sym__Atomic] = ACTIONS(3922), - [anon_sym__Noreturn] = ACTIONS(3922), - [anon_sym_noreturn] = ACTIONS(3922), - [anon_sym__Nonnull] = ACTIONS(3922), - [anon_sym_mutable] = ACTIONS(3922), - [anon_sym_constinit] = ACTIONS(3922), - [anon_sym_consteval] = ACTIONS(3922), - [anon_sym_alignas] = ACTIONS(3922), - [anon_sym__Alignas] = ACTIONS(3922), - [sym_primitive_type] = ACTIONS(3922), - [anon_sym_enum] = ACTIONS(3922), - [anon_sym_class] = ACTIONS(3922), - [anon_sym_struct] = ACTIONS(3922), - [anon_sym_union] = ACTIONS(3922), - [anon_sym_if] = ACTIONS(3922), - [anon_sym_switch] = ACTIONS(3922), - [anon_sym_case] = ACTIONS(3922), - [anon_sym_default] = ACTIONS(3922), - [anon_sym_while] = ACTIONS(3922), - [anon_sym_do] = ACTIONS(3922), - [anon_sym_for] = ACTIONS(3922), - [anon_sym_return] = ACTIONS(3922), - [anon_sym_break] = ACTIONS(3922), - [anon_sym_continue] = ACTIONS(3922), - [anon_sym_goto] = ACTIONS(3922), - [anon_sym___try] = ACTIONS(3922), - [anon_sym___leave] = ACTIONS(3922), - [anon_sym_not] = ACTIONS(3922), - [anon_sym_compl] = ACTIONS(3922), - [anon_sym_DASH_DASH] = ACTIONS(3924), - [anon_sym_PLUS_PLUS] = ACTIONS(3924), - [anon_sym_sizeof] = ACTIONS(3922), - [anon_sym___alignof__] = ACTIONS(3922), - [anon_sym___alignof] = ACTIONS(3922), - [anon_sym__alignof] = ACTIONS(3922), - [anon_sym_alignof] = ACTIONS(3922), - [anon_sym__Alignof] = ACTIONS(3922), - [anon_sym_offsetof] = ACTIONS(3922), - [anon_sym__Generic] = ACTIONS(3922), - [anon_sym_typename] = ACTIONS(3922), - [anon_sym_asm] = ACTIONS(3922), - [anon_sym___asm__] = ACTIONS(3922), - [anon_sym___asm] = ACTIONS(3922), - [sym_number_literal] = ACTIONS(3924), - [anon_sym_L_SQUOTE] = ACTIONS(3924), - [anon_sym_u_SQUOTE] = ACTIONS(3924), - [anon_sym_U_SQUOTE] = ACTIONS(3924), - [anon_sym_u8_SQUOTE] = ACTIONS(3924), - [anon_sym_SQUOTE] = ACTIONS(3924), - [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_true] = ACTIONS(3922), - [sym_false] = ACTIONS(3922), - [anon_sym_NULL] = ACTIONS(3922), - [anon_sym_nullptr] = ACTIONS(3922), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3922), - [anon_sym_decltype] = ACTIONS(3922), - [anon_sym_explicit] = ACTIONS(3922), - [anon_sym_template] = ACTIONS(3922), - [anon_sym_operator] = ACTIONS(3922), - [anon_sym_try] = ACTIONS(3922), - [anon_sym_delete] = ACTIONS(3922), - [anon_sym_throw] = ACTIONS(3922), - [anon_sym_namespace] = ACTIONS(3922), - [anon_sym_static_assert] = ACTIONS(3922), - [anon_sym_concept] = ACTIONS(3922), - [anon_sym_co_return] = ACTIONS(3922), - [anon_sym_co_yield] = ACTIONS(3922), - [anon_sym_R_DQUOTE] = ACTIONS(3924), - [anon_sym_LR_DQUOTE] = ACTIONS(3924), - [anon_sym_uR_DQUOTE] = ACTIONS(3924), - [anon_sym_UR_DQUOTE] = ACTIONS(3924), - [anon_sym_u8R_DQUOTE] = ACTIONS(3924), - [anon_sym_co_await] = ACTIONS(3922), - [anon_sym_new] = ACTIONS(3922), - [anon_sym_requires] = ACTIONS(3922), - [anon_sym_CARET_CARET] = ACTIONS(3924), - [anon_sym_LBRACK_COLON] = ACTIONS(3924), - [sym_this] = ACTIONS(3922), - }, - [STATE(415)] = { - [sym_identifier] = ACTIONS(3926), - [aux_sym_preproc_include_token1] = ACTIONS(3926), - [aux_sym_preproc_def_token1] = ACTIONS(3926), - [aux_sym_preproc_if_token1] = ACTIONS(3926), - [aux_sym_preproc_if_token2] = ACTIONS(3926), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3926), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3926), - [aux_sym_preproc_else_token1] = ACTIONS(3926), - [aux_sym_preproc_elif_token1] = ACTIONS(3926), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3926), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3926), - [sym_preproc_directive] = ACTIONS(3926), + [sym_identifier] = ACTIONS(3925), + [aux_sym_preproc_include_token1] = ACTIONS(3925), + [aux_sym_preproc_def_token1] = ACTIONS(3925), + [aux_sym_preproc_if_token1] = ACTIONS(3925), + [aux_sym_preproc_if_token2] = ACTIONS(3925), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3925), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3925), + [aux_sym_preproc_else_token1] = ACTIONS(3925), + [aux_sym_preproc_elif_token1] = ACTIONS(3925), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3925), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3925), + [sym_preproc_directive] = ACTIONS(3925), [anon_sym_LPAREN2] = ACTIONS(3928), [anon_sym_BANG] = ACTIONS(3928), [anon_sym_TILDE] = ACTIONS(3928), - [anon_sym_DASH] = ACTIONS(3926), - [anon_sym_PLUS] = ACTIONS(3926), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_PLUS] = ACTIONS(3925), [anon_sym_STAR] = ACTIONS(3928), [anon_sym_AMP_AMP] = ACTIONS(3928), - [anon_sym_AMP] = ACTIONS(3926), + [anon_sym_AMP] = ACTIONS(3925), [anon_sym_SEMI] = ACTIONS(3928), - [anon_sym___extension__] = ACTIONS(3926), - [anon_sym_typedef] = ACTIONS(3926), - [anon_sym_virtual] = ACTIONS(3926), - [anon_sym_extern] = ACTIONS(3926), - [anon_sym___attribute__] = ACTIONS(3926), - [anon_sym___attribute] = ACTIONS(3926), - [anon_sym_using] = ACTIONS(3926), + [anon_sym___extension__] = ACTIONS(3925), + [anon_sym_typedef] = ACTIONS(3925), + [anon_sym_virtual] = ACTIONS(3925), + [anon_sym_extern] = ACTIONS(3925), + [anon_sym___attribute__] = ACTIONS(3925), + [anon_sym___attribute] = ACTIONS(3925), + [anon_sym_using] = ACTIONS(3925), [anon_sym_COLON_COLON] = ACTIONS(3928), [anon_sym_LBRACK_LBRACK] = ACTIONS(3928), - [anon_sym___declspec] = ACTIONS(3926), - [anon_sym___based] = ACTIONS(3926), - [anon_sym___cdecl] = ACTIONS(3926), - [anon_sym___clrcall] = ACTIONS(3926), - [anon_sym___stdcall] = ACTIONS(3926), - [anon_sym___fastcall] = ACTIONS(3926), - [anon_sym___thiscall] = ACTIONS(3926), - [anon_sym___vectorcall] = ACTIONS(3926), + [anon_sym___declspec] = ACTIONS(3925), + [anon_sym___based] = ACTIONS(3925), + [anon_sym___cdecl] = ACTIONS(3925), + [anon_sym___clrcall] = ACTIONS(3925), + [anon_sym___stdcall] = ACTIONS(3925), + [anon_sym___fastcall] = ACTIONS(3925), + [anon_sym___thiscall] = ACTIONS(3925), + [anon_sym___vectorcall] = ACTIONS(3925), [anon_sym_LBRACE] = ACTIONS(3928), - [anon_sym_signed] = ACTIONS(3926), - [anon_sym_unsigned] = ACTIONS(3926), - [anon_sym_long] = ACTIONS(3926), - [anon_sym_short] = ACTIONS(3926), - [anon_sym_LBRACK] = ACTIONS(3926), - [anon_sym_static] = ACTIONS(3926), - [anon_sym_register] = ACTIONS(3926), - [anon_sym_inline] = ACTIONS(3926), - [anon_sym___inline] = ACTIONS(3926), - [anon_sym___inline__] = ACTIONS(3926), - [anon_sym___forceinline] = ACTIONS(3926), - [anon_sym_thread_local] = ACTIONS(3926), - [anon_sym___thread] = ACTIONS(3926), - [anon_sym_const] = ACTIONS(3926), - [anon_sym_constexpr] = ACTIONS(3926), - [anon_sym_volatile] = ACTIONS(3926), - [anon_sym_restrict] = ACTIONS(3926), - [anon_sym___restrict__] = ACTIONS(3926), - [anon_sym__Atomic] = ACTIONS(3926), - [anon_sym__Noreturn] = ACTIONS(3926), - [anon_sym_noreturn] = ACTIONS(3926), - [anon_sym__Nonnull] = ACTIONS(3926), - [anon_sym_mutable] = ACTIONS(3926), - [anon_sym_constinit] = ACTIONS(3926), - [anon_sym_consteval] = ACTIONS(3926), - [anon_sym_alignas] = ACTIONS(3926), - [anon_sym__Alignas] = ACTIONS(3926), - [sym_primitive_type] = ACTIONS(3926), - [anon_sym_enum] = ACTIONS(3926), - [anon_sym_class] = ACTIONS(3926), - [anon_sym_struct] = ACTIONS(3926), - [anon_sym_union] = ACTIONS(3926), - [anon_sym_if] = ACTIONS(3926), - [anon_sym_switch] = ACTIONS(3926), - [anon_sym_case] = ACTIONS(3926), - [anon_sym_default] = ACTIONS(3926), - [anon_sym_while] = ACTIONS(3926), - [anon_sym_do] = ACTIONS(3926), - [anon_sym_for] = ACTIONS(3926), - [anon_sym_return] = ACTIONS(3926), - [anon_sym_break] = ACTIONS(3926), - [anon_sym_continue] = ACTIONS(3926), - [anon_sym_goto] = ACTIONS(3926), - [anon_sym___try] = ACTIONS(3926), - [anon_sym___leave] = ACTIONS(3926), - [anon_sym_not] = ACTIONS(3926), - [anon_sym_compl] = ACTIONS(3926), + [anon_sym_signed] = ACTIONS(3925), + [anon_sym_unsigned] = ACTIONS(3925), + [anon_sym_long] = ACTIONS(3925), + [anon_sym_short] = ACTIONS(3925), + [anon_sym_LBRACK] = ACTIONS(3925), + [anon_sym_static] = ACTIONS(3925), + [anon_sym_register] = ACTIONS(3925), + [anon_sym_inline] = ACTIONS(3925), + [anon_sym___inline] = ACTIONS(3925), + [anon_sym___inline__] = ACTIONS(3925), + [anon_sym___forceinline] = ACTIONS(3925), + [anon_sym_thread_local] = ACTIONS(3925), + [anon_sym___thread] = ACTIONS(3925), + [anon_sym_const] = ACTIONS(3925), + [anon_sym_constexpr] = ACTIONS(3925), + [anon_sym_volatile] = ACTIONS(3925), + [anon_sym_restrict] = ACTIONS(3925), + [anon_sym___restrict__] = ACTIONS(3925), + [anon_sym__Atomic] = ACTIONS(3925), + [anon_sym__Noreturn] = ACTIONS(3925), + [anon_sym_noreturn] = ACTIONS(3925), + [anon_sym__Nonnull] = ACTIONS(3925), + [anon_sym_mutable] = ACTIONS(3925), + [anon_sym_constinit] = ACTIONS(3925), + [anon_sym_consteval] = ACTIONS(3925), + [anon_sym_alignas] = ACTIONS(3925), + [anon_sym__Alignas] = ACTIONS(3925), + [sym_primitive_type] = ACTIONS(3925), + [anon_sym_enum] = ACTIONS(3925), + [anon_sym_class] = ACTIONS(3925), + [anon_sym_struct] = ACTIONS(3925), + [anon_sym_union] = ACTIONS(3925), + [anon_sym_if] = ACTIONS(3925), + [anon_sym_switch] = ACTIONS(3925), + [anon_sym_case] = ACTIONS(3925), + [anon_sym_default] = ACTIONS(3925), + [anon_sym_while] = ACTIONS(3925), + [anon_sym_do] = ACTIONS(3925), + [anon_sym_for] = ACTIONS(3925), + [anon_sym_return] = ACTIONS(3925), + [anon_sym_break] = ACTIONS(3925), + [anon_sym_continue] = ACTIONS(3925), + [anon_sym_goto] = ACTIONS(3925), + [anon_sym___try] = ACTIONS(3925), + [anon_sym___leave] = ACTIONS(3925), + [anon_sym_not] = ACTIONS(3925), + [anon_sym_compl] = ACTIONS(3925), [anon_sym_DASH_DASH] = ACTIONS(3928), [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3926), - [anon_sym___alignof__] = ACTIONS(3926), - [anon_sym___alignof] = ACTIONS(3926), - [anon_sym__alignof] = ACTIONS(3926), - [anon_sym_alignof] = ACTIONS(3926), - [anon_sym__Alignof] = ACTIONS(3926), - [anon_sym_offsetof] = ACTIONS(3926), - [anon_sym__Generic] = ACTIONS(3926), - [anon_sym_typename] = ACTIONS(3926), - [anon_sym_asm] = ACTIONS(3926), - [anon_sym___asm__] = ACTIONS(3926), - [anon_sym___asm] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3925), + [anon_sym___alignof__] = ACTIONS(3925), + [anon_sym___alignof] = ACTIONS(3925), + [anon_sym__alignof] = ACTIONS(3925), + [anon_sym_alignof] = ACTIONS(3925), + [anon_sym__Alignof] = ACTIONS(3925), + [anon_sym_offsetof] = ACTIONS(3925), + [anon_sym__Generic] = ACTIONS(3925), + [anon_sym_typename] = ACTIONS(3925), + [anon_sym_asm] = ACTIONS(3925), + [anon_sym___asm__] = ACTIONS(3925), + [anon_sym___asm] = ACTIONS(3925), [sym_number_literal] = ACTIONS(3928), [anon_sym_L_SQUOTE] = ACTIONS(3928), [anon_sym_u_SQUOTE] = ACTIONS(3928), @@ -113841,747 +117806,765 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(3928), [anon_sym_u8_DQUOTE] = ACTIONS(3928), [anon_sym_DQUOTE] = ACTIONS(3928), - [sym_true] = ACTIONS(3926), - [sym_false] = ACTIONS(3926), - [anon_sym_NULL] = ACTIONS(3926), - [anon_sym_nullptr] = ACTIONS(3926), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3926), - [anon_sym_decltype] = ACTIONS(3926), - [anon_sym_explicit] = ACTIONS(3926), - [anon_sym_template] = ACTIONS(3926), - [anon_sym_operator] = ACTIONS(3926), - [anon_sym_try] = ACTIONS(3926), - [anon_sym_delete] = ACTIONS(3926), - [anon_sym_throw] = ACTIONS(3926), - [anon_sym_namespace] = ACTIONS(3926), - [anon_sym_static_assert] = ACTIONS(3926), - [anon_sym_concept] = ACTIONS(3926), - [anon_sym_co_return] = ACTIONS(3926), - [anon_sym_co_yield] = ACTIONS(3926), + [sym_true] = ACTIONS(3925), + [sym_false] = ACTIONS(3925), + [anon_sym_NULL] = ACTIONS(3925), + [anon_sym_nullptr] = ACTIONS(3925), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3925), + [anon_sym_decltype] = ACTIONS(3925), + [anon_sym_explicit] = ACTIONS(3925), + [anon_sym_export] = ACTIONS(3925), + [anon_sym_module] = ACTIONS(3925), + [anon_sym_import] = ACTIONS(3925), + [anon_sym_template] = ACTIONS(3925), + [anon_sym_operator] = ACTIONS(3925), + [anon_sym_try] = ACTIONS(3925), + [anon_sym_delete] = ACTIONS(3925), + [anon_sym_throw] = ACTIONS(3925), + [anon_sym_namespace] = ACTIONS(3925), + [anon_sym_static_assert] = ACTIONS(3925), + [anon_sym_concept] = ACTIONS(3925), + [anon_sym_co_return] = ACTIONS(3925), + [anon_sym_co_yield] = ACTIONS(3925), [anon_sym_R_DQUOTE] = ACTIONS(3928), [anon_sym_LR_DQUOTE] = ACTIONS(3928), [anon_sym_uR_DQUOTE] = ACTIONS(3928), [anon_sym_UR_DQUOTE] = ACTIONS(3928), [anon_sym_u8R_DQUOTE] = ACTIONS(3928), - [anon_sym_co_await] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_requires] = ACTIONS(3926), + [anon_sym_co_await] = ACTIONS(3925), + [anon_sym_new] = ACTIONS(3925), + [anon_sym_requires] = ACTIONS(3925), [anon_sym_CARET_CARET] = ACTIONS(3928), [anon_sym_LBRACK_COLON] = ACTIONS(3928), - [sym_this] = ACTIONS(3926), + [sym_this] = ACTIONS(3925), }, - [STATE(416)] = { - [sym_identifier] = ACTIONS(3930), - [aux_sym_preproc_include_token1] = ACTIONS(3930), - [aux_sym_preproc_def_token1] = ACTIONS(3930), - [aux_sym_preproc_if_token1] = ACTIONS(3930), - [aux_sym_preproc_if_token2] = ACTIONS(3930), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3930), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3930), - [aux_sym_preproc_else_token1] = ACTIONS(3930), - [aux_sym_preproc_elif_token1] = ACTIONS(3930), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3930), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3930), - [sym_preproc_directive] = ACTIONS(3930), - [anon_sym_LPAREN2] = ACTIONS(3932), - [anon_sym_BANG] = ACTIONS(3932), - [anon_sym_TILDE] = ACTIONS(3932), - [anon_sym_DASH] = ACTIONS(3930), - [anon_sym_PLUS] = ACTIONS(3930), - [anon_sym_STAR] = ACTIONS(3932), - [anon_sym_AMP_AMP] = ACTIONS(3932), - [anon_sym_AMP] = ACTIONS(3930), - [anon_sym_SEMI] = ACTIONS(3932), - [anon_sym___extension__] = ACTIONS(3930), - [anon_sym_typedef] = ACTIONS(3930), - [anon_sym_virtual] = ACTIONS(3930), - [anon_sym_extern] = ACTIONS(3930), - [anon_sym___attribute__] = ACTIONS(3930), - [anon_sym___attribute] = ACTIONS(3930), - [anon_sym_using] = ACTIONS(3930), - [anon_sym_COLON_COLON] = ACTIONS(3932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3932), - [anon_sym___declspec] = ACTIONS(3930), - [anon_sym___based] = ACTIONS(3930), - [anon_sym___cdecl] = ACTIONS(3930), - [anon_sym___clrcall] = ACTIONS(3930), - [anon_sym___stdcall] = ACTIONS(3930), - [anon_sym___fastcall] = ACTIONS(3930), - [anon_sym___thiscall] = ACTIONS(3930), - [anon_sym___vectorcall] = ACTIONS(3930), - [anon_sym_LBRACE] = ACTIONS(3932), - [anon_sym_signed] = ACTIONS(3930), - [anon_sym_unsigned] = ACTIONS(3930), - [anon_sym_long] = ACTIONS(3930), - [anon_sym_short] = ACTIONS(3930), - [anon_sym_LBRACK] = ACTIONS(3930), - [anon_sym_static] = ACTIONS(3930), - [anon_sym_register] = ACTIONS(3930), - [anon_sym_inline] = ACTIONS(3930), - [anon_sym___inline] = ACTIONS(3930), - [anon_sym___inline__] = ACTIONS(3930), - [anon_sym___forceinline] = ACTIONS(3930), - [anon_sym_thread_local] = ACTIONS(3930), - [anon_sym___thread] = ACTIONS(3930), - [anon_sym_const] = ACTIONS(3930), - [anon_sym_constexpr] = ACTIONS(3930), - [anon_sym_volatile] = ACTIONS(3930), - [anon_sym_restrict] = ACTIONS(3930), - [anon_sym___restrict__] = ACTIONS(3930), - [anon_sym__Atomic] = ACTIONS(3930), - [anon_sym__Noreturn] = ACTIONS(3930), - [anon_sym_noreturn] = ACTIONS(3930), - [anon_sym__Nonnull] = ACTIONS(3930), - [anon_sym_mutable] = ACTIONS(3930), - [anon_sym_constinit] = ACTIONS(3930), - [anon_sym_consteval] = ACTIONS(3930), - [anon_sym_alignas] = ACTIONS(3930), - [anon_sym__Alignas] = ACTIONS(3930), - [sym_primitive_type] = ACTIONS(3930), - [anon_sym_enum] = ACTIONS(3930), - [anon_sym_class] = ACTIONS(3930), - [anon_sym_struct] = ACTIONS(3930), - [anon_sym_union] = ACTIONS(3930), - [anon_sym_if] = ACTIONS(3930), - [anon_sym_switch] = ACTIONS(3930), - [anon_sym_case] = ACTIONS(3930), - [anon_sym_default] = ACTIONS(3930), - [anon_sym_while] = ACTIONS(3930), - [anon_sym_do] = ACTIONS(3930), - [anon_sym_for] = ACTIONS(3930), - [anon_sym_return] = ACTIONS(3930), - [anon_sym_break] = ACTIONS(3930), - [anon_sym_continue] = ACTIONS(3930), - [anon_sym_goto] = ACTIONS(3930), - [anon_sym___try] = ACTIONS(3930), - [anon_sym___leave] = ACTIONS(3930), - [anon_sym_not] = ACTIONS(3930), - [anon_sym_compl] = ACTIONS(3930), - [anon_sym_DASH_DASH] = ACTIONS(3932), - [anon_sym_PLUS_PLUS] = ACTIONS(3932), - [anon_sym_sizeof] = ACTIONS(3930), - [anon_sym___alignof__] = ACTIONS(3930), - [anon_sym___alignof] = ACTIONS(3930), - [anon_sym__alignof] = ACTIONS(3930), - [anon_sym_alignof] = ACTIONS(3930), - [anon_sym__Alignof] = ACTIONS(3930), - [anon_sym_offsetof] = ACTIONS(3930), - [anon_sym__Generic] = ACTIONS(3930), - [anon_sym_typename] = ACTIONS(3930), - [anon_sym_asm] = ACTIONS(3930), - [anon_sym___asm__] = ACTIONS(3930), - [anon_sym___asm] = ACTIONS(3930), - [sym_number_literal] = ACTIONS(3932), - [anon_sym_L_SQUOTE] = ACTIONS(3932), - [anon_sym_u_SQUOTE] = ACTIONS(3932), - [anon_sym_U_SQUOTE] = ACTIONS(3932), - [anon_sym_u8_SQUOTE] = ACTIONS(3932), - [anon_sym_SQUOTE] = ACTIONS(3932), - [anon_sym_L_DQUOTE] = ACTIONS(3932), - [anon_sym_u_DQUOTE] = ACTIONS(3932), - [anon_sym_U_DQUOTE] = ACTIONS(3932), - [anon_sym_u8_DQUOTE] = ACTIONS(3932), - [anon_sym_DQUOTE] = ACTIONS(3932), - [sym_true] = ACTIONS(3930), - [sym_false] = ACTIONS(3930), - [anon_sym_NULL] = ACTIONS(3930), - [anon_sym_nullptr] = ACTIONS(3930), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3930), - [anon_sym_decltype] = ACTIONS(3930), - [anon_sym_explicit] = ACTIONS(3930), - [anon_sym_template] = ACTIONS(3930), - [anon_sym_operator] = ACTIONS(3930), - [anon_sym_try] = ACTIONS(3930), - [anon_sym_delete] = ACTIONS(3930), - [anon_sym_throw] = ACTIONS(3930), - [anon_sym_namespace] = ACTIONS(3930), - [anon_sym_static_assert] = ACTIONS(3930), - [anon_sym_concept] = ACTIONS(3930), - [anon_sym_co_return] = ACTIONS(3930), - [anon_sym_co_yield] = ACTIONS(3930), - [anon_sym_R_DQUOTE] = ACTIONS(3932), - [anon_sym_LR_DQUOTE] = ACTIONS(3932), - [anon_sym_uR_DQUOTE] = ACTIONS(3932), - [anon_sym_UR_DQUOTE] = ACTIONS(3932), - [anon_sym_u8R_DQUOTE] = ACTIONS(3932), - [anon_sym_co_await] = ACTIONS(3930), - [anon_sym_new] = ACTIONS(3930), - [anon_sym_requires] = ACTIONS(3930), - [anon_sym_CARET_CARET] = ACTIONS(3932), - [anon_sym_LBRACK_COLON] = ACTIONS(3932), - [sym_this] = ACTIONS(3930), + [STATE(406)] = { + [sym_identifier] = ACTIONS(3931), + [aux_sym_preproc_include_token1] = ACTIONS(3931), + [aux_sym_preproc_def_token1] = ACTIONS(3931), + [aux_sym_preproc_if_token1] = ACTIONS(3931), + [aux_sym_preproc_if_token2] = ACTIONS(3931), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3931), + [aux_sym_preproc_else_token1] = ACTIONS(3931), + [aux_sym_preproc_elif_token1] = ACTIONS(3931), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3931), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3931), + [sym_preproc_directive] = ACTIONS(3931), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_TILDE] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym_SEMI] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(3931), + [anon_sym_typedef] = ACTIONS(3931), + [anon_sym_virtual] = ACTIONS(3931), + [anon_sym_extern] = ACTIONS(3931), + [anon_sym___attribute__] = ACTIONS(3931), + [anon_sym___attribute] = ACTIONS(3931), + [anon_sym_using] = ACTIONS(3931), + [anon_sym_COLON_COLON] = ACTIONS(3933), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3933), + [anon_sym___declspec] = ACTIONS(3931), + [anon_sym___based] = ACTIONS(3931), + [anon_sym___cdecl] = ACTIONS(3931), + [anon_sym___clrcall] = ACTIONS(3931), + [anon_sym___stdcall] = ACTIONS(3931), + [anon_sym___fastcall] = ACTIONS(3931), + [anon_sym___thiscall] = ACTIONS(3931), + [anon_sym___vectorcall] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3933), + [anon_sym_signed] = ACTIONS(3931), + [anon_sym_unsigned] = ACTIONS(3931), + [anon_sym_long] = ACTIONS(3931), + [anon_sym_short] = ACTIONS(3931), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_static] = ACTIONS(3931), + [anon_sym_register] = ACTIONS(3931), + [anon_sym_inline] = ACTIONS(3931), + [anon_sym___inline] = ACTIONS(3931), + [anon_sym___inline__] = ACTIONS(3931), + [anon_sym___forceinline] = ACTIONS(3931), + [anon_sym_thread_local] = ACTIONS(3931), + [anon_sym___thread] = ACTIONS(3931), + [anon_sym_const] = ACTIONS(3931), + [anon_sym_constexpr] = ACTIONS(3931), + [anon_sym_volatile] = ACTIONS(3931), + [anon_sym_restrict] = ACTIONS(3931), + [anon_sym___restrict__] = ACTIONS(3931), + [anon_sym__Atomic] = ACTIONS(3931), + [anon_sym__Noreturn] = ACTIONS(3931), + [anon_sym_noreturn] = ACTIONS(3931), + [anon_sym__Nonnull] = ACTIONS(3931), + [anon_sym_mutable] = ACTIONS(3931), + [anon_sym_constinit] = ACTIONS(3931), + [anon_sym_consteval] = ACTIONS(3931), + [anon_sym_alignas] = ACTIONS(3931), + [anon_sym__Alignas] = ACTIONS(3931), + [sym_primitive_type] = ACTIONS(3931), + [anon_sym_enum] = ACTIONS(3931), + [anon_sym_class] = ACTIONS(3931), + [anon_sym_struct] = ACTIONS(3931), + [anon_sym_union] = ACTIONS(3931), + [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___try] = ACTIONS(3931), + [anon_sym___leave] = ACTIONS(3931), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3933), + [anon_sym_sizeof] = ACTIONS(3931), + [anon_sym___alignof__] = ACTIONS(3931), + [anon_sym___alignof] = ACTIONS(3931), + [anon_sym__alignof] = ACTIONS(3931), + [anon_sym_alignof] = ACTIONS(3931), + [anon_sym__Alignof] = ACTIONS(3931), + [anon_sym_offsetof] = ACTIONS(3931), + [anon_sym__Generic] = ACTIONS(3931), + [anon_sym_typename] = ACTIONS(3931), + [anon_sym_asm] = ACTIONS(3931), + [anon_sym___asm__] = ACTIONS(3931), + [anon_sym___asm] = ACTIONS(3931), + [sym_number_literal] = ACTIONS(3933), + [anon_sym_L_SQUOTE] = ACTIONS(3933), + [anon_sym_u_SQUOTE] = ACTIONS(3933), + [anon_sym_U_SQUOTE] = ACTIONS(3933), + [anon_sym_u8_SQUOTE] = ACTIONS(3933), + [anon_sym_SQUOTE] = ACTIONS(3933), + [anon_sym_L_DQUOTE] = ACTIONS(3933), + [anon_sym_u_DQUOTE] = ACTIONS(3933), + [anon_sym_U_DQUOTE] = ACTIONS(3933), + [anon_sym_u8_DQUOTE] = ACTIONS(3933), + [anon_sym_DQUOTE] = ACTIONS(3933), + [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(3931), + [anon_sym_decltype] = ACTIONS(3931), + [anon_sym_explicit] = ACTIONS(3931), + [anon_sym_export] = ACTIONS(3931), + [anon_sym_module] = ACTIONS(3931), + [anon_sym_import] = ACTIONS(3931), + [anon_sym_template] = ACTIONS(3931), + [anon_sym_operator] = ACTIONS(3931), + [anon_sym_try] = ACTIONS(3931), + [anon_sym_delete] = ACTIONS(3931), + [anon_sym_throw] = ACTIONS(3931), + [anon_sym_namespace] = ACTIONS(3931), + [anon_sym_static_assert] = ACTIONS(3931), + [anon_sym_concept] = ACTIONS(3931), + [anon_sym_co_return] = ACTIONS(3931), + [anon_sym_co_yield] = ACTIONS(3931), + [anon_sym_R_DQUOTE] = ACTIONS(3933), + [anon_sym_LR_DQUOTE] = ACTIONS(3933), + [anon_sym_uR_DQUOTE] = ACTIONS(3933), + [anon_sym_UR_DQUOTE] = ACTIONS(3933), + [anon_sym_u8R_DQUOTE] = ACTIONS(3933), + [anon_sym_co_await] = ACTIONS(3931), + [anon_sym_new] = ACTIONS(3931), + [anon_sym_requires] = ACTIONS(3931), + [anon_sym_CARET_CARET] = ACTIONS(3933), + [anon_sym_LBRACK_COLON] = ACTIONS(3933), + [sym_this] = ACTIONS(3931), }, - [STATE(417)] = { - [sym_identifier] = ACTIONS(3934), - [aux_sym_preproc_include_token1] = ACTIONS(3934), - [aux_sym_preproc_def_token1] = ACTIONS(3934), - [aux_sym_preproc_if_token1] = ACTIONS(3934), - [aux_sym_preproc_if_token2] = ACTIONS(3934), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3934), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3934), - [aux_sym_preproc_else_token1] = ACTIONS(3934), - [aux_sym_preproc_elif_token1] = ACTIONS(3934), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3934), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3934), - [sym_preproc_directive] = ACTIONS(3934), - [anon_sym_LPAREN2] = ACTIONS(3936), - [anon_sym_BANG] = ACTIONS(3936), - [anon_sym_TILDE] = ACTIONS(3936), - [anon_sym_DASH] = ACTIONS(3934), - [anon_sym_PLUS] = ACTIONS(3934), - [anon_sym_STAR] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3936), - [anon_sym_AMP] = ACTIONS(3934), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym___extension__] = ACTIONS(3934), - [anon_sym_typedef] = ACTIONS(3934), - [anon_sym_virtual] = ACTIONS(3934), - [anon_sym_extern] = ACTIONS(3934), - [anon_sym___attribute__] = ACTIONS(3934), - [anon_sym___attribute] = ACTIONS(3934), - [anon_sym_using] = ACTIONS(3934), - [anon_sym_COLON_COLON] = ACTIONS(3936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3936), - [anon_sym___declspec] = ACTIONS(3934), - [anon_sym___based] = ACTIONS(3934), - [anon_sym___cdecl] = ACTIONS(3934), - [anon_sym___clrcall] = ACTIONS(3934), - [anon_sym___stdcall] = ACTIONS(3934), - [anon_sym___fastcall] = ACTIONS(3934), - [anon_sym___thiscall] = ACTIONS(3934), - [anon_sym___vectorcall] = ACTIONS(3934), - [anon_sym_LBRACE] = ACTIONS(3936), - [anon_sym_signed] = ACTIONS(3934), - [anon_sym_unsigned] = ACTIONS(3934), - [anon_sym_long] = ACTIONS(3934), - [anon_sym_short] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(3934), - [anon_sym_static] = ACTIONS(3934), - [anon_sym_register] = ACTIONS(3934), - [anon_sym_inline] = ACTIONS(3934), - [anon_sym___inline] = ACTIONS(3934), - [anon_sym___inline__] = ACTIONS(3934), - [anon_sym___forceinline] = ACTIONS(3934), - [anon_sym_thread_local] = ACTIONS(3934), - [anon_sym___thread] = ACTIONS(3934), - [anon_sym_const] = ACTIONS(3934), - [anon_sym_constexpr] = ACTIONS(3934), - [anon_sym_volatile] = ACTIONS(3934), - [anon_sym_restrict] = ACTIONS(3934), - [anon_sym___restrict__] = ACTIONS(3934), - [anon_sym__Atomic] = ACTIONS(3934), - [anon_sym__Noreturn] = ACTIONS(3934), - [anon_sym_noreturn] = ACTIONS(3934), - [anon_sym__Nonnull] = ACTIONS(3934), - [anon_sym_mutable] = ACTIONS(3934), - [anon_sym_constinit] = ACTIONS(3934), - [anon_sym_consteval] = ACTIONS(3934), - [anon_sym_alignas] = ACTIONS(3934), - [anon_sym__Alignas] = ACTIONS(3934), - [sym_primitive_type] = ACTIONS(3934), - [anon_sym_enum] = ACTIONS(3934), - [anon_sym_class] = ACTIONS(3934), - [anon_sym_struct] = ACTIONS(3934), - [anon_sym_union] = ACTIONS(3934), - [anon_sym_if] = ACTIONS(3934), - [anon_sym_switch] = ACTIONS(3934), - [anon_sym_case] = ACTIONS(3934), - [anon_sym_default] = ACTIONS(3934), - [anon_sym_while] = ACTIONS(3934), - [anon_sym_do] = ACTIONS(3934), - [anon_sym_for] = ACTIONS(3934), - [anon_sym_return] = ACTIONS(3934), - [anon_sym_break] = ACTIONS(3934), - [anon_sym_continue] = ACTIONS(3934), - [anon_sym_goto] = ACTIONS(3934), - [anon_sym___try] = ACTIONS(3934), - [anon_sym___leave] = ACTIONS(3934), - [anon_sym_not] = ACTIONS(3934), - [anon_sym_compl] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(3936), - [anon_sym_PLUS_PLUS] = ACTIONS(3936), - [anon_sym_sizeof] = ACTIONS(3934), - [anon_sym___alignof__] = ACTIONS(3934), - [anon_sym___alignof] = ACTIONS(3934), - [anon_sym__alignof] = ACTIONS(3934), - [anon_sym_alignof] = ACTIONS(3934), - [anon_sym__Alignof] = ACTIONS(3934), - [anon_sym_offsetof] = ACTIONS(3934), - [anon_sym__Generic] = ACTIONS(3934), - [anon_sym_typename] = ACTIONS(3934), - [anon_sym_asm] = ACTIONS(3934), - [anon_sym___asm__] = ACTIONS(3934), - [anon_sym___asm] = ACTIONS(3934), - [sym_number_literal] = ACTIONS(3936), - [anon_sym_L_SQUOTE] = ACTIONS(3936), - [anon_sym_u_SQUOTE] = ACTIONS(3936), - [anon_sym_U_SQUOTE] = ACTIONS(3936), - [anon_sym_u8_SQUOTE] = ACTIONS(3936), - [anon_sym_SQUOTE] = ACTIONS(3936), - [anon_sym_L_DQUOTE] = ACTIONS(3936), - [anon_sym_u_DQUOTE] = ACTIONS(3936), - [anon_sym_U_DQUOTE] = ACTIONS(3936), - [anon_sym_u8_DQUOTE] = ACTIONS(3936), - [anon_sym_DQUOTE] = ACTIONS(3936), - [sym_true] = ACTIONS(3934), - [sym_false] = ACTIONS(3934), - [anon_sym_NULL] = ACTIONS(3934), - [anon_sym_nullptr] = ACTIONS(3934), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3934), - [anon_sym_decltype] = ACTIONS(3934), - [anon_sym_explicit] = ACTIONS(3934), - [anon_sym_template] = ACTIONS(3934), - [anon_sym_operator] = ACTIONS(3934), - [anon_sym_try] = ACTIONS(3934), - [anon_sym_delete] = ACTIONS(3934), - [anon_sym_throw] = ACTIONS(3934), - [anon_sym_namespace] = ACTIONS(3934), - [anon_sym_static_assert] = ACTIONS(3934), - [anon_sym_concept] = ACTIONS(3934), - [anon_sym_co_return] = ACTIONS(3934), - [anon_sym_co_yield] = ACTIONS(3934), - [anon_sym_R_DQUOTE] = ACTIONS(3936), - [anon_sym_LR_DQUOTE] = ACTIONS(3936), - [anon_sym_uR_DQUOTE] = ACTIONS(3936), - [anon_sym_UR_DQUOTE] = ACTIONS(3936), - [anon_sym_u8R_DQUOTE] = ACTIONS(3936), - [anon_sym_co_await] = ACTIONS(3934), - [anon_sym_new] = ACTIONS(3934), - [anon_sym_requires] = ACTIONS(3934), - [anon_sym_CARET_CARET] = ACTIONS(3936), - [anon_sym_LBRACK_COLON] = ACTIONS(3936), - [sym_this] = ACTIONS(3934), + [STATE(407)] = { + [sym_identifier] = ACTIONS(3935), + [aux_sym_preproc_include_token1] = ACTIONS(3935), + [aux_sym_preproc_def_token1] = ACTIONS(3935), + [aux_sym_preproc_if_token1] = ACTIONS(3935), + [aux_sym_preproc_if_token2] = ACTIONS(3935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3935), + [aux_sym_preproc_else_token1] = ACTIONS(3935), + [aux_sym_preproc_elif_token1] = ACTIONS(3935), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3935), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3935), + [sym_preproc_directive] = ACTIONS(3935), + [anon_sym_LPAREN2] = ACTIONS(3937), + [anon_sym_BANG] = ACTIONS(3937), + [anon_sym_TILDE] = ACTIONS(3937), + [anon_sym_DASH] = ACTIONS(3935), + [anon_sym_PLUS] = ACTIONS(3935), + [anon_sym_STAR] = ACTIONS(3937), + [anon_sym_AMP_AMP] = ACTIONS(3937), + [anon_sym_AMP] = ACTIONS(3935), + [anon_sym_SEMI] = ACTIONS(3937), + [anon_sym___extension__] = ACTIONS(3935), + [anon_sym_typedef] = ACTIONS(3935), + [anon_sym_virtual] = ACTIONS(3935), + [anon_sym_extern] = ACTIONS(3935), + [anon_sym___attribute__] = ACTIONS(3935), + [anon_sym___attribute] = ACTIONS(3935), + [anon_sym_using] = ACTIONS(3935), + [anon_sym_COLON_COLON] = ACTIONS(3937), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3937), + [anon_sym___declspec] = ACTIONS(3935), + [anon_sym___based] = ACTIONS(3935), + [anon_sym___cdecl] = ACTIONS(3935), + [anon_sym___clrcall] = ACTIONS(3935), + [anon_sym___stdcall] = ACTIONS(3935), + [anon_sym___fastcall] = ACTIONS(3935), + [anon_sym___thiscall] = ACTIONS(3935), + [anon_sym___vectorcall] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(3937), + [anon_sym_signed] = ACTIONS(3935), + [anon_sym_unsigned] = ACTIONS(3935), + [anon_sym_long] = ACTIONS(3935), + [anon_sym_short] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3935), + [anon_sym_static] = ACTIONS(3935), + [anon_sym_register] = ACTIONS(3935), + [anon_sym_inline] = ACTIONS(3935), + [anon_sym___inline] = ACTIONS(3935), + [anon_sym___inline__] = ACTIONS(3935), + [anon_sym___forceinline] = ACTIONS(3935), + [anon_sym_thread_local] = ACTIONS(3935), + [anon_sym___thread] = 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__Nonnull] = ACTIONS(3935), + [anon_sym_mutable] = ACTIONS(3935), + [anon_sym_constinit] = ACTIONS(3935), + [anon_sym_consteval] = ACTIONS(3935), + [anon_sym_alignas] = ACTIONS(3935), + [anon_sym__Alignas] = ACTIONS(3935), + [sym_primitive_type] = ACTIONS(3935), + [anon_sym_enum] = ACTIONS(3935), + [anon_sym_class] = ACTIONS(3935), + [anon_sym_struct] = ACTIONS(3935), + [anon_sym_union] = ACTIONS(3935), + [anon_sym_if] = ACTIONS(3935), + [anon_sym_switch] = ACTIONS(3935), + [anon_sym_case] = ACTIONS(3935), + [anon_sym_default] = ACTIONS(3935), + [anon_sym_while] = ACTIONS(3935), + [anon_sym_do] = ACTIONS(3935), + [anon_sym_for] = ACTIONS(3935), + [anon_sym_return] = ACTIONS(3935), + [anon_sym_break] = ACTIONS(3935), + [anon_sym_continue] = ACTIONS(3935), + [anon_sym_goto] = ACTIONS(3935), + [anon_sym___try] = ACTIONS(3935), + [anon_sym___leave] = ACTIONS(3935), + [anon_sym_not] = ACTIONS(3935), + [anon_sym_compl] = ACTIONS(3935), + [anon_sym_DASH_DASH] = ACTIONS(3937), + [anon_sym_PLUS_PLUS] = ACTIONS(3937), + [anon_sym_sizeof] = ACTIONS(3935), + [anon_sym___alignof__] = ACTIONS(3935), + [anon_sym___alignof] = ACTIONS(3935), + [anon_sym__alignof] = ACTIONS(3935), + [anon_sym_alignof] = ACTIONS(3935), + [anon_sym__Alignof] = ACTIONS(3935), + [anon_sym_offsetof] = ACTIONS(3935), + [anon_sym__Generic] = ACTIONS(3935), + [anon_sym_typename] = ACTIONS(3935), + [anon_sym_asm] = ACTIONS(3935), + [anon_sym___asm__] = ACTIONS(3935), + [anon_sym___asm] = ACTIONS(3935), + [sym_number_literal] = ACTIONS(3937), + [anon_sym_L_SQUOTE] = ACTIONS(3937), + [anon_sym_u_SQUOTE] = ACTIONS(3937), + [anon_sym_U_SQUOTE] = ACTIONS(3937), + [anon_sym_u8_SQUOTE] = ACTIONS(3937), + [anon_sym_SQUOTE] = ACTIONS(3937), + [anon_sym_L_DQUOTE] = ACTIONS(3937), + [anon_sym_u_DQUOTE] = ACTIONS(3937), + [anon_sym_U_DQUOTE] = ACTIONS(3937), + [anon_sym_u8_DQUOTE] = ACTIONS(3937), + [anon_sym_DQUOTE] = ACTIONS(3937), + [sym_true] = ACTIONS(3935), + [sym_false] = ACTIONS(3935), + [anon_sym_NULL] = ACTIONS(3935), + [anon_sym_nullptr] = ACTIONS(3935), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3935), + [anon_sym_decltype] = ACTIONS(3935), + [anon_sym_explicit] = ACTIONS(3935), + [anon_sym_export] = ACTIONS(3935), + [anon_sym_module] = ACTIONS(3935), + [anon_sym_import] = ACTIONS(3935), + [anon_sym_template] = ACTIONS(3935), + [anon_sym_operator] = ACTIONS(3935), + [anon_sym_try] = ACTIONS(3935), + [anon_sym_delete] = ACTIONS(3935), + [anon_sym_throw] = ACTIONS(3935), + [anon_sym_namespace] = ACTIONS(3935), + [anon_sym_static_assert] = ACTIONS(3935), + [anon_sym_concept] = ACTIONS(3935), + [anon_sym_co_return] = ACTIONS(3935), + [anon_sym_co_yield] = ACTIONS(3935), + [anon_sym_R_DQUOTE] = ACTIONS(3937), + [anon_sym_LR_DQUOTE] = ACTIONS(3937), + [anon_sym_uR_DQUOTE] = ACTIONS(3937), + [anon_sym_UR_DQUOTE] = ACTIONS(3937), + [anon_sym_u8R_DQUOTE] = ACTIONS(3937), + [anon_sym_co_await] = ACTIONS(3935), + [anon_sym_new] = ACTIONS(3935), + [anon_sym_requires] = ACTIONS(3935), + [anon_sym_CARET_CARET] = ACTIONS(3937), + [anon_sym_LBRACK_COLON] = ACTIONS(3937), + [sym_this] = ACTIONS(3935), }, - [STATE(418)] = { - [sym_identifier] = ACTIONS(3938), - [aux_sym_preproc_include_token1] = ACTIONS(3938), - [aux_sym_preproc_def_token1] = ACTIONS(3938), - [aux_sym_preproc_if_token1] = ACTIONS(3938), - [aux_sym_preproc_if_token2] = ACTIONS(3938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3938), - [aux_sym_preproc_else_token1] = ACTIONS(3938), - [aux_sym_preproc_elif_token1] = ACTIONS(3938), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3938), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3938), - [sym_preproc_directive] = ACTIONS(3938), - [anon_sym_LPAREN2] = ACTIONS(3940), - [anon_sym_BANG] = ACTIONS(3940), - [anon_sym_TILDE] = ACTIONS(3940), - [anon_sym_DASH] = ACTIONS(3938), - [anon_sym_PLUS] = ACTIONS(3938), - [anon_sym_STAR] = ACTIONS(3940), - [anon_sym_AMP_AMP] = ACTIONS(3940), - [anon_sym_AMP] = ACTIONS(3938), - [anon_sym_SEMI] = ACTIONS(3940), - [anon_sym___extension__] = ACTIONS(3938), - [anon_sym_typedef] = ACTIONS(3938), - [anon_sym_virtual] = ACTIONS(3938), - [anon_sym_extern] = ACTIONS(3938), - [anon_sym___attribute__] = ACTIONS(3938), - [anon_sym___attribute] = ACTIONS(3938), - [anon_sym_using] = ACTIONS(3938), - [anon_sym_COLON_COLON] = ACTIONS(3940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3940), - [anon_sym___declspec] = ACTIONS(3938), - [anon_sym___based] = ACTIONS(3938), - [anon_sym___cdecl] = ACTIONS(3938), - [anon_sym___clrcall] = ACTIONS(3938), - [anon_sym___stdcall] = ACTIONS(3938), - [anon_sym___fastcall] = ACTIONS(3938), - [anon_sym___thiscall] = ACTIONS(3938), - [anon_sym___vectorcall] = ACTIONS(3938), - [anon_sym_LBRACE] = ACTIONS(3940), - [anon_sym_signed] = ACTIONS(3938), - [anon_sym_unsigned] = ACTIONS(3938), - [anon_sym_long] = ACTIONS(3938), - [anon_sym_short] = ACTIONS(3938), - [anon_sym_LBRACK] = ACTIONS(3938), - [anon_sym_static] = ACTIONS(3938), - [anon_sym_register] = ACTIONS(3938), - [anon_sym_inline] = ACTIONS(3938), - [anon_sym___inline] = ACTIONS(3938), - [anon_sym___inline__] = ACTIONS(3938), - [anon_sym___forceinline] = ACTIONS(3938), - [anon_sym_thread_local] = ACTIONS(3938), - [anon_sym___thread] = ACTIONS(3938), - [anon_sym_const] = ACTIONS(3938), - [anon_sym_constexpr] = ACTIONS(3938), - [anon_sym_volatile] = ACTIONS(3938), - [anon_sym_restrict] = ACTIONS(3938), - [anon_sym___restrict__] = ACTIONS(3938), - [anon_sym__Atomic] = ACTIONS(3938), - [anon_sym__Noreturn] = ACTIONS(3938), - [anon_sym_noreturn] = ACTIONS(3938), - [anon_sym__Nonnull] = ACTIONS(3938), - [anon_sym_mutable] = ACTIONS(3938), - [anon_sym_constinit] = ACTIONS(3938), - [anon_sym_consteval] = ACTIONS(3938), - [anon_sym_alignas] = ACTIONS(3938), - [anon_sym__Alignas] = ACTIONS(3938), - [sym_primitive_type] = ACTIONS(3938), - [anon_sym_enum] = ACTIONS(3938), - [anon_sym_class] = ACTIONS(3938), - [anon_sym_struct] = ACTIONS(3938), - [anon_sym_union] = ACTIONS(3938), - [anon_sym_if] = ACTIONS(3938), - [anon_sym_switch] = ACTIONS(3938), - [anon_sym_case] = ACTIONS(3938), - [anon_sym_default] = ACTIONS(3938), - [anon_sym_while] = ACTIONS(3938), - [anon_sym_do] = ACTIONS(3938), - [anon_sym_for] = ACTIONS(3938), - [anon_sym_return] = ACTIONS(3938), - [anon_sym_break] = ACTIONS(3938), - [anon_sym_continue] = ACTIONS(3938), - [anon_sym_goto] = ACTIONS(3938), - [anon_sym___try] = ACTIONS(3938), - [anon_sym___leave] = ACTIONS(3938), - [anon_sym_not] = ACTIONS(3938), - [anon_sym_compl] = ACTIONS(3938), - [anon_sym_DASH_DASH] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(3940), - [anon_sym_sizeof] = ACTIONS(3938), - [anon_sym___alignof__] = ACTIONS(3938), - [anon_sym___alignof] = ACTIONS(3938), - [anon_sym__alignof] = ACTIONS(3938), - [anon_sym_alignof] = ACTIONS(3938), - [anon_sym__Alignof] = ACTIONS(3938), - [anon_sym_offsetof] = ACTIONS(3938), - [anon_sym__Generic] = ACTIONS(3938), - [anon_sym_typename] = ACTIONS(3938), - [anon_sym_asm] = ACTIONS(3938), - [anon_sym___asm__] = ACTIONS(3938), - [anon_sym___asm] = ACTIONS(3938), - [sym_number_literal] = ACTIONS(3940), - [anon_sym_L_SQUOTE] = ACTIONS(3940), - [anon_sym_u_SQUOTE] = ACTIONS(3940), - [anon_sym_U_SQUOTE] = ACTIONS(3940), - [anon_sym_u8_SQUOTE] = ACTIONS(3940), - [anon_sym_SQUOTE] = ACTIONS(3940), - [anon_sym_L_DQUOTE] = ACTIONS(3940), - [anon_sym_u_DQUOTE] = ACTIONS(3940), - [anon_sym_U_DQUOTE] = ACTIONS(3940), - [anon_sym_u8_DQUOTE] = ACTIONS(3940), - [anon_sym_DQUOTE] = ACTIONS(3940), - [sym_true] = ACTIONS(3938), - [sym_false] = ACTIONS(3938), - [anon_sym_NULL] = ACTIONS(3938), - [anon_sym_nullptr] = ACTIONS(3938), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3938), - [anon_sym_decltype] = ACTIONS(3938), - [anon_sym_explicit] = ACTIONS(3938), - [anon_sym_template] = ACTIONS(3938), - [anon_sym_operator] = ACTIONS(3938), - [anon_sym_try] = ACTIONS(3938), - [anon_sym_delete] = ACTIONS(3938), - [anon_sym_throw] = ACTIONS(3938), - [anon_sym_namespace] = ACTIONS(3938), - [anon_sym_static_assert] = ACTIONS(3938), - [anon_sym_concept] = ACTIONS(3938), - [anon_sym_co_return] = ACTIONS(3938), - [anon_sym_co_yield] = ACTIONS(3938), - [anon_sym_R_DQUOTE] = ACTIONS(3940), - [anon_sym_LR_DQUOTE] = ACTIONS(3940), - [anon_sym_uR_DQUOTE] = ACTIONS(3940), - [anon_sym_UR_DQUOTE] = ACTIONS(3940), - [anon_sym_u8R_DQUOTE] = ACTIONS(3940), - [anon_sym_co_await] = ACTIONS(3938), - [anon_sym_new] = ACTIONS(3938), - [anon_sym_requires] = ACTIONS(3938), - [anon_sym_CARET_CARET] = ACTIONS(3940), - [anon_sym_LBRACK_COLON] = ACTIONS(3940), - [sym_this] = ACTIONS(3938), + [STATE(408)] = { + [sym_identifier] = ACTIONS(3939), + [aux_sym_preproc_include_token1] = ACTIONS(3939), + [aux_sym_preproc_def_token1] = ACTIONS(3939), + [aux_sym_preproc_if_token1] = ACTIONS(3939), + [aux_sym_preproc_if_token2] = ACTIONS(3939), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3939), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3939), + [aux_sym_preproc_else_token1] = ACTIONS(3939), + [aux_sym_preproc_elif_token1] = ACTIONS(3939), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3939), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3939), + [sym_preproc_directive] = ACTIONS(3939), + [anon_sym_LPAREN2] = ACTIONS(3941), + [anon_sym_BANG] = ACTIONS(3941), + [anon_sym_TILDE] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3939), + [anon_sym_PLUS] = ACTIONS(3939), + [anon_sym_STAR] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3939), + [anon_sym_SEMI] = ACTIONS(3941), + [anon_sym___extension__] = ACTIONS(3939), + [anon_sym_typedef] = ACTIONS(3939), + [anon_sym_virtual] = ACTIONS(3939), + [anon_sym_extern] = ACTIONS(3939), + [anon_sym___attribute__] = ACTIONS(3939), + [anon_sym___attribute] = ACTIONS(3939), + [anon_sym_using] = ACTIONS(3939), + [anon_sym_COLON_COLON] = ACTIONS(3941), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3941), + [anon_sym___declspec] = ACTIONS(3939), + [anon_sym___based] = ACTIONS(3939), + [anon_sym___cdecl] = ACTIONS(3939), + [anon_sym___clrcall] = ACTIONS(3939), + [anon_sym___stdcall] = ACTIONS(3939), + [anon_sym___fastcall] = ACTIONS(3939), + [anon_sym___thiscall] = ACTIONS(3939), + [anon_sym___vectorcall] = ACTIONS(3939), + [anon_sym_LBRACE] = ACTIONS(3941), + [anon_sym_signed] = ACTIONS(3939), + [anon_sym_unsigned] = ACTIONS(3939), + [anon_sym_long] = ACTIONS(3939), + [anon_sym_short] = ACTIONS(3939), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_static] = ACTIONS(3939), + [anon_sym_register] = ACTIONS(3939), + [anon_sym_inline] = ACTIONS(3939), + [anon_sym___inline] = ACTIONS(3939), + [anon_sym___inline__] = ACTIONS(3939), + [anon_sym___forceinline] = ACTIONS(3939), + [anon_sym_thread_local] = ACTIONS(3939), + [anon_sym___thread] = ACTIONS(3939), + [anon_sym_const] = ACTIONS(3939), + [anon_sym_constexpr] = ACTIONS(3939), + [anon_sym_volatile] = ACTIONS(3939), + [anon_sym_restrict] = ACTIONS(3939), + [anon_sym___restrict__] = ACTIONS(3939), + [anon_sym__Atomic] = ACTIONS(3939), + [anon_sym__Noreturn] = ACTIONS(3939), + [anon_sym_noreturn] = ACTIONS(3939), + [anon_sym__Nonnull] = ACTIONS(3939), + [anon_sym_mutable] = ACTIONS(3939), + [anon_sym_constinit] = ACTIONS(3939), + [anon_sym_consteval] = ACTIONS(3939), + [anon_sym_alignas] = ACTIONS(3939), + [anon_sym__Alignas] = ACTIONS(3939), + [sym_primitive_type] = ACTIONS(3939), + [anon_sym_enum] = ACTIONS(3939), + [anon_sym_class] = ACTIONS(3939), + [anon_sym_struct] = ACTIONS(3939), + [anon_sym_union] = ACTIONS(3939), + [anon_sym_if] = ACTIONS(3939), + [anon_sym_switch] = ACTIONS(3939), + [anon_sym_case] = ACTIONS(3939), + [anon_sym_default] = ACTIONS(3939), + [anon_sym_while] = ACTIONS(3939), + [anon_sym_do] = ACTIONS(3939), + [anon_sym_for] = ACTIONS(3939), + [anon_sym_return] = ACTIONS(3939), + [anon_sym_break] = ACTIONS(3939), + [anon_sym_continue] = ACTIONS(3939), + [anon_sym_goto] = ACTIONS(3939), + [anon_sym___try] = ACTIONS(3939), + [anon_sym___leave] = ACTIONS(3939), + [anon_sym_not] = ACTIONS(3939), + [anon_sym_compl] = ACTIONS(3939), + [anon_sym_DASH_DASH] = ACTIONS(3941), + [anon_sym_PLUS_PLUS] = ACTIONS(3941), + [anon_sym_sizeof] = ACTIONS(3939), + [anon_sym___alignof__] = ACTIONS(3939), + [anon_sym___alignof] = ACTIONS(3939), + [anon_sym__alignof] = ACTIONS(3939), + [anon_sym_alignof] = ACTIONS(3939), + [anon_sym__Alignof] = ACTIONS(3939), + [anon_sym_offsetof] = ACTIONS(3939), + [anon_sym__Generic] = ACTIONS(3939), + [anon_sym_typename] = ACTIONS(3939), + [anon_sym_asm] = ACTIONS(3939), + [anon_sym___asm__] = ACTIONS(3939), + [anon_sym___asm] = ACTIONS(3939), + [sym_number_literal] = ACTIONS(3941), + [anon_sym_L_SQUOTE] = ACTIONS(3941), + [anon_sym_u_SQUOTE] = ACTIONS(3941), + [anon_sym_U_SQUOTE] = ACTIONS(3941), + [anon_sym_u8_SQUOTE] = ACTIONS(3941), + [anon_sym_SQUOTE] = ACTIONS(3941), + [anon_sym_L_DQUOTE] = ACTIONS(3941), + [anon_sym_u_DQUOTE] = ACTIONS(3941), + [anon_sym_U_DQUOTE] = ACTIONS(3941), + [anon_sym_u8_DQUOTE] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [sym_true] = ACTIONS(3939), + [sym_false] = ACTIONS(3939), + [anon_sym_NULL] = ACTIONS(3939), + [anon_sym_nullptr] = ACTIONS(3939), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3939), + [anon_sym_decltype] = ACTIONS(3939), + [anon_sym_explicit] = ACTIONS(3939), + [anon_sym_export] = ACTIONS(3939), + [anon_sym_module] = ACTIONS(3939), + [anon_sym_import] = ACTIONS(3939), + [anon_sym_template] = ACTIONS(3939), + [anon_sym_operator] = ACTIONS(3939), + [anon_sym_try] = ACTIONS(3939), + [anon_sym_delete] = ACTIONS(3939), + [anon_sym_throw] = ACTIONS(3939), + [anon_sym_namespace] = ACTIONS(3939), + [anon_sym_static_assert] = ACTIONS(3939), + [anon_sym_concept] = ACTIONS(3939), + [anon_sym_co_return] = ACTIONS(3939), + [anon_sym_co_yield] = ACTIONS(3939), + [anon_sym_R_DQUOTE] = ACTIONS(3941), + [anon_sym_LR_DQUOTE] = ACTIONS(3941), + [anon_sym_uR_DQUOTE] = ACTIONS(3941), + [anon_sym_UR_DQUOTE] = ACTIONS(3941), + [anon_sym_u8R_DQUOTE] = ACTIONS(3941), + [anon_sym_co_await] = ACTIONS(3939), + [anon_sym_new] = ACTIONS(3939), + [anon_sym_requires] = ACTIONS(3939), + [anon_sym_CARET_CARET] = ACTIONS(3941), + [anon_sym_LBRACK_COLON] = ACTIONS(3941), + [sym_this] = ACTIONS(3939), }, - [STATE(419)] = { - [sym_identifier] = ACTIONS(3942), - [aux_sym_preproc_include_token1] = ACTIONS(3942), - [aux_sym_preproc_def_token1] = ACTIONS(3942), - [aux_sym_preproc_if_token1] = ACTIONS(3942), - [aux_sym_preproc_if_token2] = ACTIONS(3942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3942), - [aux_sym_preproc_else_token1] = ACTIONS(3942), - [aux_sym_preproc_elif_token1] = ACTIONS(3942), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3942), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3942), - [sym_preproc_directive] = ACTIONS(3942), - [anon_sym_LPAREN2] = ACTIONS(3944), - [anon_sym_BANG] = ACTIONS(3944), - [anon_sym_TILDE] = ACTIONS(3944), - [anon_sym_DASH] = ACTIONS(3942), - [anon_sym_PLUS] = ACTIONS(3942), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_AMP_AMP] = ACTIONS(3944), - [anon_sym_AMP] = ACTIONS(3942), - [anon_sym_SEMI] = ACTIONS(3944), - [anon_sym___extension__] = ACTIONS(3942), - [anon_sym_typedef] = ACTIONS(3942), - [anon_sym_virtual] = ACTIONS(3942), - [anon_sym_extern] = ACTIONS(3942), - [anon_sym___attribute__] = ACTIONS(3942), - [anon_sym___attribute] = ACTIONS(3942), - [anon_sym_using] = ACTIONS(3942), - [anon_sym_COLON_COLON] = ACTIONS(3944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3944), - [anon_sym___declspec] = ACTIONS(3942), - [anon_sym___based] = ACTIONS(3942), - [anon_sym___cdecl] = ACTIONS(3942), - [anon_sym___clrcall] = ACTIONS(3942), - [anon_sym___stdcall] = ACTIONS(3942), - [anon_sym___fastcall] = ACTIONS(3942), - [anon_sym___thiscall] = ACTIONS(3942), - [anon_sym___vectorcall] = ACTIONS(3942), - [anon_sym_LBRACE] = ACTIONS(3944), - [anon_sym_signed] = ACTIONS(3942), - [anon_sym_unsigned] = ACTIONS(3942), - [anon_sym_long] = ACTIONS(3942), - [anon_sym_short] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(3942), - [anon_sym_static] = ACTIONS(3942), - [anon_sym_register] = ACTIONS(3942), - [anon_sym_inline] = ACTIONS(3942), - [anon_sym___inline] = ACTIONS(3942), - [anon_sym___inline__] = ACTIONS(3942), - [anon_sym___forceinline] = ACTIONS(3942), - [anon_sym_thread_local] = ACTIONS(3942), - [anon_sym___thread] = ACTIONS(3942), - [anon_sym_const] = ACTIONS(3942), - [anon_sym_constexpr] = ACTIONS(3942), - [anon_sym_volatile] = ACTIONS(3942), - [anon_sym_restrict] = ACTIONS(3942), - [anon_sym___restrict__] = ACTIONS(3942), - [anon_sym__Atomic] = ACTIONS(3942), - [anon_sym__Noreturn] = ACTIONS(3942), - [anon_sym_noreturn] = ACTIONS(3942), - [anon_sym__Nonnull] = ACTIONS(3942), - [anon_sym_mutable] = ACTIONS(3942), - [anon_sym_constinit] = ACTIONS(3942), - [anon_sym_consteval] = ACTIONS(3942), - [anon_sym_alignas] = ACTIONS(3942), - [anon_sym__Alignas] = ACTIONS(3942), - [sym_primitive_type] = ACTIONS(3942), - [anon_sym_enum] = ACTIONS(3942), - [anon_sym_class] = ACTIONS(3942), - [anon_sym_struct] = ACTIONS(3942), - [anon_sym_union] = ACTIONS(3942), - [anon_sym_if] = ACTIONS(3942), - [anon_sym_switch] = ACTIONS(3942), - [anon_sym_case] = ACTIONS(3942), - [anon_sym_default] = ACTIONS(3942), - [anon_sym_while] = ACTIONS(3942), - [anon_sym_do] = ACTIONS(3942), - [anon_sym_for] = ACTIONS(3942), - [anon_sym_return] = ACTIONS(3942), - [anon_sym_break] = ACTIONS(3942), - [anon_sym_continue] = ACTIONS(3942), - [anon_sym_goto] = ACTIONS(3942), - [anon_sym___try] = ACTIONS(3942), - [anon_sym___leave] = ACTIONS(3942), - [anon_sym_not] = ACTIONS(3942), - [anon_sym_compl] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(3944), - [anon_sym_PLUS_PLUS] = ACTIONS(3944), - [anon_sym_sizeof] = ACTIONS(3942), - [anon_sym___alignof__] = ACTIONS(3942), - [anon_sym___alignof] = ACTIONS(3942), - [anon_sym__alignof] = ACTIONS(3942), - [anon_sym_alignof] = ACTIONS(3942), - [anon_sym__Alignof] = ACTIONS(3942), - [anon_sym_offsetof] = ACTIONS(3942), - [anon_sym__Generic] = ACTIONS(3942), - [anon_sym_typename] = ACTIONS(3942), - [anon_sym_asm] = ACTIONS(3942), - [anon_sym___asm__] = ACTIONS(3942), - [anon_sym___asm] = ACTIONS(3942), - [sym_number_literal] = ACTIONS(3944), - [anon_sym_L_SQUOTE] = ACTIONS(3944), - [anon_sym_u_SQUOTE] = ACTIONS(3944), - [anon_sym_U_SQUOTE] = ACTIONS(3944), - [anon_sym_u8_SQUOTE] = ACTIONS(3944), - [anon_sym_SQUOTE] = ACTIONS(3944), - [anon_sym_L_DQUOTE] = ACTIONS(3944), - [anon_sym_u_DQUOTE] = ACTIONS(3944), - [anon_sym_U_DQUOTE] = ACTIONS(3944), - [anon_sym_u8_DQUOTE] = ACTIONS(3944), - [anon_sym_DQUOTE] = ACTIONS(3944), - [sym_true] = ACTIONS(3942), - [sym_false] = ACTIONS(3942), - [anon_sym_NULL] = ACTIONS(3942), - [anon_sym_nullptr] = ACTIONS(3942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3942), - [anon_sym_decltype] = ACTIONS(3942), - [anon_sym_explicit] = ACTIONS(3942), - [anon_sym_template] = ACTIONS(3942), - [anon_sym_operator] = ACTIONS(3942), - [anon_sym_try] = ACTIONS(3942), - [anon_sym_delete] = ACTIONS(3942), - [anon_sym_throw] = ACTIONS(3942), - [anon_sym_namespace] = ACTIONS(3942), - [anon_sym_static_assert] = ACTIONS(3942), - [anon_sym_concept] = ACTIONS(3942), - [anon_sym_co_return] = ACTIONS(3942), - [anon_sym_co_yield] = ACTIONS(3942), - [anon_sym_R_DQUOTE] = ACTIONS(3944), - [anon_sym_LR_DQUOTE] = ACTIONS(3944), - [anon_sym_uR_DQUOTE] = ACTIONS(3944), - [anon_sym_UR_DQUOTE] = ACTIONS(3944), - [anon_sym_u8R_DQUOTE] = ACTIONS(3944), - [anon_sym_co_await] = ACTIONS(3942), - [anon_sym_new] = ACTIONS(3942), - [anon_sym_requires] = ACTIONS(3942), - [anon_sym_CARET_CARET] = ACTIONS(3944), - [anon_sym_LBRACK_COLON] = ACTIONS(3944), - [sym_this] = ACTIONS(3942), + [STATE(409)] = { + [sym_identifier] = ACTIONS(3943), + [aux_sym_preproc_include_token1] = ACTIONS(3943), + [aux_sym_preproc_def_token1] = ACTIONS(3943), + [aux_sym_preproc_if_token1] = ACTIONS(3943), + [aux_sym_preproc_if_token2] = ACTIONS(3943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3943), + [aux_sym_preproc_else_token1] = ACTIONS(3943), + [aux_sym_preproc_elif_token1] = ACTIONS(3943), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3943), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3943), + [sym_preproc_directive] = ACTIONS(3943), + [anon_sym_LPAREN2] = ACTIONS(3945), + [anon_sym_BANG] = ACTIONS(3945), + [anon_sym_TILDE] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3943), + [anon_sym_STAR] = ACTIONS(3945), + [anon_sym_AMP_AMP] = ACTIONS(3945), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_SEMI] = ACTIONS(3945), + [anon_sym___extension__] = ACTIONS(3943), + [anon_sym_typedef] = ACTIONS(3943), + [anon_sym_virtual] = ACTIONS(3943), + [anon_sym_extern] = ACTIONS(3943), + [anon_sym___attribute__] = ACTIONS(3943), + [anon_sym___attribute] = ACTIONS(3943), + [anon_sym_using] = ACTIONS(3943), + [anon_sym_COLON_COLON] = ACTIONS(3945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3945), + [anon_sym___declspec] = ACTIONS(3943), + [anon_sym___based] = ACTIONS(3943), + [anon_sym___cdecl] = ACTIONS(3943), + [anon_sym___clrcall] = ACTIONS(3943), + [anon_sym___stdcall] = ACTIONS(3943), + [anon_sym___fastcall] = ACTIONS(3943), + [anon_sym___thiscall] = ACTIONS(3943), + [anon_sym___vectorcall] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_signed] = ACTIONS(3943), + [anon_sym_unsigned] = ACTIONS(3943), + [anon_sym_long] = ACTIONS(3943), + [anon_sym_short] = ACTIONS(3943), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_static] = ACTIONS(3943), + [anon_sym_register] = ACTIONS(3943), + [anon_sym_inline] = ACTIONS(3943), + [anon_sym___inline] = ACTIONS(3943), + [anon_sym___inline__] = ACTIONS(3943), + [anon_sym___forceinline] = ACTIONS(3943), + [anon_sym_thread_local] = ACTIONS(3943), + [anon_sym___thread] = ACTIONS(3943), + [anon_sym_const] = ACTIONS(3943), + [anon_sym_constexpr] = ACTIONS(3943), + [anon_sym_volatile] = ACTIONS(3943), + [anon_sym_restrict] = ACTIONS(3943), + [anon_sym___restrict__] = ACTIONS(3943), + [anon_sym__Atomic] = ACTIONS(3943), + [anon_sym__Noreturn] = ACTIONS(3943), + [anon_sym_noreturn] = ACTIONS(3943), + [anon_sym__Nonnull] = ACTIONS(3943), + [anon_sym_mutable] = ACTIONS(3943), + [anon_sym_constinit] = ACTIONS(3943), + [anon_sym_consteval] = ACTIONS(3943), + [anon_sym_alignas] = ACTIONS(3943), + [anon_sym__Alignas] = ACTIONS(3943), + [sym_primitive_type] = ACTIONS(3943), + [anon_sym_enum] = ACTIONS(3943), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3943), + [anon_sym_union] = ACTIONS(3943), + [anon_sym_if] = ACTIONS(3943), + [anon_sym_switch] = ACTIONS(3943), + [anon_sym_case] = ACTIONS(3943), + [anon_sym_default] = ACTIONS(3943), + [anon_sym_while] = ACTIONS(3943), + [anon_sym_do] = ACTIONS(3943), + [anon_sym_for] = ACTIONS(3943), + [anon_sym_return] = ACTIONS(3943), + [anon_sym_break] = ACTIONS(3943), + [anon_sym_continue] = ACTIONS(3943), + [anon_sym_goto] = ACTIONS(3943), + [anon_sym___try] = ACTIONS(3943), + [anon_sym___leave] = ACTIONS(3943), + [anon_sym_not] = ACTIONS(3943), + [anon_sym_compl] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3945), + [anon_sym_PLUS_PLUS] = ACTIONS(3945), + [anon_sym_sizeof] = ACTIONS(3943), + [anon_sym___alignof__] = ACTIONS(3943), + [anon_sym___alignof] = ACTIONS(3943), + [anon_sym__alignof] = ACTIONS(3943), + [anon_sym_alignof] = ACTIONS(3943), + [anon_sym__Alignof] = ACTIONS(3943), + [anon_sym_offsetof] = ACTIONS(3943), + [anon_sym__Generic] = ACTIONS(3943), + [anon_sym_typename] = ACTIONS(3943), + [anon_sym_asm] = ACTIONS(3943), + [anon_sym___asm__] = ACTIONS(3943), + [anon_sym___asm] = ACTIONS(3943), + [sym_number_literal] = ACTIONS(3945), + [anon_sym_L_SQUOTE] = ACTIONS(3945), + [anon_sym_u_SQUOTE] = ACTIONS(3945), + [anon_sym_U_SQUOTE] = ACTIONS(3945), + [anon_sym_u8_SQUOTE] = ACTIONS(3945), + [anon_sym_SQUOTE] = ACTIONS(3945), + [anon_sym_L_DQUOTE] = ACTIONS(3945), + [anon_sym_u_DQUOTE] = ACTIONS(3945), + [anon_sym_U_DQUOTE] = ACTIONS(3945), + [anon_sym_u8_DQUOTE] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3945), + [sym_true] = ACTIONS(3943), + [sym_false] = ACTIONS(3943), + [anon_sym_NULL] = ACTIONS(3943), + [anon_sym_nullptr] = ACTIONS(3943), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3943), + [anon_sym_decltype] = ACTIONS(3943), + [anon_sym_explicit] = ACTIONS(3943), + [anon_sym_export] = ACTIONS(3943), + [anon_sym_module] = ACTIONS(3943), + [anon_sym_import] = ACTIONS(3943), + [anon_sym_template] = ACTIONS(3943), + [anon_sym_operator] = ACTIONS(3943), + [anon_sym_try] = ACTIONS(3943), + [anon_sym_delete] = ACTIONS(3943), + [anon_sym_throw] = ACTIONS(3943), + [anon_sym_namespace] = ACTIONS(3943), + [anon_sym_static_assert] = ACTIONS(3943), + [anon_sym_concept] = ACTIONS(3943), + [anon_sym_co_return] = ACTIONS(3943), + [anon_sym_co_yield] = ACTIONS(3943), + [anon_sym_R_DQUOTE] = ACTIONS(3945), + [anon_sym_LR_DQUOTE] = ACTIONS(3945), + [anon_sym_uR_DQUOTE] = ACTIONS(3945), + [anon_sym_UR_DQUOTE] = ACTIONS(3945), + [anon_sym_u8R_DQUOTE] = ACTIONS(3945), + [anon_sym_co_await] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3943), + [anon_sym_requires] = ACTIONS(3943), + [anon_sym_CARET_CARET] = ACTIONS(3945), + [anon_sym_LBRACK_COLON] = ACTIONS(3945), + [sym_this] = ACTIONS(3943), }, - [STATE(420)] = { - [sym_identifier] = ACTIONS(3946), - [aux_sym_preproc_include_token1] = ACTIONS(3946), - [aux_sym_preproc_def_token1] = ACTIONS(3946), - [aux_sym_preproc_if_token1] = ACTIONS(3946), - [aux_sym_preproc_if_token2] = ACTIONS(3946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3946), - [aux_sym_preproc_else_token1] = ACTIONS(3946), - [aux_sym_preproc_elif_token1] = ACTIONS(3946), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3946), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3946), - [sym_preproc_directive] = ACTIONS(3946), - [anon_sym_LPAREN2] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_TILDE] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3946), - [anon_sym_PLUS] = ACTIONS(3946), - [anon_sym_STAR] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym___extension__] = ACTIONS(3946), - [anon_sym_typedef] = ACTIONS(3946), - [anon_sym_virtual] = ACTIONS(3946), - [anon_sym_extern] = ACTIONS(3946), - [anon_sym___attribute__] = ACTIONS(3946), - [anon_sym___attribute] = ACTIONS(3946), - [anon_sym_using] = ACTIONS(3946), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3948), - [anon_sym___declspec] = ACTIONS(3946), - [anon_sym___based] = ACTIONS(3946), - [anon_sym___cdecl] = ACTIONS(3946), - [anon_sym___clrcall] = ACTIONS(3946), - [anon_sym___stdcall] = ACTIONS(3946), - [anon_sym___fastcall] = ACTIONS(3946), - [anon_sym___thiscall] = ACTIONS(3946), - [anon_sym___vectorcall] = ACTIONS(3946), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_signed] = ACTIONS(3946), - [anon_sym_unsigned] = ACTIONS(3946), - [anon_sym_long] = ACTIONS(3946), - [anon_sym_short] = ACTIONS(3946), - [anon_sym_LBRACK] = ACTIONS(3946), - [anon_sym_static] = ACTIONS(3946), - [anon_sym_register] = ACTIONS(3946), - [anon_sym_inline] = ACTIONS(3946), - [anon_sym___inline] = ACTIONS(3946), - [anon_sym___inline__] = ACTIONS(3946), - [anon_sym___forceinline] = ACTIONS(3946), - [anon_sym_thread_local] = ACTIONS(3946), - [anon_sym___thread] = ACTIONS(3946), - [anon_sym_const] = ACTIONS(3946), - [anon_sym_constexpr] = ACTIONS(3946), - [anon_sym_volatile] = ACTIONS(3946), - [anon_sym_restrict] = ACTIONS(3946), - [anon_sym___restrict__] = ACTIONS(3946), - [anon_sym__Atomic] = ACTIONS(3946), - [anon_sym__Noreturn] = ACTIONS(3946), - [anon_sym_noreturn] = ACTIONS(3946), - [anon_sym__Nonnull] = ACTIONS(3946), - [anon_sym_mutable] = ACTIONS(3946), - [anon_sym_constinit] = ACTIONS(3946), - [anon_sym_consteval] = ACTIONS(3946), - [anon_sym_alignas] = ACTIONS(3946), - [anon_sym__Alignas] = ACTIONS(3946), - [sym_primitive_type] = ACTIONS(3946), - [anon_sym_enum] = ACTIONS(3946), - [anon_sym_class] = ACTIONS(3946), - [anon_sym_struct] = ACTIONS(3946), - [anon_sym_union] = ACTIONS(3946), - [anon_sym_if] = ACTIONS(3946), - [anon_sym_switch] = ACTIONS(3946), - [anon_sym_case] = ACTIONS(3946), - [anon_sym_default] = ACTIONS(3946), - [anon_sym_while] = ACTIONS(3946), - [anon_sym_do] = ACTIONS(3946), - [anon_sym_for] = ACTIONS(3946), - [anon_sym_return] = ACTIONS(3946), - [anon_sym_break] = ACTIONS(3946), - [anon_sym_continue] = ACTIONS(3946), - [anon_sym_goto] = ACTIONS(3946), - [anon_sym___try] = ACTIONS(3946), - [anon_sym___leave] = ACTIONS(3946), - [anon_sym_not] = ACTIONS(3946), - [anon_sym_compl] = ACTIONS(3946), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_sizeof] = ACTIONS(3946), - [anon_sym___alignof__] = ACTIONS(3946), - [anon_sym___alignof] = ACTIONS(3946), - [anon_sym__alignof] = ACTIONS(3946), - [anon_sym_alignof] = ACTIONS(3946), - [anon_sym__Alignof] = ACTIONS(3946), - [anon_sym_offsetof] = ACTIONS(3946), - [anon_sym__Generic] = ACTIONS(3946), - [anon_sym_typename] = ACTIONS(3946), - [anon_sym_asm] = ACTIONS(3946), - [anon_sym___asm__] = ACTIONS(3946), - [anon_sym___asm] = ACTIONS(3946), - [sym_number_literal] = ACTIONS(3948), - [anon_sym_L_SQUOTE] = ACTIONS(3948), - [anon_sym_u_SQUOTE] = ACTIONS(3948), - [anon_sym_U_SQUOTE] = ACTIONS(3948), - [anon_sym_u8_SQUOTE] = ACTIONS(3948), - [anon_sym_SQUOTE] = ACTIONS(3948), - [anon_sym_L_DQUOTE] = ACTIONS(3948), - [anon_sym_u_DQUOTE] = ACTIONS(3948), - [anon_sym_U_DQUOTE] = ACTIONS(3948), - [anon_sym_u8_DQUOTE] = ACTIONS(3948), - [anon_sym_DQUOTE] = ACTIONS(3948), - [sym_true] = ACTIONS(3946), - [sym_false] = ACTIONS(3946), - [anon_sym_NULL] = ACTIONS(3946), - [anon_sym_nullptr] = ACTIONS(3946), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3946), - [anon_sym_decltype] = ACTIONS(3946), - [anon_sym_explicit] = ACTIONS(3946), - [anon_sym_template] = ACTIONS(3946), - [anon_sym_operator] = ACTIONS(3946), - [anon_sym_try] = ACTIONS(3946), - [anon_sym_delete] = ACTIONS(3946), - [anon_sym_throw] = ACTIONS(3946), - [anon_sym_namespace] = ACTIONS(3946), - [anon_sym_static_assert] = ACTIONS(3946), - [anon_sym_concept] = ACTIONS(3946), - [anon_sym_co_return] = ACTIONS(3946), - [anon_sym_co_yield] = ACTIONS(3946), - [anon_sym_R_DQUOTE] = ACTIONS(3948), - [anon_sym_LR_DQUOTE] = ACTIONS(3948), - [anon_sym_uR_DQUOTE] = ACTIONS(3948), - [anon_sym_UR_DQUOTE] = ACTIONS(3948), - [anon_sym_u8R_DQUOTE] = ACTIONS(3948), - [anon_sym_co_await] = ACTIONS(3946), - [anon_sym_new] = ACTIONS(3946), - [anon_sym_requires] = ACTIONS(3946), - [anon_sym_CARET_CARET] = ACTIONS(3948), - [anon_sym_LBRACK_COLON] = ACTIONS(3948), - [sym_this] = ACTIONS(3946), + [STATE(410)] = { + [sym_catch_clause] = STATE(410), + [aux_sym_constructor_try_statement_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(3171), + [aux_sym_preproc_include_token1] = ACTIONS(3171), + [aux_sym_preproc_def_token1] = ACTIONS(3171), + [aux_sym_preproc_if_token1] = ACTIONS(3171), + [aux_sym_preproc_if_token2] = ACTIONS(3171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3171), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3171), + [sym_preproc_directive] = ACTIONS(3171), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(3173), + [anon_sym_AMP_AMP] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym___extension__] = ACTIONS(3171), + [anon_sym_typedef] = ACTIONS(3171), + [anon_sym_virtual] = ACTIONS(3171), + [anon_sym_extern] = ACTIONS(3171), + [anon_sym___attribute__] = ACTIONS(3171), + [anon_sym___attribute] = ACTIONS(3171), + [anon_sym_using] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3173), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), + [anon_sym___declspec] = ACTIONS(3171), + [anon_sym___based] = ACTIONS(3171), + [anon_sym___cdecl] = ACTIONS(3171), + [anon_sym___clrcall] = ACTIONS(3171), + [anon_sym___stdcall] = ACTIONS(3171), + [anon_sym___fastcall] = ACTIONS(3171), + [anon_sym___thiscall] = ACTIONS(3171), + [anon_sym___vectorcall] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3173), + [anon_sym_signed] = ACTIONS(3171), + [anon_sym_unsigned] = ACTIONS(3171), + [anon_sym_long] = ACTIONS(3171), + [anon_sym_short] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_register] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym___inline] = ACTIONS(3171), + [anon_sym___inline__] = ACTIONS(3171), + [anon_sym___forceinline] = ACTIONS(3171), + [anon_sym_thread_local] = ACTIONS(3171), + [anon_sym___thread] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_constexpr] = ACTIONS(3171), + [anon_sym_volatile] = ACTIONS(3171), + [anon_sym_restrict] = ACTIONS(3171), + [anon_sym___restrict__] = ACTIONS(3171), + [anon_sym__Atomic] = ACTIONS(3171), + [anon_sym__Noreturn] = ACTIONS(3171), + [anon_sym_noreturn] = ACTIONS(3171), + [anon_sym__Nonnull] = ACTIONS(3171), + [anon_sym_mutable] = ACTIONS(3171), + [anon_sym_constinit] = ACTIONS(3171), + [anon_sym_consteval] = ACTIONS(3171), + [anon_sym_alignas] = ACTIONS(3171), + [anon_sym__Alignas] = ACTIONS(3171), + [sym_primitive_type] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), + [anon_sym_class] = ACTIONS(3171), + [anon_sym_struct] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_switch] = ACTIONS(3171), + [anon_sym_case] = ACTIONS(3171), + [anon_sym_default] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_goto] = ACTIONS(3171), + [anon_sym___try] = ACTIONS(3171), + [anon_sym___leave] = ACTIONS(3171), + [anon_sym_not] = ACTIONS(3171), + [anon_sym_compl] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3173), + [anon_sym_PLUS_PLUS] = ACTIONS(3173), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3171), + [anon_sym___alignof] = ACTIONS(3171), + [anon_sym__alignof] = ACTIONS(3171), + [anon_sym_alignof] = ACTIONS(3171), + [anon_sym__Alignof] = ACTIONS(3171), + [anon_sym_offsetof] = ACTIONS(3171), + [anon_sym__Generic] = ACTIONS(3171), + [anon_sym_typename] = ACTIONS(3171), + [anon_sym_asm] = ACTIONS(3171), + [anon_sym___asm__] = ACTIONS(3171), + [anon_sym___asm] = ACTIONS(3171), + [sym_number_literal] = ACTIONS(3173), + [anon_sym_L_SQUOTE] = ACTIONS(3173), + [anon_sym_u_SQUOTE] = ACTIONS(3173), + [anon_sym_U_SQUOTE] = ACTIONS(3173), + [anon_sym_u8_SQUOTE] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_L_DQUOTE] = ACTIONS(3173), + [anon_sym_u_DQUOTE] = ACTIONS(3173), + [anon_sym_U_DQUOTE] = ACTIONS(3173), + [anon_sym_u8_DQUOTE] = ACTIONS(3173), + [anon_sym_DQUOTE] = ACTIONS(3173), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [anon_sym_NULL] = ACTIONS(3171), + [anon_sym_nullptr] = ACTIONS(3171), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3171), + [anon_sym_decltype] = ACTIONS(3171), + [anon_sym_explicit] = ACTIONS(3171), + [anon_sym_export] = ACTIONS(3171), + [anon_sym_module] = ACTIONS(3171), + [anon_sym_import] = ACTIONS(3171), + [anon_sym_template] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_delete] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_namespace] = ACTIONS(3171), + [anon_sym_static_assert] = ACTIONS(3171), + [anon_sym_concept] = ACTIONS(3171), + [anon_sym_co_return] = ACTIONS(3171), + [anon_sym_co_yield] = ACTIONS(3171), + [anon_sym_catch] = ACTIONS(3947), + [anon_sym_R_DQUOTE] = ACTIONS(3173), + [anon_sym_LR_DQUOTE] = ACTIONS(3173), + [anon_sym_uR_DQUOTE] = ACTIONS(3173), + [anon_sym_UR_DQUOTE] = ACTIONS(3173), + [anon_sym_u8R_DQUOTE] = ACTIONS(3173), + [anon_sym_co_await] = ACTIONS(3171), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_requires] = ACTIONS(3171), + [anon_sym_CARET_CARET] = ACTIONS(3173), + [anon_sym_LBRACK_COLON] = ACTIONS(3173), + [sym_this] = ACTIONS(3171), }, - [STATE(421)] = { + [STATE(411)] = { [sym_identifier] = ACTIONS(3950), [aux_sym_preproc_include_token1] = ACTIONS(3950), [aux_sym_preproc_def_token1] = ACTIONS(3950), @@ -114701,6 +118684,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(3950), [anon_sym_decltype] = ACTIONS(3950), [anon_sym_explicit] = ACTIONS(3950), + [anon_sym_export] = ACTIONS(3950), + [anon_sym_module] = ACTIONS(3950), + [anon_sym_import] = ACTIONS(3950), [anon_sym_template] = ACTIONS(3950), [anon_sym_operator] = ACTIONS(3950), [anon_sym_try] = ACTIONS(3950), @@ -114723,7 +118709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3952), [sym_this] = ACTIONS(3950), }, - [STATE(422)] = { + [STATE(412)] = { [sym_identifier] = ACTIONS(3954), [aux_sym_preproc_include_token1] = ACTIONS(3954), [aux_sym_preproc_def_token1] = ACTIONS(3954), @@ -114843,6 +118829,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(3954), [anon_sym_decltype] = ACTIONS(3954), [anon_sym_explicit] = ACTIONS(3954), + [anon_sym_export] = ACTIONS(3954), + [anon_sym_module] = ACTIONS(3954), + [anon_sym_import] = ACTIONS(3954), [anon_sym_template] = ACTIONS(3954), [anon_sym_operator] = ACTIONS(3954), [anon_sym_try] = ACTIONS(3954), @@ -114865,7 +118854,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3956), [sym_this] = ACTIONS(3954), }, - [STATE(423)] = { + [STATE(413)] = { [sym_identifier] = ACTIONS(3958), [aux_sym_preproc_include_token1] = ACTIONS(3958), [aux_sym_preproc_def_token1] = ACTIONS(3958), @@ -114985,6 +118974,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(3958), [anon_sym_decltype] = ACTIONS(3958), [anon_sym_explicit] = ACTIONS(3958), + [anon_sym_export] = ACTIONS(3958), + [anon_sym_module] = ACTIONS(3958), + [anon_sym_import] = ACTIONS(3958), [anon_sym_template] = ACTIONS(3958), [anon_sym_operator] = ACTIONS(3958), [anon_sym_try] = ACTIONS(3958), @@ -115007,7 +118999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3960), [sym_this] = ACTIONS(3958), }, - [STATE(424)] = { + [STATE(414)] = { [sym_identifier] = ACTIONS(3962), [aux_sym_preproc_include_token1] = ACTIONS(3962), [aux_sym_preproc_def_token1] = ACTIONS(3962), @@ -115127,6 +119119,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(3962), [anon_sym_decltype] = ACTIONS(3962), [anon_sym_explicit] = ACTIONS(3962), + [anon_sym_export] = ACTIONS(3962), + [anon_sym_module] = ACTIONS(3962), + [anon_sym_import] = ACTIONS(3962), [anon_sym_template] = ACTIONS(3962), [anon_sym_operator] = ACTIONS(3962), [anon_sym_try] = ACTIONS(3962), @@ -115149,6255 +119144,3922 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3964), [sym_this] = ACTIONS(3962), }, - [STATE(425)] = { + [STATE(415)] = { + [sym_type_qualifier] = STATE(5205), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(2241), + [sym_sized_type_specifier] = STATE(2222), + [sym_enum_specifier] = STATE(2222), + [sym_struct_specifier] = STATE(2222), + [sym_union_specifier] = STATE(2222), + [sym_expression] = STATE(4493), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_type_descriptor] = STATE(3833), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_placeholder_type_specifier] = STATE(2222), + [sym_decltype_auto] = STATE(2221), + [sym_decltype] = STATE(2169), + [sym_class_specifier] = STATE(2222), + [sym__class_name] = STATE(10271), + [sym_dependent_type] = STATE(2222), + [sym_template_type] = STATE(2146), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7954), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(2207), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(2251), + [sym__splice_specialization_specifier] = STATE(2170), + [sym_splice_type_specifier] = STATE(2223), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [aux_sym__type_definition_type_repeat1] = STATE(5205), + [aux_sym_sized_type_specifier_repeat1] = STATE(2093), [sym_identifier] = ACTIONS(3966), - [aux_sym_preproc_include_token1] = ACTIONS(3966), - [aux_sym_preproc_def_token1] = ACTIONS(3966), - [aux_sym_preproc_if_token1] = ACTIONS(3966), - [aux_sym_preproc_if_token2] = ACTIONS(3966), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3966), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3966), - [aux_sym_preproc_else_token1] = ACTIONS(3966), - [aux_sym_preproc_elif_token1] = ACTIONS(3966), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3966), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3966), - [sym_preproc_directive] = ACTIONS(3966), [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(3968), - [anon_sym_TILDE] = ACTIONS(3968), - [anon_sym_DASH] = ACTIONS(3966), - [anon_sym_PLUS] = ACTIONS(3966), - [anon_sym_STAR] = ACTIONS(3968), - [anon_sym_AMP_AMP] = ACTIONS(3968), - [anon_sym_AMP] = ACTIONS(3966), - [anon_sym_SEMI] = ACTIONS(3968), - [anon_sym___extension__] = ACTIONS(3966), - [anon_sym_typedef] = ACTIONS(3966), - [anon_sym_virtual] = ACTIONS(3966), - [anon_sym_extern] = ACTIONS(3966), - [anon_sym___attribute__] = ACTIONS(3966), - [anon_sym___attribute] = ACTIONS(3966), - [anon_sym_using] = ACTIONS(3966), - [anon_sym_COLON_COLON] = ACTIONS(3968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3968), - [anon_sym___declspec] = ACTIONS(3966), - [anon_sym___based] = ACTIONS(3966), - [anon_sym___cdecl] = ACTIONS(3966), - [anon_sym___clrcall] = ACTIONS(3966), - [anon_sym___stdcall] = ACTIONS(3966), - [anon_sym___fastcall] = ACTIONS(3966), - [anon_sym___thiscall] = ACTIONS(3966), - [anon_sym___vectorcall] = ACTIONS(3966), - [anon_sym_LBRACE] = ACTIONS(3968), - [anon_sym_signed] = ACTIONS(3966), - [anon_sym_unsigned] = ACTIONS(3966), - [anon_sym_long] = ACTIONS(3966), - [anon_sym_short] = ACTIONS(3966), - [anon_sym_LBRACK] = ACTIONS(3966), - [anon_sym_static] = ACTIONS(3966), - [anon_sym_register] = ACTIONS(3966), - [anon_sym_inline] = ACTIONS(3966), - [anon_sym___inline] = ACTIONS(3966), - [anon_sym___inline__] = ACTIONS(3966), - [anon_sym___forceinline] = ACTIONS(3966), - [anon_sym_thread_local] = ACTIONS(3966), - [anon_sym___thread] = ACTIONS(3966), - [anon_sym_const] = ACTIONS(3966), - [anon_sym_constexpr] = ACTIONS(3966), - [anon_sym_volatile] = ACTIONS(3966), - [anon_sym_restrict] = ACTIONS(3966), - [anon_sym___restrict__] = ACTIONS(3966), - [anon_sym__Atomic] = ACTIONS(3966), - [anon_sym__Noreturn] = ACTIONS(3966), - [anon_sym_noreturn] = ACTIONS(3966), - [anon_sym__Nonnull] = ACTIONS(3966), - [anon_sym_mutable] = ACTIONS(3966), - [anon_sym_constinit] = ACTIONS(3966), - [anon_sym_consteval] = ACTIONS(3966), - [anon_sym_alignas] = ACTIONS(3966), - [anon_sym__Alignas] = ACTIONS(3966), - [sym_primitive_type] = ACTIONS(3966), - [anon_sym_enum] = ACTIONS(3966), - [anon_sym_class] = ACTIONS(3966), - [anon_sym_struct] = ACTIONS(3966), - [anon_sym_union] = ACTIONS(3966), - [anon_sym_if] = ACTIONS(3966), - [anon_sym_switch] = ACTIONS(3966), - [anon_sym_case] = ACTIONS(3966), - [anon_sym_default] = ACTIONS(3966), - [anon_sym_while] = ACTIONS(3966), - [anon_sym_do] = ACTIONS(3966), - [anon_sym_for] = ACTIONS(3966), - [anon_sym_return] = ACTIONS(3966), - [anon_sym_break] = ACTIONS(3966), - [anon_sym_continue] = ACTIONS(3966), - [anon_sym_goto] = ACTIONS(3966), - [anon_sym___try] = ACTIONS(3966), - [anon_sym___leave] = ACTIONS(3966), - [anon_sym_not] = ACTIONS(3966), - [anon_sym_compl] = ACTIONS(3966), - [anon_sym_DASH_DASH] = ACTIONS(3968), - [anon_sym_PLUS_PLUS] = ACTIONS(3968), - [anon_sym_sizeof] = ACTIONS(3966), - [anon_sym___alignof__] = ACTIONS(3966), - [anon_sym___alignof] = ACTIONS(3966), - [anon_sym__alignof] = ACTIONS(3966), - [anon_sym_alignof] = ACTIONS(3966), - [anon_sym__Alignof] = ACTIONS(3966), - [anon_sym_offsetof] = ACTIONS(3966), - [anon_sym__Generic] = ACTIONS(3966), - [anon_sym_typename] = ACTIONS(3966), - [anon_sym_asm] = ACTIONS(3966), - [anon_sym___asm__] = ACTIONS(3966), - [anon_sym___asm] = ACTIONS(3966), - [sym_number_literal] = ACTIONS(3968), - [anon_sym_L_SQUOTE] = ACTIONS(3968), - [anon_sym_u_SQUOTE] = ACTIONS(3968), - [anon_sym_U_SQUOTE] = ACTIONS(3968), - [anon_sym_u8_SQUOTE] = ACTIONS(3968), - [anon_sym_SQUOTE] = ACTIONS(3968), - [anon_sym_L_DQUOTE] = ACTIONS(3968), - [anon_sym_u_DQUOTE] = ACTIONS(3968), - [anon_sym_U_DQUOTE] = ACTIONS(3968), - [anon_sym_u8_DQUOTE] = ACTIONS(3968), - [anon_sym_DQUOTE] = ACTIONS(3968), - [sym_true] = ACTIONS(3966), - [sym_false] = ACTIONS(3966), - [anon_sym_NULL] = ACTIONS(3966), - [anon_sym_nullptr] = ACTIONS(3966), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3966), - [anon_sym_decltype] = ACTIONS(3966), - [anon_sym_explicit] = ACTIONS(3966), - [anon_sym_template] = ACTIONS(3966), - [anon_sym_operator] = ACTIONS(3966), - [anon_sym_try] = ACTIONS(3966), - [anon_sym_delete] = ACTIONS(3966), - [anon_sym_throw] = ACTIONS(3966), - [anon_sym_namespace] = ACTIONS(3966), - [anon_sym_static_assert] = ACTIONS(3966), - [anon_sym_concept] = ACTIONS(3966), - [anon_sym_co_return] = ACTIONS(3966), - [anon_sym_co_yield] = ACTIONS(3966), - [anon_sym_R_DQUOTE] = ACTIONS(3968), - [anon_sym_LR_DQUOTE] = ACTIONS(3968), - [anon_sym_uR_DQUOTE] = ACTIONS(3968), - [anon_sym_UR_DQUOTE] = ACTIONS(3968), - [anon_sym_u8R_DQUOTE] = ACTIONS(3968), - [anon_sym_co_await] = ACTIONS(3966), - [anon_sym_new] = ACTIONS(3966), - [anon_sym_requires] = ACTIONS(3966), - [anon_sym_CARET_CARET] = ACTIONS(3968), - [anon_sym_LBRACK_COLON] = ACTIONS(3968), - [sym_this] = ACTIONS(3966), - }, - [STATE(426)] = { - [sym_identifier] = ACTIONS(3970), - [aux_sym_preproc_include_token1] = ACTIONS(3970), - [aux_sym_preproc_def_token1] = ACTIONS(3970), - [aux_sym_preproc_if_token1] = ACTIONS(3970), - [aux_sym_preproc_if_token2] = ACTIONS(3970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3970), - [aux_sym_preproc_else_token1] = ACTIONS(3970), - [aux_sym_preproc_elif_token1] = ACTIONS(3970), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3970), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3970), - [sym_preproc_directive] = ACTIONS(3970), - [anon_sym_LPAREN2] = ACTIONS(3972), - [anon_sym_BANG] = ACTIONS(3972), - [anon_sym_TILDE] = ACTIONS(3972), - [anon_sym_DASH] = ACTIONS(3970), - [anon_sym_PLUS] = ACTIONS(3970), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_AMP_AMP] = ACTIONS(3972), - [anon_sym_AMP] = ACTIONS(3970), - [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), [anon_sym___extension__] = ACTIONS(3970), - [anon_sym_typedef] = ACTIONS(3970), - [anon_sym_virtual] = ACTIONS(3970), - [anon_sym_extern] = ACTIONS(3970), - [anon_sym___attribute__] = ACTIONS(3970), - [anon_sym___attribute] = ACTIONS(3970), - [anon_sym_using] = ACTIONS(3970), [anon_sym_COLON_COLON] = ACTIONS(3972), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3972), - [anon_sym___declspec] = ACTIONS(3970), - [anon_sym___based] = ACTIONS(3970), - [anon_sym___cdecl] = ACTIONS(3970), - [anon_sym___clrcall] = ACTIONS(3970), - [anon_sym___stdcall] = ACTIONS(3970), - [anon_sym___fastcall] = ACTIONS(3970), - [anon_sym___thiscall] = ACTIONS(3970), - [anon_sym___vectorcall] = ACTIONS(3970), - [anon_sym_LBRACE] = ACTIONS(3972), - [anon_sym_signed] = ACTIONS(3970), - [anon_sym_unsigned] = ACTIONS(3970), - [anon_sym_long] = ACTIONS(3970), - [anon_sym_short] = ACTIONS(3970), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_static] = ACTIONS(3970), - [anon_sym_register] = ACTIONS(3970), - [anon_sym_inline] = ACTIONS(3970), - [anon_sym___inline] = ACTIONS(3970), - [anon_sym___inline__] = ACTIONS(3970), - [anon_sym___forceinline] = ACTIONS(3970), - [anon_sym_thread_local] = ACTIONS(3970), - [anon_sym___thread] = ACTIONS(3970), - [anon_sym_const] = ACTIONS(3970), - [anon_sym_constexpr] = ACTIONS(3970), - [anon_sym_volatile] = ACTIONS(3970), - [anon_sym_restrict] = ACTIONS(3970), - [anon_sym___restrict__] = ACTIONS(3970), - [anon_sym__Atomic] = ACTIONS(3970), - [anon_sym__Noreturn] = ACTIONS(3970), - [anon_sym_noreturn] = ACTIONS(3970), - [anon_sym__Nonnull] = ACTIONS(3970), - [anon_sym_mutable] = ACTIONS(3970), - [anon_sym_constinit] = ACTIONS(3970), - [anon_sym_consteval] = ACTIONS(3970), - [anon_sym_alignas] = ACTIONS(3970), - [anon_sym__Alignas] = ACTIONS(3970), - [sym_primitive_type] = ACTIONS(3970), - [anon_sym_enum] = ACTIONS(3970), - [anon_sym_class] = ACTIONS(3970), - [anon_sym_struct] = ACTIONS(3970), - [anon_sym_union] = ACTIONS(3970), - [anon_sym_if] = ACTIONS(3970), - [anon_sym_switch] = ACTIONS(3970), - [anon_sym_case] = ACTIONS(3970), - [anon_sym_default] = ACTIONS(3970), - [anon_sym_while] = ACTIONS(3970), - [anon_sym_do] = ACTIONS(3970), - [anon_sym_for] = ACTIONS(3970), - [anon_sym_return] = ACTIONS(3970), - [anon_sym_break] = ACTIONS(3970), - [anon_sym_continue] = ACTIONS(3970), - [anon_sym_goto] = ACTIONS(3970), - [anon_sym___try] = ACTIONS(3970), - [anon_sym___leave] = ACTIONS(3970), - [anon_sym_not] = ACTIONS(3970), - [anon_sym_compl] = ACTIONS(3970), - [anon_sym_DASH_DASH] = ACTIONS(3972), - [anon_sym_PLUS_PLUS] = ACTIONS(3972), - [anon_sym_sizeof] = ACTIONS(3970), - [anon_sym___alignof__] = ACTIONS(3970), - [anon_sym___alignof] = ACTIONS(3970), - [anon_sym__alignof] = ACTIONS(3970), - [anon_sym_alignof] = ACTIONS(3970), - [anon_sym__Alignof] = ACTIONS(3970), - [anon_sym_offsetof] = ACTIONS(3970), - [anon_sym__Generic] = ACTIONS(3970), - [anon_sym_typename] = ACTIONS(3970), - [anon_sym_asm] = ACTIONS(3970), - [anon_sym___asm__] = ACTIONS(3970), - [anon_sym___asm] = ACTIONS(3970), - [sym_number_literal] = ACTIONS(3972), - [anon_sym_L_SQUOTE] = ACTIONS(3972), - [anon_sym_u_SQUOTE] = ACTIONS(3972), - [anon_sym_U_SQUOTE] = ACTIONS(3972), - [anon_sym_u8_SQUOTE] = ACTIONS(3972), - [anon_sym_SQUOTE] = ACTIONS(3972), - [anon_sym_L_DQUOTE] = ACTIONS(3972), - [anon_sym_u_DQUOTE] = ACTIONS(3972), - [anon_sym_U_DQUOTE] = ACTIONS(3972), - [anon_sym_u8_DQUOTE] = ACTIONS(3972), - [anon_sym_DQUOTE] = ACTIONS(3972), - [sym_true] = ACTIONS(3970), - [sym_false] = ACTIONS(3970), - [anon_sym_NULL] = ACTIONS(3970), - [anon_sym_nullptr] = ACTIONS(3970), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3970), - [anon_sym_decltype] = ACTIONS(3970), - [anon_sym_explicit] = ACTIONS(3970), - [anon_sym_template] = ACTIONS(3970), - [anon_sym_operator] = ACTIONS(3970), - [anon_sym_try] = ACTIONS(3970), - [anon_sym_delete] = ACTIONS(3970), - [anon_sym_throw] = ACTIONS(3970), - [anon_sym_namespace] = ACTIONS(3970), - [anon_sym_static_assert] = ACTIONS(3970), - [anon_sym_concept] = ACTIONS(3970), - [anon_sym_co_return] = ACTIONS(3970), - [anon_sym_co_yield] = ACTIONS(3970), - [anon_sym_R_DQUOTE] = ACTIONS(3972), - [anon_sym_LR_DQUOTE] = ACTIONS(3972), - [anon_sym_uR_DQUOTE] = ACTIONS(3972), - [anon_sym_UR_DQUOTE] = ACTIONS(3972), - [anon_sym_u8R_DQUOTE] = ACTIONS(3972), - [anon_sym_co_await] = ACTIONS(3970), - [anon_sym_new] = ACTIONS(3970), - [anon_sym_requires] = ACTIONS(3970), - [anon_sym_CARET_CARET] = ACTIONS(3972), - [anon_sym_LBRACK_COLON] = ACTIONS(3972), - [sym_this] = ACTIONS(3970), - }, - [STATE(427)] = { - [sym_identifier] = ACTIONS(3974), - [aux_sym_preproc_include_token1] = ACTIONS(3974), - [aux_sym_preproc_def_token1] = ACTIONS(3974), - [aux_sym_preproc_if_token1] = ACTIONS(3974), - [aux_sym_preproc_if_token2] = ACTIONS(3974), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3974), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3974), - [aux_sym_preproc_else_token1] = ACTIONS(3974), - [aux_sym_preproc_elif_token1] = ACTIONS(3974), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3974), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3974), - [sym_preproc_directive] = ACTIONS(3974), - [anon_sym_LPAREN2] = ACTIONS(3976), - [anon_sym_BANG] = ACTIONS(3976), - [anon_sym_TILDE] = ACTIONS(3976), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_STAR] = ACTIONS(3976), - [anon_sym_AMP_AMP] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3974), - [anon_sym_SEMI] = ACTIONS(3976), - [anon_sym___extension__] = ACTIONS(3974), - [anon_sym_typedef] = ACTIONS(3974), - [anon_sym_virtual] = ACTIONS(3974), - [anon_sym_extern] = ACTIONS(3974), - [anon_sym___attribute__] = ACTIONS(3974), - [anon_sym___attribute] = ACTIONS(3974), - [anon_sym_using] = ACTIONS(3974), - [anon_sym_COLON_COLON] = ACTIONS(3976), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3976), - [anon_sym___declspec] = ACTIONS(3974), - [anon_sym___based] = ACTIONS(3974), - [anon_sym___cdecl] = ACTIONS(3974), - [anon_sym___clrcall] = ACTIONS(3974), - [anon_sym___stdcall] = ACTIONS(3974), - [anon_sym___fastcall] = ACTIONS(3974), - [anon_sym___thiscall] = ACTIONS(3974), - [anon_sym___vectorcall] = ACTIONS(3974), - [anon_sym_LBRACE] = ACTIONS(3976), [anon_sym_signed] = ACTIONS(3974), [anon_sym_unsigned] = ACTIONS(3974), [anon_sym_long] = ACTIONS(3974), [anon_sym_short] = ACTIONS(3974), - [anon_sym_LBRACK] = ACTIONS(3974), - [anon_sym_static] = ACTIONS(3974), - [anon_sym_register] = ACTIONS(3974), - [anon_sym_inline] = ACTIONS(3974), - [anon_sym___inline] = ACTIONS(3974), - [anon_sym___inline__] = ACTIONS(3974), - [anon_sym___forceinline] = ACTIONS(3974), - [anon_sym_thread_local] = ACTIONS(3974), - [anon_sym___thread] = ACTIONS(3974), - [anon_sym_const] = ACTIONS(3974), - [anon_sym_constexpr] = ACTIONS(3974), - [anon_sym_volatile] = ACTIONS(3974), - [anon_sym_restrict] = ACTIONS(3974), - [anon_sym___restrict__] = ACTIONS(3974), - [anon_sym__Atomic] = ACTIONS(3974), - [anon_sym__Noreturn] = ACTIONS(3974), - [anon_sym_noreturn] = ACTIONS(3974), - [anon_sym__Nonnull] = ACTIONS(3974), - [anon_sym_mutable] = ACTIONS(3974), - [anon_sym_constinit] = ACTIONS(3974), - [anon_sym_consteval] = ACTIONS(3974), - [anon_sym_alignas] = ACTIONS(3974), - [anon_sym__Alignas] = ACTIONS(3974), - [sym_primitive_type] = ACTIONS(3974), - [anon_sym_enum] = ACTIONS(3974), - [anon_sym_class] = ACTIONS(3974), - [anon_sym_struct] = ACTIONS(3974), - [anon_sym_union] = ACTIONS(3974), - [anon_sym_if] = ACTIONS(3974), - [anon_sym_switch] = ACTIONS(3974), - [anon_sym_case] = ACTIONS(3974), - [anon_sym_default] = ACTIONS(3974), - [anon_sym_while] = ACTIONS(3974), - [anon_sym_do] = ACTIONS(3974), - [anon_sym_for] = ACTIONS(3974), - [anon_sym_return] = ACTIONS(3974), - [anon_sym_break] = ACTIONS(3974), - [anon_sym_continue] = ACTIONS(3974), - [anon_sym_goto] = ACTIONS(3974), - [anon_sym___try] = ACTIONS(3974), - [anon_sym___leave] = ACTIONS(3974), - [anon_sym_not] = ACTIONS(3974), - [anon_sym_compl] = ACTIONS(3974), - [anon_sym_DASH_DASH] = ACTIONS(3976), - [anon_sym_PLUS_PLUS] = ACTIONS(3976), - [anon_sym_sizeof] = ACTIONS(3974), - [anon_sym___alignof__] = ACTIONS(3974), - [anon_sym___alignof] = ACTIONS(3974), - [anon_sym__alignof] = ACTIONS(3974), - [anon_sym_alignof] = ACTIONS(3974), - [anon_sym__Alignof] = ACTIONS(3974), - [anon_sym_offsetof] = ACTIONS(3974), - [anon_sym__Generic] = ACTIONS(3974), - [anon_sym_typename] = ACTIONS(3974), - [anon_sym_asm] = ACTIONS(3974), - [anon_sym___asm__] = ACTIONS(3974), - [anon_sym___asm] = ACTIONS(3974), - [sym_number_literal] = ACTIONS(3976), - [anon_sym_L_SQUOTE] = ACTIONS(3976), - [anon_sym_u_SQUOTE] = ACTIONS(3976), - [anon_sym_U_SQUOTE] = ACTIONS(3976), - [anon_sym_u8_SQUOTE] = ACTIONS(3976), - [anon_sym_SQUOTE] = ACTIONS(3976), - [anon_sym_L_DQUOTE] = ACTIONS(3976), - [anon_sym_u_DQUOTE] = ACTIONS(3976), - [anon_sym_U_DQUOTE] = ACTIONS(3976), - [anon_sym_u8_DQUOTE] = ACTIONS(3976), - [anon_sym_DQUOTE] = ACTIONS(3976), - [sym_true] = ACTIONS(3974), - [sym_false] = ACTIONS(3974), - [anon_sym_NULL] = ACTIONS(3974), - [anon_sym_nullptr] = ACTIONS(3974), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3974), - [anon_sym_decltype] = ACTIONS(3974), - [anon_sym_explicit] = ACTIONS(3974), - [anon_sym_template] = ACTIONS(3974), - [anon_sym_operator] = ACTIONS(3974), - [anon_sym_try] = ACTIONS(3974), - [anon_sym_delete] = ACTIONS(3974), - [anon_sym_throw] = ACTIONS(3974), - [anon_sym_namespace] = ACTIONS(3974), - [anon_sym_static_assert] = ACTIONS(3974), - [anon_sym_concept] = ACTIONS(3974), - [anon_sym_co_return] = ACTIONS(3974), - [anon_sym_co_yield] = ACTIONS(3974), - [anon_sym_R_DQUOTE] = ACTIONS(3976), - [anon_sym_LR_DQUOTE] = ACTIONS(3976), - [anon_sym_uR_DQUOTE] = ACTIONS(3976), - [anon_sym_UR_DQUOTE] = ACTIONS(3976), - [anon_sym_u8R_DQUOTE] = ACTIONS(3976), - [anon_sym_co_await] = ACTIONS(3974), - [anon_sym_new] = ACTIONS(3974), - [anon_sym_requires] = ACTIONS(3974), - [anon_sym_CARET_CARET] = ACTIONS(3976), - [anon_sym_LBRACK_COLON] = ACTIONS(3976), - [sym_this] = ACTIONS(3974), - }, - [STATE(428)] = { - [sym_identifier] = ACTIONS(3978), - [aux_sym_preproc_include_token1] = ACTIONS(3978), - [aux_sym_preproc_def_token1] = ACTIONS(3978), - [aux_sym_preproc_if_token1] = ACTIONS(3978), - [aux_sym_preproc_if_token2] = ACTIONS(3978), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3978), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3978), - [aux_sym_preproc_else_token1] = ACTIONS(3978), - [aux_sym_preproc_elif_token1] = ACTIONS(3978), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3978), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3978), - [sym_preproc_directive] = ACTIONS(3978), - [anon_sym_LPAREN2] = ACTIONS(3980), - [anon_sym_BANG] = ACTIONS(3980), - [anon_sym_TILDE] = ACTIONS(3980), - [anon_sym_DASH] = ACTIONS(3978), - [anon_sym_PLUS] = ACTIONS(3978), - [anon_sym_STAR] = ACTIONS(3980), - [anon_sym_AMP_AMP] = ACTIONS(3980), - [anon_sym_AMP] = ACTIONS(3978), - [anon_sym_SEMI] = ACTIONS(3980), - [anon_sym___extension__] = ACTIONS(3978), - [anon_sym_typedef] = ACTIONS(3978), - [anon_sym_virtual] = ACTIONS(3978), - [anon_sym_extern] = ACTIONS(3978), - [anon_sym___attribute__] = ACTIONS(3978), - [anon_sym___attribute] = ACTIONS(3978), - [anon_sym_using] = ACTIONS(3978), - [anon_sym_COLON_COLON] = ACTIONS(3980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3980), - [anon_sym___declspec] = ACTIONS(3978), - [anon_sym___based] = ACTIONS(3978), - [anon_sym___cdecl] = ACTIONS(3978), - [anon_sym___clrcall] = ACTIONS(3978), - [anon_sym___stdcall] = ACTIONS(3978), - [anon_sym___fastcall] = ACTIONS(3978), - [anon_sym___thiscall] = ACTIONS(3978), - [anon_sym___vectorcall] = ACTIONS(3978), - [anon_sym_LBRACE] = ACTIONS(3980), - [anon_sym_signed] = ACTIONS(3978), - [anon_sym_unsigned] = ACTIONS(3978), - [anon_sym_long] = ACTIONS(3978), - [anon_sym_short] = ACTIONS(3978), - [anon_sym_LBRACK] = ACTIONS(3978), - [anon_sym_static] = ACTIONS(3978), - [anon_sym_register] = ACTIONS(3978), - [anon_sym_inline] = ACTIONS(3978), - [anon_sym___inline] = ACTIONS(3978), - [anon_sym___inline__] = ACTIONS(3978), - [anon_sym___forceinline] = ACTIONS(3978), - [anon_sym_thread_local] = ACTIONS(3978), - [anon_sym___thread] = ACTIONS(3978), - [anon_sym_const] = ACTIONS(3978), - [anon_sym_constexpr] = ACTIONS(3978), - [anon_sym_volatile] = ACTIONS(3978), - [anon_sym_restrict] = ACTIONS(3978), - [anon_sym___restrict__] = ACTIONS(3978), - [anon_sym__Atomic] = ACTIONS(3978), - [anon_sym__Noreturn] = ACTIONS(3978), - [anon_sym_noreturn] = ACTIONS(3978), - [anon_sym__Nonnull] = ACTIONS(3978), - [anon_sym_mutable] = ACTIONS(3978), - [anon_sym_constinit] = ACTIONS(3978), - [anon_sym_consteval] = ACTIONS(3978), - [anon_sym_alignas] = ACTIONS(3978), - [anon_sym__Alignas] = ACTIONS(3978), - [sym_primitive_type] = ACTIONS(3978), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3976), [anon_sym_enum] = ACTIONS(3978), - [anon_sym_class] = ACTIONS(3978), - [anon_sym_struct] = ACTIONS(3978), - [anon_sym_union] = ACTIONS(3978), - [anon_sym_if] = ACTIONS(3978), - [anon_sym_switch] = ACTIONS(3978), - [anon_sym_case] = ACTIONS(3978), - [anon_sym_default] = ACTIONS(3978), - [anon_sym_while] = ACTIONS(3978), - [anon_sym_do] = ACTIONS(3978), - [anon_sym_for] = ACTIONS(3978), - [anon_sym_return] = ACTIONS(3978), - [anon_sym_break] = ACTIONS(3978), - [anon_sym_continue] = ACTIONS(3978), - [anon_sym_goto] = ACTIONS(3978), - [anon_sym___try] = ACTIONS(3978), - [anon_sym___leave] = ACTIONS(3978), - [anon_sym_not] = ACTIONS(3978), - [anon_sym_compl] = ACTIONS(3978), + [anon_sym_class] = ACTIONS(3809), + [anon_sym_struct] = ACTIONS(3811), + [anon_sym_union] = ACTIONS(3813), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), [anon_sym_DASH_DASH] = ACTIONS(3980), [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(3978), - [anon_sym___alignof__] = ACTIONS(3978), - [anon_sym___alignof] = ACTIONS(3978), - [anon_sym__alignof] = ACTIONS(3978), - [anon_sym_alignof] = ACTIONS(3978), - [anon_sym__Alignof] = ACTIONS(3978), - [anon_sym_offsetof] = ACTIONS(3978), - [anon_sym__Generic] = ACTIONS(3978), - [anon_sym_typename] = ACTIONS(3978), - [anon_sym_asm] = ACTIONS(3978), - [anon_sym___asm__] = ACTIONS(3978), - [anon_sym___asm] = ACTIONS(3978), - [sym_number_literal] = ACTIONS(3980), - [anon_sym_L_SQUOTE] = ACTIONS(3980), - [anon_sym_u_SQUOTE] = ACTIONS(3980), - [anon_sym_U_SQUOTE] = ACTIONS(3980), - [anon_sym_u8_SQUOTE] = ACTIONS(3980), - [anon_sym_SQUOTE] = ACTIONS(3980), - [anon_sym_L_DQUOTE] = ACTIONS(3980), - [anon_sym_u_DQUOTE] = ACTIONS(3980), - [anon_sym_U_DQUOTE] = ACTIONS(3980), - [anon_sym_u8_DQUOTE] = ACTIONS(3980), - [anon_sym_DQUOTE] = ACTIONS(3980), - [sym_true] = ACTIONS(3978), - [sym_false] = ACTIONS(3978), - [anon_sym_NULL] = ACTIONS(3978), - [anon_sym_nullptr] = ACTIONS(3978), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3978), - [anon_sym_decltype] = ACTIONS(3978), - [anon_sym_explicit] = ACTIONS(3978), - [anon_sym_template] = ACTIONS(3978), - [anon_sym_operator] = ACTIONS(3978), - [anon_sym_try] = ACTIONS(3978), - [anon_sym_delete] = ACTIONS(3978), - [anon_sym_throw] = ACTIONS(3978), - [anon_sym_namespace] = ACTIONS(3978), - [anon_sym_static_assert] = ACTIONS(3978), - [anon_sym_concept] = ACTIONS(3978), - [anon_sym_co_return] = ACTIONS(3978), - [anon_sym_co_yield] = ACTIONS(3978), - [anon_sym_R_DQUOTE] = ACTIONS(3980), - [anon_sym_LR_DQUOTE] = ACTIONS(3980), - [anon_sym_uR_DQUOTE] = ACTIONS(3980), - [anon_sym_UR_DQUOTE] = ACTIONS(3980), - [anon_sym_u8R_DQUOTE] = ACTIONS(3980), - [anon_sym_co_await] = ACTIONS(3978), - [anon_sym_new] = ACTIONS(3978), - [anon_sym_requires] = ACTIONS(3978), - [anon_sym_CARET_CARET] = ACTIONS(3980), - [anon_sym_LBRACK_COLON] = ACTIONS(3980), - [sym_this] = ACTIONS(3978), - }, - [STATE(429)] = { - [sym_identifier] = ACTIONS(3982), - [aux_sym_preproc_include_token1] = ACTIONS(3982), - [aux_sym_preproc_def_token1] = ACTIONS(3982), - [aux_sym_preproc_if_token1] = ACTIONS(3982), - [aux_sym_preproc_if_token2] = ACTIONS(3982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3982), - [aux_sym_preproc_else_token1] = ACTIONS(3982), - [aux_sym_preproc_elif_token1] = ACTIONS(3982), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3982), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3982), - [sym_preproc_directive] = ACTIONS(3982), - [anon_sym_LPAREN2] = ACTIONS(3984), - [anon_sym_BANG] = ACTIONS(3984), - [anon_sym_TILDE] = ACTIONS(3984), - [anon_sym_DASH] = ACTIONS(3982), - [anon_sym_PLUS] = ACTIONS(3982), - [anon_sym_STAR] = ACTIONS(3984), - [anon_sym_AMP_AMP] = ACTIONS(3984), - [anon_sym_AMP] = ACTIONS(3982), - [anon_sym_SEMI] = ACTIONS(3984), - [anon_sym___extension__] = ACTIONS(3982), - [anon_sym_typedef] = ACTIONS(3982), - [anon_sym_virtual] = ACTIONS(3982), - [anon_sym_extern] = ACTIONS(3982), - [anon_sym___attribute__] = ACTIONS(3982), - [anon_sym___attribute] = ACTIONS(3982), - [anon_sym_using] = ACTIONS(3982), - [anon_sym_COLON_COLON] = ACTIONS(3984), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3984), - [anon_sym___declspec] = ACTIONS(3982), - [anon_sym___based] = ACTIONS(3982), - [anon_sym___cdecl] = ACTIONS(3982), - [anon_sym___clrcall] = ACTIONS(3982), - [anon_sym___stdcall] = ACTIONS(3982), - [anon_sym___fastcall] = ACTIONS(3982), - [anon_sym___thiscall] = ACTIONS(3982), - [anon_sym___vectorcall] = ACTIONS(3982), - [anon_sym_LBRACE] = ACTIONS(3984), - [anon_sym_signed] = ACTIONS(3982), - [anon_sym_unsigned] = ACTIONS(3982), - [anon_sym_long] = ACTIONS(3982), - [anon_sym_short] = ACTIONS(3982), - [anon_sym_LBRACK] = ACTIONS(3982), - [anon_sym_static] = ACTIONS(3982), - [anon_sym_register] = ACTIONS(3982), - [anon_sym_inline] = ACTIONS(3982), - [anon_sym___inline] = ACTIONS(3982), - [anon_sym___inline__] = ACTIONS(3982), - [anon_sym___forceinline] = ACTIONS(3982), - [anon_sym_thread_local] = ACTIONS(3982), - [anon_sym___thread] = ACTIONS(3982), - [anon_sym_const] = ACTIONS(3982), - [anon_sym_constexpr] = ACTIONS(3982), - [anon_sym_volatile] = ACTIONS(3982), - [anon_sym_restrict] = ACTIONS(3982), - [anon_sym___restrict__] = ACTIONS(3982), - [anon_sym__Atomic] = ACTIONS(3982), - [anon_sym__Noreturn] = ACTIONS(3982), - [anon_sym_noreturn] = ACTIONS(3982), - [anon_sym__Nonnull] = ACTIONS(3982), - [anon_sym_mutable] = ACTIONS(3982), - [anon_sym_constinit] = ACTIONS(3982), - [anon_sym_consteval] = ACTIONS(3982), - [anon_sym_alignas] = ACTIONS(3982), - [anon_sym__Alignas] = ACTIONS(3982), - [sym_primitive_type] = ACTIONS(3982), - [anon_sym_enum] = ACTIONS(3982), - [anon_sym_class] = ACTIONS(3982), - [anon_sym_struct] = ACTIONS(3982), - [anon_sym_union] = ACTIONS(3982), - [anon_sym_if] = ACTIONS(3982), - [anon_sym_switch] = ACTIONS(3982), - [anon_sym_case] = ACTIONS(3982), - [anon_sym_default] = ACTIONS(3982), - [anon_sym_while] = ACTIONS(3982), - [anon_sym_do] = ACTIONS(3982), - [anon_sym_for] = ACTIONS(3982), - [anon_sym_return] = ACTIONS(3982), - [anon_sym_break] = ACTIONS(3982), - [anon_sym_continue] = ACTIONS(3982), - [anon_sym_goto] = ACTIONS(3982), - [anon_sym___try] = ACTIONS(3982), - [anon_sym___leave] = ACTIONS(3982), - [anon_sym_not] = ACTIONS(3982), - [anon_sym_compl] = ACTIONS(3982), - [anon_sym_DASH_DASH] = ACTIONS(3984), - [anon_sym_PLUS_PLUS] = ACTIONS(3984), - [anon_sym_sizeof] = ACTIONS(3982), - [anon_sym___alignof__] = ACTIONS(3982), - [anon_sym___alignof] = ACTIONS(3982), - [anon_sym__alignof] = ACTIONS(3982), - [anon_sym_alignof] = ACTIONS(3982), - [anon_sym__Alignof] = ACTIONS(3982), - [anon_sym_offsetof] = ACTIONS(3982), - [anon_sym__Generic] = ACTIONS(3982), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), [anon_sym_typename] = ACTIONS(3982), - [anon_sym_asm] = ACTIONS(3982), - [anon_sym___asm__] = ACTIONS(3982), - [anon_sym___asm] = ACTIONS(3982), - [sym_number_literal] = ACTIONS(3984), - [anon_sym_L_SQUOTE] = ACTIONS(3984), - [anon_sym_u_SQUOTE] = ACTIONS(3984), - [anon_sym_U_SQUOTE] = ACTIONS(3984), - [anon_sym_u8_SQUOTE] = ACTIONS(3984), - [anon_sym_SQUOTE] = ACTIONS(3984), - [anon_sym_L_DQUOTE] = ACTIONS(3984), - [anon_sym_u_DQUOTE] = ACTIONS(3984), - [anon_sym_U_DQUOTE] = ACTIONS(3984), - [anon_sym_u8_DQUOTE] = ACTIONS(3984), - [anon_sym_DQUOTE] = ACTIONS(3984), - [sym_true] = ACTIONS(3982), - [sym_false] = ACTIONS(3982), - [anon_sym_NULL] = ACTIONS(3982), - [anon_sym_nullptr] = ACTIONS(3982), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3982), - [anon_sym_decltype] = ACTIONS(3982), - [anon_sym_explicit] = ACTIONS(3982), - [anon_sym_template] = ACTIONS(3982), - [anon_sym_operator] = ACTIONS(3982), - [anon_sym_try] = ACTIONS(3982), - [anon_sym_delete] = ACTIONS(3982), - [anon_sym_throw] = ACTIONS(3982), - [anon_sym_namespace] = ACTIONS(3982), - [anon_sym_static_assert] = ACTIONS(3982), - [anon_sym_concept] = ACTIONS(3982), - [anon_sym_co_return] = ACTIONS(3982), - [anon_sym_co_yield] = ACTIONS(3982), - [anon_sym_R_DQUOTE] = ACTIONS(3984), - [anon_sym_LR_DQUOTE] = ACTIONS(3984), - [anon_sym_uR_DQUOTE] = ACTIONS(3984), - [anon_sym_UR_DQUOTE] = ACTIONS(3984), - [anon_sym_u8R_DQUOTE] = ACTIONS(3984), - [anon_sym_co_await] = ACTIONS(3982), - [anon_sym_new] = ACTIONS(3982), - [anon_sym_requires] = ACTIONS(3982), - [anon_sym_CARET_CARET] = ACTIONS(3984), - [anon_sym_LBRACK_COLON] = ACTIONS(3984), - [sym_this] = ACTIONS(3982), - }, - [STATE(430)] = { - [ts_builtin_sym_end] = ACTIONS(3670), - [sym_identifier] = ACTIONS(3668), - [aux_sym_preproc_include_token1] = ACTIONS(3668), - [aux_sym_preproc_def_token1] = ACTIONS(3668), - [aux_sym_preproc_if_token1] = ACTIONS(3668), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), - [sym_preproc_directive] = ACTIONS(3668), - [anon_sym_LPAREN2] = ACTIONS(3670), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_TILDE] = ACTIONS(3670), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3670), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_SEMI] = ACTIONS(3670), - [anon_sym___extension__] = ACTIONS(3668), - [anon_sym_typedef] = ACTIONS(3668), - [anon_sym_virtual] = ACTIONS(3668), - [anon_sym_extern] = ACTIONS(3668), - [anon_sym___attribute__] = ACTIONS(3668), - [anon_sym___attribute] = ACTIONS(3668), - [anon_sym_using] = ACTIONS(3668), - [anon_sym_COLON_COLON] = ACTIONS(3670), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), - [anon_sym___declspec] = ACTIONS(3668), - [anon_sym___based] = ACTIONS(3668), - [anon_sym___cdecl] = ACTIONS(3668), - [anon_sym___clrcall] = ACTIONS(3668), - [anon_sym___stdcall] = ACTIONS(3668), - [anon_sym___fastcall] = ACTIONS(3668), - [anon_sym___thiscall] = ACTIONS(3668), - [anon_sym___vectorcall] = ACTIONS(3668), - [anon_sym_LBRACE] = ACTIONS(3670), - [anon_sym_signed] = ACTIONS(3668), - [anon_sym_unsigned] = ACTIONS(3668), - [anon_sym_long] = ACTIONS(3668), - [anon_sym_short] = ACTIONS(3668), - [anon_sym_LBRACK] = ACTIONS(3668), - [anon_sym_static] = ACTIONS(3668), - [anon_sym_register] = ACTIONS(3668), - [anon_sym_inline] = ACTIONS(3668), - [anon_sym___inline] = ACTIONS(3668), - [anon_sym___inline__] = ACTIONS(3668), - [anon_sym___forceinline] = ACTIONS(3668), - [anon_sym_thread_local] = ACTIONS(3668), - [anon_sym___thread] = ACTIONS(3668), - [anon_sym_const] = ACTIONS(3668), - [anon_sym_constexpr] = ACTIONS(3668), - [anon_sym_volatile] = ACTIONS(3668), - [anon_sym_restrict] = ACTIONS(3668), - [anon_sym___restrict__] = ACTIONS(3668), - [anon_sym__Atomic] = ACTIONS(3668), - [anon_sym__Noreturn] = ACTIONS(3668), - [anon_sym_noreturn] = ACTIONS(3668), - [anon_sym__Nonnull] = ACTIONS(3668), - [anon_sym_mutable] = ACTIONS(3668), - [anon_sym_constinit] = ACTIONS(3668), - [anon_sym_consteval] = ACTIONS(3668), - [anon_sym_alignas] = ACTIONS(3668), - [anon_sym__Alignas] = ACTIONS(3668), - [sym_primitive_type] = ACTIONS(3668), - [anon_sym_enum] = ACTIONS(3668), - [anon_sym_class] = ACTIONS(3668), - [anon_sym_struct] = ACTIONS(3668), - [anon_sym_union] = ACTIONS(3668), - [anon_sym_if] = ACTIONS(3668), - [anon_sym_else] = ACTIONS(3668), - [anon_sym_switch] = ACTIONS(3668), - [anon_sym_case] = ACTIONS(3668), - [anon_sym_default] = ACTIONS(3668), - [anon_sym_while] = ACTIONS(3668), - [anon_sym_do] = ACTIONS(3668), - [anon_sym_for] = ACTIONS(3668), - [anon_sym_return] = ACTIONS(3668), - [anon_sym_break] = ACTIONS(3668), - [anon_sym_continue] = ACTIONS(3668), - [anon_sym_goto] = ACTIONS(3668), - [anon_sym___try] = ACTIONS(3668), - [anon_sym___leave] = ACTIONS(3668), - [anon_sym_not] = ACTIONS(3668), - [anon_sym_compl] = ACTIONS(3668), - [anon_sym_DASH_DASH] = ACTIONS(3670), - [anon_sym_PLUS_PLUS] = ACTIONS(3670), - [anon_sym_sizeof] = ACTIONS(3668), - [anon_sym___alignof__] = ACTIONS(3668), - [anon_sym___alignof] = ACTIONS(3668), - [anon_sym__alignof] = ACTIONS(3668), - [anon_sym_alignof] = ACTIONS(3668), - [anon_sym__Alignof] = ACTIONS(3668), - [anon_sym_offsetof] = ACTIONS(3668), - [anon_sym__Generic] = ACTIONS(3668), - [anon_sym_typename] = ACTIONS(3668), - [anon_sym_asm] = ACTIONS(3668), - [anon_sym___asm__] = ACTIONS(3668), - [anon_sym___asm] = ACTIONS(3668), - [sym_number_literal] = ACTIONS(3670), - [anon_sym_L_SQUOTE] = ACTIONS(3670), - [anon_sym_u_SQUOTE] = ACTIONS(3670), - [anon_sym_U_SQUOTE] = ACTIONS(3670), - [anon_sym_u8_SQUOTE] = ACTIONS(3670), - [anon_sym_SQUOTE] = ACTIONS(3670), - [anon_sym_L_DQUOTE] = ACTIONS(3670), - [anon_sym_u_DQUOTE] = ACTIONS(3670), - [anon_sym_U_DQUOTE] = ACTIONS(3670), - [anon_sym_u8_DQUOTE] = ACTIONS(3670), - [anon_sym_DQUOTE] = ACTIONS(3670), - [sym_true] = ACTIONS(3668), - [sym_false] = ACTIONS(3668), - [anon_sym_NULL] = ACTIONS(3668), - [anon_sym_nullptr] = ACTIONS(3668), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3668), - [anon_sym_decltype] = ACTIONS(3668), - [anon_sym_explicit] = ACTIONS(3668), - [anon_sym_export] = ACTIONS(3668), - [anon_sym_module] = ACTIONS(3668), - [anon_sym_import] = ACTIONS(3668), - [anon_sym_template] = ACTIONS(3668), - [anon_sym_operator] = ACTIONS(3668), - [anon_sym_try] = ACTIONS(3668), - [anon_sym_delete] = ACTIONS(3668), - [anon_sym_throw] = ACTIONS(3668), - [anon_sym_namespace] = ACTIONS(3668), - [anon_sym_static_assert] = ACTIONS(3668), - [anon_sym_concept] = ACTIONS(3668), - [anon_sym_co_return] = ACTIONS(3668), - [anon_sym_co_yield] = ACTIONS(3668), - [anon_sym_R_DQUOTE] = ACTIONS(3670), - [anon_sym_LR_DQUOTE] = ACTIONS(3670), - [anon_sym_uR_DQUOTE] = ACTIONS(3670), - [anon_sym_UR_DQUOTE] = ACTIONS(3670), - [anon_sym_u8R_DQUOTE] = ACTIONS(3670), - [anon_sym_co_await] = ACTIONS(3668), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_requires] = ACTIONS(3668), - [anon_sym_CARET_CARET] = ACTIONS(3670), - [anon_sym_LBRACK_COLON] = ACTIONS(3670), - [sym_this] = ACTIONS(3668), - }, - [STATE(431)] = { - [sym_identifier] = ACTIONS(3986), - [aux_sym_preproc_include_token1] = ACTIONS(3986), - [aux_sym_preproc_def_token1] = ACTIONS(3986), - [aux_sym_preproc_if_token1] = ACTIONS(3986), - [aux_sym_preproc_if_token2] = ACTIONS(3986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3986), - [aux_sym_preproc_else_token1] = ACTIONS(3986), - [aux_sym_preproc_elif_token1] = ACTIONS(3986), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3986), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3986), - [sym_preproc_directive] = ACTIONS(3986), - [anon_sym_LPAREN2] = ACTIONS(3988), - [anon_sym_BANG] = ACTIONS(3988), - [anon_sym_TILDE] = ACTIONS(3988), - [anon_sym_DASH] = ACTIONS(3986), - [anon_sym_PLUS] = ACTIONS(3986), - [anon_sym_STAR] = ACTIONS(3988), - [anon_sym_AMP_AMP] = ACTIONS(3988), - [anon_sym_AMP] = ACTIONS(3986), - [anon_sym_SEMI] = ACTIONS(3988), - [anon_sym___extension__] = ACTIONS(3986), - [anon_sym_typedef] = ACTIONS(3986), - [anon_sym_virtual] = ACTIONS(3986), - [anon_sym_extern] = ACTIONS(3986), - [anon_sym___attribute__] = ACTIONS(3986), - [anon_sym___attribute] = ACTIONS(3986), - [anon_sym_using] = ACTIONS(3986), - [anon_sym_COLON_COLON] = ACTIONS(3988), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3988), - [anon_sym___declspec] = ACTIONS(3986), - [anon_sym___based] = ACTIONS(3986), - [anon_sym___cdecl] = ACTIONS(3986), - [anon_sym___clrcall] = ACTIONS(3986), - [anon_sym___stdcall] = ACTIONS(3986), - [anon_sym___fastcall] = ACTIONS(3986), - [anon_sym___thiscall] = ACTIONS(3986), - [anon_sym___vectorcall] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3988), - [anon_sym_signed] = ACTIONS(3986), - [anon_sym_unsigned] = ACTIONS(3986), - [anon_sym_long] = ACTIONS(3986), - [anon_sym_short] = ACTIONS(3986), - [anon_sym_LBRACK] = ACTIONS(3986), - [anon_sym_static] = ACTIONS(3986), - [anon_sym_register] = ACTIONS(3986), - [anon_sym_inline] = ACTIONS(3986), - [anon_sym___inline] = ACTIONS(3986), - [anon_sym___inline__] = ACTIONS(3986), - [anon_sym___forceinline] = ACTIONS(3986), - [anon_sym_thread_local] = ACTIONS(3986), - [anon_sym___thread] = ACTIONS(3986), - [anon_sym_const] = ACTIONS(3986), - [anon_sym_constexpr] = ACTIONS(3986), - [anon_sym_volatile] = ACTIONS(3986), - [anon_sym_restrict] = ACTIONS(3986), - [anon_sym___restrict__] = ACTIONS(3986), - [anon_sym__Atomic] = ACTIONS(3986), - [anon_sym__Noreturn] = ACTIONS(3986), - [anon_sym_noreturn] = ACTIONS(3986), - [anon_sym__Nonnull] = ACTIONS(3986), - [anon_sym_mutable] = ACTIONS(3986), - [anon_sym_constinit] = ACTIONS(3986), - [anon_sym_consteval] = ACTIONS(3986), - [anon_sym_alignas] = ACTIONS(3986), - [anon_sym__Alignas] = ACTIONS(3986), - [sym_primitive_type] = ACTIONS(3986), - [anon_sym_enum] = ACTIONS(3986), - [anon_sym_class] = ACTIONS(3986), - [anon_sym_struct] = ACTIONS(3986), - [anon_sym_union] = ACTIONS(3986), - [anon_sym_if] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(3986), - [anon_sym_case] = ACTIONS(3986), - [anon_sym_default] = ACTIONS(3986), - [anon_sym_while] = ACTIONS(3986), - [anon_sym_do] = ACTIONS(3986), - [anon_sym_for] = ACTIONS(3986), - [anon_sym_return] = ACTIONS(3986), - [anon_sym_break] = ACTIONS(3986), - [anon_sym_continue] = ACTIONS(3986), - [anon_sym_goto] = ACTIONS(3986), - [anon_sym___try] = ACTIONS(3986), - [anon_sym___leave] = ACTIONS(3986), - [anon_sym_not] = ACTIONS(3986), - [anon_sym_compl] = ACTIONS(3986), - [anon_sym_DASH_DASH] = ACTIONS(3988), - [anon_sym_PLUS_PLUS] = ACTIONS(3988), - [anon_sym_sizeof] = ACTIONS(3986), - [anon_sym___alignof__] = ACTIONS(3986), - [anon_sym___alignof] = ACTIONS(3986), - [anon_sym__alignof] = ACTIONS(3986), - [anon_sym_alignof] = ACTIONS(3986), - [anon_sym__Alignof] = ACTIONS(3986), - [anon_sym_offsetof] = ACTIONS(3986), - [anon_sym__Generic] = ACTIONS(3986), - [anon_sym_typename] = ACTIONS(3986), - [anon_sym_asm] = ACTIONS(3986), - [anon_sym___asm__] = ACTIONS(3986), - [anon_sym___asm] = ACTIONS(3986), - [sym_number_literal] = ACTIONS(3988), - [anon_sym_L_SQUOTE] = ACTIONS(3988), - [anon_sym_u_SQUOTE] = ACTIONS(3988), - [anon_sym_U_SQUOTE] = ACTIONS(3988), - [anon_sym_u8_SQUOTE] = ACTIONS(3988), - [anon_sym_SQUOTE] = ACTIONS(3988), - [anon_sym_L_DQUOTE] = ACTIONS(3988), - [anon_sym_u_DQUOTE] = ACTIONS(3988), - [anon_sym_U_DQUOTE] = ACTIONS(3988), - [anon_sym_u8_DQUOTE] = ACTIONS(3988), - [anon_sym_DQUOTE] = ACTIONS(3988), - [sym_true] = ACTIONS(3986), - [sym_false] = ACTIONS(3986), - [anon_sym_NULL] = ACTIONS(3986), - [anon_sym_nullptr] = ACTIONS(3986), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3986), - [anon_sym_decltype] = ACTIONS(3986), - [anon_sym_explicit] = ACTIONS(3986), - [anon_sym_template] = ACTIONS(3986), - [anon_sym_operator] = ACTIONS(3986), - [anon_sym_try] = ACTIONS(3986), - [anon_sym_delete] = ACTIONS(3986), - [anon_sym_throw] = ACTIONS(3986), - [anon_sym_namespace] = ACTIONS(3986), - [anon_sym_static_assert] = ACTIONS(3986), - [anon_sym_concept] = ACTIONS(3986), - [anon_sym_co_return] = ACTIONS(3986), - [anon_sym_co_yield] = ACTIONS(3986), - [anon_sym_R_DQUOTE] = ACTIONS(3988), - [anon_sym_LR_DQUOTE] = ACTIONS(3988), - [anon_sym_uR_DQUOTE] = ACTIONS(3988), - [anon_sym_UR_DQUOTE] = ACTIONS(3988), - [anon_sym_u8R_DQUOTE] = ACTIONS(3988), - [anon_sym_co_await] = ACTIONS(3986), - [anon_sym_new] = ACTIONS(3986), - [anon_sym_requires] = ACTIONS(3986), - [anon_sym_CARET_CARET] = ACTIONS(3988), - [anon_sym_LBRACK_COLON] = ACTIONS(3988), - [sym_this] = ACTIONS(3986), - }, - [STATE(432)] = { - [sym_identifier] = ACTIONS(3990), - [aux_sym_preproc_include_token1] = ACTIONS(3990), - [aux_sym_preproc_def_token1] = ACTIONS(3990), - [aux_sym_preproc_if_token1] = ACTIONS(3990), - [aux_sym_preproc_if_token2] = ACTIONS(3990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3990), - [aux_sym_preproc_else_token1] = ACTIONS(3990), - [aux_sym_preproc_elif_token1] = ACTIONS(3990), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3990), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3990), - [sym_preproc_directive] = ACTIONS(3990), - [anon_sym_LPAREN2] = ACTIONS(3992), - [anon_sym_BANG] = ACTIONS(3992), - [anon_sym_TILDE] = ACTIONS(3992), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3992), - [anon_sym_AMP] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(3992), - [anon_sym___extension__] = ACTIONS(3990), - [anon_sym_typedef] = ACTIONS(3990), - [anon_sym_virtual] = ACTIONS(3990), - [anon_sym_extern] = ACTIONS(3990), - [anon_sym___attribute__] = ACTIONS(3990), - [anon_sym___attribute] = ACTIONS(3990), - [anon_sym_using] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3992), - [anon_sym___declspec] = ACTIONS(3990), - [anon_sym___based] = ACTIONS(3990), - [anon_sym___cdecl] = ACTIONS(3990), - [anon_sym___clrcall] = ACTIONS(3990), - [anon_sym___stdcall] = ACTIONS(3990), - [anon_sym___fastcall] = ACTIONS(3990), - [anon_sym___thiscall] = ACTIONS(3990), - [anon_sym___vectorcall] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(3992), - [anon_sym_signed] = ACTIONS(3990), - [anon_sym_unsigned] = ACTIONS(3990), - [anon_sym_long] = ACTIONS(3990), - [anon_sym_short] = ACTIONS(3990), - [anon_sym_LBRACK] = ACTIONS(3990), - [anon_sym_static] = ACTIONS(3990), - [anon_sym_register] = ACTIONS(3990), - [anon_sym_inline] = ACTIONS(3990), - [anon_sym___inline] = ACTIONS(3990), - [anon_sym___inline__] = ACTIONS(3990), - [anon_sym___forceinline] = ACTIONS(3990), - [anon_sym_thread_local] = ACTIONS(3990), - [anon_sym___thread] = ACTIONS(3990), - [anon_sym_const] = ACTIONS(3990), - [anon_sym_constexpr] = ACTIONS(3990), - [anon_sym_volatile] = ACTIONS(3990), - [anon_sym_restrict] = ACTIONS(3990), - [anon_sym___restrict__] = ACTIONS(3990), - [anon_sym__Atomic] = ACTIONS(3990), - [anon_sym__Noreturn] = ACTIONS(3990), - [anon_sym_noreturn] = ACTIONS(3990), - [anon_sym__Nonnull] = ACTIONS(3990), - [anon_sym_mutable] = ACTIONS(3990), - [anon_sym_constinit] = ACTIONS(3990), - [anon_sym_consteval] = ACTIONS(3990), - [anon_sym_alignas] = ACTIONS(3990), - [anon_sym__Alignas] = ACTIONS(3990), - [sym_primitive_type] = ACTIONS(3990), - [anon_sym_enum] = ACTIONS(3990), - [anon_sym_class] = ACTIONS(3990), - [anon_sym_struct] = ACTIONS(3990), - [anon_sym_union] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_switch] = ACTIONS(3990), - [anon_sym_case] = ACTIONS(3990), - [anon_sym_default] = ACTIONS(3990), - [anon_sym_while] = ACTIONS(3990), - [anon_sym_do] = ACTIONS(3990), - [anon_sym_for] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_goto] = ACTIONS(3990), - [anon_sym___try] = ACTIONS(3990), - [anon_sym___leave] = ACTIONS(3990), - [anon_sym_not] = ACTIONS(3990), - [anon_sym_compl] = ACTIONS(3990), - [anon_sym_DASH_DASH] = ACTIONS(3992), - [anon_sym_PLUS_PLUS] = ACTIONS(3992), - [anon_sym_sizeof] = ACTIONS(3990), - [anon_sym___alignof__] = ACTIONS(3990), - [anon_sym___alignof] = ACTIONS(3990), - [anon_sym__alignof] = ACTIONS(3990), - [anon_sym_alignof] = ACTIONS(3990), - [anon_sym__Alignof] = ACTIONS(3990), - [anon_sym_offsetof] = ACTIONS(3990), - [anon_sym__Generic] = ACTIONS(3990), - [anon_sym_typename] = ACTIONS(3990), - [anon_sym_asm] = ACTIONS(3990), - [anon_sym___asm__] = ACTIONS(3990), - [anon_sym___asm] = ACTIONS(3990), - [sym_number_literal] = ACTIONS(3992), - [anon_sym_L_SQUOTE] = ACTIONS(3992), - [anon_sym_u_SQUOTE] = ACTIONS(3992), - [anon_sym_U_SQUOTE] = ACTIONS(3992), - [anon_sym_u8_SQUOTE] = ACTIONS(3992), - [anon_sym_SQUOTE] = ACTIONS(3992), - [anon_sym_L_DQUOTE] = ACTIONS(3992), - [anon_sym_u_DQUOTE] = ACTIONS(3992), - [anon_sym_U_DQUOTE] = ACTIONS(3992), - [anon_sym_u8_DQUOTE] = ACTIONS(3992), - [anon_sym_DQUOTE] = ACTIONS(3992), - [sym_true] = ACTIONS(3990), - [sym_false] = ACTIONS(3990), - [anon_sym_NULL] = ACTIONS(3990), - [anon_sym_nullptr] = ACTIONS(3990), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3990), - [anon_sym_decltype] = ACTIONS(3990), - [anon_sym_explicit] = ACTIONS(3990), - [anon_sym_template] = ACTIONS(3990), - [anon_sym_operator] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_delete] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_namespace] = ACTIONS(3990), - [anon_sym_static_assert] = ACTIONS(3990), - [anon_sym_concept] = ACTIONS(3990), - [anon_sym_co_return] = ACTIONS(3990), - [anon_sym_co_yield] = ACTIONS(3990), - [anon_sym_R_DQUOTE] = ACTIONS(3992), - [anon_sym_LR_DQUOTE] = ACTIONS(3992), - [anon_sym_uR_DQUOTE] = ACTIONS(3992), - [anon_sym_UR_DQUOTE] = ACTIONS(3992), - [anon_sym_u8R_DQUOTE] = ACTIONS(3992), - [anon_sym_co_await] = ACTIONS(3990), - [anon_sym_new] = ACTIONS(3990), - [anon_sym_requires] = ACTIONS(3990), - [anon_sym_CARET_CARET] = ACTIONS(3992), - [anon_sym_LBRACK_COLON] = ACTIONS(3992), - [sym_this] = ACTIONS(3990), - }, - [STATE(433)] = { - [ts_builtin_sym_end] = ACTIONS(3624), - [sym_identifier] = ACTIONS(3622), - [aux_sym_preproc_include_token1] = ACTIONS(3622), - [aux_sym_preproc_def_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), - [sym_preproc_directive] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3622), - [anon_sym_PLUS] = ACTIONS(3622), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP_AMP] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym___attribute] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym___based] = ACTIONS(3622), - [anon_sym___cdecl] = ACTIONS(3622), - [anon_sym___clrcall] = ACTIONS(3622), - [anon_sym___stdcall] = ACTIONS(3622), - [anon_sym___fastcall] = ACTIONS(3622), - [anon_sym___thiscall] = ACTIONS(3622), - [anon_sym___vectorcall] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3624), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym__Nonnull] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym__Alignas] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_if] = ACTIONS(3622), - [anon_sym_else] = ACTIONS(3622), - [anon_sym_switch] = ACTIONS(3622), - [anon_sym_case] = ACTIONS(3622), - [anon_sym_default] = ACTIONS(3622), - [anon_sym_while] = ACTIONS(3622), - [anon_sym_do] = ACTIONS(3622), - [anon_sym_for] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3622), - [anon_sym_break] = ACTIONS(3622), - [anon_sym_continue] = ACTIONS(3622), - [anon_sym_goto] = ACTIONS(3622), - [anon_sym___try] = ACTIONS(3622), - [anon_sym___leave] = ACTIONS(3622), - [anon_sym_not] = ACTIONS(3622), - [anon_sym_compl] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3624), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_sizeof] = ACTIONS(3622), - [anon_sym___alignof__] = ACTIONS(3622), - [anon_sym___alignof] = ACTIONS(3622), - [anon_sym__alignof] = ACTIONS(3622), - [anon_sym_alignof] = ACTIONS(3622), - [anon_sym__Alignof] = ACTIONS(3622), - [anon_sym_offsetof] = ACTIONS(3622), - [anon_sym__Generic] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [anon_sym_asm] = ACTIONS(3622), - [anon_sym___asm__] = ACTIONS(3622), - [anon_sym___asm] = ACTIONS(3622), - [sym_number_literal] = ACTIONS(3624), - [anon_sym_L_SQUOTE] = ACTIONS(3624), - [anon_sym_u_SQUOTE] = ACTIONS(3624), - [anon_sym_U_SQUOTE] = ACTIONS(3624), - [anon_sym_u8_SQUOTE] = ACTIONS(3624), - [anon_sym_SQUOTE] = ACTIONS(3624), - [anon_sym_L_DQUOTE] = ACTIONS(3624), - [anon_sym_u_DQUOTE] = ACTIONS(3624), - [anon_sym_U_DQUOTE] = ACTIONS(3624), - [anon_sym_u8_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [sym_true] = ACTIONS(3622), - [sym_false] = ACTIONS(3622), - [anon_sym_NULL] = ACTIONS(3622), - [anon_sym_nullptr] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_explicit] = ACTIONS(3622), - [anon_sym_export] = ACTIONS(3622), - [anon_sym_module] = ACTIONS(3622), - [anon_sym_import] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_operator] = ACTIONS(3622), - [anon_sym_try] = ACTIONS(3622), - [anon_sym_delete] = ACTIONS(3622), - [anon_sym_throw] = ACTIONS(3622), - [anon_sym_namespace] = ACTIONS(3622), - [anon_sym_static_assert] = ACTIONS(3622), - [anon_sym_concept] = ACTIONS(3622), - [anon_sym_co_return] = ACTIONS(3622), - [anon_sym_co_yield] = ACTIONS(3622), - [anon_sym_R_DQUOTE] = ACTIONS(3624), - [anon_sym_LR_DQUOTE] = ACTIONS(3624), - [anon_sym_uR_DQUOTE] = ACTIONS(3624), - [anon_sym_UR_DQUOTE] = ACTIONS(3624), - [anon_sym_u8R_DQUOTE] = ACTIONS(3624), - [anon_sym_co_await] = ACTIONS(3622), - [anon_sym_new] = ACTIONS(3622), - [anon_sym_requires] = ACTIONS(3622), - [anon_sym_CARET_CARET] = ACTIONS(3624), - [anon_sym_LBRACK_COLON] = ACTIONS(3624), - [sym_this] = ACTIONS(3622), - }, - [STATE(434)] = { - [sym_identifier] = ACTIONS(3994), - [aux_sym_preproc_include_token1] = ACTIONS(3994), - [aux_sym_preproc_def_token1] = ACTIONS(3994), - [aux_sym_preproc_if_token1] = ACTIONS(3994), - [aux_sym_preproc_if_token2] = ACTIONS(3994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3994), - [aux_sym_preproc_else_token1] = ACTIONS(3994), - [aux_sym_preproc_elif_token1] = ACTIONS(3994), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3994), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3994), - [sym_preproc_directive] = ACTIONS(3994), - [anon_sym_LPAREN2] = ACTIONS(3996), - [anon_sym_BANG] = ACTIONS(3996), - [anon_sym_TILDE] = ACTIONS(3996), - [anon_sym_DASH] = ACTIONS(3994), - [anon_sym_PLUS] = ACTIONS(3994), - [anon_sym_STAR] = ACTIONS(3996), - [anon_sym_AMP_AMP] = ACTIONS(3996), - [anon_sym_AMP] = ACTIONS(3994), - [anon_sym_SEMI] = ACTIONS(3996), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_typedef] = ACTIONS(3994), - [anon_sym_virtual] = ACTIONS(3994), - [anon_sym_extern] = ACTIONS(3994), - [anon_sym___attribute__] = ACTIONS(3994), - [anon_sym___attribute] = ACTIONS(3994), - [anon_sym_using] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3996), - [anon_sym___declspec] = ACTIONS(3994), - [anon_sym___based] = ACTIONS(3994), - [anon_sym___cdecl] = ACTIONS(3994), - [anon_sym___clrcall] = ACTIONS(3994), - [anon_sym___stdcall] = ACTIONS(3994), - [anon_sym___fastcall] = ACTIONS(3994), - [anon_sym___thiscall] = ACTIONS(3994), - [anon_sym___vectorcall] = ACTIONS(3994), - [anon_sym_LBRACE] = ACTIONS(3996), - [anon_sym_signed] = ACTIONS(3994), - [anon_sym_unsigned] = ACTIONS(3994), - [anon_sym_long] = ACTIONS(3994), - [anon_sym_short] = ACTIONS(3994), - [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_static] = ACTIONS(3994), - [anon_sym_register] = ACTIONS(3994), - [anon_sym_inline] = ACTIONS(3994), - [anon_sym___inline] = ACTIONS(3994), - [anon_sym___inline__] = ACTIONS(3994), - [anon_sym___forceinline] = ACTIONS(3994), - [anon_sym_thread_local] = ACTIONS(3994), - [anon_sym___thread] = ACTIONS(3994), - [anon_sym_const] = ACTIONS(3994), - [anon_sym_constexpr] = ACTIONS(3994), - [anon_sym_volatile] = ACTIONS(3994), - [anon_sym_restrict] = ACTIONS(3994), - [anon_sym___restrict__] = ACTIONS(3994), - [anon_sym__Atomic] = ACTIONS(3994), - [anon_sym__Noreturn] = ACTIONS(3994), - [anon_sym_noreturn] = ACTIONS(3994), - [anon_sym__Nonnull] = ACTIONS(3994), - [anon_sym_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [anon_sym_alignas] = ACTIONS(3994), - [anon_sym__Alignas] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(3994), - [anon_sym_enum] = ACTIONS(3994), - [anon_sym_class] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(3994), - [anon_sym_union] = ACTIONS(3994), - [anon_sym_if] = ACTIONS(3994), - [anon_sym_switch] = ACTIONS(3994), - [anon_sym_case] = ACTIONS(3994), - [anon_sym_default] = ACTIONS(3994), - [anon_sym_while] = ACTIONS(3994), - [anon_sym_do] = ACTIONS(3994), - [anon_sym_for] = ACTIONS(3994), - [anon_sym_return] = ACTIONS(3994), - [anon_sym_break] = ACTIONS(3994), - [anon_sym_continue] = ACTIONS(3994), - [anon_sym_goto] = ACTIONS(3994), - [anon_sym___try] = ACTIONS(3994), - [anon_sym___leave] = ACTIONS(3994), - [anon_sym_not] = ACTIONS(3994), - [anon_sym_compl] = ACTIONS(3994), - [anon_sym_DASH_DASH] = ACTIONS(3996), - [anon_sym_PLUS_PLUS] = ACTIONS(3996), - [anon_sym_sizeof] = ACTIONS(3994), - [anon_sym___alignof__] = ACTIONS(3994), - [anon_sym___alignof] = ACTIONS(3994), - [anon_sym__alignof] = ACTIONS(3994), - [anon_sym_alignof] = ACTIONS(3994), - [anon_sym__Alignof] = ACTIONS(3994), - [anon_sym_offsetof] = ACTIONS(3994), - [anon_sym__Generic] = ACTIONS(3994), - [anon_sym_typename] = ACTIONS(3994), - [anon_sym_asm] = ACTIONS(3994), - [anon_sym___asm__] = ACTIONS(3994), - [anon_sym___asm] = ACTIONS(3994), - [sym_number_literal] = ACTIONS(3996), - [anon_sym_L_SQUOTE] = ACTIONS(3996), - [anon_sym_u_SQUOTE] = ACTIONS(3996), - [anon_sym_U_SQUOTE] = ACTIONS(3996), - [anon_sym_u8_SQUOTE] = ACTIONS(3996), - [anon_sym_SQUOTE] = ACTIONS(3996), - [anon_sym_L_DQUOTE] = ACTIONS(3996), - [anon_sym_u_DQUOTE] = ACTIONS(3996), - [anon_sym_U_DQUOTE] = ACTIONS(3996), - [anon_sym_u8_DQUOTE] = ACTIONS(3996), - [anon_sym_DQUOTE] = ACTIONS(3996), - [sym_true] = ACTIONS(3994), - [sym_false] = ACTIONS(3994), - [anon_sym_NULL] = ACTIONS(3994), - [anon_sym_nullptr] = ACTIONS(3994), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3994), - [anon_sym_decltype] = ACTIONS(3994), - [anon_sym_explicit] = ACTIONS(3994), - [anon_sym_template] = ACTIONS(3994), - [anon_sym_operator] = ACTIONS(3994), - [anon_sym_try] = ACTIONS(3994), - [anon_sym_delete] = ACTIONS(3994), - [anon_sym_throw] = ACTIONS(3994), - [anon_sym_namespace] = ACTIONS(3994), - [anon_sym_static_assert] = ACTIONS(3994), - [anon_sym_concept] = ACTIONS(3994), - [anon_sym_co_return] = ACTIONS(3994), - [anon_sym_co_yield] = ACTIONS(3994), - [anon_sym_R_DQUOTE] = ACTIONS(3996), - [anon_sym_LR_DQUOTE] = ACTIONS(3996), - [anon_sym_uR_DQUOTE] = ACTIONS(3996), - [anon_sym_UR_DQUOTE] = ACTIONS(3996), - [anon_sym_u8R_DQUOTE] = ACTIONS(3996), - [anon_sym_co_await] = ACTIONS(3994), - [anon_sym_new] = ACTIONS(3994), - [anon_sym_requires] = ACTIONS(3994), - [anon_sym_CARET_CARET] = ACTIONS(3996), - [anon_sym_LBRACK_COLON] = ACTIONS(3996), - [sym_this] = ACTIONS(3994), - }, - [STATE(435)] = { - [sym_identifier] = ACTIONS(3998), - [aux_sym_preproc_include_token1] = ACTIONS(3998), - [aux_sym_preproc_def_token1] = ACTIONS(3998), - [aux_sym_preproc_if_token1] = ACTIONS(3998), - [aux_sym_preproc_if_token2] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), - [aux_sym_preproc_else_token1] = ACTIONS(3998), - [aux_sym_preproc_elif_token1] = ACTIONS(3998), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3998), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3998), - [sym_preproc_directive] = ACTIONS(3998), - [anon_sym_LPAREN2] = ACTIONS(4000), - [anon_sym_BANG] = ACTIONS(4000), - [anon_sym_TILDE] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(3998), - [anon_sym_PLUS] = ACTIONS(3998), - [anon_sym_STAR] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym___extension__] = ACTIONS(3998), - [anon_sym_typedef] = ACTIONS(3998), - [anon_sym_virtual] = ACTIONS(3998), - [anon_sym_extern] = ACTIONS(3998), - [anon_sym___attribute__] = ACTIONS(3998), - [anon_sym___attribute] = ACTIONS(3998), - [anon_sym_using] = ACTIONS(3998), - [anon_sym_COLON_COLON] = ACTIONS(4000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), - [anon_sym___declspec] = ACTIONS(3998), - [anon_sym___based] = ACTIONS(3998), - [anon_sym___cdecl] = ACTIONS(3998), - [anon_sym___clrcall] = ACTIONS(3998), - [anon_sym___stdcall] = ACTIONS(3998), - [anon_sym___fastcall] = ACTIONS(3998), - [anon_sym___thiscall] = ACTIONS(3998), - [anon_sym___vectorcall] = ACTIONS(3998), - [anon_sym_LBRACE] = ACTIONS(4000), - [anon_sym_signed] = ACTIONS(3998), - [anon_sym_unsigned] = ACTIONS(3998), - [anon_sym_long] = ACTIONS(3998), - [anon_sym_short] = ACTIONS(3998), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_static] = ACTIONS(3998), - [anon_sym_register] = ACTIONS(3998), - [anon_sym_inline] = ACTIONS(3998), - [anon_sym___inline] = ACTIONS(3998), - [anon_sym___inline__] = ACTIONS(3998), - [anon_sym___forceinline] = ACTIONS(3998), - [anon_sym_thread_local] = ACTIONS(3998), - [anon_sym___thread] = ACTIONS(3998), - [anon_sym_const] = ACTIONS(3998), - [anon_sym_constexpr] = ACTIONS(3998), - [anon_sym_volatile] = ACTIONS(3998), - [anon_sym_restrict] = ACTIONS(3998), - [anon_sym___restrict__] = ACTIONS(3998), - [anon_sym__Atomic] = ACTIONS(3998), - [anon_sym__Noreturn] = ACTIONS(3998), - [anon_sym_noreturn] = ACTIONS(3998), - [anon_sym__Nonnull] = ACTIONS(3998), - [anon_sym_mutable] = ACTIONS(3998), - [anon_sym_constinit] = ACTIONS(3998), - [anon_sym_consteval] = ACTIONS(3998), - [anon_sym_alignas] = ACTIONS(3998), - [anon_sym__Alignas] = ACTIONS(3998), - [sym_primitive_type] = ACTIONS(3998), - [anon_sym_enum] = ACTIONS(3998), - [anon_sym_class] = ACTIONS(3998), - [anon_sym_struct] = ACTIONS(3998), - [anon_sym_union] = ACTIONS(3998), - [anon_sym_if] = ACTIONS(3998), - [anon_sym_switch] = ACTIONS(3998), - [anon_sym_case] = ACTIONS(3998), - [anon_sym_default] = ACTIONS(3998), - [anon_sym_while] = ACTIONS(3998), - [anon_sym_do] = ACTIONS(3998), - [anon_sym_for] = ACTIONS(3998), - [anon_sym_return] = ACTIONS(3998), - [anon_sym_break] = ACTIONS(3998), - [anon_sym_continue] = ACTIONS(3998), - [anon_sym_goto] = ACTIONS(3998), - [anon_sym___try] = ACTIONS(3998), - [anon_sym___leave] = ACTIONS(3998), - [anon_sym_not] = ACTIONS(3998), - [anon_sym_compl] = ACTIONS(3998), - [anon_sym_DASH_DASH] = ACTIONS(4000), - [anon_sym_PLUS_PLUS] = ACTIONS(4000), - [anon_sym_sizeof] = ACTIONS(3998), - [anon_sym___alignof__] = ACTIONS(3998), - [anon_sym___alignof] = ACTIONS(3998), - [anon_sym__alignof] = ACTIONS(3998), - [anon_sym_alignof] = ACTIONS(3998), - [anon_sym__Alignof] = ACTIONS(3998), - [anon_sym_offsetof] = ACTIONS(3998), - [anon_sym__Generic] = ACTIONS(3998), - [anon_sym_typename] = ACTIONS(3998), - [anon_sym_asm] = ACTIONS(3998), - [anon_sym___asm__] = ACTIONS(3998), - [anon_sym___asm] = ACTIONS(3998), - [sym_number_literal] = ACTIONS(4000), - [anon_sym_L_SQUOTE] = ACTIONS(4000), - [anon_sym_u_SQUOTE] = ACTIONS(4000), - [anon_sym_U_SQUOTE] = ACTIONS(4000), - [anon_sym_u8_SQUOTE] = ACTIONS(4000), - [anon_sym_SQUOTE] = 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_true] = ACTIONS(3998), - [sym_false] = ACTIONS(3998), - [anon_sym_NULL] = ACTIONS(3998), - [anon_sym_nullptr] = ACTIONS(3998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3998), - [anon_sym_decltype] = ACTIONS(3998), - [anon_sym_explicit] = ACTIONS(3998), - [anon_sym_template] = ACTIONS(3998), - [anon_sym_operator] = ACTIONS(3998), - [anon_sym_try] = ACTIONS(3998), - [anon_sym_delete] = ACTIONS(3998), - [anon_sym_throw] = ACTIONS(3998), - [anon_sym_namespace] = ACTIONS(3998), - [anon_sym_static_assert] = ACTIONS(3998), - [anon_sym_concept] = ACTIONS(3998), - [anon_sym_co_return] = ACTIONS(3998), - [anon_sym_co_yield] = ACTIONS(3998), - [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), - [anon_sym_co_await] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_requires] = ACTIONS(3998), - [anon_sym_CARET_CARET] = ACTIONS(4000), - [anon_sym_LBRACK_COLON] = ACTIONS(4000), - [sym_this] = ACTIONS(3998), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3819), + [anon_sym_decltype] = ACTIONS(3821), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [STATE(436)] = { - [sym_identifier] = ACTIONS(3998), - [aux_sym_preproc_include_token1] = ACTIONS(3998), - [aux_sym_preproc_def_token1] = ACTIONS(3998), - [aux_sym_preproc_if_token1] = ACTIONS(3998), - [aux_sym_preproc_if_token2] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), - [aux_sym_preproc_else_token1] = ACTIONS(3998), - [aux_sym_preproc_elif_token1] = ACTIONS(3998), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3998), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3998), - [sym_preproc_directive] = ACTIONS(3998), - [anon_sym_LPAREN2] = ACTIONS(4000), - [anon_sym_BANG] = ACTIONS(4000), - [anon_sym_TILDE] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(3998), - [anon_sym_PLUS] = ACTIONS(3998), - [anon_sym_STAR] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym___extension__] = ACTIONS(3998), - [anon_sym_typedef] = ACTIONS(3998), - [anon_sym_virtual] = ACTIONS(3998), - [anon_sym_extern] = ACTIONS(3998), - [anon_sym___attribute__] = ACTIONS(3998), - [anon_sym___attribute] = ACTIONS(3998), - [anon_sym_using] = ACTIONS(3998), - [anon_sym_COLON_COLON] = ACTIONS(4000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), - [anon_sym___declspec] = ACTIONS(3998), - [anon_sym___based] = ACTIONS(3998), - [anon_sym___cdecl] = ACTIONS(3998), - [anon_sym___clrcall] = ACTIONS(3998), - [anon_sym___stdcall] = ACTIONS(3998), - [anon_sym___fastcall] = ACTIONS(3998), - [anon_sym___thiscall] = ACTIONS(3998), - [anon_sym___vectorcall] = ACTIONS(3998), - [anon_sym_LBRACE] = ACTIONS(4000), - [anon_sym_signed] = ACTIONS(3998), - [anon_sym_unsigned] = ACTIONS(3998), - [anon_sym_long] = ACTIONS(3998), - [anon_sym_short] = ACTIONS(3998), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_static] = ACTIONS(3998), - [anon_sym_register] = ACTIONS(3998), - [anon_sym_inline] = ACTIONS(3998), - [anon_sym___inline] = ACTIONS(3998), - [anon_sym___inline__] = ACTIONS(3998), - [anon_sym___forceinline] = ACTIONS(3998), - [anon_sym_thread_local] = ACTIONS(3998), - [anon_sym___thread] = ACTIONS(3998), - [anon_sym_const] = ACTIONS(3998), - [anon_sym_constexpr] = ACTIONS(3998), - [anon_sym_volatile] = ACTIONS(3998), - [anon_sym_restrict] = ACTIONS(3998), - [anon_sym___restrict__] = ACTIONS(3998), - [anon_sym__Atomic] = ACTIONS(3998), - [anon_sym__Noreturn] = ACTIONS(3998), - [anon_sym_noreturn] = ACTIONS(3998), - [anon_sym__Nonnull] = ACTIONS(3998), - [anon_sym_mutable] = ACTIONS(3998), - [anon_sym_constinit] = ACTIONS(3998), - [anon_sym_consteval] = ACTIONS(3998), - [anon_sym_alignas] = ACTIONS(3998), - [anon_sym__Alignas] = ACTIONS(3998), - [sym_primitive_type] = ACTIONS(3998), - [anon_sym_enum] = ACTIONS(3998), - [anon_sym_class] = ACTIONS(3998), - [anon_sym_struct] = ACTIONS(3998), - [anon_sym_union] = ACTIONS(3998), - [anon_sym_if] = ACTIONS(3998), - [anon_sym_switch] = ACTIONS(3998), - [anon_sym_case] = ACTIONS(3998), - [anon_sym_default] = ACTIONS(3998), - [anon_sym_while] = ACTIONS(3998), - [anon_sym_do] = ACTIONS(3998), - [anon_sym_for] = ACTIONS(3998), - [anon_sym_return] = ACTIONS(3998), - [anon_sym_break] = ACTIONS(3998), - [anon_sym_continue] = ACTIONS(3998), - [anon_sym_goto] = ACTIONS(3998), - [anon_sym___try] = ACTIONS(3998), - [anon_sym___leave] = ACTIONS(3998), - [anon_sym_not] = ACTIONS(3998), - [anon_sym_compl] = ACTIONS(3998), - [anon_sym_DASH_DASH] = ACTIONS(4000), - [anon_sym_PLUS_PLUS] = ACTIONS(4000), - [anon_sym_sizeof] = ACTIONS(3998), - [anon_sym___alignof__] = ACTIONS(3998), - [anon_sym___alignof] = ACTIONS(3998), - [anon_sym__alignof] = ACTIONS(3998), - [anon_sym_alignof] = ACTIONS(3998), - [anon_sym__Alignof] = ACTIONS(3998), - [anon_sym_offsetof] = ACTIONS(3998), - [anon_sym__Generic] = ACTIONS(3998), - [anon_sym_typename] = ACTIONS(3998), - [anon_sym_asm] = ACTIONS(3998), - [anon_sym___asm__] = ACTIONS(3998), - [anon_sym___asm] = ACTIONS(3998), - [sym_number_literal] = ACTIONS(4000), - [anon_sym_L_SQUOTE] = ACTIONS(4000), - [anon_sym_u_SQUOTE] = ACTIONS(4000), - [anon_sym_U_SQUOTE] = ACTIONS(4000), - [anon_sym_u8_SQUOTE] = ACTIONS(4000), - [anon_sym_SQUOTE] = 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_true] = ACTIONS(3998), - [sym_false] = ACTIONS(3998), - [anon_sym_NULL] = ACTIONS(3998), - [anon_sym_nullptr] = ACTIONS(3998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3998), - [anon_sym_decltype] = ACTIONS(3998), - [anon_sym_explicit] = ACTIONS(3998), - [anon_sym_template] = ACTIONS(3998), - [anon_sym_operator] = ACTIONS(3998), - [anon_sym_try] = ACTIONS(3998), - [anon_sym_delete] = ACTIONS(3998), - [anon_sym_throw] = ACTIONS(3998), - [anon_sym_namespace] = ACTIONS(3998), - [anon_sym_static_assert] = ACTIONS(3998), - [anon_sym_concept] = ACTIONS(3998), - [anon_sym_co_return] = ACTIONS(3998), - [anon_sym_co_yield] = ACTIONS(3998), - [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), - [anon_sym_co_await] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_requires] = ACTIONS(3998), - [anon_sym_CARET_CARET] = ACTIONS(4000), - [anon_sym_LBRACK_COLON] = ACTIONS(4000), - [sym_this] = ACTIONS(3998), + [STATE(416)] = { + [sym_identifier] = ACTIONS(3984), + [aux_sym_preproc_include_token1] = ACTIONS(3984), + [aux_sym_preproc_def_token1] = ACTIONS(3984), + [aux_sym_preproc_if_token1] = ACTIONS(3984), + [aux_sym_preproc_if_token2] = ACTIONS(3984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3984), + [aux_sym_preproc_else_token1] = ACTIONS(3984), + [aux_sym_preproc_elif_token1] = ACTIONS(3984), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3984), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3984), + [sym_preproc_directive] = ACTIONS(3984), + [anon_sym_LPAREN2] = ACTIONS(3986), + [anon_sym_BANG] = ACTIONS(3986), + [anon_sym_TILDE] = ACTIONS(3986), + [anon_sym_DASH] = ACTIONS(3984), + [anon_sym_PLUS] = ACTIONS(3984), + [anon_sym_STAR] = ACTIONS(3986), + [anon_sym_AMP_AMP] = ACTIONS(3986), + [anon_sym_AMP] = ACTIONS(3984), + [anon_sym_SEMI] = ACTIONS(3986), + [anon_sym___extension__] = ACTIONS(3984), + [anon_sym_typedef] = ACTIONS(3984), + [anon_sym_virtual] = ACTIONS(3984), + [anon_sym_extern] = ACTIONS(3984), + [anon_sym___attribute__] = ACTIONS(3984), + [anon_sym___attribute] = ACTIONS(3984), + [anon_sym_using] = ACTIONS(3984), + [anon_sym_COLON_COLON] = ACTIONS(3986), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3986), + [anon_sym___declspec] = ACTIONS(3984), + [anon_sym___based] = ACTIONS(3984), + [anon_sym___cdecl] = ACTIONS(3984), + [anon_sym___clrcall] = ACTIONS(3984), + [anon_sym___stdcall] = ACTIONS(3984), + [anon_sym___fastcall] = ACTIONS(3984), + [anon_sym___thiscall] = ACTIONS(3984), + [anon_sym___vectorcall] = ACTIONS(3984), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_signed] = ACTIONS(3984), + [anon_sym_unsigned] = ACTIONS(3984), + [anon_sym_long] = ACTIONS(3984), + [anon_sym_short] = ACTIONS(3984), + [anon_sym_LBRACK] = ACTIONS(3984), + [anon_sym_static] = ACTIONS(3984), + [anon_sym_register] = ACTIONS(3984), + [anon_sym_inline] = ACTIONS(3984), + [anon_sym___inline] = ACTIONS(3984), + [anon_sym___inline__] = ACTIONS(3984), + [anon_sym___forceinline] = ACTIONS(3984), + [anon_sym_thread_local] = ACTIONS(3984), + [anon_sym___thread] = ACTIONS(3984), + [anon_sym_const] = ACTIONS(3984), + [anon_sym_constexpr] = ACTIONS(3984), + [anon_sym_volatile] = ACTIONS(3984), + [anon_sym_restrict] = ACTIONS(3984), + [anon_sym___restrict__] = ACTIONS(3984), + [anon_sym__Atomic] = ACTIONS(3984), + [anon_sym__Noreturn] = ACTIONS(3984), + [anon_sym_noreturn] = ACTIONS(3984), + [anon_sym__Nonnull] = ACTIONS(3984), + [anon_sym_mutable] = ACTIONS(3984), + [anon_sym_constinit] = ACTIONS(3984), + [anon_sym_consteval] = ACTIONS(3984), + [anon_sym_alignas] = ACTIONS(3984), + [anon_sym__Alignas] = ACTIONS(3984), + [sym_primitive_type] = ACTIONS(3984), + [anon_sym_enum] = ACTIONS(3984), + [anon_sym_class] = ACTIONS(3984), + [anon_sym_struct] = ACTIONS(3984), + [anon_sym_union] = ACTIONS(3984), + [anon_sym_if] = ACTIONS(3984), + [anon_sym_switch] = ACTIONS(3984), + [anon_sym_case] = ACTIONS(3984), + [anon_sym_default] = ACTIONS(3984), + [anon_sym_while] = ACTIONS(3984), + [anon_sym_do] = ACTIONS(3984), + [anon_sym_for] = ACTIONS(3984), + [anon_sym_return] = ACTIONS(3984), + [anon_sym_break] = ACTIONS(3984), + [anon_sym_continue] = ACTIONS(3984), + [anon_sym_goto] = ACTIONS(3984), + [anon_sym___try] = ACTIONS(3984), + [anon_sym___leave] = ACTIONS(3984), + [anon_sym_not] = ACTIONS(3984), + [anon_sym_compl] = ACTIONS(3984), + [anon_sym_DASH_DASH] = ACTIONS(3986), + [anon_sym_PLUS_PLUS] = ACTIONS(3986), + [anon_sym_sizeof] = ACTIONS(3984), + [anon_sym___alignof__] = ACTIONS(3984), + [anon_sym___alignof] = ACTIONS(3984), + [anon_sym__alignof] = ACTIONS(3984), + [anon_sym_alignof] = ACTIONS(3984), + [anon_sym__Alignof] = ACTIONS(3984), + [anon_sym_offsetof] = ACTIONS(3984), + [anon_sym__Generic] = ACTIONS(3984), + [anon_sym_typename] = ACTIONS(3984), + [anon_sym_asm] = ACTIONS(3984), + [anon_sym___asm__] = ACTIONS(3984), + [anon_sym___asm] = ACTIONS(3984), + [sym_number_literal] = ACTIONS(3986), + [anon_sym_L_SQUOTE] = ACTIONS(3986), + [anon_sym_u_SQUOTE] = ACTIONS(3986), + [anon_sym_U_SQUOTE] = ACTIONS(3986), + [anon_sym_u8_SQUOTE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3986), + [anon_sym_L_DQUOTE] = ACTIONS(3986), + [anon_sym_u_DQUOTE] = ACTIONS(3986), + [anon_sym_U_DQUOTE] = ACTIONS(3986), + [anon_sym_u8_DQUOTE] = ACTIONS(3986), + [anon_sym_DQUOTE] = ACTIONS(3986), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3984), + [anon_sym_nullptr] = ACTIONS(3984), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3984), + [anon_sym_decltype] = ACTIONS(3984), + [anon_sym_explicit] = ACTIONS(3984), + [anon_sym_export] = ACTIONS(3984), + [anon_sym_module] = ACTIONS(3984), + [anon_sym_import] = ACTIONS(3984), + [anon_sym_template] = ACTIONS(3984), + [anon_sym_operator] = ACTIONS(3984), + [anon_sym_try] = ACTIONS(3984), + [anon_sym_delete] = ACTIONS(3984), + [anon_sym_throw] = ACTIONS(3984), + [anon_sym_namespace] = ACTIONS(3984), + [anon_sym_static_assert] = ACTIONS(3984), + [anon_sym_concept] = ACTIONS(3984), + [anon_sym_co_return] = ACTIONS(3984), + [anon_sym_co_yield] = ACTIONS(3984), + [anon_sym_R_DQUOTE] = ACTIONS(3986), + [anon_sym_LR_DQUOTE] = ACTIONS(3986), + [anon_sym_uR_DQUOTE] = ACTIONS(3986), + [anon_sym_UR_DQUOTE] = ACTIONS(3986), + [anon_sym_u8R_DQUOTE] = ACTIONS(3986), + [anon_sym_co_await] = ACTIONS(3984), + [anon_sym_new] = ACTIONS(3984), + [anon_sym_requires] = ACTIONS(3984), + [anon_sym_CARET_CARET] = ACTIONS(3986), + [anon_sym_LBRACK_COLON] = ACTIONS(3986), + [sym_this] = ACTIONS(3984), }, - [STATE(437)] = { - [ts_builtin_sym_end] = ACTIONS(3642), - [sym_identifier] = ACTIONS(3640), - [aux_sym_preproc_include_token1] = ACTIONS(3640), - [aux_sym_preproc_def_token1] = ACTIONS(3640), - [aux_sym_preproc_if_token1] = ACTIONS(3640), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3640), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3640), - [sym_preproc_directive] = ACTIONS(3640), - [anon_sym_LPAREN2] = ACTIONS(3642), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(3642), - [anon_sym_AMP_AMP] = ACTIONS(3642), - [anon_sym_AMP] = ACTIONS(3640), - [anon_sym_SEMI] = ACTIONS(3642), - [anon_sym___extension__] = ACTIONS(3640), - [anon_sym_typedef] = ACTIONS(3640), - [anon_sym_virtual] = ACTIONS(3640), - [anon_sym_extern] = ACTIONS(3640), - [anon_sym___attribute__] = ACTIONS(3640), - [anon_sym___attribute] = ACTIONS(3640), - [anon_sym_using] = ACTIONS(3640), - [anon_sym_COLON_COLON] = ACTIONS(3642), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), - [anon_sym___declspec] = ACTIONS(3640), - [anon_sym___based] = ACTIONS(3640), - [anon_sym___cdecl] = ACTIONS(3640), - [anon_sym___clrcall] = ACTIONS(3640), - [anon_sym___stdcall] = ACTIONS(3640), - [anon_sym___fastcall] = ACTIONS(3640), - [anon_sym___thiscall] = ACTIONS(3640), - [anon_sym___vectorcall] = ACTIONS(3640), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_signed] = ACTIONS(3640), - [anon_sym_unsigned] = ACTIONS(3640), - [anon_sym_long] = ACTIONS(3640), - [anon_sym_short] = ACTIONS(3640), - [anon_sym_LBRACK] = ACTIONS(3640), - [anon_sym_static] = ACTIONS(3640), - [anon_sym_register] = ACTIONS(3640), - [anon_sym_inline] = ACTIONS(3640), - [anon_sym___inline] = ACTIONS(3640), - [anon_sym___inline__] = ACTIONS(3640), - [anon_sym___forceinline] = ACTIONS(3640), - [anon_sym_thread_local] = ACTIONS(3640), - [anon_sym___thread] = ACTIONS(3640), - [anon_sym_const] = ACTIONS(3640), - [anon_sym_constexpr] = ACTIONS(3640), - [anon_sym_volatile] = ACTIONS(3640), - [anon_sym_restrict] = ACTIONS(3640), - [anon_sym___restrict__] = ACTIONS(3640), - [anon_sym__Atomic] = ACTIONS(3640), - [anon_sym__Noreturn] = ACTIONS(3640), - [anon_sym_noreturn] = ACTIONS(3640), - [anon_sym__Nonnull] = ACTIONS(3640), - [anon_sym_mutable] = ACTIONS(3640), - [anon_sym_constinit] = ACTIONS(3640), - [anon_sym_consteval] = ACTIONS(3640), - [anon_sym_alignas] = ACTIONS(3640), - [anon_sym__Alignas] = ACTIONS(3640), - [sym_primitive_type] = ACTIONS(3640), - [anon_sym_enum] = ACTIONS(3640), - [anon_sym_class] = ACTIONS(3640), - [anon_sym_struct] = ACTIONS(3640), - [anon_sym_union] = ACTIONS(3640), - [anon_sym_if] = ACTIONS(3640), - [anon_sym_else] = ACTIONS(3640), - [anon_sym_switch] = ACTIONS(3640), - [anon_sym_case] = ACTIONS(3640), - [anon_sym_default] = ACTIONS(3640), - [anon_sym_while] = ACTIONS(3640), - [anon_sym_do] = ACTIONS(3640), - [anon_sym_for] = ACTIONS(3640), - [anon_sym_return] = ACTIONS(3640), - [anon_sym_break] = ACTIONS(3640), - [anon_sym_continue] = ACTIONS(3640), - [anon_sym_goto] = ACTIONS(3640), - [anon_sym___try] = ACTIONS(3640), - [anon_sym___leave] = ACTIONS(3640), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(3642), - [anon_sym_PLUS_PLUS] = ACTIONS(3642), - [anon_sym_sizeof] = ACTIONS(3640), - [anon_sym___alignof__] = ACTIONS(3640), - [anon_sym___alignof] = ACTIONS(3640), - [anon_sym__alignof] = ACTIONS(3640), - [anon_sym_alignof] = ACTIONS(3640), - [anon_sym__Alignof] = ACTIONS(3640), - [anon_sym_offsetof] = ACTIONS(3640), - [anon_sym__Generic] = ACTIONS(3640), - [anon_sym_typename] = ACTIONS(3640), - [anon_sym_asm] = ACTIONS(3640), - [anon_sym___asm__] = ACTIONS(3640), - [anon_sym___asm] = ACTIONS(3640), - [sym_number_literal] = ACTIONS(3642), - [anon_sym_L_SQUOTE] = ACTIONS(3642), - [anon_sym_u_SQUOTE] = ACTIONS(3642), - [anon_sym_U_SQUOTE] = ACTIONS(3642), - [anon_sym_u8_SQUOTE] = ACTIONS(3642), - [anon_sym_SQUOTE] = ACTIONS(3642), - [anon_sym_L_DQUOTE] = ACTIONS(3642), - [anon_sym_u_DQUOTE] = ACTIONS(3642), - [anon_sym_U_DQUOTE] = ACTIONS(3642), - [anon_sym_u8_DQUOTE] = ACTIONS(3642), - [anon_sym_DQUOTE] = ACTIONS(3642), - [sym_true] = ACTIONS(3640), - [sym_false] = ACTIONS(3640), - [anon_sym_NULL] = ACTIONS(3640), - [anon_sym_nullptr] = ACTIONS(3640), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3640), - [anon_sym_decltype] = ACTIONS(3640), - [anon_sym_explicit] = ACTIONS(3640), - [anon_sym_export] = ACTIONS(3640), - [anon_sym_module] = ACTIONS(3640), - [anon_sym_import] = ACTIONS(3640), - [anon_sym_template] = ACTIONS(3640), - [anon_sym_operator] = ACTIONS(3640), - [anon_sym_try] = ACTIONS(3640), - [anon_sym_delete] = ACTIONS(3640), - [anon_sym_throw] = ACTIONS(3640), - [anon_sym_namespace] = ACTIONS(3640), - [anon_sym_static_assert] = ACTIONS(3640), - [anon_sym_concept] = ACTIONS(3640), - [anon_sym_co_return] = ACTIONS(3640), - [anon_sym_co_yield] = ACTIONS(3640), - [anon_sym_R_DQUOTE] = ACTIONS(3642), - [anon_sym_LR_DQUOTE] = ACTIONS(3642), - [anon_sym_uR_DQUOTE] = ACTIONS(3642), - [anon_sym_UR_DQUOTE] = ACTIONS(3642), - [anon_sym_u8R_DQUOTE] = ACTIONS(3642), - [anon_sym_co_await] = ACTIONS(3640), - [anon_sym_new] = ACTIONS(3640), - [anon_sym_requires] = ACTIONS(3640), - [anon_sym_CARET_CARET] = ACTIONS(3642), - [anon_sym_LBRACK_COLON] = ACTIONS(3642), - [sym_this] = ACTIONS(3640), + [STATE(417)] = { + [sym_identifier] = ACTIONS(3988), + [aux_sym_preproc_include_token1] = ACTIONS(3988), + [aux_sym_preproc_def_token1] = ACTIONS(3988), + [aux_sym_preproc_if_token1] = ACTIONS(3988), + [aux_sym_preproc_if_token2] = ACTIONS(3988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3988), + [aux_sym_preproc_else_token1] = ACTIONS(3988), + [aux_sym_preproc_elif_token1] = ACTIONS(3988), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3988), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3988), + [sym_preproc_directive] = ACTIONS(3988), + [anon_sym_LPAREN2] = ACTIONS(3990), + [anon_sym_BANG] = ACTIONS(3990), + [anon_sym_TILDE] = ACTIONS(3990), + [anon_sym_DASH] = ACTIONS(3988), + [anon_sym_PLUS] = ACTIONS(3988), + [anon_sym_STAR] = ACTIONS(3990), + [anon_sym_AMP_AMP] = ACTIONS(3990), + [anon_sym_AMP] = ACTIONS(3988), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym___extension__] = ACTIONS(3988), + [anon_sym_typedef] = ACTIONS(3988), + [anon_sym_virtual] = ACTIONS(3988), + [anon_sym_extern] = ACTIONS(3988), + [anon_sym___attribute__] = ACTIONS(3988), + [anon_sym___attribute] = ACTIONS(3988), + [anon_sym_using] = ACTIONS(3988), + [anon_sym_COLON_COLON] = ACTIONS(3990), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3990), + [anon_sym___declspec] = ACTIONS(3988), + [anon_sym___based] = ACTIONS(3988), + [anon_sym___cdecl] = ACTIONS(3988), + [anon_sym___clrcall] = ACTIONS(3988), + [anon_sym___stdcall] = ACTIONS(3988), + [anon_sym___fastcall] = ACTIONS(3988), + [anon_sym___thiscall] = ACTIONS(3988), + [anon_sym___vectorcall] = ACTIONS(3988), + [anon_sym_LBRACE] = ACTIONS(3990), + [anon_sym_signed] = ACTIONS(3988), + [anon_sym_unsigned] = ACTIONS(3988), + [anon_sym_long] = ACTIONS(3988), + [anon_sym_short] = ACTIONS(3988), + [anon_sym_LBRACK] = ACTIONS(3988), + [anon_sym_static] = ACTIONS(3988), + [anon_sym_register] = ACTIONS(3988), + [anon_sym_inline] = ACTIONS(3988), + [anon_sym___inline] = ACTIONS(3988), + [anon_sym___inline__] = ACTIONS(3988), + [anon_sym___forceinline] = ACTIONS(3988), + [anon_sym_thread_local] = ACTIONS(3988), + [anon_sym___thread] = ACTIONS(3988), + [anon_sym_const] = ACTIONS(3988), + [anon_sym_constexpr] = ACTIONS(3988), + [anon_sym_volatile] = ACTIONS(3988), + [anon_sym_restrict] = ACTIONS(3988), + [anon_sym___restrict__] = ACTIONS(3988), + [anon_sym__Atomic] = ACTIONS(3988), + [anon_sym__Noreturn] = ACTIONS(3988), + [anon_sym_noreturn] = ACTIONS(3988), + [anon_sym__Nonnull] = ACTIONS(3988), + [anon_sym_mutable] = ACTIONS(3988), + [anon_sym_constinit] = ACTIONS(3988), + [anon_sym_consteval] = ACTIONS(3988), + [anon_sym_alignas] = ACTIONS(3988), + [anon_sym__Alignas] = ACTIONS(3988), + [sym_primitive_type] = ACTIONS(3988), + [anon_sym_enum] = ACTIONS(3988), + [anon_sym_class] = ACTIONS(3988), + [anon_sym_struct] = ACTIONS(3988), + [anon_sym_union] = ACTIONS(3988), + [anon_sym_if] = ACTIONS(3988), + [anon_sym_switch] = ACTIONS(3988), + [anon_sym_case] = ACTIONS(3988), + [anon_sym_default] = ACTIONS(3988), + [anon_sym_while] = ACTIONS(3988), + [anon_sym_do] = ACTIONS(3988), + [anon_sym_for] = ACTIONS(3988), + [anon_sym_return] = ACTIONS(3988), + [anon_sym_break] = ACTIONS(3988), + [anon_sym_continue] = ACTIONS(3988), + [anon_sym_goto] = ACTIONS(3988), + [anon_sym___try] = ACTIONS(3988), + [anon_sym___leave] = ACTIONS(3988), + [anon_sym_not] = ACTIONS(3988), + [anon_sym_compl] = ACTIONS(3988), + [anon_sym_DASH_DASH] = ACTIONS(3990), + [anon_sym_PLUS_PLUS] = ACTIONS(3990), + [anon_sym_sizeof] = ACTIONS(3988), + [anon_sym___alignof__] = ACTIONS(3988), + [anon_sym___alignof] = ACTIONS(3988), + [anon_sym__alignof] = ACTIONS(3988), + [anon_sym_alignof] = ACTIONS(3988), + [anon_sym__Alignof] = ACTIONS(3988), + [anon_sym_offsetof] = ACTIONS(3988), + [anon_sym__Generic] = ACTIONS(3988), + [anon_sym_typename] = ACTIONS(3988), + [anon_sym_asm] = ACTIONS(3988), + [anon_sym___asm__] = ACTIONS(3988), + [anon_sym___asm] = ACTIONS(3988), + [sym_number_literal] = ACTIONS(3990), + [anon_sym_L_SQUOTE] = ACTIONS(3990), + [anon_sym_u_SQUOTE] = ACTIONS(3990), + [anon_sym_U_SQUOTE] = ACTIONS(3990), + [anon_sym_u8_SQUOTE] = ACTIONS(3990), + [anon_sym_SQUOTE] = ACTIONS(3990), + [anon_sym_L_DQUOTE] = ACTIONS(3990), + [anon_sym_u_DQUOTE] = ACTIONS(3990), + [anon_sym_U_DQUOTE] = ACTIONS(3990), + [anon_sym_u8_DQUOTE] = ACTIONS(3990), + [anon_sym_DQUOTE] = ACTIONS(3990), + [sym_true] = ACTIONS(3988), + [sym_false] = ACTIONS(3988), + [anon_sym_NULL] = ACTIONS(3988), + [anon_sym_nullptr] = ACTIONS(3988), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3988), + [anon_sym_decltype] = ACTIONS(3988), + [anon_sym_explicit] = ACTIONS(3988), + [anon_sym_export] = ACTIONS(3988), + [anon_sym_module] = ACTIONS(3988), + [anon_sym_import] = ACTIONS(3988), + [anon_sym_template] = ACTIONS(3988), + [anon_sym_operator] = ACTIONS(3988), + [anon_sym_try] = ACTIONS(3988), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_throw] = ACTIONS(3988), + [anon_sym_namespace] = ACTIONS(3988), + [anon_sym_static_assert] = ACTIONS(3988), + [anon_sym_concept] = ACTIONS(3988), + [anon_sym_co_return] = ACTIONS(3988), + [anon_sym_co_yield] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3988), + [anon_sym_new] = ACTIONS(3988), + [anon_sym_requires] = ACTIONS(3988), + [anon_sym_CARET_CARET] = ACTIONS(3990), + [anon_sym_LBRACK_COLON] = ACTIONS(3990), + [sym_this] = ACTIONS(3988), }, - [STATE(438)] = { - [sym_identifier] = ACTIONS(4002), - [aux_sym_preproc_include_token1] = ACTIONS(4002), - [aux_sym_preproc_def_token1] = ACTIONS(4002), - [aux_sym_preproc_if_token1] = ACTIONS(4002), - [aux_sym_preproc_if_token2] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), - [aux_sym_preproc_else_token1] = ACTIONS(4002), - [aux_sym_preproc_elif_token1] = ACTIONS(4002), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4002), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4002), - [sym_preproc_directive] = ACTIONS(4002), - [anon_sym_LPAREN2] = ACTIONS(4004), - [anon_sym_BANG] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(4004), - [anon_sym_DASH] = ACTIONS(4002), - [anon_sym_PLUS] = ACTIONS(4002), - [anon_sym_STAR] = ACTIONS(4004), - [anon_sym_AMP_AMP] = ACTIONS(4004), - [anon_sym_AMP] = ACTIONS(4002), - [anon_sym_SEMI] = ACTIONS(4004), - [anon_sym___extension__] = ACTIONS(4002), - [anon_sym_typedef] = ACTIONS(4002), - [anon_sym_virtual] = ACTIONS(4002), - [anon_sym_extern] = ACTIONS(4002), - [anon_sym___attribute__] = ACTIONS(4002), - [anon_sym___attribute] = ACTIONS(4002), - [anon_sym_using] = ACTIONS(4002), - [anon_sym_COLON_COLON] = ACTIONS(4004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), - [anon_sym___declspec] = ACTIONS(4002), - [anon_sym___based] = ACTIONS(4002), - [anon_sym___cdecl] = ACTIONS(4002), - [anon_sym___clrcall] = ACTIONS(4002), - [anon_sym___stdcall] = ACTIONS(4002), - [anon_sym___fastcall] = ACTIONS(4002), - [anon_sym___thiscall] = ACTIONS(4002), - [anon_sym___vectorcall] = ACTIONS(4002), - [anon_sym_LBRACE] = ACTIONS(4004), - [anon_sym_signed] = ACTIONS(4002), - [anon_sym_unsigned] = ACTIONS(4002), - [anon_sym_long] = ACTIONS(4002), - [anon_sym_short] = ACTIONS(4002), - [anon_sym_LBRACK] = ACTIONS(4002), - [anon_sym_static] = ACTIONS(4002), - [anon_sym_register] = ACTIONS(4002), - [anon_sym_inline] = ACTIONS(4002), - [anon_sym___inline] = ACTIONS(4002), - [anon_sym___inline__] = ACTIONS(4002), - [anon_sym___forceinline] = ACTIONS(4002), - [anon_sym_thread_local] = ACTIONS(4002), - [anon_sym___thread] = ACTIONS(4002), - [anon_sym_const] = ACTIONS(4002), - [anon_sym_constexpr] = ACTIONS(4002), - [anon_sym_volatile] = ACTIONS(4002), - [anon_sym_restrict] = ACTIONS(4002), - [anon_sym___restrict__] = ACTIONS(4002), - [anon_sym__Atomic] = ACTIONS(4002), - [anon_sym__Noreturn] = ACTIONS(4002), - [anon_sym_noreturn] = ACTIONS(4002), - [anon_sym__Nonnull] = ACTIONS(4002), - [anon_sym_mutable] = ACTIONS(4002), - [anon_sym_constinit] = ACTIONS(4002), - [anon_sym_consteval] = ACTIONS(4002), - [anon_sym_alignas] = ACTIONS(4002), - [anon_sym__Alignas] = ACTIONS(4002), - [sym_primitive_type] = ACTIONS(4002), - [anon_sym_enum] = ACTIONS(4002), - [anon_sym_class] = ACTIONS(4002), - [anon_sym_struct] = ACTIONS(4002), - [anon_sym_union] = ACTIONS(4002), - [anon_sym_if] = ACTIONS(4002), - [anon_sym_switch] = ACTIONS(4002), - [anon_sym_case] = ACTIONS(4002), - [anon_sym_default] = ACTIONS(4002), - [anon_sym_while] = ACTIONS(4002), - [anon_sym_do] = ACTIONS(4002), - [anon_sym_for] = ACTIONS(4002), - [anon_sym_return] = ACTIONS(4002), - [anon_sym_break] = ACTIONS(4002), - [anon_sym_continue] = ACTIONS(4002), - [anon_sym_goto] = ACTIONS(4002), - [anon_sym___try] = ACTIONS(4002), - [anon_sym___leave] = ACTIONS(4002), - [anon_sym_not] = ACTIONS(4002), - [anon_sym_compl] = ACTIONS(4002), - [anon_sym_DASH_DASH] = ACTIONS(4004), - [anon_sym_PLUS_PLUS] = ACTIONS(4004), - [anon_sym_sizeof] = ACTIONS(4002), - [anon_sym___alignof__] = ACTIONS(4002), - [anon_sym___alignof] = ACTIONS(4002), - [anon_sym__alignof] = ACTIONS(4002), - [anon_sym_alignof] = ACTIONS(4002), - [anon_sym__Alignof] = ACTIONS(4002), - [anon_sym_offsetof] = ACTIONS(4002), - [anon_sym__Generic] = ACTIONS(4002), - [anon_sym_typename] = ACTIONS(4002), - [anon_sym_asm] = ACTIONS(4002), - [anon_sym___asm__] = ACTIONS(4002), - [anon_sym___asm] = ACTIONS(4002), - [sym_number_literal] = ACTIONS(4004), - [anon_sym_L_SQUOTE] = ACTIONS(4004), - [anon_sym_u_SQUOTE] = ACTIONS(4004), - [anon_sym_U_SQUOTE] = ACTIONS(4004), - [anon_sym_u8_SQUOTE] = ACTIONS(4004), - [anon_sym_SQUOTE] = ACTIONS(4004), - [anon_sym_L_DQUOTE] = ACTIONS(4004), - [anon_sym_u_DQUOTE] = ACTIONS(4004), - [anon_sym_U_DQUOTE] = ACTIONS(4004), - [anon_sym_u8_DQUOTE] = ACTIONS(4004), - [anon_sym_DQUOTE] = ACTIONS(4004), - [sym_true] = ACTIONS(4002), - [sym_false] = ACTIONS(4002), - [anon_sym_NULL] = ACTIONS(4002), - [anon_sym_nullptr] = ACTIONS(4002), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4002), - [anon_sym_decltype] = ACTIONS(4002), - [anon_sym_explicit] = ACTIONS(4002), - [anon_sym_template] = ACTIONS(4002), - [anon_sym_operator] = ACTIONS(4002), - [anon_sym_try] = ACTIONS(4002), - [anon_sym_delete] = ACTIONS(4002), - [anon_sym_throw] = ACTIONS(4002), - [anon_sym_namespace] = ACTIONS(4002), - [anon_sym_static_assert] = ACTIONS(4002), - [anon_sym_concept] = ACTIONS(4002), - [anon_sym_co_return] = ACTIONS(4002), - [anon_sym_co_yield] = ACTIONS(4002), - [anon_sym_R_DQUOTE] = ACTIONS(4004), - [anon_sym_LR_DQUOTE] = ACTIONS(4004), - [anon_sym_uR_DQUOTE] = ACTIONS(4004), - [anon_sym_UR_DQUOTE] = ACTIONS(4004), - [anon_sym_u8R_DQUOTE] = ACTIONS(4004), - [anon_sym_co_await] = ACTIONS(4002), - [anon_sym_new] = ACTIONS(4002), - [anon_sym_requires] = ACTIONS(4002), - [anon_sym_CARET_CARET] = ACTIONS(4004), - [anon_sym_LBRACK_COLON] = ACTIONS(4004), - [sym_this] = ACTIONS(4002), + [STATE(418)] = { + [sym_identifier] = ACTIONS(3992), + [aux_sym_preproc_include_token1] = ACTIONS(3992), + [aux_sym_preproc_def_token1] = ACTIONS(3992), + [aux_sym_preproc_if_token1] = ACTIONS(3992), + [aux_sym_preproc_if_token2] = ACTIONS(3992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3992), + [aux_sym_preproc_else_token1] = ACTIONS(3992), + [aux_sym_preproc_elif_token1] = ACTIONS(3992), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3992), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3992), + [sym_preproc_directive] = ACTIONS(3992), + [anon_sym_LPAREN2] = ACTIONS(3994), + [anon_sym_BANG] = ACTIONS(3994), + [anon_sym_TILDE] = ACTIONS(3994), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_AMP] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym___extension__] = ACTIONS(3992), + [anon_sym_typedef] = ACTIONS(3992), + [anon_sym_virtual] = ACTIONS(3992), + [anon_sym_extern] = ACTIONS(3992), + [anon_sym___attribute__] = ACTIONS(3992), + [anon_sym___attribute] = ACTIONS(3992), + [anon_sym_using] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3994), + [anon_sym___declspec] = ACTIONS(3992), + [anon_sym___based] = ACTIONS(3992), + [anon_sym___cdecl] = ACTIONS(3992), + [anon_sym___clrcall] = ACTIONS(3992), + [anon_sym___stdcall] = ACTIONS(3992), + [anon_sym___fastcall] = ACTIONS(3992), + [anon_sym___thiscall] = ACTIONS(3992), + [anon_sym___vectorcall] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_signed] = ACTIONS(3992), + [anon_sym_unsigned] = ACTIONS(3992), + [anon_sym_long] = ACTIONS(3992), + [anon_sym_short] = ACTIONS(3992), + [anon_sym_LBRACK] = ACTIONS(3992), + [anon_sym_static] = ACTIONS(3992), + [anon_sym_register] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym___inline] = ACTIONS(3992), + [anon_sym___inline__] = ACTIONS(3992), + [anon_sym___forceinline] = ACTIONS(3992), + [anon_sym_thread_local] = ACTIONS(3992), + [anon_sym___thread] = ACTIONS(3992), + [anon_sym_const] = ACTIONS(3992), + [anon_sym_constexpr] = ACTIONS(3992), + [anon_sym_volatile] = ACTIONS(3992), + [anon_sym_restrict] = ACTIONS(3992), + [anon_sym___restrict__] = ACTIONS(3992), + [anon_sym__Atomic] = ACTIONS(3992), + [anon_sym__Noreturn] = ACTIONS(3992), + [anon_sym_noreturn] = ACTIONS(3992), + [anon_sym__Nonnull] = ACTIONS(3992), + [anon_sym_mutable] = ACTIONS(3992), + [anon_sym_constinit] = ACTIONS(3992), + [anon_sym_consteval] = ACTIONS(3992), + [anon_sym_alignas] = ACTIONS(3992), + [anon_sym__Alignas] = ACTIONS(3992), + [sym_primitive_type] = ACTIONS(3992), + [anon_sym_enum] = ACTIONS(3992), + [anon_sym_class] = ACTIONS(3992), + [anon_sym_struct] = ACTIONS(3992), + [anon_sym_union] = ACTIONS(3992), + [anon_sym_if] = ACTIONS(3992), + [anon_sym_switch] = ACTIONS(3992), + [anon_sym_case] = ACTIONS(3992), + [anon_sym_default] = ACTIONS(3992), + [anon_sym_while] = ACTIONS(3992), + [anon_sym_do] = ACTIONS(3992), + [anon_sym_for] = ACTIONS(3992), + [anon_sym_return] = ACTIONS(3992), + [anon_sym_break] = ACTIONS(3992), + [anon_sym_continue] = ACTIONS(3992), + [anon_sym_goto] = ACTIONS(3992), + [anon_sym___try] = ACTIONS(3992), + [anon_sym___leave] = ACTIONS(3992), + [anon_sym_not] = ACTIONS(3992), + [anon_sym_compl] = ACTIONS(3992), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_sizeof] = ACTIONS(3992), + [anon_sym___alignof__] = ACTIONS(3992), + [anon_sym___alignof] = ACTIONS(3992), + [anon_sym__alignof] = ACTIONS(3992), + [anon_sym_alignof] = ACTIONS(3992), + [anon_sym__Alignof] = ACTIONS(3992), + [anon_sym_offsetof] = ACTIONS(3992), + [anon_sym__Generic] = ACTIONS(3992), + [anon_sym_typename] = ACTIONS(3992), + [anon_sym_asm] = ACTIONS(3992), + [anon_sym___asm__] = ACTIONS(3992), + [anon_sym___asm] = ACTIONS(3992), + [sym_number_literal] = ACTIONS(3994), + [anon_sym_L_SQUOTE] = ACTIONS(3994), + [anon_sym_u_SQUOTE] = ACTIONS(3994), + [anon_sym_U_SQUOTE] = ACTIONS(3994), + [anon_sym_u8_SQUOTE] = ACTIONS(3994), + [anon_sym_SQUOTE] = ACTIONS(3994), + [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_true] = ACTIONS(3992), + [sym_false] = ACTIONS(3992), + [anon_sym_NULL] = ACTIONS(3992), + [anon_sym_nullptr] = ACTIONS(3992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3992), + [anon_sym_decltype] = ACTIONS(3992), + [anon_sym_explicit] = ACTIONS(3992), + [anon_sym_export] = ACTIONS(3992), + [anon_sym_module] = ACTIONS(3992), + [anon_sym_import] = ACTIONS(3992), + [anon_sym_template] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_try] = ACTIONS(3992), + [anon_sym_delete] = ACTIONS(3992), + [anon_sym_throw] = ACTIONS(3992), + [anon_sym_namespace] = ACTIONS(3992), + [anon_sym_static_assert] = ACTIONS(3992), + [anon_sym_concept] = ACTIONS(3992), + [anon_sym_co_return] = ACTIONS(3992), + [anon_sym_co_yield] = ACTIONS(3992), + [anon_sym_R_DQUOTE] = ACTIONS(3994), + [anon_sym_LR_DQUOTE] = ACTIONS(3994), + [anon_sym_uR_DQUOTE] = ACTIONS(3994), + [anon_sym_UR_DQUOTE] = ACTIONS(3994), + [anon_sym_u8R_DQUOTE] = ACTIONS(3994), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3992), + [anon_sym_requires] = ACTIONS(3992), + [anon_sym_CARET_CARET] = ACTIONS(3994), + [anon_sym_LBRACK_COLON] = ACTIONS(3994), + [sym_this] = ACTIONS(3992), }, - [STATE(439)] = { - [sym_identifier] = ACTIONS(4002), - [aux_sym_preproc_include_token1] = ACTIONS(4002), - [aux_sym_preproc_def_token1] = ACTIONS(4002), - [aux_sym_preproc_if_token1] = ACTIONS(4002), - [aux_sym_preproc_if_token2] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), - [aux_sym_preproc_else_token1] = ACTIONS(4002), - [aux_sym_preproc_elif_token1] = ACTIONS(4002), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4002), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4002), - [sym_preproc_directive] = ACTIONS(4002), - [anon_sym_LPAREN2] = ACTIONS(4004), - [anon_sym_BANG] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(4004), - [anon_sym_DASH] = ACTIONS(4002), - [anon_sym_PLUS] = ACTIONS(4002), - [anon_sym_STAR] = ACTIONS(4004), - [anon_sym_AMP_AMP] = ACTIONS(4004), - [anon_sym_AMP] = ACTIONS(4002), - [anon_sym_SEMI] = ACTIONS(4004), - [anon_sym___extension__] = ACTIONS(4002), - [anon_sym_typedef] = ACTIONS(4002), - [anon_sym_virtual] = ACTIONS(4002), - [anon_sym_extern] = ACTIONS(4002), - [anon_sym___attribute__] = ACTIONS(4002), - [anon_sym___attribute] = ACTIONS(4002), - [anon_sym_using] = ACTIONS(4002), - [anon_sym_COLON_COLON] = ACTIONS(4004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), - [anon_sym___declspec] = ACTIONS(4002), - [anon_sym___based] = ACTIONS(4002), - [anon_sym___cdecl] = ACTIONS(4002), - [anon_sym___clrcall] = ACTIONS(4002), - [anon_sym___stdcall] = ACTIONS(4002), - [anon_sym___fastcall] = ACTIONS(4002), - [anon_sym___thiscall] = ACTIONS(4002), - [anon_sym___vectorcall] = ACTIONS(4002), - [anon_sym_LBRACE] = ACTIONS(4004), - [anon_sym_signed] = ACTIONS(4002), - [anon_sym_unsigned] = ACTIONS(4002), - [anon_sym_long] = ACTIONS(4002), - [anon_sym_short] = ACTIONS(4002), - [anon_sym_LBRACK] = ACTIONS(4002), - [anon_sym_static] = ACTIONS(4002), - [anon_sym_register] = ACTIONS(4002), - [anon_sym_inline] = ACTIONS(4002), - [anon_sym___inline] = ACTIONS(4002), - [anon_sym___inline__] = ACTIONS(4002), - [anon_sym___forceinline] = ACTIONS(4002), - [anon_sym_thread_local] = ACTIONS(4002), - [anon_sym___thread] = ACTIONS(4002), - [anon_sym_const] = ACTIONS(4002), - [anon_sym_constexpr] = ACTIONS(4002), - [anon_sym_volatile] = ACTIONS(4002), - [anon_sym_restrict] = ACTIONS(4002), - [anon_sym___restrict__] = ACTIONS(4002), - [anon_sym__Atomic] = ACTIONS(4002), - [anon_sym__Noreturn] = ACTIONS(4002), - [anon_sym_noreturn] = ACTIONS(4002), - [anon_sym__Nonnull] = ACTIONS(4002), - [anon_sym_mutable] = ACTIONS(4002), - [anon_sym_constinit] = ACTIONS(4002), - [anon_sym_consteval] = ACTIONS(4002), - [anon_sym_alignas] = ACTIONS(4002), - [anon_sym__Alignas] = ACTIONS(4002), - [sym_primitive_type] = ACTIONS(4002), - [anon_sym_enum] = ACTIONS(4002), - [anon_sym_class] = ACTIONS(4002), - [anon_sym_struct] = ACTIONS(4002), - [anon_sym_union] = ACTIONS(4002), - [anon_sym_if] = ACTIONS(4002), - [anon_sym_switch] = ACTIONS(4002), - [anon_sym_case] = ACTIONS(4002), - [anon_sym_default] = ACTIONS(4002), - [anon_sym_while] = ACTIONS(4002), - [anon_sym_do] = ACTIONS(4002), - [anon_sym_for] = ACTIONS(4002), - [anon_sym_return] = ACTIONS(4002), - [anon_sym_break] = ACTIONS(4002), - [anon_sym_continue] = ACTIONS(4002), - [anon_sym_goto] = ACTIONS(4002), - [anon_sym___try] = ACTIONS(4002), - [anon_sym___leave] = ACTIONS(4002), - [anon_sym_not] = ACTIONS(4002), - [anon_sym_compl] = ACTIONS(4002), - [anon_sym_DASH_DASH] = ACTIONS(4004), - [anon_sym_PLUS_PLUS] = ACTIONS(4004), - [anon_sym_sizeof] = ACTIONS(4002), - [anon_sym___alignof__] = ACTIONS(4002), - [anon_sym___alignof] = ACTIONS(4002), - [anon_sym__alignof] = ACTIONS(4002), - [anon_sym_alignof] = ACTIONS(4002), - [anon_sym__Alignof] = ACTIONS(4002), - [anon_sym_offsetof] = ACTIONS(4002), - [anon_sym__Generic] = ACTIONS(4002), - [anon_sym_typename] = ACTIONS(4002), - [anon_sym_asm] = ACTIONS(4002), - [anon_sym___asm__] = ACTIONS(4002), - [anon_sym___asm] = ACTIONS(4002), - [sym_number_literal] = ACTIONS(4004), - [anon_sym_L_SQUOTE] = ACTIONS(4004), - [anon_sym_u_SQUOTE] = ACTIONS(4004), - [anon_sym_U_SQUOTE] = ACTIONS(4004), - [anon_sym_u8_SQUOTE] = ACTIONS(4004), - [anon_sym_SQUOTE] = ACTIONS(4004), - [anon_sym_L_DQUOTE] = ACTIONS(4004), - [anon_sym_u_DQUOTE] = ACTIONS(4004), - [anon_sym_U_DQUOTE] = ACTIONS(4004), - [anon_sym_u8_DQUOTE] = ACTIONS(4004), - [anon_sym_DQUOTE] = ACTIONS(4004), - [sym_true] = ACTIONS(4002), - [sym_false] = ACTIONS(4002), - [anon_sym_NULL] = ACTIONS(4002), - [anon_sym_nullptr] = ACTIONS(4002), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4002), - [anon_sym_decltype] = ACTIONS(4002), - [anon_sym_explicit] = ACTIONS(4002), - [anon_sym_template] = ACTIONS(4002), - [anon_sym_operator] = ACTIONS(4002), - [anon_sym_try] = ACTIONS(4002), - [anon_sym_delete] = ACTIONS(4002), - [anon_sym_throw] = ACTIONS(4002), - [anon_sym_namespace] = ACTIONS(4002), - [anon_sym_static_assert] = ACTIONS(4002), - [anon_sym_concept] = ACTIONS(4002), - [anon_sym_co_return] = ACTIONS(4002), - [anon_sym_co_yield] = ACTIONS(4002), - [anon_sym_R_DQUOTE] = ACTIONS(4004), - [anon_sym_LR_DQUOTE] = ACTIONS(4004), - [anon_sym_uR_DQUOTE] = ACTIONS(4004), - [anon_sym_UR_DQUOTE] = ACTIONS(4004), - [anon_sym_u8R_DQUOTE] = ACTIONS(4004), - [anon_sym_co_await] = ACTIONS(4002), - [anon_sym_new] = ACTIONS(4002), - [anon_sym_requires] = ACTIONS(4002), - [anon_sym_CARET_CARET] = ACTIONS(4004), - [anon_sym_LBRACK_COLON] = ACTIONS(4004), - [sym_this] = ACTIONS(4002), + [STATE(419)] = { + [sym_identifier] = ACTIONS(3996), + [aux_sym_preproc_include_token1] = ACTIONS(3996), + [aux_sym_preproc_def_token1] = ACTIONS(3996), + [aux_sym_preproc_if_token1] = ACTIONS(3996), + [aux_sym_preproc_if_token2] = ACTIONS(3996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3996), + [aux_sym_preproc_else_token1] = ACTIONS(3996), + [aux_sym_preproc_elif_token1] = ACTIONS(3996), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3996), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3996), + [sym_preproc_directive] = ACTIONS(3996), + [anon_sym_LPAREN2] = ACTIONS(3998), + [anon_sym_BANG] = ACTIONS(3998), + [anon_sym_TILDE] = ACTIONS(3998), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_PLUS] = ACTIONS(3996), + [anon_sym_STAR] = ACTIONS(3998), + [anon_sym_AMP_AMP] = ACTIONS(3998), + [anon_sym_AMP] = ACTIONS(3996), + [anon_sym_SEMI] = ACTIONS(3998), + [anon_sym___extension__] = ACTIONS(3996), + [anon_sym_typedef] = ACTIONS(3996), + [anon_sym_virtual] = ACTIONS(3996), + [anon_sym_extern] = ACTIONS(3996), + [anon_sym___attribute__] = ACTIONS(3996), + [anon_sym___attribute] = ACTIONS(3996), + [anon_sym_using] = ACTIONS(3996), + [anon_sym_COLON_COLON] = ACTIONS(3998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3998), + [anon_sym___declspec] = ACTIONS(3996), + [anon_sym___based] = ACTIONS(3996), + [anon_sym___cdecl] = ACTIONS(3996), + [anon_sym___clrcall] = ACTIONS(3996), + [anon_sym___stdcall] = ACTIONS(3996), + [anon_sym___fastcall] = ACTIONS(3996), + [anon_sym___thiscall] = ACTIONS(3996), + [anon_sym___vectorcall] = ACTIONS(3996), + [anon_sym_LBRACE] = ACTIONS(3998), + [anon_sym_signed] = ACTIONS(3996), + [anon_sym_unsigned] = ACTIONS(3996), + [anon_sym_long] = ACTIONS(3996), + [anon_sym_short] = ACTIONS(3996), + [anon_sym_LBRACK] = ACTIONS(3996), + [anon_sym_static] = ACTIONS(3996), + [anon_sym_register] = ACTIONS(3996), + [anon_sym_inline] = ACTIONS(3996), + [anon_sym___inline] = ACTIONS(3996), + [anon_sym___inline__] = ACTIONS(3996), + [anon_sym___forceinline] = ACTIONS(3996), + [anon_sym_thread_local] = ACTIONS(3996), + [anon_sym___thread] = ACTIONS(3996), + [anon_sym_const] = ACTIONS(3996), + [anon_sym_constexpr] = ACTIONS(3996), + [anon_sym_volatile] = ACTIONS(3996), + [anon_sym_restrict] = ACTIONS(3996), + [anon_sym___restrict__] = ACTIONS(3996), + [anon_sym__Atomic] = ACTIONS(3996), + [anon_sym__Noreturn] = ACTIONS(3996), + [anon_sym_noreturn] = ACTIONS(3996), + [anon_sym__Nonnull] = ACTIONS(3996), + [anon_sym_mutable] = ACTIONS(3996), + [anon_sym_constinit] = ACTIONS(3996), + [anon_sym_consteval] = ACTIONS(3996), + [anon_sym_alignas] = ACTIONS(3996), + [anon_sym__Alignas] = ACTIONS(3996), + [sym_primitive_type] = ACTIONS(3996), + [anon_sym_enum] = ACTIONS(3996), + [anon_sym_class] = ACTIONS(3996), + [anon_sym_struct] = ACTIONS(3996), + [anon_sym_union] = ACTIONS(3996), + [anon_sym_if] = ACTIONS(3996), + [anon_sym_switch] = ACTIONS(3996), + [anon_sym_case] = ACTIONS(3996), + [anon_sym_default] = ACTIONS(3996), + [anon_sym_while] = ACTIONS(3996), + [anon_sym_do] = ACTIONS(3996), + [anon_sym_for] = ACTIONS(3996), + [anon_sym_return] = ACTIONS(3996), + [anon_sym_break] = ACTIONS(3996), + [anon_sym_continue] = ACTIONS(3996), + [anon_sym_goto] = ACTIONS(3996), + [anon_sym___try] = ACTIONS(3996), + [anon_sym___leave] = ACTIONS(3996), + [anon_sym_not] = ACTIONS(3996), + [anon_sym_compl] = ACTIONS(3996), + [anon_sym_DASH_DASH] = ACTIONS(3998), + [anon_sym_PLUS_PLUS] = ACTIONS(3998), + [anon_sym_sizeof] = ACTIONS(3996), + [anon_sym___alignof__] = ACTIONS(3996), + [anon_sym___alignof] = ACTIONS(3996), + [anon_sym__alignof] = ACTIONS(3996), + [anon_sym_alignof] = ACTIONS(3996), + [anon_sym__Alignof] = ACTIONS(3996), + [anon_sym_offsetof] = ACTIONS(3996), + [anon_sym__Generic] = ACTIONS(3996), + [anon_sym_typename] = ACTIONS(3996), + [anon_sym_asm] = ACTIONS(3996), + [anon_sym___asm__] = ACTIONS(3996), + [anon_sym___asm] = ACTIONS(3996), + [sym_number_literal] = ACTIONS(3998), + [anon_sym_L_SQUOTE] = ACTIONS(3998), + [anon_sym_u_SQUOTE] = ACTIONS(3998), + [anon_sym_U_SQUOTE] = ACTIONS(3998), + [anon_sym_u8_SQUOTE] = ACTIONS(3998), + [anon_sym_SQUOTE] = ACTIONS(3998), + [anon_sym_L_DQUOTE] = ACTIONS(3998), + [anon_sym_u_DQUOTE] = ACTIONS(3998), + [anon_sym_U_DQUOTE] = ACTIONS(3998), + [anon_sym_u8_DQUOTE] = ACTIONS(3998), + [anon_sym_DQUOTE] = ACTIONS(3998), + [sym_true] = ACTIONS(3996), + [sym_false] = ACTIONS(3996), + [anon_sym_NULL] = ACTIONS(3996), + [anon_sym_nullptr] = ACTIONS(3996), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3996), + [anon_sym_decltype] = ACTIONS(3996), + [anon_sym_explicit] = ACTIONS(3996), + [anon_sym_export] = ACTIONS(3996), + [anon_sym_module] = ACTIONS(3996), + [anon_sym_import] = ACTIONS(3996), + [anon_sym_template] = ACTIONS(3996), + [anon_sym_operator] = ACTIONS(3996), + [anon_sym_try] = ACTIONS(3996), + [anon_sym_delete] = ACTIONS(3996), + [anon_sym_throw] = ACTIONS(3996), + [anon_sym_namespace] = ACTIONS(3996), + [anon_sym_static_assert] = ACTIONS(3996), + [anon_sym_concept] = ACTIONS(3996), + [anon_sym_co_return] = ACTIONS(3996), + [anon_sym_co_yield] = ACTIONS(3996), + [anon_sym_R_DQUOTE] = ACTIONS(3998), + [anon_sym_LR_DQUOTE] = ACTIONS(3998), + [anon_sym_uR_DQUOTE] = ACTIONS(3998), + [anon_sym_UR_DQUOTE] = ACTIONS(3998), + [anon_sym_u8R_DQUOTE] = ACTIONS(3998), + [anon_sym_co_await] = ACTIONS(3996), + [anon_sym_new] = ACTIONS(3996), + [anon_sym_requires] = ACTIONS(3996), + [anon_sym_CARET_CARET] = ACTIONS(3998), + [anon_sym_LBRACK_COLON] = ACTIONS(3998), + [sym_this] = ACTIONS(3996), }, - [STATE(440)] = { - [sym_identifier] = ACTIONS(4006), - [aux_sym_preproc_include_token1] = ACTIONS(4006), - [aux_sym_preproc_def_token1] = ACTIONS(4006), - [aux_sym_preproc_if_token1] = ACTIONS(4006), - [aux_sym_preproc_if_token2] = ACTIONS(4006), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4006), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4006), - [aux_sym_preproc_else_token1] = ACTIONS(4006), - [aux_sym_preproc_elif_token1] = ACTIONS(4006), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4006), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4006), - [sym_preproc_directive] = ACTIONS(4006), - [anon_sym_LPAREN2] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4008), - [anon_sym_TILDE] = ACTIONS(4008), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_STAR] = ACTIONS(4008), - [anon_sym_AMP_AMP] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4006), - [anon_sym_SEMI] = ACTIONS(4008), - [anon_sym___extension__] = ACTIONS(4006), - [anon_sym_typedef] = ACTIONS(4006), - [anon_sym_virtual] = ACTIONS(4006), - [anon_sym_extern] = ACTIONS(4006), - [anon_sym___attribute__] = ACTIONS(4006), - [anon_sym___attribute] = ACTIONS(4006), - [anon_sym_using] = ACTIONS(4006), - [anon_sym_COLON_COLON] = ACTIONS(4008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4008), - [anon_sym___declspec] = ACTIONS(4006), - [anon_sym___based] = ACTIONS(4006), - [anon_sym___cdecl] = ACTIONS(4006), - [anon_sym___clrcall] = ACTIONS(4006), - [anon_sym___stdcall] = ACTIONS(4006), - [anon_sym___fastcall] = ACTIONS(4006), - [anon_sym___thiscall] = ACTIONS(4006), - [anon_sym___vectorcall] = ACTIONS(4006), - [anon_sym_LBRACE] = ACTIONS(4008), - [anon_sym_signed] = ACTIONS(4006), - [anon_sym_unsigned] = ACTIONS(4006), - [anon_sym_long] = ACTIONS(4006), - [anon_sym_short] = ACTIONS(4006), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_static] = ACTIONS(4006), - [anon_sym_register] = ACTIONS(4006), - [anon_sym_inline] = ACTIONS(4006), - [anon_sym___inline] = ACTIONS(4006), - [anon_sym___inline__] = ACTIONS(4006), - [anon_sym___forceinline] = ACTIONS(4006), - [anon_sym_thread_local] = ACTIONS(4006), - [anon_sym___thread] = ACTIONS(4006), - [anon_sym_const] = ACTIONS(4006), - [anon_sym_constexpr] = ACTIONS(4006), - [anon_sym_volatile] = ACTIONS(4006), - [anon_sym_restrict] = ACTIONS(4006), - [anon_sym___restrict__] = ACTIONS(4006), - [anon_sym__Atomic] = ACTIONS(4006), - [anon_sym__Noreturn] = ACTIONS(4006), - [anon_sym_noreturn] = ACTIONS(4006), - [anon_sym__Nonnull] = ACTIONS(4006), - [anon_sym_mutable] = ACTIONS(4006), - [anon_sym_constinit] = ACTIONS(4006), - [anon_sym_consteval] = ACTIONS(4006), - [anon_sym_alignas] = ACTIONS(4006), - [anon_sym__Alignas] = ACTIONS(4006), - [sym_primitive_type] = ACTIONS(4006), - [anon_sym_enum] = ACTIONS(4006), - [anon_sym_class] = ACTIONS(4006), - [anon_sym_struct] = ACTIONS(4006), - [anon_sym_union] = ACTIONS(4006), - [anon_sym_if] = ACTIONS(4006), - [anon_sym_switch] = ACTIONS(4006), - [anon_sym_case] = ACTIONS(4006), - [anon_sym_default] = ACTIONS(4006), - [anon_sym_while] = ACTIONS(4006), - [anon_sym_do] = ACTIONS(4006), - [anon_sym_for] = ACTIONS(4006), - [anon_sym_return] = ACTIONS(4006), - [anon_sym_break] = ACTIONS(4006), - [anon_sym_continue] = ACTIONS(4006), - [anon_sym_goto] = ACTIONS(4006), - [anon_sym___try] = ACTIONS(4006), - [anon_sym___leave] = ACTIONS(4006), - [anon_sym_not] = ACTIONS(4006), - [anon_sym_compl] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4008), - [anon_sym_PLUS_PLUS] = ACTIONS(4008), - [anon_sym_sizeof] = ACTIONS(4006), - [anon_sym___alignof__] = ACTIONS(4006), - [anon_sym___alignof] = ACTIONS(4006), - [anon_sym__alignof] = ACTIONS(4006), - [anon_sym_alignof] = ACTIONS(4006), - [anon_sym__Alignof] = ACTIONS(4006), - [anon_sym_offsetof] = ACTIONS(4006), - [anon_sym__Generic] = ACTIONS(4006), - [anon_sym_typename] = ACTIONS(4006), - [anon_sym_asm] = ACTIONS(4006), - [anon_sym___asm__] = ACTIONS(4006), - [anon_sym___asm] = ACTIONS(4006), - [sym_number_literal] = ACTIONS(4008), - [anon_sym_L_SQUOTE] = ACTIONS(4008), - [anon_sym_u_SQUOTE] = ACTIONS(4008), - [anon_sym_U_SQUOTE] = ACTIONS(4008), - [anon_sym_u8_SQUOTE] = ACTIONS(4008), - [anon_sym_SQUOTE] = ACTIONS(4008), - [anon_sym_L_DQUOTE] = ACTIONS(4008), - [anon_sym_u_DQUOTE] = ACTIONS(4008), - [anon_sym_U_DQUOTE] = ACTIONS(4008), - [anon_sym_u8_DQUOTE] = ACTIONS(4008), - [anon_sym_DQUOTE] = ACTIONS(4008), - [sym_true] = ACTIONS(4006), - [sym_false] = ACTIONS(4006), - [anon_sym_NULL] = ACTIONS(4006), - [anon_sym_nullptr] = ACTIONS(4006), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4006), - [anon_sym_decltype] = ACTIONS(4006), - [anon_sym_explicit] = ACTIONS(4006), - [anon_sym_template] = ACTIONS(4006), - [anon_sym_operator] = ACTIONS(4006), - [anon_sym_try] = ACTIONS(4006), - [anon_sym_delete] = ACTIONS(4006), - [anon_sym_throw] = ACTIONS(4006), - [anon_sym_namespace] = ACTIONS(4006), - [anon_sym_static_assert] = ACTIONS(4006), - [anon_sym_concept] = ACTIONS(4006), - [anon_sym_co_return] = ACTIONS(4006), - [anon_sym_co_yield] = ACTIONS(4006), - [anon_sym_R_DQUOTE] = ACTIONS(4008), - [anon_sym_LR_DQUOTE] = ACTIONS(4008), - [anon_sym_uR_DQUOTE] = ACTIONS(4008), - [anon_sym_UR_DQUOTE] = ACTIONS(4008), - [anon_sym_u8R_DQUOTE] = ACTIONS(4008), - [anon_sym_co_await] = ACTIONS(4006), - [anon_sym_new] = ACTIONS(4006), - [anon_sym_requires] = ACTIONS(4006), - [anon_sym_CARET_CARET] = ACTIONS(4008), - [anon_sym_LBRACK_COLON] = ACTIONS(4008), - [sym_this] = ACTIONS(4006), + [STATE(420)] = { + [sym_identifier] = ACTIONS(4000), + [aux_sym_preproc_include_token1] = ACTIONS(4000), + [aux_sym_preproc_def_token1] = ACTIONS(4000), + [aux_sym_preproc_if_token1] = ACTIONS(4000), + [aux_sym_preproc_if_token2] = ACTIONS(4000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4000), + [aux_sym_preproc_else_token1] = ACTIONS(4000), + [aux_sym_preproc_elif_token1] = ACTIONS(4000), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4000), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4000), + [sym_preproc_directive] = ACTIONS(4000), + [anon_sym_LPAREN2] = ACTIONS(4002), + [anon_sym_BANG] = ACTIONS(4002), + [anon_sym_TILDE] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_AMP] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym___extension__] = ACTIONS(4000), + [anon_sym_typedef] = ACTIONS(4000), + [anon_sym_virtual] = ACTIONS(4000), + [anon_sym_extern] = ACTIONS(4000), + [anon_sym___attribute__] = ACTIONS(4000), + [anon_sym___attribute] = ACTIONS(4000), + [anon_sym_using] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4002), + [anon_sym___declspec] = ACTIONS(4000), + [anon_sym___based] = ACTIONS(4000), + [anon_sym___cdecl] = ACTIONS(4000), + [anon_sym___clrcall] = ACTIONS(4000), + [anon_sym___stdcall] = ACTIONS(4000), + [anon_sym___fastcall] = ACTIONS(4000), + [anon_sym___thiscall] = ACTIONS(4000), + [anon_sym___vectorcall] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_signed] = ACTIONS(4000), + [anon_sym_unsigned] = ACTIONS(4000), + [anon_sym_long] = ACTIONS(4000), + [anon_sym_short] = ACTIONS(4000), + [anon_sym_LBRACK] = ACTIONS(4000), + [anon_sym_static] = ACTIONS(4000), + [anon_sym_register] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym___inline] = ACTIONS(4000), + [anon_sym___inline__] = ACTIONS(4000), + [anon_sym___forceinline] = ACTIONS(4000), + [anon_sym_thread_local] = ACTIONS(4000), + [anon_sym___thread] = ACTIONS(4000), + [anon_sym_const] = ACTIONS(4000), + [anon_sym_constexpr] = ACTIONS(4000), + [anon_sym_volatile] = ACTIONS(4000), + [anon_sym_restrict] = ACTIONS(4000), + [anon_sym___restrict__] = ACTIONS(4000), + [anon_sym__Atomic] = ACTIONS(4000), + [anon_sym__Noreturn] = ACTIONS(4000), + [anon_sym_noreturn] = ACTIONS(4000), + [anon_sym__Nonnull] = ACTIONS(4000), + [anon_sym_mutable] = ACTIONS(4000), + [anon_sym_constinit] = ACTIONS(4000), + [anon_sym_consteval] = ACTIONS(4000), + [anon_sym_alignas] = ACTIONS(4000), + [anon_sym__Alignas] = ACTIONS(4000), + [sym_primitive_type] = ACTIONS(4000), + [anon_sym_enum] = ACTIONS(4000), + [anon_sym_class] = ACTIONS(4000), + [anon_sym_struct] = ACTIONS(4000), + [anon_sym_union] = ACTIONS(4000), + [anon_sym_if] = ACTIONS(4000), + [anon_sym_switch] = ACTIONS(4000), + [anon_sym_case] = ACTIONS(4000), + [anon_sym_default] = ACTIONS(4000), + [anon_sym_while] = ACTIONS(4000), + [anon_sym_do] = ACTIONS(4000), + [anon_sym_for] = ACTIONS(4000), + [anon_sym_return] = ACTIONS(4000), + [anon_sym_break] = ACTIONS(4000), + [anon_sym_continue] = ACTIONS(4000), + [anon_sym_goto] = ACTIONS(4000), + [anon_sym___try] = ACTIONS(4000), + [anon_sym___leave] = ACTIONS(4000), + [anon_sym_not] = ACTIONS(4000), + [anon_sym_compl] = ACTIONS(4000), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_sizeof] = ACTIONS(4000), + [anon_sym___alignof__] = ACTIONS(4000), + [anon_sym___alignof] = ACTIONS(4000), + [anon_sym__alignof] = ACTIONS(4000), + [anon_sym_alignof] = ACTIONS(4000), + [anon_sym__Alignof] = ACTIONS(4000), + [anon_sym_offsetof] = ACTIONS(4000), + [anon_sym__Generic] = ACTIONS(4000), + [anon_sym_typename] = ACTIONS(4000), + [anon_sym_asm] = ACTIONS(4000), + [anon_sym___asm__] = ACTIONS(4000), + [anon_sym___asm] = ACTIONS(4000), + [sym_number_literal] = ACTIONS(4002), + [anon_sym_L_SQUOTE] = ACTIONS(4002), + [anon_sym_u_SQUOTE] = ACTIONS(4002), + [anon_sym_U_SQUOTE] = ACTIONS(4002), + [anon_sym_u8_SQUOTE] = ACTIONS(4002), + [anon_sym_SQUOTE] = ACTIONS(4002), + [anon_sym_L_DQUOTE] = ACTIONS(4002), + [anon_sym_u_DQUOTE] = ACTIONS(4002), + [anon_sym_U_DQUOTE] = ACTIONS(4002), + [anon_sym_u8_DQUOTE] = ACTIONS(4002), + [anon_sym_DQUOTE] = ACTIONS(4002), + [sym_true] = ACTIONS(4000), + [sym_false] = ACTIONS(4000), + [anon_sym_NULL] = ACTIONS(4000), + [anon_sym_nullptr] = ACTIONS(4000), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4000), + [anon_sym_decltype] = ACTIONS(4000), + [anon_sym_explicit] = ACTIONS(4000), + [anon_sym_export] = ACTIONS(4000), + [anon_sym_module] = ACTIONS(4000), + [anon_sym_import] = ACTIONS(4000), + [anon_sym_template] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_try] = ACTIONS(4000), + [anon_sym_delete] = ACTIONS(4000), + [anon_sym_throw] = ACTIONS(4000), + [anon_sym_namespace] = ACTIONS(4000), + [anon_sym_static_assert] = ACTIONS(4000), + [anon_sym_concept] = ACTIONS(4000), + [anon_sym_co_return] = ACTIONS(4000), + [anon_sym_co_yield] = ACTIONS(4000), + [anon_sym_R_DQUOTE] = ACTIONS(4002), + [anon_sym_LR_DQUOTE] = ACTIONS(4002), + [anon_sym_uR_DQUOTE] = ACTIONS(4002), + [anon_sym_UR_DQUOTE] = ACTIONS(4002), + [anon_sym_u8R_DQUOTE] = ACTIONS(4002), + [anon_sym_co_await] = ACTIONS(4000), + [anon_sym_new] = ACTIONS(4000), + [anon_sym_requires] = ACTIONS(4000), + [anon_sym_CARET_CARET] = ACTIONS(4002), + [anon_sym_LBRACK_COLON] = ACTIONS(4002), + [sym_this] = ACTIONS(4000), }, - [STATE(441)] = { - [sym_identifier] = ACTIONS(4010), - [aux_sym_preproc_include_token1] = ACTIONS(4010), - [aux_sym_preproc_def_token1] = ACTIONS(4010), - [aux_sym_preproc_if_token1] = ACTIONS(4010), - [aux_sym_preproc_if_token2] = ACTIONS(4010), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4010), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4010), - [aux_sym_preproc_else_token1] = ACTIONS(4010), - [aux_sym_preproc_elif_token1] = ACTIONS(4010), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4010), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4010), - [sym_preproc_directive] = ACTIONS(4010), - [anon_sym_LPAREN2] = ACTIONS(4012), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_TILDE] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4012), - [anon_sym_AMP_AMP] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4012), - [anon_sym___extension__] = ACTIONS(4010), - [anon_sym_typedef] = ACTIONS(4010), - [anon_sym_virtual] = ACTIONS(4010), - [anon_sym_extern] = ACTIONS(4010), - [anon_sym___attribute__] = ACTIONS(4010), - [anon_sym___attribute] = ACTIONS(4010), - [anon_sym_using] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4012), - [anon_sym___declspec] = ACTIONS(4010), - [anon_sym___based] = ACTIONS(4010), - [anon_sym___cdecl] = ACTIONS(4010), - [anon_sym___clrcall] = ACTIONS(4010), - [anon_sym___stdcall] = ACTIONS(4010), - [anon_sym___fastcall] = ACTIONS(4010), - [anon_sym___thiscall] = ACTIONS(4010), - [anon_sym___vectorcall] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_signed] = ACTIONS(4010), - [anon_sym_unsigned] = ACTIONS(4010), - [anon_sym_long] = ACTIONS(4010), - [anon_sym_short] = ACTIONS(4010), - [anon_sym_LBRACK] = ACTIONS(4010), - [anon_sym_static] = ACTIONS(4010), - [anon_sym_register] = ACTIONS(4010), - [anon_sym_inline] = ACTIONS(4010), - [anon_sym___inline] = ACTIONS(4010), - [anon_sym___inline__] = ACTIONS(4010), - [anon_sym___forceinline] = ACTIONS(4010), - [anon_sym_thread_local] = ACTIONS(4010), - [anon_sym___thread] = ACTIONS(4010), - [anon_sym_const] = ACTIONS(4010), - [anon_sym_constexpr] = ACTIONS(4010), - [anon_sym_volatile] = ACTIONS(4010), - [anon_sym_restrict] = ACTIONS(4010), - [anon_sym___restrict__] = ACTIONS(4010), - [anon_sym__Atomic] = ACTIONS(4010), - [anon_sym__Noreturn] = ACTIONS(4010), - [anon_sym_noreturn] = ACTIONS(4010), - [anon_sym__Nonnull] = ACTIONS(4010), - [anon_sym_mutable] = ACTIONS(4010), - [anon_sym_constinit] = ACTIONS(4010), - [anon_sym_consteval] = ACTIONS(4010), - [anon_sym_alignas] = ACTIONS(4010), - [anon_sym__Alignas] = ACTIONS(4010), - [sym_primitive_type] = ACTIONS(4010), - [anon_sym_enum] = ACTIONS(4010), - [anon_sym_class] = ACTIONS(4010), - [anon_sym_struct] = ACTIONS(4010), - [anon_sym_union] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_switch] = ACTIONS(4010), - [anon_sym_case] = ACTIONS(4010), - [anon_sym_default] = ACTIONS(4010), - [anon_sym_while] = ACTIONS(4010), - [anon_sym_do] = ACTIONS(4010), - [anon_sym_for] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_goto] = ACTIONS(4010), - [anon_sym___try] = ACTIONS(4010), - [anon_sym___leave] = ACTIONS(4010), - [anon_sym_not] = ACTIONS(4010), - [anon_sym_compl] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4012), - [anon_sym_sizeof] = ACTIONS(4010), - [anon_sym___alignof__] = ACTIONS(4010), - [anon_sym___alignof] = ACTIONS(4010), - [anon_sym__alignof] = ACTIONS(4010), - [anon_sym_alignof] = ACTIONS(4010), - [anon_sym__Alignof] = ACTIONS(4010), - [anon_sym_offsetof] = ACTIONS(4010), - [anon_sym__Generic] = ACTIONS(4010), - [anon_sym_typename] = ACTIONS(4010), - [anon_sym_asm] = ACTIONS(4010), - [anon_sym___asm__] = ACTIONS(4010), - [anon_sym___asm] = ACTIONS(4010), - [sym_number_literal] = ACTIONS(4012), - [anon_sym_L_SQUOTE] = ACTIONS(4012), - [anon_sym_u_SQUOTE] = ACTIONS(4012), - [anon_sym_U_SQUOTE] = ACTIONS(4012), - [anon_sym_u8_SQUOTE] = ACTIONS(4012), - [anon_sym_SQUOTE] = ACTIONS(4012), - [anon_sym_L_DQUOTE] = ACTIONS(4012), - [anon_sym_u_DQUOTE] = ACTIONS(4012), - [anon_sym_U_DQUOTE] = ACTIONS(4012), - [anon_sym_u8_DQUOTE] = ACTIONS(4012), - [anon_sym_DQUOTE] = ACTIONS(4012), - [sym_true] = ACTIONS(4010), - [sym_false] = ACTIONS(4010), - [anon_sym_NULL] = ACTIONS(4010), - [anon_sym_nullptr] = ACTIONS(4010), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4010), - [anon_sym_decltype] = ACTIONS(4010), - [anon_sym_explicit] = ACTIONS(4010), - [anon_sym_template] = ACTIONS(4010), - [anon_sym_operator] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_delete] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_namespace] = ACTIONS(4010), - [anon_sym_static_assert] = ACTIONS(4010), - [anon_sym_concept] = ACTIONS(4010), - [anon_sym_co_return] = ACTIONS(4010), - [anon_sym_co_yield] = ACTIONS(4010), - [anon_sym_R_DQUOTE] = ACTIONS(4012), - [anon_sym_LR_DQUOTE] = ACTIONS(4012), - [anon_sym_uR_DQUOTE] = ACTIONS(4012), - [anon_sym_UR_DQUOTE] = ACTIONS(4012), - [anon_sym_u8R_DQUOTE] = ACTIONS(4012), - [anon_sym_co_await] = ACTIONS(4010), - [anon_sym_new] = ACTIONS(4010), - [anon_sym_requires] = ACTIONS(4010), - [anon_sym_CARET_CARET] = ACTIONS(4012), - [anon_sym_LBRACK_COLON] = ACTIONS(4012), - [sym_this] = ACTIONS(4010), + [STATE(421)] = { + [sym_identifier] = ACTIONS(4004), + [aux_sym_preproc_include_token1] = ACTIONS(4004), + [aux_sym_preproc_def_token1] = ACTIONS(4004), + [aux_sym_preproc_if_token1] = ACTIONS(4004), + [aux_sym_preproc_if_token2] = ACTIONS(4004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4004), + [aux_sym_preproc_else_token1] = ACTIONS(4004), + [aux_sym_preproc_elif_token1] = ACTIONS(4004), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4004), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4004), + [sym_preproc_directive] = ACTIONS(4004), + [anon_sym_LPAREN2] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4006), + [anon_sym_TILDE] = ACTIONS(4006), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4006), + [anon_sym___extension__] = ACTIONS(4004), + [anon_sym_typedef] = ACTIONS(4004), + [anon_sym_virtual] = ACTIONS(4004), + [anon_sym_extern] = ACTIONS(4004), + [anon_sym___attribute__] = ACTIONS(4004), + [anon_sym___attribute] = ACTIONS(4004), + [anon_sym_using] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4006), + [anon_sym___declspec] = ACTIONS(4004), + [anon_sym___based] = ACTIONS(4004), + [anon_sym___cdecl] = ACTIONS(4004), + [anon_sym___clrcall] = ACTIONS(4004), + [anon_sym___stdcall] = ACTIONS(4004), + [anon_sym___fastcall] = ACTIONS(4004), + [anon_sym___thiscall] = ACTIONS(4004), + [anon_sym___vectorcall] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4006), + [anon_sym_signed] = ACTIONS(4004), + [anon_sym_unsigned] = ACTIONS(4004), + [anon_sym_long] = ACTIONS(4004), + [anon_sym_short] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_register] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym___inline] = ACTIONS(4004), + [anon_sym___inline__] = ACTIONS(4004), + [anon_sym___forceinline] = ACTIONS(4004), + [anon_sym_thread_local] = ACTIONS(4004), + [anon_sym___thread] = ACTIONS(4004), + [anon_sym_const] = ACTIONS(4004), + [anon_sym_constexpr] = ACTIONS(4004), + [anon_sym_volatile] = ACTIONS(4004), + [anon_sym_restrict] = ACTIONS(4004), + [anon_sym___restrict__] = ACTIONS(4004), + [anon_sym__Atomic] = ACTIONS(4004), + [anon_sym__Noreturn] = ACTIONS(4004), + [anon_sym_noreturn] = ACTIONS(4004), + [anon_sym__Nonnull] = ACTIONS(4004), + [anon_sym_mutable] = ACTIONS(4004), + [anon_sym_constinit] = ACTIONS(4004), + [anon_sym_consteval] = ACTIONS(4004), + [anon_sym_alignas] = ACTIONS(4004), + [anon_sym__Alignas] = ACTIONS(4004), + [sym_primitive_type] = ACTIONS(4004), + [anon_sym_enum] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4004), + [anon_sym_struct] = ACTIONS(4004), + [anon_sym_union] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_switch] = ACTIONS(4004), + [anon_sym_case] = ACTIONS(4004), + [anon_sym_default] = ACTIONS(4004), + [anon_sym_while] = ACTIONS(4004), + [anon_sym_do] = ACTIONS(4004), + [anon_sym_for] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_goto] = ACTIONS(4004), + [anon_sym___try] = ACTIONS(4004), + [anon_sym___leave] = ACTIONS(4004), + [anon_sym_not] = ACTIONS(4004), + [anon_sym_compl] = ACTIONS(4004), + [anon_sym_DASH_DASH] = ACTIONS(4006), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_sizeof] = ACTIONS(4004), + [anon_sym___alignof__] = ACTIONS(4004), + [anon_sym___alignof] = ACTIONS(4004), + [anon_sym__alignof] = ACTIONS(4004), + [anon_sym_alignof] = ACTIONS(4004), + [anon_sym__Alignof] = ACTIONS(4004), + [anon_sym_offsetof] = ACTIONS(4004), + [anon_sym__Generic] = ACTIONS(4004), + [anon_sym_typename] = ACTIONS(4004), + [anon_sym_asm] = ACTIONS(4004), + [anon_sym___asm__] = ACTIONS(4004), + [anon_sym___asm] = ACTIONS(4004), + [sym_number_literal] = ACTIONS(4006), + [anon_sym_L_SQUOTE] = ACTIONS(4006), + [anon_sym_u_SQUOTE] = ACTIONS(4006), + [anon_sym_U_SQUOTE] = ACTIONS(4006), + [anon_sym_u8_SQUOTE] = ACTIONS(4006), + [anon_sym_SQUOTE] = ACTIONS(4006), + [anon_sym_L_DQUOTE] = ACTIONS(4006), + [anon_sym_u_DQUOTE] = ACTIONS(4006), + [anon_sym_U_DQUOTE] = ACTIONS(4006), + [anon_sym_u8_DQUOTE] = ACTIONS(4006), + [anon_sym_DQUOTE] = ACTIONS(4006), + [sym_true] = ACTIONS(4004), + [sym_false] = ACTIONS(4004), + [anon_sym_NULL] = ACTIONS(4004), + [anon_sym_nullptr] = ACTIONS(4004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4004), + [anon_sym_decltype] = ACTIONS(4004), + [anon_sym_explicit] = ACTIONS(4004), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_module] = ACTIONS(4004), + [anon_sym_import] = ACTIONS(4004), + [anon_sym_template] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_delete] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_namespace] = ACTIONS(4004), + [anon_sym_static_assert] = ACTIONS(4004), + [anon_sym_concept] = ACTIONS(4004), + [anon_sym_co_return] = ACTIONS(4004), + [anon_sym_co_yield] = ACTIONS(4004), + [anon_sym_R_DQUOTE] = ACTIONS(4006), + [anon_sym_LR_DQUOTE] = ACTIONS(4006), + [anon_sym_uR_DQUOTE] = ACTIONS(4006), + [anon_sym_UR_DQUOTE] = ACTIONS(4006), + [anon_sym_u8R_DQUOTE] = ACTIONS(4006), + [anon_sym_co_await] = ACTIONS(4004), + [anon_sym_new] = ACTIONS(4004), + [anon_sym_requires] = ACTIONS(4004), + [anon_sym_CARET_CARET] = ACTIONS(4006), + [anon_sym_LBRACK_COLON] = ACTIONS(4006), + [sym_this] = ACTIONS(4004), }, - [STATE(442)] = { - [sym_identifier] = ACTIONS(4014), - [aux_sym_preproc_include_token1] = ACTIONS(4014), - [aux_sym_preproc_def_token1] = ACTIONS(4014), - [aux_sym_preproc_if_token1] = ACTIONS(4014), - [aux_sym_preproc_if_token2] = ACTIONS(4014), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4014), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4014), - [aux_sym_preproc_else_token1] = ACTIONS(4014), - [aux_sym_preproc_elif_token1] = ACTIONS(4014), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4014), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4014), - [sym_preproc_directive] = ACTIONS(4014), - [anon_sym_LPAREN2] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_TILDE] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4014), - [anon_sym_STAR] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4014), - [anon_sym_SEMI] = ACTIONS(4016), - [anon_sym___extension__] = ACTIONS(4014), - [anon_sym_typedef] = ACTIONS(4014), - [anon_sym_virtual] = ACTIONS(4014), - [anon_sym_extern] = ACTIONS(4014), - [anon_sym___attribute__] = ACTIONS(4014), - [anon_sym___attribute] = ACTIONS(4014), - [anon_sym_using] = ACTIONS(4014), - [anon_sym_COLON_COLON] = ACTIONS(4016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4016), - [anon_sym___declspec] = ACTIONS(4014), - [anon_sym___based] = ACTIONS(4014), - [anon_sym___cdecl] = ACTIONS(4014), - [anon_sym___clrcall] = ACTIONS(4014), - [anon_sym___stdcall] = ACTIONS(4014), - [anon_sym___fastcall] = ACTIONS(4014), - [anon_sym___thiscall] = ACTIONS(4014), - [anon_sym___vectorcall] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4016), - [anon_sym_signed] = ACTIONS(4014), - [anon_sym_unsigned] = ACTIONS(4014), - [anon_sym_long] = ACTIONS(4014), - [anon_sym_short] = ACTIONS(4014), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_static] = ACTIONS(4014), - [anon_sym_register] = ACTIONS(4014), - [anon_sym_inline] = ACTIONS(4014), - [anon_sym___inline] = ACTIONS(4014), - [anon_sym___inline__] = ACTIONS(4014), - [anon_sym___forceinline] = ACTIONS(4014), - [anon_sym_thread_local] = ACTIONS(4014), - [anon_sym___thread] = ACTIONS(4014), - [anon_sym_const] = ACTIONS(4014), - [anon_sym_constexpr] = ACTIONS(4014), - [anon_sym_volatile] = ACTIONS(4014), - [anon_sym_restrict] = ACTIONS(4014), - [anon_sym___restrict__] = ACTIONS(4014), - [anon_sym__Atomic] = ACTIONS(4014), - [anon_sym__Noreturn] = ACTIONS(4014), - [anon_sym_noreturn] = ACTIONS(4014), - [anon_sym__Nonnull] = ACTIONS(4014), - [anon_sym_mutable] = ACTIONS(4014), - [anon_sym_constinit] = ACTIONS(4014), - [anon_sym_consteval] = ACTIONS(4014), - [anon_sym_alignas] = ACTIONS(4014), - [anon_sym__Alignas] = ACTIONS(4014), - [sym_primitive_type] = ACTIONS(4014), - [anon_sym_enum] = ACTIONS(4014), - [anon_sym_class] = ACTIONS(4014), - [anon_sym_struct] = ACTIONS(4014), - [anon_sym_union] = ACTIONS(4014), - [anon_sym_if] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4014), - [anon_sym_case] = ACTIONS(4014), - [anon_sym_default] = ACTIONS(4014), - [anon_sym_while] = ACTIONS(4014), - [anon_sym_do] = ACTIONS(4014), - [anon_sym_for] = ACTIONS(4014), - [anon_sym_return] = ACTIONS(4014), - [anon_sym_break] = ACTIONS(4014), - [anon_sym_continue] = ACTIONS(4014), - [anon_sym_goto] = ACTIONS(4014), - [anon_sym___try] = ACTIONS(4014), - [anon_sym___leave] = ACTIONS(4014), - [anon_sym_not] = ACTIONS(4014), - [anon_sym_compl] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4016), - [anon_sym_sizeof] = ACTIONS(4014), - [anon_sym___alignof__] = ACTIONS(4014), - [anon_sym___alignof] = ACTIONS(4014), - [anon_sym__alignof] = ACTIONS(4014), - [anon_sym_alignof] = ACTIONS(4014), - [anon_sym__Alignof] = ACTIONS(4014), - [anon_sym_offsetof] = ACTIONS(4014), - [anon_sym__Generic] = ACTIONS(4014), - [anon_sym_typename] = ACTIONS(4014), - [anon_sym_asm] = ACTIONS(4014), - [anon_sym___asm__] = ACTIONS(4014), - [anon_sym___asm] = ACTIONS(4014), - [sym_number_literal] = ACTIONS(4016), - [anon_sym_L_SQUOTE] = ACTIONS(4016), - [anon_sym_u_SQUOTE] = ACTIONS(4016), - [anon_sym_U_SQUOTE] = ACTIONS(4016), - [anon_sym_u8_SQUOTE] = ACTIONS(4016), - [anon_sym_SQUOTE] = ACTIONS(4016), - [anon_sym_L_DQUOTE] = ACTIONS(4016), - [anon_sym_u_DQUOTE] = ACTIONS(4016), - [anon_sym_U_DQUOTE] = ACTIONS(4016), - [anon_sym_u8_DQUOTE] = ACTIONS(4016), - [anon_sym_DQUOTE] = ACTIONS(4016), - [sym_true] = ACTIONS(4014), - [sym_false] = ACTIONS(4014), - [anon_sym_NULL] = ACTIONS(4014), - [anon_sym_nullptr] = ACTIONS(4014), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4014), - [anon_sym_decltype] = ACTIONS(4014), - [anon_sym_explicit] = ACTIONS(4014), - [anon_sym_template] = ACTIONS(4014), - [anon_sym_operator] = ACTIONS(4014), - [anon_sym_try] = ACTIONS(4014), - [anon_sym_delete] = ACTIONS(4014), - [anon_sym_throw] = ACTIONS(4014), - [anon_sym_namespace] = ACTIONS(4014), - [anon_sym_static_assert] = ACTIONS(4014), - [anon_sym_concept] = ACTIONS(4014), - [anon_sym_co_return] = ACTIONS(4014), - [anon_sym_co_yield] = ACTIONS(4014), - [anon_sym_R_DQUOTE] = ACTIONS(4016), - [anon_sym_LR_DQUOTE] = ACTIONS(4016), - [anon_sym_uR_DQUOTE] = ACTIONS(4016), - [anon_sym_UR_DQUOTE] = ACTIONS(4016), - [anon_sym_u8R_DQUOTE] = ACTIONS(4016), - [anon_sym_co_await] = ACTIONS(4014), - [anon_sym_new] = ACTIONS(4014), - [anon_sym_requires] = ACTIONS(4014), - [anon_sym_CARET_CARET] = ACTIONS(4016), - [anon_sym_LBRACK_COLON] = ACTIONS(4016), - [sym_this] = ACTIONS(4014), + [STATE(422)] = { + [sym_identifier] = ACTIONS(4008), + [aux_sym_preproc_include_token1] = ACTIONS(4008), + [aux_sym_preproc_def_token1] = ACTIONS(4008), + [aux_sym_preproc_if_token1] = ACTIONS(4008), + [aux_sym_preproc_if_token2] = ACTIONS(4008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4008), + [aux_sym_preproc_else_token1] = ACTIONS(4008), + [aux_sym_preproc_elif_token1] = ACTIONS(4008), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4008), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4008), + [sym_preproc_directive] = ACTIONS(4008), + [anon_sym_LPAREN2] = ACTIONS(4010), + [anon_sym_BANG] = ACTIONS(4010), + [anon_sym_TILDE] = ACTIONS(4010), + [anon_sym_DASH] = ACTIONS(4008), + [anon_sym_PLUS] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4010), + [anon_sym_AMP_AMP] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4008), + [anon_sym_SEMI] = ACTIONS(4010), + [anon_sym___extension__] = ACTIONS(4008), + [anon_sym_typedef] = ACTIONS(4008), + [anon_sym_virtual] = ACTIONS(4008), + [anon_sym_extern] = ACTIONS(4008), + [anon_sym___attribute__] = ACTIONS(4008), + [anon_sym___attribute] = ACTIONS(4008), + [anon_sym_using] = ACTIONS(4008), + [anon_sym_COLON_COLON] = ACTIONS(4010), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4010), + [anon_sym___declspec] = ACTIONS(4008), + [anon_sym___based] = ACTIONS(4008), + [anon_sym___cdecl] = ACTIONS(4008), + [anon_sym___clrcall] = ACTIONS(4008), + [anon_sym___stdcall] = ACTIONS(4008), + [anon_sym___fastcall] = ACTIONS(4008), + [anon_sym___thiscall] = ACTIONS(4008), + [anon_sym___vectorcall] = ACTIONS(4008), + [anon_sym_LBRACE] = ACTIONS(4010), + [anon_sym_signed] = ACTIONS(4008), + [anon_sym_unsigned] = ACTIONS(4008), + [anon_sym_long] = ACTIONS(4008), + [anon_sym_short] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(4008), + [anon_sym_static] = ACTIONS(4008), + [anon_sym_register] = ACTIONS(4008), + [anon_sym_inline] = ACTIONS(4008), + [anon_sym___inline] = ACTIONS(4008), + [anon_sym___inline__] = ACTIONS(4008), + [anon_sym___forceinline] = ACTIONS(4008), + [anon_sym_thread_local] = ACTIONS(4008), + [anon_sym___thread] = ACTIONS(4008), + [anon_sym_const] = ACTIONS(4008), + [anon_sym_constexpr] = ACTIONS(4008), + [anon_sym_volatile] = ACTIONS(4008), + [anon_sym_restrict] = ACTIONS(4008), + [anon_sym___restrict__] = ACTIONS(4008), + [anon_sym__Atomic] = ACTIONS(4008), + [anon_sym__Noreturn] = ACTIONS(4008), + [anon_sym_noreturn] = ACTIONS(4008), + [anon_sym__Nonnull] = ACTIONS(4008), + [anon_sym_mutable] = ACTIONS(4008), + [anon_sym_constinit] = ACTIONS(4008), + [anon_sym_consteval] = ACTIONS(4008), + [anon_sym_alignas] = ACTIONS(4008), + [anon_sym__Alignas] = ACTIONS(4008), + [sym_primitive_type] = ACTIONS(4008), + [anon_sym_enum] = ACTIONS(4008), + [anon_sym_class] = ACTIONS(4008), + [anon_sym_struct] = ACTIONS(4008), + [anon_sym_union] = ACTIONS(4008), + [anon_sym_if] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4008), + [anon_sym_case] = ACTIONS(4008), + [anon_sym_default] = ACTIONS(4008), + [anon_sym_while] = ACTIONS(4008), + [anon_sym_do] = ACTIONS(4008), + [anon_sym_for] = ACTIONS(4008), + [anon_sym_return] = ACTIONS(4008), + [anon_sym_break] = ACTIONS(4008), + [anon_sym_continue] = ACTIONS(4008), + [anon_sym_goto] = ACTIONS(4008), + [anon_sym___try] = ACTIONS(4008), + [anon_sym___leave] = ACTIONS(4008), + [anon_sym_not] = ACTIONS(4008), + [anon_sym_compl] = ACTIONS(4008), + [anon_sym_DASH_DASH] = ACTIONS(4010), + [anon_sym_PLUS_PLUS] = ACTIONS(4010), + [anon_sym_sizeof] = ACTIONS(4008), + [anon_sym___alignof__] = ACTIONS(4008), + [anon_sym___alignof] = ACTIONS(4008), + [anon_sym__alignof] = ACTIONS(4008), + [anon_sym_alignof] = ACTIONS(4008), + [anon_sym__Alignof] = ACTIONS(4008), + [anon_sym_offsetof] = ACTIONS(4008), + [anon_sym__Generic] = ACTIONS(4008), + [anon_sym_typename] = ACTIONS(4008), + [anon_sym_asm] = ACTIONS(4008), + [anon_sym___asm__] = ACTIONS(4008), + [anon_sym___asm] = ACTIONS(4008), + [sym_number_literal] = ACTIONS(4010), + [anon_sym_L_SQUOTE] = ACTIONS(4010), + [anon_sym_u_SQUOTE] = ACTIONS(4010), + [anon_sym_U_SQUOTE] = ACTIONS(4010), + [anon_sym_u8_SQUOTE] = ACTIONS(4010), + [anon_sym_SQUOTE] = ACTIONS(4010), + [anon_sym_L_DQUOTE] = ACTIONS(4010), + [anon_sym_u_DQUOTE] = ACTIONS(4010), + [anon_sym_U_DQUOTE] = ACTIONS(4010), + [anon_sym_u8_DQUOTE] = ACTIONS(4010), + [anon_sym_DQUOTE] = ACTIONS(4010), + [sym_true] = ACTIONS(4008), + [sym_false] = ACTIONS(4008), + [anon_sym_NULL] = ACTIONS(4008), + [anon_sym_nullptr] = ACTIONS(4008), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4008), + [anon_sym_decltype] = ACTIONS(4008), + [anon_sym_explicit] = ACTIONS(4008), + [anon_sym_export] = ACTIONS(4008), + [anon_sym_module] = ACTIONS(4008), + [anon_sym_import] = ACTIONS(4008), + [anon_sym_template] = ACTIONS(4008), + [anon_sym_operator] = ACTIONS(4008), + [anon_sym_try] = ACTIONS(4008), + [anon_sym_delete] = ACTIONS(4008), + [anon_sym_throw] = ACTIONS(4008), + [anon_sym_namespace] = ACTIONS(4008), + [anon_sym_static_assert] = ACTIONS(4008), + [anon_sym_concept] = ACTIONS(4008), + [anon_sym_co_return] = ACTIONS(4008), + [anon_sym_co_yield] = ACTIONS(4008), + [anon_sym_R_DQUOTE] = ACTIONS(4010), + [anon_sym_LR_DQUOTE] = ACTIONS(4010), + [anon_sym_uR_DQUOTE] = ACTIONS(4010), + [anon_sym_UR_DQUOTE] = ACTIONS(4010), + [anon_sym_u8R_DQUOTE] = ACTIONS(4010), + [anon_sym_co_await] = ACTIONS(4008), + [anon_sym_new] = ACTIONS(4008), + [anon_sym_requires] = ACTIONS(4008), + [anon_sym_CARET_CARET] = ACTIONS(4010), + [anon_sym_LBRACK_COLON] = ACTIONS(4010), + [sym_this] = ACTIONS(4008), }, - [STATE(443)] = { - [ts_builtin_sym_end] = ACTIONS(3646), - [sym_identifier] = ACTIONS(3644), - [aux_sym_preproc_include_token1] = ACTIONS(3644), - [aux_sym_preproc_def_token1] = ACTIONS(3644), - [aux_sym_preproc_if_token1] = ACTIONS(3644), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3644), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3644), - [sym_preproc_directive] = ACTIONS(3644), - [anon_sym_LPAREN2] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3646), - [anon_sym_TILDE] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3646), - [anon_sym_AMP_AMP] = ACTIONS(3646), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_SEMI] = ACTIONS(3646), - [anon_sym___extension__] = ACTIONS(3644), - [anon_sym_typedef] = ACTIONS(3644), - [anon_sym_virtual] = ACTIONS(3644), - [anon_sym_extern] = ACTIONS(3644), - [anon_sym___attribute__] = ACTIONS(3644), - [anon_sym___attribute] = ACTIONS(3644), - [anon_sym_using] = ACTIONS(3644), - [anon_sym_COLON_COLON] = ACTIONS(3646), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), - [anon_sym___declspec] = ACTIONS(3644), - [anon_sym___based] = ACTIONS(3644), - [anon_sym___cdecl] = ACTIONS(3644), - [anon_sym___clrcall] = ACTIONS(3644), - [anon_sym___stdcall] = ACTIONS(3644), - [anon_sym___fastcall] = ACTIONS(3644), - [anon_sym___thiscall] = ACTIONS(3644), - [anon_sym___vectorcall] = ACTIONS(3644), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_signed] = ACTIONS(3644), - [anon_sym_unsigned] = ACTIONS(3644), - [anon_sym_long] = ACTIONS(3644), - [anon_sym_short] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(3644), - [anon_sym_static] = ACTIONS(3644), - [anon_sym_register] = ACTIONS(3644), - [anon_sym_inline] = ACTIONS(3644), - [anon_sym___inline] = ACTIONS(3644), - [anon_sym___inline__] = ACTIONS(3644), - [anon_sym___forceinline] = ACTIONS(3644), - [anon_sym_thread_local] = ACTIONS(3644), - [anon_sym___thread] = ACTIONS(3644), - [anon_sym_const] = ACTIONS(3644), - [anon_sym_constexpr] = ACTIONS(3644), - [anon_sym_volatile] = ACTIONS(3644), - [anon_sym_restrict] = ACTIONS(3644), - [anon_sym___restrict__] = ACTIONS(3644), - [anon_sym__Atomic] = ACTIONS(3644), - [anon_sym__Noreturn] = ACTIONS(3644), - [anon_sym_noreturn] = ACTIONS(3644), - [anon_sym__Nonnull] = ACTIONS(3644), - [anon_sym_mutable] = ACTIONS(3644), - [anon_sym_constinit] = ACTIONS(3644), - [anon_sym_consteval] = ACTIONS(3644), - [anon_sym_alignas] = ACTIONS(3644), - [anon_sym__Alignas] = ACTIONS(3644), - [sym_primitive_type] = ACTIONS(3644), - [anon_sym_enum] = ACTIONS(3644), - [anon_sym_class] = ACTIONS(3644), - [anon_sym_struct] = ACTIONS(3644), - [anon_sym_union] = ACTIONS(3644), - [anon_sym_if] = ACTIONS(3644), - [anon_sym_else] = ACTIONS(3644), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_case] = ACTIONS(3644), - [anon_sym_default] = ACTIONS(3644), - [anon_sym_while] = ACTIONS(3644), - [anon_sym_do] = ACTIONS(3644), - [anon_sym_for] = ACTIONS(3644), - [anon_sym_return] = ACTIONS(3644), - [anon_sym_break] = ACTIONS(3644), - [anon_sym_continue] = ACTIONS(3644), - [anon_sym_goto] = ACTIONS(3644), - [anon_sym___try] = ACTIONS(3644), - [anon_sym___leave] = ACTIONS(3644), - [anon_sym_not] = ACTIONS(3644), - [anon_sym_compl] = ACTIONS(3644), - [anon_sym_DASH_DASH] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3646), - [anon_sym_sizeof] = ACTIONS(3644), - [anon_sym___alignof__] = ACTIONS(3644), - [anon_sym___alignof] = ACTIONS(3644), - [anon_sym__alignof] = ACTIONS(3644), - [anon_sym_alignof] = ACTIONS(3644), - [anon_sym__Alignof] = ACTIONS(3644), - [anon_sym_offsetof] = ACTIONS(3644), - [anon_sym__Generic] = ACTIONS(3644), - [anon_sym_typename] = ACTIONS(3644), - [anon_sym_asm] = ACTIONS(3644), - [anon_sym___asm__] = ACTIONS(3644), - [anon_sym___asm] = ACTIONS(3644), - [sym_number_literal] = ACTIONS(3646), - [anon_sym_L_SQUOTE] = ACTIONS(3646), - [anon_sym_u_SQUOTE] = ACTIONS(3646), - [anon_sym_U_SQUOTE] = ACTIONS(3646), - [anon_sym_u8_SQUOTE] = ACTIONS(3646), - [anon_sym_SQUOTE] = ACTIONS(3646), - [anon_sym_L_DQUOTE] = ACTIONS(3646), - [anon_sym_u_DQUOTE] = ACTIONS(3646), - [anon_sym_U_DQUOTE] = ACTIONS(3646), - [anon_sym_u8_DQUOTE] = ACTIONS(3646), - [anon_sym_DQUOTE] = ACTIONS(3646), - [sym_true] = ACTIONS(3644), - [sym_false] = ACTIONS(3644), - [anon_sym_NULL] = ACTIONS(3644), - [anon_sym_nullptr] = ACTIONS(3644), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3644), - [anon_sym_decltype] = ACTIONS(3644), - [anon_sym_explicit] = ACTIONS(3644), - [anon_sym_export] = ACTIONS(3644), - [anon_sym_module] = ACTIONS(3644), - [anon_sym_import] = ACTIONS(3644), - [anon_sym_template] = ACTIONS(3644), - [anon_sym_operator] = ACTIONS(3644), - [anon_sym_try] = ACTIONS(3644), - [anon_sym_delete] = ACTIONS(3644), - [anon_sym_throw] = ACTIONS(3644), - [anon_sym_namespace] = ACTIONS(3644), - [anon_sym_static_assert] = ACTIONS(3644), - [anon_sym_concept] = ACTIONS(3644), - [anon_sym_co_return] = ACTIONS(3644), - [anon_sym_co_yield] = ACTIONS(3644), - [anon_sym_R_DQUOTE] = ACTIONS(3646), - [anon_sym_LR_DQUOTE] = ACTIONS(3646), - [anon_sym_uR_DQUOTE] = ACTIONS(3646), - [anon_sym_UR_DQUOTE] = ACTIONS(3646), - [anon_sym_u8R_DQUOTE] = ACTIONS(3646), - [anon_sym_co_await] = ACTIONS(3644), - [anon_sym_new] = ACTIONS(3644), - [anon_sym_requires] = ACTIONS(3644), - [anon_sym_CARET_CARET] = ACTIONS(3646), - [anon_sym_LBRACK_COLON] = ACTIONS(3646), - [sym_this] = ACTIONS(3644), + [STATE(423)] = { + [sym_identifier] = ACTIONS(4012), + [aux_sym_preproc_include_token1] = ACTIONS(4012), + [aux_sym_preproc_def_token1] = ACTIONS(4012), + [aux_sym_preproc_if_token1] = ACTIONS(4012), + [aux_sym_preproc_if_token2] = ACTIONS(4012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4012), + [aux_sym_preproc_else_token1] = ACTIONS(4012), + [aux_sym_preproc_elif_token1] = ACTIONS(4012), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4012), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4012), + [sym_preproc_directive] = ACTIONS(4012), + [anon_sym_LPAREN2] = ACTIONS(4014), + [anon_sym_BANG] = ACTIONS(4014), + [anon_sym_TILDE] = ACTIONS(4014), + [anon_sym_DASH] = ACTIONS(4012), + [anon_sym_PLUS] = ACTIONS(4012), + [anon_sym_STAR] = ACTIONS(4014), + [anon_sym_AMP_AMP] = ACTIONS(4014), + [anon_sym_AMP] = ACTIONS(4012), + [anon_sym_SEMI] = ACTIONS(4014), + [anon_sym___extension__] = ACTIONS(4012), + [anon_sym_typedef] = ACTIONS(4012), + [anon_sym_virtual] = ACTIONS(4012), + [anon_sym_extern] = ACTIONS(4012), + [anon_sym___attribute__] = ACTIONS(4012), + [anon_sym___attribute] = ACTIONS(4012), + [anon_sym_using] = ACTIONS(4012), + [anon_sym_COLON_COLON] = ACTIONS(4014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4014), + [anon_sym___declspec] = ACTIONS(4012), + [anon_sym___based] = ACTIONS(4012), + [anon_sym___cdecl] = ACTIONS(4012), + [anon_sym___clrcall] = ACTIONS(4012), + [anon_sym___stdcall] = ACTIONS(4012), + [anon_sym___fastcall] = ACTIONS(4012), + [anon_sym___thiscall] = ACTIONS(4012), + [anon_sym___vectorcall] = ACTIONS(4012), + [anon_sym_LBRACE] = ACTIONS(4014), + [anon_sym_signed] = ACTIONS(4012), + [anon_sym_unsigned] = ACTIONS(4012), + [anon_sym_long] = ACTIONS(4012), + [anon_sym_short] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_static] = ACTIONS(4012), + [anon_sym_register] = ACTIONS(4012), + [anon_sym_inline] = ACTIONS(4012), + [anon_sym___inline] = ACTIONS(4012), + [anon_sym___inline__] = ACTIONS(4012), + [anon_sym___forceinline] = ACTIONS(4012), + [anon_sym_thread_local] = ACTIONS(4012), + [anon_sym___thread] = ACTIONS(4012), + [anon_sym_const] = ACTIONS(4012), + [anon_sym_constexpr] = ACTIONS(4012), + [anon_sym_volatile] = ACTIONS(4012), + [anon_sym_restrict] = ACTIONS(4012), + [anon_sym___restrict__] = ACTIONS(4012), + [anon_sym__Atomic] = ACTIONS(4012), + [anon_sym__Noreturn] = ACTIONS(4012), + [anon_sym_noreturn] = ACTIONS(4012), + [anon_sym__Nonnull] = ACTIONS(4012), + [anon_sym_mutable] = ACTIONS(4012), + [anon_sym_constinit] = ACTIONS(4012), + [anon_sym_consteval] = ACTIONS(4012), + [anon_sym_alignas] = ACTIONS(4012), + [anon_sym__Alignas] = ACTIONS(4012), + [sym_primitive_type] = ACTIONS(4012), + [anon_sym_enum] = ACTIONS(4012), + [anon_sym_class] = ACTIONS(4012), + [anon_sym_struct] = ACTIONS(4012), + [anon_sym_union] = ACTIONS(4012), + [anon_sym_if] = ACTIONS(4012), + [anon_sym_switch] = ACTIONS(4012), + [anon_sym_case] = ACTIONS(4012), + [anon_sym_default] = ACTIONS(4012), + [anon_sym_while] = ACTIONS(4012), + [anon_sym_do] = ACTIONS(4012), + [anon_sym_for] = ACTIONS(4012), + [anon_sym_return] = ACTIONS(4012), + [anon_sym_break] = ACTIONS(4012), + [anon_sym_continue] = ACTIONS(4012), + [anon_sym_goto] = ACTIONS(4012), + [anon_sym___try] = ACTIONS(4012), + [anon_sym___leave] = ACTIONS(4012), + [anon_sym_not] = ACTIONS(4012), + [anon_sym_compl] = ACTIONS(4012), + [anon_sym_DASH_DASH] = ACTIONS(4014), + [anon_sym_PLUS_PLUS] = ACTIONS(4014), + [anon_sym_sizeof] = ACTIONS(4012), + [anon_sym___alignof__] = ACTIONS(4012), + [anon_sym___alignof] = ACTIONS(4012), + [anon_sym__alignof] = ACTIONS(4012), + [anon_sym_alignof] = ACTIONS(4012), + [anon_sym__Alignof] = ACTIONS(4012), + [anon_sym_offsetof] = ACTIONS(4012), + [anon_sym__Generic] = ACTIONS(4012), + [anon_sym_typename] = ACTIONS(4012), + [anon_sym_asm] = ACTIONS(4012), + [anon_sym___asm__] = ACTIONS(4012), + [anon_sym___asm] = ACTIONS(4012), + [sym_number_literal] = ACTIONS(4014), + [anon_sym_L_SQUOTE] = ACTIONS(4014), + [anon_sym_u_SQUOTE] = ACTIONS(4014), + [anon_sym_U_SQUOTE] = ACTIONS(4014), + [anon_sym_u8_SQUOTE] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4014), + [anon_sym_L_DQUOTE] = ACTIONS(4014), + [anon_sym_u_DQUOTE] = ACTIONS(4014), + [anon_sym_U_DQUOTE] = ACTIONS(4014), + [anon_sym_u8_DQUOTE] = ACTIONS(4014), + [anon_sym_DQUOTE] = ACTIONS(4014), + [sym_true] = ACTIONS(4012), + [sym_false] = ACTIONS(4012), + [anon_sym_NULL] = ACTIONS(4012), + [anon_sym_nullptr] = ACTIONS(4012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4012), + [anon_sym_decltype] = ACTIONS(4012), + [anon_sym_explicit] = ACTIONS(4012), + [anon_sym_export] = ACTIONS(4012), + [anon_sym_module] = ACTIONS(4012), + [anon_sym_import] = ACTIONS(4012), + [anon_sym_template] = ACTIONS(4012), + [anon_sym_operator] = ACTIONS(4012), + [anon_sym_try] = ACTIONS(4012), + [anon_sym_delete] = ACTIONS(4012), + [anon_sym_throw] = ACTIONS(4012), + [anon_sym_namespace] = ACTIONS(4012), + [anon_sym_static_assert] = ACTIONS(4012), + [anon_sym_concept] = ACTIONS(4012), + [anon_sym_co_return] = ACTIONS(4012), + [anon_sym_co_yield] = ACTIONS(4012), + [anon_sym_R_DQUOTE] = ACTIONS(4014), + [anon_sym_LR_DQUOTE] = ACTIONS(4014), + [anon_sym_uR_DQUOTE] = ACTIONS(4014), + [anon_sym_UR_DQUOTE] = ACTIONS(4014), + [anon_sym_u8R_DQUOTE] = ACTIONS(4014), + [anon_sym_co_await] = ACTIONS(4012), + [anon_sym_new] = ACTIONS(4012), + [anon_sym_requires] = ACTIONS(4012), + [anon_sym_CARET_CARET] = ACTIONS(4014), + [anon_sym_LBRACK_COLON] = ACTIONS(4014), + [sym_this] = ACTIONS(4012), }, - [STATE(444)] = { - [sym_identifier] = ACTIONS(4018), - [aux_sym_preproc_include_token1] = ACTIONS(4018), - [aux_sym_preproc_def_token1] = ACTIONS(4018), - [aux_sym_preproc_if_token1] = ACTIONS(4018), - [aux_sym_preproc_if_token2] = ACTIONS(4018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4018), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4018), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4018), - [sym_preproc_directive] = ACTIONS(4018), - [anon_sym_LPAREN2] = ACTIONS(4020), - [anon_sym_BANG] = ACTIONS(4020), - [anon_sym_TILDE] = ACTIONS(4020), - [anon_sym_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4018), - [anon_sym_STAR] = ACTIONS(4020), - [anon_sym_AMP_AMP] = ACTIONS(4020), - [anon_sym_AMP] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4020), - [anon_sym___extension__] = ACTIONS(4018), - [anon_sym_typedef] = ACTIONS(4018), - [anon_sym_virtual] = ACTIONS(4018), - [anon_sym_extern] = ACTIONS(4018), - [anon_sym___attribute__] = ACTIONS(4018), - [anon_sym___attribute] = ACTIONS(4018), - [anon_sym_using] = ACTIONS(4018), - [anon_sym_COLON_COLON] = ACTIONS(4020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4020), - [anon_sym___declspec] = ACTIONS(4018), - [anon_sym___based] = ACTIONS(4018), - [anon_sym___cdecl] = ACTIONS(4018), - [anon_sym___clrcall] = ACTIONS(4018), - [anon_sym___stdcall] = ACTIONS(4018), - [anon_sym___fastcall] = ACTIONS(4018), - [anon_sym___thiscall] = ACTIONS(4018), - [anon_sym___vectorcall] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4020), - [anon_sym_signed] = ACTIONS(4018), - [anon_sym_unsigned] = ACTIONS(4018), - [anon_sym_long] = ACTIONS(4018), - [anon_sym_short] = ACTIONS(4018), - [anon_sym_LBRACK] = ACTIONS(4018), - [anon_sym_static] = ACTIONS(4018), - [anon_sym_register] = ACTIONS(4018), - [anon_sym_inline] = ACTIONS(4018), - [anon_sym___inline] = ACTIONS(4018), - [anon_sym___inline__] = ACTIONS(4018), - [anon_sym___forceinline] = ACTIONS(4018), - [anon_sym_thread_local] = ACTIONS(4018), - [anon_sym___thread] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4018), - [anon_sym_constexpr] = ACTIONS(4018), - [anon_sym_volatile] = ACTIONS(4018), - [anon_sym_restrict] = ACTIONS(4018), - [anon_sym___restrict__] = ACTIONS(4018), - [anon_sym__Atomic] = ACTIONS(4018), - [anon_sym__Noreturn] = ACTIONS(4018), - [anon_sym_noreturn] = ACTIONS(4018), - [anon_sym__Nonnull] = ACTIONS(4018), - [anon_sym_mutable] = ACTIONS(4018), - [anon_sym_constinit] = ACTIONS(4018), - [anon_sym_consteval] = ACTIONS(4018), - [anon_sym_alignas] = ACTIONS(4018), - [anon_sym__Alignas] = ACTIONS(4018), - [sym_primitive_type] = ACTIONS(4018), - [anon_sym_enum] = ACTIONS(4018), - [anon_sym_class] = ACTIONS(4018), - [anon_sym_struct] = ACTIONS(4018), - [anon_sym_union] = ACTIONS(4018), - [anon_sym_if] = ACTIONS(4018), - [anon_sym_switch] = ACTIONS(4018), - [anon_sym_case] = ACTIONS(4018), - [anon_sym_default] = ACTIONS(4018), - [anon_sym_while] = ACTIONS(4018), - [anon_sym_do] = ACTIONS(4018), - [anon_sym_for] = ACTIONS(4018), - [anon_sym_return] = ACTIONS(4018), - [anon_sym_break] = ACTIONS(4018), - [anon_sym_continue] = ACTIONS(4018), - [anon_sym_goto] = ACTIONS(4018), - [anon_sym___try] = ACTIONS(4018), - [anon_sym___leave] = ACTIONS(4018), - [anon_sym_not] = ACTIONS(4018), - [anon_sym_compl] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4020), - [anon_sym_PLUS_PLUS] = ACTIONS(4020), - [anon_sym_sizeof] = ACTIONS(4018), - [anon_sym___alignof__] = ACTIONS(4018), - [anon_sym___alignof] = ACTIONS(4018), - [anon_sym__alignof] = ACTIONS(4018), - [anon_sym_alignof] = ACTIONS(4018), - [anon_sym__Alignof] = ACTIONS(4018), - [anon_sym_offsetof] = ACTIONS(4018), - [anon_sym__Generic] = ACTIONS(4018), - [anon_sym_typename] = ACTIONS(4018), - [anon_sym_asm] = ACTIONS(4018), - [anon_sym___asm__] = ACTIONS(4018), - [anon_sym___asm] = ACTIONS(4018), - [sym_number_literal] = ACTIONS(4020), - [anon_sym_L_SQUOTE] = ACTIONS(4020), - [anon_sym_u_SQUOTE] = ACTIONS(4020), - [anon_sym_U_SQUOTE] = ACTIONS(4020), - [anon_sym_u8_SQUOTE] = ACTIONS(4020), - [anon_sym_SQUOTE] = 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_true] = ACTIONS(4018), - [sym_false] = ACTIONS(4018), - [anon_sym_NULL] = ACTIONS(4018), - [anon_sym_nullptr] = ACTIONS(4018), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4018), - [anon_sym_decltype] = ACTIONS(4018), - [anon_sym_explicit] = ACTIONS(4018), - [anon_sym_template] = ACTIONS(4018), - [anon_sym_operator] = ACTIONS(4018), - [anon_sym_try] = ACTIONS(4018), - [anon_sym_delete] = ACTIONS(4018), - [anon_sym_throw] = ACTIONS(4018), - [anon_sym_namespace] = ACTIONS(4018), - [anon_sym_static_assert] = ACTIONS(4018), - [anon_sym_concept] = ACTIONS(4018), - [anon_sym_co_return] = ACTIONS(4018), - [anon_sym_co_yield] = ACTIONS(4018), - [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), - [anon_sym_co_await] = ACTIONS(4018), - [anon_sym_new] = ACTIONS(4018), - [anon_sym_requires] = ACTIONS(4018), - [anon_sym_CARET_CARET] = ACTIONS(4020), - [anon_sym_LBRACK_COLON] = ACTIONS(4020), - [sym_this] = ACTIONS(4018), + [STATE(424)] = { + [sym_identifier] = ACTIONS(4016), + [aux_sym_preproc_include_token1] = ACTIONS(4016), + [aux_sym_preproc_def_token1] = ACTIONS(4016), + [aux_sym_preproc_if_token1] = ACTIONS(4016), + [aux_sym_preproc_if_token2] = ACTIONS(4016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4016), + [aux_sym_preproc_else_token1] = ACTIONS(4016), + [aux_sym_preproc_elif_token1] = ACTIONS(4016), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4016), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4016), + [sym_preproc_directive] = ACTIONS(4016), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(4018), + [anon_sym_TILDE] = ACTIONS(4018), + [anon_sym_DASH] = ACTIONS(4016), + [anon_sym_PLUS] = ACTIONS(4016), + [anon_sym_STAR] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4016), + [anon_sym_SEMI] = ACTIONS(4018), + [anon_sym___extension__] = ACTIONS(4016), + [anon_sym_typedef] = ACTIONS(4016), + [anon_sym_virtual] = ACTIONS(4016), + [anon_sym_extern] = ACTIONS(4016), + [anon_sym___attribute__] = ACTIONS(4016), + [anon_sym___attribute] = ACTIONS(4016), + [anon_sym_using] = ACTIONS(4016), + [anon_sym_COLON_COLON] = ACTIONS(4018), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4018), + [anon_sym___declspec] = ACTIONS(4016), + [anon_sym___based] = ACTIONS(4016), + [anon_sym___cdecl] = ACTIONS(4016), + [anon_sym___clrcall] = ACTIONS(4016), + [anon_sym___stdcall] = ACTIONS(4016), + [anon_sym___fastcall] = ACTIONS(4016), + [anon_sym___thiscall] = ACTIONS(4016), + [anon_sym___vectorcall] = ACTIONS(4016), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_signed] = ACTIONS(4016), + [anon_sym_unsigned] = ACTIONS(4016), + [anon_sym_long] = ACTIONS(4016), + [anon_sym_short] = ACTIONS(4016), + [anon_sym_LBRACK] = ACTIONS(4016), + [anon_sym_static] = ACTIONS(4016), + [anon_sym_register] = ACTIONS(4016), + [anon_sym_inline] = ACTIONS(4016), + [anon_sym___inline] = ACTIONS(4016), + [anon_sym___inline__] = ACTIONS(4016), + [anon_sym___forceinline] = ACTIONS(4016), + [anon_sym_thread_local] = ACTIONS(4016), + [anon_sym___thread] = ACTIONS(4016), + [anon_sym_const] = ACTIONS(4016), + [anon_sym_constexpr] = ACTIONS(4016), + [anon_sym_volatile] = ACTIONS(4016), + [anon_sym_restrict] = ACTIONS(4016), + [anon_sym___restrict__] = ACTIONS(4016), + [anon_sym__Atomic] = ACTIONS(4016), + [anon_sym__Noreturn] = ACTIONS(4016), + [anon_sym_noreturn] = ACTIONS(4016), + [anon_sym__Nonnull] = ACTIONS(4016), + [anon_sym_mutable] = ACTIONS(4016), + [anon_sym_constinit] = ACTIONS(4016), + [anon_sym_consteval] = ACTIONS(4016), + [anon_sym_alignas] = ACTIONS(4016), + [anon_sym__Alignas] = ACTIONS(4016), + [sym_primitive_type] = ACTIONS(4016), + [anon_sym_enum] = ACTIONS(4016), + [anon_sym_class] = ACTIONS(4016), + [anon_sym_struct] = ACTIONS(4016), + [anon_sym_union] = ACTIONS(4016), + [anon_sym_if] = ACTIONS(4016), + [anon_sym_switch] = ACTIONS(4016), + [anon_sym_case] = ACTIONS(4016), + [anon_sym_default] = ACTIONS(4016), + [anon_sym_while] = ACTIONS(4016), + [anon_sym_do] = ACTIONS(4016), + [anon_sym_for] = ACTIONS(4016), + [anon_sym_return] = ACTIONS(4016), + [anon_sym_break] = ACTIONS(4016), + [anon_sym_continue] = ACTIONS(4016), + [anon_sym_goto] = ACTIONS(4016), + [anon_sym___try] = ACTIONS(4016), + [anon_sym___leave] = ACTIONS(4016), + [anon_sym_not] = ACTIONS(4016), + [anon_sym_compl] = ACTIONS(4016), + [anon_sym_DASH_DASH] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(4018), + [anon_sym_sizeof] = ACTIONS(4016), + [anon_sym___alignof__] = ACTIONS(4016), + [anon_sym___alignof] = ACTIONS(4016), + [anon_sym__alignof] = ACTIONS(4016), + [anon_sym_alignof] = ACTIONS(4016), + [anon_sym__Alignof] = ACTIONS(4016), + [anon_sym_offsetof] = ACTIONS(4016), + [anon_sym__Generic] = ACTIONS(4016), + [anon_sym_typename] = ACTIONS(4016), + [anon_sym_asm] = ACTIONS(4016), + [anon_sym___asm__] = ACTIONS(4016), + [anon_sym___asm] = ACTIONS(4016), + [sym_number_literal] = ACTIONS(4018), + [anon_sym_L_SQUOTE] = ACTIONS(4018), + [anon_sym_u_SQUOTE] = ACTIONS(4018), + [anon_sym_U_SQUOTE] = ACTIONS(4018), + [anon_sym_u8_SQUOTE] = ACTIONS(4018), + [anon_sym_SQUOTE] = ACTIONS(4018), + [anon_sym_L_DQUOTE] = ACTIONS(4018), + [anon_sym_u_DQUOTE] = ACTIONS(4018), + [anon_sym_U_DQUOTE] = ACTIONS(4018), + [anon_sym_u8_DQUOTE] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(4018), + [sym_true] = ACTIONS(4016), + [sym_false] = ACTIONS(4016), + [anon_sym_NULL] = ACTIONS(4016), + [anon_sym_nullptr] = ACTIONS(4016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4016), + [anon_sym_decltype] = ACTIONS(4016), + [anon_sym_explicit] = ACTIONS(4016), + [anon_sym_export] = ACTIONS(4016), + [anon_sym_module] = ACTIONS(4016), + [anon_sym_import] = ACTIONS(4016), + [anon_sym_template] = ACTIONS(4016), + [anon_sym_operator] = ACTIONS(4016), + [anon_sym_try] = ACTIONS(4016), + [anon_sym_delete] = ACTIONS(4016), + [anon_sym_throw] = ACTIONS(4016), + [anon_sym_namespace] = ACTIONS(4016), + [anon_sym_static_assert] = ACTIONS(4016), + [anon_sym_concept] = ACTIONS(4016), + [anon_sym_co_return] = ACTIONS(4016), + [anon_sym_co_yield] = ACTIONS(4016), + [anon_sym_R_DQUOTE] = ACTIONS(4018), + [anon_sym_LR_DQUOTE] = ACTIONS(4018), + [anon_sym_uR_DQUOTE] = ACTIONS(4018), + [anon_sym_UR_DQUOTE] = ACTIONS(4018), + [anon_sym_u8R_DQUOTE] = ACTIONS(4018), + [anon_sym_co_await] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(4016), + [anon_sym_requires] = ACTIONS(4016), + [anon_sym_CARET_CARET] = ACTIONS(4018), + [anon_sym_LBRACK_COLON] = ACTIONS(4018), + [sym_this] = ACTIONS(4016), }, - [STATE(445)] = { - [sym_identifier] = ACTIONS(4022), - [aux_sym_preproc_include_token1] = ACTIONS(4022), - [aux_sym_preproc_def_token1] = ACTIONS(4022), - [aux_sym_preproc_if_token1] = ACTIONS(4022), - [aux_sym_preproc_if_token2] = ACTIONS(4022), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4022), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4022), - [aux_sym_preproc_else_token1] = ACTIONS(4022), - [aux_sym_preproc_elif_token1] = ACTIONS(4022), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4022), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4022), - [sym_preproc_directive] = ACTIONS(4022), - [anon_sym_LPAREN2] = ACTIONS(4024), - [anon_sym_BANG] = ACTIONS(4024), - [anon_sym_TILDE] = ACTIONS(4024), - [anon_sym_DASH] = ACTIONS(4022), - [anon_sym_PLUS] = ACTIONS(4022), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_AMP_AMP] = ACTIONS(4024), - [anon_sym_AMP] = ACTIONS(4022), - [anon_sym_SEMI] = ACTIONS(4024), - [anon_sym___extension__] = ACTIONS(4022), - [anon_sym_typedef] = ACTIONS(4022), - [anon_sym_virtual] = ACTIONS(4022), - [anon_sym_extern] = ACTIONS(4022), - [anon_sym___attribute__] = ACTIONS(4022), - [anon_sym___attribute] = ACTIONS(4022), - [anon_sym_using] = ACTIONS(4022), - [anon_sym_COLON_COLON] = ACTIONS(4024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4024), - [anon_sym___declspec] = ACTIONS(4022), - [anon_sym___based] = ACTIONS(4022), - [anon_sym___cdecl] = ACTIONS(4022), - [anon_sym___clrcall] = ACTIONS(4022), - [anon_sym___stdcall] = ACTIONS(4022), - [anon_sym___fastcall] = ACTIONS(4022), - [anon_sym___thiscall] = ACTIONS(4022), - [anon_sym___vectorcall] = ACTIONS(4022), - [anon_sym_LBRACE] = ACTIONS(4024), - [anon_sym_signed] = ACTIONS(4022), - [anon_sym_unsigned] = ACTIONS(4022), - [anon_sym_long] = ACTIONS(4022), - [anon_sym_short] = ACTIONS(4022), - [anon_sym_LBRACK] = ACTIONS(4022), - [anon_sym_static] = ACTIONS(4022), - [anon_sym_register] = ACTIONS(4022), - [anon_sym_inline] = ACTIONS(4022), - [anon_sym___inline] = ACTIONS(4022), - [anon_sym___inline__] = ACTIONS(4022), - [anon_sym___forceinline] = ACTIONS(4022), - [anon_sym_thread_local] = ACTIONS(4022), - [anon_sym___thread] = ACTIONS(4022), - [anon_sym_const] = ACTIONS(4022), - [anon_sym_constexpr] = ACTIONS(4022), - [anon_sym_volatile] = ACTIONS(4022), - [anon_sym_restrict] = ACTIONS(4022), - [anon_sym___restrict__] = ACTIONS(4022), - [anon_sym__Atomic] = ACTIONS(4022), - [anon_sym__Noreturn] = ACTIONS(4022), - [anon_sym_noreturn] = ACTIONS(4022), - [anon_sym__Nonnull] = ACTIONS(4022), - [anon_sym_mutable] = ACTIONS(4022), - [anon_sym_constinit] = ACTIONS(4022), - [anon_sym_consteval] = ACTIONS(4022), - [anon_sym_alignas] = ACTIONS(4022), - [anon_sym__Alignas] = ACTIONS(4022), - [sym_primitive_type] = ACTIONS(4022), - [anon_sym_enum] = ACTIONS(4022), - [anon_sym_class] = ACTIONS(4022), - [anon_sym_struct] = ACTIONS(4022), - [anon_sym_union] = ACTIONS(4022), - [anon_sym_if] = ACTIONS(4022), - [anon_sym_switch] = ACTIONS(4022), - [anon_sym_case] = ACTIONS(4022), - [anon_sym_default] = ACTIONS(4022), - [anon_sym_while] = ACTIONS(4022), - [anon_sym_do] = ACTIONS(4022), - [anon_sym_for] = ACTIONS(4022), - [anon_sym_return] = ACTIONS(4022), - [anon_sym_break] = ACTIONS(4022), - [anon_sym_continue] = ACTIONS(4022), - [anon_sym_goto] = ACTIONS(4022), - [anon_sym___try] = ACTIONS(4022), - [anon_sym___leave] = ACTIONS(4022), - [anon_sym_not] = ACTIONS(4022), - [anon_sym_compl] = ACTIONS(4022), - [anon_sym_DASH_DASH] = ACTIONS(4024), - [anon_sym_PLUS_PLUS] = ACTIONS(4024), - [anon_sym_sizeof] = ACTIONS(4022), - [anon_sym___alignof__] = ACTIONS(4022), - [anon_sym___alignof] = ACTIONS(4022), - [anon_sym__alignof] = ACTIONS(4022), - [anon_sym_alignof] = ACTIONS(4022), - [anon_sym__Alignof] = ACTIONS(4022), - [anon_sym_offsetof] = ACTIONS(4022), - [anon_sym__Generic] = ACTIONS(4022), - [anon_sym_typename] = ACTIONS(4022), - [anon_sym_asm] = ACTIONS(4022), - [anon_sym___asm__] = ACTIONS(4022), - [anon_sym___asm] = ACTIONS(4022), - [sym_number_literal] = ACTIONS(4024), - [anon_sym_L_SQUOTE] = ACTIONS(4024), - [anon_sym_u_SQUOTE] = ACTIONS(4024), - [anon_sym_U_SQUOTE] = ACTIONS(4024), - [anon_sym_u8_SQUOTE] = ACTIONS(4024), - [anon_sym_SQUOTE] = 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_true] = ACTIONS(4022), - [sym_false] = ACTIONS(4022), - [anon_sym_NULL] = ACTIONS(4022), - [anon_sym_nullptr] = ACTIONS(4022), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4022), - [anon_sym_decltype] = ACTIONS(4022), - [anon_sym_explicit] = ACTIONS(4022), - [anon_sym_template] = ACTIONS(4022), - [anon_sym_operator] = ACTIONS(4022), - [anon_sym_try] = ACTIONS(4022), - [anon_sym_delete] = ACTIONS(4022), - [anon_sym_throw] = ACTIONS(4022), - [anon_sym_namespace] = ACTIONS(4022), - [anon_sym_static_assert] = ACTIONS(4022), - [anon_sym_concept] = ACTIONS(4022), - [anon_sym_co_return] = ACTIONS(4022), - [anon_sym_co_yield] = ACTIONS(4022), - [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), - [anon_sym_co_await] = ACTIONS(4022), - [anon_sym_new] = ACTIONS(4022), - [anon_sym_requires] = ACTIONS(4022), - [anon_sym_CARET_CARET] = ACTIONS(4024), - [anon_sym_LBRACK_COLON] = ACTIONS(4024), - [sym_this] = ACTIONS(4022), + [STATE(425)] = { + [sym_identifier] = ACTIONS(4020), + [aux_sym_preproc_include_token1] = ACTIONS(4020), + [aux_sym_preproc_def_token1] = ACTIONS(4020), + [aux_sym_preproc_if_token1] = ACTIONS(4020), + [aux_sym_preproc_if_token2] = ACTIONS(4020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4020), + [aux_sym_preproc_else_token1] = ACTIONS(4020), + [aux_sym_preproc_elif_token1] = ACTIONS(4020), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4020), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4020), + [sym_preproc_directive] = ACTIONS(4020), + [anon_sym_LPAREN2] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_TILDE] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4020), + [anon_sym_PLUS] = ACTIONS(4020), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_SEMI] = ACTIONS(4022), + [anon_sym___extension__] = ACTIONS(4020), + [anon_sym_typedef] = ACTIONS(4020), + [anon_sym_virtual] = ACTIONS(4020), + [anon_sym_extern] = ACTIONS(4020), + [anon_sym___attribute__] = ACTIONS(4020), + [anon_sym___attribute] = ACTIONS(4020), + [anon_sym_using] = ACTIONS(4020), + [anon_sym_COLON_COLON] = ACTIONS(4022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4022), + [anon_sym___declspec] = ACTIONS(4020), + [anon_sym___based] = ACTIONS(4020), + [anon_sym___cdecl] = ACTIONS(4020), + [anon_sym___clrcall] = ACTIONS(4020), + [anon_sym___stdcall] = ACTIONS(4020), + [anon_sym___fastcall] = ACTIONS(4020), + [anon_sym___thiscall] = ACTIONS(4020), + [anon_sym___vectorcall] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_signed] = ACTIONS(4020), + [anon_sym_unsigned] = ACTIONS(4020), + [anon_sym_long] = ACTIONS(4020), + [anon_sym_short] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(4020), + [anon_sym_static] = ACTIONS(4020), + [anon_sym_register] = ACTIONS(4020), + [anon_sym_inline] = ACTIONS(4020), + [anon_sym___inline] = ACTIONS(4020), + [anon_sym___inline__] = ACTIONS(4020), + [anon_sym___forceinline] = ACTIONS(4020), + [anon_sym_thread_local] = ACTIONS(4020), + [anon_sym___thread] = ACTIONS(4020), + [anon_sym_const] = ACTIONS(4020), + [anon_sym_constexpr] = ACTIONS(4020), + [anon_sym_volatile] = ACTIONS(4020), + [anon_sym_restrict] = ACTIONS(4020), + [anon_sym___restrict__] = ACTIONS(4020), + [anon_sym__Atomic] = ACTIONS(4020), + [anon_sym__Noreturn] = ACTIONS(4020), + [anon_sym_noreturn] = ACTIONS(4020), + [anon_sym__Nonnull] = ACTIONS(4020), + [anon_sym_mutable] = ACTIONS(4020), + [anon_sym_constinit] = ACTIONS(4020), + [anon_sym_consteval] = ACTIONS(4020), + [anon_sym_alignas] = ACTIONS(4020), + [anon_sym__Alignas] = ACTIONS(4020), + [sym_primitive_type] = ACTIONS(4020), + [anon_sym_enum] = ACTIONS(4020), + [anon_sym_class] = ACTIONS(4020), + [anon_sym_struct] = ACTIONS(4020), + [anon_sym_union] = ACTIONS(4020), + [anon_sym_if] = ACTIONS(4020), + [anon_sym_switch] = ACTIONS(4020), + [anon_sym_case] = ACTIONS(4020), + [anon_sym_default] = ACTIONS(4020), + [anon_sym_while] = ACTIONS(4020), + [anon_sym_do] = ACTIONS(4020), + [anon_sym_for] = ACTIONS(4020), + [anon_sym_return] = ACTIONS(4020), + [anon_sym_break] = ACTIONS(4020), + [anon_sym_continue] = ACTIONS(4020), + [anon_sym_goto] = ACTIONS(4020), + [anon_sym___try] = ACTIONS(4020), + [anon_sym___leave] = ACTIONS(4020), + [anon_sym_not] = ACTIONS(4020), + [anon_sym_compl] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4022), + [anon_sym_sizeof] = ACTIONS(4020), + [anon_sym___alignof__] = ACTIONS(4020), + [anon_sym___alignof] = ACTIONS(4020), + [anon_sym__alignof] = ACTIONS(4020), + [anon_sym_alignof] = ACTIONS(4020), + [anon_sym__Alignof] = ACTIONS(4020), + [anon_sym_offsetof] = ACTIONS(4020), + [anon_sym__Generic] = ACTIONS(4020), + [anon_sym_typename] = ACTIONS(4020), + [anon_sym_asm] = ACTIONS(4020), + [anon_sym___asm__] = ACTIONS(4020), + [anon_sym___asm] = ACTIONS(4020), + [sym_number_literal] = ACTIONS(4022), + [anon_sym_L_SQUOTE] = ACTIONS(4022), + [anon_sym_u_SQUOTE] = ACTIONS(4022), + [anon_sym_U_SQUOTE] = ACTIONS(4022), + [anon_sym_u8_SQUOTE] = ACTIONS(4022), + [anon_sym_SQUOTE] = ACTIONS(4022), + [anon_sym_L_DQUOTE] = ACTIONS(4022), + [anon_sym_u_DQUOTE] = ACTIONS(4022), + [anon_sym_U_DQUOTE] = ACTIONS(4022), + [anon_sym_u8_DQUOTE] = ACTIONS(4022), + [anon_sym_DQUOTE] = ACTIONS(4022), + [sym_true] = ACTIONS(4020), + [sym_false] = ACTIONS(4020), + [anon_sym_NULL] = ACTIONS(4020), + [anon_sym_nullptr] = ACTIONS(4020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4020), + [anon_sym_decltype] = ACTIONS(4020), + [anon_sym_explicit] = ACTIONS(4020), + [anon_sym_export] = ACTIONS(4020), + [anon_sym_module] = ACTIONS(4020), + [anon_sym_import] = ACTIONS(4020), + [anon_sym_template] = ACTIONS(4020), + [anon_sym_operator] = ACTIONS(4020), + [anon_sym_try] = ACTIONS(4020), + [anon_sym_delete] = ACTIONS(4020), + [anon_sym_throw] = ACTIONS(4020), + [anon_sym_namespace] = ACTIONS(4020), + [anon_sym_static_assert] = ACTIONS(4020), + [anon_sym_concept] = ACTIONS(4020), + [anon_sym_co_return] = ACTIONS(4020), + [anon_sym_co_yield] = ACTIONS(4020), + [anon_sym_R_DQUOTE] = ACTIONS(4022), + [anon_sym_LR_DQUOTE] = ACTIONS(4022), + [anon_sym_uR_DQUOTE] = ACTIONS(4022), + [anon_sym_UR_DQUOTE] = ACTIONS(4022), + [anon_sym_u8R_DQUOTE] = ACTIONS(4022), + [anon_sym_co_await] = ACTIONS(4020), + [anon_sym_new] = ACTIONS(4020), + [anon_sym_requires] = ACTIONS(4020), + [anon_sym_CARET_CARET] = ACTIONS(4022), + [anon_sym_LBRACK_COLON] = ACTIONS(4022), + [sym_this] = ACTIONS(4020), }, - [STATE(446)] = { - [sym_identifier] = ACTIONS(4026), - [aux_sym_preproc_include_token1] = ACTIONS(4026), - [aux_sym_preproc_def_token1] = ACTIONS(4026), - [aux_sym_preproc_if_token1] = ACTIONS(4026), - [aux_sym_preproc_if_token2] = ACTIONS(4026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4026), - [aux_sym_preproc_else_token1] = ACTIONS(4026), - [aux_sym_preproc_elif_token1] = ACTIONS(4026), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4026), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4026), - [sym_preproc_directive] = ACTIONS(4026), - [anon_sym_LPAREN2] = ACTIONS(4028), - [anon_sym_BANG] = ACTIONS(4028), - [anon_sym_TILDE] = ACTIONS(4028), - [anon_sym_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4026), - [anon_sym_STAR] = ACTIONS(4028), - [anon_sym_AMP_AMP] = ACTIONS(4028), - [anon_sym_AMP] = ACTIONS(4026), - [anon_sym_SEMI] = ACTIONS(4028), - [anon_sym___extension__] = ACTIONS(4026), - [anon_sym_typedef] = ACTIONS(4026), - [anon_sym_virtual] = ACTIONS(4026), - [anon_sym_extern] = ACTIONS(4026), - [anon_sym___attribute__] = ACTIONS(4026), - [anon_sym___attribute] = ACTIONS(4026), - [anon_sym_using] = ACTIONS(4026), - [anon_sym_COLON_COLON] = ACTIONS(4028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4028), - [anon_sym___declspec] = ACTIONS(4026), - [anon_sym___based] = ACTIONS(4026), - [anon_sym___cdecl] = ACTIONS(4026), - [anon_sym___clrcall] = ACTIONS(4026), - [anon_sym___stdcall] = ACTIONS(4026), - [anon_sym___fastcall] = ACTIONS(4026), - [anon_sym___thiscall] = ACTIONS(4026), - [anon_sym___vectorcall] = ACTIONS(4026), - [anon_sym_LBRACE] = ACTIONS(4028), - [anon_sym_signed] = ACTIONS(4026), - [anon_sym_unsigned] = ACTIONS(4026), - [anon_sym_long] = ACTIONS(4026), - [anon_sym_short] = ACTIONS(4026), - [anon_sym_LBRACK] = ACTIONS(4026), - [anon_sym_static] = ACTIONS(4026), - [anon_sym_register] = ACTIONS(4026), - [anon_sym_inline] = ACTIONS(4026), - [anon_sym___inline] = ACTIONS(4026), - [anon_sym___inline__] = ACTIONS(4026), - [anon_sym___forceinline] = ACTIONS(4026), - [anon_sym_thread_local] = ACTIONS(4026), - [anon_sym___thread] = ACTIONS(4026), - [anon_sym_const] = ACTIONS(4026), - [anon_sym_constexpr] = ACTIONS(4026), - [anon_sym_volatile] = ACTIONS(4026), - [anon_sym_restrict] = ACTIONS(4026), - [anon_sym___restrict__] = ACTIONS(4026), - [anon_sym__Atomic] = ACTIONS(4026), - [anon_sym__Noreturn] = ACTIONS(4026), - [anon_sym_noreturn] = ACTIONS(4026), - [anon_sym__Nonnull] = ACTIONS(4026), - [anon_sym_mutable] = ACTIONS(4026), - [anon_sym_constinit] = ACTIONS(4026), - [anon_sym_consteval] = ACTIONS(4026), - [anon_sym_alignas] = ACTIONS(4026), - [anon_sym__Alignas] = ACTIONS(4026), - [sym_primitive_type] = ACTIONS(4026), - [anon_sym_enum] = ACTIONS(4026), - [anon_sym_class] = ACTIONS(4026), - [anon_sym_struct] = ACTIONS(4026), - [anon_sym_union] = ACTIONS(4026), - [anon_sym_if] = ACTIONS(4026), - [anon_sym_switch] = ACTIONS(4026), - [anon_sym_case] = ACTIONS(4026), - [anon_sym_default] = ACTIONS(4026), - [anon_sym_while] = ACTIONS(4026), - [anon_sym_do] = ACTIONS(4026), - [anon_sym_for] = ACTIONS(4026), - [anon_sym_return] = ACTIONS(4026), - [anon_sym_break] = ACTIONS(4026), - [anon_sym_continue] = ACTIONS(4026), - [anon_sym_goto] = ACTIONS(4026), - [anon_sym___try] = ACTIONS(4026), - [anon_sym___leave] = ACTIONS(4026), - [anon_sym_not] = ACTIONS(4026), - [anon_sym_compl] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4028), - [anon_sym_PLUS_PLUS] = ACTIONS(4028), - [anon_sym_sizeof] = ACTIONS(4026), - [anon_sym___alignof__] = ACTIONS(4026), - [anon_sym___alignof] = ACTIONS(4026), - [anon_sym__alignof] = ACTIONS(4026), - [anon_sym_alignof] = ACTIONS(4026), - [anon_sym__Alignof] = ACTIONS(4026), - [anon_sym_offsetof] = ACTIONS(4026), - [anon_sym__Generic] = ACTIONS(4026), - [anon_sym_typename] = ACTIONS(4026), - [anon_sym_asm] = ACTIONS(4026), - [anon_sym___asm__] = ACTIONS(4026), - [anon_sym___asm] = ACTIONS(4026), - [sym_number_literal] = ACTIONS(4028), - [anon_sym_L_SQUOTE] = ACTIONS(4028), - [anon_sym_u_SQUOTE] = ACTIONS(4028), - [anon_sym_U_SQUOTE] = ACTIONS(4028), - [anon_sym_u8_SQUOTE] = ACTIONS(4028), - [anon_sym_SQUOTE] = 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_true] = ACTIONS(4026), - [sym_false] = ACTIONS(4026), - [anon_sym_NULL] = ACTIONS(4026), - [anon_sym_nullptr] = ACTIONS(4026), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4026), - [anon_sym_decltype] = ACTIONS(4026), - [anon_sym_explicit] = ACTIONS(4026), - [anon_sym_template] = ACTIONS(4026), - [anon_sym_operator] = ACTIONS(4026), - [anon_sym_try] = ACTIONS(4026), - [anon_sym_delete] = ACTIONS(4026), - [anon_sym_throw] = ACTIONS(4026), - [anon_sym_namespace] = ACTIONS(4026), - [anon_sym_static_assert] = ACTIONS(4026), - [anon_sym_concept] = ACTIONS(4026), - [anon_sym_co_return] = ACTIONS(4026), - [anon_sym_co_yield] = ACTIONS(4026), - [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), - [anon_sym_co_await] = ACTIONS(4026), - [anon_sym_new] = ACTIONS(4026), - [anon_sym_requires] = ACTIONS(4026), - [anon_sym_CARET_CARET] = ACTIONS(4028), - [anon_sym_LBRACK_COLON] = ACTIONS(4028), - [sym_this] = ACTIONS(4026), + [STATE(426)] = { + [sym_identifier] = ACTIONS(4024), + [aux_sym_preproc_include_token1] = ACTIONS(4024), + [aux_sym_preproc_def_token1] = ACTIONS(4024), + [aux_sym_preproc_if_token1] = ACTIONS(4024), + [aux_sym_preproc_if_token2] = ACTIONS(4024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4024), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4024), + [sym_preproc_directive] = ACTIONS(4024), + [anon_sym_LPAREN2] = ACTIONS(4026), + [anon_sym_BANG] = ACTIONS(4026), + [anon_sym_TILDE] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_STAR] = ACTIONS(4026), + [anon_sym_AMP_AMP] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4024), + [anon_sym_SEMI] = ACTIONS(4026), + [anon_sym___extension__] = ACTIONS(4024), + [anon_sym_typedef] = ACTIONS(4024), + [anon_sym_virtual] = ACTIONS(4024), + [anon_sym_extern] = ACTIONS(4024), + [anon_sym___attribute__] = ACTIONS(4024), + [anon_sym___attribute] = ACTIONS(4024), + [anon_sym_using] = ACTIONS(4024), + [anon_sym_COLON_COLON] = ACTIONS(4026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4026), + [anon_sym___declspec] = ACTIONS(4024), + [anon_sym___based] = ACTIONS(4024), + [anon_sym___cdecl] = ACTIONS(4024), + [anon_sym___clrcall] = ACTIONS(4024), + [anon_sym___stdcall] = ACTIONS(4024), + [anon_sym___fastcall] = ACTIONS(4024), + [anon_sym___thiscall] = ACTIONS(4024), + [anon_sym___vectorcall] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4026), + [anon_sym_signed] = ACTIONS(4024), + [anon_sym_unsigned] = ACTIONS(4024), + [anon_sym_long] = ACTIONS(4024), + [anon_sym_short] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4024), + [anon_sym_static] = ACTIONS(4024), + [anon_sym_register] = ACTIONS(4024), + [anon_sym_inline] = ACTIONS(4024), + [anon_sym___inline] = ACTIONS(4024), + [anon_sym___inline__] = ACTIONS(4024), + [anon_sym___forceinline] = ACTIONS(4024), + [anon_sym_thread_local] = ACTIONS(4024), + [anon_sym___thread] = ACTIONS(4024), + [anon_sym_const] = ACTIONS(4024), + [anon_sym_constexpr] = ACTIONS(4024), + [anon_sym_volatile] = ACTIONS(4024), + [anon_sym_restrict] = ACTIONS(4024), + [anon_sym___restrict__] = ACTIONS(4024), + [anon_sym__Atomic] = ACTIONS(4024), + [anon_sym__Noreturn] = ACTIONS(4024), + [anon_sym_noreturn] = ACTIONS(4024), + [anon_sym__Nonnull] = ACTIONS(4024), + [anon_sym_mutable] = ACTIONS(4024), + [anon_sym_constinit] = ACTIONS(4024), + [anon_sym_consteval] = ACTIONS(4024), + [anon_sym_alignas] = ACTIONS(4024), + [anon_sym__Alignas] = ACTIONS(4024), + [sym_primitive_type] = ACTIONS(4024), + [anon_sym_enum] = ACTIONS(4024), + [anon_sym_class] = ACTIONS(4024), + [anon_sym_struct] = ACTIONS(4024), + [anon_sym_union] = ACTIONS(4024), + [anon_sym_if] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_case] = ACTIONS(4024), + [anon_sym_default] = ACTIONS(4024), + [anon_sym_while] = ACTIONS(4024), + [anon_sym_do] = ACTIONS(4024), + [anon_sym_for] = ACTIONS(4024), + [anon_sym_return] = ACTIONS(4024), + [anon_sym_break] = ACTIONS(4024), + [anon_sym_continue] = ACTIONS(4024), + [anon_sym_goto] = ACTIONS(4024), + [anon_sym___try] = ACTIONS(4024), + [anon_sym___leave] = ACTIONS(4024), + [anon_sym_not] = ACTIONS(4024), + [anon_sym_compl] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4026), + [anon_sym_PLUS_PLUS] = ACTIONS(4026), + [anon_sym_sizeof] = ACTIONS(4024), + [anon_sym___alignof__] = ACTIONS(4024), + [anon_sym___alignof] = ACTIONS(4024), + [anon_sym__alignof] = ACTIONS(4024), + [anon_sym_alignof] = ACTIONS(4024), + [anon_sym__Alignof] = ACTIONS(4024), + [anon_sym_offsetof] = ACTIONS(4024), + [anon_sym__Generic] = ACTIONS(4024), + [anon_sym_typename] = ACTIONS(4024), + [anon_sym_asm] = ACTIONS(4024), + [anon_sym___asm__] = ACTIONS(4024), + [anon_sym___asm] = ACTIONS(4024), + [sym_number_literal] = ACTIONS(4026), + [anon_sym_L_SQUOTE] = ACTIONS(4026), + [anon_sym_u_SQUOTE] = ACTIONS(4026), + [anon_sym_U_SQUOTE] = ACTIONS(4026), + [anon_sym_u8_SQUOTE] = ACTIONS(4026), + [anon_sym_SQUOTE] = ACTIONS(4026), + [anon_sym_L_DQUOTE] = ACTIONS(4026), + [anon_sym_u_DQUOTE] = ACTIONS(4026), + [anon_sym_U_DQUOTE] = ACTIONS(4026), + [anon_sym_u8_DQUOTE] = ACTIONS(4026), + [anon_sym_DQUOTE] = ACTIONS(4026), + [sym_true] = ACTIONS(4024), + [sym_false] = ACTIONS(4024), + [anon_sym_NULL] = ACTIONS(4024), + [anon_sym_nullptr] = ACTIONS(4024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4024), + [anon_sym_decltype] = ACTIONS(4024), + [anon_sym_explicit] = ACTIONS(4024), + [anon_sym_export] = ACTIONS(4024), + [anon_sym_module] = ACTIONS(4024), + [anon_sym_import] = ACTIONS(4024), + [anon_sym_template] = ACTIONS(4024), + [anon_sym_operator] = ACTIONS(4024), + [anon_sym_try] = ACTIONS(4024), + [anon_sym_delete] = ACTIONS(4024), + [anon_sym_throw] = ACTIONS(4024), + [anon_sym_namespace] = ACTIONS(4024), + [anon_sym_static_assert] = ACTIONS(4024), + [anon_sym_concept] = ACTIONS(4024), + [anon_sym_co_return] = ACTIONS(4024), + [anon_sym_co_yield] = ACTIONS(4024), + [anon_sym_R_DQUOTE] = ACTIONS(4026), + [anon_sym_LR_DQUOTE] = ACTIONS(4026), + [anon_sym_uR_DQUOTE] = ACTIONS(4026), + [anon_sym_UR_DQUOTE] = ACTIONS(4026), + [anon_sym_u8R_DQUOTE] = ACTIONS(4026), + [anon_sym_co_await] = ACTIONS(4024), + [anon_sym_new] = ACTIONS(4024), + [anon_sym_requires] = ACTIONS(4024), + [anon_sym_CARET_CARET] = ACTIONS(4026), + [anon_sym_LBRACK_COLON] = ACTIONS(4026), + [sym_this] = ACTIONS(4024), }, - [STATE(447)] = { - [sym_identifier] = ACTIONS(4030), - [aux_sym_preproc_include_token1] = ACTIONS(4030), - [aux_sym_preproc_def_token1] = ACTIONS(4030), - [aux_sym_preproc_if_token1] = ACTIONS(4030), - [aux_sym_preproc_if_token2] = ACTIONS(4030), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4030), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4030), - [aux_sym_preproc_else_token1] = ACTIONS(4030), - [aux_sym_preproc_elif_token1] = ACTIONS(4030), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4030), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4030), - [sym_preproc_directive] = ACTIONS(4030), - [anon_sym_LPAREN2] = ACTIONS(4032), - [anon_sym_BANG] = ACTIONS(4032), - [anon_sym_TILDE] = ACTIONS(4032), - [anon_sym_DASH] = ACTIONS(4030), - [anon_sym_PLUS] = ACTIONS(4030), - [anon_sym_STAR] = ACTIONS(4032), - [anon_sym_AMP_AMP] = ACTIONS(4032), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_SEMI] = ACTIONS(4032), - [anon_sym___extension__] = ACTIONS(4030), - [anon_sym_typedef] = ACTIONS(4030), - [anon_sym_virtual] = ACTIONS(4030), - [anon_sym_extern] = ACTIONS(4030), - [anon_sym___attribute__] = ACTIONS(4030), - [anon_sym___attribute] = ACTIONS(4030), - [anon_sym_using] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(4032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4032), - [anon_sym___declspec] = ACTIONS(4030), - [anon_sym___based] = ACTIONS(4030), - [anon_sym___cdecl] = ACTIONS(4030), - [anon_sym___clrcall] = ACTIONS(4030), - [anon_sym___stdcall] = ACTIONS(4030), - [anon_sym___fastcall] = ACTIONS(4030), - [anon_sym___thiscall] = ACTIONS(4030), - [anon_sym___vectorcall] = ACTIONS(4030), - [anon_sym_LBRACE] = ACTIONS(4032), - [anon_sym_signed] = ACTIONS(4030), - [anon_sym_unsigned] = ACTIONS(4030), - [anon_sym_long] = ACTIONS(4030), - [anon_sym_short] = ACTIONS(4030), - [anon_sym_LBRACK] = ACTIONS(4030), - [anon_sym_static] = ACTIONS(4030), - [anon_sym_register] = ACTIONS(4030), - [anon_sym_inline] = ACTIONS(4030), - [anon_sym___inline] = ACTIONS(4030), - [anon_sym___inline__] = ACTIONS(4030), - [anon_sym___forceinline] = ACTIONS(4030), - [anon_sym_thread_local] = ACTIONS(4030), - [anon_sym___thread] = ACTIONS(4030), - [anon_sym_const] = ACTIONS(4030), - [anon_sym_constexpr] = ACTIONS(4030), - [anon_sym_volatile] = ACTIONS(4030), - [anon_sym_restrict] = ACTIONS(4030), - [anon_sym___restrict__] = ACTIONS(4030), - [anon_sym__Atomic] = ACTIONS(4030), - [anon_sym__Noreturn] = ACTIONS(4030), - [anon_sym_noreturn] = ACTIONS(4030), - [anon_sym__Nonnull] = ACTIONS(4030), - [anon_sym_mutable] = ACTIONS(4030), - [anon_sym_constinit] = ACTIONS(4030), - [anon_sym_consteval] = ACTIONS(4030), - [anon_sym_alignas] = ACTIONS(4030), - [anon_sym__Alignas] = ACTIONS(4030), - [sym_primitive_type] = ACTIONS(4030), - [anon_sym_enum] = ACTIONS(4030), - [anon_sym_class] = ACTIONS(4030), - [anon_sym_struct] = ACTIONS(4030), - [anon_sym_union] = ACTIONS(4030), - [anon_sym_if] = ACTIONS(4030), - [anon_sym_switch] = ACTIONS(4030), - [anon_sym_case] = ACTIONS(4030), - [anon_sym_default] = ACTIONS(4030), - [anon_sym_while] = ACTIONS(4030), - [anon_sym_do] = ACTIONS(4030), - [anon_sym_for] = ACTIONS(4030), - [anon_sym_return] = ACTIONS(4030), - [anon_sym_break] = ACTIONS(4030), - [anon_sym_continue] = ACTIONS(4030), - [anon_sym_goto] = ACTIONS(4030), - [anon_sym___try] = ACTIONS(4030), - [anon_sym___leave] = ACTIONS(4030), - [anon_sym_not] = ACTIONS(4030), - [anon_sym_compl] = ACTIONS(4030), - [anon_sym_DASH_DASH] = ACTIONS(4032), - [anon_sym_PLUS_PLUS] = ACTIONS(4032), - [anon_sym_sizeof] = ACTIONS(4030), - [anon_sym___alignof__] = ACTIONS(4030), - [anon_sym___alignof] = ACTIONS(4030), - [anon_sym__alignof] = ACTIONS(4030), - [anon_sym_alignof] = ACTIONS(4030), - [anon_sym__Alignof] = ACTIONS(4030), - [anon_sym_offsetof] = ACTIONS(4030), - [anon_sym__Generic] = ACTIONS(4030), - [anon_sym_typename] = ACTIONS(4030), - [anon_sym_asm] = ACTIONS(4030), - [anon_sym___asm__] = ACTIONS(4030), - [anon_sym___asm] = ACTIONS(4030), - [sym_number_literal] = ACTIONS(4032), - [anon_sym_L_SQUOTE] = ACTIONS(4032), - [anon_sym_u_SQUOTE] = ACTIONS(4032), - [anon_sym_U_SQUOTE] = ACTIONS(4032), - [anon_sym_u8_SQUOTE] = ACTIONS(4032), - [anon_sym_SQUOTE] = ACTIONS(4032), - [anon_sym_L_DQUOTE] = ACTIONS(4032), - [anon_sym_u_DQUOTE] = ACTIONS(4032), - [anon_sym_U_DQUOTE] = ACTIONS(4032), - [anon_sym_u8_DQUOTE] = ACTIONS(4032), - [anon_sym_DQUOTE] = ACTIONS(4032), - [sym_true] = ACTIONS(4030), - [sym_false] = ACTIONS(4030), - [anon_sym_NULL] = ACTIONS(4030), - [anon_sym_nullptr] = ACTIONS(4030), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4030), - [anon_sym_decltype] = ACTIONS(4030), - [anon_sym_explicit] = ACTIONS(4030), - [anon_sym_template] = ACTIONS(4030), - [anon_sym_operator] = ACTIONS(4030), - [anon_sym_try] = ACTIONS(4030), - [anon_sym_delete] = ACTIONS(4030), - [anon_sym_throw] = ACTIONS(4030), - [anon_sym_namespace] = ACTIONS(4030), - [anon_sym_static_assert] = ACTIONS(4030), - [anon_sym_concept] = ACTIONS(4030), - [anon_sym_co_return] = ACTIONS(4030), - [anon_sym_co_yield] = ACTIONS(4030), - [anon_sym_R_DQUOTE] = ACTIONS(4032), - [anon_sym_LR_DQUOTE] = ACTIONS(4032), - [anon_sym_uR_DQUOTE] = ACTIONS(4032), - [anon_sym_UR_DQUOTE] = ACTIONS(4032), - [anon_sym_u8R_DQUOTE] = ACTIONS(4032), - [anon_sym_co_await] = ACTIONS(4030), - [anon_sym_new] = ACTIONS(4030), - [anon_sym_requires] = ACTIONS(4030), - [anon_sym_CARET_CARET] = ACTIONS(4032), - [anon_sym_LBRACK_COLON] = ACTIONS(4032), - [sym_this] = ACTIONS(4030), + [STATE(427)] = { + [sym_identifier] = ACTIONS(4028), + [aux_sym_preproc_include_token1] = ACTIONS(4028), + [aux_sym_preproc_def_token1] = ACTIONS(4028), + [aux_sym_preproc_if_token1] = ACTIONS(4028), + [aux_sym_preproc_if_token2] = ACTIONS(4028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4028), + [aux_sym_preproc_else_token1] = ACTIONS(4028), + [aux_sym_preproc_elif_token1] = ACTIONS(4028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4028), + [sym_preproc_directive] = ACTIONS(4028), + [anon_sym_LPAREN2] = ACTIONS(4030), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_TILDE] = ACTIONS(4030), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym___extension__] = ACTIONS(4028), + [anon_sym_typedef] = ACTIONS(4028), + [anon_sym_virtual] = ACTIONS(4028), + [anon_sym_extern] = ACTIONS(4028), + [anon_sym___attribute__] = ACTIONS(4028), + [anon_sym___attribute] = ACTIONS(4028), + [anon_sym_using] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4030), + [anon_sym___declspec] = ACTIONS(4028), + [anon_sym___based] = ACTIONS(4028), + [anon_sym___cdecl] = ACTIONS(4028), + [anon_sym___clrcall] = ACTIONS(4028), + [anon_sym___stdcall] = ACTIONS(4028), + [anon_sym___fastcall] = ACTIONS(4028), + [anon_sym___thiscall] = ACTIONS(4028), + [anon_sym___vectorcall] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_signed] = ACTIONS(4028), + [anon_sym_unsigned] = ACTIONS(4028), + [anon_sym_long] = ACTIONS(4028), + [anon_sym_short] = ACTIONS(4028), + [anon_sym_LBRACK] = ACTIONS(4028), + [anon_sym_static] = ACTIONS(4028), + [anon_sym_register] = ACTIONS(4028), + [anon_sym_inline] = ACTIONS(4028), + [anon_sym___inline] = ACTIONS(4028), + [anon_sym___inline__] = ACTIONS(4028), + [anon_sym___forceinline] = ACTIONS(4028), + [anon_sym_thread_local] = ACTIONS(4028), + [anon_sym___thread] = ACTIONS(4028), + [anon_sym_const] = ACTIONS(4028), + [anon_sym_constexpr] = ACTIONS(4028), + [anon_sym_volatile] = ACTIONS(4028), + [anon_sym_restrict] = ACTIONS(4028), + [anon_sym___restrict__] = ACTIONS(4028), + [anon_sym__Atomic] = ACTIONS(4028), + [anon_sym__Noreturn] = ACTIONS(4028), + [anon_sym_noreturn] = ACTIONS(4028), + [anon_sym__Nonnull] = ACTIONS(4028), + [anon_sym_mutable] = ACTIONS(4028), + [anon_sym_constinit] = ACTIONS(4028), + [anon_sym_consteval] = ACTIONS(4028), + [anon_sym_alignas] = ACTIONS(4028), + [anon_sym__Alignas] = ACTIONS(4028), + [sym_primitive_type] = ACTIONS(4028), + [anon_sym_enum] = ACTIONS(4028), + [anon_sym_class] = ACTIONS(4028), + [anon_sym_struct] = ACTIONS(4028), + [anon_sym_union] = ACTIONS(4028), + [anon_sym_if] = ACTIONS(4028), + [anon_sym_switch] = ACTIONS(4028), + [anon_sym_case] = ACTIONS(4028), + [anon_sym_default] = ACTIONS(4028), + [anon_sym_while] = ACTIONS(4028), + [anon_sym_do] = ACTIONS(4028), + [anon_sym_for] = ACTIONS(4028), + [anon_sym_return] = ACTIONS(4028), + [anon_sym_break] = ACTIONS(4028), + [anon_sym_continue] = ACTIONS(4028), + [anon_sym_goto] = ACTIONS(4028), + [anon_sym___try] = ACTIONS(4028), + [anon_sym___leave] = ACTIONS(4028), + [anon_sym_not] = ACTIONS(4028), + [anon_sym_compl] = ACTIONS(4028), + [anon_sym_DASH_DASH] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4030), + [anon_sym_sizeof] = ACTIONS(4028), + [anon_sym___alignof__] = ACTIONS(4028), + [anon_sym___alignof] = ACTIONS(4028), + [anon_sym__alignof] = ACTIONS(4028), + [anon_sym_alignof] = ACTIONS(4028), + [anon_sym__Alignof] = ACTIONS(4028), + [anon_sym_offsetof] = ACTIONS(4028), + [anon_sym__Generic] = ACTIONS(4028), + [anon_sym_typename] = ACTIONS(4028), + [anon_sym_asm] = ACTIONS(4028), + [anon_sym___asm__] = ACTIONS(4028), + [anon_sym___asm] = ACTIONS(4028), + [sym_number_literal] = ACTIONS(4030), + [anon_sym_L_SQUOTE] = ACTIONS(4030), + [anon_sym_u_SQUOTE] = ACTIONS(4030), + [anon_sym_U_SQUOTE] = ACTIONS(4030), + [anon_sym_u8_SQUOTE] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4030), + [anon_sym_L_DQUOTE] = ACTIONS(4030), + [anon_sym_u_DQUOTE] = ACTIONS(4030), + [anon_sym_U_DQUOTE] = ACTIONS(4030), + [anon_sym_u8_DQUOTE] = ACTIONS(4030), + [anon_sym_DQUOTE] = ACTIONS(4030), + [sym_true] = ACTIONS(4028), + [sym_false] = ACTIONS(4028), + [anon_sym_NULL] = ACTIONS(4028), + [anon_sym_nullptr] = ACTIONS(4028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4028), + [anon_sym_decltype] = ACTIONS(4028), + [anon_sym_explicit] = ACTIONS(4028), + [anon_sym_export] = ACTIONS(4028), + [anon_sym_module] = ACTIONS(4028), + [anon_sym_import] = ACTIONS(4028), + [anon_sym_template] = ACTIONS(4028), + [anon_sym_operator] = ACTIONS(4028), + [anon_sym_try] = ACTIONS(4028), + [anon_sym_delete] = ACTIONS(4028), + [anon_sym_throw] = ACTIONS(4028), + [anon_sym_namespace] = ACTIONS(4028), + [anon_sym_static_assert] = ACTIONS(4028), + [anon_sym_concept] = ACTIONS(4028), + [anon_sym_co_return] = ACTIONS(4028), + [anon_sym_co_yield] = ACTIONS(4028), + [anon_sym_R_DQUOTE] = ACTIONS(4030), + [anon_sym_LR_DQUOTE] = ACTIONS(4030), + [anon_sym_uR_DQUOTE] = ACTIONS(4030), + [anon_sym_UR_DQUOTE] = ACTIONS(4030), + [anon_sym_u8R_DQUOTE] = ACTIONS(4030), + [anon_sym_co_await] = ACTIONS(4028), + [anon_sym_new] = ACTIONS(4028), + [anon_sym_requires] = ACTIONS(4028), + [anon_sym_CARET_CARET] = ACTIONS(4030), + [anon_sym_LBRACK_COLON] = ACTIONS(4030), + [sym_this] = ACTIONS(4028), }, - [STATE(448)] = { - [sym_identifier] = ACTIONS(4034), - [aux_sym_preproc_include_token1] = ACTIONS(4034), - [aux_sym_preproc_def_token1] = ACTIONS(4034), - [aux_sym_preproc_if_token1] = ACTIONS(4034), - [aux_sym_preproc_if_token2] = ACTIONS(4034), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4034), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4034), - [aux_sym_preproc_else_token1] = ACTIONS(4034), - [aux_sym_preproc_elif_token1] = ACTIONS(4034), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4034), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4034), - [sym_preproc_directive] = ACTIONS(4034), - [anon_sym_LPAREN2] = ACTIONS(4036), - [anon_sym_BANG] = ACTIONS(4036), - [anon_sym_TILDE] = ACTIONS(4036), - [anon_sym_DASH] = ACTIONS(4034), - [anon_sym_PLUS] = ACTIONS(4034), - [anon_sym_STAR] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_AMP] = ACTIONS(4034), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym___extension__] = ACTIONS(4034), - [anon_sym_typedef] = ACTIONS(4034), - [anon_sym_virtual] = ACTIONS(4034), - [anon_sym_extern] = ACTIONS(4034), - [anon_sym___attribute__] = ACTIONS(4034), - [anon_sym___attribute] = ACTIONS(4034), - [anon_sym_using] = ACTIONS(4034), - [anon_sym_COLON_COLON] = ACTIONS(4036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4036), - [anon_sym___declspec] = ACTIONS(4034), - [anon_sym___based] = ACTIONS(4034), - [anon_sym___cdecl] = ACTIONS(4034), - [anon_sym___clrcall] = ACTIONS(4034), - [anon_sym___stdcall] = ACTIONS(4034), - [anon_sym___fastcall] = ACTIONS(4034), - [anon_sym___thiscall] = ACTIONS(4034), - [anon_sym___vectorcall] = ACTIONS(4034), - [anon_sym_LBRACE] = ACTIONS(4036), - [anon_sym_signed] = ACTIONS(4034), - [anon_sym_unsigned] = ACTIONS(4034), - [anon_sym_long] = ACTIONS(4034), - [anon_sym_short] = ACTIONS(4034), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_static] = ACTIONS(4034), - [anon_sym_register] = ACTIONS(4034), - [anon_sym_inline] = ACTIONS(4034), - [anon_sym___inline] = ACTIONS(4034), - [anon_sym___inline__] = ACTIONS(4034), - [anon_sym___forceinline] = ACTIONS(4034), - [anon_sym_thread_local] = ACTIONS(4034), - [anon_sym___thread] = ACTIONS(4034), - [anon_sym_const] = ACTIONS(4034), - [anon_sym_constexpr] = ACTIONS(4034), - [anon_sym_volatile] = ACTIONS(4034), - [anon_sym_restrict] = ACTIONS(4034), - [anon_sym___restrict__] = ACTIONS(4034), - [anon_sym__Atomic] = ACTIONS(4034), - [anon_sym__Noreturn] = ACTIONS(4034), - [anon_sym_noreturn] = ACTIONS(4034), - [anon_sym__Nonnull] = ACTIONS(4034), - [anon_sym_mutable] = ACTIONS(4034), - [anon_sym_constinit] = ACTIONS(4034), - [anon_sym_consteval] = ACTIONS(4034), - [anon_sym_alignas] = ACTIONS(4034), - [anon_sym__Alignas] = ACTIONS(4034), - [sym_primitive_type] = ACTIONS(4034), - [anon_sym_enum] = ACTIONS(4034), - [anon_sym_class] = ACTIONS(4034), - [anon_sym_struct] = ACTIONS(4034), - [anon_sym_union] = ACTIONS(4034), - [anon_sym_if] = ACTIONS(4034), - [anon_sym_switch] = ACTIONS(4034), - [anon_sym_case] = ACTIONS(4034), - [anon_sym_default] = ACTIONS(4034), - [anon_sym_while] = ACTIONS(4034), - [anon_sym_do] = ACTIONS(4034), - [anon_sym_for] = ACTIONS(4034), - [anon_sym_return] = ACTIONS(4034), - [anon_sym_break] = ACTIONS(4034), - [anon_sym_continue] = ACTIONS(4034), - [anon_sym_goto] = ACTIONS(4034), - [anon_sym___try] = ACTIONS(4034), - [anon_sym___leave] = ACTIONS(4034), - [anon_sym_not] = ACTIONS(4034), - [anon_sym_compl] = ACTIONS(4034), - [anon_sym_DASH_DASH] = ACTIONS(4036), - [anon_sym_PLUS_PLUS] = ACTIONS(4036), - [anon_sym_sizeof] = ACTIONS(4034), - [anon_sym___alignof__] = ACTIONS(4034), - [anon_sym___alignof] = ACTIONS(4034), - [anon_sym__alignof] = ACTIONS(4034), - [anon_sym_alignof] = ACTIONS(4034), - [anon_sym__Alignof] = ACTIONS(4034), - [anon_sym_offsetof] = ACTIONS(4034), - [anon_sym__Generic] = ACTIONS(4034), - [anon_sym_typename] = ACTIONS(4034), - [anon_sym_asm] = ACTIONS(4034), - [anon_sym___asm__] = ACTIONS(4034), - [anon_sym___asm] = ACTIONS(4034), - [sym_number_literal] = ACTIONS(4036), - [anon_sym_L_SQUOTE] = ACTIONS(4036), - [anon_sym_u_SQUOTE] = ACTIONS(4036), - [anon_sym_U_SQUOTE] = ACTIONS(4036), - [anon_sym_u8_SQUOTE] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4036), - [anon_sym_L_DQUOTE] = ACTIONS(4036), - [anon_sym_u_DQUOTE] = ACTIONS(4036), - [anon_sym_U_DQUOTE] = ACTIONS(4036), - [anon_sym_u8_DQUOTE] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(4036), - [sym_true] = ACTIONS(4034), - [sym_false] = ACTIONS(4034), - [anon_sym_NULL] = ACTIONS(4034), - [anon_sym_nullptr] = ACTIONS(4034), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4034), - [anon_sym_decltype] = ACTIONS(4034), - [anon_sym_explicit] = ACTIONS(4034), - [anon_sym_template] = ACTIONS(4034), - [anon_sym_operator] = ACTIONS(4034), - [anon_sym_try] = ACTIONS(4034), - [anon_sym_delete] = ACTIONS(4034), - [anon_sym_throw] = ACTIONS(4034), - [anon_sym_namespace] = ACTIONS(4034), - [anon_sym_static_assert] = ACTIONS(4034), - [anon_sym_concept] = ACTIONS(4034), - [anon_sym_co_return] = ACTIONS(4034), - [anon_sym_co_yield] = ACTIONS(4034), - [anon_sym_R_DQUOTE] = ACTIONS(4036), - [anon_sym_LR_DQUOTE] = ACTIONS(4036), - [anon_sym_uR_DQUOTE] = ACTIONS(4036), - [anon_sym_UR_DQUOTE] = ACTIONS(4036), - [anon_sym_u8R_DQUOTE] = ACTIONS(4036), - [anon_sym_co_await] = ACTIONS(4034), - [anon_sym_new] = ACTIONS(4034), - [anon_sym_requires] = ACTIONS(4034), - [anon_sym_CARET_CARET] = ACTIONS(4036), - [anon_sym_LBRACK_COLON] = ACTIONS(4036), - [sym_this] = ACTIONS(4034), + [STATE(428)] = { + [sym_identifier] = ACTIONS(4032), + [aux_sym_preproc_include_token1] = ACTIONS(4032), + [aux_sym_preproc_def_token1] = ACTIONS(4032), + [aux_sym_preproc_if_token1] = ACTIONS(4032), + [aux_sym_preproc_if_token2] = ACTIONS(4032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4032), + [aux_sym_preproc_else_token1] = ACTIONS(4032), + [aux_sym_preproc_elif_token1] = ACTIONS(4032), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4032), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4032), + [sym_preproc_directive] = ACTIONS(4032), + [anon_sym_LPAREN2] = ACTIONS(4034), + [anon_sym_BANG] = ACTIONS(4034), + [anon_sym_TILDE] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4034), + [anon_sym_AMP_AMP] = ACTIONS(4034), + [anon_sym_AMP] = ACTIONS(4032), + [anon_sym_SEMI] = ACTIONS(4034), + [anon_sym___extension__] = ACTIONS(4032), + [anon_sym_typedef] = ACTIONS(4032), + [anon_sym_virtual] = ACTIONS(4032), + [anon_sym_extern] = ACTIONS(4032), + [anon_sym___attribute__] = ACTIONS(4032), + [anon_sym___attribute] = ACTIONS(4032), + [anon_sym_using] = ACTIONS(4032), + [anon_sym_COLON_COLON] = ACTIONS(4034), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4034), + [anon_sym___declspec] = ACTIONS(4032), + [anon_sym___based] = ACTIONS(4032), + [anon_sym___cdecl] = ACTIONS(4032), + [anon_sym___clrcall] = ACTIONS(4032), + [anon_sym___stdcall] = ACTIONS(4032), + [anon_sym___fastcall] = ACTIONS(4032), + [anon_sym___thiscall] = ACTIONS(4032), + [anon_sym___vectorcall] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4034), + [anon_sym_signed] = ACTIONS(4032), + [anon_sym_unsigned] = ACTIONS(4032), + [anon_sym_long] = ACTIONS(4032), + [anon_sym_short] = ACTIONS(4032), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_static] = ACTIONS(4032), + [anon_sym_register] = ACTIONS(4032), + [anon_sym_inline] = ACTIONS(4032), + [anon_sym___inline] = ACTIONS(4032), + [anon_sym___inline__] = ACTIONS(4032), + [anon_sym___forceinline] = ACTIONS(4032), + [anon_sym_thread_local] = ACTIONS(4032), + [anon_sym___thread] = ACTIONS(4032), + [anon_sym_const] = ACTIONS(4032), + [anon_sym_constexpr] = ACTIONS(4032), + [anon_sym_volatile] = ACTIONS(4032), + [anon_sym_restrict] = ACTIONS(4032), + [anon_sym___restrict__] = ACTIONS(4032), + [anon_sym__Atomic] = ACTIONS(4032), + [anon_sym__Noreturn] = ACTIONS(4032), + [anon_sym_noreturn] = ACTIONS(4032), + [anon_sym__Nonnull] = ACTIONS(4032), + [anon_sym_mutable] = ACTIONS(4032), + [anon_sym_constinit] = ACTIONS(4032), + [anon_sym_consteval] = ACTIONS(4032), + [anon_sym_alignas] = ACTIONS(4032), + [anon_sym__Alignas] = ACTIONS(4032), + [sym_primitive_type] = ACTIONS(4032), + [anon_sym_enum] = ACTIONS(4032), + [anon_sym_class] = ACTIONS(4032), + [anon_sym_struct] = ACTIONS(4032), + [anon_sym_union] = ACTIONS(4032), + [anon_sym_if] = ACTIONS(4032), + [anon_sym_switch] = ACTIONS(4032), + [anon_sym_case] = ACTIONS(4032), + [anon_sym_default] = ACTIONS(4032), + [anon_sym_while] = ACTIONS(4032), + [anon_sym_do] = ACTIONS(4032), + [anon_sym_for] = ACTIONS(4032), + [anon_sym_return] = ACTIONS(4032), + [anon_sym_break] = ACTIONS(4032), + [anon_sym_continue] = ACTIONS(4032), + [anon_sym_goto] = ACTIONS(4032), + [anon_sym___try] = ACTIONS(4032), + [anon_sym___leave] = ACTIONS(4032), + [anon_sym_not] = ACTIONS(4032), + [anon_sym_compl] = ACTIONS(4032), + [anon_sym_DASH_DASH] = ACTIONS(4034), + [anon_sym_PLUS_PLUS] = ACTIONS(4034), + [anon_sym_sizeof] = ACTIONS(4032), + [anon_sym___alignof__] = ACTIONS(4032), + [anon_sym___alignof] = ACTIONS(4032), + [anon_sym__alignof] = ACTIONS(4032), + [anon_sym_alignof] = ACTIONS(4032), + [anon_sym__Alignof] = ACTIONS(4032), + [anon_sym_offsetof] = ACTIONS(4032), + [anon_sym__Generic] = ACTIONS(4032), + [anon_sym_typename] = ACTIONS(4032), + [anon_sym_asm] = ACTIONS(4032), + [anon_sym___asm__] = ACTIONS(4032), + [anon_sym___asm] = ACTIONS(4032), + [sym_number_literal] = ACTIONS(4034), + [anon_sym_L_SQUOTE] = ACTIONS(4034), + [anon_sym_u_SQUOTE] = ACTIONS(4034), + [anon_sym_U_SQUOTE] = ACTIONS(4034), + [anon_sym_u8_SQUOTE] = ACTIONS(4034), + [anon_sym_SQUOTE] = ACTIONS(4034), + [anon_sym_L_DQUOTE] = ACTIONS(4034), + [anon_sym_u_DQUOTE] = ACTIONS(4034), + [anon_sym_U_DQUOTE] = ACTIONS(4034), + [anon_sym_u8_DQUOTE] = ACTIONS(4034), + [anon_sym_DQUOTE] = ACTIONS(4034), + [sym_true] = ACTIONS(4032), + [sym_false] = ACTIONS(4032), + [anon_sym_NULL] = ACTIONS(4032), + [anon_sym_nullptr] = ACTIONS(4032), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4032), + [anon_sym_decltype] = ACTIONS(4032), + [anon_sym_explicit] = ACTIONS(4032), + [anon_sym_export] = ACTIONS(4032), + [anon_sym_module] = ACTIONS(4032), + [anon_sym_import] = ACTIONS(4032), + [anon_sym_template] = ACTIONS(4032), + [anon_sym_operator] = ACTIONS(4032), + [anon_sym_try] = ACTIONS(4032), + [anon_sym_delete] = ACTIONS(4032), + [anon_sym_throw] = ACTIONS(4032), + [anon_sym_namespace] = ACTIONS(4032), + [anon_sym_static_assert] = ACTIONS(4032), + [anon_sym_concept] = ACTIONS(4032), + [anon_sym_co_return] = ACTIONS(4032), + [anon_sym_co_yield] = ACTIONS(4032), + [anon_sym_R_DQUOTE] = ACTIONS(4034), + [anon_sym_LR_DQUOTE] = ACTIONS(4034), + [anon_sym_uR_DQUOTE] = ACTIONS(4034), + [anon_sym_UR_DQUOTE] = ACTIONS(4034), + [anon_sym_u8R_DQUOTE] = ACTIONS(4034), + [anon_sym_co_await] = ACTIONS(4032), + [anon_sym_new] = ACTIONS(4032), + [anon_sym_requires] = ACTIONS(4032), + [anon_sym_CARET_CARET] = ACTIONS(4034), + [anon_sym_LBRACK_COLON] = ACTIONS(4034), + [sym_this] = ACTIONS(4032), }, - [STATE(449)] = { - [sym_identifier] = ACTIONS(4038), - [aux_sym_preproc_include_token1] = ACTIONS(4038), - [aux_sym_preproc_def_token1] = ACTIONS(4038), - [aux_sym_preproc_if_token1] = ACTIONS(4038), - [aux_sym_preproc_if_token2] = ACTIONS(4038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4038), - [aux_sym_preproc_else_token1] = ACTIONS(4038), - [aux_sym_preproc_elif_token1] = ACTIONS(4038), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4038), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4038), - [sym_preproc_directive] = ACTIONS(4038), - [anon_sym_LPAREN2] = ACTIONS(4040), - [anon_sym_BANG] = ACTIONS(4040), - [anon_sym_TILDE] = ACTIONS(4040), - [anon_sym_DASH] = ACTIONS(4038), - [anon_sym_PLUS] = ACTIONS(4038), - [anon_sym_STAR] = ACTIONS(4040), - [anon_sym_AMP_AMP] = ACTIONS(4040), - [anon_sym_AMP] = ACTIONS(4038), - [anon_sym_SEMI] = ACTIONS(4040), - [anon_sym___extension__] = ACTIONS(4038), - [anon_sym_typedef] = ACTIONS(4038), - [anon_sym_virtual] = ACTIONS(4038), - [anon_sym_extern] = ACTIONS(4038), - [anon_sym___attribute__] = ACTIONS(4038), - [anon_sym___attribute] = ACTIONS(4038), - [anon_sym_using] = ACTIONS(4038), - [anon_sym_COLON_COLON] = ACTIONS(4040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4040), - [anon_sym___declspec] = ACTIONS(4038), - [anon_sym___based] = ACTIONS(4038), - [anon_sym___cdecl] = ACTIONS(4038), - [anon_sym___clrcall] = ACTIONS(4038), - [anon_sym___stdcall] = ACTIONS(4038), - [anon_sym___fastcall] = ACTIONS(4038), - [anon_sym___thiscall] = ACTIONS(4038), - [anon_sym___vectorcall] = ACTIONS(4038), - [anon_sym_LBRACE] = ACTIONS(4040), - [anon_sym_signed] = ACTIONS(4038), - [anon_sym_unsigned] = ACTIONS(4038), - [anon_sym_long] = ACTIONS(4038), - [anon_sym_short] = ACTIONS(4038), - [anon_sym_LBRACK] = ACTIONS(4038), - [anon_sym_static] = ACTIONS(4038), - [anon_sym_register] = ACTIONS(4038), - [anon_sym_inline] = ACTIONS(4038), - [anon_sym___inline] = ACTIONS(4038), - [anon_sym___inline__] = ACTIONS(4038), - [anon_sym___forceinline] = ACTIONS(4038), - [anon_sym_thread_local] = ACTIONS(4038), - [anon_sym___thread] = ACTIONS(4038), - [anon_sym_const] = ACTIONS(4038), - [anon_sym_constexpr] = ACTIONS(4038), - [anon_sym_volatile] = ACTIONS(4038), - [anon_sym_restrict] = ACTIONS(4038), - [anon_sym___restrict__] = ACTIONS(4038), - [anon_sym__Atomic] = ACTIONS(4038), - [anon_sym__Noreturn] = ACTIONS(4038), - [anon_sym_noreturn] = ACTIONS(4038), - [anon_sym__Nonnull] = ACTIONS(4038), - [anon_sym_mutable] = ACTIONS(4038), - [anon_sym_constinit] = ACTIONS(4038), - [anon_sym_consteval] = ACTIONS(4038), - [anon_sym_alignas] = ACTIONS(4038), - [anon_sym__Alignas] = ACTIONS(4038), - [sym_primitive_type] = ACTIONS(4038), - [anon_sym_enum] = ACTIONS(4038), - [anon_sym_class] = ACTIONS(4038), - [anon_sym_struct] = ACTIONS(4038), - [anon_sym_union] = ACTIONS(4038), - [anon_sym_if] = ACTIONS(4038), - [anon_sym_switch] = ACTIONS(4038), - [anon_sym_case] = ACTIONS(4038), - [anon_sym_default] = ACTIONS(4038), - [anon_sym_while] = ACTIONS(4038), - [anon_sym_do] = ACTIONS(4038), - [anon_sym_for] = ACTIONS(4038), - [anon_sym_return] = ACTIONS(4038), - [anon_sym_break] = ACTIONS(4038), - [anon_sym_continue] = ACTIONS(4038), - [anon_sym_goto] = ACTIONS(4038), - [anon_sym___try] = ACTIONS(4038), - [anon_sym___leave] = ACTIONS(4038), - [anon_sym_not] = ACTIONS(4038), - [anon_sym_compl] = ACTIONS(4038), - [anon_sym_DASH_DASH] = ACTIONS(4040), - [anon_sym_PLUS_PLUS] = ACTIONS(4040), - [anon_sym_sizeof] = ACTIONS(4038), - [anon_sym___alignof__] = ACTIONS(4038), - [anon_sym___alignof] = ACTIONS(4038), - [anon_sym__alignof] = ACTIONS(4038), - [anon_sym_alignof] = ACTIONS(4038), - [anon_sym__Alignof] = ACTIONS(4038), - [anon_sym_offsetof] = ACTIONS(4038), - [anon_sym__Generic] = ACTIONS(4038), - [anon_sym_typename] = ACTIONS(4038), - [anon_sym_asm] = ACTIONS(4038), - [anon_sym___asm__] = ACTIONS(4038), - [anon_sym___asm] = ACTIONS(4038), - [sym_number_literal] = ACTIONS(4040), - [anon_sym_L_SQUOTE] = ACTIONS(4040), - [anon_sym_u_SQUOTE] = ACTIONS(4040), - [anon_sym_U_SQUOTE] = ACTIONS(4040), - [anon_sym_u8_SQUOTE] = ACTIONS(4040), - [anon_sym_SQUOTE] = ACTIONS(4040), - [anon_sym_L_DQUOTE] = ACTIONS(4040), - [anon_sym_u_DQUOTE] = ACTIONS(4040), - [anon_sym_U_DQUOTE] = ACTIONS(4040), - [anon_sym_u8_DQUOTE] = ACTIONS(4040), - [anon_sym_DQUOTE] = ACTIONS(4040), - [sym_true] = ACTIONS(4038), - [sym_false] = ACTIONS(4038), - [anon_sym_NULL] = ACTIONS(4038), - [anon_sym_nullptr] = ACTIONS(4038), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4038), - [anon_sym_decltype] = ACTIONS(4038), - [anon_sym_explicit] = ACTIONS(4038), - [anon_sym_template] = ACTIONS(4038), - [anon_sym_operator] = ACTIONS(4038), - [anon_sym_try] = ACTIONS(4038), - [anon_sym_delete] = ACTIONS(4038), - [anon_sym_throw] = ACTIONS(4038), - [anon_sym_namespace] = ACTIONS(4038), - [anon_sym_static_assert] = ACTIONS(4038), - [anon_sym_concept] = ACTIONS(4038), - [anon_sym_co_return] = ACTIONS(4038), - [anon_sym_co_yield] = ACTIONS(4038), - [anon_sym_R_DQUOTE] = ACTIONS(4040), - [anon_sym_LR_DQUOTE] = ACTIONS(4040), - [anon_sym_uR_DQUOTE] = ACTIONS(4040), - [anon_sym_UR_DQUOTE] = ACTIONS(4040), - [anon_sym_u8R_DQUOTE] = ACTIONS(4040), - [anon_sym_co_await] = ACTIONS(4038), - [anon_sym_new] = ACTIONS(4038), - [anon_sym_requires] = ACTIONS(4038), - [anon_sym_CARET_CARET] = ACTIONS(4040), - [anon_sym_LBRACK_COLON] = ACTIONS(4040), - [sym_this] = ACTIONS(4038), + [STATE(429)] = { + [sym_identifier] = ACTIONS(4036), + [aux_sym_preproc_include_token1] = ACTIONS(4036), + [aux_sym_preproc_def_token1] = ACTIONS(4036), + [aux_sym_preproc_if_token1] = ACTIONS(4036), + [aux_sym_preproc_if_token2] = ACTIONS(4036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4036), + [aux_sym_preproc_else_token1] = ACTIONS(4036), + [aux_sym_preproc_elif_token1] = ACTIONS(4036), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4036), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4036), + [sym_preproc_directive] = ACTIONS(4036), + [anon_sym_LPAREN2] = ACTIONS(4038), + [anon_sym_BANG] = ACTIONS(4038), + [anon_sym_TILDE] = ACTIONS(4038), + [anon_sym_DASH] = ACTIONS(4036), + [anon_sym_PLUS] = ACTIONS(4036), + [anon_sym_STAR] = ACTIONS(4038), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_AMP] = ACTIONS(4036), + [anon_sym_SEMI] = ACTIONS(4038), + [anon_sym___extension__] = ACTIONS(4036), + [anon_sym_typedef] = ACTIONS(4036), + [anon_sym_virtual] = ACTIONS(4036), + [anon_sym_extern] = ACTIONS(4036), + [anon_sym___attribute__] = ACTIONS(4036), + [anon_sym___attribute] = ACTIONS(4036), + [anon_sym_using] = ACTIONS(4036), + [anon_sym_COLON_COLON] = ACTIONS(4038), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4038), + [anon_sym___declspec] = ACTIONS(4036), + [anon_sym___based] = ACTIONS(4036), + [anon_sym___cdecl] = ACTIONS(4036), + [anon_sym___clrcall] = ACTIONS(4036), + [anon_sym___stdcall] = ACTIONS(4036), + [anon_sym___fastcall] = ACTIONS(4036), + [anon_sym___thiscall] = ACTIONS(4036), + [anon_sym___vectorcall] = ACTIONS(4036), + [anon_sym_LBRACE] = ACTIONS(4038), + [anon_sym_signed] = ACTIONS(4036), + [anon_sym_unsigned] = ACTIONS(4036), + [anon_sym_long] = ACTIONS(4036), + [anon_sym_short] = ACTIONS(4036), + [anon_sym_LBRACK] = ACTIONS(4036), + [anon_sym_static] = ACTIONS(4036), + [anon_sym_register] = ACTIONS(4036), + [anon_sym_inline] = ACTIONS(4036), + [anon_sym___inline] = ACTIONS(4036), + [anon_sym___inline__] = ACTIONS(4036), + [anon_sym___forceinline] = ACTIONS(4036), + [anon_sym_thread_local] = ACTIONS(4036), + [anon_sym___thread] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4036), + [anon_sym_constexpr] = ACTIONS(4036), + [anon_sym_volatile] = ACTIONS(4036), + [anon_sym_restrict] = ACTIONS(4036), + [anon_sym___restrict__] = ACTIONS(4036), + [anon_sym__Atomic] = ACTIONS(4036), + [anon_sym__Noreturn] = ACTIONS(4036), + [anon_sym_noreturn] = ACTIONS(4036), + [anon_sym__Nonnull] = ACTIONS(4036), + [anon_sym_mutable] = ACTIONS(4036), + [anon_sym_constinit] = ACTIONS(4036), + [anon_sym_consteval] = ACTIONS(4036), + [anon_sym_alignas] = ACTIONS(4036), + [anon_sym__Alignas] = ACTIONS(4036), + [sym_primitive_type] = ACTIONS(4036), + [anon_sym_enum] = ACTIONS(4036), + [anon_sym_class] = ACTIONS(4036), + [anon_sym_struct] = ACTIONS(4036), + [anon_sym_union] = ACTIONS(4036), + [anon_sym_if] = ACTIONS(4036), + [anon_sym_switch] = ACTIONS(4036), + [anon_sym_case] = ACTIONS(4036), + [anon_sym_default] = ACTIONS(4036), + [anon_sym_while] = ACTIONS(4036), + [anon_sym_do] = ACTIONS(4036), + [anon_sym_for] = ACTIONS(4036), + [anon_sym_return] = ACTIONS(4036), + [anon_sym_break] = ACTIONS(4036), + [anon_sym_continue] = ACTIONS(4036), + [anon_sym_goto] = ACTIONS(4036), + [anon_sym___try] = ACTIONS(4036), + [anon_sym___leave] = ACTIONS(4036), + [anon_sym_not] = ACTIONS(4036), + [anon_sym_compl] = ACTIONS(4036), + [anon_sym_DASH_DASH] = ACTIONS(4038), + [anon_sym_PLUS_PLUS] = ACTIONS(4038), + [anon_sym_sizeof] = ACTIONS(4036), + [anon_sym___alignof__] = ACTIONS(4036), + [anon_sym___alignof] = ACTIONS(4036), + [anon_sym__alignof] = ACTIONS(4036), + [anon_sym_alignof] = ACTIONS(4036), + [anon_sym__Alignof] = ACTIONS(4036), + [anon_sym_offsetof] = ACTIONS(4036), + [anon_sym__Generic] = ACTIONS(4036), + [anon_sym_typename] = ACTIONS(4036), + [anon_sym_asm] = ACTIONS(4036), + [anon_sym___asm__] = ACTIONS(4036), + [anon_sym___asm] = ACTIONS(4036), + [sym_number_literal] = ACTIONS(4038), + [anon_sym_L_SQUOTE] = ACTIONS(4038), + [anon_sym_u_SQUOTE] = ACTIONS(4038), + [anon_sym_U_SQUOTE] = ACTIONS(4038), + [anon_sym_u8_SQUOTE] = ACTIONS(4038), + [anon_sym_SQUOTE] = ACTIONS(4038), + [anon_sym_L_DQUOTE] = ACTIONS(4038), + [anon_sym_u_DQUOTE] = ACTIONS(4038), + [anon_sym_U_DQUOTE] = ACTIONS(4038), + [anon_sym_u8_DQUOTE] = ACTIONS(4038), + [anon_sym_DQUOTE] = ACTIONS(4038), + [sym_true] = ACTIONS(4036), + [sym_false] = ACTIONS(4036), + [anon_sym_NULL] = ACTIONS(4036), + [anon_sym_nullptr] = ACTIONS(4036), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4036), + [anon_sym_decltype] = ACTIONS(4036), + [anon_sym_explicit] = ACTIONS(4036), + [anon_sym_export] = ACTIONS(4036), + [anon_sym_module] = ACTIONS(4036), + [anon_sym_import] = ACTIONS(4036), + [anon_sym_template] = ACTIONS(4036), + [anon_sym_operator] = ACTIONS(4036), + [anon_sym_try] = ACTIONS(4036), + [anon_sym_delete] = ACTIONS(4036), + [anon_sym_throw] = ACTIONS(4036), + [anon_sym_namespace] = ACTIONS(4036), + [anon_sym_static_assert] = ACTIONS(4036), + [anon_sym_concept] = ACTIONS(4036), + [anon_sym_co_return] = ACTIONS(4036), + [anon_sym_co_yield] = ACTIONS(4036), + [anon_sym_R_DQUOTE] = ACTIONS(4038), + [anon_sym_LR_DQUOTE] = ACTIONS(4038), + [anon_sym_uR_DQUOTE] = ACTIONS(4038), + [anon_sym_UR_DQUOTE] = ACTIONS(4038), + [anon_sym_u8R_DQUOTE] = ACTIONS(4038), + [anon_sym_co_await] = ACTIONS(4036), + [anon_sym_new] = ACTIONS(4036), + [anon_sym_requires] = ACTIONS(4036), + [anon_sym_CARET_CARET] = ACTIONS(4038), + [anon_sym_LBRACK_COLON] = ACTIONS(4038), + [sym_this] = ACTIONS(4036), }, - [STATE(450)] = { - [sym_identifier] = ACTIONS(4042), - [aux_sym_preproc_include_token1] = ACTIONS(4042), - [aux_sym_preproc_def_token1] = ACTIONS(4042), - [aux_sym_preproc_if_token1] = ACTIONS(4042), - [aux_sym_preproc_if_token2] = ACTIONS(4042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4042), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4042), - [aux_sym_preproc_else_token1] = ACTIONS(4042), - [aux_sym_preproc_elif_token1] = ACTIONS(4042), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4042), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4042), - [sym_preproc_directive] = ACTIONS(4042), - [anon_sym_LPAREN2] = ACTIONS(4044), - [anon_sym_BANG] = ACTIONS(4044), - [anon_sym_TILDE] = ACTIONS(4044), - [anon_sym_DASH] = ACTIONS(4042), - [anon_sym_PLUS] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_SEMI] = ACTIONS(4044), - [anon_sym___extension__] = ACTIONS(4042), - [anon_sym_typedef] = ACTIONS(4042), - [anon_sym_virtual] = ACTIONS(4042), - [anon_sym_extern] = ACTIONS(4042), - [anon_sym___attribute__] = ACTIONS(4042), - [anon_sym___attribute] = ACTIONS(4042), - [anon_sym_using] = ACTIONS(4042), - [anon_sym_COLON_COLON] = ACTIONS(4044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4044), - [anon_sym___declspec] = ACTIONS(4042), - [anon_sym___based] = ACTIONS(4042), - [anon_sym___cdecl] = ACTIONS(4042), - [anon_sym___clrcall] = ACTIONS(4042), - [anon_sym___stdcall] = ACTIONS(4042), - [anon_sym___fastcall] = ACTIONS(4042), - [anon_sym___thiscall] = ACTIONS(4042), - [anon_sym___vectorcall] = ACTIONS(4042), - [anon_sym_LBRACE] = ACTIONS(4044), - [anon_sym_signed] = ACTIONS(4042), - [anon_sym_unsigned] = ACTIONS(4042), - [anon_sym_long] = ACTIONS(4042), - [anon_sym_short] = ACTIONS(4042), - [anon_sym_LBRACK] = ACTIONS(4042), - [anon_sym_static] = ACTIONS(4042), - [anon_sym_register] = ACTIONS(4042), - [anon_sym_inline] = ACTIONS(4042), - [anon_sym___inline] = ACTIONS(4042), - [anon_sym___inline__] = ACTIONS(4042), - [anon_sym___forceinline] = ACTIONS(4042), - [anon_sym_thread_local] = ACTIONS(4042), - [anon_sym___thread] = ACTIONS(4042), - [anon_sym_const] = ACTIONS(4042), - [anon_sym_constexpr] = ACTIONS(4042), - [anon_sym_volatile] = ACTIONS(4042), - [anon_sym_restrict] = ACTIONS(4042), - [anon_sym___restrict__] = ACTIONS(4042), - [anon_sym__Atomic] = ACTIONS(4042), - [anon_sym__Noreturn] = ACTIONS(4042), - [anon_sym_noreturn] = ACTIONS(4042), - [anon_sym__Nonnull] = ACTIONS(4042), - [anon_sym_mutable] = ACTIONS(4042), - [anon_sym_constinit] = ACTIONS(4042), - [anon_sym_consteval] = ACTIONS(4042), - [anon_sym_alignas] = ACTIONS(4042), - [anon_sym__Alignas] = ACTIONS(4042), - [sym_primitive_type] = ACTIONS(4042), - [anon_sym_enum] = ACTIONS(4042), - [anon_sym_class] = ACTIONS(4042), - [anon_sym_struct] = ACTIONS(4042), - [anon_sym_union] = ACTIONS(4042), - [anon_sym_if] = ACTIONS(4042), - [anon_sym_switch] = ACTIONS(4042), - [anon_sym_case] = ACTIONS(4042), - [anon_sym_default] = ACTIONS(4042), - [anon_sym_while] = ACTIONS(4042), - [anon_sym_do] = ACTIONS(4042), - [anon_sym_for] = ACTIONS(4042), - [anon_sym_return] = ACTIONS(4042), - [anon_sym_break] = ACTIONS(4042), - [anon_sym_continue] = ACTIONS(4042), - [anon_sym_goto] = ACTIONS(4042), - [anon_sym___try] = ACTIONS(4042), - [anon_sym___leave] = ACTIONS(4042), - [anon_sym_not] = ACTIONS(4042), - [anon_sym_compl] = ACTIONS(4042), - [anon_sym_DASH_DASH] = ACTIONS(4044), - [anon_sym_PLUS_PLUS] = ACTIONS(4044), - [anon_sym_sizeof] = ACTIONS(4042), - [anon_sym___alignof__] = ACTIONS(4042), - [anon_sym___alignof] = ACTIONS(4042), - [anon_sym__alignof] = ACTIONS(4042), - [anon_sym_alignof] = ACTIONS(4042), - [anon_sym__Alignof] = ACTIONS(4042), - [anon_sym_offsetof] = ACTIONS(4042), - [anon_sym__Generic] = ACTIONS(4042), - [anon_sym_typename] = ACTIONS(4042), - [anon_sym_asm] = ACTIONS(4042), - [anon_sym___asm__] = ACTIONS(4042), - [anon_sym___asm] = ACTIONS(4042), - [sym_number_literal] = ACTIONS(4044), - [anon_sym_L_SQUOTE] = ACTIONS(4044), - [anon_sym_u_SQUOTE] = ACTIONS(4044), - [anon_sym_U_SQUOTE] = ACTIONS(4044), - [anon_sym_u8_SQUOTE] = ACTIONS(4044), - [anon_sym_SQUOTE] = ACTIONS(4044), - [anon_sym_L_DQUOTE] = ACTIONS(4044), - [anon_sym_u_DQUOTE] = ACTIONS(4044), - [anon_sym_U_DQUOTE] = ACTIONS(4044), - [anon_sym_u8_DQUOTE] = ACTIONS(4044), - [anon_sym_DQUOTE] = ACTIONS(4044), - [sym_true] = ACTIONS(4042), - [sym_false] = ACTIONS(4042), - [anon_sym_NULL] = ACTIONS(4042), - [anon_sym_nullptr] = ACTIONS(4042), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4042), - [anon_sym_decltype] = ACTIONS(4042), - [anon_sym_explicit] = ACTIONS(4042), - [anon_sym_template] = ACTIONS(4042), - [anon_sym_operator] = ACTIONS(4042), - [anon_sym_try] = ACTIONS(4042), - [anon_sym_delete] = ACTIONS(4042), - [anon_sym_throw] = ACTIONS(4042), - [anon_sym_namespace] = ACTIONS(4042), - [anon_sym_static_assert] = ACTIONS(4042), - [anon_sym_concept] = ACTIONS(4042), - [anon_sym_co_return] = ACTIONS(4042), - [anon_sym_co_yield] = ACTIONS(4042), - [anon_sym_R_DQUOTE] = ACTIONS(4044), - [anon_sym_LR_DQUOTE] = ACTIONS(4044), - [anon_sym_uR_DQUOTE] = ACTIONS(4044), - [anon_sym_UR_DQUOTE] = ACTIONS(4044), - [anon_sym_u8R_DQUOTE] = ACTIONS(4044), - [anon_sym_co_await] = ACTIONS(4042), - [anon_sym_new] = ACTIONS(4042), - [anon_sym_requires] = ACTIONS(4042), - [anon_sym_CARET_CARET] = ACTIONS(4044), - [anon_sym_LBRACK_COLON] = ACTIONS(4044), - [sym_this] = ACTIONS(4042), + [STATE(430)] = { + [sym_identifier] = ACTIONS(4040), + [aux_sym_preproc_include_token1] = ACTIONS(4040), + [aux_sym_preproc_def_token1] = ACTIONS(4040), + [aux_sym_preproc_if_token1] = ACTIONS(4040), + [aux_sym_preproc_if_token2] = ACTIONS(4040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4040), + [aux_sym_preproc_else_token1] = ACTIONS(4040), + [aux_sym_preproc_elif_token1] = ACTIONS(4040), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4040), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4040), + [sym_preproc_directive] = ACTIONS(4040), + [anon_sym_LPAREN2] = ACTIONS(4042), + [anon_sym_BANG] = ACTIONS(4042), + [anon_sym_TILDE] = ACTIONS(4042), + [anon_sym_DASH] = ACTIONS(4040), + [anon_sym_PLUS] = ACTIONS(4040), + [anon_sym_STAR] = ACTIONS(4042), + [anon_sym_AMP_AMP] = ACTIONS(4042), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_SEMI] = ACTIONS(4042), + [anon_sym___extension__] = ACTIONS(4040), + [anon_sym_typedef] = ACTIONS(4040), + [anon_sym_virtual] = ACTIONS(4040), + [anon_sym_extern] = ACTIONS(4040), + [anon_sym___attribute__] = ACTIONS(4040), + [anon_sym___attribute] = ACTIONS(4040), + [anon_sym_using] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(4042), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4042), + [anon_sym___declspec] = ACTIONS(4040), + [anon_sym___based] = ACTIONS(4040), + [anon_sym___cdecl] = ACTIONS(4040), + [anon_sym___clrcall] = ACTIONS(4040), + [anon_sym___stdcall] = ACTIONS(4040), + [anon_sym___fastcall] = ACTIONS(4040), + [anon_sym___thiscall] = ACTIONS(4040), + [anon_sym___vectorcall] = ACTIONS(4040), + [anon_sym_LBRACE] = ACTIONS(4042), + [anon_sym_signed] = ACTIONS(4040), + [anon_sym_unsigned] = ACTIONS(4040), + [anon_sym_long] = ACTIONS(4040), + [anon_sym_short] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4040), + [anon_sym_static] = ACTIONS(4040), + [anon_sym_register] = ACTIONS(4040), + [anon_sym_inline] = ACTIONS(4040), + [anon_sym___inline] = ACTIONS(4040), + [anon_sym___inline__] = ACTIONS(4040), + [anon_sym___forceinline] = ACTIONS(4040), + [anon_sym_thread_local] = ACTIONS(4040), + [anon_sym___thread] = ACTIONS(4040), + [anon_sym_const] = ACTIONS(4040), + [anon_sym_constexpr] = ACTIONS(4040), + [anon_sym_volatile] = ACTIONS(4040), + [anon_sym_restrict] = ACTIONS(4040), + [anon_sym___restrict__] = ACTIONS(4040), + [anon_sym__Atomic] = ACTIONS(4040), + [anon_sym__Noreturn] = ACTIONS(4040), + [anon_sym_noreturn] = ACTIONS(4040), + [anon_sym__Nonnull] = ACTIONS(4040), + [anon_sym_mutable] = ACTIONS(4040), + [anon_sym_constinit] = ACTIONS(4040), + [anon_sym_consteval] = ACTIONS(4040), + [anon_sym_alignas] = ACTIONS(4040), + [anon_sym__Alignas] = ACTIONS(4040), + [sym_primitive_type] = ACTIONS(4040), + [anon_sym_enum] = ACTIONS(4040), + [anon_sym_class] = ACTIONS(4040), + [anon_sym_struct] = ACTIONS(4040), + [anon_sym_union] = ACTIONS(4040), + [anon_sym_if] = ACTIONS(4040), + [anon_sym_switch] = ACTIONS(4040), + [anon_sym_case] = ACTIONS(4040), + [anon_sym_default] = ACTIONS(4040), + [anon_sym_while] = ACTIONS(4040), + [anon_sym_do] = ACTIONS(4040), + [anon_sym_for] = ACTIONS(4040), + [anon_sym_return] = ACTIONS(4040), + [anon_sym_break] = ACTIONS(4040), + [anon_sym_continue] = ACTIONS(4040), + [anon_sym_goto] = ACTIONS(4040), + [anon_sym___try] = ACTIONS(4040), + [anon_sym___leave] = ACTIONS(4040), + [anon_sym_not] = ACTIONS(4040), + [anon_sym_compl] = ACTIONS(4040), + [anon_sym_DASH_DASH] = ACTIONS(4042), + [anon_sym_PLUS_PLUS] = ACTIONS(4042), + [anon_sym_sizeof] = ACTIONS(4040), + [anon_sym___alignof__] = ACTIONS(4040), + [anon_sym___alignof] = ACTIONS(4040), + [anon_sym__alignof] = ACTIONS(4040), + [anon_sym_alignof] = ACTIONS(4040), + [anon_sym__Alignof] = ACTIONS(4040), + [anon_sym_offsetof] = ACTIONS(4040), + [anon_sym__Generic] = ACTIONS(4040), + [anon_sym_typename] = ACTIONS(4040), + [anon_sym_asm] = ACTIONS(4040), + [anon_sym___asm__] = ACTIONS(4040), + [anon_sym___asm] = ACTIONS(4040), + [sym_number_literal] = ACTIONS(4042), + [anon_sym_L_SQUOTE] = ACTIONS(4042), + [anon_sym_u_SQUOTE] = ACTIONS(4042), + [anon_sym_U_SQUOTE] = ACTIONS(4042), + [anon_sym_u8_SQUOTE] = ACTIONS(4042), + [anon_sym_SQUOTE] = ACTIONS(4042), + [anon_sym_L_DQUOTE] = ACTIONS(4042), + [anon_sym_u_DQUOTE] = ACTIONS(4042), + [anon_sym_U_DQUOTE] = ACTIONS(4042), + [anon_sym_u8_DQUOTE] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4042), + [sym_true] = ACTIONS(4040), + [sym_false] = ACTIONS(4040), + [anon_sym_NULL] = ACTIONS(4040), + [anon_sym_nullptr] = ACTIONS(4040), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4040), + [anon_sym_decltype] = ACTIONS(4040), + [anon_sym_explicit] = ACTIONS(4040), + [anon_sym_export] = ACTIONS(4040), + [anon_sym_module] = ACTIONS(4040), + [anon_sym_import] = ACTIONS(4040), + [anon_sym_template] = ACTIONS(4040), + [anon_sym_operator] = ACTIONS(4040), + [anon_sym_try] = ACTIONS(4040), + [anon_sym_delete] = ACTIONS(4040), + [anon_sym_throw] = ACTIONS(4040), + [anon_sym_namespace] = ACTIONS(4040), + [anon_sym_static_assert] = ACTIONS(4040), + [anon_sym_concept] = ACTIONS(4040), + [anon_sym_co_return] = ACTIONS(4040), + [anon_sym_co_yield] = ACTIONS(4040), + [anon_sym_R_DQUOTE] = ACTIONS(4042), + [anon_sym_LR_DQUOTE] = ACTIONS(4042), + [anon_sym_uR_DQUOTE] = ACTIONS(4042), + [anon_sym_UR_DQUOTE] = ACTIONS(4042), + [anon_sym_u8R_DQUOTE] = ACTIONS(4042), + [anon_sym_co_await] = ACTIONS(4040), + [anon_sym_new] = ACTIONS(4040), + [anon_sym_requires] = ACTIONS(4040), + [anon_sym_CARET_CARET] = ACTIONS(4042), + [anon_sym_LBRACK_COLON] = ACTIONS(4042), + [sym_this] = ACTIONS(4040), }, - [STATE(451)] = { - [sym_identifier] = ACTIONS(4046), - [aux_sym_preproc_include_token1] = ACTIONS(4046), - [aux_sym_preproc_def_token1] = ACTIONS(4046), - [aux_sym_preproc_if_token1] = ACTIONS(4046), - [aux_sym_preproc_if_token2] = ACTIONS(4046), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4046), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4046), - [aux_sym_preproc_else_token1] = ACTIONS(4046), - [aux_sym_preproc_elif_token1] = ACTIONS(4046), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4046), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4046), - [sym_preproc_directive] = ACTIONS(4046), - [anon_sym_LPAREN2] = ACTIONS(4048), - [anon_sym_BANG] = ACTIONS(4048), - [anon_sym_TILDE] = ACTIONS(4048), - [anon_sym_DASH] = ACTIONS(4046), - [anon_sym_PLUS] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(4048), - [anon_sym_AMP_AMP] = ACTIONS(4048), - [anon_sym_AMP] = ACTIONS(4046), - [anon_sym_SEMI] = ACTIONS(4048), - [anon_sym___extension__] = ACTIONS(4046), - [anon_sym_typedef] = ACTIONS(4046), - [anon_sym_virtual] = ACTIONS(4046), - [anon_sym_extern] = ACTIONS(4046), - [anon_sym___attribute__] = ACTIONS(4046), - [anon_sym___attribute] = ACTIONS(4046), - [anon_sym_using] = ACTIONS(4046), - [anon_sym_COLON_COLON] = ACTIONS(4048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4048), - [anon_sym___declspec] = ACTIONS(4046), - [anon_sym___based] = ACTIONS(4046), - [anon_sym___cdecl] = ACTIONS(4046), - [anon_sym___clrcall] = ACTIONS(4046), - [anon_sym___stdcall] = ACTIONS(4046), - [anon_sym___fastcall] = ACTIONS(4046), - [anon_sym___thiscall] = ACTIONS(4046), - [anon_sym___vectorcall] = ACTIONS(4046), - [anon_sym_LBRACE] = ACTIONS(4048), - [anon_sym_signed] = ACTIONS(4046), - [anon_sym_unsigned] = ACTIONS(4046), - [anon_sym_long] = ACTIONS(4046), - [anon_sym_short] = ACTIONS(4046), - [anon_sym_LBRACK] = ACTIONS(4046), - [anon_sym_static] = ACTIONS(4046), - [anon_sym_register] = ACTIONS(4046), - [anon_sym_inline] = ACTIONS(4046), - [anon_sym___inline] = ACTIONS(4046), - [anon_sym___inline__] = ACTIONS(4046), - [anon_sym___forceinline] = ACTIONS(4046), - [anon_sym_thread_local] = ACTIONS(4046), - [anon_sym___thread] = ACTIONS(4046), - [anon_sym_const] = ACTIONS(4046), - [anon_sym_constexpr] = ACTIONS(4046), - [anon_sym_volatile] = ACTIONS(4046), - [anon_sym_restrict] = ACTIONS(4046), - [anon_sym___restrict__] = ACTIONS(4046), - [anon_sym__Atomic] = ACTIONS(4046), - [anon_sym__Noreturn] = ACTIONS(4046), - [anon_sym_noreturn] = ACTIONS(4046), - [anon_sym__Nonnull] = ACTIONS(4046), - [anon_sym_mutable] = ACTIONS(4046), - [anon_sym_constinit] = ACTIONS(4046), - [anon_sym_consteval] = ACTIONS(4046), - [anon_sym_alignas] = ACTIONS(4046), - [anon_sym__Alignas] = ACTIONS(4046), - [sym_primitive_type] = ACTIONS(4046), - [anon_sym_enum] = ACTIONS(4046), - [anon_sym_class] = ACTIONS(4046), - [anon_sym_struct] = ACTIONS(4046), - [anon_sym_union] = ACTIONS(4046), - [anon_sym_if] = ACTIONS(4046), - [anon_sym_switch] = ACTIONS(4046), - [anon_sym_case] = ACTIONS(4046), - [anon_sym_default] = ACTIONS(4046), - [anon_sym_while] = ACTIONS(4046), - [anon_sym_do] = ACTIONS(4046), - [anon_sym_for] = ACTIONS(4046), - [anon_sym_return] = ACTIONS(4046), - [anon_sym_break] = ACTIONS(4046), - [anon_sym_continue] = ACTIONS(4046), - [anon_sym_goto] = ACTIONS(4046), - [anon_sym___try] = ACTIONS(4046), - [anon_sym___leave] = ACTIONS(4046), - [anon_sym_not] = ACTIONS(4046), - [anon_sym_compl] = ACTIONS(4046), - [anon_sym_DASH_DASH] = ACTIONS(4048), - [anon_sym_PLUS_PLUS] = ACTIONS(4048), - [anon_sym_sizeof] = ACTIONS(4046), - [anon_sym___alignof__] = ACTIONS(4046), - [anon_sym___alignof] = ACTIONS(4046), - [anon_sym__alignof] = ACTIONS(4046), - [anon_sym_alignof] = ACTIONS(4046), - [anon_sym__Alignof] = ACTIONS(4046), - [anon_sym_offsetof] = ACTIONS(4046), - [anon_sym__Generic] = ACTIONS(4046), - [anon_sym_typename] = ACTIONS(4046), - [anon_sym_asm] = ACTIONS(4046), - [anon_sym___asm__] = ACTIONS(4046), - [anon_sym___asm] = ACTIONS(4046), - [sym_number_literal] = ACTIONS(4048), - [anon_sym_L_SQUOTE] = ACTIONS(4048), - [anon_sym_u_SQUOTE] = ACTIONS(4048), - [anon_sym_U_SQUOTE] = ACTIONS(4048), - [anon_sym_u8_SQUOTE] = ACTIONS(4048), - [anon_sym_SQUOTE] = ACTIONS(4048), - [anon_sym_L_DQUOTE] = ACTIONS(4048), - [anon_sym_u_DQUOTE] = ACTIONS(4048), - [anon_sym_U_DQUOTE] = ACTIONS(4048), - [anon_sym_u8_DQUOTE] = ACTIONS(4048), - [anon_sym_DQUOTE] = ACTIONS(4048), - [sym_true] = ACTIONS(4046), - [sym_false] = ACTIONS(4046), - [anon_sym_NULL] = ACTIONS(4046), - [anon_sym_nullptr] = ACTIONS(4046), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4046), - [anon_sym_decltype] = ACTIONS(4046), - [anon_sym_explicit] = ACTIONS(4046), - [anon_sym_template] = ACTIONS(4046), - [anon_sym_operator] = ACTIONS(4046), - [anon_sym_try] = ACTIONS(4046), - [anon_sym_delete] = ACTIONS(4046), - [anon_sym_throw] = ACTIONS(4046), - [anon_sym_namespace] = ACTIONS(4046), - [anon_sym_static_assert] = ACTIONS(4046), - [anon_sym_concept] = ACTIONS(4046), - [anon_sym_co_return] = ACTIONS(4046), - [anon_sym_co_yield] = ACTIONS(4046), - [anon_sym_R_DQUOTE] = ACTIONS(4048), - [anon_sym_LR_DQUOTE] = ACTIONS(4048), - [anon_sym_uR_DQUOTE] = ACTIONS(4048), - [anon_sym_UR_DQUOTE] = ACTIONS(4048), - [anon_sym_u8R_DQUOTE] = ACTIONS(4048), - [anon_sym_co_await] = ACTIONS(4046), - [anon_sym_new] = ACTIONS(4046), - [anon_sym_requires] = ACTIONS(4046), - [anon_sym_CARET_CARET] = ACTIONS(4048), - [anon_sym_LBRACK_COLON] = ACTIONS(4048), - [sym_this] = ACTIONS(4046), + [STATE(431)] = { + [sym_identifier] = ACTIONS(4044), + [aux_sym_preproc_include_token1] = ACTIONS(4044), + [aux_sym_preproc_def_token1] = ACTIONS(4044), + [aux_sym_preproc_if_token1] = ACTIONS(4044), + [aux_sym_preproc_if_token2] = ACTIONS(4044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4044), + [aux_sym_preproc_else_token1] = ACTIONS(4044), + [aux_sym_preproc_elif_token1] = ACTIONS(4044), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4044), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4044), + [sym_preproc_directive] = ACTIONS(4044), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(4046), + [anon_sym_TILDE] = ACTIONS(4046), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym___extension__] = ACTIONS(4044), + [anon_sym_typedef] = ACTIONS(4044), + [anon_sym_virtual] = ACTIONS(4044), + [anon_sym_extern] = ACTIONS(4044), + [anon_sym___attribute__] = ACTIONS(4044), + [anon_sym___attribute] = ACTIONS(4044), + [anon_sym_using] = ACTIONS(4044), + [anon_sym_COLON_COLON] = ACTIONS(4046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4046), + [anon_sym___declspec] = ACTIONS(4044), + [anon_sym___based] = ACTIONS(4044), + [anon_sym___cdecl] = ACTIONS(4044), + [anon_sym___clrcall] = ACTIONS(4044), + [anon_sym___stdcall] = ACTIONS(4044), + [anon_sym___fastcall] = ACTIONS(4044), + [anon_sym___thiscall] = ACTIONS(4044), + [anon_sym___vectorcall] = ACTIONS(4044), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_signed] = ACTIONS(4044), + [anon_sym_unsigned] = ACTIONS(4044), + [anon_sym_long] = ACTIONS(4044), + [anon_sym_short] = ACTIONS(4044), + [anon_sym_LBRACK] = ACTIONS(4044), + [anon_sym_static] = ACTIONS(4044), + [anon_sym_register] = ACTIONS(4044), + [anon_sym_inline] = ACTIONS(4044), + [anon_sym___inline] = ACTIONS(4044), + [anon_sym___inline__] = ACTIONS(4044), + [anon_sym___forceinline] = ACTIONS(4044), + [anon_sym_thread_local] = ACTIONS(4044), + [anon_sym___thread] = ACTIONS(4044), + [anon_sym_const] = ACTIONS(4044), + [anon_sym_constexpr] = ACTIONS(4044), + [anon_sym_volatile] = ACTIONS(4044), + [anon_sym_restrict] = ACTIONS(4044), + [anon_sym___restrict__] = ACTIONS(4044), + [anon_sym__Atomic] = ACTIONS(4044), + [anon_sym__Noreturn] = ACTIONS(4044), + [anon_sym_noreturn] = ACTIONS(4044), + [anon_sym__Nonnull] = ACTIONS(4044), + [anon_sym_mutable] = ACTIONS(4044), + [anon_sym_constinit] = ACTIONS(4044), + [anon_sym_consteval] = ACTIONS(4044), + [anon_sym_alignas] = ACTIONS(4044), + [anon_sym__Alignas] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(4044), + [anon_sym_enum] = ACTIONS(4044), + [anon_sym_class] = ACTIONS(4044), + [anon_sym_struct] = ACTIONS(4044), + [anon_sym_union] = ACTIONS(4044), + [anon_sym_if] = ACTIONS(4044), + [anon_sym_switch] = ACTIONS(4044), + [anon_sym_case] = ACTIONS(4044), + [anon_sym_default] = ACTIONS(4044), + [anon_sym_while] = ACTIONS(4044), + [anon_sym_do] = ACTIONS(4044), + [anon_sym_for] = ACTIONS(4044), + [anon_sym_return] = ACTIONS(4044), + [anon_sym_break] = ACTIONS(4044), + [anon_sym_continue] = ACTIONS(4044), + [anon_sym_goto] = ACTIONS(4044), + [anon_sym___try] = ACTIONS(4044), + [anon_sym___leave] = ACTIONS(4044), + [anon_sym_not] = ACTIONS(4044), + [anon_sym_compl] = ACTIONS(4044), + [anon_sym_DASH_DASH] = ACTIONS(4046), + [anon_sym_PLUS_PLUS] = ACTIONS(4046), + [anon_sym_sizeof] = ACTIONS(4044), + [anon_sym___alignof__] = ACTIONS(4044), + [anon_sym___alignof] = ACTIONS(4044), + [anon_sym__alignof] = ACTIONS(4044), + [anon_sym_alignof] = ACTIONS(4044), + [anon_sym__Alignof] = ACTIONS(4044), + [anon_sym_offsetof] = ACTIONS(4044), + [anon_sym__Generic] = ACTIONS(4044), + [anon_sym_typename] = ACTIONS(4044), + [anon_sym_asm] = ACTIONS(4044), + [anon_sym___asm__] = ACTIONS(4044), + [anon_sym___asm] = ACTIONS(4044), + [sym_number_literal] = ACTIONS(4046), + [anon_sym_L_SQUOTE] = ACTIONS(4046), + [anon_sym_u_SQUOTE] = ACTIONS(4046), + [anon_sym_U_SQUOTE] = ACTIONS(4046), + [anon_sym_u8_SQUOTE] = ACTIONS(4046), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_L_DQUOTE] = ACTIONS(4046), + [anon_sym_u_DQUOTE] = ACTIONS(4046), + [anon_sym_U_DQUOTE] = ACTIONS(4046), + [anon_sym_u8_DQUOTE] = ACTIONS(4046), + [anon_sym_DQUOTE] = ACTIONS(4046), + [sym_true] = ACTIONS(4044), + [sym_false] = ACTIONS(4044), + [anon_sym_NULL] = ACTIONS(4044), + [anon_sym_nullptr] = ACTIONS(4044), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4044), + [anon_sym_decltype] = ACTIONS(4044), + [anon_sym_explicit] = ACTIONS(4044), + [anon_sym_export] = ACTIONS(4044), + [anon_sym_module] = ACTIONS(4044), + [anon_sym_import] = ACTIONS(4044), + [anon_sym_template] = ACTIONS(4044), + [anon_sym_operator] = ACTIONS(4044), + [anon_sym_try] = ACTIONS(4044), + [anon_sym_delete] = ACTIONS(4044), + [anon_sym_throw] = ACTIONS(4044), + [anon_sym_namespace] = ACTIONS(4044), + [anon_sym_static_assert] = ACTIONS(4044), + [anon_sym_concept] = ACTIONS(4044), + [anon_sym_co_return] = ACTIONS(4044), + [anon_sym_co_yield] = ACTIONS(4044), + [anon_sym_R_DQUOTE] = ACTIONS(4046), + [anon_sym_LR_DQUOTE] = ACTIONS(4046), + [anon_sym_uR_DQUOTE] = ACTIONS(4046), + [anon_sym_UR_DQUOTE] = ACTIONS(4046), + [anon_sym_u8R_DQUOTE] = ACTIONS(4046), + [anon_sym_co_await] = ACTIONS(4044), + [anon_sym_new] = ACTIONS(4044), + [anon_sym_requires] = ACTIONS(4044), + [anon_sym_CARET_CARET] = ACTIONS(4046), + [anon_sym_LBRACK_COLON] = ACTIONS(4046), + [sym_this] = ACTIONS(4044), }, - [STATE(452)] = { - [sym_identifier] = ACTIONS(4050), - [aux_sym_preproc_include_token1] = ACTIONS(4050), - [aux_sym_preproc_def_token1] = ACTIONS(4050), - [aux_sym_preproc_if_token1] = ACTIONS(4050), - [aux_sym_preproc_if_token2] = ACTIONS(4050), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4050), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4050), - [aux_sym_preproc_else_token1] = ACTIONS(4050), - [aux_sym_preproc_elif_token1] = ACTIONS(4050), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4050), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4050), - [sym_preproc_directive] = ACTIONS(4050), - [anon_sym_LPAREN2] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(4052), - [anon_sym_TILDE] = ACTIONS(4052), - [anon_sym_DASH] = ACTIONS(4050), - [anon_sym_PLUS] = ACTIONS(4050), - [anon_sym_STAR] = ACTIONS(4052), - [anon_sym_AMP_AMP] = ACTIONS(4052), - [anon_sym_AMP] = ACTIONS(4050), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym___extension__] = ACTIONS(4050), - [anon_sym_typedef] = ACTIONS(4050), - [anon_sym_virtual] = ACTIONS(4050), - [anon_sym_extern] = ACTIONS(4050), - [anon_sym___attribute__] = ACTIONS(4050), - [anon_sym___attribute] = ACTIONS(4050), - [anon_sym_using] = ACTIONS(4050), - [anon_sym_COLON_COLON] = ACTIONS(4052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4052), - [anon_sym___declspec] = ACTIONS(4050), - [anon_sym___based] = ACTIONS(4050), - [anon_sym___cdecl] = ACTIONS(4050), - [anon_sym___clrcall] = ACTIONS(4050), - [anon_sym___stdcall] = ACTIONS(4050), - [anon_sym___fastcall] = ACTIONS(4050), - [anon_sym___thiscall] = ACTIONS(4050), - [anon_sym___vectorcall] = ACTIONS(4050), - [anon_sym_LBRACE] = ACTIONS(4052), - [anon_sym_signed] = ACTIONS(4050), - [anon_sym_unsigned] = ACTIONS(4050), - [anon_sym_long] = ACTIONS(4050), - [anon_sym_short] = ACTIONS(4050), - [anon_sym_LBRACK] = ACTIONS(4050), - [anon_sym_static] = ACTIONS(4050), - [anon_sym_register] = ACTIONS(4050), - [anon_sym_inline] = ACTIONS(4050), - [anon_sym___inline] = ACTIONS(4050), - [anon_sym___inline__] = ACTIONS(4050), - [anon_sym___forceinline] = ACTIONS(4050), - [anon_sym_thread_local] = ACTIONS(4050), - [anon_sym___thread] = ACTIONS(4050), - [anon_sym_const] = ACTIONS(4050), - [anon_sym_constexpr] = ACTIONS(4050), - [anon_sym_volatile] = ACTIONS(4050), - [anon_sym_restrict] = ACTIONS(4050), - [anon_sym___restrict__] = ACTIONS(4050), - [anon_sym__Atomic] = ACTIONS(4050), - [anon_sym__Noreturn] = ACTIONS(4050), - [anon_sym_noreturn] = ACTIONS(4050), - [anon_sym__Nonnull] = ACTIONS(4050), - [anon_sym_mutable] = ACTIONS(4050), - [anon_sym_constinit] = ACTIONS(4050), - [anon_sym_consteval] = ACTIONS(4050), - [anon_sym_alignas] = ACTIONS(4050), - [anon_sym__Alignas] = ACTIONS(4050), - [sym_primitive_type] = ACTIONS(4050), - [anon_sym_enum] = ACTIONS(4050), - [anon_sym_class] = ACTIONS(4050), - [anon_sym_struct] = ACTIONS(4050), - [anon_sym_union] = ACTIONS(4050), - [anon_sym_if] = ACTIONS(4050), - [anon_sym_switch] = ACTIONS(4050), - [anon_sym_case] = ACTIONS(4050), - [anon_sym_default] = ACTIONS(4050), - [anon_sym_while] = ACTIONS(4050), - [anon_sym_do] = ACTIONS(4050), - [anon_sym_for] = ACTIONS(4050), - [anon_sym_return] = ACTIONS(4050), - [anon_sym_break] = ACTIONS(4050), - [anon_sym_continue] = ACTIONS(4050), - [anon_sym_goto] = ACTIONS(4050), - [anon_sym___try] = ACTIONS(4050), - [anon_sym___leave] = ACTIONS(4050), - [anon_sym_not] = ACTIONS(4050), - [anon_sym_compl] = ACTIONS(4050), - [anon_sym_DASH_DASH] = ACTIONS(4052), - [anon_sym_PLUS_PLUS] = ACTIONS(4052), - [anon_sym_sizeof] = ACTIONS(4050), - [anon_sym___alignof__] = ACTIONS(4050), - [anon_sym___alignof] = ACTIONS(4050), - [anon_sym__alignof] = ACTIONS(4050), - [anon_sym_alignof] = ACTIONS(4050), - [anon_sym__Alignof] = ACTIONS(4050), - [anon_sym_offsetof] = ACTIONS(4050), - [anon_sym__Generic] = ACTIONS(4050), - [anon_sym_typename] = ACTIONS(4050), - [anon_sym_asm] = ACTIONS(4050), - [anon_sym___asm__] = ACTIONS(4050), - [anon_sym___asm] = ACTIONS(4050), - [sym_number_literal] = ACTIONS(4052), - [anon_sym_L_SQUOTE] = ACTIONS(4052), - [anon_sym_u_SQUOTE] = ACTIONS(4052), - [anon_sym_U_SQUOTE] = ACTIONS(4052), - [anon_sym_u8_SQUOTE] = ACTIONS(4052), - [anon_sym_SQUOTE] = ACTIONS(4052), - [anon_sym_L_DQUOTE] = ACTIONS(4052), - [anon_sym_u_DQUOTE] = ACTIONS(4052), - [anon_sym_U_DQUOTE] = ACTIONS(4052), - [anon_sym_u8_DQUOTE] = ACTIONS(4052), - [anon_sym_DQUOTE] = ACTIONS(4052), - [sym_true] = ACTIONS(4050), - [sym_false] = ACTIONS(4050), - [anon_sym_NULL] = ACTIONS(4050), - [anon_sym_nullptr] = ACTIONS(4050), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4050), - [anon_sym_decltype] = ACTIONS(4050), - [anon_sym_explicit] = ACTIONS(4050), - [anon_sym_template] = ACTIONS(4050), - [anon_sym_operator] = ACTIONS(4050), - [anon_sym_try] = ACTIONS(4050), - [anon_sym_delete] = ACTIONS(4050), - [anon_sym_throw] = ACTIONS(4050), - [anon_sym_namespace] = ACTIONS(4050), - [anon_sym_static_assert] = ACTIONS(4050), - [anon_sym_concept] = ACTIONS(4050), - [anon_sym_co_return] = ACTIONS(4050), - [anon_sym_co_yield] = ACTIONS(4050), - [anon_sym_R_DQUOTE] = ACTIONS(4052), - [anon_sym_LR_DQUOTE] = ACTIONS(4052), - [anon_sym_uR_DQUOTE] = ACTIONS(4052), - [anon_sym_UR_DQUOTE] = ACTIONS(4052), - [anon_sym_u8R_DQUOTE] = ACTIONS(4052), - [anon_sym_co_await] = ACTIONS(4050), - [anon_sym_new] = ACTIONS(4050), - [anon_sym_requires] = ACTIONS(4050), - [anon_sym_CARET_CARET] = ACTIONS(4052), - [anon_sym_LBRACK_COLON] = ACTIONS(4052), - [sym_this] = ACTIONS(4050), + [STATE(432)] = { + [sym_identifier] = ACTIONS(4048), + [aux_sym_preproc_include_token1] = ACTIONS(4048), + [aux_sym_preproc_def_token1] = ACTIONS(4048), + [aux_sym_preproc_if_token1] = ACTIONS(4048), + [aux_sym_preproc_if_token2] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4048), + [aux_sym_preproc_else_token1] = ACTIONS(4048), + [aux_sym_preproc_elif_token1] = ACTIONS(4048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4048), + [sym_preproc_directive] = ACTIONS(4048), + [anon_sym_LPAREN2] = ACTIONS(4050), + [anon_sym_BANG] = ACTIONS(4050), + [anon_sym_TILDE] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4048), + [anon_sym_PLUS] = ACTIONS(4048), + [anon_sym_STAR] = ACTIONS(4050), + [anon_sym_AMP_AMP] = ACTIONS(4050), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_SEMI] = ACTIONS(4050), + [anon_sym___extension__] = ACTIONS(4048), + [anon_sym_typedef] = ACTIONS(4048), + [anon_sym_virtual] = ACTIONS(4048), + [anon_sym_extern] = ACTIONS(4048), + [anon_sym___attribute__] = ACTIONS(4048), + [anon_sym___attribute] = ACTIONS(4048), + [anon_sym_using] = ACTIONS(4048), + [anon_sym_COLON_COLON] = ACTIONS(4050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4050), + [anon_sym___declspec] = ACTIONS(4048), + [anon_sym___based] = ACTIONS(4048), + [anon_sym___cdecl] = ACTIONS(4048), + [anon_sym___clrcall] = ACTIONS(4048), + [anon_sym___stdcall] = ACTIONS(4048), + [anon_sym___fastcall] = ACTIONS(4048), + [anon_sym___thiscall] = ACTIONS(4048), + [anon_sym___vectorcall] = ACTIONS(4048), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_signed] = ACTIONS(4048), + [anon_sym_unsigned] = ACTIONS(4048), + [anon_sym_long] = ACTIONS(4048), + [anon_sym_short] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_static] = ACTIONS(4048), + [anon_sym_register] = ACTIONS(4048), + [anon_sym_inline] = ACTIONS(4048), + [anon_sym___inline] = ACTIONS(4048), + [anon_sym___inline__] = ACTIONS(4048), + [anon_sym___forceinline] = ACTIONS(4048), + [anon_sym_thread_local] = ACTIONS(4048), + [anon_sym___thread] = ACTIONS(4048), + [anon_sym_const] = ACTIONS(4048), + [anon_sym_constexpr] = ACTIONS(4048), + [anon_sym_volatile] = ACTIONS(4048), + [anon_sym_restrict] = ACTIONS(4048), + [anon_sym___restrict__] = ACTIONS(4048), + [anon_sym__Atomic] = ACTIONS(4048), + [anon_sym__Noreturn] = ACTIONS(4048), + [anon_sym_noreturn] = ACTIONS(4048), + [anon_sym__Nonnull] = ACTIONS(4048), + [anon_sym_mutable] = ACTIONS(4048), + [anon_sym_constinit] = ACTIONS(4048), + [anon_sym_consteval] = ACTIONS(4048), + [anon_sym_alignas] = ACTIONS(4048), + [anon_sym__Alignas] = ACTIONS(4048), + [sym_primitive_type] = ACTIONS(4048), + [anon_sym_enum] = ACTIONS(4048), + [anon_sym_class] = ACTIONS(4048), + [anon_sym_struct] = ACTIONS(4048), + [anon_sym_union] = ACTIONS(4048), + [anon_sym_if] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(4048), + [anon_sym_case] = ACTIONS(4048), + [anon_sym_default] = ACTIONS(4048), + [anon_sym_while] = ACTIONS(4048), + [anon_sym_do] = ACTIONS(4048), + [anon_sym_for] = ACTIONS(4048), + [anon_sym_return] = ACTIONS(4048), + [anon_sym_break] = ACTIONS(4048), + [anon_sym_continue] = ACTIONS(4048), + [anon_sym_goto] = ACTIONS(4048), + [anon_sym___try] = ACTIONS(4048), + [anon_sym___leave] = ACTIONS(4048), + [anon_sym_not] = ACTIONS(4048), + [anon_sym_compl] = ACTIONS(4048), + [anon_sym_DASH_DASH] = ACTIONS(4050), + [anon_sym_PLUS_PLUS] = ACTIONS(4050), + [anon_sym_sizeof] = ACTIONS(4048), + [anon_sym___alignof__] = ACTIONS(4048), + [anon_sym___alignof] = ACTIONS(4048), + [anon_sym__alignof] = ACTIONS(4048), + [anon_sym_alignof] = ACTIONS(4048), + [anon_sym__Alignof] = ACTIONS(4048), + [anon_sym_offsetof] = ACTIONS(4048), + [anon_sym__Generic] = ACTIONS(4048), + [anon_sym_typename] = ACTIONS(4048), + [anon_sym_asm] = ACTIONS(4048), + [anon_sym___asm__] = ACTIONS(4048), + [anon_sym___asm] = ACTIONS(4048), + [sym_number_literal] = ACTIONS(4050), + [anon_sym_L_SQUOTE] = ACTIONS(4050), + [anon_sym_u_SQUOTE] = ACTIONS(4050), + [anon_sym_U_SQUOTE] = ACTIONS(4050), + [anon_sym_u8_SQUOTE] = ACTIONS(4050), + [anon_sym_SQUOTE] = ACTIONS(4050), + [anon_sym_L_DQUOTE] = ACTIONS(4050), + [anon_sym_u_DQUOTE] = ACTIONS(4050), + [anon_sym_U_DQUOTE] = ACTIONS(4050), + [anon_sym_u8_DQUOTE] = ACTIONS(4050), + [anon_sym_DQUOTE] = ACTIONS(4050), + [sym_true] = ACTIONS(4048), + [sym_false] = ACTIONS(4048), + [anon_sym_NULL] = ACTIONS(4048), + [anon_sym_nullptr] = ACTIONS(4048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4048), + [anon_sym_decltype] = ACTIONS(4048), + [anon_sym_explicit] = ACTIONS(4048), + [anon_sym_export] = ACTIONS(4048), + [anon_sym_module] = ACTIONS(4048), + [anon_sym_import] = ACTIONS(4048), + [anon_sym_template] = ACTIONS(4048), + [anon_sym_operator] = ACTIONS(4048), + [anon_sym_try] = ACTIONS(4048), + [anon_sym_delete] = ACTIONS(4048), + [anon_sym_throw] = ACTIONS(4048), + [anon_sym_namespace] = ACTIONS(4048), + [anon_sym_static_assert] = ACTIONS(4048), + [anon_sym_concept] = ACTIONS(4048), + [anon_sym_co_return] = ACTIONS(4048), + [anon_sym_co_yield] = ACTIONS(4048), + [anon_sym_R_DQUOTE] = ACTIONS(4050), + [anon_sym_LR_DQUOTE] = ACTIONS(4050), + [anon_sym_uR_DQUOTE] = ACTIONS(4050), + [anon_sym_UR_DQUOTE] = ACTIONS(4050), + [anon_sym_u8R_DQUOTE] = ACTIONS(4050), + [anon_sym_co_await] = ACTIONS(4048), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_requires] = ACTIONS(4048), + [anon_sym_CARET_CARET] = ACTIONS(4050), + [anon_sym_LBRACK_COLON] = ACTIONS(4050), + [sym_this] = ACTIONS(4048), }, - [STATE(453)] = { - [sym_identifier] = ACTIONS(4054), - [aux_sym_preproc_include_token1] = ACTIONS(4054), - [aux_sym_preproc_def_token1] = ACTIONS(4054), - [aux_sym_preproc_if_token1] = ACTIONS(4054), - [aux_sym_preproc_if_token2] = ACTIONS(4054), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4054), - [aux_sym_preproc_else_token1] = ACTIONS(4054), - [aux_sym_preproc_elif_token1] = ACTIONS(4054), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4054), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4054), - [sym_preproc_directive] = ACTIONS(4054), - [anon_sym_LPAREN2] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_TILDE] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4054), - [anon_sym_PLUS] = ACTIONS(4054), - [anon_sym_STAR] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4054), - [anon_sym_SEMI] = ACTIONS(4056), + [STATE(433)] = { + [sym_type_qualifier] = STATE(5133), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(2603), + [sym_sized_type_specifier] = STATE(3528), + [sym_enum_specifier] = STATE(3528), + [sym_struct_specifier] = STATE(3528), + [sym_union_specifier] = STATE(3528), + [sym_expression] = STATE(5832), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_type_descriptor] = STATE(6113), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_placeholder_type_specifier] = STATE(3528), + [sym_decltype_auto] = STATE(3527), + [sym_decltype] = STATE(3447), + [sym_class_specifier] = STATE(3528), + [sym__class_name] = STATE(10386), + [sym_dependent_type] = STATE(3528), + [sym_template_type] = STATE(3448), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7949), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(3529), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(3606), + [sym__splice_specialization_specifier] = STATE(2921), + [sym_splice_type_specifier] = STATE(3539), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [aux_sym__type_definition_type_repeat1] = STATE(5133), + [aux_sym_sized_type_specifier_repeat1] = STATE(2356), + [sym_identifier] = ACTIONS(4052), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), [anon_sym___extension__] = ACTIONS(4054), - [anon_sym_typedef] = ACTIONS(4054), - [anon_sym_virtual] = ACTIONS(4054), - [anon_sym_extern] = ACTIONS(4054), - [anon_sym___attribute__] = ACTIONS(4054), - [anon_sym___attribute] = ACTIONS(4054), - [anon_sym_using] = ACTIONS(4054), [anon_sym_COLON_COLON] = ACTIONS(4056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4056), - [anon_sym___declspec] = ACTIONS(4054), - [anon_sym___based] = ACTIONS(4054), - [anon_sym___cdecl] = ACTIONS(4054), - [anon_sym___clrcall] = ACTIONS(4054), - [anon_sym___stdcall] = ACTIONS(4054), - [anon_sym___fastcall] = ACTIONS(4054), - [anon_sym___thiscall] = ACTIONS(4054), - [anon_sym___vectorcall] = ACTIONS(4054), - [anon_sym_LBRACE] = ACTIONS(4056), - [anon_sym_signed] = ACTIONS(4054), - [anon_sym_unsigned] = ACTIONS(4054), - [anon_sym_long] = ACTIONS(4054), - [anon_sym_short] = ACTIONS(4054), - [anon_sym_LBRACK] = ACTIONS(4054), - [anon_sym_static] = ACTIONS(4054), - [anon_sym_register] = ACTIONS(4054), - [anon_sym_inline] = ACTIONS(4054), - [anon_sym___inline] = ACTIONS(4054), - [anon_sym___inline__] = ACTIONS(4054), - [anon_sym___forceinline] = ACTIONS(4054), - [anon_sym_thread_local] = ACTIONS(4054), - [anon_sym___thread] = ACTIONS(4054), - [anon_sym_const] = ACTIONS(4054), - [anon_sym_constexpr] = ACTIONS(4054), - [anon_sym_volatile] = ACTIONS(4054), - [anon_sym_restrict] = ACTIONS(4054), - [anon_sym___restrict__] = ACTIONS(4054), - [anon_sym__Atomic] = ACTIONS(4054), - [anon_sym__Noreturn] = ACTIONS(4054), - [anon_sym_noreturn] = ACTIONS(4054), - [anon_sym__Nonnull] = ACTIONS(4054), - [anon_sym_mutable] = ACTIONS(4054), - [anon_sym_constinit] = ACTIONS(4054), - [anon_sym_consteval] = ACTIONS(4054), - [anon_sym_alignas] = ACTIONS(4054), - [anon_sym__Alignas] = ACTIONS(4054), - [sym_primitive_type] = ACTIONS(4054), - [anon_sym_enum] = ACTIONS(4054), - [anon_sym_class] = ACTIONS(4054), - [anon_sym_struct] = ACTIONS(4054), - [anon_sym_union] = ACTIONS(4054), - [anon_sym_if] = ACTIONS(4054), - [anon_sym_switch] = ACTIONS(4054), - [anon_sym_case] = ACTIONS(4054), - [anon_sym_default] = ACTIONS(4054), - [anon_sym_while] = ACTIONS(4054), - [anon_sym_do] = ACTIONS(4054), - [anon_sym_for] = ACTIONS(4054), - [anon_sym_return] = ACTIONS(4054), - [anon_sym_break] = ACTIONS(4054), - [anon_sym_continue] = ACTIONS(4054), - [anon_sym_goto] = ACTIONS(4054), - [anon_sym___try] = ACTIONS(4054), - [anon_sym___leave] = ACTIONS(4054), - [anon_sym_not] = ACTIONS(4054), - [anon_sym_compl] = ACTIONS(4054), - [anon_sym_DASH_DASH] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4056), - [anon_sym_sizeof] = ACTIONS(4054), - [anon_sym___alignof__] = ACTIONS(4054), - [anon_sym___alignof] = ACTIONS(4054), - [anon_sym__alignof] = ACTIONS(4054), - [anon_sym_alignof] = ACTIONS(4054), - [anon_sym__Alignof] = ACTIONS(4054), - [anon_sym_offsetof] = ACTIONS(4054), - [anon_sym__Generic] = ACTIONS(4054), - [anon_sym_typename] = ACTIONS(4054), - [anon_sym_asm] = ACTIONS(4054), - [anon_sym___asm__] = ACTIONS(4054), - [anon_sym___asm] = ACTIONS(4054), - [sym_number_literal] = ACTIONS(4056), - [anon_sym_L_SQUOTE] = ACTIONS(4056), - [anon_sym_u_SQUOTE] = ACTIONS(4056), - [anon_sym_U_SQUOTE] = ACTIONS(4056), - [anon_sym_u8_SQUOTE] = ACTIONS(4056), - [anon_sym_SQUOTE] = ACTIONS(4056), - [anon_sym_L_DQUOTE] = ACTIONS(4056), - [anon_sym_u_DQUOTE] = ACTIONS(4056), - [anon_sym_U_DQUOTE] = ACTIONS(4056), - [anon_sym_u8_DQUOTE] = ACTIONS(4056), - [anon_sym_DQUOTE] = ACTIONS(4056), - [sym_true] = ACTIONS(4054), - [sym_false] = ACTIONS(4054), - [anon_sym_NULL] = ACTIONS(4054), - [anon_sym_nullptr] = ACTIONS(4054), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4054), - [anon_sym_decltype] = ACTIONS(4054), - [anon_sym_explicit] = ACTIONS(4054), - [anon_sym_template] = ACTIONS(4054), - [anon_sym_operator] = ACTIONS(4054), - [anon_sym_try] = ACTIONS(4054), - [anon_sym_delete] = ACTIONS(4054), - [anon_sym_throw] = ACTIONS(4054), - [anon_sym_namespace] = ACTIONS(4054), - [anon_sym_static_assert] = ACTIONS(4054), - [anon_sym_concept] = ACTIONS(4054), - [anon_sym_co_return] = ACTIONS(4054), - [anon_sym_co_yield] = ACTIONS(4054), - [anon_sym_R_DQUOTE] = ACTIONS(4056), - [anon_sym_LR_DQUOTE] = ACTIONS(4056), - [anon_sym_uR_DQUOTE] = ACTIONS(4056), - [anon_sym_UR_DQUOTE] = ACTIONS(4056), - [anon_sym_u8R_DQUOTE] = ACTIONS(4056), - [anon_sym_co_await] = ACTIONS(4054), - [anon_sym_new] = ACTIONS(4054), - [anon_sym_requires] = ACTIONS(4054), - [anon_sym_CARET_CARET] = ACTIONS(4056), - [anon_sym_LBRACK_COLON] = ACTIONS(4056), - [sym_this] = ACTIONS(4054), - }, - [STATE(454)] = { - [sym_identifier] = ACTIONS(4058), - [aux_sym_preproc_include_token1] = ACTIONS(4058), - [aux_sym_preproc_def_token1] = ACTIONS(4058), - [aux_sym_preproc_if_token1] = ACTIONS(4058), - [aux_sym_preproc_if_token2] = ACTIONS(4058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4058), - [aux_sym_preproc_else_token1] = ACTIONS(4058), - [aux_sym_preproc_elif_token1] = ACTIONS(4058), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4058), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4058), - [sym_preproc_directive] = ACTIONS(4058), - [anon_sym_LPAREN2] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(4060), - [anon_sym_TILDE] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4058), - [anon_sym_STAR] = ACTIONS(4060), - [anon_sym_AMP_AMP] = ACTIONS(4060), - [anon_sym_AMP] = ACTIONS(4058), - [anon_sym_SEMI] = ACTIONS(4060), - [anon_sym___extension__] = ACTIONS(4058), - [anon_sym_typedef] = ACTIONS(4058), - [anon_sym_virtual] = ACTIONS(4058), - [anon_sym_extern] = ACTIONS(4058), - [anon_sym___attribute__] = ACTIONS(4058), - [anon_sym___attribute] = ACTIONS(4058), - [anon_sym_using] = ACTIONS(4058), - [anon_sym_COLON_COLON] = ACTIONS(4060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4060), - [anon_sym___declspec] = ACTIONS(4058), - [anon_sym___based] = ACTIONS(4058), - [anon_sym___cdecl] = ACTIONS(4058), - [anon_sym___clrcall] = ACTIONS(4058), - [anon_sym___stdcall] = ACTIONS(4058), - [anon_sym___fastcall] = ACTIONS(4058), - [anon_sym___thiscall] = ACTIONS(4058), - [anon_sym___vectorcall] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4060), [anon_sym_signed] = ACTIONS(4058), [anon_sym_unsigned] = ACTIONS(4058), [anon_sym_long] = ACTIONS(4058), [anon_sym_short] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4058), - [anon_sym_static] = ACTIONS(4058), - [anon_sym_register] = ACTIONS(4058), - [anon_sym_inline] = ACTIONS(4058), - [anon_sym___inline] = ACTIONS(4058), - [anon_sym___inline__] = ACTIONS(4058), - [anon_sym___forceinline] = ACTIONS(4058), - [anon_sym_thread_local] = ACTIONS(4058), - [anon_sym___thread] = ACTIONS(4058), - [anon_sym_const] = ACTIONS(4058), - [anon_sym_constexpr] = ACTIONS(4058), - [anon_sym_volatile] = ACTIONS(4058), - [anon_sym_restrict] = ACTIONS(4058), - [anon_sym___restrict__] = ACTIONS(4058), - [anon_sym__Atomic] = ACTIONS(4058), - [anon_sym__Noreturn] = ACTIONS(4058), - [anon_sym_noreturn] = ACTIONS(4058), - [anon_sym__Nonnull] = ACTIONS(4058), - [anon_sym_mutable] = ACTIONS(4058), - [anon_sym_constinit] = ACTIONS(4058), - [anon_sym_consteval] = ACTIONS(4058), - [anon_sym_alignas] = ACTIONS(4058), - [anon_sym__Alignas] = ACTIONS(4058), - [sym_primitive_type] = ACTIONS(4058), - [anon_sym_enum] = ACTIONS(4058), - [anon_sym_class] = ACTIONS(4058), - [anon_sym_struct] = ACTIONS(4058), - [anon_sym_union] = ACTIONS(4058), - [anon_sym_if] = ACTIONS(4058), - [anon_sym_switch] = ACTIONS(4058), - [anon_sym_case] = ACTIONS(4058), - [anon_sym_default] = ACTIONS(4058), - [anon_sym_while] = ACTIONS(4058), - [anon_sym_do] = ACTIONS(4058), - [anon_sym_for] = ACTIONS(4058), - [anon_sym_return] = ACTIONS(4058), - [anon_sym_break] = ACTIONS(4058), - [anon_sym_continue] = ACTIONS(4058), - [anon_sym_goto] = ACTIONS(4058), - [anon_sym___try] = ACTIONS(4058), - [anon_sym___leave] = ACTIONS(4058), - [anon_sym_not] = ACTIONS(4058), - [anon_sym_compl] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4060), - [anon_sym_PLUS_PLUS] = ACTIONS(4060), - [anon_sym_sizeof] = ACTIONS(4058), - [anon_sym___alignof__] = ACTIONS(4058), - [anon_sym___alignof] = ACTIONS(4058), - [anon_sym__alignof] = ACTIONS(4058), - [anon_sym_alignof] = ACTIONS(4058), - [anon_sym__Alignof] = ACTIONS(4058), - [anon_sym_offsetof] = ACTIONS(4058), - [anon_sym__Generic] = ACTIONS(4058), - [anon_sym_typename] = ACTIONS(4058), - [anon_sym_asm] = ACTIONS(4058), - [anon_sym___asm__] = ACTIONS(4058), - [anon_sym___asm] = ACTIONS(4058), - [sym_number_literal] = ACTIONS(4060), - [anon_sym_L_SQUOTE] = ACTIONS(4060), - [anon_sym_u_SQUOTE] = ACTIONS(4060), - [anon_sym_U_SQUOTE] = ACTIONS(4060), - [anon_sym_u8_SQUOTE] = ACTIONS(4060), - [anon_sym_SQUOTE] = ACTIONS(4060), - [anon_sym_L_DQUOTE] = ACTIONS(4060), - [anon_sym_u_DQUOTE] = ACTIONS(4060), - [anon_sym_U_DQUOTE] = ACTIONS(4060), - [anon_sym_u8_DQUOTE] = ACTIONS(4060), - [anon_sym_DQUOTE] = ACTIONS(4060), - [sym_true] = ACTIONS(4058), - [sym_false] = ACTIONS(4058), - [anon_sym_NULL] = ACTIONS(4058), - [anon_sym_nullptr] = ACTIONS(4058), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4058), - [anon_sym_decltype] = ACTIONS(4058), - [anon_sym_explicit] = ACTIONS(4058), - [anon_sym_template] = ACTIONS(4058), - [anon_sym_operator] = ACTIONS(4058), - [anon_sym_try] = ACTIONS(4058), - [anon_sym_delete] = ACTIONS(4058), - [anon_sym_throw] = ACTIONS(4058), - [anon_sym_namespace] = ACTIONS(4058), - [anon_sym_static_assert] = ACTIONS(4058), - [anon_sym_concept] = ACTIONS(4058), - [anon_sym_co_return] = ACTIONS(4058), - [anon_sym_co_yield] = ACTIONS(4058), - [anon_sym_R_DQUOTE] = ACTIONS(4060), - [anon_sym_LR_DQUOTE] = ACTIONS(4060), - [anon_sym_uR_DQUOTE] = ACTIONS(4060), - [anon_sym_UR_DQUOTE] = ACTIONS(4060), - [anon_sym_u8R_DQUOTE] = ACTIONS(4060), - [anon_sym_co_await] = ACTIONS(4058), - [anon_sym_new] = ACTIONS(4058), - [anon_sym_requires] = ACTIONS(4058), - [anon_sym_CARET_CARET] = ACTIONS(4060), - [anon_sym_LBRACK_COLON] = ACTIONS(4060), - [sym_this] = ACTIONS(4058), - }, - [STATE(455)] = { - [sym_identifier] = ACTIONS(4062), - [aux_sym_preproc_include_token1] = ACTIONS(4062), - [aux_sym_preproc_def_token1] = ACTIONS(4062), - [aux_sym_preproc_if_token1] = ACTIONS(4062), - [aux_sym_preproc_if_token2] = ACTIONS(4062), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4062), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4062), - [aux_sym_preproc_else_token1] = ACTIONS(4062), - [aux_sym_preproc_elif_token1] = ACTIONS(4062), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4062), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4062), - [sym_preproc_directive] = ACTIONS(4062), - [anon_sym_LPAREN2] = ACTIONS(4064), - [anon_sym_BANG] = ACTIONS(4064), - [anon_sym_TILDE] = ACTIONS(4064), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_PLUS] = ACTIONS(4062), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_AMP_AMP] = ACTIONS(4064), - [anon_sym_AMP] = ACTIONS(4062), - [anon_sym_SEMI] = ACTIONS(4064), - [anon_sym___extension__] = ACTIONS(4062), - [anon_sym_typedef] = ACTIONS(4062), - [anon_sym_virtual] = ACTIONS(4062), - [anon_sym_extern] = ACTIONS(4062), - [anon_sym___attribute__] = ACTIONS(4062), - [anon_sym___attribute] = ACTIONS(4062), - [anon_sym_using] = ACTIONS(4062), - [anon_sym_COLON_COLON] = ACTIONS(4064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4064), - [anon_sym___declspec] = ACTIONS(4062), - [anon_sym___based] = ACTIONS(4062), - [anon_sym___cdecl] = ACTIONS(4062), - [anon_sym___clrcall] = ACTIONS(4062), - [anon_sym___stdcall] = ACTIONS(4062), - [anon_sym___fastcall] = ACTIONS(4062), - [anon_sym___thiscall] = ACTIONS(4062), - [anon_sym___vectorcall] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_signed] = ACTIONS(4062), - [anon_sym_unsigned] = ACTIONS(4062), - [anon_sym_long] = ACTIONS(4062), - [anon_sym_short] = ACTIONS(4062), - [anon_sym_LBRACK] = ACTIONS(4062), - [anon_sym_static] = ACTIONS(4062), - [anon_sym_register] = ACTIONS(4062), - [anon_sym_inline] = ACTIONS(4062), - [anon_sym___inline] = ACTIONS(4062), - [anon_sym___inline__] = ACTIONS(4062), - [anon_sym___forceinline] = ACTIONS(4062), - [anon_sym_thread_local] = ACTIONS(4062), - [anon_sym___thread] = ACTIONS(4062), - [anon_sym_const] = ACTIONS(4062), - [anon_sym_constexpr] = ACTIONS(4062), - [anon_sym_volatile] = ACTIONS(4062), - [anon_sym_restrict] = ACTIONS(4062), - [anon_sym___restrict__] = ACTIONS(4062), - [anon_sym__Atomic] = ACTIONS(4062), - [anon_sym__Noreturn] = ACTIONS(4062), - [anon_sym_noreturn] = ACTIONS(4062), - [anon_sym__Nonnull] = ACTIONS(4062), - [anon_sym_mutable] = ACTIONS(4062), - [anon_sym_constinit] = ACTIONS(4062), - [anon_sym_consteval] = ACTIONS(4062), - [anon_sym_alignas] = ACTIONS(4062), - [anon_sym__Alignas] = ACTIONS(4062), - [sym_primitive_type] = ACTIONS(4062), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(4060), [anon_sym_enum] = ACTIONS(4062), - [anon_sym_class] = ACTIONS(4062), - [anon_sym_struct] = ACTIONS(4062), - [anon_sym_union] = ACTIONS(4062), - [anon_sym_if] = ACTIONS(4062), - [anon_sym_switch] = ACTIONS(4062), - [anon_sym_case] = ACTIONS(4062), - [anon_sym_default] = ACTIONS(4062), - [anon_sym_while] = ACTIONS(4062), - [anon_sym_do] = ACTIONS(4062), - [anon_sym_for] = ACTIONS(4062), - [anon_sym_return] = ACTIONS(4062), - [anon_sym_break] = ACTIONS(4062), - [anon_sym_continue] = ACTIONS(4062), - [anon_sym_goto] = ACTIONS(4062), - [anon_sym___try] = ACTIONS(4062), - [anon_sym___leave] = ACTIONS(4062), - [anon_sym_not] = ACTIONS(4062), - [anon_sym_compl] = ACTIONS(4062), - [anon_sym_DASH_DASH] = ACTIONS(4064), - [anon_sym_PLUS_PLUS] = ACTIONS(4064), - [anon_sym_sizeof] = ACTIONS(4062), - [anon_sym___alignof__] = ACTIONS(4062), - [anon_sym___alignof] = ACTIONS(4062), - [anon_sym__alignof] = ACTIONS(4062), - [anon_sym_alignof] = ACTIONS(4062), - [anon_sym__Alignof] = ACTIONS(4062), - [anon_sym_offsetof] = ACTIONS(4062), - [anon_sym__Generic] = ACTIONS(4062), - [anon_sym_typename] = ACTIONS(4062), - [anon_sym_asm] = ACTIONS(4062), - [anon_sym___asm__] = ACTIONS(4062), - [anon_sym___asm] = ACTIONS(4062), - [sym_number_literal] = ACTIONS(4064), - [anon_sym_L_SQUOTE] = ACTIONS(4064), - [anon_sym_u_SQUOTE] = ACTIONS(4064), - [anon_sym_U_SQUOTE] = ACTIONS(4064), - [anon_sym_u8_SQUOTE] = ACTIONS(4064), - [anon_sym_SQUOTE] = ACTIONS(4064), - [anon_sym_L_DQUOTE] = ACTIONS(4064), - [anon_sym_u_DQUOTE] = ACTIONS(4064), - [anon_sym_U_DQUOTE] = ACTIONS(4064), - [anon_sym_u8_DQUOTE] = ACTIONS(4064), - [anon_sym_DQUOTE] = ACTIONS(4064), - [sym_true] = ACTIONS(4062), - [sym_false] = ACTIONS(4062), - [anon_sym_NULL] = ACTIONS(4062), - [anon_sym_nullptr] = ACTIONS(4062), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4062), - [anon_sym_decltype] = ACTIONS(4062), - [anon_sym_explicit] = ACTIONS(4062), - [anon_sym_template] = ACTIONS(4062), - [anon_sym_operator] = ACTIONS(4062), - [anon_sym_try] = ACTIONS(4062), - [anon_sym_delete] = ACTIONS(4062), - [anon_sym_throw] = ACTIONS(4062), - [anon_sym_namespace] = ACTIONS(4062), - [anon_sym_static_assert] = ACTIONS(4062), - [anon_sym_concept] = ACTIONS(4062), - [anon_sym_co_return] = ACTIONS(4062), - [anon_sym_co_yield] = ACTIONS(4062), - [anon_sym_R_DQUOTE] = ACTIONS(4064), - [anon_sym_LR_DQUOTE] = ACTIONS(4064), - [anon_sym_uR_DQUOTE] = ACTIONS(4064), - [anon_sym_UR_DQUOTE] = ACTIONS(4064), - [anon_sym_u8R_DQUOTE] = ACTIONS(4064), - [anon_sym_co_await] = ACTIONS(4062), - [anon_sym_new] = ACTIONS(4062), - [anon_sym_requires] = ACTIONS(4062), - [anon_sym_CARET_CARET] = ACTIONS(4064), - [anon_sym_LBRACK_COLON] = ACTIONS(4064), - [sym_this] = ACTIONS(4062), - }, - [STATE(456)] = { - [sym_identifier] = ACTIONS(4066), - [aux_sym_preproc_include_token1] = ACTIONS(4066), - [aux_sym_preproc_def_token1] = ACTIONS(4066), - [aux_sym_preproc_if_token1] = ACTIONS(4066), - [aux_sym_preproc_if_token2] = ACTIONS(4066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4066), - [aux_sym_preproc_else_token1] = ACTIONS(4066), - [aux_sym_preproc_elif_token1] = ACTIONS(4066), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4066), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4066), - [sym_preproc_directive] = ACTIONS(4066), - [anon_sym_LPAREN2] = ACTIONS(4068), - [anon_sym_BANG] = ACTIONS(4068), - [anon_sym_TILDE] = ACTIONS(4068), - [anon_sym_DASH] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4066), - [anon_sym_STAR] = ACTIONS(4068), - [anon_sym_AMP_AMP] = ACTIONS(4068), - [anon_sym_AMP] = ACTIONS(4066), - [anon_sym_SEMI] = ACTIONS(4068), - [anon_sym___extension__] = ACTIONS(4066), - [anon_sym_typedef] = ACTIONS(4066), - [anon_sym_virtual] = ACTIONS(4066), - [anon_sym_extern] = ACTIONS(4066), - [anon_sym___attribute__] = ACTIONS(4066), - [anon_sym___attribute] = ACTIONS(4066), - [anon_sym_using] = ACTIONS(4066), - [anon_sym_COLON_COLON] = ACTIONS(4068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4068), - [anon_sym___declspec] = ACTIONS(4066), - [anon_sym___based] = ACTIONS(4066), - [anon_sym___cdecl] = ACTIONS(4066), - [anon_sym___clrcall] = ACTIONS(4066), - [anon_sym___stdcall] = ACTIONS(4066), - [anon_sym___fastcall] = ACTIONS(4066), - [anon_sym___thiscall] = ACTIONS(4066), - [anon_sym___vectorcall] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4068), - [anon_sym_signed] = ACTIONS(4066), - [anon_sym_unsigned] = ACTIONS(4066), - [anon_sym_long] = ACTIONS(4066), - [anon_sym_short] = ACTIONS(4066), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_static] = ACTIONS(4066), - [anon_sym_register] = ACTIONS(4066), - [anon_sym_inline] = ACTIONS(4066), - [anon_sym___inline] = ACTIONS(4066), - [anon_sym___inline__] = ACTIONS(4066), - [anon_sym___forceinline] = ACTIONS(4066), - [anon_sym_thread_local] = ACTIONS(4066), - [anon_sym___thread] = ACTIONS(4066), - [anon_sym_const] = ACTIONS(4066), - [anon_sym_constexpr] = ACTIONS(4066), - [anon_sym_volatile] = ACTIONS(4066), - [anon_sym_restrict] = ACTIONS(4066), - [anon_sym___restrict__] = ACTIONS(4066), - [anon_sym__Atomic] = ACTIONS(4066), - [anon_sym__Noreturn] = ACTIONS(4066), - [anon_sym_noreturn] = ACTIONS(4066), - [anon_sym__Nonnull] = ACTIONS(4066), - [anon_sym_mutable] = ACTIONS(4066), - [anon_sym_constinit] = ACTIONS(4066), - [anon_sym_consteval] = ACTIONS(4066), - [anon_sym_alignas] = ACTIONS(4066), - [anon_sym__Alignas] = ACTIONS(4066), - [sym_primitive_type] = ACTIONS(4066), - [anon_sym_enum] = ACTIONS(4066), - [anon_sym_class] = ACTIONS(4066), + [anon_sym_class] = ACTIONS(4064), [anon_sym_struct] = ACTIONS(4066), - [anon_sym_union] = ACTIONS(4066), - [anon_sym_if] = ACTIONS(4066), - [anon_sym_switch] = ACTIONS(4066), - [anon_sym_case] = ACTIONS(4066), - [anon_sym_default] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(4066), - [anon_sym_do] = ACTIONS(4066), - [anon_sym_for] = ACTIONS(4066), - [anon_sym_return] = ACTIONS(4066), - [anon_sym_break] = ACTIONS(4066), - [anon_sym_continue] = ACTIONS(4066), - [anon_sym_goto] = ACTIONS(4066), - [anon_sym___try] = ACTIONS(4066), - [anon_sym___leave] = ACTIONS(4066), - [anon_sym_not] = ACTIONS(4066), - [anon_sym_compl] = ACTIONS(4066), - [anon_sym_DASH_DASH] = ACTIONS(4068), - [anon_sym_PLUS_PLUS] = ACTIONS(4068), - [anon_sym_sizeof] = ACTIONS(4066), - [anon_sym___alignof__] = ACTIONS(4066), - [anon_sym___alignof] = ACTIONS(4066), - [anon_sym__alignof] = ACTIONS(4066), - [anon_sym_alignof] = ACTIONS(4066), - [anon_sym__Alignof] = ACTIONS(4066), - [anon_sym_offsetof] = ACTIONS(4066), - [anon_sym__Generic] = ACTIONS(4066), - [anon_sym_typename] = ACTIONS(4066), - [anon_sym_asm] = ACTIONS(4066), - [anon_sym___asm__] = ACTIONS(4066), - [anon_sym___asm] = ACTIONS(4066), - [sym_number_literal] = ACTIONS(4068), - [anon_sym_L_SQUOTE] = ACTIONS(4068), - [anon_sym_u_SQUOTE] = ACTIONS(4068), - [anon_sym_U_SQUOTE] = ACTIONS(4068), - [anon_sym_u8_SQUOTE] = ACTIONS(4068), - [anon_sym_SQUOTE] = ACTIONS(4068), - [anon_sym_L_DQUOTE] = ACTIONS(4068), - [anon_sym_u_DQUOTE] = ACTIONS(4068), - [anon_sym_U_DQUOTE] = ACTIONS(4068), - [anon_sym_u8_DQUOTE] = ACTIONS(4068), - [anon_sym_DQUOTE] = ACTIONS(4068), - [sym_true] = ACTIONS(4066), - [sym_false] = ACTIONS(4066), - [anon_sym_NULL] = ACTIONS(4066), - [anon_sym_nullptr] = ACTIONS(4066), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4066), - [anon_sym_decltype] = ACTIONS(4066), - [anon_sym_explicit] = ACTIONS(4066), - [anon_sym_template] = ACTIONS(4066), - [anon_sym_operator] = ACTIONS(4066), - [anon_sym_try] = ACTIONS(4066), - [anon_sym_delete] = ACTIONS(4066), - [anon_sym_throw] = ACTIONS(4066), - [anon_sym_namespace] = ACTIONS(4066), - [anon_sym_static_assert] = ACTIONS(4066), - [anon_sym_concept] = ACTIONS(4066), - [anon_sym_co_return] = ACTIONS(4066), - [anon_sym_co_yield] = ACTIONS(4066), - [anon_sym_R_DQUOTE] = ACTIONS(4068), - [anon_sym_LR_DQUOTE] = ACTIONS(4068), - [anon_sym_uR_DQUOTE] = ACTIONS(4068), - [anon_sym_UR_DQUOTE] = ACTIONS(4068), - [anon_sym_u8R_DQUOTE] = ACTIONS(4068), - [anon_sym_co_await] = ACTIONS(4066), - [anon_sym_new] = ACTIONS(4066), - [anon_sym_requires] = ACTIONS(4066), - [anon_sym_CARET_CARET] = ACTIONS(4068), - [anon_sym_LBRACK_COLON] = ACTIONS(4068), - [sym_this] = ACTIONS(4066), - }, - [STATE(457)] = { - [sym_identifier] = ACTIONS(4070), - [aux_sym_preproc_include_token1] = ACTIONS(4070), - [aux_sym_preproc_def_token1] = ACTIONS(4070), - [aux_sym_preproc_if_token1] = ACTIONS(4070), - [aux_sym_preproc_if_token2] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), - [aux_sym_preproc_else_token1] = ACTIONS(4070), - [aux_sym_preproc_elif_token1] = ACTIONS(4070), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4070), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4070), - [sym_preproc_directive] = ACTIONS(4070), - [anon_sym_LPAREN2] = ACTIONS(4072), - [anon_sym_BANG] = ACTIONS(4072), - [anon_sym_TILDE] = ACTIONS(4072), - [anon_sym_DASH] = ACTIONS(4070), - [anon_sym_PLUS] = ACTIONS(4070), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4070), - [anon_sym_SEMI] = ACTIONS(4072), - [anon_sym___extension__] = ACTIONS(4070), - [anon_sym_typedef] = ACTIONS(4070), - [anon_sym_virtual] = ACTIONS(4070), - [anon_sym_extern] = ACTIONS(4070), - [anon_sym___attribute__] = ACTIONS(4070), - [anon_sym___attribute] = ACTIONS(4070), - [anon_sym_using] = ACTIONS(4070), - [anon_sym_COLON_COLON] = ACTIONS(4072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), - [anon_sym___declspec] = ACTIONS(4070), - [anon_sym___based] = ACTIONS(4070), - [anon_sym___cdecl] = ACTIONS(4070), - [anon_sym___clrcall] = ACTIONS(4070), - [anon_sym___stdcall] = ACTIONS(4070), - [anon_sym___fastcall] = ACTIONS(4070), - [anon_sym___thiscall] = ACTIONS(4070), - [anon_sym___vectorcall] = ACTIONS(4070), - [anon_sym_LBRACE] = ACTIONS(4072), - [anon_sym_signed] = ACTIONS(4070), - [anon_sym_unsigned] = ACTIONS(4070), - [anon_sym_long] = ACTIONS(4070), - [anon_sym_short] = ACTIONS(4070), - [anon_sym_LBRACK] = ACTIONS(4070), - [anon_sym_static] = ACTIONS(4070), - [anon_sym_register] = ACTIONS(4070), - [anon_sym_inline] = ACTIONS(4070), - [anon_sym___inline] = ACTIONS(4070), - [anon_sym___inline__] = ACTIONS(4070), - [anon_sym___forceinline] = ACTIONS(4070), - [anon_sym_thread_local] = ACTIONS(4070), - [anon_sym___thread] = ACTIONS(4070), - [anon_sym_const] = ACTIONS(4070), - [anon_sym_constexpr] = ACTIONS(4070), - [anon_sym_volatile] = ACTIONS(4070), - [anon_sym_restrict] = ACTIONS(4070), - [anon_sym___restrict__] = ACTIONS(4070), - [anon_sym__Atomic] = ACTIONS(4070), - [anon_sym__Noreturn] = ACTIONS(4070), - [anon_sym_noreturn] = ACTIONS(4070), - [anon_sym__Nonnull] = ACTIONS(4070), - [anon_sym_mutable] = ACTIONS(4070), - [anon_sym_constinit] = ACTIONS(4070), - [anon_sym_consteval] = ACTIONS(4070), - [anon_sym_alignas] = ACTIONS(4070), - [anon_sym__Alignas] = ACTIONS(4070), - [sym_primitive_type] = ACTIONS(4070), - [anon_sym_enum] = ACTIONS(4070), - [anon_sym_class] = ACTIONS(4070), - [anon_sym_struct] = ACTIONS(4070), - [anon_sym_union] = ACTIONS(4070), - [anon_sym_if] = ACTIONS(4070), - [anon_sym_switch] = ACTIONS(4070), - [anon_sym_case] = ACTIONS(4070), - [anon_sym_default] = ACTIONS(4070), - [anon_sym_while] = ACTIONS(4070), - [anon_sym_do] = ACTIONS(4070), - [anon_sym_for] = ACTIONS(4070), - [anon_sym_return] = ACTIONS(4070), - [anon_sym_break] = ACTIONS(4070), - [anon_sym_continue] = ACTIONS(4070), - [anon_sym_goto] = ACTIONS(4070), - [anon_sym___try] = ACTIONS(4070), - [anon_sym___leave] = ACTIONS(4070), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_compl] = ACTIONS(4070), - [anon_sym_DASH_DASH] = ACTIONS(4072), - [anon_sym_PLUS_PLUS] = ACTIONS(4072), - [anon_sym_sizeof] = ACTIONS(4070), - [anon_sym___alignof__] = ACTIONS(4070), - [anon_sym___alignof] = ACTIONS(4070), - [anon_sym__alignof] = ACTIONS(4070), - [anon_sym_alignof] = ACTIONS(4070), - [anon_sym__Alignof] = ACTIONS(4070), - [anon_sym_offsetof] = ACTIONS(4070), - [anon_sym__Generic] = ACTIONS(4070), - [anon_sym_typename] = ACTIONS(4070), - [anon_sym_asm] = ACTIONS(4070), - [anon_sym___asm__] = ACTIONS(4070), - [anon_sym___asm] = ACTIONS(4070), - [sym_number_literal] = ACTIONS(4072), - [anon_sym_L_SQUOTE] = ACTIONS(4072), - [anon_sym_u_SQUOTE] = ACTIONS(4072), - [anon_sym_U_SQUOTE] = ACTIONS(4072), - [anon_sym_u8_SQUOTE] = ACTIONS(4072), - [anon_sym_SQUOTE] = ACTIONS(4072), - [anon_sym_L_DQUOTE] = ACTIONS(4072), - [anon_sym_u_DQUOTE] = ACTIONS(4072), - [anon_sym_U_DQUOTE] = ACTIONS(4072), - [anon_sym_u8_DQUOTE] = ACTIONS(4072), - [anon_sym_DQUOTE] = ACTIONS(4072), - [sym_true] = ACTIONS(4070), - [sym_false] = ACTIONS(4070), - [anon_sym_NULL] = ACTIONS(4070), - [anon_sym_nullptr] = ACTIONS(4070), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4070), - [anon_sym_decltype] = ACTIONS(4070), - [anon_sym_explicit] = ACTIONS(4070), - [anon_sym_template] = ACTIONS(4070), - [anon_sym_operator] = ACTIONS(4070), - [anon_sym_try] = ACTIONS(4070), - [anon_sym_delete] = ACTIONS(4070), - [anon_sym_throw] = ACTIONS(4070), - [anon_sym_namespace] = ACTIONS(4070), - [anon_sym_static_assert] = ACTIONS(4070), - [anon_sym_concept] = ACTIONS(4070), - [anon_sym_co_return] = ACTIONS(4070), - [anon_sym_co_yield] = ACTIONS(4070), - [anon_sym_R_DQUOTE] = ACTIONS(4072), - [anon_sym_LR_DQUOTE] = ACTIONS(4072), - [anon_sym_uR_DQUOTE] = ACTIONS(4072), - [anon_sym_UR_DQUOTE] = ACTIONS(4072), - [anon_sym_u8R_DQUOTE] = ACTIONS(4072), - [anon_sym_co_await] = ACTIONS(4070), - [anon_sym_new] = ACTIONS(4070), - [anon_sym_requires] = ACTIONS(4070), - [anon_sym_CARET_CARET] = ACTIONS(4072), - [anon_sym_LBRACK_COLON] = ACTIONS(4072), - [sym_this] = ACTIONS(4070), - }, - [STATE(458)] = { - [sym_identifier] = ACTIONS(4070), - [aux_sym_preproc_include_token1] = ACTIONS(4070), - [aux_sym_preproc_def_token1] = ACTIONS(4070), - [aux_sym_preproc_if_token1] = ACTIONS(4070), - [aux_sym_preproc_if_token2] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), - [aux_sym_preproc_else_token1] = ACTIONS(4070), - [aux_sym_preproc_elif_token1] = ACTIONS(4070), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4070), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4070), - [sym_preproc_directive] = ACTIONS(4070), - [anon_sym_LPAREN2] = ACTIONS(4072), - [anon_sym_BANG] = ACTIONS(4072), - [anon_sym_TILDE] = ACTIONS(4072), - [anon_sym_DASH] = ACTIONS(4070), - [anon_sym_PLUS] = ACTIONS(4070), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4070), - [anon_sym_SEMI] = ACTIONS(4072), - [anon_sym___extension__] = ACTIONS(4070), - [anon_sym_typedef] = ACTIONS(4070), - [anon_sym_virtual] = ACTIONS(4070), - [anon_sym_extern] = ACTIONS(4070), - [anon_sym___attribute__] = ACTIONS(4070), - [anon_sym___attribute] = ACTIONS(4070), - [anon_sym_using] = ACTIONS(4070), - [anon_sym_COLON_COLON] = ACTIONS(4072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), - [anon_sym___declspec] = ACTIONS(4070), - [anon_sym___based] = ACTIONS(4070), - [anon_sym___cdecl] = ACTIONS(4070), - [anon_sym___clrcall] = ACTIONS(4070), - [anon_sym___stdcall] = ACTIONS(4070), - [anon_sym___fastcall] = ACTIONS(4070), - [anon_sym___thiscall] = ACTIONS(4070), - [anon_sym___vectorcall] = ACTIONS(4070), - [anon_sym_LBRACE] = ACTIONS(4072), - [anon_sym_signed] = ACTIONS(4070), - [anon_sym_unsigned] = ACTIONS(4070), - [anon_sym_long] = ACTIONS(4070), - [anon_sym_short] = ACTIONS(4070), - [anon_sym_LBRACK] = ACTIONS(4070), - [anon_sym_static] = ACTIONS(4070), - [anon_sym_register] = ACTIONS(4070), - [anon_sym_inline] = ACTIONS(4070), - [anon_sym___inline] = ACTIONS(4070), - [anon_sym___inline__] = ACTIONS(4070), - [anon_sym___forceinline] = ACTIONS(4070), - [anon_sym_thread_local] = ACTIONS(4070), - [anon_sym___thread] = ACTIONS(4070), - [anon_sym_const] = ACTIONS(4070), - [anon_sym_constexpr] = ACTIONS(4070), - [anon_sym_volatile] = ACTIONS(4070), - [anon_sym_restrict] = ACTIONS(4070), - [anon_sym___restrict__] = ACTIONS(4070), - [anon_sym__Atomic] = ACTIONS(4070), - [anon_sym__Noreturn] = ACTIONS(4070), - [anon_sym_noreturn] = ACTIONS(4070), - [anon_sym__Nonnull] = ACTIONS(4070), - [anon_sym_mutable] = ACTIONS(4070), - [anon_sym_constinit] = ACTIONS(4070), - [anon_sym_consteval] = ACTIONS(4070), - [anon_sym_alignas] = ACTIONS(4070), - [anon_sym__Alignas] = ACTIONS(4070), - [sym_primitive_type] = ACTIONS(4070), - [anon_sym_enum] = ACTIONS(4070), - [anon_sym_class] = ACTIONS(4070), - [anon_sym_struct] = ACTIONS(4070), - [anon_sym_union] = ACTIONS(4070), - [anon_sym_if] = ACTIONS(4070), - [anon_sym_switch] = ACTIONS(4070), - [anon_sym_case] = ACTIONS(4070), - [anon_sym_default] = ACTIONS(4070), - [anon_sym_while] = ACTIONS(4070), - [anon_sym_do] = ACTIONS(4070), - [anon_sym_for] = ACTIONS(4070), - [anon_sym_return] = ACTIONS(4070), - [anon_sym_break] = ACTIONS(4070), - [anon_sym_continue] = ACTIONS(4070), - [anon_sym_goto] = ACTIONS(4070), - [anon_sym___try] = ACTIONS(4070), - [anon_sym___leave] = ACTIONS(4070), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_compl] = ACTIONS(4070), - [anon_sym_DASH_DASH] = ACTIONS(4072), - [anon_sym_PLUS_PLUS] = ACTIONS(4072), - [anon_sym_sizeof] = ACTIONS(4070), - [anon_sym___alignof__] = ACTIONS(4070), - [anon_sym___alignof] = ACTIONS(4070), - [anon_sym__alignof] = ACTIONS(4070), - [anon_sym_alignof] = ACTIONS(4070), - [anon_sym__Alignof] = ACTIONS(4070), - [anon_sym_offsetof] = ACTIONS(4070), - [anon_sym__Generic] = ACTIONS(4070), + [anon_sym_union] = ACTIONS(4068), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), [anon_sym_typename] = ACTIONS(4070), - [anon_sym_asm] = ACTIONS(4070), - [anon_sym___asm__] = ACTIONS(4070), - [anon_sym___asm] = ACTIONS(4070), - [sym_number_literal] = ACTIONS(4072), - [anon_sym_L_SQUOTE] = ACTIONS(4072), - [anon_sym_u_SQUOTE] = ACTIONS(4072), - [anon_sym_U_SQUOTE] = ACTIONS(4072), - [anon_sym_u8_SQUOTE] = ACTIONS(4072), - [anon_sym_SQUOTE] = ACTIONS(4072), - [anon_sym_L_DQUOTE] = ACTIONS(4072), - [anon_sym_u_DQUOTE] = ACTIONS(4072), - [anon_sym_U_DQUOTE] = ACTIONS(4072), - [anon_sym_u8_DQUOTE] = ACTIONS(4072), - [anon_sym_DQUOTE] = ACTIONS(4072), - [sym_true] = ACTIONS(4070), - [sym_false] = ACTIONS(4070), - [anon_sym_NULL] = ACTIONS(4070), - [anon_sym_nullptr] = ACTIONS(4070), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4070), - [anon_sym_decltype] = ACTIONS(4070), - [anon_sym_explicit] = ACTIONS(4070), - [anon_sym_template] = ACTIONS(4070), - [anon_sym_operator] = ACTIONS(4070), - [anon_sym_try] = ACTIONS(4070), - [anon_sym_delete] = ACTIONS(4070), - [anon_sym_throw] = ACTIONS(4070), - [anon_sym_namespace] = ACTIONS(4070), - [anon_sym_static_assert] = ACTIONS(4070), - [anon_sym_concept] = ACTIONS(4070), - [anon_sym_co_return] = ACTIONS(4070), - [anon_sym_co_yield] = ACTIONS(4070), - [anon_sym_R_DQUOTE] = ACTIONS(4072), - [anon_sym_LR_DQUOTE] = ACTIONS(4072), - [anon_sym_uR_DQUOTE] = ACTIONS(4072), - [anon_sym_UR_DQUOTE] = ACTIONS(4072), - [anon_sym_u8R_DQUOTE] = ACTIONS(4072), - [anon_sym_co_await] = ACTIONS(4070), - [anon_sym_new] = ACTIONS(4070), - [anon_sym_requires] = ACTIONS(4070), - [anon_sym_CARET_CARET] = ACTIONS(4072), - [anon_sym_LBRACK_COLON] = ACTIONS(4072), - [sym_this] = ACTIONS(4070), - }, - [STATE(459)] = { - [sym_identifier] = ACTIONS(4074), - [aux_sym_preproc_include_token1] = ACTIONS(4074), - [aux_sym_preproc_def_token1] = ACTIONS(4074), - [aux_sym_preproc_if_token1] = ACTIONS(4074), - [aux_sym_preproc_if_token2] = ACTIONS(4074), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4074), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4074), - [aux_sym_preproc_else_token1] = ACTIONS(4074), - [aux_sym_preproc_elif_token1] = ACTIONS(4074), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4074), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4074), - [sym_preproc_directive] = ACTIONS(4074), - [anon_sym_LPAREN2] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(4076), - [anon_sym_TILDE] = ACTIONS(4076), - [anon_sym_DASH] = ACTIONS(4074), - [anon_sym_PLUS] = ACTIONS(4074), - [anon_sym_STAR] = ACTIONS(4076), - [anon_sym_AMP_AMP] = ACTIONS(4076), - [anon_sym_AMP] = ACTIONS(4074), - [anon_sym_SEMI] = ACTIONS(4076), - [anon_sym___extension__] = ACTIONS(4074), - [anon_sym_typedef] = ACTIONS(4074), - [anon_sym_virtual] = ACTIONS(4074), - [anon_sym_extern] = ACTIONS(4074), - [anon_sym___attribute__] = ACTIONS(4074), - [anon_sym___attribute] = ACTIONS(4074), - [anon_sym_using] = ACTIONS(4074), - [anon_sym_COLON_COLON] = ACTIONS(4076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4076), - [anon_sym___declspec] = ACTIONS(4074), - [anon_sym___based] = ACTIONS(4074), - [anon_sym___cdecl] = ACTIONS(4074), - [anon_sym___clrcall] = ACTIONS(4074), - [anon_sym___stdcall] = ACTIONS(4074), - [anon_sym___fastcall] = ACTIONS(4074), - [anon_sym___thiscall] = ACTIONS(4074), - [anon_sym___vectorcall] = ACTIONS(4074), - [anon_sym_LBRACE] = ACTIONS(4076), - [anon_sym_signed] = ACTIONS(4074), - [anon_sym_unsigned] = ACTIONS(4074), - [anon_sym_long] = ACTIONS(4074), - [anon_sym_short] = ACTIONS(4074), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_static] = ACTIONS(4074), - [anon_sym_register] = ACTIONS(4074), - [anon_sym_inline] = ACTIONS(4074), - [anon_sym___inline] = ACTIONS(4074), - [anon_sym___inline__] = ACTIONS(4074), - [anon_sym___forceinline] = ACTIONS(4074), - [anon_sym_thread_local] = ACTIONS(4074), - [anon_sym___thread] = ACTIONS(4074), - [anon_sym_const] = ACTIONS(4074), - [anon_sym_constexpr] = ACTIONS(4074), - [anon_sym_volatile] = ACTIONS(4074), - [anon_sym_restrict] = ACTIONS(4074), - [anon_sym___restrict__] = ACTIONS(4074), - [anon_sym__Atomic] = ACTIONS(4074), - [anon_sym__Noreturn] = ACTIONS(4074), - [anon_sym_noreturn] = ACTIONS(4074), - [anon_sym__Nonnull] = ACTIONS(4074), - [anon_sym_mutable] = ACTIONS(4074), - [anon_sym_constinit] = ACTIONS(4074), - [anon_sym_consteval] = ACTIONS(4074), - [anon_sym_alignas] = ACTIONS(4074), - [anon_sym__Alignas] = ACTIONS(4074), - [sym_primitive_type] = ACTIONS(4074), - [anon_sym_enum] = ACTIONS(4074), - [anon_sym_class] = ACTIONS(4074), - [anon_sym_struct] = ACTIONS(4074), - [anon_sym_union] = ACTIONS(4074), - [anon_sym_if] = ACTIONS(4074), - [anon_sym_switch] = ACTIONS(4074), - [anon_sym_case] = ACTIONS(4074), - [anon_sym_default] = ACTIONS(4074), - [anon_sym_while] = ACTIONS(4074), - [anon_sym_do] = ACTIONS(4074), - [anon_sym_for] = ACTIONS(4074), - [anon_sym_return] = ACTIONS(4074), - [anon_sym_break] = ACTIONS(4074), - [anon_sym_continue] = ACTIONS(4074), - [anon_sym_goto] = ACTIONS(4074), - [anon_sym___try] = ACTIONS(4074), - [anon_sym___leave] = ACTIONS(4074), - [anon_sym_not] = ACTIONS(4074), - [anon_sym_compl] = ACTIONS(4074), - [anon_sym_DASH_DASH] = ACTIONS(4076), - [anon_sym_PLUS_PLUS] = ACTIONS(4076), - [anon_sym_sizeof] = ACTIONS(4074), - [anon_sym___alignof__] = ACTIONS(4074), - [anon_sym___alignof] = ACTIONS(4074), - [anon_sym__alignof] = ACTIONS(4074), - [anon_sym_alignof] = ACTIONS(4074), - [anon_sym__Alignof] = ACTIONS(4074), - [anon_sym_offsetof] = ACTIONS(4074), - [anon_sym__Generic] = ACTIONS(4074), - [anon_sym_typename] = ACTIONS(4074), - [anon_sym_asm] = ACTIONS(4074), - [anon_sym___asm__] = ACTIONS(4074), - [anon_sym___asm] = ACTIONS(4074), - [sym_number_literal] = ACTIONS(4076), - [anon_sym_L_SQUOTE] = ACTIONS(4076), - [anon_sym_u_SQUOTE] = ACTIONS(4076), - [anon_sym_U_SQUOTE] = ACTIONS(4076), - [anon_sym_u8_SQUOTE] = ACTIONS(4076), - [anon_sym_SQUOTE] = ACTIONS(4076), - [anon_sym_L_DQUOTE] = ACTIONS(4076), - [anon_sym_u_DQUOTE] = ACTIONS(4076), - [anon_sym_U_DQUOTE] = ACTIONS(4076), - [anon_sym_u8_DQUOTE] = ACTIONS(4076), - [anon_sym_DQUOTE] = ACTIONS(4076), - [sym_true] = ACTIONS(4074), - [sym_false] = ACTIONS(4074), - [anon_sym_NULL] = ACTIONS(4074), - [anon_sym_nullptr] = ACTIONS(4074), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4074), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4072), [anon_sym_decltype] = ACTIONS(4074), - [anon_sym_explicit] = ACTIONS(4074), - [anon_sym_template] = ACTIONS(4074), - [anon_sym_operator] = ACTIONS(4074), - [anon_sym_try] = ACTIONS(4074), - [anon_sym_delete] = ACTIONS(4074), - [anon_sym_throw] = ACTIONS(4074), - [anon_sym_namespace] = ACTIONS(4074), - [anon_sym_static_assert] = ACTIONS(4074), - [anon_sym_concept] = ACTIONS(4074), - [anon_sym_co_return] = ACTIONS(4074), - [anon_sym_co_yield] = ACTIONS(4074), - [anon_sym_R_DQUOTE] = ACTIONS(4076), - [anon_sym_LR_DQUOTE] = ACTIONS(4076), - [anon_sym_uR_DQUOTE] = ACTIONS(4076), - [anon_sym_UR_DQUOTE] = ACTIONS(4076), - [anon_sym_u8R_DQUOTE] = ACTIONS(4076), - [anon_sym_co_await] = ACTIONS(4074), - [anon_sym_new] = ACTIONS(4074), - [anon_sym_requires] = ACTIONS(4074), - [anon_sym_CARET_CARET] = ACTIONS(4076), - [anon_sym_LBRACK_COLON] = ACTIONS(4076), - [sym_this] = ACTIONS(4074), - }, - [STATE(460)] = { - [sym_identifier] = ACTIONS(4078), - [aux_sym_preproc_include_token1] = ACTIONS(4078), - [aux_sym_preproc_def_token1] = ACTIONS(4078), - [aux_sym_preproc_if_token1] = ACTIONS(4078), - [aux_sym_preproc_if_token2] = ACTIONS(4078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4078), - [aux_sym_preproc_else_token1] = ACTIONS(4078), - [aux_sym_preproc_elif_token1] = ACTIONS(4078), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4078), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4078), - [sym_preproc_directive] = ACTIONS(4078), - [anon_sym_LPAREN2] = ACTIONS(4080), - [anon_sym_BANG] = ACTIONS(4080), - [anon_sym_TILDE] = ACTIONS(4080), - [anon_sym_DASH] = ACTIONS(4078), - [anon_sym_PLUS] = ACTIONS(4078), - [anon_sym_STAR] = ACTIONS(4080), - [anon_sym_AMP_AMP] = ACTIONS(4080), - [anon_sym_AMP] = ACTIONS(4078), - [anon_sym_SEMI] = ACTIONS(4080), - [anon_sym___extension__] = ACTIONS(4078), - [anon_sym_typedef] = ACTIONS(4078), - [anon_sym_virtual] = ACTIONS(4078), - [anon_sym_extern] = ACTIONS(4078), - [anon_sym___attribute__] = ACTIONS(4078), - [anon_sym___attribute] = ACTIONS(4078), - [anon_sym_using] = ACTIONS(4078), - [anon_sym_COLON_COLON] = ACTIONS(4080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4080), - [anon_sym___declspec] = ACTIONS(4078), - [anon_sym___based] = ACTIONS(4078), - [anon_sym___cdecl] = ACTIONS(4078), - [anon_sym___clrcall] = ACTIONS(4078), - [anon_sym___stdcall] = ACTIONS(4078), - [anon_sym___fastcall] = ACTIONS(4078), - [anon_sym___thiscall] = ACTIONS(4078), - [anon_sym___vectorcall] = ACTIONS(4078), - [anon_sym_LBRACE] = ACTIONS(4080), - [anon_sym_signed] = ACTIONS(4078), - [anon_sym_unsigned] = ACTIONS(4078), - [anon_sym_long] = ACTIONS(4078), - [anon_sym_short] = ACTIONS(4078), - [anon_sym_LBRACK] = ACTIONS(4078), - [anon_sym_static] = ACTIONS(4078), - [anon_sym_register] = ACTIONS(4078), - [anon_sym_inline] = ACTIONS(4078), - [anon_sym___inline] = ACTIONS(4078), - [anon_sym___inline__] = ACTIONS(4078), - [anon_sym___forceinline] = ACTIONS(4078), - [anon_sym_thread_local] = ACTIONS(4078), - [anon_sym___thread] = ACTIONS(4078), - [anon_sym_const] = ACTIONS(4078), - [anon_sym_constexpr] = ACTIONS(4078), - [anon_sym_volatile] = ACTIONS(4078), - [anon_sym_restrict] = ACTIONS(4078), - [anon_sym___restrict__] = ACTIONS(4078), - [anon_sym__Atomic] = ACTIONS(4078), - [anon_sym__Noreturn] = ACTIONS(4078), - [anon_sym_noreturn] = ACTIONS(4078), - [anon_sym__Nonnull] = ACTIONS(4078), - [anon_sym_mutable] = ACTIONS(4078), - [anon_sym_constinit] = ACTIONS(4078), - [anon_sym_consteval] = ACTIONS(4078), - [anon_sym_alignas] = ACTIONS(4078), - [anon_sym__Alignas] = ACTIONS(4078), - [sym_primitive_type] = ACTIONS(4078), - [anon_sym_enum] = ACTIONS(4078), - [anon_sym_class] = ACTIONS(4078), - [anon_sym_struct] = ACTIONS(4078), - [anon_sym_union] = ACTIONS(4078), - [anon_sym_if] = ACTIONS(4078), - [anon_sym_switch] = ACTIONS(4078), - [anon_sym_case] = ACTIONS(4078), - [anon_sym_default] = ACTIONS(4078), - [anon_sym_while] = ACTIONS(4078), - [anon_sym_do] = ACTIONS(4078), - [anon_sym_for] = ACTIONS(4078), - [anon_sym_return] = ACTIONS(4078), - [anon_sym_break] = ACTIONS(4078), - [anon_sym_continue] = ACTIONS(4078), - [anon_sym_goto] = ACTIONS(4078), - [anon_sym___try] = ACTIONS(4078), - [anon_sym___leave] = ACTIONS(4078), - [anon_sym_not] = ACTIONS(4078), - [anon_sym_compl] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4080), - [anon_sym_PLUS_PLUS] = ACTIONS(4080), - [anon_sym_sizeof] = ACTIONS(4078), - [anon_sym___alignof__] = ACTIONS(4078), - [anon_sym___alignof] = ACTIONS(4078), - [anon_sym__alignof] = ACTIONS(4078), - [anon_sym_alignof] = ACTIONS(4078), - [anon_sym__Alignof] = ACTIONS(4078), - [anon_sym_offsetof] = ACTIONS(4078), - [anon_sym__Generic] = ACTIONS(4078), - [anon_sym_typename] = ACTIONS(4078), - [anon_sym_asm] = ACTIONS(4078), - [anon_sym___asm__] = ACTIONS(4078), - [anon_sym___asm] = ACTIONS(4078), - [sym_number_literal] = ACTIONS(4080), - [anon_sym_L_SQUOTE] = ACTIONS(4080), - [anon_sym_u_SQUOTE] = ACTIONS(4080), - [anon_sym_U_SQUOTE] = ACTIONS(4080), - [anon_sym_u8_SQUOTE] = ACTIONS(4080), - [anon_sym_SQUOTE] = ACTIONS(4080), - [anon_sym_L_DQUOTE] = ACTIONS(4080), - [anon_sym_u_DQUOTE] = ACTIONS(4080), - [anon_sym_U_DQUOTE] = ACTIONS(4080), - [anon_sym_u8_DQUOTE] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4080), - [sym_true] = ACTIONS(4078), - [sym_false] = ACTIONS(4078), - [anon_sym_NULL] = ACTIONS(4078), - [anon_sym_nullptr] = ACTIONS(4078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4078), - [anon_sym_decltype] = ACTIONS(4078), - [anon_sym_explicit] = ACTIONS(4078), - [anon_sym_template] = ACTIONS(4078), - [anon_sym_operator] = ACTIONS(4078), - [anon_sym_try] = ACTIONS(4078), - [anon_sym_delete] = ACTIONS(4078), - [anon_sym_throw] = ACTIONS(4078), - [anon_sym_namespace] = ACTIONS(4078), - [anon_sym_static_assert] = ACTIONS(4078), - [anon_sym_concept] = ACTIONS(4078), - [anon_sym_co_return] = ACTIONS(4078), - [anon_sym_co_yield] = ACTIONS(4078), - [anon_sym_R_DQUOTE] = ACTIONS(4080), - [anon_sym_LR_DQUOTE] = ACTIONS(4080), - [anon_sym_uR_DQUOTE] = ACTIONS(4080), - [anon_sym_UR_DQUOTE] = ACTIONS(4080), - [anon_sym_u8R_DQUOTE] = ACTIONS(4080), - [anon_sym_co_await] = ACTIONS(4078), - [anon_sym_new] = ACTIONS(4078), - [anon_sym_requires] = ACTIONS(4078), - [anon_sym_CARET_CARET] = ACTIONS(4080), - [anon_sym_LBRACK_COLON] = ACTIONS(4080), - [sym_this] = ACTIONS(4078), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), }, - [STATE(461)] = { - [sym_identifier] = ACTIONS(4082), - [aux_sym_preproc_include_token1] = ACTIONS(4082), - [aux_sym_preproc_def_token1] = ACTIONS(4082), - [aux_sym_preproc_if_token1] = ACTIONS(4082), - [aux_sym_preproc_if_token2] = ACTIONS(4082), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4082), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4082), - [aux_sym_preproc_else_token1] = ACTIONS(4082), - [aux_sym_preproc_elif_token1] = ACTIONS(4082), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4082), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4082), - [sym_preproc_directive] = ACTIONS(4082), - [anon_sym_LPAREN2] = ACTIONS(4084), - [anon_sym_BANG] = ACTIONS(4084), - [anon_sym_TILDE] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4082), - [anon_sym_PLUS] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_AMP] = ACTIONS(4082), - [anon_sym_SEMI] = ACTIONS(4084), - [anon_sym___extension__] = ACTIONS(4082), - [anon_sym_typedef] = ACTIONS(4082), - [anon_sym_virtual] = ACTIONS(4082), - [anon_sym_extern] = ACTIONS(4082), - [anon_sym___attribute__] = ACTIONS(4082), - [anon_sym___attribute] = ACTIONS(4082), - [anon_sym_using] = ACTIONS(4082), - [anon_sym_COLON_COLON] = ACTIONS(4084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4084), - [anon_sym___declspec] = ACTIONS(4082), - [anon_sym___based] = ACTIONS(4082), - [anon_sym___cdecl] = ACTIONS(4082), - [anon_sym___clrcall] = ACTIONS(4082), - [anon_sym___stdcall] = ACTIONS(4082), - [anon_sym___fastcall] = ACTIONS(4082), - [anon_sym___thiscall] = ACTIONS(4082), - [anon_sym___vectorcall] = ACTIONS(4082), - [anon_sym_LBRACE] = ACTIONS(4084), - [anon_sym_signed] = ACTIONS(4082), - [anon_sym_unsigned] = ACTIONS(4082), - [anon_sym_long] = ACTIONS(4082), - [anon_sym_short] = ACTIONS(4082), - [anon_sym_LBRACK] = ACTIONS(4082), - [anon_sym_static] = ACTIONS(4082), - [anon_sym_register] = ACTIONS(4082), - [anon_sym_inline] = ACTIONS(4082), - [anon_sym___inline] = ACTIONS(4082), - [anon_sym___inline__] = ACTIONS(4082), - [anon_sym___forceinline] = ACTIONS(4082), - [anon_sym_thread_local] = ACTIONS(4082), - [anon_sym___thread] = ACTIONS(4082), - [anon_sym_const] = ACTIONS(4082), - [anon_sym_constexpr] = ACTIONS(4082), - [anon_sym_volatile] = ACTIONS(4082), - [anon_sym_restrict] = ACTIONS(4082), - [anon_sym___restrict__] = ACTIONS(4082), - [anon_sym__Atomic] = ACTIONS(4082), - [anon_sym__Noreturn] = ACTIONS(4082), - [anon_sym_noreturn] = ACTIONS(4082), - [anon_sym__Nonnull] = ACTIONS(4082), - [anon_sym_mutable] = ACTIONS(4082), - [anon_sym_constinit] = ACTIONS(4082), - [anon_sym_consteval] = ACTIONS(4082), - [anon_sym_alignas] = ACTIONS(4082), - [anon_sym__Alignas] = ACTIONS(4082), - [sym_primitive_type] = ACTIONS(4082), - [anon_sym_enum] = ACTIONS(4082), - [anon_sym_class] = ACTIONS(4082), - [anon_sym_struct] = ACTIONS(4082), - [anon_sym_union] = ACTIONS(4082), - [anon_sym_if] = ACTIONS(4082), - [anon_sym_switch] = ACTIONS(4082), - [anon_sym_case] = ACTIONS(4082), - [anon_sym_default] = ACTIONS(4082), - [anon_sym_while] = ACTIONS(4082), - [anon_sym_do] = ACTIONS(4082), - [anon_sym_for] = ACTIONS(4082), - [anon_sym_return] = ACTIONS(4082), - [anon_sym_break] = ACTIONS(4082), - [anon_sym_continue] = ACTIONS(4082), - [anon_sym_goto] = ACTIONS(4082), - [anon_sym___try] = ACTIONS(4082), - [anon_sym___leave] = ACTIONS(4082), - [anon_sym_not] = ACTIONS(4082), - [anon_sym_compl] = ACTIONS(4082), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_sizeof] = ACTIONS(4082), - [anon_sym___alignof__] = ACTIONS(4082), - [anon_sym___alignof] = ACTIONS(4082), - [anon_sym__alignof] = ACTIONS(4082), - [anon_sym_alignof] = ACTIONS(4082), - [anon_sym__Alignof] = ACTIONS(4082), - [anon_sym_offsetof] = ACTIONS(4082), - [anon_sym__Generic] = ACTIONS(4082), - [anon_sym_typename] = ACTIONS(4082), - [anon_sym_asm] = ACTIONS(4082), - [anon_sym___asm__] = ACTIONS(4082), - [anon_sym___asm] = ACTIONS(4082), - [sym_number_literal] = ACTIONS(4084), - [anon_sym_L_SQUOTE] = ACTIONS(4084), - [anon_sym_u_SQUOTE] = ACTIONS(4084), - [anon_sym_U_SQUOTE] = ACTIONS(4084), - [anon_sym_u8_SQUOTE] = ACTIONS(4084), - [anon_sym_SQUOTE] = ACTIONS(4084), - [anon_sym_L_DQUOTE] = ACTIONS(4084), - [anon_sym_u_DQUOTE] = ACTIONS(4084), - [anon_sym_U_DQUOTE] = ACTIONS(4084), - [anon_sym_u8_DQUOTE] = ACTIONS(4084), - [anon_sym_DQUOTE] = ACTIONS(4084), - [sym_true] = ACTIONS(4082), - [sym_false] = ACTIONS(4082), - [anon_sym_NULL] = ACTIONS(4082), - [anon_sym_nullptr] = ACTIONS(4082), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4082), - [anon_sym_decltype] = ACTIONS(4082), - [anon_sym_explicit] = ACTIONS(4082), - [anon_sym_template] = ACTIONS(4082), - [anon_sym_operator] = ACTIONS(4082), - [anon_sym_try] = ACTIONS(4082), - [anon_sym_delete] = ACTIONS(4082), - [anon_sym_throw] = ACTIONS(4082), - [anon_sym_namespace] = ACTIONS(4082), - [anon_sym_static_assert] = ACTIONS(4082), - [anon_sym_concept] = ACTIONS(4082), - [anon_sym_co_return] = ACTIONS(4082), - [anon_sym_co_yield] = ACTIONS(4082), - [anon_sym_R_DQUOTE] = ACTIONS(4084), - [anon_sym_LR_DQUOTE] = ACTIONS(4084), - [anon_sym_uR_DQUOTE] = ACTIONS(4084), - [anon_sym_UR_DQUOTE] = ACTIONS(4084), - [anon_sym_u8R_DQUOTE] = ACTIONS(4084), - [anon_sym_co_await] = ACTIONS(4082), - [anon_sym_new] = ACTIONS(4082), - [anon_sym_requires] = ACTIONS(4082), - [anon_sym_CARET_CARET] = ACTIONS(4084), - [anon_sym_LBRACK_COLON] = ACTIONS(4084), - [sym_this] = ACTIONS(4082), + [STATE(434)] = { + [sym_identifier] = ACTIONS(4024), + [aux_sym_preproc_include_token1] = ACTIONS(4024), + [aux_sym_preproc_def_token1] = ACTIONS(4024), + [aux_sym_preproc_if_token1] = ACTIONS(4024), + [aux_sym_preproc_if_token2] = ACTIONS(4024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4024), + [aux_sym_preproc_else_token1] = ACTIONS(4024), + [aux_sym_preproc_elif_token1] = ACTIONS(4024), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4024), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4024), + [sym_preproc_directive] = ACTIONS(4024), + [anon_sym_LPAREN2] = ACTIONS(4026), + [anon_sym_BANG] = ACTIONS(4026), + [anon_sym_TILDE] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_STAR] = ACTIONS(4026), + [anon_sym_AMP_AMP] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4024), + [anon_sym_SEMI] = ACTIONS(4026), + [anon_sym___extension__] = ACTIONS(4024), + [anon_sym_typedef] = ACTIONS(4024), + [anon_sym_virtual] = ACTIONS(4024), + [anon_sym_extern] = ACTIONS(4024), + [anon_sym___attribute__] = ACTIONS(4024), + [anon_sym___attribute] = ACTIONS(4024), + [anon_sym_using] = ACTIONS(4024), + [anon_sym_COLON_COLON] = ACTIONS(4026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4026), + [anon_sym___declspec] = ACTIONS(4024), + [anon_sym___based] = ACTIONS(4024), + [anon_sym___cdecl] = ACTIONS(4024), + [anon_sym___clrcall] = ACTIONS(4024), + [anon_sym___stdcall] = ACTIONS(4024), + [anon_sym___fastcall] = ACTIONS(4024), + [anon_sym___thiscall] = ACTIONS(4024), + [anon_sym___vectorcall] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4026), + [anon_sym_signed] = ACTIONS(4024), + [anon_sym_unsigned] = ACTIONS(4024), + [anon_sym_long] = ACTIONS(4024), + [anon_sym_short] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4024), + [anon_sym_static] = ACTIONS(4024), + [anon_sym_register] = ACTIONS(4024), + [anon_sym_inline] = ACTIONS(4024), + [anon_sym___inline] = ACTIONS(4024), + [anon_sym___inline__] = ACTIONS(4024), + [anon_sym___forceinline] = ACTIONS(4024), + [anon_sym_thread_local] = ACTIONS(4024), + [anon_sym___thread] = ACTIONS(4024), + [anon_sym_const] = ACTIONS(4024), + [anon_sym_constexpr] = ACTIONS(4024), + [anon_sym_volatile] = ACTIONS(4024), + [anon_sym_restrict] = ACTIONS(4024), + [anon_sym___restrict__] = ACTIONS(4024), + [anon_sym__Atomic] = ACTIONS(4024), + [anon_sym__Noreturn] = ACTIONS(4024), + [anon_sym_noreturn] = ACTIONS(4024), + [anon_sym__Nonnull] = ACTIONS(4024), + [anon_sym_mutable] = ACTIONS(4024), + [anon_sym_constinit] = ACTIONS(4024), + [anon_sym_consteval] = ACTIONS(4024), + [anon_sym_alignas] = ACTIONS(4024), + [anon_sym__Alignas] = ACTIONS(4024), + [sym_primitive_type] = ACTIONS(4024), + [anon_sym_enum] = ACTIONS(4024), + [anon_sym_class] = ACTIONS(4024), + [anon_sym_struct] = ACTIONS(4024), + [anon_sym_union] = ACTIONS(4024), + [anon_sym_if] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_case] = ACTIONS(4024), + [anon_sym_default] = ACTIONS(4024), + [anon_sym_while] = ACTIONS(4024), + [anon_sym_do] = ACTIONS(4024), + [anon_sym_for] = ACTIONS(4024), + [anon_sym_return] = ACTIONS(4024), + [anon_sym_break] = ACTIONS(4024), + [anon_sym_continue] = ACTIONS(4024), + [anon_sym_goto] = ACTIONS(4024), + [anon_sym___try] = ACTIONS(4024), + [anon_sym___leave] = ACTIONS(4024), + [anon_sym_not] = ACTIONS(4024), + [anon_sym_compl] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4026), + [anon_sym_PLUS_PLUS] = ACTIONS(4026), + [anon_sym_sizeof] = ACTIONS(4024), + [anon_sym___alignof__] = ACTIONS(4024), + [anon_sym___alignof] = ACTIONS(4024), + [anon_sym__alignof] = ACTIONS(4024), + [anon_sym_alignof] = ACTIONS(4024), + [anon_sym__Alignof] = ACTIONS(4024), + [anon_sym_offsetof] = ACTIONS(4024), + [anon_sym__Generic] = ACTIONS(4024), + [anon_sym_typename] = ACTIONS(4024), + [anon_sym_asm] = ACTIONS(4024), + [anon_sym___asm__] = ACTIONS(4024), + [anon_sym___asm] = ACTIONS(4024), + [sym_number_literal] = ACTIONS(4026), + [anon_sym_L_SQUOTE] = ACTIONS(4026), + [anon_sym_u_SQUOTE] = ACTIONS(4026), + [anon_sym_U_SQUOTE] = ACTIONS(4026), + [anon_sym_u8_SQUOTE] = ACTIONS(4026), + [anon_sym_SQUOTE] = ACTIONS(4026), + [anon_sym_L_DQUOTE] = ACTIONS(4026), + [anon_sym_u_DQUOTE] = ACTIONS(4026), + [anon_sym_U_DQUOTE] = ACTIONS(4026), + [anon_sym_u8_DQUOTE] = ACTIONS(4026), + [anon_sym_DQUOTE] = ACTIONS(4026), + [sym_true] = ACTIONS(4024), + [sym_false] = ACTIONS(4024), + [anon_sym_NULL] = ACTIONS(4024), + [anon_sym_nullptr] = ACTIONS(4024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4024), + [anon_sym_decltype] = ACTIONS(4024), + [anon_sym_explicit] = ACTIONS(4024), + [anon_sym_export] = ACTIONS(4024), + [anon_sym_module] = ACTIONS(4024), + [anon_sym_import] = ACTIONS(4024), + [anon_sym_template] = ACTIONS(4024), + [anon_sym_operator] = ACTIONS(4024), + [anon_sym_try] = ACTIONS(4024), + [anon_sym_delete] = ACTIONS(4024), + [anon_sym_throw] = ACTIONS(4024), + [anon_sym_namespace] = ACTIONS(4024), + [anon_sym_static_assert] = ACTIONS(4024), + [anon_sym_concept] = ACTIONS(4024), + [anon_sym_co_return] = ACTIONS(4024), + [anon_sym_co_yield] = ACTIONS(4024), + [anon_sym_R_DQUOTE] = ACTIONS(4026), + [anon_sym_LR_DQUOTE] = ACTIONS(4026), + [anon_sym_uR_DQUOTE] = ACTIONS(4026), + [anon_sym_UR_DQUOTE] = ACTIONS(4026), + [anon_sym_u8R_DQUOTE] = ACTIONS(4026), + [anon_sym_co_await] = ACTIONS(4024), + [anon_sym_new] = ACTIONS(4024), + [anon_sym_requires] = ACTIONS(4024), + [anon_sym_CARET_CARET] = ACTIONS(4026), + [anon_sym_LBRACK_COLON] = ACTIONS(4026), + [sym_this] = ACTIONS(4024), }, - [STATE(462)] = { - [sym_identifier] = ACTIONS(4086), - [aux_sym_preproc_include_token1] = ACTIONS(4086), - [aux_sym_preproc_def_token1] = ACTIONS(4086), - [aux_sym_preproc_if_token1] = ACTIONS(4086), - [aux_sym_preproc_if_token2] = ACTIONS(4086), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4086), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4086), - [aux_sym_preproc_else_token1] = ACTIONS(4086), - [aux_sym_preproc_elif_token1] = ACTIONS(4086), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4086), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4086), - [sym_preproc_directive] = ACTIONS(4086), - [anon_sym_LPAREN2] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_TILDE] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4086), - [anon_sym_PLUS] = ACTIONS(4086), - [anon_sym_STAR] = ACTIONS(4088), - [anon_sym_AMP_AMP] = ACTIONS(4088), - [anon_sym_AMP] = ACTIONS(4086), - [anon_sym_SEMI] = ACTIONS(4088), - [anon_sym___extension__] = ACTIONS(4086), - [anon_sym_typedef] = ACTIONS(4086), - [anon_sym_virtual] = ACTIONS(4086), - [anon_sym_extern] = ACTIONS(4086), - [anon_sym___attribute__] = ACTIONS(4086), - [anon_sym___attribute] = ACTIONS(4086), - [anon_sym_using] = ACTIONS(4086), - [anon_sym_COLON_COLON] = ACTIONS(4088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4088), - [anon_sym___declspec] = ACTIONS(4086), - [anon_sym___based] = ACTIONS(4086), - [anon_sym___cdecl] = ACTIONS(4086), - [anon_sym___clrcall] = ACTIONS(4086), - [anon_sym___stdcall] = ACTIONS(4086), - [anon_sym___fastcall] = ACTIONS(4086), - [anon_sym___thiscall] = ACTIONS(4086), - [anon_sym___vectorcall] = ACTIONS(4086), - [anon_sym_LBRACE] = ACTIONS(4088), - [anon_sym_signed] = ACTIONS(4086), - [anon_sym_unsigned] = ACTIONS(4086), - [anon_sym_long] = ACTIONS(4086), - [anon_sym_short] = ACTIONS(4086), - [anon_sym_LBRACK] = ACTIONS(4086), - [anon_sym_static] = ACTIONS(4086), - [anon_sym_register] = ACTIONS(4086), - [anon_sym_inline] = ACTIONS(4086), - [anon_sym___inline] = ACTIONS(4086), - [anon_sym___inline__] = ACTIONS(4086), - [anon_sym___forceinline] = ACTIONS(4086), - [anon_sym_thread_local] = ACTIONS(4086), - [anon_sym___thread] = ACTIONS(4086), - [anon_sym_const] = ACTIONS(4086), - [anon_sym_constexpr] = ACTIONS(4086), - [anon_sym_volatile] = ACTIONS(4086), - [anon_sym_restrict] = ACTIONS(4086), - [anon_sym___restrict__] = ACTIONS(4086), - [anon_sym__Atomic] = ACTIONS(4086), - [anon_sym__Noreturn] = ACTIONS(4086), - [anon_sym_noreturn] = ACTIONS(4086), - [anon_sym__Nonnull] = ACTIONS(4086), - [anon_sym_mutable] = ACTIONS(4086), - [anon_sym_constinit] = ACTIONS(4086), - [anon_sym_consteval] = ACTIONS(4086), - [anon_sym_alignas] = ACTIONS(4086), - [anon_sym__Alignas] = ACTIONS(4086), - [sym_primitive_type] = ACTIONS(4086), - [anon_sym_enum] = ACTIONS(4086), - [anon_sym_class] = ACTIONS(4086), - [anon_sym_struct] = ACTIONS(4086), - [anon_sym_union] = ACTIONS(4086), - [anon_sym_if] = ACTIONS(4086), - [anon_sym_switch] = ACTIONS(4086), - [anon_sym_case] = ACTIONS(4086), - [anon_sym_default] = ACTIONS(4086), - [anon_sym_while] = ACTIONS(4086), - [anon_sym_do] = ACTIONS(4086), - [anon_sym_for] = ACTIONS(4086), - [anon_sym_return] = ACTIONS(4086), - [anon_sym_break] = ACTIONS(4086), - [anon_sym_continue] = ACTIONS(4086), - [anon_sym_goto] = ACTIONS(4086), - [anon_sym___try] = ACTIONS(4086), - [anon_sym___leave] = ACTIONS(4086), - [anon_sym_not] = ACTIONS(4086), - [anon_sym_compl] = ACTIONS(4086), - [anon_sym_DASH_DASH] = ACTIONS(4088), - [anon_sym_PLUS_PLUS] = ACTIONS(4088), - [anon_sym_sizeof] = ACTIONS(4086), - [anon_sym___alignof__] = ACTIONS(4086), - [anon_sym___alignof] = ACTIONS(4086), - [anon_sym__alignof] = ACTIONS(4086), - [anon_sym_alignof] = ACTIONS(4086), - [anon_sym__Alignof] = ACTIONS(4086), - [anon_sym_offsetof] = ACTIONS(4086), - [anon_sym__Generic] = ACTIONS(4086), - [anon_sym_typename] = ACTIONS(4086), - [anon_sym_asm] = ACTIONS(4086), - [anon_sym___asm__] = ACTIONS(4086), - [anon_sym___asm] = ACTIONS(4086), - [sym_number_literal] = ACTIONS(4088), - [anon_sym_L_SQUOTE] = ACTIONS(4088), - [anon_sym_u_SQUOTE] = ACTIONS(4088), - [anon_sym_U_SQUOTE] = ACTIONS(4088), - [anon_sym_u8_SQUOTE] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4088), - [anon_sym_L_DQUOTE] = ACTIONS(4088), - [anon_sym_u_DQUOTE] = ACTIONS(4088), - [anon_sym_U_DQUOTE] = ACTIONS(4088), - [anon_sym_u8_DQUOTE] = ACTIONS(4088), - [anon_sym_DQUOTE] = ACTIONS(4088), - [sym_true] = ACTIONS(4086), - [sym_false] = ACTIONS(4086), - [anon_sym_NULL] = ACTIONS(4086), - [anon_sym_nullptr] = ACTIONS(4086), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4086), - [anon_sym_decltype] = ACTIONS(4086), - [anon_sym_explicit] = ACTIONS(4086), - [anon_sym_template] = ACTIONS(4086), - [anon_sym_operator] = ACTIONS(4086), - [anon_sym_try] = ACTIONS(4086), - [anon_sym_delete] = ACTIONS(4086), - [anon_sym_throw] = ACTIONS(4086), - [anon_sym_namespace] = ACTIONS(4086), - [anon_sym_static_assert] = ACTIONS(4086), - [anon_sym_concept] = ACTIONS(4086), - [anon_sym_co_return] = ACTIONS(4086), - [anon_sym_co_yield] = ACTIONS(4086), - [anon_sym_R_DQUOTE] = ACTIONS(4088), - [anon_sym_LR_DQUOTE] = ACTIONS(4088), - [anon_sym_uR_DQUOTE] = ACTIONS(4088), - [anon_sym_UR_DQUOTE] = ACTIONS(4088), - [anon_sym_u8R_DQUOTE] = ACTIONS(4088), - [anon_sym_co_await] = ACTIONS(4086), - [anon_sym_new] = ACTIONS(4086), - [anon_sym_requires] = ACTIONS(4086), - [anon_sym_CARET_CARET] = ACTIONS(4088), - [anon_sym_LBRACK_COLON] = ACTIONS(4088), - [sym_this] = ACTIONS(4086), + [STATE(435)] = { + [sym_identifier] = ACTIONS(4076), + [aux_sym_preproc_include_token1] = ACTIONS(4076), + [aux_sym_preproc_def_token1] = ACTIONS(4076), + [aux_sym_preproc_if_token1] = ACTIONS(4076), + [aux_sym_preproc_if_token2] = ACTIONS(4076), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4076), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4076), + [aux_sym_preproc_else_token1] = ACTIONS(4076), + [aux_sym_preproc_elif_token1] = ACTIONS(4076), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4076), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4076), + [sym_preproc_directive] = ACTIONS(4076), + [anon_sym_LPAREN2] = ACTIONS(4078), + [anon_sym_BANG] = ACTIONS(4078), + [anon_sym_TILDE] = ACTIONS(4078), + [anon_sym_DASH] = ACTIONS(4076), + [anon_sym_PLUS] = ACTIONS(4076), + [anon_sym_STAR] = ACTIONS(4078), + [anon_sym_AMP_AMP] = ACTIONS(4078), + [anon_sym_AMP] = ACTIONS(4076), + [anon_sym_SEMI] = ACTIONS(4078), + [anon_sym___extension__] = ACTIONS(4076), + [anon_sym_typedef] = ACTIONS(4076), + [anon_sym_virtual] = ACTIONS(4076), + [anon_sym_extern] = ACTIONS(4076), + [anon_sym___attribute__] = ACTIONS(4076), + [anon_sym___attribute] = ACTIONS(4076), + [anon_sym_using] = ACTIONS(4076), + [anon_sym_COLON_COLON] = ACTIONS(4078), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4078), + [anon_sym___declspec] = ACTIONS(4076), + [anon_sym___based] = ACTIONS(4076), + [anon_sym___cdecl] = ACTIONS(4076), + [anon_sym___clrcall] = ACTIONS(4076), + [anon_sym___stdcall] = ACTIONS(4076), + [anon_sym___fastcall] = ACTIONS(4076), + [anon_sym___thiscall] = ACTIONS(4076), + [anon_sym___vectorcall] = ACTIONS(4076), + [anon_sym_LBRACE] = ACTIONS(4078), + [anon_sym_signed] = ACTIONS(4076), + [anon_sym_unsigned] = ACTIONS(4076), + [anon_sym_long] = ACTIONS(4076), + [anon_sym_short] = ACTIONS(4076), + [anon_sym_LBRACK] = ACTIONS(4076), + [anon_sym_static] = ACTIONS(4076), + [anon_sym_register] = ACTIONS(4076), + [anon_sym_inline] = ACTIONS(4076), + [anon_sym___inline] = ACTIONS(4076), + [anon_sym___inline__] = ACTIONS(4076), + [anon_sym___forceinline] = ACTIONS(4076), + [anon_sym_thread_local] = ACTIONS(4076), + [anon_sym___thread] = ACTIONS(4076), + [anon_sym_const] = ACTIONS(4076), + [anon_sym_constexpr] = ACTIONS(4076), + [anon_sym_volatile] = ACTIONS(4076), + [anon_sym_restrict] = ACTIONS(4076), + [anon_sym___restrict__] = ACTIONS(4076), + [anon_sym__Atomic] = ACTIONS(4076), + [anon_sym__Noreturn] = ACTIONS(4076), + [anon_sym_noreturn] = ACTIONS(4076), + [anon_sym__Nonnull] = ACTIONS(4076), + [anon_sym_mutable] = ACTIONS(4076), + [anon_sym_constinit] = ACTIONS(4076), + [anon_sym_consteval] = ACTIONS(4076), + [anon_sym_alignas] = ACTIONS(4076), + [anon_sym__Alignas] = ACTIONS(4076), + [sym_primitive_type] = ACTIONS(4076), + [anon_sym_enum] = ACTIONS(4076), + [anon_sym_class] = ACTIONS(4076), + [anon_sym_struct] = ACTIONS(4076), + [anon_sym_union] = ACTIONS(4076), + [anon_sym_if] = ACTIONS(4076), + [anon_sym_switch] = ACTIONS(4076), + [anon_sym_case] = ACTIONS(4076), + [anon_sym_default] = ACTIONS(4076), + [anon_sym_while] = ACTIONS(4076), + [anon_sym_do] = ACTIONS(4076), + [anon_sym_for] = ACTIONS(4076), + [anon_sym_return] = ACTIONS(4076), + [anon_sym_break] = ACTIONS(4076), + [anon_sym_continue] = ACTIONS(4076), + [anon_sym_goto] = ACTIONS(4076), + [anon_sym___try] = ACTIONS(4076), + [anon_sym___leave] = ACTIONS(4076), + [anon_sym_not] = ACTIONS(4076), + [anon_sym_compl] = ACTIONS(4076), + [anon_sym_DASH_DASH] = ACTIONS(4078), + [anon_sym_PLUS_PLUS] = ACTIONS(4078), + [anon_sym_sizeof] = ACTIONS(4076), + [anon_sym___alignof__] = ACTIONS(4076), + [anon_sym___alignof] = ACTIONS(4076), + [anon_sym__alignof] = ACTIONS(4076), + [anon_sym_alignof] = ACTIONS(4076), + [anon_sym__Alignof] = ACTIONS(4076), + [anon_sym_offsetof] = ACTIONS(4076), + [anon_sym__Generic] = ACTIONS(4076), + [anon_sym_typename] = ACTIONS(4076), + [anon_sym_asm] = ACTIONS(4076), + [anon_sym___asm__] = ACTIONS(4076), + [anon_sym___asm] = ACTIONS(4076), + [sym_number_literal] = ACTIONS(4078), + [anon_sym_L_SQUOTE] = ACTIONS(4078), + [anon_sym_u_SQUOTE] = ACTIONS(4078), + [anon_sym_U_SQUOTE] = ACTIONS(4078), + [anon_sym_u8_SQUOTE] = ACTIONS(4078), + [anon_sym_SQUOTE] = ACTIONS(4078), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), + [sym_true] = ACTIONS(4076), + [sym_false] = ACTIONS(4076), + [anon_sym_NULL] = ACTIONS(4076), + [anon_sym_nullptr] = ACTIONS(4076), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4076), + [anon_sym_decltype] = ACTIONS(4076), + [anon_sym_explicit] = ACTIONS(4076), + [anon_sym_export] = ACTIONS(4076), + [anon_sym_module] = ACTIONS(4076), + [anon_sym_import] = ACTIONS(4076), + [anon_sym_template] = ACTIONS(4076), + [anon_sym_operator] = ACTIONS(4076), + [anon_sym_try] = ACTIONS(4076), + [anon_sym_delete] = ACTIONS(4076), + [anon_sym_throw] = ACTIONS(4076), + [anon_sym_namespace] = ACTIONS(4076), + [anon_sym_static_assert] = ACTIONS(4076), + [anon_sym_concept] = ACTIONS(4076), + [anon_sym_co_return] = ACTIONS(4076), + [anon_sym_co_yield] = ACTIONS(4076), + [anon_sym_R_DQUOTE] = ACTIONS(4078), + [anon_sym_LR_DQUOTE] = ACTIONS(4078), + [anon_sym_uR_DQUOTE] = ACTIONS(4078), + [anon_sym_UR_DQUOTE] = ACTIONS(4078), + [anon_sym_u8R_DQUOTE] = ACTIONS(4078), + [anon_sym_co_await] = ACTIONS(4076), + [anon_sym_new] = ACTIONS(4076), + [anon_sym_requires] = ACTIONS(4076), + [anon_sym_CARET_CARET] = ACTIONS(4078), + [anon_sym_LBRACK_COLON] = ACTIONS(4078), + [sym_this] = ACTIONS(4076), }, - [STATE(463)] = { - [ts_builtin_sym_end] = ACTIONS(3730), - [sym_identifier] = ACTIONS(3728), - [aux_sym_preproc_include_token1] = ACTIONS(3728), - [aux_sym_preproc_def_token1] = ACTIONS(3728), - [aux_sym_preproc_if_token1] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), - [sym_preproc_directive] = ACTIONS(3728), - [anon_sym_LPAREN2] = ACTIONS(3730), - [anon_sym_BANG] = ACTIONS(3730), - [anon_sym_TILDE] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3730), - [anon_sym_AMP_AMP] = ACTIONS(3730), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_SEMI] = ACTIONS(3730), - [anon_sym___extension__] = ACTIONS(3728), - [anon_sym_typedef] = ACTIONS(3728), - [anon_sym_virtual] = ACTIONS(3728), - [anon_sym_extern] = ACTIONS(3728), - [anon_sym___attribute__] = ACTIONS(3728), - [anon_sym___attribute] = ACTIONS(3728), - [anon_sym_using] = ACTIONS(3728), - [anon_sym_COLON_COLON] = ACTIONS(3730), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), - [anon_sym___declspec] = ACTIONS(3728), - [anon_sym___based] = ACTIONS(3728), - [anon_sym___cdecl] = ACTIONS(3728), - [anon_sym___clrcall] = ACTIONS(3728), - [anon_sym___stdcall] = ACTIONS(3728), - [anon_sym___fastcall] = ACTIONS(3728), - [anon_sym___thiscall] = ACTIONS(3728), - [anon_sym___vectorcall] = ACTIONS(3728), - [anon_sym_LBRACE] = ACTIONS(3730), - [anon_sym_signed] = ACTIONS(3728), - [anon_sym_unsigned] = ACTIONS(3728), - [anon_sym_long] = ACTIONS(3728), - [anon_sym_short] = ACTIONS(3728), - [anon_sym_LBRACK] = ACTIONS(3728), - [anon_sym_static] = ACTIONS(3728), - [anon_sym_register] = ACTIONS(3728), - [anon_sym_inline] = ACTIONS(3728), - [anon_sym___inline] = ACTIONS(3728), - [anon_sym___inline__] = ACTIONS(3728), - [anon_sym___forceinline] = ACTIONS(3728), - [anon_sym_thread_local] = ACTIONS(3728), - [anon_sym___thread] = ACTIONS(3728), - [anon_sym_const] = ACTIONS(3728), - [anon_sym_constexpr] = ACTIONS(3728), - [anon_sym_volatile] = ACTIONS(3728), - [anon_sym_restrict] = ACTIONS(3728), - [anon_sym___restrict__] = ACTIONS(3728), - [anon_sym__Atomic] = ACTIONS(3728), - [anon_sym__Noreturn] = ACTIONS(3728), - [anon_sym_noreturn] = ACTIONS(3728), - [anon_sym__Nonnull] = ACTIONS(3728), - [anon_sym_mutable] = ACTIONS(3728), - [anon_sym_constinit] = ACTIONS(3728), - [anon_sym_consteval] = ACTIONS(3728), - [anon_sym_alignas] = ACTIONS(3728), - [anon_sym__Alignas] = ACTIONS(3728), - [sym_primitive_type] = ACTIONS(3728), - [anon_sym_enum] = ACTIONS(3728), - [anon_sym_class] = ACTIONS(3728), - [anon_sym_struct] = ACTIONS(3728), - [anon_sym_union] = ACTIONS(3728), - [anon_sym_if] = ACTIONS(3728), - [anon_sym_else] = ACTIONS(3728), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_case] = ACTIONS(3728), - [anon_sym_default] = ACTIONS(3728), - [anon_sym_while] = ACTIONS(3728), - [anon_sym_do] = ACTIONS(3728), - [anon_sym_for] = ACTIONS(3728), - [anon_sym_return] = ACTIONS(3728), - [anon_sym_break] = ACTIONS(3728), - [anon_sym_continue] = ACTIONS(3728), - [anon_sym_goto] = ACTIONS(3728), - [anon_sym___try] = ACTIONS(3728), - [anon_sym___leave] = ACTIONS(3728), - [anon_sym_not] = ACTIONS(3728), - [anon_sym_compl] = ACTIONS(3728), - [anon_sym_DASH_DASH] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3730), - [anon_sym_sizeof] = ACTIONS(3728), - [anon_sym___alignof__] = ACTIONS(3728), - [anon_sym___alignof] = ACTIONS(3728), - [anon_sym__alignof] = ACTIONS(3728), - [anon_sym_alignof] = ACTIONS(3728), - [anon_sym__Alignof] = ACTIONS(3728), - [anon_sym_offsetof] = ACTIONS(3728), - [anon_sym__Generic] = ACTIONS(3728), - [anon_sym_typename] = ACTIONS(3728), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [anon_sym___asm] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3730), - [anon_sym_u_SQUOTE] = ACTIONS(3730), - [anon_sym_U_SQUOTE] = ACTIONS(3730), - [anon_sym_u8_SQUOTE] = ACTIONS(3730), - [anon_sym_SQUOTE] = ACTIONS(3730), - [anon_sym_L_DQUOTE] = ACTIONS(3730), - [anon_sym_u_DQUOTE] = ACTIONS(3730), - [anon_sym_U_DQUOTE] = ACTIONS(3730), - [anon_sym_u8_DQUOTE] = ACTIONS(3730), - [anon_sym_DQUOTE] = ACTIONS(3730), - [sym_true] = ACTIONS(3728), - [sym_false] = ACTIONS(3728), - [anon_sym_NULL] = ACTIONS(3728), - [anon_sym_nullptr] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3728), - [anon_sym_decltype] = ACTIONS(3728), - [anon_sym_explicit] = ACTIONS(3728), - [anon_sym_export] = ACTIONS(3728), - [anon_sym_module] = ACTIONS(3728), - [anon_sym_import] = ACTIONS(3728), - [anon_sym_template] = ACTIONS(3728), - [anon_sym_operator] = ACTIONS(3728), - [anon_sym_try] = ACTIONS(3728), - [anon_sym_delete] = ACTIONS(3728), - [anon_sym_throw] = ACTIONS(3728), - [anon_sym_namespace] = ACTIONS(3728), - [anon_sym_static_assert] = ACTIONS(3728), - [anon_sym_concept] = ACTIONS(3728), - [anon_sym_co_return] = ACTIONS(3728), - [anon_sym_co_yield] = ACTIONS(3728), - [anon_sym_R_DQUOTE] = ACTIONS(3730), - [anon_sym_LR_DQUOTE] = ACTIONS(3730), - [anon_sym_uR_DQUOTE] = ACTIONS(3730), - [anon_sym_UR_DQUOTE] = ACTIONS(3730), - [anon_sym_u8R_DQUOTE] = ACTIONS(3730), - [anon_sym_co_await] = ACTIONS(3728), - [anon_sym_new] = ACTIONS(3728), - [anon_sym_requires] = ACTIONS(3728), - [anon_sym_CARET_CARET] = ACTIONS(3730), - [anon_sym_LBRACK_COLON] = ACTIONS(3730), - [sym_this] = ACTIONS(3728), + [STATE(436)] = { + [sym_expression] = STATE(6487), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(3106), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3123), + [anon_sym_virtual] = ACTIONS(3128), + [anon_sym_extern] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym___declspec] = ACTIONS(3128), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_register] = ACTIONS(3128), + [anon_sym_inline] = ACTIONS(3128), + [anon_sym___inline] = ACTIONS(3128), + [anon_sym___inline__] = ACTIONS(3128), + [anon_sym___forceinline] = ACTIONS(3128), + [anon_sym_thread_local] = ACTIONS(3128), + [anon_sym___thread] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3139), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(3145), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(3148), + [sym_this] = ACTIONS(237), }, - [STATE(464)] = { - [sym_identifier] = ACTIONS(4090), - [aux_sym_preproc_include_token1] = ACTIONS(4090), - [aux_sym_preproc_def_token1] = ACTIONS(4090), - [aux_sym_preproc_if_token1] = ACTIONS(4090), - [aux_sym_preproc_if_token2] = ACTIONS(4090), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4090), - [aux_sym_preproc_else_token1] = ACTIONS(4090), - [aux_sym_preproc_elif_token1] = ACTIONS(4090), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4090), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4090), - [sym_preproc_directive] = ACTIONS(4090), - [anon_sym_LPAREN2] = ACTIONS(4092), - [anon_sym_BANG] = ACTIONS(4092), - [anon_sym_TILDE] = ACTIONS(4092), - [anon_sym_DASH] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4090), - [anon_sym_STAR] = ACTIONS(4092), - [anon_sym_AMP_AMP] = ACTIONS(4092), - [anon_sym_AMP] = ACTIONS(4090), - [anon_sym_SEMI] = ACTIONS(4092), - [anon_sym___extension__] = ACTIONS(4090), - [anon_sym_typedef] = ACTIONS(4090), - [anon_sym_virtual] = ACTIONS(4090), - [anon_sym_extern] = ACTIONS(4090), - [anon_sym___attribute__] = ACTIONS(4090), - [anon_sym___attribute] = ACTIONS(4090), - [anon_sym_using] = ACTIONS(4090), - [anon_sym_COLON_COLON] = ACTIONS(4092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4092), - [anon_sym___declspec] = ACTIONS(4090), - [anon_sym___based] = ACTIONS(4090), - [anon_sym___cdecl] = ACTIONS(4090), - [anon_sym___clrcall] = ACTIONS(4090), - [anon_sym___stdcall] = ACTIONS(4090), - [anon_sym___fastcall] = ACTIONS(4090), - [anon_sym___thiscall] = ACTIONS(4090), - [anon_sym___vectorcall] = ACTIONS(4090), - [anon_sym_LBRACE] = ACTIONS(4092), - [anon_sym_signed] = ACTIONS(4090), - [anon_sym_unsigned] = ACTIONS(4090), - [anon_sym_long] = ACTIONS(4090), - [anon_sym_short] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_static] = ACTIONS(4090), - [anon_sym_register] = ACTIONS(4090), - [anon_sym_inline] = ACTIONS(4090), - [anon_sym___inline] = ACTIONS(4090), - [anon_sym___inline__] = ACTIONS(4090), - [anon_sym___forceinline] = ACTIONS(4090), - [anon_sym_thread_local] = ACTIONS(4090), - [anon_sym___thread] = ACTIONS(4090), - [anon_sym_const] = ACTIONS(4090), - [anon_sym_constexpr] = ACTIONS(4090), - [anon_sym_volatile] = ACTIONS(4090), - [anon_sym_restrict] = ACTIONS(4090), - [anon_sym___restrict__] = ACTIONS(4090), - [anon_sym__Atomic] = ACTIONS(4090), - [anon_sym__Noreturn] = ACTIONS(4090), - [anon_sym_noreturn] = ACTIONS(4090), - [anon_sym__Nonnull] = ACTIONS(4090), - [anon_sym_mutable] = ACTIONS(4090), - [anon_sym_constinit] = ACTIONS(4090), - [anon_sym_consteval] = ACTIONS(4090), - [anon_sym_alignas] = ACTIONS(4090), - [anon_sym__Alignas] = ACTIONS(4090), - [sym_primitive_type] = ACTIONS(4090), - [anon_sym_enum] = ACTIONS(4090), - [anon_sym_class] = ACTIONS(4090), - [anon_sym_struct] = ACTIONS(4090), - [anon_sym_union] = ACTIONS(4090), - [anon_sym_if] = ACTIONS(4090), - [anon_sym_switch] = ACTIONS(4090), - [anon_sym_case] = ACTIONS(4090), - [anon_sym_default] = ACTIONS(4090), - [anon_sym_while] = ACTIONS(4090), - [anon_sym_do] = ACTIONS(4090), - [anon_sym_for] = ACTIONS(4090), - [anon_sym_return] = ACTIONS(4090), - [anon_sym_break] = ACTIONS(4090), - [anon_sym_continue] = ACTIONS(4090), - [anon_sym_goto] = ACTIONS(4090), - [anon_sym___try] = ACTIONS(4090), - [anon_sym___leave] = ACTIONS(4090), - [anon_sym_not] = ACTIONS(4090), - [anon_sym_compl] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4092), - [anon_sym_PLUS_PLUS] = ACTIONS(4092), - [anon_sym_sizeof] = ACTIONS(4090), - [anon_sym___alignof__] = ACTIONS(4090), - [anon_sym___alignof] = ACTIONS(4090), - [anon_sym__alignof] = ACTIONS(4090), - [anon_sym_alignof] = ACTIONS(4090), - [anon_sym__Alignof] = ACTIONS(4090), - [anon_sym_offsetof] = ACTIONS(4090), - [anon_sym__Generic] = ACTIONS(4090), - [anon_sym_typename] = ACTIONS(4090), - [anon_sym_asm] = ACTIONS(4090), - [anon_sym___asm__] = ACTIONS(4090), - [anon_sym___asm] = ACTIONS(4090), - [sym_number_literal] = ACTIONS(4092), - [anon_sym_L_SQUOTE] = ACTIONS(4092), - [anon_sym_u_SQUOTE] = ACTIONS(4092), - [anon_sym_U_SQUOTE] = ACTIONS(4092), - [anon_sym_u8_SQUOTE] = ACTIONS(4092), - [anon_sym_SQUOTE] = ACTIONS(4092), - [anon_sym_L_DQUOTE] = ACTIONS(4092), - [anon_sym_u_DQUOTE] = ACTIONS(4092), - [anon_sym_U_DQUOTE] = ACTIONS(4092), - [anon_sym_u8_DQUOTE] = ACTIONS(4092), - [anon_sym_DQUOTE] = ACTIONS(4092), - [sym_true] = ACTIONS(4090), - [sym_false] = ACTIONS(4090), - [anon_sym_NULL] = ACTIONS(4090), - [anon_sym_nullptr] = ACTIONS(4090), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4090), - [anon_sym_decltype] = ACTIONS(4090), - [anon_sym_explicit] = ACTIONS(4090), - [anon_sym_template] = ACTIONS(4090), - [anon_sym_operator] = ACTIONS(4090), - [anon_sym_try] = ACTIONS(4090), - [anon_sym_delete] = ACTIONS(4090), - [anon_sym_throw] = ACTIONS(4090), - [anon_sym_namespace] = ACTIONS(4090), - [anon_sym_static_assert] = ACTIONS(4090), - [anon_sym_concept] = ACTIONS(4090), - [anon_sym_co_return] = ACTIONS(4090), - [anon_sym_co_yield] = ACTIONS(4090), - [anon_sym_R_DQUOTE] = ACTIONS(4092), - [anon_sym_LR_DQUOTE] = ACTIONS(4092), - [anon_sym_uR_DQUOTE] = ACTIONS(4092), - [anon_sym_UR_DQUOTE] = ACTIONS(4092), - [anon_sym_u8R_DQUOTE] = ACTIONS(4092), - [anon_sym_co_await] = ACTIONS(4090), - [anon_sym_new] = ACTIONS(4090), - [anon_sym_requires] = ACTIONS(4090), - [anon_sym_CARET_CARET] = ACTIONS(4092), - [anon_sym_LBRACK_COLON] = ACTIONS(4092), - [sym_this] = ACTIONS(4090), + [STATE(437)] = { + [sym_identifier] = ACTIONS(4080), + [aux_sym_preproc_include_token1] = ACTIONS(4080), + [aux_sym_preproc_def_token1] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(4080), + [aux_sym_preproc_if_token2] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), + [aux_sym_preproc_else_token1] = ACTIONS(4080), + [aux_sym_preproc_elif_token1] = ACTIONS(4080), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4080), + [sym_preproc_directive] = ACTIONS(4080), + [anon_sym_LPAREN2] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_TILDE] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4080), + [anon_sym_PLUS] = ACTIONS(4080), + [anon_sym_STAR] = ACTIONS(4082), + [anon_sym_AMP_AMP] = ACTIONS(4082), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_SEMI] = ACTIONS(4082), + [anon_sym___extension__] = ACTIONS(4080), + [anon_sym_typedef] = ACTIONS(4080), + [anon_sym_virtual] = ACTIONS(4080), + [anon_sym_extern] = ACTIONS(4080), + [anon_sym___attribute__] = ACTIONS(4080), + [anon_sym___attribute] = ACTIONS(4080), + [anon_sym_using] = ACTIONS(4080), + [anon_sym_COLON_COLON] = ACTIONS(4082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), + [anon_sym___declspec] = ACTIONS(4080), + [anon_sym___based] = ACTIONS(4080), + [anon_sym___cdecl] = ACTIONS(4080), + [anon_sym___clrcall] = ACTIONS(4080), + [anon_sym___stdcall] = ACTIONS(4080), + [anon_sym___fastcall] = ACTIONS(4080), + [anon_sym___thiscall] = ACTIONS(4080), + [anon_sym___vectorcall] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4082), + [anon_sym_signed] = ACTIONS(4080), + [anon_sym_unsigned] = ACTIONS(4080), + [anon_sym_long] = ACTIONS(4080), + [anon_sym_short] = ACTIONS(4080), + [anon_sym_LBRACK] = ACTIONS(4080), + [anon_sym_static] = ACTIONS(4080), + [anon_sym_register] = ACTIONS(4080), + [anon_sym_inline] = ACTIONS(4080), + [anon_sym___inline] = ACTIONS(4080), + [anon_sym___inline__] = ACTIONS(4080), + [anon_sym___forceinline] = ACTIONS(4080), + [anon_sym_thread_local] = ACTIONS(4080), + [anon_sym___thread] = ACTIONS(4080), + [anon_sym_const] = ACTIONS(4080), + [anon_sym_constexpr] = ACTIONS(4080), + [anon_sym_volatile] = ACTIONS(4080), + [anon_sym_restrict] = ACTIONS(4080), + [anon_sym___restrict__] = ACTIONS(4080), + [anon_sym__Atomic] = ACTIONS(4080), + [anon_sym__Noreturn] = ACTIONS(4080), + [anon_sym_noreturn] = ACTIONS(4080), + [anon_sym__Nonnull] = ACTIONS(4080), + [anon_sym_mutable] = ACTIONS(4080), + [anon_sym_constinit] = ACTIONS(4080), + [anon_sym_consteval] = ACTIONS(4080), + [anon_sym_alignas] = ACTIONS(4080), + [anon_sym__Alignas] = ACTIONS(4080), + [sym_primitive_type] = ACTIONS(4080), + [anon_sym_enum] = ACTIONS(4080), + [anon_sym_class] = ACTIONS(4080), + [anon_sym_struct] = ACTIONS(4080), + [anon_sym_union] = ACTIONS(4080), + [anon_sym_if] = ACTIONS(4080), + [anon_sym_switch] = ACTIONS(4080), + [anon_sym_case] = ACTIONS(4080), + [anon_sym_default] = ACTIONS(4080), + [anon_sym_while] = ACTIONS(4080), + [anon_sym_do] = ACTIONS(4080), + [anon_sym_for] = ACTIONS(4080), + [anon_sym_return] = ACTIONS(4080), + [anon_sym_break] = ACTIONS(4080), + [anon_sym_continue] = ACTIONS(4080), + [anon_sym_goto] = ACTIONS(4080), + [anon_sym___try] = ACTIONS(4080), + [anon_sym___leave] = ACTIONS(4080), + [anon_sym_not] = ACTIONS(4080), + [anon_sym_compl] = ACTIONS(4080), + [anon_sym_DASH_DASH] = ACTIONS(4082), + [anon_sym_PLUS_PLUS] = ACTIONS(4082), + [anon_sym_sizeof] = ACTIONS(4080), + [anon_sym___alignof__] = ACTIONS(4080), + [anon_sym___alignof] = ACTIONS(4080), + [anon_sym__alignof] = ACTIONS(4080), + [anon_sym_alignof] = ACTIONS(4080), + [anon_sym__Alignof] = ACTIONS(4080), + [anon_sym_offsetof] = ACTIONS(4080), + [anon_sym__Generic] = ACTIONS(4080), + [anon_sym_typename] = ACTIONS(4080), + [anon_sym_asm] = ACTIONS(4080), + [anon_sym___asm__] = ACTIONS(4080), + [anon_sym___asm] = ACTIONS(4080), + [sym_number_literal] = ACTIONS(4082), + [anon_sym_L_SQUOTE] = ACTIONS(4082), + [anon_sym_u_SQUOTE] = ACTIONS(4082), + [anon_sym_U_SQUOTE] = ACTIONS(4082), + [anon_sym_u8_SQUOTE] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4082), + [anon_sym_L_DQUOTE] = ACTIONS(4082), + [anon_sym_u_DQUOTE] = ACTIONS(4082), + [anon_sym_U_DQUOTE] = ACTIONS(4082), + [anon_sym_u8_DQUOTE] = ACTIONS(4082), + [anon_sym_DQUOTE] = ACTIONS(4082), + [sym_true] = ACTIONS(4080), + [sym_false] = ACTIONS(4080), + [anon_sym_NULL] = ACTIONS(4080), + [anon_sym_nullptr] = ACTIONS(4080), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4080), + [anon_sym_decltype] = ACTIONS(4080), + [anon_sym_explicit] = ACTIONS(4080), + [anon_sym_export] = ACTIONS(4080), + [anon_sym_module] = ACTIONS(4080), + [anon_sym_import] = ACTIONS(4080), + [anon_sym_template] = ACTIONS(4080), + [anon_sym_operator] = ACTIONS(4080), + [anon_sym_try] = ACTIONS(4080), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_throw] = ACTIONS(4080), + [anon_sym_namespace] = ACTIONS(4080), + [anon_sym_static_assert] = ACTIONS(4080), + [anon_sym_concept] = ACTIONS(4080), + [anon_sym_co_return] = ACTIONS(4080), + [anon_sym_co_yield] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4080), + [anon_sym_new] = ACTIONS(4080), + [anon_sym_requires] = ACTIONS(4080), + [anon_sym_CARET_CARET] = ACTIONS(4082), + [anon_sym_LBRACK_COLON] = ACTIONS(4082), + [sym_this] = ACTIONS(4080), }, - [STATE(465)] = { - [ts_builtin_sym_end] = ACTIONS(3730), - [sym_identifier] = ACTIONS(3728), - [aux_sym_preproc_include_token1] = ACTIONS(3728), - [aux_sym_preproc_def_token1] = ACTIONS(3728), - [aux_sym_preproc_if_token1] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), - [sym_preproc_directive] = ACTIONS(3728), - [anon_sym_LPAREN2] = ACTIONS(3730), - [anon_sym_BANG] = ACTIONS(3730), - [anon_sym_TILDE] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3730), - [anon_sym_AMP_AMP] = ACTIONS(3730), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_SEMI] = ACTIONS(3730), - [anon_sym___extension__] = ACTIONS(3728), - [anon_sym_typedef] = ACTIONS(3728), - [anon_sym_virtual] = ACTIONS(3728), - [anon_sym_extern] = ACTIONS(3728), - [anon_sym___attribute__] = ACTIONS(3728), - [anon_sym___attribute] = ACTIONS(3728), - [anon_sym_using] = ACTIONS(3728), - [anon_sym_COLON_COLON] = ACTIONS(3730), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), - [anon_sym___declspec] = ACTIONS(3728), - [anon_sym___based] = ACTIONS(3728), - [anon_sym___cdecl] = ACTIONS(3728), - [anon_sym___clrcall] = ACTIONS(3728), - [anon_sym___stdcall] = ACTIONS(3728), - [anon_sym___fastcall] = ACTIONS(3728), - [anon_sym___thiscall] = ACTIONS(3728), - [anon_sym___vectorcall] = ACTIONS(3728), - [anon_sym_LBRACE] = ACTIONS(3730), - [anon_sym_signed] = ACTIONS(3728), - [anon_sym_unsigned] = ACTIONS(3728), - [anon_sym_long] = ACTIONS(3728), - [anon_sym_short] = ACTIONS(3728), - [anon_sym_LBRACK] = ACTIONS(3728), - [anon_sym_static] = ACTIONS(3728), - [anon_sym_register] = ACTIONS(3728), - [anon_sym_inline] = ACTIONS(3728), - [anon_sym___inline] = ACTIONS(3728), - [anon_sym___inline__] = ACTIONS(3728), - [anon_sym___forceinline] = ACTIONS(3728), - [anon_sym_thread_local] = ACTIONS(3728), - [anon_sym___thread] = ACTIONS(3728), - [anon_sym_const] = ACTIONS(3728), - [anon_sym_constexpr] = ACTIONS(3728), - [anon_sym_volatile] = ACTIONS(3728), - [anon_sym_restrict] = ACTIONS(3728), - [anon_sym___restrict__] = ACTIONS(3728), - [anon_sym__Atomic] = ACTIONS(3728), - [anon_sym__Noreturn] = ACTIONS(3728), - [anon_sym_noreturn] = ACTIONS(3728), - [anon_sym__Nonnull] = ACTIONS(3728), - [anon_sym_mutable] = ACTIONS(3728), - [anon_sym_constinit] = ACTIONS(3728), - [anon_sym_consteval] = ACTIONS(3728), - [anon_sym_alignas] = ACTIONS(3728), - [anon_sym__Alignas] = ACTIONS(3728), - [sym_primitive_type] = ACTIONS(3728), - [anon_sym_enum] = ACTIONS(3728), - [anon_sym_class] = ACTIONS(3728), - [anon_sym_struct] = ACTIONS(3728), - [anon_sym_union] = ACTIONS(3728), - [anon_sym_if] = ACTIONS(3728), - [anon_sym_else] = ACTIONS(3728), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_case] = ACTIONS(3728), - [anon_sym_default] = ACTIONS(3728), - [anon_sym_while] = ACTIONS(3728), - [anon_sym_do] = ACTIONS(3728), - [anon_sym_for] = ACTIONS(3728), - [anon_sym_return] = ACTIONS(3728), - [anon_sym_break] = ACTIONS(3728), - [anon_sym_continue] = ACTIONS(3728), - [anon_sym_goto] = ACTIONS(3728), - [anon_sym___try] = ACTIONS(3728), - [anon_sym___leave] = ACTIONS(3728), - [anon_sym_not] = ACTIONS(3728), - [anon_sym_compl] = ACTIONS(3728), - [anon_sym_DASH_DASH] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3730), - [anon_sym_sizeof] = ACTIONS(3728), - [anon_sym___alignof__] = ACTIONS(3728), - [anon_sym___alignof] = ACTIONS(3728), - [anon_sym__alignof] = ACTIONS(3728), - [anon_sym_alignof] = ACTIONS(3728), - [anon_sym__Alignof] = ACTIONS(3728), - [anon_sym_offsetof] = ACTIONS(3728), - [anon_sym__Generic] = ACTIONS(3728), - [anon_sym_typename] = ACTIONS(3728), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [anon_sym___asm] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3730), - [anon_sym_u_SQUOTE] = ACTIONS(3730), - [anon_sym_U_SQUOTE] = ACTIONS(3730), - [anon_sym_u8_SQUOTE] = ACTIONS(3730), - [anon_sym_SQUOTE] = ACTIONS(3730), - [anon_sym_L_DQUOTE] = ACTIONS(3730), - [anon_sym_u_DQUOTE] = ACTIONS(3730), - [anon_sym_U_DQUOTE] = ACTIONS(3730), - [anon_sym_u8_DQUOTE] = ACTIONS(3730), - [anon_sym_DQUOTE] = ACTIONS(3730), - [sym_true] = ACTIONS(3728), - [sym_false] = ACTIONS(3728), - [anon_sym_NULL] = ACTIONS(3728), - [anon_sym_nullptr] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3728), - [anon_sym_decltype] = ACTIONS(3728), - [anon_sym_explicit] = ACTIONS(3728), - [anon_sym_export] = ACTIONS(3728), - [anon_sym_module] = ACTIONS(3728), - [anon_sym_import] = ACTIONS(3728), - [anon_sym_template] = ACTIONS(3728), - [anon_sym_operator] = ACTIONS(3728), - [anon_sym_try] = ACTIONS(3728), - [anon_sym_delete] = ACTIONS(3728), - [anon_sym_throw] = ACTIONS(3728), - [anon_sym_namespace] = ACTIONS(3728), - [anon_sym_static_assert] = ACTIONS(3728), - [anon_sym_concept] = ACTIONS(3728), - [anon_sym_co_return] = ACTIONS(3728), - [anon_sym_co_yield] = ACTIONS(3728), - [anon_sym_R_DQUOTE] = ACTIONS(3730), - [anon_sym_LR_DQUOTE] = ACTIONS(3730), - [anon_sym_uR_DQUOTE] = ACTIONS(3730), - [anon_sym_UR_DQUOTE] = ACTIONS(3730), - [anon_sym_u8R_DQUOTE] = ACTIONS(3730), - [anon_sym_co_await] = ACTIONS(3728), - [anon_sym_new] = ACTIONS(3728), - [anon_sym_requires] = ACTIONS(3728), - [anon_sym_CARET_CARET] = ACTIONS(3730), - [anon_sym_LBRACK_COLON] = ACTIONS(3730), - [sym_this] = ACTIONS(3728), + [STATE(438)] = { + [sym_identifier] = ACTIONS(4080), + [aux_sym_preproc_include_token1] = ACTIONS(4080), + [aux_sym_preproc_def_token1] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(4080), + [aux_sym_preproc_if_token2] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), + [aux_sym_preproc_else_token1] = ACTIONS(4080), + [aux_sym_preproc_elif_token1] = ACTIONS(4080), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4080), + [sym_preproc_directive] = ACTIONS(4080), + [anon_sym_LPAREN2] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_TILDE] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4080), + [anon_sym_PLUS] = ACTIONS(4080), + [anon_sym_STAR] = ACTIONS(4082), + [anon_sym_AMP_AMP] = ACTIONS(4082), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_SEMI] = ACTIONS(4082), + [anon_sym___extension__] = ACTIONS(4080), + [anon_sym_typedef] = ACTIONS(4080), + [anon_sym_virtual] = ACTIONS(4080), + [anon_sym_extern] = ACTIONS(4080), + [anon_sym___attribute__] = ACTIONS(4080), + [anon_sym___attribute] = ACTIONS(4080), + [anon_sym_using] = ACTIONS(4080), + [anon_sym_COLON_COLON] = ACTIONS(4082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), + [anon_sym___declspec] = ACTIONS(4080), + [anon_sym___based] = ACTIONS(4080), + [anon_sym___cdecl] = ACTIONS(4080), + [anon_sym___clrcall] = ACTIONS(4080), + [anon_sym___stdcall] = ACTIONS(4080), + [anon_sym___fastcall] = ACTIONS(4080), + [anon_sym___thiscall] = ACTIONS(4080), + [anon_sym___vectorcall] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4082), + [anon_sym_signed] = ACTIONS(4080), + [anon_sym_unsigned] = ACTIONS(4080), + [anon_sym_long] = ACTIONS(4080), + [anon_sym_short] = ACTIONS(4080), + [anon_sym_LBRACK] = ACTIONS(4080), + [anon_sym_static] = ACTIONS(4080), + [anon_sym_register] = ACTIONS(4080), + [anon_sym_inline] = ACTIONS(4080), + [anon_sym___inline] = ACTIONS(4080), + [anon_sym___inline__] = ACTIONS(4080), + [anon_sym___forceinline] = ACTIONS(4080), + [anon_sym_thread_local] = ACTIONS(4080), + [anon_sym___thread] = ACTIONS(4080), + [anon_sym_const] = ACTIONS(4080), + [anon_sym_constexpr] = ACTIONS(4080), + [anon_sym_volatile] = ACTIONS(4080), + [anon_sym_restrict] = ACTIONS(4080), + [anon_sym___restrict__] = ACTIONS(4080), + [anon_sym__Atomic] = ACTIONS(4080), + [anon_sym__Noreturn] = ACTIONS(4080), + [anon_sym_noreturn] = ACTIONS(4080), + [anon_sym__Nonnull] = ACTIONS(4080), + [anon_sym_mutable] = ACTIONS(4080), + [anon_sym_constinit] = ACTIONS(4080), + [anon_sym_consteval] = ACTIONS(4080), + [anon_sym_alignas] = ACTIONS(4080), + [anon_sym__Alignas] = ACTIONS(4080), + [sym_primitive_type] = ACTIONS(4080), + [anon_sym_enum] = ACTIONS(4080), + [anon_sym_class] = ACTIONS(4080), + [anon_sym_struct] = ACTIONS(4080), + [anon_sym_union] = ACTIONS(4080), + [anon_sym_if] = ACTIONS(4080), + [anon_sym_switch] = ACTIONS(4080), + [anon_sym_case] = ACTIONS(4080), + [anon_sym_default] = ACTIONS(4080), + [anon_sym_while] = ACTIONS(4080), + [anon_sym_do] = ACTIONS(4080), + [anon_sym_for] = ACTIONS(4080), + [anon_sym_return] = ACTIONS(4080), + [anon_sym_break] = ACTIONS(4080), + [anon_sym_continue] = ACTIONS(4080), + [anon_sym_goto] = ACTIONS(4080), + [anon_sym___try] = ACTIONS(4080), + [anon_sym___leave] = ACTIONS(4080), + [anon_sym_not] = ACTIONS(4080), + [anon_sym_compl] = ACTIONS(4080), + [anon_sym_DASH_DASH] = ACTIONS(4082), + [anon_sym_PLUS_PLUS] = ACTIONS(4082), + [anon_sym_sizeof] = ACTIONS(4080), + [anon_sym___alignof__] = ACTIONS(4080), + [anon_sym___alignof] = ACTIONS(4080), + [anon_sym__alignof] = ACTIONS(4080), + [anon_sym_alignof] = ACTIONS(4080), + [anon_sym__Alignof] = ACTIONS(4080), + [anon_sym_offsetof] = ACTIONS(4080), + [anon_sym__Generic] = ACTIONS(4080), + [anon_sym_typename] = ACTIONS(4080), + [anon_sym_asm] = ACTIONS(4080), + [anon_sym___asm__] = ACTIONS(4080), + [anon_sym___asm] = ACTIONS(4080), + [sym_number_literal] = ACTIONS(4082), + [anon_sym_L_SQUOTE] = ACTIONS(4082), + [anon_sym_u_SQUOTE] = ACTIONS(4082), + [anon_sym_U_SQUOTE] = ACTIONS(4082), + [anon_sym_u8_SQUOTE] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4082), + [anon_sym_L_DQUOTE] = ACTIONS(4082), + [anon_sym_u_DQUOTE] = ACTIONS(4082), + [anon_sym_U_DQUOTE] = ACTIONS(4082), + [anon_sym_u8_DQUOTE] = ACTIONS(4082), + [anon_sym_DQUOTE] = ACTIONS(4082), + [sym_true] = ACTIONS(4080), + [sym_false] = ACTIONS(4080), + [anon_sym_NULL] = ACTIONS(4080), + [anon_sym_nullptr] = ACTIONS(4080), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4080), + [anon_sym_decltype] = ACTIONS(4080), + [anon_sym_explicit] = ACTIONS(4080), + [anon_sym_export] = ACTIONS(4080), + [anon_sym_module] = ACTIONS(4080), + [anon_sym_import] = ACTIONS(4080), + [anon_sym_template] = ACTIONS(4080), + [anon_sym_operator] = ACTIONS(4080), + [anon_sym_try] = ACTIONS(4080), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_throw] = ACTIONS(4080), + [anon_sym_namespace] = ACTIONS(4080), + [anon_sym_static_assert] = ACTIONS(4080), + [anon_sym_concept] = ACTIONS(4080), + [anon_sym_co_return] = ACTIONS(4080), + [anon_sym_co_yield] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4080), + [anon_sym_new] = ACTIONS(4080), + [anon_sym_requires] = ACTIONS(4080), + [anon_sym_CARET_CARET] = ACTIONS(4082), + [anon_sym_LBRACK_COLON] = ACTIONS(4082), + [sym_this] = ACTIONS(4080), }, - [STATE(466)] = { - [ts_builtin_sym_end] = ACTIONS(3706), - [sym_identifier] = ACTIONS(3704), - [aux_sym_preproc_include_token1] = ACTIONS(3704), - [aux_sym_preproc_def_token1] = ACTIONS(3704), - [aux_sym_preproc_if_token1] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), - [sym_preproc_directive] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3706), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3706), - [anon_sym___extension__] = ACTIONS(3704), - [anon_sym_typedef] = ACTIONS(3704), - [anon_sym_virtual] = ACTIONS(3704), - [anon_sym_extern] = ACTIONS(3704), - [anon_sym___attribute__] = ACTIONS(3704), - [anon_sym___attribute] = ACTIONS(3704), - [anon_sym_using] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), - [anon_sym___declspec] = ACTIONS(3704), - [anon_sym___based] = ACTIONS(3704), - [anon_sym___cdecl] = ACTIONS(3704), - [anon_sym___clrcall] = ACTIONS(3704), - [anon_sym___stdcall] = ACTIONS(3704), - [anon_sym___fastcall] = ACTIONS(3704), - [anon_sym___thiscall] = ACTIONS(3704), - [anon_sym___vectorcall] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3706), - [anon_sym_signed] = ACTIONS(3704), - [anon_sym_unsigned] = ACTIONS(3704), - [anon_sym_long] = ACTIONS(3704), - [anon_sym_short] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_static] = ACTIONS(3704), - [anon_sym_register] = ACTIONS(3704), - [anon_sym_inline] = ACTIONS(3704), - [anon_sym___inline] = ACTIONS(3704), - [anon_sym___inline__] = ACTIONS(3704), - [anon_sym___forceinline] = ACTIONS(3704), - [anon_sym_thread_local] = ACTIONS(3704), - [anon_sym___thread] = ACTIONS(3704), - [anon_sym_const] = ACTIONS(3704), - [anon_sym_constexpr] = ACTIONS(3704), - [anon_sym_volatile] = ACTIONS(3704), - [anon_sym_restrict] = ACTIONS(3704), - [anon_sym___restrict__] = ACTIONS(3704), - [anon_sym__Atomic] = ACTIONS(3704), - [anon_sym__Noreturn] = ACTIONS(3704), - [anon_sym_noreturn] = ACTIONS(3704), - [anon_sym__Nonnull] = ACTIONS(3704), - [anon_sym_mutable] = ACTIONS(3704), - [anon_sym_constinit] = ACTIONS(3704), - [anon_sym_consteval] = ACTIONS(3704), - [anon_sym_alignas] = ACTIONS(3704), - [anon_sym__Alignas] = ACTIONS(3704), - [sym_primitive_type] = ACTIONS(3704), - [anon_sym_enum] = ACTIONS(3704), - [anon_sym_class] = ACTIONS(3704), - [anon_sym_struct] = ACTIONS(3704), - [anon_sym_union] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_else] = ACTIONS(3704), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_case] = ACTIONS(3704), - [anon_sym_default] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_break] = ACTIONS(3704), - [anon_sym_continue] = ACTIONS(3704), - [anon_sym_goto] = ACTIONS(3704), - [anon_sym___try] = ACTIONS(3704), - [anon_sym___leave] = ACTIONS(3704), - [anon_sym_not] = ACTIONS(3704), - [anon_sym_compl] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_sizeof] = ACTIONS(3704), - [anon_sym___alignof__] = ACTIONS(3704), - [anon_sym___alignof] = ACTIONS(3704), - [anon_sym__alignof] = ACTIONS(3704), - [anon_sym_alignof] = ACTIONS(3704), - [anon_sym__Alignof] = ACTIONS(3704), - [anon_sym_offsetof] = ACTIONS(3704), - [anon_sym__Generic] = ACTIONS(3704), - [anon_sym_typename] = ACTIONS(3704), - [anon_sym_asm] = ACTIONS(3704), - [anon_sym___asm__] = ACTIONS(3704), - [anon_sym___asm] = ACTIONS(3704), - [sym_number_literal] = ACTIONS(3706), - [anon_sym_L_SQUOTE] = ACTIONS(3706), - [anon_sym_u_SQUOTE] = ACTIONS(3706), - [anon_sym_U_SQUOTE] = ACTIONS(3706), - [anon_sym_u8_SQUOTE] = ACTIONS(3706), - [anon_sym_SQUOTE] = ACTIONS(3706), - [anon_sym_L_DQUOTE] = ACTIONS(3706), - [anon_sym_u_DQUOTE] = ACTIONS(3706), - [anon_sym_U_DQUOTE] = ACTIONS(3706), - [anon_sym_u8_DQUOTE] = ACTIONS(3706), - [anon_sym_DQUOTE] = ACTIONS(3706), - [sym_true] = ACTIONS(3704), - [sym_false] = ACTIONS(3704), - [anon_sym_NULL] = ACTIONS(3704), - [anon_sym_nullptr] = ACTIONS(3704), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3704), - [anon_sym_decltype] = ACTIONS(3704), - [anon_sym_explicit] = ACTIONS(3704), - [anon_sym_export] = ACTIONS(3704), - [anon_sym_module] = ACTIONS(3704), - [anon_sym_import] = ACTIONS(3704), - [anon_sym_template] = ACTIONS(3704), - [anon_sym_operator] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_delete] = ACTIONS(3704), - [anon_sym_throw] = ACTIONS(3704), - [anon_sym_namespace] = ACTIONS(3704), - [anon_sym_static_assert] = ACTIONS(3704), - [anon_sym_concept] = ACTIONS(3704), - [anon_sym_co_return] = ACTIONS(3704), - [anon_sym_co_yield] = ACTIONS(3704), - [anon_sym_R_DQUOTE] = ACTIONS(3706), - [anon_sym_LR_DQUOTE] = ACTIONS(3706), - [anon_sym_uR_DQUOTE] = ACTIONS(3706), - [anon_sym_UR_DQUOTE] = ACTIONS(3706), - [anon_sym_u8R_DQUOTE] = ACTIONS(3706), - [anon_sym_co_await] = ACTIONS(3704), - [anon_sym_new] = ACTIONS(3704), - [anon_sym_requires] = ACTIONS(3704), - [anon_sym_CARET_CARET] = ACTIONS(3706), - [anon_sym_LBRACK_COLON] = ACTIONS(3706), - [sym_this] = ACTIONS(3704), + [STATE(439)] = { + [sym_identifier] = ACTIONS(4084), + [aux_sym_preproc_include_token1] = ACTIONS(4084), + [aux_sym_preproc_def_token1] = ACTIONS(4084), + [aux_sym_preproc_if_token1] = ACTIONS(4084), + [aux_sym_preproc_if_token2] = ACTIONS(4084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4084), + [aux_sym_preproc_else_token1] = ACTIONS(4084), + [aux_sym_preproc_elif_token1] = ACTIONS(4084), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4084), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4084), + [sym_preproc_directive] = ACTIONS(4084), + [anon_sym_LPAREN2] = ACTIONS(4086), + [anon_sym_BANG] = ACTIONS(4086), + [anon_sym_TILDE] = ACTIONS(4086), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_STAR] = ACTIONS(4086), + [anon_sym_AMP_AMP] = ACTIONS(4086), + [anon_sym_AMP] = ACTIONS(4084), + [anon_sym_SEMI] = ACTIONS(4086), + [anon_sym___extension__] = ACTIONS(4084), + [anon_sym_typedef] = ACTIONS(4084), + [anon_sym_virtual] = ACTIONS(4084), + [anon_sym_extern] = ACTIONS(4084), + [anon_sym___attribute__] = ACTIONS(4084), + [anon_sym___attribute] = ACTIONS(4084), + [anon_sym_using] = ACTIONS(4084), + [anon_sym_COLON_COLON] = ACTIONS(4086), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4086), + [anon_sym___declspec] = ACTIONS(4084), + [anon_sym___based] = ACTIONS(4084), + [anon_sym___cdecl] = ACTIONS(4084), + [anon_sym___clrcall] = ACTIONS(4084), + [anon_sym___stdcall] = ACTIONS(4084), + [anon_sym___fastcall] = ACTIONS(4084), + [anon_sym___thiscall] = ACTIONS(4084), + [anon_sym___vectorcall] = ACTIONS(4084), + [anon_sym_LBRACE] = ACTIONS(4086), + [anon_sym_signed] = ACTIONS(4084), + [anon_sym_unsigned] = ACTIONS(4084), + [anon_sym_long] = ACTIONS(4084), + [anon_sym_short] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_static] = ACTIONS(4084), + [anon_sym_register] = ACTIONS(4084), + [anon_sym_inline] = ACTIONS(4084), + [anon_sym___inline] = ACTIONS(4084), + [anon_sym___inline__] = ACTIONS(4084), + [anon_sym___forceinline] = ACTIONS(4084), + [anon_sym_thread_local] = ACTIONS(4084), + [anon_sym___thread] = ACTIONS(4084), + [anon_sym_const] = ACTIONS(4084), + [anon_sym_constexpr] = ACTIONS(4084), + [anon_sym_volatile] = ACTIONS(4084), + [anon_sym_restrict] = ACTIONS(4084), + [anon_sym___restrict__] = ACTIONS(4084), + [anon_sym__Atomic] = ACTIONS(4084), + [anon_sym__Noreturn] = ACTIONS(4084), + [anon_sym_noreturn] = ACTIONS(4084), + [anon_sym__Nonnull] = ACTIONS(4084), + [anon_sym_mutable] = ACTIONS(4084), + [anon_sym_constinit] = ACTIONS(4084), + [anon_sym_consteval] = ACTIONS(4084), + [anon_sym_alignas] = ACTIONS(4084), + [anon_sym__Alignas] = ACTIONS(4084), + [sym_primitive_type] = ACTIONS(4084), + [anon_sym_enum] = ACTIONS(4084), + [anon_sym_class] = ACTIONS(4084), + [anon_sym_struct] = ACTIONS(4084), + [anon_sym_union] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4084), + [anon_sym_switch] = ACTIONS(4084), + [anon_sym_case] = ACTIONS(4084), + [anon_sym_default] = ACTIONS(4084), + [anon_sym_while] = ACTIONS(4084), + [anon_sym_do] = ACTIONS(4084), + [anon_sym_for] = ACTIONS(4084), + [anon_sym_return] = ACTIONS(4084), + [anon_sym_break] = ACTIONS(4084), + [anon_sym_continue] = ACTIONS(4084), + [anon_sym_goto] = ACTIONS(4084), + [anon_sym___try] = ACTIONS(4084), + [anon_sym___leave] = ACTIONS(4084), + [anon_sym_not] = ACTIONS(4084), + [anon_sym_compl] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4086), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_sizeof] = ACTIONS(4084), + [anon_sym___alignof__] = ACTIONS(4084), + [anon_sym___alignof] = ACTIONS(4084), + [anon_sym__alignof] = ACTIONS(4084), + [anon_sym_alignof] = ACTIONS(4084), + [anon_sym__Alignof] = ACTIONS(4084), + [anon_sym_offsetof] = ACTIONS(4084), + [anon_sym__Generic] = ACTIONS(4084), + [anon_sym_typename] = ACTIONS(4084), + [anon_sym_asm] = ACTIONS(4084), + [anon_sym___asm__] = ACTIONS(4084), + [anon_sym___asm] = ACTIONS(4084), + [sym_number_literal] = ACTIONS(4086), + [anon_sym_L_SQUOTE] = ACTIONS(4086), + [anon_sym_u_SQUOTE] = ACTIONS(4086), + [anon_sym_U_SQUOTE] = ACTIONS(4086), + [anon_sym_u8_SQUOTE] = ACTIONS(4086), + [anon_sym_SQUOTE] = ACTIONS(4086), + [anon_sym_L_DQUOTE] = ACTIONS(4086), + [anon_sym_u_DQUOTE] = ACTIONS(4086), + [anon_sym_U_DQUOTE] = ACTIONS(4086), + [anon_sym_u8_DQUOTE] = ACTIONS(4086), + [anon_sym_DQUOTE] = ACTIONS(4086), + [sym_true] = ACTIONS(4084), + [sym_false] = ACTIONS(4084), + [anon_sym_NULL] = ACTIONS(4084), + [anon_sym_nullptr] = ACTIONS(4084), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4084), + [anon_sym_decltype] = ACTIONS(4084), + [anon_sym_explicit] = ACTIONS(4084), + [anon_sym_export] = ACTIONS(4084), + [anon_sym_module] = ACTIONS(4084), + [anon_sym_import] = ACTIONS(4084), + [anon_sym_template] = ACTIONS(4084), + [anon_sym_operator] = ACTIONS(4084), + [anon_sym_try] = ACTIONS(4084), + [anon_sym_delete] = ACTIONS(4084), + [anon_sym_throw] = ACTIONS(4084), + [anon_sym_namespace] = ACTIONS(4084), + [anon_sym_static_assert] = ACTIONS(4084), + [anon_sym_concept] = ACTIONS(4084), + [anon_sym_co_return] = ACTIONS(4084), + [anon_sym_co_yield] = ACTIONS(4084), + [anon_sym_R_DQUOTE] = ACTIONS(4086), + [anon_sym_LR_DQUOTE] = ACTIONS(4086), + [anon_sym_uR_DQUOTE] = ACTIONS(4086), + [anon_sym_UR_DQUOTE] = ACTIONS(4086), + [anon_sym_u8R_DQUOTE] = ACTIONS(4086), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(4084), + [anon_sym_requires] = ACTIONS(4084), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(4086), + [sym_this] = ACTIONS(4084), }, - [STATE(467)] = { - [ts_builtin_sym_end] = ACTIONS(3706), - [sym_identifier] = ACTIONS(3704), - [aux_sym_preproc_include_token1] = ACTIONS(3704), - [aux_sym_preproc_def_token1] = ACTIONS(3704), - [aux_sym_preproc_if_token1] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), - [sym_preproc_directive] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3706), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3706), - [anon_sym___extension__] = ACTIONS(3704), - [anon_sym_typedef] = ACTIONS(3704), - [anon_sym_virtual] = ACTIONS(3704), - [anon_sym_extern] = ACTIONS(3704), - [anon_sym___attribute__] = ACTIONS(3704), - [anon_sym___attribute] = ACTIONS(3704), - [anon_sym_using] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), - [anon_sym___declspec] = ACTIONS(3704), - [anon_sym___based] = ACTIONS(3704), - [anon_sym___cdecl] = ACTIONS(3704), - [anon_sym___clrcall] = ACTIONS(3704), - [anon_sym___stdcall] = ACTIONS(3704), - [anon_sym___fastcall] = ACTIONS(3704), - [anon_sym___thiscall] = ACTIONS(3704), - [anon_sym___vectorcall] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3706), - [anon_sym_signed] = ACTIONS(3704), - [anon_sym_unsigned] = ACTIONS(3704), - [anon_sym_long] = ACTIONS(3704), - [anon_sym_short] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_static] = ACTIONS(3704), - [anon_sym_register] = ACTIONS(3704), - [anon_sym_inline] = ACTIONS(3704), - [anon_sym___inline] = ACTIONS(3704), - [anon_sym___inline__] = ACTIONS(3704), - [anon_sym___forceinline] = ACTIONS(3704), - [anon_sym_thread_local] = ACTIONS(3704), - [anon_sym___thread] = ACTIONS(3704), - [anon_sym_const] = ACTIONS(3704), - [anon_sym_constexpr] = ACTIONS(3704), - [anon_sym_volatile] = ACTIONS(3704), - [anon_sym_restrict] = ACTIONS(3704), - [anon_sym___restrict__] = ACTIONS(3704), - [anon_sym__Atomic] = ACTIONS(3704), - [anon_sym__Noreturn] = ACTIONS(3704), - [anon_sym_noreturn] = ACTIONS(3704), - [anon_sym__Nonnull] = ACTIONS(3704), - [anon_sym_mutable] = ACTIONS(3704), - [anon_sym_constinit] = ACTIONS(3704), - [anon_sym_consteval] = ACTIONS(3704), - [anon_sym_alignas] = ACTIONS(3704), - [anon_sym__Alignas] = ACTIONS(3704), - [sym_primitive_type] = ACTIONS(3704), - [anon_sym_enum] = ACTIONS(3704), - [anon_sym_class] = ACTIONS(3704), - [anon_sym_struct] = ACTIONS(3704), - [anon_sym_union] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_else] = ACTIONS(3704), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_case] = ACTIONS(3704), - [anon_sym_default] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_break] = ACTIONS(3704), - [anon_sym_continue] = ACTIONS(3704), - [anon_sym_goto] = ACTIONS(3704), - [anon_sym___try] = ACTIONS(3704), - [anon_sym___leave] = ACTIONS(3704), - [anon_sym_not] = ACTIONS(3704), - [anon_sym_compl] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_sizeof] = ACTIONS(3704), - [anon_sym___alignof__] = ACTIONS(3704), - [anon_sym___alignof] = ACTIONS(3704), - [anon_sym__alignof] = ACTIONS(3704), - [anon_sym_alignof] = ACTIONS(3704), - [anon_sym__Alignof] = ACTIONS(3704), - [anon_sym_offsetof] = ACTIONS(3704), - [anon_sym__Generic] = ACTIONS(3704), - [anon_sym_typename] = ACTIONS(3704), - [anon_sym_asm] = ACTIONS(3704), - [anon_sym___asm__] = ACTIONS(3704), - [anon_sym___asm] = ACTIONS(3704), - [sym_number_literal] = ACTIONS(3706), - [anon_sym_L_SQUOTE] = ACTIONS(3706), - [anon_sym_u_SQUOTE] = ACTIONS(3706), - [anon_sym_U_SQUOTE] = ACTIONS(3706), - [anon_sym_u8_SQUOTE] = ACTIONS(3706), - [anon_sym_SQUOTE] = ACTIONS(3706), - [anon_sym_L_DQUOTE] = ACTIONS(3706), - [anon_sym_u_DQUOTE] = ACTIONS(3706), - [anon_sym_U_DQUOTE] = ACTIONS(3706), - [anon_sym_u8_DQUOTE] = ACTIONS(3706), - [anon_sym_DQUOTE] = ACTIONS(3706), - [sym_true] = ACTIONS(3704), - [sym_false] = ACTIONS(3704), - [anon_sym_NULL] = ACTIONS(3704), - [anon_sym_nullptr] = ACTIONS(3704), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3704), - [anon_sym_decltype] = ACTIONS(3704), - [anon_sym_explicit] = ACTIONS(3704), - [anon_sym_export] = ACTIONS(3704), - [anon_sym_module] = ACTIONS(3704), - [anon_sym_import] = ACTIONS(3704), - [anon_sym_template] = ACTIONS(3704), - [anon_sym_operator] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_delete] = ACTIONS(3704), - [anon_sym_throw] = ACTIONS(3704), - [anon_sym_namespace] = ACTIONS(3704), - [anon_sym_static_assert] = ACTIONS(3704), - [anon_sym_concept] = ACTIONS(3704), - [anon_sym_co_return] = ACTIONS(3704), - [anon_sym_co_yield] = ACTIONS(3704), - [anon_sym_R_DQUOTE] = ACTIONS(3706), - [anon_sym_LR_DQUOTE] = ACTIONS(3706), - [anon_sym_uR_DQUOTE] = ACTIONS(3706), - [anon_sym_UR_DQUOTE] = ACTIONS(3706), - [anon_sym_u8R_DQUOTE] = ACTIONS(3706), - [anon_sym_co_await] = ACTIONS(3704), - [anon_sym_new] = ACTIONS(3704), - [anon_sym_requires] = ACTIONS(3704), - [anon_sym_CARET_CARET] = ACTIONS(3706), - [anon_sym_LBRACK_COLON] = ACTIONS(3706), - [sym_this] = ACTIONS(3704), + [STATE(440)] = { + [sym_identifier] = ACTIONS(4088), + [aux_sym_preproc_include_token1] = ACTIONS(4088), + [aux_sym_preproc_def_token1] = ACTIONS(4088), + [aux_sym_preproc_if_token1] = ACTIONS(4088), + [aux_sym_preproc_if_token2] = ACTIONS(4088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4088), + [aux_sym_preproc_else_token1] = ACTIONS(4088), + [aux_sym_preproc_elif_token1] = ACTIONS(4088), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4088), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4088), + [sym_preproc_directive] = ACTIONS(4088), + [anon_sym_LPAREN2] = ACTIONS(4090), + [anon_sym_BANG] = ACTIONS(4090), + [anon_sym_TILDE] = ACTIONS(4090), + [anon_sym_DASH] = ACTIONS(4088), + [anon_sym_PLUS] = ACTIONS(4088), + [anon_sym_STAR] = ACTIONS(4090), + [anon_sym_AMP_AMP] = ACTIONS(4090), + [anon_sym_AMP] = ACTIONS(4088), + [anon_sym_SEMI] = ACTIONS(4090), + [anon_sym___extension__] = ACTIONS(4088), + [anon_sym_typedef] = ACTIONS(4088), + [anon_sym_virtual] = ACTIONS(4088), + [anon_sym_extern] = ACTIONS(4088), + [anon_sym___attribute__] = ACTIONS(4088), + [anon_sym___attribute] = ACTIONS(4088), + [anon_sym_using] = ACTIONS(4088), + [anon_sym_COLON_COLON] = ACTIONS(4090), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4090), + [anon_sym___declspec] = ACTIONS(4088), + [anon_sym___based] = ACTIONS(4088), + [anon_sym___cdecl] = ACTIONS(4088), + [anon_sym___clrcall] = ACTIONS(4088), + [anon_sym___stdcall] = ACTIONS(4088), + [anon_sym___fastcall] = ACTIONS(4088), + [anon_sym___thiscall] = ACTIONS(4088), + [anon_sym___vectorcall] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_signed] = ACTIONS(4088), + [anon_sym_unsigned] = ACTIONS(4088), + [anon_sym_long] = ACTIONS(4088), + [anon_sym_short] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(4088), + [anon_sym_static] = ACTIONS(4088), + [anon_sym_register] = ACTIONS(4088), + [anon_sym_inline] = ACTIONS(4088), + [anon_sym___inline] = ACTIONS(4088), + [anon_sym___inline__] = ACTIONS(4088), + [anon_sym___forceinline] = ACTIONS(4088), + [anon_sym_thread_local] = ACTIONS(4088), + [anon_sym___thread] = ACTIONS(4088), + [anon_sym_const] = ACTIONS(4088), + [anon_sym_constexpr] = ACTIONS(4088), + [anon_sym_volatile] = ACTIONS(4088), + [anon_sym_restrict] = ACTIONS(4088), + [anon_sym___restrict__] = ACTIONS(4088), + [anon_sym__Atomic] = ACTIONS(4088), + [anon_sym__Noreturn] = ACTIONS(4088), + [anon_sym_noreturn] = ACTIONS(4088), + [anon_sym__Nonnull] = ACTIONS(4088), + [anon_sym_mutable] = ACTIONS(4088), + [anon_sym_constinit] = ACTIONS(4088), + [anon_sym_consteval] = ACTIONS(4088), + [anon_sym_alignas] = ACTIONS(4088), + [anon_sym__Alignas] = ACTIONS(4088), + [sym_primitive_type] = ACTIONS(4088), + [anon_sym_enum] = ACTIONS(4088), + [anon_sym_class] = ACTIONS(4088), + [anon_sym_struct] = ACTIONS(4088), + [anon_sym_union] = ACTIONS(4088), + [anon_sym_if] = ACTIONS(4088), + [anon_sym_switch] = ACTIONS(4088), + [anon_sym_case] = ACTIONS(4088), + [anon_sym_default] = ACTIONS(4088), + [anon_sym_while] = ACTIONS(4088), + [anon_sym_do] = ACTIONS(4088), + [anon_sym_for] = ACTIONS(4088), + [anon_sym_return] = ACTIONS(4088), + [anon_sym_break] = ACTIONS(4088), + [anon_sym_continue] = ACTIONS(4088), + [anon_sym_goto] = ACTIONS(4088), + [anon_sym___try] = ACTIONS(4088), + [anon_sym___leave] = ACTIONS(4088), + [anon_sym_not] = ACTIONS(4088), + [anon_sym_compl] = ACTIONS(4088), + [anon_sym_DASH_DASH] = ACTIONS(4090), + [anon_sym_PLUS_PLUS] = ACTIONS(4090), + [anon_sym_sizeof] = ACTIONS(4088), + [anon_sym___alignof__] = ACTIONS(4088), + [anon_sym___alignof] = ACTIONS(4088), + [anon_sym__alignof] = ACTIONS(4088), + [anon_sym_alignof] = ACTIONS(4088), + [anon_sym__Alignof] = ACTIONS(4088), + [anon_sym_offsetof] = ACTIONS(4088), + [anon_sym__Generic] = ACTIONS(4088), + [anon_sym_typename] = ACTIONS(4088), + [anon_sym_asm] = ACTIONS(4088), + [anon_sym___asm__] = ACTIONS(4088), + [anon_sym___asm] = ACTIONS(4088), + [sym_number_literal] = ACTIONS(4090), + [anon_sym_L_SQUOTE] = ACTIONS(4090), + [anon_sym_u_SQUOTE] = ACTIONS(4090), + [anon_sym_U_SQUOTE] = ACTIONS(4090), + [anon_sym_u8_SQUOTE] = ACTIONS(4090), + [anon_sym_SQUOTE] = ACTIONS(4090), + [anon_sym_L_DQUOTE] = ACTIONS(4090), + [anon_sym_u_DQUOTE] = ACTIONS(4090), + [anon_sym_U_DQUOTE] = ACTIONS(4090), + [anon_sym_u8_DQUOTE] = ACTIONS(4090), + [anon_sym_DQUOTE] = ACTIONS(4090), + [sym_true] = ACTIONS(4088), + [sym_false] = ACTIONS(4088), + [anon_sym_NULL] = ACTIONS(4088), + [anon_sym_nullptr] = ACTIONS(4088), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4088), + [anon_sym_decltype] = ACTIONS(4088), + [anon_sym_explicit] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4088), + [anon_sym_module] = ACTIONS(4088), + [anon_sym_import] = ACTIONS(4088), + [anon_sym_template] = ACTIONS(4088), + [anon_sym_operator] = ACTIONS(4088), + [anon_sym_try] = ACTIONS(4088), + [anon_sym_delete] = ACTIONS(4088), + [anon_sym_throw] = ACTIONS(4088), + [anon_sym_namespace] = ACTIONS(4088), + [anon_sym_static_assert] = ACTIONS(4088), + [anon_sym_concept] = ACTIONS(4088), + [anon_sym_co_return] = ACTIONS(4088), + [anon_sym_co_yield] = ACTIONS(4088), + [anon_sym_R_DQUOTE] = ACTIONS(4090), + [anon_sym_LR_DQUOTE] = ACTIONS(4090), + [anon_sym_uR_DQUOTE] = ACTIONS(4090), + [anon_sym_UR_DQUOTE] = ACTIONS(4090), + [anon_sym_u8R_DQUOTE] = ACTIONS(4090), + [anon_sym_co_await] = ACTIONS(4088), + [anon_sym_new] = ACTIONS(4088), + [anon_sym_requires] = ACTIONS(4088), + [anon_sym_CARET_CARET] = ACTIONS(4090), + [anon_sym_LBRACK_COLON] = ACTIONS(4090), + [sym_this] = ACTIONS(4088), }, - [STATE(468)] = { - [sym_catch_clause] = STATE(471), - [aux_sym_constructor_try_statement_repeat1] = STATE(471), - [sym_identifier] = ACTIONS(3148), - [aux_sym_preproc_include_token1] = ACTIONS(3148), - [aux_sym_preproc_def_token1] = ACTIONS(3148), - [aux_sym_preproc_if_token1] = ACTIONS(3148), - [aux_sym_preproc_if_token2] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3148), - [sym_preproc_directive] = ACTIONS(3148), - [anon_sym_LPAREN2] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym___extension__] = ACTIONS(3148), - [anon_sym_typedef] = ACTIONS(3148), - [anon_sym_virtual] = ACTIONS(3148), - [anon_sym_extern] = ACTIONS(3148), - [anon_sym___attribute__] = ACTIONS(3148), - [anon_sym___attribute] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3150), - [anon_sym___declspec] = ACTIONS(3148), - [anon_sym___based] = ACTIONS(3148), - [anon_sym___cdecl] = ACTIONS(3148), - [anon_sym___clrcall] = ACTIONS(3148), - [anon_sym___stdcall] = ACTIONS(3148), - [anon_sym___fastcall] = ACTIONS(3148), - [anon_sym___thiscall] = ACTIONS(3148), - [anon_sym___vectorcall] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_signed] = ACTIONS(3148), - [anon_sym_unsigned] = ACTIONS(3148), - [anon_sym_long] = ACTIONS(3148), - [anon_sym_short] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_register] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym___inline] = ACTIONS(3148), - [anon_sym___inline__] = ACTIONS(3148), - [anon_sym___forceinline] = ACTIONS(3148), - [anon_sym_thread_local] = ACTIONS(3148), - [anon_sym___thread] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_constexpr] = ACTIONS(3148), - [anon_sym_volatile] = ACTIONS(3148), - [anon_sym_restrict] = ACTIONS(3148), - [anon_sym___restrict__] = ACTIONS(3148), - [anon_sym__Atomic] = ACTIONS(3148), - [anon_sym__Noreturn] = ACTIONS(3148), - [anon_sym_noreturn] = ACTIONS(3148), - [anon_sym__Nonnull] = ACTIONS(3148), - [anon_sym_mutable] = ACTIONS(3148), - [anon_sym_constinit] = ACTIONS(3148), - [anon_sym_consteval] = ACTIONS(3148), - [anon_sym_alignas] = ACTIONS(3148), - [anon_sym__Alignas] = ACTIONS(3148), - [sym_primitive_type] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(3148), - [anon_sym_union] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_switch] = ACTIONS(3148), - [anon_sym_case] = ACTIONS(3148), - [anon_sym_default] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_do] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_goto] = ACTIONS(3148), - [anon_sym___try] = ACTIONS(3148), - [anon_sym___leave] = ACTIONS(3148), - [anon_sym_not] = ACTIONS(3148), - [anon_sym_compl] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_sizeof] = ACTIONS(3148), - [anon_sym___alignof__] = ACTIONS(3148), - [anon_sym___alignof] = ACTIONS(3148), - [anon_sym__alignof] = ACTIONS(3148), - [anon_sym_alignof] = ACTIONS(3148), - [anon_sym__Alignof] = ACTIONS(3148), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3148), - [anon_sym_typename] = ACTIONS(3148), - [anon_sym_asm] = ACTIONS(3148), - [anon_sym___asm__] = ACTIONS(3148), - [anon_sym___asm] = ACTIONS(3148), - [sym_number_literal] = ACTIONS(3150), - [anon_sym_L_SQUOTE] = ACTIONS(3150), - [anon_sym_u_SQUOTE] = ACTIONS(3150), - [anon_sym_U_SQUOTE] = ACTIONS(3150), - [anon_sym_u8_SQUOTE] = ACTIONS(3150), - [anon_sym_SQUOTE] = ACTIONS(3150), - [anon_sym_L_DQUOTE] = ACTIONS(3150), - [anon_sym_u_DQUOTE] = ACTIONS(3150), - [anon_sym_U_DQUOTE] = ACTIONS(3150), - [anon_sym_u8_DQUOTE] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3150), - [sym_true] = ACTIONS(3148), - [sym_false] = ACTIONS(3148), - [anon_sym_NULL] = ACTIONS(3148), - [anon_sym_nullptr] = ACTIONS(3148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3148), - [anon_sym_decltype] = ACTIONS(3148), - [anon_sym_explicit] = ACTIONS(3148), - [anon_sym_template] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_delete] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_namespace] = ACTIONS(3148), - [anon_sym_static_assert] = ACTIONS(3148), - [anon_sym_concept] = ACTIONS(3148), - [anon_sym_co_return] = ACTIONS(3148), - [anon_sym_co_yield] = ACTIONS(3148), - [anon_sym_catch] = ACTIONS(4094), - [anon_sym_R_DQUOTE] = ACTIONS(3150), - [anon_sym_LR_DQUOTE] = ACTIONS(3150), - [anon_sym_uR_DQUOTE] = ACTIONS(3150), - [anon_sym_UR_DQUOTE] = ACTIONS(3150), - [anon_sym_u8R_DQUOTE] = ACTIONS(3150), - [anon_sym_co_await] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3148), - [anon_sym_requires] = ACTIONS(3148), - [anon_sym_CARET_CARET] = ACTIONS(3150), - [anon_sym_LBRACK_COLON] = ACTIONS(3150), - [sym_this] = ACTIONS(3148), + [STATE(441)] = { + [sym_identifier] = ACTIONS(4092), + [aux_sym_preproc_include_token1] = ACTIONS(4092), + [aux_sym_preproc_def_token1] = ACTIONS(4092), + [aux_sym_preproc_if_token1] = ACTIONS(4092), + [aux_sym_preproc_if_token2] = ACTIONS(4092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4092), + [aux_sym_preproc_else_token1] = ACTIONS(4092), + [aux_sym_preproc_elif_token1] = ACTIONS(4092), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4092), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4092), + [sym_preproc_directive] = ACTIONS(4092), + [anon_sym_LPAREN2] = ACTIONS(4094), + [anon_sym_BANG] = ACTIONS(4094), + [anon_sym_TILDE] = ACTIONS(4094), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_AMP] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym___extension__] = ACTIONS(4092), + [anon_sym_typedef] = ACTIONS(4092), + [anon_sym_virtual] = ACTIONS(4092), + [anon_sym_extern] = ACTIONS(4092), + [anon_sym___attribute__] = ACTIONS(4092), + [anon_sym___attribute] = ACTIONS(4092), + [anon_sym_using] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4094), + [anon_sym___declspec] = ACTIONS(4092), + [anon_sym___based] = ACTIONS(4092), + [anon_sym___cdecl] = ACTIONS(4092), + [anon_sym___clrcall] = ACTIONS(4092), + [anon_sym___stdcall] = ACTIONS(4092), + [anon_sym___fastcall] = ACTIONS(4092), + [anon_sym___thiscall] = ACTIONS(4092), + [anon_sym___vectorcall] = ACTIONS(4092), + [anon_sym_LBRACE] = ACTIONS(4094), + [anon_sym_signed] = ACTIONS(4092), + [anon_sym_unsigned] = ACTIONS(4092), + [anon_sym_long] = ACTIONS(4092), + [anon_sym_short] = ACTIONS(4092), + [anon_sym_LBRACK] = ACTIONS(4092), + [anon_sym_static] = ACTIONS(4092), + [anon_sym_register] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym___inline] = ACTIONS(4092), + [anon_sym___inline__] = ACTIONS(4092), + [anon_sym___forceinline] = ACTIONS(4092), + [anon_sym_thread_local] = ACTIONS(4092), + [anon_sym___thread] = ACTIONS(4092), + [anon_sym_const] = ACTIONS(4092), + [anon_sym_constexpr] = ACTIONS(4092), + [anon_sym_volatile] = ACTIONS(4092), + [anon_sym_restrict] = ACTIONS(4092), + [anon_sym___restrict__] = ACTIONS(4092), + [anon_sym__Atomic] = ACTIONS(4092), + [anon_sym__Noreturn] = ACTIONS(4092), + [anon_sym_noreturn] = ACTIONS(4092), + [anon_sym__Nonnull] = ACTIONS(4092), + [anon_sym_mutable] = ACTIONS(4092), + [anon_sym_constinit] = ACTIONS(4092), + [anon_sym_consteval] = ACTIONS(4092), + [anon_sym_alignas] = ACTIONS(4092), + [anon_sym__Alignas] = ACTIONS(4092), + [sym_primitive_type] = ACTIONS(4092), + [anon_sym_enum] = ACTIONS(4092), + [anon_sym_class] = ACTIONS(4092), + [anon_sym_struct] = ACTIONS(4092), + [anon_sym_union] = ACTIONS(4092), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(4092), + [anon_sym_case] = ACTIONS(4092), + [anon_sym_default] = ACTIONS(4092), + [anon_sym_while] = ACTIONS(4092), + [anon_sym_do] = ACTIONS(4092), + [anon_sym_for] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_goto] = ACTIONS(4092), + [anon_sym___try] = ACTIONS(4092), + [anon_sym___leave] = ACTIONS(4092), + [anon_sym_not] = ACTIONS(4092), + [anon_sym_compl] = ACTIONS(4092), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_sizeof] = ACTIONS(4092), + [anon_sym___alignof__] = ACTIONS(4092), + [anon_sym___alignof] = ACTIONS(4092), + [anon_sym__alignof] = ACTIONS(4092), + [anon_sym_alignof] = ACTIONS(4092), + [anon_sym__Alignof] = ACTIONS(4092), + [anon_sym_offsetof] = ACTIONS(4092), + [anon_sym__Generic] = ACTIONS(4092), + [anon_sym_typename] = ACTIONS(4092), + [anon_sym_asm] = ACTIONS(4092), + [anon_sym___asm__] = ACTIONS(4092), + [anon_sym___asm] = ACTIONS(4092), + [sym_number_literal] = ACTIONS(4094), + [anon_sym_L_SQUOTE] = ACTIONS(4094), + [anon_sym_u_SQUOTE] = ACTIONS(4094), + [anon_sym_U_SQUOTE] = ACTIONS(4094), + [anon_sym_u8_SQUOTE] = ACTIONS(4094), + [anon_sym_SQUOTE] = ACTIONS(4094), + [anon_sym_L_DQUOTE] = ACTIONS(4094), + [anon_sym_u_DQUOTE] = ACTIONS(4094), + [anon_sym_U_DQUOTE] = ACTIONS(4094), + [anon_sym_u8_DQUOTE] = ACTIONS(4094), + [anon_sym_DQUOTE] = ACTIONS(4094), + [sym_true] = ACTIONS(4092), + [sym_false] = ACTIONS(4092), + [anon_sym_NULL] = ACTIONS(4092), + [anon_sym_nullptr] = ACTIONS(4092), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4092), + [anon_sym_decltype] = ACTIONS(4092), + [anon_sym_explicit] = ACTIONS(4092), + [anon_sym_export] = ACTIONS(4092), + [anon_sym_module] = ACTIONS(4092), + [anon_sym_import] = ACTIONS(4092), + [anon_sym_template] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_delete] = ACTIONS(4092), + [anon_sym_throw] = ACTIONS(4092), + [anon_sym_namespace] = ACTIONS(4092), + [anon_sym_static_assert] = ACTIONS(4092), + [anon_sym_concept] = ACTIONS(4092), + [anon_sym_co_return] = ACTIONS(4092), + [anon_sym_co_yield] = ACTIONS(4092), + [anon_sym_R_DQUOTE] = ACTIONS(4094), + [anon_sym_LR_DQUOTE] = ACTIONS(4094), + [anon_sym_uR_DQUOTE] = ACTIONS(4094), + [anon_sym_UR_DQUOTE] = ACTIONS(4094), + [anon_sym_u8R_DQUOTE] = ACTIONS(4094), + [anon_sym_co_await] = ACTIONS(4092), + [anon_sym_new] = ACTIONS(4092), + [anon_sym_requires] = ACTIONS(4092), + [anon_sym_CARET_CARET] = ACTIONS(4094), + [anon_sym_LBRACK_COLON] = ACTIONS(4094), + [sym_this] = ACTIONS(4092), }, - [STATE(469)] = { + [STATE(442)] = { [sym_identifier] = ACTIONS(4096), [aux_sym_preproc_include_token1] = ACTIONS(4096), [aux_sym_preproc_def_token1] = ACTIONS(4096), @@ -121517,6 +123179,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4096), [anon_sym_decltype] = ACTIONS(4096), [anon_sym_explicit] = ACTIONS(4096), + [anon_sym_export] = ACTIONS(4096), + [anon_sym_module] = ACTIONS(4096), + [anon_sym_import] = ACTIONS(4096), [anon_sym_template] = ACTIONS(4096), [anon_sym_operator] = ACTIONS(4096), [anon_sym_try] = ACTIONS(4096), @@ -121539,7 +123204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4098), [sym_this] = ACTIONS(4096), }, - [STATE(470)] = { + [STATE(443)] = { [sym_identifier] = ACTIONS(4100), [aux_sym_preproc_include_token1] = ACTIONS(4100), [aux_sym_preproc_def_token1] = ACTIONS(4100), @@ -121659,6 +123324,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4100), [anon_sym_decltype] = ACTIONS(4100), [anon_sym_explicit] = ACTIONS(4100), + [anon_sym_export] = ACTIONS(4100), + [anon_sym_module] = ACTIONS(4100), + [anon_sym_import] = ACTIONS(4100), [anon_sym_template] = ACTIONS(4100), [anon_sym_operator] = ACTIONS(4100), [anon_sym_try] = ACTIONS(4100), @@ -121681,6539 +123349,1602 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4102), [sym_this] = ACTIONS(4100), }, - [STATE(471)] = { - [sym_catch_clause] = STATE(471), - [aux_sym_constructor_try_statement_repeat1] = STATE(471), - [sym_identifier] = ACTIONS(3137), - [aux_sym_preproc_include_token1] = ACTIONS(3137), - [aux_sym_preproc_def_token1] = ACTIONS(3137), - [aux_sym_preproc_if_token1] = ACTIONS(3137), - [aux_sym_preproc_if_token2] = ACTIONS(3137), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3137), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3137), - [sym_preproc_directive] = ACTIONS(3137), - [anon_sym_LPAREN2] = ACTIONS(3139), - [anon_sym_BANG] = ACTIONS(3139), - [anon_sym_TILDE] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3139), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym___extension__] = ACTIONS(3137), - [anon_sym_typedef] = ACTIONS(3137), - [anon_sym_virtual] = ACTIONS(3137), - [anon_sym_extern] = ACTIONS(3137), - [anon_sym___attribute__] = ACTIONS(3137), - [anon_sym___attribute] = ACTIONS(3137), - [anon_sym_using] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3139), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3139), - [anon_sym___declspec] = ACTIONS(3137), - [anon_sym___based] = ACTIONS(3137), - [anon_sym___cdecl] = ACTIONS(3137), - [anon_sym___clrcall] = ACTIONS(3137), - [anon_sym___stdcall] = ACTIONS(3137), - [anon_sym___fastcall] = ACTIONS(3137), - [anon_sym___thiscall] = ACTIONS(3137), - [anon_sym___vectorcall] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_signed] = ACTIONS(3137), - [anon_sym_unsigned] = ACTIONS(3137), - [anon_sym_long] = ACTIONS(3137), - [anon_sym_short] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_static] = ACTIONS(3137), - [anon_sym_register] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym___inline] = ACTIONS(3137), - [anon_sym___inline__] = ACTIONS(3137), - [anon_sym___forceinline] = ACTIONS(3137), - [anon_sym_thread_local] = ACTIONS(3137), - [anon_sym___thread] = ACTIONS(3137), - [anon_sym_const] = ACTIONS(3137), - [anon_sym_constexpr] = ACTIONS(3137), - [anon_sym_volatile] = ACTIONS(3137), - [anon_sym_restrict] = ACTIONS(3137), - [anon_sym___restrict__] = ACTIONS(3137), - [anon_sym__Atomic] = ACTIONS(3137), - [anon_sym__Noreturn] = ACTIONS(3137), - [anon_sym_noreturn] = ACTIONS(3137), - [anon_sym__Nonnull] = ACTIONS(3137), - [anon_sym_mutable] = ACTIONS(3137), - [anon_sym_constinit] = ACTIONS(3137), - [anon_sym_consteval] = ACTIONS(3137), - [anon_sym_alignas] = ACTIONS(3137), - [anon_sym__Alignas] = ACTIONS(3137), - [sym_primitive_type] = ACTIONS(3137), - [anon_sym_enum] = ACTIONS(3137), - [anon_sym_class] = ACTIONS(3137), - [anon_sym_struct] = ACTIONS(3137), - [anon_sym_union] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_switch] = ACTIONS(3137), - [anon_sym_case] = ACTIONS(3137), - [anon_sym_default] = ACTIONS(3137), - [anon_sym_while] = ACTIONS(3137), - [anon_sym_do] = ACTIONS(3137), - [anon_sym_for] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_goto] = ACTIONS(3137), - [anon_sym___try] = ACTIONS(3137), - [anon_sym___leave] = ACTIONS(3137), - [anon_sym_not] = ACTIONS(3137), - [anon_sym_compl] = ACTIONS(3137), - [anon_sym_DASH_DASH] = ACTIONS(3139), - [anon_sym_PLUS_PLUS] = ACTIONS(3139), - [anon_sym_sizeof] = ACTIONS(3137), - [anon_sym___alignof__] = ACTIONS(3137), - [anon_sym___alignof] = ACTIONS(3137), - [anon_sym__alignof] = ACTIONS(3137), - [anon_sym_alignof] = ACTIONS(3137), - [anon_sym__Alignof] = ACTIONS(3137), - [anon_sym_offsetof] = ACTIONS(3137), - [anon_sym__Generic] = ACTIONS(3137), - [anon_sym_typename] = ACTIONS(3137), - [anon_sym_asm] = ACTIONS(3137), - [anon_sym___asm__] = ACTIONS(3137), - [anon_sym___asm] = ACTIONS(3137), - [sym_number_literal] = ACTIONS(3139), - [anon_sym_L_SQUOTE] = ACTIONS(3139), - [anon_sym_u_SQUOTE] = ACTIONS(3139), - [anon_sym_U_SQUOTE] = ACTIONS(3139), - [anon_sym_u8_SQUOTE] = ACTIONS(3139), - [anon_sym_SQUOTE] = ACTIONS(3139), - [anon_sym_L_DQUOTE] = ACTIONS(3139), - [anon_sym_u_DQUOTE] = ACTIONS(3139), - [anon_sym_U_DQUOTE] = ACTIONS(3139), - [anon_sym_u8_DQUOTE] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3139), - [sym_true] = ACTIONS(3137), - [sym_false] = ACTIONS(3137), - [anon_sym_NULL] = ACTIONS(3137), - [anon_sym_nullptr] = ACTIONS(3137), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3137), - [anon_sym_decltype] = ACTIONS(3137), - [anon_sym_explicit] = ACTIONS(3137), - [anon_sym_template] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_try] = ACTIONS(3137), - [anon_sym_delete] = ACTIONS(3137), - [anon_sym_throw] = ACTIONS(3137), - [anon_sym_namespace] = ACTIONS(3137), - [anon_sym_static_assert] = ACTIONS(3137), - [anon_sym_concept] = ACTIONS(3137), - [anon_sym_co_return] = ACTIONS(3137), - [anon_sym_co_yield] = ACTIONS(3137), - [anon_sym_catch] = ACTIONS(4104), - [anon_sym_R_DQUOTE] = ACTIONS(3139), - [anon_sym_LR_DQUOTE] = ACTIONS(3139), - [anon_sym_uR_DQUOTE] = ACTIONS(3139), - [anon_sym_UR_DQUOTE] = ACTIONS(3139), - [anon_sym_u8R_DQUOTE] = ACTIONS(3139), - [anon_sym_co_await] = ACTIONS(3137), - [anon_sym_new] = ACTIONS(3137), - [anon_sym_requires] = ACTIONS(3137), - [anon_sym_CARET_CARET] = ACTIONS(3139), - [anon_sym_LBRACK_COLON] = ACTIONS(3139), - [sym_this] = ACTIONS(3137), + [STATE(444)] = { + [sym_identifier] = ACTIONS(4104), + [aux_sym_preproc_include_token1] = ACTIONS(4104), + [aux_sym_preproc_def_token1] = ACTIONS(4104), + [aux_sym_preproc_if_token1] = ACTIONS(4104), + [aux_sym_preproc_if_token2] = ACTIONS(4104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4104), + [aux_sym_preproc_else_token1] = ACTIONS(4104), + [aux_sym_preproc_elif_token1] = ACTIONS(4104), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4104), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4104), + [sym_preproc_directive] = ACTIONS(4104), + [anon_sym_LPAREN2] = ACTIONS(4106), + [anon_sym_BANG] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4104), + [anon_sym_STAR] = ACTIONS(4106), + [anon_sym_AMP_AMP] = ACTIONS(4106), + [anon_sym_AMP] = ACTIONS(4104), + [anon_sym_SEMI] = ACTIONS(4106), + [anon_sym___extension__] = ACTIONS(4104), + [anon_sym_typedef] = ACTIONS(4104), + [anon_sym_virtual] = ACTIONS(4104), + [anon_sym_extern] = ACTIONS(4104), + [anon_sym___attribute__] = ACTIONS(4104), + [anon_sym___attribute] = ACTIONS(4104), + [anon_sym_using] = ACTIONS(4104), + [anon_sym_COLON_COLON] = ACTIONS(4106), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4106), + [anon_sym___declspec] = ACTIONS(4104), + [anon_sym___based] = ACTIONS(4104), + [anon_sym___cdecl] = ACTIONS(4104), + [anon_sym___clrcall] = ACTIONS(4104), + [anon_sym___stdcall] = ACTIONS(4104), + [anon_sym___fastcall] = ACTIONS(4104), + [anon_sym___thiscall] = ACTIONS(4104), + [anon_sym___vectorcall] = ACTIONS(4104), + [anon_sym_LBRACE] = ACTIONS(4106), + [anon_sym_signed] = ACTIONS(4104), + [anon_sym_unsigned] = ACTIONS(4104), + [anon_sym_long] = ACTIONS(4104), + [anon_sym_short] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_static] = ACTIONS(4104), + [anon_sym_register] = ACTIONS(4104), + [anon_sym_inline] = ACTIONS(4104), + [anon_sym___inline] = ACTIONS(4104), + [anon_sym___inline__] = ACTIONS(4104), + [anon_sym___forceinline] = ACTIONS(4104), + [anon_sym_thread_local] = ACTIONS(4104), + [anon_sym___thread] = ACTIONS(4104), + [anon_sym_const] = ACTIONS(4104), + [anon_sym_constexpr] = ACTIONS(4104), + [anon_sym_volatile] = ACTIONS(4104), + [anon_sym_restrict] = ACTIONS(4104), + [anon_sym___restrict__] = ACTIONS(4104), + [anon_sym__Atomic] = ACTIONS(4104), + [anon_sym__Noreturn] = ACTIONS(4104), + [anon_sym_noreturn] = ACTIONS(4104), + [anon_sym__Nonnull] = ACTIONS(4104), + [anon_sym_mutable] = ACTIONS(4104), + [anon_sym_constinit] = ACTIONS(4104), + [anon_sym_consteval] = ACTIONS(4104), + [anon_sym_alignas] = ACTIONS(4104), + [anon_sym__Alignas] = ACTIONS(4104), + [sym_primitive_type] = ACTIONS(4104), + [anon_sym_enum] = ACTIONS(4104), + [anon_sym_class] = ACTIONS(4104), + [anon_sym_struct] = ACTIONS(4104), + [anon_sym_union] = ACTIONS(4104), + [anon_sym_if] = ACTIONS(4104), + [anon_sym_switch] = ACTIONS(4104), + [anon_sym_case] = ACTIONS(4104), + [anon_sym_default] = ACTIONS(4104), + [anon_sym_while] = ACTIONS(4104), + [anon_sym_do] = ACTIONS(4104), + [anon_sym_for] = ACTIONS(4104), + [anon_sym_return] = ACTIONS(4104), + [anon_sym_break] = ACTIONS(4104), + [anon_sym_continue] = ACTIONS(4104), + [anon_sym_goto] = ACTIONS(4104), + [anon_sym___try] = ACTIONS(4104), + [anon_sym___leave] = ACTIONS(4104), + [anon_sym_not] = ACTIONS(4104), + [anon_sym_compl] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4106), + [anon_sym_PLUS_PLUS] = ACTIONS(4106), + [anon_sym_sizeof] = ACTIONS(4104), + [anon_sym___alignof__] = ACTIONS(4104), + [anon_sym___alignof] = ACTIONS(4104), + [anon_sym__alignof] = ACTIONS(4104), + [anon_sym_alignof] = ACTIONS(4104), + [anon_sym__Alignof] = ACTIONS(4104), + [anon_sym_offsetof] = ACTIONS(4104), + [anon_sym__Generic] = ACTIONS(4104), + [anon_sym_typename] = ACTIONS(4104), + [anon_sym_asm] = ACTIONS(4104), + [anon_sym___asm__] = ACTIONS(4104), + [anon_sym___asm] = ACTIONS(4104), + [sym_number_literal] = ACTIONS(4106), + [anon_sym_L_SQUOTE] = ACTIONS(4106), + [anon_sym_u_SQUOTE] = ACTIONS(4106), + [anon_sym_U_SQUOTE] = ACTIONS(4106), + [anon_sym_u8_SQUOTE] = ACTIONS(4106), + [anon_sym_SQUOTE] = ACTIONS(4106), + [anon_sym_L_DQUOTE] = ACTIONS(4106), + [anon_sym_u_DQUOTE] = ACTIONS(4106), + [anon_sym_U_DQUOTE] = ACTIONS(4106), + [anon_sym_u8_DQUOTE] = ACTIONS(4106), + [anon_sym_DQUOTE] = ACTIONS(4106), + [sym_true] = ACTIONS(4104), + [sym_false] = ACTIONS(4104), + [anon_sym_NULL] = ACTIONS(4104), + [anon_sym_nullptr] = ACTIONS(4104), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4104), + [anon_sym_decltype] = ACTIONS(4104), + [anon_sym_explicit] = ACTIONS(4104), + [anon_sym_export] = ACTIONS(4104), + [anon_sym_module] = ACTIONS(4104), + [anon_sym_import] = ACTIONS(4104), + [anon_sym_template] = ACTIONS(4104), + [anon_sym_operator] = ACTIONS(4104), + [anon_sym_try] = ACTIONS(4104), + [anon_sym_delete] = ACTIONS(4104), + [anon_sym_throw] = ACTIONS(4104), + [anon_sym_namespace] = ACTIONS(4104), + [anon_sym_static_assert] = ACTIONS(4104), + [anon_sym_concept] = ACTIONS(4104), + [anon_sym_co_return] = ACTIONS(4104), + [anon_sym_co_yield] = ACTIONS(4104), + [anon_sym_R_DQUOTE] = ACTIONS(4106), + [anon_sym_LR_DQUOTE] = ACTIONS(4106), + [anon_sym_uR_DQUOTE] = ACTIONS(4106), + [anon_sym_UR_DQUOTE] = ACTIONS(4106), + [anon_sym_u8R_DQUOTE] = ACTIONS(4106), + [anon_sym_co_await] = ACTIONS(4104), + [anon_sym_new] = ACTIONS(4104), + [anon_sym_requires] = ACTIONS(4104), + [anon_sym_CARET_CARET] = ACTIONS(4106), + [anon_sym_LBRACK_COLON] = ACTIONS(4106), + [sym_this] = ACTIONS(4104), }, - [STATE(472)] = { - [sym_identifier] = ACTIONS(4107), - [aux_sym_preproc_include_token1] = ACTIONS(4107), - [aux_sym_preproc_def_token1] = ACTIONS(4107), - [aux_sym_preproc_if_token1] = ACTIONS(4107), - [aux_sym_preproc_if_token2] = ACTIONS(4107), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4107), - [aux_sym_preproc_else_token1] = ACTIONS(4107), - [aux_sym_preproc_elif_token1] = ACTIONS(4107), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4107), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4107), - [sym_preproc_directive] = ACTIONS(4107), - [anon_sym_LPAREN2] = ACTIONS(4109), - [anon_sym_BANG] = ACTIONS(4109), - [anon_sym_TILDE] = ACTIONS(4109), - [anon_sym_DASH] = ACTIONS(4107), - [anon_sym_PLUS] = ACTIONS(4107), - [anon_sym_STAR] = ACTIONS(4109), - [anon_sym_AMP_AMP] = ACTIONS(4109), - [anon_sym_AMP] = ACTIONS(4107), - [anon_sym_SEMI] = ACTIONS(4109), - [anon_sym___extension__] = ACTIONS(4107), - [anon_sym_typedef] = ACTIONS(4107), - [anon_sym_virtual] = ACTIONS(4107), - [anon_sym_extern] = ACTIONS(4107), - [anon_sym___attribute__] = ACTIONS(4107), - [anon_sym___attribute] = ACTIONS(4107), - [anon_sym_using] = ACTIONS(4107), - [anon_sym_COLON_COLON] = ACTIONS(4109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4109), - [anon_sym___declspec] = ACTIONS(4107), - [anon_sym___based] = ACTIONS(4107), - [anon_sym___cdecl] = ACTIONS(4107), - [anon_sym___clrcall] = ACTIONS(4107), - [anon_sym___stdcall] = ACTIONS(4107), - [anon_sym___fastcall] = ACTIONS(4107), - [anon_sym___thiscall] = ACTIONS(4107), - [anon_sym___vectorcall] = ACTIONS(4107), - [anon_sym_LBRACE] = ACTIONS(4109), - [anon_sym_signed] = ACTIONS(4107), - [anon_sym_unsigned] = ACTIONS(4107), - [anon_sym_long] = ACTIONS(4107), - [anon_sym_short] = ACTIONS(4107), - [anon_sym_LBRACK] = ACTIONS(4107), - [anon_sym_static] = ACTIONS(4107), - [anon_sym_register] = ACTIONS(4107), - [anon_sym_inline] = ACTIONS(4107), - [anon_sym___inline] = ACTIONS(4107), - [anon_sym___inline__] = ACTIONS(4107), - [anon_sym___forceinline] = ACTIONS(4107), - [anon_sym_thread_local] = ACTIONS(4107), - [anon_sym___thread] = ACTIONS(4107), - [anon_sym_const] = ACTIONS(4107), - [anon_sym_constexpr] = ACTIONS(4107), - [anon_sym_volatile] = ACTIONS(4107), - [anon_sym_restrict] = ACTIONS(4107), - [anon_sym___restrict__] = ACTIONS(4107), - [anon_sym__Atomic] = ACTIONS(4107), - [anon_sym__Noreturn] = ACTIONS(4107), - [anon_sym_noreturn] = ACTIONS(4107), - [anon_sym__Nonnull] = ACTIONS(4107), - [anon_sym_mutable] = ACTIONS(4107), - [anon_sym_constinit] = ACTIONS(4107), - [anon_sym_consteval] = ACTIONS(4107), - [anon_sym_alignas] = ACTIONS(4107), - [anon_sym__Alignas] = ACTIONS(4107), - [sym_primitive_type] = ACTIONS(4107), - [anon_sym_enum] = ACTIONS(4107), - [anon_sym_class] = ACTIONS(4107), - [anon_sym_struct] = ACTIONS(4107), - [anon_sym_union] = ACTIONS(4107), - [anon_sym_if] = ACTIONS(4107), - [anon_sym_switch] = ACTIONS(4107), - [anon_sym_case] = ACTIONS(4107), - [anon_sym_default] = ACTIONS(4107), - [anon_sym_while] = ACTIONS(4107), - [anon_sym_do] = ACTIONS(4107), - [anon_sym_for] = ACTIONS(4107), - [anon_sym_return] = ACTIONS(4107), - [anon_sym_break] = ACTIONS(4107), - [anon_sym_continue] = ACTIONS(4107), - [anon_sym_goto] = ACTIONS(4107), - [anon_sym___try] = ACTIONS(4107), - [anon_sym___leave] = ACTIONS(4107), - [anon_sym_not] = ACTIONS(4107), - [anon_sym_compl] = ACTIONS(4107), - [anon_sym_DASH_DASH] = ACTIONS(4109), - [anon_sym_PLUS_PLUS] = ACTIONS(4109), - [anon_sym_sizeof] = ACTIONS(4107), - [anon_sym___alignof__] = ACTIONS(4107), - [anon_sym___alignof] = ACTIONS(4107), - [anon_sym__alignof] = ACTIONS(4107), - [anon_sym_alignof] = ACTIONS(4107), - [anon_sym__Alignof] = ACTIONS(4107), - [anon_sym_offsetof] = ACTIONS(4107), - [anon_sym__Generic] = ACTIONS(4107), - [anon_sym_typename] = ACTIONS(4107), - [anon_sym_asm] = ACTIONS(4107), - [anon_sym___asm__] = ACTIONS(4107), - [anon_sym___asm] = ACTIONS(4107), - [sym_number_literal] = ACTIONS(4109), - [anon_sym_L_SQUOTE] = ACTIONS(4109), - [anon_sym_u_SQUOTE] = ACTIONS(4109), - [anon_sym_U_SQUOTE] = ACTIONS(4109), - [anon_sym_u8_SQUOTE] = ACTIONS(4109), - [anon_sym_SQUOTE] = ACTIONS(4109), - [anon_sym_L_DQUOTE] = ACTIONS(4109), - [anon_sym_u_DQUOTE] = ACTIONS(4109), - [anon_sym_U_DQUOTE] = ACTIONS(4109), - [anon_sym_u8_DQUOTE] = ACTIONS(4109), - [anon_sym_DQUOTE] = ACTIONS(4109), - [sym_true] = ACTIONS(4107), - [sym_false] = ACTIONS(4107), - [anon_sym_NULL] = ACTIONS(4107), - [anon_sym_nullptr] = ACTIONS(4107), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4107), - [anon_sym_decltype] = ACTIONS(4107), - [anon_sym_explicit] = ACTIONS(4107), - [anon_sym_template] = ACTIONS(4107), - [anon_sym_operator] = ACTIONS(4107), - [anon_sym_try] = ACTIONS(4107), - [anon_sym_delete] = ACTIONS(4107), - [anon_sym_throw] = ACTIONS(4107), - [anon_sym_namespace] = ACTIONS(4107), - [anon_sym_static_assert] = ACTIONS(4107), - [anon_sym_concept] = ACTIONS(4107), - [anon_sym_co_return] = ACTIONS(4107), - [anon_sym_co_yield] = ACTIONS(4107), - [anon_sym_R_DQUOTE] = ACTIONS(4109), - [anon_sym_LR_DQUOTE] = ACTIONS(4109), - [anon_sym_uR_DQUOTE] = ACTIONS(4109), - [anon_sym_UR_DQUOTE] = ACTIONS(4109), - [anon_sym_u8R_DQUOTE] = ACTIONS(4109), - [anon_sym_co_await] = ACTIONS(4107), - [anon_sym_new] = ACTIONS(4107), - [anon_sym_requires] = ACTIONS(4107), - [anon_sym_CARET_CARET] = ACTIONS(4109), - [anon_sym_LBRACK_COLON] = ACTIONS(4109), - [sym_this] = ACTIONS(4107), + [STATE(445)] = { + [sym_identifier] = ACTIONS(4108), + [aux_sym_preproc_include_token1] = ACTIONS(4108), + [aux_sym_preproc_def_token1] = ACTIONS(4108), + [aux_sym_preproc_if_token1] = ACTIONS(4108), + [aux_sym_preproc_if_token2] = ACTIONS(4108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4108), + [aux_sym_preproc_else_token1] = ACTIONS(4108), + [aux_sym_preproc_elif_token1] = ACTIONS(4108), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4108), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4108), + [sym_preproc_directive] = ACTIONS(4108), + [anon_sym_LPAREN2] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4110), + [anon_sym_TILDE] = ACTIONS(4110), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_AMP] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym___extension__] = ACTIONS(4108), + [anon_sym_typedef] = ACTIONS(4108), + [anon_sym_virtual] = ACTIONS(4108), + [anon_sym_extern] = ACTIONS(4108), + [anon_sym___attribute__] = ACTIONS(4108), + [anon_sym___attribute] = ACTIONS(4108), + [anon_sym_using] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4110), + [anon_sym___declspec] = ACTIONS(4108), + [anon_sym___based] = ACTIONS(4108), + [anon_sym___cdecl] = ACTIONS(4108), + [anon_sym___clrcall] = ACTIONS(4108), + [anon_sym___stdcall] = ACTIONS(4108), + [anon_sym___fastcall] = ACTIONS(4108), + [anon_sym___thiscall] = ACTIONS(4108), + [anon_sym___vectorcall] = ACTIONS(4108), + [anon_sym_LBRACE] = ACTIONS(4110), + [anon_sym_signed] = ACTIONS(4108), + [anon_sym_unsigned] = ACTIONS(4108), + [anon_sym_long] = ACTIONS(4108), + [anon_sym_short] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_static] = ACTIONS(4108), + [anon_sym_register] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym___inline] = ACTIONS(4108), + [anon_sym___inline__] = ACTIONS(4108), + [anon_sym___forceinline] = ACTIONS(4108), + [anon_sym_thread_local] = ACTIONS(4108), + [anon_sym___thread] = ACTIONS(4108), + [anon_sym_const] = ACTIONS(4108), + [anon_sym_constexpr] = ACTIONS(4108), + [anon_sym_volatile] = ACTIONS(4108), + [anon_sym_restrict] = ACTIONS(4108), + [anon_sym___restrict__] = ACTIONS(4108), + [anon_sym__Atomic] = ACTIONS(4108), + [anon_sym__Noreturn] = ACTIONS(4108), + [anon_sym_noreturn] = ACTIONS(4108), + [anon_sym__Nonnull] = ACTIONS(4108), + [anon_sym_mutable] = ACTIONS(4108), + [anon_sym_constinit] = ACTIONS(4108), + [anon_sym_consteval] = ACTIONS(4108), + [anon_sym_alignas] = ACTIONS(4108), + [anon_sym__Alignas] = ACTIONS(4108), + [sym_primitive_type] = ACTIONS(4108), + [anon_sym_enum] = ACTIONS(4108), + [anon_sym_class] = ACTIONS(4108), + [anon_sym_struct] = ACTIONS(4108), + [anon_sym_union] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_switch] = ACTIONS(4108), + [anon_sym_case] = ACTIONS(4108), + [anon_sym_default] = ACTIONS(4108), + [anon_sym_while] = ACTIONS(4108), + [anon_sym_do] = ACTIONS(4108), + [anon_sym_for] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_goto] = ACTIONS(4108), + [anon_sym___try] = ACTIONS(4108), + [anon_sym___leave] = ACTIONS(4108), + [anon_sym_not] = ACTIONS(4108), + [anon_sym_compl] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_sizeof] = ACTIONS(4108), + [anon_sym___alignof__] = ACTIONS(4108), + [anon_sym___alignof] = ACTIONS(4108), + [anon_sym__alignof] = ACTIONS(4108), + [anon_sym_alignof] = ACTIONS(4108), + [anon_sym__Alignof] = ACTIONS(4108), + [anon_sym_offsetof] = ACTIONS(4108), + [anon_sym__Generic] = ACTIONS(4108), + [anon_sym_typename] = ACTIONS(4108), + [anon_sym_asm] = ACTIONS(4108), + [anon_sym___asm__] = ACTIONS(4108), + [anon_sym___asm] = ACTIONS(4108), + [sym_number_literal] = ACTIONS(4110), + [anon_sym_L_SQUOTE] = ACTIONS(4110), + [anon_sym_u_SQUOTE] = ACTIONS(4110), + [anon_sym_U_SQUOTE] = ACTIONS(4110), + [anon_sym_u8_SQUOTE] = ACTIONS(4110), + [anon_sym_SQUOTE] = ACTIONS(4110), + [anon_sym_L_DQUOTE] = ACTIONS(4110), + [anon_sym_u_DQUOTE] = ACTIONS(4110), + [anon_sym_U_DQUOTE] = ACTIONS(4110), + [anon_sym_u8_DQUOTE] = ACTIONS(4110), + [anon_sym_DQUOTE] = ACTIONS(4110), + [sym_true] = ACTIONS(4108), + [sym_false] = ACTIONS(4108), + [anon_sym_NULL] = ACTIONS(4108), + [anon_sym_nullptr] = ACTIONS(4108), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4108), + [anon_sym_decltype] = ACTIONS(4108), + [anon_sym_explicit] = ACTIONS(4108), + [anon_sym_export] = ACTIONS(4108), + [anon_sym_module] = ACTIONS(4108), + [anon_sym_import] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_delete] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_namespace] = ACTIONS(4108), + [anon_sym_static_assert] = ACTIONS(4108), + [anon_sym_concept] = ACTIONS(4108), + [anon_sym_co_return] = ACTIONS(4108), + [anon_sym_co_yield] = ACTIONS(4108), + [anon_sym_R_DQUOTE] = ACTIONS(4110), + [anon_sym_LR_DQUOTE] = ACTIONS(4110), + [anon_sym_uR_DQUOTE] = ACTIONS(4110), + [anon_sym_UR_DQUOTE] = ACTIONS(4110), + [anon_sym_u8R_DQUOTE] = ACTIONS(4110), + [anon_sym_co_await] = ACTIONS(4108), + [anon_sym_new] = ACTIONS(4108), + [anon_sym_requires] = ACTIONS(4108), + [anon_sym_CARET_CARET] = ACTIONS(4110), + [anon_sym_LBRACK_COLON] = ACTIONS(4110), + [sym_this] = ACTIONS(4108), }, - [STATE(473)] = { - [sym_identifier] = ACTIONS(4111), - [aux_sym_preproc_include_token1] = ACTIONS(4111), - [aux_sym_preproc_def_token1] = ACTIONS(4111), - [aux_sym_preproc_if_token1] = ACTIONS(4111), - [aux_sym_preproc_if_token2] = ACTIONS(4111), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4111), - [aux_sym_preproc_else_token1] = ACTIONS(4111), - [aux_sym_preproc_elif_token1] = ACTIONS(4111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4111), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4111), - [sym_preproc_directive] = ACTIONS(4111), - [anon_sym_LPAREN2] = ACTIONS(4113), - [anon_sym_BANG] = ACTIONS(4113), - [anon_sym_TILDE] = ACTIONS(4113), - [anon_sym_DASH] = ACTIONS(4111), - [anon_sym_PLUS] = ACTIONS(4111), - [anon_sym_STAR] = ACTIONS(4113), - [anon_sym_AMP_AMP] = ACTIONS(4113), - [anon_sym_AMP] = ACTIONS(4111), - [anon_sym_SEMI] = ACTIONS(4113), - [anon_sym___extension__] = ACTIONS(4111), - [anon_sym_typedef] = ACTIONS(4111), - [anon_sym_virtual] = ACTIONS(4111), - [anon_sym_extern] = ACTIONS(4111), - [anon_sym___attribute__] = ACTIONS(4111), - [anon_sym___attribute] = ACTIONS(4111), - [anon_sym_using] = ACTIONS(4111), - [anon_sym_COLON_COLON] = ACTIONS(4113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4113), - [anon_sym___declspec] = ACTIONS(4111), - [anon_sym___based] = ACTIONS(4111), - [anon_sym___cdecl] = ACTIONS(4111), - [anon_sym___clrcall] = ACTIONS(4111), - [anon_sym___stdcall] = ACTIONS(4111), - [anon_sym___fastcall] = ACTIONS(4111), - [anon_sym___thiscall] = ACTIONS(4111), - [anon_sym___vectorcall] = ACTIONS(4111), - [anon_sym_LBRACE] = ACTIONS(4113), - [anon_sym_signed] = ACTIONS(4111), - [anon_sym_unsigned] = ACTIONS(4111), - [anon_sym_long] = ACTIONS(4111), - [anon_sym_short] = ACTIONS(4111), - [anon_sym_LBRACK] = ACTIONS(4111), - [anon_sym_static] = ACTIONS(4111), - [anon_sym_register] = ACTIONS(4111), - [anon_sym_inline] = ACTIONS(4111), - [anon_sym___inline] = ACTIONS(4111), - [anon_sym___inline__] = ACTIONS(4111), - [anon_sym___forceinline] = ACTIONS(4111), - [anon_sym_thread_local] = ACTIONS(4111), - [anon_sym___thread] = ACTIONS(4111), - [anon_sym_const] = ACTIONS(4111), - [anon_sym_constexpr] = ACTIONS(4111), - [anon_sym_volatile] = ACTIONS(4111), - [anon_sym_restrict] = ACTIONS(4111), - [anon_sym___restrict__] = ACTIONS(4111), - [anon_sym__Atomic] = ACTIONS(4111), - [anon_sym__Noreturn] = ACTIONS(4111), - [anon_sym_noreturn] = ACTIONS(4111), - [anon_sym__Nonnull] = ACTIONS(4111), - [anon_sym_mutable] = ACTIONS(4111), - [anon_sym_constinit] = ACTIONS(4111), - [anon_sym_consteval] = ACTIONS(4111), - [anon_sym_alignas] = ACTIONS(4111), - [anon_sym__Alignas] = ACTIONS(4111), - [sym_primitive_type] = ACTIONS(4111), - [anon_sym_enum] = ACTIONS(4111), - [anon_sym_class] = ACTIONS(4111), - [anon_sym_struct] = ACTIONS(4111), - [anon_sym_union] = ACTIONS(4111), - [anon_sym_if] = ACTIONS(4111), - [anon_sym_switch] = ACTIONS(4111), - [anon_sym_case] = ACTIONS(4111), - [anon_sym_default] = ACTIONS(4111), - [anon_sym_while] = ACTIONS(4111), - [anon_sym_do] = ACTIONS(4111), - [anon_sym_for] = ACTIONS(4111), - [anon_sym_return] = ACTIONS(4111), - [anon_sym_break] = ACTIONS(4111), - [anon_sym_continue] = ACTIONS(4111), - [anon_sym_goto] = ACTIONS(4111), - [anon_sym___try] = ACTIONS(4111), - [anon_sym___leave] = ACTIONS(4111), - [anon_sym_not] = ACTIONS(4111), - [anon_sym_compl] = ACTIONS(4111), - [anon_sym_DASH_DASH] = ACTIONS(4113), - [anon_sym_PLUS_PLUS] = ACTIONS(4113), - [anon_sym_sizeof] = ACTIONS(4111), - [anon_sym___alignof__] = ACTIONS(4111), - [anon_sym___alignof] = ACTIONS(4111), - [anon_sym__alignof] = ACTIONS(4111), - [anon_sym_alignof] = ACTIONS(4111), - [anon_sym__Alignof] = ACTIONS(4111), - [anon_sym_offsetof] = ACTIONS(4111), - [anon_sym__Generic] = ACTIONS(4111), - [anon_sym_typename] = ACTIONS(4111), - [anon_sym_asm] = ACTIONS(4111), - [anon_sym___asm__] = ACTIONS(4111), - [anon_sym___asm] = ACTIONS(4111), - [sym_number_literal] = ACTIONS(4113), - [anon_sym_L_SQUOTE] = ACTIONS(4113), - [anon_sym_u_SQUOTE] = ACTIONS(4113), - [anon_sym_U_SQUOTE] = ACTIONS(4113), - [anon_sym_u8_SQUOTE] = ACTIONS(4113), - [anon_sym_SQUOTE] = ACTIONS(4113), - [anon_sym_L_DQUOTE] = ACTIONS(4113), - [anon_sym_u_DQUOTE] = ACTIONS(4113), - [anon_sym_U_DQUOTE] = ACTIONS(4113), - [anon_sym_u8_DQUOTE] = ACTIONS(4113), - [anon_sym_DQUOTE] = ACTIONS(4113), - [sym_true] = ACTIONS(4111), - [sym_false] = ACTIONS(4111), - [anon_sym_NULL] = ACTIONS(4111), - [anon_sym_nullptr] = ACTIONS(4111), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4111), - [anon_sym_decltype] = ACTIONS(4111), - [anon_sym_explicit] = ACTIONS(4111), - [anon_sym_template] = ACTIONS(4111), - [anon_sym_operator] = ACTIONS(4111), - [anon_sym_try] = ACTIONS(4111), - [anon_sym_delete] = ACTIONS(4111), - [anon_sym_throw] = ACTIONS(4111), - [anon_sym_namespace] = ACTIONS(4111), - [anon_sym_static_assert] = ACTIONS(4111), - [anon_sym_concept] = ACTIONS(4111), - [anon_sym_co_return] = ACTIONS(4111), - [anon_sym_co_yield] = ACTIONS(4111), - [anon_sym_R_DQUOTE] = ACTIONS(4113), - [anon_sym_LR_DQUOTE] = ACTIONS(4113), - [anon_sym_uR_DQUOTE] = ACTIONS(4113), - [anon_sym_UR_DQUOTE] = ACTIONS(4113), - [anon_sym_u8R_DQUOTE] = ACTIONS(4113), - [anon_sym_co_await] = ACTIONS(4111), - [anon_sym_new] = ACTIONS(4111), - [anon_sym_requires] = ACTIONS(4111), - [anon_sym_CARET_CARET] = ACTIONS(4113), - [anon_sym_LBRACK_COLON] = ACTIONS(4113), - [sym_this] = ACTIONS(4111), + [STATE(446)] = { + [sym_identifier] = ACTIONS(4112), + [aux_sym_preproc_include_token1] = ACTIONS(4112), + [aux_sym_preproc_def_token1] = ACTIONS(4112), + [aux_sym_preproc_if_token1] = ACTIONS(4112), + [aux_sym_preproc_if_token2] = ACTIONS(4112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4112), + [aux_sym_preproc_else_token1] = ACTIONS(4112), + [aux_sym_preproc_elif_token1] = ACTIONS(4112), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4112), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4112), + [sym_preproc_directive] = ACTIONS(4112), + [anon_sym_LPAREN2] = ACTIONS(4114), + [anon_sym_BANG] = ACTIONS(4114), + [anon_sym_TILDE] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4112), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_STAR] = ACTIONS(4114), + [anon_sym_AMP_AMP] = ACTIONS(4114), + [anon_sym_AMP] = ACTIONS(4112), + [anon_sym_SEMI] = ACTIONS(4114), + [anon_sym___extension__] = ACTIONS(4112), + [anon_sym_typedef] = ACTIONS(4112), + [anon_sym_virtual] = ACTIONS(4112), + [anon_sym_extern] = ACTIONS(4112), + [anon_sym___attribute__] = ACTIONS(4112), + [anon_sym___attribute] = ACTIONS(4112), + [anon_sym_using] = ACTIONS(4112), + [anon_sym_COLON_COLON] = ACTIONS(4114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4114), + [anon_sym___declspec] = ACTIONS(4112), + [anon_sym___based] = ACTIONS(4112), + [anon_sym___cdecl] = ACTIONS(4112), + [anon_sym___clrcall] = ACTIONS(4112), + [anon_sym___stdcall] = ACTIONS(4112), + [anon_sym___fastcall] = ACTIONS(4112), + [anon_sym___thiscall] = ACTIONS(4112), + [anon_sym___vectorcall] = ACTIONS(4112), + [anon_sym_LBRACE] = ACTIONS(4114), + [anon_sym_signed] = ACTIONS(4112), + [anon_sym_unsigned] = ACTIONS(4112), + [anon_sym_long] = ACTIONS(4112), + [anon_sym_short] = ACTIONS(4112), + [anon_sym_LBRACK] = ACTIONS(4112), + [anon_sym_static] = ACTIONS(4112), + [anon_sym_register] = ACTIONS(4112), + [anon_sym_inline] = ACTIONS(4112), + [anon_sym___inline] = ACTIONS(4112), + [anon_sym___inline__] = ACTIONS(4112), + [anon_sym___forceinline] = ACTIONS(4112), + [anon_sym_thread_local] = ACTIONS(4112), + [anon_sym___thread] = ACTIONS(4112), + [anon_sym_const] = ACTIONS(4112), + [anon_sym_constexpr] = ACTIONS(4112), + [anon_sym_volatile] = ACTIONS(4112), + [anon_sym_restrict] = ACTIONS(4112), + [anon_sym___restrict__] = ACTIONS(4112), + [anon_sym__Atomic] = ACTIONS(4112), + [anon_sym__Noreturn] = ACTIONS(4112), + [anon_sym_noreturn] = ACTIONS(4112), + [anon_sym__Nonnull] = ACTIONS(4112), + [anon_sym_mutable] = ACTIONS(4112), + [anon_sym_constinit] = ACTIONS(4112), + [anon_sym_consteval] = ACTIONS(4112), + [anon_sym_alignas] = ACTIONS(4112), + [anon_sym__Alignas] = ACTIONS(4112), + [sym_primitive_type] = ACTIONS(4112), + [anon_sym_enum] = ACTIONS(4112), + [anon_sym_class] = ACTIONS(4112), + [anon_sym_struct] = ACTIONS(4112), + [anon_sym_union] = ACTIONS(4112), + [anon_sym_if] = ACTIONS(4112), + [anon_sym_switch] = ACTIONS(4112), + [anon_sym_case] = ACTIONS(4112), + [anon_sym_default] = ACTIONS(4112), + [anon_sym_while] = ACTIONS(4112), + [anon_sym_do] = ACTIONS(4112), + [anon_sym_for] = ACTIONS(4112), + [anon_sym_return] = ACTIONS(4112), + [anon_sym_break] = ACTIONS(4112), + [anon_sym_continue] = ACTIONS(4112), + [anon_sym_goto] = ACTIONS(4112), + [anon_sym___try] = ACTIONS(4112), + [anon_sym___leave] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4112), + [anon_sym_compl] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4114), + [anon_sym_PLUS_PLUS] = ACTIONS(4114), + [anon_sym_sizeof] = ACTIONS(4112), + [anon_sym___alignof__] = ACTIONS(4112), + [anon_sym___alignof] = ACTIONS(4112), + [anon_sym__alignof] = ACTIONS(4112), + [anon_sym_alignof] = ACTIONS(4112), + [anon_sym__Alignof] = ACTIONS(4112), + [anon_sym_offsetof] = ACTIONS(4112), + [anon_sym__Generic] = ACTIONS(4112), + [anon_sym_typename] = ACTIONS(4112), + [anon_sym_asm] = ACTIONS(4112), + [anon_sym___asm__] = ACTIONS(4112), + [anon_sym___asm] = ACTIONS(4112), + [sym_number_literal] = ACTIONS(4114), + [anon_sym_L_SQUOTE] = ACTIONS(4114), + [anon_sym_u_SQUOTE] = ACTIONS(4114), + [anon_sym_U_SQUOTE] = ACTIONS(4114), + [anon_sym_u8_SQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4114), + [anon_sym_L_DQUOTE] = ACTIONS(4114), + [anon_sym_u_DQUOTE] = ACTIONS(4114), + [anon_sym_U_DQUOTE] = ACTIONS(4114), + [anon_sym_u8_DQUOTE] = ACTIONS(4114), + [anon_sym_DQUOTE] = ACTIONS(4114), + [sym_true] = ACTIONS(4112), + [sym_false] = ACTIONS(4112), + [anon_sym_NULL] = ACTIONS(4112), + [anon_sym_nullptr] = ACTIONS(4112), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4112), + [anon_sym_decltype] = ACTIONS(4112), + [anon_sym_explicit] = ACTIONS(4112), + [anon_sym_export] = ACTIONS(4112), + [anon_sym_module] = ACTIONS(4112), + [anon_sym_import] = ACTIONS(4112), + [anon_sym_template] = ACTIONS(4112), + [anon_sym_operator] = ACTIONS(4112), + [anon_sym_try] = ACTIONS(4112), + [anon_sym_delete] = ACTIONS(4112), + [anon_sym_throw] = ACTIONS(4112), + [anon_sym_namespace] = ACTIONS(4112), + [anon_sym_static_assert] = ACTIONS(4112), + [anon_sym_concept] = ACTIONS(4112), + [anon_sym_co_return] = ACTIONS(4112), + [anon_sym_co_yield] = ACTIONS(4112), + [anon_sym_R_DQUOTE] = ACTIONS(4114), + [anon_sym_LR_DQUOTE] = ACTIONS(4114), + [anon_sym_uR_DQUOTE] = ACTIONS(4114), + [anon_sym_UR_DQUOTE] = ACTIONS(4114), + [anon_sym_u8R_DQUOTE] = ACTIONS(4114), + [anon_sym_co_await] = ACTIONS(4112), + [anon_sym_new] = ACTIONS(4112), + [anon_sym_requires] = ACTIONS(4112), + [anon_sym_CARET_CARET] = ACTIONS(4114), + [anon_sym_LBRACK_COLON] = ACTIONS(4114), + [sym_this] = ACTIONS(4112), }, - [STATE(474)] = { - [sym_identifier] = ACTIONS(4115), - [aux_sym_preproc_include_token1] = ACTIONS(4115), - [aux_sym_preproc_def_token1] = ACTIONS(4115), - [aux_sym_preproc_if_token1] = ACTIONS(4115), - [aux_sym_preproc_if_token2] = ACTIONS(4115), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4115), - [aux_sym_preproc_else_token1] = ACTIONS(4115), - [aux_sym_preproc_elif_token1] = ACTIONS(4115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4115), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4115), - [sym_preproc_directive] = ACTIONS(4115), - [anon_sym_LPAREN2] = ACTIONS(4117), - [anon_sym_BANG] = ACTIONS(4117), - [anon_sym_TILDE] = ACTIONS(4117), - [anon_sym_DASH] = ACTIONS(4115), - [anon_sym_PLUS] = ACTIONS(4115), - [anon_sym_STAR] = ACTIONS(4117), - [anon_sym_AMP_AMP] = ACTIONS(4117), - [anon_sym_AMP] = ACTIONS(4115), - [anon_sym_SEMI] = ACTIONS(4117), - [anon_sym___extension__] = ACTIONS(4115), - [anon_sym_typedef] = ACTIONS(4115), - [anon_sym_virtual] = ACTIONS(4115), - [anon_sym_extern] = ACTIONS(4115), - [anon_sym___attribute__] = ACTIONS(4115), - [anon_sym___attribute] = ACTIONS(4115), - [anon_sym_using] = ACTIONS(4115), - [anon_sym_COLON_COLON] = ACTIONS(4117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4117), - [anon_sym___declspec] = ACTIONS(4115), - [anon_sym___based] = ACTIONS(4115), - [anon_sym___cdecl] = ACTIONS(4115), - [anon_sym___clrcall] = ACTIONS(4115), - [anon_sym___stdcall] = ACTIONS(4115), - [anon_sym___fastcall] = ACTIONS(4115), - [anon_sym___thiscall] = ACTIONS(4115), - [anon_sym___vectorcall] = ACTIONS(4115), - [anon_sym_LBRACE] = ACTIONS(4117), - [anon_sym_signed] = ACTIONS(4115), - [anon_sym_unsigned] = ACTIONS(4115), - [anon_sym_long] = ACTIONS(4115), - [anon_sym_short] = ACTIONS(4115), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4115), - [anon_sym_register] = ACTIONS(4115), - [anon_sym_inline] = ACTIONS(4115), - [anon_sym___inline] = ACTIONS(4115), - [anon_sym___inline__] = ACTIONS(4115), - [anon_sym___forceinline] = ACTIONS(4115), - [anon_sym_thread_local] = ACTIONS(4115), - [anon_sym___thread] = ACTIONS(4115), - [anon_sym_const] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(4115), - [anon_sym_volatile] = ACTIONS(4115), - [anon_sym_restrict] = ACTIONS(4115), - [anon_sym___restrict__] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(4115), - [anon_sym__Noreturn] = ACTIONS(4115), - [anon_sym_noreturn] = ACTIONS(4115), - [anon_sym__Nonnull] = ACTIONS(4115), - [anon_sym_mutable] = ACTIONS(4115), - [anon_sym_constinit] = ACTIONS(4115), - [anon_sym_consteval] = ACTIONS(4115), - [anon_sym_alignas] = ACTIONS(4115), - [anon_sym__Alignas] = ACTIONS(4115), - [sym_primitive_type] = ACTIONS(4115), - [anon_sym_enum] = ACTIONS(4115), - [anon_sym_class] = ACTIONS(4115), - [anon_sym_struct] = ACTIONS(4115), - [anon_sym_union] = ACTIONS(4115), - [anon_sym_if] = ACTIONS(4115), - [anon_sym_switch] = ACTIONS(4115), - [anon_sym_case] = ACTIONS(4115), - [anon_sym_default] = ACTIONS(4115), - [anon_sym_while] = ACTIONS(4115), - [anon_sym_do] = ACTIONS(4115), - [anon_sym_for] = ACTIONS(4115), - [anon_sym_return] = ACTIONS(4115), - [anon_sym_break] = ACTIONS(4115), - [anon_sym_continue] = ACTIONS(4115), - [anon_sym_goto] = ACTIONS(4115), - [anon_sym___try] = ACTIONS(4115), - [anon_sym___leave] = ACTIONS(4115), - [anon_sym_not] = ACTIONS(4115), - [anon_sym_compl] = ACTIONS(4115), - [anon_sym_DASH_DASH] = ACTIONS(4117), - [anon_sym_PLUS_PLUS] = ACTIONS(4117), - [anon_sym_sizeof] = ACTIONS(4115), - [anon_sym___alignof__] = ACTIONS(4115), - [anon_sym___alignof] = ACTIONS(4115), - [anon_sym__alignof] = ACTIONS(4115), - [anon_sym_alignof] = ACTIONS(4115), - [anon_sym__Alignof] = ACTIONS(4115), - [anon_sym_offsetof] = ACTIONS(4115), - [anon_sym__Generic] = ACTIONS(4115), - [anon_sym_typename] = ACTIONS(4115), - [anon_sym_asm] = ACTIONS(4115), - [anon_sym___asm__] = ACTIONS(4115), - [anon_sym___asm] = ACTIONS(4115), - [sym_number_literal] = ACTIONS(4117), - [anon_sym_L_SQUOTE] = ACTIONS(4117), - [anon_sym_u_SQUOTE] = ACTIONS(4117), - [anon_sym_U_SQUOTE] = ACTIONS(4117), - [anon_sym_u8_SQUOTE] = ACTIONS(4117), - [anon_sym_SQUOTE] = ACTIONS(4117), - [anon_sym_L_DQUOTE] = ACTIONS(4117), - [anon_sym_u_DQUOTE] = ACTIONS(4117), - [anon_sym_U_DQUOTE] = ACTIONS(4117), - [anon_sym_u8_DQUOTE] = ACTIONS(4117), - [anon_sym_DQUOTE] = ACTIONS(4117), - [sym_true] = ACTIONS(4115), - [sym_false] = ACTIONS(4115), - [anon_sym_NULL] = ACTIONS(4115), - [anon_sym_nullptr] = ACTIONS(4115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4115), - [anon_sym_decltype] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(4115), - [anon_sym_template] = ACTIONS(4115), - [anon_sym_operator] = ACTIONS(4115), - [anon_sym_try] = ACTIONS(4115), - [anon_sym_delete] = ACTIONS(4115), - [anon_sym_throw] = ACTIONS(4115), - [anon_sym_namespace] = ACTIONS(4115), - [anon_sym_static_assert] = ACTIONS(4115), - [anon_sym_concept] = ACTIONS(4115), - [anon_sym_co_return] = ACTIONS(4115), - [anon_sym_co_yield] = ACTIONS(4115), - [anon_sym_R_DQUOTE] = ACTIONS(4117), - [anon_sym_LR_DQUOTE] = ACTIONS(4117), - [anon_sym_uR_DQUOTE] = ACTIONS(4117), - [anon_sym_UR_DQUOTE] = ACTIONS(4117), - [anon_sym_u8R_DQUOTE] = ACTIONS(4117), - [anon_sym_co_await] = ACTIONS(4115), - [anon_sym_new] = ACTIONS(4115), - [anon_sym_requires] = ACTIONS(4115), - [anon_sym_CARET_CARET] = ACTIONS(4117), - [anon_sym_LBRACK_COLON] = ACTIONS(4117), - [sym_this] = ACTIONS(4115), + [STATE(447)] = { + [sym_identifier] = ACTIONS(4116), + [aux_sym_preproc_include_token1] = ACTIONS(4116), + [aux_sym_preproc_def_token1] = ACTIONS(4116), + [aux_sym_preproc_if_token1] = ACTIONS(4116), + [aux_sym_preproc_if_token2] = ACTIONS(4116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4116), + [aux_sym_preproc_else_token1] = ACTIONS(4116), + [aux_sym_preproc_elif_token1] = ACTIONS(4116), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4116), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4116), + [sym_preproc_directive] = ACTIONS(4116), + [anon_sym_LPAREN2] = ACTIONS(4118), + [anon_sym_BANG] = ACTIONS(4118), + [anon_sym_TILDE] = ACTIONS(4118), + [anon_sym_DASH] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4116), + [anon_sym_STAR] = ACTIONS(4118), + [anon_sym_AMP_AMP] = ACTIONS(4118), + [anon_sym_AMP] = ACTIONS(4116), + [anon_sym_SEMI] = ACTIONS(4118), + [anon_sym___extension__] = ACTIONS(4116), + [anon_sym_typedef] = ACTIONS(4116), + [anon_sym_virtual] = ACTIONS(4116), + [anon_sym_extern] = ACTIONS(4116), + [anon_sym___attribute__] = ACTIONS(4116), + [anon_sym___attribute] = ACTIONS(4116), + [anon_sym_using] = ACTIONS(4116), + [anon_sym_COLON_COLON] = ACTIONS(4118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4118), + [anon_sym___declspec] = ACTIONS(4116), + [anon_sym___based] = ACTIONS(4116), + [anon_sym___cdecl] = ACTIONS(4116), + [anon_sym___clrcall] = ACTIONS(4116), + [anon_sym___stdcall] = ACTIONS(4116), + [anon_sym___fastcall] = ACTIONS(4116), + [anon_sym___thiscall] = ACTIONS(4116), + [anon_sym___vectorcall] = ACTIONS(4116), + [anon_sym_LBRACE] = ACTIONS(4118), + [anon_sym_signed] = ACTIONS(4116), + [anon_sym_unsigned] = ACTIONS(4116), + [anon_sym_long] = ACTIONS(4116), + [anon_sym_short] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_static] = ACTIONS(4116), + [anon_sym_register] = ACTIONS(4116), + [anon_sym_inline] = ACTIONS(4116), + [anon_sym___inline] = ACTIONS(4116), + [anon_sym___inline__] = ACTIONS(4116), + [anon_sym___forceinline] = ACTIONS(4116), + [anon_sym_thread_local] = ACTIONS(4116), + [anon_sym___thread] = ACTIONS(4116), + [anon_sym_const] = ACTIONS(4116), + [anon_sym_constexpr] = ACTIONS(4116), + [anon_sym_volatile] = ACTIONS(4116), + [anon_sym_restrict] = ACTIONS(4116), + [anon_sym___restrict__] = ACTIONS(4116), + [anon_sym__Atomic] = ACTIONS(4116), + [anon_sym__Noreturn] = ACTIONS(4116), + [anon_sym_noreturn] = ACTIONS(4116), + [anon_sym__Nonnull] = ACTIONS(4116), + [anon_sym_mutable] = ACTIONS(4116), + [anon_sym_constinit] = ACTIONS(4116), + [anon_sym_consteval] = ACTIONS(4116), + [anon_sym_alignas] = ACTIONS(4116), + [anon_sym__Alignas] = ACTIONS(4116), + [sym_primitive_type] = ACTIONS(4116), + [anon_sym_enum] = ACTIONS(4116), + [anon_sym_class] = ACTIONS(4116), + [anon_sym_struct] = ACTIONS(4116), + [anon_sym_union] = ACTIONS(4116), + [anon_sym_if] = ACTIONS(4116), + [anon_sym_switch] = ACTIONS(4116), + [anon_sym_case] = ACTIONS(4116), + [anon_sym_default] = ACTIONS(4116), + [anon_sym_while] = ACTIONS(4116), + [anon_sym_do] = ACTIONS(4116), + [anon_sym_for] = ACTIONS(4116), + [anon_sym_return] = ACTIONS(4116), + [anon_sym_break] = ACTIONS(4116), + [anon_sym_continue] = ACTIONS(4116), + [anon_sym_goto] = ACTIONS(4116), + [anon_sym___try] = ACTIONS(4116), + [anon_sym___leave] = ACTIONS(4116), + [anon_sym_not] = ACTIONS(4116), + [anon_sym_compl] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4118), + [anon_sym_PLUS_PLUS] = ACTIONS(4118), + [anon_sym_sizeof] = ACTIONS(4116), + [anon_sym___alignof__] = ACTIONS(4116), + [anon_sym___alignof] = ACTIONS(4116), + [anon_sym__alignof] = ACTIONS(4116), + [anon_sym_alignof] = ACTIONS(4116), + [anon_sym__Alignof] = ACTIONS(4116), + [anon_sym_offsetof] = ACTIONS(4116), + [anon_sym__Generic] = ACTIONS(4116), + [anon_sym_typename] = ACTIONS(4116), + [anon_sym_asm] = ACTIONS(4116), + [anon_sym___asm__] = ACTIONS(4116), + [anon_sym___asm] = ACTIONS(4116), + [sym_number_literal] = ACTIONS(4118), + [anon_sym_L_SQUOTE] = ACTIONS(4118), + [anon_sym_u_SQUOTE] = ACTIONS(4118), + [anon_sym_U_SQUOTE] = ACTIONS(4118), + [anon_sym_u8_SQUOTE] = ACTIONS(4118), + [anon_sym_SQUOTE] = ACTIONS(4118), + [anon_sym_L_DQUOTE] = ACTIONS(4118), + [anon_sym_u_DQUOTE] = ACTIONS(4118), + [anon_sym_U_DQUOTE] = ACTIONS(4118), + [anon_sym_u8_DQUOTE] = ACTIONS(4118), + [anon_sym_DQUOTE] = ACTIONS(4118), + [sym_true] = ACTIONS(4116), + [sym_false] = ACTIONS(4116), + [anon_sym_NULL] = ACTIONS(4116), + [anon_sym_nullptr] = ACTIONS(4116), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4116), + [anon_sym_decltype] = ACTIONS(4116), + [anon_sym_explicit] = ACTIONS(4116), + [anon_sym_export] = ACTIONS(4116), + [anon_sym_module] = ACTIONS(4116), + [anon_sym_import] = ACTIONS(4116), + [anon_sym_template] = ACTIONS(4116), + [anon_sym_operator] = ACTIONS(4116), + [anon_sym_try] = ACTIONS(4116), + [anon_sym_delete] = ACTIONS(4116), + [anon_sym_throw] = ACTIONS(4116), + [anon_sym_namespace] = ACTIONS(4116), + [anon_sym_static_assert] = ACTIONS(4116), + [anon_sym_concept] = ACTIONS(4116), + [anon_sym_co_return] = ACTIONS(4116), + [anon_sym_co_yield] = ACTIONS(4116), + [anon_sym_R_DQUOTE] = ACTIONS(4118), + [anon_sym_LR_DQUOTE] = ACTIONS(4118), + [anon_sym_uR_DQUOTE] = ACTIONS(4118), + [anon_sym_UR_DQUOTE] = ACTIONS(4118), + [anon_sym_u8R_DQUOTE] = ACTIONS(4118), + [anon_sym_co_await] = ACTIONS(4116), + [anon_sym_new] = ACTIONS(4116), + [anon_sym_requires] = ACTIONS(4116), + [anon_sym_CARET_CARET] = ACTIONS(4118), + [anon_sym_LBRACK_COLON] = ACTIONS(4118), + [sym_this] = ACTIONS(4116), }, - [STATE(475)] = { - [sym_identifier] = ACTIONS(4119), - [aux_sym_preproc_include_token1] = ACTIONS(4119), - [aux_sym_preproc_def_token1] = ACTIONS(4119), - [aux_sym_preproc_if_token1] = ACTIONS(4119), - [aux_sym_preproc_if_token2] = ACTIONS(4119), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4119), - [aux_sym_preproc_else_token1] = ACTIONS(4119), - [aux_sym_preproc_elif_token1] = ACTIONS(4119), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4119), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4119), - [sym_preproc_directive] = ACTIONS(4119), - [anon_sym_LPAREN2] = ACTIONS(4121), - [anon_sym_BANG] = ACTIONS(4121), - [anon_sym_TILDE] = ACTIONS(4121), - [anon_sym_DASH] = ACTIONS(4119), - [anon_sym_PLUS] = ACTIONS(4119), - [anon_sym_STAR] = ACTIONS(4121), - [anon_sym_AMP_AMP] = ACTIONS(4121), - [anon_sym_AMP] = ACTIONS(4119), - [anon_sym_SEMI] = ACTIONS(4121), - [anon_sym___extension__] = ACTIONS(4119), - [anon_sym_typedef] = ACTIONS(4119), - [anon_sym_virtual] = ACTIONS(4119), - [anon_sym_extern] = ACTIONS(4119), - [anon_sym___attribute__] = ACTIONS(4119), - [anon_sym___attribute] = ACTIONS(4119), - [anon_sym_using] = ACTIONS(4119), - [anon_sym_COLON_COLON] = ACTIONS(4121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4121), - [anon_sym___declspec] = ACTIONS(4119), - [anon_sym___based] = ACTIONS(4119), - [anon_sym___cdecl] = ACTIONS(4119), - [anon_sym___clrcall] = ACTIONS(4119), - [anon_sym___stdcall] = ACTIONS(4119), - [anon_sym___fastcall] = ACTIONS(4119), - [anon_sym___thiscall] = ACTIONS(4119), - [anon_sym___vectorcall] = ACTIONS(4119), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_signed] = ACTIONS(4119), - [anon_sym_unsigned] = ACTIONS(4119), - [anon_sym_long] = ACTIONS(4119), - [anon_sym_short] = ACTIONS(4119), - [anon_sym_LBRACK] = ACTIONS(4119), - [anon_sym_static] = ACTIONS(4119), - [anon_sym_register] = ACTIONS(4119), - [anon_sym_inline] = ACTIONS(4119), - [anon_sym___inline] = ACTIONS(4119), - [anon_sym___inline__] = ACTIONS(4119), - [anon_sym___forceinline] = ACTIONS(4119), - [anon_sym_thread_local] = ACTIONS(4119), - [anon_sym___thread] = ACTIONS(4119), - [anon_sym_const] = ACTIONS(4119), - [anon_sym_constexpr] = ACTIONS(4119), - [anon_sym_volatile] = ACTIONS(4119), - [anon_sym_restrict] = ACTIONS(4119), - [anon_sym___restrict__] = ACTIONS(4119), - [anon_sym__Atomic] = ACTIONS(4119), - [anon_sym__Noreturn] = ACTIONS(4119), - [anon_sym_noreturn] = ACTIONS(4119), - [anon_sym__Nonnull] = ACTIONS(4119), - [anon_sym_mutable] = ACTIONS(4119), - [anon_sym_constinit] = ACTIONS(4119), - [anon_sym_consteval] = ACTIONS(4119), - [anon_sym_alignas] = ACTIONS(4119), - [anon_sym__Alignas] = ACTIONS(4119), - [sym_primitive_type] = ACTIONS(4119), - [anon_sym_enum] = ACTIONS(4119), - [anon_sym_class] = ACTIONS(4119), - [anon_sym_struct] = ACTIONS(4119), - [anon_sym_union] = ACTIONS(4119), - [anon_sym_if] = ACTIONS(4119), - [anon_sym_switch] = ACTIONS(4119), - [anon_sym_case] = ACTIONS(4119), - [anon_sym_default] = ACTIONS(4119), - [anon_sym_while] = ACTIONS(4119), - [anon_sym_do] = ACTIONS(4119), - [anon_sym_for] = ACTIONS(4119), - [anon_sym_return] = ACTIONS(4119), - [anon_sym_break] = ACTIONS(4119), - [anon_sym_continue] = ACTIONS(4119), - [anon_sym_goto] = ACTIONS(4119), - [anon_sym___try] = ACTIONS(4119), - [anon_sym___leave] = ACTIONS(4119), - [anon_sym_not] = ACTIONS(4119), - [anon_sym_compl] = ACTIONS(4119), - [anon_sym_DASH_DASH] = ACTIONS(4121), - [anon_sym_PLUS_PLUS] = ACTIONS(4121), - [anon_sym_sizeof] = ACTIONS(4119), - [anon_sym___alignof__] = ACTIONS(4119), - [anon_sym___alignof] = ACTIONS(4119), - [anon_sym__alignof] = ACTIONS(4119), - [anon_sym_alignof] = ACTIONS(4119), - [anon_sym__Alignof] = ACTIONS(4119), - [anon_sym_offsetof] = ACTIONS(4119), - [anon_sym__Generic] = ACTIONS(4119), - [anon_sym_typename] = ACTIONS(4119), - [anon_sym_asm] = ACTIONS(4119), - [anon_sym___asm__] = ACTIONS(4119), - [anon_sym___asm] = ACTIONS(4119), - [sym_number_literal] = ACTIONS(4121), - [anon_sym_L_SQUOTE] = ACTIONS(4121), - [anon_sym_u_SQUOTE] = ACTIONS(4121), - [anon_sym_U_SQUOTE] = ACTIONS(4121), - [anon_sym_u8_SQUOTE] = ACTIONS(4121), - [anon_sym_SQUOTE] = ACTIONS(4121), - [anon_sym_L_DQUOTE] = ACTIONS(4121), - [anon_sym_u_DQUOTE] = ACTIONS(4121), - [anon_sym_U_DQUOTE] = ACTIONS(4121), - [anon_sym_u8_DQUOTE] = ACTIONS(4121), - [anon_sym_DQUOTE] = ACTIONS(4121), - [sym_true] = ACTIONS(4119), - [sym_false] = ACTIONS(4119), - [anon_sym_NULL] = ACTIONS(4119), - [anon_sym_nullptr] = ACTIONS(4119), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4119), - [anon_sym_decltype] = ACTIONS(4119), - [anon_sym_explicit] = ACTIONS(4119), - [anon_sym_template] = ACTIONS(4119), - [anon_sym_operator] = ACTIONS(4119), - [anon_sym_try] = ACTIONS(4119), - [anon_sym_delete] = ACTIONS(4119), - [anon_sym_throw] = ACTIONS(4119), - [anon_sym_namespace] = ACTIONS(4119), - [anon_sym_static_assert] = ACTIONS(4119), - [anon_sym_concept] = ACTIONS(4119), - [anon_sym_co_return] = ACTIONS(4119), - [anon_sym_co_yield] = ACTIONS(4119), - [anon_sym_R_DQUOTE] = ACTIONS(4121), - [anon_sym_LR_DQUOTE] = ACTIONS(4121), - [anon_sym_uR_DQUOTE] = ACTIONS(4121), - [anon_sym_UR_DQUOTE] = ACTIONS(4121), - [anon_sym_u8R_DQUOTE] = ACTIONS(4121), - [anon_sym_co_await] = ACTIONS(4119), - [anon_sym_new] = ACTIONS(4119), - [anon_sym_requires] = ACTIONS(4119), - [anon_sym_CARET_CARET] = ACTIONS(4121), - [anon_sym_LBRACK_COLON] = ACTIONS(4121), - [sym_this] = ACTIONS(4119), + [STATE(448)] = { + [sym_identifier] = ACTIONS(4120), + [aux_sym_preproc_include_token1] = ACTIONS(4120), + [aux_sym_preproc_def_token1] = ACTIONS(4120), + [aux_sym_preproc_if_token1] = ACTIONS(4120), + [aux_sym_preproc_if_token2] = ACTIONS(4120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4120), + [aux_sym_preproc_else_token1] = ACTIONS(4120), + [aux_sym_preproc_elif_token1] = ACTIONS(4120), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4120), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4120), + [sym_preproc_directive] = ACTIONS(4120), + [anon_sym_LPAREN2] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4122), + [anon_sym_TILDE] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_AMP] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym___extension__] = ACTIONS(4120), + [anon_sym_typedef] = ACTIONS(4120), + [anon_sym_virtual] = ACTIONS(4120), + [anon_sym_extern] = ACTIONS(4120), + [anon_sym___attribute__] = ACTIONS(4120), + [anon_sym___attribute] = ACTIONS(4120), + [anon_sym_using] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4122), + [anon_sym___declspec] = ACTIONS(4120), + [anon_sym___based] = ACTIONS(4120), + [anon_sym___cdecl] = ACTIONS(4120), + [anon_sym___clrcall] = ACTIONS(4120), + [anon_sym___stdcall] = ACTIONS(4120), + [anon_sym___fastcall] = ACTIONS(4120), + [anon_sym___thiscall] = ACTIONS(4120), + [anon_sym___vectorcall] = ACTIONS(4120), + [anon_sym_LBRACE] = ACTIONS(4122), + [anon_sym_signed] = ACTIONS(4120), + [anon_sym_unsigned] = ACTIONS(4120), + [anon_sym_long] = ACTIONS(4120), + [anon_sym_short] = ACTIONS(4120), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_static] = ACTIONS(4120), + [anon_sym_register] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym___inline] = ACTIONS(4120), + [anon_sym___inline__] = ACTIONS(4120), + [anon_sym___forceinline] = ACTIONS(4120), + [anon_sym_thread_local] = ACTIONS(4120), + [anon_sym___thread] = ACTIONS(4120), + [anon_sym_const] = ACTIONS(4120), + [anon_sym_constexpr] = ACTIONS(4120), + [anon_sym_volatile] = ACTIONS(4120), + [anon_sym_restrict] = ACTIONS(4120), + [anon_sym___restrict__] = ACTIONS(4120), + [anon_sym__Atomic] = ACTIONS(4120), + [anon_sym__Noreturn] = ACTIONS(4120), + [anon_sym_noreturn] = ACTIONS(4120), + [anon_sym__Nonnull] = ACTIONS(4120), + [anon_sym_mutable] = ACTIONS(4120), + [anon_sym_constinit] = ACTIONS(4120), + [anon_sym_consteval] = ACTIONS(4120), + [anon_sym_alignas] = ACTIONS(4120), + [anon_sym__Alignas] = ACTIONS(4120), + [sym_primitive_type] = ACTIONS(4120), + [anon_sym_enum] = ACTIONS(4120), + [anon_sym_class] = ACTIONS(4120), + [anon_sym_struct] = ACTIONS(4120), + [anon_sym_union] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_switch] = ACTIONS(4120), + [anon_sym_case] = ACTIONS(4120), + [anon_sym_default] = ACTIONS(4120), + [anon_sym_while] = ACTIONS(4120), + [anon_sym_do] = ACTIONS(4120), + [anon_sym_for] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_goto] = ACTIONS(4120), + [anon_sym___try] = ACTIONS(4120), + [anon_sym___leave] = ACTIONS(4120), + [anon_sym_not] = ACTIONS(4120), + [anon_sym_compl] = ACTIONS(4120), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_sizeof] = ACTIONS(4120), + [anon_sym___alignof__] = ACTIONS(4120), + [anon_sym___alignof] = ACTIONS(4120), + [anon_sym__alignof] = ACTIONS(4120), + [anon_sym_alignof] = ACTIONS(4120), + [anon_sym__Alignof] = ACTIONS(4120), + [anon_sym_offsetof] = ACTIONS(4120), + [anon_sym__Generic] = ACTIONS(4120), + [anon_sym_typename] = ACTIONS(4120), + [anon_sym_asm] = ACTIONS(4120), + [anon_sym___asm__] = ACTIONS(4120), + [anon_sym___asm] = ACTIONS(4120), + [sym_number_literal] = ACTIONS(4122), + [anon_sym_L_SQUOTE] = ACTIONS(4122), + [anon_sym_u_SQUOTE] = ACTIONS(4122), + [anon_sym_U_SQUOTE] = ACTIONS(4122), + [anon_sym_u8_SQUOTE] = ACTIONS(4122), + [anon_sym_SQUOTE] = ACTIONS(4122), + [anon_sym_L_DQUOTE] = ACTIONS(4122), + [anon_sym_u_DQUOTE] = ACTIONS(4122), + [anon_sym_U_DQUOTE] = ACTIONS(4122), + [anon_sym_u8_DQUOTE] = ACTIONS(4122), + [anon_sym_DQUOTE] = ACTIONS(4122), + [sym_true] = ACTIONS(4120), + [sym_false] = ACTIONS(4120), + [anon_sym_NULL] = ACTIONS(4120), + [anon_sym_nullptr] = ACTIONS(4120), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4120), + [anon_sym_decltype] = ACTIONS(4120), + [anon_sym_explicit] = ACTIONS(4120), + [anon_sym_export] = ACTIONS(4120), + [anon_sym_module] = ACTIONS(4120), + [anon_sym_import] = ACTIONS(4120), + [anon_sym_template] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_delete] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_namespace] = ACTIONS(4120), + [anon_sym_static_assert] = ACTIONS(4120), + [anon_sym_concept] = ACTIONS(4120), + [anon_sym_co_return] = ACTIONS(4120), + [anon_sym_co_yield] = ACTIONS(4120), + [anon_sym_R_DQUOTE] = ACTIONS(4122), + [anon_sym_LR_DQUOTE] = ACTIONS(4122), + [anon_sym_uR_DQUOTE] = ACTIONS(4122), + [anon_sym_UR_DQUOTE] = ACTIONS(4122), + [anon_sym_u8R_DQUOTE] = ACTIONS(4122), + [anon_sym_co_await] = ACTIONS(4120), + [anon_sym_new] = ACTIONS(4120), + [anon_sym_requires] = ACTIONS(4120), + [anon_sym_CARET_CARET] = ACTIONS(4122), + [anon_sym_LBRACK_COLON] = ACTIONS(4122), + [sym_this] = ACTIONS(4120), }, - [STATE(476)] = { - [sym_catch_clause] = STATE(309), - [aux_sym_constructor_try_statement_repeat1] = STATE(309), - [ts_builtin_sym_end] = ACTIONS(3556), - [sym_identifier] = ACTIONS(3554), - [aux_sym_preproc_include_token1] = ACTIONS(3554), - [aux_sym_preproc_def_token1] = ACTIONS(3554), - [aux_sym_preproc_if_token1] = ACTIONS(3554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3554), - [sym_preproc_directive] = ACTIONS(3554), - [anon_sym_LPAREN2] = ACTIONS(3556), - [anon_sym_BANG] = ACTIONS(3556), - [anon_sym_TILDE] = ACTIONS(3556), - [anon_sym_DASH] = ACTIONS(3554), - [anon_sym_PLUS] = ACTIONS(3554), - [anon_sym_STAR] = ACTIONS(3556), - [anon_sym_AMP_AMP] = ACTIONS(3556), - [anon_sym_AMP] = ACTIONS(3554), - [anon_sym_SEMI] = ACTIONS(3556), - [anon_sym___extension__] = ACTIONS(3554), - [anon_sym_typedef] = ACTIONS(3554), - [anon_sym_virtual] = ACTIONS(3554), - [anon_sym_extern] = ACTIONS(3554), - [anon_sym___attribute__] = ACTIONS(3554), - [anon_sym___attribute] = ACTIONS(3554), - [anon_sym_using] = ACTIONS(3554), - [anon_sym_COLON_COLON] = ACTIONS(3556), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3556), - [anon_sym___declspec] = ACTIONS(3554), - [anon_sym___based] = ACTIONS(3554), - [anon_sym___cdecl] = ACTIONS(3554), - [anon_sym___clrcall] = ACTIONS(3554), - [anon_sym___stdcall] = ACTIONS(3554), - [anon_sym___fastcall] = ACTIONS(3554), - [anon_sym___thiscall] = ACTIONS(3554), - [anon_sym___vectorcall] = ACTIONS(3554), - [anon_sym_LBRACE] = ACTIONS(3556), - [anon_sym_signed] = ACTIONS(3554), - [anon_sym_unsigned] = ACTIONS(3554), - [anon_sym_long] = ACTIONS(3554), - [anon_sym_short] = ACTIONS(3554), - [anon_sym_LBRACK] = ACTIONS(3554), - [anon_sym_static] = ACTIONS(3554), - [anon_sym_register] = ACTIONS(3554), - [anon_sym_inline] = ACTIONS(3554), - [anon_sym___inline] = ACTIONS(3554), - [anon_sym___inline__] = ACTIONS(3554), - [anon_sym___forceinline] = ACTIONS(3554), - [anon_sym_thread_local] = ACTIONS(3554), - [anon_sym___thread] = ACTIONS(3554), - [anon_sym_const] = ACTIONS(3554), - [anon_sym_constexpr] = ACTIONS(3554), - [anon_sym_volatile] = ACTIONS(3554), - [anon_sym_restrict] = ACTIONS(3554), - [anon_sym___restrict__] = ACTIONS(3554), - [anon_sym__Atomic] = ACTIONS(3554), - [anon_sym__Noreturn] = ACTIONS(3554), - [anon_sym_noreturn] = ACTIONS(3554), - [anon_sym__Nonnull] = ACTIONS(3554), - [anon_sym_mutable] = ACTIONS(3554), - [anon_sym_constinit] = ACTIONS(3554), - [anon_sym_consteval] = ACTIONS(3554), - [anon_sym_alignas] = ACTIONS(3554), - [anon_sym__Alignas] = ACTIONS(3554), - [sym_primitive_type] = ACTIONS(3554), - [anon_sym_enum] = ACTIONS(3554), - [anon_sym_class] = ACTIONS(3554), - [anon_sym_struct] = ACTIONS(3554), - [anon_sym_union] = ACTIONS(3554), - [anon_sym_if] = ACTIONS(3554), - [anon_sym_switch] = ACTIONS(3554), - [anon_sym_case] = ACTIONS(3554), - [anon_sym_default] = ACTIONS(3554), - [anon_sym_while] = ACTIONS(3554), - [anon_sym_do] = ACTIONS(3554), - [anon_sym_for] = ACTIONS(3554), - [anon_sym_return] = ACTIONS(3554), - [anon_sym_break] = ACTIONS(3554), - [anon_sym_continue] = ACTIONS(3554), - [anon_sym_goto] = ACTIONS(3554), - [anon_sym_not] = ACTIONS(3554), - [anon_sym_compl] = ACTIONS(3554), - [anon_sym_DASH_DASH] = ACTIONS(3556), - [anon_sym_PLUS_PLUS] = ACTIONS(3556), - [anon_sym_sizeof] = ACTIONS(3554), - [anon_sym___alignof__] = ACTIONS(3554), - [anon_sym___alignof] = ACTIONS(3554), - [anon_sym__alignof] = ACTIONS(3554), - [anon_sym_alignof] = ACTIONS(3554), - [anon_sym__Alignof] = ACTIONS(3554), - [anon_sym_offsetof] = ACTIONS(3554), - [anon_sym__Generic] = ACTIONS(3554), - [anon_sym_typename] = ACTIONS(3554), - [anon_sym_asm] = ACTIONS(3554), - [anon_sym___asm__] = ACTIONS(3554), - [anon_sym___asm] = ACTIONS(3554), - [sym_number_literal] = ACTIONS(3556), - [anon_sym_L_SQUOTE] = ACTIONS(3556), - [anon_sym_u_SQUOTE] = ACTIONS(3556), - [anon_sym_U_SQUOTE] = ACTIONS(3556), - [anon_sym_u8_SQUOTE] = ACTIONS(3556), - [anon_sym_SQUOTE] = ACTIONS(3556), - [anon_sym_L_DQUOTE] = ACTIONS(3556), - [anon_sym_u_DQUOTE] = ACTIONS(3556), - [anon_sym_U_DQUOTE] = ACTIONS(3556), - [anon_sym_u8_DQUOTE] = ACTIONS(3556), - [anon_sym_DQUOTE] = ACTIONS(3556), - [sym_true] = ACTIONS(3554), - [sym_false] = ACTIONS(3554), - [anon_sym_NULL] = ACTIONS(3554), - [anon_sym_nullptr] = ACTIONS(3554), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3554), - [anon_sym_decltype] = ACTIONS(3554), - [anon_sym_explicit] = ACTIONS(3554), - [anon_sym_export] = ACTIONS(3554), - [anon_sym_module] = ACTIONS(3554), - [anon_sym_import] = ACTIONS(3554), - [anon_sym_template] = ACTIONS(3554), - [anon_sym_operator] = ACTIONS(3554), - [anon_sym_try] = ACTIONS(3554), - [anon_sym_delete] = ACTIONS(3554), - [anon_sym_throw] = ACTIONS(3554), - [anon_sym_namespace] = ACTIONS(3554), - [anon_sym_static_assert] = ACTIONS(3554), - [anon_sym_concept] = ACTIONS(3554), - [anon_sym_co_return] = ACTIONS(3554), - [anon_sym_co_yield] = ACTIONS(3554), - [anon_sym_catch] = ACTIONS(3319), - [anon_sym_R_DQUOTE] = ACTIONS(3556), - [anon_sym_LR_DQUOTE] = ACTIONS(3556), - [anon_sym_uR_DQUOTE] = ACTIONS(3556), - [anon_sym_UR_DQUOTE] = ACTIONS(3556), - [anon_sym_u8R_DQUOTE] = ACTIONS(3556), - [anon_sym_co_await] = ACTIONS(3554), - [anon_sym_new] = ACTIONS(3554), - [anon_sym_requires] = ACTIONS(3554), - [anon_sym_CARET_CARET] = ACTIONS(3556), - [anon_sym_LBRACK_COLON] = ACTIONS(3556), - [sym_this] = ACTIONS(3554), + [STATE(449)] = { + [sym_identifier] = ACTIONS(4124), + [aux_sym_preproc_include_token1] = ACTIONS(4124), + [aux_sym_preproc_def_token1] = ACTIONS(4124), + [aux_sym_preproc_if_token1] = ACTIONS(4124), + [aux_sym_preproc_if_token2] = ACTIONS(4124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4124), + [aux_sym_preproc_else_token1] = ACTIONS(4124), + [aux_sym_preproc_elif_token1] = ACTIONS(4124), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4124), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4124), + [sym_preproc_directive] = ACTIONS(4124), + [anon_sym_LPAREN2] = ACTIONS(4126), + [anon_sym_BANG] = ACTIONS(4126), + [anon_sym_TILDE] = ACTIONS(4126), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_PLUS] = ACTIONS(4124), + [anon_sym_STAR] = ACTIONS(4126), + [anon_sym_AMP_AMP] = ACTIONS(4126), + [anon_sym_AMP] = ACTIONS(4124), + [anon_sym_SEMI] = ACTIONS(4126), + [anon_sym___extension__] = ACTIONS(4124), + [anon_sym_typedef] = ACTIONS(4124), + [anon_sym_virtual] = ACTIONS(4124), + [anon_sym_extern] = ACTIONS(4124), + [anon_sym___attribute__] = ACTIONS(4124), + [anon_sym___attribute] = ACTIONS(4124), + [anon_sym_using] = ACTIONS(4124), + [anon_sym_COLON_COLON] = ACTIONS(4126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4126), + [anon_sym___declspec] = ACTIONS(4124), + [anon_sym___based] = ACTIONS(4124), + [anon_sym___cdecl] = ACTIONS(4124), + [anon_sym___clrcall] = ACTIONS(4124), + [anon_sym___stdcall] = ACTIONS(4124), + [anon_sym___fastcall] = ACTIONS(4124), + [anon_sym___thiscall] = ACTIONS(4124), + [anon_sym___vectorcall] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [anon_sym_signed] = ACTIONS(4124), + [anon_sym_unsigned] = ACTIONS(4124), + [anon_sym_long] = ACTIONS(4124), + [anon_sym_short] = ACTIONS(4124), + [anon_sym_LBRACK] = ACTIONS(4124), + [anon_sym_static] = ACTIONS(4124), + [anon_sym_register] = ACTIONS(4124), + [anon_sym_inline] = ACTIONS(4124), + [anon_sym___inline] = ACTIONS(4124), + [anon_sym___inline__] = ACTIONS(4124), + [anon_sym___forceinline] = ACTIONS(4124), + [anon_sym_thread_local] = ACTIONS(4124), + [anon_sym___thread] = ACTIONS(4124), + [anon_sym_const] = ACTIONS(4124), + [anon_sym_constexpr] = ACTIONS(4124), + [anon_sym_volatile] = ACTIONS(4124), + [anon_sym_restrict] = ACTIONS(4124), + [anon_sym___restrict__] = ACTIONS(4124), + [anon_sym__Atomic] = ACTIONS(4124), + [anon_sym__Noreturn] = ACTIONS(4124), + [anon_sym_noreturn] = ACTIONS(4124), + [anon_sym__Nonnull] = ACTIONS(4124), + [anon_sym_mutable] = ACTIONS(4124), + [anon_sym_constinit] = ACTIONS(4124), + [anon_sym_consteval] = ACTIONS(4124), + [anon_sym_alignas] = ACTIONS(4124), + [anon_sym__Alignas] = ACTIONS(4124), + [sym_primitive_type] = ACTIONS(4124), + [anon_sym_enum] = ACTIONS(4124), + [anon_sym_class] = ACTIONS(4124), + [anon_sym_struct] = ACTIONS(4124), + [anon_sym_union] = ACTIONS(4124), + [anon_sym_if] = ACTIONS(4124), + [anon_sym_switch] = ACTIONS(4124), + [anon_sym_case] = ACTIONS(4124), + [anon_sym_default] = ACTIONS(4124), + [anon_sym_while] = ACTIONS(4124), + [anon_sym_do] = ACTIONS(4124), + [anon_sym_for] = ACTIONS(4124), + [anon_sym_return] = ACTIONS(4124), + [anon_sym_break] = ACTIONS(4124), + [anon_sym_continue] = ACTIONS(4124), + [anon_sym_goto] = ACTIONS(4124), + [anon_sym___try] = ACTIONS(4124), + [anon_sym___leave] = ACTIONS(4124), + [anon_sym_not] = ACTIONS(4124), + [anon_sym_compl] = ACTIONS(4124), + [anon_sym_DASH_DASH] = ACTIONS(4126), + [anon_sym_PLUS_PLUS] = ACTIONS(4126), + [anon_sym_sizeof] = ACTIONS(4124), + [anon_sym___alignof__] = ACTIONS(4124), + [anon_sym___alignof] = ACTIONS(4124), + [anon_sym__alignof] = ACTIONS(4124), + [anon_sym_alignof] = ACTIONS(4124), + [anon_sym__Alignof] = ACTIONS(4124), + [anon_sym_offsetof] = ACTIONS(4124), + [anon_sym__Generic] = ACTIONS(4124), + [anon_sym_typename] = ACTIONS(4124), + [anon_sym_asm] = ACTIONS(4124), + [anon_sym___asm__] = ACTIONS(4124), + [anon_sym___asm] = ACTIONS(4124), + [sym_number_literal] = ACTIONS(4126), + [anon_sym_L_SQUOTE] = ACTIONS(4126), + [anon_sym_u_SQUOTE] = ACTIONS(4126), + [anon_sym_U_SQUOTE] = ACTIONS(4126), + [anon_sym_u8_SQUOTE] = ACTIONS(4126), + [anon_sym_SQUOTE] = ACTIONS(4126), + [anon_sym_L_DQUOTE] = ACTIONS(4126), + [anon_sym_u_DQUOTE] = ACTIONS(4126), + [anon_sym_U_DQUOTE] = ACTIONS(4126), + [anon_sym_u8_DQUOTE] = ACTIONS(4126), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym_true] = ACTIONS(4124), + [sym_false] = ACTIONS(4124), + [anon_sym_NULL] = ACTIONS(4124), + [anon_sym_nullptr] = ACTIONS(4124), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4124), + [anon_sym_decltype] = ACTIONS(4124), + [anon_sym_explicit] = ACTIONS(4124), + [anon_sym_export] = ACTIONS(4124), + [anon_sym_module] = ACTIONS(4124), + [anon_sym_import] = ACTIONS(4124), + [anon_sym_template] = ACTIONS(4124), + [anon_sym_operator] = ACTIONS(4124), + [anon_sym_try] = ACTIONS(4124), + [anon_sym_delete] = ACTIONS(4124), + [anon_sym_throw] = ACTIONS(4124), + [anon_sym_namespace] = ACTIONS(4124), + [anon_sym_static_assert] = ACTIONS(4124), + [anon_sym_concept] = ACTIONS(4124), + [anon_sym_co_return] = ACTIONS(4124), + [anon_sym_co_yield] = ACTIONS(4124), + [anon_sym_R_DQUOTE] = ACTIONS(4126), + [anon_sym_LR_DQUOTE] = ACTIONS(4126), + [anon_sym_uR_DQUOTE] = ACTIONS(4126), + [anon_sym_UR_DQUOTE] = ACTIONS(4126), + [anon_sym_u8R_DQUOTE] = ACTIONS(4126), + [anon_sym_co_await] = ACTIONS(4124), + [anon_sym_new] = ACTIONS(4124), + [anon_sym_requires] = ACTIONS(4124), + [anon_sym_CARET_CARET] = ACTIONS(4126), + [anon_sym_LBRACK_COLON] = ACTIONS(4126), + [sym_this] = ACTIONS(4124), }, - [STATE(477)] = { - [ts_builtin_sym_end] = ACTIONS(3654), - [sym_identifier] = ACTIONS(3652), - [aux_sym_preproc_include_token1] = ACTIONS(3652), - [aux_sym_preproc_def_token1] = ACTIONS(3652), - [aux_sym_preproc_if_token1] = ACTIONS(3652), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3652), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3652), - [sym_preproc_directive] = ACTIONS(3652), - [anon_sym_LPAREN2] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_TILDE] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3652), - [anon_sym_STAR] = ACTIONS(3654), - [anon_sym_AMP_AMP] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3654), - [anon_sym___extension__] = ACTIONS(3652), - [anon_sym_typedef] = ACTIONS(3652), - [anon_sym_virtual] = ACTIONS(3652), - [anon_sym_extern] = ACTIONS(3652), - [anon_sym___attribute__] = ACTIONS(3652), - [anon_sym___attribute] = ACTIONS(3652), - [anon_sym_using] = ACTIONS(3652), - [anon_sym_COLON_COLON] = ACTIONS(3654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3654), - [anon_sym___declspec] = ACTIONS(3652), - [anon_sym___based] = ACTIONS(3652), - [anon_sym___cdecl] = ACTIONS(3652), - [anon_sym___clrcall] = ACTIONS(3652), - [anon_sym___stdcall] = ACTIONS(3652), - [anon_sym___fastcall] = ACTIONS(3652), - [anon_sym___thiscall] = ACTIONS(3652), - [anon_sym___vectorcall] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_signed] = ACTIONS(3652), - [anon_sym_unsigned] = ACTIONS(3652), - [anon_sym_long] = ACTIONS(3652), - [anon_sym_short] = ACTIONS(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_static] = ACTIONS(3652), - [anon_sym_register] = ACTIONS(3652), - [anon_sym_inline] = ACTIONS(3652), - [anon_sym___inline] = ACTIONS(3652), - [anon_sym___inline__] = ACTIONS(3652), - [anon_sym___forceinline] = ACTIONS(3652), - [anon_sym_thread_local] = ACTIONS(3652), - [anon_sym___thread] = ACTIONS(3652), - [anon_sym_const] = ACTIONS(3652), - [anon_sym_constexpr] = ACTIONS(3652), - [anon_sym_volatile] = ACTIONS(3652), - [anon_sym_restrict] = ACTIONS(3652), - [anon_sym___restrict__] = ACTIONS(3652), - [anon_sym__Atomic] = ACTIONS(3652), - [anon_sym__Noreturn] = ACTIONS(3652), - [anon_sym_noreturn] = ACTIONS(3652), - [anon_sym__Nonnull] = ACTIONS(3652), - [anon_sym_mutable] = ACTIONS(3652), - [anon_sym_constinit] = ACTIONS(3652), - [anon_sym_consteval] = ACTIONS(3652), - [anon_sym_alignas] = ACTIONS(3652), - [anon_sym__Alignas] = ACTIONS(3652), - [sym_primitive_type] = ACTIONS(3652), - [anon_sym_enum] = ACTIONS(3652), - [anon_sym_class] = ACTIONS(3652), - [anon_sym_struct] = ACTIONS(3652), - [anon_sym_union] = ACTIONS(3652), - [anon_sym_if] = ACTIONS(3652), - [anon_sym_else] = ACTIONS(3652), - [anon_sym_switch] = ACTIONS(3652), - [anon_sym_case] = ACTIONS(3652), - [anon_sym_default] = ACTIONS(3652), - [anon_sym_while] = ACTIONS(3652), - [anon_sym_do] = ACTIONS(3652), - [anon_sym_for] = ACTIONS(3652), - [anon_sym_return] = ACTIONS(3652), - [anon_sym_break] = ACTIONS(3652), - [anon_sym_continue] = ACTIONS(3652), - [anon_sym_goto] = ACTIONS(3652), - [anon_sym___try] = ACTIONS(3652), - [anon_sym___leave] = ACTIONS(3652), - [anon_sym_not] = ACTIONS(3652), - [anon_sym_compl] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3654), - [anon_sym_sizeof] = ACTIONS(3652), - [anon_sym___alignof__] = ACTIONS(3652), - [anon_sym___alignof] = ACTIONS(3652), - [anon_sym__alignof] = ACTIONS(3652), - [anon_sym_alignof] = ACTIONS(3652), - [anon_sym__Alignof] = ACTIONS(3652), - [anon_sym_offsetof] = ACTIONS(3652), - [anon_sym__Generic] = ACTIONS(3652), - [anon_sym_typename] = ACTIONS(3652), - [anon_sym_asm] = ACTIONS(3652), - [anon_sym___asm__] = ACTIONS(3652), - [anon_sym___asm] = ACTIONS(3652), - [sym_number_literal] = ACTIONS(3654), - [anon_sym_L_SQUOTE] = ACTIONS(3654), - [anon_sym_u_SQUOTE] = ACTIONS(3654), - [anon_sym_U_SQUOTE] = ACTIONS(3654), - [anon_sym_u8_SQUOTE] = ACTIONS(3654), - [anon_sym_SQUOTE] = ACTIONS(3654), - [anon_sym_L_DQUOTE] = ACTIONS(3654), - [anon_sym_u_DQUOTE] = ACTIONS(3654), - [anon_sym_U_DQUOTE] = ACTIONS(3654), - [anon_sym_u8_DQUOTE] = ACTIONS(3654), - [anon_sym_DQUOTE] = ACTIONS(3654), - [sym_true] = ACTIONS(3652), - [sym_false] = ACTIONS(3652), - [anon_sym_NULL] = ACTIONS(3652), - [anon_sym_nullptr] = ACTIONS(3652), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3652), - [anon_sym_decltype] = ACTIONS(3652), - [anon_sym_explicit] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3652), - [anon_sym_module] = ACTIONS(3652), - [anon_sym_import] = ACTIONS(3652), - [anon_sym_template] = ACTIONS(3652), - [anon_sym_operator] = ACTIONS(3652), - [anon_sym_try] = ACTIONS(3652), - [anon_sym_delete] = ACTIONS(3652), - [anon_sym_throw] = ACTIONS(3652), - [anon_sym_namespace] = ACTIONS(3652), - [anon_sym_static_assert] = ACTIONS(3652), - [anon_sym_concept] = ACTIONS(3652), - [anon_sym_co_return] = ACTIONS(3652), - [anon_sym_co_yield] = ACTIONS(3652), - [anon_sym_R_DQUOTE] = ACTIONS(3654), - [anon_sym_LR_DQUOTE] = ACTIONS(3654), - [anon_sym_uR_DQUOTE] = ACTIONS(3654), - [anon_sym_UR_DQUOTE] = ACTIONS(3654), - [anon_sym_u8R_DQUOTE] = ACTIONS(3654), - [anon_sym_co_await] = ACTIONS(3652), - [anon_sym_new] = ACTIONS(3652), - [anon_sym_requires] = ACTIONS(3652), - [anon_sym_CARET_CARET] = ACTIONS(3654), - [anon_sym_LBRACK_COLON] = ACTIONS(3654), - [sym_this] = ACTIONS(3652), + [STATE(450)] = { + [sym_identifier] = ACTIONS(4128), + [aux_sym_preproc_include_token1] = ACTIONS(4128), + [aux_sym_preproc_def_token1] = ACTIONS(4128), + [aux_sym_preproc_if_token1] = ACTIONS(4128), + [aux_sym_preproc_if_token2] = ACTIONS(4128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4128), + [aux_sym_preproc_else_token1] = ACTIONS(4128), + [aux_sym_preproc_elif_token1] = ACTIONS(4128), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4128), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4128), + [sym_preproc_directive] = ACTIONS(4128), + [anon_sym_LPAREN2] = ACTIONS(4130), + [anon_sym_BANG] = ACTIONS(4130), + [anon_sym_TILDE] = ACTIONS(4130), + [anon_sym_DASH] = ACTIONS(4128), + [anon_sym_PLUS] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_AMP_AMP] = ACTIONS(4130), + [anon_sym_AMP] = ACTIONS(4128), + [anon_sym_SEMI] = ACTIONS(4130), + [anon_sym___extension__] = ACTIONS(4128), + [anon_sym_typedef] = ACTIONS(4128), + [anon_sym_virtual] = ACTIONS(4128), + [anon_sym_extern] = ACTIONS(4128), + [anon_sym___attribute__] = ACTIONS(4128), + [anon_sym___attribute] = ACTIONS(4128), + [anon_sym_using] = ACTIONS(4128), + [anon_sym_COLON_COLON] = ACTIONS(4130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4130), + [anon_sym___declspec] = ACTIONS(4128), + [anon_sym___based] = ACTIONS(4128), + [anon_sym___cdecl] = ACTIONS(4128), + [anon_sym___clrcall] = ACTIONS(4128), + [anon_sym___stdcall] = ACTIONS(4128), + [anon_sym___fastcall] = ACTIONS(4128), + [anon_sym___thiscall] = ACTIONS(4128), + [anon_sym___vectorcall] = ACTIONS(4128), + [anon_sym_LBRACE] = ACTIONS(4130), + [anon_sym_signed] = ACTIONS(4128), + [anon_sym_unsigned] = ACTIONS(4128), + [anon_sym_long] = ACTIONS(4128), + [anon_sym_short] = ACTIONS(4128), + [anon_sym_LBRACK] = ACTIONS(4128), + [anon_sym_static] = ACTIONS(4128), + [anon_sym_register] = ACTIONS(4128), + [anon_sym_inline] = ACTIONS(4128), + [anon_sym___inline] = ACTIONS(4128), + [anon_sym___inline__] = ACTIONS(4128), + [anon_sym___forceinline] = ACTIONS(4128), + [anon_sym_thread_local] = ACTIONS(4128), + [anon_sym___thread] = ACTIONS(4128), + [anon_sym_const] = ACTIONS(4128), + [anon_sym_constexpr] = ACTIONS(4128), + [anon_sym_volatile] = ACTIONS(4128), + [anon_sym_restrict] = ACTIONS(4128), + [anon_sym___restrict__] = ACTIONS(4128), + [anon_sym__Atomic] = ACTIONS(4128), + [anon_sym__Noreturn] = ACTIONS(4128), + [anon_sym_noreturn] = ACTIONS(4128), + [anon_sym__Nonnull] = ACTIONS(4128), + [anon_sym_mutable] = ACTIONS(4128), + [anon_sym_constinit] = ACTIONS(4128), + [anon_sym_consteval] = ACTIONS(4128), + [anon_sym_alignas] = ACTIONS(4128), + [anon_sym__Alignas] = ACTIONS(4128), + [sym_primitive_type] = ACTIONS(4128), + [anon_sym_enum] = ACTIONS(4128), + [anon_sym_class] = ACTIONS(4128), + [anon_sym_struct] = ACTIONS(4128), + [anon_sym_union] = ACTIONS(4128), + [anon_sym_if] = ACTIONS(4128), + [anon_sym_switch] = ACTIONS(4128), + [anon_sym_case] = ACTIONS(4128), + [anon_sym_default] = ACTIONS(4128), + [anon_sym_while] = ACTIONS(4128), + [anon_sym_do] = ACTIONS(4128), + [anon_sym_for] = ACTIONS(4128), + [anon_sym_return] = ACTIONS(4128), + [anon_sym_break] = ACTIONS(4128), + [anon_sym_continue] = ACTIONS(4128), + [anon_sym_goto] = ACTIONS(4128), + [anon_sym___try] = ACTIONS(4128), + [anon_sym___leave] = ACTIONS(4128), + [anon_sym_not] = ACTIONS(4128), + [anon_sym_compl] = ACTIONS(4128), + [anon_sym_DASH_DASH] = ACTIONS(4130), + [anon_sym_PLUS_PLUS] = ACTIONS(4130), + [anon_sym_sizeof] = ACTIONS(4128), + [anon_sym___alignof__] = ACTIONS(4128), + [anon_sym___alignof] = ACTIONS(4128), + [anon_sym__alignof] = ACTIONS(4128), + [anon_sym_alignof] = ACTIONS(4128), + [anon_sym__Alignof] = ACTIONS(4128), + [anon_sym_offsetof] = ACTIONS(4128), + [anon_sym__Generic] = ACTIONS(4128), + [anon_sym_typename] = ACTIONS(4128), + [anon_sym_asm] = ACTIONS(4128), + [anon_sym___asm__] = ACTIONS(4128), + [anon_sym___asm] = ACTIONS(4128), + [sym_number_literal] = ACTIONS(4130), + [anon_sym_L_SQUOTE] = ACTIONS(4130), + [anon_sym_u_SQUOTE] = ACTIONS(4130), + [anon_sym_U_SQUOTE] = ACTIONS(4130), + [anon_sym_u8_SQUOTE] = ACTIONS(4130), + [anon_sym_SQUOTE] = ACTIONS(4130), + [anon_sym_L_DQUOTE] = ACTIONS(4130), + [anon_sym_u_DQUOTE] = ACTIONS(4130), + [anon_sym_U_DQUOTE] = ACTIONS(4130), + [anon_sym_u8_DQUOTE] = ACTIONS(4130), + [anon_sym_DQUOTE] = ACTIONS(4130), + [sym_true] = ACTIONS(4128), + [sym_false] = ACTIONS(4128), + [anon_sym_NULL] = ACTIONS(4128), + [anon_sym_nullptr] = ACTIONS(4128), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4128), + [anon_sym_decltype] = ACTIONS(4128), + [anon_sym_explicit] = ACTIONS(4128), + [anon_sym_export] = ACTIONS(4128), + [anon_sym_module] = ACTIONS(4128), + [anon_sym_import] = ACTIONS(4128), + [anon_sym_template] = ACTIONS(4128), + [anon_sym_operator] = ACTIONS(4128), + [anon_sym_try] = ACTIONS(4128), + [anon_sym_delete] = ACTIONS(4128), + [anon_sym_throw] = ACTIONS(4128), + [anon_sym_namespace] = ACTIONS(4128), + [anon_sym_static_assert] = ACTIONS(4128), + [anon_sym_concept] = ACTIONS(4128), + [anon_sym_co_return] = ACTIONS(4128), + [anon_sym_co_yield] = ACTIONS(4128), + [anon_sym_R_DQUOTE] = ACTIONS(4130), + [anon_sym_LR_DQUOTE] = ACTIONS(4130), + [anon_sym_uR_DQUOTE] = ACTIONS(4130), + [anon_sym_UR_DQUOTE] = ACTIONS(4130), + [anon_sym_u8R_DQUOTE] = ACTIONS(4130), + [anon_sym_co_await] = ACTIONS(4128), + [anon_sym_new] = ACTIONS(4128), + [anon_sym_requires] = ACTIONS(4128), + [anon_sym_CARET_CARET] = ACTIONS(4130), + [anon_sym_LBRACK_COLON] = ACTIONS(4130), + [sym_this] = ACTIONS(4128), }, - [STATE(478)] = { - [ts_builtin_sym_end] = ACTIONS(3638), - [sym_identifier] = ACTIONS(3636), - [aux_sym_preproc_include_token1] = ACTIONS(3636), - [aux_sym_preproc_def_token1] = ACTIONS(3636), - [aux_sym_preproc_if_token1] = ACTIONS(3636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3636), - [sym_preproc_directive] = ACTIONS(3636), - [anon_sym_LPAREN2] = ACTIONS(3638), - [anon_sym_BANG] = ACTIONS(3638), - [anon_sym_TILDE] = ACTIONS(3638), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3638), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym___extension__] = ACTIONS(3636), - [anon_sym_typedef] = ACTIONS(3636), - [anon_sym_virtual] = ACTIONS(3636), - [anon_sym_extern] = ACTIONS(3636), - [anon_sym___attribute__] = ACTIONS(3636), - [anon_sym___attribute] = ACTIONS(3636), - [anon_sym_using] = ACTIONS(3636), - [anon_sym_COLON_COLON] = ACTIONS(3638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3638), - [anon_sym___declspec] = ACTIONS(3636), - [anon_sym___based] = ACTIONS(3636), - [anon_sym___cdecl] = ACTIONS(3636), - [anon_sym___clrcall] = ACTIONS(3636), - [anon_sym___stdcall] = ACTIONS(3636), - [anon_sym___fastcall] = ACTIONS(3636), - [anon_sym___thiscall] = ACTIONS(3636), - [anon_sym___vectorcall] = ACTIONS(3636), - [anon_sym_LBRACE] = ACTIONS(3638), - [anon_sym_signed] = ACTIONS(3636), - [anon_sym_unsigned] = ACTIONS(3636), - [anon_sym_long] = ACTIONS(3636), - [anon_sym_short] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_static] = ACTIONS(3636), - [anon_sym_register] = ACTIONS(3636), - [anon_sym_inline] = ACTIONS(3636), - [anon_sym___inline] = ACTIONS(3636), - [anon_sym___inline__] = ACTIONS(3636), - [anon_sym___forceinline] = ACTIONS(3636), - [anon_sym_thread_local] = ACTIONS(3636), - [anon_sym___thread] = ACTIONS(3636), - [anon_sym_const] = ACTIONS(3636), - [anon_sym_constexpr] = ACTIONS(3636), - [anon_sym_volatile] = ACTIONS(3636), - [anon_sym_restrict] = ACTIONS(3636), - [anon_sym___restrict__] = ACTIONS(3636), - [anon_sym__Atomic] = ACTIONS(3636), - [anon_sym__Noreturn] = ACTIONS(3636), - [anon_sym_noreturn] = ACTIONS(3636), - [anon_sym__Nonnull] = ACTIONS(3636), - [anon_sym_mutable] = ACTIONS(3636), - [anon_sym_constinit] = ACTIONS(3636), - [anon_sym_consteval] = ACTIONS(3636), - [anon_sym_alignas] = ACTIONS(3636), - [anon_sym__Alignas] = ACTIONS(3636), - [sym_primitive_type] = ACTIONS(3636), - [anon_sym_enum] = ACTIONS(3636), - [anon_sym_class] = ACTIONS(3636), - [anon_sym_struct] = ACTIONS(3636), - [anon_sym_union] = ACTIONS(3636), - [anon_sym_if] = ACTIONS(3636), - [anon_sym_else] = ACTIONS(3636), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_case] = ACTIONS(3636), - [anon_sym_default] = ACTIONS(3636), - [anon_sym_while] = ACTIONS(3636), - [anon_sym_do] = ACTIONS(3636), - [anon_sym_for] = ACTIONS(3636), - [anon_sym_return] = ACTIONS(3636), - [anon_sym_break] = ACTIONS(3636), - [anon_sym_continue] = ACTIONS(3636), - [anon_sym_goto] = ACTIONS(3636), - [anon_sym___try] = ACTIONS(3636), - [anon_sym___leave] = ACTIONS(3636), - [anon_sym_not] = ACTIONS(3636), - [anon_sym_compl] = ACTIONS(3636), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_sizeof] = ACTIONS(3636), - [anon_sym___alignof__] = ACTIONS(3636), - [anon_sym___alignof] = ACTIONS(3636), - [anon_sym__alignof] = ACTIONS(3636), - [anon_sym_alignof] = ACTIONS(3636), - [anon_sym__Alignof] = ACTIONS(3636), - [anon_sym_offsetof] = ACTIONS(3636), - [anon_sym__Generic] = ACTIONS(3636), - [anon_sym_typename] = ACTIONS(3636), - [anon_sym_asm] = ACTIONS(3636), - [anon_sym___asm__] = ACTIONS(3636), - [anon_sym___asm] = ACTIONS(3636), - [sym_number_literal] = ACTIONS(3638), - [anon_sym_L_SQUOTE] = ACTIONS(3638), - [anon_sym_u_SQUOTE] = ACTIONS(3638), - [anon_sym_U_SQUOTE] = ACTIONS(3638), - [anon_sym_u8_SQUOTE] = ACTIONS(3638), - [anon_sym_SQUOTE] = ACTIONS(3638), - [anon_sym_L_DQUOTE] = ACTIONS(3638), - [anon_sym_u_DQUOTE] = ACTIONS(3638), - [anon_sym_U_DQUOTE] = ACTIONS(3638), - [anon_sym_u8_DQUOTE] = ACTIONS(3638), - [anon_sym_DQUOTE] = ACTIONS(3638), - [sym_true] = ACTIONS(3636), - [sym_false] = ACTIONS(3636), - [anon_sym_NULL] = ACTIONS(3636), - [anon_sym_nullptr] = ACTIONS(3636), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3636), - [anon_sym_decltype] = ACTIONS(3636), - [anon_sym_explicit] = ACTIONS(3636), - [anon_sym_export] = ACTIONS(3636), - [anon_sym_module] = ACTIONS(3636), - [anon_sym_import] = ACTIONS(3636), - [anon_sym_template] = ACTIONS(3636), - [anon_sym_operator] = ACTIONS(3636), - [anon_sym_try] = ACTIONS(3636), - [anon_sym_delete] = ACTIONS(3636), - [anon_sym_throw] = ACTIONS(3636), - [anon_sym_namespace] = ACTIONS(3636), - [anon_sym_static_assert] = ACTIONS(3636), - [anon_sym_concept] = ACTIONS(3636), - [anon_sym_co_return] = ACTIONS(3636), - [anon_sym_co_yield] = ACTIONS(3636), - [anon_sym_R_DQUOTE] = ACTIONS(3638), - [anon_sym_LR_DQUOTE] = ACTIONS(3638), - [anon_sym_uR_DQUOTE] = ACTIONS(3638), - [anon_sym_UR_DQUOTE] = ACTIONS(3638), - [anon_sym_u8R_DQUOTE] = ACTIONS(3638), - [anon_sym_co_await] = ACTIONS(3636), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_requires] = ACTIONS(3636), - [anon_sym_CARET_CARET] = ACTIONS(3638), - [anon_sym_LBRACK_COLON] = ACTIONS(3638), - [sym_this] = ACTIONS(3636), + [STATE(451)] = { + [sym_identifier] = ACTIONS(4132), + [aux_sym_preproc_include_token1] = ACTIONS(4132), + [aux_sym_preproc_def_token1] = ACTIONS(4132), + [aux_sym_preproc_if_token1] = ACTIONS(4132), + [aux_sym_preproc_if_token2] = ACTIONS(4132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4132), + [aux_sym_preproc_else_token1] = ACTIONS(4132), + [aux_sym_preproc_elif_token1] = ACTIONS(4132), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4132), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4132), + [sym_preproc_directive] = ACTIONS(4132), + [anon_sym_LPAREN2] = ACTIONS(4134), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_TILDE] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4132), + [anon_sym_STAR] = ACTIONS(4134), + [anon_sym_AMP_AMP] = ACTIONS(4134), + [anon_sym_AMP] = ACTIONS(4132), + [anon_sym_SEMI] = ACTIONS(4134), + [anon_sym___extension__] = ACTIONS(4132), + [anon_sym_typedef] = ACTIONS(4132), + [anon_sym_virtual] = ACTIONS(4132), + [anon_sym_extern] = ACTIONS(4132), + [anon_sym___attribute__] = ACTIONS(4132), + [anon_sym___attribute] = ACTIONS(4132), + [anon_sym_using] = ACTIONS(4132), + [anon_sym_COLON_COLON] = ACTIONS(4134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4134), + [anon_sym___declspec] = ACTIONS(4132), + [anon_sym___based] = ACTIONS(4132), + [anon_sym___cdecl] = ACTIONS(4132), + [anon_sym___clrcall] = ACTIONS(4132), + [anon_sym___stdcall] = ACTIONS(4132), + [anon_sym___fastcall] = ACTIONS(4132), + [anon_sym___thiscall] = ACTIONS(4132), + [anon_sym___vectorcall] = ACTIONS(4132), + [anon_sym_LBRACE] = ACTIONS(4134), + [anon_sym_signed] = ACTIONS(4132), + [anon_sym_unsigned] = ACTIONS(4132), + [anon_sym_long] = ACTIONS(4132), + [anon_sym_short] = ACTIONS(4132), + [anon_sym_LBRACK] = ACTIONS(4132), + [anon_sym_static] = ACTIONS(4132), + [anon_sym_register] = ACTIONS(4132), + [anon_sym_inline] = ACTIONS(4132), + [anon_sym___inline] = ACTIONS(4132), + [anon_sym___inline__] = ACTIONS(4132), + [anon_sym___forceinline] = ACTIONS(4132), + [anon_sym_thread_local] = ACTIONS(4132), + [anon_sym___thread] = ACTIONS(4132), + [anon_sym_const] = ACTIONS(4132), + [anon_sym_constexpr] = ACTIONS(4132), + [anon_sym_volatile] = ACTIONS(4132), + [anon_sym_restrict] = ACTIONS(4132), + [anon_sym___restrict__] = ACTIONS(4132), + [anon_sym__Atomic] = ACTIONS(4132), + [anon_sym__Noreturn] = ACTIONS(4132), + [anon_sym_noreturn] = ACTIONS(4132), + [anon_sym__Nonnull] = ACTIONS(4132), + [anon_sym_mutable] = ACTIONS(4132), + [anon_sym_constinit] = ACTIONS(4132), + [anon_sym_consteval] = ACTIONS(4132), + [anon_sym_alignas] = ACTIONS(4132), + [anon_sym__Alignas] = ACTIONS(4132), + [sym_primitive_type] = ACTIONS(4132), + [anon_sym_enum] = ACTIONS(4132), + [anon_sym_class] = ACTIONS(4132), + [anon_sym_struct] = ACTIONS(4132), + [anon_sym_union] = ACTIONS(4132), + [anon_sym_if] = ACTIONS(4132), + [anon_sym_switch] = ACTIONS(4132), + [anon_sym_case] = ACTIONS(4132), + [anon_sym_default] = ACTIONS(4132), + [anon_sym_while] = ACTIONS(4132), + [anon_sym_do] = ACTIONS(4132), + [anon_sym_for] = ACTIONS(4132), + [anon_sym_return] = ACTIONS(4132), + [anon_sym_break] = ACTIONS(4132), + [anon_sym_continue] = ACTIONS(4132), + [anon_sym_goto] = ACTIONS(4132), + [anon_sym___try] = ACTIONS(4132), + [anon_sym___leave] = ACTIONS(4132), + [anon_sym_not] = ACTIONS(4132), + [anon_sym_compl] = ACTIONS(4132), + [anon_sym_DASH_DASH] = ACTIONS(4134), + [anon_sym_PLUS_PLUS] = ACTIONS(4134), + [anon_sym_sizeof] = ACTIONS(4132), + [anon_sym___alignof__] = ACTIONS(4132), + [anon_sym___alignof] = ACTIONS(4132), + [anon_sym__alignof] = ACTIONS(4132), + [anon_sym_alignof] = ACTIONS(4132), + [anon_sym__Alignof] = ACTIONS(4132), + [anon_sym_offsetof] = ACTIONS(4132), + [anon_sym__Generic] = ACTIONS(4132), + [anon_sym_typename] = ACTIONS(4132), + [anon_sym_asm] = ACTIONS(4132), + [anon_sym___asm__] = ACTIONS(4132), + [anon_sym___asm] = ACTIONS(4132), + [sym_number_literal] = ACTIONS(4134), + [anon_sym_L_SQUOTE] = ACTIONS(4134), + [anon_sym_u_SQUOTE] = ACTIONS(4134), + [anon_sym_U_SQUOTE] = ACTIONS(4134), + [anon_sym_u8_SQUOTE] = ACTIONS(4134), + [anon_sym_SQUOTE] = ACTIONS(4134), + [anon_sym_L_DQUOTE] = ACTIONS(4134), + [anon_sym_u_DQUOTE] = ACTIONS(4134), + [anon_sym_U_DQUOTE] = ACTIONS(4134), + [anon_sym_u8_DQUOTE] = ACTIONS(4134), + [anon_sym_DQUOTE] = ACTIONS(4134), + [sym_true] = ACTIONS(4132), + [sym_false] = ACTIONS(4132), + [anon_sym_NULL] = ACTIONS(4132), + [anon_sym_nullptr] = ACTIONS(4132), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4132), + [anon_sym_decltype] = ACTIONS(4132), + [anon_sym_explicit] = ACTIONS(4132), + [anon_sym_export] = ACTIONS(4132), + [anon_sym_module] = ACTIONS(4132), + [anon_sym_import] = ACTIONS(4132), + [anon_sym_template] = ACTIONS(4132), + [anon_sym_operator] = ACTIONS(4132), + [anon_sym_try] = ACTIONS(4132), + [anon_sym_delete] = ACTIONS(4132), + [anon_sym_throw] = ACTIONS(4132), + [anon_sym_namespace] = ACTIONS(4132), + [anon_sym_static_assert] = ACTIONS(4132), + [anon_sym_concept] = ACTIONS(4132), + [anon_sym_co_return] = ACTIONS(4132), + [anon_sym_co_yield] = ACTIONS(4132), + [anon_sym_R_DQUOTE] = ACTIONS(4134), + [anon_sym_LR_DQUOTE] = ACTIONS(4134), + [anon_sym_uR_DQUOTE] = ACTIONS(4134), + [anon_sym_UR_DQUOTE] = ACTIONS(4134), + [anon_sym_u8R_DQUOTE] = ACTIONS(4134), + [anon_sym_co_await] = ACTIONS(4132), + [anon_sym_new] = ACTIONS(4132), + [anon_sym_requires] = ACTIONS(4132), + [anon_sym_CARET_CARET] = ACTIONS(4134), + [anon_sym_LBRACK_COLON] = ACTIONS(4134), + [sym_this] = ACTIONS(4132), }, - [STATE(479)] = { - [ts_builtin_sym_end] = ACTIONS(3682), - [sym_identifier] = ACTIONS(3680), - [aux_sym_preproc_include_token1] = ACTIONS(3680), - [aux_sym_preproc_def_token1] = ACTIONS(3680), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3680), - [sym_preproc_directive] = ACTIONS(3680), - [anon_sym_LPAREN2] = ACTIONS(3682), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(3682), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym___extension__] = ACTIONS(3680), - [anon_sym_typedef] = ACTIONS(3680), - [anon_sym_virtual] = ACTIONS(3680), - [anon_sym_extern] = ACTIONS(3680), - [anon_sym___attribute__] = ACTIONS(3680), - [anon_sym___attribute] = ACTIONS(3680), - [anon_sym_using] = ACTIONS(3680), - [anon_sym_COLON_COLON] = ACTIONS(3682), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3682), - [anon_sym___declspec] = ACTIONS(3680), - [anon_sym___based] = ACTIONS(3680), - [anon_sym___cdecl] = ACTIONS(3680), - [anon_sym___clrcall] = ACTIONS(3680), - [anon_sym___stdcall] = ACTIONS(3680), - [anon_sym___fastcall] = ACTIONS(3680), - [anon_sym___thiscall] = ACTIONS(3680), - [anon_sym___vectorcall] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_signed] = ACTIONS(3680), - [anon_sym_unsigned] = ACTIONS(3680), - [anon_sym_long] = ACTIONS(3680), - [anon_sym_short] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3680), - [anon_sym_static] = ACTIONS(3680), - [anon_sym_register] = ACTIONS(3680), - [anon_sym_inline] = ACTIONS(3680), - [anon_sym___inline] = ACTIONS(3680), - [anon_sym___inline__] = ACTIONS(3680), - [anon_sym___forceinline] = ACTIONS(3680), - [anon_sym_thread_local] = ACTIONS(3680), - [anon_sym___thread] = ACTIONS(3680), - [anon_sym_const] = ACTIONS(3680), - [anon_sym_constexpr] = ACTIONS(3680), - [anon_sym_volatile] = ACTIONS(3680), - [anon_sym_restrict] = ACTIONS(3680), - [anon_sym___restrict__] = ACTIONS(3680), - [anon_sym__Atomic] = ACTIONS(3680), - [anon_sym__Noreturn] = ACTIONS(3680), - [anon_sym_noreturn] = ACTIONS(3680), - [anon_sym__Nonnull] = ACTIONS(3680), - [anon_sym_mutable] = ACTIONS(3680), - [anon_sym_constinit] = ACTIONS(3680), - [anon_sym_consteval] = ACTIONS(3680), - [anon_sym_alignas] = ACTIONS(3680), - [anon_sym__Alignas] = ACTIONS(3680), - [sym_primitive_type] = ACTIONS(3680), - [anon_sym_enum] = ACTIONS(3680), - [anon_sym_class] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(3680), - [anon_sym_union] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(3680), - [anon_sym_else] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_case] = ACTIONS(3680), - [anon_sym_default] = ACTIONS(3680), - [anon_sym_while] = ACTIONS(3680), - [anon_sym_do] = ACTIONS(3680), - [anon_sym_for] = ACTIONS(3680), - [anon_sym_return] = ACTIONS(3680), - [anon_sym_break] = ACTIONS(3680), - [anon_sym_continue] = ACTIONS(3680), - [anon_sym_goto] = ACTIONS(3680), - [anon_sym___try] = ACTIONS(3680), - [anon_sym___leave] = ACTIONS(3680), - [anon_sym_not] = ACTIONS(3680), - [anon_sym_compl] = ACTIONS(3680), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_sizeof] = ACTIONS(3680), - [anon_sym___alignof__] = ACTIONS(3680), - [anon_sym___alignof] = ACTIONS(3680), - [anon_sym__alignof] = ACTIONS(3680), - [anon_sym_alignof] = ACTIONS(3680), - [anon_sym__Alignof] = ACTIONS(3680), - [anon_sym_offsetof] = ACTIONS(3680), - [anon_sym__Generic] = ACTIONS(3680), - [anon_sym_typename] = ACTIONS(3680), - [anon_sym_asm] = ACTIONS(3680), - [anon_sym___asm__] = ACTIONS(3680), - [anon_sym___asm] = ACTIONS(3680), - [sym_number_literal] = ACTIONS(3682), - [anon_sym_L_SQUOTE] = ACTIONS(3682), - [anon_sym_u_SQUOTE] = ACTIONS(3682), - [anon_sym_U_SQUOTE] = ACTIONS(3682), - [anon_sym_u8_SQUOTE] = ACTIONS(3682), - [anon_sym_SQUOTE] = ACTIONS(3682), - [anon_sym_L_DQUOTE] = ACTIONS(3682), - [anon_sym_u_DQUOTE] = ACTIONS(3682), - [anon_sym_U_DQUOTE] = ACTIONS(3682), - [anon_sym_u8_DQUOTE] = ACTIONS(3682), - [anon_sym_DQUOTE] = ACTIONS(3682), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [anon_sym_NULL] = ACTIONS(3680), - [anon_sym_nullptr] = ACTIONS(3680), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3680), - [anon_sym_decltype] = ACTIONS(3680), - [anon_sym_explicit] = ACTIONS(3680), - [anon_sym_export] = ACTIONS(3680), - [anon_sym_module] = ACTIONS(3680), - [anon_sym_import] = ACTIONS(3680), - [anon_sym_template] = ACTIONS(3680), - [anon_sym_operator] = ACTIONS(3680), - [anon_sym_try] = ACTIONS(3680), - [anon_sym_delete] = ACTIONS(3680), - [anon_sym_throw] = ACTIONS(3680), - [anon_sym_namespace] = ACTIONS(3680), - [anon_sym_static_assert] = ACTIONS(3680), - [anon_sym_concept] = ACTIONS(3680), - [anon_sym_co_return] = ACTIONS(3680), - [anon_sym_co_yield] = ACTIONS(3680), - [anon_sym_R_DQUOTE] = ACTIONS(3682), - [anon_sym_LR_DQUOTE] = ACTIONS(3682), - [anon_sym_uR_DQUOTE] = ACTIONS(3682), - [anon_sym_UR_DQUOTE] = ACTIONS(3682), - [anon_sym_u8R_DQUOTE] = ACTIONS(3682), - [anon_sym_co_await] = ACTIONS(3680), - [anon_sym_new] = ACTIONS(3680), - [anon_sym_requires] = ACTIONS(3680), - [anon_sym_CARET_CARET] = ACTIONS(3682), - [anon_sym_LBRACK_COLON] = ACTIONS(3682), - [sym_this] = ACTIONS(3680), + [STATE(452)] = { + [sym_identifier] = ACTIONS(4136), + [aux_sym_preproc_include_token1] = ACTIONS(4136), + [aux_sym_preproc_def_token1] = ACTIONS(4136), + [aux_sym_preproc_if_token1] = ACTIONS(4136), + [aux_sym_preproc_if_token2] = ACTIONS(4136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4136), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4136), + [aux_sym_preproc_else_token1] = ACTIONS(4136), + [aux_sym_preproc_elif_token1] = ACTIONS(4136), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4136), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4136), + [sym_preproc_directive] = ACTIONS(4136), + [anon_sym_LPAREN2] = ACTIONS(4138), + [anon_sym_BANG] = ACTIONS(4138), + [anon_sym_TILDE] = ACTIONS(4138), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4136), + [anon_sym_STAR] = ACTIONS(4138), + [anon_sym_AMP_AMP] = ACTIONS(4138), + [anon_sym_AMP] = ACTIONS(4136), + [anon_sym_SEMI] = ACTIONS(4138), + [anon_sym___extension__] = ACTIONS(4136), + [anon_sym_typedef] = ACTIONS(4136), + [anon_sym_virtual] = ACTIONS(4136), + [anon_sym_extern] = ACTIONS(4136), + [anon_sym___attribute__] = ACTIONS(4136), + [anon_sym___attribute] = ACTIONS(4136), + [anon_sym_using] = ACTIONS(4136), + [anon_sym_COLON_COLON] = ACTIONS(4138), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4138), + [anon_sym___declspec] = ACTIONS(4136), + [anon_sym___based] = ACTIONS(4136), + [anon_sym___cdecl] = ACTIONS(4136), + [anon_sym___clrcall] = ACTIONS(4136), + [anon_sym___stdcall] = ACTIONS(4136), + [anon_sym___fastcall] = ACTIONS(4136), + [anon_sym___thiscall] = ACTIONS(4136), + [anon_sym___vectorcall] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(4138), + [anon_sym_signed] = ACTIONS(4136), + [anon_sym_unsigned] = ACTIONS(4136), + [anon_sym_long] = ACTIONS(4136), + [anon_sym_short] = ACTIONS(4136), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_static] = ACTIONS(4136), + [anon_sym_register] = ACTIONS(4136), + [anon_sym_inline] = ACTIONS(4136), + [anon_sym___inline] = ACTIONS(4136), + [anon_sym___inline__] = ACTIONS(4136), + [anon_sym___forceinline] = ACTIONS(4136), + [anon_sym_thread_local] = ACTIONS(4136), + [anon_sym___thread] = ACTIONS(4136), + [anon_sym_const] = ACTIONS(4136), + [anon_sym_constexpr] = ACTIONS(4136), + [anon_sym_volatile] = ACTIONS(4136), + [anon_sym_restrict] = ACTIONS(4136), + [anon_sym___restrict__] = ACTIONS(4136), + [anon_sym__Atomic] = ACTIONS(4136), + [anon_sym__Noreturn] = ACTIONS(4136), + [anon_sym_noreturn] = ACTIONS(4136), + [anon_sym__Nonnull] = ACTIONS(4136), + [anon_sym_mutable] = ACTIONS(4136), + [anon_sym_constinit] = ACTIONS(4136), + [anon_sym_consteval] = ACTIONS(4136), + [anon_sym_alignas] = ACTIONS(4136), + [anon_sym__Alignas] = ACTIONS(4136), + [sym_primitive_type] = ACTIONS(4136), + [anon_sym_enum] = ACTIONS(4136), + [anon_sym_class] = ACTIONS(4136), + [anon_sym_struct] = ACTIONS(4136), + [anon_sym_union] = ACTIONS(4136), + [anon_sym_if] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(4136), + [anon_sym_case] = ACTIONS(4136), + [anon_sym_default] = ACTIONS(4136), + [anon_sym_while] = ACTIONS(4136), + [anon_sym_do] = ACTIONS(4136), + [anon_sym_for] = ACTIONS(4136), + [anon_sym_return] = ACTIONS(4136), + [anon_sym_break] = ACTIONS(4136), + [anon_sym_continue] = ACTIONS(4136), + [anon_sym_goto] = ACTIONS(4136), + [anon_sym___try] = ACTIONS(4136), + [anon_sym___leave] = ACTIONS(4136), + [anon_sym_not] = ACTIONS(4136), + [anon_sym_compl] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4138), + [anon_sym_PLUS_PLUS] = ACTIONS(4138), + [anon_sym_sizeof] = ACTIONS(4136), + [anon_sym___alignof__] = ACTIONS(4136), + [anon_sym___alignof] = ACTIONS(4136), + [anon_sym__alignof] = ACTIONS(4136), + [anon_sym_alignof] = ACTIONS(4136), + [anon_sym__Alignof] = ACTIONS(4136), + [anon_sym_offsetof] = ACTIONS(4136), + [anon_sym__Generic] = ACTIONS(4136), + [anon_sym_typename] = ACTIONS(4136), + [anon_sym_asm] = ACTIONS(4136), + [anon_sym___asm__] = ACTIONS(4136), + [anon_sym___asm] = ACTIONS(4136), + [sym_number_literal] = ACTIONS(4138), + [anon_sym_L_SQUOTE] = ACTIONS(4138), + [anon_sym_u_SQUOTE] = ACTIONS(4138), + [anon_sym_U_SQUOTE] = ACTIONS(4138), + [anon_sym_u8_SQUOTE] = ACTIONS(4138), + [anon_sym_SQUOTE] = ACTIONS(4138), + [anon_sym_L_DQUOTE] = ACTIONS(4138), + [anon_sym_u_DQUOTE] = ACTIONS(4138), + [anon_sym_U_DQUOTE] = ACTIONS(4138), + [anon_sym_u8_DQUOTE] = ACTIONS(4138), + [anon_sym_DQUOTE] = ACTIONS(4138), + [sym_true] = ACTIONS(4136), + [sym_false] = ACTIONS(4136), + [anon_sym_NULL] = ACTIONS(4136), + [anon_sym_nullptr] = ACTIONS(4136), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4136), + [anon_sym_decltype] = ACTIONS(4136), + [anon_sym_explicit] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4136), + [anon_sym_module] = ACTIONS(4136), + [anon_sym_import] = ACTIONS(4136), + [anon_sym_template] = ACTIONS(4136), + [anon_sym_operator] = ACTIONS(4136), + [anon_sym_try] = ACTIONS(4136), + [anon_sym_delete] = ACTIONS(4136), + [anon_sym_throw] = ACTIONS(4136), + [anon_sym_namespace] = ACTIONS(4136), + [anon_sym_static_assert] = ACTIONS(4136), + [anon_sym_concept] = ACTIONS(4136), + [anon_sym_co_return] = ACTIONS(4136), + [anon_sym_co_yield] = ACTIONS(4136), + [anon_sym_R_DQUOTE] = ACTIONS(4138), + [anon_sym_LR_DQUOTE] = ACTIONS(4138), + [anon_sym_uR_DQUOTE] = ACTIONS(4138), + [anon_sym_UR_DQUOTE] = ACTIONS(4138), + [anon_sym_u8R_DQUOTE] = ACTIONS(4138), + [anon_sym_co_await] = ACTIONS(4136), + [anon_sym_new] = ACTIONS(4136), + [anon_sym_requires] = ACTIONS(4136), + [anon_sym_CARET_CARET] = ACTIONS(4138), + [anon_sym_LBRACK_COLON] = ACTIONS(4138), + [sym_this] = ACTIONS(4136), }, - [STATE(480)] = { - [sym_expression] = STATE(5661), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_initializer_list] = STATE(5840), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(2024), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_COMMA] = ACTIONS(2026), - [aux_sym_preproc_if_token2] = ACTIONS(2026), - [aux_sym_preproc_else_token1] = ACTIONS(2026), - [aux_sym_preproc_elif_token1] = ACTIONS(2024), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2026), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(2024), - [anon_sym_PLUS] = ACTIONS(2024), - [anon_sym_STAR] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - [anon_sym_EQ_EQ] = ACTIONS(2026), - [anon_sym_BANG_EQ] = ACTIONS(2026), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2026), - [anon_sym_LT_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2026), - [anon_sym_GT_GT] = ACTIONS(2026), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(2024), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_QMARK] = ACTIONS(2026), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_LT_EQ_GT] = ACTIONS(2026), - [anon_sym_or] = ACTIONS(2024), - [anon_sym_and] = ACTIONS(2024), - [anon_sym_bitor] = ACTIONS(2024), - [anon_sym_xor] = ACTIONS(2024), - [anon_sym_bitand] = ACTIONS(2024), - [anon_sym_not_eq] = ACTIONS(2024), - [anon_sym_DASH_DASH] = ACTIONS(2026), - [anon_sym_PLUS_PLUS] = ACTIONS(2026), - [anon_sym_sizeof] = ACTIONS(3351), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2026), - [anon_sym_DASH_GT] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), + [STATE(453)] = { + [sym_identifier] = ACTIONS(4140), + [aux_sym_preproc_include_token1] = ACTIONS(4140), + [aux_sym_preproc_def_token1] = ACTIONS(4140), + [aux_sym_preproc_if_token1] = ACTIONS(4140), + [aux_sym_preproc_if_token2] = ACTIONS(4140), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4140), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4140), + [aux_sym_preproc_else_token1] = ACTIONS(4140), + [aux_sym_preproc_elif_token1] = ACTIONS(4140), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4140), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4140), + [sym_preproc_directive] = ACTIONS(4140), + [anon_sym_LPAREN2] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4142), + [anon_sym_TILDE] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym___extension__] = ACTIONS(4140), + [anon_sym_typedef] = ACTIONS(4140), + [anon_sym_virtual] = ACTIONS(4140), + [anon_sym_extern] = ACTIONS(4140), + [anon_sym___attribute__] = ACTIONS(4140), + [anon_sym___attribute] = ACTIONS(4140), + [anon_sym_using] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4142), + [anon_sym___declspec] = ACTIONS(4140), + [anon_sym___based] = ACTIONS(4140), + [anon_sym___cdecl] = ACTIONS(4140), + [anon_sym___clrcall] = ACTIONS(4140), + [anon_sym___stdcall] = ACTIONS(4140), + [anon_sym___fastcall] = ACTIONS(4140), + [anon_sym___thiscall] = ACTIONS(4140), + [anon_sym___vectorcall] = ACTIONS(4140), + [anon_sym_LBRACE] = ACTIONS(4142), + [anon_sym_signed] = ACTIONS(4140), + [anon_sym_unsigned] = ACTIONS(4140), + [anon_sym_long] = ACTIONS(4140), + [anon_sym_short] = ACTIONS(4140), + [anon_sym_LBRACK] = ACTIONS(4140), + [anon_sym_static] = ACTIONS(4140), + [anon_sym_register] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym___inline] = ACTIONS(4140), + [anon_sym___inline__] = ACTIONS(4140), + [anon_sym___forceinline] = ACTIONS(4140), + [anon_sym_thread_local] = ACTIONS(4140), + [anon_sym___thread] = ACTIONS(4140), + [anon_sym_const] = ACTIONS(4140), + [anon_sym_constexpr] = ACTIONS(4140), + [anon_sym_volatile] = ACTIONS(4140), + [anon_sym_restrict] = ACTIONS(4140), + [anon_sym___restrict__] = ACTIONS(4140), + [anon_sym__Atomic] = ACTIONS(4140), + [anon_sym__Noreturn] = ACTIONS(4140), + [anon_sym_noreturn] = ACTIONS(4140), + [anon_sym__Nonnull] = ACTIONS(4140), + [anon_sym_mutable] = ACTIONS(4140), + [anon_sym_constinit] = ACTIONS(4140), + [anon_sym_consteval] = ACTIONS(4140), + [anon_sym_alignas] = ACTIONS(4140), + [anon_sym__Alignas] = ACTIONS(4140), + [sym_primitive_type] = ACTIONS(4140), + [anon_sym_enum] = ACTIONS(4140), + [anon_sym_class] = ACTIONS(4140), + [anon_sym_struct] = ACTIONS(4140), + [anon_sym_union] = ACTIONS(4140), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_switch] = ACTIONS(4140), + [anon_sym_case] = ACTIONS(4140), + [anon_sym_default] = ACTIONS(4140), + [anon_sym_while] = ACTIONS(4140), + [anon_sym_do] = ACTIONS(4140), + [anon_sym_for] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_goto] = ACTIONS(4140), + [anon_sym___try] = ACTIONS(4140), + [anon_sym___leave] = ACTIONS(4140), + [anon_sym_not] = ACTIONS(4140), + [anon_sym_compl] = ACTIONS(4140), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_sizeof] = ACTIONS(4140), + [anon_sym___alignof__] = ACTIONS(4140), + [anon_sym___alignof] = ACTIONS(4140), + [anon_sym__alignof] = ACTIONS(4140), + [anon_sym_alignof] = ACTIONS(4140), + [anon_sym__Alignof] = ACTIONS(4140), + [anon_sym_offsetof] = ACTIONS(4140), + [anon_sym__Generic] = ACTIONS(4140), + [anon_sym_typename] = ACTIONS(4140), + [anon_sym_asm] = ACTIONS(4140), + [anon_sym___asm__] = ACTIONS(4140), + [anon_sym___asm] = ACTIONS(4140), + [sym_number_literal] = ACTIONS(4142), + [anon_sym_L_SQUOTE] = ACTIONS(4142), + [anon_sym_u_SQUOTE] = ACTIONS(4142), + [anon_sym_U_SQUOTE] = ACTIONS(4142), + [anon_sym_u8_SQUOTE] = ACTIONS(4142), + [anon_sym_SQUOTE] = ACTIONS(4142), + [anon_sym_L_DQUOTE] = ACTIONS(4142), + [anon_sym_u_DQUOTE] = ACTIONS(4142), + [anon_sym_U_DQUOTE] = ACTIONS(4142), + [anon_sym_u8_DQUOTE] = ACTIONS(4142), + [anon_sym_DQUOTE] = ACTIONS(4142), + [sym_true] = ACTIONS(4140), + [sym_false] = ACTIONS(4140), + [anon_sym_NULL] = ACTIONS(4140), + [anon_sym_nullptr] = ACTIONS(4140), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4140), + [anon_sym_decltype] = ACTIONS(4140), + [anon_sym_explicit] = ACTIONS(4140), + [anon_sym_export] = ACTIONS(4140), + [anon_sym_module] = ACTIONS(4140), + [anon_sym_import] = ACTIONS(4140), + [anon_sym_template] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_delete] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_namespace] = ACTIONS(4140), + [anon_sym_static_assert] = ACTIONS(4140), + [anon_sym_concept] = ACTIONS(4140), + [anon_sym_co_return] = ACTIONS(4140), + [anon_sym_co_yield] = ACTIONS(4140), + [anon_sym_R_DQUOTE] = ACTIONS(4142), + [anon_sym_LR_DQUOTE] = ACTIONS(4142), + [anon_sym_uR_DQUOTE] = ACTIONS(4142), + [anon_sym_UR_DQUOTE] = ACTIONS(4142), + [anon_sym_u8R_DQUOTE] = ACTIONS(4142), + [anon_sym_co_await] = ACTIONS(4140), + [anon_sym_new] = ACTIONS(4140), + [anon_sym_requires] = ACTIONS(4140), + [anon_sym_CARET_CARET] = ACTIONS(4142), + [anon_sym_LBRACK_COLON] = ACTIONS(4142), + [sym_this] = ACTIONS(4140), + }, + [STATE(454)] = { + [sym_identifier] = ACTIONS(4144), + [aux_sym_preproc_include_token1] = ACTIONS(4144), + [aux_sym_preproc_def_token1] = ACTIONS(4144), + [aux_sym_preproc_if_token1] = ACTIONS(4144), + [aux_sym_preproc_if_token2] = ACTIONS(4144), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4144), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4144), + [aux_sym_preproc_else_token1] = ACTIONS(4144), + [aux_sym_preproc_elif_token1] = ACTIONS(4144), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4144), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4144), + [sym_preproc_directive] = ACTIONS(4144), + [anon_sym_LPAREN2] = ACTIONS(4146), + [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_TILDE] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4144), + [anon_sym_STAR] = ACTIONS(4146), + [anon_sym_AMP_AMP] = ACTIONS(4146), + [anon_sym_AMP] = ACTIONS(4144), + [anon_sym_SEMI] = ACTIONS(4146), + [anon_sym___extension__] = ACTIONS(4144), + [anon_sym_typedef] = ACTIONS(4144), + [anon_sym_virtual] = ACTIONS(4144), + [anon_sym_extern] = ACTIONS(4144), + [anon_sym___attribute__] = ACTIONS(4144), + [anon_sym___attribute] = ACTIONS(4144), + [anon_sym_using] = ACTIONS(4144), + [anon_sym_COLON_COLON] = ACTIONS(4146), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4146), + [anon_sym___declspec] = ACTIONS(4144), + [anon_sym___based] = ACTIONS(4144), + [anon_sym___cdecl] = ACTIONS(4144), + [anon_sym___clrcall] = ACTIONS(4144), + [anon_sym___stdcall] = ACTIONS(4144), + [anon_sym___fastcall] = ACTIONS(4144), + [anon_sym___thiscall] = ACTIONS(4144), + [anon_sym___vectorcall] = ACTIONS(4144), + [anon_sym_LBRACE] = ACTIONS(4146), + [anon_sym_signed] = ACTIONS(4144), + [anon_sym_unsigned] = ACTIONS(4144), + [anon_sym_long] = ACTIONS(4144), + [anon_sym_short] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_static] = ACTIONS(4144), + [anon_sym_register] = ACTIONS(4144), + [anon_sym_inline] = ACTIONS(4144), + [anon_sym___inline] = ACTIONS(4144), + [anon_sym___inline__] = ACTIONS(4144), + [anon_sym___forceinline] = ACTIONS(4144), + [anon_sym_thread_local] = ACTIONS(4144), + [anon_sym___thread] = ACTIONS(4144), + [anon_sym_const] = ACTIONS(4144), + [anon_sym_constexpr] = ACTIONS(4144), + [anon_sym_volatile] = ACTIONS(4144), + [anon_sym_restrict] = ACTIONS(4144), + [anon_sym___restrict__] = ACTIONS(4144), + [anon_sym__Atomic] = ACTIONS(4144), + [anon_sym__Noreturn] = ACTIONS(4144), + [anon_sym_noreturn] = ACTIONS(4144), + [anon_sym__Nonnull] = ACTIONS(4144), + [anon_sym_mutable] = ACTIONS(4144), + [anon_sym_constinit] = ACTIONS(4144), + [anon_sym_consteval] = ACTIONS(4144), + [anon_sym_alignas] = ACTIONS(4144), + [anon_sym__Alignas] = ACTIONS(4144), + [sym_primitive_type] = ACTIONS(4144), + [anon_sym_enum] = ACTIONS(4144), + [anon_sym_class] = ACTIONS(4144), + [anon_sym_struct] = ACTIONS(4144), + [anon_sym_union] = ACTIONS(4144), + [anon_sym_if] = ACTIONS(4144), + [anon_sym_switch] = ACTIONS(4144), + [anon_sym_case] = ACTIONS(4144), + [anon_sym_default] = ACTIONS(4144), + [anon_sym_while] = ACTIONS(4144), + [anon_sym_do] = ACTIONS(4144), + [anon_sym_for] = ACTIONS(4144), + [anon_sym_return] = ACTIONS(4144), + [anon_sym_break] = ACTIONS(4144), + [anon_sym_continue] = ACTIONS(4144), + [anon_sym_goto] = ACTIONS(4144), + [anon_sym___try] = ACTIONS(4144), + [anon_sym___leave] = ACTIONS(4144), + [anon_sym_not] = ACTIONS(4144), + [anon_sym_compl] = ACTIONS(4144), + [anon_sym_DASH_DASH] = ACTIONS(4146), + [anon_sym_PLUS_PLUS] = ACTIONS(4146), + [anon_sym_sizeof] = ACTIONS(4144), + [anon_sym___alignof__] = ACTIONS(4144), + [anon_sym___alignof] = ACTIONS(4144), + [anon_sym__alignof] = ACTIONS(4144), + [anon_sym_alignof] = ACTIONS(4144), + [anon_sym__Alignof] = ACTIONS(4144), + [anon_sym_offsetof] = ACTIONS(4144), + [anon_sym__Generic] = ACTIONS(4144), + [anon_sym_typename] = ACTIONS(4144), + [anon_sym_asm] = ACTIONS(4144), + [anon_sym___asm__] = ACTIONS(4144), + [anon_sym___asm] = ACTIONS(4144), + [sym_number_literal] = ACTIONS(4146), + [anon_sym_L_SQUOTE] = ACTIONS(4146), + [anon_sym_u_SQUOTE] = ACTIONS(4146), + [anon_sym_U_SQUOTE] = ACTIONS(4146), + [anon_sym_u8_SQUOTE] = ACTIONS(4146), + [anon_sym_SQUOTE] = ACTIONS(4146), + [anon_sym_L_DQUOTE] = ACTIONS(4146), + [anon_sym_u_DQUOTE] = ACTIONS(4146), + [anon_sym_U_DQUOTE] = ACTIONS(4146), + [anon_sym_u8_DQUOTE] = ACTIONS(4146), + [anon_sym_DQUOTE] = ACTIONS(4146), + [sym_true] = ACTIONS(4144), + [sym_false] = ACTIONS(4144), + [anon_sym_NULL] = ACTIONS(4144), + [anon_sym_nullptr] = ACTIONS(4144), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_auto] = ACTIONS(4144), + [anon_sym_decltype] = ACTIONS(4144), + [anon_sym_explicit] = ACTIONS(4144), + [anon_sym_export] = ACTIONS(4144), + [anon_sym_module] = ACTIONS(4144), + [anon_sym_import] = ACTIONS(4144), + [anon_sym_template] = ACTIONS(4144), + [anon_sym_operator] = ACTIONS(4144), + [anon_sym_try] = ACTIONS(4144), + [anon_sym_delete] = ACTIONS(4144), + [anon_sym_throw] = ACTIONS(4144), + [anon_sym_namespace] = ACTIONS(4144), + [anon_sym_static_assert] = ACTIONS(4144), + [anon_sym_concept] = ACTIONS(4144), + [anon_sym_co_return] = ACTIONS(4144), + [anon_sym_co_yield] = ACTIONS(4144), + [anon_sym_R_DQUOTE] = ACTIONS(4146), + [anon_sym_LR_DQUOTE] = ACTIONS(4146), + [anon_sym_uR_DQUOTE] = ACTIONS(4146), + [anon_sym_UR_DQUOTE] = ACTIONS(4146), + [anon_sym_u8R_DQUOTE] = ACTIONS(4146), + [anon_sym_co_await] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_requires] = ACTIONS(4144), + [anon_sym_CARET_CARET] = ACTIONS(4146), + [anon_sym_LBRACK_COLON] = ACTIONS(4146), + [sym_this] = ACTIONS(4144), }, - [STATE(481)] = { - [ts_builtin_sym_end] = ACTIONS(3686), - [sym_identifier] = ACTIONS(3684), - [aux_sym_preproc_include_token1] = ACTIONS(3684), - [aux_sym_preproc_def_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token1] = ACTIONS(3684), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3684), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3684), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(3686), - [anon_sym_BANG] = ACTIONS(3686), - [anon_sym_TILDE] = ACTIONS(3686), - [anon_sym_DASH] = ACTIONS(3684), - [anon_sym_PLUS] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3686), - [anon_sym_AMP_AMP] = ACTIONS(3686), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym___extension__] = ACTIONS(3684), - [anon_sym_typedef] = ACTIONS(3684), - [anon_sym_virtual] = ACTIONS(3684), - [anon_sym_extern] = ACTIONS(3684), - [anon_sym___attribute__] = ACTIONS(3684), - [anon_sym___attribute] = ACTIONS(3684), - [anon_sym_using] = ACTIONS(3684), - [anon_sym_COLON_COLON] = ACTIONS(3686), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), - [anon_sym___declspec] = ACTIONS(3684), - [anon_sym___based] = ACTIONS(3684), - [anon_sym___cdecl] = ACTIONS(3684), - [anon_sym___clrcall] = ACTIONS(3684), - [anon_sym___stdcall] = ACTIONS(3684), - [anon_sym___fastcall] = ACTIONS(3684), - [anon_sym___thiscall] = ACTIONS(3684), - [anon_sym___vectorcall] = ACTIONS(3684), - [anon_sym_LBRACE] = ACTIONS(3686), - [anon_sym_signed] = ACTIONS(3684), - [anon_sym_unsigned] = ACTIONS(3684), - [anon_sym_long] = ACTIONS(3684), - [anon_sym_short] = ACTIONS(3684), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_static] = ACTIONS(3684), - [anon_sym_register] = ACTIONS(3684), - [anon_sym_inline] = ACTIONS(3684), - [anon_sym___inline] = ACTIONS(3684), - [anon_sym___inline__] = ACTIONS(3684), - [anon_sym___forceinline] = ACTIONS(3684), - [anon_sym_thread_local] = ACTIONS(3684), - [anon_sym___thread] = ACTIONS(3684), - [anon_sym_const] = ACTIONS(3684), - [anon_sym_constexpr] = ACTIONS(3684), - [anon_sym_volatile] = ACTIONS(3684), - [anon_sym_restrict] = ACTIONS(3684), - [anon_sym___restrict__] = ACTIONS(3684), - [anon_sym__Atomic] = ACTIONS(3684), - [anon_sym__Noreturn] = ACTIONS(3684), - [anon_sym_noreturn] = ACTIONS(3684), - [anon_sym__Nonnull] = ACTIONS(3684), - [anon_sym_mutable] = ACTIONS(3684), - [anon_sym_constinit] = ACTIONS(3684), - [anon_sym_consteval] = ACTIONS(3684), - [anon_sym_alignas] = ACTIONS(3684), - [anon_sym__Alignas] = ACTIONS(3684), - [sym_primitive_type] = ACTIONS(3684), - [anon_sym_enum] = ACTIONS(3684), - [anon_sym_class] = ACTIONS(3684), - [anon_sym_struct] = ACTIONS(3684), - [anon_sym_union] = ACTIONS(3684), - [anon_sym_if] = ACTIONS(3684), - [anon_sym_else] = ACTIONS(3684), - [anon_sym_switch] = ACTIONS(3684), - [anon_sym_case] = ACTIONS(3684), - [anon_sym_default] = ACTIONS(3684), - [anon_sym_while] = ACTIONS(3684), - [anon_sym_do] = ACTIONS(3684), - [anon_sym_for] = ACTIONS(3684), - [anon_sym_return] = ACTIONS(3684), - [anon_sym_break] = ACTIONS(3684), - [anon_sym_continue] = ACTIONS(3684), - [anon_sym_goto] = ACTIONS(3684), - [anon_sym___try] = ACTIONS(3684), - [anon_sym___leave] = ACTIONS(3684), - [anon_sym_not] = ACTIONS(3684), - [anon_sym_compl] = ACTIONS(3684), - [anon_sym_DASH_DASH] = ACTIONS(3686), - [anon_sym_PLUS_PLUS] = ACTIONS(3686), - [anon_sym_sizeof] = ACTIONS(3684), - [anon_sym___alignof__] = ACTIONS(3684), - [anon_sym___alignof] = ACTIONS(3684), - [anon_sym__alignof] = ACTIONS(3684), - [anon_sym_alignof] = ACTIONS(3684), - [anon_sym__Alignof] = ACTIONS(3684), - [anon_sym_offsetof] = ACTIONS(3684), - [anon_sym__Generic] = ACTIONS(3684), - [anon_sym_typename] = ACTIONS(3684), - [anon_sym_asm] = ACTIONS(3684), - [anon_sym___asm__] = ACTIONS(3684), - [anon_sym___asm] = ACTIONS(3684), - [sym_number_literal] = ACTIONS(3686), - [anon_sym_L_SQUOTE] = ACTIONS(3686), - [anon_sym_u_SQUOTE] = ACTIONS(3686), - [anon_sym_U_SQUOTE] = ACTIONS(3686), - [anon_sym_u8_SQUOTE] = ACTIONS(3686), - [anon_sym_SQUOTE] = ACTIONS(3686), - [anon_sym_L_DQUOTE] = ACTIONS(3686), - [anon_sym_u_DQUOTE] = ACTIONS(3686), - [anon_sym_U_DQUOTE] = ACTIONS(3686), - [anon_sym_u8_DQUOTE] = ACTIONS(3686), - [anon_sym_DQUOTE] = ACTIONS(3686), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [anon_sym_NULL] = ACTIONS(3684), - [anon_sym_nullptr] = ACTIONS(3684), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3684), - [anon_sym_decltype] = ACTIONS(3684), - [anon_sym_explicit] = ACTIONS(3684), - [anon_sym_export] = ACTIONS(3684), - [anon_sym_module] = ACTIONS(3684), - [anon_sym_import] = ACTIONS(3684), - [anon_sym_template] = ACTIONS(3684), - [anon_sym_operator] = ACTIONS(3684), - [anon_sym_try] = ACTIONS(3684), - [anon_sym_delete] = ACTIONS(3684), - [anon_sym_throw] = ACTIONS(3684), - [anon_sym_namespace] = ACTIONS(3684), - [anon_sym_static_assert] = ACTIONS(3684), - [anon_sym_concept] = ACTIONS(3684), - [anon_sym_co_return] = ACTIONS(3684), - [anon_sym_co_yield] = ACTIONS(3684), - [anon_sym_R_DQUOTE] = ACTIONS(3686), - [anon_sym_LR_DQUOTE] = ACTIONS(3686), - [anon_sym_uR_DQUOTE] = ACTIONS(3686), - [anon_sym_UR_DQUOTE] = ACTIONS(3686), - [anon_sym_u8R_DQUOTE] = ACTIONS(3686), - [anon_sym_co_await] = ACTIONS(3684), - [anon_sym_new] = ACTIONS(3684), - [anon_sym_requires] = ACTIONS(3684), - [anon_sym_CARET_CARET] = ACTIONS(3686), - [anon_sym_LBRACK_COLON] = ACTIONS(3686), - [sym_this] = ACTIONS(3684), - }, - [STATE(482)] = { - [ts_builtin_sym_end] = ACTIONS(3690), - [sym_identifier] = ACTIONS(3688), - [aux_sym_preproc_include_token1] = ACTIONS(3688), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3688), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3688), - [sym_preproc_directive] = ACTIONS(3688), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3690), - [anon_sym_TILDE] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3688), - [anon_sym_PLUS] = ACTIONS(3688), - [anon_sym_STAR] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3690), - [anon_sym_AMP] = ACTIONS(3688), - [anon_sym_SEMI] = ACTIONS(3690), - [anon_sym___extension__] = ACTIONS(3688), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_virtual] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(3688), - [anon_sym___attribute__] = ACTIONS(3688), - [anon_sym___attribute] = ACTIONS(3688), - [anon_sym_using] = ACTIONS(3688), - [anon_sym_COLON_COLON] = ACTIONS(3690), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3690), - [anon_sym___declspec] = ACTIONS(3688), - [anon_sym___based] = ACTIONS(3688), - [anon_sym___cdecl] = ACTIONS(3688), - [anon_sym___clrcall] = ACTIONS(3688), - [anon_sym___stdcall] = ACTIONS(3688), - [anon_sym___fastcall] = ACTIONS(3688), - [anon_sym___thiscall] = ACTIONS(3688), - [anon_sym___vectorcall] = ACTIONS(3688), - [anon_sym_LBRACE] = ACTIONS(3690), - [anon_sym_signed] = ACTIONS(3688), - [anon_sym_unsigned] = ACTIONS(3688), - [anon_sym_long] = ACTIONS(3688), - [anon_sym_short] = ACTIONS(3688), - [anon_sym_LBRACK] = ACTIONS(3688), - [anon_sym_static] = ACTIONS(3688), - [anon_sym_register] = ACTIONS(3688), - [anon_sym_inline] = ACTIONS(3688), - [anon_sym___inline] = ACTIONS(3688), - [anon_sym___inline__] = ACTIONS(3688), - [anon_sym___forceinline] = ACTIONS(3688), - [anon_sym_thread_local] = ACTIONS(3688), - [anon_sym___thread] = ACTIONS(3688), - [anon_sym_const] = ACTIONS(3688), - [anon_sym_constexpr] = ACTIONS(3688), - [anon_sym_volatile] = ACTIONS(3688), - [anon_sym_restrict] = ACTIONS(3688), - [anon_sym___restrict__] = ACTIONS(3688), - [anon_sym__Atomic] = ACTIONS(3688), - [anon_sym__Noreturn] = ACTIONS(3688), - [anon_sym_noreturn] = ACTIONS(3688), - [anon_sym__Nonnull] = ACTIONS(3688), - [anon_sym_mutable] = ACTIONS(3688), - [anon_sym_constinit] = ACTIONS(3688), - [anon_sym_consteval] = ACTIONS(3688), - [anon_sym_alignas] = ACTIONS(3688), - [anon_sym__Alignas] = ACTIONS(3688), - [sym_primitive_type] = ACTIONS(3688), - [anon_sym_enum] = ACTIONS(3688), - [anon_sym_class] = ACTIONS(3688), - [anon_sym_struct] = ACTIONS(3688), - [anon_sym_union] = ACTIONS(3688), - [anon_sym_if] = ACTIONS(3688), - [anon_sym_else] = ACTIONS(3688), - [anon_sym_switch] = ACTIONS(3688), - [anon_sym_case] = ACTIONS(3688), - [anon_sym_default] = ACTIONS(3688), - [anon_sym_while] = ACTIONS(3688), - [anon_sym_do] = ACTIONS(3688), - [anon_sym_for] = ACTIONS(3688), - [anon_sym_return] = ACTIONS(3688), - [anon_sym_break] = ACTIONS(3688), - [anon_sym_continue] = ACTIONS(3688), - [anon_sym_goto] = ACTIONS(3688), - [anon_sym___try] = ACTIONS(3688), - [anon_sym___leave] = ACTIONS(3688), - [anon_sym_not] = ACTIONS(3688), - [anon_sym_compl] = ACTIONS(3688), - [anon_sym_DASH_DASH] = ACTIONS(3690), - [anon_sym_PLUS_PLUS] = ACTIONS(3690), - [anon_sym_sizeof] = ACTIONS(3688), - [anon_sym___alignof__] = ACTIONS(3688), - [anon_sym___alignof] = ACTIONS(3688), - [anon_sym__alignof] = ACTIONS(3688), - [anon_sym_alignof] = ACTIONS(3688), - [anon_sym__Alignof] = ACTIONS(3688), - [anon_sym_offsetof] = ACTIONS(3688), - [anon_sym__Generic] = ACTIONS(3688), - [anon_sym_typename] = ACTIONS(3688), - [anon_sym_asm] = ACTIONS(3688), - [anon_sym___asm__] = ACTIONS(3688), - [anon_sym___asm] = ACTIONS(3688), - [sym_number_literal] = ACTIONS(3690), - [anon_sym_L_SQUOTE] = ACTIONS(3690), - [anon_sym_u_SQUOTE] = ACTIONS(3690), - [anon_sym_U_SQUOTE] = ACTIONS(3690), - [anon_sym_u8_SQUOTE] = ACTIONS(3690), - [anon_sym_SQUOTE] = ACTIONS(3690), - [anon_sym_L_DQUOTE] = ACTIONS(3690), - [anon_sym_u_DQUOTE] = ACTIONS(3690), - [anon_sym_U_DQUOTE] = ACTIONS(3690), - [anon_sym_u8_DQUOTE] = ACTIONS(3690), - [anon_sym_DQUOTE] = ACTIONS(3690), - [sym_true] = ACTIONS(3688), - [sym_false] = ACTIONS(3688), - [anon_sym_NULL] = ACTIONS(3688), - [anon_sym_nullptr] = ACTIONS(3688), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3688), - [anon_sym_decltype] = ACTIONS(3688), - [anon_sym_explicit] = ACTIONS(3688), - [anon_sym_export] = ACTIONS(3688), - [anon_sym_module] = ACTIONS(3688), - [anon_sym_import] = ACTIONS(3688), - [anon_sym_template] = ACTIONS(3688), - [anon_sym_operator] = ACTIONS(3688), - [anon_sym_try] = ACTIONS(3688), - [anon_sym_delete] = ACTIONS(3688), - [anon_sym_throw] = ACTIONS(3688), - [anon_sym_namespace] = ACTIONS(3688), - [anon_sym_static_assert] = ACTIONS(3688), - [anon_sym_concept] = ACTIONS(3688), - [anon_sym_co_return] = ACTIONS(3688), - [anon_sym_co_yield] = ACTIONS(3688), - [anon_sym_R_DQUOTE] = ACTIONS(3690), - [anon_sym_LR_DQUOTE] = ACTIONS(3690), - [anon_sym_uR_DQUOTE] = ACTIONS(3690), - [anon_sym_UR_DQUOTE] = ACTIONS(3690), - [anon_sym_u8R_DQUOTE] = ACTIONS(3690), - [anon_sym_co_await] = ACTIONS(3688), - [anon_sym_new] = ACTIONS(3688), - [anon_sym_requires] = ACTIONS(3688), - [anon_sym_CARET_CARET] = ACTIONS(3690), - [anon_sym_LBRACK_COLON] = ACTIONS(3690), - [sym_this] = ACTIONS(3688), - }, - [STATE(483)] = { - [ts_builtin_sym_end] = ACTIONS(3698), - [sym_identifier] = ACTIONS(3696), - [aux_sym_preproc_include_token1] = ACTIONS(3696), - [aux_sym_preproc_def_token1] = ACTIONS(3696), - [aux_sym_preproc_if_token1] = ACTIONS(3696), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3696), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3696), - [sym_preproc_directive] = ACTIONS(3696), - [anon_sym_LPAREN2] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_TILDE] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3696), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym_SEMI] = ACTIONS(3698), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3696), - [anon_sym_virtual] = ACTIONS(3696), - [anon_sym_extern] = ACTIONS(3696), - [anon_sym___attribute__] = ACTIONS(3696), - [anon_sym___attribute] = ACTIONS(3696), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3698), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3698), - [anon_sym___declspec] = ACTIONS(3696), - [anon_sym___based] = ACTIONS(3696), - [anon_sym___cdecl] = ACTIONS(3696), - [anon_sym___clrcall] = ACTIONS(3696), - [anon_sym___stdcall] = ACTIONS(3696), - [anon_sym___fastcall] = ACTIONS(3696), - [anon_sym___thiscall] = ACTIONS(3696), - [anon_sym___vectorcall] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3698), - [anon_sym_signed] = ACTIONS(3696), - [anon_sym_unsigned] = ACTIONS(3696), - [anon_sym_long] = ACTIONS(3696), - [anon_sym_short] = ACTIONS(3696), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_static] = ACTIONS(3696), - [anon_sym_register] = ACTIONS(3696), - [anon_sym_inline] = ACTIONS(3696), - [anon_sym___inline] = ACTIONS(3696), - [anon_sym___inline__] = ACTIONS(3696), - [anon_sym___forceinline] = ACTIONS(3696), - [anon_sym_thread_local] = ACTIONS(3696), - [anon_sym___thread] = ACTIONS(3696), - [anon_sym_const] = ACTIONS(3696), - [anon_sym_constexpr] = ACTIONS(3696), - [anon_sym_volatile] = ACTIONS(3696), - [anon_sym_restrict] = ACTIONS(3696), - [anon_sym___restrict__] = ACTIONS(3696), - [anon_sym__Atomic] = ACTIONS(3696), - [anon_sym__Noreturn] = ACTIONS(3696), - [anon_sym_noreturn] = ACTIONS(3696), - [anon_sym__Nonnull] = ACTIONS(3696), - [anon_sym_mutable] = ACTIONS(3696), - [anon_sym_constinit] = ACTIONS(3696), - [anon_sym_consteval] = ACTIONS(3696), - [anon_sym_alignas] = ACTIONS(3696), - [anon_sym__Alignas] = ACTIONS(3696), - [sym_primitive_type] = ACTIONS(3696), - [anon_sym_enum] = ACTIONS(3696), - [anon_sym_class] = ACTIONS(3696), - [anon_sym_struct] = ACTIONS(3696), - [anon_sym_union] = ACTIONS(3696), - [anon_sym_if] = ACTIONS(3696), - [anon_sym_else] = ACTIONS(3696), - [anon_sym_switch] = ACTIONS(3696), - [anon_sym_case] = ACTIONS(3696), - [anon_sym_default] = ACTIONS(3696), - [anon_sym_while] = ACTIONS(3696), - [anon_sym_do] = ACTIONS(3696), - [anon_sym_for] = ACTIONS(3696), - [anon_sym_return] = ACTIONS(3696), - [anon_sym_break] = ACTIONS(3696), - [anon_sym_continue] = ACTIONS(3696), - [anon_sym_goto] = ACTIONS(3696), - [anon_sym___try] = ACTIONS(3696), - [anon_sym___leave] = ACTIONS(3696), - [anon_sym_not] = ACTIONS(3696), - [anon_sym_compl] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3698), - [anon_sym_sizeof] = ACTIONS(3696), - [anon_sym___alignof__] = ACTIONS(3696), - [anon_sym___alignof] = ACTIONS(3696), - [anon_sym__alignof] = ACTIONS(3696), - [anon_sym_alignof] = ACTIONS(3696), - [anon_sym__Alignof] = ACTIONS(3696), - [anon_sym_offsetof] = ACTIONS(3696), - [anon_sym__Generic] = ACTIONS(3696), - [anon_sym_typename] = ACTIONS(3696), - [anon_sym_asm] = ACTIONS(3696), - [anon_sym___asm__] = ACTIONS(3696), - [anon_sym___asm] = ACTIONS(3696), - [sym_number_literal] = ACTIONS(3698), - [anon_sym_L_SQUOTE] = ACTIONS(3698), - [anon_sym_u_SQUOTE] = ACTIONS(3698), - [anon_sym_U_SQUOTE] = ACTIONS(3698), - [anon_sym_u8_SQUOTE] = ACTIONS(3698), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_L_DQUOTE] = ACTIONS(3698), - [anon_sym_u_DQUOTE] = ACTIONS(3698), - [anon_sym_U_DQUOTE] = ACTIONS(3698), - [anon_sym_u8_DQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3698), - [sym_true] = ACTIONS(3696), - [sym_false] = ACTIONS(3696), - [anon_sym_NULL] = ACTIONS(3696), - [anon_sym_nullptr] = ACTIONS(3696), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3696), - [anon_sym_decltype] = ACTIONS(3696), - [anon_sym_explicit] = ACTIONS(3696), - [anon_sym_export] = ACTIONS(3696), - [anon_sym_module] = ACTIONS(3696), - [anon_sym_import] = ACTIONS(3696), - [anon_sym_template] = ACTIONS(3696), - [anon_sym_operator] = ACTIONS(3696), - [anon_sym_try] = ACTIONS(3696), - [anon_sym_delete] = ACTIONS(3696), - [anon_sym_throw] = ACTIONS(3696), - [anon_sym_namespace] = ACTIONS(3696), - [anon_sym_static_assert] = ACTIONS(3696), - [anon_sym_concept] = ACTIONS(3696), - [anon_sym_co_return] = ACTIONS(3696), - [anon_sym_co_yield] = ACTIONS(3696), - [anon_sym_R_DQUOTE] = ACTIONS(3698), - [anon_sym_LR_DQUOTE] = ACTIONS(3698), - [anon_sym_uR_DQUOTE] = ACTIONS(3698), - [anon_sym_UR_DQUOTE] = ACTIONS(3698), - [anon_sym_u8R_DQUOTE] = ACTIONS(3698), - [anon_sym_co_await] = ACTIONS(3696), - [anon_sym_new] = ACTIONS(3696), - [anon_sym_requires] = ACTIONS(3696), - [anon_sym_CARET_CARET] = ACTIONS(3698), - [anon_sym_LBRACK_COLON] = ACTIONS(3698), - [sym_this] = ACTIONS(3696), - }, - [STATE(484)] = { - [ts_builtin_sym_end] = ACTIONS(3722), - [sym_identifier] = ACTIONS(3720), - [aux_sym_preproc_include_token1] = ACTIONS(3720), - [aux_sym_preproc_def_token1] = ACTIONS(3720), - [aux_sym_preproc_if_token1] = ACTIONS(3720), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3720), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3720), - [sym_preproc_directive] = ACTIONS(3720), - [anon_sym_LPAREN2] = ACTIONS(3722), - [anon_sym_BANG] = ACTIONS(3722), - [anon_sym_TILDE] = ACTIONS(3722), - [anon_sym_DASH] = ACTIONS(3720), - [anon_sym_PLUS] = ACTIONS(3720), - [anon_sym_STAR] = ACTIONS(3722), - [anon_sym_AMP_AMP] = ACTIONS(3722), - [anon_sym_AMP] = ACTIONS(3720), - [anon_sym_SEMI] = ACTIONS(3722), - [anon_sym___extension__] = ACTIONS(3720), - [anon_sym_typedef] = ACTIONS(3720), - [anon_sym_virtual] = ACTIONS(3720), - [anon_sym_extern] = ACTIONS(3720), - [anon_sym___attribute__] = ACTIONS(3720), - [anon_sym___attribute] = ACTIONS(3720), - [anon_sym_using] = ACTIONS(3720), - [anon_sym_COLON_COLON] = ACTIONS(3722), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3722), - [anon_sym___declspec] = ACTIONS(3720), - [anon_sym___based] = ACTIONS(3720), - [anon_sym___cdecl] = ACTIONS(3720), - [anon_sym___clrcall] = ACTIONS(3720), - [anon_sym___stdcall] = ACTIONS(3720), - [anon_sym___fastcall] = ACTIONS(3720), - [anon_sym___thiscall] = ACTIONS(3720), - [anon_sym___vectorcall] = ACTIONS(3720), - [anon_sym_LBRACE] = ACTIONS(3722), - [anon_sym_signed] = ACTIONS(3720), - [anon_sym_unsigned] = ACTIONS(3720), - [anon_sym_long] = ACTIONS(3720), - [anon_sym_short] = ACTIONS(3720), - [anon_sym_LBRACK] = ACTIONS(3720), - [anon_sym_static] = ACTIONS(3720), - [anon_sym_register] = ACTIONS(3720), - [anon_sym_inline] = ACTIONS(3720), - [anon_sym___inline] = ACTIONS(3720), - [anon_sym___inline__] = ACTIONS(3720), - [anon_sym___forceinline] = ACTIONS(3720), - [anon_sym_thread_local] = ACTIONS(3720), - [anon_sym___thread] = ACTIONS(3720), - [anon_sym_const] = ACTIONS(3720), - [anon_sym_constexpr] = ACTIONS(3720), - [anon_sym_volatile] = ACTIONS(3720), - [anon_sym_restrict] = ACTIONS(3720), - [anon_sym___restrict__] = ACTIONS(3720), - [anon_sym__Atomic] = ACTIONS(3720), - [anon_sym__Noreturn] = ACTIONS(3720), - [anon_sym_noreturn] = ACTIONS(3720), - [anon_sym__Nonnull] = ACTIONS(3720), - [anon_sym_mutable] = ACTIONS(3720), - [anon_sym_constinit] = ACTIONS(3720), - [anon_sym_consteval] = ACTIONS(3720), - [anon_sym_alignas] = ACTIONS(3720), - [anon_sym__Alignas] = ACTIONS(3720), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3720), - [anon_sym_class] = ACTIONS(3720), - [anon_sym_struct] = ACTIONS(3720), - [anon_sym_union] = ACTIONS(3720), - [anon_sym_if] = ACTIONS(3720), - [anon_sym_else] = ACTIONS(3720), - [anon_sym_switch] = ACTIONS(3720), - [anon_sym_case] = ACTIONS(3720), - [anon_sym_default] = ACTIONS(3720), - [anon_sym_while] = ACTIONS(3720), - [anon_sym_do] = ACTIONS(3720), - [anon_sym_for] = ACTIONS(3720), - [anon_sym_return] = ACTIONS(3720), - [anon_sym_break] = ACTIONS(3720), - [anon_sym_continue] = ACTIONS(3720), - [anon_sym_goto] = ACTIONS(3720), - [anon_sym___try] = ACTIONS(3720), - [anon_sym___leave] = ACTIONS(3720), - [anon_sym_not] = ACTIONS(3720), - [anon_sym_compl] = ACTIONS(3720), - [anon_sym_DASH_DASH] = ACTIONS(3722), - [anon_sym_PLUS_PLUS] = ACTIONS(3722), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3720), - [anon_sym___alignof] = ACTIONS(3720), - [anon_sym__alignof] = ACTIONS(3720), - [anon_sym_alignof] = ACTIONS(3720), - [anon_sym__Alignof] = ACTIONS(3720), - [anon_sym_offsetof] = ACTIONS(3720), - [anon_sym__Generic] = ACTIONS(3720), - [anon_sym_typename] = ACTIONS(3720), - [anon_sym_asm] = ACTIONS(3720), - [anon_sym___asm__] = ACTIONS(3720), - [anon_sym___asm] = ACTIONS(3720), - [sym_number_literal] = ACTIONS(3722), - [anon_sym_L_SQUOTE] = ACTIONS(3722), - [anon_sym_u_SQUOTE] = ACTIONS(3722), - [anon_sym_U_SQUOTE] = ACTIONS(3722), - [anon_sym_u8_SQUOTE] = ACTIONS(3722), - [anon_sym_SQUOTE] = ACTIONS(3722), - [anon_sym_L_DQUOTE] = ACTIONS(3722), - [anon_sym_u_DQUOTE] = ACTIONS(3722), - [anon_sym_U_DQUOTE] = ACTIONS(3722), - [anon_sym_u8_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE] = ACTIONS(3722), - [sym_true] = ACTIONS(3720), - [sym_false] = ACTIONS(3720), - [anon_sym_NULL] = ACTIONS(3720), - [anon_sym_nullptr] = ACTIONS(3720), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3720), - [anon_sym_decltype] = ACTIONS(3720), - [anon_sym_explicit] = ACTIONS(3720), - [anon_sym_export] = ACTIONS(3720), - [anon_sym_module] = ACTIONS(3720), - [anon_sym_import] = ACTIONS(3720), - [anon_sym_template] = ACTIONS(3720), - [anon_sym_operator] = ACTIONS(3720), - [anon_sym_try] = ACTIONS(3720), - [anon_sym_delete] = ACTIONS(3720), - [anon_sym_throw] = ACTIONS(3720), - [anon_sym_namespace] = ACTIONS(3720), - [anon_sym_static_assert] = ACTIONS(3720), - [anon_sym_concept] = ACTIONS(3720), - [anon_sym_co_return] = ACTIONS(3720), - [anon_sym_co_yield] = ACTIONS(3720), - [anon_sym_R_DQUOTE] = ACTIONS(3722), - [anon_sym_LR_DQUOTE] = ACTIONS(3722), - [anon_sym_uR_DQUOTE] = ACTIONS(3722), - [anon_sym_UR_DQUOTE] = ACTIONS(3722), - [anon_sym_u8R_DQUOTE] = ACTIONS(3722), - [anon_sym_co_await] = ACTIONS(3720), - [anon_sym_new] = ACTIONS(3720), - [anon_sym_requires] = ACTIONS(3720), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(3722), - [sym_this] = ACTIONS(3720), - }, - [STATE(485)] = { - [ts_builtin_sym_end] = ACTIONS(3734), - [sym_identifier] = ACTIONS(3732), - [aux_sym_preproc_include_token1] = ACTIONS(3732), - [aux_sym_preproc_def_token1] = ACTIONS(3732), - [aux_sym_preproc_if_token1] = ACTIONS(3732), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3732), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3732), - [sym_preproc_directive] = ACTIONS(3732), - [anon_sym_LPAREN2] = ACTIONS(3734), - [anon_sym_BANG] = ACTIONS(3734), - [anon_sym_TILDE] = ACTIONS(3734), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3734), - [anon_sym_AMP_AMP] = ACTIONS(3734), - [anon_sym_AMP] = ACTIONS(3732), - [anon_sym_SEMI] = ACTIONS(3734), - [anon_sym___extension__] = ACTIONS(3732), - [anon_sym_typedef] = ACTIONS(3732), - [anon_sym_virtual] = ACTIONS(3732), - [anon_sym_extern] = ACTIONS(3732), - [anon_sym___attribute__] = ACTIONS(3732), - [anon_sym___attribute] = ACTIONS(3732), - [anon_sym_using] = ACTIONS(3732), - [anon_sym_COLON_COLON] = ACTIONS(3734), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3734), - [anon_sym___declspec] = ACTIONS(3732), - [anon_sym___based] = ACTIONS(3732), - [anon_sym___cdecl] = ACTIONS(3732), - [anon_sym___clrcall] = ACTIONS(3732), - [anon_sym___stdcall] = ACTIONS(3732), - [anon_sym___fastcall] = ACTIONS(3732), - [anon_sym___thiscall] = ACTIONS(3732), - [anon_sym___vectorcall] = ACTIONS(3732), - [anon_sym_LBRACE] = ACTIONS(3734), - [anon_sym_signed] = ACTIONS(3732), - [anon_sym_unsigned] = ACTIONS(3732), - [anon_sym_long] = ACTIONS(3732), - [anon_sym_short] = ACTIONS(3732), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_static] = ACTIONS(3732), - [anon_sym_register] = ACTIONS(3732), - [anon_sym_inline] = ACTIONS(3732), - [anon_sym___inline] = ACTIONS(3732), - [anon_sym___inline__] = ACTIONS(3732), - [anon_sym___forceinline] = ACTIONS(3732), - [anon_sym_thread_local] = ACTIONS(3732), - [anon_sym___thread] = ACTIONS(3732), - [anon_sym_const] = ACTIONS(3732), - [anon_sym_constexpr] = ACTIONS(3732), - [anon_sym_volatile] = ACTIONS(3732), - [anon_sym_restrict] = ACTIONS(3732), - [anon_sym___restrict__] = ACTIONS(3732), - [anon_sym__Atomic] = ACTIONS(3732), - [anon_sym__Noreturn] = ACTIONS(3732), - [anon_sym_noreturn] = ACTIONS(3732), - [anon_sym__Nonnull] = ACTIONS(3732), - [anon_sym_mutable] = ACTIONS(3732), - [anon_sym_constinit] = ACTIONS(3732), - [anon_sym_consteval] = ACTIONS(3732), - [anon_sym_alignas] = ACTIONS(3732), - [anon_sym__Alignas] = ACTIONS(3732), - [sym_primitive_type] = ACTIONS(3732), - [anon_sym_enum] = ACTIONS(3732), - [anon_sym_class] = ACTIONS(3732), - [anon_sym_struct] = ACTIONS(3732), - [anon_sym_union] = ACTIONS(3732), - [anon_sym_if] = ACTIONS(3732), - [anon_sym_else] = ACTIONS(3732), - [anon_sym_switch] = ACTIONS(3732), - [anon_sym_case] = ACTIONS(3732), - [anon_sym_default] = ACTIONS(3732), - [anon_sym_while] = ACTIONS(3732), - [anon_sym_do] = ACTIONS(3732), - [anon_sym_for] = ACTIONS(3732), - [anon_sym_return] = ACTIONS(3732), - [anon_sym_break] = ACTIONS(3732), - [anon_sym_continue] = ACTIONS(3732), - [anon_sym_goto] = ACTIONS(3732), - [anon_sym___try] = ACTIONS(3732), - [anon_sym___leave] = ACTIONS(3732), - [anon_sym_not] = ACTIONS(3732), - [anon_sym_compl] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3734), - [anon_sym_PLUS_PLUS] = ACTIONS(3734), - [anon_sym_sizeof] = ACTIONS(3732), - [anon_sym___alignof__] = ACTIONS(3732), - [anon_sym___alignof] = ACTIONS(3732), - [anon_sym__alignof] = ACTIONS(3732), - [anon_sym_alignof] = ACTIONS(3732), - [anon_sym__Alignof] = ACTIONS(3732), - [anon_sym_offsetof] = ACTIONS(3732), - [anon_sym__Generic] = ACTIONS(3732), - [anon_sym_typename] = ACTIONS(3732), - [anon_sym_asm] = ACTIONS(3732), - [anon_sym___asm__] = ACTIONS(3732), - [anon_sym___asm] = ACTIONS(3732), - [sym_number_literal] = ACTIONS(3734), - [anon_sym_L_SQUOTE] = ACTIONS(3734), - [anon_sym_u_SQUOTE] = ACTIONS(3734), - [anon_sym_U_SQUOTE] = ACTIONS(3734), - [anon_sym_u8_SQUOTE] = ACTIONS(3734), - [anon_sym_SQUOTE] = ACTIONS(3734), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3732), - [sym_false] = ACTIONS(3732), - [anon_sym_NULL] = ACTIONS(3732), - [anon_sym_nullptr] = ACTIONS(3732), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3732), - [anon_sym_decltype] = ACTIONS(3732), - [anon_sym_explicit] = ACTIONS(3732), - [anon_sym_export] = ACTIONS(3732), - [anon_sym_module] = ACTIONS(3732), - [anon_sym_import] = ACTIONS(3732), - [anon_sym_template] = ACTIONS(3732), - [anon_sym_operator] = ACTIONS(3732), - [anon_sym_try] = ACTIONS(3732), - [anon_sym_delete] = ACTIONS(3732), - [anon_sym_throw] = ACTIONS(3732), - [anon_sym_namespace] = ACTIONS(3732), - [anon_sym_static_assert] = ACTIONS(3732), - [anon_sym_concept] = ACTIONS(3732), - [anon_sym_co_return] = ACTIONS(3732), - [anon_sym_co_yield] = ACTIONS(3732), - [anon_sym_R_DQUOTE] = ACTIONS(3734), - [anon_sym_LR_DQUOTE] = ACTIONS(3734), - [anon_sym_uR_DQUOTE] = ACTIONS(3734), - [anon_sym_UR_DQUOTE] = ACTIONS(3734), - [anon_sym_u8R_DQUOTE] = ACTIONS(3734), - [anon_sym_co_await] = ACTIONS(3732), - [anon_sym_new] = ACTIONS(3732), - [anon_sym_requires] = ACTIONS(3732), - [anon_sym_CARET_CARET] = ACTIONS(3734), - [anon_sym_LBRACK_COLON] = ACTIONS(3734), - [sym_this] = ACTIONS(3732), - }, - [STATE(486)] = { - [ts_builtin_sym_end] = ACTIONS(3892), - [sym_identifier] = ACTIONS(3890), - [aux_sym_preproc_include_token1] = ACTIONS(3890), - [aux_sym_preproc_def_token1] = ACTIONS(3890), - [aux_sym_preproc_if_token1] = ACTIONS(3890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3890), - [sym_preproc_directive] = ACTIONS(3890), - [anon_sym_LPAREN2] = ACTIONS(3892), - [anon_sym_BANG] = ACTIONS(3892), - [anon_sym_TILDE] = ACTIONS(3892), - [anon_sym_DASH] = ACTIONS(3890), - [anon_sym_PLUS] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(3892), - [anon_sym_AMP_AMP] = ACTIONS(3892), - [anon_sym_AMP] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3892), - [anon_sym___extension__] = ACTIONS(3890), - [anon_sym_typedef] = ACTIONS(3890), - [anon_sym_virtual] = ACTIONS(3890), - [anon_sym_extern] = ACTIONS(3890), - [anon_sym___attribute__] = ACTIONS(3890), - [anon_sym___attribute] = ACTIONS(3890), - [anon_sym_using] = ACTIONS(3890), - [anon_sym_COLON_COLON] = ACTIONS(3892), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3892), - [anon_sym___declspec] = ACTIONS(3890), - [anon_sym___based] = ACTIONS(3890), - [anon_sym___cdecl] = ACTIONS(3890), - [anon_sym___clrcall] = ACTIONS(3890), - [anon_sym___stdcall] = ACTIONS(3890), - [anon_sym___fastcall] = ACTIONS(3890), - [anon_sym___thiscall] = ACTIONS(3890), - [anon_sym___vectorcall] = ACTIONS(3890), - [anon_sym_LBRACE] = ACTIONS(3892), - [anon_sym_signed] = ACTIONS(3890), - [anon_sym_unsigned] = ACTIONS(3890), - [anon_sym_long] = ACTIONS(3890), - [anon_sym_short] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_static] = ACTIONS(3890), - [anon_sym_register] = ACTIONS(3890), - [anon_sym_inline] = ACTIONS(3890), - [anon_sym___inline] = ACTIONS(3890), - [anon_sym___inline__] = ACTIONS(3890), - [anon_sym___forceinline] = ACTIONS(3890), - [anon_sym_thread_local] = ACTIONS(3890), - [anon_sym___thread] = ACTIONS(3890), - [anon_sym_const] = ACTIONS(3890), - [anon_sym_constexpr] = ACTIONS(3890), - [anon_sym_volatile] = ACTIONS(3890), - [anon_sym_restrict] = ACTIONS(3890), - [anon_sym___restrict__] = ACTIONS(3890), - [anon_sym__Atomic] = ACTIONS(3890), - [anon_sym__Noreturn] = ACTIONS(3890), - [anon_sym_noreturn] = ACTIONS(3890), - [anon_sym__Nonnull] = ACTIONS(3890), - [anon_sym_mutable] = ACTIONS(3890), - [anon_sym_constinit] = ACTIONS(3890), - [anon_sym_consteval] = ACTIONS(3890), - [anon_sym_alignas] = ACTIONS(3890), - [anon_sym__Alignas] = ACTIONS(3890), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_enum] = ACTIONS(3890), - [anon_sym_class] = ACTIONS(3890), - [anon_sym_struct] = ACTIONS(3890), - [anon_sym_union] = ACTIONS(3890), - [anon_sym_if] = ACTIONS(3890), - [anon_sym_else] = ACTIONS(3890), - [anon_sym_switch] = ACTIONS(3890), - [anon_sym_case] = ACTIONS(3890), - [anon_sym_default] = ACTIONS(3890), - [anon_sym_while] = ACTIONS(3890), - [anon_sym_do] = ACTIONS(3890), - [anon_sym_for] = ACTIONS(3890), - [anon_sym_return] = ACTIONS(3890), - [anon_sym_break] = ACTIONS(3890), - [anon_sym_continue] = ACTIONS(3890), - [anon_sym_goto] = ACTIONS(3890), - [anon_sym___try] = ACTIONS(3890), - [anon_sym___leave] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_compl] = ACTIONS(3890), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym___alignof__] = ACTIONS(3890), - [anon_sym___alignof] = ACTIONS(3890), - [anon_sym__alignof] = ACTIONS(3890), - [anon_sym_alignof] = ACTIONS(3890), - [anon_sym__Alignof] = ACTIONS(3890), - [anon_sym_offsetof] = ACTIONS(3890), - [anon_sym__Generic] = ACTIONS(3890), - [anon_sym_typename] = ACTIONS(3890), - [anon_sym_asm] = ACTIONS(3890), - [anon_sym___asm__] = ACTIONS(3890), - [anon_sym___asm] = ACTIONS(3890), - [sym_number_literal] = ACTIONS(3892), - [anon_sym_L_SQUOTE] = ACTIONS(3892), - [anon_sym_u_SQUOTE] = ACTIONS(3892), - [anon_sym_U_SQUOTE] = ACTIONS(3892), - [anon_sym_u8_SQUOTE] = ACTIONS(3892), - [anon_sym_SQUOTE] = ACTIONS(3892), - [anon_sym_L_DQUOTE] = ACTIONS(3892), - [anon_sym_u_DQUOTE] = ACTIONS(3892), - [anon_sym_U_DQUOTE] = ACTIONS(3892), - [anon_sym_u8_DQUOTE] = ACTIONS(3892), - [anon_sym_DQUOTE] = ACTIONS(3892), - [sym_true] = ACTIONS(3890), - [sym_false] = ACTIONS(3890), - [anon_sym_NULL] = ACTIONS(3890), - [anon_sym_nullptr] = ACTIONS(3890), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3890), - [anon_sym_decltype] = ACTIONS(3890), - [anon_sym_explicit] = ACTIONS(3890), - [anon_sym_export] = ACTIONS(3890), - [anon_sym_module] = ACTIONS(3890), - [anon_sym_import] = ACTIONS(3890), - [anon_sym_template] = ACTIONS(3890), - [anon_sym_operator] = ACTIONS(3890), - [anon_sym_try] = ACTIONS(3890), - [anon_sym_delete] = ACTIONS(3890), - [anon_sym_throw] = ACTIONS(3890), - [anon_sym_namespace] = ACTIONS(3890), - [anon_sym_static_assert] = ACTIONS(3890), - [anon_sym_concept] = ACTIONS(3890), - [anon_sym_co_return] = ACTIONS(3890), - [anon_sym_co_yield] = ACTIONS(3890), - [anon_sym_R_DQUOTE] = ACTIONS(3892), - [anon_sym_LR_DQUOTE] = ACTIONS(3892), - [anon_sym_uR_DQUOTE] = ACTIONS(3892), - [anon_sym_UR_DQUOTE] = ACTIONS(3892), - [anon_sym_u8R_DQUOTE] = ACTIONS(3892), - [anon_sym_co_await] = ACTIONS(3890), - [anon_sym_new] = ACTIONS(3890), - [anon_sym_requires] = ACTIONS(3890), - [anon_sym_CARET_CARET] = ACTIONS(3892), - [anon_sym_LBRACK_COLON] = ACTIONS(3892), - [sym_this] = ACTIONS(3890), - }, - [STATE(487)] = { - [ts_builtin_sym_end] = ACTIONS(3632), - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_include_token1] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym___attribute] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym___cdecl] = ACTIONS(3630), - [anon_sym___clrcall] = ACTIONS(3630), - [anon_sym___stdcall] = ACTIONS(3630), - [anon_sym___fastcall] = ACTIONS(3630), - [anon_sym___thiscall] = ACTIONS(3630), - [anon_sym___vectorcall] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym__Nonnull] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym__Alignas] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_else] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [anon_sym_case] = ACTIONS(3630), - [anon_sym_default] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [anon_sym_goto] = ACTIONS(3630), - [anon_sym___try] = ACTIONS(3630), - [anon_sym___leave] = ACTIONS(3630), - [anon_sym_not] = ACTIONS(3630), - [anon_sym_compl] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3632), - [anon_sym_PLUS_PLUS] = ACTIONS(3632), - [anon_sym_sizeof] = ACTIONS(3630), - [anon_sym___alignof__] = ACTIONS(3630), - [anon_sym___alignof] = ACTIONS(3630), - [anon_sym__alignof] = ACTIONS(3630), - [anon_sym_alignof] = ACTIONS(3630), - [anon_sym__Alignof] = ACTIONS(3630), - [anon_sym_offsetof] = ACTIONS(3630), - [anon_sym__Generic] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [anon_sym_asm] = ACTIONS(3630), - [anon_sym___asm__] = ACTIONS(3630), - [anon_sym___asm] = ACTIONS(3630), - [sym_number_literal] = ACTIONS(3632), - [anon_sym_L_SQUOTE] = ACTIONS(3632), - [anon_sym_u_SQUOTE] = ACTIONS(3632), - [anon_sym_U_SQUOTE] = ACTIONS(3632), - [anon_sym_u8_SQUOTE] = ACTIONS(3632), - [anon_sym_SQUOTE] = ACTIONS(3632), - [anon_sym_L_DQUOTE] = ACTIONS(3632), - [anon_sym_u_DQUOTE] = ACTIONS(3632), - [anon_sym_U_DQUOTE] = ACTIONS(3632), - [anon_sym_u8_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE] = ACTIONS(3632), - [sym_true] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [anon_sym_NULL] = ACTIONS(3630), - [anon_sym_nullptr] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_export] = ACTIONS(3630), - [anon_sym_module] = ACTIONS(3630), - [anon_sym_import] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_delete] = ACTIONS(3630), - [anon_sym_throw] = ACTIONS(3630), - [anon_sym_namespace] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), - [anon_sym_concept] = ACTIONS(3630), - [anon_sym_co_return] = ACTIONS(3630), - [anon_sym_co_yield] = ACTIONS(3630), - [anon_sym_R_DQUOTE] = ACTIONS(3632), - [anon_sym_LR_DQUOTE] = ACTIONS(3632), - [anon_sym_uR_DQUOTE] = ACTIONS(3632), - [anon_sym_UR_DQUOTE] = ACTIONS(3632), - [anon_sym_u8R_DQUOTE] = ACTIONS(3632), - [anon_sym_co_await] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_requires] = ACTIONS(3630), - [anon_sym_CARET_CARET] = ACTIONS(3632), - [anon_sym_LBRACK_COLON] = ACTIONS(3632), - [sym_this] = ACTIONS(3630), - }, - [STATE(488)] = { - [ts_builtin_sym_end] = ACTIONS(3632), - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_include_token1] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym___attribute] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym___cdecl] = ACTIONS(3630), - [anon_sym___clrcall] = ACTIONS(3630), - [anon_sym___stdcall] = ACTIONS(3630), - [anon_sym___fastcall] = ACTIONS(3630), - [anon_sym___thiscall] = ACTIONS(3630), - [anon_sym___vectorcall] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym__Nonnull] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym__Alignas] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_else] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [anon_sym_case] = ACTIONS(3630), - [anon_sym_default] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [anon_sym_goto] = ACTIONS(3630), - [anon_sym___try] = ACTIONS(3630), - [anon_sym___leave] = ACTIONS(3630), - [anon_sym_not] = ACTIONS(3630), - [anon_sym_compl] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3632), - [anon_sym_PLUS_PLUS] = ACTIONS(3632), - [anon_sym_sizeof] = ACTIONS(3630), - [anon_sym___alignof__] = ACTIONS(3630), - [anon_sym___alignof] = ACTIONS(3630), - [anon_sym__alignof] = ACTIONS(3630), - [anon_sym_alignof] = ACTIONS(3630), - [anon_sym__Alignof] = ACTIONS(3630), - [anon_sym_offsetof] = ACTIONS(3630), - [anon_sym__Generic] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [anon_sym_asm] = ACTIONS(3630), - [anon_sym___asm__] = ACTIONS(3630), - [anon_sym___asm] = ACTIONS(3630), - [sym_number_literal] = ACTIONS(3632), - [anon_sym_L_SQUOTE] = ACTIONS(3632), - [anon_sym_u_SQUOTE] = ACTIONS(3632), - [anon_sym_U_SQUOTE] = ACTIONS(3632), - [anon_sym_u8_SQUOTE] = ACTIONS(3632), - [anon_sym_SQUOTE] = ACTIONS(3632), - [anon_sym_L_DQUOTE] = ACTIONS(3632), - [anon_sym_u_DQUOTE] = ACTIONS(3632), - [anon_sym_U_DQUOTE] = ACTIONS(3632), - [anon_sym_u8_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE] = ACTIONS(3632), - [sym_true] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [anon_sym_NULL] = ACTIONS(3630), - [anon_sym_nullptr] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_export] = ACTIONS(3630), - [anon_sym_module] = ACTIONS(3630), - [anon_sym_import] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_delete] = ACTIONS(3630), - [anon_sym_throw] = ACTIONS(3630), - [anon_sym_namespace] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), - [anon_sym_concept] = ACTIONS(3630), - [anon_sym_co_return] = ACTIONS(3630), - [anon_sym_co_yield] = ACTIONS(3630), - [anon_sym_R_DQUOTE] = ACTIONS(3632), - [anon_sym_LR_DQUOTE] = ACTIONS(3632), - [anon_sym_uR_DQUOTE] = ACTIONS(3632), - [anon_sym_UR_DQUOTE] = ACTIONS(3632), - [anon_sym_u8R_DQUOTE] = ACTIONS(3632), - [anon_sym_co_await] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_requires] = ACTIONS(3630), - [anon_sym_CARET_CARET] = ACTIONS(3632), - [anon_sym_LBRACK_COLON] = ACTIONS(3632), - [sym_this] = ACTIONS(3630), - }, - [STATE(489)] = { - [sym_catch_clause] = STATE(309), - [aux_sym_constructor_try_statement_repeat1] = STATE(309), - [ts_builtin_sym_end] = ACTIONS(3536), - [sym_identifier] = ACTIONS(3534), - [aux_sym_preproc_include_token1] = ACTIONS(3534), - [aux_sym_preproc_def_token1] = ACTIONS(3534), - [aux_sym_preproc_if_token1] = ACTIONS(3534), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3534), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3534), - [sym_preproc_directive] = ACTIONS(3534), - [anon_sym_LPAREN2] = ACTIONS(3536), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_TILDE] = ACTIONS(3536), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_STAR] = ACTIONS(3536), - [anon_sym_AMP_AMP] = ACTIONS(3536), - [anon_sym_AMP] = ACTIONS(3534), - [anon_sym_SEMI] = ACTIONS(3536), - [anon_sym___extension__] = ACTIONS(3534), - [anon_sym_typedef] = ACTIONS(3534), - [anon_sym_virtual] = ACTIONS(3534), - [anon_sym_extern] = ACTIONS(3534), - [anon_sym___attribute__] = ACTIONS(3534), - [anon_sym___attribute] = ACTIONS(3534), - [anon_sym_using] = ACTIONS(3534), - [anon_sym_COLON_COLON] = ACTIONS(3536), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3536), - [anon_sym___declspec] = ACTIONS(3534), - [anon_sym___based] = ACTIONS(3534), - [anon_sym___cdecl] = ACTIONS(3534), - [anon_sym___clrcall] = ACTIONS(3534), - [anon_sym___stdcall] = ACTIONS(3534), - [anon_sym___fastcall] = ACTIONS(3534), - [anon_sym___thiscall] = ACTIONS(3534), - [anon_sym___vectorcall] = ACTIONS(3534), - [anon_sym_LBRACE] = ACTIONS(3536), - [anon_sym_signed] = ACTIONS(3534), - [anon_sym_unsigned] = ACTIONS(3534), - [anon_sym_long] = ACTIONS(3534), - [anon_sym_short] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_static] = ACTIONS(3534), - [anon_sym_register] = ACTIONS(3534), - [anon_sym_inline] = ACTIONS(3534), - [anon_sym___inline] = ACTIONS(3534), - [anon_sym___inline__] = ACTIONS(3534), - [anon_sym___forceinline] = ACTIONS(3534), - [anon_sym_thread_local] = ACTIONS(3534), - [anon_sym___thread] = ACTIONS(3534), - [anon_sym_const] = ACTIONS(3534), - [anon_sym_constexpr] = ACTIONS(3534), - [anon_sym_volatile] = ACTIONS(3534), - [anon_sym_restrict] = ACTIONS(3534), - [anon_sym___restrict__] = ACTIONS(3534), - [anon_sym__Atomic] = ACTIONS(3534), - [anon_sym__Noreturn] = ACTIONS(3534), - [anon_sym_noreturn] = ACTIONS(3534), - [anon_sym__Nonnull] = ACTIONS(3534), - [anon_sym_mutable] = ACTIONS(3534), - [anon_sym_constinit] = ACTIONS(3534), - [anon_sym_consteval] = ACTIONS(3534), - [anon_sym_alignas] = ACTIONS(3534), - [anon_sym__Alignas] = ACTIONS(3534), - [sym_primitive_type] = ACTIONS(3534), - [anon_sym_enum] = ACTIONS(3534), - [anon_sym_class] = ACTIONS(3534), - [anon_sym_struct] = ACTIONS(3534), - [anon_sym_union] = ACTIONS(3534), - [anon_sym_if] = ACTIONS(3534), - [anon_sym_switch] = ACTIONS(3534), - [anon_sym_case] = ACTIONS(3534), - [anon_sym_default] = ACTIONS(3534), - [anon_sym_while] = ACTIONS(3534), - [anon_sym_do] = ACTIONS(3534), - [anon_sym_for] = ACTIONS(3534), - [anon_sym_return] = ACTIONS(3534), - [anon_sym_break] = ACTIONS(3534), - [anon_sym_continue] = ACTIONS(3534), - [anon_sym_goto] = ACTIONS(3534), - [anon_sym_not] = ACTIONS(3534), - [anon_sym_compl] = ACTIONS(3534), - [anon_sym_DASH_DASH] = ACTIONS(3536), - [anon_sym_PLUS_PLUS] = ACTIONS(3536), - [anon_sym_sizeof] = ACTIONS(3534), - [anon_sym___alignof__] = ACTIONS(3534), - [anon_sym___alignof] = ACTIONS(3534), - [anon_sym__alignof] = ACTIONS(3534), - [anon_sym_alignof] = ACTIONS(3534), - [anon_sym__Alignof] = ACTIONS(3534), - [anon_sym_offsetof] = ACTIONS(3534), - [anon_sym__Generic] = ACTIONS(3534), - [anon_sym_typename] = ACTIONS(3534), - [anon_sym_asm] = ACTIONS(3534), - [anon_sym___asm__] = ACTIONS(3534), - [anon_sym___asm] = ACTIONS(3534), - [sym_number_literal] = ACTIONS(3536), - [anon_sym_L_SQUOTE] = ACTIONS(3536), - [anon_sym_u_SQUOTE] = ACTIONS(3536), - [anon_sym_U_SQUOTE] = ACTIONS(3536), - [anon_sym_u8_SQUOTE] = ACTIONS(3536), - [anon_sym_SQUOTE] = ACTIONS(3536), - [anon_sym_L_DQUOTE] = ACTIONS(3536), - [anon_sym_u_DQUOTE] = ACTIONS(3536), - [anon_sym_U_DQUOTE] = ACTIONS(3536), - [anon_sym_u8_DQUOTE] = ACTIONS(3536), - [anon_sym_DQUOTE] = ACTIONS(3536), - [sym_true] = ACTIONS(3534), - [sym_false] = ACTIONS(3534), - [anon_sym_NULL] = ACTIONS(3534), - [anon_sym_nullptr] = ACTIONS(3534), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3534), - [anon_sym_decltype] = ACTIONS(3534), - [anon_sym_explicit] = ACTIONS(3534), - [anon_sym_export] = ACTIONS(3534), - [anon_sym_module] = ACTIONS(3534), - [anon_sym_import] = ACTIONS(3534), - [anon_sym_template] = ACTIONS(3534), - [anon_sym_operator] = ACTIONS(3534), - [anon_sym_try] = ACTIONS(3534), - [anon_sym_delete] = ACTIONS(3534), - [anon_sym_throw] = ACTIONS(3534), - [anon_sym_namespace] = ACTIONS(3534), - [anon_sym_static_assert] = ACTIONS(3534), - [anon_sym_concept] = ACTIONS(3534), - [anon_sym_co_return] = ACTIONS(3534), - [anon_sym_co_yield] = ACTIONS(3534), - [anon_sym_catch] = ACTIONS(3319), - [anon_sym_R_DQUOTE] = ACTIONS(3536), - [anon_sym_LR_DQUOTE] = ACTIONS(3536), - [anon_sym_uR_DQUOTE] = ACTIONS(3536), - [anon_sym_UR_DQUOTE] = ACTIONS(3536), - [anon_sym_u8R_DQUOTE] = ACTIONS(3536), - [anon_sym_co_await] = ACTIONS(3534), - [anon_sym_new] = ACTIONS(3534), - [anon_sym_requires] = ACTIONS(3534), - [anon_sym_CARET_CARET] = ACTIONS(3536), - [anon_sym_LBRACK_COLON] = ACTIONS(3536), - [sym_this] = ACTIONS(3534), - }, - [STATE(490)] = { - [ts_builtin_sym_end] = ACTIONS(3650), - [sym_identifier] = ACTIONS(3648), - [aux_sym_preproc_include_token1] = ACTIONS(3648), - [aux_sym_preproc_def_token1] = ACTIONS(3648), - [aux_sym_preproc_if_token1] = ACTIONS(3648), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3648), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3648), - [sym_preproc_directive] = ACTIONS(3648), - [anon_sym_LPAREN2] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_TILDE] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_AMP_AMP] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3650), - [anon_sym___extension__] = ACTIONS(3648), - [anon_sym_typedef] = ACTIONS(3648), - [anon_sym_virtual] = ACTIONS(3648), - [anon_sym_extern] = ACTIONS(3648), - [anon_sym___attribute__] = ACTIONS(3648), - [anon_sym___attribute] = ACTIONS(3648), - [anon_sym_using] = ACTIONS(3648), - [anon_sym_COLON_COLON] = ACTIONS(3650), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), - [anon_sym___declspec] = ACTIONS(3648), - [anon_sym___based] = ACTIONS(3648), - [anon_sym___cdecl] = ACTIONS(3648), - [anon_sym___clrcall] = ACTIONS(3648), - [anon_sym___stdcall] = ACTIONS(3648), - [anon_sym___fastcall] = ACTIONS(3648), - [anon_sym___thiscall] = ACTIONS(3648), - [anon_sym___vectorcall] = ACTIONS(3648), - [anon_sym_LBRACE] = ACTIONS(3650), - [anon_sym_signed] = ACTIONS(3648), - [anon_sym_unsigned] = ACTIONS(3648), - [anon_sym_long] = ACTIONS(3648), - [anon_sym_short] = ACTIONS(3648), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_static] = ACTIONS(3648), - [anon_sym_register] = ACTIONS(3648), - [anon_sym_inline] = ACTIONS(3648), - [anon_sym___inline] = ACTIONS(3648), - [anon_sym___inline__] = ACTIONS(3648), - [anon_sym___forceinline] = ACTIONS(3648), - [anon_sym_thread_local] = ACTIONS(3648), - [anon_sym___thread] = ACTIONS(3648), - [anon_sym_const] = ACTIONS(3648), - [anon_sym_constexpr] = ACTIONS(3648), - [anon_sym_volatile] = ACTIONS(3648), - [anon_sym_restrict] = ACTIONS(3648), - [anon_sym___restrict__] = ACTIONS(3648), - [anon_sym__Atomic] = ACTIONS(3648), - [anon_sym__Noreturn] = ACTIONS(3648), - [anon_sym_noreturn] = ACTIONS(3648), - [anon_sym__Nonnull] = ACTIONS(3648), - [anon_sym_mutable] = ACTIONS(3648), - [anon_sym_constinit] = ACTIONS(3648), - [anon_sym_consteval] = ACTIONS(3648), - [anon_sym_alignas] = ACTIONS(3648), - [anon_sym__Alignas] = ACTIONS(3648), - [sym_primitive_type] = ACTIONS(3648), - [anon_sym_enum] = ACTIONS(3648), - [anon_sym_class] = ACTIONS(3648), - [anon_sym_struct] = ACTIONS(3648), - [anon_sym_union] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3648), - [anon_sym_else] = ACTIONS(3648), - [anon_sym_switch] = ACTIONS(3648), - [anon_sym_case] = ACTIONS(3648), - [anon_sym_default] = ACTIONS(3648), - [anon_sym_while] = ACTIONS(3648), - [anon_sym_do] = ACTIONS(3648), - [anon_sym_for] = ACTIONS(3648), - [anon_sym_return] = ACTIONS(3648), - [anon_sym_break] = ACTIONS(3648), - [anon_sym_continue] = ACTIONS(3648), - [anon_sym_goto] = ACTIONS(3648), - [anon_sym___try] = ACTIONS(3648), - [anon_sym___leave] = ACTIONS(3648), - [anon_sym_not] = ACTIONS(3648), - [anon_sym_compl] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3650), - [anon_sym_sizeof] = ACTIONS(3648), - [anon_sym___alignof__] = ACTIONS(3648), - [anon_sym___alignof] = ACTIONS(3648), - [anon_sym__alignof] = ACTIONS(3648), - [anon_sym_alignof] = ACTIONS(3648), - [anon_sym__Alignof] = ACTIONS(3648), - [anon_sym_offsetof] = ACTIONS(3648), - [anon_sym__Generic] = ACTIONS(3648), - [anon_sym_typename] = ACTIONS(3648), - [anon_sym_asm] = ACTIONS(3648), - [anon_sym___asm__] = ACTIONS(3648), - [anon_sym___asm] = ACTIONS(3648), - [sym_number_literal] = ACTIONS(3650), - [anon_sym_L_SQUOTE] = ACTIONS(3650), - [anon_sym_u_SQUOTE] = ACTIONS(3650), - [anon_sym_U_SQUOTE] = ACTIONS(3650), - [anon_sym_u8_SQUOTE] = ACTIONS(3650), - [anon_sym_SQUOTE] = ACTIONS(3650), - [anon_sym_L_DQUOTE] = ACTIONS(3650), - [anon_sym_u_DQUOTE] = ACTIONS(3650), - [anon_sym_U_DQUOTE] = ACTIONS(3650), - [anon_sym_u8_DQUOTE] = ACTIONS(3650), - [anon_sym_DQUOTE] = ACTIONS(3650), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [anon_sym_NULL] = ACTIONS(3648), - [anon_sym_nullptr] = ACTIONS(3648), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3648), - [anon_sym_decltype] = ACTIONS(3648), - [anon_sym_explicit] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3648), - [anon_sym_module] = ACTIONS(3648), - [anon_sym_import] = ACTIONS(3648), - [anon_sym_template] = ACTIONS(3648), - [anon_sym_operator] = ACTIONS(3648), - [anon_sym_try] = ACTIONS(3648), - [anon_sym_delete] = ACTIONS(3648), - [anon_sym_throw] = ACTIONS(3648), - [anon_sym_namespace] = ACTIONS(3648), - [anon_sym_static_assert] = ACTIONS(3648), - [anon_sym_concept] = ACTIONS(3648), - [anon_sym_co_return] = ACTIONS(3648), - [anon_sym_co_yield] = ACTIONS(3648), - [anon_sym_R_DQUOTE] = ACTIONS(3650), - [anon_sym_LR_DQUOTE] = ACTIONS(3650), - [anon_sym_uR_DQUOTE] = ACTIONS(3650), - [anon_sym_UR_DQUOTE] = ACTIONS(3650), - [anon_sym_u8R_DQUOTE] = ACTIONS(3650), - [anon_sym_co_await] = ACTIONS(3648), - [anon_sym_new] = ACTIONS(3648), - [anon_sym_requires] = ACTIONS(3648), - [anon_sym_CARET_CARET] = ACTIONS(3650), - [anon_sym_LBRACK_COLON] = ACTIONS(3650), - [sym_this] = ACTIONS(3648), - }, - [STATE(491)] = { - [ts_builtin_sym_end] = ACTIONS(3674), - [sym_identifier] = ACTIONS(3672), - [aux_sym_preproc_include_token1] = ACTIONS(3672), - [aux_sym_preproc_def_token1] = ACTIONS(3672), - [aux_sym_preproc_if_token1] = ACTIONS(3672), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3672), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3672), - [sym_preproc_directive] = ACTIONS(3672), - [anon_sym_LPAREN2] = ACTIONS(3674), - [anon_sym_BANG] = ACTIONS(3674), - [anon_sym_TILDE] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_STAR] = ACTIONS(3674), - [anon_sym_AMP_AMP] = ACTIONS(3674), - [anon_sym_AMP] = ACTIONS(3672), - [anon_sym_SEMI] = ACTIONS(3674), - [anon_sym___extension__] = ACTIONS(3672), - [anon_sym_typedef] = ACTIONS(3672), - [anon_sym_virtual] = ACTIONS(3672), - [anon_sym_extern] = ACTIONS(3672), - [anon_sym___attribute__] = ACTIONS(3672), - [anon_sym___attribute] = ACTIONS(3672), - [anon_sym_using] = ACTIONS(3672), - [anon_sym_COLON_COLON] = ACTIONS(3674), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3674), - [anon_sym___declspec] = ACTIONS(3672), - [anon_sym___based] = ACTIONS(3672), - [anon_sym___cdecl] = ACTIONS(3672), - [anon_sym___clrcall] = ACTIONS(3672), - [anon_sym___stdcall] = ACTIONS(3672), - [anon_sym___fastcall] = ACTIONS(3672), - [anon_sym___thiscall] = ACTIONS(3672), - [anon_sym___vectorcall] = ACTIONS(3672), - [anon_sym_LBRACE] = ACTIONS(3674), - [anon_sym_signed] = ACTIONS(3672), - [anon_sym_unsigned] = ACTIONS(3672), - [anon_sym_long] = ACTIONS(3672), - [anon_sym_short] = ACTIONS(3672), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_static] = ACTIONS(3672), - [anon_sym_register] = ACTIONS(3672), - [anon_sym_inline] = ACTIONS(3672), - [anon_sym___inline] = ACTIONS(3672), - [anon_sym___inline__] = ACTIONS(3672), - [anon_sym___forceinline] = ACTIONS(3672), - [anon_sym_thread_local] = ACTIONS(3672), - [anon_sym___thread] = ACTIONS(3672), - [anon_sym_const] = ACTIONS(3672), - [anon_sym_constexpr] = ACTIONS(3672), - [anon_sym_volatile] = ACTIONS(3672), - [anon_sym_restrict] = ACTIONS(3672), - [anon_sym___restrict__] = ACTIONS(3672), - [anon_sym__Atomic] = ACTIONS(3672), - [anon_sym__Noreturn] = ACTIONS(3672), - [anon_sym_noreturn] = ACTIONS(3672), - [anon_sym__Nonnull] = ACTIONS(3672), - [anon_sym_mutable] = ACTIONS(3672), - [anon_sym_constinit] = ACTIONS(3672), - [anon_sym_consteval] = ACTIONS(3672), - [anon_sym_alignas] = ACTIONS(3672), - [anon_sym__Alignas] = ACTIONS(3672), - [sym_primitive_type] = ACTIONS(3672), - [anon_sym_enum] = ACTIONS(3672), - [anon_sym_class] = ACTIONS(3672), - [anon_sym_struct] = ACTIONS(3672), - [anon_sym_union] = ACTIONS(3672), - [anon_sym_if] = ACTIONS(3672), - [anon_sym_else] = ACTIONS(3672), - [anon_sym_switch] = ACTIONS(3672), - [anon_sym_case] = ACTIONS(3672), - [anon_sym_default] = ACTIONS(3672), - [anon_sym_while] = ACTIONS(3672), - [anon_sym_do] = ACTIONS(3672), - [anon_sym_for] = ACTIONS(3672), - [anon_sym_return] = ACTIONS(3672), - [anon_sym_break] = ACTIONS(3672), - [anon_sym_continue] = ACTIONS(3672), - [anon_sym_goto] = ACTIONS(3672), - [anon_sym___try] = ACTIONS(3672), - [anon_sym___leave] = ACTIONS(3672), - [anon_sym_not] = ACTIONS(3672), - [anon_sym_compl] = ACTIONS(3672), - [anon_sym_DASH_DASH] = ACTIONS(3674), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_sizeof] = ACTIONS(3672), - [anon_sym___alignof__] = ACTIONS(3672), - [anon_sym___alignof] = ACTIONS(3672), - [anon_sym__alignof] = ACTIONS(3672), - [anon_sym_alignof] = ACTIONS(3672), - [anon_sym__Alignof] = ACTIONS(3672), - [anon_sym_offsetof] = ACTIONS(3672), - [anon_sym__Generic] = ACTIONS(3672), - [anon_sym_typename] = ACTIONS(3672), - [anon_sym_asm] = ACTIONS(3672), - [anon_sym___asm__] = ACTIONS(3672), - [anon_sym___asm] = ACTIONS(3672), - [sym_number_literal] = ACTIONS(3674), - [anon_sym_L_SQUOTE] = ACTIONS(3674), - [anon_sym_u_SQUOTE] = ACTIONS(3674), - [anon_sym_U_SQUOTE] = ACTIONS(3674), - [anon_sym_u8_SQUOTE] = ACTIONS(3674), - [anon_sym_SQUOTE] = ACTIONS(3674), - [anon_sym_L_DQUOTE] = ACTIONS(3674), - [anon_sym_u_DQUOTE] = ACTIONS(3674), - [anon_sym_U_DQUOTE] = ACTIONS(3674), - [anon_sym_u8_DQUOTE] = ACTIONS(3674), - [anon_sym_DQUOTE] = ACTIONS(3674), - [sym_true] = ACTIONS(3672), - [sym_false] = ACTIONS(3672), - [anon_sym_NULL] = ACTIONS(3672), - [anon_sym_nullptr] = ACTIONS(3672), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3672), - [anon_sym_decltype] = ACTIONS(3672), - [anon_sym_explicit] = ACTIONS(3672), - [anon_sym_export] = ACTIONS(3672), - [anon_sym_module] = ACTIONS(3672), - [anon_sym_import] = ACTIONS(3672), - [anon_sym_template] = ACTIONS(3672), - [anon_sym_operator] = ACTIONS(3672), - [anon_sym_try] = ACTIONS(3672), - [anon_sym_delete] = ACTIONS(3672), - [anon_sym_throw] = ACTIONS(3672), - [anon_sym_namespace] = ACTIONS(3672), - [anon_sym_static_assert] = ACTIONS(3672), - [anon_sym_concept] = ACTIONS(3672), - [anon_sym_co_return] = ACTIONS(3672), - [anon_sym_co_yield] = ACTIONS(3672), - [anon_sym_R_DQUOTE] = ACTIONS(3674), - [anon_sym_LR_DQUOTE] = ACTIONS(3674), - [anon_sym_uR_DQUOTE] = ACTIONS(3674), - [anon_sym_UR_DQUOTE] = ACTIONS(3674), - [anon_sym_u8R_DQUOTE] = ACTIONS(3674), - [anon_sym_co_await] = ACTIONS(3672), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_requires] = ACTIONS(3672), - [anon_sym_CARET_CARET] = ACTIONS(3674), - [anon_sym_LBRACK_COLON] = ACTIONS(3674), - [sym_this] = ACTIONS(3672), - }, - [STATE(492)] = { - [ts_builtin_sym_end] = ACTIONS(3678), - [sym_identifier] = ACTIONS(3676), - [aux_sym_preproc_include_token1] = ACTIONS(3676), - [aux_sym_preproc_def_token1] = ACTIONS(3676), - [aux_sym_preproc_if_token1] = ACTIONS(3676), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3676), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3676), - [sym_preproc_directive] = ACTIONS(3676), - [anon_sym_LPAREN2] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_TILDE] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_STAR] = ACTIONS(3678), - [anon_sym_AMP_AMP] = ACTIONS(3678), - [anon_sym_AMP] = ACTIONS(3676), - [anon_sym_SEMI] = ACTIONS(3678), - [anon_sym___extension__] = ACTIONS(3676), - [anon_sym_typedef] = ACTIONS(3676), - [anon_sym_virtual] = ACTIONS(3676), - [anon_sym_extern] = ACTIONS(3676), - [anon_sym___attribute__] = ACTIONS(3676), - [anon_sym___attribute] = ACTIONS(3676), - [anon_sym_using] = ACTIONS(3676), - [anon_sym_COLON_COLON] = ACTIONS(3678), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3678), - [anon_sym___declspec] = ACTIONS(3676), - [anon_sym___based] = ACTIONS(3676), - [anon_sym___cdecl] = ACTIONS(3676), - [anon_sym___clrcall] = ACTIONS(3676), - [anon_sym___stdcall] = ACTIONS(3676), - [anon_sym___fastcall] = ACTIONS(3676), - [anon_sym___thiscall] = ACTIONS(3676), - [anon_sym___vectorcall] = ACTIONS(3676), - [anon_sym_LBRACE] = ACTIONS(3678), - [anon_sym_signed] = ACTIONS(3676), - [anon_sym_unsigned] = ACTIONS(3676), - [anon_sym_long] = ACTIONS(3676), - [anon_sym_short] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3676), - [anon_sym_static] = ACTIONS(3676), - [anon_sym_register] = ACTIONS(3676), - [anon_sym_inline] = ACTIONS(3676), - [anon_sym___inline] = ACTIONS(3676), - [anon_sym___inline__] = ACTIONS(3676), - [anon_sym___forceinline] = ACTIONS(3676), - [anon_sym_thread_local] = ACTIONS(3676), - [anon_sym___thread] = ACTIONS(3676), - [anon_sym_const] = ACTIONS(3676), - [anon_sym_constexpr] = ACTIONS(3676), - [anon_sym_volatile] = ACTIONS(3676), - [anon_sym_restrict] = ACTIONS(3676), - [anon_sym___restrict__] = ACTIONS(3676), - [anon_sym__Atomic] = ACTIONS(3676), - [anon_sym__Noreturn] = ACTIONS(3676), - [anon_sym_noreturn] = ACTIONS(3676), - [anon_sym__Nonnull] = ACTIONS(3676), - [anon_sym_mutable] = ACTIONS(3676), - [anon_sym_constinit] = ACTIONS(3676), - [anon_sym_consteval] = ACTIONS(3676), - [anon_sym_alignas] = ACTIONS(3676), - [anon_sym__Alignas] = ACTIONS(3676), - [sym_primitive_type] = ACTIONS(3676), - [anon_sym_enum] = ACTIONS(3676), - [anon_sym_class] = ACTIONS(3676), - [anon_sym_struct] = ACTIONS(3676), - [anon_sym_union] = ACTIONS(3676), - [anon_sym_if] = ACTIONS(3676), - [anon_sym_else] = ACTIONS(3676), - [anon_sym_switch] = ACTIONS(3676), - [anon_sym_case] = ACTIONS(3676), - [anon_sym_default] = ACTIONS(3676), - [anon_sym_while] = ACTIONS(3676), - [anon_sym_do] = ACTIONS(3676), - [anon_sym_for] = ACTIONS(3676), - [anon_sym_return] = ACTIONS(3676), - [anon_sym_break] = ACTIONS(3676), - [anon_sym_continue] = ACTIONS(3676), - [anon_sym_goto] = ACTIONS(3676), - [anon_sym___try] = ACTIONS(3676), - [anon_sym___leave] = ACTIONS(3676), - [anon_sym_not] = ACTIONS(3676), - [anon_sym_compl] = ACTIONS(3676), - [anon_sym_DASH_DASH] = ACTIONS(3678), - [anon_sym_PLUS_PLUS] = ACTIONS(3678), - [anon_sym_sizeof] = ACTIONS(3676), - [anon_sym___alignof__] = ACTIONS(3676), - [anon_sym___alignof] = ACTIONS(3676), - [anon_sym__alignof] = ACTIONS(3676), - [anon_sym_alignof] = ACTIONS(3676), - [anon_sym__Alignof] = ACTIONS(3676), - [anon_sym_offsetof] = ACTIONS(3676), - [anon_sym__Generic] = ACTIONS(3676), - [anon_sym_typename] = ACTIONS(3676), - [anon_sym_asm] = ACTIONS(3676), - [anon_sym___asm__] = ACTIONS(3676), - [anon_sym___asm] = ACTIONS(3676), - [sym_number_literal] = ACTIONS(3678), - [anon_sym_L_SQUOTE] = ACTIONS(3678), - [anon_sym_u_SQUOTE] = ACTIONS(3678), - [anon_sym_U_SQUOTE] = ACTIONS(3678), - [anon_sym_u8_SQUOTE] = ACTIONS(3678), - [anon_sym_SQUOTE] = ACTIONS(3678), - [anon_sym_L_DQUOTE] = ACTIONS(3678), - [anon_sym_u_DQUOTE] = ACTIONS(3678), - [anon_sym_U_DQUOTE] = ACTIONS(3678), - [anon_sym_u8_DQUOTE] = ACTIONS(3678), - [anon_sym_DQUOTE] = ACTIONS(3678), - [sym_true] = ACTIONS(3676), - [sym_false] = ACTIONS(3676), - [anon_sym_NULL] = ACTIONS(3676), - [anon_sym_nullptr] = ACTIONS(3676), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3676), - [anon_sym_decltype] = ACTIONS(3676), - [anon_sym_explicit] = ACTIONS(3676), - [anon_sym_export] = ACTIONS(3676), - [anon_sym_module] = ACTIONS(3676), - [anon_sym_import] = ACTIONS(3676), - [anon_sym_template] = ACTIONS(3676), - [anon_sym_operator] = ACTIONS(3676), - [anon_sym_try] = ACTIONS(3676), - [anon_sym_delete] = ACTIONS(3676), - [anon_sym_throw] = ACTIONS(3676), - [anon_sym_namespace] = ACTIONS(3676), - [anon_sym_static_assert] = ACTIONS(3676), - [anon_sym_concept] = ACTIONS(3676), - [anon_sym_co_return] = ACTIONS(3676), - [anon_sym_co_yield] = ACTIONS(3676), - [anon_sym_R_DQUOTE] = ACTIONS(3678), - [anon_sym_LR_DQUOTE] = ACTIONS(3678), - [anon_sym_uR_DQUOTE] = ACTIONS(3678), - [anon_sym_UR_DQUOTE] = ACTIONS(3678), - [anon_sym_u8R_DQUOTE] = ACTIONS(3678), - [anon_sym_co_await] = ACTIONS(3676), - [anon_sym_new] = ACTIONS(3676), - [anon_sym_requires] = ACTIONS(3676), - [anon_sym_CARET_CARET] = ACTIONS(3678), - [anon_sym_LBRACK_COLON] = ACTIONS(3678), - [sym_this] = ACTIONS(3676), - }, - [STATE(493)] = { - [ts_builtin_sym_end] = ACTIONS(3710), - [sym_identifier] = ACTIONS(3708), - [aux_sym_preproc_include_token1] = ACTIONS(3708), - [aux_sym_preproc_def_token1] = ACTIONS(3708), - [aux_sym_preproc_if_token1] = ACTIONS(3708), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3708), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3708), - [sym_preproc_directive] = ACTIONS(3708), - [anon_sym_LPAREN2] = ACTIONS(3710), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3708), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3708), - [anon_sym_SEMI] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3708), - [anon_sym_typedef] = ACTIONS(3708), - [anon_sym_virtual] = ACTIONS(3708), - [anon_sym_extern] = ACTIONS(3708), - [anon_sym___attribute__] = ACTIONS(3708), - [anon_sym___attribute] = ACTIONS(3708), - [anon_sym_using] = ACTIONS(3708), - [anon_sym_COLON_COLON] = ACTIONS(3710), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3710), - [anon_sym___declspec] = ACTIONS(3708), - [anon_sym___based] = ACTIONS(3708), - [anon_sym___cdecl] = ACTIONS(3708), - [anon_sym___clrcall] = ACTIONS(3708), - [anon_sym___stdcall] = ACTIONS(3708), - [anon_sym___fastcall] = ACTIONS(3708), - [anon_sym___thiscall] = ACTIONS(3708), - [anon_sym___vectorcall] = ACTIONS(3708), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_signed] = ACTIONS(3708), - [anon_sym_unsigned] = ACTIONS(3708), - [anon_sym_long] = ACTIONS(3708), - [anon_sym_short] = ACTIONS(3708), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_static] = ACTIONS(3708), - [anon_sym_register] = ACTIONS(3708), - [anon_sym_inline] = ACTIONS(3708), - [anon_sym___inline] = ACTIONS(3708), - [anon_sym___inline__] = ACTIONS(3708), - [anon_sym___forceinline] = ACTIONS(3708), - [anon_sym_thread_local] = ACTIONS(3708), - [anon_sym___thread] = ACTIONS(3708), - [anon_sym_const] = ACTIONS(3708), - [anon_sym_constexpr] = ACTIONS(3708), - [anon_sym_volatile] = ACTIONS(3708), - [anon_sym_restrict] = ACTIONS(3708), - [anon_sym___restrict__] = ACTIONS(3708), - [anon_sym__Atomic] = ACTIONS(3708), - [anon_sym__Noreturn] = ACTIONS(3708), - [anon_sym_noreturn] = ACTIONS(3708), - [anon_sym__Nonnull] = ACTIONS(3708), - [anon_sym_mutable] = ACTIONS(3708), - [anon_sym_constinit] = ACTIONS(3708), - [anon_sym_consteval] = ACTIONS(3708), - [anon_sym_alignas] = ACTIONS(3708), - [anon_sym__Alignas] = ACTIONS(3708), - [sym_primitive_type] = ACTIONS(3708), - [anon_sym_enum] = ACTIONS(3708), - [anon_sym_class] = ACTIONS(3708), - [anon_sym_struct] = ACTIONS(3708), - [anon_sym_union] = ACTIONS(3708), - [anon_sym_if] = ACTIONS(3708), - [anon_sym_else] = ACTIONS(3708), - [anon_sym_switch] = ACTIONS(3708), - [anon_sym_case] = ACTIONS(3708), - [anon_sym_default] = ACTIONS(3708), - [anon_sym_while] = ACTIONS(3708), - [anon_sym_do] = ACTIONS(3708), - [anon_sym_for] = ACTIONS(3708), - [anon_sym_return] = ACTIONS(3708), - [anon_sym_break] = ACTIONS(3708), - [anon_sym_continue] = ACTIONS(3708), - [anon_sym_goto] = ACTIONS(3708), - [anon_sym___try] = ACTIONS(3708), - [anon_sym___leave] = ACTIONS(3708), - [anon_sym_not] = ACTIONS(3708), - [anon_sym_compl] = ACTIONS(3708), - [anon_sym_DASH_DASH] = ACTIONS(3710), - [anon_sym_PLUS_PLUS] = ACTIONS(3710), - [anon_sym_sizeof] = ACTIONS(3708), - [anon_sym___alignof__] = ACTIONS(3708), - [anon_sym___alignof] = ACTIONS(3708), - [anon_sym__alignof] = ACTIONS(3708), - [anon_sym_alignof] = ACTIONS(3708), - [anon_sym__Alignof] = ACTIONS(3708), - [anon_sym_offsetof] = ACTIONS(3708), - [anon_sym__Generic] = ACTIONS(3708), - [anon_sym_typename] = ACTIONS(3708), - [anon_sym_asm] = ACTIONS(3708), - [anon_sym___asm__] = ACTIONS(3708), - [anon_sym___asm] = ACTIONS(3708), - [sym_number_literal] = ACTIONS(3710), - [anon_sym_L_SQUOTE] = ACTIONS(3710), - [anon_sym_u_SQUOTE] = ACTIONS(3710), - [anon_sym_U_SQUOTE] = ACTIONS(3710), - [anon_sym_u8_SQUOTE] = ACTIONS(3710), - [anon_sym_SQUOTE] = ACTIONS(3710), - [anon_sym_L_DQUOTE] = ACTIONS(3710), - [anon_sym_u_DQUOTE] = ACTIONS(3710), - [anon_sym_U_DQUOTE] = ACTIONS(3710), - [anon_sym_u8_DQUOTE] = ACTIONS(3710), - [anon_sym_DQUOTE] = ACTIONS(3710), - [sym_true] = ACTIONS(3708), - [sym_false] = ACTIONS(3708), - [anon_sym_NULL] = ACTIONS(3708), - [anon_sym_nullptr] = ACTIONS(3708), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3708), - [anon_sym_decltype] = ACTIONS(3708), - [anon_sym_explicit] = ACTIONS(3708), - [anon_sym_export] = ACTIONS(3708), - [anon_sym_module] = ACTIONS(3708), - [anon_sym_import] = ACTIONS(3708), - [anon_sym_template] = ACTIONS(3708), - [anon_sym_operator] = ACTIONS(3708), - [anon_sym_try] = ACTIONS(3708), - [anon_sym_delete] = ACTIONS(3708), - [anon_sym_throw] = ACTIONS(3708), - [anon_sym_namespace] = ACTIONS(3708), - [anon_sym_static_assert] = ACTIONS(3708), - [anon_sym_concept] = ACTIONS(3708), - [anon_sym_co_return] = ACTIONS(3708), - [anon_sym_co_yield] = ACTIONS(3708), - [anon_sym_R_DQUOTE] = ACTIONS(3710), - [anon_sym_LR_DQUOTE] = ACTIONS(3710), - [anon_sym_uR_DQUOTE] = ACTIONS(3710), - [anon_sym_UR_DQUOTE] = ACTIONS(3710), - [anon_sym_u8R_DQUOTE] = ACTIONS(3710), - [anon_sym_co_await] = ACTIONS(3708), - [anon_sym_new] = ACTIONS(3708), - [anon_sym_requires] = ACTIONS(3708), - [anon_sym_CARET_CARET] = ACTIONS(3710), - [anon_sym_LBRACK_COLON] = ACTIONS(3710), - [sym_this] = ACTIONS(3708), - }, - [STATE(494)] = { - [ts_builtin_sym_end] = ACTIONS(3718), - [sym_identifier] = ACTIONS(3716), - [aux_sym_preproc_include_token1] = ACTIONS(3716), - [aux_sym_preproc_def_token1] = ACTIONS(3716), - [aux_sym_preproc_if_token1] = ACTIONS(3716), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3716), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3716), - [sym_preproc_directive] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3718), - [anon_sym_BANG] = ACTIONS(3718), - [anon_sym_TILDE] = ACTIONS(3718), - [anon_sym_DASH] = ACTIONS(3716), - [anon_sym_PLUS] = ACTIONS(3716), - [anon_sym_STAR] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_AMP] = ACTIONS(3716), - [anon_sym_SEMI] = ACTIONS(3718), - [anon_sym___extension__] = ACTIONS(3716), - [anon_sym_typedef] = ACTIONS(3716), - [anon_sym_virtual] = ACTIONS(3716), - [anon_sym_extern] = ACTIONS(3716), - [anon_sym___attribute__] = ACTIONS(3716), - [anon_sym___attribute] = ACTIONS(3716), - [anon_sym_using] = ACTIONS(3716), - [anon_sym_COLON_COLON] = ACTIONS(3718), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3718), - [anon_sym___declspec] = ACTIONS(3716), - [anon_sym___based] = ACTIONS(3716), - [anon_sym___cdecl] = ACTIONS(3716), - [anon_sym___clrcall] = ACTIONS(3716), - [anon_sym___stdcall] = ACTIONS(3716), - [anon_sym___fastcall] = ACTIONS(3716), - [anon_sym___thiscall] = ACTIONS(3716), - [anon_sym___vectorcall] = ACTIONS(3716), - [anon_sym_LBRACE] = ACTIONS(3718), - [anon_sym_signed] = ACTIONS(3716), - [anon_sym_unsigned] = ACTIONS(3716), - [anon_sym_long] = ACTIONS(3716), - [anon_sym_short] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(3716), - [anon_sym_static] = ACTIONS(3716), - [anon_sym_register] = ACTIONS(3716), - [anon_sym_inline] = ACTIONS(3716), - [anon_sym___inline] = ACTIONS(3716), - [anon_sym___inline__] = ACTIONS(3716), - [anon_sym___forceinline] = ACTIONS(3716), - [anon_sym_thread_local] = ACTIONS(3716), - [anon_sym___thread] = ACTIONS(3716), - [anon_sym_const] = ACTIONS(3716), - [anon_sym_constexpr] = ACTIONS(3716), - [anon_sym_volatile] = ACTIONS(3716), - [anon_sym_restrict] = ACTIONS(3716), - [anon_sym___restrict__] = ACTIONS(3716), - [anon_sym__Atomic] = ACTIONS(3716), - [anon_sym__Noreturn] = ACTIONS(3716), - [anon_sym_noreturn] = ACTIONS(3716), - [anon_sym__Nonnull] = ACTIONS(3716), - [anon_sym_mutable] = ACTIONS(3716), - [anon_sym_constinit] = ACTIONS(3716), - [anon_sym_consteval] = ACTIONS(3716), - [anon_sym_alignas] = ACTIONS(3716), - [anon_sym__Alignas] = ACTIONS(3716), - [sym_primitive_type] = ACTIONS(3716), - [anon_sym_enum] = ACTIONS(3716), - [anon_sym_class] = ACTIONS(3716), - [anon_sym_struct] = ACTIONS(3716), - [anon_sym_union] = ACTIONS(3716), - [anon_sym_if] = ACTIONS(3716), - [anon_sym_else] = ACTIONS(3716), - [anon_sym_switch] = ACTIONS(3716), - [anon_sym_case] = ACTIONS(3716), - [anon_sym_default] = ACTIONS(3716), - [anon_sym_while] = ACTIONS(3716), - [anon_sym_do] = ACTIONS(3716), - [anon_sym_for] = ACTIONS(3716), - [anon_sym_return] = ACTIONS(3716), - [anon_sym_break] = ACTIONS(3716), - [anon_sym_continue] = ACTIONS(3716), - [anon_sym_goto] = ACTIONS(3716), - [anon_sym___try] = ACTIONS(3716), - [anon_sym___leave] = ACTIONS(3716), - [anon_sym_not] = ACTIONS(3716), - [anon_sym_compl] = ACTIONS(3716), - [anon_sym_DASH_DASH] = ACTIONS(3718), - [anon_sym_PLUS_PLUS] = ACTIONS(3718), - [anon_sym_sizeof] = ACTIONS(3716), - [anon_sym___alignof__] = ACTIONS(3716), - [anon_sym___alignof] = ACTIONS(3716), - [anon_sym__alignof] = ACTIONS(3716), - [anon_sym_alignof] = ACTIONS(3716), - [anon_sym__Alignof] = ACTIONS(3716), - [anon_sym_offsetof] = ACTIONS(3716), - [anon_sym__Generic] = ACTIONS(3716), - [anon_sym_typename] = ACTIONS(3716), - [anon_sym_asm] = ACTIONS(3716), - [anon_sym___asm__] = ACTIONS(3716), - [anon_sym___asm] = ACTIONS(3716), - [sym_number_literal] = ACTIONS(3718), - [anon_sym_L_SQUOTE] = ACTIONS(3718), - [anon_sym_u_SQUOTE] = ACTIONS(3718), - [anon_sym_U_SQUOTE] = ACTIONS(3718), - [anon_sym_u8_SQUOTE] = ACTIONS(3718), - [anon_sym_SQUOTE] = ACTIONS(3718), - [anon_sym_L_DQUOTE] = ACTIONS(3718), - [anon_sym_u_DQUOTE] = ACTIONS(3718), - [anon_sym_U_DQUOTE] = ACTIONS(3718), - [anon_sym_u8_DQUOTE] = ACTIONS(3718), - [anon_sym_DQUOTE] = ACTIONS(3718), - [sym_true] = ACTIONS(3716), - [sym_false] = ACTIONS(3716), - [anon_sym_NULL] = ACTIONS(3716), - [anon_sym_nullptr] = ACTIONS(3716), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3716), - [anon_sym_decltype] = ACTIONS(3716), - [anon_sym_explicit] = ACTIONS(3716), - [anon_sym_export] = ACTIONS(3716), - [anon_sym_module] = ACTIONS(3716), - [anon_sym_import] = ACTIONS(3716), - [anon_sym_template] = ACTIONS(3716), - [anon_sym_operator] = ACTIONS(3716), - [anon_sym_try] = ACTIONS(3716), - [anon_sym_delete] = ACTIONS(3716), - [anon_sym_throw] = ACTIONS(3716), - [anon_sym_namespace] = ACTIONS(3716), - [anon_sym_static_assert] = ACTIONS(3716), - [anon_sym_concept] = ACTIONS(3716), - [anon_sym_co_return] = ACTIONS(3716), - [anon_sym_co_yield] = ACTIONS(3716), - [anon_sym_R_DQUOTE] = ACTIONS(3718), - [anon_sym_LR_DQUOTE] = ACTIONS(3718), - [anon_sym_uR_DQUOTE] = ACTIONS(3718), - [anon_sym_UR_DQUOTE] = ACTIONS(3718), - [anon_sym_u8R_DQUOTE] = ACTIONS(3718), - [anon_sym_co_await] = ACTIONS(3716), - [anon_sym_new] = ACTIONS(3716), - [anon_sym_requires] = ACTIONS(3716), - [anon_sym_CARET_CARET] = ACTIONS(3718), - [anon_sym_LBRACK_COLON] = ACTIONS(3718), - [sym_this] = ACTIONS(3716), - }, - [STATE(495)] = { - [ts_builtin_sym_end] = ACTIONS(2910), - [sym_identifier] = ACTIONS(2905), - [aux_sym_preproc_include_token1] = ACTIONS(2905), - [aux_sym_preproc_def_token1] = ACTIONS(2905), - [aux_sym_preproc_if_token1] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2905), - [sym_preproc_directive] = ACTIONS(2905), - [anon_sym_LPAREN2] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2910), - [anon_sym_AMP_AMP] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2910), - [anon_sym___extension__] = ACTIONS(2905), - [anon_sym_typedef] = ACTIONS(2905), - [anon_sym_virtual] = ACTIONS(2905), - [anon_sym_extern] = ACTIONS(2905), - [anon_sym___attribute__] = ACTIONS(2905), - [anon_sym___attribute] = ACTIONS(2905), - [anon_sym_using] = ACTIONS(2905), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2910), - [anon_sym___declspec] = ACTIONS(2905), - [anon_sym___based] = ACTIONS(2905), - [anon_sym___cdecl] = ACTIONS(2905), - [anon_sym___clrcall] = ACTIONS(2905), - [anon_sym___stdcall] = ACTIONS(2905), - [anon_sym___fastcall] = ACTIONS(2905), - [anon_sym___thiscall] = ACTIONS(2905), - [anon_sym___vectorcall] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2910), - [anon_sym_signed] = ACTIONS(2905), - [anon_sym_unsigned] = ACTIONS(2905), - [anon_sym_long] = ACTIONS(2905), - [anon_sym_short] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_register] = ACTIONS(2905), - [anon_sym_inline] = ACTIONS(2905), - [anon_sym___inline] = ACTIONS(2905), - [anon_sym___inline__] = ACTIONS(2905), - [anon_sym___forceinline] = ACTIONS(2905), - [anon_sym_thread_local] = ACTIONS(2905), - [anon_sym___thread] = ACTIONS(2905), - [anon_sym_const] = ACTIONS(2905), - [anon_sym_constexpr] = ACTIONS(2905), - [anon_sym_volatile] = ACTIONS(2905), - [anon_sym_restrict] = ACTIONS(2905), - [anon_sym___restrict__] = ACTIONS(2905), - [anon_sym__Atomic] = ACTIONS(2905), - [anon_sym__Noreturn] = ACTIONS(2905), - [anon_sym_noreturn] = ACTIONS(2905), - [anon_sym__Nonnull] = ACTIONS(2905), - [anon_sym_mutable] = ACTIONS(2905), - [anon_sym_constinit] = ACTIONS(2905), - [anon_sym_consteval] = ACTIONS(2905), - [anon_sym_alignas] = ACTIONS(2905), - [anon_sym__Alignas] = ACTIONS(2905), - [sym_primitive_type] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2905), - [anon_sym_class] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2905), - [anon_sym_union] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2905), - [anon_sym_else] = ACTIONS(2905), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2905), - [anon_sym_default] = ACTIONS(2905), - [anon_sym_while] = ACTIONS(2905), - [anon_sym_do] = ACTIONS(2905), - [anon_sym_for] = ACTIONS(2905), - [anon_sym_return] = ACTIONS(2905), - [anon_sym_break] = ACTIONS(2905), - [anon_sym_continue] = ACTIONS(2905), - [anon_sym_goto] = ACTIONS(2905), - [anon_sym___try] = ACTIONS(2905), - [anon_sym___leave] = ACTIONS(2905), - [anon_sym_not] = ACTIONS(2905), - [anon_sym_compl] = ACTIONS(2905), - [anon_sym_DASH_DASH] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2910), - [anon_sym_sizeof] = ACTIONS(2905), - [anon_sym___alignof__] = ACTIONS(2905), - [anon_sym___alignof] = ACTIONS(2905), - [anon_sym__alignof] = ACTIONS(2905), - [anon_sym_alignof] = ACTIONS(2905), - [anon_sym__Alignof] = ACTIONS(2905), - [anon_sym_offsetof] = ACTIONS(2905), - [anon_sym__Generic] = ACTIONS(2905), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_asm] = ACTIONS(2905), - [anon_sym___asm__] = ACTIONS(2905), - [anon_sym___asm] = ACTIONS(2905), - [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(2905), - [sym_false] = ACTIONS(2905), - [anon_sym_NULL] = ACTIONS(2905), - [anon_sym_nullptr] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2905), - [anon_sym_decltype] = ACTIONS(2905), - [anon_sym_explicit] = ACTIONS(2905), - [anon_sym_export] = ACTIONS(2905), - [anon_sym_module] = ACTIONS(2905), - [anon_sym_import] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(2905), - [anon_sym_operator] = ACTIONS(2905), - [anon_sym_try] = ACTIONS(2905), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_throw] = ACTIONS(2905), - [anon_sym_namespace] = ACTIONS(2905), - [anon_sym_static_assert] = ACTIONS(2905), - [anon_sym_concept] = ACTIONS(2905), - [anon_sym_co_return] = ACTIONS(2905), - [anon_sym_co_yield] = ACTIONS(2905), - [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(2905), - [anon_sym_new] = ACTIONS(2905), - [anon_sym_requires] = ACTIONS(2905), - [anon_sym_CARET_CARET] = ACTIONS(2910), - [anon_sym_LBRACK_COLON] = ACTIONS(2910), - [sym_this] = ACTIONS(2905), - }, - [STATE(496)] = { - [ts_builtin_sym_end] = ACTIONS(3628), - [sym_identifier] = ACTIONS(3626), - [aux_sym_preproc_include_token1] = ACTIONS(3626), - [aux_sym_preproc_def_token1] = ACTIONS(3626), - [aux_sym_preproc_if_token1] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), - [sym_preproc_directive] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3628), - [anon_sym_BANG] = ACTIONS(3628), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym___extension__] = ACTIONS(3626), - [anon_sym_typedef] = ACTIONS(3626), - [anon_sym_virtual] = ACTIONS(3626), - [anon_sym_extern] = ACTIONS(3626), - [anon_sym___attribute__] = ACTIONS(3626), - [anon_sym___attribute] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), - [anon_sym___declspec] = ACTIONS(3626), - [anon_sym___based] = ACTIONS(3626), - [anon_sym___cdecl] = ACTIONS(3626), - [anon_sym___clrcall] = ACTIONS(3626), - [anon_sym___stdcall] = ACTIONS(3626), - [anon_sym___fastcall] = ACTIONS(3626), - [anon_sym___thiscall] = ACTIONS(3626), - [anon_sym___vectorcall] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_signed] = ACTIONS(3626), - [anon_sym_unsigned] = ACTIONS(3626), - [anon_sym_long] = ACTIONS(3626), - [anon_sym_short] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_register] = ACTIONS(3626), - [anon_sym_inline] = ACTIONS(3626), - [anon_sym___inline] = ACTIONS(3626), - [anon_sym___inline__] = ACTIONS(3626), - [anon_sym___forceinline] = ACTIONS(3626), - [anon_sym_thread_local] = ACTIONS(3626), - [anon_sym___thread] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_constexpr] = ACTIONS(3626), - [anon_sym_volatile] = ACTIONS(3626), - [anon_sym_restrict] = ACTIONS(3626), - [anon_sym___restrict__] = ACTIONS(3626), - [anon_sym__Atomic] = ACTIONS(3626), - [anon_sym__Noreturn] = ACTIONS(3626), - [anon_sym_noreturn] = ACTIONS(3626), - [anon_sym__Nonnull] = ACTIONS(3626), - [anon_sym_mutable] = ACTIONS(3626), - [anon_sym_constinit] = ACTIONS(3626), - [anon_sym_consteval] = ACTIONS(3626), - [anon_sym_alignas] = ACTIONS(3626), - [anon_sym__Alignas] = ACTIONS(3626), - [sym_primitive_type] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_struct] = ACTIONS(3626), - [anon_sym_union] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_goto] = ACTIONS(3626), - [anon_sym___try] = ACTIONS(3626), - [anon_sym___leave] = ACTIONS(3626), - [anon_sym_not] = ACTIONS(3626), - [anon_sym_compl] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_sizeof] = ACTIONS(3626), - [anon_sym___alignof__] = ACTIONS(3626), - [anon_sym___alignof] = ACTIONS(3626), - [anon_sym__alignof] = ACTIONS(3626), - [anon_sym_alignof] = ACTIONS(3626), - [anon_sym__Alignof] = ACTIONS(3626), - [anon_sym_offsetof] = ACTIONS(3626), - [anon_sym__Generic] = ACTIONS(3626), - [anon_sym_typename] = ACTIONS(3626), - [anon_sym_asm] = ACTIONS(3626), - [anon_sym___asm__] = ACTIONS(3626), - [anon_sym___asm] = ACTIONS(3626), - [sym_number_literal] = ACTIONS(3628), - [anon_sym_L_SQUOTE] = ACTIONS(3628), - [anon_sym_u_SQUOTE] = ACTIONS(3628), - [anon_sym_U_SQUOTE] = ACTIONS(3628), - [anon_sym_u8_SQUOTE] = ACTIONS(3628), - [anon_sym_SQUOTE] = ACTIONS(3628), - [anon_sym_L_DQUOTE] = ACTIONS(3628), - [anon_sym_u_DQUOTE] = ACTIONS(3628), - [anon_sym_U_DQUOTE] = ACTIONS(3628), - [anon_sym_u8_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE] = ACTIONS(3628), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [anon_sym_NULL] = ACTIONS(3626), - [anon_sym_nullptr] = ACTIONS(3626), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3626), - [anon_sym_decltype] = ACTIONS(3626), - [anon_sym_explicit] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_template] = ACTIONS(3626), - [anon_sym_operator] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_static_assert] = ACTIONS(3626), - [anon_sym_concept] = ACTIONS(3626), - [anon_sym_co_return] = ACTIONS(3626), - [anon_sym_co_yield] = ACTIONS(3626), - [anon_sym_R_DQUOTE] = ACTIONS(3628), - [anon_sym_LR_DQUOTE] = ACTIONS(3628), - [anon_sym_uR_DQUOTE] = ACTIONS(3628), - [anon_sym_UR_DQUOTE] = ACTIONS(3628), - [anon_sym_u8R_DQUOTE] = ACTIONS(3628), - [anon_sym_co_await] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_requires] = ACTIONS(3626), - [anon_sym_CARET_CARET] = ACTIONS(3628), - [anon_sym_LBRACK_COLON] = ACTIONS(3628), - [sym_this] = ACTIONS(3626), - }, - [STATE(497)] = { - [ts_builtin_sym_end] = ACTIONS(3658), - [sym_identifier] = ACTIONS(3656), - [aux_sym_preproc_include_token1] = ACTIONS(3656), - [aux_sym_preproc_def_token1] = ACTIONS(3656), - [aux_sym_preproc_if_token1] = ACTIONS(3656), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3656), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3656), - [sym_preproc_directive] = ACTIONS(3656), - [anon_sym_LPAREN2] = ACTIONS(3658), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_TILDE] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(3656), - [anon_sym_STAR] = ACTIONS(3658), - [anon_sym_AMP_AMP] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3656), - [anon_sym_SEMI] = ACTIONS(3658), - [anon_sym___extension__] = ACTIONS(3656), - [anon_sym_typedef] = ACTIONS(3656), - [anon_sym_virtual] = ACTIONS(3656), - [anon_sym_extern] = ACTIONS(3656), - [anon_sym___attribute__] = ACTIONS(3656), - [anon_sym___attribute] = ACTIONS(3656), - [anon_sym_using] = ACTIONS(3656), - [anon_sym_COLON_COLON] = ACTIONS(3658), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3658), - [anon_sym___declspec] = ACTIONS(3656), - [anon_sym___based] = ACTIONS(3656), - [anon_sym___cdecl] = ACTIONS(3656), - [anon_sym___clrcall] = ACTIONS(3656), - [anon_sym___stdcall] = ACTIONS(3656), - [anon_sym___fastcall] = ACTIONS(3656), - [anon_sym___thiscall] = ACTIONS(3656), - [anon_sym___vectorcall] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_signed] = ACTIONS(3656), - [anon_sym_unsigned] = ACTIONS(3656), - [anon_sym_long] = ACTIONS(3656), - [anon_sym_short] = ACTIONS(3656), - [anon_sym_LBRACK] = ACTIONS(3656), - [anon_sym_static] = ACTIONS(3656), - [anon_sym_register] = ACTIONS(3656), - [anon_sym_inline] = ACTIONS(3656), - [anon_sym___inline] = ACTIONS(3656), - [anon_sym___inline__] = ACTIONS(3656), - [anon_sym___forceinline] = ACTIONS(3656), - [anon_sym_thread_local] = ACTIONS(3656), - [anon_sym___thread] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_constexpr] = ACTIONS(3656), - [anon_sym_volatile] = ACTIONS(3656), - [anon_sym_restrict] = ACTIONS(3656), - [anon_sym___restrict__] = ACTIONS(3656), - [anon_sym__Atomic] = ACTIONS(3656), - [anon_sym__Noreturn] = ACTIONS(3656), - [anon_sym_noreturn] = ACTIONS(3656), - [anon_sym__Nonnull] = ACTIONS(3656), - [anon_sym_mutable] = ACTIONS(3656), - [anon_sym_constinit] = ACTIONS(3656), - [anon_sym_consteval] = ACTIONS(3656), - [anon_sym_alignas] = ACTIONS(3656), - [anon_sym__Alignas] = ACTIONS(3656), - [sym_primitive_type] = ACTIONS(3656), - [anon_sym_enum] = ACTIONS(3656), - [anon_sym_class] = ACTIONS(3656), - [anon_sym_struct] = ACTIONS(3656), - [anon_sym_union] = ACTIONS(3656), - [anon_sym_if] = ACTIONS(3656), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_switch] = ACTIONS(3656), - [anon_sym_case] = ACTIONS(3656), - [anon_sym_default] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(3656), - [anon_sym_do] = ACTIONS(3656), - [anon_sym_for] = ACTIONS(3656), - [anon_sym_return] = ACTIONS(3656), - [anon_sym_break] = ACTIONS(3656), - [anon_sym_continue] = ACTIONS(3656), - [anon_sym_goto] = ACTIONS(3656), - [anon_sym___try] = ACTIONS(3656), - [anon_sym___leave] = ACTIONS(3656), - [anon_sym_not] = ACTIONS(3656), - [anon_sym_compl] = ACTIONS(3656), - [anon_sym_DASH_DASH] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3658), - [anon_sym_sizeof] = ACTIONS(3656), - [anon_sym___alignof__] = ACTIONS(3656), - [anon_sym___alignof] = ACTIONS(3656), - [anon_sym__alignof] = ACTIONS(3656), - [anon_sym_alignof] = ACTIONS(3656), - [anon_sym__Alignof] = ACTIONS(3656), - [anon_sym_offsetof] = ACTIONS(3656), - [anon_sym__Generic] = ACTIONS(3656), - [anon_sym_typename] = ACTIONS(3656), - [anon_sym_asm] = ACTIONS(3656), - [anon_sym___asm__] = ACTIONS(3656), - [anon_sym___asm] = ACTIONS(3656), - [sym_number_literal] = ACTIONS(3658), - [anon_sym_L_SQUOTE] = ACTIONS(3658), - [anon_sym_u_SQUOTE] = ACTIONS(3658), - [anon_sym_U_SQUOTE] = ACTIONS(3658), - [anon_sym_u8_SQUOTE] = ACTIONS(3658), - [anon_sym_SQUOTE] = ACTIONS(3658), - [anon_sym_L_DQUOTE] = ACTIONS(3658), - [anon_sym_u_DQUOTE] = ACTIONS(3658), - [anon_sym_U_DQUOTE] = ACTIONS(3658), - [anon_sym_u8_DQUOTE] = ACTIONS(3658), - [anon_sym_DQUOTE] = ACTIONS(3658), - [sym_true] = ACTIONS(3656), - [sym_false] = ACTIONS(3656), - [anon_sym_NULL] = ACTIONS(3656), - [anon_sym_nullptr] = ACTIONS(3656), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3656), - [anon_sym_decltype] = ACTIONS(3656), - [anon_sym_explicit] = ACTIONS(3656), - [anon_sym_export] = ACTIONS(3656), - [anon_sym_module] = ACTIONS(3656), - [anon_sym_import] = ACTIONS(3656), - [anon_sym_template] = ACTIONS(3656), - [anon_sym_operator] = ACTIONS(3656), - [anon_sym_try] = ACTIONS(3656), - [anon_sym_delete] = ACTIONS(3656), - [anon_sym_throw] = ACTIONS(3656), - [anon_sym_namespace] = ACTIONS(3656), - [anon_sym_static_assert] = ACTIONS(3656), - [anon_sym_concept] = ACTIONS(3656), - [anon_sym_co_return] = ACTIONS(3656), - [anon_sym_co_yield] = ACTIONS(3656), - [anon_sym_R_DQUOTE] = ACTIONS(3658), - [anon_sym_LR_DQUOTE] = ACTIONS(3658), - [anon_sym_uR_DQUOTE] = ACTIONS(3658), - [anon_sym_UR_DQUOTE] = ACTIONS(3658), - [anon_sym_u8R_DQUOTE] = ACTIONS(3658), - [anon_sym_co_await] = ACTIONS(3656), - [anon_sym_new] = ACTIONS(3656), - [anon_sym_requires] = ACTIONS(3656), - [anon_sym_CARET_CARET] = ACTIONS(3658), - [anon_sym_LBRACK_COLON] = ACTIONS(3658), - [sym_this] = ACTIONS(3656), - }, - [STATE(498)] = { - [ts_builtin_sym_end] = ACTIONS(3726), - [sym_identifier] = ACTIONS(3724), - [aux_sym_preproc_include_token1] = ACTIONS(3724), - [aux_sym_preproc_def_token1] = ACTIONS(3724), - [aux_sym_preproc_if_token1] = ACTIONS(3724), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3724), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3724), - [sym_preproc_directive] = ACTIONS(3724), - [anon_sym_LPAREN2] = ACTIONS(3726), - [anon_sym_BANG] = ACTIONS(3726), - [anon_sym_TILDE] = ACTIONS(3726), - [anon_sym_DASH] = ACTIONS(3724), - [anon_sym_PLUS] = ACTIONS(3724), - [anon_sym_STAR] = ACTIONS(3726), - [anon_sym_AMP_AMP] = ACTIONS(3726), - [anon_sym_AMP] = ACTIONS(3724), - [anon_sym_SEMI] = ACTIONS(3726), - [anon_sym___extension__] = ACTIONS(3724), - [anon_sym_typedef] = ACTIONS(3724), - [anon_sym_virtual] = ACTIONS(3724), - [anon_sym_extern] = ACTIONS(3724), - [anon_sym___attribute__] = ACTIONS(3724), - [anon_sym___attribute] = ACTIONS(3724), - [anon_sym_using] = ACTIONS(3724), - [anon_sym_COLON_COLON] = ACTIONS(3726), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3726), - [anon_sym___declspec] = ACTIONS(3724), - [anon_sym___based] = ACTIONS(3724), - [anon_sym___cdecl] = ACTIONS(3724), - [anon_sym___clrcall] = ACTIONS(3724), - [anon_sym___stdcall] = ACTIONS(3724), - [anon_sym___fastcall] = ACTIONS(3724), - [anon_sym___thiscall] = ACTIONS(3724), - [anon_sym___vectorcall] = ACTIONS(3724), - [anon_sym_LBRACE] = ACTIONS(3726), - [anon_sym_signed] = ACTIONS(3724), - [anon_sym_unsigned] = ACTIONS(3724), - [anon_sym_long] = ACTIONS(3724), - [anon_sym_short] = ACTIONS(3724), - [anon_sym_LBRACK] = ACTIONS(3724), - [anon_sym_static] = ACTIONS(3724), - [anon_sym_register] = ACTIONS(3724), - [anon_sym_inline] = ACTIONS(3724), - [anon_sym___inline] = ACTIONS(3724), - [anon_sym___inline__] = ACTIONS(3724), - [anon_sym___forceinline] = ACTIONS(3724), - [anon_sym_thread_local] = ACTIONS(3724), - [anon_sym___thread] = ACTIONS(3724), - [anon_sym_const] = ACTIONS(3724), - [anon_sym_constexpr] = ACTIONS(3724), - [anon_sym_volatile] = ACTIONS(3724), - [anon_sym_restrict] = ACTIONS(3724), - [anon_sym___restrict__] = ACTIONS(3724), - [anon_sym__Atomic] = ACTIONS(3724), - [anon_sym__Noreturn] = ACTIONS(3724), - [anon_sym_noreturn] = ACTIONS(3724), - [anon_sym__Nonnull] = ACTIONS(3724), - [anon_sym_mutable] = ACTIONS(3724), - [anon_sym_constinit] = ACTIONS(3724), - [anon_sym_consteval] = ACTIONS(3724), - [anon_sym_alignas] = ACTIONS(3724), - [anon_sym__Alignas] = ACTIONS(3724), - [sym_primitive_type] = ACTIONS(3724), - [anon_sym_enum] = ACTIONS(3724), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3724), - [anon_sym_union] = ACTIONS(3724), - [anon_sym_if] = ACTIONS(3724), - [anon_sym_else] = ACTIONS(3724), - [anon_sym_switch] = ACTIONS(3724), - [anon_sym_case] = ACTIONS(3724), - [anon_sym_default] = ACTIONS(3724), - [anon_sym_while] = ACTIONS(3724), - [anon_sym_do] = ACTIONS(3724), - [anon_sym_for] = ACTIONS(3724), - [anon_sym_return] = ACTIONS(3724), - [anon_sym_break] = ACTIONS(3724), - [anon_sym_continue] = ACTIONS(3724), - [anon_sym_goto] = ACTIONS(3724), - [anon_sym___try] = ACTIONS(3724), - [anon_sym___leave] = ACTIONS(3724), - [anon_sym_not] = ACTIONS(3724), - [anon_sym_compl] = ACTIONS(3724), - [anon_sym_DASH_DASH] = ACTIONS(3726), - [anon_sym_PLUS_PLUS] = ACTIONS(3726), - [anon_sym_sizeof] = ACTIONS(3724), - [anon_sym___alignof__] = ACTIONS(3724), - [anon_sym___alignof] = ACTIONS(3724), - [anon_sym__alignof] = ACTIONS(3724), - [anon_sym_alignof] = ACTIONS(3724), - [anon_sym__Alignof] = ACTIONS(3724), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3724), - [anon_sym_typename] = ACTIONS(3724), - [anon_sym_asm] = ACTIONS(3724), - [anon_sym___asm__] = ACTIONS(3724), - [anon_sym___asm] = ACTIONS(3724), - [sym_number_literal] = ACTIONS(3726), - [anon_sym_L_SQUOTE] = ACTIONS(3726), - [anon_sym_u_SQUOTE] = ACTIONS(3726), - [anon_sym_U_SQUOTE] = ACTIONS(3726), - [anon_sym_u8_SQUOTE] = ACTIONS(3726), - [anon_sym_SQUOTE] = ACTIONS(3726), - [anon_sym_L_DQUOTE] = ACTIONS(3726), - [anon_sym_u_DQUOTE] = ACTIONS(3726), - [anon_sym_U_DQUOTE] = ACTIONS(3726), - [anon_sym_u8_DQUOTE] = ACTIONS(3726), - [anon_sym_DQUOTE] = ACTIONS(3726), - [sym_true] = ACTIONS(3724), - [sym_false] = ACTIONS(3724), - [anon_sym_NULL] = ACTIONS(3724), - [anon_sym_nullptr] = ACTIONS(3724), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3724), - [anon_sym_decltype] = ACTIONS(3724), - [anon_sym_explicit] = ACTIONS(3724), - [anon_sym_export] = ACTIONS(3724), - [anon_sym_module] = ACTIONS(3724), - [anon_sym_import] = ACTIONS(3724), - [anon_sym_template] = ACTIONS(3724), - [anon_sym_operator] = ACTIONS(3724), - [anon_sym_try] = ACTIONS(3724), - [anon_sym_delete] = ACTIONS(3724), - [anon_sym_throw] = ACTIONS(3724), - [anon_sym_namespace] = ACTIONS(3724), - [anon_sym_static_assert] = ACTIONS(3724), - [anon_sym_concept] = ACTIONS(3724), - [anon_sym_co_return] = ACTIONS(3724), - [anon_sym_co_yield] = ACTIONS(3724), - [anon_sym_R_DQUOTE] = ACTIONS(3726), - [anon_sym_LR_DQUOTE] = ACTIONS(3726), - [anon_sym_uR_DQUOTE] = ACTIONS(3726), - [anon_sym_UR_DQUOTE] = ACTIONS(3726), - [anon_sym_u8R_DQUOTE] = ACTIONS(3726), - [anon_sym_co_await] = ACTIONS(3724), - [anon_sym_new] = ACTIONS(3724), - [anon_sym_requires] = ACTIONS(3724), - [anon_sym_CARET_CARET] = ACTIONS(3726), - [anon_sym_LBRACK_COLON] = ACTIONS(3726), - [sym_this] = ACTIONS(3724), - }, - [STATE(499)] = { - [ts_builtin_sym_end] = ACTIONS(3874), - [sym_identifier] = ACTIONS(3872), - [aux_sym_preproc_include_token1] = ACTIONS(3872), - [aux_sym_preproc_def_token1] = ACTIONS(3872), - [aux_sym_preproc_if_token1] = ACTIONS(3872), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3872), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3872), - [sym_preproc_directive] = ACTIONS(3872), - [anon_sym_LPAREN2] = ACTIONS(3874), - [anon_sym_BANG] = ACTIONS(3874), - [anon_sym_TILDE] = ACTIONS(3874), - [anon_sym_DASH] = ACTIONS(3872), - [anon_sym_PLUS] = ACTIONS(3872), - [anon_sym_STAR] = ACTIONS(3874), - [anon_sym_AMP_AMP] = ACTIONS(3874), - [anon_sym_AMP] = ACTIONS(3872), - [anon_sym_SEMI] = ACTIONS(3874), - [anon_sym___extension__] = ACTIONS(3872), - [anon_sym_typedef] = ACTIONS(3872), - [anon_sym_virtual] = ACTIONS(3872), - [anon_sym_extern] = ACTIONS(3872), - [anon_sym___attribute__] = ACTIONS(3872), - [anon_sym___attribute] = ACTIONS(3872), - [anon_sym_using] = ACTIONS(3872), - [anon_sym_COLON_COLON] = ACTIONS(3874), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3874), - [anon_sym___declspec] = ACTIONS(3872), - [anon_sym___based] = ACTIONS(3872), - [anon_sym___cdecl] = ACTIONS(3872), - [anon_sym___clrcall] = ACTIONS(3872), - [anon_sym___stdcall] = ACTIONS(3872), - [anon_sym___fastcall] = ACTIONS(3872), - [anon_sym___thiscall] = ACTIONS(3872), - [anon_sym___vectorcall] = ACTIONS(3872), - [anon_sym_LBRACE] = ACTIONS(3874), - [anon_sym_signed] = ACTIONS(3872), - [anon_sym_unsigned] = ACTIONS(3872), - [anon_sym_long] = ACTIONS(3872), - [anon_sym_short] = ACTIONS(3872), - [anon_sym_LBRACK] = ACTIONS(3872), - [anon_sym_static] = ACTIONS(3872), - [anon_sym_register] = ACTIONS(3872), - [anon_sym_inline] = ACTIONS(3872), - [anon_sym___inline] = ACTIONS(3872), - [anon_sym___inline__] = ACTIONS(3872), - [anon_sym___forceinline] = ACTIONS(3872), - [anon_sym_thread_local] = ACTIONS(3872), - [anon_sym___thread] = ACTIONS(3872), - [anon_sym_const] = ACTIONS(3872), - [anon_sym_constexpr] = ACTIONS(3872), - [anon_sym_volatile] = ACTIONS(3872), - [anon_sym_restrict] = ACTIONS(3872), - [anon_sym___restrict__] = ACTIONS(3872), - [anon_sym__Atomic] = ACTIONS(3872), - [anon_sym__Noreturn] = ACTIONS(3872), - [anon_sym_noreturn] = ACTIONS(3872), - [anon_sym__Nonnull] = ACTIONS(3872), - [anon_sym_mutable] = ACTIONS(3872), - [anon_sym_constinit] = ACTIONS(3872), - [anon_sym_consteval] = ACTIONS(3872), - [anon_sym_alignas] = ACTIONS(3872), - [anon_sym__Alignas] = ACTIONS(3872), - [sym_primitive_type] = ACTIONS(3872), - [anon_sym_enum] = ACTIONS(3872), - [anon_sym_class] = ACTIONS(3872), - [anon_sym_struct] = ACTIONS(3872), - [anon_sym_union] = ACTIONS(3872), - [anon_sym_if] = ACTIONS(3872), - [anon_sym_else] = ACTIONS(3872), - [anon_sym_switch] = ACTIONS(3872), - [anon_sym_case] = ACTIONS(3872), - [anon_sym_default] = ACTIONS(3872), - [anon_sym_while] = ACTIONS(3872), - [anon_sym_do] = ACTIONS(3872), - [anon_sym_for] = ACTIONS(3872), - [anon_sym_return] = ACTIONS(3872), - [anon_sym_break] = ACTIONS(3872), - [anon_sym_continue] = ACTIONS(3872), - [anon_sym_goto] = ACTIONS(3872), - [anon_sym___try] = ACTIONS(3872), - [anon_sym___leave] = ACTIONS(3872), - [anon_sym_not] = ACTIONS(3872), - [anon_sym_compl] = ACTIONS(3872), - [anon_sym_DASH_DASH] = ACTIONS(3874), - [anon_sym_PLUS_PLUS] = ACTIONS(3874), - [anon_sym_sizeof] = ACTIONS(3872), - [anon_sym___alignof__] = ACTIONS(3872), - [anon_sym___alignof] = ACTIONS(3872), - [anon_sym__alignof] = ACTIONS(3872), - [anon_sym_alignof] = ACTIONS(3872), - [anon_sym__Alignof] = ACTIONS(3872), - [anon_sym_offsetof] = ACTIONS(3872), - [anon_sym__Generic] = ACTIONS(3872), - [anon_sym_typename] = ACTIONS(3872), - [anon_sym_asm] = ACTIONS(3872), - [anon_sym___asm__] = ACTIONS(3872), - [anon_sym___asm] = ACTIONS(3872), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3874), - [anon_sym_u_SQUOTE] = ACTIONS(3874), - [anon_sym_U_SQUOTE] = ACTIONS(3874), - [anon_sym_u8_SQUOTE] = ACTIONS(3874), - [anon_sym_SQUOTE] = ACTIONS(3874), - [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(3872), - [sym_false] = ACTIONS(3872), - [anon_sym_NULL] = ACTIONS(3872), - [anon_sym_nullptr] = ACTIONS(3872), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3872), - [anon_sym_decltype] = ACTIONS(3872), - [anon_sym_explicit] = ACTIONS(3872), - [anon_sym_export] = ACTIONS(3872), - [anon_sym_module] = ACTIONS(3872), - [anon_sym_import] = ACTIONS(3872), - [anon_sym_template] = ACTIONS(3872), - [anon_sym_operator] = ACTIONS(3872), - [anon_sym_try] = ACTIONS(3872), - [anon_sym_delete] = ACTIONS(3872), - [anon_sym_throw] = ACTIONS(3872), - [anon_sym_namespace] = ACTIONS(3872), - [anon_sym_static_assert] = ACTIONS(3872), - [anon_sym_concept] = ACTIONS(3872), - [anon_sym_co_return] = ACTIONS(3872), - [anon_sym_co_yield] = ACTIONS(3872), - [anon_sym_R_DQUOTE] = ACTIONS(3874), - [anon_sym_LR_DQUOTE] = ACTIONS(3874), - [anon_sym_uR_DQUOTE] = ACTIONS(3874), - [anon_sym_UR_DQUOTE] = ACTIONS(3874), - [anon_sym_u8R_DQUOTE] = ACTIONS(3874), - [anon_sym_co_await] = ACTIONS(3872), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(3872), - [anon_sym_CARET_CARET] = ACTIONS(3874), - [anon_sym_LBRACK_COLON] = ACTIONS(3874), - [sym_this] = ACTIONS(3872), - }, - [STATE(500)] = { - [ts_builtin_sym_end] = ACTIONS(3882), - [sym_identifier] = ACTIONS(3880), - [aux_sym_preproc_include_token1] = ACTIONS(3880), - [aux_sym_preproc_def_token1] = ACTIONS(3880), - [aux_sym_preproc_if_token1] = ACTIONS(3880), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3880), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3880), - [sym_preproc_directive] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3882), - [anon_sym_TILDE] = ACTIONS(3882), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_STAR] = ACTIONS(3882), - [anon_sym_AMP_AMP] = ACTIONS(3882), - [anon_sym_AMP] = ACTIONS(3880), - [anon_sym_SEMI] = ACTIONS(3882), - [anon_sym___extension__] = ACTIONS(3880), - [anon_sym_typedef] = ACTIONS(3880), - [anon_sym_virtual] = ACTIONS(3880), - [anon_sym_extern] = ACTIONS(3880), - [anon_sym___attribute__] = ACTIONS(3880), - [anon_sym___attribute] = ACTIONS(3880), - [anon_sym_using] = ACTIONS(3880), - [anon_sym_COLON_COLON] = ACTIONS(3882), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3882), - [anon_sym___declspec] = ACTIONS(3880), - [anon_sym___based] = ACTIONS(3880), - [anon_sym___cdecl] = ACTIONS(3880), - [anon_sym___clrcall] = ACTIONS(3880), - [anon_sym___stdcall] = ACTIONS(3880), - [anon_sym___fastcall] = ACTIONS(3880), - [anon_sym___thiscall] = ACTIONS(3880), - [anon_sym___vectorcall] = ACTIONS(3880), - [anon_sym_LBRACE] = ACTIONS(3882), - [anon_sym_signed] = ACTIONS(3880), - [anon_sym_unsigned] = ACTIONS(3880), - [anon_sym_long] = ACTIONS(3880), - [anon_sym_short] = ACTIONS(3880), - [anon_sym_LBRACK] = ACTIONS(3880), - [anon_sym_static] = ACTIONS(3880), - [anon_sym_register] = ACTIONS(3880), - [anon_sym_inline] = ACTIONS(3880), - [anon_sym___inline] = ACTIONS(3880), - [anon_sym___inline__] = ACTIONS(3880), - [anon_sym___forceinline] = ACTIONS(3880), - [anon_sym_thread_local] = ACTIONS(3880), - [anon_sym___thread] = ACTIONS(3880), - [anon_sym_const] = ACTIONS(3880), - [anon_sym_constexpr] = ACTIONS(3880), - [anon_sym_volatile] = ACTIONS(3880), - [anon_sym_restrict] = ACTIONS(3880), - [anon_sym___restrict__] = ACTIONS(3880), - [anon_sym__Atomic] = ACTIONS(3880), - [anon_sym__Noreturn] = ACTIONS(3880), - [anon_sym_noreturn] = ACTIONS(3880), - [anon_sym__Nonnull] = ACTIONS(3880), - [anon_sym_mutable] = ACTIONS(3880), - [anon_sym_constinit] = ACTIONS(3880), - [anon_sym_consteval] = ACTIONS(3880), - [anon_sym_alignas] = ACTIONS(3880), - [anon_sym__Alignas] = ACTIONS(3880), - [sym_primitive_type] = ACTIONS(3880), - [anon_sym_enum] = ACTIONS(3880), - [anon_sym_class] = ACTIONS(3880), - [anon_sym_struct] = ACTIONS(3880), - [anon_sym_union] = ACTIONS(3880), - [anon_sym_if] = ACTIONS(3880), - [anon_sym_else] = ACTIONS(3880), - [anon_sym_switch] = ACTIONS(3880), - [anon_sym_case] = ACTIONS(3880), - [anon_sym_default] = ACTIONS(3880), - [anon_sym_while] = ACTIONS(3880), - [anon_sym_do] = ACTIONS(3880), - [anon_sym_for] = ACTIONS(3880), - [anon_sym_return] = ACTIONS(3880), - [anon_sym_break] = ACTIONS(3880), - [anon_sym_continue] = ACTIONS(3880), - [anon_sym_goto] = ACTIONS(3880), - [anon_sym___try] = ACTIONS(3880), - [anon_sym___leave] = ACTIONS(3880), - [anon_sym_not] = ACTIONS(3880), - [anon_sym_compl] = ACTIONS(3880), - [anon_sym_DASH_DASH] = ACTIONS(3882), - [anon_sym_PLUS_PLUS] = ACTIONS(3882), - [anon_sym_sizeof] = ACTIONS(3880), - [anon_sym___alignof__] = ACTIONS(3880), - [anon_sym___alignof] = ACTIONS(3880), - [anon_sym__alignof] = ACTIONS(3880), - [anon_sym_alignof] = ACTIONS(3880), - [anon_sym__Alignof] = ACTIONS(3880), - [anon_sym_offsetof] = ACTIONS(3880), - [anon_sym__Generic] = ACTIONS(3880), - [anon_sym_typename] = ACTIONS(3880), - [anon_sym_asm] = ACTIONS(3880), - [anon_sym___asm__] = ACTIONS(3880), - [anon_sym___asm] = ACTIONS(3880), - [sym_number_literal] = ACTIONS(3882), - [anon_sym_L_SQUOTE] = ACTIONS(3882), - [anon_sym_u_SQUOTE] = ACTIONS(3882), - [anon_sym_U_SQUOTE] = ACTIONS(3882), - [anon_sym_u8_SQUOTE] = ACTIONS(3882), - [anon_sym_SQUOTE] = ACTIONS(3882), - [anon_sym_L_DQUOTE] = ACTIONS(3882), - [anon_sym_u_DQUOTE] = ACTIONS(3882), - [anon_sym_U_DQUOTE] = ACTIONS(3882), - [anon_sym_u8_DQUOTE] = ACTIONS(3882), - [anon_sym_DQUOTE] = ACTIONS(3882), - [sym_true] = ACTIONS(3880), - [sym_false] = ACTIONS(3880), - [anon_sym_NULL] = ACTIONS(3880), - [anon_sym_nullptr] = ACTIONS(3880), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3880), - [anon_sym_decltype] = ACTIONS(3880), - [anon_sym_explicit] = ACTIONS(3880), - [anon_sym_export] = ACTIONS(3880), - [anon_sym_module] = ACTIONS(3880), - [anon_sym_import] = ACTIONS(3880), - [anon_sym_template] = ACTIONS(3880), - [anon_sym_operator] = ACTIONS(3880), - [anon_sym_try] = ACTIONS(3880), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_throw] = ACTIONS(3880), - [anon_sym_namespace] = ACTIONS(3880), - [anon_sym_static_assert] = ACTIONS(3880), - [anon_sym_concept] = ACTIONS(3880), - [anon_sym_co_return] = ACTIONS(3880), - [anon_sym_co_yield] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3880), - [anon_sym_new] = ACTIONS(3880), - [anon_sym_requires] = ACTIONS(3880), - [anon_sym_CARET_CARET] = ACTIONS(3882), - [anon_sym_LBRACK_COLON] = ACTIONS(3882), - [sym_this] = ACTIONS(3880), - }, - [STATE(501)] = { - [ts_builtin_sym_end] = ACTIONS(3702), - [sym_identifier] = ACTIONS(3700), - [aux_sym_preproc_include_token1] = ACTIONS(3700), - [aux_sym_preproc_def_token1] = ACTIONS(3700), - [aux_sym_preproc_if_token1] = ACTIONS(3700), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3700), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3700), - [sym_preproc_directive] = ACTIONS(3700), - [anon_sym_LPAREN2] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_TILDE] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3700), - [anon_sym_SEMI] = ACTIONS(3702), - [anon_sym___extension__] = ACTIONS(3700), - [anon_sym_typedef] = ACTIONS(3700), - [anon_sym_virtual] = ACTIONS(3700), - [anon_sym_extern] = ACTIONS(3700), - [anon_sym___attribute__] = ACTIONS(3700), - [anon_sym___attribute] = ACTIONS(3700), - [anon_sym_using] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3702), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3702), - [anon_sym___declspec] = ACTIONS(3700), - [anon_sym___based] = ACTIONS(3700), - [anon_sym___cdecl] = ACTIONS(3700), - [anon_sym___clrcall] = ACTIONS(3700), - [anon_sym___stdcall] = ACTIONS(3700), - [anon_sym___fastcall] = ACTIONS(3700), - [anon_sym___thiscall] = ACTIONS(3700), - [anon_sym___vectorcall] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3702), - [anon_sym_signed] = ACTIONS(3700), - [anon_sym_unsigned] = ACTIONS(3700), - [anon_sym_long] = ACTIONS(3700), - [anon_sym_short] = ACTIONS(3700), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_static] = ACTIONS(3700), - [anon_sym_register] = ACTIONS(3700), - [anon_sym_inline] = ACTIONS(3700), - [anon_sym___inline] = ACTIONS(3700), - [anon_sym___inline__] = ACTIONS(3700), - [anon_sym___forceinline] = ACTIONS(3700), - [anon_sym_thread_local] = ACTIONS(3700), - [anon_sym___thread] = ACTIONS(3700), - [anon_sym_const] = ACTIONS(3700), - [anon_sym_constexpr] = ACTIONS(3700), - [anon_sym_volatile] = ACTIONS(3700), - [anon_sym_restrict] = ACTIONS(3700), - [anon_sym___restrict__] = ACTIONS(3700), - [anon_sym__Atomic] = ACTIONS(3700), - [anon_sym__Noreturn] = ACTIONS(3700), - [anon_sym_noreturn] = ACTIONS(3700), - [anon_sym__Nonnull] = ACTIONS(3700), - [anon_sym_mutable] = ACTIONS(3700), - [anon_sym_constinit] = ACTIONS(3700), - [anon_sym_consteval] = ACTIONS(3700), - [anon_sym_alignas] = ACTIONS(3700), - [anon_sym__Alignas] = ACTIONS(3700), - [sym_primitive_type] = ACTIONS(3700), - [anon_sym_enum] = ACTIONS(3700), - [anon_sym_class] = ACTIONS(3700), - [anon_sym_struct] = ACTIONS(3700), - [anon_sym_union] = ACTIONS(3700), - [anon_sym_if] = ACTIONS(3700), - [anon_sym_else] = ACTIONS(3700), - [anon_sym_switch] = ACTIONS(3700), - [anon_sym_case] = ACTIONS(3700), - [anon_sym_default] = ACTIONS(3700), - [anon_sym_while] = ACTIONS(3700), - [anon_sym_do] = ACTIONS(3700), - [anon_sym_for] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(3700), - [anon_sym_break] = ACTIONS(3700), - [anon_sym_continue] = ACTIONS(3700), - [anon_sym_goto] = ACTIONS(3700), - [anon_sym___try] = ACTIONS(3700), - [anon_sym___leave] = ACTIONS(3700), - [anon_sym_not] = ACTIONS(3700), - [anon_sym_compl] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3702), - [anon_sym_sizeof] = ACTIONS(3700), - [anon_sym___alignof__] = ACTIONS(3700), - [anon_sym___alignof] = ACTIONS(3700), - [anon_sym__alignof] = ACTIONS(3700), - [anon_sym_alignof] = ACTIONS(3700), - [anon_sym__Alignof] = ACTIONS(3700), - [anon_sym_offsetof] = ACTIONS(3700), - [anon_sym__Generic] = ACTIONS(3700), - [anon_sym_typename] = ACTIONS(3700), - [anon_sym_asm] = ACTIONS(3700), - [anon_sym___asm__] = ACTIONS(3700), - [anon_sym___asm] = ACTIONS(3700), - [sym_number_literal] = ACTIONS(3702), - [anon_sym_L_SQUOTE] = ACTIONS(3702), - [anon_sym_u_SQUOTE] = ACTIONS(3702), - [anon_sym_U_SQUOTE] = ACTIONS(3702), - [anon_sym_u8_SQUOTE] = ACTIONS(3702), - [anon_sym_SQUOTE] = ACTIONS(3702), - [anon_sym_L_DQUOTE] = ACTIONS(3702), - [anon_sym_u_DQUOTE] = ACTIONS(3702), - [anon_sym_U_DQUOTE] = ACTIONS(3702), - [anon_sym_u8_DQUOTE] = ACTIONS(3702), - [anon_sym_DQUOTE] = ACTIONS(3702), - [sym_true] = ACTIONS(3700), - [sym_false] = ACTIONS(3700), - [anon_sym_NULL] = ACTIONS(3700), - [anon_sym_nullptr] = ACTIONS(3700), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3700), - [anon_sym_decltype] = ACTIONS(3700), - [anon_sym_explicit] = ACTIONS(3700), - [anon_sym_export] = ACTIONS(3700), - [anon_sym_module] = ACTIONS(3700), - [anon_sym_import] = ACTIONS(3700), - [anon_sym_template] = ACTIONS(3700), - [anon_sym_operator] = ACTIONS(3700), - [anon_sym_try] = ACTIONS(3700), - [anon_sym_delete] = ACTIONS(3700), - [anon_sym_throw] = ACTIONS(3700), - [anon_sym_namespace] = ACTIONS(3700), - [anon_sym_static_assert] = ACTIONS(3700), - [anon_sym_concept] = ACTIONS(3700), - [anon_sym_co_return] = ACTIONS(3700), - [anon_sym_co_yield] = ACTIONS(3700), - [anon_sym_R_DQUOTE] = ACTIONS(3702), - [anon_sym_LR_DQUOTE] = ACTIONS(3702), - [anon_sym_uR_DQUOTE] = ACTIONS(3702), - [anon_sym_UR_DQUOTE] = ACTIONS(3702), - [anon_sym_u8R_DQUOTE] = ACTIONS(3702), - [anon_sym_co_await] = ACTIONS(3700), - [anon_sym_new] = ACTIONS(3700), - [anon_sym_requires] = ACTIONS(3700), - [anon_sym_CARET_CARET] = ACTIONS(3702), - [anon_sym_LBRACK_COLON] = ACTIONS(3702), - [sym_this] = ACTIONS(3700), - }, - [STATE(502)] = { - [ts_builtin_sym_end] = ACTIONS(2954), - [sym_identifier] = ACTIONS(2949), - [aux_sym_preproc_include_token1] = ACTIONS(2949), - [aux_sym_preproc_def_token1] = ACTIONS(2949), - [aux_sym_preproc_if_token1] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2949), - [sym_preproc_directive] = ACTIONS(2949), - [anon_sym_LPAREN2] = ACTIONS(2954), - [anon_sym_BANG] = ACTIONS(2954), - [anon_sym_TILDE] = ACTIONS(2954), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_STAR] = ACTIONS(2954), - [anon_sym_AMP_AMP] = ACTIONS(2954), - [anon_sym_AMP] = ACTIONS(2949), - [anon_sym_SEMI] = ACTIONS(2954), - [anon_sym___extension__] = ACTIONS(2949), - [anon_sym_typedef] = ACTIONS(2949), - [anon_sym_virtual] = ACTIONS(2949), - [anon_sym_extern] = ACTIONS(2949), - [anon_sym___attribute__] = ACTIONS(2949), - [anon_sym___attribute] = ACTIONS(2949), - [anon_sym_using] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2954), - [anon_sym___declspec] = ACTIONS(2949), - [anon_sym___based] = ACTIONS(2949), - [anon_sym___cdecl] = ACTIONS(2949), - [anon_sym___clrcall] = ACTIONS(2949), - [anon_sym___stdcall] = ACTIONS(2949), - [anon_sym___fastcall] = ACTIONS(2949), - [anon_sym___thiscall] = ACTIONS(2949), - [anon_sym___vectorcall] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2954), - [anon_sym_signed] = ACTIONS(2949), - [anon_sym_unsigned] = ACTIONS(2949), - [anon_sym_long] = ACTIONS(2949), - [anon_sym_short] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_static] = ACTIONS(2949), - [anon_sym_register] = ACTIONS(2949), - [anon_sym_inline] = ACTIONS(2949), - [anon_sym___inline] = ACTIONS(2949), - [anon_sym___inline__] = ACTIONS(2949), - [anon_sym___forceinline] = ACTIONS(2949), - [anon_sym_thread_local] = ACTIONS(2949), - [anon_sym___thread] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_constexpr] = ACTIONS(2949), - [anon_sym_volatile] = ACTIONS(2949), - [anon_sym_restrict] = ACTIONS(2949), - [anon_sym___restrict__] = ACTIONS(2949), - [anon_sym__Atomic] = ACTIONS(2949), - [anon_sym__Noreturn] = ACTIONS(2949), - [anon_sym_noreturn] = ACTIONS(2949), - [anon_sym__Nonnull] = ACTIONS(2949), - [anon_sym_mutable] = ACTIONS(2949), - [anon_sym_constinit] = ACTIONS(2949), - [anon_sym_consteval] = ACTIONS(2949), - [anon_sym_alignas] = ACTIONS(2949), - [anon_sym__Alignas] = ACTIONS(2949), - [sym_primitive_type] = ACTIONS(2949), - [anon_sym_enum] = ACTIONS(2949), - [anon_sym_class] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2949), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_else] = ACTIONS(2949), - [anon_sym_switch] = ACTIONS(2949), - [anon_sym_case] = ACTIONS(2949), - [anon_sym_default] = ACTIONS(2949), - [anon_sym_while] = ACTIONS(2949), - [anon_sym_do] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_return] = ACTIONS(2949), - [anon_sym_break] = ACTIONS(2949), - [anon_sym_continue] = ACTIONS(2949), - [anon_sym_goto] = ACTIONS(2949), - [anon_sym___try] = ACTIONS(2949), - [anon_sym___leave] = ACTIONS(2949), - [anon_sym_not] = ACTIONS(2949), - [anon_sym_compl] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2954), - [anon_sym_PLUS_PLUS] = ACTIONS(2954), - [anon_sym_sizeof] = ACTIONS(2949), - [anon_sym___alignof__] = ACTIONS(2949), - [anon_sym___alignof] = ACTIONS(2949), - [anon_sym__alignof] = ACTIONS(2949), - [anon_sym_alignof] = ACTIONS(2949), - [anon_sym__Alignof] = ACTIONS(2949), - [anon_sym_offsetof] = ACTIONS(2949), - [anon_sym__Generic] = ACTIONS(2949), - [anon_sym_typename] = ACTIONS(2949), - [anon_sym_asm] = ACTIONS(2949), - [anon_sym___asm__] = ACTIONS(2949), - [anon_sym___asm] = ACTIONS(2949), - [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(2949), - [sym_false] = ACTIONS(2949), - [anon_sym_NULL] = ACTIONS(2949), - [anon_sym_nullptr] = ACTIONS(2949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2949), - [anon_sym_decltype] = ACTIONS(2949), - [anon_sym_explicit] = ACTIONS(2949), - [anon_sym_export] = ACTIONS(2949), - [anon_sym_module] = ACTIONS(2949), - [anon_sym_import] = ACTIONS(2949), - [anon_sym_template] = ACTIONS(2949), - [anon_sym_operator] = ACTIONS(2949), - [anon_sym_try] = ACTIONS(2949), - [anon_sym_delete] = ACTIONS(2949), - [anon_sym_throw] = ACTIONS(2949), - [anon_sym_namespace] = ACTIONS(2949), - [anon_sym_static_assert] = ACTIONS(2949), - [anon_sym_concept] = ACTIONS(2949), - [anon_sym_co_return] = ACTIONS(2949), - [anon_sym_co_yield] = ACTIONS(2949), - [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(2949), - [anon_sym_new] = ACTIONS(2949), - [anon_sym_requires] = ACTIONS(2949), - [anon_sym_CARET_CARET] = ACTIONS(2954), - [anon_sym_LBRACK_COLON] = ACTIONS(2954), - [sym_this] = ACTIONS(2949), - }, - [STATE(503)] = { - [sym_catch_clause] = STATE(507), - [aux_sym_constructor_try_statement_repeat1] = STATE(507), - [sym_identifier] = ACTIONS(3148), - [aux_sym_preproc_include_token1] = ACTIONS(3148), - [aux_sym_preproc_def_token1] = ACTIONS(3148), - [aux_sym_preproc_if_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3148), - [sym_preproc_directive] = ACTIONS(3148), - [anon_sym_LPAREN2] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym___extension__] = ACTIONS(3148), - [anon_sym_typedef] = ACTIONS(3148), - [anon_sym_virtual] = ACTIONS(3148), - [anon_sym_extern] = ACTIONS(3148), - [anon_sym___attribute__] = ACTIONS(3148), - [anon_sym___attribute] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3150), - [anon_sym___declspec] = ACTIONS(3148), - [anon_sym___based] = ACTIONS(3148), - [anon_sym___cdecl] = ACTIONS(3148), - [anon_sym___clrcall] = ACTIONS(3148), - [anon_sym___stdcall] = ACTIONS(3148), - [anon_sym___fastcall] = ACTIONS(3148), - [anon_sym___thiscall] = ACTIONS(3148), - [anon_sym___vectorcall] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_signed] = ACTIONS(3148), - [anon_sym_unsigned] = ACTIONS(3148), - [anon_sym_long] = ACTIONS(3148), - [anon_sym_short] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_register] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym___inline] = ACTIONS(3148), - [anon_sym___inline__] = ACTIONS(3148), - [anon_sym___forceinline] = ACTIONS(3148), - [anon_sym_thread_local] = ACTIONS(3148), - [anon_sym___thread] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_constexpr] = ACTIONS(3148), - [anon_sym_volatile] = ACTIONS(3148), - [anon_sym_restrict] = ACTIONS(3148), - [anon_sym___restrict__] = ACTIONS(3148), - [anon_sym__Atomic] = ACTIONS(3148), - [anon_sym__Noreturn] = ACTIONS(3148), - [anon_sym_noreturn] = ACTIONS(3148), - [anon_sym__Nonnull] = ACTIONS(3148), - [anon_sym_mutable] = ACTIONS(3148), - [anon_sym_constinit] = ACTIONS(3148), - [anon_sym_consteval] = ACTIONS(3148), - [anon_sym_alignas] = ACTIONS(3148), - [anon_sym__Alignas] = ACTIONS(3148), - [sym_primitive_type] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(3148), - [anon_sym_union] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_switch] = ACTIONS(3148), - [anon_sym_case] = ACTIONS(3148), - [anon_sym_default] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_do] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_goto] = ACTIONS(3148), - [anon_sym___try] = ACTIONS(3148), - [anon_sym___leave] = ACTIONS(3148), - [anon_sym_not] = ACTIONS(3148), - [anon_sym_compl] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_sizeof] = ACTIONS(3148), - [anon_sym___alignof__] = ACTIONS(3148), - [anon_sym___alignof] = ACTIONS(3148), - [anon_sym__alignof] = ACTIONS(3148), - [anon_sym_alignof] = ACTIONS(3148), - [anon_sym__Alignof] = ACTIONS(3148), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3148), - [anon_sym_typename] = ACTIONS(3148), - [anon_sym_asm] = ACTIONS(3148), - [anon_sym___asm__] = ACTIONS(3148), - [anon_sym___asm] = ACTIONS(3148), - [sym_number_literal] = ACTIONS(3150), - [anon_sym_L_SQUOTE] = ACTIONS(3150), - [anon_sym_u_SQUOTE] = ACTIONS(3150), - [anon_sym_U_SQUOTE] = ACTIONS(3150), - [anon_sym_u8_SQUOTE] = ACTIONS(3150), - [anon_sym_SQUOTE] = ACTIONS(3150), - [anon_sym_L_DQUOTE] = ACTIONS(3150), - [anon_sym_u_DQUOTE] = ACTIONS(3150), - [anon_sym_U_DQUOTE] = ACTIONS(3150), - [anon_sym_u8_DQUOTE] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3150), - [sym_true] = ACTIONS(3148), - [sym_false] = ACTIONS(3148), - [anon_sym_NULL] = ACTIONS(3148), - [anon_sym_nullptr] = ACTIONS(3148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3148), - [anon_sym_decltype] = ACTIONS(3148), - [anon_sym_explicit] = ACTIONS(3148), - [anon_sym_template] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_delete] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_namespace] = ACTIONS(3148), - [anon_sym_static_assert] = ACTIONS(3148), - [anon_sym_concept] = ACTIONS(3148), - [anon_sym_co_return] = ACTIONS(3148), - [anon_sym_co_yield] = ACTIONS(3148), - [anon_sym_catch] = ACTIONS(4129), - [anon_sym_R_DQUOTE] = ACTIONS(3150), - [anon_sym_LR_DQUOTE] = ACTIONS(3150), - [anon_sym_uR_DQUOTE] = ACTIONS(3150), - [anon_sym_UR_DQUOTE] = ACTIONS(3150), - [anon_sym_u8R_DQUOTE] = ACTIONS(3150), - [anon_sym_co_await] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3148), - [anon_sym_requires] = ACTIONS(3148), - [anon_sym_CARET_CARET] = ACTIONS(3150), - [anon_sym_LBRACK_COLON] = ACTIONS(3150), - [sym_this] = ACTIONS(3148), - }, - [STATE(504)] = { - [ts_builtin_sym_end] = ACTIONS(3896), - [sym_identifier] = ACTIONS(3894), - [aux_sym_preproc_include_token1] = ACTIONS(3894), - [aux_sym_preproc_def_token1] = ACTIONS(3894), - [aux_sym_preproc_if_token1] = ACTIONS(3894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3894), - [sym_preproc_directive] = ACTIONS(3894), - [anon_sym_LPAREN2] = ACTIONS(3896), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(3896), - [anon_sym_AMP_AMP] = ACTIONS(3896), - [anon_sym_AMP] = ACTIONS(3894), - [anon_sym_SEMI] = ACTIONS(3896), - [anon_sym___extension__] = ACTIONS(3894), - [anon_sym_typedef] = ACTIONS(3894), - [anon_sym_virtual] = ACTIONS(3894), - [anon_sym_extern] = ACTIONS(3894), - [anon_sym___attribute__] = ACTIONS(3894), - [anon_sym___attribute] = ACTIONS(3894), - [anon_sym_using] = ACTIONS(3894), - [anon_sym_COLON_COLON] = ACTIONS(3896), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3896), - [anon_sym___declspec] = ACTIONS(3894), - [anon_sym___based] = ACTIONS(3894), - [anon_sym___cdecl] = ACTIONS(3894), - [anon_sym___clrcall] = ACTIONS(3894), - [anon_sym___stdcall] = ACTIONS(3894), - [anon_sym___fastcall] = ACTIONS(3894), - [anon_sym___thiscall] = ACTIONS(3894), - [anon_sym___vectorcall] = ACTIONS(3894), - [anon_sym_LBRACE] = ACTIONS(3896), - [anon_sym_signed] = ACTIONS(3894), - [anon_sym_unsigned] = ACTIONS(3894), - [anon_sym_long] = ACTIONS(3894), - [anon_sym_short] = ACTIONS(3894), - [anon_sym_LBRACK] = ACTIONS(3894), - [anon_sym_static] = ACTIONS(3894), - [anon_sym_register] = ACTIONS(3894), - [anon_sym_inline] = ACTIONS(3894), - [anon_sym___inline] = ACTIONS(3894), - [anon_sym___inline__] = ACTIONS(3894), - [anon_sym___forceinline] = ACTIONS(3894), - [anon_sym_thread_local] = ACTIONS(3894), - [anon_sym___thread] = ACTIONS(3894), - [anon_sym_const] = ACTIONS(3894), - [anon_sym_constexpr] = ACTIONS(3894), - [anon_sym_volatile] = ACTIONS(3894), - [anon_sym_restrict] = ACTIONS(3894), - [anon_sym___restrict__] = ACTIONS(3894), - [anon_sym__Atomic] = ACTIONS(3894), - [anon_sym__Noreturn] = ACTIONS(3894), - [anon_sym_noreturn] = ACTIONS(3894), - [anon_sym__Nonnull] = ACTIONS(3894), - [anon_sym_mutable] = ACTIONS(3894), - [anon_sym_constinit] = ACTIONS(3894), - [anon_sym_consteval] = ACTIONS(3894), - [anon_sym_alignas] = ACTIONS(3894), - [anon_sym__Alignas] = ACTIONS(3894), - [sym_primitive_type] = ACTIONS(3894), - [anon_sym_enum] = ACTIONS(3894), - [anon_sym_class] = ACTIONS(3894), - [anon_sym_struct] = ACTIONS(3894), - [anon_sym_union] = ACTIONS(3894), - [anon_sym_if] = ACTIONS(3894), - [anon_sym_else] = ACTIONS(3894), - [anon_sym_switch] = ACTIONS(3894), - [anon_sym_case] = ACTIONS(3894), - [anon_sym_default] = ACTIONS(3894), - [anon_sym_while] = ACTIONS(3894), - [anon_sym_do] = ACTIONS(3894), - [anon_sym_for] = ACTIONS(3894), - [anon_sym_return] = ACTIONS(3894), - [anon_sym_break] = ACTIONS(3894), - [anon_sym_continue] = ACTIONS(3894), - [anon_sym_goto] = ACTIONS(3894), - [anon_sym___try] = ACTIONS(3894), - [anon_sym___leave] = ACTIONS(3894), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3896), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(3894), - [anon_sym___alignof] = ACTIONS(3894), - [anon_sym__alignof] = ACTIONS(3894), - [anon_sym_alignof] = ACTIONS(3894), - [anon_sym__Alignof] = ACTIONS(3894), - [anon_sym_offsetof] = ACTIONS(3894), - [anon_sym__Generic] = ACTIONS(3894), - [anon_sym_typename] = ACTIONS(3894), - [anon_sym_asm] = ACTIONS(3894), - [anon_sym___asm__] = ACTIONS(3894), - [anon_sym___asm] = ACTIONS(3894), - [sym_number_literal] = ACTIONS(3896), - [anon_sym_L_SQUOTE] = ACTIONS(3896), - [anon_sym_u_SQUOTE] = ACTIONS(3896), - [anon_sym_U_SQUOTE] = ACTIONS(3896), - [anon_sym_u8_SQUOTE] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(3896), - [anon_sym_L_DQUOTE] = ACTIONS(3896), - [anon_sym_u_DQUOTE] = ACTIONS(3896), - [anon_sym_U_DQUOTE] = ACTIONS(3896), - [anon_sym_u8_DQUOTE] = ACTIONS(3896), - [anon_sym_DQUOTE] = ACTIONS(3896), - [sym_true] = ACTIONS(3894), - [sym_false] = ACTIONS(3894), - [anon_sym_NULL] = ACTIONS(3894), - [anon_sym_nullptr] = ACTIONS(3894), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3894), - [anon_sym_decltype] = ACTIONS(3894), - [anon_sym_explicit] = ACTIONS(3894), - [anon_sym_export] = ACTIONS(3894), - [anon_sym_module] = ACTIONS(3894), - [anon_sym_import] = ACTIONS(3894), - [anon_sym_template] = ACTIONS(3894), - [anon_sym_operator] = ACTIONS(3894), - [anon_sym_try] = ACTIONS(3894), - [anon_sym_delete] = ACTIONS(3894), - [anon_sym_throw] = ACTIONS(3894), - [anon_sym_namespace] = ACTIONS(3894), - [anon_sym_static_assert] = ACTIONS(3894), - [anon_sym_concept] = ACTIONS(3894), - [anon_sym_co_return] = ACTIONS(3894), - [anon_sym_co_yield] = ACTIONS(3894), - [anon_sym_R_DQUOTE] = ACTIONS(3896), - [anon_sym_LR_DQUOTE] = ACTIONS(3896), - [anon_sym_uR_DQUOTE] = ACTIONS(3896), - [anon_sym_UR_DQUOTE] = ACTIONS(3896), - [anon_sym_u8R_DQUOTE] = ACTIONS(3896), - [anon_sym_co_await] = ACTIONS(3894), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_requires] = ACTIONS(3894), - [anon_sym_CARET_CARET] = ACTIONS(3896), - [anon_sym_LBRACK_COLON] = ACTIONS(3896), - [sym_this] = ACTIONS(3894), - }, - [STATE(505)] = { - [ts_builtin_sym_end] = ACTIONS(3666), - [sym_identifier] = ACTIONS(3664), - [aux_sym_preproc_include_token1] = ACTIONS(3664), - [aux_sym_preproc_def_token1] = ACTIONS(3664), - [aux_sym_preproc_if_token1] = ACTIONS(3664), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3664), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3664), - [sym_preproc_directive] = ACTIONS(3664), - [anon_sym_LPAREN2] = ACTIONS(3666), - [anon_sym_BANG] = ACTIONS(3666), - [anon_sym_TILDE] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3664), - [anon_sym_PLUS] = ACTIONS(3664), - [anon_sym_STAR] = ACTIONS(3666), - [anon_sym_AMP_AMP] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3664), - [anon_sym_SEMI] = ACTIONS(3666), - [anon_sym___extension__] = ACTIONS(3664), - [anon_sym_typedef] = ACTIONS(3664), - [anon_sym_virtual] = ACTIONS(3664), - [anon_sym_extern] = ACTIONS(3664), - [anon_sym___attribute__] = ACTIONS(3664), - [anon_sym___attribute] = ACTIONS(3664), - [anon_sym_using] = ACTIONS(3664), - [anon_sym_COLON_COLON] = ACTIONS(3666), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), - [anon_sym___declspec] = ACTIONS(3664), - [anon_sym___based] = ACTIONS(3664), - [anon_sym___cdecl] = ACTIONS(3664), - [anon_sym___clrcall] = ACTIONS(3664), - [anon_sym___stdcall] = ACTIONS(3664), - [anon_sym___fastcall] = ACTIONS(3664), - [anon_sym___thiscall] = ACTIONS(3664), - [anon_sym___vectorcall] = ACTIONS(3664), - [anon_sym_LBRACE] = ACTIONS(3666), - [anon_sym_signed] = ACTIONS(3664), - [anon_sym_unsigned] = ACTIONS(3664), - [anon_sym_long] = ACTIONS(3664), - [anon_sym_short] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3664), - [anon_sym_static] = ACTIONS(3664), - [anon_sym_register] = ACTIONS(3664), - [anon_sym_inline] = ACTIONS(3664), - [anon_sym___inline] = ACTIONS(3664), - [anon_sym___inline__] = ACTIONS(3664), - [anon_sym___forceinline] = ACTIONS(3664), - [anon_sym_thread_local] = ACTIONS(3664), - [anon_sym___thread] = ACTIONS(3664), - [anon_sym_const] = ACTIONS(3664), - [anon_sym_constexpr] = ACTIONS(3664), - [anon_sym_volatile] = ACTIONS(3664), - [anon_sym_restrict] = ACTIONS(3664), - [anon_sym___restrict__] = ACTIONS(3664), - [anon_sym__Atomic] = ACTIONS(3664), - [anon_sym__Noreturn] = ACTIONS(3664), - [anon_sym_noreturn] = ACTIONS(3664), - [anon_sym__Nonnull] = ACTIONS(3664), - [anon_sym_mutable] = ACTIONS(3664), - [anon_sym_constinit] = ACTIONS(3664), - [anon_sym_consteval] = ACTIONS(3664), - [anon_sym_alignas] = ACTIONS(3664), - [anon_sym__Alignas] = ACTIONS(3664), - [sym_primitive_type] = ACTIONS(3664), - [anon_sym_enum] = ACTIONS(3664), - [anon_sym_class] = ACTIONS(3664), - [anon_sym_struct] = ACTIONS(3664), - [anon_sym_union] = ACTIONS(3664), - [anon_sym_if] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(3664), - [anon_sym_switch] = ACTIONS(3664), - [anon_sym_case] = ACTIONS(3664), - [anon_sym_default] = ACTIONS(3664), - [anon_sym_while] = ACTIONS(3664), - [anon_sym_do] = ACTIONS(3664), - [anon_sym_for] = ACTIONS(3664), - [anon_sym_return] = ACTIONS(3664), - [anon_sym_break] = ACTIONS(3664), - [anon_sym_continue] = ACTIONS(3664), - [anon_sym_goto] = ACTIONS(3664), - [anon_sym___try] = ACTIONS(3664), - [anon_sym___leave] = ACTIONS(3664), - [anon_sym_not] = ACTIONS(3664), - [anon_sym_compl] = ACTIONS(3664), - [anon_sym_DASH_DASH] = ACTIONS(3666), - [anon_sym_PLUS_PLUS] = ACTIONS(3666), - [anon_sym_sizeof] = ACTIONS(3664), - [anon_sym___alignof__] = ACTIONS(3664), - [anon_sym___alignof] = ACTIONS(3664), - [anon_sym__alignof] = ACTIONS(3664), - [anon_sym_alignof] = ACTIONS(3664), - [anon_sym__Alignof] = ACTIONS(3664), - [anon_sym_offsetof] = ACTIONS(3664), - [anon_sym__Generic] = ACTIONS(3664), - [anon_sym_typename] = ACTIONS(3664), - [anon_sym_asm] = ACTIONS(3664), - [anon_sym___asm__] = ACTIONS(3664), - [anon_sym___asm] = ACTIONS(3664), - [sym_number_literal] = ACTIONS(3666), - [anon_sym_L_SQUOTE] = ACTIONS(3666), - [anon_sym_u_SQUOTE] = ACTIONS(3666), - [anon_sym_U_SQUOTE] = ACTIONS(3666), - [anon_sym_u8_SQUOTE] = ACTIONS(3666), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_L_DQUOTE] = ACTIONS(3666), - [anon_sym_u_DQUOTE] = ACTIONS(3666), - [anon_sym_U_DQUOTE] = ACTIONS(3666), - [anon_sym_u8_DQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3666), - [sym_true] = ACTIONS(3664), - [sym_false] = ACTIONS(3664), - [anon_sym_NULL] = ACTIONS(3664), - [anon_sym_nullptr] = ACTIONS(3664), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3664), - [anon_sym_decltype] = ACTIONS(3664), - [anon_sym_explicit] = ACTIONS(3664), - [anon_sym_export] = ACTIONS(3664), - [anon_sym_module] = ACTIONS(3664), - [anon_sym_import] = ACTIONS(3664), - [anon_sym_template] = ACTIONS(3664), - [anon_sym_operator] = ACTIONS(3664), - [anon_sym_try] = ACTIONS(3664), - [anon_sym_delete] = ACTIONS(3664), - [anon_sym_throw] = ACTIONS(3664), - [anon_sym_namespace] = ACTIONS(3664), - [anon_sym_static_assert] = ACTIONS(3664), - [anon_sym_concept] = ACTIONS(3664), - [anon_sym_co_return] = ACTIONS(3664), - [anon_sym_co_yield] = ACTIONS(3664), - [anon_sym_R_DQUOTE] = ACTIONS(3666), - [anon_sym_LR_DQUOTE] = ACTIONS(3666), - [anon_sym_uR_DQUOTE] = ACTIONS(3666), - [anon_sym_UR_DQUOTE] = ACTIONS(3666), - [anon_sym_u8R_DQUOTE] = ACTIONS(3666), - [anon_sym_co_await] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3664), - [anon_sym_requires] = ACTIONS(3664), - [anon_sym_CARET_CARET] = ACTIONS(3666), - [anon_sym_LBRACK_COLON] = ACTIONS(3666), - [sym_this] = ACTIONS(3664), - }, - [STATE(506)] = { - [ts_builtin_sym_end] = ACTIONS(3870), - [sym_identifier] = ACTIONS(3868), - [aux_sym_preproc_include_token1] = ACTIONS(3868), - [aux_sym_preproc_def_token1] = ACTIONS(3868), - [aux_sym_preproc_if_token1] = ACTIONS(3868), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3868), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3868), - [sym_preproc_directive] = ACTIONS(3868), - [anon_sym_LPAREN2] = ACTIONS(3870), - [anon_sym_BANG] = ACTIONS(3870), - [anon_sym_TILDE] = ACTIONS(3870), - [anon_sym_DASH] = ACTIONS(3868), - [anon_sym_PLUS] = ACTIONS(3868), - [anon_sym_STAR] = ACTIONS(3870), - [anon_sym_AMP_AMP] = ACTIONS(3870), - [anon_sym_AMP] = ACTIONS(3868), - [anon_sym_SEMI] = ACTIONS(3870), - [anon_sym___extension__] = ACTIONS(3868), - [anon_sym_typedef] = ACTIONS(3868), - [anon_sym_virtual] = ACTIONS(3868), - [anon_sym_extern] = ACTIONS(3868), - [anon_sym___attribute__] = ACTIONS(3868), - [anon_sym___attribute] = ACTIONS(3868), - [anon_sym_using] = ACTIONS(3868), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3870), - [anon_sym___declspec] = ACTIONS(3868), - [anon_sym___based] = ACTIONS(3868), - [anon_sym___cdecl] = ACTIONS(3868), - [anon_sym___clrcall] = ACTIONS(3868), - [anon_sym___stdcall] = ACTIONS(3868), - [anon_sym___fastcall] = ACTIONS(3868), - [anon_sym___thiscall] = ACTIONS(3868), - [anon_sym___vectorcall] = ACTIONS(3868), - [anon_sym_LBRACE] = ACTIONS(3870), - [anon_sym_signed] = ACTIONS(3868), - [anon_sym_unsigned] = ACTIONS(3868), - [anon_sym_long] = ACTIONS(3868), - [anon_sym_short] = ACTIONS(3868), - [anon_sym_LBRACK] = ACTIONS(3868), - [anon_sym_static] = ACTIONS(3868), - [anon_sym_register] = ACTIONS(3868), - [anon_sym_inline] = ACTIONS(3868), - [anon_sym___inline] = ACTIONS(3868), - [anon_sym___inline__] = ACTIONS(3868), - [anon_sym___forceinline] = ACTIONS(3868), - [anon_sym_thread_local] = ACTIONS(3868), - [anon_sym___thread] = ACTIONS(3868), - [anon_sym_const] = ACTIONS(3868), - [anon_sym_constexpr] = ACTIONS(3868), - [anon_sym_volatile] = ACTIONS(3868), - [anon_sym_restrict] = ACTIONS(3868), - [anon_sym___restrict__] = ACTIONS(3868), - [anon_sym__Atomic] = ACTIONS(3868), - [anon_sym__Noreturn] = ACTIONS(3868), - [anon_sym_noreturn] = ACTIONS(3868), - [anon_sym__Nonnull] = ACTIONS(3868), - [anon_sym_mutable] = ACTIONS(3868), - [anon_sym_constinit] = ACTIONS(3868), - [anon_sym_consteval] = ACTIONS(3868), - [anon_sym_alignas] = ACTIONS(3868), - [anon_sym__Alignas] = ACTIONS(3868), - [sym_primitive_type] = ACTIONS(3868), - [anon_sym_enum] = ACTIONS(3868), - [anon_sym_class] = ACTIONS(3868), - [anon_sym_struct] = ACTIONS(3868), - [anon_sym_union] = ACTIONS(3868), - [anon_sym_if] = ACTIONS(3868), - [anon_sym_else] = ACTIONS(3868), - [anon_sym_switch] = ACTIONS(3868), - [anon_sym_case] = ACTIONS(3868), - [anon_sym_default] = ACTIONS(3868), - [anon_sym_while] = ACTIONS(3868), - [anon_sym_do] = ACTIONS(3868), - [anon_sym_for] = ACTIONS(3868), - [anon_sym_return] = ACTIONS(3868), - [anon_sym_break] = ACTIONS(3868), - [anon_sym_continue] = ACTIONS(3868), - [anon_sym_goto] = ACTIONS(3868), - [anon_sym___try] = ACTIONS(3868), - [anon_sym___leave] = ACTIONS(3868), - [anon_sym_not] = ACTIONS(3868), - [anon_sym_compl] = ACTIONS(3868), - [anon_sym_DASH_DASH] = ACTIONS(3870), - [anon_sym_PLUS_PLUS] = ACTIONS(3870), - [anon_sym_sizeof] = ACTIONS(3868), - [anon_sym___alignof__] = ACTIONS(3868), - [anon_sym___alignof] = ACTIONS(3868), - [anon_sym__alignof] = ACTIONS(3868), - [anon_sym_alignof] = ACTIONS(3868), - [anon_sym__Alignof] = ACTIONS(3868), - [anon_sym_offsetof] = ACTIONS(3868), - [anon_sym__Generic] = ACTIONS(3868), - [anon_sym_typename] = ACTIONS(3868), - [anon_sym_asm] = ACTIONS(3868), - [anon_sym___asm__] = ACTIONS(3868), - [anon_sym___asm] = ACTIONS(3868), - [sym_number_literal] = ACTIONS(3870), - [anon_sym_L_SQUOTE] = ACTIONS(3870), - [anon_sym_u_SQUOTE] = ACTIONS(3870), - [anon_sym_U_SQUOTE] = ACTIONS(3870), - [anon_sym_u8_SQUOTE] = ACTIONS(3870), - [anon_sym_SQUOTE] = ACTIONS(3870), - [anon_sym_L_DQUOTE] = ACTIONS(3870), - [anon_sym_u_DQUOTE] = ACTIONS(3870), - [anon_sym_U_DQUOTE] = ACTIONS(3870), - [anon_sym_u8_DQUOTE] = ACTIONS(3870), - [anon_sym_DQUOTE] = ACTIONS(3870), - [sym_true] = ACTIONS(3868), - [sym_false] = ACTIONS(3868), - [anon_sym_NULL] = ACTIONS(3868), - [anon_sym_nullptr] = ACTIONS(3868), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3868), - [anon_sym_decltype] = ACTIONS(3868), - [anon_sym_explicit] = ACTIONS(3868), - [anon_sym_export] = ACTIONS(3868), - [anon_sym_module] = ACTIONS(3868), - [anon_sym_import] = ACTIONS(3868), - [anon_sym_template] = ACTIONS(3868), - [anon_sym_operator] = ACTIONS(3868), - [anon_sym_try] = ACTIONS(3868), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_throw] = ACTIONS(3868), - [anon_sym_namespace] = ACTIONS(3868), - [anon_sym_static_assert] = ACTIONS(3868), - [anon_sym_concept] = ACTIONS(3868), - [anon_sym_co_return] = ACTIONS(3868), - [anon_sym_co_yield] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(3870), - [anon_sym_LR_DQUOTE] = ACTIONS(3870), - [anon_sym_uR_DQUOTE] = ACTIONS(3870), - [anon_sym_UR_DQUOTE] = ACTIONS(3870), - [anon_sym_u8R_DQUOTE] = ACTIONS(3870), - [anon_sym_co_await] = ACTIONS(3868), - [anon_sym_new] = ACTIONS(3868), - [anon_sym_requires] = ACTIONS(3868), - [anon_sym_CARET_CARET] = ACTIONS(3870), - [anon_sym_LBRACK_COLON] = ACTIONS(3870), - [sym_this] = ACTIONS(3868), - }, - [STATE(507)] = { - [sym_catch_clause] = STATE(507), - [aux_sym_constructor_try_statement_repeat1] = STATE(507), - [sym_identifier] = ACTIONS(3137), - [aux_sym_preproc_include_token1] = ACTIONS(3137), - [aux_sym_preproc_def_token1] = ACTIONS(3137), - [aux_sym_preproc_if_token1] = ACTIONS(3137), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3137), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3137), - [sym_preproc_directive] = ACTIONS(3137), - [anon_sym_LPAREN2] = ACTIONS(3139), - [anon_sym_BANG] = ACTIONS(3139), - [anon_sym_TILDE] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3139), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym___extension__] = ACTIONS(3137), - [anon_sym_typedef] = ACTIONS(3137), - [anon_sym_virtual] = ACTIONS(3137), - [anon_sym_extern] = ACTIONS(3137), - [anon_sym___attribute__] = ACTIONS(3137), - [anon_sym___attribute] = ACTIONS(3137), - [anon_sym_using] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3139), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3139), - [anon_sym___declspec] = ACTIONS(3137), - [anon_sym___based] = ACTIONS(3137), - [anon_sym___cdecl] = ACTIONS(3137), - [anon_sym___clrcall] = ACTIONS(3137), - [anon_sym___stdcall] = ACTIONS(3137), - [anon_sym___fastcall] = ACTIONS(3137), - [anon_sym___thiscall] = ACTIONS(3137), - [anon_sym___vectorcall] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_signed] = ACTIONS(3137), - [anon_sym_unsigned] = ACTIONS(3137), - [anon_sym_long] = ACTIONS(3137), - [anon_sym_short] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_static] = ACTIONS(3137), - [anon_sym_register] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym___inline] = ACTIONS(3137), - [anon_sym___inline__] = ACTIONS(3137), - [anon_sym___forceinline] = ACTIONS(3137), - [anon_sym_thread_local] = ACTIONS(3137), - [anon_sym___thread] = ACTIONS(3137), - [anon_sym_const] = ACTIONS(3137), - [anon_sym_constexpr] = ACTIONS(3137), - [anon_sym_volatile] = ACTIONS(3137), - [anon_sym_restrict] = ACTIONS(3137), - [anon_sym___restrict__] = ACTIONS(3137), - [anon_sym__Atomic] = ACTIONS(3137), - [anon_sym__Noreturn] = ACTIONS(3137), - [anon_sym_noreturn] = ACTIONS(3137), - [anon_sym__Nonnull] = ACTIONS(3137), - [anon_sym_mutable] = ACTIONS(3137), - [anon_sym_constinit] = ACTIONS(3137), - [anon_sym_consteval] = ACTIONS(3137), - [anon_sym_alignas] = ACTIONS(3137), - [anon_sym__Alignas] = ACTIONS(3137), - [sym_primitive_type] = ACTIONS(3137), - [anon_sym_enum] = ACTIONS(3137), - [anon_sym_class] = ACTIONS(3137), - [anon_sym_struct] = ACTIONS(3137), - [anon_sym_union] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_switch] = ACTIONS(3137), - [anon_sym_case] = ACTIONS(3137), - [anon_sym_default] = ACTIONS(3137), - [anon_sym_while] = ACTIONS(3137), - [anon_sym_do] = ACTIONS(3137), - [anon_sym_for] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_goto] = ACTIONS(3137), - [anon_sym___try] = ACTIONS(3137), - [anon_sym___leave] = ACTIONS(3137), - [anon_sym_not] = ACTIONS(3137), - [anon_sym_compl] = ACTIONS(3137), - [anon_sym_DASH_DASH] = ACTIONS(3139), - [anon_sym_PLUS_PLUS] = ACTIONS(3139), - [anon_sym_sizeof] = ACTIONS(3137), - [anon_sym___alignof__] = ACTIONS(3137), - [anon_sym___alignof] = ACTIONS(3137), - [anon_sym__alignof] = ACTIONS(3137), - [anon_sym_alignof] = ACTIONS(3137), - [anon_sym__Alignof] = ACTIONS(3137), - [anon_sym_offsetof] = ACTIONS(3137), - [anon_sym__Generic] = ACTIONS(3137), - [anon_sym_typename] = ACTIONS(3137), - [anon_sym_asm] = ACTIONS(3137), - [anon_sym___asm__] = ACTIONS(3137), - [anon_sym___asm] = ACTIONS(3137), - [sym_number_literal] = ACTIONS(3139), - [anon_sym_L_SQUOTE] = ACTIONS(3139), - [anon_sym_u_SQUOTE] = ACTIONS(3139), - [anon_sym_U_SQUOTE] = ACTIONS(3139), - [anon_sym_u8_SQUOTE] = ACTIONS(3139), - [anon_sym_SQUOTE] = ACTIONS(3139), - [anon_sym_L_DQUOTE] = ACTIONS(3139), - [anon_sym_u_DQUOTE] = ACTIONS(3139), - [anon_sym_U_DQUOTE] = ACTIONS(3139), - [anon_sym_u8_DQUOTE] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3139), - [sym_true] = ACTIONS(3137), - [sym_false] = ACTIONS(3137), - [anon_sym_NULL] = ACTIONS(3137), - [anon_sym_nullptr] = ACTIONS(3137), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3137), - [anon_sym_decltype] = ACTIONS(3137), - [anon_sym_explicit] = ACTIONS(3137), - [anon_sym_template] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_try] = ACTIONS(3137), - [anon_sym_delete] = ACTIONS(3137), - [anon_sym_throw] = ACTIONS(3137), - [anon_sym_namespace] = ACTIONS(3137), - [anon_sym_static_assert] = ACTIONS(3137), - [anon_sym_concept] = ACTIONS(3137), - [anon_sym_co_return] = ACTIONS(3137), - [anon_sym_co_yield] = ACTIONS(3137), - [anon_sym_catch] = ACTIONS(4131), - [anon_sym_R_DQUOTE] = ACTIONS(3139), - [anon_sym_LR_DQUOTE] = ACTIONS(3139), - [anon_sym_uR_DQUOTE] = ACTIONS(3139), - [anon_sym_UR_DQUOTE] = ACTIONS(3139), - [anon_sym_u8R_DQUOTE] = ACTIONS(3139), - [anon_sym_co_await] = ACTIONS(3137), - [anon_sym_new] = ACTIONS(3137), - [anon_sym_requires] = ACTIONS(3137), - [anon_sym_CARET_CARET] = ACTIONS(3139), - [anon_sym_LBRACK_COLON] = ACTIONS(3139), - [sym_this] = ACTIONS(3137), - }, - [STATE(508)] = { - [ts_builtin_sym_end] = ACTIONS(3866), - [sym_identifier] = ACTIONS(3864), - [aux_sym_preproc_include_token1] = ACTIONS(3864), - [aux_sym_preproc_def_token1] = ACTIONS(3864), - [aux_sym_preproc_if_token1] = ACTIONS(3864), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3864), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3864), - [sym_preproc_directive] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(3866), - [anon_sym_BANG] = ACTIONS(3866), - [anon_sym_TILDE] = ACTIONS(3866), - [anon_sym_DASH] = ACTIONS(3864), - [anon_sym_PLUS] = ACTIONS(3864), - [anon_sym_STAR] = ACTIONS(3866), - [anon_sym_AMP_AMP] = ACTIONS(3866), - [anon_sym_AMP] = ACTIONS(3864), - [anon_sym_SEMI] = ACTIONS(3866), - [anon_sym___extension__] = ACTIONS(3864), - [anon_sym_typedef] = ACTIONS(3864), - [anon_sym_virtual] = ACTIONS(3864), - [anon_sym_extern] = ACTIONS(3864), - [anon_sym___attribute__] = ACTIONS(3864), - [anon_sym___attribute] = ACTIONS(3864), - [anon_sym_using] = ACTIONS(3864), - [anon_sym_COLON_COLON] = ACTIONS(3866), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3866), - [anon_sym___declspec] = ACTIONS(3864), - [anon_sym___based] = ACTIONS(3864), - [anon_sym___cdecl] = ACTIONS(3864), - [anon_sym___clrcall] = ACTIONS(3864), - [anon_sym___stdcall] = ACTIONS(3864), - [anon_sym___fastcall] = ACTIONS(3864), - [anon_sym___thiscall] = ACTIONS(3864), - [anon_sym___vectorcall] = ACTIONS(3864), - [anon_sym_LBRACE] = ACTIONS(3866), - [anon_sym_signed] = ACTIONS(3864), - [anon_sym_unsigned] = ACTIONS(3864), - [anon_sym_long] = ACTIONS(3864), - [anon_sym_short] = ACTIONS(3864), - [anon_sym_LBRACK] = ACTIONS(3864), - [anon_sym_static] = ACTIONS(3864), - [anon_sym_register] = ACTIONS(3864), - [anon_sym_inline] = ACTIONS(3864), - [anon_sym___inline] = ACTIONS(3864), - [anon_sym___inline__] = ACTIONS(3864), - [anon_sym___forceinline] = ACTIONS(3864), - [anon_sym_thread_local] = ACTIONS(3864), - [anon_sym___thread] = ACTIONS(3864), - [anon_sym_const] = ACTIONS(3864), - [anon_sym_constexpr] = ACTIONS(3864), - [anon_sym_volatile] = ACTIONS(3864), - [anon_sym_restrict] = ACTIONS(3864), - [anon_sym___restrict__] = ACTIONS(3864), - [anon_sym__Atomic] = ACTIONS(3864), - [anon_sym__Noreturn] = ACTIONS(3864), - [anon_sym_noreturn] = ACTIONS(3864), - [anon_sym__Nonnull] = ACTIONS(3864), - [anon_sym_mutable] = ACTIONS(3864), - [anon_sym_constinit] = ACTIONS(3864), - [anon_sym_consteval] = ACTIONS(3864), - [anon_sym_alignas] = ACTIONS(3864), - [anon_sym__Alignas] = ACTIONS(3864), - [sym_primitive_type] = ACTIONS(3864), - [anon_sym_enum] = ACTIONS(3864), - [anon_sym_class] = ACTIONS(3864), - [anon_sym_struct] = ACTIONS(3864), - [anon_sym_union] = ACTIONS(3864), - [anon_sym_if] = ACTIONS(3864), - [anon_sym_else] = ACTIONS(3864), - [anon_sym_switch] = ACTIONS(3864), - [anon_sym_case] = ACTIONS(3864), - [anon_sym_default] = ACTIONS(3864), - [anon_sym_while] = ACTIONS(3864), - [anon_sym_do] = ACTIONS(3864), - [anon_sym_for] = ACTIONS(3864), - [anon_sym_return] = ACTIONS(3864), - [anon_sym_break] = ACTIONS(3864), - [anon_sym_continue] = ACTIONS(3864), - [anon_sym_goto] = ACTIONS(3864), - [anon_sym___try] = ACTIONS(3864), - [anon_sym___leave] = ACTIONS(3864), - [anon_sym_not] = ACTIONS(3864), - [anon_sym_compl] = ACTIONS(3864), - [anon_sym_DASH_DASH] = ACTIONS(3866), - [anon_sym_PLUS_PLUS] = ACTIONS(3866), - [anon_sym_sizeof] = ACTIONS(3864), - [anon_sym___alignof__] = ACTIONS(3864), - [anon_sym___alignof] = ACTIONS(3864), - [anon_sym__alignof] = ACTIONS(3864), - [anon_sym_alignof] = ACTIONS(3864), - [anon_sym__Alignof] = ACTIONS(3864), - [anon_sym_offsetof] = ACTIONS(3864), - [anon_sym__Generic] = ACTIONS(3864), - [anon_sym_typename] = ACTIONS(3864), - [anon_sym_asm] = ACTIONS(3864), - [anon_sym___asm__] = ACTIONS(3864), - [anon_sym___asm] = ACTIONS(3864), - [sym_number_literal] = ACTIONS(3866), - [anon_sym_L_SQUOTE] = ACTIONS(3866), - [anon_sym_u_SQUOTE] = ACTIONS(3866), - [anon_sym_U_SQUOTE] = ACTIONS(3866), - [anon_sym_u8_SQUOTE] = ACTIONS(3866), - [anon_sym_SQUOTE] = ACTIONS(3866), - [anon_sym_L_DQUOTE] = ACTIONS(3866), - [anon_sym_u_DQUOTE] = ACTIONS(3866), - [anon_sym_U_DQUOTE] = ACTIONS(3866), - [anon_sym_u8_DQUOTE] = ACTIONS(3866), - [anon_sym_DQUOTE] = ACTIONS(3866), - [sym_true] = ACTIONS(3864), - [sym_false] = ACTIONS(3864), - [anon_sym_NULL] = ACTIONS(3864), - [anon_sym_nullptr] = ACTIONS(3864), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3864), - [anon_sym_decltype] = ACTIONS(3864), - [anon_sym_explicit] = ACTIONS(3864), - [anon_sym_export] = ACTIONS(3864), - [anon_sym_module] = ACTIONS(3864), - [anon_sym_import] = ACTIONS(3864), - [anon_sym_template] = ACTIONS(3864), - [anon_sym_operator] = ACTIONS(3864), - [anon_sym_try] = ACTIONS(3864), - [anon_sym_delete] = ACTIONS(3864), - [anon_sym_throw] = ACTIONS(3864), - [anon_sym_namespace] = ACTIONS(3864), - [anon_sym_static_assert] = ACTIONS(3864), - [anon_sym_concept] = ACTIONS(3864), - [anon_sym_co_return] = ACTIONS(3864), - [anon_sym_co_yield] = ACTIONS(3864), - [anon_sym_R_DQUOTE] = ACTIONS(3866), - [anon_sym_LR_DQUOTE] = ACTIONS(3866), - [anon_sym_uR_DQUOTE] = ACTIONS(3866), - [anon_sym_UR_DQUOTE] = ACTIONS(3866), - [anon_sym_u8R_DQUOTE] = ACTIONS(3866), - [anon_sym_co_await] = ACTIONS(3864), - [anon_sym_new] = ACTIONS(3864), - [anon_sym_requires] = ACTIONS(3864), - [anon_sym_CARET_CARET] = ACTIONS(3866), - [anon_sym_LBRACK_COLON] = ACTIONS(3866), - [sym_this] = ACTIONS(3864), - }, - [STATE(509)] = { - [ts_builtin_sym_end] = ACTIONS(3662), - [sym_identifier] = ACTIONS(3660), - [aux_sym_preproc_include_token1] = ACTIONS(3660), - [aux_sym_preproc_def_token1] = ACTIONS(3660), - [aux_sym_preproc_if_token1] = ACTIONS(3660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3660), - [sym_preproc_directive] = ACTIONS(3660), - [anon_sym_LPAREN2] = ACTIONS(3662), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_TILDE] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym___extension__] = ACTIONS(3660), - [anon_sym_typedef] = ACTIONS(3660), - [anon_sym_virtual] = ACTIONS(3660), - [anon_sym_extern] = ACTIONS(3660), - [anon_sym___attribute__] = ACTIONS(3660), - [anon_sym___attribute] = ACTIONS(3660), - [anon_sym_using] = ACTIONS(3660), - [anon_sym_COLON_COLON] = ACTIONS(3662), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), - [anon_sym___declspec] = ACTIONS(3660), - [anon_sym___based] = ACTIONS(3660), - [anon_sym___cdecl] = ACTIONS(3660), - [anon_sym___clrcall] = ACTIONS(3660), - [anon_sym___stdcall] = ACTIONS(3660), - [anon_sym___fastcall] = ACTIONS(3660), - [anon_sym___thiscall] = ACTIONS(3660), - [anon_sym___vectorcall] = ACTIONS(3660), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_signed] = ACTIONS(3660), - [anon_sym_unsigned] = ACTIONS(3660), - [anon_sym_long] = ACTIONS(3660), - [anon_sym_short] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_static] = ACTIONS(3660), - [anon_sym_register] = ACTIONS(3660), - [anon_sym_inline] = ACTIONS(3660), - [anon_sym___inline] = ACTIONS(3660), - [anon_sym___inline__] = ACTIONS(3660), - [anon_sym___forceinline] = ACTIONS(3660), - [anon_sym_thread_local] = ACTIONS(3660), - [anon_sym___thread] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3660), - [anon_sym_constexpr] = ACTIONS(3660), - [anon_sym_volatile] = ACTIONS(3660), - [anon_sym_restrict] = ACTIONS(3660), - [anon_sym___restrict__] = ACTIONS(3660), - [anon_sym__Atomic] = ACTIONS(3660), - [anon_sym__Noreturn] = ACTIONS(3660), - [anon_sym_noreturn] = ACTIONS(3660), - [anon_sym__Nonnull] = ACTIONS(3660), - [anon_sym_mutable] = ACTIONS(3660), - [anon_sym_constinit] = ACTIONS(3660), - [anon_sym_consteval] = ACTIONS(3660), - [anon_sym_alignas] = ACTIONS(3660), - [anon_sym__Alignas] = ACTIONS(3660), - [sym_primitive_type] = ACTIONS(3660), - [anon_sym_enum] = ACTIONS(3660), - [anon_sym_class] = ACTIONS(3660), - [anon_sym_struct] = ACTIONS(3660), - [anon_sym_union] = ACTIONS(3660), - [anon_sym_if] = ACTIONS(3660), - [anon_sym_else] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_case] = ACTIONS(3660), - [anon_sym_default] = ACTIONS(3660), - [anon_sym_while] = ACTIONS(3660), - [anon_sym_do] = ACTIONS(3660), - [anon_sym_for] = ACTIONS(3660), - [anon_sym_return] = ACTIONS(3660), - [anon_sym_break] = ACTIONS(3660), - [anon_sym_continue] = ACTIONS(3660), - [anon_sym_goto] = ACTIONS(3660), - [anon_sym___try] = ACTIONS(3660), - [anon_sym___leave] = ACTIONS(3660), - [anon_sym_not] = ACTIONS(3660), - [anon_sym_compl] = ACTIONS(3660), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_sizeof] = ACTIONS(3660), - [anon_sym___alignof__] = ACTIONS(3660), - [anon_sym___alignof] = ACTIONS(3660), - [anon_sym__alignof] = ACTIONS(3660), - [anon_sym_alignof] = ACTIONS(3660), - [anon_sym__Alignof] = ACTIONS(3660), - [anon_sym_offsetof] = ACTIONS(3660), - [anon_sym__Generic] = ACTIONS(3660), - [anon_sym_typename] = ACTIONS(3660), - [anon_sym_asm] = ACTIONS(3660), - [anon_sym___asm__] = ACTIONS(3660), - [anon_sym___asm] = ACTIONS(3660), - [sym_number_literal] = ACTIONS(3662), - [anon_sym_L_SQUOTE] = ACTIONS(3662), - [anon_sym_u_SQUOTE] = ACTIONS(3662), - [anon_sym_U_SQUOTE] = ACTIONS(3662), - [anon_sym_u8_SQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3662), - [anon_sym_L_DQUOTE] = ACTIONS(3662), - [anon_sym_u_DQUOTE] = ACTIONS(3662), - [anon_sym_U_DQUOTE] = ACTIONS(3662), - [anon_sym_u8_DQUOTE] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3662), - [sym_true] = ACTIONS(3660), - [sym_false] = ACTIONS(3660), - [anon_sym_NULL] = ACTIONS(3660), - [anon_sym_nullptr] = ACTIONS(3660), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3660), - [anon_sym_decltype] = ACTIONS(3660), - [anon_sym_explicit] = ACTIONS(3660), - [anon_sym_export] = ACTIONS(3660), - [anon_sym_module] = ACTIONS(3660), - [anon_sym_import] = ACTIONS(3660), - [anon_sym_template] = ACTIONS(3660), - [anon_sym_operator] = ACTIONS(3660), - [anon_sym_try] = ACTIONS(3660), - [anon_sym_delete] = ACTIONS(3660), - [anon_sym_throw] = ACTIONS(3660), - [anon_sym_namespace] = ACTIONS(3660), - [anon_sym_static_assert] = ACTIONS(3660), - [anon_sym_concept] = ACTIONS(3660), - [anon_sym_co_return] = ACTIONS(3660), - [anon_sym_co_yield] = ACTIONS(3660), - [anon_sym_R_DQUOTE] = ACTIONS(3662), - [anon_sym_LR_DQUOTE] = ACTIONS(3662), - [anon_sym_uR_DQUOTE] = ACTIONS(3662), - [anon_sym_UR_DQUOTE] = ACTIONS(3662), - [anon_sym_u8R_DQUOTE] = ACTIONS(3662), - [anon_sym_co_await] = ACTIONS(3660), - [anon_sym_new] = ACTIONS(3660), - [anon_sym_requires] = ACTIONS(3660), - [anon_sym_CARET_CARET] = ACTIONS(3662), - [anon_sym_LBRACK_COLON] = ACTIONS(3662), - [sym_this] = ACTIONS(3660), - }, - [STATE(510)] = { - [sym_identifier] = ACTIONS(4134), - [aux_sym_preproc_include_token1] = ACTIONS(4134), - [aux_sym_preproc_def_token1] = ACTIONS(4134), - [aux_sym_preproc_if_token1] = ACTIONS(4134), - [aux_sym_preproc_if_token2] = ACTIONS(4134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4134), - [aux_sym_preproc_else_token1] = ACTIONS(4134), - [aux_sym_preproc_elif_token1] = ACTIONS(4134), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4134), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4134), - [sym_preproc_directive] = ACTIONS(4134), - [anon_sym_LPAREN2] = ACTIONS(4136), - [anon_sym_BANG] = ACTIONS(4136), - [anon_sym_TILDE] = ACTIONS(4136), - [anon_sym_DASH] = ACTIONS(4134), - [anon_sym_PLUS] = ACTIONS(4134), - [anon_sym_STAR] = ACTIONS(4136), - [anon_sym_AMP_AMP] = ACTIONS(4136), - [anon_sym_AMP] = ACTIONS(4134), - [anon_sym_SEMI] = ACTIONS(4136), - [anon_sym___extension__] = ACTIONS(4134), - [anon_sym_typedef] = ACTIONS(4134), - [anon_sym_virtual] = ACTIONS(4134), - [anon_sym_extern] = ACTIONS(4134), - [anon_sym___attribute__] = ACTIONS(4134), - [anon_sym___attribute] = ACTIONS(4134), - [anon_sym_using] = ACTIONS(4134), - [anon_sym_COLON_COLON] = ACTIONS(4136), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4136), - [anon_sym___declspec] = ACTIONS(4134), - [anon_sym___based] = ACTIONS(4134), - [anon_sym___cdecl] = ACTIONS(4134), - [anon_sym___clrcall] = ACTIONS(4134), - [anon_sym___stdcall] = ACTIONS(4134), - [anon_sym___fastcall] = ACTIONS(4134), - [anon_sym___thiscall] = ACTIONS(4134), - [anon_sym___vectorcall] = ACTIONS(4134), - [anon_sym_LBRACE] = ACTIONS(4136), - [anon_sym_signed] = ACTIONS(4134), - [anon_sym_unsigned] = ACTIONS(4134), - [anon_sym_long] = ACTIONS(4134), - [anon_sym_short] = ACTIONS(4134), - [anon_sym_LBRACK] = ACTIONS(4134), - [anon_sym_static] = ACTIONS(4134), - [anon_sym_register] = ACTIONS(4134), - [anon_sym_inline] = ACTIONS(4134), - [anon_sym___inline] = ACTIONS(4134), - [anon_sym___inline__] = ACTIONS(4134), - [anon_sym___forceinline] = ACTIONS(4134), - [anon_sym_thread_local] = ACTIONS(4134), - [anon_sym___thread] = ACTIONS(4134), - [anon_sym_const] = ACTIONS(4134), - [anon_sym_constexpr] = ACTIONS(4134), - [anon_sym_volatile] = ACTIONS(4134), - [anon_sym_restrict] = ACTIONS(4134), - [anon_sym___restrict__] = ACTIONS(4134), - [anon_sym__Atomic] = ACTIONS(4134), - [anon_sym__Noreturn] = ACTIONS(4134), - [anon_sym_noreturn] = ACTIONS(4134), - [anon_sym__Nonnull] = ACTIONS(4134), - [anon_sym_mutable] = ACTIONS(4134), - [anon_sym_constinit] = ACTIONS(4134), - [anon_sym_consteval] = ACTIONS(4134), - [anon_sym_alignas] = ACTIONS(4134), - [anon_sym__Alignas] = ACTIONS(4134), - [sym_primitive_type] = ACTIONS(4134), - [anon_sym_enum] = ACTIONS(4134), - [anon_sym_class] = ACTIONS(4134), - [anon_sym_struct] = ACTIONS(4134), - [anon_sym_union] = ACTIONS(4134), - [anon_sym_if] = ACTIONS(4134), - [anon_sym_switch] = ACTIONS(4134), - [anon_sym_case] = ACTIONS(4134), - [anon_sym_default] = ACTIONS(4134), - [anon_sym_while] = ACTIONS(4134), - [anon_sym_do] = ACTIONS(4134), - [anon_sym_for] = ACTIONS(4134), - [anon_sym_return] = ACTIONS(4134), - [anon_sym_break] = ACTIONS(4134), - [anon_sym_continue] = ACTIONS(4134), - [anon_sym_goto] = ACTIONS(4134), - [anon_sym___try] = ACTIONS(4134), - [anon_sym___leave] = ACTIONS(4134), - [anon_sym_not] = ACTIONS(4134), - [anon_sym_compl] = ACTIONS(4134), - [anon_sym_DASH_DASH] = ACTIONS(4136), - [anon_sym_PLUS_PLUS] = ACTIONS(4136), - [anon_sym_sizeof] = ACTIONS(4134), - [anon_sym___alignof__] = ACTIONS(4134), - [anon_sym___alignof] = ACTIONS(4134), - [anon_sym__alignof] = ACTIONS(4134), - [anon_sym_alignof] = ACTIONS(4134), - [anon_sym__Alignof] = ACTIONS(4134), - [anon_sym_offsetof] = ACTIONS(4134), - [anon_sym__Generic] = ACTIONS(4134), - [anon_sym_typename] = ACTIONS(4134), - [anon_sym_asm] = ACTIONS(4134), - [anon_sym___asm__] = ACTIONS(4134), - [anon_sym___asm] = ACTIONS(4134), - [sym_number_literal] = ACTIONS(4136), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4136), - [anon_sym_u_DQUOTE] = ACTIONS(4136), - [anon_sym_U_DQUOTE] = ACTIONS(4136), - [anon_sym_u8_DQUOTE] = ACTIONS(4136), - [anon_sym_DQUOTE] = ACTIONS(4136), - [sym_true] = ACTIONS(4134), - [sym_false] = ACTIONS(4134), - [anon_sym_NULL] = ACTIONS(4134), - [anon_sym_nullptr] = ACTIONS(4134), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4134), - [anon_sym_decltype] = ACTIONS(4134), - [anon_sym_explicit] = ACTIONS(4134), - [anon_sym_template] = ACTIONS(4134), - [anon_sym_operator] = ACTIONS(4134), - [anon_sym_try] = ACTIONS(4134), - [anon_sym_delete] = ACTIONS(4134), - [anon_sym_throw] = ACTIONS(4134), - [anon_sym_namespace] = ACTIONS(4134), - [anon_sym_static_assert] = ACTIONS(4134), - [anon_sym_concept] = ACTIONS(4134), - [anon_sym_co_return] = ACTIONS(4134), - [anon_sym_co_yield] = ACTIONS(4134), - [anon_sym_R_DQUOTE] = ACTIONS(4136), - [anon_sym_LR_DQUOTE] = ACTIONS(4136), - [anon_sym_uR_DQUOTE] = ACTIONS(4136), - [anon_sym_UR_DQUOTE] = ACTIONS(4136), - [anon_sym_u8R_DQUOTE] = ACTIONS(4136), - [anon_sym_co_await] = ACTIONS(4134), - [anon_sym_new] = ACTIONS(4134), - [anon_sym_requires] = ACTIONS(4134), - [anon_sym_CARET_CARET] = ACTIONS(4136), - [anon_sym_LBRACK_COLON] = ACTIONS(4136), - [sym_this] = ACTIONS(4134), - }, - [STATE(511)] = { - [ts_builtin_sym_end] = ACTIONS(3714), - [sym_identifier] = ACTIONS(3712), - [aux_sym_preproc_include_token1] = ACTIONS(3712), - [aux_sym_preproc_def_token1] = ACTIONS(3712), - [aux_sym_preproc_if_token1] = ACTIONS(3712), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3712), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3712), - [sym_preproc_directive] = ACTIONS(3712), - [anon_sym_LPAREN2] = ACTIONS(3714), - [anon_sym_BANG] = ACTIONS(3714), - [anon_sym_TILDE] = ACTIONS(3714), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3714), - [anon_sym_AMP_AMP] = ACTIONS(3714), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_SEMI] = ACTIONS(3714), - [anon_sym___extension__] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3712), - [anon_sym_virtual] = ACTIONS(3712), - [anon_sym_extern] = ACTIONS(3712), - [anon_sym___attribute__] = ACTIONS(3712), - [anon_sym___attribute] = ACTIONS(3712), - [anon_sym_using] = ACTIONS(3712), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3714), - [anon_sym___declspec] = ACTIONS(3712), - [anon_sym___based] = ACTIONS(3712), - [anon_sym___cdecl] = ACTIONS(3712), - [anon_sym___clrcall] = ACTIONS(3712), - [anon_sym___stdcall] = ACTIONS(3712), - [anon_sym___fastcall] = ACTIONS(3712), - [anon_sym___thiscall] = ACTIONS(3712), - [anon_sym___vectorcall] = ACTIONS(3712), - [anon_sym_LBRACE] = ACTIONS(3714), - [anon_sym_signed] = ACTIONS(3712), - [anon_sym_unsigned] = ACTIONS(3712), - [anon_sym_long] = ACTIONS(3712), - [anon_sym_short] = ACTIONS(3712), - [anon_sym_LBRACK] = ACTIONS(3712), - [anon_sym_static] = ACTIONS(3712), - [anon_sym_register] = ACTIONS(3712), - [anon_sym_inline] = ACTIONS(3712), - [anon_sym___inline] = ACTIONS(3712), - [anon_sym___inline__] = ACTIONS(3712), - [anon_sym___forceinline] = ACTIONS(3712), - [anon_sym_thread_local] = ACTIONS(3712), - [anon_sym___thread] = ACTIONS(3712), - [anon_sym_const] = ACTIONS(3712), - [anon_sym_constexpr] = ACTIONS(3712), - [anon_sym_volatile] = ACTIONS(3712), - [anon_sym_restrict] = ACTIONS(3712), - [anon_sym___restrict__] = ACTIONS(3712), - [anon_sym__Atomic] = ACTIONS(3712), - [anon_sym__Noreturn] = ACTIONS(3712), - [anon_sym_noreturn] = ACTIONS(3712), - [anon_sym__Nonnull] = ACTIONS(3712), - [anon_sym_mutable] = ACTIONS(3712), - [anon_sym_constinit] = ACTIONS(3712), - [anon_sym_consteval] = ACTIONS(3712), - [anon_sym_alignas] = ACTIONS(3712), - [anon_sym__Alignas] = ACTIONS(3712), - [sym_primitive_type] = ACTIONS(3712), - [anon_sym_enum] = ACTIONS(3712), - [anon_sym_class] = ACTIONS(3712), - [anon_sym_struct] = ACTIONS(3712), - [anon_sym_union] = ACTIONS(3712), - [anon_sym_if] = ACTIONS(3712), - [anon_sym_else] = ACTIONS(3712), - [anon_sym_switch] = ACTIONS(3712), - [anon_sym_case] = ACTIONS(3712), - [anon_sym_default] = ACTIONS(3712), - [anon_sym_while] = ACTIONS(3712), - [anon_sym_do] = ACTIONS(3712), - [anon_sym_for] = ACTIONS(3712), - [anon_sym_return] = ACTIONS(3712), - [anon_sym_break] = ACTIONS(3712), - [anon_sym_continue] = ACTIONS(3712), - [anon_sym_goto] = ACTIONS(3712), - [anon_sym___try] = ACTIONS(3712), - [anon_sym___leave] = ACTIONS(3712), - [anon_sym_not] = ACTIONS(3712), - [anon_sym_compl] = ACTIONS(3712), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_sizeof] = ACTIONS(3712), - [anon_sym___alignof__] = ACTIONS(3712), - [anon_sym___alignof] = ACTIONS(3712), - [anon_sym__alignof] = ACTIONS(3712), - [anon_sym_alignof] = ACTIONS(3712), - [anon_sym__Alignof] = ACTIONS(3712), - [anon_sym_offsetof] = ACTIONS(3712), - [anon_sym__Generic] = ACTIONS(3712), - [anon_sym_typename] = ACTIONS(3712), - [anon_sym_asm] = ACTIONS(3712), - [anon_sym___asm__] = ACTIONS(3712), - [anon_sym___asm] = ACTIONS(3712), - [sym_number_literal] = ACTIONS(3714), - [anon_sym_L_SQUOTE] = ACTIONS(3714), - [anon_sym_u_SQUOTE] = ACTIONS(3714), - [anon_sym_U_SQUOTE] = ACTIONS(3714), - [anon_sym_u8_SQUOTE] = ACTIONS(3714), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_L_DQUOTE] = ACTIONS(3714), - [anon_sym_u_DQUOTE] = ACTIONS(3714), - [anon_sym_U_DQUOTE] = ACTIONS(3714), - [anon_sym_u8_DQUOTE] = ACTIONS(3714), - [anon_sym_DQUOTE] = ACTIONS(3714), - [sym_true] = ACTIONS(3712), - [sym_false] = ACTIONS(3712), - [anon_sym_NULL] = ACTIONS(3712), - [anon_sym_nullptr] = ACTIONS(3712), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3712), - [anon_sym_decltype] = ACTIONS(3712), - [anon_sym_explicit] = ACTIONS(3712), - [anon_sym_export] = ACTIONS(3712), - [anon_sym_module] = ACTIONS(3712), - [anon_sym_import] = ACTIONS(3712), - [anon_sym_template] = ACTIONS(3712), - [anon_sym_operator] = ACTIONS(3712), - [anon_sym_try] = ACTIONS(3712), - [anon_sym_delete] = ACTIONS(3712), - [anon_sym_throw] = ACTIONS(3712), - [anon_sym_namespace] = ACTIONS(3712), - [anon_sym_static_assert] = ACTIONS(3712), - [anon_sym_concept] = ACTIONS(3712), - [anon_sym_co_return] = ACTIONS(3712), - [anon_sym_co_yield] = ACTIONS(3712), - [anon_sym_R_DQUOTE] = ACTIONS(3714), - [anon_sym_LR_DQUOTE] = ACTIONS(3714), - [anon_sym_uR_DQUOTE] = ACTIONS(3714), - [anon_sym_UR_DQUOTE] = ACTIONS(3714), - [anon_sym_u8R_DQUOTE] = ACTIONS(3714), - [anon_sym_co_await] = ACTIONS(3712), - [anon_sym_new] = ACTIONS(3712), - [anon_sym_requires] = ACTIONS(3712), - [anon_sym_CARET_CARET] = ACTIONS(3714), - [anon_sym_LBRACK_COLON] = ACTIONS(3714), - [sym_this] = ACTIONS(3712), - }, - [STATE(512)] = { - [sym_identifier] = ACTIONS(4138), - [aux_sym_preproc_include_token1] = ACTIONS(4138), - [aux_sym_preproc_def_token1] = ACTIONS(4138), - [aux_sym_preproc_if_token1] = ACTIONS(4138), - [aux_sym_preproc_if_token2] = ACTIONS(4138), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4138), - [aux_sym_preproc_else_token1] = ACTIONS(4138), - [aux_sym_preproc_elif_token1] = ACTIONS(4138), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4138), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4138), - [sym_preproc_directive] = ACTIONS(4138), - [anon_sym_LPAREN2] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4141), - [anon_sym_TILDE] = ACTIONS(4141), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4141), - [anon_sym_AMP_AMP] = ACTIONS(4141), - [anon_sym_AMP] = ACTIONS(4138), - [anon_sym_SEMI] = ACTIONS(4141), - [anon_sym___extension__] = ACTIONS(4138), - [anon_sym_typedef] = ACTIONS(4138), - [anon_sym_virtual] = ACTIONS(4138), - [anon_sym_extern] = ACTIONS(4138), - [anon_sym___attribute__] = ACTIONS(4138), - [anon_sym___attribute] = ACTIONS(4138), - [anon_sym_using] = ACTIONS(4138), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4141), - [anon_sym___declspec] = ACTIONS(4138), - [anon_sym___based] = ACTIONS(4138), - [anon_sym___cdecl] = ACTIONS(4138), - [anon_sym___clrcall] = ACTIONS(4138), - [anon_sym___stdcall] = ACTIONS(4138), - [anon_sym___fastcall] = ACTIONS(4138), - [anon_sym___thiscall] = ACTIONS(4138), - [anon_sym___vectorcall] = ACTIONS(4138), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_signed] = ACTIONS(4138), - [anon_sym_unsigned] = ACTIONS(4138), - [anon_sym_long] = ACTIONS(4138), - [anon_sym_short] = ACTIONS(4138), - [anon_sym_LBRACK] = ACTIONS(4138), - [anon_sym_static] = ACTIONS(4138), - [anon_sym_register] = ACTIONS(4138), - [anon_sym_inline] = ACTIONS(4138), - [anon_sym___inline] = ACTIONS(4138), - [anon_sym___inline__] = ACTIONS(4138), - [anon_sym___forceinline] = ACTIONS(4138), - [anon_sym_thread_local] = ACTIONS(4138), - [anon_sym___thread] = ACTIONS(4138), - [anon_sym_const] = ACTIONS(4138), - [anon_sym_constexpr] = ACTIONS(4138), - [anon_sym_volatile] = ACTIONS(4138), - [anon_sym_restrict] = ACTIONS(4138), - [anon_sym___restrict__] = ACTIONS(4138), - [anon_sym__Atomic] = ACTIONS(4138), - [anon_sym__Noreturn] = ACTIONS(4138), - [anon_sym_noreturn] = ACTIONS(4138), - [anon_sym__Nonnull] = ACTIONS(4138), - [anon_sym_mutable] = ACTIONS(4138), - [anon_sym_constinit] = ACTIONS(4138), - [anon_sym_consteval] = ACTIONS(4138), - [anon_sym_alignas] = ACTIONS(4138), - [anon_sym__Alignas] = ACTIONS(4138), - [sym_primitive_type] = ACTIONS(4138), - [anon_sym_enum] = ACTIONS(4138), - [anon_sym_class] = ACTIONS(4138), - [anon_sym_struct] = ACTIONS(4138), - [anon_sym_union] = ACTIONS(4138), - [anon_sym_if] = ACTIONS(4138), - [anon_sym_switch] = ACTIONS(4138), - [anon_sym_case] = ACTIONS(4138), - [anon_sym_default] = ACTIONS(4138), - [anon_sym_while] = ACTIONS(4138), - [anon_sym_do] = ACTIONS(4138), - [anon_sym_for] = ACTIONS(4138), - [anon_sym_return] = ACTIONS(4138), - [anon_sym_break] = ACTIONS(4138), - [anon_sym_continue] = ACTIONS(4138), - [anon_sym_goto] = ACTIONS(4138), - [anon_sym___try] = ACTIONS(4138), - [anon_sym___leave] = ACTIONS(4138), - [anon_sym_not] = ACTIONS(4138), - [anon_sym_compl] = ACTIONS(4138), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_sizeof] = ACTIONS(4138), - [anon_sym___alignof__] = ACTIONS(4138), - [anon_sym___alignof] = ACTIONS(4138), - [anon_sym__alignof] = ACTIONS(4138), - [anon_sym_alignof] = ACTIONS(4138), - [anon_sym__Alignof] = ACTIONS(4138), - [anon_sym_offsetof] = ACTIONS(4138), - [anon_sym__Generic] = ACTIONS(4138), - [anon_sym_typename] = ACTIONS(4138), - [anon_sym_asm] = ACTIONS(4138), - [anon_sym___asm__] = ACTIONS(4138), - [anon_sym___asm] = ACTIONS(4138), - [sym_number_literal] = ACTIONS(4141), - [anon_sym_L_SQUOTE] = ACTIONS(4141), - [anon_sym_u_SQUOTE] = ACTIONS(4141), - [anon_sym_U_SQUOTE] = ACTIONS(4141), - [anon_sym_u8_SQUOTE] = ACTIONS(4141), - [anon_sym_SQUOTE] = ACTIONS(4141), - [anon_sym_L_DQUOTE] = ACTIONS(4141), - [anon_sym_u_DQUOTE] = ACTIONS(4141), - [anon_sym_U_DQUOTE] = ACTIONS(4141), - [anon_sym_u8_DQUOTE] = ACTIONS(4141), - [anon_sym_DQUOTE] = ACTIONS(4141), - [sym_true] = ACTIONS(4138), - [sym_false] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_nullptr] = ACTIONS(4138), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4138), - [anon_sym_decltype] = ACTIONS(4138), - [anon_sym_explicit] = ACTIONS(4138), - [anon_sym_template] = ACTIONS(4138), - [anon_sym_operator] = ACTIONS(4138), - [anon_sym_try] = ACTIONS(4138), - [anon_sym_delete] = ACTIONS(4138), - [anon_sym_throw] = ACTIONS(4138), - [anon_sym_namespace] = ACTIONS(4138), - [anon_sym_static_assert] = ACTIONS(4138), - [anon_sym_concept] = ACTIONS(4138), - [anon_sym_co_return] = ACTIONS(4138), - [anon_sym_co_yield] = ACTIONS(4138), - [anon_sym_R_DQUOTE] = ACTIONS(4141), - [anon_sym_LR_DQUOTE] = ACTIONS(4141), - [anon_sym_uR_DQUOTE] = ACTIONS(4141), - [anon_sym_UR_DQUOTE] = ACTIONS(4141), - [anon_sym_u8R_DQUOTE] = ACTIONS(4141), - [anon_sym_co_await] = ACTIONS(4138), - [anon_sym_new] = ACTIONS(4138), - [anon_sym_requires] = ACTIONS(4138), - [anon_sym_CARET_CARET] = ACTIONS(4141), - [anon_sym_LBRACK_COLON] = ACTIONS(4141), - [sym_this] = ACTIONS(4138), - }, - [STATE(513)] = { - [sym_identifier] = ACTIONS(4144), - [aux_sym_preproc_include_token1] = ACTIONS(4144), - [aux_sym_preproc_def_token1] = ACTIONS(4144), - [aux_sym_preproc_if_token1] = ACTIONS(4144), - [aux_sym_preproc_if_token2] = ACTIONS(4144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4144), - [aux_sym_preproc_else_token1] = ACTIONS(4144), - [aux_sym_preproc_elif_token1] = ACTIONS(4144), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4144), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4144), - [sym_preproc_directive] = ACTIONS(4144), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_TILDE] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4144), - [anon_sym_STAR] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_AMP] = ACTIONS(4144), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_typedef] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_using] = ACTIONS(4144), - [anon_sym_COLON_COLON] = ACTIONS(4146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4146), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym___cdecl] = ACTIONS(4144), - [anon_sym___clrcall] = ACTIONS(4144), - [anon_sym___stdcall] = ACTIONS(4144), - [anon_sym___fastcall] = ACTIONS(4144), - [anon_sym___thiscall] = ACTIONS(4144), - [anon_sym___vectorcall] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4146), - [anon_sym_signed] = ACTIONS(4144), - [anon_sym_unsigned] = ACTIONS(4144), - [anon_sym_long] = ACTIONS(4144), - [anon_sym_short] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [sym_primitive_type] = ACTIONS(4144), - [anon_sym_enum] = ACTIONS(4144), - [anon_sym_class] = ACTIONS(4144), - [anon_sym_struct] = ACTIONS(4144), - [anon_sym_union] = ACTIONS(4144), - [anon_sym_if] = ACTIONS(4144), - [anon_sym_switch] = ACTIONS(4144), - [anon_sym_case] = ACTIONS(4144), - [anon_sym_default] = ACTIONS(4144), - [anon_sym_while] = ACTIONS(4144), - [anon_sym_do] = ACTIONS(4144), - [anon_sym_for] = ACTIONS(4144), - [anon_sym_return] = ACTIONS(4144), - [anon_sym_break] = ACTIONS(4144), - [anon_sym_continue] = ACTIONS(4144), - [anon_sym_goto] = ACTIONS(4144), - [anon_sym___try] = ACTIONS(4144), - [anon_sym___leave] = ACTIONS(4144), - [anon_sym_not] = ACTIONS(4144), - [anon_sym_compl] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_sizeof] = ACTIONS(4144), - [anon_sym___alignof__] = ACTIONS(4144), - [anon_sym___alignof] = ACTIONS(4144), - [anon_sym__alignof] = ACTIONS(4144), - [anon_sym_alignof] = ACTIONS(4144), - [anon_sym__Alignof] = ACTIONS(4144), - [anon_sym_offsetof] = ACTIONS(4144), - [anon_sym__Generic] = ACTIONS(4144), - [anon_sym_typename] = ACTIONS(4144), - [anon_sym_asm] = ACTIONS(4144), - [anon_sym___asm__] = ACTIONS(4144), - [anon_sym___asm] = ACTIONS(4144), - [sym_number_literal] = ACTIONS(4146), - [anon_sym_L_SQUOTE] = ACTIONS(4146), - [anon_sym_u_SQUOTE] = ACTIONS(4146), - [anon_sym_U_SQUOTE] = ACTIONS(4146), - [anon_sym_u8_SQUOTE] = ACTIONS(4146), - [anon_sym_SQUOTE] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(4146), - [anon_sym_u_DQUOTE] = ACTIONS(4146), - [anon_sym_U_DQUOTE] = ACTIONS(4146), - [anon_sym_u8_DQUOTE] = ACTIONS(4146), - [anon_sym_DQUOTE] = ACTIONS(4146), - [sym_true] = ACTIONS(4144), - [sym_false] = ACTIONS(4144), - [anon_sym_NULL] = ACTIONS(4144), - [anon_sym_nullptr] = ACTIONS(4144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_explicit] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_try] = ACTIONS(4144), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_throw] = ACTIONS(4144), - [anon_sym_namespace] = ACTIONS(4144), - [anon_sym_static_assert] = ACTIONS(4144), - [anon_sym_concept] = ACTIONS(4144), - [anon_sym_co_return] = ACTIONS(4144), - [anon_sym_co_yield] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4144), - [anon_sym_new] = ACTIONS(4144), - [anon_sym_requires] = ACTIONS(4144), - [anon_sym_CARET_CARET] = ACTIONS(4146), - [anon_sym_LBRACK_COLON] = ACTIONS(4146), - [sym_this] = ACTIONS(4144), - }, - [STATE(514)] = { - [ts_builtin_sym_end] = ACTIONS(3694), - [sym_identifier] = ACTIONS(3692), - [aux_sym_preproc_include_token1] = ACTIONS(3692), - [aux_sym_preproc_def_token1] = ACTIONS(3692), - [aux_sym_preproc_if_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3692), - [anon_sym_LPAREN2] = ACTIONS(3694), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_TILDE] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3692), - [anon_sym_PLUS] = ACTIONS(3692), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_AMP_AMP] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3694), - [anon_sym___extension__] = ACTIONS(3692), - [anon_sym_typedef] = ACTIONS(3692), - [anon_sym_virtual] = ACTIONS(3692), - [anon_sym_extern] = ACTIONS(3692), - [anon_sym___attribute__] = ACTIONS(3692), - [anon_sym___attribute] = ACTIONS(3692), - [anon_sym_using] = ACTIONS(3692), - [anon_sym_COLON_COLON] = ACTIONS(3694), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3694), - [anon_sym___declspec] = ACTIONS(3692), - [anon_sym___based] = ACTIONS(3692), - [anon_sym___cdecl] = ACTIONS(3692), - [anon_sym___clrcall] = ACTIONS(3692), - [anon_sym___stdcall] = ACTIONS(3692), - [anon_sym___fastcall] = ACTIONS(3692), - [anon_sym___thiscall] = ACTIONS(3692), - [anon_sym___vectorcall] = ACTIONS(3692), - [anon_sym_LBRACE] = ACTIONS(3694), - [anon_sym_signed] = ACTIONS(3692), - [anon_sym_unsigned] = ACTIONS(3692), - [anon_sym_long] = ACTIONS(3692), - [anon_sym_short] = ACTIONS(3692), - [anon_sym_LBRACK] = ACTIONS(3692), - [anon_sym_static] = ACTIONS(3692), - [anon_sym_register] = ACTIONS(3692), - [anon_sym_inline] = ACTIONS(3692), - [anon_sym___inline] = ACTIONS(3692), - [anon_sym___inline__] = ACTIONS(3692), - [anon_sym___forceinline] = ACTIONS(3692), - [anon_sym_thread_local] = ACTIONS(3692), - [anon_sym___thread] = ACTIONS(3692), - [anon_sym_const] = ACTIONS(3692), - [anon_sym_constexpr] = ACTIONS(3692), - [anon_sym_volatile] = ACTIONS(3692), - [anon_sym_restrict] = ACTIONS(3692), - [anon_sym___restrict__] = ACTIONS(3692), - [anon_sym__Atomic] = ACTIONS(3692), - [anon_sym__Noreturn] = ACTIONS(3692), - [anon_sym_noreturn] = ACTIONS(3692), - [anon_sym__Nonnull] = ACTIONS(3692), - [anon_sym_mutable] = ACTIONS(3692), - [anon_sym_constinit] = ACTIONS(3692), - [anon_sym_consteval] = ACTIONS(3692), - [anon_sym_alignas] = ACTIONS(3692), - [anon_sym__Alignas] = ACTIONS(3692), - [sym_primitive_type] = ACTIONS(3692), - [anon_sym_enum] = ACTIONS(3692), - [anon_sym_class] = ACTIONS(3692), - [anon_sym_struct] = ACTIONS(3692), - [anon_sym_union] = ACTIONS(3692), - [anon_sym_if] = ACTIONS(3692), - [anon_sym_else] = ACTIONS(3692), - [anon_sym_switch] = ACTIONS(3692), - [anon_sym_case] = ACTIONS(3692), - [anon_sym_default] = ACTIONS(3692), - [anon_sym_while] = ACTIONS(3692), - [anon_sym_do] = ACTIONS(3692), - [anon_sym_for] = ACTIONS(3692), - [anon_sym_return] = ACTIONS(3692), - [anon_sym_break] = ACTIONS(3692), - [anon_sym_continue] = ACTIONS(3692), - [anon_sym_goto] = ACTIONS(3692), - [anon_sym___try] = ACTIONS(3692), - [anon_sym___leave] = ACTIONS(3692), - [anon_sym_not] = ACTIONS(3692), - [anon_sym_compl] = ACTIONS(3692), - [anon_sym_DASH_DASH] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3694), - [anon_sym_sizeof] = ACTIONS(3692), - [anon_sym___alignof__] = ACTIONS(3692), - [anon_sym___alignof] = ACTIONS(3692), - [anon_sym__alignof] = ACTIONS(3692), - [anon_sym_alignof] = ACTIONS(3692), - [anon_sym__Alignof] = ACTIONS(3692), - [anon_sym_offsetof] = ACTIONS(3692), - [anon_sym__Generic] = ACTIONS(3692), - [anon_sym_typename] = ACTIONS(3692), - [anon_sym_asm] = ACTIONS(3692), - [anon_sym___asm__] = ACTIONS(3692), - [anon_sym___asm] = ACTIONS(3692), - [sym_number_literal] = ACTIONS(3694), - [anon_sym_L_SQUOTE] = ACTIONS(3694), - [anon_sym_u_SQUOTE] = ACTIONS(3694), - [anon_sym_U_SQUOTE] = ACTIONS(3694), - [anon_sym_u8_SQUOTE] = ACTIONS(3694), - [anon_sym_SQUOTE] = ACTIONS(3694), - [anon_sym_L_DQUOTE] = ACTIONS(3694), - [anon_sym_u_DQUOTE] = ACTIONS(3694), - [anon_sym_U_DQUOTE] = ACTIONS(3694), - [anon_sym_u8_DQUOTE] = ACTIONS(3694), - [anon_sym_DQUOTE] = ACTIONS(3694), - [sym_true] = ACTIONS(3692), - [sym_false] = ACTIONS(3692), - [anon_sym_NULL] = ACTIONS(3692), - [anon_sym_nullptr] = ACTIONS(3692), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3692), - [anon_sym_decltype] = ACTIONS(3692), - [anon_sym_explicit] = ACTIONS(3692), - [anon_sym_export] = ACTIONS(3692), - [anon_sym_module] = ACTIONS(3692), - [anon_sym_import] = ACTIONS(3692), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_operator] = ACTIONS(3692), - [anon_sym_try] = ACTIONS(3692), - [anon_sym_delete] = ACTIONS(3692), - [anon_sym_throw] = ACTIONS(3692), - [anon_sym_namespace] = ACTIONS(3692), - [anon_sym_static_assert] = ACTIONS(3692), - [anon_sym_concept] = ACTIONS(3692), - [anon_sym_co_return] = ACTIONS(3692), - [anon_sym_co_yield] = ACTIONS(3692), - [anon_sym_R_DQUOTE] = ACTIONS(3694), - [anon_sym_LR_DQUOTE] = ACTIONS(3694), - [anon_sym_uR_DQUOTE] = ACTIONS(3694), - [anon_sym_UR_DQUOTE] = ACTIONS(3694), - [anon_sym_u8R_DQUOTE] = ACTIONS(3694), - [anon_sym_co_await] = ACTIONS(3692), - [anon_sym_new] = ACTIONS(3692), - [anon_sym_requires] = ACTIONS(3692), - [anon_sym_CARET_CARET] = ACTIONS(3694), - [anon_sym_LBRACK_COLON] = ACTIONS(3694), - [sym_this] = ACTIONS(3692), - }, - [STATE(515)] = { - [ts_builtin_sym_end] = ACTIONS(3878), - [sym_identifier] = ACTIONS(3876), - [aux_sym_preproc_include_token1] = ACTIONS(3876), - [aux_sym_preproc_def_token1] = ACTIONS(3876), - [aux_sym_preproc_if_token1] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), - [sym_preproc_directive] = ACTIONS(3876), - [anon_sym_LPAREN2] = ACTIONS(3878), - [anon_sym_BANG] = ACTIONS(3878), - [anon_sym_TILDE] = ACTIONS(3878), - [anon_sym_DASH] = ACTIONS(3876), - [anon_sym_PLUS] = ACTIONS(3876), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_AMP_AMP] = ACTIONS(3878), - [anon_sym_AMP] = ACTIONS(3876), - [anon_sym_SEMI] = ACTIONS(3878), - [anon_sym___extension__] = ACTIONS(3876), - [anon_sym_typedef] = ACTIONS(3876), - [anon_sym_virtual] = ACTIONS(3876), - [anon_sym_extern] = ACTIONS(3876), - [anon_sym___attribute__] = ACTIONS(3876), - [anon_sym___attribute] = ACTIONS(3876), - [anon_sym_using] = ACTIONS(3876), - [anon_sym_COLON_COLON] = ACTIONS(3878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), - [anon_sym___declspec] = ACTIONS(3876), - [anon_sym___based] = ACTIONS(3876), - [anon_sym___cdecl] = ACTIONS(3876), - [anon_sym___clrcall] = ACTIONS(3876), - [anon_sym___stdcall] = ACTIONS(3876), - [anon_sym___fastcall] = ACTIONS(3876), - [anon_sym___thiscall] = ACTIONS(3876), - [anon_sym___vectorcall] = ACTIONS(3876), - [anon_sym_LBRACE] = ACTIONS(3878), - [anon_sym_signed] = ACTIONS(3876), - [anon_sym_unsigned] = ACTIONS(3876), - [anon_sym_long] = ACTIONS(3876), - [anon_sym_short] = ACTIONS(3876), - [anon_sym_LBRACK] = ACTIONS(3876), - [anon_sym_static] = ACTIONS(3876), - [anon_sym_register] = ACTIONS(3876), - [anon_sym_inline] = ACTIONS(3876), - [anon_sym___inline] = ACTIONS(3876), - [anon_sym___inline__] = ACTIONS(3876), - [anon_sym___forceinline] = ACTIONS(3876), - [anon_sym_thread_local] = ACTIONS(3876), - [anon_sym___thread] = ACTIONS(3876), - [anon_sym_const] = ACTIONS(3876), - [anon_sym_constexpr] = ACTIONS(3876), - [anon_sym_volatile] = ACTIONS(3876), - [anon_sym_restrict] = ACTIONS(3876), - [anon_sym___restrict__] = ACTIONS(3876), - [anon_sym__Atomic] = ACTIONS(3876), - [anon_sym__Noreturn] = ACTIONS(3876), - [anon_sym_noreturn] = ACTIONS(3876), - [anon_sym__Nonnull] = ACTIONS(3876), - [anon_sym_mutable] = ACTIONS(3876), - [anon_sym_constinit] = ACTIONS(3876), - [anon_sym_consteval] = ACTIONS(3876), - [anon_sym_alignas] = ACTIONS(3876), - [anon_sym__Alignas] = ACTIONS(3876), - [sym_primitive_type] = ACTIONS(3876), - [anon_sym_enum] = ACTIONS(3876), - [anon_sym_class] = ACTIONS(3876), - [anon_sym_struct] = ACTIONS(3876), - [anon_sym_union] = ACTIONS(3876), - [anon_sym_if] = ACTIONS(3876), - [anon_sym_else] = ACTIONS(3876), - [anon_sym_switch] = ACTIONS(3876), - [anon_sym_case] = ACTIONS(3876), - [anon_sym_default] = ACTIONS(3876), - [anon_sym_while] = ACTIONS(3876), - [anon_sym_do] = ACTIONS(3876), - [anon_sym_for] = ACTIONS(3876), - [anon_sym_return] = ACTIONS(3876), - [anon_sym_break] = ACTIONS(3876), - [anon_sym_continue] = ACTIONS(3876), - [anon_sym_goto] = ACTIONS(3876), - [anon_sym___try] = ACTIONS(3876), - [anon_sym___leave] = ACTIONS(3876), - [anon_sym_not] = ACTIONS(3876), - [anon_sym_compl] = ACTIONS(3876), - [anon_sym_DASH_DASH] = ACTIONS(3878), - [anon_sym_PLUS_PLUS] = ACTIONS(3878), - [anon_sym_sizeof] = ACTIONS(3876), - [anon_sym___alignof__] = ACTIONS(3876), - [anon_sym___alignof] = ACTIONS(3876), - [anon_sym__alignof] = ACTIONS(3876), - [anon_sym_alignof] = ACTIONS(3876), - [anon_sym__Alignof] = ACTIONS(3876), - [anon_sym_offsetof] = ACTIONS(3876), - [anon_sym__Generic] = ACTIONS(3876), - [anon_sym_typename] = ACTIONS(3876), - [anon_sym_asm] = ACTIONS(3876), - [anon_sym___asm__] = ACTIONS(3876), - [anon_sym___asm] = ACTIONS(3876), - [sym_number_literal] = ACTIONS(3878), - [anon_sym_L_SQUOTE] = ACTIONS(3878), - [anon_sym_u_SQUOTE] = ACTIONS(3878), - [anon_sym_U_SQUOTE] = ACTIONS(3878), - [anon_sym_u8_SQUOTE] = ACTIONS(3878), - [anon_sym_SQUOTE] = ACTIONS(3878), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(3876), - [sym_false] = ACTIONS(3876), - [anon_sym_NULL] = ACTIONS(3876), - [anon_sym_nullptr] = ACTIONS(3876), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3876), - [anon_sym_decltype] = ACTIONS(3876), - [anon_sym_explicit] = ACTIONS(3876), - [anon_sym_export] = ACTIONS(3876), - [anon_sym_module] = ACTIONS(3876), - [anon_sym_import] = ACTIONS(3876), - [anon_sym_template] = ACTIONS(3876), - [anon_sym_operator] = ACTIONS(3876), - [anon_sym_try] = ACTIONS(3876), - [anon_sym_delete] = ACTIONS(3876), - [anon_sym_throw] = ACTIONS(3876), - [anon_sym_namespace] = ACTIONS(3876), - [anon_sym_static_assert] = ACTIONS(3876), - [anon_sym_concept] = ACTIONS(3876), - [anon_sym_co_return] = ACTIONS(3876), - [anon_sym_co_yield] = ACTIONS(3876), - [anon_sym_R_DQUOTE] = ACTIONS(3878), - [anon_sym_LR_DQUOTE] = ACTIONS(3878), - [anon_sym_uR_DQUOTE] = ACTIONS(3878), - [anon_sym_UR_DQUOTE] = ACTIONS(3878), - [anon_sym_u8R_DQUOTE] = ACTIONS(3878), - [anon_sym_co_await] = ACTIONS(3876), - [anon_sym_new] = ACTIONS(3876), - [anon_sym_requires] = ACTIONS(3876), - [anon_sym_CARET_CARET] = ACTIONS(3878), - [anon_sym_LBRACK_COLON] = ACTIONS(3878), - [sym_this] = ACTIONS(3876), - }, - [STATE(516)] = { - [ts_builtin_sym_end] = ACTIONS(3878), - [sym_identifier] = ACTIONS(3876), - [aux_sym_preproc_include_token1] = ACTIONS(3876), - [aux_sym_preproc_def_token1] = ACTIONS(3876), - [aux_sym_preproc_if_token1] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), - [sym_preproc_directive] = ACTIONS(3876), - [anon_sym_LPAREN2] = ACTIONS(3878), - [anon_sym_BANG] = ACTIONS(3878), - [anon_sym_TILDE] = ACTIONS(3878), - [anon_sym_DASH] = ACTIONS(3876), - [anon_sym_PLUS] = ACTIONS(3876), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_AMP_AMP] = ACTIONS(3878), - [anon_sym_AMP] = ACTIONS(3876), - [anon_sym_SEMI] = ACTIONS(3878), - [anon_sym___extension__] = ACTIONS(3876), - [anon_sym_typedef] = ACTIONS(3876), - [anon_sym_virtual] = ACTIONS(3876), - [anon_sym_extern] = ACTIONS(3876), - [anon_sym___attribute__] = ACTIONS(3876), - [anon_sym___attribute] = ACTIONS(3876), - [anon_sym_using] = ACTIONS(3876), - [anon_sym_COLON_COLON] = ACTIONS(3878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), - [anon_sym___declspec] = ACTIONS(3876), - [anon_sym___based] = ACTIONS(3876), - [anon_sym___cdecl] = ACTIONS(3876), - [anon_sym___clrcall] = ACTIONS(3876), - [anon_sym___stdcall] = ACTIONS(3876), - [anon_sym___fastcall] = ACTIONS(3876), - [anon_sym___thiscall] = ACTIONS(3876), - [anon_sym___vectorcall] = ACTIONS(3876), - [anon_sym_LBRACE] = ACTIONS(3878), - [anon_sym_signed] = ACTIONS(3876), - [anon_sym_unsigned] = ACTIONS(3876), - [anon_sym_long] = ACTIONS(3876), - [anon_sym_short] = ACTIONS(3876), - [anon_sym_LBRACK] = ACTIONS(3876), - [anon_sym_static] = ACTIONS(3876), - [anon_sym_register] = ACTIONS(3876), - [anon_sym_inline] = ACTIONS(3876), - [anon_sym___inline] = ACTIONS(3876), - [anon_sym___inline__] = ACTIONS(3876), - [anon_sym___forceinline] = ACTIONS(3876), - [anon_sym_thread_local] = ACTIONS(3876), - [anon_sym___thread] = ACTIONS(3876), - [anon_sym_const] = ACTIONS(3876), - [anon_sym_constexpr] = ACTIONS(3876), - [anon_sym_volatile] = ACTIONS(3876), - [anon_sym_restrict] = ACTIONS(3876), - [anon_sym___restrict__] = ACTIONS(3876), - [anon_sym__Atomic] = ACTIONS(3876), - [anon_sym__Noreturn] = ACTIONS(3876), - [anon_sym_noreturn] = ACTIONS(3876), - [anon_sym__Nonnull] = ACTIONS(3876), - [anon_sym_mutable] = ACTIONS(3876), - [anon_sym_constinit] = ACTIONS(3876), - [anon_sym_consteval] = ACTIONS(3876), - [anon_sym_alignas] = ACTIONS(3876), - [anon_sym__Alignas] = ACTIONS(3876), - [sym_primitive_type] = ACTIONS(3876), - [anon_sym_enum] = ACTIONS(3876), - [anon_sym_class] = ACTIONS(3876), - [anon_sym_struct] = ACTIONS(3876), - [anon_sym_union] = ACTIONS(3876), - [anon_sym_if] = ACTIONS(3876), - [anon_sym_else] = ACTIONS(3876), - [anon_sym_switch] = ACTIONS(3876), - [anon_sym_case] = ACTIONS(3876), - [anon_sym_default] = ACTIONS(3876), - [anon_sym_while] = ACTIONS(3876), - [anon_sym_do] = ACTIONS(3876), - [anon_sym_for] = ACTIONS(3876), - [anon_sym_return] = ACTIONS(3876), - [anon_sym_break] = ACTIONS(3876), - [anon_sym_continue] = ACTIONS(3876), - [anon_sym_goto] = ACTIONS(3876), - [anon_sym___try] = ACTIONS(3876), - [anon_sym___leave] = ACTIONS(3876), - [anon_sym_not] = ACTIONS(3876), - [anon_sym_compl] = ACTIONS(3876), - [anon_sym_DASH_DASH] = ACTIONS(3878), - [anon_sym_PLUS_PLUS] = ACTIONS(3878), - [anon_sym_sizeof] = ACTIONS(3876), - [anon_sym___alignof__] = ACTIONS(3876), - [anon_sym___alignof] = ACTIONS(3876), - [anon_sym__alignof] = ACTIONS(3876), - [anon_sym_alignof] = ACTIONS(3876), - [anon_sym__Alignof] = ACTIONS(3876), - [anon_sym_offsetof] = ACTIONS(3876), - [anon_sym__Generic] = ACTIONS(3876), - [anon_sym_typename] = ACTIONS(3876), - [anon_sym_asm] = ACTIONS(3876), - [anon_sym___asm__] = ACTIONS(3876), - [anon_sym___asm] = ACTIONS(3876), - [sym_number_literal] = ACTIONS(3878), - [anon_sym_L_SQUOTE] = ACTIONS(3878), - [anon_sym_u_SQUOTE] = ACTIONS(3878), - [anon_sym_U_SQUOTE] = ACTIONS(3878), - [anon_sym_u8_SQUOTE] = ACTIONS(3878), - [anon_sym_SQUOTE] = ACTIONS(3878), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(3876), - [sym_false] = ACTIONS(3876), - [anon_sym_NULL] = ACTIONS(3876), - [anon_sym_nullptr] = ACTIONS(3876), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3876), - [anon_sym_decltype] = ACTIONS(3876), - [anon_sym_explicit] = ACTIONS(3876), - [anon_sym_export] = ACTIONS(3876), - [anon_sym_module] = ACTIONS(3876), - [anon_sym_import] = ACTIONS(3876), - [anon_sym_template] = ACTIONS(3876), - [anon_sym_operator] = ACTIONS(3876), - [anon_sym_try] = ACTIONS(3876), - [anon_sym_delete] = ACTIONS(3876), - [anon_sym_throw] = ACTIONS(3876), - [anon_sym_namespace] = ACTIONS(3876), - [anon_sym_static_assert] = ACTIONS(3876), - [anon_sym_concept] = ACTIONS(3876), - [anon_sym_co_return] = ACTIONS(3876), - [anon_sym_co_yield] = ACTIONS(3876), - [anon_sym_R_DQUOTE] = ACTIONS(3878), - [anon_sym_LR_DQUOTE] = ACTIONS(3878), - [anon_sym_uR_DQUOTE] = ACTIONS(3878), - [anon_sym_UR_DQUOTE] = ACTIONS(3878), - [anon_sym_u8R_DQUOTE] = ACTIONS(3878), - [anon_sym_co_await] = ACTIONS(3876), - [anon_sym_new] = ACTIONS(3876), - [anon_sym_requires] = ACTIONS(3876), - [anon_sym_CARET_CARET] = ACTIONS(3878), - [anon_sym_LBRACK_COLON] = ACTIONS(3878), - [sym_this] = ACTIONS(3876), - }, - [STATE(517)] = { + [STATE(455)] = { [sym_identifier] = ACTIONS(4148), [aux_sym_preproc_include_token1] = ACTIONS(4148), [aux_sym_preproc_def_token1] = ACTIONS(4148), @@ -128333,6 +125064,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4148), [anon_sym_decltype] = ACTIONS(4148), [anon_sym_explicit] = ACTIONS(4148), + [anon_sym_export] = ACTIONS(4148), + [anon_sym_module] = ACTIONS(4148), + [anon_sym_import] = ACTIONS(4148), [anon_sym_template] = ACTIONS(4148), [anon_sym_operator] = ACTIONS(4148), [anon_sym_try] = ACTIONS(4148), @@ -128355,7 +125089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4150), [sym_this] = ACTIONS(4148), }, - [STATE(518)] = { + [STATE(456)] = { [sym_identifier] = ACTIONS(4152), [aux_sym_preproc_include_token1] = ACTIONS(4152), [aux_sym_preproc_def_token1] = ACTIONS(4152), @@ -128475,6 +125209,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4152), [anon_sym_decltype] = ACTIONS(4152), [anon_sym_explicit] = ACTIONS(4152), + [anon_sym_export] = ACTIONS(4152), + [anon_sym_module] = ACTIONS(4152), + [anon_sym_import] = ACTIONS(4152), [anon_sym_template] = ACTIONS(4152), [anon_sym_operator] = ACTIONS(4152), [anon_sym_try] = ACTIONS(4152), @@ -128497,7 +125234,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4154), [sym_this] = ACTIONS(4152), }, - [STATE(519)] = { + [STATE(457)] = { + [sym_identifier] = ACTIONS(4132), + [aux_sym_preproc_include_token1] = ACTIONS(4132), + [aux_sym_preproc_def_token1] = ACTIONS(4132), + [aux_sym_preproc_if_token1] = ACTIONS(4132), + [aux_sym_preproc_if_token2] = ACTIONS(4132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4132), + [aux_sym_preproc_else_token1] = ACTIONS(4132), + [aux_sym_preproc_elif_token1] = ACTIONS(4132), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4132), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4132), + [sym_preproc_directive] = ACTIONS(4132), + [anon_sym_LPAREN2] = ACTIONS(4134), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_TILDE] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4132), + [anon_sym_STAR] = ACTIONS(4134), + [anon_sym_AMP_AMP] = ACTIONS(4134), + [anon_sym_AMP] = ACTIONS(4132), + [anon_sym_SEMI] = ACTIONS(4134), + [anon_sym___extension__] = ACTIONS(4132), + [anon_sym_typedef] = ACTIONS(4132), + [anon_sym_virtual] = ACTIONS(4132), + [anon_sym_extern] = ACTIONS(4132), + [anon_sym___attribute__] = ACTIONS(4132), + [anon_sym___attribute] = ACTIONS(4132), + [anon_sym_using] = ACTIONS(4132), + [anon_sym_COLON_COLON] = ACTIONS(4134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4134), + [anon_sym___declspec] = ACTIONS(4132), + [anon_sym___based] = ACTIONS(4132), + [anon_sym___cdecl] = ACTIONS(4132), + [anon_sym___clrcall] = ACTIONS(4132), + [anon_sym___stdcall] = ACTIONS(4132), + [anon_sym___fastcall] = ACTIONS(4132), + [anon_sym___thiscall] = ACTIONS(4132), + [anon_sym___vectorcall] = ACTIONS(4132), + [anon_sym_LBRACE] = ACTIONS(4134), + [anon_sym_signed] = ACTIONS(4132), + [anon_sym_unsigned] = ACTIONS(4132), + [anon_sym_long] = ACTIONS(4132), + [anon_sym_short] = ACTIONS(4132), + [anon_sym_LBRACK] = ACTIONS(4132), + [anon_sym_static] = ACTIONS(4132), + [anon_sym_register] = ACTIONS(4132), + [anon_sym_inline] = ACTIONS(4132), + [anon_sym___inline] = ACTIONS(4132), + [anon_sym___inline__] = ACTIONS(4132), + [anon_sym___forceinline] = ACTIONS(4132), + [anon_sym_thread_local] = ACTIONS(4132), + [anon_sym___thread] = ACTIONS(4132), + [anon_sym_const] = ACTIONS(4132), + [anon_sym_constexpr] = ACTIONS(4132), + [anon_sym_volatile] = ACTIONS(4132), + [anon_sym_restrict] = ACTIONS(4132), + [anon_sym___restrict__] = ACTIONS(4132), + [anon_sym__Atomic] = ACTIONS(4132), + [anon_sym__Noreturn] = ACTIONS(4132), + [anon_sym_noreturn] = ACTIONS(4132), + [anon_sym__Nonnull] = ACTIONS(4132), + [anon_sym_mutable] = ACTIONS(4132), + [anon_sym_constinit] = ACTIONS(4132), + [anon_sym_consteval] = ACTIONS(4132), + [anon_sym_alignas] = ACTIONS(4132), + [anon_sym__Alignas] = ACTIONS(4132), + [sym_primitive_type] = ACTIONS(4132), + [anon_sym_enum] = ACTIONS(4132), + [anon_sym_class] = ACTIONS(4132), + [anon_sym_struct] = ACTIONS(4132), + [anon_sym_union] = ACTIONS(4132), + [anon_sym_if] = ACTIONS(4132), + [anon_sym_switch] = ACTIONS(4132), + [anon_sym_case] = ACTIONS(4132), + [anon_sym_default] = ACTIONS(4132), + [anon_sym_while] = ACTIONS(4132), + [anon_sym_do] = ACTIONS(4132), + [anon_sym_for] = ACTIONS(4132), + [anon_sym_return] = ACTIONS(4132), + [anon_sym_break] = ACTIONS(4132), + [anon_sym_continue] = ACTIONS(4132), + [anon_sym_goto] = ACTIONS(4132), + [anon_sym___try] = ACTIONS(4132), + [anon_sym___leave] = ACTIONS(4132), + [anon_sym_not] = ACTIONS(4132), + [anon_sym_compl] = ACTIONS(4132), + [anon_sym_DASH_DASH] = ACTIONS(4134), + [anon_sym_PLUS_PLUS] = ACTIONS(4134), + [anon_sym_sizeof] = ACTIONS(4132), + [anon_sym___alignof__] = ACTIONS(4132), + [anon_sym___alignof] = ACTIONS(4132), + [anon_sym__alignof] = ACTIONS(4132), + [anon_sym_alignof] = ACTIONS(4132), + [anon_sym__Alignof] = ACTIONS(4132), + [anon_sym_offsetof] = ACTIONS(4132), + [anon_sym__Generic] = ACTIONS(4132), + [anon_sym_typename] = ACTIONS(4132), + [anon_sym_asm] = ACTIONS(4132), + [anon_sym___asm__] = ACTIONS(4132), + [anon_sym___asm] = ACTIONS(4132), + [sym_number_literal] = ACTIONS(4134), + [anon_sym_L_SQUOTE] = ACTIONS(4134), + [anon_sym_u_SQUOTE] = ACTIONS(4134), + [anon_sym_U_SQUOTE] = ACTIONS(4134), + [anon_sym_u8_SQUOTE] = ACTIONS(4134), + [anon_sym_SQUOTE] = ACTIONS(4134), + [anon_sym_L_DQUOTE] = ACTIONS(4134), + [anon_sym_u_DQUOTE] = ACTIONS(4134), + [anon_sym_U_DQUOTE] = ACTIONS(4134), + [anon_sym_u8_DQUOTE] = ACTIONS(4134), + [anon_sym_DQUOTE] = ACTIONS(4134), + [sym_true] = ACTIONS(4132), + [sym_false] = ACTIONS(4132), + [anon_sym_NULL] = ACTIONS(4132), + [anon_sym_nullptr] = ACTIONS(4132), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4132), + [anon_sym_decltype] = ACTIONS(4132), + [anon_sym_explicit] = ACTIONS(4132), + [anon_sym_export] = ACTIONS(4132), + [anon_sym_module] = ACTIONS(4132), + [anon_sym_import] = ACTIONS(4132), + [anon_sym_template] = ACTIONS(4132), + [anon_sym_operator] = ACTIONS(4132), + [anon_sym_try] = ACTIONS(4132), + [anon_sym_delete] = ACTIONS(4132), + [anon_sym_throw] = ACTIONS(4132), + [anon_sym_namespace] = ACTIONS(4132), + [anon_sym_static_assert] = ACTIONS(4132), + [anon_sym_concept] = ACTIONS(4132), + [anon_sym_co_return] = ACTIONS(4132), + [anon_sym_co_yield] = ACTIONS(4132), + [anon_sym_R_DQUOTE] = ACTIONS(4134), + [anon_sym_LR_DQUOTE] = ACTIONS(4134), + [anon_sym_uR_DQUOTE] = ACTIONS(4134), + [anon_sym_UR_DQUOTE] = ACTIONS(4134), + [anon_sym_u8R_DQUOTE] = ACTIONS(4134), + [anon_sym_co_await] = ACTIONS(4132), + [anon_sym_new] = ACTIONS(4132), + [anon_sym_requires] = ACTIONS(4132), + [anon_sym_CARET_CARET] = ACTIONS(4134), + [anon_sym_LBRACK_COLON] = ACTIONS(4134), + [sym_this] = ACTIONS(4132), + }, + [STATE(458)] = { [sym_identifier] = ACTIONS(4156), [aux_sym_preproc_include_token1] = ACTIONS(4156), [aux_sym_preproc_def_token1] = ACTIONS(4156), @@ -128617,6 +125499,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4156), [anon_sym_decltype] = ACTIONS(4156), [anon_sym_explicit] = ACTIONS(4156), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_module] = ACTIONS(4156), + [anon_sym_import] = ACTIONS(4156), [anon_sym_template] = ACTIONS(4156), [anon_sym_operator] = ACTIONS(4156), [anon_sym_try] = ACTIONS(4156), @@ -128639,7 +125524,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4158), [sym_this] = ACTIONS(4156), }, - [STATE(520)] = { + [STATE(459)] = { + [sym_identifier] = ACTIONS(4156), + [aux_sym_preproc_include_token1] = ACTIONS(4156), + [aux_sym_preproc_def_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token2] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), + [aux_sym_preproc_else_token1] = ACTIONS(4156), + [aux_sym_preproc_elif_token1] = ACTIONS(4156), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4156), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4156), + [sym_preproc_directive] = ACTIONS(4156), + [anon_sym_LPAREN2] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4158), + [anon_sym_TILDE] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym___extension__] = ACTIONS(4156), + [anon_sym_typedef] = ACTIONS(4156), + [anon_sym_virtual] = ACTIONS(4156), + [anon_sym_extern] = ACTIONS(4156), + [anon_sym___attribute__] = ACTIONS(4156), + [anon_sym___attribute] = ACTIONS(4156), + [anon_sym_using] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4156), + [anon_sym___based] = ACTIONS(4156), + [anon_sym___cdecl] = ACTIONS(4156), + [anon_sym___clrcall] = ACTIONS(4156), + [anon_sym___stdcall] = ACTIONS(4156), + [anon_sym___fastcall] = ACTIONS(4156), + [anon_sym___thiscall] = ACTIONS(4156), + [anon_sym___vectorcall] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_signed] = ACTIONS(4156), + [anon_sym_unsigned] = ACTIONS(4156), + [anon_sym_long] = ACTIONS(4156), + [anon_sym_short] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_register] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym___inline] = ACTIONS(4156), + [anon_sym___inline__] = ACTIONS(4156), + [anon_sym___forceinline] = ACTIONS(4156), + [anon_sym_thread_local] = ACTIONS(4156), + [anon_sym___thread] = ACTIONS(4156), + [anon_sym_const] = ACTIONS(4156), + [anon_sym_constexpr] = ACTIONS(4156), + [anon_sym_volatile] = ACTIONS(4156), + [anon_sym_restrict] = ACTIONS(4156), + [anon_sym___restrict__] = ACTIONS(4156), + [anon_sym__Atomic] = ACTIONS(4156), + [anon_sym__Noreturn] = ACTIONS(4156), + [anon_sym_noreturn] = ACTIONS(4156), + [anon_sym__Nonnull] = ACTIONS(4156), + [anon_sym_mutable] = ACTIONS(4156), + [anon_sym_constinit] = ACTIONS(4156), + [anon_sym_consteval] = ACTIONS(4156), + [anon_sym_alignas] = ACTIONS(4156), + [anon_sym__Alignas] = ACTIONS(4156), + [sym_primitive_type] = ACTIONS(4156), + [anon_sym_enum] = ACTIONS(4156), + [anon_sym_class] = ACTIONS(4156), + [anon_sym_struct] = ACTIONS(4156), + [anon_sym_union] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_switch] = ACTIONS(4156), + [anon_sym_case] = ACTIONS(4156), + [anon_sym_default] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_do] = ACTIONS(4156), + [anon_sym_for] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_goto] = ACTIONS(4156), + [anon_sym___try] = ACTIONS(4156), + [anon_sym___leave] = ACTIONS(4156), + [anon_sym_not] = ACTIONS(4156), + [anon_sym_compl] = ACTIONS(4156), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_sizeof] = ACTIONS(4156), + [anon_sym___alignof__] = ACTIONS(4156), + [anon_sym___alignof] = ACTIONS(4156), + [anon_sym__alignof] = ACTIONS(4156), + [anon_sym_alignof] = ACTIONS(4156), + [anon_sym__Alignof] = ACTIONS(4156), + [anon_sym_offsetof] = ACTIONS(4156), + [anon_sym__Generic] = ACTIONS(4156), + [anon_sym_typename] = ACTIONS(4156), + [anon_sym_asm] = ACTIONS(4156), + [anon_sym___asm__] = ACTIONS(4156), + [anon_sym___asm] = ACTIONS(4156), + [sym_number_literal] = ACTIONS(4158), + [anon_sym_L_SQUOTE] = ACTIONS(4158), + [anon_sym_u_SQUOTE] = ACTIONS(4158), + [anon_sym_U_SQUOTE] = ACTIONS(4158), + [anon_sym_u8_SQUOTE] = ACTIONS(4158), + [anon_sym_SQUOTE] = ACTIONS(4158), + [anon_sym_L_DQUOTE] = ACTIONS(4158), + [anon_sym_u_DQUOTE] = ACTIONS(4158), + [anon_sym_U_DQUOTE] = ACTIONS(4158), + [anon_sym_u8_DQUOTE] = ACTIONS(4158), + [anon_sym_DQUOTE] = ACTIONS(4158), + [sym_true] = ACTIONS(4156), + [sym_false] = ACTIONS(4156), + [anon_sym_NULL] = ACTIONS(4156), + [anon_sym_nullptr] = ACTIONS(4156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4156), + [anon_sym_decltype] = ACTIONS(4156), + [anon_sym_explicit] = ACTIONS(4156), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_module] = ACTIONS(4156), + [anon_sym_import] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_delete] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_namespace] = ACTIONS(4156), + [anon_sym_static_assert] = ACTIONS(4156), + [anon_sym_concept] = ACTIONS(4156), + [anon_sym_co_return] = ACTIONS(4156), + [anon_sym_co_yield] = ACTIONS(4156), + [anon_sym_R_DQUOTE] = ACTIONS(4158), + [anon_sym_LR_DQUOTE] = ACTIONS(4158), + [anon_sym_uR_DQUOTE] = ACTIONS(4158), + [anon_sym_UR_DQUOTE] = ACTIONS(4158), + [anon_sym_u8R_DQUOTE] = ACTIONS(4158), + [anon_sym_co_await] = ACTIONS(4156), + [anon_sym_new] = ACTIONS(4156), + [anon_sym_requires] = ACTIONS(4156), + [anon_sym_CARET_CARET] = ACTIONS(4158), + [anon_sym_LBRACK_COLON] = ACTIONS(4158), + [sym_this] = ACTIONS(4156), + }, + [STATE(460)] = { [sym_identifier] = ACTIONS(4160), [aux_sym_preproc_include_token1] = ACTIONS(4160), [aux_sym_preproc_def_token1] = ACTIONS(4160), @@ -128759,6 +125789,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4160), [anon_sym_decltype] = ACTIONS(4160), [anon_sym_explicit] = ACTIONS(4160), + [anon_sym_export] = ACTIONS(4160), + [anon_sym_module] = ACTIONS(4160), + [anon_sym_import] = ACTIONS(4160), [anon_sym_template] = ACTIONS(4160), [anon_sym_operator] = ACTIONS(4160), [anon_sym_try] = ACTIONS(4160), @@ -128781,79 +125814,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4162), [sym_this] = ACTIONS(4160), }, - [STATE(521)] = { - [sym_identifier] = ACTIONS(4164), - [aux_sym_preproc_include_token1] = ACTIONS(4164), - [aux_sym_preproc_def_token1] = ACTIONS(4164), - [aux_sym_preproc_if_token1] = ACTIONS(4164), - [aux_sym_preproc_if_token2] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [aux_sym_preproc_else_token1] = ACTIONS(4164), - [aux_sym_preproc_elif_token1] = ACTIONS(4164), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4164), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4164), - [anon_sym_LPAREN2] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4166), - [anon_sym_TILDE] = ACTIONS(4166), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_AMP] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym___extension__] = ACTIONS(4164), - [anon_sym_typedef] = ACTIONS(4164), - [anon_sym_virtual] = ACTIONS(4164), - [anon_sym_extern] = ACTIONS(4164), - [anon_sym___attribute__] = ACTIONS(4164), - [anon_sym___attribute] = ACTIONS(4164), - [anon_sym_using] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), - [anon_sym___declspec] = ACTIONS(4164), - [anon_sym___based] = ACTIONS(4164), - [anon_sym___cdecl] = ACTIONS(4164), - [anon_sym___clrcall] = ACTIONS(4164), - [anon_sym___stdcall] = ACTIONS(4164), - [anon_sym___fastcall] = ACTIONS(4164), - [anon_sym___thiscall] = ACTIONS(4164), - [anon_sym___vectorcall] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4166), - [anon_sym_signed] = ACTIONS(4164), - [anon_sym_unsigned] = ACTIONS(4164), - [anon_sym_long] = ACTIONS(4164), - [anon_sym_short] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4164), - [anon_sym_static] = ACTIONS(4164), - [anon_sym_register] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym___inline] = ACTIONS(4164), - [anon_sym___inline__] = ACTIONS(4164), - [anon_sym___forceinline] = ACTIONS(4164), - [anon_sym_thread_local] = ACTIONS(4164), - [anon_sym___thread] = ACTIONS(4164), - [anon_sym_const] = ACTIONS(4164), - [anon_sym_constexpr] = ACTIONS(4164), - [anon_sym_volatile] = ACTIONS(4164), - [anon_sym_restrict] = ACTIONS(4164), - [anon_sym___restrict__] = ACTIONS(4164), - [anon_sym__Atomic] = ACTIONS(4164), - [anon_sym__Noreturn] = ACTIONS(4164), - [anon_sym_noreturn] = ACTIONS(4164), - [anon_sym__Nonnull] = ACTIONS(4164), - [anon_sym_mutable] = ACTIONS(4164), - [anon_sym_constinit] = ACTIONS(4164), - [anon_sym_consteval] = ACTIONS(4164), - [anon_sym_alignas] = ACTIONS(4164), - [anon_sym__Alignas] = ACTIONS(4164), - [sym_primitive_type] = ACTIONS(4164), - [anon_sym_enum] = ACTIONS(4164), - [anon_sym_class] = ACTIONS(4164), - [anon_sym_struct] = ACTIONS(4164), - [anon_sym_union] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), + [STATE(461)] = { + [sym_identifier] = ACTIONS(4160), + [aux_sym_preproc_include_token1] = ACTIONS(4160), + [aux_sym_preproc_def_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token2] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), + [aux_sym_preproc_else_token1] = ACTIONS(4160), + [aux_sym_preproc_elif_token1] = ACTIONS(4160), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4160), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4160), + [sym_preproc_directive] = ACTIONS(4160), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_TILDE] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym___extension__] = ACTIONS(4160), + [anon_sym_typedef] = ACTIONS(4160), + [anon_sym_virtual] = ACTIONS(4160), + [anon_sym_extern] = ACTIONS(4160), + [anon_sym___attribute__] = ACTIONS(4160), + [anon_sym___attribute] = ACTIONS(4160), + [anon_sym_using] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), + [anon_sym___declspec] = ACTIONS(4160), + [anon_sym___based] = ACTIONS(4160), + [anon_sym___cdecl] = ACTIONS(4160), + [anon_sym___clrcall] = ACTIONS(4160), + [anon_sym___stdcall] = ACTIONS(4160), + [anon_sym___fastcall] = ACTIONS(4160), + [anon_sym___thiscall] = ACTIONS(4160), + [anon_sym___vectorcall] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_signed] = ACTIONS(4160), + [anon_sym_unsigned] = ACTIONS(4160), + [anon_sym_long] = ACTIONS(4160), + [anon_sym_short] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4160), + [anon_sym_static] = ACTIONS(4160), + [anon_sym_register] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym___inline] = ACTIONS(4160), + [anon_sym___inline__] = ACTIONS(4160), + [anon_sym___forceinline] = ACTIONS(4160), + [anon_sym_thread_local] = ACTIONS(4160), + [anon_sym___thread] = ACTIONS(4160), + [anon_sym_const] = ACTIONS(4160), + [anon_sym_constexpr] = ACTIONS(4160), + [anon_sym_volatile] = ACTIONS(4160), + [anon_sym_restrict] = ACTIONS(4160), + [anon_sym___restrict__] = ACTIONS(4160), + [anon_sym__Atomic] = ACTIONS(4160), + [anon_sym__Noreturn] = ACTIONS(4160), + [anon_sym_noreturn] = ACTIONS(4160), + [anon_sym__Nonnull] = ACTIONS(4160), + [anon_sym_mutable] = ACTIONS(4160), + [anon_sym_constinit] = ACTIONS(4160), + [anon_sym_consteval] = ACTIONS(4160), + [anon_sym_alignas] = ACTIONS(4160), + [anon_sym__Alignas] = ACTIONS(4160), + [sym_primitive_type] = ACTIONS(4160), + [anon_sym_enum] = ACTIONS(4160), + [anon_sym_class] = ACTIONS(4160), + [anon_sym_struct] = ACTIONS(4160), + [anon_sym_union] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_switch] = ACTIONS(4160), + [anon_sym_case] = ACTIONS(4160), + [anon_sym_default] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_do] = ACTIONS(4160), + [anon_sym_for] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_goto] = ACTIONS(4160), + [anon_sym___try] = ACTIONS(4160), + [anon_sym___leave] = ACTIONS(4160), + [anon_sym_not] = ACTIONS(4160), + [anon_sym_compl] = ACTIONS(4160), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_sizeof] = ACTIONS(4160), + [anon_sym___alignof__] = ACTIONS(4160), + [anon_sym___alignof] = ACTIONS(4160), + [anon_sym__alignof] = ACTIONS(4160), + [anon_sym_alignof] = ACTIONS(4160), + [anon_sym__Alignof] = ACTIONS(4160), + [anon_sym_offsetof] = ACTIONS(4160), + [anon_sym__Generic] = ACTIONS(4160), + [anon_sym_typename] = ACTIONS(4160), + [anon_sym_asm] = ACTIONS(4160), + [anon_sym___asm__] = ACTIONS(4160), + [anon_sym___asm] = ACTIONS(4160), + [sym_number_literal] = ACTIONS(4162), + [anon_sym_L_SQUOTE] = ACTIONS(4162), + [anon_sym_u_SQUOTE] = ACTIONS(4162), + [anon_sym_U_SQUOTE] = ACTIONS(4162), + [anon_sym_u8_SQUOTE] = ACTIONS(4162), + [anon_sym_SQUOTE] = ACTIONS(4162), + [anon_sym_L_DQUOTE] = ACTIONS(4162), + [anon_sym_u_DQUOTE] = ACTIONS(4162), + [anon_sym_U_DQUOTE] = ACTIONS(4162), + [anon_sym_u8_DQUOTE] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4162), + [sym_true] = ACTIONS(4160), + [sym_false] = ACTIONS(4160), + [anon_sym_NULL] = ACTIONS(4160), + [anon_sym_nullptr] = ACTIONS(4160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4160), + [anon_sym_decltype] = ACTIONS(4160), + [anon_sym_explicit] = ACTIONS(4160), + [anon_sym_export] = ACTIONS(4160), + [anon_sym_module] = ACTIONS(4160), + [anon_sym_import] = ACTIONS(4160), + [anon_sym_template] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_delete] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_namespace] = ACTIONS(4160), + [anon_sym_static_assert] = ACTIONS(4160), + [anon_sym_concept] = ACTIONS(4160), + [anon_sym_co_return] = ACTIONS(4160), + [anon_sym_co_yield] = ACTIONS(4160), + [anon_sym_R_DQUOTE] = ACTIONS(4162), + [anon_sym_LR_DQUOTE] = ACTIONS(4162), + [anon_sym_uR_DQUOTE] = ACTIONS(4162), + [anon_sym_UR_DQUOTE] = ACTIONS(4162), + [anon_sym_u8R_DQUOTE] = ACTIONS(4162), + [anon_sym_co_await] = ACTIONS(4160), + [anon_sym_new] = ACTIONS(4160), + [anon_sym_requires] = ACTIONS(4160), + [anon_sym_CARET_CARET] = ACTIONS(4162), + [anon_sym_LBRACK_COLON] = ACTIONS(4162), + [sym_this] = ACTIONS(4160), + }, + [STATE(462)] = { + [sym_identifier] = ACTIONS(4164), + [aux_sym_preproc_include_token1] = ACTIONS(4164), + [aux_sym_preproc_def_token1] = ACTIONS(4164), + [aux_sym_preproc_if_token1] = ACTIONS(4164), + [aux_sym_preproc_if_token2] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), + [aux_sym_preproc_else_token1] = ACTIONS(4164), + [aux_sym_preproc_elif_token1] = ACTIONS(4164), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4164), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4164), + [sym_preproc_directive] = ACTIONS(4164), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_typedef] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_using] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym___cdecl] = ACTIONS(4164), + [anon_sym___clrcall] = ACTIONS(4164), + [anon_sym___stdcall] = ACTIONS(4164), + [anon_sym___fastcall] = ACTIONS(4164), + [anon_sym___thiscall] = ACTIONS(4164), + [anon_sym___vectorcall] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4166), + [anon_sym_signed] = ACTIONS(4164), + [anon_sym_unsigned] = ACTIONS(4164), + [anon_sym_long] = ACTIONS(4164), + [anon_sym_short] = ACTIONS(4164), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [sym_primitive_type] = ACTIONS(4164), + [anon_sym_enum] = ACTIONS(4164), + [anon_sym_class] = ACTIONS(4164), + [anon_sym_struct] = ACTIONS(4164), + [anon_sym_union] = ACTIONS(4164), + [anon_sym_if] = ACTIONS(4164), [anon_sym_switch] = ACTIONS(4164), [anon_sym_case] = ACTIONS(4164), [anon_sym_default] = ACTIONS(4164), @@ -128901,6 +126079,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4164), [anon_sym_decltype] = ACTIONS(4164), [anon_sym_explicit] = ACTIONS(4164), + [anon_sym_export] = ACTIONS(4164), + [anon_sym_module] = ACTIONS(4164), + [anon_sym_import] = ACTIONS(4164), [anon_sym_template] = ACTIONS(4164), [anon_sym_operator] = ACTIONS(4164), [anon_sym_try] = ACTIONS(4164), @@ -128923,7 +126104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4166), [sym_this] = ACTIONS(4164), }, - [STATE(522)] = { + [STATE(463)] = { [sym_identifier] = ACTIONS(4168), [aux_sym_preproc_include_token1] = ACTIONS(4168), [aux_sym_preproc_def_token1] = ACTIONS(4168), @@ -129043,6 +126224,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4168), [anon_sym_decltype] = ACTIONS(4168), [anon_sym_explicit] = ACTIONS(4168), + [anon_sym_export] = ACTIONS(4168), + [anon_sym_module] = ACTIONS(4168), + [anon_sym_import] = ACTIONS(4168), [anon_sym_template] = ACTIONS(4168), [anon_sym_operator] = ACTIONS(4168), [anon_sym_try] = ACTIONS(4168), @@ -129065,7 +126249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4170), [sym_this] = ACTIONS(4168), }, - [STATE(523)] = { + [STATE(464)] = { [sym_identifier] = ACTIONS(4172), [aux_sym_preproc_include_token1] = ACTIONS(4172), [aux_sym_preproc_def_token1] = ACTIONS(4172), @@ -129185,6 +126369,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4172), [anon_sym_decltype] = ACTIONS(4172), [anon_sym_explicit] = ACTIONS(4172), + [anon_sym_export] = ACTIONS(4172), + [anon_sym_module] = ACTIONS(4172), + [anon_sym_import] = ACTIONS(4172), [anon_sym_template] = ACTIONS(4172), [anon_sym_operator] = ACTIONS(4172), [anon_sym_try] = ACTIONS(4172), @@ -129207,7 +126394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4174), [sym_this] = ACTIONS(4172), }, - [STATE(524)] = { + [STATE(465)] = { [sym_identifier] = ACTIONS(4176), [aux_sym_preproc_include_token1] = ACTIONS(4176), [aux_sym_preproc_def_token1] = ACTIONS(4176), @@ -129327,6 +126514,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4176), [anon_sym_decltype] = ACTIONS(4176), [anon_sym_explicit] = ACTIONS(4176), + [anon_sym_export] = ACTIONS(4176), + [anon_sym_module] = ACTIONS(4176), + [anon_sym_import] = ACTIONS(4176), [anon_sym_template] = ACTIONS(4176), [anon_sym_operator] = ACTIONS(4176), [anon_sym_try] = ACTIONS(4176), @@ -129349,7 +126539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4178), [sym_this] = ACTIONS(4176), }, - [STATE(525)] = { + [STATE(466)] = { [sym_identifier] = ACTIONS(4180), [aux_sym_preproc_include_token1] = ACTIONS(4180), [aux_sym_preproc_def_token1] = ACTIONS(4180), @@ -129469,6 +126659,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4180), [anon_sym_decltype] = ACTIONS(4180), [anon_sym_explicit] = ACTIONS(4180), + [anon_sym_export] = ACTIONS(4180), + [anon_sym_module] = ACTIONS(4180), + [anon_sym_import] = ACTIONS(4180), [anon_sym_template] = ACTIONS(4180), [anon_sym_operator] = ACTIONS(4180), [anon_sym_try] = ACTIONS(4180), @@ -129491,7 +126684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4182), [sym_this] = ACTIONS(4180), }, - [STATE(526)] = { + [STATE(467)] = { [sym_identifier] = ACTIONS(4184), [aux_sym_preproc_include_token1] = ACTIONS(4184), [aux_sym_preproc_def_token1] = ACTIONS(4184), @@ -129611,6 +126804,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4184), [anon_sym_decltype] = ACTIONS(4184), [anon_sym_explicit] = ACTIONS(4184), + [anon_sym_export] = ACTIONS(4184), + [anon_sym_module] = ACTIONS(4184), + [anon_sym_import] = ACTIONS(4184), [anon_sym_template] = ACTIONS(4184), [anon_sym_operator] = ACTIONS(4184), [anon_sym_try] = ACTIONS(4184), @@ -129633,7 +126829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4186), [sym_this] = ACTIONS(4184), }, - [STATE(527)] = { + [STATE(468)] = { [sym_identifier] = ACTIONS(4188), [aux_sym_preproc_include_token1] = ACTIONS(4188), [aux_sym_preproc_def_token1] = ACTIONS(4188), @@ -129753,6 +126949,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4188), [anon_sym_decltype] = ACTIONS(4188), [anon_sym_explicit] = ACTIONS(4188), + [anon_sym_export] = ACTIONS(4188), + [anon_sym_module] = ACTIONS(4188), + [anon_sym_import] = ACTIONS(4188), [anon_sym_template] = ACTIONS(4188), [anon_sym_operator] = ACTIONS(4188), [anon_sym_try] = ACTIONS(4188), @@ -129775,7 +126974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4190), [sym_this] = ACTIONS(4188), }, - [STATE(528)] = { + [STATE(469)] = { [sym_identifier] = ACTIONS(4192), [aux_sym_preproc_include_token1] = ACTIONS(4192), [aux_sym_preproc_def_token1] = ACTIONS(4192), @@ -129895,6 +127094,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4192), [anon_sym_decltype] = ACTIONS(4192), [anon_sym_explicit] = ACTIONS(4192), + [anon_sym_export] = ACTIONS(4192), + [anon_sym_module] = ACTIONS(4192), + [anon_sym_import] = ACTIONS(4192), [anon_sym_template] = ACTIONS(4192), [anon_sym_operator] = ACTIONS(4192), [anon_sym_try] = ACTIONS(4192), @@ -129917,7 +127119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4194), [sym_this] = ACTIONS(4192), }, - [STATE(529)] = { + [STATE(470)] = { [sym_identifier] = ACTIONS(4196), [aux_sym_preproc_include_token1] = ACTIONS(4196), [aux_sym_preproc_def_token1] = ACTIONS(4196), @@ -130037,6 +127239,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4196), [anon_sym_decltype] = ACTIONS(4196), [anon_sym_explicit] = ACTIONS(4196), + [anon_sym_export] = ACTIONS(4196), + [anon_sym_module] = ACTIONS(4196), + [anon_sym_import] = ACTIONS(4196), [anon_sym_template] = ACTIONS(4196), [anon_sym_operator] = ACTIONS(4196), [anon_sym_try] = ACTIONS(4196), @@ -130059,241 +127264,832 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4198), [sym_this] = ACTIONS(4196), }, - [STATE(530)] = { - [ts_builtin_sym_end] = ACTIONS(4186), - [sym_identifier] = ACTIONS(4184), - [aux_sym_preproc_include_token1] = ACTIONS(4184), - [aux_sym_preproc_def_token1] = ACTIONS(4184), - [anon_sym_COMMA] = ACTIONS(4186), - [aux_sym_preproc_if_token1] = ACTIONS(4184), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4184), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4184), - [sym_preproc_directive] = ACTIONS(4184), - [anon_sym_LPAREN2] = ACTIONS(4186), - [anon_sym_BANG] = ACTIONS(4186), - [anon_sym_TILDE] = ACTIONS(4186), - [anon_sym_DASH] = ACTIONS(4184), - [anon_sym_PLUS] = ACTIONS(4184), - [anon_sym_STAR] = ACTIONS(4186), - [anon_sym_AMP_AMP] = ACTIONS(4186), - [anon_sym_AMP] = ACTIONS(4184), - [anon_sym_SEMI] = ACTIONS(4186), - [anon_sym___extension__] = ACTIONS(4184), - [anon_sym_typedef] = ACTIONS(4184), - [anon_sym_virtual] = ACTIONS(4184), - [anon_sym_extern] = ACTIONS(4184), - [anon_sym___attribute__] = ACTIONS(4184), - [anon_sym___attribute] = ACTIONS(4184), - [anon_sym_using] = ACTIONS(4184), - [anon_sym_COLON_COLON] = ACTIONS(4186), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4186), - [anon_sym___declspec] = ACTIONS(4184), - [anon_sym___based] = ACTIONS(4184), - [anon_sym___cdecl] = ACTIONS(4184), - [anon_sym___clrcall] = ACTIONS(4184), - [anon_sym___stdcall] = ACTIONS(4184), - [anon_sym___fastcall] = ACTIONS(4184), - [anon_sym___thiscall] = ACTIONS(4184), - [anon_sym___vectorcall] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(4186), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_signed] = ACTIONS(4184), - [anon_sym_unsigned] = ACTIONS(4184), - [anon_sym_long] = ACTIONS(4184), - [anon_sym_short] = ACTIONS(4184), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_static] = ACTIONS(4184), - [anon_sym_register] = ACTIONS(4184), - [anon_sym_inline] = ACTIONS(4184), - [anon_sym___inline] = ACTIONS(4184), - [anon_sym___inline__] = ACTIONS(4184), - [anon_sym___forceinline] = ACTIONS(4184), - [anon_sym_thread_local] = ACTIONS(4184), - [anon_sym___thread] = ACTIONS(4184), - [anon_sym_const] = ACTIONS(4184), - [anon_sym_constexpr] = ACTIONS(4184), - [anon_sym_volatile] = ACTIONS(4184), - [anon_sym_restrict] = ACTIONS(4184), - [anon_sym___restrict__] = ACTIONS(4184), - [anon_sym__Atomic] = ACTIONS(4184), - [anon_sym__Noreturn] = ACTIONS(4184), - [anon_sym_noreturn] = ACTIONS(4184), - [anon_sym__Nonnull] = ACTIONS(4184), - [anon_sym_mutable] = ACTIONS(4184), - [anon_sym_constinit] = ACTIONS(4184), - [anon_sym_consteval] = ACTIONS(4184), - [anon_sym_alignas] = ACTIONS(4184), - [anon_sym__Alignas] = ACTIONS(4184), - [sym_primitive_type] = ACTIONS(4184), - [anon_sym_enum] = ACTIONS(4184), - [anon_sym_class] = ACTIONS(4184), - [anon_sym_struct] = ACTIONS(4184), - [anon_sym_union] = ACTIONS(4184), - [anon_sym_if] = ACTIONS(4184), - [anon_sym_switch] = ACTIONS(4184), - [anon_sym_case] = ACTIONS(4184), - [anon_sym_default] = ACTIONS(4184), - [anon_sym_while] = ACTIONS(4184), - [anon_sym_do] = ACTIONS(4184), - [anon_sym_for] = ACTIONS(4184), - [anon_sym_return] = ACTIONS(4184), - [anon_sym_break] = ACTIONS(4184), - [anon_sym_continue] = ACTIONS(4184), - [anon_sym_goto] = ACTIONS(4184), - [anon_sym_not] = ACTIONS(4184), - [anon_sym_compl] = ACTIONS(4184), - [anon_sym_DASH_DASH] = ACTIONS(4186), - [anon_sym_PLUS_PLUS] = ACTIONS(4186), - [anon_sym_sizeof] = ACTIONS(4184), - [anon_sym___alignof__] = ACTIONS(4184), - [anon_sym___alignof] = ACTIONS(4184), - [anon_sym__alignof] = ACTIONS(4184), - [anon_sym_alignof] = ACTIONS(4184), - [anon_sym__Alignof] = ACTIONS(4184), - [anon_sym_offsetof] = ACTIONS(4184), - [anon_sym__Generic] = ACTIONS(4184), - [anon_sym_typename] = ACTIONS(4184), - [anon_sym_asm] = ACTIONS(4184), - [anon_sym___asm__] = ACTIONS(4184), - [anon_sym___asm] = ACTIONS(4184), - [sym_number_literal] = ACTIONS(4186), - [anon_sym_L_SQUOTE] = ACTIONS(4186), - [anon_sym_u_SQUOTE] = ACTIONS(4186), - [anon_sym_U_SQUOTE] = ACTIONS(4186), - [anon_sym_u8_SQUOTE] = ACTIONS(4186), - [anon_sym_SQUOTE] = ACTIONS(4186), - [anon_sym_L_DQUOTE] = ACTIONS(4186), - [anon_sym_u_DQUOTE] = ACTIONS(4186), - [anon_sym_U_DQUOTE] = ACTIONS(4186), - [anon_sym_u8_DQUOTE] = ACTIONS(4186), - [anon_sym_DQUOTE] = ACTIONS(4186), - [sym_true] = ACTIONS(4184), - [sym_false] = ACTIONS(4184), - [anon_sym_NULL] = ACTIONS(4184), - [anon_sym_nullptr] = ACTIONS(4184), + [STATE(471)] = { + [sym_identifier] = ACTIONS(4200), + [aux_sym_preproc_include_token1] = ACTIONS(4200), + [aux_sym_preproc_def_token1] = ACTIONS(4200), + [aux_sym_preproc_if_token1] = ACTIONS(4200), + [aux_sym_preproc_if_token2] = ACTIONS(4200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4200), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4200), + [aux_sym_preproc_else_token1] = ACTIONS(4200), + [aux_sym_preproc_elif_token1] = ACTIONS(4200), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4200), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4200), + [sym_preproc_directive] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(4202), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_AMP] = ACTIONS(4200), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym___extension__] = ACTIONS(4200), + [anon_sym_typedef] = ACTIONS(4200), + [anon_sym_virtual] = ACTIONS(4200), + [anon_sym_extern] = ACTIONS(4200), + [anon_sym___attribute__] = ACTIONS(4200), + [anon_sym___attribute] = ACTIONS(4200), + [anon_sym_using] = ACTIONS(4200), + [anon_sym_COLON_COLON] = ACTIONS(4202), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4202), + [anon_sym___declspec] = ACTIONS(4200), + [anon_sym___based] = ACTIONS(4200), + [anon_sym___cdecl] = ACTIONS(4200), + [anon_sym___clrcall] = ACTIONS(4200), + [anon_sym___stdcall] = ACTIONS(4200), + [anon_sym___fastcall] = ACTIONS(4200), + [anon_sym___thiscall] = ACTIONS(4200), + [anon_sym___vectorcall] = ACTIONS(4200), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_signed] = ACTIONS(4200), + [anon_sym_unsigned] = ACTIONS(4200), + [anon_sym_long] = ACTIONS(4200), + [anon_sym_short] = ACTIONS(4200), + [anon_sym_LBRACK] = ACTIONS(4200), + [anon_sym_static] = ACTIONS(4200), + [anon_sym_register] = ACTIONS(4200), + [anon_sym_inline] = ACTIONS(4200), + [anon_sym___inline] = ACTIONS(4200), + [anon_sym___inline__] = ACTIONS(4200), + [anon_sym___forceinline] = ACTIONS(4200), + [anon_sym_thread_local] = ACTIONS(4200), + [anon_sym___thread] = ACTIONS(4200), + [anon_sym_const] = ACTIONS(4200), + [anon_sym_constexpr] = ACTIONS(4200), + [anon_sym_volatile] = ACTIONS(4200), + [anon_sym_restrict] = ACTIONS(4200), + [anon_sym___restrict__] = ACTIONS(4200), + [anon_sym__Atomic] = ACTIONS(4200), + [anon_sym__Noreturn] = ACTIONS(4200), + [anon_sym_noreturn] = ACTIONS(4200), + [anon_sym__Nonnull] = ACTIONS(4200), + [anon_sym_mutable] = ACTIONS(4200), + [anon_sym_constinit] = ACTIONS(4200), + [anon_sym_consteval] = ACTIONS(4200), + [anon_sym_alignas] = ACTIONS(4200), + [anon_sym__Alignas] = ACTIONS(4200), + [sym_primitive_type] = ACTIONS(4200), + [anon_sym_enum] = ACTIONS(4200), + [anon_sym_class] = ACTIONS(4200), + [anon_sym_struct] = ACTIONS(4200), + [anon_sym_union] = ACTIONS(4200), + [anon_sym_if] = ACTIONS(4200), + [anon_sym_switch] = ACTIONS(4200), + [anon_sym_case] = ACTIONS(4200), + [anon_sym_default] = ACTIONS(4200), + [anon_sym_while] = ACTIONS(4200), + [anon_sym_do] = ACTIONS(4200), + [anon_sym_for] = ACTIONS(4200), + [anon_sym_return] = ACTIONS(4200), + [anon_sym_break] = ACTIONS(4200), + [anon_sym_continue] = ACTIONS(4200), + [anon_sym_goto] = ACTIONS(4200), + [anon_sym___try] = ACTIONS(4200), + [anon_sym___leave] = ACTIONS(4200), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4202), + [anon_sym_sizeof] = ACTIONS(4200), + [anon_sym___alignof__] = ACTIONS(4200), + [anon_sym___alignof] = ACTIONS(4200), + [anon_sym__alignof] = ACTIONS(4200), + [anon_sym_alignof] = ACTIONS(4200), + [anon_sym__Alignof] = ACTIONS(4200), + [anon_sym_offsetof] = ACTIONS(4200), + [anon_sym__Generic] = ACTIONS(4200), + [anon_sym_typename] = ACTIONS(4200), + [anon_sym_asm] = ACTIONS(4200), + [anon_sym___asm__] = ACTIONS(4200), + [anon_sym___asm] = ACTIONS(4200), + [sym_number_literal] = ACTIONS(4202), + [anon_sym_L_SQUOTE] = ACTIONS(4202), + [anon_sym_u_SQUOTE] = ACTIONS(4202), + [anon_sym_U_SQUOTE] = ACTIONS(4202), + [anon_sym_u8_SQUOTE] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4202), + [anon_sym_L_DQUOTE] = ACTIONS(4202), + [anon_sym_u_DQUOTE] = ACTIONS(4202), + [anon_sym_U_DQUOTE] = ACTIONS(4202), + [anon_sym_u8_DQUOTE] = ACTIONS(4202), + [anon_sym_DQUOTE] = ACTIONS(4202), + [sym_true] = ACTIONS(4200), + [sym_false] = ACTIONS(4200), + [anon_sym_NULL] = ACTIONS(4200), + [anon_sym_nullptr] = ACTIONS(4200), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4200), + [anon_sym_decltype] = ACTIONS(4200), + [anon_sym_explicit] = ACTIONS(4200), + [anon_sym_export] = ACTIONS(4200), + [anon_sym_module] = ACTIONS(4200), + [anon_sym_import] = ACTIONS(4200), + [anon_sym_template] = ACTIONS(4200), + [anon_sym_operator] = ACTIONS(4200), + [anon_sym_try] = ACTIONS(4200), + [anon_sym_delete] = ACTIONS(4200), + [anon_sym_throw] = ACTIONS(4200), + [anon_sym_namespace] = ACTIONS(4200), + [anon_sym_static_assert] = ACTIONS(4200), + [anon_sym_concept] = ACTIONS(4200), + [anon_sym_co_return] = ACTIONS(4200), + [anon_sym_co_yield] = ACTIONS(4200), + [anon_sym_R_DQUOTE] = ACTIONS(4202), + [anon_sym_LR_DQUOTE] = ACTIONS(4202), + [anon_sym_uR_DQUOTE] = ACTIONS(4202), + [anon_sym_UR_DQUOTE] = ACTIONS(4202), + [anon_sym_u8R_DQUOTE] = ACTIONS(4202), + [anon_sym_co_await] = ACTIONS(4200), + [anon_sym_new] = ACTIONS(4200), + [anon_sym_requires] = ACTIONS(4200), + [anon_sym_CARET_CARET] = ACTIONS(4202), + [anon_sym_LBRACK_COLON] = ACTIONS(4202), + [sym_this] = ACTIONS(4200), + }, + [STATE(472)] = { + [sym_identifier] = ACTIONS(4204), + [aux_sym_preproc_include_token1] = ACTIONS(4204), + [aux_sym_preproc_def_token1] = ACTIONS(4204), + [aux_sym_preproc_if_token1] = ACTIONS(4204), + [aux_sym_preproc_if_token2] = ACTIONS(4204), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4204), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4204), + [aux_sym_preproc_else_token1] = ACTIONS(4204), + [aux_sym_preproc_elif_token1] = ACTIONS(4204), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4204), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4204), + [sym_preproc_directive] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(4206), + [anon_sym_BANG] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4206), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4206), + [anon_sym_AMP_AMP] = ACTIONS(4206), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym___extension__] = ACTIONS(4204), + [anon_sym_typedef] = ACTIONS(4204), + [anon_sym_virtual] = ACTIONS(4204), + [anon_sym_extern] = ACTIONS(4204), + [anon_sym___attribute__] = ACTIONS(4204), + [anon_sym___attribute] = ACTIONS(4204), + [anon_sym_using] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4206), + [anon_sym___declspec] = ACTIONS(4204), + [anon_sym___based] = ACTIONS(4204), + [anon_sym___cdecl] = ACTIONS(4204), + [anon_sym___clrcall] = ACTIONS(4204), + [anon_sym___stdcall] = ACTIONS(4204), + [anon_sym___fastcall] = ACTIONS(4204), + [anon_sym___thiscall] = ACTIONS(4204), + [anon_sym___vectorcall] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_signed] = ACTIONS(4204), + [anon_sym_unsigned] = ACTIONS(4204), + [anon_sym_long] = ACTIONS(4204), + [anon_sym_short] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_static] = ACTIONS(4204), + [anon_sym_register] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym___inline] = ACTIONS(4204), + [anon_sym___inline__] = ACTIONS(4204), + [anon_sym___forceinline] = ACTIONS(4204), + [anon_sym_thread_local] = ACTIONS(4204), + [anon_sym___thread] = ACTIONS(4204), + [anon_sym_const] = ACTIONS(4204), + [anon_sym_constexpr] = ACTIONS(4204), + [anon_sym_volatile] = ACTIONS(4204), + [anon_sym_restrict] = ACTIONS(4204), + [anon_sym___restrict__] = ACTIONS(4204), + [anon_sym__Atomic] = ACTIONS(4204), + [anon_sym__Noreturn] = ACTIONS(4204), + [anon_sym_noreturn] = ACTIONS(4204), + [anon_sym__Nonnull] = ACTIONS(4204), + [anon_sym_mutable] = ACTIONS(4204), + [anon_sym_constinit] = ACTIONS(4204), + [anon_sym_consteval] = ACTIONS(4204), + [anon_sym_alignas] = ACTIONS(4204), + [anon_sym__Alignas] = ACTIONS(4204), + [sym_primitive_type] = ACTIONS(4204), + [anon_sym_enum] = ACTIONS(4204), + [anon_sym_class] = ACTIONS(4204), + [anon_sym_struct] = ACTIONS(4204), + [anon_sym_union] = ACTIONS(4204), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_switch] = ACTIONS(4204), + [anon_sym_case] = ACTIONS(4204), + [anon_sym_default] = ACTIONS(4204), + [anon_sym_while] = ACTIONS(4204), + [anon_sym_do] = ACTIONS(4204), + [anon_sym_for] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_goto] = ACTIONS(4204), + [anon_sym___try] = ACTIONS(4204), + [anon_sym___leave] = ACTIONS(4204), + [anon_sym_not] = ACTIONS(4204), + [anon_sym_compl] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4206), + [anon_sym_PLUS_PLUS] = ACTIONS(4206), + [anon_sym_sizeof] = ACTIONS(4204), + [anon_sym___alignof__] = ACTIONS(4204), + [anon_sym___alignof] = ACTIONS(4204), + [anon_sym__alignof] = ACTIONS(4204), + [anon_sym_alignof] = ACTIONS(4204), + [anon_sym__Alignof] = ACTIONS(4204), + [anon_sym_offsetof] = ACTIONS(4204), + [anon_sym__Generic] = ACTIONS(4204), + [anon_sym_typename] = ACTIONS(4204), + [anon_sym_asm] = ACTIONS(4204), + [anon_sym___asm__] = ACTIONS(4204), + [anon_sym___asm] = ACTIONS(4204), + [sym_number_literal] = ACTIONS(4206), + [anon_sym_L_SQUOTE] = ACTIONS(4206), + [anon_sym_u_SQUOTE] = ACTIONS(4206), + [anon_sym_U_SQUOTE] = ACTIONS(4206), + [anon_sym_u8_SQUOTE] = ACTIONS(4206), + [anon_sym_SQUOTE] = ACTIONS(4206), + [anon_sym_L_DQUOTE] = ACTIONS(4206), + [anon_sym_u_DQUOTE] = ACTIONS(4206), + [anon_sym_U_DQUOTE] = ACTIONS(4206), + [anon_sym_u8_DQUOTE] = ACTIONS(4206), + [anon_sym_DQUOTE] = ACTIONS(4206), + [sym_true] = ACTIONS(4204), + [sym_false] = ACTIONS(4204), + [anon_sym_NULL] = ACTIONS(4204), + [anon_sym_nullptr] = ACTIONS(4204), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4204), + [anon_sym_decltype] = ACTIONS(4204), + [anon_sym_explicit] = ACTIONS(4204), + [anon_sym_export] = ACTIONS(4204), + [anon_sym_module] = ACTIONS(4204), + [anon_sym_import] = ACTIONS(4204), + [anon_sym_template] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_delete] = ACTIONS(4204), + [anon_sym_throw] = ACTIONS(4204), + [anon_sym_namespace] = ACTIONS(4204), + [anon_sym_static_assert] = ACTIONS(4204), + [anon_sym_concept] = ACTIONS(4204), + [anon_sym_co_return] = ACTIONS(4204), + [anon_sym_co_yield] = ACTIONS(4204), + [anon_sym_R_DQUOTE] = ACTIONS(4206), + [anon_sym_LR_DQUOTE] = ACTIONS(4206), + [anon_sym_uR_DQUOTE] = ACTIONS(4206), + [anon_sym_UR_DQUOTE] = ACTIONS(4206), + [anon_sym_u8R_DQUOTE] = ACTIONS(4206), + [anon_sym_co_await] = ACTIONS(4204), + [anon_sym_new] = ACTIONS(4204), + [anon_sym_requires] = ACTIONS(4204), + [anon_sym_CARET_CARET] = ACTIONS(4206), + [anon_sym_LBRACK_COLON] = ACTIONS(4206), + [sym_this] = ACTIONS(4204), + }, + [STATE(473)] = { + [sym_identifier] = ACTIONS(4208), + [aux_sym_preproc_include_token1] = ACTIONS(4208), + [aux_sym_preproc_def_token1] = ACTIONS(4208), + [aux_sym_preproc_if_token1] = ACTIONS(4208), + [aux_sym_preproc_if_token2] = ACTIONS(4208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4208), + [aux_sym_preproc_else_token1] = ACTIONS(4208), + [aux_sym_preproc_elif_token1] = ACTIONS(4208), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4208), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4208), + [sym_preproc_directive] = ACTIONS(4208), + [anon_sym_LPAREN2] = ACTIONS(4210), + [anon_sym_BANG] = ACTIONS(4210), + [anon_sym_TILDE] = ACTIONS(4210), + [anon_sym_DASH] = ACTIONS(4208), + [anon_sym_PLUS] = ACTIONS(4208), + [anon_sym_STAR] = ACTIONS(4210), + [anon_sym_AMP_AMP] = ACTIONS(4210), + [anon_sym_AMP] = ACTIONS(4208), + [anon_sym_SEMI] = ACTIONS(4210), + [anon_sym___extension__] = ACTIONS(4208), + [anon_sym_typedef] = ACTIONS(4208), + [anon_sym_virtual] = ACTIONS(4208), + [anon_sym_extern] = ACTIONS(4208), + [anon_sym___attribute__] = ACTIONS(4208), + [anon_sym___attribute] = ACTIONS(4208), + [anon_sym_using] = ACTIONS(4208), + [anon_sym_COLON_COLON] = ACTIONS(4210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4210), + [anon_sym___declspec] = ACTIONS(4208), + [anon_sym___based] = ACTIONS(4208), + [anon_sym___cdecl] = ACTIONS(4208), + [anon_sym___clrcall] = ACTIONS(4208), + [anon_sym___stdcall] = ACTIONS(4208), + [anon_sym___fastcall] = ACTIONS(4208), + [anon_sym___thiscall] = ACTIONS(4208), + [anon_sym___vectorcall] = ACTIONS(4208), + [anon_sym_LBRACE] = ACTIONS(4210), + [anon_sym_signed] = ACTIONS(4208), + [anon_sym_unsigned] = ACTIONS(4208), + [anon_sym_long] = ACTIONS(4208), + [anon_sym_short] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(4208), + [anon_sym_static] = ACTIONS(4208), + [anon_sym_register] = ACTIONS(4208), + [anon_sym_inline] = ACTIONS(4208), + [anon_sym___inline] = ACTIONS(4208), + [anon_sym___inline__] = ACTIONS(4208), + [anon_sym___forceinline] = ACTIONS(4208), + [anon_sym_thread_local] = ACTIONS(4208), + [anon_sym___thread] = ACTIONS(4208), + [anon_sym_const] = ACTIONS(4208), + [anon_sym_constexpr] = ACTIONS(4208), + [anon_sym_volatile] = ACTIONS(4208), + [anon_sym_restrict] = ACTIONS(4208), + [anon_sym___restrict__] = ACTIONS(4208), + [anon_sym__Atomic] = ACTIONS(4208), + [anon_sym__Noreturn] = ACTIONS(4208), + [anon_sym_noreturn] = ACTIONS(4208), + [anon_sym__Nonnull] = ACTIONS(4208), + [anon_sym_mutable] = ACTIONS(4208), + [anon_sym_constinit] = ACTIONS(4208), + [anon_sym_consteval] = ACTIONS(4208), + [anon_sym_alignas] = ACTIONS(4208), + [anon_sym__Alignas] = ACTIONS(4208), + [sym_primitive_type] = ACTIONS(4208), + [anon_sym_enum] = ACTIONS(4208), + [anon_sym_class] = ACTIONS(4208), + [anon_sym_struct] = ACTIONS(4208), + [anon_sym_union] = ACTIONS(4208), + [anon_sym_if] = ACTIONS(4208), + [anon_sym_switch] = ACTIONS(4208), + [anon_sym_case] = ACTIONS(4208), + [anon_sym_default] = ACTIONS(4208), + [anon_sym_while] = ACTIONS(4208), + [anon_sym_do] = ACTIONS(4208), + [anon_sym_for] = ACTIONS(4208), + [anon_sym_return] = ACTIONS(4208), + [anon_sym_break] = ACTIONS(4208), + [anon_sym_continue] = ACTIONS(4208), + [anon_sym_goto] = ACTIONS(4208), + [anon_sym___try] = ACTIONS(4208), + [anon_sym___leave] = ACTIONS(4208), + [anon_sym_not] = ACTIONS(4208), + [anon_sym_compl] = ACTIONS(4208), + [anon_sym_DASH_DASH] = ACTIONS(4210), + [anon_sym_PLUS_PLUS] = ACTIONS(4210), + [anon_sym_sizeof] = ACTIONS(4208), + [anon_sym___alignof__] = ACTIONS(4208), + [anon_sym___alignof] = ACTIONS(4208), + [anon_sym__alignof] = ACTIONS(4208), + [anon_sym_alignof] = ACTIONS(4208), + [anon_sym__Alignof] = ACTIONS(4208), + [anon_sym_offsetof] = ACTIONS(4208), + [anon_sym__Generic] = ACTIONS(4208), + [anon_sym_typename] = ACTIONS(4208), + [anon_sym_asm] = ACTIONS(4208), + [anon_sym___asm__] = ACTIONS(4208), + [anon_sym___asm] = ACTIONS(4208), + [sym_number_literal] = ACTIONS(4210), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4210), + [anon_sym_u_DQUOTE] = ACTIONS(4210), + [anon_sym_U_DQUOTE] = ACTIONS(4210), + [anon_sym_u8_DQUOTE] = ACTIONS(4210), + [anon_sym_DQUOTE] = ACTIONS(4210), + [sym_true] = ACTIONS(4208), + [sym_false] = ACTIONS(4208), + [anon_sym_NULL] = ACTIONS(4208), + [anon_sym_nullptr] = ACTIONS(4208), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4208), + [anon_sym_decltype] = ACTIONS(4208), + [anon_sym_explicit] = ACTIONS(4208), + [anon_sym_export] = ACTIONS(4208), + [anon_sym_module] = ACTIONS(4208), + [anon_sym_import] = ACTIONS(4208), + [anon_sym_template] = ACTIONS(4208), + [anon_sym_operator] = ACTIONS(4208), + [anon_sym_try] = ACTIONS(4208), + [anon_sym_delete] = ACTIONS(4208), + [anon_sym_throw] = ACTIONS(4208), + [anon_sym_namespace] = ACTIONS(4208), + [anon_sym_static_assert] = ACTIONS(4208), + [anon_sym_concept] = ACTIONS(4208), + [anon_sym_co_return] = ACTIONS(4208), + [anon_sym_co_yield] = ACTIONS(4208), + [anon_sym_R_DQUOTE] = ACTIONS(4210), + [anon_sym_LR_DQUOTE] = ACTIONS(4210), + [anon_sym_uR_DQUOTE] = ACTIONS(4210), + [anon_sym_UR_DQUOTE] = ACTIONS(4210), + [anon_sym_u8R_DQUOTE] = ACTIONS(4210), + [anon_sym_co_await] = ACTIONS(4208), + [anon_sym_new] = ACTIONS(4208), + [anon_sym_requires] = ACTIONS(4208), + [anon_sym_CARET_CARET] = ACTIONS(4210), + [anon_sym_LBRACK_COLON] = ACTIONS(4210), + [sym_this] = ACTIONS(4208), + }, + [STATE(474)] = { + [sym_identifier] = ACTIONS(4212), + [aux_sym_preproc_include_token1] = ACTIONS(4212), + [aux_sym_preproc_def_token1] = ACTIONS(4212), + [aux_sym_preproc_if_token1] = ACTIONS(4212), + [aux_sym_preproc_if_token2] = ACTIONS(4212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4212), + [aux_sym_preproc_else_token1] = ACTIONS(4212), + [aux_sym_preproc_elif_token1] = ACTIONS(4212), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4212), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4212), + [sym_preproc_directive] = ACTIONS(4212), + [anon_sym_LPAREN2] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4212), + [anon_sym_PLUS] = ACTIONS(4212), + [anon_sym_STAR] = ACTIONS(4214), + [anon_sym_AMP_AMP] = ACTIONS(4214), + [anon_sym_AMP] = ACTIONS(4212), + [anon_sym_SEMI] = ACTIONS(4214), + [anon_sym___extension__] = ACTIONS(4212), + [anon_sym_typedef] = ACTIONS(4212), + [anon_sym_virtual] = ACTIONS(4212), + [anon_sym_extern] = ACTIONS(4212), + [anon_sym___attribute__] = ACTIONS(4212), + [anon_sym___attribute] = ACTIONS(4212), + [anon_sym_using] = ACTIONS(4212), + [anon_sym_COLON_COLON] = ACTIONS(4214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4214), + [anon_sym___declspec] = ACTIONS(4212), + [anon_sym___based] = ACTIONS(4212), + [anon_sym___cdecl] = ACTIONS(4212), + [anon_sym___clrcall] = ACTIONS(4212), + [anon_sym___stdcall] = ACTIONS(4212), + [anon_sym___fastcall] = ACTIONS(4212), + [anon_sym___thiscall] = ACTIONS(4212), + [anon_sym___vectorcall] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4214), + [anon_sym_signed] = ACTIONS(4212), + [anon_sym_unsigned] = ACTIONS(4212), + [anon_sym_long] = ACTIONS(4212), + [anon_sym_short] = ACTIONS(4212), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_static] = ACTIONS(4212), + [anon_sym_register] = ACTIONS(4212), + [anon_sym_inline] = ACTIONS(4212), + [anon_sym___inline] = ACTIONS(4212), + [anon_sym___inline__] = ACTIONS(4212), + [anon_sym___forceinline] = ACTIONS(4212), + [anon_sym_thread_local] = ACTIONS(4212), + [anon_sym___thread] = ACTIONS(4212), + [anon_sym_const] = ACTIONS(4212), + [anon_sym_constexpr] = ACTIONS(4212), + [anon_sym_volatile] = ACTIONS(4212), + [anon_sym_restrict] = ACTIONS(4212), + [anon_sym___restrict__] = ACTIONS(4212), + [anon_sym__Atomic] = ACTIONS(4212), + [anon_sym__Noreturn] = ACTIONS(4212), + [anon_sym_noreturn] = ACTIONS(4212), + [anon_sym__Nonnull] = ACTIONS(4212), + [anon_sym_mutable] = ACTIONS(4212), + [anon_sym_constinit] = ACTIONS(4212), + [anon_sym_consteval] = ACTIONS(4212), + [anon_sym_alignas] = ACTIONS(4212), + [anon_sym__Alignas] = ACTIONS(4212), + [sym_primitive_type] = ACTIONS(4212), + [anon_sym_enum] = ACTIONS(4212), + [anon_sym_class] = ACTIONS(4212), + [anon_sym_struct] = ACTIONS(4212), + [anon_sym_union] = ACTIONS(4212), + [anon_sym_if] = ACTIONS(4212), + [anon_sym_switch] = ACTIONS(4212), + [anon_sym_case] = ACTIONS(4212), + [anon_sym_default] = ACTIONS(4212), + [anon_sym_while] = ACTIONS(4212), + [anon_sym_do] = ACTIONS(4212), + [anon_sym_for] = ACTIONS(4212), + [anon_sym_return] = ACTIONS(4212), + [anon_sym_break] = ACTIONS(4212), + [anon_sym_continue] = ACTIONS(4212), + [anon_sym_goto] = ACTIONS(4212), + [anon_sym___try] = ACTIONS(4212), + [anon_sym___leave] = ACTIONS(4212), + [anon_sym_not] = ACTIONS(4212), + [anon_sym_compl] = ACTIONS(4212), + [anon_sym_DASH_DASH] = ACTIONS(4214), + [anon_sym_PLUS_PLUS] = ACTIONS(4214), + [anon_sym_sizeof] = ACTIONS(4212), + [anon_sym___alignof__] = ACTIONS(4212), + [anon_sym___alignof] = ACTIONS(4212), + [anon_sym__alignof] = ACTIONS(4212), + [anon_sym_alignof] = ACTIONS(4212), + [anon_sym__Alignof] = ACTIONS(4212), + [anon_sym_offsetof] = ACTIONS(4212), + [anon_sym__Generic] = ACTIONS(4212), + [anon_sym_typename] = ACTIONS(4212), + [anon_sym_asm] = ACTIONS(4212), + [anon_sym___asm__] = ACTIONS(4212), + [anon_sym___asm] = ACTIONS(4212), + [sym_number_literal] = ACTIONS(4214), + [anon_sym_L_SQUOTE] = ACTIONS(4214), + [anon_sym_u_SQUOTE] = ACTIONS(4214), + [anon_sym_U_SQUOTE] = ACTIONS(4214), + [anon_sym_u8_SQUOTE] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4214), + [anon_sym_L_DQUOTE] = ACTIONS(4214), + [anon_sym_u_DQUOTE] = ACTIONS(4214), + [anon_sym_U_DQUOTE] = ACTIONS(4214), + [anon_sym_u8_DQUOTE] = ACTIONS(4214), + [anon_sym_DQUOTE] = ACTIONS(4214), + [sym_true] = ACTIONS(4212), + [sym_false] = ACTIONS(4212), + [anon_sym_NULL] = ACTIONS(4212), + [anon_sym_nullptr] = ACTIONS(4212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4212), + [anon_sym_decltype] = ACTIONS(4212), + [anon_sym_explicit] = ACTIONS(4212), + [anon_sym_export] = ACTIONS(4212), + [anon_sym_module] = ACTIONS(4212), + [anon_sym_import] = ACTIONS(4212), + [anon_sym_template] = ACTIONS(4212), + [anon_sym_operator] = ACTIONS(4212), + [anon_sym_try] = ACTIONS(4212), + [anon_sym_delete] = ACTIONS(4212), + [anon_sym_throw] = ACTIONS(4212), + [anon_sym_namespace] = ACTIONS(4212), + [anon_sym_static_assert] = ACTIONS(4212), + [anon_sym_concept] = ACTIONS(4212), + [anon_sym_co_return] = ACTIONS(4212), + [anon_sym_co_yield] = ACTIONS(4212), + [anon_sym_R_DQUOTE] = ACTIONS(4214), + [anon_sym_LR_DQUOTE] = ACTIONS(4214), + [anon_sym_uR_DQUOTE] = ACTIONS(4214), + [anon_sym_UR_DQUOTE] = ACTIONS(4214), + [anon_sym_u8R_DQUOTE] = ACTIONS(4214), + [anon_sym_co_await] = ACTIONS(4212), + [anon_sym_new] = ACTIONS(4212), + [anon_sym_requires] = ACTIONS(4212), + [anon_sym_CARET_CARET] = ACTIONS(4214), + [anon_sym_LBRACK_COLON] = ACTIONS(4214), + [sym_this] = ACTIONS(4212), + }, + [STATE(475)] = { + [sym_type_qualifier] = STATE(5177), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(3585), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(6847), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(5965), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10422), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7926), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(4088), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(4666), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [aux_sym__type_definition_type_repeat1] = STATE(5177), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(4216), + [anon_sym_LPAREN2] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(4230), + [anon_sym_enum] = ACTIONS(3704), + [anon_sym_class] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_union] = ACTIONS(3710), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4236), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4184), - [anon_sym_decltype] = ACTIONS(4184), - [anon_sym_explicit] = ACTIONS(4184), - [anon_sym_export] = ACTIONS(4184), - [anon_sym_module] = ACTIONS(4184), - [anon_sym_import] = ACTIONS(4184), - [anon_sym_template] = ACTIONS(4184), - [anon_sym_operator] = ACTIONS(4184), - [anon_sym_try] = ACTIONS(4184), - [anon_sym_delete] = ACTIONS(4184), - [anon_sym_throw] = ACTIONS(4184), - [anon_sym_namespace] = ACTIONS(4184), - [anon_sym_static_assert] = ACTIONS(4184), - [anon_sym_concept] = ACTIONS(4184), - [anon_sym_co_return] = ACTIONS(4184), - [anon_sym_co_yield] = ACTIONS(4184), - [anon_sym_R_DQUOTE] = ACTIONS(4186), - [anon_sym_LR_DQUOTE] = ACTIONS(4186), - [anon_sym_uR_DQUOTE] = ACTIONS(4186), - [anon_sym_UR_DQUOTE] = ACTIONS(4186), - [anon_sym_u8R_DQUOTE] = ACTIONS(4186), - [anon_sym_co_await] = ACTIONS(4184), - [anon_sym_new] = ACTIONS(4184), - [anon_sym_requires] = ACTIONS(4184), - [anon_sym_CARET_CARET] = ACTIONS(4186), - [anon_sym_LBRACK_COLON] = ACTIONS(4186), - [sym_this] = ACTIONS(4184), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(531)] = { - [sym_expression] = STATE(5661), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(5840), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_COMMA] = ACTIONS(2026), - [anon_sym_RPAREN] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(25), + [STATE(476)] = { + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(7081), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(11548), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7912), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5230), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3784), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(2024), - [anon_sym_PLUS] = ACTIONS(2024), - [anon_sym_STAR] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - [anon_sym_EQ_EQ] = ACTIONS(2026), - [anon_sym_BANG_EQ] = ACTIONS(2026), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2026), - [anon_sym_LT_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2026), - [anon_sym_GT_GT] = ACTIONS(2026), - [anon_sym_SEMI] = ACTIONS(2026), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(2026), - [anon_sym_LBRACK] = ACTIONS(2024), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_QMARK] = ACTIONS(2026), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_LT_EQ_GT] = ACTIONS(2026), - [anon_sym_or] = ACTIONS(2024), - [anon_sym_and] = ACTIONS(2024), - [anon_sym_bitor] = ACTIONS(2024), - [anon_sym_xor] = ACTIONS(2024), - [anon_sym_bitand] = ACTIONS(2024), - [anon_sym_not_eq] = ACTIONS(2024), - [anon_sym_DASH_DASH] = ACTIONS(2026), - [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), @@ -130302,13 +128098,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(3786), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2026), - [anon_sym_DASH_GT] = ACTIONS(2026), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -130325,8 +128118,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -130337,1091 +128131,1271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [anon_sym_COLON_RBRACK] = ACTIONS(2026), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(532)] = { - [ts_builtin_sym_end] = ACTIONS(4136), - [sym_identifier] = ACTIONS(4134), - [aux_sym_preproc_include_token1] = ACTIONS(4134), - [aux_sym_preproc_def_token1] = ACTIONS(4134), - [anon_sym_COMMA] = ACTIONS(4136), - [aux_sym_preproc_if_token1] = ACTIONS(4134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4134), - [sym_preproc_directive] = ACTIONS(4134), - [anon_sym_LPAREN2] = ACTIONS(4136), - [anon_sym_BANG] = ACTIONS(4136), - [anon_sym_TILDE] = ACTIONS(4136), - [anon_sym_DASH] = ACTIONS(4134), - [anon_sym_PLUS] = ACTIONS(4134), - [anon_sym_STAR] = ACTIONS(4136), - [anon_sym_AMP_AMP] = ACTIONS(4136), - [anon_sym_AMP] = ACTIONS(4134), - [anon_sym_SEMI] = ACTIONS(4136), - [anon_sym___extension__] = ACTIONS(4134), - [anon_sym_typedef] = ACTIONS(4134), - [anon_sym_virtual] = ACTIONS(4134), - [anon_sym_extern] = ACTIONS(4134), - [anon_sym___attribute__] = ACTIONS(4134), - [anon_sym___attribute] = ACTIONS(4134), - [anon_sym_using] = ACTIONS(4134), - [anon_sym_COLON_COLON] = ACTIONS(4136), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4136), - [anon_sym___declspec] = ACTIONS(4134), - [anon_sym___based] = ACTIONS(4134), - [anon_sym___cdecl] = ACTIONS(4134), - [anon_sym___clrcall] = ACTIONS(4134), - [anon_sym___stdcall] = ACTIONS(4134), - [anon_sym___fastcall] = ACTIONS(4134), - [anon_sym___thiscall] = ACTIONS(4134), - [anon_sym___vectorcall] = ACTIONS(4134), - [anon_sym_LBRACE] = ACTIONS(4136), - [anon_sym_RBRACE] = ACTIONS(4136), - [anon_sym_signed] = ACTIONS(4134), - [anon_sym_unsigned] = ACTIONS(4134), - [anon_sym_long] = ACTIONS(4134), - [anon_sym_short] = ACTIONS(4134), - [anon_sym_LBRACK] = ACTIONS(4134), - [anon_sym_static] = ACTIONS(4134), - [anon_sym_register] = ACTIONS(4134), - [anon_sym_inline] = ACTIONS(4134), - [anon_sym___inline] = ACTIONS(4134), - [anon_sym___inline__] = ACTIONS(4134), - [anon_sym___forceinline] = ACTIONS(4134), - [anon_sym_thread_local] = ACTIONS(4134), - [anon_sym___thread] = ACTIONS(4134), - [anon_sym_const] = ACTIONS(4134), - [anon_sym_constexpr] = ACTIONS(4134), - [anon_sym_volatile] = ACTIONS(4134), - [anon_sym_restrict] = ACTIONS(4134), - [anon_sym___restrict__] = ACTIONS(4134), - [anon_sym__Atomic] = ACTIONS(4134), - [anon_sym__Noreturn] = ACTIONS(4134), - [anon_sym_noreturn] = ACTIONS(4134), - [anon_sym__Nonnull] = ACTIONS(4134), - [anon_sym_mutable] = ACTIONS(4134), - [anon_sym_constinit] = ACTIONS(4134), - [anon_sym_consteval] = ACTIONS(4134), - [anon_sym_alignas] = ACTIONS(4134), - [anon_sym__Alignas] = ACTIONS(4134), - [sym_primitive_type] = ACTIONS(4134), - [anon_sym_enum] = ACTIONS(4134), - [anon_sym_class] = ACTIONS(4134), - [anon_sym_struct] = ACTIONS(4134), - [anon_sym_union] = ACTIONS(4134), - [anon_sym_if] = ACTIONS(4134), - [anon_sym_switch] = ACTIONS(4134), - [anon_sym_case] = ACTIONS(4134), - [anon_sym_default] = ACTIONS(4134), - [anon_sym_while] = ACTIONS(4134), - [anon_sym_do] = ACTIONS(4134), - [anon_sym_for] = ACTIONS(4134), - [anon_sym_return] = ACTIONS(4134), - [anon_sym_break] = ACTIONS(4134), - [anon_sym_continue] = ACTIONS(4134), - [anon_sym_goto] = ACTIONS(4134), - [anon_sym_not] = ACTIONS(4134), - [anon_sym_compl] = ACTIONS(4134), - [anon_sym_DASH_DASH] = ACTIONS(4136), - [anon_sym_PLUS_PLUS] = ACTIONS(4136), - [anon_sym_sizeof] = ACTIONS(4134), - [anon_sym___alignof__] = ACTIONS(4134), - [anon_sym___alignof] = ACTIONS(4134), - [anon_sym__alignof] = ACTIONS(4134), - [anon_sym_alignof] = ACTIONS(4134), - [anon_sym__Alignof] = ACTIONS(4134), - [anon_sym_offsetof] = ACTIONS(4134), - [anon_sym__Generic] = ACTIONS(4134), - [anon_sym_typename] = ACTIONS(4134), - [anon_sym_asm] = ACTIONS(4134), - [anon_sym___asm__] = ACTIONS(4134), - [anon_sym___asm] = ACTIONS(4134), - [sym_number_literal] = ACTIONS(4136), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4136), - [anon_sym_u_DQUOTE] = ACTIONS(4136), - [anon_sym_U_DQUOTE] = ACTIONS(4136), - [anon_sym_u8_DQUOTE] = ACTIONS(4136), - [anon_sym_DQUOTE] = ACTIONS(4136), - [sym_true] = ACTIONS(4134), - [sym_false] = ACTIONS(4134), - [anon_sym_NULL] = ACTIONS(4134), - [anon_sym_nullptr] = ACTIONS(4134), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4134), - [anon_sym_decltype] = ACTIONS(4134), - [anon_sym_explicit] = ACTIONS(4134), - [anon_sym_export] = ACTIONS(4134), - [anon_sym_module] = ACTIONS(4134), - [anon_sym_import] = ACTIONS(4134), - [anon_sym_template] = ACTIONS(4134), - [anon_sym_operator] = ACTIONS(4134), - [anon_sym_try] = ACTIONS(4134), - [anon_sym_delete] = ACTIONS(4134), - [anon_sym_throw] = ACTIONS(4134), - [anon_sym_namespace] = ACTIONS(4134), - [anon_sym_static_assert] = ACTIONS(4134), - [anon_sym_concept] = ACTIONS(4134), - [anon_sym_co_return] = ACTIONS(4134), - [anon_sym_co_yield] = ACTIONS(4134), - [anon_sym_R_DQUOTE] = ACTIONS(4136), - [anon_sym_LR_DQUOTE] = ACTIONS(4136), - [anon_sym_uR_DQUOTE] = ACTIONS(4136), - [anon_sym_UR_DQUOTE] = ACTIONS(4136), - [anon_sym_u8R_DQUOTE] = ACTIONS(4136), - [anon_sym_co_await] = ACTIONS(4134), - [anon_sym_new] = ACTIONS(4134), - [anon_sym_requires] = ACTIONS(4134), - [anon_sym_CARET_CARET] = ACTIONS(4136), - [anon_sym_LBRACK_COLON] = ACTIONS(4136), - [sym_this] = ACTIONS(4134), + [STATE(477)] = { + [sym_identifier] = ACTIONS(4246), + [aux_sym_preproc_include_token1] = ACTIONS(4246), + [aux_sym_preproc_def_token1] = ACTIONS(4246), + [aux_sym_preproc_if_token1] = ACTIONS(4246), + [aux_sym_preproc_if_token2] = ACTIONS(4246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4246), + [aux_sym_preproc_else_token1] = ACTIONS(4246), + [aux_sym_preproc_elif_token1] = ACTIONS(4246), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4246), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4246), + [sym_preproc_directive] = ACTIONS(4246), + [anon_sym_LPAREN2] = ACTIONS(4248), + [anon_sym_BANG] = ACTIONS(4248), + [anon_sym_TILDE] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4246), + [anon_sym_STAR] = ACTIONS(4248), + [anon_sym_AMP_AMP] = ACTIONS(4248), + [anon_sym_AMP] = ACTIONS(4246), + [anon_sym_SEMI] = ACTIONS(4248), + [anon_sym___extension__] = ACTIONS(4246), + [anon_sym_typedef] = ACTIONS(4246), + [anon_sym_virtual] = ACTIONS(4246), + [anon_sym_extern] = ACTIONS(4246), + [anon_sym___attribute__] = ACTIONS(4246), + [anon_sym___attribute] = ACTIONS(4246), + [anon_sym_using] = ACTIONS(4246), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4248), + [anon_sym___declspec] = ACTIONS(4246), + [anon_sym___based] = ACTIONS(4246), + [anon_sym___cdecl] = ACTIONS(4246), + [anon_sym___clrcall] = ACTIONS(4246), + [anon_sym___stdcall] = ACTIONS(4246), + [anon_sym___fastcall] = ACTIONS(4246), + [anon_sym___thiscall] = ACTIONS(4246), + [anon_sym___vectorcall] = ACTIONS(4246), + [anon_sym_LBRACE] = ACTIONS(4248), + [anon_sym_signed] = ACTIONS(4246), + [anon_sym_unsigned] = ACTIONS(4246), + [anon_sym_long] = ACTIONS(4246), + [anon_sym_short] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_static] = ACTIONS(4246), + [anon_sym_register] = ACTIONS(4246), + [anon_sym_inline] = ACTIONS(4246), + [anon_sym___inline] = ACTIONS(4246), + [anon_sym___inline__] = ACTIONS(4246), + [anon_sym___forceinline] = ACTIONS(4246), + [anon_sym_thread_local] = ACTIONS(4246), + [anon_sym___thread] = ACTIONS(4246), + [anon_sym_const] = ACTIONS(4246), + [anon_sym_constexpr] = ACTIONS(4246), + [anon_sym_volatile] = ACTIONS(4246), + [anon_sym_restrict] = ACTIONS(4246), + [anon_sym___restrict__] = ACTIONS(4246), + [anon_sym__Atomic] = ACTIONS(4246), + [anon_sym__Noreturn] = ACTIONS(4246), + [anon_sym_noreturn] = ACTIONS(4246), + [anon_sym__Nonnull] = ACTIONS(4246), + [anon_sym_mutable] = ACTIONS(4246), + [anon_sym_constinit] = ACTIONS(4246), + [anon_sym_consteval] = ACTIONS(4246), + [anon_sym_alignas] = ACTIONS(4246), + [anon_sym__Alignas] = ACTIONS(4246), + [sym_primitive_type] = ACTIONS(4246), + [anon_sym_enum] = ACTIONS(4246), + [anon_sym_class] = ACTIONS(4246), + [anon_sym_struct] = ACTIONS(4246), + [anon_sym_union] = ACTIONS(4246), + [anon_sym_if] = ACTIONS(4246), + [anon_sym_switch] = ACTIONS(4246), + [anon_sym_case] = ACTIONS(4246), + [anon_sym_default] = ACTIONS(4246), + [anon_sym_while] = ACTIONS(4246), + [anon_sym_do] = ACTIONS(4246), + [anon_sym_for] = ACTIONS(4246), + [anon_sym_return] = ACTIONS(4246), + [anon_sym_break] = ACTIONS(4246), + [anon_sym_continue] = ACTIONS(4246), + [anon_sym_goto] = ACTIONS(4246), + [anon_sym___try] = ACTIONS(4246), + [anon_sym___leave] = ACTIONS(4246), + [anon_sym_not] = ACTIONS(4246), + [anon_sym_compl] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4248), + [anon_sym_PLUS_PLUS] = ACTIONS(4248), + [anon_sym_sizeof] = ACTIONS(4246), + [anon_sym___alignof__] = ACTIONS(4246), + [anon_sym___alignof] = ACTIONS(4246), + [anon_sym__alignof] = ACTIONS(4246), + [anon_sym_alignof] = ACTIONS(4246), + [anon_sym__Alignof] = ACTIONS(4246), + [anon_sym_offsetof] = ACTIONS(4246), + [anon_sym__Generic] = ACTIONS(4246), + [anon_sym_typename] = ACTIONS(4246), + [anon_sym_asm] = ACTIONS(4246), + [anon_sym___asm__] = ACTIONS(4246), + [anon_sym___asm] = ACTIONS(4246), + [sym_number_literal] = ACTIONS(4248), + [anon_sym_L_SQUOTE] = ACTIONS(4248), + [anon_sym_u_SQUOTE] = ACTIONS(4248), + [anon_sym_U_SQUOTE] = ACTIONS(4248), + [anon_sym_u8_SQUOTE] = ACTIONS(4248), + [anon_sym_SQUOTE] = ACTIONS(4248), + [anon_sym_L_DQUOTE] = ACTIONS(4248), + [anon_sym_u_DQUOTE] = ACTIONS(4248), + [anon_sym_U_DQUOTE] = ACTIONS(4248), + [anon_sym_u8_DQUOTE] = ACTIONS(4248), + [anon_sym_DQUOTE] = ACTIONS(4248), + [sym_true] = ACTIONS(4246), + [sym_false] = ACTIONS(4246), + [anon_sym_NULL] = ACTIONS(4246), + [anon_sym_nullptr] = ACTIONS(4246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4246), + [anon_sym_decltype] = ACTIONS(4246), + [anon_sym_explicit] = ACTIONS(4246), + [anon_sym_export] = ACTIONS(4246), + [anon_sym_module] = ACTIONS(4246), + [anon_sym_import] = ACTIONS(4246), + [anon_sym_template] = ACTIONS(4246), + [anon_sym_operator] = ACTIONS(4246), + [anon_sym_try] = ACTIONS(4246), + [anon_sym_delete] = ACTIONS(4246), + [anon_sym_throw] = ACTIONS(4246), + [anon_sym_namespace] = ACTIONS(4246), + [anon_sym_static_assert] = ACTIONS(4246), + [anon_sym_concept] = ACTIONS(4246), + [anon_sym_co_return] = ACTIONS(4246), + [anon_sym_co_yield] = ACTIONS(4246), + [anon_sym_R_DQUOTE] = ACTIONS(4248), + [anon_sym_LR_DQUOTE] = ACTIONS(4248), + [anon_sym_uR_DQUOTE] = ACTIONS(4248), + [anon_sym_UR_DQUOTE] = ACTIONS(4248), + [anon_sym_u8R_DQUOTE] = ACTIONS(4248), + [anon_sym_co_await] = ACTIONS(4246), + [anon_sym_new] = ACTIONS(4246), + [anon_sym_requires] = ACTIONS(4246), + [anon_sym_CARET_CARET] = ACTIONS(4248), + [anon_sym_LBRACK_COLON] = ACTIONS(4248), + [sym_this] = ACTIONS(4246), }, - [STATE(533)] = { - [ts_builtin_sym_end] = ACTIONS(2801), - [sym_identifier] = ACTIONS(2803), - [aux_sym_preproc_include_token1] = ACTIONS(2803), - [aux_sym_preproc_def_token1] = ACTIONS(2803), - [anon_sym_COMMA] = ACTIONS(3888), - [anon_sym_RPAREN] = ACTIONS(3888), - [aux_sym_preproc_if_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2803), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2803), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(3888), - [anon_sym___extension__] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2803), - [anon_sym_virtual] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym___attribute__] = ACTIONS(2803), - [anon_sym___attribute] = ACTIONS(2803), - [anon_sym_using] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2803), - [anon_sym___based] = ACTIONS(2803), - [anon_sym___cdecl] = ACTIONS(2803), - [anon_sym___clrcall] = ACTIONS(2803), - [anon_sym___stdcall] = ACTIONS(2803), - [anon_sym___fastcall] = ACTIONS(2803), - [anon_sym___thiscall] = ACTIONS(2803), - [anon_sym___vectorcall] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_signed] = ACTIONS(2803), - [anon_sym_unsigned] = ACTIONS(2803), - [anon_sym_long] = ACTIONS(2803), - [anon_sym_short] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_register] = ACTIONS(2803), - [anon_sym_inline] = ACTIONS(2803), - [anon_sym___inline] = ACTIONS(2803), - [anon_sym___inline__] = ACTIONS(2803), - [anon_sym___forceinline] = ACTIONS(2803), - [anon_sym_thread_local] = ACTIONS(2803), - [anon_sym___thread] = ACTIONS(2803), - [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__Nonnull] = ACTIONS(2803), - [anon_sym_mutable] = ACTIONS(2803), - [anon_sym_constinit] = ACTIONS(2803), - [anon_sym_consteval] = ACTIONS(2803), - [anon_sym_alignas] = ACTIONS(2803), - [anon_sym__Alignas] = ACTIONS(2803), - [sym_primitive_type] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_if] = ACTIONS(2803), - [anon_sym_switch] = ACTIONS(2803), - [anon_sym_case] = ACTIONS(2803), - [anon_sym_default] = ACTIONS(2803), - [anon_sym_while] = ACTIONS(2803), - [anon_sym_do] = ACTIONS(2803), - [anon_sym_for] = ACTIONS(2803), - [anon_sym_return] = ACTIONS(2803), - [anon_sym_break] = ACTIONS(2803), - [anon_sym_continue] = ACTIONS(2803), - [anon_sym_goto] = ACTIONS(2803), - [anon_sym_not] = ACTIONS(2803), - [anon_sym_compl] = ACTIONS(2803), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_sizeof] = ACTIONS(2803), - [anon_sym___alignof__] = ACTIONS(2803), - [anon_sym___alignof] = ACTIONS(2803), - [anon_sym__alignof] = ACTIONS(2803), - [anon_sym_alignof] = ACTIONS(2803), - [anon_sym__Alignof] = ACTIONS(2803), - [anon_sym_offsetof] = ACTIONS(2803), - [anon_sym__Generic] = ACTIONS(2803), - [anon_sym_typename] = ACTIONS(2803), - [anon_sym_asm] = ACTIONS(2803), - [anon_sym___asm__] = ACTIONS(2803), - [anon_sym___asm] = ACTIONS(2803), - [sym_number_literal] = ACTIONS(2801), - [anon_sym_L_SQUOTE] = ACTIONS(2801), - [anon_sym_u_SQUOTE] = ACTIONS(2801), - [anon_sym_U_SQUOTE] = ACTIONS(2801), - [anon_sym_u8_SQUOTE] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2801), - [anon_sym_L_DQUOTE] = ACTIONS(2801), - [anon_sym_u_DQUOTE] = ACTIONS(2801), - [anon_sym_U_DQUOTE] = ACTIONS(2801), - [anon_sym_u8_DQUOTE] = ACTIONS(2801), - [anon_sym_DQUOTE] = ACTIONS(2801), - [sym_true] = ACTIONS(2803), - [sym_false] = ACTIONS(2803), - [anon_sym_NULL] = ACTIONS(2803), - [anon_sym_nullptr] = ACTIONS(2803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2803), - [anon_sym_decltype] = ACTIONS(2803), - [anon_sym_explicit] = ACTIONS(2803), - [anon_sym_export] = ACTIONS(2803), - [anon_sym_module] = ACTIONS(2803), - [anon_sym_import] = ACTIONS(2803), - [anon_sym_template] = ACTIONS(2803), - [anon_sym_operator] = ACTIONS(2803), - [anon_sym_try] = ACTIONS(2803), - [anon_sym_delete] = ACTIONS(2803), - [anon_sym_throw] = ACTIONS(2803), - [anon_sym_namespace] = ACTIONS(2803), - [anon_sym_static_assert] = ACTIONS(2803), - [anon_sym_concept] = ACTIONS(2803), - [anon_sym_co_return] = ACTIONS(2803), - [anon_sym_co_yield] = ACTIONS(2803), - [anon_sym_R_DQUOTE] = ACTIONS(2801), - [anon_sym_LR_DQUOTE] = ACTIONS(2801), - [anon_sym_uR_DQUOTE] = ACTIONS(2801), - [anon_sym_UR_DQUOTE] = ACTIONS(2801), - [anon_sym_u8R_DQUOTE] = ACTIONS(2801), - [anon_sym_co_await] = ACTIONS(2803), - [anon_sym_new] = ACTIONS(2803), - [anon_sym_requires] = ACTIONS(2803), - [anon_sym_CARET_CARET] = ACTIONS(2801), - [anon_sym_LBRACK_COLON] = ACTIONS(2801), - [sym_this] = ACTIONS(2803), + [STATE(478)] = { + [sym_type_qualifier] = STATE(5062), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(2280), + [sym_sized_type_specifier] = STATE(2222), + [sym_enum_specifier] = STATE(2222), + [sym_struct_specifier] = STATE(2222), + [sym_union_specifier] = STATE(2222), + [sym_expression] = STATE(5395), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_type_descriptor] = STATE(3833), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_placeholder_type_specifier] = STATE(2222), + [sym_decltype_auto] = STATE(2221), + [sym_decltype] = STATE(2169), + [sym_class_specifier] = STATE(2222), + [sym__class_name] = STATE(10271), + [sym_dependent_type] = STATE(2222), + [sym_template_type] = STATE(2146), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7975), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(2207), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(2251), + [sym__splice_specialization_specifier] = STATE(2170), + [sym_splice_type_specifier] = STATE(2223), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [aux_sym__type_definition_type_repeat1] = STATE(5062), + [aux_sym_sized_type_specifier_repeat1] = STATE(2076), + [sym_identifier] = ACTIONS(3909), + [anon_sym_LPAREN2] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4252), + [anon_sym_COLON_COLON] = ACTIONS(4254), + [anon_sym_signed] = ACTIONS(3803), + [anon_sym_unsigned] = ACTIONS(3803), + [anon_sym_long] = ACTIONS(3803), + [anon_sym_short] = ACTIONS(3803), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3805), + [anon_sym_enum] = ACTIONS(3807), + [anon_sym_class] = ACTIONS(3809), + [anon_sym_struct] = ACTIONS(3811), + [anon_sym_union] = ACTIONS(3813), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(3817), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3819), + [anon_sym_decltype] = ACTIONS(3821), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [STATE(534)] = { - [sym_catch_clause] = STATE(507), - [aux_sym_constructor_try_statement_repeat1] = STATE(507), - [sym_identifier] = ACTIONS(3554), - [aux_sym_preproc_include_token1] = ACTIONS(3554), - [aux_sym_preproc_def_token1] = ACTIONS(3554), - [aux_sym_preproc_if_token1] = ACTIONS(3554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3554), - [sym_preproc_directive] = ACTIONS(3554), - [anon_sym_LPAREN2] = ACTIONS(3556), - [anon_sym_BANG] = ACTIONS(3556), - [anon_sym_TILDE] = ACTIONS(3556), - [anon_sym_DASH] = ACTIONS(3554), - [anon_sym_PLUS] = ACTIONS(3554), - [anon_sym_STAR] = ACTIONS(3556), - [anon_sym_AMP_AMP] = ACTIONS(3556), - [anon_sym_AMP] = ACTIONS(3554), - [anon_sym_SEMI] = ACTIONS(3556), - [anon_sym___extension__] = ACTIONS(3554), - [anon_sym_typedef] = ACTIONS(3554), - [anon_sym_virtual] = ACTIONS(3554), - [anon_sym_extern] = ACTIONS(3554), - [anon_sym___attribute__] = ACTIONS(3554), - [anon_sym___attribute] = ACTIONS(3554), - [anon_sym_using] = ACTIONS(3554), - [anon_sym_COLON_COLON] = ACTIONS(3556), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3556), - [anon_sym___declspec] = ACTIONS(3554), - [anon_sym___based] = ACTIONS(3554), - [anon_sym___cdecl] = ACTIONS(3554), - [anon_sym___clrcall] = ACTIONS(3554), - [anon_sym___stdcall] = ACTIONS(3554), - [anon_sym___fastcall] = ACTIONS(3554), - [anon_sym___thiscall] = ACTIONS(3554), - [anon_sym___vectorcall] = ACTIONS(3554), - [anon_sym_LBRACE] = ACTIONS(3556), - [anon_sym_RBRACE] = ACTIONS(3556), - [anon_sym_signed] = ACTIONS(3554), - [anon_sym_unsigned] = ACTIONS(3554), - [anon_sym_long] = ACTIONS(3554), - [anon_sym_short] = ACTIONS(3554), - [anon_sym_LBRACK] = ACTIONS(3554), - [anon_sym_static] = ACTIONS(3554), - [anon_sym_register] = ACTIONS(3554), - [anon_sym_inline] = ACTIONS(3554), - [anon_sym___inline] = ACTIONS(3554), - [anon_sym___inline__] = ACTIONS(3554), - [anon_sym___forceinline] = ACTIONS(3554), - [anon_sym_thread_local] = ACTIONS(3554), - [anon_sym___thread] = ACTIONS(3554), - [anon_sym_const] = ACTIONS(3554), - [anon_sym_constexpr] = ACTIONS(3554), - [anon_sym_volatile] = ACTIONS(3554), - [anon_sym_restrict] = ACTIONS(3554), - [anon_sym___restrict__] = ACTIONS(3554), - [anon_sym__Atomic] = ACTIONS(3554), - [anon_sym__Noreturn] = ACTIONS(3554), - [anon_sym_noreturn] = ACTIONS(3554), - [anon_sym__Nonnull] = ACTIONS(3554), - [anon_sym_mutable] = ACTIONS(3554), - [anon_sym_constinit] = ACTIONS(3554), - [anon_sym_consteval] = ACTIONS(3554), - [anon_sym_alignas] = ACTIONS(3554), - [anon_sym__Alignas] = ACTIONS(3554), - [sym_primitive_type] = ACTIONS(3554), - [anon_sym_enum] = ACTIONS(3554), - [anon_sym_class] = ACTIONS(3554), - [anon_sym_struct] = ACTIONS(3554), - [anon_sym_union] = ACTIONS(3554), - [anon_sym_if] = ACTIONS(3554), - [anon_sym_switch] = ACTIONS(3554), - [anon_sym_case] = ACTIONS(3554), - [anon_sym_default] = ACTIONS(3554), - [anon_sym_while] = ACTIONS(3554), - [anon_sym_do] = ACTIONS(3554), - [anon_sym_for] = ACTIONS(3554), - [anon_sym_return] = ACTIONS(3554), - [anon_sym_break] = ACTIONS(3554), - [anon_sym_continue] = ACTIONS(3554), - [anon_sym_goto] = ACTIONS(3554), - [anon_sym___try] = ACTIONS(3554), - [anon_sym___leave] = ACTIONS(3554), - [anon_sym_not] = ACTIONS(3554), - [anon_sym_compl] = ACTIONS(3554), - [anon_sym_DASH_DASH] = ACTIONS(3556), - [anon_sym_PLUS_PLUS] = ACTIONS(3556), - [anon_sym_sizeof] = ACTIONS(3554), - [anon_sym___alignof__] = ACTIONS(3554), - [anon_sym___alignof] = ACTIONS(3554), - [anon_sym__alignof] = ACTIONS(3554), - [anon_sym_alignof] = ACTIONS(3554), - [anon_sym__Alignof] = ACTIONS(3554), - [anon_sym_offsetof] = ACTIONS(3554), - [anon_sym__Generic] = ACTIONS(3554), - [anon_sym_typename] = ACTIONS(3554), - [anon_sym_asm] = ACTIONS(3554), - [anon_sym___asm__] = ACTIONS(3554), - [anon_sym___asm] = ACTIONS(3554), - [sym_number_literal] = ACTIONS(3556), - [anon_sym_L_SQUOTE] = ACTIONS(3556), - [anon_sym_u_SQUOTE] = ACTIONS(3556), - [anon_sym_U_SQUOTE] = ACTIONS(3556), - [anon_sym_u8_SQUOTE] = ACTIONS(3556), - [anon_sym_SQUOTE] = ACTIONS(3556), - [anon_sym_L_DQUOTE] = ACTIONS(3556), - [anon_sym_u_DQUOTE] = ACTIONS(3556), - [anon_sym_U_DQUOTE] = ACTIONS(3556), - [anon_sym_u8_DQUOTE] = ACTIONS(3556), - [anon_sym_DQUOTE] = ACTIONS(3556), - [sym_true] = ACTIONS(3554), - [sym_false] = ACTIONS(3554), - [anon_sym_NULL] = ACTIONS(3554), - [anon_sym_nullptr] = ACTIONS(3554), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3554), - [anon_sym_decltype] = ACTIONS(3554), - [anon_sym_explicit] = ACTIONS(3554), - [anon_sym_template] = ACTIONS(3554), - [anon_sym_operator] = ACTIONS(3554), - [anon_sym_try] = ACTIONS(3554), - [anon_sym_delete] = ACTIONS(3554), - [anon_sym_throw] = ACTIONS(3554), - [anon_sym_namespace] = ACTIONS(3554), - [anon_sym_static_assert] = ACTIONS(3554), - [anon_sym_concept] = ACTIONS(3554), - [anon_sym_co_return] = ACTIONS(3554), - [anon_sym_co_yield] = ACTIONS(3554), - [anon_sym_catch] = ACTIONS(4129), - [anon_sym_R_DQUOTE] = ACTIONS(3556), - [anon_sym_LR_DQUOTE] = ACTIONS(3556), - [anon_sym_uR_DQUOTE] = ACTIONS(3556), - [anon_sym_UR_DQUOTE] = ACTIONS(3556), - [anon_sym_u8R_DQUOTE] = ACTIONS(3556), - [anon_sym_co_await] = ACTIONS(3554), - [anon_sym_new] = ACTIONS(3554), - [anon_sym_requires] = ACTIONS(3554), - [anon_sym_CARET_CARET] = ACTIONS(3556), - [anon_sym_LBRACK_COLON] = ACTIONS(3556), - [sym_this] = ACTIONS(3554), + [STATE(479)] = { + [sym_identifier] = ACTIONS(4258), + [aux_sym_preproc_include_token1] = ACTIONS(4258), + [aux_sym_preproc_def_token1] = ACTIONS(4258), + [aux_sym_preproc_if_token1] = ACTIONS(4258), + [aux_sym_preproc_if_token2] = ACTIONS(4258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4258), + [aux_sym_preproc_else_token1] = ACTIONS(4258), + [aux_sym_preproc_elif_token1] = ACTIONS(4258), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4258), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4258), + [sym_preproc_directive] = ACTIONS(4258), + [anon_sym_LPAREN2] = ACTIONS(4260), + [anon_sym_BANG] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4260), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_STAR] = ACTIONS(4260), + [anon_sym_AMP_AMP] = ACTIONS(4260), + [anon_sym_AMP] = ACTIONS(4258), + [anon_sym_SEMI] = ACTIONS(4260), + [anon_sym___extension__] = ACTIONS(4258), + [anon_sym_typedef] = ACTIONS(4258), + [anon_sym_virtual] = ACTIONS(4258), + [anon_sym_extern] = ACTIONS(4258), + [anon_sym___attribute__] = ACTIONS(4258), + [anon_sym___attribute] = ACTIONS(4258), + [anon_sym_using] = ACTIONS(4258), + [anon_sym_COLON_COLON] = ACTIONS(4260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4260), + [anon_sym___declspec] = ACTIONS(4258), + [anon_sym___based] = ACTIONS(4258), + [anon_sym___cdecl] = ACTIONS(4258), + [anon_sym___clrcall] = ACTIONS(4258), + [anon_sym___stdcall] = ACTIONS(4258), + [anon_sym___fastcall] = ACTIONS(4258), + [anon_sym___thiscall] = ACTIONS(4258), + [anon_sym___vectorcall] = ACTIONS(4258), + [anon_sym_LBRACE] = ACTIONS(4260), + [anon_sym_signed] = ACTIONS(4258), + [anon_sym_unsigned] = ACTIONS(4258), + [anon_sym_long] = ACTIONS(4258), + [anon_sym_short] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_register] = ACTIONS(4258), + [anon_sym_inline] = ACTIONS(4258), + [anon_sym___inline] = ACTIONS(4258), + [anon_sym___inline__] = ACTIONS(4258), + [anon_sym___forceinline] = ACTIONS(4258), + [anon_sym_thread_local] = ACTIONS(4258), + [anon_sym___thread] = ACTIONS(4258), + [anon_sym_const] = ACTIONS(4258), + [anon_sym_constexpr] = ACTIONS(4258), + [anon_sym_volatile] = ACTIONS(4258), + [anon_sym_restrict] = ACTIONS(4258), + [anon_sym___restrict__] = ACTIONS(4258), + [anon_sym__Atomic] = ACTIONS(4258), + [anon_sym__Noreturn] = ACTIONS(4258), + [anon_sym_noreturn] = ACTIONS(4258), + [anon_sym__Nonnull] = ACTIONS(4258), + [anon_sym_mutable] = ACTIONS(4258), + [anon_sym_constinit] = ACTIONS(4258), + [anon_sym_consteval] = ACTIONS(4258), + [anon_sym_alignas] = ACTIONS(4258), + [anon_sym__Alignas] = ACTIONS(4258), + [sym_primitive_type] = ACTIONS(4258), + [anon_sym_enum] = ACTIONS(4258), + [anon_sym_class] = ACTIONS(4258), + [anon_sym_struct] = ACTIONS(4258), + [anon_sym_union] = ACTIONS(4258), + [anon_sym_if] = ACTIONS(4258), + [anon_sym_switch] = ACTIONS(4258), + [anon_sym_case] = ACTIONS(4258), + [anon_sym_default] = ACTIONS(4258), + [anon_sym_while] = ACTIONS(4258), + [anon_sym_do] = ACTIONS(4258), + [anon_sym_for] = ACTIONS(4258), + [anon_sym_return] = ACTIONS(4258), + [anon_sym_break] = ACTIONS(4258), + [anon_sym_continue] = ACTIONS(4258), + [anon_sym_goto] = ACTIONS(4258), + [anon_sym___try] = ACTIONS(4258), + [anon_sym___leave] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4258), + [anon_sym_compl] = ACTIONS(4258), + [anon_sym_DASH_DASH] = ACTIONS(4260), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_sizeof] = ACTIONS(4258), + [anon_sym___alignof__] = ACTIONS(4258), + [anon_sym___alignof] = ACTIONS(4258), + [anon_sym__alignof] = ACTIONS(4258), + [anon_sym_alignof] = ACTIONS(4258), + [anon_sym__Alignof] = ACTIONS(4258), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4258), + [anon_sym_typename] = ACTIONS(4258), + [anon_sym_asm] = ACTIONS(4258), + [anon_sym___asm__] = ACTIONS(4258), + [anon_sym___asm] = ACTIONS(4258), + [sym_number_literal] = ACTIONS(4260), + [anon_sym_L_SQUOTE] = ACTIONS(4260), + [anon_sym_u_SQUOTE] = ACTIONS(4260), + [anon_sym_U_SQUOTE] = ACTIONS(4260), + [anon_sym_u8_SQUOTE] = ACTIONS(4260), + [anon_sym_SQUOTE] = ACTIONS(4260), + [anon_sym_L_DQUOTE] = ACTIONS(4260), + [anon_sym_u_DQUOTE] = ACTIONS(4260), + [anon_sym_U_DQUOTE] = ACTIONS(4260), + [anon_sym_u8_DQUOTE] = ACTIONS(4260), + [anon_sym_DQUOTE] = ACTIONS(4260), + [sym_true] = ACTIONS(4258), + [sym_false] = ACTIONS(4258), + [anon_sym_NULL] = ACTIONS(4258), + [anon_sym_nullptr] = ACTIONS(4258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4258), + [anon_sym_decltype] = ACTIONS(4258), + [anon_sym_explicit] = ACTIONS(4258), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_module] = ACTIONS(4258), + [anon_sym_import] = ACTIONS(4258), + [anon_sym_template] = ACTIONS(4258), + [anon_sym_operator] = ACTIONS(4258), + [anon_sym_try] = ACTIONS(4258), + [anon_sym_delete] = ACTIONS(4258), + [anon_sym_throw] = ACTIONS(4258), + [anon_sym_namespace] = ACTIONS(4258), + [anon_sym_static_assert] = ACTIONS(4258), + [anon_sym_concept] = ACTIONS(4258), + [anon_sym_co_return] = ACTIONS(4258), + [anon_sym_co_yield] = ACTIONS(4258), + [anon_sym_R_DQUOTE] = ACTIONS(4260), + [anon_sym_LR_DQUOTE] = ACTIONS(4260), + [anon_sym_uR_DQUOTE] = ACTIONS(4260), + [anon_sym_UR_DQUOTE] = ACTIONS(4260), + [anon_sym_u8R_DQUOTE] = ACTIONS(4260), + [anon_sym_co_await] = ACTIONS(4258), + [anon_sym_new] = ACTIONS(4258), + [anon_sym_requires] = ACTIONS(4258), + [anon_sym_CARET_CARET] = ACTIONS(4260), + [anon_sym_LBRACK_COLON] = ACTIONS(4260), + [sym_this] = ACTIONS(4258), }, - [STATE(535)] = { - [sym_catch_clause] = STATE(471), - [aux_sym_constructor_try_statement_repeat1] = STATE(471), - [sym_identifier] = ACTIONS(3554), - [aux_sym_preproc_include_token1] = ACTIONS(3554), - [aux_sym_preproc_def_token1] = ACTIONS(3554), - [aux_sym_preproc_if_token1] = ACTIONS(3554), - [aux_sym_preproc_if_token2] = ACTIONS(3554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3554), - [sym_preproc_directive] = ACTIONS(3554), - [anon_sym_LPAREN2] = ACTIONS(3556), - [anon_sym_BANG] = ACTIONS(3556), - [anon_sym_TILDE] = ACTIONS(3556), - [anon_sym_DASH] = ACTIONS(3554), - [anon_sym_PLUS] = ACTIONS(3554), - [anon_sym_STAR] = ACTIONS(3556), - [anon_sym_AMP_AMP] = ACTIONS(3556), - [anon_sym_AMP] = ACTIONS(3554), - [anon_sym_SEMI] = ACTIONS(3556), - [anon_sym___extension__] = ACTIONS(3554), - [anon_sym_typedef] = ACTIONS(3554), - [anon_sym_virtual] = ACTIONS(3554), - [anon_sym_extern] = ACTIONS(3554), - [anon_sym___attribute__] = ACTIONS(3554), - [anon_sym___attribute] = ACTIONS(3554), - [anon_sym_using] = ACTIONS(3554), - [anon_sym_COLON_COLON] = ACTIONS(3556), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3556), - [anon_sym___declspec] = ACTIONS(3554), - [anon_sym___based] = ACTIONS(3554), - [anon_sym___cdecl] = ACTIONS(3554), - [anon_sym___clrcall] = ACTIONS(3554), - [anon_sym___stdcall] = ACTIONS(3554), - [anon_sym___fastcall] = ACTIONS(3554), - [anon_sym___thiscall] = ACTIONS(3554), - [anon_sym___vectorcall] = ACTIONS(3554), - [anon_sym_LBRACE] = ACTIONS(3556), - [anon_sym_signed] = ACTIONS(3554), - [anon_sym_unsigned] = ACTIONS(3554), - [anon_sym_long] = ACTIONS(3554), - [anon_sym_short] = ACTIONS(3554), - [anon_sym_LBRACK] = ACTIONS(3554), - [anon_sym_static] = ACTIONS(3554), - [anon_sym_register] = ACTIONS(3554), - [anon_sym_inline] = ACTIONS(3554), - [anon_sym___inline] = ACTIONS(3554), - [anon_sym___inline__] = ACTIONS(3554), - [anon_sym___forceinline] = ACTIONS(3554), - [anon_sym_thread_local] = ACTIONS(3554), - [anon_sym___thread] = ACTIONS(3554), - [anon_sym_const] = ACTIONS(3554), - [anon_sym_constexpr] = ACTIONS(3554), - [anon_sym_volatile] = ACTIONS(3554), - [anon_sym_restrict] = ACTIONS(3554), - [anon_sym___restrict__] = ACTIONS(3554), - [anon_sym__Atomic] = ACTIONS(3554), - [anon_sym__Noreturn] = ACTIONS(3554), - [anon_sym_noreturn] = ACTIONS(3554), - [anon_sym__Nonnull] = ACTIONS(3554), - [anon_sym_mutable] = ACTIONS(3554), - [anon_sym_constinit] = ACTIONS(3554), - [anon_sym_consteval] = ACTIONS(3554), - [anon_sym_alignas] = ACTIONS(3554), - [anon_sym__Alignas] = ACTIONS(3554), - [sym_primitive_type] = ACTIONS(3554), - [anon_sym_enum] = ACTIONS(3554), - [anon_sym_class] = ACTIONS(3554), - [anon_sym_struct] = ACTIONS(3554), - [anon_sym_union] = ACTIONS(3554), - [anon_sym_if] = ACTIONS(3554), - [anon_sym_switch] = ACTIONS(3554), - [anon_sym_case] = ACTIONS(3554), - [anon_sym_default] = ACTIONS(3554), - [anon_sym_while] = ACTIONS(3554), - [anon_sym_do] = ACTIONS(3554), - [anon_sym_for] = ACTIONS(3554), - [anon_sym_return] = ACTIONS(3554), - [anon_sym_break] = ACTIONS(3554), - [anon_sym_continue] = ACTIONS(3554), - [anon_sym_goto] = ACTIONS(3554), - [anon_sym___try] = ACTIONS(3554), - [anon_sym___leave] = ACTIONS(3554), - [anon_sym_not] = ACTIONS(3554), - [anon_sym_compl] = ACTIONS(3554), - [anon_sym_DASH_DASH] = ACTIONS(3556), - [anon_sym_PLUS_PLUS] = ACTIONS(3556), - [anon_sym_sizeof] = ACTIONS(3554), - [anon_sym___alignof__] = ACTIONS(3554), - [anon_sym___alignof] = ACTIONS(3554), - [anon_sym__alignof] = ACTIONS(3554), - [anon_sym_alignof] = ACTIONS(3554), - [anon_sym__Alignof] = ACTIONS(3554), - [anon_sym_offsetof] = ACTIONS(3554), - [anon_sym__Generic] = ACTIONS(3554), - [anon_sym_typename] = ACTIONS(3554), - [anon_sym_asm] = ACTIONS(3554), - [anon_sym___asm__] = ACTIONS(3554), - [anon_sym___asm] = ACTIONS(3554), - [sym_number_literal] = ACTIONS(3556), - [anon_sym_L_SQUOTE] = ACTIONS(3556), - [anon_sym_u_SQUOTE] = ACTIONS(3556), - [anon_sym_U_SQUOTE] = ACTIONS(3556), - [anon_sym_u8_SQUOTE] = ACTIONS(3556), - [anon_sym_SQUOTE] = ACTIONS(3556), - [anon_sym_L_DQUOTE] = ACTIONS(3556), - [anon_sym_u_DQUOTE] = ACTIONS(3556), - [anon_sym_U_DQUOTE] = ACTIONS(3556), - [anon_sym_u8_DQUOTE] = ACTIONS(3556), - [anon_sym_DQUOTE] = ACTIONS(3556), - [sym_true] = ACTIONS(3554), - [sym_false] = ACTIONS(3554), - [anon_sym_NULL] = ACTIONS(3554), - [anon_sym_nullptr] = ACTIONS(3554), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3554), - [anon_sym_decltype] = ACTIONS(3554), - [anon_sym_explicit] = ACTIONS(3554), - [anon_sym_template] = ACTIONS(3554), - [anon_sym_operator] = ACTIONS(3554), - [anon_sym_try] = ACTIONS(3554), - [anon_sym_delete] = ACTIONS(3554), - [anon_sym_throw] = ACTIONS(3554), - [anon_sym_namespace] = ACTIONS(3554), - [anon_sym_static_assert] = ACTIONS(3554), - [anon_sym_concept] = ACTIONS(3554), - [anon_sym_co_return] = ACTIONS(3554), - [anon_sym_co_yield] = ACTIONS(3554), - [anon_sym_catch] = ACTIONS(4094), - [anon_sym_R_DQUOTE] = ACTIONS(3556), - [anon_sym_LR_DQUOTE] = ACTIONS(3556), - [anon_sym_uR_DQUOTE] = ACTIONS(3556), - [anon_sym_UR_DQUOTE] = ACTIONS(3556), - [anon_sym_u8R_DQUOTE] = ACTIONS(3556), - [anon_sym_co_await] = ACTIONS(3554), - [anon_sym_new] = ACTIONS(3554), - [anon_sym_requires] = ACTIONS(3554), - [anon_sym_CARET_CARET] = ACTIONS(3556), - [anon_sym_LBRACK_COLON] = ACTIONS(3556), - [sym_this] = ACTIONS(3554), + [STATE(480)] = { + [sym_identifier] = ACTIONS(4262), + [aux_sym_preproc_include_token1] = ACTIONS(4262), + [aux_sym_preproc_def_token1] = ACTIONS(4262), + [aux_sym_preproc_if_token1] = ACTIONS(4262), + [aux_sym_preproc_if_token2] = ACTIONS(4262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4262), + [aux_sym_preproc_else_token1] = ACTIONS(4262), + [aux_sym_preproc_elif_token1] = ACTIONS(4262), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4262), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4262), + [sym_preproc_directive] = ACTIONS(4262), + [anon_sym_LPAREN2] = ACTIONS(4264), + [anon_sym_BANG] = ACTIONS(4264), + [anon_sym_TILDE] = ACTIONS(4264), + [anon_sym_DASH] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4262), + [anon_sym_STAR] = ACTIONS(4264), + [anon_sym_AMP_AMP] = ACTIONS(4264), + [anon_sym_AMP] = ACTIONS(4262), + [anon_sym_SEMI] = ACTIONS(4264), + [anon_sym___extension__] = ACTIONS(4262), + [anon_sym_typedef] = ACTIONS(4262), + [anon_sym_virtual] = ACTIONS(4262), + [anon_sym_extern] = ACTIONS(4262), + [anon_sym___attribute__] = ACTIONS(4262), + [anon_sym___attribute] = ACTIONS(4262), + [anon_sym_using] = ACTIONS(4262), + [anon_sym_COLON_COLON] = ACTIONS(4264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4264), + [anon_sym___declspec] = ACTIONS(4262), + [anon_sym___based] = ACTIONS(4262), + [anon_sym___cdecl] = ACTIONS(4262), + [anon_sym___clrcall] = ACTIONS(4262), + [anon_sym___stdcall] = ACTIONS(4262), + [anon_sym___fastcall] = ACTIONS(4262), + [anon_sym___thiscall] = ACTIONS(4262), + [anon_sym___vectorcall] = ACTIONS(4262), + [anon_sym_LBRACE] = ACTIONS(4264), + [anon_sym_signed] = ACTIONS(4262), + [anon_sym_unsigned] = ACTIONS(4262), + [anon_sym_long] = ACTIONS(4262), + [anon_sym_short] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_static] = ACTIONS(4262), + [anon_sym_register] = ACTIONS(4262), + [anon_sym_inline] = ACTIONS(4262), + [anon_sym___inline] = ACTIONS(4262), + [anon_sym___inline__] = ACTIONS(4262), + [anon_sym___forceinline] = ACTIONS(4262), + [anon_sym_thread_local] = ACTIONS(4262), + [anon_sym___thread] = ACTIONS(4262), + [anon_sym_const] = ACTIONS(4262), + [anon_sym_constexpr] = ACTIONS(4262), + [anon_sym_volatile] = ACTIONS(4262), + [anon_sym_restrict] = ACTIONS(4262), + [anon_sym___restrict__] = ACTIONS(4262), + [anon_sym__Atomic] = ACTIONS(4262), + [anon_sym__Noreturn] = ACTIONS(4262), + [anon_sym_noreturn] = ACTIONS(4262), + [anon_sym__Nonnull] = ACTIONS(4262), + [anon_sym_mutable] = ACTIONS(4262), + [anon_sym_constinit] = ACTIONS(4262), + [anon_sym_consteval] = ACTIONS(4262), + [anon_sym_alignas] = ACTIONS(4262), + [anon_sym__Alignas] = ACTIONS(4262), + [sym_primitive_type] = ACTIONS(4262), + [anon_sym_enum] = ACTIONS(4262), + [anon_sym_class] = ACTIONS(4262), + [anon_sym_struct] = ACTIONS(4262), + [anon_sym_union] = ACTIONS(4262), + [anon_sym_if] = ACTIONS(4262), + [anon_sym_switch] = ACTIONS(4262), + [anon_sym_case] = ACTIONS(4262), + [anon_sym_default] = ACTIONS(4262), + [anon_sym_while] = ACTIONS(4262), + [anon_sym_do] = ACTIONS(4262), + [anon_sym_for] = ACTIONS(4262), + [anon_sym_return] = ACTIONS(4262), + [anon_sym_break] = ACTIONS(4262), + [anon_sym_continue] = ACTIONS(4262), + [anon_sym_goto] = ACTIONS(4262), + [anon_sym___try] = ACTIONS(4262), + [anon_sym___leave] = ACTIONS(4262), + [anon_sym_not] = ACTIONS(4262), + [anon_sym_compl] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4264), + [anon_sym_PLUS_PLUS] = ACTIONS(4264), + [anon_sym_sizeof] = ACTIONS(4262), + [anon_sym___alignof__] = ACTIONS(4262), + [anon_sym___alignof] = ACTIONS(4262), + [anon_sym__alignof] = ACTIONS(4262), + [anon_sym_alignof] = ACTIONS(4262), + [anon_sym__Alignof] = ACTIONS(4262), + [anon_sym_offsetof] = ACTIONS(4262), + [anon_sym__Generic] = ACTIONS(4262), + [anon_sym_typename] = ACTIONS(4262), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [anon_sym___asm] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4264), + [anon_sym_u_SQUOTE] = ACTIONS(4264), + [anon_sym_U_SQUOTE] = ACTIONS(4264), + [anon_sym_u8_SQUOTE] = ACTIONS(4264), + [anon_sym_SQUOTE] = ACTIONS(4264), + [anon_sym_L_DQUOTE] = ACTIONS(4264), + [anon_sym_u_DQUOTE] = ACTIONS(4264), + [anon_sym_U_DQUOTE] = ACTIONS(4264), + [anon_sym_u8_DQUOTE] = ACTIONS(4264), + [anon_sym_DQUOTE] = ACTIONS(4264), + [sym_true] = ACTIONS(4262), + [sym_false] = ACTIONS(4262), + [anon_sym_NULL] = ACTIONS(4262), + [anon_sym_nullptr] = ACTIONS(4262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4262), + [anon_sym_decltype] = ACTIONS(4262), + [anon_sym_explicit] = ACTIONS(4262), + [anon_sym_export] = ACTIONS(4262), + [anon_sym_module] = ACTIONS(4262), + [anon_sym_import] = ACTIONS(4262), + [anon_sym_template] = ACTIONS(4262), + [anon_sym_operator] = ACTIONS(4262), + [anon_sym_try] = ACTIONS(4262), + [anon_sym_delete] = ACTIONS(4262), + [anon_sym_throw] = ACTIONS(4262), + [anon_sym_namespace] = ACTIONS(4262), + [anon_sym_static_assert] = ACTIONS(4262), + [anon_sym_concept] = ACTIONS(4262), + [anon_sym_co_return] = ACTIONS(4262), + [anon_sym_co_yield] = ACTIONS(4262), + [anon_sym_R_DQUOTE] = ACTIONS(4264), + [anon_sym_LR_DQUOTE] = ACTIONS(4264), + [anon_sym_uR_DQUOTE] = ACTIONS(4264), + [anon_sym_UR_DQUOTE] = ACTIONS(4264), + [anon_sym_u8R_DQUOTE] = ACTIONS(4264), + [anon_sym_co_await] = ACTIONS(4262), + [anon_sym_new] = ACTIONS(4262), + [anon_sym_requires] = ACTIONS(4262), + [anon_sym_CARET_CARET] = ACTIONS(4264), + [anon_sym_LBRACK_COLON] = ACTIONS(4264), + [sym_this] = ACTIONS(4262), }, - [STATE(536)] = { - [sym_catch_clause] = STATE(507), - [aux_sym_constructor_try_statement_repeat1] = STATE(507), - [sym_identifier] = ACTIONS(3534), - [aux_sym_preproc_include_token1] = ACTIONS(3534), - [aux_sym_preproc_def_token1] = ACTIONS(3534), - [aux_sym_preproc_if_token1] = ACTIONS(3534), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3534), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3534), - [sym_preproc_directive] = ACTIONS(3534), - [anon_sym_LPAREN2] = ACTIONS(3536), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_TILDE] = ACTIONS(3536), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_STAR] = ACTIONS(3536), - [anon_sym_AMP_AMP] = ACTIONS(3536), - [anon_sym_AMP] = ACTIONS(3534), - [anon_sym_SEMI] = ACTIONS(3536), - [anon_sym___extension__] = ACTIONS(3534), - [anon_sym_typedef] = ACTIONS(3534), - [anon_sym_virtual] = ACTIONS(3534), - [anon_sym_extern] = ACTIONS(3534), - [anon_sym___attribute__] = ACTIONS(3534), - [anon_sym___attribute] = ACTIONS(3534), - [anon_sym_using] = ACTIONS(3534), - [anon_sym_COLON_COLON] = ACTIONS(3536), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3536), - [anon_sym___declspec] = ACTIONS(3534), - [anon_sym___based] = ACTIONS(3534), - [anon_sym___cdecl] = ACTIONS(3534), - [anon_sym___clrcall] = ACTIONS(3534), - [anon_sym___stdcall] = ACTIONS(3534), - [anon_sym___fastcall] = ACTIONS(3534), - [anon_sym___thiscall] = ACTIONS(3534), - [anon_sym___vectorcall] = ACTIONS(3534), - [anon_sym_LBRACE] = ACTIONS(3536), - [anon_sym_RBRACE] = ACTIONS(3536), - [anon_sym_signed] = ACTIONS(3534), - [anon_sym_unsigned] = ACTIONS(3534), - [anon_sym_long] = ACTIONS(3534), - [anon_sym_short] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_static] = ACTIONS(3534), - [anon_sym_register] = ACTIONS(3534), - [anon_sym_inline] = ACTIONS(3534), - [anon_sym___inline] = ACTIONS(3534), - [anon_sym___inline__] = ACTIONS(3534), - [anon_sym___forceinline] = ACTIONS(3534), - [anon_sym_thread_local] = ACTIONS(3534), - [anon_sym___thread] = ACTIONS(3534), - [anon_sym_const] = ACTIONS(3534), - [anon_sym_constexpr] = ACTIONS(3534), - [anon_sym_volatile] = ACTIONS(3534), - [anon_sym_restrict] = ACTIONS(3534), - [anon_sym___restrict__] = ACTIONS(3534), - [anon_sym__Atomic] = ACTIONS(3534), - [anon_sym__Noreturn] = ACTIONS(3534), - [anon_sym_noreturn] = ACTIONS(3534), - [anon_sym__Nonnull] = ACTIONS(3534), - [anon_sym_mutable] = ACTIONS(3534), - [anon_sym_constinit] = ACTIONS(3534), - [anon_sym_consteval] = ACTIONS(3534), - [anon_sym_alignas] = ACTIONS(3534), - [anon_sym__Alignas] = ACTIONS(3534), - [sym_primitive_type] = ACTIONS(3534), - [anon_sym_enum] = ACTIONS(3534), - [anon_sym_class] = ACTIONS(3534), - [anon_sym_struct] = ACTIONS(3534), - [anon_sym_union] = ACTIONS(3534), - [anon_sym_if] = ACTIONS(3534), - [anon_sym_switch] = ACTIONS(3534), - [anon_sym_case] = ACTIONS(3534), - [anon_sym_default] = ACTIONS(3534), - [anon_sym_while] = ACTIONS(3534), - [anon_sym_do] = ACTIONS(3534), - [anon_sym_for] = ACTIONS(3534), - [anon_sym_return] = ACTIONS(3534), - [anon_sym_break] = ACTIONS(3534), - [anon_sym_continue] = ACTIONS(3534), - [anon_sym_goto] = ACTIONS(3534), - [anon_sym___try] = ACTIONS(3534), - [anon_sym___leave] = ACTIONS(3534), - [anon_sym_not] = ACTIONS(3534), - [anon_sym_compl] = ACTIONS(3534), - [anon_sym_DASH_DASH] = ACTIONS(3536), - [anon_sym_PLUS_PLUS] = ACTIONS(3536), - [anon_sym_sizeof] = ACTIONS(3534), - [anon_sym___alignof__] = ACTIONS(3534), - [anon_sym___alignof] = ACTIONS(3534), - [anon_sym__alignof] = ACTIONS(3534), - [anon_sym_alignof] = ACTIONS(3534), - [anon_sym__Alignof] = ACTIONS(3534), - [anon_sym_offsetof] = ACTIONS(3534), - [anon_sym__Generic] = ACTIONS(3534), - [anon_sym_typename] = ACTIONS(3534), - [anon_sym_asm] = ACTIONS(3534), - [anon_sym___asm__] = ACTIONS(3534), - [anon_sym___asm] = ACTIONS(3534), - [sym_number_literal] = ACTIONS(3536), - [anon_sym_L_SQUOTE] = ACTIONS(3536), - [anon_sym_u_SQUOTE] = ACTIONS(3536), - [anon_sym_U_SQUOTE] = ACTIONS(3536), - [anon_sym_u8_SQUOTE] = ACTIONS(3536), - [anon_sym_SQUOTE] = ACTIONS(3536), - [anon_sym_L_DQUOTE] = ACTIONS(3536), - [anon_sym_u_DQUOTE] = ACTIONS(3536), - [anon_sym_U_DQUOTE] = ACTIONS(3536), - [anon_sym_u8_DQUOTE] = ACTIONS(3536), - [anon_sym_DQUOTE] = ACTIONS(3536), - [sym_true] = ACTIONS(3534), - [sym_false] = ACTIONS(3534), - [anon_sym_NULL] = ACTIONS(3534), - [anon_sym_nullptr] = ACTIONS(3534), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3534), - [anon_sym_decltype] = ACTIONS(3534), - [anon_sym_explicit] = ACTIONS(3534), - [anon_sym_template] = ACTIONS(3534), - [anon_sym_operator] = ACTIONS(3534), - [anon_sym_try] = ACTIONS(3534), - [anon_sym_delete] = ACTIONS(3534), - [anon_sym_throw] = ACTIONS(3534), - [anon_sym_namespace] = ACTIONS(3534), - [anon_sym_static_assert] = ACTIONS(3534), - [anon_sym_concept] = ACTIONS(3534), - [anon_sym_co_return] = ACTIONS(3534), - [anon_sym_co_yield] = ACTIONS(3534), - [anon_sym_catch] = ACTIONS(4129), - [anon_sym_R_DQUOTE] = ACTIONS(3536), - [anon_sym_LR_DQUOTE] = ACTIONS(3536), - [anon_sym_uR_DQUOTE] = ACTIONS(3536), - [anon_sym_UR_DQUOTE] = ACTIONS(3536), - [anon_sym_u8R_DQUOTE] = ACTIONS(3536), - [anon_sym_co_await] = ACTIONS(3534), - [anon_sym_new] = ACTIONS(3534), - [anon_sym_requires] = ACTIONS(3534), - [anon_sym_CARET_CARET] = ACTIONS(3536), - [anon_sym_LBRACK_COLON] = ACTIONS(3536), - [sym_this] = ACTIONS(3534), + [STATE(481)] = { + [sym_identifier] = ACTIONS(4266), + [aux_sym_preproc_include_token1] = ACTIONS(4266), + [aux_sym_preproc_def_token1] = ACTIONS(4266), + [aux_sym_preproc_if_token1] = ACTIONS(4266), + [aux_sym_preproc_if_token2] = ACTIONS(4266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4266), + [aux_sym_preproc_else_token1] = ACTIONS(4266), + [aux_sym_preproc_elif_token1] = ACTIONS(4266), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4266), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4266), + [sym_preproc_directive] = ACTIONS(4266), + [anon_sym_LPAREN2] = ACTIONS(4268), + [anon_sym_BANG] = ACTIONS(4268), + [anon_sym_TILDE] = ACTIONS(4268), + [anon_sym_DASH] = ACTIONS(4266), + [anon_sym_PLUS] = ACTIONS(4266), + [anon_sym_STAR] = ACTIONS(4268), + [anon_sym_AMP_AMP] = ACTIONS(4268), + [anon_sym_AMP] = ACTIONS(4266), + [anon_sym_SEMI] = ACTIONS(4268), + [anon_sym___extension__] = ACTIONS(4266), + [anon_sym_typedef] = ACTIONS(4266), + [anon_sym_virtual] = ACTIONS(4266), + [anon_sym_extern] = ACTIONS(4266), + [anon_sym___attribute__] = ACTIONS(4266), + [anon_sym___attribute] = ACTIONS(4266), + [anon_sym_using] = ACTIONS(4266), + [anon_sym_COLON_COLON] = ACTIONS(4268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4268), + [anon_sym___declspec] = ACTIONS(4266), + [anon_sym___based] = ACTIONS(4266), + [anon_sym___cdecl] = ACTIONS(4266), + [anon_sym___clrcall] = ACTIONS(4266), + [anon_sym___stdcall] = ACTIONS(4266), + [anon_sym___fastcall] = ACTIONS(4266), + [anon_sym___thiscall] = ACTIONS(4266), + [anon_sym___vectorcall] = ACTIONS(4266), + [anon_sym_LBRACE] = ACTIONS(4268), + [anon_sym_signed] = ACTIONS(4266), + [anon_sym_unsigned] = ACTIONS(4266), + [anon_sym_long] = ACTIONS(4266), + [anon_sym_short] = ACTIONS(4266), + [anon_sym_LBRACK] = ACTIONS(4266), + [anon_sym_static] = ACTIONS(4266), + [anon_sym_register] = ACTIONS(4266), + [anon_sym_inline] = ACTIONS(4266), + [anon_sym___inline] = ACTIONS(4266), + [anon_sym___inline__] = ACTIONS(4266), + [anon_sym___forceinline] = ACTIONS(4266), + [anon_sym_thread_local] = ACTIONS(4266), + [anon_sym___thread] = ACTIONS(4266), + [anon_sym_const] = ACTIONS(4266), + [anon_sym_constexpr] = ACTIONS(4266), + [anon_sym_volatile] = ACTIONS(4266), + [anon_sym_restrict] = ACTIONS(4266), + [anon_sym___restrict__] = ACTIONS(4266), + [anon_sym__Atomic] = ACTIONS(4266), + [anon_sym__Noreturn] = ACTIONS(4266), + [anon_sym_noreturn] = ACTIONS(4266), + [anon_sym__Nonnull] = ACTIONS(4266), + [anon_sym_mutable] = ACTIONS(4266), + [anon_sym_constinit] = ACTIONS(4266), + [anon_sym_consteval] = ACTIONS(4266), + [anon_sym_alignas] = ACTIONS(4266), + [anon_sym__Alignas] = ACTIONS(4266), + [sym_primitive_type] = ACTIONS(4266), + [anon_sym_enum] = ACTIONS(4266), + [anon_sym_class] = ACTIONS(4266), + [anon_sym_struct] = ACTIONS(4266), + [anon_sym_union] = ACTIONS(4266), + [anon_sym_if] = ACTIONS(4266), + [anon_sym_switch] = ACTIONS(4266), + [anon_sym_case] = ACTIONS(4266), + [anon_sym_default] = ACTIONS(4266), + [anon_sym_while] = ACTIONS(4266), + [anon_sym_do] = ACTIONS(4266), + [anon_sym_for] = ACTIONS(4266), + [anon_sym_return] = ACTIONS(4266), + [anon_sym_break] = ACTIONS(4266), + [anon_sym_continue] = ACTIONS(4266), + [anon_sym_goto] = ACTIONS(4266), + [anon_sym___try] = ACTIONS(4266), + [anon_sym___leave] = ACTIONS(4266), + [anon_sym_not] = ACTIONS(4266), + [anon_sym_compl] = ACTIONS(4266), + [anon_sym_DASH_DASH] = ACTIONS(4268), + [anon_sym_PLUS_PLUS] = ACTIONS(4268), + [anon_sym_sizeof] = ACTIONS(4266), + [anon_sym___alignof__] = ACTIONS(4266), + [anon_sym___alignof] = ACTIONS(4266), + [anon_sym__alignof] = ACTIONS(4266), + [anon_sym_alignof] = ACTIONS(4266), + [anon_sym__Alignof] = ACTIONS(4266), + [anon_sym_offsetof] = ACTIONS(4266), + [anon_sym__Generic] = ACTIONS(4266), + [anon_sym_typename] = ACTIONS(4266), + [anon_sym_asm] = ACTIONS(4266), + [anon_sym___asm__] = ACTIONS(4266), + [anon_sym___asm] = ACTIONS(4266), + [sym_number_literal] = ACTIONS(4268), + [anon_sym_L_SQUOTE] = ACTIONS(4268), + [anon_sym_u_SQUOTE] = ACTIONS(4268), + [anon_sym_U_SQUOTE] = ACTIONS(4268), + [anon_sym_u8_SQUOTE] = ACTIONS(4268), + [anon_sym_SQUOTE] = ACTIONS(4268), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4266), + [sym_false] = ACTIONS(4266), + [anon_sym_NULL] = ACTIONS(4266), + [anon_sym_nullptr] = ACTIONS(4266), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4266), + [anon_sym_decltype] = ACTIONS(4266), + [anon_sym_explicit] = ACTIONS(4266), + [anon_sym_export] = ACTIONS(4266), + [anon_sym_module] = ACTIONS(4266), + [anon_sym_import] = ACTIONS(4266), + [anon_sym_template] = ACTIONS(4266), + [anon_sym_operator] = ACTIONS(4266), + [anon_sym_try] = ACTIONS(4266), + [anon_sym_delete] = ACTIONS(4266), + [anon_sym_throw] = ACTIONS(4266), + [anon_sym_namespace] = ACTIONS(4266), + [anon_sym_static_assert] = ACTIONS(4266), + [anon_sym_concept] = ACTIONS(4266), + [anon_sym_co_return] = ACTIONS(4266), + [anon_sym_co_yield] = ACTIONS(4266), + [anon_sym_R_DQUOTE] = ACTIONS(4268), + [anon_sym_LR_DQUOTE] = ACTIONS(4268), + [anon_sym_uR_DQUOTE] = ACTIONS(4268), + [anon_sym_UR_DQUOTE] = ACTIONS(4268), + [anon_sym_u8R_DQUOTE] = ACTIONS(4268), + [anon_sym_co_await] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_requires] = ACTIONS(4266), + [anon_sym_CARET_CARET] = ACTIONS(4268), + [anon_sym_LBRACK_COLON] = ACTIONS(4268), + [sym_this] = ACTIONS(4266), }, - [STATE(537)] = { - [sym_catch_clause] = STATE(471), - [aux_sym_constructor_try_statement_repeat1] = STATE(471), - [sym_identifier] = ACTIONS(3534), - [aux_sym_preproc_include_token1] = ACTIONS(3534), - [aux_sym_preproc_def_token1] = ACTIONS(3534), - [aux_sym_preproc_if_token1] = ACTIONS(3534), - [aux_sym_preproc_if_token2] = ACTIONS(3534), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3534), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3534), - [sym_preproc_directive] = ACTIONS(3534), - [anon_sym_LPAREN2] = ACTIONS(3536), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_TILDE] = ACTIONS(3536), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_STAR] = ACTIONS(3536), - [anon_sym_AMP_AMP] = ACTIONS(3536), - [anon_sym_AMP] = ACTIONS(3534), - [anon_sym_SEMI] = ACTIONS(3536), - [anon_sym___extension__] = ACTIONS(3534), - [anon_sym_typedef] = ACTIONS(3534), - [anon_sym_virtual] = ACTIONS(3534), - [anon_sym_extern] = ACTIONS(3534), - [anon_sym___attribute__] = ACTIONS(3534), - [anon_sym___attribute] = ACTIONS(3534), - [anon_sym_using] = ACTIONS(3534), - [anon_sym_COLON_COLON] = ACTIONS(3536), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3536), - [anon_sym___declspec] = ACTIONS(3534), - [anon_sym___based] = ACTIONS(3534), - [anon_sym___cdecl] = ACTIONS(3534), - [anon_sym___clrcall] = ACTIONS(3534), - [anon_sym___stdcall] = ACTIONS(3534), - [anon_sym___fastcall] = ACTIONS(3534), - [anon_sym___thiscall] = ACTIONS(3534), - [anon_sym___vectorcall] = ACTIONS(3534), - [anon_sym_LBRACE] = ACTIONS(3536), - [anon_sym_signed] = ACTIONS(3534), - [anon_sym_unsigned] = ACTIONS(3534), - [anon_sym_long] = ACTIONS(3534), - [anon_sym_short] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_static] = ACTIONS(3534), - [anon_sym_register] = ACTIONS(3534), - [anon_sym_inline] = ACTIONS(3534), - [anon_sym___inline] = ACTIONS(3534), - [anon_sym___inline__] = ACTIONS(3534), - [anon_sym___forceinline] = ACTIONS(3534), - [anon_sym_thread_local] = ACTIONS(3534), - [anon_sym___thread] = ACTIONS(3534), - [anon_sym_const] = ACTIONS(3534), - [anon_sym_constexpr] = ACTIONS(3534), - [anon_sym_volatile] = ACTIONS(3534), - [anon_sym_restrict] = ACTIONS(3534), - [anon_sym___restrict__] = ACTIONS(3534), - [anon_sym__Atomic] = ACTIONS(3534), - [anon_sym__Noreturn] = ACTIONS(3534), - [anon_sym_noreturn] = ACTIONS(3534), - [anon_sym__Nonnull] = ACTIONS(3534), - [anon_sym_mutable] = ACTIONS(3534), - [anon_sym_constinit] = ACTIONS(3534), - [anon_sym_consteval] = ACTIONS(3534), - [anon_sym_alignas] = ACTIONS(3534), - [anon_sym__Alignas] = ACTIONS(3534), - [sym_primitive_type] = ACTIONS(3534), - [anon_sym_enum] = ACTIONS(3534), - [anon_sym_class] = ACTIONS(3534), - [anon_sym_struct] = ACTIONS(3534), - [anon_sym_union] = ACTIONS(3534), - [anon_sym_if] = ACTIONS(3534), - [anon_sym_switch] = ACTIONS(3534), - [anon_sym_case] = ACTIONS(3534), - [anon_sym_default] = ACTIONS(3534), - [anon_sym_while] = ACTIONS(3534), - [anon_sym_do] = ACTIONS(3534), - [anon_sym_for] = ACTIONS(3534), - [anon_sym_return] = ACTIONS(3534), - [anon_sym_break] = ACTIONS(3534), - [anon_sym_continue] = ACTIONS(3534), - [anon_sym_goto] = ACTIONS(3534), - [anon_sym___try] = ACTIONS(3534), - [anon_sym___leave] = ACTIONS(3534), - [anon_sym_not] = ACTIONS(3534), - [anon_sym_compl] = ACTIONS(3534), - [anon_sym_DASH_DASH] = ACTIONS(3536), - [anon_sym_PLUS_PLUS] = ACTIONS(3536), - [anon_sym_sizeof] = ACTIONS(3534), - [anon_sym___alignof__] = ACTIONS(3534), - [anon_sym___alignof] = ACTIONS(3534), - [anon_sym__alignof] = ACTIONS(3534), - [anon_sym_alignof] = ACTIONS(3534), - [anon_sym__Alignof] = ACTIONS(3534), - [anon_sym_offsetof] = ACTIONS(3534), - [anon_sym__Generic] = ACTIONS(3534), - [anon_sym_typename] = ACTIONS(3534), - [anon_sym_asm] = ACTIONS(3534), - [anon_sym___asm__] = ACTIONS(3534), - [anon_sym___asm] = ACTIONS(3534), - [sym_number_literal] = ACTIONS(3536), - [anon_sym_L_SQUOTE] = ACTIONS(3536), - [anon_sym_u_SQUOTE] = ACTIONS(3536), - [anon_sym_U_SQUOTE] = ACTIONS(3536), - [anon_sym_u8_SQUOTE] = ACTIONS(3536), - [anon_sym_SQUOTE] = ACTIONS(3536), - [anon_sym_L_DQUOTE] = ACTIONS(3536), - [anon_sym_u_DQUOTE] = ACTIONS(3536), - [anon_sym_U_DQUOTE] = ACTIONS(3536), - [anon_sym_u8_DQUOTE] = ACTIONS(3536), - [anon_sym_DQUOTE] = ACTIONS(3536), - [sym_true] = ACTIONS(3534), - [sym_false] = ACTIONS(3534), - [anon_sym_NULL] = ACTIONS(3534), - [anon_sym_nullptr] = ACTIONS(3534), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3534), - [anon_sym_decltype] = ACTIONS(3534), - [anon_sym_explicit] = ACTIONS(3534), - [anon_sym_template] = ACTIONS(3534), - [anon_sym_operator] = ACTIONS(3534), - [anon_sym_try] = ACTIONS(3534), - [anon_sym_delete] = ACTIONS(3534), - [anon_sym_throw] = ACTIONS(3534), - [anon_sym_namespace] = ACTIONS(3534), - [anon_sym_static_assert] = ACTIONS(3534), - [anon_sym_concept] = ACTIONS(3534), - [anon_sym_co_return] = ACTIONS(3534), - [anon_sym_co_yield] = ACTIONS(3534), - [anon_sym_catch] = ACTIONS(4094), - [anon_sym_R_DQUOTE] = ACTIONS(3536), - [anon_sym_LR_DQUOTE] = ACTIONS(3536), - [anon_sym_uR_DQUOTE] = ACTIONS(3536), - [anon_sym_UR_DQUOTE] = ACTIONS(3536), - [anon_sym_u8R_DQUOTE] = ACTIONS(3536), - [anon_sym_co_await] = ACTIONS(3534), - [anon_sym_new] = ACTIONS(3534), - [anon_sym_requires] = ACTIONS(3534), - [anon_sym_CARET_CARET] = ACTIONS(3536), - [anon_sym_LBRACK_COLON] = ACTIONS(3536), - [sym_this] = ACTIONS(3534), + [STATE(482)] = { + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(6998), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(11198), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7912), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5230), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3784), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3786), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(538)] = { - [sym_else_clause] = STATE(552), - [sym_identifier] = ACTIONS(3612), - [aux_sym_preproc_include_token1] = ACTIONS(3612), - [aux_sym_preproc_def_token1] = ACTIONS(3612), - [aux_sym_preproc_if_token1] = ACTIONS(3612), - [aux_sym_preproc_if_token2] = ACTIONS(3612), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3612), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3612), - [sym_preproc_directive] = ACTIONS(3612), - [anon_sym_LPAREN2] = ACTIONS(3614), - [anon_sym_BANG] = ACTIONS(3614), - [anon_sym_TILDE] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_STAR] = ACTIONS(3614), - [anon_sym_AMP_AMP] = ACTIONS(3614), - [anon_sym_AMP] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3614), - [anon_sym___extension__] = ACTIONS(3612), - [anon_sym_typedef] = ACTIONS(3612), - [anon_sym_virtual] = ACTIONS(3612), - [anon_sym_extern] = ACTIONS(3612), - [anon_sym___attribute__] = ACTIONS(3612), - [anon_sym___attribute] = ACTIONS(3612), - [anon_sym_using] = ACTIONS(3612), - [anon_sym_COLON_COLON] = ACTIONS(3614), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3614), - [anon_sym___declspec] = ACTIONS(3612), - [anon_sym___based] = ACTIONS(3612), - [anon_sym___cdecl] = ACTIONS(3612), - [anon_sym___clrcall] = ACTIONS(3612), - [anon_sym___stdcall] = ACTIONS(3612), - [anon_sym___fastcall] = ACTIONS(3612), - [anon_sym___thiscall] = ACTIONS(3612), - [anon_sym___vectorcall] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_signed] = ACTIONS(3612), - [anon_sym_unsigned] = ACTIONS(3612), - [anon_sym_long] = ACTIONS(3612), - [anon_sym_short] = ACTIONS(3612), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_static] = ACTIONS(3612), - [anon_sym_register] = ACTIONS(3612), - [anon_sym_inline] = ACTIONS(3612), - [anon_sym___inline] = ACTIONS(3612), - [anon_sym___inline__] = ACTIONS(3612), - [anon_sym___forceinline] = ACTIONS(3612), - [anon_sym_thread_local] = ACTIONS(3612), - [anon_sym___thread] = ACTIONS(3612), - [anon_sym_const] = ACTIONS(3612), - [anon_sym_constexpr] = ACTIONS(3612), - [anon_sym_volatile] = ACTIONS(3612), - [anon_sym_restrict] = ACTIONS(3612), - [anon_sym___restrict__] = ACTIONS(3612), - [anon_sym__Atomic] = ACTIONS(3612), - [anon_sym__Noreturn] = ACTIONS(3612), - [anon_sym_noreturn] = ACTIONS(3612), - [anon_sym__Nonnull] = ACTIONS(3612), - [anon_sym_mutable] = ACTIONS(3612), - [anon_sym_constinit] = ACTIONS(3612), - [anon_sym_consteval] = ACTIONS(3612), - [anon_sym_alignas] = ACTIONS(3612), - [anon_sym__Alignas] = ACTIONS(3612), - [sym_primitive_type] = ACTIONS(3612), - [anon_sym_enum] = ACTIONS(3612), - [anon_sym_class] = ACTIONS(3612), - [anon_sym_struct] = ACTIONS(3612), - [anon_sym_union] = ACTIONS(3612), - [anon_sym_if] = ACTIONS(3612), - [anon_sym_else] = ACTIONS(4202), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_case] = ACTIONS(3612), - [anon_sym_default] = ACTIONS(3612), - [anon_sym_while] = ACTIONS(3612), - [anon_sym_do] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3612), - [anon_sym_return] = ACTIONS(3612), - [anon_sym_break] = ACTIONS(3612), - [anon_sym_continue] = ACTIONS(3612), - [anon_sym_goto] = ACTIONS(3612), - [anon_sym___try] = ACTIONS(3612), - [anon_sym___leave] = ACTIONS(3612), - [anon_sym_not] = ACTIONS(3612), - [anon_sym_compl] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3614), - [anon_sym_sizeof] = ACTIONS(3612), - [anon_sym___alignof__] = ACTIONS(3612), - [anon_sym___alignof] = ACTIONS(3612), - [anon_sym__alignof] = ACTIONS(3612), - [anon_sym_alignof] = ACTIONS(3612), - [anon_sym__Alignof] = ACTIONS(3612), - [anon_sym_offsetof] = ACTIONS(3612), - [anon_sym__Generic] = ACTIONS(3612), - [anon_sym_typename] = ACTIONS(3612), - [anon_sym_asm] = ACTIONS(3612), - [anon_sym___asm__] = ACTIONS(3612), - [anon_sym___asm] = ACTIONS(3612), - [sym_number_literal] = ACTIONS(3614), - [anon_sym_L_SQUOTE] = ACTIONS(3614), - [anon_sym_u_SQUOTE] = ACTIONS(3614), - [anon_sym_U_SQUOTE] = ACTIONS(3614), - [anon_sym_u8_SQUOTE] = ACTIONS(3614), - [anon_sym_SQUOTE] = ACTIONS(3614), - [anon_sym_L_DQUOTE] = ACTIONS(3614), - [anon_sym_u_DQUOTE] = ACTIONS(3614), - [anon_sym_U_DQUOTE] = ACTIONS(3614), - [anon_sym_u8_DQUOTE] = ACTIONS(3614), - [anon_sym_DQUOTE] = ACTIONS(3614), - [sym_true] = ACTIONS(3612), - [sym_false] = ACTIONS(3612), - [anon_sym_NULL] = ACTIONS(3612), - [anon_sym_nullptr] = ACTIONS(3612), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3612), - [anon_sym_decltype] = ACTIONS(3612), - [anon_sym_explicit] = ACTIONS(3612), - [anon_sym_template] = ACTIONS(3612), - [anon_sym_operator] = ACTIONS(3612), - [anon_sym_try] = ACTIONS(3612), - [anon_sym_delete] = ACTIONS(3612), - [anon_sym_throw] = ACTIONS(3612), - [anon_sym_namespace] = ACTIONS(3612), - [anon_sym_static_assert] = ACTIONS(3612), - [anon_sym_concept] = ACTIONS(3612), - [anon_sym_co_return] = ACTIONS(3612), - [anon_sym_co_yield] = ACTIONS(3612), - [anon_sym_R_DQUOTE] = ACTIONS(3614), - [anon_sym_LR_DQUOTE] = ACTIONS(3614), - [anon_sym_uR_DQUOTE] = ACTIONS(3614), - [anon_sym_UR_DQUOTE] = ACTIONS(3614), - [anon_sym_u8R_DQUOTE] = ACTIONS(3614), - [anon_sym_co_await] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3612), - [anon_sym_requires] = ACTIONS(3612), - [anon_sym_CARET_CARET] = ACTIONS(3614), - [anon_sym_LBRACK_COLON] = ACTIONS(3614), - [sym_this] = ACTIONS(3612), + [STATE(483)] = { + [sym_identifier] = ACTIONS(4270), + [aux_sym_preproc_include_token1] = ACTIONS(4270), + [aux_sym_preproc_def_token1] = ACTIONS(4270), + [aux_sym_preproc_if_token1] = ACTIONS(4270), + [aux_sym_preproc_if_token2] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), + [aux_sym_preproc_else_token1] = ACTIONS(4270), + [aux_sym_preproc_elif_token1] = ACTIONS(4270), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4270), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4270), + [sym_preproc_directive] = ACTIONS(4270), + [anon_sym_LPAREN2] = ACTIONS(4272), + [anon_sym_BANG] = ACTIONS(4272), + [anon_sym_TILDE] = ACTIONS(4272), + [anon_sym_DASH] = ACTIONS(4270), + [anon_sym_PLUS] = ACTIONS(4270), + [anon_sym_STAR] = ACTIONS(4272), + [anon_sym_AMP_AMP] = ACTIONS(4272), + [anon_sym_AMP] = ACTIONS(4270), + [anon_sym_SEMI] = ACTIONS(4272), + [anon_sym___extension__] = ACTIONS(4270), + [anon_sym_typedef] = ACTIONS(4270), + [anon_sym_virtual] = ACTIONS(4270), + [anon_sym_extern] = ACTIONS(4270), + [anon_sym___attribute__] = ACTIONS(4270), + [anon_sym___attribute] = ACTIONS(4270), + [anon_sym_using] = ACTIONS(4270), + [anon_sym_COLON_COLON] = ACTIONS(4272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), + [anon_sym___declspec] = ACTIONS(4270), + [anon_sym___based] = ACTIONS(4270), + [anon_sym___cdecl] = ACTIONS(4270), + [anon_sym___clrcall] = ACTIONS(4270), + [anon_sym___stdcall] = ACTIONS(4270), + [anon_sym___fastcall] = ACTIONS(4270), + [anon_sym___thiscall] = ACTIONS(4270), + [anon_sym___vectorcall] = ACTIONS(4270), + [anon_sym_LBRACE] = ACTIONS(4272), + [anon_sym_signed] = ACTIONS(4270), + [anon_sym_unsigned] = ACTIONS(4270), + [anon_sym_long] = ACTIONS(4270), + [anon_sym_short] = ACTIONS(4270), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_static] = ACTIONS(4270), + [anon_sym_register] = ACTIONS(4270), + [anon_sym_inline] = ACTIONS(4270), + [anon_sym___inline] = ACTIONS(4270), + [anon_sym___inline__] = ACTIONS(4270), + [anon_sym___forceinline] = ACTIONS(4270), + [anon_sym_thread_local] = ACTIONS(4270), + [anon_sym___thread] = ACTIONS(4270), + [anon_sym_const] = ACTIONS(4270), + [anon_sym_constexpr] = ACTIONS(4270), + [anon_sym_volatile] = ACTIONS(4270), + [anon_sym_restrict] = ACTIONS(4270), + [anon_sym___restrict__] = ACTIONS(4270), + [anon_sym__Atomic] = ACTIONS(4270), + [anon_sym__Noreturn] = ACTIONS(4270), + [anon_sym_noreturn] = ACTIONS(4270), + [anon_sym__Nonnull] = ACTIONS(4270), + [anon_sym_mutable] = ACTIONS(4270), + [anon_sym_constinit] = ACTIONS(4270), + [anon_sym_consteval] = ACTIONS(4270), + [anon_sym_alignas] = ACTIONS(4270), + [anon_sym__Alignas] = ACTIONS(4270), + [sym_primitive_type] = ACTIONS(4270), + [anon_sym_enum] = ACTIONS(4270), + [anon_sym_class] = ACTIONS(4270), + [anon_sym_struct] = ACTIONS(4270), + [anon_sym_union] = ACTIONS(4270), + [anon_sym_if] = ACTIONS(4270), + [anon_sym_switch] = ACTIONS(4270), + [anon_sym_case] = ACTIONS(4270), + [anon_sym_default] = ACTIONS(4270), + [anon_sym_while] = ACTIONS(4270), + [anon_sym_do] = ACTIONS(4270), + [anon_sym_for] = ACTIONS(4270), + [anon_sym_return] = ACTIONS(4270), + [anon_sym_break] = ACTIONS(4270), + [anon_sym_continue] = ACTIONS(4270), + [anon_sym_goto] = ACTIONS(4270), + [anon_sym___try] = ACTIONS(4270), + [anon_sym___leave] = ACTIONS(4270), + [anon_sym_not] = ACTIONS(4270), + [anon_sym_compl] = ACTIONS(4270), + [anon_sym_DASH_DASH] = ACTIONS(4272), + [anon_sym_PLUS_PLUS] = ACTIONS(4272), + [anon_sym_sizeof] = ACTIONS(4270), + [anon_sym___alignof__] = ACTIONS(4270), + [anon_sym___alignof] = ACTIONS(4270), + [anon_sym__alignof] = ACTIONS(4270), + [anon_sym_alignof] = ACTIONS(4270), + [anon_sym__Alignof] = ACTIONS(4270), + [anon_sym_offsetof] = ACTIONS(4270), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4270), + [anon_sym_asm] = ACTIONS(4270), + [anon_sym___asm__] = ACTIONS(4270), + [anon_sym___asm] = ACTIONS(4270), + [sym_number_literal] = ACTIONS(4272), + [anon_sym_L_SQUOTE] = ACTIONS(4272), + [anon_sym_u_SQUOTE] = ACTIONS(4272), + [anon_sym_U_SQUOTE] = ACTIONS(4272), + [anon_sym_u8_SQUOTE] = ACTIONS(4272), + [anon_sym_SQUOTE] = ACTIONS(4272), + [anon_sym_L_DQUOTE] = ACTIONS(4272), + [anon_sym_u_DQUOTE] = ACTIONS(4272), + [anon_sym_U_DQUOTE] = ACTIONS(4272), + [anon_sym_u8_DQUOTE] = ACTIONS(4272), + [anon_sym_DQUOTE] = ACTIONS(4272), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4270), + [anon_sym_nullptr] = ACTIONS(4270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4270), + [anon_sym_decltype] = ACTIONS(4270), + [anon_sym_explicit] = ACTIONS(4270), + [anon_sym_export] = ACTIONS(4270), + [anon_sym_module] = ACTIONS(4270), + [anon_sym_import] = ACTIONS(4270), + [anon_sym_template] = ACTIONS(4270), + [anon_sym_operator] = ACTIONS(4270), + [anon_sym_try] = ACTIONS(4270), + [anon_sym_delete] = ACTIONS(4270), + [anon_sym_throw] = ACTIONS(4270), + [anon_sym_namespace] = ACTIONS(4270), + [anon_sym_static_assert] = ACTIONS(4270), + [anon_sym_concept] = ACTIONS(4270), + [anon_sym_co_return] = ACTIONS(4270), + [anon_sym_co_yield] = ACTIONS(4270), + [anon_sym_R_DQUOTE] = ACTIONS(4272), + [anon_sym_LR_DQUOTE] = ACTIONS(4272), + [anon_sym_uR_DQUOTE] = ACTIONS(4272), + [anon_sym_UR_DQUOTE] = ACTIONS(4272), + [anon_sym_u8R_DQUOTE] = ACTIONS(4272), + [anon_sym_co_await] = ACTIONS(4270), + [anon_sym_new] = ACTIONS(4270), + [anon_sym_requires] = ACTIONS(4270), + [anon_sym_CARET_CARET] = ACTIONS(4272), + [anon_sym_LBRACK_COLON] = ACTIONS(4272), + [sym_this] = ACTIONS(4270), }, - [STATE(539)] = { - [sym_expression] = STATE(5661), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_initializer_list] = STATE(5840), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_COMMA] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(3285), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(2024), - [anon_sym_PLUS] = ACTIONS(2024), - [anon_sym_STAR] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - [anon_sym_EQ_EQ] = ACTIONS(2026), - [anon_sym_BANG_EQ] = ACTIONS(2026), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2026), - [anon_sym_LT_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2026), - [anon_sym_GT_GT] = ACTIONS(2026), - [anon_sym_SEMI] = ACTIONS(2026), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym___attribute__] = ACTIONS(2024), - [anon_sym___attribute] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(2024), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_QMARK] = ACTIONS(2026), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_LT_EQ_GT] = ACTIONS(2026), - [anon_sym_or] = ACTIONS(2024), - [anon_sym_and] = ACTIONS(2024), - [anon_sym_bitor] = ACTIONS(2024), - [anon_sym_xor] = ACTIONS(2024), - [anon_sym_bitand] = ACTIONS(2024), - [anon_sym_not_eq] = ACTIONS(2024), - [anon_sym_DASH_DASH] = ACTIONS(2026), - [anon_sym_PLUS_PLUS] = ACTIONS(2026), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(484)] = { + [sym_identifier] = ACTIONS(4270), + [aux_sym_preproc_include_token1] = ACTIONS(4270), + [aux_sym_preproc_def_token1] = ACTIONS(4270), + [aux_sym_preproc_if_token1] = ACTIONS(4270), + [aux_sym_preproc_if_token2] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), + [aux_sym_preproc_else_token1] = ACTIONS(4270), + [aux_sym_preproc_elif_token1] = ACTIONS(4270), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4270), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4270), + [sym_preproc_directive] = ACTIONS(4270), + [anon_sym_LPAREN2] = ACTIONS(4272), + [anon_sym_BANG] = ACTIONS(4272), + [anon_sym_TILDE] = ACTIONS(4272), + [anon_sym_DASH] = ACTIONS(4270), + [anon_sym_PLUS] = ACTIONS(4270), + [anon_sym_STAR] = ACTIONS(4272), + [anon_sym_AMP_AMP] = ACTIONS(4272), + [anon_sym_AMP] = ACTIONS(4270), + [anon_sym_SEMI] = ACTIONS(4272), + [anon_sym___extension__] = ACTIONS(4270), + [anon_sym_typedef] = ACTIONS(4270), + [anon_sym_virtual] = ACTIONS(4270), + [anon_sym_extern] = ACTIONS(4270), + [anon_sym___attribute__] = ACTIONS(4270), + [anon_sym___attribute] = ACTIONS(4270), + [anon_sym_using] = ACTIONS(4270), + [anon_sym_COLON_COLON] = ACTIONS(4272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), + [anon_sym___declspec] = ACTIONS(4270), + [anon_sym___based] = ACTIONS(4270), + [anon_sym___cdecl] = ACTIONS(4270), + [anon_sym___clrcall] = ACTIONS(4270), + [anon_sym___stdcall] = ACTIONS(4270), + [anon_sym___fastcall] = ACTIONS(4270), + [anon_sym___thiscall] = ACTIONS(4270), + [anon_sym___vectorcall] = ACTIONS(4270), + [anon_sym_LBRACE] = ACTIONS(4272), + [anon_sym_signed] = ACTIONS(4270), + [anon_sym_unsigned] = ACTIONS(4270), + [anon_sym_long] = ACTIONS(4270), + [anon_sym_short] = ACTIONS(4270), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_static] = ACTIONS(4270), + [anon_sym_register] = ACTIONS(4270), + [anon_sym_inline] = ACTIONS(4270), + [anon_sym___inline] = ACTIONS(4270), + [anon_sym___inline__] = ACTIONS(4270), + [anon_sym___forceinline] = ACTIONS(4270), + [anon_sym_thread_local] = ACTIONS(4270), + [anon_sym___thread] = ACTIONS(4270), + [anon_sym_const] = ACTIONS(4270), + [anon_sym_constexpr] = ACTIONS(4270), + [anon_sym_volatile] = ACTIONS(4270), + [anon_sym_restrict] = ACTIONS(4270), + [anon_sym___restrict__] = ACTIONS(4270), + [anon_sym__Atomic] = ACTIONS(4270), + [anon_sym__Noreturn] = ACTIONS(4270), + [anon_sym_noreturn] = ACTIONS(4270), + [anon_sym__Nonnull] = ACTIONS(4270), + [anon_sym_mutable] = ACTIONS(4270), + [anon_sym_constinit] = ACTIONS(4270), + [anon_sym_consteval] = ACTIONS(4270), + [anon_sym_alignas] = ACTIONS(4270), + [anon_sym__Alignas] = ACTIONS(4270), + [sym_primitive_type] = ACTIONS(4270), + [anon_sym_enum] = ACTIONS(4270), + [anon_sym_class] = ACTIONS(4270), + [anon_sym_struct] = ACTIONS(4270), + [anon_sym_union] = ACTIONS(4270), + [anon_sym_if] = ACTIONS(4270), + [anon_sym_switch] = ACTIONS(4270), + [anon_sym_case] = ACTIONS(4270), + [anon_sym_default] = ACTIONS(4270), + [anon_sym_while] = ACTIONS(4270), + [anon_sym_do] = ACTIONS(4270), + [anon_sym_for] = ACTIONS(4270), + [anon_sym_return] = ACTIONS(4270), + [anon_sym_break] = ACTIONS(4270), + [anon_sym_continue] = ACTIONS(4270), + [anon_sym_goto] = ACTIONS(4270), + [anon_sym___try] = ACTIONS(4270), + [anon_sym___leave] = ACTIONS(4270), + [anon_sym_not] = ACTIONS(4270), + [anon_sym_compl] = ACTIONS(4270), + [anon_sym_DASH_DASH] = ACTIONS(4272), + [anon_sym_PLUS_PLUS] = ACTIONS(4272), + [anon_sym_sizeof] = ACTIONS(4270), + [anon_sym___alignof__] = ACTIONS(4270), + [anon_sym___alignof] = ACTIONS(4270), + [anon_sym__alignof] = ACTIONS(4270), + [anon_sym_alignof] = ACTIONS(4270), + [anon_sym__Alignof] = ACTIONS(4270), + [anon_sym_offsetof] = ACTIONS(4270), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4270), + [anon_sym_asm] = ACTIONS(4270), + [anon_sym___asm__] = ACTIONS(4270), + [anon_sym___asm] = ACTIONS(4270), + [sym_number_literal] = ACTIONS(4272), + [anon_sym_L_SQUOTE] = ACTIONS(4272), + [anon_sym_u_SQUOTE] = ACTIONS(4272), + [anon_sym_U_SQUOTE] = ACTIONS(4272), + [anon_sym_u8_SQUOTE] = ACTIONS(4272), + [anon_sym_SQUOTE] = ACTIONS(4272), + [anon_sym_L_DQUOTE] = ACTIONS(4272), + [anon_sym_u_DQUOTE] = ACTIONS(4272), + [anon_sym_U_DQUOTE] = ACTIONS(4272), + [anon_sym_u8_DQUOTE] = ACTIONS(4272), + [anon_sym_DQUOTE] = ACTIONS(4272), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4270), + [anon_sym_nullptr] = ACTIONS(4270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4270), + [anon_sym_decltype] = ACTIONS(4270), + [anon_sym_explicit] = ACTIONS(4270), + [anon_sym_export] = ACTIONS(4270), + [anon_sym_module] = ACTIONS(4270), + [anon_sym_import] = ACTIONS(4270), + [anon_sym_template] = ACTIONS(4270), + [anon_sym_operator] = ACTIONS(4270), + [anon_sym_try] = ACTIONS(4270), + [anon_sym_delete] = ACTIONS(4270), + [anon_sym_throw] = ACTIONS(4270), + [anon_sym_namespace] = ACTIONS(4270), + [anon_sym_static_assert] = ACTIONS(4270), + [anon_sym_concept] = ACTIONS(4270), + [anon_sym_co_return] = ACTIONS(4270), + [anon_sym_co_yield] = ACTIONS(4270), + [anon_sym_R_DQUOTE] = ACTIONS(4272), + [anon_sym_LR_DQUOTE] = ACTIONS(4272), + [anon_sym_uR_DQUOTE] = ACTIONS(4272), + [anon_sym_UR_DQUOTE] = ACTIONS(4272), + [anon_sym_u8R_DQUOTE] = ACTIONS(4272), + [anon_sym_co_await] = ACTIONS(4270), + [anon_sym_new] = ACTIONS(4270), + [anon_sym_requires] = ACTIONS(4270), + [anon_sym_CARET_CARET] = ACTIONS(4272), + [anon_sym_LBRACK_COLON] = ACTIONS(4272), + [sym_this] = ACTIONS(4270), + }, + [STATE(485)] = { + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(7120), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(10976), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7912), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5230), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3784), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -131429,15627 +129403,13112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(3786), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2026), - [anon_sym_DASH_GT] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(540)] = { - [sym_identifier] = ACTIONS(2803), - [aux_sym_preproc_include_token1] = ACTIONS(2803), - [aux_sym_preproc_def_token1] = ACTIONS(2803), - [aux_sym_preproc_if_token1] = ACTIONS(2803), - [aux_sym_preproc_if_token2] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2803), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2803), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym___extension__] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2803), - [anon_sym_virtual] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym___attribute__] = ACTIONS(2803), - [anon_sym___attribute] = ACTIONS(2803), - [anon_sym_using] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2803), - [anon_sym___based] = ACTIONS(2803), - [anon_sym___cdecl] = ACTIONS(2803), - [anon_sym___clrcall] = ACTIONS(2803), - [anon_sym___stdcall] = ACTIONS(2803), - [anon_sym___fastcall] = ACTIONS(2803), - [anon_sym___thiscall] = ACTIONS(2803), - [anon_sym___vectorcall] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_signed] = ACTIONS(2803), - [anon_sym_unsigned] = ACTIONS(2803), - [anon_sym_long] = ACTIONS(2803), - [anon_sym_short] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_register] = ACTIONS(2803), - [anon_sym_inline] = ACTIONS(2803), - [anon_sym___inline] = ACTIONS(2803), - [anon_sym___inline__] = ACTIONS(2803), - [anon_sym___forceinline] = ACTIONS(2803), - [anon_sym_thread_local] = ACTIONS(2803), - [anon_sym___thread] = ACTIONS(2803), - [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__Nonnull] = ACTIONS(2803), - [anon_sym_mutable] = ACTIONS(2803), - [anon_sym_constinit] = ACTIONS(2803), - [anon_sym_consteval] = ACTIONS(2803), - [anon_sym_alignas] = ACTIONS(2803), - [anon_sym__Alignas] = ACTIONS(2803), - [sym_primitive_type] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_if] = ACTIONS(2803), - [anon_sym_else] = ACTIONS(2803), - [anon_sym_switch] = ACTIONS(2803), - [anon_sym_case] = ACTIONS(2803), - [anon_sym_default] = ACTIONS(2803), - [anon_sym_while] = ACTIONS(2803), - [anon_sym_do] = ACTIONS(2803), - [anon_sym_for] = ACTIONS(2803), - [anon_sym_return] = ACTIONS(2803), - [anon_sym_break] = ACTIONS(2803), - [anon_sym_continue] = ACTIONS(2803), - [anon_sym_goto] = ACTIONS(2803), - [anon_sym___try] = ACTIONS(2803), - [anon_sym___leave] = ACTIONS(2803), - [anon_sym_not] = ACTIONS(2803), - [anon_sym_compl] = ACTIONS(2803), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_sizeof] = ACTIONS(2803), - [anon_sym___alignof__] = ACTIONS(2803), - [anon_sym___alignof] = ACTIONS(2803), - [anon_sym__alignof] = ACTIONS(2803), - [anon_sym_alignof] = ACTIONS(2803), - [anon_sym__Alignof] = ACTIONS(2803), - [anon_sym_offsetof] = ACTIONS(2803), - [anon_sym__Generic] = ACTIONS(2803), - [anon_sym_typename] = ACTIONS(2803), - [anon_sym_asm] = ACTIONS(2803), - [anon_sym___asm__] = ACTIONS(2803), - [anon_sym___asm] = ACTIONS(2803), - [sym_number_literal] = ACTIONS(2801), - [anon_sym_L_SQUOTE] = ACTIONS(2801), - [anon_sym_u_SQUOTE] = ACTIONS(2801), - [anon_sym_U_SQUOTE] = ACTIONS(2801), - [anon_sym_u8_SQUOTE] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2801), - [anon_sym_L_DQUOTE] = ACTIONS(2801), - [anon_sym_u_DQUOTE] = ACTIONS(2801), - [anon_sym_U_DQUOTE] = ACTIONS(2801), - [anon_sym_u8_DQUOTE] = ACTIONS(2801), - [anon_sym_DQUOTE] = ACTIONS(2801), - [sym_true] = ACTIONS(2803), - [sym_false] = ACTIONS(2803), - [anon_sym_NULL] = ACTIONS(2803), - [anon_sym_nullptr] = ACTIONS(2803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2803), - [anon_sym_decltype] = ACTIONS(2803), - [anon_sym_explicit] = ACTIONS(2803), - [anon_sym_template] = ACTIONS(2803), - [anon_sym_operator] = ACTIONS(2803), - [anon_sym_try] = ACTIONS(2803), - [anon_sym_delete] = ACTIONS(2803), - [anon_sym_throw] = ACTIONS(2803), - [anon_sym_namespace] = ACTIONS(2803), - [anon_sym_static_assert] = ACTIONS(2803), - [anon_sym_concept] = ACTIONS(2803), - [anon_sym_co_return] = ACTIONS(2803), - [anon_sym_co_yield] = ACTIONS(2803), - [anon_sym_catch] = ACTIONS(2803), - [anon_sym_R_DQUOTE] = ACTIONS(2801), - [anon_sym_LR_DQUOTE] = ACTIONS(2801), - [anon_sym_uR_DQUOTE] = ACTIONS(2801), - [anon_sym_UR_DQUOTE] = ACTIONS(2801), - [anon_sym_u8R_DQUOTE] = ACTIONS(2801), - [anon_sym_co_await] = ACTIONS(2803), - [anon_sym_new] = ACTIONS(2803), - [anon_sym_requires] = ACTIONS(2803), - [anon_sym_CARET_CARET] = ACTIONS(2801), - [anon_sym_LBRACK_COLON] = ACTIONS(2801), - [sym_this] = ACTIONS(2803), + [STATE(486)] = { + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(7174), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(11528), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7912), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5230), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3784), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3786), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(541)] = { - [sym_identifier] = ACTIONS(3608), - [aux_sym_preproc_include_token1] = ACTIONS(3608), - [aux_sym_preproc_def_token1] = ACTIONS(3608), - [aux_sym_preproc_if_token1] = ACTIONS(3608), - [aux_sym_preproc_if_token2] = ACTIONS(3608), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3608), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3608), - [sym_preproc_directive] = ACTIONS(3608), - [anon_sym_LPAREN2] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3608), - [anon_sym_STAR] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3608), - [anon_sym_SEMI] = ACTIONS(3610), - [anon_sym___extension__] = ACTIONS(3608), - [anon_sym_typedef] = ACTIONS(3608), - [anon_sym_virtual] = ACTIONS(3608), - [anon_sym_extern] = ACTIONS(3608), - [anon_sym___attribute__] = ACTIONS(3608), - [anon_sym___attribute] = ACTIONS(3608), - [anon_sym_using] = ACTIONS(3608), - [anon_sym_COLON_COLON] = ACTIONS(3610), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3610), - [anon_sym___declspec] = ACTIONS(3608), - [anon_sym___based] = ACTIONS(3608), - [anon_sym___cdecl] = ACTIONS(3608), - [anon_sym___clrcall] = ACTIONS(3608), - [anon_sym___stdcall] = ACTIONS(3608), - [anon_sym___fastcall] = ACTIONS(3608), - [anon_sym___thiscall] = ACTIONS(3608), - [anon_sym___vectorcall] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_signed] = ACTIONS(3608), - [anon_sym_unsigned] = ACTIONS(3608), - [anon_sym_long] = ACTIONS(3608), - [anon_sym_short] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_static] = ACTIONS(3608), - [anon_sym_register] = ACTIONS(3608), - [anon_sym_inline] = ACTIONS(3608), - [anon_sym___inline] = ACTIONS(3608), - [anon_sym___inline__] = ACTIONS(3608), - [anon_sym___forceinline] = ACTIONS(3608), - [anon_sym_thread_local] = ACTIONS(3608), - [anon_sym___thread] = ACTIONS(3608), - [anon_sym_const] = ACTIONS(3608), - [anon_sym_constexpr] = ACTIONS(3608), - [anon_sym_volatile] = ACTIONS(3608), - [anon_sym_restrict] = ACTIONS(3608), - [anon_sym___restrict__] = ACTIONS(3608), - [anon_sym__Atomic] = ACTIONS(3608), - [anon_sym__Noreturn] = ACTIONS(3608), - [anon_sym_noreturn] = ACTIONS(3608), - [anon_sym__Nonnull] = ACTIONS(3608), - [anon_sym_mutable] = ACTIONS(3608), - [anon_sym_constinit] = ACTIONS(3608), - [anon_sym_consteval] = ACTIONS(3608), - [anon_sym_alignas] = ACTIONS(3608), - [anon_sym__Alignas] = ACTIONS(3608), - [sym_primitive_type] = ACTIONS(3608), - [anon_sym_enum] = ACTIONS(3608), - [anon_sym_class] = ACTIONS(3608), - [anon_sym_struct] = ACTIONS(3608), - [anon_sym_union] = ACTIONS(3608), - [anon_sym_if] = ACTIONS(3608), - [anon_sym_else] = ACTIONS(3608), - [anon_sym_switch] = ACTIONS(3608), - [anon_sym_case] = ACTIONS(3608), - [anon_sym_default] = ACTIONS(3608), - [anon_sym_while] = ACTIONS(3608), - [anon_sym_do] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3608), - [anon_sym_return] = ACTIONS(3608), - [anon_sym_break] = ACTIONS(3608), - [anon_sym_continue] = ACTIONS(3608), - [anon_sym_goto] = ACTIONS(3608), - [anon_sym___try] = ACTIONS(3608), - [anon_sym___leave] = ACTIONS(3608), - [anon_sym_not] = ACTIONS(3608), - [anon_sym_compl] = ACTIONS(3608), - [anon_sym_DASH_DASH] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3610), - [anon_sym_sizeof] = ACTIONS(3608), - [anon_sym___alignof__] = ACTIONS(3608), - [anon_sym___alignof] = ACTIONS(3608), - [anon_sym__alignof] = ACTIONS(3608), - [anon_sym_alignof] = ACTIONS(3608), - [anon_sym__Alignof] = ACTIONS(3608), - [anon_sym_offsetof] = ACTIONS(3608), - [anon_sym__Generic] = ACTIONS(3608), - [anon_sym_typename] = ACTIONS(3608), - [anon_sym_asm] = ACTIONS(3608), - [anon_sym___asm__] = ACTIONS(3608), - [anon_sym___asm] = ACTIONS(3608), - [sym_number_literal] = ACTIONS(3610), - [anon_sym_L_SQUOTE] = ACTIONS(3610), - [anon_sym_u_SQUOTE] = ACTIONS(3610), - [anon_sym_U_SQUOTE] = ACTIONS(3610), - [anon_sym_u8_SQUOTE] = ACTIONS(3610), - [anon_sym_SQUOTE] = ACTIONS(3610), - [anon_sym_L_DQUOTE] = ACTIONS(3610), - [anon_sym_u_DQUOTE] = ACTIONS(3610), - [anon_sym_U_DQUOTE] = ACTIONS(3610), - [anon_sym_u8_DQUOTE] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [sym_true] = ACTIONS(3608), - [sym_false] = ACTIONS(3608), - [anon_sym_NULL] = ACTIONS(3608), - [anon_sym_nullptr] = ACTIONS(3608), + [STATE(487)] = { + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(6947), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(10987), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7912), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5230), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3784), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3786), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3608), - [anon_sym_decltype] = ACTIONS(3608), - [anon_sym_explicit] = ACTIONS(3608), - [anon_sym_template] = ACTIONS(3608), - [anon_sym_operator] = ACTIONS(3608), - [anon_sym_try] = ACTIONS(3608), - [anon_sym_delete] = ACTIONS(3608), - [anon_sym_throw] = ACTIONS(3608), - [anon_sym_namespace] = ACTIONS(3608), - [anon_sym_static_assert] = ACTIONS(3608), - [anon_sym_concept] = ACTIONS(3608), - [anon_sym_co_return] = ACTIONS(3608), - [anon_sym_co_yield] = ACTIONS(3608), - [anon_sym_catch] = ACTIONS(3608), - [anon_sym_R_DQUOTE] = ACTIONS(3610), - [anon_sym_LR_DQUOTE] = ACTIONS(3610), - [anon_sym_uR_DQUOTE] = ACTIONS(3610), - [anon_sym_UR_DQUOTE] = ACTIONS(3610), - [anon_sym_u8R_DQUOTE] = ACTIONS(3610), - [anon_sym_co_await] = ACTIONS(3608), - [anon_sym_new] = ACTIONS(3608), - [anon_sym_requires] = ACTIONS(3608), - [anon_sym_CARET_CARET] = ACTIONS(3610), - [anon_sym_LBRACK_COLON] = ACTIONS(3610), - [sym_this] = ACTIONS(3608), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(542)] = { - [sym_identifier] = ACTIONS(2795), - [aux_sym_preproc_include_token1] = ACTIONS(2795), - [aux_sym_preproc_def_token1] = ACTIONS(2795), - [aux_sym_preproc_if_token1] = ACTIONS(2795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), - [sym_preproc_directive] = ACTIONS(2795), - [anon_sym_LPAREN2] = ACTIONS(2793), - [anon_sym_BANG] = ACTIONS(2793), - [anon_sym_TILDE] = ACTIONS(2793), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2793), - [anon_sym_AMP_AMP] = ACTIONS(2793), - [anon_sym_AMP] = ACTIONS(2795), - [anon_sym_SEMI] = ACTIONS(2793), - [anon_sym___extension__] = ACTIONS(2795), - [anon_sym_typedef] = ACTIONS(2795), - [anon_sym_virtual] = ACTIONS(2795), - [anon_sym_extern] = ACTIONS(2795), - [anon_sym___attribute__] = ACTIONS(2795), - [anon_sym___attribute] = ACTIONS(2795), - [anon_sym_using] = ACTIONS(2795), - [anon_sym_COLON_COLON] = ACTIONS(2793), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), - [anon_sym___declspec] = ACTIONS(2795), - [anon_sym___based] = ACTIONS(2795), - [anon_sym___cdecl] = ACTIONS(2795), - [anon_sym___clrcall] = ACTIONS(2795), - [anon_sym___stdcall] = ACTIONS(2795), - [anon_sym___fastcall] = ACTIONS(2795), - [anon_sym___thiscall] = ACTIONS(2795), - [anon_sym___vectorcall] = ACTIONS(2795), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_RBRACE] = ACTIONS(2793), - [anon_sym_signed] = ACTIONS(2795), - [anon_sym_unsigned] = ACTIONS(2795), - [anon_sym_long] = ACTIONS(2795), - [anon_sym_short] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2795), - [anon_sym_static] = ACTIONS(2795), - [anon_sym_register] = ACTIONS(2795), - [anon_sym_inline] = ACTIONS(2795), - [anon_sym___inline] = ACTIONS(2795), - [anon_sym___inline__] = ACTIONS(2795), - [anon_sym___forceinline] = ACTIONS(2795), - [anon_sym_thread_local] = ACTIONS(2795), - [anon_sym___thread] = ACTIONS(2795), - [anon_sym_const] = ACTIONS(2795), - [anon_sym_constexpr] = ACTIONS(2795), - [anon_sym_volatile] = ACTIONS(2795), - [anon_sym_restrict] = ACTIONS(2795), - [anon_sym___restrict__] = ACTIONS(2795), - [anon_sym__Atomic] = ACTIONS(2795), - [anon_sym__Noreturn] = ACTIONS(2795), - [anon_sym_noreturn] = ACTIONS(2795), - [anon_sym__Nonnull] = ACTIONS(2795), - [anon_sym_mutable] = ACTIONS(2795), - [anon_sym_constinit] = ACTIONS(2795), - [anon_sym_consteval] = ACTIONS(2795), - [anon_sym_alignas] = ACTIONS(2795), - [anon_sym__Alignas] = ACTIONS(2795), - [sym_primitive_type] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2795), - [anon_sym_class] = ACTIONS(2795), - [anon_sym_struct] = ACTIONS(2795), - [anon_sym_union] = ACTIONS(2795), - [anon_sym_if] = ACTIONS(2795), - [anon_sym_else] = ACTIONS(2795), - [anon_sym_switch] = ACTIONS(2795), - [anon_sym_case] = ACTIONS(2795), - [anon_sym_default] = ACTIONS(2795), - [anon_sym_while] = ACTIONS(2795), - [anon_sym_do] = ACTIONS(2795), - [anon_sym_for] = ACTIONS(2795), - [anon_sym_return] = ACTIONS(2795), - [anon_sym_break] = ACTIONS(2795), - [anon_sym_continue] = ACTIONS(2795), - [anon_sym_goto] = ACTIONS(2795), - [anon_sym___try] = ACTIONS(2795), - [anon_sym___leave] = ACTIONS(2795), - [anon_sym_not] = ACTIONS(2795), - [anon_sym_compl] = ACTIONS(2795), - [anon_sym_DASH_DASH] = ACTIONS(2793), - [anon_sym_PLUS_PLUS] = ACTIONS(2793), - [anon_sym_sizeof] = ACTIONS(2795), - [anon_sym___alignof__] = ACTIONS(2795), - [anon_sym___alignof] = ACTIONS(2795), - [anon_sym__alignof] = ACTIONS(2795), - [anon_sym_alignof] = ACTIONS(2795), - [anon_sym__Alignof] = ACTIONS(2795), - [anon_sym_offsetof] = ACTIONS(2795), - [anon_sym__Generic] = ACTIONS(2795), - [anon_sym_typename] = ACTIONS(2795), - [anon_sym_asm] = ACTIONS(2795), - [anon_sym___asm__] = ACTIONS(2795), - [anon_sym___asm] = ACTIONS(2795), - [sym_number_literal] = ACTIONS(2793), - [anon_sym_L_SQUOTE] = ACTIONS(2793), - [anon_sym_u_SQUOTE] = ACTIONS(2793), - [anon_sym_U_SQUOTE] = ACTIONS(2793), - [anon_sym_u8_SQUOTE] = ACTIONS(2793), - [anon_sym_SQUOTE] = ACTIONS(2793), - [anon_sym_L_DQUOTE] = ACTIONS(2793), - [anon_sym_u_DQUOTE] = ACTIONS(2793), - [anon_sym_U_DQUOTE] = ACTIONS(2793), - [anon_sym_u8_DQUOTE] = ACTIONS(2793), - [anon_sym_DQUOTE] = ACTIONS(2793), - [sym_true] = ACTIONS(2795), - [sym_false] = ACTIONS(2795), - [anon_sym_NULL] = ACTIONS(2795), - [anon_sym_nullptr] = ACTIONS(2795), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2795), - [anon_sym_decltype] = ACTIONS(2795), - [anon_sym_explicit] = ACTIONS(2795), - [anon_sym_template] = ACTIONS(2795), - [anon_sym_operator] = ACTIONS(2795), - [anon_sym_try] = ACTIONS(2795), - [anon_sym_delete] = ACTIONS(2795), - [anon_sym_throw] = ACTIONS(2795), - [anon_sym_namespace] = ACTIONS(2795), - [anon_sym_static_assert] = ACTIONS(2795), - [anon_sym_concept] = ACTIONS(2795), - [anon_sym_co_return] = ACTIONS(2795), - [anon_sym_co_yield] = ACTIONS(2795), - [anon_sym_catch] = ACTIONS(2795), - [anon_sym_R_DQUOTE] = ACTIONS(2793), - [anon_sym_LR_DQUOTE] = ACTIONS(2793), - [anon_sym_uR_DQUOTE] = ACTIONS(2793), - [anon_sym_UR_DQUOTE] = ACTIONS(2793), - [anon_sym_u8R_DQUOTE] = ACTIONS(2793), - [anon_sym_co_await] = ACTIONS(2795), - [anon_sym_new] = ACTIONS(2795), - [anon_sym_requires] = ACTIONS(2795), - [anon_sym_CARET_CARET] = ACTIONS(2793), - [anon_sym_LBRACK_COLON] = ACTIONS(2793), - [sym_this] = ACTIONS(2795), + [STATE(488)] = { + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(6970), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(10681), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7912), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5230), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3784), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3786), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(543)] = { - [sym_else_clause] = STATE(701), - [sym_identifier] = ACTIONS(3612), - [aux_sym_preproc_include_token1] = ACTIONS(3612), - [aux_sym_preproc_def_token1] = ACTIONS(3612), - [aux_sym_preproc_if_token1] = ACTIONS(3612), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3612), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3612), - [sym_preproc_directive] = ACTIONS(3612), - [anon_sym_LPAREN2] = ACTIONS(3614), - [anon_sym_BANG] = ACTIONS(3614), - [anon_sym_TILDE] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_STAR] = ACTIONS(3614), - [anon_sym_AMP_AMP] = ACTIONS(3614), - [anon_sym_AMP] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3614), - [anon_sym___extension__] = ACTIONS(3612), - [anon_sym_typedef] = ACTIONS(3612), - [anon_sym_virtual] = ACTIONS(3612), - [anon_sym_extern] = ACTIONS(3612), - [anon_sym___attribute__] = ACTIONS(3612), - [anon_sym___attribute] = ACTIONS(3612), - [anon_sym_using] = ACTIONS(3612), - [anon_sym_COLON_COLON] = ACTIONS(3614), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3614), - [anon_sym___declspec] = ACTIONS(3612), - [anon_sym___based] = ACTIONS(3612), - [anon_sym___cdecl] = ACTIONS(3612), - [anon_sym___clrcall] = ACTIONS(3612), - [anon_sym___stdcall] = ACTIONS(3612), - [anon_sym___fastcall] = ACTIONS(3612), - [anon_sym___thiscall] = ACTIONS(3612), - [anon_sym___vectorcall] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_RBRACE] = ACTIONS(3614), - [anon_sym_signed] = ACTIONS(3612), - [anon_sym_unsigned] = ACTIONS(3612), - [anon_sym_long] = ACTIONS(3612), - [anon_sym_short] = ACTIONS(3612), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_static] = ACTIONS(3612), - [anon_sym_register] = ACTIONS(3612), - [anon_sym_inline] = ACTIONS(3612), - [anon_sym___inline] = ACTIONS(3612), - [anon_sym___inline__] = ACTIONS(3612), - [anon_sym___forceinline] = ACTIONS(3612), - [anon_sym_thread_local] = ACTIONS(3612), - [anon_sym___thread] = ACTIONS(3612), - [anon_sym_const] = ACTIONS(3612), - [anon_sym_constexpr] = ACTIONS(3612), - [anon_sym_volatile] = ACTIONS(3612), - [anon_sym_restrict] = ACTIONS(3612), - [anon_sym___restrict__] = ACTIONS(3612), - [anon_sym__Atomic] = ACTIONS(3612), - [anon_sym__Noreturn] = ACTIONS(3612), - [anon_sym_noreturn] = ACTIONS(3612), - [anon_sym__Nonnull] = ACTIONS(3612), - [anon_sym_mutable] = ACTIONS(3612), - [anon_sym_constinit] = ACTIONS(3612), - [anon_sym_consteval] = ACTIONS(3612), - [anon_sym_alignas] = ACTIONS(3612), - [anon_sym__Alignas] = ACTIONS(3612), - [sym_primitive_type] = ACTIONS(3612), - [anon_sym_enum] = ACTIONS(3612), - [anon_sym_class] = ACTIONS(3612), - [anon_sym_struct] = ACTIONS(3612), - [anon_sym_union] = ACTIONS(3612), - [anon_sym_if] = ACTIONS(3612), - [anon_sym_else] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_case] = ACTIONS(3612), - [anon_sym_default] = ACTIONS(3612), - [anon_sym_while] = ACTIONS(3612), - [anon_sym_do] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3612), - [anon_sym_return] = ACTIONS(3612), - [anon_sym_break] = ACTIONS(3612), - [anon_sym_continue] = ACTIONS(3612), - [anon_sym_goto] = ACTIONS(3612), - [anon_sym___try] = ACTIONS(3612), - [anon_sym___leave] = ACTIONS(3612), - [anon_sym_not] = ACTIONS(3612), - [anon_sym_compl] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3614), - [anon_sym_sizeof] = ACTIONS(3612), - [anon_sym___alignof__] = ACTIONS(3612), - [anon_sym___alignof] = ACTIONS(3612), - [anon_sym__alignof] = ACTIONS(3612), - [anon_sym_alignof] = ACTIONS(3612), - [anon_sym__Alignof] = ACTIONS(3612), - [anon_sym_offsetof] = ACTIONS(3612), - [anon_sym__Generic] = ACTIONS(3612), - [anon_sym_typename] = ACTIONS(3612), - [anon_sym_asm] = ACTIONS(3612), - [anon_sym___asm__] = ACTIONS(3612), - [anon_sym___asm] = ACTIONS(3612), - [sym_number_literal] = ACTIONS(3614), - [anon_sym_L_SQUOTE] = ACTIONS(3614), - [anon_sym_u_SQUOTE] = ACTIONS(3614), - [anon_sym_U_SQUOTE] = ACTIONS(3614), - [anon_sym_u8_SQUOTE] = ACTIONS(3614), - [anon_sym_SQUOTE] = ACTIONS(3614), - [anon_sym_L_DQUOTE] = ACTIONS(3614), - [anon_sym_u_DQUOTE] = ACTIONS(3614), - [anon_sym_U_DQUOTE] = ACTIONS(3614), - [anon_sym_u8_DQUOTE] = ACTIONS(3614), - [anon_sym_DQUOTE] = ACTIONS(3614), - [sym_true] = ACTIONS(3612), - [sym_false] = ACTIONS(3612), - [anon_sym_NULL] = ACTIONS(3612), - [anon_sym_nullptr] = ACTIONS(3612), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3612), - [anon_sym_decltype] = ACTIONS(3612), - [anon_sym_explicit] = ACTIONS(3612), - [anon_sym_template] = ACTIONS(3612), - [anon_sym_operator] = ACTIONS(3612), - [anon_sym_try] = ACTIONS(3612), - [anon_sym_delete] = ACTIONS(3612), - [anon_sym_throw] = ACTIONS(3612), - [anon_sym_namespace] = ACTIONS(3612), - [anon_sym_static_assert] = ACTIONS(3612), - [anon_sym_concept] = ACTIONS(3612), - [anon_sym_co_return] = ACTIONS(3612), - [anon_sym_co_yield] = ACTIONS(3612), - [anon_sym_R_DQUOTE] = ACTIONS(3614), - [anon_sym_LR_DQUOTE] = ACTIONS(3614), - [anon_sym_uR_DQUOTE] = ACTIONS(3614), - [anon_sym_UR_DQUOTE] = ACTIONS(3614), - [anon_sym_u8R_DQUOTE] = ACTIONS(3614), - [anon_sym_co_await] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3612), - [anon_sym_requires] = ACTIONS(3612), - [anon_sym_CARET_CARET] = ACTIONS(3614), - [anon_sym_LBRACK_COLON] = ACTIONS(3614), - [sym_this] = ACTIONS(3612), + [STATE(489)] = { + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(7001), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(11011), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7912), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5230), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3784), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3786), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(544)] = { - [sym_identifier] = ACTIONS(2795), - [aux_sym_preproc_include_token1] = ACTIONS(2795), - [aux_sym_preproc_def_token1] = ACTIONS(2795), - [aux_sym_preproc_if_token1] = ACTIONS(2795), - [aux_sym_preproc_if_token2] = ACTIONS(2795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), - [sym_preproc_directive] = ACTIONS(2795), - [anon_sym_LPAREN2] = ACTIONS(2793), - [anon_sym_BANG] = ACTIONS(2793), - [anon_sym_TILDE] = ACTIONS(2793), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2793), - [anon_sym_AMP_AMP] = ACTIONS(2793), - [anon_sym_AMP] = ACTIONS(2795), - [anon_sym_SEMI] = ACTIONS(2793), - [anon_sym___extension__] = ACTIONS(2795), - [anon_sym_typedef] = ACTIONS(2795), - [anon_sym_virtual] = ACTIONS(2795), - [anon_sym_extern] = ACTIONS(2795), - [anon_sym___attribute__] = ACTIONS(2795), - [anon_sym___attribute] = ACTIONS(2795), - [anon_sym_using] = ACTIONS(2795), - [anon_sym_COLON_COLON] = ACTIONS(2793), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), - [anon_sym___declspec] = ACTIONS(2795), - [anon_sym___based] = ACTIONS(2795), - [anon_sym___cdecl] = ACTIONS(2795), - [anon_sym___clrcall] = ACTIONS(2795), - [anon_sym___stdcall] = ACTIONS(2795), - [anon_sym___fastcall] = ACTIONS(2795), - [anon_sym___thiscall] = ACTIONS(2795), - [anon_sym___vectorcall] = ACTIONS(2795), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_signed] = ACTIONS(2795), - [anon_sym_unsigned] = ACTIONS(2795), - [anon_sym_long] = ACTIONS(2795), - [anon_sym_short] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2795), - [anon_sym_static] = ACTIONS(2795), - [anon_sym_register] = ACTIONS(2795), - [anon_sym_inline] = ACTIONS(2795), - [anon_sym___inline] = ACTIONS(2795), - [anon_sym___inline__] = ACTIONS(2795), - [anon_sym___forceinline] = ACTIONS(2795), - [anon_sym_thread_local] = ACTIONS(2795), - [anon_sym___thread] = ACTIONS(2795), - [anon_sym_const] = ACTIONS(2795), - [anon_sym_constexpr] = ACTIONS(2795), - [anon_sym_volatile] = ACTIONS(2795), - [anon_sym_restrict] = ACTIONS(2795), - [anon_sym___restrict__] = ACTIONS(2795), - [anon_sym__Atomic] = ACTIONS(2795), - [anon_sym__Noreturn] = ACTIONS(2795), - [anon_sym_noreturn] = ACTIONS(2795), - [anon_sym__Nonnull] = ACTIONS(2795), - [anon_sym_mutable] = ACTIONS(2795), - [anon_sym_constinit] = ACTIONS(2795), - [anon_sym_consteval] = ACTIONS(2795), - [anon_sym_alignas] = ACTIONS(2795), - [anon_sym__Alignas] = ACTIONS(2795), - [sym_primitive_type] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2795), - [anon_sym_class] = ACTIONS(2795), - [anon_sym_struct] = ACTIONS(2795), - [anon_sym_union] = ACTIONS(2795), - [anon_sym_if] = ACTIONS(2795), - [anon_sym_else] = ACTIONS(2795), - [anon_sym_switch] = ACTIONS(2795), - [anon_sym_case] = ACTIONS(2795), - [anon_sym_default] = ACTIONS(2795), - [anon_sym_while] = ACTIONS(2795), - [anon_sym_do] = ACTIONS(2795), - [anon_sym_for] = ACTIONS(2795), - [anon_sym_return] = ACTIONS(2795), - [anon_sym_break] = ACTIONS(2795), - [anon_sym_continue] = ACTIONS(2795), - [anon_sym_goto] = ACTIONS(2795), - [anon_sym___try] = ACTIONS(2795), - [anon_sym___leave] = ACTIONS(2795), - [anon_sym_not] = ACTIONS(2795), - [anon_sym_compl] = ACTIONS(2795), - [anon_sym_DASH_DASH] = ACTIONS(2793), - [anon_sym_PLUS_PLUS] = ACTIONS(2793), - [anon_sym_sizeof] = ACTIONS(2795), - [anon_sym___alignof__] = ACTIONS(2795), - [anon_sym___alignof] = ACTIONS(2795), - [anon_sym__alignof] = ACTIONS(2795), - [anon_sym_alignof] = ACTIONS(2795), - [anon_sym__Alignof] = ACTIONS(2795), - [anon_sym_offsetof] = ACTIONS(2795), - [anon_sym__Generic] = ACTIONS(2795), - [anon_sym_typename] = ACTIONS(2795), - [anon_sym_asm] = ACTIONS(2795), - [anon_sym___asm__] = ACTIONS(2795), - [anon_sym___asm] = ACTIONS(2795), - [sym_number_literal] = ACTIONS(2793), - [anon_sym_L_SQUOTE] = ACTIONS(2793), - [anon_sym_u_SQUOTE] = ACTIONS(2793), - [anon_sym_U_SQUOTE] = ACTIONS(2793), - [anon_sym_u8_SQUOTE] = ACTIONS(2793), - [anon_sym_SQUOTE] = ACTIONS(2793), - [anon_sym_L_DQUOTE] = ACTIONS(2793), - [anon_sym_u_DQUOTE] = ACTIONS(2793), - [anon_sym_U_DQUOTE] = ACTIONS(2793), - [anon_sym_u8_DQUOTE] = ACTIONS(2793), - [anon_sym_DQUOTE] = ACTIONS(2793), - [sym_true] = ACTIONS(2795), - [sym_false] = ACTIONS(2795), - [anon_sym_NULL] = ACTIONS(2795), - [anon_sym_nullptr] = ACTIONS(2795), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2795), - [anon_sym_decltype] = ACTIONS(2795), - [anon_sym_explicit] = ACTIONS(2795), - [anon_sym_template] = ACTIONS(2795), - [anon_sym_operator] = ACTIONS(2795), - [anon_sym_try] = ACTIONS(2795), - [anon_sym_delete] = ACTIONS(2795), - [anon_sym_throw] = ACTIONS(2795), - [anon_sym_namespace] = ACTIONS(2795), - [anon_sym_static_assert] = ACTIONS(2795), - [anon_sym_concept] = ACTIONS(2795), - [anon_sym_co_return] = ACTIONS(2795), - [anon_sym_co_yield] = ACTIONS(2795), - [anon_sym_catch] = ACTIONS(2795), - [anon_sym_R_DQUOTE] = ACTIONS(2793), - [anon_sym_LR_DQUOTE] = ACTIONS(2793), - [anon_sym_uR_DQUOTE] = ACTIONS(2793), - [anon_sym_UR_DQUOTE] = ACTIONS(2793), - [anon_sym_u8R_DQUOTE] = ACTIONS(2793), - [anon_sym_co_await] = ACTIONS(2795), - [anon_sym_new] = ACTIONS(2795), - [anon_sym_requires] = ACTIONS(2795), - [anon_sym_CARET_CARET] = ACTIONS(2793), - [anon_sym_LBRACK_COLON] = ACTIONS(2793), - [sym_this] = ACTIONS(2795), + [STATE(490)] = { + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(7020), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(11305), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7912), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5230), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3784), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3786), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(545)] = { - [sym_else_clause] = STATE(721), - [sym_identifier] = ACTIONS(3618), - [aux_sym_preproc_include_token1] = ACTIONS(3618), - [aux_sym_preproc_def_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), - [sym_preproc_directive] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_BANG] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP_AMP] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym___attribute] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym___based] = ACTIONS(3618), - [anon_sym___cdecl] = ACTIONS(3618), - [anon_sym___clrcall] = ACTIONS(3618), - [anon_sym___stdcall] = ACTIONS(3618), - [anon_sym___fastcall] = ACTIONS(3618), - [anon_sym___thiscall] = ACTIONS(3618), - [anon_sym___vectorcall] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_RBRACE] = ACTIONS(3620), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym__Nonnull] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym__Alignas] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_else] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_case] = ACTIONS(3618), - [anon_sym_default] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_goto] = ACTIONS(3618), - [anon_sym___try] = ACTIONS(3618), - [anon_sym___leave] = ACTIONS(3618), - [anon_sym_not] = ACTIONS(3618), - [anon_sym_compl] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_sizeof] = ACTIONS(3618), - [anon_sym___alignof__] = ACTIONS(3618), - [anon_sym___alignof] = ACTIONS(3618), - [anon_sym__alignof] = ACTIONS(3618), - [anon_sym_alignof] = ACTIONS(3618), - [anon_sym__Alignof] = ACTIONS(3618), - [anon_sym_offsetof] = ACTIONS(3618), - [anon_sym__Generic] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [anon_sym_asm] = ACTIONS(3618), - [anon_sym___asm__] = ACTIONS(3618), - [anon_sym___asm] = ACTIONS(3618), - [sym_number_literal] = ACTIONS(3620), - [anon_sym_L_SQUOTE] = ACTIONS(3620), - [anon_sym_u_SQUOTE] = ACTIONS(3620), - [anon_sym_U_SQUOTE] = ACTIONS(3620), - [anon_sym_u8_SQUOTE] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3620), - [anon_sym_L_DQUOTE] = ACTIONS(3620), - [anon_sym_u_DQUOTE] = ACTIONS(3620), - [anon_sym_U_DQUOTE] = ACTIONS(3620), - [anon_sym_u8_DQUOTE] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(3620), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [anon_sym_NULL] = ACTIONS(3618), - [anon_sym_nullptr] = ACTIONS(3618), + [STATE(491)] = { + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(7038), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(11690), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7912), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5230), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3784), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3786), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_explicit] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_operator] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_static_assert] = ACTIONS(3618), - [anon_sym_concept] = ACTIONS(3618), - [anon_sym_co_return] = ACTIONS(3618), - [anon_sym_co_yield] = ACTIONS(3618), - [anon_sym_R_DQUOTE] = ACTIONS(3620), - [anon_sym_LR_DQUOTE] = ACTIONS(3620), - [anon_sym_uR_DQUOTE] = ACTIONS(3620), - [anon_sym_UR_DQUOTE] = ACTIONS(3620), - [anon_sym_u8R_DQUOTE] = ACTIONS(3620), - [anon_sym_co_await] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_requires] = ACTIONS(3618), - [anon_sym_CARET_CARET] = ACTIONS(3620), - [anon_sym_LBRACK_COLON] = ACTIONS(3620), - [sym_this] = ACTIONS(3618), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(546)] = { - [sym_else_clause] = STATE(559), - [sym_identifier] = ACTIONS(3618), - [aux_sym_preproc_include_token1] = ACTIONS(3618), - [aux_sym_preproc_def_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token2] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), - [sym_preproc_directive] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_BANG] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP_AMP] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym___attribute] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym___based] = ACTIONS(3618), - [anon_sym___cdecl] = ACTIONS(3618), - [anon_sym___clrcall] = ACTIONS(3618), - [anon_sym___stdcall] = ACTIONS(3618), - [anon_sym___fastcall] = ACTIONS(3618), - [anon_sym___thiscall] = ACTIONS(3618), - [anon_sym___vectorcall] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym__Nonnull] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym__Alignas] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_else] = ACTIONS(4202), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_case] = ACTIONS(3618), - [anon_sym_default] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_goto] = ACTIONS(3618), - [anon_sym___try] = ACTIONS(3618), - [anon_sym___leave] = ACTIONS(3618), - [anon_sym_not] = ACTIONS(3618), - [anon_sym_compl] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_sizeof] = ACTIONS(3618), - [anon_sym___alignof__] = ACTIONS(3618), - [anon_sym___alignof] = ACTIONS(3618), - [anon_sym__alignof] = ACTIONS(3618), - [anon_sym_alignof] = ACTIONS(3618), - [anon_sym__Alignof] = ACTIONS(3618), - [anon_sym_offsetof] = ACTIONS(3618), - [anon_sym__Generic] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [anon_sym_asm] = ACTIONS(3618), - [anon_sym___asm__] = ACTIONS(3618), - [anon_sym___asm] = ACTIONS(3618), - [sym_number_literal] = ACTIONS(3620), - [anon_sym_L_SQUOTE] = ACTIONS(3620), - [anon_sym_u_SQUOTE] = ACTIONS(3620), - [anon_sym_U_SQUOTE] = ACTIONS(3620), - [anon_sym_u8_SQUOTE] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3620), - [anon_sym_L_DQUOTE] = ACTIONS(3620), - [anon_sym_u_DQUOTE] = ACTIONS(3620), - [anon_sym_U_DQUOTE] = ACTIONS(3620), - [anon_sym_u8_DQUOTE] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(3620), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [anon_sym_NULL] = ACTIONS(3618), - [anon_sym_nullptr] = ACTIONS(3618), + [STATE(492)] = { + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(7050), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(11574), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7912), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5230), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3784), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3786), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_explicit] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_operator] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_static_assert] = ACTIONS(3618), - [anon_sym_concept] = ACTIONS(3618), - [anon_sym_co_return] = ACTIONS(3618), - [anon_sym_co_yield] = ACTIONS(3618), - [anon_sym_R_DQUOTE] = ACTIONS(3620), - [anon_sym_LR_DQUOTE] = ACTIONS(3620), - [anon_sym_uR_DQUOTE] = ACTIONS(3620), - [anon_sym_UR_DQUOTE] = ACTIONS(3620), - [anon_sym_u8R_DQUOTE] = ACTIONS(3620), - [anon_sym_co_await] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_requires] = ACTIONS(3618), - [anon_sym_CARET_CARET] = ACTIONS(3620), - [anon_sym_LBRACK_COLON] = ACTIONS(3620), - [sym_this] = ACTIONS(3618), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(547)] = { - [sym_identifier] = ACTIONS(3608), - [aux_sym_preproc_include_token1] = ACTIONS(3608), - [aux_sym_preproc_def_token1] = ACTIONS(3608), - [aux_sym_preproc_if_token1] = ACTIONS(3608), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3608), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3608), - [sym_preproc_directive] = ACTIONS(3608), - [anon_sym_LPAREN2] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3608), - [anon_sym_STAR] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3608), - [anon_sym_SEMI] = ACTIONS(3610), - [anon_sym___extension__] = ACTIONS(3608), - [anon_sym_typedef] = ACTIONS(3608), - [anon_sym_virtual] = ACTIONS(3608), - [anon_sym_extern] = ACTIONS(3608), - [anon_sym___attribute__] = ACTIONS(3608), - [anon_sym___attribute] = ACTIONS(3608), - [anon_sym_using] = ACTIONS(3608), - [anon_sym_COLON_COLON] = ACTIONS(3610), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3610), - [anon_sym___declspec] = ACTIONS(3608), - [anon_sym___based] = ACTIONS(3608), - [anon_sym___cdecl] = ACTIONS(3608), - [anon_sym___clrcall] = ACTIONS(3608), - [anon_sym___stdcall] = ACTIONS(3608), - [anon_sym___fastcall] = ACTIONS(3608), - [anon_sym___thiscall] = ACTIONS(3608), - [anon_sym___vectorcall] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_RBRACE] = ACTIONS(3610), - [anon_sym_signed] = ACTIONS(3608), - [anon_sym_unsigned] = ACTIONS(3608), - [anon_sym_long] = ACTIONS(3608), - [anon_sym_short] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_static] = ACTIONS(3608), - [anon_sym_register] = ACTIONS(3608), - [anon_sym_inline] = ACTIONS(3608), - [anon_sym___inline] = ACTIONS(3608), - [anon_sym___inline__] = ACTIONS(3608), - [anon_sym___forceinline] = ACTIONS(3608), - [anon_sym_thread_local] = ACTIONS(3608), - [anon_sym___thread] = ACTIONS(3608), - [anon_sym_const] = ACTIONS(3608), - [anon_sym_constexpr] = ACTIONS(3608), - [anon_sym_volatile] = ACTIONS(3608), - [anon_sym_restrict] = ACTIONS(3608), - [anon_sym___restrict__] = ACTIONS(3608), - [anon_sym__Atomic] = ACTIONS(3608), - [anon_sym__Noreturn] = ACTIONS(3608), - [anon_sym_noreturn] = ACTIONS(3608), - [anon_sym__Nonnull] = ACTIONS(3608), - [anon_sym_mutable] = ACTIONS(3608), - [anon_sym_constinit] = ACTIONS(3608), - [anon_sym_consteval] = ACTIONS(3608), - [anon_sym_alignas] = ACTIONS(3608), - [anon_sym__Alignas] = ACTIONS(3608), - [sym_primitive_type] = ACTIONS(3608), - [anon_sym_enum] = ACTIONS(3608), - [anon_sym_class] = ACTIONS(3608), - [anon_sym_struct] = ACTIONS(3608), - [anon_sym_union] = ACTIONS(3608), - [anon_sym_if] = ACTIONS(3608), - [anon_sym_else] = ACTIONS(3608), - [anon_sym_switch] = ACTIONS(3608), - [anon_sym_case] = ACTIONS(3608), - [anon_sym_default] = ACTIONS(3608), - [anon_sym_while] = ACTIONS(3608), - [anon_sym_do] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3608), - [anon_sym_return] = ACTIONS(3608), - [anon_sym_break] = ACTIONS(3608), - [anon_sym_continue] = ACTIONS(3608), - [anon_sym_goto] = ACTIONS(3608), - [anon_sym___try] = ACTIONS(3608), - [anon_sym___leave] = ACTIONS(3608), - [anon_sym_not] = ACTIONS(3608), - [anon_sym_compl] = ACTIONS(3608), - [anon_sym_DASH_DASH] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3610), - [anon_sym_sizeof] = ACTIONS(3608), - [anon_sym___alignof__] = ACTIONS(3608), - [anon_sym___alignof] = ACTIONS(3608), - [anon_sym__alignof] = ACTIONS(3608), - [anon_sym_alignof] = ACTIONS(3608), - [anon_sym__Alignof] = ACTIONS(3608), - [anon_sym_offsetof] = ACTIONS(3608), - [anon_sym__Generic] = ACTIONS(3608), - [anon_sym_typename] = ACTIONS(3608), - [anon_sym_asm] = ACTIONS(3608), - [anon_sym___asm__] = ACTIONS(3608), - [anon_sym___asm] = ACTIONS(3608), - [sym_number_literal] = ACTIONS(3610), - [anon_sym_L_SQUOTE] = ACTIONS(3610), - [anon_sym_u_SQUOTE] = ACTIONS(3610), - [anon_sym_U_SQUOTE] = ACTIONS(3610), - [anon_sym_u8_SQUOTE] = ACTIONS(3610), - [anon_sym_SQUOTE] = ACTIONS(3610), - [anon_sym_L_DQUOTE] = ACTIONS(3610), - [anon_sym_u_DQUOTE] = ACTIONS(3610), - [anon_sym_U_DQUOTE] = ACTIONS(3610), - [anon_sym_u8_DQUOTE] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [sym_true] = ACTIONS(3608), - [sym_false] = ACTIONS(3608), - [anon_sym_NULL] = ACTIONS(3608), - [anon_sym_nullptr] = ACTIONS(3608), + [STATE(493)] = { + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(7057), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(11531), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7912), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5230), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3784), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3786), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3608), - [anon_sym_decltype] = ACTIONS(3608), - [anon_sym_explicit] = ACTIONS(3608), - [anon_sym_template] = ACTIONS(3608), - [anon_sym_operator] = ACTIONS(3608), - [anon_sym_try] = ACTIONS(3608), - [anon_sym_delete] = ACTIONS(3608), - [anon_sym_throw] = ACTIONS(3608), - [anon_sym_namespace] = ACTIONS(3608), - [anon_sym_static_assert] = ACTIONS(3608), - [anon_sym_concept] = ACTIONS(3608), - [anon_sym_co_return] = ACTIONS(3608), - [anon_sym_co_yield] = ACTIONS(3608), - [anon_sym_catch] = ACTIONS(3608), - [anon_sym_R_DQUOTE] = ACTIONS(3610), - [anon_sym_LR_DQUOTE] = ACTIONS(3610), - [anon_sym_uR_DQUOTE] = ACTIONS(3610), - [anon_sym_UR_DQUOTE] = ACTIONS(3610), - [anon_sym_u8R_DQUOTE] = ACTIONS(3610), - [anon_sym_co_await] = ACTIONS(3608), - [anon_sym_new] = ACTIONS(3608), - [anon_sym_requires] = ACTIONS(3608), - [anon_sym_CARET_CARET] = ACTIONS(3610), - [anon_sym_LBRACK_COLON] = ACTIONS(3610), - [sym_this] = ACTIONS(3608), - }, - [STATE(548)] = { - [sym_identifier] = ACTIONS(2803), - [aux_sym_preproc_include_token1] = ACTIONS(2803), - [aux_sym_preproc_def_token1] = ACTIONS(2803), - [aux_sym_preproc_if_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2803), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2803), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym___extension__] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2803), - [anon_sym_virtual] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym___attribute__] = ACTIONS(2803), - [anon_sym___attribute] = ACTIONS(2803), - [anon_sym_using] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2803), - [anon_sym___based] = ACTIONS(2803), - [anon_sym___cdecl] = ACTIONS(2803), - [anon_sym___clrcall] = ACTIONS(2803), - [anon_sym___stdcall] = ACTIONS(2803), - [anon_sym___fastcall] = ACTIONS(2803), - [anon_sym___thiscall] = ACTIONS(2803), - [anon_sym___vectorcall] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_signed] = ACTIONS(2803), - [anon_sym_unsigned] = ACTIONS(2803), - [anon_sym_long] = ACTIONS(2803), - [anon_sym_short] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_register] = ACTIONS(2803), - [anon_sym_inline] = ACTIONS(2803), - [anon_sym___inline] = ACTIONS(2803), - [anon_sym___inline__] = ACTIONS(2803), - [anon_sym___forceinline] = ACTIONS(2803), - [anon_sym_thread_local] = ACTIONS(2803), - [anon_sym___thread] = ACTIONS(2803), - [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__Nonnull] = ACTIONS(2803), - [anon_sym_mutable] = ACTIONS(2803), - [anon_sym_constinit] = ACTIONS(2803), - [anon_sym_consteval] = ACTIONS(2803), - [anon_sym_alignas] = ACTIONS(2803), - [anon_sym__Alignas] = ACTIONS(2803), - [sym_primitive_type] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_if] = ACTIONS(2803), - [anon_sym_else] = ACTIONS(2803), - [anon_sym_switch] = ACTIONS(2803), - [anon_sym_case] = ACTIONS(2803), - [anon_sym_default] = ACTIONS(2803), - [anon_sym_while] = ACTIONS(2803), - [anon_sym_do] = ACTIONS(2803), - [anon_sym_for] = ACTIONS(2803), - [anon_sym_return] = ACTIONS(2803), - [anon_sym_break] = ACTIONS(2803), - [anon_sym_continue] = ACTIONS(2803), - [anon_sym_goto] = ACTIONS(2803), - [anon_sym___try] = ACTIONS(2803), - [anon_sym___leave] = ACTIONS(2803), - [anon_sym_not] = ACTIONS(2803), - [anon_sym_compl] = ACTIONS(2803), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_sizeof] = ACTIONS(2803), - [anon_sym___alignof__] = ACTIONS(2803), - [anon_sym___alignof] = ACTIONS(2803), - [anon_sym__alignof] = ACTIONS(2803), - [anon_sym_alignof] = ACTIONS(2803), - [anon_sym__Alignof] = ACTIONS(2803), - [anon_sym_offsetof] = ACTIONS(2803), - [anon_sym__Generic] = ACTIONS(2803), - [anon_sym_typename] = ACTIONS(2803), - [anon_sym_asm] = ACTIONS(2803), - [anon_sym___asm__] = ACTIONS(2803), - [anon_sym___asm] = ACTIONS(2803), - [sym_number_literal] = ACTIONS(2801), - [anon_sym_L_SQUOTE] = ACTIONS(2801), - [anon_sym_u_SQUOTE] = ACTIONS(2801), - [anon_sym_U_SQUOTE] = ACTIONS(2801), - [anon_sym_u8_SQUOTE] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2801), - [anon_sym_L_DQUOTE] = ACTIONS(2801), - [anon_sym_u_DQUOTE] = ACTIONS(2801), - [anon_sym_U_DQUOTE] = ACTIONS(2801), - [anon_sym_u8_DQUOTE] = ACTIONS(2801), - [anon_sym_DQUOTE] = ACTIONS(2801), - [sym_true] = ACTIONS(2803), - [sym_false] = ACTIONS(2803), - [anon_sym_NULL] = ACTIONS(2803), - [anon_sym_nullptr] = ACTIONS(2803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2803), - [anon_sym_decltype] = ACTIONS(2803), - [anon_sym_explicit] = ACTIONS(2803), - [anon_sym_template] = ACTIONS(2803), - [anon_sym_operator] = ACTIONS(2803), - [anon_sym_try] = ACTIONS(2803), - [anon_sym_delete] = ACTIONS(2803), - [anon_sym_throw] = ACTIONS(2803), - [anon_sym_namespace] = ACTIONS(2803), - [anon_sym_static_assert] = ACTIONS(2803), - [anon_sym_concept] = ACTIONS(2803), - [anon_sym_co_return] = ACTIONS(2803), - [anon_sym_co_yield] = ACTIONS(2803), - [anon_sym_catch] = ACTIONS(2803), - [anon_sym_R_DQUOTE] = ACTIONS(2801), - [anon_sym_LR_DQUOTE] = ACTIONS(2801), - [anon_sym_uR_DQUOTE] = ACTIONS(2801), - [anon_sym_UR_DQUOTE] = ACTIONS(2801), - [anon_sym_u8R_DQUOTE] = ACTIONS(2801), - [anon_sym_co_await] = ACTIONS(2803), - [anon_sym_new] = ACTIONS(2803), - [anon_sym_requires] = ACTIONS(2803), - [anon_sym_CARET_CARET] = ACTIONS(2801), - [anon_sym_LBRACK_COLON] = ACTIONS(2801), - [sym_this] = ACTIONS(2803), - }, - [STATE(549)] = { - [ts_builtin_sym_end] = ACTIONS(4088), - [sym_identifier] = ACTIONS(4086), - [aux_sym_preproc_include_token1] = ACTIONS(4086), - [aux_sym_preproc_def_token1] = ACTIONS(4086), - [aux_sym_preproc_if_token1] = ACTIONS(4086), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4086), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4086), - [sym_preproc_directive] = ACTIONS(4086), - [anon_sym_LPAREN2] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_TILDE] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4086), - [anon_sym_PLUS] = ACTIONS(4086), - [anon_sym_STAR] = ACTIONS(4088), - [anon_sym_AMP_AMP] = ACTIONS(4088), - [anon_sym_AMP] = ACTIONS(4086), - [anon_sym_SEMI] = ACTIONS(4088), - [anon_sym___extension__] = ACTIONS(4086), - [anon_sym_typedef] = ACTIONS(4086), - [anon_sym_virtual] = ACTIONS(4086), - [anon_sym_extern] = ACTIONS(4086), - [anon_sym___attribute__] = ACTIONS(4086), - [anon_sym___attribute] = ACTIONS(4086), - [anon_sym_using] = ACTIONS(4086), - [anon_sym_COLON_COLON] = ACTIONS(4088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4088), - [anon_sym___declspec] = ACTIONS(4086), - [anon_sym___based] = ACTIONS(4086), - [anon_sym___cdecl] = ACTIONS(4086), - [anon_sym___clrcall] = ACTIONS(4086), - [anon_sym___stdcall] = ACTIONS(4086), - [anon_sym___fastcall] = ACTIONS(4086), - [anon_sym___thiscall] = ACTIONS(4086), - [anon_sym___vectorcall] = ACTIONS(4086), - [anon_sym_LBRACE] = ACTIONS(4088), - [anon_sym_signed] = ACTIONS(4086), - [anon_sym_unsigned] = ACTIONS(4086), - [anon_sym_long] = ACTIONS(4086), - [anon_sym_short] = ACTIONS(4086), - [anon_sym_LBRACK] = ACTIONS(4086), - [anon_sym_static] = ACTIONS(4086), - [anon_sym_register] = ACTIONS(4086), - [anon_sym_inline] = ACTIONS(4086), - [anon_sym___inline] = ACTIONS(4086), - [anon_sym___inline__] = ACTIONS(4086), - [anon_sym___forceinline] = ACTIONS(4086), - [anon_sym_thread_local] = ACTIONS(4086), - [anon_sym___thread] = ACTIONS(4086), - [anon_sym_const] = ACTIONS(4086), - [anon_sym_constexpr] = ACTIONS(4086), - [anon_sym_volatile] = ACTIONS(4086), - [anon_sym_restrict] = ACTIONS(4086), - [anon_sym___restrict__] = ACTIONS(4086), - [anon_sym__Atomic] = ACTIONS(4086), - [anon_sym__Noreturn] = ACTIONS(4086), - [anon_sym_noreturn] = ACTIONS(4086), - [anon_sym__Nonnull] = ACTIONS(4086), - [anon_sym_mutable] = ACTIONS(4086), - [anon_sym_constinit] = ACTIONS(4086), - [anon_sym_consteval] = ACTIONS(4086), - [anon_sym_alignas] = ACTIONS(4086), - [anon_sym__Alignas] = ACTIONS(4086), - [sym_primitive_type] = ACTIONS(4086), - [anon_sym_enum] = ACTIONS(4086), - [anon_sym_class] = ACTIONS(4086), - [anon_sym_struct] = ACTIONS(4086), - [anon_sym_union] = ACTIONS(4086), - [anon_sym_if] = ACTIONS(4086), - [anon_sym_switch] = ACTIONS(4086), - [anon_sym_case] = ACTIONS(4086), - [anon_sym_default] = ACTIONS(4086), - [anon_sym_while] = ACTIONS(4086), - [anon_sym_do] = ACTIONS(4086), - [anon_sym_for] = ACTIONS(4086), - [anon_sym_return] = ACTIONS(4086), - [anon_sym_break] = ACTIONS(4086), - [anon_sym_continue] = ACTIONS(4086), - [anon_sym_goto] = ACTIONS(4086), - [anon_sym_not] = ACTIONS(4086), - [anon_sym_compl] = ACTIONS(4086), - [anon_sym_DASH_DASH] = ACTIONS(4088), - [anon_sym_PLUS_PLUS] = ACTIONS(4088), - [anon_sym_sizeof] = ACTIONS(4086), - [anon_sym___alignof__] = ACTIONS(4086), - [anon_sym___alignof] = ACTIONS(4086), - [anon_sym__alignof] = ACTIONS(4086), - [anon_sym_alignof] = ACTIONS(4086), - [anon_sym__Alignof] = ACTIONS(4086), - [anon_sym_offsetof] = ACTIONS(4086), - [anon_sym__Generic] = ACTIONS(4086), - [anon_sym_typename] = ACTIONS(4086), - [anon_sym_asm] = ACTIONS(4086), - [anon_sym___asm__] = ACTIONS(4086), - [anon_sym___asm] = ACTIONS(4086), - [sym_number_literal] = ACTIONS(4088), - [anon_sym_L_SQUOTE] = ACTIONS(4088), - [anon_sym_u_SQUOTE] = ACTIONS(4088), - [anon_sym_U_SQUOTE] = ACTIONS(4088), - [anon_sym_u8_SQUOTE] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4088), - [anon_sym_L_DQUOTE] = ACTIONS(4088), - [anon_sym_u_DQUOTE] = ACTIONS(4088), - [anon_sym_U_DQUOTE] = ACTIONS(4088), - [anon_sym_u8_DQUOTE] = ACTIONS(4088), - [anon_sym_DQUOTE] = ACTIONS(4088), - [sym_true] = ACTIONS(4086), - [sym_false] = ACTIONS(4086), - [anon_sym_NULL] = ACTIONS(4086), - [anon_sym_nullptr] = ACTIONS(4086), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4086), - [anon_sym_decltype] = ACTIONS(4086), - [anon_sym_explicit] = ACTIONS(4086), - [anon_sym_export] = ACTIONS(4086), - [anon_sym_module] = ACTIONS(4086), - [anon_sym_import] = ACTIONS(4086), - [anon_sym_template] = ACTIONS(4086), - [anon_sym_operator] = ACTIONS(4086), - [anon_sym_try] = ACTIONS(4086), - [anon_sym_delete] = ACTIONS(4086), - [anon_sym_throw] = ACTIONS(4086), - [anon_sym_namespace] = ACTIONS(4086), - [anon_sym_static_assert] = ACTIONS(4086), - [anon_sym_concept] = ACTIONS(4086), - [anon_sym_co_return] = ACTIONS(4086), - [anon_sym_co_yield] = ACTIONS(4086), - [anon_sym_R_DQUOTE] = ACTIONS(4088), - [anon_sym_LR_DQUOTE] = ACTIONS(4088), - [anon_sym_uR_DQUOTE] = ACTIONS(4088), - [anon_sym_UR_DQUOTE] = ACTIONS(4088), - [anon_sym_u8R_DQUOTE] = ACTIONS(4088), - [anon_sym_co_await] = ACTIONS(4086), - [anon_sym_new] = ACTIONS(4086), - [anon_sym_requires] = ACTIONS(4086), - [anon_sym_CARET_CARET] = ACTIONS(4088), - [anon_sym_LBRACK_COLON] = ACTIONS(4088), - [sym_this] = ACTIONS(4086), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(550)] = { - [sym_identifier] = ACTIONS(3626), - [aux_sym_preproc_include_token1] = ACTIONS(3626), - [aux_sym_preproc_def_token1] = ACTIONS(3626), - [aux_sym_preproc_if_token1] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), - [sym_preproc_directive] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3628), - [anon_sym_BANG] = ACTIONS(3628), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym___extension__] = ACTIONS(3626), - [anon_sym_typedef] = ACTIONS(3626), - [anon_sym_virtual] = ACTIONS(3626), - [anon_sym_extern] = ACTIONS(3626), - [anon_sym___attribute__] = ACTIONS(3626), - [anon_sym___attribute] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), - [anon_sym___declspec] = ACTIONS(3626), - [anon_sym___based] = ACTIONS(3626), - [anon_sym___cdecl] = ACTIONS(3626), - [anon_sym___clrcall] = ACTIONS(3626), - [anon_sym___stdcall] = ACTIONS(3626), - [anon_sym___fastcall] = ACTIONS(3626), - [anon_sym___thiscall] = ACTIONS(3626), - [anon_sym___vectorcall] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_RBRACE] = ACTIONS(3628), - [anon_sym_signed] = ACTIONS(3626), - [anon_sym_unsigned] = ACTIONS(3626), - [anon_sym_long] = ACTIONS(3626), - [anon_sym_short] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_register] = ACTIONS(3626), - [anon_sym_inline] = ACTIONS(3626), - [anon_sym___inline] = ACTIONS(3626), - [anon_sym___inline__] = ACTIONS(3626), - [anon_sym___forceinline] = ACTIONS(3626), - [anon_sym_thread_local] = ACTIONS(3626), - [anon_sym___thread] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_constexpr] = ACTIONS(3626), - [anon_sym_volatile] = ACTIONS(3626), - [anon_sym_restrict] = ACTIONS(3626), - [anon_sym___restrict__] = ACTIONS(3626), - [anon_sym__Atomic] = ACTIONS(3626), - [anon_sym__Noreturn] = ACTIONS(3626), - [anon_sym_noreturn] = ACTIONS(3626), - [anon_sym__Nonnull] = ACTIONS(3626), - [anon_sym_mutable] = ACTIONS(3626), - [anon_sym_constinit] = ACTIONS(3626), - [anon_sym_consteval] = ACTIONS(3626), - [anon_sym_alignas] = ACTIONS(3626), - [anon_sym__Alignas] = ACTIONS(3626), - [sym_primitive_type] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_struct] = ACTIONS(3626), - [anon_sym_union] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_goto] = ACTIONS(3626), - [anon_sym___try] = ACTIONS(3626), - [anon_sym___leave] = ACTIONS(3626), - [anon_sym_not] = ACTIONS(3626), - [anon_sym_compl] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_sizeof] = ACTIONS(3626), - [anon_sym___alignof__] = ACTIONS(3626), - [anon_sym___alignof] = ACTIONS(3626), - [anon_sym__alignof] = ACTIONS(3626), - [anon_sym_alignof] = ACTIONS(3626), - [anon_sym__Alignof] = ACTIONS(3626), - [anon_sym_offsetof] = ACTIONS(3626), - [anon_sym__Generic] = ACTIONS(3626), - [anon_sym_typename] = ACTIONS(3626), - [anon_sym_asm] = ACTIONS(3626), - [anon_sym___asm__] = ACTIONS(3626), - [anon_sym___asm] = ACTIONS(3626), - [sym_number_literal] = ACTIONS(3628), - [anon_sym_L_SQUOTE] = ACTIONS(3628), - [anon_sym_u_SQUOTE] = ACTIONS(3628), - [anon_sym_U_SQUOTE] = ACTIONS(3628), - [anon_sym_u8_SQUOTE] = ACTIONS(3628), - [anon_sym_SQUOTE] = ACTIONS(3628), - [anon_sym_L_DQUOTE] = ACTIONS(3628), - [anon_sym_u_DQUOTE] = ACTIONS(3628), - [anon_sym_U_DQUOTE] = ACTIONS(3628), - [anon_sym_u8_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE] = ACTIONS(3628), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [anon_sym_NULL] = ACTIONS(3626), - [anon_sym_nullptr] = ACTIONS(3626), + [STATE(494)] = { + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(7060), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(10882), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7912), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5230), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3784), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3786), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3626), - [anon_sym_decltype] = ACTIONS(3626), - [anon_sym_explicit] = ACTIONS(3626), - [anon_sym_template] = ACTIONS(3626), - [anon_sym_operator] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_static_assert] = ACTIONS(3626), - [anon_sym_concept] = ACTIONS(3626), - [anon_sym_co_return] = ACTIONS(3626), - [anon_sym_co_yield] = ACTIONS(3626), - [anon_sym_R_DQUOTE] = ACTIONS(3628), - [anon_sym_LR_DQUOTE] = ACTIONS(3628), - [anon_sym_uR_DQUOTE] = ACTIONS(3628), - [anon_sym_UR_DQUOTE] = ACTIONS(3628), - [anon_sym_u8R_DQUOTE] = ACTIONS(3628), - [anon_sym_co_await] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_requires] = ACTIONS(3626), - [anon_sym_CARET_CARET] = ACTIONS(3628), - [anon_sym_LBRACK_COLON] = ACTIONS(3628), - [sym_this] = ACTIONS(3626), - }, - [STATE(551)] = { - [sym_preproc_def] = STATE(551), - [sym_preproc_function_def] = STATE(551), - [sym_preproc_call] = STATE(551), - [sym_preproc_if_in_field_declaration_list] = STATE(551), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(551), - [sym_type_definition] = STATE(551), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(8025), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8578), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(551), - [sym_field_declaration] = STATE(551), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2417), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(551), - [sym_operator_cast] = STATE(9064), - [sym_inline_method_definition] = STATE(551), - [sym__constructor_specifiers] = STATE(2417), - [sym_operator_cast_definition] = STATE(551), - [sym_operator_cast_declaration] = STATE(551), - [sym_constructor_or_destructor_definition] = STATE(551), - [sym_constructor_or_destructor_declaration] = STATE(551), - [sym_friend_declaration] = STATE(551), - [sym_access_specifier] = STATE(10717), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(551), - [sym_alias_declaration] = STATE(551), - [sym_static_assert_declaration] = STATE(551), - [sym_consteval_block_declaration] = STATE(551), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9064), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(551), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9390), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2417), - [sym_identifier] = ACTIONS(3736), - [aux_sym_preproc_def_token1] = ACTIONS(4212), - [aux_sym_preproc_if_token1] = ACTIONS(4215), - [aux_sym_preproc_if_token2] = ACTIONS(3745), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4218), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4218), - [sym_preproc_directive] = ACTIONS(4221), - [anon_sym_LPAREN2] = ACTIONS(3753), - [anon_sym_TILDE] = ACTIONS(3756), - [anon_sym_STAR] = ACTIONS(3759), - [anon_sym_AMP_AMP] = ACTIONS(3762), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_SEMI] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4227), - [anon_sym_typedef] = ACTIONS(4230), - [anon_sym_virtual] = ACTIONS(3777), - [anon_sym_extern] = ACTIONS(3780), - [anon_sym___attribute__] = ACTIONS(3783), - [anon_sym___attribute] = ACTIONS(3783), - [anon_sym_using] = ACTIONS(4233), - [anon_sym_COLON_COLON] = ACTIONS(3789), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3792), - [anon_sym___declspec] = ACTIONS(3795), - [anon_sym___based] = ACTIONS(3798), - [anon_sym_signed] = ACTIONS(3801), - [anon_sym_unsigned] = ACTIONS(3801), - [anon_sym_long] = ACTIONS(3801), - [anon_sym_short] = ACTIONS(3801), - [anon_sym_LBRACK] = ACTIONS(3804), - [anon_sym_static] = ACTIONS(3780), - [anon_sym_register] = ACTIONS(3780), - [anon_sym_inline] = ACTIONS(3780), - [anon_sym___inline] = ACTIONS(3780), - [anon_sym___inline__] = ACTIONS(3780), - [anon_sym___forceinline] = ACTIONS(3780), - [anon_sym_thread_local] = ACTIONS(3780), - [anon_sym___thread] = ACTIONS(3780), - [anon_sym_const] = ACTIONS(3807), - [anon_sym_constexpr] = ACTIONS(4236), - [anon_sym_volatile] = ACTIONS(3807), - [anon_sym_restrict] = ACTIONS(3807), - [anon_sym___restrict__] = ACTIONS(3807), - [anon_sym__Atomic] = ACTIONS(3807), - [anon_sym__Noreturn] = ACTIONS(3807), - [anon_sym_noreturn] = ACTIONS(3807), - [anon_sym__Nonnull] = ACTIONS(3807), - [anon_sym_mutable] = ACTIONS(3807), - [anon_sym_constinit] = ACTIONS(3807), - [anon_sym_consteval] = ACTIONS(4239), - [anon_sym_alignas] = ACTIONS(3816), - [anon_sym__Alignas] = ACTIONS(3816), - [sym_primitive_type] = ACTIONS(3819), - [anon_sym_enum] = ACTIONS(3822), - [anon_sym_class] = ACTIONS(3825), - [anon_sym_struct] = ACTIONS(3828), - [anon_sym_union] = ACTIONS(3831), - [anon_sym_typename] = ACTIONS(3834), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3837), - [anon_sym_decltype] = ACTIONS(3840), - [anon_sym_explicit] = ACTIONS(3843), - [anon_sym_private] = ACTIONS(3846), - [anon_sym_template] = ACTIONS(4242), - [anon_sym_operator] = ACTIONS(3852), - [anon_sym_friend] = ACTIONS(4245), - [anon_sym_public] = ACTIONS(3846), - [anon_sym_protected] = ACTIONS(3846), - [anon_sym_static_assert] = ACTIONS(4248), - [anon_sym_LBRACK_COLON] = ACTIONS(3861), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(552)] = { - [sym_identifier] = ACTIONS(3622), - [aux_sym_preproc_include_token1] = ACTIONS(3622), - [aux_sym_preproc_def_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token2] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), - [sym_preproc_directive] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3622), - [anon_sym_PLUS] = ACTIONS(3622), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP_AMP] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym___attribute] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym___based] = ACTIONS(3622), - [anon_sym___cdecl] = ACTIONS(3622), - [anon_sym___clrcall] = ACTIONS(3622), - [anon_sym___stdcall] = ACTIONS(3622), - [anon_sym___fastcall] = ACTIONS(3622), - [anon_sym___thiscall] = ACTIONS(3622), - [anon_sym___vectorcall] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3624), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym__Nonnull] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym__Alignas] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_if] = ACTIONS(3622), - [anon_sym_else] = ACTIONS(3622), - [anon_sym_switch] = ACTIONS(3622), - [anon_sym_case] = ACTIONS(3622), - [anon_sym_default] = ACTIONS(3622), - [anon_sym_while] = ACTIONS(3622), - [anon_sym_do] = ACTIONS(3622), - [anon_sym_for] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3622), - [anon_sym_break] = ACTIONS(3622), - [anon_sym_continue] = ACTIONS(3622), - [anon_sym_goto] = ACTIONS(3622), - [anon_sym___try] = ACTIONS(3622), - [anon_sym___leave] = ACTIONS(3622), - [anon_sym_not] = ACTIONS(3622), - [anon_sym_compl] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3624), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_sizeof] = ACTIONS(3622), - [anon_sym___alignof__] = ACTIONS(3622), - [anon_sym___alignof] = ACTIONS(3622), - [anon_sym__alignof] = ACTIONS(3622), - [anon_sym_alignof] = ACTIONS(3622), - [anon_sym__Alignof] = ACTIONS(3622), - [anon_sym_offsetof] = ACTIONS(3622), - [anon_sym__Generic] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [anon_sym_asm] = ACTIONS(3622), - [anon_sym___asm__] = ACTIONS(3622), - [anon_sym___asm] = ACTIONS(3622), - [sym_number_literal] = ACTIONS(3624), - [anon_sym_L_SQUOTE] = ACTIONS(3624), - [anon_sym_u_SQUOTE] = ACTIONS(3624), - [anon_sym_U_SQUOTE] = ACTIONS(3624), - [anon_sym_u8_SQUOTE] = ACTIONS(3624), - [anon_sym_SQUOTE] = ACTIONS(3624), - [anon_sym_L_DQUOTE] = ACTIONS(3624), - [anon_sym_u_DQUOTE] = ACTIONS(3624), - [anon_sym_U_DQUOTE] = ACTIONS(3624), - [anon_sym_u8_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [sym_true] = ACTIONS(3622), - [sym_false] = ACTIONS(3622), - [anon_sym_NULL] = ACTIONS(3622), - [anon_sym_nullptr] = ACTIONS(3622), + [STATE(495)] = { + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(7062), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(11175), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7912), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5230), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3784), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3786), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_explicit] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_operator] = ACTIONS(3622), - [anon_sym_try] = ACTIONS(3622), - [anon_sym_delete] = ACTIONS(3622), - [anon_sym_throw] = ACTIONS(3622), - [anon_sym_namespace] = ACTIONS(3622), - [anon_sym_static_assert] = ACTIONS(3622), - [anon_sym_concept] = ACTIONS(3622), - [anon_sym_co_return] = ACTIONS(3622), - [anon_sym_co_yield] = ACTIONS(3622), - [anon_sym_R_DQUOTE] = ACTIONS(3624), - [anon_sym_LR_DQUOTE] = ACTIONS(3624), - [anon_sym_uR_DQUOTE] = ACTIONS(3624), - [anon_sym_UR_DQUOTE] = ACTIONS(3624), - [anon_sym_u8R_DQUOTE] = ACTIONS(3624), - [anon_sym_co_await] = ACTIONS(3622), - [anon_sym_new] = ACTIONS(3622), - [anon_sym_requires] = ACTIONS(3622), - [anon_sym_CARET_CARET] = ACTIONS(3624), - [anon_sym_LBRACK_COLON] = ACTIONS(3624), - [sym_this] = ACTIONS(3622), - }, - [STATE(553)] = { - [ts_builtin_sym_end] = ACTIONS(4012), - [sym_identifier] = ACTIONS(4010), - [aux_sym_preproc_include_token1] = ACTIONS(4010), - [aux_sym_preproc_def_token1] = ACTIONS(4010), - [aux_sym_preproc_if_token1] = ACTIONS(4010), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4010), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4010), - [sym_preproc_directive] = ACTIONS(4010), - [anon_sym_LPAREN2] = ACTIONS(4012), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_TILDE] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4012), - [anon_sym_AMP_AMP] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4012), - [anon_sym___extension__] = ACTIONS(4010), - [anon_sym_typedef] = ACTIONS(4010), - [anon_sym_virtual] = ACTIONS(4010), - [anon_sym_extern] = ACTIONS(4010), - [anon_sym___attribute__] = ACTIONS(4010), - [anon_sym___attribute] = ACTIONS(4010), - [anon_sym_using] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4012), - [anon_sym___declspec] = ACTIONS(4010), - [anon_sym___based] = ACTIONS(4010), - [anon_sym___cdecl] = ACTIONS(4010), - [anon_sym___clrcall] = ACTIONS(4010), - [anon_sym___stdcall] = ACTIONS(4010), - [anon_sym___fastcall] = ACTIONS(4010), - [anon_sym___thiscall] = ACTIONS(4010), - [anon_sym___vectorcall] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_signed] = ACTIONS(4010), - [anon_sym_unsigned] = ACTIONS(4010), - [anon_sym_long] = ACTIONS(4010), - [anon_sym_short] = ACTIONS(4010), - [anon_sym_LBRACK] = ACTIONS(4010), - [anon_sym_static] = ACTIONS(4010), - [anon_sym_register] = ACTIONS(4010), - [anon_sym_inline] = ACTIONS(4010), - [anon_sym___inline] = ACTIONS(4010), - [anon_sym___inline__] = ACTIONS(4010), - [anon_sym___forceinline] = ACTIONS(4010), - [anon_sym_thread_local] = ACTIONS(4010), - [anon_sym___thread] = ACTIONS(4010), - [anon_sym_const] = ACTIONS(4010), - [anon_sym_constexpr] = ACTIONS(4010), - [anon_sym_volatile] = ACTIONS(4010), - [anon_sym_restrict] = ACTIONS(4010), - [anon_sym___restrict__] = ACTIONS(4010), - [anon_sym__Atomic] = ACTIONS(4010), - [anon_sym__Noreturn] = ACTIONS(4010), - [anon_sym_noreturn] = ACTIONS(4010), - [anon_sym__Nonnull] = ACTIONS(4010), - [anon_sym_mutable] = ACTIONS(4010), - [anon_sym_constinit] = ACTIONS(4010), - [anon_sym_consteval] = ACTIONS(4010), - [anon_sym_alignas] = ACTIONS(4010), - [anon_sym__Alignas] = ACTIONS(4010), - [sym_primitive_type] = ACTIONS(4010), - [anon_sym_enum] = ACTIONS(4010), - [anon_sym_class] = ACTIONS(4010), - [anon_sym_struct] = ACTIONS(4010), - [anon_sym_union] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_switch] = ACTIONS(4010), - [anon_sym_case] = ACTIONS(4010), - [anon_sym_default] = ACTIONS(4010), - [anon_sym_while] = ACTIONS(4010), - [anon_sym_do] = ACTIONS(4010), - [anon_sym_for] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_goto] = ACTIONS(4010), - [anon_sym_not] = ACTIONS(4010), - [anon_sym_compl] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4012), - [anon_sym_sizeof] = ACTIONS(4010), - [anon_sym___alignof__] = ACTIONS(4010), - [anon_sym___alignof] = ACTIONS(4010), - [anon_sym__alignof] = ACTIONS(4010), - [anon_sym_alignof] = ACTIONS(4010), - [anon_sym__Alignof] = ACTIONS(4010), - [anon_sym_offsetof] = ACTIONS(4010), - [anon_sym__Generic] = ACTIONS(4010), - [anon_sym_typename] = ACTIONS(4010), - [anon_sym_asm] = ACTIONS(4010), - [anon_sym___asm__] = ACTIONS(4010), - [anon_sym___asm] = ACTIONS(4010), - [sym_number_literal] = ACTIONS(4012), - [anon_sym_L_SQUOTE] = ACTIONS(4012), - [anon_sym_u_SQUOTE] = ACTIONS(4012), - [anon_sym_U_SQUOTE] = ACTIONS(4012), - [anon_sym_u8_SQUOTE] = ACTIONS(4012), - [anon_sym_SQUOTE] = ACTIONS(4012), - [anon_sym_L_DQUOTE] = ACTIONS(4012), - [anon_sym_u_DQUOTE] = ACTIONS(4012), - [anon_sym_U_DQUOTE] = ACTIONS(4012), - [anon_sym_u8_DQUOTE] = ACTIONS(4012), - [anon_sym_DQUOTE] = ACTIONS(4012), - [sym_true] = ACTIONS(4010), - [sym_false] = ACTIONS(4010), - [anon_sym_NULL] = ACTIONS(4010), - [anon_sym_nullptr] = ACTIONS(4010), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4010), - [anon_sym_decltype] = ACTIONS(4010), - [anon_sym_explicit] = ACTIONS(4010), - [anon_sym_export] = ACTIONS(4010), - [anon_sym_module] = ACTIONS(4010), - [anon_sym_import] = ACTIONS(4010), - [anon_sym_template] = ACTIONS(4010), - [anon_sym_operator] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_delete] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_namespace] = ACTIONS(4010), - [anon_sym_static_assert] = ACTIONS(4010), - [anon_sym_concept] = ACTIONS(4010), - [anon_sym_co_return] = ACTIONS(4010), - [anon_sym_co_yield] = ACTIONS(4010), - [anon_sym_R_DQUOTE] = ACTIONS(4012), - [anon_sym_LR_DQUOTE] = ACTIONS(4012), - [anon_sym_uR_DQUOTE] = ACTIONS(4012), - [anon_sym_UR_DQUOTE] = ACTIONS(4012), - [anon_sym_u8R_DQUOTE] = ACTIONS(4012), - [anon_sym_co_await] = ACTIONS(4010), - [anon_sym_new] = ACTIONS(4010), - [anon_sym_requires] = ACTIONS(4010), - [anon_sym_CARET_CARET] = ACTIONS(4012), - [anon_sym_LBRACK_COLON] = ACTIONS(4012), - [sym_this] = ACTIONS(4010), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(554)] = { - [ts_builtin_sym_end] = ACTIONS(4016), - [sym_identifier] = ACTIONS(4014), - [aux_sym_preproc_include_token1] = ACTIONS(4014), - [aux_sym_preproc_def_token1] = ACTIONS(4014), - [aux_sym_preproc_if_token1] = ACTIONS(4014), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4014), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4014), - [sym_preproc_directive] = ACTIONS(4014), - [anon_sym_LPAREN2] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_TILDE] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4014), - [anon_sym_STAR] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4014), - [anon_sym_SEMI] = ACTIONS(4016), - [anon_sym___extension__] = ACTIONS(4014), - [anon_sym_typedef] = ACTIONS(4014), - [anon_sym_virtual] = ACTIONS(4014), - [anon_sym_extern] = ACTIONS(4014), - [anon_sym___attribute__] = ACTIONS(4014), - [anon_sym___attribute] = ACTIONS(4014), - [anon_sym_using] = ACTIONS(4014), - [anon_sym_COLON_COLON] = ACTIONS(4016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4016), - [anon_sym___declspec] = ACTIONS(4014), - [anon_sym___based] = ACTIONS(4014), - [anon_sym___cdecl] = ACTIONS(4014), - [anon_sym___clrcall] = ACTIONS(4014), - [anon_sym___stdcall] = ACTIONS(4014), - [anon_sym___fastcall] = ACTIONS(4014), - [anon_sym___thiscall] = ACTIONS(4014), - [anon_sym___vectorcall] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4016), - [anon_sym_signed] = ACTIONS(4014), - [anon_sym_unsigned] = ACTIONS(4014), - [anon_sym_long] = ACTIONS(4014), - [anon_sym_short] = ACTIONS(4014), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_static] = ACTIONS(4014), - [anon_sym_register] = ACTIONS(4014), - [anon_sym_inline] = ACTIONS(4014), - [anon_sym___inline] = ACTIONS(4014), - [anon_sym___inline__] = ACTIONS(4014), - [anon_sym___forceinline] = ACTIONS(4014), - [anon_sym_thread_local] = ACTIONS(4014), - [anon_sym___thread] = ACTIONS(4014), - [anon_sym_const] = ACTIONS(4014), - [anon_sym_constexpr] = ACTIONS(4014), - [anon_sym_volatile] = ACTIONS(4014), - [anon_sym_restrict] = ACTIONS(4014), - [anon_sym___restrict__] = ACTIONS(4014), - [anon_sym__Atomic] = ACTIONS(4014), - [anon_sym__Noreturn] = ACTIONS(4014), - [anon_sym_noreturn] = ACTIONS(4014), - [anon_sym__Nonnull] = ACTIONS(4014), - [anon_sym_mutable] = ACTIONS(4014), - [anon_sym_constinit] = ACTIONS(4014), - [anon_sym_consteval] = ACTIONS(4014), - [anon_sym_alignas] = ACTIONS(4014), - [anon_sym__Alignas] = ACTIONS(4014), - [sym_primitive_type] = ACTIONS(4014), - [anon_sym_enum] = ACTIONS(4014), - [anon_sym_class] = ACTIONS(4014), - [anon_sym_struct] = ACTIONS(4014), - [anon_sym_union] = ACTIONS(4014), - [anon_sym_if] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4014), - [anon_sym_case] = ACTIONS(4014), - [anon_sym_default] = ACTIONS(4014), - [anon_sym_while] = ACTIONS(4014), - [anon_sym_do] = ACTIONS(4014), - [anon_sym_for] = ACTIONS(4014), - [anon_sym_return] = ACTIONS(4014), - [anon_sym_break] = ACTIONS(4014), - [anon_sym_continue] = ACTIONS(4014), - [anon_sym_goto] = ACTIONS(4014), - [anon_sym_not] = ACTIONS(4014), - [anon_sym_compl] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4016), - [anon_sym_sizeof] = ACTIONS(4014), - [anon_sym___alignof__] = ACTIONS(4014), - [anon_sym___alignof] = ACTIONS(4014), - [anon_sym__alignof] = ACTIONS(4014), - [anon_sym_alignof] = ACTIONS(4014), - [anon_sym__Alignof] = ACTIONS(4014), - [anon_sym_offsetof] = ACTIONS(4014), - [anon_sym__Generic] = ACTIONS(4014), - [anon_sym_typename] = ACTIONS(4014), - [anon_sym_asm] = ACTIONS(4014), - [anon_sym___asm__] = ACTIONS(4014), - [anon_sym___asm] = ACTIONS(4014), - [sym_number_literal] = ACTIONS(4016), - [anon_sym_L_SQUOTE] = ACTIONS(4016), - [anon_sym_u_SQUOTE] = ACTIONS(4016), - [anon_sym_U_SQUOTE] = ACTIONS(4016), - [anon_sym_u8_SQUOTE] = ACTIONS(4016), - [anon_sym_SQUOTE] = ACTIONS(4016), - [anon_sym_L_DQUOTE] = ACTIONS(4016), - [anon_sym_u_DQUOTE] = ACTIONS(4016), - [anon_sym_U_DQUOTE] = ACTIONS(4016), - [anon_sym_u8_DQUOTE] = ACTIONS(4016), - [anon_sym_DQUOTE] = ACTIONS(4016), - [sym_true] = ACTIONS(4014), - [sym_false] = ACTIONS(4014), - [anon_sym_NULL] = ACTIONS(4014), - [anon_sym_nullptr] = ACTIONS(4014), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4014), - [anon_sym_decltype] = ACTIONS(4014), - [anon_sym_explicit] = ACTIONS(4014), - [anon_sym_export] = ACTIONS(4014), - [anon_sym_module] = ACTIONS(4014), - [anon_sym_import] = ACTIONS(4014), - [anon_sym_template] = ACTIONS(4014), - [anon_sym_operator] = ACTIONS(4014), - [anon_sym_try] = ACTIONS(4014), - [anon_sym_delete] = ACTIONS(4014), - [anon_sym_throw] = ACTIONS(4014), - [anon_sym_namespace] = ACTIONS(4014), - [anon_sym_static_assert] = ACTIONS(4014), - [anon_sym_concept] = ACTIONS(4014), - [anon_sym_co_return] = ACTIONS(4014), - [anon_sym_co_yield] = ACTIONS(4014), - [anon_sym_R_DQUOTE] = ACTIONS(4016), - [anon_sym_LR_DQUOTE] = ACTIONS(4016), - [anon_sym_uR_DQUOTE] = ACTIONS(4016), - [anon_sym_UR_DQUOTE] = ACTIONS(4016), - [anon_sym_u8R_DQUOTE] = ACTIONS(4016), - [anon_sym_co_await] = ACTIONS(4014), - [anon_sym_new] = ACTIONS(4014), - [anon_sym_requires] = ACTIONS(4014), - [anon_sym_CARET_CARET] = ACTIONS(4016), - [anon_sym_LBRACK_COLON] = ACTIONS(4016), - [sym_this] = ACTIONS(4014), + [STATE(496)] = { + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(7064), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(11490), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7912), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5230), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3784), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3786), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(555)] = { - [ts_builtin_sym_end] = ACTIONS(4251), - [sym_identifier] = ACTIONS(4253), - [aux_sym_preproc_include_token1] = ACTIONS(4253), - [aux_sym_preproc_def_token1] = ACTIONS(4253), - [aux_sym_preproc_if_token1] = ACTIONS(4253), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4253), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4253), - [sym_preproc_directive] = ACTIONS(4253), - [anon_sym_LPAREN2] = ACTIONS(4251), - [anon_sym_BANG] = ACTIONS(4251), - [anon_sym_TILDE] = ACTIONS(4251), - [anon_sym_DASH] = ACTIONS(4253), - [anon_sym_PLUS] = ACTIONS(4253), - [anon_sym_STAR] = ACTIONS(4251), - [anon_sym_AMP_AMP] = ACTIONS(4251), - [anon_sym_AMP] = ACTIONS(4253), - [anon_sym_SEMI] = ACTIONS(4251), - [anon_sym___extension__] = ACTIONS(4253), - [anon_sym_typedef] = ACTIONS(4253), - [anon_sym_virtual] = ACTIONS(4253), - [anon_sym_extern] = ACTIONS(4253), - [anon_sym___attribute__] = ACTIONS(4253), - [anon_sym___attribute] = ACTIONS(4253), - [anon_sym_using] = ACTIONS(4253), - [anon_sym_COLON_COLON] = ACTIONS(4251), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4251), - [anon_sym___declspec] = ACTIONS(4253), - [anon_sym___based] = ACTIONS(4253), - [anon_sym___cdecl] = ACTIONS(4253), - [anon_sym___clrcall] = ACTIONS(4253), - [anon_sym___stdcall] = ACTIONS(4253), - [anon_sym___fastcall] = ACTIONS(4253), - [anon_sym___thiscall] = ACTIONS(4253), - [anon_sym___vectorcall] = ACTIONS(4253), - [anon_sym_LBRACE] = ACTIONS(4251), - [anon_sym_signed] = ACTIONS(4253), - [anon_sym_unsigned] = ACTIONS(4253), - [anon_sym_long] = ACTIONS(4253), - [anon_sym_short] = ACTIONS(4253), - [anon_sym_LBRACK] = ACTIONS(4253), - [anon_sym_static] = ACTIONS(4253), - [anon_sym_register] = ACTIONS(4253), - [anon_sym_inline] = ACTIONS(4253), - [anon_sym___inline] = ACTIONS(4253), - [anon_sym___inline__] = ACTIONS(4253), - [anon_sym___forceinline] = ACTIONS(4253), - [anon_sym_thread_local] = ACTIONS(4253), - [anon_sym___thread] = ACTIONS(4253), - [anon_sym_const] = ACTIONS(4253), - [anon_sym_constexpr] = ACTIONS(4253), - [anon_sym_volatile] = ACTIONS(4253), - [anon_sym_restrict] = ACTIONS(4253), - [anon_sym___restrict__] = ACTIONS(4253), - [anon_sym__Atomic] = ACTIONS(4253), - [anon_sym__Noreturn] = ACTIONS(4253), - [anon_sym_noreturn] = ACTIONS(4253), - [anon_sym__Nonnull] = ACTIONS(4253), - [anon_sym_mutable] = ACTIONS(4253), - [anon_sym_constinit] = ACTIONS(4253), - [anon_sym_consteval] = ACTIONS(4253), - [anon_sym_alignas] = ACTIONS(4253), - [anon_sym__Alignas] = ACTIONS(4253), - [sym_primitive_type] = ACTIONS(4253), - [anon_sym_enum] = ACTIONS(4253), - [anon_sym_class] = ACTIONS(4253), - [anon_sym_struct] = ACTIONS(4253), - [anon_sym_union] = ACTIONS(4253), - [anon_sym_if] = ACTIONS(4253), - [anon_sym_switch] = ACTIONS(4253), - [anon_sym_case] = ACTIONS(4253), - [anon_sym_default] = ACTIONS(4253), - [anon_sym_while] = ACTIONS(4253), - [anon_sym_do] = ACTIONS(4253), - [anon_sym_for] = ACTIONS(4253), - [anon_sym_return] = ACTIONS(4253), - [anon_sym_break] = ACTIONS(4253), - [anon_sym_continue] = ACTIONS(4253), - [anon_sym_goto] = ACTIONS(4253), - [anon_sym_not] = ACTIONS(4253), - [anon_sym_compl] = ACTIONS(4253), - [anon_sym_DASH_DASH] = ACTIONS(4251), - [anon_sym_PLUS_PLUS] = ACTIONS(4251), - [anon_sym_sizeof] = ACTIONS(4253), - [anon_sym___alignof__] = ACTIONS(4253), - [anon_sym___alignof] = ACTIONS(4253), - [anon_sym__alignof] = ACTIONS(4253), - [anon_sym_alignof] = ACTIONS(4253), - [anon_sym__Alignof] = ACTIONS(4253), - [anon_sym_offsetof] = ACTIONS(4253), - [anon_sym__Generic] = ACTIONS(4253), - [anon_sym_typename] = ACTIONS(4253), - [anon_sym_asm] = ACTIONS(4253), - [anon_sym___asm__] = ACTIONS(4253), - [anon_sym___asm] = ACTIONS(4253), - [sym_number_literal] = ACTIONS(4251), - [anon_sym_L_SQUOTE] = ACTIONS(4251), - [anon_sym_u_SQUOTE] = ACTIONS(4251), - [anon_sym_U_SQUOTE] = ACTIONS(4251), - [anon_sym_u8_SQUOTE] = ACTIONS(4251), - [anon_sym_SQUOTE] = ACTIONS(4251), - [anon_sym_L_DQUOTE] = ACTIONS(4251), - [anon_sym_u_DQUOTE] = ACTIONS(4251), - [anon_sym_U_DQUOTE] = ACTIONS(4251), - [anon_sym_u8_DQUOTE] = ACTIONS(4251), - [anon_sym_DQUOTE] = ACTIONS(4251), - [sym_true] = ACTIONS(4253), - [sym_false] = ACTIONS(4253), - [anon_sym_NULL] = ACTIONS(4253), - [anon_sym_nullptr] = ACTIONS(4253), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4253), - [anon_sym_decltype] = ACTIONS(4253), - [anon_sym_explicit] = ACTIONS(4253), - [anon_sym_export] = ACTIONS(4253), - [anon_sym_module] = ACTIONS(4253), - [anon_sym_import] = ACTIONS(4253), - [anon_sym_template] = ACTIONS(4253), - [anon_sym_operator] = ACTIONS(4253), - [anon_sym_try] = ACTIONS(4253), - [anon_sym_delete] = ACTIONS(4253), - [anon_sym_throw] = ACTIONS(4253), - [anon_sym_namespace] = ACTIONS(4253), - [anon_sym_static_assert] = ACTIONS(4253), - [anon_sym_concept] = ACTIONS(4253), - [anon_sym_co_return] = ACTIONS(4253), - [anon_sym_co_yield] = ACTIONS(4253), - [anon_sym_R_DQUOTE] = ACTIONS(4251), - [anon_sym_LR_DQUOTE] = ACTIONS(4251), - [anon_sym_uR_DQUOTE] = ACTIONS(4251), - [anon_sym_UR_DQUOTE] = ACTIONS(4251), - [anon_sym_u8R_DQUOTE] = ACTIONS(4251), - [anon_sym_co_await] = ACTIONS(4253), - [anon_sym_new] = ACTIONS(4253), - [anon_sym_requires] = ACTIONS(4253), - [anon_sym_CARET_CARET] = ACTIONS(4251), - [anon_sym_LBRACK_COLON] = ACTIONS(4251), - [sym_this] = ACTIONS(4253), + [STATE(497)] = { + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(7066), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(10635), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7912), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5230), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3784), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3786), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(556)] = { - [sym_identifier] = ACTIONS(3864), - [aux_sym_preproc_include_token1] = ACTIONS(3864), - [aux_sym_preproc_def_token1] = ACTIONS(3864), - [aux_sym_preproc_if_token1] = ACTIONS(3864), - [aux_sym_preproc_if_token2] = ACTIONS(3864), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3864), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3864), - [sym_preproc_directive] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(3866), - [anon_sym_BANG] = ACTIONS(3866), - [anon_sym_TILDE] = ACTIONS(3866), - [anon_sym_DASH] = ACTIONS(3864), - [anon_sym_PLUS] = ACTIONS(3864), - [anon_sym_STAR] = ACTIONS(3866), - [anon_sym_AMP_AMP] = ACTIONS(3866), - [anon_sym_AMP] = ACTIONS(3864), - [anon_sym_SEMI] = ACTIONS(3866), - [anon_sym___extension__] = ACTIONS(3864), - [anon_sym_typedef] = ACTIONS(3864), - [anon_sym_virtual] = ACTIONS(3864), - [anon_sym_extern] = ACTIONS(3864), - [anon_sym___attribute__] = ACTIONS(3864), - [anon_sym___attribute] = ACTIONS(3864), - [anon_sym_using] = ACTIONS(3864), - [anon_sym_COLON_COLON] = ACTIONS(3866), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3866), - [anon_sym___declspec] = ACTIONS(3864), - [anon_sym___based] = ACTIONS(3864), - [anon_sym___cdecl] = ACTIONS(3864), - [anon_sym___clrcall] = ACTIONS(3864), - [anon_sym___stdcall] = ACTIONS(3864), - [anon_sym___fastcall] = ACTIONS(3864), - [anon_sym___thiscall] = ACTIONS(3864), - [anon_sym___vectorcall] = ACTIONS(3864), - [anon_sym_LBRACE] = ACTIONS(3866), - [anon_sym_signed] = ACTIONS(3864), - [anon_sym_unsigned] = ACTIONS(3864), - [anon_sym_long] = ACTIONS(3864), - [anon_sym_short] = ACTIONS(3864), - [anon_sym_LBRACK] = ACTIONS(3864), - [anon_sym_static] = ACTIONS(3864), - [anon_sym_register] = ACTIONS(3864), - [anon_sym_inline] = ACTIONS(3864), - [anon_sym___inline] = ACTIONS(3864), - [anon_sym___inline__] = ACTIONS(3864), - [anon_sym___forceinline] = ACTIONS(3864), - [anon_sym_thread_local] = ACTIONS(3864), - [anon_sym___thread] = ACTIONS(3864), - [anon_sym_const] = ACTIONS(3864), - [anon_sym_constexpr] = ACTIONS(3864), - [anon_sym_volatile] = ACTIONS(3864), - [anon_sym_restrict] = ACTIONS(3864), - [anon_sym___restrict__] = ACTIONS(3864), - [anon_sym__Atomic] = ACTIONS(3864), - [anon_sym__Noreturn] = ACTIONS(3864), - [anon_sym_noreturn] = ACTIONS(3864), - [anon_sym__Nonnull] = ACTIONS(3864), - [anon_sym_mutable] = ACTIONS(3864), - [anon_sym_constinit] = ACTIONS(3864), - [anon_sym_consteval] = ACTIONS(3864), - [anon_sym_alignas] = ACTIONS(3864), - [anon_sym__Alignas] = ACTIONS(3864), - [sym_primitive_type] = ACTIONS(3864), - [anon_sym_enum] = ACTIONS(3864), - [anon_sym_class] = ACTIONS(3864), - [anon_sym_struct] = ACTIONS(3864), - [anon_sym_union] = ACTIONS(3864), - [anon_sym_if] = ACTIONS(3864), - [anon_sym_else] = ACTIONS(3864), - [anon_sym_switch] = ACTIONS(3864), - [anon_sym_case] = ACTIONS(3864), - [anon_sym_default] = ACTIONS(3864), - [anon_sym_while] = ACTIONS(3864), - [anon_sym_do] = ACTIONS(3864), - [anon_sym_for] = ACTIONS(3864), - [anon_sym_return] = ACTIONS(3864), - [anon_sym_break] = ACTIONS(3864), - [anon_sym_continue] = ACTIONS(3864), - [anon_sym_goto] = ACTIONS(3864), - [anon_sym___try] = ACTIONS(3864), - [anon_sym___leave] = ACTIONS(3864), - [anon_sym_not] = ACTIONS(3864), - [anon_sym_compl] = ACTIONS(3864), - [anon_sym_DASH_DASH] = ACTIONS(3866), - [anon_sym_PLUS_PLUS] = ACTIONS(3866), - [anon_sym_sizeof] = ACTIONS(3864), - [anon_sym___alignof__] = ACTIONS(3864), - [anon_sym___alignof] = ACTIONS(3864), - [anon_sym__alignof] = ACTIONS(3864), - [anon_sym_alignof] = ACTIONS(3864), - [anon_sym__Alignof] = ACTIONS(3864), - [anon_sym_offsetof] = ACTIONS(3864), - [anon_sym__Generic] = ACTIONS(3864), - [anon_sym_typename] = ACTIONS(3864), - [anon_sym_asm] = ACTIONS(3864), - [anon_sym___asm__] = ACTIONS(3864), - [anon_sym___asm] = ACTIONS(3864), - [sym_number_literal] = ACTIONS(3866), - [anon_sym_L_SQUOTE] = ACTIONS(3866), - [anon_sym_u_SQUOTE] = ACTIONS(3866), - [anon_sym_U_SQUOTE] = ACTIONS(3866), - [anon_sym_u8_SQUOTE] = ACTIONS(3866), - [anon_sym_SQUOTE] = ACTIONS(3866), - [anon_sym_L_DQUOTE] = ACTIONS(3866), - [anon_sym_u_DQUOTE] = ACTIONS(3866), - [anon_sym_U_DQUOTE] = ACTIONS(3866), - [anon_sym_u8_DQUOTE] = ACTIONS(3866), - [anon_sym_DQUOTE] = ACTIONS(3866), - [sym_true] = ACTIONS(3864), - [sym_false] = ACTIONS(3864), - [anon_sym_NULL] = ACTIONS(3864), - [anon_sym_nullptr] = ACTIONS(3864), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3864), - [anon_sym_decltype] = ACTIONS(3864), - [anon_sym_explicit] = ACTIONS(3864), - [anon_sym_template] = ACTIONS(3864), - [anon_sym_operator] = ACTIONS(3864), - [anon_sym_try] = ACTIONS(3864), - [anon_sym_delete] = ACTIONS(3864), - [anon_sym_throw] = ACTIONS(3864), - [anon_sym_namespace] = ACTIONS(3864), - [anon_sym_static_assert] = ACTIONS(3864), - [anon_sym_concept] = ACTIONS(3864), - [anon_sym_co_return] = ACTIONS(3864), - [anon_sym_co_yield] = ACTIONS(3864), - [anon_sym_R_DQUOTE] = ACTIONS(3866), - [anon_sym_LR_DQUOTE] = ACTIONS(3866), - [anon_sym_uR_DQUOTE] = ACTIONS(3866), - [anon_sym_UR_DQUOTE] = ACTIONS(3866), - [anon_sym_u8R_DQUOTE] = ACTIONS(3866), - [anon_sym_co_await] = ACTIONS(3864), - [anon_sym_new] = ACTIONS(3864), - [anon_sym_requires] = ACTIONS(3864), - [anon_sym_CARET_CARET] = ACTIONS(3866), - [anon_sym_LBRACK_COLON] = ACTIONS(3866), - [sym_this] = ACTIONS(3864), + [STATE(498)] = { + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(7068), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(10737), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7912), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5230), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3784), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3786), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(557)] = { - [ts_builtin_sym_end] = ACTIONS(3960), - [sym_identifier] = ACTIONS(3958), - [aux_sym_preproc_include_token1] = ACTIONS(3958), - [aux_sym_preproc_def_token1] = ACTIONS(3958), - [aux_sym_preproc_if_token1] = ACTIONS(3958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3958), - [sym_preproc_directive] = ACTIONS(3958), - [anon_sym_LPAREN2] = ACTIONS(3960), - [anon_sym_BANG] = ACTIONS(3960), - [anon_sym_TILDE] = ACTIONS(3960), - [anon_sym_DASH] = ACTIONS(3958), - [anon_sym_PLUS] = ACTIONS(3958), - [anon_sym_STAR] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_AMP] = ACTIONS(3958), - [anon_sym_SEMI] = ACTIONS(3960), - [anon_sym___extension__] = ACTIONS(3958), - [anon_sym_typedef] = ACTIONS(3958), - [anon_sym_virtual] = ACTIONS(3958), - [anon_sym_extern] = ACTIONS(3958), - [anon_sym___attribute__] = ACTIONS(3958), - [anon_sym___attribute] = ACTIONS(3958), - [anon_sym_using] = ACTIONS(3958), - [anon_sym_COLON_COLON] = ACTIONS(3960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3960), - [anon_sym___declspec] = ACTIONS(3958), - [anon_sym___based] = ACTIONS(3958), - [anon_sym___cdecl] = ACTIONS(3958), - [anon_sym___clrcall] = ACTIONS(3958), - [anon_sym___stdcall] = ACTIONS(3958), - [anon_sym___fastcall] = ACTIONS(3958), - [anon_sym___thiscall] = ACTIONS(3958), - [anon_sym___vectorcall] = ACTIONS(3958), - [anon_sym_LBRACE] = ACTIONS(3960), - [anon_sym_signed] = ACTIONS(3958), - [anon_sym_unsigned] = ACTIONS(3958), - [anon_sym_long] = ACTIONS(3958), - [anon_sym_short] = ACTIONS(3958), - [anon_sym_LBRACK] = ACTIONS(3958), - [anon_sym_static] = ACTIONS(3958), - [anon_sym_register] = ACTIONS(3958), - [anon_sym_inline] = ACTIONS(3958), - [anon_sym___inline] = ACTIONS(3958), - [anon_sym___inline__] = ACTIONS(3958), - [anon_sym___forceinline] = ACTIONS(3958), - [anon_sym_thread_local] = ACTIONS(3958), - [anon_sym___thread] = ACTIONS(3958), - [anon_sym_const] = ACTIONS(3958), - [anon_sym_constexpr] = ACTIONS(3958), - [anon_sym_volatile] = ACTIONS(3958), - [anon_sym_restrict] = ACTIONS(3958), - [anon_sym___restrict__] = ACTIONS(3958), - [anon_sym__Atomic] = ACTIONS(3958), - [anon_sym__Noreturn] = ACTIONS(3958), - [anon_sym_noreturn] = ACTIONS(3958), - [anon_sym__Nonnull] = ACTIONS(3958), - [anon_sym_mutable] = ACTIONS(3958), - [anon_sym_constinit] = ACTIONS(3958), - [anon_sym_consteval] = ACTIONS(3958), - [anon_sym_alignas] = ACTIONS(3958), - [anon_sym__Alignas] = ACTIONS(3958), - [sym_primitive_type] = ACTIONS(3958), - [anon_sym_enum] = ACTIONS(3958), - [anon_sym_class] = ACTIONS(3958), - [anon_sym_struct] = ACTIONS(3958), - [anon_sym_union] = ACTIONS(3958), - [anon_sym_if] = ACTIONS(3958), - [anon_sym_switch] = ACTIONS(3958), - [anon_sym_case] = ACTIONS(3958), - [anon_sym_default] = ACTIONS(3958), - [anon_sym_while] = ACTIONS(3958), - [anon_sym_do] = ACTIONS(3958), - [anon_sym_for] = ACTIONS(3958), - [anon_sym_return] = ACTIONS(3958), - [anon_sym_break] = ACTIONS(3958), - [anon_sym_continue] = ACTIONS(3958), - [anon_sym_goto] = ACTIONS(3958), - [anon_sym_not] = ACTIONS(3958), - [anon_sym_compl] = ACTIONS(3958), - [anon_sym_DASH_DASH] = ACTIONS(3960), - [anon_sym_PLUS_PLUS] = ACTIONS(3960), - [anon_sym_sizeof] = ACTIONS(3958), - [anon_sym___alignof__] = ACTIONS(3958), - [anon_sym___alignof] = ACTIONS(3958), - [anon_sym__alignof] = ACTIONS(3958), - [anon_sym_alignof] = ACTIONS(3958), - [anon_sym__Alignof] = ACTIONS(3958), - [anon_sym_offsetof] = ACTIONS(3958), - [anon_sym__Generic] = ACTIONS(3958), - [anon_sym_typename] = ACTIONS(3958), - [anon_sym_asm] = ACTIONS(3958), - [anon_sym___asm__] = ACTIONS(3958), - [anon_sym___asm] = ACTIONS(3958), - [sym_number_literal] = ACTIONS(3960), - [anon_sym_L_SQUOTE] = ACTIONS(3960), - [anon_sym_u_SQUOTE] = ACTIONS(3960), - [anon_sym_U_SQUOTE] = ACTIONS(3960), - [anon_sym_u8_SQUOTE] = ACTIONS(3960), - [anon_sym_SQUOTE] = ACTIONS(3960), - [anon_sym_L_DQUOTE] = ACTIONS(3960), - [anon_sym_u_DQUOTE] = ACTIONS(3960), - [anon_sym_U_DQUOTE] = ACTIONS(3960), - [anon_sym_u8_DQUOTE] = ACTIONS(3960), - [anon_sym_DQUOTE] = ACTIONS(3960), - [sym_true] = ACTIONS(3958), - [sym_false] = ACTIONS(3958), - [anon_sym_NULL] = ACTIONS(3958), - [anon_sym_nullptr] = ACTIONS(3958), + [STATE(499)] = { + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(7069), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(10846), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7912), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5230), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3784), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3786), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3958), - [anon_sym_decltype] = ACTIONS(3958), - [anon_sym_explicit] = ACTIONS(3958), - [anon_sym_export] = ACTIONS(3958), - [anon_sym_module] = ACTIONS(3958), - [anon_sym_import] = ACTIONS(3958), - [anon_sym_template] = ACTIONS(3958), - [anon_sym_operator] = ACTIONS(3958), - [anon_sym_try] = ACTIONS(3958), - [anon_sym_delete] = ACTIONS(3958), - [anon_sym_throw] = ACTIONS(3958), - [anon_sym_namespace] = ACTIONS(3958), - [anon_sym_static_assert] = ACTIONS(3958), - [anon_sym_concept] = ACTIONS(3958), - [anon_sym_co_return] = ACTIONS(3958), - [anon_sym_co_yield] = ACTIONS(3958), - [anon_sym_R_DQUOTE] = ACTIONS(3960), - [anon_sym_LR_DQUOTE] = ACTIONS(3960), - [anon_sym_uR_DQUOTE] = ACTIONS(3960), - [anon_sym_UR_DQUOTE] = ACTIONS(3960), - [anon_sym_u8R_DQUOTE] = ACTIONS(3960), - [anon_sym_co_await] = ACTIONS(3958), - [anon_sym_new] = ACTIONS(3958), - [anon_sym_requires] = ACTIONS(3958), - [anon_sym_CARET_CARET] = ACTIONS(3960), - [anon_sym_LBRACK_COLON] = ACTIONS(3960), - [sym_this] = ACTIONS(3958), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(558)] = { - [ts_builtin_sym_end] = ACTIONS(4255), - [sym_identifier] = ACTIONS(4257), - [aux_sym_preproc_include_token1] = ACTIONS(4257), - [aux_sym_preproc_def_token1] = ACTIONS(4257), - [aux_sym_preproc_if_token1] = ACTIONS(4257), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4257), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4257), - [sym_preproc_directive] = ACTIONS(4257), - [anon_sym_LPAREN2] = ACTIONS(4255), - [anon_sym_BANG] = ACTIONS(4255), - [anon_sym_TILDE] = ACTIONS(4255), - [anon_sym_DASH] = ACTIONS(4257), - [anon_sym_PLUS] = ACTIONS(4257), - [anon_sym_STAR] = ACTIONS(4255), - [anon_sym_AMP_AMP] = ACTIONS(4255), - [anon_sym_AMP] = ACTIONS(4257), - [anon_sym_SEMI] = ACTIONS(4255), - [anon_sym___extension__] = ACTIONS(4257), - [anon_sym_typedef] = ACTIONS(4257), - [anon_sym_virtual] = ACTIONS(4257), - [anon_sym_extern] = ACTIONS(4257), - [anon_sym___attribute__] = ACTIONS(4257), - [anon_sym___attribute] = ACTIONS(4257), - [anon_sym_using] = ACTIONS(4257), - [anon_sym_COLON_COLON] = ACTIONS(4255), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4255), - [anon_sym___declspec] = ACTIONS(4257), - [anon_sym___based] = ACTIONS(4257), - [anon_sym___cdecl] = ACTIONS(4257), - [anon_sym___clrcall] = ACTIONS(4257), - [anon_sym___stdcall] = ACTIONS(4257), - [anon_sym___fastcall] = ACTIONS(4257), - [anon_sym___thiscall] = ACTIONS(4257), - [anon_sym___vectorcall] = ACTIONS(4257), - [anon_sym_LBRACE] = ACTIONS(4255), - [anon_sym_signed] = ACTIONS(4257), - [anon_sym_unsigned] = ACTIONS(4257), - [anon_sym_long] = ACTIONS(4257), - [anon_sym_short] = ACTIONS(4257), - [anon_sym_LBRACK] = ACTIONS(4257), - [anon_sym_static] = ACTIONS(4257), - [anon_sym_register] = ACTIONS(4257), - [anon_sym_inline] = ACTIONS(4257), - [anon_sym___inline] = ACTIONS(4257), - [anon_sym___inline__] = ACTIONS(4257), - [anon_sym___forceinline] = ACTIONS(4257), - [anon_sym_thread_local] = ACTIONS(4257), - [anon_sym___thread] = ACTIONS(4257), - [anon_sym_const] = ACTIONS(4257), - [anon_sym_constexpr] = ACTIONS(4257), - [anon_sym_volatile] = ACTIONS(4257), - [anon_sym_restrict] = ACTIONS(4257), - [anon_sym___restrict__] = ACTIONS(4257), - [anon_sym__Atomic] = ACTIONS(4257), - [anon_sym__Noreturn] = ACTIONS(4257), - [anon_sym_noreturn] = ACTIONS(4257), - [anon_sym__Nonnull] = ACTIONS(4257), - [anon_sym_mutable] = ACTIONS(4257), - [anon_sym_constinit] = ACTIONS(4257), - [anon_sym_consteval] = ACTIONS(4257), - [anon_sym_alignas] = ACTIONS(4257), - [anon_sym__Alignas] = ACTIONS(4257), - [sym_primitive_type] = ACTIONS(4257), - [anon_sym_enum] = ACTIONS(4257), - [anon_sym_class] = ACTIONS(4257), - [anon_sym_struct] = ACTIONS(4257), - [anon_sym_union] = ACTIONS(4257), - [anon_sym_if] = ACTIONS(4257), - [anon_sym_switch] = ACTIONS(4257), - [anon_sym_case] = ACTIONS(4257), - [anon_sym_default] = ACTIONS(4257), - [anon_sym_while] = ACTIONS(4257), - [anon_sym_do] = ACTIONS(4257), - [anon_sym_for] = ACTIONS(4257), - [anon_sym_return] = ACTIONS(4257), - [anon_sym_break] = ACTIONS(4257), - [anon_sym_continue] = ACTIONS(4257), - [anon_sym_goto] = ACTIONS(4257), - [anon_sym_not] = ACTIONS(4257), - [anon_sym_compl] = ACTIONS(4257), - [anon_sym_DASH_DASH] = ACTIONS(4255), - [anon_sym_PLUS_PLUS] = ACTIONS(4255), - [anon_sym_sizeof] = ACTIONS(4257), - [anon_sym___alignof__] = ACTIONS(4257), - [anon_sym___alignof] = ACTIONS(4257), - [anon_sym__alignof] = ACTIONS(4257), - [anon_sym_alignof] = ACTIONS(4257), - [anon_sym__Alignof] = ACTIONS(4257), - [anon_sym_offsetof] = ACTIONS(4257), - [anon_sym__Generic] = ACTIONS(4257), - [anon_sym_typename] = ACTIONS(4257), - [anon_sym_asm] = ACTIONS(4257), - [anon_sym___asm__] = ACTIONS(4257), - [anon_sym___asm] = ACTIONS(4257), - [sym_number_literal] = ACTIONS(4255), - [anon_sym_L_SQUOTE] = ACTIONS(4255), - [anon_sym_u_SQUOTE] = ACTIONS(4255), - [anon_sym_U_SQUOTE] = ACTIONS(4255), - [anon_sym_u8_SQUOTE] = ACTIONS(4255), - [anon_sym_SQUOTE] = ACTIONS(4255), - [anon_sym_L_DQUOTE] = ACTIONS(4255), - [anon_sym_u_DQUOTE] = ACTIONS(4255), - [anon_sym_U_DQUOTE] = ACTIONS(4255), - [anon_sym_u8_DQUOTE] = ACTIONS(4255), - [anon_sym_DQUOTE] = ACTIONS(4255), - [sym_true] = ACTIONS(4257), - [sym_false] = ACTIONS(4257), - [anon_sym_NULL] = ACTIONS(4257), - [anon_sym_nullptr] = ACTIONS(4257), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4257), - [anon_sym_decltype] = ACTIONS(4257), - [anon_sym_explicit] = ACTIONS(4257), - [anon_sym_export] = ACTIONS(4257), - [anon_sym_module] = ACTIONS(4257), - [anon_sym_import] = ACTIONS(4257), - [anon_sym_template] = ACTIONS(4257), - [anon_sym_operator] = ACTIONS(4257), - [anon_sym_try] = ACTIONS(4257), - [anon_sym_delete] = ACTIONS(4257), - [anon_sym_throw] = ACTIONS(4257), - [anon_sym_namespace] = ACTIONS(4257), - [anon_sym_static_assert] = ACTIONS(4257), - [anon_sym_concept] = ACTIONS(4257), - [anon_sym_co_return] = ACTIONS(4257), - [anon_sym_co_yield] = ACTIONS(4257), - [anon_sym_R_DQUOTE] = ACTIONS(4255), - [anon_sym_LR_DQUOTE] = ACTIONS(4255), - [anon_sym_uR_DQUOTE] = ACTIONS(4255), - [anon_sym_UR_DQUOTE] = ACTIONS(4255), - [anon_sym_u8R_DQUOTE] = ACTIONS(4255), - [anon_sym_co_await] = ACTIONS(4257), - [anon_sym_new] = ACTIONS(4257), - [anon_sym_requires] = ACTIONS(4257), - [anon_sym_CARET_CARET] = ACTIONS(4255), - [anon_sym_LBRACK_COLON] = ACTIONS(4255), - [sym_this] = ACTIONS(4257), + [STATE(500)] = { + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(7070), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(10960), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7912), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5230), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3784), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3786), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(559)] = { - [sym_identifier] = ACTIONS(3684), - [aux_sym_preproc_include_token1] = ACTIONS(3684), - [aux_sym_preproc_def_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token2] = ACTIONS(3684), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3684), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3684), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(3686), - [anon_sym_BANG] = ACTIONS(3686), - [anon_sym_TILDE] = ACTIONS(3686), - [anon_sym_DASH] = ACTIONS(3684), - [anon_sym_PLUS] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3686), - [anon_sym_AMP_AMP] = ACTIONS(3686), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym___extension__] = ACTIONS(3684), - [anon_sym_typedef] = ACTIONS(3684), - [anon_sym_virtual] = ACTIONS(3684), - [anon_sym_extern] = ACTIONS(3684), - [anon_sym___attribute__] = ACTIONS(3684), - [anon_sym___attribute] = ACTIONS(3684), - [anon_sym_using] = ACTIONS(3684), - [anon_sym_COLON_COLON] = ACTIONS(3686), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), - [anon_sym___declspec] = ACTIONS(3684), - [anon_sym___based] = ACTIONS(3684), - [anon_sym___cdecl] = ACTIONS(3684), - [anon_sym___clrcall] = ACTIONS(3684), - [anon_sym___stdcall] = ACTIONS(3684), - [anon_sym___fastcall] = ACTIONS(3684), - [anon_sym___thiscall] = ACTIONS(3684), - [anon_sym___vectorcall] = ACTIONS(3684), - [anon_sym_LBRACE] = ACTIONS(3686), - [anon_sym_signed] = ACTIONS(3684), - [anon_sym_unsigned] = ACTIONS(3684), - [anon_sym_long] = ACTIONS(3684), - [anon_sym_short] = ACTIONS(3684), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_static] = ACTIONS(3684), - [anon_sym_register] = ACTIONS(3684), - [anon_sym_inline] = ACTIONS(3684), - [anon_sym___inline] = ACTIONS(3684), - [anon_sym___inline__] = ACTIONS(3684), - [anon_sym___forceinline] = ACTIONS(3684), - [anon_sym_thread_local] = ACTIONS(3684), - [anon_sym___thread] = ACTIONS(3684), - [anon_sym_const] = ACTIONS(3684), - [anon_sym_constexpr] = ACTIONS(3684), - [anon_sym_volatile] = ACTIONS(3684), - [anon_sym_restrict] = ACTIONS(3684), - [anon_sym___restrict__] = ACTIONS(3684), - [anon_sym__Atomic] = ACTIONS(3684), - [anon_sym__Noreturn] = ACTIONS(3684), - [anon_sym_noreturn] = ACTIONS(3684), - [anon_sym__Nonnull] = ACTIONS(3684), - [anon_sym_mutable] = ACTIONS(3684), - [anon_sym_constinit] = ACTIONS(3684), - [anon_sym_consteval] = ACTIONS(3684), - [anon_sym_alignas] = ACTIONS(3684), - [anon_sym__Alignas] = ACTIONS(3684), - [sym_primitive_type] = ACTIONS(3684), - [anon_sym_enum] = ACTIONS(3684), - [anon_sym_class] = ACTIONS(3684), - [anon_sym_struct] = ACTIONS(3684), - [anon_sym_union] = ACTIONS(3684), - [anon_sym_if] = ACTIONS(3684), - [anon_sym_else] = ACTIONS(3684), - [anon_sym_switch] = ACTIONS(3684), - [anon_sym_case] = ACTIONS(3684), - [anon_sym_default] = ACTIONS(3684), - [anon_sym_while] = ACTIONS(3684), - [anon_sym_do] = ACTIONS(3684), - [anon_sym_for] = ACTIONS(3684), - [anon_sym_return] = ACTIONS(3684), - [anon_sym_break] = ACTIONS(3684), - [anon_sym_continue] = ACTIONS(3684), - [anon_sym_goto] = ACTIONS(3684), - [anon_sym___try] = ACTIONS(3684), - [anon_sym___leave] = ACTIONS(3684), - [anon_sym_not] = ACTIONS(3684), - [anon_sym_compl] = ACTIONS(3684), - [anon_sym_DASH_DASH] = ACTIONS(3686), - [anon_sym_PLUS_PLUS] = ACTIONS(3686), - [anon_sym_sizeof] = ACTIONS(3684), - [anon_sym___alignof__] = ACTIONS(3684), - [anon_sym___alignof] = ACTIONS(3684), - [anon_sym__alignof] = ACTIONS(3684), - [anon_sym_alignof] = ACTIONS(3684), - [anon_sym__Alignof] = ACTIONS(3684), - [anon_sym_offsetof] = ACTIONS(3684), - [anon_sym__Generic] = ACTIONS(3684), - [anon_sym_typename] = ACTIONS(3684), - [anon_sym_asm] = ACTIONS(3684), - [anon_sym___asm__] = ACTIONS(3684), - [anon_sym___asm] = ACTIONS(3684), - [sym_number_literal] = ACTIONS(3686), - [anon_sym_L_SQUOTE] = ACTIONS(3686), - [anon_sym_u_SQUOTE] = ACTIONS(3686), - [anon_sym_U_SQUOTE] = ACTIONS(3686), - [anon_sym_u8_SQUOTE] = ACTIONS(3686), - [anon_sym_SQUOTE] = ACTIONS(3686), - [anon_sym_L_DQUOTE] = ACTIONS(3686), - [anon_sym_u_DQUOTE] = ACTIONS(3686), - [anon_sym_U_DQUOTE] = ACTIONS(3686), - [anon_sym_u8_DQUOTE] = ACTIONS(3686), - [anon_sym_DQUOTE] = ACTIONS(3686), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [anon_sym_NULL] = ACTIONS(3684), - [anon_sym_nullptr] = ACTIONS(3684), + [STATE(501)] = { + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(7071), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(11057), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7912), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5230), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3784), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3786), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3684), - [anon_sym_decltype] = ACTIONS(3684), - [anon_sym_explicit] = ACTIONS(3684), - [anon_sym_template] = ACTIONS(3684), - [anon_sym_operator] = ACTIONS(3684), - [anon_sym_try] = ACTIONS(3684), - [anon_sym_delete] = ACTIONS(3684), - [anon_sym_throw] = ACTIONS(3684), - [anon_sym_namespace] = ACTIONS(3684), - [anon_sym_static_assert] = ACTIONS(3684), - [anon_sym_concept] = ACTIONS(3684), - [anon_sym_co_return] = ACTIONS(3684), - [anon_sym_co_yield] = ACTIONS(3684), - [anon_sym_R_DQUOTE] = ACTIONS(3686), - [anon_sym_LR_DQUOTE] = ACTIONS(3686), - [anon_sym_uR_DQUOTE] = ACTIONS(3686), - [anon_sym_UR_DQUOTE] = ACTIONS(3686), - [anon_sym_u8R_DQUOTE] = ACTIONS(3686), - [anon_sym_co_await] = ACTIONS(3684), - [anon_sym_new] = ACTIONS(3684), - [anon_sym_requires] = ACTIONS(3684), - [anon_sym_CARET_CARET] = ACTIONS(3686), - [anon_sym_LBRACK_COLON] = ACTIONS(3686), - [sym_this] = ACTIONS(3684), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(560)] = { - [sym_identifier] = ACTIONS(3688), - [aux_sym_preproc_include_token1] = ACTIONS(3688), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token2] = ACTIONS(3688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3688), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3688), - [sym_preproc_directive] = ACTIONS(3688), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3690), - [anon_sym_TILDE] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3688), - [anon_sym_PLUS] = ACTIONS(3688), - [anon_sym_STAR] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3690), - [anon_sym_AMP] = ACTIONS(3688), - [anon_sym_SEMI] = ACTIONS(3690), - [anon_sym___extension__] = ACTIONS(3688), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_virtual] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(3688), - [anon_sym___attribute__] = ACTIONS(3688), - [anon_sym___attribute] = ACTIONS(3688), - [anon_sym_using] = ACTIONS(3688), - [anon_sym_COLON_COLON] = ACTIONS(3690), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3690), - [anon_sym___declspec] = ACTIONS(3688), - [anon_sym___based] = ACTIONS(3688), - [anon_sym___cdecl] = ACTIONS(3688), - [anon_sym___clrcall] = ACTIONS(3688), - [anon_sym___stdcall] = ACTIONS(3688), - [anon_sym___fastcall] = ACTIONS(3688), - [anon_sym___thiscall] = ACTIONS(3688), - [anon_sym___vectorcall] = ACTIONS(3688), - [anon_sym_LBRACE] = ACTIONS(3690), - [anon_sym_signed] = ACTIONS(3688), - [anon_sym_unsigned] = ACTIONS(3688), - [anon_sym_long] = ACTIONS(3688), - [anon_sym_short] = ACTIONS(3688), - [anon_sym_LBRACK] = ACTIONS(3688), - [anon_sym_static] = ACTIONS(3688), - [anon_sym_register] = ACTIONS(3688), - [anon_sym_inline] = ACTIONS(3688), - [anon_sym___inline] = ACTIONS(3688), - [anon_sym___inline__] = ACTIONS(3688), - [anon_sym___forceinline] = ACTIONS(3688), - [anon_sym_thread_local] = ACTIONS(3688), - [anon_sym___thread] = ACTIONS(3688), - [anon_sym_const] = ACTIONS(3688), - [anon_sym_constexpr] = ACTIONS(3688), - [anon_sym_volatile] = ACTIONS(3688), - [anon_sym_restrict] = ACTIONS(3688), - [anon_sym___restrict__] = ACTIONS(3688), - [anon_sym__Atomic] = ACTIONS(3688), - [anon_sym__Noreturn] = ACTIONS(3688), - [anon_sym_noreturn] = ACTIONS(3688), - [anon_sym__Nonnull] = ACTIONS(3688), - [anon_sym_mutable] = ACTIONS(3688), - [anon_sym_constinit] = ACTIONS(3688), - [anon_sym_consteval] = ACTIONS(3688), - [anon_sym_alignas] = ACTIONS(3688), - [anon_sym__Alignas] = ACTIONS(3688), - [sym_primitive_type] = ACTIONS(3688), - [anon_sym_enum] = ACTIONS(3688), - [anon_sym_class] = ACTIONS(3688), - [anon_sym_struct] = ACTIONS(3688), - [anon_sym_union] = ACTIONS(3688), - [anon_sym_if] = ACTIONS(3688), - [anon_sym_else] = ACTIONS(3688), - [anon_sym_switch] = ACTIONS(3688), - [anon_sym_case] = ACTIONS(3688), - [anon_sym_default] = ACTIONS(3688), - [anon_sym_while] = ACTIONS(3688), - [anon_sym_do] = ACTIONS(3688), - [anon_sym_for] = ACTIONS(3688), - [anon_sym_return] = ACTIONS(3688), - [anon_sym_break] = ACTIONS(3688), - [anon_sym_continue] = ACTIONS(3688), - [anon_sym_goto] = ACTIONS(3688), - [anon_sym___try] = ACTIONS(3688), - [anon_sym___leave] = ACTIONS(3688), - [anon_sym_not] = ACTIONS(3688), - [anon_sym_compl] = ACTIONS(3688), - [anon_sym_DASH_DASH] = ACTIONS(3690), - [anon_sym_PLUS_PLUS] = ACTIONS(3690), - [anon_sym_sizeof] = ACTIONS(3688), - [anon_sym___alignof__] = ACTIONS(3688), - [anon_sym___alignof] = ACTIONS(3688), - [anon_sym__alignof] = ACTIONS(3688), - [anon_sym_alignof] = ACTIONS(3688), - [anon_sym__Alignof] = ACTIONS(3688), - [anon_sym_offsetof] = ACTIONS(3688), - [anon_sym__Generic] = ACTIONS(3688), - [anon_sym_typename] = ACTIONS(3688), - [anon_sym_asm] = ACTIONS(3688), - [anon_sym___asm__] = ACTIONS(3688), - [anon_sym___asm] = ACTIONS(3688), - [sym_number_literal] = ACTIONS(3690), - [anon_sym_L_SQUOTE] = ACTIONS(3690), - [anon_sym_u_SQUOTE] = ACTIONS(3690), - [anon_sym_U_SQUOTE] = ACTIONS(3690), - [anon_sym_u8_SQUOTE] = ACTIONS(3690), - [anon_sym_SQUOTE] = ACTIONS(3690), - [anon_sym_L_DQUOTE] = ACTIONS(3690), - [anon_sym_u_DQUOTE] = ACTIONS(3690), - [anon_sym_U_DQUOTE] = ACTIONS(3690), - [anon_sym_u8_DQUOTE] = ACTIONS(3690), - [anon_sym_DQUOTE] = ACTIONS(3690), - [sym_true] = ACTIONS(3688), - [sym_false] = ACTIONS(3688), - [anon_sym_NULL] = ACTIONS(3688), - [anon_sym_nullptr] = ACTIONS(3688), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3688), - [anon_sym_decltype] = ACTIONS(3688), - [anon_sym_explicit] = ACTIONS(3688), - [anon_sym_template] = ACTIONS(3688), - [anon_sym_operator] = ACTIONS(3688), - [anon_sym_try] = ACTIONS(3688), - [anon_sym_delete] = ACTIONS(3688), - [anon_sym_throw] = ACTIONS(3688), - [anon_sym_namespace] = ACTIONS(3688), - [anon_sym_static_assert] = ACTIONS(3688), - [anon_sym_concept] = ACTIONS(3688), - [anon_sym_co_return] = ACTIONS(3688), - [anon_sym_co_yield] = ACTIONS(3688), - [anon_sym_R_DQUOTE] = ACTIONS(3690), - [anon_sym_LR_DQUOTE] = ACTIONS(3690), - [anon_sym_uR_DQUOTE] = ACTIONS(3690), - [anon_sym_UR_DQUOTE] = ACTIONS(3690), - [anon_sym_u8R_DQUOTE] = ACTIONS(3690), - [anon_sym_co_await] = ACTIONS(3688), - [anon_sym_new] = ACTIONS(3688), - [anon_sym_requires] = ACTIONS(3688), - [anon_sym_CARET_CARET] = ACTIONS(3690), - [anon_sym_LBRACK_COLON] = ACTIONS(3690), - [sym_this] = ACTIONS(3688), + [STATE(502)] = { + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(7073), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(11167), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7912), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5230), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3784), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3786), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(561)] = { - [sym_identifier] = ACTIONS(3696), - [aux_sym_preproc_include_token1] = ACTIONS(3696), - [aux_sym_preproc_def_token1] = ACTIONS(3696), - [aux_sym_preproc_if_token1] = ACTIONS(3696), - [aux_sym_preproc_if_token2] = ACTIONS(3696), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3696), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3696), - [sym_preproc_directive] = ACTIONS(3696), - [anon_sym_LPAREN2] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_TILDE] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3696), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym_SEMI] = ACTIONS(3698), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3696), - [anon_sym_virtual] = ACTIONS(3696), - [anon_sym_extern] = ACTIONS(3696), - [anon_sym___attribute__] = ACTIONS(3696), - [anon_sym___attribute] = ACTIONS(3696), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3698), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3698), - [anon_sym___declspec] = ACTIONS(3696), - [anon_sym___based] = ACTIONS(3696), - [anon_sym___cdecl] = ACTIONS(3696), - [anon_sym___clrcall] = ACTIONS(3696), - [anon_sym___stdcall] = ACTIONS(3696), - [anon_sym___fastcall] = ACTIONS(3696), - [anon_sym___thiscall] = ACTIONS(3696), - [anon_sym___vectorcall] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3698), - [anon_sym_signed] = ACTIONS(3696), - [anon_sym_unsigned] = ACTIONS(3696), - [anon_sym_long] = ACTIONS(3696), - [anon_sym_short] = ACTIONS(3696), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_static] = ACTIONS(3696), - [anon_sym_register] = ACTIONS(3696), - [anon_sym_inline] = ACTIONS(3696), - [anon_sym___inline] = ACTIONS(3696), - [anon_sym___inline__] = ACTIONS(3696), - [anon_sym___forceinline] = ACTIONS(3696), - [anon_sym_thread_local] = ACTIONS(3696), - [anon_sym___thread] = ACTIONS(3696), - [anon_sym_const] = ACTIONS(3696), - [anon_sym_constexpr] = ACTIONS(3696), - [anon_sym_volatile] = ACTIONS(3696), - [anon_sym_restrict] = ACTIONS(3696), - [anon_sym___restrict__] = ACTIONS(3696), - [anon_sym__Atomic] = ACTIONS(3696), - [anon_sym__Noreturn] = ACTIONS(3696), - [anon_sym_noreturn] = ACTIONS(3696), - [anon_sym__Nonnull] = ACTIONS(3696), - [anon_sym_mutable] = ACTIONS(3696), - [anon_sym_constinit] = ACTIONS(3696), - [anon_sym_consteval] = ACTIONS(3696), - [anon_sym_alignas] = ACTIONS(3696), - [anon_sym__Alignas] = ACTIONS(3696), - [sym_primitive_type] = ACTIONS(3696), - [anon_sym_enum] = ACTIONS(3696), - [anon_sym_class] = ACTIONS(3696), - [anon_sym_struct] = ACTIONS(3696), - [anon_sym_union] = ACTIONS(3696), - [anon_sym_if] = ACTIONS(3696), - [anon_sym_else] = ACTIONS(3696), - [anon_sym_switch] = ACTIONS(3696), - [anon_sym_case] = ACTIONS(3696), - [anon_sym_default] = ACTIONS(3696), - [anon_sym_while] = ACTIONS(3696), - [anon_sym_do] = ACTIONS(3696), - [anon_sym_for] = ACTIONS(3696), - [anon_sym_return] = ACTIONS(3696), - [anon_sym_break] = ACTIONS(3696), - [anon_sym_continue] = ACTIONS(3696), - [anon_sym_goto] = ACTIONS(3696), - [anon_sym___try] = ACTIONS(3696), - [anon_sym___leave] = ACTIONS(3696), - [anon_sym_not] = ACTIONS(3696), - [anon_sym_compl] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3698), - [anon_sym_sizeof] = ACTIONS(3696), - [anon_sym___alignof__] = ACTIONS(3696), - [anon_sym___alignof] = ACTIONS(3696), - [anon_sym__alignof] = ACTIONS(3696), - [anon_sym_alignof] = ACTIONS(3696), - [anon_sym__Alignof] = ACTIONS(3696), - [anon_sym_offsetof] = ACTIONS(3696), - [anon_sym__Generic] = ACTIONS(3696), - [anon_sym_typename] = ACTIONS(3696), - [anon_sym_asm] = ACTIONS(3696), - [anon_sym___asm__] = ACTIONS(3696), - [anon_sym___asm] = ACTIONS(3696), - [sym_number_literal] = ACTIONS(3698), - [anon_sym_L_SQUOTE] = ACTIONS(3698), - [anon_sym_u_SQUOTE] = ACTIONS(3698), - [anon_sym_U_SQUOTE] = ACTIONS(3698), - [anon_sym_u8_SQUOTE] = ACTIONS(3698), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_L_DQUOTE] = ACTIONS(3698), - [anon_sym_u_DQUOTE] = ACTIONS(3698), - [anon_sym_U_DQUOTE] = ACTIONS(3698), - [anon_sym_u8_DQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3698), - [sym_true] = ACTIONS(3696), - [sym_false] = ACTIONS(3696), - [anon_sym_NULL] = ACTIONS(3696), - [anon_sym_nullptr] = ACTIONS(3696), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3696), - [anon_sym_decltype] = ACTIONS(3696), - [anon_sym_explicit] = ACTIONS(3696), - [anon_sym_template] = ACTIONS(3696), - [anon_sym_operator] = ACTIONS(3696), - [anon_sym_try] = ACTIONS(3696), - [anon_sym_delete] = ACTIONS(3696), - [anon_sym_throw] = ACTIONS(3696), - [anon_sym_namespace] = ACTIONS(3696), - [anon_sym_static_assert] = ACTIONS(3696), - [anon_sym_concept] = ACTIONS(3696), - [anon_sym_co_return] = ACTIONS(3696), - [anon_sym_co_yield] = ACTIONS(3696), - [anon_sym_R_DQUOTE] = ACTIONS(3698), - [anon_sym_LR_DQUOTE] = ACTIONS(3698), - [anon_sym_uR_DQUOTE] = ACTIONS(3698), - [anon_sym_UR_DQUOTE] = ACTIONS(3698), - [anon_sym_u8R_DQUOTE] = ACTIONS(3698), - [anon_sym_co_await] = ACTIONS(3696), - [anon_sym_new] = ACTIONS(3696), - [anon_sym_requires] = ACTIONS(3696), - [anon_sym_CARET_CARET] = ACTIONS(3698), - [anon_sym_LBRACK_COLON] = ACTIONS(3698), - [sym_this] = ACTIONS(3696), + [STATE(503)] = { + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(7074), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(11246), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7912), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5230), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3784), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3786), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(562)] = { - [sym_identifier] = ACTIONS(3720), - [aux_sym_preproc_include_token1] = ACTIONS(3720), - [aux_sym_preproc_def_token1] = ACTIONS(3720), - [aux_sym_preproc_if_token1] = ACTIONS(3720), - [aux_sym_preproc_if_token2] = ACTIONS(3720), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3720), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3720), - [sym_preproc_directive] = ACTIONS(3720), - [anon_sym_LPAREN2] = ACTIONS(3722), - [anon_sym_BANG] = ACTIONS(3722), - [anon_sym_TILDE] = ACTIONS(3722), - [anon_sym_DASH] = ACTIONS(3720), - [anon_sym_PLUS] = ACTIONS(3720), - [anon_sym_STAR] = ACTIONS(3722), - [anon_sym_AMP_AMP] = ACTIONS(3722), - [anon_sym_AMP] = ACTIONS(3720), - [anon_sym_SEMI] = ACTIONS(3722), - [anon_sym___extension__] = ACTIONS(3720), - [anon_sym_typedef] = ACTIONS(3720), - [anon_sym_virtual] = ACTIONS(3720), - [anon_sym_extern] = ACTIONS(3720), - [anon_sym___attribute__] = ACTIONS(3720), - [anon_sym___attribute] = ACTIONS(3720), - [anon_sym_using] = ACTIONS(3720), - [anon_sym_COLON_COLON] = ACTIONS(3722), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3722), - [anon_sym___declspec] = ACTIONS(3720), - [anon_sym___based] = ACTIONS(3720), - [anon_sym___cdecl] = ACTIONS(3720), - [anon_sym___clrcall] = ACTIONS(3720), - [anon_sym___stdcall] = ACTIONS(3720), - [anon_sym___fastcall] = ACTIONS(3720), - [anon_sym___thiscall] = ACTIONS(3720), - [anon_sym___vectorcall] = ACTIONS(3720), - [anon_sym_LBRACE] = ACTIONS(3722), - [anon_sym_signed] = ACTIONS(3720), - [anon_sym_unsigned] = ACTIONS(3720), - [anon_sym_long] = ACTIONS(3720), - [anon_sym_short] = ACTIONS(3720), - [anon_sym_LBRACK] = ACTIONS(3720), - [anon_sym_static] = ACTIONS(3720), - [anon_sym_register] = ACTIONS(3720), - [anon_sym_inline] = ACTIONS(3720), - [anon_sym___inline] = ACTIONS(3720), - [anon_sym___inline__] = ACTIONS(3720), - [anon_sym___forceinline] = ACTIONS(3720), - [anon_sym_thread_local] = ACTIONS(3720), - [anon_sym___thread] = ACTIONS(3720), - [anon_sym_const] = ACTIONS(3720), - [anon_sym_constexpr] = ACTIONS(3720), - [anon_sym_volatile] = ACTIONS(3720), - [anon_sym_restrict] = ACTIONS(3720), - [anon_sym___restrict__] = ACTIONS(3720), - [anon_sym__Atomic] = ACTIONS(3720), - [anon_sym__Noreturn] = ACTIONS(3720), - [anon_sym_noreturn] = ACTIONS(3720), - [anon_sym__Nonnull] = ACTIONS(3720), - [anon_sym_mutable] = ACTIONS(3720), - [anon_sym_constinit] = ACTIONS(3720), - [anon_sym_consteval] = ACTIONS(3720), - [anon_sym_alignas] = ACTIONS(3720), - [anon_sym__Alignas] = ACTIONS(3720), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3720), - [anon_sym_class] = ACTIONS(3720), - [anon_sym_struct] = ACTIONS(3720), - [anon_sym_union] = ACTIONS(3720), - [anon_sym_if] = ACTIONS(3720), - [anon_sym_else] = ACTIONS(3720), - [anon_sym_switch] = ACTIONS(3720), - [anon_sym_case] = ACTIONS(3720), - [anon_sym_default] = ACTIONS(3720), - [anon_sym_while] = ACTIONS(3720), - [anon_sym_do] = ACTIONS(3720), - [anon_sym_for] = ACTIONS(3720), - [anon_sym_return] = ACTIONS(3720), - [anon_sym_break] = ACTIONS(3720), - [anon_sym_continue] = ACTIONS(3720), - [anon_sym_goto] = ACTIONS(3720), - [anon_sym___try] = ACTIONS(3720), - [anon_sym___leave] = ACTIONS(3720), - [anon_sym_not] = ACTIONS(3720), - [anon_sym_compl] = ACTIONS(3720), - [anon_sym_DASH_DASH] = ACTIONS(3722), - [anon_sym_PLUS_PLUS] = ACTIONS(3722), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3720), - [anon_sym___alignof] = ACTIONS(3720), - [anon_sym__alignof] = ACTIONS(3720), - [anon_sym_alignof] = ACTIONS(3720), - [anon_sym__Alignof] = ACTIONS(3720), - [anon_sym_offsetof] = ACTIONS(3720), - [anon_sym__Generic] = ACTIONS(3720), - [anon_sym_typename] = ACTIONS(3720), - [anon_sym_asm] = ACTIONS(3720), - [anon_sym___asm__] = ACTIONS(3720), - [anon_sym___asm] = ACTIONS(3720), - [sym_number_literal] = ACTIONS(3722), - [anon_sym_L_SQUOTE] = ACTIONS(3722), - [anon_sym_u_SQUOTE] = ACTIONS(3722), - [anon_sym_U_SQUOTE] = ACTIONS(3722), - [anon_sym_u8_SQUOTE] = ACTIONS(3722), - [anon_sym_SQUOTE] = ACTIONS(3722), - [anon_sym_L_DQUOTE] = ACTIONS(3722), - [anon_sym_u_DQUOTE] = ACTIONS(3722), - [anon_sym_U_DQUOTE] = ACTIONS(3722), - [anon_sym_u8_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE] = ACTIONS(3722), - [sym_true] = ACTIONS(3720), - [sym_false] = ACTIONS(3720), - [anon_sym_NULL] = ACTIONS(3720), - [anon_sym_nullptr] = ACTIONS(3720), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3720), - [anon_sym_decltype] = ACTIONS(3720), - [anon_sym_explicit] = ACTIONS(3720), - [anon_sym_template] = ACTIONS(3720), - [anon_sym_operator] = ACTIONS(3720), - [anon_sym_try] = ACTIONS(3720), - [anon_sym_delete] = ACTIONS(3720), - [anon_sym_throw] = ACTIONS(3720), - [anon_sym_namespace] = ACTIONS(3720), - [anon_sym_static_assert] = ACTIONS(3720), - [anon_sym_concept] = ACTIONS(3720), - [anon_sym_co_return] = ACTIONS(3720), - [anon_sym_co_yield] = ACTIONS(3720), - [anon_sym_R_DQUOTE] = ACTIONS(3722), - [anon_sym_LR_DQUOTE] = ACTIONS(3722), - [anon_sym_uR_DQUOTE] = ACTIONS(3722), - [anon_sym_UR_DQUOTE] = ACTIONS(3722), - [anon_sym_u8R_DQUOTE] = ACTIONS(3722), - [anon_sym_co_await] = ACTIONS(3720), - [anon_sym_new] = ACTIONS(3720), - [anon_sym_requires] = ACTIONS(3720), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(3722), - [sym_this] = ACTIONS(3720), + [STATE(504)] = { + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(7194), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(11278), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7912), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5230), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3784), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3786), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(563)] = { - [sym_identifier] = ACTIONS(3732), - [aux_sym_preproc_include_token1] = ACTIONS(3732), - [aux_sym_preproc_def_token1] = ACTIONS(3732), - [aux_sym_preproc_if_token1] = ACTIONS(3732), - [aux_sym_preproc_if_token2] = ACTIONS(3732), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3732), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3732), - [sym_preproc_directive] = ACTIONS(3732), - [anon_sym_LPAREN2] = ACTIONS(3734), - [anon_sym_BANG] = ACTIONS(3734), - [anon_sym_TILDE] = ACTIONS(3734), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3734), - [anon_sym_AMP_AMP] = ACTIONS(3734), - [anon_sym_AMP] = ACTIONS(3732), - [anon_sym_SEMI] = ACTIONS(3734), - [anon_sym___extension__] = ACTIONS(3732), - [anon_sym_typedef] = ACTIONS(3732), - [anon_sym_virtual] = ACTIONS(3732), - [anon_sym_extern] = ACTIONS(3732), - [anon_sym___attribute__] = ACTIONS(3732), - [anon_sym___attribute] = ACTIONS(3732), - [anon_sym_using] = ACTIONS(3732), - [anon_sym_COLON_COLON] = ACTIONS(3734), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3734), - [anon_sym___declspec] = ACTIONS(3732), - [anon_sym___based] = ACTIONS(3732), - [anon_sym___cdecl] = ACTIONS(3732), - [anon_sym___clrcall] = ACTIONS(3732), - [anon_sym___stdcall] = ACTIONS(3732), - [anon_sym___fastcall] = ACTIONS(3732), - [anon_sym___thiscall] = ACTIONS(3732), - [anon_sym___vectorcall] = ACTIONS(3732), - [anon_sym_LBRACE] = ACTIONS(3734), - [anon_sym_signed] = ACTIONS(3732), - [anon_sym_unsigned] = ACTIONS(3732), - [anon_sym_long] = ACTIONS(3732), - [anon_sym_short] = ACTIONS(3732), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_static] = ACTIONS(3732), - [anon_sym_register] = ACTIONS(3732), - [anon_sym_inline] = ACTIONS(3732), - [anon_sym___inline] = ACTIONS(3732), - [anon_sym___inline__] = ACTIONS(3732), - [anon_sym___forceinline] = ACTIONS(3732), - [anon_sym_thread_local] = ACTIONS(3732), - [anon_sym___thread] = ACTIONS(3732), - [anon_sym_const] = ACTIONS(3732), - [anon_sym_constexpr] = ACTIONS(3732), - [anon_sym_volatile] = ACTIONS(3732), - [anon_sym_restrict] = ACTIONS(3732), - [anon_sym___restrict__] = ACTIONS(3732), - [anon_sym__Atomic] = ACTIONS(3732), - [anon_sym__Noreturn] = ACTIONS(3732), - [anon_sym_noreturn] = ACTIONS(3732), - [anon_sym__Nonnull] = ACTIONS(3732), - [anon_sym_mutable] = ACTIONS(3732), - [anon_sym_constinit] = ACTIONS(3732), - [anon_sym_consteval] = ACTIONS(3732), - [anon_sym_alignas] = ACTIONS(3732), - [anon_sym__Alignas] = ACTIONS(3732), - [sym_primitive_type] = ACTIONS(3732), - [anon_sym_enum] = ACTIONS(3732), - [anon_sym_class] = ACTIONS(3732), - [anon_sym_struct] = ACTIONS(3732), - [anon_sym_union] = ACTIONS(3732), - [anon_sym_if] = ACTIONS(3732), - [anon_sym_else] = ACTIONS(3732), - [anon_sym_switch] = ACTIONS(3732), - [anon_sym_case] = ACTIONS(3732), - [anon_sym_default] = ACTIONS(3732), - [anon_sym_while] = ACTIONS(3732), - [anon_sym_do] = ACTIONS(3732), - [anon_sym_for] = ACTIONS(3732), - [anon_sym_return] = ACTIONS(3732), - [anon_sym_break] = ACTIONS(3732), - [anon_sym_continue] = ACTIONS(3732), - [anon_sym_goto] = ACTIONS(3732), - [anon_sym___try] = ACTIONS(3732), - [anon_sym___leave] = ACTIONS(3732), - [anon_sym_not] = ACTIONS(3732), - [anon_sym_compl] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3734), - [anon_sym_PLUS_PLUS] = ACTIONS(3734), - [anon_sym_sizeof] = ACTIONS(3732), - [anon_sym___alignof__] = ACTIONS(3732), - [anon_sym___alignof] = ACTIONS(3732), - [anon_sym__alignof] = ACTIONS(3732), - [anon_sym_alignof] = ACTIONS(3732), - [anon_sym__Alignof] = ACTIONS(3732), - [anon_sym_offsetof] = ACTIONS(3732), - [anon_sym__Generic] = ACTIONS(3732), - [anon_sym_typename] = ACTIONS(3732), - [anon_sym_asm] = ACTIONS(3732), - [anon_sym___asm__] = ACTIONS(3732), - [anon_sym___asm] = ACTIONS(3732), - [sym_number_literal] = ACTIONS(3734), - [anon_sym_L_SQUOTE] = ACTIONS(3734), - [anon_sym_u_SQUOTE] = ACTIONS(3734), - [anon_sym_U_SQUOTE] = ACTIONS(3734), - [anon_sym_u8_SQUOTE] = ACTIONS(3734), - [anon_sym_SQUOTE] = ACTIONS(3734), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3732), - [sym_false] = ACTIONS(3732), - [anon_sym_NULL] = ACTIONS(3732), - [anon_sym_nullptr] = ACTIONS(3732), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3732), - [anon_sym_decltype] = ACTIONS(3732), - [anon_sym_explicit] = ACTIONS(3732), - [anon_sym_template] = ACTIONS(3732), - [anon_sym_operator] = ACTIONS(3732), - [anon_sym_try] = ACTIONS(3732), - [anon_sym_delete] = ACTIONS(3732), - [anon_sym_throw] = ACTIONS(3732), - [anon_sym_namespace] = ACTIONS(3732), - [anon_sym_static_assert] = ACTIONS(3732), - [anon_sym_concept] = ACTIONS(3732), - [anon_sym_co_return] = ACTIONS(3732), - [anon_sym_co_yield] = ACTIONS(3732), - [anon_sym_R_DQUOTE] = ACTIONS(3734), - [anon_sym_LR_DQUOTE] = ACTIONS(3734), - [anon_sym_uR_DQUOTE] = ACTIONS(3734), - [anon_sym_UR_DQUOTE] = ACTIONS(3734), - [anon_sym_u8R_DQUOTE] = ACTIONS(3734), - [anon_sym_co_await] = ACTIONS(3732), - [anon_sym_new] = ACTIONS(3732), - [anon_sym_requires] = ACTIONS(3732), - [anon_sym_CARET_CARET] = ACTIONS(3734), - [anon_sym_LBRACK_COLON] = ACTIONS(3734), - [sym_this] = ACTIONS(3732), + [STATE(505)] = { + [sym_type_qualifier] = STATE(5167), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(7223), + [sym_sized_type_specifier] = STATE(3100), + [sym_enum_specifier] = STATE(3100), + [sym_struct_specifier] = STATE(3100), + [sym_union_specifier] = STATE(3100), + [sym_expression] = STATE(7076), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_type_descriptor] = STATE(11318), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_placeholder_type_specifier] = STATE(3100), + [sym_decltype_auto] = STATE(3197), + [sym_decltype] = STATE(3021), + [sym_class_specifier] = STATE(3100), + [sym__class_name] = STATE(10231), + [sym_dependent_type] = STATE(3100), + [sym_template_type] = STATE(3870), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7912), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(3974), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5230), + [sym__splice_specialization_specifier] = STATE(3028), + [sym_splice_type_specifier] = STATE(3484), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym__type_definition_type_repeat1] = STATE(5167), + [aux_sym_sized_type_specifier_repeat1] = STATE(2852), + [sym_identifier] = ACTIONS(3784), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3786), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(564)] = { - [ts_builtin_sym_end] = ACTIONS(4259), - [sym_identifier] = ACTIONS(4261), - [aux_sym_preproc_include_token1] = ACTIONS(4261), - [aux_sym_preproc_def_token1] = ACTIONS(4261), - [aux_sym_preproc_if_token1] = ACTIONS(4261), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4261), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4261), - [sym_preproc_directive] = ACTIONS(4261), - [anon_sym_LPAREN2] = ACTIONS(4259), - [anon_sym_BANG] = ACTIONS(4259), - [anon_sym_TILDE] = ACTIONS(4259), - [anon_sym_DASH] = ACTIONS(4261), - [anon_sym_PLUS] = ACTIONS(4261), - [anon_sym_STAR] = ACTIONS(4259), - [anon_sym_AMP_AMP] = ACTIONS(4259), - [anon_sym_AMP] = ACTIONS(4261), - [anon_sym_SEMI] = ACTIONS(4259), - [anon_sym___extension__] = ACTIONS(4261), - [anon_sym_typedef] = ACTIONS(4261), - [anon_sym_virtual] = ACTIONS(4261), - [anon_sym_extern] = ACTIONS(4261), - [anon_sym___attribute__] = ACTIONS(4261), - [anon_sym___attribute] = ACTIONS(4261), - [anon_sym_using] = ACTIONS(4261), - [anon_sym_COLON_COLON] = ACTIONS(4259), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4259), - [anon_sym___declspec] = ACTIONS(4261), - [anon_sym___based] = ACTIONS(4261), - [anon_sym___cdecl] = ACTIONS(4261), - [anon_sym___clrcall] = ACTIONS(4261), - [anon_sym___stdcall] = ACTIONS(4261), - [anon_sym___fastcall] = ACTIONS(4261), - [anon_sym___thiscall] = ACTIONS(4261), - [anon_sym___vectorcall] = ACTIONS(4261), - [anon_sym_LBRACE] = ACTIONS(4259), - [anon_sym_signed] = ACTIONS(4261), - [anon_sym_unsigned] = ACTIONS(4261), - [anon_sym_long] = ACTIONS(4261), - [anon_sym_short] = ACTIONS(4261), - [anon_sym_LBRACK] = ACTIONS(4261), - [anon_sym_static] = ACTIONS(4261), - [anon_sym_register] = ACTIONS(4261), - [anon_sym_inline] = ACTIONS(4261), - [anon_sym___inline] = ACTIONS(4261), - [anon_sym___inline__] = ACTIONS(4261), - [anon_sym___forceinline] = ACTIONS(4261), - [anon_sym_thread_local] = ACTIONS(4261), - [anon_sym___thread] = ACTIONS(4261), - [anon_sym_const] = ACTIONS(4261), - [anon_sym_constexpr] = ACTIONS(4261), - [anon_sym_volatile] = ACTIONS(4261), - [anon_sym_restrict] = ACTIONS(4261), - [anon_sym___restrict__] = ACTIONS(4261), - [anon_sym__Atomic] = ACTIONS(4261), - [anon_sym__Noreturn] = ACTIONS(4261), - [anon_sym_noreturn] = ACTIONS(4261), - [anon_sym__Nonnull] = ACTIONS(4261), - [anon_sym_mutable] = ACTIONS(4261), - [anon_sym_constinit] = ACTIONS(4261), - [anon_sym_consteval] = ACTIONS(4261), - [anon_sym_alignas] = ACTIONS(4261), - [anon_sym__Alignas] = ACTIONS(4261), - [sym_primitive_type] = ACTIONS(4261), - [anon_sym_enum] = ACTIONS(4261), - [anon_sym_class] = ACTIONS(4261), - [anon_sym_struct] = ACTIONS(4261), - [anon_sym_union] = ACTIONS(4261), - [anon_sym_if] = ACTIONS(4261), - [anon_sym_switch] = ACTIONS(4261), - [anon_sym_case] = ACTIONS(4261), - [anon_sym_default] = ACTIONS(4261), - [anon_sym_while] = ACTIONS(4261), - [anon_sym_do] = ACTIONS(4261), - [anon_sym_for] = ACTIONS(4261), - [anon_sym_return] = ACTIONS(4261), - [anon_sym_break] = ACTIONS(4261), - [anon_sym_continue] = ACTIONS(4261), - [anon_sym_goto] = ACTIONS(4261), - [anon_sym_not] = ACTIONS(4261), - [anon_sym_compl] = ACTIONS(4261), - [anon_sym_DASH_DASH] = ACTIONS(4259), - [anon_sym_PLUS_PLUS] = ACTIONS(4259), - [anon_sym_sizeof] = ACTIONS(4261), - [anon_sym___alignof__] = ACTIONS(4261), - [anon_sym___alignof] = ACTIONS(4261), - [anon_sym__alignof] = ACTIONS(4261), - [anon_sym_alignof] = ACTIONS(4261), - [anon_sym__Alignof] = ACTIONS(4261), - [anon_sym_offsetof] = ACTIONS(4261), - [anon_sym__Generic] = ACTIONS(4261), - [anon_sym_typename] = ACTIONS(4261), - [anon_sym_asm] = ACTIONS(4261), - [anon_sym___asm__] = ACTIONS(4261), - [anon_sym___asm] = ACTIONS(4261), - [sym_number_literal] = ACTIONS(4259), - [anon_sym_L_SQUOTE] = ACTIONS(4259), - [anon_sym_u_SQUOTE] = ACTIONS(4259), - [anon_sym_U_SQUOTE] = ACTIONS(4259), - [anon_sym_u8_SQUOTE] = ACTIONS(4259), - [anon_sym_SQUOTE] = ACTIONS(4259), - [anon_sym_L_DQUOTE] = ACTIONS(4259), - [anon_sym_u_DQUOTE] = ACTIONS(4259), - [anon_sym_U_DQUOTE] = ACTIONS(4259), - [anon_sym_u8_DQUOTE] = ACTIONS(4259), - [anon_sym_DQUOTE] = ACTIONS(4259), - [sym_true] = ACTIONS(4261), - [sym_false] = ACTIONS(4261), - [anon_sym_NULL] = ACTIONS(4261), - [anon_sym_nullptr] = ACTIONS(4261), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4261), - [anon_sym_decltype] = ACTIONS(4261), - [anon_sym_explicit] = ACTIONS(4261), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_module] = ACTIONS(4261), - [anon_sym_import] = ACTIONS(4261), - [anon_sym_template] = ACTIONS(4261), - [anon_sym_operator] = ACTIONS(4261), - [anon_sym_try] = ACTIONS(4261), - [anon_sym_delete] = ACTIONS(4261), - [anon_sym_throw] = ACTIONS(4261), - [anon_sym_namespace] = ACTIONS(4261), - [anon_sym_static_assert] = ACTIONS(4261), - [anon_sym_concept] = ACTIONS(4261), - [anon_sym_co_return] = ACTIONS(4261), - [anon_sym_co_yield] = ACTIONS(4261), - [anon_sym_R_DQUOTE] = ACTIONS(4259), - [anon_sym_LR_DQUOTE] = ACTIONS(4259), - [anon_sym_uR_DQUOTE] = ACTIONS(4259), - [anon_sym_UR_DQUOTE] = ACTIONS(4259), - [anon_sym_u8R_DQUOTE] = ACTIONS(4259), - [anon_sym_co_await] = ACTIONS(4261), - [anon_sym_new] = ACTIONS(4261), - [anon_sym_requires] = ACTIONS(4261), - [anon_sym_CARET_CARET] = ACTIONS(4259), - [anon_sym_LBRACK_COLON] = ACTIONS(4259), - [sym_this] = ACTIONS(4261), + [STATE(506)] = { + [sym_identifier] = ACTIONS(4274), + [aux_sym_preproc_include_token1] = ACTIONS(4274), + [aux_sym_preproc_def_token1] = ACTIONS(4274), + [aux_sym_preproc_if_token1] = ACTIONS(4274), + [aux_sym_preproc_if_token2] = ACTIONS(4274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4274), + [aux_sym_preproc_else_token1] = ACTIONS(4274), + [aux_sym_preproc_elif_token1] = ACTIONS(4274), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4274), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4274), + [sym_preproc_directive] = ACTIONS(4274), + [anon_sym_LPAREN2] = ACTIONS(4276), + [anon_sym_BANG] = ACTIONS(4276), + [anon_sym_TILDE] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_AMP] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym___extension__] = ACTIONS(4274), + [anon_sym_typedef] = ACTIONS(4274), + [anon_sym_virtual] = ACTIONS(4274), + [anon_sym_extern] = ACTIONS(4274), + [anon_sym___attribute__] = ACTIONS(4274), + [anon_sym___attribute] = ACTIONS(4274), + [anon_sym_using] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4276), + [anon_sym___declspec] = ACTIONS(4274), + [anon_sym___based] = ACTIONS(4274), + [anon_sym___cdecl] = ACTIONS(4274), + [anon_sym___clrcall] = ACTIONS(4274), + [anon_sym___stdcall] = ACTIONS(4274), + [anon_sym___fastcall] = ACTIONS(4274), + [anon_sym___thiscall] = ACTIONS(4274), + [anon_sym___vectorcall] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(4276), + [anon_sym_signed] = ACTIONS(4274), + [anon_sym_unsigned] = ACTIONS(4274), + [anon_sym_long] = ACTIONS(4274), + [anon_sym_short] = ACTIONS(4274), + [anon_sym_LBRACK] = ACTIONS(4274), + [anon_sym_static] = ACTIONS(4274), + [anon_sym_register] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym___inline] = ACTIONS(4274), + [anon_sym___inline__] = ACTIONS(4274), + [anon_sym___forceinline] = ACTIONS(4274), + [anon_sym_thread_local] = ACTIONS(4274), + [anon_sym___thread] = ACTIONS(4274), + [anon_sym_const] = ACTIONS(4274), + [anon_sym_constexpr] = ACTIONS(4274), + [anon_sym_volatile] = ACTIONS(4274), + [anon_sym_restrict] = ACTIONS(4274), + [anon_sym___restrict__] = ACTIONS(4274), + [anon_sym__Atomic] = ACTIONS(4274), + [anon_sym__Noreturn] = ACTIONS(4274), + [anon_sym_noreturn] = ACTIONS(4274), + [anon_sym__Nonnull] = ACTIONS(4274), + [anon_sym_mutable] = ACTIONS(4274), + [anon_sym_constinit] = ACTIONS(4274), + [anon_sym_consteval] = ACTIONS(4274), + [anon_sym_alignas] = ACTIONS(4274), + [anon_sym__Alignas] = ACTIONS(4274), + [sym_primitive_type] = ACTIONS(4274), + [anon_sym_enum] = ACTIONS(4274), + [anon_sym_class] = ACTIONS(4274), + [anon_sym_struct] = ACTIONS(4274), + [anon_sym_union] = ACTIONS(4274), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_switch] = ACTIONS(4274), + [anon_sym_case] = ACTIONS(4274), + [anon_sym_default] = ACTIONS(4274), + [anon_sym_while] = ACTIONS(4274), + [anon_sym_do] = ACTIONS(4274), + [anon_sym_for] = ACTIONS(4274), + [anon_sym_return] = ACTIONS(4274), + [anon_sym_break] = ACTIONS(4274), + [anon_sym_continue] = ACTIONS(4274), + [anon_sym_goto] = ACTIONS(4274), + [anon_sym___try] = ACTIONS(4274), + [anon_sym___leave] = ACTIONS(4274), + [anon_sym_not] = ACTIONS(4274), + [anon_sym_compl] = ACTIONS(4274), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_sizeof] = ACTIONS(4274), + [anon_sym___alignof__] = ACTIONS(4274), + [anon_sym___alignof] = ACTIONS(4274), + [anon_sym__alignof] = ACTIONS(4274), + [anon_sym_alignof] = ACTIONS(4274), + [anon_sym__Alignof] = ACTIONS(4274), + [anon_sym_offsetof] = ACTIONS(4274), + [anon_sym__Generic] = ACTIONS(4274), + [anon_sym_typename] = ACTIONS(4274), + [anon_sym_asm] = ACTIONS(4274), + [anon_sym___asm__] = ACTIONS(4274), + [anon_sym___asm] = ACTIONS(4274), + [sym_number_literal] = ACTIONS(4276), + [anon_sym_L_SQUOTE] = ACTIONS(4276), + [anon_sym_u_SQUOTE] = ACTIONS(4276), + [anon_sym_U_SQUOTE] = ACTIONS(4276), + [anon_sym_u8_SQUOTE] = ACTIONS(4276), + [anon_sym_SQUOTE] = ACTIONS(4276), + [anon_sym_L_DQUOTE] = ACTIONS(4276), + [anon_sym_u_DQUOTE] = ACTIONS(4276), + [anon_sym_U_DQUOTE] = ACTIONS(4276), + [anon_sym_u8_DQUOTE] = ACTIONS(4276), + [anon_sym_DQUOTE] = ACTIONS(4276), + [sym_true] = ACTIONS(4274), + [sym_false] = ACTIONS(4274), + [anon_sym_NULL] = ACTIONS(4274), + [anon_sym_nullptr] = ACTIONS(4274), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4274), + [anon_sym_decltype] = ACTIONS(4274), + [anon_sym_explicit] = ACTIONS(4274), + [anon_sym_export] = ACTIONS(4274), + [anon_sym_module] = ACTIONS(4274), + [anon_sym_import] = ACTIONS(4274), + [anon_sym_template] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_try] = ACTIONS(4274), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_throw] = ACTIONS(4274), + [anon_sym_namespace] = ACTIONS(4274), + [anon_sym_static_assert] = ACTIONS(4274), + [anon_sym_concept] = ACTIONS(4274), + [anon_sym_co_return] = ACTIONS(4274), + [anon_sym_co_yield] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4274), + [anon_sym_new] = ACTIONS(4274), + [anon_sym_requires] = ACTIONS(4274), + [anon_sym_CARET_CARET] = ACTIONS(4276), + [anon_sym_LBRACK_COLON] = ACTIONS(4276), + [sym_this] = ACTIONS(4274), }, - [STATE(565)] = { - [sym_identifier] = ACTIONS(3660), - [aux_sym_preproc_include_token1] = ACTIONS(3660), - [aux_sym_preproc_def_token1] = ACTIONS(3660), - [aux_sym_preproc_if_token1] = ACTIONS(3660), - [aux_sym_preproc_if_token2] = ACTIONS(3660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3660), - [sym_preproc_directive] = ACTIONS(3660), - [anon_sym_LPAREN2] = ACTIONS(3662), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_TILDE] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym___extension__] = ACTIONS(3660), - [anon_sym_typedef] = ACTIONS(3660), - [anon_sym_virtual] = ACTIONS(3660), - [anon_sym_extern] = ACTIONS(3660), - [anon_sym___attribute__] = ACTIONS(3660), - [anon_sym___attribute] = ACTIONS(3660), - [anon_sym_using] = ACTIONS(3660), - [anon_sym_COLON_COLON] = ACTIONS(3662), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), - [anon_sym___declspec] = ACTIONS(3660), - [anon_sym___based] = ACTIONS(3660), - [anon_sym___cdecl] = ACTIONS(3660), - [anon_sym___clrcall] = ACTIONS(3660), - [anon_sym___stdcall] = ACTIONS(3660), - [anon_sym___fastcall] = ACTIONS(3660), - [anon_sym___thiscall] = ACTIONS(3660), - [anon_sym___vectorcall] = ACTIONS(3660), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_signed] = ACTIONS(3660), - [anon_sym_unsigned] = ACTIONS(3660), - [anon_sym_long] = ACTIONS(3660), - [anon_sym_short] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_static] = ACTIONS(3660), - [anon_sym_register] = ACTIONS(3660), - [anon_sym_inline] = ACTIONS(3660), - [anon_sym___inline] = ACTIONS(3660), - [anon_sym___inline__] = ACTIONS(3660), - [anon_sym___forceinline] = ACTIONS(3660), - [anon_sym_thread_local] = ACTIONS(3660), - [anon_sym___thread] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3660), - [anon_sym_constexpr] = ACTIONS(3660), - [anon_sym_volatile] = ACTIONS(3660), - [anon_sym_restrict] = ACTIONS(3660), - [anon_sym___restrict__] = ACTIONS(3660), - [anon_sym__Atomic] = ACTIONS(3660), - [anon_sym__Noreturn] = ACTIONS(3660), - [anon_sym_noreturn] = ACTIONS(3660), - [anon_sym__Nonnull] = ACTIONS(3660), - [anon_sym_mutable] = ACTIONS(3660), - [anon_sym_constinit] = ACTIONS(3660), - [anon_sym_consteval] = ACTIONS(3660), - [anon_sym_alignas] = ACTIONS(3660), - [anon_sym__Alignas] = ACTIONS(3660), - [sym_primitive_type] = ACTIONS(3660), - [anon_sym_enum] = ACTIONS(3660), - [anon_sym_class] = ACTIONS(3660), - [anon_sym_struct] = ACTIONS(3660), - [anon_sym_union] = ACTIONS(3660), - [anon_sym_if] = ACTIONS(3660), - [anon_sym_else] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_case] = ACTIONS(3660), - [anon_sym_default] = ACTIONS(3660), - [anon_sym_while] = ACTIONS(3660), - [anon_sym_do] = ACTIONS(3660), - [anon_sym_for] = ACTIONS(3660), - [anon_sym_return] = ACTIONS(3660), - [anon_sym_break] = ACTIONS(3660), - [anon_sym_continue] = ACTIONS(3660), - [anon_sym_goto] = ACTIONS(3660), - [anon_sym___try] = ACTIONS(3660), - [anon_sym___leave] = ACTIONS(3660), - [anon_sym_not] = ACTIONS(3660), - [anon_sym_compl] = ACTIONS(3660), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_sizeof] = ACTIONS(3660), - [anon_sym___alignof__] = ACTIONS(3660), - [anon_sym___alignof] = ACTIONS(3660), - [anon_sym__alignof] = ACTIONS(3660), - [anon_sym_alignof] = ACTIONS(3660), - [anon_sym__Alignof] = ACTIONS(3660), - [anon_sym_offsetof] = ACTIONS(3660), - [anon_sym__Generic] = ACTIONS(3660), - [anon_sym_typename] = ACTIONS(3660), - [anon_sym_asm] = ACTIONS(3660), - [anon_sym___asm__] = ACTIONS(3660), - [anon_sym___asm] = ACTIONS(3660), - [sym_number_literal] = ACTIONS(3662), - [anon_sym_L_SQUOTE] = ACTIONS(3662), - [anon_sym_u_SQUOTE] = ACTIONS(3662), - [anon_sym_U_SQUOTE] = ACTIONS(3662), - [anon_sym_u8_SQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3662), - [anon_sym_L_DQUOTE] = ACTIONS(3662), - [anon_sym_u_DQUOTE] = ACTIONS(3662), - [anon_sym_U_DQUOTE] = ACTIONS(3662), - [anon_sym_u8_DQUOTE] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3662), - [sym_true] = ACTIONS(3660), - [sym_false] = ACTIONS(3660), - [anon_sym_NULL] = ACTIONS(3660), - [anon_sym_nullptr] = ACTIONS(3660), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3660), - [anon_sym_decltype] = ACTIONS(3660), - [anon_sym_explicit] = ACTIONS(3660), - [anon_sym_template] = ACTIONS(3660), - [anon_sym_operator] = ACTIONS(3660), - [anon_sym_try] = ACTIONS(3660), - [anon_sym_delete] = ACTIONS(3660), - [anon_sym_throw] = ACTIONS(3660), - [anon_sym_namespace] = ACTIONS(3660), - [anon_sym_static_assert] = ACTIONS(3660), - [anon_sym_concept] = ACTIONS(3660), - [anon_sym_co_return] = ACTIONS(3660), - [anon_sym_co_yield] = ACTIONS(3660), - [anon_sym_R_DQUOTE] = ACTIONS(3662), - [anon_sym_LR_DQUOTE] = ACTIONS(3662), - [anon_sym_uR_DQUOTE] = ACTIONS(3662), - [anon_sym_UR_DQUOTE] = ACTIONS(3662), - [anon_sym_u8R_DQUOTE] = ACTIONS(3662), - [anon_sym_co_await] = ACTIONS(3660), - [anon_sym_new] = ACTIONS(3660), - [anon_sym_requires] = ACTIONS(3660), - [anon_sym_CARET_CARET] = ACTIONS(3662), - [anon_sym_LBRACK_COLON] = ACTIONS(3662), - [sym_this] = ACTIONS(3660), + [STATE(507)] = { + [sym_identifier] = ACTIONS(4278), + [aux_sym_preproc_include_token1] = ACTIONS(4278), + [aux_sym_preproc_def_token1] = ACTIONS(4278), + [aux_sym_preproc_if_token1] = ACTIONS(4278), + [aux_sym_preproc_if_token2] = ACTIONS(4278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4278), + [aux_sym_preproc_else_token1] = ACTIONS(4278), + [aux_sym_preproc_elif_token1] = ACTIONS(4278), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4278), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4278), + [sym_preproc_directive] = ACTIONS(4278), + [anon_sym_LPAREN2] = ACTIONS(4280), + [anon_sym_BANG] = ACTIONS(4280), + [anon_sym_TILDE] = ACTIONS(4280), + [anon_sym_DASH] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_STAR] = ACTIONS(4280), + [anon_sym_AMP_AMP] = ACTIONS(4280), + [anon_sym_AMP] = ACTIONS(4278), + [anon_sym_SEMI] = ACTIONS(4280), + [anon_sym___extension__] = ACTIONS(4278), + [anon_sym_typedef] = ACTIONS(4278), + [anon_sym_virtual] = ACTIONS(4278), + [anon_sym_extern] = ACTIONS(4278), + [anon_sym___attribute__] = ACTIONS(4278), + [anon_sym___attribute] = ACTIONS(4278), + [anon_sym_using] = ACTIONS(4278), + [anon_sym_COLON_COLON] = ACTIONS(4280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4280), + [anon_sym___declspec] = ACTIONS(4278), + [anon_sym___based] = ACTIONS(4278), + [anon_sym___cdecl] = ACTIONS(4278), + [anon_sym___clrcall] = ACTIONS(4278), + [anon_sym___stdcall] = ACTIONS(4278), + [anon_sym___fastcall] = ACTIONS(4278), + [anon_sym___thiscall] = ACTIONS(4278), + [anon_sym___vectorcall] = ACTIONS(4278), + [anon_sym_LBRACE] = ACTIONS(4280), + [anon_sym_signed] = ACTIONS(4278), + [anon_sym_unsigned] = ACTIONS(4278), + [anon_sym_long] = ACTIONS(4278), + [anon_sym_short] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_register] = ACTIONS(4278), + [anon_sym_inline] = ACTIONS(4278), + [anon_sym___inline] = ACTIONS(4278), + [anon_sym___inline__] = ACTIONS(4278), + [anon_sym___forceinline] = ACTIONS(4278), + [anon_sym_thread_local] = ACTIONS(4278), + [anon_sym___thread] = ACTIONS(4278), + [anon_sym_const] = ACTIONS(4278), + [anon_sym_constexpr] = ACTIONS(4278), + [anon_sym_volatile] = ACTIONS(4278), + [anon_sym_restrict] = ACTIONS(4278), + [anon_sym___restrict__] = ACTIONS(4278), + [anon_sym__Atomic] = ACTIONS(4278), + [anon_sym__Noreturn] = ACTIONS(4278), + [anon_sym_noreturn] = ACTIONS(4278), + [anon_sym__Nonnull] = ACTIONS(4278), + [anon_sym_mutable] = ACTIONS(4278), + [anon_sym_constinit] = ACTIONS(4278), + [anon_sym_consteval] = ACTIONS(4278), + [anon_sym_alignas] = ACTIONS(4278), + [anon_sym__Alignas] = ACTIONS(4278), + [sym_primitive_type] = ACTIONS(4278), + [anon_sym_enum] = ACTIONS(4278), + [anon_sym_class] = ACTIONS(4278), + [anon_sym_struct] = ACTIONS(4278), + [anon_sym_union] = ACTIONS(4278), + [anon_sym_if] = ACTIONS(4278), + [anon_sym_switch] = ACTIONS(4278), + [anon_sym_case] = ACTIONS(4278), + [anon_sym_default] = ACTIONS(4278), + [anon_sym_while] = ACTIONS(4278), + [anon_sym_do] = ACTIONS(4278), + [anon_sym_for] = ACTIONS(4278), + [anon_sym_return] = ACTIONS(4278), + [anon_sym_break] = ACTIONS(4278), + [anon_sym_continue] = ACTIONS(4278), + [anon_sym_goto] = ACTIONS(4278), + [anon_sym___try] = ACTIONS(4278), + [anon_sym___leave] = ACTIONS(4278), + [anon_sym_not] = ACTIONS(4278), + [anon_sym_compl] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4280), + [anon_sym_PLUS_PLUS] = ACTIONS(4280), + [anon_sym_sizeof] = ACTIONS(4278), + [anon_sym___alignof__] = ACTIONS(4278), + [anon_sym___alignof] = ACTIONS(4278), + [anon_sym__alignof] = ACTIONS(4278), + [anon_sym_alignof] = ACTIONS(4278), + [anon_sym__Alignof] = ACTIONS(4278), + [anon_sym_offsetof] = ACTIONS(4278), + [anon_sym__Generic] = ACTIONS(4278), + [anon_sym_typename] = ACTIONS(4278), + [anon_sym_asm] = ACTIONS(4278), + [anon_sym___asm__] = ACTIONS(4278), + [anon_sym___asm] = ACTIONS(4278), + [sym_number_literal] = ACTIONS(4280), + [anon_sym_L_SQUOTE] = ACTIONS(4280), + [anon_sym_u_SQUOTE] = ACTIONS(4280), + [anon_sym_U_SQUOTE] = ACTIONS(4280), + [anon_sym_u8_SQUOTE] = ACTIONS(4280), + [anon_sym_SQUOTE] = ACTIONS(4280), + [anon_sym_L_DQUOTE] = ACTIONS(4280), + [anon_sym_u_DQUOTE] = ACTIONS(4280), + [anon_sym_U_DQUOTE] = ACTIONS(4280), + [anon_sym_u8_DQUOTE] = ACTIONS(4280), + [anon_sym_DQUOTE] = ACTIONS(4280), + [sym_true] = ACTIONS(4278), + [sym_false] = ACTIONS(4278), + [anon_sym_NULL] = ACTIONS(4278), + [anon_sym_nullptr] = ACTIONS(4278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4278), + [anon_sym_decltype] = ACTIONS(4278), + [anon_sym_explicit] = ACTIONS(4278), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_module] = ACTIONS(4278), + [anon_sym_import] = ACTIONS(4278), + [anon_sym_template] = ACTIONS(4278), + [anon_sym_operator] = ACTIONS(4278), + [anon_sym_try] = ACTIONS(4278), + [anon_sym_delete] = ACTIONS(4278), + [anon_sym_throw] = ACTIONS(4278), + [anon_sym_namespace] = ACTIONS(4278), + [anon_sym_static_assert] = ACTIONS(4278), + [anon_sym_concept] = ACTIONS(4278), + [anon_sym_co_return] = ACTIONS(4278), + [anon_sym_co_yield] = ACTIONS(4278), + [anon_sym_R_DQUOTE] = ACTIONS(4280), + [anon_sym_LR_DQUOTE] = ACTIONS(4280), + [anon_sym_uR_DQUOTE] = ACTIONS(4280), + [anon_sym_UR_DQUOTE] = ACTIONS(4280), + [anon_sym_u8R_DQUOTE] = ACTIONS(4280), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4278), + [anon_sym_requires] = ACTIONS(4278), + [anon_sym_CARET_CARET] = ACTIONS(4280), + [anon_sym_LBRACK_COLON] = ACTIONS(4280), + [sym_this] = ACTIONS(4278), }, - [STATE(566)] = { - [ts_builtin_sym_end] = ACTIONS(4263), - [sym_identifier] = ACTIONS(4265), - [aux_sym_preproc_include_token1] = ACTIONS(4265), - [aux_sym_preproc_def_token1] = ACTIONS(4265), - [aux_sym_preproc_if_token1] = ACTIONS(4265), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4265), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4265), - [sym_preproc_directive] = ACTIONS(4265), - [anon_sym_LPAREN2] = ACTIONS(4263), - [anon_sym_BANG] = ACTIONS(4263), - [anon_sym_TILDE] = ACTIONS(4263), - [anon_sym_DASH] = ACTIONS(4265), - [anon_sym_PLUS] = ACTIONS(4265), - [anon_sym_STAR] = ACTIONS(4263), - [anon_sym_AMP_AMP] = ACTIONS(4263), - [anon_sym_AMP] = ACTIONS(4265), - [anon_sym_SEMI] = ACTIONS(4263), - [anon_sym___extension__] = ACTIONS(4265), - [anon_sym_typedef] = ACTIONS(4265), - [anon_sym_virtual] = ACTIONS(4265), - [anon_sym_extern] = ACTIONS(4265), - [anon_sym___attribute__] = ACTIONS(4265), - [anon_sym___attribute] = ACTIONS(4265), - [anon_sym_using] = ACTIONS(4265), - [anon_sym_COLON_COLON] = ACTIONS(4263), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4263), - [anon_sym___declspec] = ACTIONS(4265), - [anon_sym___based] = ACTIONS(4265), - [anon_sym___cdecl] = ACTIONS(4265), - [anon_sym___clrcall] = ACTIONS(4265), - [anon_sym___stdcall] = ACTIONS(4265), - [anon_sym___fastcall] = ACTIONS(4265), - [anon_sym___thiscall] = ACTIONS(4265), - [anon_sym___vectorcall] = ACTIONS(4265), - [anon_sym_LBRACE] = ACTIONS(4263), - [anon_sym_signed] = ACTIONS(4265), - [anon_sym_unsigned] = ACTIONS(4265), - [anon_sym_long] = ACTIONS(4265), - [anon_sym_short] = ACTIONS(4265), - [anon_sym_LBRACK] = ACTIONS(4265), - [anon_sym_static] = ACTIONS(4265), - [anon_sym_register] = ACTIONS(4265), - [anon_sym_inline] = ACTIONS(4265), - [anon_sym___inline] = ACTIONS(4265), - [anon_sym___inline__] = ACTIONS(4265), - [anon_sym___forceinline] = ACTIONS(4265), - [anon_sym_thread_local] = ACTIONS(4265), - [anon_sym___thread] = ACTIONS(4265), - [anon_sym_const] = ACTIONS(4265), - [anon_sym_constexpr] = ACTIONS(4265), - [anon_sym_volatile] = ACTIONS(4265), - [anon_sym_restrict] = ACTIONS(4265), - [anon_sym___restrict__] = ACTIONS(4265), - [anon_sym__Atomic] = ACTIONS(4265), - [anon_sym__Noreturn] = ACTIONS(4265), - [anon_sym_noreturn] = ACTIONS(4265), - [anon_sym__Nonnull] = ACTIONS(4265), - [anon_sym_mutable] = ACTIONS(4265), - [anon_sym_constinit] = ACTIONS(4265), - [anon_sym_consteval] = ACTIONS(4265), - [anon_sym_alignas] = ACTIONS(4265), - [anon_sym__Alignas] = ACTIONS(4265), - [sym_primitive_type] = ACTIONS(4265), - [anon_sym_enum] = ACTIONS(4265), - [anon_sym_class] = ACTIONS(4265), - [anon_sym_struct] = ACTIONS(4265), - [anon_sym_union] = ACTIONS(4265), - [anon_sym_if] = ACTIONS(4265), - [anon_sym_switch] = ACTIONS(4265), - [anon_sym_case] = ACTIONS(4265), - [anon_sym_default] = ACTIONS(4265), - [anon_sym_while] = ACTIONS(4265), - [anon_sym_do] = ACTIONS(4265), - [anon_sym_for] = ACTIONS(4265), - [anon_sym_return] = ACTIONS(4265), - [anon_sym_break] = ACTIONS(4265), - [anon_sym_continue] = ACTIONS(4265), - [anon_sym_goto] = ACTIONS(4265), - [anon_sym_not] = ACTIONS(4265), - [anon_sym_compl] = ACTIONS(4265), - [anon_sym_DASH_DASH] = ACTIONS(4263), - [anon_sym_PLUS_PLUS] = ACTIONS(4263), - [anon_sym_sizeof] = ACTIONS(4265), - [anon_sym___alignof__] = ACTIONS(4265), - [anon_sym___alignof] = ACTIONS(4265), - [anon_sym__alignof] = ACTIONS(4265), - [anon_sym_alignof] = ACTIONS(4265), - [anon_sym__Alignof] = ACTIONS(4265), - [anon_sym_offsetof] = ACTIONS(4265), - [anon_sym__Generic] = ACTIONS(4265), - [anon_sym_typename] = ACTIONS(4265), - [anon_sym_asm] = ACTIONS(4265), - [anon_sym___asm__] = ACTIONS(4265), - [anon_sym___asm] = ACTIONS(4265), - [sym_number_literal] = ACTIONS(4263), - [anon_sym_L_SQUOTE] = ACTIONS(4263), - [anon_sym_u_SQUOTE] = ACTIONS(4263), - [anon_sym_U_SQUOTE] = ACTIONS(4263), - [anon_sym_u8_SQUOTE] = ACTIONS(4263), - [anon_sym_SQUOTE] = ACTIONS(4263), - [anon_sym_L_DQUOTE] = ACTIONS(4263), - [anon_sym_u_DQUOTE] = ACTIONS(4263), - [anon_sym_U_DQUOTE] = ACTIONS(4263), - [anon_sym_u8_DQUOTE] = ACTIONS(4263), - [anon_sym_DQUOTE] = ACTIONS(4263), - [sym_true] = ACTIONS(4265), - [sym_false] = ACTIONS(4265), - [anon_sym_NULL] = ACTIONS(4265), - [anon_sym_nullptr] = ACTIONS(4265), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4265), - [anon_sym_decltype] = ACTIONS(4265), - [anon_sym_explicit] = ACTIONS(4265), - [anon_sym_export] = ACTIONS(4265), - [anon_sym_module] = ACTIONS(4265), - [anon_sym_import] = ACTIONS(4265), - [anon_sym_template] = ACTIONS(4265), - [anon_sym_operator] = ACTIONS(4265), - [anon_sym_try] = ACTIONS(4265), - [anon_sym_delete] = ACTIONS(4265), - [anon_sym_throw] = ACTIONS(4265), - [anon_sym_namespace] = ACTIONS(4265), - [anon_sym_static_assert] = ACTIONS(4265), - [anon_sym_concept] = ACTIONS(4265), - [anon_sym_co_return] = ACTIONS(4265), - [anon_sym_co_yield] = ACTIONS(4265), - [anon_sym_R_DQUOTE] = ACTIONS(4263), - [anon_sym_LR_DQUOTE] = ACTIONS(4263), - [anon_sym_uR_DQUOTE] = ACTIONS(4263), - [anon_sym_UR_DQUOTE] = ACTIONS(4263), - [anon_sym_u8R_DQUOTE] = ACTIONS(4263), - [anon_sym_co_await] = ACTIONS(4265), - [anon_sym_new] = ACTIONS(4265), - [anon_sym_requires] = ACTIONS(4265), - [anon_sym_CARET_CARET] = ACTIONS(4263), - [anon_sym_LBRACK_COLON] = ACTIONS(4263), - [sym_this] = ACTIONS(4265), + [STATE(508)] = { + [sym_identifier] = ACTIONS(4282), + [aux_sym_preproc_include_token1] = ACTIONS(4282), + [aux_sym_preproc_def_token1] = ACTIONS(4282), + [aux_sym_preproc_if_token1] = ACTIONS(4282), + [aux_sym_preproc_if_token2] = ACTIONS(4282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4282), + [aux_sym_preproc_else_token1] = ACTIONS(4282), + [aux_sym_preproc_elif_token1] = ACTIONS(4282), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4282), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4282), + [sym_preproc_directive] = ACTIONS(4282), + [anon_sym_LPAREN2] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4284), + [anon_sym_TILDE] = ACTIONS(4284), + [anon_sym_DASH] = ACTIONS(4282), + [anon_sym_PLUS] = ACTIONS(4282), + [anon_sym_STAR] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(4282), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym___extension__] = ACTIONS(4282), + [anon_sym_typedef] = ACTIONS(4282), + [anon_sym_virtual] = ACTIONS(4282), + [anon_sym_extern] = ACTIONS(4282), + [anon_sym___attribute__] = ACTIONS(4282), + [anon_sym___attribute] = ACTIONS(4282), + [anon_sym_using] = ACTIONS(4282), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), + [anon_sym___declspec] = ACTIONS(4282), + [anon_sym___based] = ACTIONS(4282), + [anon_sym___cdecl] = ACTIONS(4282), + [anon_sym___clrcall] = ACTIONS(4282), + [anon_sym___stdcall] = ACTIONS(4282), + [anon_sym___fastcall] = ACTIONS(4282), + [anon_sym___thiscall] = ACTIONS(4282), + [anon_sym___vectorcall] = ACTIONS(4282), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_signed] = ACTIONS(4282), + [anon_sym_unsigned] = ACTIONS(4282), + [anon_sym_long] = ACTIONS(4282), + [anon_sym_short] = ACTIONS(4282), + [anon_sym_LBRACK] = ACTIONS(4282), + [anon_sym_static] = ACTIONS(4282), + [anon_sym_register] = ACTIONS(4282), + [anon_sym_inline] = ACTIONS(4282), + [anon_sym___inline] = ACTIONS(4282), + [anon_sym___inline__] = ACTIONS(4282), + [anon_sym___forceinline] = ACTIONS(4282), + [anon_sym_thread_local] = ACTIONS(4282), + [anon_sym___thread] = ACTIONS(4282), + [anon_sym_const] = ACTIONS(4282), + [anon_sym_constexpr] = ACTIONS(4282), + [anon_sym_volatile] = ACTIONS(4282), + [anon_sym_restrict] = ACTIONS(4282), + [anon_sym___restrict__] = ACTIONS(4282), + [anon_sym__Atomic] = ACTIONS(4282), + [anon_sym__Noreturn] = ACTIONS(4282), + [anon_sym_noreturn] = ACTIONS(4282), + [anon_sym__Nonnull] = ACTIONS(4282), + [anon_sym_mutable] = ACTIONS(4282), + [anon_sym_constinit] = ACTIONS(4282), + [anon_sym_consteval] = ACTIONS(4282), + [anon_sym_alignas] = ACTIONS(4282), + [anon_sym__Alignas] = ACTIONS(4282), + [sym_primitive_type] = ACTIONS(4282), + [anon_sym_enum] = ACTIONS(4282), + [anon_sym_class] = ACTIONS(4282), + [anon_sym_struct] = ACTIONS(4282), + [anon_sym_union] = ACTIONS(4282), + [anon_sym_if] = ACTIONS(4282), + [anon_sym_switch] = ACTIONS(4282), + [anon_sym_case] = ACTIONS(4282), + [anon_sym_default] = ACTIONS(4282), + [anon_sym_while] = ACTIONS(4282), + [anon_sym_do] = ACTIONS(4282), + [anon_sym_for] = ACTIONS(4282), + [anon_sym_return] = ACTIONS(4282), + [anon_sym_break] = ACTIONS(4282), + [anon_sym_continue] = ACTIONS(4282), + [anon_sym_goto] = ACTIONS(4282), + [anon_sym___try] = ACTIONS(4282), + [anon_sym___leave] = ACTIONS(4282), + [anon_sym_not] = ACTIONS(4282), + [anon_sym_compl] = ACTIONS(4282), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_sizeof] = ACTIONS(4282), + [anon_sym___alignof__] = ACTIONS(4282), + [anon_sym___alignof] = ACTIONS(4282), + [anon_sym__alignof] = ACTIONS(4282), + [anon_sym_alignof] = ACTIONS(4282), + [anon_sym__Alignof] = ACTIONS(4282), + [anon_sym_offsetof] = ACTIONS(4282), + [anon_sym__Generic] = ACTIONS(4282), + [anon_sym_typename] = ACTIONS(4282), + [anon_sym_asm] = ACTIONS(4282), + [anon_sym___asm__] = ACTIONS(4282), + [anon_sym___asm] = ACTIONS(4282), + [sym_number_literal] = ACTIONS(4284), + [anon_sym_L_SQUOTE] = ACTIONS(4284), + [anon_sym_u_SQUOTE] = ACTIONS(4284), + [anon_sym_U_SQUOTE] = ACTIONS(4284), + [anon_sym_u8_SQUOTE] = ACTIONS(4284), + [anon_sym_SQUOTE] = ACTIONS(4284), + [anon_sym_L_DQUOTE] = ACTIONS(4284), + [anon_sym_u_DQUOTE] = ACTIONS(4284), + [anon_sym_U_DQUOTE] = ACTIONS(4284), + [anon_sym_u8_DQUOTE] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4284), + [sym_true] = ACTIONS(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4282), + [anon_sym_nullptr] = ACTIONS(4282), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4282), + [anon_sym_decltype] = ACTIONS(4282), + [anon_sym_explicit] = ACTIONS(4282), + [anon_sym_export] = ACTIONS(4282), + [anon_sym_module] = ACTIONS(4282), + [anon_sym_import] = ACTIONS(4282), + [anon_sym_template] = ACTIONS(4282), + [anon_sym_operator] = ACTIONS(4282), + [anon_sym_try] = ACTIONS(4282), + [anon_sym_delete] = ACTIONS(4282), + [anon_sym_throw] = ACTIONS(4282), + [anon_sym_namespace] = ACTIONS(4282), + [anon_sym_static_assert] = ACTIONS(4282), + [anon_sym_concept] = ACTIONS(4282), + [anon_sym_co_return] = ACTIONS(4282), + [anon_sym_co_yield] = ACTIONS(4282), + [anon_sym_R_DQUOTE] = ACTIONS(4284), + [anon_sym_LR_DQUOTE] = ACTIONS(4284), + [anon_sym_uR_DQUOTE] = ACTIONS(4284), + [anon_sym_UR_DQUOTE] = ACTIONS(4284), + [anon_sym_u8R_DQUOTE] = ACTIONS(4284), + [anon_sym_co_await] = ACTIONS(4282), + [anon_sym_new] = ACTIONS(4282), + [anon_sym_requires] = ACTIONS(4282), + [anon_sym_CARET_CARET] = ACTIONS(4284), + [anon_sym_LBRACK_COLON] = ACTIONS(4284), + [sym_this] = ACTIONS(4282), }, - [STATE(567)] = { - [sym_identifier] = ACTIONS(3672), - [aux_sym_preproc_include_token1] = ACTIONS(3672), - [aux_sym_preproc_def_token1] = ACTIONS(3672), - [aux_sym_preproc_if_token1] = ACTIONS(3672), - [aux_sym_preproc_if_token2] = ACTIONS(3672), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3672), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3672), - [sym_preproc_directive] = ACTIONS(3672), - [anon_sym_LPAREN2] = ACTIONS(3674), - [anon_sym_BANG] = ACTIONS(3674), - [anon_sym_TILDE] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_STAR] = ACTIONS(3674), - [anon_sym_AMP_AMP] = ACTIONS(3674), - [anon_sym_AMP] = ACTIONS(3672), - [anon_sym_SEMI] = ACTIONS(3674), - [anon_sym___extension__] = ACTIONS(3672), - [anon_sym_typedef] = ACTIONS(3672), - [anon_sym_virtual] = ACTIONS(3672), - [anon_sym_extern] = ACTIONS(3672), - [anon_sym___attribute__] = ACTIONS(3672), - [anon_sym___attribute] = ACTIONS(3672), - [anon_sym_using] = ACTIONS(3672), - [anon_sym_COLON_COLON] = ACTIONS(3674), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3674), - [anon_sym___declspec] = ACTIONS(3672), - [anon_sym___based] = ACTIONS(3672), - [anon_sym___cdecl] = ACTIONS(3672), - [anon_sym___clrcall] = ACTIONS(3672), - [anon_sym___stdcall] = ACTIONS(3672), - [anon_sym___fastcall] = ACTIONS(3672), - [anon_sym___thiscall] = ACTIONS(3672), - [anon_sym___vectorcall] = ACTIONS(3672), - [anon_sym_LBRACE] = ACTIONS(3674), - [anon_sym_signed] = ACTIONS(3672), - [anon_sym_unsigned] = ACTIONS(3672), - [anon_sym_long] = ACTIONS(3672), - [anon_sym_short] = ACTIONS(3672), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_static] = ACTIONS(3672), - [anon_sym_register] = ACTIONS(3672), - [anon_sym_inline] = ACTIONS(3672), - [anon_sym___inline] = ACTIONS(3672), - [anon_sym___inline__] = ACTIONS(3672), - [anon_sym___forceinline] = ACTIONS(3672), - [anon_sym_thread_local] = ACTIONS(3672), - [anon_sym___thread] = ACTIONS(3672), - [anon_sym_const] = ACTIONS(3672), - [anon_sym_constexpr] = ACTIONS(3672), - [anon_sym_volatile] = ACTIONS(3672), - [anon_sym_restrict] = ACTIONS(3672), - [anon_sym___restrict__] = ACTIONS(3672), - [anon_sym__Atomic] = ACTIONS(3672), - [anon_sym__Noreturn] = ACTIONS(3672), - [anon_sym_noreturn] = ACTIONS(3672), - [anon_sym__Nonnull] = ACTIONS(3672), - [anon_sym_mutable] = ACTIONS(3672), - [anon_sym_constinit] = ACTIONS(3672), - [anon_sym_consteval] = ACTIONS(3672), - [anon_sym_alignas] = ACTIONS(3672), - [anon_sym__Alignas] = ACTIONS(3672), - [sym_primitive_type] = ACTIONS(3672), - [anon_sym_enum] = ACTIONS(3672), - [anon_sym_class] = ACTIONS(3672), - [anon_sym_struct] = ACTIONS(3672), - [anon_sym_union] = ACTIONS(3672), - [anon_sym_if] = ACTIONS(3672), - [anon_sym_else] = ACTIONS(3672), - [anon_sym_switch] = ACTIONS(3672), - [anon_sym_case] = ACTIONS(3672), - [anon_sym_default] = ACTIONS(3672), - [anon_sym_while] = ACTIONS(3672), - [anon_sym_do] = ACTIONS(3672), - [anon_sym_for] = ACTIONS(3672), - [anon_sym_return] = ACTIONS(3672), - [anon_sym_break] = ACTIONS(3672), - [anon_sym_continue] = ACTIONS(3672), - [anon_sym_goto] = ACTIONS(3672), - [anon_sym___try] = ACTIONS(3672), - [anon_sym___leave] = ACTIONS(3672), - [anon_sym_not] = ACTIONS(3672), - [anon_sym_compl] = ACTIONS(3672), - [anon_sym_DASH_DASH] = ACTIONS(3674), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_sizeof] = ACTIONS(3672), - [anon_sym___alignof__] = ACTIONS(3672), - [anon_sym___alignof] = ACTIONS(3672), - [anon_sym__alignof] = ACTIONS(3672), - [anon_sym_alignof] = ACTIONS(3672), - [anon_sym__Alignof] = ACTIONS(3672), - [anon_sym_offsetof] = ACTIONS(3672), - [anon_sym__Generic] = ACTIONS(3672), - [anon_sym_typename] = ACTIONS(3672), - [anon_sym_asm] = ACTIONS(3672), - [anon_sym___asm__] = ACTIONS(3672), - [anon_sym___asm] = ACTIONS(3672), - [sym_number_literal] = ACTIONS(3674), - [anon_sym_L_SQUOTE] = ACTIONS(3674), - [anon_sym_u_SQUOTE] = ACTIONS(3674), - [anon_sym_U_SQUOTE] = ACTIONS(3674), - [anon_sym_u8_SQUOTE] = ACTIONS(3674), - [anon_sym_SQUOTE] = ACTIONS(3674), - [anon_sym_L_DQUOTE] = ACTIONS(3674), - [anon_sym_u_DQUOTE] = ACTIONS(3674), - [anon_sym_U_DQUOTE] = ACTIONS(3674), - [anon_sym_u8_DQUOTE] = ACTIONS(3674), - [anon_sym_DQUOTE] = ACTIONS(3674), - [sym_true] = ACTIONS(3672), - [sym_false] = ACTIONS(3672), - [anon_sym_NULL] = ACTIONS(3672), - [anon_sym_nullptr] = ACTIONS(3672), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3672), - [anon_sym_decltype] = ACTIONS(3672), - [anon_sym_explicit] = ACTIONS(3672), - [anon_sym_template] = ACTIONS(3672), - [anon_sym_operator] = ACTIONS(3672), - [anon_sym_try] = ACTIONS(3672), - [anon_sym_delete] = ACTIONS(3672), - [anon_sym_throw] = ACTIONS(3672), - [anon_sym_namespace] = ACTIONS(3672), - [anon_sym_static_assert] = ACTIONS(3672), - [anon_sym_concept] = ACTIONS(3672), - [anon_sym_co_return] = ACTIONS(3672), - [anon_sym_co_yield] = ACTIONS(3672), - [anon_sym_R_DQUOTE] = ACTIONS(3674), - [anon_sym_LR_DQUOTE] = ACTIONS(3674), - [anon_sym_uR_DQUOTE] = ACTIONS(3674), - [anon_sym_UR_DQUOTE] = ACTIONS(3674), - [anon_sym_u8R_DQUOTE] = ACTIONS(3674), - [anon_sym_co_await] = ACTIONS(3672), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_requires] = ACTIONS(3672), - [anon_sym_CARET_CARET] = ACTIONS(3674), - [anon_sym_LBRACK_COLON] = ACTIONS(3674), - [sym_this] = ACTIONS(3672), + [STATE(509)] = { + [sym_identifier] = ACTIONS(4286), + [aux_sym_preproc_include_token1] = ACTIONS(4286), + [aux_sym_preproc_def_token1] = ACTIONS(4286), + [aux_sym_preproc_if_token1] = ACTIONS(4286), + [aux_sym_preproc_if_token2] = ACTIONS(4286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4286), + [aux_sym_preproc_else_token1] = ACTIONS(4286), + [aux_sym_preproc_elif_token1] = ACTIONS(4286), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4286), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4286), + [sym_preproc_directive] = ACTIONS(4286), + [anon_sym_LPAREN2] = ACTIONS(4288), + [anon_sym_BANG] = ACTIONS(4288), + [anon_sym_TILDE] = ACTIONS(4288), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym___extension__] = ACTIONS(4286), + [anon_sym_typedef] = ACTIONS(4286), + [anon_sym_virtual] = ACTIONS(4286), + [anon_sym_extern] = ACTIONS(4286), + [anon_sym___attribute__] = ACTIONS(4286), + [anon_sym___attribute] = ACTIONS(4286), + [anon_sym_using] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4288), + [anon_sym___declspec] = ACTIONS(4286), + [anon_sym___based] = ACTIONS(4286), + [anon_sym___cdecl] = ACTIONS(4286), + [anon_sym___clrcall] = ACTIONS(4286), + [anon_sym___stdcall] = ACTIONS(4286), + [anon_sym___fastcall] = ACTIONS(4286), + [anon_sym___thiscall] = ACTIONS(4286), + [anon_sym___vectorcall] = ACTIONS(4286), + [anon_sym_LBRACE] = ACTIONS(4288), + [anon_sym_signed] = ACTIONS(4286), + [anon_sym_unsigned] = ACTIONS(4286), + [anon_sym_long] = ACTIONS(4286), + [anon_sym_short] = ACTIONS(4286), + [anon_sym_LBRACK] = ACTIONS(4286), + [anon_sym_static] = ACTIONS(4286), + [anon_sym_register] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym___inline] = ACTIONS(4286), + [anon_sym___inline__] = ACTIONS(4286), + [anon_sym___forceinline] = ACTIONS(4286), + [anon_sym_thread_local] = ACTIONS(4286), + [anon_sym___thread] = ACTIONS(4286), + [anon_sym_const] = ACTIONS(4286), + [anon_sym_constexpr] = ACTIONS(4286), + [anon_sym_volatile] = ACTIONS(4286), + [anon_sym_restrict] = ACTIONS(4286), + [anon_sym___restrict__] = ACTIONS(4286), + [anon_sym__Atomic] = ACTIONS(4286), + [anon_sym__Noreturn] = ACTIONS(4286), + [anon_sym_noreturn] = ACTIONS(4286), + [anon_sym__Nonnull] = ACTIONS(4286), + [anon_sym_mutable] = ACTIONS(4286), + [anon_sym_constinit] = ACTIONS(4286), + [anon_sym_consteval] = ACTIONS(4286), + [anon_sym_alignas] = ACTIONS(4286), + [anon_sym__Alignas] = ACTIONS(4286), + [sym_primitive_type] = ACTIONS(4286), + [anon_sym_enum] = ACTIONS(4286), + [anon_sym_class] = ACTIONS(4286), + [anon_sym_struct] = ACTIONS(4286), + [anon_sym_union] = ACTIONS(4286), + [anon_sym_if] = ACTIONS(4286), + [anon_sym_switch] = ACTIONS(4286), + [anon_sym_case] = ACTIONS(4286), + [anon_sym_default] = ACTIONS(4286), + [anon_sym_while] = ACTIONS(4286), + [anon_sym_do] = ACTIONS(4286), + [anon_sym_for] = ACTIONS(4286), + [anon_sym_return] = ACTIONS(4286), + [anon_sym_break] = ACTIONS(4286), + [anon_sym_continue] = ACTIONS(4286), + [anon_sym_goto] = ACTIONS(4286), + [anon_sym___try] = ACTIONS(4286), + [anon_sym___leave] = ACTIONS(4286), + [anon_sym_not] = ACTIONS(4286), + [anon_sym_compl] = ACTIONS(4286), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_sizeof] = ACTIONS(4286), + [anon_sym___alignof__] = ACTIONS(4286), + [anon_sym___alignof] = ACTIONS(4286), + [anon_sym__alignof] = ACTIONS(4286), + [anon_sym_alignof] = ACTIONS(4286), + [anon_sym__Alignof] = ACTIONS(4286), + [anon_sym_offsetof] = ACTIONS(4286), + [anon_sym__Generic] = ACTIONS(4286), + [anon_sym_typename] = ACTIONS(4286), + [anon_sym_asm] = ACTIONS(4286), + [anon_sym___asm__] = ACTIONS(4286), + [anon_sym___asm] = ACTIONS(4286), + [sym_number_literal] = ACTIONS(4288), + [anon_sym_L_SQUOTE] = ACTIONS(4288), + [anon_sym_u_SQUOTE] = ACTIONS(4288), + [anon_sym_U_SQUOTE] = ACTIONS(4288), + [anon_sym_u8_SQUOTE] = ACTIONS(4288), + [anon_sym_SQUOTE] = ACTIONS(4288), + [anon_sym_L_DQUOTE] = ACTIONS(4288), + [anon_sym_u_DQUOTE] = ACTIONS(4288), + [anon_sym_U_DQUOTE] = ACTIONS(4288), + [anon_sym_u8_DQUOTE] = ACTIONS(4288), + [anon_sym_DQUOTE] = ACTIONS(4288), + [sym_true] = ACTIONS(4286), + [sym_false] = ACTIONS(4286), + [anon_sym_NULL] = ACTIONS(4286), + [anon_sym_nullptr] = ACTIONS(4286), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4286), + [anon_sym_decltype] = ACTIONS(4286), + [anon_sym_explicit] = ACTIONS(4286), + [anon_sym_export] = ACTIONS(4286), + [anon_sym_module] = ACTIONS(4286), + [anon_sym_import] = ACTIONS(4286), + [anon_sym_template] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_try] = ACTIONS(4286), + [anon_sym_delete] = ACTIONS(4286), + [anon_sym_throw] = ACTIONS(4286), + [anon_sym_namespace] = ACTIONS(4286), + [anon_sym_static_assert] = ACTIONS(4286), + [anon_sym_concept] = ACTIONS(4286), + [anon_sym_co_return] = ACTIONS(4286), + [anon_sym_co_yield] = ACTIONS(4286), + [anon_sym_R_DQUOTE] = ACTIONS(4288), + [anon_sym_LR_DQUOTE] = ACTIONS(4288), + [anon_sym_uR_DQUOTE] = ACTIONS(4288), + [anon_sym_UR_DQUOTE] = ACTIONS(4288), + [anon_sym_u8R_DQUOTE] = ACTIONS(4288), + [anon_sym_co_await] = ACTIONS(4286), + [anon_sym_new] = ACTIONS(4286), + [anon_sym_requires] = ACTIONS(4286), + [anon_sym_CARET_CARET] = ACTIONS(4288), + [anon_sym_LBRACK_COLON] = ACTIONS(4288), + [sym_this] = ACTIONS(4286), }, - [STATE(568)] = { - [ts_builtin_sym_end] = ACTIONS(4267), - [sym_identifier] = ACTIONS(4269), - [aux_sym_preproc_include_token1] = ACTIONS(4269), - [aux_sym_preproc_def_token1] = ACTIONS(4269), - [aux_sym_preproc_if_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4269), - [sym_preproc_directive] = ACTIONS(4269), - [anon_sym_LPAREN2] = ACTIONS(4267), - [anon_sym_BANG] = ACTIONS(4267), - [anon_sym_TILDE] = ACTIONS(4267), - [anon_sym_DASH] = ACTIONS(4269), - [anon_sym_PLUS] = ACTIONS(4269), - [anon_sym_STAR] = ACTIONS(4267), - [anon_sym_AMP_AMP] = ACTIONS(4267), - [anon_sym_AMP] = ACTIONS(4269), - [anon_sym_SEMI] = ACTIONS(4267), - [anon_sym___extension__] = ACTIONS(4269), - [anon_sym_typedef] = ACTIONS(4269), - [anon_sym_virtual] = ACTIONS(4269), - [anon_sym_extern] = ACTIONS(4269), - [anon_sym___attribute__] = ACTIONS(4269), - [anon_sym___attribute] = ACTIONS(4269), - [anon_sym_using] = ACTIONS(4269), - [anon_sym_COLON_COLON] = ACTIONS(4267), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4267), - [anon_sym___declspec] = ACTIONS(4269), - [anon_sym___based] = ACTIONS(4269), - [anon_sym___cdecl] = ACTIONS(4269), - [anon_sym___clrcall] = ACTIONS(4269), - [anon_sym___stdcall] = ACTIONS(4269), - [anon_sym___fastcall] = ACTIONS(4269), - [anon_sym___thiscall] = ACTIONS(4269), - [anon_sym___vectorcall] = ACTIONS(4269), - [anon_sym_LBRACE] = ACTIONS(4267), - [anon_sym_signed] = ACTIONS(4269), - [anon_sym_unsigned] = ACTIONS(4269), - [anon_sym_long] = ACTIONS(4269), - [anon_sym_short] = ACTIONS(4269), - [anon_sym_LBRACK] = ACTIONS(4269), - [anon_sym_static] = ACTIONS(4269), - [anon_sym_register] = ACTIONS(4269), - [anon_sym_inline] = ACTIONS(4269), - [anon_sym___inline] = ACTIONS(4269), - [anon_sym___inline__] = ACTIONS(4269), - [anon_sym___forceinline] = ACTIONS(4269), - [anon_sym_thread_local] = ACTIONS(4269), - [anon_sym___thread] = ACTIONS(4269), - [anon_sym_const] = ACTIONS(4269), - [anon_sym_constexpr] = ACTIONS(4269), - [anon_sym_volatile] = ACTIONS(4269), - [anon_sym_restrict] = ACTIONS(4269), - [anon_sym___restrict__] = ACTIONS(4269), - [anon_sym__Atomic] = ACTIONS(4269), - [anon_sym__Noreturn] = ACTIONS(4269), - [anon_sym_noreturn] = ACTIONS(4269), - [anon_sym__Nonnull] = ACTIONS(4269), - [anon_sym_mutable] = ACTIONS(4269), - [anon_sym_constinit] = ACTIONS(4269), - [anon_sym_consteval] = ACTIONS(4269), - [anon_sym_alignas] = ACTIONS(4269), - [anon_sym__Alignas] = ACTIONS(4269), - [sym_primitive_type] = ACTIONS(4269), - [anon_sym_enum] = ACTIONS(4269), - [anon_sym_class] = ACTIONS(4269), - [anon_sym_struct] = ACTIONS(4269), - [anon_sym_union] = ACTIONS(4269), - [anon_sym_if] = ACTIONS(4269), - [anon_sym_switch] = ACTIONS(4269), - [anon_sym_case] = ACTIONS(4269), - [anon_sym_default] = ACTIONS(4269), - [anon_sym_while] = ACTIONS(4269), - [anon_sym_do] = ACTIONS(4269), - [anon_sym_for] = ACTIONS(4269), - [anon_sym_return] = ACTIONS(4269), - [anon_sym_break] = ACTIONS(4269), - [anon_sym_continue] = ACTIONS(4269), - [anon_sym_goto] = ACTIONS(4269), - [anon_sym_not] = ACTIONS(4269), - [anon_sym_compl] = ACTIONS(4269), - [anon_sym_DASH_DASH] = ACTIONS(4267), - [anon_sym_PLUS_PLUS] = ACTIONS(4267), - [anon_sym_sizeof] = ACTIONS(4269), - [anon_sym___alignof__] = ACTIONS(4269), - [anon_sym___alignof] = ACTIONS(4269), - [anon_sym__alignof] = ACTIONS(4269), - [anon_sym_alignof] = ACTIONS(4269), - [anon_sym__Alignof] = ACTIONS(4269), - [anon_sym_offsetof] = ACTIONS(4269), - [anon_sym__Generic] = ACTIONS(4269), - [anon_sym_typename] = ACTIONS(4269), - [anon_sym_asm] = ACTIONS(4269), - [anon_sym___asm__] = ACTIONS(4269), - [anon_sym___asm] = ACTIONS(4269), - [sym_number_literal] = ACTIONS(4267), - [anon_sym_L_SQUOTE] = ACTIONS(4267), - [anon_sym_u_SQUOTE] = ACTIONS(4267), - [anon_sym_U_SQUOTE] = ACTIONS(4267), - [anon_sym_u8_SQUOTE] = ACTIONS(4267), - [anon_sym_SQUOTE] = ACTIONS(4267), - [anon_sym_L_DQUOTE] = ACTIONS(4267), - [anon_sym_u_DQUOTE] = ACTIONS(4267), - [anon_sym_U_DQUOTE] = ACTIONS(4267), - [anon_sym_u8_DQUOTE] = ACTIONS(4267), - [anon_sym_DQUOTE] = ACTIONS(4267), - [sym_true] = ACTIONS(4269), - [sym_false] = ACTIONS(4269), - [anon_sym_NULL] = ACTIONS(4269), - [anon_sym_nullptr] = ACTIONS(4269), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4269), - [anon_sym_decltype] = ACTIONS(4269), - [anon_sym_explicit] = ACTIONS(4269), - [anon_sym_export] = ACTIONS(4269), - [anon_sym_module] = ACTIONS(4269), - [anon_sym_import] = ACTIONS(4269), - [anon_sym_template] = ACTIONS(4269), - [anon_sym_operator] = ACTIONS(4269), - [anon_sym_try] = ACTIONS(4269), - [anon_sym_delete] = ACTIONS(4269), - [anon_sym_throw] = ACTIONS(4269), - [anon_sym_namespace] = ACTIONS(4269), - [anon_sym_static_assert] = ACTIONS(4269), - [anon_sym_concept] = ACTIONS(4269), - [anon_sym_co_return] = ACTIONS(4269), - [anon_sym_co_yield] = ACTIONS(4269), - [anon_sym_R_DQUOTE] = ACTIONS(4267), - [anon_sym_LR_DQUOTE] = ACTIONS(4267), - [anon_sym_uR_DQUOTE] = ACTIONS(4267), - [anon_sym_UR_DQUOTE] = ACTIONS(4267), - [anon_sym_u8R_DQUOTE] = ACTIONS(4267), - [anon_sym_co_await] = ACTIONS(4269), - [anon_sym_new] = ACTIONS(4269), - [anon_sym_requires] = ACTIONS(4269), - [anon_sym_CARET_CARET] = ACTIONS(4267), - [anon_sym_LBRACK_COLON] = ACTIONS(4267), - [sym_this] = ACTIONS(4269), + [STATE(510)] = { + [sym_identifier] = ACTIONS(4290), + [aux_sym_preproc_include_token1] = ACTIONS(4290), + [aux_sym_preproc_def_token1] = ACTIONS(4290), + [aux_sym_preproc_if_token1] = ACTIONS(4290), + [aux_sym_preproc_if_token2] = ACTIONS(4290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4290), + [aux_sym_preproc_else_token1] = ACTIONS(4290), + [aux_sym_preproc_elif_token1] = ACTIONS(4290), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4290), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4290), + [sym_preproc_directive] = ACTIONS(4290), + [anon_sym_LPAREN2] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_AMP] = ACTIONS(4290), + [anon_sym_SEMI] = ACTIONS(4292), + [anon_sym___extension__] = ACTIONS(4290), + [anon_sym_typedef] = ACTIONS(4290), + [anon_sym_virtual] = ACTIONS(4290), + [anon_sym_extern] = ACTIONS(4290), + [anon_sym___attribute__] = ACTIONS(4290), + [anon_sym___attribute] = ACTIONS(4290), + [anon_sym_using] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4292), + [anon_sym___declspec] = ACTIONS(4290), + [anon_sym___based] = ACTIONS(4290), + [anon_sym___cdecl] = ACTIONS(4290), + [anon_sym___clrcall] = ACTIONS(4290), + [anon_sym___stdcall] = ACTIONS(4290), + [anon_sym___fastcall] = ACTIONS(4290), + [anon_sym___thiscall] = ACTIONS(4290), + [anon_sym___vectorcall] = ACTIONS(4290), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_signed] = ACTIONS(4290), + [anon_sym_unsigned] = ACTIONS(4290), + [anon_sym_long] = ACTIONS(4290), + [anon_sym_short] = ACTIONS(4290), + [anon_sym_LBRACK] = ACTIONS(4290), + [anon_sym_static] = ACTIONS(4290), + [anon_sym_register] = ACTIONS(4290), + [anon_sym_inline] = ACTIONS(4290), + [anon_sym___inline] = ACTIONS(4290), + [anon_sym___inline__] = ACTIONS(4290), + [anon_sym___forceinline] = ACTIONS(4290), + [anon_sym_thread_local] = ACTIONS(4290), + [anon_sym___thread] = ACTIONS(4290), + [anon_sym_const] = ACTIONS(4290), + [anon_sym_constexpr] = ACTIONS(4290), + [anon_sym_volatile] = ACTIONS(4290), + [anon_sym_restrict] = ACTIONS(4290), + [anon_sym___restrict__] = ACTIONS(4290), + [anon_sym__Atomic] = ACTIONS(4290), + [anon_sym__Noreturn] = ACTIONS(4290), + [anon_sym_noreturn] = ACTIONS(4290), + [anon_sym__Nonnull] = ACTIONS(4290), + [anon_sym_mutable] = ACTIONS(4290), + [anon_sym_constinit] = ACTIONS(4290), + [anon_sym_consteval] = ACTIONS(4290), + [anon_sym_alignas] = ACTIONS(4290), + [anon_sym__Alignas] = ACTIONS(4290), + [sym_primitive_type] = ACTIONS(4290), + [anon_sym_enum] = ACTIONS(4290), + [anon_sym_class] = ACTIONS(4290), + [anon_sym_struct] = ACTIONS(4290), + [anon_sym_union] = ACTIONS(4290), + [anon_sym_if] = ACTIONS(4290), + [anon_sym_switch] = ACTIONS(4290), + [anon_sym_case] = ACTIONS(4290), + [anon_sym_default] = ACTIONS(4290), + [anon_sym_while] = ACTIONS(4290), + [anon_sym_do] = ACTIONS(4290), + [anon_sym_for] = ACTIONS(4290), + [anon_sym_return] = ACTIONS(4290), + [anon_sym_break] = ACTIONS(4290), + [anon_sym_continue] = ACTIONS(4290), + [anon_sym_goto] = ACTIONS(4290), + [anon_sym___try] = ACTIONS(4290), + [anon_sym___leave] = ACTIONS(4290), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_sizeof] = ACTIONS(4290), + [anon_sym___alignof__] = ACTIONS(4290), + [anon_sym___alignof] = ACTIONS(4290), + [anon_sym__alignof] = ACTIONS(4290), + [anon_sym_alignof] = ACTIONS(4290), + [anon_sym__Alignof] = ACTIONS(4290), + [anon_sym_offsetof] = ACTIONS(4290), + [anon_sym__Generic] = ACTIONS(4290), + [anon_sym_typename] = ACTIONS(4290), + [anon_sym_asm] = ACTIONS(4290), + [anon_sym___asm__] = ACTIONS(4290), + [anon_sym___asm] = ACTIONS(4290), + [sym_number_literal] = ACTIONS(4292), + [anon_sym_L_SQUOTE] = ACTIONS(4292), + [anon_sym_u_SQUOTE] = ACTIONS(4292), + [anon_sym_U_SQUOTE] = ACTIONS(4292), + [anon_sym_u8_SQUOTE] = ACTIONS(4292), + [anon_sym_SQUOTE] = ACTIONS(4292), + [anon_sym_L_DQUOTE] = ACTIONS(4292), + [anon_sym_u_DQUOTE] = ACTIONS(4292), + [anon_sym_U_DQUOTE] = ACTIONS(4292), + [anon_sym_u8_DQUOTE] = ACTIONS(4292), + [anon_sym_DQUOTE] = ACTIONS(4292), + [sym_true] = ACTIONS(4290), + [sym_false] = ACTIONS(4290), + [anon_sym_NULL] = ACTIONS(4290), + [anon_sym_nullptr] = ACTIONS(4290), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4290), + [anon_sym_decltype] = ACTIONS(4290), + [anon_sym_explicit] = ACTIONS(4290), + [anon_sym_export] = ACTIONS(4290), + [anon_sym_module] = ACTIONS(4290), + [anon_sym_import] = ACTIONS(4290), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_operator] = ACTIONS(4290), + [anon_sym_try] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4290), + [anon_sym_throw] = ACTIONS(4290), + [anon_sym_namespace] = ACTIONS(4290), + [anon_sym_static_assert] = ACTIONS(4290), + [anon_sym_concept] = ACTIONS(4290), + [anon_sym_co_return] = ACTIONS(4290), + [anon_sym_co_yield] = ACTIONS(4290), + [anon_sym_R_DQUOTE] = ACTIONS(4292), + [anon_sym_LR_DQUOTE] = ACTIONS(4292), + [anon_sym_uR_DQUOTE] = ACTIONS(4292), + [anon_sym_UR_DQUOTE] = ACTIONS(4292), + [anon_sym_u8R_DQUOTE] = ACTIONS(4292), + [anon_sym_co_await] = ACTIONS(4290), + [anon_sym_new] = ACTIONS(4290), + [anon_sym_requires] = ACTIONS(4290), + [anon_sym_CARET_CARET] = ACTIONS(4292), + [anon_sym_LBRACK_COLON] = ACTIONS(4292), + [sym_this] = ACTIONS(4290), }, - [STATE(569)] = { - [ts_builtin_sym_end] = ACTIONS(3984), - [sym_identifier] = ACTIONS(3982), - [aux_sym_preproc_include_token1] = ACTIONS(3982), - [aux_sym_preproc_def_token1] = ACTIONS(3982), - [aux_sym_preproc_if_token1] = ACTIONS(3982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3982), - [sym_preproc_directive] = ACTIONS(3982), - [anon_sym_LPAREN2] = ACTIONS(3984), - [anon_sym_BANG] = ACTIONS(3984), - [anon_sym_TILDE] = ACTIONS(3984), - [anon_sym_DASH] = ACTIONS(3982), - [anon_sym_PLUS] = ACTIONS(3982), - [anon_sym_STAR] = ACTIONS(3984), - [anon_sym_AMP_AMP] = ACTIONS(3984), - [anon_sym_AMP] = ACTIONS(3982), - [anon_sym_SEMI] = ACTIONS(3984), - [anon_sym___extension__] = ACTIONS(3982), - [anon_sym_typedef] = ACTIONS(3982), - [anon_sym_virtual] = ACTIONS(3982), - [anon_sym_extern] = ACTIONS(3982), - [anon_sym___attribute__] = ACTIONS(3982), - [anon_sym___attribute] = ACTIONS(3982), - [anon_sym_using] = ACTIONS(3982), - [anon_sym_COLON_COLON] = ACTIONS(3984), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3984), - [anon_sym___declspec] = ACTIONS(3982), - [anon_sym___based] = ACTIONS(3982), - [anon_sym___cdecl] = ACTIONS(3982), - [anon_sym___clrcall] = ACTIONS(3982), - [anon_sym___stdcall] = ACTIONS(3982), - [anon_sym___fastcall] = ACTIONS(3982), - [anon_sym___thiscall] = ACTIONS(3982), - [anon_sym___vectorcall] = ACTIONS(3982), - [anon_sym_LBRACE] = ACTIONS(3984), - [anon_sym_signed] = ACTIONS(3982), - [anon_sym_unsigned] = ACTIONS(3982), - [anon_sym_long] = ACTIONS(3982), - [anon_sym_short] = ACTIONS(3982), - [anon_sym_LBRACK] = ACTIONS(3982), - [anon_sym_static] = ACTIONS(3982), - [anon_sym_register] = ACTIONS(3982), - [anon_sym_inline] = ACTIONS(3982), - [anon_sym___inline] = ACTIONS(3982), - [anon_sym___inline__] = ACTIONS(3982), - [anon_sym___forceinline] = ACTIONS(3982), - [anon_sym_thread_local] = ACTIONS(3982), - [anon_sym___thread] = ACTIONS(3982), - [anon_sym_const] = ACTIONS(3982), - [anon_sym_constexpr] = ACTIONS(3982), - [anon_sym_volatile] = ACTIONS(3982), - [anon_sym_restrict] = ACTIONS(3982), - [anon_sym___restrict__] = ACTIONS(3982), - [anon_sym__Atomic] = ACTIONS(3982), - [anon_sym__Noreturn] = ACTIONS(3982), - [anon_sym_noreturn] = ACTIONS(3982), - [anon_sym__Nonnull] = ACTIONS(3982), - [anon_sym_mutable] = ACTIONS(3982), - [anon_sym_constinit] = ACTIONS(3982), - [anon_sym_consteval] = ACTIONS(3982), - [anon_sym_alignas] = ACTIONS(3982), - [anon_sym__Alignas] = ACTIONS(3982), - [sym_primitive_type] = ACTIONS(3982), - [anon_sym_enum] = ACTIONS(3982), - [anon_sym_class] = ACTIONS(3982), - [anon_sym_struct] = ACTIONS(3982), - [anon_sym_union] = ACTIONS(3982), - [anon_sym_if] = ACTIONS(3982), - [anon_sym_switch] = ACTIONS(3982), - [anon_sym_case] = ACTIONS(3982), - [anon_sym_default] = ACTIONS(3982), - [anon_sym_while] = ACTIONS(3982), - [anon_sym_do] = ACTIONS(3982), - [anon_sym_for] = ACTIONS(3982), - [anon_sym_return] = ACTIONS(3982), - [anon_sym_break] = ACTIONS(3982), - [anon_sym_continue] = ACTIONS(3982), - [anon_sym_goto] = ACTIONS(3982), - [anon_sym_not] = ACTIONS(3982), - [anon_sym_compl] = ACTIONS(3982), - [anon_sym_DASH_DASH] = ACTIONS(3984), - [anon_sym_PLUS_PLUS] = ACTIONS(3984), - [anon_sym_sizeof] = ACTIONS(3982), - [anon_sym___alignof__] = ACTIONS(3982), - [anon_sym___alignof] = ACTIONS(3982), - [anon_sym__alignof] = ACTIONS(3982), - [anon_sym_alignof] = ACTIONS(3982), - [anon_sym__Alignof] = ACTIONS(3982), - [anon_sym_offsetof] = ACTIONS(3982), - [anon_sym__Generic] = ACTIONS(3982), - [anon_sym_typename] = ACTIONS(3982), - [anon_sym_asm] = ACTIONS(3982), - [anon_sym___asm__] = ACTIONS(3982), - [anon_sym___asm] = ACTIONS(3982), - [sym_number_literal] = ACTIONS(3984), - [anon_sym_L_SQUOTE] = ACTIONS(3984), - [anon_sym_u_SQUOTE] = ACTIONS(3984), - [anon_sym_U_SQUOTE] = ACTIONS(3984), - [anon_sym_u8_SQUOTE] = ACTIONS(3984), - [anon_sym_SQUOTE] = ACTIONS(3984), - [anon_sym_L_DQUOTE] = ACTIONS(3984), - [anon_sym_u_DQUOTE] = ACTIONS(3984), - [anon_sym_U_DQUOTE] = ACTIONS(3984), - [anon_sym_u8_DQUOTE] = ACTIONS(3984), - [anon_sym_DQUOTE] = ACTIONS(3984), - [sym_true] = ACTIONS(3982), - [sym_false] = ACTIONS(3982), - [anon_sym_NULL] = ACTIONS(3982), - [anon_sym_nullptr] = ACTIONS(3982), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3982), - [anon_sym_decltype] = ACTIONS(3982), - [anon_sym_explicit] = ACTIONS(3982), - [anon_sym_export] = ACTIONS(3982), - [anon_sym_module] = ACTIONS(3982), - [anon_sym_import] = ACTIONS(3982), - [anon_sym_template] = ACTIONS(3982), - [anon_sym_operator] = ACTIONS(3982), - [anon_sym_try] = ACTIONS(3982), - [anon_sym_delete] = ACTIONS(3982), - [anon_sym_throw] = ACTIONS(3982), - [anon_sym_namespace] = ACTIONS(3982), - [anon_sym_static_assert] = ACTIONS(3982), - [anon_sym_concept] = ACTIONS(3982), - [anon_sym_co_return] = ACTIONS(3982), - [anon_sym_co_yield] = ACTIONS(3982), - [anon_sym_R_DQUOTE] = ACTIONS(3984), - [anon_sym_LR_DQUOTE] = ACTIONS(3984), - [anon_sym_uR_DQUOTE] = ACTIONS(3984), - [anon_sym_UR_DQUOTE] = ACTIONS(3984), - [anon_sym_u8R_DQUOTE] = ACTIONS(3984), - [anon_sym_co_await] = ACTIONS(3982), - [anon_sym_new] = ACTIONS(3982), - [anon_sym_requires] = ACTIONS(3982), - [anon_sym_CARET_CARET] = ACTIONS(3984), - [anon_sym_LBRACK_COLON] = ACTIONS(3984), - [sym_this] = ACTIONS(3982), + [STATE(511)] = { + [sym_identifier] = ACTIONS(4294), + [aux_sym_preproc_include_token1] = ACTIONS(4294), + [aux_sym_preproc_def_token1] = ACTIONS(4294), + [aux_sym_preproc_if_token1] = ACTIONS(4294), + [aux_sym_preproc_if_token2] = ACTIONS(4294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4294), + [aux_sym_preproc_else_token1] = ACTIONS(4294), + [aux_sym_preproc_elif_token1] = ACTIONS(4294), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4294), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4294), + [sym_preproc_directive] = ACTIONS(4294), + [anon_sym_LPAREN2] = ACTIONS(4296), + [anon_sym_BANG] = ACTIONS(4296), + [anon_sym_TILDE] = ACTIONS(4296), + [anon_sym_DASH] = ACTIONS(4294), + [anon_sym_PLUS] = ACTIONS(4294), + [anon_sym_STAR] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_AMP] = ACTIONS(4294), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym___extension__] = ACTIONS(4294), + [anon_sym_typedef] = ACTIONS(4294), + [anon_sym_virtual] = ACTIONS(4294), + [anon_sym_extern] = ACTIONS(4294), + [anon_sym___attribute__] = ACTIONS(4294), + [anon_sym___attribute] = ACTIONS(4294), + [anon_sym_using] = ACTIONS(4294), + [anon_sym_COLON_COLON] = ACTIONS(4296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4296), + [anon_sym___declspec] = ACTIONS(4294), + [anon_sym___based] = ACTIONS(4294), + [anon_sym___cdecl] = ACTIONS(4294), + [anon_sym___clrcall] = ACTIONS(4294), + [anon_sym___stdcall] = ACTIONS(4294), + [anon_sym___fastcall] = ACTIONS(4294), + [anon_sym___thiscall] = ACTIONS(4294), + [anon_sym___vectorcall] = ACTIONS(4294), + [anon_sym_LBRACE] = ACTIONS(4296), + [anon_sym_signed] = ACTIONS(4294), + [anon_sym_unsigned] = ACTIONS(4294), + [anon_sym_long] = ACTIONS(4294), + [anon_sym_short] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(4294), + [anon_sym_static] = ACTIONS(4294), + [anon_sym_register] = ACTIONS(4294), + [anon_sym_inline] = ACTIONS(4294), + [anon_sym___inline] = ACTIONS(4294), + [anon_sym___inline__] = ACTIONS(4294), + [anon_sym___forceinline] = ACTIONS(4294), + [anon_sym_thread_local] = ACTIONS(4294), + [anon_sym___thread] = ACTIONS(4294), + [anon_sym_const] = ACTIONS(4294), + [anon_sym_constexpr] = ACTIONS(4294), + [anon_sym_volatile] = ACTIONS(4294), + [anon_sym_restrict] = ACTIONS(4294), + [anon_sym___restrict__] = ACTIONS(4294), + [anon_sym__Atomic] = ACTIONS(4294), + [anon_sym__Noreturn] = ACTIONS(4294), + [anon_sym_noreturn] = ACTIONS(4294), + [anon_sym__Nonnull] = ACTIONS(4294), + [anon_sym_mutable] = ACTIONS(4294), + [anon_sym_constinit] = ACTIONS(4294), + [anon_sym_consteval] = ACTIONS(4294), + [anon_sym_alignas] = ACTIONS(4294), + [anon_sym__Alignas] = ACTIONS(4294), + [sym_primitive_type] = ACTIONS(4294), + [anon_sym_enum] = ACTIONS(4294), + [anon_sym_class] = ACTIONS(4294), + [anon_sym_struct] = ACTIONS(4294), + [anon_sym_union] = ACTIONS(4294), + [anon_sym_if] = ACTIONS(4294), + [anon_sym_switch] = ACTIONS(4294), + [anon_sym_case] = ACTIONS(4294), + [anon_sym_default] = ACTIONS(4294), + [anon_sym_while] = ACTIONS(4294), + [anon_sym_do] = ACTIONS(4294), + [anon_sym_for] = ACTIONS(4294), + [anon_sym_return] = ACTIONS(4294), + [anon_sym_break] = ACTIONS(4294), + [anon_sym_continue] = ACTIONS(4294), + [anon_sym_goto] = ACTIONS(4294), + [anon_sym___try] = ACTIONS(4294), + [anon_sym___leave] = ACTIONS(4294), + [anon_sym_not] = ACTIONS(4294), + [anon_sym_compl] = ACTIONS(4294), + [anon_sym_DASH_DASH] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4296), + [anon_sym_sizeof] = ACTIONS(4294), + [anon_sym___alignof__] = ACTIONS(4294), + [anon_sym___alignof] = ACTIONS(4294), + [anon_sym__alignof] = ACTIONS(4294), + [anon_sym_alignof] = ACTIONS(4294), + [anon_sym__Alignof] = ACTIONS(4294), + [anon_sym_offsetof] = ACTIONS(4294), + [anon_sym__Generic] = ACTIONS(4294), + [anon_sym_typename] = ACTIONS(4294), + [anon_sym_asm] = ACTIONS(4294), + [anon_sym___asm__] = ACTIONS(4294), + [anon_sym___asm] = ACTIONS(4294), + [sym_number_literal] = ACTIONS(4296), + [anon_sym_L_SQUOTE] = ACTIONS(4296), + [anon_sym_u_SQUOTE] = ACTIONS(4296), + [anon_sym_U_SQUOTE] = ACTIONS(4296), + [anon_sym_u8_SQUOTE] = ACTIONS(4296), + [anon_sym_SQUOTE] = ACTIONS(4296), + [anon_sym_L_DQUOTE] = ACTIONS(4296), + [anon_sym_u_DQUOTE] = ACTIONS(4296), + [anon_sym_U_DQUOTE] = ACTIONS(4296), + [anon_sym_u8_DQUOTE] = ACTIONS(4296), + [anon_sym_DQUOTE] = ACTIONS(4296), + [sym_true] = ACTIONS(4294), + [sym_false] = ACTIONS(4294), + [anon_sym_NULL] = ACTIONS(4294), + [anon_sym_nullptr] = ACTIONS(4294), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4294), + [anon_sym_decltype] = ACTIONS(4294), + [anon_sym_explicit] = ACTIONS(4294), + [anon_sym_export] = ACTIONS(4294), + [anon_sym_module] = ACTIONS(4294), + [anon_sym_import] = ACTIONS(4294), + [anon_sym_template] = ACTIONS(4294), + [anon_sym_operator] = ACTIONS(4294), + [anon_sym_try] = ACTIONS(4294), + [anon_sym_delete] = ACTIONS(4294), + [anon_sym_throw] = ACTIONS(4294), + [anon_sym_namespace] = ACTIONS(4294), + [anon_sym_static_assert] = ACTIONS(4294), + [anon_sym_concept] = ACTIONS(4294), + [anon_sym_co_return] = ACTIONS(4294), + [anon_sym_co_yield] = ACTIONS(4294), + [anon_sym_R_DQUOTE] = ACTIONS(4296), + [anon_sym_LR_DQUOTE] = ACTIONS(4296), + [anon_sym_uR_DQUOTE] = ACTIONS(4296), + [anon_sym_UR_DQUOTE] = ACTIONS(4296), + [anon_sym_u8R_DQUOTE] = ACTIONS(4296), + [anon_sym_co_await] = ACTIONS(4294), + [anon_sym_new] = ACTIONS(4294), + [anon_sym_requires] = ACTIONS(4294), + [anon_sym_CARET_CARET] = ACTIONS(4296), + [anon_sym_LBRACK_COLON] = ACTIONS(4296), + [sym_this] = ACTIONS(4294), }, - [STATE(570)] = { - [ts_builtin_sym_end] = ACTIONS(4020), - [sym_identifier] = ACTIONS(4018), - [aux_sym_preproc_include_token1] = ACTIONS(4018), - [aux_sym_preproc_def_token1] = ACTIONS(4018), - [aux_sym_preproc_if_token1] = ACTIONS(4018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4018), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4018), - [sym_preproc_directive] = ACTIONS(4018), - [anon_sym_LPAREN2] = ACTIONS(4020), - [anon_sym_BANG] = ACTIONS(4020), - [anon_sym_TILDE] = ACTIONS(4020), - [anon_sym_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4018), - [anon_sym_STAR] = ACTIONS(4020), - [anon_sym_AMP_AMP] = ACTIONS(4020), - [anon_sym_AMP] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4020), - [anon_sym___extension__] = ACTIONS(4018), - [anon_sym_typedef] = ACTIONS(4018), - [anon_sym_virtual] = ACTIONS(4018), - [anon_sym_extern] = ACTIONS(4018), - [anon_sym___attribute__] = ACTIONS(4018), - [anon_sym___attribute] = ACTIONS(4018), - [anon_sym_using] = ACTIONS(4018), - [anon_sym_COLON_COLON] = ACTIONS(4020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4020), - [anon_sym___declspec] = ACTIONS(4018), - [anon_sym___based] = ACTIONS(4018), - [anon_sym___cdecl] = ACTIONS(4018), - [anon_sym___clrcall] = ACTIONS(4018), - [anon_sym___stdcall] = ACTIONS(4018), - [anon_sym___fastcall] = ACTIONS(4018), - [anon_sym___thiscall] = ACTIONS(4018), - [anon_sym___vectorcall] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4020), - [anon_sym_signed] = ACTIONS(4018), - [anon_sym_unsigned] = ACTIONS(4018), - [anon_sym_long] = ACTIONS(4018), - [anon_sym_short] = ACTIONS(4018), - [anon_sym_LBRACK] = ACTIONS(4018), - [anon_sym_static] = ACTIONS(4018), - [anon_sym_register] = ACTIONS(4018), - [anon_sym_inline] = ACTIONS(4018), - [anon_sym___inline] = ACTIONS(4018), - [anon_sym___inline__] = ACTIONS(4018), - [anon_sym___forceinline] = ACTIONS(4018), - [anon_sym_thread_local] = ACTIONS(4018), - [anon_sym___thread] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4018), - [anon_sym_constexpr] = ACTIONS(4018), - [anon_sym_volatile] = ACTIONS(4018), - [anon_sym_restrict] = ACTIONS(4018), - [anon_sym___restrict__] = ACTIONS(4018), - [anon_sym__Atomic] = ACTIONS(4018), - [anon_sym__Noreturn] = ACTIONS(4018), - [anon_sym_noreturn] = ACTIONS(4018), - [anon_sym__Nonnull] = ACTIONS(4018), - [anon_sym_mutable] = ACTIONS(4018), - [anon_sym_constinit] = ACTIONS(4018), - [anon_sym_consteval] = ACTIONS(4018), - [anon_sym_alignas] = ACTIONS(4018), - [anon_sym__Alignas] = ACTIONS(4018), - [sym_primitive_type] = ACTIONS(4018), - [anon_sym_enum] = ACTIONS(4018), - [anon_sym_class] = ACTIONS(4018), - [anon_sym_struct] = ACTIONS(4018), - [anon_sym_union] = ACTIONS(4018), - [anon_sym_if] = ACTIONS(4018), - [anon_sym_switch] = ACTIONS(4018), - [anon_sym_case] = ACTIONS(4018), - [anon_sym_default] = ACTIONS(4018), - [anon_sym_while] = ACTIONS(4018), - [anon_sym_do] = ACTIONS(4018), - [anon_sym_for] = ACTIONS(4018), - [anon_sym_return] = ACTIONS(4018), - [anon_sym_break] = ACTIONS(4018), - [anon_sym_continue] = ACTIONS(4018), - [anon_sym_goto] = ACTIONS(4018), - [anon_sym_not] = ACTIONS(4018), - [anon_sym_compl] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4020), - [anon_sym_PLUS_PLUS] = ACTIONS(4020), - [anon_sym_sizeof] = ACTIONS(4018), - [anon_sym___alignof__] = ACTIONS(4018), - [anon_sym___alignof] = ACTIONS(4018), - [anon_sym__alignof] = ACTIONS(4018), - [anon_sym_alignof] = ACTIONS(4018), - [anon_sym__Alignof] = ACTIONS(4018), - [anon_sym_offsetof] = ACTIONS(4018), - [anon_sym__Generic] = ACTIONS(4018), - [anon_sym_typename] = ACTIONS(4018), - [anon_sym_asm] = ACTIONS(4018), - [anon_sym___asm__] = ACTIONS(4018), - [anon_sym___asm] = ACTIONS(4018), - [sym_number_literal] = ACTIONS(4020), - [anon_sym_L_SQUOTE] = ACTIONS(4020), - [anon_sym_u_SQUOTE] = ACTIONS(4020), - [anon_sym_U_SQUOTE] = ACTIONS(4020), - [anon_sym_u8_SQUOTE] = ACTIONS(4020), - [anon_sym_SQUOTE] = 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_true] = ACTIONS(4018), - [sym_false] = ACTIONS(4018), - [anon_sym_NULL] = ACTIONS(4018), - [anon_sym_nullptr] = ACTIONS(4018), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4018), - [anon_sym_decltype] = ACTIONS(4018), - [anon_sym_explicit] = ACTIONS(4018), - [anon_sym_export] = ACTIONS(4018), - [anon_sym_module] = ACTIONS(4018), - [anon_sym_import] = ACTIONS(4018), - [anon_sym_template] = ACTIONS(4018), - [anon_sym_operator] = ACTIONS(4018), - [anon_sym_try] = ACTIONS(4018), - [anon_sym_delete] = ACTIONS(4018), - [anon_sym_throw] = ACTIONS(4018), - [anon_sym_namespace] = ACTIONS(4018), - [anon_sym_static_assert] = ACTIONS(4018), - [anon_sym_concept] = ACTIONS(4018), - [anon_sym_co_return] = ACTIONS(4018), - [anon_sym_co_yield] = ACTIONS(4018), - [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), - [anon_sym_co_await] = ACTIONS(4018), - [anon_sym_new] = ACTIONS(4018), - [anon_sym_requires] = ACTIONS(4018), - [anon_sym_CARET_CARET] = ACTIONS(4020), - [anon_sym_LBRACK_COLON] = ACTIONS(4020), - [sym_this] = ACTIONS(4018), + [STATE(512)] = { + [sym_type_qualifier] = STATE(5144), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4033), + [sym_sized_type_specifier] = STATE(4064), + [sym_enum_specifier] = STATE(4064), + [sym_struct_specifier] = STATE(4064), + [sym_union_specifier] = STATE(4064), + [sym_expression] = STATE(6808), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_type_descriptor] = STATE(7253), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_placeholder_type_specifier] = STATE(4064), + [sym_decltype_auto] = STATE(4119), + [sym_decltype] = STATE(3967), + [sym_class_specifier] = STATE(4064), + [sym__class_name] = STATE(10587), + [sym_dependent_type] = STATE(4064), + [sym_template_type] = STATE(4622), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7971), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(4752), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3711), + [sym_splice_type_specifier] = STATE(4644), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym__type_definition_type_repeat1] = STATE(5144), + [aux_sym_sized_type_specifier_repeat1] = STATE(3488), + [sym_identifier] = ACTIONS(4298), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4306), + [anon_sym_COLON_COLON] = ACTIONS(4308), + [anon_sym_signed] = ACTIONS(4310), + [anon_sym_unsigned] = ACTIONS(4310), + [anon_sym_long] = ACTIONS(4310), + [anon_sym_short] = ACTIONS(4310), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(4312), + [anon_sym_enum] = ACTIONS(4314), + [anon_sym_class] = ACTIONS(4316), + [anon_sym_struct] = ACTIONS(4318), + [anon_sym_union] = ACTIONS(4320), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4332), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3891), + [anon_sym_decltype] = ACTIONS(3893), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), }, - [STATE(571)] = { - [ts_builtin_sym_end] = ACTIONS(4024), - [sym_identifier] = ACTIONS(4022), - [aux_sym_preproc_include_token1] = ACTIONS(4022), - [aux_sym_preproc_def_token1] = ACTIONS(4022), - [aux_sym_preproc_if_token1] = ACTIONS(4022), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4022), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4022), - [sym_preproc_directive] = ACTIONS(4022), - [anon_sym_LPAREN2] = ACTIONS(4024), - [anon_sym_BANG] = ACTIONS(4024), - [anon_sym_TILDE] = ACTIONS(4024), - [anon_sym_DASH] = ACTIONS(4022), - [anon_sym_PLUS] = ACTIONS(4022), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_AMP_AMP] = ACTIONS(4024), - [anon_sym_AMP] = ACTIONS(4022), - [anon_sym_SEMI] = ACTIONS(4024), - [anon_sym___extension__] = ACTIONS(4022), - [anon_sym_typedef] = ACTIONS(4022), - [anon_sym_virtual] = ACTIONS(4022), - [anon_sym_extern] = ACTIONS(4022), - [anon_sym___attribute__] = ACTIONS(4022), - [anon_sym___attribute] = ACTIONS(4022), - [anon_sym_using] = ACTIONS(4022), - [anon_sym_COLON_COLON] = ACTIONS(4024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4024), - [anon_sym___declspec] = ACTIONS(4022), - [anon_sym___based] = ACTIONS(4022), - [anon_sym___cdecl] = ACTIONS(4022), - [anon_sym___clrcall] = ACTIONS(4022), - [anon_sym___stdcall] = ACTIONS(4022), - [anon_sym___fastcall] = ACTIONS(4022), - [anon_sym___thiscall] = ACTIONS(4022), - [anon_sym___vectorcall] = ACTIONS(4022), - [anon_sym_LBRACE] = ACTIONS(4024), - [anon_sym_signed] = ACTIONS(4022), - [anon_sym_unsigned] = ACTIONS(4022), - [anon_sym_long] = ACTIONS(4022), - [anon_sym_short] = ACTIONS(4022), - [anon_sym_LBRACK] = ACTIONS(4022), - [anon_sym_static] = ACTIONS(4022), - [anon_sym_register] = ACTIONS(4022), - [anon_sym_inline] = ACTIONS(4022), - [anon_sym___inline] = ACTIONS(4022), - [anon_sym___inline__] = ACTIONS(4022), - [anon_sym___forceinline] = ACTIONS(4022), - [anon_sym_thread_local] = ACTIONS(4022), - [anon_sym___thread] = ACTIONS(4022), - [anon_sym_const] = ACTIONS(4022), - [anon_sym_constexpr] = ACTIONS(4022), - [anon_sym_volatile] = ACTIONS(4022), - [anon_sym_restrict] = ACTIONS(4022), - [anon_sym___restrict__] = ACTIONS(4022), - [anon_sym__Atomic] = ACTIONS(4022), - [anon_sym__Noreturn] = ACTIONS(4022), - [anon_sym_noreturn] = ACTIONS(4022), - [anon_sym__Nonnull] = ACTIONS(4022), - [anon_sym_mutable] = ACTIONS(4022), - [anon_sym_constinit] = ACTIONS(4022), - [anon_sym_consteval] = ACTIONS(4022), - [anon_sym_alignas] = ACTIONS(4022), - [anon_sym__Alignas] = ACTIONS(4022), - [sym_primitive_type] = ACTIONS(4022), - [anon_sym_enum] = ACTIONS(4022), - [anon_sym_class] = ACTIONS(4022), - [anon_sym_struct] = ACTIONS(4022), - [anon_sym_union] = ACTIONS(4022), - [anon_sym_if] = ACTIONS(4022), - [anon_sym_switch] = ACTIONS(4022), - [anon_sym_case] = ACTIONS(4022), - [anon_sym_default] = ACTIONS(4022), - [anon_sym_while] = ACTIONS(4022), - [anon_sym_do] = ACTIONS(4022), - [anon_sym_for] = ACTIONS(4022), - [anon_sym_return] = ACTIONS(4022), - [anon_sym_break] = ACTIONS(4022), - [anon_sym_continue] = ACTIONS(4022), - [anon_sym_goto] = ACTIONS(4022), - [anon_sym_not] = ACTIONS(4022), - [anon_sym_compl] = ACTIONS(4022), - [anon_sym_DASH_DASH] = ACTIONS(4024), - [anon_sym_PLUS_PLUS] = ACTIONS(4024), - [anon_sym_sizeof] = ACTIONS(4022), - [anon_sym___alignof__] = ACTIONS(4022), - [anon_sym___alignof] = ACTIONS(4022), - [anon_sym__alignof] = ACTIONS(4022), - [anon_sym_alignof] = ACTIONS(4022), - [anon_sym__Alignof] = ACTIONS(4022), - [anon_sym_offsetof] = ACTIONS(4022), - [anon_sym__Generic] = ACTIONS(4022), - [anon_sym_typename] = ACTIONS(4022), - [anon_sym_asm] = ACTIONS(4022), - [anon_sym___asm__] = ACTIONS(4022), - [anon_sym___asm] = ACTIONS(4022), - [sym_number_literal] = ACTIONS(4024), - [anon_sym_L_SQUOTE] = ACTIONS(4024), - [anon_sym_u_SQUOTE] = ACTIONS(4024), - [anon_sym_U_SQUOTE] = ACTIONS(4024), - [anon_sym_u8_SQUOTE] = ACTIONS(4024), - [anon_sym_SQUOTE] = 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_true] = ACTIONS(4022), - [sym_false] = ACTIONS(4022), - [anon_sym_NULL] = ACTIONS(4022), - [anon_sym_nullptr] = ACTIONS(4022), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4022), - [anon_sym_decltype] = ACTIONS(4022), - [anon_sym_explicit] = ACTIONS(4022), - [anon_sym_export] = ACTIONS(4022), - [anon_sym_module] = ACTIONS(4022), - [anon_sym_import] = ACTIONS(4022), - [anon_sym_template] = ACTIONS(4022), - [anon_sym_operator] = ACTIONS(4022), - [anon_sym_try] = ACTIONS(4022), - [anon_sym_delete] = ACTIONS(4022), - [anon_sym_throw] = ACTIONS(4022), - [anon_sym_namespace] = ACTIONS(4022), - [anon_sym_static_assert] = ACTIONS(4022), - [anon_sym_concept] = ACTIONS(4022), - [anon_sym_co_return] = ACTIONS(4022), - [anon_sym_co_yield] = ACTIONS(4022), - [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), - [anon_sym_co_await] = ACTIONS(4022), - [anon_sym_new] = ACTIONS(4022), - [anon_sym_requires] = ACTIONS(4022), - [anon_sym_CARET_CARET] = ACTIONS(4024), - [anon_sym_LBRACK_COLON] = ACTIONS(4024), - [sym_this] = ACTIONS(4022), + [STATE(513)] = { + [sym_expression] = STATE(5773), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(4362), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(4365), + [anon_sym_virtual] = ACTIONS(3128), + [anon_sym_extern] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_COLON_COLON] = ACTIONS(4368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym___declspec] = ACTIONS(3128), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_register] = ACTIONS(3128), + [anon_sym_inline] = ACTIONS(3128), + [anon_sym___inline] = ACTIONS(3128), + [anon_sym___inline__] = ACTIONS(3128), + [anon_sym___forceinline] = ACTIONS(3128), + [anon_sym_thread_local] = ACTIONS(3128), + [anon_sym___thread] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(4371), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(4374), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(4377), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(4380), + [sym_this] = ACTIONS(2364), }, - [STATE(572)] = { - [ts_builtin_sym_end] = ACTIONS(4028), - [sym_identifier] = ACTIONS(4026), - [aux_sym_preproc_include_token1] = ACTIONS(4026), - [aux_sym_preproc_def_token1] = ACTIONS(4026), - [aux_sym_preproc_if_token1] = ACTIONS(4026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4026), - [sym_preproc_directive] = ACTIONS(4026), - [anon_sym_LPAREN2] = ACTIONS(4028), - [anon_sym_BANG] = ACTIONS(4028), - [anon_sym_TILDE] = ACTIONS(4028), - [anon_sym_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4026), - [anon_sym_STAR] = ACTIONS(4028), - [anon_sym_AMP_AMP] = ACTIONS(4028), - [anon_sym_AMP] = ACTIONS(4026), - [anon_sym_SEMI] = ACTIONS(4028), - [anon_sym___extension__] = ACTIONS(4026), - [anon_sym_typedef] = ACTIONS(4026), - [anon_sym_virtual] = ACTIONS(4026), - [anon_sym_extern] = ACTIONS(4026), - [anon_sym___attribute__] = ACTIONS(4026), - [anon_sym___attribute] = ACTIONS(4026), - [anon_sym_using] = ACTIONS(4026), - [anon_sym_COLON_COLON] = ACTIONS(4028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4028), - [anon_sym___declspec] = ACTIONS(4026), - [anon_sym___based] = ACTIONS(4026), - [anon_sym___cdecl] = ACTIONS(4026), - [anon_sym___clrcall] = ACTIONS(4026), - [anon_sym___stdcall] = ACTIONS(4026), - [anon_sym___fastcall] = ACTIONS(4026), - [anon_sym___thiscall] = ACTIONS(4026), - [anon_sym___vectorcall] = ACTIONS(4026), - [anon_sym_LBRACE] = ACTIONS(4028), - [anon_sym_signed] = ACTIONS(4026), - [anon_sym_unsigned] = ACTIONS(4026), - [anon_sym_long] = ACTIONS(4026), - [anon_sym_short] = ACTIONS(4026), - [anon_sym_LBRACK] = ACTIONS(4026), - [anon_sym_static] = ACTIONS(4026), - [anon_sym_register] = ACTIONS(4026), - [anon_sym_inline] = ACTIONS(4026), - [anon_sym___inline] = ACTIONS(4026), - [anon_sym___inline__] = ACTIONS(4026), - [anon_sym___forceinline] = ACTIONS(4026), - [anon_sym_thread_local] = ACTIONS(4026), - [anon_sym___thread] = ACTIONS(4026), - [anon_sym_const] = ACTIONS(4026), - [anon_sym_constexpr] = ACTIONS(4026), - [anon_sym_volatile] = ACTIONS(4026), - [anon_sym_restrict] = ACTIONS(4026), - [anon_sym___restrict__] = ACTIONS(4026), - [anon_sym__Atomic] = ACTIONS(4026), - [anon_sym__Noreturn] = ACTIONS(4026), - [anon_sym_noreturn] = ACTIONS(4026), - [anon_sym__Nonnull] = ACTIONS(4026), - [anon_sym_mutable] = ACTIONS(4026), - [anon_sym_constinit] = ACTIONS(4026), - [anon_sym_consteval] = ACTIONS(4026), - [anon_sym_alignas] = ACTIONS(4026), - [anon_sym__Alignas] = ACTIONS(4026), - [sym_primitive_type] = ACTIONS(4026), - [anon_sym_enum] = ACTIONS(4026), - [anon_sym_class] = ACTIONS(4026), - [anon_sym_struct] = ACTIONS(4026), - [anon_sym_union] = ACTIONS(4026), - [anon_sym_if] = ACTIONS(4026), - [anon_sym_switch] = ACTIONS(4026), - [anon_sym_case] = ACTIONS(4026), - [anon_sym_default] = ACTIONS(4026), - [anon_sym_while] = ACTIONS(4026), - [anon_sym_do] = ACTIONS(4026), - [anon_sym_for] = ACTIONS(4026), - [anon_sym_return] = ACTIONS(4026), - [anon_sym_break] = ACTIONS(4026), - [anon_sym_continue] = ACTIONS(4026), - [anon_sym_goto] = ACTIONS(4026), - [anon_sym_not] = ACTIONS(4026), - [anon_sym_compl] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4028), - [anon_sym_PLUS_PLUS] = ACTIONS(4028), - [anon_sym_sizeof] = ACTIONS(4026), - [anon_sym___alignof__] = ACTIONS(4026), - [anon_sym___alignof] = ACTIONS(4026), - [anon_sym__alignof] = ACTIONS(4026), - [anon_sym_alignof] = ACTIONS(4026), - [anon_sym__Alignof] = ACTIONS(4026), - [anon_sym_offsetof] = ACTIONS(4026), - [anon_sym__Generic] = ACTIONS(4026), - [anon_sym_typename] = ACTIONS(4026), - [anon_sym_asm] = ACTIONS(4026), - [anon_sym___asm__] = ACTIONS(4026), - [anon_sym___asm] = ACTIONS(4026), - [sym_number_literal] = ACTIONS(4028), - [anon_sym_L_SQUOTE] = ACTIONS(4028), - [anon_sym_u_SQUOTE] = ACTIONS(4028), - [anon_sym_U_SQUOTE] = ACTIONS(4028), - [anon_sym_u8_SQUOTE] = ACTIONS(4028), - [anon_sym_SQUOTE] = 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_true] = ACTIONS(4026), - [sym_false] = ACTIONS(4026), - [anon_sym_NULL] = ACTIONS(4026), - [anon_sym_nullptr] = ACTIONS(4026), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4026), - [anon_sym_decltype] = ACTIONS(4026), - [anon_sym_explicit] = ACTIONS(4026), - [anon_sym_export] = ACTIONS(4026), - [anon_sym_module] = ACTIONS(4026), - [anon_sym_import] = ACTIONS(4026), - [anon_sym_template] = ACTIONS(4026), - [anon_sym_operator] = ACTIONS(4026), - [anon_sym_try] = ACTIONS(4026), - [anon_sym_delete] = ACTIONS(4026), - [anon_sym_throw] = ACTIONS(4026), - [anon_sym_namespace] = ACTIONS(4026), - [anon_sym_static_assert] = ACTIONS(4026), - [anon_sym_concept] = ACTIONS(4026), - [anon_sym_co_return] = ACTIONS(4026), - [anon_sym_co_yield] = ACTIONS(4026), - [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), - [anon_sym_co_await] = ACTIONS(4026), - [anon_sym_new] = ACTIONS(4026), - [anon_sym_requires] = ACTIONS(4026), - [anon_sym_CARET_CARET] = ACTIONS(4028), - [anon_sym_LBRACK_COLON] = ACTIONS(4028), - [sym_this] = ACTIONS(4026), + [STATE(514)] = { + [sym_identifier] = ACTIONS(4383), + [aux_sym_preproc_include_token1] = ACTIONS(4383), + [aux_sym_preproc_def_token1] = ACTIONS(4383), + [aux_sym_preproc_if_token1] = ACTIONS(4383), + [aux_sym_preproc_if_token2] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4383), + [aux_sym_preproc_else_token1] = ACTIONS(4383), + [aux_sym_preproc_elif_token1] = ACTIONS(4383), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4383), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4383), + [sym_preproc_directive] = ACTIONS(4383), + [anon_sym_LPAREN2] = ACTIONS(4385), + [anon_sym_BANG] = ACTIONS(4385), + [anon_sym_TILDE] = ACTIONS(4385), + [anon_sym_DASH] = ACTIONS(4383), + [anon_sym_PLUS] = ACTIONS(4383), + [anon_sym_STAR] = ACTIONS(4385), + [anon_sym_AMP_AMP] = ACTIONS(4385), + [anon_sym_AMP] = ACTIONS(4383), + [anon_sym_SEMI] = ACTIONS(4385), + [anon_sym___extension__] = ACTIONS(4383), + [anon_sym_typedef] = ACTIONS(4383), + [anon_sym_virtual] = ACTIONS(4383), + [anon_sym_extern] = ACTIONS(4383), + [anon_sym___attribute__] = ACTIONS(4383), + [anon_sym___attribute] = ACTIONS(4383), + [anon_sym_using] = ACTIONS(4383), + [anon_sym_COLON_COLON] = ACTIONS(4385), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4385), + [anon_sym___declspec] = ACTIONS(4383), + [anon_sym___based] = ACTIONS(4383), + [anon_sym___cdecl] = ACTIONS(4383), + [anon_sym___clrcall] = ACTIONS(4383), + [anon_sym___stdcall] = ACTIONS(4383), + [anon_sym___fastcall] = ACTIONS(4383), + [anon_sym___thiscall] = ACTIONS(4383), + [anon_sym___vectorcall] = ACTIONS(4383), + [anon_sym_LBRACE] = ACTIONS(4385), + [anon_sym_signed] = ACTIONS(4383), + [anon_sym_unsigned] = ACTIONS(4383), + [anon_sym_long] = ACTIONS(4383), + [anon_sym_short] = ACTIONS(4383), + [anon_sym_LBRACK] = ACTIONS(4383), + [anon_sym_static] = ACTIONS(4383), + [anon_sym_register] = ACTIONS(4383), + [anon_sym_inline] = ACTIONS(4383), + [anon_sym___inline] = ACTIONS(4383), + [anon_sym___inline__] = ACTIONS(4383), + [anon_sym___forceinline] = ACTIONS(4383), + [anon_sym_thread_local] = ACTIONS(4383), + [anon_sym___thread] = ACTIONS(4383), + [anon_sym_const] = ACTIONS(4383), + [anon_sym_constexpr] = ACTIONS(4383), + [anon_sym_volatile] = ACTIONS(4383), + [anon_sym_restrict] = ACTIONS(4383), + [anon_sym___restrict__] = ACTIONS(4383), + [anon_sym__Atomic] = ACTIONS(4383), + [anon_sym__Noreturn] = ACTIONS(4383), + [anon_sym_noreturn] = ACTIONS(4383), + [anon_sym__Nonnull] = ACTIONS(4383), + [anon_sym_mutable] = ACTIONS(4383), + [anon_sym_constinit] = ACTIONS(4383), + [anon_sym_consteval] = ACTIONS(4383), + [anon_sym_alignas] = ACTIONS(4383), + [anon_sym__Alignas] = ACTIONS(4383), + [sym_primitive_type] = ACTIONS(4383), + [anon_sym_enum] = ACTIONS(4383), + [anon_sym_class] = ACTIONS(4383), + [anon_sym_struct] = ACTIONS(4383), + [anon_sym_union] = ACTIONS(4383), + [anon_sym_if] = ACTIONS(4383), + [anon_sym_switch] = ACTIONS(4383), + [anon_sym_case] = ACTIONS(4383), + [anon_sym_default] = ACTIONS(4383), + [anon_sym_while] = ACTIONS(4383), + [anon_sym_do] = ACTIONS(4383), + [anon_sym_for] = ACTIONS(4383), + [anon_sym_return] = ACTIONS(4383), + [anon_sym_break] = ACTIONS(4383), + [anon_sym_continue] = ACTIONS(4383), + [anon_sym_goto] = ACTIONS(4383), + [anon_sym___try] = ACTIONS(4383), + [anon_sym___leave] = ACTIONS(4383), + [anon_sym_not] = ACTIONS(4383), + [anon_sym_compl] = ACTIONS(4383), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(4383), + [anon_sym___alignof__] = ACTIONS(4383), + [anon_sym___alignof] = ACTIONS(4383), + [anon_sym__alignof] = ACTIONS(4383), + [anon_sym_alignof] = ACTIONS(4383), + [anon_sym__Alignof] = ACTIONS(4383), + [anon_sym_offsetof] = ACTIONS(4383), + [anon_sym__Generic] = ACTIONS(4383), + [anon_sym_typename] = ACTIONS(4383), + [anon_sym_asm] = ACTIONS(4383), + [anon_sym___asm__] = ACTIONS(4383), + [anon_sym___asm] = ACTIONS(4383), + [sym_number_literal] = ACTIONS(4385), + [anon_sym_L_SQUOTE] = ACTIONS(4385), + [anon_sym_u_SQUOTE] = ACTIONS(4385), + [anon_sym_U_SQUOTE] = ACTIONS(4385), + [anon_sym_u8_SQUOTE] = ACTIONS(4385), + [anon_sym_SQUOTE] = ACTIONS(4385), + [anon_sym_L_DQUOTE] = ACTIONS(4385), + [anon_sym_u_DQUOTE] = ACTIONS(4385), + [anon_sym_U_DQUOTE] = ACTIONS(4385), + [anon_sym_u8_DQUOTE] = ACTIONS(4385), + [anon_sym_DQUOTE] = ACTIONS(4385), + [sym_true] = ACTIONS(4383), + [sym_false] = ACTIONS(4383), + [anon_sym_NULL] = ACTIONS(4383), + [anon_sym_nullptr] = ACTIONS(4383), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4383), + [anon_sym_decltype] = ACTIONS(4383), + [anon_sym_explicit] = ACTIONS(4383), + [anon_sym_export] = ACTIONS(4383), + [anon_sym_module] = ACTIONS(4383), + [anon_sym_import] = ACTIONS(4383), + [anon_sym_template] = ACTIONS(4383), + [anon_sym_operator] = ACTIONS(4383), + [anon_sym_try] = ACTIONS(4383), + [anon_sym_delete] = ACTIONS(4383), + [anon_sym_throw] = ACTIONS(4383), + [anon_sym_namespace] = ACTIONS(4383), + [anon_sym_static_assert] = ACTIONS(4383), + [anon_sym_concept] = ACTIONS(4383), + [anon_sym_co_return] = ACTIONS(4383), + [anon_sym_co_yield] = ACTIONS(4383), + [anon_sym_R_DQUOTE] = ACTIONS(4385), + [anon_sym_LR_DQUOTE] = ACTIONS(4385), + [anon_sym_uR_DQUOTE] = ACTIONS(4385), + [anon_sym_UR_DQUOTE] = ACTIONS(4385), + [anon_sym_u8R_DQUOTE] = ACTIONS(4385), + [anon_sym_co_await] = ACTIONS(4383), + [anon_sym_new] = ACTIONS(4383), + [anon_sym_requires] = ACTIONS(4383), + [anon_sym_CARET_CARET] = ACTIONS(4385), + [anon_sym_LBRACK_COLON] = ACTIONS(4385), + [sym_this] = ACTIONS(4383), }, - [STATE(573)] = { - [ts_builtin_sym_end] = ACTIONS(4032), - [sym_identifier] = ACTIONS(4030), - [aux_sym_preproc_include_token1] = ACTIONS(4030), - [aux_sym_preproc_def_token1] = ACTIONS(4030), - [aux_sym_preproc_if_token1] = ACTIONS(4030), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4030), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4030), - [sym_preproc_directive] = ACTIONS(4030), - [anon_sym_LPAREN2] = ACTIONS(4032), - [anon_sym_BANG] = ACTIONS(4032), - [anon_sym_TILDE] = ACTIONS(4032), - [anon_sym_DASH] = ACTIONS(4030), - [anon_sym_PLUS] = ACTIONS(4030), - [anon_sym_STAR] = ACTIONS(4032), - [anon_sym_AMP_AMP] = ACTIONS(4032), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_SEMI] = ACTIONS(4032), - [anon_sym___extension__] = ACTIONS(4030), - [anon_sym_typedef] = ACTIONS(4030), - [anon_sym_virtual] = ACTIONS(4030), - [anon_sym_extern] = ACTIONS(4030), - [anon_sym___attribute__] = ACTIONS(4030), - [anon_sym___attribute] = ACTIONS(4030), - [anon_sym_using] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(4032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4032), - [anon_sym___declspec] = ACTIONS(4030), - [anon_sym___based] = ACTIONS(4030), - [anon_sym___cdecl] = ACTIONS(4030), - [anon_sym___clrcall] = ACTIONS(4030), - [anon_sym___stdcall] = ACTIONS(4030), - [anon_sym___fastcall] = ACTIONS(4030), - [anon_sym___thiscall] = ACTIONS(4030), - [anon_sym___vectorcall] = ACTIONS(4030), - [anon_sym_LBRACE] = ACTIONS(4032), - [anon_sym_signed] = ACTIONS(4030), - [anon_sym_unsigned] = ACTIONS(4030), - [anon_sym_long] = ACTIONS(4030), - [anon_sym_short] = ACTIONS(4030), - [anon_sym_LBRACK] = ACTIONS(4030), - [anon_sym_static] = ACTIONS(4030), - [anon_sym_register] = ACTIONS(4030), - [anon_sym_inline] = ACTIONS(4030), - [anon_sym___inline] = ACTIONS(4030), - [anon_sym___inline__] = ACTIONS(4030), - [anon_sym___forceinline] = ACTIONS(4030), - [anon_sym_thread_local] = ACTIONS(4030), - [anon_sym___thread] = ACTIONS(4030), - [anon_sym_const] = ACTIONS(4030), - [anon_sym_constexpr] = ACTIONS(4030), - [anon_sym_volatile] = ACTIONS(4030), - [anon_sym_restrict] = ACTIONS(4030), - [anon_sym___restrict__] = ACTIONS(4030), - [anon_sym__Atomic] = ACTIONS(4030), - [anon_sym__Noreturn] = ACTIONS(4030), - [anon_sym_noreturn] = ACTIONS(4030), - [anon_sym__Nonnull] = ACTIONS(4030), - [anon_sym_mutable] = ACTIONS(4030), - [anon_sym_constinit] = ACTIONS(4030), - [anon_sym_consteval] = ACTIONS(4030), - [anon_sym_alignas] = ACTIONS(4030), - [anon_sym__Alignas] = ACTIONS(4030), - [sym_primitive_type] = ACTIONS(4030), - [anon_sym_enum] = ACTIONS(4030), - [anon_sym_class] = ACTIONS(4030), - [anon_sym_struct] = ACTIONS(4030), - [anon_sym_union] = ACTIONS(4030), - [anon_sym_if] = ACTIONS(4030), - [anon_sym_switch] = ACTIONS(4030), - [anon_sym_case] = ACTIONS(4030), - [anon_sym_default] = ACTIONS(4030), - [anon_sym_while] = ACTIONS(4030), - [anon_sym_do] = ACTIONS(4030), - [anon_sym_for] = ACTIONS(4030), - [anon_sym_return] = ACTIONS(4030), - [anon_sym_break] = ACTIONS(4030), - [anon_sym_continue] = ACTIONS(4030), - [anon_sym_goto] = ACTIONS(4030), - [anon_sym_not] = ACTIONS(4030), - [anon_sym_compl] = ACTIONS(4030), - [anon_sym_DASH_DASH] = ACTIONS(4032), - [anon_sym_PLUS_PLUS] = ACTIONS(4032), - [anon_sym_sizeof] = ACTIONS(4030), - [anon_sym___alignof__] = ACTIONS(4030), - [anon_sym___alignof] = ACTIONS(4030), - [anon_sym__alignof] = ACTIONS(4030), - [anon_sym_alignof] = ACTIONS(4030), - [anon_sym__Alignof] = ACTIONS(4030), - [anon_sym_offsetof] = ACTIONS(4030), - [anon_sym__Generic] = ACTIONS(4030), - [anon_sym_typename] = ACTIONS(4030), - [anon_sym_asm] = ACTIONS(4030), - [anon_sym___asm__] = ACTIONS(4030), - [anon_sym___asm] = ACTIONS(4030), - [sym_number_literal] = ACTIONS(4032), - [anon_sym_L_SQUOTE] = ACTIONS(4032), - [anon_sym_u_SQUOTE] = ACTIONS(4032), - [anon_sym_U_SQUOTE] = ACTIONS(4032), - [anon_sym_u8_SQUOTE] = ACTIONS(4032), - [anon_sym_SQUOTE] = ACTIONS(4032), - [anon_sym_L_DQUOTE] = ACTIONS(4032), - [anon_sym_u_DQUOTE] = ACTIONS(4032), - [anon_sym_U_DQUOTE] = ACTIONS(4032), - [anon_sym_u8_DQUOTE] = ACTIONS(4032), - [anon_sym_DQUOTE] = ACTIONS(4032), - [sym_true] = ACTIONS(4030), - [sym_false] = ACTIONS(4030), - [anon_sym_NULL] = ACTIONS(4030), - [anon_sym_nullptr] = ACTIONS(4030), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4030), - [anon_sym_decltype] = ACTIONS(4030), - [anon_sym_explicit] = ACTIONS(4030), - [anon_sym_export] = ACTIONS(4030), - [anon_sym_module] = ACTIONS(4030), - [anon_sym_import] = ACTIONS(4030), - [anon_sym_template] = ACTIONS(4030), - [anon_sym_operator] = ACTIONS(4030), - [anon_sym_try] = ACTIONS(4030), - [anon_sym_delete] = ACTIONS(4030), - [anon_sym_throw] = ACTIONS(4030), - [anon_sym_namespace] = ACTIONS(4030), - [anon_sym_static_assert] = ACTIONS(4030), - [anon_sym_concept] = ACTIONS(4030), - [anon_sym_co_return] = ACTIONS(4030), - [anon_sym_co_yield] = ACTIONS(4030), - [anon_sym_R_DQUOTE] = ACTIONS(4032), - [anon_sym_LR_DQUOTE] = ACTIONS(4032), - [anon_sym_uR_DQUOTE] = ACTIONS(4032), - [anon_sym_UR_DQUOTE] = ACTIONS(4032), - [anon_sym_u8R_DQUOTE] = ACTIONS(4032), - [anon_sym_co_await] = ACTIONS(4030), - [anon_sym_new] = ACTIONS(4030), - [anon_sym_requires] = ACTIONS(4030), - [anon_sym_CARET_CARET] = ACTIONS(4032), - [anon_sym_LBRACK_COLON] = ACTIONS(4032), - [sym_this] = ACTIONS(4030), + [STATE(515)] = { + [sym_identifier] = ACTIONS(4387), + [aux_sym_preproc_include_token1] = ACTIONS(4387), + [aux_sym_preproc_def_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token2] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), + [aux_sym_preproc_else_token1] = ACTIONS(4387), + [aux_sym_preproc_elif_token1] = ACTIONS(4387), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4387), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4387), + [sym_preproc_directive] = ACTIONS(4387), + [anon_sym_LPAREN2] = ACTIONS(4389), + [anon_sym_BANG] = ACTIONS(4389), + [anon_sym_TILDE] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4387), + [anon_sym_PLUS] = ACTIONS(4387), + [anon_sym_STAR] = ACTIONS(4389), + [anon_sym_AMP_AMP] = ACTIONS(4389), + [anon_sym_AMP] = ACTIONS(4387), + [anon_sym_SEMI] = ACTIONS(4389), + [anon_sym___extension__] = ACTIONS(4387), + [anon_sym_typedef] = ACTIONS(4387), + [anon_sym_virtual] = ACTIONS(4387), + [anon_sym_extern] = ACTIONS(4387), + [anon_sym___attribute__] = ACTIONS(4387), + [anon_sym___attribute] = ACTIONS(4387), + [anon_sym_using] = ACTIONS(4387), + [anon_sym_COLON_COLON] = ACTIONS(4389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4389), + [anon_sym___declspec] = ACTIONS(4387), + [anon_sym___based] = ACTIONS(4387), + [anon_sym___cdecl] = ACTIONS(4387), + [anon_sym___clrcall] = ACTIONS(4387), + [anon_sym___stdcall] = ACTIONS(4387), + [anon_sym___fastcall] = ACTIONS(4387), + [anon_sym___thiscall] = ACTIONS(4387), + [anon_sym___vectorcall] = ACTIONS(4387), + [anon_sym_LBRACE] = ACTIONS(4389), + [anon_sym_signed] = ACTIONS(4387), + [anon_sym_unsigned] = ACTIONS(4387), + [anon_sym_long] = ACTIONS(4387), + [anon_sym_short] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_static] = ACTIONS(4387), + [anon_sym_register] = ACTIONS(4387), + [anon_sym_inline] = ACTIONS(4387), + [anon_sym___inline] = ACTIONS(4387), + [anon_sym___inline__] = ACTIONS(4387), + [anon_sym___forceinline] = ACTIONS(4387), + [anon_sym_thread_local] = ACTIONS(4387), + [anon_sym___thread] = ACTIONS(4387), + [anon_sym_const] = ACTIONS(4387), + [anon_sym_constexpr] = ACTIONS(4387), + [anon_sym_volatile] = ACTIONS(4387), + [anon_sym_restrict] = ACTIONS(4387), + [anon_sym___restrict__] = ACTIONS(4387), + [anon_sym__Atomic] = ACTIONS(4387), + [anon_sym__Noreturn] = ACTIONS(4387), + [anon_sym_noreturn] = ACTIONS(4387), + [anon_sym__Nonnull] = ACTIONS(4387), + [anon_sym_mutable] = ACTIONS(4387), + [anon_sym_constinit] = ACTIONS(4387), + [anon_sym_consteval] = ACTIONS(4387), + [anon_sym_alignas] = ACTIONS(4387), + [anon_sym__Alignas] = ACTIONS(4387), + [sym_primitive_type] = ACTIONS(4387), + [anon_sym_enum] = ACTIONS(4387), + [anon_sym_class] = ACTIONS(4387), + [anon_sym_struct] = ACTIONS(4387), + [anon_sym_union] = ACTIONS(4387), + [anon_sym_if] = ACTIONS(4387), + [anon_sym_switch] = ACTIONS(4387), + [anon_sym_case] = ACTIONS(4387), + [anon_sym_default] = ACTIONS(4387), + [anon_sym_while] = ACTIONS(4387), + [anon_sym_do] = ACTIONS(4387), + [anon_sym_for] = ACTIONS(4387), + [anon_sym_return] = ACTIONS(4387), + [anon_sym_break] = ACTIONS(4387), + [anon_sym_continue] = ACTIONS(4387), + [anon_sym_goto] = ACTIONS(4387), + [anon_sym___try] = ACTIONS(4387), + [anon_sym___leave] = ACTIONS(4387), + [anon_sym_not] = ACTIONS(4387), + [anon_sym_compl] = ACTIONS(4387), + [anon_sym_DASH_DASH] = ACTIONS(4389), + [anon_sym_PLUS_PLUS] = ACTIONS(4389), + [anon_sym_sizeof] = ACTIONS(4387), + [anon_sym___alignof__] = ACTIONS(4387), + [anon_sym___alignof] = ACTIONS(4387), + [anon_sym__alignof] = ACTIONS(4387), + [anon_sym_alignof] = ACTIONS(4387), + [anon_sym__Alignof] = ACTIONS(4387), + [anon_sym_offsetof] = ACTIONS(4387), + [anon_sym__Generic] = ACTIONS(4387), + [anon_sym_typename] = ACTIONS(4387), + [anon_sym_asm] = ACTIONS(4387), + [anon_sym___asm__] = ACTIONS(4387), + [anon_sym___asm] = ACTIONS(4387), + [sym_number_literal] = ACTIONS(4389), + [anon_sym_L_SQUOTE] = ACTIONS(4389), + [anon_sym_u_SQUOTE] = ACTIONS(4389), + [anon_sym_U_SQUOTE] = ACTIONS(4389), + [anon_sym_u8_SQUOTE] = ACTIONS(4389), + [anon_sym_SQUOTE] = ACTIONS(4389), + [anon_sym_L_DQUOTE] = ACTIONS(4389), + [anon_sym_u_DQUOTE] = ACTIONS(4389), + [anon_sym_U_DQUOTE] = ACTIONS(4389), + [anon_sym_u8_DQUOTE] = ACTIONS(4389), + [anon_sym_DQUOTE] = ACTIONS(4389), + [sym_true] = ACTIONS(4387), + [sym_false] = ACTIONS(4387), + [anon_sym_NULL] = ACTIONS(4387), + [anon_sym_nullptr] = ACTIONS(4387), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4387), + [anon_sym_decltype] = ACTIONS(4387), + [anon_sym_explicit] = ACTIONS(4387), + [anon_sym_export] = ACTIONS(4387), + [anon_sym_module] = ACTIONS(4387), + [anon_sym_import] = ACTIONS(4387), + [anon_sym_template] = ACTIONS(4387), + [anon_sym_operator] = ACTIONS(4387), + [anon_sym_try] = ACTIONS(4387), + [anon_sym_delete] = ACTIONS(4387), + [anon_sym_throw] = ACTIONS(4387), + [anon_sym_namespace] = ACTIONS(4387), + [anon_sym_static_assert] = ACTIONS(4387), + [anon_sym_concept] = ACTIONS(4387), + [anon_sym_co_return] = ACTIONS(4387), + [anon_sym_co_yield] = ACTIONS(4387), + [anon_sym_R_DQUOTE] = ACTIONS(4389), + [anon_sym_LR_DQUOTE] = ACTIONS(4389), + [anon_sym_uR_DQUOTE] = ACTIONS(4389), + [anon_sym_UR_DQUOTE] = ACTIONS(4389), + [anon_sym_u8R_DQUOTE] = ACTIONS(4389), + [anon_sym_co_await] = ACTIONS(4387), + [anon_sym_new] = ACTIONS(4387), + [anon_sym_requires] = ACTIONS(4387), + [anon_sym_CARET_CARET] = ACTIONS(4389), + [anon_sym_LBRACK_COLON] = ACTIONS(4389), + [sym_this] = ACTIONS(4387), }, - [STATE(574)] = { - [sym_identifier] = ACTIONS(3876), - [aux_sym_preproc_include_token1] = ACTIONS(3876), - [aux_sym_preproc_def_token1] = ACTIONS(3876), - [aux_sym_preproc_if_token1] = ACTIONS(3876), - [aux_sym_preproc_if_token2] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), - [sym_preproc_directive] = ACTIONS(3876), - [anon_sym_LPAREN2] = ACTIONS(3878), - [anon_sym_BANG] = ACTIONS(3878), - [anon_sym_TILDE] = ACTIONS(3878), - [anon_sym_DASH] = ACTIONS(3876), - [anon_sym_PLUS] = ACTIONS(3876), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_AMP_AMP] = ACTIONS(3878), - [anon_sym_AMP] = ACTIONS(3876), - [anon_sym_SEMI] = ACTIONS(3878), - [anon_sym___extension__] = ACTIONS(3876), - [anon_sym_typedef] = ACTIONS(3876), - [anon_sym_virtual] = ACTIONS(3876), - [anon_sym_extern] = ACTIONS(3876), - [anon_sym___attribute__] = ACTIONS(3876), - [anon_sym___attribute] = ACTIONS(3876), - [anon_sym_using] = ACTIONS(3876), - [anon_sym_COLON_COLON] = ACTIONS(3878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), - [anon_sym___declspec] = ACTIONS(3876), - [anon_sym___based] = ACTIONS(3876), - [anon_sym___cdecl] = ACTIONS(3876), - [anon_sym___clrcall] = ACTIONS(3876), - [anon_sym___stdcall] = ACTIONS(3876), - [anon_sym___fastcall] = ACTIONS(3876), - [anon_sym___thiscall] = ACTIONS(3876), - [anon_sym___vectorcall] = ACTIONS(3876), - [anon_sym_LBRACE] = ACTIONS(3878), - [anon_sym_signed] = ACTIONS(3876), - [anon_sym_unsigned] = ACTIONS(3876), - [anon_sym_long] = ACTIONS(3876), - [anon_sym_short] = ACTIONS(3876), - [anon_sym_LBRACK] = ACTIONS(3876), - [anon_sym_static] = ACTIONS(3876), - [anon_sym_register] = ACTIONS(3876), - [anon_sym_inline] = ACTIONS(3876), - [anon_sym___inline] = ACTIONS(3876), - [anon_sym___inline__] = ACTIONS(3876), - [anon_sym___forceinline] = ACTIONS(3876), - [anon_sym_thread_local] = ACTIONS(3876), - [anon_sym___thread] = ACTIONS(3876), - [anon_sym_const] = ACTIONS(3876), - [anon_sym_constexpr] = ACTIONS(3876), - [anon_sym_volatile] = ACTIONS(3876), - [anon_sym_restrict] = ACTIONS(3876), - [anon_sym___restrict__] = ACTIONS(3876), - [anon_sym__Atomic] = ACTIONS(3876), - [anon_sym__Noreturn] = ACTIONS(3876), - [anon_sym_noreturn] = ACTIONS(3876), - [anon_sym__Nonnull] = ACTIONS(3876), - [anon_sym_mutable] = ACTIONS(3876), - [anon_sym_constinit] = ACTIONS(3876), - [anon_sym_consteval] = ACTIONS(3876), - [anon_sym_alignas] = ACTIONS(3876), - [anon_sym__Alignas] = ACTIONS(3876), - [sym_primitive_type] = ACTIONS(3876), - [anon_sym_enum] = ACTIONS(3876), - [anon_sym_class] = ACTIONS(3876), - [anon_sym_struct] = ACTIONS(3876), - [anon_sym_union] = ACTIONS(3876), - [anon_sym_if] = ACTIONS(3876), - [anon_sym_else] = ACTIONS(3876), - [anon_sym_switch] = ACTIONS(3876), - [anon_sym_case] = ACTIONS(3876), - [anon_sym_default] = ACTIONS(3876), - [anon_sym_while] = ACTIONS(3876), - [anon_sym_do] = ACTIONS(3876), - [anon_sym_for] = ACTIONS(3876), - [anon_sym_return] = ACTIONS(3876), - [anon_sym_break] = ACTIONS(3876), - [anon_sym_continue] = ACTIONS(3876), - [anon_sym_goto] = ACTIONS(3876), - [anon_sym___try] = ACTIONS(3876), - [anon_sym___leave] = ACTIONS(3876), - [anon_sym_not] = ACTIONS(3876), - [anon_sym_compl] = ACTIONS(3876), - [anon_sym_DASH_DASH] = ACTIONS(3878), - [anon_sym_PLUS_PLUS] = ACTIONS(3878), - [anon_sym_sizeof] = ACTIONS(3876), - [anon_sym___alignof__] = ACTIONS(3876), - [anon_sym___alignof] = ACTIONS(3876), - [anon_sym__alignof] = ACTIONS(3876), - [anon_sym_alignof] = ACTIONS(3876), - [anon_sym__Alignof] = ACTIONS(3876), - [anon_sym_offsetof] = ACTIONS(3876), - [anon_sym__Generic] = ACTIONS(3876), - [anon_sym_typename] = ACTIONS(3876), - [anon_sym_asm] = ACTIONS(3876), - [anon_sym___asm__] = ACTIONS(3876), - [anon_sym___asm] = ACTIONS(3876), - [sym_number_literal] = ACTIONS(3878), - [anon_sym_L_SQUOTE] = ACTIONS(3878), - [anon_sym_u_SQUOTE] = ACTIONS(3878), - [anon_sym_U_SQUOTE] = ACTIONS(3878), - [anon_sym_u8_SQUOTE] = ACTIONS(3878), - [anon_sym_SQUOTE] = ACTIONS(3878), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(3876), - [sym_false] = ACTIONS(3876), - [anon_sym_NULL] = ACTIONS(3876), - [anon_sym_nullptr] = ACTIONS(3876), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3876), - [anon_sym_decltype] = ACTIONS(3876), - [anon_sym_explicit] = ACTIONS(3876), - [anon_sym_template] = ACTIONS(3876), - [anon_sym_operator] = ACTIONS(3876), - [anon_sym_try] = ACTIONS(3876), - [anon_sym_delete] = ACTIONS(3876), - [anon_sym_throw] = ACTIONS(3876), - [anon_sym_namespace] = ACTIONS(3876), - [anon_sym_static_assert] = ACTIONS(3876), - [anon_sym_concept] = ACTIONS(3876), - [anon_sym_co_return] = ACTIONS(3876), - [anon_sym_co_yield] = ACTIONS(3876), - [anon_sym_R_DQUOTE] = ACTIONS(3878), - [anon_sym_LR_DQUOTE] = ACTIONS(3878), - [anon_sym_uR_DQUOTE] = ACTIONS(3878), - [anon_sym_UR_DQUOTE] = ACTIONS(3878), - [anon_sym_u8R_DQUOTE] = ACTIONS(3878), - [anon_sym_co_await] = ACTIONS(3876), - [anon_sym_new] = ACTIONS(3876), - [anon_sym_requires] = ACTIONS(3876), - [anon_sym_CARET_CARET] = ACTIONS(3878), - [anon_sym_LBRACK_COLON] = ACTIONS(3878), - [sym_this] = ACTIONS(3876), + [STATE(516)] = { + [sym_type_qualifier] = STATE(5118), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(3973), + [sym_sized_type_specifier] = STATE(4430), + [sym_enum_specifier] = STATE(4430), + [sym_struct_specifier] = STATE(4430), + [sym_union_specifier] = STATE(4430), + [sym_expression] = STATE(6732), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_type_descriptor] = STATE(7259), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_placeholder_type_specifier] = STATE(4430), + [sym_decltype_auto] = STATE(4426), + [sym_decltype] = STATE(4373), + [sym_class_specifier] = STATE(4430), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4430), + [sym_template_type] = STATE(4627), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7931), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(4714), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(4867), + [sym__splice_specialization_specifier] = STATE(4305), + [sym_splice_type_specifier] = STATE(4673), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [aux_sym__type_definition_type_repeat1] = STATE(5118), + [aux_sym_sized_type_specifier_repeat1] = STATE(3490), + [sym_identifier] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(4393), + [anon_sym_signed] = ACTIONS(4395), + [anon_sym_unsigned] = ACTIONS(4395), + [anon_sym_long] = ACTIONS(4395), + [anon_sym_short] = ACTIONS(4395), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(4397), + [anon_sym_class] = ACTIONS(4399), + [anon_sym_struct] = ACTIONS(4401), + [anon_sym_union] = ACTIONS(4403), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4405), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3236), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), }, - [STATE(575)] = { - [sym_identifier] = ACTIONS(3876), - [aux_sym_preproc_include_token1] = ACTIONS(3876), - [aux_sym_preproc_def_token1] = ACTIONS(3876), - [aux_sym_preproc_if_token1] = ACTIONS(3876), - [aux_sym_preproc_if_token2] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), - [sym_preproc_directive] = ACTIONS(3876), - [anon_sym_LPAREN2] = ACTIONS(3878), - [anon_sym_BANG] = ACTIONS(3878), - [anon_sym_TILDE] = ACTIONS(3878), - [anon_sym_DASH] = ACTIONS(3876), - [anon_sym_PLUS] = ACTIONS(3876), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_AMP_AMP] = ACTIONS(3878), - [anon_sym_AMP] = ACTIONS(3876), - [anon_sym_SEMI] = ACTIONS(3878), - [anon_sym___extension__] = ACTIONS(3876), - [anon_sym_typedef] = ACTIONS(3876), - [anon_sym_virtual] = ACTIONS(3876), - [anon_sym_extern] = ACTIONS(3876), - [anon_sym___attribute__] = ACTIONS(3876), - [anon_sym___attribute] = ACTIONS(3876), - [anon_sym_using] = ACTIONS(3876), - [anon_sym_COLON_COLON] = ACTIONS(3878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), - [anon_sym___declspec] = ACTIONS(3876), - [anon_sym___based] = ACTIONS(3876), - [anon_sym___cdecl] = ACTIONS(3876), - [anon_sym___clrcall] = ACTIONS(3876), - [anon_sym___stdcall] = ACTIONS(3876), - [anon_sym___fastcall] = ACTIONS(3876), - [anon_sym___thiscall] = ACTIONS(3876), - [anon_sym___vectorcall] = ACTIONS(3876), - [anon_sym_LBRACE] = ACTIONS(3878), - [anon_sym_signed] = ACTIONS(3876), - [anon_sym_unsigned] = ACTIONS(3876), - [anon_sym_long] = ACTIONS(3876), - [anon_sym_short] = ACTIONS(3876), - [anon_sym_LBRACK] = ACTIONS(3876), - [anon_sym_static] = ACTIONS(3876), - [anon_sym_register] = ACTIONS(3876), - [anon_sym_inline] = ACTIONS(3876), - [anon_sym___inline] = ACTIONS(3876), - [anon_sym___inline__] = ACTIONS(3876), - [anon_sym___forceinline] = ACTIONS(3876), - [anon_sym_thread_local] = ACTIONS(3876), - [anon_sym___thread] = ACTIONS(3876), - [anon_sym_const] = ACTIONS(3876), - [anon_sym_constexpr] = ACTIONS(3876), - [anon_sym_volatile] = ACTIONS(3876), - [anon_sym_restrict] = ACTIONS(3876), - [anon_sym___restrict__] = ACTIONS(3876), - [anon_sym__Atomic] = ACTIONS(3876), - [anon_sym__Noreturn] = ACTIONS(3876), - [anon_sym_noreturn] = ACTIONS(3876), - [anon_sym__Nonnull] = ACTIONS(3876), - [anon_sym_mutable] = ACTIONS(3876), - [anon_sym_constinit] = ACTIONS(3876), - [anon_sym_consteval] = ACTIONS(3876), - [anon_sym_alignas] = ACTIONS(3876), - [anon_sym__Alignas] = ACTIONS(3876), - [sym_primitive_type] = ACTIONS(3876), - [anon_sym_enum] = ACTIONS(3876), - [anon_sym_class] = ACTIONS(3876), - [anon_sym_struct] = ACTIONS(3876), - [anon_sym_union] = ACTIONS(3876), - [anon_sym_if] = ACTIONS(3876), - [anon_sym_else] = ACTIONS(3876), - [anon_sym_switch] = ACTIONS(3876), - [anon_sym_case] = ACTIONS(3876), - [anon_sym_default] = ACTIONS(3876), - [anon_sym_while] = ACTIONS(3876), - [anon_sym_do] = ACTIONS(3876), - [anon_sym_for] = ACTIONS(3876), - [anon_sym_return] = ACTIONS(3876), - [anon_sym_break] = ACTIONS(3876), - [anon_sym_continue] = ACTIONS(3876), - [anon_sym_goto] = ACTIONS(3876), - [anon_sym___try] = ACTIONS(3876), - [anon_sym___leave] = ACTIONS(3876), - [anon_sym_not] = ACTIONS(3876), - [anon_sym_compl] = ACTIONS(3876), - [anon_sym_DASH_DASH] = ACTIONS(3878), - [anon_sym_PLUS_PLUS] = ACTIONS(3878), - [anon_sym_sizeof] = ACTIONS(3876), - [anon_sym___alignof__] = ACTIONS(3876), - [anon_sym___alignof] = ACTIONS(3876), - [anon_sym__alignof] = ACTIONS(3876), - [anon_sym_alignof] = ACTIONS(3876), - [anon_sym__Alignof] = ACTIONS(3876), - [anon_sym_offsetof] = ACTIONS(3876), - [anon_sym__Generic] = ACTIONS(3876), - [anon_sym_typename] = ACTIONS(3876), - [anon_sym_asm] = ACTIONS(3876), - [anon_sym___asm__] = ACTIONS(3876), - [anon_sym___asm] = ACTIONS(3876), - [sym_number_literal] = ACTIONS(3878), - [anon_sym_L_SQUOTE] = ACTIONS(3878), - [anon_sym_u_SQUOTE] = ACTIONS(3878), - [anon_sym_U_SQUOTE] = ACTIONS(3878), - [anon_sym_u8_SQUOTE] = ACTIONS(3878), - [anon_sym_SQUOTE] = ACTIONS(3878), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(3876), - [sym_false] = ACTIONS(3876), - [anon_sym_NULL] = ACTIONS(3876), - [anon_sym_nullptr] = ACTIONS(3876), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3876), - [anon_sym_decltype] = ACTIONS(3876), - [anon_sym_explicit] = ACTIONS(3876), - [anon_sym_template] = ACTIONS(3876), - [anon_sym_operator] = ACTIONS(3876), - [anon_sym_try] = ACTIONS(3876), - [anon_sym_delete] = ACTIONS(3876), - [anon_sym_throw] = ACTIONS(3876), - [anon_sym_namespace] = ACTIONS(3876), - [anon_sym_static_assert] = ACTIONS(3876), - [anon_sym_concept] = ACTIONS(3876), - [anon_sym_co_return] = ACTIONS(3876), - [anon_sym_co_yield] = ACTIONS(3876), - [anon_sym_R_DQUOTE] = ACTIONS(3878), - [anon_sym_LR_DQUOTE] = ACTIONS(3878), - [anon_sym_uR_DQUOTE] = ACTIONS(3878), - [anon_sym_UR_DQUOTE] = ACTIONS(3878), - [anon_sym_u8R_DQUOTE] = ACTIONS(3878), - [anon_sym_co_await] = ACTIONS(3876), - [anon_sym_new] = ACTIONS(3876), - [anon_sym_requires] = ACTIONS(3876), - [anon_sym_CARET_CARET] = ACTIONS(3878), - [anon_sym_LBRACK_COLON] = ACTIONS(3878), - [sym_this] = ACTIONS(3876), + [STATE(517)] = { + [sym_type_qualifier] = STATE(5062), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(2280), + [sym_sized_type_specifier] = STATE(2222), + [sym_enum_specifier] = STATE(2222), + [sym_struct_specifier] = STATE(2222), + [sym_union_specifier] = STATE(2222), + [sym_expression] = STATE(5479), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_type_descriptor] = STATE(3833), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_placeholder_type_specifier] = STATE(2222), + [sym_decltype_auto] = STATE(2221), + [sym_decltype] = STATE(2169), + [sym_class_specifier] = STATE(2222), + [sym__class_name] = STATE(10271), + [sym_dependent_type] = STATE(2222), + [sym_template_type] = STATE(2146), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7954), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(2207), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(2251), + [sym__splice_specialization_specifier] = STATE(2170), + [sym_splice_type_specifier] = STATE(2223), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [aux_sym__type_definition_type_repeat1] = STATE(5062), + [aux_sym_sized_type_specifier_repeat1] = STATE(2076), + [sym_identifier] = ACTIONS(3909), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4409), + [anon_sym_COLON_COLON] = ACTIONS(4411), + [anon_sym_signed] = ACTIONS(3803), + [anon_sym_unsigned] = ACTIONS(3803), + [anon_sym_long] = ACTIONS(3803), + [anon_sym_short] = ACTIONS(3803), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3805), + [anon_sym_enum] = ACTIONS(3807), + [anon_sym_class] = ACTIONS(3809), + [anon_sym_struct] = ACTIONS(3811), + [anon_sym_union] = ACTIONS(3813), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(3817), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3819), + [anon_sym_decltype] = ACTIONS(3821), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [STATE(576)] = { - [ts_builtin_sym_end] = ACTIONS(4036), - [sym_identifier] = ACTIONS(4034), - [aux_sym_preproc_include_token1] = ACTIONS(4034), - [aux_sym_preproc_def_token1] = ACTIONS(4034), - [aux_sym_preproc_if_token1] = ACTIONS(4034), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4034), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4034), - [sym_preproc_directive] = ACTIONS(4034), - [anon_sym_LPAREN2] = ACTIONS(4036), - [anon_sym_BANG] = ACTIONS(4036), - [anon_sym_TILDE] = ACTIONS(4036), - [anon_sym_DASH] = ACTIONS(4034), - [anon_sym_PLUS] = ACTIONS(4034), - [anon_sym_STAR] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_AMP] = ACTIONS(4034), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym___extension__] = ACTIONS(4034), - [anon_sym_typedef] = ACTIONS(4034), - [anon_sym_virtual] = ACTIONS(4034), - [anon_sym_extern] = ACTIONS(4034), - [anon_sym___attribute__] = ACTIONS(4034), - [anon_sym___attribute] = ACTIONS(4034), - [anon_sym_using] = ACTIONS(4034), - [anon_sym_COLON_COLON] = ACTIONS(4036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4036), - [anon_sym___declspec] = ACTIONS(4034), - [anon_sym___based] = ACTIONS(4034), - [anon_sym___cdecl] = ACTIONS(4034), - [anon_sym___clrcall] = ACTIONS(4034), - [anon_sym___stdcall] = ACTIONS(4034), - [anon_sym___fastcall] = ACTIONS(4034), - [anon_sym___thiscall] = ACTIONS(4034), - [anon_sym___vectorcall] = ACTIONS(4034), - [anon_sym_LBRACE] = ACTIONS(4036), - [anon_sym_signed] = ACTIONS(4034), - [anon_sym_unsigned] = ACTIONS(4034), - [anon_sym_long] = ACTIONS(4034), - [anon_sym_short] = ACTIONS(4034), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_static] = ACTIONS(4034), - [anon_sym_register] = ACTIONS(4034), - [anon_sym_inline] = ACTIONS(4034), - [anon_sym___inline] = ACTIONS(4034), - [anon_sym___inline__] = ACTIONS(4034), - [anon_sym___forceinline] = ACTIONS(4034), - [anon_sym_thread_local] = ACTIONS(4034), - [anon_sym___thread] = ACTIONS(4034), - [anon_sym_const] = ACTIONS(4034), - [anon_sym_constexpr] = ACTIONS(4034), - [anon_sym_volatile] = ACTIONS(4034), - [anon_sym_restrict] = ACTIONS(4034), - [anon_sym___restrict__] = ACTIONS(4034), - [anon_sym__Atomic] = ACTIONS(4034), - [anon_sym__Noreturn] = ACTIONS(4034), - [anon_sym_noreturn] = ACTIONS(4034), - [anon_sym__Nonnull] = ACTIONS(4034), - [anon_sym_mutable] = ACTIONS(4034), - [anon_sym_constinit] = ACTIONS(4034), - [anon_sym_consteval] = ACTIONS(4034), - [anon_sym_alignas] = ACTIONS(4034), - [anon_sym__Alignas] = ACTIONS(4034), - [sym_primitive_type] = ACTIONS(4034), - [anon_sym_enum] = ACTIONS(4034), - [anon_sym_class] = ACTIONS(4034), - [anon_sym_struct] = ACTIONS(4034), - [anon_sym_union] = ACTIONS(4034), - [anon_sym_if] = ACTIONS(4034), - [anon_sym_switch] = ACTIONS(4034), - [anon_sym_case] = ACTIONS(4034), - [anon_sym_default] = ACTIONS(4034), - [anon_sym_while] = ACTIONS(4034), - [anon_sym_do] = ACTIONS(4034), - [anon_sym_for] = ACTIONS(4034), - [anon_sym_return] = ACTIONS(4034), - [anon_sym_break] = ACTIONS(4034), - [anon_sym_continue] = ACTIONS(4034), - [anon_sym_goto] = ACTIONS(4034), - [anon_sym_not] = ACTIONS(4034), - [anon_sym_compl] = ACTIONS(4034), - [anon_sym_DASH_DASH] = ACTIONS(4036), - [anon_sym_PLUS_PLUS] = ACTIONS(4036), - [anon_sym_sizeof] = ACTIONS(4034), - [anon_sym___alignof__] = ACTIONS(4034), - [anon_sym___alignof] = ACTIONS(4034), - [anon_sym__alignof] = ACTIONS(4034), - [anon_sym_alignof] = ACTIONS(4034), - [anon_sym__Alignof] = ACTIONS(4034), - [anon_sym_offsetof] = ACTIONS(4034), - [anon_sym__Generic] = ACTIONS(4034), - [anon_sym_typename] = ACTIONS(4034), - [anon_sym_asm] = ACTIONS(4034), - [anon_sym___asm__] = ACTIONS(4034), - [anon_sym___asm] = ACTIONS(4034), - [sym_number_literal] = ACTIONS(4036), - [anon_sym_L_SQUOTE] = ACTIONS(4036), - [anon_sym_u_SQUOTE] = ACTIONS(4036), - [anon_sym_U_SQUOTE] = ACTIONS(4036), - [anon_sym_u8_SQUOTE] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4036), - [anon_sym_L_DQUOTE] = ACTIONS(4036), - [anon_sym_u_DQUOTE] = ACTIONS(4036), - [anon_sym_U_DQUOTE] = ACTIONS(4036), - [anon_sym_u8_DQUOTE] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(4036), - [sym_true] = ACTIONS(4034), - [sym_false] = ACTIONS(4034), - [anon_sym_NULL] = ACTIONS(4034), - [anon_sym_nullptr] = ACTIONS(4034), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4034), - [anon_sym_decltype] = ACTIONS(4034), - [anon_sym_explicit] = ACTIONS(4034), - [anon_sym_export] = ACTIONS(4034), - [anon_sym_module] = ACTIONS(4034), - [anon_sym_import] = ACTIONS(4034), - [anon_sym_template] = ACTIONS(4034), - [anon_sym_operator] = ACTIONS(4034), - [anon_sym_try] = ACTIONS(4034), - [anon_sym_delete] = ACTIONS(4034), - [anon_sym_throw] = ACTIONS(4034), - [anon_sym_namespace] = ACTIONS(4034), - [anon_sym_static_assert] = ACTIONS(4034), - [anon_sym_concept] = ACTIONS(4034), - [anon_sym_co_return] = ACTIONS(4034), - [anon_sym_co_yield] = ACTIONS(4034), - [anon_sym_R_DQUOTE] = ACTIONS(4036), - [anon_sym_LR_DQUOTE] = ACTIONS(4036), - [anon_sym_uR_DQUOTE] = ACTIONS(4036), - [anon_sym_UR_DQUOTE] = ACTIONS(4036), - [anon_sym_u8R_DQUOTE] = ACTIONS(4036), - [anon_sym_co_await] = ACTIONS(4034), - [anon_sym_new] = ACTIONS(4034), - [anon_sym_requires] = ACTIONS(4034), - [anon_sym_CARET_CARET] = ACTIONS(4036), - [anon_sym_LBRACK_COLON] = ACTIONS(4036), - [sym_this] = ACTIONS(4034), + [STATE(518)] = { + [sym_type_qualifier] = STATE(5168), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(2501), + [sym_sized_type_specifier] = STATE(3123), + [sym_enum_specifier] = STATE(3123), + [sym_struct_specifier] = STATE(3123), + [sym_union_specifier] = STATE(3123), + [sym_expression] = STATE(5342), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_type_descriptor] = STATE(5778), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_placeholder_type_specifier] = STATE(3123), + [sym_decltype_auto] = STATE(3099), + [sym_decltype] = STATE(2984), + [sym_class_specifier] = STATE(3123), + [sym__class_name] = STATE(10468), + [sym_dependent_type] = STATE(3123), + [sym_template_type] = STATE(2986), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7976), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(3146), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(3381), + [sym__splice_specialization_specifier] = STATE(2696), + [sym_splice_type_specifier] = STATE(3145), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [aux_sym__type_definition_type_repeat1] = STATE(5168), + [aux_sym_sized_type_specifier_repeat1] = STATE(2283), + [sym_identifier] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4419), + [anon_sym_COLON_COLON] = ACTIONS(4421), + [anon_sym_signed] = ACTIONS(4423), + [anon_sym_unsigned] = ACTIONS(4423), + [anon_sym_long] = ACTIONS(4423), + [anon_sym_short] = ACTIONS(4423), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(4425), + [anon_sym_enum] = ACTIONS(4427), + [anon_sym_class] = ACTIONS(4429), + [anon_sym_struct] = ACTIONS(4431), + [anon_sym_union] = ACTIONS(4433), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(4437), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4439), + [anon_sym_decltype] = ACTIONS(4441), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), }, - [STATE(577)] = { - [ts_builtin_sym_end] = ACTIONS(4194), - [sym_identifier] = ACTIONS(4192), - [aux_sym_preproc_include_token1] = ACTIONS(4192), - [aux_sym_preproc_def_token1] = ACTIONS(4192), - [aux_sym_preproc_if_token1] = ACTIONS(4192), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4192), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4192), - [sym_preproc_directive] = ACTIONS(4192), - [anon_sym_LPAREN2] = ACTIONS(4194), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_TILDE] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4192), - [anon_sym_PLUS] = ACTIONS(4192), - [anon_sym_STAR] = ACTIONS(4194), - [anon_sym_AMP_AMP] = ACTIONS(4194), - [anon_sym_AMP] = ACTIONS(4192), - [anon_sym_SEMI] = ACTIONS(4194), - [anon_sym___extension__] = ACTIONS(4192), - [anon_sym_typedef] = ACTIONS(4192), - [anon_sym_virtual] = ACTIONS(4192), - [anon_sym_extern] = ACTIONS(4192), - [anon_sym___attribute__] = ACTIONS(4192), - [anon_sym___attribute] = ACTIONS(4192), - [anon_sym_using] = ACTIONS(4192), - [anon_sym_COLON_COLON] = ACTIONS(4194), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), - [anon_sym___declspec] = ACTIONS(4192), - [anon_sym___based] = ACTIONS(4192), - [anon_sym___cdecl] = ACTIONS(4192), - [anon_sym___clrcall] = ACTIONS(4192), - [anon_sym___stdcall] = ACTIONS(4192), - [anon_sym___fastcall] = ACTIONS(4192), - [anon_sym___thiscall] = ACTIONS(4192), - [anon_sym___vectorcall] = ACTIONS(4192), - [anon_sym_LBRACE] = ACTIONS(4194), - [anon_sym_signed] = ACTIONS(4192), - [anon_sym_unsigned] = ACTIONS(4192), - [anon_sym_long] = ACTIONS(4192), - [anon_sym_short] = ACTIONS(4192), - [anon_sym_LBRACK] = ACTIONS(4192), - [anon_sym_static] = ACTIONS(4192), - [anon_sym_register] = ACTIONS(4192), - [anon_sym_inline] = ACTIONS(4192), - [anon_sym___inline] = ACTIONS(4192), - [anon_sym___inline__] = ACTIONS(4192), - [anon_sym___forceinline] = ACTIONS(4192), - [anon_sym_thread_local] = ACTIONS(4192), - [anon_sym___thread] = ACTIONS(4192), - [anon_sym_const] = ACTIONS(4192), - [anon_sym_constexpr] = ACTIONS(4192), - [anon_sym_volatile] = ACTIONS(4192), - [anon_sym_restrict] = ACTIONS(4192), - [anon_sym___restrict__] = ACTIONS(4192), - [anon_sym__Atomic] = ACTIONS(4192), - [anon_sym__Noreturn] = ACTIONS(4192), - [anon_sym_noreturn] = ACTIONS(4192), - [anon_sym__Nonnull] = ACTIONS(4192), - [anon_sym_mutable] = ACTIONS(4192), - [anon_sym_constinit] = ACTIONS(4192), - [anon_sym_consteval] = ACTIONS(4192), - [anon_sym_alignas] = ACTIONS(4192), - [anon_sym__Alignas] = ACTIONS(4192), - [sym_primitive_type] = ACTIONS(4192), - [anon_sym_enum] = ACTIONS(4192), - [anon_sym_class] = ACTIONS(4192), - [anon_sym_struct] = ACTIONS(4192), - [anon_sym_union] = ACTIONS(4192), - [anon_sym_if] = ACTIONS(4192), - [anon_sym_switch] = ACTIONS(4192), - [anon_sym_case] = ACTIONS(4192), - [anon_sym_default] = ACTIONS(4192), - [anon_sym_while] = ACTIONS(4192), - [anon_sym_do] = ACTIONS(4192), - [anon_sym_for] = ACTIONS(4192), - [anon_sym_return] = ACTIONS(4192), - [anon_sym_break] = ACTIONS(4192), - [anon_sym_continue] = ACTIONS(4192), - [anon_sym_goto] = ACTIONS(4192), - [anon_sym_not] = ACTIONS(4192), - [anon_sym_compl] = ACTIONS(4192), - [anon_sym_DASH_DASH] = ACTIONS(4194), - [anon_sym_PLUS_PLUS] = ACTIONS(4194), - [anon_sym_sizeof] = ACTIONS(4192), - [anon_sym___alignof__] = ACTIONS(4192), - [anon_sym___alignof] = ACTIONS(4192), - [anon_sym__alignof] = ACTIONS(4192), - [anon_sym_alignof] = ACTIONS(4192), - [anon_sym__Alignof] = ACTIONS(4192), - [anon_sym_offsetof] = ACTIONS(4192), - [anon_sym__Generic] = ACTIONS(4192), - [anon_sym_typename] = ACTIONS(4192), - [anon_sym_asm] = ACTIONS(4192), - [anon_sym___asm__] = ACTIONS(4192), - [anon_sym___asm] = ACTIONS(4192), - [sym_number_literal] = ACTIONS(4194), - [anon_sym_L_SQUOTE] = ACTIONS(4194), - [anon_sym_u_SQUOTE] = ACTIONS(4194), - [anon_sym_U_SQUOTE] = ACTIONS(4194), - [anon_sym_u8_SQUOTE] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4194), - [anon_sym_L_DQUOTE] = ACTIONS(4194), - [anon_sym_u_DQUOTE] = ACTIONS(4194), - [anon_sym_U_DQUOTE] = ACTIONS(4194), - [anon_sym_u8_DQUOTE] = ACTIONS(4194), - [anon_sym_DQUOTE] = ACTIONS(4194), - [sym_true] = ACTIONS(4192), - [sym_false] = ACTIONS(4192), - [anon_sym_NULL] = ACTIONS(4192), - [anon_sym_nullptr] = ACTIONS(4192), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4192), - [anon_sym_decltype] = ACTIONS(4192), - [anon_sym_explicit] = ACTIONS(4192), - [anon_sym_export] = ACTIONS(4192), - [anon_sym_module] = ACTIONS(4192), - [anon_sym_import] = ACTIONS(4192), - [anon_sym_template] = ACTIONS(4192), - [anon_sym_operator] = ACTIONS(4192), - [anon_sym_try] = ACTIONS(4192), - [anon_sym_delete] = ACTIONS(4192), - [anon_sym_throw] = ACTIONS(4192), - [anon_sym_namespace] = ACTIONS(4192), - [anon_sym_static_assert] = ACTIONS(4192), - [anon_sym_concept] = ACTIONS(4192), - [anon_sym_co_return] = ACTIONS(4192), - [anon_sym_co_yield] = ACTIONS(4192), - [anon_sym_R_DQUOTE] = ACTIONS(4194), - [anon_sym_LR_DQUOTE] = ACTIONS(4194), - [anon_sym_uR_DQUOTE] = ACTIONS(4194), - [anon_sym_UR_DQUOTE] = ACTIONS(4194), - [anon_sym_u8R_DQUOTE] = ACTIONS(4194), - [anon_sym_co_await] = ACTIONS(4192), - [anon_sym_new] = ACTIONS(4192), - [anon_sym_requires] = ACTIONS(4192), - [anon_sym_CARET_CARET] = ACTIONS(4194), - [anon_sym_LBRACK_COLON] = ACTIONS(4194), - [sym_this] = ACTIONS(4192), + [STATE(519)] = { + [sym_identifier] = ACTIONS(4443), + [aux_sym_preproc_include_token1] = ACTIONS(4443), + [aux_sym_preproc_def_token1] = ACTIONS(4443), + [aux_sym_preproc_if_token1] = ACTIONS(4443), + [aux_sym_preproc_if_token2] = ACTIONS(4443), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), + [aux_sym_preproc_else_token1] = ACTIONS(4443), + [aux_sym_preproc_elif_token1] = ACTIONS(4443), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4443), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4443), + [sym_preproc_directive] = ACTIONS(4443), + [anon_sym_LPAREN2] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4445), + [anon_sym_TILDE] = ACTIONS(4445), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_AMP] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym___extension__] = ACTIONS(4443), + [anon_sym_typedef] = ACTIONS(4443), + [anon_sym_virtual] = ACTIONS(4443), + [anon_sym_extern] = ACTIONS(4443), + [anon_sym___attribute__] = ACTIONS(4443), + [anon_sym___attribute] = ACTIONS(4443), + [anon_sym_using] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4445), + [anon_sym___declspec] = ACTIONS(4443), + [anon_sym___based] = ACTIONS(4443), + [anon_sym___cdecl] = ACTIONS(4443), + [anon_sym___clrcall] = ACTIONS(4443), + [anon_sym___stdcall] = ACTIONS(4443), + [anon_sym___fastcall] = ACTIONS(4443), + [anon_sym___thiscall] = ACTIONS(4443), + [anon_sym___vectorcall] = ACTIONS(4443), + [anon_sym_LBRACE] = ACTIONS(4445), + [anon_sym_signed] = ACTIONS(4443), + [anon_sym_unsigned] = ACTIONS(4443), + [anon_sym_long] = ACTIONS(4443), + [anon_sym_short] = ACTIONS(4443), + [anon_sym_LBRACK] = ACTIONS(4443), + [anon_sym_static] = ACTIONS(4443), + [anon_sym_register] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym___inline] = ACTIONS(4443), + [anon_sym___inline__] = ACTIONS(4443), + [anon_sym___forceinline] = ACTIONS(4443), + [anon_sym_thread_local] = ACTIONS(4443), + [anon_sym___thread] = ACTIONS(4443), + [anon_sym_const] = ACTIONS(4443), + [anon_sym_constexpr] = ACTIONS(4443), + [anon_sym_volatile] = ACTIONS(4443), + [anon_sym_restrict] = ACTIONS(4443), + [anon_sym___restrict__] = ACTIONS(4443), + [anon_sym__Atomic] = ACTIONS(4443), + [anon_sym__Noreturn] = ACTIONS(4443), + [anon_sym_noreturn] = ACTIONS(4443), + [anon_sym__Nonnull] = ACTIONS(4443), + [anon_sym_mutable] = ACTIONS(4443), + [anon_sym_constinit] = ACTIONS(4443), + [anon_sym_consteval] = ACTIONS(4443), + [anon_sym_alignas] = ACTIONS(4443), + [anon_sym__Alignas] = ACTIONS(4443), + [sym_primitive_type] = ACTIONS(4443), + [anon_sym_enum] = ACTIONS(4443), + [anon_sym_class] = ACTIONS(4443), + [anon_sym_struct] = ACTIONS(4443), + [anon_sym_union] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_switch] = ACTIONS(4443), + [anon_sym_case] = ACTIONS(4443), + [anon_sym_default] = ACTIONS(4443), + [anon_sym_while] = ACTIONS(4443), + [anon_sym_do] = ACTIONS(4443), + [anon_sym_for] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_goto] = ACTIONS(4443), + [anon_sym___try] = ACTIONS(4443), + [anon_sym___leave] = ACTIONS(4443), + [anon_sym_not] = ACTIONS(4443), + [anon_sym_compl] = ACTIONS(4443), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_sizeof] = ACTIONS(4443), + [anon_sym___alignof__] = ACTIONS(4443), + [anon_sym___alignof] = ACTIONS(4443), + [anon_sym__alignof] = ACTIONS(4443), + [anon_sym_alignof] = ACTIONS(4443), + [anon_sym__Alignof] = ACTIONS(4443), + [anon_sym_offsetof] = ACTIONS(4443), + [anon_sym__Generic] = ACTIONS(4443), + [anon_sym_typename] = ACTIONS(4443), + [anon_sym_asm] = ACTIONS(4443), + [anon_sym___asm__] = ACTIONS(4443), + [anon_sym___asm] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4445), + [anon_sym_L_SQUOTE] = ACTIONS(4445), + [anon_sym_u_SQUOTE] = ACTIONS(4445), + [anon_sym_U_SQUOTE] = ACTIONS(4445), + [anon_sym_u8_SQUOTE] = ACTIONS(4445), + [anon_sym_SQUOTE] = ACTIONS(4445), + [anon_sym_L_DQUOTE] = ACTIONS(4445), + [anon_sym_u_DQUOTE] = ACTIONS(4445), + [anon_sym_U_DQUOTE] = ACTIONS(4445), + [anon_sym_u8_DQUOTE] = ACTIONS(4445), + [anon_sym_DQUOTE] = ACTIONS(4445), + [sym_true] = ACTIONS(4443), + [sym_false] = ACTIONS(4443), + [anon_sym_NULL] = ACTIONS(4443), + [anon_sym_nullptr] = ACTIONS(4443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4443), + [anon_sym_decltype] = ACTIONS(4443), + [anon_sym_explicit] = ACTIONS(4443), + [anon_sym_export] = ACTIONS(4443), + [anon_sym_module] = ACTIONS(4443), + [anon_sym_import] = ACTIONS(4443), + [anon_sym_template] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_delete] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_namespace] = ACTIONS(4443), + [anon_sym_static_assert] = ACTIONS(4443), + [anon_sym_concept] = ACTIONS(4443), + [anon_sym_co_return] = ACTIONS(4443), + [anon_sym_co_yield] = ACTIONS(4443), + [anon_sym_R_DQUOTE] = ACTIONS(4445), + [anon_sym_LR_DQUOTE] = ACTIONS(4445), + [anon_sym_uR_DQUOTE] = ACTIONS(4445), + [anon_sym_UR_DQUOTE] = ACTIONS(4445), + [anon_sym_u8R_DQUOTE] = ACTIONS(4445), + [anon_sym_co_await] = ACTIONS(4443), + [anon_sym_new] = ACTIONS(4443), + [anon_sym_requires] = ACTIONS(4443), + [anon_sym_CARET_CARET] = ACTIONS(4445), + [anon_sym_LBRACK_COLON] = ACTIONS(4445), + [sym_this] = ACTIONS(4443), }, - [STATE(578)] = { - [ts_builtin_sym_end] = ACTIONS(3972), - [sym_identifier] = ACTIONS(3970), - [aux_sym_preproc_include_token1] = ACTIONS(3970), - [aux_sym_preproc_def_token1] = ACTIONS(3970), - [aux_sym_preproc_if_token1] = ACTIONS(3970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3970), - [sym_preproc_directive] = ACTIONS(3970), - [anon_sym_LPAREN2] = ACTIONS(3972), - [anon_sym_BANG] = ACTIONS(3972), - [anon_sym_TILDE] = ACTIONS(3972), - [anon_sym_DASH] = ACTIONS(3970), - [anon_sym_PLUS] = ACTIONS(3970), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_AMP_AMP] = ACTIONS(3972), - [anon_sym_AMP] = ACTIONS(3970), - [anon_sym_SEMI] = ACTIONS(3972), - [anon_sym___extension__] = ACTIONS(3970), - [anon_sym_typedef] = ACTIONS(3970), - [anon_sym_virtual] = ACTIONS(3970), - [anon_sym_extern] = ACTIONS(3970), - [anon_sym___attribute__] = ACTIONS(3970), - [anon_sym___attribute] = ACTIONS(3970), - [anon_sym_using] = ACTIONS(3970), - [anon_sym_COLON_COLON] = ACTIONS(3972), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3972), - [anon_sym___declspec] = ACTIONS(3970), - [anon_sym___based] = ACTIONS(3970), - [anon_sym___cdecl] = ACTIONS(3970), - [anon_sym___clrcall] = ACTIONS(3970), - [anon_sym___stdcall] = ACTIONS(3970), - [anon_sym___fastcall] = ACTIONS(3970), - [anon_sym___thiscall] = ACTIONS(3970), - [anon_sym___vectorcall] = ACTIONS(3970), - [anon_sym_LBRACE] = ACTIONS(3972), - [anon_sym_signed] = ACTIONS(3970), - [anon_sym_unsigned] = ACTIONS(3970), - [anon_sym_long] = ACTIONS(3970), - [anon_sym_short] = ACTIONS(3970), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_static] = ACTIONS(3970), - [anon_sym_register] = ACTIONS(3970), - [anon_sym_inline] = ACTIONS(3970), - [anon_sym___inline] = ACTIONS(3970), - [anon_sym___inline__] = ACTIONS(3970), - [anon_sym___forceinline] = ACTIONS(3970), - [anon_sym_thread_local] = ACTIONS(3970), - [anon_sym___thread] = ACTIONS(3970), - [anon_sym_const] = ACTIONS(3970), - [anon_sym_constexpr] = ACTIONS(3970), - [anon_sym_volatile] = ACTIONS(3970), - [anon_sym_restrict] = ACTIONS(3970), - [anon_sym___restrict__] = ACTIONS(3970), - [anon_sym__Atomic] = ACTIONS(3970), - [anon_sym__Noreturn] = ACTIONS(3970), - [anon_sym_noreturn] = ACTIONS(3970), - [anon_sym__Nonnull] = ACTIONS(3970), - [anon_sym_mutable] = ACTIONS(3970), - [anon_sym_constinit] = ACTIONS(3970), - [anon_sym_consteval] = ACTIONS(3970), - [anon_sym_alignas] = ACTIONS(3970), - [anon_sym__Alignas] = ACTIONS(3970), - [sym_primitive_type] = ACTIONS(3970), - [anon_sym_enum] = ACTIONS(3970), - [anon_sym_class] = ACTIONS(3970), - [anon_sym_struct] = ACTIONS(3970), - [anon_sym_union] = ACTIONS(3970), - [anon_sym_if] = ACTIONS(3970), - [anon_sym_switch] = ACTIONS(3970), - [anon_sym_case] = ACTIONS(3970), - [anon_sym_default] = ACTIONS(3970), - [anon_sym_while] = ACTIONS(3970), - [anon_sym_do] = ACTIONS(3970), - [anon_sym_for] = ACTIONS(3970), - [anon_sym_return] = ACTIONS(3970), - [anon_sym_break] = ACTIONS(3970), - [anon_sym_continue] = ACTIONS(3970), - [anon_sym_goto] = ACTIONS(3970), - [anon_sym_not] = ACTIONS(3970), - [anon_sym_compl] = ACTIONS(3970), - [anon_sym_DASH_DASH] = ACTIONS(3972), - [anon_sym_PLUS_PLUS] = ACTIONS(3972), - [anon_sym_sizeof] = ACTIONS(3970), - [anon_sym___alignof__] = ACTIONS(3970), - [anon_sym___alignof] = ACTIONS(3970), - [anon_sym__alignof] = ACTIONS(3970), - [anon_sym_alignof] = ACTIONS(3970), - [anon_sym__Alignof] = ACTIONS(3970), - [anon_sym_offsetof] = ACTIONS(3970), - [anon_sym__Generic] = ACTIONS(3970), - [anon_sym_typename] = ACTIONS(3970), - [anon_sym_asm] = ACTIONS(3970), - [anon_sym___asm__] = ACTIONS(3970), - [anon_sym___asm] = ACTIONS(3970), - [sym_number_literal] = ACTIONS(3972), - [anon_sym_L_SQUOTE] = ACTIONS(3972), - [anon_sym_u_SQUOTE] = ACTIONS(3972), - [anon_sym_U_SQUOTE] = ACTIONS(3972), - [anon_sym_u8_SQUOTE] = ACTIONS(3972), - [anon_sym_SQUOTE] = ACTIONS(3972), - [anon_sym_L_DQUOTE] = ACTIONS(3972), - [anon_sym_u_DQUOTE] = ACTIONS(3972), - [anon_sym_U_DQUOTE] = ACTIONS(3972), - [anon_sym_u8_DQUOTE] = ACTIONS(3972), - [anon_sym_DQUOTE] = ACTIONS(3972), - [sym_true] = ACTIONS(3970), - [sym_false] = ACTIONS(3970), - [anon_sym_NULL] = ACTIONS(3970), - [anon_sym_nullptr] = ACTIONS(3970), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3970), - [anon_sym_decltype] = ACTIONS(3970), - [anon_sym_explicit] = ACTIONS(3970), - [anon_sym_export] = ACTIONS(3970), - [anon_sym_module] = ACTIONS(3970), - [anon_sym_import] = ACTIONS(3970), - [anon_sym_template] = ACTIONS(3970), - [anon_sym_operator] = ACTIONS(3970), - [anon_sym_try] = ACTIONS(3970), - [anon_sym_delete] = ACTIONS(3970), - [anon_sym_throw] = ACTIONS(3970), - [anon_sym_namespace] = ACTIONS(3970), - [anon_sym_static_assert] = ACTIONS(3970), - [anon_sym_concept] = ACTIONS(3970), - [anon_sym_co_return] = ACTIONS(3970), - [anon_sym_co_yield] = ACTIONS(3970), - [anon_sym_R_DQUOTE] = ACTIONS(3972), - [anon_sym_LR_DQUOTE] = ACTIONS(3972), - [anon_sym_uR_DQUOTE] = ACTIONS(3972), - [anon_sym_UR_DQUOTE] = ACTIONS(3972), - [anon_sym_u8R_DQUOTE] = ACTIONS(3972), - [anon_sym_co_await] = ACTIONS(3970), - [anon_sym_new] = ACTIONS(3970), - [anon_sym_requires] = ACTIONS(3970), - [anon_sym_CARET_CARET] = ACTIONS(3972), - [anon_sym_LBRACK_COLON] = ACTIONS(3972), - [sym_this] = ACTIONS(3970), + [STATE(520)] = { + [sym_catch_clause] = STATE(521), + [aux_sym_constructor_try_statement_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(3165), + [aux_sym_preproc_include_token1] = ACTIONS(3165), + [aux_sym_preproc_def_token1] = ACTIONS(3165), + [aux_sym_preproc_if_token1] = ACTIONS(3165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3165), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3165), + [sym_preproc_directive] = ACTIONS(3165), + [anon_sym_LPAREN2] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(3167), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym___extension__] = ACTIONS(3165), + [anon_sym_typedef] = ACTIONS(3165), + [anon_sym_virtual] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3165), + [anon_sym___attribute__] = ACTIONS(3165), + [anon_sym___attribute] = ACTIONS(3165), + [anon_sym_using] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(3167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3167), + [anon_sym___declspec] = ACTIONS(3165), + [anon_sym___based] = ACTIONS(3165), + [anon_sym___cdecl] = ACTIONS(3165), + [anon_sym___clrcall] = ACTIONS(3165), + [anon_sym___stdcall] = ACTIONS(3165), + [anon_sym___fastcall] = ACTIONS(3165), + [anon_sym___thiscall] = ACTIONS(3165), + [anon_sym___vectorcall] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_signed] = ACTIONS(3165), + [anon_sym_unsigned] = ACTIONS(3165), + [anon_sym_long] = ACTIONS(3165), + [anon_sym_short] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_static] = ACTIONS(3165), + [anon_sym_register] = ACTIONS(3165), + [anon_sym_inline] = ACTIONS(3165), + [anon_sym___inline] = ACTIONS(3165), + [anon_sym___inline__] = ACTIONS(3165), + [anon_sym___forceinline] = ACTIONS(3165), + [anon_sym_thread_local] = ACTIONS(3165), + [anon_sym___thread] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_constexpr] = ACTIONS(3165), + [anon_sym_volatile] = ACTIONS(3165), + [anon_sym_restrict] = ACTIONS(3165), + [anon_sym___restrict__] = ACTIONS(3165), + [anon_sym__Atomic] = ACTIONS(3165), + [anon_sym__Noreturn] = ACTIONS(3165), + [anon_sym_noreturn] = ACTIONS(3165), + [anon_sym__Nonnull] = ACTIONS(3165), + [anon_sym_mutable] = ACTIONS(3165), + [anon_sym_constinit] = ACTIONS(3165), + [anon_sym_consteval] = ACTIONS(3165), + [anon_sym_alignas] = ACTIONS(3165), + [anon_sym__Alignas] = ACTIONS(3165), + [sym_primitive_type] = ACTIONS(3165), + [anon_sym_enum] = ACTIONS(3165), + [anon_sym_class] = ACTIONS(3165), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3165), + [anon_sym_else] = ACTIONS(3165), + [anon_sym_switch] = ACTIONS(3165), + [anon_sym_case] = ACTIONS(3165), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_while] = ACTIONS(3165), + [anon_sym_do] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3165), + [anon_sym_return] = ACTIONS(3165), + [anon_sym_break] = ACTIONS(3165), + [anon_sym_continue] = ACTIONS(3165), + [anon_sym_goto] = ACTIONS(3165), + [anon_sym___try] = ACTIONS(3165), + [anon_sym___leave] = ACTIONS(3165), + [anon_sym_not] = ACTIONS(3165), + [anon_sym_compl] = ACTIONS(3165), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_sizeof] = ACTIONS(3165), + [anon_sym___alignof__] = ACTIONS(3165), + [anon_sym___alignof] = ACTIONS(3165), + [anon_sym__alignof] = ACTIONS(3165), + [anon_sym_alignof] = ACTIONS(3165), + [anon_sym__Alignof] = ACTIONS(3165), + [anon_sym_offsetof] = ACTIONS(3165), + [anon_sym__Generic] = ACTIONS(3165), + [anon_sym_typename] = ACTIONS(3165), + [anon_sym_asm] = ACTIONS(3165), + [anon_sym___asm__] = ACTIONS(3165), + [anon_sym___asm] = ACTIONS(3165), + [sym_number_literal] = ACTIONS(3167), + [anon_sym_L_SQUOTE] = ACTIONS(3167), + [anon_sym_u_SQUOTE] = ACTIONS(3167), + [anon_sym_U_SQUOTE] = ACTIONS(3167), + [anon_sym_u8_SQUOTE] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3167), + [anon_sym_L_DQUOTE] = ACTIONS(3167), + [anon_sym_u_DQUOTE] = ACTIONS(3167), + [anon_sym_U_DQUOTE] = ACTIONS(3167), + [anon_sym_u8_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [sym_true] = ACTIONS(3165), + [sym_false] = ACTIONS(3165), + [anon_sym_NULL] = ACTIONS(3165), + [anon_sym_nullptr] = ACTIONS(3165), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3165), + [anon_sym_decltype] = ACTIONS(3165), + [anon_sym_explicit] = ACTIONS(3165), + [anon_sym_export] = ACTIONS(3165), + [anon_sym_import] = ACTIONS(3165), + [anon_sym_template] = ACTIONS(3165), + [anon_sym_operator] = ACTIONS(3165), + [anon_sym_try] = ACTIONS(3165), + [anon_sym_delete] = ACTIONS(3165), + [anon_sym_throw] = ACTIONS(3165), + [anon_sym_namespace] = ACTIONS(3165), + [anon_sym_static_assert] = ACTIONS(3165), + [anon_sym_concept] = ACTIONS(3165), + [anon_sym_co_return] = ACTIONS(3165), + [anon_sym_co_yield] = ACTIONS(3165), + [anon_sym_catch] = ACTIONS(4447), + [anon_sym_R_DQUOTE] = ACTIONS(3167), + [anon_sym_LR_DQUOTE] = ACTIONS(3167), + [anon_sym_uR_DQUOTE] = ACTIONS(3167), + [anon_sym_UR_DQUOTE] = ACTIONS(3167), + [anon_sym_u8R_DQUOTE] = ACTIONS(3167), + [anon_sym_co_await] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3165), + [anon_sym_requires] = ACTIONS(3165), + [anon_sym_CARET_CARET] = ACTIONS(3167), + [anon_sym_LBRACK_COLON] = ACTIONS(3167), + [sym_this] = ACTIONS(3165), }, - [STATE(579)] = { - [sym_identifier] = ACTIONS(3728), - [aux_sym_preproc_include_token1] = ACTIONS(3728), - [aux_sym_preproc_def_token1] = ACTIONS(3728), - [aux_sym_preproc_if_token1] = ACTIONS(3728), - [aux_sym_preproc_if_token2] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), - [sym_preproc_directive] = ACTIONS(3728), - [anon_sym_LPAREN2] = ACTIONS(3730), - [anon_sym_BANG] = ACTIONS(3730), - [anon_sym_TILDE] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3730), - [anon_sym_AMP_AMP] = ACTIONS(3730), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_SEMI] = ACTIONS(3730), - [anon_sym___extension__] = ACTIONS(3728), - [anon_sym_typedef] = ACTIONS(3728), - [anon_sym_virtual] = ACTIONS(3728), - [anon_sym_extern] = ACTIONS(3728), - [anon_sym___attribute__] = ACTIONS(3728), - [anon_sym___attribute] = ACTIONS(3728), - [anon_sym_using] = ACTIONS(3728), - [anon_sym_COLON_COLON] = ACTIONS(3730), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), - [anon_sym___declspec] = ACTIONS(3728), - [anon_sym___based] = ACTIONS(3728), - [anon_sym___cdecl] = ACTIONS(3728), - [anon_sym___clrcall] = ACTIONS(3728), - [anon_sym___stdcall] = ACTIONS(3728), - [anon_sym___fastcall] = ACTIONS(3728), - [anon_sym___thiscall] = ACTIONS(3728), - [anon_sym___vectorcall] = ACTIONS(3728), - [anon_sym_LBRACE] = ACTIONS(3730), - [anon_sym_signed] = ACTIONS(3728), - [anon_sym_unsigned] = ACTIONS(3728), - [anon_sym_long] = ACTIONS(3728), - [anon_sym_short] = ACTIONS(3728), - [anon_sym_LBRACK] = ACTIONS(3728), - [anon_sym_static] = ACTIONS(3728), - [anon_sym_register] = ACTIONS(3728), - [anon_sym_inline] = ACTIONS(3728), - [anon_sym___inline] = ACTIONS(3728), - [anon_sym___inline__] = ACTIONS(3728), - [anon_sym___forceinline] = ACTIONS(3728), - [anon_sym_thread_local] = ACTIONS(3728), - [anon_sym___thread] = ACTIONS(3728), - [anon_sym_const] = ACTIONS(3728), - [anon_sym_constexpr] = ACTIONS(3728), - [anon_sym_volatile] = ACTIONS(3728), - [anon_sym_restrict] = ACTIONS(3728), - [anon_sym___restrict__] = ACTIONS(3728), - [anon_sym__Atomic] = ACTIONS(3728), - [anon_sym__Noreturn] = ACTIONS(3728), - [anon_sym_noreturn] = ACTIONS(3728), - [anon_sym__Nonnull] = ACTIONS(3728), - [anon_sym_mutable] = ACTIONS(3728), - [anon_sym_constinit] = ACTIONS(3728), - [anon_sym_consteval] = ACTIONS(3728), - [anon_sym_alignas] = ACTIONS(3728), - [anon_sym__Alignas] = ACTIONS(3728), - [sym_primitive_type] = ACTIONS(3728), - [anon_sym_enum] = ACTIONS(3728), - [anon_sym_class] = ACTIONS(3728), - [anon_sym_struct] = ACTIONS(3728), - [anon_sym_union] = ACTIONS(3728), - [anon_sym_if] = ACTIONS(3728), - [anon_sym_else] = ACTIONS(3728), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_case] = ACTIONS(3728), - [anon_sym_default] = ACTIONS(3728), - [anon_sym_while] = ACTIONS(3728), - [anon_sym_do] = ACTIONS(3728), - [anon_sym_for] = ACTIONS(3728), - [anon_sym_return] = ACTIONS(3728), - [anon_sym_break] = ACTIONS(3728), - [anon_sym_continue] = ACTIONS(3728), - [anon_sym_goto] = ACTIONS(3728), - [anon_sym___try] = ACTIONS(3728), - [anon_sym___leave] = ACTIONS(3728), - [anon_sym_not] = ACTIONS(3728), - [anon_sym_compl] = ACTIONS(3728), - [anon_sym_DASH_DASH] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3730), - [anon_sym_sizeof] = ACTIONS(3728), - [anon_sym___alignof__] = ACTIONS(3728), - [anon_sym___alignof] = ACTIONS(3728), - [anon_sym__alignof] = ACTIONS(3728), - [anon_sym_alignof] = ACTIONS(3728), - [anon_sym__Alignof] = ACTIONS(3728), - [anon_sym_offsetof] = ACTIONS(3728), - [anon_sym__Generic] = ACTIONS(3728), - [anon_sym_typename] = ACTIONS(3728), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [anon_sym___asm] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3730), - [anon_sym_u_SQUOTE] = ACTIONS(3730), - [anon_sym_U_SQUOTE] = ACTIONS(3730), - [anon_sym_u8_SQUOTE] = ACTIONS(3730), - [anon_sym_SQUOTE] = ACTIONS(3730), - [anon_sym_L_DQUOTE] = ACTIONS(3730), - [anon_sym_u_DQUOTE] = ACTIONS(3730), - [anon_sym_U_DQUOTE] = ACTIONS(3730), - [anon_sym_u8_DQUOTE] = ACTIONS(3730), - [anon_sym_DQUOTE] = ACTIONS(3730), - [sym_true] = ACTIONS(3728), - [sym_false] = ACTIONS(3728), - [anon_sym_NULL] = ACTIONS(3728), - [anon_sym_nullptr] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3728), - [anon_sym_decltype] = ACTIONS(3728), - [anon_sym_explicit] = ACTIONS(3728), - [anon_sym_template] = ACTIONS(3728), - [anon_sym_operator] = ACTIONS(3728), - [anon_sym_try] = ACTIONS(3728), - [anon_sym_delete] = ACTIONS(3728), - [anon_sym_throw] = ACTIONS(3728), - [anon_sym_namespace] = ACTIONS(3728), - [anon_sym_static_assert] = ACTIONS(3728), - [anon_sym_concept] = ACTIONS(3728), - [anon_sym_co_return] = ACTIONS(3728), - [anon_sym_co_yield] = ACTIONS(3728), - [anon_sym_R_DQUOTE] = ACTIONS(3730), - [anon_sym_LR_DQUOTE] = ACTIONS(3730), - [anon_sym_uR_DQUOTE] = ACTIONS(3730), - [anon_sym_UR_DQUOTE] = ACTIONS(3730), - [anon_sym_u8R_DQUOTE] = ACTIONS(3730), - [anon_sym_co_await] = ACTIONS(3728), - [anon_sym_new] = ACTIONS(3728), - [anon_sym_requires] = ACTIONS(3728), - [anon_sym_CARET_CARET] = ACTIONS(3730), - [anon_sym_LBRACK_COLON] = ACTIONS(3730), - [sym_this] = ACTIONS(3728), + [STATE(521)] = { + [sym_catch_clause] = STATE(521), + [aux_sym_constructor_try_statement_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(3171), + [aux_sym_preproc_include_token1] = ACTIONS(3171), + [aux_sym_preproc_def_token1] = ACTIONS(3171), + [aux_sym_preproc_if_token1] = ACTIONS(3171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3171), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3171), + [sym_preproc_directive] = ACTIONS(3171), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(3173), + [anon_sym_AMP_AMP] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym___extension__] = ACTIONS(3171), + [anon_sym_typedef] = ACTIONS(3171), + [anon_sym_virtual] = ACTIONS(3171), + [anon_sym_extern] = ACTIONS(3171), + [anon_sym___attribute__] = ACTIONS(3171), + [anon_sym___attribute] = ACTIONS(3171), + [anon_sym_using] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3173), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), + [anon_sym___declspec] = ACTIONS(3171), + [anon_sym___based] = ACTIONS(3171), + [anon_sym___cdecl] = ACTIONS(3171), + [anon_sym___clrcall] = ACTIONS(3171), + [anon_sym___stdcall] = ACTIONS(3171), + [anon_sym___fastcall] = ACTIONS(3171), + [anon_sym___thiscall] = ACTIONS(3171), + [anon_sym___vectorcall] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3173), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_signed] = ACTIONS(3171), + [anon_sym_unsigned] = ACTIONS(3171), + [anon_sym_long] = ACTIONS(3171), + [anon_sym_short] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_register] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym___inline] = ACTIONS(3171), + [anon_sym___inline__] = ACTIONS(3171), + [anon_sym___forceinline] = ACTIONS(3171), + [anon_sym_thread_local] = ACTIONS(3171), + [anon_sym___thread] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_constexpr] = ACTIONS(3171), + [anon_sym_volatile] = ACTIONS(3171), + [anon_sym_restrict] = ACTIONS(3171), + [anon_sym___restrict__] = ACTIONS(3171), + [anon_sym__Atomic] = ACTIONS(3171), + [anon_sym__Noreturn] = ACTIONS(3171), + [anon_sym_noreturn] = ACTIONS(3171), + [anon_sym__Nonnull] = ACTIONS(3171), + [anon_sym_mutable] = ACTIONS(3171), + [anon_sym_constinit] = ACTIONS(3171), + [anon_sym_consteval] = ACTIONS(3171), + [anon_sym_alignas] = ACTIONS(3171), + [anon_sym__Alignas] = ACTIONS(3171), + [sym_primitive_type] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), + [anon_sym_class] = ACTIONS(3171), + [anon_sym_struct] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_switch] = ACTIONS(3171), + [anon_sym_case] = ACTIONS(3171), + [anon_sym_default] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_goto] = ACTIONS(3171), + [anon_sym___try] = ACTIONS(3171), + [anon_sym___leave] = ACTIONS(3171), + [anon_sym_not] = ACTIONS(3171), + [anon_sym_compl] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3173), + [anon_sym_PLUS_PLUS] = ACTIONS(3173), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3171), + [anon_sym___alignof] = ACTIONS(3171), + [anon_sym__alignof] = ACTIONS(3171), + [anon_sym_alignof] = ACTIONS(3171), + [anon_sym__Alignof] = ACTIONS(3171), + [anon_sym_offsetof] = ACTIONS(3171), + [anon_sym__Generic] = ACTIONS(3171), + [anon_sym_typename] = ACTIONS(3171), + [anon_sym_asm] = ACTIONS(3171), + [anon_sym___asm__] = ACTIONS(3171), + [anon_sym___asm] = ACTIONS(3171), + [sym_number_literal] = ACTIONS(3173), + [anon_sym_L_SQUOTE] = ACTIONS(3173), + [anon_sym_u_SQUOTE] = ACTIONS(3173), + [anon_sym_U_SQUOTE] = ACTIONS(3173), + [anon_sym_u8_SQUOTE] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_L_DQUOTE] = ACTIONS(3173), + [anon_sym_u_DQUOTE] = ACTIONS(3173), + [anon_sym_U_DQUOTE] = ACTIONS(3173), + [anon_sym_u8_DQUOTE] = ACTIONS(3173), + [anon_sym_DQUOTE] = ACTIONS(3173), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [anon_sym_NULL] = ACTIONS(3171), + [anon_sym_nullptr] = ACTIONS(3171), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3171), + [anon_sym_decltype] = ACTIONS(3171), + [anon_sym_explicit] = ACTIONS(3171), + [anon_sym_export] = ACTIONS(3171), + [anon_sym_import] = ACTIONS(3171), + [anon_sym_template] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_delete] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_namespace] = ACTIONS(3171), + [anon_sym_static_assert] = ACTIONS(3171), + [anon_sym_concept] = ACTIONS(3171), + [anon_sym_co_return] = ACTIONS(3171), + [anon_sym_co_yield] = ACTIONS(3171), + [anon_sym_catch] = ACTIONS(4449), + [anon_sym_R_DQUOTE] = ACTIONS(3173), + [anon_sym_LR_DQUOTE] = ACTIONS(3173), + [anon_sym_uR_DQUOTE] = ACTIONS(3173), + [anon_sym_UR_DQUOTE] = ACTIONS(3173), + [anon_sym_u8R_DQUOTE] = ACTIONS(3173), + [anon_sym_co_await] = ACTIONS(3171), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_requires] = ACTIONS(3171), + [anon_sym_CARET_CARET] = ACTIONS(3173), + [anon_sym_LBRACK_COLON] = ACTIONS(3173), + [sym_this] = ACTIONS(3171), }, - [STATE(580)] = { - [sym_identifier] = ACTIONS(3728), - [aux_sym_preproc_include_token1] = ACTIONS(3728), - [aux_sym_preproc_def_token1] = ACTIONS(3728), - [aux_sym_preproc_if_token1] = ACTIONS(3728), - [aux_sym_preproc_if_token2] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), - [sym_preproc_directive] = ACTIONS(3728), - [anon_sym_LPAREN2] = ACTIONS(3730), - [anon_sym_BANG] = ACTIONS(3730), - [anon_sym_TILDE] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3730), - [anon_sym_AMP_AMP] = ACTIONS(3730), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_SEMI] = ACTIONS(3730), - [anon_sym___extension__] = ACTIONS(3728), - [anon_sym_typedef] = ACTIONS(3728), - [anon_sym_virtual] = ACTIONS(3728), - [anon_sym_extern] = ACTIONS(3728), - [anon_sym___attribute__] = ACTIONS(3728), - [anon_sym___attribute] = ACTIONS(3728), - [anon_sym_using] = ACTIONS(3728), - [anon_sym_COLON_COLON] = ACTIONS(3730), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), - [anon_sym___declspec] = ACTIONS(3728), - [anon_sym___based] = ACTIONS(3728), - [anon_sym___cdecl] = ACTIONS(3728), - [anon_sym___clrcall] = ACTIONS(3728), - [anon_sym___stdcall] = ACTIONS(3728), - [anon_sym___fastcall] = ACTIONS(3728), - [anon_sym___thiscall] = ACTIONS(3728), - [anon_sym___vectorcall] = ACTIONS(3728), - [anon_sym_LBRACE] = ACTIONS(3730), - [anon_sym_signed] = ACTIONS(3728), - [anon_sym_unsigned] = ACTIONS(3728), - [anon_sym_long] = ACTIONS(3728), - [anon_sym_short] = ACTIONS(3728), - [anon_sym_LBRACK] = ACTIONS(3728), - [anon_sym_static] = ACTIONS(3728), - [anon_sym_register] = ACTIONS(3728), - [anon_sym_inline] = ACTIONS(3728), - [anon_sym___inline] = ACTIONS(3728), - [anon_sym___inline__] = ACTIONS(3728), - [anon_sym___forceinline] = ACTIONS(3728), - [anon_sym_thread_local] = ACTIONS(3728), - [anon_sym___thread] = ACTIONS(3728), - [anon_sym_const] = ACTIONS(3728), - [anon_sym_constexpr] = ACTIONS(3728), - [anon_sym_volatile] = ACTIONS(3728), - [anon_sym_restrict] = ACTIONS(3728), - [anon_sym___restrict__] = ACTIONS(3728), - [anon_sym__Atomic] = ACTIONS(3728), - [anon_sym__Noreturn] = ACTIONS(3728), - [anon_sym_noreturn] = ACTIONS(3728), - [anon_sym__Nonnull] = ACTIONS(3728), - [anon_sym_mutable] = ACTIONS(3728), - [anon_sym_constinit] = ACTIONS(3728), - [anon_sym_consteval] = ACTIONS(3728), - [anon_sym_alignas] = ACTIONS(3728), - [anon_sym__Alignas] = ACTIONS(3728), - [sym_primitive_type] = ACTIONS(3728), - [anon_sym_enum] = ACTIONS(3728), - [anon_sym_class] = ACTIONS(3728), - [anon_sym_struct] = ACTIONS(3728), - [anon_sym_union] = ACTIONS(3728), - [anon_sym_if] = ACTIONS(3728), - [anon_sym_else] = ACTIONS(3728), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_case] = ACTIONS(3728), - [anon_sym_default] = ACTIONS(3728), - [anon_sym_while] = ACTIONS(3728), - [anon_sym_do] = ACTIONS(3728), - [anon_sym_for] = ACTIONS(3728), - [anon_sym_return] = ACTIONS(3728), - [anon_sym_break] = ACTIONS(3728), - [anon_sym_continue] = ACTIONS(3728), - [anon_sym_goto] = ACTIONS(3728), - [anon_sym___try] = ACTIONS(3728), - [anon_sym___leave] = ACTIONS(3728), - [anon_sym_not] = ACTIONS(3728), - [anon_sym_compl] = ACTIONS(3728), - [anon_sym_DASH_DASH] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3730), - [anon_sym_sizeof] = ACTIONS(3728), - [anon_sym___alignof__] = ACTIONS(3728), - [anon_sym___alignof] = ACTIONS(3728), - [anon_sym__alignof] = ACTIONS(3728), - [anon_sym_alignof] = ACTIONS(3728), - [anon_sym__Alignof] = ACTIONS(3728), - [anon_sym_offsetof] = ACTIONS(3728), - [anon_sym__Generic] = ACTIONS(3728), - [anon_sym_typename] = ACTIONS(3728), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [anon_sym___asm] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3730), - [anon_sym_u_SQUOTE] = ACTIONS(3730), - [anon_sym_U_SQUOTE] = ACTIONS(3730), - [anon_sym_u8_SQUOTE] = ACTIONS(3730), - [anon_sym_SQUOTE] = ACTIONS(3730), - [anon_sym_L_DQUOTE] = ACTIONS(3730), - [anon_sym_u_DQUOTE] = ACTIONS(3730), - [anon_sym_U_DQUOTE] = ACTIONS(3730), - [anon_sym_u8_DQUOTE] = ACTIONS(3730), - [anon_sym_DQUOTE] = ACTIONS(3730), - [sym_true] = ACTIONS(3728), - [sym_false] = ACTIONS(3728), - [anon_sym_NULL] = ACTIONS(3728), - [anon_sym_nullptr] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3728), - [anon_sym_decltype] = ACTIONS(3728), - [anon_sym_explicit] = ACTIONS(3728), - [anon_sym_template] = ACTIONS(3728), - [anon_sym_operator] = ACTIONS(3728), - [anon_sym_try] = ACTIONS(3728), - [anon_sym_delete] = ACTIONS(3728), - [anon_sym_throw] = ACTIONS(3728), - [anon_sym_namespace] = ACTIONS(3728), - [anon_sym_static_assert] = ACTIONS(3728), - [anon_sym_concept] = ACTIONS(3728), - [anon_sym_co_return] = ACTIONS(3728), - [anon_sym_co_yield] = ACTIONS(3728), - [anon_sym_R_DQUOTE] = ACTIONS(3730), - [anon_sym_LR_DQUOTE] = ACTIONS(3730), - [anon_sym_uR_DQUOTE] = ACTIONS(3730), - [anon_sym_UR_DQUOTE] = ACTIONS(3730), - [anon_sym_u8R_DQUOTE] = ACTIONS(3730), - [anon_sym_co_await] = ACTIONS(3728), - [anon_sym_new] = ACTIONS(3728), - [anon_sym_requires] = ACTIONS(3728), - [anon_sym_CARET_CARET] = ACTIONS(3730), - [anon_sym_LBRACK_COLON] = ACTIONS(3730), - [sym_this] = ACTIONS(3728), + [STATE(522)] = { + [sym_catch_clause] = STATE(410), + [aux_sym_constructor_try_statement_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(3182), + [aux_sym_preproc_include_token1] = ACTIONS(3182), + [aux_sym_preproc_def_token1] = ACTIONS(3182), + [aux_sym_preproc_if_token1] = ACTIONS(3182), + [aux_sym_preproc_if_token2] = ACTIONS(3182), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3182), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3182), + [sym_preproc_directive] = ACTIONS(3182), + [anon_sym_LPAREN2] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3184), + [anon_sym_AMP_AMP] = ACTIONS(3184), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym___extension__] = ACTIONS(3182), + [anon_sym_typedef] = ACTIONS(3182), + [anon_sym_virtual] = ACTIONS(3182), + [anon_sym_extern] = ACTIONS(3182), + [anon_sym___attribute__] = ACTIONS(3182), + [anon_sym___attribute] = ACTIONS(3182), + [anon_sym_using] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3184), + [anon_sym___declspec] = ACTIONS(3182), + [anon_sym___based] = ACTIONS(3182), + [anon_sym___cdecl] = ACTIONS(3182), + [anon_sym___clrcall] = ACTIONS(3182), + [anon_sym___stdcall] = ACTIONS(3182), + [anon_sym___fastcall] = ACTIONS(3182), + [anon_sym___thiscall] = ACTIONS(3182), + [anon_sym___vectorcall] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_signed] = ACTIONS(3182), + [anon_sym_unsigned] = ACTIONS(3182), + [anon_sym_long] = ACTIONS(3182), + [anon_sym_short] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_register] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym___inline] = ACTIONS(3182), + [anon_sym___inline__] = ACTIONS(3182), + [anon_sym___forceinline] = ACTIONS(3182), + [anon_sym_thread_local] = ACTIONS(3182), + [anon_sym___thread] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_constexpr] = ACTIONS(3182), + [anon_sym_volatile] = ACTIONS(3182), + [anon_sym_restrict] = ACTIONS(3182), + [anon_sym___restrict__] = ACTIONS(3182), + [anon_sym__Atomic] = ACTIONS(3182), + [anon_sym__Noreturn] = ACTIONS(3182), + [anon_sym_noreturn] = ACTIONS(3182), + [anon_sym__Nonnull] = ACTIONS(3182), + [anon_sym_mutable] = ACTIONS(3182), + [anon_sym_constinit] = ACTIONS(3182), + [anon_sym_consteval] = ACTIONS(3182), + [anon_sym_alignas] = ACTIONS(3182), + [anon_sym__Alignas] = ACTIONS(3182), + [sym_primitive_type] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), + [anon_sym_class] = ACTIONS(3182), + [anon_sym_struct] = ACTIONS(3182), + [anon_sym_union] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_switch] = ACTIONS(3182), + [anon_sym_case] = ACTIONS(3182), + [anon_sym_default] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_do] = ACTIONS(3182), + [anon_sym_for] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_goto] = ACTIONS(3182), + [anon_sym___try] = ACTIONS(3182), + [anon_sym___leave] = ACTIONS(3182), + [anon_sym_not] = ACTIONS(3182), + [anon_sym_compl] = ACTIONS(3182), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_sizeof] = ACTIONS(3182), + [anon_sym___alignof__] = ACTIONS(3182), + [anon_sym___alignof] = ACTIONS(3182), + [anon_sym__alignof] = ACTIONS(3182), + [anon_sym_alignof] = ACTIONS(3182), + [anon_sym__Alignof] = ACTIONS(3182), + [anon_sym_offsetof] = ACTIONS(3182), + [anon_sym__Generic] = ACTIONS(3182), + [anon_sym_typename] = ACTIONS(3182), + [anon_sym_asm] = ACTIONS(3182), + [anon_sym___asm__] = ACTIONS(3182), + [anon_sym___asm] = ACTIONS(3182), + [sym_number_literal] = ACTIONS(3184), + [anon_sym_L_SQUOTE] = ACTIONS(3184), + [anon_sym_u_SQUOTE] = ACTIONS(3184), + [anon_sym_U_SQUOTE] = ACTIONS(3184), + [anon_sym_u8_SQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [anon_sym_L_DQUOTE] = ACTIONS(3184), + [anon_sym_u_DQUOTE] = ACTIONS(3184), + [anon_sym_U_DQUOTE] = ACTIONS(3184), + [anon_sym_u8_DQUOTE] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3182), + [anon_sym_decltype] = ACTIONS(3182), + [anon_sym_explicit] = ACTIONS(3182), + [anon_sym_export] = ACTIONS(3182), + [anon_sym_module] = ACTIONS(3182), + [anon_sym_import] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_delete] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_namespace] = ACTIONS(3182), + [anon_sym_static_assert] = ACTIONS(3182), + [anon_sym_concept] = ACTIONS(3182), + [anon_sym_co_return] = ACTIONS(3182), + [anon_sym_co_yield] = ACTIONS(3182), + [anon_sym_catch] = ACTIONS(3790), + [anon_sym_R_DQUOTE] = ACTIONS(3184), + [anon_sym_LR_DQUOTE] = ACTIONS(3184), + [anon_sym_uR_DQUOTE] = ACTIONS(3184), + [anon_sym_UR_DQUOTE] = ACTIONS(3184), + [anon_sym_u8R_DQUOTE] = ACTIONS(3184), + [anon_sym_co_await] = ACTIONS(3182), + [anon_sym_new] = ACTIONS(3182), + [anon_sym_requires] = ACTIONS(3182), + [anon_sym_CARET_CARET] = ACTIONS(3184), + [anon_sym_LBRACK_COLON] = ACTIONS(3184), + [sym_this] = ACTIONS(3182), }, - [STATE(581)] = { - [sym_identifier] = ACTIONS(3704), - [aux_sym_preproc_include_token1] = ACTIONS(3704), - [aux_sym_preproc_def_token1] = ACTIONS(3704), - [aux_sym_preproc_if_token1] = ACTIONS(3704), - [aux_sym_preproc_if_token2] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), - [sym_preproc_directive] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3706), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3706), - [anon_sym___extension__] = ACTIONS(3704), - [anon_sym_typedef] = ACTIONS(3704), - [anon_sym_virtual] = ACTIONS(3704), - [anon_sym_extern] = ACTIONS(3704), - [anon_sym___attribute__] = ACTIONS(3704), - [anon_sym___attribute] = ACTIONS(3704), - [anon_sym_using] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), - [anon_sym___declspec] = ACTIONS(3704), - [anon_sym___based] = ACTIONS(3704), - [anon_sym___cdecl] = ACTIONS(3704), - [anon_sym___clrcall] = ACTIONS(3704), - [anon_sym___stdcall] = ACTIONS(3704), - [anon_sym___fastcall] = ACTIONS(3704), - [anon_sym___thiscall] = ACTIONS(3704), - [anon_sym___vectorcall] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3706), - [anon_sym_signed] = ACTIONS(3704), - [anon_sym_unsigned] = ACTIONS(3704), - [anon_sym_long] = ACTIONS(3704), - [anon_sym_short] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_static] = ACTIONS(3704), - [anon_sym_register] = ACTIONS(3704), - [anon_sym_inline] = ACTIONS(3704), - [anon_sym___inline] = ACTIONS(3704), - [anon_sym___inline__] = ACTIONS(3704), - [anon_sym___forceinline] = ACTIONS(3704), - [anon_sym_thread_local] = ACTIONS(3704), - [anon_sym___thread] = ACTIONS(3704), - [anon_sym_const] = ACTIONS(3704), - [anon_sym_constexpr] = ACTIONS(3704), - [anon_sym_volatile] = ACTIONS(3704), - [anon_sym_restrict] = ACTIONS(3704), - [anon_sym___restrict__] = ACTIONS(3704), - [anon_sym__Atomic] = ACTIONS(3704), - [anon_sym__Noreturn] = ACTIONS(3704), - [anon_sym_noreturn] = ACTIONS(3704), - [anon_sym__Nonnull] = ACTIONS(3704), - [anon_sym_mutable] = ACTIONS(3704), - [anon_sym_constinit] = ACTIONS(3704), - [anon_sym_consteval] = ACTIONS(3704), - [anon_sym_alignas] = ACTIONS(3704), - [anon_sym__Alignas] = ACTIONS(3704), - [sym_primitive_type] = ACTIONS(3704), - [anon_sym_enum] = ACTIONS(3704), - [anon_sym_class] = ACTIONS(3704), - [anon_sym_struct] = ACTIONS(3704), - [anon_sym_union] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_else] = ACTIONS(3704), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_case] = ACTIONS(3704), - [anon_sym_default] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_break] = ACTIONS(3704), - [anon_sym_continue] = ACTIONS(3704), - [anon_sym_goto] = ACTIONS(3704), - [anon_sym___try] = ACTIONS(3704), - [anon_sym___leave] = ACTIONS(3704), - [anon_sym_not] = ACTIONS(3704), - [anon_sym_compl] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_sizeof] = ACTIONS(3704), - [anon_sym___alignof__] = ACTIONS(3704), - [anon_sym___alignof] = ACTIONS(3704), - [anon_sym__alignof] = ACTIONS(3704), - [anon_sym_alignof] = ACTIONS(3704), - [anon_sym__Alignof] = ACTIONS(3704), - [anon_sym_offsetof] = ACTIONS(3704), - [anon_sym__Generic] = ACTIONS(3704), - [anon_sym_typename] = ACTIONS(3704), - [anon_sym_asm] = ACTIONS(3704), - [anon_sym___asm__] = ACTIONS(3704), - [anon_sym___asm] = ACTIONS(3704), - [sym_number_literal] = ACTIONS(3706), - [anon_sym_L_SQUOTE] = ACTIONS(3706), - [anon_sym_u_SQUOTE] = ACTIONS(3706), - [anon_sym_U_SQUOTE] = ACTIONS(3706), - [anon_sym_u8_SQUOTE] = ACTIONS(3706), - [anon_sym_SQUOTE] = ACTIONS(3706), - [anon_sym_L_DQUOTE] = ACTIONS(3706), - [anon_sym_u_DQUOTE] = ACTIONS(3706), - [anon_sym_U_DQUOTE] = ACTIONS(3706), - [anon_sym_u8_DQUOTE] = ACTIONS(3706), - [anon_sym_DQUOTE] = ACTIONS(3706), - [sym_true] = ACTIONS(3704), - [sym_false] = ACTIONS(3704), - [anon_sym_NULL] = ACTIONS(3704), - [anon_sym_nullptr] = ACTIONS(3704), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3704), - [anon_sym_decltype] = ACTIONS(3704), - [anon_sym_explicit] = ACTIONS(3704), - [anon_sym_template] = ACTIONS(3704), - [anon_sym_operator] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_delete] = ACTIONS(3704), - [anon_sym_throw] = ACTIONS(3704), - [anon_sym_namespace] = ACTIONS(3704), - [anon_sym_static_assert] = ACTIONS(3704), - [anon_sym_concept] = ACTIONS(3704), - [anon_sym_co_return] = ACTIONS(3704), - [anon_sym_co_yield] = ACTIONS(3704), - [anon_sym_R_DQUOTE] = ACTIONS(3706), - [anon_sym_LR_DQUOTE] = ACTIONS(3706), - [anon_sym_uR_DQUOTE] = ACTIONS(3706), - [anon_sym_UR_DQUOTE] = ACTIONS(3706), - [anon_sym_u8R_DQUOTE] = ACTIONS(3706), - [anon_sym_co_await] = ACTIONS(3704), - [anon_sym_new] = ACTIONS(3704), - [anon_sym_requires] = ACTIONS(3704), - [anon_sym_CARET_CARET] = ACTIONS(3706), - [anon_sym_LBRACK_COLON] = ACTIONS(3706), - [sym_this] = ACTIONS(3704), + [STATE(523)] = { + [sym_catch_clause] = STATE(410), + [aux_sym_constructor_try_statement_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(3178), + [aux_sym_preproc_include_token1] = ACTIONS(3178), + [aux_sym_preproc_def_token1] = ACTIONS(3178), + [aux_sym_preproc_if_token1] = ACTIONS(3178), + [aux_sym_preproc_if_token2] = ACTIONS(3178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3178), + [sym_preproc_directive] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3180), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_TILDE] = ACTIONS(3180), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_AMP_AMP] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym___extension__] = ACTIONS(3178), + [anon_sym_typedef] = ACTIONS(3178), + [anon_sym_virtual] = ACTIONS(3178), + [anon_sym_extern] = ACTIONS(3178), + [anon_sym___attribute__] = ACTIONS(3178), + [anon_sym___attribute] = ACTIONS(3178), + [anon_sym_using] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3180), + [anon_sym___declspec] = ACTIONS(3178), + [anon_sym___based] = ACTIONS(3178), + [anon_sym___cdecl] = ACTIONS(3178), + [anon_sym___clrcall] = ACTIONS(3178), + [anon_sym___stdcall] = ACTIONS(3178), + [anon_sym___fastcall] = ACTIONS(3178), + [anon_sym___thiscall] = ACTIONS(3178), + [anon_sym___vectorcall] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3180), + [anon_sym_signed] = ACTIONS(3178), + [anon_sym_unsigned] = ACTIONS(3178), + [anon_sym_long] = ACTIONS(3178), + [anon_sym_short] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_static] = ACTIONS(3178), + [anon_sym_register] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym___inline] = ACTIONS(3178), + [anon_sym___inline__] = ACTIONS(3178), + [anon_sym___forceinline] = ACTIONS(3178), + [anon_sym_thread_local] = ACTIONS(3178), + [anon_sym___thread] = ACTIONS(3178), + [anon_sym_const] = ACTIONS(3178), + [anon_sym_constexpr] = ACTIONS(3178), + [anon_sym_volatile] = ACTIONS(3178), + [anon_sym_restrict] = ACTIONS(3178), + [anon_sym___restrict__] = ACTIONS(3178), + [anon_sym__Atomic] = ACTIONS(3178), + [anon_sym__Noreturn] = ACTIONS(3178), + [anon_sym_noreturn] = ACTIONS(3178), + [anon_sym__Nonnull] = ACTIONS(3178), + [anon_sym_mutable] = ACTIONS(3178), + [anon_sym_constinit] = ACTIONS(3178), + [anon_sym_consteval] = ACTIONS(3178), + [anon_sym_alignas] = ACTIONS(3178), + [anon_sym__Alignas] = ACTIONS(3178), + [sym_primitive_type] = ACTIONS(3178), + [anon_sym_enum] = ACTIONS(3178), + [anon_sym_class] = ACTIONS(3178), + [anon_sym_struct] = ACTIONS(3178), + [anon_sym_union] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_switch] = ACTIONS(3178), + [anon_sym_case] = ACTIONS(3178), + [anon_sym_default] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_break] = ACTIONS(3178), + [anon_sym_continue] = ACTIONS(3178), + [anon_sym_goto] = ACTIONS(3178), + [anon_sym___try] = ACTIONS(3178), + [anon_sym___leave] = ACTIONS(3178), + [anon_sym_not] = ACTIONS(3178), + [anon_sym_compl] = ACTIONS(3178), + [anon_sym_DASH_DASH] = ACTIONS(3180), + [anon_sym_PLUS_PLUS] = ACTIONS(3180), + [anon_sym_sizeof] = ACTIONS(3178), + [anon_sym___alignof__] = ACTIONS(3178), + [anon_sym___alignof] = ACTIONS(3178), + [anon_sym__alignof] = ACTIONS(3178), + [anon_sym_alignof] = ACTIONS(3178), + [anon_sym__Alignof] = ACTIONS(3178), + [anon_sym_offsetof] = ACTIONS(3178), + [anon_sym__Generic] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3178), + [anon_sym_asm] = ACTIONS(3178), + [anon_sym___asm__] = ACTIONS(3178), + [anon_sym___asm] = ACTIONS(3178), + [sym_number_literal] = ACTIONS(3180), + [anon_sym_L_SQUOTE] = ACTIONS(3180), + [anon_sym_u_SQUOTE] = ACTIONS(3180), + [anon_sym_U_SQUOTE] = ACTIONS(3180), + [anon_sym_u8_SQUOTE] = ACTIONS(3180), + [anon_sym_SQUOTE] = ACTIONS(3180), + [anon_sym_L_DQUOTE] = ACTIONS(3180), + [anon_sym_u_DQUOTE] = ACTIONS(3180), + [anon_sym_U_DQUOTE] = ACTIONS(3180), + [anon_sym_u8_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE] = ACTIONS(3180), + [sym_true] = ACTIONS(3178), + [sym_false] = ACTIONS(3178), + [anon_sym_NULL] = ACTIONS(3178), + [anon_sym_nullptr] = ACTIONS(3178), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3178), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_explicit] = ACTIONS(3178), + [anon_sym_export] = ACTIONS(3178), + [anon_sym_module] = ACTIONS(3178), + [anon_sym_import] = ACTIONS(3178), + [anon_sym_template] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_delete] = ACTIONS(3178), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_namespace] = ACTIONS(3178), + [anon_sym_static_assert] = ACTIONS(3178), + [anon_sym_concept] = ACTIONS(3178), + [anon_sym_co_return] = ACTIONS(3178), + [anon_sym_co_yield] = ACTIONS(3178), + [anon_sym_catch] = ACTIONS(3790), + [anon_sym_R_DQUOTE] = ACTIONS(3180), + [anon_sym_LR_DQUOTE] = ACTIONS(3180), + [anon_sym_uR_DQUOTE] = ACTIONS(3180), + [anon_sym_UR_DQUOTE] = ACTIONS(3180), + [anon_sym_u8R_DQUOTE] = ACTIONS(3180), + [anon_sym_co_await] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_requires] = ACTIONS(3178), + [anon_sym_CARET_CARET] = ACTIONS(3180), + [anon_sym_LBRACK_COLON] = ACTIONS(3180), + [sym_this] = ACTIONS(3178), }, - [STATE(582)] = { - [sym_identifier] = ACTIONS(3704), - [aux_sym_preproc_include_token1] = ACTIONS(3704), - [aux_sym_preproc_def_token1] = ACTIONS(3704), - [aux_sym_preproc_if_token1] = ACTIONS(3704), - [aux_sym_preproc_if_token2] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), - [sym_preproc_directive] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3706), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3706), - [anon_sym___extension__] = ACTIONS(3704), - [anon_sym_typedef] = ACTIONS(3704), - [anon_sym_virtual] = ACTIONS(3704), - [anon_sym_extern] = ACTIONS(3704), - [anon_sym___attribute__] = ACTIONS(3704), - [anon_sym___attribute] = ACTIONS(3704), - [anon_sym_using] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), - [anon_sym___declspec] = ACTIONS(3704), - [anon_sym___based] = ACTIONS(3704), - [anon_sym___cdecl] = ACTIONS(3704), - [anon_sym___clrcall] = ACTIONS(3704), - [anon_sym___stdcall] = ACTIONS(3704), - [anon_sym___fastcall] = ACTIONS(3704), - [anon_sym___thiscall] = ACTIONS(3704), - [anon_sym___vectorcall] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3706), - [anon_sym_signed] = ACTIONS(3704), - [anon_sym_unsigned] = ACTIONS(3704), - [anon_sym_long] = ACTIONS(3704), - [anon_sym_short] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_static] = ACTIONS(3704), - [anon_sym_register] = ACTIONS(3704), - [anon_sym_inline] = ACTIONS(3704), - [anon_sym___inline] = ACTIONS(3704), - [anon_sym___inline__] = ACTIONS(3704), - [anon_sym___forceinline] = ACTIONS(3704), - [anon_sym_thread_local] = ACTIONS(3704), - [anon_sym___thread] = ACTIONS(3704), - [anon_sym_const] = ACTIONS(3704), - [anon_sym_constexpr] = ACTIONS(3704), - [anon_sym_volatile] = ACTIONS(3704), - [anon_sym_restrict] = ACTIONS(3704), - [anon_sym___restrict__] = ACTIONS(3704), - [anon_sym__Atomic] = ACTIONS(3704), - [anon_sym__Noreturn] = ACTIONS(3704), - [anon_sym_noreturn] = ACTIONS(3704), - [anon_sym__Nonnull] = ACTIONS(3704), - [anon_sym_mutable] = ACTIONS(3704), - [anon_sym_constinit] = ACTIONS(3704), - [anon_sym_consteval] = ACTIONS(3704), - [anon_sym_alignas] = ACTIONS(3704), - [anon_sym__Alignas] = ACTIONS(3704), - [sym_primitive_type] = ACTIONS(3704), - [anon_sym_enum] = ACTIONS(3704), - [anon_sym_class] = ACTIONS(3704), - [anon_sym_struct] = ACTIONS(3704), - [anon_sym_union] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_else] = ACTIONS(3704), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_case] = ACTIONS(3704), - [anon_sym_default] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_break] = ACTIONS(3704), - [anon_sym_continue] = ACTIONS(3704), - [anon_sym_goto] = ACTIONS(3704), - [anon_sym___try] = ACTIONS(3704), - [anon_sym___leave] = ACTIONS(3704), - [anon_sym_not] = ACTIONS(3704), - [anon_sym_compl] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_sizeof] = ACTIONS(3704), - [anon_sym___alignof__] = ACTIONS(3704), - [anon_sym___alignof] = ACTIONS(3704), - [anon_sym__alignof] = ACTIONS(3704), - [anon_sym_alignof] = ACTIONS(3704), - [anon_sym__Alignof] = ACTIONS(3704), - [anon_sym_offsetof] = ACTIONS(3704), - [anon_sym__Generic] = ACTIONS(3704), - [anon_sym_typename] = ACTIONS(3704), - [anon_sym_asm] = ACTIONS(3704), - [anon_sym___asm__] = ACTIONS(3704), - [anon_sym___asm] = ACTIONS(3704), - [sym_number_literal] = ACTIONS(3706), - [anon_sym_L_SQUOTE] = ACTIONS(3706), - [anon_sym_u_SQUOTE] = ACTIONS(3706), - [anon_sym_U_SQUOTE] = ACTIONS(3706), - [anon_sym_u8_SQUOTE] = ACTIONS(3706), - [anon_sym_SQUOTE] = ACTIONS(3706), - [anon_sym_L_DQUOTE] = ACTIONS(3706), - [anon_sym_u_DQUOTE] = ACTIONS(3706), - [anon_sym_U_DQUOTE] = ACTIONS(3706), - [anon_sym_u8_DQUOTE] = ACTIONS(3706), - [anon_sym_DQUOTE] = ACTIONS(3706), - [sym_true] = ACTIONS(3704), - [sym_false] = ACTIONS(3704), - [anon_sym_NULL] = ACTIONS(3704), - [anon_sym_nullptr] = ACTIONS(3704), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3704), - [anon_sym_decltype] = ACTIONS(3704), - [anon_sym_explicit] = ACTIONS(3704), - [anon_sym_template] = ACTIONS(3704), - [anon_sym_operator] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_delete] = ACTIONS(3704), - [anon_sym_throw] = ACTIONS(3704), - [anon_sym_namespace] = ACTIONS(3704), - [anon_sym_static_assert] = ACTIONS(3704), - [anon_sym_concept] = ACTIONS(3704), - [anon_sym_co_return] = ACTIONS(3704), - [anon_sym_co_yield] = ACTIONS(3704), - [anon_sym_R_DQUOTE] = ACTIONS(3706), - [anon_sym_LR_DQUOTE] = ACTIONS(3706), - [anon_sym_uR_DQUOTE] = ACTIONS(3706), - [anon_sym_UR_DQUOTE] = ACTIONS(3706), - [anon_sym_u8R_DQUOTE] = ACTIONS(3706), - [anon_sym_co_await] = ACTIONS(3704), - [anon_sym_new] = ACTIONS(3704), - [anon_sym_requires] = ACTIONS(3704), - [anon_sym_CARET_CARET] = ACTIONS(3706), - [anon_sym_LBRACK_COLON] = ACTIONS(3706), - [sym_this] = ACTIONS(3704), + [STATE(524)] = { + [sym_else_clause] = STATE(582), + [ts_builtin_sym_end] = ACTIONS(3410), + [sym_identifier] = ACTIONS(3408), + [aux_sym_preproc_include_token1] = ACTIONS(3408), + [aux_sym_preproc_def_token1] = ACTIONS(3408), + [aux_sym_preproc_if_token1] = ACTIONS(3408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3408), + [sym_preproc_directive] = ACTIONS(3408), + [anon_sym_LPAREN2] = ACTIONS(3410), + [anon_sym_BANG] = ACTIONS(3410), + [anon_sym_TILDE] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(3408), + [anon_sym_PLUS] = ACTIONS(3408), + [anon_sym_STAR] = ACTIONS(3410), + [anon_sym_AMP_AMP] = ACTIONS(3410), + [anon_sym_AMP] = ACTIONS(3408), + [anon_sym_SEMI] = ACTIONS(3410), + [anon_sym___extension__] = ACTIONS(3408), + [anon_sym_typedef] = ACTIONS(3408), + [anon_sym_virtual] = ACTIONS(3408), + [anon_sym_extern] = ACTIONS(3408), + [anon_sym___attribute__] = ACTIONS(3408), + [anon_sym___attribute] = ACTIONS(3408), + [anon_sym_using] = ACTIONS(3408), + [anon_sym_COLON_COLON] = ACTIONS(3410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3410), + [anon_sym___declspec] = ACTIONS(3408), + [anon_sym___based] = ACTIONS(3408), + [anon_sym___cdecl] = ACTIONS(3408), + [anon_sym___clrcall] = ACTIONS(3408), + [anon_sym___stdcall] = ACTIONS(3408), + [anon_sym___fastcall] = ACTIONS(3408), + [anon_sym___thiscall] = ACTIONS(3408), + [anon_sym___vectorcall] = ACTIONS(3408), + [anon_sym_LBRACE] = ACTIONS(3410), + [anon_sym_signed] = ACTIONS(3408), + [anon_sym_unsigned] = ACTIONS(3408), + [anon_sym_long] = ACTIONS(3408), + [anon_sym_short] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3408), + [anon_sym_static] = ACTIONS(3408), + [anon_sym_register] = ACTIONS(3408), + [anon_sym_inline] = ACTIONS(3408), + [anon_sym___inline] = ACTIONS(3408), + [anon_sym___inline__] = ACTIONS(3408), + [anon_sym___forceinline] = ACTIONS(3408), + [anon_sym_thread_local] = ACTIONS(3408), + [anon_sym___thread] = ACTIONS(3408), + [anon_sym_const] = ACTIONS(3408), + [anon_sym_constexpr] = ACTIONS(3408), + [anon_sym_volatile] = ACTIONS(3408), + [anon_sym_restrict] = ACTIONS(3408), + [anon_sym___restrict__] = ACTIONS(3408), + [anon_sym__Atomic] = ACTIONS(3408), + [anon_sym__Noreturn] = ACTIONS(3408), + [anon_sym_noreturn] = ACTIONS(3408), + [anon_sym__Nonnull] = ACTIONS(3408), + [anon_sym_mutable] = ACTIONS(3408), + [anon_sym_constinit] = ACTIONS(3408), + [anon_sym_consteval] = ACTIONS(3408), + [anon_sym_alignas] = ACTIONS(3408), + [anon_sym__Alignas] = ACTIONS(3408), + [sym_primitive_type] = ACTIONS(3408), + [anon_sym_enum] = ACTIONS(3408), + [anon_sym_class] = ACTIONS(3408), + [anon_sym_struct] = ACTIONS(3408), + [anon_sym_union] = ACTIONS(3408), + [anon_sym_if] = ACTIONS(3408), + [anon_sym_else] = ACTIONS(4452), + [anon_sym_switch] = ACTIONS(3408), + [anon_sym_case] = ACTIONS(3408), + [anon_sym_default] = ACTIONS(3408), + [anon_sym_while] = ACTIONS(3408), + [anon_sym_do] = ACTIONS(3408), + [anon_sym_for] = ACTIONS(3408), + [anon_sym_return] = ACTIONS(3408), + [anon_sym_break] = ACTIONS(3408), + [anon_sym_continue] = ACTIONS(3408), + [anon_sym_goto] = ACTIONS(3408), + [anon_sym___try] = ACTIONS(3408), + [anon_sym___leave] = ACTIONS(3408), + [anon_sym_not] = ACTIONS(3408), + [anon_sym_compl] = ACTIONS(3408), + [anon_sym_DASH_DASH] = ACTIONS(3410), + [anon_sym_PLUS_PLUS] = ACTIONS(3410), + [anon_sym_sizeof] = ACTIONS(3408), + [anon_sym___alignof__] = ACTIONS(3408), + [anon_sym___alignof] = ACTIONS(3408), + [anon_sym__alignof] = ACTIONS(3408), + [anon_sym_alignof] = ACTIONS(3408), + [anon_sym__Alignof] = ACTIONS(3408), + [anon_sym_offsetof] = ACTIONS(3408), + [anon_sym__Generic] = ACTIONS(3408), + [anon_sym_typename] = ACTIONS(3408), + [anon_sym_asm] = ACTIONS(3408), + [anon_sym___asm__] = ACTIONS(3408), + [anon_sym___asm] = ACTIONS(3408), + [sym_number_literal] = ACTIONS(3410), + [anon_sym_L_SQUOTE] = ACTIONS(3410), + [anon_sym_u_SQUOTE] = ACTIONS(3410), + [anon_sym_U_SQUOTE] = ACTIONS(3410), + [anon_sym_u8_SQUOTE] = ACTIONS(3410), + [anon_sym_SQUOTE] = ACTIONS(3410), + [anon_sym_L_DQUOTE] = ACTIONS(3410), + [anon_sym_u_DQUOTE] = ACTIONS(3410), + [anon_sym_U_DQUOTE] = ACTIONS(3410), + [anon_sym_u8_DQUOTE] = ACTIONS(3410), + [anon_sym_DQUOTE] = ACTIONS(3410), + [sym_true] = ACTIONS(3408), + [sym_false] = ACTIONS(3408), + [anon_sym_NULL] = ACTIONS(3408), + [anon_sym_nullptr] = ACTIONS(3408), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3408), + [anon_sym_decltype] = ACTIONS(3408), + [anon_sym_explicit] = ACTIONS(3408), + [anon_sym_export] = ACTIONS(3408), + [anon_sym_module] = ACTIONS(3408), + [anon_sym_import] = ACTIONS(3408), + [anon_sym_template] = ACTIONS(3408), + [anon_sym_operator] = ACTIONS(3408), + [anon_sym_try] = ACTIONS(3408), + [anon_sym_delete] = ACTIONS(3408), + [anon_sym_throw] = ACTIONS(3408), + [anon_sym_namespace] = ACTIONS(3408), + [anon_sym_static_assert] = ACTIONS(3408), + [anon_sym_concept] = ACTIONS(3408), + [anon_sym_co_return] = ACTIONS(3408), + [anon_sym_co_yield] = ACTIONS(3408), + [anon_sym_R_DQUOTE] = ACTIONS(3410), + [anon_sym_LR_DQUOTE] = ACTIONS(3410), + [anon_sym_uR_DQUOTE] = ACTIONS(3410), + [anon_sym_UR_DQUOTE] = ACTIONS(3410), + [anon_sym_u8R_DQUOTE] = ACTIONS(3410), + [anon_sym_co_await] = ACTIONS(3408), + [anon_sym_new] = ACTIONS(3408), + [anon_sym_requires] = ACTIONS(3408), + [anon_sym_CARET_CARET] = ACTIONS(3410), + [anon_sym_LBRACK_COLON] = ACTIONS(3410), + [sym_this] = ACTIONS(3408), }, - [STATE(583)] = { - [sym_preproc_def] = STATE(583), - [sym_preproc_function_def] = STATE(583), - [sym_preproc_call] = STATE(583), - [sym_preproc_if_in_field_declaration_list] = STATE(583), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(583), - [sym_type_definition] = STATE(583), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7964), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(583), - [sym_field_declaration] = STATE(583), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(583), - [sym_operator_cast] = STATE(9142), - [sym_inline_method_definition] = STATE(583), - [sym__constructor_specifiers] = STATE(2332), - [sym_operator_cast_definition] = STATE(583), - [sym_operator_cast_declaration] = STATE(583), - [sym_constructor_or_destructor_definition] = STATE(583), - [sym_constructor_or_destructor_declaration] = STATE(583), - [sym_friend_declaration] = STATE(583), - [sym_access_specifier] = STATE(11109), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(583), - [sym_alias_declaration] = STATE(583), - [sym_static_assert_declaration] = STATE(583), - [sym_consteval_block_declaration] = STATE(583), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(583), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9371), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(3736), - [aux_sym_preproc_def_token1] = ACTIONS(4271), - [aux_sym_preproc_if_token1] = ACTIONS(4274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4277), - [sym_preproc_directive] = ACTIONS(4280), - [anon_sym_LPAREN2] = ACTIONS(3753), - [anon_sym_TILDE] = ACTIONS(3756), - [anon_sym_STAR] = ACTIONS(3759), - [anon_sym_AMP_AMP] = ACTIONS(3762), - [anon_sym_AMP] = ACTIONS(3765), - [anon_sym_SEMI] = ACTIONS(4283), - [anon_sym___extension__] = ACTIONS(4286), - [anon_sym_typedef] = ACTIONS(4289), - [anon_sym_virtual] = ACTIONS(3777), - [anon_sym_extern] = ACTIONS(3780), - [anon_sym___attribute__] = ACTIONS(3783), - [anon_sym___attribute] = ACTIONS(3783), - [anon_sym_using] = ACTIONS(4292), - [anon_sym_COLON_COLON] = ACTIONS(3789), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3792), - [anon_sym___declspec] = ACTIONS(3795), - [anon_sym___based] = ACTIONS(3798), - [anon_sym_RBRACE] = ACTIONS(4295), - [anon_sym_signed] = ACTIONS(3801), - [anon_sym_unsigned] = ACTIONS(3801), - [anon_sym_long] = ACTIONS(3801), - [anon_sym_short] = ACTIONS(3801), - [anon_sym_LBRACK] = ACTIONS(3804), - [anon_sym_static] = ACTIONS(3780), - [anon_sym_register] = ACTIONS(3780), - [anon_sym_inline] = ACTIONS(3780), - [anon_sym___inline] = ACTIONS(3780), - [anon_sym___inline__] = ACTIONS(3780), - [anon_sym___forceinline] = ACTIONS(3780), - [anon_sym_thread_local] = ACTIONS(3780), - [anon_sym___thread] = ACTIONS(3780), - [anon_sym_const] = ACTIONS(3807), - [anon_sym_constexpr] = ACTIONS(4297), - [anon_sym_volatile] = ACTIONS(3807), - [anon_sym_restrict] = ACTIONS(3807), - [anon_sym___restrict__] = ACTIONS(3807), - [anon_sym__Atomic] = ACTIONS(3807), - [anon_sym__Noreturn] = ACTIONS(3807), - [anon_sym_noreturn] = ACTIONS(3807), - [anon_sym__Nonnull] = ACTIONS(3807), - [anon_sym_mutable] = ACTIONS(3807), - [anon_sym_constinit] = ACTIONS(3807), - [anon_sym_consteval] = ACTIONS(4300), - [anon_sym_alignas] = ACTIONS(3816), - [anon_sym__Alignas] = ACTIONS(3816), - [sym_primitive_type] = ACTIONS(3819), - [anon_sym_enum] = ACTIONS(3822), - [anon_sym_class] = ACTIONS(3825), - [anon_sym_struct] = ACTIONS(3828), - [anon_sym_union] = ACTIONS(3831), - [anon_sym_typename] = ACTIONS(3834), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3837), - [anon_sym_decltype] = ACTIONS(3840), - [anon_sym_explicit] = ACTIONS(3843), - [anon_sym_private] = ACTIONS(3846), - [anon_sym_template] = ACTIONS(4303), - [anon_sym_operator] = ACTIONS(3852), - [anon_sym_friend] = ACTIONS(4306), - [anon_sym_public] = ACTIONS(3846), - [anon_sym_protected] = ACTIONS(3846), - [anon_sym_static_assert] = ACTIONS(4309), - [anon_sym_LBRACK_COLON] = ACTIONS(3861), + [STATE(525)] = { + [sym_identifier] = ACTIONS(3163), + [aux_sym_preproc_include_token1] = ACTIONS(3163), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [aux_sym_preproc_if_token1] = ACTIONS(3163), + [aux_sym_preproc_if_token2] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), + [sym_preproc_directive] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_extern] = ACTIONS(3163), + [anon_sym___attribute__] = ACTIONS(3163), + [anon_sym___attribute] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3163), + [anon_sym___based] = ACTIONS(3163), + [anon_sym___cdecl] = ACTIONS(3163), + [anon_sym___clrcall] = ACTIONS(3163), + [anon_sym___stdcall] = ACTIONS(3163), + [anon_sym___fastcall] = ACTIONS(3163), + [anon_sym___thiscall] = ACTIONS(3163), + [anon_sym___vectorcall] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym___inline] = ACTIONS(3163), + [anon_sym___inline__] = ACTIONS(3163), + [anon_sym___forceinline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym___thread] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym___restrict__] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym__Noreturn] = ACTIONS(3163), + [anon_sym_noreturn] = ACTIONS(3163), + [anon_sym__Nonnull] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym__Alignas] = ACTIONS(3163), + [sym_primitive_type] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_else] = ACTIONS(3163), + [anon_sym_switch] = ACTIONS(3163), + [anon_sym_case] = ACTIONS(3163), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_goto] = ACTIONS(3163), + [anon_sym___try] = ACTIONS(3163), + [anon_sym___leave] = ACTIONS(3163), + [anon_sym_not] = ACTIONS(3163), + [anon_sym_compl] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3163), + [anon_sym___alignof__] = ACTIONS(3163), + [anon_sym___alignof] = ACTIONS(3163), + [anon_sym__alignof] = ACTIONS(3163), + [anon_sym_alignof] = ACTIONS(3163), + [anon_sym__Alignof] = ACTIONS(3163), + [anon_sym_offsetof] = ACTIONS(3163), + [anon_sym__Generic] = ACTIONS(3163), + [anon_sym_typename] = ACTIONS(3163), + [anon_sym_asm] = ACTIONS(3163), + [anon_sym___asm__] = ACTIONS(3163), + [anon_sym___asm] = ACTIONS(3163), + [sym_number_literal] = ACTIONS(3161), + [anon_sym_L_SQUOTE] = ACTIONS(3161), + [anon_sym_u_SQUOTE] = ACTIONS(3161), + [anon_sym_U_SQUOTE] = ACTIONS(3161), + [anon_sym_u8_SQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_L_DQUOTE] = ACTIONS(3161), + [anon_sym_u_DQUOTE] = ACTIONS(3161), + [anon_sym_U_DQUOTE] = ACTIONS(3161), + [anon_sym_u8_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [anon_sym_NULL] = ACTIONS(3163), + [anon_sym_nullptr] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_export] = ACTIONS(3163), + [anon_sym_module] = ACTIONS(3163), + [anon_sym_import] = ACTIONS(3163), + [anon_sym_template] = ACTIONS(3163), + [anon_sym_operator] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_delete] = ACTIONS(3163), + [anon_sym_throw] = ACTIONS(3163), + [anon_sym_namespace] = ACTIONS(3163), + [anon_sym_static_assert] = ACTIONS(3163), + [anon_sym_concept] = ACTIONS(3163), + [anon_sym_co_return] = ACTIONS(3163), + [anon_sym_co_yield] = ACTIONS(3163), + [anon_sym_catch] = ACTIONS(3163), + [anon_sym_R_DQUOTE] = ACTIONS(3161), + [anon_sym_LR_DQUOTE] = ACTIONS(3161), + [anon_sym_uR_DQUOTE] = ACTIONS(3161), + [anon_sym_UR_DQUOTE] = ACTIONS(3161), + [anon_sym_u8R_DQUOTE] = ACTIONS(3161), + [anon_sym_co_await] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_requires] = ACTIONS(3163), + [anon_sym_CARET_CARET] = ACTIONS(3161), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), + [sym_this] = ACTIONS(3163), }, - [STATE(584)] = { - [sym_identifier] = ACTIONS(3890), - [aux_sym_preproc_include_token1] = ACTIONS(3890), - [aux_sym_preproc_def_token1] = ACTIONS(3890), - [aux_sym_preproc_if_token1] = ACTIONS(3890), - [aux_sym_preproc_if_token2] = ACTIONS(3890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3890), - [sym_preproc_directive] = ACTIONS(3890), - [anon_sym_LPAREN2] = ACTIONS(3892), - [anon_sym_BANG] = ACTIONS(3892), - [anon_sym_TILDE] = ACTIONS(3892), - [anon_sym_DASH] = ACTIONS(3890), - [anon_sym_PLUS] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(3892), - [anon_sym_AMP_AMP] = ACTIONS(3892), - [anon_sym_AMP] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3892), - [anon_sym___extension__] = ACTIONS(3890), - [anon_sym_typedef] = ACTIONS(3890), - [anon_sym_virtual] = ACTIONS(3890), - [anon_sym_extern] = ACTIONS(3890), - [anon_sym___attribute__] = ACTIONS(3890), - [anon_sym___attribute] = ACTIONS(3890), - [anon_sym_using] = ACTIONS(3890), - [anon_sym_COLON_COLON] = ACTIONS(3892), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3892), - [anon_sym___declspec] = ACTIONS(3890), - [anon_sym___based] = ACTIONS(3890), - [anon_sym___cdecl] = ACTIONS(3890), - [anon_sym___clrcall] = ACTIONS(3890), - [anon_sym___stdcall] = ACTIONS(3890), - [anon_sym___fastcall] = ACTIONS(3890), - [anon_sym___thiscall] = ACTIONS(3890), - [anon_sym___vectorcall] = ACTIONS(3890), - [anon_sym_LBRACE] = ACTIONS(3892), - [anon_sym_signed] = ACTIONS(3890), - [anon_sym_unsigned] = ACTIONS(3890), - [anon_sym_long] = ACTIONS(3890), - [anon_sym_short] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_static] = ACTIONS(3890), - [anon_sym_register] = ACTIONS(3890), - [anon_sym_inline] = ACTIONS(3890), - [anon_sym___inline] = ACTIONS(3890), - [anon_sym___inline__] = ACTIONS(3890), - [anon_sym___forceinline] = ACTIONS(3890), - [anon_sym_thread_local] = ACTIONS(3890), - [anon_sym___thread] = ACTIONS(3890), - [anon_sym_const] = ACTIONS(3890), - [anon_sym_constexpr] = ACTIONS(3890), - [anon_sym_volatile] = ACTIONS(3890), - [anon_sym_restrict] = ACTIONS(3890), - [anon_sym___restrict__] = ACTIONS(3890), - [anon_sym__Atomic] = ACTIONS(3890), - [anon_sym__Noreturn] = ACTIONS(3890), - [anon_sym_noreturn] = ACTIONS(3890), - [anon_sym__Nonnull] = ACTIONS(3890), - [anon_sym_mutable] = ACTIONS(3890), - [anon_sym_constinit] = ACTIONS(3890), - [anon_sym_consteval] = ACTIONS(3890), - [anon_sym_alignas] = ACTIONS(3890), - [anon_sym__Alignas] = ACTIONS(3890), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_enum] = ACTIONS(3890), - [anon_sym_class] = ACTIONS(3890), - [anon_sym_struct] = ACTIONS(3890), - [anon_sym_union] = ACTIONS(3890), - [anon_sym_if] = ACTIONS(3890), - [anon_sym_else] = ACTIONS(3890), - [anon_sym_switch] = ACTIONS(3890), - [anon_sym_case] = ACTIONS(3890), - [anon_sym_default] = ACTIONS(3890), - [anon_sym_while] = ACTIONS(3890), - [anon_sym_do] = ACTIONS(3890), - [anon_sym_for] = ACTIONS(3890), - [anon_sym_return] = ACTIONS(3890), - [anon_sym_break] = ACTIONS(3890), - [anon_sym_continue] = ACTIONS(3890), - [anon_sym_goto] = ACTIONS(3890), - [anon_sym___try] = ACTIONS(3890), - [anon_sym___leave] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_compl] = ACTIONS(3890), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym___alignof__] = ACTIONS(3890), - [anon_sym___alignof] = ACTIONS(3890), - [anon_sym__alignof] = ACTIONS(3890), - [anon_sym_alignof] = ACTIONS(3890), - [anon_sym__Alignof] = ACTIONS(3890), - [anon_sym_offsetof] = ACTIONS(3890), - [anon_sym__Generic] = ACTIONS(3890), - [anon_sym_typename] = ACTIONS(3890), - [anon_sym_asm] = ACTIONS(3890), - [anon_sym___asm__] = ACTIONS(3890), - [anon_sym___asm] = ACTIONS(3890), - [sym_number_literal] = ACTIONS(3892), - [anon_sym_L_SQUOTE] = ACTIONS(3892), - [anon_sym_u_SQUOTE] = ACTIONS(3892), - [anon_sym_U_SQUOTE] = ACTIONS(3892), - [anon_sym_u8_SQUOTE] = ACTIONS(3892), - [anon_sym_SQUOTE] = ACTIONS(3892), - [anon_sym_L_DQUOTE] = ACTIONS(3892), - [anon_sym_u_DQUOTE] = ACTIONS(3892), - [anon_sym_U_DQUOTE] = ACTIONS(3892), - [anon_sym_u8_DQUOTE] = ACTIONS(3892), - [anon_sym_DQUOTE] = ACTIONS(3892), - [sym_true] = ACTIONS(3890), - [sym_false] = ACTIONS(3890), - [anon_sym_NULL] = ACTIONS(3890), - [anon_sym_nullptr] = ACTIONS(3890), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3890), - [anon_sym_decltype] = ACTIONS(3890), - [anon_sym_explicit] = ACTIONS(3890), - [anon_sym_template] = ACTIONS(3890), - [anon_sym_operator] = ACTIONS(3890), - [anon_sym_try] = ACTIONS(3890), - [anon_sym_delete] = ACTIONS(3890), - [anon_sym_throw] = ACTIONS(3890), - [anon_sym_namespace] = ACTIONS(3890), - [anon_sym_static_assert] = ACTIONS(3890), - [anon_sym_concept] = ACTIONS(3890), - [anon_sym_co_return] = ACTIONS(3890), - [anon_sym_co_yield] = ACTIONS(3890), - [anon_sym_R_DQUOTE] = ACTIONS(3892), - [anon_sym_LR_DQUOTE] = ACTIONS(3892), - [anon_sym_uR_DQUOTE] = ACTIONS(3892), - [anon_sym_UR_DQUOTE] = ACTIONS(3892), - [anon_sym_u8R_DQUOTE] = ACTIONS(3892), - [anon_sym_co_await] = ACTIONS(3890), - [anon_sym_new] = ACTIONS(3890), - [anon_sym_requires] = ACTIONS(3890), - [anon_sym_CARET_CARET] = ACTIONS(3892), - [anon_sym_LBRACK_COLON] = ACTIONS(3892), - [sym_this] = ACTIONS(3890), + [STATE(526)] = { + [sym_identifier] = ACTIONS(4454), + [aux_sym_preproc_include_token1] = ACTIONS(4454), + [aux_sym_preproc_def_token1] = ACTIONS(4454), + [aux_sym_preproc_if_token1] = ACTIONS(4454), + [aux_sym_preproc_if_token2] = ACTIONS(4454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4454), + [aux_sym_preproc_else_token1] = ACTIONS(4454), + [aux_sym_preproc_elif_token1] = ACTIONS(4454), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4454), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4454), + [sym_preproc_directive] = ACTIONS(4454), + [anon_sym_LPAREN2] = ACTIONS(4456), + [anon_sym_BANG] = ACTIONS(4456), + [anon_sym_TILDE] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4454), + [anon_sym_STAR] = ACTIONS(4456), + [anon_sym_AMP_AMP] = ACTIONS(4456), + [anon_sym_AMP] = ACTIONS(4454), + [anon_sym_SEMI] = ACTIONS(4456), + [anon_sym___extension__] = ACTIONS(4454), + [anon_sym_typedef] = ACTIONS(4454), + [anon_sym_virtual] = ACTIONS(4454), + [anon_sym_extern] = ACTIONS(4454), + [anon_sym___attribute__] = ACTIONS(4454), + [anon_sym___attribute] = ACTIONS(4454), + [anon_sym_using] = ACTIONS(4454), + [anon_sym_COLON_COLON] = ACTIONS(4456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4456), + [anon_sym___declspec] = ACTIONS(4454), + [anon_sym___based] = ACTIONS(4454), + [anon_sym___cdecl] = ACTIONS(4454), + [anon_sym___clrcall] = ACTIONS(4454), + [anon_sym___stdcall] = ACTIONS(4454), + [anon_sym___fastcall] = ACTIONS(4454), + [anon_sym___thiscall] = ACTIONS(4454), + [anon_sym___vectorcall] = ACTIONS(4454), + [anon_sym_LBRACE] = ACTIONS(4456), + [anon_sym_signed] = ACTIONS(4454), + [anon_sym_unsigned] = ACTIONS(4454), + [anon_sym_long] = ACTIONS(4454), + [anon_sym_short] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_static] = ACTIONS(4454), + [anon_sym_register] = ACTIONS(4454), + [anon_sym_inline] = ACTIONS(4454), + [anon_sym___inline] = ACTIONS(4454), + [anon_sym___inline__] = ACTIONS(4454), + [anon_sym___forceinline] = ACTIONS(4454), + [anon_sym_thread_local] = ACTIONS(4454), + [anon_sym___thread] = ACTIONS(4454), + [anon_sym_const] = ACTIONS(4454), + [anon_sym_constexpr] = ACTIONS(4454), + [anon_sym_volatile] = ACTIONS(4454), + [anon_sym_restrict] = ACTIONS(4454), + [anon_sym___restrict__] = ACTIONS(4454), + [anon_sym__Atomic] = ACTIONS(4454), + [anon_sym__Noreturn] = ACTIONS(4454), + [anon_sym_noreturn] = ACTIONS(4454), + [anon_sym__Nonnull] = ACTIONS(4454), + [anon_sym_mutable] = ACTIONS(4454), + [anon_sym_constinit] = ACTIONS(4454), + [anon_sym_consteval] = ACTIONS(4454), + [anon_sym_alignas] = ACTIONS(4454), + [anon_sym__Alignas] = ACTIONS(4454), + [sym_primitive_type] = ACTIONS(4454), + [anon_sym_enum] = ACTIONS(4454), + [anon_sym_class] = ACTIONS(4454), + [anon_sym_struct] = ACTIONS(4454), + [anon_sym_union] = ACTIONS(4454), + [anon_sym_if] = ACTIONS(4454), + [anon_sym_switch] = ACTIONS(4454), + [anon_sym_case] = ACTIONS(4454), + [anon_sym_default] = ACTIONS(4454), + [anon_sym_while] = ACTIONS(4454), + [anon_sym_do] = ACTIONS(4454), + [anon_sym_for] = ACTIONS(4454), + [anon_sym_return] = ACTIONS(4454), + [anon_sym_break] = ACTIONS(4454), + [anon_sym_continue] = ACTIONS(4454), + [anon_sym_goto] = ACTIONS(4454), + [anon_sym_not] = ACTIONS(4454), + [anon_sym_compl] = ACTIONS(4454), + [anon_sym_DASH_DASH] = ACTIONS(4456), + [anon_sym_PLUS_PLUS] = ACTIONS(4456), + [anon_sym_sizeof] = ACTIONS(4454), + [anon_sym___alignof__] = ACTIONS(4454), + [anon_sym___alignof] = ACTIONS(4454), + [anon_sym__alignof] = ACTIONS(4454), + [anon_sym_alignof] = ACTIONS(4454), + [anon_sym__Alignof] = ACTIONS(4454), + [anon_sym_offsetof] = ACTIONS(4454), + [anon_sym__Generic] = ACTIONS(4454), + [anon_sym_typename] = ACTIONS(4454), + [anon_sym_asm] = ACTIONS(4454), + [anon_sym___asm__] = ACTIONS(4454), + [anon_sym___asm] = ACTIONS(4454), + [sym_number_literal] = ACTIONS(4456), + [anon_sym_L_SQUOTE] = ACTIONS(4456), + [anon_sym_u_SQUOTE] = ACTIONS(4456), + [anon_sym_U_SQUOTE] = ACTIONS(4456), + [anon_sym_u8_SQUOTE] = ACTIONS(4456), + [anon_sym_SQUOTE] = ACTIONS(4456), + [anon_sym_L_DQUOTE] = ACTIONS(4456), + [anon_sym_u_DQUOTE] = ACTIONS(4456), + [anon_sym_U_DQUOTE] = ACTIONS(4456), + [anon_sym_u8_DQUOTE] = ACTIONS(4456), + [anon_sym_DQUOTE] = ACTIONS(4456), + [sym_true] = ACTIONS(4454), + [sym_false] = ACTIONS(4454), + [anon_sym_NULL] = ACTIONS(4454), + [anon_sym_nullptr] = ACTIONS(4454), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4454), + [anon_sym_decltype] = ACTIONS(4454), + [anon_sym_explicit] = ACTIONS(4454), + [anon_sym_export] = ACTIONS(4454), + [anon_sym_module] = ACTIONS(4454), + [anon_sym_import] = ACTIONS(4454), + [anon_sym_template] = ACTIONS(4454), + [anon_sym_operator] = ACTIONS(4454), + [anon_sym_try] = ACTIONS(4454), + [anon_sym_delete] = ACTIONS(4454), + [anon_sym_throw] = ACTIONS(4454), + [anon_sym_namespace] = ACTIONS(4454), + [anon_sym_static_assert] = ACTIONS(4454), + [anon_sym_concept] = ACTIONS(4454), + [anon_sym_co_return] = ACTIONS(4454), + [anon_sym_co_yield] = ACTIONS(4454), + [anon_sym_R_DQUOTE] = ACTIONS(4456), + [anon_sym_LR_DQUOTE] = ACTIONS(4456), + [anon_sym_uR_DQUOTE] = ACTIONS(4456), + [anon_sym_UR_DQUOTE] = ACTIONS(4456), + [anon_sym_u8R_DQUOTE] = ACTIONS(4456), + [anon_sym_co_await] = ACTIONS(4454), + [anon_sym_new] = ACTIONS(4454), + [anon_sym_requires] = ACTIONS(4454), + [anon_sym_CARET_CARET] = ACTIONS(4456), + [anon_sym_LBRACK_COLON] = ACTIONS(4456), + [sym_this] = ACTIONS(4454), }, - [STATE(585)] = { - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_include_token1] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token2] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym___attribute] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym___cdecl] = ACTIONS(3630), - [anon_sym___clrcall] = ACTIONS(3630), - [anon_sym___stdcall] = ACTIONS(3630), - [anon_sym___fastcall] = ACTIONS(3630), - [anon_sym___thiscall] = ACTIONS(3630), - [anon_sym___vectorcall] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym__Nonnull] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym__Alignas] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_else] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [anon_sym_case] = ACTIONS(3630), - [anon_sym_default] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [anon_sym_goto] = ACTIONS(3630), - [anon_sym___try] = ACTIONS(3630), - [anon_sym___leave] = ACTIONS(3630), - [anon_sym_not] = ACTIONS(3630), - [anon_sym_compl] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3632), - [anon_sym_PLUS_PLUS] = ACTIONS(3632), - [anon_sym_sizeof] = ACTIONS(3630), - [anon_sym___alignof__] = ACTIONS(3630), - [anon_sym___alignof] = ACTIONS(3630), - [anon_sym__alignof] = ACTIONS(3630), - [anon_sym_alignof] = ACTIONS(3630), - [anon_sym__Alignof] = ACTIONS(3630), - [anon_sym_offsetof] = ACTIONS(3630), - [anon_sym__Generic] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [anon_sym_asm] = ACTIONS(3630), - [anon_sym___asm__] = ACTIONS(3630), - [anon_sym___asm] = ACTIONS(3630), - [sym_number_literal] = ACTIONS(3632), - [anon_sym_L_SQUOTE] = ACTIONS(3632), - [anon_sym_u_SQUOTE] = ACTIONS(3632), - [anon_sym_U_SQUOTE] = ACTIONS(3632), - [anon_sym_u8_SQUOTE] = ACTIONS(3632), - [anon_sym_SQUOTE] = ACTIONS(3632), - [anon_sym_L_DQUOTE] = ACTIONS(3632), - [anon_sym_u_DQUOTE] = ACTIONS(3632), - [anon_sym_U_DQUOTE] = ACTIONS(3632), - [anon_sym_u8_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE] = ACTIONS(3632), - [sym_true] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [anon_sym_NULL] = ACTIONS(3630), - [anon_sym_nullptr] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_delete] = ACTIONS(3630), - [anon_sym_throw] = ACTIONS(3630), - [anon_sym_namespace] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), - [anon_sym_concept] = ACTIONS(3630), - [anon_sym_co_return] = ACTIONS(3630), - [anon_sym_co_yield] = ACTIONS(3630), - [anon_sym_R_DQUOTE] = ACTIONS(3632), - [anon_sym_LR_DQUOTE] = ACTIONS(3632), - [anon_sym_uR_DQUOTE] = ACTIONS(3632), - [anon_sym_UR_DQUOTE] = ACTIONS(3632), - [anon_sym_u8R_DQUOTE] = ACTIONS(3632), - [anon_sym_co_await] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_requires] = ACTIONS(3630), - [anon_sym_CARET_CARET] = ACTIONS(3632), - [anon_sym_LBRACK_COLON] = ACTIONS(3632), - [sym_this] = ACTIONS(3630), + [STATE(527)] = { + [sym_identifier] = ACTIONS(4458), + [aux_sym_preproc_include_token1] = ACTIONS(4458), + [aux_sym_preproc_def_token1] = ACTIONS(4458), + [aux_sym_preproc_if_token1] = ACTIONS(4458), + [aux_sym_preproc_if_token2] = ACTIONS(4458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4458), + [aux_sym_preproc_else_token1] = ACTIONS(4458), + [aux_sym_preproc_elif_token1] = ACTIONS(4458), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4458), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4458), + [sym_preproc_directive] = ACTIONS(4458), + [anon_sym_LPAREN2] = ACTIONS(4460), + [anon_sym_BANG] = ACTIONS(4460), + [anon_sym_TILDE] = ACTIONS(4460), + [anon_sym_DASH] = ACTIONS(4458), + [anon_sym_PLUS] = ACTIONS(4458), + [anon_sym_STAR] = ACTIONS(4460), + [anon_sym_AMP_AMP] = ACTIONS(4460), + [anon_sym_AMP] = ACTIONS(4458), + [anon_sym_SEMI] = ACTIONS(4460), + [anon_sym___extension__] = ACTIONS(4458), + [anon_sym_typedef] = ACTIONS(4458), + [anon_sym_virtual] = ACTIONS(4458), + [anon_sym_extern] = ACTIONS(4458), + [anon_sym___attribute__] = ACTIONS(4458), + [anon_sym___attribute] = ACTIONS(4458), + [anon_sym_using] = ACTIONS(4458), + [anon_sym_COLON_COLON] = ACTIONS(4460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4460), + [anon_sym___declspec] = ACTIONS(4458), + [anon_sym___based] = ACTIONS(4458), + [anon_sym___cdecl] = ACTIONS(4458), + [anon_sym___clrcall] = ACTIONS(4458), + [anon_sym___stdcall] = ACTIONS(4458), + [anon_sym___fastcall] = ACTIONS(4458), + [anon_sym___thiscall] = ACTIONS(4458), + [anon_sym___vectorcall] = ACTIONS(4458), + [anon_sym_LBRACE] = ACTIONS(4460), + [anon_sym_signed] = ACTIONS(4458), + [anon_sym_unsigned] = ACTIONS(4458), + [anon_sym_long] = ACTIONS(4458), + [anon_sym_short] = ACTIONS(4458), + [anon_sym_LBRACK] = ACTIONS(4458), + [anon_sym_static] = ACTIONS(4458), + [anon_sym_register] = ACTIONS(4458), + [anon_sym_inline] = ACTIONS(4458), + [anon_sym___inline] = ACTIONS(4458), + [anon_sym___inline__] = ACTIONS(4458), + [anon_sym___forceinline] = ACTIONS(4458), + [anon_sym_thread_local] = ACTIONS(4458), + [anon_sym___thread] = ACTIONS(4458), + [anon_sym_const] = ACTIONS(4458), + [anon_sym_constexpr] = ACTIONS(4458), + [anon_sym_volatile] = ACTIONS(4458), + [anon_sym_restrict] = ACTIONS(4458), + [anon_sym___restrict__] = ACTIONS(4458), + [anon_sym__Atomic] = ACTIONS(4458), + [anon_sym__Noreturn] = ACTIONS(4458), + [anon_sym_noreturn] = ACTIONS(4458), + [anon_sym__Nonnull] = ACTIONS(4458), + [anon_sym_mutable] = ACTIONS(4458), + [anon_sym_constinit] = ACTIONS(4458), + [anon_sym_consteval] = ACTIONS(4458), + [anon_sym_alignas] = ACTIONS(4458), + [anon_sym__Alignas] = ACTIONS(4458), + [sym_primitive_type] = ACTIONS(4458), + [anon_sym_enum] = ACTIONS(4458), + [anon_sym_class] = ACTIONS(4458), + [anon_sym_struct] = ACTIONS(4458), + [anon_sym_union] = ACTIONS(4458), + [anon_sym_if] = ACTIONS(4458), + [anon_sym_switch] = ACTIONS(4458), + [anon_sym_case] = ACTIONS(4458), + [anon_sym_default] = ACTIONS(4458), + [anon_sym_while] = ACTIONS(4458), + [anon_sym_do] = ACTIONS(4458), + [anon_sym_for] = ACTIONS(4458), + [anon_sym_return] = ACTIONS(4458), + [anon_sym_break] = ACTIONS(4458), + [anon_sym_continue] = ACTIONS(4458), + [anon_sym_goto] = ACTIONS(4458), + [anon_sym_not] = ACTIONS(4458), + [anon_sym_compl] = ACTIONS(4458), + [anon_sym_DASH_DASH] = ACTIONS(4460), + [anon_sym_PLUS_PLUS] = ACTIONS(4460), + [anon_sym_sizeof] = ACTIONS(4458), + [anon_sym___alignof__] = ACTIONS(4458), + [anon_sym___alignof] = ACTIONS(4458), + [anon_sym__alignof] = ACTIONS(4458), + [anon_sym_alignof] = ACTIONS(4458), + [anon_sym__Alignof] = ACTIONS(4458), + [anon_sym_offsetof] = ACTIONS(4458), + [anon_sym__Generic] = ACTIONS(4458), + [anon_sym_typename] = ACTIONS(4458), + [anon_sym_asm] = ACTIONS(4458), + [anon_sym___asm__] = ACTIONS(4458), + [anon_sym___asm] = ACTIONS(4458), + [sym_number_literal] = ACTIONS(4460), + [anon_sym_L_SQUOTE] = ACTIONS(4460), + [anon_sym_u_SQUOTE] = ACTIONS(4460), + [anon_sym_U_SQUOTE] = ACTIONS(4460), + [anon_sym_u8_SQUOTE] = ACTIONS(4460), + [anon_sym_SQUOTE] = ACTIONS(4460), + [anon_sym_L_DQUOTE] = ACTIONS(4460), + [anon_sym_u_DQUOTE] = ACTIONS(4460), + [anon_sym_U_DQUOTE] = ACTIONS(4460), + [anon_sym_u8_DQUOTE] = ACTIONS(4460), + [anon_sym_DQUOTE] = ACTIONS(4460), + [sym_true] = ACTIONS(4458), + [sym_false] = ACTIONS(4458), + [anon_sym_NULL] = ACTIONS(4458), + [anon_sym_nullptr] = ACTIONS(4458), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4458), + [anon_sym_decltype] = ACTIONS(4458), + [anon_sym_explicit] = ACTIONS(4458), + [anon_sym_export] = ACTIONS(4458), + [anon_sym_module] = ACTIONS(4458), + [anon_sym_import] = ACTIONS(4458), + [anon_sym_template] = ACTIONS(4458), + [anon_sym_operator] = ACTIONS(4458), + [anon_sym_try] = ACTIONS(4458), + [anon_sym_delete] = ACTIONS(4458), + [anon_sym_throw] = ACTIONS(4458), + [anon_sym_namespace] = ACTIONS(4458), + [anon_sym_static_assert] = ACTIONS(4458), + [anon_sym_concept] = ACTIONS(4458), + [anon_sym_co_return] = ACTIONS(4458), + [anon_sym_co_yield] = ACTIONS(4458), + [anon_sym_R_DQUOTE] = ACTIONS(4460), + [anon_sym_LR_DQUOTE] = ACTIONS(4460), + [anon_sym_uR_DQUOTE] = ACTIONS(4460), + [anon_sym_UR_DQUOTE] = ACTIONS(4460), + [anon_sym_u8R_DQUOTE] = ACTIONS(4460), + [anon_sym_co_await] = ACTIONS(4458), + [anon_sym_new] = ACTIONS(4458), + [anon_sym_requires] = ACTIONS(4458), + [anon_sym_CARET_CARET] = ACTIONS(4460), + [anon_sym_LBRACK_COLON] = ACTIONS(4460), + [sym_this] = ACTIONS(4458), }, - [STATE(586)] = { - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_include_token1] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token2] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym___attribute] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym___cdecl] = ACTIONS(3630), - [anon_sym___clrcall] = ACTIONS(3630), - [anon_sym___stdcall] = ACTIONS(3630), - [anon_sym___fastcall] = ACTIONS(3630), - [anon_sym___thiscall] = ACTIONS(3630), - [anon_sym___vectorcall] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym__Nonnull] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym__Alignas] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_else] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [anon_sym_case] = ACTIONS(3630), - [anon_sym_default] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [anon_sym_goto] = ACTIONS(3630), - [anon_sym___try] = ACTIONS(3630), - [anon_sym___leave] = ACTIONS(3630), - [anon_sym_not] = ACTIONS(3630), - [anon_sym_compl] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3632), - [anon_sym_PLUS_PLUS] = ACTIONS(3632), - [anon_sym_sizeof] = ACTIONS(3630), - [anon_sym___alignof__] = ACTIONS(3630), - [anon_sym___alignof] = ACTIONS(3630), - [anon_sym__alignof] = ACTIONS(3630), - [anon_sym_alignof] = ACTIONS(3630), - [anon_sym__Alignof] = ACTIONS(3630), - [anon_sym_offsetof] = ACTIONS(3630), - [anon_sym__Generic] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [anon_sym_asm] = ACTIONS(3630), - [anon_sym___asm__] = ACTIONS(3630), - [anon_sym___asm] = ACTIONS(3630), - [sym_number_literal] = ACTIONS(3632), - [anon_sym_L_SQUOTE] = ACTIONS(3632), - [anon_sym_u_SQUOTE] = ACTIONS(3632), - [anon_sym_U_SQUOTE] = ACTIONS(3632), - [anon_sym_u8_SQUOTE] = ACTIONS(3632), - [anon_sym_SQUOTE] = ACTIONS(3632), - [anon_sym_L_DQUOTE] = ACTIONS(3632), - [anon_sym_u_DQUOTE] = ACTIONS(3632), - [anon_sym_U_DQUOTE] = ACTIONS(3632), - [anon_sym_u8_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE] = ACTIONS(3632), - [sym_true] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [anon_sym_NULL] = ACTIONS(3630), - [anon_sym_nullptr] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_delete] = ACTIONS(3630), - [anon_sym_throw] = ACTIONS(3630), - [anon_sym_namespace] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), - [anon_sym_concept] = ACTIONS(3630), - [anon_sym_co_return] = ACTIONS(3630), - [anon_sym_co_yield] = ACTIONS(3630), - [anon_sym_R_DQUOTE] = ACTIONS(3632), - [anon_sym_LR_DQUOTE] = ACTIONS(3632), - [anon_sym_uR_DQUOTE] = ACTIONS(3632), - [anon_sym_UR_DQUOTE] = ACTIONS(3632), - [anon_sym_u8R_DQUOTE] = ACTIONS(3632), - [anon_sym_co_await] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_requires] = ACTIONS(3630), - [anon_sym_CARET_CARET] = ACTIONS(3632), - [anon_sym_LBRACK_COLON] = ACTIONS(3632), - [sym_this] = ACTIONS(3630), + [STATE(528)] = { + [sym_identifier] = ACTIONS(4462), + [aux_sym_preproc_include_token1] = ACTIONS(4462), + [aux_sym_preproc_def_token1] = ACTIONS(4462), + [aux_sym_preproc_if_token1] = ACTIONS(4462), + [aux_sym_preproc_if_token2] = ACTIONS(4462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4462), + [aux_sym_preproc_else_token1] = ACTIONS(4462), + [aux_sym_preproc_elif_token1] = ACTIONS(4462), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4462), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4462), + [sym_preproc_directive] = ACTIONS(4462), + [anon_sym_LPAREN2] = ACTIONS(4464), + [anon_sym_BANG] = ACTIONS(4464), + [anon_sym_TILDE] = ACTIONS(4464), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_AMP] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4464), + [anon_sym___extension__] = ACTIONS(4462), + [anon_sym_typedef] = ACTIONS(4462), + [anon_sym_virtual] = ACTIONS(4462), + [anon_sym_extern] = ACTIONS(4462), + [anon_sym___attribute__] = ACTIONS(4462), + [anon_sym___attribute] = ACTIONS(4462), + [anon_sym_using] = ACTIONS(4462), + [anon_sym_COLON_COLON] = ACTIONS(4464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4464), + [anon_sym___declspec] = ACTIONS(4462), + [anon_sym___based] = ACTIONS(4462), + [anon_sym___cdecl] = ACTIONS(4462), + [anon_sym___clrcall] = ACTIONS(4462), + [anon_sym___stdcall] = ACTIONS(4462), + [anon_sym___fastcall] = ACTIONS(4462), + [anon_sym___thiscall] = ACTIONS(4462), + [anon_sym___vectorcall] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_signed] = ACTIONS(4462), + [anon_sym_unsigned] = ACTIONS(4462), + [anon_sym_long] = ACTIONS(4462), + [anon_sym_short] = ACTIONS(4462), + [anon_sym_LBRACK] = ACTIONS(4462), + [anon_sym_static] = ACTIONS(4462), + [anon_sym_register] = ACTIONS(4462), + [anon_sym_inline] = ACTIONS(4462), + [anon_sym___inline] = ACTIONS(4462), + [anon_sym___inline__] = ACTIONS(4462), + [anon_sym___forceinline] = ACTIONS(4462), + [anon_sym_thread_local] = ACTIONS(4462), + [anon_sym___thread] = ACTIONS(4462), + [anon_sym_const] = ACTIONS(4462), + [anon_sym_constexpr] = ACTIONS(4462), + [anon_sym_volatile] = ACTIONS(4462), + [anon_sym_restrict] = ACTIONS(4462), + [anon_sym___restrict__] = ACTIONS(4462), + [anon_sym__Atomic] = ACTIONS(4462), + [anon_sym__Noreturn] = ACTIONS(4462), + [anon_sym_noreturn] = ACTIONS(4462), + [anon_sym__Nonnull] = ACTIONS(4462), + [anon_sym_mutable] = ACTIONS(4462), + [anon_sym_constinit] = ACTIONS(4462), + [anon_sym_consteval] = ACTIONS(4462), + [anon_sym_alignas] = ACTIONS(4462), + [anon_sym__Alignas] = ACTIONS(4462), + [sym_primitive_type] = ACTIONS(4462), + [anon_sym_enum] = ACTIONS(4462), + [anon_sym_class] = ACTIONS(4462), + [anon_sym_struct] = ACTIONS(4462), + [anon_sym_union] = ACTIONS(4462), + [anon_sym_if] = ACTIONS(4462), + [anon_sym_switch] = ACTIONS(4462), + [anon_sym_case] = ACTIONS(4462), + [anon_sym_default] = ACTIONS(4462), + [anon_sym_while] = ACTIONS(4462), + [anon_sym_do] = ACTIONS(4462), + [anon_sym_for] = ACTIONS(4462), + [anon_sym_return] = ACTIONS(4462), + [anon_sym_break] = ACTIONS(4462), + [anon_sym_continue] = ACTIONS(4462), + [anon_sym_goto] = ACTIONS(4462), + [anon_sym_not] = ACTIONS(4462), + [anon_sym_compl] = ACTIONS(4462), + [anon_sym_DASH_DASH] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4464), + [anon_sym_sizeof] = ACTIONS(4462), + [anon_sym___alignof__] = ACTIONS(4462), + [anon_sym___alignof] = ACTIONS(4462), + [anon_sym__alignof] = ACTIONS(4462), + [anon_sym_alignof] = ACTIONS(4462), + [anon_sym__Alignof] = ACTIONS(4462), + [anon_sym_offsetof] = ACTIONS(4462), + [anon_sym__Generic] = ACTIONS(4462), + [anon_sym_typename] = ACTIONS(4462), + [anon_sym_asm] = ACTIONS(4462), + [anon_sym___asm__] = ACTIONS(4462), + [anon_sym___asm] = ACTIONS(4462), + [sym_number_literal] = ACTIONS(4464), + [anon_sym_L_SQUOTE] = ACTIONS(4464), + [anon_sym_u_SQUOTE] = ACTIONS(4464), + [anon_sym_U_SQUOTE] = ACTIONS(4464), + [anon_sym_u8_SQUOTE] = ACTIONS(4464), + [anon_sym_SQUOTE] = ACTIONS(4464), + [anon_sym_L_DQUOTE] = ACTIONS(4464), + [anon_sym_u_DQUOTE] = ACTIONS(4464), + [anon_sym_U_DQUOTE] = ACTIONS(4464), + [anon_sym_u8_DQUOTE] = ACTIONS(4464), + [anon_sym_DQUOTE] = ACTIONS(4464), + [sym_true] = ACTIONS(4462), + [sym_false] = ACTIONS(4462), + [anon_sym_NULL] = ACTIONS(4462), + [anon_sym_nullptr] = ACTIONS(4462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4462), + [anon_sym_decltype] = ACTIONS(4462), + [anon_sym_explicit] = ACTIONS(4462), + [anon_sym_export] = ACTIONS(4462), + [anon_sym_module] = ACTIONS(4462), + [anon_sym_import] = ACTIONS(4462), + [anon_sym_template] = ACTIONS(4462), + [anon_sym_operator] = ACTIONS(4462), + [anon_sym_try] = ACTIONS(4462), + [anon_sym_delete] = ACTIONS(4462), + [anon_sym_throw] = ACTIONS(4462), + [anon_sym_namespace] = ACTIONS(4462), + [anon_sym_static_assert] = ACTIONS(4462), + [anon_sym_concept] = ACTIONS(4462), + [anon_sym_co_return] = ACTIONS(4462), + [anon_sym_co_yield] = ACTIONS(4462), + [anon_sym_R_DQUOTE] = ACTIONS(4464), + [anon_sym_LR_DQUOTE] = ACTIONS(4464), + [anon_sym_uR_DQUOTE] = ACTIONS(4464), + [anon_sym_UR_DQUOTE] = ACTIONS(4464), + [anon_sym_u8R_DQUOTE] = ACTIONS(4464), + [anon_sym_co_await] = ACTIONS(4462), + [anon_sym_new] = ACTIONS(4462), + [anon_sym_requires] = ACTIONS(4462), + [anon_sym_CARET_CARET] = ACTIONS(4464), + [anon_sym_LBRACK_COLON] = ACTIONS(4464), + [sym_this] = ACTIONS(4462), }, - [STATE(587)] = { - [sym_identifier] = ACTIONS(3676), - [aux_sym_preproc_include_token1] = ACTIONS(3676), - [aux_sym_preproc_def_token1] = ACTIONS(3676), - [aux_sym_preproc_if_token1] = ACTIONS(3676), - [aux_sym_preproc_if_token2] = ACTIONS(3676), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3676), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3676), - [sym_preproc_directive] = ACTIONS(3676), - [anon_sym_LPAREN2] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_TILDE] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_STAR] = ACTIONS(3678), - [anon_sym_AMP_AMP] = ACTIONS(3678), - [anon_sym_AMP] = ACTIONS(3676), - [anon_sym_SEMI] = ACTIONS(3678), - [anon_sym___extension__] = ACTIONS(3676), - [anon_sym_typedef] = ACTIONS(3676), - [anon_sym_virtual] = ACTIONS(3676), - [anon_sym_extern] = ACTIONS(3676), - [anon_sym___attribute__] = ACTIONS(3676), - [anon_sym___attribute] = ACTIONS(3676), - [anon_sym_using] = ACTIONS(3676), - [anon_sym_COLON_COLON] = ACTIONS(3678), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3678), - [anon_sym___declspec] = ACTIONS(3676), - [anon_sym___based] = ACTIONS(3676), - [anon_sym___cdecl] = ACTIONS(3676), - [anon_sym___clrcall] = ACTIONS(3676), - [anon_sym___stdcall] = ACTIONS(3676), - [anon_sym___fastcall] = ACTIONS(3676), - [anon_sym___thiscall] = ACTIONS(3676), - [anon_sym___vectorcall] = ACTIONS(3676), - [anon_sym_LBRACE] = ACTIONS(3678), - [anon_sym_signed] = ACTIONS(3676), - [anon_sym_unsigned] = ACTIONS(3676), - [anon_sym_long] = ACTIONS(3676), - [anon_sym_short] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3676), - [anon_sym_static] = ACTIONS(3676), - [anon_sym_register] = ACTIONS(3676), - [anon_sym_inline] = ACTIONS(3676), - [anon_sym___inline] = ACTIONS(3676), - [anon_sym___inline__] = ACTIONS(3676), - [anon_sym___forceinline] = ACTIONS(3676), - [anon_sym_thread_local] = ACTIONS(3676), - [anon_sym___thread] = ACTIONS(3676), - [anon_sym_const] = ACTIONS(3676), - [anon_sym_constexpr] = ACTIONS(3676), - [anon_sym_volatile] = ACTIONS(3676), - [anon_sym_restrict] = ACTIONS(3676), - [anon_sym___restrict__] = ACTIONS(3676), - [anon_sym__Atomic] = ACTIONS(3676), - [anon_sym__Noreturn] = ACTIONS(3676), - [anon_sym_noreturn] = ACTIONS(3676), - [anon_sym__Nonnull] = ACTIONS(3676), - [anon_sym_mutable] = ACTIONS(3676), - [anon_sym_constinit] = ACTIONS(3676), - [anon_sym_consteval] = ACTIONS(3676), - [anon_sym_alignas] = ACTIONS(3676), - [anon_sym__Alignas] = ACTIONS(3676), - [sym_primitive_type] = ACTIONS(3676), - [anon_sym_enum] = ACTIONS(3676), - [anon_sym_class] = ACTIONS(3676), - [anon_sym_struct] = ACTIONS(3676), - [anon_sym_union] = ACTIONS(3676), - [anon_sym_if] = ACTIONS(3676), - [anon_sym_else] = ACTIONS(3676), - [anon_sym_switch] = ACTIONS(3676), - [anon_sym_case] = ACTIONS(3676), - [anon_sym_default] = ACTIONS(3676), - [anon_sym_while] = ACTIONS(3676), - [anon_sym_do] = ACTIONS(3676), - [anon_sym_for] = ACTIONS(3676), - [anon_sym_return] = ACTIONS(3676), - [anon_sym_break] = ACTIONS(3676), - [anon_sym_continue] = ACTIONS(3676), - [anon_sym_goto] = ACTIONS(3676), - [anon_sym___try] = ACTIONS(3676), - [anon_sym___leave] = ACTIONS(3676), - [anon_sym_not] = ACTIONS(3676), - [anon_sym_compl] = ACTIONS(3676), - [anon_sym_DASH_DASH] = ACTIONS(3678), - [anon_sym_PLUS_PLUS] = ACTIONS(3678), - [anon_sym_sizeof] = ACTIONS(3676), - [anon_sym___alignof__] = ACTIONS(3676), - [anon_sym___alignof] = ACTIONS(3676), - [anon_sym__alignof] = ACTIONS(3676), - [anon_sym_alignof] = ACTIONS(3676), - [anon_sym__Alignof] = ACTIONS(3676), - [anon_sym_offsetof] = ACTIONS(3676), - [anon_sym__Generic] = ACTIONS(3676), - [anon_sym_typename] = ACTIONS(3676), - [anon_sym_asm] = ACTIONS(3676), - [anon_sym___asm__] = ACTIONS(3676), - [anon_sym___asm] = ACTIONS(3676), - [sym_number_literal] = ACTIONS(3678), - [anon_sym_L_SQUOTE] = ACTIONS(3678), - [anon_sym_u_SQUOTE] = ACTIONS(3678), - [anon_sym_U_SQUOTE] = ACTIONS(3678), - [anon_sym_u8_SQUOTE] = ACTIONS(3678), - [anon_sym_SQUOTE] = ACTIONS(3678), - [anon_sym_L_DQUOTE] = ACTIONS(3678), - [anon_sym_u_DQUOTE] = ACTIONS(3678), - [anon_sym_U_DQUOTE] = ACTIONS(3678), - [anon_sym_u8_DQUOTE] = ACTIONS(3678), - [anon_sym_DQUOTE] = ACTIONS(3678), - [sym_true] = ACTIONS(3676), - [sym_false] = ACTIONS(3676), - [anon_sym_NULL] = ACTIONS(3676), - [anon_sym_nullptr] = ACTIONS(3676), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3676), - [anon_sym_decltype] = ACTIONS(3676), - [anon_sym_explicit] = ACTIONS(3676), - [anon_sym_template] = ACTIONS(3676), - [anon_sym_operator] = ACTIONS(3676), - [anon_sym_try] = ACTIONS(3676), - [anon_sym_delete] = ACTIONS(3676), - [anon_sym_throw] = ACTIONS(3676), - [anon_sym_namespace] = ACTIONS(3676), - [anon_sym_static_assert] = ACTIONS(3676), - [anon_sym_concept] = ACTIONS(3676), - [anon_sym_co_return] = ACTIONS(3676), - [anon_sym_co_yield] = ACTIONS(3676), - [anon_sym_R_DQUOTE] = ACTIONS(3678), - [anon_sym_LR_DQUOTE] = ACTIONS(3678), - [anon_sym_uR_DQUOTE] = ACTIONS(3678), - [anon_sym_UR_DQUOTE] = ACTIONS(3678), - [anon_sym_u8R_DQUOTE] = ACTIONS(3678), - [anon_sym_co_await] = ACTIONS(3676), - [anon_sym_new] = ACTIONS(3676), - [anon_sym_requires] = ACTIONS(3676), - [anon_sym_CARET_CARET] = ACTIONS(3678), - [anon_sym_LBRACK_COLON] = ACTIONS(3678), - [sym_this] = ACTIONS(3676), + [STATE(529)] = { + [sym_identifier] = ACTIONS(4466), + [aux_sym_preproc_include_token1] = ACTIONS(4466), + [aux_sym_preproc_def_token1] = ACTIONS(4466), + [aux_sym_preproc_if_token1] = ACTIONS(4466), + [aux_sym_preproc_if_token2] = ACTIONS(4466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4466), + [aux_sym_preproc_else_token1] = ACTIONS(4466), + [aux_sym_preproc_elif_token1] = ACTIONS(4466), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4466), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4466), + [sym_preproc_directive] = ACTIONS(4466), + [anon_sym_LPAREN2] = ACTIONS(4468), + [anon_sym_BANG] = ACTIONS(4468), + [anon_sym_TILDE] = ACTIONS(4468), + [anon_sym_DASH] = ACTIONS(4466), + [anon_sym_PLUS] = ACTIONS(4466), + [anon_sym_STAR] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_AMP] = ACTIONS(4466), + [anon_sym_SEMI] = ACTIONS(4468), + [anon_sym___extension__] = ACTIONS(4466), + [anon_sym_typedef] = ACTIONS(4466), + [anon_sym_virtual] = ACTIONS(4466), + [anon_sym_extern] = ACTIONS(4466), + [anon_sym___attribute__] = ACTIONS(4466), + [anon_sym___attribute] = ACTIONS(4466), + [anon_sym_using] = ACTIONS(4466), + [anon_sym_COLON_COLON] = ACTIONS(4468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4468), + [anon_sym___declspec] = ACTIONS(4466), + [anon_sym___based] = ACTIONS(4466), + [anon_sym___cdecl] = ACTIONS(4466), + [anon_sym___clrcall] = ACTIONS(4466), + [anon_sym___stdcall] = ACTIONS(4466), + [anon_sym___fastcall] = ACTIONS(4466), + [anon_sym___thiscall] = ACTIONS(4466), + [anon_sym___vectorcall] = ACTIONS(4466), + [anon_sym_LBRACE] = ACTIONS(4468), + [anon_sym_signed] = ACTIONS(4466), + [anon_sym_unsigned] = ACTIONS(4466), + [anon_sym_long] = ACTIONS(4466), + [anon_sym_short] = ACTIONS(4466), + [anon_sym_LBRACK] = ACTIONS(4466), + [anon_sym_static] = ACTIONS(4466), + [anon_sym_register] = ACTIONS(4466), + [anon_sym_inline] = ACTIONS(4466), + [anon_sym___inline] = ACTIONS(4466), + [anon_sym___inline__] = ACTIONS(4466), + [anon_sym___forceinline] = ACTIONS(4466), + [anon_sym_thread_local] = ACTIONS(4466), + [anon_sym___thread] = ACTIONS(4466), + [anon_sym_const] = ACTIONS(4466), + [anon_sym_constexpr] = ACTIONS(4466), + [anon_sym_volatile] = ACTIONS(4466), + [anon_sym_restrict] = ACTIONS(4466), + [anon_sym___restrict__] = ACTIONS(4466), + [anon_sym__Atomic] = ACTIONS(4466), + [anon_sym__Noreturn] = ACTIONS(4466), + [anon_sym_noreturn] = ACTIONS(4466), + [anon_sym__Nonnull] = ACTIONS(4466), + [anon_sym_mutable] = ACTIONS(4466), + [anon_sym_constinit] = ACTIONS(4466), + [anon_sym_consteval] = ACTIONS(4466), + [anon_sym_alignas] = ACTIONS(4466), + [anon_sym__Alignas] = ACTIONS(4466), + [sym_primitive_type] = ACTIONS(4466), + [anon_sym_enum] = ACTIONS(4466), + [anon_sym_class] = ACTIONS(4466), + [anon_sym_struct] = ACTIONS(4466), + [anon_sym_union] = ACTIONS(4466), + [anon_sym_if] = ACTIONS(4466), + [anon_sym_switch] = ACTIONS(4466), + [anon_sym_case] = ACTIONS(4466), + [anon_sym_default] = ACTIONS(4466), + [anon_sym_while] = ACTIONS(4466), + [anon_sym_do] = ACTIONS(4466), + [anon_sym_for] = ACTIONS(4466), + [anon_sym_return] = ACTIONS(4466), + [anon_sym_break] = ACTIONS(4466), + [anon_sym_continue] = ACTIONS(4466), + [anon_sym_goto] = ACTIONS(4466), + [anon_sym_not] = ACTIONS(4466), + [anon_sym_compl] = ACTIONS(4466), + [anon_sym_DASH_DASH] = ACTIONS(4468), + [anon_sym_PLUS_PLUS] = ACTIONS(4468), + [anon_sym_sizeof] = ACTIONS(4466), + [anon_sym___alignof__] = ACTIONS(4466), + [anon_sym___alignof] = ACTIONS(4466), + [anon_sym__alignof] = ACTIONS(4466), + [anon_sym_alignof] = ACTIONS(4466), + [anon_sym__Alignof] = ACTIONS(4466), + [anon_sym_offsetof] = ACTIONS(4466), + [anon_sym__Generic] = ACTIONS(4466), + [anon_sym_typename] = ACTIONS(4466), + [anon_sym_asm] = ACTIONS(4466), + [anon_sym___asm__] = ACTIONS(4466), + [anon_sym___asm] = ACTIONS(4466), + [sym_number_literal] = ACTIONS(4468), + [anon_sym_L_SQUOTE] = ACTIONS(4468), + [anon_sym_u_SQUOTE] = ACTIONS(4468), + [anon_sym_U_SQUOTE] = ACTIONS(4468), + [anon_sym_u8_SQUOTE] = ACTIONS(4468), + [anon_sym_SQUOTE] = ACTIONS(4468), + [anon_sym_L_DQUOTE] = ACTIONS(4468), + [anon_sym_u_DQUOTE] = ACTIONS(4468), + [anon_sym_U_DQUOTE] = ACTIONS(4468), + [anon_sym_u8_DQUOTE] = ACTIONS(4468), + [anon_sym_DQUOTE] = ACTIONS(4468), + [sym_true] = ACTIONS(4466), + [sym_false] = ACTIONS(4466), + [anon_sym_NULL] = ACTIONS(4466), + [anon_sym_nullptr] = ACTIONS(4466), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4466), + [anon_sym_decltype] = ACTIONS(4466), + [anon_sym_explicit] = ACTIONS(4466), + [anon_sym_export] = ACTIONS(4466), + [anon_sym_module] = ACTIONS(4466), + [anon_sym_import] = ACTIONS(4466), + [anon_sym_template] = ACTIONS(4466), + [anon_sym_operator] = ACTIONS(4466), + [anon_sym_try] = ACTIONS(4466), + [anon_sym_delete] = ACTIONS(4466), + [anon_sym_throw] = ACTIONS(4466), + [anon_sym_namespace] = ACTIONS(4466), + [anon_sym_static_assert] = ACTIONS(4466), + [anon_sym_concept] = ACTIONS(4466), + [anon_sym_co_return] = ACTIONS(4466), + [anon_sym_co_yield] = ACTIONS(4466), + [anon_sym_R_DQUOTE] = ACTIONS(4468), + [anon_sym_LR_DQUOTE] = ACTIONS(4468), + [anon_sym_uR_DQUOTE] = ACTIONS(4468), + [anon_sym_UR_DQUOTE] = ACTIONS(4468), + [anon_sym_u8R_DQUOTE] = ACTIONS(4468), + [anon_sym_co_await] = ACTIONS(4466), + [anon_sym_new] = ACTIONS(4466), + [anon_sym_requires] = ACTIONS(4466), + [anon_sym_CARET_CARET] = ACTIONS(4468), + [anon_sym_LBRACK_COLON] = ACTIONS(4468), + [sym_this] = ACTIONS(4466), }, - [STATE(588)] = { - [ts_builtin_sym_end] = ACTIONS(4040), - [sym_identifier] = ACTIONS(4038), - [aux_sym_preproc_include_token1] = ACTIONS(4038), - [aux_sym_preproc_def_token1] = ACTIONS(4038), - [aux_sym_preproc_if_token1] = ACTIONS(4038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4038), - [sym_preproc_directive] = ACTIONS(4038), - [anon_sym_LPAREN2] = ACTIONS(4040), - [anon_sym_BANG] = ACTIONS(4040), - [anon_sym_TILDE] = ACTIONS(4040), - [anon_sym_DASH] = ACTIONS(4038), - [anon_sym_PLUS] = ACTIONS(4038), - [anon_sym_STAR] = ACTIONS(4040), - [anon_sym_AMP_AMP] = ACTIONS(4040), - [anon_sym_AMP] = ACTIONS(4038), - [anon_sym_SEMI] = ACTIONS(4040), - [anon_sym___extension__] = ACTIONS(4038), - [anon_sym_typedef] = ACTIONS(4038), - [anon_sym_virtual] = ACTIONS(4038), - [anon_sym_extern] = ACTIONS(4038), - [anon_sym___attribute__] = ACTIONS(4038), - [anon_sym___attribute] = ACTIONS(4038), - [anon_sym_using] = ACTIONS(4038), - [anon_sym_COLON_COLON] = ACTIONS(4040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4040), - [anon_sym___declspec] = ACTIONS(4038), - [anon_sym___based] = ACTIONS(4038), - [anon_sym___cdecl] = ACTIONS(4038), - [anon_sym___clrcall] = ACTIONS(4038), - [anon_sym___stdcall] = ACTIONS(4038), - [anon_sym___fastcall] = ACTIONS(4038), - [anon_sym___thiscall] = ACTIONS(4038), - [anon_sym___vectorcall] = ACTIONS(4038), - [anon_sym_LBRACE] = ACTIONS(4040), - [anon_sym_signed] = ACTIONS(4038), - [anon_sym_unsigned] = ACTIONS(4038), - [anon_sym_long] = ACTIONS(4038), - [anon_sym_short] = ACTIONS(4038), - [anon_sym_LBRACK] = ACTIONS(4038), - [anon_sym_static] = ACTIONS(4038), - [anon_sym_register] = ACTIONS(4038), - [anon_sym_inline] = ACTIONS(4038), - [anon_sym___inline] = ACTIONS(4038), - [anon_sym___inline__] = ACTIONS(4038), - [anon_sym___forceinline] = ACTIONS(4038), - [anon_sym_thread_local] = ACTIONS(4038), - [anon_sym___thread] = ACTIONS(4038), - [anon_sym_const] = ACTIONS(4038), - [anon_sym_constexpr] = ACTIONS(4038), - [anon_sym_volatile] = ACTIONS(4038), - [anon_sym_restrict] = ACTIONS(4038), - [anon_sym___restrict__] = ACTIONS(4038), - [anon_sym__Atomic] = ACTIONS(4038), - [anon_sym__Noreturn] = ACTIONS(4038), - [anon_sym_noreturn] = ACTIONS(4038), - [anon_sym__Nonnull] = ACTIONS(4038), - [anon_sym_mutable] = ACTIONS(4038), - [anon_sym_constinit] = ACTIONS(4038), - [anon_sym_consteval] = ACTIONS(4038), - [anon_sym_alignas] = ACTIONS(4038), - [anon_sym__Alignas] = ACTIONS(4038), - [sym_primitive_type] = ACTIONS(4038), - [anon_sym_enum] = ACTIONS(4038), - [anon_sym_class] = ACTIONS(4038), - [anon_sym_struct] = ACTIONS(4038), - [anon_sym_union] = ACTIONS(4038), - [anon_sym_if] = ACTIONS(4038), - [anon_sym_switch] = ACTIONS(4038), - [anon_sym_case] = ACTIONS(4038), - [anon_sym_default] = ACTIONS(4038), - [anon_sym_while] = ACTIONS(4038), - [anon_sym_do] = ACTIONS(4038), - [anon_sym_for] = ACTIONS(4038), - [anon_sym_return] = ACTIONS(4038), - [anon_sym_break] = ACTIONS(4038), - [anon_sym_continue] = ACTIONS(4038), - [anon_sym_goto] = ACTIONS(4038), - [anon_sym_not] = ACTIONS(4038), - [anon_sym_compl] = ACTIONS(4038), - [anon_sym_DASH_DASH] = ACTIONS(4040), - [anon_sym_PLUS_PLUS] = ACTIONS(4040), - [anon_sym_sizeof] = ACTIONS(4038), - [anon_sym___alignof__] = ACTIONS(4038), - [anon_sym___alignof] = ACTIONS(4038), - [anon_sym__alignof] = ACTIONS(4038), - [anon_sym_alignof] = ACTIONS(4038), - [anon_sym__Alignof] = ACTIONS(4038), - [anon_sym_offsetof] = ACTIONS(4038), - [anon_sym__Generic] = ACTIONS(4038), - [anon_sym_typename] = ACTIONS(4038), - [anon_sym_asm] = ACTIONS(4038), - [anon_sym___asm__] = ACTIONS(4038), - [anon_sym___asm] = ACTIONS(4038), - [sym_number_literal] = ACTIONS(4040), - [anon_sym_L_SQUOTE] = ACTIONS(4040), - [anon_sym_u_SQUOTE] = ACTIONS(4040), - [anon_sym_U_SQUOTE] = ACTIONS(4040), - [anon_sym_u8_SQUOTE] = ACTIONS(4040), - [anon_sym_SQUOTE] = ACTIONS(4040), - [anon_sym_L_DQUOTE] = ACTIONS(4040), - [anon_sym_u_DQUOTE] = ACTIONS(4040), - [anon_sym_U_DQUOTE] = ACTIONS(4040), - [anon_sym_u8_DQUOTE] = ACTIONS(4040), - [anon_sym_DQUOTE] = ACTIONS(4040), - [sym_true] = ACTIONS(4038), - [sym_false] = ACTIONS(4038), - [anon_sym_NULL] = ACTIONS(4038), - [anon_sym_nullptr] = ACTIONS(4038), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4038), - [anon_sym_decltype] = ACTIONS(4038), - [anon_sym_explicit] = ACTIONS(4038), - [anon_sym_export] = ACTIONS(4038), - [anon_sym_module] = ACTIONS(4038), - [anon_sym_import] = ACTIONS(4038), - [anon_sym_template] = ACTIONS(4038), - [anon_sym_operator] = ACTIONS(4038), - [anon_sym_try] = ACTIONS(4038), - [anon_sym_delete] = ACTIONS(4038), - [anon_sym_throw] = ACTIONS(4038), - [anon_sym_namespace] = ACTIONS(4038), - [anon_sym_static_assert] = ACTIONS(4038), - [anon_sym_concept] = ACTIONS(4038), - [anon_sym_co_return] = ACTIONS(4038), - [anon_sym_co_yield] = ACTIONS(4038), - [anon_sym_R_DQUOTE] = ACTIONS(4040), - [anon_sym_LR_DQUOTE] = ACTIONS(4040), - [anon_sym_uR_DQUOTE] = ACTIONS(4040), - [anon_sym_UR_DQUOTE] = ACTIONS(4040), - [anon_sym_u8R_DQUOTE] = ACTIONS(4040), - [anon_sym_co_await] = ACTIONS(4038), - [anon_sym_new] = ACTIONS(4038), - [anon_sym_requires] = ACTIONS(4038), - [anon_sym_CARET_CARET] = ACTIONS(4040), - [anon_sym_LBRACK_COLON] = ACTIONS(4040), - [sym_this] = ACTIONS(4038), + [STATE(530)] = { + [sym_else_clause] = STATE(584), + [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___extension__] = ACTIONS(3368), + [anon_sym_typedef] = ACTIONS(3368), + [anon_sym_virtual] = ACTIONS(3368), + [anon_sym_extern] = ACTIONS(3368), + [anon_sym___attribute__] = ACTIONS(3368), + [anon_sym___attribute] = ACTIONS(3368), + [anon_sym_using] = 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_signed] = ACTIONS(3368), + [anon_sym_unsigned] = ACTIONS(3368), + [anon_sym_long] = ACTIONS(3368), + [anon_sym_short] = ACTIONS(3368), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_register] = ACTIONS(3368), + [anon_sym_inline] = ACTIONS(3368), + [anon_sym___inline] = ACTIONS(3368), + [anon_sym___inline__] = ACTIONS(3368), + [anon_sym___forceinline] = ACTIONS(3368), + [anon_sym_thread_local] = ACTIONS(3368), + [anon_sym___thread] = 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__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3368), + [anon_sym__Alignas] = 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_else] = ACTIONS(4470), + [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___try] = ACTIONS(3368), + [anon_sym___leave] = 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___alignof__] = ACTIONS(3368), + [anon_sym___alignof] = ACTIONS(3368), + [anon_sym__alignof] = ACTIONS(3368), + [anon_sym_alignof] = ACTIONS(3368), + [anon_sym__Alignof] = ACTIONS(3368), + [anon_sym_offsetof] = ACTIONS(3368), + [anon_sym__Generic] = ACTIONS(3368), + [anon_sym_typename] = ACTIONS(3368), + [anon_sym_asm] = 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_explicit] = ACTIONS(3368), + [anon_sym_export] = ACTIONS(3368), + [anon_sym_module] = ACTIONS(3368), + [anon_sym_import] = 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_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), + [anon_sym_CARET_CARET] = ACTIONS(3370), + [anon_sym_LBRACK_COLON] = ACTIONS(3370), + [sym_this] = ACTIONS(3368), }, - [STATE(589)] = { - [ts_builtin_sym_end] = ACTIONS(4312), - [sym_identifier] = ACTIONS(4314), - [aux_sym_preproc_include_token1] = ACTIONS(4314), - [aux_sym_preproc_def_token1] = ACTIONS(4314), - [aux_sym_preproc_if_token1] = ACTIONS(4314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4314), - [sym_preproc_directive] = ACTIONS(4314), - [anon_sym_LPAREN2] = ACTIONS(4312), - [anon_sym_BANG] = ACTIONS(4312), - [anon_sym_TILDE] = ACTIONS(4312), - [anon_sym_DASH] = ACTIONS(4314), - [anon_sym_PLUS] = ACTIONS(4314), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_AMP_AMP] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4314), - [anon_sym_SEMI] = ACTIONS(4312), - [anon_sym___extension__] = ACTIONS(4314), - [anon_sym_typedef] = ACTIONS(4314), - [anon_sym_virtual] = ACTIONS(4314), - [anon_sym_extern] = ACTIONS(4314), - [anon_sym___attribute__] = ACTIONS(4314), - [anon_sym___attribute] = ACTIONS(4314), - [anon_sym_using] = ACTIONS(4314), - [anon_sym_COLON_COLON] = ACTIONS(4312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4312), - [anon_sym___declspec] = ACTIONS(4314), - [anon_sym___based] = ACTIONS(4314), - [anon_sym___cdecl] = ACTIONS(4314), - [anon_sym___clrcall] = ACTIONS(4314), - [anon_sym___stdcall] = ACTIONS(4314), - [anon_sym___fastcall] = ACTIONS(4314), - [anon_sym___thiscall] = ACTIONS(4314), - [anon_sym___vectorcall] = ACTIONS(4314), - [anon_sym_LBRACE] = ACTIONS(4312), - [anon_sym_signed] = ACTIONS(4314), - [anon_sym_unsigned] = ACTIONS(4314), - [anon_sym_long] = ACTIONS(4314), - [anon_sym_short] = ACTIONS(4314), - [anon_sym_LBRACK] = ACTIONS(4314), - [anon_sym_static] = ACTIONS(4314), - [anon_sym_register] = ACTIONS(4314), - [anon_sym_inline] = ACTIONS(4314), - [anon_sym___inline] = ACTIONS(4314), - [anon_sym___inline__] = ACTIONS(4314), - [anon_sym___forceinline] = ACTIONS(4314), - [anon_sym_thread_local] = ACTIONS(4314), - [anon_sym___thread] = ACTIONS(4314), - [anon_sym_const] = ACTIONS(4314), - [anon_sym_constexpr] = ACTIONS(4314), - [anon_sym_volatile] = ACTIONS(4314), - [anon_sym_restrict] = ACTIONS(4314), - [anon_sym___restrict__] = ACTIONS(4314), - [anon_sym__Atomic] = ACTIONS(4314), - [anon_sym__Noreturn] = ACTIONS(4314), - [anon_sym_noreturn] = ACTIONS(4314), - [anon_sym__Nonnull] = ACTIONS(4314), - [anon_sym_mutable] = ACTIONS(4314), - [anon_sym_constinit] = ACTIONS(4314), - [anon_sym_consteval] = ACTIONS(4314), - [anon_sym_alignas] = ACTIONS(4314), - [anon_sym__Alignas] = ACTIONS(4314), - [sym_primitive_type] = ACTIONS(4314), - [anon_sym_enum] = ACTIONS(4314), - [anon_sym_class] = ACTIONS(4314), - [anon_sym_struct] = ACTIONS(4314), - [anon_sym_union] = ACTIONS(4314), - [anon_sym_if] = ACTIONS(4314), - [anon_sym_switch] = ACTIONS(4314), - [anon_sym_case] = ACTIONS(4314), - [anon_sym_default] = ACTIONS(4314), - [anon_sym_while] = ACTIONS(4314), - [anon_sym_do] = ACTIONS(4314), - [anon_sym_for] = ACTIONS(4314), - [anon_sym_return] = ACTIONS(4314), - [anon_sym_break] = ACTIONS(4314), - [anon_sym_continue] = ACTIONS(4314), - [anon_sym_goto] = ACTIONS(4314), - [anon_sym_not] = ACTIONS(4314), - [anon_sym_compl] = ACTIONS(4314), - [anon_sym_DASH_DASH] = ACTIONS(4312), - [anon_sym_PLUS_PLUS] = ACTIONS(4312), - [anon_sym_sizeof] = ACTIONS(4314), - [anon_sym___alignof__] = ACTIONS(4314), - [anon_sym___alignof] = ACTIONS(4314), - [anon_sym__alignof] = ACTIONS(4314), - [anon_sym_alignof] = ACTIONS(4314), - [anon_sym__Alignof] = ACTIONS(4314), - [anon_sym_offsetof] = ACTIONS(4314), - [anon_sym__Generic] = ACTIONS(4314), - [anon_sym_typename] = ACTIONS(4314), - [anon_sym_asm] = ACTIONS(4314), - [anon_sym___asm__] = ACTIONS(4314), - [anon_sym___asm] = ACTIONS(4314), - [sym_number_literal] = ACTIONS(4312), - [anon_sym_L_SQUOTE] = ACTIONS(4312), - [anon_sym_u_SQUOTE] = ACTIONS(4312), - [anon_sym_U_SQUOTE] = ACTIONS(4312), - [anon_sym_u8_SQUOTE] = ACTIONS(4312), - [anon_sym_SQUOTE] = ACTIONS(4312), - [anon_sym_L_DQUOTE] = ACTIONS(4312), - [anon_sym_u_DQUOTE] = ACTIONS(4312), - [anon_sym_U_DQUOTE] = ACTIONS(4312), - [anon_sym_u8_DQUOTE] = ACTIONS(4312), - [anon_sym_DQUOTE] = ACTIONS(4312), - [sym_true] = ACTIONS(4314), - [sym_false] = ACTIONS(4314), - [anon_sym_NULL] = ACTIONS(4314), - [anon_sym_nullptr] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4314), - [anon_sym_decltype] = ACTIONS(4314), - [anon_sym_explicit] = ACTIONS(4314), - [anon_sym_export] = ACTIONS(4314), - [anon_sym_module] = ACTIONS(4314), - [anon_sym_import] = ACTIONS(4314), - [anon_sym_template] = ACTIONS(4314), - [anon_sym_operator] = ACTIONS(4314), - [anon_sym_try] = ACTIONS(4314), - [anon_sym_delete] = ACTIONS(4314), - [anon_sym_throw] = ACTIONS(4314), - [anon_sym_namespace] = ACTIONS(4314), - [anon_sym_static_assert] = ACTIONS(4314), - [anon_sym_concept] = ACTIONS(4314), - [anon_sym_co_return] = ACTIONS(4314), - [anon_sym_co_yield] = ACTIONS(4314), - [anon_sym_R_DQUOTE] = ACTIONS(4312), - [anon_sym_LR_DQUOTE] = ACTIONS(4312), - [anon_sym_uR_DQUOTE] = ACTIONS(4312), - [anon_sym_UR_DQUOTE] = ACTIONS(4312), - [anon_sym_u8R_DQUOTE] = ACTIONS(4312), - [anon_sym_co_await] = ACTIONS(4314), - [anon_sym_new] = ACTIONS(4314), - [anon_sym_requires] = ACTIONS(4314), - [anon_sym_CARET_CARET] = ACTIONS(4312), - [anon_sym_LBRACK_COLON] = ACTIONS(4312), - [sym_this] = ACTIONS(4314), + [STATE(531)] = { + [sym_catch_clause] = STATE(521), + [aux_sym_constructor_try_statement_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(3182), + [aux_sym_preproc_include_token1] = ACTIONS(3182), + [aux_sym_preproc_def_token1] = ACTIONS(3182), + [aux_sym_preproc_if_token1] = ACTIONS(3182), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3182), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3182), + [sym_preproc_directive] = ACTIONS(3182), + [anon_sym_LPAREN2] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3184), + [anon_sym_AMP_AMP] = ACTIONS(3184), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym___extension__] = ACTIONS(3182), + [anon_sym_typedef] = ACTIONS(3182), + [anon_sym_virtual] = ACTIONS(3182), + [anon_sym_extern] = ACTIONS(3182), + [anon_sym___attribute__] = ACTIONS(3182), + [anon_sym___attribute] = ACTIONS(3182), + [anon_sym_using] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3184), + [anon_sym___declspec] = ACTIONS(3182), + [anon_sym___based] = ACTIONS(3182), + [anon_sym___cdecl] = ACTIONS(3182), + [anon_sym___clrcall] = ACTIONS(3182), + [anon_sym___stdcall] = ACTIONS(3182), + [anon_sym___fastcall] = ACTIONS(3182), + [anon_sym___thiscall] = ACTIONS(3182), + [anon_sym___vectorcall] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_signed] = ACTIONS(3182), + [anon_sym_unsigned] = ACTIONS(3182), + [anon_sym_long] = ACTIONS(3182), + [anon_sym_short] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_register] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym___inline] = ACTIONS(3182), + [anon_sym___inline__] = ACTIONS(3182), + [anon_sym___forceinline] = ACTIONS(3182), + [anon_sym_thread_local] = ACTIONS(3182), + [anon_sym___thread] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_constexpr] = ACTIONS(3182), + [anon_sym_volatile] = ACTIONS(3182), + [anon_sym_restrict] = ACTIONS(3182), + [anon_sym___restrict__] = ACTIONS(3182), + [anon_sym__Atomic] = ACTIONS(3182), + [anon_sym__Noreturn] = ACTIONS(3182), + [anon_sym_noreturn] = ACTIONS(3182), + [anon_sym__Nonnull] = ACTIONS(3182), + [anon_sym_mutable] = ACTIONS(3182), + [anon_sym_constinit] = ACTIONS(3182), + [anon_sym_consteval] = ACTIONS(3182), + [anon_sym_alignas] = ACTIONS(3182), + [anon_sym__Alignas] = ACTIONS(3182), + [sym_primitive_type] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), + [anon_sym_class] = ACTIONS(3182), + [anon_sym_struct] = ACTIONS(3182), + [anon_sym_union] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_switch] = ACTIONS(3182), + [anon_sym_case] = ACTIONS(3182), + [anon_sym_default] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_do] = ACTIONS(3182), + [anon_sym_for] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_goto] = ACTIONS(3182), + [anon_sym___try] = ACTIONS(3182), + [anon_sym___leave] = ACTIONS(3182), + [anon_sym_not] = ACTIONS(3182), + [anon_sym_compl] = ACTIONS(3182), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_sizeof] = ACTIONS(3182), + [anon_sym___alignof__] = ACTIONS(3182), + [anon_sym___alignof] = ACTIONS(3182), + [anon_sym__alignof] = ACTIONS(3182), + [anon_sym_alignof] = ACTIONS(3182), + [anon_sym__Alignof] = ACTIONS(3182), + [anon_sym_offsetof] = ACTIONS(3182), + [anon_sym__Generic] = ACTIONS(3182), + [anon_sym_typename] = ACTIONS(3182), + [anon_sym_asm] = ACTIONS(3182), + [anon_sym___asm__] = ACTIONS(3182), + [anon_sym___asm] = ACTIONS(3182), + [sym_number_literal] = ACTIONS(3184), + [anon_sym_L_SQUOTE] = ACTIONS(3184), + [anon_sym_u_SQUOTE] = ACTIONS(3184), + [anon_sym_U_SQUOTE] = ACTIONS(3184), + [anon_sym_u8_SQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [anon_sym_L_DQUOTE] = ACTIONS(3184), + [anon_sym_u_DQUOTE] = ACTIONS(3184), + [anon_sym_U_DQUOTE] = ACTIONS(3184), + [anon_sym_u8_DQUOTE] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3182), + [anon_sym_decltype] = ACTIONS(3182), + [anon_sym_explicit] = ACTIONS(3182), + [anon_sym_export] = ACTIONS(3182), + [anon_sym_import] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_delete] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_namespace] = ACTIONS(3182), + [anon_sym_static_assert] = ACTIONS(3182), + [anon_sym_concept] = ACTIONS(3182), + [anon_sym_co_return] = ACTIONS(3182), + [anon_sym_co_yield] = ACTIONS(3182), + [anon_sym_catch] = ACTIONS(4447), + [anon_sym_R_DQUOTE] = ACTIONS(3184), + [anon_sym_LR_DQUOTE] = ACTIONS(3184), + [anon_sym_uR_DQUOTE] = ACTIONS(3184), + [anon_sym_UR_DQUOTE] = ACTIONS(3184), + [anon_sym_u8R_DQUOTE] = ACTIONS(3184), + [anon_sym_co_await] = ACTIONS(3182), + [anon_sym_new] = ACTIONS(3182), + [anon_sym_requires] = ACTIONS(3182), + [anon_sym_CARET_CARET] = ACTIONS(3184), + [anon_sym_LBRACK_COLON] = ACTIONS(3184), + [sym_this] = ACTIONS(3182), }, - [STATE(590)] = { - [sym_identifier] = ACTIONS(2905), - [aux_sym_preproc_include_token1] = ACTIONS(2905), - [aux_sym_preproc_def_token1] = ACTIONS(2905), - [aux_sym_preproc_if_token1] = ACTIONS(2905), - [aux_sym_preproc_if_token2] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2905), - [sym_preproc_directive] = ACTIONS(2905), - [anon_sym_LPAREN2] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2910), - [anon_sym_AMP_AMP] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2910), - [anon_sym___extension__] = ACTIONS(2905), - [anon_sym_typedef] = ACTIONS(2905), - [anon_sym_virtual] = ACTIONS(2905), - [anon_sym_extern] = ACTIONS(2905), - [anon_sym___attribute__] = ACTIONS(2905), - [anon_sym___attribute] = ACTIONS(2905), - [anon_sym_using] = ACTIONS(2905), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2910), - [anon_sym___declspec] = ACTIONS(2905), - [anon_sym___based] = ACTIONS(2905), - [anon_sym___cdecl] = ACTIONS(2905), - [anon_sym___clrcall] = ACTIONS(2905), - [anon_sym___stdcall] = ACTIONS(2905), - [anon_sym___fastcall] = ACTIONS(2905), - [anon_sym___thiscall] = ACTIONS(2905), - [anon_sym___vectorcall] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2910), - [anon_sym_signed] = ACTIONS(2905), - [anon_sym_unsigned] = ACTIONS(2905), - [anon_sym_long] = ACTIONS(2905), - [anon_sym_short] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_register] = ACTIONS(2905), - [anon_sym_inline] = ACTIONS(2905), - [anon_sym___inline] = ACTIONS(2905), - [anon_sym___inline__] = ACTIONS(2905), - [anon_sym___forceinline] = ACTIONS(2905), - [anon_sym_thread_local] = ACTIONS(2905), - [anon_sym___thread] = ACTIONS(2905), - [anon_sym_const] = ACTIONS(2905), - [anon_sym_constexpr] = ACTIONS(2905), - [anon_sym_volatile] = ACTIONS(2905), - [anon_sym_restrict] = ACTIONS(2905), - [anon_sym___restrict__] = ACTIONS(2905), - [anon_sym__Atomic] = ACTIONS(2905), - [anon_sym__Noreturn] = ACTIONS(2905), - [anon_sym_noreturn] = ACTIONS(2905), - [anon_sym__Nonnull] = ACTIONS(2905), - [anon_sym_mutable] = ACTIONS(2905), - [anon_sym_constinit] = ACTIONS(2905), - [anon_sym_consteval] = ACTIONS(2905), - [anon_sym_alignas] = ACTIONS(2905), - [anon_sym__Alignas] = ACTIONS(2905), - [sym_primitive_type] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2905), - [anon_sym_class] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2905), - [anon_sym_union] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2905), - [anon_sym_else] = ACTIONS(2905), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2905), - [anon_sym_default] = ACTIONS(2905), - [anon_sym_while] = ACTIONS(2905), - [anon_sym_do] = ACTIONS(2905), - [anon_sym_for] = ACTIONS(2905), - [anon_sym_return] = ACTIONS(2905), - [anon_sym_break] = ACTIONS(2905), - [anon_sym_continue] = ACTIONS(2905), - [anon_sym_goto] = ACTIONS(2905), - [anon_sym___try] = ACTIONS(2905), - [anon_sym___leave] = ACTIONS(2905), - [anon_sym_not] = ACTIONS(2905), - [anon_sym_compl] = ACTIONS(2905), - [anon_sym_DASH_DASH] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2910), - [anon_sym_sizeof] = ACTIONS(2905), - [anon_sym___alignof__] = ACTIONS(2905), - [anon_sym___alignof] = ACTIONS(2905), - [anon_sym__alignof] = ACTIONS(2905), - [anon_sym_alignof] = ACTIONS(2905), - [anon_sym__Alignof] = ACTIONS(2905), - [anon_sym_offsetof] = ACTIONS(2905), - [anon_sym__Generic] = ACTIONS(2905), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_asm] = ACTIONS(2905), - [anon_sym___asm__] = ACTIONS(2905), - [anon_sym___asm] = ACTIONS(2905), - [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(2905), - [sym_false] = ACTIONS(2905), - [anon_sym_NULL] = ACTIONS(2905), - [anon_sym_nullptr] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2905), - [anon_sym_decltype] = ACTIONS(2905), - [anon_sym_explicit] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(2905), - [anon_sym_operator] = ACTIONS(2905), - [anon_sym_try] = ACTIONS(2905), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_throw] = ACTIONS(2905), - [anon_sym_namespace] = ACTIONS(2905), - [anon_sym_static_assert] = ACTIONS(2905), - [anon_sym_concept] = ACTIONS(2905), - [anon_sym_co_return] = ACTIONS(2905), - [anon_sym_co_yield] = ACTIONS(2905), - [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(2905), - [anon_sym_new] = ACTIONS(2905), - [anon_sym_requires] = ACTIONS(2905), - [anon_sym_CARET_CARET] = ACTIONS(2910), - [anon_sym_LBRACK_COLON] = ACTIONS(2910), - [sym_this] = ACTIONS(2905), + [STATE(532)] = { + [sym_identifier] = ACTIONS(4472), + [aux_sym_preproc_include_token1] = ACTIONS(4472), + [aux_sym_preproc_def_token1] = ACTIONS(4472), + [aux_sym_preproc_if_token1] = ACTIONS(4472), + [aux_sym_preproc_if_token2] = ACTIONS(4472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4472), + [aux_sym_preproc_else_token1] = ACTIONS(4472), + [aux_sym_preproc_elif_token1] = ACTIONS(4472), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4472), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4472), + [sym_preproc_directive] = ACTIONS(4472), + [anon_sym_LPAREN2] = ACTIONS(4474), + [anon_sym_BANG] = ACTIONS(4474), + [anon_sym_TILDE] = ACTIONS(4474), + [anon_sym_DASH] = ACTIONS(4472), + [anon_sym_PLUS] = ACTIONS(4472), + [anon_sym_STAR] = ACTIONS(4474), + [anon_sym_AMP_AMP] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4472), + [anon_sym_SEMI] = ACTIONS(4474), + [anon_sym___extension__] = ACTIONS(4472), + [anon_sym_typedef] = ACTIONS(4472), + [anon_sym_virtual] = ACTIONS(4472), + [anon_sym_extern] = ACTIONS(4472), + [anon_sym___attribute__] = ACTIONS(4472), + [anon_sym___attribute] = ACTIONS(4472), + [anon_sym_using] = ACTIONS(4472), + [anon_sym_COLON_COLON] = ACTIONS(4474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4474), + [anon_sym___declspec] = ACTIONS(4472), + [anon_sym___based] = ACTIONS(4472), + [anon_sym___cdecl] = ACTIONS(4472), + [anon_sym___clrcall] = ACTIONS(4472), + [anon_sym___stdcall] = ACTIONS(4472), + [anon_sym___fastcall] = ACTIONS(4472), + [anon_sym___thiscall] = ACTIONS(4472), + [anon_sym___vectorcall] = ACTIONS(4472), + [anon_sym_LBRACE] = ACTIONS(4474), + [anon_sym_signed] = ACTIONS(4472), + [anon_sym_unsigned] = ACTIONS(4472), + [anon_sym_long] = ACTIONS(4472), + [anon_sym_short] = ACTIONS(4472), + [anon_sym_LBRACK] = ACTIONS(4472), + [anon_sym_static] = ACTIONS(4472), + [anon_sym_register] = ACTIONS(4472), + [anon_sym_inline] = ACTIONS(4472), + [anon_sym___inline] = ACTIONS(4472), + [anon_sym___inline__] = ACTIONS(4472), + [anon_sym___forceinline] = ACTIONS(4472), + [anon_sym_thread_local] = ACTIONS(4472), + [anon_sym___thread] = ACTIONS(4472), + [anon_sym_const] = ACTIONS(4472), + [anon_sym_constexpr] = ACTIONS(4472), + [anon_sym_volatile] = ACTIONS(4472), + [anon_sym_restrict] = ACTIONS(4472), + [anon_sym___restrict__] = ACTIONS(4472), + [anon_sym__Atomic] = ACTIONS(4472), + [anon_sym__Noreturn] = ACTIONS(4472), + [anon_sym_noreturn] = ACTIONS(4472), + [anon_sym__Nonnull] = ACTIONS(4472), + [anon_sym_mutable] = ACTIONS(4472), + [anon_sym_constinit] = ACTIONS(4472), + [anon_sym_consteval] = ACTIONS(4472), + [anon_sym_alignas] = ACTIONS(4472), + [anon_sym__Alignas] = ACTIONS(4472), + [sym_primitive_type] = ACTIONS(4472), + [anon_sym_enum] = ACTIONS(4472), + [anon_sym_class] = ACTIONS(4472), + [anon_sym_struct] = ACTIONS(4472), + [anon_sym_union] = ACTIONS(4472), + [anon_sym_if] = ACTIONS(4472), + [anon_sym_switch] = ACTIONS(4472), + [anon_sym_case] = ACTIONS(4472), + [anon_sym_default] = ACTIONS(4472), + [anon_sym_while] = ACTIONS(4472), + [anon_sym_do] = ACTIONS(4472), + [anon_sym_for] = ACTIONS(4472), + [anon_sym_return] = ACTIONS(4472), + [anon_sym_break] = ACTIONS(4472), + [anon_sym_continue] = ACTIONS(4472), + [anon_sym_goto] = ACTIONS(4472), + [anon_sym_not] = ACTIONS(4472), + [anon_sym_compl] = ACTIONS(4472), + [anon_sym_DASH_DASH] = ACTIONS(4474), + [anon_sym_PLUS_PLUS] = ACTIONS(4474), + [anon_sym_sizeof] = ACTIONS(4472), + [anon_sym___alignof__] = ACTIONS(4472), + [anon_sym___alignof] = ACTIONS(4472), + [anon_sym__alignof] = ACTIONS(4472), + [anon_sym_alignof] = ACTIONS(4472), + [anon_sym__Alignof] = ACTIONS(4472), + [anon_sym_offsetof] = ACTIONS(4472), + [anon_sym__Generic] = ACTIONS(4472), + [anon_sym_typename] = ACTIONS(4472), + [anon_sym_asm] = ACTIONS(4472), + [anon_sym___asm__] = ACTIONS(4472), + [anon_sym___asm] = ACTIONS(4472), + [sym_number_literal] = ACTIONS(4474), + [anon_sym_L_SQUOTE] = ACTIONS(4474), + [anon_sym_u_SQUOTE] = ACTIONS(4474), + [anon_sym_U_SQUOTE] = ACTIONS(4474), + [anon_sym_u8_SQUOTE] = ACTIONS(4474), + [anon_sym_SQUOTE] = ACTIONS(4474), + [anon_sym_L_DQUOTE] = ACTIONS(4474), + [anon_sym_u_DQUOTE] = ACTIONS(4474), + [anon_sym_U_DQUOTE] = ACTIONS(4474), + [anon_sym_u8_DQUOTE] = ACTIONS(4474), + [anon_sym_DQUOTE] = ACTIONS(4474), + [sym_true] = ACTIONS(4472), + [sym_false] = ACTIONS(4472), + [anon_sym_NULL] = ACTIONS(4472), + [anon_sym_nullptr] = ACTIONS(4472), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4472), + [anon_sym_decltype] = ACTIONS(4472), + [anon_sym_explicit] = ACTIONS(4472), + [anon_sym_export] = ACTIONS(4472), + [anon_sym_module] = ACTIONS(4472), + [anon_sym_import] = ACTIONS(4472), + [anon_sym_template] = ACTIONS(4472), + [anon_sym_operator] = ACTIONS(4472), + [anon_sym_try] = ACTIONS(4472), + [anon_sym_delete] = ACTIONS(4472), + [anon_sym_throw] = ACTIONS(4472), + [anon_sym_namespace] = ACTIONS(4472), + [anon_sym_static_assert] = ACTIONS(4472), + [anon_sym_concept] = ACTIONS(4472), + [anon_sym_co_return] = ACTIONS(4472), + [anon_sym_co_yield] = ACTIONS(4472), + [anon_sym_R_DQUOTE] = ACTIONS(4474), + [anon_sym_LR_DQUOTE] = ACTIONS(4474), + [anon_sym_uR_DQUOTE] = ACTIONS(4474), + [anon_sym_UR_DQUOTE] = ACTIONS(4474), + [anon_sym_u8R_DQUOTE] = ACTIONS(4474), + [anon_sym_co_await] = ACTIONS(4472), + [anon_sym_new] = ACTIONS(4472), + [anon_sym_requires] = ACTIONS(4472), + [anon_sym_CARET_CARET] = ACTIONS(4474), + [anon_sym_LBRACK_COLON] = ACTIONS(4474), + [sym_this] = ACTIONS(4472), }, - [STATE(591)] = { - [sym_identifier] = ACTIONS(2949), - [aux_sym_preproc_include_token1] = ACTIONS(2949), - [aux_sym_preproc_def_token1] = ACTIONS(2949), - [aux_sym_preproc_if_token1] = ACTIONS(2949), - [aux_sym_preproc_if_token2] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2949), - [sym_preproc_directive] = ACTIONS(2949), - [anon_sym_LPAREN2] = ACTIONS(2954), - [anon_sym_BANG] = ACTIONS(2954), - [anon_sym_TILDE] = ACTIONS(2954), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_STAR] = ACTIONS(2954), - [anon_sym_AMP_AMP] = ACTIONS(2954), - [anon_sym_AMP] = ACTIONS(2949), - [anon_sym_SEMI] = ACTIONS(2954), - [anon_sym___extension__] = ACTIONS(2949), - [anon_sym_typedef] = ACTIONS(2949), - [anon_sym_virtual] = ACTIONS(2949), - [anon_sym_extern] = ACTIONS(2949), - [anon_sym___attribute__] = ACTIONS(2949), - [anon_sym___attribute] = ACTIONS(2949), - [anon_sym_using] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2954), - [anon_sym___declspec] = ACTIONS(2949), - [anon_sym___based] = ACTIONS(2949), - [anon_sym___cdecl] = ACTIONS(2949), - [anon_sym___clrcall] = ACTIONS(2949), - [anon_sym___stdcall] = ACTIONS(2949), - [anon_sym___fastcall] = ACTIONS(2949), - [anon_sym___thiscall] = ACTIONS(2949), - [anon_sym___vectorcall] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2954), - [anon_sym_signed] = ACTIONS(2949), - [anon_sym_unsigned] = ACTIONS(2949), - [anon_sym_long] = ACTIONS(2949), - [anon_sym_short] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_static] = ACTIONS(2949), - [anon_sym_register] = ACTIONS(2949), - [anon_sym_inline] = ACTIONS(2949), - [anon_sym___inline] = ACTIONS(2949), - [anon_sym___inline__] = ACTIONS(2949), - [anon_sym___forceinline] = ACTIONS(2949), - [anon_sym_thread_local] = ACTIONS(2949), - [anon_sym___thread] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_constexpr] = ACTIONS(2949), - [anon_sym_volatile] = ACTIONS(2949), - [anon_sym_restrict] = ACTIONS(2949), - [anon_sym___restrict__] = ACTIONS(2949), - [anon_sym__Atomic] = ACTIONS(2949), - [anon_sym__Noreturn] = ACTIONS(2949), - [anon_sym_noreturn] = ACTIONS(2949), - [anon_sym__Nonnull] = ACTIONS(2949), - [anon_sym_mutable] = ACTIONS(2949), - [anon_sym_constinit] = ACTIONS(2949), - [anon_sym_consteval] = ACTIONS(2949), - [anon_sym_alignas] = ACTIONS(2949), - [anon_sym__Alignas] = ACTIONS(2949), - [sym_primitive_type] = ACTIONS(2949), - [anon_sym_enum] = ACTIONS(2949), - [anon_sym_class] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2949), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_else] = ACTIONS(2949), - [anon_sym_switch] = ACTIONS(2949), - [anon_sym_case] = ACTIONS(2949), - [anon_sym_default] = ACTIONS(2949), - [anon_sym_while] = ACTIONS(2949), - [anon_sym_do] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_return] = ACTIONS(2949), - [anon_sym_break] = ACTIONS(2949), - [anon_sym_continue] = ACTIONS(2949), - [anon_sym_goto] = ACTIONS(2949), - [anon_sym___try] = ACTIONS(2949), - [anon_sym___leave] = ACTIONS(2949), - [anon_sym_not] = ACTIONS(2949), - [anon_sym_compl] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2954), - [anon_sym_PLUS_PLUS] = ACTIONS(2954), - [anon_sym_sizeof] = ACTIONS(2949), - [anon_sym___alignof__] = ACTIONS(2949), - [anon_sym___alignof] = ACTIONS(2949), - [anon_sym__alignof] = ACTIONS(2949), - [anon_sym_alignof] = ACTIONS(2949), - [anon_sym__Alignof] = ACTIONS(2949), - [anon_sym_offsetof] = ACTIONS(2949), - [anon_sym__Generic] = ACTIONS(2949), - [anon_sym_typename] = ACTIONS(2949), - [anon_sym_asm] = ACTIONS(2949), - [anon_sym___asm__] = ACTIONS(2949), - [anon_sym___asm] = ACTIONS(2949), - [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(2949), - [sym_false] = ACTIONS(2949), - [anon_sym_NULL] = ACTIONS(2949), - [anon_sym_nullptr] = ACTIONS(2949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2949), - [anon_sym_decltype] = ACTIONS(2949), - [anon_sym_explicit] = ACTIONS(2949), - [anon_sym_template] = ACTIONS(2949), - [anon_sym_operator] = ACTIONS(2949), - [anon_sym_try] = ACTIONS(2949), - [anon_sym_delete] = ACTIONS(2949), - [anon_sym_throw] = ACTIONS(2949), - [anon_sym_namespace] = ACTIONS(2949), - [anon_sym_static_assert] = ACTIONS(2949), - [anon_sym_concept] = ACTIONS(2949), - [anon_sym_co_return] = ACTIONS(2949), - [anon_sym_co_yield] = ACTIONS(2949), - [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(2949), - [anon_sym_new] = ACTIONS(2949), - [anon_sym_requires] = ACTIONS(2949), - [anon_sym_CARET_CARET] = ACTIONS(2954), - [anon_sym_LBRACK_COLON] = ACTIONS(2954), - [sym_this] = ACTIONS(2949), + [STATE(533)] = { + [sym_identifier] = ACTIONS(4476), + [aux_sym_preproc_include_token1] = ACTIONS(4476), + [aux_sym_preproc_def_token1] = ACTIONS(4476), + [aux_sym_preproc_if_token1] = ACTIONS(4476), + [aux_sym_preproc_if_token2] = ACTIONS(4476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4476), + [aux_sym_preproc_else_token1] = ACTIONS(4476), + [aux_sym_preproc_elif_token1] = ACTIONS(4476), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4476), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4476), + [sym_preproc_directive] = ACTIONS(4476), + [anon_sym_LPAREN2] = ACTIONS(4478), + [anon_sym_BANG] = ACTIONS(4478), + [anon_sym_TILDE] = ACTIONS(4478), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_AMP] = ACTIONS(4476), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym___extension__] = ACTIONS(4476), + [anon_sym_typedef] = ACTIONS(4476), + [anon_sym_virtual] = ACTIONS(4476), + [anon_sym_extern] = ACTIONS(4476), + [anon_sym___attribute__] = ACTIONS(4476), + [anon_sym___attribute] = ACTIONS(4476), + [anon_sym_using] = ACTIONS(4476), + [anon_sym_COLON_COLON] = ACTIONS(4478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4478), + [anon_sym___declspec] = ACTIONS(4476), + [anon_sym___based] = ACTIONS(4476), + [anon_sym___cdecl] = ACTIONS(4476), + [anon_sym___clrcall] = ACTIONS(4476), + [anon_sym___stdcall] = ACTIONS(4476), + [anon_sym___fastcall] = ACTIONS(4476), + [anon_sym___thiscall] = ACTIONS(4476), + [anon_sym___vectorcall] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(4478), + [anon_sym_signed] = ACTIONS(4476), + [anon_sym_unsigned] = ACTIONS(4476), + [anon_sym_long] = ACTIONS(4476), + [anon_sym_short] = ACTIONS(4476), + [anon_sym_LBRACK] = ACTIONS(4476), + [anon_sym_static] = ACTIONS(4476), + [anon_sym_register] = ACTIONS(4476), + [anon_sym_inline] = ACTIONS(4476), + [anon_sym___inline] = ACTIONS(4476), + [anon_sym___inline__] = ACTIONS(4476), + [anon_sym___forceinline] = ACTIONS(4476), + [anon_sym_thread_local] = ACTIONS(4476), + [anon_sym___thread] = ACTIONS(4476), + [anon_sym_const] = ACTIONS(4476), + [anon_sym_constexpr] = ACTIONS(4476), + [anon_sym_volatile] = ACTIONS(4476), + [anon_sym_restrict] = ACTIONS(4476), + [anon_sym___restrict__] = ACTIONS(4476), + [anon_sym__Atomic] = ACTIONS(4476), + [anon_sym__Noreturn] = ACTIONS(4476), + [anon_sym_noreturn] = ACTIONS(4476), + [anon_sym__Nonnull] = ACTIONS(4476), + [anon_sym_mutable] = ACTIONS(4476), + [anon_sym_constinit] = ACTIONS(4476), + [anon_sym_consteval] = ACTIONS(4476), + [anon_sym_alignas] = ACTIONS(4476), + [anon_sym__Alignas] = ACTIONS(4476), + [sym_primitive_type] = ACTIONS(4476), + [anon_sym_enum] = ACTIONS(4476), + [anon_sym_class] = ACTIONS(4476), + [anon_sym_struct] = ACTIONS(4476), + [anon_sym_union] = ACTIONS(4476), + [anon_sym_if] = ACTIONS(4476), + [anon_sym_switch] = ACTIONS(4476), + [anon_sym_case] = ACTIONS(4476), + [anon_sym_default] = ACTIONS(4476), + [anon_sym_while] = ACTIONS(4476), + [anon_sym_do] = ACTIONS(4476), + [anon_sym_for] = ACTIONS(4476), + [anon_sym_return] = ACTIONS(4476), + [anon_sym_break] = ACTIONS(4476), + [anon_sym_continue] = ACTIONS(4476), + [anon_sym_goto] = ACTIONS(4476), + [anon_sym_not] = ACTIONS(4476), + [anon_sym_compl] = ACTIONS(4476), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4478), + [anon_sym_sizeof] = ACTIONS(4476), + [anon_sym___alignof__] = ACTIONS(4476), + [anon_sym___alignof] = ACTIONS(4476), + [anon_sym__alignof] = ACTIONS(4476), + [anon_sym_alignof] = ACTIONS(4476), + [anon_sym__Alignof] = ACTIONS(4476), + [anon_sym_offsetof] = ACTIONS(4476), + [anon_sym__Generic] = ACTIONS(4476), + [anon_sym_typename] = ACTIONS(4476), + [anon_sym_asm] = ACTIONS(4476), + [anon_sym___asm__] = ACTIONS(4476), + [anon_sym___asm] = ACTIONS(4476), + [sym_number_literal] = ACTIONS(4478), + [anon_sym_L_SQUOTE] = ACTIONS(4478), + [anon_sym_u_SQUOTE] = ACTIONS(4478), + [anon_sym_U_SQUOTE] = ACTIONS(4478), + [anon_sym_u8_SQUOTE] = ACTIONS(4478), + [anon_sym_SQUOTE] = ACTIONS(4478), + [anon_sym_L_DQUOTE] = ACTIONS(4478), + [anon_sym_u_DQUOTE] = ACTIONS(4478), + [anon_sym_U_DQUOTE] = ACTIONS(4478), + [anon_sym_u8_DQUOTE] = ACTIONS(4478), + [anon_sym_DQUOTE] = ACTIONS(4478), + [sym_true] = ACTIONS(4476), + [sym_false] = ACTIONS(4476), + [anon_sym_NULL] = ACTIONS(4476), + [anon_sym_nullptr] = ACTIONS(4476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4476), + [anon_sym_decltype] = ACTIONS(4476), + [anon_sym_explicit] = ACTIONS(4476), + [anon_sym_export] = ACTIONS(4476), + [anon_sym_module] = ACTIONS(4476), + [anon_sym_import] = ACTIONS(4476), + [anon_sym_template] = ACTIONS(4476), + [anon_sym_operator] = ACTIONS(4476), + [anon_sym_try] = ACTIONS(4476), + [anon_sym_delete] = ACTIONS(4476), + [anon_sym_throw] = ACTIONS(4476), + [anon_sym_namespace] = ACTIONS(4476), + [anon_sym_static_assert] = ACTIONS(4476), + [anon_sym_concept] = ACTIONS(4476), + [anon_sym_co_return] = ACTIONS(4476), + [anon_sym_co_yield] = ACTIONS(4476), + [anon_sym_R_DQUOTE] = ACTIONS(4478), + [anon_sym_LR_DQUOTE] = ACTIONS(4478), + [anon_sym_uR_DQUOTE] = ACTIONS(4478), + [anon_sym_UR_DQUOTE] = ACTIONS(4478), + [anon_sym_u8R_DQUOTE] = ACTIONS(4478), + [anon_sym_co_await] = ACTIONS(4476), + [anon_sym_new] = ACTIONS(4476), + [anon_sym_requires] = ACTIONS(4476), + [anon_sym_CARET_CARET] = ACTIONS(4478), + [anon_sym_LBRACK_COLON] = ACTIONS(4478), + [sym_this] = ACTIONS(4476), }, - [STATE(592)] = { - [sym_identifier] = ACTIONS(2803), - [aux_sym_preproc_include_token1] = ACTIONS(2803), - [aux_sym_preproc_def_token1] = ACTIONS(2803), - [anon_sym_COMMA] = ACTIONS(3888), - [aux_sym_preproc_if_token1] = ACTIONS(2803), - [aux_sym_preproc_if_token2] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2803), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2803), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(3888), - [anon_sym___extension__] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2803), - [anon_sym_virtual] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym___attribute__] = ACTIONS(2803), - [anon_sym___attribute] = ACTIONS(2803), - [anon_sym_using] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2803), - [anon_sym___based] = ACTIONS(2803), - [anon_sym___cdecl] = ACTIONS(2803), - [anon_sym___clrcall] = ACTIONS(2803), - [anon_sym___stdcall] = ACTIONS(2803), - [anon_sym___fastcall] = ACTIONS(2803), - [anon_sym___thiscall] = ACTIONS(2803), - [anon_sym___vectorcall] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_signed] = ACTIONS(2803), - [anon_sym_unsigned] = ACTIONS(2803), - [anon_sym_long] = ACTIONS(2803), - [anon_sym_short] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_register] = ACTIONS(2803), - [anon_sym_inline] = ACTIONS(2803), - [anon_sym___inline] = ACTIONS(2803), - [anon_sym___inline__] = ACTIONS(2803), - [anon_sym___forceinline] = ACTIONS(2803), - [anon_sym_thread_local] = ACTIONS(2803), - [anon_sym___thread] = ACTIONS(2803), - [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__Nonnull] = ACTIONS(2803), - [anon_sym_mutable] = ACTIONS(2803), - [anon_sym_constinit] = ACTIONS(2803), - [anon_sym_consteval] = ACTIONS(2803), - [anon_sym_alignas] = ACTIONS(2803), - [anon_sym__Alignas] = ACTIONS(2803), - [sym_primitive_type] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_if] = ACTIONS(2803), - [anon_sym_switch] = ACTIONS(2803), - [anon_sym_case] = ACTIONS(2803), - [anon_sym_default] = ACTIONS(2803), - [anon_sym_while] = ACTIONS(2803), - [anon_sym_do] = ACTIONS(2803), - [anon_sym_for] = ACTIONS(2803), - [anon_sym_return] = ACTIONS(2803), - [anon_sym_break] = ACTIONS(2803), - [anon_sym_continue] = ACTIONS(2803), - [anon_sym_goto] = ACTIONS(2803), - [anon_sym___try] = ACTIONS(2803), - [anon_sym___leave] = ACTIONS(2803), - [anon_sym_not] = ACTIONS(2803), - [anon_sym_compl] = ACTIONS(2803), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_sizeof] = ACTIONS(2803), - [anon_sym___alignof__] = ACTIONS(2803), - [anon_sym___alignof] = ACTIONS(2803), - [anon_sym__alignof] = ACTIONS(2803), - [anon_sym_alignof] = ACTIONS(2803), - [anon_sym__Alignof] = ACTIONS(2803), - [anon_sym_offsetof] = ACTIONS(2803), - [anon_sym__Generic] = ACTIONS(2803), - [anon_sym_typename] = ACTIONS(2803), - [anon_sym_asm] = ACTIONS(2803), - [anon_sym___asm__] = ACTIONS(2803), - [anon_sym___asm] = ACTIONS(2803), - [sym_number_literal] = ACTIONS(2801), - [anon_sym_L_SQUOTE] = ACTIONS(2801), - [anon_sym_u_SQUOTE] = ACTIONS(2801), - [anon_sym_U_SQUOTE] = ACTIONS(2801), - [anon_sym_u8_SQUOTE] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2801), - [anon_sym_L_DQUOTE] = ACTIONS(2801), - [anon_sym_u_DQUOTE] = ACTIONS(2801), - [anon_sym_U_DQUOTE] = ACTIONS(2801), - [anon_sym_u8_DQUOTE] = ACTIONS(2801), - [anon_sym_DQUOTE] = ACTIONS(2801), - [sym_true] = ACTIONS(2803), - [sym_false] = ACTIONS(2803), - [anon_sym_NULL] = ACTIONS(2803), - [anon_sym_nullptr] = ACTIONS(2803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2803), - [anon_sym_decltype] = ACTIONS(2803), - [anon_sym_explicit] = ACTIONS(2803), - [anon_sym_template] = ACTIONS(2803), - [anon_sym_operator] = ACTIONS(2803), - [anon_sym_try] = ACTIONS(2803), - [anon_sym_delete] = ACTIONS(2803), - [anon_sym_throw] = ACTIONS(2803), - [anon_sym_namespace] = ACTIONS(2803), - [anon_sym_static_assert] = ACTIONS(2803), - [anon_sym_concept] = ACTIONS(2803), - [anon_sym_co_return] = ACTIONS(2803), - [anon_sym_co_yield] = ACTIONS(2803), - [anon_sym_R_DQUOTE] = ACTIONS(2801), - [anon_sym_LR_DQUOTE] = ACTIONS(2801), - [anon_sym_uR_DQUOTE] = ACTIONS(2801), - [anon_sym_UR_DQUOTE] = ACTIONS(2801), - [anon_sym_u8R_DQUOTE] = ACTIONS(2801), - [anon_sym_co_await] = ACTIONS(2803), - [anon_sym_new] = ACTIONS(2803), - [anon_sym_requires] = ACTIONS(2803), - [anon_sym_CARET_CARET] = ACTIONS(2801), - [anon_sym_LBRACK_COLON] = ACTIONS(2801), - [sym_this] = ACTIONS(2803), + [STATE(534)] = { + [sym_identifier] = ACTIONS(3155), + [aux_sym_preproc_include_token1] = ACTIONS(3155), + [aux_sym_preproc_def_token1] = ACTIONS(3155), + [aux_sym_preproc_if_token1] = ACTIONS(3155), + [aux_sym_preproc_if_token2] = ACTIONS(3155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3155), + [sym_preproc_directive] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_AMP_AMP] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym___extension__] = ACTIONS(3155), + [anon_sym_typedef] = ACTIONS(3155), + [anon_sym_virtual] = ACTIONS(3155), + [anon_sym_extern] = ACTIONS(3155), + [anon_sym___attribute__] = ACTIONS(3155), + [anon_sym___attribute] = ACTIONS(3155), + [anon_sym_using] = ACTIONS(3155), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), + [anon_sym___declspec] = ACTIONS(3155), + [anon_sym___based] = ACTIONS(3155), + [anon_sym___cdecl] = ACTIONS(3155), + [anon_sym___clrcall] = ACTIONS(3155), + [anon_sym___stdcall] = ACTIONS(3155), + [anon_sym___fastcall] = ACTIONS(3155), + [anon_sym___thiscall] = ACTIONS(3155), + [anon_sym___vectorcall] = ACTIONS(3155), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_static] = ACTIONS(3155), + [anon_sym_register] = ACTIONS(3155), + [anon_sym_inline] = ACTIONS(3155), + [anon_sym___inline] = ACTIONS(3155), + [anon_sym___inline__] = ACTIONS(3155), + [anon_sym___forceinline] = ACTIONS(3155), + [anon_sym_thread_local] = ACTIONS(3155), + [anon_sym___thread] = ACTIONS(3155), + [anon_sym_const] = ACTIONS(3155), + [anon_sym_constexpr] = ACTIONS(3155), + [anon_sym_volatile] = ACTIONS(3155), + [anon_sym_restrict] = ACTIONS(3155), + [anon_sym___restrict__] = ACTIONS(3155), + [anon_sym__Atomic] = ACTIONS(3155), + [anon_sym__Noreturn] = ACTIONS(3155), + [anon_sym_noreturn] = ACTIONS(3155), + [anon_sym__Nonnull] = ACTIONS(3155), + [anon_sym_mutable] = ACTIONS(3155), + [anon_sym_constinit] = ACTIONS(3155), + [anon_sym_consteval] = ACTIONS(3155), + [anon_sym_alignas] = ACTIONS(3155), + [anon_sym__Alignas] = ACTIONS(3155), + [sym_primitive_type] = ACTIONS(3155), + [anon_sym_enum] = ACTIONS(3155), + [anon_sym_class] = ACTIONS(3155), + [anon_sym_struct] = ACTIONS(3155), + [anon_sym_union] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_else] = ACTIONS(3155), + [anon_sym_switch] = ACTIONS(3155), + [anon_sym_case] = ACTIONS(3155), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_do] = ACTIONS(3155), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_break] = ACTIONS(3155), + [anon_sym_continue] = ACTIONS(3155), + [anon_sym_goto] = ACTIONS(3155), + [anon_sym___try] = ACTIONS(3155), + [anon_sym___leave] = ACTIONS(3155), + [anon_sym_not] = ACTIONS(3155), + [anon_sym_compl] = ACTIONS(3155), + [anon_sym_DASH_DASH] = ACTIONS(3153), + [anon_sym_PLUS_PLUS] = ACTIONS(3153), + [anon_sym_sizeof] = ACTIONS(3155), + [anon_sym___alignof__] = ACTIONS(3155), + [anon_sym___alignof] = ACTIONS(3155), + [anon_sym__alignof] = ACTIONS(3155), + [anon_sym_alignof] = ACTIONS(3155), + [anon_sym__Alignof] = ACTIONS(3155), + [anon_sym_offsetof] = ACTIONS(3155), + [anon_sym__Generic] = ACTIONS(3155), + [anon_sym_typename] = ACTIONS(3155), + [anon_sym_asm] = ACTIONS(3155), + [anon_sym___asm__] = ACTIONS(3155), + [anon_sym___asm] = ACTIONS(3155), + [sym_number_literal] = ACTIONS(3153), + [anon_sym_L_SQUOTE] = ACTIONS(3153), + [anon_sym_u_SQUOTE] = ACTIONS(3153), + [anon_sym_U_SQUOTE] = ACTIONS(3153), + [anon_sym_u8_SQUOTE] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3153), + [anon_sym_L_DQUOTE] = ACTIONS(3153), + [anon_sym_u_DQUOTE] = ACTIONS(3153), + [anon_sym_U_DQUOTE] = ACTIONS(3153), + [anon_sym_u8_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE] = ACTIONS(3153), + [sym_true] = ACTIONS(3155), + [sym_false] = ACTIONS(3155), + [anon_sym_NULL] = ACTIONS(3155), + [anon_sym_nullptr] = ACTIONS(3155), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3155), + [anon_sym_decltype] = ACTIONS(3155), + [anon_sym_explicit] = ACTIONS(3155), + [anon_sym_export] = ACTIONS(3155), + [anon_sym_module] = ACTIONS(3155), + [anon_sym_import] = ACTIONS(3155), + [anon_sym_template] = ACTIONS(3155), + [anon_sym_operator] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [anon_sym_delete] = ACTIONS(3155), + [anon_sym_throw] = ACTIONS(3155), + [anon_sym_namespace] = ACTIONS(3155), + [anon_sym_static_assert] = ACTIONS(3155), + [anon_sym_concept] = ACTIONS(3155), + [anon_sym_co_return] = ACTIONS(3155), + [anon_sym_co_yield] = ACTIONS(3155), + [anon_sym_catch] = ACTIONS(3155), + [anon_sym_R_DQUOTE] = ACTIONS(3153), + [anon_sym_LR_DQUOTE] = ACTIONS(3153), + [anon_sym_uR_DQUOTE] = ACTIONS(3153), + [anon_sym_UR_DQUOTE] = ACTIONS(3153), + [anon_sym_u8R_DQUOTE] = ACTIONS(3153), + [anon_sym_co_await] = ACTIONS(3155), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_requires] = ACTIONS(3155), + [anon_sym_CARET_CARET] = ACTIONS(3153), + [anon_sym_LBRACK_COLON] = ACTIONS(3153), + [sym_this] = ACTIONS(3155), }, - [STATE(593)] = { - [ts_builtin_sym_end] = ACTIONS(4316), - [sym_identifier] = ACTIONS(4318), - [aux_sym_preproc_include_token1] = ACTIONS(4318), - [aux_sym_preproc_def_token1] = ACTIONS(4318), - [aux_sym_preproc_if_token1] = ACTIONS(4318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4318), - [sym_preproc_directive] = ACTIONS(4318), - [anon_sym_LPAREN2] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_TILDE] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4318), - [anon_sym_SEMI] = ACTIONS(4316), - [anon_sym___extension__] = ACTIONS(4318), - [anon_sym_typedef] = ACTIONS(4318), - [anon_sym_virtual] = ACTIONS(4318), - [anon_sym_extern] = ACTIONS(4318), - [anon_sym___attribute__] = ACTIONS(4318), - [anon_sym___attribute] = ACTIONS(4318), - [anon_sym_using] = ACTIONS(4318), - [anon_sym_COLON_COLON] = ACTIONS(4316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4316), - [anon_sym___declspec] = ACTIONS(4318), - [anon_sym___based] = ACTIONS(4318), - [anon_sym___cdecl] = ACTIONS(4318), - [anon_sym___clrcall] = ACTIONS(4318), - [anon_sym___stdcall] = ACTIONS(4318), - [anon_sym___fastcall] = ACTIONS(4318), - [anon_sym___thiscall] = ACTIONS(4318), - [anon_sym___vectorcall] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4316), - [anon_sym_signed] = ACTIONS(4318), - [anon_sym_unsigned] = ACTIONS(4318), - [anon_sym_long] = ACTIONS(4318), - [anon_sym_short] = ACTIONS(4318), - [anon_sym_LBRACK] = ACTIONS(4318), - [anon_sym_static] = ACTIONS(4318), - [anon_sym_register] = ACTIONS(4318), - [anon_sym_inline] = ACTIONS(4318), - [anon_sym___inline] = ACTIONS(4318), - [anon_sym___inline__] = ACTIONS(4318), - [anon_sym___forceinline] = ACTIONS(4318), - [anon_sym_thread_local] = ACTIONS(4318), - [anon_sym___thread] = ACTIONS(4318), - [anon_sym_const] = ACTIONS(4318), - [anon_sym_constexpr] = ACTIONS(4318), - [anon_sym_volatile] = ACTIONS(4318), - [anon_sym_restrict] = ACTIONS(4318), - [anon_sym___restrict__] = ACTIONS(4318), - [anon_sym__Atomic] = ACTIONS(4318), - [anon_sym__Noreturn] = ACTIONS(4318), - [anon_sym_noreturn] = ACTIONS(4318), - [anon_sym__Nonnull] = ACTIONS(4318), - [anon_sym_mutable] = ACTIONS(4318), - [anon_sym_constinit] = ACTIONS(4318), - [anon_sym_consteval] = ACTIONS(4318), - [anon_sym_alignas] = ACTIONS(4318), - [anon_sym__Alignas] = ACTIONS(4318), - [sym_primitive_type] = ACTIONS(4318), - [anon_sym_enum] = ACTIONS(4318), - [anon_sym_class] = ACTIONS(4318), - [anon_sym_struct] = ACTIONS(4318), - [anon_sym_union] = ACTIONS(4318), - [anon_sym_if] = ACTIONS(4318), - [anon_sym_switch] = ACTIONS(4318), - [anon_sym_case] = ACTIONS(4318), - [anon_sym_default] = ACTIONS(4318), - [anon_sym_while] = ACTIONS(4318), - [anon_sym_do] = ACTIONS(4318), - [anon_sym_for] = ACTIONS(4318), - [anon_sym_return] = ACTIONS(4318), - [anon_sym_break] = ACTIONS(4318), - [anon_sym_continue] = ACTIONS(4318), - [anon_sym_goto] = ACTIONS(4318), - [anon_sym_not] = ACTIONS(4318), - [anon_sym_compl] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4316), - [anon_sym_sizeof] = ACTIONS(4318), - [anon_sym___alignof__] = ACTIONS(4318), - [anon_sym___alignof] = ACTIONS(4318), - [anon_sym__alignof] = ACTIONS(4318), - [anon_sym_alignof] = ACTIONS(4318), - [anon_sym__Alignof] = ACTIONS(4318), - [anon_sym_offsetof] = ACTIONS(4318), - [anon_sym__Generic] = ACTIONS(4318), - [anon_sym_typename] = ACTIONS(4318), - [anon_sym_asm] = ACTIONS(4318), - [anon_sym___asm__] = ACTIONS(4318), - [anon_sym___asm] = ACTIONS(4318), - [sym_number_literal] = ACTIONS(4316), - [anon_sym_L_SQUOTE] = ACTIONS(4316), - [anon_sym_u_SQUOTE] = ACTIONS(4316), - [anon_sym_U_SQUOTE] = ACTIONS(4316), - [anon_sym_u8_SQUOTE] = ACTIONS(4316), - [anon_sym_SQUOTE] = ACTIONS(4316), - [anon_sym_L_DQUOTE] = ACTIONS(4316), - [anon_sym_u_DQUOTE] = ACTIONS(4316), - [anon_sym_U_DQUOTE] = ACTIONS(4316), - [anon_sym_u8_DQUOTE] = ACTIONS(4316), - [anon_sym_DQUOTE] = ACTIONS(4316), - [sym_true] = ACTIONS(4318), - [sym_false] = ACTIONS(4318), - [anon_sym_NULL] = ACTIONS(4318), - [anon_sym_nullptr] = ACTIONS(4318), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4318), - [anon_sym_decltype] = ACTIONS(4318), - [anon_sym_explicit] = ACTIONS(4318), - [anon_sym_export] = ACTIONS(4318), - [anon_sym_module] = ACTIONS(4318), - [anon_sym_import] = ACTIONS(4318), - [anon_sym_template] = ACTIONS(4318), - [anon_sym_operator] = ACTIONS(4318), - [anon_sym_try] = ACTIONS(4318), - [anon_sym_delete] = ACTIONS(4318), - [anon_sym_throw] = ACTIONS(4318), - [anon_sym_namespace] = ACTIONS(4318), - [anon_sym_static_assert] = ACTIONS(4318), - [anon_sym_concept] = ACTIONS(4318), - [anon_sym_co_return] = ACTIONS(4318), - [anon_sym_co_yield] = ACTIONS(4318), - [anon_sym_R_DQUOTE] = ACTIONS(4316), - [anon_sym_LR_DQUOTE] = ACTIONS(4316), - [anon_sym_uR_DQUOTE] = ACTIONS(4316), - [anon_sym_UR_DQUOTE] = ACTIONS(4316), - [anon_sym_u8R_DQUOTE] = ACTIONS(4316), - [anon_sym_co_await] = ACTIONS(4318), - [anon_sym_new] = ACTIONS(4318), - [anon_sym_requires] = ACTIONS(4318), - [anon_sym_CARET_CARET] = ACTIONS(4316), - [anon_sym_LBRACK_COLON] = ACTIONS(4316), - [sym_this] = ACTIONS(4318), + [STATE(535)] = { + [sym_identifier] = ACTIONS(4480), + [aux_sym_preproc_include_token1] = ACTIONS(4480), + [aux_sym_preproc_def_token1] = ACTIONS(4480), + [aux_sym_preproc_if_token1] = ACTIONS(4480), + [aux_sym_preproc_if_token2] = ACTIONS(4480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4480), + [aux_sym_preproc_else_token1] = ACTIONS(4480), + [aux_sym_preproc_elif_token1] = ACTIONS(4480), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4480), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4480), + [sym_preproc_directive] = ACTIONS(4480), + [anon_sym_LPAREN2] = ACTIONS(4482), + [anon_sym_BANG] = ACTIONS(4482), + [anon_sym_TILDE] = ACTIONS(4482), + [anon_sym_DASH] = ACTIONS(4480), + [anon_sym_PLUS] = ACTIONS(4480), + [anon_sym_STAR] = ACTIONS(4482), + [anon_sym_AMP_AMP] = ACTIONS(4482), + [anon_sym_AMP] = ACTIONS(4480), + [anon_sym_SEMI] = ACTIONS(4482), + [anon_sym___extension__] = ACTIONS(4480), + [anon_sym_typedef] = ACTIONS(4480), + [anon_sym_virtual] = ACTIONS(4480), + [anon_sym_extern] = ACTIONS(4480), + [anon_sym___attribute__] = ACTIONS(4480), + [anon_sym___attribute] = ACTIONS(4480), + [anon_sym_using] = ACTIONS(4480), + [anon_sym_COLON_COLON] = ACTIONS(4482), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4482), + [anon_sym___declspec] = ACTIONS(4480), + [anon_sym___based] = ACTIONS(4480), + [anon_sym___cdecl] = ACTIONS(4480), + [anon_sym___clrcall] = ACTIONS(4480), + [anon_sym___stdcall] = ACTIONS(4480), + [anon_sym___fastcall] = ACTIONS(4480), + [anon_sym___thiscall] = ACTIONS(4480), + [anon_sym___vectorcall] = ACTIONS(4480), + [anon_sym_LBRACE] = ACTIONS(4482), + [anon_sym_signed] = ACTIONS(4480), + [anon_sym_unsigned] = ACTIONS(4480), + [anon_sym_long] = ACTIONS(4480), + [anon_sym_short] = ACTIONS(4480), + [anon_sym_LBRACK] = ACTIONS(4480), + [anon_sym_static] = ACTIONS(4480), + [anon_sym_register] = ACTIONS(4480), + [anon_sym_inline] = ACTIONS(4480), + [anon_sym___inline] = ACTIONS(4480), + [anon_sym___inline__] = ACTIONS(4480), + [anon_sym___forceinline] = ACTIONS(4480), + [anon_sym_thread_local] = ACTIONS(4480), + [anon_sym___thread] = ACTIONS(4480), + [anon_sym_const] = ACTIONS(4480), + [anon_sym_constexpr] = ACTIONS(4480), + [anon_sym_volatile] = ACTIONS(4480), + [anon_sym_restrict] = ACTIONS(4480), + [anon_sym___restrict__] = ACTIONS(4480), + [anon_sym__Atomic] = ACTIONS(4480), + [anon_sym__Noreturn] = ACTIONS(4480), + [anon_sym_noreturn] = ACTIONS(4480), + [anon_sym__Nonnull] = ACTIONS(4480), + [anon_sym_mutable] = ACTIONS(4480), + [anon_sym_constinit] = ACTIONS(4480), + [anon_sym_consteval] = ACTIONS(4480), + [anon_sym_alignas] = ACTIONS(4480), + [anon_sym__Alignas] = ACTIONS(4480), + [sym_primitive_type] = ACTIONS(4480), + [anon_sym_enum] = ACTIONS(4480), + [anon_sym_class] = ACTIONS(4480), + [anon_sym_struct] = ACTIONS(4480), + [anon_sym_union] = ACTIONS(4480), + [anon_sym_if] = ACTIONS(4480), + [anon_sym_switch] = ACTIONS(4480), + [anon_sym_case] = ACTIONS(4480), + [anon_sym_default] = ACTIONS(4480), + [anon_sym_while] = ACTIONS(4480), + [anon_sym_do] = ACTIONS(4480), + [anon_sym_for] = ACTIONS(4480), + [anon_sym_return] = ACTIONS(4480), + [anon_sym_break] = ACTIONS(4480), + [anon_sym_continue] = ACTIONS(4480), + [anon_sym_goto] = ACTIONS(4480), + [anon_sym_not] = ACTIONS(4480), + [anon_sym_compl] = ACTIONS(4480), + [anon_sym_DASH_DASH] = ACTIONS(4482), + [anon_sym_PLUS_PLUS] = ACTIONS(4482), + [anon_sym_sizeof] = ACTIONS(4480), + [anon_sym___alignof__] = ACTIONS(4480), + [anon_sym___alignof] = ACTIONS(4480), + [anon_sym__alignof] = ACTIONS(4480), + [anon_sym_alignof] = ACTIONS(4480), + [anon_sym__Alignof] = ACTIONS(4480), + [anon_sym_offsetof] = ACTIONS(4480), + [anon_sym__Generic] = ACTIONS(4480), + [anon_sym_typename] = ACTIONS(4480), + [anon_sym_asm] = ACTIONS(4480), + [anon_sym___asm__] = ACTIONS(4480), + [anon_sym___asm] = ACTIONS(4480), + [sym_number_literal] = ACTIONS(4482), + [anon_sym_L_SQUOTE] = ACTIONS(4482), + [anon_sym_u_SQUOTE] = ACTIONS(4482), + [anon_sym_U_SQUOTE] = ACTIONS(4482), + [anon_sym_u8_SQUOTE] = ACTIONS(4482), + [anon_sym_SQUOTE] = ACTIONS(4482), + [anon_sym_L_DQUOTE] = ACTIONS(4482), + [anon_sym_u_DQUOTE] = ACTIONS(4482), + [anon_sym_U_DQUOTE] = ACTIONS(4482), + [anon_sym_u8_DQUOTE] = ACTIONS(4482), + [anon_sym_DQUOTE] = ACTIONS(4482), + [sym_true] = ACTIONS(4480), + [sym_false] = ACTIONS(4480), + [anon_sym_NULL] = ACTIONS(4480), + [anon_sym_nullptr] = ACTIONS(4480), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4480), + [anon_sym_decltype] = ACTIONS(4480), + [anon_sym_explicit] = ACTIONS(4480), + [anon_sym_export] = ACTIONS(4480), + [anon_sym_module] = ACTIONS(4480), + [anon_sym_import] = ACTIONS(4480), + [anon_sym_template] = ACTIONS(4480), + [anon_sym_operator] = ACTIONS(4480), + [anon_sym_try] = ACTIONS(4480), + [anon_sym_delete] = ACTIONS(4480), + [anon_sym_throw] = ACTIONS(4480), + [anon_sym_namespace] = ACTIONS(4480), + [anon_sym_static_assert] = ACTIONS(4480), + [anon_sym_concept] = ACTIONS(4480), + [anon_sym_co_return] = ACTIONS(4480), + [anon_sym_co_yield] = ACTIONS(4480), + [anon_sym_R_DQUOTE] = ACTIONS(4482), + [anon_sym_LR_DQUOTE] = ACTIONS(4482), + [anon_sym_uR_DQUOTE] = ACTIONS(4482), + [anon_sym_UR_DQUOTE] = ACTIONS(4482), + [anon_sym_u8R_DQUOTE] = ACTIONS(4482), + [anon_sym_co_await] = ACTIONS(4480), + [anon_sym_new] = ACTIONS(4480), + [anon_sym_requires] = ACTIONS(4480), + [anon_sym_CARET_CARET] = ACTIONS(4482), + [anon_sym_LBRACK_COLON] = ACTIONS(4482), + [sym_this] = ACTIONS(4480), }, - [STATE(594)] = { - [ts_builtin_sym_end] = ACTIONS(4320), - [sym_identifier] = ACTIONS(4322), - [aux_sym_preproc_include_token1] = ACTIONS(4322), - [aux_sym_preproc_def_token1] = ACTIONS(4322), - [aux_sym_preproc_if_token1] = ACTIONS(4322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4322), - [sym_preproc_directive] = ACTIONS(4322), - [anon_sym_LPAREN2] = ACTIONS(4320), - [anon_sym_BANG] = ACTIONS(4320), - [anon_sym_TILDE] = ACTIONS(4320), - [anon_sym_DASH] = ACTIONS(4322), - [anon_sym_PLUS] = ACTIONS(4322), - [anon_sym_STAR] = ACTIONS(4320), - [anon_sym_AMP_AMP] = ACTIONS(4320), - [anon_sym_AMP] = ACTIONS(4322), - [anon_sym_SEMI] = ACTIONS(4320), - [anon_sym___extension__] = ACTIONS(4322), - [anon_sym_typedef] = ACTIONS(4322), - [anon_sym_virtual] = ACTIONS(4322), - [anon_sym_extern] = ACTIONS(4322), - [anon_sym___attribute__] = ACTIONS(4322), - [anon_sym___attribute] = ACTIONS(4322), - [anon_sym_using] = ACTIONS(4322), - [anon_sym_COLON_COLON] = ACTIONS(4320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4320), - [anon_sym___declspec] = ACTIONS(4322), - [anon_sym___based] = ACTIONS(4322), - [anon_sym___cdecl] = ACTIONS(4322), - [anon_sym___clrcall] = ACTIONS(4322), - [anon_sym___stdcall] = ACTIONS(4322), - [anon_sym___fastcall] = ACTIONS(4322), - [anon_sym___thiscall] = ACTIONS(4322), - [anon_sym___vectorcall] = ACTIONS(4322), - [anon_sym_LBRACE] = ACTIONS(4320), - [anon_sym_signed] = ACTIONS(4322), - [anon_sym_unsigned] = ACTIONS(4322), - [anon_sym_long] = ACTIONS(4322), - [anon_sym_short] = ACTIONS(4322), - [anon_sym_LBRACK] = ACTIONS(4322), - [anon_sym_static] = ACTIONS(4322), - [anon_sym_register] = ACTIONS(4322), - [anon_sym_inline] = ACTIONS(4322), - [anon_sym___inline] = ACTIONS(4322), - [anon_sym___inline__] = ACTIONS(4322), - [anon_sym___forceinline] = ACTIONS(4322), - [anon_sym_thread_local] = ACTIONS(4322), - [anon_sym___thread] = ACTIONS(4322), - [anon_sym_const] = ACTIONS(4322), - [anon_sym_constexpr] = ACTIONS(4322), - [anon_sym_volatile] = ACTIONS(4322), - [anon_sym_restrict] = ACTIONS(4322), - [anon_sym___restrict__] = ACTIONS(4322), - [anon_sym__Atomic] = ACTIONS(4322), - [anon_sym__Noreturn] = ACTIONS(4322), - [anon_sym_noreturn] = ACTIONS(4322), - [anon_sym__Nonnull] = ACTIONS(4322), - [anon_sym_mutable] = ACTIONS(4322), - [anon_sym_constinit] = ACTIONS(4322), - [anon_sym_consteval] = ACTIONS(4322), - [anon_sym_alignas] = ACTIONS(4322), - [anon_sym__Alignas] = ACTIONS(4322), - [sym_primitive_type] = ACTIONS(4322), - [anon_sym_enum] = ACTIONS(4322), - [anon_sym_class] = ACTIONS(4322), - [anon_sym_struct] = ACTIONS(4322), - [anon_sym_union] = ACTIONS(4322), - [anon_sym_if] = ACTIONS(4322), - [anon_sym_switch] = ACTIONS(4322), - [anon_sym_case] = ACTIONS(4322), - [anon_sym_default] = ACTIONS(4322), - [anon_sym_while] = ACTIONS(4322), - [anon_sym_do] = ACTIONS(4322), - [anon_sym_for] = ACTIONS(4322), - [anon_sym_return] = ACTIONS(4322), - [anon_sym_break] = ACTIONS(4322), - [anon_sym_continue] = ACTIONS(4322), - [anon_sym_goto] = ACTIONS(4322), - [anon_sym_not] = ACTIONS(4322), - [anon_sym_compl] = ACTIONS(4322), - [anon_sym_DASH_DASH] = ACTIONS(4320), - [anon_sym_PLUS_PLUS] = ACTIONS(4320), - [anon_sym_sizeof] = ACTIONS(4322), - [anon_sym___alignof__] = ACTIONS(4322), - [anon_sym___alignof] = ACTIONS(4322), - [anon_sym__alignof] = ACTIONS(4322), - [anon_sym_alignof] = ACTIONS(4322), - [anon_sym__Alignof] = ACTIONS(4322), - [anon_sym_offsetof] = ACTIONS(4322), - [anon_sym__Generic] = ACTIONS(4322), - [anon_sym_typename] = ACTIONS(4322), - [anon_sym_asm] = ACTIONS(4322), - [anon_sym___asm__] = ACTIONS(4322), - [anon_sym___asm] = ACTIONS(4322), - [sym_number_literal] = ACTIONS(4320), - [anon_sym_L_SQUOTE] = ACTIONS(4320), - [anon_sym_u_SQUOTE] = ACTIONS(4320), - [anon_sym_U_SQUOTE] = ACTIONS(4320), - [anon_sym_u8_SQUOTE] = ACTIONS(4320), - [anon_sym_SQUOTE] = ACTIONS(4320), - [anon_sym_L_DQUOTE] = ACTIONS(4320), - [anon_sym_u_DQUOTE] = ACTIONS(4320), - [anon_sym_U_DQUOTE] = ACTIONS(4320), - [anon_sym_u8_DQUOTE] = ACTIONS(4320), - [anon_sym_DQUOTE] = ACTIONS(4320), - [sym_true] = ACTIONS(4322), - [sym_false] = ACTIONS(4322), - [anon_sym_NULL] = ACTIONS(4322), - [anon_sym_nullptr] = ACTIONS(4322), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4322), - [anon_sym_decltype] = ACTIONS(4322), - [anon_sym_explicit] = ACTIONS(4322), - [anon_sym_export] = ACTIONS(4322), - [anon_sym_module] = ACTIONS(4322), - [anon_sym_import] = ACTIONS(4322), - [anon_sym_template] = ACTIONS(4322), - [anon_sym_operator] = ACTIONS(4322), - [anon_sym_try] = ACTIONS(4322), - [anon_sym_delete] = ACTIONS(4322), - [anon_sym_throw] = ACTIONS(4322), - [anon_sym_namespace] = ACTIONS(4322), - [anon_sym_static_assert] = ACTIONS(4322), - [anon_sym_concept] = ACTIONS(4322), - [anon_sym_co_return] = ACTIONS(4322), - [anon_sym_co_yield] = ACTIONS(4322), - [anon_sym_R_DQUOTE] = ACTIONS(4320), - [anon_sym_LR_DQUOTE] = ACTIONS(4320), - [anon_sym_uR_DQUOTE] = ACTIONS(4320), - [anon_sym_UR_DQUOTE] = ACTIONS(4320), - [anon_sym_u8R_DQUOTE] = ACTIONS(4320), - [anon_sym_co_await] = ACTIONS(4322), - [anon_sym_new] = ACTIONS(4322), - [anon_sym_requires] = ACTIONS(4322), - [anon_sym_CARET_CARET] = ACTIONS(4320), - [anon_sym_LBRACK_COLON] = ACTIONS(4320), - [sym_this] = ACTIONS(4322), + [STATE(536)] = { + [sym_identifier] = ACTIONS(4484), + [aux_sym_preproc_include_token1] = ACTIONS(4484), + [aux_sym_preproc_def_token1] = ACTIONS(4484), + [aux_sym_preproc_if_token1] = ACTIONS(4484), + [aux_sym_preproc_if_token2] = ACTIONS(4484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4484), + [aux_sym_preproc_else_token1] = ACTIONS(4484), + [aux_sym_preproc_elif_token1] = ACTIONS(4484), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4484), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4484), + [sym_preproc_directive] = ACTIONS(4484), + [anon_sym_LPAREN2] = ACTIONS(4486), + [anon_sym_BANG] = ACTIONS(4486), + [anon_sym_TILDE] = ACTIONS(4486), + [anon_sym_DASH] = ACTIONS(4484), + [anon_sym_PLUS] = ACTIONS(4484), + [anon_sym_STAR] = ACTIONS(4486), + [anon_sym_AMP_AMP] = ACTIONS(4486), + [anon_sym_AMP] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(4486), + [anon_sym___extension__] = ACTIONS(4484), + [anon_sym_typedef] = ACTIONS(4484), + [anon_sym_virtual] = ACTIONS(4484), + [anon_sym_extern] = ACTIONS(4484), + [anon_sym___attribute__] = ACTIONS(4484), + [anon_sym___attribute] = ACTIONS(4484), + [anon_sym_using] = ACTIONS(4484), + [anon_sym_COLON_COLON] = ACTIONS(4486), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4486), + [anon_sym___declspec] = ACTIONS(4484), + [anon_sym___based] = ACTIONS(4484), + [anon_sym___cdecl] = ACTIONS(4484), + [anon_sym___clrcall] = ACTIONS(4484), + [anon_sym___stdcall] = ACTIONS(4484), + [anon_sym___fastcall] = ACTIONS(4484), + [anon_sym___thiscall] = ACTIONS(4484), + [anon_sym___vectorcall] = ACTIONS(4484), + [anon_sym_LBRACE] = ACTIONS(4486), + [anon_sym_signed] = ACTIONS(4484), + [anon_sym_unsigned] = ACTIONS(4484), + [anon_sym_long] = ACTIONS(4484), + [anon_sym_short] = ACTIONS(4484), + [anon_sym_LBRACK] = ACTIONS(4484), + [anon_sym_static] = ACTIONS(4484), + [anon_sym_register] = ACTIONS(4484), + [anon_sym_inline] = ACTIONS(4484), + [anon_sym___inline] = ACTIONS(4484), + [anon_sym___inline__] = ACTIONS(4484), + [anon_sym___forceinline] = ACTIONS(4484), + [anon_sym_thread_local] = ACTIONS(4484), + [anon_sym___thread] = ACTIONS(4484), + [anon_sym_const] = ACTIONS(4484), + [anon_sym_constexpr] = ACTIONS(4484), + [anon_sym_volatile] = ACTIONS(4484), + [anon_sym_restrict] = ACTIONS(4484), + [anon_sym___restrict__] = ACTIONS(4484), + [anon_sym__Atomic] = ACTIONS(4484), + [anon_sym__Noreturn] = ACTIONS(4484), + [anon_sym_noreturn] = ACTIONS(4484), + [anon_sym__Nonnull] = ACTIONS(4484), + [anon_sym_mutable] = ACTIONS(4484), + [anon_sym_constinit] = ACTIONS(4484), + [anon_sym_consteval] = ACTIONS(4484), + [anon_sym_alignas] = ACTIONS(4484), + [anon_sym__Alignas] = ACTIONS(4484), + [sym_primitive_type] = ACTIONS(4484), + [anon_sym_enum] = ACTIONS(4484), + [anon_sym_class] = ACTIONS(4484), + [anon_sym_struct] = ACTIONS(4484), + [anon_sym_union] = ACTIONS(4484), + [anon_sym_if] = ACTIONS(4484), + [anon_sym_switch] = ACTIONS(4484), + [anon_sym_case] = ACTIONS(4484), + [anon_sym_default] = ACTIONS(4484), + [anon_sym_while] = ACTIONS(4484), + [anon_sym_do] = ACTIONS(4484), + [anon_sym_for] = ACTIONS(4484), + [anon_sym_return] = ACTIONS(4484), + [anon_sym_break] = ACTIONS(4484), + [anon_sym_continue] = ACTIONS(4484), + [anon_sym_goto] = ACTIONS(4484), + [anon_sym_not] = ACTIONS(4484), + [anon_sym_compl] = ACTIONS(4484), + [anon_sym_DASH_DASH] = ACTIONS(4486), + [anon_sym_PLUS_PLUS] = ACTIONS(4486), + [anon_sym_sizeof] = ACTIONS(4484), + [anon_sym___alignof__] = ACTIONS(4484), + [anon_sym___alignof] = ACTIONS(4484), + [anon_sym__alignof] = ACTIONS(4484), + [anon_sym_alignof] = ACTIONS(4484), + [anon_sym__Alignof] = ACTIONS(4484), + [anon_sym_offsetof] = ACTIONS(4484), + [anon_sym__Generic] = ACTIONS(4484), + [anon_sym_typename] = ACTIONS(4484), + [anon_sym_asm] = ACTIONS(4484), + [anon_sym___asm__] = ACTIONS(4484), + [anon_sym___asm] = ACTIONS(4484), + [sym_number_literal] = ACTIONS(4486), + [anon_sym_L_SQUOTE] = ACTIONS(4486), + [anon_sym_u_SQUOTE] = ACTIONS(4486), + [anon_sym_U_SQUOTE] = ACTIONS(4486), + [anon_sym_u8_SQUOTE] = ACTIONS(4486), + [anon_sym_SQUOTE] = ACTIONS(4486), + [anon_sym_L_DQUOTE] = ACTIONS(4486), + [anon_sym_u_DQUOTE] = ACTIONS(4486), + [anon_sym_U_DQUOTE] = ACTIONS(4486), + [anon_sym_u8_DQUOTE] = ACTIONS(4486), + [anon_sym_DQUOTE] = ACTIONS(4486), + [sym_true] = ACTIONS(4484), + [sym_false] = ACTIONS(4484), + [anon_sym_NULL] = ACTIONS(4484), + [anon_sym_nullptr] = ACTIONS(4484), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4484), + [anon_sym_decltype] = ACTIONS(4484), + [anon_sym_explicit] = ACTIONS(4484), + [anon_sym_export] = ACTIONS(4484), + [anon_sym_module] = ACTIONS(4484), + [anon_sym_import] = ACTIONS(4484), + [anon_sym_template] = ACTIONS(4484), + [anon_sym_operator] = ACTIONS(4484), + [anon_sym_try] = ACTIONS(4484), + [anon_sym_delete] = ACTIONS(4484), + [anon_sym_throw] = ACTIONS(4484), + [anon_sym_namespace] = ACTIONS(4484), + [anon_sym_static_assert] = ACTIONS(4484), + [anon_sym_concept] = ACTIONS(4484), + [anon_sym_co_return] = ACTIONS(4484), + [anon_sym_co_yield] = ACTIONS(4484), + [anon_sym_R_DQUOTE] = ACTIONS(4486), + [anon_sym_LR_DQUOTE] = ACTIONS(4486), + [anon_sym_uR_DQUOTE] = ACTIONS(4486), + [anon_sym_UR_DQUOTE] = ACTIONS(4486), + [anon_sym_u8R_DQUOTE] = ACTIONS(4486), + [anon_sym_co_await] = ACTIONS(4484), + [anon_sym_new] = ACTIONS(4484), + [anon_sym_requires] = ACTIONS(4484), + [anon_sym_CARET_CARET] = ACTIONS(4486), + [anon_sym_LBRACK_COLON] = ACTIONS(4486), + [sym_this] = ACTIONS(4484), }, - [STATE(595)] = { - [ts_builtin_sym_end] = ACTIONS(4174), - [sym_identifier] = ACTIONS(4172), - [aux_sym_preproc_include_token1] = ACTIONS(4172), - [aux_sym_preproc_def_token1] = ACTIONS(4172), - [aux_sym_preproc_if_token1] = ACTIONS(4172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4172), - [sym_preproc_directive] = ACTIONS(4172), - [anon_sym_LPAREN2] = ACTIONS(4174), - [anon_sym_BANG] = ACTIONS(4174), - [anon_sym_TILDE] = ACTIONS(4174), - [anon_sym_DASH] = ACTIONS(4172), - [anon_sym_PLUS] = ACTIONS(4172), - [anon_sym_STAR] = ACTIONS(4174), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_AMP] = ACTIONS(4172), - [anon_sym_SEMI] = ACTIONS(4174), - [anon_sym___extension__] = ACTIONS(4172), - [anon_sym_typedef] = ACTIONS(4172), - [anon_sym_virtual] = ACTIONS(4172), - [anon_sym_extern] = ACTIONS(4172), - [anon_sym___attribute__] = ACTIONS(4172), - [anon_sym___attribute] = ACTIONS(4172), - [anon_sym_using] = ACTIONS(4172), - [anon_sym_COLON_COLON] = ACTIONS(4174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4174), - [anon_sym___declspec] = ACTIONS(4172), - [anon_sym___based] = ACTIONS(4172), - [anon_sym___cdecl] = ACTIONS(4172), - [anon_sym___clrcall] = ACTIONS(4172), - [anon_sym___stdcall] = ACTIONS(4172), - [anon_sym___fastcall] = ACTIONS(4172), - [anon_sym___thiscall] = ACTIONS(4172), - [anon_sym___vectorcall] = ACTIONS(4172), - [anon_sym_LBRACE] = ACTIONS(4174), - [anon_sym_signed] = ACTIONS(4172), - [anon_sym_unsigned] = ACTIONS(4172), - [anon_sym_long] = ACTIONS(4172), - [anon_sym_short] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4172), - [anon_sym_static] = ACTIONS(4172), - [anon_sym_register] = ACTIONS(4172), - [anon_sym_inline] = ACTIONS(4172), - [anon_sym___inline] = ACTIONS(4172), - [anon_sym___inline__] = ACTIONS(4172), - [anon_sym___forceinline] = ACTIONS(4172), - [anon_sym_thread_local] = ACTIONS(4172), - [anon_sym___thread] = ACTIONS(4172), - [anon_sym_const] = ACTIONS(4172), - [anon_sym_constexpr] = ACTIONS(4172), - [anon_sym_volatile] = ACTIONS(4172), - [anon_sym_restrict] = ACTIONS(4172), - [anon_sym___restrict__] = ACTIONS(4172), - [anon_sym__Atomic] = ACTIONS(4172), - [anon_sym__Noreturn] = ACTIONS(4172), - [anon_sym_noreturn] = ACTIONS(4172), - [anon_sym__Nonnull] = ACTIONS(4172), - [anon_sym_mutable] = ACTIONS(4172), - [anon_sym_constinit] = ACTIONS(4172), - [anon_sym_consteval] = ACTIONS(4172), - [anon_sym_alignas] = ACTIONS(4172), - [anon_sym__Alignas] = ACTIONS(4172), - [sym_primitive_type] = ACTIONS(4172), - [anon_sym_enum] = ACTIONS(4172), - [anon_sym_class] = ACTIONS(4172), - [anon_sym_struct] = ACTIONS(4172), - [anon_sym_union] = ACTIONS(4172), - [anon_sym_if] = ACTIONS(4172), - [anon_sym_switch] = ACTIONS(4172), - [anon_sym_case] = ACTIONS(4172), - [anon_sym_default] = ACTIONS(4172), - [anon_sym_while] = ACTIONS(4172), - [anon_sym_do] = ACTIONS(4172), - [anon_sym_for] = ACTIONS(4172), - [anon_sym_return] = ACTIONS(4172), - [anon_sym_break] = ACTIONS(4172), - [anon_sym_continue] = ACTIONS(4172), - [anon_sym_goto] = ACTIONS(4172), - [anon_sym_not] = ACTIONS(4172), - [anon_sym_compl] = ACTIONS(4172), - [anon_sym_DASH_DASH] = ACTIONS(4174), - [anon_sym_PLUS_PLUS] = ACTIONS(4174), - [anon_sym_sizeof] = ACTIONS(4172), - [anon_sym___alignof__] = ACTIONS(4172), - [anon_sym___alignof] = ACTIONS(4172), - [anon_sym__alignof] = ACTIONS(4172), - [anon_sym_alignof] = ACTIONS(4172), - [anon_sym__Alignof] = ACTIONS(4172), - [anon_sym_offsetof] = ACTIONS(4172), - [anon_sym__Generic] = ACTIONS(4172), - [anon_sym_typename] = ACTIONS(4172), - [anon_sym_asm] = ACTIONS(4172), - [anon_sym___asm__] = ACTIONS(4172), - [anon_sym___asm] = ACTIONS(4172), - [sym_number_literal] = ACTIONS(4174), - [anon_sym_L_SQUOTE] = ACTIONS(4174), - [anon_sym_u_SQUOTE] = ACTIONS(4174), - [anon_sym_U_SQUOTE] = ACTIONS(4174), - [anon_sym_u8_SQUOTE] = ACTIONS(4174), - [anon_sym_SQUOTE] = ACTIONS(4174), - [anon_sym_L_DQUOTE] = ACTIONS(4174), - [anon_sym_u_DQUOTE] = ACTIONS(4174), - [anon_sym_U_DQUOTE] = ACTIONS(4174), - [anon_sym_u8_DQUOTE] = ACTIONS(4174), - [anon_sym_DQUOTE] = ACTIONS(4174), - [sym_true] = ACTIONS(4172), - [sym_false] = ACTIONS(4172), - [anon_sym_NULL] = ACTIONS(4172), - [anon_sym_nullptr] = ACTIONS(4172), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4172), - [anon_sym_decltype] = ACTIONS(4172), - [anon_sym_explicit] = ACTIONS(4172), - [anon_sym_export] = ACTIONS(4172), - [anon_sym_module] = ACTIONS(4172), - [anon_sym_import] = ACTIONS(4172), - [anon_sym_template] = ACTIONS(4172), - [anon_sym_operator] = ACTIONS(4172), - [anon_sym_try] = ACTIONS(4172), - [anon_sym_delete] = ACTIONS(4172), - [anon_sym_throw] = ACTIONS(4172), - [anon_sym_namespace] = ACTIONS(4172), - [anon_sym_static_assert] = ACTIONS(4172), - [anon_sym_concept] = ACTIONS(4172), - [anon_sym_co_return] = ACTIONS(4172), - [anon_sym_co_yield] = ACTIONS(4172), - [anon_sym_R_DQUOTE] = ACTIONS(4174), - [anon_sym_LR_DQUOTE] = ACTIONS(4174), - [anon_sym_uR_DQUOTE] = ACTIONS(4174), - [anon_sym_UR_DQUOTE] = ACTIONS(4174), - [anon_sym_u8R_DQUOTE] = ACTIONS(4174), - [anon_sym_co_await] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_requires] = ACTIONS(4172), - [anon_sym_CARET_CARET] = ACTIONS(4174), - [anon_sym_LBRACK_COLON] = ACTIONS(4174), - [sym_this] = ACTIONS(4172), + [STATE(537)] = { + [sym_identifier] = ACTIONS(4488), + [aux_sym_preproc_include_token1] = ACTIONS(4488), + [aux_sym_preproc_def_token1] = ACTIONS(4488), + [aux_sym_preproc_if_token1] = ACTIONS(4488), + [aux_sym_preproc_if_token2] = ACTIONS(4488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4488), + [aux_sym_preproc_else_token1] = ACTIONS(4488), + [aux_sym_preproc_elif_token1] = ACTIONS(4488), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4488), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4488), + [sym_preproc_directive] = ACTIONS(4488), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_BANG] = ACTIONS(4490), + [anon_sym_TILDE] = ACTIONS(4490), + [anon_sym_DASH] = ACTIONS(4488), + [anon_sym_PLUS] = ACTIONS(4488), + [anon_sym_STAR] = ACTIONS(4490), + [anon_sym_AMP_AMP] = ACTIONS(4490), + [anon_sym_AMP] = ACTIONS(4488), + [anon_sym_SEMI] = ACTIONS(4490), + [anon_sym___extension__] = ACTIONS(4488), + [anon_sym_typedef] = ACTIONS(4488), + [anon_sym_virtual] = ACTIONS(4488), + [anon_sym_extern] = ACTIONS(4488), + [anon_sym___attribute__] = ACTIONS(4488), + [anon_sym___attribute] = ACTIONS(4488), + [anon_sym_using] = ACTIONS(4488), + [anon_sym_COLON_COLON] = ACTIONS(4490), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4490), + [anon_sym___declspec] = ACTIONS(4488), + [anon_sym___based] = ACTIONS(4488), + [anon_sym___cdecl] = ACTIONS(4488), + [anon_sym___clrcall] = ACTIONS(4488), + [anon_sym___stdcall] = ACTIONS(4488), + [anon_sym___fastcall] = ACTIONS(4488), + [anon_sym___thiscall] = ACTIONS(4488), + [anon_sym___vectorcall] = ACTIONS(4488), + [anon_sym_LBRACE] = ACTIONS(4490), + [anon_sym_signed] = ACTIONS(4488), + [anon_sym_unsigned] = ACTIONS(4488), + [anon_sym_long] = ACTIONS(4488), + [anon_sym_short] = ACTIONS(4488), + [anon_sym_LBRACK] = ACTIONS(4488), + [anon_sym_static] = ACTIONS(4488), + [anon_sym_register] = ACTIONS(4488), + [anon_sym_inline] = ACTIONS(4488), + [anon_sym___inline] = ACTIONS(4488), + [anon_sym___inline__] = ACTIONS(4488), + [anon_sym___forceinline] = ACTIONS(4488), + [anon_sym_thread_local] = ACTIONS(4488), + [anon_sym___thread] = ACTIONS(4488), + [anon_sym_const] = ACTIONS(4488), + [anon_sym_constexpr] = ACTIONS(4488), + [anon_sym_volatile] = ACTIONS(4488), + [anon_sym_restrict] = ACTIONS(4488), + [anon_sym___restrict__] = ACTIONS(4488), + [anon_sym__Atomic] = ACTIONS(4488), + [anon_sym__Noreturn] = ACTIONS(4488), + [anon_sym_noreturn] = ACTIONS(4488), + [anon_sym__Nonnull] = ACTIONS(4488), + [anon_sym_mutable] = ACTIONS(4488), + [anon_sym_constinit] = ACTIONS(4488), + [anon_sym_consteval] = ACTIONS(4488), + [anon_sym_alignas] = ACTIONS(4488), + [anon_sym__Alignas] = ACTIONS(4488), + [sym_primitive_type] = ACTIONS(4488), + [anon_sym_enum] = ACTIONS(4488), + [anon_sym_class] = ACTIONS(4488), + [anon_sym_struct] = ACTIONS(4488), + [anon_sym_union] = ACTIONS(4488), + [anon_sym_if] = ACTIONS(4488), + [anon_sym_switch] = ACTIONS(4488), + [anon_sym_case] = ACTIONS(4488), + [anon_sym_default] = ACTIONS(4488), + [anon_sym_while] = ACTIONS(4488), + [anon_sym_do] = ACTIONS(4488), + [anon_sym_for] = ACTIONS(4488), + [anon_sym_return] = ACTIONS(4488), + [anon_sym_break] = ACTIONS(4488), + [anon_sym_continue] = ACTIONS(4488), + [anon_sym_goto] = ACTIONS(4488), + [anon_sym_not] = ACTIONS(4488), + [anon_sym_compl] = ACTIONS(4488), + [anon_sym_DASH_DASH] = ACTIONS(4490), + [anon_sym_PLUS_PLUS] = ACTIONS(4490), + [anon_sym_sizeof] = ACTIONS(4488), + [anon_sym___alignof__] = ACTIONS(4488), + [anon_sym___alignof] = ACTIONS(4488), + [anon_sym__alignof] = ACTIONS(4488), + [anon_sym_alignof] = ACTIONS(4488), + [anon_sym__Alignof] = ACTIONS(4488), + [anon_sym_offsetof] = ACTIONS(4488), + [anon_sym__Generic] = ACTIONS(4488), + [anon_sym_typename] = ACTIONS(4488), + [anon_sym_asm] = ACTIONS(4488), + [anon_sym___asm__] = ACTIONS(4488), + [anon_sym___asm] = ACTIONS(4488), + [sym_number_literal] = ACTIONS(4490), + [anon_sym_L_SQUOTE] = ACTIONS(4490), + [anon_sym_u_SQUOTE] = ACTIONS(4490), + [anon_sym_U_SQUOTE] = ACTIONS(4490), + [anon_sym_u8_SQUOTE] = ACTIONS(4490), + [anon_sym_SQUOTE] = ACTIONS(4490), + [anon_sym_L_DQUOTE] = ACTIONS(4490), + [anon_sym_u_DQUOTE] = ACTIONS(4490), + [anon_sym_U_DQUOTE] = ACTIONS(4490), + [anon_sym_u8_DQUOTE] = ACTIONS(4490), + [anon_sym_DQUOTE] = ACTIONS(4490), + [sym_true] = ACTIONS(4488), + [sym_false] = ACTIONS(4488), + [anon_sym_NULL] = ACTIONS(4488), + [anon_sym_nullptr] = ACTIONS(4488), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4488), + [anon_sym_decltype] = ACTIONS(4488), + [anon_sym_explicit] = ACTIONS(4488), + [anon_sym_export] = ACTIONS(4488), + [anon_sym_module] = ACTIONS(4488), + [anon_sym_import] = ACTIONS(4488), + [anon_sym_template] = ACTIONS(4488), + [anon_sym_operator] = ACTIONS(4488), + [anon_sym_try] = ACTIONS(4488), + [anon_sym_delete] = ACTIONS(4488), + [anon_sym_throw] = ACTIONS(4488), + [anon_sym_namespace] = ACTIONS(4488), + [anon_sym_static_assert] = ACTIONS(4488), + [anon_sym_concept] = ACTIONS(4488), + [anon_sym_co_return] = ACTIONS(4488), + [anon_sym_co_yield] = ACTIONS(4488), + [anon_sym_R_DQUOTE] = ACTIONS(4490), + [anon_sym_LR_DQUOTE] = ACTIONS(4490), + [anon_sym_uR_DQUOTE] = ACTIONS(4490), + [anon_sym_UR_DQUOTE] = ACTIONS(4490), + [anon_sym_u8R_DQUOTE] = ACTIONS(4490), + [anon_sym_co_await] = ACTIONS(4488), + [anon_sym_new] = ACTIONS(4488), + [anon_sym_requires] = ACTIONS(4488), + [anon_sym_CARET_CARET] = ACTIONS(4490), + [anon_sym_LBRACK_COLON] = ACTIONS(4490), + [sym_this] = ACTIONS(4488), }, - [STATE(596)] = { - [sym_identifier] = ACTIONS(3884), - [aux_sym_preproc_include_token1] = ACTIONS(3884), - [aux_sym_preproc_def_token1] = ACTIONS(3884), - [aux_sym_preproc_if_token1] = ACTIONS(3884), - [aux_sym_preproc_if_token2] = ACTIONS(3884), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3884), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3884), - [sym_preproc_directive] = ACTIONS(3884), - [anon_sym_LPAREN2] = ACTIONS(3886), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3886), - [anon_sym_AMP_AMP] = ACTIONS(3886), - [anon_sym_AMP] = ACTIONS(3884), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym___extension__] = ACTIONS(3884), - [anon_sym_typedef] = ACTIONS(3884), - [anon_sym_virtual] = ACTIONS(3884), - [anon_sym_extern] = ACTIONS(3884), - [anon_sym___attribute__] = ACTIONS(3884), - [anon_sym___attribute] = ACTIONS(3884), - [anon_sym_using] = 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___cdecl] = ACTIONS(3884), - [anon_sym___clrcall] = ACTIONS(3884), - [anon_sym___stdcall] = ACTIONS(3884), - [anon_sym___fastcall] = ACTIONS(3884), - [anon_sym___thiscall] = ACTIONS(3884), - [anon_sym___vectorcall] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_signed] = ACTIONS(3884), - [anon_sym_unsigned] = ACTIONS(3884), - [anon_sym_long] = ACTIONS(3884), - [anon_sym_short] = ACTIONS(3884), - [anon_sym_LBRACK] = ACTIONS(3884), - [anon_sym_static] = ACTIONS(3884), - [anon_sym_register] = ACTIONS(3884), - [anon_sym_inline] = ACTIONS(3884), - [anon_sym___inline] = ACTIONS(3884), - [anon_sym___inline__] = ACTIONS(3884), - [anon_sym___forceinline] = ACTIONS(3884), - [anon_sym_thread_local] = ACTIONS(3884), - [anon_sym___thread] = ACTIONS(3884), - [anon_sym_const] = ACTIONS(3884), - [anon_sym_constexpr] = ACTIONS(3884), - [anon_sym_volatile] = ACTIONS(3884), - [anon_sym_restrict] = ACTIONS(3884), - [anon_sym___restrict__] = ACTIONS(3884), - [anon_sym__Atomic] = ACTIONS(3884), - [anon_sym__Noreturn] = ACTIONS(3884), - [anon_sym_noreturn] = ACTIONS(3884), - [anon_sym__Nonnull] = ACTIONS(3884), - [anon_sym_mutable] = ACTIONS(3884), - [anon_sym_constinit] = ACTIONS(3884), - [anon_sym_consteval] = ACTIONS(3884), - [anon_sym_alignas] = ACTIONS(3884), - [anon_sym__Alignas] = ACTIONS(3884), - [sym_primitive_type] = ACTIONS(3884), - [anon_sym_enum] = ACTIONS(3884), - [anon_sym_class] = ACTIONS(3884), - [anon_sym_struct] = ACTIONS(3884), - [anon_sym_union] = ACTIONS(3884), - [anon_sym_if] = ACTIONS(3884), - [anon_sym_else] = ACTIONS(3884), - [anon_sym_switch] = ACTIONS(3884), - [anon_sym_case] = ACTIONS(3884), - [anon_sym_default] = ACTIONS(3884), - [anon_sym_while] = ACTIONS(3884), - [anon_sym_do] = ACTIONS(3884), - [anon_sym_for] = ACTIONS(3884), - [anon_sym_return] = ACTIONS(3884), - [anon_sym_break] = ACTIONS(3884), - [anon_sym_continue] = ACTIONS(3884), - [anon_sym_goto] = ACTIONS(3884), - [anon_sym___try] = ACTIONS(3884), - [anon_sym___leave] = ACTIONS(3884), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3886), - [anon_sym_PLUS_PLUS] = ACTIONS(3886), - [anon_sym_sizeof] = ACTIONS(3884), - [anon_sym___alignof__] = ACTIONS(3884), - [anon_sym___alignof] = ACTIONS(3884), - [anon_sym__alignof] = ACTIONS(3884), - [anon_sym_alignof] = ACTIONS(3884), - [anon_sym__Alignof] = ACTIONS(3884), - [anon_sym_offsetof] = ACTIONS(3884), - [anon_sym__Generic] = ACTIONS(3884), - [anon_sym_typename] = ACTIONS(3884), - [anon_sym_asm] = ACTIONS(3884), - [anon_sym___asm__] = ACTIONS(3884), - [anon_sym___asm] = ACTIONS(3884), - [sym_number_literal] = ACTIONS(3886), - [anon_sym_L_SQUOTE] = ACTIONS(3886), - [anon_sym_u_SQUOTE] = ACTIONS(3886), - [anon_sym_U_SQUOTE] = ACTIONS(3886), - [anon_sym_u8_SQUOTE] = ACTIONS(3886), - [anon_sym_SQUOTE] = ACTIONS(3886), - [anon_sym_L_DQUOTE] = ACTIONS(3886), - [anon_sym_u_DQUOTE] = ACTIONS(3886), - [anon_sym_U_DQUOTE] = ACTIONS(3886), - [anon_sym_u8_DQUOTE] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(3886), - [sym_true] = ACTIONS(3884), - [sym_false] = ACTIONS(3884), - [anon_sym_NULL] = ACTIONS(3884), - [anon_sym_nullptr] = ACTIONS(3884), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3884), - [anon_sym_decltype] = ACTIONS(3884), - [anon_sym_explicit] = ACTIONS(3884), - [anon_sym_template] = ACTIONS(3884), - [anon_sym_operator] = ACTIONS(3884), - [anon_sym_try] = ACTIONS(3884), - [anon_sym_delete] = ACTIONS(3884), - [anon_sym_throw] = ACTIONS(3884), - [anon_sym_namespace] = ACTIONS(3884), - [anon_sym_static_assert] = ACTIONS(3884), - [anon_sym_concept] = ACTIONS(3884), - [anon_sym_co_return] = ACTIONS(3884), - [anon_sym_co_yield] = ACTIONS(3884), - [anon_sym_R_DQUOTE] = ACTIONS(3886), - [anon_sym_LR_DQUOTE] = ACTIONS(3886), - [anon_sym_uR_DQUOTE] = ACTIONS(3886), - [anon_sym_UR_DQUOTE] = ACTIONS(3886), - [anon_sym_u8R_DQUOTE] = ACTIONS(3886), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(3884), - [anon_sym_requires] = ACTIONS(3884), - [anon_sym_CARET_CARET] = ACTIONS(3886), - [anon_sym_LBRACK_COLON] = ACTIONS(3886), - [sym_this] = ACTIONS(3884), + [STATE(538)] = { + [sym_identifier] = ACTIONS(4492), + [aux_sym_preproc_include_token1] = ACTIONS(4492), + [aux_sym_preproc_def_token1] = ACTIONS(4492), + [aux_sym_preproc_if_token1] = ACTIONS(4492), + [aux_sym_preproc_if_token2] = ACTIONS(4492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4492), + [aux_sym_preproc_else_token1] = ACTIONS(4492), + [aux_sym_preproc_elif_token1] = ACTIONS(4492), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4492), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4492), + [sym_preproc_directive] = ACTIONS(4492), + [anon_sym_LPAREN2] = ACTIONS(4494), + [anon_sym_BANG] = ACTIONS(4494), + [anon_sym_TILDE] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4492), + [anon_sym_PLUS] = ACTIONS(4492), + [anon_sym_STAR] = ACTIONS(4494), + [anon_sym_AMP_AMP] = ACTIONS(4494), + [anon_sym_AMP] = ACTIONS(4492), + [anon_sym_SEMI] = ACTIONS(4494), + [anon_sym___extension__] = ACTIONS(4492), + [anon_sym_typedef] = ACTIONS(4492), + [anon_sym_virtual] = ACTIONS(4492), + [anon_sym_extern] = ACTIONS(4492), + [anon_sym___attribute__] = ACTIONS(4492), + [anon_sym___attribute] = ACTIONS(4492), + [anon_sym_using] = ACTIONS(4492), + [anon_sym_COLON_COLON] = ACTIONS(4494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4494), + [anon_sym___declspec] = ACTIONS(4492), + [anon_sym___based] = ACTIONS(4492), + [anon_sym___cdecl] = ACTIONS(4492), + [anon_sym___clrcall] = ACTIONS(4492), + [anon_sym___stdcall] = ACTIONS(4492), + [anon_sym___fastcall] = ACTIONS(4492), + [anon_sym___thiscall] = ACTIONS(4492), + [anon_sym___vectorcall] = ACTIONS(4492), + [anon_sym_LBRACE] = ACTIONS(4494), + [anon_sym_signed] = ACTIONS(4492), + [anon_sym_unsigned] = ACTIONS(4492), + [anon_sym_long] = ACTIONS(4492), + [anon_sym_short] = ACTIONS(4492), + [anon_sym_LBRACK] = ACTIONS(4492), + [anon_sym_static] = ACTIONS(4492), + [anon_sym_register] = ACTIONS(4492), + [anon_sym_inline] = ACTIONS(4492), + [anon_sym___inline] = ACTIONS(4492), + [anon_sym___inline__] = ACTIONS(4492), + [anon_sym___forceinline] = ACTIONS(4492), + [anon_sym_thread_local] = ACTIONS(4492), + [anon_sym___thread] = ACTIONS(4492), + [anon_sym_const] = ACTIONS(4492), + [anon_sym_constexpr] = ACTIONS(4492), + [anon_sym_volatile] = ACTIONS(4492), + [anon_sym_restrict] = ACTIONS(4492), + [anon_sym___restrict__] = ACTIONS(4492), + [anon_sym__Atomic] = ACTIONS(4492), + [anon_sym__Noreturn] = ACTIONS(4492), + [anon_sym_noreturn] = ACTIONS(4492), + [anon_sym__Nonnull] = ACTIONS(4492), + [anon_sym_mutable] = ACTIONS(4492), + [anon_sym_constinit] = ACTIONS(4492), + [anon_sym_consteval] = ACTIONS(4492), + [anon_sym_alignas] = ACTIONS(4492), + [anon_sym__Alignas] = ACTIONS(4492), + [sym_primitive_type] = ACTIONS(4492), + [anon_sym_enum] = ACTIONS(4492), + [anon_sym_class] = ACTIONS(4492), + [anon_sym_struct] = ACTIONS(4492), + [anon_sym_union] = ACTIONS(4492), + [anon_sym_if] = ACTIONS(4492), + [anon_sym_switch] = ACTIONS(4492), + [anon_sym_case] = ACTIONS(4492), + [anon_sym_default] = ACTIONS(4492), + [anon_sym_while] = ACTIONS(4492), + [anon_sym_do] = ACTIONS(4492), + [anon_sym_for] = ACTIONS(4492), + [anon_sym_return] = ACTIONS(4492), + [anon_sym_break] = ACTIONS(4492), + [anon_sym_continue] = ACTIONS(4492), + [anon_sym_goto] = ACTIONS(4492), + [anon_sym_not] = ACTIONS(4492), + [anon_sym_compl] = ACTIONS(4492), + [anon_sym_DASH_DASH] = ACTIONS(4494), + [anon_sym_PLUS_PLUS] = ACTIONS(4494), + [anon_sym_sizeof] = ACTIONS(4492), + [anon_sym___alignof__] = ACTIONS(4492), + [anon_sym___alignof] = ACTIONS(4492), + [anon_sym__alignof] = ACTIONS(4492), + [anon_sym_alignof] = ACTIONS(4492), + [anon_sym__Alignof] = ACTIONS(4492), + [anon_sym_offsetof] = ACTIONS(4492), + [anon_sym__Generic] = ACTIONS(4492), + [anon_sym_typename] = ACTIONS(4492), + [anon_sym_asm] = ACTIONS(4492), + [anon_sym___asm__] = ACTIONS(4492), + [anon_sym___asm] = ACTIONS(4492), + [sym_number_literal] = ACTIONS(4494), + [anon_sym_L_SQUOTE] = ACTIONS(4494), + [anon_sym_u_SQUOTE] = ACTIONS(4494), + [anon_sym_U_SQUOTE] = ACTIONS(4494), + [anon_sym_u8_SQUOTE] = ACTIONS(4494), + [anon_sym_SQUOTE] = ACTIONS(4494), + [anon_sym_L_DQUOTE] = ACTIONS(4494), + [anon_sym_u_DQUOTE] = ACTIONS(4494), + [anon_sym_U_DQUOTE] = ACTIONS(4494), + [anon_sym_u8_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE] = ACTIONS(4494), + [sym_true] = ACTIONS(4492), + [sym_false] = ACTIONS(4492), + [anon_sym_NULL] = ACTIONS(4492), + [anon_sym_nullptr] = ACTIONS(4492), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4492), + [anon_sym_decltype] = ACTIONS(4492), + [anon_sym_explicit] = ACTIONS(4492), + [anon_sym_export] = ACTIONS(4492), + [anon_sym_module] = ACTIONS(4492), + [anon_sym_import] = ACTIONS(4492), + [anon_sym_template] = ACTIONS(4492), + [anon_sym_operator] = ACTIONS(4492), + [anon_sym_try] = ACTIONS(4492), + [anon_sym_delete] = ACTIONS(4492), + [anon_sym_throw] = ACTIONS(4492), + [anon_sym_namespace] = ACTIONS(4492), + [anon_sym_static_assert] = ACTIONS(4492), + [anon_sym_concept] = ACTIONS(4492), + [anon_sym_co_return] = ACTIONS(4492), + [anon_sym_co_yield] = ACTIONS(4492), + [anon_sym_R_DQUOTE] = ACTIONS(4494), + [anon_sym_LR_DQUOTE] = ACTIONS(4494), + [anon_sym_uR_DQUOTE] = ACTIONS(4494), + [anon_sym_UR_DQUOTE] = ACTIONS(4494), + [anon_sym_u8R_DQUOTE] = ACTIONS(4494), + [anon_sym_co_await] = ACTIONS(4492), + [anon_sym_new] = ACTIONS(4492), + [anon_sym_requires] = ACTIONS(4492), + [anon_sym_CARET_CARET] = ACTIONS(4494), + [anon_sym_LBRACK_COLON] = ACTIONS(4494), + [sym_this] = ACTIONS(4492), }, - [STATE(597)] = { - [ts_builtin_sym_end] = ACTIONS(3900), - [sym_identifier] = ACTIONS(3898), - [aux_sym_preproc_include_token1] = ACTIONS(3898), - [aux_sym_preproc_def_token1] = ACTIONS(3898), - [aux_sym_preproc_if_token1] = ACTIONS(3898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3898), - [sym_preproc_directive] = ACTIONS(3898), - [anon_sym_LPAREN2] = ACTIONS(3900), - [anon_sym_BANG] = ACTIONS(3900), - [anon_sym_TILDE] = ACTIONS(3900), - [anon_sym_DASH] = ACTIONS(3898), - [anon_sym_PLUS] = ACTIONS(3898), - [anon_sym_STAR] = ACTIONS(3900), - [anon_sym_AMP_AMP] = ACTIONS(3900), - [anon_sym_AMP] = ACTIONS(3898), - [anon_sym_SEMI] = ACTIONS(3900), - [anon_sym___extension__] = ACTIONS(3898), - [anon_sym_typedef] = ACTIONS(3898), - [anon_sym_virtual] = ACTIONS(3898), - [anon_sym_extern] = ACTIONS(3898), - [anon_sym___attribute__] = ACTIONS(3898), - [anon_sym___attribute] = ACTIONS(3898), - [anon_sym_using] = ACTIONS(3898), - [anon_sym_COLON_COLON] = ACTIONS(3900), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3900), - [anon_sym___declspec] = ACTIONS(3898), - [anon_sym___based] = ACTIONS(3898), - [anon_sym___cdecl] = ACTIONS(3898), - [anon_sym___clrcall] = ACTIONS(3898), - [anon_sym___stdcall] = ACTIONS(3898), - [anon_sym___fastcall] = ACTIONS(3898), - [anon_sym___thiscall] = ACTIONS(3898), - [anon_sym___vectorcall] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(3900), - [anon_sym_signed] = ACTIONS(3898), - [anon_sym_unsigned] = ACTIONS(3898), - [anon_sym_long] = ACTIONS(3898), - [anon_sym_short] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(3898), - [anon_sym_static] = ACTIONS(3898), - [anon_sym_register] = ACTIONS(3898), - [anon_sym_inline] = ACTIONS(3898), - [anon_sym___inline] = ACTIONS(3898), - [anon_sym___inline__] = ACTIONS(3898), - [anon_sym___forceinline] = ACTIONS(3898), - [anon_sym_thread_local] = ACTIONS(3898), - [anon_sym___thread] = ACTIONS(3898), - [anon_sym_const] = ACTIONS(3898), - [anon_sym_constexpr] = ACTIONS(3898), - [anon_sym_volatile] = ACTIONS(3898), - [anon_sym_restrict] = ACTIONS(3898), - [anon_sym___restrict__] = ACTIONS(3898), - [anon_sym__Atomic] = ACTIONS(3898), - [anon_sym__Noreturn] = ACTIONS(3898), - [anon_sym_noreturn] = ACTIONS(3898), - [anon_sym__Nonnull] = ACTIONS(3898), - [anon_sym_mutable] = ACTIONS(3898), - [anon_sym_constinit] = ACTIONS(3898), - [anon_sym_consteval] = ACTIONS(3898), - [anon_sym_alignas] = ACTIONS(3898), - [anon_sym__Alignas] = ACTIONS(3898), - [sym_primitive_type] = ACTIONS(3898), - [anon_sym_enum] = ACTIONS(3898), - [anon_sym_class] = ACTIONS(3898), - [anon_sym_struct] = ACTIONS(3898), - [anon_sym_union] = ACTIONS(3898), - [anon_sym_if] = ACTIONS(3898), - [anon_sym_switch] = ACTIONS(3898), - [anon_sym_case] = ACTIONS(3898), - [anon_sym_default] = ACTIONS(3898), - [anon_sym_while] = ACTIONS(3898), - [anon_sym_do] = ACTIONS(3898), - [anon_sym_for] = ACTIONS(3898), - [anon_sym_return] = ACTIONS(3898), - [anon_sym_break] = ACTIONS(3898), - [anon_sym_continue] = ACTIONS(3898), - [anon_sym_goto] = ACTIONS(3898), - [anon_sym_not] = ACTIONS(3898), - [anon_sym_compl] = ACTIONS(3898), - [anon_sym_DASH_DASH] = ACTIONS(3900), - [anon_sym_PLUS_PLUS] = ACTIONS(3900), - [anon_sym_sizeof] = ACTIONS(3898), - [anon_sym___alignof__] = ACTIONS(3898), - [anon_sym___alignof] = ACTIONS(3898), - [anon_sym__alignof] = ACTIONS(3898), - [anon_sym_alignof] = ACTIONS(3898), - [anon_sym__Alignof] = ACTIONS(3898), - [anon_sym_offsetof] = ACTIONS(3898), - [anon_sym__Generic] = ACTIONS(3898), - [anon_sym_typename] = ACTIONS(3898), - [anon_sym_asm] = ACTIONS(3898), - [anon_sym___asm__] = ACTIONS(3898), - [anon_sym___asm] = ACTIONS(3898), - [sym_number_literal] = ACTIONS(3900), - [anon_sym_L_SQUOTE] = ACTIONS(3900), - [anon_sym_u_SQUOTE] = ACTIONS(3900), - [anon_sym_U_SQUOTE] = ACTIONS(3900), - [anon_sym_u8_SQUOTE] = ACTIONS(3900), - [anon_sym_SQUOTE] = ACTIONS(3900), - [anon_sym_L_DQUOTE] = ACTIONS(3900), - [anon_sym_u_DQUOTE] = ACTIONS(3900), - [anon_sym_U_DQUOTE] = ACTIONS(3900), - [anon_sym_u8_DQUOTE] = ACTIONS(3900), - [anon_sym_DQUOTE] = ACTIONS(3900), - [sym_true] = ACTIONS(3898), - [sym_false] = ACTIONS(3898), - [anon_sym_NULL] = ACTIONS(3898), - [anon_sym_nullptr] = ACTIONS(3898), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3898), - [anon_sym_decltype] = ACTIONS(3898), - [anon_sym_explicit] = ACTIONS(3898), - [anon_sym_export] = ACTIONS(3898), - [anon_sym_module] = ACTIONS(3898), - [anon_sym_import] = ACTIONS(3898), - [anon_sym_template] = ACTIONS(3898), - [anon_sym_operator] = ACTIONS(3898), - [anon_sym_try] = ACTIONS(3898), - [anon_sym_delete] = ACTIONS(3898), - [anon_sym_throw] = ACTIONS(3898), - [anon_sym_namespace] = ACTIONS(3898), - [anon_sym_static_assert] = ACTIONS(3898), - [anon_sym_concept] = ACTIONS(3898), - [anon_sym_co_return] = ACTIONS(3898), - [anon_sym_co_yield] = ACTIONS(3898), - [anon_sym_R_DQUOTE] = ACTIONS(3900), - [anon_sym_LR_DQUOTE] = ACTIONS(3900), - [anon_sym_uR_DQUOTE] = ACTIONS(3900), - [anon_sym_UR_DQUOTE] = ACTIONS(3900), - [anon_sym_u8R_DQUOTE] = ACTIONS(3900), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3898), - [anon_sym_requires] = ACTIONS(3898), - [anon_sym_CARET_CARET] = ACTIONS(3900), - [anon_sym_LBRACK_COLON] = ACTIONS(3900), - [sym_this] = ACTIONS(3898), + [STATE(539)] = { + [sym_catch_clause] = STATE(521), + [aux_sym_constructor_try_statement_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(3178), + [aux_sym_preproc_include_token1] = ACTIONS(3178), + [aux_sym_preproc_def_token1] = ACTIONS(3178), + [aux_sym_preproc_if_token1] = ACTIONS(3178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3178), + [sym_preproc_directive] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3180), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_TILDE] = ACTIONS(3180), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_AMP_AMP] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym___extension__] = ACTIONS(3178), + [anon_sym_typedef] = ACTIONS(3178), + [anon_sym_virtual] = ACTIONS(3178), + [anon_sym_extern] = ACTIONS(3178), + [anon_sym___attribute__] = ACTIONS(3178), + [anon_sym___attribute] = ACTIONS(3178), + [anon_sym_using] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3180), + [anon_sym___declspec] = ACTIONS(3178), + [anon_sym___based] = ACTIONS(3178), + [anon_sym___cdecl] = ACTIONS(3178), + [anon_sym___clrcall] = ACTIONS(3178), + [anon_sym___stdcall] = ACTIONS(3178), + [anon_sym___fastcall] = ACTIONS(3178), + [anon_sym___thiscall] = ACTIONS(3178), + [anon_sym___vectorcall] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3180), + [anon_sym_RBRACE] = ACTIONS(3180), + [anon_sym_signed] = ACTIONS(3178), + [anon_sym_unsigned] = ACTIONS(3178), + [anon_sym_long] = ACTIONS(3178), + [anon_sym_short] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_static] = ACTIONS(3178), + [anon_sym_register] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym___inline] = ACTIONS(3178), + [anon_sym___inline__] = ACTIONS(3178), + [anon_sym___forceinline] = ACTIONS(3178), + [anon_sym_thread_local] = ACTIONS(3178), + [anon_sym___thread] = ACTIONS(3178), + [anon_sym_const] = ACTIONS(3178), + [anon_sym_constexpr] = ACTIONS(3178), + [anon_sym_volatile] = ACTIONS(3178), + [anon_sym_restrict] = ACTIONS(3178), + [anon_sym___restrict__] = ACTIONS(3178), + [anon_sym__Atomic] = ACTIONS(3178), + [anon_sym__Noreturn] = ACTIONS(3178), + [anon_sym_noreturn] = ACTIONS(3178), + [anon_sym__Nonnull] = ACTIONS(3178), + [anon_sym_mutable] = ACTIONS(3178), + [anon_sym_constinit] = ACTIONS(3178), + [anon_sym_consteval] = ACTIONS(3178), + [anon_sym_alignas] = ACTIONS(3178), + [anon_sym__Alignas] = ACTIONS(3178), + [sym_primitive_type] = ACTIONS(3178), + [anon_sym_enum] = ACTIONS(3178), + [anon_sym_class] = ACTIONS(3178), + [anon_sym_struct] = ACTIONS(3178), + [anon_sym_union] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_switch] = ACTIONS(3178), + [anon_sym_case] = ACTIONS(3178), + [anon_sym_default] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_break] = ACTIONS(3178), + [anon_sym_continue] = ACTIONS(3178), + [anon_sym_goto] = ACTIONS(3178), + [anon_sym___try] = ACTIONS(3178), + [anon_sym___leave] = ACTIONS(3178), + [anon_sym_not] = ACTIONS(3178), + [anon_sym_compl] = ACTIONS(3178), + [anon_sym_DASH_DASH] = ACTIONS(3180), + [anon_sym_PLUS_PLUS] = ACTIONS(3180), + [anon_sym_sizeof] = ACTIONS(3178), + [anon_sym___alignof__] = ACTIONS(3178), + [anon_sym___alignof] = ACTIONS(3178), + [anon_sym__alignof] = ACTIONS(3178), + [anon_sym_alignof] = ACTIONS(3178), + [anon_sym__Alignof] = ACTIONS(3178), + [anon_sym_offsetof] = ACTIONS(3178), + [anon_sym__Generic] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3178), + [anon_sym_asm] = ACTIONS(3178), + [anon_sym___asm__] = ACTIONS(3178), + [anon_sym___asm] = ACTIONS(3178), + [sym_number_literal] = ACTIONS(3180), + [anon_sym_L_SQUOTE] = ACTIONS(3180), + [anon_sym_u_SQUOTE] = ACTIONS(3180), + [anon_sym_U_SQUOTE] = ACTIONS(3180), + [anon_sym_u8_SQUOTE] = ACTIONS(3180), + [anon_sym_SQUOTE] = ACTIONS(3180), + [anon_sym_L_DQUOTE] = ACTIONS(3180), + [anon_sym_u_DQUOTE] = ACTIONS(3180), + [anon_sym_U_DQUOTE] = ACTIONS(3180), + [anon_sym_u8_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE] = ACTIONS(3180), + [sym_true] = ACTIONS(3178), + [sym_false] = ACTIONS(3178), + [anon_sym_NULL] = ACTIONS(3178), + [anon_sym_nullptr] = ACTIONS(3178), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3178), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_explicit] = ACTIONS(3178), + [anon_sym_export] = ACTIONS(3178), + [anon_sym_import] = ACTIONS(3178), + [anon_sym_template] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_delete] = ACTIONS(3178), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_namespace] = ACTIONS(3178), + [anon_sym_static_assert] = ACTIONS(3178), + [anon_sym_concept] = ACTIONS(3178), + [anon_sym_co_return] = ACTIONS(3178), + [anon_sym_co_yield] = ACTIONS(3178), + [anon_sym_catch] = ACTIONS(4447), + [anon_sym_R_DQUOTE] = ACTIONS(3180), + [anon_sym_LR_DQUOTE] = ACTIONS(3180), + [anon_sym_uR_DQUOTE] = ACTIONS(3180), + [anon_sym_UR_DQUOTE] = ACTIONS(3180), + [anon_sym_u8R_DQUOTE] = ACTIONS(3180), + [anon_sym_co_await] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_requires] = ACTIONS(3178), + [anon_sym_CARET_CARET] = ACTIONS(3180), + [anon_sym_LBRACK_COLON] = ACTIONS(3180), + [sym_this] = ACTIONS(3178), }, - [STATE(598)] = { - [sym_identifier] = ACTIONS(3636), - [aux_sym_preproc_include_token1] = ACTIONS(3636), - [aux_sym_preproc_def_token1] = ACTIONS(3636), - [aux_sym_preproc_if_token1] = ACTIONS(3636), - [aux_sym_preproc_if_token2] = ACTIONS(3636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3636), - [sym_preproc_directive] = ACTIONS(3636), - [anon_sym_LPAREN2] = ACTIONS(3638), - [anon_sym_BANG] = ACTIONS(3638), - [anon_sym_TILDE] = ACTIONS(3638), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3638), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym___extension__] = ACTIONS(3636), - [anon_sym_typedef] = ACTIONS(3636), - [anon_sym_virtual] = ACTIONS(3636), - [anon_sym_extern] = ACTIONS(3636), - [anon_sym___attribute__] = ACTIONS(3636), - [anon_sym___attribute] = ACTIONS(3636), - [anon_sym_using] = ACTIONS(3636), - [anon_sym_COLON_COLON] = ACTIONS(3638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3638), - [anon_sym___declspec] = ACTIONS(3636), - [anon_sym___based] = ACTIONS(3636), - [anon_sym___cdecl] = ACTIONS(3636), - [anon_sym___clrcall] = ACTIONS(3636), - [anon_sym___stdcall] = ACTIONS(3636), - [anon_sym___fastcall] = ACTIONS(3636), - [anon_sym___thiscall] = ACTIONS(3636), - [anon_sym___vectorcall] = ACTIONS(3636), - [anon_sym_LBRACE] = ACTIONS(3638), - [anon_sym_signed] = ACTIONS(3636), - [anon_sym_unsigned] = ACTIONS(3636), - [anon_sym_long] = ACTIONS(3636), - [anon_sym_short] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_static] = ACTIONS(3636), - [anon_sym_register] = ACTIONS(3636), - [anon_sym_inline] = ACTIONS(3636), - [anon_sym___inline] = ACTIONS(3636), - [anon_sym___inline__] = ACTIONS(3636), - [anon_sym___forceinline] = ACTIONS(3636), - [anon_sym_thread_local] = ACTIONS(3636), - [anon_sym___thread] = ACTIONS(3636), - [anon_sym_const] = ACTIONS(3636), - [anon_sym_constexpr] = ACTIONS(3636), - [anon_sym_volatile] = ACTIONS(3636), - [anon_sym_restrict] = ACTIONS(3636), - [anon_sym___restrict__] = ACTIONS(3636), - [anon_sym__Atomic] = ACTIONS(3636), - [anon_sym__Noreturn] = ACTIONS(3636), - [anon_sym_noreturn] = ACTIONS(3636), - [anon_sym__Nonnull] = ACTIONS(3636), - [anon_sym_mutable] = ACTIONS(3636), - [anon_sym_constinit] = ACTIONS(3636), - [anon_sym_consteval] = ACTIONS(3636), - [anon_sym_alignas] = ACTIONS(3636), - [anon_sym__Alignas] = ACTIONS(3636), - [sym_primitive_type] = ACTIONS(3636), - [anon_sym_enum] = ACTIONS(3636), - [anon_sym_class] = ACTIONS(3636), - [anon_sym_struct] = ACTIONS(3636), - [anon_sym_union] = ACTIONS(3636), - [anon_sym_if] = ACTIONS(3636), - [anon_sym_else] = ACTIONS(3636), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_case] = ACTIONS(3636), - [anon_sym_default] = ACTIONS(3636), - [anon_sym_while] = ACTIONS(3636), - [anon_sym_do] = ACTIONS(3636), - [anon_sym_for] = ACTIONS(3636), - [anon_sym_return] = ACTIONS(3636), - [anon_sym_break] = ACTIONS(3636), - [anon_sym_continue] = ACTIONS(3636), - [anon_sym_goto] = ACTIONS(3636), - [anon_sym___try] = ACTIONS(3636), - [anon_sym___leave] = ACTIONS(3636), - [anon_sym_not] = ACTIONS(3636), - [anon_sym_compl] = ACTIONS(3636), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_sizeof] = ACTIONS(3636), - [anon_sym___alignof__] = ACTIONS(3636), - [anon_sym___alignof] = ACTIONS(3636), - [anon_sym__alignof] = ACTIONS(3636), - [anon_sym_alignof] = ACTIONS(3636), - [anon_sym__Alignof] = ACTIONS(3636), - [anon_sym_offsetof] = ACTIONS(3636), - [anon_sym__Generic] = ACTIONS(3636), - [anon_sym_typename] = ACTIONS(3636), - [anon_sym_asm] = ACTIONS(3636), - [anon_sym___asm__] = ACTIONS(3636), - [anon_sym___asm] = ACTIONS(3636), - [sym_number_literal] = ACTIONS(3638), - [anon_sym_L_SQUOTE] = ACTIONS(3638), - [anon_sym_u_SQUOTE] = ACTIONS(3638), - [anon_sym_U_SQUOTE] = ACTIONS(3638), - [anon_sym_u8_SQUOTE] = ACTIONS(3638), - [anon_sym_SQUOTE] = ACTIONS(3638), - [anon_sym_L_DQUOTE] = ACTIONS(3638), - [anon_sym_u_DQUOTE] = ACTIONS(3638), - [anon_sym_U_DQUOTE] = ACTIONS(3638), - [anon_sym_u8_DQUOTE] = ACTIONS(3638), - [anon_sym_DQUOTE] = ACTIONS(3638), - [sym_true] = ACTIONS(3636), - [sym_false] = ACTIONS(3636), - [anon_sym_NULL] = ACTIONS(3636), - [anon_sym_nullptr] = ACTIONS(3636), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3636), - [anon_sym_decltype] = ACTIONS(3636), - [anon_sym_explicit] = ACTIONS(3636), - [anon_sym_template] = ACTIONS(3636), - [anon_sym_operator] = ACTIONS(3636), - [anon_sym_try] = ACTIONS(3636), - [anon_sym_delete] = ACTIONS(3636), - [anon_sym_throw] = ACTIONS(3636), - [anon_sym_namespace] = ACTIONS(3636), - [anon_sym_static_assert] = ACTIONS(3636), - [anon_sym_concept] = ACTIONS(3636), - [anon_sym_co_return] = ACTIONS(3636), - [anon_sym_co_yield] = ACTIONS(3636), - [anon_sym_R_DQUOTE] = ACTIONS(3638), - [anon_sym_LR_DQUOTE] = ACTIONS(3638), - [anon_sym_uR_DQUOTE] = ACTIONS(3638), - [anon_sym_UR_DQUOTE] = ACTIONS(3638), - [anon_sym_u8R_DQUOTE] = ACTIONS(3638), - [anon_sym_co_await] = ACTIONS(3636), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_requires] = ACTIONS(3636), - [anon_sym_CARET_CARET] = ACTIONS(3638), - [anon_sym_LBRACK_COLON] = ACTIONS(3638), - [sym_this] = ACTIONS(3636), + [STATE(540)] = { + [sym_identifier] = ACTIONS(4496), + [aux_sym_preproc_include_token1] = ACTIONS(4496), + [aux_sym_preproc_def_token1] = ACTIONS(4496), + [aux_sym_preproc_if_token1] = ACTIONS(4496), + [aux_sym_preproc_if_token2] = ACTIONS(4496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4496), + [aux_sym_preproc_else_token1] = ACTIONS(4496), + [aux_sym_preproc_elif_token1] = ACTIONS(4496), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4496), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4496), + [sym_preproc_directive] = ACTIONS(4496), + [anon_sym_LPAREN2] = ACTIONS(4498), + [anon_sym_BANG] = ACTIONS(4498), + [anon_sym_TILDE] = ACTIONS(4498), + [anon_sym_DASH] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4496), + [anon_sym_STAR] = ACTIONS(4498), + [anon_sym_AMP_AMP] = ACTIONS(4498), + [anon_sym_AMP] = ACTIONS(4496), + [anon_sym_SEMI] = ACTIONS(4498), + [anon_sym___extension__] = ACTIONS(4496), + [anon_sym_typedef] = ACTIONS(4496), + [anon_sym_virtual] = ACTIONS(4496), + [anon_sym_extern] = ACTIONS(4496), + [anon_sym___attribute__] = ACTIONS(4496), + [anon_sym___attribute] = ACTIONS(4496), + [anon_sym_using] = ACTIONS(4496), + [anon_sym_COLON_COLON] = ACTIONS(4498), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4498), + [anon_sym___declspec] = ACTIONS(4496), + [anon_sym___based] = ACTIONS(4496), + [anon_sym___cdecl] = ACTIONS(4496), + [anon_sym___clrcall] = ACTIONS(4496), + [anon_sym___stdcall] = ACTIONS(4496), + [anon_sym___fastcall] = ACTIONS(4496), + [anon_sym___thiscall] = ACTIONS(4496), + [anon_sym___vectorcall] = ACTIONS(4496), + [anon_sym_LBRACE] = ACTIONS(4498), + [anon_sym_signed] = ACTIONS(4496), + [anon_sym_unsigned] = ACTIONS(4496), + [anon_sym_long] = ACTIONS(4496), + [anon_sym_short] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4496), + [anon_sym_static] = ACTIONS(4496), + [anon_sym_register] = ACTIONS(4496), + [anon_sym_inline] = ACTIONS(4496), + [anon_sym___inline] = ACTIONS(4496), + [anon_sym___inline__] = ACTIONS(4496), + [anon_sym___forceinline] = ACTIONS(4496), + [anon_sym_thread_local] = ACTIONS(4496), + [anon_sym___thread] = ACTIONS(4496), + [anon_sym_const] = ACTIONS(4496), + [anon_sym_constexpr] = ACTIONS(4496), + [anon_sym_volatile] = ACTIONS(4496), + [anon_sym_restrict] = ACTIONS(4496), + [anon_sym___restrict__] = ACTIONS(4496), + [anon_sym__Atomic] = ACTIONS(4496), + [anon_sym__Noreturn] = ACTIONS(4496), + [anon_sym_noreturn] = ACTIONS(4496), + [anon_sym__Nonnull] = ACTIONS(4496), + [anon_sym_mutable] = ACTIONS(4496), + [anon_sym_constinit] = ACTIONS(4496), + [anon_sym_consteval] = ACTIONS(4496), + [anon_sym_alignas] = ACTIONS(4496), + [anon_sym__Alignas] = ACTIONS(4496), + [sym_primitive_type] = ACTIONS(4496), + [anon_sym_enum] = ACTIONS(4496), + [anon_sym_class] = ACTIONS(4496), + [anon_sym_struct] = ACTIONS(4496), + [anon_sym_union] = ACTIONS(4496), + [anon_sym_if] = ACTIONS(4496), + [anon_sym_switch] = ACTIONS(4496), + [anon_sym_case] = ACTIONS(4496), + [anon_sym_default] = ACTIONS(4496), + [anon_sym_while] = ACTIONS(4496), + [anon_sym_do] = ACTIONS(4496), + [anon_sym_for] = ACTIONS(4496), + [anon_sym_return] = ACTIONS(4496), + [anon_sym_break] = ACTIONS(4496), + [anon_sym_continue] = ACTIONS(4496), + [anon_sym_goto] = ACTIONS(4496), + [anon_sym_not] = ACTIONS(4496), + [anon_sym_compl] = ACTIONS(4496), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), + [anon_sym_sizeof] = ACTIONS(4496), + [anon_sym___alignof__] = ACTIONS(4496), + [anon_sym___alignof] = ACTIONS(4496), + [anon_sym__alignof] = ACTIONS(4496), + [anon_sym_alignof] = ACTIONS(4496), + [anon_sym__Alignof] = ACTIONS(4496), + [anon_sym_offsetof] = ACTIONS(4496), + [anon_sym__Generic] = ACTIONS(4496), + [anon_sym_typename] = ACTIONS(4496), + [anon_sym_asm] = ACTIONS(4496), + [anon_sym___asm__] = ACTIONS(4496), + [anon_sym___asm] = ACTIONS(4496), + [sym_number_literal] = ACTIONS(4498), + [anon_sym_L_SQUOTE] = ACTIONS(4498), + [anon_sym_u_SQUOTE] = ACTIONS(4498), + [anon_sym_U_SQUOTE] = ACTIONS(4498), + [anon_sym_u8_SQUOTE] = ACTIONS(4498), + [anon_sym_SQUOTE] = ACTIONS(4498), + [anon_sym_L_DQUOTE] = ACTIONS(4498), + [anon_sym_u_DQUOTE] = ACTIONS(4498), + [anon_sym_U_DQUOTE] = ACTIONS(4498), + [anon_sym_u8_DQUOTE] = ACTIONS(4498), + [anon_sym_DQUOTE] = ACTIONS(4498), + [sym_true] = ACTIONS(4496), + [sym_false] = ACTIONS(4496), + [anon_sym_NULL] = ACTIONS(4496), + [anon_sym_nullptr] = ACTIONS(4496), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4496), + [anon_sym_decltype] = ACTIONS(4496), + [anon_sym_explicit] = ACTIONS(4496), + [anon_sym_export] = ACTIONS(4496), + [anon_sym_module] = ACTIONS(4496), + [anon_sym_import] = ACTIONS(4496), + [anon_sym_template] = ACTIONS(4496), + [anon_sym_operator] = ACTIONS(4496), + [anon_sym_try] = ACTIONS(4496), + [anon_sym_delete] = ACTIONS(4496), + [anon_sym_throw] = ACTIONS(4496), + [anon_sym_namespace] = ACTIONS(4496), + [anon_sym_static_assert] = ACTIONS(4496), + [anon_sym_concept] = ACTIONS(4496), + [anon_sym_co_return] = ACTIONS(4496), + [anon_sym_co_yield] = ACTIONS(4496), + [anon_sym_R_DQUOTE] = ACTIONS(4498), + [anon_sym_LR_DQUOTE] = ACTIONS(4498), + [anon_sym_uR_DQUOTE] = ACTIONS(4498), + [anon_sym_UR_DQUOTE] = ACTIONS(4498), + [anon_sym_u8R_DQUOTE] = ACTIONS(4498), + [anon_sym_co_await] = ACTIONS(4496), + [anon_sym_new] = ACTIONS(4496), + [anon_sym_requires] = ACTIONS(4496), + [anon_sym_CARET_CARET] = ACTIONS(4498), + [anon_sym_LBRACK_COLON] = ACTIONS(4498), + [sym_this] = ACTIONS(4496), }, - [STATE(599)] = { - [sym_identifier] = ACTIONS(3680), - [aux_sym_preproc_include_token1] = ACTIONS(3680), - [aux_sym_preproc_def_token1] = ACTIONS(3680), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_if_token2] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3680), - [sym_preproc_directive] = ACTIONS(3680), - [anon_sym_LPAREN2] = ACTIONS(3682), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(3682), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym___extension__] = ACTIONS(3680), - [anon_sym_typedef] = ACTIONS(3680), - [anon_sym_virtual] = ACTIONS(3680), - [anon_sym_extern] = ACTIONS(3680), - [anon_sym___attribute__] = ACTIONS(3680), - [anon_sym___attribute] = ACTIONS(3680), - [anon_sym_using] = ACTIONS(3680), - [anon_sym_COLON_COLON] = ACTIONS(3682), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3682), - [anon_sym___declspec] = ACTIONS(3680), - [anon_sym___based] = ACTIONS(3680), - [anon_sym___cdecl] = ACTIONS(3680), - [anon_sym___clrcall] = ACTIONS(3680), - [anon_sym___stdcall] = ACTIONS(3680), - [anon_sym___fastcall] = ACTIONS(3680), - [anon_sym___thiscall] = ACTIONS(3680), - [anon_sym___vectorcall] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_signed] = ACTIONS(3680), - [anon_sym_unsigned] = ACTIONS(3680), - [anon_sym_long] = ACTIONS(3680), - [anon_sym_short] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3680), - [anon_sym_static] = ACTIONS(3680), - [anon_sym_register] = ACTIONS(3680), - [anon_sym_inline] = ACTIONS(3680), - [anon_sym___inline] = ACTIONS(3680), - [anon_sym___inline__] = ACTIONS(3680), - [anon_sym___forceinline] = ACTIONS(3680), - [anon_sym_thread_local] = ACTIONS(3680), - [anon_sym___thread] = ACTIONS(3680), - [anon_sym_const] = ACTIONS(3680), - [anon_sym_constexpr] = ACTIONS(3680), - [anon_sym_volatile] = ACTIONS(3680), - [anon_sym_restrict] = ACTIONS(3680), - [anon_sym___restrict__] = ACTIONS(3680), - [anon_sym__Atomic] = ACTIONS(3680), - [anon_sym__Noreturn] = ACTIONS(3680), - [anon_sym_noreturn] = ACTIONS(3680), - [anon_sym__Nonnull] = ACTIONS(3680), - [anon_sym_mutable] = ACTIONS(3680), - [anon_sym_constinit] = ACTIONS(3680), - [anon_sym_consteval] = ACTIONS(3680), - [anon_sym_alignas] = ACTIONS(3680), - [anon_sym__Alignas] = ACTIONS(3680), - [sym_primitive_type] = ACTIONS(3680), - [anon_sym_enum] = ACTIONS(3680), - [anon_sym_class] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(3680), - [anon_sym_union] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(3680), - [anon_sym_else] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_case] = ACTIONS(3680), - [anon_sym_default] = ACTIONS(3680), - [anon_sym_while] = ACTIONS(3680), - [anon_sym_do] = ACTIONS(3680), - [anon_sym_for] = ACTIONS(3680), - [anon_sym_return] = ACTIONS(3680), - [anon_sym_break] = ACTIONS(3680), - [anon_sym_continue] = ACTIONS(3680), - [anon_sym_goto] = ACTIONS(3680), - [anon_sym___try] = ACTIONS(3680), - [anon_sym___leave] = ACTIONS(3680), - [anon_sym_not] = ACTIONS(3680), - [anon_sym_compl] = ACTIONS(3680), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_sizeof] = ACTIONS(3680), - [anon_sym___alignof__] = ACTIONS(3680), - [anon_sym___alignof] = ACTIONS(3680), - [anon_sym__alignof] = ACTIONS(3680), - [anon_sym_alignof] = ACTIONS(3680), - [anon_sym__Alignof] = ACTIONS(3680), - [anon_sym_offsetof] = ACTIONS(3680), - [anon_sym__Generic] = ACTIONS(3680), - [anon_sym_typename] = ACTIONS(3680), - [anon_sym_asm] = ACTIONS(3680), - [anon_sym___asm__] = ACTIONS(3680), - [anon_sym___asm] = ACTIONS(3680), - [sym_number_literal] = ACTIONS(3682), - [anon_sym_L_SQUOTE] = ACTIONS(3682), - [anon_sym_u_SQUOTE] = ACTIONS(3682), - [anon_sym_U_SQUOTE] = ACTIONS(3682), - [anon_sym_u8_SQUOTE] = ACTIONS(3682), - [anon_sym_SQUOTE] = ACTIONS(3682), - [anon_sym_L_DQUOTE] = ACTIONS(3682), - [anon_sym_u_DQUOTE] = ACTIONS(3682), - [anon_sym_U_DQUOTE] = ACTIONS(3682), - [anon_sym_u8_DQUOTE] = ACTIONS(3682), - [anon_sym_DQUOTE] = ACTIONS(3682), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [anon_sym_NULL] = ACTIONS(3680), - [anon_sym_nullptr] = ACTIONS(3680), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3680), - [anon_sym_decltype] = ACTIONS(3680), - [anon_sym_explicit] = ACTIONS(3680), - [anon_sym_template] = ACTIONS(3680), - [anon_sym_operator] = ACTIONS(3680), - [anon_sym_try] = ACTIONS(3680), - [anon_sym_delete] = ACTIONS(3680), - [anon_sym_throw] = ACTIONS(3680), - [anon_sym_namespace] = ACTIONS(3680), - [anon_sym_static_assert] = ACTIONS(3680), - [anon_sym_concept] = ACTIONS(3680), - [anon_sym_co_return] = ACTIONS(3680), - [anon_sym_co_yield] = ACTIONS(3680), - [anon_sym_R_DQUOTE] = ACTIONS(3682), - [anon_sym_LR_DQUOTE] = ACTIONS(3682), - [anon_sym_uR_DQUOTE] = ACTIONS(3682), - [anon_sym_UR_DQUOTE] = ACTIONS(3682), - [anon_sym_u8R_DQUOTE] = ACTIONS(3682), - [anon_sym_co_await] = ACTIONS(3680), - [anon_sym_new] = ACTIONS(3680), - [anon_sym_requires] = ACTIONS(3680), - [anon_sym_CARET_CARET] = ACTIONS(3682), - [anon_sym_LBRACK_COLON] = ACTIONS(3682), - [sym_this] = ACTIONS(3680), + [STATE(541)] = { + [sym_identifier] = ACTIONS(4500), + [aux_sym_preproc_include_token1] = ACTIONS(4500), + [aux_sym_preproc_def_token1] = ACTIONS(4500), + [aux_sym_preproc_if_token1] = ACTIONS(4500), + [aux_sym_preproc_if_token2] = ACTIONS(4500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4500), + [aux_sym_preproc_else_token1] = ACTIONS(4500), + [aux_sym_preproc_elif_token1] = ACTIONS(4500), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4500), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4500), + [sym_preproc_directive] = ACTIONS(4500), + [anon_sym_LPAREN2] = ACTIONS(4502), + [anon_sym_BANG] = ACTIONS(4502), + [anon_sym_TILDE] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4500), + [anon_sym_PLUS] = ACTIONS(4500), + [anon_sym_STAR] = ACTIONS(4502), + [anon_sym_AMP_AMP] = ACTIONS(4502), + [anon_sym_AMP] = ACTIONS(4500), + [anon_sym_SEMI] = ACTIONS(4502), + [anon_sym___extension__] = ACTIONS(4500), + [anon_sym_typedef] = ACTIONS(4500), + [anon_sym_virtual] = ACTIONS(4500), + [anon_sym_extern] = ACTIONS(4500), + [anon_sym___attribute__] = ACTIONS(4500), + [anon_sym___attribute] = ACTIONS(4500), + [anon_sym_using] = ACTIONS(4500), + [anon_sym_COLON_COLON] = ACTIONS(4502), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4502), + [anon_sym___declspec] = ACTIONS(4500), + [anon_sym___based] = ACTIONS(4500), + [anon_sym___cdecl] = ACTIONS(4500), + [anon_sym___clrcall] = ACTIONS(4500), + [anon_sym___stdcall] = ACTIONS(4500), + [anon_sym___fastcall] = ACTIONS(4500), + [anon_sym___thiscall] = ACTIONS(4500), + [anon_sym___vectorcall] = ACTIONS(4500), + [anon_sym_LBRACE] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4500), + [anon_sym_unsigned] = ACTIONS(4500), + [anon_sym_long] = ACTIONS(4500), + [anon_sym_short] = ACTIONS(4500), + [anon_sym_LBRACK] = ACTIONS(4500), + [anon_sym_static] = ACTIONS(4500), + [anon_sym_register] = ACTIONS(4500), + [anon_sym_inline] = ACTIONS(4500), + [anon_sym___inline] = ACTIONS(4500), + [anon_sym___inline__] = ACTIONS(4500), + [anon_sym___forceinline] = ACTIONS(4500), + [anon_sym_thread_local] = ACTIONS(4500), + [anon_sym___thread] = ACTIONS(4500), + [anon_sym_const] = ACTIONS(4500), + [anon_sym_constexpr] = ACTIONS(4500), + [anon_sym_volatile] = ACTIONS(4500), + [anon_sym_restrict] = ACTIONS(4500), + [anon_sym___restrict__] = ACTIONS(4500), + [anon_sym__Atomic] = ACTIONS(4500), + [anon_sym__Noreturn] = ACTIONS(4500), + [anon_sym_noreturn] = ACTIONS(4500), + [anon_sym__Nonnull] = ACTIONS(4500), + [anon_sym_mutable] = ACTIONS(4500), + [anon_sym_constinit] = ACTIONS(4500), + [anon_sym_consteval] = ACTIONS(4500), + [anon_sym_alignas] = ACTIONS(4500), + [anon_sym__Alignas] = ACTIONS(4500), + [sym_primitive_type] = ACTIONS(4500), + [anon_sym_enum] = ACTIONS(4500), + [anon_sym_class] = ACTIONS(4500), + [anon_sym_struct] = ACTIONS(4500), + [anon_sym_union] = ACTIONS(4500), + [anon_sym_if] = ACTIONS(4500), + [anon_sym_switch] = ACTIONS(4500), + [anon_sym_case] = ACTIONS(4500), + [anon_sym_default] = ACTIONS(4500), + [anon_sym_while] = ACTIONS(4500), + [anon_sym_do] = ACTIONS(4500), + [anon_sym_for] = ACTIONS(4500), + [anon_sym_return] = ACTIONS(4500), + [anon_sym_break] = ACTIONS(4500), + [anon_sym_continue] = ACTIONS(4500), + [anon_sym_goto] = ACTIONS(4500), + [anon_sym_not] = ACTIONS(4500), + [anon_sym_compl] = ACTIONS(4500), + [anon_sym_DASH_DASH] = ACTIONS(4502), + [anon_sym_PLUS_PLUS] = ACTIONS(4502), + [anon_sym_sizeof] = ACTIONS(4500), + [anon_sym___alignof__] = ACTIONS(4500), + [anon_sym___alignof] = ACTIONS(4500), + [anon_sym__alignof] = ACTIONS(4500), + [anon_sym_alignof] = ACTIONS(4500), + [anon_sym__Alignof] = ACTIONS(4500), + [anon_sym_offsetof] = ACTIONS(4500), + [anon_sym__Generic] = ACTIONS(4500), + [anon_sym_typename] = ACTIONS(4500), + [anon_sym_asm] = ACTIONS(4500), + [anon_sym___asm__] = ACTIONS(4500), + [anon_sym___asm] = ACTIONS(4500), + [sym_number_literal] = ACTIONS(4502), + [anon_sym_L_SQUOTE] = ACTIONS(4502), + [anon_sym_u_SQUOTE] = ACTIONS(4502), + [anon_sym_U_SQUOTE] = ACTIONS(4502), + [anon_sym_u8_SQUOTE] = ACTIONS(4502), + [anon_sym_SQUOTE] = ACTIONS(4502), + [anon_sym_L_DQUOTE] = ACTIONS(4502), + [anon_sym_u_DQUOTE] = ACTIONS(4502), + [anon_sym_U_DQUOTE] = ACTIONS(4502), + [anon_sym_u8_DQUOTE] = ACTIONS(4502), + [anon_sym_DQUOTE] = ACTIONS(4502), + [sym_true] = ACTIONS(4500), + [sym_false] = ACTIONS(4500), + [anon_sym_NULL] = ACTIONS(4500), + [anon_sym_nullptr] = ACTIONS(4500), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4500), + [anon_sym_decltype] = ACTIONS(4500), + [anon_sym_explicit] = ACTIONS(4500), + [anon_sym_export] = ACTIONS(4500), + [anon_sym_module] = ACTIONS(4500), + [anon_sym_import] = ACTIONS(4500), + [anon_sym_template] = ACTIONS(4500), + [anon_sym_operator] = ACTIONS(4500), + [anon_sym_try] = ACTIONS(4500), + [anon_sym_delete] = ACTIONS(4500), + [anon_sym_throw] = ACTIONS(4500), + [anon_sym_namespace] = ACTIONS(4500), + [anon_sym_static_assert] = ACTIONS(4500), + [anon_sym_concept] = ACTIONS(4500), + [anon_sym_co_return] = ACTIONS(4500), + [anon_sym_co_yield] = ACTIONS(4500), + [anon_sym_R_DQUOTE] = ACTIONS(4502), + [anon_sym_LR_DQUOTE] = ACTIONS(4502), + [anon_sym_uR_DQUOTE] = ACTIONS(4502), + [anon_sym_UR_DQUOTE] = ACTIONS(4502), + [anon_sym_u8R_DQUOTE] = ACTIONS(4502), + [anon_sym_co_await] = ACTIONS(4500), + [anon_sym_new] = ACTIONS(4500), + [anon_sym_requires] = ACTIONS(4500), + [anon_sym_CARET_CARET] = ACTIONS(4502), + [anon_sym_LBRACK_COLON] = ACTIONS(4502), + [sym_this] = ACTIONS(4500), }, - [STATE(600)] = { - [sym_identifier] = ACTIONS(3648), - [aux_sym_preproc_include_token1] = ACTIONS(3648), - [aux_sym_preproc_def_token1] = ACTIONS(3648), - [aux_sym_preproc_if_token1] = ACTIONS(3648), - [aux_sym_preproc_if_token2] = ACTIONS(3648), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3648), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3648), - [sym_preproc_directive] = ACTIONS(3648), - [anon_sym_LPAREN2] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_TILDE] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_AMP_AMP] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3650), - [anon_sym___extension__] = ACTIONS(3648), - [anon_sym_typedef] = ACTIONS(3648), - [anon_sym_virtual] = ACTIONS(3648), - [anon_sym_extern] = ACTIONS(3648), - [anon_sym___attribute__] = ACTIONS(3648), - [anon_sym___attribute] = ACTIONS(3648), - [anon_sym_using] = ACTIONS(3648), - [anon_sym_COLON_COLON] = ACTIONS(3650), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), - [anon_sym___declspec] = ACTIONS(3648), - [anon_sym___based] = ACTIONS(3648), - [anon_sym___cdecl] = ACTIONS(3648), - [anon_sym___clrcall] = ACTIONS(3648), - [anon_sym___stdcall] = ACTIONS(3648), - [anon_sym___fastcall] = ACTIONS(3648), - [anon_sym___thiscall] = ACTIONS(3648), - [anon_sym___vectorcall] = ACTIONS(3648), - [anon_sym_LBRACE] = ACTIONS(3650), - [anon_sym_signed] = ACTIONS(3648), - [anon_sym_unsigned] = ACTIONS(3648), - [anon_sym_long] = ACTIONS(3648), - [anon_sym_short] = ACTIONS(3648), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_static] = ACTIONS(3648), - [anon_sym_register] = ACTIONS(3648), - [anon_sym_inline] = ACTIONS(3648), - [anon_sym___inline] = ACTIONS(3648), - [anon_sym___inline__] = ACTIONS(3648), - [anon_sym___forceinline] = ACTIONS(3648), - [anon_sym_thread_local] = ACTIONS(3648), - [anon_sym___thread] = ACTIONS(3648), - [anon_sym_const] = ACTIONS(3648), - [anon_sym_constexpr] = ACTIONS(3648), - [anon_sym_volatile] = ACTIONS(3648), - [anon_sym_restrict] = ACTIONS(3648), - [anon_sym___restrict__] = ACTIONS(3648), - [anon_sym__Atomic] = ACTIONS(3648), - [anon_sym__Noreturn] = ACTIONS(3648), - [anon_sym_noreturn] = ACTIONS(3648), - [anon_sym__Nonnull] = ACTIONS(3648), - [anon_sym_mutable] = ACTIONS(3648), - [anon_sym_constinit] = ACTIONS(3648), - [anon_sym_consteval] = ACTIONS(3648), - [anon_sym_alignas] = ACTIONS(3648), - [anon_sym__Alignas] = ACTIONS(3648), - [sym_primitive_type] = ACTIONS(3648), - [anon_sym_enum] = ACTIONS(3648), - [anon_sym_class] = ACTIONS(3648), - [anon_sym_struct] = ACTIONS(3648), - [anon_sym_union] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3648), - [anon_sym_else] = ACTIONS(3648), - [anon_sym_switch] = ACTIONS(3648), - [anon_sym_case] = ACTIONS(3648), - [anon_sym_default] = ACTIONS(3648), - [anon_sym_while] = ACTIONS(3648), - [anon_sym_do] = ACTIONS(3648), - [anon_sym_for] = ACTIONS(3648), - [anon_sym_return] = ACTIONS(3648), - [anon_sym_break] = ACTIONS(3648), - [anon_sym_continue] = ACTIONS(3648), - [anon_sym_goto] = ACTIONS(3648), - [anon_sym___try] = ACTIONS(3648), - [anon_sym___leave] = ACTIONS(3648), - [anon_sym_not] = ACTIONS(3648), - [anon_sym_compl] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3650), - [anon_sym_sizeof] = ACTIONS(3648), - [anon_sym___alignof__] = ACTIONS(3648), - [anon_sym___alignof] = ACTIONS(3648), - [anon_sym__alignof] = ACTIONS(3648), - [anon_sym_alignof] = ACTIONS(3648), - [anon_sym__Alignof] = ACTIONS(3648), - [anon_sym_offsetof] = ACTIONS(3648), - [anon_sym__Generic] = ACTIONS(3648), - [anon_sym_typename] = ACTIONS(3648), - [anon_sym_asm] = ACTIONS(3648), - [anon_sym___asm__] = ACTIONS(3648), - [anon_sym___asm] = ACTIONS(3648), - [sym_number_literal] = ACTIONS(3650), - [anon_sym_L_SQUOTE] = ACTIONS(3650), - [anon_sym_u_SQUOTE] = ACTIONS(3650), - [anon_sym_U_SQUOTE] = ACTIONS(3650), - [anon_sym_u8_SQUOTE] = ACTIONS(3650), - [anon_sym_SQUOTE] = ACTIONS(3650), - [anon_sym_L_DQUOTE] = ACTIONS(3650), - [anon_sym_u_DQUOTE] = ACTIONS(3650), - [anon_sym_U_DQUOTE] = ACTIONS(3650), - [anon_sym_u8_DQUOTE] = ACTIONS(3650), - [anon_sym_DQUOTE] = ACTIONS(3650), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [anon_sym_NULL] = ACTIONS(3648), - [anon_sym_nullptr] = ACTIONS(3648), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3648), - [anon_sym_decltype] = ACTIONS(3648), - [anon_sym_explicit] = ACTIONS(3648), - [anon_sym_template] = ACTIONS(3648), - [anon_sym_operator] = ACTIONS(3648), - [anon_sym_try] = ACTIONS(3648), - [anon_sym_delete] = ACTIONS(3648), - [anon_sym_throw] = ACTIONS(3648), - [anon_sym_namespace] = ACTIONS(3648), - [anon_sym_static_assert] = ACTIONS(3648), - [anon_sym_concept] = ACTIONS(3648), - [anon_sym_co_return] = ACTIONS(3648), - [anon_sym_co_yield] = ACTIONS(3648), - [anon_sym_R_DQUOTE] = ACTIONS(3650), - [anon_sym_LR_DQUOTE] = ACTIONS(3650), - [anon_sym_uR_DQUOTE] = ACTIONS(3650), - [anon_sym_UR_DQUOTE] = ACTIONS(3650), - [anon_sym_u8R_DQUOTE] = ACTIONS(3650), - [anon_sym_co_await] = ACTIONS(3648), - [anon_sym_new] = ACTIONS(3648), - [anon_sym_requires] = ACTIONS(3648), - [anon_sym_CARET_CARET] = ACTIONS(3650), - [anon_sym_LBRACK_COLON] = ACTIONS(3650), - [sym_this] = ACTIONS(3648), + [STATE(542)] = { + [sym_identifier] = ACTIONS(4504), + [aux_sym_preproc_include_token1] = ACTIONS(4504), + [aux_sym_preproc_def_token1] = ACTIONS(4504), + [aux_sym_preproc_if_token1] = ACTIONS(4504), + [aux_sym_preproc_if_token2] = ACTIONS(4504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4504), + [aux_sym_preproc_else_token1] = ACTIONS(4504), + [aux_sym_preproc_elif_token1] = ACTIONS(4504), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4504), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4504), + [sym_preproc_directive] = ACTIONS(4504), + [anon_sym_LPAREN2] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4507), + [anon_sym_TILDE] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4504), + [anon_sym_STAR] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_AMP] = ACTIONS(4504), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym___extension__] = ACTIONS(4504), + [anon_sym_typedef] = ACTIONS(4504), + [anon_sym_virtual] = ACTIONS(4504), + [anon_sym_extern] = ACTIONS(4504), + [anon_sym___attribute__] = ACTIONS(4504), + [anon_sym___attribute] = ACTIONS(4504), + [anon_sym_using] = ACTIONS(4504), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4507), + [anon_sym___declspec] = ACTIONS(4504), + [anon_sym___based] = ACTIONS(4504), + [anon_sym___cdecl] = ACTIONS(4504), + [anon_sym___clrcall] = ACTIONS(4504), + [anon_sym___stdcall] = ACTIONS(4504), + [anon_sym___fastcall] = ACTIONS(4504), + [anon_sym___thiscall] = ACTIONS(4504), + [anon_sym___vectorcall] = ACTIONS(4504), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_signed] = ACTIONS(4504), + [anon_sym_unsigned] = ACTIONS(4504), + [anon_sym_long] = ACTIONS(4504), + [anon_sym_short] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4504), + [anon_sym_static] = ACTIONS(4504), + [anon_sym_register] = ACTIONS(4504), + [anon_sym_inline] = ACTIONS(4504), + [anon_sym___inline] = ACTIONS(4504), + [anon_sym___inline__] = ACTIONS(4504), + [anon_sym___forceinline] = ACTIONS(4504), + [anon_sym_thread_local] = ACTIONS(4504), + [anon_sym___thread] = ACTIONS(4504), + [anon_sym_const] = ACTIONS(4504), + [anon_sym_constexpr] = ACTIONS(4504), + [anon_sym_volatile] = ACTIONS(4504), + [anon_sym_restrict] = ACTIONS(4504), + [anon_sym___restrict__] = ACTIONS(4504), + [anon_sym__Atomic] = ACTIONS(4504), + [anon_sym__Noreturn] = ACTIONS(4504), + [anon_sym_noreturn] = ACTIONS(4504), + [anon_sym__Nonnull] = ACTIONS(4504), + [anon_sym_mutable] = ACTIONS(4504), + [anon_sym_constinit] = ACTIONS(4504), + [anon_sym_consteval] = ACTIONS(4504), + [anon_sym_alignas] = ACTIONS(4504), + [anon_sym__Alignas] = ACTIONS(4504), + [sym_primitive_type] = ACTIONS(4504), + [anon_sym_enum] = ACTIONS(4504), + [anon_sym_class] = ACTIONS(4504), + [anon_sym_struct] = ACTIONS(4504), + [anon_sym_union] = ACTIONS(4504), + [anon_sym_if] = ACTIONS(4504), + [anon_sym_switch] = ACTIONS(4504), + [anon_sym_case] = ACTIONS(4504), + [anon_sym_default] = ACTIONS(4504), + [anon_sym_while] = ACTIONS(4504), + [anon_sym_do] = ACTIONS(4504), + [anon_sym_for] = ACTIONS(4504), + [anon_sym_return] = ACTIONS(4504), + [anon_sym_break] = ACTIONS(4504), + [anon_sym_continue] = ACTIONS(4504), + [anon_sym_goto] = ACTIONS(4504), + [anon_sym_not] = ACTIONS(4504), + [anon_sym_compl] = ACTIONS(4504), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_sizeof] = ACTIONS(4504), + [anon_sym___alignof__] = ACTIONS(4504), + [anon_sym___alignof] = ACTIONS(4504), + [anon_sym__alignof] = ACTIONS(4504), + [anon_sym_alignof] = ACTIONS(4504), + [anon_sym__Alignof] = ACTIONS(4504), + [anon_sym_offsetof] = ACTIONS(4504), + [anon_sym__Generic] = ACTIONS(4504), + [anon_sym_typename] = ACTIONS(4504), + [anon_sym_asm] = ACTIONS(4504), + [anon_sym___asm__] = ACTIONS(4504), + [anon_sym___asm] = ACTIONS(4504), + [sym_number_literal] = ACTIONS(4507), + [anon_sym_L_SQUOTE] = ACTIONS(4507), + [anon_sym_u_SQUOTE] = ACTIONS(4507), + [anon_sym_U_SQUOTE] = ACTIONS(4507), + [anon_sym_u8_SQUOTE] = ACTIONS(4507), + [anon_sym_SQUOTE] = ACTIONS(4507), + [anon_sym_L_DQUOTE] = ACTIONS(4507), + [anon_sym_u_DQUOTE] = ACTIONS(4507), + [anon_sym_U_DQUOTE] = ACTIONS(4507), + [anon_sym_u8_DQUOTE] = ACTIONS(4507), + [anon_sym_DQUOTE] = ACTIONS(4507), + [sym_true] = ACTIONS(4504), + [sym_false] = ACTIONS(4504), + [anon_sym_NULL] = ACTIONS(4504), + [anon_sym_nullptr] = ACTIONS(4504), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4504), + [anon_sym_decltype] = ACTIONS(4504), + [anon_sym_explicit] = ACTIONS(4504), + [anon_sym_export] = ACTIONS(4504), + [anon_sym_module] = ACTIONS(4504), + [anon_sym_import] = ACTIONS(4504), + [anon_sym_template] = ACTIONS(4504), + [anon_sym_operator] = ACTIONS(4504), + [anon_sym_try] = ACTIONS(4504), + [anon_sym_delete] = ACTIONS(4504), + [anon_sym_throw] = ACTIONS(4504), + [anon_sym_namespace] = ACTIONS(4504), + [anon_sym_static_assert] = ACTIONS(4504), + [anon_sym_concept] = ACTIONS(4504), + [anon_sym_co_return] = ACTIONS(4504), + [anon_sym_co_yield] = ACTIONS(4504), + [anon_sym_R_DQUOTE] = ACTIONS(4507), + [anon_sym_LR_DQUOTE] = ACTIONS(4507), + [anon_sym_uR_DQUOTE] = ACTIONS(4507), + [anon_sym_UR_DQUOTE] = ACTIONS(4507), + [anon_sym_u8R_DQUOTE] = ACTIONS(4507), + [anon_sym_co_await] = ACTIONS(4504), + [anon_sym_new] = ACTIONS(4504), + [anon_sym_requires] = ACTIONS(4504), + [anon_sym_CARET_CARET] = ACTIONS(4507), + [anon_sym_LBRACK_COLON] = ACTIONS(4507), + [sym_this] = ACTIONS(4504), }, - [STATE(601)] = { - [ts_builtin_sym_end] = ACTIONS(4044), - [sym_identifier] = ACTIONS(4042), - [aux_sym_preproc_include_token1] = ACTIONS(4042), - [aux_sym_preproc_def_token1] = ACTIONS(4042), - [aux_sym_preproc_if_token1] = ACTIONS(4042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4042), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4042), - [sym_preproc_directive] = ACTIONS(4042), - [anon_sym_LPAREN2] = ACTIONS(4044), - [anon_sym_BANG] = ACTIONS(4044), - [anon_sym_TILDE] = ACTIONS(4044), - [anon_sym_DASH] = ACTIONS(4042), - [anon_sym_PLUS] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_SEMI] = ACTIONS(4044), - [anon_sym___extension__] = ACTIONS(4042), - [anon_sym_typedef] = ACTIONS(4042), - [anon_sym_virtual] = ACTIONS(4042), - [anon_sym_extern] = ACTIONS(4042), - [anon_sym___attribute__] = ACTIONS(4042), - [anon_sym___attribute] = ACTIONS(4042), - [anon_sym_using] = ACTIONS(4042), - [anon_sym_COLON_COLON] = ACTIONS(4044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4044), - [anon_sym___declspec] = ACTIONS(4042), - [anon_sym___based] = ACTIONS(4042), - [anon_sym___cdecl] = ACTIONS(4042), - [anon_sym___clrcall] = ACTIONS(4042), - [anon_sym___stdcall] = ACTIONS(4042), - [anon_sym___fastcall] = ACTIONS(4042), - [anon_sym___thiscall] = ACTIONS(4042), - [anon_sym___vectorcall] = ACTIONS(4042), - [anon_sym_LBRACE] = ACTIONS(4044), - [anon_sym_signed] = ACTIONS(4042), - [anon_sym_unsigned] = ACTIONS(4042), - [anon_sym_long] = ACTIONS(4042), - [anon_sym_short] = ACTIONS(4042), - [anon_sym_LBRACK] = ACTIONS(4042), - [anon_sym_static] = ACTIONS(4042), - [anon_sym_register] = ACTIONS(4042), - [anon_sym_inline] = ACTIONS(4042), - [anon_sym___inline] = ACTIONS(4042), - [anon_sym___inline__] = ACTIONS(4042), - [anon_sym___forceinline] = ACTIONS(4042), - [anon_sym_thread_local] = ACTIONS(4042), - [anon_sym___thread] = ACTIONS(4042), - [anon_sym_const] = ACTIONS(4042), - [anon_sym_constexpr] = ACTIONS(4042), - [anon_sym_volatile] = ACTIONS(4042), - [anon_sym_restrict] = ACTIONS(4042), - [anon_sym___restrict__] = ACTIONS(4042), - [anon_sym__Atomic] = ACTIONS(4042), - [anon_sym__Noreturn] = ACTIONS(4042), - [anon_sym_noreturn] = ACTIONS(4042), - [anon_sym__Nonnull] = ACTIONS(4042), - [anon_sym_mutable] = ACTIONS(4042), - [anon_sym_constinit] = ACTIONS(4042), - [anon_sym_consteval] = ACTIONS(4042), - [anon_sym_alignas] = ACTIONS(4042), - [anon_sym__Alignas] = ACTIONS(4042), - [sym_primitive_type] = ACTIONS(4042), - [anon_sym_enum] = ACTIONS(4042), - [anon_sym_class] = ACTIONS(4042), - [anon_sym_struct] = ACTIONS(4042), - [anon_sym_union] = ACTIONS(4042), - [anon_sym_if] = ACTIONS(4042), - [anon_sym_switch] = ACTIONS(4042), - [anon_sym_case] = ACTIONS(4042), - [anon_sym_default] = ACTIONS(4042), - [anon_sym_while] = ACTIONS(4042), - [anon_sym_do] = ACTIONS(4042), - [anon_sym_for] = ACTIONS(4042), - [anon_sym_return] = ACTIONS(4042), - [anon_sym_break] = ACTIONS(4042), - [anon_sym_continue] = ACTIONS(4042), - [anon_sym_goto] = ACTIONS(4042), - [anon_sym_not] = ACTIONS(4042), - [anon_sym_compl] = ACTIONS(4042), - [anon_sym_DASH_DASH] = ACTIONS(4044), - [anon_sym_PLUS_PLUS] = ACTIONS(4044), - [anon_sym_sizeof] = ACTIONS(4042), - [anon_sym___alignof__] = ACTIONS(4042), - [anon_sym___alignof] = ACTIONS(4042), - [anon_sym__alignof] = ACTIONS(4042), - [anon_sym_alignof] = ACTIONS(4042), - [anon_sym__Alignof] = ACTIONS(4042), - [anon_sym_offsetof] = ACTIONS(4042), - [anon_sym__Generic] = ACTIONS(4042), - [anon_sym_typename] = ACTIONS(4042), - [anon_sym_asm] = ACTIONS(4042), - [anon_sym___asm__] = ACTIONS(4042), - [anon_sym___asm] = ACTIONS(4042), - [sym_number_literal] = ACTIONS(4044), - [anon_sym_L_SQUOTE] = ACTIONS(4044), - [anon_sym_u_SQUOTE] = ACTIONS(4044), - [anon_sym_U_SQUOTE] = ACTIONS(4044), - [anon_sym_u8_SQUOTE] = ACTIONS(4044), - [anon_sym_SQUOTE] = ACTIONS(4044), - [anon_sym_L_DQUOTE] = ACTIONS(4044), - [anon_sym_u_DQUOTE] = ACTIONS(4044), - [anon_sym_U_DQUOTE] = ACTIONS(4044), - [anon_sym_u8_DQUOTE] = ACTIONS(4044), - [anon_sym_DQUOTE] = ACTIONS(4044), - [sym_true] = ACTIONS(4042), - [sym_false] = ACTIONS(4042), - [anon_sym_NULL] = ACTIONS(4042), - [anon_sym_nullptr] = ACTIONS(4042), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4042), - [anon_sym_decltype] = ACTIONS(4042), - [anon_sym_explicit] = ACTIONS(4042), - [anon_sym_export] = ACTIONS(4042), - [anon_sym_module] = ACTIONS(4042), - [anon_sym_import] = ACTIONS(4042), - [anon_sym_template] = ACTIONS(4042), - [anon_sym_operator] = ACTIONS(4042), - [anon_sym_try] = ACTIONS(4042), - [anon_sym_delete] = ACTIONS(4042), - [anon_sym_throw] = ACTIONS(4042), - [anon_sym_namespace] = ACTIONS(4042), - [anon_sym_static_assert] = ACTIONS(4042), - [anon_sym_concept] = ACTIONS(4042), - [anon_sym_co_return] = ACTIONS(4042), - [anon_sym_co_yield] = ACTIONS(4042), - [anon_sym_R_DQUOTE] = ACTIONS(4044), - [anon_sym_LR_DQUOTE] = ACTIONS(4044), - [anon_sym_uR_DQUOTE] = ACTIONS(4044), - [anon_sym_UR_DQUOTE] = ACTIONS(4044), - [anon_sym_u8R_DQUOTE] = ACTIONS(4044), - [anon_sym_co_await] = ACTIONS(4042), - [anon_sym_new] = ACTIONS(4042), - [anon_sym_requires] = ACTIONS(4042), - [anon_sym_CARET_CARET] = ACTIONS(4044), - [anon_sym_LBRACK_COLON] = ACTIONS(4044), - [sym_this] = ACTIONS(4042), + [STATE(543)] = { + [sym_else_clause] = STATE(600), + [sym_identifier] = ACTIONS(3408), + [aux_sym_preproc_include_token1] = ACTIONS(3408), + [aux_sym_preproc_def_token1] = ACTIONS(3408), + [aux_sym_preproc_if_token1] = ACTIONS(3408), + [aux_sym_preproc_if_token2] = ACTIONS(3408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3408), + [sym_preproc_directive] = ACTIONS(3408), + [anon_sym_LPAREN2] = ACTIONS(3410), + [anon_sym_BANG] = ACTIONS(3410), + [anon_sym_TILDE] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(3408), + [anon_sym_PLUS] = ACTIONS(3408), + [anon_sym_STAR] = ACTIONS(3410), + [anon_sym_AMP_AMP] = ACTIONS(3410), + [anon_sym_AMP] = ACTIONS(3408), + [anon_sym_SEMI] = ACTIONS(3410), + [anon_sym___extension__] = ACTIONS(3408), + [anon_sym_typedef] = ACTIONS(3408), + [anon_sym_virtual] = ACTIONS(3408), + [anon_sym_extern] = ACTIONS(3408), + [anon_sym___attribute__] = ACTIONS(3408), + [anon_sym___attribute] = ACTIONS(3408), + [anon_sym_using] = ACTIONS(3408), + [anon_sym_COLON_COLON] = ACTIONS(3410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3410), + [anon_sym___declspec] = ACTIONS(3408), + [anon_sym___based] = ACTIONS(3408), + [anon_sym___cdecl] = ACTIONS(3408), + [anon_sym___clrcall] = ACTIONS(3408), + [anon_sym___stdcall] = ACTIONS(3408), + [anon_sym___fastcall] = ACTIONS(3408), + [anon_sym___thiscall] = ACTIONS(3408), + [anon_sym___vectorcall] = ACTIONS(3408), + [anon_sym_LBRACE] = ACTIONS(3410), + [anon_sym_signed] = ACTIONS(3408), + [anon_sym_unsigned] = ACTIONS(3408), + [anon_sym_long] = ACTIONS(3408), + [anon_sym_short] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3408), + [anon_sym_static] = ACTIONS(3408), + [anon_sym_register] = ACTIONS(3408), + [anon_sym_inline] = ACTIONS(3408), + [anon_sym___inline] = ACTIONS(3408), + [anon_sym___inline__] = ACTIONS(3408), + [anon_sym___forceinline] = ACTIONS(3408), + [anon_sym_thread_local] = ACTIONS(3408), + [anon_sym___thread] = ACTIONS(3408), + [anon_sym_const] = ACTIONS(3408), + [anon_sym_constexpr] = ACTIONS(3408), + [anon_sym_volatile] = ACTIONS(3408), + [anon_sym_restrict] = ACTIONS(3408), + [anon_sym___restrict__] = ACTIONS(3408), + [anon_sym__Atomic] = ACTIONS(3408), + [anon_sym__Noreturn] = ACTIONS(3408), + [anon_sym_noreturn] = ACTIONS(3408), + [anon_sym__Nonnull] = ACTIONS(3408), + [anon_sym_mutable] = ACTIONS(3408), + [anon_sym_constinit] = ACTIONS(3408), + [anon_sym_consteval] = ACTIONS(3408), + [anon_sym_alignas] = ACTIONS(3408), + [anon_sym__Alignas] = ACTIONS(3408), + [sym_primitive_type] = ACTIONS(3408), + [anon_sym_enum] = ACTIONS(3408), + [anon_sym_class] = ACTIONS(3408), + [anon_sym_struct] = ACTIONS(3408), + [anon_sym_union] = ACTIONS(3408), + [anon_sym_if] = ACTIONS(3408), + [anon_sym_else] = ACTIONS(4470), + [anon_sym_switch] = ACTIONS(3408), + [anon_sym_case] = ACTIONS(3408), + [anon_sym_default] = ACTIONS(3408), + [anon_sym_while] = ACTIONS(3408), + [anon_sym_do] = ACTIONS(3408), + [anon_sym_for] = ACTIONS(3408), + [anon_sym_return] = ACTIONS(3408), + [anon_sym_break] = ACTIONS(3408), + [anon_sym_continue] = ACTIONS(3408), + [anon_sym_goto] = ACTIONS(3408), + [anon_sym___try] = ACTIONS(3408), + [anon_sym___leave] = ACTIONS(3408), + [anon_sym_not] = ACTIONS(3408), + [anon_sym_compl] = ACTIONS(3408), + [anon_sym_DASH_DASH] = ACTIONS(3410), + [anon_sym_PLUS_PLUS] = ACTIONS(3410), + [anon_sym_sizeof] = ACTIONS(3408), + [anon_sym___alignof__] = ACTIONS(3408), + [anon_sym___alignof] = ACTIONS(3408), + [anon_sym__alignof] = ACTIONS(3408), + [anon_sym_alignof] = ACTIONS(3408), + [anon_sym__Alignof] = ACTIONS(3408), + [anon_sym_offsetof] = ACTIONS(3408), + [anon_sym__Generic] = ACTIONS(3408), + [anon_sym_typename] = ACTIONS(3408), + [anon_sym_asm] = ACTIONS(3408), + [anon_sym___asm__] = ACTIONS(3408), + [anon_sym___asm] = ACTIONS(3408), + [sym_number_literal] = ACTIONS(3410), + [anon_sym_L_SQUOTE] = ACTIONS(3410), + [anon_sym_u_SQUOTE] = ACTIONS(3410), + [anon_sym_U_SQUOTE] = ACTIONS(3410), + [anon_sym_u8_SQUOTE] = ACTIONS(3410), + [anon_sym_SQUOTE] = ACTIONS(3410), + [anon_sym_L_DQUOTE] = ACTIONS(3410), + [anon_sym_u_DQUOTE] = ACTIONS(3410), + [anon_sym_U_DQUOTE] = ACTIONS(3410), + [anon_sym_u8_DQUOTE] = ACTIONS(3410), + [anon_sym_DQUOTE] = ACTIONS(3410), + [sym_true] = ACTIONS(3408), + [sym_false] = ACTIONS(3408), + [anon_sym_NULL] = ACTIONS(3408), + [anon_sym_nullptr] = ACTIONS(3408), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3408), + [anon_sym_decltype] = ACTIONS(3408), + [anon_sym_explicit] = ACTIONS(3408), + [anon_sym_export] = ACTIONS(3408), + [anon_sym_module] = ACTIONS(3408), + [anon_sym_import] = ACTIONS(3408), + [anon_sym_template] = ACTIONS(3408), + [anon_sym_operator] = ACTIONS(3408), + [anon_sym_try] = ACTIONS(3408), + [anon_sym_delete] = ACTIONS(3408), + [anon_sym_throw] = ACTIONS(3408), + [anon_sym_namespace] = ACTIONS(3408), + [anon_sym_static_assert] = ACTIONS(3408), + [anon_sym_concept] = ACTIONS(3408), + [anon_sym_co_return] = ACTIONS(3408), + [anon_sym_co_yield] = ACTIONS(3408), + [anon_sym_R_DQUOTE] = ACTIONS(3410), + [anon_sym_LR_DQUOTE] = ACTIONS(3410), + [anon_sym_uR_DQUOTE] = ACTIONS(3410), + [anon_sym_UR_DQUOTE] = ACTIONS(3410), + [anon_sym_u8R_DQUOTE] = ACTIONS(3410), + [anon_sym_co_await] = ACTIONS(3408), + [anon_sym_new] = ACTIONS(3408), + [anon_sym_requires] = ACTIONS(3408), + [anon_sym_CARET_CARET] = ACTIONS(3410), + [anon_sym_LBRACK_COLON] = ACTIONS(3410), + [sym_this] = ACTIONS(3408), }, - [STATE(602)] = { - [sym_identifier] = ACTIONS(3894), - [aux_sym_preproc_include_token1] = ACTIONS(3894), - [aux_sym_preproc_def_token1] = ACTIONS(3894), - [aux_sym_preproc_if_token1] = ACTIONS(3894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3894), - [sym_preproc_directive] = ACTIONS(3894), - [anon_sym_LPAREN2] = ACTIONS(3896), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(3896), - [anon_sym_AMP_AMP] = ACTIONS(3896), - [anon_sym_AMP] = ACTIONS(3894), - [anon_sym_SEMI] = ACTIONS(3896), - [anon_sym___extension__] = ACTIONS(3894), - [anon_sym_typedef] = ACTIONS(3894), - [anon_sym_virtual] = ACTIONS(3894), - [anon_sym_extern] = ACTIONS(3894), - [anon_sym___attribute__] = ACTIONS(3894), - [anon_sym___attribute] = ACTIONS(3894), - [anon_sym_using] = ACTIONS(3894), - [anon_sym_COLON_COLON] = ACTIONS(3896), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3896), - [anon_sym___declspec] = ACTIONS(3894), - [anon_sym___based] = ACTIONS(3894), - [anon_sym___cdecl] = ACTIONS(3894), - [anon_sym___clrcall] = ACTIONS(3894), - [anon_sym___stdcall] = ACTIONS(3894), - [anon_sym___fastcall] = ACTIONS(3894), - [anon_sym___thiscall] = ACTIONS(3894), - [anon_sym___vectorcall] = ACTIONS(3894), - [anon_sym_LBRACE] = ACTIONS(3896), - [anon_sym_RBRACE] = ACTIONS(3896), - [anon_sym_signed] = ACTIONS(3894), - [anon_sym_unsigned] = ACTIONS(3894), - [anon_sym_long] = ACTIONS(3894), - [anon_sym_short] = ACTIONS(3894), - [anon_sym_LBRACK] = ACTIONS(3894), - [anon_sym_static] = ACTIONS(3894), - [anon_sym_register] = ACTIONS(3894), - [anon_sym_inline] = ACTIONS(3894), - [anon_sym___inline] = ACTIONS(3894), - [anon_sym___inline__] = ACTIONS(3894), - [anon_sym___forceinline] = ACTIONS(3894), - [anon_sym_thread_local] = ACTIONS(3894), - [anon_sym___thread] = ACTIONS(3894), - [anon_sym_const] = ACTIONS(3894), - [anon_sym_constexpr] = ACTIONS(3894), - [anon_sym_volatile] = ACTIONS(3894), - [anon_sym_restrict] = ACTIONS(3894), - [anon_sym___restrict__] = ACTIONS(3894), - [anon_sym__Atomic] = ACTIONS(3894), - [anon_sym__Noreturn] = ACTIONS(3894), - [anon_sym_noreturn] = ACTIONS(3894), - [anon_sym__Nonnull] = ACTIONS(3894), - [anon_sym_mutable] = ACTIONS(3894), - [anon_sym_constinit] = ACTIONS(3894), - [anon_sym_consteval] = ACTIONS(3894), - [anon_sym_alignas] = ACTIONS(3894), - [anon_sym__Alignas] = ACTIONS(3894), - [sym_primitive_type] = ACTIONS(3894), - [anon_sym_enum] = ACTIONS(3894), - [anon_sym_class] = ACTIONS(3894), - [anon_sym_struct] = ACTIONS(3894), - [anon_sym_union] = ACTIONS(3894), - [anon_sym_if] = ACTIONS(3894), - [anon_sym_else] = ACTIONS(3894), - [anon_sym_switch] = ACTIONS(3894), - [anon_sym_case] = ACTIONS(3894), - [anon_sym_default] = ACTIONS(3894), - [anon_sym_while] = ACTIONS(3894), - [anon_sym_do] = ACTIONS(3894), - [anon_sym_for] = ACTIONS(3894), - [anon_sym_return] = ACTIONS(3894), - [anon_sym_break] = ACTIONS(3894), - [anon_sym_continue] = ACTIONS(3894), - [anon_sym_goto] = ACTIONS(3894), - [anon_sym___try] = ACTIONS(3894), - [anon_sym___leave] = ACTIONS(3894), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3896), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(3894), - [anon_sym___alignof] = ACTIONS(3894), - [anon_sym__alignof] = ACTIONS(3894), - [anon_sym_alignof] = ACTIONS(3894), - [anon_sym__Alignof] = ACTIONS(3894), - [anon_sym_offsetof] = ACTIONS(3894), - [anon_sym__Generic] = ACTIONS(3894), - [anon_sym_typename] = ACTIONS(3894), - [anon_sym_asm] = ACTIONS(3894), - [anon_sym___asm__] = ACTIONS(3894), - [anon_sym___asm] = ACTIONS(3894), - [sym_number_literal] = ACTIONS(3896), - [anon_sym_L_SQUOTE] = ACTIONS(3896), - [anon_sym_u_SQUOTE] = ACTIONS(3896), - [anon_sym_U_SQUOTE] = ACTIONS(3896), - [anon_sym_u8_SQUOTE] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(3896), - [anon_sym_L_DQUOTE] = ACTIONS(3896), - [anon_sym_u_DQUOTE] = ACTIONS(3896), - [anon_sym_U_DQUOTE] = ACTIONS(3896), - [anon_sym_u8_DQUOTE] = ACTIONS(3896), - [anon_sym_DQUOTE] = ACTIONS(3896), - [sym_true] = ACTIONS(3894), - [sym_false] = ACTIONS(3894), - [anon_sym_NULL] = ACTIONS(3894), - [anon_sym_nullptr] = ACTIONS(3894), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3894), - [anon_sym_decltype] = ACTIONS(3894), - [anon_sym_explicit] = ACTIONS(3894), - [anon_sym_template] = ACTIONS(3894), - [anon_sym_operator] = ACTIONS(3894), - [anon_sym_try] = ACTIONS(3894), - [anon_sym_delete] = ACTIONS(3894), - [anon_sym_throw] = ACTIONS(3894), - [anon_sym_namespace] = ACTIONS(3894), - [anon_sym_static_assert] = ACTIONS(3894), - [anon_sym_concept] = ACTIONS(3894), - [anon_sym_co_return] = ACTIONS(3894), - [anon_sym_co_yield] = ACTIONS(3894), - [anon_sym_R_DQUOTE] = ACTIONS(3896), - [anon_sym_LR_DQUOTE] = ACTIONS(3896), - [anon_sym_uR_DQUOTE] = ACTIONS(3896), - [anon_sym_UR_DQUOTE] = ACTIONS(3896), - [anon_sym_u8R_DQUOTE] = ACTIONS(3896), - [anon_sym_co_await] = ACTIONS(3894), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_requires] = ACTIONS(3894), - [anon_sym_CARET_CARET] = ACTIONS(3896), - [anon_sym_LBRACK_COLON] = ACTIONS(3896), - [sym_this] = ACTIONS(3894), + [STATE(544)] = { + [sym_identifier] = ACTIONS(4510), + [aux_sym_preproc_include_token1] = ACTIONS(4510), + [aux_sym_preproc_def_token1] = ACTIONS(4510), + [aux_sym_preproc_if_token1] = ACTIONS(4510), + [aux_sym_preproc_if_token2] = ACTIONS(4510), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4510), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4510), + [aux_sym_preproc_else_token1] = ACTIONS(4510), + [aux_sym_preproc_elif_token1] = ACTIONS(4510), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4510), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4510), + [sym_preproc_directive] = ACTIONS(4510), + [anon_sym_LPAREN2] = ACTIONS(4512), + [anon_sym_BANG] = ACTIONS(4512), + [anon_sym_TILDE] = ACTIONS(4512), + [anon_sym_DASH] = ACTIONS(4510), + [anon_sym_PLUS] = ACTIONS(4510), + [anon_sym_STAR] = ACTIONS(4512), + [anon_sym_AMP_AMP] = ACTIONS(4512), + [anon_sym_AMP] = ACTIONS(4510), + [anon_sym_SEMI] = ACTIONS(4512), + [anon_sym___extension__] = ACTIONS(4510), + [anon_sym_typedef] = ACTIONS(4510), + [anon_sym_virtual] = ACTIONS(4510), + [anon_sym_extern] = ACTIONS(4510), + [anon_sym___attribute__] = ACTIONS(4510), + [anon_sym___attribute] = ACTIONS(4510), + [anon_sym_using] = ACTIONS(4510), + [anon_sym_COLON_COLON] = ACTIONS(4512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4512), + [anon_sym___declspec] = ACTIONS(4510), + [anon_sym___based] = ACTIONS(4510), + [anon_sym___cdecl] = ACTIONS(4510), + [anon_sym___clrcall] = ACTIONS(4510), + [anon_sym___stdcall] = ACTIONS(4510), + [anon_sym___fastcall] = ACTIONS(4510), + [anon_sym___thiscall] = ACTIONS(4510), + [anon_sym___vectorcall] = ACTIONS(4510), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_signed] = ACTIONS(4510), + [anon_sym_unsigned] = ACTIONS(4510), + [anon_sym_long] = ACTIONS(4510), + [anon_sym_short] = ACTIONS(4510), + [anon_sym_LBRACK] = ACTIONS(4510), + [anon_sym_static] = ACTIONS(4510), + [anon_sym_register] = ACTIONS(4510), + [anon_sym_inline] = ACTIONS(4510), + [anon_sym___inline] = ACTIONS(4510), + [anon_sym___inline__] = ACTIONS(4510), + [anon_sym___forceinline] = ACTIONS(4510), + [anon_sym_thread_local] = ACTIONS(4510), + [anon_sym___thread] = ACTIONS(4510), + [anon_sym_const] = ACTIONS(4510), + [anon_sym_constexpr] = ACTIONS(4510), + [anon_sym_volatile] = ACTIONS(4510), + [anon_sym_restrict] = ACTIONS(4510), + [anon_sym___restrict__] = ACTIONS(4510), + [anon_sym__Atomic] = ACTIONS(4510), + [anon_sym__Noreturn] = ACTIONS(4510), + [anon_sym_noreturn] = ACTIONS(4510), + [anon_sym__Nonnull] = ACTIONS(4510), + [anon_sym_mutable] = ACTIONS(4510), + [anon_sym_constinit] = ACTIONS(4510), + [anon_sym_consteval] = ACTIONS(4510), + [anon_sym_alignas] = ACTIONS(4510), + [anon_sym__Alignas] = ACTIONS(4510), + [sym_primitive_type] = ACTIONS(4510), + [anon_sym_enum] = ACTIONS(4510), + [anon_sym_class] = ACTIONS(4510), + [anon_sym_struct] = ACTIONS(4510), + [anon_sym_union] = ACTIONS(4510), + [anon_sym_if] = ACTIONS(4510), + [anon_sym_switch] = ACTIONS(4510), + [anon_sym_case] = ACTIONS(4510), + [anon_sym_default] = ACTIONS(4510), + [anon_sym_while] = ACTIONS(4510), + [anon_sym_do] = ACTIONS(4510), + [anon_sym_for] = ACTIONS(4510), + [anon_sym_return] = ACTIONS(4510), + [anon_sym_break] = ACTIONS(4510), + [anon_sym_continue] = ACTIONS(4510), + [anon_sym_goto] = ACTIONS(4510), + [anon_sym_not] = ACTIONS(4510), + [anon_sym_compl] = ACTIONS(4510), + [anon_sym_DASH_DASH] = ACTIONS(4512), + [anon_sym_PLUS_PLUS] = ACTIONS(4512), + [anon_sym_sizeof] = ACTIONS(4510), + [anon_sym___alignof__] = ACTIONS(4510), + [anon_sym___alignof] = ACTIONS(4510), + [anon_sym__alignof] = ACTIONS(4510), + [anon_sym_alignof] = ACTIONS(4510), + [anon_sym__Alignof] = ACTIONS(4510), + [anon_sym_offsetof] = ACTIONS(4510), + [anon_sym__Generic] = ACTIONS(4510), + [anon_sym_typename] = ACTIONS(4510), + [anon_sym_asm] = ACTIONS(4510), + [anon_sym___asm__] = ACTIONS(4510), + [anon_sym___asm] = ACTIONS(4510), + [sym_number_literal] = ACTIONS(4512), + [anon_sym_L_SQUOTE] = ACTIONS(4512), + [anon_sym_u_SQUOTE] = ACTIONS(4512), + [anon_sym_U_SQUOTE] = ACTIONS(4512), + [anon_sym_u8_SQUOTE] = ACTIONS(4512), + [anon_sym_SQUOTE] = ACTIONS(4512), + [anon_sym_L_DQUOTE] = ACTIONS(4512), + [anon_sym_u_DQUOTE] = ACTIONS(4512), + [anon_sym_U_DQUOTE] = ACTIONS(4512), + [anon_sym_u8_DQUOTE] = ACTIONS(4512), + [anon_sym_DQUOTE] = ACTIONS(4512), + [sym_true] = ACTIONS(4510), + [sym_false] = ACTIONS(4510), + [anon_sym_NULL] = ACTIONS(4510), + [anon_sym_nullptr] = ACTIONS(4510), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4510), + [anon_sym_decltype] = ACTIONS(4510), + [anon_sym_explicit] = ACTIONS(4510), + [anon_sym_export] = ACTIONS(4510), + [anon_sym_module] = ACTIONS(4510), + [anon_sym_import] = ACTIONS(4510), + [anon_sym_template] = ACTIONS(4510), + [anon_sym_operator] = ACTIONS(4510), + [anon_sym_try] = ACTIONS(4510), + [anon_sym_delete] = ACTIONS(4510), + [anon_sym_throw] = ACTIONS(4510), + [anon_sym_namespace] = ACTIONS(4510), + [anon_sym_static_assert] = ACTIONS(4510), + [anon_sym_concept] = ACTIONS(4510), + [anon_sym_co_return] = ACTIONS(4510), + [anon_sym_co_yield] = ACTIONS(4510), + [anon_sym_R_DQUOTE] = ACTIONS(4512), + [anon_sym_LR_DQUOTE] = ACTIONS(4512), + [anon_sym_uR_DQUOTE] = ACTIONS(4512), + [anon_sym_UR_DQUOTE] = ACTIONS(4512), + [anon_sym_u8R_DQUOTE] = ACTIONS(4512), + [anon_sym_co_await] = ACTIONS(4510), + [anon_sym_new] = ACTIONS(4510), + [anon_sym_requires] = ACTIONS(4510), + [anon_sym_CARET_CARET] = ACTIONS(4512), + [anon_sym_LBRACK_COLON] = ACTIONS(4512), + [sym_this] = ACTIONS(4510), }, - [STATE(603)] = { - [sym_identifier] = ACTIONS(3700), - [aux_sym_preproc_include_token1] = ACTIONS(3700), - [aux_sym_preproc_def_token1] = ACTIONS(3700), - [aux_sym_preproc_if_token1] = ACTIONS(3700), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3700), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3700), - [sym_preproc_directive] = ACTIONS(3700), - [anon_sym_LPAREN2] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_TILDE] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3700), - [anon_sym_SEMI] = ACTIONS(3702), - [anon_sym___extension__] = ACTIONS(3700), - [anon_sym_typedef] = ACTIONS(3700), - [anon_sym_virtual] = ACTIONS(3700), - [anon_sym_extern] = ACTIONS(3700), - [anon_sym___attribute__] = ACTIONS(3700), - [anon_sym___attribute] = ACTIONS(3700), - [anon_sym_using] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3702), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3702), - [anon_sym___declspec] = ACTIONS(3700), - [anon_sym___based] = ACTIONS(3700), - [anon_sym___cdecl] = ACTIONS(3700), - [anon_sym___clrcall] = ACTIONS(3700), - [anon_sym___stdcall] = ACTIONS(3700), - [anon_sym___fastcall] = ACTIONS(3700), - [anon_sym___thiscall] = ACTIONS(3700), - [anon_sym___vectorcall] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3702), - [anon_sym_RBRACE] = ACTIONS(3702), - [anon_sym_signed] = ACTIONS(3700), - [anon_sym_unsigned] = ACTIONS(3700), - [anon_sym_long] = ACTIONS(3700), - [anon_sym_short] = ACTIONS(3700), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_static] = ACTIONS(3700), - [anon_sym_register] = ACTIONS(3700), - [anon_sym_inline] = ACTIONS(3700), - [anon_sym___inline] = ACTIONS(3700), - [anon_sym___inline__] = ACTIONS(3700), - [anon_sym___forceinline] = ACTIONS(3700), - [anon_sym_thread_local] = ACTIONS(3700), - [anon_sym___thread] = ACTIONS(3700), - [anon_sym_const] = ACTIONS(3700), - [anon_sym_constexpr] = ACTIONS(3700), - [anon_sym_volatile] = ACTIONS(3700), - [anon_sym_restrict] = ACTIONS(3700), - [anon_sym___restrict__] = ACTIONS(3700), - [anon_sym__Atomic] = ACTIONS(3700), - [anon_sym__Noreturn] = ACTIONS(3700), - [anon_sym_noreturn] = ACTIONS(3700), - [anon_sym__Nonnull] = ACTIONS(3700), - [anon_sym_mutable] = ACTIONS(3700), - [anon_sym_constinit] = ACTIONS(3700), - [anon_sym_consteval] = ACTIONS(3700), - [anon_sym_alignas] = ACTIONS(3700), - [anon_sym__Alignas] = ACTIONS(3700), - [sym_primitive_type] = ACTIONS(3700), - [anon_sym_enum] = ACTIONS(3700), - [anon_sym_class] = ACTIONS(3700), - [anon_sym_struct] = ACTIONS(3700), - [anon_sym_union] = ACTIONS(3700), - [anon_sym_if] = ACTIONS(3700), - [anon_sym_else] = ACTIONS(3700), - [anon_sym_switch] = ACTIONS(3700), - [anon_sym_case] = ACTIONS(3700), - [anon_sym_default] = ACTIONS(3700), - [anon_sym_while] = ACTIONS(3700), - [anon_sym_do] = ACTIONS(3700), - [anon_sym_for] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(3700), - [anon_sym_break] = ACTIONS(3700), - [anon_sym_continue] = ACTIONS(3700), - [anon_sym_goto] = ACTIONS(3700), - [anon_sym___try] = ACTIONS(3700), - [anon_sym___leave] = ACTIONS(3700), - [anon_sym_not] = ACTIONS(3700), - [anon_sym_compl] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3702), - [anon_sym_sizeof] = ACTIONS(3700), - [anon_sym___alignof__] = ACTIONS(3700), - [anon_sym___alignof] = ACTIONS(3700), - [anon_sym__alignof] = ACTIONS(3700), - [anon_sym_alignof] = ACTIONS(3700), - [anon_sym__Alignof] = ACTIONS(3700), - [anon_sym_offsetof] = ACTIONS(3700), - [anon_sym__Generic] = ACTIONS(3700), - [anon_sym_typename] = ACTIONS(3700), - [anon_sym_asm] = ACTIONS(3700), - [anon_sym___asm__] = ACTIONS(3700), - [anon_sym___asm] = ACTIONS(3700), - [sym_number_literal] = ACTIONS(3702), - [anon_sym_L_SQUOTE] = ACTIONS(3702), - [anon_sym_u_SQUOTE] = ACTIONS(3702), - [anon_sym_U_SQUOTE] = ACTIONS(3702), - [anon_sym_u8_SQUOTE] = ACTIONS(3702), - [anon_sym_SQUOTE] = ACTIONS(3702), - [anon_sym_L_DQUOTE] = ACTIONS(3702), - [anon_sym_u_DQUOTE] = ACTIONS(3702), - [anon_sym_U_DQUOTE] = ACTIONS(3702), - [anon_sym_u8_DQUOTE] = ACTIONS(3702), - [anon_sym_DQUOTE] = ACTIONS(3702), - [sym_true] = ACTIONS(3700), - [sym_false] = ACTIONS(3700), - [anon_sym_NULL] = ACTIONS(3700), - [anon_sym_nullptr] = ACTIONS(3700), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3700), - [anon_sym_decltype] = ACTIONS(3700), - [anon_sym_explicit] = ACTIONS(3700), - [anon_sym_template] = ACTIONS(3700), - [anon_sym_operator] = ACTIONS(3700), - [anon_sym_try] = ACTIONS(3700), - [anon_sym_delete] = ACTIONS(3700), - [anon_sym_throw] = ACTIONS(3700), - [anon_sym_namespace] = ACTIONS(3700), - [anon_sym_static_assert] = ACTIONS(3700), - [anon_sym_concept] = ACTIONS(3700), - [anon_sym_co_return] = ACTIONS(3700), - [anon_sym_co_yield] = ACTIONS(3700), - [anon_sym_R_DQUOTE] = ACTIONS(3702), - [anon_sym_LR_DQUOTE] = ACTIONS(3702), - [anon_sym_uR_DQUOTE] = ACTIONS(3702), - [anon_sym_UR_DQUOTE] = ACTIONS(3702), - [anon_sym_u8R_DQUOTE] = ACTIONS(3702), - [anon_sym_co_await] = ACTIONS(3700), - [anon_sym_new] = ACTIONS(3700), - [anon_sym_requires] = ACTIONS(3700), - [anon_sym_CARET_CARET] = ACTIONS(3702), - [anon_sym_LBRACK_COLON] = ACTIONS(3702), - [sym_this] = ACTIONS(3700), + [STATE(545)] = { + [ts_builtin_sym_end] = ACTIONS(3364), + [sym_identifier] = ACTIONS(3362), + [aux_sym_preproc_include_token1] = ACTIONS(3362), + [aux_sym_preproc_def_token1] = ACTIONS(3362), + [aux_sym_preproc_if_token1] = ACTIONS(3362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), + [sym_preproc_directive] = ACTIONS(3362), + [anon_sym_LPAREN2] = ACTIONS(3364), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_STAR] = ACTIONS(3364), + [anon_sym_AMP_AMP] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3362), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym___extension__] = ACTIONS(3362), + [anon_sym_typedef] = ACTIONS(3362), + [anon_sym_virtual] = ACTIONS(3362), + [anon_sym_extern] = ACTIONS(3362), + [anon_sym___attribute__] = ACTIONS(3362), + [anon_sym___attribute] = ACTIONS(3362), + [anon_sym_using] = ACTIONS(3362), + [anon_sym_COLON_COLON] = ACTIONS(3364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), + [anon_sym___declspec] = ACTIONS(3362), + [anon_sym___based] = ACTIONS(3362), + [anon_sym___cdecl] = ACTIONS(3362), + [anon_sym___clrcall] = ACTIONS(3362), + [anon_sym___stdcall] = ACTIONS(3362), + [anon_sym___fastcall] = ACTIONS(3362), + [anon_sym___thiscall] = ACTIONS(3362), + [anon_sym___vectorcall] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_signed] = ACTIONS(3362), + [anon_sym_unsigned] = ACTIONS(3362), + [anon_sym_long] = ACTIONS(3362), + [anon_sym_short] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_static] = ACTIONS(3362), + [anon_sym_register] = ACTIONS(3362), + [anon_sym_inline] = ACTIONS(3362), + [anon_sym___inline] = ACTIONS(3362), + [anon_sym___inline__] = ACTIONS(3362), + [anon_sym___forceinline] = ACTIONS(3362), + [anon_sym_thread_local] = ACTIONS(3362), + [anon_sym___thread] = ACTIONS(3362), + [anon_sym_const] = ACTIONS(3362), + [anon_sym_constexpr] = ACTIONS(3362), + [anon_sym_volatile] = ACTIONS(3362), + [anon_sym_restrict] = ACTIONS(3362), + [anon_sym___restrict__] = ACTIONS(3362), + [anon_sym__Atomic] = ACTIONS(3362), + [anon_sym__Noreturn] = ACTIONS(3362), + [anon_sym_noreturn] = ACTIONS(3362), + [anon_sym__Nonnull] = ACTIONS(3362), + [anon_sym_mutable] = ACTIONS(3362), + [anon_sym_constinit] = ACTIONS(3362), + [anon_sym_consteval] = ACTIONS(3362), + [anon_sym_alignas] = ACTIONS(3362), + [anon_sym__Alignas] = ACTIONS(3362), + [sym_primitive_type] = ACTIONS(3362), + [anon_sym_enum] = ACTIONS(3362), + [anon_sym_class] = ACTIONS(3362), + [anon_sym_struct] = ACTIONS(3362), + [anon_sym_union] = ACTIONS(3362), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_else] = ACTIONS(3362), + [anon_sym_switch] = ACTIONS(3362), + [anon_sym_case] = ACTIONS(3362), + [anon_sym_default] = ACTIONS(3362), + [anon_sym_while] = ACTIONS(3362), + [anon_sym_do] = ACTIONS(3362), + [anon_sym_for] = ACTIONS(3362), + [anon_sym_return] = ACTIONS(3362), + [anon_sym_break] = ACTIONS(3362), + [anon_sym_continue] = ACTIONS(3362), + [anon_sym_goto] = ACTIONS(3362), + [anon_sym___try] = ACTIONS(3362), + [anon_sym___leave] = ACTIONS(3362), + [anon_sym_not] = ACTIONS(3362), + [anon_sym_compl] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3364), + [anon_sym_PLUS_PLUS] = ACTIONS(3364), + [anon_sym_sizeof] = ACTIONS(3362), + [anon_sym___alignof__] = ACTIONS(3362), + [anon_sym___alignof] = ACTIONS(3362), + [anon_sym__alignof] = ACTIONS(3362), + [anon_sym_alignof] = ACTIONS(3362), + [anon_sym__Alignof] = ACTIONS(3362), + [anon_sym_offsetof] = ACTIONS(3362), + [anon_sym__Generic] = ACTIONS(3362), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_asm] = ACTIONS(3362), + [anon_sym___asm__] = ACTIONS(3362), + [anon_sym___asm] = ACTIONS(3362), + [sym_number_literal] = ACTIONS(3364), + [anon_sym_L_SQUOTE] = ACTIONS(3364), + [anon_sym_u_SQUOTE] = ACTIONS(3364), + [anon_sym_U_SQUOTE] = ACTIONS(3364), + [anon_sym_u8_SQUOTE] = ACTIONS(3364), + [anon_sym_SQUOTE] = ACTIONS(3364), + [anon_sym_L_DQUOTE] = ACTIONS(3364), + [anon_sym_u_DQUOTE] = ACTIONS(3364), + [anon_sym_U_DQUOTE] = ACTIONS(3364), + [anon_sym_u8_DQUOTE] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [sym_true] = ACTIONS(3362), + [sym_false] = ACTIONS(3362), + [anon_sym_NULL] = ACTIONS(3362), + [anon_sym_nullptr] = ACTIONS(3362), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3362), + [anon_sym_decltype] = ACTIONS(3362), + [anon_sym_explicit] = ACTIONS(3362), + [anon_sym_export] = ACTIONS(3362), + [anon_sym_module] = ACTIONS(3362), + [anon_sym_import] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(3362), + [anon_sym_operator] = ACTIONS(3362), + [anon_sym_try] = ACTIONS(3362), + [anon_sym_delete] = ACTIONS(3362), + [anon_sym_throw] = ACTIONS(3362), + [anon_sym_namespace] = ACTIONS(3362), + [anon_sym_static_assert] = ACTIONS(3362), + [anon_sym_concept] = ACTIONS(3362), + [anon_sym_co_return] = ACTIONS(3362), + [anon_sym_co_yield] = ACTIONS(3362), + [anon_sym_catch] = ACTIONS(3362), + [anon_sym_R_DQUOTE] = ACTIONS(3364), + [anon_sym_LR_DQUOTE] = ACTIONS(3364), + [anon_sym_uR_DQUOTE] = ACTIONS(3364), + [anon_sym_UR_DQUOTE] = ACTIONS(3364), + [anon_sym_u8R_DQUOTE] = ACTIONS(3364), + [anon_sym_co_await] = ACTIONS(3362), + [anon_sym_new] = ACTIONS(3362), + [anon_sym_requires] = ACTIONS(3362), + [anon_sym_CARET_CARET] = ACTIONS(3364), + [anon_sym_LBRACK_COLON] = ACTIONS(3364), + [sym_this] = ACTIONS(3362), }, - [STATE(604)] = { - [sym_identifier] = ACTIONS(3864), - [aux_sym_preproc_include_token1] = ACTIONS(3864), - [aux_sym_preproc_def_token1] = ACTIONS(3864), - [aux_sym_preproc_if_token1] = ACTIONS(3864), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3864), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3864), - [sym_preproc_directive] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(3866), - [anon_sym_BANG] = ACTIONS(3866), - [anon_sym_TILDE] = ACTIONS(3866), - [anon_sym_DASH] = ACTIONS(3864), - [anon_sym_PLUS] = ACTIONS(3864), - [anon_sym_STAR] = ACTIONS(3866), - [anon_sym_AMP_AMP] = ACTIONS(3866), - [anon_sym_AMP] = ACTIONS(3864), - [anon_sym_SEMI] = ACTIONS(3866), - [anon_sym___extension__] = ACTIONS(3864), - [anon_sym_typedef] = ACTIONS(3864), - [anon_sym_virtual] = ACTIONS(3864), - [anon_sym_extern] = ACTIONS(3864), - [anon_sym___attribute__] = ACTIONS(3864), - [anon_sym___attribute] = ACTIONS(3864), - [anon_sym_using] = ACTIONS(3864), - [anon_sym_COLON_COLON] = ACTIONS(3866), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3866), - [anon_sym___declspec] = ACTIONS(3864), - [anon_sym___based] = ACTIONS(3864), - [anon_sym___cdecl] = ACTIONS(3864), - [anon_sym___clrcall] = ACTIONS(3864), - [anon_sym___stdcall] = ACTIONS(3864), - [anon_sym___fastcall] = ACTIONS(3864), - [anon_sym___thiscall] = ACTIONS(3864), - [anon_sym___vectorcall] = ACTIONS(3864), - [anon_sym_LBRACE] = ACTIONS(3866), - [anon_sym_RBRACE] = ACTIONS(3866), - [anon_sym_signed] = ACTIONS(3864), - [anon_sym_unsigned] = ACTIONS(3864), - [anon_sym_long] = ACTIONS(3864), - [anon_sym_short] = ACTIONS(3864), - [anon_sym_LBRACK] = ACTIONS(3864), - [anon_sym_static] = ACTIONS(3864), - [anon_sym_register] = ACTIONS(3864), - [anon_sym_inline] = ACTIONS(3864), - [anon_sym___inline] = ACTIONS(3864), - [anon_sym___inline__] = ACTIONS(3864), - [anon_sym___forceinline] = ACTIONS(3864), - [anon_sym_thread_local] = ACTIONS(3864), - [anon_sym___thread] = ACTIONS(3864), - [anon_sym_const] = ACTIONS(3864), - [anon_sym_constexpr] = ACTIONS(3864), - [anon_sym_volatile] = ACTIONS(3864), - [anon_sym_restrict] = ACTIONS(3864), - [anon_sym___restrict__] = ACTIONS(3864), - [anon_sym__Atomic] = ACTIONS(3864), - [anon_sym__Noreturn] = ACTIONS(3864), - [anon_sym_noreturn] = ACTIONS(3864), - [anon_sym__Nonnull] = ACTIONS(3864), - [anon_sym_mutable] = ACTIONS(3864), - [anon_sym_constinit] = ACTIONS(3864), - [anon_sym_consteval] = ACTIONS(3864), - [anon_sym_alignas] = ACTIONS(3864), - [anon_sym__Alignas] = ACTIONS(3864), - [sym_primitive_type] = ACTIONS(3864), - [anon_sym_enum] = ACTIONS(3864), - [anon_sym_class] = ACTIONS(3864), - [anon_sym_struct] = ACTIONS(3864), - [anon_sym_union] = ACTIONS(3864), - [anon_sym_if] = ACTIONS(3864), - [anon_sym_else] = ACTIONS(3864), - [anon_sym_switch] = ACTIONS(3864), - [anon_sym_case] = ACTIONS(3864), - [anon_sym_default] = ACTIONS(3864), - [anon_sym_while] = ACTIONS(3864), - [anon_sym_do] = ACTIONS(3864), - [anon_sym_for] = ACTIONS(3864), - [anon_sym_return] = ACTIONS(3864), - [anon_sym_break] = ACTIONS(3864), - [anon_sym_continue] = ACTIONS(3864), - [anon_sym_goto] = ACTIONS(3864), - [anon_sym___try] = ACTIONS(3864), - [anon_sym___leave] = ACTIONS(3864), - [anon_sym_not] = ACTIONS(3864), - [anon_sym_compl] = ACTIONS(3864), - [anon_sym_DASH_DASH] = ACTIONS(3866), - [anon_sym_PLUS_PLUS] = ACTIONS(3866), - [anon_sym_sizeof] = ACTIONS(3864), - [anon_sym___alignof__] = ACTIONS(3864), - [anon_sym___alignof] = ACTIONS(3864), - [anon_sym__alignof] = ACTIONS(3864), - [anon_sym_alignof] = ACTIONS(3864), - [anon_sym__Alignof] = ACTIONS(3864), - [anon_sym_offsetof] = ACTIONS(3864), - [anon_sym__Generic] = ACTIONS(3864), - [anon_sym_typename] = ACTIONS(3864), - [anon_sym_asm] = ACTIONS(3864), - [anon_sym___asm__] = ACTIONS(3864), - [anon_sym___asm] = ACTIONS(3864), - [sym_number_literal] = ACTIONS(3866), - [anon_sym_L_SQUOTE] = ACTIONS(3866), - [anon_sym_u_SQUOTE] = ACTIONS(3866), - [anon_sym_U_SQUOTE] = ACTIONS(3866), - [anon_sym_u8_SQUOTE] = ACTIONS(3866), - [anon_sym_SQUOTE] = ACTIONS(3866), - [anon_sym_L_DQUOTE] = ACTIONS(3866), - [anon_sym_u_DQUOTE] = ACTIONS(3866), - [anon_sym_U_DQUOTE] = ACTIONS(3866), - [anon_sym_u8_DQUOTE] = ACTIONS(3866), - [anon_sym_DQUOTE] = ACTIONS(3866), - [sym_true] = ACTIONS(3864), - [sym_false] = ACTIONS(3864), - [anon_sym_NULL] = ACTIONS(3864), - [anon_sym_nullptr] = ACTIONS(3864), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3864), - [anon_sym_decltype] = ACTIONS(3864), - [anon_sym_explicit] = ACTIONS(3864), - [anon_sym_template] = ACTIONS(3864), - [anon_sym_operator] = ACTIONS(3864), - [anon_sym_try] = ACTIONS(3864), - [anon_sym_delete] = ACTIONS(3864), - [anon_sym_throw] = ACTIONS(3864), - [anon_sym_namespace] = ACTIONS(3864), - [anon_sym_static_assert] = ACTIONS(3864), - [anon_sym_concept] = ACTIONS(3864), - [anon_sym_co_return] = ACTIONS(3864), - [anon_sym_co_yield] = ACTIONS(3864), - [anon_sym_R_DQUOTE] = ACTIONS(3866), - [anon_sym_LR_DQUOTE] = ACTIONS(3866), - [anon_sym_uR_DQUOTE] = ACTIONS(3866), - [anon_sym_UR_DQUOTE] = ACTIONS(3866), - [anon_sym_u8R_DQUOTE] = ACTIONS(3866), - [anon_sym_co_await] = ACTIONS(3864), - [anon_sym_new] = ACTIONS(3864), - [anon_sym_requires] = ACTIONS(3864), - [anon_sym_CARET_CARET] = ACTIONS(3866), - [anon_sym_LBRACK_COLON] = ACTIONS(3866), - [sym_this] = ACTIONS(3864), + [STATE(546)] = { + [sym_identifier] = ACTIONS(4514), + [aux_sym_preproc_include_token1] = ACTIONS(4514), + [aux_sym_preproc_def_token1] = ACTIONS(4514), + [aux_sym_preproc_if_token1] = ACTIONS(4514), + [aux_sym_preproc_if_token2] = ACTIONS(4514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4514), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4514), + [aux_sym_preproc_else_token1] = ACTIONS(4514), + [aux_sym_preproc_elif_token1] = ACTIONS(4514), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4514), + [sym_preproc_directive] = ACTIONS(4514), + [anon_sym_LPAREN2] = ACTIONS(4516), + [anon_sym_BANG] = ACTIONS(4516), + [anon_sym_TILDE] = ACTIONS(4516), + [anon_sym_DASH] = ACTIONS(4514), + [anon_sym_PLUS] = ACTIONS(4514), + [anon_sym_STAR] = ACTIONS(4516), + [anon_sym_AMP_AMP] = ACTIONS(4516), + [anon_sym_AMP] = ACTIONS(4514), + [anon_sym_SEMI] = ACTIONS(4516), + [anon_sym___extension__] = ACTIONS(4514), + [anon_sym_typedef] = ACTIONS(4514), + [anon_sym_virtual] = ACTIONS(4514), + [anon_sym_extern] = ACTIONS(4514), + [anon_sym___attribute__] = ACTIONS(4514), + [anon_sym___attribute] = ACTIONS(4514), + [anon_sym_using] = ACTIONS(4514), + [anon_sym_COLON_COLON] = ACTIONS(4516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4516), + [anon_sym___declspec] = ACTIONS(4514), + [anon_sym___based] = ACTIONS(4514), + [anon_sym___cdecl] = ACTIONS(4514), + [anon_sym___clrcall] = ACTIONS(4514), + [anon_sym___stdcall] = ACTIONS(4514), + [anon_sym___fastcall] = ACTIONS(4514), + [anon_sym___thiscall] = ACTIONS(4514), + [anon_sym___vectorcall] = ACTIONS(4514), + [anon_sym_LBRACE] = ACTIONS(4516), + [anon_sym_signed] = ACTIONS(4514), + [anon_sym_unsigned] = ACTIONS(4514), + [anon_sym_long] = ACTIONS(4514), + [anon_sym_short] = ACTIONS(4514), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym_static] = ACTIONS(4514), + [anon_sym_register] = ACTIONS(4514), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym___inline] = ACTIONS(4514), + [anon_sym___inline__] = ACTIONS(4514), + [anon_sym___forceinline] = ACTIONS(4514), + [anon_sym_thread_local] = ACTIONS(4514), + [anon_sym___thread] = ACTIONS(4514), + [anon_sym_const] = ACTIONS(4514), + [anon_sym_constexpr] = ACTIONS(4514), + [anon_sym_volatile] = ACTIONS(4514), + [anon_sym_restrict] = ACTIONS(4514), + [anon_sym___restrict__] = ACTIONS(4514), + [anon_sym__Atomic] = ACTIONS(4514), + [anon_sym__Noreturn] = ACTIONS(4514), + [anon_sym_noreturn] = ACTIONS(4514), + [anon_sym__Nonnull] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4514), + [anon_sym_constinit] = ACTIONS(4514), + [anon_sym_consteval] = ACTIONS(4514), + [anon_sym_alignas] = ACTIONS(4514), + [anon_sym__Alignas] = ACTIONS(4514), + [sym_primitive_type] = ACTIONS(4514), + [anon_sym_enum] = ACTIONS(4514), + [anon_sym_class] = ACTIONS(4514), + [anon_sym_struct] = ACTIONS(4514), + [anon_sym_union] = ACTIONS(4514), + [anon_sym_if] = ACTIONS(4514), + [anon_sym_switch] = ACTIONS(4514), + [anon_sym_case] = ACTIONS(4514), + [anon_sym_default] = ACTIONS(4514), + [anon_sym_while] = ACTIONS(4514), + [anon_sym_do] = ACTIONS(4514), + [anon_sym_for] = ACTIONS(4514), + [anon_sym_return] = ACTIONS(4514), + [anon_sym_break] = ACTIONS(4514), + [anon_sym_continue] = ACTIONS(4514), + [anon_sym_goto] = ACTIONS(4514), + [anon_sym_not] = ACTIONS(4514), + [anon_sym_compl] = ACTIONS(4514), + [anon_sym_DASH_DASH] = ACTIONS(4516), + [anon_sym_PLUS_PLUS] = ACTIONS(4516), + [anon_sym_sizeof] = ACTIONS(4514), + [anon_sym___alignof__] = ACTIONS(4514), + [anon_sym___alignof] = ACTIONS(4514), + [anon_sym__alignof] = ACTIONS(4514), + [anon_sym_alignof] = ACTIONS(4514), + [anon_sym__Alignof] = ACTIONS(4514), + [anon_sym_offsetof] = ACTIONS(4514), + [anon_sym__Generic] = ACTIONS(4514), + [anon_sym_typename] = ACTIONS(4514), + [anon_sym_asm] = ACTIONS(4514), + [anon_sym___asm__] = ACTIONS(4514), + [anon_sym___asm] = ACTIONS(4514), + [sym_number_literal] = ACTIONS(4516), + [anon_sym_L_SQUOTE] = ACTIONS(4516), + [anon_sym_u_SQUOTE] = ACTIONS(4516), + [anon_sym_U_SQUOTE] = ACTIONS(4516), + [anon_sym_u8_SQUOTE] = ACTIONS(4516), + [anon_sym_SQUOTE] = ACTIONS(4516), + [anon_sym_L_DQUOTE] = ACTIONS(4516), + [anon_sym_u_DQUOTE] = ACTIONS(4516), + [anon_sym_U_DQUOTE] = ACTIONS(4516), + [anon_sym_u8_DQUOTE] = ACTIONS(4516), + [anon_sym_DQUOTE] = ACTIONS(4516), + [sym_true] = ACTIONS(4514), + [sym_false] = ACTIONS(4514), + [anon_sym_NULL] = ACTIONS(4514), + [anon_sym_nullptr] = ACTIONS(4514), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4514), + [anon_sym_decltype] = ACTIONS(4514), + [anon_sym_explicit] = ACTIONS(4514), + [anon_sym_export] = ACTIONS(4514), + [anon_sym_module] = ACTIONS(4514), + [anon_sym_import] = ACTIONS(4514), + [anon_sym_template] = ACTIONS(4514), + [anon_sym_operator] = ACTIONS(4514), + [anon_sym_try] = ACTIONS(4514), + [anon_sym_delete] = ACTIONS(4514), + [anon_sym_throw] = ACTIONS(4514), + [anon_sym_namespace] = ACTIONS(4514), + [anon_sym_static_assert] = ACTIONS(4514), + [anon_sym_concept] = ACTIONS(4514), + [anon_sym_co_return] = ACTIONS(4514), + [anon_sym_co_yield] = ACTIONS(4514), + [anon_sym_R_DQUOTE] = ACTIONS(4516), + [anon_sym_LR_DQUOTE] = ACTIONS(4516), + [anon_sym_uR_DQUOTE] = ACTIONS(4516), + [anon_sym_UR_DQUOTE] = ACTIONS(4516), + [anon_sym_u8R_DQUOTE] = ACTIONS(4516), + [anon_sym_co_await] = ACTIONS(4514), + [anon_sym_new] = ACTIONS(4514), + [anon_sym_requires] = ACTIONS(4514), + [anon_sym_CARET_CARET] = ACTIONS(4516), + [anon_sym_LBRACK_COLON] = ACTIONS(4516), + [sym_this] = ACTIONS(4514), }, - [STATE(605)] = { - [ts_builtin_sym_end] = ACTIONS(4048), - [sym_identifier] = ACTIONS(4046), - [aux_sym_preproc_include_token1] = ACTIONS(4046), - [aux_sym_preproc_def_token1] = ACTIONS(4046), - [aux_sym_preproc_if_token1] = ACTIONS(4046), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4046), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4046), - [sym_preproc_directive] = ACTIONS(4046), - [anon_sym_LPAREN2] = ACTIONS(4048), - [anon_sym_BANG] = ACTIONS(4048), - [anon_sym_TILDE] = ACTIONS(4048), - [anon_sym_DASH] = ACTIONS(4046), - [anon_sym_PLUS] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(4048), - [anon_sym_AMP_AMP] = ACTIONS(4048), - [anon_sym_AMP] = ACTIONS(4046), - [anon_sym_SEMI] = ACTIONS(4048), - [anon_sym___extension__] = ACTIONS(4046), - [anon_sym_typedef] = ACTIONS(4046), - [anon_sym_virtual] = ACTIONS(4046), - [anon_sym_extern] = ACTIONS(4046), - [anon_sym___attribute__] = ACTIONS(4046), - [anon_sym___attribute] = ACTIONS(4046), - [anon_sym_using] = ACTIONS(4046), - [anon_sym_COLON_COLON] = ACTIONS(4048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4048), - [anon_sym___declspec] = ACTIONS(4046), - [anon_sym___based] = ACTIONS(4046), - [anon_sym___cdecl] = ACTIONS(4046), - [anon_sym___clrcall] = ACTIONS(4046), - [anon_sym___stdcall] = ACTIONS(4046), - [anon_sym___fastcall] = ACTIONS(4046), - [anon_sym___thiscall] = ACTIONS(4046), - [anon_sym___vectorcall] = ACTIONS(4046), - [anon_sym_LBRACE] = ACTIONS(4048), - [anon_sym_signed] = ACTIONS(4046), - [anon_sym_unsigned] = ACTIONS(4046), - [anon_sym_long] = ACTIONS(4046), - [anon_sym_short] = ACTIONS(4046), - [anon_sym_LBRACK] = ACTIONS(4046), - [anon_sym_static] = ACTIONS(4046), - [anon_sym_register] = ACTIONS(4046), - [anon_sym_inline] = ACTIONS(4046), - [anon_sym___inline] = ACTIONS(4046), - [anon_sym___inline__] = ACTIONS(4046), - [anon_sym___forceinline] = ACTIONS(4046), - [anon_sym_thread_local] = ACTIONS(4046), - [anon_sym___thread] = ACTIONS(4046), - [anon_sym_const] = ACTIONS(4046), - [anon_sym_constexpr] = ACTIONS(4046), - [anon_sym_volatile] = ACTIONS(4046), - [anon_sym_restrict] = ACTIONS(4046), - [anon_sym___restrict__] = ACTIONS(4046), - [anon_sym__Atomic] = ACTIONS(4046), - [anon_sym__Noreturn] = ACTIONS(4046), - [anon_sym_noreturn] = ACTIONS(4046), - [anon_sym__Nonnull] = ACTIONS(4046), - [anon_sym_mutable] = ACTIONS(4046), - [anon_sym_constinit] = ACTIONS(4046), - [anon_sym_consteval] = ACTIONS(4046), - [anon_sym_alignas] = ACTIONS(4046), - [anon_sym__Alignas] = ACTIONS(4046), - [sym_primitive_type] = ACTIONS(4046), - [anon_sym_enum] = ACTIONS(4046), - [anon_sym_class] = ACTIONS(4046), - [anon_sym_struct] = ACTIONS(4046), - [anon_sym_union] = ACTIONS(4046), - [anon_sym_if] = ACTIONS(4046), - [anon_sym_switch] = ACTIONS(4046), - [anon_sym_case] = ACTIONS(4046), - [anon_sym_default] = ACTIONS(4046), - [anon_sym_while] = ACTIONS(4046), - [anon_sym_do] = ACTIONS(4046), - [anon_sym_for] = ACTIONS(4046), - [anon_sym_return] = ACTIONS(4046), - [anon_sym_break] = ACTIONS(4046), - [anon_sym_continue] = ACTIONS(4046), - [anon_sym_goto] = ACTIONS(4046), - [anon_sym_not] = ACTIONS(4046), - [anon_sym_compl] = ACTIONS(4046), - [anon_sym_DASH_DASH] = ACTIONS(4048), - [anon_sym_PLUS_PLUS] = ACTIONS(4048), - [anon_sym_sizeof] = ACTIONS(4046), - [anon_sym___alignof__] = ACTIONS(4046), - [anon_sym___alignof] = ACTIONS(4046), - [anon_sym__alignof] = ACTIONS(4046), - [anon_sym_alignof] = ACTIONS(4046), - [anon_sym__Alignof] = ACTIONS(4046), - [anon_sym_offsetof] = ACTIONS(4046), - [anon_sym__Generic] = ACTIONS(4046), - [anon_sym_typename] = ACTIONS(4046), - [anon_sym_asm] = ACTIONS(4046), - [anon_sym___asm__] = ACTIONS(4046), - [anon_sym___asm] = ACTIONS(4046), - [sym_number_literal] = ACTIONS(4048), - [anon_sym_L_SQUOTE] = ACTIONS(4048), - [anon_sym_u_SQUOTE] = ACTIONS(4048), - [anon_sym_U_SQUOTE] = ACTIONS(4048), - [anon_sym_u8_SQUOTE] = ACTIONS(4048), - [anon_sym_SQUOTE] = ACTIONS(4048), - [anon_sym_L_DQUOTE] = ACTIONS(4048), - [anon_sym_u_DQUOTE] = ACTIONS(4048), - [anon_sym_U_DQUOTE] = ACTIONS(4048), - [anon_sym_u8_DQUOTE] = ACTIONS(4048), - [anon_sym_DQUOTE] = ACTIONS(4048), - [sym_true] = ACTIONS(4046), - [sym_false] = ACTIONS(4046), - [anon_sym_NULL] = ACTIONS(4046), - [anon_sym_nullptr] = ACTIONS(4046), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4046), - [anon_sym_decltype] = ACTIONS(4046), - [anon_sym_explicit] = ACTIONS(4046), - [anon_sym_export] = ACTIONS(4046), - [anon_sym_module] = ACTIONS(4046), - [anon_sym_import] = ACTIONS(4046), - [anon_sym_template] = ACTIONS(4046), - [anon_sym_operator] = ACTIONS(4046), - [anon_sym_try] = ACTIONS(4046), - [anon_sym_delete] = ACTIONS(4046), - [anon_sym_throw] = ACTIONS(4046), - [anon_sym_namespace] = ACTIONS(4046), - [anon_sym_static_assert] = ACTIONS(4046), - [anon_sym_concept] = ACTIONS(4046), - [anon_sym_co_return] = ACTIONS(4046), - [anon_sym_co_yield] = ACTIONS(4046), - [anon_sym_R_DQUOTE] = ACTIONS(4048), - [anon_sym_LR_DQUOTE] = ACTIONS(4048), - [anon_sym_uR_DQUOTE] = ACTIONS(4048), - [anon_sym_UR_DQUOTE] = ACTIONS(4048), - [anon_sym_u8R_DQUOTE] = ACTIONS(4048), - [anon_sym_co_await] = ACTIONS(4046), - [anon_sym_new] = ACTIONS(4046), - [anon_sym_requires] = ACTIONS(4046), - [anon_sym_CARET_CARET] = ACTIONS(4048), - [anon_sym_LBRACK_COLON] = ACTIONS(4048), - [sym_this] = ACTIONS(4046), + [STATE(547)] = { + [sym_identifier] = ACTIONS(4518), + [aux_sym_preproc_include_token1] = ACTIONS(4518), + [aux_sym_preproc_def_token1] = ACTIONS(4518), + [aux_sym_preproc_if_token1] = ACTIONS(4518), + [aux_sym_preproc_if_token2] = ACTIONS(4518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4518), + [aux_sym_preproc_else_token1] = ACTIONS(4518), + [aux_sym_preproc_elif_token1] = ACTIONS(4518), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4518), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4518), + [sym_preproc_directive] = ACTIONS(4518), + [anon_sym_LPAREN2] = ACTIONS(4520), + [anon_sym_BANG] = ACTIONS(4520), + [anon_sym_TILDE] = ACTIONS(4520), + [anon_sym_DASH] = ACTIONS(4518), + [anon_sym_PLUS] = ACTIONS(4518), + [anon_sym_STAR] = ACTIONS(4520), + [anon_sym_AMP_AMP] = ACTIONS(4520), + [anon_sym_AMP] = ACTIONS(4518), + [anon_sym_SEMI] = ACTIONS(4520), + [anon_sym___extension__] = ACTIONS(4518), + [anon_sym_typedef] = ACTIONS(4518), + [anon_sym_virtual] = ACTIONS(4518), + [anon_sym_extern] = ACTIONS(4518), + [anon_sym___attribute__] = ACTIONS(4518), + [anon_sym___attribute] = ACTIONS(4518), + [anon_sym_using] = ACTIONS(4518), + [anon_sym_COLON_COLON] = ACTIONS(4520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4520), + [anon_sym___declspec] = ACTIONS(4518), + [anon_sym___based] = ACTIONS(4518), + [anon_sym___cdecl] = ACTIONS(4518), + [anon_sym___clrcall] = ACTIONS(4518), + [anon_sym___stdcall] = ACTIONS(4518), + [anon_sym___fastcall] = ACTIONS(4518), + [anon_sym___thiscall] = ACTIONS(4518), + [anon_sym___vectorcall] = ACTIONS(4518), + [anon_sym_LBRACE] = ACTIONS(4520), + [anon_sym_signed] = ACTIONS(4518), + [anon_sym_unsigned] = ACTIONS(4518), + [anon_sym_long] = ACTIONS(4518), + [anon_sym_short] = ACTIONS(4518), + [anon_sym_LBRACK] = ACTIONS(4518), + [anon_sym_static] = ACTIONS(4518), + [anon_sym_register] = ACTIONS(4518), + [anon_sym_inline] = ACTIONS(4518), + [anon_sym___inline] = ACTIONS(4518), + [anon_sym___inline__] = ACTIONS(4518), + [anon_sym___forceinline] = ACTIONS(4518), + [anon_sym_thread_local] = ACTIONS(4518), + [anon_sym___thread] = ACTIONS(4518), + [anon_sym_const] = ACTIONS(4518), + [anon_sym_constexpr] = ACTIONS(4518), + [anon_sym_volatile] = ACTIONS(4518), + [anon_sym_restrict] = ACTIONS(4518), + [anon_sym___restrict__] = ACTIONS(4518), + [anon_sym__Atomic] = ACTIONS(4518), + [anon_sym__Noreturn] = ACTIONS(4518), + [anon_sym_noreturn] = ACTIONS(4518), + [anon_sym__Nonnull] = ACTIONS(4518), + [anon_sym_mutable] = ACTIONS(4518), + [anon_sym_constinit] = ACTIONS(4518), + [anon_sym_consteval] = ACTIONS(4518), + [anon_sym_alignas] = ACTIONS(4518), + [anon_sym__Alignas] = ACTIONS(4518), + [sym_primitive_type] = ACTIONS(4518), + [anon_sym_enum] = ACTIONS(4518), + [anon_sym_class] = ACTIONS(4518), + [anon_sym_struct] = ACTIONS(4518), + [anon_sym_union] = ACTIONS(4518), + [anon_sym_if] = ACTIONS(4518), + [anon_sym_switch] = ACTIONS(4518), + [anon_sym_case] = ACTIONS(4518), + [anon_sym_default] = ACTIONS(4518), + [anon_sym_while] = ACTIONS(4518), + [anon_sym_do] = ACTIONS(4518), + [anon_sym_for] = ACTIONS(4518), + [anon_sym_return] = ACTIONS(4518), + [anon_sym_break] = ACTIONS(4518), + [anon_sym_continue] = ACTIONS(4518), + [anon_sym_goto] = ACTIONS(4518), + [anon_sym_not] = ACTIONS(4518), + [anon_sym_compl] = ACTIONS(4518), + [anon_sym_DASH_DASH] = ACTIONS(4520), + [anon_sym_PLUS_PLUS] = ACTIONS(4520), + [anon_sym_sizeof] = ACTIONS(4518), + [anon_sym___alignof__] = ACTIONS(4518), + [anon_sym___alignof] = ACTIONS(4518), + [anon_sym__alignof] = ACTIONS(4518), + [anon_sym_alignof] = ACTIONS(4518), + [anon_sym__Alignof] = ACTIONS(4518), + [anon_sym_offsetof] = ACTIONS(4518), + [anon_sym__Generic] = ACTIONS(4518), + [anon_sym_typename] = ACTIONS(4518), + [anon_sym_asm] = ACTIONS(4518), + [anon_sym___asm__] = ACTIONS(4518), + [anon_sym___asm] = ACTIONS(4518), + [sym_number_literal] = ACTIONS(4520), + [anon_sym_L_SQUOTE] = ACTIONS(4520), + [anon_sym_u_SQUOTE] = ACTIONS(4520), + [anon_sym_U_SQUOTE] = ACTIONS(4520), + [anon_sym_u8_SQUOTE] = ACTIONS(4520), + [anon_sym_SQUOTE] = ACTIONS(4520), + [anon_sym_L_DQUOTE] = ACTIONS(4520), + [anon_sym_u_DQUOTE] = ACTIONS(4520), + [anon_sym_U_DQUOTE] = ACTIONS(4520), + [anon_sym_u8_DQUOTE] = ACTIONS(4520), + [anon_sym_DQUOTE] = ACTIONS(4520), + [sym_true] = ACTIONS(4518), + [sym_false] = ACTIONS(4518), + [anon_sym_NULL] = ACTIONS(4518), + [anon_sym_nullptr] = ACTIONS(4518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4518), + [anon_sym_decltype] = ACTIONS(4518), + [anon_sym_explicit] = ACTIONS(4518), + [anon_sym_export] = ACTIONS(4518), + [anon_sym_module] = ACTIONS(4518), + [anon_sym_import] = ACTIONS(4518), + [anon_sym_template] = ACTIONS(4518), + [anon_sym_operator] = ACTIONS(4518), + [anon_sym_try] = ACTIONS(4518), + [anon_sym_delete] = ACTIONS(4518), + [anon_sym_throw] = ACTIONS(4518), + [anon_sym_namespace] = ACTIONS(4518), + [anon_sym_static_assert] = ACTIONS(4518), + [anon_sym_concept] = ACTIONS(4518), + [anon_sym_co_return] = ACTIONS(4518), + [anon_sym_co_yield] = ACTIONS(4518), + [anon_sym_R_DQUOTE] = ACTIONS(4520), + [anon_sym_LR_DQUOTE] = ACTIONS(4520), + [anon_sym_uR_DQUOTE] = ACTIONS(4520), + [anon_sym_UR_DQUOTE] = ACTIONS(4520), + [anon_sym_u8R_DQUOTE] = ACTIONS(4520), + [anon_sym_co_await] = ACTIONS(4518), + [anon_sym_new] = ACTIONS(4518), + [anon_sym_requires] = ACTIONS(4518), + [anon_sym_CARET_CARET] = ACTIONS(4520), + [anon_sym_LBRACK_COLON] = ACTIONS(4520), + [sym_this] = ACTIONS(4518), }, - [STATE(606)] = { - [ts_builtin_sym_end] = ACTIONS(4052), - [sym_identifier] = ACTIONS(4050), - [aux_sym_preproc_include_token1] = ACTIONS(4050), - [aux_sym_preproc_def_token1] = ACTIONS(4050), - [aux_sym_preproc_if_token1] = ACTIONS(4050), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4050), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4050), - [sym_preproc_directive] = ACTIONS(4050), - [anon_sym_LPAREN2] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(4052), - [anon_sym_TILDE] = ACTIONS(4052), - [anon_sym_DASH] = ACTIONS(4050), - [anon_sym_PLUS] = ACTIONS(4050), - [anon_sym_STAR] = ACTIONS(4052), - [anon_sym_AMP_AMP] = ACTIONS(4052), - [anon_sym_AMP] = ACTIONS(4050), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym___extension__] = ACTIONS(4050), - [anon_sym_typedef] = ACTIONS(4050), - [anon_sym_virtual] = ACTIONS(4050), - [anon_sym_extern] = ACTIONS(4050), - [anon_sym___attribute__] = ACTIONS(4050), - [anon_sym___attribute] = ACTIONS(4050), - [anon_sym_using] = ACTIONS(4050), - [anon_sym_COLON_COLON] = ACTIONS(4052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4052), - [anon_sym___declspec] = ACTIONS(4050), - [anon_sym___based] = ACTIONS(4050), - [anon_sym___cdecl] = ACTIONS(4050), - [anon_sym___clrcall] = ACTIONS(4050), - [anon_sym___stdcall] = ACTIONS(4050), - [anon_sym___fastcall] = ACTIONS(4050), - [anon_sym___thiscall] = ACTIONS(4050), - [anon_sym___vectorcall] = ACTIONS(4050), - [anon_sym_LBRACE] = ACTIONS(4052), - [anon_sym_signed] = ACTIONS(4050), - [anon_sym_unsigned] = ACTIONS(4050), - [anon_sym_long] = ACTIONS(4050), - [anon_sym_short] = ACTIONS(4050), - [anon_sym_LBRACK] = ACTIONS(4050), - [anon_sym_static] = ACTIONS(4050), - [anon_sym_register] = ACTIONS(4050), - [anon_sym_inline] = ACTIONS(4050), - [anon_sym___inline] = ACTIONS(4050), - [anon_sym___inline__] = ACTIONS(4050), - [anon_sym___forceinline] = ACTIONS(4050), - [anon_sym_thread_local] = ACTIONS(4050), - [anon_sym___thread] = ACTIONS(4050), - [anon_sym_const] = ACTIONS(4050), - [anon_sym_constexpr] = ACTIONS(4050), - [anon_sym_volatile] = ACTIONS(4050), - [anon_sym_restrict] = ACTIONS(4050), - [anon_sym___restrict__] = ACTIONS(4050), - [anon_sym__Atomic] = ACTIONS(4050), - [anon_sym__Noreturn] = ACTIONS(4050), - [anon_sym_noreturn] = ACTIONS(4050), - [anon_sym__Nonnull] = ACTIONS(4050), - [anon_sym_mutable] = ACTIONS(4050), - [anon_sym_constinit] = ACTIONS(4050), - [anon_sym_consteval] = ACTIONS(4050), - [anon_sym_alignas] = ACTIONS(4050), - [anon_sym__Alignas] = ACTIONS(4050), - [sym_primitive_type] = ACTIONS(4050), - [anon_sym_enum] = ACTIONS(4050), - [anon_sym_class] = ACTIONS(4050), - [anon_sym_struct] = ACTIONS(4050), - [anon_sym_union] = ACTIONS(4050), - [anon_sym_if] = ACTIONS(4050), - [anon_sym_switch] = ACTIONS(4050), - [anon_sym_case] = ACTIONS(4050), - [anon_sym_default] = ACTIONS(4050), - [anon_sym_while] = ACTIONS(4050), - [anon_sym_do] = ACTIONS(4050), - [anon_sym_for] = ACTIONS(4050), - [anon_sym_return] = ACTIONS(4050), - [anon_sym_break] = ACTIONS(4050), - [anon_sym_continue] = ACTIONS(4050), - [anon_sym_goto] = ACTIONS(4050), - [anon_sym_not] = ACTIONS(4050), - [anon_sym_compl] = ACTIONS(4050), - [anon_sym_DASH_DASH] = ACTIONS(4052), - [anon_sym_PLUS_PLUS] = ACTIONS(4052), - [anon_sym_sizeof] = ACTIONS(4050), - [anon_sym___alignof__] = ACTIONS(4050), - [anon_sym___alignof] = ACTIONS(4050), - [anon_sym__alignof] = ACTIONS(4050), - [anon_sym_alignof] = ACTIONS(4050), - [anon_sym__Alignof] = ACTIONS(4050), - [anon_sym_offsetof] = ACTIONS(4050), - [anon_sym__Generic] = ACTIONS(4050), - [anon_sym_typename] = ACTIONS(4050), - [anon_sym_asm] = ACTIONS(4050), - [anon_sym___asm__] = ACTIONS(4050), - [anon_sym___asm] = ACTIONS(4050), - [sym_number_literal] = ACTIONS(4052), - [anon_sym_L_SQUOTE] = ACTIONS(4052), - [anon_sym_u_SQUOTE] = ACTIONS(4052), - [anon_sym_U_SQUOTE] = ACTIONS(4052), - [anon_sym_u8_SQUOTE] = ACTIONS(4052), - [anon_sym_SQUOTE] = ACTIONS(4052), - [anon_sym_L_DQUOTE] = ACTIONS(4052), - [anon_sym_u_DQUOTE] = ACTIONS(4052), - [anon_sym_U_DQUOTE] = ACTIONS(4052), - [anon_sym_u8_DQUOTE] = ACTIONS(4052), - [anon_sym_DQUOTE] = ACTIONS(4052), - [sym_true] = ACTIONS(4050), - [sym_false] = ACTIONS(4050), - [anon_sym_NULL] = ACTIONS(4050), - [anon_sym_nullptr] = ACTIONS(4050), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4050), - [anon_sym_decltype] = ACTIONS(4050), - [anon_sym_explicit] = ACTIONS(4050), - [anon_sym_export] = ACTIONS(4050), - [anon_sym_module] = ACTIONS(4050), - [anon_sym_import] = ACTIONS(4050), - [anon_sym_template] = ACTIONS(4050), - [anon_sym_operator] = ACTIONS(4050), - [anon_sym_try] = ACTIONS(4050), - [anon_sym_delete] = ACTIONS(4050), - [anon_sym_throw] = ACTIONS(4050), - [anon_sym_namespace] = ACTIONS(4050), - [anon_sym_static_assert] = ACTIONS(4050), - [anon_sym_concept] = ACTIONS(4050), - [anon_sym_co_return] = ACTIONS(4050), - [anon_sym_co_yield] = ACTIONS(4050), - [anon_sym_R_DQUOTE] = ACTIONS(4052), - [anon_sym_LR_DQUOTE] = ACTIONS(4052), - [anon_sym_uR_DQUOTE] = ACTIONS(4052), - [anon_sym_UR_DQUOTE] = ACTIONS(4052), - [anon_sym_u8R_DQUOTE] = ACTIONS(4052), - [anon_sym_co_await] = ACTIONS(4050), - [anon_sym_new] = ACTIONS(4050), - [anon_sym_requires] = ACTIONS(4050), - [anon_sym_CARET_CARET] = ACTIONS(4052), - [anon_sym_LBRACK_COLON] = ACTIONS(4052), - [sym_this] = ACTIONS(4050), + [STATE(548)] = { + [sym_else_clause] = STATE(597), + [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_SEMI] = ACTIONS(3370), + [anon_sym___extension__] = ACTIONS(3368), + [anon_sym_typedef] = ACTIONS(3368), + [anon_sym_virtual] = ACTIONS(3368), + [anon_sym_extern] = ACTIONS(3368), + [anon_sym___attribute__] = ACTIONS(3368), + [anon_sym___attribute] = ACTIONS(3368), + [anon_sym_using] = 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_signed] = ACTIONS(3368), + [anon_sym_unsigned] = ACTIONS(3368), + [anon_sym_long] = ACTIONS(3368), + [anon_sym_short] = ACTIONS(3368), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_register] = ACTIONS(3368), + [anon_sym_inline] = ACTIONS(3368), + [anon_sym___inline] = ACTIONS(3368), + [anon_sym___inline__] = ACTIONS(3368), + [anon_sym___forceinline] = ACTIONS(3368), + [anon_sym_thread_local] = ACTIONS(3368), + [anon_sym___thread] = 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__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3368), + [anon_sym__Alignas] = 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_else] = ACTIONS(4452), + [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___try] = ACTIONS(3368), + [anon_sym___leave] = 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___alignof__] = ACTIONS(3368), + [anon_sym___alignof] = ACTIONS(3368), + [anon_sym__alignof] = ACTIONS(3368), + [anon_sym_alignof] = ACTIONS(3368), + [anon_sym__Alignof] = ACTIONS(3368), + [anon_sym_offsetof] = ACTIONS(3368), + [anon_sym__Generic] = ACTIONS(3368), + [anon_sym_typename] = ACTIONS(3368), + [anon_sym_asm] = 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_explicit] = ACTIONS(3368), + [anon_sym_export] = ACTIONS(3368), + [anon_sym_module] = ACTIONS(3368), + [anon_sym_import] = 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_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), + [anon_sym_CARET_CARET] = ACTIONS(3370), + [anon_sym_LBRACK_COLON] = ACTIONS(3370), + [sym_this] = ACTIONS(3368), }, - [STATE(607)] = { - [sym_identifier] = ACTIONS(2949), - [aux_sym_preproc_include_token1] = ACTIONS(2949), - [aux_sym_preproc_def_token1] = ACTIONS(2949), - [aux_sym_preproc_if_token1] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2949), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2949), - [sym_preproc_directive] = ACTIONS(2949), - [anon_sym_LPAREN2] = ACTIONS(2954), - [anon_sym_BANG] = ACTIONS(2954), - [anon_sym_TILDE] = ACTIONS(2954), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_STAR] = ACTIONS(2954), - [anon_sym_AMP_AMP] = ACTIONS(2954), - [anon_sym_AMP] = ACTIONS(2949), - [anon_sym_SEMI] = ACTIONS(2954), - [anon_sym___extension__] = ACTIONS(2949), - [anon_sym_typedef] = ACTIONS(2949), - [anon_sym_virtual] = ACTIONS(2949), - [anon_sym_extern] = ACTIONS(2949), - [anon_sym___attribute__] = ACTIONS(2949), - [anon_sym___attribute] = ACTIONS(2949), - [anon_sym_using] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2954), - [anon_sym___declspec] = ACTIONS(2949), - [anon_sym___based] = ACTIONS(2949), - [anon_sym___cdecl] = ACTIONS(2949), - [anon_sym___clrcall] = ACTIONS(2949), - [anon_sym___stdcall] = ACTIONS(2949), - [anon_sym___fastcall] = ACTIONS(2949), - [anon_sym___thiscall] = ACTIONS(2949), - [anon_sym___vectorcall] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2954), - [anon_sym_RBRACE] = ACTIONS(2954), - [anon_sym_signed] = ACTIONS(2949), - [anon_sym_unsigned] = ACTIONS(2949), - [anon_sym_long] = ACTIONS(2949), - [anon_sym_short] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_static] = ACTIONS(2949), - [anon_sym_register] = ACTIONS(2949), - [anon_sym_inline] = ACTIONS(2949), - [anon_sym___inline] = ACTIONS(2949), - [anon_sym___inline__] = ACTIONS(2949), - [anon_sym___forceinline] = ACTIONS(2949), - [anon_sym_thread_local] = ACTIONS(2949), - [anon_sym___thread] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_constexpr] = ACTIONS(2949), - [anon_sym_volatile] = ACTIONS(2949), - [anon_sym_restrict] = ACTIONS(2949), - [anon_sym___restrict__] = ACTIONS(2949), - [anon_sym__Atomic] = ACTIONS(2949), - [anon_sym__Noreturn] = ACTIONS(2949), - [anon_sym_noreturn] = ACTIONS(2949), - [anon_sym__Nonnull] = ACTIONS(2949), - [anon_sym_mutable] = ACTIONS(2949), - [anon_sym_constinit] = ACTIONS(2949), - [anon_sym_consteval] = ACTIONS(2949), - [anon_sym_alignas] = ACTIONS(2949), - [anon_sym__Alignas] = ACTIONS(2949), - [sym_primitive_type] = ACTIONS(2949), - [anon_sym_enum] = ACTIONS(2949), - [anon_sym_class] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2949), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_else] = ACTIONS(2949), - [anon_sym_switch] = ACTIONS(2949), - [anon_sym_case] = ACTIONS(2949), - [anon_sym_default] = ACTIONS(2949), - [anon_sym_while] = ACTIONS(2949), - [anon_sym_do] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_return] = ACTIONS(2949), - [anon_sym_break] = ACTIONS(2949), - [anon_sym_continue] = ACTIONS(2949), - [anon_sym_goto] = ACTIONS(2949), - [anon_sym___try] = ACTIONS(2949), - [anon_sym___leave] = ACTIONS(2949), - [anon_sym_not] = ACTIONS(2949), - [anon_sym_compl] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2954), - [anon_sym_PLUS_PLUS] = ACTIONS(2954), - [anon_sym_sizeof] = ACTIONS(2949), - [anon_sym___alignof__] = ACTIONS(2949), - [anon_sym___alignof] = ACTIONS(2949), - [anon_sym__alignof] = ACTIONS(2949), - [anon_sym_alignof] = ACTIONS(2949), - [anon_sym__Alignof] = ACTIONS(2949), - [anon_sym_offsetof] = ACTIONS(2949), - [anon_sym__Generic] = ACTIONS(2949), - [anon_sym_typename] = ACTIONS(2949), - [anon_sym_asm] = ACTIONS(2949), - [anon_sym___asm__] = ACTIONS(2949), - [anon_sym___asm] = ACTIONS(2949), - [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(2949), - [sym_false] = ACTIONS(2949), - [anon_sym_NULL] = ACTIONS(2949), - [anon_sym_nullptr] = ACTIONS(2949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2949), - [anon_sym_decltype] = ACTIONS(2949), - [anon_sym_explicit] = ACTIONS(2949), - [anon_sym_template] = ACTIONS(2949), - [anon_sym_operator] = ACTIONS(2949), - [anon_sym_try] = ACTIONS(2949), - [anon_sym_delete] = ACTIONS(2949), - [anon_sym_throw] = ACTIONS(2949), - [anon_sym_namespace] = ACTIONS(2949), - [anon_sym_static_assert] = ACTIONS(2949), - [anon_sym_concept] = ACTIONS(2949), - [anon_sym_co_return] = ACTIONS(2949), - [anon_sym_co_yield] = ACTIONS(2949), - [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(2949), - [anon_sym_new] = ACTIONS(2949), - [anon_sym_requires] = ACTIONS(2949), - [anon_sym_CARET_CARET] = ACTIONS(2954), - [anon_sym_LBRACK_COLON] = ACTIONS(2954), - [sym_this] = ACTIONS(2949), + [STATE(549)] = { + [sym_identifier] = ACTIONS(3362), + [aux_sym_preproc_include_token1] = ACTIONS(3362), + [aux_sym_preproc_def_token1] = ACTIONS(3362), + [aux_sym_preproc_if_token1] = ACTIONS(3362), + [aux_sym_preproc_if_token2] = ACTIONS(3362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), + [sym_preproc_directive] = ACTIONS(3362), + [anon_sym_LPAREN2] = ACTIONS(3364), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_STAR] = ACTIONS(3364), + [anon_sym_AMP_AMP] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3362), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym___extension__] = ACTIONS(3362), + [anon_sym_typedef] = ACTIONS(3362), + [anon_sym_virtual] = ACTIONS(3362), + [anon_sym_extern] = ACTIONS(3362), + [anon_sym___attribute__] = ACTIONS(3362), + [anon_sym___attribute] = ACTIONS(3362), + [anon_sym_using] = ACTIONS(3362), + [anon_sym_COLON_COLON] = ACTIONS(3364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), + [anon_sym___declspec] = ACTIONS(3362), + [anon_sym___based] = ACTIONS(3362), + [anon_sym___cdecl] = ACTIONS(3362), + [anon_sym___clrcall] = ACTIONS(3362), + [anon_sym___stdcall] = ACTIONS(3362), + [anon_sym___fastcall] = ACTIONS(3362), + [anon_sym___thiscall] = ACTIONS(3362), + [anon_sym___vectorcall] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_signed] = ACTIONS(3362), + [anon_sym_unsigned] = ACTIONS(3362), + [anon_sym_long] = ACTIONS(3362), + [anon_sym_short] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_static] = ACTIONS(3362), + [anon_sym_register] = ACTIONS(3362), + [anon_sym_inline] = ACTIONS(3362), + [anon_sym___inline] = ACTIONS(3362), + [anon_sym___inline__] = ACTIONS(3362), + [anon_sym___forceinline] = ACTIONS(3362), + [anon_sym_thread_local] = ACTIONS(3362), + [anon_sym___thread] = ACTIONS(3362), + [anon_sym_const] = ACTIONS(3362), + [anon_sym_constexpr] = ACTIONS(3362), + [anon_sym_volatile] = ACTIONS(3362), + [anon_sym_restrict] = ACTIONS(3362), + [anon_sym___restrict__] = ACTIONS(3362), + [anon_sym__Atomic] = ACTIONS(3362), + [anon_sym__Noreturn] = ACTIONS(3362), + [anon_sym_noreturn] = ACTIONS(3362), + [anon_sym__Nonnull] = ACTIONS(3362), + [anon_sym_mutable] = ACTIONS(3362), + [anon_sym_constinit] = ACTIONS(3362), + [anon_sym_consteval] = ACTIONS(3362), + [anon_sym_alignas] = ACTIONS(3362), + [anon_sym__Alignas] = ACTIONS(3362), + [sym_primitive_type] = ACTIONS(3362), + [anon_sym_enum] = ACTIONS(3362), + [anon_sym_class] = ACTIONS(3362), + [anon_sym_struct] = ACTIONS(3362), + [anon_sym_union] = ACTIONS(3362), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_else] = ACTIONS(3362), + [anon_sym_switch] = ACTIONS(3362), + [anon_sym_case] = ACTIONS(3362), + [anon_sym_default] = ACTIONS(3362), + [anon_sym_while] = ACTIONS(3362), + [anon_sym_do] = ACTIONS(3362), + [anon_sym_for] = ACTIONS(3362), + [anon_sym_return] = ACTIONS(3362), + [anon_sym_break] = ACTIONS(3362), + [anon_sym_continue] = ACTIONS(3362), + [anon_sym_goto] = ACTIONS(3362), + [anon_sym___try] = ACTIONS(3362), + [anon_sym___leave] = ACTIONS(3362), + [anon_sym_not] = ACTIONS(3362), + [anon_sym_compl] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3364), + [anon_sym_PLUS_PLUS] = ACTIONS(3364), + [anon_sym_sizeof] = ACTIONS(3362), + [anon_sym___alignof__] = ACTIONS(3362), + [anon_sym___alignof] = ACTIONS(3362), + [anon_sym__alignof] = ACTIONS(3362), + [anon_sym_alignof] = ACTIONS(3362), + [anon_sym__Alignof] = ACTIONS(3362), + [anon_sym_offsetof] = ACTIONS(3362), + [anon_sym__Generic] = ACTIONS(3362), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_asm] = ACTIONS(3362), + [anon_sym___asm__] = ACTIONS(3362), + [anon_sym___asm] = ACTIONS(3362), + [sym_number_literal] = ACTIONS(3364), + [anon_sym_L_SQUOTE] = ACTIONS(3364), + [anon_sym_u_SQUOTE] = ACTIONS(3364), + [anon_sym_U_SQUOTE] = ACTIONS(3364), + [anon_sym_u8_SQUOTE] = ACTIONS(3364), + [anon_sym_SQUOTE] = ACTIONS(3364), + [anon_sym_L_DQUOTE] = ACTIONS(3364), + [anon_sym_u_DQUOTE] = ACTIONS(3364), + [anon_sym_U_DQUOTE] = ACTIONS(3364), + [anon_sym_u8_DQUOTE] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [sym_true] = ACTIONS(3362), + [sym_false] = ACTIONS(3362), + [anon_sym_NULL] = ACTIONS(3362), + [anon_sym_nullptr] = ACTIONS(3362), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3362), + [anon_sym_decltype] = ACTIONS(3362), + [anon_sym_explicit] = ACTIONS(3362), + [anon_sym_export] = ACTIONS(3362), + [anon_sym_module] = ACTIONS(3362), + [anon_sym_import] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(3362), + [anon_sym_operator] = ACTIONS(3362), + [anon_sym_try] = ACTIONS(3362), + [anon_sym_delete] = ACTIONS(3362), + [anon_sym_throw] = ACTIONS(3362), + [anon_sym_namespace] = ACTIONS(3362), + [anon_sym_static_assert] = ACTIONS(3362), + [anon_sym_concept] = ACTIONS(3362), + [anon_sym_co_return] = ACTIONS(3362), + [anon_sym_co_yield] = ACTIONS(3362), + [anon_sym_catch] = ACTIONS(3362), + [anon_sym_R_DQUOTE] = ACTIONS(3364), + [anon_sym_LR_DQUOTE] = ACTIONS(3364), + [anon_sym_uR_DQUOTE] = ACTIONS(3364), + [anon_sym_UR_DQUOTE] = ACTIONS(3364), + [anon_sym_u8R_DQUOTE] = ACTIONS(3364), + [anon_sym_co_await] = ACTIONS(3362), + [anon_sym_new] = ACTIONS(3362), + [anon_sym_requires] = ACTIONS(3362), + [anon_sym_CARET_CARET] = ACTIONS(3364), + [anon_sym_LBRACK_COLON] = ACTIONS(3364), + [sym_this] = ACTIONS(3362), }, - [STATE(608)] = { - [sym_preproc_def] = STATE(641), - [sym_preproc_function_def] = STATE(641), - [sym_preproc_call] = STATE(641), - [sym_preproc_if_in_field_declaration_list] = STATE(641), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(641), - [sym_type_definition] = STATE(641), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(8025), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8578), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(641), - [sym_field_declaration] = STATE(641), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2417), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(641), - [sym_operator_cast] = STATE(9064), - [sym_inline_method_definition] = STATE(641), - [sym__constructor_specifiers] = STATE(2417), - [sym_operator_cast_definition] = STATE(641), - [sym_operator_cast_declaration] = STATE(641), - [sym_constructor_or_destructor_definition] = STATE(641), - [sym_constructor_or_destructor_declaration] = STATE(641), - [sym_friend_declaration] = STATE(641), - [sym_access_specifier] = STATE(10717), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(641), - [sym_alias_declaration] = STATE(641), - [sym_static_assert_declaration] = STATE(641), - [sym_consteval_block_declaration] = STATE(641), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9064), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(641), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9390), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2417), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(4324), - [aux_sym_preproc_if_token1] = ACTIONS(4326), - [aux_sym_preproc_if_token2] = ACTIONS(4328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4330), - [sym_preproc_directive] = ACTIONS(4332), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(4334), - [anon_sym___extension__] = ACTIONS(4336), - [anon_sym_typedef] = ACTIONS(4338), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4340), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4342), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4344), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4348), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(4350), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [STATE(550)] = { + [sym_identifier] = ACTIONS(4522), + [aux_sym_preproc_include_token1] = ACTIONS(4522), + [aux_sym_preproc_def_token1] = ACTIONS(4522), + [aux_sym_preproc_if_token1] = ACTIONS(4522), + [aux_sym_preproc_if_token2] = ACTIONS(4522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4522), + [aux_sym_preproc_else_token1] = ACTIONS(4522), + [aux_sym_preproc_elif_token1] = ACTIONS(4522), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4522), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4522), + [sym_preproc_directive] = ACTIONS(4522), + [anon_sym_LPAREN2] = ACTIONS(4524), + [anon_sym_BANG] = ACTIONS(4524), + [anon_sym_TILDE] = ACTIONS(4524), + [anon_sym_DASH] = ACTIONS(4522), + [anon_sym_PLUS] = ACTIONS(4522), + [anon_sym_STAR] = ACTIONS(4524), + [anon_sym_AMP_AMP] = ACTIONS(4524), + [anon_sym_AMP] = ACTIONS(4522), + [anon_sym_SEMI] = ACTIONS(4524), + [anon_sym___extension__] = ACTIONS(4522), + [anon_sym_typedef] = ACTIONS(4522), + [anon_sym_virtual] = ACTIONS(4522), + [anon_sym_extern] = ACTIONS(4522), + [anon_sym___attribute__] = ACTIONS(4522), + [anon_sym___attribute] = ACTIONS(4522), + [anon_sym_using] = ACTIONS(4522), + [anon_sym_COLON_COLON] = ACTIONS(4524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4524), + [anon_sym___declspec] = ACTIONS(4522), + [anon_sym___based] = ACTIONS(4522), + [anon_sym___cdecl] = ACTIONS(4522), + [anon_sym___clrcall] = ACTIONS(4522), + [anon_sym___stdcall] = ACTIONS(4522), + [anon_sym___fastcall] = ACTIONS(4522), + [anon_sym___thiscall] = ACTIONS(4522), + [anon_sym___vectorcall] = ACTIONS(4522), + [anon_sym_LBRACE] = ACTIONS(4524), + [anon_sym_signed] = ACTIONS(4522), + [anon_sym_unsigned] = ACTIONS(4522), + [anon_sym_long] = ACTIONS(4522), + [anon_sym_short] = ACTIONS(4522), + [anon_sym_LBRACK] = ACTIONS(4522), + [anon_sym_static] = ACTIONS(4522), + [anon_sym_register] = ACTIONS(4522), + [anon_sym_inline] = ACTIONS(4522), + [anon_sym___inline] = ACTIONS(4522), + [anon_sym___inline__] = ACTIONS(4522), + [anon_sym___forceinline] = ACTIONS(4522), + [anon_sym_thread_local] = ACTIONS(4522), + [anon_sym___thread] = ACTIONS(4522), + [anon_sym_const] = ACTIONS(4522), + [anon_sym_constexpr] = ACTIONS(4522), + [anon_sym_volatile] = ACTIONS(4522), + [anon_sym_restrict] = ACTIONS(4522), + [anon_sym___restrict__] = ACTIONS(4522), + [anon_sym__Atomic] = ACTIONS(4522), + [anon_sym__Noreturn] = ACTIONS(4522), + [anon_sym_noreturn] = ACTIONS(4522), + [anon_sym__Nonnull] = ACTIONS(4522), + [anon_sym_mutable] = ACTIONS(4522), + [anon_sym_constinit] = ACTIONS(4522), + [anon_sym_consteval] = ACTIONS(4522), + [anon_sym_alignas] = ACTIONS(4522), + [anon_sym__Alignas] = ACTIONS(4522), + [sym_primitive_type] = ACTIONS(4522), + [anon_sym_enum] = ACTIONS(4522), + [anon_sym_class] = ACTIONS(4522), + [anon_sym_struct] = ACTIONS(4522), + [anon_sym_union] = ACTIONS(4522), + [anon_sym_if] = ACTIONS(4522), + [anon_sym_switch] = ACTIONS(4522), + [anon_sym_case] = ACTIONS(4522), + [anon_sym_default] = ACTIONS(4522), + [anon_sym_while] = ACTIONS(4522), + [anon_sym_do] = ACTIONS(4522), + [anon_sym_for] = ACTIONS(4522), + [anon_sym_return] = ACTIONS(4522), + [anon_sym_break] = ACTIONS(4522), + [anon_sym_continue] = ACTIONS(4522), + [anon_sym_goto] = ACTIONS(4522), + [anon_sym_not] = ACTIONS(4522), + [anon_sym_compl] = ACTIONS(4522), + [anon_sym_DASH_DASH] = ACTIONS(4524), + [anon_sym_PLUS_PLUS] = ACTIONS(4524), + [anon_sym_sizeof] = ACTIONS(4522), + [anon_sym___alignof__] = ACTIONS(4522), + [anon_sym___alignof] = ACTIONS(4522), + [anon_sym__alignof] = ACTIONS(4522), + [anon_sym_alignof] = ACTIONS(4522), + [anon_sym__Alignof] = ACTIONS(4522), + [anon_sym_offsetof] = ACTIONS(4522), + [anon_sym__Generic] = ACTIONS(4522), + [anon_sym_typename] = ACTIONS(4522), + [anon_sym_asm] = ACTIONS(4522), + [anon_sym___asm__] = ACTIONS(4522), + [anon_sym___asm] = ACTIONS(4522), + [sym_number_literal] = ACTIONS(4524), + [anon_sym_L_SQUOTE] = ACTIONS(4524), + [anon_sym_u_SQUOTE] = ACTIONS(4524), + [anon_sym_U_SQUOTE] = ACTIONS(4524), + [anon_sym_u8_SQUOTE] = ACTIONS(4524), + [anon_sym_SQUOTE] = ACTIONS(4524), + [anon_sym_L_DQUOTE] = ACTIONS(4524), + [anon_sym_u_DQUOTE] = ACTIONS(4524), + [anon_sym_U_DQUOTE] = ACTIONS(4524), + [anon_sym_u8_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4524), + [sym_true] = ACTIONS(4522), + [sym_false] = ACTIONS(4522), + [anon_sym_NULL] = ACTIONS(4522), + [anon_sym_nullptr] = ACTIONS(4522), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4522), + [anon_sym_decltype] = ACTIONS(4522), + [anon_sym_explicit] = ACTIONS(4522), + [anon_sym_export] = ACTIONS(4522), + [anon_sym_module] = ACTIONS(4522), + [anon_sym_import] = ACTIONS(4522), + [anon_sym_template] = ACTIONS(4522), + [anon_sym_operator] = ACTIONS(4522), + [anon_sym_try] = ACTIONS(4522), + [anon_sym_delete] = ACTIONS(4522), + [anon_sym_throw] = ACTIONS(4522), + [anon_sym_namespace] = ACTIONS(4522), + [anon_sym_static_assert] = ACTIONS(4522), + [anon_sym_concept] = ACTIONS(4522), + [anon_sym_co_return] = ACTIONS(4522), + [anon_sym_co_yield] = ACTIONS(4522), + [anon_sym_R_DQUOTE] = ACTIONS(4524), + [anon_sym_LR_DQUOTE] = ACTIONS(4524), + [anon_sym_uR_DQUOTE] = ACTIONS(4524), + [anon_sym_UR_DQUOTE] = ACTIONS(4524), + [anon_sym_u8R_DQUOTE] = ACTIONS(4524), + [anon_sym_co_await] = ACTIONS(4522), + [anon_sym_new] = ACTIONS(4522), + [anon_sym_requires] = ACTIONS(4522), + [anon_sym_CARET_CARET] = ACTIONS(4524), + [anon_sym_LBRACK_COLON] = ACTIONS(4524), + [sym_this] = ACTIONS(4522), }, - [STATE(609)] = { - [ts_builtin_sym_end] = ACTIONS(4146), - [sym_identifier] = ACTIONS(4144), - [aux_sym_preproc_include_token1] = ACTIONS(4144), - [aux_sym_preproc_def_token1] = ACTIONS(4144), - [aux_sym_preproc_if_token1] = ACTIONS(4144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4144), - [sym_preproc_directive] = ACTIONS(4144), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_TILDE] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4144), - [anon_sym_STAR] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_AMP] = ACTIONS(4144), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_typedef] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_using] = ACTIONS(4144), - [anon_sym_COLON_COLON] = ACTIONS(4146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4146), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym___cdecl] = ACTIONS(4144), - [anon_sym___clrcall] = ACTIONS(4144), - [anon_sym___stdcall] = ACTIONS(4144), - [anon_sym___fastcall] = ACTIONS(4144), - [anon_sym___thiscall] = ACTIONS(4144), - [anon_sym___vectorcall] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4146), - [anon_sym_signed] = ACTIONS(4144), - [anon_sym_unsigned] = ACTIONS(4144), - [anon_sym_long] = ACTIONS(4144), - [anon_sym_short] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [sym_primitive_type] = ACTIONS(4144), - [anon_sym_enum] = ACTIONS(4144), - [anon_sym_class] = ACTIONS(4144), - [anon_sym_struct] = ACTIONS(4144), - [anon_sym_union] = ACTIONS(4144), - [anon_sym_if] = ACTIONS(4144), - [anon_sym_switch] = ACTIONS(4144), - [anon_sym_case] = ACTIONS(4144), - [anon_sym_default] = ACTIONS(4144), - [anon_sym_while] = ACTIONS(4144), - [anon_sym_do] = ACTIONS(4144), - [anon_sym_for] = ACTIONS(4144), - [anon_sym_return] = ACTIONS(4144), - [anon_sym_break] = ACTIONS(4144), - [anon_sym_continue] = ACTIONS(4144), - [anon_sym_goto] = ACTIONS(4144), - [anon_sym_not] = ACTIONS(4144), - [anon_sym_compl] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_sizeof] = ACTIONS(4144), - [anon_sym___alignof__] = ACTIONS(4144), - [anon_sym___alignof] = ACTIONS(4144), - [anon_sym__alignof] = ACTIONS(4144), - [anon_sym_alignof] = ACTIONS(4144), - [anon_sym__Alignof] = ACTIONS(4144), - [anon_sym_offsetof] = ACTIONS(4144), - [anon_sym__Generic] = ACTIONS(4144), - [anon_sym_typename] = ACTIONS(4144), - [anon_sym_asm] = ACTIONS(4144), - [anon_sym___asm__] = ACTIONS(4144), - [anon_sym___asm] = ACTIONS(4144), - [sym_number_literal] = ACTIONS(4146), - [anon_sym_L_SQUOTE] = ACTIONS(4146), - [anon_sym_u_SQUOTE] = ACTIONS(4146), - [anon_sym_U_SQUOTE] = ACTIONS(4146), - [anon_sym_u8_SQUOTE] = ACTIONS(4146), - [anon_sym_SQUOTE] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(4146), - [anon_sym_u_DQUOTE] = ACTIONS(4146), - [anon_sym_U_DQUOTE] = ACTIONS(4146), - [anon_sym_u8_DQUOTE] = ACTIONS(4146), - [anon_sym_DQUOTE] = ACTIONS(4146), - [sym_true] = ACTIONS(4144), - [sym_false] = ACTIONS(4144), - [anon_sym_NULL] = ACTIONS(4144), - [anon_sym_nullptr] = ACTIONS(4144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_explicit] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4144), - [anon_sym_module] = ACTIONS(4144), - [anon_sym_import] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_try] = ACTIONS(4144), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_throw] = ACTIONS(4144), - [anon_sym_namespace] = ACTIONS(4144), - [anon_sym_static_assert] = ACTIONS(4144), - [anon_sym_concept] = ACTIONS(4144), - [anon_sym_co_return] = ACTIONS(4144), - [anon_sym_co_yield] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4144), - [anon_sym_new] = ACTIONS(4144), - [anon_sym_requires] = ACTIONS(4144), - [anon_sym_CARET_CARET] = ACTIONS(4146), - [anon_sym_LBRACK_COLON] = ACTIONS(4146), - [sym_this] = ACTIONS(4144), + [STATE(551)] = { + [sym_identifier] = ACTIONS(4526), + [aux_sym_preproc_include_token1] = ACTIONS(4526), + [aux_sym_preproc_def_token1] = ACTIONS(4526), + [aux_sym_preproc_if_token1] = ACTIONS(4526), + [aux_sym_preproc_if_token2] = ACTIONS(4526), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4526), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4526), + [aux_sym_preproc_else_token1] = ACTIONS(4526), + [aux_sym_preproc_elif_token1] = ACTIONS(4526), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4526), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4526), + [sym_preproc_directive] = ACTIONS(4526), + [anon_sym_LPAREN2] = ACTIONS(4528), + [anon_sym_BANG] = ACTIONS(4528), + [anon_sym_TILDE] = ACTIONS(4528), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4528), + [anon_sym_AMP_AMP] = ACTIONS(4528), + [anon_sym_AMP] = ACTIONS(4526), + [anon_sym_SEMI] = ACTIONS(4528), + [anon_sym___extension__] = ACTIONS(4526), + [anon_sym_typedef] = ACTIONS(4526), + [anon_sym_virtual] = ACTIONS(4526), + [anon_sym_extern] = ACTIONS(4526), + [anon_sym___attribute__] = ACTIONS(4526), + [anon_sym___attribute] = ACTIONS(4526), + [anon_sym_using] = ACTIONS(4526), + [anon_sym_COLON_COLON] = ACTIONS(4528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4528), + [anon_sym___declspec] = ACTIONS(4526), + [anon_sym___based] = ACTIONS(4526), + [anon_sym___cdecl] = ACTIONS(4526), + [anon_sym___clrcall] = ACTIONS(4526), + [anon_sym___stdcall] = ACTIONS(4526), + [anon_sym___fastcall] = ACTIONS(4526), + [anon_sym___thiscall] = ACTIONS(4526), + [anon_sym___vectorcall] = ACTIONS(4526), + [anon_sym_LBRACE] = ACTIONS(4528), + [anon_sym_signed] = ACTIONS(4526), + [anon_sym_unsigned] = ACTIONS(4526), + [anon_sym_long] = ACTIONS(4526), + [anon_sym_short] = ACTIONS(4526), + [anon_sym_LBRACK] = ACTIONS(4526), + [anon_sym_static] = ACTIONS(4526), + [anon_sym_register] = ACTIONS(4526), + [anon_sym_inline] = ACTIONS(4526), + [anon_sym___inline] = ACTIONS(4526), + [anon_sym___inline__] = ACTIONS(4526), + [anon_sym___forceinline] = ACTIONS(4526), + [anon_sym_thread_local] = ACTIONS(4526), + [anon_sym___thread] = ACTIONS(4526), + [anon_sym_const] = ACTIONS(4526), + [anon_sym_constexpr] = ACTIONS(4526), + [anon_sym_volatile] = ACTIONS(4526), + [anon_sym_restrict] = ACTIONS(4526), + [anon_sym___restrict__] = ACTIONS(4526), + [anon_sym__Atomic] = ACTIONS(4526), + [anon_sym__Noreturn] = ACTIONS(4526), + [anon_sym_noreturn] = ACTIONS(4526), + [anon_sym__Nonnull] = ACTIONS(4526), + [anon_sym_mutable] = ACTIONS(4526), + [anon_sym_constinit] = ACTIONS(4526), + [anon_sym_consteval] = ACTIONS(4526), + [anon_sym_alignas] = ACTIONS(4526), + [anon_sym__Alignas] = ACTIONS(4526), + [sym_primitive_type] = ACTIONS(4526), + [anon_sym_enum] = ACTIONS(4526), + [anon_sym_class] = ACTIONS(4526), + [anon_sym_struct] = ACTIONS(4526), + [anon_sym_union] = ACTIONS(4526), + [anon_sym_if] = ACTIONS(4526), + [anon_sym_switch] = ACTIONS(4526), + [anon_sym_case] = ACTIONS(4526), + [anon_sym_default] = ACTIONS(4526), + [anon_sym_while] = ACTIONS(4526), + [anon_sym_do] = ACTIONS(4526), + [anon_sym_for] = ACTIONS(4526), + [anon_sym_return] = ACTIONS(4526), + [anon_sym_break] = ACTIONS(4526), + [anon_sym_continue] = ACTIONS(4526), + [anon_sym_goto] = ACTIONS(4526), + [anon_sym_not] = ACTIONS(4526), + [anon_sym_compl] = ACTIONS(4526), + [anon_sym_DASH_DASH] = ACTIONS(4528), + [anon_sym_PLUS_PLUS] = ACTIONS(4528), + [anon_sym_sizeof] = ACTIONS(4526), + [anon_sym___alignof__] = ACTIONS(4526), + [anon_sym___alignof] = ACTIONS(4526), + [anon_sym__alignof] = ACTIONS(4526), + [anon_sym_alignof] = ACTIONS(4526), + [anon_sym__Alignof] = ACTIONS(4526), + [anon_sym_offsetof] = ACTIONS(4526), + [anon_sym__Generic] = ACTIONS(4526), + [anon_sym_typename] = ACTIONS(4526), + [anon_sym_asm] = ACTIONS(4526), + [anon_sym___asm__] = ACTIONS(4526), + [anon_sym___asm] = ACTIONS(4526), + [sym_number_literal] = ACTIONS(4528), + [anon_sym_L_SQUOTE] = ACTIONS(4528), + [anon_sym_u_SQUOTE] = ACTIONS(4528), + [anon_sym_U_SQUOTE] = ACTIONS(4528), + [anon_sym_u8_SQUOTE] = ACTIONS(4528), + [anon_sym_SQUOTE] = ACTIONS(4528), + [anon_sym_L_DQUOTE] = ACTIONS(4528), + [anon_sym_u_DQUOTE] = ACTIONS(4528), + [anon_sym_U_DQUOTE] = ACTIONS(4528), + [anon_sym_u8_DQUOTE] = ACTIONS(4528), + [anon_sym_DQUOTE] = ACTIONS(4528), + [sym_true] = ACTIONS(4526), + [sym_false] = ACTIONS(4526), + [anon_sym_NULL] = ACTIONS(4526), + [anon_sym_nullptr] = ACTIONS(4526), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4526), + [anon_sym_decltype] = ACTIONS(4526), + [anon_sym_explicit] = ACTIONS(4526), + [anon_sym_export] = ACTIONS(4526), + [anon_sym_module] = ACTIONS(4526), + [anon_sym_import] = ACTIONS(4526), + [anon_sym_template] = ACTIONS(4526), + [anon_sym_operator] = ACTIONS(4526), + [anon_sym_try] = ACTIONS(4526), + [anon_sym_delete] = ACTIONS(4526), + [anon_sym_throw] = ACTIONS(4526), + [anon_sym_namespace] = ACTIONS(4526), + [anon_sym_static_assert] = ACTIONS(4526), + [anon_sym_concept] = ACTIONS(4526), + [anon_sym_co_return] = ACTIONS(4526), + [anon_sym_co_yield] = ACTIONS(4526), + [anon_sym_R_DQUOTE] = ACTIONS(4528), + [anon_sym_LR_DQUOTE] = ACTIONS(4528), + [anon_sym_uR_DQUOTE] = ACTIONS(4528), + [anon_sym_UR_DQUOTE] = ACTIONS(4528), + [anon_sym_u8R_DQUOTE] = ACTIONS(4528), + [anon_sym_co_await] = ACTIONS(4526), + [anon_sym_new] = ACTIONS(4526), + [anon_sym_requires] = ACTIONS(4526), + [anon_sym_CARET_CARET] = ACTIONS(4528), + [anon_sym_LBRACK_COLON] = ACTIONS(4528), + [sym_this] = ACTIONS(4526), }, - [STATE(610)] = { - [ts_builtin_sym_end] = ACTIONS(3988), - [sym_identifier] = ACTIONS(3986), - [aux_sym_preproc_include_token1] = ACTIONS(3986), - [aux_sym_preproc_def_token1] = ACTIONS(3986), - [aux_sym_preproc_if_token1] = ACTIONS(3986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3986), - [sym_preproc_directive] = ACTIONS(3986), - [anon_sym_LPAREN2] = ACTIONS(3988), - [anon_sym_BANG] = ACTIONS(3988), - [anon_sym_TILDE] = ACTIONS(3988), - [anon_sym_DASH] = ACTIONS(3986), - [anon_sym_PLUS] = ACTIONS(3986), - [anon_sym_STAR] = ACTIONS(3988), - [anon_sym_AMP_AMP] = ACTIONS(3988), - [anon_sym_AMP] = ACTIONS(3986), - [anon_sym_SEMI] = ACTIONS(3988), - [anon_sym___extension__] = ACTIONS(3986), - [anon_sym_typedef] = ACTIONS(3986), - [anon_sym_virtual] = ACTIONS(3986), - [anon_sym_extern] = ACTIONS(3986), - [anon_sym___attribute__] = ACTIONS(3986), - [anon_sym___attribute] = ACTIONS(3986), - [anon_sym_using] = ACTIONS(3986), - [anon_sym_COLON_COLON] = ACTIONS(3988), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3988), - [anon_sym___declspec] = ACTIONS(3986), - [anon_sym___based] = ACTIONS(3986), - [anon_sym___cdecl] = ACTIONS(3986), - [anon_sym___clrcall] = ACTIONS(3986), - [anon_sym___stdcall] = ACTIONS(3986), - [anon_sym___fastcall] = ACTIONS(3986), - [anon_sym___thiscall] = ACTIONS(3986), - [anon_sym___vectorcall] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3988), - [anon_sym_signed] = ACTIONS(3986), - [anon_sym_unsigned] = ACTIONS(3986), - [anon_sym_long] = ACTIONS(3986), - [anon_sym_short] = ACTIONS(3986), - [anon_sym_LBRACK] = ACTIONS(3986), - [anon_sym_static] = ACTIONS(3986), - [anon_sym_register] = ACTIONS(3986), - [anon_sym_inline] = ACTIONS(3986), - [anon_sym___inline] = ACTIONS(3986), - [anon_sym___inline__] = ACTIONS(3986), - [anon_sym___forceinline] = ACTIONS(3986), - [anon_sym_thread_local] = ACTIONS(3986), - [anon_sym___thread] = ACTIONS(3986), - [anon_sym_const] = ACTIONS(3986), - [anon_sym_constexpr] = ACTIONS(3986), - [anon_sym_volatile] = ACTIONS(3986), - [anon_sym_restrict] = ACTIONS(3986), - [anon_sym___restrict__] = ACTIONS(3986), - [anon_sym__Atomic] = ACTIONS(3986), - [anon_sym__Noreturn] = ACTIONS(3986), - [anon_sym_noreturn] = ACTIONS(3986), - [anon_sym__Nonnull] = ACTIONS(3986), - [anon_sym_mutable] = ACTIONS(3986), - [anon_sym_constinit] = ACTIONS(3986), - [anon_sym_consteval] = ACTIONS(3986), - [anon_sym_alignas] = ACTIONS(3986), - [anon_sym__Alignas] = ACTIONS(3986), - [sym_primitive_type] = ACTIONS(3986), - [anon_sym_enum] = ACTIONS(3986), - [anon_sym_class] = ACTIONS(3986), - [anon_sym_struct] = ACTIONS(3986), - [anon_sym_union] = ACTIONS(3986), - [anon_sym_if] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(3986), - [anon_sym_case] = ACTIONS(3986), - [anon_sym_default] = ACTIONS(3986), - [anon_sym_while] = ACTIONS(3986), - [anon_sym_do] = ACTIONS(3986), - [anon_sym_for] = ACTIONS(3986), - [anon_sym_return] = ACTIONS(3986), - [anon_sym_break] = ACTIONS(3986), - [anon_sym_continue] = ACTIONS(3986), - [anon_sym_goto] = ACTIONS(3986), - [anon_sym_not] = ACTIONS(3986), - [anon_sym_compl] = ACTIONS(3986), - [anon_sym_DASH_DASH] = ACTIONS(3988), - [anon_sym_PLUS_PLUS] = ACTIONS(3988), - [anon_sym_sizeof] = ACTIONS(3986), - [anon_sym___alignof__] = ACTIONS(3986), - [anon_sym___alignof] = ACTIONS(3986), - [anon_sym__alignof] = ACTIONS(3986), - [anon_sym_alignof] = ACTIONS(3986), - [anon_sym__Alignof] = ACTIONS(3986), - [anon_sym_offsetof] = ACTIONS(3986), - [anon_sym__Generic] = ACTIONS(3986), - [anon_sym_typename] = ACTIONS(3986), - [anon_sym_asm] = ACTIONS(3986), - [anon_sym___asm__] = ACTIONS(3986), - [anon_sym___asm] = ACTIONS(3986), - [sym_number_literal] = ACTIONS(3988), - [anon_sym_L_SQUOTE] = ACTIONS(3988), - [anon_sym_u_SQUOTE] = ACTIONS(3988), - [anon_sym_U_SQUOTE] = ACTIONS(3988), - [anon_sym_u8_SQUOTE] = ACTIONS(3988), - [anon_sym_SQUOTE] = ACTIONS(3988), - [anon_sym_L_DQUOTE] = ACTIONS(3988), - [anon_sym_u_DQUOTE] = ACTIONS(3988), - [anon_sym_U_DQUOTE] = ACTIONS(3988), - [anon_sym_u8_DQUOTE] = ACTIONS(3988), - [anon_sym_DQUOTE] = ACTIONS(3988), - [sym_true] = ACTIONS(3986), - [sym_false] = ACTIONS(3986), - [anon_sym_NULL] = ACTIONS(3986), - [anon_sym_nullptr] = ACTIONS(3986), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3986), - [anon_sym_decltype] = ACTIONS(3986), - [anon_sym_explicit] = ACTIONS(3986), - [anon_sym_export] = ACTIONS(3986), - [anon_sym_module] = ACTIONS(3986), - [anon_sym_import] = ACTIONS(3986), - [anon_sym_template] = ACTIONS(3986), - [anon_sym_operator] = ACTIONS(3986), - [anon_sym_try] = ACTIONS(3986), - [anon_sym_delete] = ACTIONS(3986), - [anon_sym_throw] = ACTIONS(3986), - [anon_sym_namespace] = ACTIONS(3986), - [anon_sym_static_assert] = ACTIONS(3986), - [anon_sym_concept] = ACTIONS(3986), - [anon_sym_co_return] = ACTIONS(3986), - [anon_sym_co_yield] = ACTIONS(3986), - [anon_sym_R_DQUOTE] = ACTIONS(3988), - [anon_sym_LR_DQUOTE] = ACTIONS(3988), - [anon_sym_uR_DQUOTE] = ACTIONS(3988), - [anon_sym_UR_DQUOTE] = ACTIONS(3988), - [anon_sym_u8R_DQUOTE] = ACTIONS(3988), - [anon_sym_co_await] = ACTIONS(3986), - [anon_sym_new] = ACTIONS(3986), - [anon_sym_requires] = ACTIONS(3986), - [anon_sym_CARET_CARET] = ACTIONS(3988), - [anon_sym_LBRACK_COLON] = ACTIONS(3988), - [sym_this] = ACTIONS(3986), + [STATE(552)] = { + [sym_identifier] = ACTIONS(4530), + [aux_sym_preproc_include_token1] = ACTIONS(4530), + [aux_sym_preproc_def_token1] = ACTIONS(4530), + [aux_sym_preproc_if_token1] = ACTIONS(4530), + [aux_sym_preproc_if_token2] = ACTIONS(4530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4530), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4530), + [aux_sym_preproc_else_token1] = ACTIONS(4530), + [aux_sym_preproc_elif_token1] = ACTIONS(4530), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4530), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4530), + [sym_preproc_directive] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(4532), + [anon_sym_BANG] = ACTIONS(4532), + [anon_sym_TILDE] = ACTIONS(4532), + [anon_sym_DASH] = ACTIONS(4530), + [anon_sym_PLUS] = ACTIONS(4530), + [anon_sym_STAR] = ACTIONS(4532), + [anon_sym_AMP_AMP] = ACTIONS(4532), + [anon_sym_AMP] = ACTIONS(4530), + [anon_sym_SEMI] = ACTIONS(4532), + [anon_sym___extension__] = ACTIONS(4530), + [anon_sym_typedef] = ACTIONS(4530), + [anon_sym_virtual] = ACTIONS(4530), + [anon_sym_extern] = ACTIONS(4530), + [anon_sym___attribute__] = ACTIONS(4530), + [anon_sym___attribute] = ACTIONS(4530), + [anon_sym_using] = ACTIONS(4530), + [anon_sym_COLON_COLON] = ACTIONS(4532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4532), + [anon_sym___declspec] = ACTIONS(4530), + [anon_sym___based] = ACTIONS(4530), + [anon_sym___cdecl] = ACTIONS(4530), + [anon_sym___clrcall] = ACTIONS(4530), + [anon_sym___stdcall] = ACTIONS(4530), + [anon_sym___fastcall] = ACTIONS(4530), + [anon_sym___thiscall] = ACTIONS(4530), + [anon_sym___vectorcall] = ACTIONS(4530), + [anon_sym_LBRACE] = ACTIONS(4532), + [anon_sym_signed] = ACTIONS(4530), + [anon_sym_unsigned] = ACTIONS(4530), + [anon_sym_long] = ACTIONS(4530), + [anon_sym_short] = ACTIONS(4530), + [anon_sym_LBRACK] = ACTIONS(4530), + [anon_sym_static] = ACTIONS(4530), + [anon_sym_register] = ACTIONS(4530), + [anon_sym_inline] = ACTIONS(4530), + [anon_sym___inline] = ACTIONS(4530), + [anon_sym___inline__] = ACTIONS(4530), + [anon_sym___forceinline] = ACTIONS(4530), + [anon_sym_thread_local] = ACTIONS(4530), + [anon_sym___thread] = ACTIONS(4530), + [anon_sym_const] = ACTIONS(4530), + [anon_sym_constexpr] = ACTIONS(4530), + [anon_sym_volatile] = ACTIONS(4530), + [anon_sym_restrict] = ACTIONS(4530), + [anon_sym___restrict__] = ACTIONS(4530), + [anon_sym__Atomic] = ACTIONS(4530), + [anon_sym__Noreturn] = ACTIONS(4530), + [anon_sym_noreturn] = ACTIONS(4530), + [anon_sym__Nonnull] = ACTIONS(4530), + [anon_sym_mutable] = ACTIONS(4530), + [anon_sym_constinit] = ACTIONS(4530), + [anon_sym_consteval] = ACTIONS(4530), + [anon_sym_alignas] = ACTIONS(4530), + [anon_sym__Alignas] = ACTIONS(4530), + [sym_primitive_type] = ACTIONS(4530), + [anon_sym_enum] = ACTIONS(4530), + [anon_sym_class] = ACTIONS(4530), + [anon_sym_struct] = ACTIONS(4530), + [anon_sym_union] = ACTIONS(4530), + [anon_sym_if] = ACTIONS(4530), + [anon_sym_switch] = ACTIONS(4530), + [anon_sym_case] = ACTIONS(4530), + [anon_sym_default] = ACTIONS(4530), + [anon_sym_while] = ACTIONS(4530), + [anon_sym_do] = ACTIONS(4530), + [anon_sym_for] = ACTIONS(4530), + [anon_sym_return] = ACTIONS(4530), + [anon_sym_break] = ACTIONS(4530), + [anon_sym_continue] = ACTIONS(4530), + [anon_sym_goto] = ACTIONS(4530), + [anon_sym_not] = ACTIONS(4530), + [anon_sym_compl] = ACTIONS(4530), + [anon_sym_DASH_DASH] = ACTIONS(4532), + [anon_sym_PLUS_PLUS] = ACTIONS(4532), + [anon_sym_sizeof] = ACTIONS(4530), + [anon_sym___alignof__] = ACTIONS(4530), + [anon_sym___alignof] = ACTIONS(4530), + [anon_sym__alignof] = ACTIONS(4530), + [anon_sym_alignof] = ACTIONS(4530), + [anon_sym__Alignof] = ACTIONS(4530), + [anon_sym_offsetof] = ACTIONS(4530), + [anon_sym__Generic] = ACTIONS(4530), + [anon_sym_typename] = ACTIONS(4530), + [anon_sym_asm] = ACTIONS(4530), + [anon_sym___asm__] = ACTIONS(4530), + [anon_sym___asm] = ACTIONS(4530), + [sym_number_literal] = ACTIONS(4532), + [anon_sym_L_SQUOTE] = ACTIONS(4532), + [anon_sym_u_SQUOTE] = ACTIONS(4532), + [anon_sym_U_SQUOTE] = ACTIONS(4532), + [anon_sym_u8_SQUOTE] = ACTIONS(4532), + [anon_sym_SQUOTE] = ACTIONS(4532), + [anon_sym_L_DQUOTE] = ACTIONS(4532), + [anon_sym_u_DQUOTE] = ACTIONS(4532), + [anon_sym_U_DQUOTE] = ACTIONS(4532), + [anon_sym_u8_DQUOTE] = ACTIONS(4532), + [anon_sym_DQUOTE] = ACTIONS(4532), + [sym_true] = ACTIONS(4530), + [sym_false] = ACTIONS(4530), + [anon_sym_NULL] = ACTIONS(4530), + [anon_sym_nullptr] = ACTIONS(4530), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4530), + [anon_sym_decltype] = ACTIONS(4530), + [anon_sym_explicit] = ACTIONS(4530), + [anon_sym_export] = ACTIONS(4530), + [anon_sym_module] = ACTIONS(4530), + [anon_sym_import] = ACTIONS(4530), + [anon_sym_template] = ACTIONS(4530), + [anon_sym_operator] = ACTIONS(4530), + [anon_sym_try] = ACTIONS(4530), + [anon_sym_delete] = ACTIONS(4530), + [anon_sym_throw] = ACTIONS(4530), + [anon_sym_namespace] = ACTIONS(4530), + [anon_sym_static_assert] = ACTIONS(4530), + [anon_sym_concept] = ACTIONS(4530), + [anon_sym_co_return] = ACTIONS(4530), + [anon_sym_co_yield] = ACTIONS(4530), + [anon_sym_R_DQUOTE] = ACTIONS(4532), + [anon_sym_LR_DQUOTE] = ACTIONS(4532), + [anon_sym_uR_DQUOTE] = ACTIONS(4532), + [anon_sym_UR_DQUOTE] = ACTIONS(4532), + [anon_sym_u8R_DQUOTE] = ACTIONS(4532), + [anon_sym_co_await] = ACTIONS(4530), + [anon_sym_new] = ACTIONS(4530), + [anon_sym_requires] = ACTIONS(4530), + [anon_sym_CARET_CARET] = ACTIONS(4532), + [anon_sym_LBRACK_COLON] = ACTIONS(4532), + [sym_this] = ACTIONS(4530), }, - [STATE(611)] = { - [sym_identifier] = ACTIONS(2803), - [aux_sym_preproc_include_token1] = ACTIONS(2803), - [aux_sym_preproc_def_token1] = ACTIONS(2803), - [anon_sym_COMMA] = ACTIONS(3888), - [aux_sym_preproc_if_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2803), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2803), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(3888), - [anon_sym___extension__] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2803), - [anon_sym_virtual] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym___attribute__] = ACTIONS(2803), - [anon_sym___attribute] = ACTIONS(2803), - [anon_sym_using] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2803), - [anon_sym___based] = ACTIONS(2803), - [anon_sym___cdecl] = ACTIONS(2803), - [anon_sym___clrcall] = ACTIONS(2803), - [anon_sym___stdcall] = ACTIONS(2803), - [anon_sym___fastcall] = ACTIONS(2803), - [anon_sym___thiscall] = ACTIONS(2803), - [anon_sym___vectorcall] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_signed] = ACTIONS(2803), - [anon_sym_unsigned] = ACTIONS(2803), - [anon_sym_long] = ACTIONS(2803), - [anon_sym_short] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_register] = ACTIONS(2803), - [anon_sym_inline] = ACTIONS(2803), - [anon_sym___inline] = ACTIONS(2803), - [anon_sym___inline__] = ACTIONS(2803), - [anon_sym___forceinline] = ACTIONS(2803), - [anon_sym_thread_local] = ACTIONS(2803), - [anon_sym___thread] = ACTIONS(2803), - [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__Nonnull] = ACTIONS(2803), - [anon_sym_mutable] = ACTIONS(2803), - [anon_sym_constinit] = ACTIONS(2803), - [anon_sym_consteval] = ACTIONS(2803), - [anon_sym_alignas] = ACTIONS(2803), - [anon_sym__Alignas] = ACTIONS(2803), - [sym_primitive_type] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_if] = ACTIONS(2803), - [anon_sym_switch] = ACTIONS(2803), - [anon_sym_case] = ACTIONS(2803), - [anon_sym_default] = ACTIONS(2803), - [anon_sym_while] = ACTIONS(2803), - [anon_sym_do] = ACTIONS(2803), - [anon_sym_for] = ACTIONS(2803), - [anon_sym_return] = ACTIONS(2803), - [anon_sym_break] = ACTIONS(2803), - [anon_sym_continue] = ACTIONS(2803), - [anon_sym_goto] = ACTIONS(2803), - [anon_sym___try] = ACTIONS(2803), - [anon_sym___leave] = ACTIONS(2803), - [anon_sym_not] = ACTIONS(2803), - [anon_sym_compl] = ACTIONS(2803), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_sizeof] = ACTIONS(2803), - [anon_sym___alignof__] = ACTIONS(2803), - [anon_sym___alignof] = ACTIONS(2803), - [anon_sym__alignof] = ACTIONS(2803), - [anon_sym_alignof] = ACTIONS(2803), - [anon_sym__Alignof] = ACTIONS(2803), - [anon_sym_offsetof] = ACTIONS(2803), - [anon_sym__Generic] = ACTIONS(2803), - [anon_sym_typename] = ACTIONS(2803), - [anon_sym_asm] = ACTIONS(2803), - [anon_sym___asm__] = ACTIONS(2803), - [anon_sym___asm] = ACTIONS(2803), - [sym_number_literal] = ACTIONS(2801), - [anon_sym_L_SQUOTE] = ACTIONS(2801), - [anon_sym_u_SQUOTE] = ACTIONS(2801), - [anon_sym_U_SQUOTE] = ACTIONS(2801), - [anon_sym_u8_SQUOTE] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2801), - [anon_sym_L_DQUOTE] = ACTIONS(2801), - [anon_sym_u_DQUOTE] = ACTIONS(2801), - [anon_sym_U_DQUOTE] = ACTIONS(2801), - [anon_sym_u8_DQUOTE] = ACTIONS(2801), - [anon_sym_DQUOTE] = ACTIONS(2801), - [sym_true] = ACTIONS(2803), - [sym_false] = ACTIONS(2803), - [anon_sym_NULL] = ACTIONS(2803), - [anon_sym_nullptr] = ACTIONS(2803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2803), - [anon_sym_decltype] = ACTIONS(2803), - [anon_sym_explicit] = ACTIONS(2803), - [anon_sym_template] = ACTIONS(2803), - [anon_sym_operator] = ACTIONS(2803), - [anon_sym_try] = ACTIONS(2803), - [anon_sym_delete] = ACTIONS(2803), - [anon_sym_throw] = ACTIONS(2803), - [anon_sym_namespace] = ACTIONS(2803), - [anon_sym_static_assert] = ACTIONS(2803), - [anon_sym_concept] = ACTIONS(2803), - [anon_sym_co_return] = ACTIONS(2803), - [anon_sym_co_yield] = ACTIONS(2803), - [anon_sym_R_DQUOTE] = ACTIONS(2801), - [anon_sym_LR_DQUOTE] = ACTIONS(2801), - [anon_sym_uR_DQUOTE] = ACTIONS(2801), - [anon_sym_UR_DQUOTE] = ACTIONS(2801), - [anon_sym_u8R_DQUOTE] = ACTIONS(2801), - [anon_sym_co_await] = ACTIONS(2803), - [anon_sym_new] = ACTIONS(2803), - [anon_sym_requires] = ACTIONS(2803), - [anon_sym_CARET_CARET] = ACTIONS(2801), - [anon_sym_LBRACK_COLON] = ACTIONS(2801), - [sym_this] = ACTIONS(2803), + [STATE(553)] = { + [sym_identifier] = ACTIONS(4534), + [aux_sym_preproc_include_token1] = ACTIONS(4534), + [aux_sym_preproc_def_token1] = ACTIONS(4534), + [aux_sym_preproc_if_token1] = ACTIONS(4534), + [aux_sym_preproc_if_token2] = ACTIONS(4534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4534), + [aux_sym_preproc_else_token1] = ACTIONS(4534), + [aux_sym_preproc_elif_token1] = ACTIONS(4534), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4534), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4534), + [sym_preproc_directive] = ACTIONS(4534), + [anon_sym_LPAREN2] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_TILDE] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_AMP_AMP] = ACTIONS(4536), + [anon_sym_AMP] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4536), + [anon_sym___extension__] = ACTIONS(4534), + [anon_sym_typedef] = ACTIONS(4534), + [anon_sym_virtual] = ACTIONS(4534), + [anon_sym_extern] = ACTIONS(4534), + [anon_sym___attribute__] = ACTIONS(4534), + [anon_sym___attribute] = ACTIONS(4534), + [anon_sym_using] = ACTIONS(4534), + [anon_sym_COLON_COLON] = ACTIONS(4536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4536), + [anon_sym___declspec] = ACTIONS(4534), + [anon_sym___based] = ACTIONS(4534), + [anon_sym___cdecl] = ACTIONS(4534), + [anon_sym___clrcall] = ACTIONS(4534), + [anon_sym___stdcall] = ACTIONS(4534), + [anon_sym___fastcall] = ACTIONS(4534), + [anon_sym___thiscall] = ACTIONS(4534), + [anon_sym___vectorcall] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4536), + [anon_sym_signed] = ACTIONS(4534), + [anon_sym_unsigned] = ACTIONS(4534), + [anon_sym_long] = ACTIONS(4534), + [anon_sym_short] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_static] = ACTIONS(4534), + [anon_sym_register] = ACTIONS(4534), + [anon_sym_inline] = ACTIONS(4534), + [anon_sym___inline] = ACTIONS(4534), + [anon_sym___inline__] = ACTIONS(4534), + [anon_sym___forceinline] = ACTIONS(4534), + [anon_sym_thread_local] = ACTIONS(4534), + [anon_sym___thread] = ACTIONS(4534), + [anon_sym_const] = ACTIONS(4534), + [anon_sym_constexpr] = ACTIONS(4534), + [anon_sym_volatile] = ACTIONS(4534), + [anon_sym_restrict] = ACTIONS(4534), + [anon_sym___restrict__] = ACTIONS(4534), + [anon_sym__Atomic] = ACTIONS(4534), + [anon_sym__Noreturn] = ACTIONS(4534), + [anon_sym_noreturn] = ACTIONS(4534), + [anon_sym__Nonnull] = ACTIONS(4534), + [anon_sym_mutable] = ACTIONS(4534), + [anon_sym_constinit] = ACTIONS(4534), + [anon_sym_consteval] = ACTIONS(4534), + [anon_sym_alignas] = ACTIONS(4534), + [anon_sym__Alignas] = ACTIONS(4534), + [sym_primitive_type] = ACTIONS(4534), + [anon_sym_enum] = ACTIONS(4534), + [anon_sym_class] = ACTIONS(4534), + [anon_sym_struct] = ACTIONS(4534), + [anon_sym_union] = ACTIONS(4534), + [anon_sym_if] = ACTIONS(4534), + [anon_sym_switch] = ACTIONS(4534), + [anon_sym_case] = ACTIONS(4534), + [anon_sym_default] = ACTIONS(4534), + [anon_sym_while] = ACTIONS(4534), + [anon_sym_do] = ACTIONS(4534), + [anon_sym_for] = ACTIONS(4534), + [anon_sym_return] = ACTIONS(4534), + [anon_sym_break] = ACTIONS(4534), + [anon_sym_continue] = ACTIONS(4534), + [anon_sym_goto] = ACTIONS(4534), + [anon_sym_not] = ACTIONS(4534), + [anon_sym_compl] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4536), + [anon_sym_PLUS_PLUS] = ACTIONS(4536), + [anon_sym_sizeof] = ACTIONS(4534), + [anon_sym___alignof__] = ACTIONS(4534), + [anon_sym___alignof] = ACTIONS(4534), + [anon_sym__alignof] = ACTIONS(4534), + [anon_sym_alignof] = ACTIONS(4534), + [anon_sym__Alignof] = ACTIONS(4534), + [anon_sym_offsetof] = ACTIONS(4534), + [anon_sym__Generic] = ACTIONS(4534), + [anon_sym_typename] = ACTIONS(4534), + [anon_sym_asm] = ACTIONS(4534), + [anon_sym___asm__] = ACTIONS(4534), + [anon_sym___asm] = ACTIONS(4534), + [sym_number_literal] = ACTIONS(4536), + [anon_sym_L_SQUOTE] = ACTIONS(4536), + [anon_sym_u_SQUOTE] = ACTIONS(4536), + [anon_sym_U_SQUOTE] = ACTIONS(4536), + [anon_sym_u8_SQUOTE] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_L_DQUOTE] = ACTIONS(4536), + [anon_sym_u_DQUOTE] = ACTIONS(4536), + [anon_sym_U_DQUOTE] = ACTIONS(4536), + [anon_sym_u8_DQUOTE] = ACTIONS(4536), + [anon_sym_DQUOTE] = ACTIONS(4536), + [sym_true] = ACTIONS(4534), + [sym_false] = ACTIONS(4534), + [anon_sym_NULL] = ACTIONS(4534), + [anon_sym_nullptr] = ACTIONS(4534), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4534), + [anon_sym_decltype] = ACTIONS(4534), + [anon_sym_explicit] = ACTIONS(4534), + [anon_sym_export] = ACTIONS(4534), + [anon_sym_module] = ACTIONS(4534), + [anon_sym_import] = ACTIONS(4534), + [anon_sym_template] = ACTIONS(4534), + [anon_sym_operator] = ACTIONS(4534), + [anon_sym_try] = ACTIONS(4534), + [anon_sym_delete] = ACTIONS(4534), + [anon_sym_throw] = ACTIONS(4534), + [anon_sym_namespace] = ACTIONS(4534), + [anon_sym_static_assert] = ACTIONS(4534), + [anon_sym_concept] = ACTIONS(4534), + [anon_sym_co_return] = ACTIONS(4534), + [anon_sym_co_yield] = ACTIONS(4534), + [anon_sym_R_DQUOTE] = ACTIONS(4536), + [anon_sym_LR_DQUOTE] = ACTIONS(4536), + [anon_sym_uR_DQUOTE] = ACTIONS(4536), + [anon_sym_UR_DQUOTE] = ACTIONS(4536), + [anon_sym_u8R_DQUOTE] = ACTIONS(4536), + [anon_sym_co_await] = ACTIONS(4534), + [anon_sym_new] = ACTIONS(4534), + [anon_sym_requires] = ACTIONS(4534), + [anon_sym_CARET_CARET] = ACTIONS(4536), + [anon_sym_LBRACK_COLON] = ACTIONS(4536), + [sym_this] = ACTIONS(4534), }, - [STATE(612)] = { - [sym_preproc_def] = STATE(625), - [sym_preproc_function_def] = STATE(625), - [sym_preproc_call] = STATE(625), - [sym_preproc_if_in_field_declaration_list] = STATE(625), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(625), - [sym_type_definition] = STATE(625), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7964), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(625), - [sym_field_declaration] = STATE(625), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(625), - [sym_operator_cast] = STATE(9142), - [sym_inline_method_definition] = STATE(625), - [sym__constructor_specifiers] = STATE(2332), - [sym_operator_cast_definition] = STATE(625), - [sym_operator_cast_declaration] = STATE(625), - [sym_constructor_or_destructor_definition] = STATE(625), - [sym_constructor_or_destructor_declaration] = STATE(625), - [sym_friend_declaration] = STATE(625), - [sym_access_specifier] = STATE(11109), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(625), - [sym_alias_declaration] = STATE(625), - [sym_static_assert_declaration] = STATE(625), - [sym_consteval_block_declaration] = STATE(625), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(625), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9371), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(4352), - [aux_sym_preproc_if_token1] = ACTIONS(4354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), - [sym_preproc_directive] = ACTIONS(4358), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(4360), - [anon_sym___extension__] = ACTIONS(4362), - [anon_sym_typedef] = ACTIONS(4364), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4368), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4372), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(4374), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4376), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(4378), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [STATE(554)] = { + [sym_identifier] = ACTIONS(4538), + [aux_sym_preproc_include_token1] = ACTIONS(4538), + [aux_sym_preproc_def_token1] = ACTIONS(4538), + [aux_sym_preproc_if_token1] = ACTIONS(4538), + [aux_sym_preproc_if_token2] = ACTIONS(4538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4538), + [aux_sym_preproc_else_token1] = ACTIONS(4538), + [aux_sym_preproc_elif_token1] = ACTIONS(4538), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4538), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4538), + [sym_preproc_directive] = ACTIONS(4538), + [anon_sym_LPAREN2] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4538), + [anon_sym_PLUS] = ACTIONS(4538), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_AMP_AMP] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4538), + [anon_sym_SEMI] = ACTIONS(4540), + [anon_sym___extension__] = ACTIONS(4538), + [anon_sym_typedef] = ACTIONS(4538), + [anon_sym_virtual] = ACTIONS(4538), + [anon_sym_extern] = ACTIONS(4538), + [anon_sym___attribute__] = ACTIONS(4538), + [anon_sym___attribute] = ACTIONS(4538), + [anon_sym_using] = ACTIONS(4538), + [anon_sym_COLON_COLON] = ACTIONS(4540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4540), + [anon_sym___declspec] = ACTIONS(4538), + [anon_sym___based] = ACTIONS(4538), + [anon_sym___cdecl] = ACTIONS(4538), + [anon_sym___clrcall] = ACTIONS(4538), + [anon_sym___stdcall] = ACTIONS(4538), + [anon_sym___fastcall] = ACTIONS(4538), + [anon_sym___thiscall] = ACTIONS(4538), + [anon_sym___vectorcall] = ACTIONS(4538), + [anon_sym_LBRACE] = ACTIONS(4540), + [anon_sym_signed] = ACTIONS(4538), + [anon_sym_unsigned] = ACTIONS(4538), + [anon_sym_long] = ACTIONS(4538), + [anon_sym_short] = ACTIONS(4538), + [anon_sym_LBRACK] = ACTIONS(4538), + [anon_sym_static] = ACTIONS(4538), + [anon_sym_register] = ACTIONS(4538), + [anon_sym_inline] = ACTIONS(4538), + [anon_sym___inline] = ACTIONS(4538), + [anon_sym___inline__] = ACTIONS(4538), + [anon_sym___forceinline] = ACTIONS(4538), + [anon_sym_thread_local] = ACTIONS(4538), + [anon_sym___thread] = ACTIONS(4538), + [anon_sym_const] = ACTIONS(4538), + [anon_sym_constexpr] = ACTIONS(4538), + [anon_sym_volatile] = ACTIONS(4538), + [anon_sym_restrict] = ACTIONS(4538), + [anon_sym___restrict__] = ACTIONS(4538), + [anon_sym__Atomic] = ACTIONS(4538), + [anon_sym__Noreturn] = ACTIONS(4538), + [anon_sym_noreturn] = ACTIONS(4538), + [anon_sym__Nonnull] = ACTIONS(4538), + [anon_sym_mutable] = ACTIONS(4538), + [anon_sym_constinit] = ACTIONS(4538), + [anon_sym_consteval] = ACTIONS(4538), + [anon_sym_alignas] = ACTIONS(4538), + [anon_sym__Alignas] = ACTIONS(4538), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_enum] = ACTIONS(4538), + [anon_sym_class] = ACTIONS(4538), + [anon_sym_struct] = ACTIONS(4538), + [anon_sym_union] = ACTIONS(4538), + [anon_sym_if] = ACTIONS(4538), + [anon_sym_switch] = ACTIONS(4538), + [anon_sym_case] = ACTIONS(4538), + [anon_sym_default] = ACTIONS(4538), + [anon_sym_while] = ACTIONS(4538), + [anon_sym_do] = ACTIONS(4538), + [anon_sym_for] = ACTIONS(4538), + [anon_sym_return] = ACTIONS(4538), + [anon_sym_break] = ACTIONS(4538), + [anon_sym_continue] = ACTIONS(4538), + [anon_sym_goto] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(4538), + [anon_sym_compl] = ACTIONS(4538), + [anon_sym_DASH_DASH] = ACTIONS(4540), + [anon_sym_PLUS_PLUS] = ACTIONS(4540), + [anon_sym_sizeof] = ACTIONS(4538), + [anon_sym___alignof__] = ACTIONS(4538), + [anon_sym___alignof] = ACTIONS(4538), + [anon_sym__alignof] = ACTIONS(4538), + [anon_sym_alignof] = ACTIONS(4538), + [anon_sym__Alignof] = ACTIONS(4538), + [anon_sym_offsetof] = ACTIONS(4538), + [anon_sym__Generic] = ACTIONS(4538), + [anon_sym_typename] = ACTIONS(4538), + [anon_sym_asm] = ACTIONS(4538), + [anon_sym___asm__] = ACTIONS(4538), + [anon_sym___asm] = ACTIONS(4538), + [sym_number_literal] = ACTIONS(4540), + [anon_sym_L_SQUOTE] = ACTIONS(4540), + [anon_sym_u_SQUOTE] = ACTIONS(4540), + [anon_sym_U_SQUOTE] = ACTIONS(4540), + [anon_sym_u8_SQUOTE] = ACTIONS(4540), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_L_DQUOTE] = ACTIONS(4540), + [anon_sym_u_DQUOTE] = ACTIONS(4540), + [anon_sym_U_DQUOTE] = ACTIONS(4540), + [anon_sym_u8_DQUOTE] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [sym_true] = ACTIONS(4538), + [sym_false] = ACTIONS(4538), + [anon_sym_NULL] = ACTIONS(4538), + [anon_sym_nullptr] = ACTIONS(4538), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4538), + [anon_sym_decltype] = ACTIONS(4538), + [anon_sym_explicit] = ACTIONS(4538), + [anon_sym_export] = ACTIONS(4538), + [anon_sym_module] = ACTIONS(4538), + [anon_sym_import] = ACTIONS(4538), + [anon_sym_template] = ACTIONS(4538), + [anon_sym_operator] = ACTIONS(4538), + [anon_sym_try] = ACTIONS(4538), + [anon_sym_delete] = ACTIONS(4538), + [anon_sym_throw] = ACTIONS(4538), + [anon_sym_namespace] = ACTIONS(4538), + [anon_sym_static_assert] = ACTIONS(4538), + [anon_sym_concept] = ACTIONS(4538), + [anon_sym_co_return] = ACTIONS(4538), + [anon_sym_co_yield] = ACTIONS(4538), + [anon_sym_R_DQUOTE] = ACTIONS(4540), + [anon_sym_LR_DQUOTE] = ACTIONS(4540), + [anon_sym_uR_DQUOTE] = ACTIONS(4540), + [anon_sym_UR_DQUOTE] = ACTIONS(4540), + [anon_sym_u8R_DQUOTE] = ACTIONS(4540), + [anon_sym_co_await] = ACTIONS(4538), + [anon_sym_new] = ACTIONS(4538), + [anon_sym_requires] = ACTIONS(4538), + [anon_sym_CARET_CARET] = ACTIONS(4540), + [anon_sym_LBRACK_COLON] = ACTIONS(4540), + [sym_this] = ACTIONS(4538), }, - [STATE(613)] = { - [ts_builtin_sym_end] = ACTIONS(3980), - [sym_identifier] = ACTIONS(3978), - [aux_sym_preproc_include_token1] = ACTIONS(3978), - [aux_sym_preproc_def_token1] = ACTIONS(3978), - [aux_sym_preproc_if_token1] = ACTIONS(3978), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3978), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3978), - [sym_preproc_directive] = ACTIONS(3978), - [anon_sym_LPAREN2] = ACTIONS(3980), - [anon_sym_BANG] = ACTIONS(3980), - [anon_sym_TILDE] = ACTIONS(3980), - [anon_sym_DASH] = ACTIONS(3978), - [anon_sym_PLUS] = ACTIONS(3978), - [anon_sym_STAR] = ACTIONS(3980), - [anon_sym_AMP_AMP] = ACTIONS(3980), - [anon_sym_AMP] = ACTIONS(3978), - [anon_sym_SEMI] = ACTIONS(3980), - [anon_sym___extension__] = ACTIONS(3978), - [anon_sym_typedef] = ACTIONS(3978), - [anon_sym_virtual] = ACTIONS(3978), - [anon_sym_extern] = ACTIONS(3978), - [anon_sym___attribute__] = ACTIONS(3978), - [anon_sym___attribute] = ACTIONS(3978), - [anon_sym_using] = ACTIONS(3978), - [anon_sym_COLON_COLON] = ACTIONS(3980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3980), - [anon_sym___declspec] = ACTIONS(3978), - [anon_sym___based] = ACTIONS(3978), - [anon_sym___cdecl] = ACTIONS(3978), - [anon_sym___clrcall] = ACTIONS(3978), - [anon_sym___stdcall] = ACTIONS(3978), - [anon_sym___fastcall] = ACTIONS(3978), - [anon_sym___thiscall] = ACTIONS(3978), - [anon_sym___vectorcall] = ACTIONS(3978), - [anon_sym_LBRACE] = ACTIONS(3980), - [anon_sym_signed] = ACTIONS(3978), - [anon_sym_unsigned] = ACTIONS(3978), - [anon_sym_long] = ACTIONS(3978), - [anon_sym_short] = ACTIONS(3978), - [anon_sym_LBRACK] = ACTIONS(3978), - [anon_sym_static] = ACTIONS(3978), - [anon_sym_register] = ACTIONS(3978), - [anon_sym_inline] = ACTIONS(3978), - [anon_sym___inline] = ACTIONS(3978), - [anon_sym___inline__] = ACTIONS(3978), - [anon_sym___forceinline] = ACTIONS(3978), - [anon_sym_thread_local] = ACTIONS(3978), - [anon_sym___thread] = ACTIONS(3978), - [anon_sym_const] = ACTIONS(3978), - [anon_sym_constexpr] = ACTIONS(3978), - [anon_sym_volatile] = ACTIONS(3978), - [anon_sym_restrict] = ACTIONS(3978), - [anon_sym___restrict__] = ACTIONS(3978), - [anon_sym__Atomic] = ACTIONS(3978), - [anon_sym__Noreturn] = ACTIONS(3978), - [anon_sym_noreturn] = ACTIONS(3978), - [anon_sym__Nonnull] = ACTIONS(3978), - [anon_sym_mutable] = ACTIONS(3978), - [anon_sym_constinit] = ACTIONS(3978), - [anon_sym_consteval] = ACTIONS(3978), - [anon_sym_alignas] = ACTIONS(3978), - [anon_sym__Alignas] = ACTIONS(3978), - [sym_primitive_type] = ACTIONS(3978), - [anon_sym_enum] = ACTIONS(3978), - [anon_sym_class] = ACTIONS(3978), - [anon_sym_struct] = ACTIONS(3978), - [anon_sym_union] = ACTIONS(3978), - [anon_sym_if] = ACTIONS(3978), - [anon_sym_switch] = ACTIONS(3978), - [anon_sym_case] = ACTIONS(3978), - [anon_sym_default] = ACTIONS(3978), - [anon_sym_while] = ACTIONS(3978), - [anon_sym_do] = ACTIONS(3978), - [anon_sym_for] = ACTIONS(3978), - [anon_sym_return] = ACTIONS(3978), - [anon_sym_break] = ACTIONS(3978), - [anon_sym_continue] = ACTIONS(3978), - [anon_sym_goto] = ACTIONS(3978), - [anon_sym_not] = ACTIONS(3978), - [anon_sym_compl] = ACTIONS(3978), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(3978), - [anon_sym___alignof__] = ACTIONS(3978), - [anon_sym___alignof] = ACTIONS(3978), - [anon_sym__alignof] = ACTIONS(3978), - [anon_sym_alignof] = ACTIONS(3978), - [anon_sym__Alignof] = ACTIONS(3978), - [anon_sym_offsetof] = ACTIONS(3978), - [anon_sym__Generic] = ACTIONS(3978), - [anon_sym_typename] = ACTIONS(3978), - [anon_sym_asm] = ACTIONS(3978), - [anon_sym___asm__] = ACTIONS(3978), - [anon_sym___asm] = ACTIONS(3978), - [sym_number_literal] = ACTIONS(3980), - [anon_sym_L_SQUOTE] = ACTIONS(3980), - [anon_sym_u_SQUOTE] = ACTIONS(3980), - [anon_sym_U_SQUOTE] = ACTIONS(3980), - [anon_sym_u8_SQUOTE] = ACTIONS(3980), - [anon_sym_SQUOTE] = ACTIONS(3980), - [anon_sym_L_DQUOTE] = ACTIONS(3980), - [anon_sym_u_DQUOTE] = ACTIONS(3980), - [anon_sym_U_DQUOTE] = ACTIONS(3980), - [anon_sym_u8_DQUOTE] = ACTIONS(3980), - [anon_sym_DQUOTE] = ACTIONS(3980), - [sym_true] = ACTIONS(3978), - [sym_false] = ACTIONS(3978), - [anon_sym_NULL] = ACTIONS(3978), - [anon_sym_nullptr] = ACTIONS(3978), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3978), - [anon_sym_decltype] = ACTIONS(3978), - [anon_sym_explicit] = ACTIONS(3978), - [anon_sym_export] = ACTIONS(3978), - [anon_sym_module] = ACTIONS(3978), - [anon_sym_import] = ACTIONS(3978), - [anon_sym_template] = ACTIONS(3978), - [anon_sym_operator] = ACTIONS(3978), - [anon_sym_try] = ACTIONS(3978), - [anon_sym_delete] = ACTIONS(3978), - [anon_sym_throw] = ACTIONS(3978), - [anon_sym_namespace] = ACTIONS(3978), - [anon_sym_static_assert] = ACTIONS(3978), - [anon_sym_concept] = ACTIONS(3978), - [anon_sym_co_return] = ACTIONS(3978), - [anon_sym_co_yield] = ACTIONS(3978), - [anon_sym_R_DQUOTE] = ACTIONS(3980), - [anon_sym_LR_DQUOTE] = ACTIONS(3980), - [anon_sym_uR_DQUOTE] = ACTIONS(3980), - [anon_sym_UR_DQUOTE] = ACTIONS(3980), - [anon_sym_u8R_DQUOTE] = ACTIONS(3980), - [anon_sym_co_await] = ACTIONS(3978), - [anon_sym_new] = ACTIONS(3978), - [anon_sym_requires] = ACTIONS(3978), - [anon_sym_CARET_CARET] = ACTIONS(3980), - [anon_sym_LBRACK_COLON] = ACTIONS(3980), - [sym_this] = ACTIONS(3978), + [STATE(555)] = { + [sym_preproc_def] = STATE(555), + [sym_preproc_function_def] = STATE(555), + [sym_preproc_call] = STATE(555), + [sym_preproc_if_in_field_declaration_list] = STATE(555), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), + [sym_type_definition] = STATE(555), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8093), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8674), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(555), + [sym_field_declaration] = STATE(555), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2456), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(555), + [sym_operator_cast] = STATE(9218), + [sym_inline_method_definition] = STATE(555), + [sym__constructor_specifiers] = STATE(2456), + [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_access_specifier] = STATE(11699), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(555), + [sym_alias_declaration] = STATE(555), + [sym_static_assert_declaration] = STATE(555), + [sym_consteval_block_declaration] = STATE(555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9218), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9608), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2456), + [sym_identifier] = ACTIONS(4542), + [aux_sym_preproc_def_token1] = ACTIONS(4545), + [aux_sym_preproc_if_token1] = ACTIONS(4548), + [aux_sym_preproc_if_token2] = ACTIONS(4551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4553), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4553), + [aux_sym_preproc_else_token1] = ACTIONS(4551), + [aux_sym_preproc_elif_token1] = ACTIONS(4551), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4551), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4551), + [sym_preproc_directive] = ACTIONS(4556), + [anon_sym_LPAREN2] = ACTIONS(4559), + [anon_sym_TILDE] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4565), + [anon_sym_AMP_AMP] = ACTIONS(4568), + [anon_sym_AMP] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(4574), + [anon_sym___extension__] = ACTIONS(4577), + [anon_sym_typedef] = ACTIONS(4580), + [anon_sym_virtual] = ACTIONS(4583), + [anon_sym_extern] = ACTIONS(4586), + [anon_sym___attribute__] = ACTIONS(4589), + [anon_sym___attribute] = ACTIONS(4589), + [anon_sym_using] = ACTIONS(4592), + [anon_sym_COLON_COLON] = ACTIONS(4595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4598), + [anon_sym___declspec] = ACTIONS(4601), + [anon_sym___based] = ACTIONS(4604), + [anon_sym_signed] = ACTIONS(4607), + [anon_sym_unsigned] = ACTIONS(4607), + [anon_sym_long] = ACTIONS(4607), + [anon_sym_short] = ACTIONS(4607), + [anon_sym_LBRACK] = ACTIONS(4610), + [anon_sym_static] = ACTIONS(4586), + [anon_sym_register] = ACTIONS(4586), + [anon_sym_inline] = ACTIONS(4586), + [anon_sym___inline] = ACTIONS(4586), + [anon_sym___inline__] = ACTIONS(4586), + [anon_sym___forceinline] = ACTIONS(4586), + [anon_sym_thread_local] = ACTIONS(4586), + [anon_sym___thread] = ACTIONS(4586), + [anon_sym_const] = ACTIONS(4613), + [anon_sym_constexpr] = ACTIONS(4616), + [anon_sym_volatile] = ACTIONS(4613), + [anon_sym_restrict] = ACTIONS(4613), + [anon_sym___restrict__] = ACTIONS(4613), + [anon_sym__Atomic] = ACTIONS(4613), + [anon_sym__Noreturn] = ACTIONS(4613), + [anon_sym_noreturn] = ACTIONS(4613), + [anon_sym__Nonnull] = ACTIONS(4613), + [anon_sym_mutable] = ACTIONS(4613), + [anon_sym_constinit] = ACTIONS(4613), + [anon_sym_consteval] = ACTIONS(4619), + [anon_sym_alignas] = ACTIONS(4622), + [anon_sym__Alignas] = ACTIONS(4622), + [sym_primitive_type] = ACTIONS(4625), + [anon_sym_enum] = ACTIONS(4628), + [anon_sym_class] = ACTIONS(4631), + [anon_sym_struct] = ACTIONS(4634), + [anon_sym_union] = ACTIONS(4637), + [anon_sym_typename] = ACTIONS(4640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4643), + [anon_sym_decltype] = ACTIONS(4646), + [anon_sym_explicit] = ACTIONS(4649), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_template] = ACTIONS(4655), + [anon_sym_operator] = ACTIONS(4658), + [anon_sym_friend] = ACTIONS(4661), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_static_assert] = ACTIONS(4664), + [anon_sym_LBRACK_COLON] = ACTIONS(4667), }, - [STATE(614)] = { - [ts_builtin_sym_end] = ACTIONS(3964), - [sym_identifier] = ACTIONS(3962), - [aux_sym_preproc_include_token1] = ACTIONS(3962), - [aux_sym_preproc_def_token1] = ACTIONS(3962), - [aux_sym_preproc_if_token1] = ACTIONS(3962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3962), - [sym_preproc_directive] = ACTIONS(3962), - [anon_sym_LPAREN2] = ACTIONS(3964), - [anon_sym_BANG] = ACTIONS(3964), - [anon_sym_TILDE] = ACTIONS(3964), - [anon_sym_DASH] = ACTIONS(3962), - [anon_sym_PLUS] = ACTIONS(3962), - [anon_sym_STAR] = ACTIONS(3964), - [anon_sym_AMP_AMP] = ACTIONS(3964), - [anon_sym_AMP] = ACTIONS(3962), - [anon_sym_SEMI] = ACTIONS(3964), - [anon_sym___extension__] = ACTIONS(3962), - [anon_sym_typedef] = ACTIONS(3962), - [anon_sym_virtual] = ACTIONS(3962), - [anon_sym_extern] = ACTIONS(3962), - [anon_sym___attribute__] = ACTIONS(3962), - [anon_sym___attribute] = ACTIONS(3962), - [anon_sym_using] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(3964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3964), - [anon_sym___declspec] = ACTIONS(3962), - [anon_sym___based] = ACTIONS(3962), - [anon_sym___cdecl] = ACTIONS(3962), - [anon_sym___clrcall] = ACTIONS(3962), - [anon_sym___stdcall] = ACTIONS(3962), - [anon_sym___fastcall] = ACTIONS(3962), - [anon_sym___thiscall] = ACTIONS(3962), - [anon_sym___vectorcall] = ACTIONS(3962), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_signed] = ACTIONS(3962), - [anon_sym_unsigned] = ACTIONS(3962), - [anon_sym_long] = ACTIONS(3962), - [anon_sym_short] = ACTIONS(3962), - [anon_sym_LBRACK] = ACTIONS(3962), - [anon_sym_static] = ACTIONS(3962), - [anon_sym_register] = ACTIONS(3962), - [anon_sym_inline] = ACTIONS(3962), - [anon_sym___inline] = ACTIONS(3962), - [anon_sym___inline__] = ACTIONS(3962), - [anon_sym___forceinline] = ACTIONS(3962), - [anon_sym_thread_local] = ACTIONS(3962), - [anon_sym___thread] = ACTIONS(3962), - [anon_sym_const] = ACTIONS(3962), - [anon_sym_constexpr] = ACTIONS(3962), - [anon_sym_volatile] = ACTIONS(3962), - [anon_sym_restrict] = ACTIONS(3962), - [anon_sym___restrict__] = ACTIONS(3962), - [anon_sym__Atomic] = ACTIONS(3962), - [anon_sym__Noreturn] = ACTIONS(3962), - [anon_sym_noreturn] = ACTIONS(3962), - [anon_sym__Nonnull] = ACTIONS(3962), - [anon_sym_mutable] = ACTIONS(3962), - [anon_sym_constinit] = ACTIONS(3962), - [anon_sym_consteval] = ACTIONS(3962), - [anon_sym_alignas] = ACTIONS(3962), - [anon_sym__Alignas] = ACTIONS(3962), - [sym_primitive_type] = ACTIONS(3962), - [anon_sym_enum] = ACTIONS(3962), - [anon_sym_class] = ACTIONS(3962), - [anon_sym_struct] = ACTIONS(3962), - [anon_sym_union] = ACTIONS(3962), - [anon_sym_if] = ACTIONS(3962), - [anon_sym_switch] = ACTIONS(3962), - [anon_sym_case] = ACTIONS(3962), - [anon_sym_default] = ACTIONS(3962), - [anon_sym_while] = ACTIONS(3962), - [anon_sym_do] = ACTIONS(3962), - [anon_sym_for] = ACTIONS(3962), - [anon_sym_return] = ACTIONS(3962), - [anon_sym_break] = ACTIONS(3962), - [anon_sym_continue] = ACTIONS(3962), - [anon_sym_goto] = ACTIONS(3962), - [anon_sym_not] = ACTIONS(3962), - [anon_sym_compl] = ACTIONS(3962), - [anon_sym_DASH_DASH] = ACTIONS(3964), - [anon_sym_PLUS_PLUS] = ACTIONS(3964), - [anon_sym_sizeof] = ACTIONS(3962), - [anon_sym___alignof__] = ACTIONS(3962), - [anon_sym___alignof] = ACTIONS(3962), - [anon_sym__alignof] = ACTIONS(3962), - [anon_sym_alignof] = ACTIONS(3962), - [anon_sym__Alignof] = ACTIONS(3962), - [anon_sym_offsetof] = ACTIONS(3962), - [anon_sym__Generic] = ACTIONS(3962), - [anon_sym_typename] = ACTIONS(3962), - [anon_sym_asm] = ACTIONS(3962), - [anon_sym___asm__] = ACTIONS(3962), - [anon_sym___asm] = ACTIONS(3962), - [sym_number_literal] = ACTIONS(3964), - [anon_sym_L_SQUOTE] = ACTIONS(3964), - [anon_sym_u_SQUOTE] = ACTIONS(3964), - [anon_sym_U_SQUOTE] = ACTIONS(3964), - [anon_sym_u8_SQUOTE] = ACTIONS(3964), - [anon_sym_SQUOTE] = ACTIONS(3964), - [anon_sym_L_DQUOTE] = ACTIONS(3964), - [anon_sym_u_DQUOTE] = ACTIONS(3964), - [anon_sym_U_DQUOTE] = ACTIONS(3964), - [anon_sym_u8_DQUOTE] = ACTIONS(3964), - [anon_sym_DQUOTE] = ACTIONS(3964), - [sym_true] = ACTIONS(3962), - [sym_false] = ACTIONS(3962), - [anon_sym_NULL] = ACTIONS(3962), - [anon_sym_nullptr] = ACTIONS(3962), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3962), - [anon_sym_decltype] = ACTIONS(3962), - [anon_sym_explicit] = ACTIONS(3962), - [anon_sym_export] = ACTIONS(3962), - [anon_sym_module] = ACTIONS(3962), - [anon_sym_import] = ACTIONS(3962), - [anon_sym_template] = ACTIONS(3962), - [anon_sym_operator] = ACTIONS(3962), - [anon_sym_try] = ACTIONS(3962), - [anon_sym_delete] = ACTIONS(3962), - [anon_sym_throw] = ACTIONS(3962), - [anon_sym_namespace] = ACTIONS(3962), - [anon_sym_static_assert] = ACTIONS(3962), - [anon_sym_concept] = ACTIONS(3962), - [anon_sym_co_return] = ACTIONS(3962), - [anon_sym_co_yield] = ACTIONS(3962), - [anon_sym_R_DQUOTE] = ACTIONS(3964), - [anon_sym_LR_DQUOTE] = ACTIONS(3964), - [anon_sym_uR_DQUOTE] = ACTIONS(3964), - [anon_sym_UR_DQUOTE] = ACTIONS(3964), - [anon_sym_u8R_DQUOTE] = ACTIONS(3964), - [anon_sym_co_await] = ACTIONS(3962), - [anon_sym_new] = ACTIONS(3962), - [anon_sym_requires] = ACTIONS(3962), - [anon_sym_CARET_CARET] = ACTIONS(3964), - [anon_sym_LBRACK_COLON] = ACTIONS(3964), - [sym_this] = ACTIONS(3962), + [STATE(556)] = { + [ts_builtin_sym_end] = ACTIONS(3606), + [sym_identifier] = ACTIONS(3604), + [aux_sym_preproc_include_token1] = ACTIONS(3604), + [aux_sym_preproc_def_token1] = ACTIONS(3604), + [aux_sym_preproc_if_token1] = ACTIONS(3604), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3604), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3604), + [sym_preproc_directive] = ACTIONS(3604), + [anon_sym_LPAREN2] = ACTIONS(3606), + [anon_sym_BANG] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3606), + [anon_sym_DASH] = ACTIONS(3604), + [anon_sym_PLUS] = ACTIONS(3604), + [anon_sym_STAR] = ACTIONS(3606), + [anon_sym_AMP_AMP] = ACTIONS(3606), + [anon_sym_AMP] = ACTIONS(3604), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym___extension__] = ACTIONS(3604), + [anon_sym_typedef] = ACTIONS(3604), + [anon_sym_virtual] = ACTIONS(3604), + [anon_sym_extern] = ACTIONS(3604), + [anon_sym___attribute__] = ACTIONS(3604), + [anon_sym___attribute] = ACTIONS(3604), + [anon_sym_using] = ACTIONS(3604), + [anon_sym_COLON_COLON] = ACTIONS(3606), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3606), + [anon_sym___declspec] = ACTIONS(3604), + [anon_sym___based] = ACTIONS(3604), + [anon_sym___cdecl] = ACTIONS(3604), + [anon_sym___clrcall] = ACTIONS(3604), + [anon_sym___stdcall] = ACTIONS(3604), + [anon_sym___fastcall] = ACTIONS(3604), + [anon_sym___thiscall] = ACTIONS(3604), + [anon_sym___vectorcall] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3606), + [anon_sym_signed] = ACTIONS(3604), + [anon_sym_unsigned] = ACTIONS(3604), + [anon_sym_long] = ACTIONS(3604), + [anon_sym_short] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3604), + [anon_sym_static] = ACTIONS(3604), + [anon_sym_register] = ACTIONS(3604), + [anon_sym_inline] = ACTIONS(3604), + [anon_sym___inline] = ACTIONS(3604), + [anon_sym___inline__] = ACTIONS(3604), + [anon_sym___forceinline] = ACTIONS(3604), + [anon_sym_thread_local] = ACTIONS(3604), + [anon_sym___thread] = ACTIONS(3604), + [anon_sym_const] = ACTIONS(3604), + [anon_sym_constexpr] = ACTIONS(3604), + [anon_sym_volatile] = ACTIONS(3604), + [anon_sym_restrict] = ACTIONS(3604), + [anon_sym___restrict__] = ACTIONS(3604), + [anon_sym__Atomic] = ACTIONS(3604), + [anon_sym__Noreturn] = ACTIONS(3604), + [anon_sym_noreturn] = ACTIONS(3604), + [anon_sym__Nonnull] = ACTIONS(3604), + [anon_sym_mutable] = ACTIONS(3604), + [anon_sym_constinit] = ACTIONS(3604), + [anon_sym_consteval] = ACTIONS(3604), + [anon_sym_alignas] = ACTIONS(3604), + [anon_sym__Alignas] = ACTIONS(3604), + [sym_primitive_type] = ACTIONS(3604), + [anon_sym_enum] = ACTIONS(3604), + [anon_sym_class] = ACTIONS(3604), + [anon_sym_struct] = ACTIONS(3604), + [anon_sym_union] = ACTIONS(3604), + [anon_sym_if] = ACTIONS(3604), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_switch] = ACTIONS(3604), + [anon_sym_case] = ACTIONS(3604), + [anon_sym_default] = ACTIONS(3604), + [anon_sym_while] = ACTIONS(3604), + [anon_sym_do] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3604), + [anon_sym_return] = ACTIONS(3604), + [anon_sym_break] = ACTIONS(3604), + [anon_sym_continue] = ACTIONS(3604), + [anon_sym_goto] = ACTIONS(3604), + [anon_sym___try] = ACTIONS(3604), + [anon_sym___leave] = ACTIONS(3604), + [anon_sym_not] = ACTIONS(3604), + [anon_sym_compl] = ACTIONS(3604), + [anon_sym_DASH_DASH] = ACTIONS(3606), + [anon_sym_PLUS_PLUS] = ACTIONS(3606), + [anon_sym_sizeof] = ACTIONS(3604), + [anon_sym___alignof__] = ACTIONS(3604), + [anon_sym___alignof] = ACTIONS(3604), + [anon_sym__alignof] = ACTIONS(3604), + [anon_sym_alignof] = ACTIONS(3604), + [anon_sym__Alignof] = ACTIONS(3604), + [anon_sym_offsetof] = ACTIONS(3604), + [anon_sym__Generic] = ACTIONS(3604), + [anon_sym_typename] = ACTIONS(3604), + [anon_sym_asm] = ACTIONS(3604), + [anon_sym___asm__] = ACTIONS(3604), + [anon_sym___asm] = ACTIONS(3604), + [sym_number_literal] = ACTIONS(3606), + [anon_sym_L_SQUOTE] = ACTIONS(3606), + [anon_sym_u_SQUOTE] = ACTIONS(3606), + [anon_sym_U_SQUOTE] = ACTIONS(3606), + [anon_sym_u8_SQUOTE] = ACTIONS(3606), + [anon_sym_SQUOTE] = ACTIONS(3606), + [anon_sym_L_DQUOTE] = ACTIONS(3606), + [anon_sym_u_DQUOTE] = ACTIONS(3606), + [anon_sym_U_DQUOTE] = ACTIONS(3606), + [anon_sym_u8_DQUOTE] = ACTIONS(3606), + [anon_sym_DQUOTE] = ACTIONS(3606), + [sym_true] = ACTIONS(3604), + [sym_false] = ACTIONS(3604), + [anon_sym_NULL] = ACTIONS(3604), + [anon_sym_nullptr] = ACTIONS(3604), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3604), + [anon_sym_decltype] = ACTIONS(3604), + [anon_sym_explicit] = ACTIONS(3604), + [anon_sym_export] = ACTIONS(3604), + [anon_sym_module] = ACTIONS(3604), + [anon_sym_import] = ACTIONS(3604), + [anon_sym_template] = ACTIONS(3604), + [anon_sym_operator] = ACTIONS(3604), + [anon_sym_try] = ACTIONS(3604), + [anon_sym_delete] = ACTIONS(3604), + [anon_sym_throw] = ACTIONS(3604), + [anon_sym_namespace] = ACTIONS(3604), + [anon_sym_static_assert] = ACTIONS(3604), + [anon_sym_concept] = ACTIONS(3604), + [anon_sym_co_return] = ACTIONS(3604), + [anon_sym_co_yield] = ACTIONS(3604), + [anon_sym_R_DQUOTE] = ACTIONS(3606), + [anon_sym_LR_DQUOTE] = ACTIONS(3606), + [anon_sym_uR_DQUOTE] = ACTIONS(3606), + [anon_sym_UR_DQUOTE] = ACTIONS(3606), + [anon_sym_u8R_DQUOTE] = ACTIONS(3606), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(3604), + [anon_sym_requires] = ACTIONS(3604), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(3606), + [sym_this] = ACTIONS(3604), }, - [STATE(615)] = { - [ts_builtin_sym_end] = ACTIONS(3992), - [sym_identifier] = ACTIONS(3990), - [aux_sym_preproc_include_token1] = ACTIONS(3990), - [aux_sym_preproc_def_token1] = ACTIONS(3990), - [aux_sym_preproc_if_token1] = ACTIONS(3990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3990), - [sym_preproc_directive] = ACTIONS(3990), - [anon_sym_LPAREN2] = ACTIONS(3992), - [anon_sym_BANG] = ACTIONS(3992), - [anon_sym_TILDE] = ACTIONS(3992), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3992), - [anon_sym_AMP] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(3992), - [anon_sym___extension__] = ACTIONS(3990), - [anon_sym_typedef] = ACTIONS(3990), - [anon_sym_virtual] = ACTIONS(3990), - [anon_sym_extern] = ACTIONS(3990), - [anon_sym___attribute__] = ACTIONS(3990), - [anon_sym___attribute] = ACTIONS(3990), - [anon_sym_using] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3992), - [anon_sym___declspec] = ACTIONS(3990), - [anon_sym___based] = ACTIONS(3990), - [anon_sym___cdecl] = ACTIONS(3990), - [anon_sym___clrcall] = ACTIONS(3990), - [anon_sym___stdcall] = ACTIONS(3990), - [anon_sym___fastcall] = ACTIONS(3990), - [anon_sym___thiscall] = ACTIONS(3990), - [anon_sym___vectorcall] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(3992), - [anon_sym_signed] = ACTIONS(3990), - [anon_sym_unsigned] = ACTIONS(3990), - [anon_sym_long] = ACTIONS(3990), - [anon_sym_short] = ACTIONS(3990), - [anon_sym_LBRACK] = ACTIONS(3990), - [anon_sym_static] = ACTIONS(3990), - [anon_sym_register] = ACTIONS(3990), - [anon_sym_inline] = ACTIONS(3990), - [anon_sym___inline] = ACTIONS(3990), - [anon_sym___inline__] = ACTIONS(3990), - [anon_sym___forceinline] = ACTIONS(3990), - [anon_sym_thread_local] = ACTIONS(3990), - [anon_sym___thread] = ACTIONS(3990), - [anon_sym_const] = ACTIONS(3990), - [anon_sym_constexpr] = ACTIONS(3990), - [anon_sym_volatile] = ACTIONS(3990), - [anon_sym_restrict] = ACTIONS(3990), - [anon_sym___restrict__] = ACTIONS(3990), - [anon_sym__Atomic] = ACTIONS(3990), - [anon_sym__Noreturn] = ACTIONS(3990), - [anon_sym_noreturn] = ACTIONS(3990), - [anon_sym__Nonnull] = ACTIONS(3990), - [anon_sym_mutable] = ACTIONS(3990), - [anon_sym_constinit] = ACTIONS(3990), - [anon_sym_consteval] = ACTIONS(3990), - [anon_sym_alignas] = ACTIONS(3990), - [anon_sym__Alignas] = ACTIONS(3990), - [sym_primitive_type] = ACTIONS(3990), - [anon_sym_enum] = ACTIONS(3990), - [anon_sym_class] = ACTIONS(3990), - [anon_sym_struct] = ACTIONS(3990), - [anon_sym_union] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_switch] = ACTIONS(3990), - [anon_sym_case] = ACTIONS(3990), - [anon_sym_default] = ACTIONS(3990), - [anon_sym_while] = ACTIONS(3990), - [anon_sym_do] = ACTIONS(3990), - [anon_sym_for] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_goto] = ACTIONS(3990), - [anon_sym_not] = ACTIONS(3990), - [anon_sym_compl] = ACTIONS(3990), - [anon_sym_DASH_DASH] = ACTIONS(3992), - [anon_sym_PLUS_PLUS] = ACTIONS(3992), - [anon_sym_sizeof] = ACTIONS(3990), - [anon_sym___alignof__] = ACTIONS(3990), - [anon_sym___alignof] = ACTIONS(3990), - [anon_sym__alignof] = ACTIONS(3990), - [anon_sym_alignof] = ACTIONS(3990), - [anon_sym__Alignof] = ACTIONS(3990), - [anon_sym_offsetof] = ACTIONS(3990), - [anon_sym__Generic] = ACTIONS(3990), - [anon_sym_typename] = ACTIONS(3990), - [anon_sym_asm] = ACTIONS(3990), - [anon_sym___asm__] = ACTIONS(3990), - [anon_sym___asm] = ACTIONS(3990), - [sym_number_literal] = ACTIONS(3992), - [anon_sym_L_SQUOTE] = ACTIONS(3992), - [anon_sym_u_SQUOTE] = ACTIONS(3992), - [anon_sym_U_SQUOTE] = ACTIONS(3992), - [anon_sym_u8_SQUOTE] = ACTIONS(3992), - [anon_sym_SQUOTE] = ACTIONS(3992), - [anon_sym_L_DQUOTE] = ACTIONS(3992), - [anon_sym_u_DQUOTE] = ACTIONS(3992), - [anon_sym_U_DQUOTE] = ACTIONS(3992), - [anon_sym_u8_DQUOTE] = ACTIONS(3992), - [anon_sym_DQUOTE] = ACTIONS(3992), - [sym_true] = ACTIONS(3990), - [sym_false] = ACTIONS(3990), - [anon_sym_NULL] = ACTIONS(3990), - [anon_sym_nullptr] = ACTIONS(3990), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3990), - [anon_sym_decltype] = ACTIONS(3990), - [anon_sym_explicit] = ACTIONS(3990), - [anon_sym_export] = ACTIONS(3990), - [anon_sym_module] = ACTIONS(3990), - [anon_sym_import] = ACTIONS(3990), - [anon_sym_template] = ACTIONS(3990), - [anon_sym_operator] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_delete] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_namespace] = ACTIONS(3990), - [anon_sym_static_assert] = ACTIONS(3990), - [anon_sym_concept] = ACTIONS(3990), - [anon_sym_co_return] = ACTIONS(3990), - [anon_sym_co_yield] = ACTIONS(3990), - [anon_sym_R_DQUOTE] = ACTIONS(3992), - [anon_sym_LR_DQUOTE] = ACTIONS(3992), - [anon_sym_uR_DQUOTE] = ACTIONS(3992), - [anon_sym_UR_DQUOTE] = ACTIONS(3992), - [anon_sym_u8R_DQUOTE] = ACTIONS(3992), - [anon_sym_co_await] = ACTIONS(3990), - [anon_sym_new] = ACTIONS(3990), - [anon_sym_requires] = ACTIONS(3990), - [anon_sym_CARET_CARET] = ACTIONS(3992), - [anon_sym_LBRACK_COLON] = ACTIONS(3992), - [sym_this] = ACTIONS(3990), + [STATE(557)] = { + [ts_builtin_sym_end] = ACTIONS(3680), + [sym_identifier] = ACTIONS(3678), + [aux_sym_preproc_include_token1] = ACTIONS(3678), + [aux_sym_preproc_def_token1] = ACTIONS(3678), + [aux_sym_preproc_if_token1] = ACTIONS(3678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3678), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3678), + [sym_preproc_directive] = ACTIONS(3678), + [anon_sym_LPAREN2] = ACTIONS(3680), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3680), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym___extension__] = ACTIONS(3678), + [anon_sym_typedef] = ACTIONS(3678), + [anon_sym_virtual] = ACTIONS(3678), + [anon_sym_extern] = ACTIONS(3678), + [anon_sym___attribute__] = ACTIONS(3678), + [anon_sym___attribute] = ACTIONS(3678), + [anon_sym_using] = ACTIONS(3678), + [anon_sym_COLON_COLON] = ACTIONS(3680), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3680), + [anon_sym___declspec] = ACTIONS(3678), + [anon_sym___based] = ACTIONS(3678), + [anon_sym___cdecl] = ACTIONS(3678), + [anon_sym___clrcall] = ACTIONS(3678), + [anon_sym___stdcall] = ACTIONS(3678), + [anon_sym___fastcall] = ACTIONS(3678), + [anon_sym___thiscall] = ACTIONS(3678), + [anon_sym___vectorcall] = ACTIONS(3678), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_signed] = ACTIONS(3678), + [anon_sym_unsigned] = ACTIONS(3678), + [anon_sym_long] = ACTIONS(3678), + [anon_sym_short] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_static] = ACTIONS(3678), + [anon_sym_register] = ACTIONS(3678), + [anon_sym_inline] = ACTIONS(3678), + [anon_sym___inline] = ACTIONS(3678), + [anon_sym___inline__] = ACTIONS(3678), + [anon_sym___forceinline] = ACTIONS(3678), + [anon_sym_thread_local] = ACTIONS(3678), + [anon_sym___thread] = ACTIONS(3678), + [anon_sym_const] = ACTIONS(3678), + [anon_sym_constexpr] = ACTIONS(3678), + [anon_sym_volatile] = ACTIONS(3678), + [anon_sym_restrict] = ACTIONS(3678), + [anon_sym___restrict__] = ACTIONS(3678), + [anon_sym__Atomic] = ACTIONS(3678), + [anon_sym__Noreturn] = ACTIONS(3678), + [anon_sym_noreturn] = ACTIONS(3678), + [anon_sym__Nonnull] = ACTIONS(3678), + [anon_sym_mutable] = ACTIONS(3678), + [anon_sym_constinit] = ACTIONS(3678), + [anon_sym_consteval] = ACTIONS(3678), + [anon_sym_alignas] = ACTIONS(3678), + [anon_sym__Alignas] = ACTIONS(3678), + [sym_primitive_type] = ACTIONS(3678), + [anon_sym_enum] = ACTIONS(3678), + [anon_sym_class] = ACTIONS(3678), + [anon_sym_struct] = ACTIONS(3678), + [anon_sym_union] = ACTIONS(3678), + [anon_sym_if] = ACTIONS(3678), + [anon_sym_else] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_case] = ACTIONS(3678), + [anon_sym_default] = ACTIONS(3678), + [anon_sym_while] = ACTIONS(3678), + [anon_sym_do] = ACTIONS(3678), + [anon_sym_for] = ACTIONS(3678), + [anon_sym_return] = ACTIONS(3678), + [anon_sym_break] = ACTIONS(3678), + [anon_sym_continue] = ACTIONS(3678), + [anon_sym_goto] = ACTIONS(3678), + [anon_sym___try] = ACTIONS(3678), + [anon_sym___leave] = ACTIONS(3678), + [anon_sym_not] = ACTIONS(3678), + [anon_sym_compl] = ACTIONS(3678), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_sizeof] = ACTIONS(3678), + [anon_sym___alignof__] = ACTIONS(3678), + [anon_sym___alignof] = ACTIONS(3678), + [anon_sym__alignof] = ACTIONS(3678), + [anon_sym_alignof] = ACTIONS(3678), + [anon_sym__Alignof] = ACTIONS(3678), + [anon_sym_offsetof] = ACTIONS(3678), + [anon_sym__Generic] = ACTIONS(3678), + [anon_sym_typename] = ACTIONS(3678), + [anon_sym_asm] = ACTIONS(3678), + [anon_sym___asm__] = ACTIONS(3678), + [anon_sym___asm] = ACTIONS(3678), + [sym_number_literal] = ACTIONS(3680), + [anon_sym_L_SQUOTE] = ACTIONS(3680), + [anon_sym_u_SQUOTE] = ACTIONS(3680), + [anon_sym_U_SQUOTE] = ACTIONS(3680), + [anon_sym_u8_SQUOTE] = ACTIONS(3680), + [anon_sym_SQUOTE] = ACTIONS(3680), + [anon_sym_L_DQUOTE] = ACTIONS(3680), + [anon_sym_u_DQUOTE] = ACTIONS(3680), + [anon_sym_U_DQUOTE] = ACTIONS(3680), + [anon_sym_u8_DQUOTE] = ACTIONS(3680), + [anon_sym_DQUOTE] = ACTIONS(3680), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [anon_sym_NULL] = ACTIONS(3678), + [anon_sym_nullptr] = ACTIONS(3678), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3678), + [anon_sym_decltype] = ACTIONS(3678), + [anon_sym_explicit] = ACTIONS(3678), + [anon_sym_export] = ACTIONS(3678), + [anon_sym_module] = ACTIONS(3678), + [anon_sym_import] = ACTIONS(3678), + [anon_sym_template] = ACTIONS(3678), + [anon_sym_operator] = ACTIONS(3678), + [anon_sym_try] = ACTIONS(3678), + [anon_sym_delete] = ACTIONS(3678), + [anon_sym_throw] = ACTIONS(3678), + [anon_sym_namespace] = ACTIONS(3678), + [anon_sym_static_assert] = ACTIONS(3678), + [anon_sym_concept] = ACTIONS(3678), + [anon_sym_co_return] = ACTIONS(3678), + [anon_sym_co_yield] = ACTIONS(3678), + [anon_sym_R_DQUOTE] = ACTIONS(3680), + [anon_sym_LR_DQUOTE] = ACTIONS(3680), + [anon_sym_uR_DQUOTE] = ACTIONS(3680), + [anon_sym_UR_DQUOTE] = ACTIONS(3680), + [anon_sym_u8R_DQUOTE] = ACTIONS(3680), + [anon_sym_co_await] = ACTIONS(3678), + [anon_sym_new] = ACTIONS(3678), + [anon_sym_requires] = ACTIONS(3678), + [anon_sym_CARET_CARET] = ACTIONS(3680), + [anon_sym_LBRACK_COLON] = ACTIONS(3680), + [sym_this] = ACTIONS(3678), }, - [STATE(616)] = { - [ts_builtin_sym_end] = ACTIONS(4380), - [sym_identifier] = ACTIONS(4382), - [aux_sym_preproc_include_token1] = ACTIONS(4382), - [aux_sym_preproc_def_token1] = ACTIONS(4382), - [aux_sym_preproc_if_token1] = ACTIONS(4382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4382), - [sym_preproc_directive] = ACTIONS(4382), - [anon_sym_LPAREN2] = ACTIONS(4380), - [anon_sym_BANG] = ACTIONS(4380), - [anon_sym_TILDE] = ACTIONS(4380), - [anon_sym_DASH] = ACTIONS(4382), - [anon_sym_PLUS] = ACTIONS(4382), - [anon_sym_STAR] = ACTIONS(4380), - [anon_sym_AMP_AMP] = ACTIONS(4380), - [anon_sym_AMP] = ACTIONS(4382), - [anon_sym_SEMI] = ACTIONS(4380), - [anon_sym___extension__] = ACTIONS(4382), - [anon_sym_typedef] = ACTIONS(4382), - [anon_sym_virtual] = ACTIONS(4382), - [anon_sym_extern] = ACTIONS(4382), - [anon_sym___attribute__] = ACTIONS(4382), - [anon_sym___attribute] = ACTIONS(4382), - [anon_sym_using] = ACTIONS(4382), - [anon_sym_COLON_COLON] = ACTIONS(4380), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4380), - [anon_sym___declspec] = ACTIONS(4382), - [anon_sym___based] = ACTIONS(4382), - [anon_sym___cdecl] = ACTIONS(4382), - [anon_sym___clrcall] = ACTIONS(4382), - [anon_sym___stdcall] = ACTIONS(4382), - [anon_sym___fastcall] = ACTIONS(4382), - [anon_sym___thiscall] = ACTIONS(4382), - [anon_sym___vectorcall] = ACTIONS(4382), - [anon_sym_LBRACE] = ACTIONS(4380), - [anon_sym_signed] = ACTIONS(4382), - [anon_sym_unsigned] = ACTIONS(4382), - [anon_sym_long] = ACTIONS(4382), - [anon_sym_short] = ACTIONS(4382), - [anon_sym_LBRACK] = ACTIONS(4382), - [anon_sym_static] = ACTIONS(4382), - [anon_sym_register] = ACTIONS(4382), - [anon_sym_inline] = ACTIONS(4382), - [anon_sym___inline] = ACTIONS(4382), - [anon_sym___inline__] = ACTIONS(4382), - [anon_sym___forceinline] = ACTIONS(4382), - [anon_sym_thread_local] = ACTIONS(4382), - [anon_sym___thread] = ACTIONS(4382), - [anon_sym_const] = ACTIONS(4382), - [anon_sym_constexpr] = ACTIONS(4382), - [anon_sym_volatile] = ACTIONS(4382), - [anon_sym_restrict] = ACTIONS(4382), - [anon_sym___restrict__] = ACTIONS(4382), - [anon_sym__Atomic] = ACTIONS(4382), - [anon_sym__Noreturn] = ACTIONS(4382), - [anon_sym_noreturn] = ACTIONS(4382), - [anon_sym__Nonnull] = ACTIONS(4382), - [anon_sym_mutable] = ACTIONS(4382), - [anon_sym_constinit] = ACTIONS(4382), - [anon_sym_consteval] = ACTIONS(4382), - [anon_sym_alignas] = ACTIONS(4382), - [anon_sym__Alignas] = ACTIONS(4382), - [sym_primitive_type] = ACTIONS(4382), - [anon_sym_enum] = ACTIONS(4382), - [anon_sym_class] = ACTIONS(4382), - [anon_sym_struct] = ACTIONS(4382), - [anon_sym_union] = ACTIONS(4382), - [anon_sym_if] = ACTIONS(4382), - [anon_sym_switch] = ACTIONS(4382), - [anon_sym_case] = ACTIONS(4382), - [anon_sym_default] = ACTIONS(4382), - [anon_sym_while] = ACTIONS(4382), - [anon_sym_do] = ACTIONS(4382), - [anon_sym_for] = ACTIONS(4382), - [anon_sym_return] = ACTIONS(4382), - [anon_sym_break] = ACTIONS(4382), - [anon_sym_continue] = ACTIONS(4382), - [anon_sym_goto] = ACTIONS(4382), - [anon_sym_not] = ACTIONS(4382), - [anon_sym_compl] = ACTIONS(4382), - [anon_sym_DASH_DASH] = ACTIONS(4380), - [anon_sym_PLUS_PLUS] = ACTIONS(4380), - [anon_sym_sizeof] = ACTIONS(4382), - [anon_sym___alignof__] = ACTIONS(4382), - [anon_sym___alignof] = ACTIONS(4382), - [anon_sym__alignof] = ACTIONS(4382), - [anon_sym_alignof] = ACTIONS(4382), - [anon_sym__Alignof] = ACTIONS(4382), - [anon_sym_offsetof] = ACTIONS(4382), - [anon_sym__Generic] = ACTIONS(4382), - [anon_sym_typename] = ACTIONS(4382), - [anon_sym_asm] = ACTIONS(4382), - [anon_sym___asm__] = ACTIONS(4382), - [anon_sym___asm] = ACTIONS(4382), - [sym_number_literal] = ACTIONS(4380), - [anon_sym_L_SQUOTE] = ACTIONS(4380), - [anon_sym_u_SQUOTE] = ACTIONS(4380), - [anon_sym_U_SQUOTE] = ACTIONS(4380), - [anon_sym_u8_SQUOTE] = ACTIONS(4380), - [anon_sym_SQUOTE] = ACTIONS(4380), - [anon_sym_L_DQUOTE] = ACTIONS(4380), - [anon_sym_u_DQUOTE] = ACTIONS(4380), - [anon_sym_U_DQUOTE] = ACTIONS(4380), - [anon_sym_u8_DQUOTE] = ACTIONS(4380), - [anon_sym_DQUOTE] = ACTIONS(4380), - [sym_true] = ACTIONS(4382), - [sym_false] = ACTIONS(4382), - [anon_sym_NULL] = ACTIONS(4382), - [anon_sym_nullptr] = ACTIONS(4382), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4382), - [anon_sym_decltype] = ACTIONS(4382), - [anon_sym_explicit] = ACTIONS(4382), - [anon_sym_export] = ACTIONS(4382), - [anon_sym_module] = ACTIONS(4382), - [anon_sym_import] = ACTIONS(4382), - [anon_sym_template] = ACTIONS(4382), - [anon_sym_operator] = ACTIONS(4382), - [anon_sym_try] = ACTIONS(4382), - [anon_sym_delete] = ACTIONS(4382), - [anon_sym_throw] = ACTIONS(4382), - [anon_sym_namespace] = ACTIONS(4382), - [anon_sym_static_assert] = ACTIONS(4382), - [anon_sym_concept] = ACTIONS(4382), - [anon_sym_co_return] = ACTIONS(4382), - [anon_sym_co_yield] = ACTIONS(4382), - [anon_sym_R_DQUOTE] = ACTIONS(4380), - [anon_sym_LR_DQUOTE] = ACTIONS(4380), - [anon_sym_uR_DQUOTE] = ACTIONS(4380), - [anon_sym_UR_DQUOTE] = ACTIONS(4380), - [anon_sym_u8R_DQUOTE] = ACTIONS(4380), - [anon_sym_co_await] = ACTIONS(4382), - [anon_sym_new] = ACTIONS(4382), - [anon_sym_requires] = ACTIONS(4382), - [anon_sym_CARET_CARET] = ACTIONS(4380), - [anon_sym_LBRACK_COLON] = ACTIONS(4380), - [sym_this] = ACTIONS(4382), + [STATE(558)] = { + [sym_identifier] = ACTIONS(3608), + [aux_sym_preproc_include_token1] = ACTIONS(3608), + [aux_sym_preproc_def_token1] = ACTIONS(3608), + [aux_sym_preproc_if_token1] = ACTIONS(3608), + [aux_sym_preproc_if_token2] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3608), + [sym_preproc_directive] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3610), + [anon_sym_AMP_AMP] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_SEMI] = ACTIONS(3610), + [anon_sym___extension__] = ACTIONS(3608), + [anon_sym_typedef] = ACTIONS(3608), + [anon_sym_virtual] = ACTIONS(3608), + [anon_sym_extern] = ACTIONS(3608), + [anon_sym___attribute__] = ACTIONS(3608), + [anon_sym___attribute] = ACTIONS(3608), + [anon_sym_using] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3610), + [anon_sym___declspec] = ACTIONS(3608), + [anon_sym___based] = ACTIONS(3608), + [anon_sym___cdecl] = ACTIONS(3608), + [anon_sym___clrcall] = ACTIONS(3608), + [anon_sym___stdcall] = ACTIONS(3608), + [anon_sym___fastcall] = ACTIONS(3608), + [anon_sym___thiscall] = ACTIONS(3608), + [anon_sym___vectorcall] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(3610), + [anon_sym_signed] = ACTIONS(3608), + [anon_sym_unsigned] = ACTIONS(3608), + [anon_sym_long] = ACTIONS(3608), + [anon_sym_short] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_static] = ACTIONS(3608), + [anon_sym_register] = ACTIONS(3608), + [anon_sym_inline] = ACTIONS(3608), + [anon_sym___inline] = ACTIONS(3608), + [anon_sym___inline__] = ACTIONS(3608), + [anon_sym___forceinline] = ACTIONS(3608), + [anon_sym_thread_local] = ACTIONS(3608), + [anon_sym___thread] = ACTIONS(3608), + [anon_sym_const] = ACTIONS(3608), + [anon_sym_constexpr] = ACTIONS(3608), + [anon_sym_volatile] = ACTIONS(3608), + [anon_sym_restrict] = ACTIONS(3608), + [anon_sym___restrict__] = ACTIONS(3608), + [anon_sym__Atomic] = ACTIONS(3608), + [anon_sym__Noreturn] = ACTIONS(3608), + [anon_sym_noreturn] = ACTIONS(3608), + [anon_sym__Nonnull] = ACTIONS(3608), + [anon_sym_mutable] = ACTIONS(3608), + [anon_sym_constinit] = ACTIONS(3608), + [anon_sym_consteval] = ACTIONS(3608), + [anon_sym_alignas] = ACTIONS(3608), + [anon_sym__Alignas] = ACTIONS(3608), + [sym_primitive_type] = ACTIONS(3608), + [anon_sym_enum] = ACTIONS(3608), + [anon_sym_class] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3608), + [anon_sym_union] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_else] = ACTIONS(3608), + [anon_sym_switch] = ACTIONS(3608), + [anon_sym_case] = ACTIONS(3608), + [anon_sym_default] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_break] = ACTIONS(3608), + [anon_sym_continue] = ACTIONS(3608), + [anon_sym_goto] = ACTIONS(3608), + [anon_sym___try] = ACTIONS(3608), + [anon_sym___leave] = ACTIONS(3608), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(3610), + [anon_sym_PLUS_PLUS] = ACTIONS(3610), + [anon_sym_sizeof] = ACTIONS(3608), + [anon_sym___alignof__] = ACTIONS(3608), + [anon_sym___alignof] = ACTIONS(3608), + [anon_sym__alignof] = ACTIONS(3608), + [anon_sym_alignof] = ACTIONS(3608), + [anon_sym__Alignof] = ACTIONS(3608), + [anon_sym_offsetof] = ACTIONS(3608), + [anon_sym__Generic] = ACTIONS(3608), + [anon_sym_typename] = ACTIONS(3608), + [anon_sym_asm] = ACTIONS(3608), + [anon_sym___asm__] = ACTIONS(3608), + [anon_sym___asm] = ACTIONS(3608), + [sym_number_literal] = ACTIONS(3610), + [anon_sym_L_SQUOTE] = ACTIONS(3610), + [anon_sym_u_SQUOTE] = ACTIONS(3610), + [anon_sym_U_SQUOTE] = ACTIONS(3610), + [anon_sym_u8_SQUOTE] = ACTIONS(3610), + [anon_sym_SQUOTE] = ACTIONS(3610), + [anon_sym_L_DQUOTE] = ACTIONS(3610), + [anon_sym_u_DQUOTE] = ACTIONS(3610), + [anon_sym_U_DQUOTE] = ACTIONS(3610), + [anon_sym_u8_DQUOTE] = ACTIONS(3610), + [anon_sym_DQUOTE] = ACTIONS(3610), + [sym_true] = ACTIONS(3608), + [sym_false] = ACTIONS(3608), + [anon_sym_NULL] = ACTIONS(3608), + [anon_sym_nullptr] = ACTIONS(3608), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3608), + [anon_sym_decltype] = ACTIONS(3608), + [anon_sym_explicit] = ACTIONS(3608), + [anon_sym_export] = ACTIONS(3608), + [anon_sym_module] = ACTIONS(3608), + [anon_sym_import] = ACTIONS(3608), + [anon_sym_template] = ACTIONS(3608), + [anon_sym_operator] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_delete] = ACTIONS(3608), + [anon_sym_throw] = ACTIONS(3608), + [anon_sym_namespace] = ACTIONS(3608), + [anon_sym_static_assert] = ACTIONS(3608), + [anon_sym_concept] = ACTIONS(3608), + [anon_sym_co_return] = ACTIONS(3608), + [anon_sym_co_yield] = ACTIONS(3608), + [anon_sym_R_DQUOTE] = ACTIONS(3610), + [anon_sym_LR_DQUOTE] = ACTIONS(3610), + [anon_sym_uR_DQUOTE] = ACTIONS(3610), + [anon_sym_UR_DQUOTE] = ACTIONS(3610), + [anon_sym_u8R_DQUOTE] = ACTIONS(3610), + [anon_sym_co_await] = ACTIONS(3608), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_requires] = ACTIONS(3608), + [anon_sym_CARET_CARET] = ACTIONS(3610), + [anon_sym_LBRACK_COLON] = ACTIONS(3610), + [sym_this] = ACTIONS(3608), }, - [STATE(617)] = { - [ts_builtin_sym_end] = ACTIONS(4384), - [sym_identifier] = ACTIONS(4386), - [aux_sym_preproc_include_token1] = ACTIONS(4386), - [aux_sym_preproc_def_token1] = ACTIONS(4386), - [aux_sym_preproc_if_token1] = ACTIONS(4386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4386), - [sym_preproc_directive] = ACTIONS(4386), - [anon_sym_LPAREN2] = ACTIONS(4384), - [anon_sym_BANG] = ACTIONS(4384), - [anon_sym_TILDE] = ACTIONS(4384), - [anon_sym_DASH] = ACTIONS(4386), - [anon_sym_PLUS] = ACTIONS(4386), - [anon_sym_STAR] = ACTIONS(4384), - [anon_sym_AMP_AMP] = ACTIONS(4384), - [anon_sym_AMP] = ACTIONS(4386), - [anon_sym_SEMI] = ACTIONS(4384), - [anon_sym___extension__] = ACTIONS(4386), - [anon_sym_typedef] = ACTIONS(4386), - [anon_sym_virtual] = ACTIONS(4386), - [anon_sym_extern] = ACTIONS(4386), - [anon_sym___attribute__] = ACTIONS(4386), - [anon_sym___attribute] = ACTIONS(4386), - [anon_sym_using] = ACTIONS(4386), - [anon_sym_COLON_COLON] = ACTIONS(4384), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4384), - [anon_sym___declspec] = ACTIONS(4386), - [anon_sym___based] = ACTIONS(4386), - [anon_sym___cdecl] = ACTIONS(4386), - [anon_sym___clrcall] = ACTIONS(4386), - [anon_sym___stdcall] = ACTIONS(4386), - [anon_sym___fastcall] = ACTIONS(4386), - [anon_sym___thiscall] = ACTIONS(4386), - [anon_sym___vectorcall] = ACTIONS(4386), - [anon_sym_LBRACE] = ACTIONS(4384), - [anon_sym_signed] = ACTIONS(4386), - [anon_sym_unsigned] = ACTIONS(4386), - [anon_sym_long] = ACTIONS(4386), - [anon_sym_short] = ACTIONS(4386), - [anon_sym_LBRACK] = ACTIONS(4386), - [anon_sym_static] = ACTIONS(4386), - [anon_sym_register] = ACTIONS(4386), - [anon_sym_inline] = ACTIONS(4386), - [anon_sym___inline] = ACTIONS(4386), - [anon_sym___inline__] = ACTIONS(4386), - [anon_sym___forceinline] = ACTIONS(4386), - [anon_sym_thread_local] = ACTIONS(4386), - [anon_sym___thread] = ACTIONS(4386), - [anon_sym_const] = ACTIONS(4386), - [anon_sym_constexpr] = ACTIONS(4386), - [anon_sym_volatile] = ACTIONS(4386), - [anon_sym_restrict] = ACTIONS(4386), - [anon_sym___restrict__] = ACTIONS(4386), - [anon_sym__Atomic] = ACTIONS(4386), - [anon_sym__Noreturn] = ACTIONS(4386), - [anon_sym_noreturn] = ACTIONS(4386), - [anon_sym__Nonnull] = ACTIONS(4386), - [anon_sym_mutable] = ACTIONS(4386), - [anon_sym_constinit] = ACTIONS(4386), - [anon_sym_consteval] = ACTIONS(4386), - [anon_sym_alignas] = ACTIONS(4386), - [anon_sym__Alignas] = ACTIONS(4386), - [sym_primitive_type] = ACTIONS(4386), - [anon_sym_enum] = ACTIONS(4386), - [anon_sym_class] = ACTIONS(4386), - [anon_sym_struct] = ACTIONS(4386), - [anon_sym_union] = ACTIONS(4386), - [anon_sym_if] = ACTIONS(4386), - [anon_sym_switch] = ACTIONS(4386), - [anon_sym_case] = ACTIONS(4386), - [anon_sym_default] = ACTIONS(4386), - [anon_sym_while] = ACTIONS(4386), - [anon_sym_do] = ACTIONS(4386), - [anon_sym_for] = ACTIONS(4386), - [anon_sym_return] = ACTIONS(4386), - [anon_sym_break] = ACTIONS(4386), - [anon_sym_continue] = ACTIONS(4386), - [anon_sym_goto] = ACTIONS(4386), - [anon_sym_not] = ACTIONS(4386), - [anon_sym_compl] = ACTIONS(4386), - [anon_sym_DASH_DASH] = ACTIONS(4384), - [anon_sym_PLUS_PLUS] = ACTIONS(4384), - [anon_sym_sizeof] = ACTIONS(4386), - [anon_sym___alignof__] = ACTIONS(4386), - [anon_sym___alignof] = ACTIONS(4386), - [anon_sym__alignof] = ACTIONS(4386), - [anon_sym_alignof] = ACTIONS(4386), - [anon_sym__Alignof] = ACTIONS(4386), - [anon_sym_offsetof] = ACTIONS(4386), - [anon_sym__Generic] = ACTIONS(4386), - [anon_sym_typename] = ACTIONS(4386), - [anon_sym_asm] = ACTIONS(4386), - [anon_sym___asm__] = ACTIONS(4386), - [anon_sym___asm] = ACTIONS(4386), - [sym_number_literal] = ACTIONS(4384), - [anon_sym_L_SQUOTE] = ACTIONS(4384), - [anon_sym_u_SQUOTE] = ACTIONS(4384), - [anon_sym_U_SQUOTE] = ACTIONS(4384), - [anon_sym_u8_SQUOTE] = ACTIONS(4384), - [anon_sym_SQUOTE] = ACTIONS(4384), - [anon_sym_L_DQUOTE] = ACTIONS(4384), - [anon_sym_u_DQUOTE] = ACTIONS(4384), - [anon_sym_U_DQUOTE] = ACTIONS(4384), - [anon_sym_u8_DQUOTE] = ACTIONS(4384), - [anon_sym_DQUOTE] = ACTIONS(4384), - [sym_true] = ACTIONS(4386), - [sym_false] = ACTIONS(4386), - [anon_sym_NULL] = ACTIONS(4386), - [anon_sym_nullptr] = ACTIONS(4386), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4386), - [anon_sym_decltype] = ACTIONS(4386), - [anon_sym_explicit] = ACTIONS(4386), - [anon_sym_export] = ACTIONS(4386), - [anon_sym_module] = ACTIONS(4386), - [anon_sym_import] = ACTIONS(4386), - [anon_sym_template] = ACTIONS(4386), - [anon_sym_operator] = ACTIONS(4386), - [anon_sym_try] = ACTIONS(4386), - [anon_sym_delete] = ACTIONS(4386), - [anon_sym_throw] = ACTIONS(4386), - [anon_sym_namespace] = ACTIONS(4386), - [anon_sym_static_assert] = ACTIONS(4386), - [anon_sym_concept] = ACTIONS(4386), - [anon_sym_co_return] = ACTIONS(4386), - [anon_sym_co_yield] = ACTIONS(4386), - [anon_sym_R_DQUOTE] = ACTIONS(4384), - [anon_sym_LR_DQUOTE] = ACTIONS(4384), - [anon_sym_uR_DQUOTE] = ACTIONS(4384), - [anon_sym_UR_DQUOTE] = ACTIONS(4384), - [anon_sym_u8R_DQUOTE] = ACTIONS(4384), - [anon_sym_co_await] = ACTIONS(4386), - [anon_sym_new] = ACTIONS(4386), - [anon_sym_requires] = ACTIONS(4386), - [anon_sym_CARET_CARET] = ACTIONS(4384), - [anon_sym_LBRACK_COLON] = ACTIONS(4384), - [sym_this] = ACTIONS(4386), + [STATE(559)] = { + [ts_builtin_sym_end] = ACTIONS(3570), + [sym_identifier] = ACTIONS(3568), + [aux_sym_preproc_include_token1] = ACTIONS(3568), + [aux_sym_preproc_def_token1] = ACTIONS(3568), + [aux_sym_preproc_if_token1] = ACTIONS(3568), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3568), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3568), + [sym_preproc_directive] = ACTIONS(3568), + [anon_sym_LPAREN2] = ACTIONS(3570), + [anon_sym_BANG] = ACTIONS(3570), + [anon_sym_TILDE] = ACTIONS(3570), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_STAR] = ACTIONS(3570), + [anon_sym_AMP_AMP] = ACTIONS(3570), + [anon_sym_AMP] = ACTIONS(3568), + [anon_sym_SEMI] = ACTIONS(3570), + [anon_sym___extension__] = ACTIONS(3568), + [anon_sym_typedef] = ACTIONS(3568), + [anon_sym_virtual] = ACTIONS(3568), + [anon_sym_extern] = ACTIONS(3568), + [anon_sym___attribute__] = ACTIONS(3568), + [anon_sym___attribute] = ACTIONS(3568), + [anon_sym_using] = ACTIONS(3568), + [anon_sym_COLON_COLON] = ACTIONS(3570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3570), + [anon_sym___declspec] = ACTIONS(3568), + [anon_sym___based] = ACTIONS(3568), + [anon_sym___cdecl] = ACTIONS(3568), + [anon_sym___clrcall] = ACTIONS(3568), + [anon_sym___stdcall] = ACTIONS(3568), + [anon_sym___fastcall] = ACTIONS(3568), + [anon_sym___thiscall] = ACTIONS(3568), + [anon_sym___vectorcall] = ACTIONS(3568), + [anon_sym_LBRACE] = ACTIONS(3570), + [anon_sym_signed] = ACTIONS(3568), + [anon_sym_unsigned] = ACTIONS(3568), + [anon_sym_long] = ACTIONS(3568), + [anon_sym_short] = ACTIONS(3568), + [anon_sym_LBRACK] = ACTIONS(3568), + [anon_sym_static] = ACTIONS(3568), + [anon_sym_register] = ACTIONS(3568), + [anon_sym_inline] = ACTIONS(3568), + [anon_sym___inline] = ACTIONS(3568), + [anon_sym___inline__] = ACTIONS(3568), + [anon_sym___forceinline] = ACTIONS(3568), + [anon_sym_thread_local] = ACTIONS(3568), + [anon_sym___thread] = ACTIONS(3568), + [anon_sym_const] = ACTIONS(3568), + [anon_sym_constexpr] = ACTIONS(3568), + [anon_sym_volatile] = ACTIONS(3568), + [anon_sym_restrict] = ACTIONS(3568), + [anon_sym___restrict__] = ACTIONS(3568), + [anon_sym__Atomic] = ACTIONS(3568), + [anon_sym__Noreturn] = ACTIONS(3568), + [anon_sym_noreturn] = ACTIONS(3568), + [anon_sym__Nonnull] = ACTIONS(3568), + [anon_sym_mutable] = ACTIONS(3568), + [anon_sym_constinit] = ACTIONS(3568), + [anon_sym_consteval] = ACTIONS(3568), + [anon_sym_alignas] = ACTIONS(3568), + [anon_sym__Alignas] = ACTIONS(3568), + [sym_primitive_type] = ACTIONS(3568), + [anon_sym_enum] = ACTIONS(3568), + [anon_sym_class] = ACTIONS(3568), + [anon_sym_struct] = ACTIONS(3568), + [anon_sym_union] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_else] = ACTIONS(3568), + [anon_sym_switch] = ACTIONS(3568), + [anon_sym_case] = ACTIONS(3568), + [anon_sym_default] = ACTIONS(3568), + [anon_sym_while] = ACTIONS(3568), + [anon_sym_do] = ACTIONS(3568), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_break] = ACTIONS(3568), + [anon_sym_continue] = ACTIONS(3568), + [anon_sym_goto] = ACTIONS(3568), + [anon_sym___try] = ACTIONS(3568), + [anon_sym___leave] = ACTIONS(3568), + [anon_sym_not] = ACTIONS(3568), + [anon_sym_compl] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3570), + [anon_sym_PLUS_PLUS] = ACTIONS(3570), + [anon_sym_sizeof] = ACTIONS(3568), + [anon_sym___alignof__] = ACTIONS(3568), + [anon_sym___alignof] = ACTIONS(3568), + [anon_sym__alignof] = ACTIONS(3568), + [anon_sym_alignof] = ACTIONS(3568), + [anon_sym__Alignof] = ACTIONS(3568), + [anon_sym_offsetof] = ACTIONS(3568), + [anon_sym__Generic] = ACTIONS(3568), + [anon_sym_typename] = ACTIONS(3568), + [anon_sym_asm] = ACTIONS(3568), + [anon_sym___asm__] = ACTIONS(3568), + [anon_sym___asm] = ACTIONS(3568), + [sym_number_literal] = ACTIONS(3570), + [anon_sym_L_SQUOTE] = ACTIONS(3570), + [anon_sym_u_SQUOTE] = ACTIONS(3570), + [anon_sym_U_SQUOTE] = ACTIONS(3570), + [anon_sym_u8_SQUOTE] = ACTIONS(3570), + [anon_sym_SQUOTE] = ACTIONS(3570), + [anon_sym_L_DQUOTE] = ACTIONS(3570), + [anon_sym_u_DQUOTE] = ACTIONS(3570), + [anon_sym_U_DQUOTE] = ACTIONS(3570), + [anon_sym_u8_DQUOTE] = ACTIONS(3570), + [anon_sym_DQUOTE] = ACTIONS(3570), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [anon_sym_NULL] = ACTIONS(3568), + [anon_sym_nullptr] = ACTIONS(3568), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3568), + [anon_sym_decltype] = ACTIONS(3568), + [anon_sym_explicit] = ACTIONS(3568), + [anon_sym_export] = ACTIONS(3568), + [anon_sym_module] = ACTIONS(3568), + [anon_sym_import] = ACTIONS(3568), + [anon_sym_template] = ACTIONS(3568), + [anon_sym_operator] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3568), + [anon_sym_delete] = ACTIONS(3568), + [anon_sym_throw] = ACTIONS(3568), + [anon_sym_namespace] = ACTIONS(3568), + [anon_sym_static_assert] = ACTIONS(3568), + [anon_sym_concept] = ACTIONS(3568), + [anon_sym_co_return] = ACTIONS(3568), + [anon_sym_co_yield] = ACTIONS(3568), + [anon_sym_R_DQUOTE] = ACTIONS(3570), + [anon_sym_LR_DQUOTE] = ACTIONS(3570), + [anon_sym_uR_DQUOTE] = ACTIONS(3570), + [anon_sym_UR_DQUOTE] = ACTIONS(3570), + [anon_sym_u8R_DQUOTE] = ACTIONS(3570), + [anon_sym_co_await] = ACTIONS(3568), + [anon_sym_new] = ACTIONS(3568), + [anon_sym_requires] = ACTIONS(3568), + [anon_sym_CARET_CARET] = ACTIONS(3570), + [anon_sym_LBRACK_COLON] = ACTIONS(3570), + [sym_this] = ACTIONS(3568), }, - [STATE(618)] = { - [ts_builtin_sym_end] = ACTIONS(4388), - [sym_identifier] = ACTIONS(4390), - [aux_sym_preproc_include_token1] = ACTIONS(4390), - [aux_sym_preproc_def_token1] = ACTIONS(4390), - [aux_sym_preproc_if_token1] = ACTIONS(4390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4390), - [sym_preproc_directive] = ACTIONS(4390), - [anon_sym_LPAREN2] = ACTIONS(4388), - [anon_sym_BANG] = ACTIONS(4388), - [anon_sym_TILDE] = ACTIONS(4388), - [anon_sym_DASH] = ACTIONS(4390), - [anon_sym_PLUS] = ACTIONS(4390), - [anon_sym_STAR] = ACTIONS(4388), - [anon_sym_AMP_AMP] = ACTIONS(4388), - [anon_sym_AMP] = ACTIONS(4390), - [anon_sym_SEMI] = ACTIONS(4388), - [anon_sym___extension__] = ACTIONS(4390), - [anon_sym_typedef] = ACTIONS(4390), - [anon_sym_virtual] = ACTIONS(4390), - [anon_sym_extern] = ACTIONS(4390), - [anon_sym___attribute__] = ACTIONS(4390), - [anon_sym___attribute] = ACTIONS(4390), - [anon_sym_using] = ACTIONS(4390), - [anon_sym_COLON_COLON] = ACTIONS(4388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4388), - [anon_sym___declspec] = ACTIONS(4390), - [anon_sym___based] = ACTIONS(4390), - [anon_sym___cdecl] = ACTIONS(4390), - [anon_sym___clrcall] = ACTIONS(4390), - [anon_sym___stdcall] = ACTIONS(4390), - [anon_sym___fastcall] = ACTIONS(4390), - [anon_sym___thiscall] = ACTIONS(4390), - [anon_sym___vectorcall] = ACTIONS(4390), - [anon_sym_LBRACE] = ACTIONS(4388), - [anon_sym_signed] = ACTIONS(4390), - [anon_sym_unsigned] = ACTIONS(4390), - [anon_sym_long] = ACTIONS(4390), - [anon_sym_short] = ACTIONS(4390), - [anon_sym_LBRACK] = ACTIONS(4390), - [anon_sym_static] = ACTIONS(4390), - [anon_sym_register] = ACTIONS(4390), - [anon_sym_inline] = ACTIONS(4390), - [anon_sym___inline] = ACTIONS(4390), - [anon_sym___inline__] = ACTIONS(4390), - [anon_sym___forceinline] = ACTIONS(4390), - [anon_sym_thread_local] = ACTIONS(4390), - [anon_sym___thread] = ACTIONS(4390), - [anon_sym_const] = ACTIONS(4390), - [anon_sym_constexpr] = ACTIONS(4390), - [anon_sym_volatile] = ACTIONS(4390), - [anon_sym_restrict] = ACTIONS(4390), - [anon_sym___restrict__] = ACTIONS(4390), - [anon_sym__Atomic] = ACTIONS(4390), - [anon_sym__Noreturn] = ACTIONS(4390), - [anon_sym_noreturn] = ACTIONS(4390), - [anon_sym__Nonnull] = ACTIONS(4390), - [anon_sym_mutable] = ACTIONS(4390), - [anon_sym_constinit] = ACTIONS(4390), - [anon_sym_consteval] = ACTIONS(4390), - [anon_sym_alignas] = ACTIONS(4390), - [anon_sym__Alignas] = ACTIONS(4390), - [sym_primitive_type] = ACTIONS(4390), - [anon_sym_enum] = ACTIONS(4390), - [anon_sym_class] = ACTIONS(4390), - [anon_sym_struct] = ACTIONS(4390), - [anon_sym_union] = ACTIONS(4390), - [anon_sym_if] = ACTIONS(4390), - [anon_sym_switch] = ACTIONS(4390), - [anon_sym_case] = ACTIONS(4390), - [anon_sym_default] = ACTIONS(4390), - [anon_sym_while] = ACTIONS(4390), - [anon_sym_do] = ACTIONS(4390), - [anon_sym_for] = ACTIONS(4390), - [anon_sym_return] = ACTIONS(4390), - [anon_sym_break] = ACTIONS(4390), - [anon_sym_continue] = ACTIONS(4390), - [anon_sym_goto] = ACTIONS(4390), - [anon_sym_not] = ACTIONS(4390), - [anon_sym_compl] = ACTIONS(4390), - [anon_sym_DASH_DASH] = ACTIONS(4388), - [anon_sym_PLUS_PLUS] = ACTIONS(4388), - [anon_sym_sizeof] = ACTIONS(4390), - [anon_sym___alignof__] = ACTIONS(4390), - [anon_sym___alignof] = ACTIONS(4390), - [anon_sym__alignof] = ACTIONS(4390), - [anon_sym_alignof] = ACTIONS(4390), - [anon_sym__Alignof] = ACTIONS(4390), - [anon_sym_offsetof] = ACTIONS(4390), - [anon_sym__Generic] = ACTIONS(4390), - [anon_sym_typename] = ACTIONS(4390), - [anon_sym_asm] = ACTIONS(4390), - [anon_sym___asm__] = ACTIONS(4390), - [anon_sym___asm] = ACTIONS(4390), - [sym_number_literal] = ACTIONS(4388), - [anon_sym_L_SQUOTE] = ACTIONS(4388), - [anon_sym_u_SQUOTE] = ACTIONS(4388), - [anon_sym_U_SQUOTE] = ACTIONS(4388), - [anon_sym_u8_SQUOTE] = ACTIONS(4388), - [anon_sym_SQUOTE] = ACTIONS(4388), - [anon_sym_L_DQUOTE] = ACTIONS(4388), - [anon_sym_u_DQUOTE] = ACTIONS(4388), - [anon_sym_U_DQUOTE] = ACTIONS(4388), - [anon_sym_u8_DQUOTE] = ACTIONS(4388), - [anon_sym_DQUOTE] = ACTIONS(4388), - [sym_true] = ACTIONS(4390), - [sym_false] = ACTIONS(4390), - [anon_sym_NULL] = ACTIONS(4390), - [anon_sym_nullptr] = ACTIONS(4390), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4390), - [anon_sym_decltype] = ACTIONS(4390), - [anon_sym_explicit] = ACTIONS(4390), - [anon_sym_export] = ACTIONS(4390), - [anon_sym_module] = ACTIONS(4390), - [anon_sym_import] = ACTIONS(4390), - [anon_sym_template] = ACTIONS(4390), - [anon_sym_operator] = ACTIONS(4390), - [anon_sym_try] = ACTIONS(4390), - [anon_sym_delete] = ACTIONS(4390), - [anon_sym_throw] = ACTIONS(4390), - [anon_sym_namespace] = ACTIONS(4390), - [anon_sym_static_assert] = ACTIONS(4390), - [anon_sym_concept] = ACTIONS(4390), - [anon_sym_co_return] = ACTIONS(4390), - [anon_sym_co_yield] = ACTIONS(4390), - [anon_sym_R_DQUOTE] = ACTIONS(4388), - [anon_sym_LR_DQUOTE] = ACTIONS(4388), - [anon_sym_uR_DQUOTE] = ACTIONS(4388), - [anon_sym_UR_DQUOTE] = ACTIONS(4388), - [anon_sym_u8R_DQUOTE] = ACTIONS(4388), - [anon_sym_co_await] = ACTIONS(4390), - [anon_sym_new] = ACTIONS(4390), - [anon_sym_requires] = ACTIONS(4390), - [anon_sym_CARET_CARET] = ACTIONS(4388), - [anon_sym_LBRACK_COLON] = ACTIONS(4388), - [sym_this] = ACTIONS(4390), - }, - [STATE(619)] = { - [ts_builtin_sym_end] = ACTIONS(4392), - [sym_identifier] = ACTIONS(4394), - [aux_sym_preproc_include_token1] = ACTIONS(4394), - [aux_sym_preproc_def_token1] = ACTIONS(4394), - [aux_sym_preproc_if_token1] = ACTIONS(4394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4394), - [sym_preproc_directive] = ACTIONS(4394), - [anon_sym_LPAREN2] = ACTIONS(4392), - [anon_sym_BANG] = ACTIONS(4392), - [anon_sym_TILDE] = ACTIONS(4392), - [anon_sym_DASH] = ACTIONS(4394), - [anon_sym_PLUS] = ACTIONS(4394), - [anon_sym_STAR] = ACTIONS(4392), - [anon_sym_AMP_AMP] = ACTIONS(4392), - [anon_sym_AMP] = ACTIONS(4394), - [anon_sym_SEMI] = ACTIONS(4392), - [anon_sym___extension__] = ACTIONS(4394), - [anon_sym_typedef] = ACTIONS(4394), - [anon_sym_virtual] = ACTIONS(4394), - [anon_sym_extern] = ACTIONS(4394), - [anon_sym___attribute__] = ACTIONS(4394), - [anon_sym___attribute] = ACTIONS(4394), - [anon_sym_using] = ACTIONS(4394), - [anon_sym_COLON_COLON] = ACTIONS(4392), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4392), - [anon_sym___declspec] = ACTIONS(4394), - [anon_sym___based] = ACTIONS(4394), - [anon_sym___cdecl] = ACTIONS(4394), - [anon_sym___clrcall] = ACTIONS(4394), - [anon_sym___stdcall] = ACTIONS(4394), - [anon_sym___fastcall] = ACTIONS(4394), - [anon_sym___thiscall] = ACTIONS(4394), - [anon_sym___vectorcall] = ACTIONS(4394), - [anon_sym_LBRACE] = ACTIONS(4392), - [anon_sym_signed] = ACTIONS(4394), - [anon_sym_unsigned] = ACTIONS(4394), - [anon_sym_long] = ACTIONS(4394), - [anon_sym_short] = ACTIONS(4394), - [anon_sym_LBRACK] = ACTIONS(4394), - [anon_sym_static] = ACTIONS(4394), - [anon_sym_register] = ACTIONS(4394), - [anon_sym_inline] = ACTIONS(4394), - [anon_sym___inline] = ACTIONS(4394), - [anon_sym___inline__] = ACTIONS(4394), - [anon_sym___forceinline] = ACTIONS(4394), - [anon_sym_thread_local] = ACTIONS(4394), - [anon_sym___thread] = ACTIONS(4394), - [anon_sym_const] = ACTIONS(4394), - [anon_sym_constexpr] = ACTIONS(4394), - [anon_sym_volatile] = ACTIONS(4394), - [anon_sym_restrict] = ACTIONS(4394), - [anon_sym___restrict__] = ACTIONS(4394), - [anon_sym__Atomic] = ACTIONS(4394), - [anon_sym__Noreturn] = ACTIONS(4394), - [anon_sym_noreturn] = ACTIONS(4394), - [anon_sym__Nonnull] = ACTIONS(4394), - [anon_sym_mutable] = ACTIONS(4394), - [anon_sym_constinit] = ACTIONS(4394), - [anon_sym_consteval] = ACTIONS(4394), - [anon_sym_alignas] = ACTIONS(4394), - [anon_sym__Alignas] = ACTIONS(4394), - [sym_primitive_type] = ACTIONS(4394), - [anon_sym_enum] = ACTIONS(4394), - [anon_sym_class] = ACTIONS(4394), - [anon_sym_struct] = ACTIONS(4394), - [anon_sym_union] = ACTIONS(4394), - [anon_sym_if] = ACTIONS(4394), - [anon_sym_switch] = ACTIONS(4394), - [anon_sym_case] = ACTIONS(4394), - [anon_sym_default] = ACTIONS(4394), - [anon_sym_while] = ACTIONS(4394), - [anon_sym_do] = ACTIONS(4394), - [anon_sym_for] = ACTIONS(4394), - [anon_sym_return] = ACTIONS(4394), - [anon_sym_break] = ACTIONS(4394), - [anon_sym_continue] = ACTIONS(4394), - [anon_sym_goto] = ACTIONS(4394), - [anon_sym_not] = ACTIONS(4394), - [anon_sym_compl] = ACTIONS(4394), - [anon_sym_DASH_DASH] = ACTIONS(4392), - [anon_sym_PLUS_PLUS] = ACTIONS(4392), - [anon_sym_sizeof] = ACTIONS(4394), - [anon_sym___alignof__] = ACTIONS(4394), - [anon_sym___alignof] = ACTIONS(4394), - [anon_sym__alignof] = ACTIONS(4394), - [anon_sym_alignof] = ACTIONS(4394), - [anon_sym__Alignof] = ACTIONS(4394), - [anon_sym_offsetof] = ACTIONS(4394), - [anon_sym__Generic] = ACTIONS(4394), - [anon_sym_typename] = ACTIONS(4394), - [anon_sym_asm] = ACTIONS(4394), - [anon_sym___asm__] = ACTIONS(4394), - [anon_sym___asm] = ACTIONS(4394), - [sym_number_literal] = ACTIONS(4392), - [anon_sym_L_SQUOTE] = ACTIONS(4392), - [anon_sym_u_SQUOTE] = ACTIONS(4392), - [anon_sym_U_SQUOTE] = ACTIONS(4392), - [anon_sym_u8_SQUOTE] = ACTIONS(4392), - [anon_sym_SQUOTE] = ACTIONS(4392), - [anon_sym_L_DQUOTE] = ACTIONS(4392), - [anon_sym_u_DQUOTE] = ACTIONS(4392), - [anon_sym_U_DQUOTE] = ACTIONS(4392), - [anon_sym_u8_DQUOTE] = ACTIONS(4392), - [anon_sym_DQUOTE] = ACTIONS(4392), - [sym_true] = ACTIONS(4394), - [sym_false] = ACTIONS(4394), - [anon_sym_NULL] = ACTIONS(4394), - [anon_sym_nullptr] = ACTIONS(4394), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4394), - [anon_sym_decltype] = ACTIONS(4394), - [anon_sym_explicit] = ACTIONS(4394), - [anon_sym_export] = ACTIONS(4394), - [anon_sym_module] = ACTIONS(4394), - [anon_sym_import] = ACTIONS(4394), - [anon_sym_template] = ACTIONS(4394), - [anon_sym_operator] = ACTIONS(4394), - [anon_sym_try] = ACTIONS(4394), - [anon_sym_delete] = ACTIONS(4394), - [anon_sym_throw] = ACTIONS(4394), - [anon_sym_namespace] = ACTIONS(4394), - [anon_sym_static_assert] = ACTIONS(4394), - [anon_sym_concept] = ACTIONS(4394), - [anon_sym_co_return] = ACTIONS(4394), - [anon_sym_co_yield] = ACTIONS(4394), - [anon_sym_R_DQUOTE] = ACTIONS(4392), - [anon_sym_LR_DQUOTE] = ACTIONS(4392), - [anon_sym_uR_DQUOTE] = ACTIONS(4392), - [anon_sym_UR_DQUOTE] = ACTIONS(4392), - [anon_sym_u8R_DQUOTE] = ACTIONS(4392), - [anon_sym_co_await] = ACTIONS(4394), - [anon_sym_new] = ACTIONS(4394), - [anon_sym_requires] = ACTIONS(4394), - [anon_sym_CARET_CARET] = ACTIONS(4392), - [anon_sym_LBRACK_COLON] = ACTIONS(4392), - [sym_this] = ACTIONS(4394), - }, - [STATE(620)] = { - [ts_builtin_sym_end] = ACTIONS(4396), - [sym_identifier] = ACTIONS(4398), - [aux_sym_preproc_include_token1] = ACTIONS(4398), - [aux_sym_preproc_def_token1] = ACTIONS(4398), - [aux_sym_preproc_if_token1] = ACTIONS(4398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4398), - [sym_preproc_directive] = ACTIONS(4398), - [anon_sym_LPAREN2] = ACTIONS(4396), - [anon_sym_BANG] = ACTIONS(4396), - [anon_sym_TILDE] = ACTIONS(4396), - [anon_sym_DASH] = ACTIONS(4398), - [anon_sym_PLUS] = ACTIONS(4398), - [anon_sym_STAR] = ACTIONS(4396), - [anon_sym_AMP_AMP] = ACTIONS(4396), - [anon_sym_AMP] = ACTIONS(4398), - [anon_sym_SEMI] = ACTIONS(4396), - [anon_sym___extension__] = ACTIONS(4398), - [anon_sym_typedef] = ACTIONS(4398), - [anon_sym_virtual] = ACTIONS(4398), - [anon_sym_extern] = ACTIONS(4398), - [anon_sym___attribute__] = ACTIONS(4398), - [anon_sym___attribute] = ACTIONS(4398), - [anon_sym_using] = ACTIONS(4398), - [anon_sym_COLON_COLON] = ACTIONS(4396), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4396), - [anon_sym___declspec] = ACTIONS(4398), - [anon_sym___based] = ACTIONS(4398), - [anon_sym___cdecl] = ACTIONS(4398), - [anon_sym___clrcall] = ACTIONS(4398), - [anon_sym___stdcall] = ACTIONS(4398), - [anon_sym___fastcall] = ACTIONS(4398), - [anon_sym___thiscall] = ACTIONS(4398), - [anon_sym___vectorcall] = ACTIONS(4398), - [anon_sym_LBRACE] = ACTIONS(4396), - [anon_sym_signed] = ACTIONS(4398), - [anon_sym_unsigned] = ACTIONS(4398), - [anon_sym_long] = ACTIONS(4398), - [anon_sym_short] = ACTIONS(4398), - [anon_sym_LBRACK] = ACTIONS(4398), - [anon_sym_static] = ACTIONS(4398), - [anon_sym_register] = ACTIONS(4398), - [anon_sym_inline] = ACTIONS(4398), - [anon_sym___inline] = ACTIONS(4398), - [anon_sym___inline__] = ACTIONS(4398), - [anon_sym___forceinline] = ACTIONS(4398), - [anon_sym_thread_local] = ACTIONS(4398), - [anon_sym___thread] = ACTIONS(4398), - [anon_sym_const] = ACTIONS(4398), - [anon_sym_constexpr] = ACTIONS(4398), - [anon_sym_volatile] = ACTIONS(4398), - [anon_sym_restrict] = ACTIONS(4398), - [anon_sym___restrict__] = ACTIONS(4398), - [anon_sym__Atomic] = ACTIONS(4398), - [anon_sym__Noreturn] = ACTIONS(4398), - [anon_sym_noreturn] = ACTIONS(4398), - [anon_sym__Nonnull] = ACTIONS(4398), - [anon_sym_mutable] = ACTIONS(4398), - [anon_sym_constinit] = ACTIONS(4398), - [anon_sym_consteval] = ACTIONS(4398), - [anon_sym_alignas] = ACTIONS(4398), - [anon_sym__Alignas] = ACTIONS(4398), - [sym_primitive_type] = ACTIONS(4398), - [anon_sym_enum] = ACTIONS(4398), - [anon_sym_class] = ACTIONS(4398), - [anon_sym_struct] = ACTIONS(4398), - [anon_sym_union] = ACTIONS(4398), - [anon_sym_if] = ACTIONS(4398), - [anon_sym_switch] = ACTIONS(4398), - [anon_sym_case] = ACTIONS(4398), - [anon_sym_default] = ACTIONS(4398), - [anon_sym_while] = ACTIONS(4398), - [anon_sym_do] = ACTIONS(4398), - [anon_sym_for] = ACTIONS(4398), - [anon_sym_return] = ACTIONS(4398), - [anon_sym_break] = ACTIONS(4398), - [anon_sym_continue] = ACTIONS(4398), - [anon_sym_goto] = ACTIONS(4398), - [anon_sym_not] = ACTIONS(4398), - [anon_sym_compl] = ACTIONS(4398), - [anon_sym_DASH_DASH] = ACTIONS(4396), - [anon_sym_PLUS_PLUS] = ACTIONS(4396), - [anon_sym_sizeof] = ACTIONS(4398), - [anon_sym___alignof__] = ACTIONS(4398), - [anon_sym___alignof] = ACTIONS(4398), - [anon_sym__alignof] = ACTIONS(4398), - [anon_sym_alignof] = ACTIONS(4398), - [anon_sym__Alignof] = ACTIONS(4398), - [anon_sym_offsetof] = ACTIONS(4398), - [anon_sym__Generic] = ACTIONS(4398), - [anon_sym_typename] = ACTIONS(4398), - [anon_sym_asm] = ACTIONS(4398), - [anon_sym___asm__] = ACTIONS(4398), - [anon_sym___asm] = ACTIONS(4398), - [sym_number_literal] = ACTIONS(4396), - [anon_sym_L_SQUOTE] = ACTIONS(4396), - [anon_sym_u_SQUOTE] = ACTIONS(4396), - [anon_sym_U_SQUOTE] = ACTIONS(4396), - [anon_sym_u8_SQUOTE] = ACTIONS(4396), - [anon_sym_SQUOTE] = ACTIONS(4396), - [anon_sym_L_DQUOTE] = ACTIONS(4396), - [anon_sym_u_DQUOTE] = ACTIONS(4396), - [anon_sym_U_DQUOTE] = ACTIONS(4396), - [anon_sym_u8_DQUOTE] = ACTIONS(4396), - [anon_sym_DQUOTE] = ACTIONS(4396), - [sym_true] = ACTIONS(4398), - [sym_false] = ACTIONS(4398), - [anon_sym_NULL] = ACTIONS(4398), - [anon_sym_nullptr] = ACTIONS(4398), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4398), - [anon_sym_decltype] = ACTIONS(4398), - [anon_sym_explicit] = ACTIONS(4398), - [anon_sym_export] = ACTIONS(4398), - [anon_sym_module] = ACTIONS(4398), - [anon_sym_import] = ACTIONS(4398), - [anon_sym_template] = ACTIONS(4398), - [anon_sym_operator] = ACTIONS(4398), - [anon_sym_try] = ACTIONS(4398), - [anon_sym_delete] = ACTIONS(4398), - [anon_sym_throw] = ACTIONS(4398), - [anon_sym_namespace] = ACTIONS(4398), - [anon_sym_static_assert] = ACTIONS(4398), - [anon_sym_concept] = ACTIONS(4398), - [anon_sym_co_return] = ACTIONS(4398), - [anon_sym_co_yield] = ACTIONS(4398), - [anon_sym_R_DQUOTE] = ACTIONS(4396), - [anon_sym_LR_DQUOTE] = ACTIONS(4396), - [anon_sym_uR_DQUOTE] = ACTIONS(4396), - [anon_sym_UR_DQUOTE] = ACTIONS(4396), - [anon_sym_u8R_DQUOTE] = ACTIONS(4396), - [anon_sym_co_await] = ACTIONS(4398), - [anon_sym_new] = ACTIONS(4398), - [anon_sym_requires] = ACTIONS(4398), - [anon_sym_CARET_CARET] = ACTIONS(4396), - [anon_sym_LBRACK_COLON] = ACTIONS(4396), - [sym_this] = ACTIONS(4398), - }, - [STATE(621)] = { - [ts_builtin_sym_end] = ACTIONS(4400), - [sym_identifier] = ACTIONS(4402), - [aux_sym_preproc_include_token1] = ACTIONS(4402), - [aux_sym_preproc_def_token1] = ACTIONS(4402), - [aux_sym_preproc_if_token1] = ACTIONS(4402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4402), - [sym_preproc_directive] = ACTIONS(4402), - [anon_sym_LPAREN2] = ACTIONS(4400), - [anon_sym_BANG] = ACTIONS(4400), - [anon_sym_TILDE] = ACTIONS(4400), - [anon_sym_DASH] = ACTIONS(4402), - [anon_sym_PLUS] = ACTIONS(4402), - [anon_sym_STAR] = ACTIONS(4400), - [anon_sym_AMP_AMP] = ACTIONS(4400), - [anon_sym_AMP] = ACTIONS(4402), - [anon_sym_SEMI] = ACTIONS(4400), - [anon_sym___extension__] = ACTIONS(4402), - [anon_sym_typedef] = ACTIONS(4402), - [anon_sym_virtual] = ACTIONS(4402), - [anon_sym_extern] = ACTIONS(4402), - [anon_sym___attribute__] = ACTIONS(4402), - [anon_sym___attribute] = ACTIONS(4402), - [anon_sym_using] = ACTIONS(4402), - [anon_sym_COLON_COLON] = ACTIONS(4400), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4400), - [anon_sym___declspec] = ACTIONS(4402), - [anon_sym___based] = ACTIONS(4402), - [anon_sym___cdecl] = ACTIONS(4402), - [anon_sym___clrcall] = ACTIONS(4402), - [anon_sym___stdcall] = ACTIONS(4402), - [anon_sym___fastcall] = ACTIONS(4402), - [anon_sym___thiscall] = ACTIONS(4402), - [anon_sym___vectorcall] = ACTIONS(4402), - [anon_sym_LBRACE] = ACTIONS(4400), - [anon_sym_signed] = ACTIONS(4402), - [anon_sym_unsigned] = ACTIONS(4402), - [anon_sym_long] = ACTIONS(4402), - [anon_sym_short] = ACTIONS(4402), - [anon_sym_LBRACK] = ACTIONS(4402), - [anon_sym_static] = ACTIONS(4402), - [anon_sym_register] = ACTIONS(4402), - [anon_sym_inline] = ACTIONS(4402), - [anon_sym___inline] = ACTIONS(4402), - [anon_sym___inline__] = ACTIONS(4402), - [anon_sym___forceinline] = ACTIONS(4402), - [anon_sym_thread_local] = ACTIONS(4402), - [anon_sym___thread] = ACTIONS(4402), - [anon_sym_const] = ACTIONS(4402), - [anon_sym_constexpr] = ACTIONS(4402), - [anon_sym_volatile] = ACTIONS(4402), - [anon_sym_restrict] = ACTIONS(4402), - [anon_sym___restrict__] = ACTIONS(4402), - [anon_sym__Atomic] = ACTIONS(4402), - [anon_sym__Noreturn] = ACTIONS(4402), - [anon_sym_noreturn] = ACTIONS(4402), - [anon_sym__Nonnull] = ACTIONS(4402), - [anon_sym_mutable] = ACTIONS(4402), - [anon_sym_constinit] = ACTIONS(4402), - [anon_sym_consteval] = ACTIONS(4402), - [anon_sym_alignas] = ACTIONS(4402), - [anon_sym__Alignas] = ACTIONS(4402), - [sym_primitive_type] = ACTIONS(4402), - [anon_sym_enum] = ACTIONS(4402), - [anon_sym_class] = ACTIONS(4402), - [anon_sym_struct] = ACTIONS(4402), - [anon_sym_union] = ACTIONS(4402), - [anon_sym_if] = ACTIONS(4402), - [anon_sym_switch] = ACTIONS(4402), - [anon_sym_case] = ACTIONS(4402), - [anon_sym_default] = ACTIONS(4402), - [anon_sym_while] = ACTIONS(4402), - [anon_sym_do] = ACTIONS(4402), - [anon_sym_for] = ACTIONS(4402), - [anon_sym_return] = ACTIONS(4402), - [anon_sym_break] = ACTIONS(4402), - [anon_sym_continue] = ACTIONS(4402), - [anon_sym_goto] = ACTIONS(4402), - [anon_sym_not] = ACTIONS(4402), - [anon_sym_compl] = ACTIONS(4402), - [anon_sym_DASH_DASH] = ACTIONS(4400), - [anon_sym_PLUS_PLUS] = ACTIONS(4400), - [anon_sym_sizeof] = ACTIONS(4402), - [anon_sym___alignof__] = ACTIONS(4402), - [anon_sym___alignof] = ACTIONS(4402), - [anon_sym__alignof] = ACTIONS(4402), - [anon_sym_alignof] = ACTIONS(4402), - [anon_sym__Alignof] = ACTIONS(4402), - [anon_sym_offsetof] = ACTIONS(4402), - [anon_sym__Generic] = ACTIONS(4402), - [anon_sym_typename] = ACTIONS(4402), - [anon_sym_asm] = ACTIONS(4402), - [anon_sym___asm__] = ACTIONS(4402), - [anon_sym___asm] = ACTIONS(4402), - [sym_number_literal] = ACTIONS(4400), - [anon_sym_L_SQUOTE] = ACTIONS(4400), - [anon_sym_u_SQUOTE] = ACTIONS(4400), - [anon_sym_U_SQUOTE] = ACTIONS(4400), - [anon_sym_u8_SQUOTE] = ACTIONS(4400), - [anon_sym_SQUOTE] = ACTIONS(4400), - [anon_sym_L_DQUOTE] = ACTIONS(4400), - [anon_sym_u_DQUOTE] = ACTIONS(4400), - [anon_sym_U_DQUOTE] = ACTIONS(4400), - [anon_sym_u8_DQUOTE] = ACTIONS(4400), - [anon_sym_DQUOTE] = ACTIONS(4400), - [sym_true] = ACTIONS(4402), - [sym_false] = ACTIONS(4402), - [anon_sym_NULL] = ACTIONS(4402), - [anon_sym_nullptr] = ACTIONS(4402), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4402), - [anon_sym_decltype] = ACTIONS(4402), - [anon_sym_explicit] = ACTIONS(4402), - [anon_sym_export] = ACTIONS(4402), - [anon_sym_module] = ACTIONS(4402), - [anon_sym_import] = ACTIONS(4402), - [anon_sym_template] = ACTIONS(4402), - [anon_sym_operator] = ACTIONS(4402), - [anon_sym_try] = ACTIONS(4402), - [anon_sym_delete] = ACTIONS(4402), - [anon_sym_throw] = ACTIONS(4402), - [anon_sym_namespace] = ACTIONS(4402), - [anon_sym_static_assert] = ACTIONS(4402), - [anon_sym_concept] = ACTIONS(4402), - [anon_sym_co_return] = ACTIONS(4402), - [anon_sym_co_yield] = ACTIONS(4402), - [anon_sym_R_DQUOTE] = ACTIONS(4400), - [anon_sym_LR_DQUOTE] = ACTIONS(4400), - [anon_sym_uR_DQUOTE] = ACTIONS(4400), - [anon_sym_UR_DQUOTE] = ACTIONS(4400), - [anon_sym_u8R_DQUOTE] = ACTIONS(4400), - [anon_sym_co_await] = ACTIONS(4402), - [anon_sym_new] = ACTIONS(4402), - [anon_sym_requires] = ACTIONS(4402), - [anon_sym_CARET_CARET] = ACTIONS(4400), - [anon_sym_LBRACK_COLON] = ACTIONS(4400), - [sym_this] = ACTIONS(4402), - }, - [STATE(622)] = { - [ts_builtin_sym_end] = ACTIONS(4404), - [sym_identifier] = ACTIONS(4406), - [aux_sym_preproc_include_token1] = ACTIONS(4406), - [aux_sym_preproc_def_token1] = ACTIONS(4406), - [aux_sym_preproc_if_token1] = ACTIONS(4406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4406), - [sym_preproc_directive] = ACTIONS(4406), - [anon_sym_LPAREN2] = ACTIONS(4404), - [anon_sym_BANG] = ACTIONS(4404), - [anon_sym_TILDE] = ACTIONS(4404), - [anon_sym_DASH] = ACTIONS(4406), - [anon_sym_PLUS] = ACTIONS(4406), - [anon_sym_STAR] = ACTIONS(4404), - [anon_sym_AMP_AMP] = ACTIONS(4404), - [anon_sym_AMP] = ACTIONS(4406), - [anon_sym_SEMI] = ACTIONS(4404), - [anon_sym___extension__] = ACTIONS(4406), - [anon_sym_typedef] = ACTIONS(4406), - [anon_sym_virtual] = ACTIONS(4406), - [anon_sym_extern] = ACTIONS(4406), - [anon_sym___attribute__] = ACTIONS(4406), - [anon_sym___attribute] = ACTIONS(4406), - [anon_sym_using] = ACTIONS(4406), - [anon_sym_COLON_COLON] = ACTIONS(4404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4404), - [anon_sym___declspec] = ACTIONS(4406), - [anon_sym___based] = ACTIONS(4406), - [anon_sym___cdecl] = ACTIONS(4406), - [anon_sym___clrcall] = ACTIONS(4406), - [anon_sym___stdcall] = ACTIONS(4406), - [anon_sym___fastcall] = ACTIONS(4406), - [anon_sym___thiscall] = ACTIONS(4406), - [anon_sym___vectorcall] = ACTIONS(4406), - [anon_sym_LBRACE] = ACTIONS(4404), - [anon_sym_signed] = ACTIONS(4406), - [anon_sym_unsigned] = ACTIONS(4406), - [anon_sym_long] = ACTIONS(4406), - [anon_sym_short] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4406), - [anon_sym_static] = ACTIONS(4406), - [anon_sym_register] = ACTIONS(4406), - [anon_sym_inline] = ACTIONS(4406), - [anon_sym___inline] = ACTIONS(4406), - [anon_sym___inline__] = ACTIONS(4406), - [anon_sym___forceinline] = ACTIONS(4406), - [anon_sym_thread_local] = ACTIONS(4406), - [anon_sym___thread] = ACTIONS(4406), - [anon_sym_const] = ACTIONS(4406), - [anon_sym_constexpr] = ACTIONS(4406), - [anon_sym_volatile] = ACTIONS(4406), - [anon_sym_restrict] = ACTIONS(4406), - [anon_sym___restrict__] = ACTIONS(4406), - [anon_sym__Atomic] = ACTIONS(4406), - [anon_sym__Noreturn] = ACTIONS(4406), - [anon_sym_noreturn] = ACTIONS(4406), - [anon_sym__Nonnull] = ACTIONS(4406), - [anon_sym_mutable] = ACTIONS(4406), - [anon_sym_constinit] = ACTIONS(4406), - [anon_sym_consteval] = ACTIONS(4406), - [anon_sym_alignas] = ACTIONS(4406), - [anon_sym__Alignas] = ACTIONS(4406), - [sym_primitive_type] = ACTIONS(4406), - [anon_sym_enum] = ACTIONS(4406), - [anon_sym_class] = ACTIONS(4406), - [anon_sym_struct] = ACTIONS(4406), - [anon_sym_union] = ACTIONS(4406), - [anon_sym_if] = ACTIONS(4406), - [anon_sym_switch] = ACTIONS(4406), - [anon_sym_case] = ACTIONS(4406), - [anon_sym_default] = ACTIONS(4406), - [anon_sym_while] = ACTIONS(4406), - [anon_sym_do] = ACTIONS(4406), - [anon_sym_for] = ACTIONS(4406), - [anon_sym_return] = ACTIONS(4406), - [anon_sym_break] = ACTIONS(4406), - [anon_sym_continue] = ACTIONS(4406), - [anon_sym_goto] = ACTIONS(4406), - [anon_sym_not] = ACTIONS(4406), - [anon_sym_compl] = ACTIONS(4406), - [anon_sym_DASH_DASH] = ACTIONS(4404), - [anon_sym_PLUS_PLUS] = ACTIONS(4404), - [anon_sym_sizeof] = ACTIONS(4406), - [anon_sym___alignof__] = ACTIONS(4406), - [anon_sym___alignof] = ACTIONS(4406), - [anon_sym__alignof] = ACTIONS(4406), - [anon_sym_alignof] = ACTIONS(4406), - [anon_sym__Alignof] = ACTIONS(4406), - [anon_sym_offsetof] = ACTIONS(4406), - [anon_sym__Generic] = ACTIONS(4406), - [anon_sym_typename] = ACTIONS(4406), - [anon_sym_asm] = ACTIONS(4406), - [anon_sym___asm__] = ACTIONS(4406), - [anon_sym___asm] = ACTIONS(4406), - [sym_number_literal] = ACTIONS(4404), - [anon_sym_L_SQUOTE] = ACTIONS(4404), - [anon_sym_u_SQUOTE] = ACTIONS(4404), - [anon_sym_U_SQUOTE] = ACTIONS(4404), - [anon_sym_u8_SQUOTE] = ACTIONS(4404), - [anon_sym_SQUOTE] = ACTIONS(4404), - [anon_sym_L_DQUOTE] = ACTIONS(4404), - [anon_sym_u_DQUOTE] = ACTIONS(4404), - [anon_sym_U_DQUOTE] = ACTIONS(4404), - [anon_sym_u8_DQUOTE] = ACTIONS(4404), - [anon_sym_DQUOTE] = ACTIONS(4404), - [sym_true] = ACTIONS(4406), - [sym_false] = ACTIONS(4406), - [anon_sym_NULL] = ACTIONS(4406), - [anon_sym_nullptr] = ACTIONS(4406), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4406), - [anon_sym_decltype] = ACTIONS(4406), - [anon_sym_explicit] = ACTIONS(4406), - [anon_sym_export] = ACTIONS(4406), - [anon_sym_module] = ACTIONS(4406), - [anon_sym_import] = ACTIONS(4406), - [anon_sym_template] = ACTIONS(4406), - [anon_sym_operator] = ACTIONS(4406), - [anon_sym_try] = ACTIONS(4406), - [anon_sym_delete] = ACTIONS(4406), - [anon_sym_throw] = ACTIONS(4406), - [anon_sym_namespace] = ACTIONS(4406), - [anon_sym_static_assert] = ACTIONS(4406), - [anon_sym_concept] = ACTIONS(4406), - [anon_sym_co_return] = ACTIONS(4406), - [anon_sym_co_yield] = ACTIONS(4406), - [anon_sym_R_DQUOTE] = ACTIONS(4404), - [anon_sym_LR_DQUOTE] = ACTIONS(4404), - [anon_sym_uR_DQUOTE] = ACTIONS(4404), - [anon_sym_UR_DQUOTE] = ACTIONS(4404), - [anon_sym_u8R_DQUOTE] = ACTIONS(4404), - [anon_sym_co_await] = ACTIONS(4406), - [anon_sym_new] = ACTIONS(4406), - [anon_sym_requires] = ACTIONS(4406), - [anon_sym_CARET_CARET] = ACTIONS(4404), - [anon_sym_LBRACK_COLON] = ACTIONS(4404), - [sym_this] = ACTIONS(4406), - }, - [STATE(623)] = { - [ts_builtin_sym_end] = ACTIONS(4121), - [sym_identifier] = ACTIONS(4119), - [aux_sym_preproc_include_token1] = ACTIONS(4119), - [aux_sym_preproc_def_token1] = ACTIONS(4119), - [aux_sym_preproc_if_token1] = ACTIONS(4119), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4119), - [sym_preproc_directive] = ACTIONS(4119), - [anon_sym_LPAREN2] = ACTIONS(4121), - [anon_sym_BANG] = ACTIONS(4121), - [anon_sym_TILDE] = ACTIONS(4121), - [anon_sym_DASH] = ACTIONS(4119), - [anon_sym_PLUS] = ACTIONS(4119), - [anon_sym_STAR] = ACTIONS(4121), - [anon_sym_AMP_AMP] = ACTIONS(4121), - [anon_sym_AMP] = ACTIONS(4119), - [anon_sym_SEMI] = ACTIONS(4121), - [anon_sym___extension__] = ACTIONS(4119), - [anon_sym_typedef] = ACTIONS(4119), - [anon_sym_virtual] = ACTIONS(4119), - [anon_sym_extern] = ACTIONS(4119), - [anon_sym___attribute__] = ACTIONS(4119), - [anon_sym___attribute] = ACTIONS(4119), - [anon_sym_using] = ACTIONS(4119), - [anon_sym_COLON_COLON] = ACTIONS(4121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4121), - [anon_sym___declspec] = ACTIONS(4119), - [anon_sym___based] = ACTIONS(4119), - [anon_sym___cdecl] = ACTIONS(4119), - [anon_sym___clrcall] = ACTIONS(4119), - [anon_sym___stdcall] = ACTIONS(4119), - [anon_sym___fastcall] = ACTIONS(4119), - [anon_sym___thiscall] = ACTIONS(4119), - [anon_sym___vectorcall] = ACTIONS(4119), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_signed] = ACTIONS(4119), - [anon_sym_unsigned] = ACTIONS(4119), - [anon_sym_long] = ACTIONS(4119), - [anon_sym_short] = ACTIONS(4119), - [anon_sym_LBRACK] = ACTIONS(4119), - [anon_sym_static] = ACTIONS(4119), - [anon_sym_register] = ACTIONS(4119), - [anon_sym_inline] = ACTIONS(4119), - [anon_sym___inline] = ACTIONS(4119), - [anon_sym___inline__] = ACTIONS(4119), - [anon_sym___forceinline] = ACTIONS(4119), - [anon_sym_thread_local] = ACTIONS(4119), - [anon_sym___thread] = ACTIONS(4119), - [anon_sym_const] = ACTIONS(4119), - [anon_sym_constexpr] = ACTIONS(4119), - [anon_sym_volatile] = ACTIONS(4119), - [anon_sym_restrict] = ACTIONS(4119), - [anon_sym___restrict__] = ACTIONS(4119), - [anon_sym__Atomic] = ACTIONS(4119), - [anon_sym__Noreturn] = ACTIONS(4119), - [anon_sym_noreturn] = ACTIONS(4119), - [anon_sym__Nonnull] = ACTIONS(4119), - [anon_sym_mutable] = ACTIONS(4119), - [anon_sym_constinit] = ACTIONS(4119), - [anon_sym_consteval] = ACTIONS(4119), - [anon_sym_alignas] = ACTIONS(4119), - [anon_sym__Alignas] = ACTIONS(4119), - [sym_primitive_type] = ACTIONS(4119), - [anon_sym_enum] = ACTIONS(4119), - [anon_sym_class] = ACTIONS(4119), - [anon_sym_struct] = ACTIONS(4119), - [anon_sym_union] = ACTIONS(4119), - [anon_sym_if] = ACTIONS(4119), - [anon_sym_switch] = ACTIONS(4119), - [anon_sym_case] = ACTIONS(4119), - [anon_sym_default] = ACTIONS(4119), - [anon_sym_while] = ACTIONS(4119), - [anon_sym_do] = ACTIONS(4119), - [anon_sym_for] = ACTIONS(4119), - [anon_sym_return] = ACTIONS(4119), - [anon_sym_break] = ACTIONS(4119), - [anon_sym_continue] = ACTIONS(4119), - [anon_sym_goto] = ACTIONS(4119), - [anon_sym_not] = ACTIONS(4119), - [anon_sym_compl] = ACTIONS(4119), - [anon_sym_DASH_DASH] = ACTIONS(4121), - [anon_sym_PLUS_PLUS] = ACTIONS(4121), - [anon_sym_sizeof] = ACTIONS(4119), - [anon_sym___alignof__] = ACTIONS(4119), - [anon_sym___alignof] = ACTIONS(4119), - [anon_sym__alignof] = ACTIONS(4119), - [anon_sym_alignof] = ACTIONS(4119), - [anon_sym__Alignof] = ACTIONS(4119), - [anon_sym_offsetof] = ACTIONS(4119), - [anon_sym__Generic] = ACTIONS(4119), - [anon_sym_typename] = ACTIONS(4119), - [anon_sym_asm] = ACTIONS(4119), - [anon_sym___asm__] = ACTIONS(4119), - [anon_sym___asm] = ACTIONS(4119), - [sym_number_literal] = ACTIONS(4121), - [anon_sym_L_SQUOTE] = ACTIONS(4121), - [anon_sym_u_SQUOTE] = ACTIONS(4121), - [anon_sym_U_SQUOTE] = ACTIONS(4121), - [anon_sym_u8_SQUOTE] = ACTIONS(4121), - [anon_sym_SQUOTE] = ACTIONS(4121), - [anon_sym_L_DQUOTE] = ACTIONS(4121), - [anon_sym_u_DQUOTE] = ACTIONS(4121), - [anon_sym_U_DQUOTE] = ACTIONS(4121), - [anon_sym_u8_DQUOTE] = ACTIONS(4121), - [anon_sym_DQUOTE] = ACTIONS(4121), - [sym_true] = ACTIONS(4119), - [sym_false] = ACTIONS(4119), - [anon_sym_NULL] = ACTIONS(4119), - [anon_sym_nullptr] = ACTIONS(4119), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4119), - [anon_sym_decltype] = ACTIONS(4119), - [anon_sym_explicit] = ACTIONS(4119), - [anon_sym_export] = ACTIONS(4119), - [anon_sym_module] = ACTIONS(4119), - [anon_sym_import] = ACTIONS(4119), - [anon_sym_template] = ACTIONS(4119), - [anon_sym_operator] = ACTIONS(4119), - [anon_sym_try] = ACTIONS(4119), - [anon_sym_delete] = ACTIONS(4119), - [anon_sym_throw] = ACTIONS(4119), - [anon_sym_namespace] = ACTIONS(4119), - [anon_sym_static_assert] = ACTIONS(4119), - [anon_sym_concept] = ACTIONS(4119), - [anon_sym_co_return] = ACTIONS(4119), - [anon_sym_co_yield] = ACTIONS(4119), - [anon_sym_R_DQUOTE] = ACTIONS(4121), - [anon_sym_LR_DQUOTE] = ACTIONS(4121), - [anon_sym_uR_DQUOTE] = ACTIONS(4121), - [anon_sym_UR_DQUOTE] = ACTIONS(4121), - [anon_sym_u8R_DQUOTE] = ACTIONS(4121), - [anon_sym_co_await] = ACTIONS(4119), - [anon_sym_new] = ACTIONS(4119), - [anon_sym_requires] = ACTIONS(4119), - [anon_sym_CARET_CARET] = ACTIONS(4121), - [anon_sym_LBRACK_COLON] = ACTIONS(4121), - [sym_this] = ACTIONS(4119), - }, - [STATE(624)] = { - [ts_builtin_sym_end] = ACTIONS(4056), - [sym_identifier] = ACTIONS(4054), - [aux_sym_preproc_include_token1] = ACTIONS(4054), - [aux_sym_preproc_def_token1] = ACTIONS(4054), - [aux_sym_preproc_if_token1] = ACTIONS(4054), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4054), - [sym_preproc_directive] = ACTIONS(4054), - [anon_sym_LPAREN2] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_TILDE] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4054), - [anon_sym_PLUS] = ACTIONS(4054), - [anon_sym_STAR] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4054), - [anon_sym_SEMI] = ACTIONS(4056), - [anon_sym___extension__] = ACTIONS(4054), - [anon_sym_typedef] = ACTIONS(4054), - [anon_sym_virtual] = ACTIONS(4054), - [anon_sym_extern] = ACTIONS(4054), - [anon_sym___attribute__] = ACTIONS(4054), - [anon_sym___attribute] = ACTIONS(4054), - [anon_sym_using] = ACTIONS(4054), - [anon_sym_COLON_COLON] = ACTIONS(4056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4056), - [anon_sym___declspec] = ACTIONS(4054), - [anon_sym___based] = ACTIONS(4054), - [anon_sym___cdecl] = ACTIONS(4054), - [anon_sym___clrcall] = ACTIONS(4054), - [anon_sym___stdcall] = ACTIONS(4054), - [anon_sym___fastcall] = ACTIONS(4054), - [anon_sym___thiscall] = ACTIONS(4054), - [anon_sym___vectorcall] = ACTIONS(4054), - [anon_sym_LBRACE] = ACTIONS(4056), - [anon_sym_signed] = ACTIONS(4054), - [anon_sym_unsigned] = ACTIONS(4054), - [anon_sym_long] = ACTIONS(4054), - [anon_sym_short] = ACTIONS(4054), - [anon_sym_LBRACK] = ACTIONS(4054), - [anon_sym_static] = ACTIONS(4054), - [anon_sym_register] = ACTIONS(4054), - [anon_sym_inline] = ACTIONS(4054), - [anon_sym___inline] = ACTIONS(4054), - [anon_sym___inline__] = ACTIONS(4054), - [anon_sym___forceinline] = ACTIONS(4054), - [anon_sym_thread_local] = ACTIONS(4054), - [anon_sym___thread] = ACTIONS(4054), - [anon_sym_const] = ACTIONS(4054), - [anon_sym_constexpr] = ACTIONS(4054), - [anon_sym_volatile] = ACTIONS(4054), - [anon_sym_restrict] = ACTIONS(4054), - [anon_sym___restrict__] = ACTIONS(4054), - [anon_sym__Atomic] = ACTIONS(4054), - [anon_sym__Noreturn] = ACTIONS(4054), - [anon_sym_noreturn] = ACTIONS(4054), - [anon_sym__Nonnull] = ACTIONS(4054), - [anon_sym_mutable] = ACTIONS(4054), - [anon_sym_constinit] = ACTIONS(4054), - [anon_sym_consteval] = ACTIONS(4054), - [anon_sym_alignas] = ACTIONS(4054), - [anon_sym__Alignas] = ACTIONS(4054), - [sym_primitive_type] = ACTIONS(4054), - [anon_sym_enum] = ACTIONS(4054), - [anon_sym_class] = ACTIONS(4054), - [anon_sym_struct] = ACTIONS(4054), - [anon_sym_union] = ACTIONS(4054), - [anon_sym_if] = ACTIONS(4054), - [anon_sym_switch] = ACTIONS(4054), - [anon_sym_case] = ACTIONS(4054), - [anon_sym_default] = ACTIONS(4054), - [anon_sym_while] = ACTIONS(4054), - [anon_sym_do] = ACTIONS(4054), - [anon_sym_for] = ACTIONS(4054), - [anon_sym_return] = ACTIONS(4054), - [anon_sym_break] = ACTIONS(4054), - [anon_sym_continue] = ACTIONS(4054), - [anon_sym_goto] = ACTIONS(4054), - [anon_sym_not] = ACTIONS(4054), - [anon_sym_compl] = ACTIONS(4054), - [anon_sym_DASH_DASH] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4056), - [anon_sym_sizeof] = ACTIONS(4054), - [anon_sym___alignof__] = ACTIONS(4054), - [anon_sym___alignof] = ACTIONS(4054), - [anon_sym__alignof] = ACTIONS(4054), - [anon_sym_alignof] = ACTIONS(4054), - [anon_sym__Alignof] = ACTIONS(4054), - [anon_sym_offsetof] = ACTIONS(4054), - [anon_sym__Generic] = ACTIONS(4054), - [anon_sym_typename] = ACTIONS(4054), - [anon_sym_asm] = ACTIONS(4054), - [anon_sym___asm__] = ACTIONS(4054), - [anon_sym___asm] = ACTIONS(4054), - [sym_number_literal] = ACTIONS(4056), - [anon_sym_L_SQUOTE] = ACTIONS(4056), - [anon_sym_u_SQUOTE] = ACTIONS(4056), - [anon_sym_U_SQUOTE] = ACTIONS(4056), - [anon_sym_u8_SQUOTE] = ACTIONS(4056), - [anon_sym_SQUOTE] = ACTIONS(4056), - [anon_sym_L_DQUOTE] = ACTIONS(4056), - [anon_sym_u_DQUOTE] = ACTIONS(4056), - [anon_sym_U_DQUOTE] = ACTIONS(4056), - [anon_sym_u8_DQUOTE] = ACTIONS(4056), - [anon_sym_DQUOTE] = ACTIONS(4056), - [sym_true] = ACTIONS(4054), - [sym_false] = ACTIONS(4054), - [anon_sym_NULL] = ACTIONS(4054), - [anon_sym_nullptr] = ACTIONS(4054), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4054), - [anon_sym_decltype] = ACTIONS(4054), - [anon_sym_explicit] = ACTIONS(4054), - [anon_sym_export] = ACTIONS(4054), - [anon_sym_module] = ACTIONS(4054), - [anon_sym_import] = ACTIONS(4054), - [anon_sym_template] = ACTIONS(4054), - [anon_sym_operator] = ACTIONS(4054), - [anon_sym_try] = ACTIONS(4054), - [anon_sym_delete] = ACTIONS(4054), - [anon_sym_throw] = ACTIONS(4054), - [anon_sym_namespace] = ACTIONS(4054), - [anon_sym_static_assert] = ACTIONS(4054), - [anon_sym_concept] = ACTIONS(4054), - [anon_sym_co_return] = ACTIONS(4054), - [anon_sym_co_yield] = ACTIONS(4054), - [anon_sym_R_DQUOTE] = ACTIONS(4056), - [anon_sym_LR_DQUOTE] = ACTIONS(4056), - [anon_sym_uR_DQUOTE] = ACTIONS(4056), - [anon_sym_UR_DQUOTE] = ACTIONS(4056), - [anon_sym_u8R_DQUOTE] = ACTIONS(4056), - [anon_sym_co_await] = ACTIONS(4054), - [anon_sym_new] = ACTIONS(4054), - [anon_sym_requires] = ACTIONS(4054), - [anon_sym_CARET_CARET] = ACTIONS(4056), - [anon_sym_LBRACK_COLON] = ACTIONS(4056), - [sym_this] = ACTIONS(4054), - }, - [STATE(625)] = { - [sym_preproc_def] = STATE(583), - [sym_preproc_function_def] = STATE(583), - [sym_preproc_call] = STATE(583), - [sym_preproc_if_in_field_declaration_list] = STATE(583), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(583), - [sym_type_definition] = STATE(583), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7964), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(583), - [sym_field_declaration] = STATE(583), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(583), - [sym_operator_cast] = STATE(9142), - [sym_inline_method_definition] = STATE(583), - [sym__constructor_specifiers] = STATE(2332), - [sym_operator_cast_definition] = STATE(583), - [sym_operator_cast_declaration] = STATE(583), - [sym_constructor_or_destructor_definition] = STATE(583), - [sym_constructor_or_destructor_declaration] = STATE(583), - [sym_friend_declaration] = STATE(583), - [sym_access_specifier] = STATE(11109), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(583), - [sym_alias_declaration] = STATE(583), - [sym_static_assert_declaration] = STATE(583), - [sym_consteval_block_declaration] = STATE(583), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(583), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9371), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(4352), - [aux_sym_preproc_if_token1] = ACTIONS(4354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), - [sym_preproc_directive] = ACTIONS(4358), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(4408), - [anon_sym___extension__] = ACTIONS(4362), - [anon_sym_typedef] = ACTIONS(4364), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4410), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4372), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(4374), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4376), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(4378), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(626)] = { - [ts_builtin_sym_end] = ACTIONS(4060), - [sym_identifier] = ACTIONS(4058), - [aux_sym_preproc_include_token1] = ACTIONS(4058), - [aux_sym_preproc_def_token1] = ACTIONS(4058), - [aux_sym_preproc_if_token1] = ACTIONS(4058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4058), - [sym_preproc_directive] = ACTIONS(4058), - [anon_sym_LPAREN2] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(4060), - [anon_sym_TILDE] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4058), - [anon_sym_STAR] = ACTIONS(4060), - [anon_sym_AMP_AMP] = ACTIONS(4060), - [anon_sym_AMP] = ACTIONS(4058), - [anon_sym_SEMI] = ACTIONS(4060), - [anon_sym___extension__] = ACTIONS(4058), - [anon_sym_typedef] = ACTIONS(4058), - [anon_sym_virtual] = ACTIONS(4058), - [anon_sym_extern] = ACTIONS(4058), - [anon_sym___attribute__] = ACTIONS(4058), - [anon_sym___attribute] = ACTIONS(4058), - [anon_sym_using] = ACTIONS(4058), - [anon_sym_COLON_COLON] = ACTIONS(4060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4060), - [anon_sym___declspec] = ACTIONS(4058), - [anon_sym___based] = ACTIONS(4058), - [anon_sym___cdecl] = ACTIONS(4058), - [anon_sym___clrcall] = ACTIONS(4058), - [anon_sym___stdcall] = ACTIONS(4058), - [anon_sym___fastcall] = ACTIONS(4058), - [anon_sym___thiscall] = ACTIONS(4058), - [anon_sym___vectorcall] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4060), - [anon_sym_signed] = ACTIONS(4058), - [anon_sym_unsigned] = ACTIONS(4058), - [anon_sym_long] = ACTIONS(4058), - [anon_sym_short] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4058), - [anon_sym_static] = ACTIONS(4058), - [anon_sym_register] = ACTIONS(4058), - [anon_sym_inline] = ACTIONS(4058), - [anon_sym___inline] = ACTIONS(4058), - [anon_sym___inline__] = ACTIONS(4058), - [anon_sym___forceinline] = ACTIONS(4058), - [anon_sym_thread_local] = ACTIONS(4058), - [anon_sym___thread] = ACTIONS(4058), - [anon_sym_const] = ACTIONS(4058), - [anon_sym_constexpr] = ACTIONS(4058), - [anon_sym_volatile] = ACTIONS(4058), - [anon_sym_restrict] = ACTIONS(4058), - [anon_sym___restrict__] = ACTIONS(4058), - [anon_sym__Atomic] = ACTIONS(4058), - [anon_sym__Noreturn] = ACTIONS(4058), - [anon_sym_noreturn] = ACTIONS(4058), - [anon_sym__Nonnull] = ACTIONS(4058), - [anon_sym_mutable] = ACTIONS(4058), - [anon_sym_constinit] = ACTIONS(4058), - [anon_sym_consteval] = ACTIONS(4058), - [anon_sym_alignas] = ACTIONS(4058), - [anon_sym__Alignas] = ACTIONS(4058), - [sym_primitive_type] = ACTIONS(4058), - [anon_sym_enum] = ACTIONS(4058), - [anon_sym_class] = ACTIONS(4058), - [anon_sym_struct] = ACTIONS(4058), - [anon_sym_union] = ACTIONS(4058), - [anon_sym_if] = ACTIONS(4058), - [anon_sym_switch] = ACTIONS(4058), - [anon_sym_case] = ACTIONS(4058), - [anon_sym_default] = ACTIONS(4058), - [anon_sym_while] = ACTIONS(4058), - [anon_sym_do] = ACTIONS(4058), - [anon_sym_for] = ACTIONS(4058), - [anon_sym_return] = ACTIONS(4058), - [anon_sym_break] = ACTIONS(4058), - [anon_sym_continue] = ACTIONS(4058), - [anon_sym_goto] = ACTIONS(4058), - [anon_sym_not] = ACTIONS(4058), - [anon_sym_compl] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4060), - [anon_sym_PLUS_PLUS] = ACTIONS(4060), - [anon_sym_sizeof] = ACTIONS(4058), - [anon_sym___alignof__] = ACTIONS(4058), - [anon_sym___alignof] = ACTIONS(4058), - [anon_sym__alignof] = ACTIONS(4058), - [anon_sym_alignof] = ACTIONS(4058), - [anon_sym__Alignof] = ACTIONS(4058), - [anon_sym_offsetof] = ACTIONS(4058), - [anon_sym__Generic] = ACTIONS(4058), - [anon_sym_typename] = ACTIONS(4058), - [anon_sym_asm] = ACTIONS(4058), - [anon_sym___asm__] = ACTIONS(4058), - [anon_sym___asm] = ACTIONS(4058), - [sym_number_literal] = ACTIONS(4060), - [anon_sym_L_SQUOTE] = ACTIONS(4060), - [anon_sym_u_SQUOTE] = ACTIONS(4060), - [anon_sym_U_SQUOTE] = ACTIONS(4060), - [anon_sym_u8_SQUOTE] = ACTIONS(4060), - [anon_sym_SQUOTE] = ACTIONS(4060), - [anon_sym_L_DQUOTE] = ACTIONS(4060), - [anon_sym_u_DQUOTE] = ACTIONS(4060), - [anon_sym_U_DQUOTE] = ACTIONS(4060), - [anon_sym_u8_DQUOTE] = ACTIONS(4060), - [anon_sym_DQUOTE] = ACTIONS(4060), - [sym_true] = ACTIONS(4058), - [sym_false] = ACTIONS(4058), - [anon_sym_NULL] = ACTIONS(4058), - [anon_sym_nullptr] = ACTIONS(4058), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4058), - [anon_sym_decltype] = ACTIONS(4058), - [anon_sym_explicit] = ACTIONS(4058), - [anon_sym_export] = ACTIONS(4058), - [anon_sym_module] = ACTIONS(4058), - [anon_sym_import] = ACTIONS(4058), - [anon_sym_template] = ACTIONS(4058), - [anon_sym_operator] = ACTIONS(4058), - [anon_sym_try] = ACTIONS(4058), - [anon_sym_delete] = ACTIONS(4058), - [anon_sym_throw] = ACTIONS(4058), - [anon_sym_namespace] = ACTIONS(4058), - [anon_sym_static_assert] = ACTIONS(4058), - [anon_sym_concept] = ACTIONS(4058), - [anon_sym_co_return] = ACTIONS(4058), - [anon_sym_co_yield] = ACTIONS(4058), - [anon_sym_R_DQUOTE] = ACTIONS(4060), - [anon_sym_LR_DQUOTE] = ACTIONS(4060), - [anon_sym_uR_DQUOTE] = ACTIONS(4060), - [anon_sym_UR_DQUOTE] = ACTIONS(4060), - [anon_sym_u8R_DQUOTE] = ACTIONS(4060), - [anon_sym_co_await] = ACTIONS(4058), - [anon_sym_new] = ACTIONS(4058), - [anon_sym_requires] = ACTIONS(4058), - [anon_sym_CARET_CARET] = ACTIONS(4060), - [anon_sym_LBRACK_COLON] = ACTIONS(4060), - [sym_this] = ACTIONS(4058), - }, - [STATE(627)] = { - [ts_builtin_sym_end] = ACTIONS(4064), - [sym_identifier] = ACTIONS(4062), - [aux_sym_preproc_include_token1] = ACTIONS(4062), - [aux_sym_preproc_def_token1] = ACTIONS(4062), - [aux_sym_preproc_if_token1] = ACTIONS(4062), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4062), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4062), - [sym_preproc_directive] = ACTIONS(4062), - [anon_sym_LPAREN2] = ACTIONS(4064), - [anon_sym_BANG] = ACTIONS(4064), - [anon_sym_TILDE] = ACTIONS(4064), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_PLUS] = ACTIONS(4062), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_AMP_AMP] = ACTIONS(4064), - [anon_sym_AMP] = ACTIONS(4062), - [anon_sym_SEMI] = ACTIONS(4064), - [anon_sym___extension__] = ACTIONS(4062), - [anon_sym_typedef] = ACTIONS(4062), - [anon_sym_virtual] = ACTIONS(4062), - [anon_sym_extern] = ACTIONS(4062), - [anon_sym___attribute__] = ACTIONS(4062), - [anon_sym___attribute] = ACTIONS(4062), - [anon_sym_using] = ACTIONS(4062), - [anon_sym_COLON_COLON] = ACTIONS(4064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4064), - [anon_sym___declspec] = ACTIONS(4062), - [anon_sym___based] = ACTIONS(4062), - [anon_sym___cdecl] = ACTIONS(4062), - [anon_sym___clrcall] = ACTIONS(4062), - [anon_sym___stdcall] = ACTIONS(4062), - [anon_sym___fastcall] = ACTIONS(4062), - [anon_sym___thiscall] = ACTIONS(4062), - [anon_sym___vectorcall] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_signed] = ACTIONS(4062), - [anon_sym_unsigned] = ACTIONS(4062), - [anon_sym_long] = ACTIONS(4062), - [anon_sym_short] = ACTIONS(4062), - [anon_sym_LBRACK] = ACTIONS(4062), - [anon_sym_static] = ACTIONS(4062), - [anon_sym_register] = ACTIONS(4062), - [anon_sym_inline] = ACTIONS(4062), - [anon_sym___inline] = ACTIONS(4062), - [anon_sym___inline__] = ACTIONS(4062), - [anon_sym___forceinline] = ACTIONS(4062), - [anon_sym_thread_local] = ACTIONS(4062), - [anon_sym___thread] = ACTIONS(4062), - [anon_sym_const] = ACTIONS(4062), - [anon_sym_constexpr] = ACTIONS(4062), - [anon_sym_volatile] = ACTIONS(4062), - [anon_sym_restrict] = ACTIONS(4062), - [anon_sym___restrict__] = ACTIONS(4062), - [anon_sym__Atomic] = ACTIONS(4062), - [anon_sym__Noreturn] = ACTIONS(4062), - [anon_sym_noreturn] = ACTIONS(4062), - [anon_sym__Nonnull] = ACTIONS(4062), - [anon_sym_mutable] = ACTIONS(4062), - [anon_sym_constinit] = ACTIONS(4062), - [anon_sym_consteval] = ACTIONS(4062), - [anon_sym_alignas] = ACTIONS(4062), - [anon_sym__Alignas] = ACTIONS(4062), - [sym_primitive_type] = ACTIONS(4062), - [anon_sym_enum] = ACTIONS(4062), - [anon_sym_class] = ACTIONS(4062), - [anon_sym_struct] = ACTIONS(4062), - [anon_sym_union] = ACTIONS(4062), - [anon_sym_if] = ACTIONS(4062), - [anon_sym_switch] = ACTIONS(4062), - [anon_sym_case] = ACTIONS(4062), - [anon_sym_default] = ACTIONS(4062), - [anon_sym_while] = ACTIONS(4062), - [anon_sym_do] = ACTIONS(4062), - [anon_sym_for] = ACTIONS(4062), - [anon_sym_return] = ACTIONS(4062), - [anon_sym_break] = ACTIONS(4062), - [anon_sym_continue] = ACTIONS(4062), - [anon_sym_goto] = ACTIONS(4062), - [anon_sym_not] = ACTIONS(4062), - [anon_sym_compl] = ACTIONS(4062), - [anon_sym_DASH_DASH] = ACTIONS(4064), - [anon_sym_PLUS_PLUS] = ACTIONS(4064), - [anon_sym_sizeof] = ACTIONS(4062), - [anon_sym___alignof__] = ACTIONS(4062), - [anon_sym___alignof] = ACTIONS(4062), - [anon_sym__alignof] = ACTIONS(4062), - [anon_sym_alignof] = ACTIONS(4062), - [anon_sym__Alignof] = ACTIONS(4062), - [anon_sym_offsetof] = ACTIONS(4062), - [anon_sym__Generic] = ACTIONS(4062), - [anon_sym_typename] = ACTIONS(4062), - [anon_sym_asm] = ACTIONS(4062), - [anon_sym___asm__] = ACTIONS(4062), - [anon_sym___asm] = ACTIONS(4062), - [sym_number_literal] = ACTIONS(4064), - [anon_sym_L_SQUOTE] = ACTIONS(4064), - [anon_sym_u_SQUOTE] = ACTIONS(4064), - [anon_sym_U_SQUOTE] = ACTIONS(4064), - [anon_sym_u8_SQUOTE] = ACTIONS(4064), - [anon_sym_SQUOTE] = ACTIONS(4064), - [anon_sym_L_DQUOTE] = ACTIONS(4064), - [anon_sym_u_DQUOTE] = ACTIONS(4064), - [anon_sym_U_DQUOTE] = ACTIONS(4064), - [anon_sym_u8_DQUOTE] = ACTIONS(4064), - [anon_sym_DQUOTE] = ACTIONS(4064), - [sym_true] = ACTIONS(4062), - [sym_false] = ACTIONS(4062), - [anon_sym_NULL] = ACTIONS(4062), - [anon_sym_nullptr] = ACTIONS(4062), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4062), - [anon_sym_decltype] = ACTIONS(4062), - [anon_sym_explicit] = ACTIONS(4062), - [anon_sym_export] = ACTIONS(4062), - [anon_sym_module] = ACTIONS(4062), - [anon_sym_import] = ACTIONS(4062), - [anon_sym_template] = ACTIONS(4062), - [anon_sym_operator] = ACTIONS(4062), - [anon_sym_try] = ACTIONS(4062), - [anon_sym_delete] = ACTIONS(4062), - [anon_sym_throw] = ACTIONS(4062), - [anon_sym_namespace] = ACTIONS(4062), - [anon_sym_static_assert] = ACTIONS(4062), - [anon_sym_concept] = ACTIONS(4062), - [anon_sym_co_return] = ACTIONS(4062), - [anon_sym_co_yield] = ACTIONS(4062), - [anon_sym_R_DQUOTE] = ACTIONS(4064), - [anon_sym_LR_DQUOTE] = ACTIONS(4064), - [anon_sym_uR_DQUOTE] = ACTIONS(4064), - [anon_sym_UR_DQUOTE] = ACTIONS(4064), - [anon_sym_u8R_DQUOTE] = ACTIONS(4064), - [anon_sym_co_await] = ACTIONS(4062), - [anon_sym_new] = ACTIONS(4062), - [anon_sym_requires] = ACTIONS(4062), - [anon_sym_CARET_CARET] = ACTIONS(4064), - [anon_sym_LBRACK_COLON] = ACTIONS(4064), - [sym_this] = ACTIONS(4062), - }, - [STATE(628)] = { - [ts_builtin_sym_end] = ACTIONS(4068), - [sym_identifier] = ACTIONS(4066), - [aux_sym_preproc_include_token1] = ACTIONS(4066), - [aux_sym_preproc_def_token1] = ACTIONS(4066), - [aux_sym_preproc_if_token1] = ACTIONS(4066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4066), - [sym_preproc_directive] = ACTIONS(4066), - [anon_sym_LPAREN2] = ACTIONS(4068), - [anon_sym_BANG] = ACTIONS(4068), - [anon_sym_TILDE] = ACTIONS(4068), - [anon_sym_DASH] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4066), - [anon_sym_STAR] = ACTIONS(4068), - [anon_sym_AMP_AMP] = ACTIONS(4068), - [anon_sym_AMP] = ACTIONS(4066), - [anon_sym_SEMI] = ACTIONS(4068), - [anon_sym___extension__] = ACTIONS(4066), - [anon_sym_typedef] = ACTIONS(4066), - [anon_sym_virtual] = ACTIONS(4066), - [anon_sym_extern] = ACTIONS(4066), - [anon_sym___attribute__] = ACTIONS(4066), - [anon_sym___attribute] = ACTIONS(4066), - [anon_sym_using] = ACTIONS(4066), - [anon_sym_COLON_COLON] = ACTIONS(4068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4068), - [anon_sym___declspec] = ACTIONS(4066), - [anon_sym___based] = ACTIONS(4066), - [anon_sym___cdecl] = ACTIONS(4066), - [anon_sym___clrcall] = ACTIONS(4066), - [anon_sym___stdcall] = ACTIONS(4066), - [anon_sym___fastcall] = ACTIONS(4066), - [anon_sym___thiscall] = ACTIONS(4066), - [anon_sym___vectorcall] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4068), - [anon_sym_signed] = ACTIONS(4066), - [anon_sym_unsigned] = ACTIONS(4066), - [anon_sym_long] = ACTIONS(4066), - [anon_sym_short] = ACTIONS(4066), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_static] = ACTIONS(4066), - [anon_sym_register] = ACTIONS(4066), - [anon_sym_inline] = ACTIONS(4066), - [anon_sym___inline] = ACTIONS(4066), - [anon_sym___inline__] = ACTIONS(4066), - [anon_sym___forceinline] = ACTIONS(4066), - [anon_sym_thread_local] = ACTIONS(4066), - [anon_sym___thread] = ACTIONS(4066), - [anon_sym_const] = ACTIONS(4066), - [anon_sym_constexpr] = ACTIONS(4066), - [anon_sym_volatile] = ACTIONS(4066), - [anon_sym_restrict] = ACTIONS(4066), - [anon_sym___restrict__] = ACTIONS(4066), - [anon_sym__Atomic] = ACTIONS(4066), - [anon_sym__Noreturn] = ACTIONS(4066), - [anon_sym_noreturn] = ACTIONS(4066), - [anon_sym__Nonnull] = ACTIONS(4066), - [anon_sym_mutable] = ACTIONS(4066), - [anon_sym_constinit] = ACTIONS(4066), - [anon_sym_consteval] = ACTIONS(4066), - [anon_sym_alignas] = ACTIONS(4066), - [anon_sym__Alignas] = ACTIONS(4066), - [sym_primitive_type] = ACTIONS(4066), - [anon_sym_enum] = ACTIONS(4066), - [anon_sym_class] = ACTIONS(4066), - [anon_sym_struct] = ACTIONS(4066), - [anon_sym_union] = ACTIONS(4066), - [anon_sym_if] = ACTIONS(4066), - [anon_sym_switch] = ACTIONS(4066), - [anon_sym_case] = ACTIONS(4066), - [anon_sym_default] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(4066), - [anon_sym_do] = ACTIONS(4066), - [anon_sym_for] = ACTIONS(4066), - [anon_sym_return] = ACTIONS(4066), - [anon_sym_break] = ACTIONS(4066), - [anon_sym_continue] = ACTIONS(4066), - [anon_sym_goto] = ACTIONS(4066), - [anon_sym_not] = ACTIONS(4066), - [anon_sym_compl] = ACTIONS(4066), - [anon_sym_DASH_DASH] = ACTIONS(4068), - [anon_sym_PLUS_PLUS] = ACTIONS(4068), - [anon_sym_sizeof] = ACTIONS(4066), - [anon_sym___alignof__] = ACTIONS(4066), - [anon_sym___alignof] = ACTIONS(4066), - [anon_sym__alignof] = ACTIONS(4066), - [anon_sym_alignof] = ACTIONS(4066), - [anon_sym__Alignof] = ACTIONS(4066), - [anon_sym_offsetof] = ACTIONS(4066), - [anon_sym__Generic] = ACTIONS(4066), - [anon_sym_typename] = ACTIONS(4066), - [anon_sym_asm] = ACTIONS(4066), - [anon_sym___asm__] = ACTIONS(4066), - [anon_sym___asm] = ACTIONS(4066), - [sym_number_literal] = ACTIONS(4068), - [anon_sym_L_SQUOTE] = ACTIONS(4068), - [anon_sym_u_SQUOTE] = ACTIONS(4068), - [anon_sym_U_SQUOTE] = ACTIONS(4068), - [anon_sym_u8_SQUOTE] = ACTIONS(4068), - [anon_sym_SQUOTE] = ACTIONS(4068), - [anon_sym_L_DQUOTE] = ACTIONS(4068), - [anon_sym_u_DQUOTE] = ACTIONS(4068), - [anon_sym_U_DQUOTE] = ACTIONS(4068), - [anon_sym_u8_DQUOTE] = ACTIONS(4068), - [anon_sym_DQUOTE] = ACTIONS(4068), - [sym_true] = ACTIONS(4066), - [sym_false] = ACTIONS(4066), - [anon_sym_NULL] = ACTIONS(4066), - [anon_sym_nullptr] = ACTIONS(4066), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4066), - [anon_sym_decltype] = ACTIONS(4066), - [anon_sym_explicit] = ACTIONS(4066), - [anon_sym_export] = ACTIONS(4066), - [anon_sym_module] = ACTIONS(4066), - [anon_sym_import] = ACTIONS(4066), - [anon_sym_template] = ACTIONS(4066), - [anon_sym_operator] = ACTIONS(4066), - [anon_sym_try] = ACTIONS(4066), - [anon_sym_delete] = ACTIONS(4066), - [anon_sym_throw] = ACTIONS(4066), - [anon_sym_namespace] = ACTIONS(4066), - [anon_sym_static_assert] = ACTIONS(4066), - [anon_sym_concept] = ACTIONS(4066), - [anon_sym_co_return] = ACTIONS(4066), - [anon_sym_co_yield] = ACTIONS(4066), - [anon_sym_R_DQUOTE] = ACTIONS(4068), - [anon_sym_LR_DQUOTE] = ACTIONS(4068), - [anon_sym_uR_DQUOTE] = ACTIONS(4068), - [anon_sym_UR_DQUOTE] = ACTIONS(4068), - [anon_sym_u8R_DQUOTE] = ACTIONS(4068), - [anon_sym_co_await] = ACTIONS(4066), - [anon_sym_new] = ACTIONS(4066), - [anon_sym_requires] = ACTIONS(4066), - [anon_sym_CARET_CARET] = ACTIONS(4068), - [anon_sym_LBRACK_COLON] = ACTIONS(4068), - [sym_this] = ACTIONS(4066), + [STATE(560)] = { + [sym_catch_clause] = STATE(398), + [aux_sym_constructor_try_statement_repeat1] = STATE(398), + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3182), + [aux_sym_preproc_include_token1] = ACTIONS(3182), + [aux_sym_preproc_def_token1] = ACTIONS(3182), + [aux_sym_preproc_if_token1] = ACTIONS(3182), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3182), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3182), + [sym_preproc_directive] = ACTIONS(3182), + [anon_sym_LPAREN2] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3184), + [anon_sym_AMP_AMP] = ACTIONS(3184), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym___extension__] = ACTIONS(3182), + [anon_sym_typedef] = ACTIONS(3182), + [anon_sym_virtual] = ACTIONS(3182), + [anon_sym_extern] = ACTIONS(3182), + [anon_sym___attribute__] = ACTIONS(3182), + [anon_sym___attribute] = ACTIONS(3182), + [anon_sym_using] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3184), + [anon_sym___declspec] = ACTIONS(3182), + [anon_sym___based] = ACTIONS(3182), + [anon_sym___cdecl] = ACTIONS(3182), + [anon_sym___clrcall] = ACTIONS(3182), + [anon_sym___stdcall] = ACTIONS(3182), + [anon_sym___fastcall] = ACTIONS(3182), + [anon_sym___thiscall] = ACTIONS(3182), + [anon_sym___vectorcall] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_signed] = ACTIONS(3182), + [anon_sym_unsigned] = ACTIONS(3182), + [anon_sym_long] = ACTIONS(3182), + [anon_sym_short] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_register] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym___inline] = ACTIONS(3182), + [anon_sym___inline__] = ACTIONS(3182), + [anon_sym___forceinline] = ACTIONS(3182), + [anon_sym_thread_local] = ACTIONS(3182), + [anon_sym___thread] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_constexpr] = ACTIONS(3182), + [anon_sym_volatile] = ACTIONS(3182), + [anon_sym_restrict] = ACTIONS(3182), + [anon_sym___restrict__] = ACTIONS(3182), + [anon_sym__Atomic] = ACTIONS(3182), + [anon_sym__Noreturn] = ACTIONS(3182), + [anon_sym_noreturn] = ACTIONS(3182), + [anon_sym__Nonnull] = ACTIONS(3182), + [anon_sym_mutable] = ACTIONS(3182), + [anon_sym_constinit] = ACTIONS(3182), + [anon_sym_consteval] = ACTIONS(3182), + [anon_sym_alignas] = ACTIONS(3182), + [anon_sym__Alignas] = ACTIONS(3182), + [sym_primitive_type] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), + [anon_sym_class] = ACTIONS(3182), + [anon_sym_struct] = ACTIONS(3182), + [anon_sym_union] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_switch] = ACTIONS(3182), + [anon_sym_case] = ACTIONS(3182), + [anon_sym_default] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_do] = ACTIONS(3182), + [anon_sym_for] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_goto] = ACTIONS(3182), + [anon_sym_not] = ACTIONS(3182), + [anon_sym_compl] = ACTIONS(3182), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_sizeof] = ACTIONS(3182), + [anon_sym___alignof__] = ACTIONS(3182), + [anon_sym___alignof] = ACTIONS(3182), + [anon_sym__alignof] = ACTIONS(3182), + [anon_sym_alignof] = ACTIONS(3182), + [anon_sym__Alignof] = ACTIONS(3182), + [anon_sym_offsetof] = ACTIONS(3182), + [anon_sym__Generic] = ACTIONS(3182), + [anon_sym_typename] = ACTIONS(3182), + [anon_sym_asm] = ACTIONS(3182), + [anon_sym___asm__] = ACTIONS(3182), + [anon_sym___asm] = ACTIONS(3182), + [sym_number_literal] = ACTIONS(3184), + [anon_sym_L_SQUOTE] = ACTIONS(3184), + [anon_sym_u_SQUOTE] = ACTIONS(3184), + [anon_sym_U_SQUOTE] = ACTIONS(3184), + [anon_sym_u8_SQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [anon_sym_L_DQUOTE] = ACTIONS(3184), + [anon_sym_u_DQUOTE] = ACTIONS(3184), + [anon_sym_U_DQUOTE] = ACTIONS(3184), + [anon_sym_u8_DQUOTE] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3182), + [anon_sym_decltype] = ACTIONS(3182), + [anon_sym_explicit] = ACTIONS(3182), + [anon_sym_export] = ACTIONS(3182), + [anon_sym_module] = ACTIONS(3182), + [anon_sym_import] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_delete] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_namespace] = ACTIONS(3182), + [anon_sym_static_assert] = ACTIONS(3182), + [anon_sym_concept] = ACTIONS(3182), + [anon_sym_co_return] = ACTIONS(3182), + [anon_sym_co_yield] = ACTIONS(3182), + [anon_sym_catch] = ACTIONS(3788), + [anon_sym_R_DQUOTE] = ACTIONS(3184), + [anon_sym_LR_DQUOTE] = ACTIONS(3184), + [anon_sym_uR_DQUOTE] = ACTIONS(3184), + [anon_sym_UR_DQUOTE] = ACTIONS(3184), + [anon_sym_u8R_DQUOTE] = ACTIONS(3184), + [anon_sym_co_await] = ACTIONS(3182), + [anon_sym_new] = ACTIONS(3182), + [anon_sym_requires] = ACTIONS(3182), + [anon_sym_CARET_CARET] = ACTIONS(3184), + [anon_sym_LBRACK_COLON] = ACTIONS(3184), + [sym_this] = ACTIONS(3182), }, - [STATE(629)] = { - [ts_builtin_sym_end] = ACTIONS(4178), - [sym_identifier] = ACTIONS(4176), - [aux_sym_preproc_include_token1] = ACTIONS(4176), - [aux_sym_preproc_def_token1] = ACTIONS(4176), - [aux_sym_preproc_if_token1] = ACTIONS(4176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4176), - [sym_preproc_directive] = ACTIONS(4176), - [anon_sym_LPAREN2] = ACTIONS(4178), - [anon_sym_BANG] = ACTIONS(4178), - [anon_sym_TILDE] = ACTIONS(4178), - [anon_sym_DASH] = ACTIONS(4176), - [anon_sym_PLUS] = ACTIONS(4176), - [anon_sym_STAR] = ACTIONS(4178), - [anon_sym_AMP_AMP] = ACTIONS(4178), - [anon_sym_AMP] = ACTIONS(4176), - [anon_sym_SEMI] = ACTIONS(4178), - [anon_sym___extension__] = ACTIONS(4176), - [anon_sym_typedef] = ACTIONS(4176), - [anon_sym_virtual] = ACTIONS(4176), - [anon_sym_extern] = ACTIONS(4176), - [anon_sym___attribute__] = ACTIONS(4176), - [anon_sym___attribute] = ACTIONS(4176), - [anon_sym_using] = ACTIONS(4176), - [anon_sym_COLON_COLON] = ACTIONS(4178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4178), - [anon_sym___declspec] = ACTIONS(4176), - [anon_sym___based] = ACTIONS(4176), - [anon_sym___cdecl] = ACTIONS(4176), - [anon_sym___clrcall] = ACTIONS(4176), - [anon_sym___stdcall] = ACTIONS(4176), - [anon_sym___fastcall] = ACTIONS(4176), - [anon_sym___thiscall] = ACTIONS(4176), - [anon_sym___vectorcall] = ACTIONS(4176), - [anon_sym_LBRACE] = ACTIONS(4178), - [anon_sym_signed] = ACTIONS(4176), - [anon_sym_unsigned] = ACTIONS(4176), - [anon_sym_long] = ACTIONS(4176), - [anon_sym_short] = ACTIONS(4176), - [anon_sym_LBRACK] = ACTIONS(4176), - [anon_sym_static] = ACTIONS(4176), - [anon_sym_register] = ACTIONS(4176), - [anon_sym_inline] = ACTIONS(4176), - [anon_sym___inline] = ACTIONS(4176), - [anon_sym___inline__] = ACTIONS(4176), - [anon_sym___forceinline] = ACTIONS(4176), - [anon_sym_thread_local] = ACTIONS(4176), - [anon_sym___thread] = ACTIONS(4176), - [anon_sym_const] = ACTIONS(4176), - [anon_sym_constexpr] = ACTIONS(4176), - [anon_sym_volatile] = ACTIONS(4176), - [anon_sym_restrict] = ACTIONS(4176), - [anon_sym___restrict__] = ACTIONS(4176), - [anon_sym__Atomic] = ACTIONS(4176), - [anon_sym__Noreturn] = ACTIONS(4176), - [anon_sym_noreturn] = ACTIONS(4176), - [anon_sym__Nonnull] = ACTIONS(4176), - [anon_sym_mutable] = ACTIONS(4176), - [anon_sym_constinit] = ACTIONS(4176), - [anon_sym_consteval] = ACTIONS(4176), - [anon_sym_alignas] = ACTIONS(4176), - [anon_sym__Alignas] = ACTIONS(4176), - [sym_primitive_type] = ACTIONS(4176), - [anon_sym_enum] = ACTIONS(4176), - [anon_sym_class] = ACTIONS(4176), - [anon_sym_struct] = ACTIONS(4176), - [anon_sym_union] = ACTIONS(4176), - [anon_sym_if] = ACTIONS(4176), - [anon_sym_switch] = ACTIONS(4176), - [anon_sym_case] = ACTIONS(4176), - [anon_sym_default] = ACTIONS(4176), - [anon_sym_while] = ACTIONS(4176), - [anon_sym_do] = ACTIONS(4176), - [anon_sym_for] = ACTIONS(4176), - [anon_sym_return] = ACTIONS(4176), - [anon_sym_break] = ACTIONS(4176), - [anon_sym_continue] = ACTIONS(4176), - [anon_sym_goto] = ACTIONS(4176), - [anon_sym_not] = ACTIONS(4176), - [anon_sym_compl] = ACTIONS(4176), - [anon_sym_DASH_DASH] = ACTIONS(4178), - [anon_sym_PLUS_PLUS] = ACTIONS(4178), - [anon_sym_sizeof] = ACTIONS(4176), - [anon_sym___alignof__] = ACTIONS(4176), - [anon_sym___alignof] = ACTIONS(4176), - [anon_sym__alignof] = ACTIONS(4176), - [anon_sym_alignof] = ACTIONS(4176), - [anon_sym__Alignof] = ACTIONS(4176), - [anon_sym_offsetof] = ACTIONS(4176), - [anon_sym__Generic] = ACTIONS(4176), - [anon_sym_typename] = ACTIONS(4176), - [anon_sym_asm] = ACTIONS(4176), - [anon_sym___asm__] = ACTIONS(4176), - [anon_sym___asm] = ACTIONS(4176), - [sym_number_literal] = ACTIONS(4178), - [anon_sym_L_SQUOTE] = ACTIONS(4178), - [anon_sym_u_SQUOTE] = ACTIONS(4178), - [anon_sym_U_SQUOTE] = ACTIONS(4178), - [anon_sym_u8_SQUOTE] = ACTIONS(4178), - [anon_sym_SQUOTE] = ACTIONS(4178), - [anon_sym_L_DQUOTE] = ACTIONS(4178), - [anon_sym_u_DQUOTE] = ACTIONS(4178), - [anon_sym_U_DQUOTE] = ACTIONS(4178), - [anon_sym_u8_DQUOTE] = ACTIONS(4178), - [anon_sym_DQUOTE] = ACTIONS(4178), - [sym_true] = ACTIONS(4176), - [sym_false] = ACTIONS(4176), - [anon_sym_NULL] = ACTIONS(4176), - [anon_sym_nullptr] = ACTIONS(4176), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4176), - [anon_sym_decltype] = ACTIONS(4176), - [anon_sym_explicit] = ACTIONS(4176), - [anon_sym_export] = ACTIONS(4176), - [anon_sym_module] = ACTIONS(4176), - [anon_sym_import] = ACTIONS(4176), - [anon_sym_template] = ACTIONS(4176), - [anon_sym_operator] = ACTIONS(4176), - [anon_sym_try] = ACTIONS(4176), - [anon_sym_delete] = ACTIONS(4176), - [anon_sym_throw] = ACTIONS(4176), - [anon_sym_namespace] = ACTIONS(4176), - [anon_sym_static_assert] = ACTIONS(4176), - [anon_sym_concept] = ACTIONS(4176), - [anon_sym_co_return] = ACTIONS(4176), - [anon_sym_co_yield] = ACTIONS(4176), - [anon_sym_R_DQUOTE] = ACTIONS(4178), - [anon_sym_LR_DQUOTE] = ACTIONS(4178), - [anon_sym_uR_DQUOTE] = ACTIONS(4178), - [anon_sym_UR_DQUOTE] = ACTIONS(4178), - [anon_sym_u8R_DQUOTE] = ACTIONS(4178), - [anon_sym_co_await] = ACTIONS(4176), - [anon_sym_new] = ACTIONS(4176), - [anon_sym_requires] = ACTIONS(4176), - [anon_sym_CARET_CARET] = ACTIONS(4178), - [anon_sym_LBRACK_COLON] = ACTIONS(4178), - [sym_this] = ACTIONS(4176), + [STATE(561)] = { + [sym_identifier] = ACTIONS(3362), + [aux_sym_preproc_include_token1] = ACTIONS(3362), + [aux_sym_preproc_def_token1] = ACTIONS(3362), + [aux_sym_preproc_if_token1] = ACTIONS(3362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), + [sym_preproc_directive] = ACTIONS(3362), + [anon_sym_LPAREN2] = ACTIONS(3364), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_STAR] = ACTIONS(3364), + [anon_sym_AMP_AMP] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3362), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym___extension__] = ACTIONS(3362), + [anon_sym_typedef] = ACTIONS(3362), + [anon_sym_virtual] = ACTIONS(3362), + [anon_sym_extern] = ACTIONS(3362), + [anon_sym___attribute__] = ACTIONS(3362), + [anon_sym___attribute] = ACTIONS(3362), + [anon_sym_using] = ACTIONS(3362), + [anon_sym_COLON_COLON] = ACTIONS(3364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), + [anon_sym___declspec] = ACTIONS(3362), + [anon_sym___based] = ACTIONS(3362), + [anon_sym___cdecl] = ACTIONS(3362), + [anon_sym___clrcall] = ACTIONS(3362), + [anon_sym___stdcall] = ACTIONS(3362), + [anon_sym___fastcall] = ACTIONS(3362), + [anon_sym___thiscall] = ACTIONS(3362), + [anon_sym___vectorcall] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_RBRACE] = ACTIONS(3364), + [anon_sym_signed] = ACTIONS(3362), + [anon_sym_unsigned] = ACTIONS(3362), + [anon_sym_long] = ACTIONS(3362), + [anon_sym_short] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_static] = ACTIONS(3362), + [anon_sym_register] = ACTIONS(3362), + [anon_sym_inline] = ACTIONS(3362), + [anon_sym___inline] = ACTIONS(3362), + [anon_sym___inline__] = ACTIONS(3362), + [anon_sym___forceinline] = ACTIONS(3362), + [anon_sym_thread_local] = ACTIONS(3362), + [anon_sym___thread] = ACTIONS(3362), + [anon_sym_const] = ACTIONS(3362), + [anon_sym_constexpr] = ACTIONS(3362), + [anon_sym_volatile] = ACTIONS(3362), + [anon_sym_restrict] = ACTIONS(3362), + [anon_sym___restrict__] = ACTIONS(3362), + [anon_sym__Atomic] = ACTIONS(3362), + [anon_sym__Noreturn] = ACTIONS(3362), + [anon_sym_noreturn] = ACTIONS(3362), + [anon_sym__Nonnull] = ACTIONS(3362), + [anon_sym_mutable] = ACTIONS(3362), + [anon_sym_constinit] = ACTIONS(3362), + [anon_sym_consteval] = ACTIONS(3362), + [anon_sym_alignas] = ACTIONS(3362), + [anon_sym__Alignas] = ACTIONS(3362), + [sym_primitive_type] = ACTIONS(3362), + [anon_sym_enum] = ACTIONS(3362), + [anon_sym_class] = ACTIONS(3362), + [anon_sym_struct] = ACTIONS(3362), + [anon_sym_union] = ACTIONS(3362), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_else] = ACTIONS(3362), + [anon_sym_switch] = ACTIONS(3362), + [anon_sym_case] = ACTIONS(3362), + [anon_sym_default] = ACTIONS(3362), + [anon_sym_while] = ACTIONS(3362), + [anon_sym_do] = ACTIONS(3362), + [anon_sym_for] = ACTIONS(3362), + [anon_sym_return] = ACTIONS(3362), + [anon_sym_break] = ACTIONS(3362), + [anon_sym_continue] = ACTIONS(3362), + [anon_sym_goto] = ACTIONS(3362), + [anon_sym___try] = ACTIONS(3362), + [anon_sym___leave] = ACTIONS(3362), + [anon_sym_not] = ACTIONS(3362), + [anon_sym_compl] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3364), + [anon_sym_PLUS_PLUS] = ACTIONS(3364), + [anon_sym_sizeof] = ACTIONS(3362), + [anon_sym___alignof__] = ACTIONS(3362), + [anon_sym___alignof] = ACTIONS(3362), + [anon_sym__alignof] = ACTIONS(3362), + [anon_sym_alignof] = ACTIONS(3362), + [anon_sym__Alignof] = ACTIONS(3362), + [anon_sym_offsetof] = ACTIONS(3362), + [anon_sym__Generic] = ACTIONS(3362), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_asm] = ACTIONS(3362), + [anon_sym___asm__] = ACTIONS(3362), + [anon_sym___asm] = ACTIONS(3362), + [sym_number_literal] = ACTIONS(3364), + [anon_sym_L_SQUOTE] = ACTIONS(3364), + [anon_sym_u_SQUOTE] = ACTIONS(3364), + [anon_sym_U_SQUOTE] = ACTIONS(3364), + [anon_sym_u8_SQUOTE] = ACTIONS(3364), + [anon_sym_SQUOTE] = ACTIONS(3364), + [anon_sym_L_DQUOTE] = ACTIONS(3364), + [anon_sym_u_DQUOTE] = ACTIONS(3364), + [anon_sym_U_DQUOTE] = ACTIONS(3364), + [anon_sym_u8_DQUOTE] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [sym_true] = ACTIONS(3362), + [sym_false] = ACTIONS(3362), + [anon_sym_NULL] = ACTIONS(3362), + [anon_sym_nullptr] = ACTIONS(3362), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3362), + [anon_sym_decltype] = ACTIONS(3362), + [anon_sym_explicit] = ACTIONS(3362), + [anon_sym_export] = ACTIONS(3362), + [anon_sym_import] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(3362), + [anon_sym_operator] = ACTIONS(3362), + [anon_sym_try] = ACTIONS(3362), + [anon_sym_delete] = ACTIONS(3362), + [anon_sym_throw] = ACTIONS(3362), + [anon_sym_namespace] = ACTIONS(3362), + [anon_sym_static_assert] = ACTIONS(3362), + [anon_sym_concept] = ACTIONS(3362), + [anon_sym_co_return] = ACTIONS(3362), + [anon_sym_co_yield] = ACTIONS(3362), + [anon_sym_catch] = ACTIONS(3362), + [anon_sym_R_DQUOTE] = ACTIONS(3364), + [anon_sym_LR_DQUOTE] = ACTIONS(3364), + [anon_sym_uR_DQUOTE] = ACTIONS(3364), + [anon_sym_UR_DQUOTE] = ACTIONS(3364), + [anon_sym_u8R_DQUOTE] = ACTIONS(3364), + [anon_sym_co_await] = ACTIONS(3362), + [anon_sym_new] = ACTIONS(3362), + [anon_sym_requires] = ACTIONS(3362), + [anon_sym_CARET_CARET] = ACTIONS(3364), + [anon_sym_LBRACK_COLON] = ACTIONS(3364), + [sym_this] = ACTIONS(3362), }, - [STATE(630)] = { - [ts_builtin_sym_end] = ACTIONS(4190), - [sym_identifier] = ACTIONS(4188), - [aux_sym_preproc_include_token1] = ACTIONS(4188), - [aux_sym_preproc_def_token1] = ACTIONS(4188), - [aux_sym_preproc_if_token1] = ACTIONS(4188), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4188), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4188), - [sym_preproc_directive] = ACTIONS(4188), - [anon_sym_LPAREN2] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4190), - [anon_sym_TILDE] = ACTIONS(4190), - [anon_sym_DASH] = ACTIONS(4188), - [anon_sym_PLUS] = ACTIONS(4188), - [anon_sym_STAR] = ACTIONS(4190), - [anon_sym_AMP_AMP] = ACTIONS(4190), - [anon_sym_AMP] = ACTIONS(4188), - [anon_sym_SEMI] = ACTIONS(4190), - [anon_sym___extension__] = ACTIONS(4188), - [anon_sym_typedef] = ACTIONS(4188), - [anon_sym_virtual] = ACTIONS(4188), - [anon_sym_extern] = ACTIONS(4188), - [anon_sym___attribute__] = ACTIONS(4188), - [anon_sym___attribute] = ACTIONS(4188), - [anon_sym_using] = ACTIONS(4188), - [anon_sym_COLON_COLON] = ACTIONS(4190), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4190), - [anon_sym___declspec] = ACTIONS(4188), - [anon_sym___based] = ACTIONS(4188), - [anon_sym___cdecl] = ACTIONS(4188), - [anon_sym___clrcall] = ACTIONS(4188), - [anon_sym___stdcall] = ACTIONS(4188), - [anon_sym___fastcall] = ACTIONS(4188), - [anon_sym___thiscall] = ACTIONS(4188), - [anon_sym___vectorcall] = ACTIONS(4188), - [anon_sym_LBRACE] = ACTIONS(4190), - [anon_sym_signed] = ACTIONS(4188), - [anon_sym_unsigned] = ACTIONS(4188), - [anon_sym_long] = ACTIONS(4188), - [anon_sym_short] = ACTIONS(4188), - [anon_sym_LBRACK] = ACTIONS(4188), - [anon_sym_static] = ACTIONS(4188), - [anon_sym_register] = ACTIONS(4188), - [anon_sym_inline] = ACTIONS(4188), - [anon_sym___inline] = ACTIONS(4188), - [anon_sym___inline__] = ACTIONS(4188), - [anon_sym___forceinline] = ACTIONS(4188), - [anon_sym_thread_local] = ACTIONS(4188), - [anon_sym___thread] = ACTIONS(4188), - [anon_sym_const] = ACTIONS(4188), - [anon_sym_constexpr] = ACTIONS(4188), - [anon_sym_volatile] = ACTIONS(4188), - [anon_sym_restrict] = ACTIONS(4188), - [anon_sym___restrict__] = ACTIONS(4188), - [anon_sym__Atomic] = ACTIONS(4188), - [anon_sym__Noreturn] = ACTIONS(4188), - [anon_sym_noreturn] = ACTIONS(4188), - [anon_sym__Nonnull] = ACTIONS(4188), - [anon_sym_mutable] = ACTIONS(4188), - [anon_sym_constinit] = ACTIONS(4188), - [anon_sym_consteval] = ACTIONS(4188), - [anon_sym_alignas] = ACTIONS(4188), - [anon_sym__Alignas] = ACTIONS(4188), - [sym_primitive_type] = ACTIONS(4188), - [anon_sym_enum] = ACTIONS(4188), - [anon_sym_class] = ACTIONS(4188), - [anon_sym_struct] = ACTIONS(4188), - [anon_sym_union] = ACTIONS(4188), - [anon_sym_if] = ACTIONS(4188), - [anon_sym_switch] = ACTIONS(4188), - [anon_sym_case] = ACTIONS(4188), - [anon_sym_default] = ACTIONS(4188), - [anon_sym_while] = ACTIONS(4188), - [anon_sym_do] = ACTIONS(4188), - [anon_sym_for] = ACTIONS(4188), - [anon_sym_return] = ACTIONS(4188), - [anon_sym_break] = ACTIONS(4188), - [anon_sym_continue] = ACTIONS(4188), - [anon_sym_goto] = ACTIONS(4188), - [anon_sym_not] = ACTIONS(4188), - [anon_sym_compl] = ACTIONS(4188), - [anon_sym_DASH_DASH] = ACTIONS(4190), - [anon_sym_PLUS_PLUS] = ACTIONS(4190), - [anon_sym_sizeof] = ACTIONS(4188), - [anon_sym___alignof__] = ACTIONS(4188), - [anon_sym___alignof] = ACTIONS(4188), - [anon_sym__alignof] = ACTIONS(4188), - [anon_sym_alignof] = ACTIONS(4188), - [anon_sym__Alignof] = ACTIONS(4188), - [anon_sym_offsetof] = ACTIONS(4188), - [anon_sym__Generic] = ACTIONS(4188), - [anon_sym_typename] = ACTIONS(4188), - [anon_sym_asm] = ACTIONS(4188), - [anon_sym___asm__] = ACTIONS(4188), - [anon_sym___asm] = ACTIONS(4188), - [sym_number_literal] = ACTIONS(4190), - [anon_sym_L_SQUOTE] = ACTIONS(4190), - [anon_sym_u_SQUOTE] = ACTIONS(4190), - [anon_sym_U_SQUOTE] = ACTIONS(4190), - [anon_sym_u8_SQUOTE] = ACTIONS(4190), - [anon_sym_SQUOTE] = ACTIONS(4190), - [anon_sym_L_DQUOTE] = ACTIONS(4190), - [anon_sym_u_DQUOTE] = ACTIONS(4190), - [anon_sym_U_DQUOTE] = ACTIONS(4190), - [anon_sym_u8_DQUOTE] = ACTIONS(4190), - [anon_sym_DQUOTE] = ACTIONS(4190), - [sym_true] = ACTIONS(4188), - [sym_false] = ACTIONS(4188), - [anon_sym_NULL] = ACTIONS(4188), - [anon_sym_nullptr] = ACTIONS(4188), + [STATE(562)] = { + [ts_builtin_sym_end] = ACTIONS(3526), + [sym_identifier] = ACTIONS(3524), + [aux_sym_preproc_include_token1] = ACTIONS(3524), + [aux_sym_preproc_def_token1] = ACTIONS(3524), + [aux_sym_preproc_if_token1] = ACTIONS(3524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3524), + [sym_preproc_directive] = ACTIONS(3524), + [anon_sym_LPAREN2] = ACTIONS(3526), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_TILDE] = ACTIONS(3526), + [anon_sym_DASH] = ACTIONS(3524), + [anon_sym_PLUS] = ACTIONS(3524), + [anon_sym_STAR] = ACTIONS(3526), + [anon_sym_AMP_AMP] = ACTIONS(3526), + [anon_sym_AMP] = ACTIONS(3524), + [anon_sym_SEMI] = ACTIONS(3526), + [anon_sym___extension__] = ACTIONS(3524), + [anon_sym_typedef] = ACTIONS(3524), + [anon_sym_virtual] = ACTIONS(3524), + [anon_sym_extern] = ACTIONS(3524), + [anon_sym___attribute__] = ACTIONS(3524), + [anon_sym___attribute] = ACTIONS(3524), + [anon_sym_using] = ACTIONS(3524), + [anon_sym_COLON_COLON] = ACTIONS(3526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3526), + [anon_sym___declspec] = ACTIONS(3524), + [anon_sym___based] = ACTIONS(3524), + [anon_sym___cdecl] = ACTIONS(3524), + [anon_sym___clrcall] = ACTIONS(3524), + [anon_sym___stdcall] = ACTIONS(3524), + [anon_sym___fastcall] = ACTIONS(3524), + [anon_sym___thiscall] = ACTIONS(3524), + [anon_sym___vectorcall] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(3526), + [anon_sym_signed] = ACTIONS(3524), + [anon_sym_unsigned] = ACTIONS(3524), + [anon_sym_long] = ACTIONS(3524), + [anon_sym_short] = ACTIONS(3524), + [anon_sym_LBRACK] = ACTIONS(3524), + [anon_sym_static] = ACTIONS(3524), + [anon_sym_register] = ACTIONS(3524), + [anon_sym_inline] = ACTIONS(3524), + [anon_sym___inline] = ACTIONS(3524), + [anon_sym___inline__] = ACTIONS(3524), + [anon_sym___forceinline] = ACTIONS(3524), + [anon_sym_thread_local] = ACTIONS(3524), + [anon_sym___thread] = ACTIONS(3524), + [anon_sym_const] = ACTIONS(3524), + [anon_sym_constexpr] = ACTIONS(3524), + [anon_sym_volatile] = ACTIONS(3524), + [anon_sym_restrict] = ACTIONS(3524), + [anon_sym___restrict__] = ACTIONS(3524), + [anon_sym__Atomic] = ACTIONS(3524), + [anon_sym__Noreturn] = ACTIONS(3524), + [anon_sym_noreturn] = ACTIONS(3524), + [anon_sym__Nonnull] = ACTIONS(3524), + [anon_sym_mutable] = ACTIONS(3524), + [anon_sym_constinit] = ACTIONS(3524), + [anon_sym_consteval] = ACTIONS(3524), + [anon_sym_alignas] = ACTIONS(3524), + [anon_sym__Alignas] = ACTIONS(3524), + [sym_primitive_type] = ACTIONS(3524), + [anon_sym_enum] = ACTIONS(3524), + [anon_sym_class] = ACTIONS(3524), + [anon_sym_struct] = ACTIONS(3524), + [anon_sym_union] = ACTIONS(3524), + [anon_sym_if] = ACTIONS(3524), + [anon_sym_else] = ACTIONS(3524), + [anon_sym_switch] = ACTIONS(3524), + [anon_sym_case] = ACTIONS(3524), + [anon_sym_default] = ACTIONS(3524), + [anon_sym_while] = ACTIONS(3524), + [anon_sym_do] = ACTIONS(3524), + [anon_sym_for] = ACTIONS(3524), + [anon_sym_return] = ACTIONS(3524), + [anon_sym_break] = ACTIONS(3524), + [anon_sym_continue] = ACTIONS(3524), + [anon_sym_goto] = ACTIONS(3524), + [anon_sym___try] = ACTIONS(3524), + [anon_sym___leave] = ACTIONS(3524), + [anon_sym_not] = ACTIONS(3524), + [anon_sym_compl] = ACTIONS(3524), + [anon_sym_DASH_DASH] = ACTIONS(3526), + [anon_sym_PLUS_PLUS] = ACTIONS(3526), + [anon_sym_sizeof] = ACTIONS(3524), + [anon_sym___alignof__] = ACTIONS(3524), + [anon_sym___alignof] = ACTIONS(3524), + [anon_sym__alignof] = ACTIONS(3524), + [anon_sym_alignof] = ACTIONS(3524), + [anon_sym__Alignof] = ACTIONS(3524), + [anon_sym_offsetof] = ACTIONS(3524), + [anon_sym__Generic] = ACTIONS(3524), + [anon_sym_typename] = ACTIONS(3524), + [anon_sym_asm] = ACTIONS(3524), + [anon_sym___asm__] = ACTIONS(3524), + [anon_sym___asm] = ACTIONS(3524), + [sym_number_literal] = ACTIONS(3526), + [anon_sym_L_SQUOTE] = ACTIONS(3526), + [anon_sym_u_SQUOTE] = ACTIONS(3526), + [anon_sym_U_SQUOTE] = ACTIONS(3526), + [anon_sym_u8_SQUOTE] = ACTIONS(3526), + [anon_sym_SQUOTE] = ACTIONS(3526), + [anon_sym_L_DQUOTE] = ACTIONS(3526), + [anon_sym_u_DQUOTE] = ACTIONS(3526), + [anon_sym_U_DQUOTE] = ACTIONS(3526), + [anon_sym_u8_DQUOTE] = ACTIONS(3526), + [anon_sym_DQUOTE] = ACTIONS(3526), + [sym_true] = ACTIONS(3524), + [sym_false] = ACTIONS(3524), + [anon_sym_NULL] = ACTIONS(3524), + [anon_sym_nullptr] = ACTIONS(3524), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4188), - [anon_sym_decltype] = ACTIONS(4188), - [anon_sym_explicit] = ACTIONS(4188), - [anon_sym_export] = ACTIONS(4188), - [anon_sym_module] = ACTIONS(4188), - [anon_sym_import] = ACTIONS(4188), - [anon_sym_template] = ACTIONS(4188), - [anon_sym_operator] = ACTIONS(4188), - [anon_sym_try] = ACTIONS(4188), - [anon_sym_delete] = ACTIONS(4188), - [anon_sym_throw] = ACTIONS(4188), - [anon_sym_namespace] = ACTIONS(4188), - [anon_sym_static_assert] = ACTIONS(4188), - [anon_sym_concept] = ACTIONS(4188), - [anon_sym_co_return] = ACTIONS(4188), - [anon_sym_co_yield] = ACTIONS(4188), - [anon_sym_R_DQUOTE] = ACTIONS(4190), - [anon_sym_LR_DQUOTE] = ACTIONS(4190), - [anon_sym_uR_DQUOTE] = ACTIONS(4190), - [anon_sym_UR_DQUOTE] = ACTIONS(4190), - [anon_sym_u8R_DQUOTE] = ACTIONS(4190), - [anon_sym_co_await] = ACTIONS(4188), - [anon_sym_new] = ACTIONS(4188), - [anon_sym_requires] = ACTIONS(4188), - [anon_sym_CARET_CARET] = ACTIONS(4190), - [anon_sym_LBRACK_COLON] = ACTIONS(4190), - [sym_this] = ACTIONS(4188), - }, - [STATE(631)] = { - [ts_builtin_sym_end] = ACTIONS(4072), - [sym_identifier] = ACTIONS(4070), - [aux_sym_preproc_include_token1] = ACTIONS(4070), - [aux_sym_preproc_def_token1] = ACTIONS(4070), - [aux_sym_preproc_if_token1] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), - [sym_preproc_directive] = ACTIONS(4070), - [anon_sym_LPAREN2] = ACTIONS(4072), - [anon_sym_BANG] = ACTIONS(4072), - [anon_sym_TILDE] = ACTIONS(4072), - [anon_sym_DASH] = ACTIONS(4070), - [anon_sym_PLUS] = ACTIONS(4070), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4070), - [anon_sym_SEMI] = ACTIONS(4072), - [anon_sym___extension__] = ACTIONS(4070), - [anon_sym_typedef] = ACTIONS(4070), - [anon_sym_virtual] = ACTIONS(4070), - [anon_sym_extern] = ACTIONS(4070), - [anon_sym___attribute__] = ACTIONS(4070), - [anon_sym___attribute] = ACTIONS(4070), - [anon_sym_using] = ACTIONS(4070), - [anon_sym_COLON_COLON] = ACTIONS(4072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), - [anon_sym___declspec] = ACTIONS(4070), - [anon_sym___based] = ACTIONS(4070), - [anon_sym___cdecl] = ACTIONS(4070), - [anon_sym___clrcall] = ACTIONS(4070), - [anon_sym___stdcall] = ACTIONS(4070), - [anon_sym___fastcall] = ACTIONS(4070), - [anon_sym___thiscall] = ACTIONS(4070), - [anon_sym___vectorcall] = ACTIONS(4070), - [anon_sym_LBRACE] = ACTIONS(4072), - [anon_sym_signed] = ACTIONS(4070), - [anon_sym_unsigned] = ACTIONS(4070), - [anon_sym_long] = ACTIONS(4070), - [anon_sym_short] = ACTIONS(4070), - [anon_sym_LBRACK] = ACTIONS(4070), - [anon_sym_static] = ACTIONS(4070), - [anon_sym_register] = ACTIONS(4070), - [anon_sym_inline] = ACTIONS(4070), - [anon_sym___inline] = ACTIONS(4070), - [anon_sym___inline__] = ACTIONS(4070), - [anon_sym___forceinline] = ACTIONS(4070), - [anon_sym_thread_local] = ACTIONS(4070), - [anon_sym___thread] = ACTIONS(4070), - [anon_sym_const] = ACTIONS(4070), - [anon_sym_constexpr] = ACTIONS(4070), - [anon_sym_volatile] = ACTIONS(4070), - [anon_sym_restrict] = ACTIONS(4070), - [anon_sym___restrict__] = ACTIONS(4070), - [anon_sym__Atomic] = ACTIONS(4070), - [anon_sym__Noreturn] = ACTIONS(4070), - [anon_sym_noreturn] = ACTIONS(4070), - [anon_sym__Nonnull] = ACTIONS(4070), - [anon_sym_mutable] = ACTIONS(4070), - [anon_sym_constinit] = ACTIONS(4070), - [anon_sym_consteval] = ACTIONS(4070), - [anon_sym_alignas] = ACTIONS(4070), - [anon_sym__Alignas] = ACTIONS(4070), - [sym_primitive_type] = ACTIONS(4070), - [anon_sym_enum] = ACTIONS(4070), - [anon_sym_class] = ACTIONS(4070), - [anon_sym_struct] = ACTIONS(4070), - [anon_sym_union] = ACTIONS(4070), - [anon_sym_if] = ACTIONS(4070), - [anon_sym_switch] = ACTIONS(4070), - [anon_sym_case] = ACTIONS(4070), - [anon_sym_default] = ACTIONS(4070), - [anon_sym_while] = ACTIONS(4070), - [anon_sym_do] = ACTIONS(4070), - [anon_sym_for] = ACTIONS(4070), - [anon_sym_return] = ACTIONS(4070), - [anon_sym_break] = ACTIONS(4070), - [anon_sym_continue] = ACTIONS(4070), - [anon_sym_goto] = ACTIONS(4070), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_compl] = ACTIONS(4070), - [anon_sym_DASH_DASH] = ACTIONS(4072), - [anon_sym_PLUS_PLUS] = ACTIONS(4072), - [anon_sym_sizeof] = ACTIONS(4070), - [anon_sym___alignof__] = ACTIONS(4070), - [anon_sym___alignof] = ACTIONS(4070), - [anon_sym__alignof] = ACTIONS(4070), - [anon_sym_alignof] = ACTIONS(4070), - [anon_sym__Alignof] = ACTIONS(4070), - [anon_sym_offsetof] = ACTIONS(4070), - [anon_sym__Generic] = ACTIONS(4070), - [anon_sym_typename] = ACTIONS(4070), - [anon_sym_asm] = ACTIONS(4070), - [anon_sym___asm__] = ACTIONS(4070), - [anon_sym___asm] = ACTIONS(4070), - [sym_number_literal] = ACTIONS(4072), - [anon_sym_L_SQUOTE] = ACTIONS(4072), - [anon_sym_u_SQUOTE] = ACTIONS(4072), - [anon_sym_U_SQUOTE] = ACTIONS(4072), - [anon_sym_u8_SQUOTE] = ACTIONS(4072), - [anon_sym_SQUOTE] = ACTIONS(4072), - [anon_sym_L_DQUOTE] = ACTIONS(4072), - [anon_sym_u_DQUOTE] = ACTIONS(4072), - [anon_sym_U_DQUOTE] = ACTIONS(4072), - [anon_sym_u8_DQUOTE] = ACTIONS(4072), - [anon_sym_DQUOTE] = ACTIONS(4072), - [sym_true] = ACTIONS(4070), - [sym_false] = ACTIONS(4070), - [anon_sym_NULL] = ACTIONS(4070), - [anon_sym_nullptr] = ACTIONS(4070), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4070), - [anon_sym_decltype] = ACTIONS(4070), - [anon_sym_explicit] = ACTIONS(4070), - [anon_sym_export] = ACTIONS(4070), - [anon_sym_module] = ACTIONS(4070), - [anon_sym_import] = ACTIONS(4070), - [anon_sym_template] = ACTIONS(4070), - [anon_sym_operator] = ACTIONS(4070), - [anon_sym_try] = ACTIONS(4070), - [anon_sym_delete] = ACTIONS(4070), - [anon_sym_throw] = ACTIONS(4070), - [anon_sym_namespace] = ACTIONS(4070), - [anon_sym_static_assert] = ACTIONS(4070), - [anon_sym_concept] = ACTIONS(4070), - [anon_sym_co_return] = ACTIONS(4070), - [anon_sym_co_yield] = ACTIONS(4070), - [anon_sym_R_DQUOTE] = ACTIONS(4072), - [anon_sym_LR_DQUOTE] = ACTIONS(4072), - [anon_sym_uR_DQUOTE] = ACTIONS(4072), - [anon_sym_UR_DQUOTE] = ACTIONS(4072), - [anon_sym_u8R_DQUOTE] = ACTIONS(4072), - [anon_sym_co_await] = ACTIONS(4070), - [anon_sym_new] = ACTIONS(4070), - [anon_sym_requires] = ACTIONS(4070), - [anon_sym_CARET_CARET] = ACTIONS(4072), - [anon_sym_LBRACK_COLON] = ACTIONS(4072), - [sym_this] = ACTIONS(4070), - }, - [STATE(632)] = { - [ts_builtin_sym_end] = ACTIONS(4072), - [sym_identifier] = ACTIONS(4070), - [aux_sym_preproc_include_token1] = ACTIONS(4070), - [aux_sym_preproc_def_token1] = ACTIONS(4070), - [aux_sym_preproc_if_token1] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), - [sym_preproc_directive] = ACTIONS(4070), - [anon_sym_LPAREN2] = ACTIONS(4072), - [anon_sym_BANG] = ACTIONS(4072), - [anon_sym_TILDE] = ACTIONS(4072), - [anon_sym_DASH] = ACTIONS(4070), - [anon_sym_PLUS] = ACTIONS(4070), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4070), - [anon_sym_SEMI] = ACTIONS(4072), - [anon_sym___extension__] = ACTIONS(4070), - [anon_sym_typedef] = ACTIONS(4070), - [anon_sym_virtual] = ACTIONS(4070), - [anon_sym_extern] = ACTIONS(4070), - [anon_sym___attribute__] = ACTIONS(4070), - [anon_sym___attribute] = ACTIONS(4070), - [anon_sym_using] = ACTIONS(4070), - [anon_sym_COLON_COLON] = ACTIONS(4072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), - [anon_sym___declspec] = ACTIONS(4070), - [anon_sym___based] = ACTIONS(4070), - [anon_sym___cdecl] = ACTIONS(4070), - [anon_sym___clrcall] = ACTIONS(4070), - [anon_sym___stdcall] = ACTIONS(4070), - [anon_sym___fastcall] = ACTIONS(4070), - [anon_sym___thiscall] = ACTIONS(4070), - [anon_sym___vectorcall] = ACTIONS(4070), - [anon_sym_LBRACE] = ACTIONS(4072), - [anon_sym_signed] = ACTIONS(4070), - [anon_sym_unsigned] = ACTIONS(4070), - [anon_sym_long] = ACTIONS(4070), - [anon_sym_short] = ACTIONS(4070), - [anon_sym_LBRACK] = ACTIONS(4070), - [anon_sym_static] = ACTIONS(4070), - [anon_sym_register] = ACTIONS(4070), - [anon_sym_inline] = ACTIONS(4070), - [anon_sym___inline] = ACTIONS(4070), - [anon_sym___inline__] = ACTIONS(4070), - [anon_sym___forceinline] = ACTIONS(4070), - [anon_sym_thread_local] = ACTIONS(4070), - [anon_sym___thread] = ACTIONS(4070), - [anon_sym_const] = ACTIONS(4070), - [anon_sym_constexpr] = ACTIONS(4070), - [anon_sym_volatile] = ACTIONS(4070), - [anon_sym_restrict] = ACTIONS(4070), - [anon_sym___restrict__] = ACTIONS(4070), - [anon_sym__Atomic] = ACTIONS(4070), - [anon_sym__Noreturn] = ACTIONS(4070), - [anon_sym_noreturn] = ACTIONS(4070), - [anon_sym__Nonnull] = ACTIONS(4070), - [anon_sym_mutable] = ACTIONS(4070), - [anon_sym_constinit] = ACTIONS(4070), - [anon_sym_consteval] = ACTIONS(4070), - [anon_sym_alignas] = ACTIONS(4070), - [anon_sym__Alignas] = ACTIONS(4070), - [sym_primitive_type] = ACTIONS(4070), - [anon_sym_enum] = ACTIONS(4070), - [anon_sym_class] = ACTIONS(4070), - [anon_sym_struct] = ACTIONS(4070), - [anon_sym_union] = ACTIONS(4070), - [anon_sym_if] = ACTIONS(4070), - [anon_sym_switch] = ACTIONS(4070), - [anon_sym_case] = ACTIONS(4070), - [anon_sym_default] = ACTIONS(4070), - [anon_sym_while] = ACTIONS(4070), - [anon_sym_do] = ACTIONS(4070), - [anon_sym_for] = ACTIONS(4070), - [anon_sym_return] = ACTIONS(4070), - [anon_sym_break] = ACTIONS(4070), - [anon_sym_continue] = ACTIONS(4070), - [anon_sym_goto] = ACTIONS(4070), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_compl] = ACTIONS(4070), - [anon_sym_DASH_DASH] = ACTIONS(4072), - [anon_sym_PLUS_PLUS] = ACTIONS(4072), - [anon_sym_sizeof] = ACTIONS(4070), - [anon_sym___alignof__] = ACTIONS(4070), - [anon_sym___alignof] = ACTIONS(4070), - [anon_sym__alignof] = ACTIONS(4070), - [anon_sym_alignof] = ACTIONS(4070), - [anon_sym__Alignof] = ACTIONS(4070), - [anon_sym_offsetof] = ACTIONS(4070), - [anon_sym__Generic] = ACTIONS(4070), - [anon_sym_typename] = ACTIONS(4070), - [anon_sym_asm] = ACTIONS(4070), - [anon_sym___asm__] = ACTIONS(4070), - [anon_sym___asm] = ACTIONS(4070), - [sym_number_literal] = ACTIONS(4072), - [anon_sym_L_SQUOTE] = ACTIONS(4072), - [anon_sym_u_SQUOTE] = ACTIONS(4072), - [anon_sym_U_SQUOTE] = ACTIONS(4072), - [anon_sym_u8_SQUOTE] = ACTIONS(4072), - [anon_sym_SQUOTE] = ACTIONS(4072), - [anon_sym_L_DQUOTE] = ACTIONS(4072), - [anon_sym_u_DQUOTE] = ACTIONS(4072), - [anon_sym_U_DQUOTE] = ACTIONS(4072), - [anon_sym_u8_DQUOTE] = ACTIONS(4072), - [anon_sym_DQUOTE] = ACTIONS(4072), - [sym_true] = ACTIONS(4070), - [sym_false] = ACTIONS(4070), - [anon_sym_NULL] = ACTIONS(4070), - [anon_sym_nullptr] = ACTIONS(4070), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4070), - [anon_sym_decltype] = ACTIONS(4070), - [anon_sym_explicit] = ACTIONS(4070), - [anon_sym_export] = ACTIONS(4070), - [anon_sym_module] = ACTIONS(4070), - [anon_sym_import] = ACTIONS(4070), - [anon_sym_template] = ACTIONS(4070), - [anon_sym_operator] = ACTIONS(4070), - [anon_sym_try] = ACTIONS(4070), - [anon_sym_delete] = ACTIONS(4070), - [anon_sym_throw] = ACTIONS(4070), - [anon_sym_namespace] = ACTIONS(4070), - [anon_sym_static_assert] = ACTIONS(4070), - [anon_sym_concept] = ACTIONS(4070), - [anon_sym_co_return] = ACTIONS(4070), - [anon_sym_co_yield] = ACTIONS(4070), - [anon_sym_R_DQUOTE] = ACTIONS(4072), - [anon_sym_LR_DQUOTE] = ACTIONS(4072), - [anon_sym_uR_DQUOTE] = ACTIONS(4072), - [anon_sym_UR_DQUOTE] = ACTIONS(4072), - [anon_sym_u8R_DQUOTE] = ACTIONS(4072), - [anon_sym_co_await] = ACTIONS(4070), - [anon_sym_new] = ACTIONS(4070), - [anon_sym_requires] = ACTIONS(4070), - [anon_sym_CARET_CARET] = ACTIONS(4072), - [anon_sym_LBRACK_COLON] = ACTIONS(4072), - [sym_this] = ACTIONS(4070), - }, - [STATE(633)] = { - [ts_builtin_sym_end] = ACTIONS(3996), - [sym_identifier] = ACTIONS(3994), - [aux_sym_preproc_include_token1] = ACTIONS(3994), - [aux_sym_preproc_def_token1] = ACTIONS(3994), - [aux_sym_preproc_if_token1] = ACTIONS(3994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3994), - [sym_preproc_directive] = ACTIONS(3994), - [anon_sym_LPAREN2] = ACTIONS(3996), - [anon_sym_BANG] = ACTIONS(3996), - [anon_sym_TILDE] = ACTIONS(3996), - [anon_sym_DASH] = ACTIONS(3994), - [anon_sym_PLUS] = ACTIONS(3994), - [anon_sym_STAR] = ACTIONS(3996), - [anon_sym_AMP_AMP] = ACTIONS(3996), - [anon_sym_AMP] = ACTIONS(3994), - [anon_sym_SEMI] = ACTIONS(3996), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_typedef] = ACTIONS(3994), - [anon_sym_virtual] = ACTIONS(3994), - [anon_sym_extern] = ACTIONS(3994), - [anon_sym___attribute__] = ACTIONS(3994), - [anon_sym___attribute] = ACTIONS(3994), - [anon_sym_using] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3996), - [anon_sym___declspec] = ACTIONS(3994), - [anon_sym___based] = ACTIONS(3994), - [anon_sym___cdecl] = ACTIONS(3994), - [anon_sym___clrcall] = ACTIONS(3994), - [anon_sym___stdcall] = ACTIONS(3994), - [anon_sym___fastcall] = ACTIONS(3994), - [anon_sym___thiscall] = ACTIONS(3994), - [anon_sym___vectorcall] = ACTIONS(3994), - [anon_sym_LBRACE] = ACTIONS(3996), - [anon_sym_signed] = ACTIONS(3994), - [anon_sym_unsigned] = ACTIONS(3994), - [anon_sym_long] = ACTIONS(3994), - [anon_sym_short] = ACTIONS(3994), - [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_static] = ACTIONS(3994), - [anon_sym_register] = ACTIONS(3994), - [anon_sym_inline] = ACTIONS(3994), - [anon_sym___inline] = ACTIONS(3994), - [anon_sym___inline__] = ACTIONS(3994), - [anon_sym___forceinline] = ACTIONS(3994), - [anon_sym_thread_local] = ACTIONS(3994), - [anon_sym___thread] = ACTIONS(3994), - [anon_sym_const] = ACTIONS(3994), - [anon_sym_constexpr] = ACTIONS(3994), - [anon_sym_volatile] = ACTIONS(3994), - [anon_sym_restrict] = ACTIONS(3994), - [anon_sym___restrict__] = ACTIONS(3994), - [anon_sym__Atomic] = ACTIONS(3994), - [anon_sym__Noreturn] = ACTIONS(3994), - [anon_sym_noreturn] = ACTIONS(3994), - [anon_sym__Nonnull] = ACTIONS(3994), - [anon_sym_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [anon_sym_alignas] = ACTIONS(3994), - [anon_sym__Alignas] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(3994), - [anon_sym_enum] = ACTIONS(3994), - [anon_sym_class] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(3994), - [anon_sym_union] = ACTIONS(3994), - [anon_sym_if] = ACTIONS(3994), - [anon_sym_switch] = ACTIONS(3994), - [anon_sym_case] = ACTIONS(3994), - [anon_sym_default] = ACTIONS(3994), - [anon_sym_while] = ACTIONS(3994), - [anon_sym_do] = ACTIONS(3994), - [anon_sym_for] = ACTIONS(3994), - [anon_sym_return] = ACTIONS(3994), - [anon_sym_break] = ACTIONS(3994), - [anon_sym_continue] = ACTIONS(3994), - [anon_sym_goto] = ACTIONS(3994), - [anon_sym_not] = ACTIONS(3994), - [anon_sym_compl] = ACTIONS(3994), - [anon_sym_DASH_DASH] = ACTIONS(3996), - [anon_sym_PLUS_PLUS] = ACTIONS(3996), - [anon_sym_sizeof] = ACTIONS(3994), - [anon_sym___alignof__] = ACTIONS(3994), - [anon_sym___alignof] = ACTIONS(3994), - [anon_sym__alignof] = ACTIONS(3994), - [anon_sym_alignof] = ACTIONS(3994), - [anon_sym__Alignof] = ACTIONS(3994), - [anon_sym_offsetof] = ACTIONS(3994), - [anon_sym__Generic] = ACTIONS(3994), - [anon_sym_typename] = ACTIONS(3994), - [anon_sym_asm] = ACTIONS(3994), - [anon_sym___asm__] = ACTIONS(3994), - [anon_sym___asm] = ACTIONS(3994), - [sym_number_literal] = ACTIONS(3996), - [anon_sym_L_SQUOTE] = ACTIONS(3996), - [anon_sym_u_SQUOTE] = ACTIONS(3996), - [anon_sym_U_SQUOTE] = ACTIONS(3996), - [anon_sym_u8_SQUOTE] = ACTIONS(3996), - [anon_sym_SQUOTE] = ACTIONS(3996), - [anon_sym_L_DQUOTE] = ACTIONS(3996), - [anon_sym_u_DQUOTE] = ACTIONS(3996), - [anon_sym_U_DQUOTE] = ACTIONS(3996), - [anon_sym_u8_DQUOTE] = ACTIONS(3996), - [anon_sym_DQUOTE] = ACTIONS(3996), - [sym_true] = ACTIONS(3994), - [sym_false] = ACTIONS(3994), - [anon_sym_NULL] = ACTIONS(3994), - [anon_sym_nullptr] = ACTIONS(3994), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3994), - [anon_sym_decltype] = ACTIONS(3994), - [anon_sym_explicit] = ACTIONS(3994), - [anon_sym_export] = ACTIONS(3994), - [anon_sym_module] = ACTIONS(3994), - [anon_sym_import] = ACTIONS(3994), - [anon_sym_template] = ACTIONS(3994), - [anon_sym_operator] = ACTIONS(3994), - [anon_sym_try] = ACTIONS(3994), - [anon_sym_delete] = ACTIONS(3994), - [anon_sym_throw] = ACTIONS(3994), - [anon_sym_namespace] = ACTIONS(3994), - [anon_sym_static_assert] = ACTIONS(3994), - [anon_sym_concept] = ACTIONS(3994), - [anon_sym_co_return] = ACTIONS(3994), - [anon_sym_co_yield] = ACTIONS(3994), - [anon_sym_R_DQUOTE] = ACTIONS(3996), - [anon_sym_LR_DQUOTE] = ACTIONS(3996), - [anon_sym_uR_DQUOTE] = ACTIONS(3996), - [anon_sym_UR_DQUOTE] = ACTIONS(3996), - [anon_sym_u8R_DQUOTE] = ACTIONS(3996), - [anon_sym_co_await] = ACTIONS(3994), - [anon_sym_new] = ACTIONS(3994), - [anon_sym_requires] = ACTIONS(3994), - [anon_sym_CARET_CARET] = ACTIONS(3996), - [anon_sym_LBRACK_COLON] = ACTIONS(3996), - [sym_this] = ACTIONS(3994), - }, - [STATE(634)] = { - [ts_builtin_sym_end] = ACTIONS(4076), - [sym_identifier] = ACTIONS(4074), - [aux_sym_preproc_include_token1] = ACTIONS(4074), - [aux_sym_preproc_def_token1] = ACTIONS(4074), - [aux_sym_preproc_if_token1] = ACTIONS(4074), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4074), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4074), - [sym_preproc_directive] = ACTIONS(4074), - [anon_sym_LPAREN2] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(4076), - [anon_sym_TILDE] = ACTIONS(4076), - [anon_sym_DASH] = ACTIONS(4074), - [anon_sym_PLUS] = ACTIONS(4074), - [anon_sym_STAR] = ACTIONS(4076), - [anon_sym_AMP_AMP] = ACTIONS(4076), - [anon_sym_AMP] = ACTIONS(4074), - [anon_sym_SEMI] = ACTIONS(4076), - [anon_sym___extension__] = ACTIONS(4074), - [anon_sym_typedef] = ACTIONS(4074), - [anon_sym_virtual] = ACTIONS(4074), - [anon_sym_extern] = ACTIONS(4074), - [anon_sym___attribute__] = ACTIONS(4074), - [anon_sym___attribute] = ACTIONS(4074), - [anon_sym_using] = ACTIONS(4074), - [anon_sym_COLON_COLON] = ACTIONS(4076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4076), - [anon_sym___declspec] = ACTIONS(4074), - [anon_sym___based] = ACTIONS(4074), - [anon_sym___cdecl] = ACTIONS(4074), - [anon_sym___clrcall] = ACTIONS(4074), - [anon_sym___stdcall] = ACTIONS(4074), - [anon_sym___fastcall] = ACTIONS(4074), - [anon_sym___thiscall] = ACTIONS(4074), - [anon_sym___vectorcall] = ACTIONS(4074), - [anon_sym_LBRACE] = ACTIONS(4076), - [anon_sym_signed] = ACTIONS(4074), - [anon_sym_unsigned] = ACTIONS(4074), - [anon_sym_long] = ACTIONS(4074), - [anon_sym_short] = ACTIONS(4074), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_static] = ACTIONS(4074), - [anon_sym_register] = ACTIONS(4074), - [anon_sym_inline] = ACTIONS(4074), - [anon_sym___inline] = ACTIONS(4074), - [anon_sym___inline__] = ACTIONS(4074), - [anon_sym___forceinline] = ACTIONS(4074), - [anon_sym_thread_local] = ACTIONS(4074), - [anon_sym___thread] = ACTIONS(4074), - [anon_sym_const] = ACTIONS(4074), - [anon_sym_constexpr] = ACTIONS(4074), - [anon_sym_volatile] = ACTIONS(4074), - [anon_sym_restrict] = ACTIONS(4074), - [anon_sym___restrict__] = ACTIONS(4074), - [anon_sym__Atomic] = ACTIONS(4074), - [anon_sym__Noreturn] = ACTIONS(4074), - [anon_sym_noreturn] = ACTIONS(4074), - [anon_sym__Nonnull] = ACTIONS(4074), - [anon_sym_mutable] = ACTIONS(4074), - [anon_sym_constinit] = ACTIONS(4074), - [anon_sym_consteval] = ACTIONS(4074), - [anon_sym_alignas] = ACTIONS(4074), - [anon_sym__Alignas] = ACTIONS(4074), - [sym_primitive_type] = ACTIONS(4074), - [anon_sym_enum] = ACTIONS(4074), - [anon_sym_class] = ACTIONS(4074), - [anon_sym_struct] = ACTIONS(4074), - [anon_sym_union] = ACTIONS(4074), - [anon_sym_if] = ACTIONS(4074), - [anon_sym_switch] = ACTIONS(4074), - [anon_sym_case] = ACTIONS(4074), - [anon_sym_default] = ACTIONS(4074), - [anon_sym_while] = ACTIONS(4074), - [anon_sym_do] = ACTIONS(4074), - [anon_sym_for] = ACTIONS(4074), - [anon_sym_return] = ACTIONS(4074), - [anon_sym_break] = ACTIONS(4074), - [anon_sym_continue] = ACTIONS(4074), - [anon_sym_goto] = ACTIONS(4074), - [anon_sym_not] = ACTIONS(4074), - [anon_sym_compl] = ACTIONS(4074), - [anon_sym_DASH_DASH] = ACTIONS(4076), - [anon_sym_PLUS_PLUS] = ACTIONS(4076), - [anon_sym_sizeof] = ACTIONS(4074), - [anon_sym___alignof__] = ACTIONS(4074), - [anon_sym___alignof] = ACTIONS(4074), - [anon_sym__alignof] = ACTIONS(4074), - [anon_sym_alignof] = ACTIONS(4074), - [anon_sym__Alignof] = ACTIONS(4074), - [anon_sym_offsetof] = ACTIONS(4074), - [anon_sym__Generic] = ACTIONS(4074), - [anon_sym_typename] = ACTIONS(4074), - [anon_sym_asm] = ACTIONS(4074), - [anon_sym___asm__] = ACTIONS(4074), - [anon_sym___asm] = ACTIONS(4074), - [sym_number_literal] = ACTIONS(4076), - [anon_sym_L_SQUOTE] = ACTIONS(4076), - [anon_sym_u_SQUOTE] = ACTIONS(4076), - [anon_sym_U_SQUOTE] = ACTIONS(4076), - [anon_sym_u8_SQUOTE] = ACTIONS(4076), - [anon_sym_SQUOTE] = ACTIONS(4076), - [anon_sym_L_DQUOTE] = ACTIONS(4076), - [anon_sym_u_DQUOTE] = ACTIONS(4076), - [anon_sym_U_DQUOTE] = ACTIONS(4076), - [anon_sym_u8_DQUOTE] = ACTIONS(4076), - [anon_sym_DQUOTE] = ACTIONS(4076), - [sym_true] = ACTIONS(4074), - [sym_false] = ACTIONS(4074), - [anon_sym_NULL] = ACTIONS(4074), - [anon_sym_nullptr] = ACTIONS(4074), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4074), - [anon_sym_decltype] = ACTIONS(4074), - [anon_sym_explicit] = ACTIONS(4074), - [anon_sym_export] = ACTIONS(4074), - [anon_sym_module] = ACTIONS(4074), - [anon_sym_import] = ACTIONS(4074), - [anon_sym_template] = ACTIONS(4074), - [anon_sym_operator] = ACTIONS(4074), - [anon_sym_try] = ACTIONS(4074), - [anon_sym_delete] = ACTIONS(4074), - [anon_sym_throw] = ACTIONS(4074), - [anon_sym_namespace] = ACTIONS(4074), - [anon_sym_static_assert] = ACTIONS(4074), - [anon_sym_concept] = ACTIONS(4074), - [anon_sym_co_return] = ACTIONS(4074), - [anon_sym_co_yield] = ACTIONS(4074), - [anon_sym_R_DQUOTE] = ACTIONS(4076), - [anon_sym_LR_DQUOTE] = ACTIONS(4076), - [anon_sym_uR_DQUOTE] = ACTIONS(4076), - [anon_sym_UR_DQUOTE] = ACTIONS(4076), - [anon_sym_u8R_DQUOTE] = ACTIONS(4076), - [anon_sym_co_await] = ACTIONS(4074), - [anon_sym_new] = ACTIONS(4074), - [anon_sym_requires] = ACTIONS(4074), - [anon_sym_CARET_CARET] = ACTIONS(4076), - [anon_sym_LBRACK_COLON] = ACTIONS(4076), - [sym_this] = ACTIONS(4074), - }, - [STATE(635)] = { - [ts_builtin_sym_end] = ACTIONS(4080), - [sym_identifier] = ACTIONS(4078), - [aux_sym_preproc_include_token1] = ACTIONS(4078), - [aux_sym_preproc_def_token1] = ACTIONS(4078), - [aux_sym_preproc_if_token1] = ACTIONS(4078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4078), - [sym_preproc_directive] = ACTIONS(4078), - [anon_sym_LPAREN2] = ACTIONS(4080), - [anon_sym_BANG] = ACTIONS(4080), - [anon_sym_TILDE] = ACTIONS(4080), - [anon_sym_DASH] = ACTIONS(4078), - [anon_sym_PLUS] = ACTIONS(4078), - [anon_sym_STAR] = ACTIONS(4080), - [anon_sym_AMP_AMP] = ACTIONS(4080), - [anon_sym_AMP] = ACTIONS(4078), - [anon_sym_SEMI] = ACTIONS(4080), - [anon_sym___extension__] = ACTIONS(4078), - [anon_sym_typedef] = ACTIONS(4078), - [anon_sym_virtual] = ACTIONS(4078), - [anon_sym_extern] = ACTIONS(4078), - [anon_sym___attribute__] = ACTIONS(4078), - [anon_sym___attribute] = ACTIONS(4078), - [anon_sym_using] = ACTIONS(4078), - [anon_sym_COLON_COLON] = ACTIONS(4080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4080), - [anon_sym___declspec] = ACTIONS(4078), - [anon_sym___based] = ACTIONS(4078), - [anon_sym___cdecl] = ACTIONS(4078), - [anon_sym___clrcall] = ACTIONS(4078), - [anon_sym___stdcall] = ACTIONS(4078), - [anon_sym___fastcall] = ACTIONS(4078), - [anon_sym___thiscall] = ACTIONS(4078), - [anon_sym___vectorcall] = ACTIONS(4078), - [anon_sym_LBRACE] = ACTIONS(4080), - [anon_sym_signed] = ACTIONS(4078), - [anon_sym_unsigned] = ACTIONS(4078), - [anon_sym_long] = ACTIONS(4078), - [anon_sym_short] = ACTIONS(4078), - [anon_sym_LBRACK] = ACTIONS(4078), - [anon_sym_static] = ACTIONS(4078), - [anon_sym_register] = ACTIONS(4078), - [anon_sym_inline] = ACTIONS(4078), - [anon_sym___inline] = ACTIONS(4078), - [anon_sym___inline__] = ACTIONS(4078), - [anon_sym___forceinline] = ACTIONS(4078), - [anon_sym_thread_local] = ACTIONS(4078), - [anon_sym___thread] = ACTIONS(4078), - [anon_sym_const] = ACTIONS(4078), - [anon_sym_constexpr] = ACTIONS(4078), - [anon_sym_volatile] = ACTIONS(4078), - [anon_sym_restrict] = ACTIONS(4078), - [anon_sym___restrict__] = ACTIONS(4078), - [anon_sym__Atomic] = ACTIONS(4078), - [anon_sym__Noreturn] = ACTIONS(4078), - [anon_sym_noreturn] = ACTIONS(4078), - [anon_sym__Nonnull] = ACTIONS(4078), - [anon_sym_mutable] = ACTIONS(4078), - [anon_sym_constinit] = ACTIONS(4078), - [anon_sym_consteval] = ACTIONS(4078), - [anon_sym_alignas] = ACTIONS(4078), - [anon_sym__Alignas] = ACTIONS(4078), - [sym_primitive_type] = ACTIONS(4078), - [anon_sym_enum] = ACTIONS(4078), - [anon_sym_class] = ACTIONS(4078), - [anon_sym_struct] = ACTIONS(4078), - [anon_sym_union] = ACTIONS(4078), - [anon_sym_if] = ACTIONS(4078), - [anon_sym_switch] = ACTIONS(4078), - [anon_sym_case] = ACTIONS(4078), - [anon_sym_default] = ACTIONS(4078), - [anon_sym_while] = ACTIONS(4078), - [anon_sym_do] = ACTIONS(4078), - [anon_sym_for] = ACTIONS(4078), - [anon_sym_return] = ACTIONS(4078), - [anon_sym_break] = ACTIONS(4078), - [anon_sym_continue] = ACTIONS(4078), - [anon_sym_goto] = ACTIONS(4078), - [anon_sym_not] = ACTIONS(4078), - [anon_sym_compl] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4080), - [anon_sym_PLUS_PLUS] = ACTIONS(4080), - [anon_sym_sizeof] = ACTIONS(4078), - [anon_sym___alignof__] = ACTIONS(4078), - [anon_sym___alignof] = ACTIONS(4078), - [anon_sym__alignof] = ACTIONS(4078), - [anon_sym_alignof] = ACTIONS(4078), - [anon_sym__Alignof] = ACTIONS(4078), - [anon_sym_offsetof] = ACTIONS(4078), - [anon_sym__Generic] = ACTIONS(4078), - [anon_sym_typename] = ACTIONS(4078), - [anon_sym_asm] = ACTIONS(4078), - [anon_sym___asm__] = ACTIONS(4078), - [anon_sym___asm] = ACTIONS(4078), - [sym_number_literal] = ACTIONS(4080), - [anon_sym_L_SQUOTE] = ACTIONS(4080), - [anon_sym_u_SQUOTE] = ACTIONS(4080), - [anon_sym_U_SQUOTE] = ACTIONS(4080), - [anon_sym_u8_SQUOTE] = ACTIONS(4080), - [anon_sym_SQUOTE] = ACTIONS(4080), - [anon_sym_L_DQUOTE] = ACTIONS(4080), - [anon_sym_u_DQUOTE] = ACTIONS(4080), - [anon_sym_U_DQUOTE] = ACTIONS(4080), - [anon_sym_u8_DQUOTE] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4080), - [sym_true] = ACTIONS(4078), - [sym_false] = ACTIONS(4078), - [anon_sym_NULL] = ACTIONS(4078), - [anon_sym_nullptr] = ACTIONS(4078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4078), - [anon_sym_decltype] = ACTIONS(4078), - [anon_sym_explicit] = ACTIONS(4078), - [anon_sym_export] = ACTIONS(4078), - [anon_sym_module] = ACTIONS(4078), - [anon_sym_import] = ACTIONS(4078), - [anon_sym_template] = ACTIONS(4078), - [anon_sym_operator] = ACTIONS(4078), - [anon_sym_try] = ACTIONS(4078), - [anon_sym_delete] = ACTIONS(4078), - [anon_sym_throw] = ACTIONS(4078), - [anon_sym_namespace] = ACTIONS(4078), - [anon_sym_static_assert] = ACTIONS(4078), - [anon_sym_concept] = ACTIONS(4078), - [anon_sym_co_return] = ACTIONS(4078), - [anon_sym_co_yield] = ACTIONS(4078), - [anon_sym_R_DQUOTE] = ACTIONS(4080), - [anon_sym_LR_DQUOTE] = ACTIONS(4080), - [anon_sym_uR_DQUOTE] = ACTIONS(4080), - [anon_sym_UR_DQUOTE] = ACTIONS(4080), - [anon_sym_u8R_DQUOTE] = ACTIONS(4080), - [anon_sym_co_await] = ACTIONS(4078), - [anon_sym_new] = ACTIONS(4078), - [anon_sym_requires] = ACTIONS(4078), - [anon_sym_CARET_CARET] = ACTIONS(4080), - [anon_sym_LBRACK_COLON] = ACTIONS(4080), - [sym_this] = ACTIONS(4078), - }, - [STATE(636)] = { - [ts_builtin_sym_end] = ACTIONS(4084), - [sym_identifier] = ACTIONS(4082), - [aux_sym_preproc_include_token1] = ACTIONS(4082), - [aux_sym_preproc_def_token1] = ACTIONS(4082), - [aux_sym_preproc_if_token1] = ACTIONS(4082), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4082), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4082), - [sym_preproc_directive] = ACTIONS(4082), - [anon_sym_LPAREN2] = ACTIONS(4084), - [anon_sym_BANG] = ACTIONS(4084), - [anon_sym_TILDE] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4082), - [anon_sym_PLUS] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_AMP] = ACTIONS(4082), - [anon_sym_SEMI] = ACTIONS(4084), - [anon_sym___extension__] = ACTIONS(4082), - [anon_sym_typedef] = ACTIONS(4082), - [anon_sym_virtual] = ACTIONS(4082), - [anon_sym_extern] = ACTIONS(4082), - [anon_sym___attribute__] = ACTIONS(4082), - [anon_sym___attribute] = ACTIONS(4082), - [anon_sym_using] = ACTIONS(4082), - [anon_sym_COLON_COLON] = ACTIONS(4084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4084), - [anon_sym___declspec] = ACTIONS(4082), - [anon_sym___based] = ACTIONS(4082), - [anon_sym___cdecl] = ACTIONS(4082), - [anon_sym___clrcall] = ACTIONS(4082), - [anon_sym___stdcall] = ACTIONS(4082), - [anon_sym___fastcall] = ACTIONS(4082), - [anon_sym___thiscall] = ACTIONS(4082), - [anon_sym___vectorcall] = ACTIONS(4082), - [anon_sym_LBRACE] = ACTIONS(4084), - [anon_sym_signed] = ACTIONS(4082), - [anon_sym_unsigned] = ACTIONS(4082), - [anon_sym_long] = ACTIONS(4082), - [anon_sym_short] = ACTIONS(4082), - [anon_sym_LBRACK] = ACTIONS(4082), - [anon_sym_static] = ACTIONS(4082), - [anon_sym_register] = ACTIONS(4082), - [anon_sym_inline] = ACTIONS(4082), - [anon_sym___inline] = ACTIONS(4082), - [anon_sym___inline__] = ACTIONS(4082), - [anon_sym___forceinline] = ACTIONS(4082), - [anon_sym_thread_local] = ACTIONS(4082), - [anon_sym___thread] = ACTIONS(4082), - [anon_sym_const] = ACTIONS(4082), - [anon_sym_constexpr] = ACTIONS(4082), - [anon_sym_volatile] = ACTIONS(4082), - [anon_sym_restrict] = ACTIONS(4082), - [anon_sym___restrict__] = ACTIONS(4082), - [anon_sym__Atomic] = ACTIONS(4082), - [anon_sym__Noreturn] = ACTIONS(4082), - [anon_sym_noreturn] = ACTIONS(4082), - [anon_sym__Nonnull] = ACTIONS(4082), - [anon_sym_mutable] = ACTIONS(4082), - [anon_sym_constinit] = ACTIONS(4082), - [anon_sym_consteval] = ACTIONS(4082), - [anon_sym_alignas] = ACTIONS(4082), - [anon_sym__Alignas] = ACTIONS(4082), - [sym_primitive_type] = ACTIONS(4082), - [anon_sym_enum] = ACTIONS(4082), - [anon_sym_class] = ACTIONS(4082), - [anon_sym_struct] = ACTIONS(4082), - [anon_sym_union] = ACTIONS(4082), - [anon_sym_if] = ACTIONS(4082), - [anon_sym_switch] = ACTIONS(4082), - [anon_sym_case] = ACTIONS(4082), - [anon_sym_default] = ACTIONS(4082), - [anon_sym_while] = ACTIONS(4082), - [anon_sym_do] = ACTIONS(4082), - [anon_sym_for] = ACTIONS(4082), - [anon_sym_return] = ACTIONS(4082), - [anon_sym_break] = ACTIONS(4082), - [anon_sym_continue] = ACTIONS(4082), - [anon_sym_goto] = ACTIONS(4082), - [anon_sym_not] = ACTIONS(4082), - [anon_sym_compl] = ACTIONS(4082), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_sizeof] = ACTIONS(4082), - [anon_sym___alignof__] = ACTIONS(4082), - [anon_sym___alignof] = ACTIONS(4082), - [anon_sym__alignof] = ACTIONS(4082), - [anon_sym_alignof] = ACTIONS(4082), - [anon_sym__Alignof] = ACTIONS(4082), - [anon_sym_offsetof] = ACTIONS(4082), - [anon_sym__Generic] = ACTIONS(4082), - [anon_sym_typename] = ACTIONS(4082), - [anon_sym_asm] = ACTIONS(4082), - [anon_sym___asm__] = ACTIONS(4082), - [anon_sym___asm] = ACTIONS(4082), - [sym_number_literal] = ACTIONS(4084), - [anon_sym_L_SQUOTE] = ACTIONS(4084), - [anon_sym_u_SQUOTE] = ACTIONS(4084), - [anon_sym_U_SQUOTE] = ACTIONS(4084), - [anon_sym_u8_SQUOTE] = ACTIONS(4084), - [anon_sym_SQUOTE] = ACTIONS(4084), - [anon_sym_L_DQUOTE] = ACTIONS(4084), - [anon_sym_u_DQUOTE] = ACTIONS(4084), - [anon_sym_U_DQUOTE] = ACTIONS(4084), - [anon_sym_u8_DQUOTE] = ACTIONS(4084), - [anon_sym_DQUOTE] = ACTIONS(4084), - [sym_true] = ACTIONS(4082), - [sym_false] = ACTIONS(4082), - [anon_sym_NULL] = ACTIONS(4082), - [anon_sym_nullptr] = ACTIONS(4082), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4082), - [anon_sym_decltype] = ACTIONS(4082), - [anon_sym_explicit] = ACTIONS(4082), - [anon_sym_export] = ACTIONS(4082), - [anon_sym_module] = ACTIONS(4082), - [anon_sym_import] = ACTIONS(4082), - [anon_sym_template] = ACTIONS(4082), - [anon_sym_operator] = ACTIONS(4082), - [anon_sym_try] = ACTIONS(4082), - [anon_sym_delete] = ACTIONS(4082), - [anon_sym_throw] = ACTIONS(4082), - [anon_sym_namespace] = ACTIONS(4082), - [anon_sym_static_assert] = ACTIONS(4082), - [anon_sym_concept] = ACTIONS(4082), - [anon_sym_co_return] = ACTIONS(4082), - [anon_sym_co_yield] = ACTIONS(4082), - [anon_sym_R_DQUOTE] = ACTIONS(4084), - [anon_sym_LR_DQUOTE] = ACTIONS(4084), - [anon_sym_uR_DQUOTE] = ACTIONS(4084), - [anon_sym_UR_DQUOTE] = ACTIONS(4084), - [anon_sym_u8R_DQUOTE] = ACTIONS(4084), - [anon_sym_co_await] = ACTIONS(4082), - [anon_sym_new] = ACTIONS(4082), - [anon_sym_requires] = ACTIONS(4082), - [anon_sym_CARET_CARET] = ACTIONS(4084), - [anon_sym_LBRACK_COLON] = ACTIONS(4084), - [sym_this] = ACTIONS(4082), + [sym_auto] = ACTIONS(3524), + [anon_sym_decltype] = ACTIONS(3524), + [anon_sym_explicit] = ACTIONS(3524), + [anon_sym_export] = ACTIONS(3524), + [anon_sym_module] = ACTIONS(3524), + [anon_sym_import] = ACTIONS(3524), + [anon_sym_template] = ACTIONS(3524), + [anon_sym_operator] = ACTIONS(3524), + [anon_sym_try] = ACTIONS(3524), + [anon_sym_delete] = ACTIONS(3524), + [anon_sym_throw] = ACTIONS(3524), + [anon_sym_namespace] = ACTIONS(3524), + [anon_sym_static_assert] = ACTIONS(3524), + [anon_sym_concept] = ACTIONS(3524), + [anon_sym_co_return] = ACTIONS(3524), + [anon_sym_co_yield] = ACTIONS(3524), + [anon_sym_R_DQUOTE] = ACTIONS(3526), + [anon_sym_LR_DQUOTE] = ACTIONS(3526), + [anon_sym_uR_DQUOTE] = ACTIONS(3526), + [anon_sym_UR_DQUOTE] = ACTIONS(3526), + [anon_sym_u8R_DQUOTE] = ACTIONS(3526), + [anon_sym_co_await] = ACTIONS(3524), + [anon_sym_new] = ACTIONS(3524), + [anon_sym_requires] = ACTIONS(3524), + [anon_sym_CARET_CARET] = ACTIONS(3526), + [anon_sym_LBRACK_COLON] = ACTIONS(3526), + [sym_this] = ACTIONS(3524), }, - [STATE(637)] = { - [sym_preproc_def] = STATE(583), - [sym_preproc_function_def] = STATE(583), - [sym_preproc_call] = STATE(583), - [sym_preproc_if_in_field_declaration_list] = STATE(583), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(583), - [sym_type_definition] = STATE(583), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7964), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(583), - [sym_field_declaration] = STATE(583), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(583), - [sym_operator_cast] = STATE(9142), - [sym_inline_method_definition] = STATE(583), - [sym__constructor_specifiers] = STATE(2332), - [sym_operator_cast_definition] = STATE(583), - [sym_operator_cast_declaration] = STATE(583), - [sym_constructor_or_destructor_definition] = STATE(583), - [sym_constructor_or_destructor_declaration] = STATE(583), - [sym_friend_declaration] = STATE(583), - [sym_access_specifier] = STATE(11109), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(583), - [sym_alias_declaration] = STATE(583), - [sym_static_assert_declaration] = STATE(583), - [sym_consteval_block_declaration] = STATE(583), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(583), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9371), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(4352), - [aux_sym_preproc_if_token1] = ACTIONS(4354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), - [sym_preproc_directive] = ACTIONS(4358), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(4408), - [anon_sym___extension__] = ACTIONS(4362), - [anon_sym_typedef] = ACTIONS(4364), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4412), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4372), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), + [STATE(563)] = { + [ts_builtin_sym_end] = ACTIONS(3620), + [sym_identifier] = ACTIONS(3618), + [aux_sym_preproc_include_token1] = ACTIONS(3618), + [aux_sym_preproc_def_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), + [sym_preproc_directive] = ACTIONS(3618), + [anon_sym_LPAREN2] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_AMP] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym___extension__] = ACTIONS(3618), + [anon_sym_typedef] = ACTIONS(3618), + [anon_sym_virtual] = ACTIONS(3618), + [anon_sym_extern] = ACTIONS(3618), + [anon_sym___attribute__] = ACTIONS(3618), + [anon_sym___attribute] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_COLON_COLON] = ACTIONS(3620), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), + [anon_sym___declspec] = ACTIONS(3618), + [anon_sym___based] = ACTIONS(3618), + [anon_sym___cdecl] = ACTIONS(3618), + [anon_sym___clrcall] = ACTIONS(3618), + [anon_sym___stdcall] = ACTIONS(3618), + [anon_sym___fastcall] = ACTIONS(3618), + [anon_sym___thiscall] = ACTIONS(3618), + [anon_sym___vectorcall] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_signed] = ACTIONS(3618), + [anon_sym_unsigned] = ACTIONS(3618), + [anon_sym_long] = ACTIONS(3618), + [anon_sym_short] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_register] = ACTIONS(3618), + [anon_sym_inline] = ACTIONS(3618), + [anon_sym___inline] = ACTIONS(3618), + [anon_sym___inline__] = ACTIONS(3618), + [anon_sym___forceinline] = ACTIONS(3618), + [anon_sym_thread_local] = ACTIONS(3618), + [anon_sym___thread] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_constexpr] = ACTIONS(3618), + [anon_sym_volatile] = ACTIONS(3618), + [anon_sym_restrict] = ACTIONS(3618), + [anon_sym___restrict__] = ACTIONS(3618), + [anon_sym__Atomic] = ACTIONS(3618), + [anon_sym__Noreturn] = ACTIONS(3618), + [anon_sym_noreturn] = ACTIONS(3618), + [anon_sym__Nonnull] = ACTIONS(3618), + [anon_sym_mutable] = ACTIONS(3618), + [anon_sym_constinit] = ACTIONS(3618), + [anon_sym_consteval] = ACTIONS(3618), + [anon_sym_alignas] = ACTIONS(3618), + [anon_sym__Alignas] = ACTIONS(3618), + [sym_primitive_type] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_struct] = ACTIONS(3618), + [anon_sym_union] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_else] = ACTIONS(3618), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_case] = ACTIONS(3618), + [anon_sym_default] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_goto] = ACTIONS(3618), + [anon_sym___try] = ACTIONS(3618), + [anon_sym___leave] = ACTIONS(3618), + [anon_sym_not] = ACTIONS(3618), + [anon_sym_compl] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_sizeof] = ACTIONS(3618), + [anon_sym___alignof__] = ACTIONS(3618), + [anon_sym___alignof] = ACTIONS(3618), + [anon_sym__alignof] = ACTIONS(3618), + [anon_sym_alignof] = ACTIONS(3618), + [anon_sym__Alignof] = ACTIONS(3618), + [anon_sym_offsetof] = ACTIONS(3618), + [anon_sym__Generic] = ACTIONS(3618), + [anon_sym_typename] = ACTIONS(3618), + [anon_sym_asm] = ACTIONS(3618), + [anon_sym___asm__] = ACTIONS(3618), + [anon_sym___asm] = ACTIONS(3618), + [sym_number_literal] = ACTIONS(3620), + [anon_sym_L_SQUOTE] = ACTIONS(3620), + [anon_sym_u_SQUOTE] = ACTIONS(3620), + [anon_sym_U_SQUOTE] = ACTIONS(3620), + [anon_sym_u8_SQUOTE] = ACTIONS(3620), + [anon_sym_SQUOTE] = ACTIONS(3620), + [anon_sym_L_DQUOTE] = ACTIONS(3620), + [anon_sym_u_DQUOTE] = ACTIONS(3620), + [anon_sym_U_DQUOTE] = ACTIONS(3620), + [anon_sym_u8_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [anon_sym_NULL] = ACTIONS(3618), + [anon_sym_nullptr] = ACTIONS(3618), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(4374), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4376), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(4378), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(638)] = { - [ts_builtin_sym_end] = ACTIONS(3968), - [sym_identifier] = ACTIONS(3966), - [aux_sym_preproc_include_token1] = ACTIONS(3966), - [aux_sym_preproc_def_token1] = ACTIONS(3966), - [aux_sym_preproc_if_token1] = ACTIONS(3966), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3966), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3966), - [sym_preproc_directive] = ACTIONS(3966), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(3968), - [anon_sym_TILDE] = ACTIONS(3968), - [anon_sym_DASH] = ACTIONS(3966), - [anon_sym_PLUS] = ACTIONS(3966), - [anon_sym_STAR] = ACTIONS(3968), - [anon_sym_AMP_AMP] = ACTIONS(3968), - [anon_sym_AMP] = ACTIONS(3966), - [anon_sym_SEMI] = ACTIONS(3968), - [anon_sym___extension__] = ACTIONS(3966), - [anon_sym_typedef] = ACTIONS(3966), - [anon_sym_virtual] = ACTIONS(3966), - [anon_sym_extern] = ACTIONS(3966), - [anon_sym___attribute__] = ACTIONS(3966), - [anon_sym___attribute] = ACTIONS(3966), - [anon_sym_using] = ACTIONS(3966), - [anon_sym_COLON_COLON] = ACTIONS(3968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3968), - [anon_sym___declspec] = ACTIONS(3966), - [anon_sym___based] = ACTIONS(3966), - [anon_sym___cdecl] = ACTIONS(3966), - [anon_sym___clrcall] = ACTIONS(3966), - [anon_sym___stdcall] = ACTIONS(3966), - [anon_sym___fastcall] = ACTIONS(3966), - [anon_sym___thiscall] = ACTIONS(3966), - [anon_sym___vectorcall] = ACTIONS(3966), - [anon_sym_LBRACE] = ACTIONS(3968), - [anon_sym_signed] = ACTIONS(3966), - [anon_sym_unsigned] = ACTIONS(3966), - [anon_sym_long] = ACTIONS(3966), - [anon_sym_short] = ACTIONS(3966), - [anon_sym_LBRACK] = ACTIONS(3966), - [anon_sym_static] = ACTIONS(3966), - [anon_sym_register] = ACTIONS(3966), - [anon_sym_inline] = ACTIONS(3966), - [anon_sym___inline] = ACTIONS(3966), - [anon_sym___inline__] = ACTIONS(3966), - [anon_sym___forceinline] = ACTIONS(3966), - [anon_sym_thread_local] = ACTIONS(3966), - [anon_sym___thread] = ACTIONS(3966), - [anon_sym_const] = ACTIONS(3966), - [anon_sym_constexpr] = ACTIONS(3966), - [anon_sym_volatile] = ACTIONS(3966), - [anon_sym_restrict] = ACTIONS(3966), - [anon_sym___restrict__] = ACTIONS(3966), - [anon_sym__Atomic] = ACTIONS(3966), - [anon_sym__Noreturn] = ACTIONS(3966), - [anon_sym_noreturn] = ACTIONS(3966), - [anon_sym__Nonnull] = ACTIONS(3966), - [anon_sym_mutable] = ACTIONS(3966), - [anon_sym_constinit] = ACTIONS(3966), - [anon_sym_consteval] = ACTIONS(3966), - [anon_sym_alignas] = ACTIONS(3966), - [anon_sym__Alignas] = ACTIONS(3966), - [sym_primitive_type] = ACTIONS(3966), - [anon_sym_enum] = ACTIONS(3966), - [anon_sym_class] = ACTIONS(3966), - [anon_sym_struct] = ACTIONS(3966), - [anon_sym_union] = ACTIONS(3966), - [anon_sym_if] = ACTIONS(3966), - [anon_sym_switch] = ACTIONS(3966), - [anon_sym_case] = ACTIONS(3966), - [anon_sym_default] = ACTIONS(3966), - [anon_sym_while] = ACTIONS(3966), - [anon_sym_do] = ACTIONS(3966), - [anon_sym_for] = ACTIONS(3966), - [anon_sym_return] = ACTIONS(3966), - [anon_sym_break] = ACTIONS(3966), - [anon_sym_continue] = ACTIONS(3966), - [anon_sym_goto] = ACTIONS(3966), - [anon_sym_not] = ACTIONS(3966), - [anon_sym_compl] = ACTIONS(3966), - [anon_sym_DASH_DASH] = ACTIONS(3968), - [anon_sym_PLUS_PLUS] = ACTIONS(3968), - [anon_sym_sizeof] = ACTIONS(3966), - [anon_sym___alignof__] = ACTIONS(3966), - [anon_sym___alignof] = ACTIONS(3966), - [anon_sym__alignof] = ACTIONS(3966), - [anon_sym_alignof] = ACTIONS(3966), - [anon_sym__Alignof] = ACTIONS(3966), - [anon_sym_offsetof] = ACTIONS(3966), - [anon_sym__Generic] = ACTIONS(3966), - [anon_sym_typename] = ACTIONS(3966), - [anon_sym_asm] = ACTIONS(3966), - [anon_sym___asm__] = ACTIONS(3966), - [anon_sym___asm] = ACTIONS(3966), - [sym_number_literal] = ACTIONS(3968), - [anon_sym_L_SQUOTE] = ACTIONS(3968), - [anon_sym_u_SQUOTE] = ACTIONS(3968), - [anon_sym_U_SQUOTE] = ACTIONS(3968), - [anon_sym_u8_SQUOTE] = ACTIONS(3968), - [anon_sym_SQUOTE] = ACTIONS(3968), - [anon_sym_L_DQUOTE] = ACTIONS(3968), - [anon_sym_u_DQUOTE] = ACTIONS(3968), - [anon_sym_U_DQUOTE] = ACTIONS(3968), - [anon_sym_u8_DQUOTE] = ACTIONS(3968), - [anon_sym_DQUOTE] = ACTIONS(3968), - [sym_true] = ACTIONS(3966), - [sym_false] = ACTIONS(3966), - [anon_sym_NULL] = ACTIONS(3966), - [anon_sym_nullptr] = ACTIONS(3966), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3966), - [anon_sym_decltype] = ACTIONS(3966), - [anon_sym_explicit] = ACTIONS(3966), - [anon_sym_export] = ACTIONS(3966), - [anon_sym_module] = ACTIONS(3966), - [anon_sym_import] = ACTIONS(3966), - [anon_sym_template] = ACTIONS(3966), - [anon_sym_operator] = ACTIONS(3966), - [anon_sym_try] = ACTIONS(3966), - [anon_sym_delete] = ACTIONS(3966), - [anon_sym_throw] = ACTIONS(3966), - [anon_sym_namespace] = ACTIONS(3966), - [anon_sym_static_assert] = ACTIONS(3966), - [anon_sym_concept] = ACTIONS(3966), - [anon_sym_co_return] = ACTIONS(3966), - [anon_sym_co_yield] = ACTIONS(3966), - [anon_sym_R_DQUOTE] = ACTIONS(3968), - [anon_sym_LR_DQUOTE] = ACTIONS(3968), - [anon_sym_uR_DQUOTE] = ACTIONS(3968), - [anon_sym_UR_DQUOTE] = ACTIONS(3968), - [anon_sym_u8R_DQUOTE] = ACTIONS(3968), - [anon_sym_co_await] = ACTIONS(3966), - [anon_sym_new] = ACTIONS(3966), - [anon_sym_requires] = ACTIONS(3966), - [anon_sym_CARET_CARET] = ACTIONS(3968), - [anon_sym_LBRACK_COLON] = ACTIONS(3968), - [sym_this] = ACTIONS(3966), + [sym_auto] = ACTIONS(3618), + [anon_sym_decltype] = ACTIONS(3618), + [anon_sym_explicit] = ACTIONS(3618), + [anon_sym_export] = ACTIONS(3618), + [anon_sym_module] = ACTIONS(3618), + [anon_sym_import] = ACTIONS(3618), + [anon_sym_template] = ACTIONS(3618), + [anon_sym_operator] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_namespace] = ACTIONS(3618), + [anon_sym_static_assert] = ACTIONS(3618), + [anon_sym_concept] = ACTIONS(3618), + [anon_sym_co_return] = ACTIONS(3618), + [anon_sym_co_yield] = ACTIONS(3618), + [anon_sym_R_DQUOTE] = ACTIONS(3620), + [anon_sym_LR_DQUOTE] = ACTIONS(3620), + [anon_sym_uR_DQUOTE] = ACTIONS(3620), + [anon_sym_UR_DQUOTE] = ACTIONS(3620), + [anon_sym_u8R_DQUOTE] = ACTIONS(3620), + [anon_sym_co_await] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_requires] = ACTIONS(3618), + [anon_sym_CARET_CARET] = ACTIONS(3620), + [anon_sym_LBRACK_COLON] = ACTIONS(3620), + [sym_this] = ACTIONS(3618), }, - [STATE(639)] = { - [ts_builtin_sym_end] = ACTIONS(4414), - [sym_identifier] = ACTIONS(4416), - [aux_sym_preproc_include_token1] = ACTIONS(4416), - [aux_sym_preproc_def_token1] = ACTIONS(4416), - [aux_sym_preproc_if_token1] = ACTIONS(4416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4416), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4416), - [sym_preproc_directive] = ACTIONS(4416), - [anon_sym_LPAREN2] = ACTIONS(4414), - [anon_sym_BANG] = ACTIONS(4414), - [anon_sym_TILDE] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4416), - [anon_sym_STAR] = ACTIONS(4414), - [anon_sym_AMP_AMP] = ACTIONS(4414), - [anon_sym_AMP] = ACTIONS(4416), - [anon_sym_SEMI] = ACTIONS(4414), - [anon_sym___extension__] = ACTIONS(4416), - [anon_sym_typedef] = ACTIONS(4416), - [anon_sym_virtual] = ACTIONS(4416), - [anon_sym_extern] = ACTIONS(4416), - [anon_sym___attribute__] = ACTIONS(4416), - [anon_sym___attribute] = ACTIONS(4416), - [anon_sym_using] = ACTIONS(4416), - [anon_sym_COLON_COLON] = ACTIONS(4414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4414), - [anon_sym___declspec] = ACTIONS(4416), - [anon_sym___based] = ACTIONS(4416), - [anon_sym___cdecl] = ACTIONS(4416), - [anon_sym___clrcall] = ACTIONS(4416), - [anon_sym___stdcall] = ACTIONS(4416), - [anon_sym___fastcall] = ACTIONS(4416), - [anon_sym___thiscall] = ACTIONS(4416), - [anon_sym___vectorcall] = ACTIONS(4416), - [anon_sym_LBRACE] = ACTIONS(4414), - [anon_sym_signed] = ACTIONS(4416), - [anon_sym_unsigned] = ACTIONS(4416), - [anon_sym_long] = ACTIONS(4416), - [anon_sym_short] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_static] = ACTIONS(4416), - [anon_sym_register] = ACTIONS(4416), - [anon_sym_inline] = ACTIONS(4416), - [anon_sym___inline] = ACTIONS(4416), - [anon_sym___inline__] = ACTIONS(4416), - [anon_sym___forceinline] = ACTIONS(4416), - [anon_sym_thread_local] = ACTIONS(4416), - [anon_sym___thread] = ACTIONS(4416), - [anon_sym_const] = ACTIONS(4416), - [anon_sym_constexpr] = ACTIONS(4416), - [anon_sym_volatile] = ACTIONS(4416), - [anon_sym_restrict] = ACTIONS(4416), - [anon_sym___restrict__] = ACTIONS(4416), - [anon_sym__Atomic] = ACTIONS(4416), - [anon_sym__Noreturn] = ACTIONS(4416), - [anon_sym_noreturn] = ACTIONS(4416), - [anon_sym__Nonnull] = ACTIONS(4416), - [anon_sym_mutable] = ACTIONS(4416), - [anon_sym_constinit] = ACTIONS(4416), - [anon_sym_consteval] = ACTIONS(4416), - [anon_sym_alignas] = ACTIONS(4416), - [anon_sym__Alignas] = ACTIONS(4416), - [sym_primitive_type] = ACTIONS(4416), - [anon_sym_enum] = ACTIONS(4416), - [anon_sym_class] = ACTIONS(4416), - [anon_sym_struct] = ACTIONS(4416), - [anon_sym_union] = ACTIONS(4416), - [anon_sym_if] = ACTIONS(4416), - [anon_sym_switch] = ACTIONS(4416), - [anon_sym_case] = ACTIONS(4416), - [anon_sym_default] = ACTIONS(4416), - [anon_sym_while] = ACTIONS(4416), - [anon_sym_do] = ACTIONS(4416), - [anon_sym_for] = ACTIONS(4416), - [anon_sym_return] = ACTIONS(4416), - [anon_sym_break] = ACTIONS(4416), - [anon_sym_continue] = ACTIONS(4416), - [anon_sym_goto] = ACTIONS(4416), - [anon_sym_not] = ACTIONS(4416), - [anon_sym_compl] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4414), - [anon_sym_PLUS_PLUS] = ACTIONS(4414), - [anon_sym_sizeof] = ACTIONS(4416), - [anon_sym___alignof__] = ACTIONS(4416), - [anon_sym___alignof] = ACTIONS(4416), - [anon_sym__alignof] = ACTIONS(4416), - [anon_sym_alignof] = ACTIONS(4416), - [anon_sym__Alignof] = ACTIONS(4416), - [anon_sym_offsetof] = ACTIONS(4416), - [anon_sym__Generic] = ACTIONS(4416), - [anon_sym_typename] = ACTIONS(4416), - [anon_sym_asm] = ACTIONS(4416), - [anon_sym___asm__] = ACTIONS(4416), - [anon_sym___asm] = ACTIONS(4416), - [sym_number_literal] = ACTIONS(4414), - [anon_sym_L_SQUOTE] = ACTIONS(4414), - [anon_sym_u_SQUOTE] = ACTIONS(4414), - [anon_sym_U_SQUOTE] = ACTIONS(4414), - [anon_sym_u8_SQUOTE] = ACTIONS(4414), - [anon_sym_SQUOTE] = ACTIONS(4414), - [anon_sym_L_DQUOTE] = ACTIONS(4414), - [anon_sym_u_DQUOTE] = ACTIONS(4414), - [anon_sym_U_DQUOTE] = ACTIONS(4414), - [anon_sym_u8_DQUOTE] = ACTIONS(4414), - [anon_sym_DQUOTE] = ACTIONS(4414), - [sym_true] = ACTIONS(4416), - [sym_false] = ACTIONS(4416), - [anon_sym_NULL] = ACTIONS(4416), - [anon_sym_nullptr] = ACTIONS(4416), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4416), - [anon_sym_decltype] = ACTIONS(4416), - [anon_sym_explicit] = ACTIONS(4416), - [anon_sym_export] = ACTIONS(4416), - [anon_sym_module] = ACTIONS(4416), - [anon_sym_import] = ACTIONS(4416), - [anon_sym_template] = ACTIONS(4416), - [anon_sym_operator] = ACTIONS(4416), - [anon_sym_try] = ACTIONS(4416), - [anon_sym_delete] = ACTIONS(4416), - [anon_sym_throw] = ACTIONS(4416), - [anon_sym_namespace] = ACTIONS(4416), - [anon_sym_static_assert] = ACTIONS(4416), - [anon_sym_concept] = ACTIONS(4416), - [anon_sym_co_return] = ACTIONS(4416), - [anon_sym_co_yield] = ACTIONS(4416), - [anon_sym_R_DQUOTE] = ACTIONS(4414), - [anon_sym_LR_DQUOTE] = ACTIONS(4414), - [anon_sym_uR_DQUOTE] = ACTIONS(4414), - [anon_sym_UR_DQUOTE] = ACTIONS(4414), - [anon_sym_u8R_DQUOTE] = ACTIONS(4414), - [anon_sym_co_await] = ACTIONS(4416), - [anon_sym_new] = ACTIONS(4416), - [anon_sym_requires] = ACTIONS(4416), - [anon_sym_CARET_CARET] = ACTIONS(4414), - [anon_sym_LBRACK_COLON] = ACTIONS(4414), - [sym_this] = ACTIONS(4416), + [STATE(564)] = { + [ts_builtin_sym_end] = ACTIONS(3672), + [sym_identifier] = ACTIONS(3670), + [aux_sym_preproc_include_token1] = ACTIONS(3670), + [aux_sym_preproc_def_token1] = ACTIONS(3670), + [aux_sym_preproc_if_token1] = ACTIONS(3670), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3670), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3670), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3672), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_TILDE] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_STAR] = ACTIONS(3672), + [anon_sym_AMP_AMP] = ACTIONS(3672), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym___extension__] = ACTIONS(3670), + [anon_sym_typedef] = ACTIONS(3670), + [anon_sym_virtual] = ACTIONS(3670), + [anon_sym_extern] = ACTIONS(3670), + [anon_sym___attribute__] = ACTIONS(3670), + [anon_sym___attribute] = ACTIONS(3670), + [anon_sym_using] = ACTIONS(3670), + [anon_sym_COLON_COLON] = ACTIONS(3672), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3672), + [anon_sym___declspec] = ACTIONS(3670), + [anon_sym___based] = ACTIONS(3670), + [anon_sym___cdecl] = ACTIONS(3670), + [anon_sym___clrcall] = ACTIONS(3670), + [anon_sym___stdcall] = ACTIONS(3670), + [anon_sym___fastcall] = ACTIONS(3670), + [anon_sym___thiscall] = ACTIONS(3670), + [anon_sym___vectorcall] = ACTIONS(3670), + [anon_sym_LBRACE] = ACTIONS(3672), + [anon_sym_signed] = ACTIONS(3670), + [anon_sym_unsigned] = ACTIONS(3670), + [anon_sym_long] = ACTIONS(3670), + [anon_sym_short] = ACTIONS(3670), + [anon_sym_LBRACK] = ACTIONS(3670), + [anon_sym_static] = ACTIONS(3670), + [anon_sym_register] = ACTIONS(3670), + [anon_sym_inline] = ACTIONS(3670), + [anon_sym___inline] = ACTIONS(3670), + [anon_sym___inline__] = ACTIONS(3670), + [anon_sym___forceinline] = ACTIONS(3670), + [anon_sym_thread_local] = ACTIONS(3670), + [anon_sym___thread] = ACTIONS(3670), + [anon_sym_const] = ACTIONS(3670), + [anon_sym_constexpr] = ACTIONS(3670), + [anon_sym_volatile] = ACTIONS(3670), + [anon_sym_restrict] = ACTIONS(3670), + [anon_sym___restrict__] = ACTIONS(3670), + [anon_sym__Atomic] = ACTIONS(3670), + [anon_sym__Noreturn] = ACTIONS(3670), + [anon_sym_noreturn] = ACTIONS(3670), + [anon_sym__Nonnull] = ACTIONS(3670), + [anon_sym_mutable] = ACTIONS(3670), + [anon_sym_constinit] = ACTIONS(3670), + [anon_sym_consteval] = ACTIONS(3670), + [anon_sym_alignas] = ACTIONS(3670), + [anon_sym__Alignas] = ACTIONS(3670), + [sym_primitive_type] = ACTIONS(3670), + [anon_sym_enum] = ACTIONS(3670), + [anon_sym_class] = ACTIONS(3670), + [anon_sym_struct] = ACTIONS(3670), + [anon_sym_union] = ACTIONS(3670), + [anon_sym_if] = ACTIONS(3670), + [anon_sym_else] = ACTIONS(3670), + [anon_sym_switch] = ACTIONS(3670), + [anon_sym_case] = ACTIONS(3670), + [anon_sym_default] = ACTIONS(3670), + [anon_sym_while] = ACTIONS(3670), + [anon_sym_do] = ACTIONS(3670), + [anon_sym_for] = ACTIONS(3670), + [anon_sym_return] = ACTIONS(3670), + [anon_sym_break] = ACTIONS(3670), + [anon_sym_continue] = ACTIONS(3670), + [anon_sym_goto] = ACTIONS(3670), + [anon_sym___try] = ACTIONS(3670), + [anon_sym___leave] = ACTIONS(3670), + [anon_sym_not] = ACTIONS(3670), + [anon_sym_compl] = ACTIONS(3670), + [anon_sym_DASH_DASH] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3672), + [anon_sym_sizeof] = ACTIONS(3670), + [anon_sym___alignof__] = ACTIONS(3670), + [anon_sym___alignof] = ACTIONS(3670), + [anon_sym__alignof] = ACTIONS(3670), + [anon_sym_alignof] = ACTIONS(3670), + [anon_sym__Alignof] = ACTIONS(3670), + [anon_sym_offsetof] = ACTIONS(3670), + [anon_sym__Generic] = ACTIONS(3670), + [anon_sym_typename] = ACTIONS(3670), + [anon_sym_asm] = ACTIONS(3670), + [anon_sym___asm__] = ACTIONS(3670), + [anon_sym___asm] = ACTIONS(3670), + [sym_number_literal] = ACTIONS(3672), + [anon_sym_L_SQUOTE] = ACTIONS(3672), + [anon_sym_u_SQUOTE] = ACTIONS(3672), + [anon_sym_U_SQUOTE] = ACTIONS(3672), + [anon_sym_u8_SQUOTE] = ACTIONS(3672), + [anon_sym_SQUOTE] = ACTIONS(3672), + [anon_sym_L_DQUOTE] = ACTIONS(3672), + [anon_sym_u_DQUOTE] = ACTIONS(3672), + [anon_sym_U_DQUOTE] = ACTIONS(3672), + [anon_sym_u8_DQUOTE] = ACTIONS(3672), + [anon_sym_DQUOTE] = ACTIONS(3672), + [sym_true] = ACTIONS(3670), + [sym_false] = ACTIONS(3670), + [anon_sym_NULL] = ACTIONS(3670), + [anon_sym_nullptr] = ACTIONS(3670), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3670), + [anon_sym_decltype] = ACTIONS(3670), + [anon_sym_explicit] = ACTIONS(3670), + [anon_sym_export] = ACTIONS(3670), + [anon_sym_module] = ACTIONS(3670), + [anon_sym_import] = ACTIONS(3670), + [anon_sym_template] = ACTIONS(3670), + [anon_sym_operator] = ACTIONS(3670), + [anon_sym_try] = ACTIONS(3670), + [anon_sym_delete] = ACTIONS(3670), + [anon_sym_throw] = ACTIONS(3670), + [anon_sym_namespace] = ACTIONS(3670), + [anon_sym_static_assert] = ACTIONS(3670), + [anon_sym_concept] = ACTIONS(3670), + [anon_sym_co_return] = ACTIONS(3670), + [anon_sym_co_yield] = ACTIONS(3670), + [anon_sym_R_DQUOTE] = ACTIONS(3672), + [anon_sym_LR_DQUOTE] = ACTIONS(3672), + [anon_sym_uR_DQUOTE] = ACTIONS(3672), + [anon_sym_UR_DQUOTE] = ACTIONS(3672), + [anon_sym_u8R_DQUOTE] = ACTIONS(3672), + [anon_sym_co_await] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3670), + [anon_sym_requires] = ACTIONS(3670), + [anon_sym_CARET_CARET] = ACTIONS(3672), + [anon_sym_LBRACK_COLON] = ACTIONS(3672), + [sym_this] = ACTIONS(3670), }, - [STATE(640)] = { - [sym_identifier] = ACTIONS(3660), - [aux_sym_preproc_include_token1] = ACTIONS(3660), - [aux_sym_preproc_def_token1] = ACTIONS(3660), - [aux_sym_preproc_if_token1] = ACTIONS(3660), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3660), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3660), - [sym_preproc_directive] = ACTIONS(3660), - [anon_sym_LPAREN2] = ACTIONS(3662), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_TILDE] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_AMP_AMP] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym___extension__] = ACTIONS(3660), - [anon_sym_typedef] = ACTIONS(3660), - [anon_sym_virtual] = ACTIONS(3660), - [anon_sym_extern] = ACTIONS(3660), - [anon_sym___attribute__] = ACTIONS(3660), - [anon_sym___attribute] = ACTIONS(3660), - [anon_sym_using] = ACTIONS(3660), - [anon_sym_COLON_COLON] = ACTIONS(3662), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), - [anon_sym___declspec] = ACTIONS(3660), - [anon_sym___based] = ACTIONS(3660), - [anon_sym___cdecl] = ACTIONS(3660), - [anon_sym___clrcall] = ACTIONS(3660), - [anon_sym___stdcall] = ACTIONS(3660), - [anon_sym___fastcall] = ACTIONS(3660), - [anon_sym___thiscall] = ACTIONS(3660), - [anon_sym___vectorcall] = ACTIONS(3660), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_signed] = ACTIONS(3660), - [anon_sym_unsigned] = ACTIONS(3660), - [anon_sym_long] = ACTIONS(3660), - [anon_sym_short] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_static] = ACTIONS(3660), - [anon_sym_register] = ACTIONS(3660), - [anon_sym_inline] = ACTIONS(3660), - [anon_sym___inline] = ACTIONS(3660), - [anon_sym___inline__] = ACTIONS(3660), - [anon_sym___forceinline] = ACTIONS(3660), - [anon_sym_thread_local] = ACTIONS(3660), - [anon_sym___thread] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3660), - [anon_sym_constexpr] = ACTIONS(3660), - [anon_sym_volatile] = ACTIONS(3660), - [anon_sym_restrict] = ACTIONS(3660), - [anon_sym___restrict__] = ACTIONS(3660), - [anon_sym__Atomic] = ACTIONS(3660), - [anon_sym__Noreturn] = ACTIONS(3660), - [anon_sym_noreturn] = ACTIONS(3660), - [anon_sym__Nonnull] = ACTIONS(3660), - [anon_sym_mutable] = ACTIONS(3660), - [anon_sym_constinit] = ACTIONS(3660), - [anon_sym_consteval] = ACTIONS(3660), - [anon_sym_alignas] = ACTIONS(3660), - [anon_sym__Alignas] = ACTIONS(3660), - [sym_primitive_type] = ACTIONS(3660), - [anon_sym_enum] = ACTIONS(3660), - [anon_sym_class] = ACTIONS(3660), - [anon_sym_struct] = ACTIONS(3660), - [anon_sym_union] = ACTIONS(3660), - [anon_sym_if] = ACTIONS(3660), - [anon_sym_else] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_case] = ACTIONS(3660), - [anon_sym_default] = ACTIONS(3660), - [anon_sym_while] = ACTIONS(3660), - [anon_sym_do] = ACTIONS(3660), - [anon_sym_for] = ACTIONS(3660), - [anon_sym_return] = ACTIONS(3660), - [anon_sym_break] = ACTIONS(3660), - [anon_sym_continue] = ACTIONS(3660), - [anon_sym_goto] = ACTIONS(3660), - [anon_sym___try] = ACTIONS(3660), - [anon_sym___leave] = ACTIONS(3660), - [anon_sym_not] = ACTIONS(3660), - [anon_sym_compl] = ACTIONS(3660), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_sizeof] = ACTIONS(3660), - [anon_sym___alignof__] = ACTIONS(3660), - [anon_sym___alignof] = ACTIONS(3660), - [anon_sym__alignof] = ACTIONS(3660), - [anon_sym_alignof] = ACTIONS(3660), - [anon_sym__Alignof] = ACTIONS(3660), - [anon_sym_offsetof] = ACTIONS(3660), - [anon_sym__Generic] = ACTIONS(3660), - [anon_sym_typename] = ACTIONS(3660), - [anon_sym_asm] = ACTIONS(3660), - [anon_sym___asm__] = ACTIONS(3660), - [anon_sym___asm] = ACTIONS(3660), - [sym_number_literal] = ACTIONS(3662), - [anon_sym_L_SQUOTE] = ACTIONS(3662), - [anon_sym_u_SQUOTE] = ACTIONS(3662), - [anon_sym_U_SQUOTE] = ACTIONS(3662), - [anon_sym_u8_SQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3662), - [anon_sym_L_DQUOTE] = ACTIONS(3662), - [anon_sym_u_DQUOTE] = ACTIONS(3662), - [anon_sym_U_DQUOTE] = ACTIONS(3662), - [anon_sym_u8_DQUOTE] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3662), - [sym_true] = ACTIONS(3660), - [sym_false] = ACTIONS(3660), - [anon_sym_NULL] = ACTIONS(3660), - [anon_sym_nullptr] = ACTIONS(3660), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3660), - [anon_sym_decltype] = ACTIONS(3660), - [anon_sym_explicit] = ACTIONS(3660), - [anon_sym_template] = ACTIONS(3660), - [anon_sym_operator] = ACTIONS(3660), - [anon_sym_try] = ACTIONS(3660), - [anon_sym_delete] = ACTIONS(3660), - [anon_sym_throw] = ACTIONS(3660), - [anon_sym_namespace] = ACTIONS(3660), - [anon_sym_static_assert] = ACTIONS(3660), - [anon_sym_concept] = ACTIONS(3660), - [anon_sym_co_return] = ACTIONS(3660), - [anon_sym_co_yield] = ACTIONS(3660), - [anon_sym_R_DQUOTE] = ACTIONS(3662), - [anon_sym_LR_DQUOTE] = ACTIONS(3662), - [anon_sym_uR_DQUOTE] = ACTIONS(3662), - [anon_sym_UR_DQUOTE] = ACTIONS(3662), - [anon_sym_u8R_DQUOTE] = ACTIONS(3662), - [anon_sym_co_await] = ACTIONS(3660), - [anon_sym_new] = ACTIONS(3660), - [anon_sym_requires] = ACTIONS(3660), - [anon_sym_CARET_CARET] = ACTIONS(3662), - [anon_sym_LBRACK_COLON] = ACTIONS(3662), - [sym_this] = ACTIONS(3660), + [STATE(565)] = { + [ts_builtin_sym_end] = ACTIONS(3656), + [sym_identifier] = ACTIONS(3654), + [aux_sym_preproc_include_token1] = ACTIONS(3654), + [aux_sym_preproc_def_token1] = ACTIONS(3654), + [aux_sym_preproc_if_token1] = ACTIONS(3654), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3654), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3654), + [sym_preproc_directive] = ACTIONS(3654), + [anon_sym_LPAREN2] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_STAR] = ACTIONS(3656), + [anon_sym_AMP_AMP] = ACTIONS(3656), + [anon_sym_AMP] = ACTIONS(3654), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym___extension__] = ACTIONS(3654), + [anon_sym_typedef] = ACTIONS(3654), + [anon_sym_virtual] = ACTIONS(3654), + [anon_sym_extern] = ACTIONS(3654), + [anon_sym___attribute__] = ACTIONS(3654), + [anon_sym___attribute] = ACTIONS(3654), + [anon_sym_using] = ACTIONS(3654), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3656), + [anon_sym___declspec] = ACTIONS(3654), + [anon_sym___based] = ACTIONS(3654), + [anon_sym___cdecl] = ACTIONS(3654), + [anon_sym___clrcall] = ACTIONS(3654), + [anon_sym___stdcall] = ACTIONS(3654), + [anon_sym___fastcall] = ACTIONS(3654), + [anon_sym___thiscall] = ACTIONS(3654), + [anon_sym___vectorcall] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_signed] = ACTIONS(3654), + [anon_sym_unsigned] = ACTIONS(3654), + [anon_sym_long] = ACTIONS(3654), + [anon_sym_short] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_register] = ACTIONS(3654), + [anon_sym_inline] = ACTIONS(3654), + [anon_sym___inline] = ACTIONS(3654), + [anon_sym___inline__] = ACTIONS(3654), + [anon_sym___forceinline] = ACTIONS(3654), + [anon_sym_thread_local] = ACTIONS(3654), + [anon_sym___thread] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3654), + [anon_sym_constexpr] = ACTIONS(3654), + [anon_sym_volatile] = ACTIONS(3654), + [anon_sym_restrict] = ACTIONS(3654), + [anon_sym___restrict__] = ACTIONS(3654), + [anon_sym__Atomic] = ACTIONS(3654), + [anon_sym__Noreturn] = ACTIONS(3654), + [anon_sym_noreturn] = ACTIONS(3654), + [anon_sym__Nonnull] = ACTIONS(3654), + [anon_sym_mutable] = ACTIONS(3654), + [anon_sym_constinit] = ACTIONS(3654), + [anon_sym_consteval] = ACTIONS(3654), + [anon_sym_alignas] = ACTIONS(3654), + [anon_sym__Alignas] = ACTIONS(3654), + [sym_primitive_type] = ACTIONS(3654), + [anon_sym_enum] = ACTIONS(3654), + [anon_sym_class] = ACTIONS(3654), + [anon_sym_struct] = ACTIONS(3654), + [anon_sym_union] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_case] = ACTIONS(3654), + [anon_sym_default] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_goto] = ACTIONS(3654), + [anon_sym___try] = ACTIONS(3654), + [anon_sym___leave] = ACTIONS(3654), + [anon_sym_not] = ACTIONS(3654), + [anon_sym_compl] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_sizeof] = ACTIONS(3654), + [anon_sym___alignof__] = ACTIONS(3654), + [anon_sym___alignof] = ACTIONS(3654), + [anon_sym__alignof] = ACTIONS(3654), + [anon_sym_alignof] = ACTIONS(3654), + [anon_sym__Alignof] = ACTIONS(3654), + [anon_sym_offsetof] = ACTIONS(3654), + [anon_sym__Generic] = ACTIONS(3654), + [anon_sym_typename] = ACTIONS(3654), + [anon_sym_asm] = ACTIONS(3654), + [anon_sym___asm__] = ACTIONS(3654), + [anon_sym___asm] = ACTIONS(3654), + [sym_number_literal] = ACTIONS(3656), + [anon_sym_L_SQUOTE] = ACTIONS(3656), + [anon_sym_u_SQUOTE] = ACTIONS(3656), + [anon_sym_U_SQUOTE] = ACTIONS(3656), + [anon_sym_u8_SQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_L_DQUOTE] = ACTIONS(3656), + [anon_sym_u_DQUOTE] = ACTIONS(3656), + [anon_sym_U_DQUOTE] = ACTIONS(3656), + [anon_sym_u8_DQUOTE] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [sym_true] = ACTIONS(3654), + [sym_false] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_nullptr] = ACTIONS(3654), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3654), + [anon_sym_decltype] = ACTIONS(3654), + [anon_sym_explicit] = ACTIONS(3654), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_module] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_template] = ACTIONS(3654), + [anon_sym_operator] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_delete] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_namespace] = ACTIONS(3654), + [anon_sym_static_assert] = ACTIONS(3654), + [anon_sym_concept] = ACTIONS(3654), + [anon_sym_co_return] = ACTIONS(3654), + [anon_sym_co_yield] = ACTIONS(3654), + [anon_sym_R_DQUOTE] = ACTIONS(3656), + [anon_sym_LR_DQUOTE] = ACTIONS(3656), + [anon_sym_uR_DQUOTE] = ACTIONS(3656), + [anon_sym_UR_DQUOTE] = ACTIONS(3656), + [anon_sym_u8R_DQUOTE] = ACTIONS(3656), + [anon_sym_co_await] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_requires] = ACTIONS(3654), + [anon_sym_CARET_CARET] = ACTIONS(3656), + [anon_sym_LBRACK_COLON] = ACTIONS(3656), + [sym_this] = ACTIONS(3654), }, - [STATE(641)] = { - [sym_preproc_def] = STATE(551), - [sym_preproc_function_def] = STATE(551), - [sym_preproc_call] = STATE(551), - [sym_preproc_if_in_field_declaration_list] = STATE(551), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(551), - [sym_type_definition] = STATE(551), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(8025), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8578), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(551), - [sym_field_declaration] = STATE(551), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2417), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(551), - [sym_operator_cast] = STATE(9064), - [sym_inline_method_definition] = STATE(551), - [sym__constructor_specifiers] = STATE(2417), - [sym_operator_cast_definition] = STATE(551), - [sym_operator_cast_declaration] = STATE(551), - [sym_constructor_or_destructor_definition] = STATE(551), - [sym_constructor_or_destructor_declaration] = STATE(551), - [sym_friend_declaration] = STATE(551), - [sym_access_specifier] = STATE(10717), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(551), - [sym_alias_declaration] = STATE(551), - [sym_static_assert_declaration] = STATE(551), - [sym_consteval_block_declaration] = STATE(551), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9064), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(551), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9390), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2417), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(4324), - [aux_sym_preproc_if_token1] = ACTIONS(4326), - [aux_sym_preproc_if_token2] = ACTIONS(4418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4330), - [sym_preproc_directive] = ACTIONS(4332), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(4420), - [anon_sym___extension__] = ACTIONS(4336), - [anon_sym_typedef] = ACTIONS(4338), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4340), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4342), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4344), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4348), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(4350), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [STATE(566)] = { + [ts_builtin_sym_end] = ACTIONS(3676), + [sym_identifier] = ACTIONS(3674), + [aux_sym_preproc_include_token1] = ACTIONS(3674), + [aux_sym_preproc_def_token1] = ACTIONS(3674), + [aux_sym_preproc_if_token1] = ACTIONS(3674), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3674), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3674), + [sym_preproc_directive] = ACTIONS(3674), + [anon_sym_LPAREN2] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3676), + [anon_sym_TILDE] = ACTIONS(3676), + [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_PLUS] = ACTIONS(3674), + [anon_sym_STAR] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3676), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_SEMI] = ACTIONS(3676), + [anon_sym___extension__] = ACTIONS(3674), + [anon_sym_typedef] = ACTIONS(3674), + [anon_sym_virtual] = ACTIONS(3674), + [anon_sym_extern] = ACTIONS(3674), + [anon_sym___attribute__] = ACTIONS(3674), + [anon_sym___attribute] = ACTIONS(3674), + [anon_sym_using] = ACTIONS(3674), + [anon_sym_COLON_COLON] = ACTIONS(3676), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3676), + [anon_sym___declspec] = ACTIONS(3674), + [anon_sym___based] = ACTIONS(3674), + [anon_sym___cdecl] = ACTIONS(3674), + [anon_sym___clrcall] = ACTIONS(3674), + [anon_sym___stdcall] = ACTIONS(3674), + [anon_sym___fastcall] = ACTIONS(3674), + [anon_sym___thiscall] = ACTIONS(3674), + [anon_sym___vectorcall] = ACTIONS(3674), + [anon_sym_LBRACE] = ACTIONS(3676), + [anon_sym_signed] = ACTIONS(3674), + [anon_sym_unsigned] = ACTIONS(3674), + [anon_sym_long] = ACTIONS(3674), + [anon_sym_short] = ACTIONS(3674), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_static] = ACTIONS(3674), + [anon_sym_register] = ACTIONS(3674), + [anon_sym_inline] = ACTIONS(3674), + [anon_sym___inline] = ACTIONS(3674), + [anon_sym___inline__] = ACTIONS(3674), + [anon_sym___forceinline] = ACTIONS(3674), + [anon_sym_thread_local] = ACTIONS(3674), + [anon_sym___thread] = ACTIONS(3674), + [anon_sym_const] = ACTIONS(3674), + [anon_sym_constexpr] = ACTIONS(3674), + [anon_sym_volatile] = ACTIONS(3674), + [anon_sym_restrict] = ACTIONS(3674), + [anon_sym___restrict__] = ACTIONS(3674), + [anon_sym__Atomic] = ACTIONS(3674), + [anon_sym__Noreturn] = ACTIONS(3674), + [anon_sym_noreturn] = ACTIONS(3674), + [anon_sym__Nonnull] = ACTIONS(3674), + [anon_sym_mutable] = ACTIONS(3674), + [anon_sym_constinit] = ACTIONS(3674), + [anon_sym_consteval] = ACTIONS(3674), + [anon_sym_alignas] = ACTIONS(3674), + [anon_sym__Alignas] = ACTIONS(3674), + [sym_primitive_type] = ACTIONS(3674), + [anon_sym_enum] = ACTIONS(3674), + [anon_sym_class] = ACTIONS(3674), + [anon_sym_struct] = ACTIONS(3674), + [anon_sym_union] = ACTIONS(3674), + [anon_sym_if] = ACTIONS(3674), + [anon_sym_else] = ACTIONS(3674), + [anon_sym_switch] = ACTIONS(3674), + [anon_sym_case] = ACTIONS(3674), + [anon_sym_default] = ACTIONS(3674), + [anon_sym_while] = ACTIONS(3674), + [anon_sym_do] = ACTIONS(3674), + [anon_sym_for] = ACTIONS(3674), + [anon_sym_return] = ACTIONS(3674), + [anon_sym_break] = ACTIONS(3674), + [anon_sym_continue] = ACTIONS(3674), + [anon_sym_goto] = ACTIONS(3674), + [anon_sym___try] = ACTIONS(3674), + [anon_sym___leave] = ACTIONS(3674), + [anon_sym_not] = ACTIONS(3674), + [anon_sym_compl] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [anon_sym_PLUS_PLUS] = ACTIONS(3676), + [anon_sym_sizeof] = ACTIONS(3674), + [anon_sym___alignof__] = ACTIONS(3674), + [anon_sym___alignof] = ACTIONS(3674), + [anon_sym__alignof] = ACTIONS(3674), + [anon_sym_alignof] = ACTIONS(3674), + [anon_sym__Alignof] = ACTIONS(3674), + [anon_sym_offsetof] = ACTIONS(3674), + [anon_sym__Generic] = ACTIONS(3674), + [anon_sym_typename] = ACTIONS(3674), + [anon_sym_asm] = ACTIONS(3674), + [anon_sym___asm__] = ACTIONS(3674), + [anon_sym___asm] = ACTIONS(3674), + [sym_number_literal] = ACTIONS(3676), + [anon_sym_L_SQUOTE] = ACTIONS(3676), + [anon_sym_u_SQUOTE] = ACTIONS(3676), + [anon_sym_U_SQUOTE] = ACTIONS(3676), + [anon_sym_u8_SQUOTE] = ACTIONS(3676), + [anon_sym_SQUOTE] = ACTIONS(3676), + [anon_sym_L_DQUOTE] = ACTIONS(3676), + [anon_sym_u_DQUOTE] = ACTIONS(3676), + [anon_sym_U_DQUOTE] = ACTIONS(3676), + [anon_sym_u8_DQUOTE] = ACTIONS(3676), + [anon_sym_DQUOTE] = ACTIONS(3676), + [sym_true] = ACTIONS(3674), + [sym_false] = ACTIONS(3674), + [anon_sym_NULL] = ACTIONS(3674), + [anon_sym_nullptr] = ACTIONS(3674), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3674), + [anon_sym_decltype] = ACTIONS(3674), + [anon_sym_explicit] = ACTIONS(3674), + [anon_sym_export] = ACTIONS(3674), + [anon_sym_module] = ACTIONS(3674), + [anon_sym_import] = ACTIONS(3674), + [anon_sym_template] = ACTIONS(3674), + [anon_sym_operator] = ACTIONS(3674), + [anon_sym_try] = ACTIONS(3674), + [anon_sym_delete] = ACTIONS(3674), + [anon_sym_throw] = ACTIONS(3674), + [anon_sym_namespace] = ACTIONS(3674), + [anon_sym_static_assert] = ACTIONS(3674), + [anon_sym_concept] = ACTIONS(3674), + [anon_sym_co_return] = ACTIONS(3674), + [anon_sym_co_yield] = ACTIONS(3674), + [anon_sym_R_DQUOTE] = ACTIONS(3676), + [anon_sym_LR_DQUOTE] = ACTIONS(3676), + [anon_sym_uR_DQUOTE] = ACTIONS(3676), + [anon_sym_UR_DQUOTE] = ACTIONS(3676), + [anon_sym_u8R_DQUOTE] = ACTIONS(3676), + [anon_sym_co_await] = ACTIONS(3674), + [anon_sym_new] = ACTIONS(3674), + [anon_sym_requires] = ACTIONS(3674), + [anon_sym_CARET_CARET] = ACTIONS(3676), + [anon_sym_LBRACK_COLON] = ACTIONS(3676), + [sym_this] = ACTIONS(3674), }, - [STATE(642)] = { - [sym_preproc_def] = STATE(637), - [sym_preproc_function_def] = STATE(637), - [sym_preproc_call] = STATE(637), - [sym_preproc_if_in_field_declaration_list] = STATE(637), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(637), - [sym_type_definition] = STATE(637), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7964), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(637), - [sym_field_declaration] = STATE(637), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(637), - [sym_operator_cast] = STATE(9142), - [sym_inline_method_definition] = STATE(637), - [sym__constructor_specifiers] = STATE(2332), - [sym_operator_cast_definition] = STATE(637), - [sym_operator_cast_declaration] = STATE(637), - [sym_constructor_or_destructor_definition] = STATE(637), - [sym_constructor_or_destructor_declaration] = STATE(637), - [sym_friend_declaration] = STATE(637), - [sym_access_specifier] = STATE(11109), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(637), - [sym_alias_declaration] = STATE(637), - [sym_static_assert_declaration] = STATE(637), - [sym_consteval_block_declaration] = STATE(637), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(637), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9371), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(4352), - [aux_sym_preproc_if_token1] = ACTIONS(4354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), - [sym_preproc_directive] = ACTIONS(4358), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(4422), - [anon_sym___extension__] = ACTIONS(4362), - [anon_sym_typedef] = ACTIONS(4364), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4424), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4372), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(4374), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4376), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(4378), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [STATE(567)] = { + [sym_identifier] = ACTIONS(3600), + [aux_sym_preproc_include_token1] = ACTIONS(3600), + [aux_sym_preproc_def_token1] = ACTIONS(3600), + [aux_sym_preproc_if_token1] = ACTIONS(3600), + [aux_sym_preproc_if_token2] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), + [sym_preproc_directive] = ACTIONS(3600), + [anon_sym_LPAREN2] = ACTIONS(3602), + [anon_sym_BANG] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3600), + [anon_sym_STAR] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_AMP] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym___extension__] = ACTIONS(3600), + [anon_sym_typedef] = ACTIONS(3600), + [anon_sym_virtual] = ACTIONS(3600), + [anon_sym_extern] = ACTIONS(3600), + [anon_sym___attribute__] = ACTIONS(3600), + [anon_sym___attribute] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), + [anon_sym___declspec] = ACTIONS(3600), + [anon_sym___based] = ACTIONS(3600), + [anon_sym___cdecl] = ACTIONS(3600), + [anon_sym___clrcall] = ACTIONS(3600), + [anon_sym___stdcall] = ACTIONS(3600), + [anon_sym___fastcall] = ACTIONS(3600), + [anon_sym___thiscall] = ACTIONS(3600), + [anon_sym___vectorcall] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_signed] = ACTIONS(3600), + [anon_sym_unsigned] = ACTIONS(3600), + [anon_sym_long] = ACTIONS(3600), + [anon_sym_short] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_register] = ACTIONS(3600), + [anon_sym_inline] = ACTIONS(3600), + [anon_sym___inline] = ACTIONS(3600), + [anon_sym___inline__] = ACTIONS(3600), + [anon_sym___forceinline] = ACTIONS(3600), + [anon_sym_thread_local] = ACTIONS(3600), + [anon_sym___thread] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_constexpr] = ACTIONS(3600), + [anon_sym_volatile] = ACTIONS(3600), + [anon_sym_restrict] = ACTIONS(3600), + [anon_sym___restrict__] = ACTIONS(3600), + [anon_sym__Atomic] = ACTIONS(3600), + [anon_sym__Noreturn] = ACTIONS(3600), + [anon_sym_noreturn] = ACTIONS(3600), + [anon_sym__Nonnull] = ACTIONS(3600), + [anon_sym_mutable] = ACTIONS(3600), + [anon_sym_constinit] = ACTIONS(3600), + [anon_sym_consteval] = ACTIONS(3600), + [anon_sym_alignas] = ACTIONS(3600), + [anon_sym__Alignas] = ACTIONS(3600), + [sym_primitive_type] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_struct] = ACTIONS(3600), + [anon_sym_union] = ACTIONS(3600), + [anon_sym_if] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3600), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_case] = ACTIONS(3600), + [anon_sym_default] = ACTIONS(3600), + [anon_sym_while] = ACTIONS(3600), + [anon_sym_do] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3600), + [anon_sym_return] = ACTIONS(3600), + [anon_sym_break] = ACTIONS(3600), + [anon_sym_continue] = ACTIONS(3600), + [anon_sym_goto] = ACTIONS(3600), + [anon_sym___try] = ACTIONS(3600), + [anon_sym___leave] = ACTIONS(3600), + [anon_sym_not] = ACTIONS(3600), + [anon_sym_compl] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3602), + [anon_sym_PLUS_PLUS] = ACTIONS(3602), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(3600), + [anon_sym___alignof] = ACTIONS(3600), + [anon_sym__alignof] = ACTIONS(3600), + [anon_sym_alignof] = ACTIONS(3600), + [anon_sym__Alignof] = ACTIONS(3600), + [anon_sym_offsetof] = ACTIONS(3600), + [anon_sym__Generic] = ACTIONS(3600), + [anon_sym_typename] = ACTIONS(3600), + [anon_sym_asm] = ACTIONS(3600), + [anon_sym___asm__] = ACTIONS(3600), + [anon_sym___asm] = ACTIONS(3600), + [sym_number_literal] = ACTIONS(3602), + [anon_sym_L_SQUOTE] = ACTIONS(3602), + [anon_sym_u_SQUOTE] = ACTIONS(3602), + [anon_sym_U_SQUOTE] = ACTIONS(3602), + [anon_sym_u8_SQUOTE] = ACTIONS(3602), + [anon_sym_SQUOTE] = ACTIONS(3602), + [anon_sym_L_DQUOTE] = ACTIONS(3602), + [anon_sym_u_DQUOTE] = ACTIONS(3602), + [anon_sym_U_DQUOTE] = ACTIONS(3602), + [anon_sym_u8_DQUOTE] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [sym_true] = ACTIONS(3600), + [sym_false] = ACTIONS(3600), + [anon_sym_NULL] = ACTIONS(3600), + [anon_sym_nullptr] = ACTIONS(3600), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3600), + [anon_sym_decltype] = ACTIONS(3600), + [anon_sym_explicit] = ACTIONS(3600), + [anon_sym_export] = ACTIONS(3600), + [anon_sym_module] = ACTIONS(3600), + [anon_sym_import] = ACTIONS(3600), + [anon_sym_template] = ACTIONS(3600), + [anon_sym_operator] = ACTIONS(3600), + [anon_sym_try] = ACTIONS(3600), + [anon_sym_delete] = ACTIONS(3600), + [anon_sym_throw] = ACTIONS(3600), + [anon_sym_namespace] = ACTIONS(3600), + [anon_sym_static_assert] = ACTIONS(3600), + [anon_sym_concept] = ACTIONS(3600), + [anon_sym_co_return] = ACTIONS(3600), + [anon_sym_co_yield] = ACTIONS(3600), + [anon_sym_R_DQUOTE] = ACTIONS(3602), + [anon_sym_LR_DQUOTE] = ACTIONS(3602), + [anon_sym_uR_DQUOTE] = ACTIONS(3602), + [anon_sym_UR_DQUOTE] = ACTIONS(3602), + [anon_sym_u8R_DQUOTE] = ACTIONS(3602), + [anon_sym_co_await] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3600), + [anon_sym_requires] = ACTIONS(3600), + [anon_sym_CARET_CARET] = ACTIONS(3602), + [anon_sym_LBRACK_COLON] = ACTIONS(3602), + [sym_this] = ACTIONS(3600), }, - [STATE(643)] = { - [ts_builtin_sym_end] = ACTIONS(4426), - [sym_identifier] = ACTIONS(4428), - [aux_sym_preproc_include_token1] = ACTIONS(4428), - [aux_sym_preproc_def_token1] = ACTIONS(4428), - [aux_sym_preproc_if_token1] = ACTIONS(4428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4428), - [sym_preproc_directive] = ACTIONS(4428), - [anon_sym_LPAREN2] = ACTIONS(4426), - [anon_sym_BANG] = ACTIONS(4426), - [anon_sym_TILDE] = ACTIONS(4426), - [anon_sym_DASH] = ACTIONS(4428), - [anon_sym_PLUS] = ACTIONS(4428), - [anon_sym_STAR] = ACTIONS(4426), - [anon_sym_AMP_AMP] = ACTIONS(4426), - [anon_sym_AMP] = ACTIONS(4428), - [anon_sym_SEMI] = ACTIONS(4426), - [anon_sym___extension__] = ACTIONS(4428), - [anon_sym_typedef] = ACTIONS(4428), - [anon_sym_virtual] = ACTIONS(4428), - [anon_sym_extern] = ACTIONS(4428), - [anon_sym___attribute__] = ACTIONS(4428), - [anon_sym___attribute] = ACTIONS(4428), - [anon_sym_using] = ACTIONS(4428), - [anon_sym_COLON_COLON] = ACTIONS(4426), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4426), - [anon_sym___declspec] = ACTIONS(4428), - [anon_sym___based] = ACTIONS(4428), - [anon_sym___cdecl] = ACTIONS(4428), - [anon_sym___clrcall] = ACTIONS(4428), - [anon_sym___stdcall] = ACTIONS(4428), - [anon_sym___fastcall] = ACTIONS(4428), - [anon_sym___thiscall] = ACTIONS(4428), - [anon_sym___vectorcall] = ACTIONS(4428), - [anon_sym_LBRACE] = ACTIONS(4426), - [anon_sym_signed] = ACTIONS(4428), - [anon_sym_unsigned] = ACTIONS(4428), - [anon_sym_long] = ACTIONS(4428), - [anon_sym_short] = ACTIONS(4428), - [anon_sym_LBRACK] = ACTIONS(4428), - [anon_sym_static] = ACTIONS(4428), - [anon_sym_register] = ACTIONS(4428), - [anon_sym_inline] = ACTIONS(4428), - [anon_sym___inline] = ACTIONS(4428), - [anon_sym___inline__] = ACTIONS(4428), - [anon_sym___forceinline] = ACTIONS(4428), - [anon_sym_thread_local] = ACTIONS(4428), - [anon_sym___thread] = ACTIONS(4428), - [anon_sym_const] = ACTIONS(4428), - [anon_sym_constexpr] = ACTIONS(4428), - [anon_sym_volatile] = ACTIONS(4428), - [anon_sym_restrict] = ACTIONS(4428), - [anon_sym___restrict__] = ACTIONS(4428), - [anon_sym__Atomic] = ACTIONS(4428), - [anon_sym__Noreturn] = ACTIONS(4428), - [anon_sym_noreturn] = ACTIONS(4428), - [anon_sym__Nonnull] = ACTIONS(4428), - [anon_sym_mutable] = ACTIONS(4428), - [anon_sym_constinit] = ACTIONS(4428), - [anon_sym_consteval] = ACTIONS(4428), - [anon_sym_alignas] = ACTIONS(4428), - [anon_sym__Alignas] = ACTIONS(4428), - [sym_primitive_type] = ACTIONS(4428), - [anon_sym_enum] = ACTIONS(4428), - [anon_sym_class] = ACTIONS(4428), - [anon_sym_struct] = ACTIONS(4428), - [anon_sym_union] = ACTIONS(4428), - [anon_sym_if] = ACTIONS(4428), - [anon_sym_switch] = ACTIONS(4428), - [anon_sym_case] = ACTIONS(4428), - [anon_sym_default] = ACTIONS(4428), - [anon_sym_while] = ACTIONS(4428), - [anon_sym_do] = ACTIONS(4428), - [anon_sym_for] = ACTIONS(4428), - [anon_sym_return] = ACTIONS(4428), - [anon_sym_break] = ACTIONS(4428), - [anon_sym_continue] = ACTIONS(4428), - [anon_sym_goto] = ACTIONS(4428), - [anon_sym_not] = ACTIONS(4428), - [anon_sym_compl] = ACTIONS(4428), - [anon_sym_DASH_DASH] = ACTIONS(4426), - [anon_sym_PLUS_PLUS] = ACTIONS(4426), - [anon_sym_sizeof] = ACTIONS(4428), - [anon_sym___alignof__] = ACTIONS(4428), - [anon_sym___alignof] = ACTIONS(4428), - [anon_sym__alignof] = ACTIONS(4428), - [anon_sym_alignof] = ACTIONS(4428), - [anon_sym__Alignof] = ACTIONS(4428), - [anon_sym_offsetof] = ACTIONS(4428), - [anon_sym__Generic] = ACTIONS(4428), - [anon_sym_typename] = ACTIONS(4428), - [anon_sym_asm] = ACTIONS(4428), - [anon_sym___asm__] = ACTIONS(4428), - [anon_sym___asm] = ACTIONS(4428), - [sym_number_literal] = ACTIONS(4426), - [anon_sym_L_SQUOTE] = ACTIONS(4426), - [anon_sym_u_SQUOTE] = ACTIONS(4426), - [anon_sym_U_SQUOTE] = ACTIONS(4426), - [anon_sym_u8_SQUOTE] = ACTIONS(4426), - [anon_sym_SQUOTE] = ACTIONS(4426), - [anon_sym_L_DQUOTE] = ACTIONS(4426), - [anon_sym_u_DQUOTE] = ACTIONS(4426), - [anon_sym_U_DQUOTE] = ACTIONS(4426), - [anon_sym_u8_DQUOTE] = ACTIONS(4426), - [anon_sym_DQUOTE] = ACTIONS(4426), - [sym_true] = ACTIONS(4428), - [sym_false] = ACTIONS(4428), - [anon_sym_NULL] = ACTIONS(4428), - [anon_sym_nullptr] = ACTIONS(4428), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4428), - [anon_sym_decltype] = ACTIONS(4428), - [anon_sym_explicit] = ACTIONS(4428), - [anon_sym_export] = ACTIONS(4428), - [anon_sym_module] = ACTIONS(4428), - [anon_sym_import] = ACTIONS(4428), - [anon_sym_template] = ACTIONS(4428), - [anon_sym_operator] = ACTIONS(4428), - [anon_sym_try] = ACTIONS(4428), - [anon_sym_delete] = ACTIONS(4428), - [anon_sym_throw] = ACTIONS(4428), - [anon_sym_namespace] = ACTIONS(4428), - [anon_sym_static_assert] = ACTIONS(4428), - [anon_sym_concept] = ACTIONS(4428), - [anon_sym_co_return] = ACTIONS(4428), - [anon_sym_co_yield] = ACTIONS(4428), - [anon_sym_R_DQUOTE] = ACTIONS(4426), - [anon_sym_LR_DQUOTE] = ACTIONS(4426), - [anon_sym_uR_DQUOTE] = ACTIONS(4426), - [anon_sym_UR_DQUOTE] = ACTIONS(4426), - [anon_sym_u8R_DQUOTE] = ACTIONS(4426), - [anon_sym_co_await] = ACTIONS(4428), - [anon_sym_new] = ACTIONS(4428), - [anon_sym_requires] = ACTIONS(4428), - [anon_sym_CARET_CARET] = ACTIONS(4426), - [anon_sym_LBRACK_COLON] = ACTIONS(4426), - [sym_this] = ACTIONS(4428), + [STATE(568)] = { + [ts_builtin_sym_end] = ACTIONS(3389), + [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(3389), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3384), + [anon_sym_PLUS] = ACTIONS(3384), + [anon_sym_STAR] = ACTIONS(3389), + [anon_sym_AMP_AMP] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3384), + [anon_sym_SEMI] = ACTIONS(3389), + [anon_sym___extension__] = ACTIONS(3384), + [anon_sym_typedef] = ACTIONS(3384), + [anon_sym_virtual] = ACTIONS(3384), + [anon_sym_extern] = ACTIONS(3384), + [anon_sym___attribute__] = ACTIONS(3384), + [anon_sym___attribute] = ACTIONS(3384), + [anon_sym_using] = ACTIONS(3384), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3389), + [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(3389), + [anon_sym_signed] = ACTIONS(3384), + [anon_sym_unsigned] = ACTIONS(3384), + [anon_sym_long] = ACTIONS(3384), + [anon_sym_short] = ACTIONS(3384), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3384), + [anon_sym_register] = ACTIONS(3384), + [anon_sym_inline] = ACTIONS(3384), + [anon_sym___inline] = ACTIONS(3384), + [anon_sym___inline__] = ACTIONS(3384), + [anon_sym___forceinline] = ACTIONS(3384), + [anon_sym_thread_local] = ACTIONS(3384), + [anon_sym___thread] = 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__Nonnull] = ACTIONS(3384), + [anon_sym_mutable] = ACTIONS(3384), + [anon_sym_constinit] = ACTIONS(3384), + [anon_sym_consteval] = ACTIONS(3384), + [anon_sym_alignas] = ACTIONS(3384), + [anon_sym__Alignas] = 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_else] = 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___try] = ACTIONS(3384), + [anon_sym___leave] = ACTIONS(3384), + [anon_sym_not] = ACTIONS(3384), + [anon_sym_compl] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3389), + [anon_sym_PLUS_PLUS] = ACTIONS(3389), + [anon_sym_sizeof] = ACTIONS(3384), + [anon_sym___alignof__] = ACTIONS(3384), + [anon_sym___alignof] = ACTIONS(3384), + [anon_sym__alignof] = ACTIONS(3384), + [anon_sym_alignof] = ACTIONS(3384), + [anon_sym__Alignof] = ACTIONS(3384), + [anon_sym_offsetof] = ACTIONS(3384), + [anon_sym__Generic] = ACTIONS(3384), + [anon_sym_typename] = ACTIONS(3384), + [anon_sym_asm] = ACTIONS(3384), + [anon_sym___asm__] = ACTIONS(3384), + [anon_sym___asm] = ACTIONS(3384), + [sym_number_literal] = ACTIONS(3389), + [anon_sym_L_SQUOTE] = ACTIONS(3389), + [anon_sym_u_SQUOTE] = ACTIONS(3389), + [anon_sym_U_SQUOTE] = ACTIONS(3389), + [anon_sym_u8_SQUOTE] = ACTIONS(3389), + [anon_sym_SQUOTE] = ACTIONS(3389), + [anon_sym_L_DQUOTE] = ACTIONS(3389), + [anon_sym_u_DQUOTE] = ACTIONS(3389), + [anon_sym_U_DQUOTE] = ACTIONS(3389), + [anon_sym_u8_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(3389), + [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_explicit] = ACTIONS(3384), + [anon_sym_export] = ACTIONS(3384), + [anon_sym_module] = ACTIONS(3384), + [anon_sym_import] = 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_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(3389), + [anon_sym_LR_DQUOTE] = ACTIONS(3389), + [anon_sym_uR_DQUOTE] = ACTIONS(3389), + [anon_sym_UR_DQUOTE] = ACTIONS(3389), + [anon_sym_u8R_DQUOTE] = ACTIONS(3389), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3384), + [anon_sym_requires] = ACTIONS(3384), + [anon_sym_CARET_CARET] = ACTIONS(3389), + [anon_sym_LBRACK_COLON] = ACTIONS(3389), + [sym_this] = ACTIONS(3384), }, - [STATE(644)] = { - [ts_builtin_sym_end] = ACTIONS(3976), - [sym_identifier] = ACTIONS(3974), - [aux_sym_preproc_include_token1] = ACTIONS(3974), - [aux_sym_preproc_def_token1] = ACTIONS(3974), - [aux_sym_preproc_if_token1] = ACTIONS(3974), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3974), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3974), - [sym_preproc_directive] = ACTIONS(3974), - [anon_sym_LPAREN2] = ACTIONS(3976), - [anon_sym_BANG] = ACTIONS(3976), - [anon_sym_TILDE] = ACTIONS(3976), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_STAR] = ACTIONS(3976), - [anon_sym_AMP_AMP] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3974), - [anon_sym_SEMI] = ACTIONS(3976), - [anon_sym___extension__] = ACTIONS(3974), - [anon_sym_typedef] = ACTIONS(3974), - [anon_sym_virtual] = ACTIONS(3974), - [anon_sym_extern] = ACTIONS(3974), - [anon_sym___attribute__] = ACTIONS(3974), - [anon_sym___attribute] = ACTIONS(3974), - [anon_sym_using] = ACTIONS(3974), - [anon_sym_COLON_COLON] = ACTIONS(3976), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3976), - [anon_sym___declspec] = ACTIONS(3974), - [anon_sym___based] = ACTIONS(3974), - [anon_sym___cdecl] = ACTIONS(3974), - [anon_sym___clrcall] = ACTIONS(3974), - [anon_sym___stdcall] = ACTIONS(3974), - [anon_sym___fastcall] = ACTIONS(3974), - [anon_sym___thiscall] = ACTIONS(3974), - [anon_sym___vectorcall] = ACTIONS(3974), - [anon_sym_LBRACE] = ACTIONS(3976), - [anon_sym_signed] = ACTIONS(3974), - [anon_sym_unsigned] = ACTIONS(3974), - [anon_sym_long] = ACTIONS(3974), - [anon_sym_short] = ACTIONS(3974), - [anon_sym_LBRACK] = ACTIONS(3974), - [anon_sym_static] = ACTIONS(3974), - [anon_sym_register] = ACTIONS(3974), - [anon_sym_inline] = ACTIONS(3974), - [anon_sym___inline] = ACTIONS(3974), - [anon_sym___inline__] = ACTIONS(3974), - [anon_sym___forceinline] = ACTIONS(3974), - [anon_sym_thread_local] = ACTIONS(3974), - [anon_sym___thread] = ACTIONS(3974), - [anon_sym_const] = ACTIONS(3974), - [anon_sym_constexpr] = ACTIONS(3974), - [anon_sym_volatile] = ACTIONS(3974), - [anon_sym_restrict] = ACTIONS(3974), - [anon_sym___restrict__] = ACTIONS(3974), - [anon_sym__Atomic] = ACTIONS(3974), - [anon_sym__Noreturn] = ACTIONS(3974), - [anon_sym_noreturn] = ACTIONS(3974), - [anon_sym__Nonnull] = ACTIONS(3974), - [anon_sym_mutable] = ACTIONS(3974), - [anon_sym_constinit] = ACTIONS(3974), - [anon_sym_consteval] = ACTIONS(3974), - [anon_sym_alignas] = ACTIONS(3974), - [anon_sym__Alignas] = ACTIONS(3974), - [sym_primitive_type] = ACTIONS(3974), - [anon_sym_enum] = ACTIONS(3974), - [anon_sym_class] = ACTIONS(3974), - [anon_sym_struct] = ACTIONS(3974), - [anon_sym_union] = ACTIONS(3974), - [anon_sym_if] = ACTIONS(3974), - [anon_sym_switch] = ACTIONS(3974), - [anon_sym_case] = ACTIONS(3974), - [anon_sym_default] = ACTIONS(3974), - [anon_sym_while] = ACTIONS(3974), - [anon_sym_do] = ACTIONS(3974), - [anon_sym_for] = ACTIONS(3974), - [anon_sym_return] = ACTIONS(3974), - [anon_sym_break] = ACTIONS(3974), - [anon_sym_continue] = ACTIONS(3974), - [anon_sym_goto] = ACTIONS(3974), - [anon_sym_not] = ACTIONS(3974), - [anon_sym_compl] = ACTIONS(3974), - [anon_sym_DASH_DASH] = ACTIONS(3976), - [anon_sym_PLUS_PLUS] = ACTIONS(3976), - [anon_sym_sizeof] = ACTIONS(3974), - [anon_sym___alignof__] = ACTIONS(3974), - [anon_sym___alignof] = ACTIONS(3974), - [anon_sym__alignof] = ACTIONS(3974), - [anon_sym_alignof] = ACTIONS(3974), - [anon_sym__Alignof] = ACTIONS(3974), - [anon_sym_offsetof] = ACTIONS(3974), - [anon_sym__Generic] = ACTIONS(3974), - [anon_sym_typename] = ACTIONS(3974), - [anon_sym_asm] = ACTIONS(3974), - [anon_sym___asm__] = ACTIONS(3974), - [anon_sym___asm] = ACTIONS(3974), - [sym_number_literal] = ACTIONS(3976), - [anon_sym_L_SQUOTE] = ACTIONS(3976), - [anon_sym_u_SQUOTE] = ACTIONS(3976), - [anon_sym_U_SQUOTE] = ACTIONS(3976), - [anon_sym_u8_SQUOTE] = ACTIONS(3976), - [anon_sym_SQUOTE] = ACTIONS(3976), - [anon_sym_L_DQUOTE] = ACTIONS(3976), - [anon_sym_u_DQUOTE] = ACTIONS(3976), - [anon_sym_U_DQUOTE] = ACTIONS(3976), - [anon_sym_u8_DQUOTE] = ACTIONS(3976), - [anon_sym_DQUOTE] = ACTIONS(3976), - [sym_true] = ACTIONS(3974), - [sym_false] = ACTIONS(3974), - [anon_sym_NULL] = ACTIONS(3974), - [anon_sym_nullptr] = ACTIONS(3974), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3974), - [anon_sym_decltype] = ACTIONS(3974), - [anon_sym_explicit] = ACTIONS(3974), - [anon_sym_export] = ACTIONS(3974), - [anon_sym_module] = ACTIONS(3974), - [anon_sym_import] = ACTIONS(3974), - [anon_sym_template] = ACTIONS(3974), - [anon_sym_operator] = ACTIONS(3974), - [anon_sym_try] = ACTIONS(3974), - [anon_sym_delete] = ACTIONS(3974), - [anon_sym_throw] = ACTIONS(3974), - [anon_sym_namespace] = ACTIONS(3974), - [anon_sym_static_assert] = ACTIONS(3974), - [anon_sym_concept] = ACTIONS(3974), - [anon_sym_co_return] = ACTIONS(3974), - [anon_sym_co_yield] = ACTIONS(3974), - [anon_sym_R_DQUOTE] = ACTIONS(3976), - [anon_sym_LR_DQUOTE] = ACTIONS(3976), - [anon_sym_uR_DQUOTE] = ACTIONS(3976), - [anon_sym_UR_DQUOTE] = ACTIONS(3976), - [anon_sym_u8R_DQUOTE] = ACTIONS(3976), - [anon_sym_co_await] = ACTIONS(3974), - [anon_sym_new] = ACTIONS(3974), - [anon_sym_requires] = ACTIONS(3974), - [anon_sym_CARET_CARET] = ACTIONS(3976), - [anon_sym_LBRACK_COLON] = ACTIONS(3976), - [sym_this] = ACTIONS(3974), + [STATE(569)] = { + [sym_identifier] = ACTIONS(3568), + [aux_sym_preproc_include_token1] = ACTIONS(3568), + [aux_sym_preproc_def_token1] = ACTIONS(3568), + [aux_sym_preproc_if_token1] = ACTIONS(3568), + [aux_sym_preproc_if_token2] = ACTIONS(3568), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3568), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3568), + [sym_preproc_directive] = ACTIONS(3568), + [anon_sym_LPAREN2] = ACTIONS(3570), + [anon_sym_BANG] = ACTIONS(3570), + [anon_sym_TILDE] = ACTIONS(3570), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_STAR] = ACTIONS(3570), + [anon_sym_AMP_AMP] = ACTIONS(3570), + [anon_sym_AMP] = ACTIONS(3568), + [anon_sym_SEMI] = ACTIONS(3570), + [anon_sym___extension__] = ACTIONS(3568), + [anon_sym_typedef] = ACTIONS(3568), + [anon_sym_virtual] = ACTIONS(3568), + [anon_sym_extern] = ACTIONS(3568), + [anon_sym___attribute__] = ACTIONS(3568), + [anon_sym___attribute] = ACTIONS(3568), + [anon_sym_using] = ACTIONS(3568), + [anon_sym_COLON_COLON] = ACTIONS(3570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3570), + [anon_sym___declspec] = ACTIONS(3568), + [anon_sym___based] = ACTIONS(3568), + [anon_sym___cdecl] = ACTIONS(3568), + [anon_sym___clrcall] = ACTIONS(3568), + [anon_sym___stdcall] = ACTIONS(3568), + [anon_sym___fastcall] = ACTIONS(3568), + [anon_sym___thiscall] = ACTIONS(3568), + [anon_sym___vectorcall] = ACTIONS(3568), + [anon_sym_LBRACE] = ACTIONS(3570), + [anon_sym_signed] = ACTIONS(3568), + [anon_sym_unsigned] = ACTIONS(3568), + [anon_sym_long] = ACTIONS(3568), + [anon_sym_short] = ACTIONS(3568), + [anon_sym_LBRACK] = ACTIONS(3568), + [anon_sym_static] = ACTIONS(3568), + [anon_sym_register] = ACTIONS(3568), + [anon_sym_inline] = ACTIONS(3568), + [anon_sym___inline] = ACTIONS(3568), + [anon_sym___inline__] = ACTIONS(3568), + [anon_sym___forceinline] = ACTIONS(3568), + [anon_sym_thread_local] = ACTIONS(3568), + [anon_sym___thread] = ACTIONS(3568), + [anon_sym_const] = ACTIONS(3568), + [anon_sym_constexpr] = ACTIONS(3568), + [anon_sym_volatile] = ACTIONS(3568), + [anon_sym_restrict] = ACTIONS(3568), + [anon_sym___restrict__] = ACTIONS(3568), + [anon_sym__Atomic] = ACTIONS(3568), + [anon_sym__Noreturn] = ACTIONS(3568), + [anon_sym_noreturn] = ACTIONS(3568), + [anon_sym__Nonnull] = ACTIONS(3568), + [anon_sym_mutable] = ACTIONS(3568), + [anon_sym_constinit] = ACTIONS(3568), + [anon_sym_consteval] = ACTIONS(3568), + [anon_sym_alignas] = ACTIONS(3568), + [anon_sym__Alignas] = ACTIONS(3568), + [sym_primitive_type] = ACTIONS(3568), + [anon_sym_enum] = ACTIONS(3568), + [anon_sym_class] = ACTIONS(3568), + [anon_sym_struct] = ACTIONS(3568), + [anon_sym_union] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_else] = ACTIONS(3568), + [anon_sym_switch] = ACTIONS(3568), + [anon_sym_case] = ACTIONS(3568), + [anon_sym_default] = ACTIONS(3568), + [anon_sym_while] = ACTIONS(3568), + [anon_sym_do] = ACTIONS(3568), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_break] = ACTIONS(3568), + [anon_sym_continue] = ACTIONS(3568), + [anon_sym_goto] = ACTIONS(3568), + [anon_sym___try] = ACTIONS(3568), + [anon_sym___leave] = ACTIONS(3568), + [anon_sym_not] = ACTIONS(3568), + [anon_sym_compl] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3570), + [anon_sym_PLUS_PLUS] = ACTIONS(3570), + [anon_sym_sizeof] = ACTIONS(3568), + [anon_sym___alignof__] = ACTIONS(3568), + [anon_sym___alignof] = ACTIONS(3568), + [anon_sym__alignof] = ACTIONS(3568), + [anon_sym_alignof] = ACTIONS(3568), + [anon_sym__Alignof] = ACTIONS(3568), + [anon_sym_offsetof] = ACTIONS(3568), + [anon_sym__Generic] = ACTIONS(3568), + [anon_sym_typename] = ACTIONS(3568), + [anon_sym_asm] = ACTIONS(3568), + [anon_sym___asm__] = ACTIONS(3568), + [anon_sym___asm] = ACTIONS(3568), + [sym_number_literal] = ACTIONS(3570), + [anon_sym_L_SQUOTE] = ACTIONS(3570), + [anon_sym_u_SQUOTE] = ACTIONS(3570), + [anon_sym_U_SQUOTE] = ACTIONS(3570), + [anon_sym_u8_SQUOTE] = ACTIONS(3570), + [anon_sym_SQUOTE] = ACTIONS(3570), + [anon_sym_L_DQUOTE] = ACTIONS(3570), + [anon_sym_u_DQUOTE] = ACTIONS(3570), + [anon_sym_U_DQUOTE] = ACTIONS(3570), + [anon_sym_u8_DQUOTE] = ACTIONS(3570), + [anon_sym_DQUOTE] = ACTIONS(3570), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [anon_sym_NULL] = ACTIONS(3568), + [anon_sym_nullptr] = ACTIONS(3568), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3568), + [anon_sym_decltype] = ACTIONS(3568), + [anon_sym_explicit] = ACTIONS(3568), + [anon_sym_export] = ACTIONS(3568), + [anon_sym_module] = ACTIONS(3568), + [anon_sym_import] = ACTIONS(3568), + [anon_sym_template] = ACTIONS(3568), + [anon_sym_operator] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3568), + [anon_sym_delete] = ACTIONS(3568), + [anon_sym_throw] = ACTIONS(3568), + [anon_sym_namespace] = ACTIONS(3568), + [anon_sym_static_assert] = ACTIONS(3568), + [anon_sym_concept] = ACTIONS(3568), + [anon_sym_co_return] = ACTIONS(3568), + [anon_sym_co_yield] = ACTIONS(3568), + [anon_sym_R_DQUOTE] = ACTIONS(3570), + [anon_sym_LR_DQUOTE] = ACTIONS(3570), + [anon_sym_uR_DQUOTE] = ACTIONS(3570), + [anon_sym_UR_DQUOTE] = ACTIONS(3570), + [anon_sym_u8R_DQUOTE] = ACTIONS(3570), + [anon_sym_co_await] = ACTIONS(3568), + [anon_sym_new] = ACTIONS(3568), + [anon_sym_requires] = ACTIONS(3568), + [anon_sym_CARET_CARET] = ACTIONS(3570), + [anon_sym_LBRACK_COLON] = ACTIONS(3570), + [sym_this] = ACTIONS(3568), }, - [STATE(645)] = { - [ts_builtin_sym_end] = ACTIONS(4430), - [sym_identifier] = ACTIONS(4433), - [aux_sym_preproc_include_token1] = ACTIONS(4433), - [aux_sym_preproc_def_token1] = ACTIONS(4433), - [aux_sym_preproc_if_token1] = ACTIONS(4433), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4433), - [sym_preproc_directive] = ACTIONS(4433), - [anon_sym_LPAREN2] = ACTIONS(4430), - [anon_sym_BANG] = ACTIONS(4430), - [anon_sym_TILDE] = ACTIONS(4430), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4430), - [anon_sym_AMP_AMP] = ACTIONS(4430), - [anon_sym_AMP] = ACTIONS(4433), - [anon_sym_SEMI] = ACTIONS(4430), - [anon_sym___extension__] = ACTIONS(4433), - [anon_sym_typedef] = ACTIONS(4433), - [anon_sym_virtual] = ACTIONS(4433), - [anon_sym_extern] = ACTIONS(4433), - [anon_sym___attribute__] = ACTIONS(4433), - [anon_sym___attribute] = ACTIONS(4433), - [anon_sym_using] = ACTIONS(4433), - [anon_sym_COLON_COLON] = ACTIONS(4430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4430), - [anon_sym___declspec] = ACTIONS(4433), - [anon_sym___based] = ACTIONS(4433), - [anon_sym___cdecl] = ACTIONS(4433), - [anon_sym___clrcall] = ACTIONS(4433), - [anon_sym___stdcall] = ACTIONS(4433), - [anon_sym___fastcall] = ACTIONS(4433), - [anon_sym___thiscall] = ACTIONS(4433), - [anon_sym___vectorcall] = ACTIONS(4433), - [anon_sym_LBRACE] = ACTIONS(4430), - [anon_sym_signed] = ACTIONS(4433), - [anon_sym_unsigned] = ACTIONS(4433), - [anon_sym_long] = ACTIONS(4433), - [anon_sym_short] = ACTIONS(4433), - [anon_sym_LBRACK] = ACTIONS(4433), - [anon_sym_static] = ACTIONS(4433), - [anon_sym_register] = ACTIONS(4433), - [anon_sym_inline] = ACTIONS(4433), - [anon_sym___inline] = ACTIONS(4433), - [anon_sym___inline__] = ACTIONS(4433), - [anon_sym___forceinline] = ACTIONS(4433), - [anon_sym_thread_local] = ACTIONS(4433), - [anon_sym___thread] = ACTIONS(4433), - [anon_sym_const] = ACTIONS(4433), - [anon_sym_constexpr] = ACTIONS(4433), - [anon_sym_volatile] = ACTIONS(4433), - [anon_sym_restrict] = ACTIONS(4433), - [anon_sym___restrict__] = ACTIONS(4433), - [anon_sym__Atomic] = ACTIONS(4433), - [anon_sym__Noreturn] = ACTIONS(4433), - [anon_sym_noreturn] = ACTIONS(4433), - [anon_sym__Nonnull] = ACTIONS(4433), - [anon_sym_mutable] = ACTIONS(4433), - [anon_sym_constinit] = ACTIONS(4433), - [anon_sym_consteval] = ACTIONS(4433), - [anon_sym_alignas] = ACTIONS(4433), - [anon_sym__Alignas] = ACTIONS(4433), - [sym_primitive_type] = ACTIONS(4433), - [anon_sym_enum] = ACTIONS(4433), - [anon_sym_class] = ACTIONS(4433), - [anon_sym_struct] = ACTIONS(4433), - [anon_sym_union] = ACTIONS(4433), - [anon_sym_if] = ACTIONS(4433), - [anon_sym_switch] = ACTIONS(4433), - [anon_sym_case] = ACTIONS(4433), - [anon_sym_default] = ACTIONS(4433), - [anon_sym_while] = ACTIONS(4433), - [anon_sym_do] = ACTIONS(4433), - [anon_sym_for] = ACTIONS(4433), - [anon_sym_return] = ACTIONS(4433), - [anon_sym_break] = ACTIONS(4433), - [anon_sym_continue] = ACTIONS(4433), - [anon_sym_goto] = ACTIONS(4433), - [anon_sym_not] = ACTIONS(4433), - [anon_sym_compl] = ACTIONS(4433), - [anon_sym_DASH_DASH] = ACTIONS(4430), - [anon_sym_PLUS_PLUS] = ACTIONS(4430), - [anon_sym_sizeof] = ACTIONS(4433), - [anon_sym___alignof__] = ACTIONS(4433), - [anon_sym___alignof] = ACTIONS(4433), - [anon_sym__alignof] = ACTIONS(4433), - [anon_sym_alignof] = ACTIONS(4433), - [anon_sym__Alignof] = ACTIONS(4433), - [anon_sym_offsetof] = ACTIONS(4433), - [anon_sym__Generic] = ACTIONS(4433), - [anon_sym_typename] = ACTIONS(4433), - [anon_sym_asm] = ACTIONS(4433), - [anon_sym___asm__] = ACTIONS(4433), - [anon_sym___asm] = ACTIONS(4433), - [sym_number_literal] = ACTIONS(4430), - [anon_sym_L_SQUOTE] = ACTIONS(4430), - [anon_sym_u_SQUOTE] = ACTIONS(4430), - [anon_sym_U_SQUOTE] = ACTIONS(4430), - [anon_sym_u8_SQUOTE] = ACTIONS(4430), - [anon_sym_SQUOTE] = ACTIONS(4430), - [anon_sym_L_DQUOTE] = ACTIONS(4430), - [anon_sym_u_DQUOTE] = ACTIONS(4430), - [anon_sym_U_DQUOTE] = ACTIONS(4430), - [anon_sym_u8_DQUOTE] = ACTIONS(4430), - [anon_sym_DQUOTE] = ACTIONS(4430), - [sym_true] = ACTIONS(4433), - [sym_false] = ACTIONS(4433), - [anon_sym_NULL] = ACTIONS(4433), - [anon_sym_nullptr] = ACTIONS(4433), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4433), - [anon_sym_decltype] = ACTIONS(4433), - [anon_sym_explicit] = ACTIONS(4433), - [anon_sym_export] = ACTIONS(4433), - [anon_sym_module] = ACTIONS(4433), - [anon_sym_import] = ACTIONS(4433), - [anon_sym_template] = ACTIONS(4433), - [anon_sym_operator] = ACTIONS(4433), - [anon_sym_try] = ACTIONS(4433), - [anon_sym_delete] = ACTIONS(4433), - [anon_sym_throw] = ACTIONS(4433), - [anon_sym_namespace] = ACTIONS(4433), - [anon_sym_static_assert] = ACTIONS(4433), - [anon_sym_concept] = ACTIONS(4433), - [anon_sym_co_return] = ACTIONS(4433), - [anon_sym_co_yield] = ACTIONS(4433), - [anon_sym_R_DQUOTE] = ACTIONS(4430), - [anon_sym_LR_DQUOTE] = ACTIONS(4430), - [anon_sym_uR_DQUOTE] = ACTIONS(4430), - [anon_sym_UR_DQUOTE] = ACTIONS(4430), - [anon_sym_u8R_DQUOTE] = ACTIONS(4430), - [anon_sym_co_await] = ACTIONS(4433), - [anon_sym_new] = ACTIONS(4433), - [anon_sym_requires] = ACTIONS(4433), - [anon_sym_CARET_CARET] = ACTIONS(4430), - [anon_sym_LBRACK_COLON] = ACTIONS(4430), - [sym_this] = ACTIONS(4433), + [STATE(570)] = { + [sym_identifier] = ACTIONS(3572), + [aux_sym_preproc_include_token1] = ACTIONS(3572), + [aux_sym_preproc_def_token1] = ACTIONS(3572), + [aux_sym_preproc_if_token1] = ACTIONS(3572), + [aux_sym_preproc_if_token2] = ACTIONS(3572), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3572), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3572), + [sym_preproc_directive] = ACTIONS(3572), + [anon_sym_LPAREN2] = ACTIONS(3574), + [anon_sym_BANG] = ACTIONS(3574), + [anon_sym_TILDE] = ACTIONS(3574), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_STAR] = ACTIONS(3574), + [anon_sym_AMP_AMP] = ACTIONS(3574), + [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3574), + [anon_sym___extension__] = ACTIONS(3572), + [anon_sym_typedef] = ACTIONS(3572), + [anon_sym_virtual] = ACTIONS(3572), + [anon_sym_extern] = ACTIONS(3572), + [anon_sym___attribute__] = ACTIONS(3572), + [anon_sym___attribute] = ACTIONS(3572), + [anon_sym_using] = ACTIONS(3572), + [anon_sym_COLON_COLON] = ACTIONS(3574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3574), + [anon_sym___declspec] = ACTIONS(3572), + [anon_sym___based] = ACTIONS(3572), + [anon_sym___cdecl] = ACTIONS(3572), + [anon_sym___clrcall] = ACTIONS(3572), + [anon_sym___stdcall] = ACTIONS(3572), + [anon_sym___fastcall] = ACTIONS(3572), + [anon_sym___thiscall] = ACTIONS(3572), + [anon_sym___vectorcall] = ACTIONS(3572), + [anon_sym_LBRACE] = ACTIONS(3574), + [anon_sym_signed] = ACTIONS(3572), + [anon_sym_unsigned] = ACTIONS(3572), + [anon_sym_long] = ACTIONS(3572), + [anon_sym_short] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_static] = ACTIONS(3572), + [anon_sym_register] = ACTIONS(3572), + [anon_sym_inline] = ACTIONS(3572), + [anon_sym___inline] = ACTIONS(3572), + [anon_sym___inline__] = ACTIONS(3572), + [anon_sym___forceinline] = ACTIONS(3572), + [anon_sym_thread_local] = ACTIONS(3572), + [anon_sym___thread] = ACTIONS(3572), + [anon_sym_const] = ACTIONS(3572), + [anon_sym_constexpr] = ACTIONS(3572), + [anon_sym_volatile] = ACTIONS(3572), + [anon_sym_restrict] = ACTIONS(3572), + [anon_sym___restrict__] = ACTIONS(3572), + [anon_sym__Atomic] = ACTIONS(3572), + [anon_sym__Noreturn] = ACTIONS(3572), + [anon_sym_noreturn] = ACTIONS(3572), + [anon_sym__Nonnull] = ACTIONS(3572), + [anon_sym_mutable] = ACTIONS(3572), + [anon_sym_constinit] = ACTIONS(3572), + [anon_sym_consteval] = ACTIONS(3572), + [anon_sym_alignas] = ACTIONS(3572), + [anon_sym__Alignas] = ACTIONS(3572), + [sym_primitive_type] = ACTIONS(3572), + [anon_sym_enum] = ACTIONS(3572), + [anon_sym_class] = ACTIONS(3572), + [anon_sym_struct] = ACTIONS(3572), + [anon_sym_union] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_else] = ACTIONS(3572), + [anon_sym_switch] = ACTIONS(3572), + [anon_sym_case] = ACTIONS(3572), + [anon_sym_default] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_break] = ACTIONS(3572), + [anon_sym_continue] = ACTIONS(3572), + [anon_sym_goto] = ACTIONS(3572), + [anon_sym___try] = ACTIONS(3572), + [anon_sym___leave] = ACTIONS(3572), + [anon_sym_not] = ACTIONS(3572), + [anon_sym_compl] = ACTIONS(3572), + [anon_sym_DASH_DASH] = ACTIONS(3574), + [anon_sym_PLUS_PLUS] = ACTIONS(3574), + [anon_sym_sizeof] = ACTIONS(3572), + [anon_sym___alignof__] = ACTIONS(3572), + [anon_sym___alignof] = ACTIONS(3572), + [anon_sym__alignof] = ACTIONS(3572), + [anon_sym_alignof] = ACTIONS(3572), + [anon_sym__Alignof] = ACTIONS(3572), + [anon_sym_offsetof] = ACTIONS(3572), + [anon_sym__Generic] = ACTIONS(3572), + [anon_sym_typename] = ACTIONS(3572), + [anon_sym_asm] = ACTIONS(3572), + [anon_sym___asm__] = ACTIONS(3572), + [anon_sym___asm] = ACTIONS(3572), + [sym_number_literal] = ACTIONS(3574), + [anon_sym_L_SQUOTE] = ACTIONS(3574), + [anon_sym_u_SQUOTE] = ACTIONS(3574), + [anon_sym_U_SQUOTE] = ACTIONS(3574), + [anon_sym_u8_SQUOTE] = ACTIONS(3574), + [anon_sym_SQUOTE] = ACTIONS(3574), + [anon_sym_L_DQUOTE] = ACTIONS(3574), + [anon_sym_u_DQUOTE] = ACTIONS(3574), + [anon_sym_U_DQUOTE] = ACTIONS(3574), + [anon_sym_u8_DQUOTE] = ACTIONS(3574), + [anon_sym_DQUOTE] = ACTIONS(3574), + [sym_true] = ACTIONS(3572), + [sym_false] = ACTIONS(3572), + [anon_sym_NULL] = ACTIONS(3572), + [anon_sym_nullptr] = ACTIONS(3572), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3572), + [anon_sym_decltype] = ACTIONS(3572), + [anon_sym_explicit] = ACTIONS(3572), + [anon_sym_export] = ACTIONS(3572), + [anon_sym_module] = ACTIONS(3572), + [anon_sym_import] = ACTIONS(3572), + [anon_sym_template] = ACTIONS(3572), + [anon_sym_operator] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_delete] = ACTIONS(3572), + [anon_sym_throw] = ACTIONS(3572), + [anon_sym_namespace] = ACTIONS(3572), + [anon_sym_static_assert] = ACTIONS(3572), + [anon_sym_concept] = ACTIONS(3572), + [anon_sym_co_return] = ACTIONS(3572), + [anon_sym_co_yield] = ACTIONS(3572), + [anon_sym_R_DQUOTE] = ACTIONS(3574), + [anon_sym_LR_DQUOTE] = ACTIONS(3574), + [anon_sym_uR_DQUOTE] = ACTIONS(3574), + [anon_sym_UR_DQUOTE] = ACTIONS(3574), + [anon_sym_u8R_DQUOTE] = ACTIONS(3574), + [anon_sym_co_await] = ACTIONS(3572), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_requires] = ACTIONS(3572), + [anon_sym_CARET_CARET] = ACTIONS(3574), + [anon_sym_LBRACK_COLON] = ACTIONS(3574), + [sym_this] = ACTIONS(3572), }, - [STATE(646)] = { - [ts_builtin_sym_end] = ACTIONS(4000), - [sym_identifier] = ACTIONS(3998), - [aux_sym_preproc_include_token1] = ACTIONS(3998), - [aux_sym_preproc_def_token1] = ACTIONS(3998), - [aux_sym_preproc_if_token1] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), - [sym_preproc_directive] = ACTIONS(3998), - [anon_sym_LPAREN2] = ACTIONS(4000), - [anon_sym_BANG] = ACTIONS(4000), - [anon_sym_TILDE] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(3998), - [anon_sym_PLUS] = ACTIONS(3998), - [anon_sym_STAR] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym___extension__] = ACTIONS(3998), - [anon_sym_typedef] = ACTIONS(3998), - [anon_sym_virtual] = ACTIONS(3998), - [anon_sym_extern] = ACTIONS(3998), - [anon_sym___attribute__] = ACTIONS(3998), - [anon_sym___attribute] = ACTIONS(3998), - [anon_sym_using] = ACTIONS(3998), - [anon_sym_COLON_COLON] = ACTIONS(4000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), - [anon_sym___declspec] = ACTIONS(3998), - [anon_sym___based] = ACTIONS(3998), - [anon_sym___cdecl] = ACTIONS(3998), - [anon_sym___clrcall] = ACTIONS(3998), - [anon_sym___stdcall] = ACTIONS(3998), - [anon_sym___fastcall] = ACTIONS(3998), - [anon_sym___thiscall] = ACTIONS(3998), - [anon_sym___vectorcall] = ACTIONS(3998), - [anon_sym_LBRACE] = ACTIONS(4000), - [anon_sym_signed] = ACTIONS(3998), - [anon_sym_unsigned] = ACTIONS(3998), - [anon_sym_long] = ACTIONS(3998), - [anon_sym_short] = ACTIONS(3998), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_static] = ACTIONS(3998), - [anon_sym_register] = ACTIONS(3998), - [anon_sym_inline] = ACTIONS(3998), - [anon_sym___inline] = ACTIONS(3998), - [anon_sym___inline__] = ACTIONS(3998), - [anon_sym___forceinline] = ACTIONS(3998), - [anon_sym_thread_local] = ACTIONS(3998), - [anon_sym___thread] = ACTIONS(3998), - [anon_sym_const] = ACTIONS(3998), - [anon_sym_constexpr] = ACTIONS(3998), - [anon_sym_volatile] = ACTIONS(3998), - [anon_sym_restrict] = ACTIONS(3998), - [anon_sym___restrict__] = ACTIONS(3998), - [anon_sym__Atomic] = ACTIONS(3998), - [anon_sym__Noreturn] = ACTIONS(3998), - [anon_sym_noreturn] = ACTIONS(3998), - [anon_sym__Nonnull] = ACTIONS(3998), - [anon_sym_mutable] = ACTIONS(3998), - [anon_sym_constinit] = ACTIONS(3998), - [anon_sym_consteval] = ACTIONS(3998), - [anon_sym_alignas] = ACTIONS(3998), - [anon_sym__Alignas] = ACTIONS(3998), - [sym_primitive_type] = ACTIONS(3998), - [anon_sym_enum] = ACTIONS(3998), - [anon_sym_class] = ACTIONS(3998), - [anon_sym_struct] = ACTIONS(3998), - [anon_sym_union] = ACTIONS(3998), - [anon_sym_if] = ACTIONS(3998), - [anon_sym_switch] = ACTIONS(3998), - [anon_sym_case] = ACTIONS(3998), - [anon_sym_default] = ACTIONS(3998), - [anon_sym_while] = ACTIONS(3998), - [anon_sym_do] = ACTIONS(3998), - [anon_sym_for] = ACTIONS(3998), - [anon_sym_return] = ACTIONS(3998), - [anon_sym_break] = ACTIONS(3998), - [anon_sym_continue] = ACTIONS(3998), - [anon_sym_goto] = ACTIONS(3998), - [anon_sym_not] = ACTIONS(3998), - [anon_sym_compl] = ACTIONS(3998), - [anon_sym_DASH_DASH] = ACTIONS(4000), - [anon_sym_PLUS_PLUS] = ACTIONS(4000), - [anon_sym_sizeof] = ACTIONS(3998), - [anon_sym___alignof__] = ACTIONS(3998), - [anon_sym___alignof] = ACTIONS(3998), - [anon_sym__alignof] = ACTIONS(3998), - [anon_sym_alignof] = ACTIONS(3998), - [anon_sym__Alignof] = ACTIONS(3998), - [anon_sym_offsetof] = ACTIONS(3998), - [anon_sym__Generic] = ACTIONS(3998), - [anon_sym_typename] = ACTIONS(3998), - [anon_sym_asm] = ACTIONS(3998), - [anon_sym___asm__] = ACTIONS(3998), - [anon_sym___asm] = ACTIONS(3998), - [sym_number_literal] = ACTIONS(4000), - [anon_sym_L_SQUOTE] = ACTIONS(4000), - [anon_sym_u_SQUOTE] = ACTIONS(4000), - [anon_sym_U_SQUOTE] = ACTIONS(4000), - [anon_sym_u8_SQUOTE] = ACTIONS(4000), - [anon_sym_SQUOTE] = 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_true] = ACTIONS(3998), - [sym_false] = ACTIONS(3998), - [anon_sym_NULL] = ACTIONS(3998), - [anon_sym_nullptr] = ACTIONS(3998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3998), - [anon_sym_decltype] = ACTIONS(3998), - [anon_sym_explicit] = ACTIONS(3998), - [anon_sym_export] = ACTIONS(3998), - [anon_sym_module] = ACTIONS(3998), - [anon_sym_import] = ACTIONS(3998), - [anon_sym_template] = ACTIONS(3998), - [anon_sym_operator] = ACTIONS(3998), - [anon_sym_try] = ACTIONS(3998), - [anon_sym_delete] = ACTIONS(3998), - [anon_sym_throw] = ACTIONS(3998), - [anon_sym_namespace] = ACTIONS(3998), - [anon_sym_static_assert] = ACTIONS(3998), - [anon_sym_concept] = ACTIONS(3998), - [anon_sym_co_return] = ACTIONS(3998), - [anon_sym_co_yield] = ACTIONS(3998), - [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), - [anon_sym_co_await] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_requires] = ACTIONS(3998), - [anon_sym_CARET_CARET] = ACTIONS(4000), - [anon_sym_LBRACK_COLON] = ACTIONS(4000), - [sym_this] = ACTIONS(3998), + [STATE(571)] = { + [ts_builtin_sym_end] = ACTIONS(3594), + [sym_identifier] = ACTIONS(3592), + [aux_sym_preproc_include_token1] = ACTIONS(3592), + [aux_sym_preproc_def_token1] = ACTIONS(3592), + [aux_sym_preproc_if_token1] = ACTIONS(3592), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3592), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3592), + [sym_preproc_directive] = ACTIONS(3592), + [anon_sym_LPAREN2] = ACTIONS(3594), + [anon_sym_BANG] = ACTIONS(3594), + [anon_sym_TILDE] = ACTIONS(3594), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3594), + [anon_sym_AMP_AMP] = ACTIONS(3594), + [anon_sym_AMP] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym___extension__] = ACTIONS(3592), + [anon_sym_typedef] = ACTIONS(3592), + [anon_sym_virtual] = ACTIONS(3592), + [anon_sym_extern] = ACTIONS(3592), + [anon_sym___attribute__] = ACTIONS(3592), + [anon_sym___attribute] = ACTIONS(3592), + [anon_sym_using] = ACTIONS(3592), + [anon_sym_COLON_COLON] = ACTIONS(3594), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3594), + [anon_sym___declspec] = ACTIONS(3592), + [anon_sym___based] = ACTIONS(3592), + [anon_sym___cdecl] = ACTIONS(3592), + [anon_sym___clrcall] = ACTIONS(3592), + [anon_sym___stdcall] = ACTIONS(3592), + [anon_sym___fastcall] = ACTIONS(3592), + [anon_sym___thiscall] = ACTIONS(3592), + [anon_sym___vectorcall] = ACTIONS(3592), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_signed] = ACTIONS(3592), + [anon_sym_unsigned] = ACTIONS(3592), + [anon_sym_long] = ACTIONS(3592), + [anon_sym_short] = ACTIONS(3592), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_static] = ACTIONS(3592), + [anon_sym_register] = ACTIONS(3592), + [anon_sym_inline] = ACTIONS(3592), + [anon_sym___inline] = ACTIONS(3592), + [anon_sym___inline__] = ACTIONS(3592), + [anon_sym___forceinline] = ACTIONS(3592), + [anon_sym_thread_local] = ACTIONS(3592), + [anon_sym___thread] = ACTIONS(3592), + [anon_sym_const] = ACTIONS(3592), + [anon_sym_constexpr] = ACTIONS(3592), + [anon_sym_volatile] = ACTIONS(3592), + [anon_sym_restrict] = ACTIONS(3592), + [anon_sym___restrict__] = ACTIONS(3592), + [anon_sym__Atomic] = ACTIONS(3592), + [anon_sym__Noreturn] = ACTIONS(3592), + [anon_sym_noreturn] = ACTIONS(3592), + [anon_sym__Nonnull] = ACTIONS(3592), + [anon_sym_mutable] = ACTIONS(3592), + [anon_sym_constinit] = ACTIONS(3592), + [anon_sym_consteval] = ACTIONS(3592), + [anon_sym_alignas] = ACTIONS(3592), + [anon_sym__Alignas] = ACTIONS(3592), + [sym_primitive_type] = ACTIONS(3592), + [anon_sym_enum] = ACTIONS(3592), + [anon_sym_class] = ACTIONS(3592), + [anon_sym_struct] = ACTIONS(3592), + [anon_sym_union] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_else] = ACTIONS(3592), + [anon_sym_switch] = ACTIONS(3592), + [anon_sym_case] = ACTIONS(3592), + [anon_sym_default] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_break] = ACTIONS(3592), + [anon_sym_continue] = ACTIONS(3592), + [anon_sym_goto] = ACTIONS(3592), + [anon_sym___try] = ACTIONS(3592), + [anon_sym___leave] = ACTIONS(3592), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3594), + [anon_sym_PLUS_PLUS] = ACTIONS(3594), + [anon_sym_sizeof] = ACTIONS(3592), + [anon_sym___alignof__] = ACTIONS(3592), + [anon_sym___alignof] = ACTIONS(3592), + [anon_sym__alignof] = ACTIONS(3592), + [anon_sym_alignof] = ACTIONS(3592), + [anon_sym__Alignof] = ACTIONS(3592), + [anon_sym_offsetof] = ACTIONS(3592), + [anon_sym__Generic] = ACTIONS(3592), + [anon_sym_typename] = ACTIONS(3592), + [anon_sym_asm] = ACTIONS(3592), + [anon_sym___asm__] = ACTIONS(3592), + [anon_sym___asm] = ACTIONS(3592), + [sym_number_literal] = ACTIONS(3594), + [anon_sym_L_SQUOTE] = ACTIONS(3594), + [anon_sym_u_SQUOTE] = ACTIONS(3594), + [anon_sym_U_SQUOTE] = ACTIONS(3594), + [anon_sym_u8_SQUOTE] = ACTIONS(3594), + [anon_sym_SQUOTE] = ACTIONS(3594), + [anon_sym_L_DQUOTE] = ACTIONS(3594), + [anon_sym_u_DQUOTE] = ACTIONS(3594), + [anon_sym_U_DQUOTE] = ACTIONS(3594), + [anon_sym_u8_DQUOTE] = ACTIONS(3594), + [anon_sym_DQUOTE] = ACTIONS(3594), + [sym_true] = ACTIONS(3592), + [sym_false] = ACTIONS(3592), + [anon_sym_NULL] = ACTIONS(3592), + [anon_sym_nullptr] = ACTIONS(3592), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3592), + [anon_sym_decltype] = ACTIONS(3592), + [anon_sym_explicit] = ACTIONS(3592), + [anon_sym_export] = ACTIONS(3592), + [anon_sym_module] = ACTIONS(3592), + [anon_sym_import] = ACTIONS(3592), + [anon_sym_template] = ACTIONS(3592), + [anon_sym_operator] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_delete] = ACTIONS(3592), + [anon_sym_throw] = ACTIONS(3592), + [anon_sym_namespace] = ACTIONS(3592), + [anon_sym_static_assert] = ACTIONS(3592), + [anon_sym_concept] = ACTIONS(3592), + [anon_sym_co_return] = ACTIONS(3592), + [anon_sym_co_yield] = ACTIONS(3592), + [anon_sym_R_DQUOTE] = ACTIONS(3594), + [anon_sym_LR_DQUOTE] = ACTIONS(3594), + [anon_sym_uR_DQUOTE] = ACTIONS(3594), + [anon_sym_UR_DQUOTE] = ACTIONS(3594), + [anon_sym_u8R_DQUOTE] = ACTIONS(3594), + [anon_sym_co_await] = ACTIONS(3592), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_requires] = ACTIONS(3592), + [anon_sym_CARET_CARET] = ACTIONS(3594), + [anon_sym_LBRACK_COLON] = ACTIONS(3594), + [sym_this] = ACTIONS(3592), }, - [STATE(647)] = { - [ts_builtin_sym_end] = ACTIONS(4092), - [sym_identifier] = ACTIONS(4090), - [aux_sym_preproc_include_token1] = ACTIONS(4090), - [aux_sym_preproc_def_token1] = ACTIONS(4090), - [aux_sym_preproc_if_token1] = ACTIONS(4090), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4090), - [sym_preproc_directive] = ACTIONS(4090), - [anon_sym_LPAREN2] = ACTIONS(4092), - [anon_sym_BANG] = ACTIONS(4092), - [anon_sym_TILDE] = ACTIONS(4092), - [anon_sym_DASH] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4090), - [anon_sym_STAR] = ACTIONS(4092), - [anon_sym_AMP_AMP] = ACTIONS(4092), - [anon_sym_AMP] = ACTIONS(4090), - [anon_sym_SEMI] = ACTIONS(4092), - [anon_sym___extension__] = ACTIONS(4090), - [anon_sym_typedef] = ACTIONS(4090), - [anon_sym_virtual] = ACTIONS(4090), - [anon_sym_extern] = ACTIONS(4090), - [anon_sym___attribute__] = ACTIONS(4090), - [anon_sym___attribute] = ACTIONS(4090), - [anon_sym_using] = ACTIONS(4090), - [anon_sym_COLON_COLON] = ACTIONS(4092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4092), - [anon_sym___declspec] = ACTIONS(4090), - [anon_sym___based] = ACTIONS(4090), - [anon_sym___cdecl] = ACTIONS(4090), - [anon_sym___clrcall] = ACTIONS(4090), - [anon_sym___stdcall] = ACTIONS(4090), - [anon_sym___fastcall] = ACTIONS(4090), - [anon_sym___thiscall] = ACTIONS(4090), - [anon_sym___vectorcall] = ACTIONS(4090), - [anon_sym_LBRACE] = ACTIONS(4092), - [anon_sym_signed] = ACTIONS(4090), - [anon_sym_unsigned] = ACTIONS(4090), - [anon_sym_long] = ACTIONS(4090), - [anon_sym_short] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_static] = ACTIONS(4090), - [anon_sym_register] = ACTIONS(4090), - [anon_sym_inline] = ACTIONS(4090), - [anon_sym___inline] = ACTIONS(4090), - [anon_sym___inline__] = ACTIONS(4090), - [anon_sym___forceinline] = ACTIONS(4090), - [anon_sym_thread_local] = ACTIONS(4090), - [anon_sym___thread] = ACTIONS(4090), - [anon_sym_const] = ACTIONS(4090), - [anon_sym_constexpr] = ACTIONS(4090), - [anon_sym_volatile] = ACTIONS(4090), - [anon_sym_restrict] = ACTIONS(4090), - [anon_sym___restrict__] = ACTIONS(4090), - [anon_sym__Atomic] = ACTIONS(4090), - [anon_sym__Noreturn] = ACTIONS(4090), - [anon_sym_noreturn] = ACTIONS(4090), - [anon_sym__Nonnull] = ACTIONS(4090), - [anon_sym_mutable] = ACTIONS(4090), - [anon_sym_constinit] = ACTIONS(4090), - [anon_sym_consteval] = ACTIONS(4090), - [anon_sym_alignas] = ACTIONS(4090), - [anon_sym__Alignas] = ACTIONS(4090), - [sym_primitive_type] = ACTIONS(4090), - [anon_sym_enum] = ACTIONS(4090), - [anon_sym_class] = ACTIONS(4090), - [anon_sym_struct] = ACTIONS(4090), - [anon_sym_union] = ACTIONS(4090), - [anon_sym_if] = ACTIONS(4090), - [anon_sym_switch] = ACTIONS(4090), - [anon_sym_case] = ACTIONS(4090), - [anon_sym_default] = ACTIONS(4090), - [anon_sym_while] = ACTIONS(4090), - [anon_sym_do] = ACTIONS(4090), - [anon_sym_for] = ACTIONS(4090), - [anon_sym_return] = ACTIONS(4090), - [anon_sym_break] = ACTIONS(4090), - [anon_sym_continue] = ACTIONS(4090), - [anon_sym_goto] = ACTIONS(4090), - [anon_sym_not] = ACTIONS(4090), - [anon_sym_compl] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4092), - [anon_sym_PLUS_PLUS] = ACTIONS(4092), - [anon_sym_sizeof] = ACTIONS(4090), - [anon_sym___alignof__] = ACTIONS(4090), - [anon_sym___alignof] = ACTIONS(4090), - [anon_sym__alignof] = ACTIONS(4090), - [anon_sym_alignof] = ACTIONS(4090), - [anon_sym__Alignof] = ACTIONS(4090), - [anon_sym_offsetof] = ACTIONS(4090), - [anon_sym__Generic] = ACTIONS(4090), - [anon_sym_typename] = ACTIONS(4090), - [anon_sym_asm] = ACTIONS(4090), - [anon_sym___asm__] = ACTIONS(4090), - [anon_sym___asm] = ACTIONS(4090), - [sym_number_literal] = ACTIONS(4092), - [anon_sym_L_SQUOTE] = ACTIONS(4092), - [anon_sym_u_SQUOTE] = ACTIONS(4092), - [anon_sym_U_SQUOTE] = ACTIONS(4092), - [anon_sym_u8_SQUOTE] = ACTIONS(4092), - [anon_sym_SQUOTE] = ACTIONS(4092), - [anon_sym_L_DQUOTE] = ACTIONS(4092), - [anon_sym_u_DQUOTE] = ACTIONS(4092), - [anon_sym_U_DQUOTE] = ACTIONS(4092), - [anon_sym_u8_DQUOTE] = ACTIONS(4092), - [anon_sym_DQUOTE] = ACTIONS(4092), - [sym_true] = ACTIONS(4090), - [sym_false] = ACTIONS(4090), - [anon_sym_NULL] = ACTIONS(4090), - [anon_sym_nullptr] = ACTIONS(4090), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4090), - [anon_sym_decltype] = ACTIONS(4090), - [anon_sym_explicit] = ACTIONS(4090), - [anon_sym_export] = ACTIONS(4090), - [anon_sym_module] = ACTIONS(4090), - [anon_sym_import] = ACTIONS(4090), - [anon_sym_template] = ACTIONS(4090), - [anon_sym_operator] = ACTIONS(4090), - [anon_sym_try] = ACTIONS(4090), - [anon_sym_delete] = ACTIONS(4090), - [anon_sym_throw] = ACTIONS(4090), - [anon_sym_namespace] = ACTIONS(4090), - [anon_sym_static_assert] = ACTIONS(4090), - [anon_sym_concept] = ACTIONS(4090), - [anon_sym_co_return] = ACTIONS(4090), - [anon_sym_co_yield] = ACTIONS(4090), - [anon_sym_R_DQUOTE] = ACTIONS(4092), - [anon_sym_LR_DQUOTE] = ACTIONS(4092), - [anon_sym_uR_DQUOTE] = ACTIONS(4092), - [anon_sym_UR_DQUOTE] = ACTIONS(4092), - [anon_sym_u8R_DQUOTE] = ACTIONS(4092), - [anon_sym_co_await] = ACTIONS(4090), - [anon_sym_new] = ACTIONS(4090), - [anon_sym_requires] = ACTIONS(4090), - [anon_sym_CARET_CARET] = ACTIONS(4092), - [anon_sym_LBRACK_COLON] = ACTIONS(4092), - [sym_this] = ACTIONS(4090), + [STATE(572)] = { + [sym_identifier] = ACTIONS(3163), + [aux_sym_preproc_include_token1] = ACTIONS(3163), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [aux_sym_preproc_if_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), + [sym_preproc_directive] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_extern] = ACTIONS(3163), + [anon_sym___attribute__] = ACTIONS(3163), + [anon_sym___attribute] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3163), + [anon_sym___based] = ACTIONS(3163), + [anon_sym___cdecl] = ACTIONS(3163), + [anon_sym___clrcall] = ACTIONS(3163), + [anon_sym___stdcall] = ACTIONS(3163), + [anon_sym___fastcall] = ACTIONS(3163), + [anon_sym___thiscall] = ACTIONS(3163), + [anon_sym___vectorcall] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_RBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym___inline] = ACTIONS(3163), + [anon_sym___inline__] = ACTIONS(3163), + [anon_sym___forceinline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym___thread] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym___restrict__] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym__Noreturn] = ACTIONS(3163), + [anon_sym_noreturn] = ACTIONS(3163), + [anon_sym__Nonnull] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym__Alignas] = ACTIONS(3163), + [sym_primitive_type] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_else] = ACTIONS(3163), + [anon_sym_switch] = ACTIONS(3163), + [anon_sym_case] = ACTIONS(3163), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_goto] = ACTIONS(3163), + [anon_sym___try] = ACTIONS(3163), + [anon_sym___leave] = ACTIONS(3163), + [anon_sym_not] = ACTIONS(3163), + [anon_sym_compl] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3163), + [anon_sym___alignof__] = ACTIONS(3163), + [anon_sym___alignof] = ACTIONS(3163), + [anon_sym__alignof] = ACTIONS(3163), + [anon_sym_alignof] = ACTIONS(3163), + [anon_sym__Alignof] = ACTIONS(3163), + [anon_sym_offsetof] = ACTIONS(3163), + [anon_sym__Generic] = ACTIONS(3163), + [anon_sym_typename] = ACTIONS(3163), + [anon_sym_asm] = ACTIONS(3163), + [anon_sym___asm__] = ACTIONS(3163), + [anon_sym___asm] = ACTIONS(3163), + [sym_number_literal] = ACTIONS(3161), + [anon_sym_L_SQUOTE] = ACTIONS(3161), + [anon_sym_u_SQUOTE] = ACTIONS(3161), + [anon_sym_U_SQUOTE] = ACTIONS(3161), + [anon_sym_u8_SQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_L_DQUOTE] = ACTIONS(3161), + [anon_sym_u_DQUOTE] = ACTIONS(3161), + [anon_sym_U_DQUOTE] = ACTIONS(3161), + [anon_sym_u8_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [anon_sym_NULL] = ACTIONS(3163), + [anon_sym_nullptr] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_export] = ACTIONS(3163), + [anon_sym_import] = ACTIONS(3163), + [anon_sym_template] = ACTIONS(3163), + [anon_sym_operator] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_delete] = ACTIONS(3163), + [anon_sym_throw] = ACTIONS(3163), + [anon_sym_namespace] = ACTIONS(3163), + [anon_sym_static_assert] = ACTIONS(3163), + [anon_sym_concept] = ACTIONS(3163), + [anon_sym_co_return] = ACTIONS(3163), + [anon_sym_co_yield] = ACTIONS(3163), + [anon_sym_catch] = ACTIONS(3163), + [anon_sym_R_DQUOTE] = ACTIONS(3161), + [anon_sym_LR_DQUOTE] = ACTIONS(3161), + [anon_sym_uR_DQUOTE] = ACTIONS(3161), + [anon_sym_UR_DQUOTE] = ACTIONS(3161), + [anon_sym_u8R_DQUOTE] = ACTIONS(3161), + [anon_sym_co_await] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_requires] = ACTIONS(3163), + [anon_sym_CARET_CARET] = ACTIONS(3161), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), + [sym_this] = ACTIONS(3163), }, - [STATE(648)] = { - [ts_builtin_sym_end] = ACTIONS(4436), - [sym_identifier] = ACTIONS(4438), - [aux_sym_preproc_include_token1] = ACTIONS(4438), - [aux_sym_preproc_def_token1] = ACTIONS(4438), - [aux_sym_preproc_if_token1] = ACTIONS(4438), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4438), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4438), - [sym_preproc_directive] = ACTIONS(4438), - [anon_sym_LPAREN2] = ACTIONS(4436), - [anon_sym_BANG] = ACTIONS(4436), - [anon_sym_TILDE] = ACTIONS(4436), - [anon_sym_DASH] = ACTIONS(4438), - [anon_sym_PLUS] = ACTIONS(4438), - [anon_sym_STAR] = ACTIONS(4436), - [anon_sym_AMP_AMP] = ACTIONS(4436), - [anon_sym_AMP] = ACTIONS(4438), - [anon_sym_SEMI] = ACTIONS(4436), - [anon_sym___extension__] = ACTIONS(4438), - [anon_sym_typedef] = ACTIONS(4438), - [anon_sym_virtual] = ACTIONS(4438), - [anon_sym_extern] = ACTIONS(4438), - [anon_sym___attribute__] = ACTIONS(4438), - [anon_sym___attribute] = ACTIONS(4438), - [anon_sym_using] = ACTIONS(4438), - [anon_sym_COLON_COLON] = ACTIONS(4436), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4436), - [anon_sym___declspec] = ACTIONS(4438), - [anon_sym___based] = ACTIONS(4438), - [anon_sym___cdecl] = ACTIONS(4438), - [anon_sym___clrcall] = ACTIONS(4438), - [anon_sym___stdcall] = ACTIONS(4438), - [anon_sym___fastcall] = ACTIONS(4438), - [anon_sym___thiscall] = ACTIONS(4438), - [anon_sym___vectorcall] = ACTIONS(4438), - [anon_sym_LBRACE] = ACTIONS(4436), - [anon_sym_signed] = ACTIONS(4438), - [anon_sym_unsigned] = ACTIONS(4438), - [anon_sym_long] = ACTIONS(4438), - [anon_sym_short] = ACTIONS(4438), - [anon_sym_LBRACK] = ACTIONS(4438), - [anon_sym_static] = ACTIONS(4438), - [anon_sym_register] = ACTIONS(4438), - [anon_sym_inline] = ACTIONS(4438), - [anon_sym___inline] = ACTIONS(4438), - [anon_sym___inline__] = ACTIONS(4438), - [anon_sym___forceinline] = ACTIONS(4438), - [anon_sym_thread_local] = ACTIONS(4438), - [anon_sym___thread] = ACTIONS(4438), - [anon_sym_const] = ACTIONS(4438), - [anon_sym_constexpr] = ACTIONS(4438), - [anon_sym_volatile] = ACTIONS(4438), - [anon_sym_restrict] = ACTIONS(4438), - [anon_sym___restrict__] = ACTIONS(4438), - [anon_sym__Atomic] = ACTIONS(4438), - [anon_sym__Noreturn] = ACTIONS(4438), - [anon_sym_noreturn] = ACTIONS(4438), - [anon_sym__Nonnull] = ACTIONS(4438), - [anon_sym_mutable] = ACTIONS(4438), - [anon_sym_constinit] = ACTIONS(4438), - [anon_sym_consteval] = ACTIONS(4438), - [anon_sym_alignas] = ACTIONS(4438), - [anon_sym__Alignas] = ACTIONS(4438), - [sym_primitive_type] = ACTIONS(4438), - [anon_sym_enum] = ACTIONS(4438), - [anon_sym_class] = ACTIONS(4438), - [anon_sym_struct] = ACTIONS(4438), - [anon_sym_union] = ACTIONS(4438), - [anon_sym_if] = ACTIONS(4438), - [anon_sym_switch] = ACTIONS(4438), - [anon_sym_case] = ACTIONS(4438), - [anon_sym_default] = ACTIONS(4438), - [anon_sym_while] = ACTIONS(4438), - [anon_sym_do] = ACTIONS(4438), - [anon_sym_for] = ACTIONS(4438), - [anon_sym_return] = ACTIONS(4438), - [anon_sym_break] = ACTIONS(4438), - [anon_sym_continue] = ACTIONS(4438), - [anon_sym_goto] = ACTIONS(4438), - [anon_sym_not] = ACTIONS(4438), - [anon_sym_compl] = ACTIONS(4438), - [anon_sym_DASH_DASH] = ACTIONS(4436), - [anon_sym_PLUS_PLUS] = ACTIONS(4436), - [anon_sym_sizeof] = ACTIONS(4438), - [anon_sym___alignof__] = ACTIONS(4438), - [anon_sym___alignof] = ACTIONS(4438), - [anon_sym__alignof] = ACTIONS(4438), - [anon_sym_alignof] = ACTIONS(4438), - [anon_sym__Alignof] = ACTIONS(4438), - [anon_sym_offsetof] = ACTIONS(4438), - [anon_sym__Generic] = ACTIONS(4438), - [anon_sym_typename] = ACTIONS(4438), - [anon_sym_asm] = ACTIONS(4438), - [anon_sym___asm__] = ACTIONS(4438), - [anon_sym___asm] = ACTIONS(4438), - [sym_number_literal] = ACTIONS(4436), - [anon_sym_L_SQUOTE] = ACTIONS(4436), - [anon_sym_u_SQUOTE] = ACTIONS(4436), - [anon_sym_U_SQUOTE] = ACTIONS(4436), - [anon_sym_u8_SQUOTE] = ACTIONS(4436), - [anon_sym_SQUOTE] = ACTIONS(4436), - [anon_sym_L_DQUOTE] = ACTIONS(4436), - [anon_sym_u_DQUOTE] = ACTIONS(4436), - [anon_sym_U_DQUOTE] = ACTIONS(4436), - [anon_sym_u8_DQUOTE] = ACTIONS(4436), - [anon_sym_DQUOTE] = ACTIONS(4436), - [sym_true] = ACTIONS(4438), - [sym_false] = ACTIONS(4438), - [anon_sym_NULL] = ACTIONS(4438), - [anon_sym_nullptr] = ACTIONS(4438), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4438), - [anon_sym_decltype] = ACTIONS(4438), - [anon_sym_explicit] = ACTIONS(4438), - [anon_sym_export] = ACTIONS(4438), - [anon_sym_module] = ACTIONS(4438), - [anon_sym_import] = ACTIONS(4438), - [anon_sym_template] = ACTIONS(4438), - [anon_sym_operator] = ACTIONS(4438), - [anon_sym_try] = ACTIONS(4438), - [anon_sym_delete] = ACTIONS(4438), - [anon_sym_throw] = ACTIONS(4438), - [anon_sym_namespace] = ACTIONS(4438), - [anon_sym_static_assert] = ACTIONS(4438), - [anon_sym_concept] = ACTIONS(4438), - [anon_sym_co_return] = ACTIONS(4438), - [anon_sym_co_yield] = ACTIONS(4438), - [anon_sym_R_DQUOTE] = ACTIONS(4436), - [anon_sym_LR_DQUOTE] = ACTIONS(4436), - [anon_sym_uR_DQUOTE] = ACTIONS(4436), - [anon_sym_UR_DQUOTE] = ACTIONS(4436), - [anon_sym_u8R_DQUOTE] = ACTIONS(4436), - [anon_sym_co_await] = ACTIONS(4438), - [anon_sym_new] = ACTIONS(4438), - [anon_sym_requires] = ACTIONS(4438), - [anon_sym_CARET_CARET] = ACTIONS(4436), - [anon_sym_LBRACK_COLON] = ACTIONS(4436), - [sym_this] = ACTIONS(4438), + [STATE(573)] = { + [sym_identifier] = ACTIONS(3604), + [aux_sym_preproc_include_token1] = ACTIONS(3604), + [aux_sym_preproc_def_token1] = ACTIONS(3604), + [aux_sym_preproc_if_token1] = ACTIONS(3604), + [aux_sym_preproc_if_token2] = ACTIONS(3604), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3604), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3604), + [sym_preproc_directive] = ACTIONS(3604), + [anon_sym_LPAREN2] = ACTIONS(3606), + [anon_sym_BANG] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3606), + [anon_sym_DASH] = ACTIONS(3604), + [anon_sym_PLUS] = ACTIONS(3604), + [anon_sym_STAR] = ACTIONS(3606), + [anon_sym_AMP_AMP] = ACTIONS(3606), + [anon_sym_AMP] = ACTIONS(3604), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym___extension__] = ACTIONS(3604), + [anon_sym_typedef] = ACTIONS(3604), + [anon_sym_virtual] = ACTIONS(3604), + [anon_sym_extern] = ACTIONS(3604), + [anon_sym___attribute__] = ACTIONS(3604), + [anon_sym___attribute] = ACTIONS(3604), + [anon_sym_using] = ACTIONS(3604), + [anon_sym_COLON_COLON] = ACTIONS(3606), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3606), + [anon_sym___declspec] = ACTIONS(3604), + [anon_sym___based] = ACTIONS(3604), + [anon_sym___cdecl] = ACTIONS(3604), + [anon_sym___clrcall] = ACTIONS(3604), + [anon_sym___stdcall] = ACTIONS(3604), + [anon_sym___fastcall] = ACTIONS(3604), + [anon_sym___thiscall] = ACTIONS(3604), + [anon_sym___vectorcall] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3606), + [anon_sym_signed] = ACTIONS(3604), + [anon_sym_unsigned] = ACTIONS(3604), + [anon_sym_long] = ACTIONS(3604), + [anon_sym_short] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3604), + [anon_sym_static] = ACTIONS(3604), + [anon_sym_register] = ACTIONS(3604), + [anon_sym_inline] = ACTIONS(3604), + [anon_sym___inline] = ACTIONS(3604), + [anon_sym___inline__] = ACTIONS(3604), + [anon_sym___forceinline] = ACTIONS(3604), + [anon_sym_thread_local] = ACTIONS(3604), + [anon_sym___thread] = ACTIONS(3604), + [anon_sym_const] = ACTIONS(3604), + [anon_sym_constexpr] = ACTIONS(3604), + [anon_sym_volatile] = ACTIONS(3604), + [anon_sym_restrict] = ACTIONS(3604), + [anon_sym___restrict__] = ACTIONS(3604), + [anon_sym__Atomic] = ACTIONS(3604), + [anon_sym__Noreturn] = ACTIONS(3604), + [anon_sym_noreturn] = ACTIONS(3604), + [anon_sym__Nonnull] = ACTIONS(3604), + [anon_sym_mutable] = ACTIONS(3604), + [anon_sym_constinit] = ACTIONS(3604), + [anon_sym_consteval] = ACTIONS(3604), + [anon_sym_alignas] = ACTIONS(3604), + [anon_sym__Alignas] = ACTIONS(3604), + [sym_primitive_type] = ACTIONS(3604), + [anon_sym_enum] = ACTIONS(3604), + [anon_sym_class] = ACTIONS(3604), + [anon_sym_struct] = ACTIONS(3604), + [anon_sym_union] = ACTIONS(3604), + [anon_sym_if] = ACTIONS(3604), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_switch] = ACTIONS(3604), + [anon_sym_case] = ACTIONS(3604), + [anon_sym_default] = ACTIONS(3604), + [anon_sym_while] = ACTIONS(3604), + [anon_sym_do] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3604), + [anon_sym_return] = ACTIONS(3604), + [anon_sym_break] = ACTIONS(3604), + [anon_sym_continue] = ACTIONS(3604), + [anon_sym_goto] = ACTIONS(3604), + [anon_sym___try] = ACTIONS(3604), + [anon_sym___leave] = ACTIONS(3604), + [anon_sym_not] = ACTIONS(3604), + [anon_sym_compl] = ACTIONS(3604), + [anon_sym_DASH_DASH] = ACTIONS(3606), + [anon_sym_PLUS_PLUS] = ACTIONS(3606), + [anon_sym_sizeof] = ACTIONS(3604), + [anon_sym___alignof__] = ACTIONS(3604), + [anon_sym___alignof] = ACTIONS(3604), + [anon_sym__alignof] = ACTIONS(3604), + [anon_sym_alignof] = ACTIONS(3604), + [anon_sym__Alignof] = ACTIONS(3604), + [anon_sym_offsetof] = ACTIONS(3604), + [anon_sym__Generic] = ACTIONS(3604), + [anon_sym_typename] = ACTIONS(3604), + [anon_sym_asm] = ACTIONS(3604), + [anon_sym___asm__] = ACTIONS(3604), + [anon_sym___asm] = ACTIONS(3604), + [sym_number_literal] = ACTIONS(3606), + [anon_sym_L_SQUOTE] = ACTIONS(3606), + [anon_sym_u_SQUOTE] = ACTIONS(3606), + [anon_sym_U_SQUOTE] = ACTIONS(3606), + [anon_sym_u8_SQUOTE] = ACTIONS(3606), + [anon_sym_SQUOTE] = ACTIONS(3606), + [anon_sym_L_DQUOTE] = ACTIONS(3606), + [anon_sym_u_DQUOTE] = ACTIONS(3606), + [anon_sym_U_DQUOTE] = ACTIONS(3606), + [anon_sym_u8_DQUOTE] = ACTIONS(3606), + [anon_sym_DQUOTE] = ACTIONS(3606), + [sym_true] = ACTIONS(3604), + [sym_false] = ACTIONS(3604), + [anon_sym_NULL] = ACTIONS(3604), + [anon_sym_nullptr] = ACTIONS(3604), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3604), + [anon_sym_decltype] = ACTIONS(3604), + [anon_sym_explicit] = ACTIONS(3604), + [anon_sym_export] = ACTIONS(3604), + [anon_sym_module] = ACTIONS(3604), + [anon_sym_import] = ACTIONS(3604), + [anon_sym_template] = ACTIONS(3604), + [anon_sym_operator] = ACTIONS(3604), + [anon_sym_try] = ACTIONS(3604), + [anon_sym_delete] = ACTIONS(3604), + [anon_sym_throw] = ACTIONS(3604), + [anon_sym_namespace] = ACTIONS(3604), + [anon_sym_static_assert] = ACTIONS(3604), + [anon_sym_concept] = ACTIONS(3604), + [anon_sym_co_return] = ACTIONS(3604), + [anon_sym_co_yield] = ACTIONS(3604), + [anon_sym_R_DQUOTE] = ACTIONS(3606), + [anon_sym_LR_DQUOTE] = ACTIONS(3606), + [anon_sym_uR_DQUOTE] = ACTIONS(3606), + [anon_sym_UR_DQUOTE] = ACTIONS(3606), + [anon_sym_u8R_DQUOTE] = ACTIONS(3606), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(3604), + [anon_sym_requires] = ACTIONS(3604), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(3606), + [sym_this] = ACTIONS(3604), }, - [STATE(649)] = { - [ts_builtin_sym_end] = ACTIONS(4440), - [sym_identifier] = ACTIONS(4442), - [aux_sym_preproc_include_token1] = ACTIONS(4442), - [aux_sym_preproc_def_token1] = ACTIONS(4442), - [aux_sym_preproc_if_token1] = ACTIONS(4442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4442), - [sym_preproc_directive] = ACTIONS(4442), - [anon_sym_LPAREN2] = ACTIONS(4440), - [anon_sym_BANG] = ACTIONS(4440), - [anon_sym_TILDE] = ACTIONS(4440), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4440), - [anon_sym_AMP_AMP] = ACTIONS(4440), - [anon_sym_AMP] = ACTIONS(4442), - [anon_sym_SEMI] = ACTIONS(4440), - [anon_sym___extension__] = ACTIONS(4442), - [anon_sym_typedef] = ACTIONS(4442), - [anon_sym_virtual] = ACTIONS(4442), - [anon_sym_extern] = ACTIONS(4442), - [anon_sym___attribute__] = ACTIONS(4442), - [anon_sym___attribute] = ACTIONS(4442), - [anon_sym_using] = ACTIONS(4442), - [anon_sym_COLON_COLON] = ACTIONS(4440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4440), - [anon_sym___declspec] = ACTIONS(4442), - [anon_sym___based] = ACTIONS(4442), - [anon_sym___cdecl] = ACTIONS(4442), - [anon_sym___clrcall] = ACTIONS(4442), - [anon_sym___stdcall] = ACTIONS(4442), - [anon_sym___fastcall] = ACTIONS(4442), - [anon_sym___thiscall] = ACTIONS(4442), - [anon_sym___vectorcall] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(4440), - [anon_sym_signed] = ACTIONS(4442), - [anon_sym_unsigned] = ACTIONS(4442), - [anon_sym_long] = ACTIONS(4442), - [anon_sym_short] = ACTIONS(4442), - [anon_sym_LBRACK] = ACTIONS(4442), - [anon_sym_static] = ACTIONS(4442), - [anon_sym_register] = ACTIONS(4442), - [anon_sym_inline] = ACTIONS(4442), - [anon_sym___inline] = ACTIONS(4442), - [anon_sym___inline__] = ACTIONS(4442), - [anon_sym___forceinline] = ACTIONS(4442), - [anon_sym_thread_local] = ACTIONS(4442), - [anon_sym___thread] = ACTIONS(4442), - [anon_sym_const] = ACTIONS(4442), - [anon_sym_constexpr] = ACTIONS(4442), - [anon_sym_volatile] = ACTIONS(4442), - [anon_sym_restrict] = ACTIONS(4442), - [anon_sym___restrict__] = ACTIONS(4442), - [anon_sym__Atomic] = ACTIONS(4442), - [anon_sym__Noreturn] = ACTIONS(4442), - [anon_sym_noreturn] = ACTIONS(4442), - [anon_sym__Nonnull] = ACTIONS(4442), - [anon_sym_mutable] = ACTIONS(4442), - [anon_sym_constinit] = ACTIONS(4442), - [anon_sym_consteval] = ACTIONS(4442), - [anon_sym_alignas] = ACTIONS(4442), - [anon_sym__Alignas] = ACTIONS(4442), - [sym_primitive_type] = ACTIONS(4442), - [anon_sym_enum] = ACTIONS(4442), - [anon_sym_class] = ACTIONS(4442), - [anon_sym_struct] = ACTIONS(4442), - [anon_sym_union] = ACTIONS(4442), - [anon_sym_if] = ACTIONS(4442), - [anon_sym_switch] = ACTIONS(4442), - [anon_sym_case] = ACTIONS(4442), - [anon_sym_default] = ACTIONS(4442), - [anon_sym_while] = ACTIONS(4442), - [anon_sym_do] = ACTIONS(4442), - [anon_sym_for] = ACTIONS(4442), - [anon_sym_return] = ACTIONS(4442), - [anon_sym_break] = ACTIONS(4442), - [anon_sym_continue] = ACTIONS(4442), - [anon_sym_goto] = ACTIONS(4442), - [anon_sym_not] = ACTIONS(4442), - [anon_sym_compl] = ACTIONS(4442), - [anon_sym_DASH_DASH] = ACTIONS(4440), - [anon_sym_PLUS_PLUS] = ACTIONS(4440), - [anon_sym_sizeof] = ACTIONS(4442), - [anon_sym___alignof__] = ACTIONS(4442), - [anon_sym___alignof] = ACTIONS(4442), - [anon_sym__alignof] = ACTIONS(4442), - [anon_sym_alignof] = ACTIONS(4442), - [anon_sym__Alignof] = ACTIONS(4442), - [anon_sym_offsetof] = ACTIONS(4442), - [anon_sym__Generic] = ACTIONS(4442), - [anon_sym_typename] = ACTIONS(4442), - [anon_sym_asm] = ACTIONS(4442), - [anon_sym___asm__] = ACTIONS(4442), - [anon_sym___asm] = ACTIONS(4442), - [sym_number_literal] = ACTIONS(4440), - [anon_sym_L_SQUOTE] = ACTIONS(4440), - [anon_sym_u_SQUOTE] = ACTIONS(4440), - [anon_sym_U_SQUOTE] = ACTIONS(4440), - [anon_sym_u8_SQUOTE] = ACTIONS(4440), - [anon_sym_SQUOTE] = ACTIONS(4440), - [anon_sym_L_DQUOTE] = ACTIONS(4440), - [anon_sym_u_DQUOTE] = ACTIONS(4440), - [anon_sym_U_DQUOTE] = ACTIONS(4440), - [anon_sym_u8_DQUOTE] = ACTIONS(4440), - [anon_sym_DQUOTE] = ACTIONS(4440), - [sym_true] = ACTIONS(4442), - [sym_false] = ACTIONS(4442), - [anon_sym_NULL] = ACTIONS(4442), - [anon_sym_nullptr] = ACTIONS(4442), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4442), - [anon_sym_decltype] = ACTIONS(4442), - [anon_sym_explicit] = ACTIONS(4442), - [anon_sym_export] = ACTIONS(4442), - [anon_sym_module] = ACTIONS(4442), - [anon_sym_import] = ACTIONS(4442), - [anon_sym_template] = ACTIONS(4442), - [anon_sym_operator] = ACTIONS(4442), - [anon_sym_try] = ACTIONS(4442), - [anon_sym_delete] = ACTIONS(4442), - [anon_sym_throw] = ACTIONS(4442), - [anon_sym_namespace] = ACTIONS(4442), - [anon_sym_static_assert] = ACTIONS(4442), - [anon_sym_concept] = ACTIONS(4442), - [anon_sym_co_return] = ACTIONS(4442), - [anon_sym_co_yield] = ACTIONS(4442), - [anon_sym_R_DQUOTE] = ACTIONS(4440), - [anon_sym_LR_DQUOTE] = ACTIONS(4440), - [anon_sym_uR_DQUOTE] = ACTIONS(4440), - [anon_sym_UR_DQUOTE] = ACTIONS(4440), - [anon_sym_u8R_DQUOTE] = ACTIONS(4440), - [anon_sym_co_await] = ACTIONS(4442), - [anon_sym_new] = ACTIONS(4442), - [anon_sym_requires] = ACTIONS(4442), - [anon_sym_CARET_CARET] = ACTIONS(4440), - [anon_sym_LBRACK_COLON] = ACTIONS(4440), - [sym_this] = ACTIONS(4442), + [STATE(574)] = { + [ts_builtin_sym_end] = ACTIONS(3546), + [sym_identifier] = ACTIONS(3544), + [aux_sym_preproc_include_token1] = ACTIONS(3544), + [aux_sym_preproc_def_token1] = ACTIONS(3544), + [aux_sym_preproc_if_token1] = ACTIONS(3544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3544), + [sym_preproc_directive] = ACTIONS(3544), + [anon_sym_LPAREN2] = ACTIONS(3546), + [anon_sym_BANG] = ACTIONS(3546), + [anon_sym_TILDE] = ACTIONS(3546), + [anon_sym_DASH] = ACTIONS(3544), + [anon_sym_PLUS] = ACTIONS(3544), + [anon_sym_STAR] = ACTIONS(3546), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3544), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym___extension__] = ACTIONS(3544), + [anon_sym_typedef] = ACTIONS(3544), + [anon_sym_virtual] = ACTIONS(3544), + [anon_sym_extern] = ACTIONS(3544), + [anon_sym___attribute__] = ACTIONS(3544), + [anon_sym___attribute] = ACTIONS(3544), + [anon_sym_using] = ACTIONS(3544), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3546), + [anon_sym___declspec] = ACTIONS(3544), + [anon_sym___based] = ACTIONS(3544), + [anon_sym___cdecl] = ACTIONS(3544), + [anon_sym___clrcall] = ACTIONS(3544), + [anon_sym___stdcall] = ACTIONS(3544), + [anon_sym___fastcall] = ACTIONS(3544), + [anon_sym___thiscall] = ACTIONS(3544), + [anon_sym___vectorcall] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3546), + [anon_sym_signed] = ACTIONS(3544), + [anon_sym_unsigned] = ACTIONS(3544), + [anon_sym_long] = ACTIONS(3544), + [anon_sym_short] = ACTIONS(3544), + [anon_sym_LBRACK] = ACTIONS(3544), + [anon_sym_static] = ACTIONS(3544), + [anon_sym_register] = ACTIONS(3544), + [anon_sym_inline] = ACTIONS(3544), + [anon_sym___inline] = ACTIONS(3544), + [anon_sym___inline__] = ACTIONS(3544), + [anon_sym___forceinline] = ACTIONS(3544), + [anon_sym_thread_local] = ACTIONS(3544), + [anon_sym___thread] = ACTIONS(3544), + [anon_sym_const] = ACTIONS(3544), + [anon_sym_constexpr] = ACTIONS(3544), + [anon_sym_volatile] = ACTIONS(3544), + [anon_sym_restrict] = ACTIONS(3544), + [anon_sym___restrict__] = ACTIONS(3544), + [anon_sym__Atomic] = ACTIONS(3544), + [anon_sym__Noreturn] = ACTIONS(3544), + [anon_sym_noreturn] = ACTIONS(3544), + [anon_sym__Nonnull] = ACTIONS(3544), + [anon_sym_mutable] = ACTIONS(3544), + [anon_sym_constinit] = ACTIONS(3544), + [anon_sym_consteval] = ACTIONS(3544), + [anon_sym_alignas] = ACTIONS(3544), + [anon_sym__Alignas] = ACTIONS(3544), + [sym_primitive_type] = ACTIONS(3544), + [anon_sym_enum] = ACTIONS(3544), + [anon_sym_class] = ACTIONS(3544), + [anon_sym_struct] = ACTIONS(3544), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_else] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3544), + [anon_sym_case] = ACTIONS(3544), + [anon_sym_default] = ACTIONS(3544), + [anon_sym_while] = ACTIONS(3544), + [anon_sym_do] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3544), + [anon_sym_return] = ACTIONS(3544), + [anon_sym_break] = ACTIONS(3544), + [anon_sym_continue] = ACTIONS(3544), + [anon_sym_goto] = ACTIONS(3544), + [anon_sym___try] = ACTIONS(3544), + [anon_sym___leave] = ACTIONS(3544), + [anon_sym_not] = ACTIONS(3544), + [anon_sym_compl] = ACTIONS(3544), + [anon_sym_DASH_DASH] = ACTIONS(3546), + [anon_sym_PLUS_PLUS] = ACTIONS(3546), + [anon_sym_sizeof] = ACTIONS(3544), + [anon_sym___alignof__] = ACTIONS(3544), + [anon_sym___alignof] = ACTIONS(3544), + [anon_sym__alignof] = ACTIONS(3544), + [anon_sym_alignof] = ACTIONS(3544), + [anon_sym__Alignof] = ACTIONS(3544), + [anon_sym_offsetof] = ACTIONS(3544), + [anon_sym__Generic] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3544), + [anon_sym_asm] = ACTIONS(3544), + [anon_sym___asm__] = ACTIONS(3544), + [anon_sym___asm] = ACTIONS(3544), + [sym_number_literal] = ACTIONS(3546), + [anon_sym_L_SQUOTE] = ACTIONS(3546), + [anon_sym_u_SQUOTE] = ACTIONS(3546), + [anon_sym_U_SQUOTE] = ACTIONS(3546), + [anon_sym_u8_SQUOTE] = ACTIONS(3546), + [anon_sym_SQUOTE] = ACTIONS(3546), + [anon_sym_L_DQUOTE] = ACTIONS(3546), + [anon_sym_u_DQUOTE] = ACTIONS(3546), + [anon_sym_U_DQUOTE] = ACTIONS(3546), + [anon_sym_u8_DQUOTE] = ACTIONS(3546), + [anon_sym_DQUOTE] = ACTIONS(3546), + [sym_true] = ACTIONS(3544), + [sym_false] = ACTIONS(3544), + [anon_sym_NULL] = ACTIONS(3544), + [anon_sym_nullptr] = ACTIONS(3544), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3544), + [anon_sym_decltype] = ACTIONS(3544), + [anon_sym_explicit] = ACTIONS(3544), + [anon_sym_export] = ACTIONS(3544), + [anon_sym_module] = ACTIONS(3544), + [anon_sym_import] = ACTIONS(3544), + [anon_sym_template] = ACTIONS(3544), + [anon_sym_operator] = ACTIONS(3544), + [anon_sym_try] = ACTIONS(3544), + [anon_sym_delete] = ACTIONS(3544), + [anon_sym_throw] = ACTIONS(3544), + [anon_sym_namespace] = ACTIONS(3544), + [anon_sym_static_assert] = ACTIONS(3544), + [anon_sym_concept] = ACTIONS(3544), + [anon_sym_co_return] = ACTIONS(3544), + [anon_sym_co_yield] = ACTIONS(3544), + [anon_sym_R_DQUOTE] = ACTIONS(3546), + [anon_sym_LR_DQUOTE] = ACTIONS(3546), + [anon_sym_uR_DQUOTE] = ACTIONS(3546), + [anon_sym_UR_DQUOTE] = ACTIONS(3546), + [anon_sym_u8R_DQUOTE] = ACTIONS(3546), + [anon_sym_co_await] = ACTIONS(3544), + [anon_sym_new] = ACTIONS(3544), + [anon_sym_requires] = ACTIONS(3544), + [anon_sym_CARET_CARET] = ACTIONS(3546), + [anon_sym_LBRACK_COLON] = ACTIONS(3546), + [sym_this] = ACTIONS(3544), }, - [STATE(650)] = { - [ts_builtin_sym_end] = ACTIONS(4000), - [sym_identifier] = ACTIONS(3998), - [aux_sym_preproc_include_token1] = ACTIONS(3998), - [aux_sym_preproc_def_token1] = ACTIONS(3998), - [aux_sym_preproc_if_token1] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), - [sym_preproc_directive] = ACTIONS(3998), - [anon_sym_LPAREN2] = ACTIONS(4000), - [anon_sym_BANG] = ACTIONS(4000), - [anon_sym_TILDE] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(3998), - [anon_sym_PLUS] = ACTIONS(3998), - [anon_sym_STAR] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym___extension__] = ACTIONS(3998), - [anon_sym_typedef] = ACTIONS(3998), - [anon_sym_virtual] = ACTIONS(3998), - [anon_sym_extern] = ACTIONS(3998), - [anon_sym___attribute__] = ACTIONS(3998), - [anon_sym___attribute] = ACTIONS(3998), - [anon_sym_using] = ACTIONS(3998), - [anon_sym_COLON_COLON] = ACTIONS(4000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), - [anon_sym___declspec] = ACTIONS(3998), - [anon_sym___based] = ACTIONS(3998), - [anon_sym___cdecl] = ACTIONS(3998), - [anon_sym___clrcall] = ACTIONS(3998), - [anon_sym___stdcall] = ACTIONS(3998), - [anon_sym___fastcall] = ACTIONS(3998), - [anon_sym___thiscall] = ACTIONS(3998), - [anon_sym___vectorcall] = ACTIONS(3998), - [anon_sym_LBRACE] = ACTIONS(4000), - [anon_sym_signed] = ACTIONS(3998), - [anon_sym_unsigned] = ACTIONS(3998), - [anon_sym_long] = ACTIONS(3998), - [anon_sym_short] = ACTIONS(3998), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_static] = ACTIONS(3998), - [anon_sym_register] = ACTIONS(3998), - [anon_sym_inline] = ACTIONS(3998), - [anon_sym___inline] = ACTIONS(3998), - [anon_sym___inline__] = ACTIONS(3998), - [anon_sym___forceinline] = ACTIONS(3998), - [anon_sym_thread_local] = ACTIONS(3998), - [anon_sym___thread] = ACTIONS(3998), - [anon_sym_const] = ACTIONS(3998), - [anon_sym_constexpr] = ACTIONS(3998), - [anon_sym_volatile] = ACTIONS(3998), - [anon_sym_restrict] = ACTIONS(3998), - [anon_sym___restrict__] = ACTIONS(3998), - [anon_sym__Atomic] = ACTIONS(3998), - [anon_sym__Noreturn] = ACTIONS(3998), - [anon_sym_noreturn] = ACTIONS(3998), - [anon_sym__Nonnull] = ACTIONS(3998), - [anon_sym_mutable] = ACTIONS(3998), - [anon_sym_constinit] = ACTIONS(3998), - [anon_sym_consteval] = ACTIONS(3998), - [anon_sym_alignas] = ACTIONS(3998), - [anon_sym__Alignas] = ACTIONS(3998), - [sym_primitive_type] = ACTIONS(3998), - [anon_sym_enum] = ACTIONS(3998), - [anon_sym_class] = ACTIONS(3998), - [anon_sym_struct] = ACTIONS(3998), - [anon_sym_union] = ACTIONS(3998), - [anon_sym_if] = ACTIONS(3998), - [anon_sym_switch] = ACTIONS(3998), - [anon_sym_case] = ACTIONS(3998), - [anon_sym_default] = ACTIONS(3998), - [anon_sym_while] = ACTIONS(3998), - [anon_sym_do] = ACTIONS(3998), - [anon_sym_for] = ACTIONS(3998), - [anon_sym_return] = ACTIONS(3998), - [anon_sym_break] = ACTIONS(3998), - [anon_sym_continue] = ACTIONS(3998), - [anon_sym_goto] = ACTIONS(3998), - [anon_sym_not] = ACTIONS(3998), - [anon_sym_compl] = ACTIONS(3998), - [anon_sym_DASH_DASH] = ACTIONS(4000), - [anon_sym_PLUS_PLUS] = ACTIONS(4000), - [anon_sym_sizeof] = ACTIONS(3998), - [anon_sym___alignof__] = ACTIONS(3998), - [anon_sym___alignof] = ACTIONS(3998), - [anon_sym__alignof] = ACTIONS(3998), - [anon_sym_alignof] = ACTIONS(3998), - [anon_sym__Alignof] = ACTIONS(3998), - [anon_sym_offsetof] = ACTIONS(3998), - [anon_sym__Generic] = ACTIONS(3998), - [anon_sym_typename] = ACTIONS(3998), - [anon_sym_asm] = ACTIONS(3998), - [anon_sym___asm__] = ACTIONS(3998), - [anon_sym___asm] = ACTIONS(3998), - [sym_number_literal] = ACTIONS(4000), - [anon_sym_L_SQUOTE] = ACTIONS(4000), - [anon_sym_u_SQUOTE] = ACTIONS(4000), - [anon_sym_U_SQUOTE] = ACTIONS(4000), - [anon_sym_u8_SQUOTE] = ACTIONS(4000), - [anon_sym_SQUOTE] = 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_true] = ACTIONS(3998), - [sym_false] = ACTIONS(3998), - [anon_sym_NULL] = ACTIONS(3998), - [anon_sym_nullptr] = ACTIONS(3998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3998), - [anon_sym_decltype] = ACTIONS(3998), - [anon_sym_explicit] = ACTIONS(3998), - [anon_sym_export] = ACTIONS(3998), - [anon_sym_module] = ACTIONS(3998), - [anon_sym_import] = ACTIONS(3998), - [anon_sym_template] = ACTIONS(3998), - [anon_sym_operator] = ACTIONS(3998), - [anon_sym_try] = ACTIONS(3998), - [anon_sym_delete] = ACTIONS(3998), - [anon_sym_throw] = ACTIONS(3998), - [anon_sym_namespace] = ACTIONS(3998), - [anon_sym_static_assert] = ACTIONS(3998), - [anon_sym_concept] = ACTIONS(3998), - [anon_sym_co_return] = ACTIONS(3998), - [anon_sym_co_yield] = ACTIONS(3998), - [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), - [anon_sym_co_await] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_requires] = ACTIONS(3998), - [anon_sym_CARET_CARET] = ACTIONS(4000), - [anon_sym_LBRACK_COLON] = ACTIONS(4000), - [sym_this] = ACTIONS(3998), + [STATE(575)] = { + [ts_builtin_sym_end] = ACTIONS(3598), + [sym_identifier] = ACTIONS(3596), + [aux_sym_preproc_include_token1] = ACTIONS(3596), + [aux_sym_preproc_def_token1] = ACTIONS(3596), + [aux_sym_preproc_if_token1] = ACTIONS(3596), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3596), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3596), + [sym_preproc_directive] = ACTIONS(3596), + [anon_sym_LPAREN2] = ACTIONS(3598), + [anon_sym_BANG] = ACTIONS(3598), + [anon_sym_TILDE] = ACTIONS(3598), + [anon_sym_DASH] = ACTIONS(3596), + [anon_sym_PLUS] = ACTIONS(3596), + [anon_sym_STAR] = ACTIONS(3598), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_AMP] = ACTIONS(3596), + [anon_sym_SEMI] = ACTIONS(3598), + [anon_sym___extension__] = ACTIONS(3596), + [anon_sym_typedef] = ACTIONS(3596), + [anon_sym_virtual] = ACTIONS(3596), + [anon_sym_extern] = ACTIONS(3596), + [anon_sym___attribute__] = ACTIONS(3596), + [anon_sym___attribute] = ACTIONS(3596), + [anon_sym_using] = ACTIONS(3596), + [anon_sym_COLON_COLON] = ACTIONS(3598), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3598), + [anon_sym___declspec] = ACTIONS(3596), + [anon_sym___based] = ACTIONS(3596), + [anon_sym___cdecl] = ACTIONS(3596), + [anon_sym___clrcall] = ACTIONS(3596), + [anon_sym___stdcall] = ACTIONS(3596), + [anon_sym___fastcall] = ACTIONS(3596), + [anon_sym___thiscall] = ACTIONS(3596), + [anon_sym___vectorcall] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_signed] = ACTIONS(3596), + [anon_sym_unsigned] = ACTIONS(3596), + [anon_sym_long] = ACTIONS(3596), + [anon_sym_short] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_static] = ACTIONS(3596), + [anon_sym_register] = ACTIONS(3596), + [anon_sym_inline] = ACTIONS(3596), + [anon_sym___inline] = ACTIONS(3596), + [anon_sym___inline__] = ACTIONS(3596), + [anon_sym___forceinline] = ACTIONS(3596), + [anon_sym_thread_local] = ACTIONS(3596), + [anon_sym___thread] = ACTIONS(3596), + [anon_sym_const] = ACTIONS(3596), + [anon_sym_constexpr] = ACTIONS(3596), + [anon_sym_volatile] = ACTIONS(3596), + [anon_sym_restrict] = ACTIONS(3596), + [anon_sym___restrict__] = ACTIONS(3596), + [anon_sym__Atomic] = ACTIONS(3596), + [anon_sym__Noreturn] = ACTIONS(3596), + [anon_sym_noreturn] = ACTIONS(3596), + [anon_sym__Nonnull] = ACTIONS(3596), + [anon_sym_mutable] = ACTIONS(3596), + [anon_sym_constinit] = ACTIONS(3596), + [anon_sym_consteval] = ACTIONS(3596), + [anon_sym_alignas] = ACTIONS(3596), + [anon_sym__Alignas] = ACTIONS(3596), + [sym_primitive_type] = ACTIONS(3596), + [anon_sym_enum] = ACTIONS(3596), + [anon_sym_class] = ACTIONS(3596), + [anon_sym_struct] = ACTIONS(3596), + [anon_sym_union] = ACTIONS(3596), + [anon_sym_if] = ACTIONS(3596), + [anon_sym_else] = ACTIONS(3596), + [anon_sym_switch] = ACTIONS(3596), + [anon_sym_case] = ACTIONS(3596), + [anon_sym_default] = ACTIONS(3596), + [anon_sym_while] = ACTIONS(3596), + [anon_sym_do] = ACTIONS(3596), + [anon_sym_for] = ACTIONS(3596), + [anon_sym_return] = ACTIONS(3596), + [anon_sym_break] = ACTIONS(3596), + [anon_sym_continue] = ACTIONS(3596), + [anon_sym_goto] = ACTIONS(3596), + [anon_sym___try] = ACTIONS(3596), + [anon_sym___leave] = ACTIONS(3596), + [anon_sym_not] = ACTIONS(3596), + [anon_sym_compl] = ACTIONS(3596), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3596), + [anon_sym___alignof__] = ACTIONS(3596), + [anon_sym___alignof] = ACTIONS(3596), + [anon_sym__alignof] = ACTIONS(3596), + [anon_sym_alignof] = ACTIONS(3596), + [anon_sym__Alignof] = ACTIONS(3596), + [anon_sym_offsetof] = ACTIONS(3596), + [anon_sym__Generic] = ACTIONS(3596), + [anon_sym_typename] = ACTIONS(3596), + [anon_sym_asm] = ACTIONS(3596), + [anon_sym___asm__] = ACTIONS(3596), + [anon_sym___asm] = ACTIONS(3596), + [sym_number_literal] = ACTIONS(3598), + [anon_sym_L_SQUOTE] = ACTIONS(3598), + [anon_sym_u_SQUOTE] = ACTIONS(3598), + [anon_sym_U_SQUOTE] = ACTIONS(3598), + [anon_sym_u8_SQUOTE] = ACTIONS(3598), + [anon_sym_SQUOTE] = ACTIONS(3598), + [anon_sym_L_DQUOTE] = ACTIONS(3598), + [anon_sym_u_DQUOTE] = ACTIONS(3598), + [anon_sym_U_DQUOTE] = ACTIONS(3598), + [anon_sym_u8_DQUOTE] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3598), + [sym_true] = ACTIONS(3596), + [sym_false] = ACTIONS(3596), + [anon_sym_NULL] = ACTIONS(3596), + [anon_sym_nullptr] = ACTIONS(3596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3596), + [anon_sym_decltype] = ACTIONS(3596), + [anon_sym_explicit] = ACTIONS(3596), + [anon_sym_export] = ACTIONS(3596), + [anon_sym_module] = ACTIONS(3596), + [anon_sym_import] = ACTIONS(3596), + [anon_sym_template] = ACTIONS(3596), + [anon_sym_operator] = ACTIONS(3596), + [anon_sym_try] = ACTIONS(3596), + [anon_sym_delete] = ACTIONS(3596), + [anon_sym_throw] = ACTIONS(3596), + [anon_sym_namespace] = ACTIONS(3596), + [anon_sym_static_assert] = ACTIONS(3596), + [anon_sym_concept] = ACTIONS(3596), + [anon_sym_co_return] = ACTIONS(3596), + [anon_sym_co_yield] = ACTIONS(3596), + [anon_sym_R_DQUOTE] = ACTIONS(3598), + [anon_sym_LR_DQUOTE] = ACTIONS(3598), + [anon_sym_uR_DQUOTE] = ACTIONS(3598), + [anon_sym_UR_DQUOTE] = ACTIONS(3598), + [anon_sym_u8R_DQUOTE] = ACTIONS(3598), + [anon_sym_co_await] = ACTIONS(3596), + [anon_sym_new] = ACTIONS(3596), + [anon_sym_requires] = ACTIONS(3596), + [anon_sym_CARET_CARET] = ACTIONS(3598), + [anon_sym_LBRACK_COLON] = ACTIONS(3598), + [sym_this] = ACTIONS(3596), }, - [STATE(651)] = { - [sym_preproc_def] = STATE(660), - [sym_preproc_function_def] = STATE(660), - [sym_preproc_call] = STATE(660), - [sym_preproc_if_in_field_declaration_list] = STATE(660), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(660), - [sym_type_definition] = STATE(660), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7964), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(660), - [sym_field_declaration] = STATE(660), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(660), - [sym_operator_cast] = STATE(9142), - [sym_inline_method_definition] = STATE(660), - [sym__constructor_specifiers] = STATE(2332), - [sym_operator_cast_definition] = STATE(660), - [sym_operator_cast_declaration] = STATE(660), - [sym_constructor_or_destructor_definition] = STATE(660), - [sym_constructor_or_destructor_declaration] = STATE(660), - [sym_friend_declaration] = STATE(660), - [sym_access_specifier] = STATE(11109), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(660), - [sym_alias_declaration] = STATE(660), - [sym_static_assert_declaration] = STATE(660), - [sym_consteval_block_declaration] = STATE(660), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(660), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9371), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(4352), - [aux_sym_preproc_if_token1] = ACTIONS(4354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), - [sym_preproc_directive] = ACTIONS(4358), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(4444), - [anon_sym___extension__] = ACTIONS(4362), - [anon_sym_typedef] = ACTIONS(4364), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4446), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4372), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), + [STATE(576)] = { + [sym_identifier] = ACTIONS(3618), + [aux_sym_preproc_include_token1] = ACTIONS(3618), + [aux_sym_preproc_def_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token2] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), + [sym_preproc_directive] = ACTIONS(3618), + [anon_sym_LPAREN2] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_AMP] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym___extension__] = ACTIONS(3618), + [anon_sym_typedef] = ACTIONS(3618), + [anon_sym_virtual] = ACTIONS(3618), + [anon_sym_extern] = ACTIONS(3618), + [anon_sym___attribute__] = ACTIONS(3618), + [anon_sym___attribute] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_COLON_COLON] = ACTIONS(3620), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), + [anon_sym___declspec] = ACTIONS(3618), + [anon_sym___based] = ACTIONS(3618), + [anon_sym___cdecl] = ACTIONS(3618), + [anon_sym___clrcall] = ACTIONS(3618), + [anon_sym___stdcall] = ACTIONS(3618), + [anon_sym___fastcall] = ACTIONS(3618), + [anon_sym___thiscall] = ACTIONS(3618), + [anon_sym___vectorcall] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_signed] = ACTIONS(3618), + [anon_sym_unsigned] = ACTIONS(3618), + [anon_sym_long] = ACTIONS(3618), + [anon_sym_short] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_register] = ACTIONS(3618), + [anon_sym_inline] = ACTIONS(3618), + [anon_sym___inline] = ACTIONS(3618), + [anon_sym___inline__] = ACTIONS(3618), + [anon_sym___forceinline] = ACTIONS(3618), + [anon_sym_thread_local] = ACTIONS(3618), + [anon_sym___thread] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_constexpr] = ACTIONS(3618), + [anon_sym_volatile] = ACTIONS(3618), + [anon_sym_restrict] = ACTIONS(3618), + [anon_sym___restrict__] = ACTIONS(3618), + [anon_sym__Atomic] = ACTIONS(3618), + [anon_sym__Noreturn] = ACTIONS(3618), + [anon_sym_noreturn] = ACTIONS(3618), + [anon_sym__Nonnull] = ACTIONS(3618), + [anon_sym_mutable] = ACTIONS(3618), + [anon_sym_constinit] = ACTIONS(3618), + [anon_sym_consteval] = ACTIONS(3618), + [anon_sym_alignas] = ACTIONS(3618), + [anon_sym__Alignas] = ACTIONS(3618), + [sym_primitive_type] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_struct] = ACTIONS(3618), + [anon_sym_union] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_else] = ACTIONS(3618), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_case] = ACTIONS(3618), + [anon_sym_default] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_goto] = ACTIONS(3618), + [anon_sym___try] = ACTIONS(3618), + [anon_sym___leave] = ACTIONS(3618), + [anon_sym_not] = ACTIONS(3618), + [anon_sym_compl] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_sizeof] = ACTIONS(3618), + [anon_sym___alignof__] = ACTIONS(3618), + [anon_sym___alignof] = ACTIONS(3618), + [anon_sym__alignof] = ACTIONS(3618), + [anon_sym_alignof] = ACTIONS(3618), + [anon_sym__Alignof] = ACTIONS(3618), + [anon_sym_offsetof] = ACTIONS(3618), + [anon_sym__Generic] = ACTIONS(3618), + [anon_sym_typename] = ACTIONS(3618), + [anon_sym_asm] = ACTIONS(3618), + [anon_sym___asm__] = ACTIONS(3618), + [anon_sym___asm] = ACTIONS(3618), + [sym_number_literal] = ACTIONS(3620), + [anon_sym_L_SQUOTE] = ACTIONS(3620), + [anon_sym_u_SQUOTE] = ACTIONS(3620), + [anon_sym_U_SQUOTE] = ACTIONS(3620), + [anon_sym_u8_SQUOTE] = ACTIONS(3620), + [anon_sym_SQUOTE] = ACTIONS(3620), + [anon_sym_L_DQUOTE] = ACTIONS(3620), + [anon_sym_u_DQUOTE] = ACTIONS(3620), + [anon_sym_U_DQUOTE] = ACTIONS(3620), + [anon_sym_u8_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [anon_sym_NULL] = ACTIONS(3618), + [anon_sym_nullptr] = ACTIONS(3618), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(4374), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4376), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(4378), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_auto] = ACTIONS(3618), + [anon_sym_decltype] = ACTIONS(3618), + [anon_sym_explicit] = ACTIONS(3618), + [anon_sym_export] = ACTIONS(3618), + [anon_sym_module] = ACTIONS(3618), + [anon_sym_import] = ACTIONS(3618), + [anon_sym_template] = ACTIONS(3618), + [anon_sym_operator] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_namespace] = ACTIONS(3618), + [anon_sym_static_assert] = ACTIONS(3618), + [anon_sym_concept] = ACTIONS(3618), + [anon_sym_co_return] = ACTIONS(3618), + [anon_sym_co_yield] = ACTIONS(3618), + [anon_sym_R_DQUOTE] = ACTIONS(3620), + [anon_sym_LR_DQUOTE] = ACTIONS(3620), + [anon_sym_uR_DQUOTE] = ACTIONS(3620), + [anon_sym_UR_DQUOTE] = ACTIONS(3620), + [anon_sym_u8R_DQUOTE] = ACTIONS(3620), + [anon_sym_co_await] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_requires] = ACTIONS(3618), + [anon_sym_CARET_CARET] = ACTIONS(3620), + [anon_sym_LBRACK_COLON] = ACTIONS(3620), + [sym_this] = ACTIONS(3618), }, - [STATE(652)] = { + [STATE(577)] = { + [ts_builtin_sym_end] = ACTIONS(3628), [sym_identifier] = ACTIONS(3626), [aux_sym_preproc_include_token1] = ACTIONS(3626), [aux_sym_preproc_def_token1] = ACTIONS(3626), [aux_sym_preproc_if_token1] = ACTIONS(3626), - [aux_sym_preproc_if_token2] = ACTIONS(3626), [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), [sym_preproc_directive] = ACTIONS(3626), @@ -147161,6 +142620,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(3626), [anon_sym_decltype] = ACTIONS(3626), [anon_sym_explicit] = ACTIONS(3626), + [anon_sym_export] = ACTIONS(3626), + [anon_sym_module] = ACTIONS(3626), + [anon_sym_import] = ACTIONS(3626), [anon_sym_template] = ACTIONS(3626), [anon_sym_operator] = ACTIONS(3626), [anon_sym_try] = ACTIONS(3626), @@ -147183,6683 +142645,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3628), [sym_this] = ACTIONS(3626), }, - [STATE(653)] = { - [ts_builtin_sym_end] = ACTIONS(4141), - [sym_identifier] = ACTIONS(4138), - [aux_sym_preproc_include_token1] = ACTIONS(4138), - [aux_sym_preproc_def_token1] = ACTIONS(4138), - [aux_sym_preproc_if_token1] = ACTIONS(4138), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4138), - [sym_preproc_directive] = ACTIONS(4138), - [anon_sym_LPAREN2] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4141), - [anon_sym_TILDE] = ACTIONS(4141), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4141), - [anon_sym_AMP_AMP] = ACTIONS(4141), - [anon_sym_AMP] = ACTIONS(4138), - [anon_sym_SEMI] = ACTIONS(4141), - [anon_sym___extension__] = ACTIONS(4138), - [anon_sym_typedef] = ACTIONS(4138), - [anon_sym_virtual] = ACTIONS(4138), - [anon_sym_extern] = ACTIONS(4138), - [anon_sym___attribute__] = ACTIONS(4138), - [anon_sym___attribute] = ACTIONS(4138), - [anon_sym_using] = ACTIONS(4138), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4141), - [anon_sym___declspec] = ACTIONS(4138), - [anon_sym___based] = ACTIONS(4138), - [anon_sym___cdecl] = ACTIONS(4138), - [anon_sym___clrcall] = ACTIONS(4138), - [anon_sym___stdcall] = ACTIONS(4138), - [anon_sym___fastcall] = ACTIONS(4138), - [anon_sym___thiscall] = ACTIONS(4138), - [anon_sym___vectorcall] = ACTIONS(4138), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_signed] = ACTIONS(4138), - [anon_sym_unsigned] = ACTIONS(4138), - [anon_sym_long] = ACTIONS(4138), - [anon_sym_short] = ACTIONS(4138), - [anon_sym_LBRACK] = ACTIONS(4138), - [anon_sym_static] = ACTIONS(4138), - [anon_sym_register] = ACTIONS(4138), - [anon_sym_inline] = ACTIONS(4138), - [anon_sym___inline] = ACTIONS(4138), - [anon_sym___inline__] = ACTIONS(4138), - [anon_sym___forceinline] = ACTIONS(4138), - [anon_sym_thread_local] = ACTIONS(4138), - [anon_sym___thread] = ACTIONS(4138), - [anon_sym_const] = ACTIONS(4138), - [anon_sym_constexpr] = ACTIONS(4138), - [anon_sym_volatile] = ACTIONS(4138), - [anon_sym_restrict] = ACTIONS(4138), - [anon_sym___restrict__] = ACTIONS(4138), - [anon_sym__Atomic] = ACTIONS(4138), - [anon_sym__Noreturn] = ACTIONS(4138), - [anon_sym_noreturn] = ACTIONS(4138), - [anon_sym__Nonnull] = ACTIONS(4138), - [anon_sym_mutable] = ACTIONS(4138), - [anon_sym_constinit] = ACTIONS(4138), - [anon_sym_consteval] = ACTIONS(4138), - [anon_sym_alignas] = ACTIONS(4138), - [anon_sym__Alignas] = ACTIONS(4138), - [sym_primitive_type] = ACTIONS(4138), - [anon_sym_enum] = ACTIONS(4138), - [anon_sym_class] = ACTIONS(4138), - [anon_sym_struct] = ACTIONS(4138), - [anon_sym_union] = ACTIONS(4138), - [anon_sym_if] = ACTIONS(4138), - [anon_sym_switch] = ACTIONS(4138), - [anon_sym_case] = ACTIONS(4138), - [anon_sym_default] = ACTIONS(4138), - [anon_sym_while] = ACTIONS(4138), - [anon_sym_do] = ACTIONS(4138), - [anon_sym_for] = ACTIONS(4138), - [anon_sym_return] = ACTIONS(4138), - [anon_sym_break] = ACTIONS(4138), - [anon_sym_continue] = ACTIONS(4138), - [anon_sym_goto] = ACTIONS(4138), - [anon_sym_not] = ACTIONS(4138), - [anon_sym_compl] = ACTIONS(4138), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_sizeof] = ACTIONS(4138), - [anon_sym___alignof__] = ACTIONS(4138), - [anon_sym___alignof] = ACTIONS(4138), - [anon_sym__alignof] = ACTIONS(4138), - [anon_sym_alignof] = ACTIONS(4138), - [anon_sym__Alignof] = ACTIONS(4138), - [anon_sym_offsetof] = ACTIONS(4138), - [anon_sym__Generic] = ACTIONS(4138), - [anon_sym_typename] = ACTIONS(4138), - [anon_sym_asm] = ACTIONS(4138), - [anon_sym___asm__] = ACTIONS(4138), - [anon_sym___asm] = ACTIONS(4138), - [sym_number_literal] = ACTIONS(4141), - [anon_sym_L_SQUOTE] = ACTIONS(4141), - [anon_sym_u_SQUOTE] = ACTIONS(4141), - [anon_sym_U_SQUOTE] = ACTIONS(4141), - [anon_sym_u8_SQUOTE] = ACTIONS(4141), - [anon_sym_SQUOTE] = ACTIONS(4141), - [anon_sym_L_DQUOTE] = ACTIONS(4141), - [anon_sym_u_DQUOTE] = ACTIONS(4141), - [anon_sym_U_DQUOTE] = ACTIONS(4141), - [anon_sym_u8_DQUOTE] = ACTIONS(4141), - [anon_sym_DQUOTE] = ACTIONS(4141), - [sym_true] = ACTIONS(4138), - [sym_false] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_nullptr] = ACTIONS(4138), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4138), - [anon_sym_decltype] = ACTIONS(4138), - [anon_sym_explicit] = ACTIONS(4138), - [anon_sym_export] = ACTIONS(4138), - [anon_sym_module] = ACTIONS(4138), - [anon_sym_import] = ACTIONS(4138), - [anon_sym_template] = ACTIONS(4138), - [anon_sym_operator] = ACTIONS(4138), - [anon_sym_try] = ACTIONS(4138), - [anon_sym_delete] = ACTIONS(4138), - [anon_sym_throw] = ACTIONS(4138), - [anon_sym_namespace] = ACTIONS(4138), - [anon_sym_static_assert] = ACTIONS(4138), - [anon_sym_concept] = ACTIONS(4138), - [anon_sym_co_return] = ACTIONS(4138), - [anon_sym_co_yield] = ACTIONS(4138), - [anon_sym_R_DQUOTE] = ACTIONS(4141), - [anon_sym_LR_DQUOTE] = ACTIONS(4141), - [anon_sym_uR_DQUOTE] = ACTIONS(4141), - [anon_sym_UR_DQUOTE] = ACTIONS(4141), - [anon_sym_u8R_DQUOTE] = ACTIONS(4141), - [anon_sym_co_await] = ACTIONS(4138), - [anon_sym_new] = ACTIONS(4138), - [anon_sym_requires] = ACTIONS(4138), - [anon_sym_CARET_CARET] = ACTIONS(4141), - [anon_sym_LBRACK_COLON] = ACTIONS(4141), - [sym_this] = ACTIONS(4138), - }, - [STATE(654)] = { - [ts_builtin_sym_end] = ACTIONS(4448), - [sym_identifier] = ACTIONS(4450), - [aux_sym_preproc_include_token1] = ACTIONS(4450), - [aux_sym_preproc_def_token1] = ACTIONS(4450), - [aux_sym_preproc_if_token1] = ACTIONS(4450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4450), - [sym_preproc_directive] = ACTIONS(4450), - [anon_sym_LPAREN2] = ACTIONS(4448), - [anon_sym_BANG] = ACTIONS(4448), - [anon_sym_TILDE] = ACTIONS(4448), - [anon_sym_DASH] = ACTIONS(4450), - [anon_sym_PLUS] = ACTIONS(4450), - [anon_sym_STAR] = ACTIONS(4448), - [anon_sym_AMP_AMP] = ACTIONS(4448), - [anon_sym_AMP] = ACTIONS(4450), - [anon_sym_SEMI] = ACTIONS(4448), - [anon_sym___extension__] = ACTIONS(4450), - [anon_sym_typedef] = ACTIONS(4450), - [anon_sym_virtual] = ACTIONS(4450), - [anon_sym_extern] = ACTIONS(4450), - [anon_sym___attribute__] = ACTIONS(4450), - [anon_sym___attribute] = ACTIONS(4450), - [anon_sym_using] = ACTIONS(4450), - [anon_sym_COLON_COLON] = ACTIONS(4448), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4448), - [anon_sym___declspec] = ACTIONS(4450), - [anon_sym___based] = ACTIONS(4450), - [anon_sym___cdecl] = ACTIONS(4450), - [anon_sym___clrcall] = ACTIONS(4450), - [anon_sym___stdcall] = ACTIONS(4450), - [anon_sym___fastcall] = ACTIONS(4450), - [anon_sym___thiscall] = ACTIONS(4450), - [anon_sym___vectorcall] = ACTIONS(4450), - [anon_sym_LBRACE] = ACTIONS(4448), - [anon_sym_signed] = ACTIONS(4450), - [anon_sym_unsigned] = ACTIONS(4450), - [anon_sym_long] = ACTIONS(4450), - [anon_sym_short] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4450), - [anon_sym_static] = ACTIONS(4450), - [anon_sym_register] = ACTIONS(4450), - [anon_sym_inline] = ACTIONS(4450), - [anon_sym___inline] = ACTIONS(4450), - [anon_sym___inline__] = ACTIONS(4450), - [anon_sym___forceinline] = ACTIONS(4450), - [anon_sym_thread_local] = ACTIONS(4450), - [anon_sym___thread] = ACTIONS(4450), - [anon_sym_const] = ACTIONS(4450), - [anon_sym_constexpr] = ACTIONS(4450), - [anon_sym_volatile] = ACTIONS(4450), - [anon_sym_restrict] = ACTIONS(4450), - [anon_sym___restrict__] = ACTIONS(4450), - [anon_sym__Atomic] = ACTIONS(4450), - [anon_sym__Noreturn] = ACTIONS(4450), - [anon_sym_noreturn] = ACTIONS(4450), - [anon_sym__Nonnull] = ACTIONS(4450), - [anon_sym_mutable] = ACTIONS(4450), - [anon_sym_constinit] = ACTIONS(4450), - [anon_sym_consteval] = ACTIONS(4450), - [anon_sym_alignas] = ACTIONS(4450), - [anon_sym__Alignas] = ACTIONS(4450), - [sym_primitive_type] = ACTIONS(4450), - [anon_sym_enum] = ACTIONS(4450), - [anon_sym_class] = ACTIONS(4450), - [anon_sym_struct] = ACTIONS(4450), - [anon_sym_union] = ACTIONS(4450), - [anon_sym_if] = ACTIONS(4450), - [anon_sym_switch] = ACTIONS(4450), - [anon_sym_case] = ACTIONS(4450), - [anon_sym_default] = ACTIONS(4450), - [anon_sym_while] = ACTIONS(4450), - [anon_sym_do] = ACTIONS(4450), - [anon_sym_for] = ACTIONS(4450), - [anon_sym_return] = ACTIONS(4450), - [anon_sym_break] = ACTIONS(4450), - [anon_sym_continue] = ACTIONS(4450), - [anon_sym_goto] = ACTIONS(4450), - [anon_sym_not] = ACTIONS(4450), - [anon_sym_compl] = ACTIONS(4450), - [anon_sym_DASH_DASH] = ACTIONS(4448), - [anon_sym_PLUS_PLUS] = ACTIONS(4448), - [anon_sym_sizeof] = ACTIONS(4450), - [anon_sym___alignof__] = ACTIONS(4450), - [anon_sym___alignof] = ACTIONS(4450), - [anon_sym__alignof] = ACTIONS(4450), - [anon_sym_alignof] = ACTIONS(4450), - [anon_sym__Alignof] = ACTIONS(4450), - [anon_sym_offsetof] = ACTIONS(4450), - [anon_sym__Generic] = ACTIONS(4450), - [anon_sym_typename] = ACTIONS(4450), - [anon_sym_asm] = ACTIONS(4450), - [anon_sym___asm__] = ACTIONS(4450), - [anon_sym___asm] = ACTIONS(4450), - [sym_number_literal] = ACTIONS(4448), - [anon_sym_L_SQUOTE] = ACTIONS(4448), - [anon_sym_u_SQUOTE] = ACTIONS(4448), - [anon_sym_U_SQUOTE] = ACTIONS(4448), - [anon_sym_u8_SQUOTE] = ACTIONS(4448), - [anon_sym_SQUOTE] = ACTIONS(4448), - [anon_sym_L_DQUOTE] = ACTIONS(4448), - [anon_sym_u_DQUOTE] = ACTIONS(4448), - [anon_sym_U_DQUOTE] = ACTIONS(4448), - [anon_sym_u8_DQUOTE] = ACTIONS(4448), - [anon_sym_DQUOTE] = ACTIONS(4448), - [sym_true] = ACTIONS(4450), - [sym_false] = ACTIONS(4450), - [anon_sym_NULL] = ACTIONS(4450), - [anon_sym_nullptr] = ACTIONS(4450), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4450), - [anon_sym_decltype] = ACTIONS(4450), - [anon_sym_explicit] = ACTIONS(4450), - [anon_sym_export] = ACTIONS(4450), - [anon_sym_module] = ACTIONS(4450), - [anon_sym_import] = ACTIONS(4450), - [anon_sym_template] = ACTIONS(4450), - [anon_sym_operator] = ACTIONS(4450), - [anon_sym_try] = ACTIONS(4450), - [anon_sym_delete] = ACTIONS(4450), - [anon_sym_throw] = ACTIONS(4450), - [anon_sym_namespace] = ACTIONS(4450), - [anon_sym_static_assert] = ACTIONS(4450), - [anon_sym_concept] = ACTIONS(4450), - [anon_sym_co_return] = ACTIONS(4450), - [anon_sym_co_yield] = ACTIONS(4450), - [anon_sym_R_DQUOTE] = ACTIONS(4448), - [anon_sym_LR_DQUOTE] = ACTIONS(4448), - [anon_sym_uR_DQUOTE] = ACTIONS(4448), - [anon_sym_UR_DQUOTE] = ACTIONS(4448), - [anon_sym_u8R_DQUOTE] = ACTIONS(4448), - [anon_sym_co_await] = ACTIONS(4450), - [anon_sym_new] = ACTIONS(4450), - [anon_sym_requires] = ACTIONS(4450), - [anon_sym_CARET_CARET] = ACTIONS(4448), - [anon_sym_LBRACK_COLON] = ACTIONS(4448), - [sym_this] = ACTIONS(4450), - }, - [STATE(655)] = { - [sym_identifier] = ACTIONS(2905), - [aux_sym_preproc_include_token1] = ACTIONS(2905), - [aux_sym_preproc_def_token1] = ACTIONS(2905), - [aux_sym_preproc_if_token1] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2905), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2905), - [sym_preproc_directive] = ACTIONS(2905), - [anon_sym_LPAREN2] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2910), - [anon_sym_AMP_AMP] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2910), - [anon_sym___extension__] = ACTIONS(2905), - [anon_sym_typedef] = ACTIONS(2905), - [anon_sym_virtual] = ACTIONS(2905), - [anon_sym_extern] = ACTIONS(2905), - [anon_sym___attribute__] = ACTIONS(2905), - [anon_sym___attribute] = ACTIONS(2905), - [anon_sym_using] = ACTIONS(2905), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2910), - [anon_sym___declspec] = ACTIONS(2905), - [anon_sym___based] = ACTIONS(2905), - [anon_sym___cdecl] = ACTIONS(2905), - [anon_sym___clrcall] = ACTIONS(2905), - [anon_sym___stdcall] = ACTIONS(2905), - [anon_sym___fastcall] = ACTIONS(2905), - [anon_sym___thiscall] = ACTIONS(2905), - [anon_sym___vectorcall] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2910), - [anon_sym_RBRACE] = ACTIONS(2910), - [anon_sym_signed] = ACTIONS(2905), - [anon_sym_unsigned] = ACTIONS(2905), - [anon_sym_long] = ACTIONS(2905), - [anon_sym_short] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_register] = ACTIONS(2905), - [anon_sym_inline] = ACTIONS(2905), - [anon_sym___inline] = ACTIONS(2905), - [anon_sym___inline__] = ACTIONS(2905), - [anon_sym___forceinline] = ACTIONS(2905), - [anon_sym_thread_local] = ACTIONS(2905), - [anon_sym___thread] = ACTIONS(2905), - [anon_sym_const] = ACTIONS(2905), - [anon_sym_constexpr] = ACTIONS(2905), - [anon_sym_volatile] = ACTIONS(2905), - [anon_sym_restrict] = ACTIONS(2905), - [anon_sym___restrict__] = ACTIONS(2905), - [anon_sym__Atomic] = ACTIONS(2905), - [anon_sym__Noreturn] = ACTIONS(2905), - [anon_sym_noreturn] = ACTIONS(2905), - [anon_sym__Nonnull] = ACTIONS(2905), - [anon_sym_mutable] = ACTIONS(2905), - [anon_sym_constinit] = ACTIONS(2905), - [anon_sym_consteval] = ACTIONS(2905), - [anon_sym_alignas] = ACTIONS(2905), - [anon_sym__Alignas] = ACTIONS(2905), - [sym_primitive_type] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2905), - [anon_sym_class] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2905), - [anon_sym_union] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2905), - [anon_sym_else] = ACTIONS(2905), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2905), - [anon_sym_default] = ACTIONS(2905), - [anon_sym_while] = ACTIONS(2905), - [anon_sym_do] = ACTIONS(2905), - [anon_sym_for] = ACTIONS(2905), - [anon_sym_return] = ACTIONS(2905), - [anon_sym_break] = ACTIONS(2905), - [anon_sym_continue] = ACTIONS(2905), - [anon_sym_goto] = ACTIONS(2905), - [anon_sym___try] = ACTIONS(2905), - [anon_sym___leave] = ACTIONS(2905), - [anon_sym_not] = ACTIONS(2905), - [anon_sym_compl] = ACTIONS(2905), - [anon_sym_DASH_DASH] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2910), - [anon_sym_sizeof] = ACTIONS(2905), - [anon_sym___alignof__] = ACTIONS(2905), - [anon_sym___alignof] = ACTIONS(2905), - [anon_sym__alignof] = ACTIONS(2905), - [anon_sym_alignof] = ACTIONS(2905), - [anon_sym__Alignof] = ACTIONS(2905), - [anon_sym_offsetof] = ACTIONS(2905), - [anon_sym__Generic] = ACTIONS(2905), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_asm] = ACTIONS(2905), - [anon_sym___asm__] = ACTIONS(2905), - [anon_sym___asm] = ACTIONS(2905), - [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(2905), - [sym_false] = ACTIONS(2905), - [anon_sym_NULL] = ACTIONS(2905), - [anon_sym_nullptr] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2905), - [anon_sym_decltype] = ACTIONS(2905), - [anon_sym_explicit] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(2905), - [anon_sym_operator] = ACTIONS(2905), - [anon_sym_try] = ACTIONS(2905), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_throw] = ACTIONS(2905), - [anon_sym_namespace] = ACTIONS(2905), - [anon_sym_static_assert] = ACTIONS(2905), - [anon_sym_concept] = ACTIONS(2905), - [anon_sym_co_return] = ACTIONS(2905), - [anon_sym_co_yield] = ACTIONS(2905), - [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(2905), - [anon_sym_new] = ACTIONS(2905), - [anon_sym_requires] = ACTIONS(2905), - [anon_sym_CARET_CARET] = ACTIONS(2910), - [anon_sym_LBRACK_COLON] = ACTIONS(2910), - [sym_this] = ACTIONS(2905), - }, - [STATE(656)] = { - [sym_identifier] = ACTIONS(3640), - [aux_sym_preproc_include_token1] = ACTIONS(3640), - [aux_sym_preproc_def_token1] = ACTIONS(3640), - [aux_sym_preproc_if_token1] = ACTIONS(3640), - [aux_sym_preproc_if_token2] = ACTIONS(3640), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3640), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3640), - [sym_preproc_directive] = ACTIONS(3640), - [anon_sym_LPAREN2] = ACTIONS(3642), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(3642), - [anon_sym_AMP_AMP] = ACTIONS(3642), - [anon_sym_AMP] = ACTIONS(3640), - [anon_sym_SEMI] = ACTIONS(3642), - [anon_sym___extension__] = ACTIONS(3640), - [anon_sym_typedef] = ACTIONS(3640), - [anon_sym_virtual] = ACTIONS(3640), - [anon_sym_extern] = ACTIONS(3640), - [anon_sym___attribute__] = ACTIONS(3640), - [anon_sym___attribute] = ACTIONS(3640), - [anon_sym_using] = ACTIONS(3640), - [anon_sym_COLON_COLON] = ACTIONS(3642), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), - [anon_sym___declspec] = ACTIONS(3640), - [anon_sym___based] = ACTIONS(3640), - [anon_sym___cdecl] = ACTIONS(3640), - [anon_sym___clrcall] = ACTIONS(3640), - [anon_sym___stdcall] = ACTIONS(3640), - [anon_sym___fastcall] = ACTIONS(3640), - [anon_sym___thiscall] = ACTIONS(3640), - [anon_sym___vectorcall] = ACTIONS(3640), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_signed] = ACTIONS(3640), - [anon_sym_unsigned] = ACTIONS(3640), - [anon_sym_long] = ACTIONS(3640), - [anon_sym_short] = ACTIONS(3640), - [anon_sym_LBRACK] = ACTIONS(3640), - [anon_sym_static] = ACTIONS(3640), - [anon_sym_register] = ACTIONS(3640), - [anon_sym_inline] = ACTIONS(3640), - [anon_sym___inline] = ACTIONS(3640), - [anon_sym___inline__] = ACTIONS(3640), - [anon_sym___forceinline] = ACTIONS(3640), - [anon_sym_thread_local] = ACTIONS(3640), - [anon_sym___thread] = ACTIONS(3640), - [anon_sym_const] = ACTIONS(3640), - [anon_sym_constexpr] = ACTIONS(3640), - [anon_sym_volatile] = ACTIONS(3640), - [anon_sym_restrict] = ACTIONS(3640), - [anon_sym___restrict__] = ACTIONS(3640), - [anon_sym__Atomic] = ACTIONS(3640), - [anon_sym__Noreturn] = ACTIONS(3640), - [anon_sym_noreturn] = ACTIONS(3640), - [anon_sym__Nonnull] = ACTIONS(3640), - [anon_sym_mutable] = ACTIONS(3640), - [anon_sym_constinit] = ACTIONS(3640), - [anon_sym_consteval] = ACTIONS(3640), - [anon_sym_alignas] = ACTIONS(3640), - [anon_sym__Alignas] = ACTIONS(3640), - [sym_primitive_type] = ACTIONS(3640), - [anon_sym_enum] = ACTIONS(3640), - [anon_sym_class] = ACTIONS(3640), - [anon_sym_struct] = ACTIONS(3640), - [anon_sym_union] = ACTIONS(3640), - [anon_sym_if] = ACTIONS(3640), - [anon_sym_else] = ACTIONS(3640), - [anon_sym_switch] = ACTIONS(3640), - [anon_sym_case] = ACTIONS(3640), - [anon_sym_default] = ACTIONS(3640), - [anon_sym_while] = ACTIONS(3640), - [anon_sym_do] = ACTIONS(3640), - [anon_sym_for] = ACTIONS(3640), - [anon_sym_return] = ACTIONS(3640), - [anon_sym_break] = ACTIONS(3640), - [anon_sym_continue] = ACTIONS(3640), - [anon_sym_goto] = ACTIONS(3640), - [anon_sym___try] = ACTIONS(3640), - [anon_sym___leave] = ACTIONS(3640), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(3642), - [anon_sym_PLUS_PLUS] = ACTIONS(3642), - [anon_sym_sizeof] = ACTIONS(3640), - [anon_sym___alignof__] = ACTIONS(3640), - [anon_sym___alignof] = ACTIONS(3640), - [anon_sym__alignof] = ACTIONS(3640), - [anon_sym_alignof] = ACTIONS(3640), - [anon_sym__Alignof] = ACTIONS(3640), - [anon_sym_offsetof] = ACTIONS(3640), - [anon_sym__Generic] = ACTIONS(3640), - [anon_sym_typename] = ACTIONS(3640), - [anon_sym_asm] = ACTIONS(3640), - [anon_sym___asm__] = ACTIONS(3640), - [anon_sym___asm] = ACTIONS(3640), - [sym_number_literal] = ACTIONS(3642), - [anon_sym_L_SQUOTE] = ACTIONS(3642), - [anon_sym_u_SQUOTE] = ACTIONS(3642), - [anon_sym_U_SQUOTE] = ACTIONS(3642), - [anon_sym_u8_SQUOTE] = ACTIONS(3642), - [anon_sym_SQUOTE] = ACTIONS(3642), - [anon_sym_L_DQUOTE] = ACTIONS(3642), - [anon_sym_u_DQUOTE] = ACTIONS(3642), - [anon_sym_U_DQUOTE] = ACTIONS(3642), - [anon_sym_u8_DQUOTE] = ACTIONS(3642), - [anon_sym_DQUOTE] = ACTIONS(3642), - [sym_true] = ACTIONS(3640), - [sym_false] = ACTIONS(3640), - [anon_sym_NULL] = ACTIONS(3640), - [anon_sym_nullptr] = ACTIONS(3640), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3640), - [anon_sym_decltype] = ACTIONS(3640), - [anon_sym_explicit] = ACTIONS(3640), - [anon_sym_template] = ACTIONS(3640), - [anon_sym_operator] = ACTIONS(3640), - [anon_sym_try] = ACTIONS(3640), - [anon_sym_delete] = ACTIONS(3640), - [anon_sym_throw] = ACTIONS(3640), - [anon_sym_namespace] = ACTIONS(3640), - [anon_sym_static_assert] = ACTIONS(3640), - [anon_sym_concept] = ACTIONS(3640), - [anon_sym_co_return] = ACTIONS(3640), - [anon_sym_co_yield] = ACTIONS(3640), - [anon_sym_R_DQUOTE] = ACTIONS(3642), - [anon_sym_LR_DQUOTE] = ACTIONS(3642), - [anon_sym_uR_DQUOTE] = ACTIONS(3642), - [anon_sym_UR_DQUOTE] = ACTIONS(3642), - [anon_sym_u8R_DQUOTE] = ACTIONS(3642), - [anon_sym_co_await] = ACTIONS(3640), - [anon_sym_new] = ACTIONS(3640), - [anon_sym_requires] = ACTIONS(3640), - [anon_sym_CARET_CARET] = ACTIONS(3642), - [anon_sym_LBRACK_COLON] = ACTIONS(3642), - [sym_this] = ACTIONS(3640), - }, - [STATE(657)] = { - [sym_identifier] = ACTIONS(3644), - [aux_sym_preproc_include_token1] = ACTIONS(3644), - [aux_sym_preproc_def_token1] = ACTIONS(3644), - [aux_sym_preproc_if_token1] = ACTIONS(3644), - [aux_sym_preproc_if_token2] = ACTIONS(3644), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3644), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3644), - [sym_preproc_directive] = ACTIONS(3644), - [anon_sym_LPAREN2] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3646), - [anon_sym_TILDE] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3646), - [anon_sym_AMP_AMP] = ACTIONS(3646), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_SEMI] = ACTIONS(3646), - [anon_sym___extension__] = ACTIONS(3644), - [anon_sym_typedef] = ACTIONS(3644), - [anon_sym_virtual] = ACTIONS(3644), - [anon_sym_extern] = ACTIONS(3644), - [anon_sym___attribute__] = ACTIONS(3644), - [anon_sym___attribute] = ACTIONS(3644), - [anon_sym_using] = ACTIONS(3644), - [anon_sym_COLON_COLON] = ACTIONS(3646), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), - [anon_sym___declspec] = ACTIONS(3644), - [anon_sym___based] = ACTIONS(3644), - [anon_sym___cdecl] = ACTIONS(3644), - [anon_sym___clrcall] = ACTIONS(3644), - [anon_sym___stdcall] = ACTIONS(3644), - [anon_sym___fastcall] = ACTIONS(3644), - [anon_sym___thiscall] = ACTIONS(3644), - [anon_sym___vectorcall] = ACTIONS(3644), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_signed] = ACTIONS(3644), - [anon_sym_unsigned] = ACTIONS(3644), - [anon_sym_long] = ACTIONS(3644), - [anon_sym_short] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(3644), - [anon_sym_static] = ACTIONS(3644), - [anon_sym_register] = ACTIONS(3644), - [anon_sym_inline] = ACTIONS(3644), - [anon_sym___inline] = ACTIONS(3644), - [anon_sym___inline__] = ACTIONS(3644), - [anon_sym___forceinline] = ACTIONS(3644), - [anon_sym_thread_local] = ACTIONS(3644), - [anon_sym___thread] = ACTIONS(3644), - [anon_sym_const] = ACTIONS(3644), - [anon_sym_constexpr] = ACTIONS(3644), - [anon_sym_volatile] = ACTIONS(3644), - [anon_sym_restrict] = ACTIONS(3644), - [anon_sym___restrict__] = ACTIONS(3644), - [anon_sym__Atomic] = ACTIONS(3644), - [anon_sym__Noreturn] = ACTIONS(3644), - [anon_sym_noreturn] = ACTIONS(3644), - [anon_sym__Nonnull] = ACTIONS(3644), - [anon_sym_mutable] = ACTIONS(3644), - [anon_sym_constinit] = ACTIONS(3644), - [anon_sym_consteval] = ACTIONS(3644), - [anon_sym_alignas] = ACTIONS(3644), - [anon_sym__Alignas] = ACTIONS(3644), - [sym_primitive_type] = ACTIONS(3644), - [anon_sym_enum] = ACTIONS(3644), - [anon_sym_class] = ACTIONS(3644), - [anon_sym_struct] = ACTIONS(3644), - [anon_sym_union] = ACTIONS(3644), - [anon_sym_if] = ACTIONS(3644), - [anon_sym_else] = ACTIONS(3644), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_case] = ACTIONS(3644), - [anon_sym_default] = ACTIONS(3644), - [anon_sym_while] = ACTIONS(3644), - [anon_sym_do] = ACTIONS(3644), - [anon_sym_for] = ACTIONS(3644), - [anon_sym_return] = ACTIONS(3644), - [anon_sym_break] = ACTIONS(3644), - [anon_sym_continue] = ACTIONS(3644), - [anon_sym_goto] = ACTIONS(3644), - [anon_sym___try] = ACTIONS(3644), - [anon_sym___leave] = ACTIONS(3644), - [anon_sym_not] = ACTIONS(3644), - [anon_sym_compl] = ACTIONS(3644), - [anon_sym_DASH_DASH] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3646), - [anon_sym_sizeof] = ACTIONS(3644), - [anon_sym___alignof__] = ACTIONS(3644), - [anon_sym___alignof] = ACTIONS(3644), - [anon_sym__alignof] = ACTIONS(3644), - [anon_sym_alignof] = ACTIONS(3644), - [anon_sym__Alignof] = ACTIONS(3644), - [anon_sym_offsetof] = ACTIONS(3644), - [anon_sym__Generic] = ACTIONS(3644), - [anon_sym_typename] = ACTIONS(3644), - [anon_sym_asm] = ACTIONS(3644), - [anon_sym___asm__] = ACTIONS(3644), - [anon_sym___asm] = ACTIONS(3644), - [sym_number_literal] = ACTIONS(3646), - [anon_sym_L_SQUOTE] = ACTIONS(3646), - [anon_sym_u_SQUOTE] = ACTIONS(3646), - [anon_sym_U_SQUOTE] = ACTIONS(3646), - [anon_sym_u8_SQUOTE] = ACTIONS(3646), - [anon_sym_SQUOTE] = ACTIONS(3646), - [anon_sym_L_DQUOTE] = ACTIONS(3646), - [anon_sym_u_DQUOTE] = ACTIONS(3646), - [anon_sym_U_DQUOTE] = ACTIONS(3646), - [anon_sym_u8_DQUOTE] = ACTIONS(3646), - [anon_sym_DQUOTE] = ACTIONS(3646), - [sym_true] = ACTIONS(3644), - [sym_false] = ACTIONS(3644), - [anon_sym_NULL] = ACTIONS(3644), - [anon_sym_nullptr] = ACTIONS(3644), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3644), - [anon_sym_decltype] = ACTIONS(3644), - [anon_sym_explicit] = ACTIONS(3644), - [anon_sym_template] = ACTIONS(3644), - [anon_sym_operator] = ACTIONS(3644), - [anon_sym_try] = ACTIONS(3644), - [anon_sym_delete] = ACTIONS(3644), - [anon_sym_throw] = ACTIONS(3644), - [anon_sym_namespace] = ACTIONS(3644), - [anon_sym_static_assert] = ACTIONS(3644), - [anon_sym_concept] = ACTIONS(3644), - [anon_sym_co_return] = ACTIONS(3644), - [anon_sym_co_yield] = ACTIONS(3644), - [anon_sym_R_DQUOTE] = ACTIONS(3646), - [anon_sym_LR_DQUOTE] = ACTIONS(3646), - [anon_sym_uR_DQUOTE] = ACTIONS(3646), - [anon_sym_UR_DQUOTE] = ACTIONS(3646), - [anon_sym_u8R_DQUOTE] = ACTIONS(3646), - [anon_sym_co_await] = ACTIONS(3644), - [anon_sym_new] = ACTIONS(3644), - [anon_sym_requires] = ACTIONS(3644), - [anon_sym_CARET_CARET] = ACTIONS(3646), - [anon_sym_LBRACK_COLON] = ACTIONS(3646), - [sym_this] = ACTIONS(3644), - }, - [STATE(658)] = { - [sym_identifier] = ACTIONS(3640), - [aux_sym_preproc_include_token1] = ACTIONS(3640), - [aux_sym_preproc_def_token1] = ACTIONS(3640), - [aux_sym_preproc_if_token1] = ACTIONS(3640), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3640), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3640), - [sym_preproc_directive] = ACTIONS(3640), - [anon_sym_LPAREN2] = ACTIONS(3642), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(3642), - [anon_sym_AMP_AMP] = ACTIONS(3642), - [anon_sym_AMP] = ACTIONS(3640), - [anon_sym_SEMI] = ACTIONS(3642), - [anon_sym___extension__] = ACTIONS(3640), - [anon_sym_typedef] = ACTIONS(3640), - [anon_sym_virtual] = ACTIONS(3640), - [anon_sym_extern] = ACTIONS(3640), - [anon_sym___attribute__] = ACTIONS(3640), - [anon_sym___attribute] = ACTIONS(3640), - [anon_sym_using] = ACTIONS(3640), - [anon_sym_COLON_COLON] = ACTIONS(3642), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), - [anon_sym___declspec] = ACTIONS(3640), - [anon_sym___based] = ACTIONS(3640), - [anon_sym___cdecl] = ACTIONS(3640), - [anon_sym___clrcall] = ACTIONS(3640), - [anon_sym___stdcall] = ACTIONS(3640), - [anon_sym___fastcall] = ACTIONS(3640), - [anon_sym___thiscall] = ACTIONS(3640), - [anon_sym___vectorcall] = ACTIONS(3640), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_RBRACE] = ACTIONS(3642), - [anon_sym_signed] = ACTIONS(3640), - [anon_sym_unsigned] = ACTIONS(3640), - [anon_sym_long] = ACTIONS(3640), - [anon_sym_short] = ACTIONS(3640), - [anon_sym_LBRACK] = ACTIONS(3640), - [anon_sym_static] = ACTIONS(3640), - [anon_sym_register] = ACTIONS(3640), - [anon_sym_inline] = ACTIONS(3640), - [anon_sym___inline] = ACTIONS(3640), - [anon_sym___inline__] = ACTIONS(3640), - [anon_sym___forceinline] = ACTIONS(3640), - [anon_sym_thread_local] = ACTIONS(3640), - [anon_sym___thread] = ACTIONS(3640), - [anon_sym_const] = ACTIONS(3640), - [anon_sym_constexpr] = ACTIONS(3640), - [anon_sym_volatile] = ACTIONS(3640), - [anon_sym_restrict] = ACTIONS(3640), - [anon_sym___restrict__] = ACTIONS(3640), - [anon_sym__Atomic] = ACTIONS(3640), - [anon_sym__Noreturn] = ACTIONS(3640), - [anon_sym_noreturn] = ACTIONS(3640), - [anon_sym__Nonnull] = ACTIONS(3640), - [anon_sym_mutable] = ACTIONS(3640), - [anon_sym_constinit] = ACTIONS(3640), - [anon_sym_consteval] = ACTIONS(3640), - [anon_sym_alignas] = ACTIONS(3640), - [anon_sym__Alignas] = ACTIONS(3640), - [sym_primitive_type] = ACTIONS(3640), - [anon_sym_enum] = ACTIONS(3640), - [anon_sym_class] = ACTIONS(3640), - [anon_sym_struct] = ACTIONS(3640), - [anon_sym_union] = ACTIONS(3640), - [anon_sym_if] = ACTIONS(3640), - [anon_sym_else] = ACTIONS(3640), - [anon_sym_switch] = ACTIONS(3640), - [anon_sym_case] = ACTIONS(3640), - [anon_sym_default] = ACTIONS(3640), - [anon_sym_while] = ACTIONS(3640), - [anon_sym_do] = ACTIONS(3640), - [anon_sym_for] = ACTIONS(3640), - [anon_sym_return] = ACTIONS(3640), - [anon_sym_break] = ACTIONS(3640), - [anon_sym_continue] = ACTIONS(3640), - [anon_sym_goto] = ACTIONS(3640), - [anon_sym___try] = ACTIONS(3640), - [anon_sym___leave] = ACTIONS(3640), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(3642), - [anon_sym_PLUS_PLUS] = ACTIONS(3642), - [anon_sym_sizeof] = ACTIONS(3640), - [anon_sym___alignof__] = ACTIONS(3640), - [anon_sym___alignof] = ACTIONS(3640), - [anon_sym__alignof] = ACTIONS(3640), - [anon_sym_alignof] = ACTIONS(3640), - [anon_sym__Alignof] = ACTIONS(3640), - [anon_sym_offsetof] = ACTIONS(3640), - [anon_sym__Generic] = ACTIONS(3640), - [anon_sym_typename] = ACTIONS(3640), - [anon_sym_asm] = ACTIONS(3640), - [anon_sym___asm__] = ACTIONS(3640), - [anon_sym___asm] = ACTIONS(3640), - [sym_number_literal] = ACTIONS(3642), - [anon_sym_L_SQUOTE] = ACTIONS(3642), - [anon_sym_u_SQUOTE] = ACTIONS(3642), - [anon_sym_U_SQUOTE] = ACTIONS(3642), - [anon_sym_u8_SQUOTE] = ACTIONS(3642), - [anon_sym_SQUOTE] = ACTIONS(3642), - [anon_sym_L_DQUOTE] = ACTIONS(3642), - [anon_sym_u_DQUOTE] = ACTIONS(3642), - [anon_sym_U_DQUOTE] = ACTIONS(3642), - [anon_sym_u8_DQUOTE] = ACTIONS(3642), - [anon_sym_DQUOTE] = ACTIONS(3642), - [sym_true] = ACTIONS(3640), - [sym_false] = ACTIONS(3640), - [anon_sym_NULL] = ACTIONS(3640), - [anon_sym_nullptr] = ACTIONS(3640), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3640), - [anon_sym_decltype] = ACTIONS(3640), - [anon_sym_explicit] = ACTIONS(3640), - [anon_sym_template] = ACTIONS(3640), - [anon_sym_operator] = ACTIONS(3640), - [anon_sym_try] = ACTIONS(3640), - [anon_sym_delete] = ACTIONS(3640), - [anon_sym_throw] = ACTIONS(3640), - [anon_sym_namespace] = ACTIONS(3640), - [anon_sym_static_assert] = ACTIONS(3640), - [anon_sym_concept] = ACTIONS(3640), - [anon_sym_co_return] = ACTIONS(3640), - [anon_sym_co_yield] = ACTIONS(3640), - [anon_sym_R_DQUOTE] = ACTIONS(3642), - [anon_sym_LR_DQUOTE] = ACTIONS(3642), - [anon_sym_uR_DQUOTE] = ACTIONS(3642), - [anon_sym_UR_DQUOTE] = ACTIONS(3642), - [anon_sym_u8R_DQUOTE] = ACTIONS(3642), - [anon_sym_co_await] = ACTIONS(3640), - [anon_sym_new] = ACTIONS(3640), - [anon_sym_requires] = ACTIONS(3640), - [anon_sym_CARET_CARET] = ACTIONS(3642), - [anon_sym_LBRACK_COLON] = ACTIONS(3642), - [sym_this] = ACTIONS(3640), - }, - [STATE(659)] = { - [sym_identifier] = ACTIONS(3644), - [aux_sym_preproc_include_token1] = ACTIONS(3644), - [aux_sym_preproc_def_token1] = ACTIONS(3644), - [aux_sym_preproc_if_token1] = ACTIONS(3644), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3644), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3644), - [sym_preproc_directive] = ACTIONS(3644), - [anon_sym_LPAREN2] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3646), - [anon_sym_TILDE] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3646), - [anon_sym_AMP_AMP] = ACTIONS(3646), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_SEMI] = ACTIONS(3646), - [anon_sym___extension__] = ACTIONS(3644), - [anon_sym_typedef] = ACTIONS(3644), - [anon_sym_virtual] = ACTIONS(3644), - [anon_sym_extern] = ACTIONS(3644), - [anon_sym___attribute__] = ACTIONS(3644), - [anon_sym___attribute] = ACTIONS(3644), - [anon_sym_using] = ACTIONS(3644), - [anon_sym_COLON_COLON] = ACTIONS(3646), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), - [anon_sym___declspec] = ACTIONS(3644), - [anon_sym___based] = ACTIONS(3644), - [anon_sym___cdecl] = ACTIONS(3644), - [anon_sym___clrcall] = ACTIONS(3644), - [anon_sym___stdcall] = ACTIONS(3644), - [anon_sym___fastcall] = ACTIONS(3644), - [anon_sym___thiscall] = ACTIONS(3644), - [anon_sym___vectorcall] = ACTIONS(3644), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(3646), - [anon_sym_signed] = ACTIONS(3644), - [anon_sym_unsigned] = ACTIONS(3644), - [anon_sym_long] = ACTIONS(3644), - [anon_sym_short] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(3644), - [anon_sym_static] = ACTIONS(3644), - [anon_sym_register] = ACTIONS(3644), - [anon_sym_inline] = ACTIONS(3644), - [anon_sym___inline] = ACTIONS(3644), - [anon_sym___inline__] = ACTIONS(3644), - [anon_sym___forceinline] = ACTIONS(3644), - [anon_sym_thread_local] = ACTIONS(3644), - [anon_sym___thread] = ACTIONS(3644), - [anon_sym_const] = ACTIONS(3644), - [anon_sym_constexpr] = ACTIONS(3644), - [anon_sym_volatile] = ACTIONS(3644), - [anon_sym_restrict] = ACTIONS(3644), - [anon_sym___restrict__] = ACTIONS(3644), - [anon_sym__Atomic] = ACTIONS(3644), - [anon_sym__Noreturn] = ACTIONS(3644), - [anon_sym_noreturn] = ACTIONS(3644), - [anon_sym__Nonnull] = ACTIONS(3644), - [anon_sym_mutable] = ACTIONS(3644), - [anon_sym_constinit] = ACTIONS(3644), - [anon_sym_consteval] = ACTIONS(3644), - [anon_sym_alignas] = ACTIONS(3644), - [anon_sym__Alignas] = ACTIONS(3644), - [sym_primitive_type] = ACTIONS(3644), - [anon_sym_enum] = ACTIONS(3644), - [anon_sym_class] = ACTIONS(3644), - [anon_sym_struct] = ACTIONS(3644), - [anon_sym_union] = ACTIONS(3644), - [anon_sym_if] = ACTIONS(3644), - [anon_sym_else] = ACTIONS(3644), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_case] = ACTIONS(3644), - [anon_sym_default] = ACTIONS(3644), - [anon_sym_while] = ACTIONS(3644), - [anon_sym_do] = ACTIONS(3644), - [anon_sym_for] = ACTIONS(3644), - [anon_sym_return] = ACTIONS(3644), - [anon_sym_break] = ACTIONS(3644), - [anon_sym_continue] = ACTIONS(3644), - [anon_sym_goto] = ACTIONS(3644), - [anon_sym___try] = ACTIONS(3644), - [anon_sym___leave] = ACTIONS(3644), - [anon_sym_not] = ACTIONS(3644), - [anon_sym_compl] = ACTIONS(3644), - [anon_sym_DASH_DASH] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3646), - [anon_sym_sizeof] = ACTIONS(3644), - [anon_sym___alignof__] = ACTIONS(3644), - [anon_sym___alignof] = ACTIONS(3644), - [anon_sym__alignof] = ACTIONS(3644), - [anon_sym_alignof] = ACTIONS(3644), - [anon_sym__Alignof] = ACTIONS(3644), - [anon_sym_offsetof] = ACTIONS(3644), - [anon_sym__Generic] = ACTIONS(3644), - [anon_sym_typename] = ACTIONS(3644), - [anon_sym_asm] = ACTIONS(3644), - [anon_sym___asm__] = ACTIONS(3644), - [anon_sym___asm] = ACTIONS(3644), - [sym_number_literal] = ACTIONS(3646), - [anon_sym_L_SQUOTE] = ACTIONS(3646), - [anon_sym_u_SQUOTE] = ACTIONS(3646), - [anon_sym_U_SQUOTE] = ACTIONS(3646), - [anon_sym_u8_SQUOTE] = ACTIONS(3646), - [anon_sym_SQUOTE] = ACTIONS(3646), - [anon_sym_L_DQUOTE] = ACTIONS(3646), - [anon_sym_u_DQUOTE] = ACTIONS(3646), - [anon_sym_U_DQUOTE] = ACTIONS(3646), - [anon_sym_u8_DQUOTE] = ACTIONS(3646), - [anon_sym_DQUOTE] = ACTIONS(3646), - [sym_true] = ACTIONS(3644), - [sym_false] = ACTIONS(3644), - [anon_sym_NULL] = ACTIONS(3644), - [anon_sym_nullptr] = ACTIONS(3644), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3644), - [anon_sym_decltype] = ACTIONS(3644), - [anon_sym_explicit] = ACTIONS(3644), - [anon_sym_template] = ACTIONS(3644), - [anon_sym_operator] = ACTIONS(3644), - [anon_sym_try] = ACTIONS(3644), - [anon_sym_delete] = ACTIONS(3644), - [anon_sym_throw] = ACTIONS(3644), - [anon_sym_namespace] = ACTIONS(3644), - [anon_sym_static_assert] = ACTIONS(3644), - [anon_sym_concept] = ACTIONS(3644), - [anon_sym_co_return] = ACTIONS(3644), - [anon_sym_co_yield] = ACTIONS(3644), - [anon_sym_R_DQUOTE] = ACTIONS(3646), - [anon_sym_LR_DQUOTE] = ACTIONS(3646), - [anon_sym_uR_DQUOTE] = ACTIONS(3646), - [anon_sym_UR_DQUOTE] = ACTIONS(3646), - [anon_sym_u8R_DQUOTE] = ACTIONS(3646), - [anon_sym_co_await] = ACTIONS(3644), - [anon_sym_new] = ACTIONS(3644), - [anon_sym_requires] = ACTIONS(3644), - [anon_sym_CARET_CARET] = ACTIONS(3646), - [anon_sym_LBRACK_COLON] = ACTIONS(3646), - [sym_this] = ACTIONS(3644), + [STATE(578)] = { + [ts_builtin_sym_end] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3520), + [aux_sym_preproc_include_token1] = ACTIONS(3520), + [aux_sym_preproc_def_token1] = ACTIONS(3520), + [aux_sym_preproc_if_token1] = ACTIONS(3520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3520), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3520), + [sym_preproc_directive] = ACTIONS(3520), + [anon_sym_LPAREN2] = ACTIONS(3522), + [anon_sym_BANG] = ACTIONS(3522), + [anon_sym_TILDE] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3520), + [anon_sym_PLUS] = ACTIONS(3520), + [anon_sym_STAR] = ACTIONS(3522), + [anon_sym_AMP_AMP] = ACTIONS(3522), + [anon_sym_AMP] = ACTIONS(3520), + [anon_sym_SEMI] = ACTIONS(3522), + [anon_sym___extension__] = ACTIONS(3520), + [anon_sym_typedef] = ACTIONS(3520), + [anon_sym_virtual] = ACTIONS(3520), + [anon_sym_extern] = ACTIONS(3520), + [anon_sym___attribute__] = ACTIONS(3520), + [anon_sym___attribute] = ACTIONS(3520), + [anon_sym_using] = ACTIONS(3520), + [anon_sym_COLON_COLON] = ACTIONS(3522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3522), + [anon_sym___declspec] = ACTIONS(3520), + [anon_sym___based] = ACTIONS(3520), + [anon_sym___cdecl] = ACTIONS(3520), + [anon_sym___clrcall] = ACTIONS(3520), + [anon_sym___stdcall] = ACTIONS(3520), + [anon_sym___fastcall] = ACTIONS(3520), + [anon_sym___thiscall] = ACTIONS(3520), + [anon_sym___vectorcall] = ACTIONS(3520), + [anon_sym_LBRACE] = ACTIONS(3522), + [anon_sym_signed] = ACTIONS(3520), + [anon_sym_unsigned] = ACTIONS(3520), + [anon_sym_long] = ACTIONS(3520), + [anon_sym_short] = ACTIONS(3520), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_static] = ACTIONS(3520), + [anon_sym_register] = ACTIONS(3520), + [anon_sym_inline] = ACTIONS(3520), + [anon_sym___inline] = ACTIONS(3520), + [anon_sym___inline__] = ACTIONS(3520), + [anon_sym___forceinline] = ACTIONS(3520), + [anon_sym_thread_local] = ACTIONS(3520), + [anon_sym___thread] = ACTIONS(3520), + [anon_sym_const] = ACTIONS(3520), + [anon_sym_constexpr] = ACTIONS(3520), + [anon_sym_volatile] = ACTIONS(3520), + [anon_sym_restrict] = ACTIONS(3520), + [anon_sym___restrict__] = ACTIONS(3520), + [anon_sym__Atomic] = ACTIONS(3520), + [anon_sym__Noreturn] = ACTIONS(3520), + [anon_sym_noreturn] = ACTIONS(3520), + [anon_sym__Nonnull] = ACTIONS(3520), + [anon_sym_mutable] = ACTIONS(3520), + [anon_sym_constinit] = ACTIONS(3520), + [anon_sym_consteval] = ACTIONS(3520), + [anon_sym_alignas] = ACTIONS(3520), + [anon_sym__Alignas] = ACTIONS(3520), + [sym_primitive_type] = ACTIONS(3520), + [anon_sym_enum] = ACTIONS(3520), + [anon_sym_class] = ACTIONS(3520), + [anon_sym_struct] = ACTIONS(3520), + [anon_sym_union] = ACTIONS(3520), + [anon_sym_if] = ACTIONS(3520), + [anon_sym_else] = ACTIONS(3520), + [anon_sym_switch] = ACTIONS(3520), + [anon_sym_case] = ACTIONS(3520), + [anon_sym_default] = ACTIONS(3520), + [anon_sym_while] = ACTIONS(3520), + [anon_sym_do] = ACTIONS(3520), + [anon_sym_for] = ACTIONS(3520), + [anon_sym_return] = ACTIONS(3520), + [anon_sym_break] = ACTIONS(3520), + [anon_sym_continue] = ACTIONS(3520), + [anon_sym_goto] = ACTIONS(3520), + [anon_sym___try] = ACTIONS(3520), + [anon_sym___leave] = ACTIONS(3520), + [anon_sym_not] = ACTIONS(3520), + [anon_sym_compl] = ACTIONS(3520), + [anon_sym_DASH_DASH] = ACTIONS(3522), + [anon_sym_PLUS_PLUS] = ACTIONS(3522), + [anon_sym_sizeof] = ACTIONS(3520), + [anon_sym___alignof__] = ACTIONS(3520), + [anon_sym___alignof] = ACTIONS(3520), + [anon_sym__alignof] = ACTIONS(3520), + [anon_sym_alignof] = ACTIONS(3520), + [anon_sym__Alignof] = ACTIONS(3520), + [anon_sym_offsetof] = ACTIONS(3520), + [anon_sym__Generic] = ACTIONS(3520), + [anon_sym_typename] = ACTIONS(3520), + [anon_sym_asm] = ACTIONS(3520), + [anon_sym___asm__] = ACTIONS(3520), + [anon_sym___asm] = ACTIONS(3520), + [sym_number_literal] = ACTIONS(3522), + [anon_sym_L_SQUOTE] = ACTIONS(3522), + [anon_sym_u_SQUOTE] = ACTIONS(3522), + [anon_sym_U_SQUOTE] = ACTIONS(3522), + [anon_sym_u8_SQUOTE] = ACTIONS(3522), + [anon_sym_SQUOTE] = ACTIONS(3522), + [anon_sym_L_DQUOTE] = ACTIONS(3522), + [anon_sym_u_DQUOTE] = ACTIONS(3522), + [anon_sym_U_DQUOTE] = ACTIONS(3522), + [anon_sym_u8_DQUOTE] = ACTIONS(3522), + [anon_sym_DQUOTE] = ACTIONS(3522), + [sym_true] = ACTIONS(3520), + [sym_false] = ACTIONS(3520), + [anon_sym_NULL] = ACTIONS(3520), + [anon_sym_nullptr] = ACTIONS(3520), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3520), + [anon_sym_decltype] = ACTIONS(3520), + [anon_sym_explicit] = ACTIONS(3520), + [anon_sym_export] = ACTIONS(3520), + [anon_sym_module] = ACTIONS(3520), + [anon_sym_import] = ACTIONS(3520), + [anon_sym_template] = ACTIONS(3520), + [anon_sym_operator] = ACTIONS(3520), + [anon_sym_try] = ACTIONS(3520), + [anon_sym_delete] = ACTIONS(3520), + [anon_sym_throw] = ACTIONS(3520), + [anon_sym_namespace] = ACTIONS(3520), + [anon_sym_static_assert] = ACTIONS(3520), + [anon_sym_concept] = ACTIONS(3520), + [anon_sym_co_return] = ACTIONS(3520), + [anon_sym_co_yield] = ACTIONS(3520), + [anon_sym_R_DQUOTE] = ACTIONS(3522), + [anon_sym_LR_DQUOTE] = ACTIONS(3522), + [anon_sym_uR_DQUOTE] = ACTIONS(3522), + [anon_sym_UR_DQUOTE] = ACTIONS(3522), + [anon_sym_u8R_DQUOTE] = ACTIONS(3522), + [anon_sym_co_await] = ACTIONS(3520), + [anon_sym_new] = ACTIONS(3520), + [anon_sym_requires] = ACTIONS(3520), + [anon_sym_CARET_CARET] = ACTIONS(3522), + [anon_sym_LBRACK_COLON] = ACTIONS(3522), + [sym_this] = ACTIONS(3520), }, - [STATE(660)] = { - [sym_preproc_def] = STATE(583), - [sym_preproc_function_def] = STATE(583), - [sym_preproc_call] = STATE(583), - [sym_preproc_if_in_field_declaration_list] = STATE(583), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(583), - [sym_type_definition] = STATE(583), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7964), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(583), - [sym_field_declaration] = STATE(583), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(583), - [sym_operator_cast] = STATE(9142), - [sym_inline_method_definition] = STATE(583), - [sym__constructor_specifiers] = STATE(2332), - [sym_operator_cast_definition] = STATE(583), - [sym_operator_cast_declaration] = STATE(583), - [sym_constructor_or_destructor_definition] = STATE(583), - [sym_constructor_or_destructor_declaration] = STATE(583), - [sym_friend_declaration] = STATE(583), - [sym_access_specifier] = STATE(11109), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(583), - [sym_alias_declaration] = STATE(583), - [sym_static_assert_declaration] = STATE(583), - [sym_consteval_block_declaration] = STATE(583), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(583), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9371), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(4352), - [aux_sym_preproc_if_token1] = ACTIONS(4354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), - [sym_preproc_directive] = ACTIONS(4358), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(4408), - [anon_sym___extension__] = ACTIONS(4362), - [anon_sym_typedef] = ACTIONS(4364), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4452), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4372), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), + [STATE(579)] = { + [sym_identifier] = ACTIONS(3618), + [aux_sym_preproc_include_token1] = ACTIONS(3618), + [aux_sym_preproc_def_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token2] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), + [sym_preproc_directive] = ACTIONS(3618), + [anon_sym_LPAREN2] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_AMP] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym___extension__] = ACTIONS(3618), + [anon_sym_typedef] = ACTIONS(3618), + [anon_sym_virtual] = ACTIONS(3618), + [anon_sym_extern] = ACTIONS(3618), + [anon_sym___attribute__] = ACTIONS(3618), + [anon_sym___attribute] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_COLON_COLON] = ACTIONS(3620), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), + [anon_sym___declspec] = ACTIONS(3618), + [anon_sym___based] = ACTIONS(3618), + [anon_sym___cdecl] = ACTIONS(3618), + [anon_sym___clrcall] = ACTIONS(3618), + [anon_sym___stdcall] = ACTIONS(3618), + [anon_sym___fastcall] = ACTIONS(3618), + [anon_sym___thiscall] = ACTIONS(3618), + [anon_sym___vectorcall] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_signed] = ACTIONS(3618), + [anon_sym_unsigned] = ACTIONS(3618), + [anon_sym_long] = ACTIONS(3618), + [anon_sym_short] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_register] = ACTIONS(3618), + [anon_sym_inline] = ACTIONS(3618), + [anon_sym___inline] = ACTIONS(3618), + [anon_sym___inline__] = ACTIONS(3618), + [anon_sym___forceinline] = ACTIONS(3618), + [anon_sym_thread_local] = ACTIONS(3618), + [anon_sym___thread] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_constexpr] = ACTIONS(3618), + [anon_sym_volatile] = ACTIONS(3618), + [anon_sym_restrict] = ACTIONS(3618), + [anon_sym___restrict__] = ACTIONS(3618), + [anon_sym__Atomic] = ACTIONS(3618), + [anon_sym__Noreturn] = ACTIONS(3618), + [anon_sym_noreturn] = ACTIONS(3618), + [anon_sym__Nonnull] = ACTIONS(3618), + [anon_sym_mutable] = ACTIONS(3618), + [anon_sym_constinit] = ACTIONS(3618), + [anon_sym_consteval] = ACTIONS(3618), + [anon_sym_alignas] = ACTIONS(3618), + [anon_sym__Alignas] = ACTIONS(3618), + [sym_primitive_type] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_struct] = ACTIONS(3618), + [anon_sym_union] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_else] = ACTIONS(3618), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_case] = ACTIONS(3618), + [anon_sym_default] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_goto] = ACTIONS(3618), + [anon_sym___try] = ACTIONS(3618), + [anon_sym___leave] = ACTIONS(3618), + [anon_sym_not] = ACTIONS(3618), + [anon_sym_compl] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_sizeof] = ACTIONS(3618), + [anon_sym___alignof__] = ACTIONS(3618), + [anon_sym___alignof] = ACTIONS(3618), + [anon_sym__alignof] = ACTIONS(3618), + [anon_sym_alignof] = ACTIONS(3618), + [anon_sym__Alignof] = ACTIONS(3618), + [anon_sym_offsetof] = ACTIONS(3618), + [anon_sym__Generic] = ACTIONS(3618), + [anon_sym_typename] = ACTIONS(3618), + [anon_sym_asm] = ACTIONS(3618), + [anon_sym___asm__] = ACTIONS(3618), + [anon_sym___asm] = ACTIONS(3618), + [sym_number_literal] = ACTIONS(3620), + [anon_sym_L_SQUOTE] = ACTIONS(3620), + [anon_sym_u_SQUOTE] = ACTIONS(3620), + [anon_sym_U_SQUOTE] = ACTIONS(3620), + [anon_sym_u8_SQUOTE] = ACTIONS(3620), + [anon_sym_SQUOTE] = ACTIONS(3620), + [anon_sym_L_DQUOTE] = ACTIONS(3620), + [anon_sym_u_DQUOTE] = ACTIONS(3620), + [anon_sym_U_DQUOTE] = ACTIONS(3620), + [anon_sym_u8_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [anon_sym_NULL] = ACTIONS(3618), + [anon_sym_nullptr] = ACTIONS(3618), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(4374), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4376), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(4378), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(661)] = { - [sym_identifier] = ACTIONS(3652), - [aux_sym_preproc_include_token1] = ACTIONS(3652), - [aux_sym_preproc_def_token1] = ACTIONS(3652), - [aux_sym_preproc_if_token1] = ACTIONS(3652), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3652), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3652), - [sym_preproc_directive] = ACTIONS(3652), - [anon_sym_LPAREN2] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_TILDE] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3652), - [anon_sym_STAR] = ACTIONS(3654), - [anon_sym_AMP_AMP] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3654), - [anon_sym___extension__] = ACTIONS(3652), - [anon_sym_typedef] = ACTIONS(3652), - [anon_sym_virtual] = ACTIONS(3652), - [anon_sym_extern] = ACTIONS(3652), - [anon_sym___attribute__] = ACTIONS(3652), - [anon_sym___attribute] = ACTIONS(3652), - [anon_sym_using] = ACTIONS(3652), - [anon_sym_COLON_COLON] = ACTIONS(3654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3654), - [anon_sym___declspec] = ACTIONS(3652), - [anon_sym___based] = ACTIONS(3652), - [anon_sym___cdecl] = ACTIONS(3652), - [anon_sym___clrcall] = ACTIONS(3652), - [anon_sym___stdcall] = ACTIONS(3652), - [anon_sym___fastcall] = ACTIONS(3652), - [anon_sym___thiscall] = ACTIONS(3652), - [anon_sym___vectorcall] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_RBRACE] = ACTIONS(3654), - [anon_sym_signed] = ACTIONS(3652), - [anon_sym_unsigned] = ACTIONS(3652), - [anon_sym_long] = ACTIONS(3652), - [anon_sym_short] = ACTIONS(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_static] = ACTIONS(3652), - [anon_sym_register] = ACTIONS(3652), - [anon_sym_inline] = ACTIONS(3652), - [anon_sym___inline] = ACTIONS(3652), - [anon_sym___inline__] = ACTIONS(3652), - [anon_sym___forceinline] = ACTIONS(3652), - [anon_sym_thread_local] = ACTIONS(3652), - [anon_sym___thread] = ACTIONS(3652), - [anon_sym_const] = ACTIONS(3652), - [anon_sym_constexpr] = ACTIONS(3652), - [anon_sym_volatile] = ACTIONS(3652), - [anon_sym_restrict] = ACTIONS(3652), - [anon_sym___restrict__] = ACTIONS(3652), - [anon_sym__Atomic] = ACTIONS(3652), - [anon_sym__Noreturn] = ACTIONS(3652), - [anon_sym_noreturn] = ACTIONS(3652), - [anon_sym__Nonnull] = ACTIONS(3652), - [anon_sym_mutable] = ACTIONS(3652), - [anon_sym_constinit] = ACTIONS(3652), - [anon_sym_consteval] = ACTIONS(3652), - [anon_sym_alignas] = ACTIONS(3652), - [anon_sym__Alignas] = ACTIONS(3652), - [sym_primitive_type] = ACTIONS(3652), - [anon_sym_enum] = ACTIONS(3652), - [anon_sym_class] = ACTIONS(3652), - [anon_sym_struct] = ACTIONS(3652), - [anon_sym_union] = ACTIONS(3652), - [anon_sym_if] = ACTIONS(3652), - [anon_sym_else] = ACTIONS(3652), - [anon_sym_switch] = ACTIONS(3652), - [anon_sym_case] = ACTIONS(3652), - [anon_sym_default] = ACTIONS(3652), - [anon_sym_while] = ACTIONS(3652), - [anon_sym_do] = ACTIONS(3652), - [anon_sym_for] = ACTIONS(3652), - [anon_sym_return] = ACTIONS(3652), - [anon_sym_break] = ACTIONS(3652), - [anon_sym_continue] = ACTIONS(3652), - [anon_sym_goto] = ACTIONS(3652), - [anon_sym___try] = ACTIONS(3652), - [anon_sym___leave] = ACTIONS(3652), - [anon_sym_not] = ACTIONS(3652), - [anon_sym_compl] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3654), - [anon_sym_sizeof] = ACTIONS(3652), - [anon_sym___alignof__] = ACTIONS(3652), - [anon_sym___alignof] = ACTIONS(3652), - [anon_sym__alignof] = ACTIONS(3652), - [anon_sym_alignof] = ACTIONS(3652), - [anon_sym__Alignof] = ACTIONS(3652), - [anon_sym_offsetof] = ACTIONS(3652), - [anon_sym__Generic] = ACTIONS(3652), - [anon_sym_typename] = ACTIONS(3652), - [anon_sym_asm] = ACTIONS(3652), - [anon_sym___asm__] = ACTIONS(3652), - [anon_sym___asm] = ACTIONS(3652), - [sym_number_literal] = ACTIONS(3654), - [anon_sym_L_SQUOTE] = ACTIONS(3654), - [anon_sym_u_SQUOTE] = ACTIONS(3654), - [anon_sym_U_SQUOTE] = ACTIONS(3654), - [anon_sym_u8_SQUOTE] = ACTIONS(3654), - [anon_sym_SQUOTE] = ACTIONS(3654), - [anon_sym_L_DQUOTE] = ACTIONS(3654), - [anon_sym_u_DQUOTE] = ACTIONS(3654), - [anon_sym_U_DQUOTE] = ACTIONS(3654), - [anon_sym_u8_DQUOTE] = ACTIONS(3654), - [anon_sym_DQUOTE] = ACTIONS(3654), - [sym_true] = ACTIONS(3652), - [sym_false] = ACTIONS(3652), - [anon_sym_NULL] = ACTIONS(3652), - [anon_sym_nullptr] = ACTIONS(3652), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3652), - [anon_sym_decltype] = ACTIONS(3652), - [anon_sym_explicit] = ACTIONS(3652), - [anon_sym_template] = ACTIONS(3652), - [anon_sym_operator] = ACTIONS(3652), - [anon_sym_try] = ACTIONS(3652), - [anon_sym_delete] = ACTIONS(3652), - [anon_sym_throw] = ACTIONS(3652), - [anon_sym_namespace] = ACTIONS(3652), - [anon_sym_static_assert] = ACTIONS(3652), - [anon_sym_concept] = ACTIONS(3652), - [anon_sym_co_return] = ACTIONS(3652), - [anon_sym_co_yield] = ACTIONS(3652), - [anon_sym_R_DQUOTE] = ACTIONS(3654), - [anon_sym_LR_DQUOTE] = ACTIONS(3654), - [anon_sym_uR_DQUOTE] = ACTIONS(3654), - [anon_sym_UR_DQUOTE] = ACTIONS(3654), - [anon_sym_u8R_DQUOTE] = ACTIONS(3654), - [anon_sym_co_await] = ACTIONS(3652), - [anon_sym_new] = ACTIONS(3652), - [anon_sym_requires] = ACTIONS(3652), - [anon_sym_CARET_CARET] = ACTIONS(3654), - [anon_sym_LBRACK_COLON] = ACTIONS(3654), - [sym_this] = ACTIONS(3652), - }, - [STATE(662)] = { - [sym_identifier] = ACTIONS(3652), - [aux_sym_preproc_include_token1] = ACTIONS(3652), - [aux_sym_preproc_def_token1] = ACTIONS(3652), - [aux_sym_preproc_if_token1] = ACTIONS(3652), - [aux_sym_preproc_if_token2] = ACTIONS(3652), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3652), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3652), - [sym_preproc_directive] = ACTIONS(3652), - [anon_sym_LPAREN2] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_TILDE] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3652), - [anon_sym_STAR] = ACTIONS(3654), - [anon_sym_AMP_AMP] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3654), - [anon_sym___extension__] = ACTIONS(3652), - [anon_sym_typedef] = ACTIONS(3652), - [anon_sym_virtual] = ACTIONS(3652), - [anon_sym_extern] = ACTIONS(3652), - [anon_sym___attribute__] = ACTIONS(3652), - [anon_sym___attribute] = ACTIONS(3652), - [anon_sym_using] = ACTIONS(3652), - [anon_sym_COLON_COLON] = ACTIONS(3654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3654), - [anon_sym___declspec] = ACTIONS(3652), - [anon_sym___based] = ACTIONS(3652), - [anon_sym___cdecl] = ACTIONS(3652), - [anon_sym___clrcall] = ACTIONS(3652), - [anon_sym___stdcall] = ACTIONS(3652), - [anon_sym___fastcall] = ACTIONS(3652), - [anon_sym___thiscall] = ACTIONS(3652), - [anon_sym___vectorcall] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_signed] = ACTIONS(3652), - [anon_sym_unsigned] = ACTIONS(3652), - [anon_sym_long] = ACTIONS(3652), - [anon_sym_short] = ACTIONS(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_static] = ACTIONS(3652), - [anon_sym_register] = ACTIONS(3652), - [anon_sym_inline] = ACTIONS(3652), - [anon_sym___inline] = ACTIONS(3652), - [anon_sym___inline__] = ACTIONS(3652), - [anon_sym___forceinline] = ACTIONS(3652), - [anon_sym_thread_local] = ACTIONS(3652), - [anon_sym___thread] = ACTIONS(3652), - [anon_sym_const] = ACTIONS(3652), - [anon_sym_constexpr] = ACTIONS(3652), - [anon_sym_volatile] = ACTIONS(3652), - [anon_sym_restrict] = ACTIONS(3652), - [anon_sym___restrict__] = ACTIONS(3652), - [anon_sym__Atomic] = ACTIONS(3652), - [anon_sym__Noreturn] = ACTIONS(3652), - [anon_sym_noreturn] = ACTIONS(3652), - [anon_sym__Nonnull] = ACTIONS(3652), - [anon_sym_mutable] = ACTIONS(3652), - [anon_sym_constinit] = ACTIONS(3652), - [anon_sym_consteval] = ACTIONS(3652), - [anon_sym_alignas] = ACTIONS(3652), - [anon_sym__Alignas] = ACTIONS(3652), - [sym_primitive_type] = ACTIONS(3652), - [anon_sym_enum] = ACTIONS(3652), - [anon_sym_class] = ACTIONS(3652), - [anon_sym_struct] = ACTIONS(3652), - [anon_sym_union] = ACTIONS(3652), - [anon_sym_if] = ACTIONS(3652), - [anon_sym_else] = ACTIONS(3652), - [anon_sym_switch] = ACTIONS(3652), - [anon_sym_case] = ACTIONS(3652), - [anon_sym_default] = ACTIONS(3652), - [anon_sym_while] = ACTIONS(3652), - [anon_sym_do] = ACTIONS(3652), - [anon_sym_for] = ACTIONS(3652), - [anon_sym_return] = ACTIONS(3652), - [anon_sym_break] = ACTIONS(3652), - [anon_sym_continue] = ACTIONS(3652), - [anon_sym_goto] = ACTIONS(3652), - [anon_sym___try] = ACTIONS(3652), - [anon_sym___leave] = ACTIONS(3652), - [anon_sym_not] = ACTIONS(3652), - [anon_sym_compl] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3654), - [anon_sym_sizeof] = ACTIONS(3652), - [anon_sym___alignof__] = ACTIONS(3652), - [anon_sym___alignof] = ACTIONS(3652), - [anon_sym__alignof] = ACTIONS(3652), - [anon_sym_alignof] = ACTIONS(3652), - [anon_sym__Alignof] = ACTIONS(3652), - [anon_sym_offsetof] = ACTIONS(3652), - [anon_sym__Generic] = ACTIONS(3652), - [anon_sym_typename] = ACTIONS(3652), - [anon_sym_asm] = ACTIONS(3652), - [anon_sym___asm__] = ACTIONS(3652), - [anon_sym___asm] = ACTIONS(3652), - [sym_number_literal] = ACTIONS(3654), - [anon_sym_L_SQUOTE] = ACTIONS(3654), - [anon_sym_u_SQUOTE] = ACTIONS(3654), - [anon_sym_U_SQUOTE] = ACTIONS(3654), - [anon_sym_u8_SQUOTE] = ACTIONS(3654), - [anon_sym_SQUOTE] = ACTIONS(3654), - [anon_sym_L_DQUOTE] = ACTIONS(3654), - [anon_sym_u_DQUOTE] = ACTIONS(3654), - [anon_sym_U_DQUOTE] = ACTIONS(3654), - [anon_sym_u8_DQUOTE] = ACTIONS(3654), - [anon_sym_DQUOTE] = ACTIONS(3654), - [sym_true] = ACTIONS(3652), - [sym_false] = ACTIONS(3652), - [anon_sym_NULL] = ACTIONS(3652), - [anon_sym_nullptr] = ACTIONS(3652), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3652), - [anon_sym_decltype] = ACTIONS(3652), - [anon_sym_explicit] = ACTIONS(3652), - [anon_sym_template] = ACTIONS(3652), - [anon_sym_operator] = ACTIONS(3652), - [anon_sym_try] = ACTIONS(3652), - [anon_sym_delete] = ACTIONS(3652), - [anon_sym_throw] = ACTIONS(3652), - [anon_sym_namespace] = ACTIONS(3652), - [anon_sym_static_assert] = ACTIONS(3652), - [anon_sym_concept] = ACTIONS(3652), - [anon_sym_co_return] = ACTIONS(3652), - [anon_sym_co_yield] = ACTIONS(3652), - [anon_sym_R_DQUOTE] = ACTIONS(3654), - [anon_sym_LR_DQUOTE] = ACTIONS(3654), - [anon_sym_uR_DQUOTE] = ACTIONS(3654), - [anon_sym_UR_DQUOTE] = ACTIONS(3654), - [anon_sym_u8R_DQUOTE] = ACTIONS(3654), - [anon_sym_co_await] = ACTIONS(3652), - [anon_sym_new] = ACTIONS(3652), - [anon_sym_requires] = ACTIONS(3652), - [anon_sym_CARET_CARET] = ACTIONS(3654), - [anon_sym_LBRACK_COLON] = ACTIONS(3654), - [sym_this] = ACTIONS(3652), - }, - [STATE(663)] = { - [sym_identifier] = ACTIONS(3656), - [aux_sym_preproc_include_token1] = ACTIONS(3656), - [aux_sym_preproc_def_token1] = ACTIONS(3656), - [aux_sym_preproc_if_token1] = ACTIONS(3656), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3656), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3656), - [sym_preproc_directive] = ACTIONS(3656), - [anon_sym_LPAREN2] = ACTIONS(3658), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_TILDE] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(3656), - [anon_sym_STAR] = ACTIONS(3658), - [anon_sym_AMP_AMP] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3656), - [anon_sym_SEMI] = ACTIONS(3658), - [anon_sym___extension__] = ACTIONS(3656), - [anon_sym_typedef] = ACTIONS(3656), - [anon_sym_virtual] = ACTIONS(3656), - [anon_sym_extern] = ACTIONS(3656), - [anon_sym___attribute__] = ACTIONS(3656), - [anon_sym___attribute] = ACTIONS(3656), - [anon_sym_using] = ACTIONS(3656), - [anon_sym_COLON_COLON] = ACTIONS(3658), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3658), - [anon_sym___declspec] = ACTIONS(3656), - [anon_sym___based] = ACTIONS(3656), - [anon_sym___cdecl] = ACTIONS(3656), - [anon_sym___clrcall] = ACTIONS(3656), - [anon_sym___stdcall] = ACTIONS(3656), - [anon_sym___fastcall] = ACTIONS(3656), - [anon_sym___thiscall] = ACTIONS(3656), - [anon_sym___vectorcall] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_RBRACE] = ACTIONS(3658), - [anon_sym_signed] = ACTIONS(3656), - [anon_sym_unsigned] = ACTIONS(3656), - [anon_sym_long] = ACTIONS(3656), - [anon_sym_short] = ACTIONS(3656), - [anon_sym_LBRACK] = ACTIONS(3656), - [anon_sym_static] = ACTIONS(3656), - [anon_sym_register] = ACTIONS(3656), - [anon_sym_inline] = ACTIONS(3656), - [anon_sym___inline] = ACTIONS(3656), - [anon_sym___inline__] = ACTIONS(3656), - [anon_sym___forceinline] = ACTIONS(3656), - [anon_sym_thread_local] = ACTIONS(3656), - [anon_sym___thread] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_constexpr] = ACTIONS(3656), - [anon_sym_volatile] = ACTIONS(3656), - [anon_sym_restrict] = ACTIONS(3656), - [anon_sym___restrict__] = ACTIONS(3656), - [anon_sym__Atomic] = ACTIONS(3656), - [anon_sym__Noreturn] = ACTIONS(3656), - [anon_sym_noreturn] = ACTIONS(3656), - [anon_sym__Nonnull] = ACTIONS(3656), - [anon_sym_mutable] = ACTIONS(3656), - [anon_sym_constinit] = ACTIONS(3656), - [anon_sym_consteval] = ACTIONS(3656), - [anon_sym_alignas] = ACTIONS(3656), - [anon_sym__Alignas] = ACTIONS(3656), - [sym_primitive_type] = ACTIONS(3656), - [anon_sym_enum] = ACTIONS(3656), - [anon_sym_class] = ACTIONS(3656), - [anon_sym_struct] = ACTIONS(3656), - [anon_sym_union] = ACTIONS(3656), - [anon_sym_if] = ACTIONS(3656), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_switch] = ACTIONS(3656), - [anon_sym_case] = ACTIONS(3656), - [anon_sym_default] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(3656), - [anon_sym_do] = ACTIONS(3656), - [anon_sym_for] = ACTIONS(3656), - [anon_sym_return] = ACTIONS(3656), - [anon_sym_break] = ACTIONS(3656), - [anon_sym_continue] = ACTIONS(3656), - [anon_sym_goto] = ACTIONS(3656), - [anon_sym___try] = ACTIONS(3656), - [anon_sym___leave] = ACTIONS(3656), - [anon_sym_not] = ACTIONS(3656), - [anon_sym_compl] = ACTIONS(3656), - [anon_sym_DASH_DASH] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3658), - [anon_sym_sizeof] = ACTIONS(3656), - [anon_sym___alignof__] = ACTIONS(3656), - [anon_sym___alignof] = ACTIONS(3656), - [anon_sym__alignof] = ACTIONS(3656), - [anon_sym_alignof] = ACTIONS(3656), - [anon_sym__Alignof] = ACTIONS(3656), - [anon_sym_offsetof] = ACTIONS(3656), - [anon_sym__Generic] = ACTIONS(3656), - [anon_sym_typename] = ACTIONS(3656), - [anon_sym_asm] = ACTIONS(3656), - [anon_sym___asm__] = ACTIONS(3656), - [anon_sym___asm] = ACTIONS(3656), - [sym_number_literal] = ACTIONS(3658), - [anon_sym_L_SQUOTE] = ACTIONS(3658), - [anon_sym_u_SQUOTE] = ACTIONS(3658), - [anon_sym_U_SQUOTE] = ACTIONS(3658), - [anon_sym_u8_SQUOTE] = ACTIONS(3658), - [anon_sym_SQUOTE] = ACTIONS(3658), - [anon_sym_L_DQUOTE] = ACTIONS(3658), - [anon_sym_u_DQUOTE] = ACTIONS(3658), - [anon_sym_U_DQUOTE] = ACTIONS(3658), - [anon_sym_u8_DQUOTE] = ACTIONS(3658), - [anon_sym_DQUOTE] = ACTIONS(3658), - [sym_true] = ACTIONS(3656), - [sym_false] = ACTIONS(3656), - [anon_sym_NULL] = ACTIONS(3656), - [anon_sym_nullptr] = ACTIONS(3656), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3656), - [anon_sym_decltype] = ACTIONS(3656), - [anon_sym_explicit] = ACTIONS(3656), - [anon_sym_template] = ACTIONS(3656), - [anon_sym_operator] = ACTIONS(3656), - [anon_sym_try] = ACTIONS(3656), - [anon_sym_delete] = ACTIONS(3656), - [anon_sym_throw] = ACTIONS(3656), - [anon_sym_namespace] = ACTIONS(3656), - [anon_sym_static_assert] = ACTIONS(3656), - [anon_sym_concept] = ACTIONS(3656), - [anon_sym_co_return] = ACTIONS(3656), - [anon_sym_co_yield] = ACTIONS(3656), - [anon_sym_R_DQUOTE] = ACTIONS(3658), - [anon_sym_LR_DQUOTE] = ACTIONS(3658), - [anon_sym_uR_DQUOTE] = ACTIONS(3658), - [anon_sym_UR_DQUOTE] = ACTIONS(3658), - [anon_sym_u8R_DQUOTE] = ACTIONS(3658), - [anon_sym_co_await] = ACTIONS(3656), - [anon_sym_new] = ACTIONS(3656), - [anon_sym_requires] = ACTIONS(3656), - [anon_sym_CARET_CARET] = ACTIONS(3658), - [anon_sym_LBRACK_COLON] = ACTIONS(3658), - [sym_this] = ACTIONS(3656), - }, - [STATE(664)] = { - [sym_identifier] = ACTIONS(3664), - [aux_sym_preproc_include_token1] = ACTIONS(3664), - [aux_sym_preproc_def_token1] = ACTIONS(3664), - [aux_sym_preproc_if_token1] = ACTIONS(3664), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3664), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3664), - [sym_preproc_directive] = ACTIONS(3664), - [anon_sym_LPAREN2] = ACTIONS(3666), - [anon_sym_BANG] = ACTIONS(3666), - [anon_sym_TILDE] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3664), - [anon_sym_PLUS] = ACTIONS(3664), - [anon_sym_STAR] = ACTIONS(3666), - [anon_sym_AMP_AMP] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3664), - [anon_sym_SEMI] = ACTIONS(3666), - [anon_sym___extension__] = ACTIONS(3664), - [anon_sym_typedef] = ACTIONS(3664), - [anon_sym_virtual] = ACTIONS(3664), - [anon_sym_extern] = ACTIONS(3664), - [anon_sym___attribute__] = ACTIONS(3664), - [anon_sym___attribute] = ACTIONS(3664), - [anon_sym_using] = ACTIONS(3664), - [anon_sym_COLON_COLON] = ACTIONS(3666), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), - [anon_sym___declspec] = ACTIONS(3664), - [anon_sym___based] = ACTIONS(3664), - [anon_sym___cdecl] = ACTIONS(3664), - [anon_sym___clrcall] = ACTIONS(3664), - [anon_sym___stdcall] = ACTIONS(3664), - [anon_sym___fastcall] = ACTIONS(3664), - [anon_sym___thiscall] = ACTIONS(3664), - [anon_sym___vectorcall] = ACTIONS(3664), - [anon_sym_LBRACE] = ACTIONS(3666), - [anon_sym_RBRACE] = ACTIONS(3666), - [anon_sym_signed] = ACTIONS(3664), - [anon_sym_unsigned] = ACTIONS(3664), - [anon_sym_long] = ACTIONS(3664), - [anon_sym_short] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3664), - [anon_sym_static] = ACTIONS(3664), - [anon_sym_register] = ACTIONS(3664), - [anon_sym_inline] = ACTIONS(3664), - [anon_sym___inline] = ACTIONS(3664), - [anon_sym___inline__] = ACTIONS(3664), - [anon_sym___forceinline] = ACTIONS(3664), - [anon_sym_thread_local] = ACTIONS(3664), - [anon_sym___thread] = ACTIONS(3664), - [anon_sym_const] = ACTIONS(3664), - [anon_sym_constexpr] = ACTIONS(3664), - [anon_sym_volatile] = ACTIONS(3664), - [anon_sym_restrict] = ACTIONS(3664), - [anon_sym___restrict__] = ACTIONS(3664), - [anon_sym__Atomic] = ACTIONS(3664), - [anon_sym__Noreturn] = ACTIONS(3664), - [anon_sym_noreturn] = ACTIONS(3664), - [anon_sym__Nonnull] = ACTIONS(3664), - [anon_sym_mutable] = ACTIONS(3664), - [anon_sym_constinit] = ACTIONS(3664), - [anon_sym_consteval] = ACTIONS(3664), - [anon_sym_alignas] = ACTIONS(3664), - [anon_sym__Alignas] = ACTIONS(3664), - [sym_primitive_type] = ACTIONS(3664), - [anon_sym_enum] = ACTIONS(3664), - [anon_sym_class] = ACTIONS(3664), - [anon_sym_struct] = ACTIONS(3664), - [anon_sym_union] = ACTIONS(3664), - [anon_sym_if] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(3664), - [anon_sym_switch] = ACTIONS(3664), - [anon_sym_case] = ACTIONS(3664), - [anon_sym_default] = ACTIONS(3664), - [anon_sym_while] = ACTIONS(3664), - [anon_sym_do] = ACTIONS(3664), - [anon_sym_for] = ACTIONS(3664), - [anon_sym_return] = ACTIONS(3664), - [anon_sym_break] = ACTIONS(3664), - [anon_sym_continue] = ACTIONS(3664), - [anon_sym_goto] = ACTIONS(3664), - [anon_sym___try] = ACTIONS(3664), - [anon_sym___leave] = ACTIONS(3664), - [anon_sym_not] = ACTIONS(3664), - [anon_sym_compl] = ACTIONS(3664), - [anon_sym_DASH_DASH] = ACTIONS(3666), - [anon_sym_PLUS_PLUS] = ACTIONS(3666), - [anon_sym_sizeof] = ACTIONS(3664), - [anon_sym___alignof__] = ACTIONS(3664), - [anon_sym___alignof] = ACTIONS(3664), - [anon_sym__alignof] = ACTIONS(3664), - [anon_sym_alignof] = ACTIONS(3664), - [anon_sym__Alignof] = ACTIONS(3664), - [anon_sym_offsetof] = ACTIONS(3664), - [anon_sym__Generic] = ACTIONS(3664), - [anon_sym_typename] = ACTIONS(3664), - [anon_sym_asm] = ACTIONS(3664), - [anon_sym___asm__] = ACTIONS(3664), - [anon_sym___asm] = ACTIONS(3664), - [sym_number_literal] = ACTIONS(3666), - [anon_sym_L_SQUOTE] = ACTIONS(3666), - [anon_sym_u_SQUOTE] = ACTIONS(3666), - [anon_sym_U_SQUOTE] = ACTIONS(3666), - [anon_sym_u8_SQUOTE] = ACTIONS(3666), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_L_DQUOTE] = ACTIONS(3666), - [anon_sym_u_DQUOTE] = ACTIONS(3666), - [anon_sym_U_DQUOTE] = ACTIONS(3666), - [anon_sym_u8_DQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3666), - [sym_true] = ACTIONS(3664), - [sym_false] = ACTIONS(3664), - [anon_sym_NULL] = ACTIONS(3664), - [anon_sym_nullptr] = ACTIONS(3664), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3664), - [anon_sym_decltype] = ACTIONS(3664), - [anon_sym_explicit] = ACTIONS(3664), - [anon_sym_template] = ACTIONS(3664), - [anon_sym_operator] = ACTIONS(3664), - [anon_sym_try] = ACTIONS(3664), - [anon_sym_delete] = ACTIONS(3664), - [anon_sym_throw] = ACTIONS(3664), - [anon_sym_namespace] = ACTIONS(3664), - [anon_sym_static_assert] = ACTIONS(3664), - [anon_sym_concept] = ACTIONS(3664), - [anon_sym_co_return] = ACTIONS(3664), - [anon_sym_co_yield] = ACTIONS(3664), - [anon_sym_R_DQUOTE] = ACTIONS(3666), - [anon_sym_LR_DQUOTE] = ACTIONS(3666), - [anon_sym_uR_DQUOTE] = ACTIONS(3666), - [anon_sym_UR_DQUOTE] = ACTIONS(3666), - [anon_sym_u8R_DQUOTE] = ACTIONS(3666), - [anon_sym_co_await] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3664), - [anon_sym_requires] = ACTIONS(3664), - [anon_sym_CARET_CARET] = ACTIONS(3666), - [anon_sym_LBRACK_COLON] = ACTIONS(3666), - [sym_this] = ACTIONS(3664), - }, - [STATE(665)] = { - [sym_identifier] = ACTIONS(3656), - [aux_sym_preproc_include_token1] = ACTIONS(3656), - [aux_sym_preproc_def_token1] = ACTIONS(3656), - [aux_sym_preproc_if_token1] = ACTIONS(3656), - [aux_sym_preproc_if_token2] = ACTIONS(3656), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3656), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3656), - [sym_preproc_directive] = ACTIONS(3656), - [anon_sym_LPAREN2] = ACTIONS(3658), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_TILDE] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(3656), - [anon_sym_STAR] = ACTIONS(3658), - [anon_sym_AMP_AMP] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3656), - [anon_sym_SEMI] = ACTIONS(3658), - [anon_sym___extension__] = ACTIONS(3656), - [anon_sym_typedef] = ACTIONS(3656), - [anon_sym_virtual] = ACTIONS(3656), - [anon_sym_extern] = ACTIONS(3656), - [anon_sym___attribute__] = ACTIONS(3656), - [anon_sym___attribute] = ACTIONS(3656), - [anon_sym_using] = ACTIONS(3656), - [anon_sym_COLON_COLON] = ACTIONS(3658), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3658), - [anon_sym___declspec] = ACTIONS(3656), - [anon_sym___based] = ACTIONS(3656), - [anon_sym___cdecl] = ACTIONS(3656), - [anon_sym___clrcall] = ACTIONS(3656), - [anon_sym___stdcall] = ACTIONS(3656), - [anon_sym___fastcall] = ACTIONS(3656), - [anon_sym___thiscall] = ACTIONS(3656), - [anon_sym___vectorcall] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_signed] = ACTIONS(3656), - [anon_sym_unsigned] = ACTIONS(3656), - [anon_sym_long] = ACTIONS(3656), - [anon_sym_short] = ACTIONS(3656), - [anon_sym_LBRACK] = ACTIONS(3656), - [anon_sym_static] = ACTIONS(3656), - [anon_sym_register] = ACTIONS(3656), - [anon_sym_inline] = ACTIONS(3656), - [anon_sym___inline] = ACTIONS(3656), - [anon_sym___inline__] = ACTIONS(3656), - [anon_sym___forceinline] = ACTIONS(3656), - [anon_sym_thread_local] = ACTIONS(3656), - [anon_sym___thread] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_constexpr] = ACTIONS(3656), - [anon_sym_volatile] = ACTIONS(3656), - [anon_sym_restrict] = ACTIONS(3656), - [anon_sym___restrict__] = ACTIONS(3656), - [anon_sym__Atomic] = ACTIONS(3656), - [anon_sym__Noreturn] = ACTIONS(3656), - [anon_sym_noreturn] = ACTIONS(3656), - [anon_sym__Nonnull] = ACTIONS(3656), - [anon_sym_mutable] = ACTIONS(3656), - [anon_sym_constinit] = ACTIONS(3656), - [anon_sym_consteval] = ACTIONS(3656), - [anon_sym_alignas] = ACTIONS(3656), - [anon_sym__Alignas] = ACTIONS(3656), - [sym_primitive_type] = ACTIONS(3656), - [anon_sym_enum] = ACTIONS(3656), - [anon_sym_class] = ACTIONS(3656), - [anon_sym_struct] = ACTIONS(3656), - [anon_sym_union] = ACTIONS(3656), - [anon_sym_if] = ACTIONS(3656), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_switch] = ACTIONS(3656), - [anon_sym_case] = ACTIONS(3656), - [anon_sym_default] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(3656), - [anon_sym_do] = ACTIONS(3656), - [anon_sym_for] = ACTIONS(3656), - [anon_sym_return] = ACTIONS(3656), - [anon_sym_break] = ACTIONS(3656), - [anon_sym_continue] = ACTIONS(3656), - [anon_sym_goto] = ACTIONS(3656), - [anon_sym___try] = ACTIONS(3656), - [anon_sym___leave] = ACTIONS(3656), - [anon_sym_not] = ACTIONS(3656), - [anon_sym_compl] = ACTIONS(3656), - [anon_sym_DASH_DASH] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3658), - [anon_sym_sizeof] = ACTIONS(3656), - [anon_sym___alignof__] = ACTIONS(3656), - [anon_sym___alignof] = ACTIONS(3656), - [anon_sym__alignof] = ACTIONS(3656), - [anon_sym_alignof] = ACTIONS(3656), - [anon_sym__Alignof] = ACTIONS(3656), - [anon_sym_offsetof] = ACTIONS(3656), - [anon_sym__Generic] = ACTIONS(3656), - [anon_sym_typename] = ACTIONS(3656), - [anon_sym_asm] = ACTIONS(3656), - [anon_sym___asm__] = ACTIONS(3656), - [anon_sym___asm] = ACTIONS(3656), - [sym_number_literal] = ACTIONS(3658), - [anon_sym_L_SQUOTE] = ACTIONS(3658), - [anon_sym_u_SQUOTE] = ACTIONS(3658), - [anon_sym_U_SQUOTE] = ACTIONS(3658), - [anon_sym_u8_SQUOTE] = ACTIONS(3658), - [anon_sym_SQUOTE] = ACTIONS(3658), - [anon_sym_L_DQUOTE] = ACTIONS(3658), - [anon_sym_u_DQUOTE] = ACTIONS(3658), - [anon_sym_U_DQUOTE] = ACTIONS(3658), - [anon_sym_u8_DQUOTE] = ACTIONS(3658), - [anon_sym_DQUOTE] = ACTIONS(3658), - [sym_true] = ACTIONS(3656), - [sym_false] = ACTIONS(3656), - [anon_sym_NULL] = ACTIONS(3656), - [anon_sym_nullptr] = ACTIONS(3656), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3656), - [anon_sym_decltype] = ACTIONS(3656), - [anon_sym_explicit] = ACTIONS(3656), - [anon_sym_template] = ACTIONS(3656), - [anon_sym_operator] = ACTIONS(3656), - [anon_sym_try] = ACTIONS(3656), - [anon_sym_delete] = ACTIONS(3656), - [anon_sym_throw] = ACTIONS(3656), - [anon_sym_namespace] = ACTIONS(3656), - [anon_sym_static_assert] = ACTIONS(3656), - [anon_sym_concept] = ACTIONS(3656), - [anon_sym_co_return] = ACTIONS(3656), - [anon_sym_co_yield] = ACTIONS(3656), - [anon_sym_R_DQUOTE] = ACTIONS(3658), - [anon_sym_LR_DQUOTE] = ACTIONS(3658), - [anon_sym_uR_DQUOTE] = ACTIONS(3658), - [anon_sym_UR_DQUOTE] = ACTIONS(3658), - [anon_sym_u8R_DQUOTE] = ACTIONS(3658), - [anon_sym_co_await] = ACTIONS(3656), - [anon_sym_new] = ACTIONS(3656), - [anon_sym_requires] = ACTIONS(3656), - [anon_sym_CARET_CARET] = ACTIONS(3658), - [anon_sym_LBRACK_COLON] = ACTIONS(3658), - [sym_this] = ACTIONS(3656), - }, - [STATE(666)] = { - [sym_identifier] = ACTIONS(3668), - [aux_sym_preproc_include_token1] = ACTIONS(3668), - [aux_sym_preproc_def_token1] = ACTIONS(3668), - [aux_sym_preproc_if_token1] = ACTIONS(3668), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), - [sym_preproc_directive] = ACTIONS(3668), - [anon_sym_LPAREN2] = ACTIONS(3670), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_TILDE] = ACTIONS(3670), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3670), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_SEMI] = ACTIONS(3670), - [anon_sym___extension__] = ACTIONS(3668), - [anon_sym_typedef] = ACTIONS(3668), - [anon_sym_virtual] = ACTIONS(3668), - [anon_sym_extern] = ACTIONS(3668), - [anon_sym___attribute__] = ACTIONS(3668), - [anon_sym___attribute] = ACTIONS(3668), - [anon_sym_using] = ACTIONS(3668), - [anon_sym_COLON_COLON] = ACTIONS(3670), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), - [anon_sym___declspec] = ACTIONS(3668), - [anon_sym___based] = ACTIONS(3668), - [anon_sym___cdecl] = ACTIONS(3668), - [anon_sym___clrcall] = ACTIONS(3668), - [anon_sym___stdcall] = ACTIONS(3668), - [anon_sym___fastcall] = ACTIONS(3668), - [anon_sym___thiscall] = ACTIONS(3668), - [anon_sym___vectorcall] = ACTIONS(3668), - [anon_sym_LBRACE] = ACTIONS(3670), - [anon_sym_RBRACE] = ACTIONS(3670), - [anon_sym_signed] = ACTIONS(3668), - [anon_sym_unsigned] = ACTIONS(3668), - [anon_sym_long] = ACTIONS(3668), - [anon_sym_short] = ACTIONS(3668), - [anon_sym_LBRACK] = ACTIONS(3668), - [anon_sym_static] = ACTIONS(3668), - [anon_sym_register] = ACTIONS(3668), - [anon_sym_inline] = ACTIONS(3668), - [anon_sym___inline] = ACTIONS(3668), - [anon_sym___inline__] = ACTIONS(3668), - [anon_sym___forceinline] = ACTIONS(3668), - [anon_sym_thread_local] = ACTIONS(3668), - [anon_sym___thread] = ACTIONS(3668), - [anon_sym_const] = ACTIONS(3668), - [anon_sym_constexpr] = ACTIONS(3668), - [anon_sym_volatile] = ACTIONS(3668), - [anon_sym_restrict] = ACTIONS(3668), - [anon_sym___restrict__] = ACTIONS(3668), - [anon_sym__Atomic] = ACTIONS(3668), - [anon_sym__Noreturn] = ACTIONS(3668), - [anon_sym_noreturn] = ACTIONS(3668), - [anon_sym__Nonnull] = ACTIONS(3668), - [anon_sym_mutable] = ACTIONS(3668), - [anon_sym_constinit] = ACTIONS(3668), - [anon_sym_consteval] = ACTIONS(3668), - [anon_sym_alignas] = ACTIONS(3668), - [anon_sym__Alignas] = ACTIONS(3668), - [sym_primitive_type] = ACTIONS(3668), - [anon_sym_enum] = ACTIONS(3668), - [anon_sym_class] = ACTIONS(3668), - [anon_sym_struct] = ACTIONS(3668), - [anon_sym_union] = ACTIONS(3668), - [anon_sym_if] = ACTIONS(3668), - [anon_sym_else] = ACTIONS(3668), - [anon_sym_switch] = ACTIONS(3668), - [anon_sym_case] = ACTIONS(3668), - [anon_sym_default] = ACTIONS(3668), - [anon_sym_while] = ACTIONS(3668), - [anon_sym_do] = ACTIONS(3668), - [anon_sym_for] = ACTIONS(3668), - [anon_sym_return] = ACTIONS(3668), - [anon_sym_break] = ACTIONS(3668), - [anon_sym_continue] = ACTIONS(3668), - [anon_sym_goto] = ACTIONS(3668), - [anon_sym___try] = ACTIONS(3668), - [anon_sym___leave] = ACTIONS(3668), - [anon_sym_not] = ACTIONS(3668), - [anon_sym_compl] = ACTIONS(3668), - [anon_sym_DASH_DASH] = ACTIONS(3670), - [anon_sym_PLUS_PLUS] = ACTIONS(3670), - [anon_sym_sizeof] = ACTIONS(3668), - [anon_sym___alignof__] = ACTIONS(3668), - [anon_sym___alignof] = ACTIONS(3668), - [anon_sym__alignof] = ACTIONS(3668), - [anon_sym_alignof] = ACTIONS(3668), - [anon_sym__Alignof] = ACTIONS(3668), - [anon_sym_offsetof] = ACTIONS(3668), - [anon_sym__Generic] = ACTIONS(3668), - [anon_sym_typename] = ACTIONS(3668), - [anon_sym_asm] = ACTIONS(3668), - [anon_sym___asm__] = ACTIONS(3668), - [anon_sym___asm] = ACTIONS(3668), - [sym_number_literal] = ACTIONS(3670), - [anon_sym_L_SQUOTE] = ACTIONS(3670), - [anon_sym_u_SQUOTE] = ACTIONS(3670), - [anon_sym_U_SQUOTE] = ACTIONS(3670), - [anon_sym_u8_SQUOTE] = ACTIONS(3670), - [anon_sym_SQUOTE] = ACTIONS(3670), - [anon_sym_L_DQUOTE] = ACTIONS(3670), - [anon_sym_u_DQUOTE] = ACTIONS(3670), - [anon_sym_U_DQUOTE] = ACTIONS(3670), - [anon_sym_u8_DQUOTE] = ACTIONS(3670), - [anon_sym_DQUOTE] = ACTIONS(3670), - [sym_true] = ACTIONS(3668), - [sym_false] = ACTIONS(3668), - [anon_sym_NULL] = ACTIONS(3668), - [anon_sym_nullptr] = ACTIONS(3668), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3668), - [anon_sym_decltype] = ACTIONS(3668), - [anon_sym_explicit] = ACTIONS(3668), - [anon_sym_template] = ACTIONS(3668), - [anon_sym_operator] = ACTIONS(3668), - [anon_sym_try] = ACTIONS(3668), - [anon_sym_delete] = ACTIONS(3668), - [anon_sym_throw] = ACTIONS(3668), - [anon_sym_namespace] = ACTIONS(3668), - [anon_sym_static_assert] = ACTIONS(3668), - [anon_sym_concept] = ACTIONS(3668), - [anon_sym_co_return] = ACTIONS(3668), - [anon_sym_co_yield] = ACTIONS(3668), - [anon_sym_R_DQUOTE] = ACTIONS(3670), - [anon_sym_LR_DQUOTE] = ACTIONS(3670), - [anon_sym_uR_DQUOTE] = ACTIONS(3670), - [anon_sym_UR_DQUOTE] = ACTIONS(3670), - [anon_sym_u8R_DQUOTE] = ACTIONS(3670), - [anon_sym_co_await] = ACTIONS(3668), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_requires] = ACTIONS(3668), - [anon_sym_CARET_CARET] = ACTIONS(3670), - [anon_sym_LBRACK_COLON] = ACTIONS(3670), - [sym_this] = ACTIONS(3668), - }, - [STATE(667)] = { - [ts_builtin_sym_end] = ACTIONS(4454), - [sym_identifier] = ACTIONS(4456), - [aux_sym_preproc_include_token1] = ACTIONS(4456), - [aux_sym_preproc_def_token1] = ACTIONS(4456), - [aux_sym_preproc_if_token1] = ACTIONS(4456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4456), - [sym_preproc_directive] = ACTIONS(4456), - [anon_sym_LPAREN2] = ACTIONS(4454), - [anon_sym_BANG] = ACTIONS(4454), - [anon_sym_TILDE] = ACTIONS(4454), - [anon_sym_DASH] = ACTIONS(4456), - [anon_sym_PLUS] = ACTIONS(4456), - [anon_sym_STAR] = ACTIONS(4454), - [anon_sym_AMP_AMP] = ACTIONS(4454), - [anon_sym_AMP] = ACTIONS(4456), - [anon_sym_SEMI] = ACTIONS(4454), - [anon_sym___extension__] = ACTIONS(4456), - [anon_sym_typedef] = ACTIONS(4456), - [anon_sym_virtual] = ACTIONS(4456), - [anon_sym_extern] = ACTIONS(4456), - [anon_sym___attribute__] = ACTIONS(4456), - [anon_sym___attribute] = ACTIONS(4456), - [anon_sym_using] = ACTIONS(4456), - [anon_sym_COLON_COLON] = ACTIONS(4454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4454), - [anon_sym___declspec] = ACTIONS(4456), - [anon_sym___based] = ACTIONS(4456), - [anon_sym___cdecl] = ACTIONS(4456), - [anon_sym___clrcall] = ACTIONS(4456), - [anon_sym___stdcall] = ACTIONS(4456), - [anon_sym___fastcall] = ACTIONS(4456), - [anon_sym___thiscall] = ACTIONS(4456), - [anon_sym___vectorcall] = ACTIONS(4456), - [anon_sym_LBRACE] = ACTIONS(4454), - [anon_sym_signed] = ACTIONS(4456), - [anon_sym_unsigned] = ACTIONS(4456), - [anon_sym_long] = ACTIONS(4456), - [anon_sym_short] = ACTIONS(4456), - [anon_sym_LBRACK] = ACTIONS(4456), - [anon_sym_static] = ACTIONS(4456), - [anon_sym_register] = ACTIONS(4456), - [anon_sym_inline] = ACTIONS(4456), - [anon_sym___inline] = ACTIONS(4456), - [anon_sym___inline__] = ACTIONS(4456), - [anon_sym___forceinline] = ACTIONS(4456), - [anon_sym_thread_local] = ACTIONS(4456), - [anon_sym___thread] = ACTIONS(4456), - [anon_sym_const] = ACTIONS(4456), - [anon_sym_constexpr] = ACTIONS(4456), - [anon_sym_volatile] = ACTIONS(4456), - [anon_sym_restrict] = ACTIONS(4456), - [anon_sym___restrict__] = ACTIONS(4456), - [anon_sym__Atomic] = ACTIONS(4456), - [anon_sym__Noreturn] = ACTIONS(4456), - [anon_sym_noreturn] = ACTIONS(4456), - [anon_sym__Nonnull] = ACTIONS(4456), - [anon_sym_mutable] = ACTIONS(4456), - [anon_sym_constinit] = ACTIONS(4456), - [anon_sym_consteval] = ACTIONS(4456), - [anon_sym_alignas] = ACTIONS(4456), - [anon_sym__Alignas] = ACTIONS(4456), - [sym_primitive_type] = ACTIONS(4456), - [anon_sym_enum] = ACTIONS(4456), - [anon_sym_class] = ACTIONS(4456), - [anon_sym_struct] = ACTIONS(4456), - [anon_sym_union] = ACTIONS(4456), - [anon_sym_if] = ACTIONS(4456), - [anon_sym_switch] = ACTIONS(4456), - [anon_sym_case] = ACTIONS(4456), - [anon_sym_default] = ACTIONS(4456), - [anon_sym_while] = ACTIONS(4456), - [anon_sym_do] = ACTIONS(4456), - [anon_sym_for] = ACTIONS(4456), - [anon_sym_return] = ACTIONS(4456), - [anon_sym_break] = ACTIONS(4456), - [anon_sym_continue] = ACTIONS(4456), - [anon_sym_goto] = ACTIONS(4456), - [anon_sym_not] = ACTIONS(4456), - [anon_sym_compl] = ACTIONS(4456), - [anon_sym_DASH_DASH] = ACTIONS(4454), - [anon_sym_PLUS_PLUS] = ACTIONS(4454), - [anon_sym_sizeof] = ACTIONS(4456), - [anon_sym___alignof__] = ACTIONS(4456), - [anon_sym___alignof] = ACTIONS(4456), - [anon_sym__alignof] = ACTIONS(4456), - [anon_sym_alignof] = ACTIONS(4456), - [anon_sym__Alignof] = ACTIONS(4456), - [anon_sym_offsetof] = ACTIONS(4456), - [anon_sym__Generic] = ACTIONS(4456), - [anon_sym_typename] = ACTIONS(4456), - [anon_sym_asm] = ACTIONS(4456), - [anon_sym___asm__] = ACTIONS(4456), - [anon_sym___asm] = ACTIONS(4456), - [sym_number_literal] = ACTIONS(4454), - [anon_sym_L_SQUOTE] = ACTIONS(4454), - [anon_sym_u_SQUOTE] = ACTIONS(4454), - [anon_sym_U_SQUOTE] = ACTIONS(4454), - [anon_sym_u8_SQUOTE] = ACTIONS(4454), - [anon_sym_SQUOTE] = ACTIONS(4454), - [anon_sym_L_DQUOTE] = ACTIONS(4454), - [anon_sym_u_DQUOTE] = ACTIONS(4454), - [anon_sym_U_DQUOTE] = ACTIONS(4454), - [anon_sym_u8_DQUOTE] = ACTIONS(4454), - [anon_sym_DQUOTE] = ACTIONS(4454), - [sym_true] = ACTIONS(4456), - [sym_false] = ACTIONS(4456), - [anon_sym_NULL] = ACTIONS(4456), - [anon_sym_nullptr] = ACTIONS(4456), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4456), - [anon_sym_decltype] = ACTIONS(4456), - [anon_sym_explicit] = ACTIONS(4456), - [anon_sym_export] = ACTIONS(4456), - [anon_sym_module] = ACTIONS(4456), - [anon_sym_import] = ACTIONS(4456), - [anon_sym_template] = ACTIONS(4456), - [anon_sym_operator] = ACTIONS(4456), - [anon_sym_try] = ACTIONS(4456), - [anon_sym_delete] = ACTIONS(4456), - [anon_sym_throw] = ACTIONS(4456), - [anon_sym_namespace] = ACTIONS(4456), - [anon_sym_static_assert] = ACTIONS(4456), - [anon_sym_concept] = ACTIONS(4456), - [anon_sym_co_return] = ACTIONS(4456), - [anon_sym_co_yield] = ACTIONS(4456), - [anon_sym_R_DQUOTE] = ACTIONS(4454), - [anon_sym_LR_DQUOTE] = ACTIONS(4454), - [anon_sym_uR_DQUOTE] = ACTIONS(4454), - [anon_sym_UR_DQUOTE] = ACTIONS(4454), - [anon_sym_u8R_DQUOTE] = ACTIONS(4454), - [anon_sym_co_await] = ACTIONS(4456), - [anon_sym_new] = ACTIONS(4456), - [anon_sym_requires] = ACTIONS(4456), - [anon_sym_CARET_CARET] = ACTIONS(4454), - [anon_sym_LBRACK_COLON] = ACTIONS(4454), - [sym_this] = ACTIONS(4456), - }, - [STATE(668)] = { - [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(4663), - [sym__declaration_specifiers] = STATE(7964), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(676), - [sym_field_declaration] = STATE(676), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(676), - [sym_operator_cast] = STATE(9142), - [sym_inline_method_definition] = STATE(676), - [sym__constructor_specifiers] = STATE(2332), - [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(11109), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(676), - [sym_alias_declaration] = STATE(676), - [sym_static_assert_declaration] = STATE(676), - [sym_consteval_block_declaration] = STATE(676), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(676), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9371), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(4352), - [aux_sym_preproc_if_token1] = ACTIONS(4354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), - [sym_preproc_directive] = ACTIONS(4358), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(4458), - [anon_sym___extension__] = ACTIONS(4362), - [anon_sym_typedef] = ACTIONS(4364), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4460), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4372), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(4374), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4376), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(4378), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(669)] = { - [sym_identifier] = ACTIONS(3664), - [aux_sym_preproc_include_token1] = ACTIONS(3664), - [aux_sym_preproc_def_token1] = ACTIONS(3664), - [aux_sym_preproc_if_token1] = ACTIONS(3664), - [aux_sym_preproc_if_token2] = ACTIONS(3664), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3664), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3664), - [sym_preproc_directive] = ACTIONS(3664), - [anon_sym_LPAREN2] = ACTIONS(3666), - [anon_sym_BANG] = ACTIONS(3666), - [anon_sym_TILDE] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3664), - [anon_sym_PLUS] = ACTIONS(3664), - [anon_sym_STAR] = ACTIONS(3666), - [anon_sym_AMP_AMP] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3664), - [anon_sym_SEMI] = ACTIONS(3666), - [anon_sym___extension__] = ACTIONS(3664), - [anon_sym_typedef] = ACTIONS(3664), - [anon_sym_virtual] = ACTIONS(3664), - [anon_sym_extern] = ACTIONS(3664), - [anon_sym___attribute__] = ACTIONS(3664), - [anon_sym___attribute] = ACTIONS(3664), - [anon_sym_using] = ACTIONS(3664), - [anon_sym_COLON_COLON] = ACTIONS(3666), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), - [anon_sym___declspec] = ACTIONS(3664), - [anon_sym___based] = ACTIONS(3664), - [anon_sym___cdecl] = ACTIONS(3664), - [anon_sym___clrcall] = ACTIONS(3664), - [anon_sym___stdcall] = ACTIONS(3664), - [anon_sym___fastcall] = ACTIONS(3664), - [anon_sym___thiscall] = ACTIONS(3664), - [anon_sym___vectorcall] = ACTIONS(3664), - [anon_sym_LBRACE] = ACTIONS(3666), - [anon_sym_signed] = ACTIONS(3664), - [anon_sym_unsigned] = ACTIONS(3664), - [anon_sym_long] = ACTIONS(3664), - [anon_sym_short] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3664), - [anon_sym_static] = ACTIONS(3664), - [anon_sym_register] = ACTIONS(3664), - [anon_sym_inline] = ACTIONS(3664), - [anon_sym___inline] = ACTIONS(3664), - [anon_sym___inline__] = ACTIONS(3664), - [anon_sym___forceinline] = ACTIONS(3664), - [anon_sym_thread_local] = ACTIONS(3664), - [anon_sym___thread] = ACTIONS(3664), - [anon_sym_const] = ACTIONS(3664), - [anon_sym_constexpr] = ACTIONS(3664), - [anon_sym_volatile] = ACTIONS(3664), - [anon_sym_restrict] = ACTIONS(3664), - [anon_sym___restrict__] = ACTIONS(3664), - [anon_sym__Atomic] = ACTIONS(3664), - [anon_sym__Noreturn] = ACTIONS(3664), - [anon_sym_noreturn] = ACTIONS(3664), - [anon_sym__Nonnull] = ACTIONS(3664), - [anon_sym_mutable] = ACTIONS(3664), - [anon_sym_constinit] = ACTIONS(3664), - [anon_sym_consteval] = ACTIONS(3664), - [anon_sym_alignas] = ACTIONS(3664), - [anon_sym__Alignas] = ACTIONS(3664), - [sym_primitive_type] = ACTIONS(3664), - [anon_sym_enum] = ACTIONS(3664), - [anon_sym_class] = ACTIONS(3664), - [anon_sym_struct] = ACTIONS(3664), - [anon_sym_union] = ACTIONS(3664), - [anon_sym_if] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(3664), - [anon_sym_switch] = ACTIONS(3664), - [anon_sym_case] = ACTIONS(3664), - [anon_sym_default] = ACTIONS(3664), - [anon_sym_while] = ACTIONS(3664), - [anon_sym_do] = ACTIONS(3664), - [anon_sym_for] = ACTIONS(3664), - [anon_sym_return] = ACTIONS(3664), - [anon_sym_break] = ACTIONS(3664), - [anon_sym_continue] = ACTIONS(3664), - [anon_sym_goto] = ACTIONS(3664), - [anon_sym___try] = ACTIONS(3664), - [anon_sym___leave] = ACTIONS(3664), - [anon_sym_not] = ACTIONS(3664), - [anon_sym_compl] = ACTIONS(3664), - [anon_sym_DASH_DASH] = ACTIONS(3666), - [anon_sym_PLUS_PLUS] = ACTIONS(3666), - [anon_sym_sizeof] = ACTIONS(3664), - [anon_sym___alignof__] = ACTIONS(3664), - [anon_sym___alignof] = ACTIONS(3664), - [anon_sym__alignof] = ACTIONS(3664), - [anon_sym_alignof] = ACTIONS(3664), - [anon_sym__Alignof] = ACTIONS(3664), - [anon_sym_offsetof] = ACTIONS(3664), - [anon_sym__Generic] = ACTIONS(3664), - [anon_sym_typename] = ACTIONS(3664), - [anon_sym_asm] = ACTIONS(3664), - [anon_sym___asm__] = ACTIONS(3664), - [anon_sym___asm] = ACTIONS(3664), - [sym_number_literal] = ACTIONS(3666), - [anon_sym_L_SQUOTE] = ACTIONS(3666), - [anon_sym_u_SQUOTE] = ACTIONS(3666), - [anon_sym_U_SQUOTE] = ACTIONS(3666), - [anon_sym_u8_SQUOTE] = ACTIONS(3666), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_L_DQUOTE] = ACTIONS(3666), - [anon_sym_u_DQUOTE] = ACTIONS(3666), - [anon_sym_U_DQUOTE] = ACTIONS(3666), - [anon_sym_u8_DQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3666), - [sym_true] = ACTIONS(3664), - [sym_false] = ACTIONS(3664), - [anon_sym_NULL] = ACTIONS(3664), - [anon_sym_nullptr] = ACTIONS(3664), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3664), - [anon_sym_decltype] = ACTIONS(3664), - [anon_sym_explicit] = ACTIONS(3664), - [anon_sym_template] = ACTIONS(3664), - [anon_sym_operator] = ACTIONS(3664), - [anon_sym_try] = ACTIONS(3664), - [anon_sym_delete] = ACTIONS(3664), - [anon_sym_throw] = ACTIONS(3664), - [anon_sym_namespace] = ACTIONS(3664), - [anon_sym_static_assert] = ACTIONS(3664), - [anon_sym_concept] = ACTIONS(3664), - [anon_sym_co_return] = ACTIONS(3664), - [anon_sym_co_yield] = ACTIONS(3664), - [anon_sym_R_DQUOTE] = ACTIONS(3666), - [anon_sym_LR_DQUOTE] = ACTIONS(3666), - [anon_sym_uR_DQUOTE] = ACTIONS(3666), - [anon_sym_UR_DQUOTE] = ACTIONS(3666), - [anon_sym_u8R_DQUOTE] = ACTIONS(3666), - [anon_sym_co_await] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3664), - [anon_sym_requires] = ACTIONS(3664), - [anon_sym_CARET_CARET] = ACTIONS(3666), - [anon_sym_LBRACK_COLON] = ACTIONS(3666), - [sym_this] = ACTIONS(3664), - }, - [STATE(670)] = { - [ts_builtin_sym_end] = ACTIONS(4150), - [sym_identifier] = ACTIONS(4148), - [aux_sym_preproc_include_token1] = ACTIONS(4148), - [aux_sym_preproc_def_token1] = ACTIONS(4148), - [aux_sym_preproc_if_token1] = ACTIONS(4148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4148), - [sym_preproc_directive] = ACTIONS(4148), - [anon_sym_LPAREN2] = ACTIONS(4150), - [anon_sym_BANG] = ACTIONS(4150), - [anon_sym_TILDE] = ACTIONS(4150), - [anon_sym_DASH] = ACTIONS(4148), - [anon_sym_PLUS] = ACTIONS(4148), - [anon_sym_STAR] = ACTIONS(4150), - [anon_sym_AMP_AMP] = ACTIONS(4150), - [anon_sym_AMP] = ACTIONS(4148), - [anon_sym_SEMI] = ACTIONS(4150), - [anon_sym___extension__] = ACTIONS(4148), - [anon_sym_typedef] = ACTIONS(4148), - [anon_sym_virtual] = ACTIONS(4148), - [anon_sym_extern] = ACTIONS(4148), - [anon_sym___attribute__] = ACTIONS(4148), - [anon_sym___attribute] = ACTIONS(4148), - [anon_sym_using] = ACTIONS(4148), - [anon_sym_COLON_COLON] = ACTIONS(4150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4150), - [anon_sym___declspec] = ACTIONS(4148), - [anon_sym___based] = ACTIONS(4148), - [anon_sym___cdecl] = ACTIONS(4148), - [anon_sym___clrcall] = ACTIONS(4148), - [anon_sym___stdcall] = ACTIONS(4148), - [anon_sym___fastcall] = ACTIONS(4148), - [anon_sym___thiscall] = ACTIONS(4148), - [anon_sym___vectorcall] = ACTIONS(4148), - [anon_sym_LBRACE] = ACTIONS(4150), - [anon_sym_signed] = ACTIONS(4148), - [anon_sym_unsigned] = ACTIONS(4148), - [anon_sym_long] = ACTIONS(4148), - [anon_sym_short] = ACTIONS(4148), - [anon_sym_LBRACK] = ACTIONS(4148), - [anon_sym_static] = ACTIONS(4148), - [anon_sym_register] = ACTIONS(4148), - [anon_sym_inline] = ACTIONS(4148), - [anon_sym___inline] = ACTIONS(4148), - [anon_sym___inline__] = ACTIONS(4148), - [anon_sym___forceinline] = ACTIONS(4148), - [anon_sym_thread_local] = ACTIONS(4148), - [anon_sym___thread] = ACTIONS(4148), - [anon_sym_const] = ACTIONS(4148), - [anon_sym_constexpr] = ACTIONS(4148), - [anon_sym_volatile] = ACTIONS(4148), - [anon_sym_restrict] = ACTIONS(4148), - [anon_sym___restrict__] = ACTIONS(4148), - [anon_sym__Atomic] = ACTIONS(4148), - [anon_sym__Noreturn] = ACTIONS(4148), - [anon_sym_noreturn] = ACTIONS(4148), - [anon_sym__Nonnull] = ACTIONS(4148), - [anon_sym_mutable] = ACTIONS(4148), - [anon_sym_constinit] = ACTIONS(4148), - [anon_sym_consteval] = ACTIONS(4148), - [anon_sym_alignas] = ACTIONS(4148), - [anon_sym__Alignas] = ACTIONS(4148), - [sym_primitive_type] = ACTIONS(4148), - [anon_sym_enum] = ACTIONS(4148), - [anon_sym_class] = ACTIONS(4148), - [anon_sym_struct] = ACTIONS(4148), - [anon_sym_union] = ACTIONS(4148), - [anon_sym_if] = ACTIONS(4148), - [anon_sym_switch] = ACTIONS(4148), - [anon_sym_case] = ACTIONS(4148), - [anon_sym_default] = ACTIONS(4148), - [anon_sym_while] = ACTIONS(4148), - [anon_sym_do] = ACTIONS(4148), - [anon_sym_for] = ACTIONS(4148), - [anon_sym_return] = ACTIONS(4148), - [anon_sym_break] = ACTIONS(4148), - [anon_sym_continue] = ACTIONS(4148), - [anon_sym_goto] = ACTIONS(4148), - [anon_sym_not] = ACTIONS(4148), - [anon_sym_compl] = ACTIONS(4148), - [anon_sym_DASH_DASH] = ACTIONS(4150), - [anon_sym_PLUS_PLUS] = ACTIONS(4150), - [anon_sym_sizeof] = ACTIONS(4148), - [anon_sym___alignof__] = ACTIONS(4148), - [anon_sym___alignof] = ACTIONS(4148), - [anon_sym__alignof] = ACTIONS(4148), - [anon_sym_alignof] = ACTIONS(4148), - [anon_sym__Alignof] = ACTIONS(4148), - [anon_sym_offsetof] = ACTIONS(4148), - [anon_sym__Generic] = ACTIONS(4148), - [anon_sym_typename] = ACTIONS(4148), - [anon_sym_asm] = ACTIONS(4148), - [anon_sym___asm__] = ACTIONS(4148), - [anon_sym___asm] = ACTIONS(4148), - [sym_number_literal] = ACTIONS(4150), - [anon_sym_L_SQUOTE] = ACTIONS(4150), - [anon_sym_u_SQUOTE] = ACTIONS(4150), - [anon_sym_U_SQUOTE] = ACTIONS(4150), - [anon_sym_u8_SQUOTE] = ACTIONS(4150), - [anon_sym_SQUOTE] = ACTIONS(4150), - [anon_sym_L_DQUOTE] = ACTIONS(4150), - [anon_sym_u_DQUOTE] = ACTIONS(4150), - [anon_sym_U_DQUOTE] = ACTIONS(4150), - [anon_sym_u8_DQUOTE] = ACTIONS(4150), - [anon_sym_DQUOTE] = ACTIONS(4150), - [sym_true] = ACTIONS(4148), - [sym_false] = ACTIONS(4148), - [anon_sym_NULL] = ACTIONS(4148), - [anon_sym_nullptr] = ACTIONS(4148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4148), - [anon_sym_decltype] = ACTIONS(4148), - [anon_sym_explicit] = ACTIONS(4148), - [anon_sym_export] = ACTIONS(4148), - [anon_sym_module] = ACTIONS(4148), - [anon_sym_import] = ACTIONS(4148), - [anon_sym_template] = ACTIONS(4148), - [anon_sym_operator] = ACTIONS(4148), - [anon_sym_try] = ACTIONS(4148), - [anon_sym_delete] = ACTIONS(4148), - [anon_sym_throw] = ACTIONS(4148), - [anon_sym_namespace] = ACTIONS(4148), - [anon_sym_static_assert] = ACTIONS(4148), - [anon_sym_concept] = ACTIONS(4148), - [anon_sym_co_return] = ACTIONS(4148), - [anon_sym_co_yield] = ACTIONS(4148), - [anon_sym_R_DQUOTE] = ACTIONS(4150), - [anon_sym_LR_DQUOTE] = ACTIONS(4150), - [anon_sym_uR_DQUOTE] = ACTIONS(4150), - [anon_sym_UR_DQUOTE] = ACTIONS(4150), - [anon_sym_u8R_DQUOTE] = ACTIONS(4150), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4148), - [anon_sym_requires] = ACTIONS(4148), - [anon_sym_CARET_CARET] = ACTIONS(4150), - [anon_sym_LBRACK_COLON] = ACTIONS(4150), - [sym_this] = ACTIONS(4148), - }, - [STATE(671)] = { - [ts_builtin_sym_end] = ACTIONS(4462), - [sym_identifier] = ACTIONS(4464), - [aux_sym_preproc_include_token1] = ACTIONS(4464), - [aux_sym_preproc_def_token1] = ACTIONS(4464), - [aux_sym_preproc_if_token1] = ACTIONS(4464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4464), - [sym_preproc_directive] = ACTIONS(4464), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_TILDE] = ACTIONS(4462), - [anon_sym_DASH] = ACTIONS(4464), - [anon_sym_PLUS] = ACTIONS(4464), - [anon_sym_STAR] = ACTIONS(4462), - [anon_sym_AMP_AMP] = ACTIONS(4462), - [anon_sym_AMP] = ACTIONS(4464), - [anon_sym_SEMI] = ACTIONS(4462), - [anon_sym___extension__] = ACTIONS(4464), - [anon_sym_typedef] = ACTIONS(4464), - [anon_sym_virtual] = ACTIONS(4464), - [anon_sym_extern] = ACTIONS(4464), - [anon_sym___attribute__] = ACTIONS(4464), - [anon_sym___attribute] = ACTIONS(4464), - [anon_sym_using] = ACTIONS(4464), - [anon_sym_COLON_COLON] = ACTIONS(4462), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4462), - [anon_sym___declspec] = ACTIONS(4464), - [anon_sym___based] = ACTIONS(4464), - [anon_sym___cdecl] = ACTIONS(4464), - [anon_sym___clrcall] = ACTIONS(4464), - [anon_sym___stdcall] = ACTIONS(4464), - [anon_sym___fastcall] = ACTIONS(4464), - [anon_sym___thiscall] = ACTIONS(4464), - [anon_sym___vectorcall] = ACTIONS(4464), - [anon_sym_LBRACE] = ACTIONS(4462), - [anon_sym_signed] = ACTIONS(4464), - [anon_sym_unsigned] = ACTIONS(4464), - [anon_sym_long] = ACTIONS(4464), - [anon_sym_short] = ACTIONS(4464), - [anon_sym_LBRACK] = ACTIONS(4464), - [anon_sym_static] = ACTIONS(4464), - [anon_sym_register] = ACTIONS(4464), - [anon_sym_inline] = ACTIONS(4464), - [anon_sym___inline] = ACTIONS(4464), - [anon_sym___inline__] = ACTIONS(4464), - [anon_sym___forceinline] = ACTIONS(4464), - [anon_sym_thread_local] = ACTIONS(4464), - [anon_sym___thread] = ACTIONS(4464), - [anon_sym_const] = ACTIONS(4464), - [anon_sym_constexpr] = ACTIONS(4464), - [anon_sym_volatile] = ACTIONS(4464), - [anon_sym_restrict] = ACTIONS(4464), - [anon_sym___restrict__] = ACTIONS(4464), - [anon_sym__Atomic] = ACTIONS(4464), - [anon_sym__Noreturn] = ACTIONS(4464), - [anon_sym_noreturn] = ACTIONS(4464), - [anon_sym__Nonnull] = ACTIONS(4464), - [anon_sym_mutable] = ACTIONS(4464), - [anon_sym_constinit] = ACTIONS(4464), - [anon_sym_consteval] = ACTIONS(4464), - [anon_sym_alignas] = ACTIONS(4464), - [anon_sym__Alignas] = ACTIONS(4464), - [sym_primitive_type] = ACTIONS(4464), - [anon_sym_enum] = ACTIONS(4464), - [anon_sym_class] = ACTIONS(4464), - [anon_sym_struct] = ACTIONS(4464), - [anon_sym_union] = ACTIONS(4464), - [anon_sym_if] = ACTIONS(4464), - [anon_sym_switch] = ACTIONS(4464), - [anon_sym_case] = ACTIONS(4464), - [anon_sym_default] = ACTIONS(4464), - [anon_sym_while] = ACTIONS(4464), - [anon_sym_do] = ACTIONS(4464), - [anon_sym_for] = ACTIONS(4464), - [anon_sym_return] = ACTIONS(4464), - [anon_sym_break] = ACTIONS(4464), - [anon_sym_continue] = ACTIONS(4464), - [anon_sym_goto] = ACTIONS(4464), - [anon_sym_not] = ACTIONS(4464), - [anon_sym_compl] = ACTIONS(4464), - [anon_sym_DASH_DASH] = ACTIONS(4462), - [anon_sym_PLUS_PLUS] = ACTIONS(4462), - [anon_sym_sizeof] = ACTIONS(4464), - [anon_sym___alignof__] = ACTIONS(4464), - [anon_sym___alignof] = ACTIONS(4464), - [anon_sym__alignof] = ACTIONS(4464), - [anon_sym_alignof] = ACTIONS(4464), - [anon_sym__Alignof] = ACTIONS(4464), - [anon_sym_offsetof] = ACTIONS(4464), - [anon_sym__Generic] = ACTIONS(4464), - [anon_sym_typename] = ACTIONS(4464), - [anon_sym_asm] = ACTIONS(4464), - [anon_sym___asm__] = ACTIONS(4464), - [anon_sym___asm] = ACTIONS(4464), - [sym_number_literal] = ACTIONS(4462), - [anon_sym_L_SQUOTE] = ACTIONS(4462), - [anon_sym_u_SQUOTE] = ACTIONS(4462), - [anon_sym_U_SQUOTE] = ACTIONS(4462), - [anon_sym_u8_SQUOTE] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym_L_DQUOTE] = ACTIONS(4462), - [anon_sym_u_DQUOTE] = ACTIONS(4462), - [anon_sym_U_DQUOTE] = ACTIONS(4462), - [anon_sym_u8_DQUOTE] = ACTIONS(4462), - [anon_sym_DQUOTE] = ACTIONS(4462), - [sym_true] = ACTIONS(4464), - [sym_false] = ACTIONS(4464), - [anon_sym_NULL] = ACTIONS(4464), - [anon_sym_nullptr] = ACTIONS(4464), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4464), - [anon_sym_decltype] = ACTIONS(4464), - [anon_sym_explicit] = ACTIONS(4464), - [anon_sym_export] = ACTIONS(4464), - [anon_sym_module] = ACTIONS(4464), - [anon_sym_import] = ACTIONS(4464), - [anon_sym_template] = ACTIONS(4464), - [anon_sym_operator] = ACTIONS(4464), - [anon_sym_try] = ACTIONS(4464), - [anon_sym_delete] = ACTIONS(4464), - [anon_sym_throw] = ACTIONS(4464), - [anon_sym_namespace] = ACTIONS(4464), - [anon_sym_static_assert] = ACTIONS(4464), - [anon_sym_concept] = ACTIONS(4464), - [anon_sym_co_return] = ACTIONS(4464), - [anon_sym_co_yield] = ACTIONS(4464), - [anon_sym_R_DQUOTE] = ACTIONS(4462), - [anon_sym_LR_DQUOTE] = ACTIONS(4462), - [anon_sym_uR_DQUOTE] = ACTIONS(4462), - [anon_sym_UR_DQUOTE] = ACTIONS(4462), - [anon_sym_u8R_DQUOTE] = ACTIONS(4462), - [anon_sym_co_await] = ACTIONS(4464), - [anon_sym_new] = ACTIONS(4464), - [anon_sym_requires] = ACTIONS(4464), - [anon_sym_CARET_CARET] = ACTIONS(4462), - [anon_sym_LBRACK_COLON] = ACTIONS(4462), - [sym_this] = ACTIONS(4464), - }, - [STATE(672)] = { - [sym_identifier] = ACTIONS(3668), - [aux_sym_preproc_include_token1] = ACTIONS(3668), - [aux_sym_preproc_def_token1] = ACTIONS(3668), - [aux_sym_preproc_if_token1] = ACTIONS(3668), - [aux_sym_preproc_if_token2] = ACTIONS(3668), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), - [sym_preproc_directive] = ACTIONS(3668), - [anon_sym_LPAREN2] = ACTIONS(3670), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_TILDE] = ACTIONS(3670), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3670), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_SEMI] = ACTIONS(3670), - [anon_sym___extension__] = ACTIONS(3668), - [anon_sym_typedef] = ACTIONS(3668), - [anon_sym_virtual] = ACTIONS(3668), - [anon_sym_extern] = ACTIONS(3668), - [anon_sym___attribute__] = ACTIONS(3668), - [anon_sym___attribute] = ACTIONS(3668), - [anon_sym_using] = ACTIONS(3668), - [anon_sym_COLON_COLON] = ACTIONS(3670), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), - [anon_sym___declspec] = ACTIONS(3668), - [anon_sym___based] = ACTIONS(3668), - [anon_sym___cdecl] = ACTIONS(3668), - [anon_sym___clrcall] = ACTIONS(3668), - [anon_sym___stdcall] = ACTIONS(3668), - [anon_sym___fastcall] = ACTIONS(3668), - [anon_sym___thiscall] = ACTIONS(3668), - [anon_sym___vectorcall] = ACTIONS(3668), - [anon_sym_LBRACE] = ACTIONS(3670), - [anon_sym_signed] = ACTIONS(3668), - [anon_sym_unsigned] = ACTIONS(3668), - [anon_sym_long] = ACTIONS(3668), - [anon_sym_short] = ACTIONS(3668), - [anon_sym_LBRACK] = ACTIONS(3668), - [anon_sym_static] = ACTIONS(3668), - [anon_sym_register] = ACTIONS(3668), - [anon_sym_inline] = ACTIONS(3668), - [anon_sym___inline] = ACTIONS(3668), - [anon_sym___inline__] = ACTIONS(3668), - [anon_sym___forceinline] = ACTIONS(3668), - [anon_sym_thread_local] = ACTIONS(3668), - [anon_sym___thread] = ACTIONS(3668), - [anon_sym_const] = ACTIONS(3668), - [anon_sym_constexpr] = ACTIONS(3668), - [anon_sym_volatile] = ACTIONS(3668), - [anon_sym_restrict] = ACTIONS(3668), - [anon_sym___restrict__] = ACTIONS(3668), - [anon_sym__Atomic] = ACTIONS(3668), - [anon_sym__Noreturn] = ACTIONS(3668), - [anon_sym_noreturn] = ACTIONS(3668), - [anon_sym__Nonnull] = ACTIONS(3668), - [anon_sym_mutable] = ACTIONS(3668), - [anon_sym_constinit] = ACTIONS(3668), - [anon_sym_consteval] = ACTIONS(3668), - [anon_sym_alignas] = ACTIONS(3668), - [anon_sym__Alignas] = ACTIONS(3668), - [sym_primitive_type] = ACTIONS(3668), - [anon_sym_enum] = ACTIONS(3668), - [anon_sym_class] = ACTIONS(3668), - [anon_sym_struct] = ACTIONS(3668), - [anon_sym_union] = ACTIONS(3668), - [anon_sym_if] = ACTIONS(3668), - [anon_sym_else] = ACTIONS(3668), - [anon_sym_switch] = ACTIONS(3668), - [anon_sym_case] = ACTIONS(3668), - [anon_sym_default] = ACTIONS(3668), - [anon_sym_while] = ACTIONS(3668), - [anon_sym_do] = ACTIONS(3668), - [anon_sym_for] = ACTIONS(3668), - [anon_sym_return] = ACTIONS(3668), - [anon_sym_break] = ACTIONS(3668), - [anon_sym_continue] = ACTIONS(3668), - [anon_sym_goto] = ACTIONS(3668), - [anon_sym___try] = ACTIONS(3668), - [anon_sym___leave] = ACTIONS(3668), - [anon_sym_not] = ACTIONS(3668), - [anon_sym_compl] = ACTIONS(3668), - [anon_sym_DASH_DASH] = ACTIONS(3670), - [anon_sym_PLUS_PLUS] = ACTIONS(3670), - [anon_sym_sizeof] = ACTIONS(3668), - [anon_sym___alignof__] = ACTIONS(3668), - [anon_sym___alignof] = ACTIONS(3668), - [anon_sym__alignof] = ACTIONS(3668), - [anon_sym_alignof] = ACTIONS(3668), - [anon_sym__Alignof] = ACTIONS(3668), - [anon_sym_offsetof] = ACTIONS(3668), - [anon_sym__Generic] = ACTIONS(3668), - [anon_sym_typename] = ACTIONS(3668), - [anon_sym_asm] = ACTIONS(3668), - [anon_sym___asm__] = ACTIONS(3668), - [anon_sym___asm] = ACTIONS(3668), - [sym_number_literal] = ACTIONS(3670), - [anon_sym_L_SQUOTE] = ACTIONS(3670), - [anon_sym_u_SQUOTE] = ACTIONS(3670), - [anon_sym_U_SQUOTE] = ACTIONS(3670), - [anon_sym_u8_SQUOTE] = ACTIONS(3670), - [anon_sym_SQUOTE] = ACTIONS(3670), - [anon_sym_L_DQUOTE] = ACTIONS(3670), - [anon_sym_u_DQUOTE] = ACTIONS(3670), - [anon_sym_U_DQUOTE] = ACTIONS(3670), - [anon_sym_u8_DQUOTE] = ACTIONS(3670), - [anon_sym_DQUOTE] = ACTIONS(3670), - [sym_true] = ACTIONS(3668), - [sym_false] = ACTIONS(3668), - [anon_sym_NULL] = ACTIONS(3668), - [anon_sym_nullptr] = ACTIONS(3668), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3668), - [anon_sym_decltype] = ACTIONS(3668), - [anon_sym_explicit] = ACTIONS(3668), - [anon_sym_template] = ACTIONS(3668), - [anon_sym_operator] = ACTIONS(3668), - [anon_sym_try] = ACTIONS(3668), - [anon_sym_delete] = ACTIONS(3668), - [anon_sym_throw] = ACTIONS(3668), - [anon_sym_namespace] = ACTIONS(3668), - [anon_sym_static_assert] = ACTIONS(3668), - [anon_sym_concept] = ACTIONS(3668), - [anon_sym_co_return] = ACTIONS(3668), - [anon_sym_co_yield] = ACTIONS(3668), - [anon_sym_R_DQUOTE] = ACTIONS(3670), - [anon_sym_LR_DQUOTE] = ACTIONS(3670), - [anon_sym_uR_DQUOTE] = ACTIONS(3670), - [anon_sym_UR_DQUOTE] = ACTIONS(3670), - [anon_sym_u8R_DQUOTE] = ACTIONS(3670), - [anon_sym_co_await] = ACTIONS(3668), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_requires] = ACTIONS(3668), - [anon_sym_CARET_CARET] = ACTIONS(3670), - [anon_sym_LBRACK_COLON] = ACTIONS(3670), - [sym_this] = ACTIONS(3668), - }, - [STATE(673)] = { - [sym_identifier] = ACTIONS(3708), - [aux_sym_preproc_include_token1] = ACTIONS(3708), - [aux_sym_preproc_def_token1] = ACTIONS(3708), - [aux_sym_preproc_if_token1] = ACTIONS(3708), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3708), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3708), - [sym_preproc_directive] = ACTIONS(3708), - [anon_sym_LPAREN2] = ACTIONS(3710), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3708), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3708), - [anon_sym_SEMI] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3708), - [anon_sym_typedef] = ACTIONS(3708), - [anon_sym_virtual] = ACTIONS(3708), - [anon_sym_extern] = ACTIONS(3708), - [anon_sym___attribute__] = ACTIONS(3708), - [anon_sym___attribute] = ACTIONS(3708), - [anon_sym_using] = ACTIONS(3708), - [anon_sym_COLON_COLON] = ACTIONS(3710), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3710), - [anon_sym___declspec] = ACTIONS(3708), - [anon_sym___based] = ACTIONS(3708), - [anon_sym___cdecl] = ACTIONS(3708), - [anon_sym___clrcall] = ACTIONS(3708), - [anon_sym___stdcall] = ACTIONS(3708), - [anon_sym___fastcall] = ACTIONS(3708), - [anon_sym___thiscall] = ACTIONS(3708), - [anon_sym___vectorcall] = ACTIONS(3708), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_RBRACE] = ACTIONS(3710), - [anon_sym_signed] = ACTIONS(3708), - [anon_sym_unsigned] = ACTIONS(3708), - [anon_sym_long] = ACTIONS(3708), - [anon_sym_short] = ACTIONS(3708), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_static] = ACTIONS(3708), - [anon_sym_register] = ACTIONS(3708), - [anon_sym_inline] = ACTIONS(3708), - [anon_sym___inline] = ACTIONS(3708), - [anon_sym___inline__] = ACTIONS(3708), - [anon_sym___forceinline] = ACTIONS(3708), - [anon_sym_thread_local] = ACTIONS(3708), - [anon_sym___thread] = ACTIONS(3708), - [anon_sym_const] = ACTIONS(3708), - [anon_sym_constexpr] = ACTIONS(3708), - [anon_sym_volatile] = ACTIONS(3708), - [anon_sym_restrict] = ACTIONS(3708), - [anon_sym___restrict__] = ACTIONS(3708), - [anon_sym__Atomic] = ACTIONS(3708), - [anon_sym__Noreturn] = ACTIONS(3708), - [anon_sym_noreturn] = ACTIONS(3708), - [anon_sym__Nonnull] = ACTIONS(3708), - [anon_sym_mutable] = ACTIONS(3708), - [anon_sym_constinit] = ACTIONS(3708), - [anon_sym_consteval] = ACTIONS(3708), - [anon_sym_alignas] = ACTIONS(3708), - [anon_sym__Alignas] = ACTIONS(3708), - [sym_primitive_type] = ACTIONS(3708), - [anon_sym_enum] = ACTIONS(3708), - [anon_sym_class] = ACTIONS(3708), - [anon_sym_struct] = ACTIONS(3708), - [anon_sym_union] = ACTIONS(3708), - [anon_sym_if] = ACTIONS(3708), - [anon_sym_else] = ACTIONS(3708), - [anon_sym_switch] = ACTIONS(3708), - [anon_sym_case] = ACTIONS(3708), - [anon_sym_default] = ACTIONS(3708), - [anon_sym_while] = ACTIONS(3708), - [anon_sym_do] = ACTIONS(3708), - [anon_sym_for] = ACTIONS(3708), - [anon_sym_return] = ACTIONS(3708), - [anon_sym_break] = ACTIONS(3708), - [anon_sym_continue] = ACTIONS(3708), - [anon_sym_goto] = ACTIONS(3708), - [anon_sym___try] = ACTIONS(3708), - [anon_sym___leave] = ACTIONS(3708), - [anon_sym_not] = ACTIONS(3708), - [anon_sym_compl] = ACTIONS(3708), - [anon_sym_DASH_DASH] = ACTIONS(3710), - [anon_sym_PLUS_PLUS] = ACTIONS(3710), - [anon_sym_sizeof] = ACTIONS(3708), - [anon_sym___alignof__] = ACTIONS(3708), - [anon_sym___alignof] = ACTIONS(3708), - [anon_sym__alignof] = ACTIONS(3708), - [anon_sym_alignof] = ACTIONS(3708), - [anon_sym__Alignof] = ACTIONS(3708), - [anon_sym_offsetof] = ACTIONS(3708), - [anon_sym__Generic] = ACTIONS(3708), - [anon_sym_typename] = ACTIONS(3708), - [anon_sym_asm] = ACTIONS(3708), - [anon_sym___asm__] = ACTIONS(3708), - [anon_sym___asm] = ACTIONS(3708), - [sym_number_literal] = ACTIONS(3710), - [anon_sym_L_SQUOTE] = ACTIONS(3710), - [anon_sym_u_SQUOTE] = ACTIONS(3710), - [anon_sym_U_SQUOTE] = ACTIONS(3710), - [anon_sym_u8_SQUOTE] = ACTIONS(3710), - [anon_sym_SQUOTE] = ACTIONS(3710), - [anon_sym_L_DQUOTE] = ACTIONS(3710), - [anon_sym_u_DQUOTE] = ACTIONS(3710), - [anon_sym_U_DQUOTE] = ACTIONS(3710), - [anon_sym_u8_DQUOTE] = ACTIONS(3710), - [anon_sym_DQUOTE] = ACTIONS(3710), - [sym_true] = ACTIONS(3708), - [sym_false] = ACTIONS(3708), - [anon_sym_NULL] = ACTIONS(3708), - [anon_sym_nullptr] = ACTIONS(3708), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3708), - [anon_sym_decltype] = ACTIONS(3708), - [anon_sym_explicit] = ACTIONS(3708), - [anon_sym_template] = ACTIONS(3708), - [anon_sym_operator] = ACTIONS(3708), - [anon_sym_try] = ACTIONS(3708), - [anon_sym_delete] = ACTIONS(3708), - [anon_sym_throw] = ACTIONS(3708), - [anon_sym_namespace] = ACTIONS(3708), - [anon_sym_static_assert] = ACTIONS(3708), - [anon_sym_concept] = ACTIONS(3708), - [anon_sym_co_return] = ACTIONS(3708), - [anon_sym_co_yield] = ACTIONS(3708), - [anon_sym_R_DQUOTE] = ACTIONS(3710), - [anon_sym_LR_DQUOTE] = ACTIONS(3710), - [anon_sym_uR_DQUOTE] = ACTIONS(3710), - [anon_sym_UR_DQUOTE] = ACTIONS(3710), - [anon_sym_u8R_DQUOTE] = ACTIONS(3710), - [anon_sym_co_await] = ACTIONS(3708), - [anon_sym_new] = ACTIONS(3708), - [anon_sym_requires] = ACTIONS(3708), - [anon_sym_CARET_CARET] = ACTIONS(3710), - [anon_sym_LBRACK_COLON] = ACTIONS(3710), - [sym_this] = ACTIONS(3708), - }, - [STATE(674)] = { - [ts_builtin_sym_end] = ACTIONS(4466), - [sym_identifier] = ACTIONS(4468), - [aux_sym_preproc_include_token1] = ACTIONS(4468), - [aux_sym_preproc_def_token1] = ACTIONS(4468), - [aux_sym_preproc_if_token1] = ACTIONS(4468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4468), - [sym_preproc_directive] = ACTIONS(4468), - [anon_sym_LPAREN2] = ACTIONS(4466), - [anon_sym_BANG] = ACTIONS(4466), - [anon_sym_TILDE] = ACTIONS(4466), - [anon_sym_DASH] = ACTIONS(4468), - [anon_sym_PLUS] = ACTIONS(4468), - [anon_sym_STAR] = ACTIONS(4466), - [anon_sym_AMP_AMP] = ACTIONS(4466), - [anon_sym_AMP] = ACTIONS(4468), - [anon_sym_SEMI] = ACTIONS(4466), - [anon_sym___extension__] = ACTIONS(4468), - [anon_sym_typedef] = ACTIONS(4468), - [anon_sym_virtual] = ACTIONS(4468), - [anon_sym_extern] = ACTIONS(4468), - [anon_sym___attribute__] = ACTIONS(4468), - [anon_sym___attribute] = ACTIONS(4468), - [anon_sym_using] = ACTIONS(4468), - [anon_sym_COLON_COLON] = ACTIONS(4466), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4466), - [anon_sym___declspec] = ACTIONS(4468), - [anon_sym___based] = ACTIONS(4468), - [anon_sym___cdecl] = ACTIONS(4468), - [anon_sym___clrcall] = ACTIONS(4468), - [anon_sym___stdcall] = ACTIONS(4468), - [anon_sym___fastcall] = ACTIONS(4468), - [anon_sym___thiscall] = ACTIONS(4468), - [anon_sym___vectorcall] = ACTIONS(4468), - [anon_sym_LBRACE] = ACTIONS(4466), - [anon_sym_signed] = ACTIONS(4468), - [anon_sym_unsigned] = ACTIONS(4468), - [anon_sym_long] = ACTIONS(4468), - [anon_sym_short] = ACTIONS(4468), - [anon_sym_LBRACK] = ACTIONS(4468), - [anon_sym_static] = ACTIONS(4468), - [anon_sym_register] = ACTIONS(4468), - [anon_sym_inline] = ACTIONS(4468), - [anon_sym___inline] = ACTIONS(4468), - [anon_sym___inline__] = ACTIONS(4468), - [anon_sym___forceinline] = ACTIONS(4468), - [anon_sym_thread_local] = ACTIONS(4468), - [anon_sym___thread] = ACTIONS(4468), - [anon_sym_const] = ACTIONS(4468), - [anon_sym_constexpr] = ACTIONS(4468), - [anon_sym_volatile] = ACTIONS(4468), - [anon_sym_restrict] = ACTIONS(4468), - [anon_sym___restrict__] = ACTIONS(4468), - [anon_sym__Atomic] = ACTIONS(4468), - [anon_sym__Noreturn] = ACTIONS(4468), - [anon_sym_noreturn] = ACTIONS(4468), - [anon_sym__Nonnull] = ACTIONS(4468), - [anon_sym_mutable] = ACTIONS(4468), - [anon_sym_constinit] = ACTIONS(4468), - [anon_sym_consteval] = ACTIONS(4468), - [anon_sym_alignas] = ACTIONS(4468), - [anon_sym__Alignas] = ACTIONS(4468), - [sym_primitive_type] = ACTIONS(4468), - [anon_sym_enum] = ACTIONS(4468), - [anon_sym_class] = ACTIONS(4468), - [anon_sym_struct] = ACTIONS(4468), - [anon_sym_union] = ACTIONS(4468), - [anon_sym_if] = ACTIONS(4468), - [anon_sym_switch] = ACTIONS(4468), - [anon_sym_case] = ACTIONS(4468), - [anon_sym_default] = ACTIONS(4468), - [anon_sym_while] = ACTIONS(4468), - [anon_sym_do] = ACTIONS(4468), - [anon_sym_for] = ACTIONS(4468), - [anon_sym_return] = ACTIONS(4468), - [anon_sym_break] = ACTIONS(4468), - [anon_sym_continue] = ACTIONS(4468), - [anon_sym_goto] = ACTIONS(4468), - [anon_sym_not] = ACTIONS(4468), - [anon_sym_compl] = ACTIONS(4468), - [anon_sym_DASH_DASH] = ACTIONS(4466), - [anon_sym_PLUS_PLUS] = ACTIONS(4466), - [anon_sym_sizeof] = ACTIONS(4468), - [anon_sym___alignof__] = ACTIONS(4468), - [anon_sym___alignof] = ACTIONS(4468), - [anon_sym__alignof] = ACTIONS(4468), - [anon_sym_alignof] = ACTIONS(4468), - [anon_sym__Alignof] = ACTIONS(4468), - [anon_sym_offsetof] = ACTIONS(4468), - [anon_sym__Generic] = ACTIONS(4468), - [anon_sym_typename] = ACTIONS(4468), - [anon_sym_asm] = ACTIONS(4468), - [anon_sym___asm__] = ACTIONS(4468), - [anon_sym___asm] = ACTIONS(4468), - [sym_number_literal] = ACTIONS(4466), - [anon_sym_L_SQUOTE] = ACTIONS(4466), - [anon_sym_u_SQUOTE] = ACTIONS(4466), - [anon_sym_U_SQUOTE] = ACTIONS(4466), - [anon_sym_u8_SQUOTE] = ACTIONS(4466), - [anon_sym_SQUOTE] = ACTIONS(4466), - [anon_sym_L_DQUOTE] = ACTIONS(4466), - [anon_sym_u_DQUOTE] = ACTIONS(4466), - [anon_sym_U_DQUOTE] = ACTIONS(4466), - [anon_sym_u8_DQUOTE] = ACTIONS(4466), - [anon_sym_DQUOTE] = ACTIONS(4466), - [sym_true] = ACTIONS(4468), - [sym_false] = ACTIONS(4468), - [anon_sym_NULL] = ACTIONS(4468), - [anon_sym_nullptr] = ACTIONS(4468), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4468), - [anon_sym_decltype] = ACTIONS(4468), - [anon_sym_explicit] = ACTIONS(4468), - [anon_sym_export] = ACTIONS(4468), - [anon_sym_module] = ACTIONS(4468), - [anon_sym_import] = ACTIONS(4468), - [anon_sym_template] = ACTIONS(4468), - [anon_sym_operator] = ACTIONS(4468), - [anon_sym_try] = ACTIONS(4468), - [anon_sym_delete] = ACTIONS(4468), - [anon_sym_throw] = ACTIONS(4468), - [anon_sym_namespace] = ACTIONS(4468), - [anon_sym_static_assert] = ACTIONS(4468), - [anon_sym_concept] = ACTIONS(4468), - [anon_sym_co_return] = ACTIONS(4468), - [anon_sym_co_yield] = ACTIONS(4468), - [anon_sym_R_DQUOTE] = ACTIONS(4466), - [anon_sym_LR_DQUOTE] = ACTIONS(4466), - [anon_sym_uR_DQUOTE] = ACTIONS(4466), - [anon_sym_UR_DQUOTE] = ACTIONS(4466), - [anon_sym_u8R_DQUOTE] = ACTIONS(4466), - [anon_sym_co_await] = ACTIONS(4468), - [anon_sym_new] = ACTIONS(4468), - [anon_sym_requires] = ACTIONS(4468), - [anon_sym_CARET_CARET] = ACTIONS(4466), - [anon_sym_LBRACK_COLON] = ACTIONS(4466), - [sym_this] = ACTIONS(4468), - }, - [STATE(675)] = { - [ts_builtin_sym_end] = ACTIONS(4470), - [sym_identifier] = ACTIONS(4472), - [aux_sym_preproc_include_token1] = ACTIONS(4472), - [aux_sym_preproc_def_token1] = ACTIONS(4472), - [aux_sym_preproc_if_token1] = ACTIONS(4472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4472), - [sym_preproc_directive] = ACTIONS(4472), - [anon_sym_LPAREN2] = ACTIONS(4470), - [anon_sym_BANG] = ACTIONS(4470), - [anon_sym_TILDE] = ACTIONS(4470), - [anon_sym_DASH] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4472), - [anon_sym_STAR] = ACTIONS(4470), - [anon_sym_AMP_AMP] = ACTIONS(4470), - [anon_sym_AMP] = ACTIONS(4472), - [anon_sym_SEMI] = ACTIONS(4470), - [anon_sym___extension__] = ACTIONS(4472), - [anon_sym_typedef] = ACTIONS(4472), - [anon_sym_virtual] = ACTIONS(4472), - [anon_sym_extern] = ACTIONS(4472), - [anon_sym___attribute__] = ACTIONS(4472), - [anon_sym___attribute] = ACTIONS(4472), - [anon_sym_using] = ACTIONS(4472), - [anon_sym_COLON_COLON] = ACTIONS(4470), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4470), - [anon_sym___declspec] = ACTIONS(4472), - [anon_sym___based] = ACTIONS(4472), - [anon_sym___cdecl] = ACTIONS(4472), - [anon_sym___clrcall] = ACTIONS(4472), - [anon_sym___stdcall] = ACTIONS(4472), - [anon_sym___fastcall] = ACTIONS(4472), - [anon_sym___thiscall] = ACTIONS(4472), - [anon_sym___vectorcall] = ACTIONS(4472), - [anon_sym_LBRACE] = ACTIONS(4470), - [anon_sym_signed] = ACTIONS(4472), - [anon_sym_unsigned] = ACTIONS(4472), - [anon_sym_long] = ACTIONS(4472), - [anon_sym_short] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4472), - [anon_sym_static] = ACTIONS(4472), - [anon_sym_register] = ACTIONS(4472), - [anon_sym_inline] = ACTIONS(4472), - [anon_sym___inline] = ACTIONS(4472), - [anon_sym___inline__] = ACTIONS(4472), - [anon_sym___forceinline] = ACTIONS(4472), - [anon_sym_thread_local] = ACTIONS(4472), - [anon_sym___thread] = ACTIONS(4472), - [anon_sym_const] = ACTIONS(4472), - [anon_sym_constexpr] = ACTIONS(4472), - [anon_sym_volatile] = ACTIONS(4472), - [anon_sym_restrict] = ACTIONS(4472), - [anon_sym___restrict__] = ACTIONS(4472), - [anon_sym__Atomic] = ACTIONS(4472), - [anon_sym__Noreturn] = ACTIONS(4472), - [anon_sym_noreturn] = ACTIONS(4472), - [anon_sym__Nonnull] = ACTIONS(4472), - [anon_sym_mutable] = ACTIONS(4472), - [anon_sym_constinit] = ACTIONS(4472), - [anon_sym_consteval] = ACTIONS(4472), - [anon_sym_alignas] = ACTIONS(4472), - [anon_sym__Alignas] = ACTIONS(4472), - [sym_primitive_type] = ACTIONS(4472), - [anon_sym_enum] = ACTIONS(4472), - [anon_sym_class] = ACTIONS(4472), - [anon_sym_struct] = ACTIONS(4472), - [anon_sym_union] = ACTIONS(4472), - [anon_sym_if] = ACTIONS(4472), - [anon_sym_switch] = ACTIONS(4472), - [anon_sym_case] = ACTIONS(4472), - [anon_sym_default] = ACTIONS(4472), - [anon_sym_while] = ACTIONS(4472), - [anon_sym_do] = ACTIONS(4472), - [anon_sym_for] = ACTIONS(4472), - [anon_sym_return] = ACTIONS(4472), - [anon_sym_break] = ACTIONS(4472), - [anon_sym_continue] = ACTIONS(4472), - [anon_sym_goto] = ACTIONS(4472), - [anon_sym_not] = ACTIONS(4472), - [anon_sym_compl] = ACTIONS(4472), - [anon_sym_DASH_DASH] = ACTIONS(4470), - [anon_sym_PLUS_PLUS] = ACTIONS(4470), - [anon_sym_sizeof] = ACTIONS(4472), - [anon_sym___alignof__] = ACTIONS(4472), - [anon_sym___alignof] = ACTIONS(4472), - [anon_sym__alignof] = ACTIONS(4472), - [anon_sym_alignof] = ACTIONS(4472), - [anon_sym__Alignof] = ACTIONS(4472), - [anon_sym_offsetof] = ACTIONS(4472), - [anon_sym__Generic] = ACTIONS(4472), - [anon_sym_typename] = ACTIONS(4472), - [anon_sym_asm] = ACTIONS(4472), - [anon_sym___asm__] = ACTIONS(4472), - [anon_sym___asm] = ACTIONS(4472), - [sym_number_literal] = ACTIONS(4470), - [anon_sym_L_SQUOTE] = ACTIONS(4470), - [anon_sym_u_SQUOTE] = ACTIONS(4470), - [anon_sym_U_SQUOTE] = ACTIONS(4470), - [anon_sym_u8_SQUOTE] = ACTIONS(4470), - [anon_sym_SQUOTE] = ACTIONS(4470), - [anon_sym_L_DQUOTE] = ACTIONS(4470), - [anon_sym_u_DQUOTE] = ACTIONS(4470), - [anon_sym_U_DQUOTE] = ACTIONS(4470), - [anon_sym_u8_DQUOTE] = ACTIONS(4470), - [anon_sym_DQUOTE] = ACTIONS(4470), - [sym_true] = ACTIONS(4472), - [sym_false] = ACTIONS(4472), - [anon_sym_NULL] = ACTIONS(4472), - [anon_sym_nullptr] = ACTIONS(4472), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4472), - [anon_sym_decltype] = ACTIONS(4472), - [anon_sym_explicit] = ACTIONS(4472), - [anon_sym_export] = ACTIONS(4472), - [anon_sym_module] = ACTIONS(4472), - [anon_sym_import] = ACTIONS(4472), - [anon_sym_template] = ACTIONS(4472), - [anon_sym_operator] = ACTIONS(4472), - [anon_sym_try] = ACTIONS(4472), - [anon_sym_delete] = ACTIONS(4472), - [anon_sym_throw] = ACTIONS(4472), - [anon_sym_namespace] = ACTIONS(4472), - [anon_sym_static_assert] = ACTIONS(4472), - [anon_sym_concept] = ACTIONS(4472), - [anon_sym_co_return] = ACTIONS(4472), - [anon_sym_co_yield] = ACTIONS(4472), - [anon_sym_R_DQUOTE] = ACTIONS(4470), - [anon_sym_LR_DQUOTE] = ACTIONS(4470), - [anon_sym_uR_DQUOTE] = ACTIONS(4470), - [anon_sym_UR_DQUOTE] = ACTIONS(4470), - [anon_sym_u8R_DQUOTE] = ACTIONS(4470), - [anon_sym_co_await] = ACTIONS(4472), - [anon_sym_new] = ACTIONS(4472), - [anon_sym_requires] = ACTIONS(4472), - [anon_sym_CARET_CARET] = ACTIONS(4470), - [anon_sym_LBRACK_COLON] = ACTIONS(4470), - [sym_this] = ACTIONS(4472), - }, - [STATE(676)] = { - [sym_preproc_def] = STATE(583), - [sym_preproc_function_def] = STATE(583), - [sym_preproc_call] = STATE(583), - [sym_preproc_if_in_field_declaration_list] = STATE(583), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(583), - [sym_type_definition] = STATE(583), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7964), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(583), - [sym_field_declaration] = STATE(583), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(583), - [sym_operator_cast] = STATE(9142), - [sym_inline_method_definition] = STATE(583), - [sym__constructor_specifiers] = STATE(2332), - [sym_operator_cast_definition] = STATE(583), - [sym_operator_cast_declaration] = STATE(583), - [sym_constructor_or_destructor_definition] = STATE(583), - [sym_constructor_or_destructor_declaration] = STATE(583), - [sym_friend_declaration] = STATE(583), - [sym_access_specifier] = STATE(11109), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(583), - [sym_alias_declaration] = STATE(583), - [sym_static_assert_declaration] = STATE(583), - [sym_consteval_block_declaration] = STATE(583), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(583), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9371), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(4352), - [aux_sym_preproc_if_token1] = ACTIONS(4354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), - [sym_preproc_directive] = ACTIONS(4358), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(4408), - [anon_sym___extension__] = ACTIONS(4362), - [anon_sym_typedef] = ACTIONS(4364), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4474), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4372), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(4374), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4376), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(4378), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(677)] = { - [sym_identifier] = ACTIONS(3716), - [aux_sym_preproc_include_token1] = ACTIONS(3716), - [aux_sym_preproc_def_token1] = ACTIONS(3716), - [aux_sym_preproc_if_token1] = ACTIONS(3716), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3716), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3716), - [sym_preproc_directive] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3718), - [anon_sym_BANG] = ACTIONS(3718), - [anon_sym_TILDE] = ACTIONS(3718), - [anon_sym_DASH] = ACTIONS(3716), - [anon_sym_PLUS] = ACTIONS(3716), - [anon_sym_STAR] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_AMP] = ACTIONS(3716), - [anon_sym_SEMI] = ACTIONS(3718), - [anon_sym___extension__] = ACTIONS(3716), - [anon_sym_typedef] = ACTIONS(3716), - [anon_sym_virtual] = ACTIONS(3716), - [anon_sym_extern] = ACTIONS(3716), - [anon_sym___attribute__] = ACTIONS(3716), - [anon_sym___attribute] = ACTIONS(3716), - [anon_sym_using] = ACTIONS(3716), - [anon_sym_COLON_COLON] = ACTIONS(3718), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3718), - [anon_sym___declspec] = ACTIONS(3716), - [anon_sym___based] = ACTIONS(3716), - [anon_sym___cdecl] = ACTIONS(3716), - [anon_sym___clrcall] = ACTIONS(3716), - [anon_sym___stdcall] = ACTIONS(3716), - [anon_sym___fastcall] = ACTIONS(3716), - [anon_sym___thiscall] = ACTIONS(3716), - [anon_sym___vectorcall] = ACTIONS(3716), - [anon_sym_LBRACE] = ACTIONS(3718), - [anon_sym_RBRACE] = ACTIONS(3718), - [anon_sym_signed] = ACTIONS(3716), - [anon_sym_unsigned] = ACTIONS(3716), - [anon_sym_long] = ACTIONS(3716), - [anon_sym_short] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(3716), - [anon_sym_static] = ACTIONS(3716), - [anon_sym_register] = ACTIONS(3716), - [anon_sym_inline] = ACTIONS(3716), - [anon_sym___inline] = ACTIONS(3716), - [anon_sym___inline__] = ACTIONS(3716), - [anon_sym___forceinline] = ACTIONS(3716), - [anon_sym_thread_local] = ACTIONS(3716), - [anon_sym___thread] = ACTIONS(3716), - [anon_sym_const] = ACTIONS(3716), - [anon_sym_constexpr] = ACTIONS(3716), - [anon_sym_volatile] = ACTIONS(3716), - [anon_sym_restrict] = ACTIONS(3716), - [anon_sym___restrict__] = ACTIONS(3716), - [anon_sym__Atomic] = ACTIONS(3716), - [anon_sym__Noreturn] = ACTIONS(3716), - [anon_sym_noreturn] = ACTIONS(3716), - [anon_sym__Nonnull] = ACTIONS(3716), - [anon_sym_mutable] = ACTIONS(3716), - [anon_sym_constinit] = ACTIONS(3716), - [anon_sym_consteval] = ACTIONS(3716), - [anon_sym_alignas] = ACTIONS(3716), - [anon_sym__Alignas] = ACTIONS(3716), - [sym_primitive_type] = ACTIONS(3716), - [anon_sym_enum] = ACTIONS(3716), - [anon_sym_class] = ACTIONS(3716), - [anon_sym_struct] = ACTIONS(3716), - [anon_sym_union] = ACTIONS(3716), - [anon_sym_if] = ACTIONS(3716), - [anon_sym_else] = ACTIONS(3716), - [anon_sym_switch] = ACTIONS(3716), - [anon_sym_case] = ACTIONS(3716), - [anon_sym_default] = ACTIONS(3716), - [anon_sym_while] = ACTIONS(3716), - [anon_sym_do] = ACTIONS(3716), - [anon_sym_for] = ACTIONS(3716), - [anon_sym_return] = ACTIONS(3716), - [anon_sym_break] = ACTIONS(3716), - [anon_sym_continue] = ACTIONS(3716), - [anon_sym_goto] = ACTIONS(3716), - [anon_sym___try] = ACTIONS(3716), - [anon_sym___leave] = ACTIONS(3716), - [anon_sym_not] = ACTIONS(3716), - [anon_sym_compl] = ACTIONS(3716), - [anon_sym_DASH_DASH] = ACTIONS(3718), - [anon_sym_PLUS_PLUS] = ACTIONS(3718), - [anon_sym_sizeof] = ACTIONS(3716), - [anon_sym___alignof__] = ACTIONS(3716), - [anon_sym___alignof] = ACTIONS(3716), - [anon_sym__alignof] = ACTIONS(3716), - [anon_sym_alignof] = ACTIONS(3716), - [anon_sym__Alignof] = ACTIONS(3716), - [anon_sym_offsetof] = ACTIONS(3716), - [anon_sym__Generic] = ACTIONS(3716), - [anon_sym_typename] = ACTIONS(3716), - [anon_sym_asm] = ACTIONS(3716), - [anon_sym___asm__] = ACTIONS(3716), - [anon_sym___asm] = ACTIONS(3716), - [sym_number_literal] = ACTIONS(3718), - [anon_sym_L_SQUOTE] = ACTIONS(3718), - [anon_sym_u_SQUOTE] = ACTIONS(3718), - [anon_sym_U_SQUOTE] = ACTIONS(3718), - [anon_sym_u8_SQUOTE] = ACTIONS(3718), - [anon_sym_SQUOTE] = ACTIONS(3718), - [anon_sym_L_DQUOTE] = ACTIONS(3718), - [anon_sym_u_DQUOTE] = ACTIONS(3718), - [anon_sym_U_DQUOTE] = ACTIONS(3718), - [anon_sym_u8_DQUOTE] = ACTIONS(3718), - [anon_sym_DQUOTE] = ACTIONS(3718), - [sym_true] = ACTIONS(3716), - [sym_false] = ACTIONS(3716), - [anon_sym_NULL] = ACTIONS(3716), - [anon_sym_nullptr] = ACTIONS(3716), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3716), - [anon_sym_decltype] = ACTIONS(3716), - [anon_sym_explicit] = ACTIONS(3716), - [anon_sym_template] = ACTIONS(3716), - [anon_sym_operator] = ACTIONS(3716), - [anon_sym_try] = ACTIONS(3716), - [anon_sym_delete] = ACTIONS(3716), - [anon_sym_throw] = ACTIONS(3716), - [anon_sym_namespace] = ACTIONS(3716), - [anon_sym_static_assert] = ACTIONS(3716), - [anon_sym_concept] = ACTIONS(3716), - [anon_sym_co_return] = ACTIONS(3716), - [anon_sym_co_yield] = ACTIONS(3716), - [anon_sym_R_DQUOTE] = ACTIONS(3718), - [anon_sym_LR_DQUOTE] = ACTIONS(3718), - [anon_sym_uR_DQUOTE] = ACTIONS(3718), - [anon_sym_UR_DQUOTE] = ACTIONS(3718), - [anon_sym_u8R_DQUOTE] = ACTIONS(3718), - [anon_sym_co_await] = ACTIONS(3716), - [anon_sym_new] = ACTIONS(3716), - [anon_sym_requires] = ACTIONS(3716), - [anon_sym_CARET_CARET] = ACTIONS(3718), - [anon_sym_LBRACK_COLON] = ACTIONS(3718), - [sym_this] = ACTIONS(3716), - }, - [STATE(678)] = { - [sym_identifier] = ACTIONS(3724), - [aux_sym_preproc_include_token1] = ACTIONS(3724), - [aux_sym_preproc_def_token1] = ACTIONS(3724), - [aux_sym_preproc_if_token1] = ACTIONS(3724), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3724), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3724), - [sym_preproc_directive] = ACTIONS(3724), - [anon_sym_LPAREN2] = ACTIONS(3726), - [anon_sym_BANG] = ACTIONS(3726), - [anon_sym_TILDE] = ACTIONS(3726), - [anon_sym_DASH] = ACTIONS(3724), - [anon_sym_PLUS] = ACTIONS(3724), - [anon_sym_STAR] = ACTIONS(3726), - [anon_sym_AMP_AMP] = ACTIONS(3726), - [anon_sym_AMP] = ACTIONS(3724), - [anon_sym_SEMI] = ACTIONS(3726), - [anon_sym___extension__] = ACTIONS(3724), - [anon_sym_typedef] = ACTIONS(3724), - [anon_sym_virtual] = ACTIONS(3724), - [anon_sym_extern] = ACTIONS(3724), - [anon_sym___attribute__] = ACTIONS(3724), - [anon_sym___attribute] = ACTIONS(3724), - [anon_sym_using] = ACTIONS(3724), - [anon_sym_COLON_COLON] = ACTIONS(3726), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3726), - [anon_sym___declspec] = ACTIONS(3724), - [anon_sym___based] = ACTIONS(3724), - [anon_sym___cdecl] = ACTIONS(3724), - [anon_sym___clrcall] = ACTIONS(3724), - [anon_sym___stdcall] = ACTIONS(3724), - [anon_sym___fastcall] = ACTIONS(3724), - [anon_sym___thiscall] = ACTIONS(3724), - [anon_sym___vectorcall] = ACTIONS(3724), - [anon_sym_LBRACE] = ACTIONS(3726), - [anon_sym_RBRACE] = ACTIONS(3726), - [anon_sym_signed] = ACTIONS(3724), - [anon_sym_unsigned] = ACTIONS(3724), - [anon_sym_long] = ACTIONS(3724), - [anon_sym_short] = ACTIONS(3724), - [anon_sym_LBRACK] = ACTIONS(3724), - [anon_sym_static] = ACTIONS(3724), - [anon_sym_register] = ACTIONS(3724), - [anon_sym_inline] = ACTIONS(3724), - [anon_sym___inline] = ACTIONS(3724), - [anon_sym___inline__] = ACTIONS(3724), - [anon_sym___forceinline] = ACTIONS(3724), - [anon_sym_thread_local] = ACTIONS(3724), - [anon_sym___thread] = ACTIONS(3724), - [anon_sym_const] = ACTIONS(3724), - [anon_sym_constexpr] = ACTIONS(3724), - [anon_sym_volatile] = ACTIONS(3724), - [anon_sym_restrict] = ACTIONS(3724), - [anon_sym___restrict__] = ACTIONS(3724), - [anon_sym__Atomic] = ACTIONS(3724), - [anon_sym__Noreturn] = ACTIONS(3724), - [anon_sym_noreturn] = ACTIONS(3724), - [anon_sym__Nonnull] = ACTIONS(3724), - [anon_sym_mutable] = ACTIONS(3724), - [anon_sym_constinit] = ACTIONS(3724), - [anon_sym_consteval] = ACTIONS(3724), - [anon_sym_alignas] = ACTIONS(3724), - [anon_sym__Alignas] = ACTIONS(3724), - [sym_primitive_type] = ACTIONS(3724), - [anon_sym_enum] = ACTIONS(3724), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3724), - [anon_sym_union] = ACTIONS(3724), - [anon_sym_if] = ACTIONS(3724), - [anon_sym_else] = ACTIONS(3724), - [anon_sym_switch] = ACTIONS(3724), - [anon_sym_case] = ACTIONS(3724), - [anon_sym_default] = ACTIONS(3724), - [anon_sym_while] = ACTIONS(3724), - [anon_sym_do] = ACTIONS(3724), - [anon_sym_for] = ACTIONS(3724), - [anon_sym_return] = ACTIONS(3724), - [anon_sym_break] = ACTIONS(3724), - [anon_sym_continue] = ACTIONS(3724), - [anon_sym_goto] = ACTIONS(3724), - [anon_sym___try] = ACTIONS(3724), - [anon_sym___leave] = ACTIONS(3724), - [anon_sym_not] = ACTIONS(3724), - [anon_sym_compl] = ACTIONS(3724), - [anon_sym_DASH_DASH] = ACTIONS(3726), - [anon_sym_PLUS_PLUS] = ACTIONS(3726), - [anon_sym_sizeof] = ACTIONS(3724), - [anon_sym___alignof__] = ACTIONS(3724), - [anon_sym___alignof] = ACTIONS(3724), - [anon_sym__alignof] = ACTIONS(3724), - [anon_sym_alignof] = ACTIONS(3724), - [anon_sym__Alignof] = ACTIONS(3724), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3724), - [anon_sym_typename] = ACTIONS(3724), - [anon_sym_asm] = ACTIONS(3724), - [anon_sym___asm__] = ACTIONS(3724), - [anon_sym___asm] = ACTIONS(3724), - [sym_number_literal] = ACTIONS(3726), - [anon_sym_L_SQUOTE] = ACTIONS(3726), - [anon_sym_u_SQUOTE] = ACTIONS(3726), - [anon_sym_U_SQUOTE] = ACTIONS(3726), - [anon_sym_u8_SQUOTE] = ACTIONS(3726), - [anon_sym_SQUOTE] = ACTIONS(3726), - [anon_sym_L_DQUOTE] = ACTIONS(3726), - [anon_sym_u_DQUOTE] = ACTIONS(3726), - [anon_sym_U_DQUOTE] = ACTIONS(3726), - [anon_sym_u8_DQUOTE] = ACTIONS(3726), - [anon_sym_DQUOTE] = ACTIONS(3726), - [sym_true] = ACTIONS(3724), - [sym_false] = ACTIONS(3724), - [anon_sym_NULL] = ACTIONS(3724), - [anon_sym_nullptr] = ACTIONS(3724), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3724), - [anon_sym_decltype] = ACTIONS(3724), - [anon_sym_explicit] = ACTIONS(3724), - [anon_sym_template] = ACTIONS(3724), - [anon_sym_operator] = ACTIONS(3724), - [anon_sym_try] = ACTIONS(3724), - [anon_sym_delete] = ACTIONS(3724), - [anon_sym_throw] = ACTIONS(3724), - [anon_sym_namespace] = ACTIONS(3724), - [anon_sym_static_assert] = ACTIONS(3724), - [anon_sym_concept] = ACTIONS(3724), - [anon_sym_co_return] = ACTIONS(3724), - [anon_sym_co_yield] = ACTIONS(3724), - [anon_sym_R_DQUOTE] = ACTIONS(3726), - [anon_sym_LR_DQUOTE] = ACTIONS(3726), - [anon_sym_uR_DQUOTE] = ACTIONS(3726), - [anon_sym_UR_DQUOTE] = ACTIONS(3726), - [anon_sym_u8R_DQUOTE] = ACTIONS(3726), - [anon_sym_co_await] = ACTIONS(3724), - [anon_sym_new] = ACTIONS(3724), - [anon_sym_requires] = ACTIONS(3724), - [anon_sym_CARET_CARET] = ACTIONS(3726), - [anon_sym_LBRACK_COLON] = ACTIONS(3726), - [sym_this] = ACTIONS(3724), - }, - [STATE(679)] = { - [sym_identifier] = ACTIONS(3872), - [aux_sym_preproc_include_token1] = ACTIONS(3872), - [aux_sym_preproc_def_token1] = ACTIONS(3872), - [aux_sym_preproc_if_token1] = ACTIONS(3872), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3872), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3872), - [sym_preproc_directive] = ACTIONS(3872), - [anon_sym_LPAREN2] = ACTIONS(3874), - [anon_sym_BANG] = ACTIONS(3874), - [anon_sym_TILDE] = ACTIONS(3874), - [anon_sym_DASH] = ACTIONS(3872), - [anon_sym_PLUS] = ACTIONS(3872), - [anon_sym_STAR] = ACTIONS(3874), - [anon_sym_AMP_AMP] = ACTIONS(3874), - [anon_sym_AMP] = ACTIONS(3872), - [anon_sym_SEMI] = ACTIONS(3874), - [anon_sym___extension__] = ACTIONS(3872), - [anon_sym_typedef] = ACTIONS(3872), - [anon_sym_virtual] = ACTIONS(3872), - [anon_sym_extern] = ACTIONS(3872), - [anon_sym___attribute__] = ACTIONS(3872), - [anon_sym___attribute] = ACTIONS(3872), - [anon_sym_using] = ACTIONS(3872), - [anon_sym_COLON_COLON] = ACTIONS(3874), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3874), - [anon_sym___declspec] = ACTIONS(3872), - [anon_sym___based] = ACTIONS(3872), - [anon_sym___cdecl] = ACTIONS(3872), - [anon_sym___clrcall] = ACTIONS(3872), - [anon_sym___stdcall] = ACTIONS(3872), - [anon_sym___fastcall] = ACTIONS(3872), - [anon_sym___thiscall] = ACTIONS(3872), - [anon_sym___vectorcall] = ACTIONS(3872), - [anon_sym_LBRACE] = ACTIONS(3874), - [anon_sym_RBRACE] = ACTIONS(3874), - [anon_sym_signed] = ACTIONS(3872), - [anon_sym_unsigned] = ACTIONS(3872), - [anon_sym_long] = ACTIONS(3872), - [anon_sym_short] = ACTIONS(3872), - [anon_sym_LBRACK] = ACTIONS(3872), - [anon_sym_static] = ACTIONS(3872), - [anon_sym_register] = ACTIONS(3872), - [anon_sym_inline] = ACTIONS(3872), - [anon_sym___inline] = ACTIONS(3872), - [anon_sym___inline__] = ACTIONS(3872), - [anon_sym___forceinline] = ACTIONS(3872), - [anon_sym_thread_local] = ACTIONS(3872), - [anon_sym___thread] = ACTIONS(3872), - [anon_sym_const] = ACTIONS(3872), - [anon_sym_constexpr] = ACTIONS(3872), - [anon_sym_volatile] = ACTIONS(3872), - [anon_sym_restrict] = ACTIONS(3872), - [anon_sym___restrict__] = ACTIONS(3872), - [anon_sym__Atomic] = ACTIONS(3872), - [anon_sym__Noreturn] = ACTIONS(3872), - [anon_sym_noreturn] = ACTIONS(3872), - [anon_sym__Nonnull] = ACTIONS(3872), - [anon_sym_mutable] = ACTIONS(3872), - [anon_sym_constinit] = ACTIONS(3872), - [anon_sym_consteval] = ACTIONS(3872), - [anon_sym_alignas] = ACTIONS(3872), - [anon_sym__Alignas] = ACTIONS(3872), - [sym_primitive_type] = ACTIONS(3872), - [anon_sym_enum] = ACTIONS(3872), - [anon_sym_class] = ACTIONS(3872), - [anon_sym_struct] = ACTIONS(3872), - [anon_sym_union] = ACTIONS(3872), - [anon_sym_if] = ACTIONS(3872), - [anon_sym_else] = ACTIONS(3872), - [anon_sym_switch] = ACTIONS(3872), - [anon_sym_case] = ACTIONS(3872), - [anon_sym_default] = ACTIONS(3872), - [anon_sym_while] = ACTIONS(3872), - [anon_sym_do] = ACTIONS(3872), - [anon_sym_for] = ACTIONS(3872), - [anon_sym_return] = ACTIONS(3872), - [anon_sym_break] = ACTIONS(3872), - [anon_sym_continue] = ACTIONS(3872), - [anon_sym_goto] = ACTIONS(3872), - [anon_sym___try] = ACTIONS(3872), - [anon_sym___leave] = ACTIONS(3872), - [anon_sym_not] = ACTIONS(3872), - [anon_sym_compl] = ACTIONS(3872), - [anon_sym_DASH_DASH] = ACTIONS(3874), - [anon_sym_PLUS_PLUS] = ACTIONS(3874), - [anon_sym_sizeof] = ACTIONS(3872), - [anon_sym___alignof__] = ACTIONS(3872), - [anon_sym___alignof] = ACTIONS(3872), - [anon_sym__alignof] = ACTIONS(3872), - [anon_sym_alignof] = ACTIONS(3872), - [anon_sym__Alignof] = ACTIONS(3872), - [anon_sym_offsetof] = ACTIONS(3872), - [anon_sym__Generic] = ACTIONS(3872), - [anon_sym_typename] = ACTIONS(3872), - [anon_sym_asm] = ACTIONS(3872), - [anon_sym___asm__] = ACTIONS(3872), - [anon_sym___asm] = ACTIONS(3872), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3874), - [anon_sym_u_SQUOTE] = ACTIONS(3874), - [anon_sym_U_SQUOTE] = ACTIONS(3874), - [anon_sym_u8_SQUOTE] = ACTIONS(3874), - [anon_sym_SQUOTE] = ACTIONS(3874), - [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(3872), - [sym_false] = ACTIONS(3872), - [anon_sym_NULL] = ACTIONS(3872), - [anon_sym_nullptr] = ACTIONS(3872), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3872), - [anon_sym_decltype] = ACTIONS(3872), - [anon_sym_explicit] = ACTIONS(3872), - [anon_sym_template] = ACTIONS(3872), - [anon_sym_operator] = ACTIONS(3872), - [anon_sym_try] = ACTIONS(3872), - [anon_sym_delete] = ACTIONS(3872), - [anon_sym_throw] = ACTIONS(3872), - [anon_sym_namespace] = ACTIONS(3872), - [anon_sym_static_assert] = ACTIONS(3872), - [anon_sym_concept] = ACTIONS(3872), - [anon_sym_co_return] = ACTIONS(3872), - [anon_sym_co_yield] = ACTIONS(3872), - [anon_sym_R_DQUOTE] = ACTIONS(3874), - [anon_sym_LR_DQUOTE] = ACTIONS(3874), - [anon_sym_uR_DQUOTE] = ACTIONS(3874), - [anon_sym_UR_DQUOTE] = ACTIONS(3874), - [anon_sym_u8R_DQUOTE] = ACTIONS(3874), - [anon_sym_co_await] = ACTIONS(3872), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(3872), - [anon_sym_CARET_CARET] = ACTIONS(3874), - [anon_sym_LBRACK_COLON] = ACTIONS(3874), - [sym_this] = ACTIONS(3872), - }, - [STATE(680)] = { - [sym_identifier] = ACTIONS(3880), - [aux_sym_preproc_include_token1] = ACTIONS(3880), - [aux_sym_preproc_def_token1] = ACTIONS(3880), - [aux_sym_preproc_if_token1] = ACTIONS(3880), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3880), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3880), - [sym_preproc_directive] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3882), - [anon_sym_TILDE] = ACTIONS(3882), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_STAR] = ACTIONS(3882), - [anon_sym_AMP_AMP] = ACTIONS(3882), - [anon_sym_AMP] = ACTIONS(3880), - [anon_sym_SEMI] = ACTIONS(3882), - [anon_sym___extension__] = ACTIONS(3880), - [anon_sym_typedef] = ACTIONS(3880), - [anon_sym_virtual] = ACTIONS(3880), - [anon_sym_extern] = ACTIONS(3880), - [anon_sym___attribute__] = ACTIONS(3880), - [anon_sym___attribute] = ACTIONS(3880), - [anon_sym_using] = ACTIONS(3880), - [anon_sym_COLON_COLON] = ACTIONS(3882), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3882), - [anon_sym___declspec] = ACTIONS(3880), - [anon_sym___based] = ACTIONS(3880), - [anon_sym___cdecl] = ACTIONS(3880), - [anon_sym___clrcall] = ACTIONS(3880), - [anon_sym___stdcall] = ACTIONS(3880), - [anon_sym___fastcall] = ACTIONS(3880), - [anon_sym___thiscall] = ACTIONS(3880), - [anon_sym___vectorcall] = ACTIONS(3880), - [anon_sym_LBRACE] = ACTIONS(3882), - [anon_sym_RBRACE] = ACTIONS(3882), - [anon_sym_signed] = ACTIONS(3880), - [anon_sym_unsigned] = ACTIONS(3880), - [anon_sym_long] = ACTIONS(3880), - [anon_sym_short] = ACTIONS(3880), - [anon_sym_LBRACK] = ACTIONS(3880), - [anon_sym_static] = ACTIONS(3880), - [anon_sym_register] = ACTIONS(3880), - [anon_sym_inline] = ACTIONS(3880), - [anon_sym___inline] = ACTIONS(3880), - [anon_sym___inline__] = ACTIONS(3880), - [anon_sym___forceinline] = ACTIONS(3880), - [anon_sym_thread_local] = ACTIONS(3880), - [anon_sym___thread] = ACTIONS(3880), - [anon_sym_const] = ACTIONS(3880), - [anon_sym_constexpr] = ACTIONS(3880), - [anon_sym_volatile] = ACTIONS(3880), - [anon_sym_restrict] = ACTIONS(3880), - [anon_sym___restrict__] = ACTIONS(3880), - [anon_sym__Atomic] = ACTIONS(3880), - [anon_sym__Noreturn] = ACTIONS(3880), - [anon_sym_noreturn] = ACTIONS(3880), - [anon_sym__Nonnull] = ACTIONS(3880), - [anon_sym_mutable] = ACTIONS(3880), - [anon_sym_constinit] = ACTIONS(3880), - [anon_sym_consteval] = ACTIONS(3880), - [anon_sym_alignas] = ACTIONS(3880), - [anon_sym__Alignas] = ACTIONS(3880), - [sym_primitive_type] = ACTIONS(3880), - [anon_sym_enum] = ACTIONS(3880), - [anon_sym_class] = ACTIONS(3880), - [anon_sym_struct] = ACTIONS(3880), - [anon_sym_union] = ACTIONS(3880), - [anon_sym_if] = ACTIONS(3880), - [anon_sym_else] = ACTIONS(3880), - [anon_sym_switch] = ACTIONS(3880), - [anon_sym_case] = ACTIONS(3880), - [anon_sym_default] = ACTIONS(3880), - [anon_sym_while] = ACTIONS(3880), - [anon_sym_do] = ACTIONS(3880), - [anon_sym_for] = ACTIONS(3880), - [anon_sym_return] = ACTIONS(3880), - [anon_sym_break] = ACTIONS(3880), - [anon_sym_continue] = ACTIONS(3880), - [anon_sym_goto] = ACTIONS(3880), - [anon_sym___try] = ACTIONS(3880), - [anon_sym___leave] = ACTIONS(3880), - [anon_sym_not] = ACTIONS(3880), - [anon_sym_compl] = ACTIONS(3880), - [anon_sym_DASH_DASH] = ACTIONS(3882), - [anon_sym_PLUS_PLUS] = ACTIONS(3882), - [anon_sym_sizeof] = ACTIONS(3880), - [anon_sym___alignof__] = ACTIONS(3880), - [anon_sym___alignof] = ACTIONS(3880), - [anon_sym__alignof] = ACTIONS(3880), - [anon_sym_alignof] = ACTIONS(3880), - [anon_sym__Alignof] = ACTIONS(3880), - [anon_sym_offsetof] = ACTIONS(3880), - [anon_sym__Generic] = ACTIONS(3880), - [anon_sym_typename] = ACTIONS(3880), - [anon_sym_asm] = ACTIONS(3880), - [anon_sym___asm__] = ACTIONS(3880), - [anon_sym___asm] = ACTIONS(3880), - [sym_number_literal] = ACTIONS(3882), - [anon_sym_L_SQUOTE] = ACTIONS(3882), - [anon_sym_u_SQUOTE] = ACTIONS(3882), - [anon_sym_U_SQUOTE] = ACTIONS(3882), - [anon_sym_u8_SQUOTE] = ACTIONS(3882), - [anon_sym_SQUOTE] = ACTIONS(3882), - [anon_sym_L_DQUOTE] = ACTIONS(3882), - [anon_sym_u_DQUOTE] = ACTIONS(3882), - [anon_sym_U_DQUOTE] = ACTIONS(3882), - [anon_sym_u8_DQUOTE] = ACTIONS(3882), - [anon_sym_DQUOTE] = ACTIONS(3882), - [sym_true] = ACTIONS(3880), - [sym_false] = ACTIONS(3880), - [anon_sym_NULL] = ACTIONS(3880), - [anon_sym_nullptr] = ACTIONS(3880), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3880), - [anon_sym_decltype] = ACTIONS(3880), - [anon_sym_explicit] = ACTIONS(3880), - [anon_sym_template] = ACTIONS(3880), - [anon_sym_operator] = ACTIONS(3880), - [anon_sym_try] = ACTIONS(3880), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_throw] = ACTIONS(3880), - [anon_sym_namespace] = ACTIONS(3880), - [anon_sym_static_assert] = ACTIONS(3880), - [anon_sym_concept] = ACTIONS(3880), - [anon_sym_co_return] = ACTIONS(3880), - [anon_sym_co_yield] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3880), - [anon_sym_new] = ACTIONS(3880), - [anon_sym_requires] = ACTIONS(3880), - [anon_sym_CARET_CARET] = ACTIONS(3882), - [anon_sym_LBRACK_COLON] = ACTIONS(3882), - [sym_this] = ACTIONS(3880), - }, - [STATE(681)] = { - [sym_identifier] = ACTIONS(3868), - [aux_sym_preproc_include_token1] = ACTIONS(3868), - [aux_sym_preproc_def_token1] = ACTIONS(3868), - [aux_sym_preproc_if_token1] = ACTIONS(3868), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3868), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3868), - [sym_preproc_directive] = ACTIONS(3868), - [anon_sym_LPAREN2] = ACTIONS(3870), - [anon_sym_BANG] = ACTIONS(3870), - [anon_sym_TILDE] = ACTIONS(3870), - [anon_sym_DASH] = ACTIONS(3868), - [anon_sym_PLUS] = ACTIONS(3868), - [anon_sym_STAR] = ACTIONS(3870), - [anon_sym_AMP_AMP] = ACTIONS(3870), - [anon_sym_AMP] = ACTIONS(3868), - [anon_sym_SEMI] = ACTIONS(3870), - [anon_sym___extension__] = ACTIONS(3868), - [anon_sym_typedef] = ACTIONS(3868), - [anon_sym_virtual] = ACTIONS(3868), - [anon_sym_extern] = ACTIONS(3868), - [anon_sym___attribute__] = ACTIONS(3868), - [anon_sym___attribute] = ACTIONS(3868), - [anon_sym_using] = ACTIONS(3868), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3870), - [anon_sym___declspec] = ACTIONS(3868), - [anon_sym___based] = ACTIONS(3868), - [anon_sym___cdecl] = ACTIONS(3868), - [anon_sym___clrcall] = ACTIONS(3868), - [anon_sym___stdcall] = ACTIONS(3868), - [anon_sym___fastcall] = ACTIONS(3868), - [anon_sym___thiscall] = ACTIONS(3868), - [anon_sym___vectorcall] = ACTIONS(3868), - [anon_sym_LBRACE] = ACTIONS(3870), - [anon_sym_RBRACE] = ACTIONS(3870), - [anon_sym_signed] = ACTIONS(3868), - [anon_sym_unsigned] = ACTIONS(3868), - [anon_sym_long] = ACTIONS(3868), - [anon_sym_short] = ACTIONS(3868), - [anon_sym_LBRACK] = ACTIONS(3868), - [anon_sym_static] = ACTIONS(3868), - [anon_sym_register] = ACTIONS(3868), - [anon_sym_inline] = ACTIONS(3868), - [anon_sym___inline] = ACTIONS(3868), - [anon_sym___inline__] = ACTIONS(3868), - [anon_sym___forceinline] = ACTIONS(3868), - [anon_sym_thread_local] = ACTIONS(3868), - [anon_sym___thread] = ACTIONS(3868), - [anon_sym_const] = ACTIONS(3868), - [anon_sym_constexpr] = ACTIONS(3868), - [anon_sym_volatile] = ACTIONS(3868), - [anon_sym_restrict] = ACTIONS(3868), - [anon_sym___restrict__] = ACTIONS(3868), - [anon_sym__Atomic] = ACTIONS(3868), - [anon_sym__Noreturn] = ACTIONS(3868), - [anon_sym_noreturn] = ACTIONS(3868), - [anon_sym__Nonnull] = ACTIONS(3868), - [anon_sym_mutable] = ACTIONS(3868), - [anon_sym_constinit] = ACTIONS(3868), - [anon_sym_consteval] = ACTIONS(3868), - [anon_sym_alignas] = ACTIONS(3868), - [anon_sym__Alignas] = ACTIONS(3868), - [sym_primitive_type] = ACTIONS(3868), - [anon_sym_enum] = ACTIONS(3868), - [anon_sym_class] = ACTIONS(3868), - [anon_sym_struct] = ACTIONS(3868), - [anon_sym_union] = ACTIONS(3868), - [anon_sym_if] = ACTIONS(3868), - [anon_sym_else] = ACTIONS(3868), - [anon_sym_switch] = ACTIONS(3868), - [anon_sym_case] = ACTIONS(3868), - [anon_sym_default] = ACTIONS(3868), - [anon_sym_while] = ACTIONS(3868), - [anon_sym_do] = ACTIONS(3868), - [anon_sym_for] = ACTIONS(3868), - [anon_sym_return] = ACTIONS(3868), - [anon_sym_break] = ACTIONS(3868), - [anon_sym_continue] = ACTIONS(3868), - [anon_sym_goto] = ACTIONS(3868), - [anon_sym___try] = ACTIONS(3868), - [anon_sym___leave] = ACTIONS(3868), - [anon_sym_not] = ACTIONS(3868), - [anon_sym_compl] = ACTIONS(3868), - [anon_sym_DASH_DASH] = ACTIONS(3870), - [anon_sym_PLUS_PLUS] = ACTIONS(3870), - [anon_sym_sizeof] = ACTIONS(3868), - [anon_sym___alignof__] = ACTIONS(3868), - [anon_sym___alignof] = ACTIONS(3868), - [anon_sym__alignof] = ACTIONS(3868), - [anon_sym_alignof] = ACTIONS(3868), - [anon_sym__Alignof] = ACTIONS(3868), - [anon_sym_offsetof] = ACTIONS(3868), - [anon_sym__Generic] = ACTIONS(3868), - [anon_sym_typename] = ACTIONS(3868), - [anon_sym_asm] = ACTIONS(3868), - [anon_sym___asm__] = ACTIONS(3868), - [anon_sym___asm] = ACTIONS(3868), - [sym_number_literal] = ACTIONS(3870), - [anon_sym_L_SQUOTE] = ACTIONS(3870), - [anon_sym_u_SQUOTE] = ACTIONS(3870), - [anon_sym_U_SQUOTE] = ACTIONS(3870), - [anon_sym_u8_SQUOTE] = ACTIONS(3870), - [anon_sym_SQUOTE] = ACTIONS(3870), - [anon_sym_L_DQUOTE] = ACTIONS(3870), - [anon_sym_u_DQUOTE] = ACTIONS(3870), - [anon_sym_U_DQUOTE] = ACTIONS(3870), - [anon_sym_u8_DQUOTE] = ACTIONS(3870), - [anon_sym_DQUOTE] = ACTIONS(3870), - [sym_true] = ACTIONS(3868), - [sym_false] = ACTIONS(3868), - [anon_sym_NULL] = ACTIONS(3868), - [anon_sym_nullptr] = ACTIONS(3868), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3868), - [anon_sym_decltype] = ACTIONS(3868), - [anon_sym_explicit] = ACTIONS(3868), - [anon_sym_template] = ACTIONS(3868), - [anon_sym_operator] = ACTIONS(3868), - [anon_sym_try] = ACTIONS(3868), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_throw] = ACTIONS(3868), - [anon_sym_namespace] = ACTIONS(3868), - [anon_sym_static_assert] = ACTIONS(3868), - [anon_sym_concept] = ACTIONS(3868), - [anon_sym_co_return] = ACTIONS(3868), - [anon_sym_co_yield] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(3870), - [anon_sym_LR_DQUOTE] = ACTIONS(3870), - [anon_sym_uR_DQUOTE] = ACTIONS(3870), - [anon_sym_UR_DQUOTE] = ACTIONS(3870), - [anon_sym_u8R_DQUOTE] = ACTIONS(3870), - [anon_sym_co_await] = ACTIONS(3868), - [anon_sym_new] = ACTIONS(3868), - [anon_sym_requires] = ACTIONS(3868), - [anon_sym_CARET_CARET] = ACTIONS(3870), - [anon_sym_LBRACK_COLON] = ACTIONS(3870), - [sym_this] = ACTIONS(3868), - }, - [STATE(682)] = { - [sym_preproc_def] = STATE(686), - [sym_preproc_function_def] = STATE(686), - [sym_preproc_call] = STATE(686), - [sym_preproc_if_in_field_declaration_list] = STATE(686), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(686), - [sym_type_definition] = STATE(686), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7964), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(686), - [sym_field_declaration] = STATE(686), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(686), - [sym_operator_cast] = STATE(9142), - [sym_inline_method_definition] = STATE(686), - [sym__constructor_specifiers] = STATE(2332), - [sym_operator_cast_definition] = STATE(686), - [sym_operator_cast_declaration] = STATE(686), - [sym_constructor_or_destructor_definition] = STATE(686), - [sym_constructor_or_destructor_declaration] = STATE(686), - [sym_friend_declaration] = STATE(686), - [sym_access_specifier] = STATE(11109), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(686), - [sym_alias_declaration] = STATE(686), - [sym_static_assert_declaration] = STATE(686), - [sym_consteval_block_declaration] = STATE(686), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(686), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9371), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(4352), - [aux_sym_preproc_if_token1] = ACTIONS(4354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), - [sym_preproc_directive] = ACTIONS(4358), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(4476), - [anon_sym___extension__] = ACTIONS(4362), - [anon_sym_typedef] = ACTIONS(4364), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4478), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4372), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(4374), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4376), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(4378), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(683)] = { - [sym_identifier] = ACTIONS(3712), - [aux_sym_preproc_include_token1] = ACTIONS(3712), - [aux_sym_preproc_def_token1] = ACTIONS(3712), - [aux_sym_preproc_if_token1] = ACTIONS(3712), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3712), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3712), - [sym_preproc_directive] = ACTIONS(3712), - [anon_sym_LPAREN2] = ACTIONS(3714), - [anon_sym_BANG] = ACTIONS(3714), - [anon_sym_TILDE] = ACTIONS(3714), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3714), - [anon_sym_AMP_AMP] = ACTIONS(3714), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_SEMI] = ACTIONS(3714), - [anon_sym___extension__] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3712), - [anon_sym_virtual] = ACTIONS(3712), - [anon_sym_extern] = ACTIONS(3712), - [anon_sym___attribute__] = ACTIONS(3712), - [anon_sym___attribute] = ACTIONS(3712), - [anon_sym_using] = ACTIONS(3712), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3714), - [anon_sym___declspec] = ACTIONS(3712), - [anon_sym___based] = ACTIONS(3712), - [anon_sym___cdecl] = ACTIONS(3712), - [anon_sym___clrcall] = ACTIONS(3712), - [anon_sym___stdcall] = ACTIONS(3712), - [anon_sym___fastcall] = ACTIONS(3712), - [anon_sym___thiscall] = ACTIONS(3712), - [anon_sym___vectorcall] = ACTIONS(3712), - [anon_sym_LBRACE] = ACTIONS(3714), - [anon_sym_RBRACE] = ACTIONS(3714), - [anon_sym_signed] = ACTIONS(3712), - [anon_sym_unsigned] = ACTIONS(3712), - [anon_sym_long] = ACTIONS(3712), - [anon_sym_short] = ACTIONS(3712), - [anon_sym_LBRACK] = ACTIONS(3712), - [anon_sym_static] = ACTIONS(3712), - [anon_sym_register] = ACTIONS(3712), - [anon_sym_inline] = ACTIONS(3712), - [anon_sym___inline] = ACTIONS(3712), - [anon_sym___inline__] = ACTIONS(3712), - [anon_sym___forceinline] = ACTIONS(3712), - [anon_sym_thread_local] = ACTIONS(3712), - [anon_sym___thread] = ACTIONS(3712), - [anon_sym_const] = ACTIONS(3712), - [anon_sym_constexpr] = ACTIONS(3712), - [anon_sym_volatile] = ACTIONS(3712), - [anon_sym_restrict] = ACTIONS(3712), - [anon_sym___restrict__] = ACTIONS(3712), - [anon_sym__Atomic] = ACTIONS(3712), - [anon_sym__Noreturn] = ACTIONS(3712), - [anon_sym_noreturn] = ACTIONS(3712), - [anon_sym__Nonnull] = ACTIONS(3712), - [anon_sym_mutable] = ACTIONS(3712), - [anon_sym_constinit] = ACTIONS(3712), - [anon_sym_consteval] = ACTIONS(3712), - [anon_sym_alignas] = ACTIONS(3712), - [anon_sym__Alignas] = ACTIONS(3712), - [sym_primitive_type] = ACTIONS(3712), - [anon_sym_enum] = ACTIONS(3712), - [anon_sym_class] = ACTIONS(3712), - [anon_sym_struct] = ACTIONS(3712), - [anon_sym_union] = ACTIONS(3712), - [anon_sym_if] = ACTIONS(3712), - [anon_sym_else] = ACTIONS(3712), - [anon_sym_switch] = ACTIONS(3712), - [anon_sym_case] = ACTIONS(3712), - [anon_sym_default] = ACTIONS(3712), - [anon_sym_while] = ACTIONS(3712), - [anon_sym_do] = ACTIONS(3712), - [anon_sym_for] = ACTIONS(3712), - [anon_sym_return] = ACTIONS(3712), - [anon_sym_break] = ACTIONS(3712), - [anon_sym_continue] = ACTIONS(3712), - [anon_sym_goto] = ACTIONS(3712), - [anon_sym___try] = ACTIONS(3712), - [anon_sym___leave] = ACTIONS(3712), - [anon_sym_not] = ACTIONS(3712), - [anon_sym_compl] = ACTIONS(3712), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_sizeof] = ACTIONS(3712), - [anon_sym___alignof__] = ACTIONS(3712), - [anon_sym___alignof] = ACTIONS(3712), - [anon_sym__alignof] = ACTIONS(3712), - [anon_sym_alignof] = ACTIONS(3712), - [anon_sym__Alignof] = ACTIONS(3712), - [anon_sym_offsetof] = ACTIONS(3712), - [anon_sym__Generic] = ACTIONS(3712), - [anon_sym_typename] = ACTIONS(3712), - [anon_sym_asm] = ACTIONS(3712), - [anon_sym___asm__] = ACTIONS(3712), - [anon_sym___asm] = ACTIONS(3712), - [sym_number_literal] = ACTIONS(3714), - [anon_sym_L_SQUOTE] = ACTIONS(3714), - [anon_sym_u_SQUOTE] = ACTIONS(3714), - [anon_sym_U_SQUOTE] = ACTIONS(3714), - [anon_sym_u8_SQUOTE] = ACTIONS(3714), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_L_DQUOTE] = ACTIONS(3714), - [anon_sym_u_DQUOTE] = ACTIONS(3714), - [anon_sym_U_DQUOTE] = ACTIONS(3714), - [anon_sym_u8_DQUOTE] = ACTIONS(3714), - [anon_sym_DQUOTE] = ACTIONS(3714), - [sym_true] = ACTIONS(3712), - [sym_false] = ACTIONS(3712), - [anon_sym_NULL] = ACTIONS(3712), - [anon_sym_nullptr] = ACTIONS(3712), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3712), - [anon_sym_decltype] = ACTIONS(3712), - [anon_sym_explicit] = ACTIONS(3712), - [anon_sym_template] = ACTIONS(3712), - [anon_sym_operator] = ACTIONS(3712), - [anon_sym_try] = ACTIONS(3712), - [anon_sym_delete] = ACTIONS(3712), - [anon_sym_throw] = ACTIONS(3712), - [anon_sym_namespace] = ACTIONS(3712), - [anon_sym_static_assert] = ACTIONS(3712), - [anon_sym_concept] = ACTIONS(3712), - [anon_sym_co_return] = ACTIONS(3712), - [anon_sym_co_yield] = ACTIONS(3712), - [anon_sym_R_DQUOTE] = ACTIONS(3714), - [anon_sym_LR_DQUOTE] = ACTIONS(3714), - [anon_sym_uR_DQUOTE] = ACTIONS(3714), - [anon_sym_UR_DQUOTE] = ACTIONS(3714), - [anon_sym_u8R_DQUOTE] = ACTIONS(3714), - [anon_sym_co_await] = ACTIONS(3712), - [anon_sym_new] = ACTIONS(3712), - [anon_sym_requires] = ACTIONS(3712), - [anon_sym_CARET_CARET] = ACTIONS(3714), - [anon_sym_LBRACK_COLON] = ACTIONS(3714), - [sym_this] = ACTIONS(3712), - }, - [STATE(684)] = { - [sym_identifier] = ACTIONS(3692), - [aux_sym_preproc_include_token1] = ACTIONS(3692), - [aux_sym_preproc_def_token1] = ACTIONS(3692), - [aux_sym_preproc_if_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3692), - [anon_sym_LPAREN2] = ACTIONS(3694), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_TILDE] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3692), - [anon_sym_PLUS] = ACTIONS(3692), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_AMP_AMP] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3694), - [anon_sym___extension__] = ACTIONS(3692), - [anon_sym_typedef] = ACTIONS(3692), - [anon_sym_virtual] = ACTIONS(3692), - [anon_sym_extern] = ACTIONS(3692), - [anon_sym___attribute__] = ACTIONS(3692), - [anon_sym___attribute] = ACTIONS(3692), - [anon_sym_using] = ACTIONS(3692), - [anon_sym_COLON_COLON] = ACTIONS(3694), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3694), - [anon_sym___declspec] = ACTIONS(3692), - [anon_sym___based] = ACTIONS(3692), - [anon_sym___cdecl] = ACTIONS(3692), - [anon_sym___clrcall] = ACTIONS(3692), - [anon_sym___stdcall] = ACTIONS(3692), - [anon_sym___fastcall] = ACTIONS(3692), - [anon_sym___thiscall] = ACTIONS(3692), - [anon_sym___vectorcall] = ACTIONS(3692), - [anon_sym_LBRACE] = ACTIONS(3694), - [anon_sym_RBRACE] = ACTIONS(3694), - [anon_sym_signed] = ACTIONS(3692), - [anon_sym_unsigned] = ACTIONS(3692), - [anon_sym_long] = ACTIONS(3692), - [anon_sym_short] = ACTIONS(3692), - [anon_sym_LBRACK] = ACTIONS(3692), - [anon_sym_static] = ACTIONS(3692), - [anon_sym_register] = ACTIONS(3692), - [anon_sym_inline] = ACTIONS(3692), - [anon_sym___inline] = ACTIONS(3692), - [anon_sym___inline__] = ACTIONS(3692), - [anon_sym___forceinline] = ACTIONS(3692), - [anon_sym_thread_local] = ACTIONS(3692), - [anon_sym___thread] = ACTIONS(3692), - [anon_sym_const] = ACTIONS(3692), - [anon_sym_constexpr] = ACTIONS(3692), - [anon_sym_volatile] = ACTIONS(3692), - [anon_sym_restrict] = ACTIONS(3692), - [anon_sym___restrict__] = ACTIONS(3692), - [anon_sym__Atomic] = ACTIONS(3692), - [anon_sym__Noreturn] = ACTIONS(3692), - [anon_sym_noreturn] = ACTIONS(3692), - [anon_sym__Nonnull] = ACTIONS(3692), - [anon_sym_mutable] = ACTIONS(3692), - [anon_sym_constinit] = ACTIONS(3692), - [anon_sym_consteval] = ACTIONS(3692), - [anon_sym_alignas] = ACTIONS(3692), - [anon_sym__Alignas] = ACTIONS(3692), - [sym_primitive_type] = ACTIONS(3692), - [anon_sym_enum] = ACTIONS(3692), - [anon_sym_class] = ACTIONS(3692), - [anon_sym_struct] = ACTIONS(3692), - [anon_sym_union] = ACTIONS(3692), - [anon_sym_if] = ACTIONS(3692), - [anon_sym_else] = ACTIONS(3692), - [anon_sym_switch] = ACTIONS(3692), - [anon_sym_case] = ACTIONS(3692), - [anon_sym_default] = ACTIONS(3692), - [anon_sym_while] = ACTIONS(3692), - [anon_sym_do] = ACTIONS(3692), - [anon_sym_for] = ACTIONS(3692), - [anon_sym_return] = ACTIONS(3692), - [anon_sym_break] = ACTIONS(3692), - [anon_sym_continue] = ACTIONS(3692), - [anon_sym_goto] = ACTIONS(3692), - [anon_sym___try] = ACTIONS(3692), - [anon_sym___leave] = ACTIONS(3692), - [anon_sym_not] = ACTIONS(3692), - [anon_sym_compl] = ACTIONS(3692), - [anon_sym_DASH_DASH] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3694), - [anon_sym_sizeof] = ACTIONS(3692), - [anon_sym___alignof__] = ACTIONS(3692), - [anon_sym___alignof] = ACTIONS(3692), - [anon_sym__alignof] = ACTIONS(3692), - [anon_sym_alignof] = ACTIONS(3692), - [anon_sym__Alignof] = ACTIONS(3692), - [anon_sym_offsetof] = ACTIONS(3692), - [anon_sym__Generic] = ACTIONS(3692), - [anon_sym_typename] = ACTIONS(3692), - [anon_sym_asm] = ACTIONS(3692), - [anon_sym___asm__] = ACTIONS(3692), - [anon_sym___asm] = ACTIONS(3692), - [sym_number_literal] = ACTIONS(3694), - [anon_sym_L_SQUOTE] = ACTIONS(3694), - [anon_sym_u_SQUOTE] = ACTIONS(3694), - [anon_sym_U_SQUOTE] = ACTIONS(3694), - [anon_sym_u8_SQUOTE] = ACTIONS(3694), - [anon_sym_SQUOTE] = ACTIONS(3694), - [anon_sym_L_DQUOTE] = ACTIONS(3694), - [anon_sym_u_DQUOTE] = ACTIONS(3694), - [anon_sym_U_DQUOTE] = ACTIONS(3694), - [anon_sym_u8_DQUOTE] = ACTIONS(3694), - [anon_sym_DQUOTE] = ACTIONS(3694), - [sym_true] = ACTIONS(3692), - [sym_false] = ACTIONS(3692), - [anon_sym_NULL] = ACTIONS(3692), - [anon_sym_nullptr] = ACTIONS(3692), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3692), - [anon_sym_decltype] = ACTIONS(3692), - [anon_sym_explicit] = ACTIONS(3692), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_operator] = ACTIONS(3692), - [anon_sym_try] = ACTIONS(3692), - [anon_sym_delete] = ACTIONS(3692), - [anon_sym_throw] = ACTIONS(3692), - [anon_sym_namespace] = ACTIONS(3692), - [anon_sym_static_assert] = ACTIONS(3692), - [anon_sym_concept] = ACTIONS(3692), - [anon_sym_co_return] = ACTIONS(3692), - [anon_sym_co_yield] = ACTIONS(3692), - [anon_sym_R_DQUOTE] = ACTIONS(3694), - [anon_sym_LR_DQUOTE] = ACTIONS(3694), - [anon_sym_uR_DQUOTE] = ACTIONS(3694), - [anon_sym_UR_DQUOTE] = ACTIONS(3694), - [anon_sym_u8R_DQUOTE] = ACTIONS(3694), - [anon_sym_co_await] = ACTIONS(3692), - [anon_sym_new] = ACTIONS(3692), - [anon_sym_requires] = ACTIONS(3692), - [anon_sym_CARET_CARET] = ACTIONS(3694), - [anon_sym_LBRACK_COLON] = ACTIONS(3694), - [sym_this] = ACTIONS(3692), - }, - [STATE(685)] = { - [sym_identifier] = ACTIONS(3876), - [aux_sym_preproc_include_token1] = ACTIONS(3876), - [aux_sym_preproc_def_token1] = ACTIONS(3876), - [aux_sym_preproc_if_token1] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), - [sym_preproc_directive] = ACTIONS(3876), - [anon_sym_LPAREN2] = ACTIONS(3878), - [anon_sym_BANG] = ACTIONS(3878), - [anon_sym_TILDE] = ACTIONS(3878), - [anon_sym_DASH] = ACTIONS(3876), - [anon_sym_PLUS] = ACTIONS(3876), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_AMP_AMP] = ACTIONS(3878), - [anon_sym_AMP] = ACTIONS(3876), - [anon_sym_SEMI] = ACTIONS(3878), - [anon_sym___extension__] = ACTIONS(3876), - [anon_sym_typedef] = ACTIONS(3876), - [anon_sym_virtual] = ACTIONS(3876), - [anon_sym_extern] = ACTIONS(3876), - [anon_sym___attribute__] = ACTIONS(3876), - [anon_sym___attribute] = ACTIONS(3876), - [anon_sym_using] = ACTIONS(3876), - [anon_sym_COLON_COLON] = ACTIONS(3878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), - [anon_sym___declspec] = ACTIONS(3876), - [anon_sym___based] = ACTIONS(3876), - [anon_sym___cdecl] = ACTIONS(3876), - [anon_sym___clrcall] = ACTIONS(3876), - [anon_sym___stdcall] = ACTIONS(3876), - [anon_sym___fastcall] = ACTIONS(3876), - [anon_sym___thiscall] = ACTIONS(3876), - [anon_sym___vectorcall] = ACTIONS(3876), - [anon_sym_LBRACE] = ACTIONS(3878), - [anon_sym_RBRACE] = ACTIONS(3878), - [anon_sym_signed] = ACTIONS(3876), - [anon_sym_unsigned] = ACTIONS(3876), - [anon_sym_long] = ACTIONS(3876), - [anon_sym_short] = ACTIONS(3876), - [anon_sym_LBRACK] = ACTIONS(3876), - [anon_sym_static] = ACTIONS(3876), - [anon_sym_register] = ACTIONS(3876), - [anon_sym_inline] = ACTIONS(3876), - [anon_sym___inline] = ACTIONS(3876), - [anon_sym___inline__] = ACTIONS(3876), - [anon_sym___forceinline] = ACTIONS(3876), - [anon_sym_thread_local] = ACTIONS(3876), - [anon_sym___thread] = ACTIONS(3876), - [anon_sym_const] = ACTIONS(3876), - [anon_sym_constexpr] = ACTIONS(3876), - [anon_sym_volatile] = ACTIONS(3876), - [anon_sym_restrict] = ACTIONS(3876), - [anon_sym___restrict__] = ACTIONS(3876), - [anon_sym__Atomic] = ACTIONS(3876), - [anon_sym__Noreturn] = ACTIONS(3876), - [anon_sym_noreturn] = ACTIONS(3876), - [anon_sym__Nonnull] = ACTIONS(3876), - [anon_sym_mutable] = ACTIONS(3876), - [anon_sym_constinit] = ACTIONS(3876), - [anon_sym_consteval] = ACTIONS(3876), - [anon_sym_alignas] = ACTIONS(3876), - [anon_sym__Alignas] = ACTIONS(3876), - [sym_primitive_type] = ACTIONS(3876), - [anon_sym_enum] = ACTIONS(3876), - [anon_sym_class] = ACTIONS(3876), - [anon_sym_struct] = ACTIONS(3876), - [anon_sym_union] = ACTIONS(3876), - [anon_sym_if] = ACTIONS(3876), - [anon_sym_else] = ACTIONS(3876), - [anon_sym_switch] = ACTIONS(3876), - [anon_sym_case] = ACTIONS(3876), - [anon_sym_default] = ACTIONS(3876), - [anon_sym_while] = ACTIONS(3876), - [anon_sym_do] = ACTIONS(3876), - [anon_sym_for] = ACTIONS(3876), - [anon_sym_return] = ACTIONS(3876), - [anon_sym_break] = ACTIONS(3876), - [anon_sym_continue] = ACTIONS(3876), - [anon_sym_goto] = ACTIONS(3876), - [anon_sym___try] = ACTIONS(3876), - [anon_sym___leave] = ACTIONS(3876), - [anon_sym_not] = ACTIONS(3876), - [anon_sym_compl] = ACTIONS(3876), - [anon_sym_DASH_DASH] = ACTIONS(3878), - [anon_sym_PLUS_PLUS] = ACTIONS(3878), - [anon_sym_sizeof] = ACTIONS(3876), - [anon_sym___alignof__] = ACTIONS(3876), - [anon_sym___alignof] = ACTIONS(3876), - [anon_sym__alignof] = ACTIONS(3876), - [anon_sym_alignof] = ACTIONS(3876), - [anon_sym__Alignof] = ACTIONS(3876), - [anon_sym_offsetof] = ACTIONS(3876), - [anon_sym__Generic] = ACTIONS(3876), - [anon_sym_typename] = ACTIONS(3876), - [anon_sym_asm] = ACTIONS(3876), - [anon_sym___asm__] = ACTIONS(3876), - [anon_sym___asm] = ACTIONS(3876), - [sym_number_literal] = ACTIONS(3878), - [anon_sym_L_SQUOTE] = ACTIONS(3878), - [anon_sym_u_SQUOTE] = ACTIONS(3878), - [anon_sym_U_SQUOTE] = ACTIONS(3878), - [anon_sym_u8_SQUOTE] = ACTIONS(3878), - [anon_sym_SQUOTE] = ACTIONS(3878), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(3876), - [sym_false] = ACTIONS(3876), - [anon_sym_NULL] = ACTIONS(3876), - [anon_sym_nullptr] = ACTIONS(3876), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3876), - [anon_sym_decltype] = ACTIONS(3876), - [anon_sym_explicit] = ACTIONS(3876), - [anon_sym_template] = ACTIONS(3876), - [anon_sym_operator] = ACTIONS(3876), - [anon_sym_try] = ACTIONS(3876), - [anon_sym_delete] = ACTIONS(3876), - [anon_sym_throw] = ACTIONS(3876), - [anon_sym_namespace] = ACTIONS(3876), - [anon_sym_static_assert] = ACTIONS(3876), - [anon_sym_concept] = ACTIONS(3876), - [anon_sym_co_return] = ACTIONS(3876), - [anon_sym_co_yield] = ACTIONS(3876), - [anon_sym_R_DQUOTE] = ACTIONS(3878), - [anon_sym_LR_DQUOTE] = ACTIONS(3878), - [anon_sym_uR_DQUOTE] = ACTIONS(3878), - [anon_sym_UR_DQUOTE] = ACTIONS(3878), - [anon_sym_u8R_DQUOTE] = ACTIONS(3878), - [anon_sym_co_await] = ACTIONS(3876), - [anon_sym_new] = ACTIONS(3876), - [anon_sym_requires] = ACTIONS(3876), - [anon_sym_CARET_CARET] = ACTIONS(3878), - [anon_sym_LBRACK_COLON] = ACTIONS(3878), - [sym_this] = ACTIONS(3876), - }, - [STATE(686)] = { - [sym_preproc_def] = STATE(583), - [sym_preproc_function_def] = STATE(583), - [sym_preproc_call] = STATE(583), - [sym_preproc_if_in_field_declaration_list] = STATE(583), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(583), - [sym_type_definition] = STATE(583), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7964), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(583), - [sym_field_declaration] = STATE(583), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(583), - [sym_operator_cast] = STATE(9142), - [sym_inline_method_definition] = STATE(583), - [sym__constructor_specifiers] = STATE(2332), - [sym_operator_cast_definition] = STATE(583), - [sym_operator_cast_declaration] = STATE(583), - [sym_constructor_or_destructor_definition] = STATE(583), - [sym_constructor_or_destructor_declaration] = STATE(583), - [sym_friend_declaration] = STATE(583), - [sym_access_specifier] = STATE(11109), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(583), - [sym_alias_declaration] = STATE(583), - [sym_static_assert_declaration] = STATE(583), - [sym_consteval_block_declaration] = STATE(583), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(583), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9371), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(4352), - [aux_sym_preproc_if_token1] = ACTIONS(4354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), - [sym_preproc_directive] = ACTIONS(4358), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(4408), - [anon_sym___extension__] = ACTIONS(4362), - [anon_sym_typedef] = ACTIONS(4364), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4480), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4372), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(4374), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4376), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(4378), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(687)] = { - [sym_identifier] = ACTIONS(3876), - [aux_sym_preproc_include_token1] = ACTIONS(3876), - [aux_sym_preproc_def_token1] = ACTIONS(3876), - [aux_sym_preproc_if_token1] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), - [sym_preproc_directive] = ACTIONS(3876), - [anon_sym_LPAREN2] = ACTIONS(3878), - [anon_sym_BANG] = ACTIONS(3878), - [anon_sym_TILDE] = ACTIONS(3878), - [anon_sym_DASH] = ACTIONS(3876), - [anon_sym_PLUS] = ACTIONS(3876), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_AMP_AMP] = ACTIONS(3878), - [anon_sym_AMP] = ACTIONS(3876), - [anon_sym_SEMI] = ACTIONS(3878), - [anon_sym___extension__] = ACTIONS(3876), - [anon_sym_typedef] = ACTIONS(3876), - [anon_sym_virtual] = ACTIONS(3876), - [anon_sym_extern] = ACTIONS(3876), - [anon_sym___attribute__] = ACTIONS(3876), - [anon_sym___attribute] = ACTIONS(3876), - [anon_sym_using] = ACTIONS(3876), - [anon_sym_COLON_COLON] = ACTIONS(3878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), - [anon_sym___declspec] = ACTIONS(3876), - [anon_sym___based] = ACTIONS(3876), - [anon_sym___cdecl] = ACTIONS(3876), - [anon_sym___clrcall] = ACTIONS(3876), - [anon_sym___stdcall] = ACTIONS(3876), - [anon_sym___fastcall] = ACTIONS(3876), - [anon_sym___thiscall] = ACTIONS(3876), - [anon_sym___vectorcall] = ACTIONS(3876), - [anon_sym_LBRACE] = ACTIONS(3878), - [anon_sym_RBRACE] = ACTIONS(3878), - [anon_sym_signed] = ACTIONS(3876), - [anon_sym_unsigned] = ACTIONS(3876), - [anon_sym_long] = ACTIONS(3876), - [anon_sym_short] = ACTIONS(3876), - [anon_sym_LBRACK] = ACTIONS(3876), - [anon_sym_static] = ACTIONS(3876), - [anon_sym_register] = ACTIONS(3876), - [anon_sym_inline] = ACTIONS(3876), - [anon_sym___inline] = ACTIONS(3876), - [anon_sym___inline__] = ACTIONS(3876), - [anon_sym___forceinline] = ACTIONS(3876), - [anon_sym_thread_local] = ACTIONS(3876), - [anon_sym___thread] = ACTIONS(3876), - [anon_sym_const] = ACTIONS(3876), - [anon_sym_constexpr] = ACTIONS(3876), - [anon_sym_volatile] = ACTIONS(3876), - [anon_sym_restrict] = ACTIONS(3876), - [anon_sym___restrict__] = ACTIONS(3876), - [anon_sym__Atomic] = ACTIONS(3876), - [anon_sym__Noreturn] = ACTIONS(3876), - [anon_sym_noreturn] = ACTIONS(3876), - [anon_sym__Nonnull] = ACTIONS(3876), - [anon_sym_mutable] = ACTIONS(3876), - [anon_sym_constinit] = ACTIONS(3876), - [anon_sym_consteval] = ACTIONS(3876), - [anon_sym_alignas] = ACTIONS(3876), - [anon_sym__Alignas] = ACTIONS(3876), - [sym_primitive_type] = ACTIONS(3876), - [anon_sym_enum] = ACTIONS(3876), - [anon_sym_class] = ACTIONS(3876), - [anon_sym_struct] = ACTIONS(3876), - [anon_sym_union] = ACTIONS(3876), - [anon_sym_if] = ACTIONS(3876), - [anon_sym_else] = ACTIONS(3876), - [anon_sym_switch] = ACTIONS(3876), - [anon_sym_case] = ACTIONS(3876), - [anon_sym_default] = ACTIONS(3876), - [anon_sym_while] = ACTIONS(3876), - [anon_sym_do] = ACTIONS(3876), - [anon_sym_for] = ACTIONS(3876), - [anon_sym_return] = ACTIONS(3876), - [anon_sym_break] = ACTIONS(3876), - [anon_sym_continue] = ACTIONS(3876), - [anon_sym_goto] = ACTIONS(3876), - [anon_sym___try] = ACTIONS(3876), - [anon_sym___leave] = ACTIONS(3876), - [anon_sym_not] = ACTIONS(3876), - [anon_sym_compl] = ACTIONS(3876), - [anon_sym_DASH_DASH] = ACTIONS(3878), - [anon_sym_PLUS_PLUS] = ACTIONS(3878), - [anon_sym_sizeof] = ACTIONS(3876), - [anon_sym___alignof__] = ACTIONS(3876), - [anon_sym___alignof] = ACTIONS(3876), - [anon_sym__alignof] = ACTIONS(3876), - [anon_sym_alignof] = ACTIONS(3876), - [anon_sym__Alignof] = ACTIONS(3876), - [anon_sym_offsetof] = ACTIONS(3876), - [anon_sym__Generic] = ACTIONS(3876), - [anon_sym_typename] = ACTIONS(3876), - [anon_sym_asm] = ACTIONS(3876), - [anon_sym___asm__] = ACTIONS(3876), - [anon_sym___asm] = ACTIONS(3876), - [sym_number_literal] = ACTIONS(3878), - [anon_sym_L_SQUOTE] = ACTIONS(3878), - [anon_sym_u_SQUOTE] = ACTIONS(3878), - [anon_sym_U_SQUOTE] = ACTIONS(3878), - [anon_sym_u8_SQUOTE] = ACTIONS(3878), - [anon_sym_SQUOTE] = ACTIONS(3878), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(3876), - [sym_false] = ACTIONS(3876), - [anon_sym_NULL] = ACTIONS(3876), - [anon_sym_nullptr] = ACTIONS(3876), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3876), - [anon_sym_decltype] = ACTIONS(3876), - [anon_sym_explicit] = ACTIONS(3876), - [anon_sym_template] = ACTIONS(3876), - [anon_sym_operator] = ACTIONS(3876), - [anon_sym_try] = ACTIONS(3876), - [anon_sym_delete] = ACTIONS(3876), - [anon_sym_throw] = ACTIONS(3876), - [anon_sym_namespace] = ACTIONS(3876), - [anon_sym_static_assert] = ACTIONS(3876), - [anon_sym_concept] = ACTIONS(3876), - [anon_sym_co_return] = ACTIONS(3876), - [anon_sym_co_yield] = ACTIONS(3876), - [anon_sym_R_DQUOTE] = ACTIONS(3878), - [anon_sym_LR_DQUOTE] = ACTIONS(3878), - [anon_sym_uR_DQUOTE] = ACTIONS(3878), - [anon_sym_UR_DQUOTE] = ACTIONS(3878), - [anon_sym_u8R_DQUOTE] = ACTIONS(3878), - [anon_sym_co_await] = ACTIONS(3876), - [anon_sym_new] = ACTIONS(3876), - [anon_sym_requires] = ACTIONS(3876), - [anon_sym_CARET_CARET] = ACTIONS(3878), - [anon_sym_LBRACK_COLON] = ACTIONS(3878), - [sym_this] = ACTIONS(3876), - }, - [STATE(688)] = { - [sym_preproc_def] = STATE(689), - [sym_preproc_function_def] = STATE(689), - [sym_preproc_call] = STATE(689), - [sym_preproc_if_in_field_declaration_list] = STATE(689), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(689), - [sym_type_definition] = STATE(689), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7964), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(689), - [sym_field_declaration] = STATE(689), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(689), - [sym_operator_cast] = STATE(9142), - [sym_inline_method_definition] = STATE(689), - [sym__constructor_specifiers] = STATE(2332), - [sym_operator_cast_definition] = STATE(689), - [sym_operator_cast_declaration] = STATE(689), - [sym_constructor_or_destructor_definition] = STATE(689), - [sym_constructor_or_destructor_declaration] = STATE(689), - [sym_friend_declaration] = STATE(689), - [sym_access_specifier] = STATE(11109), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(689), - [sym_alias_declaration] = STATE(689), - [sym_static_assert_declaration] = STATE(689), - [sym_consteval_block_declaration] = STATE(689), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(689), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9371), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(4352), - [aux_sym_preproc_if_token1] = ACTIONS(4354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), - [sym_preproc_directive] = ACTIONS(4358), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(4482), - [anon_sym___extension__] = ACTIONS(4362), - [anon_sym_typedef] = ACTIONS(4364), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4484), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4372), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(4374), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4376), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(4378), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(689)] = { - [sym_preproc_def] = STATE(583), - [sym_preproc_function_def] = STATE(583), - [sym_preproc_call] = STATE(583), - [sym_preproc_if_in_field_declaration_list] = STATE(583), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(583), - [sym_type_definition] = STATE(583), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7964), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(583), - [sym_field_declaration] = STATE(583), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(583), - [sym_operator_cast] = STATE(9142), - [sym_inline_method_definition] = STATE(583), - [sym__constructor_specifiers] = STATE(2332), - [sym_operator_cast_definition] = STATE(583), - [sym_operator_cast_declaration] = STATE(583), - [sym_constructor_or_destructor_definition] = STATE(583), - [sym_constructor_or_destructor_declaration] = STATE(583), - [sym_friend_declaration] = STATE(583), - [sym_access_specifier] = STATE(11109), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(583), - [sym_alias_declaration] = STATE(583), - [sym_static_assert_declaration] = STATE(583), - [sym_consteval_block_declaration] = STATE(583), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(583), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9371), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(4352), - [aux_sym_preproc_if_token1] = ACTIONS(4354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), - [sym_preproc_directive] = ACTIONS(4358), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(4408), - [anon_sym___extension__] = ACTIONS(4362), - [anon_sym_typedef] = ACTIONS(4364), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4486), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4372), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(4374), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4376), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(4378), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(690)] = { - [sym_preproc_def] = STATE(692), - [sym_preproc_function_def] = STATE(692), - [sym_preproc_call] = STATE(692), - [sym_preproc_if_in_field_declaration_list] = STATE(692), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(692), - [sym_type_definition] = STATE(692), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7964), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(692), - [sym_field_declaration] = STATE(692), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(692), - [sym_operator_cast] = STATE(9142), - [sym_inline_method_definition] = STATE(692), - [sym__constructor_specifiers] = STATE(2332), - [sym_operator_cast_definition] = STATE(692), - [sym_operator_cast_declaration] = STATE(692), - [sym_constructor_or_destructor_definition] = STATE(692), - [sym_constructor_or_destructor_declaration] = STATE(692), - [sym_friend_declaration] = STATE(692), - [sym_access_specifier] = STATE(11109), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(692), - [sym_alias_declaration] = STATE(692), - [sym_static_assert_declaration] = STATE(692), - [sym_consteval_block_declaration] = STATE(692), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(692), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9371), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(4352), - [aux_sym_preproc_if_token1] = ACTIONS(4354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), - [sym_preproc_directive] = ACTIONS(4358), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(4488), - [anon_sym___extension__] = ACTIONS(4362), - [anon_sym_typedef] = ACTIONS(4364), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4490), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4372), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(4374), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4376), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(4378), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(691)] = { - [sym_identifier] = ACTIONS(3884), - [aux_sym_preproc_include_token1] = ACTIONS(3884), - [aux_sym_preproc_def_token1] = ACTIONS(3884), - [aux_sym_preproc_if_token1] = ACTIONS(3884), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3884), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3884), - [sym_preproc_directive] = ACTIONS(3884), - [anon_sym_LPAREN2] = ACTIONS(3886), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3886), - [anon_sym_AMP_AMP] = ACTIONS(3886), - [anon_sym_AMP] = ACTIONS(3884), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym___extension__] = ACTIONS(3884), - [anon_sym_typedef] = ACTIONS(3884), - [anon_sym_virtual] = ACTIONS(3884), - [anon_sym_extern] = ACTIONS(3884), - [anon_sym___attribute__] = ACTIONS(3884), - [anon_sym___attribute] = ACTIONS(3884), - [anon_sym_using] = 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___cdecl] = ACTIONS(3884), - [anon_sym___clrcall] = ACTIONS(3884), - [anon_sym___stdcall] = ACTIONS(3884), - [anon_sym___fastcall] = ACTIONS(3884), - [anon_sym___thiscall] = ACTIONS(3884), - [anon_sym___vectorcall] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_RBRACE] = ACTIONS(3886), - [anon_sym_signed] = ACTIONS(3884), - [anon_sym_unsigned] = ACTIONS(3884), - [anon_sym_long] = ACTIONS(3884), - [anon_sym_short] = ACTIONS(3884), - [anon_sym_LBRACK] = ACTIONS(3884), - [anon_sym_static] = ACTIONS(3884), - [anon_sym_register] = ACTIONS(3884), - [anon_sym_inline] = ACTIONS(3884), - [anon_sym___inline] = ACTIONS(3884), - [anon_sym___inline__] = ACTIONS(3884), - [anon_sym___forceinline] = ACTIONS(3884), - [anon_sym_thread_local] = ACTIONS(3884), - [anon_sym___thread] = ACTIONS(3884), - [anon_sym_const] = ACTIONS(3884), - [anon_sym_constexpr] = ACTIONS(3884), - [anon_sym_volatile] = ACTIONS(3884), - [anon_sym_restrict] = ACTIONS(3884), - [anon_sym___restrict__] = ACTIONS(3884), - [anon_sym__Atomic] = ACTIONS(3884), - [anon_sym__Noreturn] = ACTIONS(3884), - [anon_sym_noreturn] = ACTIONS(3884), - [anon_sym__Nonnull] = ACTIONS(3884), - [anon_sym_mutable] = ACTIONS(3884), - [anon_sym_constinit] = ACTIONS(3884), - [anon_sym_consteval] = ACTIONS(3884), - [anon_sym_alignas] = ACTIONS(3884), - [anon_sym__Alignas] = ACTIONS(3884), - [sym_primitive_type] = ACTIONS(3884), - [anon_sym_enum] = ACTIONS(3884), - [anon_sym_class] = ACTIONS(3884), - [anon_sym_struct] = ACTIONS(3884), - [anon_sym_union] = ACTIONS(3884), - [anon_sym_if] = ACTIONS(3884), - [anon_sym_else] = ACTIONS(3884), - [anon_sym_switch] = ACTIONS(3884), - [anon_sym_case] = ACTIONS(3884), - [anon_sym_default] = ACTIONS(3884), - [anon_sym_while] = ACTIONS(3884), - [anon_sym_do] = ACTIONS(3884), - [anon_sym_for] = ACTIONS(3884), - [anon_sym_return] = ACTIONS(3884), - [anon_sym_break] = ACTIONS(3884), - [anon_sym_continue] = ACTIONS(3884), - [anon_sym_goto] = ACTIONS(3884), - [anon_sym___try] = ACTIONS(3884), - [anon_sym___leave] = ACTIONS(3884), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3886), - [anon_sym_PLUS_PLUS] = ACTIONS(3886), - [anon_sym_sizeof] = ACTIONS(3884), - [anon_sym___alignof__] = ACTIONS(3884), - [anon_sym___alignof] = ACTIONS(3884), - [anon_sym__alignof] = ACTIONS(3884), - [anon_sym_alignof] = ACTIONS(3884), - [anon_sym__Alignof] = ACTIONS(3884), - [anon_sym_offsetof] = ACTIONS(3884), - [anon_sym__Generic] = ACTIONS(3884), - [anon_sym_typename] = ACTIONS(3884), - [anon_sym_asm] = ACTIONS(3884), - [anon_sym___asm__] = ACTIONS(3884), - [anon_sym___asm] = ACTIONS(3884), - [sym_number_literal] = ACTIONS(3886), - [anon_sym_L_SQUOTE] = ACTIONS(3886), - [anon_sym_u_SQUOTE] = ACTIONS(3886), - [anon_sym_U_SQUOTE] = ACTIONS(3886), - [anon_sym_u8_SQUOTE] = ACTIONS(3886), - [anon_sym_SQUOTE] = ACTIONS(3886), - [anon_sym_L_DQUOTE] = ACTIONS(3886), - [anon_sym_u_DQUOTE] = ACTIONS(3886), - [anon_sym_U_DQUOTE] = ACTIONS(3886), - [anon_sym_u8_DQUOTE] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(3886), - [sym_true] = ACTIONS(3884), - [sym_false] = ACTIONS(3884), - [anon_sym_NULL] = ACTIONS(3884), - [anon_sym_nullptr] = ACTIONS(3884), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3884), - [anon_sym_decltype] = ACTIONS(3884), - [anon_sym_explicit] = ACTIONS(3884), - [anon_sym_template] = ACTIONS(3884), - [anon_sym_operator] = ACTIONS(3884), - [anon_sym_try] = ACTIONS(3884), - [anon_sym_delete] = ACTIONS(3884), - [anon_sym_throw] = ACTIONS(3884), - [anon_sym_namespace] = ACTIONS(3884), - [anon_sym_static_assert] = ACTIONS(3884), - [anon_sym_concept] = ACTIONS(3884), - [anon_sym_co_return] = ACTIONS(3884), - [anon_sym_co_yield] = ACTIONS(3884), - [anon_sym_R_DQUOTE] = ACTIONS(3886), - [anon_sym_LR_DQUOTE] = ACTIONS(3886), - [anon_sym_uR_DQUOTE] = ACTIONS(3886), - [anon_sym_UR_DQUOTE] = ACTIONS(3886), - [anon_sym_u8R_DQUOTE] = ACTIONS(3886), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(3884), - [anon_sym_requires] = ACTIONS(3884), - [anon_sym_CARET_CARET] = ACTIONS(3886), - [anon_sym_LBRACK_COLON] = ACTIONS(3886), - [sym_this] = ACTIONS(3884), - }, - [STATE(692)] = { - [sym_preproc_def] = STATE(583), - [sym_preproc_function_def] = STATE(583), - [sym_preproc_call] = STATE(583), - [sym_preproc_if_in_field_declaration_list] = STATE(583), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(583), - [sym_type_definition] = STATE(583), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7964), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(583), - [sym_field_declaration] = STATE(583), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(583), - [sym_operator_cast] = STATE(9142), - [sym_inline_method_definition] = STATE(583), - [sym__constructor_specifiers] = STATE(2332), - [sym_operator_cast_definition] = STATE(583), - [sym_operator_cast_declaration] = STATE(583), - [sym_constructor_or_destructor_definition] = STATE(583), - [sym_constructor_or_destructor_declaration] = STATE(583), - [sym_friend_declaration] = STATE(583), - [sym_access_specifier] = STATE(11109), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(583), - [sym_alias_declaration] = STATE(583), - [sym_static_assert_declaration] = STATE(583), - [sym_consteval_block_declaration] = STATE(583), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(583), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9371), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(4352), - [aux_sym_preproc_if_token1] = ACTIONS(4354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), - [sym_preproc_directive] = ACTIONS(4358), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(4408), - [anon_sym___extension__] = ACTIONS(4362), - [anon_sym_typedef] = ACTIONS(4364), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4492), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4372), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(4374), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4376), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(4378), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(693)] = { - [sym_identifier] = ACTIONS(2803), - [aux_sym_preproc_include_token1] = ACTIONS(2803), - [aux_sym_preproc_def_token1] = ACTIONS(2803), - [anon_sym_COMMA] = ACTIONS(3888), - [aux_sym_preproc_if_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2803), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2803), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym___extension__] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2803), - [anon_sym_virtual] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym___attribute__] = ACTIONS(2803), - [anon_sym___attribute] = ACTIONS(2803), - [anon_sym_using] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2803), - [anon_sym___based] = ACTIONS(2803), - [anon_sym___cdecl] = ACTIONS(2803), - [anon_sym___clrcall] = ACTIONS(2803), - [anon_sym___stdcall] = ACTIONS(2803), - [anon_sym___fastcall] = ACTIONS(2803), - [anon_sym___thiscall] = ACTIONS(2803), - [anon_sym___vectorcall] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_RBRACE] = ACTIONS(3888), - [anon_sym_signed] = ACTIONS(2803), - [anon_sym_unsigned] = ACTIONS(2803), - [anon_sym_long] = ACTIONS(2803), - [anon_sym_short] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_register] = ACTIONS(2803), - [anon_sym_inline] = ACTIONS(2803), - [anon_sym___inline] = ACTIONS(2803), - [anon_sym___inline__] = ACTIONS(2803), - [anon_sym___forceinline] = ACTIONS(2803), - [anon_sym_thread_local] = ACTIONS(2803), - [anon_sym___thread] = ACTIONS(2803), - [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__Nonnull] = ACTIONS(2803), - [anon_sym_mutable] = ACTIONS(2803), - [anon_sym_constinit] = ACTIONS(2803), - [anon_sym_consteval] = ACTIONS(2803), - [anon_sym_alignas] = ACTIONS(2803), - [anon_sym__Alignas] = ACTIONS(2803), - [sym_primitive_type] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_if] = ACTIONS(2803), - [anon_sym_switch] = ACTIONS(2803), - [anon_sym_case] = ACTIONS(2803), - [anon_sym_default] = ACTIONS(2803), - [anon_sym_while] = ACTIONS(2803), - [anon_sym_do] = ACTIONS(2803), - [anon_sym_for] = ACTIONS(2803), - [anon_sym_return] = ACTIONS(2803), - [anon_sym_break] = ACTIONS(2803), - [anon_sym_continue] = ACTIONS(2803), - [anon_sym_goto] = ACTIONS(2803), - [anon_sym___try] = ACTIONS(2803), - [anon_sym___leave] = ACTIONS(2803), - [anon_sym_not] = ACTIONS(2803), - [anon_sym_compl] = ACTIONS(2803), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_sizeof] = ACTIONS(2803), - [anon_sym___alignof__] = ACTIONS(2803), - [anon_sym___alignof] = ACTIONS(2803), - [anon_sym__alignof] = ACTIONS(2803), - [anon_sym_alignof] = ACTIONS(2803), - [anon_sym__Alignof] = ACTIONS(2803), - [anon_sym_offsetof] = ACTIONS(2803), - [anon_sym__Generic] = ACTIONS(2803), - [anon_sym_typename] = ACTIONS(2803), - [anon_sym_asm] = ACTIONS(2803), - [anon_sym___asm__] = ACTIONS(2803), - [anon_sym___asm] = ACTIONS(2803), - [sym_number_literal] = ACTIONS(2801), - [anon_sym_L_SQUOTE] = ACTIONS(2801), - [anon_sym_u_SQUOTE] = ACTIONS(2801), - [anon_sym_U_SQUOTE] = ACTIONS(2801), - [anon_sym_u8_SQUOTE] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2801), - [anon_sym_L_DQUOTE] = ACTIONS(2801), - [anon_sym_u_DQUOTE] = ACTIONS(2801), - [anon_sym_U_DQUOTE] = ACTIONS(2801), - [anon_sym_u8_DQUOTE] = ACTIONS(2801), - [anon_sym_DQUOTE] = ACTIONS(2801), - [sym_true] = ACTIONS(2803), - [sym_false] = ACTIONS(2803), - [anon_sym_NULL] = ACTIONS(2803), - [anon_sym_nullptr] = ACTIONS(2803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2803), - [anon_sym_decltype] = ACTIONS(2803), - [anon_sym_explicit] = ACTIONS(2803), - [anon_sym_template] = ACTIONS(2803), - [anon_sym_operator] = ACTIONS(2803), - [anon_sym_try] = ACTIONS(2803), - [anon_sym_delete] = ACTIONS(2803), - [anon_sym_throw] = ACTIONS(2803), - [anon_sym_namespace] = ACTIONS(2803), - [anon_sym_static_assert] = ACTIONS(2803), - [anon_sym_concept] = ACTIONS(2803), - [anon_sym_co_return] = ACTIONS(2803), - [anon_sym_co_yield] = ACTIONS(2803), - [anon_sym_R_DQUOTE] = ACTIONS(2801), - [anon_sym_LR_DQUOTE] = ACTIONS(2801), - [anon_sym_uR_DQUOTE] = ACTIONS(2801), - [anon_sym_UR_DQUOTE] = ACTIONS(2801), - [anon_sym_u8R_DQUOTE] = ACTIONS(2801), - [anon_sym_co_await] = ACTIONS(2803), - [anon_sym_new] = ACTIONS(2803), - [anon_sym_requires] = ACTIONS(2803), - [anon_sym_CARET_CARET] = ACTIONS(2801), - [anon_sym_LBRACK_COLON] = ACTIONS(2801), - [sym_this] = ACTIONS(2803), - }, - [STATE(694)] = { - [sym_preproc_def] = STATE(696), - [sym_preproc_function_def] = STATE(696), - [sym_preproc_call] = STATE(696), - [sym_preproc_if_in_field_declaration_list] = STATE(696), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(696), - [sym_type_definition] = STATE(696), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7964), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(696), - [sym_field_declaration] = STATE(696), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(696), - [sym_operator_cast] = STATE(9142), - [sym_inline_method_definition] = STATE(696), - [sym__constructor_specifiers] = STATE(2332), - [sym_operator_cast_definition] = STATE(696), - [sym_operator_cast_declaration] = STATE(696), - [sym_constructor_or_destructor_definition] = STATE(696), - [sym_constructor_or_destructor_declaration] = STATE(696), - [sym_friend_declaration] = STATE(696), - [sym_access_specifier] = STATE(11109), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(696), - [sym_alias_declaration] = STATE(696), - [sym_static_assert_declaration] = STATE(696), - [sym_consteval_block_declaration] = STATE(696), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(696), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9371), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(4352), - [aux_sym_preproc_if_token1] = ACTIONS(4354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), - [sym_preproc_directive] = ACTIONS(4358), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(4494), - [anon_sym___extension__] = ACTIONS(4362), - [anon_sym_typedef] = ACTIONS(4364), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4496), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4372), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(4374), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4376), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(4378), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(695)] = { - [ts_builtin_sym_end] = ACTIONS(4098), - [sym_identifier] = ACTIONS(4096), - [aux_sym_preproc_include_token1] = ACTIONS(4096), - [aux_sym_preproc_def_token1] = ACTIONS(4096), - [aux_sym_preproc_if_token1] = ACTIONS(4096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), - [sym_preproc_directive] = ACTIONS(4096), - [anon_sym_LPAREN2] = ACTIONS(4098), - [anon_sym_BANG] = ACTIONS(4098), - [anon_sym_TILDE] = ACTIONS(4098), - [anon_sym_DASH] = ACTIONS(4096), - [anon_sym_PLUS] = ACTIONS(4096), - [anon_sym_STAR] = ACTIONS(4098), - [anon_sym_AMP_AMP] = ACTIONS(4098), - [anon_sym_AMP] = ACTIONS(4096), - [anon_sym_SEMI] = ACTIONS(4098), - [anon_sym___extension__] = ACTIONS(4096), - [anon_sym_typedef] = ACTIONS(4096), - [anon_sym_virtual] = ACTIONS(4096), - [anon_sym_extern] = ACTIONS(4096), - [anon_sym___attribute__] = ACTIONS(4096), - [anon_sym___attribute] = ACTIONS(4096), - [anon_sym_using] = ACTIONS(4096), - [anon_sym_COLON_COLON] = ACTIONS(4098), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4098), - [anon_sym___declspec] = ACTIONS(4096), - [anon_sym___based] = ACTIONS(4096), - [anon_sym___cdecl] = ACTIONS(4096), - [anon_sym___clrcall] = ACTIONS(4096), - [anon_sym___stdcall] = ACTIONS(4096), - [anon_sym___fastcall] = ACTIONS(4096), - [anon_sym___thiscall] = ACTIONS(4096), - [anon_sym___vectorcall] = ACTIONS(4096), - [anon_sym_LBRACE] = ACTIONS(4098), - [anon_sym_signed] = ACTIONS(4096), - [anon_sym_unsigned] = ACTIONS(4096), - [anon_sym_long] = ACTIONS(4096), - [anon_sym_short] = ACTIONS(4096), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_static] = ACTIONS(4096), - [anon_sym_register] = ACTIONS(4096), - [anon_sym_inline] = ACTIONS(4096), - [anon_sym___inline] = ACTIONS(4096), - [anon_sym___inline__] = ACTIONS(4096), - [anon_sym___forceinline] = ACTIONS(4096), - [anon_sym_thread_local] = ACTIONS(4096), - [anon_sym___thread] = ACTIONS(4096), - [anon_sym_const] = ACTIONS(4096), - [anon_sym_constexpr] = ACTIONS(4096), - [anon_sym_volatile] = ACTIONS(4096), - [anon_sym_restrict] = ACTIONS(4096), - [anon_sym___restrict__] = ACTIONS(4096), - [anon_sym__Atomic] = ACTIONS(4096), - [anon_sym__Noreturn] = ACTIONS(4096), - [anon_sym_noreturn] = ACTIONS(4096), - [anon_sym__Nonnull] = ACTIONS(4096), - [anon_sym_mutable] = ACTIONS(4096), - [anon_sym_constinit] = ACTIONS(4096), - [anon_sym_consteval] = ACTIONS(4096), - [anon_sym_alignas] = ACTIONS(4096), - [anon_sym__Alignas] = ACTIONS(4096), - [sym_primitive_type] = ACTIONS(4096), - [anon_sym_enum] = ACTIONS(4096), - [anon_sym_class] = ACTIONS(4096), - [anon_sym_struct] = ACTIONS(4096), - [anon_sym_union] = ACTIONS(4096), - [anon_sym_if] = ACTIONS(4096), - [anon_sym_switch] = ACTIONS(4096), - [anon_sym_case] = ACTIONS(4096), - [anon_sym_default] = ACTIONS(4096), - [anon_sym_while] = ACTIONS(4096), - [anon_sym_do] = ACTIONS(4096), - [anon_sym_for] = ACTIONS(4096), - [anon_sym_return] = ACTIONS(4096), - [anon_sym_break] = ACTIONS(4096), - [anon_sym_continue] = ACTIONS(4096), - [anon_sym_goto] = ACTIONS(4096), - [anon_sym_not] = ACTIONS(4096), - [anon_sym_compl] = ACTIONS(4096), - [anon_sym_DASH_DASH] = ACTIONS(4098), - [anon_sym_PLUS_PLUS] = ACTIONS(4098), - [anon_sym_sizeof] = ACTIONS(4096), - [anon_sym___alignof__] = ACTIONS(4096), - [anon_sym___alignof] = ACTIONS(4096), - [anon_sym__alignof] = ACTIONS(4096), - [anon_sym_alignof] = ACTIONS(4096), - [anon_sym__Alignof] = ACTIONS(4096), - [anon_sym_offsetof] = ACTIONS(4096), - [anon_sym__Generic] = ACTIONS(4096), - [anon_sym_typename] = ACTIONS(4096), - [anon_sym_asm] = ACTIONS(4096), - [anon_sym___asm__] = ACTIONS(4096), - [anon_sym___asm] = ACTIONS(4096), - [sym_number_literal] = ACTIONS(4098), - [anon_sym_L_SQUOTE] = ACTIONS(4098), - [anon_sym_u_SQUOTE] = ACTIONS(4098), - [anon_sym_U_SQUOTE] = ACTIONS(4098), - [anon_sym_u8_SQUOTE] = ACTIONS(4098), - [anon_sym_SQUOTE] = ACTIONS(4098), - [anon_sym_L_DQUOTE] = ACTIONS(4098), - [anon_sym_u_DQUOTE] = ACTIONS(4098), - [anon_sym_U_DQUOTE] = ACTIONS(4098), - [anon_sym_u8_DQUOTE] = ACTIONS(4098), - [anon_sym_DQUOTE] = ACTIONS(4098), - [sym_true] = ACTIONS(4096), - [sym_false] = ACTIONS(4096), - [anon_sym_NULL] = ACTIONS(4096), - [anon_sym_nullptr] = ACTIONS(4096), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4096), - [anon_sym_decltype] = ACTIONS(4096), - [anon_sym_explicit] = ACTIONS(4096), - [anon_sym_export] = ACTIONS(4096), - [anon_sym_module] = ACTIONS(4096), - [anon_sym_import] = ACTIONS(4096), - [anon_sym_template] = ACTIONS(4096), - [anon_sym_operator] = ACTIONS(4096), - [anon_sym_try] = ACTIONS(4096), - [anon_sym_delete] = ACTIONS(4096), - [anon_sym_throw] = ACTIONS(4096), - [anon_sym_namespace] = ACTIONS(4096), - [anon_sym_static_assert] = ACTIONS(4096), - [anon_sym_concept] = ACTIONS(4096), - [anon_sym_co_return] = ACTIONS(4096), - [anon_sym_co_yield] = ACTIONS(4096), - [anon_sym_R_DQUOTE] = ACTIONS(4098), - [anon_sym_LR_DQUOTE] = ACTIONS(4098), - [anon_sym_uR_DQUOTE] = ACTIONS(4098), - [anon_sym_UR_DQUOTE] = ACTIONS(4098), - [anon_sym_u8R_DQUOTE] = ACTIONS(4098), - [anon_sym_co_await] = ACTIONS(4096), - [anon_sym_new] = ACTIONS(4096), - [anon_sym_requires] = ACTIONS(4096), - [anon_sym_CARET_CARET] = ACTIONS(4098), - [anon_sym_LBRACK_COLON] = ACTIONS(4098), - [sym_this] = ACTIONS(4096), - }, - [STATE(696)] = { - [sym_preproc_def] = STATE(583), - [sym_preproc_function_def] = STATE(583), - [sym_preproc_call] = STATE(583), - [sym_preproc_if_in_field_declaration_list] = STATE(583), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(583), - [sym_type_definition] = STATE(583), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7964), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(583), - [sym_field_declaration] = STATE(583), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(583), - [sym_operator_cast] = STATE(9142), - [sym_inline_method_definition] = STATE(583), - [sym__constructor_specifiers] = STATE(2332), - [sym_operator_cast_definition] = STATE(583), - [sym_operator_cast_declaration] = STATE(583), - [sym_constructor_or_destructor_definition] = STATE(583), - [sym_constructor_or_destructor_declaration] = STATE(583), - [sym_friend_declaration] = STATE(583), - [sym_access_specifier] = STATE(11109), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(583), - [sym_alias_declaration] = STATE(583), - [sym_static_assert_declaration] = STATE(583), - [sym_consteval_block_declaration] = STATE(583), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(583), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9371), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(4352), - [aux_sym_preproc_if_token1] = ACTIONS(4354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), - [sym_preproc_directive] = ACTIONS(4358), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(4408), - [anon_sym___extension__] = ACTIONS(4362), - [anon_sym_typedef] = ACTIONS(4364), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4498), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4372), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(4374), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4376), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(4378), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(697)] = { - [ts_builtin_sym_end] = ACTIONS(4102), - [sym_identifier] = ACTIONS(4100), - [aux_sym_preproc_include_token1] = ACTIONS(4100), - [aux_sym_preproc_def_token1] = ACTIONS(4100), - [aux_sym_preproc_if_token1] = ACTIONS(4100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), - [sym_preproc_directive] = ACTIONS(4100), - [anon_sym_LPAREN2] = ACTIONS(4102), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4102), - [anon_sym_AMP] = ACTIONS(4100), - [anon_sym_SEMI] = ACTIONS(4102), - [anon_sym___extension__] = ACTIONS(4100), - [anon_sym_typedef] = ACTIONS(4100), - [anon_sym_virtual] = ACTIONS(4100), - [anon_sym_extern] = ACTIONS(4100), - [anon_sym___attribute__] = ACTIONS(4100), - [anon_sym___attribute] = ACTIONS(4100), - [anon_sym_using] = ACTIONS(4100), - [anon_sym_COLON_COLON] = ACTIONS(4102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4102), - [anon_sym___declspec] = ACTIONS(4100), - [anon_sym___based] = ACTIONS(4100), - [anon_sym___cdecl] = ACTIONS(4100), - [anon_sym___clrcall] = ACTIONS(4100), - [anon_sym___stdcall] = ACTIONS(4100), - [anon_sym___fastcall] = ACTIONS(4100), - [anon_sym___thiscall] = ACTIONS(4100), - [anon_sym___vectorcall] = ACTIONS(4100), - [anon_sym_LBRACE] = ACTIONS(4102), - [anon_sym_signed] = ACTIONS(4100), - [anon_sym_unsigned] = ACTIONS(4100), - [anon_sym_long] = ACTIONS(4100), - [anon_sym_short] = ACTIONS(4100), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_static] = ACTIONS(4100), - [anon_sym_register] = ACTIONS(4100), - [anon_sym_inline] = ACTIONS(4100), - [anon_sym___inline] = ACTIONS(4100), - [anon_sym___inline__] = ACTIONS(4100), - [anon_sym___forceinline] = ACTIONS(4100), - [anon_sym_thread_local] = ACTIONS(4100), - [anon_sym___thread] = ACTIONS(4100), - [anon_sym_const] = ACTIONS(4100), - [anon_sym_constexpr] = ACTIONS(4100), - [anon_sym_volatile] = ACTIONS(4100), - [anon_sym_restrict] = ACTIONS(4100), - [anon_sym___restrict__] = ACTIONS(4100), - [anon_sym__Atomic] = ACTIONS(4100), - [anon_sym__Noreturn] = ACTIONS(4100), - [anon_sym_noreturn] = ACTIONS(4100), - [anon_sym__Nonnull] = ACTIONS(4100), - [anon_sym_mutable] = ACTIONS(4100), - [anon_sym_constinit] = ACTIONS(4100), - [anon_sym_consteval] = ACTIONS(4100), - [anon_sym_alignas] = ACTIONS(4100), - [anon_sym__Alignas] = ACTIONS(4100), - [sym_primitive_type] = ACTIONS(4100), - [anon_sym_enum] = ACTIONS(4100), - [anon_sym_class] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(4100), - [anon_sym_union] = ACTIONS(4100), - [anon_sym_if] = ACTIONS(4100), - [anon_sym_switch] = ACTIONS(4100), - [anon_sym_case] = ACTIONS(4100), - [anon_sym_default] = ACTIONS(4100), - [anon_sym_while] = ACTIONS(4100), - [anon_sym_do] = ACTIONS(4100), - [anon_sym_for] = ACTIONS(4100), - [anon_sym_return] = ACTIONS(4100), - [anon_sym_break] = ACTIONS(4100), - [anon_sym_continue] = ACTIONS(4100), - [anon_sym_goto] = ACTIONS(4100), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(4102), - [anon_sym_PLUS_PLUS] = ACTIONS(4102), - [anon_sym_sizeof] = ACTIONS(4100), - [anon_sym___alignof__] = ACTIONS(4100), - [anon_sym___alignof] = ACTIONS(4100), - [anon_sym__alignof] = ACTIONS(4100), - [anon_sym_alignof] = ACTIONS(4100), - [anon_sym__Alignof] = ACTIONS(4100), - [anon_sym_offsetof] = ACTIONS(4100), - [anon_sym__Generic] = ACTIONS(4100), - [anon_sym_typename] = ACTIONS(4100), - [anon_sym_asm] = ACTIONS(4100), - [anon_sym___asm__] = ACTIONS(4100), - [anon_sym___asm] = ACTIONS(4100), - [sym_number_literal] = ACTIONS(4102), - [anon_sym_L_SQUOTE] = ACTIONS(4102), - [anon_sym_u_SQUOTE] = ACTIONS(4102), - [anon_sym_U_SQUOTE] = ACTIONS(4102), - [anon_sym_u8_SQUOTE] = ACTIONS(4102), - [anon_sym_SQUOTE] = ACTIONS(4102), - [anon_sym_L_DQUOTE] = ACTIONS(4102), - [anon_sym_u_DQUOTE] = ACTIONS(4102), - [anon_sym_U_DQUOTE] = ACTIONS(4102), - [anon_sym_u8_DQUOTE] = ACTIONS(4102), - [anon_sym_DQUOTE] = ACTIONS(4102), - [sym_true] = ACTIONS(4100), - [sym_false] = ACTIONS(4100), - [anon_sym_NULL] = ACTIONS(4100), - [anon_sym_nullptr] = ACTIONS(4100), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4100), - [anon_sym_decltype] = ACTIONS(4100), - [anon_sym_explicit] = ACTIONS(4100), - [anon_sym_export] = ACTIONS(4100), - [anon_sym_module] = ACTIONS(4100), - [anon_sym_import] = ACTIONS(4100), - [anon_sym_template] = ACTIONS(4100), - [anon_sym_operator] = ACTIONS(4100), - [anon_sym_try] = ACTIONS(4100), - [anon_sym_delete] = ACTIONS(4100), - [anon_sym_throw] = ACTIONS(4100), - [anon_sym_namespace] = ACTIONS(4100), - [anon_sym_static_assert] = ACTIONS(4100), - [anon_sym_concept] = ACTIONS(4100), - [anon_sym_co_return] = ACTIONS(4100), - [anon_sym_co_yield] = ACTIONS(4100), - [anon_sym_R_DQUOTE] = ACTIONS(4102), - [anon_sym_LR_DQUOTE] = ACTIONS(4102), - [anon_sym_uR_DQUOTE] = ACTIONS(4102), - [anon_sym_UR_DQUOTE] = ACTIONS(4102), - [anon_sym_u8R_DQUOTE] = ACTIONS(4102), - [anon_sym_co_await] = ACTIONS(4100), - [anon_sym_new] = ACTIONS(4100), - [anon_sym_requires] = ACTIONS(4100), - [anon_sym_CARET_CARET] = ACTIONS(4102), - [anon_sym_LBRACK_COLON] = ACTIONS(4102), - [sym_this] = ACTIONS(4100), - }, - [STATE(698)] = { - [ts_builtin_sym_end] = ACTIONS(4500), - [sym_identifier] = ACTIONS(4502), - [aux_sym_preproc_include_token1] = ACTIONS(4502), - [aux_sym_preproc_def_token1] = ACTIONS(4502), - [aux_sym_preproc_if_token1] = ACTIONS(4502), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4502), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4502), - [sym_preproc_directive] = ACTIONS(4502), - [anon_sym_LPAREN2] = ACTIONS(4500), - [anon_sym_BANG] = ACTIONS(4500), - [anon_sym_TILDE] = ACTIONS(4500), - [anon_sym_DASH] = ACTIONS(4502), - [anon_sym_PLUS] = ACTIONS(4502), - [anon_sym_STAR] = ACTIONS(4500), - [anon_sym_AMP_AMP] = ACTIONS(4500), - [anon_sym_AMP] = ACTIONS(4502), - [anon_sym_SEMI] = ACTIONS(4500), - [anon_sym___extension__] = ACTIONS(4502), - [anon_sym_typedef] = ACTIONS(4502), - [anon_sym_virtual] = ACTIONS(4502), - [anon_sym_extern] = ACTIONS(4502), - [anon_sym___attribute__] = ACTIONS(4502), - [anon_sym___attribute] = ACTIONS(4502), - [anon_sym_using] = ACTIONS(4502), - [anon_sym_COLON_COLON] = ACTIONS(4500), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4500), - [anon_sym___declspec] = ACTIONS(4502), - [anon_sym___based] = ACTIONS(4502), - [anon_sym___cdecl] = ACTIONS(4502), - [anon_sym___clrcall] = ACTIONS(4502), - [anon_sym___stdcall] = ACTIONS(4502), - [anon_sym___fastcall] = ACTIONS(4502), - [anon_sym___thiscall] = ACTIONS(4502), - [anon_sym___vectorcall] = ACTIONS(4502), - [anon_sym_LBRACE] = ACTIONS(4500), - [anon_sym_signed] = ACTIONS(4502), - [anon_sym_unsigned] = ACTIONS(4502), - [anon_sym_long] = ACTIONS(4502), - [anon_sym_short] = ACTIONS(4502), - [anon_sym_LBRACK] = ACTIONS(4502), - [anon_sym_static] = ACTIONS(4502), - [anon_sym_register] = ACTIONS(4502), - [anon_sym_inline] = ACTIONS(4502), - [anon_sym___inline] = ACTIONS(4502), - [anon_sym___inline__] = ACTIONS(4502), - [anon_sym___forceinline] = ACTIONS(4502), - [anon_sym_thread_local] = ACTIONS(4502), - [anon_sym___thread] = ACTIONS(4502), - [anon_sym_const] = ACTIONS(4502), - [anon_sym_constexpr] = ACTIONS(4502), - [anon_sym_volatile] = ACTIONS(4502), - [anon_sym_restrict] = ACTIONS(4502), - [anon_sym___restrict__] = ACTIONS(4502), - [anon_sym__Atomic] = ACTIONS(4502), - [anon_sym__Noreturn] = ACTIONS(4502), - [anon_sym_noreturn] = ACTIONS(4502), - [anon_sym__Nonnull] = ACTIONS(4502), - [anon_sym_mutable] = ACTIONS(4502), - [anon_sym_constinit] = ACTIONS(4502), - [anon_sym_consteval] = ACTIONS(4502), - [anon_sym_alignas] = ACTIONS(4502), - [anon_sym__Alignas] = ACTIONS(4502), - [sym_primitive_type] = ACTIONS(4502), - [anon_sym_enum] = ACTIONS(4502), - [anon_sym_class] = ACTIONS(4502), - [anon_sym_struct] = ACTIONS(4502), - [anon_sym_union] = ACTIONS(4502), - [anon_sym_if] = ACTIONS(4502), - [anon_sym_switch] = ACTIONS(4502), - [anon_sym_case] = ACTIONS(4502), - [anon_sym_default] = ACTIONS(4502), - [anon_sym_while] = ACTIONS(4502), - [anon_sym_do] = ACTIONS(4502), - [anon_sym_for] = ACTIONS(4502), - [anon_sym_return] = ACTIONS(4502), - [anon_sym_break] = ACTIONS(4502), - [anon_sym_continue] = ACTIONS(4502), - [anon_sym_goto] = ACTIONS(4502), - [anon_sym_not] = ACTIONS(4502), - [anon_sym_compl] = ACTIONS(4502), - [anon_sym_DASH_DASH] = ACTIONS(4500), - [anon_sym_PLUS_PLUS] = ACTIONS(4500), - [anon_sym_sizeof] = ACTIONS(4502), - [anon_sym___alignof__] = ACTIONS(4502), - [anon_sym___alignof] = ACTIONS(4502), - [anon_sym__alignof] = ACTIONS(4502), - [anon_sym_alignof] = ACTIONS(4502), - [anon_sym__Alignof] = ACTIONS(4502), - [anon_sym_offsetof] = ACTIONS(4502), - [anon_sym__Generic] = ACTIONS(4502), - [anon_sym_typename] = ACTIONS(4502), - [anon_sym_asm] = ACTIONS(4502), - [anon_sym___asm__] = ACTIONS(4502), - [anon_sym___asm] = ACTIONS(4502), - [sym_number_literal] = ACTIONS(4500), - [anon_sym_L_SQUOTE] = ACTIONS(4500), - [anon_sym_u_SQUOTE] = ACTIONS(4500), - [anon_sym_U_SQUOTE] = ACTIONS(4500), - [anon_sym_u8_SQUOTE] = ACTIONS(4500), - [anon_sym_SQUOTE] = ACTIONS(4500), - [anon_sym_L_DQUOTE] = ACTIONS(4500), - [anon_sym_u_DQUOTE] = ACTIONS(4500), - [anon_sym_U_DQUOTE] = ACTIONS(4500), - [anon_sym_u8_DQUOTE] = ACTIONS(4500), - [anon_sym_DQUOTE] = ACTIONS(4500), - [sym_true] = ACTIONS(4502), - [sym_false] = ACTIONS(4502), - [anon_sym_NULL] = ACTIONS(4502), - [anon_sym_nullptr] = ACTIONS(4502), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4502), - [anon_sym_decltype] = ACTIONS(4502), - [anon_sym_explicit] = ACTIONS(4502), - [anon_sym_export] = ACTIONS(4502), - [anon_sym_module] = ACTIONS(4502), - [anon_sym_import] = ACTIONS(4502), - [anon_sym_template] = ACTIONS(4502), - [anon_sym_operator] = ACTIONS(4502), - [anon_sym_try] = ACTIONS(4502), - [anon_sym_delete] = ACTIONS(4502), - [anon_sym_throw] = ACTIONS(4502), - [anon_sym_namespace] = ACTIONS(4502), - [anon_sym_static_assert] = ACTIONS(4502), - [anon_sym_concept] = ACTIONS(4502), - [anon_sym_co_return] = ACTIONS(4502), - [anon_sym_co_yield] = ACTIONS(4502), - [anon_sym_R_DQUOTE] = ACTIONS(4500), - [anon_sym_LR_DQUOTE] = ACTIONS(4500), - [anon_sym_uR_DQUOTE] = ACTIONS(4500), - [anon_sym_UR_DQUOTE] = ACTIONS(4500), - [anon_sym_u8R_DQUOTE] = ACTIONS(4500), - [anon_sym_co_await] = ACTIONS(4502), - [anon_sym_new] = ACTIONS(4502), - [anon_sym_requires] = ACTIONS(4502), - [anon_sym_CARET_CARET] = ACTIONS(4500), - [anon_sym_LBRACK_COLON] = ACTIONS(4500), - [sym_this] = ACTIONS(4502), - }, - [STATE(699)] = { - [sym_preproc_def] = STATE(702), - [sym_preproc_function_def] = STATE(702), - [sym_preproc_call] = STATE(702), - [sym_preproc_if_in_field_declaration_list] = STATE(702), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(702), - [sym_type_definition] = STATE(702), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7964), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(702), - [sym_field_declaration] = STATE(702), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(702), - [sym_operator_cast] = STATE(9142), - [sym_inline_method_definition] = STATE(702), - [sym__constructor_specifiers] = STATE(2332), - [sym_operator_cast_definition] = STATE(702), - [sym_operator_cast_declaration] = STATE(702), - [sym_constructor_or_destructor_definition] = STATE(702), - [sym_constructor_or_destructor_declaration] = STATE(702), - [sym_friend_declaration] = STATE(702), - [sym_access_specifier] = STATE(11109), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(702), - [sym_alias_declaration] = STATE(702), - [sym_static_assert_declaration] = STATE(702), - [sym_consteval_block_declaration] = STATE(702), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(702), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9371), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(4352), - [aux_sym_preproc_if_token1] = ACTIONS(4354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), - [sym_preproc_directive] = ACTIONS(4358), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(4504), - [anon_sym___extension__] = ACTIONS(4362), - [anon_sym_typedef] = ACTIONS(4364), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4506), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4372), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(4374), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4376), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(4378), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(700)] = { - [sym_identifier] = ACTIONS(3700), - [aux_sym_preproc_include_token1] = ACTIONS(3700), - [aux_sym_preproc_def_token1] = ACTIONS(3700), - [aux_sym_preproc_if_token1] = ACTIONS(3700), - [aux_sym_preproc_if_token2] = ACTIONS(3700), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3700), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3700), - [sym_preproc_directive] = ACTIONS(3700), - [anon_sym_LPAREN2] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_TILDE] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3700), - [anon_sym_SEMI] = ACTIONS(3702), - [anon_sym___extension__] = ACTIONS(3700), - [anon_sym_typedef] = ACTIONS(3700), - [anon_sym_virtual] = ACTIONS(3700), - [anon_sym_extern] = ACTIONS(3700), - [anon_sym___attribute__] = ACTIONS(3700), - [anon_sym___attribute] = ACTIONS(3700), - [anon_sym_using] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3702), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3702), - [anon_sym___declspec] = ACTIONS(3700), - [anon_sym___based] = ACTIONS(3700), - [anon_sym___cdecl] = ACTIONS(3700), - [anon_sym___clrcall] = ACTIONS(3700), - [anon_sym___stdcall] = ACTIONS(3700), - [anon_sym___fastcall] = ACTIONS(3700), - [anon_sym___thiscall] = ACTIONS(3700), - [anon_sym___vectorcall] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3702), - [anon_sym_signed] = ACTIONS(3700), - [anon_sym_unsigned] = ACTIONS(3700), - [anon_sym_long] = ACTIONS(3700), - [anon_sym_short] = ACTIONS(3700), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_static] = ACTIONS(3700), - [anon_sym_register] = ACTIONS(3700), - [anon_sym_inline] = ACTIONS(3700), - [anon_sym___inline] = ACTIONS(3700), - [anon_sym___inline__] = ACTIONS(3700), - [anon_sym___forceinline] = ACTIONS(3700), - [anon_sym_thread_local] = ACTIONS(3700), - [anon_sym___thread] = ACTIONS(3700), - [anon_sym_const] = ACTIONS(3700), - [anon_sym_constexpr] = ACTIONS(3700), - [anon_sym_volatile] = ACTIONS(3700), - [anon_sym_restrict] = ACTIONS(3700), - [anon_sym___restrict__] = ACTIONS(3700), - [anon_sym__Atomic] = ACTIONS(3700), - [anon_sym__Noreturn] = ACTIONS(3700), - [anon_sym_noreturn] = ACTIONS(3700), - [anon_sym__Nonnull] = ACTIONS(3700), - [anon_sym_mutable] = ACTIONS(3700), - [anon_sym_constinit] = ACTIONS(3700), - [anon_sym_consteval] = ACTIONS(3700), - [anon_sym_alignas] = ACTIONS(3700), - [anon_sym__Alignas] = ACTIONS(3700), - [sym_primitive_type] = ACTIONS(3700), - [anon_sym_enum] = ACTIONS(3700), - [anon_sym_class] = ACTIONS(3700), - [anon_sym_struct] = ACTIONS(3700), - [anon_sym_union] = ACTIONS(3700), - [anon_sym_if] = ACTIONS(3700), - [anon_sym_else] = ACTIONS(3700), - [anon_sym_switch] = ACTIONS(3700), - [anon_sym_case] = ACTIONS(3700), - [anon_sym_default] = ACTIONS(3700), - [anon_sym_while] = ACTIONS(3700), - [anon_sym_do] = ACTIONS(3700), - [anon_sym_for] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(3700), - [anon_sym_break] = ACTIONS(3700), - [anon_sym_continue] = ACTIONS(3700), - [anon_sym_goto] = ACTIONS(3700), - [anon_sym___try] = ACTIONS(3700), - [anon_sym___leave] = ACTIONS(3700), - [anon_sym_not] = ACTIONS(3700), - [anon_sym_compl] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3702), - [anon_sym_sizeof] = ACTIONS(3700), - [anon_sym___alignof__] = ACTIONS(3700), - [anon_sym___alignof] = ACTIONS(3700), - [anon_sym__alignof] = ACTIONS(3700), - [anon_sym_alignof] = ACTIONS(3700), - [anon_sym__Alignof] = ACTIONS(3700), - [anon_sym_offsetof] = ACTIONS(3700), - [anon_sym__Generic] = ACTIONS(3700), - [anon_sym_typename] = ACTIONS(3700), - [anon_sym_asm] = ACTIONS(3700), - [anon_sym___asm__] = ACTIONS(3700), - [anon_sym___asm] = ACTIONS(3700), - [sym_number_literal] = ACTIONS(3702), - [anon_sym_L_SQUOTE] = ACTIONS(3702), - [anon_sym_u_SQUOTE] = ACTIONS(3702), - [anon_sym_U_SQUOTE] = ACTIONS(3702), - [anon_sym_u8_SQUOTE] = ACTIONS(3702), - [anon_sym_SQUOTE] = ACTIONS(3702), - [anon_sym_L_DQUOTE] = ACTIONS(3702), - [anon_sym_u_DQUOTE] = ACTIONS(3702), - [anon_sym_U_DQUOTE] = ACTIONS(3702), - [anon_sym_u8_DQUOTE] = ACTIONS(3702), - [anon_sym_DQUOTE] = ACTIONS(3702), - [sym_true] = ACTIONS(3700), - [sym_false] = ACTIONS(3700), - [anon_sym_NULL] = ACTIONS(3700), - [anon_sym_nullptr] = ACTIONS(3700), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3700), - [anon_sym_decltype] = ACTIONS(3700), - [anon_sym_explicit] = ACTIONS(3700), - [anon_sym_template] = ACTIONS(3700), - [anon_sym_operator] = ACTIONS(3700), - [anon_sym_try] = ACTIONS(3700), - [anon_sym_delete] = ACTIONS(3700), - [anon_sym_throw] = ACTIONS(3700), - [anon_sym_namespace] = ACTIONS(3700), - [anon_sym_static_assert] = ACTIONS(3700), - [anon_sym_concept] = ACTIONS(3700), - [anon_sym_co_return] = ACTIONS(3700), - [anon_sym_co_yield] = ACTIONS(3700), - [anon_sym_R_DQUOTE] = ACTIONS(3702), - [anon_sym_LR_DQUOTE] = ACTIONS(3702), - [anon_sym_uR_DQUOTE] = ACTIONS(3702), - [anon_sym_UR_DQUOTE] = ACTIONS(3702), - [anon_sym_u8R_DQUOTE] = ACTIONS(3702), - [anon_sym_co_await] = ACTIONS(3700), - [anon_sym_new] = ACTIONS(3700), - [anon_sym_requires] = ACTIONS(3700), - [anon_sym_CARET_CARET] = ACTIONS(3702), - [anon_sym_LBRACK_COLON] = ACTIONS(3702), - [sym_this] = ACTIONS(3700), + [sym_auto] = ACTIONS(3618), + [anon_sym_decltype] = ACTIONS(3618), + [anon_sym_explicit] = ACTIONS(3618), + [anon_sym_export] = ACTIONS(3618), + [anon_sym_module] = ACTIONS(3618), + [anon_sym_import] = ACTIONS(3618), + [anon_sym_template] = ACTIONS(3618), + [anon_sym_operator] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_namespace] = ACTIONS(3618), + [anon_sym_static_assert] = ACTIONS(3618), + [anon_sym_concept] = ACTIONS(3618), + [anon_sym_co_return] = ACTIONS(3618), + [anon_sym_co_yield] = ACTIONS(3618), + [anon_sym_R_DQUOTE] = ACTIONS(3620), + [anon_sym_LR_DQUOTE] = ACTIONS(3620), + [anon_sym_uR_DQUOTE] = ACTIONS(3620), + [anon_sym_UR_DQUOTE] = ACTIONS(3620), + [anon_sym_u8R_DQUOTE] = ACTIONS(3620), + [anon_sym_co_await] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_requires] = ACTIONS(3618), + [anon_sym_CARET_CARET] = ACTIONS(3620), + [anon_sym_LBRACK_COLON] = ACTIONS(3620), + [sym_this] = ACTIONS(3618), }, - [STATE(701)] = { + [STATE(580)] = { [sym_identifier] = ACTIONS(3622), [aux_sym_preproc_include_token1] = ACTIONS(3622), [aux_sym_preproc_def_token1] = ACTIONS(3622), [aux_sym_preproc_if_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token2] = ACTIONS(3622), [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), [sym_preproc_directive] = ACTIONS(3622), @@ -153890,7 +142965,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(3622), [anon_sym___vectorcall] = ACTIONS(3622), [anon_sym_LBRACE] = ACTIONS(3624), - [anon_sym_RBRACE] = ACTIONS(3624), [anon_sym_signed] = ACTIONS(3622), [anon_sym_unsigned] = ACTIONS(3622), [anon_sym_long] = ACTIONS(3622), @@ -153972,6 +143046,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(3622), [anon_sym_decltype] = ACTIONS(3622), [anon_sym_explicit] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), [anon_sym_template] = ACTIONS(3622), [anon_sym_operator] = ACTIONS(3622), [anon_sym_try] = ACTIONS(3622), @@ -153994,3760 +143071,3416 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3624), [sym_this] = ACTIONS(3622), }, - [STATE(702)] = { - [sym_preproc_def] = STATE(583), - [sym_preproc_function_def] = STATE(583), - [sym_preproc_call] = STATE(583), - [sym_preproc_if_in_field_declaration_list] = STATE(583), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(583), - [sym_type_definition] = STATE(583), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7964), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(583), - [sym_field_declaration] = STATE(583), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(583), - [sym_operator_cast] = STATE(9142), - [sym_inline_method_definition] = STATE(583), - [sym__constructor_specifiers] = STATE(2332), - [sym_operator_cast_definition] = STATE(583), - [sym_operator_cast_declaration] = STATE(583), - [sym_constructor_or_destructor_definition] = STATE(583), - [sym_constructor_or_destructor_declaration] = STATE(583), - [sym_friend_declaration] = STATE(583), - [sym_access_specifier] = STATE(11109), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(583), - [sym_alias_declaration] = STATE(583), - [sym_static_assert_declaration] = STATE(583), - [sym_consteval_block_declaration] = STATE(583), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(583), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9371), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(4352), - [aux_sym_preproc_if_token1] = ACTIONS(4354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), - [sym_preproc_directive] = ACTIONS(4358), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(4408), - [anon_sym___extension__] = ACTIONS(4362), - [anon_sym_typedef] = ACTIONS(4364), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4508), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4372), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), + [STATE(581)] = { + [sym_identifier] = ACTIONS(3622), + [aux_sym_preproc_include_token1] = ACTIONS(3622), + [aux_sym_preproc_def_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token2] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), + [sym_preproc_directive] = ACTIONS(3622), + [anon_sym_LPAREN2] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_STAR] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_AMP] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym___extension__] = ACTIONS(3622), + [anon_sym_typedef] = ACTIONS(3622), + [anon_sym_virtual] = ACTIONS(3622), + [anon_sym_extern] = ACTIONS(3622), + [anon_sym___attribute__] = ACTIONS(3622), + [anon_sym___attribute] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_COLON_COLON] = ACTIONS(3624), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), + [anon_sym___declspec] = ACTIONS(3622), + [anon_sym___based] = ACTIONS(3622), + [anon_sym___cdecl] = ACTIONS(3622), + [anon_sym___clrcall] = ACTIONS(3622), + [anon_sym___stdcall] = ACTIONS(3622), + [anon_sym___fastcall] = ACTIONS(3622), + [anon_sym___thiscall] = ACTIONS(3622), + [anon_sym___vectorcall] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_signed] = ACTIONS(3622), + [anon_sym_unsigned] = ACTIONS(3622), + [anon_sym_long] = ACTIONS(3622), + [anon_sym_short] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_register] = ACTIONS(3622), + [anon_sym_inline] = ACTIONS(3622), + [anon_sym___inline] = ACTIONS(3622), + [anon_sym___inline__] = ACTIONS(3622), + [anon_sym___forceinline] = ACTIONS(3622), + [anon_sym_thread_local] = ACTIONS(3622), + [anon_sym___thread] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_constexpr] = ACTIONS(3622), + [anon_sym_volatile] = ACTIONS(3622), + [anon_sym_restrict] = ACTIONS(3622), + [anon_sym___restrict__] = ACTIONS(3622), + [anon_sym__Atomic] = ACTIONS(3622), + [anon_sym__Noreturn] = ACTIONS(3622), + [anon_sym_noreturn] = ACTIONS(3622), + [anon_sym__Nonnull] = ACTIONS(3622), + [anon_sym_mutable] = ACTIONS(3622), + [anon_sym_constinit] = ACTIONS(3622), + [anon_sym_consteval] = ACTIONS(3622), + [anon_sym_alignas] = ACTIONS(3622), + [anon_sym__Alignas] = ACTIONS(3622), + [sym_primitive_type] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_struct] = ACTIONS(3622), + [anon_sym_union] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_case] = ACTIONS(3622), + [anon_sym_default] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_goto] = ACTIONS(3622), + [anon_sym___try] = ACTIONS(3622), + [anon_sym___leave] = ACTIONS(3622), + [anon_sym_not] = ACTIONS(3622), + [anon_sym_compl] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_sizeof] = ACTIONS(3622), + [anon_sym___alignof__] = ACTIONS(3622), + [anon_sym___alignof] = ACTIONS(3622), + [anon_sym__alignof] = ACTIONS(3622), + [anon_sym_alignof] = ACTIONS(3622), + [anon_sym__Alignof] = ACTIONS(3622), + [anon_sym_offsetof] = ACTIONS(3622), + [anon_sym__Generic] = ACTIONS(3622), + [anon_sym_typename] = ACTIONS(3622), + [anon_sym_asm] = ACTIONS(3622), + [anon_sym___asm__] = ACTIONS(3622), + [anon_sym___asm] = ACTIONS(3622), + [sym_number_literal] = ACTIONS(3624), + [anon_sym_L_SQUOTE] = ACTIONS(3624), + [anon_sym_u_SQUOTE] = ACTIONS(3624), + [anon_sym_U_SQUOTE] = ACTIONS(3624), + [anon_sym_u8_SQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_L_DQUOTE] = ACTIONS(3624), + [anon_sym_u_DQUOTE] = ACTIONS(3624), + [anon_sym_U_DQUOTE] = ACTIONS(3624), + [anon_sym_u8_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [anon_sym_NULL] = ACTIONS(3622), + [anon_sym_nullptr] = ACTIONS(3622), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(4374), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4376), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(4378), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_auto] = ACTIONS(3622), + [anon_sym_decltype] = ACTIONS(3622), + [anon_sym_explicit] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_template] = ACTIONS(3622), + [anon_sym_operator] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_static_assert] = ACTIONS(3622), + [anon_sym_concept] = ACTIONS(3622), + [anon_sym_co_return] = ACTIONS(3622), + [anon_sym_co_yield] = ACTIONS(3622), + [anon_sym_R_DQUOTE] = ACTIONS(3624), + [anon_sym_LR_DQUOTE] = ACTIONS(3624), + [anon_sym_uR_DQUOTE] = ACTIONS(3624), + [anon_sym_UR_DQUOTE] = ACTIONS(3624), + [anon_sym_u8R_DQUOTE] = ACTIONS(3624), + [anon_sym_co_await] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_requires] = ACTIONS(3622), + [anon_sym_CARET_CARET] = ACTIONS(3624), + [anon_sym_LBRACK_COLON] = ACTIONS(3624), + [sym_this] = ACTIONS(3622), }, - [STATE(703)] = { - [ts_builtin_sym_end] = ACTIONS(3904), - [sym_identifier] = ACTIONS(3902), - [aux_sym_preproc_include_token1] = ACTIONS(3902), - [aux_sym_preproc_def_token1] = ACTIONS(3902), - [aux_sym_preproc_if_token1] = ACTIONS(3902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3902), - [sym_preproc_directive] = ACTIONS(3902), - [anon_sym_LPAREN2] = ACTIONS(3904), - [anon_sym_BANG] = ACTIONS(3904), - [anon_sym_TILDE] = ACTIONS(3904), - [anon_sym_DASH] = ACTIONS(3902), - [anon_sym_PLUS] = ACTIONS(3902), - [anon_sym_STAR] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3904), - [anon_sym_AMP] = ACTIONS(3902), - [anon_sym_SEMI] = ACTIONS(3904), - [anon_sym___extension__] = ACTIONS(3902), - [anon_sym_typedef] = ACTIONS(3902), - [anon_sym_virtual] = ACTIONS(3902), - [anon_sym_extern] = ACTIONS(3902), - [anon_sym___attribute__] = ACTIONS(3902), - [anon_sym___attribute] = ACTIONS(3902), - [anon_sym_using] = 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___cdecl] = ACTIONS(3902), - [anon_sym___clrcall] = ACTIONS(3902), - [anon_sym___stdcall] = ACTIONS(3902), - [anon_sym___fastcall] = ACTIONS(3902), - [anon_sym___thiscall] = ACTIONS(3902), - [anon_sym___vectorcall] = ACTIONS(3902), - [anon_sym_LBRACE] = ACTIONS(3904), - [anon_sym_signed] = ACTIONS(3902), - [anon_sym_unsigned] = ACTIONS(3902), - [anon_sym_long] = ACTIONS(3902), - [anon_sym_short] = ACTIONS(3902), - [anon_sym_LBRACK] = ACTIONS(3902), - [anon_sym_static] = ACTIONS(3902), - [anon_sym_register] = ACTIONS(3902), - [anon_sym_inline] = ACTIONS(3902), - [anon_sym___inline] = ACTIONS(3902), - [anon_sym___inline__] = ACTIONS(3902), - [anon_sym___forceinline] = ACTIONS(3902), - [anon_sym_thread_local] = ACTIONS(3902), - [anon_sym___thread] = ACTIONS(3902), - [anon_sym_const] = ACTIONS(3902), - [anon_sym_constexpr] = ACTIONS(3902), - [anon_sym_volatile] = ACTIONS(3902), - [anon_sym_restrict] = ACTIONS(3902), - [anon_sym___restrict__] = ACTIONS(3902), - [anon_sym__Atomic] = ACTIONS(3902), - [anon_sym__Noreturn] = ACTIONS(3902), - [anon_sym_noreturn] = ACTIONS(3902), - [anon_sym__Nonnull] = ACTIONS(3902), - [anon_sym_mutable] = ACTIONS(3902), - [anon_sym_constinit] = ACTIONS(3902), - [anon_sym_consteval] = ACTIONS(3902), - [anon_sym_alignas] = ACTIONS(3902), - [anon_sym__Alignas] = ACTIONS(3902), - [sym_primitive_type] = ACTIONS(3902), - [anon_sym_enum] = ACTIONS(3902), - [anon_sym_class] = ACTIONS(3902), - [anon_sym_struct] = ACTIONS(3902), - [anon_sym_union] = ACTIONS(3902), - [anon_sym_if] = ACTIONS(3902), - [anon_sym_switch] = ACTIONS(3902), - [anon_sym_case] = ACTIONS(3902), - [anon_sym_default] = ACTIONS(3902), - [anon_sym_while] = ACTIONS(3902), - [anon_sym_do] = ACTIONS(3902), - [anon_sym_for] = ACTIONS(3902), - [anon_sym_return] = ACTIONS(3902), - [anon_sym_break] = ACTIONS(3902), - [anon_sym_continue] = ACTIONS(3902), - [anon_sym_goto] = ACTIONS(3902), - [anon_sym_not] = ACTIONS(3902), - [anon_sym_compl] = ACTIONS(3902), - [anon_sym_DASH_DASH] = ACTIONS(3904), - [anon_sym_PLUS_PLUS] = ACTIONS(3904), - [anon_sym_sizeof] = ACTIONS(3902), - [anon_sym___alignof__] = ACTIONS(3902), - [anon_sym___alignof] = ACTIONS(3902), - [anon_sym__alignof] = ACTIONS(3902), - [anon_sym_alignof] = ACTIONS(3902), - [anon_sym__Alignof] = ACTIONS(3902), - [anon_sym_offsetof] = ACTIONS(3902), - [anon_sym__Generic] = ACTIONS(3902), - [anon_sym_typename] = ACTIONS(3902), - [anon_sym_asm] = ACTIONS(3902), - [anon_sym___asm__] = ACTIONS(3902), - [anon_sym___asm] = ACTIONS(3902), - [sym_number_literal] = ACTIONS(3904), - [anon_sym_L_SQUOTE] = ACTIONS(3904), - [anon_sym_u_SQUOTE] = ACTIONS(3904), - [anon_sym_U_SQUOTE] = ACTIONS(3904), - [anon_sym_u8_SQUOTE] = ACTIONS(3904), - [anon_sym_SQUOTE] = ACTIONS(3904), - [anon_sym_L_DQUOTE] = ACTIONS(3904), - [anon_sym_u_DQUOTE] = ACTIONS(3904), - [anon_sym_U_DQUOTE] = ACTIONS(3904), - [anon_sym_u8_DQUOTE] = ACTIONS(3904), - [anon_sym_DQUOTE] = ACTIONS(3904), - [sym_true] = ACTIONS(3902), - [sym_false] = ACTIONS(3902), - [anon_sym_NULL] = ACTIONS(3902), - [anon_sym_nullptr] = ACTIONS(3902), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3902), - [anon_sym_decltype] = ACTIONS(3902), - [anon_sym_explicit] = ACTIONS(3902), - [anon_sym_export] = ACTIONS(3902), - [anon_sym_module] = ACTIONS(3902), - [anon_sym_import] = ACTIONS(3902), - [anon_sym_template] = ACTIONS(3902), - [anon_sym_operator] = ACTIONS(3902), - [anon_sym_try] = ACTIONS(3902), - [anon_sym_delete] = ACTIONS(3902), - [anon_sym_throw] = ACTIONS(3902), - [anon_sym_namespace] = ACTIONS(3902), - [anon_sym_static_assert] = ACTIONS(3902), - [anon_sym_concept] = ACTIONS(3902), - [anon_sym_co_return] = ACTIONS(3902), - [anon_sym_co_yield] = ACTIONS(3902), - [anon_sym_R_DQUOTE] = ACTIONS(3904), - [anon_sym_LR_DQUOTE] = ACTIONS(3904), - [anon_sym_uR_DQUOTE] = ACTIONS(3904), - [anon_sym_UR_DQUOTE] = ACTIONS(3904), - [anon_sym_u8R_DQUOTE] = ACTIONS(3904), - [anon_sym_co_await] = ACTIONS(3902), - [anon_sym_new] = ACTIONS(3902), - [anon_sym_requires] = ACTIONS(3902), - [anon_sym_CARET_CARET] = ACTIONS(3904), - [anon_sym_LBRACK_COLON] = ACTIONS(3904), - [sym_this] = ACTIONS(3902), + [STATE(582)] = { + [ts_builtin_sym_end] = ACTIONS(3640), + [sym_identifier] = ACTIONS(3638), + [aux_sym_preproc_include_token1] = ACTIONS(3638), + [aux_sym_preproc_def_token1] = ACTIONS(3638), + [aux_sym_preproc_if_token1] = ACTIONS(3638), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3638), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3638), + [sym_preproc_directive] = ACTIONS(3638), + [anon_sym_LPAREN2] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3640), + [anon_sym_TILDE] = ACTIONS(3640), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym___extension__] = ACTIONS(3638), + [anon_sym_typedef] = ACTIONS(3638), + [anon_sym_virtual] = ACTIONS(3638), + [anon_sym_extern] = ACTIONS(3638), + [anon_sym___attribute__] = ACTIONS(3638), + [anon_sym___attribute] = ACTIONS(3638), + [anon_sym_using] = ACTIONS(3638), + [anon_sym_COLON_COLON] = ACTIONS(3640), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3640), + [anon_sym___declspec] = ACTIONS(3638), + [anon_sym___based] = ACTIONS(3638), + [anon_sym___cdecl] = ACTIONS(3638), + [anon_sym___clrcall] = ACTIONS(3638), + [anon_sym___stdcall] = ACTIONS(3638), + [anon_sym___fastcall] = ACTIONS(3638), + [anon_sym___thiscall] = ACTIONS(3638), + [anon_sym___vectorcall] = ACTIONS(3638), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_signed] = ACTIONS(3638), + [anon_sym_unsigned] = ACTIONS(3638), + [anon_sym_long] = ACTIONS(3638), + [anon_sym_short] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_static] = ACTIONS(3638), + [anon_sym_register] = ACTIONS(3638), + [anon_sym_inline] = ACTIONS(3638), + [anon_sym___inline] = ACTIONS(3638), + [anon_sym___inline__] = ACTIONS(3638), + [anon_sym___forceinline] = ACTIONS(3638), + [anon_sym_thread_local] = ACTIONS(3638), + [anon_sym___thread] = ACTIONS(3638), + [anon_sym_const] = ACTIONS(3638), + [anon_sym_constexpr] = ACTIONS(3638), + [anon_sym_volatile] = ACTIONS(3638), + [anon_sym_restrict] = ACTIONS(3638), + [anon_sym___restrict__] = ACTIONS(3638), + [anon_sym__Atomic] = ACTIONS(3638), + [anon_sym__Noreturn] = ACTIONS(3638), + [anon_sym_noreturn] = ACTIONS(3638), + [anon_sym__Nonnull] = ACTIONS(3638), + [anon_sym_mutable] = ACTIONS(3638), + [anon_sym_constinit] = ACTIONS(3638), + [anon_sym_consteval] = ACTIONS(3638), + [anon_sym_alignas] = ACTIONS(3638), + [anon_sym__Alignas] = ACTIONS(3638), + [sym_primitive_type] = ACTIONS(3638), + [anon_sym_enum] = ACTIONS(3638), + [anon_sym_class] = ACTIONS(3638), + [anon_sym_struct] = ACTIONS(3638), + [anon_sym_union] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_else] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_case] = ACTIONS(3638), + [anon_sym_default] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_break] = ACTIONS(3638), + [anon_sym_continue] = ACTIONS(3638), + [anon_sym_goto] = ACTIONS(3638), + [anon_sym___try] = ACTIONS(3638), + [anon_sym___leave] = ACTIONS(3638), + [anon_sym_not] = ACTIONS(3638), + [anon_sym_compl] = ACTIONS(3638), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_sizeof] = ACTIONS(3638), + [anon_sym___alignof__] = ACTIONS(3638), + [anon_sym___alignof] = ACTIONS(3638), + [anon_sym__alignof] = ACTIONS(3638), + [anon_sym_alignof] = ACTIONS(3638), + [anon_sym__Alignof] = ACTIONS(3638), + [anon_sym_offsetof] = ACTIONS(3638), + [anon_sym__Generic] = ACTIONS(3638), + [anon_sym_typename] = ACTIONS(3638), + [anon_sym_asm] = ACTIONS(3638), + [anon_sym___asm__] = ACTIONS(3638), + [anon_sym___asm] = ACTIONS(3638), + [sym_number_literal] = ACTIONS(3640), + [anon_sym_L_SQUOTE] = ACTIONS(3640), + [anon_sym_u_SQUOTE] = ACTIONS(3640), + [anon_sym_U_SQUOTE] = ACTIONS(3640), + [anon_sym_u8_SQUOTE] = ACTIONS(3640), + [anon_sym_SQUOTE] = ACTIONS(3640), + [anon_sym_L_DQUOTE] = ACTIONS(3640), + [anon_sym_u_DQUOTE] = ACTIONS(3640), + [anon_sym_U_DQUOTE] = ACTIONS(3640), + [anon_sym_u8_DQUOTE] = ACTIONS(3640), + [anon_sym_DQUOTE] = ACTIONS(3640), + [sym_true] = ACTIONS(3638), + [sym_false] = ACTIONS(3638), + [anon_sym_NULL] = ACTIONS(3638), + [anon_sym_nullptr] = ACTIONS(3638), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3638), + [anon_sym_decltype] = ACTIONS(3638), + [anon_sym_explicit] = ACTIONS(3638), + [anon_sym_export] = ACTIONS(3638), + [anon_sym_module] = ACTIONS(3638), + [anon_sym_import] = ACTIONS(3638), + [anon_sym_template] = ACTIONS(3638), + [anon_sym_operator] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_delete] = ACTIONS(3638), + [anon_sym_throw] = ACTIONS(3638), + [anon_sym_namespace] = ACTIONS(3638), + [anon_sym_static_assert] = ACTIONS(3638), + [anon_sym_concept] = ACTIONS(3638), + [anon_sym_co_return] = ACTIONS(3638), + [anon_sym_co_yield] = ACTIONS(3638), + [anon_sym_R_DQUOTE] = ACTIONS(3640), + [anon_sym_LR_DQUOTE] = ACTIONS(3640), + [anon_sym_uR_DQUOTE] = ACTIONS(3640), + [anon_sym_UR_DQUOTE] = ACTIONS(3640), + [anon_sym_u8R_DQUOTE] = ACTIONS(3640), + [anon_sym_co_await] = ACTIONS(3638), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_requires] = ACTIONS(3638), + [anon_sym_CARET_CARET] = ACTIONS(3640), + [anon_sym_LBRACK_COLON] = ACTIONS(3640), + [sym_this] = ACTIONS(3638), }, - [STATE(704)] = { - [ts_builtin_sym_end] = ACTIONS(3908), - [sym_identifier] = ACTIONS(3906), - [aux_sym_preproc_include_token1] = ACTIONS(3906), - [aux_sym_preproc_def_token1] = ACTIONS(3906), - [aux_sym_preproc_if_token1] = ACTIONS(3906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3906), - [sym_preproc_directive] = ACTIONS(3906), - [anon_sym_LPAREN2] = ACTIONS(3908), - [anon_sym_BANG] = ACTIONS(3908), - [anon_sym_TILDE] = ACTIONS(3908), - [anon_sym_DASH] = ACTIONS(3906), - [anon_sym_PLUS] = ACTIONS(3906), - [anon_sym_STAR] = ACTIONS(3908), - [anon_sym_AMP_AMP] = ACTIONS(3908), - [anon_sym_AMP] = ACTIONS(3906), - [anon_sym_SEMI] = ACTIONS(3908), - [anon_sym___extension__] = ACTIONS(3906), - [anon_sym_typedef] = ACTIONS(3906), - [anon_sym_virtual] = ACTIONS(3906), - [anon_sym_extern] = ACTIONS(3906), - [anon_sym___attribute__] = ACTIONS(3906), - [anon_sym___attribute] = ACTIONS(3906), - [anon_sym_using] = ACTIONS(3906), - [anon_sym_COLON_COLON] = ACTIONS(3908), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3908), - [anon_sym___declspec] = ACTIONS(3906), - [anon_sym___based] = ACTIONS(3906), - [anon_sym___cdecl] = ACTIONS(3906), - [anon_sym___clrcall] = ACTIONS(3906), - [anon_sym___stdcall] = ACTIONS(3906), - [anon_sym___fastcall] = ACTIONS(3906), - [anon_sym___thiscall] = ACTIONS(3906), - [anon_sym___vectorcall] = ACTIONS(3906), - [anon_sym_LBRACE] = ACTIONS(3908), - [anon_sym_signed] = ACTIONS(3906), - [anon_sym_unsigned] = ACTIONS(3906), - [anon_sym_long] = ACTIONS(3906), - [anon_sym_short] = ACTIONS(3906), - [anon_sym_LBRACK] = ACTIONS(3906), - [anon_sym_static] = ACTIONS(3906), - [anon_sym_register] = ACTIONS(3906), - [anon_sym_inline] = ACTIONS(3906), - [anon_sym___inline] = ACTIONS(3906), - [anon_sym___inline__] = ACTIONS(3906), - [anon_sym___forceinline] = ACTIONS(3906), - [anon_sym_thread_local] = ACTIONS(3906), - [anon_sym___thread] = ACTIONS(3906), - [anon_sym_const] = ACTIONS(3906), - [anon_sym_constexpr] = ACTIONS(3906), - [anon_sym_volatile] = ACTIONS(3906), - [anon_sym_restrict] = ACTIONS(3906), - [anon_sym___restrict__] = ACTIONS(3906), - [anon_sym__Atomic] = ACTIONS(3906), - [anon_sym__Noreturn] = ACTIONS(3906), - [anon_sym_noreturn] = ACTIONS(3906), - [anon_sym__Nonnull] = ACTIONS(3906), - [anon_sym_mutable] = ACTIONS(3906), - [anon_sym_constinit] = ACTIONS(3906), - [anon_sym_consteval] = ACTIONS(3906), - [anon_sym_alignas] = ACTIONS(3906), - [anon_sym__Alignas] = ACTIONS(3906), - [sym_primitive_type] = ACTIONS(3906), - [anon_sym_enum] = ACTIONS(3906), - [anon_sym_class] = ACTIONS(3906), - [anon_sym_struct] = ACTIONS(3906), - [anon_sym_union] = ACTIONS(3906), - [anon_sym_if] = ACTIONS(3906), - [anon_sym_switch] = ACTIONS(3906), - [anon_sym_case] = ACTIONS(3906), - [anon_sym_default] = ACTIONS(3906), - [anon_sym_while] = ACTIONS(3906), - [anon_sym_do] = ACTIONS(3906), - [anon_sym_for] = ACTIONS(3906), - [anon_sym_return] = ACTIONS(3906), - [anon_sym_break] = ACTIONS(3906), - [anon_sym_continue] = ACTIONS(3906), - [anon_sym_goto] = ACTIONS(3906), - [anon_sym_not] = ACTIONS(3906), - [anon_sym_compl] = ACTIONS(3906), - [anon_sym_DASH_DASH] = ACTIONS(3908), - [anon_sym_PLUS_PLUS] = ACTIONS(3908), - [anon_sym_sizeof] = ACTIONS(3906), - [anon_sym___alignof__] = ACTIONS(3906), - [anon_sym___alignof] = ACTIONS(3906), - [anon_sym__alignof] = ACTIONS(3906), - [anon_sym_alignof] = ACTIONS(3906), - [anon_sym__Alignof] = ACTIONS(3906), - [anon_sym_offsetof] = ACTIONS(3906), - [anon_sym__Generic] = ACTIONS(3906), - [anon_sym_typename] = ACTIONS(3906), - [anon_sym_asm] = ACTIONS(3906), - [anon_sym___asm__] = ACTIONS(3906), - [anon_sym___asm] = ACTIONS(3906), - [sym_number_literal] = ACTIONS(3908), - [anon_sym_L_SQUOTE] = ACTIONS(3908), - [anon_sym_u_SQUOTE] = ACTIONS(3908), - [anon_sym_U_SQUOTE] = ACTIONS(3908), - [anon_sym_u8_SQUOTE] = ACTIONS(3908), - [anon_sym_SQUOTE] = ACTIONS(3908), - [anon_sym_L_DQUOTE] = ACTIONS(3908), - [anon_sym_u_DQUOTE] = ACTIONS(3908), - [anon_sym_U_DQUOTE] = ACTIONS(3908), - [anon_sym_u8_DQUOTE] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(3908), - [sym_true] = ACTIONS(3906), - [sym_false] = ACTIONS(3906), - [anon_sym_NULL] = ACTIONS(3906), - [anon_sym_nullptr] = ACTIONS(3906), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3906), - [anon_sym_decltype] = ACTIONS(3906), - [anon_sym_explicit] = ACTIONS(3906), - [anon_sym_export] = ACTIONS(3906), - [anon_sym_module] = ACTIONS(3906), - [anon_sym_import] = ACTIONS(3906), - [anon_sym_template] = ACTIONS(3906), - [anon_sym_operator] = ACTIONS(3906), - [anon_sym_try] = ACTIONS(3906), - [anon_sym_delete] = ACTIONS(3906), - [anon_sym_throw] = ACTIONS(3906), - [anon_sym_namespace] = ACTIONS(3906), - [anon_sym_static_assert] = ACTIONS(3906), - [anon_sym_concept] = ACTIONS(3906), - [anon_sym_co_return] = ACTIONS(3906), - [anon_sym_co_yield] = ACTIONS(3906), - [anon_sym_R_DQUOTE] = ACTIONS(3908), - [anon_sym_LR_DQUOTE] = ACTIONS(3908), - [anon_sym_uR_DQUOTE] = ACTIONS(3908), - [anon_sym_UR_DQUOTE] = ACTIONS(3908), - [anon_sym_u8R_DQUOTE] = ACTIONS(3908), - [anon_sym_co_await] = ACTIONS(3906), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(3906), - [anon_sym_CARET_CARET] = ACTIONS(3908), - [anon_sym_LBRACK_COLON] = ACTIONS(3908), - [sym_this] = ACTIONS(3906), + [STATE(583)] = { + [sym_identifier] = ACTIONS(3564), + [aux_sym_preproc_include_token1] = ACTIONS(3564), + [aux_sym_preproc_def_token1] = ACTIONS(3564), + [aux_sym_preproc_if_token1] = ACTIONS(3564), + [aux_sym_preproc_if_token2] = ACTIONS(3564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3564), + [sym_preproc_directive] = ACTIONS(3564), + [anon_sym_LPAREN2] = ACTIONS(3566), + [anon_sym_BANG] = ACTIONS(3566), + [anon_sym_TILDE] = ACTIONS(3566), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3566), + [anon_sym_AMP_AMP] = ACTIONS(3566), + [anon_sym_AMP] = ACTIONS(3564), + [anon_sym_SEMI] = ACTIONS(3566), + [anon_sym___extension__] = ACTIONS(3564), + [anon_sym_typedef] = ACTIONS(3564), + [anon_sym_virtual] = ACTIONS(3564), + [anon_sym_extern] = ACTIONS(3564), + [anon_sym___attribute__] = ACTIONS(3564), + [anon_sym___attribute] = ACTIONS(3564), + [anon_sym_using] = ACTIONS(3564), + [anon_sym_COLON_COLON] = ACTIONS(3566), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3566), + [anon_sym___declspec] = ACTIONS(3564), + [anon_sym___based] = ACTIONS(3564), + [anon_sym___cdecl] = ACTIONS(3564), + [anon_sym___clrcall] = ACTIONS(3564), + [anon_sym___stdcall] = ACTIONS(3564), + [anon_sym___fastcall] = ACTIONS(3564), + [anon_sym___thiscall] = ACTIONS(3564), + [anon_sym___vectorcall] = ACTIONS(3564), + [anon_sym_LBRACE] = ACTIONS(3566), + [anon_sym_signed] = ACTIONS(3564), + [anon_sym_unsigned] = ACTIONS(3564), + [anon_sym_long] = ACTIONS(3564), + [anon_sym_short] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3564), + [anon_sym_static] = ACTIONS(3564), + [anon_sym_register] = ACTIONS(3564), + [anon_sym_inline] = ACTIONS(3564), + [anon_sym___inline] = ACTIONS(3564), + [anon_sym___inline__] = ACTIONS(3564), + [anon_sym___forceinline] = ACTIONS(3564), + [anon_sym_thread_local] = ACTIONS(3564), + [anon_sym___thread] = ACTIONS(3564), + [anon_sym_const] = ACTIONS(3564), + [anon_sym_constexpr] = ACTIONS(3564), + [anon_sym_volatile] = ACTIONS(3564), + [anon_sym_restrict] = ACTIONS(3564), + [anon_sym___restrict__] = ACTIONS(3564), + [anon_sym__Atomic] = ACTIONS(3564), + [anon_sym__Noreturn] = ACTIONS(3564), + [anon_sym_noreturn] = ACTIONS(3564), + [anon_sym__Nonnull] = ACTIONS(3564), + [anon_sym_mutable] = ACTIONS(3564), + [anon_sym_constinit] = ACTIONS(3564), + [anon_sym_consteval] = ACTIONS(3564), + [anon_sym_alignas] = ACTIONS(3564), + [anon_sym__Alignas] = ACTIONS(3564), + [sym_primitive_type] = ACTIONS(3564), + [anon_sym_enum] = ACTIONS(3564), + [anon_sym_class] = ACTIONS(3564), + [anon_sym_struct] = ACTIONS(3564), + [anon_sym_union] = ACTIONS(3564), + [anon_sym_if] = ACTIONS(3564), + [anon_sym_else] = ACTIONS(3564), + [anon_sym_switch] = ACTIONS(3564), + [anon_sym_case] = ACTIONS(3564), + [anon_sym_default] = ACTIONS(3564), + [anon_sym_while] = ACTIONS(3564), + [anon_sym_do] = ACTIONS(3564), + [anon_sym_for] = ACTIONS(3564), + [anon_sym_return] = ACTIONS(3564), + [anon_sym_break] = ACTIONS(3564), + [anon_sym_continue] = ACTIONS(3564), + [anon_sym_goto] = ACTIONS(3564), + [anon_sym___try] = ACTIONS(3564), + [anon_sym___leave] = ACTIONS(3564), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3566), + [anon_sym_sizeof] = ACTIONS(3564), + [anon_sym___alignof__] = ACTIONS(3564), + [anon_sym___alignof] = ACTIONS(3564), + [anon_sym__alignof] = ACTIONS(3564), + [anon_sym_alignof] = ACTIONS(3564), + [anon_sym__Alignof] = ACTIONS(3564), + [anon_sym_offsetof] = ACTIONS(3564), + [anon_sym__Generic] = ACTIONS(3564), + [anon_sym_typename] = ACTIONS(3564), + [anon_sym_asm] = ACTIONS(3564), + [anon_sym___asm__] = ACTIONS(3564), + [anon_sym___asm] = ACTIONS(3564), + [sym_number_literal] = ACTIONS(3566), + [anon_sym_L_SQUOTE] = ACTIONS(3566), + [anon_sym_u_SQUOTE] = ACTIONS(3566), + [anon_sym_U_SQUOTE] = ACTIONS(3566), + [anon_sym_u8_SQUOTE] = ACTIONS(3566), + [anon_sym_SQUOTE] = ACTIONS(3566), + [anon_sym_L_DQUOTE] = ACTIONS(3566), + [anon_sym_u_DQUOTE] = ACTIONS(3566), + [anon_sym_U_DQUOTE] = ACTIONS(3566), + [anon_sym_u8_DQUOTE] = ACTIONS(3566), + [anon_sym_DQUOTE] = ACTIONS(3566), + [sym_true] = ACTIONS(3564), + [sym_false] = ACTIONS(3564), + [anon_sym_NULL] = ACTIONS(3564), + [anon_sym_nullptr] = ACTIONS(3564), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3564), + [anon_sym_decltype] = ACTIONS(3564), + [anon_sym_explicit] = ACTIONS(3564), + [anon_sym_export] = ACTIONS(3564), + [anon_sym_module] = ACTIONS(3564), + [anon_sym_import] = ACTIONS(3564), + [anon_sym_template] = ACTIONS(3564), + [anon_sym_operator] = ACTIONS(3564), + [anon_sym_try] = ACTIONS(3564), + [anon_sym_delete] = ACTIONS(3564), + [anon_sym_throw] = ACTIONS(3564), + [anon_sym_namespace] = ACTIONS(3564), + [anon_sym_static_assert] = ACTIONS(3564), + [anon_sym_concept] = ACTIONS(3564), + [anon_sym_co_return] = ACTIONS(3564), + [anon_sym_co_yield] = ACTIONS(3564), + [anon_sym_R_DQUOTE] = ACTIONS(3566), + [anon_sym_LR_DQUOTE] = ACTIONS(3566), + [anon_sym_uR_DQUOTE] = ACTIONS(3566), + [anon_sym_UR_DQUOTE] = ACTIONS(3566), + [anon_sym_u8R_DQUOTE] = ACTIONS(3566), + [anon_sym_co_await] = ACTIONS(3564), + [anon_sym_new] = ACTIONS(3564), + [anon_sym_requires] = ACTIONS(3564), + [anon_sym_CARET_CARET] = ACTIONS(3566), + [anon_sym_LBRACK_COLON] = ACTIONS(3566), + [sym_this] = ACTIONS(3564), }, - [STATE(705)] = { - [sym_preproc_def] = STATE(708), - [sym_preproc_function_def] = STATE(708), - [sym_preproc_call] = STATE(708), - [sym_preproc_if_in_field_declaration_list] = STATE(708), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(708), - [sym_type_definition] = STATE(708), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7964), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(708), - [sym_field_declaration] = STATE(708), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(708), - [sym_operator_cast] = STATE(9142), - [sym_inline_method_definition] = STATE(708), - [sym__constructor_specifiers] = STATE(2332), - [sym_operator_cast_definition] = STATE(708), - [sym_operator_cast_declaration] = STATE(708), - [sym_constructor_or_destructor_definition] = STATE(708), - [sym_constructor_or_destructor_declaration] = STATE(708), - [sym_friend_declaration] = STATE(708), - [sym_access_specifier] = STATE(11109), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(708), - [sym_alias_declaration] = STATE(708), - [sym_static_assert_declaration] = STATE(708), - [sym_consteval_block_declaration] = STATE(708), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(708), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9371), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(4352), - [aux_sym_preproc_if_token1] = ACTIONS(4354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), - [sym_preproc_directive] = ACTIONS(4358), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(4510), - [anon_sym___extension__] = ACTIONS(4362), - [anon_sym_typedef] = ACTIONS(4364), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4512), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4372), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(4374), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4376), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(4378), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [STATE(584)] = { + [sym_identifier] = ACTIONS(3614), + [aux_sym_preproc_include_token1] = ACTIONS(3614), + [aux_sym_preproc_def_token1] = ACTIONS(3614), + [aux_sym_preproc_if_token1] = ACTIONS(3614), + [aux_sym_preproc_if_token2] = ACTIONS(3614), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3614), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3614), + [sym_preproc_directive] = ACTIONS(3614), + [anon_sym_LPAREN2] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3614), + [anon_sym_STAR] = ACTIONS(3616), + [anon_sym_AMP_AMP] = ACTIONS(3616), + [anon_sym_AMP] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3616), + [anon_sym___extension__] = ACTIONS(3614), + [anon_sym_typedef] = ACTIONS(3614), + [anon_sym_virtual] = ACTIONS(3614), + [anon_sym_extern] = ACTIONS(3614), + [anon_sym___attribute__] = ACTIONS(3614), + [anon_sym___attribute] = ACTIONS(3614), + [anon_sym_using] = ACTIONS(3614), + [anon_sym_COLON_COLON] = ACTIONS(3616), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3616), + [anon_sym___declspec] = ACTIONS(3614), + [anon_sym___based] = ACTIONS(3614), + [anon_sym___cdecl] = ACTIONS(3614), + [anon_sym___clrcall] = ACTIONS(3614), + [anon_sym___stdcall] = ACTIONS(3614), + [anon_sym___fastcall] = ACTIONS(3614), + [anon_sym___thiscall] = ACTIONS(3614), + [anon_sym___vectorcall] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_signed] = ACTIONS(3614), + [anon_sym_unsigned] = ACTIONS(3614), + [anon_sym_long] = ACTIONS(3614), + [anon_sym_short] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3614), + [anon_sym_static] = ACTIONS(3614), + [anon_sym_register] = ACTIONS(3614), + [anon_sym_inline] = ACTIONS(3614), + [anon_sym___inline] = ACTIONS(3614), + [anon_sym___inline__] = ACTIONS(3614), + [anon_sym___forceinline] = ACTIONS(3614), + [anon_sym_thread_local] = ACTIONS(3614), + [anon_sym___thread] = ACTIONS(3614), + [anon_sym_const] = ACTIONS(3614), + [anon_sym_constexpr] = ACTIONS(3614), + [anon_sym_volatile] = ACTIONS(3614), + [anon_sym_restrict] = ACTIONS(3614), + [anon_sym___restrict__] = ACTIONS(3614), + [anon_sym__Atomic] = ACTIONS(3614), + [anon_sym__Noreturn] = ACTIONS(3614), + [anon_sym_noreturn] = ACTIONS(3614), + [anon_sym__Nonnull] = ACTIONS(3614), + [anon_sym_mutable] = ACTIONS(3614), + [anon_sym_constinit] = ACTIONS(3614), + [anon_sym_consteval] = ACTIONS(3614), + [anon_sym_alignas] = ACTIONS(3614), + [anon_sym__Alignas] = ACTIONS(3614), + [sym_primitive_type] = ACTIONS(3614), + [anon_sym_enum] = ACTIONS(3614), + [anon_sym_class] = ACTIONS(3614), + [anon_sym_struct] = ACTIONS(3614), + [anon_sym_union] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(3614), + [anon_sym_else] = ACTIONS(3614), + [anon_sym_switch] = ACTIONS(3614), + [anon_sym_case] = ACTIONS(3614), + [anon_sym_default] = ACTIONS(3614), + [anon_sym_while] = ACTIONS(3614), + [anon_sym_do] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3614), + [anon_sym_return] = ACTIONS(3614), + [anon_sym_break] = ACTIONS(3614), + [anon_sym_continue] = ACTIONS(3614), + [anon_sym_goto] = ACTIONS(3614), + [anon_sym___try] = ACTIONS(3614), + [anon_sym___leave] = ACTIONS(3614), + [anon_sym_not] = ACTIONS(3614), + [anon_sym_compl] = ACTIONS(3614), + [anon_sym_DASH_DASH] = ACTIONS(3616), + [anon_sym_PLUS_PLUS] = ACTIONS(3616), + [anon_sym_sizeof] = ACTIONS(3614), + [anon_sym___alignof__] = ACTIONS(3614), + [anon_sym___alignof] = ACTIONS(3614), + [anon_sym__alignof] = ACTIONS(3614), + [anon_sym_alignof] = ACTIONS(3614), + [anon_sym__Alignof] = ACTIONS(3614), + [anon_sym_offsetof] = ACTIONS(3614), + [anon_sym__Generic] = ACTIONS(3614), + [anon_sym_typename] = ACTIONS(3614), + [anon_sym_asm] = ACTIONS(3614), + [anon_sym___asm__] = ACTIONS(3614), + [anon_sym___asm] = ACTIONS(3614), + [sym_number_literal] = ACTIONS(3616), + [anon_sym_L_SQUOTE] = ACTIONS(3616), + [anon_sym_u_SQUOTE] = ACTIONS(3616), + [anon_sym_U_SQUOTE] = ACTIONS(3616), + [anon_sym_u8_SQUOTE] = ACTIONS(3616), + [anon_sym_SQUOTE] = ACTIONS(3616), + [anon_sym_L_DQUOTE] = ACTIONS(3616), + [anon_sym_u_DQUOTE] = ACTIONS(3616), + [anon_sym_U_DQUOTE] = ACTIONS(3616), + [anon_sym_u8_DQUOTE] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [sym_true] = ACTIONS(3614), + [sym_false] = ACTIONS(3614), + [anon_sym_NULL] = ACTIONS(3614), + [anon_sym_nullptr] = ACTIONS(3614), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3614), + [anon_sym_decltype] = ACTIONS(3614), + [anon_sym_explicit] = ACTIONS(3614), + [anon_sym_export] = ACTIONS(3614), + [anon_sym_module] = ACTIONS(3614), + [anon_sym_import] = ACTIONS(3614), + [anon_sym_template] = ACTIONS(3614), + [anon_sym_operator] = ACTIONS(3614), + [anon_sym_try] = ACTIONS(3614), + [anon_sym_delete] = ACTIONS(3614), + [anon_sym_throw] = ACTIONS(3614), + [anon_sym_namespace] = ACTIONS(3614), + [anon_sym_static_assert] = ACTIONS(3614), + [anon_sym_concept] = ACTIONS(3614), + [anon_sym_co_return] = ACTIONS(3614), + [anon_sym_co_yield] = ACTIONS(3614), + [anon_sym_R_DQUOTE] = ACTIONS(3616), + [anon_sym_LR_DQUOTE] = ACTIONS(3616), + [anon_sym_uR_DQUOTE] = ACTIONS(3616), + [anon_sym_UR_DQUOTE] = ACTIONS(3616), + [anon_sym_u8R_DQUOTE] = ACTIONS(3616), + [anon_sym_co_await] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3614), + [anon_sym_requires] = ACTIONS(3614), + [anon_sym_CARET_CARET] = ACTIONS(3616), + [anon_sym_LBRACK_COLON] = ACTIONS(3616), + [sym_this] = ACTIONS(3614), }, - [STATE(706)] = { - [ts_builtin_sym_end] = ACTIONS(4182), - [sym_identifier] = ACTIONS(4180), - [aux_sym_preproc_include_token1] = ACTIONS(4180), - [aux_sym_preproc_def_token1] = ACTIONS(4180), - [aux_sym_preproc_if_token1] = ACTIONS(4180), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4180), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4180), - [sym_preproc_directive] = ACTIONS(4180), - [anon_sym_LPAREN2] = ACTIONS(4182), - [anon_sym_BANG] = ACTIONS(4182), - [anon_sym_TILDE] = ACTIONS(4182), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_STAR] = ACTIONS(4182), - [anon_sym_AMP_AMP] = ACTIONS(4182), - [anon_sym_AMP] = ACTIONS(4180), - [anon_sym_SEMI] = ACTIONS(4182), - [anon_sym___extension__] = ACTIONS(4180), - [anon_sym_typedef] = ACTIONS(4180), - [anon_sym_virtual] = ACTIONS(4180), - [anon_sym_extern] = ACTIONS(4180), - [anon_sym___attribute__] = ACTIONS(4180), - [anon_sym___attribute] = ACTIONS(4180), - [anon_sym_using] = ACTIONS(4180), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4182), - [anon_sym___declspec] = ACTIONS(4180), - [anon_sym___based] = ACTIONS(4180), - [anon_sym___cdecl] = ACTIONS(4180), - [anon_sym___clrcall] = ACTIONS(4180), - [anon_sym___stdcall] = ACTIONS(4180), - [anon_sym___fastcall] = ACTIONS(4180), - [anon_sym___thiscall] = ACTIONS(4180), - [anon_sym___vectorcall] = ACTIONS(4180), - [anon_sym_LBRACE] = ACTIONS(4182), - [anon_sym_signed] = ACTIONS(4180), - [anon_sym_unsigned] = ACTIONS(4180), - [anon_sym_long] = ACTIONS(4180), - [anon_sym_short] = ACTIONS(4180), - [anon_sym_LBRACK] = ACTIONS(4180), - [anon_sym_static] = ACTIONS(4180), - [anon_sym_register] = ACTIONS(4180), - [anon_sym_inline] = ACTIONS(4180), - [anon_sym___inline] = ACTIONS(4180), - [anon_sym___inline__] = ACTIONS(4180), - [anon_sym___forceinline] = ACTIONS(4180), - [anon_sym_thread_local] = ACTIONS(4180), - [anon_sym___thread] = ACTIONS(4180), - [anon_sym_const] = ACTIONS(4180), - [anon_sym_constexpr] = ACTIONS(4180), - [anon_sym_volatile] = ACTIONS(4180), - [anon_sym_restrict] = ACTIONS(4180), - [anon_sym___restrict__] = ACTIONS(4180), - [anon_sym__Atomic] = ACTIONS(4180), - [anon_sym__Noreturn] = ACTIONS(4180), - [anon_sym_noreturn] = ACTIONS(4180), - [anon_sym__Nonnull] = ACTIONS(4180), - [anon_sym_mutable] = ACTIONS(4180), - [anon_sym_constinit] = ACTIONS(4180), - [anon_sym_consteval] = ACTIONS(4180), - [anon_sym_alignas] = ACTIONS(4180), - [anon_sym__Alignas] = ACTIONS(4180), - [sym_primitive_type] = ACTIONS(4180), - [anon_sym_enum] = ACTIONS(4180), - [anon_sym_class] = ACTIONS(4180), - [anon_sym_struct] = ACTIONS(4180), - [anon_sym_union] = ACTIONS(4180), - [anon_sym_if] = ACTIONS(4180), - [anon_sym_switch] = ACTIONS(4180), - [anon_sym_case] = ACTIONS(4180), - [anon_sym_default] = ACTIONS(4180), - [anon_sym_while] = ACTIONS(4180), - [anon_sym_do] = ACTIONS(4180), - [anon_sym_for] = ACTIONS(4180), - [anon_sym_return] = ACTIONS(4180), - [anon_sym_break] = ACTIONS(4180), - [anon_sym_continue] = ACTIONS(4180), - [anon_sym_goto] = ACTIONS(4180), - [anon_sym_not] = ACTIONS(4180), - [anon_sym_compl] = ACTIONS(4180), - [anon_sym_DASH_DASH] = ACTIONS(4182), - [anon_sym_PLUS_PLUS] = ACTIONS(4182), - [anon_sym_sizeof] = ACTIONS(4180), - [anon_sym___alignof__] = ACTIONS(4180), - [anon_sym___alignof] = ACTIONS(4180), - [anon_sym__alignof] = ACTIONS(4180), - [anon_sym_alignof] = ACTIONS(4180), - [anon_sym__Alignof] = ACTIONS(4180), - [anon_sym_offsetof] = ACTIONS(4180), - [anon_sym__Generic] = ACTIONS(4180), - [anon_sym_typename] = ACTIONS(4180), - [anon_sym_asm] = ACTIONS(4180), - [anon_sym___asm__] = ACTIONS(4180), - [anon_sym___asm] = ACTIONS(4180), - [sym_number_literal] = ACTIONS(4182), - [anon_sym_L_SQUOTE] = ACTIONS(4182), - [anon_sym_u_SQUOTE] = ACTIONS(4182), - [anon_sym_U_SQUOTE] = ACTIONS(4182), - [anon_sym_u8_SQUOTE] = ACTIONS(4182), - [anon_sym_SQUOTE] = ACTIONS(4182), - [anon_sym_L_DQUOTE] = ACTIONS(4182), - [anon_sym_u_DQUOTE] = ACTIONS(4182), - [anon_sym_U_DQUOTE] = ACTIONS(4182), - [anon_sym_u8_DQUOTE] = ACTIONS(4182), - [anon_sym_DQUOTE] = ACTIONS(4182), - [sym_true] = ACTIONS(4180), - [sym_false] = ACTIONS(4180), - [anon_sym_NULL] = ACTIONS(4180), - [anon_sym_nullptr] = ACTIONS(4180), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4180), - [anon_sym_decltype] = ACTIONS(4180), - [anon_sym_explicit] = ACTIONS(4180), - [anon_sym_export] = ACTIONS(4180), - [anon_sym_module] = ACTIONS(4180), - [anon_sym_import] = ACTIONS(4180), - [anon_sym_template] = ACTIONS(4180), - [anon_sym_operator] = ACTIONS(4180), - [anon_sym_try] = ACTIONS(4180), - [anon_sym_delete] = ACTIONS(4180), - [anon_sym_throw] = ACTIONS(4180), - [anon_sym_namespace] = ACTIONS(4180), - [anon_sym_static_assert] = ACTIONS(4180), - [anon_sym_concept] = ACTIONS(4180), - [anon_sym_co_return] = ACTIONS(4180), - [anon_sym_co_yield] = ACTIONS(4180), - [anon_sym_R_DQUOTE] = ACTIONS(4182), - [anon_sym_LR_DQUOTE] = ACTIONS(4182), - [anon_sym_uR_DQUOTE] = ACTIONS(4182), - [anon_sym_UR_DQUOTE] = ACTIONS(4182), - [anon_sym_u8R_DQUOTE] = ACTIONS(4182), - [anon_sym_co_await] = ACTIONS(4180), - [anon_sym_new] = ACTIONS(4180), - [anon_sym_requires] = ACTIONS(4180), - [anon_sym_CARET_CARET] = ACTIONS(4182), - [anon_sym_LBRACK_COLON] = ACTIONS(4182), - [sym_this] = ACTIONS(4180), + [STATE(585)] = { + [sym_identifier] = ACTIONS(3634), + [aux_sym_preproc_include_token1] = ACTIONS(3634), + [aux_sym_preproc_def_token1] = ACTIONS(3634), + [aux_sym_preproc_if_token1] = ACTIONS(3634), + [aux_sym_preproc_if_token2] = ACTIONS(3634), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3634), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3634), + [sym_preproc_directive] = ACTIONS(3634), + [anon_sym_LPAREN2] = ACTIONS(3636), + [anon_sym_BANG] = ACTIONS(3636), + [anon_sym_TILDE] = ACTIONS(3636), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_STAR] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3636), + [anon_sym_AMP] = ACTIONS(3634), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym___extension__] = ACTIONS(3634), + [anon_sym_typedef] = ACTIONS(3634), + [anon_sym_virtual] = ACTIONS(3634), + [anon_sym_extern] = ACTIONS(3634), + [anon_sym___attribute__] = ACTIONS(3634), + [anon_sym___attribute] = ACTIONS(3634), + [anon_sym_using] = ACTIONS(3634), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3636), + [anon_sym___declspec] = ACTIONS(3634), + [anon_sym___based] = ACTIONS(3634), + [anon_sym___cdecl] = ACTIONS(3634), + [anon_sym___clrcall] = ACTIONS(3634), + [anon_sym___stdcall] = ACTIONS(3634), + [anon_sym___fastcall] = ACTIONS(3634), + [anon_sym___thiscall] = ACTIONS(3634), + [anon_sym___vectorcall] = ACTIONS(3634), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_signed] = ACTIONS(3634), + [anon_sym_unsigned] = ACTIONS(3634), + [anon_sym_long] = ACTIONS(3634), + [anon_sym_short] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3634), + [anon_sym_static] = ACTIONS(3634), + [anon_sym_register] = ACTIONS(3634), + [anon_sym_inline] = ACTIONS(3634), + [anon_sym___inline] = ACTIONS(3634), + [anon_sym___inline__] = ACTIONS(3634), + [anon_sym___forceinline] = ACTIONS(3634), + [anon_sym_thread_local] = ACTIONS(3634), + [anon_sym___thread] = ACTIONS(3634), + [anon_sym_const] = ACTIONS(3634), + [anon_sym_constexpr] = ACTIONS(3634), + [anon_sym_volatile] = ACTIONS(3634), + [anon_sym_restrict] = ACTIONS(3634), + [anon_sym___restrict__] = ACTIONS(3634), + [anon_sym__Atomic] = ACTIONS(3634), + [anon_sym__Noreturn] = ACTIONS(3634), + [anon_sym_noreturn] = ACTIONS(3634), + [anon_sym__Nonnull] = ACTIONS(3634), + [anon_sym_mutable] = ACTIONS(3634), + [anon_sym_constinit] = ACTIONS(3634), + [anon_sym_consteval] = ACTIONS(3634), + [anon_sym_alignas] = ACTIONS(3634), + [anon_sym__Alignas] = ACTIONS(3634), + [sym_primitive_type] = ACTIONS(3634), + [anon_sym_enum] = ACTIONS(3634), + [anon_sym_class] = ACTIONS(3634), + [anon_sym_struct] = ACTIONS(3634), + [anon_sym_union] = ACTIONS(3634), + [anon_sym_if] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(3634), + [anon_sym_switch] = ACTIONS(3634), + [anon_sym_case] = ACTIONS(3634), + [anon_sym_default] = ACTIONS(3634), + [anon_sym_while] = ACTIONS(3634), + [anon_sym_do] = ACTIONS(3634), + [anon_sym_for] = ACTIONS(3634), + [anon_sym_return] = ACTIONS(3634), + [anon_sym_break] = ACTIONS(3634), + [anon_sym_continue] = ACTIONS(3634), + [anon_sym_goto] = ACTIONS(3634), + [anon_sym___try] = ACTIONS(3634), + [anon_sym___leave] = ACTIONS(3634), + [anon_sym_not] = ACTIONS(3634), + [anon_sym_compl] = ACTIONS(3634), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_sizeof] = ACTIONS(3634), + [anon_sym___alignof__] = ACTIONS(3634), + [anon_sym___alignof] = ACTIONS(3634), + [anon_sym__alignof] = ACTIONS(3634), + [anon_sym_alignof] = ACTIONS(3634), + [anon_sym__Alignof] = ACTIONS(3634), + [anon_sym_offsetof] = ACTIONS(3634), + [anon_sym__Generic] = ACTIONS(3634), + [anon_sym_typename] = ACTIONS(3634), + [anon_sym_asm] = ACTIONS(3634), + [anon_sym___asm__] = ACTIONS(3634), + [anon_sym___asm] = ACTIONS(3634), + [sym_number_literal] = ACTIONS(3636), + [anon_sym_L_SQUOTE] = ACTIONS(3636), + [anon_sym_u_SQUOTE] = ACTIONS(3636), + [anon_sym_U_SQUOTE] = ACTIONS(3636), + [anon_sym_u8_SQUOTE] = ACTIONS(3636), + [anon_sym_SQUOTE] = ACTIONS(3636), + [anon_sym_L_DQUOTE] = ACTIONS(3636), + [anon_sym_u_DQUOTE] = ACTIONS(3636), + [anon_sym_U_DQUOTE] = ACTIONS(3636), + [anon_sym_u8_DQUOTE] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(3636), + [sym_true] = ACTIONS(3634), + [sym_false] = ACTIONS(3634), + [anon_sym_NULL] = ACTIONS(3634), + [anon_sym_nullptr] = ACTIONS(3634), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3634), + [anon_sym_decltype] = ACTIONS(3634), + [anon_sym_explicit] = ACTIONS(3634), + [anon_sym_export] = ACTIONS(3634), + [anon_sym_module] = ACTIONS(3634), + [anon_sym_import] = ACTIONS(3634), + [anon_sym_template] = ACTIONS(3634), + [anon_sym_operator] = ACTIONS(3634), + [anon_sym_try] = ACTIONS(3634), + [anon_sym_delete] = ACTIONS(3634), + [anon_sym_throw] = ACTIONS(3634), + [anon_sym_namespace] = ACTIONS(3634), + [anon_sym_static_assert] = ACTIONS(3634), + [anon_sym_concept] = ACTIONS(3634), + [anon_sym_co_return] = ACTIONS(3634), + [anon_sym_co_yield] = ACTIONS(3634), + [anon_sym_R_DQUOTE] = ACTIONS(3636), + [anon_sym_LR_DQUOTE] = ACTIONS(3636), + [anon_sym_uR_DQUOTE] = ACTIONS(3636), + [anon_sym_UR_DQUOTE] = ACTIONS(3636), + [anon_sym_u8R_DQUOTE] = ACTIONS(3636), + [anon_sym_co_await] = ACTIONS(3634), + [anon_sym_new] = ACTIONS(3634), + [anon_sym_requires] = ACTIONS(3634), + [anon_sym_CARET_CARET] = ACTIONS(3636), + [anon_sym_LBRACK_COLON] = ACTIONS(3636), + [sym_this] = ACTIONS(3634), }, - [STATE(707)] = { - [ts_builtin_sym_end] = ACTIONS(3912), - [sym_identifier] = ACTIONS(3910), - [aux_sym_preproc_include_token1] = ACTIONS(3910), - [aux_sym_preproc_def_token1] = ACTIONS(3910), - [aux_sym_preproc_if_token1] = ACTIONS(3910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3910), - [sym_preproc_directive] = ACTIONS(3910), - [anon_sym_LPAREN2] = ACTIONS(3912), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(3912), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_AMP] = ACTIONS(3910), - [anon_sym_SEMI] = ACTIONS(3912), - [anon_sym___extension__] = ACTIONS(3910), - [anon_sym_typedef] = ACTIONS(3910), - [anon_sym_virtual] = ACTIONS(3910), - [anon_sym_extern] = ACTIONS(3910), - [anon_sym___attribute__] = ACTIONS(3910), - [anon_sym___attribute] = ACTIONS(3910), - [anon_sym_using] = ACTIONS(3910), - [anon_sym_COLON_COLON] = ACTIONS(3912), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3912), - [anon_sym___declspec] = ACTIONS(3910), - [anon_sym___based] = ACTIONS(3910), - [anon_sym___cdecl] = ACTIONS(3910), - [anon_sym___clrcall] = ACTIONS(3910), - [anon_sym___stdcall] = ACTIONS(3910), - [anon_sym___fastcall] = ACTIONS(3910), - [anon_sym___thiscall] = ACTIONS(3910), - [anon_sym___vectorcall] = ACTIONS(3910), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_signed] = ACTIONS(3910), - [anon_sym_unsigned] = ACTIONS(3910), - [anon_sym_long] = ACTIONS(3910), - [anon_sym_short] = ACTIONS(3910), - [anon_sym_LBRACK] = ACTIONS(3910), - [anon_sym_static] = ACTIONS(3910), - [anon_sym_register] = ACTIONS(3910), - [anon_sym_inline] = ACTIONS(3910), - [anon_sym___inline] = ACTIONS(3910), - [anon_sym___inline__] = ACTIONS(3910), - [anon_sym___forceinline] = ACTIONS(3910), - [anon_sym_thread_local] = ACTIONS(3910), - [anon_sym___thread] = ACTIONS(3910), - [anon_sym_const] = ACTIONS(3910), - [anon_sym_constexpr] = ACTIONS(3910), - [anon_sym_volatile] = ACTIONS(3910), - [anon_sym_restrict] = ACTIONS(3910), - [anon_sym___restrict__] = ACTIONS(3910), - [anon_sym__Atomic] = ACTIONS(3910), - [anon_sym__Noreturn] = ACTIONS(3910), - [anon_sym_noreturn] = ACTIONS(3910), - [anon_sym__Nonnull] = ACTIONS(3910), - [anon_sym_mutable] = ACTIONS(3910), - [anon_sym_constinit] = ACTIONS(3910), - [anon_sym_consteval] = ACTIONS(3910), - [anon_sym_alignas] = ACTIONS(3910), - [anon_sym__Alignas] = ACTIONS(3910), - [sym_primitive_type] = ACTIONS(3910), - [anon_sym_enum] = ACTIONS(3910), - [anon_sym_class] = ACTIONS(3910), - [anon_sym_struct] = ACTIONS(3910), - [anon_sym_union] = ACTIONS(3910), - [anon_sym_if] = ACTIONS(3910), - [anon_sym_switch] = ACTIONS(3910), - [anon_sym_case] = ACTIONS(3910), - [anon_sym_default] = ACTIONS(3910), - [anon_sym_while] = ACTIONS(3910), - [anon_sym_do] = ACTIONS(3910), - [anon_sym_for] = ACTIONS(3910), - [anon_sym_return] = ACTIONS(3910), - [anon_sym_break] = ACTIONS(3910), - [anon_sym_continue] = ACTIONS(3910), - [anon_sym_goto] = ACTIONS(3910), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(3912), - [anon_sym_PLUS_PLUS] = ACTIONS(3912), - [anon_sym_sizeof] = ACTIONS(3910), - [anon_sym___alignof__] = ACTIONS(3910), - [anon_sym___alignof] = ACTIONS(3910), - [anon_sym__alignof] = ACTIONS(3910), - [anon_sym_alignof] = ACTIONS(3910), - [anon_sym__Alignof] = ACTIONS(3910), - [anon_sym_offsetof] = ACTIONS(3910), - [anon_sym__Generic] = ACTIONS(3910), - [anon_sym_typename] = ACTIONS(3910), - [anon_sym_asm] = ACTIONS(3910), - [anon_sym___asm__] = ACTIONS(3910), - [anon_sym___asm] = ACTIONS(3910), - [sym_number_literal] = ACTIONS(3912), - [anon_sym_L_SQUOTE] = ACTIONS(3912), - [anon_sym_u_SQUOTE] = ACTIONS(3912), - [anon_sym_U_SQUOTE] = ACTIONS(3912), - [anon_sym_u8_SQUOTE] = ACTIONS(3912), - [anon_sym_SQUOTE] = ACTIONS(3912), - [anon_sym_L_DQUOTE] = ACTIONS(3912), - [anon_sym_u_DQUOTE] = ACTIONS(3912), - [anon_sym_U_DQUOTE] = ACTIONS(3912), - [anon_sym_u8_DQUOTE] = ACTIONS(3912), - [anon_sym_DQUOTE] = ACTIONS(3912), - [sym_true] = ACTIONS(3910), - [sym_false] = ACTIONS(3910), - [anon_sym_NULL] = ACTIONS(3910), - [anon_sym_nullptr] = ACTIONS(3910), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3910), - [anon_sym_decltype] = ACTIONS(3910), - [anon_sym_explicit] = ACTIONS(3910), - [anon_sym_export] = ACTIONS(3910), - [anon_sym_module] = ACTIONS(3910), - [anon_sym_import] = ACTIONS(3910), - [anon_sym_template] = ACTIONS(3910), - [anon_sym_operator] = ACTIONS(3910), - [anon_sym_try] = ACTIONS(3910), - [anon_sym_delete] = ACTIONS(3910), - [anon_sym_throw] = ACTIONS(3910), - [anon_sym_namespace] = ACTIONS(3910), - [anon_sym_static_assert] = ACTIONS(3910), - [anon_sym_concept] = ACTIONS(3910), - [anon_sym_co_return] = ACTIONS(3910), - [anon_sym_co_yield] = ACTIONS(3910), - [anon_sym_R_DQUOTE] = ACTIONS(3912), - [anon_sym_LR_DQUOTE] = ACTIONS(3912), - [anon_sym_uR_DQUOTE] = ACTIONS(3912), - [anon_sym_UR_DQUOTE] = ACTIONS(3912), - [anon_sym_u8R_DQUOTE] = ACTIONS(3912), - [anon_sym_co_await] = ACTIONS(3910), - [anon_sym_new] = ACTIONS(3910), - [anon_sym_requires] = ACTIONS(3910), - [anon_sym_CARET_CARET] = ACTIONS(3912), - [anon_sym_LBRACK_COLON] = ACTIONS(3912), - [sym_this] = ACTIONS(3910), + [STATE(586)] = { + [ts_builtin_sym_end] = ACTIONS(3566), + [sym_identifier] = ACTIONS(3564), + [aux_sym_preproc_include_token1] = ACTIONS(3564), + [aux_sym_preproc_def_token1] = ACTIONS(3564), + [aux_sym_preproc_if_token1] = ACTIONS(3564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3564), + [sym_preproc_directive] = ACTIONS(3564), + [anon_sym_LPAREN2] = ACTIONS(3566), + [anon_sym_BANG] = ACTIONS(3566), + [anon_sym_TILDE] = ACTIONS(3566), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3566), + [anon_sym_AMP_AMP] = ACTIONS(3566), + [anon_sym_AMP] = ACTIONS(3564), + [anon_sym_SEMI] = ACTIONS(3566), + [anon_sym___extension__] = ACTIONS(3564), + [anon_sym_typedef] = ACTIONS(3564), + [anon_sym_virtual] = ACTIONS(3564), + [anon_sym_extern] = ACTIONS(3564), + [anon_sym___attribute__] = ACTIONS(3564), + [anon_sym___attribute] = ACTIONS(3564), + [anon_sym_using] = ACTIONS(3564), + [anon_sym_COLON_COLON] = ACTIONS(3566), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3566), + [anon_sym___declspec] = ACTIONS(3564), + [anon_sym___based] = ACTIONS(3564), + [anon_sym___cdecl] = ACTIONS(3564), + [anon_sym___clrcall] = ACTIONS(3564), + [anon_sym___stdcall] = ACTIONS(3564), + [anon_sym___fastcall] = ACTIONS(3564), + [anon_sym___thiscall] = ACTIONS(3564), + [anon_sym___vectorcall] = ACTIONS(3564), + [anon_sym_LBRACE] = ACTIONS(3566), + [anon_sym_signed] = ACTIONS(3564), + [anon_sym_unsigned] = ACTIONS(3564), + [anon_sym_long] = ACTIONS(3564), + [anon_sym_short] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3564), + [anon_sym_static] = ACTIONS(3564), + [anon_sym_register] = ACTIONS(3564), + [anon_sym_inline] = ACTIONS(3564), + [anon_sym___inline] = ACTIONS(3564), + [anon_sym___inline__] = ACTIONS(3564), + [anon_sym___forceinline] = ACTIONS(3564), + [anon_sym_thread_local] = ACTIONS(3564), + [anon_sym___thread] = ACTIONS(3564), + [anon_sym_const] = ACTIONS(3564), + [anon_sym_constexpr] = ACTIONS(3564), + [anon_sym_volatile] = ACTIONS(3564), + [anon_sym_restrict] = ACTIONS(3564), + [anon_sym___restrict__] = ACTIONS(3564), + [anon_sym__Atomic] = ACTIONS(3564), + [anon_sym__Noreturn] = ACTIONS(3564), + [anon_sym_noreturn] = ACTIONS(3564), + [anon_sym__Nonnull] = ACTIONS(3564), + [anon_sym_mutable] = ACTIONS(3564), + [anon_sym_constinit] = ACTIONS(3564), + [anon_sym_consteval] = ACTIONS(3564), + [anon_sym_alignas] = ACTIONS(3564), + [anon_sym__Alignas] = ACTIONS(3564), + [sym_primitive_type] = ACTIONS(3564), + [anon_sym_enum] = ACTIONS(3564), + [anon_sym_class] = ACTIONS(3564), + [anon_sym_struct] = ACTIONS(3564), + [anon_sym_union] = ACTIONS(3564), + [anon_sym_if] = ACTIONS(3564), + [anon_sym_else] = ACTIONS(3564), + [anon_sym_switch] = ACTIONS(3564), + [anon_sym_case] = ACTIONS(3564), + [anon_sym_default] = ACTIONS(3564), + [anon_sym_while] = ACTIONS(3564), + [anon_sym_do] = ACTIONS(3564), + [anon_sym_for] = ACTIONS(3564), + [anon_sym_return] = ACTIONS(3564), + [anon_sym_break] = ACTIONS(3564), + [anon_sym_continue] = ACTIONS(3564), + [anon_sym_goto] = ACTIONS(3564), + [anon_sym___try] = ACTIONS(3564), + [anon_sym___leave] = ACTIONS(3564), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3566), + [anon_sym_sizeof] = ACTIONS(3564), + [anon_sym___alignof__] = ACTIONS(3564), + [anon_sym___alignof] = ACTIONS(3564), + [anon_sym__alignof] = ACTIONS(3564), + [anon_sym_alignof] = ACTIONS(3564), + [anon_sym__Alignof] = ACTIONS(3564), + [anon_sym_offsetof] = ACTIONS(3564), + [anon_sym__Generic] = ACTIONS(3564), + [anon_sym_typename] = ACTIONS(3564), + [anon_sym_asm] = ACTIONS(3564), + [anon_sym___asm__] = ACTIONS(3564), + [anon_sym___asm] = ACTIONS(3564), + [sym_number_literal] = ACTIONS(3566), + [anon_sym_L_SQUOTE] = ACTIONS(3566), + [anon_sym_u_SQUOTE] = ACTIONS(3566), + [anon_sym_U_SQUOTE] = ACTIONS(3566), + [anon_sym_u8_SQUOTE] = ACTIONS(3566), + [anon_sym_SQUOTE] = ACTIONS(3566), + [anon_sym_L_DQUOTE] = ACTIONS(3566), + [anon_sym_u_DQUOTE] = ACTIONS(3566), + [anon_sym_U_DQUOTE] = ACTIONS(3566), + [anon_sym_u8_DQUOTE] = ACTIONS(3566), + [anon_sym_DQUOTE] = ACTIONS(3566), + [sym_true] = ACTIONS(3564), + [sym_false] = ACTIONS(3564), + [anon_sym_NULL] = ACTIONS(3564), + [anon_sym_nullptr] = ACTIONS(3564), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3564), + [anon_sym_decltype] = ACTIONS(3564), + [anon_sym_explicit] = ACTIONS(3564), + [anon_sym_export] = ACTIONS(3564), + [anon_sym_module] = ACTIONS(3564), + [anon_sym_import] = ACTIONS(3564), + [anon_sym_template] = ACTIONS(3564), + [anon_sym_operator] = ACTIONS(3564), + [anon_sym_try] = ACTIONS(3564), + [anon_sym_delete] = ACTIONS(3564), + [anon_sym_throw] = ACTIONS(3564), + [anon_sym_namespace] = ACTIONS(3564), + [anon_sym_static_assert] = ACTIONS(3564), + [anon_sym_concept] = ACTIONS(3564), + [anon_sym_co_return] = ACTIONS(3564), + [anon_sym_co_yield] = ACTIONS(3564), + [anon_sym_R_DQUOTE] = ACTIONS(3566), + [anon_sym_LR_DQUOTE] = ACTIONS(3566), + [anon_sym_uR_DQUOTE] = ACTIONS(3566), + [anon_sym_UR_DQUOTE] = ACTIONS(3566), + [anon_sym_u8R_DQUOTE] = ACTIONS(3566), + [anon_sym_co_await] = ACTIONS(3564), + [anon_sym_new] = ACTIONS(3564), + [anon_sym_requires] = ACTIONS(3564), + [anon_sym_CARET_CARET] = ACTIONS(3566), + [anon_sym_LBRACK_COLON] = ACTIONS(3566), + [sym_this] = ACTIONS(3564), }, - [STATE(708)] = { - [sym_preproc_def] = STATE(583), - [sym_preproc_function_def] = STATE(583), - [sym_preproc_call] = STATE(583), - [sym_preproc_if_in_field_declaration_list] = STATE(583), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(583), - [sym_type_definition] = STATE(583), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7964), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(583), - [sym_field_declaration] = STATE(583), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(583), - [sym_operator_cast] = STATE(9142), - [sym_inline_method_definition] = STATE(583), - [sym__constructor_specifiers] = STATE(2332), - [sym_operator_cast_definition] = STATE(583), - [sym_operator_cast_declaration] = STATE(583), - [sym_constructor_or_destructor_definition] = STATE(583), - [sym_constructor_or_destructor_declaration] = STATE(583), - [sym_friend_declaration] = STATE(583), - [sym_access_specifier] = STATE(11109), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(583), - [sym_alias_declaration] = STATE(583), - [sym_static_assert_declaration] = STATE(583), - [sym_consteval_block_declaration] = STATE(583), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(583), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9371), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(4352), - [aux_sym_preproc_if_token1] = ACTIONS(4354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), - [sym_preproc_directive] = ACTIONS(4358), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(4408), - [anon_sym___extension__] = ACTIONS(4362), - [anon_sym_typedef] = ACTIONS(4364), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4514), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4372), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(4374), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4376), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(4378), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [STATE(587)] = { + [sym_identifier] = ACTIONS(3576), + [aux_sym_preproc_include_token1] = ACTIONS(3576), + [aux_sym_preproc_def_token1] = ACTIONS(3576), + [aux_sym_preproc_if_token1] = ACTIONS(3576), + [aux_sym_preproc_if_token2] = ACTIONS(3576), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3576), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3576), + [sym_preproc_directive] = ACTIONS(3576), + [anon_sym_LPAREN2] = ACTIONS(3578), + [anon_sym_BANG] = ACTIONS(3578), + [anon_sym_TILDE] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_STAR] = ACTIONS(3578), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_AMP] = ACTIONS(3576), + [anon_sym_SEMI] = ACTIONS(3578), + [anon_sym___extension__] = ACTIONS(3576), + [anon_sym_typedef] = ACTIONS(3576), + [anon_sym_virtual] = ACTIONS(3576), + [anon_sym_extern] = ACTIONS(3576), + [anon_sym___attribute__] = ACTIONS(3576), + [anon_sym___attribute] = ACTIONS(3576), + [anon_sym_using] = ACTIONS(3576), + [anon_sym_COLON_COLON] = ACTIONS(3578), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3578), + [anon_sym___declspec] = ACTIONS(3576), + [anon_sym___based] = ACTIONS(3576), + [anon_sym___cdecl] = ACTIONS(3576), + [anon_sym___clrcall] = ACTIONS(3576), + [anon_sym___stdcall] = ACTIONS(3576), + [anon_sym___fastcall] = ACTIONS(3576), + [anon_sym___thiscall] = ACTIONS(3576), + [anon_sym___vectorcall] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_signed] = ACTIONS(3576), + [anon_sym_unsigned] = ACTIONS(3576), + [anon_sym_long] = ACTIONS(3576), + [anon_sym_short] = ACTIONS(3576), + [anon_sym_LBRACK] = ACTIONS(3576), + [anon_sym_static] = ACTIONS(3576), + [anon_sym_register] = ACTIONS(3576), + [anon_sym_inline] = ACTIONS(3576), + [anon_sym___inline] = ACTIONS(3576), + [anon_sym___inline__] = ACTIONS(3576), + [anon_sym___forceinline] = ACTIONS(3576), + [anon_sym_thread_local] = ACTIONS(3576), + [anon_sym___thread] = ACTIONS(3576), + [anon_sym_const] = ACTIONS(3576), + [anon_sym_constexpr] = ACTIONS(3576), + [anon_sym_volatile] = ACTIONS(3576), + [anon_sym_restrict] = ACTIONS(3576), + [anon_sym___restrict__] = ACTIONS(3576), + [anon_sym__Atomic] = ACTIONS(3576), + [anon_sym__Noreturn] = ACTIONS(3576), + [anon_sym_noreturn] = ACTIONS(3576), + [anon_sym__Nonnull] = ACTIONS(3576), + [anon_sym_mutable] = ACTIONS(3576), + [anon_sym_constinit] = ACTIONS(3576), + [anon_sym_consteval] = ACTIONS(3576), + [anon_sym_alignas] = ACTIONS(3576), + [anon_sym__Alignas] = ACTIONS(3576), + [sym_primitive_type] = ACTIONS(3576), + [anon_sym_enum] = ACTIONS(3576), + [anon_sym_class] = ACTIONS(3576), + [anon_sym_struct] = ACTIONS(3576), + [anon_sym_union] = ACTIONS(3576), + [anon_sym_if] = ACTIONS(3576), + [anon_sym_else] = ACTIONS(3576), + [anon_sym_switch] = ACTIONS(3576), + [anon_sym_case] = ACTIONS(3576), + [anon_sym_default] = ACTIONS(3576), + [anon_sym_while] = ACTIONS(3576), + [anon_sym_do] = ACTIONS(3576), + [anon_sym_for] = ACTIONS(3576), + [anon_sym_return] = ACTIONS(3576), + [anon_sym_break] = ACTIONS(3576), + [anon_sym_continue] = ACTIONS(3576), + [anon_sym_goto] = ACTIONS(3576), + [anon_sym___try] = ACTIONS(3576), + [anon_sym___leave] = ACTIONS(3576), + [anon_sym_not] = ACTIONS(3576), + [anon_sym_compl] = ACTIONS(3576), + [anon_sym_DASH_DASH] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3578), + [anon_sym_sizeof] = ACTIONS(3576), + [anon_sym___alignof__] = ACTIONS(3576), + [anon_sym___alignof] = ACTIONS(3576), + [anon_sym__alignof] = ACTIONS(3576), + [anon_sym_alignof] = ACTIONS(3576), + [anon_sym__Alignof] = ACTIONS(3576), + [anon_sym_offsetof] = ACTIONS(3576), + [anon_sym__Generic] = ACTIONS(3576), + [anon_sym_typename] = ACTIONS(3576), + [anon_sym_asm] = ACTIONS(3576), + [anon_sym___asm__] = ACTIONS(3576), + [anon_sym___asm] = ACTIONS(3576), + [sym_number_literal] = ACTIONS(3578), + [anon_sym_L_SQUOTE] = ACTIONS(3578), + [anon_sym_u_SQUOTE] = ACTIONS(3578), + [anon_sym_U_SQUOTE] = ACTIONS(3578), + [anon_sym_u8_SQUOTE] = ACTIONS(3578), + [anon_sym_SQUOTE] = ACTIONS(3578), + [anon_sym_L_DQUOTE] = ACTIONS(3578), + [anon_sym_u_DQUOTE] = ACTIONS(3578), + [anon_sym_U_DQUOTE] = ACTIONS(3578), + [anon_sym_u8_DQUOTE] = ACTIONS(3578), + [anon_sym_DQUOTE] = ACTIONS(3578), + [sym_true] = ACTIONS(3576), + [sym_false] = ACTIONS(3576), + [anon_sym_NULL] = ACTIONS(3576), + [anon_sym_nullptr] = ACTIONS(3576), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3576), + [anon_sym_decltype] = ACTIONS(3576), + [anon_sym_explicit] = ACTIONS(3576), + [anon_sym_export] = ACTIONS(3576), + [anon_sym_module] = ACTIONS(3576), + [anon_sym_import] = ACTIONS(3576), + [anon_sym_template] = ACTIONS(3576), + [anon_sym_operator] = ACTIONS(3576), + [anon_sym_try] = ACTIONS(3576), + [anon_sym_delete] = ACTIONS(3576), + [anon_sym_throw] = ACTIONS(3576), + [anon_sym_namespace] = ACTIONS(3576), + [anon_sym_static_assert] = ACTIONS(3576), + [anon_sym_concept] = ACTIONS(3576), + [anon_sym_co_return] = ACTIONS(3576), + [anon_sym_co_yield] = ACTIONS(3576), + [anon_sym_R_DQUOTE] = ACTIONS(3578), + [anon_sym_LR_DQUOTE] = ACTIONS(3578), + [anon_sym_uR_DQUOTE] = ACTIONS(3578), + [anon_sym_UR_DQUOTE] = ACTIONS(3578), + [anon_sym_u8R_DQUOTE] = ACTIONS(3578), + [anon_sym_co_await] = ACTIONS(3576), + [anon_sym_new] = ACTIONS(3576), + [anon_sym_requires] = ACTIONS(3576), + [anon_sym_CARET_CARET] = ACTIONS(3578), + [anon_sym_LBRACK_COLON] = ACTIONS(3578), + [sym_this] = ACTIONS(3576), }, - [STATE(709)] = { - [sym_preproc_def] = STATE(710), - [sym_preproc_function_def] = STATE(710), - [sym_preproc_call] = STATE(710), - [sym_preproc_if_in_field_declaration_list] = STATE(710), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(710), - [sym_type_definition] = STATE(710), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7964), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(710), - [sym_field_declaration] = STATE(710), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(710), - [sym_operator_cast] = STATE(9142), - [sym_inline_method_definition] = STATE(710), - [sym__constructor_specifiers] = STATE(2332), - [sym_operator_cast_definition] = STATE(710), - [sym_operator_cast_declaration] = STATE(710), - [sym_constructor_or_destructor_definition] = STATE(710), - [sym_constructor_or_destructor_declaration] = STATE(710), - [sym_friend_declaration] = STATE(710), - [sym_access_specifier] = STATE(11109), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(710), - [sym_alias_declaration] = STATE(710), - [sym_static_assert_declaration] = STATE(710), - [sym_consteval_block_declaration] = STATE(710), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(710), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9371), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(4352), - [aux_sym_preproc_if_token1] = ACTIONS(4354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), - [sym_preproc_directive] = ACTIONS(4358), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(4516), - [anon_sym___extension__] = ACTIONS(4362), - [anon_sym_typedef] = ACTIONS(4364), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4518), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4372), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(4374), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4376), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(4378), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [STATE(588)] = { + [sym_identifier] = ACTIONS(3596), + [aux_sym_preproc_include_token1] = ACTIONS(3596), + [aux_sym_preproc_def_token1] = ACTIONS(3596), + [aux_sym_preproc_if_token1] = ACTIONS(3596), + [aux_sym_preproc_if_token2] = ACTIONS(3596), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3596), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3596), + [sym_preproc_directive] = ACTIONS(3596), + [anon_sym_LPAREN2] = ACTIONS(3598), + [anon_sym_BANG] = ACTIONS(3598), + [anon_sym_TILDE] = ACTIONS(3598), + [anon_sym_DASH] = ACTIONS(3596), + [anon_sym_PLUS] = ACTIONS(3596), + [anon_sym_STAR] = ACTIONS(3598), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_AMP] = ACTIONS(3596), + [anon_sym_SEMI] = ACTIONS(3598), + [anon_sym___extension__] = ACTIONS(3596), + [anon_sym_typedef] = ACTIONS(3596), + [anon_sym_virtual] = ACTIONS(3596), + [anon_sym_extern] = ACTIONS(3596), + [anon_sym___attribute__] = ACTIONS(3596), + [anon_sym___attribute] = ACTIONS(3596), + [anon_sym_using] = ACTIONS(3596), + [anon_sym_COLON_COLON] = ACTIONS(3598), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3598), + [anon_sym___declspec] = ACTIONS(3596), + [anon_sym___based] = ACTIONS(3596), + [anon_sym___cdecl] = ACTIONS(3596), + [anon_sym___clrcall] = ACTIONS(3596), + [anon_sym___stdcall] = ACTIONS(3596), + [anon_sym___fastcall] = ACTIONS(3596), + [anon_sym___thiscall] = ACTIONS(3596), + [anon_sym___vectorcall] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_signed] = ACTIONS(3596), + [anon_sym_unsigned] = ACTIONS(3596), + [anon_sym_long] = ACTIONS(3596), + [anon_sym_short] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_static] = ACTIONS(3596), + [anon_sym_register] = ACTIONS(3596), + [anon_sym_inline] = ACTIONS(3596), + [anon_sym___inline] = ACTIONS(3596), + [anon_sym___inline__] = ACTIONS(3596), + [anon_sym___forceinline] = ACTIONS(3596), + [anon_sym_thread_local] = ACTIONS(3596), + [anon_sym___thread] = ACTIONS(3596), + [anon_sym_const] = ACTIONS(3596), + [anon_sym_constexpr] = ACTIONS(3596), + [anon_sym_volatile] = ACTIONS(3596), + [anon_sym_restrict] = ACTIONS(3596), + [anon_sym___restrict__] = ACTIONS(3596), + [anon_sym__Atomic] = ACTIONS(3596), + [anon_sym__Noreturn] = ACTIONS(3596), + [anon_sym_noreturn] = ACTIONS(3596), + [anon_sym__Nonnull] = ACTIONS(3596), + [anon_sym_mutable] = ACTIONS(3596), + [anon_sym_constinit] = ACTIONS(3596), + [anon_sym_consteval] = ACTIONS(3596), + [anon_sym_alignas] = ACTIONS(3596), + [anon_sym__Alignas] = ACTIONS(3596), + [sym_primitive_type] = ACTIONS(3596), + [anon_sym_enum] = ACTIONS(3596), + [anon_sym_class] = ACTIONS(3596), + [anon_sym_struct] = ACTIONS(3596), + [anon_sym_union] = ACTIONS(3596), + [anon_sym_if] = ACTIONS(3596), + [anon_sym_else] = ACTIONS(3596), + [anon_sym_switch] = ACTIONS(3596), + [anon_sym_case] = ACTIONS(3596), + [anon_sym_default] = ACTIONS(3596), + [anon_sym_while] = ACTIONS(3596), + [anon_sym_do] = ACTIONS(3596), + [anon_sym_for] = ACTIONS(3596), + [anon_sym_return] = ACTIONS(3596), + [anon_sym_break] = ACTIONS(3596), + [anon_sym_continue] = ACTIONS(3596), + [anon_sym_goto] = ACTIONS(3596), + [anon_sym___try] = ACTIONS(3596), + [anon_sym___leave] = ACTIONS(3596), + [anon_sym_not] = ACTIONS(3596), + [anon_sym_compl] = ACTIONS(3596), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3596), + [anon_sym___alignof__] = ACTIONS(3596), + [anon_sym___alignof] = ACTIONS(3596), + [anon_sym__alignof] = ACTIONS(3596), + [anon_sym_alignof] = ACTIONS(3596), + [anon_sym__Alignof] = ACTIONS(3596), + [anon_sym_offsetof] = ACTIONS(3596), + [anon_sym__Generic] = ACTIONS(3596), + [anon_sym_typename] = ACTIONS(3596), + [anon_sym_asm] = ACTIONS(3596), + [anon_sym___asm__] = ACTIONS(3596), + [anon_sym___asm] = ACTIONS(3596), + [sym_number_literal] = ACTIONS(3598), + [anon_sym_L_SQUOTE] = ACTIONS(3598), + [anon_sym_u_SQUOTE] = ACTIONS(3598), + [anon_sym_U_SQUOTE] = ACTIONS(3598), + [anon_sym_u8_SQUOTE] = ACTIONS(3598), + [anon_sym_SQUOTE] = ACTIONS(3598), + [anon_sym_L_DQUOTE] = ACTIONS(3598), + [anon_sym_u_DQUOTE] = ACTIONS(3598), + [anon_sym_U_DQUOTE] = ACTIONS(3598), + [anon_sym_u8_DQUOTE] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3598), + [sym_true] = ACTIONS(3596), + [sym_false] = ACTIONS(3596), + [anon_sym_NULL] = ACTIONS(3596), + [anon_sym_nullptr] = ACTIONS(3596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3596), + [anon_sym_decltype] = ACTIONS(3596), + [anon_sym_explicit] = ACTIONS(3596), + [anon_sym_export] = ACTIONS(3596), + [anon_sym_module] = ACTIONS(3596), + [anon_sym_import] = ACTIONS(3596), + [anon_sym_template] = ACTIONS(3596), + [anon_sym_operator] = ACTIONS(3596), + [anon_sym_try] = ACTIONS(3596), + [anon_sym_delete] = ACTIONS(3596), + [anon_sym_throw] = ACTIONS(3596), + [anon_sym_namespace] = ACTIONS(3596), + [anon_sym_static_assert] = ACTIONS(3596), + [anon_sym_concept] = ACTIONS(3596), + [anon_sym_co_return] = ACTIONS(3596), + [anon_sym_co_yield] = ACTIONS(3596), + [anon_sym_R_DQUOTE] = ACTIONS(3598), + [anon_sym_LR_DQUOTE] = ACTIONS(3598), + [anon_sym_uR_DQUOTE] = ACTIONS(3598), + [anon_sym_UR_DQUOTE] = ACTIONS(3598), + [anon_sym_u8R_DQUOTE] = ACTIONS(3598), + [anon_sym_co_await] = ACTIONS(3596), + [anon_sym_new] = ACTIONS(3596), + [anon_sym_requires] = ACTIONS(3596), + [anon_sym_CARET_CARET] = ACTIONS(3598), + [anon_sym_LBRACK_COLON] = ACTIONS(3598), + [sym_this] = ACTIONS(3596), }, - [STATE(710)] = { - [sym_preproc_def] = STATE(583), - [sym_preproc_function_def] = STATE(583), - [sym_preproc_call] = STATE(583), - [sym_preproc_if_in_field_declaration_list] = STATE(583), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(583), - [sym_type_definition] = STATE(583), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(7964), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4562), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__field_declaration_list_item] = STATE(583), - [sym_field_declaration] = STATE(583), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(583), - [sym_operator_cast] = STATE(9142), - [sym_inline_method_definition] = STATE(583), - [sym__constructor_specifiers] = STATE(2332), - [sym_operator_cast_definition] = STATE(583), - [sym_operator_cast_declaration] = STATE(583), - [sym_constructor_or_destructor_definition] = STATE(583), - [sym_constructor_or_destructor_declaration] = STATE(583), - [sym_friend_declaration] = STATE(583), - [sym_access_specifier] = STATE(11109), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_using_declaration] = STATE(583), - [sym_alias_declaration] = STATE(583), - [sym_static_assert_declaration] = STATE(583), - [sym_consteval_block_declaration] = STATE(583), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7622), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(583), - [aux_sym__declaration_specifiers_repeat1] = STATE(2744), - [aux_sym_attributed_declarator_repeat1] = STATE(9371), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(3029), - [aux_sym_preproc_def_token1] = ACTIONS(4352), - [aux_sym_preproc_if_token1] = ACTIONS(4354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4356), - [sym_preproc_directive] = ACTIONS(4358), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(4408), - [anon_sym___extension__] = ACTIONS(4362), - [anon_sym_typedef] = ACTIONS(4364), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4366), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4372), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_template] = ACTIONS(4374), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4376), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_protected] = ACTIONS(3083), - [anon_sym_static_assert] = ACTIONS(4378), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [STATE(589)] = { + [ts_builtin_sym_end] = ACTIONS(3534), + [sym_identifier] = ACTIONS(3532), + [aux_sym_preproc_include_token1] = ACTIONS(3532), + [aux_sym_preproc_def_token1] = ACTIONS(3532), + [aux_sym_preproc_if_token1] = ACTIONS(3532), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3532), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3532), + [sym_preproc_directive] = ACTIONS(3532), + [anon_sym_LPAREN2] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3534), + [anon_sym_TILDE] = ACTIONS(3534), + [anon_sym_DASH] = ACTIONS(3532), + [anon_sym_PLUS] = ACTIONS(3532), + [anon_sym_STAR] = ACTIONS(3534), + [anon_sym_AMP_AMP] = ACTIONS(3534), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_SEMI] = ACTIONS(3534), + [anon_sym___extension__] = ACTIONS(3532), + [anon_sym_typedef] = ACTIONS(3532), + [anon_sym_virtual] = ACTIONS(3532), + [anon_sym_extern] = ACTIONS(3532), + [anon_sym___attribute__] = ACTIONS(3532), + [anon_sym___attribute] = ACTIONS(3532), + [anon_sym_using] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3534), + [anon_sym___declspec] = ACTIONS(3532), + [anon_sym___based] = ACTIONS(3532), + [anon_sym___cdecl] = ACTIONS(3532), + [anon_sym___clrcall] = ACTIONS(3532), + [anon_sym___stdcall] = ACTIONS(3532), + [anon_sym___fastcall] = ACTIONS(3532), + [anon_sym___thiscall] = ACTIONS(3532), + [anon_sym___vectorcall] = ACTIONS(3532), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_signed] = ACTIONS(3532), + [anon_sym_unsigned] = ACTIONS(3532), + [anon_sym_long] = ACTIONS(3532), + [anon_sym_short] = ACTIONS(3532), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_static] = ACTIONS(3532), + [anon_sym_register] = ACTIONS(3532), + [anon_sym_inline] = ACTIONS(3532), + [anon_sym___inline] = ACTIONS(3532), + [anon_sym___inline__] = ACTIONS(3532), + [anon_sym___forceinline] = ACTIONS(3532), + [anon_sym_thread_local] = ACTIONS(3532), + [anon_sym___thread] = ACTIONS(3532), + [anon_sym_const] = ACTIONS(3532), + [anon_sym_constexpr] = ACTIONS(3532), + [anon_sym_volatile] = ACTIONS(3532), + [anon_sym_restrict] = ACTIONS(3532), + [anon_sym___restrict__] = ACTIONS(3532), + [anon_sym__Atomic] = ACTIONS(3532), + [anon_sym__Noreturn] = ACTIONS(3532), + [anon_sym_noreturn] = ACTIONS(3532), + [anon_sym__Nonnull] = ACTIONS(3532), + [anon_sym_mutable] = ACTIONS(3532), + [anon_sym_constinit] = ACTIONS(3532), + [anon_sym_consteval] = ACTIONS(3532), + [anon_sym_alignas] = ACTIONS(3532), + [anon_sym__Alignas] = ACTIONS(3532), + [sym_primitive_type] = ACTIONS(3532), + [anon_sym_enum] = ACTIONS(3532), + [anon_sym_class] = ACTIONS(3532), + [anon_sym_struct] = ACTIONS(3532), + [anon_sym_union] = ACTIONS(3532), + [anon_sym_if] = ACTIONS(3532), + [anon_sym_else] = ACTIONS(3532), + [anon_sym_switch] = ACTIONS(3532), + [anon_sym_case] = ACTIONS(3532), + [anon_sym_default] = ACTIONS(3532), + [anon_sym_while] = ACTIONS(3532), + [anon_sym_do] = ACTIONS(3532), + [anon_sym_for] = ACTIONS(3532), + [anon_sym_return] = ACTIONS(3532), + [anon_sym_break] = ACTIONS(3532), + [anon_sym_continue] = ACTIONS(3532), + [anon_sym_goto] = ACTIONS(3532), + [anon_sym___try] = ACTIONS(3532), + [anon_sym___leave] = ACTIONS(3532), + [anon_sym_not] = ACTIONS(3532), + [anon_sym_compl] = ACTIONS(3532), + [anon_sym_DASH_DASH] = ACTIONS(3534), + [anon_sym_PLUS_PLUS] = ACTIONS(3534), + [anon_sym_sizeof] = ACTIONS(3532), + [anon_sym___alignof__] = ACTIONS(3532), + [anon_sym___alignof] = ACTIONS(3532), + [anon_sym__alignof] = ACTIONS(3532), + [anon_sym_alignof] = ACTIONS(3532), + [anon_sym__Alignof] = ACTIONS(3532), + [anon_sym_offsetof] = ACTIONS(3532), + [anon_sym__Generic] = ACTIONS(3532), + [anon_sym_typename] = ACTIONS(3532), + [anon_sym_asm] = ACTIONS(3532), + [anon_sym___asm__] = ACTIONS(3532), + [anon_sym___asm] = ACTIONS(3532), + [sym_number_literal] = ACTIONS(3534), + [anon_sym_L_SQUOTE] = ACTIONS(3534), + [anon_sym_u_SQUOTE] = ACTIONS(3534), + [anon_sym_U_SQUOTE] = ACTIONS(3534), + [anon_sym_u8_SQUOTE] = ACTIONS(3534), + [anon_sym_SQUOTE] = ACTIONS(3534), + [anon_sym_L_DQUOTE] = ACTIONS(3534), + [anon_sym_u_DQUOTE] = ACTIONS(3534), + [anon_sym_U_DQUOTE] = ACTIONS(3534), + [anon_sym_u8_DQUOTE] = ACTIONS(3534), + [anon_sym_DQUOTE] = ACTIONS(3534), + [sym_true] = ACTIONS(3532), + [sym_false] = ACTIONS(3532), + [anon_sym_NULL] = ACTIONS(3532), + [anon_sym_nullptr] = ACTIONS(3532), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3532), + [anon_sym_decltype] = ACTIONS(3532), + [anon_sym_explicit] = ACTIONS(3532), + [anon_sym_export] = ACTIONS(3532), + [anon_sym_module] = ACTIONS(3532), + [anon_sym_import] = ACTIONS(3532), + [anon_sym_template] = ACTIONS(3532), + [anon_sym_operator] = ACTIONS(3532), + [anon_sym_try] = ACTIONS(3532), + [anon_sym_delete] = ACTIONS(3532), + [anon_sym_throw] = ACTIONS(3532), + [anon_sym_namespace] = ACTIONS(3532), + [anon_sym_static_assert] = ACTIONS(3532), + [anon_sym_concept] = ACTIONS(3532), + [anon_sym_co_return] = ACTIONS(3532), + [anon_sym_co_yield] = ACTIONS(3532), + [anon_sym_R_DQUOTE] = ACTIONS(3534), + [anon_sym_LR_DQUOTE] = ACTIONS(3534), + [anon_sym_uR_DQUOTE] = ACTIONS(3534), + [anon_sym_UR_DQUOTE] = ACTIONS(3534), + [anon_sym_u8R_DQUOTE] = ACTIONS(3534), + [anon_sym_co_await] = ACTIONS(3532), + [anon_sym_new] = ACTIONS(3532), + [anon_sym_requires] = ACTIONS(3532), + [anon_sym_CARET_CARET] = ACTIONS(3534), + [anon_sym_LBRACK_COLON] = ACTIONS(3534), + [sym_this] = ACTIONS(3532), }, - [STATE(711)] = { - [sym_identifier] = ACTIONS(3728), - [aux_sym_preproc_include_token1] = ACTIONS(3728), - [aux_sym_preproc_def_token1] = ACTIONS(3728), - [aux_sym_preproc_if_token1] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), - [sym_preproc_directive] = ACTIONS(3728), - [anon_sym_LPAREN2] = ACTIONS(3730), - [anon_sym_BANG] = ACTIONS(3730), - [anon_sym_TILDE] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3730), - [anon_sym_AMP_AMP] = ACTIONS(3730), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_SEMI] = ACTIONS(3730), - [anon_sym___extension__] = ACTIONS(3728), - [anon_sym_typedef] = ACTIONS(3728), - [anon_sym_virtual] = ACTIONS(3728), - [anon_sym_extern] = ACTIONS(3728), - [anon_sym___attribute__] = ACTIONS(3728), - [anon_sym___attribute] = ACTIONS(3728), - [anon_sym_using] = ACTIONS(3728), - [anon_sym_COLON_COLON] = ACTIONS(3730), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), - [anon_sym___declspec] = ACTIONS(3728), - [anon_sym___based] = ACTIONS(3728), - [anon_sym___cdecl] = ACTIONS(3728), - [anon_sym___clrcall] = ACTIONS(3728), - [anon_sym___stdcall] = ACTIONS(3728), - [anon_sym___fastcall] = ACTIONS(3728), - [anon_sym___thiscall] = ACTIONS(3728), - [anon_sym___vectorcall] = ACTIONS(3728), - [anon_sym_LBRACE] = ACTIONS(3730), - [anon_sym_RBRACE] = ACTIONS(3730), - [anon_sym_signed] = ACTIONS(3728), - [anon_sym_unsigned] = ACTIONS(3728), - [anon_sym_long] = ACTIONS(3728), - [anon_sym_short] = ACTIONS(3728), - [anon_sym_LBRACK] = ACTIONS(3728), - [anon_sym_static] = ACTIONS(3728), - [anon_sym_register] = ACTIONS(3728), - [anon_sym_inline] = ACTIONS(3728), - [anon_sym___inline] = ACTIONS(3728), - [anon_sym___inline__] = ACTIONS(3728), - [anon_sym___forceinline] = ACTIONS(3728), - [anon_sym_thread_local] = ACTIONS(3728), - [anon_sym___thread] = ACTIONS(3728), - [anon_sym_const] = ACTIONS(3728), - [anon_sym_constexpr] = ACTIONS(3728), - [anon_sym_volatile] = ACTIONS(3728), - [anon_sym_restrict] = ACTIONS(3728), - [anon_sym___restrict__] = ACTIONS(3728), - [anon_sym__Atomic] = ACTIONS(3728), - [anon_sym__Noreturn] = ACTIONS(3728), - [anon_sym_noreturn] = ACTIONS(3728), - [anon_sym__Nonnull] = ACTIONS(3728), - [anon_sym_mutable] = ACTIONS(3728), - [anon_sym_constinit] = ACTIONS(3728), - [anon_sym_consteval] = ACTIONS(3728), - [anon_sym_alignas] = ACTIONS(3728), - [anon_sym__Alignas] = ACTIONS(3728), - [sym_primitive_type] = ACTIONS(3728), - [anon_sym_enum] = ACTIONS(3728), - [anon_sym_class] = ACTIONS(3728), - [anon_sym_struct] = ACTIONS(3728), - [anon_sym_union] = ACTIONS(3728), - [anon_sym_if] = ACTIONS(3728), - [anon_sym_else] = ACTIONS(3728), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_case] = ACTIONS(3728), - [anon_sym_default] = ACTIONS(3728), - [anon_sym_while] = ACTIONS(3728), - [anon_sym_do] = ACTIONS(3728), - [anon_sym_for] = ACTIONS(3728), - [anon_sym_return] = ACTIONS(3728), - [anon_sym_break] = ACTIONS(3728), - [anon_sym_continue] = ACTIONS(3728), - [anon_sym_goto] = ACTIONS(3728), - [anon_sym___try] = ACTIONS(3728), - [anon_sym___leave] = ACTIONS(3728), - [anon_sym_not] = ACTIONS(3728), - [anon_sym_compl] = ACTIONS(3728), - [anon_sym_DASH_DASH] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3730), - [anon_sym_sizeof] = ACTIONS(3728), - [anon_sym___alignof__] = ACTIONS(3728), - [anon_sym___alignof] = ACTIONS(3728), - [anon_sym__alignof] = ACTIONS(3728), - [anon_sym_alignof] = ACTIONS(3728), - [anon_sym__Alignof] = ACTIONS(3728), - [anon_sym_offsetof] = ACTIONS(3728), - [anon_sym__Generic] = ACTIONS(3728), - [anon_sym_typename] = ACTIONS(3728), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [anon_sym___asm] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3730), - [anon_sym_u_SQUOTE] = ACTIONS(3730), - [anon_sym_U_SQUOTE] = ACTIONS(3730), - [anon_sym_u8_SQUOTE] = ACTIONS(3730), - [anon_sym_SQUOTE] = ACTIONS(3730), - [anon_sym_L_DQUOTE] = ACTIONS(3730), - [anon_sym_u_DQUOTE] = ACTIONS(3730), - [anon_sym_U_DQUOTE] = ACTIONS(3730), - [anon_sym_u8_DQUOTE] = ACTIONS(3730), - [anon_sym_DQUOTE] = ACTIONS(3730), - [sym_true] = ACTIONS(3728), - [sym_false] = ACTIONS(3728), - [anon_sym_NULL] = ACTIONS(3728), - [anon_sym_nullptr] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3728), - [anon_sym_decltype] = ACTIONS(3728), - [anon_sym_explicit] = ACTIONS(3728), - [anon_sym_template] = ACTIONS(3728), - [anon_sym_operator] = ACTIONS(3728), - [anon_sym_try] = ACTIONS(3728), - [anon_sym_delete] = ACTIONS(3728), - [anon_sym_throw] = ACTIONS(3728), - [anon_sym_namespace] = ACTIONS(3728), - [anon_sym_static_assert] = ACTIONS(3728), - [anon_sym_concept] = ACTIONS(3728), - [anon_sym_co_return] = ACTIONS(3728), - [anon_sym_co_yield] = ACTIONS(3728), - [anon_sym_R_DQUOTE] = ACTIONS(3730), - [anon_sym_LR_DQUOTE] = ACTIONS(3730), - [anon_sym_uR_DQUOTE] = ACTIONS(3730), - [anon_sym_UR_DQUOTE] = ACTIONS(3730), - [anon_sym_u8R_DQUOTE] = ACTIONS(3730), - [anon_sym_co_await] = ACTIONS(3728), - [anon_sym_new] = ACTIONS(3728), - [anon_sym_requires] = ACTIONS(3728), - [anon_sym_CARET_CARET] = ACTIONS(3730), - [anon_sym_LBRACK_COLON] = ACTIONS(3730), - [sym_this] = ACTIONS(3728), + [STATE(590)] = { + [ts_builtin_sym_end] = ACTIONS(3574), + [sym_identifier] = ACTIONS(3572), + [aux_sym_preproc_include_token1] = ACTIONS(3572), + [aux_sym_preproc_def_token1] = ACTIONS(3572), + [aux_sym_preproc_if_token1] = ACTIONS(3572), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3572), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3572), + [sym_preproc_directive] = ACTIONS(3572), + [anon_sym_LPAREN2] = ACTIONS(3574), + [anon_sym_BANG] = ACTIONS(3574), + [anon_sym_TILDE] = ACTIONS(3574), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_STAR] = ACTIONS(3574), + [anon_sym_AMP_AMP] = ACTIONS(3574), + [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3574), + [anon_sym___extension__] = ACTIONS(3572), + [anon_sym_typedef] = ACTIONS(3572), + [anon_sym_virtual] = ACTIONS(3572), + [anon_sym_extern] = ACTIONS(3572), + [anon_sym___attribute__] = ACTIONS(3572), + [anon_sym___attribute] = ACTIONS(3572), + [anon_sym_using] = ACTIONS(3572), + [anon_sym_COLON_COLON] = ACTIONS(3574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3574), + [anon_sym___declspec] = ACTIONS(3572), + [anon_sym___based] = ACTIONS(3572), + [anon_sym___cdecl] = ACTIONS(3572), + [anon_sym___clrcall] = ACTIONS(3572), + [anon_sym___stdcall] = ACTIONS(3572), + [anon_sym___fastcall] = ACTIONS(3572), + [anon_sym___thiscall] = ACTIONS(3572), + [anon_sym___vectorcall] = ACTIONS(3572), + [anon_sym_LBRACE] = ACTIONS(3574), + [anon_sym_signed] = ACTIONS(3572), + [anon_sym_unsigned] = ACTIONS(3572), + [anon_sym_long] = ACTIONS(3572), + [anon_sym_short] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_static] = ACTIONS(3572), + [anon_sym_register] = ACTIONS(3572), + [anon_sym_inline] = ACTIONS(3572), + [anon_sym___inline] = ACTIONS(3572), + [anon_sym___inline__] = ACTIONS(3572), + [anon_sym___forceinline] = ACTIONS(3572), + [anon_sym_thread_local] = ACTIONS(3572), + [anon_sym___thread] = ACTIONS(3572), + [anon_sym_const] = ACTIONS(3572), + [anon_sym_constexpr] = ACTIONS(3572), + [anon_sym_volatile] = ACTIONS(3572), + [anon_sym_restrict] = ACTIONS(3572), + [anon_sym___restrict__] = ACTIONS(3572), + [anon_sym__Atomic] = ACTIONS(3572), + [anon_sym__Noreturn] = ACTIONS(3572), + [anon_sym_noreturn] = ACTIONS(3572), + [anon_sym__Nonnull] = ACTIONS(3572), + [anon_sym_mutable] = ACTIONS(3572), + [anon_sym_constinit] = ACTIONS(3572), + [anon_sym_consteval] = ACTIONS(3572), + [anon_sym_alignas] = ACTIONS(3572), + [anon_sym__Alignas] = ACTIONS(3572), + [sym_primitive_type] = ACTIONS(3572), + [anon_sym_enum] = ACTIONS(3572), + [anon_sym_class] = ACTIONS(3572), + [anon_sym_struct] = ACTIONS(3572), + [anon_sym_union] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_else] = ACTIONS(3572), + [anon_sym_switch] = ACTIONS(3572), + [anon_sym_case] = ACTIONS(3572), + [anon_sym_default] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_break] = ACTIONS(3572), + [anon_sym_continue] = ACTIONS(3572), + [anon_sym_goto] = ACTIONS(3572), + [anon_sym___try] = ACTIONS(3572), + [anon_sym___leave] = ACTIONS(3572), + [anon_sym_not] = ACTIONS(3572), + [anon_sym_compl] = ACTIONS(3572), + [anon_sym_DASH_DASH] = ACTIONS(3574), + [anon_sym_PLUS_PLUS] = ACTIONS(3574), + [anon_sym_sizeof] = ACTIONS(3572), + [anon_sym___alignof__] = ACTIONS(3572), + [anon_sym___alignof] = ACTIONS(3572), + [anon_sym__alignof] = ACTIONS(3572), + [anon_sym_alignof] = ACTIONS(3572), + [anon_sym__Alignof] = ACTIONS(3572), + [anon_sym_offsetof] = ACTIONS(3572), + [anon_sym__Generic] = ACTIONS(3572), + [anon_sym_typename] = ACTIONS(3572), + [anon_sym_asm] = ACTIONS(3572), + [anon_sym___asm__] = ACTIONS(3572), + [anon_sym___asm] = ACTIONS(3572), + [sym_number_literal] = ACTIONS(3574), + [anon_sym_L_SQUOTE] = ACTIONS(3574), + [anon_sym_u_SQUOTE] = ACTIONS(3574), + [anon_sym_U_SQUOTE] = ACTIONS(3574), + [anon_sym_u8_SQUOTE] = ACTIONS(3574), + [anon_sym_SQUOTE] = ACTIONS(3574), + [anon_sym_L_DQUOTE] = ACTIONS(3574), + [anon_sym_u_DQUOTE] = ACTIONS(3574), + [anon_sym_U_DQUOTE] = ACTIONS(3574), + [anon_sym_u8_DQUOTE] = ACTIONS(3574), + [anon_sym_DQUOTE] = ACTIONS(3574), + [sym_true] = ACTIONS(3572), + [sym_false] = ACTIONS(3572), + [anon_sym_NULL] = ACTIONS(3572), + [anon_sym_nullptr] = ACTIONS(3572), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3572), + [anon_sym_decltype] = ACTIONS(3572), + [anon_sym_explicit] = ACTIONS(3572), + [anon_sym_export] = ACTIONS(3572), + [anon_sym_module] = ACTIONS(3572), + [anon_sym_import] = ACTIONS(3572), + [anon_sym_template] = ACTIONS(3572), + [anon_sym_operator] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_delete] = ACTIONS(3572), + [anon_sym_throw] = ACTIONS(3572), + [anon_sym_namespace] = ACTIONS(3572), + [anon_sym_static_assert] = ACTIONS(3572), + [anon_sym_concept] = ACTIONS(3572), + [anon_sym_co_return] = ACTIONS(3572), + [anon_sym_co_yield] = ACTIONS(3572), + [anon_sym_R_DQUOTE] = ACTIONS(3574), + [anon_sym_LR_DQUOTE] = ACTIONS(3574), + [anon_sym_uR_DQUOTE] = ACTIONS(3574), + [anon_sym_UR_DQUOTE] = ACTIONS(3574), + [anon_sym_u8R_DQUOTE] = ACTIONS(3574), + [anon_sym_co_await] = ACTIONS(3572), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_requires] = ACTIONS(3572), + [anon_sym_CARET_CARET] = ACTIONS(3574), + [anon_sym_LBRACK_COLON] = ACTIONS(3574), + [sym_this] = ACTIONS(3572), }, - [STATE(712)] = { - [sym_identifier] = ACTIONS(3728), - [aux_sym_preproc_include_token1] = ACTIONS(3728), - [aux_sym_preproc_def_token1] = ACTIONS(3728), - [aux_sym_preproc_if_token1] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), - [sym_preproc_directive] = ACTIONS(3728), - [anon_sym_LPAREN2] = ACTIONS(3730), - [anon_sym_BANG] = ACTIONS(3730), - [anon_sym_TILDE] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3730), - [anon_sym_AMP_AMP] = ACTIONS(3730), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_SEMI] = ACTIONS(3730), - [anon_sym___extension__] = ACTIONS(3728), - [anon_sym_typedef] = ACTIONS(3728), - [anon_sym_virtual] = ACTIONS(3728), - [anon_sym_extern] = ACTIONS(3728), - [anon_sym___attribute__] = ACTIONS(3728), - [anon_sym___attribute] = ACTIONS(3728), - [anon_sym_using] = ACTIONS(3728), - [anon_sym_COLON_COLON] = ACTIONS(3730), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), - [anon_sym___declspec] = ACTIONS(3728), - [anon_sym___based] = ACTIONS(3728), - [anon_sym___cdecl] = ACTIONS(3728), - [anon_sym___clrcall] = ACTIONS(3728), - [anon_sym___stdcall] = ACTIONS(3728), - [anon_sym___fastcall] = ACTIONS(3728), - [anon_sym___thiscall] = ACTIONS(3728), - [anon_sym___vectorcall] = ACTIONS(3728), - [anon_sym_LBRACE] = ACTIONS(3730), - [anon_sym_RBRACE] = ACTIONS(3730), - [anon_sym_signed] = ACTIONS(3728), - [anon_sym_unsigned] = ACTIONS(3728), - [anon_sym_long] = ACTIONS(3728), - [anon_sym_short] = ACTIONS(3728), - [anon_sym_LBRACK] = ACTIONS(3728), - [anon_sym_static] = ACTIONS(3728), - [anon_sym_register] = ACTIONS(3728), - [anon_sym_inline] = ACTIONS(3728), - [anon_sym___inline] = ACTIONS(3728), - [anon_sym___inline__] = ACTIONS(3728), - [anon_sym___forceinline] = ACTIONS(3728), - [anon_sym_thread_local] = ACTIONS(3728), - [anon_sym___thread] = ACTIONS(3728), - [anon_sym_const] = ACTIONS(3728), - [anon_sym_constexpr] = ACTIONS(3728), - [anon_sym_volatile] = ACTIONS(3728), - [anon_sym_restrict] = ACTIONS(3728), - [anon_sym___restrict__] = ACTIONS(3728), - [anon_sym__Atomic] = ACTIONS(3728), - [anon_sym__Noreturn] = ACTIONS(3728), - [anon_sym_noreturn] = ACTIONS(3728), - [anon_sym__Nonnull] = ACTIONS(3728), - [anon_sym_mutable] = ACTIONS(3728), - [anon_sym_constinit] = ACTIONS(3728), - [anon_sym_consteval] = ACTIONS(3728), - [anon_sym_alignas] = ACTIONS(3728), - [anon_sym__Alignas] = ACTIONS(3728), - [sym_primitive_type] = ACTIONS(3728), - [anon_sym_enum] = ACTIONS(3728), - [anon_sym_class] = ACTIONS(3728), - [anon_sym_struct] = ACTIONS(3728), - [anon_sym_union] = ACTIONS(3728), - [anon_sym_if] = ACTIONS(3728), - [anon_sym_else] = ACTIONS(3728), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_case] = ACTIONS(3728), - [anon_sym_default] = ACTIONS(3728), - [anon_sym_while] = ACTIONS(3728), - [anon_sym_do] = ACTIONS(3728), - [anon_sym_for] = ACTIONS(3728), - [anon_sym_return] = ACTIONS(3728), - [anon_sym_break] = ACTIONS(3728), - [anon_sym_continue] = ACTIONS(3728), - [anon_sym_goto] = ACTIONS(3728), - [anon_sym___try] = ACTIONS(3728), - [anon_sym___leave] = ACTIONS(3728), - [anon_sym_not] = ACTIONS(3728), - [anon_sym_compl] = ACTIONS(3728), - [anon_sym_DASH_DASH] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3730), - [anon_sym_sizeof] = ACTIONS(3728), - [anon_sym___alignof__] = ACTIONS(3728), - [anon_sym___alignof] = ACTIONS(3728), - [anon_sym__alignof] = ACTIONS(3728), - [anon_sym_alignof] = ACTIONS(3728), - [anon_sym__Alignof] = ACTIONS(3728), - [anon_sym_offsetof] = ACTIONS(3728), - [anon_sym__Generic] = ACTIONS(3728), - [anon_sym_typename] = ACTIONS(3728), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [anon_sym___asm] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3730), - [anon_sym_u_SQUOTE] = ACTIONS(3730), - [anon_sym_U_SQUOTE] = ACTIONS(3730), - [anon_sym_u8_SQUOTE] = ACTIONS(3730), - [anon_sym_SQUOTE] = ACTIONS(3730), - [anon_sym_L_DQUOTE] = ACTIONS(3730), - [anon_sym_u_DQUOTE] = ACTIONS(3730), - [anon_sym_U_DQUOTE] = ACTIONS(3730), - [anon_sym_u8_DQUOTE] = ACTIONS(3730), - [anon_sym_DQUOTE] = ACTIONS(3730), - [sym_true] = ACTIONS(3728), - [sym_false] = ACTIONS(3728), - [anon_sym_NULL] = ACTIONS(3728), - [anon_sym_nullptr] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3728), - [anon_sym_decltype] = ACTIONS(3728), - [anon_sym_explicit] = ACTIONS(3728), - [anon_sym_template] = ACTIONS(3728), - [anon_sym_operator] = ACTIONS(3728), - [anon_sym_try] = ACTIONS(3728), - [anon_sym_delete] = ACTIONS(3728), - [anon_sym_throw] = ACTIONS(3728), - [anon_sym_namespace] = ACTIONS(3728), - [anon_sym_static_assert] = ACTIONS(3728), - [anon_sym_concept] = ACTIONS(3728), - [anon_sym_co_return] = ACTIONS(3728), - [anon_sym_co_yield] = ACTIONS(3728), - [anon_sym_R_DQUOTE] = ACTIONS(3730), - [anon_sym_LR_DQUOTE] = ACTIONS(3730), - [anon_sym_uR_DQUOTE] = ACTIONS(3730), - [anon_sym_UR_DQUOTE] = ACTIONS(3730), - [anon_sym_u8R_DQUOTE] = ACTIONS(3730), - [anon_sym_co_await] = ACTIONS(3728), - [anon_sym_new] = ACTIONS(3728), - [anon_sym_requires] = ACTIONS(3728), - [anon_sym_CARET_CARET] = ACTIONS(3730), - [anon_sym_LBRACK_COLON] = ACTIONS(3730), - [sym_this] = ACTIONS(3728), + [STATE(591)] = { + [sym_identifier] = ACTIONS(3310), + [aux_sym_preproc_include_token1] = ACTIONS(3310), + [aux_sym_preproc_def_token1] = ACTIONS(3310), + [aux_sym_preproc_if_token1] = ACTIONS(3310), + [aux_sym_preproc_if_token2] = ACTIONS(3310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3310), + [sym_preproc_directive] = ACTIONS(3310), + [anon_sym_LPAREN2] = ACTIONS(3315), + [anon_sym_BANG] = ACTIONS(3315), + [anon_sym_TILDE] = ACTIONS(3315), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3315), + [anon_sym_AMP_AMP] = ACTIONS(3315), + [anon_sym_AMP] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3315), + [anon_sym___extension__] = ACTIONS(3310), + [anon_sym_typedef] = ACTIONS(3310), + [anon_sym_virtual] = ACTIONS(3310), + [anon_sym_extern] = ACTIONS(3310), + [anon_sym___attribute__] = ACTIONS(3310), + [anon_sym___attribute] = ACTIONS(3310), + [anon_sym_using] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3315), + [anon_sym___declspec] = ACTIONS(3310), + [anon_sym___based] = ACTIONS(3310), + [anon_sym___cdecl] = ACTIONS(3310), + [anon_sym___clrcall] = ACTIONS(3310), + [anon_sym___stdcall] = ACTIONS(3310), + [anon_sym___fastcall] = ACTIONS(3310), + [anon_sym___thiscall] = ACTIONS(3310), + [anon_sym___vectorcall] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3315), + [anon_sym_signed] = ACTIONS(3310), + [anon_sym_unsigned] = ACTIONS(3310), + [anon_sym_long] = ACTIONS(3310), + [anon_sym_short] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3310), + [anon_sym_static] = ACTIONS(3310), + [anon_sym_register] = ACTIONS(3310), + [anon_sym_inline] = ACTIONS(3310), + [anon_sym___inline] = ACTIONS(3310), + [anon_sym___inline__] = ACTIONS(3310), + [anon_sym___forceinline] = ACTIONS(3310), + [anon_sym_thread_local] = ACTIONS(3310), + [anon_sym___thread] = ACTIONS(3310), + [anon_sym_const] = ACTIONS(3310), + [anon_sym_constexpr] = ACTIONS(3310), + [anon_sym_volatile] = ACTIONS(3310), + [anon_sym_restrict] = ACTIONS(3310), + [anon_sym___restrict__] = ACTIONS(3310), + [anon_sym__Atomic] = ACTIONS(3310), + [anon_sym__Noreturn] = ACTIONS(3310), + [anon_sym_noreturn] = ACTIONS(3310), + [anon_sym__Nonnull] = ACTIONS(3310), + [anon_sym_mutable] = ACTIONS(3310), + [anon_sym_constinit] = ACTIONS(3310), + [anon_sym_consteval] = ACTIONS(3310), + [anon_sym_alignas] = ACTIONS(3310), + [anon_sym__Alignas] = ACTIONS(3310), + [sym_primitive_type] = ACTIONS(3310), + [anon_sym_enum] = ACTIONS(3310), + [anon_sym_class] = ACTIONS(3310), + [anon_sym_struct] = ACTIONS(3310), + [anon_sym_union] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_switch] = ACTIONS(3310), + [anon_sym_case] = ACTIONS(3310), + [anon_sym_default] = ACTIONS(3310), + [anon_sym_while] = ACTIONS(3310), + [anon_sym_do] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_goto] = ACTIONS(3310), + [anon_sym___try] = ACTIONS(3310), + [anon_sym___leave] = ACTIONS(3310), + [anon_sym_not] = ACTIONS(3310), + [anon_sym_compl] = ACTIONS(3310), + [anon_sym_DASH_DASH] = ACTIONS(3315), + [anon_sym_PLUS_PLUS] = ACTIONS(3315), + [anon_sym_sizeof] = ACTIONS(3310), + [anon_sym___alignof__] = ACTIONS(3310), + [anon_sym___alignof] = ACTIONS(3310), + [anon_sym__alignof] = ACTIONS(3310), + [anon_sym_alignof] = ACTIONS(3310), + [anon_sym__Alignof] = ACTIONS(3310), + [anon_sym_offsetof] = ACTIONS(3310), + [anon_sym__Generic] = ACTIONS(3310), + [anon_sym_typename] = ACTIONS(3310), + [anon_sym_asm] = ACTIONS(3310), + [anon_sym___asm__] = ACTIONS(3310), + [anon_sym___asm] = ACTIONS(3310), + [sym_number_literal] = ACTIONS(3315), + [anon_sym_L_SQUOTE] = ACTIONS(3315), + [anon_sym_u_SQUOTE] = ACTIONS(3315), + [anon_sym_U_SQUOTE] = ACTIONS(3315), + [anon_sym_u8_SQUOTE] = ACTIONS(3315), + [anon_sym_SQUOTE] = ACTIONS(3315), + [anon_sym_L_DQUOTE] = ACTIONS(3315), + [anon_sym_u_DQUOTE] = ACTIONS(3315), + [anon_sym_U_DQUOTE] = ACTIONS(3315), + [anon_sym_u8_DQUOTE] = ACTIONS(3315), + [anon_sym_DQUOTE] = ACTIONS(3315), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [anon_sym_NULL] = ACTIONS(3310), + [anon_sym_nullptr] = ACTIONS(3310), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3310), + [anon_sym_decltype] = ACTIONS(3310), + [anon_sym_explicit] = ACTIONS(3310), + [anon_sym_export] = ACTIONS(3310), + [anon_sym_module] = ACTIONS(3310), + [anon_sym_import] = ACTIONS(3310), + [anon_sym_template] = ACTIONS(3310), + [anon_sym_operator] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_delete] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_namespace] = ACTIONS(3310), + [anon_sym_static_assert] = ACTIONS(3310), + [anon_sym_concept] = ACTIONS(3310), + [anon_sym_co_return] = ACTIONS(3310), + [anon_sym_co_yield] = ACTIONS(3310), + [anon_sym_R_DQUOTE] = ACTIONS(3315), + [anon_sym_LR_DQUOTE] = ACTIONS(3315), + [anon_sym_uR_DQUOTE] = ACTIONS(3315), + [anon_sym_UR_DQUOTE] = ACTIONS(3315), + [anon_sym_u8R_DQUOTE] = ACTIONS(3315), + [anon_sym_co_await] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3310), + [anon_sym_requires] = ACTIONS(3310), + [anon_sym_CARET_CARET] = ACTIONS(3315), + [anon_sym_LBRACK_COLON] = ACTIONS(3315), + [sym_this] = ACTIONS(3310), }, - [STATE(713)] = { - [sym_identifier] = ACTIONS(3704), - [aux_sym_preproc_include_token1] = ACTIONS(3704), - [aux_sym_preproc_def_token1] = ACTIONS(3704), - [aux_sym_preproc_if_token1] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), - [sym_preproc_directive] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3706), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3706), - [anon_sym___extension__] = ACTIONS(3704), - [anon_sym_typedef] = ACTIONS(3704), - [anon_sym_virtual] = ACTIONS(3704), - [anon_sym_extern] = ACTIONS(3704), - [anon_sym___attribute__] = ACTIONS(3704), - [anon_sym___attribute] = ACTIONS(3704), - [anon_sym_using] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), - [anon_sym___declspec] = ACTIONS(3704), - [anon_sym___based] = ACTIONS(3704), - [anon_sym___cdecl] = ACTIONS(3704), - [anon_sym___clrcall] = ACTIONS(3704), - [anon_sym___stdcall] = ACTIONS(3704), - [anon_sym___fastcall] = ACTIONS(3704), - [anon_sym___thiscall] = ACTIONS(3704), - [anon_sym___vectorcall] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3706), - [anon_sym_RBRACE] = ACTIONS(3706), - [anon_sym_signed] = ACTIONS(3704), - [anon_sym_unsigned] = ACTIONS(3704), - [anon_sym_long] = ACTIONS(3704), - [anon_sym_short] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_static] = ACTIONS(3704), - [anon_sym_register] = ACTIONS(3704), - [anon_sym_inline] = ACTIONS(3704), - [anon_sym___inline] = ACTIONS(3704), - [anon_sym___inline__] = ACTIONS(3704), - [anon_sym___forceinline] = ACTIONS(3704), - [anon_sym_thread_local] = ACTIONS(3704), - [anon_sym___thread] = ACTIONS(3704), - [anon_sym_const] = ACTIONS(3704), - [anon_sym_constexpr] = ACTIONS(3704), - [anon_sym_volatile] = ACTIONS(3704), - [anon_sym_restrict] = ACTIONS(3704), - [anon_sym___restrict__] = ACTIONS(3704), - [anon_sym__Atomic] = ACTIONS(3704), - [anon_sym__Noreturn] = ACTIONS(3704), - [anon_sym_noreturn] = ACTIONS(3704), - [anon_sym__Nonnull] = ACTIONS(3704), - [anon_sym_mutable] = ACTIONS(3704), - [anon_sym_constinit] = ACTIONS(3704), - [anon_sym_consteval] = ACTIONS(3704), - [anon_sym_alignas] = ACTIONS(3704), - [anon_sym__Alignas] = ACTIONS(3704), - [sym_primitive_type] = ACTIONS(3704), - [anon_sym_enum] = ACTIONS(3704), - [anon_sym_class] = ACTIONS(3704), - [anon_sym_struct] = ACTIONS(3704), - [anon_sym_union] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_else] = ACTIONS(3704), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_case] = ACTIONS(3704), - [anon_sym_default] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_break] = ACTIONS(3704), - [anon_sym_continue] = ACTIONS(3704), - [anon_sym_goto] = ACTIONS(3704), - [anon_sym___try] = ACTIONS(3704), - [anon_sym___leave] = ACTIONS(3704), - [anon_sym_not] = ACTIONS(3704), - [anon_sym_compl] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_sizeof] = ACTIONS(3704), - [anon_sym___alignof__] = ACTIONS(3704), - [anon_sym___alignof] = ACTIONS(3704), - [anon_sym__alignof] = ACTIONS(3704), - [anon_sym_alignof] = ACTIONS(3704), - [anon_sym__Alignof] = ACTIONS(3704), - [anon_sym_offsetof] = ACTIONS(3704), - [anon_sym__Generic] = ACTIONS(3704), - [anon_sym_typename] = ACTIONS(3704), - [anon_sym_asm] = ACTIONS(3704), - [anon_sym___asm__] = ACTIONS(3704), - [anon_sym___asm] = ACTIONS(3704), - [sym_number_literal] = ACTIONS(3706), - [anon_sym_L_SQUOTE] = ACTIONS(3706), - [anon_sym_u_SQUOTE] = ACTIONS(3706), - [anon_sym_U_SQUOTE] = ACTIONS(3706), - [anon_sym_u8_SQUOTE] = ACTIONS(3706), - [anon_sym_SQUOTE] = ACTIONS(3706), - [anon_sym_L_DQUOTE] = ACTIONS(3706), - [anon_sym_u_DQUOTE] = ACTIONS(3706), - [anon_sym_U_DQUOTE] = ACTIONS(3706), - [anon_sym_u8_DQUOTE] = ACTIONS(3706), - [anon_sym_DQUOTE] = ACTIONS(3706), - [sym_true] = ACTIONS(3704), - [sym_false] = ACTIONS(3704), - [anon_sym_NULL] = ACTIONS(3704), - [anon_sym_nullptr] = ACTIONS(3704), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3704), - [anon_sym_decltype] = ACTIONS(3704), - [anon_sym_explicit] = ACTIONS(3704), - [anon_sym_template] = ACTIONS(3704), - [anon_sym_operator] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_delete] = ACTIONS(3704), - [anon_sym_throw] = ACTIONS(3704), - [anon_sym_namespace] = ACTIONS(3704), - [anon_sym_static_assert] = ACTIONS(3704), - [anon_sym_concept] = ACTIONS(3704), - [anon_sym_co_return] = ACTIONS(3704), - [anon_sym_co_yield] = ACTIONS(3704), - [anon_sym_R_DQUOTE] = ACTIONS(3706), - [anon_sym_LR_DQUOTE] = ACTIONS(3706), - [anon_sym_uR_DQUOTE] = ACTIONS(3706), - [anon_sym_UR_DQUOTE] = ACTIONS(3706), - [anon_sym_u8R_DQUOTE] = ACTIONS(3706), - [anon_sym_co_await] = ACTIONS(3704), - [anon_sym_new] = ACTIONS(3704), - [anon_sym_requires] = ACTIONS(3704), - [anon_sym_CARET_CARET] = ACTIONS(3706), - [anon_sym_LBRACK_COLON] = ACTIONS(3706), - [sym_this] = ACTIONS(3704), + [STATE(592)] = { + [sym_identifier] = ACTIONS(3658), + [aux_sym_preproc_include_token1] = ACTIONS(3658), + [aux_sym_preproc_def_token1] = ACTIONS(3658), + [aux_sym_preproc_if_token1] = ACTIONS(3658), + [aux_sym_preproc_if_token2] = ACTIONS(3658), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3658), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3658), + [sym_preproc_directive] = ACTIONS(3658), + [anon_sym_LPAREN2] = ACTIONS(3660), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_STAR] = ACTIONS(3660), + [anon_sym_AMP_AMP] = ACTIONS(3660), + [anon_sym_AMP] = ACTIONS(3658), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym___extension__] = ACTIONS(3658), + [anon_sym_typedef] = ACTIONS(3658), + [anon_sym_virtual] = ACTIONS(3658), + [anon_sym_extern] = ACTIONS(3658), + [anon_sym___attribute__] = ACTIONS(3658), + [anon_sym___attribute] = ACTIONS(3658), + [anon_sym_using] = ACTIONS(3658), + [anon_sym_COLON_COLON] = ACTIONS(3660), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3660), + [anon_sym___declspec] = ACTIONS(3658), + [anon_sym___based] = ACTIONS(3658), + [anon_sym___cdecl] = ACTIONS(3658), + [anon_sym___clrcall] = ACTIONS(3658), + [anon_sym___stdcall] = ACTIONS(3658), + [anon_sym___fastcall] = ACTIONS(3658), + [anon_sym___thiscall] = ACTIONS(3658), + [anon_sym___vectorcall] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_signed] = ACTIONS(3658), + [anon_sym_unsigned] = ACTIONS(3658), + [anon_sym_long] = ACTIONS(3658), + [anon_sym_short] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_register] = ACTIONS(3658), + [anon_sym_inline] = ACTIONS(3658), + [anon_sym___inline] = ACTIONS(3658), + [anon_sym___inline__] = ACTIONS(3658), + [anon_sym___forceinline] = ACTIONS(3658), + [anon_sym_thread_local] = ACTIONS(3658), + [anon_sym___thread] = ACTIONS(3658), + [anon_sym_const] = ACTIONS(3658), + [anon_sym_constexpr] = ACTIONS(3658), + [anon_sym_volatile] = ACTIONS(3658), + [anon_sym_restrict] = ACTIONS(3658), + [anon_sym___restrict__] = ACTIONS(3658), + [anon_sym__Atomic] = ACTIONS(3658), + [anon_sym__Noreturn] = ACTIONS(3658), + [anon_sym_noreturn] = ACTIONS(3658), + [anon_sym__Nonnull] = ACTIONS(3658), + [anon_sym_mutable] = ACTIONS(3658), + [anon_sym_constinit] = ACTIONS(3658), + [anon_sym_consteval] = ACTIONS(3658), + [anon_sym_alignas] = ACTIONS(3658), + [anon_sym__Alignas] = ACTIONS(3658), + [sym_primitive_type] = ACTIONS(3658), + [anon_sym_enum] = ACTIONS(3658), + [anon_sym_class] = ACTIONS(3658), + [anon_sym_struct] = ACTIONS(3658), + [anon_sym_union] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_else] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_case] = ACTIONS(3658), + [anon_sym_default] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_goto] = ACTIONS(3658), + [anon_sym___try] = ACTIONS(3658), + [anon_sym___leave] = ACTIONS(3658), + [anon_sym_not] = ACTIONS(3658), + [anon_sym_compl] = ACTIONS(3658), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_sizeof] = ACTIONS(3658), + [anon_sym___alignof__] = ACTIONS(3658), + [anon_sym___alignof] = ACTIONS(3658), + [anon_sym__alignof] = ACTIONS(3658), + [anon_sym_alignof] = ACTIONS(3658), + [anon_sym__Alignof] = ACTIONS(3658), + [anon_sym_offsetof] = ACTIONS(3658), + [anon_sym__Generic] = ACTIONS(3658), + [anon_sym_typename] = ACTIONS(3658), + [anon_sym_asm] = ACTIONS(3658), + [anon_sym___asm__] = ACTIONS(3658), + [anon_sym___asm] = ACTIONS(3658), + [sym_number_literal] = ACTIONS(3660), + [anon_sym_L_SQUOTE] = ACTIONS(3660), + [anon_sym_u_SQUOTE] = ACTIONS(3660), + [anon_sym_U_SQUOTE] = ACTIONS(3660), + [anon_sym_u8_SQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [anon_sym_L_DQUOTE] = ACTIONS(3660), + [anon_sym_u_DQUOTE] = ACTIONS(3660), + [anon_sym_U_DQUOTE] = ACTIONS(3660), + [anon_sym_u8_DQUOTE] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [sym_true] = ACTIONS(3658), + [sym_false] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_nullptr] = ACTIONS(3658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3658), + [anon_sym_decltype] = ACTIONS(3658), + [anon_sym_explicit] = ACTIONS(3658), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_module] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_template] = ACTIONS(3658), + [anon_sym_operator] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_delete] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_namespace] = ACTIONS(3658), + [anon_sym_static_assert] = ACTIONS(3658), + [anon_sym_concept] = ACTIONS(3658), + [anon_sym_co_return] = ACTIONS(3658), + [anon_sym_co_yield] = ACTIONS(3658), + [anon_sym_R_DQUOTE] = ACTIONS(3660), + [anon_sym_LR_DQUOTE] = ACTIONS(3660), + [anon_sym_uR_DQUOTE] = ACTIONS(3660), + [anon_sym_UR_DQUOTE] = ACTIONS(3660), + [anon_sym_u8R_DQUOTE] = ACTIONS(3660), + [anon_sym_co_await] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_requires] = ACTIONS(3658), + [anon_sym_CARET_CARET] = ACTIONS(3660), + [anon_sym_LBRACK_COLON] = ACTIONS(3660), + [sym_this] = ACTIONS(3658), }, - [STATE(714)] = { - [sym_identifier] = ACTIONS(3704), - [aux_sym_preproc_include_token1] = ACTIONS(3704), - [aux_sym_preproc_def_token1] = ACTIONS(3704), - [aux_sym_preproc_if_token1] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), - [sym_preproc_directive] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3706), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3706), - [anon_sym___extension__] = ACTIONS(3704), - [anon_sym_typedef] = ACTIONS(3704), - [anon_sym_virtual] = ACTIONS(3704), - [anon_sym_extern] = ACTIONS(3704), - [anon_sym___attribute__] = ACTIONS(3704), - [anon_sym___attribute] = ACTIONS(3704), - [anon_sym_using] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), - [anon_sym___declspec] = ACTIONS(3704), - [anon_sym___based] = ACTIONS(3704), - [anon_sym___cdecl] = ACTIONS(3704), - [anon_sym___clrcall] = ACTIONS(3704), - [anon_sym___stdcall] = ACTIONS(3704), - [anon_sym___fastcall] = ACTIONS(3704), - [anon_sym___thiscall] = ACTIONS(3704), - [anon_sym___vectorcall] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3706), - [anon_sym_RBRACE] = ACTIONS(3706), - [anon_sym_signed] = ACTIONS(3704), - [anon_sym_unsigned] = ACTIONS(3704), - [anon_sym_long] = ACTIONS(3704), - [anon_sym_short] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_static] = ACTIONS(3704), - [anon_sym_register] = ACTIONS(3704), - [anon_sym_inline] = ACTIONS(3704), - [anon_sym___inline] = ACTIONS(3704), - [anon_sym___inline__] = ACTIONS(3704), - [anon_sym___forceinline] = ACTIONS(3704), - [anon_sym_thread_local] = ACTIONS(3704), - [anon_sym___thread] = ACTIONS(3704), - [anon_sym_const] = ACTIONS(3704), - [anon_sym_constexpr] = ACTIONS(3704), - [anon_sym_volatile] = ACTIONS(3704), - [anon_sym_restrict] = ACTIONS(3704), - [anon_sym___restrict__] = ACTIONS(3704), - [anon_sym__Atomic] = ACTIONS(3704), - [anon_sym__Noreturn] = ACTIONS(3704), - [anon_sym_noreturn] = ACTIONS(3704), - [anon_sym__Nonnull] = ACTIONS(3704), - [anon_sym_mutable] = ACTIONS(3704), - [anon_sym_constinit] = ACTIONS(3704), - [anon_sym_consteval] = ACTIONS(3704), - [anon_sym_alignas] = ACTIONS(3704), - [anon_sym__Alignas] = ACTIONS(3704), - [sym_primitive_type] = ACTIONS(3704), - [anon_sym_enum] = ACTIONS(3704), - [anon_sym_class] = ACTIONS(3704), - [anon_sym_struct] = ACTIONS(3704), - [anon_sym_union] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_else] = ACTIONS(3704), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_case] = ACTIONS(3704), - [anon_sym_default] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_break] = ACTIONS(3704), - [anon_sym_continue] = ACTIONS(3704), - [anon_sym_goto] = ACTIONS(3704), - [anon_sym___try] = ACTIONS(3704), - [anon_sym___leave] = ACTIONS(3704), - [anon_sym_not] = ACTIONS(3704), - [anon_sym_compl] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_sizeof] = ACTIONS(3704), - [anon_sym___alignof__] = ACTIONS(3704), - [anon_sym___alignof] = ACTIONS(3704), - [anon_sym__alignof] = ACTIONS(3704), - [anon_sym_alignof] = ACTIONS(3704), - [anon_sym__Alignof] = ACTIONS(3704), - [anon_sym_offsetof] = ACTIONS(3704), - [anon_sym__Generic] = ACTIONS(3704), - [anon_sym_typename] = ACTIONS(3704), - [anon_sym_asm] = ACTIONS(3704), - [anon_sym___asm__] = ACTIONS(3704), - [anon_sym___asm] = ACTIONS(3704), - [sym_number_literal] = ACTIONS(3706), - [anon_sym_L_SQUOTE] = ACTIONS(3706), - [anon_sym_u_SQUOTE] = ACTIONS(3706), - [anon_sym_U_SQUOTE] = ACTIONS(3706), - [anon_sym_u8_SQUOTE] = ACTIONS(3706), - [anon_sym_SQUOTE] = ACTIONS(3706), - [anon_sym_L_DQUOTE] = ACTIONS(3706), - [anon_sym_u_DQUOTE] = ACTIONS(3706), - [anon_sym_U_DQUOTE] = ACTIONS(3706), - [anon_sym_u8_DQUOTE] = ACTIONS(3706), - [anon_sym_DQUOTE] = ACTIONS(3706), - [sym_true] = ACTIONS(3704), - [sym_false] = ACTIONS(3704), - [anon_sym_NULL] = ACTIONS(3704), - [anon_sym_nullptr] = ACTIONS(3704), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3704), - [anon_sym_decltype] = ACTIONS(3704), - [anon_sym_explicit] = ACTIONS(3704), - [anon_sym_template] = ACTIONS(3704), - [anon_sym_operator] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_delete] = ACTIONS(3704), - [anon_sym_throw] = ACTIONS(3704), - [anon_sym_namespace] = ACTIONS(3704), - [anon_sym_static_assert] = ACTIONS(3704), - [anon_sym_concept] = ACTIONS(3704), - [anon_sym_co_return] = ACTIONS(3704), - [anon_sym_co_yield] = ACTIONS(3704), - [anon_sym_R_DQUOTE] = ACTIONS(3706), - [anon_sym_LR_DQUOTE] = ACTIONS(3706), - [anon_sym_uR_DQUOTE] = ACTIONS(3706), - [anon_sym_UR_DQUOTE] = ACTIONS(3706), - [anon_sym_u8R_DQUOTE] = ACTIONS(3706), - [anon_sym_co_await] = ACTIONS(3704), - [anon_sym_new] = ACTIONS(3704), - [anon_sym_requires] = ACTIONS(3704), - [anon_sym_CARET_CARET] = ACTIONS(3706), - [anon_sym_LBRACK_COLON] = ACTIONS(3706), - [sym_this] = ACTIONS(3704), + [STATE(593)] = { + [sym_identifier] = ACTIONS(3662), + [aux_sym_preproc_include_token1] = ACTIONS(3662), + [aux_sym_preproc_def_token1] = ACTIONS(3662), + [aux_sym_preproc_if_token1] = ACTIONS(3662), + [aux_sym_preproc_if_token2] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), + [sym_preproc_directive] = ACTIONS(3662), + [anon_sym_LPAREN2] = ACTIONS(3664), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym___extension__] = ACTIONS(3662), + [anon_sym_typedef] = ACTIONS(3662), + [anon_sym_virtual] = ACTIONS(3662), + [anon_sym_extern] = ACTIONS(3662), + [anon_sym___attribute__] = ACTIONS(3662), + [anon_sym___attribute] = ACTIONS(3662), + [anon_sym_using] = ACTIONS(3662), + [anon_sym_COLON_COLON] = ACTIONS(3664), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), + [anon_sym___declspec] = ACTIONS(3662), + [anon_sym___based] = ACTIONS(3662), + [anon_sym___cdecl] = ACTIONS(3662), + [anon_sym___clrcall] = ACTIONS(3662), + [anon_sym___stdcall] = ACTIONS(3662), + [anon_sym___fastcall] = ACTIONS(3662), + [anon_sym___thiscall] = ACTIONS(3662), + [anon_sym___vectorcall] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_signed] = ACTIONS(3662), + [anon_sym_unsigned] = ACTIONS(3662), + [anon_sym_long] = ACTIONS(3662), + [anon_sym_short] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3662), + [anon_sym_static] = ACTIONS(3662), + [anon_sym_register] = ACTIONS(3662), + [anon_sym_inline] = ACTIONS(3662), + [anon_sym___inline] = ACTIONS(3662), + [anon_sym___inline__] = ACTIONS(3662), + [anon_sym___forceinline] = ACTIONS(3662), + [anon_sym_thread_local] = ACTIONS(3662), + [anon_sym___thread] = ACTIONS(3662), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_constexpr] = ACTIONS(3662), + [anon_sym_volatile] = ACTIONS(3662), + [anon_sym_restrict] = ACTIONS(3662), + [anon_sym___restrict__] = ACTIONS(3662), + [anon_sym__Atomic] = ACTIONS(3662), + [anon_sym__Noreturn] = ACTIONS(3662), + [anon_sym_noreturn] = ACTIONS(3662), + [anon_sym__Nonnull] = ACTIONS(3662), + [anon_sym_mutable] = ACTIONS(3662), + [anon_sym_constinit] = ACTIONS(3662), + [anon_sym_consteval] = ACTIONS(3662), + [anon_sym_alignas] = ACTIONS(3662), + [anon_sym__Alignas] = ACTIONS(3662), + [sym_primitive_type] = ACTIONS(3662), + [anon_sym_enum] = ACTIONS(3662), + [anon_sym_class] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(3662), + [anon_sym_union] = ACTIONS(3662), + [anon_sym_if] = ACTIONS(3662), + [anon_sym_else] = ACTIONS(3662), + [anon_sym_switch] = ACTIONS(3662), + [anon_sym_case] = ACTIONS(3662), + [anon_sym_default] = ACTIONS(3662), + [anon_sym_while] = ACTIONS(3662), + [anon_sym_do] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3662), + [anon_sym_return] = ACTIONS(3662), + [anon_sym_break] = ACTIONS(3662), + [anon_sym_continue] = ACTIONS(3662), + [anon_sym_goto] = ACTIONS(3662), + [anon_sym___try] = ACTIONS(3662), + [anon_sym___leave] = ACTIONS(3662), + [anon_sym_not] = ACTIONS(3662), + [anon_sym_compl] = ACTIONS(3662), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_sizeof] = ACTIONS(3662), + [anon_sym___alignof__] = ACTIONS(3662), + [anon_sym___alignof] = ACTIONS(3662), + [anon_sym__alignof] = ACTIONS(3662), + [anon_sym_alignof] = ACTIONS(3662), + [anon_sym__Alignof] = ACTIONS(3662), + [anon_sym_offsetof] = ACTIONS(3662), + [anon_sym__Generic] = ACTIONS(3662), + [anon_sym_typename] = ACTIONS(3662), + [anon_sym_asm] = ACTIONS(3662), + [anon_sym___asm__] = ACTIONS(3662), + [anon_sym___asm] = ACTIONS(3662), + [sym_number_literal] = ACTIONS(3664), + [anon_sym_L_SQUOTE] = ACTIONS(3664), + [anon_sym_u_SQUOTE] = ACTIONS(3664), + [anon_sym_U_SQUOTE] = ACTIONS(3664), + [anon_sym_u8_SQUOTE] = ACTIONS(3664), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_L_DQUOTE] = ACTIONS(3664), + [anon_sym_u_DQUOTE] = ACTIONS(3664), + [anon_sym_U_DQUOTE] = ACTIONS(3664), + [anon_sym_u8_DQUOTE] = ACTIONS(3664), + [anon_sym_DQUOTE] = ACTIONS(3664), + [sym_true] = ACTIONS(3662), + [sym_false] = ACTIONS(3662), + [anon_sym_NULL] = ACTIONS(3662), + [anon_sym_nullptr] = ACTIONS(3662), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3662), + [anon_sym_decltype] = ACTIONS(3662), + [anon_sym_explicit] = ACTIONS(3662), + [anon_sym_export] = ACTIONS(3662), + [anon_sym_module] = ACTIONS(3662), + [anon_sym_import] = ACTIONS(3662), + [anon_sym_template] = ACTIONS(3662), + [anon_sym_operator] = ACTIONS(3662), + [anon_sym_try] = ACTIONS(3662), + [anon_sym_delete] = ACTIONS(3662), + [anon_sym_throw] = ACTIONS(3662), + [anon_sym_namespace] = ACTIONS(3662), + [anon_sym_static_assert] = ACTIONS(3662), + [anon_sym_concept] = ACTIONS(3662), + [anon_sym_co_return] = ACTIONS(3662), + [anon_sym_co_yield] = ACTIONS(3662), + [anon_sym_R_DQUOTE] = ACTIONS(3664), + [anon_sym_LR_DQUOTE] = ACTIONS(3664), + [anon_sym_uR_DQUOTE] = ACTIONS(3664), + [anon_sym_UR_DQUOTE] = ACTIONS(3664), + [anon_sym_u8R_DQUOTE] = ACTIONS(3664), + [anon_sym_co_await] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3662), + [anon_sym_requires] = ACTIONS(3662), + [anon_sym_CARET_CARET] = ACTIONS(3664), + [anon_sym_LBRACK_COLON] = ACTIONS(3664), + [sym_this] = ACTIONS(3662), }, - [STATE(715)] = { - [ts_builtin_sym_end] = ACTIONS(4522), - [sym_identifier] = ACTIONS(4524), - [aux_sym_preproc_include_token1] = ACTIONS(4524), - [aux_sym_preproc_def_token1] = ACTIONS(4524), - [aux_sym_preproc_if_token1] = ACTIONS(4524), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4524), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4524), - [sym_preproc_directive] = ACTIONS(4524), - [anon_sym_LPAREN2] = ACTIONS(4522), - [anon_sym_BANG] = ACTIONS(4522), - [anon_sym_TILDE] = ACTIONS(4522), - [anon_sym_DASH] = ACTIONS(4524), - [anon_sym_PLUS] = ACTIONS(4524), - [anon_sym_STAR] = ACTIONS(4522), - [anon_sym_AMP_AMP] = ACTIONS(4522), - [anon_sym_AMP] = ACTIONS(4524), - [anon_sym_SEMI] = ACTIONS(4522), - [anon_sym___extension__] = ACTIONS(4524), - [anon_sym_typedef] = ACTIONS(4524), - [anon_sym_virtual] = ACTIONS(4524), - [anon_sym_extern] = ACTIONS(4524), - [anon_sym___attribute__] = ACTIONS(4524), - [anon_sym___attribute] = ACTIONS(4524), - [anon_sym_using] = ACTIONS(4524), - [anon_sym_COLON_COLON] = ACTIONS(4522), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4522), - [anon_sym___declspec] = ACTIONS(4524), - [anon_sym___based] = ACTIONS(4524), - [anon_sym___cdecl] = ACTIONS(4524), - [anon_sym___clrcall] = ACTIONS(4524), - [anon_sym___stdcall] = ACTIONS(4524), - [anon_sym___fastcall] = ACTIONS(4524), - [anon_sym___thiscall] = ACTIONS(4524), - [anon_sym___vectorcall] = ACTIONS(4524), - [anon_sym_LBRACE] = ACTIONS(4522), - [anon_sym_signed] = ACTIONS(4524), - [anon_sym_unsigned] = ACTIONS(4524), - [anon_sym_long] = ACTIONS(4524), - [anon_sym_short] = ACTIONS(4524), - [anon_sym_LBRACK] = ACTIONS(4524), - [anon_sym_static] = ACTIONS(4524), - [anon_sym_register] = ACTIONS(4524), - [anon_sym_inline] = ACTIONS(4524), - [anon_sym___inline] = ACTIONS(4524), - [anon_sym___inline__] = ACTIONS(4524), - [anon_sym___forceinline] = ACTIONS(4524), - [anon_sym_thread_local] = ACTIONS(4524), - [anon_sym___thread] = ACTIONS(4524), - [anon_sym_const] = ACTIONS(4524), - [anon_sym_constexpr] = ACTIONS(4524), - [anon_sym_volatile] = ACTIONS(4524), - [anon_sym_restrict] = ACTIONS(4524), - [anon_sym___restrict__] = ACTIONS(4524), - [anon_sym__Atomic] = ACTIONS(4524), - [anon_sym__Noreturn] = ACTIONS(4524), - [anon_sym_noreturn] = ACTIONS(4524), - [anon_sym__Nonnull] = ACTIONS(4524), - [anon_sym_mutable] = ACTIONS(4524), - [anon_sym_constinit] = ACTIONS(4524), - [anon_sym_consteval] = ACTIONS(4524), - [anon_sym_alignas] = ACTIONS(4524), - [anon_sym__Alignas] = ACTIONS(4524), - [sym_primitive_type] = ACTIONS(4524), - [anon_sym_enum] = ACTIONS(4524), - [anon_sym_class] = ACTIONS(4524), - [anon_sym_struct] = ACTIONS(4524), - [anon_sym_union] = ACTIONS(4524), - [anon_sym_if] = ACTIONS(4524), - [anon_sym_switch] = ACTIONS(4524), - [anon_sym_case] = ACTIONS(4524), - [anon_sym_default] = ACTIONS(4524), - [anon_sym_while] = ACTIONS(4524), - [anon_sym_do] = ACTIONS(4524), - [anon_sym_for] = ACTIONS(4524), - [anon_sym_return] = ACTIONS(4524), - [anon_sym_break] = ACTIONS(4524), - [anon_sym_continue] = ACTIONS(4524), - [anon_sym_goto] = ACTIONS(4524), - [anon_sym_not] = ACTIONS(4524), - [anon_sym_compl] = ACTIONS(4524), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_sizeof] = ACTIONS(4524), - [anon_sym___alignof__] = ACTIONS(4524), - [anon_sym___alignof] = ACTIONS(4524), - [anon_sym__alignof] = ACTIONS(4524), - [anon_sym_alignof] = ACTIONS(4524), - [anon_sym__Alignof] = ACTIONS(4524), - [anon_sym_offsetof] = ACTIONS(4524), - [anon_sym__Generic] = ACTIONS(4524), - [anon_sym_typename] = ACTIONS(4524), - [anon_sym_asm] = ACTIONS(4524), - [anon_sym___asm__] = ACTIONS(4524), - [anon_sym___asm] = ACTIONS(4524), - [sym_number_literal] = ACTIONS(4522), - [anon_sym_L_SQUOTE] = ACTIONS(4522), - [anon_sym_u_SQUOTE] = ACTIONS(4522), - [anon_sym_U_SQUOTE] = ACTIONS(4522), - [anon_sym_u8_SQUOTE] = ACTIONS(4522), - [anon_sym_SQUOTE] = ACTIONS(4522), - [anon_sym_L_DQUOTE] = ACTIONS(4522), - [anon_sym_u_DQUOTE] = ACTIONS(4522), - [anon_sym_U_DQUOTE] = ACTIONS(4522), - [anon_sym_u8_DQUOTE] = ACTIONS(4522), - [anon_sym_DQUOTE] = ACTIONS(4522), - [sym_true] = ACTIONS(4524), - [sym_false] = ACTIONS(4524), - [anon_sym_NULL] = ACTIONS(4524), - [anon_sym_nullptr] = ACTIONS(4524), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4524), - [anon_sym_decltype] = ACTIONS(4524), - [anon_sym_explicit] = ACTIONS(4524), - [anon_sym_export] = ACTIONS(4524), - [anon_sym_module] = ACTIONS(4524), - [anon_sym_import] = ACTIONS(4524), - [anon_sym_template] = ACTIONS(4524), - [anon_sym_operator] = ACTIONS(4524), - [anon_sym_try] = ACTIONS(4524), - [anon_sym_delete] = ACTIONS(4524), - [anon_sym_throw] = ACTIONS(4524), - [anon_sym_namespace] = ACTIONS(4524), - [anon_sym_static_assert] = ACTIONS(4524), - [anon_sym_concept] = ACTIONS(4524), - [anon_sym_co_return] = ACTIONS(4524), - [anon_sym_co_yield] = ACTIONS(4524), - [anon_sym_R_DQUOTE] = ACTIONS(4522), - [anon_sym_LR_DQUOTE] = ACTIONS(4522), - [anon_sym_uR_DQUOTE] = ACTIONS(4522), - [anon_sym_UR_DQUOTE] = ACTIONS(4522), - [anon_sym_u8R_DQUOTE] = ACTIONS(4522), - [anon_sym_co_await] = ACTIONS(4524), - [anon_sym_new] = ACTIONS(4524), - [anon_sym_requires] = ACTIONS(4524), - [anon_sym_CARET_CARET] = ACTIONS(4522), - [anon_sym_LBRACK_COLON] = ACTIONS(4522), - [sym_this] = ACTIONS(4524), + [STATE(594)] = { + [ts_builtin_sym_end] = ACTIONS(3578), + [sym_identifier] = ACTIONS(3576), + [aux_sym_preproc_include_token1] = ACTIONS(3576), + [aux_sym_preproc_def_token1] = ACTIONS(3576), + [aux_sym_preproc_if_token1] = ACTIONS(3576), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3576), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3576), + [sym_preproc_directive] = ACTIONS(3576), + [anon_sym_LPAREN2] = ACTIONS(3578), + [anon_sym_BANG] = ACTIONS(3578), + [anon_sym_TILDE] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_STAR] = ACTIONS(3578), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_AMP] = ACTIONS(3576), + [anon_sym_SEMI] = ACTIONS(3578), + [anon_sym___extension__] = ACTIONS(3576), + [anon_sym_typedef] = ACTIONS(3576), + [anon_sym_virtual] = ACTIONS(3576), + [anon_sym_extern] = ACTIONS(3576), + [anon_sym___attribute__] = ACTIONS(3576), + [anon_sym___attribute] = ACTIONS(3576), + [anon_sym_using] = ACTIONS(3576), + [anon_sym_COLON_COLON] = ACTIONS(3578), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3578), + [anon_sym___declspec] = ACTIONS(3576), + [anon_sym___based] = ACTIONS(3576), + [anon_sym___cdecl] = ACTIONS(3576), + [anon_sym___clrcall] = ACTIONS(3576), + [anon_sym___stdcall] = ACTIONS(3576), + [anon_sym___fastcall] = ACTIONS(3576), + [anon_sym___thiscall] = ACTIONS(3576), + [anon_sym___vectorcall] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_signed] = ACTIONS(3576), + [anon_sym_unsigned] = ACTIONS(3576), + [anon_sym_long] = ACTIONS(3576), + [anon_sym_short] = ACTIONS(3576), + [anon_sym_LBRACK] = ACTIONS(3576), + [anon_sym_static] = ACTIONS(3576), + [anon_sym_register] = ACTIONS(3576), + [anon_sym_inline] = ACTIONS(3576), + [anon_sym___inline] = ACTIONS(3576), + [anon_sym___inline__] = ACTIONS(3576), + [anon_sym___forceinline] = ACTIONS(3576), + [anon_sym_thread_local] = ACTIONS(3576), + [anon_sym___thread] = ACTIONS(3576), + [anon_sym_const] = ACTIONS(3576), + [anon_sym_constexpr] = ACTIONS(3576), + [anon_sym_volatile] = ACTIONS(3576), + [anon_sym_restrict] = ACTIONS(3576), + [anon_sym___restrict__] = ACTIONS(3576), + [anon_sym__Atomic] = ACTIONS(3576), + [anon_sym__Noreturn] = ACTIONS(3576), + [anon_sym_noreturn] = ACTIONS(3576), + [anon_sym__Nonnull] = ACTIONS(3576), + [anon_sym_mutable] = ACTIONS(3576), + [anon_sym_constinit] = ACTIONS(3576), + [anon_sym_consteval] = ACTIONS(3576), + [anon_sym_alignas] = ACTIONS(3576), + [anon_sym__Alignas] = ACTIONS(3576), + [sym_primitive_type] = ACTIONS(3576), + [anon_sym_enum] = ACTIONS(3576), + [anon_sym_class] = ACTIONS(3576), + [anon_sym_struct] = ACTIONS(3576), + [anon_sym_union] = ACTIONS(3576), + [anon_sym_if] = ACTIONS(3576), + [anon_sym_else] = ACTIONS(3576), + [anon_sym_switch] = ACTIONS(3576), + [anon_sym_case] = ACTIONS(3576), + [anon_sym_default] = ACTIONS(3576), + [anon_sym_while] = ACTIONS(3576), + [anon_sym_do] = ACTIONS(3576), + [anon_sym_for] = ACTIONS(3576), + [anon_sym_return] = ACTIONS(3576), + [anon_sym_break] = ACTIONS(3576), + [anon_sym_continue] = ACTIONS(3576), + [anon_sym_goto] = ACTIONS(3576), + [anon_sym___try] = ACTIONS(3576), + [anon_sym___leave] = ACTIONS(3576), + [anon_sym_not] = ACTIONS(3576), + [anon_sym_compl] = ACTIONS(3576), + [anon_sym_DASH_DASH] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3578), + [anon_sym_sizeof] = ACTIONS(3576), + [anon_sym___alignof__] = ACTIONS(3576), + [anon_sym___alignof] = ACTIONS(3576), + [anon_sym__alignof] = ACTIONS(3576), + [anon_sym_alignof] = ACTIONS(3576), + [anon_sym__Alignof] = ACTIONS(3576), + [anon_sym_offsetof] = ACTIONS(3576), + [anon_sym__Generic] = ACTIONS(3576), + [anon_sym_typename] = ACTIONS(3576), + [anon_sym_asm] = ACTIONS(3576), + [anon_sym___asm__] = ACTIONS(3576), + [anon_sym___asm] = ACTIONS(3576), + [sym_number_literal] = ACTIONS(3578), + [anon_sym_L_SQUOTE] = ACTIONS(3578), + [anon_sym_u_SQUOTE] = ACTIONS(3578), + [anon_sym_U_SQUOTE] = ACTIONS(3578), + [anon_sym_u8_SQUOTE] = ACTIONS(3578), + [anon_sym_SQUOTE] = ACTIONS(3578), + [anon_sym_L_DQUOTE] = ACTIONS(3578), + [anon_sym_u_DQUOTE] = ACTIONS(3578), + [anon_sym_U_DQUOTE] = ACTIONS(3578), + [anon_sym_u8_DQUOTE] = ACTIONS(3578), + [anon_sym_DQUOTE] = ACTIONS(3578), + [sym_true] = ACTIONS(3576), + [sym_false] = ACTIONS(3576), + [anon_sym_NULL] = ACTIONS(3576), + [anon_sym_nullptr] = ACTIONS(3576), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3576), + [anon_sym_decltype] = ACTIONS(3576), + [anon_sym_explicit] = ACTIONS(3576), + [anon_sym_export] = ACTIONS(3576), + [anon_sym_module] = ACTIONS(3576), + [anon_sym_import] = ACTIONS(3576), + [anon_sym_template] = ACTIONS(3576), + [anon_sym_operator] = ACTIONS(3576), + [anon_sym_try] = ACTIONS(3576), + [anon_sym_delete] = ACTIONS(3576), + [anon_sym_throw] = ACTIONS(3576), + [anon_sym_namespace] = ACTIONS(3576), + [anon_sym_static_assert] = ACTIONS(3576), + [anon_sym_concept] = ACTIONS(3576), + [anon_sym_co_return] = ACTIONS(3576), + [anon_sym_co_yield] = ACTIONS(3576), + [anon_sym_R_DQUOTE] = ACTIONS(3578), + [anon_sym_LR_DQUOTE] = ACTIONS(3578), + [anon_sym_uR_DQUOTE] = ACTIONS(3578), + [anon_sym_UR_DQUOTE] = ACTIONS(3578), + [anon_sym_u8R_DQUOTE] = ACTIONS(3578), + [anon_sym_co_await] = ACTIONS(3576), + [anon_sym_new] = ACTIONS(3576), + [anon_sym_requires] = ACTIONS(3576), + [anon_sym_CARET_CARET] = ACTIONS(3578), + [anon_sym_LBRACK_COLON] = ACTIONS(3578), + [sym_this] = ACTIONS(3576), }, - [STATE(716)] = { - [sym_identifier] = ACTIONS(3636), - [aux_sym_preproc_include_token1] = ACTIONS(3636), - [aux_sym_preproc_def_token1] = ACTIONS(3636), - [aux_sym_preproc_if_token1] = ACTIONS(3636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3636), - [sym_preproc_directive] = ACTIONS(3636), - [anon_sym_LPAREN2] = ACTIONS(3638), - [anon_sym_BANG] = ACTIONS(3638), - [anon_sym_TILDE] = ACTIONS(3638), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3638), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym___extension__] = ACTIONS(3636), - [anon_sym_typedef] = ACTIONS(3636), - [anon_sym_virtual] = ACTIONS(3636), - [anon_sym_extern] = ACTIONS(3636), - [anon_sym___attribute__] = ACTIONS(3636), - [anon_sym___attribute] = ACTIONS(3636), - [anon_sym_using] = ACTIONS(3636), - [anon_sym_COLON_COLON] = ACTIONS(3638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3638), - [anon_sym___declspec] = ACTIONS(3636), - [anon_sym___based] = ACTIONS(3636), - [anon_sym___cdecl] = ACTIONS(3636), - [anon_sym___clrcall] = ACTIONS(3636), - [anon_sym___stdcall] = ACTIONS(3636), - [anon_sym___fastcall] = ACTIONS(3636), - [anon_sym___thiscall] = ACTIONS(3636), - [anon_sym___vectorcall] = ACTIONS(3636), - [anon_sym_LBRACE] = ACTIONS(3638), - [anon_sym_RBRACE] = ACTIONS(3638), - [anon_sym_signed] = ACTIONS(3636), - [anon_sym_unsigned] = ACTIONS(3636), - [anon_sym_long] = ACTIONS(3636), - [anon_sym_short] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_static] = ACTIONS(3636), - [anon_sym_register] = ACTIONS(3636), - [anon_sym_inline] = ACTIONS(3636), - [anon_sym___inline] = ACTIONS(3636), - [anon_sym___inline__] = ACTIONS(3636), - [anon_sym___forceinline] = ACTIONS(3636), - [anon_sym_thread_local] = ACTIONS(3636), - [anon_sym___thread] = ACTIONS(3636), - [anon_sym_const] = ACTIONS(3636), - [anon_sym_constexpr] = ACTIONS(3636), - [anon_sym_volatile] = ACTIONS(3636), - [anon_sym_restrict] = ACTIONS(3636), - [anon_sym___restrict__] = ACTIONS(3636), - [anon_sym__Atomic] = ACTIONS(3636), - [anon_sym__Noreturn] = ACTIONS(3636), - [anon_sym_noreturn] = ACTIONS(3636), - [anon_sym__Nonnull] = ACTIONS(3636), - [anon_sym_mutable] = ACTIONS(3636), - [anon_sym_constinit] = ACTIONS(3636), - [anon_sym_consteval] = ACTIONS(3636), - [anon_sym_alignas] = ACTIONS(3636), - [anon_sym__Alignas] = ACTIONS(3636), - [sym_primitive_type] = ACTIONS(3636), - [anon_sym_enum] = ACTIONS(3636), - [anon_sym_class] = ACTIONS(3636), - [anon_sym_struct] = ACTIONS(3636), - [anon_sym_union] = ACTIONS(3636), - [anon_sym_if] = ACTIONS(3636), - [anon_sym_else] = ACTIONS(3636), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_case] = ACTIONS(3636), - [anon_sym_default] = ACTIONS(3636), - [anon_sym_while] = ACTIONS(3636), - [anon_sym_do] = ACTIONS(3636), - [anon_sym_for] = ACTIONS(3636), - [anon_sym_return] = ACTIONS(3636), - [anon_sym_break] = ACTIONS(3636), - [anon_sym_continue] = ACTIONS(3636), - [anon_sym_goto] = ACTIONS(3636), - [anon_sym___try] = ACTIONS(3636), - [anon_sym___leave] = ACTIONS(3636), - [anon_sym_not] = ACTIONS(3636), - [anon_sym_compl] = ACTIONS(3636), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_sizeof] = ACTIONS(3636), - [anon_sym___alignof__] = ACTIONS(3636), - [anon_sym___alignof] = ACTIONS(3636), - [anon_sym__alignof] = ACTIONS(3636), - [anon_sym_alignof] = ACTIONS(3636), - [anon_sym__Alignof] = ACTIONS(3636), - [anon_sym_offsetof] = ACTIONS(3636), - [anon_sym__Generic] = ACTIONS(3636), - [anon_sym_typename] = ACTIONS(3636), - [anon_sym_asm] = ACTIONS(3636), - [anon_sym___asm__] = ACTIONS(3636), - [anon_sym___asm] = ACTIONS(3636), - [sym_number_literal] = ACTIONS(3638), - [anon_sym_L_SQUOTE] = ACTIONS(3638), - [anon_sym_u_SQUOTE] = ACTIONS(3638), - [anon_sym_U_SQUOTE] = ACTIONS(3638), - [anon_sym_u8_SQUOTE] = ACTIONS(3638), - [anon_sym_SQUOTE] = ACTIONS(3638), - [anon_sym_L_DQUOTE] = ACTIONS(3638), - [anon_sym_u_DQUOTE] = ACTIONS(3638), - [anon_sym_U_DQUOTE] = ACTIONS(3638), - [anon_sym_u8_DQUOTE] = ACTIONS(3638), - [anon_sym_DQUOTE] = ACTIONS(3638), - [sym_true] = ACTIONS(3636), - [sym_false] = ACTIONS(3636), - [anon_sym_NULL] = ACTIONS(3636), - [anon_sym_nullptr] = ACTIONS(3636), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3636), - [anon_sym_decltype] = ACTIONS(3636), - [anon_sym_explicit] = ACTIONS(3636), - [anon_sym_template] = ACTIONS(3636), - [anon_sym_operator] = ACTIONS(3636), - [anon_sym_try] = ACTIONS(3636), - [anon_sym_delete] = ACTIONS(3636), - [anon_sym_throw] = ACTIONS(3636), - [anon_sym_namespace] = ACTIONS(3636), - [anon_sym_static_assert] = ACTIONS(3636), - [anon_sym_concept] = ACTIONS(3636), - [anon_sym_co_return] = ACTIONS(3636), - [anon_sym_co_yield] = ACTIONS(3636), - [anon_sym_R_DQUOTE] = ACTIONS(3638), - [anon_sym_LR_DQUOTE] = ACTIONS(3638), - [anon_sym_uR_DQUOTE] = ACTIONS(3638), - [anon_sym_UR_DQUOTE] = ACTIONS(3638), - [anon_sym_u8R_DQUOTE] = ACTIONS(3638), - [anon_sym_co_await] = ACTIONS(3636), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_requires] = ACTIONS(3636), - [anon_sym_CARET_CARET] = ACTIONS(3638), - [anon_sym_LBRACK_COLON] = ACTIONS(3638), - [sym_this] = ACTIONS(3636), + [STATE(595)] = { + [sym_identifier] = ACTIONS(3662), + [aux_sym_preproc_include_token1] = ACTIONS(3662), + [aux_sym_preproc_def_token1] = ACTIONS(3662), + [aux_sym_preproc_if_token1] = ACTIONS(3662), + [aux_sym_preproc_if_token2] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), + [sym_preproc_directive] = ACTIONS(3662), + [anon_sym_LPAREN2] = ACTIONS(3664), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym___extension__] = ACTIONS(3662), + [anon_sym_typedef] = ACTIONS(3662), + [anon_sym_virtual] = ACTIONS(3662), + [anon_sym_extern] = ACTIONS(3662), + [anon_sym___attribute__] = ACTIONS(3662), + [anon_sym___attribute] = ACTIONS(3662), + [anon_sym_using] = ACTIONS(3662), + [anon_sym_COLON_COLON] = ACTIONS(3664), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), + [anon_sym___declspec] = ACTIONS(3662), + [anon_sym___based] = ACTIONS(3662), + [anon_sym___cdecl] = ACTIONS(3662), + [anon_sym___clrcall] = ACTIONS(3662), + [anon_sym___stdcall] = ACTIONS(3662), + [anon_sym___fastcall] = ACTIONS(3662), + [anon_sym___thiscall] = ACTIONS(3662), + [anon_sym___vectorcall] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_signed] = ACTIONS(3662), + [anon_sym_unsigned] = ACTIONS(3662), + [anon_sym_long] = ACTIONS(3662), + [anon_sym_short] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3662), + [anon_sym_static] = ACTIONS(3662), + [anon_sym_register] = ACTIONS(3662), + [anon_sym_inline] = ACTIONS(3662), + [anon_sym___inline] = ACTIONS(3662), + [anon_sym___inline__] = ACTIONS(3662), + [anon_sym___forceinline] = ACTIONS(3662), + [anon_sym_thread_local] = ACTIONS(3662), + [anon_sym___thread] = ACTIONS(3662), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_constexpr] = ACTIONS(3662), + [anon_sym_volatile] = ACTIONS(3662), + [anon_sym_restrict] = ACTIONS(3662), + [anon_sym___restrict__] = ACTIONS(3662), + [anon_sym__Atomic] = ACTIONS(3662), + [anon_sym__Noreturn] = ACTIONS(3662), + [anon_sym_noreturn] = ACTIONS(3662), + [anon_sym__Nonnull] = ACTIONS(3662), + [anon_sym_mutable] = ACTIONS(3662), + [anon_sym_constinit] = ACTIONS(3662), + [anon_sym_consteval] = ACTIONS(3662), + [anon_sym_alignas] = ACTIONS(3662), + [anon_sym__Alignas] = ACTIONS(3662), + [sym_primitive_type] = ACTIONS(3662), + [anon_sym_enum] = ACTIONS(3662), + [anon_sym_class] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(3662), + [anon_sym_union] = ACTIONS(3662), + [anon_sym_if] = ACTIONS(3662), + [anon_sym_else] = ACTIONS(3662), + [anon_sym_switch] = ACTIONS(3662), + [anon_sym_case] = ACTIONS(3662), + [anon_sym_default] = ACTIONS(3662), + [anon_sym_while] = ACTIONS(3662), + [anon_sym_do] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3662), + [anon_sym_return] = ACTIONS(3662), + [anon_sym_break] = ACTIONS(3662), + [anon_sym_continue] = ACTIONS(3662), + [anon_sym_goto] = ACTIONS(3662), + [anon_sym___try] = ACTIONS(3662), + [anon_sym___leave] = ACTIONS(3662), + [anon_sym_not] = ACTIONS(3662), + [anon_sym_compl] = ACTIONS(3662), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_sizeof] = ACTIONS(3662), + [anon_sym___alignof__] = ACTIONS(3662), + [anon_sym___alignof] = ACTIONS(3662), + [anon_sym__alignof] = ACTIONS(3662), + [anon_sym_alignof] = ACTIONS(3662), + [anon_sym__Alignof] = ACTIONS(3662), + [anon_sym_offsetof] = ACTIONS(3662), + [anon_sym__Generic] = ACTIONS(3662), + [anon_sym_typename] = ACTIONS(3662), + [anon_sym_asm] = ACTIONS(3662), + [anon_sym___asm__] = ACTIONS(3662), + [anon_sym___asm] = ACTIONS(3662), + [sym_number_literal] = ACTIONS(3664), + [anon_sym_L_SQUOTE] = ACTIONS(3664), + [anon_sym_u_SQUOTE] = ACTIONS(3664), + [anon_sym_U_SQUOTE] = ACTIONS(3664), + [anon_sym_u8_SQUOTE] = ACTIONS(3664), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_L_DQUOTE] = ACTIONS(3664), + [anon_sym_u_DQUOTE] = ACTIONS(3664), + [anon_sym_U_DQUOTE] = ACTIONS(3664), + [anon_sym_u8_DQUOTE] = ACTIONS(3664), + [anon_sym_DQUOTE] = ACTIONS(3664), + [sym_true] = ACTIONS(3662), + [sym_false] = ACTIONS(3662), + [anon_sym_NULL] = ACTIONS(3662), + [anon_sym_nullptr] = ACTIONS(3662), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3662), + [anon_sym_decltype] = ACTIONS(3662), + [anon_sym_explicit] = ACTIONS(3662), + [anon_sym_export] = ACTIONS(3662), + [anon_sym_module] = ACTIONS(3662), + [anon_sym_import] = ACTIONS(3662), + [anon_sym_template] = ACTIONS(3662), + [anon_sym_operator] = ACTIONS(3662), + [anon_sym_try] = ACTIONS(3662), + [anon_sym_delete] = ACTIONS(3662), + [anon_sym_throw] = ACTIONS(3662), + [anon_sym_namespace] = ACTIONS(3662), + [anon_sym_static_assert] = ACTIONS(3662), + [anon_sym_concept] = ACTIONS(3662), + [anon_sym_co_return] = ACTIONS(3662), + [anon_sym_co_yield] = ACTIONS(3662), + [anon_sym_R_DQUOTE] = ACTIONS(3664), + [anon_sym_LR_DQUOTE] = ACTIONS(3664), + [anon_sym_uR_DQUOTE] = ACTIONS(3664), + [anon_sym_UR_DQUOTE] = ACTIONS(3664), + [anon_sym_u8R_DQUOTE] = ACTIONS(3664), + [anon_sym_co_await] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3662), + [anon_sym_requires] = ACTIONS(3662), + [anon_sym_CARET_CARET] = ACTIONS(3664), + [anon_sym_LBRACK_COLON] = ACTIONS(3664), + [sym_this] = ACTIONS(3662), }, - [STATE(717)] = { - [sym_identifier] = ACTIONS(3680), - [aux_sym_preproc_include_token1] = ACTIONS(3680), - [aux_sym_preproc_def_token1] = ACTIONS(3680), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3680), - [sym_preproc_directive] = ACTIONS(3680), - [anon_sym_LPAREN2] = ACTIONS(3682), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(3682), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym___extension__] = ACTIONS(3680), - [anon_sym_typedef] = ACTIONS(3680), - [anon_sym_virtual] = ACTIONS(3680), - [anon_sym_extern] = ACTIONS(3680), - [anon_sym___attribute__] = ACTIONS(3680), - [anon_sym___attribute] = ACTIONS(3680), - [anon_sym_using] = ACTIONS(3680), - [anon_sym_COLON_COLON] = ACTIONS(3682), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3682), - [anon_sym___declspec] = ACTIONS(3680), - [anon_sym___based] = ACTIONS(3680), - [anon_sym___cdecl] = ACTIONS(3680), - [anon_sym___clrcall] = ACTIONS(3680), - [anon_sym___stdcall] = ACTIONS(3680), - [anon_sym___fastcall] = ACTIONS(3680), - [anon_sym___thiscall] = ACTIONS(3680), - [anon_sym___vectorcall] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_signed] = ACTIONS(3680), - [anon_sym_unsigned] = ACTIONS(3680), - [anon_sym_long] = ACTIONS(3680), - [anon_sym_short] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3680), - [anon_sym_static] = ACTIONS(3680), - [anon_sym_register] = ACTIONS(3680), - [anon_sym_inline] = ACTIONS(3680), - [anon_sym___inline] = ACTIONS(3680), - [anon_sym___inline__] = ACTIONS(3680), - [anon_sym___forceinline] = ACTIONS(3680), - [anon_sym_thread_local] = ACTIONS(3680), - [anon_sym___thread] = ACTIONS(3680), - [anon_sym_const] = ACTIONS(3680), - [anon_sym_constexpr] = ACTIONS(3680), - [anon_sym_volatile] = ACTIONS(3680), - [anon_sym_restrict] = ACTIONS(3680), - [anon_sym___restrict__] = ACTIONS(3680), - [anon_sym__Atomic] = ACTIONS(3680), - [anon_sym__Noreturn] = ACTIONS(3680), - [anon_sym_noreturn] = ACTIONS(3680), - [anon_sym__Nonnull] = ACTIONS(3680), - [anon_sym_mutable] = ACTIONS(3680), - [anon_sym_constinit] = ACTIONS(3680), - [anon_sym_consteval] = ACTIONS(3680), - [anon_sym_alignas] = ACTIONS(3680), - [anon_sym__Alignas] = ACTIONS(3680), - [sym_primitive_type] = ACTIONS(3680), - [anon_sym_enum] = ACTIONS(3680), - [anon_sym_class] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(3680), - [anon_sym_union] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(3680), - [anon_sym_else] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_case] = ACTIONS(3680), - [anon_sym_default] = ACTIONS(3680), - [anon_sym_while] = ACTIONS(3680), - [anon_sym_do] = ACTIONS(3680), - [anon_sym_for] = ACTIONS(3680), - [anon_sym_return] = ACTIONS(3680), - [anon_sym_break] = ACTIONS(3680), - [anon_sym_continue] = ACTIONS(3680), - [anon_sym_goto] = ACTIONS(3680), - [anon_sym___try] = ACTIONS(3680), - [anon_sym___leave] = ACTIONS(3680), - [anon_sym_not] = ACTIONS(3680), - [anon_sym_compl] = ACTIONS(3680), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_sizeof] = ACTIONS(3680), - [anon_sym___alignof__] = ACTIONS(3680), - [anon_sym___alignof] = ACTIONS(3680), - [anon_sym__alignof] = ACTIONS(3680), - [anon_sym_alignof] = ACTIONS(3680), - [anon_sym__Alignof] = ACTIONS(3680), - [anon_sym_offsetof] = ACTIONS(3680), - [anon_sym__Generic] = ACTIONS(3680), - [anon_sym_typename] = ACTIONS(3680), - [anon_sym_asm] = ACTIONS(3680), - [anon_sym___asm__] = ACTIONS(3680), - [anon_sym___asm] = ACTIONS(3680), - [sym_number_literal] = ACTIONS(3682), - [anon_sym_L_SQUOTE] = ACTIONS(3682), - [anon_sym_u_SQUOTE] = ACTIONS(3682), - [anon_sym_U_SQUOTE] = ACTIONS(3682), - [anon_sym_u8_SQUOTE] = ACTIONS(3682), - [anon_sym_SQUOTE] = ACTIONS(3682), - [anon_sym_L_DQUOTE] = ACTIONS(3682), - [anon_sym_u_DQUOTE] = ACTIONS(3682), - [anon_sym_U_DQUOTE] = ACTIONS(3682), - [anon_sym_u8_DQUOTE] = ACTIONS(3682), - [anon_sym_DQUOTE] = ACTIONS(3682), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [anon_sym_NULL] = ACTIONS(3680), - [anon_sym_nullptr] = ACTIONS(3680), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3680), - [anon_sym_decltype] = ACTIONS(3680), - [anon_sym_explicit] = ACTIONS(3680), - [anon_sym_template] = ACTIONS(3680), - [anon_sym_operator] = ACTIONS(3680), - [anon_sym_try] = ACTIONS(3680), - [anon_sym_delete] = ACTIONS(3680), - [anon_sym_throw] = ACTIONS(3680), - [anon_sym_namespace] = ACTIONS(3680), - [anon_sym_static_assert] = ACTIONS(3680), - [anon_sym_concept] = ACTIONS(3680), - [anon_sym_co_return] = ACTIONS(3680), - [anon_sym_co_yield] = ACTIONS(3680), - [anon_sym_R_DQUOTE] = ACTIONS(3682), - [anon_sym_LR_DQUOTE] = ACTIONS(3682), - [anon_sym_uR_DQUOTE] = ACTIONS(3682), - [anon_sym_UR_DQUOTE] = ACTIONS(3682), - [anon_sym_u8R_DQUOTE] = ACTIONS(3682), - [anon_sym_co_await] = ACTIONS(3680), - [anon_sym_new] = ACTIONS(3680), - [anon_sym_requires] = ACTIONS(3680), - [anon_sym_CARET_CARET] = ACTIONS(3682), - [anon_sym_LBRACK_COLON] = ACTIONS(3682), - [sym_this] = ACTIONS(3680), + [STATE(596)] = { + [ts_builtin_sym_end] = ACTIONS(3644), + [sym_identifier] = ACTIONS(3642), + [aux_sym_preproc_include_token1] = ACTIONS(3642), + [aux_sym_preproc_def_token1] = ACTIONS(3642), + [aux_sym_preproc_if_token1] = ACTIONS(3642), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3642), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3642), + [sym_preproc_directive] = ACTIONS(3642), + [anon_sym_LPAREN2] = ACTIONS(3644), + [anon_sym_BANG] = ACTIONS(3644), + [anon_sym_TILDE] = ACTIONS(3644), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(3644), + [anon_sym_AMP_AMP] = ACTIONS(3644), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym___extension__] = ACTIONS(3642), + [anon_sym_typedef] = ACTIONS(3642), + [anon_sym_virtual] = ACTIONS(3642), + [anon_sym_extern] = ACTIONS(3642), + [anon_sym___attribute__] = ACTIONS(3642), + [anon_sym___attribute] = ACTIONS(3642), + [anon_sym_using] = ACTIONS(3642), + [anon_sym_COLON_COLON] = ACTIONS(3644), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3644), + [anon_sym___declspec] = ACTIONS(3642), + [anon_sym___based] = ACTIONS(3642), + [anon_sym___cdecl] = ACTIONS(3642), + [anon_sym___clrcall] = ACTIONS(3642), + [anon_sym___stdcall] = ACTIONS(3642), + [anon_sym___fastcall] = ACTIONS(3642), + [anon_sym___thiscall] = ACTIONS(3642), + [anon_sym___vectorcall] = ACTIONS(3642), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_signed] = ACTIONS(3642), + [anon_sym_unsigned] = ACTIONS(3642), + [anon_sym_long] = ACTIONS(3642), + [anon_sym_short] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_static] = ACTIONS(3642), + [anon_sym_register] = ACTIONS(3642), + [anon_sym_inline] = ACTIONS(3642), + [anon_sym___inline] = ACTIONS(3642), + [anon_sym___inline__] = ACTIONS(3642), + [anon_sym___forceinline] = ACTIONS(3642), + [anon_sym_thread_local] = ACTIONS(3642), + [anon_sym___thread] = ACTIONS(3642), + [anon_sym_const] = ACTIONS(3642), + [anon_sym_constexpr] = ACTIONS(3642), + [anon_sym_volatile] = ACTIONS(3642), + [anon_sym_restrict] = ACTIONS(3642), + [anon_sym___restrict__] = ACTIONS(3642), + [anon_sym__Atomic] = ACTIONS(3642), + [anon_sym__Noreturn] = ACTIONS(3642), + [anon_sym_noreturn] = ACTIONS(3642), + [anon_sym__Nonnull] = ACTIONS(3642), + [anon_sym_mutable] = ACTIONS(3642), + [anon_sym_constinit] = ACTIONS(3642), + [anon_sym_consteval] = ACTIONS(3642), + [anon_sym_alignas] = ACTIONS(3642), + [anon_sym__Alignas] = ACTIONS(3642), + [sym_primitive_type] = ACTIONS(3642), + [anon_sym_enum] = ACTIONS(3642), + [anon_sym_class] = ACTIONS(3642), + [anon_sym_struct] = ACTIONS(3642), + [anon_sym_union] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_else] = ACTIONS(3642), + [anon_sym_switch] = ACTIONS(3642), + [anon_sym_case] = ACTIONS(3642), + [anon_sym_default] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_break] = ACTIONS(3642), + [anon_sym_continue] = ACTIONS(3642), + [anon_sym_goto] = ACTIONS(3642), + [anon_sym___try] = ACTIONS(3642), + [anon_sym___leave] = ACTIONS(3642), + [anon_sym_not] = ACTIONS(3642), + [anon_sym_compl] = ACTIONS(3642), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_sizeof] = ACTIONS(3642), + [anon_sym___alignof__] = ACTIONS(3642), + [anon_sym___alignof] = ACTIONS(3642), + [anon_sym__alignof] = ACTIONS(3642), + [anon_sym_alignof] = ACTIONS(3642), + [anon_sym__Alignof] = ACTIONS(3642), + [anon_sym_offsetof] = ACTIONS(3642), + [anon_sym__Generic] = ACTIONS(3642), + [anon_sym_typename] = ACTIONS(3642), + [anon_sym_asm] = ACTIONS(3642), + [anon_sym___asm__] = ACTIONS(3642), + [anon_sym___asm] = ACTIONS(3642), + [sym_number_literal] = ACTIONS(3644), + [anon_sym_L_SQUOTE] = ACTIONS(3644), + [anon_sym_u_SQUOTE] = ACTIONS(3644), + [anon_sym_U_SQUOTE] = ACTIONS(3644), + [anon_sym_u8_SQUOTE] = ACTIONS(3644), + [anon_sym_SQUOTE] = ACTIONS(3644), + [anon_sym_L_DQUOTE] = ACTIONS(3644), + [anon_sym_u_DQUOTE] = ACTIONS(3644), + [anon_sym_U_DQUOTE] = ACTIONS(3644), + [anon_sym_u8_DQUOTE] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(3644), + [sym_true] = ACTIONS(3642), + [sym_false] = ACTIONS(3642), + [anon_sym_NULL] = ACTIONS(3642), + [anon_sym_nullptr] = ACTIONS(3642), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3642), + [anon_sym_decltype] = ACTIONS(3642), + [anon_sym_explicit] = ACTIONS(3642), + [anon_sym_export] = ACTIONS(3642), + [anon_sym_module] = ACTIONS(3642), + [anon_sym_import] = ACTIONS(3642), + [anon_sym_template] = ACTIONS(3642), + [anon_sym_operator] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_delete] = ACTIONS(3642), + [anon_sym_throw] = ACTIONS(3642), + [anon_sym_namespace] = ACTIONS(3642), + [anon_sym_static_assert] = ACTIONS(3642), + [anon_sym_concept] = ACTIONS(3642), + [anon_sym_co_return] = ACTIONS(3642), + [anon_sym_co_yield] = ACTIONS(3642), + [anon_sym_R_DQUOTE] = ACTIONS(3644), + [anon_sym_LR_DQUOTE] = ACTIONS(3644), + [anon_sym_uR_DQUOTE] = ACTIONS(3644), + [anon_sym_UR_DQUOTE] = ACTIONS(3644), + [anon_sym_u8R_DQUOTE] = ACTIONS(3644), + [anon_sym_co_await] = ACTIONS(3642), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_requires] = ACTIONS(3642), + [anon_sym_CARET_CARET] = ACTIONS(3644), + [anon_sym_LBRACK_COLON] = ACTIONS(3644), + [sym_this] = ACTIONS(3642), }, - [STATE(718)] = { - [sym_identifier] = ACTIONS(3708), - [aux_sym_preproc_include_token1] = ACTIONS(3708), - [aux_sym_preproc_def_token1] = ACTIONS(3708), - [aux_sym_preproc_if_token1] = ACTIONS(3708), - [aux_sym_preproc_if_token2] = ACTIONS(3708), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3708), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3708), - [sym_preproc_directive] = ACTIONS(3708), - [anon_sym_LPAREN2] = ACTIONS(3710), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3708), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_AMP_AMP] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3708), - [anon_sym_SEMI] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3708), - [anon_sym_typedef] = ACTIONS(3708), - [anon_sym_virtual] = ACTIONS(3708), - [anon_sym_extern] = ACTIONS(3708), - [anon_sym___attribute__] = ACTIONS(3708), - [anon_sym___attribute] = ACTIONS(3708), - [anon_sym_using] = ACTIONS(3708), - [anon_sym_COLON_COLON] = ACTIONS(3710), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3710), - [anon_sym___declspec] = ACTIONS(3708), - [anon_sym___based] = ACTIONS(3708), - [anon_sym___cdecl] = ACTIONS(3708), - [anon_sym___clrcall] = ACTIONS(3708), - [anon_sym___stdcall] = ACTIONS(3708), - [anon_sym___fastcall] = ACTIONS(3708), - [anon_sym___thiscall] = ACTIONS(3708), - [anon_sym___vectorcall] = ACTIONS(3708), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_signed] = ACTIONS(3708), - [anon_sym_unsigned] = ACTIONS(3708), - [anon_sym_long] = ACTIONS(3708), - [anon_sym_short] = ACTIONS(3708), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_static] = ACTIONS(3708), - [anon_sym_register] = ACTIONS(3708), - [anon_sym_inline] = ACTIONS(3708), - [anon_sym___inline] = ACTIONS(3708), - [anon_sym___inline__] = ACTIONS(3708), - [anon_sym___forceinline] = ACTIONS(3708), - [anon_sym_thread_local] = ACTIONS(3708), - [anon_sym___thread] = ACTIONS(3708), - [anon_sym_const] = ACTIONS(3708), - [anon_sym_constexpr] = ACTIONS(3708), - [anon_sym_volatile] = ACTIONS(3708), - [anon_sym_restrict] = ACTIONS(3708), - [anon_sym___restrict__] = ACTIONS(3708), - [anon_sym__Atomic] = ACTIONS(3708), - [anon_sym__Noreturn] = ACTIONS(3708), - [anon_sym_noreturn] = ACTIONS(3708), - [anon_sym__Nonnull] = ACTIONS(3708), - [anon_sym_mutable] = ACTIONS(3708), - [anon_sym_constinit] = ACTIONS(3708), - [anon_sym_consteval] = ACTIONS(3708), - [anon_sym_alignas] = ACTIONS(3708), - [anon_sym__Alignas] = ACTIONS(3708), - [sym_primitive_type] = ACTIONS(3708), - [anon_sym_enum] = ACTIONS(3708), - [anon_sym_class] = ACTIONS(3708), - [anon_sym_struct] = ACTIONS(3708), - [anon_sym_union] = ACTIONS(3708), - [anon_sym_if] = ACTIONS(3708), - [anon_sym_else] = ACTIONS(3708), - [anon_sym_switch] = ACTIONS(3708), - [anon_sym_case] = ACTIONS(3708), - [anon_sym_default] = ACTIONS(3708), - [anon_sym_while] = ACTIONS(3708), - [anon_sym_do] = ACTIONS(3708), - [anon_sym_for] = ACTIONS(3708), - [anon_sym_return] = ACTIONS(3708), - [anon_sym_break] = ACTIONS(3708), - [anon_sym_continue] = ACTIONS(3708), - [anon_sym_goto] = ACTIONS(3708), - [anon_sym___try] = ACTIONS(3708), - [anon_sym___leave] = ACTIONS(3708), - [anon_sym_not] = ACTIONS(3708), - [anon_sym_compl] = ACTIONS(3708), - [anon_sym_DASH_DASH] = ACTIONS(3710), - [anon_sym_PLUS_PLUS] = ACTIONS(3710), - [anon_sym_sizeof] = ACTIONS(3708), - [anon_sym___alignof__] = ACTIONS(3708), - [anon_sym___alignof] = ACTIONS(3708), - [anon_sym__alignof] = ACTIONS(3708), - [anon_sym_alignof] = ACTIONS(3708), - [anon_sym__Alignof] = ACTIONS(3708), - [anon_sym_offsetof] = ACTIONS(3708), - [anon_sym__Generic] = ACTIONS(3708), - [anon_sym_typename] = ACTIONS(3708), - [anon_sym_asm] = ACTIONS(3708), - [anon_sym___asm__] = ACTIONS(3708), - [anon_sym___asm] = ACTIONS(3708), - [sym_number_literal] = ACTIONS(3710), - [anon_sym_L_SQUOTE] = ACTIONS(3710), - [anon_sym_u_SQUOTE] = ACTIONS(3710), - [anon_sym_U_SQUOTE] = ACTIONS(3710), - [anon_sym_u8_SQUOTE] = ACTIONS(3710), - [anon_sym_SQUOTE] = ACTIONS(3710), - [anon_sym_L_DQUOTE] = ACTIONS(3710), - [anon_sym_u_DQUOTE] = ACTIONS(3710), - [anon_sym_U_DQUOTE] = ACTIONS(3710), - [anon_sym_u8_DQUOTE] = ACTIONS(3710), - [anon_sym_DQUOTE] = ACTIONS(3710), - [sym_true] = ACTIONS(3708), - [sym_false] = ACTIONS(3708), - [anon_sym_NULL] = ACTIONS(3708), - [anon_sym_nullptr] = ACTIONS(3708), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3708), - [anon_sym_decltype] = ACTIONS(3708), - [anon_sym_explicit] = ACTIONS(3708), - [anon_sym_template] = ACTIONS(3708), - [anon_sym_operator] = ACTIONS(3708), - [anon_sym_try] = ACTIONS(3708), - [anon_sym_delete] = ACTIONS(3708), - [anon_sym_throw] = ACTIONS(3708), - [anon_sym_namespace] = ACTIONS(3708), - [anon_sym_static_assert] = ACTIONS(3708), - [anon_sym_concept] = ACTIONS(3708), - [anon_sym_co_return] = ACTIONS(3708), - [anon_sym_co_yield] = ACTIONS(3708), - [anon_sym_R_DQUOTE] = ACTIONS(3710), - [anon_sym_LR_DQUOTE] = ACTIONS(3710), - [anon_sym_uR_DQUOTE] = ACTIONS(3710), - [anon_sym_UR_DQUOTE] = ACTIONS(3710), - [anon_sym_u8R_DQUOTE] = ACTIONS(3710), - [anon_sym_co_await] = ACTIONS(3708), - [anon_sym_new] = ACTIONS(3708), - [anon_sym_requires] = ACTIONS(3708), - [anon_sym_CARET_CARET] = ACTIONS(3710), - [anon_sym_LBRACK_COLON] = ACTIONS(3710), - [sym_this] = ACTIONS(3708), + [STATE(597)] = { + [ts_builtin_sym_end] = ACTIONS(3616), + [sym_identifier] = ACTIONS(3614), + [aux_sym_preproc_include_token1] = ACTIONS(3614), + [aux_sym_preproc_def_token1] = ACTIONS(3614), + [aux_sym_preproc_if_token1] = ACTIONS(3614), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3614), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3614), + [sym_preproc_directive] = ACTIONS(3614), + [anon_sym_LPAREN2] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3614), + [anon_sym_STAR] = ACTIONS(3616), + [anon_sym_AMP_AMP] = ACTIONS(3616), + [anon_sym_AMP] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3616), + [anon_sym___extension__] = ACTIONS(3614), + [anon_sym_typedef] = ACTIONS(3614), + [anon_sym_virtual] = ACTIONS(3614), + [anon_sym_extern] = ACTIONS(3614), + [anon_sym___attribute__] = ACTIONS(3614), + [anon_sym___attribute] = ACTIONS(3614), + [anon_sym_using] = ACTIONS(3614), + [anon_sym_COLON_COLON] = ACTIONS(3616), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3616), + [anon_sym___declspec] = ACTIONS(3614), + [anon_sym___based] = ACTIONS(3614), + [anon_sym___cdecl] = ACTIONS(3614), + [anon_sym___clrcall] = ACTIONS(3614), + [anon_sym___stdcall] = ACTIONS(3614), + [anon_sym___fastcall] = ACTIONS(3614), + [anon_sym___thiscall] = ACTIONS(3614), + [anon_sym___vectorcall] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_signed] = ACTIONS(3614), + [anon_sym_unsigned] = ACTIONS(3614), + [anon_sym_long] = ACTIONS(3614), + [anon_sym_short] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3614), + [anon_sym_static] = ACTIONS(3614), + [anon_sym_register] = ACTIONS(3614), + [anon_sym_inline] = ACTIONS(3614), + [anon_sym___inline] = ACTIONS(3614), + [anon_sym___inline__] = ACTIONS(3614), + [anon_sym___forceinline] = ACTIONS(3614), + [anon_sym_thread_local] = ACTIONS(3614), + [anon_sym___thread] = ACTIONS(3614), + [anon_sym_const] = ACTIONS(3614), + [anon_sym_constexpr] = ACTIONS(3614), + [anon_sym_volatile] = ACTIONS(3614), + [anon_sym_restrict] = ACTIONS(3614), + [anon_sym___restrict__] = ACTIONS(3614), + [anon_sym__Atomic] = ACTIONS(3614), + [anon_sym__Noreturn] = ACTIONS(3614), + [anon_sym_noreturn] = ACTIONS(3614), + [anon_sym__Nonnull] = ACTIONS(3614), + [anon_sym_mutable] = ACTIONS(3614), + [anon_sym_constinit] = ACTIONS(3614), + [anon_sym_consteval] = ACTIONS(3614), + [anon_sym_alignas] = ACTIONS(3614), + [anon_sym__Alignas] = ACTIONS(3614), + [sym_primitive_type] = ACTIONS(3614), + [anon_sym_enum] = ACTIONS(3614), + [anon_sym_class] = ACTIONS(3614), + [anon_sym_struct] = ACTIONS(3614), + [anon_sym_union] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(3614), + [anon_sym_else] = ACTIONS(3614), + [anon_sym_switch] = ACTIONS(3614), + [anon_sym_case] = ACTIONS(3614), + [anon_sym_default] = ACTIONS(3614), + [anon_sym_while] = ACTIONS(3614), + [anon_sym_do] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3614), + [anon_sym_return] = ACTIONS(3614), + [anon_sym_break] = ACTIONS(3614), + [anon_sym_continue] = ACTIONS(3614), + [anon_sym_goto] = ACTIONS(3614), + [anon_sym___try] = ACTIONS(3614), + [anon_sym___leave] = ACTIONS(3614), + [anon_sym_not] = ACTIONS(3614), + [anon_sym_compl] = ACTIONS(3614), + [anon_sym_DASH_DASH] = ACTIONS(3616), + [anon_sym_PLUS_PLUS] = ACTIONS(3616), + [anon_sym_sizeof] = ACTIONS(3614), + [anon_sym___alignof__] = ACTIONS(3614), + [anon_sym___alignof] = ACTIONS(3614), + [anon_sym__alignof] = ACTIONS(3614), + [anon_sym_alignof] = ACTIONS(3614), + [anon_sym__Alignof] = ACTIONS(3614), + [anon_sym_offsetof] = ACTIONS(3614), + [anon_sym__Generic] = ACTIONS(3614), + [anon_sym_typename] = ACTIONS(3614), + [anon_sym_asm] = ACTIONS(3614), + [anon_sym___asm__] = ACTIONS(3614), + [anon_sym___asm] = ACTIONS(3614), + [sym_number_literal] = ACTIONS(3616), + [anon_sym_L_SQUOTE] = ACTIONS(3616), + [anon_sym_u_SQUOTE] = ACTIONS(3616), + [anon_sym_U_SQUOTE] = ACTIONS(3616), + [anon_sym_u8_SQUOTE] = ACTIONS(3616), + [anon_sym_SQUOTE] = ACTIONS(3616), + [anon_sym_L_DQUOTE] = ACTIONS(3616), + [anon_sym_u_DQUOTE] = ACTIONS(3616), + [anon_sym_U_DQUOTE] = ACTIONS(3616), + [anon_sym_u8_DQUOTE] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [sym_true] = ACTIONS(3614), + [sym_false] = ACTIONS(3614), + [anon_sym_NULL] = ACTIONS(3614), + [anon_sym_nullptr] = ACTIONS(3614), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3614), + [anon_sym_decltype] = ACTIONS(3614), + [anon_sym_explicit] = ACTIONS(3614), + [anon_sym_export] = ACTIONS(3614), + [anon_sym_module] = ACTIONS(3614), + [anon_sym_import] = ACTIONS(3614), + [anon_sym_template] = ACTIONS(3614), + [anon_sym_operator] = ACTIONS(3614), + [anon_sym_try] = ACTIONS(3614), + [anon_sym_delete] = ACTIONS(3614), + [anon_sym_throw] = ACTIONS(3614), + [anon_sym_namespace] = ACTIONS(3614), + [anon_sym_static_assert] = ACTIONS(3614), + [anon_sym_concept] = ACTIONS(3614), + [anon_sym_co_return] = ACTIONS(3614), + [anon_sym_co_yield] = ACTIONS(3614), + [anon_sym_R_DQUOTE] = ACTIONS(3616), + [anon_sym_LR_DQUOTE] = ACTIONS(3616), + [anon_sym_uR_DQUOTE] = ACTIONS(3616), + [anon_sym_UR_DQUOTE] = ACTIONS(3616), + [anon_sym_u8R_DQUOTE] = ACTIONS(3616), + [anon_sym_co_await] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3614), + [anon_sym_requires] = ACTIONS(3614), + [anon_sym_CARET_CARET] = ACTIONS(3616), + [anon_sym_LBRACK_COLON] = ACTIONS(3616), + [sym_this] = ACTIONS(3614), }, - [STATE(719)] = { - [ts_builtin_sym_end] = ACTIONS(4109), - [sym_identifier] = ACTIONS(4107), - [aux_sym_preproc_include_token1] = ACTIONS(4107), - [aux_sym_preproc_def_token1] = ACTIONS(4107), - [aux_sym_preproc_if_token1] = ACTIONS(4107), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4107), - [sym_preproc_directive] = ACTIONS(4107), - [anon_sym_LPAREN2] = ACTIONS(4109), - [anon_sym_BANG] = ACTIONS(4109), - [anon_sym_TILDE] = ACTIONS(4109), - [anon_sym_DASH] = ACTIONS(4107), - [anon_sym_PLUS] = ACTIONS(4107), - [anon_sym_STAR] = ACTIONS(4109), - [anon_sym_AMP_AMP] = ACTIONS(4109), - [anon_sym_AMP] = ACTIONS(4107), - [anon_sym_SEMI] = ACTIONS(4109), - [anon_sym___extension__] = ACTIONS(4107), - [anon_sym_typedef] = ACTIONS(4107), - [anon_sym_virtual] = ACTIONS(4107), - [anon_sym_extern] = ACTIONS(4107), - [anon_sym___attribute__] = ACTIONS(4107), - [anon_sym___attribute] = ACTIONS(4107), - [anon_sym_using] = ACTIONS(4107), - [anon_sym_COLON_COLON] = ACTIONS(4109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4109), - [anon_sym___declspec] = ACTIONS(4107), - [anon_sym___based] = ACTIONS(4107), - [anon_sym___cdecl] = ACTIONS(4107), - [anon_sym___clrcall] = ACTIONS(4107), - [anon_sym___stdcall] = ACTIONS(4107), - [anon_sym___fastcall] = ACTIONS(4107), - [anon_sym___thiscall] = ACTIONS(4107), - [anon_sym___vectorcall] = ACTIONS(4107), - [anon_sym_LBRACE] = ACTIONS(4109), - [anon_sym_signed] = ACTIONS(4107), - [anon_sym_unsigned] = ACTIONS(4107), - [anon_sym_long] = ACTIONS(4107), - [anon_sym_short] = ACTIONS(4107), - [anon_sym_LBRACK] = ACTIONS(4107), - [anon_sym_static] = ACTIONS(4107), - [anon_sym_register] = ACTIONS(4107), - [anon_sym_inline] = ACTIONS(4107), - [anon_sym___inline] = ACTIONS(4107), - [anon_sym___inline__] = ACTIONS(4107), - [anon_sym___forceinline] = ACTIONS(4107), - [anon_sym_thread_local] = ACTIONS(4107), - [anon_sym___thread] = ACTIONS(4107), - [anon_sym_const] = ACTIONS(4107), - [anon_sym_constexpr] = ACTIONS(4107), - [anon_sym_volatile] = ACTIONS(4107), - [anon_sym_restrict] = ACTIONS(4107), - [anon_sym___restrict__] = ACTIONS(4107), - [anon_sym__Atomic] = ACTIONS(4107), - [anon_sym__Noreturn] = ACTIONS(4107), - [anon_sym_noreturn] = ACTIONS(4107), - [anon_sym__Nonnull] = ACTIONS(4107), - [anon_sym_mutable] = ACTIONS(4107), - [anon_sym_constinit] = ACTIONS(4107), - [anon_sym_consteval] = ACTIONS(4107), - [anon_sym_alignas] = ACTIONS(4107), - [anon_sym__Alignas] = ACTIONS(4107), - [sym_primitive_type] = ACTIONS(4107), - [anon_sym_enum] = ACTIONS(4107), - [anon_sym_class] = ACTIONS(4107), - [anon_sym_struct] = ACTIONS(4107), - [anon_sym_union] = ACTIONS(4107), - [anon_sym_if] = ACTIONS(4107), - [anon_sym_switch] = ACTIONS(4107), - [anon_sym_case] = ACTIONS(4107), - [anon_sym_default] = ACTIONS(4107), - [anon_sym_while] = ACTIONS(4107), - [anon_sym_do] = ACTIONS(4107), - [anon_sym_for] = ACTIONS(4107), - [anon_sym_return] = ACTIONS(4107), - [anon_sym_break] = ACTIONS(4107), - [anon_sym_continue] = ACTIONS(4107), - [anon_sym_goto] = ACTIONS(4107), - [anon_sym_not] = ACTIONS(4107), - [anon_sym_compl] = ACTIONS(4107), - [anon_sym_DASH_DASH] = ACTIONS(4109), - [anon_sym_PLUS_PLUS] = ACTIONS(4109), - [anon_sym_sizeof] = ACTIONS(4107), - [anon_sym___alignof__] = ACTIONS(4107), - [anon_sym___alignof] = ACTIONS(4107), - [anon_sym__alignof] = ACTIONS(4107), - [anon_sym_alignof] = ACTIONS(4107), - [anon_sym__Alignof] = ACTIONS(4107), - [anon_sym_offsetof] = ACTIONS(4107), - [anon_sym__Generic] = ACTIONS(4107), - [anon_sym_typename] = ACTIONS(4107), - [anon_sym_asm] = ACTIONS(4107), - [anon_sym___asm__] = ACTIONS(4107), - [anon_sym___asm] = ACTIONS(4107), - [sym_number_literal] = ACTIONS(4109), - [anon_sym_L_SQUOTE] = ACTIONS(4109), - [anon_sym_u_SQUOTE] = ACTIONS(4109), - [anon_sym_U_SQUOTE] = ACTIONS(4109), - [anon_sym_u8_SQUOTE] = ACTIONS(4109), - [anon_sym_SQUOTE] = ACTIONS(4109), - [anon_sym_L_DQUOTE] = ACTIONS(4109), - [anon_sym_u_DQUOTE] = ACTIONS(4109), - [anon_sym_U_DQUOTE] = ACTIONS(4109), - [anon_sym_u8_DQUOTE] = ACTIONS(4109), - [anon_sym_DQUOTE] = ACTIONS(4109), - [sym_true] = ACTIONS(4107), - [sym_false] = ACTIONS(4107), - [anon_sym_NULL] = ACTIONS(4107), - [anon_sym_nullptr] = ACTIONS(4107), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4107), - [anon_sym_decltype] = ACTIONS(4107), - [anon_sym_explicit] = ACTIONS(4107), - [anon_sym_export] = ACTIONS(4107), - [anon_sym_module] = ACTIONS(4107), - [anon_sym_import] = ACTIONS(4107), - [anon_sym_template] = ACTIONS(4107), - [anon_sym_operator] = ACTIONS(4107), - [anon_sym_try] = ACTIONS(4107), - [anon_sym_delete] = ACTIONS(4107), - [anon_sym_throw] = ACTIONS(4107), - [anon_sym_namespace] = ACTIONS(4107), - [anon_sym_static_assert] = ACTIONS(4107), - [anon_sym_concept] = ACTIONS(4107), - [anon_sym_co_return] = ACTIONS(4107), - [anon_sym_co_yield] = ACTIONS(4107), - [anon_sym_R_DQUOTE] = ACTIONS(4109), - [anon_sym_LR_DQUOTE] = ACTIONS(4109), - [anon_sym_uR_DQUOTE] = ACTIONS(4109), - [anon_sym_UR_DQUOTE] = ACTIONS(4109), - [anon_sym_u8R_DQUOTE] = ACTIONS(4109), - [anon_sym_co_await] = ACTIONS(4107), - [anon_sym_new] = ACTIONS(4107), - [anon_sym_requires] = ACTIONS(4107), - [anon_sym_CARET_CARET] = ACTIONS(4109), - [anon_sym_LBRACK_COLON] = ACTIONS(4109), - [sym_this] = ACTIONS(4107), + [STATE(598)] = { + [ts_builtin_sym_end] = ACTIONS(3648), + [sym_identifier] = ACTIONS(3646), + [aux_sym_preproc_include_token1] = ACTIONS(3646), + [aux_sym_preproc_def_token1] = ACTIONS(3646), + [aux_sym_preproc_if_token1] = ACTIONS(3646), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3646), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3646), + [sym_preproc_directive] = ACTIONS(3646), + [anon_sym_LPAREN2] = ACTIONS(3648), + [anon_sym_BANG] = ACTIONS(3648), + [anon_sym_TILDE] = ACTIONS(3648), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_AMP_AMP] = ACTIONS(3648), + [anon_sym_AMP] = ACTIONS(3646), + [anon_sym_SEMI] = ACTIONS(3648), + [anon_sym___extension__] = ACTIONS(3646), + [anon_sym_typedef] = ACTIONS(3646), + [anon_sym_virtual] = ACTIONS(3646), + [anon_sym_extern] = ACTIONS(3646), + [anon_sym___attribute__] = ACTIONS(3646), + [anon_sym___attribute] = ACTIONS(3646), + [anon_sym_using] = ACTIONS(3646), + [anon_sym_COLON_COLON] = ACTIONS(3648), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3648), + [anon_sym___declspec] = ACTIONS(3646), + [anon_sym___based] = ACTIONS(3646), + [anon_sym___cdecl] = ACTIONS(3646), + [anon_sym___clrcall] = ACTIONS(3646), + [anon_sym___stdcall] = ACTIONS(3646), + [anon_sym___fastcall] = ACTIONS(3646), + [anon_sym___thiscall] = ACTIONS(3646), + [anon_sym___vectorcall] = ACTIONS(3646), + [anon_sym_LBRACE] = ACTIONS(3648), + [anon_sym_signed] = ACTIONS(3646), + [anon_sym_unsigned] = ACTIONS(3646), + [anon_sym_long] = ACTIONS(3646), + [anon_sym_short] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_static] = ACTIONS(3646), + [anon_sym_register] = ACTIONS(3646), + [anon_sym_inline] = ACTIONS(3646), + [anon_sym___inline] = ACTIONS(3646), + [anon_sym___inline__] = ACTIONS(3646), + [anon_sym___forceinline] = ACTIONS(3646), + [anon_sym_thread_local] = ACTIONS(3646), + [anon_sym___thread] = ACTIONS(3646), + [anon_sym_const] = ACTIONS(3646), + [anon_sym_constexpr] = ACTIONS(3646), + [anon_sym_volatile] = ACTIONS(3646), + [anon_sym_restrict] = ACTIONS(3646), + [anon_sym___restrict__] = ACTIONS(3646), + [anon_sym__Atomic] = ACTIONS(3646), + [anon_sym__Noreturn] = ACTIONS(3646), + [anon_sym_noreturn] = ACTIONS(3646), + [anon_sym__Nonnull] = ACTIONS(3646), + [anon_sym_mutable] = ACTIONS(3646), + [anon_sym_constinit] = ACTIONS(3646), + [anon_sym_consteval] = ACTIONS(3646), + [anon_sym_alignas] = ACTIONS(3646), + [anon_sym__Alignas] = ACTIONS(3646), + [sym_primitive_type] = ACTIONS(3646), + [anon_sym_enum] = ACTIONS(3646), + [anon_sym_class] = ACTIONS(3646), + [anon_sym_struct] = ACTIONS(3646), + [anon_sym_union] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_else] = ACTIONS(3646), + [anon_sym_switch] = ACTIONS(3646), + [anon_sym_case] = ACTIONS(3646), + [anon_sym_default] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_break] = ACTIONS(3646), + [anon_sym_continue] = ACTIONS(3646), + [anon_sym_goto] = ACTIONS(3646), + [anon_sym___try] = ACTIONS(3646), + [anon_sym___leave] = ACTIONS(3646), + [anon_sym_not] = ACTIONS(3646), + [anon_sym_compl] = ACTIONS(3646), + [anon_sym_DASH_DASH] = ACTIONS(3648), + [anon_sym_PLUS_PLUS] = ACTIONS(3648), + [anon_sym_sizeof] = ACTIONS(3646), + [anon_sym___alignof__] = ACTIONS(3646), + [anon_sym___alignof] = ACTIONS(3646), + [anon_sym__alignof] = ACTIONS(3646), + [anon_sym_alignof] = ACTIONS(3646), + [anon_sym__Alignof] = ACTIONS(3646), + [anon_sym_offsetof] = ACTIONS(3646), + [anon_sym__Generic] = ACTIONS(3646), + [anon_sym_typename] = ACTIONS(3646), + [anon_sym_asm] = ACTIONS(3646), + [anon_sym___asm__] = ACTIONS(3646), + [anon_sym___asm] = ACTIONS(3646), + [sym_number_literal] = ACTIONS(3648), + [anon_sym_L_SQUOTE] = ACTIONS(3648), + [anon_sym_u_SQUOTE] = ACTIONS(3648), + [anon_sym_U_SQUOTE] = ACTIONS(3648), + [anon_sym_u8_SQUOTE] = ACTIONS(3648), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_L_DQUOTE] = ACTIONS(3648), + [anon_sym_u_DQUOTE] = ACTIONS(3648), + [anon_sym_U_DQUOTE] = ACTIONS(3648), + [anon_sym_u8_DQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3648), + [sym_true] = ACTIONS(3646), + [sym_false] = ACTIONS(3646), + [anon_sym_NULL] = ACTIONS(3646), + [anon_sym_nullptr] = ACTIONS(3646), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3646), + [anon_sym_decltype] = ACTIONS(3646), + [anon_sym_explicit] = ACTIONS(3646), + [anon_sym_export] = ACTIONS(3646), + [anon_sym_module] = ACTIONS(3646), + [anon_sym_import] = ACTIONS(3646), + [anon_sym_template] = ACTIONS(3646), + [anon_sym_operator] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_delete] = ACTIONS(3646), + [anon_sym_throw] = ACTIONS(3646), + [anon_sym_namespace] = ACTIONS(3646), + [anon_sym_static_assert] = ACTIONS(3646), + [anon_sym_concept] = ACTIONS(3646), + [anon_sym_co_return] = ACTIONS(3646), + [anon_sym_co_yield] = ACTIONS(3646), + [anon_sym_R_DQUOTE] = ACTIONS(3648), + [anon_sym_LR_DQUOTE] = ACTIONS(3648), + [anon_sym_uR_DQUOTE] = ACTIONS(3648), + [anon_sym_UR_DQUOTE] = ACTIONS(3648), + [anon_sym_u8R_DQUOTE] = ACTIONS(3648), + [anon_sym_co_await] = ACTIONS(3646), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_requires] = ACTIONS(3646), + [anon_sym_CARET_CARET] = ACTIONS(3648), + [anon_sym_LBRACK_COLON] = ACTIONS(3648), + [sym_this] = ACTIONS(3646), }, - [STATE(720)] = { - [ts_builtin_sym_end] = ACTIONS(4113), - [sym_identifier] = ACTIONS(4111), - [aux_sym_preproc_include_token1] = ACTIONS(4111), - [aux_sym_preproc_def_token1] = ACTIONS(4111), - [aux_sym_preproc_if_token1] = ACTIONS(4111), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4111), - [sym_preproc_directive] = ACTIONS(4111), - [anon_sym_LPAREN2] = ACTIONS(4113), - [anon_sym_BANG] = ACTIONS(4113), - [anon_sym_TILDE] = ACTIONS(4113), - [anon_sym_DASH] = ACTIONS(4111), - [anon_sym_PLUS] = ACTIONS(4111), - [anon_sym_STAR] = ACTIONS(4113), - [anon_sym_AMP_AMP] = ACTIONS(4113), - [anon_sym_AMP] = ACTIONS(4111), - [anon_sym_SEMI] = ACTIONS(4113), - [anon_sym___extension__] = ACTIONS(4111), - [anon_sym_typedef] = ACTIONS(4111), - [anon_sym_virtual] = ACTIONS(4111), - [anon_sym_extern] = ACTIONS(4111), - [anon_sym___attribute__] = ACTIONS(4111), - [anon_sym___attribute] = ACTIONS(4111), - [anon_sym_using] = ACTIONS(4111), - [anon_sym_COLON_COLON] = ACTIONS(4113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4113), - [anon_sym___declspec] = ACTIONS(4111), - [anon_sym___based] = ACTIONS(4111), - [anon_sym___cdecl] = ACTIONS(4111), - [anon_sym___clrcall] = ACTIONS(4111), - [anon_sym___stdcall] = ACTIONS(4111), - [anon_sym___fastcall] = ACTIONS(4111), - [anon_sym___thiscall] = ACTIONS(4111), - [anon_sym___vectorcall] = ACTIONS(4111), - [anon_sym_LBRACE] = ACTIONS(4113), - [anon_sym_signed] = ACTIONS(4111), - [anon_sym_unsigned] = ACTIONS(4111), - [anon_sym_long] = ACTIONS(4111), - [anon_sym_short] = ACTIONS(4111), - [anon_sym_LBRACK] = ACTIONS(4111), - [anon_sym_static] = ACTIONS(4111), - [anon_sym_register] = ACTIONS(4111), - [anon_sym_inline] = ACTIONS(4111), - [anon_sym___inline] = ACTIONS(4111), - [anon_sym___inline__] = ACTIONS(4111), - [anon_sym___forceinline] = ACTIONS(4111), - [anon_sym_thread_local] = ACTIONS(4111), - [anon_sym___thread] = ACTIONS(4111), - [anon_sym_const] = ACTIONS(4111), - [anon_sym_constexpr] = ACTIONS(4111), - [anon_sym_volatile] = ACTIONS(4111), - [anon_sym_restrict] = ACTIONS(4111), - [anon_sym___restrict__] = ACTIONS(4111), - [anon_sym__Atomic] = ACTIONS(4111), - [anon_sym__Noreturn] = ACTIONS(4111), - [anon_sym_noreturn] = ACTIONS(4111), - [anon_sym__Nonnull] = ACTIONS(4111), - [anon_sym_mutable] = ACTIONS(4111), - [anon_sym_constinit] = ACTIONS(4111), - [anon_sym_consteval] = ACTIONS(4111), - [anon_sym_alignas] = ACTIONS(4111), - [anon_sym__Alignas] = ACTIONS(4111), - [sym_primitive_type] = ACTIONS(4111), - [anon_sym_enum] = ACTIONS(4111), - [anon_sym_class] = ACTIONS(4111), - [anon_sym_struct] = ACTIONS(4111), - [anon_sym_union] = ACTIONS(4111), - [anon_sym_if] = ACTIONS(4111), - [anon_sym_switch] = ACTIONS(4111), - [anon_sym_case] = ACTIONS(4111), - [anon_sym_default] = ACTIONS(4111), - [anon_sym_while] = ACTIONS(4111), - [anon_sym_do] = ACTIONS(4111), - [anon_sym_for] = ACTIONS(4111), - [anon_sym_return] = ACTIONS(4111), - [anon_sym_break] = ACTIONS(4111), - [anon_sym_continue] = ACTIONS(4111), - [anon_sym_goto] = ACTIONS(4111), - [anon_sym_not] = ACTIONS(4111), - [anon_sym_compl] = ACTIONS(4111), - [anon_sym_DASH_DASH] = ACTIONS(4113), - [anon_sym_PLUS_PLUS] = ACTIONS(4113), - [anon_sym_sizeof] = ACTIONS(4111), - [anon_sym___alignof__] = ACTIONS(4111), - [anon_sym___alignof] = ACTIONS(4111), - [anon_sym__alignof] = ACTIONS(4111), - [anon_sym_alignof] = ACTIONS(4111), - [anon_sym__Alignof] = ACTIONS(4111), - [anon_sym_offsetof] = ACTIONS(4111), - [anon_sym__Generic] = ACTIONS(4111), - [anon_sym_typename] = ACTIONS(4111), - [anon_sym_asm] = ACTIONS(4111), - [anon_sym___asm__] = ACTIONS(4111), - [anon_sym___asm] = ACTIONS(4111), - [sym_number_literal] = ACTIONS(4113), - [anon_sym_L_SQUOTE] = ACTIONS(4113), - [anon_sym_u_SQUOTE] = ACTIONS(4113), - [anon_sym_U_SQUOTE] = ACTIONS(4113), - [anon_sym_u8_SQUOTE] = ACTIONS(4113), - [anon_sym_SQUOTE] = ACTIONS(4113), - [anon_sym_L_DQUOTE] = ACTIONS(4113), - [anon_sym_u_DQUOTE] = ACTIONS(4113), - [anon_sym_U_DQUOTE] = ACTIONS(4113), - [anon_sym_u8_DQUOTE] = ACTIONS(4113), - [anon_sym_DQUOTE] = ACTIONS(4113), - [sym_true] = ACTIONS(4111), - [sym_false] = ACTIONS(4111), - [anon_sym_NULL] = ACTIONS(4111), - [anon_sym_nullptr] = ACTIONS(4111), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4111), - [anon_sym_decltype] = ACTIONS(4111), - [anon_sym_explicit] = ACTIONS(4111), - [anon_sym_export] = ACTIONS(4111), - [anon_sym_module] = ACTIONS(4111), - [anon_sym_import] = ACTIONS(4111), - [anon_sym_template] = ACTIONS(4111), - [anon_sym_operator] = ACTIONS(4111), - [anon_sym_try] = ACTIONS(4111), - [anon_sym_delete] = ACTIONS(4111), - [anon_sym_throw] = ACTIONS(4111), - [anon_sym_namespace] = ACTIONS(4111), - [anon_sym_static_assert] = ACTIONS(4111), - [anon_sym_concept] = ACTIONS(4111), - [anon_sym_co_return] = ACTIONS(4111), - [anon_sym_co_yield] = ACTIONS(4111), - [anon_sym_R_DQUOTE] = ACTIONS(4113), - [anon_sym_LR_DQUOTE] = ACTIONS(4113), - [anon_sym_uR_DQUOTE] = ACTIONS(4113), - [anon_sym_UR_DQUOTE] = ACTIONS(4113), - [anon_sym_u8R_DQUOTE] = ACTIONS(4113), - [anon_sym_co_await] = ACTIONS(4111), - [anon_sym_new] = ACTIONS(4111), - [anon_sym_requires] = ACTIONS(4111), - [anon_sym_CARET_CARET] = ACTIONS(4113), - [anon_sym_LBRACK_COLON] = ACTIONS(4113), - [sym_this] = ACTIONS(4111), + [STATE(599)] = { + [sym_identifier] = ACTIONS(3580), + [aux_sym_preproc_include_token1] = ACTIONS(3580), + [aux_sym_preproc_def_token1] = ACTIONS(3580), + [aux_sym_preproc_if_token1] = ACTIONS(3580), + [aux_sym_preproc_if_token2] = ACTIONS(3580), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3580), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3580), + [sym_preproc_directive] = ACTIONS(3580), + [anon_sym_LPAREN2] = ACTIONS(3582), + [anon_sym_BANG] = ACTIONS(3582), + [anon_sym_TILDE] = ACTIONS(3582), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_STAR] = ACTIONS(3582), + [anon_sym_AMP_AMP] = ACTIONS(3582), + [anon_sym_AMP] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym___extension__] = ACTIONS(3580), + [anon_sym_typedef] = ACTIONS(3580), + [anon_sym_virtual] = ACTIONS(3580), + [anon_sym_extern] = ACTIONS(3580), + [anon_sym___attribute__] = ACTIONS(3580), + [anon_sym___attribute] = ACTIONS(3580), + [anon_sym_using] = ACTIONS(3580), + [anon_sym_COLON_COLON] = ACTIONS(3582), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3582), + [anon_sym___declspec] = ACTIONS(3580), + [anon_sym___based] = ACTIONS(3580), + [anon_sym___cdecl] = ACTIONS(3580), + [anon_sym___clrcall] = ACTIONS(3580), + [anon_sym___stdcall] = ACTIONS(3580), + [anon_sym___fastcall] = ACTIONS(3580), + [anon_sym___thiscall] = ACTIONS(3580), + [anon_sym___vectorcall] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_signed] = ACTIONS(3580), + [anon_sym_unsigned] = ACTIONS(3580), + [anon_sym_long] = ACTIONS(3580), + [anon_sym_short] = ACTIONS(3580), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_register] = ACTIONS(3580), + [anon_sym_inline] = ACTIONS(3580), + [anon_sym___inline] = ACTIONS(3580), + [anon_sym___inline__] = ACTIONS(3580), + [anon_sym___forceinline] = ACTIONS(3580), + [anon_sym_thread_local] = ACTIONS(3580), + [anon_sym___thread] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_constexpr] = ACTIONS(3580), + [anon_sym_volatile] = ACTIONS(3580), + [anon_sym_restrict] = ACTIONS(3580), + [anon_sym___restrict__] = ACTIONS(3580), + [anon_sym__Atomic] = ACTIONS(3580), + [anon_sym__Noreturn] = ACTIONS(3580), + [anon_sym_noreturn] = ACTIONS(3580), + [anon_sym__Nonnull] = ACTIONS(3580), + [anon_sym_mutable] = ACTIONS(3580), + [anon_sym_constinit] = ACTIONS(3580), + [anon_sym_consteval] = ACTIONS(3580), + [anon_sym_alignas] = ACTIONS(3580), + [anon_sym__Alignas] = ACTIONS(3580), + [sym_primitive_type] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), + [anon_sym_class] = ACTIONS(3580), + [anon_sym_struct] = ACTIONS(3580), + [anon_sym_union] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_else] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_case] = ACTIONS(3580), + [anon_sym_default] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_goto] = ACTIONS(3580), + [anon_sym___try] = ACTIONS(3580), + [anon_sym___leave] = ACTIONS(3580), + [anon_sym_not] = ACTIONS(3580), + [anon_sym_compl] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3582), + [anon_sym_PLUS_PLUS] = ACTIONS(3582), + [anon_sym_sizeof] = ACTIONS(3580), + [anon_sym___alignof__] = ACTIONS(3580), + [anon_sym___alignof] = ACTIONS(3580), + [anon_sym__alignof] = ACTIONS(3580), + [anon_sym_alignof] = ACTIONS(3580), + [anon_sym__Alignof] = ACTIONS(3580), + [anon_sym_offsetof] = ACTIONS(3580), + [anon_sym__Generic] = ACTIONS(3580), + [anon_sym_typename] = ACTIONS(3580), + [anon_sym_asm] = ACTIONS(3580), + [anon_sym___asm__] = ACTIONS(3580), + [anon_sym___asm] = ACTIONS(3580), + [sym_number_literal] = ACTIONS(3582), + [anon_sym_L_SQUOTE] = ACTIONS(3582), + [anon_sym_u_SQUOTE] = ACTIONS(3582), + [anon_sym_U_SQUOTE] = ACTIONS(3582), + [anon_sym_u8_SQUOTE] = ACTIONS(3582), + [anon_sym_SQUOTE] = ACTIONS(3582), + [anon_sym_L_DQUOTE] = ACTIONS(3582), + [anon_sym_u_DQUOTE] = ACTIONS(3582), + [anon_sym_U_DQUOTE] = ACTIONS(3582), + [anon_sym_u8_DQUOTE] = ACTIONS(3582), + [anon_sym_DQUOTE] = ACTIONS(3582), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [anon_sym_NULL] = ACTIONS(3580), + [anon_sym_nullptr] = ACTIONS(3580), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3580), + [anon_sym_decltype] = ACTIONS(3580), + [anon_sym_explicit] = ACTIONS(3580), + [anon_sym_export] = ACTIONS(3580), + [anon_sym_module] = ACTIONS(3580), + [anon_sym_import] = ACTIONS(3580), + [anon_sym_template] = ACTIONS(3580), + [anon_sym_operator] = ACTIONS(3580), + [anon_sym_try] = ACTIONS(3580), + [anon_sym_delete] = ACTIONS(3580), + [anon_sym_throw] = ACTIONS(3580), + [anon_sym_namespace] = ACTIONS(3580), + [anon_sym_static_assert] = ACTIONS(3580), + [anon_sym_concept] = ACTIONS(3580), + [anon_sym_co_return] = ACTIONS(3580), + [anon_sym_co_yield] = ACTIONS(3580), + [anon_sym_R_DQUOTE] = ACTIONS(3582), + [anon_sym_LR_DQUOTE] = ACTIONS(3582), + [anon_sym_uR_DQUOTE] = ACTIONS(3582), + [anon_sym_UR_DQUOTE] = ACTIONS(3582), + [anon_sym_u8R_DQUOTE] = ACTIONS(3582), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3580), + [anon_sym_requires] = ACTIONS(3580), + [anon_sym_CARET_CARET] = ACTIONS(3582), + [anon_sym_LBRACK_COLON] = ACTIONS(3582), + [sym_this] = ACTIONS(3580), }, - [STATE(721)] = { - [sym_identifier] = ACTIONS(3684), - [aux_sym_preproc_include_token1] = ACTIONS(3684), - [aux_sym_preproc_def_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token1] = ACTIONS(3684), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3684), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3684), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(3686), - [anon_sym_BANG] = ACTIONS(3686), - [anon_sym_TILDE] = ACTIONS(3686), - [anon_sym_DASH] = ACTIONS(3684), - [anon_sym_PLUS] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3686), - [anon_sym_AMP_AMP] = ACTIONS(3686), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym___extension__] = ACTIONS(3684), - [anon_sym_typedef] = ACTIONS(3684), - [anon_sym_virtual] = ACTIONS(3684), - [anon_sym_extern] = ACTIONS(3684), - [anon_sym___attribute__] = ACTIONS(3684), - [anon_sym___attribute] = ACTIONS(3684), - [anon_sym_using] = ACTIONS(3684), - [anon_sym_COLON_COLON] = ACTIONS(3686), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), - [anon_sym___declspec] = ACTIONS(3684), - [anon_sym___based] = ACTIONS(3684), - [anon_sym___cdecl] = ACTIONS(3684), - [anon_sym___clrcall] = ACTIONS(3684), - [anon_sym___stdcall] = ACTIONS(3684), - [anon_sym___fastcall] = ACTIONS(3684), - [anon_sym___thiscall] = ACTIONS(3684), - [anon_sym___vectorcall] = ACTIONS(3684), - [anon_sym_LBRACE] = ACTIONS(3686), - [anon_sym_RBRACE] = ACTIONS(3686), - [anon_sym_signed] = ACTIONS(3684), - [anon_sym_unsigned] = ACTIONS(3684), - [anon_sym_long] = ACTIONS(3684), - [anon_sym_short] = ACTIONS(3684), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_static] = ACTIONS(3684), - [anon_sym_register] = ACTIONS(3684), - [anon_sym_inline] = ACTIONS(3684), - [anon_sym___inline] = ACTIONS(3684), - [anon_sym___inline__] = ACTIONS(3684), - [anon_sym___forceinline] = ACTIONS(3684), - [anon_sym_thread_local] = ACTIONS(3684), - [anon_sym___thread] = ACTIONS(3684), - [anon_sym_const] = ACTIONS(3684), - [anon_sym_constexpr] = ACTIONS(3684), - [anon_sym_volatile] = ACTIONS(3684), - [anon_sym_restrict] = ACTIONS(3684), - [anon_sym___restrict__] = ACTIONS(3684), - [anon_sym__Atomic] = ACTIONS(3684), - [anon_sym__Noreturn] = ACTIONS(3684), - [anon_sym_noreturn] = ACTIONS(3684), - [anon_sym__Nonnull] = ACTIONS(3684), - [anon_sym_mutable] = ACTIONS(3684), - [anon_sym_constinit] = ACTIONS(3684), - [anon_sym_consteval] = ACTIONS(3684), - [anon_sym_alignas] = ACTIONS(3684), - [anon_sym__Alignas] = ACTIONS(3684), - [sym_primitive_type] = ACTIONS(3684), - [anon_sym_enum] = ACTIONS(3684), - [anon_sym_class] = ACTIONS(3684), - [anon_sym_struct] = ACTIONS(3684), - [anon_sym_union] = ACTIONS(3684), - [anon_sym_if] = ACTIONS(3684), - [anon_sym_else] = ACTIONS(3684), - [anon_sym_switch] = ACTIONS(3684), - [anon_sym_case] = ACTIONS(3684), - [anon_sym_default] = ACTIONS(3684), - [anon_sym_while] = ACTIONS(3684), - [anon_sym_do] = ACTIONS(3684), - [anon_sym_for] = ACTIONS(3684), - [anon_sym_return] = ACTIONS(3684), - [anon_sym_break] = ACTIONS(3684), - [anon_sym_continue] = ACTIONS(3684), - [anon_sym_goto] = ACTIONS(3684), - [anon_sym___try] = ACTIONS(3684), - [anon_sym___leave] = ACTIONS(3684), - [anon_sym_not] = ACTIONS(3684), - [anon_sym_compl] = ACTIONS(3684), - [anon_sym_DASH_DASH] = ACTIONS(3686), - [anon_sym_PLUS_PLUS] = ACTIONS(3686), - [anon_sym_sizeof] = ACTIONS(3684), - [anon_sym___alignof__] = ACTIONS(3684), - [anon_sym___alignof] = ACTIONS(3684), - [anon_sym__alignof] = ACTIONS(3684), - [anon_sym_alignof] = ACTIONS(3684), - [anon_sym__Alignof] = ACTIONS(3684), - [anon_sym_offsetof] = ACTIONS(3684), - [anon_sym__Generic] = ACTIONS(3684), - [anon_sym_typename] = ACTIONS(3684), - [anon_sym_asm] = ACTIONS(3684), - [anon_sym___asm__] = ACTIONS(3684), - [anon_sym___asm] = ACTIONS(3684), - [sym_number_literal] = ACTIONS(3686), - [anon_sym_L_SQUOTE] = ACTIONS(3686), - [anon_sym_u_SQUOTE] = ACTIONS(3686), - [anon_sym_U_SQUOTE] = ACTIONS(3686), - [anon_sym_u8_SQUOTE] = ACTIONS(3686), - [anon_sym_SQUOTE] = ACTIONS(3686), - [anon_sym_L_DQUOTE] = ACTIONS(3686), - [anon_sym_u_DQUOTE] = ACTIONS(3686), - [anon_sym_U_DQUOTE] = ACTIONS(3686), - [anon_sym_u8_DQUOTE] = ACTIONS(3686), - [anon_sym_DQUOTE] = ACTIONS(3686), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [anon_sym_NULL] = ACTIONS(3684), - [anon_sym_nullptr] = ACTIONS(3684), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3684), - [anon_sym_decltype] = ACTIONS(3684), - [anon_sym_explicit] = ACTIONS(3684), - [anon_sym_template] = ACTIONS(3684), - [anon_sym_operator] = ACTIONS(3684), - [anon_sym_try] = ACTIONS(3684), - [anon_sym_delete] = ACTIONS(3684), - [anon_sym_throw] = ACTIONS(3684), - [anon_sym_namespace] = ACTIONS(3684), - [anon_sym_static_assert] = ACTIONS(3684), - [anon_sym_concept] = ACTIONS(3684), - [anon_sym_co_return] = ACTIONS(3684), - [anon_sym_co_yield] = ACTIONS(3684), - [anon_sym_R_DQUOTE] = ACTIONS(3686), - [anon_sym_LR_DQUOTE] = ACTIONS(3686), - [anon_sym_uR_DQUOTE] = ACTIONS(3686), - [anon_sym_UR_DQUOTE] = ACTIONS(3686), - [anon_sym_u8R_DQUOTE] = ACTIONS(3686), - [anon_sym_co_await] = ACTIONS(3684), - [anon_sym_new] = ACTIONS(3684), - [anon_sym_requires] = ACTIONS(3684), - [anon_sym_CARET_CARET] = ACTIONS(3686), - [anon_sym_LBRACK_COLON] = ACTIONS(3686), - [sym_this] = ACTIONS(3684), + [STATE(600)] = { + [sym_identifier] = ACTIONS(3638), + [aux_sym_preproc_include_token1] = ACTIONS(3638), + [aux_sym_preproc_def_token1] = ACTIONS(3638), + [aux_sym_preproc_if_token1] = ACTIONS(3638), + [aux_sym_preproc_if_token2] = ACTIONS(3638), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3638), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3638), + [sym_preproc_directive] = ACTIONS(3638), + [anon_sym_LPAREN2] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3640), + [anon_sym_TILDE] = ACTIONS(3640), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym___extension__] = ACTIONS(3638), + [anon_sym_typedef] = ACTIONS(3638), + [anon_sym_virtual] = ACTIONS(3638), + [anon_sym_extern] = ACTIONS(3638), + [anon_sym___attribute__] = ACTIONS(3638), + [anon_sym___attribute] = ACTIONS(3638), + [anon_sym_using] = ACTIONS(3638), + [anon_sym_COLON_COLON] = ACTIONS(3640), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3640), + [anon_sym___declspec] = ACTIONS(3638), + [anon_sym___based] = ACTIONS(3638), + [anon_sym___cdecl] = ACTIONS(3638), + [anon_sym___clrcall] = ACTIONS(3638), + [anon_sym___stdcall] = ACTIONS(3638), + [anon_sym___fastcall] = ACTIONS(3638), + [anon_sym___thiscall] = ACTIONS(3638), + [anon_sym___vectorcall] = ACTIONS(3638), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_signed] = ACTIONS(3638), + [anon_sym_unsigned] = ACTIONS(3638), + [anon_sym_long] = ACTIONS(3638), + [anon_sym_short] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_static] = ACTIONS(3638), + [anon_sym_register] = ACTIONS(3638), + [anon_sym_inline] = ACTIONS(3638), + [anon_sym___inline] = ACTIONS(3638), + [anon_sym___inline__] = ACTIONS(3638), + [anon_sym___forceinline] = ACTIONS(3638), + [anon_sym_thread_local] = ACTIONS(3638), + [anon_sym___thread] = ACTIONS(3638), + [anon_sym_const] = ACTIONS(3638), + [anon_sym_constexpr] = ACTIONS(3638), + [anon_sym_volatile] = ACTIONS(3638), + [anon_sym_restrict] = ACTIONS(3638), + [anon_sym___restrict__] = ACTIONS(3638), + [anon_sym__Atomic] = ACTIONS(3638), + [anon_sym__Noreturn] = ACTIONS(3638), + [anon_sym_noreturn] = ACTIONS(3638), + [anon_sym__Nonnull] = ACTIONS(3638), + [anon_sym_mutable] = ACTIONS(3638), + [anon_sym_constinit] = ACTIONS(3638), + [anon_sym_consteval] = ACTIONS(3638), + [anon_sym_alignas] = ACTIONS(3638), + [anon_sym__Alignas] = ACTIONS(3638), + [sym_primitive_type] = ACTIONS(3638), + [anon_sym_enum] = ACTIONS(3638), + [anon_sym_class] = ACTIONS(3638), + [anon_sym_struct] = ACTIONS(3638), + [anon_sym_union] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_else] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_case] = ACTIONS(3638), + [anon_sym_default] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_break] = ACTIONS(3638), + [anon_sym_continue] = ACTIONS(3638), + [anon_sym_goto] = ACTIONS(3638), + [anon_sym___try] = ACTIONS(3638), + [anon_sym___leave] = ACTIONS(3638), + [anon_sym_not] = ACTIONS(3638), + [anon_sym_compl] = ACTIONS(3638), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_sizeof] = ACTIONS(3638), + [anon_sym___alignof__] = ACTIONS(3638), + [anon_sym___alignof] = ACTIONS(3638), + [anon_sym__alignof] = ACTIONS(3638), + [anon_sym_alignof] = ACTIONS(3638), + [anon_sym__Alignof] = ACTIONS(3638), + [anon_sym_offsetof] = ACTIONS(3638), + [anon_sym__Generic] = ACTIONS(3638), + [anon_sym_typename] = ACTIONS(3638), + [anon_sym_asm] = ACTIONS(3638), + [anon_sym___asm__] = ACTIONS(3638), + [anon_sym___asm] = ACTIONS(3638), + [sym_number_literal] = ACTIONS(3640), + [anon_sym_L_SQUOTE] = ACTIONS(3640), + [anon_sym_u_SQUOTE] = ACTIONS(3640), + [anon_sym_U_SQUOTE] = ACTIONS(3640), + [anon_sym_u8_SQUOTE] = ACTIONS(3640), + [anon_sym_SQUOTE] = ACTIONS(3640), + [anon_sym_L_DQUOTE] = ACTIONS(3640), + [anon_sym_u_DQUOTE] = ACTIONS(3640), + [anon_sym_U_DQUOTE] = ACTIONS(3640), + [anon_sym_u8_DQUOTE] = ACTIONS(3640), + [anon_sym_DQUOTE] = ACTIONS(3640), + [sym_true] = ACTIONS(3638), + [sym_false] = ACTIONS(3638), + [anon_sym_NULL] = ACTIONS(3638), + [anon_sym_nullptr] = ACTIONS(3638), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3638), + [anon_sym_decltype] = ACTIONS(3638), + [anon_sym_explicit] = ACTIONS(3638), + [anon_sym_export] = ACTIONS(3638), + [anon_sym_module] = ACTIONS(3638), + [anon_sym_import] = ACTIONS(3638), + [anon_sym_template] = ACTIONS(3638), + [anon_sym_operator] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_delete] = ACTIONS(3638), + [anon_sym_throw] = ACTIONS(3638), + [anon_sym_namespace] = ACTIONS(3638), + [anon_sym_static_assert] = ACTIONS(3638), + [anon_sym_concept] = ACTIONS(3638), + [anon_sym_co_return] = ACTIONS(3638), + [anon_sym_co_yield] = ACTIONS(3638), + [anon_sym_R_DQUOTE] = ACTIONS(3640), + [anon_sym_LR_DQUOTE] = ACTIONS(3640), + [anon_sym_uR_DQUOTE] = ACTIONS(3640), + [anon_sym_UR_DQUOTE] = ACTIONS(3640), + [anon_sym_u8R_DQUOTE] = ACTIONS(3640), + [anon_sym_co_await] = ACTIONS(3638), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_requires] = ACTIONS(3638), + [anon_sym_CARET_CARET] = ACTIONS(3640), + [anon_sym_LBRACK_COLON] = ACTIONS(3640), + [sym_this] = ACTIONS(3638), }, - [STATE(722)] = { - [sym_identifier] = ACTIONS(3688), - [aux_sym_preproc_include_token1] = ACTIONS(3688), - [aux_sym_preproc_def_token1] = ACTIONS(3688), - [aux_sym_preproc_if_token1] = ACTIONS(3688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3688), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3688), - [sym_preproc_directive] = ACTIONS(3688), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3690), - [anon_sym_TILDE] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3688), - [anon_sym_PLUS] = ACTIONS(3688), - [anon_sym_STAR] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3690), - [anon_sym_AMP] = ACTIONS(3688), - [anon_sym_SEMI] = ACTIONS(3690), - [anon_sym___extension__] = ACTIONS(3688), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_virtual] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(3688), - [anon_sym___attribute__] = ACTIONS(3688), - [anon_sym___attribute] = ACTIONS(3688), - [anon_sym_using] = ACTIONS(3688), - [anon_sym_COLON_COLON] = ACTIONS(3690), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3690), - [anon_sym___declspec] = ACTIONS(3688), - [anon_sym___based] = ACTIONS(3688), - [anon_sym___cdecl] = ACTIONS(3688), - [anon_sym___clrcall] = ACTIONS(3688), - [anon_sym___stdcall] = ACTIONS(3688), - [anon_sym___fastcall] = ACTIONS(3688), - [anon_sym___thiscall] = ACTIONS(3688), - [anon_sym___vectorcall] = ACTIONS(3688), - [anon_sym_LBRACE] = ACTIONS(3690), - [anon_sym_RBRACE] = ACTIONS(3690), - [anon_sym_signed] = ACTIONS(3688), - [anon_sym_unsigned] = ACTIONS(3688), - [anon_sym_long] = ACTIONS(3688), - [anon_sym_short] = ACTIONS(3688), - [anon_sym_LBRACK] = ACTIONS(3688), - [anon_sym_static] = ACTIONS(3688), - [anon_sym_register] = ACTIONS(3688), - [anon_sym_inline] = ACTIONS(3688), - [anon_sym___inline] = ACTIONS(3688), - [anon_sym___inline__] = ACTIONS(3688), - [anon_sym___forceinline] = ACTIONS(3688), - [anon_sym_thread_local] = ACTIONS(3688), - [anon_sym___thread] = ACTIONS(3688), - [anon_sym_const] = ACTIONS(3688), - [anon_sym_constexpr] = ACTIONS(3688), - [anon_sym_volatile] = ACTIONS(3688), - [anon_sym_restrict] = ACTIONS(3688), - [anon_sym___restrict__] = ACTIONS(3688), - [anon_sym__Atomic] = ACTIONS(3688), - [anon_sym__Noreturn] = ACTIONS(3688), - [anon_sym_noreturn] = ACTIONS(3688), - [anon_sym__Nonnull] = ACTIONS(3688), - [anon_sym_mutable] = ACTIONS(3688), - [anon_sym_constinit] = ACTIONS(3688), - [anon_sym_consteval] = ACTIONS(3688), - [anon_sym_alignas] = ACTIONS(3688), - [anon_sym__Alignas] = ACTIONS(3688), - [sym_primitive_type] = ACTIONS(3688), - [anon_sym_enum] = ACTIONS(3688), - [anon_sym_class] = ACTIONS(3688), - [anon_sym_struct] = ACTIONS(3688), - [anon_sym_union] = ACTIONS(3688), - [anon_sym_if] = ACTIONS(3688), - [anon_sym_else] = ACTIONS(3688), - [anon_sym_switch] = ACTIONS(3688), - [anon_sym_case] = ACTIONS(3688), - [anon_sym_default] = ACTIONS(3688), - [anon_sym_while] = ACTIONS(3688), - [anon_sym_do] = ACTIONS(3688), - [anon_sym_for] = ACTIONS(3688), - [anon_sym_return] = ACTIONS(3688), - [anon_sym_break] = ACTIONS(3688), - [anon_sym_continue] = ACTIONS(3688), - [anon_sym_goto] = ACTIONS(3688), - [anon_sym___try] = ACTIONS(3688), - [anon_sym___leave] = ACTIONS(3688), - [anon_sym_not] = ACTIONS(3688), - [anon_sym_compl] = ACTIONS(3688), - [anon_sym_DASH_DASH] = ACTIONS(3690), - [anon_sym_PLUS_PLUS] = ACTIONS(3690), - [anon_sym_sizeof] = ACTIONS(3688), - [anon_sym___alignof__] = ACTIONS(3688), - [anon_sym___alignof] = ACTIONS(3688), - [anon_sym__alignof] = ACTIONS(3688), - [anon_sym_alignof] = ACTIONS(3688), - [anon_sym__Alignof] = ACTIONS(3688), - [anon_sym_offsetof] = ACTIONS(3688), - [anon_sym__Generic] = ACTIONS(3688), - [anon_sym_typename] = ACTIONS(3688), - [anon_sym_asm] = ACTIONS(3688), - [anon_sym___asm__] = ACTIONS(3688), - [anon_sym___asm] = ACTIONS(3688), - [sym_number_literal] = ACTIONS(3690), - [anon_sym_L_SQUOTE] = ACTIONS(3690), - [anon_sym_u_SQUOTE] = ACTIONS(3690), - [anon_sym_U_SQUOTE] = ACTIONS(3690), - [anon_sym_u8_SQUOTE] = ACTIONS(3690), - [anon_sym_SQUOTE] = ACTIONS(3690), - [anon_sym_L_DQUOTE] = ACTIONS(3690), - [anon_sym_u_DQUOTE] = ACTIONS(3690), - [anon_sym_U_DQUOTE] = ACTIONS(3690), - [anon_sym_u8_DQUOTE] = ACTIONS(3690), - [anon_sym_DQUOTE] = ACTIONS(3690), - [sym_true] = ACTIONS(3688), - [sym_false] = ACTIONS(3688), - [anon_sym_NULL] = ACTIONS(3688), - [anon_sym_nullptr] = ACTIONS(3688), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3688), - [anon_sym_decltype] = ACTIONS(3688), - [anon_sym_explicit] = ACTIONS(3688), - [anon_sym_template] = ACTIONS(3688), - [anon_sym_operator] = ACTIONS(3688), - [anon_sym_try] = ACTIONS(3688), - [anon_sym_delete] = ACTIONS(3688), - [anon_sym_throw] = ACTIONS(3688), - [anon_sym_namespace] = ACTIONS(3688), - [anon_sym_static_assert] = ACTIONS(3688), - [anon_sym_concept] = ACTIONS(3688), - [anon_sym_co_return] = ACTIONS(3688), - [anon_sym_co_yield] = ACTIONS(3688), - [anon_sym_R_DQUOTE] = ACTIONS(3690), - [anon_sym_LR_DQUOTE] = ACTIONS(3690), - [anon_sym_uR_DQUOTE] = ACTIONS(3690), - [anon_sym_UR_DQUOTE] = ACTIONS(3690), - [anon_sym_u8R_DQUOTE] = ACTIONS(3690), - [anon_sym_co_await] = ACTIONS(3688), - [anon_sym_new] = ACTIONS(3688), - [anon_sym_requires] = ACTIONS(3688), - [anon_sym_CARET_CARET] = ACTIONS(3690), - [anon_sym_LBRACK_COLON] = ACTIONS(3690), - [sym_this] = ACTIONS(3688), + [STATE(601)] = { + [ts_builtin_sym_end] = ACTIONS(3582), + [sym_identifier] = ACTIONS(3580), + [aux_sym_preproc_include_token1] = ACTIONS(3580), + [aux_sym_preproc_def_token1] = ACTIONS(3580), + [aux_sym_preproc_if_token1] = ACTIONS(3580), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3580), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3580), + [sym_preproc_directive] = ACTIONS(3580), + [anon_sym_LPAREN2] = ACTIONS(3582), + [anon_sym_BANG] = ACTIONS(3582), + [anon_sym_TILDE] = ACTIONS(3582), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_STAR] = ACTIONS(3582), + [anon_sym_AMP_AMP] = ACTIONS(3582), + [anon_sym_AMP] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym___extension__] = ACTIONS(3580), + [anon_sym_typedef] = ACTIONS(3580), + [anon_sym_virtual] = ACTIONS(3580), + [anon_sym_extern] = ACTIONS(3580), + [anon_sym___attribute__] = ACTIONS(3580), + [anon_sym___attribute] = ACTIONS(3580), + [anon_sym_using] = ACTIONS(3580), + [anon_sym_COLON_COLON] = ACTIONS(3582), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3582), + [anon_sym___declspec] = ACTIONS(3580), + [anon_sym___based] = ACTIONS(3580), + [anon_sym___cdecl] = ACTIONS(3580), + [anon_sym___clrcall] = ACTIONS(3580), + [anon_sym___stdcall] = ACTIONS(3580), + [anon_sym___fastcall] = ACTIONS(3580), + [anon_sym___thiscall] = ACTIONS(3580), + [anon_sym___vectorcall] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_signed] = ACTIONS(3580), + [anon_sym_unsigned] = ACTIONS(3580), + [anon_sym_long] = ACTIONS(3580), + [anon_sym_short] = ACTIONS(3580), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_register] = ACTIONS(3580), + [anon_sym_inline] = ACTIONS(3580), + [anon_sym___inline] = ACTIONS(3580), + [anon_sym___inline__] = ACTIONS(3580), + [anon_sym___forceinline] = ACTIONS(3580), + [anon_sym_thread_local] = ACTIONS(3580), + [anon_sym___thread] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_constexpr] = ACTIONS(3580), + [anon_sym_volatile] = ACTIONS(3580), + [anon_sym_restrict] = ACTIONS(3580), + [anon_sym___restrict__] = ACTIONS(3580), + [anon_sym__Atomic] = ACTIONS(3580), + [anon_sym__Noreturn] = ACTIONS(3580), + [anon_sym_noreturn] = ACTIONS(3580), + [anon_sym__Nonnull] = ACTIONS(3580), + [anon_sym_mutable] = ACTIONS(3580), + [anon_sym_constinit] = ACTIONS(3580), + [anon_sym_consteval] = ACTIONS(3580), + [anon_sym_alignas] = ACTIONS(3580), + [anon_sym__Alignas] = ACTIONS(3580), + [sym_primitive_type] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), + [anon_sym_class] = ACTIONS(3580), + [anon_sym_struct] = ACTIONS(3580), + [anon_sym_union] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_else] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_case] = ACTIONS(3580), + [anon_sym_default] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_goto] = ACTIONS(3580), + [anon_sym___try] = ACTIONS(3580), + [anon_sym___leave] = ACTIONS(3580), + [anon_sym_not] = ACTIONS(3580), + [anon_sym_compl] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3582), + [anon_sym_PLUS_PLUS] = ACTIONS(3582), + [anon_sym_sizeof] = ACTIONS(3580), + [anon_sym___alignof__] = ACTIONS(3580), + [anon_sym___alignof] = ACTIONS(3580), + [anon_sym__alignof] = ACTIONS(3580), + [anon_sym_alignof] = ACTIONS(3580), + [anon_sym__Alignof] = ACTIONS(3580), + [anon_sym_offsetof] = ACTIONS(3580), + [anon_sym__Generic] = ACTIONS(3580), + [anon_sym_typename] = ACTIONS(3580), + [anon_sym_asm] = ACTIONS(3580), + [anon_sym___asm__] = ACTIONS(3580), + [anon_sym___asm] = ACTIONS(3580), + [sym_number_literal] = ACTIONS(3582), + [anon_sym_L_SQUOTE] = ACTIONS(3582), + [anon_sym_u_SQUOTE] = ACTIONS(3582), + [anon_sym_U_SQUOTE] = ACTIONS(3582), + [anon_sym_u8_SQUOTE] = ACTIONS(3582), + [anon_sym_SQUOTE] = ACTIONS(3582), + [anon_sym_L_DQUOTE] = ACTIONS(3582), + [anon_sym_u_DQUOTE] = ACTIONS(3582), + [anon_sym_U_DQUOTE] = ACTIONS(3582), + [anon_sym_u8_DQUOTE] = ACTIONS(3582), + [anon_sym_DQUOTE] = ACTIONS(3582), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [anon_sym_NULL] = ACTIONS(3580), + [anon_sym_nullptr] = ACTIONS(3580), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3580), + [anon_sym_decltype] = ACTIONS(3580), + [anon_sym_explicit] = ACTIONS(3580), + [anon_sym_export] = ACTIONS(3580), + [anon_sym_module] = ACTIONS(3580), + [anon_sym_import] = ACTIONS(3580), + [anon_sym_template] = ACTIONS(3580), + [anon_sym_operator] = ACTIONS(3580), + [anon_sym_try] = ACTIONS(3580), + [anon_sym_delete] = ACTIONS(3580), + [anon_sym_throw] = ACTIONS(3580), + [anon_sym_namespace] = ACTIONS(3580), + [anon_sym_static_assert] = ACTIONS(3580), + [anon_sym_concept] = ACTIONS(3580), + [anon_sym_co_return] = ACTIONS(3580), + [anon_sym_co_yield] = ACTIONS(3580), + [anon_sym_R_DQUOTE] = ACTIONS(3582), + [anon_sym_LR_DQUOTE] = ACTIONS(3582), + [anon_sym_uR_DQUOTE] = ACTIONS(3582), + [anon_sym_UR_DQUOTE] = ACTIONS(3582), + [anon_sym_u8R_DQUOTE] = ACTIONS(3582), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3580), + [anon_sym_requires] = ACTIONS(3580), + [anon_sym_CARET_CARET] = ACTIONS(3582), + [anon_sym_LBRACK_COLON] = ACTIONS(3582), + [sym_this] = ACTIONS(3580), }, - [STATE(723)] = { - [sym_identifier] = ACTIONS(3696), - [aux_sym_preproc_include_token1] = ACTIONS(3696), - [aux_sym_preproc_def_token1] = ACTIONS(3696), - [aux_sym_preproc_if_token1] = ACTIONS(3696), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3696), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3696), - [sym_preproc_directive] = ACTIONS(3696), - [anon_sym_LPAREN2] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_TILDE] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3696), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_AMP_AMP] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym_SEMI] = ACTIONS(3698), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3696), - [anon_sym_virtual] = ACTIONS(3696), - [anon_sym_extern] = ACTIONS(3696), - [anon_sym___attribute__] = ACTIONS(3696), - [anon_sym___attribute] = ACTIONS(3696), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3698), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3698), - [anon_sym___declspec] = ACTIONS(3696), - [anon_sym___based] = ACTIONS(3696), - [anon_sym___cdecl] = ACTIONS(3696), - [anon_sym___clrcall] = ACTIONS(3696), - [anon_sym___stdcall] = ACTIONS(3696), - [anon_sym___fastcall] = ACTIONS(3696), - [anon_sym___thiscall] = ACTIONS(3696), - [anon_sym___vectorcall] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3698), - [anon_sym_RBRACE] = ACTIONS(3698), - [anon_sym_signed] = ACTIONS(3696), - [anon_sym_unsigned] = ACTIONS(3696), - [anon_sym_long] = ACTIONS(3696), - [anon_sym_short] = ACTIONS(3696), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_static] = ACTIONS(3696), - [anon_sym_register] = ACTIONS(3696), - [anon_sym_inline] = ACTIONS(3696), - [anon_sym___inline] = ACTIONS(3696), - [anon_sym___inline__] = ACTIONS(3696), - [anon_sym___forceinline] = ACTIONS(3696), - [anon_sym_thread_local] = ACTIONS(3696), - [anon_sym___thread] = ACTIONS(3696), - [anon_sym_const] = ACTIONS(3696), - [anon_sym_constexpr] = ACTIONS(3696), - [anon_sym_volatile] = ACTIONS(3696), - [anon_sym_restrict] = ACTIONS(3696), - [anon_sym___restrict__] = ACTIONS(3696), - [anon_sym__Atomic] = ACTIONS(3696), - [anon_sym__Noreturn] = ACTIONS(3696), - [anon_sym_noreturn] = ACTIONS(3696), - [anon_sym__Nonnull] = ACTIONS(3696), - [anon_sym_mutable] = ACTIONS(3696), - [anon_sym_constinit] = ACTIONS(3696), - [anon_sym_consteval] = ACTIONS(3696), - [anon_sym_alignas] = ACTIONS(3696), - [anon_sym__Alignas] = ACTIONS(3696), - [sym_primitive_type] = ACTIONS(3696), - [anon_sym_enum] = ACTIONS(3696), - [anon_sym_class] = ACTIONS(3696), - [anon_sym_struct] = ACTIONS(3696), - [anon_sym_union] = ACTIONS(3696), - [anon_sym_if] = ACTIONS(3696), - [anon_sym_else] = ACTIONS(3696), - [anon_sym_switch] = ACTIONS(3696), - [anon_sym_case] = ACTIONS(3696), - [anon_sym_default] = ACTIONS(3696), - [anon_sym_while] = ACTIONS(3696), - [anon_sym_do] = ACTIONS(3696), - [anon_sym_for] = ACTIONS(3696), - [anon_sym_return] = ACTIONS(3696), - [anon_sym_break] = ACTIONS(3696), - [anon_sym_continue] = ACTIONS(3696), - [anon_sym_goto] = ACTIONS(3696), - [anon_sym___try] = ACTIONS(3696), - [anon_sym___leave] = ACTIONS(3696), - [anon_sym_not] = ACTIONS(3696), - [anon_sym_compl] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3698), - [anon_sym_sizeof] = ACTIONS(3696), - [anon_sym___alignof__] = ACTIONS(3696), - [anon_sym___alignof] = ACTIONS(3696), - [anon_sym__alignof] = ACTIONS(3696), - [anon_sym_alignof] = ACTIONS(3696), - [anon_sym__Alignof] = ACTIONS(3696), - [anon_sym_offsetof] = ACTIONS(3696), - [anon_sym__Generic] = ACTIONS(3696), - [anon_sym_typename] = ACTIONS(3696), - [anon_sym_asm] = ACTIONS(3696), - [anon_sym___asm__] = ACTIONS(3696), - [anon_sym___asm] = ACTIONS(3696), - [sym_number_literal] = ACTIONS(3698), - [anon_sym_L_SQUOTE] = ACTIONS(3698), - [anon_sym_u_SQUOTE] = ACTIONS(3698), - [anon_sym_U_SQUOTE] = ACTIONS(3698), - [anon_sym_u8_SQUOTE] = ACTIONS(3698), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_L_DQUOTE] = ACTIONS(3698), - [anon_sym_u_DQUOTE] = ACTIONS(3698), - [anon_sym_U_DQUOTE] = ACTIONS(3698), - [anon_sym_u8_DQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3698), - [sym_true] = ACTIONS(3696), - [sym_false] = ACTIONS(3696), - [anon_sym_NULL] = ACTIONS(3696), - [anon_sym_nullptr] = ACTIONS(3696), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3696), - [anon_sym_decltype] = ACTIONS(3696), - [anon_sym_explicit] = ACTIONS(3696), - [anon_sym_template] = ACTIONS(3696), - [anon_sym_operator] = ACTIONS(3696), - [anon_sym_try] = ACTIONS(3696), - [anon_sym_delete] = ACTIONS(3696), - [anon_sym_throw] = ACTIONS(3696), - [anon_sym_namespace] = ACTIONS(3696), - [anon_sym_static_assert] = ACTIONS(3696), - [anon_sym_concept] = ACTIONS(3696), - [anon_sym_co_return] = ACTIONS(3696), - [anon_sym_co_yield] = ACTIONS(3696), - [anon_sym_R_DQUOTE] = ACTIONS(3698), - [anon_sym_LR_DQUOTE] = ACTIONS(3698), - [anon_sym_uR_DQUOTE] = ACTIONS(3698), - [anon_sym_UR_DQUOTE] = ACTIONS(3698), - [anon_sym_u8R_DQUOTE] = ACTIONS(3698), - [anon_sym_co_await] = ACTIONS(3696), - [anon_sym_new] = ACTIONS(3696), - [anon_sym_requires] = ACTIONS(3696), - [anon_sym_CARET_CARET] = ACTIONS(3698), - [anon_sym_LBRACK_COLON] = ACTIONS(3698), - [sym_this] = ACTIONS(3696), + [STATE(602)] = { + [sym_identifier] = ACTIONS(3626), + [aux_sym_preproc_include_token1] = ACTIONS(3626), + [aux_sym_preproc_def_token1] = ACTIONS(3626), + [aux_sym_preproc_if_token1] = ACTIONS(3626), + [aux_sym_preproc_if_token2] = ACTIONS(3626), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), + [sym_preproc_directive] = ACTIONS(3626), + [anon_sym_LPAREN2] = ACTIONS(3628), + [anon_sym_BANG] = ACTIONS(3628), + [anon_sym_TILDE] = ACTIONS(3628), + [anon_sym_DASH] = ACTIONS(3626), + [anon_sym_PLUS] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3628), + [anon_sym_AMP_AMP] = ACTIONS(3628), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym___extension__] = ACTIONS(3626), + [anon_sym_typedef] = ACTIONS(3626), + [anon_sym_virtual] = ACTIONS(3626), + [anon_sym_extern] = ACTIONS(3626), + [anon_sym___attribute__] = ACTIONS(3626), + [anon_sym___attribute] = ACTIONS(3626), + [anon_sym_using] = ACTIONS(3626), + [anon_sym_COLON_COLON] = ACTIONS(3628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), + [anon_sym___declspec] = ACTIONS(3626), + [anon_sym___based] = ACTIONS(3626), + [anon_sym___cdecl] = ACTIONS(3626), + [anon_sym___clrcall] = ACTIONS(3626), + [anon_sym___stdcall] = ACTIONS(3626), + [anon_sym___fastcall] = ACTIONS(3626), + [anon_sym___thiscall] = ACTIONS(3626), + [anon_sym___vectorcall] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3628), + [anon_sym_signed] = ACTIONS(3626), + [anon_sym_unsigned] = ACTIONS(3626), + [anon_sym_long] = ACTIONS(3626), + [anon_sym_short] = ACTIONS(3626), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_static] = ACTIONS(3626), + [anon_sym_register] = ACTIONS(3626), + [anon_sym_inline] = ACTIONS(3626), + [anon_sym___inline] = ACTIONS(3626), + [anon_sym___inline__] = ACTIONS(3626), + [anon_sym___forceinline] = ACTIONS(3626), + [anon_sym_thread_local] = ACTIONS(3626), + [anon_sym___thread] = ACTIONS(3626), + [anon_sym_const] = ACTIONS(3626), + [anon_sym_constexpr] = ACTIONS(3626), + [anon_sym_volatile] = ACTIONS(3626), + [anon_sym_restrict] = ACTIONS(3626), + [anon_sym___restrict__] = ACTIONS(3626), + [anon_sym__Atomic] = ACTIONS(3626), + [anon_sym__Noreturn] = ACTIONS(3626), + [anon_sym_noreturn] = ACTIONS(3626), + [anon_sym__Nonnull] = ACTIONS(3626), + [anon_sym_mutable] = ACTIONS(3626), + [anon_sym_constinit] = ACTIONS(3626), + [anon_sym_consteval] = ACTIONS(3626), + [anon_sym_alignas] = ACTIONS(3626), + [anon_sym__Alignas] = ACTIONS(3626), + [sym_primitive_type] = ACTIONS(3626), + [anon_sym_enum] = ACTIONS(3626), + [anon_sym_class] = ACTIONS(3626), + [anon_sym_struct] = ACTIONS(3626), + [anon_sym_union] = ACTIONS(3626), + [anon_sym_if] = ACTIONS(3626), + [anon_sym_else] = ACTIONS(3626), + [anon_sym_switch] = ACTIONS(3626), + [anon_sym_case] = ACTIONS(3626), + [anon_sym_default] = ACTIONS(3626), + [anon_sym_while] = ACTIONS(3626), + [anon_sym_do] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3626), + [anon_sym_return] = ACTIONS(3626), + [anon_sym_break] = ACTIONS(3626), + [anon_sym_continue] = ACTIONS(3626), + [anon_sym_goto] = ACTIONS(3626), + [anon_sym___try] = ACTIONS(3626), + [anon_sym___leave] = ACTIONS(3626), + [anon_sym_not] = ACTIONS(3626), + [anon_sym_compl] = ACTIONS(3626), + [anon_sym_DASH_DASH] = ACTIONS(3628), + [anon_sym_PLUS_PLUS] = ACTIONS(3628), + [anon_sym_sizeof] = ACTIONS(3626), + [anon_sym___alignof__] = ACTIONS(3626), + [anon_sym___alignof] = ACTIONS(3626), + [anon_sym__alignof] = ACTIONS(3626), + [anon_sym_alignof] = ACTIONS(3626), + [anon_sym__Alignof] = ACTIONS(3626), + [anon_sym_offsetof] = ACTIONS(3626), + [anon_sym__Generic] = ACTIONS(3626), + [anon_sym_typename] = ACTIONS(3626), + [anon_sym_asm] = ACTIONS(3626), + [anon_sym___asm__] = ACTIONS(3626), + [anon_sym___asm] = ACTIONS(3626), + [sym_number_literal] = ACTIONS(3628), + [anon_sym_L_SQUOTE] = ACTIONS(3628), + [anon_sym_u_SQUOTE] = ACTIONS(3628), + [anon_sym_U_SQUOTE] = ACTIONS(3628), + [anon_sym_u8_SQUOTE] = ACTIONS(3628), + [anon_sym_SQUOTE] = ACTIONS(3628), + [anon_sym_L_DQUOTE] = ACTIONS(3628), + [anon_sym_u_DQUOTE] = ACTIONS(3628), + [anon_sym_U_DQUOTE] = ACTIONS(3628), + [anon_sym_u8_DQUOTE] = ACTIONS(3628), + [anon_sym_DQUOTE] = ACTIONS(3628), + [sym_true] = ACTIONS(3626), + [sym_false] = ACTIONS(3626), + [anon_sym_NULL] = ACTIONS(3626), + [anon_sym_nullptr] = ACTIONS(3626), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3626), + [anon_sym_decltype] = ACTIONS(3626), + [anon_sym_explicit] = ACTIONS(3626), + [anon_sym_export] = ACTIONS(3626), + [anon_sym_module] = ACTIONS(3626), + [anon_sym_import] = ACTIONS(3626), + [anon_sym_template] = ACTIONS(3626), + [anon_sym_operator] = ACTIONS(3626), + [anon_sym_try] = ACTIONS(3626), + [anon_sym_delete] = ACTIONS(3626), + [anon_sym_throw] = ACTIONS(3626), + [anon_sym_namespace] = ACTIONS(3626), + [anon_sym_static_assert] = ACTIONS(3626), + [anon_sym_concept] = ACTIONS(3626), + [anon_sym_co_return] = ACTIONS(3626), + [anon_sym_co_yield] = ACTIONS(3626), + [anon_sym_R_DQUOTE] = ACTIONS(3628), + [anon_sym_LR_DQUOTE] = ACTIONS(3628), + [anon_sym_uR_DQUOTE] = ACTIONS(3628), + [anon_sym_UR_DQUOTE] = ACTIONS(3628), + [anon_sym_u8R_DQUOTE] = ACTIONS(3628), + [anon_sym_co_await] = ACTIONS(3626), + [anon_sym_new] = ACTIONS(3626), + [anon_sym_requires] = ACTIONS(3626), + [anon_sym_CARET_CARET] = ACTIONS(3628), + [anon_sym_LBRACK_COLON] = ACTIONS(3628), + [sym_this] = ACTIONS(3626), }, - [STATE(724)] = { - [sym_identifier] = ACTIONS(3720), - [aux_sym_preproc_include_token1] = ACTIONS(3720), - [aux_sym_preproc_def_token1] = ACTIONS(3720), - [aux_sym_preproc_if_token1] = ACTIONS(3720), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3720), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3720), - [sym_preproc_directive] = ACTIONS(3720), - [anon_sym_LPAREN2] = ACTIONS(3722), - [anon_sym_BANG] = ACTIONS(3722), - [anon_sym_TILDE] = ACTIONS(3722), - [anon_sym_DASH] = ACTIONS(3720), - [anon_sym_PLUS] = ACTIONS(3720), - [anon_sym_STAR] = ACTIONS(3722), - [anon_sym_AMP_AMP] = ACTIONS(3722), - [anon_sym_AMP] = ACTIONS(3720), - [anon_sym_SEMI] = ACTIONS(3722), - [anon_sym___extension__] = ACTIONS(3720), - [anon_sym_typedef] = ACTIONS(3720), - [anon_sym_virtual] = ACTIONS(3720), - [anon_sym_extern] = ACTIONS(3720), - [anon_sym___attribute__] = ACTIONS(3720), - [anon_sym___attribute] = ACTIONS(3720), - [anon_sym_using] = ACTIONS(3720), - [anon_sym_COLON_COLON] = ACTIONS(3722), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3722), - [anon_sym___declspec] = ACTIONS(3720), - [anon_sym___based] = ACTIONS(3720), - [anon_sym___cdecl] = ACTIONS(3720), - [anon_sym___clrcall] = ACTIONS(3720), - [anon_sym___stdcall] = ACTIONS(3720), - [anon_sym___fastcall] = ACTIONS(3720), - [anon_sym___thiscall] = ACTIONS(3720), - [anon_sym___vectorcall] = ACTIONS(3720), - [anon_sym_LBRACE] = ACTIONS(3722), - [anon_sym_RBRACE] = ACTIONS(3722), - [anon_sym_signed] = ACTIONS(3720), - [anon_sym_unsigned] = ACTIONS(3720), - [anon_sym_long] = ACTIONS(3720), - [anon_sym_short] = ACTIONS(3720), - [anon_sym_LBRACK] = ACTIONS(3720), - [anon_sym_static] = ACTIONS(3720), - [anon_sym_register] = ACTIONS(3720), - [anon_sym_inline] = ACTIONS(3720), - [anon_sym___inline] = ACTIONS(3720), - [anon_sym___inline__] = ACTIONS(3720), - [anon_sym___forceinline] = ACTIONS(3720), - [anon_sym_thread_local] = ACTIONS(3720), - [anon_sym___thread] = ACTIONS(3720), - [anon_sym_const] = ACTIONS(3720), - [anon_sym_constexpr] = ACTIONS(3720), - [anon_sym_volatile] = ACTIONS(3720), - [anon_sym_restrict] = ACTIONS(3720), - [anon_sym___restrict__] = ACTIONS(3720), - [anon_sym__Atomic] = ACTIONS(3720), - [anon_sym__Noreturn] = ACTIONS(3720), - [anon_sym_noreturn] = ACTIONS(3720), - [anon_sym__Nonnull] = ACTIONS(3720), - [anon_sym_mutable] = ACTIONS(3720), - [anon_sym_constinit] = ACTIONS(3720), - [anon_sym_consteval] = ACTIONS(3720), - [anon_sym_alignas] = ACTIONS(3720), - [anon_sym__Alignas] = ACTIONS(3720), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3720), - [anon_sym_class] = ACTIONS(3720), - [anon_sym_struct] = ACTIONS(3720), - [anon_sym_union] = ACTIONS(3720), - [anon_sym_if] = ACTIONS(3720), - [anon_sym_else] = ACTIONS(3720), - [anon_sym_switch] = ACTIONS(3720), - [anon_sym_case] = ACTIONS(3720), - [anon_sym_default] = ACTIONS(3720), - [anon_sym_while] = ACTIONS(3720), - [anon_sym_do] = ACTIONS(3720), - [anon_sym_for] = ACTIONS(3720), - [anon_sym_return] = ACTIONS(3720), - [anon_sym_break] = ACTIONS(3720), - [anon_sym_continue] = ACTIONS(3720), - [anon_sym_goto] = ACTIONS(3720), - [anon_sym___try] = ACTIONS(3720), - [anon_sym___leave] = ACTIONS(3720), - [anon_sym_not] = ACTIONS(3720), - [anon_sym_compl] = ACTIONS(3720), - [anon_sym_DASH_DASH] = ACTIONS(3722), - [anon_sym_PLUS_PLUS] = ACTIONS(3722), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3720), - [anon_sym___alignof] = ACTIONS(3720), - [anon_sym__alignof] = ACTIONS(3720), - [anon_sym_alignof] = ACTIONS(3720), - [anon_sym__Alignof] = ACTIONS(3720), - [anon_sym_offsetof] = ACTIONS(3720), - [anon_sym__Generic] = ACTIONS(3720), - [anon_sym_typename] = ACTIONS(3720), - [anon_sym_asm] = ACTIONS(3720), - [anon_sym___asm__] = ACTIONS(3720), - [anon_sym___asm] = ACTIONS(3720), - [sym_number_literal] = ACTIONS(3722), - [anon_sym_L_SQUOTE] = ACTIONS(3722), - [anon_sym_u_SQUOTE] = ACTIONS(3722), - [anon_sym_U_SQUOTE] = ACTIONS(3722), - [anon_sym_u8_SQUOTE] = ACTIONS(3722), - [anon_sym_SQUOTE] = ACTIONS(3722), - [anon_sym_L_DQUOTE] = ACTIONS(3722), - [anon_sym_u_DQUOTE] = ACTIONS(3722), - [anon_sym_U_DQUOTE] = ACTIONS(3722), - [anon_sym_u8_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE] = ACTIONS(3722), - [sym_true] = ACTIONS(3720), - [sym_false] = ACTIONS(3720), - [anon_sym_NULL] = ACTIONS(3720), - [anon_sym_nullptr] = ACTIONS(3720), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3720), - [anon_sym_decltype] = ACTIONS(3720), - [anon_sym_explicit] = ACTIONS(3720), - [anon_sym_template] = ACTIONS(3720), - [anon_sym_operator] = ACTIONS(3720), - [anon_sym_try] = ACTIONS(3720), - [anon_sym_delete] = ACTIONS(3720), - [anon_sym_throw] = ACTIONS(3720), - [anon_sym_namespace] = ACTIONS(3720), - [anon_sym_static_assert] = ACTIONS(3720), - [anon_sym_concept] = ACTIONS(3720), - [anon_sym_co_return] = ACTIONS(3720), - [anon_sym_co_yield] = ACTIONS(3720), - [anon_sym_R_DQUOTE] = ACTIONS(3722), - [anon_sym_LR_DQUOTE] = ACTIONS(3722), - [anon_sym_uR_DQUOTE] = ACTIONS(3722), - [anon_sym_UR_DQUOTE] = ACTIONS(3722), - [anon_sym_u8R_DQUOTE] = ACTIONS(3722), - [anon_sym_co_await] = ACTIONS(3720), - [anon_sym_new] = ACTIONS(3720), - [anon_sym_requires] = ACTIONS(3720), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(3722), - [sym_this] = ACTIONS(3720), + [STATE(603)] = { + [ts_builtin_sym_end] = ACTIONS(3620), + [sym_identifier] = ACTIONS(3618), + [aux_sym_preproc_include_token1] = ACTIONS(3618), + [aux_sym_preproc_def_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), + [sym_preproc_directive] = ACTIONS(3618), + [anon_sym_LPAREN2] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_AMP] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym___extension__] = ACTIONS(3618), + [anon_sym_typedef] = ACTIONS(3618), + [anon_sym_virtual] = ACTIONS(3618), + [anon_sym_extern] = ACTIONS(3618), + [anon_sym___attribute__] = ACTIONS(3618), + [anon_sym___attribute] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_COLON_COLON] = ACTIONS(3620), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), + [anon_sym___declspec] = ACTIONS(3618), + [anon_sym___based] = ACTIONS(3618), + [anon_sym___cdecl] = ACTIONS(3618), + [anon_sym___clrcall] = ACTIONS(3618), + [anon_sym___stdcall] = ACTIONS(3618), + [anon_sym___fastcall] = ACTIONS(3618), + [anon_sym___thiscall] = ACTIONS(3618), + [anon_sym___vectorcall] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_signed] = ACTIONS(3618), + [anon_sym_unsigned] = ACTIONS(3618), + [anon_sym_long] = ACTIONS(3618), + [anon_sym_short] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_register] = ACTIONS(3618), + [anon_sym_inline] = ACTIONS(3618), + [anon_sym___inline] = ACTIONS(3618), + [anon_sym___inline__] = ACTIONS(3618), + [anon_sym___forceinline] = ACTIONS(3618), + [anon_sym_thread_local] = ACTIONS(3618), + [anon_sym___thread] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_constexpr] = ACTIONS(3618), + [anon_sym_volatile] = ACTIONS(3618), + [anon_sym_restrict] = ACTIONS(3618), + [anon_sym___restrict__] = ACTIONS(3618), + [anon_sym__Atomic] = ACTIONS(3618), + [anon_sym__Noreturn] = ACTIONS(3618), + [anon_sym_noreturn] = ACTIONS(3618), + [anon_sym__Nonnull] = ACTIONS(3618), + [anon_sym_mutable] = ACTIONS(3618), + [anon_sym_constinit] = ACTIONS(3618), + [anon_sym_consteval] = ACTIONS(3618), + [anon_sym_alignas] = ACTIONS(3618), + [anon_sym__Alignas] = ACTIONS(3618), + [sym_primitive_type] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_struct] = ACTIONS(3618), + [anon_sym_union] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_else] = ACTIONS(3618), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_case] = ACTIONS(3618), + [anon_sym_default] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_goto] = ACTIONS(3618), + [anon_sym___try] = ACTIONS(3618), + [anon_sym___leave] = ACTIONS(3618), + [anon_sym_not] = ACTIONS(3618), + [anon_sym_compl] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_sizeof] = ACTIONS(3618), + [anon_sym___alignof__] = ACTIONS(3618), + [anon_sym___alignof] = ACTIONS(3618), + [anon_sym__alignof] = ACTIONS(3618), + [anon_sym_alignof] = ACTIONS(3618), + [anon_sym__Alignof] = ACTIONS(3618), + [anon_sym_offsetof] = ACTIONS(3618), + [anon_sym__Generic] = ACTIONS(3618), + [anon_sym_typename] = ACTIONS(3618), + [anon_sym_asm] = ACTIONS(3618), + [anon_sym___asm__] = ACTIONS(3618), + [anon_sym___asm] = ACTIONS(3618), + [sym_number_literal] = ACTIONS(3620), + [anon_sym_L_SQUOTE] = ACTIONS(3620), + [anon_sym_u_SQUOTE] = ACTIONS(3620), + [anon_sym_U_SQUOTE] = ACTIONS(3620), + [anon_sym_u8_SQUOTE] = ACTIONS(3620), + [anon_sym_SQUOTE] = ACTIONS(3620), + [anon_sym_L_DQUOTE] = ACTIONS(3620), + [anon_sym_u_DQUOTE] = ACTIONS(3620), + [anon_sym_U_DQUOTE] = ACTIONS(3620), + [anon_sym_u8_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [anon_sym_NULL] = ACTIONS(3618), + [anon_sym_nullptr] = ACTIONS(3618), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3618), + [anon_sym_decltype] = ACTIONS(3618), + [anon_sym_explicit] = ACTIONS(3618), + [anon_sym_export] = ACTIONS(3618), + [anon_sym_module] = ACTIONS(3618), + [anon_sym_import] = ACTIONS(3618), + [anon_sym_template] = ACTIONS(3618), + [anon_sym_operator] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_namespace] = ACTIONS(3618), + [anon_sym_static_assert] = ACTIONS(3618), + [anon_sym_concept] = ACTIONS(3618), + [anon_sym_co_return] = ACTIONS(3618), + [anon_sym_co_yield] = ACTIONS(3618), + [anon_sym_R_DQUOTE] = ACTIONS(3620), + [anon_sym_LR_DQUOTE] = ACTIONS(3620), + [anon_sym_uR_DQUOTE] = ACTIONS(3620), + [anon_sym_UR_DQUOTE] = ACTIONS(3620), + [anon_sym_u8R_DQUOTE] = ACTIONS(3620), + [anon_sym_co_await] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_requires] = ACTIONS(3618), + [anon_sym_CARET_CARET] = ACTIONS(3620), + [anon_sym_LBRACK_COLON] = ACTIONS(3620), + [sym_this] = ACTIONS(3618), }, - [STATE(725)] = { - [sym_identifier] = ACTIONS(3732), - [aux_sym_preproc_include_token1] = ACTIONS(3732), - [aux_sym_preproc_def_token1] = ACTIONS(3732), - [aux_sym_preproc_if_token1] = ACTIONS(3732), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3732), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3732), - [sym_preproc_directive] = ACTIONS(3732), - [anon_sym_LPAREN2] = ACTIONS(3734), - [anon_sym_BANG] = ACTIONS(3734), - [anon_sym_TILDE] = ACTIONS(3734), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3734), - [anon_sym_AMP_AMP] = ACTIONS(3734), - [anon_sym_AMP] = ACTIONS(3732), - [anon_sym_SEMI] = ACTIONS(3734), - [anon_sym___extension__] = ACTIONS(3732), - [anon_sym_typedef] = ACTIONS(3732), - [anon_sym_virtual] = ACTIONS(3732), - [anon_sym_extern] = ACTIONS(3732), - [anon_sym___attribute__] = ACTIONS(3732), - [anon_sym___attribute] = ACTIONS(3732), - [anon_sym_using] = ACTIONS(3732), - [anon_sym_COLON_COLON] = ACTIONS(3734), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3734), - [anon_sym___declspec] = ACTIONS(3732), - [anon_sym___based] = ACTIONS(3732), - [anon_sym___cdecl] = ACTIONS(3732), - [anon_sym___clrcall] = ACTIONS(3732), - [anon_sym___stdcall] = ACTIONS(3732), - [anon_sym___fastcall] = ACTIONS(3732), - [anon_sym___thiscall] = ACTIONS(3732), - [anon_sym___vectorcall] = ACTIONS(3732), - [anon_sym_LBRACE] = ACTIONS(3734), - [anon_sym_RBRACE] = ACTIONS(3734), - [anon_sym_signed] = ACTIONS(3732), - [anon_sym_unsigned] = ACTIONS(3732), - [anon_sym_long] = ACTIONS(3732), - [anon_sym_short] = ACTIONS(3732), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_static] = ACTIONS(3732), - [anon_sym_register] = ACTIONS(3732), - [anon_sym_inline] = ACTIONS(3732), - [anon_sym___inline] = ACTIONS(3732), - [anon_sym___inline__] = ACTIONS(3732), - [anon_sym___forceinline] = ACTIONS(3732), - [anon_sym_thread_local] = ACTIONS(3732), - [anon_sym___thread] = ACTIONS(3732), - [anon_sym_const] = ACTIONS(3732), - [anon_sym_constexpr] = ACTIONS(3732), - [anon_sym_volatile] = ACTIONS(3732), - [anon_sym_restrict] = ACTIONS(3732), - [anon_sym___restrict__] = ACTIONS(3732), - [anon_sym__Atomic] = ACTIONS(3732), - [anon_sym__Noreturn] = ACTIONS(3732), - [anon_sym_noreturn] = ACTIONS(3732), - [anon_sym__Nonnull] = ACTIONS(3732), - [anon_sym_mutable] = ACTIONS(3732), - [anon_sym_constinit] = ACTIONS(3732), - [anon_sym_consteval] = ACTIONS(3732), - [anon_sym_alignas] = ACTIONS(3732), - [anon_sym__Alignas] = ACTIONS(3732), - [sym_primitive_type] = ACTIONS(3732), - [anon_sym_enum] = ACTIONS(3732), - [anon_sym_class] = ACTIONS(3732), - [anon_sym_struct] = ACTIONS(3732), - [anon_sym_union] = ACTIONS(3732), - [anon_sym_if] = ACTIONS(3732), - [anon_sym_else] = ACTIONS(3732), - [anon_sym_switch] = ACTIONS(3732), - [anon_sym_case] = ACTIONS(3732), - [anon_sym_default] = ACTIONS(3732), - [anon_sym_while] = ACTIONS(3732), - [anon_sym_do] = ACTIONS(3732), - [anon_sym_for] = ACTIONS(3732), - [anon_sym_return] = ACTIONS(3732), - [anon_sym_break] = ACTIONS(3732), - [anon_sym_continue] = ACTIONS(3732), - [anon_sym_goto] = ACTIONS(3732), - [anon_sym___try] = ACTIONS(3732), - [anon_sym___leave] = ACTIONS(3732), - [anon_sym_not] = ACTIONS(3732), - [anon_sym_compl] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3734), - [anon_sym_PLUS_PLUS] = ACTIONS(3734), - [anon_sym_sizeof] = ACTIONS(3732), - [anon_sym___alignof__] = ACTIONS(3732), - [anon_sym___alignof] = ACTIONS(3732), - [anon_sym__alignof] = ACTIONS(3732), - [anon_sym_alignof] = ACTIONS(3732), - [anon_sym__Alignof] = ACTIONS(3732), - [anon_sym_offsetof] = ACTIONS(3732), - [anon_sym__Generic] = ACTIONS(3732), - [anon_sym_typename] = ACTIONS(3732), - [anon_sym_asm] = ACTIONS(3732), - [anon_sym___asm__] = ACTIONS(3732), - [anon_sym___asm] = ACTIONS(3732), - [sym_number_literal] = ACTIONS(3734), - [anon_sym_L_SQUOTE] = ACTIONS(3734), - [anon_sym_u_SQUOTE] = ACTIONS(3734), - [anon_sym_U_SQUOTE] = ACTIONS(3734), - [anon_sym_u8_SQUOTE] = ACTIONS(3734), - [anon_sym_SQUOTE] = ACTIONS(3734), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3732), - [sym_false] = ACTIONS(3732), - [anon_sym_NULL] = ACTIONS(3732), - [anon_sym_nullptr] = ACTIONS(3732), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3732), - [anon_sym_decltype] = ACTIONS(3732), - [anon_sym_explicit] = ACTIONS(3732), - [anon_sym_template] = ACTIONS(3732), - [anon_sym_operator] = ACTIONS(3732), - [anon_sym_try] = ACTIONS(3732), - [anon_sym_delete] = ACTIONS(3732), - [anon_sym_throw] = ACTIONS(3732), - [anon_sym_namespace] = ACTIONS(3732), - [anon_sym_static_assert] = ACTIONS(3732), - [anon_sym_concept] = ACTIONS(3732), - [anon_sym_co_return] = ACTIONS(3732), - [anon_sym_co_yield] = ACTIONS(3732), - [anon_sym_R_DQUOTE] = ACTIONS(3734), - [anon_sym_LR_DQUOTE] = ACTIONS(3734), - [anon_sym_uR_DQUOTE] = ACTIONS(3734), - [anon_sym_UR_DQUOTE] = ACTIONS(3734), - [anon_sym_u8R_DQUOTE] = ACTIONS(3734), - [anon_sym_co_await] = ACTIONS(3732), - [anon_sym_new] = ACTIONS(3732), - [anon_sym_requires] = ACTIONS(3732), - [anon_sym_CARET_CARET] = ACTIONS(3734), - [anon_sym_LBRACK_COLON] = ACTIONS(3734), - [sym_this] = ACTIONS(3732), + [STATE(604)] = { + [sym_identifier] = ACTIONS(3560), + [aux_sym_preproc_include_token1] = ACTIONS(3560), + [aux_sym_preproc_def_token1] = ACTIONS(3560), + [aux_sym_preproc_if_token1] = ACTIONS(3560), + [aux_sym_preproc_if_token2] = ACTIONS(3560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3560), + [sym_preproc_directive] = ACTIONS(3560), + [anon_sym_LPAREN2] = ACTIONS(3562), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3560), + [anon_sym_PLUS] = ACTIONS(3560), + [anon_sym_STAR] = ACTIONS(3562), + [anon_sym_AMP_AMP] = ACTIONS(3562), + [anon_sym_AMP] = ACTIONS(3560), + [anon_sym_SEMI] = ACTIONS(3562), + [anon_sym___extension__] = ACTIONS(3560), + [anon_sym_typedef] = ACTIONS(3560), + [anon_sym_virtual] = ACTIONS(3560), + [anon_sym_extern] = ACTIONS(3560), + [anon_sym___attribute__] = ACTIONS(3560), + [anon_sym___attribute] = ACTIONS(3560), + [anon_sym_using] = ACTIONS(3560), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3562), + [anon_sym___declspec] = ACTIONS(3560), + [anon_sym___based] = ACTIONS(3560), + [anon_sym___cdecl] = ACTIONS(3560), + [anon_sym___clrcall] = ACTIONS(3560), + [anon_sym___stdcall] = ACTIONS(3560), + [anon_sym___fastcall] = ACTIONS(3560), + [anon_sym___thiscall] = ACTIONS(3560), + [anon_sym___vectorcall] = ACTIONS(3560), + [anon_sym_LBRACE] = ACTIONS(3562), + [anon_sym_signed] = ACTIONS(3560), + [anon_sym_unsigned] = ACTIONS(3560), + [anon_sym_long] = ACTIONS(3560), + [anon_sym_short] = ACTIONS(3560), + [anon_sym_LBRACK] = ACTIONS(3560), + [anon_sym_static] = ACTIONS(3560), + [anon_sym_register] = ACTIONS(3560), + [anon_sym_inline] = ACTIONS(3560), + [anon_sym___inline] = ACTIONS(3560), + [anon_sym___inline__] = ACTIONS(3560), + [anon_sym___forceinline] = ACTIONS(3560), + [anon_sym_thread_local] = ACTIONS(3560), + [anon_sym___thread] = ACTIONS(3560), + [anon_sym_const] = ACTIONS(3560), + [anon_sym_constexpr] = ACTIONS(3560), + [anon_sym_volatile] = ACTIONS(3560), + [anon_sym_restrict] = ACTIONS(3560), + [anon_sym___restrict__] = ACTIONS(3560), + [anon_sym__Atomic] = ACTIONS(3560), + [anon_sym__Noreturn] = ACTIONS(3560), + [anon_sym_noreturn] = ACTIONS(3560), + [anon_sym__Nonnull] = ACTIONS(3560), + [anon_sym_mutable] = ACTIONS(3560), + [anon_sym_constinit] = ACTIONS(3560), + [anon_sym_consteval] = ACTIONS(3560), + [anon_sym_alignas] = ACTIONS(3560), + [anon_sym__Alignas] = ACTIONS(3560), + [sym_primitive_type] = ACTIONS(3560), + [anon_sym_enum] = ACTIONS(3560), + [anon_sym_class] = ACTIONS(3560), + [anon_sym_struct] = ACTIONS(3560), + [anon_sym_union] = ACTIONS(3560), + [anon_sym_if] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(3560), + [anon_sym_switch] = ACTIONS(3560), + [anon_sym_case] = ACTIONS(3560), + [anon_sym_default] = ACTIONS(3560), + [anon_sym_while] = ACTIONS(3560), + [anon_sym_do] = ACTIONS(3560), + [anon_sym_for] = ACTIONS(3560), + [anon_sym_return] = ACTIONS(3560), + [anon_sym_break] = ACTIONS(3560), + [anon_sym_continue] = ACTIONS(3560), + [anon_sym_goto] = ACTIONS(3560), + [anon_sym___try] = ACTIONS(3560), + [anon_sym___leave] = ACTIONS(3560), + [anon_sym_not] = ACTIONS(3560), + [anon_sym_compl] = ACTIONS(3560), + [anon_sym_DASH_DASH] = ACTIONS(3562), + [anon_sym_PLUS_PLUS] = ACTIONS(3562), + [anon_sym_sizeof] = ACTIONS(3560), + [anon_sym___alignof__] = ACTIONS(3560), + [anon_sym___alignof] = ACTIONS(3560), + [anon_sym__alignof] = ACTIONS(3560), + [anon_sym_alignof] = ACTIONS(3560), + [anon_sym__Alignof] = ACTIONS(3560), + [anon_sym_offsetof] = ACTIONS(3560), + [anon_sym__Generic] = ACTIONS(3560), + [anon_sym_typename] = ACTIONS(3560), + [anon_sym_asm] = ACTIONS(3560), + [anon_sym___asm__] = ACTIONS(3560), + [anon_sym___asm] = ACTIONS(3560), + [sym_number_literal] = ACTIONS(3562), + [anon_sym_L_SQUOTE] = ACTIONS(3562), + [anon_sym_u_SQUOTE] = ACTIONS(3562), + [anon_sym_U_SQUOTE] = ACTIONS(3562), + [anon_sym_u8_SQUOTE] = ACTIONS(3562), + [anon_sym_SQUOTE] = ACTIONS(3562), + [anon_sym_L_DQUOTE] = ACTIONS(3562), + [anon_sym_u_DQUOTE] = ACTIONS(3562), + [anon_sym_U_DQUOTE] = ACTIONS(3562), + [anon_sym_u8_DQUOTE] = ACTIONS(3562), + [anon_sym_DQUOTE] = ACTIONS(3562), + [sym_true] = ACTIONS(3560), + [sym_false] = ACTIONS(3560), + [anon_sym_NULL] = ACTIONS(3560), + [anon_sym_nullptr] = ACTIONS(3560), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3560), + [anon_sym_decltype] = ACTIONS(3560), + [anon_sym_explicit] = ACTIONS(3560), + [anon_sym_export] = ACTIONS(3560), + [anon_sym_module] = ACTIONS(3560), + [anon_sym_import] = ACTIONS(3560), + [anon_sym_template] = ACTIONS(3560), + [anon_sym_operator] = ACTIONS(3560), + [anon_sym_try] = ACTIONS(3560), + [anon_sym_delete] = ACTIONS(3560), + [anon_sym_throw] = ACTIONS(3560), + [anon_sym_namespace] = ACTIONS(3560), + [anon_sym_static_assert] = ACTIONS(3560), + [anon_sym_concept] = ACTIONS(3560), + [anon_sym_co_return] = ACTIONS(3560), + [anon_sym_co_yield] = ACTIONS(3560), + [anon_sym_R_DQUOTE] = ACTIONS(3562), + [anon_sym_LR_DQUOTE] = ACTIONS(3562), + [anon_sym_uR_DQUOTE] = ACTIONS(3562), + [anon_sym_UR_DQUOTE] = ACTIONS(3562), + [anon_sym_u8R_DQUOTE] = ACTIONS(3562), + [anon_sym_co_await] = ACTIONS(3560), + [anon_sym_new] = ACTIONS(3560), + [anon_sym_requires] = ACTIONS(3560), + [anon_sym_CARET_CARET] = ACTIONS(3562), + [anon_sym_LBRACK_COLON] = ACTIONS(3562), + [sym_this] = ACTIONS(3560), }, - [STATE(726)] = { - [ts_builtin_sym_end] = ACTIONS(4154), - [sym_identifier] = ACTIONS(4152), - [aux_sym_preproc_include_token1] = ACTIONS(4152), - [aux_sym_preproc_def_token1] = ACTIONS(4152), - [aux_sym_preproc_if_token1] = ACTIONS(4152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4152), - [sym_preproc_directive] = ACTIONS(4152), - [anon_sym_LPAREN2] = ACTIONS(4154), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_TILDE] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4152), - [anon_sym_PLUS] = ACTIONS(4152), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_AMP_AMP] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4152), - [anon_sym_SEMI] = ACTIONS(4154), - [anon_sym___extension__] = ACTIONS(4152), - [anon_sym_typedef] = ACTIONS(4152), - [anon_sym_virtual] = ACTIONS(4152), - [anon_sym_extern] = ACTIONS(4152), - [anon_sym___attribute__] = ACTIONS(4152), - [anon_sym___attribute] = ACTIONS(4152), - [anon_sym_using] = ACTIONS(4152), - [anon_sym_COLON_COLON] = ACTIONS(4154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4154), - [anon_sym___declspec] = ACTIONS(4152), - [anon_sym___based] = ACTIONS(4152), - [anon_sym___cdecl] = ACTIONS(4152), - [anon_sym___clrcall] = ACTIONS(4152), - [anon_sym___stdcall] = ACTIONS(4152), - [anon_sym___fastcall] = ACTIONS(4152), - [anon_sym___thiscall] = ACTIONS(4152), - [anon_sym___vectorcall] = ACTIONS(4152), - [anon_sym_LBRACE] = ACTIONS(4154), - [anon_sym_signed] = ACTIONS(4152), - [anon_sym_unsigned] = ACTIONS(4152), - [anon_sym_long] = ACTIONS(4152), - [anon_sym_short] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_static] = ACTIONS(4152), - [anon_sym_register] = ACTIONS(4152), - [anon_sym_inline] = ACTIONS(4152), - [anon_sym___inline] = ACTIONS(4152), - [anon_sym___inline__] = ACTIONS(4152), - [anon_sym___forceinline] = ACTIONS(4152), - [anon_sym_thread_local] = ACTIONS(4152), - [anon_sym___thread] = ACTIONS(4152), - [anon_sym_const] = ACTIONS(4152), - [anon_sym_constexpr] = ACTIONS(4152), - [anon_sym_volatile] = ACTIONS(4152), - [anon_sym_restrict] = ACTIONS(4152), - [anon_sym___restrict__] = ACTIONS(4152), - [anon_sym__Atomic] = ACTIONS(4152), - [anon_sym__Noreturn] = ACTIONS(4152), - [anon_sym_noreturn] = ACTIONS(4152), - [anon_sym__Nonnull] = ACTIONS(4152), - [anon_sym_mutable] = ACTIONS(4152), - [anon_sym_constinit] = ACTIONS(4152), - [anon_sym_consteval] = ACTIONS(4152), - [anon_sym_alignas] = ACTIONS(4152), - [anon_sym__Alignas] = ACTIONS(4152), - [sym_primitive_type] = ACTIONS(4152), - [anon_sym_enum] = ACTIONS(4152), - [anon_sym_class] = ACTIONS(4152), - [anon_sym_struct] = ACTIONS(4152), - [anon_sym_union] = ACTIONS(4152), - [anon_sym_if] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(4152), - [anon_sym_case] = ACTIONS(4152), - [anon_sym_default] = ACTIONS(4152), - [anon_sym_while] = ACTIONS(4152), - [anon_sym_do] = ACTIONS(4152), - [anon_sym_for] = ACTIONS(4152), - [anon_sym_return] = ACTIONS(4152), - [anon_sym_break] = ACTIONS(4152), - [anon_sym_continue] = ACTIONS(4152), - [anon_sym_goto] = ACTIONS(4152), - [anon_sym_not] = ACTIONS(4152), - [anon_sym_compl] = ACTIONS(4152), - [anon_sym_DASH_DASH] = ACTIONS(4154), - [anon_sym_PLUS_PLUS] = ACTIONS(4154), - [anon_sym_sizeof] = ACTIONS(4152), - [anon_sym___alignof__] = ACTIONS(4152), - [anon_sym___alignof] = ACTIONS(4152), - [anon_sym__alignof] = ACTIONS(4152), - [anon_sym_alignof] = ACTIONS(4152), - [anon_sym__Alignof] = ACTIONS(4152), - [anon_sym_offsetof] = ACTIONS(4152), - [anon_sym__Generic] = ACTIONS(4152), - [anon_sym_typename] = ACTIONS(4152), - [anon_sym_asm] = ACTIONS(4152), - [anon_sym___asm__] = ACTIONS(4152), - [anon_sym___asm] = ACTIONS(4152), - [sym_number_literal] = ACTIONS(4154), - [anon_sym_L_SQUOTE] = ACTIONS(4154), - [anon_sym_u_SQUOTE] = ACTIONS(4154), - [anon_sym_U_SQUOTE] = ACTIONS(4154), - [anon_sym_u8_SQUOTE] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4154), - [anon_sym_L_DQUOTE] = ACTIONS(4154), - [anon_sym_u_DQUOTE] = ACTIONS(4154), - [anon_sym_U_DQUOTE] = ACTIONS(4154), - [anon_sym_u8_DQUOTE] = ACTIONS(4154), - [anon_sym_DQUOTE] = ACTIONS(4154), - [sym_true] = ACTIONS(4152), - [sym_false] = ACTIONS(4152), - [anon_sym_NULL] = ACTIONS(4152), - [anon_sym_nullptr] = ACTIONS(4152), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4152), - [anon_sym_decltype] = ACTIONS(4152), - [anon_sym_explicit] = ACTIONS(4152), - [anon_sym_export] = ACTIONS(4152), - [anon_sym_module] = ACTIONS(4152), - [anon_sym_import] = ACTIONS(4152), - [anon_sym_template] = ACTIONS(4152), - [anon_sym_operator] = ACTIONS(4152), - [anon_sym_try] = ACTIONS(4152), - [anon_sym_delete] = ACTIONS(4152), - [anon_sym_throw] = ACTIONS(4152), - [anon_sym_namespace] = ACTIONS(4152), - [anon_sym_static_assert] = ACTIONS(4152), - [anon_sym_concept] = ACTIONS(4152), - [anon_sym_co_return] = ACTIONS(4152), - [anon_sym_co_yield] = ACTIONS(4152), - [anon_sym_R_DQUOTE] = ACTIONS(4154), - [anon_sym_LR_DQUOTE] = ACTIONS(4154), - [anon_sym_uR_DQUOTE] = ACTIONS(4154), - [anon_sym_UR_DQUOTE] = ACTIONS(4154), - [anon_sym_u8R_DQUOTE] = ACTIONS(4154), - [anon_sym_co_await] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_requires] = ACTIONS(4152), - [anon_sym_CARET_CARET] = ACTIONS(4154), - [anon_sym_LBRACK_COLON] = ACTIONS(4154), - [sym_this] = ACTIONS(4152), - }, - [STATE(727)] = { - [ts_builtin_sym_end] = ACTIONS(4004), - [sym_identifier] = ACTIONS(4002), - [aux_sym_preproc_include_token1] = ACTIONS(4002), - [aux_sym_preproc_def_token1] = ACTIONS(4002), - [aux_sym_preproc_if_token1] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), - [sym_preproc_directive] = ACTIONS(4002), - [anon_sym_LPAREN2] = ACTIONS(4004), - [anon_sym_BANG] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(4004), - [anon_sym_DASH] = ACTIONS(4002), - [anon_sym_PLUS] = ACTIONS(4002), - [anon_sym_STAR] = ACTIONS(4004), - [anon_sym_AMP_AMP] = ACTIONS(4004), - [anon_sym_AMP] = ACTIONS(4002), - [anon_sym_SEMI] = ACTIONS(4004), - [anon_sym___extension__] = ACTIONS(4002), - [anon_sym_typedef] = ACTIONS(4002), - [anon_sym_virtual] = ACTIONS(4002), - [anon_sym_extern] = ACTIONS(4002), - [anon_sym___attribute__] = ACTIONS(4002), - [anon_sym___attribute] = ACTIONS(4002), - [anon_sym_using] = ACTIONS(4002), - [anon_sym_COLON_COLON] = ACTIONS(4004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), - [anon_sym___declspec] = ACTIONS(4002), - [anon_sym___based] = ACTIONS(4002), - [anon_sym___cdecl] = ACTIONS(4002), - [anon_sym___clrcall] = ACTIONS(4002), - [anon_sym___stdcall] = ACTIONS(4002), - [anon_sym___fastcall] = ACTIONS(4002), - [anon_sym___thiscall] = ACTIONS(4002), - [anon_sym___vectorcall] = ACTIONS(4002), - [anon_sym_LBRACE] = ACTIONS(4004), - [anon_sym_signed] = ACTIONS(4002), - [anon_sym_unsigned] = ACTIONS(4002), - [anon_sym_long] = ACTIONS(4002), - [anon_sym_short] = ACTIONS(4002), - [anon_sym_LBRACK] = ACTIONS(4002), - [anon_sym_static] = ACTIONS(4002), - [anon_sym_register] = ACTIONS(4002), - [anon_sym_inline] = ACTIONS(4002), - [anon_sym___inline] = ACTIONS(4002), - [anon_sym___inline__] = ACTIONS(4002), - [anon_sym___forceinline] = ACTIONS(4002), - [anon_sym_thread_local] = ACTIONS(4002), - [anon_sym___thread] = ACTIONS(4002), - [anon_sym_const] = ACTIONS(4002), - [anon_sym_constexpr] = ACTIONS(4002), - [anon_sym_volatile] = ACTIONS(4002), - [anon_sym_restrict] = ACTIONS(4002), - [anon_sym___restrict__] = ACTIONS(4002), - [anon_sym__Atomic] = ACTIONS(4002), - [anon_sym__Noreturn] = ACTIONS(4002), - [anon_sym_noreturn] = ACTIONS(4002), - [anon_sym__Nonnull] = ACTIONS(4002), - [anon_sym_mutable] = ACTIONS(4002), - [anon_sym_constinit] = ACTIONS(4002), - [anon_sym_consteval] = ACTIONS(4002), - [anon_sym_alignas] = ACTIONS(4002), - [anon_sym__Alignas] = ACTIONS(4002), - [sym_primitive_type] = ACTIONS(4002), - [anon_sym_enum] = ACTIONS(4002), - [anon_sym_class] = ACTIONS(4002), - [anon_sym_struct] = ACTIONS(4002), - [anon_sym_union] = ACTIONS(4002), - [anon_sym_if] = ACTIONS(4002), - [anon_sym_switch] = ACTIONS(4002), - [anon_sym_case] = ACTIONS(4002), - [anon_sym_default] = ACTIONS(4002), - [anon_sym_while] = ACTIONS(4002), - [anon_sym_do] = ACTIONS(4002), - [anon_sym_for] = ACTIONS(4002), - [anon_sym_return] = ACTIONS(4002), - [anon_sym_break] = ACTIONS(4002), - [anon_sym_continue] = ACTIONS(4002), - [anon_sym_goto] = ACTIONS(4002), - [anon_sym_not] = ACTIONS(4002), - [anon_sym_compl] = ACTIONS(4002), - [anon_sym_DASH_DASH] = ACTIONS(4004), - [anon_sym_PLUS_PLUS] = ACTIONS(4004), - [anon_sym_sizeof] = ACTIONS(4002), - [anon_sym___alignof__] = ACTIONS(4002), - [anon_sym___alignof] = ACTIONS(4002), - [anon_sym__alignof] = ACTIONS(4002), - [anon_sym_alignof] = ACTIONS(4002), - [anon_sym__Alignof] = ACTIONS(4002), - [anon_sym_offsetof] = ACTIONS(4002), - [anon_sym__Generic] = ACTIONS(4002), - [anon_sym_typename] = ACTIONS(4002), - [anon_sym_asm] = ACTIONS(4002), - [anon_sym___asm__] = ACTIONS(4002), - [anon_sym___asm] = ACTIONS(4002), - [sym_number_literal] = ACTIONS(4004), - [anon_sym_L_SQUOTE] = ACTIONS(4004), - [anon_sym_u_SQUOTE] = ACTIONS(4004), - [anon_sym_U_SQUOTE] = ACTIONS(4004), - [anon_sym_u8_SQUOTE] = ACTIONS(4004), - [anon_sym_SQUOTE] = ACTIONS(4004), - [anon_sym_L_DQUOTE] = ACTIONS(4004), - [anon_sym_u_DQUOTE] = ACTIONS(4004), - [anon_sym_U_DQUOTE] = ACTIONS(4004), - [anon_sym_u8_DQUOTE] = ACTIONS(4004), - [anon_sym_DQUOTE] = ACTIONS(4004), - [sym_true] = ACTIONS(4002), - [sym_false] = ACTIONS(4002), - [anon_sym_NULL] = ACTIONS(4002), - [anon_sym_nullptr] = ACTIONS(4002), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4002), - [anon_sym_decltype] = ACTIONS(4002), - [anon_sym_explicit] = ACTIONS(4002), - [anon_sym_export] = ACTIONS(4002), - [anon_sym_module] = ACTIONS(4002), - [anon_sym_import] = ACTIONS(4002), - [anon_sym_template] = ACTIONS(4002), - [anon_sym_operator] = ACTIONS(4002), - [anon_sym_try] = ACTIONS(4002), - [anon_sym_delete] = ACTIONS(4002), - [anon_sym_throw] = ACTIONS(4002), - [anon_sym_namespace] = ACTIONS(4002), - [anon_sym_static_assert] = ACTIONS(4002), - [anon_sym_concept] = ACTIONS(4002), - [anon_sym_co_return] = ACTIONS(4002), - [anon_sym_co_yield] = ACTIONS(4002), - [anon_sym_R_DQUOTE] = ACTIONS(4004), - [anon_sym_LR_DQUOTE] = ACTIONS(4004), - [anon_sym_uR_DQUOTE] = ACTIONS(4004), - [anon_sym_UR_DQUOTE] = ACTIONS(4004), - [anon_sym_u8R_DQUOTE] = ACTIONS(4004), - [anon_sym_co_await] = ACTIONS(4002), - [anon_sym_new] = ACTIONS(4002), - [anon_sym_requires] = ACTIONS(4002), - [anon_sym_CARET_CARET] = ACTIONS(4004), - [anon_sym_LBRACK_COLON] = ACTIONS(4004), - [sym_this] = ACTIONS(4002), - }, - [STATE(728)] = { - [sym_identifier] = ACTIONS(3890), - [aux_sym_preproc_include_token1] = ACTIONS(3890), - [aux_sym_preproc_def_token1] = ACTIONS(3890), - [aux_sym_preproc_if_token1] = ACTIONS(3890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3890), - [sym_preproc_directive] = ACTIONS(3890), - [anon_sym_LPAREN2] = ACTIONS(3892), - [anon_sym_BANG] = ACTIONS(3892), - [anon_sym_TILDE] = ACTIONS(3892), - [anon_sym_DASH] = ACTIONS(3890), - [anon_sym_PLUS] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(3892), - [anon_sym_AMP_AMP] = ACTIONS(3892), - [anon_sym_AMP] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3892), - [anon_sym___extension__] = ACTIONS(3890), - [anon_sym_typedef] = ACTIONS(3890), - [anon_sym_virtual] = ACTIONS(3890), - [anon_sym_extern] = ACTIONS(3890), - [anon_sym___attribute__] = ACTIONS(3890), - [anon_sym___attribute] = ACTIONS(3890), - [anon_sym_using] = ACTIONS(3890), - [anon_sym_COLON_COLON] = ACTIONS(3892), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3892), - [anon_sym___declspec] = ACTIONS(3890), - [anon_sym___based] = ACTIONS(3890), - [anon_sym___cdecl] = ACTIONS(3890), - [anon_sym___clrcall] = ACTIONS(3890), - [anon_sym___stdcall] = ACTIONS(3890), - [anon_sym___fastcall] = ACTIONS(3890), - [anon_sym___thiscall] = ACTIONS(3890), - [anon_sym___vectorcall] = ACTIONS(3890), - [anon_sym_LBRACE] = ACTIONS(3892), - [anon_sym_RBRACE] = ACTIONS(3892), - [anon_sym_signed] = ACTIONS(3890), - [anon_sym_unsigned] = ACTIONS(3890), - [anon_sym_long] = ACTIONS(3890), - [anon_sym_short] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_static] = ACTIONS(3890), - [anon_sym_register] = ACTIONS(3890), - [anon_sym_inline] = ACTIONS(3890), - [anon_sym___inline] = ACTIONS(3890), - [anon_sym___inline__] = ACTIONS(3890), - [anon_sym___forceinline] = ACTIONS(3890), - [anon_sym_thread_local] = ACTIONS(3890), - [anon_sym___thread] = ACTIONS(3890), - [anon_sym_const] = ACTIONS(3890), - [anon_sym_constexpr] = ACTIONS(3890), - [anon_sym_volatile] = ACTIONS(3890), - [anon_sym_restrict] = ACTIONS(3890), - [anon_sym___restrict__] = ACTIONS(3890), - [anon_sym__Atomic] = ACTIONS(3890), - [anon_sym__Noreturn] = ACTIONS(3890), - [anon_sym_noreturn] = ACTIONS(3890), - [anon_sym__Nonnull] = ACTIONS(3890), - [anon_sym_mutable] = ACTIONS(3890), - [anon_sym_constinit] = ACTIONS(3890), - [anon_sym_consteval] = ACTIONS(3890), - [anon_sym_alignas] = ACTIONS(3890), - [anon_sym__Alignas] = ACTIONS(3890), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_enum] = ACTIONS(3890), - [anon_sym_class] = ACTIONS(3890), - [anon_sym_struct] = ACTIONS(3890), - [anon_sym_union] = ACTIONS(3890), - [anon_sym_if] = ACTIONS(3890), - [anon_sym_else] = ACTIONS(3890), - [anon_sym_switch] = ACTIONS(3890), - [anon_sym_case] = ACTIONS(3890), - [anon_sym_default] = ACTIONS(3890), - [anon_sym_while] = ACTIONS(3890), - [anon_sym_do] = ACTIONS(3890), - [anon_sym_for] = ACTIONS(3890), - [anon_sym_return] = ACTIONS(3890), - [anon_sym_break] = ACTIONS(3890), - [anon_sym_continue] = ACTIONS(3890), - [anon_sym_goto] = ACTIONS(3890), - [anon_sym___try] = ACTIONS(3890), - [anon_sym___leave] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_compl] = ACTIONS(3890), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym___alignof__] = ACTIONS(3890), - [anon_sym___alignof] = ACTIONS(3890), - [anon_sym__alignof] = ACTIONS(3890), - [anon_sym_alignof] = ACTIONS(3890), - [anon_sym__Alignof] = ACTIONS(3890), - [anon_sym_offsetof] = ACTIONS(3890), - [anon_sym__Generic] = ACTIONS(3890), - [anon_sym_typename] = ACTIONS(3890), - [anon_sym_asm] = ACTIONS(3890), - [anon_sym___asm__] = ACTIONS(3890), - [anon_sym___asm] = ACTIONS(3890), - [sym_number_literal] = ACTIONS(3892), - [anon_sym_L_SQUOTE] = ACTIONS(3892), - [anon_sym_u_SQUOTE] = ACTIONS(3892), - [anon_sym_U_SQUOTE] = ACTIONS(3892), - [anon_sym_u8_SQUOTE] = ACTIONS(3892), - [anon_sym_SQUOTE] = ACTIONS(3892), - [anon_sym_L_DQUOTE] = ACTIONS(3892), - [anon_sym_u_DQUOTE] = ACTIONS(3892), - [anon_sym_U_DQUOTE] = ACTIONS(3892), - [anon_sym_u8_DQUOTE] = ACTIONS(3892), - [anon_sym_DQUOTE] = ACTIONS(3892), - [sym_true] = ACTIONS(3890), - [sym_false] = ACTIONS(3890), - [anon_sym_NULL] = ACTIONS(3890), - [anon_sym_nullptr] = ACTIONS(3890), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3890), - [anon_sym_decltype] = ACTIONS(3890), - [anon_sym_explicit] = ACTIONS(3890), - [anon_sym_template] = ACTIONS(3890), - [anon_sym_operator] = ACTIONS(3890), - [anon_sym_try] = ACTIONS(3890), - [anon_sym_delete] = ACTIONS(3890), - [anon_sym_throw] = ACTIONS(3890), - [anon_sym_namespace] = ACTIONS(3890), - [anon_sym_static_assert] = ACTIONS(3890), - [anon_sym_concept] = ACTIONS(3890), - [anon_sym_co_return] = ACTIONS(3890), - [anon_sym_co_yield] = ACTIONS(3890), - [anon_sym_R_DQUOTE] = ACTIONS(3892), - [anon_sym_LR_DQUOTE] = ACTIONS(3892), - [anon_sym_uR_DQUOTE] = ACTIONS(3892), - [anon_sym_UR_DQUOTE] = ACTIONS(3892), - [anon_sym_u8R_DQUOTE] = ACTIONS(3892), - [anon_sym_co_await] = ACTIONS(3890), - [anon_sym_new] = ACTIONS(3890), - [anon_sym_requires] = ACTIONS(3890), - [anon_sym_CARET_CARET] = ACTIONS(3892), - [anon_sym_LBRACK_COLON] = ACTIONS(3892), - [sym_this] = ACTIONS(3890), - }, - [STATE(729)] = { + [STATE(605)] = { + [ts_builtin_sym_end] = ACTIONS(3632), [sym_identifier] = ACTIONS(3630), [aux_sym_preproc_include_token1] = ACTIONS(3630), [aux_sym_preproc_def_token1] = ACTIONS(3630), @@ -157782,7 +146515,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(3630), [anon_sym___vectorcall] = ACTIONS(3630), [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_RBRACE] = ACTIONS(3632), [anon_sym_signed] = ACTIONS(3630), [anon_sym_unsigned] = ACTIONS(3630), [anon_sym_long] = ACTIONS(3630), @@ -157864,6 +146596,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(3630), [anon_sym_decltype] = ACTIONS(3630), [anon_sym_explicit] = ACTIONS(3630), + [anon_sym_export] = ACTIONS(3630), + [anon_sym_module] = ACTIONS(3630), + [anon_sym_import] = ACTIONS(3630), [anon_sym_template] = ACTIONS(3630), [anon_sym_operator] = ACTIONS(3630), [anon_sym_try] = ACTIONS(3630), @@ -157886,11 +146621,580 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3632), [sym_this] = ACTIONS(3630), }, - [STATE(730)] = { + [STATE(606)] = { + [sym_identifier] = ACTIONS(3642), + [aux_sym_preproc_include_token1] = ACTIONS(3642), + [aux_sym_preproc_def_token1] = ACTIONS(3642), + [aux_sym_preproc_if_token1] = ACTIONS(3642), + [aux_sym_preproc_if_token2] = ACTIONS(3642), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3642), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3642), + [sym_preproc_directive] = ACTIONS(3642), + [anon_sym_LPAREN2] = ACTIONS(3644), + [anon_sym_BANG] = ACTIONS(3644), + [anon_sym_TILDE] = ACTIONS(3644), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(3644), + [anon_sym_AMP_AMP] = ACTIONS(3644), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym___extension__] = ACTIONS(3642), + [anon_sym_typedef] = ACTIONS(3642), + [anon_sym_virtual] = ACTIONS(3642), + [anon_sym_extern] = ACTIONS(3642), + [anon_sym___attribute__] = ACTIONS(3642), + [anon_sym___attribute] = ACTIONS(3642), + [anon_sym_using] = ACTIONS(3642), + [anon_sym_COLON_COLON] = ACTIONS(3644), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3644), + [anon_sym___declspec] = ACTIONS(3642), + [anon_sym___based] = ACTIONS(3642), + [anon_sym___cdecl] = ACTIONS(3642), + [anon_sym___clrcall] = ACTIONS(3642), + [anon_sym___stdcall] = ACTIONS(3642), + [anon_sym___fastcall] = ACTIONS(3642), + [anon_sym___thiscall] = ACTIONS(3642), + [anon_sym___vectorcall] = ACTIONS(3642), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_signed] = ACTIONS(3642), + [anon_sym_unsigned] = ACTIONS(3642), + [anon_sym_long] = ACTIONS(3642), + [anon_sym_short] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_static] = ACTIONS(3642), + [anon_sym_register] = ACTIONS(3642), + [anon_sym_inline] = ACTIONS(3642), + [anon_sym___inline] = ACTIONS(3642), + [anon_sym___inline__] = ACTIONS(3642), + [anon_sym___forceinline] = ACTIONS(3642), + [anon_sym_thread_local] = ACTIONS(3642), + [anon_sym___thread] = ACTIONS(3642), + [anon_sym_const] = ACTIONS(3642), + [anon_sym_constexpr] = ACTIONS(3642), + [anon_sym_volatile] = ACTIONS(3642), + [anon_sym_restrict] = ACTIONS(3642), + [anon_sym___restrict__] = ACTIONS(3642), + [anon_sym__Atomic] = ACTIONS(3642), + [anon_sym__Noreturn] = ACTIONS(3642), + [anon_sym_noreturn] = ACTIONS(3642), + [anon_sym__Nonnull] = ACTIONS(3642), + [anon_sym_mutable] = ACTIONS(3642), + [anon_sym_constinit] = ACTIONS(3642), + [anon_sym_consteval] = ACTIONS(3642), + [anon_sym_alignas] = ACTIONS(3642), + [anon_sym__Alignas] = ACTIONS(3642), + [sym_primitive_type] = ACTIONS(3642), + [anon_sym_enum] = ACTIONS(3642), + [anon_sym_class] = ACTIONS(3642), + [anon_sym_struct] = ACTIONS(3642), + [anon_sym_union] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_else] = ACTIONS(3642), + [anon_sym_switch] = ACTIONS(3642), + [anon_sym_case] = ACTIONS(3642), + [anon_sym_default] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_break] = ACTIONS(3642), + [anon_sym_continue] = ACTIONS(3642), + [anon_sym_goto] = ACTIONS(3642), + [anon_sym___try] = ACTIONS(3642), + [anon_sym___leave] = ACTIONS(3642), + [anon_sym_not] = ACTIONS(3642), + [anon_sym_compl] = ACTIONS(3642), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_sizeof] = ACTIONS(3642), + [anon_sym___alignof__] = ACTIONS(3642), + [anon_sym___alignof] = ACTIONS(3642), + [anon_sym__alignof] = ACTIONS(3642), + [anon_sym_alignof] = ACTIONS(3642), + [anon_sym__Alignof] = ACTIONS(3642), + [anon_sym_offsetof] = ACTIONS(3642), + [anon_sym__Generic] = ACTIONS(3642), + [anon_sym_typename] = ACTIONS(3642), + [anon_sym_asm] = ACTIONS(3642), + [anon_sym___asm__] = ACTIONS(3642), + [anon_sym___asm] = ACTIONS(3642), + [sym_number_literal] = ACTIONS(3644), + [anon_sym_L_SQUOTE] = ACTIONS(3644), + [anon_sym_u_SQUOTE] = ACTIONS(3644), + [anon_sym_U_SQUOTE] = ACTIONS(3644), + [anon_sym_u8_SQUOTE] = ACTIONS(3644), + [anon_sym_SQUOTE] = ACTIONS(3644), + [anon_sym_L_DQUOTE] = ACTIONS(3644), + [anon_sym_u_DQUOTE] = ACTIONS(3644), + [anon_sym_U_DQUOTE] = ACTIONS(3644), + [anon_sym_u8_DQUOTE] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(3644), + [sym_true] = ACTIONS(3642), + [sym_false] = ACTIONS(3642), + [anon_sym_NULL] = ACTIONS(3642), + [anon_sym_nullptr] = ACTIONS(3642), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3642), + [anon_sym_decltype] = ACTIONS(3642), + [anon_sym_explicit] = ACTIONS(3642), + [anon_sym_export] = ACTIONS(3642), + [anon_sym_module] = ACTIONS(3642), + [anon_sym_import] = ACTIONS(3642), + [anon_sym_template] = ACTIONS(3642), + [anon_sym_operator] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_delete] = ACTIONS(3642), + [anon_sym_throw] = ACTIONS(3642), + [anon_sym_namespace] = ACTIONS(3642), + [anon_sym_static_assert] = ACTIONS(3642), + [anon_sym_concept] = ACTIONS(3642), + [anon_sym_co_return] = ACTIONS(3642), + [anon_sym_co_yield] = ACTIONS(3642), + [anon_sym_R_DQUOTE] = ACTIONS(3644), + [anon_sym_LR_DQUOTE] = ACTIONS(3644), + [anon_sym_uR_DQUOTE] = ACTIONS(3644), + [anon_sym_UR_DQUOTE] = ACTIONS(3644), + [anon_sym_u8R_DQUOTE] = ACTIONS(3644), + [anon_sym_co_await] = ACTIONS(3642), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_requires] = ACTIONS(3642), + [anon_sym_CARET_CARET] = ACTIONS(3644), + [anon_sym_LBRACK_COLON] = ACTIONS(3644), + [sym_this] = ACTIONS(3642), + }, + [STATE(607)] = { + [ts_builtin_sym_end] = ACTIONS(3315), + [sym_identifier] = ACTIONS(3310), + [aux_sym_preproc_include_token1] = ACTIONS(3310), + [aux_sym_preproc_def_token1] = ACTIONS(3310), + [aux_sym_preproc_if_token1] = ACTIONS(3310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3310), + [sym_preproc_directive] = ACTIONS(3310), + [anon_sym_LPAREN2] = ACTIONS(3315), + [anon_sym_BANG] = ACTIONS(3315), + [anon_sym_TILDE] = ACTIONS(3315), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3315), + [anon_sym_AMP_AMP] = ACTIONS(3315), + [anon_sym_AMP] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3315), + [anon_sym___extension__] = ACTIONS(3310), + [anon_sym_typedef] = ACTIONS(3310), + [anon_sym_virtual] = ACTIONS(3310), + [anon_sym_extern] = ACTIONS(3310), + [anon_sym___attribute__] = ACTIONS(3310), + [anon_sym___attribute] = ACTIONS(3310), + [anon_sym_using] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3315), + [anon_sym___declspec] = ACTIONS(3310), + [anon_sym___based] = ACTIONS(3310), + [anon_sym___cdecl] = ACTIONS(3310), + [anon_sym___clrcall] = ACTIONS(3310), + [anon_sym___stdcall] = ACTIONS(3310), + [anon_sym___fastcall] = ACTIONS(3310), + [anon_sym___thiscall] = ACTIONS(3310), + [anon_sym___vectorcall] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3315), + [anon_sym_signed] = ACTIONS(3310), + [anon_sym_unsigned] = ACTIONS(3310), + [anon_sym_long] = ACTIONS(3310), + [anon_sym_short] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3310), + [anon_sym_static] = ACTIONS(3310), + [anon_sym_register] = ACTIONS(3310), + [anon_sym_inline] = ACTIONS(3310), + [anon_sym___inline] = ACTIONS(3310), + [anon_sym___inline__] = ACTIONS(3310), + [anon_sym___forceinline] = ACTIONS(3310), + [anon_sym_thread_local] = ACTIONS(3310), + [anon_sym___thread] = ACTIONS(3310), + [anon_sym_const] = ACTIONS(3310), + [anon_sym_constexpr] = ACTIONS(3310), + [anon_sym_volatile] = ACTIONS(3310), + [anon_sym_restrict] = ACTIONS(3310), + [anon_sym___restrict__] = ACTIONS(3310), + [anon_sym__Atomic] = ACTIONS(3310), + [anon_sym__Noreturn] = ACTIONS(3310), + [anon_sym_noreturn] = ACTIONS(3310), + [anon_sym__Nonnull] = ACTIONS(3310), + [anon_sym_mutable] = ACTIONS(3310), + [anon_sym_constinit] = ACTIONS(3310), + [anon_sym_consteval] = ACTIONS(3310), + [anon_sym_alignas] = ACTIONS(3310), + [anon_sym__Alignas] = ACTIONS(3310), + [sym_primitive_type] = ACTIONS(3310), + [anon_sym_enum] = ACTIONS(3310), + [anon_sym_class] = ACTIONS(3310), + [anon_sym_struct] = ACTIONS(3310), + [anon_sym_union] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_switch] = ACTIONS(3310), + [anon_sym_case] = ACTIONS(3310), + [anon_sym_default] = ACTIONS(3310), + [anon_sym_while] = ACTIONS(3310), + [anon_sym_do] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_goto] = ACTIONS(3310), + [anon_sym___try] = ACTIONS(3310), + [anon_sym___leave] = ACTIONS(3310), + [anon_sym_not] = ACTIONS(3310), + [anon_sym_compl] = ACTIONS(3310), + [anon_sym_DASH_DASH] = ACTIONS(3315), + [anon_sym_PLUS_PLUS] = ACTIONS(3315), + [anon_sym_sizeof] = ACTIONS(3310), + [anon_sym___alignof__] = ACTIONS(3310), + [anon_sym___alignof] = ACTIONS(3310), + [anon_sym__alignof] = ACTIONS(3310), + [anon_sym_alignof] = ACTIONS(3310), + [anon_sym__Alignof] = ACTIONS(3310), + [anon_sym_offsetof] = ACTIONS(3310), + [anon_sym__Generic] = ACTIONS(3310), + [anon_sym_typename] = ACTIONS(3310), + [anon_sym_asm] = ACTIONS(3310), + [anon_sym___asm__] = ACTIONS(3310), + [anon_sym___asm] = ACTIONS(3310), + [sym_number_literal] = ACTIONS(3315), + [anon_sym_L_SQUOTE] = ACTIONS(3315), + [anon_sym_u_SQUOTE] = ACTIONS(3315), + [anon_sym_U_SQUOTE] = ACTIONS(3315), + [anon_sym_u8_SQUOTE] = ACTIONS(3315), + [anon_sym_SQUOTE] = ACTIONS(3315), + [anon_sym_L_DQUOTE] = ACTIONS(3315), + [anon_sym_u_DQUOTE] = ACTIONS(3315), + [anon_sym_U_DQUOTE] = ACTIONS(3315), + [anon_sym_u8_DQUOTE] = ACTIONS(3315), + [anon_sym_DQUOTE] = ACTIONS(3315), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [anon_sym_NULL] = ACTIONS(3310), + [anon_sym_nullptr] = ACTIONS(3310), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3310), + [anon_sym_decltype] = ACTIONS(3310), + [anon_sym_explicit] = ACTIONS(3310), + [anon_sym_export] = ACTIONS(3310), + [anon_sym_module] = ACTIONS(3310), + [anon_sym_import] = ACTIONS(3310), + [anon_sym_template] = ACTIONS(3310), + [anon_sym_operator] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_delete] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_namespace] = ACTIONS(3310), + [anon_sym_static_assert] = ACTIONS(3310), + [anon_sym_concept] = ACTIONS(3310), + [anon_sym_co_return] = ACTIONS(3310), + [anon_sym_co_yield] = ACTIONS(3310), + [anon_sym_R_DQUOTE] = ACTIONS(3315), + [anon_sym_LR_DQUOTE] = ACTIONS(3315), + [anon_sym_uR_DQUOTE] = ACTIONS(3315), + [anon_sym_UR_DQUOTE] = ACTIONS(3315), + [anon_sym_u8R_DQUOTE] = ACTIONS(3315), + [anon_sym_co_await] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3310), + [anon_sym_requires] = ACTIONS(3310), + [anon_sym_CARET_CARET] = ACTIONS(3315), + [anon_sym_LBRACK_COLON] = ACTIONS(3315), + [sym_this] = ACTIONS(3310), + }, + [STATE(608)] = { + [sym_identifier] = ACTIONS(3155), + [aux_sym_preproc_include_token1] = ACTIONS(3155), + [aux_sym_preproc_def_token1] = ACTIONS(3155), + [aux_sym_preproc_if_token1] = ACTIONS(3155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3155), + [sym_preproc_directive] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_AMP_AMP] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym___extension__] = ACTIONS(3155), + [anon_sym_typedef] = ACTIONS(3155), + [anon_sym_virtual] = ACTIONS(3155), + [anon_sym_extern] = ACTIONS(3155), + [anon_sym___attribute__] = ACTIONS(3155), + [anon_sym___attribute] = ACTIONS(3155), + [anon_sym_using] = ACTIONS(3155), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), + [anon_sym___declspec] = ACTIONS(3155), + [anon_sym___based] = ACTIONS(3155), + [anon_sym___cdecl] = ACTIONS(3155), + [anon_sym___clrcall] = ACTIONS(3155), + [anon_sym___stdcall] = ACTIONS(3155), + [anon_sym___fastcall] = ACTIONS(3155), + [anon_sym___thiscall] = ACTIONS(3155), + [anon_sym___vectorcall] = ACTIONS(3155), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_RBRACE] = ACTIONS(3153), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_static] = ACTIONS(3155), + [anon_sym_register] = ACTIONS(3155), + [anon_sym_inline] = ACTIONS(3155), + [anon_sym___inline] = ACTIONS(3155), + [anon_sym___inline__] = ACTIONS(3155), + [anon_sym___forceinline] = ACTIONS(3155), + [anon_sym_thread_local] = ACTIONS(3155), + [anon_sym___thread] = ACTIONS(3155), + [anon_sym_const] = ACTIONS(3155), + [anon_sym_constexpr] = ACTIONS(3155), + [anon_sym_volatile] = ACTIONS(3155), + [anon_sym_restrict] = ACTIONS(3155), + [anon_sym___restrict__] = ACTIONS(3155), + [anon_sym__Atomic] = ACTIONS(3155), + [anon_sym__Noreturn] = ACTIONS(3155), + [anon_sym_noreturn] = ACTIONS(3155), + [anon_sym__Nonnull] = ACTIONS(3155), + [anon_sym_mutable] = ACTIONS(3155), + [anon_sym_constinit] = ACTIONS(3155), + [anon_sym_consteval] = ACTIONS(3155), + [anon_sym_alignas] = ACTIONS(3155), + [anon_sym__Alignas] = ACTIONS(3155), + [sym_primitive_type] = ACTIONS(3155), + [anon_sym_enum] = ACTIONS(3155), + [anon_sym_class] = ACTIONS(3155), + [anon_sym_struct] = ACTIONS(3155), + [anon_sym_union] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_else] = ACTIONS(3155), + [anon_sym_switch] = ACTIONS(3155), + [anon_sym_case] = ACTIONS(3155), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_do] = ACTIONS(3155), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_break] = ACTIONS(3155), + [anon_sym_continue] = ACTIONS(3155), + [anon_sym_goto] = ACTIONS(3155), + [anon_sym___try] = ACTIONS(3155), + [anon_sym___leave] = ACTIONS(3155), + [anon_sym_not] = ACTIONS(3155), + [anon_sym_compl] = ACTIONS(3155), + [anon_sym_DASH_DASH] = ACTIONS(3153), + [anon_sym_PLUS_PLUS] = ACTIONS(3153), + [anon_sym_sizeof] = ACTIONS(3155), + [anon_sym___alignof__] = ACTIONS(3155), + [anon_sym___alignof] = ACTIONS(3155), + [anon_sym__alignof] = ACTIONS(3155), + [anon_sym_alignof] = ACTIONS(3155), + [anon_sym__Alignof] = ACTIONS(3155), + [anon_sym_offsetof] = ACTIONS(3155), + [anon_sym__Generic] = ACTIONS(3155), + [anon_sym_typename] = ACTIONS(3155), + [anon_sym_asm] = ACTIONS(3155), + [anon_sym___asm__] = ACTIONS(3155), + [anon_sym___asm] = ACTIONS(3155), + [sym_number_literal] = ACTIONS(3153), + [anon_sym_L_SQUOTE] = ACTIONS(3153), + [anon_sym_u_SQUOTE] = ACTIONS(3153), + [anon_sym_U_SQUOTE] = ACTIONS(3153), + [anon_sym_u8_SQUOTE] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3153), + [anon_sym_L_DQUOTE] = ACTIONS(3153), + [anon_sym_u_DQUOTE] = ACTIONS(3153), + [anon_sym_U_DQUOTE] = ACTIONS(3153), + [anon_sym_u8_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE] = ACTIONS(3153), + [sym_true] = ACTIONS(3155), + [sym_false] = ACTIONS(3155), + [anon_sym_NULL] = ACTIONS(3155), + [anon_sym_nullptr] = ACTIONS(3155), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3155), + [anon_sym_decltype] = ACTIONS(3155), + [anon_sym_explicit] = ACTIONS(3155), + [anon_sym_export] = ACTIONS(3155), + [anon_sym_import] = ACTIONS(3155), + [anon_sym_template] = ACTIONS(3155), + [anon_sym_operator] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [anon_sym_delete] = ACTIONS(3155), + [anon_sym_throw] = ACTIONS(3155), + [anon_sym_namespace] = ACTIONS(3155), + [anon_sym_static_assert] = ACTIONS(3155), + [anon_sym_concept] = ACTIONS(3155), + [anon_sym_co_return] = ACTIONS(3155), + [anon_sym_co_yield] = ACTIONS(3155), + [anon_sym_catch] = ACTIONS(3155), + [anon_sym_R_DQUOTE] = ACTIONS(3153), + [anon_sym_LR_DQUOTE] = ACTIONS(3153), + [anon_sym_uR_DQUOTE] = ACTIONS(3153), + [anon_sym_UR_DQUOTE] = ACTIONS(3153), + [anon_sym_u8R_DQUOTE] = ACTIONS(3153), + [anon_sym_co_await] = ACTIONS(3155), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_requires] = ACTIONS(3155), + [anon_sym_CARET_CARET] = ACTIONS(3153), + [anon_sym_LBRACK_COLON] = ACTIONS(3153), + [sym_this] = ACTIONS(3155), + }, + [STATE(609)] = { + [ts_builtin_sym_end] = ACTIONS(3558), + [sym_identifier] = ACTIONS(3556), + [aux_sym_preproc_include_token1] = ACTIONS(3556), + [aux_sym_preproc_def_token1] = ACTIONS(3556), + [aux_sym_preproc_if_token1] = ACTIONS(3556), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3556), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3556), + [sym_preproc_directive] = ACTIONS(3556), + [anon_sym_LPAREN2] = ACTIONS(3558), + [anon_sym_BANG] = ACTIONS(3558), + [anon_sym_TILDE] = ACTIONS(3558), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(3558), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_AMP] = ACTIONS(3556), + [anon_sym_SEMI] = ACTIONS(3558), + [anon_sym___extension__] = ACTIONS(3556), + [anon_sym_typedef] = ACTIONS(3556), + [anon_sym_virtual] = ACTIONS(3556), + [anon_sym_extern] = ACTIONS(3556), + [anon_sym___attribute__] = ACTIONS(3556), + [anon_sym___attribute] = ACTIONS(3556), + [anon_sym_using] = ACTIONS(3556), + [anon_sym_COLON_COLON] = ACTIONS(3558), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3558), + [anon_sym___declspec] = ACTIONS(3556), + [anon_sym___based] = ACTIONS(3556), + [anon_sym___cdecl] = ACTIONS(3556), + [anon_sym___clrcall] = ACTIONS(3556), + [anon_sym___stdcall] = ACTIONS(3556), + [anon_sym___fastcall] = ACTIONS(3556), + [anon_sym___thiscall] = ACTIONS(3556), + [anon_sym___vectorcall] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3558), + [anon_sym_signed] = ACTIONS(3556), + [anon_sym_unsigned] = ACTIONS(3556), + [anon_sym_long] = ACTIONS(3556), + [anon_sym_short] = ACTIONS(3556), + [anon_sym_LBRACK] = ACTIONS(3556), + [anon_sym_static] = ACTIONS(3556), + [anon_sym_register] = ACTIONS(3556), + [anon_sym_inline] = ACTIONS(3556), + [anon_sym___inline] = ACTIONS(3556), + [anon_sym___inline__] = ACTIONS(3556), + [anon_sym___forceinline] = ACTIONS(3556), + [anon_sym_thread_local] = ACTIONS(3556), + [anon_sym___thread] = ACTIONS(3556), + [anon_sym_const] = ACTIONS(3556), + [anon_sym_constexpr] = ACTIONS(3556), + [anon_sym_volatile] = ACTIONS(3556), + [anon_sym_restrict] = ACTIONS(3556), + [anon_sym___restrict__] = ACTIONS(3556), + [anon_sym__Atomic] = ACTIONS(3556), + [anon_sym__Noreturn] = ACTIONS(3556), + [anon_sym_noreturn] = ACTIONS(3556), + [anon_sym__Nonnull] = ACTIONS(3556), + [anon_sym_mutable] = ACTIONS(3556), + [anon_sym_constinit] = ACTIONS(3556), + [anon_sym_consteval] = ACTIONS(3556), + [anon_sym_alignas] = ACTIONS(3556), + [anon_sym__Alignas] = ACTIONS(3556), + [sym_primitive_type] = ACTIONS(3556), + [anon_sym_enum] = ACTIONS(3556), + [anon_sym_class] = ACTIONS(3556), + [anon_sym_struct] = ACTIONS(3556), + [anon_sym_union] = ACTIONS(3556), + [anon_sym_if] = ACTIONS(3556), + [anon_sym_else] = ACTIONS(3556), + [anon_sym_switch] = ACTIONS(3556), + [anon_sym_case] = ACTIONS(3556), + [anon_sym_default] = ACTIONS(3556), + [anon_sym_while] = ACTIONS(3556), + [anon_sym_do] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3556), + [anon_sym_return] = ACTIONS(3556), + [anon_sym_break] = ACTIONS(3556), + [anon_sym_continue] = ACTIONS(3556), + [anon_sym_goto] = ACTIONS(3556), + [anon_sym___try] = ACTIONS(3556), + [anon_sym___leave] = ACTIONS(3556), + [anon_sym_not] = ACTIONS(3556), + [anon_sym_compl] = ACTIONS(3556), + [anon_sym_DASH_DASH] = ACTIONS(3558), + [anon_sym_PLUS_PLUS] = ACTIONS(3558), + [anon_sym_sizeof] = ACTIONS(3556), + [anon_sym___alignof__] = ACTIONS(3556), + [anon_sym___alignof] = ACTIONS(3556), + [anon_sym__alignof] = ACTIONS(3556), + [anon_sym_alignof] = ACTIONS(3556), + [anon_sym__Alignof] = ACTIONS(3556), + [anon_sym_offsetof] = ACTIONS(3556), + [anon_sym__Generic] = ACTIONS(3556), + [anon_sym_typename] = ACTIONS(3556), + [anon_sym_asm] = ACTIONS(3556), + [anon_sym___asm__] = ACTIONS(3556), + [anon_sym___asm] = ACTIONS(3556), + [sym_number_literal] = ACTIONS(3558), + [anon_sym_L_SQUOTE] = ACTIONS(3558), + [anon_sym_u_SQUOTE] = ACTIONS(3558), + [anon_sym_U_SQUOTE] = ACTIONS(3558), + [anon_sym_u8_SQUOTE] = ACTIONS(3558), + [anon_sym_SQUOTE] = ACTIONS(3558), + [anon_sym_L_DQUOTE] = ACTIONS(3558), + [anon_sym_u_DQUOTE] = ACTIONS(3558), + [anon_sym_U_DQUOTE] = ACTIONS(3558), + [anon_sym_u8_DQUOTE] = ACTIONS(3558), + [anon_sym_DQUOTE] = ACTIONS(3558), + [sym_true] = ACTIONS(3556), + [sym_false] = ACTIONS(3556), + [anon_sym_NULL] = ACTIONS(3556), + [anon_sym_nullptr] = ACTIONS(3556), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3556), + [anon_sym_decltype] = ACTIONS(3556), + [anon_sym_explicit] = ACTIONS(3556), + [anon_sym_export] = ACTIONS(3556), + [anon_sym_module] = ACTIONS(3556), + [anon_sym_import] = ACTIONS(3556), + [anon_sym_template] = ACTIONS(3556), + [anon_sym_operator] = ACTIONS(3556), + [anon_sym_try] = ACTIONS(3556), + [anon_sym_delete] = ACTIONS(3556), + [anon_sym_throw] = ACTIONS(3556), + [anon_sym_namespace] = ACTIONS(3556), + [anon_sym_static_assert] = ACTIONS(3556), + [anon_sym_concept] = ACTIONS(3556), + [anon_sym_co_return] = ACTIONS(3556), + [anon_sym_co_yield] = ACTIONS(3556), + [anon_sym_R_DQUOTE] = ACTIONS(3558), + [anon_sym_LR_DQUOTE] = ACTIONS(3558), + [anon_sym_uR_DQUOTE] = ACTIONS(3558), + [anon_sym_UR_DQUOTE] = ACTIONS(3558), + [anon_sym_u8R_DQUOTE] = ACTIONS(3558), + [anon_sym_co_await] = ACTIONS(3556), + [anon_sym_new] = ACTIONS(3556), + [anon_sym_requires] = ACTIONS(3556), + [anon_sym_CARET_CARET] = ACTIONS(3558), + [anon_sym_LBRACK_COLON] = ACTIONS(3558), + [sym_this] = ACTIONS(3556), + }, + [STATE(610)] = { [sym_identifier] = ACTIONS(3630), [aux_sym_preproc_include_token1] = ACTIONS(3630), [aux_sym_preproc_def_token1] = ACTIONS(3630), [aux_sym_preproc_if_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token2] = ACTIONS(3630), [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), [sym_preproc_directive] = ACTIONS(3630), @@ -157921,7 +147225,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(3630), [anon_sym___vectorcall] = ACTIONS(3630), [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_RBRACE] = ACTIONS(3632), [anon_sym_signed] = ACTIONS(3630), [anon_sym_unsigned] = ACTIONS(3630), [anon_sym_long] = ACTIONS(3630), @@ -158003,6 +147306,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(3630), [anon_sym_decltype] = ACTIONS(3630), [anon_sym_explicit] = ACTIONS(3630), + [anon_sym_export] = ACTIONS(3630), + [anon_sym_module] = ACTIONS(3630), + [anon_sym_import] = ACTIONS(3630), [anon_sym_template] = ACTIONS(3630), [anon_sym_operator] = ACTIONS(3630), [anon_sym_try] = ACTIONS(3630), @@ -158025,4689 +147331,5640 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3632), [sym_this] = ACTIONS(3630), }, - [STATE(731)] = { - [ts_builtin_sym_end] = ACTIONS(4004), - [sym_identifier] = ACTIONS(4002), - [aux_sym_preproc_include_token1] = ACTIONS(4002), - [aux_sym_preproc_def_token1] = ACTIONS(4002), - [aux_sym_preproc_if_token1] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), - [sym_preproc_directive] = ACTIONS(4002), - [anon_sym_LPAREN2] = ACTIONS(4004), - [anon_sym_BANG] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(4004), - [anon_sym_DASH] = ACTIONS(4002), - [anon_sym_PLUS] = ACTIONS(4002), - [anon_sym_STAR] = ACTIONS(4004), - [anon_sym_AMP_AMP] = ACTIONS(4004), - [anon_sym_AMP] = ACTIONS(4002), - [anon_sym_SEMI] = ACTIONS(4004), - [anon_sym___extension__] = ACTIONS(4002), - [anon_sym_typedef] = ACTIONS(4002), - [anon_sym_virtual] = ACTIONS(4002), - [anon_sym_extern] = ACTIONS(4002), - [anon_sym___attribute__] = ACTIONS(4002), - [anon_sym___attribute] = ACTIONS(4002), - [anon_sym_using] = ACTIONS(4002), - [anon_sym_COLON_COLON] = ACTIONS(4004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), - [anon_sym___declspec] = ACTIONS(4002), - [anon_sym___based] = ACTIONS(4002), - [anon_sym___cdecl] = ACTIONS(4002), - [anon_sym___clrcall] = ACTIONS(4002), - [anon_sym___stdcall] = ACTIONS(4002), - [anon_sym___fastcall] = ACTIONS(4002), - [anon_sym___thiscall] = ACTIONS(4002), - [anon_sym___vectorcall] = ACTIONS(4002), - [anon_sym_LBRACE] = ACTIONS(4004), - [anon_sym_signed] = ACTIONS(4002), - [anon_sym_unsigned] = ACTIONS(4002), - [anon_sym_long] = ACTIONS(4002), - [anon_sym_short] = ACTIONS(4002), - [anon_sym_LBRACK] = ACTIONS(4002), - [anon_sym_static] = ACTIONS(4002), - [anon_sym_register] = ACTIONS(4002), - [anon_sym_inline] = ACTIONS(4002), - [anon_sym___inline] = ACTIONS(4002), - [anon_sym___inline__] = ACTIONS(4002), - [anon_sym___forceinline] = ACTIONS(4002), - [anon_sym_thread_local] = ACTIONS(4002), - [anon_sym___thread] = ACTIONS(4002), - [anon_sym_const] = ACTIONS(4002), - [anon_sym_constexpr] = ACTIONS(4002), - [anon_sym_volatile] = ACTIONS(4002), - [anon_sym_restrict] = ACTIONS(4002), - [anon_sym___restrict__] = ACTIONS(4002), - [anon_sym__Atomic] = ACTIONS(4002), - [anon_sym__Noreturn] = ACTIONS(4002), - [anon_sym_noreturn] = ACTIONS(4002), - [anon_sym__Nonnull] = ACTIONS(4002), - [anon_sym_mutable] = ACTIONS(4002), - [anon_sym_constinit] = ACTIONS(4002), - [anon_sym_consteval] = ACTIONS(4002), - [anon_sym_alignas] = ACTIONS(4002), - [anon_sym__Alignas] = ACTIONS(4002), - [sym_primitive_type] = ACTIONS(4002), - [anon_sym_enum] = ACTIONS(4002), - [anon_sym_class] = ACTIONS(4002), - [anon_sym_struct] = ACTIONS(4002), - [anon_sym_union] = ACTIONS(4002), - [anon_sym_if] = ACTIONS(4002), - [anon_sym_switch] = ACTIONS(4002), - [anon_sym_case] = ACTIONS(4002), - [anon_sym_default] = ACTIONS(4002), - [anon_sym_while] = ACTIONS(4002), - [anon_sym_do] = ACTIONS(4002), - [anon_sym_for] = ACTIONS(4002), - [anon_sym_return] = ACTIONS(4002), - [anon_sym_break] = ACTIONS(4002), - [anon_sym_continue] = ACTIONS(4002), - [anon_sym_goto] = ACTIONS(4002), - [anon_sym_not] = ACTIONS(4002), - [anon_sym_compl] = ACTIONS(4002), - [anon_sym_DASH_DASH] = ACTIONS(4004), - [anon_sym_PLUS_PLUS] = ACTIONS(4004), - [anon_sym_sizeof] = ACTIONS(4002), - [anon_sym___alignof__] = ACTIONS(4002), - [anon_sym___alignof] = ACTIONS(4002), - [anon_sym__alignof] = ACTIONS(4002), - [anon_sym_alignof] = ACTIONS(4002), - [anon_sym__Alignof] = ACTIONS(4002), - [anon_sym_offsetof] = ACTIONS(4002), - [anon_sym__Generic] = ACTIONS(4002), - [anon_sym_typename] = ACTIONS(4002), - [anon_sym_asm] = ACTIONS(4002), - [anon_sym___asm__] = ACTIONS(4002), - [anon_sym___asm] = ACTIONS(4002), - [sym_number_literal] = ACTIONS(4004), - [anon_sym_L_SQUOTE] = ACTIONS(4004), - [anon_sym_u_SQUOTE] = ACTIONS(4004), - [anon_sym_U_SQUOTE] = ACTIONS(4004), - [anon_sym_u8_SQUOTE] = ACTIONS(4004), - [anon_sym_SQUOTE] = ACTIONS(4004), - [anon_sym_L_DQUOTE] = ACTIONS(4004), - [anon_sym_u_DQUOTE] = ACTIONS(4004), - [anon_sym_U_DQUOTE] = ACTIONS(4004), - [anon_sym_u8_DQUOTE] = ACTIONS(4004), - [anon_sym_DQUOTE] = ACTIONS(4004), - [sym_true] = ACTIONS(4002), - [sym_false] = ACTIONS(4002), - [anon_sym_NULL] = ACTIONS(4002), - [anon_sym_nullptr] = ACTIONS(4002), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4002), - [anon_sym_decltype] = ACTIONS(4002), - [anon_sym_explicit] = ACTIONS(4002), - [anon_sym_export] = ACTIONS(4002), - [anon_sym_module] = ACTIONS(4002), - [anon_sym_import] = ACTIONS(4002), - [anon_sym_template] = ACTIONS(4002), - [anon_sym_operator] = ACTIONS(4002), - [anon_sym_try] = ACTIONS(4002), - [anon_sym_delete] = ACTIONS(4002), - [anon_sym_throw] = ACTIONS(4002), - [anon_sym_namespace] = ACTIONS(4002), - [anon_sym_static_assert] = ACTIONS(4002), - [anon_sym_concept] = ACTIONS(4002), - [anon_sym_co_return] = ACTIONS(4002), - [anon_sym_co_yield] = ACTIONS(4002), - [anon_sym_R_DQUOTE] = ACTIONS(4004), - [anon_sym_LR_DQUOTE] = ACTIONS(4004), - [anon_sym_uR_DQUOTE] = ACTIONS(4004), - [anon_sym_UR_DQUOTE] = ACTIONS(4004), - [anon_sym_u8R_DQUOTE] = ACTIONS(4004), - [anon_sym_co_await] = ACTIONS(4002), - [anon_sym_new] = ACTIONS(4002), - [anon_sym_requires] = ACTIONS(4002), - [anon_sym_CARET_CARET] = ACTIONS(4004), - [anon_sym_LBRACK_COLON] = ACTIONS(4004), - [sym_this] = ACTIONS(4002), - }, - [STATE(732)] = { - [sym_identifier] = ACTIONS(3648), - [aux_sym_preproc_include_token1] = ACTIONS(3648), - [aux_sym_preproc_def_token1] = ACTIONS(3648), - [aux_sym_preproc_if_token1] = ACTIONS(3648), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3648), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3648), - [sym_preproc_directive] = ACTIONS(3648), - [anon_sym_LPAREN2] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_TILDE] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_AMP_AMP] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3650), - [anon_sym___extension__] = ACTIONS(3648), - [anon_sym_typedef] = ACTIONS(3648), - [anon_sym_virtual] = ACTIONS(3648), - [anon_sym_extern] = ACTIONS(3648), - [anon_sym___attribute__] = ACTIONS(3648), - [anon_sym___attribute] = ACTIONS(3648), - [anon_sym_using] = ACTIONS(3648), - [anon_sym_COLON_COLON] = ACTIONS(3650), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), - [anon_sym___declspec] = ACTIONS(3648), - [anon_sym___based] = ACTIONS(3648), - [anon_sym___cdecl] = ACTIONS(3648), - [anon_sym___clrcall] = ACTIONS(3648), - [anon_sym___stdcall] = ACTIONS(3648), - [anon_sym___fastcall] = ACTIONS(3648), - [anon_sym___thiscall] = ACTIONS(3648), - [anon_sym___vectorcall] = ACTIONS(3648), - [anon_sym_LBRACE] = ACTIONS(3650), - [anon_sym_RBRACE] = ACTIONS(3650), - [anon_sym_signed] = ACTIONS(3648), - [anon_sym_unsigned] = ACTIONS(3648), - [anon_sym_long] = ACTIONS(3648), - [anon_sym_short] = ACTIONS(3648), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_static] = ACTIONS(3648), - [anon_sym_register] = ACTIONS(3648), - [anon_sym_inline] = ACTIONS(3648), - [anon_sym___inline] = ACTIONS(3648), - [anon_sym___inline__] = ACTIONS(3648), - [anon_sym___forceinline] = ACTIONS(3648), - [anon_sym_thread_local] = ACTIONS(3648), - [anon_sym___thread] = ACTIONS(3648), - [anon_sym_const] = ACTIONS(3648), - [anon_sym_constexpr] = ACTIONS(3648), - [anon_sym_volatile] = ACTIONS(3648), - [anon_sym_restrict] = ACTIONS(3648), - [anon_sym___restrict__] = ACTIONS(3648), - [anon_sym__Atomic] = ACTIONS(3648), - [anon_sym__Noreturn] = ACTIONS(3648), - [anon_sym_noreturn] = ACTIONS(3648), - [anon_sym__Nonnull] = ACTIONS(3648), - [anon_sym_mutable] = ACTIONS(3648), - [anon_sym_constinit] = ACTIONS(3648), - [anon_sym_consteval] = ACTIONS(3648), - [anon_sym_alignas] = ACTIONS(3648), - [anon_sym__Alignas] = ACTIONS(3648), - [sym_primitive_type] = ACTIONS(3648), - [anon_sym_enum] = ACTIONS(3648), - [anon_sym_class] = ACTIONS(3648), - [anon_sym_struct] = ACTIONS(3648), - [anon_sym_union] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3648), - [anon_sym_else] = ACTIONS(3648), - [anon_sym_switch] = ACTIONS(3648), - [anon_sym_case] = ACTIONS(3648), - [anon_sym_default] = ACTIONS(3648), - [anon_sym_while] = ACTIONS(3648), - [anon_sym_do] = ACTIONS(3648), - [anon_sym_for] = ACTIONS(3648), - [anon_sym_return] = ACTIONS(3648), - [anon_sym_break] = ACTIONS(3648), - [anon_sym_continue] = ACTIONS(3648), - [anon_sym_goto] = ACTIONS(3648), - [anon_sym___try] = ACTIONS(3648), - [anon_sym___leave] = ACTIONS(3648), - [anon_sym_not] = ACTIONS(3648), - [anon_sym_compl] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3650), - [anon_sym_sizeof] = ACTIONS(3648), - [anon_sym___alignof__] = ACTIONS(3648), - [anon_sym___alignof] = ACTIONS(3648), - [anon_sym__alignof] = ACTIONS(3648), - [anon_sym_alignof] = ACTIONS(3648), - [anon_sym__Alignof] = ACTIONS(3648), - [anon_sym_offsetof] = ACTIONS(3648), - [anon_sym__Generic] = ACTIONS(3648), - [anon_sym_typename] = ACTIONS(3648), - [anon_sym_asm] = ACTIONS(3648), - [anon_sym___asm__] = ACTIONS(3648), - [anon_sym___asm] = ACTIONS(3648), - [sym_number_literal] = ACTIONS(3650), - [anon_sym_L_SQUOTE] = ACTIONS(3650), - [anon_sym_u_SQUOTE] = ACTIONS(3650), - [anon_sym_U_SQUOTE] = ACTIONS(3650), - [anon_sym_u8_SQUOTE] = ACTIONS(3650), - [anon_sym_SQUOTE] = ACTIONS(3650), - [anon_sym_L_DQUOTE] = ACTIONS(3650), - [anon_sym_u_DQUOTE] = ACTIONS(3650), - [anon_sym_U_DQUOTE] = ACTIONS(3650), - [anon_sym_u8_DQUOTE] = ACTIONS(3650), - [anon_sym_DQUOTE] = ACTIONS(3650), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [anon_sym_NULL] = ACTIONS(3648), - [anon_sym_nullptr] = ACTIONS(3648), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3648), - [anon_sym_decltype] = ACTIONS(3648), - [anon_sym_explicit] = ACTIONS(3648), - [anon_sym_template] = ACTIONS(3648), - [anon_sym_operator] = ACTIONS(3648), - [anon_sym_try] = ACTIONS(3648), - [anon_sym_delete] = ACTIONS(3648), - [anon_sym_throw] = ACTIONS(3648), - [anon_sym_namespace] = ACTIONS(3648), - [anon_sym_static_assert] = ACTIONS(3648), - [anon_sym_concept] = ACTIONS(3648), - [anon_sym_co_return] = ACTIONS(3648), - [anon_sym_co_yield] = ACTIONS(3648), - [anon_sym_R_DQUOTE] = ACTIONS(3650), - [anon_sym_LR_DQUOTE] = ACTIONS(3650), - [anon_sym_uR_DQUOTE] = ACTIONS(3650), - [anon_sym_UR_DQUOTE] = ACTIONS(3650), - [anon_sym_u8R_DQUOTE] = ACTIONS(3650), - [anon_sym_co_await] = ACTIONS(3648), - [anon_sym_new] = ACTIONS(3648), - [anon_sym_requires] = ACTIONS(3648), - [anon_sym_CARET_CARET] = ACTIONS(3650), - [anon_sym_LBRACK_COLON] = ACTIONS(3650), - [sym_this] = ACTIONS(3648), - }, - [STATE(733)] = { - [sym_identifier] = ACTIONS(3716), - [aux_sym_preproc_include_token1] = ACTIONS(3716), - [aux_sym_preproc_def_token1] = ACTIONS(3716), - [aux_sym_preproc_if_token1] = ACTIONS(3716), - [aux_sym_preproc_if_token2] = ACTIONS(3716), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3716), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3716), - [sym_preproc_directive] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3718), - [anon_sym_BANG] = ACTIONS(3718), - [anon_sym_TILDE] = ACTIONS(3718), - [anon_sym_DASH] = ACTIONS(3716), - [anon_sym_PLUS] = ACTIONS(3716), - [anon_sym_STAR] = ACTIONS(3718), - [anon_sym_AMP_AMP] = ACTIONS(3718), - [anon_sym_AMP] = ACTIONS(3716), - [anon_sym_SEMI] = ACTIONS(3718), - [anon_sym___extension__] = ACTIONS(3716), - [anon_sym_typedef] = ACTIONS(3716), - [anon_sym_virtual] = ACTIONS(3716), - [anon_sym_extern] = ACTIONS(3716), - [anon_sym___attribute__] = ACTIONS(3716), - [anon_sym___attribute] = ACTIONS(3716), - [anon_sym_using] = ACTIONS(3716), - [anon_sym_COLON_COLON] = ACTIONS(3718), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3718), - [anon_sym___declspec] = ACTIONS(3716), - [anon_sym___based] = ACTIONS(3716), - [anon_sym___cdecl] = ACTIONS(3716), - [anon_sym___clrcall] = ACTIONS(3716), - [anon_sym___stdcall] = ACTIONS(3716), - [anon_sym___fastcall] = ACTIONS(3716), - [anon_sym___thiscall] = ACTIONS(3716), - [anon_sym___vectorcall] = ACTIONS(3716), - [anon_sym_LBRACE] = ACTIONS(3718), - [anon_sym_signed] = ACTIONS(3716), - [anon_sym_unsigned] = ACTIONS(3716), - [anon_sym_long] = ACTIONS(3716), - [anon_sym_short] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(3716), - [anon_sym_static] = ACTIONS(3716), - [anon_sym_register] = ACTIONS(3716), - [anon_sym_inline] = ACTIONS(3716), - [anon_sym___inline] = ACTIONS(3716), - [anon_sym___inline__] = ACTIONS(3716), - [anon_sym___forceinline] = ACTIONS(3716), - [anon_sym_thread_local] = ACTIONS(3716), - [anon_sym___thread] = ACTIONS(3716), - [anon_sym_const] = ACTIONS(3716), - [anon_sym_constexpr] = ACTIONS(3716), - [anon_sym_volatile] = ACTIONS(3716), - [anon_sym_restrict] = ACTIONS(3716), - [anon_sym___restrict__] = ACTIONS(3716), - [anon_sym__Atomic] = ACTIONS(3716), - [anon_sym__Noreturn] = ACTIONS(3716), - [anon_sym_noreturn] = ACTIONS(3716), - [anon_sym__Nonnull] = ACTIONS(3716), - [anon_sym_mutable] = ACTIONS(3716), - [anon_sym_constinit] = ACTIONS(3716), - [anon_sym_consteval] = ACTIONS(3716), - [anon_sym_alignas] = ACTIONS(3716), - [anon_sym__Alignas] = ACTIONS(3716), - [sym_primitive_type] = ACTIONS(3716), - [anon_sym_enum] = ACTIONS(3716), - [anon_sym_class] = ACTIONS(3716), - [anon_sym_struct] = ACTIONS(3716), - [anon_sym_union] = ACTIONS(3716), - [anon_sym_if] = ACTIONS(3716), - [anon_sym_else] = ACTIONS(3716), - [anon_sym_switch] = ACTIONS(3716), - [anon_sym_case] = ACTIONS(3716), - [anon_sym_default] = ACTIONS(3716), - [anon_sym_while] = ACTIONS(3716), - [anon_sym_do] = ACTIONS(3716), - [anon_sym_for] = ACTIONS(3716), - [anon_sym_return] = ACTIONS(3716), - [anon_sym_break] = ACTIONS(3716), - [anon_sym_continue] = ACTIONS(3716), - [anon_sym_goto] = ACTIONS(3716), - [anon_sym___try] = ACTIONS(3716), - [anon_sym___leave] = ACTIONS(3716), - [anon_sym_not] = ACTIONS(3716), - [anon_sym_compl] = ACTIONS(3716), - [anon_sym_DASH_DASH] = ACTIONS(3718), - [anon_sym_PLUS_PLUS] = ACTIONS(3718), - [anon_sym_sizeof] = ACTIONS(3716), - [anon_sym___alignof__] = ACTIONS(3716), - [anon_sym___alignof] = ACTIONS(3716), - [anon_sym__alignof] = ACTIONS(3716), - [anon_sym_alignof] = ACTIONS(3716), - [anon_sym__Alignof] = ACTIONS(3716), - [anon_sym_offsetof] = ACTIONS(3716), - [anon_sym__Generic] = ACTIONS(3716), - [anon_sym_typename] = ACTIONS(3716), - [anon_sym_asm] = ACTIONS(3716), - [anon_sym___asm__] = ACTIONS(3716), - [anon_sym___asm] = ACTIONS(3716), - [sym_number_literal] = ACTIONS(3718), - [anon_sym_L_SQUOTE] = ACTIONS(3718), - [anon_sym_u_SQUOTE] = ACTIONS(3718), - [anon_sym_U_SQUOTE] = ACTIONS(3718), - [anon_sym_u8_SQUOTE] = ACTIONS(3718), - [anon_sym_SQUOTE] = ACTIONS(3718), - [anon_sym_L_DQUOTE] = ACTIONS(3718), - [anon_sym_u_DQUOTE] = ACTIONS(3718), - [anon_sym_U_DQUOTE] = ACTIONS(3718), - [anon_sym_u8_DQUOTE] = ACTIONS(3718), - [anon_sym_DQUOTE] = ACTIONS(3718), - [sym_true] = ACTIONS(3716), - [sym_false] = ACTIONS(3716), - [anon_sym_NULL] = ACTIONS(3716), - [anon_sym_nullptr] = ACTIONS(3716), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3716), - [anon_sym_decltype] = ACTIONS(3716), - [anon_sym_explicit] = ACTIONS(3716), - [anon_sym_template] = ACTIONS(3716), - [anon_sym_operator] = ACTIONS(3716), - [anon_sym_try] = ACTIONS(3716), - [anon_sym_delete] = ACTIONS(3716), - [anon_sym_throw] = ACTIONS(3716), - [anon_sym_namespace] = ACTIONS(3716), - [anon_sym_static_assert] = ACTIONS(3716), - [anon_sym_concept] = ACTIONS(3716), - [anon_sym_co_return] = ACTIONS(3716), - [anon_sym_co_yield] = ACTIONS(3716), - [anon_sym_R_DQUOTE] = ACTIONS(3718), - [anon_sym_LR_DQUOTE] = ACTIONS(3718), - [anon_sym_uR_DQUOTE] = ACTIONS(3718), - [anon_sym_UR_DQUOTE] = ACTIONS(3718), - [anon_sym_u8R_DQUOTE] = ACTIONS(3718), - [anon_sym_co_await] = ACTIONS(3716), - [anon_sym_new] = ACTIONS(3716), - [anon_sym_requires] = ACTIONS(3716), - [anon_sym_CARET_CARET] = ACTIONS(3718), - [anon_sym_LBRACK_COLON] = ACTIONS(3718), - [sym_this] = ACTIONS(3716), - }, - [STATE(734)] = { - [ts_builtin_sym_end] = ACTIONS(4117), - [sym_identifier] = ACTIONS(4115), - [aux_sym_preproc_include_token1] = ACTIONS(4115), - [aux_sym_preproc_def_token1] = ACTIONS(4115), - [aux_sym_preproc_if_token1] = ACTIONS(4115), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4115), - [sym_preproc_directive] = ACTIONS(4115), - [anon_sym_LPAREN2] = ACTIONS(4117), - [anon_sym_BANG] = ACTIONS(4117), - [anon_sym_TILDE] = ACTIONS(4117), - [anon_sym_DASH] = ACTIONS(4115), - [anon_sym_PLUS] = ACTIONS(4115), - [anon_sym_STAR] = ACTIONS(4117), - [anon_sym_AMP_AMP] = ACTIONS(4117), - [anon_sym_AMP] = ACTIONS(4115), - [anon_sym_SEMI] = ACTIONS(4117), - [anon_sym___extension__] = ACTIONS(4115), - [anon_sym_typedef] = ACTIONS(4115), - [anon_sym_virtual] = ACTIONS(4115), - [anon_sym_extern] = ACTIONS(4115), - [anon_sym___attribute__] = ACTIONS(4115), - [anon_sym___attribute] = ACTIONS(4115), - [anon_sym_using] = ACTIONS(4115), - [anon_sym_COLON_COLON] = ACTIONS(4117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4117), - [anon_sym___declspec] = ACTIONS(4115), - [anon_sym___based] = ACTIONS(4115), - [anon_sym___cdecl] = ACTIONS(4115), - [anon_sym___clrcall] = ACTIONS(4115), - [anon_sym___stdcall] = ACTIONS(4115), - [anon_sym___fastcall] = ACTIONS(4115), - [anon_sym___thiscall] = ACTIONS(4115), - [anon_sym___vectorcall] = ACTIONS(4115), - [anon_sym_LBRACE] = ACTIONS(4117), - [anon_sym_signed] = ACTIONS(4115), - [anon_sym_unsigned] = ACTIONS(4115), - [anon_sym_long] = ACTIONS(4115), - [anon_sym_short] = ACTIONS(4115), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4115), - [anon_sym_register] = ACTIONS(4115), - [anon_sym_inline] = ACTIONS(4115), - [anon_sym___inline] = ACTIONS(4115), - [anon_sym___inline__] = ACTIONS(4115), - [anon_sym___forceinline] = ACTIONS(4115), - [anon_sym_thread_local] = ACTIONS(4115), - [anon_sym___thread] = ACTIONS(4115), - [anon_sym_const] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(4115), - [anon_sym_volatile] = ACTIONS(4115), - [anon_sym_restrict] = ACTIONS(4115), - [anon_sym___restrict__] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(4115), - [anon_sym__Noreturn] = ACTIONS(4115), - [anon_sym_noreturn] = ACTIONS(4115), - [anon_sym__Nonnull] = ACTIONS(4115), - [anon_sym_mutable] = ACTIONS(4115), - [anon_sym_constinit] = ACTIONS(4115), - [anon_sym_consteval] = ACTIONS(4115), - [anon_sym_alignas] = ACTIONS(4115), - [anon_sym__Alignas] = ACTIONS(4115), - [sym_primitive_type] = ACTIONS(4115), - [anon_sym_enum] = ACTIONS(4115), - [anon_sym_class] = ACTIONS(4115), - [anon_sym_struct] = ACTIONS(4115), - [anon_sym_union] = ACTIONS(4115), - [anon_sym_if] = ACTIONS(4115), - [anon_sym_switch] = ACTIONS(4115), - [anon_sym_case] = ACTIONS(4115), - [anon_sym_default] = ACTIONS(4115), - [anon_sym_while] = ACTIONS(4115), - [anon_sym_do] = ACTIONS(4115), - [anon_sym_for] = ACTIONS(4115), - [anon_sym_return] = ACTIONS(4115), - [anon_sym_break] = ACTIONS(4115), - [anon_sym_continue] = ACTIONS(4115), - [anon_sym_goto] = ACTIONS(4115), - [anon_sym_not] = ACTIONS(4115), - [anon_sym_compl] = ACTIONS(4115), - [anon_sym_DASH_DASH] = ACTIONS(4117), - [anon_sym_PLUS_PLUS] = ACTIONS(4117), - [anon_sym_sizeof] = ACTIONS(4115), - [anon_sym___alignof__] = ACTIONS(4115), - [anon_sym___alignof] = ACTIONS(4115), - [anon_sym__alignof] = ACTIONS(4115), - [anon_sym_alignof] = ACTIONS(4115), - [anon_sym__Alignof] = ACTIONS(4115), - [anon_sym_offsetof] = ACTIONS(4115), - [anon_sym__Generic] = ACTIONS(4115), - [anon_sym_typename] = ACTIONS(4115), - [anon_sym_asm] = ACTIONS(4115), - [anon_sym___asm__] = ACTIONS(4115), - [anon_sym___asm] = ACTIONS(4115), - [sym_number_literal] = ACTIONS(4117), - [anon_sym_L_SQUOTE] = ACTIONS(4117), - [anon_sym_u_SQUOTE] = ACTIONS(4117), - [anon_sym_U_SQUOTE] = ACTIONS(4117), - [anon_sym_u8_SQUOTE] = ACTIONS(4117), - [anon_sym_SQUOTE] = ACTIONS(4117), - [anon_sym_L_DQUOTE] = ACTIONS(4117), - [anon_sym_u_DQUOTE] = ACTIONS(4117), - [anon_sym_U_DQUOTE] = ACTIONS(4117), - [anon_sym_u8_DQUOTE] = ACTIONS(4117), - [anon_sym_DQUOTE] = ACTIONS(4117), - [sym_true] = ACTIONS(4115), - [sym_false] = ACTIONS(4115), - [anon_sym_NULL] = ACTIONS(4115), - [anon_sym_nullptr] = ACTIONS(4115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4115), - [anon_sym_decltype] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(4115), - [anon_sym_export] = ACTIONS(4115), - [anon_sym_module] = ACTIONS(4115), - [anon_sym_import] = ACTIONS(4115), - [anon_sym_template] = ACTIONS(4115), - [anon_sym_operator] = ACTIONS(4115), - [anon_sym_try] = ACTIONS(4115), - [anon_sym_delete] = ACTIONS(4115), - [anon_sym_throw] = ACTIONS(4115), - [anon_sym_namespace] = ACTIONS(4115), - [anon_sym_static_assert] = ACTIONS(4115), - [anon_sym_concept] = ACTIONS(4115), - [anon_sym_co_return] = ACTIONS(4115), - [anon_sym_co_yield] = ACTIONS(4115), - [anon_sym_R_DQUOTE] = ACTIONS(4117), - [anon_sym_LR_DQUOTE] = ACTIONS(4117), - [anon_sym_uR_DQUOTE] = ACTIONS(4117), - [anon_sym_UR_DQUOTE] = ACTIONS(4117), - [anon_sym_u8R_DQUOTE] = ACTIONS(4117), - [anon_sym_co_await] = ACTIONS(4115), - [anon_sym_new] = ACTIONS(4115), - [anon_sym_requires] = ACTIONS(4115), - [anon_sym_CARET_CARET] = ACTIONS(4117), - [anon_sym_LBRACK_COLON] = ACTIONS(4117), - [sym_this] = ACTIONS(4115), - }, - [STATE(735)] = { - [sym_identifier] = ACTIONS(3672), - [aux_sym_preproc_include_token1] = ACTIONS(3672), - [aux_sym_preproc_def_token1] = ACTIONS(3672), - [aux_sym_preproc_if_token1] = ACTIONS(3672), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3672), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3672), - [sym_preproc_directive] = ACTIONS(3672), - [anon_sym_LPAREN2] = ACTIONS(3674), - [anon_sym_BANG] = ACTIONS(3674), - [anon_sym_TILDE] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_STAR] = ACTIONS(3674), - [anon_sym_AMP_AMP] = ACTIONS(3674), - [anon_sym_AMP] = ACTIONS(3672), - [anon_sym_SEMI] = ACTIONS(3674), - [anon_sym___extension__] = ACTIONS(3672), - [anon_sym_typedef] = ACTIONS(3672), - [anon_sym_virtual] = ACTIONS(3672), - [anon_sym_extern] = ACTIONS(3672), - [anon_sym___attribute__] = ACTIONS(3672), - [anon_sym___attribute] = ACTIONS(3672), - [anon_sym_using] = ACTIONS(3672), - [anon_sym_COLON_COLON] = ACTIONS(3674), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3674), - [anon_sym___declspec] = ACTIONS(3672), - [anon_sym___based] = ACTIONS(3672), - [anon_sym___cdecl] = ACTIONS(3672), - [anon_sym___clrcall] = ACTIONS(3672), - [anon_sym___stdcall] = ACTIONS(3672), - [anon_sym___fastcall] = ACTIONS(3672), - [anon_sym___thiscall] = ACTIONS(3672), - [anon_sym___vectorcall] = ACTIONS(3672), - [anon_sym_LBRACE] = ACTIONS(3674), - [anon_sym_RBRACE] = ACTIONS(3674), - [anon_sym_signed] = ACTIONS(3672), - [anon_sym_unsigned] = ACTIONS(3672), - [anon_sym_long] = ACTIONS(3672), - [anon_sym_short] = ACTIONS(3672), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_static] = ACTIONS(3672), - [anon_sym_register] = ACTIONS(3672), - [anon_sym_inline] = ACTIONS(3672), - [anon_sym___inline] = ACTIONS(3672), - [anon_sym___inline__] = ACTIONS(3672), - [anon_sym___forceinline] = ACTIONS(3672), - [anon_sym_thread_local] = ACTIONS(3672), - [anon_sym___thread] = ACTIONS(3672), - [anon_sym_const] = ACTIONS(3672), - [anon_sym_constexpr] = ACTIONS(3672), - [anon_sym_volatile] = ACTIONS(3672), - [anon_sym_restrict] = ACTIONS(3672), - [anon_sym___restrict__] = ACTIONS(3672), - [anon_sym__Atomic] = ACTIONS(3672), - [anon_sym__Noreturn] = ACTIONS(3672), - [anon_sym_noreturn] = ACTIONS(3672), - [anon_sym__Nonnull] = ACTIONS(3672), - [anon_sym_mutable] = ACTIONS(3672), - [anon_sym_constinit] = ACTIONS(3672), - [anon_sym_consteval] = ACTIONS(3672), - [anon_sym_alignas] = ACTIONS(3672), - [anon_sym__Alignas] = ACTIONS(3672), - [sym_primitive_type] = ACTIONS(3672), - [anon_sym_enum] = ACTIONS(3672), - [anon_sym_class] = ACTIONS(3672), - [anon_sym_struct] = ACTIONS(3672), - [anon_sym_union] = ACTIONS(3672), - [anon_sym_if] = ACTIONS(3672), - [anon_sym_else] = ACTIONS(3672), - [anon_sym_switch] = ACTIONS(3672), - [anon_sym_case] = ACTIONS(3672), - [anon_sym_default] = ACTIONS(3672), - [anon_sym_while] = ACTIONS(3672), - [anon_sym_do] = ACTIONS(3672), - [anon_sym_for] = ACTIONS(3672), - [anon_sym_return] = ACTIONS(3672), - [anon_sym_break] = ACTIONS(3672), - [anon_sym_continue] = ACTIONS(3672), - [anon_sym_goto] = ACTIONS(3672), - [anon_sym___try] = ACTIONS(3672), - [anon_sym___leave] = ACTIONS(3672), - [anon_sym_not] = ACTIONS(3672), - [anon_sym_compl] = ACTIONS(3672), - [anon_sym_DASH_DASH] = ACTIONS(3674), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_sizeof] = ACTIONS(3672), - [anon_sym___alignof__] = ACTIONS(3672), - [anon_sym___alignof] = ACTIONS(3672), - [anon_sym__alignof] = ACTIONS(3672), - [anon_sym_alignof] = ACTIONS(3672), - [anon_sym__Alignof] = ACTIONS(3672), - [anon_sym_offsetof] = ACTIONS(3672), - [anon_sym__Generic] = ACTIONS(3672), - [anon_sym_typename] = ACTIONS(3672), - [anon_sym_asm] = ACTIONS(3672), - [anon_sym___asm__] = ACTIONS(3672), - [anon_sym___asm] = ACTIONS(3672), - [sym_number_literal] = ACTIONS(3674), - [anon_sym_L_SQUOTE] = ACTIONS(3674), - [anon_sym_u_SQUOTE] = ACTIONS(3674), - [anon_sym_U_SQUOTE] = ACTIONS(3674), - [anon_sym_u8_SQUOTE] = ACTIONS(3674), - [anon_sym_SQUOTE] = ACTIONS(3674), - [anon_sym_L_DQUOTE] = ACTIONS(3674), - [anon_sym_u_DQUOTE] = ACTIONS(3674), - [anon_sym_U_DQUOTE] = ACTIONS(3674), - [anon_sym_u8_DQUOTE] = ACTIONS(3674), - [anon_sym_DQUOTE] = ACTIONS(3674), - [sym_true] = ACTIONS(3672), - [sym_false] = ACTIONS(3672), - [anon_sym_NULL] = ACTIONS(3672), - [anon_sym_nullptr] = ACTIONS(3672), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3672), - [anon_sym_decltype] = ACTIONS(3672), - [anon_sym_explicit] = ACTIONS(3672), - [anon_sym_template] = ACTIONS(3672), - [anon_sym_operator] = ACTIONS(3672), - [anon_sym_try] = ACTIONS(3672), - [anon_sym_delete] = ACTIONS(3672), - [anon_sym_throw] = ACTIONS(3672), - [anon_sym_namespace] = ACTIONS(3672), - [anon_sym_static_assert] = ACTIONS(3672), - [anon_sym_concept] = ACTIONS(3672), - [anon_sym_co_return] = ACTIONS(3672), - [anon_sym_co_yield] = ACTIONS(3672), - [anon_sym_R_DQUOTE] = ACTIONS(3674), - [anon_sym_LR_DQUOTE] = ACTIONS(3674), - [anon_sym_uR_DQUOTE] = ACTIONS(3674), - [anon_sym_UR_DQUOTE] = ACTIONS(3674), - [anon_sym_u8R_DQUOTE] = ACTIONS(3674), - [anon_sym_co_await] = ACTIONS(3672), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_requires] = ACTIONS(3672), - [anon_sym_CARET_CARET] = ACTIONS(3674), - [anon_sym_LBRACK_COLON] = ACTIONS(3674), - [sym_this] = ACTIONS(3672), - }, - [STATE(736)] = { - [sym_identifier] = ACTIONS(3676), - [aux_sym_preproc_include_token1] = ACTIONS(3676), - [aux_sym_preproc_def_token1] = ACTIONS(3676), - [aux_sym_preproc_if_token1] = ACTIONS(3676), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3676), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3676), - [sym_preproc_directive] = ACTIONS(3676), - [anon_sym_LPAREN2] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_TILDE] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_STAR] = ACTIONS(3678), - [anon_sym_AMP_AMP] = ACTIONS(3678), - [anon_sym_AMP] = ACTIONS(3676), - [anon_sym_SEMI] = ACTIONS(3678), - [anon_sym___extension__] = ACTIONS(3676), - [anon_sym_typedef] = ACTIONS(3676), - [anon_sym_virtual] = ACTIONS(3676), - [anon_sym_extern] = ACTIONS(3676), - [anon_sym___attribute__] = ACTIONS(3676), - [anon_sym___attribute] = ACTIONS(3676), - [anon_sym_using] = ACTIONS(3676), - [anon_sym_COLON_COLON] = ACTIONS(3678), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3678), - [anon_sym___declspec] = ACTIONS(3676), - [anon_sym___based] = ACTIONS(3676), - [anon_sym___cdecl] = ACTIONS(3676), - [anon_sym___clrcall] = ACTIONS(3676), - [anon_sym___stdcall] = ACTIONS(3676), - [anon_sym___fastcall] = ACTIONS(3676), - [anon_sym___thiscall] = ACTIONS(3676), - [anon_sym___vectorcall] = ACTIONS(3676), - [anon_sym_LBRACE] = ACTIONS(3678), - [anon_sym_RBRACE] = ACTIONS(3678), - [anon_sym_signed] = ACTIONS(3676), - [anon_sym_unsigned] = ACTIONS(3676), - [anon_sym_long] = ACTIONS(3676), - [anon_sym_short] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3676), - [anon_sym_static] = ACTIONS(3676), - [anon_sym_register] = ACTIONS(3676), - [anon_sym_inline] = ACTIONS(3676), - [anon_sym___inline] = ACTIONS(3676), - [anon_sym___inline__] = ACTIONS(3676), - [anon_sym___forceinline] = ACTIONS(3676), - [anon_sym_thread_local] = ACTIONS(3676), - [anon_sym___thread] = ACTIONS(3676), - [anon_sym_const] = ACTIONS(3676), - [anon_sym_constexpr] = ACTIONS(3676), - [anon_sym_volatile] = ACTIONS(3676), - [anon_sym_restrict] = ACTIONS(3676), - [anon_sym___restrict__] = ACTIONS(3676), - [anon_sym__Atomic] = ACTIONS(3676), - [anon_sym__Noreturn] = ACTIONS(3676), - [anon_sym_noreturn] = ACTIONS(3676), - [anon_sym__Nonnull] = ACTIONS(3676), - [anon_sym_mutable] = ACTIONS(3676), - [anon_sym_constinit] = ACTIONS(3676), - [anon_sym_consteval] = ACTIONS(3676), - [anon_sym_alignas] = ACTIONS(3676), - [anon_sym__Alignas] = ACTIONS(3676), - [sym_primitive_type] = ACTIONS(3676), - [anon_sym_enum] = ACTIONS(3676), - [anon_sym_class] = ACTIONS(3676), - [anon_sym_struct] = ACTIONS(3676), - [anon_sym_union] = ACTIONS(3676), - [anon_sym_if] = ACTIONS(3676), - [anon_sym_else] = ACTIONS(3676), - [anon_sym_switch] = ACTIONS(3676), - [anon_sym_case] = ACTIONS(3676), - [anon_sym_default] = ACTIONS(3676), - [anon_sym_while] = ACTIONS(3676), - [anon_sym_do] = ACTIONS(3676), - [anon_sym_for] = ACTIONS(3676), - [anon_sym_return] = ACTIONS(3676), - [anon_sym_break] = ACTIONS(3676), - [anon_sym_continue] = ACTIONS(3676), - [anon_sym_goto] = ACTIONS(3676), - [anon_sym___try] = ACTIONS(3676), - [anon_sym___leave] = ACTIONS(3676), - [anon_sym_not] = ACTIONS(3676), - [anon_sym_compl] = ACTIONS(3676), - [anon_sym_DASH_DASH] = ACTIONS(3678), - [anon_sym_PLUS_PLUS] = ACTIONS(3678), - [anon_sym_sizeof] = ACTIONS(3676), - [anon_sym___alignof__] = ACTIONS(3676), - [anon_sym___alignof] = ACTIONS(3676), - [anon_sym__alignof] = ACTIONS(3676), - [anon_sym_alignof] = ACTIONS(3676), - [anon_sym__Alignof] = ACTIONS(3676), - [anon_sym_offsetof] = ACTIONS(3676), - [anon_sym__Generic] = ACTIONS(3676), - [anon_sym_typename] = ACTIONS(3676), - [anon_sym_asm] = ACTIONS(3676), - [anon_sym___asm__] = ACTIONS(3676), - [anon_sym___asm] = ACTIONS(3676), - [sym_number_literal] = ACTIONS(3678), - [anon_sym_L_SQUOTE] = ACTIONS(3678), - [anon_sym_u_SQUOTE] = ACTIONS(3678), - [anon_sym_U_SQUOTE] = ACTIONS(3678), - [anon_sym_u8_SQUOTE] = ACTIONS(3678), - [anon_sym_SQUOTE] = ACTIONS(3678), - [anon_sym_L_DQUOTE] = ACTIONS(3678), - [anon_sym_u_DQUOTE] = ACTIONS(3678), - [anon_sym_U_DQUOTE] = ACTIONS(3678), - [anon_sym_u8_DQUOTE] = ACTIONS(3678), - [anon_sym_DQUOTE] = ACTIONS(3678), - [sym_true] = ACTIONS(3676), - [sym_false] = ACTIONS(3676), - [anon_sym_NULL] = ACTIONS(3676), - [anon_sym_nullptr] = ACTIONS(3676), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3676), - [anon_sym_decltype] = ACTIONS(3676), - [anon_sym_explicit] = ACTIONS(3676), - [anon_sym_template] = ACTIONS(3676), - [anon_sym_operator] = ACTIONS(3676), - [anon_sym_try] = ACTIONS(3676), - [anon_sym_delete] = ACTIONS(3676), - [anon_sym_throw] = ACTIONS(3676), - [anon_sym_namespace] = ACTIONS(3676), - [anon_sym_static_assert] = ACTIONS(3676), - [anon_sym_concept] = ACTIONS(3676), - [anon_sym_co_return] = ACTIONS(3676), - [anon_sym_co_yield] = ACTIONS(3676), - [anon_sym_R_DQUOTE] = ACTIONS(3678), - [anon_sym_LR_DQUOTE] = ACTIONS(3678), - [anon_sym_uR_DQUOTE] = ACTIONS(3678), - [anon_sym_UR_DQUOTE] = ACTIONS(3678), - [anon_sym_u8R_DQUOTE] = ACTIONS(3678), - [anon_sym_co_await] = ACTIONS(3676), - [anon_sym_new] = ACTIONS(3676), - [anon_sym_requires] = ACTIONS(3676), - [anon_sym_CARET_CARET] = ACTIONS(3678), - [anon_sym_LBRACK_COLON] = ACTIONS(3678), - [sym_this] = ACTIONS(3676), + [STATE(611)] = { + [sym_else_clause] = STATE(745), + [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___extension__] = ACTIONS(3368), + [anon_sym_typedef] = ACTIONS(3368), + [anon_sym_virtual] = ACTIONS(3368), + [anon_sym_extern] = ACTIONS(3368), + [anon_sym___attribute__] = ACTIONS(3368), + [anon_sym___attribute] = ACTIONS(3368), + [anon_sym_using] = 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_signed] = ACTIONS(3368), + [anon_sym_unsigned] = ACTIONS(3368), + [anon_sym_long] = ACTIONS(3368), + [anon_sym_short] = ACTIONS(3368), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_register] = ACTIONS(3368), + [anon_sym_inline] = ACTIONS(3368), + [anon_sym___inline] = ACTIONS(3368), + [anon_sym___inline__] = ACTIONS(3368), + [anon_sym___forceinline] = ACTIONS(3368), + [anon_sym_thread_local] = ACTIONS(3368), + [anon_sym___thread] = 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__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3368), + [anon_sym__Alignas] = 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_else] = ACTIONS(4670), + [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___try] = ACTIONS(3368), + [anon_sym___leave] = 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___alignof__] = ACTIONS(3368), + [anon_sym___alignof] = ACTIONS(3368), + [anon_sym__alignof] = ACTIONS(3368), + [anon_sym_alignof] = ACTIONS(3368), + [anon_sym__Alignof] = ACTIONS(3368), + [anon_sym_offsetof] = ACTIONS(3368), + [anon_sym__Generic] = ACTIONS(3368), + [anon_sym_typename] = ACTIONS(3368), + [anon_sym_asm] = 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_explicit] = ACTIONS(3368), + [anon_sym_export] = ACTIONS(3368), + [anon_sym_import] = 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_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), + [anon_sym_CARET_CARET] = ACTIONS(3370), + [anon_sym_LBRACK_COLON] = ACTIONS(3370), + [sym_this] = ACTIONS(3368), }, - [STATE(737)] = { - [ts_builtin_sym_end] = ACTIONS(4198), - [sym_identifier] = ACTIONS(4196), - [aux_sym_preproc_include_token1] = ACTIONS(4196), - [aux_sym_preproc_def_token1] = ACTIONS(4196), - [aux_sym_preproc_if_token1] = ACTIONS(4196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4196), - [sym_preproc_directive] = ACTIONS(4196), - [anon_sym_LPAREN2] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4198), - [anon_sym_TILDE] = ACTIONS(4198), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_AMP] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym___extension__] = ACTIONS(4196), - [anon_sym_typedef] = ACTIONS(4196), - [anon_sym_virtual] = ACTIONS(4196), - [anon_sym_extern] = ACTIONS(4196), - [anon_sym___attribute__] = ACTIONS(4196), - [anon_sym___attribute] = ACTIONS(4196), - [anon_sym_using] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4198), - [anon_sym___declspec] = ACTIONS(4196), - [anon_sym___based] = ACTIONS(4196), - [anon_sym___cdecl] = ACTIONS(4196), - [anon_sym___clrcall] = ACTIONS(4196), - [anon_sym___stdcall] = ACTIONS(4196), - [anon_sym___fastcall] = ACTIONS(4196), - [anon_sym___thiscall] = ACTIONS(4196), - [anon_sym___vectorcall] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4198), - [anon_sym_signed] = ACTIONS(4196), - [anon_sym_unsigned] = ACTIONS(4196), - [anon_sym_long] = ACTIONS(4196), - [anon_sym_short] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_static] = ACTIONS(4196), - [anon_sym_register] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym___inline] = ACTIONS(4196), - [anon_sym___inline__] = ACTIONS(4196), - [anon_sym___forceinline] = ACTIONS(4196), - [anon_sym_thread_local] = ACTIONS(4196), - [anon_sym___thread] = ACTIONS(4196), - [anon_sym_const] = ACTIONS(4196), - [anon_sym_constexpr] = ACTIONS(4196), - [anon_sym_volatile] = ACTIONS(4196), - [anon_sym_restrict] = ACTIONS(4196), - [anon_sym___restrict__] = ACTIONS(4196), - [anon_sym__Atomic] = ACTIONS(4196), - [anon_sym__Noreturn] = ACTIONS(4196), - [anon_sym_noreturn] = ACTIONS(4196), - [anon_sym__Nonnull] = ACTIONS(4196), - [anon_sym_mutable] = ACTIONS(4196), - [anon_sym_constinit] = ACTIONS(4196), - [anon_sym_consteval] = ACTIONS(4196), - [anon_sym_alignas] = ACTIONS(4196), - [anon_sym__Alignas] = ACTIONS(4196), - [sym_primitive_type] = ACTIONS(4196), - [anon_sym_enum] = ACTIONS(4196), - [anon_sym_class] = ACTIONS(4196), - [anon_sym_struct] = ACTIONS(4196), - [anon_sym_union] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_switch] = ACTIONS(4196), - [anon_sym_case] = ACTIONS(4196), - [anon_sym_default] = ACTIONS(4196), - [anon_sym_while] = ACTIONS(4196), - [anon_sym_do] = ACTIONS(4196), - [anon_sym_for] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_goto] = ACTIONS(4196), - [anon_sym_not] = ACTIONS(4196), - [anon_sym_compl] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_sizeof] = ACTIONS(4196), - [anon_sym___alignof__] = ACTIONS(4196), - [anon_sym___alignof] = ACTIONS(4196), - [anon_sym__alignof] = ACTIONS(4196), - [anon_sym_alignof] = ACTIONS(4196), - [anon_sym__Alignof] = ACTIONS(4196), - [anon_sym_offsetof] = ACTIONS(4196), - [anon_sym__Generic] = ACTIONS(4196), - [anon_sym_typename] = ACTIONS(4196), - [anon_sym_asm] = ACTIONS(4196), - [anon_sym___asm__] = ACTIONS(4196), - [anon_sym___asm] = ACTIONS(4196), - [sym_number_literal] = ACTIONS(4198), - [anon_sym_L_SQUOTE] = ACTIONS(4198), - [anon_sym_u_SQUOTE] = ACTIONS(4198), - [anon_sym_U_SQUOTE] = ACTIONS(4198), - [anon_sym_u8_SQUOTE] = ACTIONS(4198), - [anon_sym_SQUOTE] = ACTIONS(4198), - [anon_sym_L_DQUOTE] = ACTIONS(4198), - [anon_sym_u_DQUOTE] = ACTIONS(4198), - [anon_sym_U_DQUOTE] = ACTIONS(4198), - [anon_sym_u8_DQUOTE] = ACTIONS(4198), - [anon_sym_DQUOTE] = ACTIONS(4198), - [sym_true] = ACTIONS(4196), - [sym_false] = ACTIONS(4196), - [anon_sym_NULL] = ACTIONS(4196), - [anon_sym_nullptr] = ACTIONS(4196), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4196), - [anon_sym_decltype] = ACTIONS(4196), - [anon_sym_explicit] = ACTIONS(4196), - [anon_sym_export] = ACTIONS(4196), - [anon_sym_module] = ACTIONS(4196), - [anon_sym_import] = ACTIONS(4196), - [anon_sym_template] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_delete] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_namespace] = ACTIONS(4196), - [anon_sym_static_assert] = ACTIONS(4196), - [anon_sym_concept] = ACTIONS(4196), - [anon_sym_co_return] = ACTIONS(4196), - [anon_sym_co_yield] = ACTIONS(4196), - [anon_sym_R_DQUOTE] = ACTIONS(4198), - [anon_sym_LR_DQUOTE] = ACTIONS(4198), - [anon_sym_uR_DQUOTE] = ACTIONS(4198), - [anon_sym_UR_DQUOTE] = ACTIONS(4198), - [anon_sym_u8R_DQUOTE] = ACTIONS(4198), - [anon_sym_co_await] = ACTIONS(4196), - [anon_sym_new] = ACTIONS(4196), - [anon_sym_requires] = ACTIONS(4196), - [anon_sym_CARET_CARET] = ACTIONS(4198), - [anon_sym_LBRACK_COLON] = ACTIONS(4198), - [sym_this] = ACTIONS(4196), + [STATE(612)] = { + [sym_identifier] = ACTIONS(3646), + [aux_sym_preproc_include_token1] = ACTIONS(3646), + [aux_sym_preproc_def_token1] = ACTIONS(3646), + [aux_sym_preproc_if_token1] = ACTIONS(3646), + [aux_sym_preproc_if_token2] = ACTIONS(3646), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3646), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3646), + [sym_preproc_directive] = ACTIONS(3646), + [anon_sym_LPAREN2] = ACTIONS(3648), + [anon_sym_BANG] = ACTIONS(3648), + [anon_sym_TILDE] = ACTIONS(3648), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_AMP_AMP] = ACTIONS(3648), + [anon_sym_AMP] = ACTIONS(3646), + [anon_sym_SEMI] = ACTIONS(3648), + [anon_sym___extension__] = ACTIONS(3646), + [anon_sym_typedef] = ACTIONS(3646), + [anon_sym_virtual] = ACTIONS(3646), + [anon_sym_extern] = ACTIONS(3646), + [anon_sym___attribute__] = ACTIONS(3646), + [anon_sym___attribute] = ACTIONS(3646), + [anon_sym_using] = ACTIONS(3646), + [anon_sym_COLON_COLON] = ACTIONS(3648), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3648), + [anon_sym___declspec] = ACTIONS(3646), + [anon_sym___based] = ACTIONS(3646), + [anon_sym___cdecl] = ACTIONS(3646), + [anon_sym___clrcall] = ACTIONS(3646), + [anon_sym___stdcall] = ACTIONS(3646), + [anon_sym___fastcall] = ACTIONS(3646), + [anon_sym___thiscall] = ACTIONS(3646), + [anon_sym___vectorcall] = ACTIONS(3646), + [anon_sym_LBRACE] = ACTIONS(3648), + [anon_sym_signed] = ACTIONS(3646), + [anon_sym_unsigned] = ACTIONS(3646), + [anon_sym_long] = ACTIONS(3646), + [anon_sym_short] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_static] = ACTIONS(3646), + [anon_sym_register] = ACTIONS(3646), + [anon_sym_inline] = ACTIONS(3646), + [anon_sym___inline] = ACTIONS(3646), + [anon_sym___inline__] = ACTIONS(3646), + [anon_sym___forceinline] = ACTIONS(3646), + [anon_sym_thread_local] = ACTIONS(3646), + [anon_sym___thread] = ACTIONS(3646), + [anon_sym_const] = ACTIONS(3646), + [anon_sym_constexpr] = ACTIONS(3646), + [anon_sym_volatile] = ACTIONS(3646), + [anon_sym_restrict] = ACTIONS(3646), + [anon_sym___restrict__] = ACTIONS(3646), + [anon_sym__Atomic] = ACTIONS(3646), + [anon_sym__Noreturn] = ACTIONS(3646), + [anon_sym_noreturn] = ACTIONS(3646), + [anon_sym__Nonnull] = ACTIONS(3646), + [anon_sym_mutable] = ACTIONS(3646), + [anon_sym_constinit] = ACTIONS(3646), + [anon_sym_consteval] = ACTIONS(3646), + [anon_sym_alignas] = ACTIONS(3646), + [anon_sym__Alignas] = ACTIONS(3646), + [sym_primitive_type] = ACTIONS(3646), + [anon_sym_enum] = ACTIONS(3646), + [anon_sym_class] = ACTIONS(3646), + [anon_sym_struct] = ACTIONS(3646), + [anon_sym_union] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_else] = ACTIONS(3646), + [anon_sym_switch] = ACTIONS(3646), + [anon_sym_case] = ACTIONS(3646), + [anon_sym_default] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_break] = ACTIONS(3646), + [anon_sym_continue] = ACTIONS(3646), + [anon_sym_goto] = ACTIONS(3646), + [anon_sym___try] = ACTIONS(3646), + [anon_sym___leave] = ACTIONS(3646), + [anon_sym_not] = ACTIONS(3646), + [anon_sym_compl] = ACTIONS(3646), + [anon_sym_DASH_DASH] = ACTIONS(3648), + [anon_sym_PLUS_PLUS] = ACTIONS(3648), + [anon_sym_sizeof] = ACTIONS(3646), + [anon_sym___alignof__] = ACTIONS(3646), + [anon_sym___alignof] = ACTIONS(3646), + [anon_sym__alignof] = ACTIONS(3646), + [anon_sym_alignof] = ACTIONS(3646), + [anon_sym__Alignof] = ACTIONS(3646), + [anon_sym_offsetof] = ACTIONS(3646), + [anon_sym__Generic] = ACTIONS(3646), + [anon_sym_typename] = ACTIONS(3646), + [anon_sym_asm] = ACTIONS(3646), + [anon_sym___asm__] = ACTIONS(3646), + [anon_sym___asm] = ACTIONS(3646), + [sym_number_literal] = ACTIONS(3648), + [anon_sym_L_SQUOTE] = ACTIONS(3648), + [anon_sym_u_SQUOTE] = ACTIONS(3648), + [anon_sym_U_SQUOTE] = ACTIONS(3648), + [anon_sym_u8_SQUOTE] = ACTIONS(3648), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_L_DQUOTE] = ACTIONS(3648), + [anon_sym_u_DQUOTE] = ACTIONS(3648), + [anon_sym_U_DQUOTE] = ACTIONS(3648), + [anon_sym_u8_DQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3648), + [sym_true] = ACTIONS(3646), + [sym_false] = ACTIONS(3646), + [anon_sym_NULL] = ACTIONS(3646), + [anon_sym_nullptr] = ACTIONS(3646), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3646), + [anon_sym_decltype] = ACTIONS(3646), + [anon_sym_explicit] = ACTIONS(3646), + [anon_sym_export] = ACTIONS(3646), + [anon_sym_module] = ACTIONS(3646), + [anon_sym_import] = ACTIONS(3646), + [anon_sym_template] = ACTIONS(3646), + [anon_sym_operator] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_delete] = ACTIONS(3646), + [anon_sym_throw] = ACTIONS(3646), + [anon_sym_namespace] = ACTIONS(3646), + [anon_sym_static_assert] = ACTIONS(3646), + [anon_sym_concept] = ACTIONS(3646), + [anon_sym_co_return] = ACTIONS(3646), + [anon_sym_co_yield] = ACTIONS(3646), + [anon_sym_R_DQUOTE] = ACTIONS(3648), + [anon_sym_LR_DQUOTE] = ACTIONS(3648), + [anon_sym_uR_DQUOTE] = ACTIONS(3648), + [anon_sym_UR_DQUOTE] = ACTIONS(3648), + [anon_sym_u8R_DQUOTE] = ACTIONS(3648), + [anon_sym_co_await] = ACTIONS(3646), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_requires] = ACTIONS(3646), + [anon_sym_CARET_CARET] = ACTIONS(3648), + [anon_sym_LBRACK_COLON] = ACTIONS(3648), + [sym_this] = ACTIONS(3646), }, - [STATE(738)] = { - [ts_builtin_sym_end] = ACTIONS(3916), - [sym_identifier] = ACTIONS(3914), - [aux_sym_preproc_include_token1] = ACTIONS(3914), - [aux_sym_preproc_def_token1] = ACTIONS(3914), - [aux_sym_preproc_if_token1] = ACTIONS(3914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3914), - [sym_preproc_directive] = ACTIONS(3914), - [anon_sym_LPAREN2] = ACTIONS(3916), - [anon_sym_BANG] = ACTIONS(3916), - [anon_sym_TILDE] = ACTIONS(3916), - [anon_sym_DASH] = ACTIONS(3914), - [anon_sym_PLUS] = ACTIONS(3914), - [anon_sym_STAR] = ACTIONS(3916), - [anon_sym_AMP_AMP] = ACTIONS(3916), - [anon_sym_AMP] = ACTIONS(3914), - [anon_sym_SEMI] = ACTIONS(3916), - [anon_sym___extension__] = ACTIONS(3914), - [anon_sym_typedef] = ACTIONS(3914), - [anon_sym_virtual] = ACTIONS(3914), - [anon_sym_extern] = ACTIONS(3914), - [anon_sym___attribute__] = ACTIONS(3914), - [anon_sym___attribute] = ACTIONS(3914), - [anon_sym_using] = ACTIONS(3914), - [anon_sym_COLON_COLON] = ACTIONS(3916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3916), - [anon_sym___declspec] = ACTIONS(3914), - [anon_sym___based] = ACTIONS(3914), - [anon_sym___cdecl] = ACTIONS(3914), - [anon_sym___clrcall] = ACTIONS(3914), - [anon_sym___stdcall] = ACTIONS(3914), - [anon_sym___fastcall] = ACTIONS(3914), - [anon_sym___thiscall] = ACTIONS(3914), - [anon_sym___vectorcall] = ACTIONS(3914), - [anon_sym_LBRACE] = ACTIONS(3916), - [anon_sym_signed] = ACTIONS(3914), - [anon_sym_unsigned] = ACTIONS(3914), - [anon_sym_long] = ACTIONS(3914), - [anon_sym_short] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_register] = ACTIONS(3914), - [anon_sym_inline] = ACTIONS(3914), - [anon_sym___inline] = ACTIONS(3914), - [anon_sym___inline__] = ACTIONS(3914), - [anon_sym___forceinline] = ACTIONS(3914), - [anon_sym_thread_local] = ACTIONS(3914), - [anon_sym___thread] = ACTIONS(3914), - [anon_sym_const] = ACTIONS(3914), - [anon_sym_constexpr] = ACTIONS(3914), - [anon_sym_volatile] = ACTIONS(3914), - [anon_sym_restrict] = ACTIONS(3914), - [anon_sym___restrict__] = ACTIONS(3914), - [anon_sym__Atomic] = ACTIONS(3914), - [anon_sym__Noreturn] = ACTIONS(3914), - [anon_sym_noreturn] = ACTIONS(3914), - [anon_sym__Nonnull] = ACTIONS(3914), - [anon_sym_mutable] = ACTIONS(3914), - [anon_sym_constinit] = ACTIONS(3914), - [anon_sym_consteval] = ACTIONS(3914), - [anon_sym_alignas] = ACTIONS(3914), - [anon_sym__Alignas] = ACTIONS(3914), - [sym_primitive_type] = ACTIONS(3914), - [anon_sym_enum] = ACTIONS(3914), - [anon_sym_class] = ACTIONS(3914), - [anon_sym_struct] = ACTIONS(3914), - [anon_sym_union] = ACTIONS(3914), - [anon_sym_if] = ACTIONS(3914), - [anon_sym_switch] = ACTIONS(3914), - [anon_sym_case] = ACTIONS(3914), - [anon_sym_default] = ACTIONS(3914), - [anon_sym_while] = ACTIONS(3914), - [anon_sym_do] = ACTIONS(3914), - [anon_sym_for] = ACTIONS(3914), - [anon_sym_return] = ACTIONS(3914), - [anon_sym_break] = ACTIONS(3914), - [anon_sym_continue] = ACTIONS(3914), - [anon_sym_goto] = ACTIONS(3914), - [anon_sym_not] = ACTIONS(3914), - [anon_sym_compl] = ACTIONS(3914), - [anon_sym_DASH_DASH] = ACTIONS(3916), - [anon_sym_PLUS_PLUS] = ACTIONS(3916), - [anon_sym_sizeof] = ACTIONS(3914), - [anon_sym___alignof__] = ACTIONS(3914), - [anon_sym___alignof] = ACTIONS(3914), - [anon_sym__alignof] = ACTIONS(3914), - [anon_sym_alignof] = ACTIONS(3914), - [anon_sym__Alignof] = ACTIONS(3914), - [anon_sym_offsetof] = ACTIONS(3914), - [anon_sym__Generic] = ACTIONS(3914), - [anon_sym_typename] = ACTIONS(3914), - [anon_sym_asm] = ACTIONS(3914), - [anon_sym___asm__] = ACTIONS(3914), - [anon_sym___asm] = ACTIONS(3914), - [sym_number_literal] = ACTIONS(3916), - [anon_sym_L_SQUOTE] = ACTIONS(3916), - [anon_sym_u_SQUOTE] = ACTIONS(3916), - [anon_sym_U_SQUOTE] = ACTIONS(3916), - [anon_sym_u8_SQUOTE] = ACTIONS(3916), - [anon_sym_SQUOTE] = ACTIONS(3916), - [anon_sym_L_DQUOTE] = ACTIONS(3916), - [anon_sym_u_DQUOTE] = ACTIONS(3916), - [anon_sym_U_DQUOTE] = ACTIONS(3916), - [anon_sym_u8_DQUOTE] = ACTIONS(3916), - [anon_sym_DQUOTE] = ACTIONS(3916), - [sym_true] = ACTIONS(3914), - [sym_false] = ACTIONS(3914), - [anon_sym_NULL] = ACTIONS(3914), - [anon_sym_nullptr] = ACTIONS(3914), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3914), - [anon_sym_decltype] = ACTIONS(3914), - [anon_sym_explicit] = ACTIONS(3914), - [anon_sym_export] = ACTIONS(3914), - [anon_sym_module] = ACTIONS(3914), - [anon_sym_import] = ACTIONS(3914), - [anon_sym_template] = ACTIONS(3914), - [anon_sym_operator] = ACTIONS(3914), - [anon_sym_try] = ACTIONS(3914), - [anon_sym_delete] = ACTIONS(3914), - [anon_sym_throw] = ACTIONS(3914), - [anon_sym_namespace] = ACTIONS(3914), - [anon_sym_static_assert] = ACTIONS(3914), - [anon_sym_concept] = ACTIONS(3914), - [anon_sym_co_return] = ACTIONS(3914), - [anon_sym_co_yield] = ACTIONS(3914), - [anon_sym_R_DQUOTE] = ACTIONS(3916), - [anon_sym_LR_DQUOTE] = ACTIONS(3916), - [anon_sym_uR_DQUOTE] = ACTIONS(3916), - [anon_sym_UR_DQUOTE] = ACTIONS(3916), - [anon_sym_u8R_DQUOTE] = ACTIONS(3916), - [anon_sym_co_await] = ACTIONS(3914), - [anon_sym_new] = ACTIONS(3914), - [anon_sym_requires] = ACTIONS(3914), - [anon_sym_CARET_CARET] = ACTIONS(3916), - [anon_sym_LBRACK_COLON] = ACTIONS(3916), - [sym_this] = ACTIONS(3914), + [STATE(613)] = { + [ts_builtin_sym_end] = ACTIONS(3530), + [sym_identifier] = ACTIONS(3528), + [aux_sym_preproc_include_token1] = ACTIONS(3528), + [aux_sym_preproc_def_token1] = ACTIONS(3528), + [aux_sym_preproc_if_token1] = ACTIONS(3528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3528), + [sym_preproc_directive] = ACTIONS(3528), + [anon_sym_LPAREN2] = ACTIONS(3530), + [anon_sym_BANG] = ACTIONS(3530), + [anon_sym_TILDE] = ACTIONS(3530), + [anon_sym_DASH] = ACTIONS(3528), + [anon_sym_PLUS] = ACTIONS(3528), + [anon_sym_STAR] = ACTIONS(3530), + [anon_sym_AMP_AMP] = ACTIONS(3530), + [anon_sym_AMP] = ACTIONS(3528), + [anon_sym_SEMI] = ACTIONS(3530), + [anon_sym___extension__] = ACTIONS(3528), + [anon_sym_typedef] = ACTIONS(3528), + [anon_sym_virtual] = ACTIONS(3528), + [anon_sym_extern] = ACTIONS(3528), + [anon_sym___attribute__] = ACTIONS(3528), + [anon_sym___attribute] = ACTIONS(3528), + [anon_sym_using] = ACTIONS(3528), + [anon_sym_COLON_COLON] = ACTIONS(3530), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3530), + [anon_sym___declspec] = ACTIONS(3528), + [anon_sym___based] = ACTIONS(3528), + [anon_sym___cdecl] = ACTIONS(3528), + [anon_sym___clrcall] = ACTIONS(3528), + [anon_sym___stdcall] = ACTIONS(3528), + [anon_sym___fastcall] = ACTIONS(3528), + [anon_sym___thiscall] = ACTIONS(3528), + [anon_sym___vectorcall] = ACTIONS(3528), + [anon_sym_LBRACE] = ACTIONS(3530), + [anon_sym_signed] = ACTIONS(3528), + [anon_sym_unsigned] = ACTIONS(3528), + [anon_sym_long] = ACTIONS(3528), + [anon_sym_short] = ACTIONS(3528), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_static] = ACTIONS(3528), + [anon_sym_register] = ACTIONS(3528), + [anon_sym_inline] = ACTIONS(3528), + [anon_sym___inline] = ACTIONS(3528), + [anon_sym___inline__] = ACTIONS(3528), + [anon_sym___forceinline] = ACTIONS(3528), + [anon_sym_thread_local] = ACTIONS(3528), + [anon_sym___thread] = ACTIONS(3528), + [anon_sym_const] = ACTIONS(3528), + [anon_sym_constexpr] = ACTIONS(3528), + [anon_sym_volatile] = ACTIONS(3528), + [anon_sym_restrict] = ACTIONS(3528), + [anon_sym___restrict__] = ACTIONS(3528), + [anon_sym__Atomic] = ACTIONS(3528), + [anon_sym__Noreturn] = ACTIONS(3528), + [anon_sym_noreturn] = ACTIONS(3528), + [anon_sym__Nonnull] = ACTIONS(3528), + [anon_sym_mutable] = ACTIONS(3528), + [anon_sym_constinit] = ACTIONS(3528), + [anon_sym_consteval] = ACTIONS(3528), + [anon_sym_alignas] = ACTIONS(3528), + [anon_sym__Alignas] = ACTIONS(3528), + [sym_primitive_type] = ACTIONS(3528), + [anon_sym_enum] = ACTIONS(3528), + [anon_sym_class] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(3528), + [anon_sym_union] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(3528), + [anon_sym_else] = ACTIONS(3528), + [anon_sym_switch] = ACTIONS(3528), + [anon_sym_case] = ACTIONS(3528), + [anon_sym_default] = ACTIONS(3528), + [anon_sym_while] = ACTIONS(3528), + [anon_sym_do] = ACTIONS(3528), + [anon_sym_for] = ACTIONS(3528), + [anon_sym_return] = ACTIONS(3528), + [anon_sym_break] = ACTIONS(3528), + [anon_sym_continue] = ACTIONS(3528), + [anon_sym_goto] = ACTIONS(3528), + [anon_sym___try] = ACTIONS(3528), + [anon_sym___leave] = ACTIONS(3528), + [anon_sym_not] = ACTIONS(3528), + [anon_sym_compl] = ACTIONS(3528), + [anon_sym_DASH_DASH] = ACTIONS(3530), + [anon_sym_PLUS_PLUS] = ACTIONS(3530), + [anon_sym_sizeof] = ACTIONS(3528), + [anon_sym___alignof__] = ACTIONS(3528), + [anon_sym___alignof] = ACTIONS(3528), + [anon_sym__alignof] = ACTIONS(3528), + [anon_sym_alignof] = ACTIONS(3528), + [anon_sym__Alignof] = ACTIONS(3528), + [anon_sym_offsetof] = ACTIONS(3528), + [anon_sym__Generic] = ACTIONS(3528), + [anon_sym_typename] = ACTIONS(3528), + [anon_sym_asm] = ACTIONS(3528), + [anon_sym___asm__] = ACTIONS(3528), + [anon_sym___asm] = ACTIONS(3528), + [sym_number_literal] = ACTIONS(3530), + [anon_sym_L_SQUOTE] = ACTIONS(3530), + [anon_sym_u_SQUOTE] = ACTIONS(3530), + [anon_sym_U_SQUOTE] = ACTIONS(3530), + [anon_sym_u8_SQUOTE] = ACTIONS(3530), + [anon_sym_SQUOTE] = ACTIONS(3530), + [anon_sym_L_DQUOTE] = ACTIONS(3530), + [anon_sym_u_DQUOTE] = ACTIONS(3530), + [anon_sym_U_DQUOTE] = ACTIONS(3530), + [anon_sym_u8_DQUOTE] = ACTIONS(3530), + [anon_sym_DQUOTE] = ACTIONS(3530), + [sym_true] = ACTIONS(3528), + [sym_false] = ACTIONS(3528), + [anon_sym_NULL] = ACTIONS(3528), + [anon_sym_nullptr] = ACTIONS(3528), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3528), + [anon_sym_decltype] = ACTIONS(3528), + [anon_sym_explicit] = ACTIONS(3528), + [anon_sym_export] = ACTIONS(3528), + [anon_sym_module] = ACTIONS(3528), + [anon_sym_import] = ACTIONS(3528), + [anon_sym_template] = ACTIONS(3528), + [anon_sym_operator] = ACTIONS(3528), + [anon_sym_try] = ACTIONS(3528), + [anon_sym_delete] = ACTIONS(3528), + [anon_sym_throw] = ACTIONS(3528), + [anon_sym_namespace] = ACTIONS(3528), + [anon_sym_static_assert] = ACTIONS(3528), + [anon_sym_concept] = ACTIONS(3528), + [anon_sym_co_return] = ACTIONS(3528), + [anon_sym_co_yield] = ACTIONS(3528), + [anon_sym_R_DQUOTE] = ACTIONS(3530), + [anon_sym_LR_DQUOTE] = ACTIONS(3530), + [anon_sym_uR_DQUOTE] = ACTIONS(3530), + [anon_sym_UR_DQUOTE] = ACTIONS(3530), + [anon_sym_u8R_DQUOTE] = ACTIONS(3530), + [anon_sym_co_await] = ACTIONS(3528), + [anon_sym_new] = ACTIONS(3528), + [anon_sym_requires] = ACTIONS(3528), + [anon_sym_CARET_CARET] = ACTIONS(3530), + [anon_sym_LBRACK_COLON] = ACTIONS(3530), + [sym_this] = ACTIONS(3528), }, - [STATE(739)] = { - [sym_identifier] = ACTIONS(3724), - [aux_sym_preproc_include_token1] = ACTIONS(3724), - [aux_sym_preproc_def_token1] = ACTIONS(3724), - [aux_sym_preproc_if_token1] = ACTIONS(3724), - [aux_sym_preproc_if_token2] = ACTIONS(3724), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3724), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3724), - [sym_preproc_directive] = ACTIONS(3724), - [anon_sym_LPAREN2] = ACTIONS(3726), - [anon_sym_BANG] = ACTIONS(3726), - [anon_sym_TILDE] = ACTIONS(3726), - [anon_sym_DASH] = ACTIONS(3724), - [anon_sym_PLUS] = ACTIONS(3724), - [anon_sym_STAR] = ACTIONS(3726), - [anon_sym_AMP_AMP] = ACTIONS(3726), - [anon_sym_AMP] = ACTIONS(3724), - [anon_sym_SEMI] = ACTIONS(3726), - [anon_sym___extension__] = ACTIONS(3724), - [anon_sym_typedef] = ACTIONS(3724), - [anon_sym_virtual] = ACTIONS(3724), - [anon_sym_extern] = ACTIONS(3724), - [anon_sym___attribute__] = ACTIONS(3724), - [anon_sym___attribute] = ACTIONS(3724), - [anon_sym_using] = ACTIONS(3724), - [anon_sym_COLON_COLON] = ACTIONS(3726), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3726), - [anon_sym___declspec] = ACTIONS(3724), - [anon_sym___based] = ACTIONS(3724), - [anon_sym___cdecl] = ACTIONS(3724), - [anon_sym___clrcall] = ACTIONS(3724), - [anon_sym___stdcall] = ACTIONS(3724), - [anon_sym___fastcall] = ACTIONS(3724), - [anon_sym___thiscall] = ACTIONS(3724), - [anon_sym___vectorcall] = ACTIONS(3724), - [anon_sym_LBRACE] = ACTIONS(3726), - [anon_sym_signed] = ACTIONS(3724), - [anon_sym_unsigned] = ACTIONS(3724), - [anon_sym_long] = ACTIONS(3724), - [anon_sym_short] = ACTIONS(3724), - [anon_sym_LBRACK] = ACTIONS(3724), - [anon_sym_static] = ACTIONS(3724), - [anon_sym_register] = ACTIONS(3724), - [anon_sym_inline] = ACTIONS(3724), - [anon_sym___inline] = ACTIONS(3724), - [anon_sym___inline__] = ACTIONS(3724), - [anon_sym___forceinline] = ACTIONS(3724), - [anon_sym_thread_local] = ACTIONS(3724), - [anon_sym___thread] = ACTIONS(3724), - [anon_sym_const] = ACTIONS(3724), - [anon_sym_constexpr] = ACTIONS(3724), - [anon_sym_volatile] = ACTIONS(3724), - [anon_sym_restrict] = ACTIONS(3724), - [anon_sym___restrict__] = ACTIONS(3724), - [anon_sym__Atomic] = ACTIONS(3724), - [anon_sym__Noreturn] = ACTIONS(3724), - [anon_sym_noreturn] = ACTIONS(3724), - [anon_sym__Nonnull] = ACTIONS(3724), - [anon_sym_mutable] = ACTIONS(3724), - [anon_sym_constinit] = ACTIONS(3724), - [anon_sym_consteval] = ACTIONS(3724), - [anon_sym_alignas] = ACTIONS(3724), - [anon_sym__Alignas] = ACTIONS(3724), - [sym_primitive_type] = ACTIONS(3724), - [anon_sym_enum] = ACTIONS(3724), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3724), - [anon_sym_union] = ACTIONS(3724), - [anon_sym_if] = ACTIONS(3724), - [anon_sym_else] = ACTIONS(3724), - [anon_sym_switch] = ACTIONS(3724), - [anon_sym_case] = ACTIONS(3724), - [anon_sym_default] = ACTIONS(3724), - [anon_sym_while] = ACTIONS(3724), - [anon_sym_do] = ACTIONS(3724), - [anon_sym_for] = ACTIONS(3724), - [anon_sym_return] = ACTIONS(3724), - [anon_sym_break] = ACTIONS(3724), - [anon_sym_continue] = ACTIONS(3724), - [anon_sym_goto] = ACTIONS(3724), - [anon_sym___try] = ACTIONS(3724), - [anon_sym___leave] = ACTIONS(3724), - [anon_sym_not] = ACTIONS(3724), - [anon_sym_compl] = ACTIONS(3724), - [anon_sym_DASH_DASH] = ACTIONS(3726), - [anon_sym_PLUS_PLUS] = ACTIONS(3726), - [anon_sym_sizeof] = ACTIONS(3724), - [anon_sym___alignof__] = ACTIONS(3724), - [anon_sym___alignof] = ACTIONS(3724), - [anon_sym__alignof] = ACTIONS(3724), - [anon_sym_alignof] = ACTIONS(3724), - [anon_sym__Alignof] = ACTIONS(3724), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3724), - [anon_sym_typename] = ACTIONS(3724), - [anon_sym_asm] = ACTIONS(3724), - [anon_sym___asm__] = ACTIONS(3724), - [anon_sym___asm] = ACTIONS(3724), - [sym_number_literal] = ACTIONS(3726), - [anon_sym_L_SQUOTE] = ACTIONS(3726), - [anon_sym_u_SQUOTE] = ACTIONS(3726), - [anon_sym_U_SQUOTE] = ACTIONS(3726), - [anon_sym_u8_SQUOTE] = ACTIONS(3726), - [anon_sym_SQUOTE] = ACTIONS(3726), - [anon_sym_L_DQUOTE] = ACTIONS(3726), - [anon_sym_u_DQUOTE] = ACTIONS(3726), - [anon_sym_U_DQUOTE] = ACTIONS(3726), - [anon_sym_u8_DQUOTE] = ACTIONS(3726), - [anon_sym_DQUOTE] = ACTIONS(3726), - [sym_true] = ACTIONS(3724), - [sym_false] = ACTIONS(3724), - [anon_sym_NULL] = ACTIONS(3724), - [anon_sym_nullptr] = ACTIONS(3724), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3724), - [anon_sym_decltype] = ACTIONS(3724), - [anon_sym_explicit] = ACTIONS(3724), - [anon_sym_template] = ACTIONS(3724), - [anon_sym_operator] = ACTIONS(3724), - [anon_sym_try] = ACTIONS(3724), - [anon_sym_delete] = ACTIONS(3724), - [anon_sym_throw] = ACTIONS(3724), - [anon_sym_namespace] = ACTIONS(3724), - [anon_sym_static_assert] = ACTIONS(3724), - [anon_sym_concept] = ACTIONS(3724), - [anon_sym_co_return] = ACTIONS(3724), - [anon_sym_co_yield] = ACTIONS(3724), - [anon_sym_R_DQUOTE] = ACTIONS(3726), - [anon_sym_LR_DQUOTE] = ACTIONS(3726), - [anon_sym_uR_DQUOTE] = ACTIONS(3726), - [anon_sym_UR_DQUOTE] = ACTIONS(3726), - [anon_sym_u8R_DQUOTE] = ACTIONS(3726), - [anon_sym_co_await] = ACTIONS(3724), - [anon_sym_new] = ACTIONS(3724), - [anon_sym_requires] = ACTIONS(3724), - [anon_sym_CARET_CARET] = ACTIONS(3726), - [anon_sym_LBRACK_COLON] = ACTIONS(3726), - [sym_this] = ACTIONS(3724), + [STATE(614)] = { + [ts_builtin_sym_end] = ACTIONS(3590), + [sym_identifier] = ACTIONS(3588), + [aux_sym_preproc_include_token1] = ACTIONS(3588), + [aux_sym_preproc_def_token1] = ACTIONS(3588), + [aux_sym_preproc_if_token1] = ACTIONS(3588), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3588), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3588), + [sym_preproc_directive] = ACTIONS(3588), + [anon_sym_LPAREN2] = ACTIONS(3590), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3588), + [anon_sym_STAR] = ACTIONS(3590), + [anon_sym_AMP_AMP] = ACTIONS(3590), + [anon_sym_AMP] = ACTIONS(3588), + [anon_sym_SEMI] = ACTIONS(3590), + [anon_sym___extension__] = ACTIONS(3588), + [anon_sym_typedef] = ACTIONS(3588), + [anon_sym_virtual] = ACTIONS(3588), + [anon_sym_extern] = ACTIONS(3588), + [anon_sym___attribute__] = ACTIONS(3588), + [anon_sym___attribute] = ACTIONS(3588), + [anon_sym_using] = ACTIONS(3588), + [anon_sym_COLON_COLON] = ACTIONS(3590), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3590), + [anon_sym___declspec] = ACTIONS(3588), + [anon_sym___based] = ACTIONS(3588), + [anon_sym___cdecl] = ACTIONS(3588), + [anon_sym___clrcall] = ACTIONS(3588), + [anon_sym___stdcall] = ACTIONS(3588), + [anon_sym___fastcall] = ACTIONS(3588), + [anon_sym___thiscall] = ACTIONS(3588), + [anon_sym___vectorcall] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3590), + [anon_sym_signed] = ACTIONS(3588), + [anon_sym_unsigned] = ACTIONS(3588), + [anon_sym_long] = ACTIONS(3588), + [anon_sym_short] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3588), + [anon_sym_static] = ACTIONS(3588), + [anon_sym_register] = ACTIONS(3588), + [anon_sym_inline] = ACTIONS(3588), + [anon_sym___inline] = ACTIONS(3588), + [anon_sym___inline__] = ACTIONS(3588), + [anon_sym___forceinline] = ACTIONS(3588), + [anon_sym_thread_local] = ACTIONS(3588), + [anon_sym___thread] = ACTIONS(3588), + [anon_sym_const] = ACTIONS(3588), + [anon_sym_constexpr] = ACTIONS(3588), + [anon_sym_volatile] = ACTIONS(3588), + [anon_sym_restrict] = ACTIONS(3588), + [anon_sym___restrict__] = ACTIONS(3588), + [anon_sym__Atomic] = ACTIONS(3588), + [anon_sym__Noreturn] = ACTIONS(3588), + [anon_sym_noreturn] = ACTIONS(3588), + [anon_sym__Nonnull] = ACTIONS(3588), + [anon_sym_mutable] = ACTIONS(3588), + [anon_sym_constinit] = ACTIONS(3588), + [anon_sym_consteval] = ACTIONS(3588), + [anon_sym_alignas] = ACTIONS(3588), + [anon_sym__Alignas] = ACTIONS(3588), + [sym_primitive_type] = ACTIONS(3588), + [anon_sym_enum] = ACTIONS(3588), + [anon_sym_class] = ACTIONS(3588), + [anon_sym_struct] = ACTIONS(3588), + [anon_sym_union] = ACTIONS(3588), + [anon_sym_if] = ACTIONS(3588), + [anon_sym_else] = ACTIONS(3588), + [anon_sym_switch] = ACTIONS(3588), + [anon_sym_case] = ACTIONS(3588), + [anon_sym_default] = ACTIONS(3588), + [anon_sym_while] = ACTIONS(3588), + [anon_sym_do] = ACTIONS(3588), + [anon_sym_for] = ACTIONS(3588), + [anon_sym_return] = ACTIONS(3588), + [anon_sym_break] = ACTIONS(3588), + [anon_sym_continue] = ACTIONS(3588), + [anon_sym_goto] = ACTIONS(3588), + [anon_sym___try] = ACTIONS(3588), + [anon_sym___leave] = ACTIONS(3588), + [anon_sym_not] = ACTIONS(3588), + [anon_sym_compl] = ACTIONS(3588), + [anon_sym_DASH_DASH] = ACTIONS(3590), + [anon_sym_PLUS_PLUS] = ACTIONS(3590), + [anon_sym_sizeof] = ACTIONS(3588), + [anon_sym___alignof__] = ACTIONS(3588), + [anon_sym___alignof] = ACTIONS(3588), + [anon_sym__alignof] = ACTIONS(3588), + [anon_sym_alignof] = ACTIONS(3588), + [anon_sym__Alignof] = ACTIONS(3588), + [anon_sym_offsetof] = ACTIONS(3588), + [anon_sym__Generic] = ACTIONS(3588), + [anon_sym_typename] = ACTIONS(3588), + [anon_sym_asm] = ACTIONS(3588), + [anon_sym___asm__] = ACTIONS(3588), + [anon_sym___asm] = ACTIONS(3588), + [sym_number_literal] = ACTIONS(3590), + [anon_sym_L_SQUOTE] = ACTIONS(3590), + [anon_sym_u_SQUOTE] = ACTIONS(3590), + [anon_sym_U_SQUOTE] = ACTIONS(3590), + [anon_sym_u8_SQUOTE] = ACTIONS(3590), + [anon_sym_SQUOTE] = ACTIONS(3590), + [anon_sym_L_DQUOTE] = ACTIONS(3590), + [anon_sym_u_DQUOTE] = ACTIONS(3590), + [anon_sym_U_DQUOTE] = ACTIONS(3590), + [anon_sym_u8_DQUOTE] = ACTIONS(3590), + [anon_sym_DQUOTE] = ACTIONS(3590), + [sym_true] = ACTIONS(3588), + [sym_false] = ACTIONS(3588), + [anon_sym_NULL] = ACTIONS(3588), + [anon_sym_nullptr] = ACTIONS(3588), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3588), + [anon_sym_decltype] = ACTIONS(3588), + [anon_sym_explicit] = ACTIONS(3588), + [anon_sym_export] = ACTIONS(3588), + [anon_sym_module] = ACTIONS(3588), + [anon_sym_import] = ACTIONS(3588), + [anon_sym_template] = ACTIONS(3588), + [anon_sym_operator] = ACTIONS(3588), + [anon_sym_try] = ACTIONS(3588), + [anon_sym_delete] = ACTIONS(3588), + [anon_sym_throw] = ACTIONS(3588), + [anon_sym_namespace] = ACTIONS(3588), + [anon_sym_static_assert] = ACTIONS(3588), + [anon_sym_concept] = ACTIONS(3588), + [anon_sym_co_return] = ACTIONS(3588), + [anon_sym_co_yield] = ACTIONS(3588), + [anon_sym_R_DQUOTE] = ACTIONS(3590), + [anon_sym_LR_DQUOTE] = ACTIONS(3590), + [anon_sym_uR_DQUOTE] = ACTIONS(3590), + [anon_sym_UR_DQUOTE] = ACTIONS(3590), + [anon_sym_u8R_DQUOTE] = ACTIONS(3590), + [anon_sym_co_await] = ACTIONS(3588), + [anon_sym_new] = ACTIONS(3588), + [anon_sym_requires] = ACTIONS(3588), + [anon_sym_CARET_CARET] = ACTIONS(3590), + [anon_sym_LBRACK_COLON] = ACTIONS(3590), + [sym_this] = ACTIONS(3588), }, - [STATE(740)] = { - [ts_builtin_sym_end] = ACTIONS(3920), - [sym_identifier] = ACTIONS(3918), - [aux_sym_preproc_include_token1] = ACTIONS(3918), - [aux_sym_preproc_def_token1] = ACTIONS(3918), - [aux_sym_preproc_if_token1] = ACTIONS(3918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3918), - [sym_preproc_directive] = ACTIONS(3918), - [anon_sym_LPAREN2] = ACTIONS(3920), - [anon_sym_BANG] = ACTIONS(3920), - [anon_sym_TILDE] = ACTIONS(3920), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_STAR] = ACTIONS(3920), - [anon_sym_AMP_AMP] = ACTIONS(3920), - [anon_sym_AMP] = ACTIONS(3918), - [anon_sym_SEMI] = ACTIONS(3920), - [anon_sym___extension__] = ACTIONS(3918), - [anon_sym_typedef] = ACTIONS(3918), - [anon_sym_virtual] = ACTIONS(3918), - [anon_sym_extern] = ACTIONS(3918), - [anon_sym___attribute__] = ACTIONS(3918), - [anon_sym___attribute] = ACTIONS(3918), - [anon_sym_using] = ACTIONS(3918), - [anon_sym_COLON_COLON] = ACTIONS(3920), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3920), - [anon_sym___declspec] = ACTIONS(3918), - [anon_sym___based] = ACTIONS(3918), - [anon_sym___cdecl] = ACTIONS(3918), - [anon_sym___clrcall] = ACTIONS(3918), - [anon_sym___stdcall] = ACTIONS(3918), - [anon_sym___fastcall] = ACTIONS(3918), - [anon_sym___thiscall] = ACTIONS(3918), - [anon_sym___vectorcall] = ACTIONS(3918), - [anon_sym_LBRACE] = ACTIONS(3920), - [anon_sym_signed] = ACTIONS(3918), - [anon_sym_unsigned] = ACTIONS(3918), - [anon_sym_long] = ACTIONS(3918), - [anon_sym_short] = ACTIONS(3918), - [anon_sym_LBRACK] = ACTIONS(3918), - [anon_sym_static] = ACTIONS(3918), - [anon_sym_register] = ACTIONS(3918), - [anon_sym_inline] = ACTIONS(3918), - [anon_sym___inline] = ACTIONS(3918), - [anon_sym___inline__] = ACTIONS(3918), - [anon_sym___forceinline] = ACTIONS(3918), - [anon_sym_thread_local] = ACTIONS(3918), - [anon_sym___thread] = ACTIONS(3918), - [anon_sym_const] = ACTIONS(3918), - [anon_sym_constexpr] = ACTIONS(3918), - [anon_sym_volatile] = ACTIONS(3918), - [anon_sym_restrict] = ACTIONS(3918), - [anon_sym___restrict__] = ACTIONS(3918), - [anon_sym__Atomic] = ACTIONS(3918), - [anon_sym__Noreturn] = ACTIONS(3918), - [anon_sym_noreturn] = ACTIONS(3918), - [anon_sym__Nonnull] = ACTIONS(3918), - [anon_sym_mutable] = ACTIONS(3918), - [anon_sym_constinit] = ACTIONS(3918), - [anon_sym_consteval] = ACTIONS(3918), - [anon_sym_alignas] = ACTIONS(3918), - [anon_sym__Alignas] = ACTIONS(3918), - [sym_primitive_type] = ACTIONS(3918), - [anon_sym_enum] = ACTIONS(3918), - [anon_sym_class] = ACTIONS(3918), - [anon_sym_struct] = ACTIONS(3918), - [anon_sym_union] = ACTIONS(3918), - [anon_sym_if] = ACTIONS(3918), - [anon_sym_switch] = ACTIONS(3918), - [anon_sym_case] = ACTIONS(3918), - [anon_sym_default] = ACTIONS(3918), - [anon_sym_while] = ACTIONS(3918), - [anon_sym_do] = ACTIONS(3918), - [anon_sym_for] = ACTIONS(3918), - [anon_sym_return] = ACTIONS(3918), - [anon_sym_break] = ACTIONS(3918), - [anon_sym_continue] = ACTIONS(3918), - [anon_sym_goto] = ACTIONS(3918), - [anon_sym_not] = ACTIONS(3918), - [anon_sym_compl] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3920), - [anon_sym_PLUS_PLUS] = ACTIONS(3920), - [anon_sym_sizeof] = ACTIONS(3918), - [anon_sym___alignof__] = ACTIONS(3918), - [anon_sym___alignof] = ACTIONS(3918), - [anon_sym__alignof] = ACTIONS(3918), - [anon_sym_alignof] = ACTIONS(3918), - [anon_sym__Alignof] = ACTIONS(3918), - [anon_sym_offsetof] = ACTIONS(3918), - [anon_sym__Generic] = ACTIONS(3918), - [anon_sym_typename] = ACTIONS(3918), - [anon_sym_asm] = ACTIONS(3918), - [anon_sym___asm__] = ACTIONS(3918), - [anon_sym___asm] = ACTIONS(3918), - [sym_number_literal] = ACTIONS(3920), - [anon_sym_L_SQUOTE] = ACTIONS(3920), - [anon_sym_u_SQUOTE] = ACTIONS(3920), - [anon_sym_U_SQUOTE] = ACTIONS(3920), - [anon_sym_u8_SQUOTE] = ACTIONS(3920), - [anon_sym_SQUOTE] = ACTIONS(3920), - [anon_sym_L_DQUOTE] = ACTIONS(3920), - [anon_sym_u_DQUOTE] = ACTIONS(3920), - [anon_sym_U_DQUOTE] = ACTIONS(3920), - [anon_sym_u8_DQUOTE] = ACTIONS(3920), - [anon_sym_DQUOTE] = ACTIONS(3920), - [sym_true] = ACTIONS(3918), - [sym_false] = ACTIONS(3918), - [anon_sym_NULL] = ACTIONS(3918), - [anon_sym_nullptr] = ACTIONS(3918), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3918), - [anon_sym_decltype] = ACTIONS(3918), - [anon_sym_explicit] = ACTIONS(3918), - [anon_sym_export] = ACTIONS(3918), - [anon_sym_module] = ACTIONS(3918), - [anon_sym_import] = ACTIONS(3918), - [anon_sym_template] = ACTIONS(3918), - [anon_sym_operator] = ACTIONS(3918), - [anon_sym_try] = ACTIONS(3918), - [anon_sym_delete] = ACTIONS(3918), - [anon_sym_throw] = ACTIONS(3918), - [anon_sym_namespace] = ACTIONS(3918), - [anon_sym_static_assert] = ACTIONS(3918), - [anon_sym_concept] = ACTIONS(3918), - [anon_sym_co_return] = ACTIONS(3918), - [anon_sym_co_yield] = ACTIONS(3918), - [anon_sym_R_DQUOTE] = ACTIONS(3920), - [anon_sym_LR_DQUOTE] = ACTIONS(3920), - [anon_sym_uR_DQUOTE] = ACTIONS(3920), - [anon_sym_UR_DQUOTE] = ACTIONS(3920), - [anon_sym_u8R_DQUOTE] = ACTIONS(3920), - [anon_sym_co_await] = ACTIONS(3918), - [anon_sym_new] = ACTIONS(3918), - [anon_sym_requires] = ACTIONS(3918), - [anon_sym_CARET_CARET] = ACTIONS(3920), - [anon_sym_LBRACK_COLON] = ACTIONS(3920), - [sym_this] = ACTIONS(3918), + [STATE(615)] = { + [ts_builtin_sym_end] = ACTIONS(3602), + [sym_identifier] = ACTIONS(3600), + [aux_sym_preproc_include_token1] = ACTIONS(3600), + [aux_sym_preproc_def_token1] = ACTIONS(3600), + [aux_sym_preproc_if_token1] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), + [sym_preproc_directive] = ACTIONS(3600), + [anon_sym_LPAREN2] = ACTIONS(3602), + [anon_sym_BANG] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3600), + [anon_sym_STAR] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_AMP] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym___extension__] = ACTIONS(3600), + [anon_sym_typedef] = ACTIONS(3600), + [anon_sym_virtual] = ACTIONS(3600), + [anon_sym_extern] = ACTIONS(3600), + [anon_sym___attribute__] = ACTIONS(3600), + [anon_sym___attribute] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), + [anon_sym___declspec] = ACTIONS(3600), + [anon_sym___based] = ACTIONS(3600), + [anon_sym___cdecl] = ACTIONS(3600), + [anon_sym___clrcall] = ACTIONS(3600), + [anon_sym___stdcall] = ACTIONS(3600), + [anon_sym___fastcall] = ACTIONS(3600), + [anon_sym___thiscall] = ACTIONS(3600), + [anon_sym___vectorcall] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_signed] = ACTIONS(3600), + [anon_sym_unsigned] = ACTIONS(3600), + [anon_sym_long] = ACTIONS(3600), + [anon_sym_short] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_register] = ACTIONS(3600), + [anon_sym_inline] = ACTIONS(3600), + [anon_sym___inline] = ACTIONS(3600), + [anon_sym___inline__] = ACTIONS(3600), + [anon_sym___forceinline] = ACTIONS(3600), + [anon_sym_thread_local] = ACTIONS(3600), + [anon_sym___thread] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_constexpr] = ACTIONS(3600), + [anon_sym_volatile] = ACTIONS(3600), + [anon_sym_restrict] = ACTIONS(3600), + [anon_sym___restrict__] = ACTIONS(3600), + [anon_sym__Atomic] = ACTIONS(3600), + [anon_sym__Noreturn] = ACTIONS(3600), + [anon_sym_noreturn] = ACTIONS(3600), + [anon_sym__Nonnull] = ACTIONS(3600), + [anon_sym_mutable] = ACTIONS(3600), + [anon_sym_constinit] = ACTIONS(3600), + [anon_sym_consteval] = ACTIONS(3600), + [anon_sym_alignas] = ACTIONS(3600), + [anon_sym__Alignas] = ACTIONS(3600), + [sym_primitive_type] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_struct] = ACTIONS(3600), + [anon_sym_union] = ACTIONS(3600), + [anon_sym_if] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3600), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_case] = ACTIONS(3600), + [anon_sym_default] = ACTIONS(3600), + [anon_sym_while] = ACTIONS(3600), + [anon_sym_do] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3600), + [anon_sym_return] = ACTIONS(3600), + [anon_sym_break] = ACTIONS(3600), + [anon_sym_continue] = ACTIONS(3600), + [anon_sym_goto] = ACTIONS(3600), + [anon_sym___try] = ACTIONS(3600), + [anon_sym___leave] = ACTIONS(3600), + [anon_sym_not] = ACTIONS(3600), + [anon_sym_compl] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3602), + [anon_sym_PLUS_PLUS] = ACTIONS(3602), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(3600), + [anon_sym___alignof] = ACTIONS(3600), + [anon_sym__alignof] = ACTIONS(3600), + [anon_sym_alignof] = ACTIONS(3600), + [anon_sym__Alignof] = ACTIONS(3600), + [anon_sym_offsetof] = ACTIONS(3600), + [anon_sym__Generic] = ACTIONS(3600), + [anon_sym_typename] = ACTIONS(3600), + [anon_sym_asm] = ACTIONS(3600), + [anon_sym___asm__] = ACTIONS(3600), + [anon_sym___asm] = ACTIONS(3600), + [sym_number_literal] = ACTIONS(3602), + [anon_sym_L_SQUOTE] = ACTIONS(3602), + [anon_sym_u_SQUOTE] = ACTIONS(3602), + [anon_sym_U_SQUOTE] = ACTIONS(3602), + [anon_sym_u8_SQUOTE] = ACTIONS(3602), + [anon_sym_SQUOTE] = ACTIONS(3602), + [anon_sym_L_DQUOTE] = ACTIONS(3602), + [anon_sym_u_DQUOTE] = ACTIONS(3602), + [anon_sym_U_DQUOTE] = ACTIONS(3602), + [anon_sym_u8_DQUOTE] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [sym_true] = ACTIONS(3600), + [sym_false] = ACTIONS(3600), + [anon_sym_NULL] = ACTIONS(3600), + [anon_sym_nullptr] = ACTIONS(3600), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3600), + [anon_sym_decltype] = ACTIONS(3600), + [anon_sym_explicit] = ACTIONS(3600), + [anon_sym_export] = ACTIONS(3600), + [anon_sym_module] = ACTIONS(3600), + [anon_sym_import] = ACTIONS(3600), + [anon_sym_template] = ACTIONS(3600), + [anon_sym_operator] = ACTIONS(3600), + [anon_sym_try] = ACTIONS(3600), + [anon_sym_delete] = ACTIONS(3600), + [anon_sym_throw] = ACTIONS(3600), + [anon_sym_namespace] = ACTIONS(3600), + [anon_sym_static_assert] = ACTIONS(3600), + [anon_sym_concept] = ACTIONS(3600), + [anon_sym_co_return] = ACTIONS(3600), + [anon_sym_co_yield] = ACTIONS(3600), + [anon_sym_R_DQUOTE] = ACTIONS(3602), + [anon_sym_LR_DQUOTE] = ACTIONS(3602), + [anon_sym_uR_DQUOTE] = ACTIONS(3602), + [anon_sym_UR_DQUOTE] = ACTIONS(3602), + [anon_sym_u8R_DQUOTE] = ACTIONS(3602), + [anon_sym_co_await] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3600), + [anon_sym_requires] = ACTIONS(3600), + [anon_sym_CARET_CARET] = ACTIONS(3602), + [anon_sym_LBRACK_COLON] = ACTIONS(3602), + [sym_this] = ACTIONS(3600), }, - [STATE(741)] = { - [sym_identifier] = ACTIONS(3872), - [aux_sym_preproc_include_token1] = ACTIONS(3872), - [aux_sym_preproc_def_token1] = ACTIONS(3872), - [aux_sym_preproc_if_token1] = ACTIONS(3872), - [aux_sym_preproc_if_token2] = ACTIONS(3872), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3872), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3872), - [sym_preproc_directive] = ACTIONS(3872), - [anon_sym_LPAREN2] = ACTIONS(3874), - [anon_sym_BANG] = ACTIONS(3874), - [anon_sym_TILDE] = ACTIONS(3874), - [anon_sym_DASH] = ACTIONS(3872), - [anon_sym_PLUS] = ACTIONS(3872), - [anon_sym_STAR] = ACTIONS(3874), - [anon_sym_AMP_AMP] = ACTIONS(3874), - [anon_sym_AMP] = ACTIONS(3872), - [anon_sym_SEMI] = ACTIONS(3874), - [anon_sym___extension__] = ACTIONS(3872), - [anon_sym_typedef] = ACTIONS(3872), - [anon_sym_virtual] = ACTIONS(3872), - [anon_sym_extern] = ACTIONS(3872), - [anon_sym___attribute__] = ACTIONS(3872), - [anon_sym___attribute] = ACTIONS(3872), - [anon_sym_using] = ACTIONS(3872), - [anon_sym_COLON_COLON] = ACTIONS(3874), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3874), - [anon_sym___declspec] = ACTIONS(3872), - [anon_sym___based] = ACTIONS(3872), - [anon_sym___cdecl] = ACTIONS(3872), - [anon_sym___clrcall] = ACTIONS(3872), - [anon_sym___stdcall] = ACTIONS(3872), - [anon_sym___fastcall] = ACTIONS(3872), - [anon_sym___thiscall] = ACTIONS(3872), - [anon_sym___vectorcall] = ACTIONS(3872), - [anon_sym_LBRACE] = ACTIONS(3874), - [anon_sym_signed] = ACTIONS(3872), - [anon_sym_unsigned] = ACTIONS(3872), - [anon_sym_long] = ACTIONS(3872), - [anon_sym_short] = ACTIONS(3872), - [anon_sym_LBRACK] = ACTIONS(3872), - [anon_sym_static] = ACTIONS(3872), - [anon_sym_register] = ACTIONS(3872), - [anon_sym_inline] = ACTIONS(3872), - [anon_sym___inline] = ACTIONS(3872), - [anon_sym___inline__] = ACTIONS(3872), - [anon_sym___forceinline] = ACTIONS(3872), - [anon_sym_thread_local] = ACTIONS(3872), - [anon_sym___thread] = ACTIONS(3872), - [anon_sym_const] = ACTIONS(3872), - [anon_sym_constexpr] = ACTIONS(3872), - [anon_sym_volatile] = ACTIONS(3872), - [anon_sym_restrict] = ACTIONS(3872), - [anon_sym___restrict__] = ACTIONS(3872), - [anon_sym__Atomic] = ACTIONS(3872), - [anon_sym__Noreturn] = ACTIONS(3872), - [anon_sym_noreturn] = ACTIONS(3872), - [anon_sym__Nonnull] = ACTIONS(3872), - [anon_sym_mutable] = ACTIONS(3872), - [anon_sym_constinit] = ACTIONS(3872), - [anon_sym_consteval] = ACTIONS(3872), - [anon_sym_alignas] = ACTIONS(3872), - [anon_sym__Alignas] = ACTIONS(3872), - [sym_primitive_type] = ACTIONS(3872), - [anon_sym_enum] = ACTIONS(3872), - [anon_sym_class] = ACTIONS(3872), - [anon_sym_struct] = ACTIONS(3872), - [anon_sym_union] = ACTIONS(3872), - [anon_sym_if] = ACTIONS(3872), - [anon_sym_else] = ACTIONS(3872), - [anon_sym_switch] = ACTIONS(3872), - [anon_sym_case] = ACTIONS(3872), - [anon_sym_default] = ACTIONS(3872), - [anon_sym_while] = ACTIONS(3872), - [anon_sym_do] = ACTIONS(3872), - [anon_sym_for] = ACTIONS(3872), - [anon_sym_return] = ACTIONS(3872), - [anon_sym_break] = ACTIONS(3872), - [anon_sym_continue] = ACTIONS(3872), - [anon_sym_goto] = ACTIONS(3872), - [anon_sym___try] = ACTIONS(3872), - [anon_sym___leave] = ACTIONS(3872), - [anon_sym_not] = ACTIONS(3872), - [anon_sym_compl] = ACTIONS(3872), - [anon_sym_DASH_DASH] = ACTIONS(3874), - [anon_sym_PLUS_PLUS] = ACTIONS(3874), - [anon_sym_sizeof] = ACTIONS(3872), - [anon_sym___alignof__] = ACTIONS(3872), - [anon_sym___alignof] = ACTIONS(3872), - [anon_sym__alignof] = ACTIONS(3872), - [anon_sym_alignof] = ACTIONS(3872), - [anon_sym__Alignof] = ACTIONS(3872), - [anon_sym_offsetof] = ACTIONS(3872), - [anon_sym__Generic] = ACTIONS(3872), - [anon_sym_typename] = ACTIONS(3872), - [anon_sym_asm] = ACTIONS(3872), - [anon_sym___asm__] = ACTIONS(3872), - [anon_sym___asm] = ACTIONS(3872), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3874), - [anon_sym_u_SQUOTE] = ACTIONS(3874), - [anon_sym_U_SQUOTE] = ACTIONS(3874), - [anon_sym_u8_SQUOTE] = ACTIONS(3874), - [anon_sym_SQUOTE] = ACTIONS(3874), - [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(3872), - [sym_false] = ACTIONS(3872), - [anon_sym_NULL] = ACTIONS(3872), - [anon_sym_nullptr] = ACTIONS(3872), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3872), - [anon_sym_decltype] = ACTIONS(3872), - [anon_sym_explicit] = ACTIONS(3872), - [anon_sym_template] = ACTIONS(3872), - [anon_sym_operator] = ACTIONS(3872), - [anon_sym_try] = ACTIONS(3872), - [anon_sym_delete] = ACTIONS(3872), - [anon_sym_throw] = ACTIONS(3872), - [anon_sym_namespace] = ACTIONS(3872), - [anon_sym_static_assert] = ACTIONS(3872), - [anon_sym_concept] = ACTIONS(3872), - [anon_sym_co_return] = ACTIONS(3872), - [anon_sym_co_yield] = ACTIONS(3872), - [anon_sym_R_DQUOTE] = ACTIONS(3874), - [anon_sym_LR_DQUOTE] = ACTIONS(3874), - [anon_sym_uR_DQUOTE] = ACTIONS(3874), - [anon_sym_UR_DQUOTE] = ACTIONS(3874), - [anon_sym_u8R_DQUOTE] = ACTIONS(3874), - [anon_sym_co_await] = ACTIONS(3872), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(3872), - [anon_sym_CARET_CARET] = ACTIONS(3874), - [anon_sym_LBRACK_COLON] = ACTIONS(3874), - [sym_this] = ACTIONS(3872), + [STATE(616)] = { + [sym_identifier] = ACTIONS(3650), + [aux_sym_preproc_include_token1] = ACTIONS(3650), + [aux_sym_preproc_def_token1] = ACTIONS(3650), + [aux_sym_preproc_if_token1] = ACTIONS(3650), + [aux_sym_preproc_if_token2] = ACTIONS(3650), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3650), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3650), + [sym_preproc_directive] = ACTIONS(3650), + [anon_sym_LPAREN2] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3652), + [anon_sym_TILDE] = ACTIONS(3652), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_STAR] = ACTIONS(3652), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_AMP] = ACTIONS(3650), + [anon_sym_SEMI] = ACTIONS(3652), + [anon_sym___extension__] = ACTIONS(3650), + [anon_sym_typedef] = ACTIONS(3650), + [anon_sym_virtual] = ACTIONS(3650), + [anon_sym_extern] = ACTIONS(3650), + [anon_sym___attribute__] = ACTIONS(3650), + [anon_sym___attribute] = ACTIONS(3650), + [anon_sym_using] = ACTIONS(3650), + [anon_sym_COLON_COLON] = ACTIONS(3652), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3652), + [anon_sym___declspec] = ACTIONS(3650), + [anon_sym___based] = ACTIONS(3650), + [anon_sym___cdecl] = ACTIONS(3650), + [anon_sym___clrcall] = ACTIONS(3650), + [anon_sym___stdcall] = ACTIONS(3650), + [anon_sym___fastcall] = ACTIONS(3650), + [anon_sym___thiscall] = ACTIONS(3650), + [anon_sym___vectorcall] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_signed] = ACTIONS(3650), + [anon_sym_unsigned] = ACTIONS(3650), + [anon_sym_long] = ACTIONS(3650), + [anon_sym_short] = ACTIONS(3650), + [anon_sym_LBRACK] = ACTIONS(3650), + [anon_sym_static] = ACTIONS(3650), + [anon_sym_register] = ACTIONS(3650), + [anon_sym_inline] = ACTIONS(3650), + [anon_sym___inline] = ACTIONS(3650), + [anon_sym___inline__] = ACTIONS(3650), + [anon_sym___forceinline] = ACTIONS(3650), + [anon_sym_thread_local] = ACTIONS(3650), + [anon_sym___thread] = ACTIONS(3650), + [anon_sym_const] = ACTIONS(3650), + [anon_sym_constexpr] = ACTIONS(3650), + [anon_sym_volatile] = ACTIONS(3650), + [anon_sym_restrict] = ACTIONS(3650), + [anon_sym___restrict__] = ACTIONS(3650), + [anon_sym__Atomic] = ACTIONS(3650), + [anon_sym__Noreturn] = ACTIONS(3650), + [anon_sym_noreturn] = ACTIONS(3650), + [anon_sym__Nonnull] = ACTIONS(3650), + [anon_sym_mutable] = ACTIONS(3650), + [anon_sym_constinit] = ACTIONS(3650), + [anon_sym_consteval] = ACTIONS(3650), + [anon_sym_alignas] = ACTIONS(3650), + [anon_sym__Alignas] = ACTIONS(3650), + [sym_primitive_type] = ACTIONS(3650), + [anon_sym_enum] = ACTIONS(3650), + [anon_sym_class] = ACTIONS(3650), + [anon_sym_struct] = ACTIONS(3650), + [anon_sym_union] = ACTIONS(3650), + [anon_sym_if] = ACTIONS(3650), + [anon_sym_else] = ACTIONS(3650), + [anon_sym_switch] = ACTIONS(3650), + [anon_sym_case] = ACTIONS(3650), + [anon_sym_default] = ACTIONS(3650), + [anon_sym_while] = ACTIONS(3650), + [anon_sym_do] = ACTIONS(3650), + [anon_sym_for] = ACTIONS(3650), + [anon_sym_return] = ACTIONS(3650), + [anon_sym_break] = ACTIONS(3650), + [anon_sym_continue] = ACTIONS(3650), + [anon_sym_goto] = ACTIONS(3650), + [anon_sym___try] = ACTIONS(3650), + [anon_sym___leave] = ACTIONS(3650), + [anon_sym_not] = ACTIONS(3650), + [anon_sym_compl] = ACTIONS(3650), + [anon_sym_DASH_DASH] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3652), + [anon_sym_sizeof] = ACTIONS(3650), + [anon_sym___alignof__] = ACTIONS(3650), + [anon_sym___alignof] = ACTIONS(3650), + [anon_sym__alignof] = ACTIONS(3650), + [anon_sym_alignof] = ACTIONS(3650), + [anon_sym__Alignof] = ACTIONS(3650), + [anon_sym_offsetof] = ACTIONS(3650), + [anon_sym__Generic] = ACTIONS(3650), + [anon_sym_typename] = ACTIONS(3650), + [anon_sym_asm] = ACTIONS(3650), + [anon_sym___asm__] = ACTIONS(3650), + [anon_sym___asm] = ACTIONS(3650), + [sym_number_literal] = ACTIONS(3652), + [anon_sym_L_SQUOTE] = ACTIONS(3652), + [anon_sym_u_SQUOTE] = ACTIONS(3652), + [anon_sym_U_SQUOTE] = ACTIONS(3652), + [anon_sym_u8_SQUOTE] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(3652), + [anon_sym_L_DQUOTE] = ACTIONS(3652), + [anon_sym_u_DQUOTE] = ACTIONS(3652), + [anon_sym_U_DQUOTE] = ACTIONS(3652), + [anon_sym_u8_DQUOTE] = ACTIONS(3652), + [anon_sym_DQUOTE] = ACTIONS(3652), + [sym_true] = ACTIONS(3650), + [sym_false] = ACTIONS(3650), + [anon_sym_NULL] = ACTIONS(3650), + [anon_sym_nullptr] = ACTIONS(3650), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3650), + [anon_sym_decltype] = ACTIONS(3650), + [anon_sym_explicit] = ACTIONS(3650), + [anon_sym_export] = ACTIONS(3650), + [anon_sym_module] = ACTIONS(3650), + [anon_sym_import] = ACTIONS(3650), + [anon_sym_template] = ACTIONS(3650), + [anon_sym_operator] = ACTIONS(3650), + [anon_sym_try] = ACTIONS(3650), + [anon_sym_delete] = ACTIONS(3650), + [anon_sym_throw] = ACTIONS(3650), + [anon_sym_namespace] = ACTIONS(3650), + [anon_sym_static_assert] = ACTIONS(3650), + [anon_sym_concept] = ACTIONS(3650), + [anon_sym_co_return] = ACTIONS(3650), + [anon_sym_co_yield] = ACTIONS(3650), + [anon_sym_R_DQUOTE] = ACTIONS(3652), + [anon_sym_LR_DQUOTE] = ACTIONS(3652), + [anon_sym_uR_DQUOTE] = ACTIONS(3652), + [anon_sym_UR_DQUOTE] = ACTIONS(3652), + [anon_sym_u8R_DQUOTE] = ACTIONS(3652), + [anon_sym_co_await] = ACTIONS(3650), + [anon_sym_new] = ACTIONS(3650), + [anon_sym_requires] = ACTIONS(3650), + [anon_sym_CARET_CARET] = ACTIONS(3652), + [anon_sym_LBRACK_COLON] = ACTIONS(3652), + [sym_this] = ACTIONS(3650), }, - [STATE(742)] = { - [sym_identifier] = ACTIONS(3880), - [aux_sym_preproc_include_token1] = ACTIONS(3880), - [aux_sym_preproc_def_token1] = ACTIONS(3880), - [aux_sym_preproc_if_token1] = ACTIONS(3880), - [aux_sym_preproc_if_token2] = ACTIONS(3880), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3880), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3880), - [sym_preproc_directive] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3882), - [anon_sym_TILDE] = ACTIONS(3882), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_STAR] = ACTIONS(3882), - [anon_sym_AMP_AMP] = ACTIONS(3882), - [anon_sym_AMP] = ACTIONS(3880), - [anon_sym_SEMI] = ACTIONS(3882), - [anon_sym___extension__] = ACTIONS(3880), - [anon_sym_typedef] = ACTIONS(3880), - [anon_sym_virtual] = ACTIONS(3880), - [anon_sym_extern] = ACTIONS(3880), - [anon_sym___attribute__] = ACTIONS(3880), - [anon_sym___attribute] = ACTIONS(3880), - [anon_sym_using] = ACTIONS(3880), - [anon_sym_COLON_COLON] = ACTIONS(3882), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3882), - [anon_sym___declspec] = ACTIONS(3880), - [anon_sym___based] = ACTIONS(3880), - [anon_sym___cdecl] = ACTIONS(3880), - [anon_sym___clrcall] = ACTIONS(3880), - [anon_sym___stdcall] = ACTIONS(3880), - [anon_sym___fastcall] = ACTIONS(3880), - [anon_sym___thiscall] = ACTIONS(3880), - [anon_sym___vectorcall] = ACTIONS(3880), - [anon_sym_LBRACE] = ACTIONS(3882), - [anon_sym_signed] = ACTIONS(3880), - [anon_sym_unsigned] = ACTIONS(3880), - [anon_sym_long] = ACTIONS(3880), - [anon_sym_short] = ACTIONS(3880), - [anon_sym_LBRACK] = ACTIONS(3880), - [anon_sym_static] = ACTIONS(3880), - [anon_sym_register] = ACTIONS(3880), - [anon_sym_inline] = ACTIONS(3880), - [anon_sym___inline] = ACTIONS(3880), - [anon_sym___inline__] = ACTIONS(3880), - [anon_sym___forceinline] = ACTIONS(3880), - [anon_sym_thread_local] = ACTIONS(3880), - [anon_sym___thread] = ACTIONS(3880), - [anon_sym_const] = ACTIONS(3880), - [anon_sym_constexpr] = ACTIONS(3880), - [anon_sym_volatile] = ACTIONS(3880), - [anon_sym_restrict] = ACTIONS(3880), - [anon_sym___restrict__] = ACTIONS(3880), - [anon_sym__Atomic] = ACTIONS(3880), - [anon_sym__Noreturn] = ACTIONS(3880), - [anon_sym_noreturn] = ACTIONS(3880), - [anon_sym__Nonnull] = ACTIONS(3880), - [anon_sym_mutable] = ACTIONS(3880), - [anon_sym_constinit] = ACTIONS(3880), - [anon_sym_consteval] = ACTIONS(3880), - [anon_sym_alignas] = ACTIONS(3880), - [anon_sym__Alignas] = ACTIONS(3880), - [sym_primitive_type] = ACTIONS(3880), - [anon_sym_enum] = ACTIONS(3880), - [anon_sym_class] = ACTIONS(3880), - [anon_sym_struct] = ACTIONS(3880), - [anon_sym_union] = ACTIONS(3880), - [anon_sym_if] = ACTIONS(3880), - [anon_sym_else] = ACTIONS(3880), - [anon_sym_switch] = ACTIONS(3880), - [anon_sym_case] = ACTIONS(3880), - [anon_sym_default] = ACTIONS(3880), - [anon_sym_while] = ACTIONS(3880), - [anon_sym_do] = ACTIONS(3880), - [anon_sym_for] = ACTIONS(3880), - [anon_sym_return] = ACTIONS(3880), - [anon_sym_break] = ACTIONS(3880), - [anon_sym_continue] = ACTIONS(3880), - [anon_sym_goto] = ACTIONS(3880), - [anon_sym___try] = ACTIONS(3880), - [anon_sym___leave] = ACTIONS(3880), - [anon_sym_not] = ACTIONS(3880), - [anon_sym_compl] = ACTIONS(3880), - [anon_sym_DASH_DASH] = ACTIONS(3882), - [anon_sym_PLUS_PLUS] = ACTIONS(3882), - [anon_sym_sizeof] = ACTIONS(3880), - [anon_sym___alignof__] = ACTIONS(3880), - [anon_sym___alignof] = ACTIONS(3880), - [anon_sym__alignof] = ACTIONS(3880), - [anon_sym_alignof] = ACTIONS(3880), - [anon_sym__Alignof] = ACTIONS(3880), - [anon_sym_offsetof] = ACTIONS(3880), - [anon_sym__Generic] = ACTIONS(3880), - [anon_sym_typename] = ACTIONS(3880), - [anon_sym_asm] = ACTIONS(3880), - [anon_sym___asm__] = ACTIONS(3880), - [anon_sym___asm] = ACTIONS(3880), - [sym_number_literal] = ACTIONS(3882), - [anon_sym_L_SQUOTE] = ACTIONS(3882), - [anon_sym_u_SQUOTE] = ACTIONS(3882), - [anon_sym_U_SQUOTE] = ACTIONS(3882), - [anon_sym_u8_SQUOTE] = ACTIONS(3882), - [anon_sym_SQUOTE] = ACTIONS(3882), - [anon_sym_L_DQUOTE] = ACTIONS(3882), - [anon_sym_u_DQUOTE] = ACTIONS(3882), - [anon_sym_U_DQUOTE] = ACTIONS(3882), - [anon_sym_u8_DQUOTE] = ACTIONS(3882), - [anon_sym_DQUOTE] = ACTIONS(3882), - [sym_true] = ACTIONS(3880), - [sym_false] = ACTIONS(3880), - [anon_sym_NULL] = ACTIONS(3880), - [anon_sym_nullptr] = ACTIONS(3880), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3880), - [anon_sym_decltype] = ACTIONS(3880), - [anon_sym_explicit] = ACTIONS(3880), - [anon_sym_template] = ACTIONS(3880), - [anon_sym_operator] = ACTIONS(3880), - [anon_sym_try] = ACTIONS(3880), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_throw] = ACTIONS(3880), - [anon_sym_namespace] = ACTIONS(3880), - [anon_sym_static_assert] = ACTIONS(3880), - [anon_sym_concept] = ACTIONS(3880), - [anon_sym_co_return] = ACTIONS(3880), - [anon_sym_co_yield] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3880), - [anon_sym_new] = ACTIONS(3880), - [anon_sym_requires] = ACTIONS(3880), - [anon_sym_CARET_CARET] = ACTIONS(3882), - [anon_sym_LBRACK_COLON] = ACTIONS(3882), - [sym_this] = ACTIONS(3880), + [STATE(617)] = { + [ts_builtin_sym_end] = ACTIONS(3602), + [sym_identifier] = ACTIONS(3600), + [aux_sym_preproc_include_token1] = ACTIONS(3600), + [aux_sym_preproc_def_token1] = ACTIONS(3600), + [aux_sym_preproc_if_token1] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), + [sym_preproc_directive] = ACTIONS(3600), + [anon_sym_LPAREN2] = ACTIONS(3602), + [anon_sym_BANG] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3600), + [anon_sym_STAR] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_AMP] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym___extension__] = ACTIONS(3600), + [anon_sym_typedef] = ACTIONS(3600), + [anon_sym_virtual] = ACTIONS(3600), + [anon_sym_extern] = ACTIONS(3600), + [anon_sym___attribute__] = ACTIONS(3600), + [anon_sym___attribute] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), + [anon_sym___declspec] = ACTIONS(3600), + [anon_sym___based] = ACTIONS(3600), + [anon_sym___cdecl] = ACTIONS(3600), + [anon_sym___clrcall] = ACTIONS(3600), + [anon_sym___stdcall] = ACTIONS(3600), + [anon_sym___fastcall] = ACTIONS(3600), + [anon_sym___thiscall] = ACTIONS(3600), + [anon_sym___vectorcall] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_signed] = ACTIONS(3600), + [anon_sym_unsigned] = ACTIONS(3600), + [anon_sym_long] = ACTIONS(3600), + [anon_sym_short] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_register] = ACTIONS(3600), + [anon_sym_inline] = ACTIONS(3600), + [anon_sym___inline] = ACTIONS(3600), + [anon_sym___inline__] = ACTIONS(3600), + [anon_sym___forceinline] = ACTIONS(3600), + [anon_sym_thread_local] = ACTIONS(3600), + [anon_sym___thread] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_constexpr] = ACTIONS(3600), + [anon_sym_volatile] = ACTIONS(3600), + [anon_sym_restrict] = ACTIONS(3600), + [anon_sym___restrict__] = ACTIONS(3600), + [anon_sym__Atomic] = ACTIONS(3600), + [anon_sym__Noreturn] = ACTIONS(3600), + [anon_sym_noreturn] = ACTIONS(3600), + [anon_sym__Nonnull] = ACTIONS(3600), + [anon_sym_mutable] = ACTIONS(3600), + [anon_sym_constinit] = ACTIONS(3600), + [anon_sym_consteval] = ACTIONS(3600), + [anon_sym_alignas] = ACTIONS(3600), + [anon_sym__Alignas] = ACTIONS(3600), + [sym_primitive_type] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_struct] = ACTIONS(3600), + [anon_sym_union] = ACTIONS(3600), + [anon_sym_if] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3600), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_case] = ACTIONS(3600), + [anon_sym_default] = ACTIONS(3600), + [anon_sym_while] = ACTIONS(3600), + [anon_sym_do] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3600), + [anon_sym_return] = ACTIONS(3600), + [anon_sym_break] = ACTIONS(3600), + [anon_sym_continue] = ACTIONS(3600), + [anon_sym_goto] = ACTIONS(3600), + [anon_sym___try] = ACTIONS(3600), + [anon_sym___leave] = ACTIONS(3600), + [anon_sym_not] = ACTIONS(3600), + [anon_sym_compl] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3602), + [anon_sym_PLUS_PLUS] = ACTIONS(3602), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(3600), + [anon_sym___alignof] = ACTIONS(3600), + [anon_sym__alignof] = ACTIONS(3600), + [anon_sym_alignof] = ACTIONS(3600), + [anon_sym__Alignof] = ACTIONS(3600), + [anon_sym_offsetof] = ACTIONS(3600), + [anon_sym__Generic] = ACTIONS(3600), + [anon_sym_typename] = ACTIONS(3600), + [anon_sym_asm] = ACTIONS(3600), + [anon_sym___asm__] = ACTIONS(3600), + [anon_sym___asm] = ACTIONS(3600), + [sym_number_literal] = ACTIONS(3602), + [anon_sym_L_SQUOTE] = ACTIONS(3602), + [anon_sym_u_SQUOTE] = ACTIONS(3602), + [anon_sym_U_SQUOTE] = ACTIONS(3602), + [anon_sym_u8_SQUOTE] = ACTIONS(3602), + [anon_sym_SQUOTE] = ACTIONS(3602), + [anon_sym_L_DQUOTE] = ACTIONS(3602), + [anon_sym_u_DQUOTE] = ACTIONS(3602), + [anon_sym_U_DQUOTE] = ACTIONS(3602), + [anon_sym_u8_DQUOTE] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [sym_true] = ACTIONS(3600), + [sym_false] = ACTIONS(3600), + [anon_sym_NULL] = ACTIONS(3600), + [anon_sym_nullptr] = ACTIONS(3600), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3600), + [anon_sym_decltype] = ACTIONS(3600), + [anon_sym_explicit] = ACTIONS(3600), + [anon_sym_export] = ACTIONS(3600), + [anon_sym_module] = ACTIONS(3600), + [anon_sym_import] = ACTIONS(3600), + [anon_sym_template] = ACTIONS(3600), + [anon_sym_operator] = ACTIONS(3600), + [anon_sym_try] = ACTIONS(3600), + [anon_sym_delete] = ACTIONS(3600), + [anon_sym_throw] = ACTIONS(3600), + [anon_sym_namespace] = ACTIONS(3600), + [anon_sym_static_assert] = ACTIONS(3600), + [anon_sym_concept] = ACTIONS(3600), + [anon_sym_co_return] = ACTIONS(3600), + [anon_sym_co_yield] = ACTIONS(3600), + [anon_sym_R_DQUOTE] = ACTIONS(3602), + [anon_sym_LR_DQUOTE] = ACTIONS(3602), + [anon_sym_uR_DQUOTE] = ACTIONS(3602), + [anon_sym_UR_DQUOTE] = ACTIONS(3602), + [anon_sym_u8R_DQUOTE] = ACTIONS(3602), + [anon_sym_co_await] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3600), + [anon_sym_requires] = ACTIONS(3600), + [anon_sym_CARET_CARET] = ACTIONS(3602), + [anon_sym_LBRACK_COLON] = ACTIONS(3602), + [sym_this] = ACTIONS(3600), }, - [STATE(743)] = { - [ts_builtin_sym_end] = ACTIONS(4158), - [sym_identifier] = ACTIONS(4156), - [aux_sym_preproc_include_token1] = ACTIONS(4156), - [aux_sym_preproc_def_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), - [sym_preproc_directive] = ACTIONS(4156), - [anon_sym_LPAREN2] = ACTIONS(4158), - [anon_sym_BANG] = ACTIONS(4158), - [anon_sym_TILDE] = ACTIONS(4158), - [anon_sym_DASH] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4156), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_SEMI] = ACTIONS(4158), - [anon_sym___extension__] = ACTIONS(4156), - [anon_sym_typedef] = ACTIONS(4156), - [anon_sym_virtual] = ACTIONS(4156), - [anon_sym_extern] = ACTIONS(4156), - [anon_sym___attribute__] = ACTIONS(4156), - [anon_sym___attribute] = ACTIONS(4156), - [anon_sym_using] = ACTIONS(4156), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), - [anon_sym___declspec] = ACTIONS(4156), - [anon_sym___based] = ACTIONS(4156), - [anon_sym___cdecl] = ACTIONS(4156), - [anon_sym___clrcall] = ACTIONS(4156), - [anon_sym___stdcall] = ACTIONS(4156), - [anon_sym___fastcall] = ACTIONS(4156), - [anon_sym___thiscall] = ACTIONS(4156), - [anon_sym___vectorcall] = ACTIONS(4156), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_signed] = ACTIONS(4156), - [anon_sym_unsigned] = ACTIONS(4156), - [anon_sym_long] = ACTIONS(4156), - [anon_sym_short] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4156), - [anon_sym_register] = ACTIONS(4156), - [anon_sym_inline] = ACTIONS(4156), - [anon_sym___inline] = ACTIONS(4156), - [anon_sym___inline__] = ACTIONS(4156), - [anon_sym___forceinline] = ACTIONS(4156), - [anon_sym_thread_local] = ACTIONS(4156), - [anon_sym___thread] = ACTIONS(4156), - [anon_sym_const] = ACTIONS(4156), - [anon_sym_constexpr] = ACTIONS(4156), - [anon_sym_volatile] = ACTIONS(4156), - [anon_sym_restrict] = ACTIONS(4156), - [anon_sym___restrict__] = ACTIONS(4156), - [anon_sym__Atomic] = ACTIONS(4156), - [anon_sym__Noreturn] = ACTIONS(4156), - [anon_sym_noreturn] = ACTIONS(4156), - [anon_sym__Nonnull] = ACTIONS(4156), - [anon_sym_mutable] = ACTIONS(4156), - [anon_sym_constinit] = ACTIONS(4156), - [anon_sym_consteval] = ACTIONS(4156), - [anon_sym_alignas] = ACTIONS(4156), - [anon_sym__Alignas] = ACTIONS(4156), - [sym_primitive_type] = ACTIONS(4156), - [anon_sym_enum] = ACTIONS(4156), - [anon_sym_class] = ACTIONS(4156), - [anon_sym_struct] = ACTIONS(4156), - [anon_sym_union] = ACTIONS(4156), - [anon_sym_if] = ACTIONS(4156), - [anon_sym_switch] = ACTIONS(4156), - [anon_sym_case] = ACTIONS(4156), - [anon_sym_default] = ACTIONS(4156), - [anon_sym_while] = ACTIONS(4156), - [anon_sym_do] = ACTIONS(4156), - [anon_sym_for] = ACTIONS(4156), - [anon_sym_return] = ACTIONS(4156), - [anon_sym_break] = ACTIONS(4156), - [anon_sym_continue] = ACTIONS(4156), - [anon_sym_goto] = ACTIONS(4156), - [anon_sym_not] = ACTIONS(4156), - [anon_sym_compl] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4158), - [anon_sym_PLUS_PLUS] = ACTIONS(4158), - [anon_sym_sizeof] = ACTIONS(4156), - [anon_sym___alignof__] = ACTIONS(4156), - [anon_sym___alignof] = ACTIONS(4156), - [anon_sym__alignof] = ACTIONS(4156), - [anon_sym_alignof] = ACTIONS(4156), - [anon_sym__Alignof] = ACTIONS(4156), - [anon_sym_offsetof] = ACTIONS(4156), - [anon_sym__Generic] = ACTIONS(4156), - [anon_sym_typename] = ACTIONS(4156), - [anon_sym_asm] = ACTIONS(4156), - [anon_sym___asm__] = ACTIONS(4156), - [anon_sym___asm] = ACTIONS(4156), - [sym_number_literal] = ACTIONS(4158), - [anon_sym_L_SQUOTE] = ACTIONS(4158), - [anon_sym_u_SQUOTE] = ACTIONS(4158), - [anon_sym_U_SQUOTE] = ACTIONS(4158), - [anon_sym_u8_SQUOTE] = ACTIONS(4158), - [anon_sym_SQUOTE] = ACTIONS(4158), - [anon_sym_L_DQUOTE] = ACTIONS(4158), - [anon_sym_u_DQUOTE] = ACTIONS(4158), - [anon_sym_U_DQUOTE] = ACTIONS(4158), - [anon_sym_u8_DQUOTE] = ACTIONS(4158), - [anon_sym_DQUOTE] = ACTIONS(4158), - [sym_true] = ACTIONS(4156), - [sym_false] = ACTIONS(4156), - [anon_sym_NULL] = ACTIONS(4156), - [anon_sym_nullptr] = ACTIONS(4156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4156), - [anon_sym_decltype] = ACTIONS(4156), - [anon_sym_explicit] = ACTIONS(4156), - [anon_sym_export] = ACTIONS(4156), - [anon_sym_module] = ACTIONS(4156), - [anon_sym_import] = ACTIONS(4156), - [anon_sym_template] = ACTIONS(4156), - [anon_sym_operator] = ACTIONS(4156), - [anon_sym_try] = ACTIONS(4156), - [anon_sym_delete] = ACTIONS(4156), - [anon_sym_throw] = ACTIONS(4156), - [anon_sym_namespace] = ACTIONS(4156), - [anon_sym_static_assert] = ACTIONS(4156), - [anon_sym_concept] = ACTIONS(4156), - [anon_sym_co_return] = ACTIONS(4156), - [anon_sym_co_yield] = ACTIONS(4156), - [anon_sym_R_DQUOTE] = ACTIONS(4158), - [anon_sym_LR_DQUOTE] = ACTIONS(4158), - [anon_sym_uR_DQUOTE] = ACTIONS(4158), - [anon_sym_UR_DQUOTE] = ACTIONS(4158), - [anon_sym_u8R_DQUOTE] = ACTIONS(4158), - [anon_sym_co_await] = ACTIONS(4156), - [anon_sym_new] = ACTIONS(4156), - [anon_sym_requires] = ACTIONS(4156), - [anon_sym_CARET_CARET] = ACTIONS(4158), - [anon_sym_LBRACK_COLON] = ACTIONS(4158), - [sym_this] = ACTIONS(4156), + [STATE(618)] = { + [ts_builtin_sym_end] = ACTIONS(3542), + [sym_identifier] = ACTIONS(3540), + [aux_sym_preproc_include_token1] = ACTIONS(3540), + [aux_sym_preproc_def_token1] = ACTIONS(3540), + [aux_sym_preproc_if_token1] = ACTIONS(3540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3540), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3540), + [sym_preproc_directive] = ACTIONS(3540), + [anon_sym_LPAREN2] = ACTIONS(3542), + [anon_sym_BANG] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_STAR] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3540), + [anon_sym_SEMI] = ACTIONS(3542), + [anon_sym___extension__] = ACTIONS(3540), + [anon_sym_typedef] = ACTIONS(3540), + [anon_sym_virtual] = ACTIONS(3540), + [anon_sym_extern] = ACTIONS(3540), + [anon_sym___attribute__] = ACTIONS(3540), + [anon_sym___attribute] = ACTIONS(3540), + [anon_sym_using] = ACTIONS(3540), + [anon_sym_COLON_COLON] = ACTIONS(3542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3542), + [anon_sym___declspec] = ACTIONS(3540), + [anon_sym___based] = ACTIONS(3540), + [anon_sym___cdecl] = ACTIONS(3540), + [anon_sym___clrcall] = ACTIONS(3540), + [anon_sym___stdcall] = ACTIONS(3540), + [anon_sym___fastcall] = ACTIONS(3540), + [anon_sym___thiscall] = ACTIONS(3540), + [anon_sym___vectorcall] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_signed] = ACTIONS(3540), + [anon_sym_unsigned] = ACTIONS(3540), + [anon_sym_long] = ACTIONS(3540), + [anon_sym_short] = ACTIONS(3540), + [anon_sym_LBRACK] = ACTIONS(3540), + [anon_sym_static] = ACTIONS(3540), + [anon_sym_register] = ACTIONS(3540), + [anon_sym_inline] = ACTIONS(3540), + [anon_sym___inline] = ACTIONS(3540), + [anon_sym___inline__] = ACTIONS(3540), + [anon_sym___forceinline] = ACTIONS(3540), + [anon_sym_thread_local] = ACTIONS(3540), + [anon_sym___thread] = ACTIONS(3540), + [anon_sym_const] = ACTIONS(3540), + [anon_sym_constexpr] = ACTIONS(3540), + [anon_sym_volatile] = ACTIONS(3540), + [anon_sym_restrict] = ACTIONS(3540), + [anon_sym___restrict__] = ACTIONS(3540), + [anon_sym__Atomic] = ACTIONS(3540), + [anon_sym__Noreturn] = ACTIONS(3540), + [anon_sym_noreturn] = ACTIONS(3540), + [anon_sym__Nonnull] = ACTIONS(3540), + [anon_sym_mutable] = ACTIONS(3540), + [anon_sym_constinit] = ACTIONS(3540), + [anon_sym_consteval] = ACTIONS(3540), + [anon_sym_alignas] = ACTIONS(3540), + [anon_sym__Alignas] = ACTIONS(3540), + [sym_primitive_type] = ACTIONS(3540), + [anon_sym_enum] = ACTIONS(3540), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3540), + [anon_sym_union] = ACTIONS(3540), + [anon_sym_if] = ACTIONS(3540), + [anon_sym_else] = ACTIONS(3540), + [anon_sym_switch] = ACTIONS(3540), + [anon_sym_case] = ACTIONS(3540), + [anon_sym_default] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3540), + [anon_sym_do] = ACTIONS(3540), + [anon_sym_for] = ACTIONS(3540), + [anon_sym_return] = ACTIONS(3540), + [anon_sym_break] = ACTIONS(3540), + [anon_sym_continue] = ACTIONS(3540), + [anon_sym_goto] = ACTIONS(3540), + [anon_sym___try] = ACTIONS(3540), + [anon_sym___leave] = ACTIONS(3540), + [anon_sym_not] = ACTIONS(3540), + [anon_sym_compl] = ACTIONS(3540), + [anon_sym_DASH_DASH] = ACTIONS(3542), + [anon_sym_PLUS_PLUS] = ACTIONS(3542), + [anon_sym_sizeof] = ACTIONS(3540), + [anon_sym___alignof__] = ACTIONS(3540), + [anon_sym___alignof] = ACTIONS(3540), + [anon_sym__alignof] = ACTIONS(3540), + [anon_sym_alignof] = ACTIONS(3540), + [anon_sym__Alignof] = ACTIONS(3540), + [anon_sym_offsetof] = ACTIONS(3540), + [anon_sym__Generic] = ACTIONS(3540), + [anon_sym_typename] = ACTIONS(3540), + [anon_sym_asm] = ACTIONS(3540), + [anon_sym___asm__] = ACTIONS(3540), + [anon_sym___asm] = ACTIONS(3540), + [sym_number_literal] = ACTIONS(3542), + [anon_sym_L_SQUOTE] = ACTIONS(3542), + [anon_sym_u_SQUOTE] = ACTIONS(3542), + [anon_sym_U_SQUOTE] = ACTIONS(3542), + [anon_sym_u8_SQUOTE] = ACTIONS(3542), + [anon_sym_SQUOTE] = ACTIONS(3542), + [anon_sym_L_DQUOTE] = ACTIONS(3542), + [anon_sym_u_DQUOTE] = ACTIONS(3542), + [anon_sym_U_DQUOTE] = ACTIONS(3542), + [anon_sym_u8_DQUOTE] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [sym_true] = ACTIONS(3540), + [sym_false] = ACTIONS(3540), + [anon_sym_NULL] = ACTIONS(3540), + [anon_sym_nullptr] = ACTIONS(3540), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3540), + [anon_sym_decltype] = ACTIONS(3540), + [anon_sym_explicit] = ACTIONS(3540), + [anon_sym_export] = ACTIONS(3540), + [anon_sym_module] = ACTIONS(3540), + [anon_sym_import] = ACTIONS(3540), + [anon_sym_template] = ACTIONS(3540), + [anon_sym_operator] = ACTIONS(3540), + [anon_sym_try] = ACTIONS(3540), + [anon_sym_delete] = ACTIONS(3540), + [anon_sym_throw] = ACTIONS(3540), + [anon_sym_namespace] = ACTIONS(3540), + [anon_sym_static_assert] = ACTIONS(3540), + [anon_sym_concept] = ACTIONS(3540), + [anon_sym_co_return] = ACTIONS(3540), + [anon_sym_co_yield] = ACTIONS(3540), + [anon_sym_R_DQUOTE] = ACTIONS(3542), + [anon_sym_LR_DQUOTE] = ACTIONS(3542), + [anon_sym_uR_DQUOTE] = ACTIONS(3542), + [anon_sym_UR_DQUOTE] = ACTIONS(3542), + [anon_sym_u8R_DQUOTE] = ACTIONS(3542), + [anon_sym_co_await] = ACTIONS(3540), + [anon_sym_new] = ACTIONS(3540), + [anon_sym_requires] = ACTIONS(3540), + [anon_sym_CARET_CARET] = ACTIONS(3542), + [anon_sym_LBRACK_COLON] = ACTIONS(3542), + [sym_this] = ACTIONS(3540), }, - [STATE(744)] = { - [sym_identifier] = ACTIONS(3868), - [aux_sym_preproc_include_token1] = ACTIONS(3868), - [aux_sym_preproc_def_token1] = ACTIONS(3868), - [aux_sym_preproc_if_token1] = ACTIONS(3868), - [aux_sym_preproc_if_token2] = ACTIONS(3868), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3868), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3868), - [sym_preproc_directive] = ACTIONS(3868), - [anon_sym_LPAREN2] = ACTIONS(3870), - [anon_sym_BANG] = ACTIONS(3870), - [anon_sym_TILDE] = ACTIONS(3870), - [anon_sym_DASH] = ACTIONS(3868), - [anon_sym_PLUS] = ACTIONS(3868), - [anon_sym_STAR] = ACTIONS(3870), - [anon_sym_AMP_AMP] = ACTIONS(3870), - [anon_sym_AMP] = ACTIONS(3868), - [anon_sym_SEMI] = ACTIONS(3870), - [anon_sym___extension__] = ACTIONS(3868), - [anon_sym_typedef] = ACTIONS(3868), - [anon_sym_virtual] = ACTIONS(3868), - [anon_sym_extern] = ACTIONS(3868), - [anon_sym___attribute__] = ACTIONS(3868), - [anon_sym___attribute] = ACTIONS(3868), - [anon_sym_using] = ACTIONS(3868), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3870), - [anon_sym___declspec] = ACTIONS(3868), - [anon_sym___based] = ACTIONS(3868), - [anon_sym___cdecl] = ACTIONS(3868), - [anon_sym___clrcall] = ACTIONS(3868), - [anon_sym___stdcall] = ACTIONS(3868), - [anon_sym___fastcall] = ACTIONS(3868), - [anon_sym___thiscall] = ACTIONS(3868), - [anon_sym___vectorcall] = ACTIONS(3868), - [anon_sym_LBRACE] = ACTIONS(3870), - [anon_sym_signed] = ACTIONS(3868), - [anon_sym_unsigned] = ACTIONS(3868), - [anon_sym_long] = ACTIONS(3868), - [anon_sym_short] = ACTIONS(3868), - [anon_sym_LBRACK] = ACTIONS(3868), - [anon_sym_static] = ACTIONS(3868), - [anon_sym_register] = ACTIONS(3868), - [anon_sym_inline] = ACTIONS(3868), - [anon_sym___inline] = ACTIONS(3868), - [anon_sym___inline__] = ACTIONS(3868), - [anon_sym___forceinline] = ACTIONS(3868), - [anon_sym_thread_local] = ACTIONS(3868), - [anon_sym___thread] = ACTIONS(3868), - [anon_sym_const] = ACTIONS(3868), - [anon_sym_constexpr] = ACTIONS(3868), - [anon_sym_volatile] = ACTIONS(3868), - [anon_sym_restrict] = ACTIONS(3868), - [anon_sym___restrict__] = ACTIONS(3868), - [anon_sym__Atomic] = ACTIONS(3868), - [anon_sym__Noreturn] = ACTIONS(3868), - [anon_sym_noreturn] = ACTIONS(3868), - [anon_sym__Nonnull] = ACTIONS(3868), - [anon_sym_mutable] = ACTIONS(3868), - [anon_sym_constinit] = ACTIONS(3868), - [anon_sym_consteval] = ACTIONS(3868), - [anon_sym_alignas] = ACTIONS(3868), - [anon_sym__Alignas] = ACTIONS(3868), - [sym_primitive_type] = ACTIONS(3868), - [anon_sym_enum] = ACTIONS(3868), - [anon_sym_class] = ACTIONS(3868), - [anon_sym_struct] = ACTIONS(3868), - [anon_sym_union] = ACTIONS(3868), - [anon_sym_if] = ACTIONS(3868), - [anon_sym_else] = ACTIONS(3868), - [anon_sym_switch] = ACTIONS(3868), - [anon_sym_case] = ACTIONS(3868), - [anon_sym_default] = ACTIONS(3868), - [anon_sym_while] = ACTIONS(3868), - [anon_sym_do] = ACTIONS(3868), - [anon_sym_for] = ACTIONS(3868), - [anon_sym_return] = ACTIONS(3868), - [anon_sym_break] = ACTIONS(3868), - [anon_sym_continue] = ACTIONS(3868), - [anon_sym_goto] = ACTIONS(3868), - [anon_sym___try] = ACTIONS(3868), - [anon_sym___leave] = ACTIONS(3868), - [anon_sym_not] = ACTIONS(3868), - [anon_sym_compl] = ACTIONS(3868), - [anon_sym_DASH_DASH] = ACTIONS(3870), - [anon_sym_PLUS_PLUS] = ACTIONS(3870), - [anon_sym_sizeof] = ACTIONS(3868), - [anon_sym___alignof__] = ACTIONS(3868), - [anon_sym___alignof] = ACTIONS(3868), - [anon_sym__alignof] = ACTIONS(3868), - [anon_sym_alignof] = ACTIONS(3868), - [anon_sym__Alignof] = ACTIONS(3868), - [anon_sym_offsetof] = ACTIONS(3868), - [anon_sym__Generic] = ACTIONS(3868), - [anon_sym_typename] = ACTIONS(3868), - [anon_sym_asm] = ACTIONS(3868), - [anon_sym___asm__] = ACTIONS(3868), - [anon_sym___asm] = ACTIONS(3868), - [sym_number_literal] = ACTIONS(3870), - [anon_sym_L_SQUOTE] = ACTIONS(3870), - [anon_sym_u_SQUOTE] = ACTIONS(3870), - [anon_sym_U_SQUOTE] = ACTIONS(3870), - [anon_sym_u8_SQUOTE] = ACTIONS(3870), - [anon_sym_SQUOTE] = ACTIONS(3870), - [anon_sym_L_DQUOTE] = ACTIONS(3870), - [anon_sym_u_DQUOTE] = ACTIONS(3870), - [anon_sym_U_DQUOTE] = ACTIONS(3870), - [anon_sym_u8_DQUOTE] = ACTIONS(3870), - [anon_sym_DQUOTE] = ACTIONS(3870), - [sym_true] = ACTIONS(3868), - [sym_false] = ACTIONS(3868), - [anon_sym_NULL] = ACTIONS(3868), - [anon_sym_nullptr] = ACTIONS(3868), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3868), - [anon_sym_decltype] = ACTIONS(3868), - [anon_sym_explicit] = ACTIONS(3868), - [anon_sym_template] = ACTIONS(3868), - [anon_sym_operator] = ACTIONS(3868), - [anon_sym_try] = ACTIONS(3868), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_throw] = ACTIONS(3868), - [anon_sym_namespace] = ACTIONS(3868), - [anon_sym_static_assert] = ACTIONS(3868), - [anon_sym_concept] = ACTIONS(3868), - [anon_sym_co_return] = ACTIONS(3868), - [anon_sym_co_yield] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(3870), - [anon_sym_LR_DQUOTE] = ACTIONS(3870), - [anon_sym_uR_DQUOTE] = ACTIONS(3870), - [anon_sym_UR_DQUOTE] = ACTIONS(3870), - [anon_sym_u8R_DQUOTE] = ACTIONS(3870), - [anon_sym_co_await] = ACTIONS(3868), - [anon_sym_new] = ACTIONS(3868), - [anon_sym_requires] = ACTIONS(3868), - [anon_sym_CARET_CARET] = ACTIONS(3870), - [anon_sym_LBRACK_COLON] = ACTIONS(3870), - [sym_this] = ACTIONS(3868), + [STATE(619)] = { + [sym_identifier] = ACTIONS(3654), + [aux_sym_preproc_include_token1] = ACTIONS(3654), + [aux_sym_preproc_def_token1] = ACTIONS(3654), + [aux_sym_preproc_if_token1] = ACTIONS(3654), + [aux_sym_preproc_if_token2] = ACTIONS(3654), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3654), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3654), + [sym_preproc_directive] = ACTIONS(3654), + [anon_sym_LPAREN2] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_STAR] = ACTIONS(3656), + [anon_sym_AMP_AMP] = ACTIONS(3656), + [anon_sym_AMP] = ACTIONS(3654), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym___extension__] = ACTIONS(3654), + [anon_sym_typedef] = ACTIONS(3654), + [anon_sym_virtual] = ACTIONS(3654), + [anon_sym_extern] = ACTIONS(3654), + [anon_sym___attribute__] = ACTIONS(3654), + [anon_sym___attribute] = ACTIONS(3654), + [anon_sym_using] = ACTIONS(3654), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3656), + [anon_sym___declspec] = ACTIONS(3654), + [anon_sym___based] = ACTIONS(3654), + [anon_sym___cdecl] = ACTIONS(3654), + [anon_sym___clrcall] = ACTIONS(3654), + [anon_sym___stdcall] = ACTIONS(3654), + [anon_sym___fastcall] = ACTIONS(3654), + [anon_sym___thiscall] = ACTIONS(3654), + [anon_sym___vectorcall] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_signed] = ACTIONS(3654), + [anon_sym_unsigned] = ACTIONS(3654), + [anon_sym_long] = ACTIONS(3654), + [anon_sym_short] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_register] = ACTIONS(3654), + [anon_sym_inline] = ACTIONS(3654), + [anon_sym___inline] = ACTIONS(3654), + [anon_sym___inline__] = ACTIONS(3654), + [anon_sym___forceinline] = ACTIONS(3654), + [anon_sym_thread_local] = ACTIONS(3654), + [anon_sym___thread] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3654), + [anon_sym_constexpr] = ACTIONS(3654), + [anon_sym_volatile] = ACTIONS(3654), + [anon_sym_restrict] = ACTIONS(3654), + [anon_sym___restrict__] = ACTIONS(3654), + [anon_sym__Atomic] = ACTIONS(3654), + [anon_sym__Noreturn] = ACTIONS(3654), + [anon_sym_noreturn] = ACTIONS(3654), + [anon_sym__Nonnull] = ACTIONS(3654), + [anon_sym_mutable] = ACTIONS(3654), + [anon_sym_constinit] = ACTIONS(3654), + [anon_sym_consteval] = ACTIONS(3654), + [anon_sym_alignas] = ACTIONS(3654), + [anon_sym__Alignas] = ACTIONS(3654), + [sym_primitive_type] = ACTIONS(3654), + [anon_sym_enum] = ACTIONS(3654), + [anon_sym_class] = ACTIONS(3654), + [anon_sym_struct] = ACTIONS(3654), + [anon_sym_union] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_case] = ACTIONS(3654), + [anon_sym_default] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_goto] = ACTIONS(3654), + [anon_sym___try] = ACTIONS(3654), + [anon_sym___leave] = ACTIONS(3654), + [anon_sym_not] = ACTIONS(3654), + [anon_sym_compl] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_sizeof] = ACTIONS(3654), + [anon_sym___alignof__] = ACTIONS(3654), + [anon_sym___alignof] = ACTIONS(3654), + [anon_sym__alignof] = ACTIONS(3654), + [anon_sym_alignof] = ACTIONS(3654), + [anon_sym__Alignof] = ACTIONS(3654), + [anon_sym_offsetof] = ACTIONS(3654), + [anon_sym__Generic] = ACTIONS(3654), + [anon_sym_typename] = ACTIONS(3654), + [anon_sym_asm] = ACTIONS(3654), + [anon_sym___asm__] = ACTIONS(3654), + [anon_sym___asm] = ACTIONS(3654), + [sym_number_literal] = ACTIONS(3656), + [anon_sym_L_SQUOTE] = ACTIONS(3656), + [anon_sym_u_SQUOTE] = ACTIONS(3656), + [anon_sym_U_SQUOTE] = ACTIONS(3656), + [anon_sym_u8_SQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_L_DQUOTE] = ACTIONS(3656), + [anon_sym_u_DQUOTE] = ACTIONS(3656), + [anon_sym_U_DQUOTE] = ACTIONS(3656), + [anon_sym_u8_DQUOTE] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [sym_true] = ACTIONS(3654), + [sym_false] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_nullptr] = ACTIONS(3654), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3654), + [anon_sym_decltype] = ACTIONS(3654), + [anon_sym_explicit] = ACTIONS(3654), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_module] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_template] = ACTIONS(3654), + [anon_sym_operator] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_delete] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_namespace] = ACTIONS(3654), + [anon_sym_static_assert] = ACTIONS(3654), + [anon_sym_concept] = ACTIONS(3654), + [anon_sym_co_return] = ACTIONS(3654), + [anon_sym_co_yield] = ACTIONS(3654), + [anon_sym_R_DQUOTE] = ACTIONS(3656), + [anon_sym_LR_DQUOTE] = ACTIONS(3656), + [anon_sym_uR_DQUOTE] = ACTIONS(3656), + [anon_sym_UR_DQUOTE] = ACTIONS(3656), + [anon_sym_u8R_DQUOTE] = ACTIONS(3656), + [anon_sym_co_await] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_requires] = ACTIONS(3654), + [anon_sym_CARET_CARET] = ACTIONS(3656), + [anon_sym_LBRACK_COLON] = ACTIONS(3656), + [sym_this] = ACTIONS(3654), }, - [STATE(745)] = { - [ts_builtin_sym_end] = ACTIONS(3924), - [sym_identifier] = ACTIONS(3922), - [aux_sym_preproc_include_token1] = ACTIONS(3922), - [aux_sym_preproc_def_token1] = ACTIONS(3922), - [aux_sym_preproc_if_token1] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), - [sym_preproc_directive] = ACTIONS(3922), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3924), - [anon_sym_TILDE] = ACTIONS(3924), - [anon_sym_DASH] = ACTIONS(3922), - [anon_sym_PLUS] = ACTIONS(3922), - [anon_sym_STAR] = ACTIONS(3924), - [anon_sym_AMP_AMP] = ACTIONS(3924), - [anon_sym_AMP] = ACTIONS(3922), - [anon_sym_SEMI] = ACTIONS(3924), - [anon_sym___extension__] = ACTIONS(3922), - [anon_sym_typedef] = ACTIONS(3922), - [anon_sym_virtual] = ACTIONS(3922), - [anon_sym_extern] = ACTIONS(3922), - [anon_sym___attribute__] = ACTIONS(3922), - [anon_sym___attribute] = ACTIONS(3922), - [anon_sym_using] = ACTIONS(3922), - [anon_sym_COLON_COLON] = ACTIONS(3924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), - [anon_sym___declspec] = ACTIONS(3922), - [anon_sym___based] = ACTIONS(3922), - [anon_sym___cdecl] = ACTIONS(3922), - [anon_sym___clrcall] = ACTIONS(3922), - [anon_sym___stdcall] = ACTIONS(3922), - [anon_sym___fastcall] = ACTIONS(3922), - [anon_sym___thiscall] = ACTIONS(3922), - [anon_sym___vectorcall] = ACTIONS(3922), - [anon_sym_LBRACE] = ACTIONS(3924), - [anon_sym_signed] = ACTIONS(3922), - [anon_sym_unsigned] = ACTIONS(3922), - [anon_sym_long] = ACTIONS(3922), - [anon_sym_short] = ACTIONS(3922), - [anon_sym_LBRACK] = ACTIONS(3922), - [anon_sym_static] = ACTIONS(3922), - [anon_sym_register] = ACTIONS(3922), - [anon_sym_inline] = ACTIONS(3922), - [anon_sym___inline] = ACTIONS(3922), - [anon_sym___inline__] = ACTIONS(3922), - [anon_sym___forceinline] = ACTIONS(3922), - [anon_sym_thread_local] = ACTIONS(3922), - [anon_sym___thread] = ACTIONS(3922), - [anon_sym_const] = ACTIONS(3922), - [anon_sym_constexpr] = ACTIONS(3922), - [anon_sym_volatile] = ACTIONS(3922), - [anon_sym_restrict] = ACTIONS(3922), - [anon_sym___restrict__] = ACTIONS(3922), - [anon_sym__Atomic] = ACTIONS(3922), - [anon_sym__Noreturn] = ACTIONS(3922), - [anon_sym_noreturn] = ACTIONS(3922), - [anon_sym__Nonnull] = ACTIONS(3922), - [anon_sym_mutable] = ACTIONS(3922), - [anon_sym_constinit] = ACTIONS(3922), - [anon_sym_consteval] = ACTIONS(3922), - [anon_sym_alignas] = ACTIONS(3922), - [anon_sym__Alignas] = ACTIONS(3922), - [sym_primitive_type] = ACTIONS(3922), - [anon_sym_enum] = ACTIONS(3922), - [anon_sym_class] = ACTIONS(3922), - [anon_sym_struct] = ACTIONS(3922), - [anon_sym_union] = ACTIONS(3922), - [anon_sym_if] = ACTIONS(3922), - [anon_sym_switch] = ACTIONS(3922), - [anon_sym_case] = ACTIONS(3922), - [anon_sym_default] = ACTIONS(3922), - [anon_sym_while] = ACTIONS(3922), - [anon_sym_do] = ACTIONS(3922), - [anon_sym_for] = ACTIONS(3922), - [anon_sym_return] = ACTIONS(3922), - [anon_sym_break] = ACTIONS(3922), - [anon_sym_continue] = ACTIONS(3922), - [anon_sym_goto] = ACTIONS(3922), - [anon_sym_not] = ACTIONS(3922), - [anon_sym_compl] = ACTIONS(3922), - [anon_sym_DASH_DASH] = ACTIONS(3924), - [anon_sym_PLUS_PLUS] = ACTIONS(3924), - [anon_sym_sizeof] = ACTIONS(3922), - [anon_sym___alignof__] = ACTIONS(3922), - [anon_sym___alignof] = ACTIONS(3922), - [anon_sym__alignof] = ACTIONS(3922), - [anon_sym_alignof] = ACTIONS(3922), - [anon_sym__Alignof] = ACTIONS(3922), - [anon_sym_offsetof] = ACTIONS(3922), - [anon_sym__Generic] = ACTIONS(3922), - [anon_sym_typename] = ACTIONS(3922), - [anon_sym_asm] = ACTIONS(3922), - [anon_sym___asm__] = ACTIONS(3922), - [anon_sym___asm] = ACTIONS(3922), - [sym_number_literal] = ACTIONS(3924), - [anon_sym_L_SQUOTE] = ACTIONS(3924), - [anon_sym_u_SQUOTE] = ACTIONS(3924), - [anon_sym_U_SQUOTE] = ACTIONS(3924), - [anon_sym_u8_SQUOTE] = ACTIONS(3924), - [anon_sym_SQUOTE] = ACTIONS(3924), - [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_true] = ACTIONS(3922), - [sym_false] = ACTIONS(3922), - [anon_sym_NULL] = ACTIONS(3922), - [anon_sym_nullptr] = ACTIONS(3922), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3922), - [anon_sym_decltype] = ACTIONS(3922), - [anon_sym_explicit] = ACTIONS(3922), - [anon_sym_export] = ACTIONS(3922), - [anon_sym_module] = ACTIONS(3922), - [anon_sym_import] = ACTIONS(3922), - [anon_sym_template] = ACTIONS(3922), - [anon_sym_operator] = ACTIONS(3922), - [anon_sym_try] = ACTIONS(3922), - [anon_sym_delete] = ACTIONS(3922), - [anon_sym_throw] = ACTIONS(3922), - [anon_sym_namespace] = ACTIONS(3922), - [anon_sym_static_assert] = ACTIONS(3922), - [anon_sym_concept] = ACTIONS(3922), - [anon_sym_co_return] = ACTIONS(3922), - [anon_sym_co_yield] = ACTIONS(3922), - [anon_sym_R_DQUOTE] = ACTIONS(3924), - [anon_sym_LR_DQUOTE] = ACTIONS(3924), - [anon_sym_uR_DQUOTE] = ACTIONS(3924), - [anon_sym_UR_DQUOTE] = ACTIONS(3924), - [anon_sym_u8R_DQUOTE] = ACTIONS(3924), - [anon_sym_co_await] = ACTIONS(3922), - [anon_sym_new] = ACTIONS(3922), - [anon_sym_requires] = ACTIONS(3922), - [anon_sym_CARET_CARET] = ACTIONS(3924), - [anon_sym_LBRACK_COLON] = ACTIONS(3924), - [sym_this] = ACTIONS(3922), + [STATE(620)] = { + [sym_identifier] = ACTIONS(3556), + [aux_sym_preproc_include_token1] = ACTIONS(3556), + [aux_sym_preproc_def_token1] = ACTIONS(3556), + [aux_sym_preproc_if_token1] = ACTIONS(3556), + [aux_sym_preproc_if_token2] = ACTIONS(3556), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3556), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3556), + [sym_preproc_directive] = ACTIONS(3556), + [anon_sym_LPAREN2] = ACTIONS(3558), + [anon_sym_BANG] = ACTIONS(3558), + [anon_sym_TILDE] = ACTIONS(3558), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(3558), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_AMP] = ACTIONS(3556), + [anon_sym_SEMI] = ACTIONS(3558), + [anon_sym___extension__] = ACTIONS(3556), + [anon_sym_typedef] = ACTIONS(3556), + [anon_sym_virtual] = ACTIONS(3556), + [anon_sym_extern] = ACTIONS(3556), + [anon_sym___attribute__] = ACTIONS(3556), + [anon_sym___attribute] = ACTIONS(3556), + [anon_sym_using] = ACTIONS(3556), + [anon_sym_COLON_COLON] = ACTIONS(3558), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3558), + [anon_sym___declspec] = ACTIONS(3556), + [anon_sym___based] = ACTIONS(3556), + [anon_sym___cdecl] = ACTIONS(3556), + [anon_sym___clrcall] = ACTIONS(3556), + [anon_sym___stdcall] = ACTIONS(3556), + [anon_sym___fastcall] = ACTIONS(3556), + [anon_sym___thiscall] = ACTIONS(3556), + [anon_sym___vectorcall] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3558), + [anon_sym_signed] = ACTIONS(3556), + [anon_sym_unsigned] = ACTIONS(3556), + [anon_sym_long] = ACTIONS(3556), + [anon_sym_short] = ACTIONS(3556), + [anon_sym_LBRACK] = ACTIONS(3556), + [anon_sym_static] = ACTIONS(3556), + [anon_sym_register] = ACTIONS(3556), + [anon_sym_inline] = ACTIONS(3556), + [anon_sym___inline] = ACTIONS(3556), + [anon_sym___inline__] = ACTIONS(3556), + [anon_sym___forceinline] = ACTIONS(3556), + [anon_sym_thread_local] = ACTIONS(3556), + [anon_sym___thread] = ACTIONS(3556), + [anon_sym_const] = ACTIONS(3556), + [anon_sym_constexpr] = ACTIONS(3556), + [anon_sym_volatile] = ACTIONS(3556), + [anon_sym_restrict] = ACTIONS(3556), + [anon_sym___restrict__] = ACTIONS(3556), + [anon_sym__Atomic] = ACTIONS(3556), + [anon_sym__Noreturn] = ACTIONS(3556), + [anon_sym_noreturn] = ACTIONS(3556), + [anon_sym__Nonnull] = ACTIONS(3556), + [anon_sym_mutable] = ACTIONS(3556), + [anon_sym_constinit] = ACTIONS(3556), + [anon_sym_consteval] = ACTIONS(3556), + [anon_sym_alignas] = ACTIONS(3556), + [anon_sym__Alignas] = ACTIONS(3556), + [sym_primitive_type] = ACTIONS(3556), + [anon_sym_enum] = ACTIONS(3556), + [anon_sym_class] = ACTIONS(3556), + [anon_sym_struct] = ACTIONS(3556), + [anon_sym_union] = ACTIONS(3556), + [anon_sym_if] = ACTIONS(3556), + [anon_sym_else] = ACTIONS(3556), + [anon_sym_switch] = ACTIONS(3556), + [anon_sym_case] = ACTIONS(3556), + [anon_sym_default] = ACTIONS(3556), + [anon_sym_while] = ACTIONS(3556), + [anon_sym_do] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3556), + [anon_sym_return] = ACTIONS(3556), + [anon_sym_break] = ACTIONS(3556), + [anon_sym_continue] = ACTIONS(3556), + [anon_sym_goto] = ACTIONS(3556), + [anon_sym___try] = ACTIONS(3556), + [anon_sym___leave] = ACTIONS(3556), + [anon_sym_not] = ACTIONS(3556), + [anon_sym_compl] = ACTIONS(3556), + [anon_sym_DASH_DASH] = ACTIONS(3558), + [anon_sym_PLUS_PLUS] = ACTIONS(3558), + [anon_sym_sizeof] = ACTIONS(3556), + [anon_sym___alignof__] = ACTIONS(3556), + [anon_sym___alignof] = ACTIONS(3556), + [anon_sym__alignof] = ACTIONS(3556), + [anon_sym_alignof] = ACTIONS(3556), + [anon_sym__Alignof] = ACTIONS(3556), + [anon_sym_offsetof] = ACTIONS(3556), + [anon_sym__Generic] = ACTIONS(3556), + [anon_sym_typename] = ACTIONS(3556), + [anon_sym_asm] = ACTIONS(3556), + [anon_sym___asm__] = ACTIONS(3556), + [anon_sym___asm] = ACTIONS(3556), + [sym_number_literal] = ACTIONS(3558), + [anon_sym_L_SQUOTE] = ACTIONS(3558), + [anon_sym_u_SQUOTE] = ACTIONS(3558), + [anon_sym_U_SQUOTE] = ACTIONS(3558), + [anon_sym_u8_SQUOTE] = ACTIONS(3558), + [anon_sym_SQUOTE] = ACTIONS(3558), + [anon_sym_L_DQUOTE] = ACTIONS(3558), + [anon_sym_u_DQUOTE] = ACTIONS(3558), + [anon_sym_U_DQUOTE] = ACTIONS(3558), + [anon_sym_u8_DQUOTE] = ACTIONS(3558), + [anon_sym_DQUOTE] = ACTIONS(3558), + [sym_true] = ACTIONS(3556), + [sym_false] = ACTIONS(3556), + [anon_sym_NULL] = ACTIONS(3556), + [anon_sym_nullptr] = ACTIONS(3556), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3556), + [anon_sym_decltype] = ACTIONS(3556), + [anon_sym_explicit] = ACTIONS(3556), + [anon_sym_export] = ACTIONS(3556), + [anon_sym_module] = ACTIONS(3556), + [anon_sym_import] = ACTIONS(3556), + [anon_sym_template] = ACTIONS(3556), + [anon_sym_operator] = ACTIONS(3556), + [anon_sym_try] = ACTIONS(3556), + [anon_sym_delete] = ACTIONS(3556), + [anon_sym_throw] = ACTIONS(3556), + [anon_sym_namespace] = ACTIONS(3556), + [anon_sym_static_assert] = ACTIONS(3556), + [anon_sym_concept] = ACTIONS(3556), + [anon_sym_co_return] = ACTIONS(3556), + [anon_sym_co_yield] = ACTIONS(3556), + [anon_sym_R_DQUOTE] = ACTIONS(3558), + [anon_sym_LR_DQUOTE] = ACTIONS(3558), + [anon_sym_uR_DQUOTE] = ACTIONS(3558), + [anon_sym_UR_DQUOTE] = ACTIONS(3558), + [anon_sym_u8R_DQUOTE] = ACTIONS(3558), + [anon_sym_co_await] = ACTIONS(3556), + [anon_sym_new] = ACTIONS(3556), + [anon_sym_requires] = ACTIONS(3556), + [anon_sym_CARET_CARET] = ACTIONS(3558), + [anon_sym_LBRACK_COLON] = ACTIONS(3558), + [sym_this] = ACTIONS(3556), }, - [STATE(746)] = { - [ts_builtin_sym_end] = ACTIONS(3924), - [sym_identifier] = ACTIONS(3922), - [aux_sym_preproc_include_token1] = ACTIONS(3922), - [aux_sym_preproc_def_token1] = ACTIONS(3922), - [aux_sym_preproc_if_token1] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), - [sym_preproc_directive] = ACTIONS(3922), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3924), - [anon_sym_TILDE] = ACTIONS(3924), - [anon_sym_DASH] = ACTIONS(3922), - [anon_sym_PLUS] = ACTIONS(3922), - [anon_sym_STAR] = ACTIONS(3924), - [anon_sym_AMP_AMP] = ACTIONS(3924), - [anon_sym_AMP] = ACTIONS(3922), - [anon_sym_SEMI] = ACTIONS(3924), - [anon_sym___extension__] = ACTIONS(3922), - [anon_sym_typedef] = ACTIONS(3922), - [anon_sym_virtual] = ACTIONS(3922), - [anon_sym_extern] = ACTIONS(3922), - [anon_sym___attribute__] = ACTIONS(3922), - [anon_sym___attribute] = ACTIONS(3922), - [anon_sym_using] = ACTIONS(3922), - [anon_sym_COLON_COLON] = ACTIONS(3924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), - [anon_sym___declspec] = ACTIONS(3922), - [anon_sym___based] = ACTIONS(3922), - [anon_sym___cdecl] = ACTIONS(3922), - [anon_sym___clrcall] = ACTIONS(3922), - [anon_sym___stdcall] = ACTIONS(3922), - [anon_sym___fastcall] = ACTIONS(3922), - [anon_sym___thiscall] = ACTIONS(3922), - [anon_sym___vectorcall] = ACTIONS(3922), - [anon_sym_LBRACE] = ACTIONS(3924), - [anon_sym_signed] = ACTIONS(3922), - [anon_sym_unsigned] = ACTIONS(3922), - [anon_sym_long] = ACTIONS(3922), - [anon_sym_short] = ACTIONS(3922), - [anon_sym_LBRACK] = ACTIONS(3922), - [anon_sym_static] = ACTIONS(3922), - [anon_sym_register] = ACTIONS(3922), - [anon_sym_inline] = ACTIONS(3922), - [anon_sym___inline] = ACTIONS(3922), - [anon_sym___inline__] = ACTIONS(3922), - [anon_sym___forceinline] = ACTIONS(3922), - [anon_sym_thread_local] = ACTIONS(3922), - [anon_sym___thread] = ACTIONS(3922), - [anon_sym_const] = ACTIONS(3922), - [anon_sym_constexpr] = ACTIONS(3922), - [anon_sym_volatile] = ACTIONS(3922), - [anon_sym_restrict] = ACTIONS(3922), - [anon_sym___restrict__] = ACTIONS(3922), - [anon_sym__Atomic] = ACTIONS(3922), - [anon_sym__Noreturn] = ACTIONS(3922), - [anon_sym_noreturn] = ACTIONS(3922), - [anon_sym__Nonnull] = ACTIONS(3922), - [anon_sym_mutable] = ACTIONS(3922), - [anon_sym_constinit] = ACTIONS(3922), - [anon_sym_consteval] = ACTIONS(3922), - [anon_sym_alignas] = ACTIONS(3922), - [anon_sym__Alignas] = ACTIONS(3922), - [sym_primitive_type] = ACTIONS(3922), - [anon_sym_enum] = ACTIONS(3922), - [anon_sym_class] = ACTIONS(3922), - [anon_sym_struct] = ACTIONS(3922), - [anon_sym_union] = ACTIONS(3922), - [anon_sym_if] = ACTIONS(3922), - [anon_sym_switch] = ACTIONS(3922), - [anon_sym_case] = ACTIONS(3922), - [anon_sym_default] = ACTIONS(3922), - [anon_sym_while] = ACTIONS(3922), - [anon_sym_do] = ACTIONS(3922), - [anon_sym_for] = ACTIONS(3922), - [anon_sym_return] = ACTIONS(3922), - [anon_sym_break] = ACTIONS(3922), - [anon_sym_continue] = ACTIONS(3922), - [anon_sym_goto] = ACTIONS(3922), - [anon_sym_not] = ACTIONS(3922), - [anon_sym_compl] = ACTIONS(3922), - [anon_sym_DASH_DASH] = ACTIONS(3924), - [anon_sym_PLUS_PLUS] = ACTIONS(3924), - [anon_sym_sizeof] = ACTIONS(3922), - [anon_sym___alignof__] = ACTIONS(3922), - [anon_sym___alignof] = ACTIONS(3922), - [anon_sym__alignof] = ACTIONS(3922), - [anon_sym_alignof] = ACTIONS(3922), - [anon_sym__Alignof] = ACTIONS(3922), - [anon_sym_offsetof] = ACTIONS(3922), - [anon_sym__Generic] = ACTIONS(3922), - [anon_sym_typename] = ACTIONS(3922), - [anon_sym_asm] = ACTIONS(3922), - [anon_sym___asm__] = ACTIONS(3922), - [anon_sym___asm] = ACTIONS(3922), - [sym_number_literal] = ACTIONS(3924), - [anon_sym_L_SQUOTE] = ACTIONS(3924), - [anon_sym_u_SQUOTE] = ACTIONS(3924), - [anon_sym_U_SQUOTE] = ACTIONS(3924), - [anon_sym_u8_SQUOTE] = ACTIONS(3924), - [anon_sym_SQUOTE] = ACTIONS(3924), - [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_true] = ACTIONS(3922), - [sym_false] = ACTIONS(3922), - [anon_sym_NULL] = ACTIONS(3922), - [anon_sym_nullptr] = ACTIONS(3922), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3922), - [anon_sym_decltype] = ACTIONS(3922), - [anon_sym_explicit] = ACTIONS(3922), - [anon_sym_export] = ACTIONS(3922), - [anon_sym_module] = ACTIONS(3922), - [anon_sym_import] = ACTIONS(3922), - [anon_sym_template] = ACTIONS(3922), - [anon_sym_operator] = ACTIONS(3922), - [anon_sym_try] = ACTIONS(3922), - [anon_sym_delete] = ACTIONS(3922), - [anon_sym_throw] = ACTIONS(3922), - [anon_sym_namespace] = ACTIONS(3922), - [anon_sym_static_assert] = ACTIONS(3922), - [anon_sym_concept] = ACTIONS(3922), - [anon_sym_co_return] = ACTIONS(3922), - [anon_sym_co_yield] = ACTIONS(3922), - [anon_sym_R_DQUOTE] = ACTIONS(3924), - [anon_sym_LR_DQUOTE] = ACTIONS(3924), - [anon_sym_uR_DQUOTE] = ACTIONS(3924), - [anon_sym_UR_DQUOTE] = ACTIONS(3924), - [anon_sym_u8R_DQUOTE] = ACTIONS(3924), - [anon_sym_co_await] = ACTIONS(3922), - [anon_sym_new] = ACTIONS(3922), - [anon_sym_requires] = ACTIONS(3922), - [anon_sym_CARET_CARET] = ACTIONS(3924), - [anon_sym_LBRACK_COLON] = ACTIONS(3924), - [sym_this] = ACTIONS(3922), + [STATE(621)] = { + [sym_identifier] = ACTIONS(3666), + [aux_sym_preproc_include_token1] = ACTIONS(3666), + [aux_sym_preproc_def_token1] = ACTIONS(3666), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_if_token2] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3666), + [sym_preproc_directive] = ACTIONS(3666), + [anon_sym_LPAREN2] = ACTIONS(3668), + [anon_sym_BANG] = ACTIONS(3668), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym___extension__] = ACTIONS(3666), + [anon_sym_typedef] = ACTIONS(3666), + [anon_sym_virtual] = ACTIONS(3666), + [anon_sym_extern] = ACTIONS(3666), + [anon_sym___attribute__] = ACTIONS(3666), + [anon_sym___attribute] = ACTIONS(3666), + [anon_sym_using] = ACTIONS(3666), + [anon_sym_COLON_COLON] = ACTIONS(3668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3668), + [anon_sym___declspec] = ACTIONS(3666), + [anon_sym___based] = ACTIONS(3666), + [anon_sym___cdecl] = ACTIONS(3666), + [anon_sym___clrcall] = ACTIONS(3666), + [anon_sym___stdcall] = ACTIONS(3666), + [anon_sym___fastcall] = ACTIONS(3666), + [anon_sym___thiscall] = ACTIONS(3666), + [anon_sym___vectorcall] = ACTIONS(3666), + [anon_sym_LBRACE] = ACTIONS(3668), + [anon_sym_signed] = ACTIONS(3666), + [anon_sym_unsigned] = ACTIONS(3666), + [anon_sym_long] = ACTIONS(3666), + [anon_sym_short] = ACTIONS(3666), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_static] = ACTIONS(3666), + [anon_sym_register] = ACTIONS(3666), + [anon_sym_inline] = ACTIONS(3666), + [anon_sym___inline] = ACTIONS(3666), + [anon_sym___inline__] = ACTIONS(3666), + [anon_sym___forceinline] = ACTIONS(3666), + [anon_sym_thread_local] = ACTIONS(3666), + [anon_sym___thread] = ACTIONS(3666), + [anon_sym_const] = ACTIONS(3666), + [anon_sym_constexpr] = ACTIONS(3666), + [anon_sym_volatile] = ACTIONS(3666), + [anon_sym_restrict] = ACTIONS(3666), + [anon_sym___restrict__] = ACTIONS(3666), + [anon_sym__Atomic] = ACTIONS(3666), + [anon_sym__Noreturn] = ACTIONS(3666), + [anon_sym_noreturn] = ACTIONS(3666), + [anon_sym__Nonnull] = ACTIONS(3666), + [anon_sym_mutable] = ACTIONS(3666), + [anon_sym_constinit] = ACTIONS(3666), + [anon_sym_consteval] = ACTIONS(3666), + [anon_sym_alignas] = ACTIONS(3666), + [anon_sym__Alignas] = ACTIONS(3666), + [sym_primitive_type] = ACTIONS(3666), + [anon_sym_enum] = ACTIONS(3666), + [anon_sym_class] = ACTIONS(3666), + [anon_sym_struct] = ACTIONS(3666), + [anon_sym_union] = ACTIONS(3666), + [anon_sym_if] = ACTIONS(3666), + [anon_sym_else] = ACTIONS(3666), + [anon_sym_switch] = ACTIONS(3666), + [anon_sym_case] = ACTIONS(3666), + [anon_sym_default] = ACTIONS(3666), + [anon_sym_while] = ACTIONS(3666), + [anon_sym_do] = ACTIONS(3666), + [anon_sym_for] = ACTIONS(3666), + [anon_sym_return] = ACTIONS(3666), + [anon_sym_break] = ACTIONS(3666), + [anon_sym_continue] = ACTIONS(3666), + [anon_sym_goto] = ACTIONS(3666), + [anon_sym___try] = ACTIONS(3666), + [anon_sym___leave] = ACTIONS(3666), + [anon_sym_not] = ACTIONS(3666), + [anon_sym_compl] = ACTIONS(3666), + [anon_sym_DASH_DASH] = ACTIONS(3668), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_sizeof] = ACTIONS(3666), + [anon_sym___alignof__] = ACTIONS(3666), + [anon_sym___alignof] = ACTIONS(3666), + [anon_sym__alignof] = ACTIONS(3666), + [anon_sym_alignof] = ACTIONS(3666), + [anon_sym__Alignof] = ACTIONS(3666), + [anon_sym_offsetof] = ACTIONS(3666), + [anon_sym__Generic] = ACTIONS(3666), + [anon_sym_typename] = ACTIONS(3666), + [anon_sym_asm] = ACTIONS(3666), + [anon_sym___asm__] = ACTIONS(3666), + [anon_sym___asm] = ACTIONS(3666), + [sym_number_literal] = ACTIONS(3668), + [anon_sym_L_SQUOTE] = ACTIONS(3668), + [anon_sym_u_SQUOTE] = ACTIONS(3668), + [anon_sym_U_SQUOTE] = ACTIONS(3668), + [anon_sym_u8_SQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3668), + [anon_sym_L_DQUOTE] = ACTIONS(3668), + [anon_sym_u_DQUOTE] = ACTIONS(3668), + [anon_sym_U_DQUOTE] = ACTIONS(3668), + [anon_sym_u8_DQUOTE] = ACTIONS(3668), + [anon_sym_DQUOTE] = ACTIONS(3668), + [sym_true] = ACTIONS(3666), + [sym_false] = ACTIONS(3666), + [anon_sym_NULL] = ACTIONS(3666), + [anon_sym_nullptr] = ACTIONS(3666), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3666), + [anon_sym_decltype] = ACTIONS(3666), + [anon_sym_explicit] = ACTIONS(3666), + [anon_sym_export] = ACTIONS(3666), + [anon_sym_module] = ACTIONS(3666), + [anon_sym_import] = ACTIONS(3666), + [anon_sym_template] = ACTIONS(3666), + [anon_sym_operator] = ACTIONS(3666), + [anon_sym_try] = ACTIONS(3666), + [anon_sym_delete] = ACTIONS(3666), + [anon_sym_throw] = ACTIONS(3666), + [anon_sym_namespace] = ACTIONS(3666), + [anon_sym_static_assert] = ACTIONS(3666), + [anon_sym_concept] = ACTIONS(3666), + [anon_sym_co_return] = ACTIONS(3666), + [anon_sym_co_yield] = ACTIONS(3666), + [anon_sym_R_DQUOTE] = ACTIONS(3668), + [anon_sym_LR_DQUOTE] = ACTIONS(3668), + [anon_sym_uR_DQUOTE] = ACTIONS(3668), + [anon_sym_UR_DQUOTE] = ACTIONS(3668), + [anon_sym_u8R_DQUOTE] = ACTIONS(3668), + [anon_sym_co_await] = ACTIONS(3666), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_requires] = ACTIONS(3666), + [anon_sym_CARET_CARET] = ACTIONS(3668), + [anon_sym_LBRACK_COLON] = ACTIONS(3668), + [sym_this] = ACTIONS(3666), }, - [STATE(747)] = { - [ts_builtin_sym_end] = ACTIONS(4162), - [sym_identifier] = ACTIONS(4160), - [aux_sym_preproc_include_token1] = ACTIONS(4160), - [aux_sym_preproc_def_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), - [sym_preproc_directive] = ACTIONS(4160), - [anon_sym_LPAREN2] = ACTIONS(4162), - [anon_sym_BANG] = ACTIONS(4162), - [anon_sym_TILDE] = ACTIONS(4162), - [anon_sym_DASH] = ACTIONS(4160), - [anon_sym_PLUS] = ACTIONS(4160), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym___extension__] = ACTIONS(4160), - [anon_sym_typedef] = ACTIONS(4160), - [anon_sym_virtual] = ACTIONS(4160), - [anon_sym_extern] = ACTIONS(4160), - [anon_sym___attribute__] = ACTIONS(4160), - [anon_sym___attribute] = ACTIONS(4160), - [anon_sym_using] = ACTIONS(4160), - [anon_sym_COLON_COLON] = ACTIONS(4162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), - [anon_sym___declspec] = ACTIONS(4160), - [anon_sym___based] = ACTIONS(4160), - [anon_sym___cdecl] = ACTIONS(4160), - [anon_sym___clrcall] = ACTIONS(4160), - [anon_sym___stdcall] = ACTIONS(4160), - [anon_sym___fastcall] = ACTIONS(4160), - [anon_sym___thiscall] = ACTIONS(4160), - [anon_sym___vectorcall] = ACTIONS(4160), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_signed] = ACTIONS(4160), - [anon_sym_unsigned] = ACTIONS(4160), - [anon_sym_long] = ACTIONS(4160), - [anon_sym_short] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(4160), - [anon_sym_static] = ACTIONS(4160), - [anon_sym_register] = ACTIONS(4160), - [anon_sym_inline] = ACTIONS(4160), - [anon_sym___inline] = ACTIONS(4160), - [anon_sym___inline__] = ACTIONS(4160), - [anon_sym___forceinline] = ACTIONS(4160), - [anon_sym_thread_local] = ACTIONS(4160), - [anon_sym___thread] = ACTIONS(4160), - [anon_sym_const] = ACTIONS(4160), - [anon_sym_constexpr] = ACTIONS(4160), - [anon_sym_volatile] = ACTIONS(4160), - [anon_sym_restrict] = ACTIONS(4160), - [anon_sym___restrict__] = ACTIONS(4160), - [anon_sym__Atomic] = ACTIONS(4160), - [anon_sym__Noreturn] = ACTIONS(4160), - [anon_sym_noreturn] = ACTIONS(4160), - [anon_sym__Nonnull] = ACTIONS(4160), - [anon_sym_mutable] = ACTIONS(4160), - [anon_sym_constinit] = ACTIONS(4160), - [anon_sym_consteval] = ACTIONS(4160), - [anon_sym_alignas] = ACTIONS(4160), - [anon_sym__Alignas] = ACTIONS(4160), - [sym_primitive_type] = ACTIONS(4160), - [anon_sym_enum] = ACTIONS(4160), - [anon_sym_class] = ACTIONS(4160), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_union] = ACTIONS(4160), - [anon_sym_if] = ACTIONS(4160), - [anon_sym_switch] = ACTIONS(4160), - [anon_sym_case] = ACTIONS(4160), - [anon_sym_default] = ACTIONS(4160), - [anon_sym_while] = ACTIONS(4160), - [anon_sym_do] = ACTIONS(4160), - [anon_sym_for] = ACTIONS(4160), - [anon_sym_return] = ACTIONS(4160), - [anon_sym_break] = ACTIONS(4160), - [anon_sym_continue] = ACTIONS(4160), - [anon_sym_goto] = ACTIONS(4160), - [anon_sym_not] = ACTIONS(4160), - [anon_sym_compl] = ACTIONS(4160), - [anon_sym_DASH_DASH] = ACTIONS(4162), - [anon_sym_PLUS_PLUS] = ACTIONS(4162), - [anon_sym_sizeof] = ACTIONS(4160), - [anon_sym___alignof__] = ACTIONS(4160), - [anon_sym___alignof] = ACTIONS(4160), - [anon_sym__alignof] = ACTIONS(4160), - [anon_sym_alignof] = ACTIONS(4160), - [anon_sym__Alignof] = ACTIONS(4160), - [anon_sym_offsetof] = ACTIONS(4160), - [anon_sym__Generic] = ACTIONS(4160), - [anon_sym_typename] = ACTIONS(4160), - [anon_sym_asm] = ACTIONS(4160), - [anon_sym___asm__] = ACTIONS(4160), - [anon_sym___asm] = ACTIONS(4160), - [sym_number_literal] = ACTIONS(4162), - [anon_sym_L_SQUOTE] = ACTIONS(4162), - [anon_sym_u_SQUOTE] = ACTIONS(4162), - [anon_sym_U_SQUOTE] = ACTIONS(4162), - [anon_sym_u8_SQUOTE] = ACTIONS(4162), - [anon_sym_SQUOTE] = ACTIONS(4162), - [anon_sym_L_DQUOTE] = ACTIONS(4162), - [anon_sym_u_DQUOTE] = ACTIONS(4162), - [anon_sym_U_DQUOTE] = ACTIONS(4162), - [anon_sym_u8_DQUOTE] = ACTIONS(4162), - [anon_sym_DQUOTE] = ACTIONS(4162), - [sym_true] = ACTIONS(4160), - [sym_false] = ACTIONS(4160), - [anon_sym_NULL] = ACTIONS(4160), - [anon_sym_nullptr] = ACTIONS(4160), + [STATE(622)] = { + [ts_builtin_sym_end] = ACTIONS(3624), + [sym_identifier] = ACTIONS(3622), + [aux_sym_preproc_include_token1] = ACTIONS(3622), + [aux_sym_preproc_def_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), + [sym_preproc_directive] = ACTIONS(3622), + [anon_sym_LPAREN2] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_STAR] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_AMP] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym___extension__] = ACTIONS(3622), + [anon_sym_typedef] = ACTIONS(3622), + [anon_sym_virtual] = ACTIONS(3622), + [anon_sym_extern] = ACTIONS(3622), + [anon_sym___attribute__] = ACTIONS(3622), + [anon_sym___attribute] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_COLON_COLON] = ACTIONS(3624), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), + [anon_sym___declspec] = ACTIONS(3622), + [anon_sym___based] = ACTIONS(3622), + [anon_sym___cdecl] = ACTIONS(3622), + [anon_sym___clrcall] = ACTIONS(3622), + [anon_sym___stdcall] = ACTIONS(3622), + [anon_sym___fastcall] = ACTIONS(3622), + [anon_sym___thiscall] = ACTIONS(3622), + [anon_sym___vectorcall] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_signed] = ACTIONS(3622), + [anon_sym_unsigned] = ACTIONS(3622), + [anon_sym_long] = ACTIONS(3622), + [anon_sym_short] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_register] = ACTIONS(3622), + [anon_sym_inline] = ACTIONS(3622), + [anon_sym___inline] = ACTIONS(3622), + [anon_sym___inline__] = ACTIONS(3622), + [anon_sym___forceinline] = ACTIONS(3622), + [anon_sym_thread_local] = ACTIONS(3622), + [anon_sym___thread] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_constexpr] = ACTIONS(3622), + [anon_sym_volatile] = ACTIONS(3622), + [anon_sym_restrict] = ACTIONS(3622), + [anon_sym___restrict__] = ACTIONS(3622), + [anon_sym__Atomic] = ACTIONS(3622), + [anon_sym__Noreturn] = ACTIONS(3622), + [anon_sym_noreturn] = ACTIONS(3622), + [anon_sym__Nonnull] = ACTIONS(3622), + [anon_sym_mutable] = ACTIONS(3622), + [anon_sym_constinit] = ACTIONS(3622), + [anon_sym_consteval] = ACTIONS(3622), + [anon_sym_alignas] = ACTIONS(3622), + [anon_sym__Alignas] = ACTIONS(3622), + [sym_primitive_type] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_struct] = ACTIONS(3622), + [anon_sym_union] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_case] = ACTIONS(3622), + [anon_sym_default] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_goto] = ACTIONS(3622), + [anon_sym___try] = ACTIONS(3622), + [anon_sym___leave] = ACTIONS(3622), + [anon_sym_not] = ACTIONS(3622), + [anon_sym_compl] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_sizeof] = ACTIONS(3622), + [anon_sym___alignof__] = ACTIONS(3622), + [anon_sym___alignof] = ACTIONS(3622), + [anon_sym__alignof] = ACTIONS(3622), + [anon_sym_alignof] = ACTIONS(3622), + [anon_sym__Alignof] = ACTIONS(3622), + [anon_sym_offsetof] = ACTIONS(3622), + [anon_sym__Generic] = ACTIONS(3622), + [anon_sym_typename] = ACTIONS(3622), + [anon_sym_asm] = ACTIONS(3622), + [anon_sym___asm__] = ACTIONS(3622), + [anon_sym___asm] = ACTIONS(3622), + [sym_number_literal] = ACTIONS(3624), + [anon_sym_L_SQUOTE] = ACTIONS(3624), + [anon_sym_u_SQUOTE] = ACTIONS(3624), + [anon_sym_U_SQUOTE] = ACTIONS(3624), + [anon_sym_u8_SQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_L_DQUOTE] = ACTIONS(3624), + [anon_sym_u_DQUOTE] = ACTIONS(3624), + [anon_sym_U_DQUOTE] = ACTIONS(3624), + [anon_sym_u8_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [anon_sym_NULL] = ACTIONS(3622), + [anon_sym_nullptr] = ACTIONS(3622), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4160), - [anon_sym_decltype] = ACTIONS(4160), - [anon_sym_explicit] = ACTIONS(4160), - [anon_sym_export] = ACTIONS(4160), - [anon_sym_module] = ACTIONS(4160), - [anon_sym_import] = ACTIONS(4160), - [anon_sym_template] = ACTIONS(4160), - [anon_sym_operator] = ACTIONS(4160), - [anon_sym_try] = ACTIONS(4160), - [anon_sym_delete] = ACTIONS(4160), - [anon_sym_throw] = ACTIONS(4160), - [anon_sym_namespace] = ACTIONS(4160), - [anon_sym_static_assert] = ACTIONS(4160), - [anon_sym_concept] = ACTIONS(4160), - [anon_sym_co_return] = ACTIONS(4160), - [anon_sym_co_yield] = ACTIONS(4160), - [anon_sym_R_DQUOTE] = ACTIONS(4162), - [anon_sym_LR_DQUOTE] = ACTIONS(4162), - [anon_sym_uR_DQUOTE] = ACTIONS(4162), - [anon_sym_UR_DQUOTE] = ACTIONS(4162), - [anon_sym_u8R_DQUOTE] = ACTIONS(4162), - [anon_sym_co_await] = ACTIONS(4160), - [anon_sym_new] = ACTIONS(4160), - [anon_sym_requires] = ACTIONS(4160), - [anon_sym_CARET_CARET] = ACTIONS(4162), - [anon_sym_LBRACK_COLON] = ACTIONS(4162), - [sym_this] = ACTIONS(4160), - }, - [STATE(748)] = { - [sym_identifier] = ACTIONS(3712), - [aux_sym_preproc_include_token1] = ACTIONS(3712), - [aux_sym_preproc_def_token1] = ACTIONS(3712), - [aux_sym_preproc_if_token1] = ACTIONS(3712), - [aux_sym_preproc_if_token2] = ACTIONS(3712), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3712), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3712), - [sym_preproc_directive] = ACTIONS(3712), - [anon_sym_LPAREN2] = ACTIONS(3714), - [anon_sym_BANG] = ACTIONS(3714), - [anon_sym_TILDE] = ACTIONS(3714), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3714), - [anon_sym_AMP_AMP] = ACTIONS(3714), - [anon_sym_AMP] = ACTIONS(3712), - [anon_sym_SEMI] = ACTIONS(3714), - [anon_sym___extension__] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3712), - [anon_sym_virtual] = ACTIONS(3712), - [anon_sym_extern] = ACTIONS(3712), - [anon_sym___attribute__] = ACTIONS(3712), - [anon_sym___attribute] = ACTIONS(3712), - [anon_sym_using] = ACTIONS(3712), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3714), - [anon_sym___declspec] = ACTIONS(3712), - [anon_sym___based] = ACTIONS(3712), - [anon_sym___cdecl] = ACTIONS(3712), - [anon_sym___clrcall] = ACTIONS(3712), - [anon_sym___stdcall] = ACTIONS(3712), - [anon_sym___fastcall] = ACTIONS(3712), - [anon_sym___thiscall] = ACTIONS(3712), - [anon_sym___vectorcall] = ACTIONS(3712), - [anon_sym_LBRACE] = ACTIONS(3714), - [anon_sym_signed] = ACTIONS(3712), - [anon_sym_unsigned] = ACTIONS(3712), - [anon_sym_long] = ACTIONS(3712), - [anon_sym_short] = ACTIONS(3712), - [anon_sym_LBRACK] = ACTIONS(3712), - [anon_sym_static] = ACTIONS(3712), - [anon_sym_register] = ACTIONS(3712), - [anon_sym_inline] = ACTIONS(3712), - [anon_sym___inline] = ACTIONS(3712), - [anon_sym___inline__] = ACTIONS(3712), - [anon_sym___forceinline] = ACTIONS(3712), - [anon_sym_thread_local] = ACTIONS(3712), - [anon_sym___thread] = ACTIONS(3712), - [anon_sym_const] = ACTIONS(3712), - [anon_sym_constexpr] = ACTIONS(3712), - [anon_sym_volatile] = ACTIONS(3712), - [anon_sym_restrict] = ACTIONS(3712), - [anon_sym___restrict__] = ACTIONS(3712), - [anon_sym__Atomic] = ACTIONS(3712), - [anon_sym__Noreturn] = ACTIONS(3712), - [anon_sym_noreturn] = ACTIONS(3712), - [anon_sym__Nonnull] = ACTIONS(3712), - [anon_sym_mutable] = ACTIONS(3712), - [anon_sym_constinit] = ACTIONS(3712), - [anon_sym_consteval] = ACTIONS(3712), - [anon_sym_alignas] = ACTIONS(3712), - [anon_sym__Alignas] = ACTIONS(3712), - [sym_primitive_type] = ACTIONS(3712), - [anon_sym_enum] = ACTIONS(3712), - [anon_sym_class] = ACTIONS(3712), - [anon_sym_struct] = ACTIONS(3712), - [anon_sym_union] = ACTIONS(3712), - [anon_sym_if] = ACTIONS(3712), - [anon_sym_else] = ACTIONS(3712), - [anon_sym_switch] = ACTIONS(3712), - [anon_sym_case] = ACTIONS(3712), - [anon_sym_default] = ACTIONS(3712), - [anon_sym_while] = ACTIONS(3712), - [anon_sym_do] = ACTIONS(3712), - [anon_sym_for] = ACTIONS(3712), - [anon_sym_return] = ACTIONS(3712), - [anon_sym_break] = ACTIONS(3712), - [anon_sym_continue] = ACTIONS(3712), - [anon_sym_goto] = ACTIONS(3712), - [anon_sym___try] = ACTIONS(3712), - [anon_sym___leave] = ACTIONS(3712), - [anon_sym_not] = ACTIONS(3712), - [anon_sym_compl] = ACTIONS(3712), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_sizeof] = ACTIONS(3712), - [anon_sym___alignof__] = ACTIONS(3712), - [anon_sym___alignof] = ACTIONS(3712), - [anon_sym__alignof] = ACTIONS(3712), - [anon_sym_alignof] = ACTIONS(3712), - [anon_sym__Alignof] = ACTIONS(3712), - [anon_sym_offsetof] = ACTIONS(3712), - [anon_sym__Generic] = ACTIONS(3712), - [anon_sym_typename] = ACTIONS(3712), - [anon_sym_asm] = ACTIONS(3712), - [anon_sym___asm__] = ACTIONS(3712), - [anon_sym___asm] = ACTIONS(3712), - [sym_number_literal] = ACTIONS(3714), - [anon_sym_L_SQUOTE] = ACTIONS(3714), - [anon_sym_u_SQUOTE] = ACTIONS(3714), - [anon_sym_U_SQUOTE] = ACTIONS(3714), - [anon_sym_u8_SQUOTE] = ACTIONS(3714), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_L_DQUOTE] = ACTIONS(3714), - [anon_sym_u_DQUOTE] = ACTIONS(3714), - [anon_sym_U_DQUOTE] = ACTIONS(3714), - [anon_sym_u8_DQUOTE] = ACTIONS(3714), - [anon_sym_DQUOTE] = ACTIONS(3714), - [sym_true] = ACTIONS(3712), - [sym_false] = ACTIONS(3712), - [anon_sym_NULL] = ACTIONS(3712), - [anon_sym_nullptr] = ACTIONS(3712), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3712), - [anon_sym_decltype] = ACTIONS(3712), - [anon_sym_explicit] = ACTIONS(3712), - [anon_sym_template] = ACTIONS(3712), - [anon_sym_operator] = ACTIONS(3712), - [anon_sym_try] = ACTIONS(3712), - [anon_sym_delete] = ACTIONS(3712), - [anon_sym_throw] = ACTIONS(3712), - [anon_sym_namespace] = ACTIONS(3712), - [anon_sym_static_assert] = ACTIONS(3712), - [anon_sym_concept] = ACTIONS(3712), - [anon_sym_co_return] = ACTIONS(3712), - [anon_sym_co_yield] = ACTIONS(3712), - [anon_sym_R_DQUOTE] = ACTIONS(3714), - [anon_sym_LR_DQUOTE] = ACTIONS(3714), - [anon_sym_uR_DQUOTE] = ACTIONS(3714), - [anon_sym_UR_DQUOTE] = ACTIONS(3714), - [anon_sym_u8R_DQUOTE] = ACTIONS(3714), - [anon_sym_co_await] = ACTIONS(3712), - [anon_sym_new] = ACTIONS(3712), - [anon_sym_requires] = ACTIONS(3712), - [anon_sym_CARET_CARET] = ACTIONS(3714), - [anon_sym_LBRACK_COLON] = ACTIONS(3714), - [sym_this] = ACTIONS(3712), + [sym_auto] = ACTIONS(3622), + [anon_sym_decltype] = ACTIONS(3622), + [anon_sym_explicit] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_template] = ACTIONS(3622), + [anon_sym_operator] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_static_assert] = ACTIONS(3622), + [anon_sym_concept] = ACTIONS(3622), + [anon_sym_co_return] = ACTIONS(3622), + [anon_sym_co_yield] = ACTIONS(3622), + [anon_sym_R_DQUOTE] = ACTIONS(3624), + [anon_sym_LR_DQUOTE] = ACTIONS(3624), + [anon_sym_uR_DQUOTE] = ACTIONS(3624), + [anon_sym_UR_DQUOTE] = ACTIONS(3624), + [anon_sym_u8R_DQUOTE] = ACTIONS(3624), + [anon_sym_co_await] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_requires] = ACTIONS(3622), + [anon_sym_CARET_CARET] = ACTIONS(3624), + [anon_sym_LBRACK_COLON] = ACTIONS(3624), + [sym_this] = ACTIONS(3622), }, - [STATE(749)] = { - [sym_identifier] = ACTIONS(3692), - [aux_sym_preproc_include_token1] = ACTIONS(3692), - [aux_sym_preproc_def_token1] = ACTIONS(3692), - [aux_sym_preproc_if_token1] = ACTIONS(3692), - [aux_sym_preproc_if_token2] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3692), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3692), - [sym_preproc_directive] = ACTIONS(3692), - [anon_sym_LPAREN2] = ACTIONS(3694), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_TILDE] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3692), - [anon_sym_PLUS] = ACTIONS(3692), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_AMP_AMP] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3694), - [anon_sym___extension__] = ACTIONS(3692), - [anon_sym_typedef] = ACTIONS(3692), - [anon_sym_virtual] = ACTIONS(3692), - [anon_sym_extern] = ACTIONS(3692), - [anon_sym___attribute__] = ACTIONS(3692), - [anon_sym___attribute] = ACTIONS(3692), - [anon_sym_using] = ACTIONS(3692), - [anon_sym_COLON_COLON] = ACTIONS(3694), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3694), - [anon_sym___declspec] = ACTIONS(3692), - [anon_sym___based] = ACTIONS(3692), - [anon_sym___cdecl] = ACTIONS(3692), - [anon_sym___clrcall] = ACTIONS(3692), - [anon_sym___stdcall] = ACTIONS(3692), - [anon_sym___fastcall] = ACTIONS(3692), - [anon_sym___thiscall] = ACTIONS(3692), - [anon_sym___vectorcall] = ACTIONS(3692), - [anon_sym_LBRACE] = ACTIONS(3694), - [anon_sym_signed] = ACTIONS(3692), - [anon_sym_unsigned] = ACTIONS(3692), - [anon_sym_long] = ACTIONS(3692), - [anon_sym_short] = ACTIONS(3692), - [anon_sym_LBRACK] = ACTIONS(3692), - [anon_sym_static] = ACTIONS(3692), - [anon_sym_register] = ACTIONS(3692), - [anon_sym_inline] = ACTIONS(3692), - [anon_sym___inline] = ACTIONS(3692), - [anon_sym___inline__] = ACTIONS(3692), - [anon_sym___forceinline] = ACTIONS(3692), - [anon_sym_thread_local] = ACTIONS(3692), - [anon_sym___thread] = ACTIONS(3692), - [anon_sym_const] = ACTIONS(3692), - [anon_sym_constexpr] = ACTIONS(3692), - [anon_sym_volatile] = ACTIONS(3692), - [anon_sym_restrict] = ACTIONS(3692), - [anon_sym___restrict__] = ACTIONS(3692), - [anon_sym__Atomic] = ACTIONS(3692), - [anon_sym__Noreturn] = ACTIONS(3692), - [anon_sym_noreturn] = ACTIONS(3692), - [anon_sym__Nonnull] = ACTIONS(3692), - [anon_sym_mutable] = ACTIONS(3692), - [anon_sym_constinit] = ACTIONS(3692), - [anon_sym_consteval] = ACTIONS(3692), - [anon_sym_alignas] = ACTIONS(3692), - [anon_sym__Alignas] = ACTIONS(3692), - [sym_primitive_type] = ACTIONS(3692), - [anon_sym_enum] = ACTIONS(3692), - [anon_sym_class] = ACTIONS(3692), - [anon_sym_struct] = ACTIONS(3692), - [anon_sym_union] = ACTIONS(3692), - [anon_sym_if] = ACTIONS(3692), - [anon_sym_else] = ACTIONS(3692), - [anon_sym_switch] = ACTIONS(3692), - [anon_sym_case] = ACTIONS(3692), - [anon_sym_default] = ACTIONS(3692), - [anon_sym_while] = ACTIONS(3692), - [anon_sym_do] = ACTIONS(3692), - [anon_sym_for] = ACTIONS(3692), - [anon_sym_return] = ACTIONS(3692), - [anon_sym_break] = ACTIONS(3692), - [anon_sym_continue] = ACTIONS(3692), - [anon_sym_goto] = ACTIONS(3692), - [anon_sym___try] = ACTIONS(3692), - [anon_sym___leave] = ACTIONS(3692), - [anon_sym_not] = ACTIONS(3692), - [anon_sym_compl] = ACTIONS(3692), - [anon_sym_DASH_DASH] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3694), - [anon_sym_sizeof] = ACTIONS(3692), - [anon_sym___alignof__] = ACTIONS(3692), - [anon_sym___alignof] = ACTIONS(3692), - [anon_sym__alignof] = ACTIONS(3692), - [anon_sym_alignof] = ACTIONS(3692), - [anon_sym__Alignof] = ACTIONS(3692), - [anon_sym_offsetof] = ACTIONS(3692), - [anon_sym__Generic] = ACTIONS(3692), - [anon_sym_typename] = ACTIONS(3692), - [anon_sym_asm] = ACTIONS(3692), - [anon_sym___asm__] = ACTIONS(3692), - [anon_sym___asm] = ACTIONS(3692), - [sym_number_literal] = ACTIONS(3694), - [anon_sym_L_SQUOTE] = ACTIONS(3694), - [anon_sym_u_SQUOTE] = ACTIONS(3694), - [anon_sym_U_SQUOTE] = ACTIONS(3694), - [anon_sym_u8_SQUOTE] = ACTIONS(3694), - [anon_sym_SQUOTE] = ACTIONS(3694), - [anon_sym_L_DQUOTE] = ACTIONS(3694), - [anon_sym_u_DQUOTE] = ACTIONS(3694), - [anon_sym_U_DQUOTE] = ACTIONS(3694), - [anon_sym_u8_DQUOTE] = ACTIONS(3694), - [anon_sym_DQUOTE] = ACTIONS(3694), - [sym_true] = ACTIONS(3692), - [sym_false] = ACTIONS(3692), - [anon_sym_NULL] = ACTIONS(3692), - [anon_sym_nullptr] = ACTIONS(3692), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3692), - [anon_sym_decltype] = ACTIONS(3692), - [anon_sym_explicit] = ACTIONS(3692), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_operator] = ACTIONS(3692), - [anon_sym_try] = ACTIONS(3692), - [anon_sym_delete] = ACTIONS(3692), - [anon_sym_throw] = ACTIONS(3692), - [anon_sym_namespace] = ACTIONS(3692), - [anon_sym_static_assert] = ACTIONS(3692), - [anon_sym_concept] = ACTIONS(3692), - [anon_sym_co_return] = ACTIONS(3692), - [anon_sym_co_yield] = ACTIONS(3692), - [anon_sym_R_DQUOTE] = ACTIONS(3694), - [anon_sym_LR_DQUOTE] = ACTIONS(3694), - [anon_sym_uR_DQUOTE] = ACTIONS(3694), - [anon_sym_UR_DQUOTE] = ACTIONS(3694), - [anon_sym_u8R_DQUOTE] = ACTIONS(3694), - [anon_sym_co_await] = ACTIONS(3692), - [anon_sym_new] = ACTIONS(3692), - [anon_sym_requires] = ACTIONS(3692), - [anon_sym_CARET_CARET] = ACTIONS(3694), - [anon_sym_LBRACK_COLON] = ACTIONS(3694), - [sym_this] = ACTIONS(3692), + [STATE(623)] = { + [sym_identifier] = ACTIONS(3670), + [aux_sym_preproc_include_token1] = ACTIONS(3670), + [aux_sym_preproc_def_token1] = ACTIONS(3670), + [aux_sym_preproc_if_token1] = ACTIONS(3670), + [aux_sym_preproc_if_token2] = ACTIONS(3670), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3670), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3670), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3672), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_TILDE] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_STAR] = ACTIONS(3672), + [anon_sym_AMP_AMP] = ACTIONS(3672), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym___extension__] = ACTIONS(3670), + [anon_sym_typedef] = ACTIONS(3670), + [anon_sym_virtual] = ACTIONS(3670), + [anon_sym_extern] = ACTIONS(3670), + [anon_sym___attribute__] = ACTIONS(3670), + [anon_sym___attribute] = ACTIONS(3670), + [anon_sym_using] = ACTIONS(3670), + [anon_sym_COLON_COLON] = ACTIONS(3672), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3672), + [anon_sym___declspec] = ACTIONS(3670), + [anon_sym___based] = ACTIONS(3670), + [anon_sym___cdecl] = ACTIONS(3670), + [anon_sym___clrcall] = ACTIONS(3670), + [anon_sym___stdcall] = ACTIONS(3670), + [anon_sym___fastcall] = ACTIONS(3670), + [anon_sym___thiscall] = ACTIONS(3670), + [anon_sym___vectorcall] = ACTIONS(3670), + [anon_sym_LBRACE] = ACTIONS(3672), + [anon_sym_signed] = ACTIONS(3670), + [anon_sym_unsigned] = ACTIONS(3670), + [anon_sym_long] = ACTIONS(3670), + [anon_sym_short] = ACTIONS(3670), + [anon_sym_LBRACK] = ACTIONS(3670), + [anon_sym_static] = ACTIONS(3670), + [anon_sym_register] = ACTIONS(3670), + [anon_sym_inline] = ACTIONS(3670), + [anon_sym___inline] = ACTIONS(3670), + [anon_sym___inline__] = ACTIONS(3670), + [anon_sym___forceinline] = ACTIONS(3670), + [anon_sym_thread_local] = ACTIONS(3670), + [anon_sym___thread] = ACTIONS(3670), + [anon_sym_const] = ACTIONS(3670), + [anon_sym_constexpr] = ACTIONS(3670), + [anon_sym_volatile] = ACTIONS(3670), + [anon_sym_restrict] = ACTIONS(3670), + [anon_sym___restrict__] = ACTIONS(3670), + [anon_sym__Atomic] = ACTIONS(3670), + [anon_sym__Noreturn] = ACTIONS(3670), + [anon_sym_noreturn] = ACTIONS(3670), + [anon_sym__Nonnull] = ACTIONS(3670), + [anon_sym_mutable] = ACTIONS(3670), + [anon_sym_constinit] = ACTIONS(3670), + [anon_sym_consteval] = ACTIONS(3670), + [anon_sym_alignas] = ACTIONS(3670), + [anon_sym__Alignas] = ACTIONS(3670), + [sym_primitive_type] = ACTIONS(3670), + [anon_sym_enum] = ACTIONS(3670), + [anon_sym_class] = ACTIONS(3670), + [anon_sym_struct] = ACTIONS(3670), + [anon_sym_union] = ACTIONS(3670), + [anon_sym_if] = ACTIONS(3670), + [anon_sym_else] = ACTIONS(3670), + [anon_sym_switch] = ACTIONS(3670), + [anon_sym_case] = ACTIONS(3670), + [anon_sym_default] = ACTIONS(3670), + [anon_sym_while] = ACTIONS(3670), + [anon_sym_do] = ACTIONS(3670), + [anon_sym_for] = ACTIONS(3670), + [anon_sym_return] = ACTIONS(3670), + [anon_sym_break] = ACTIONS(3670), + [anon_sym_continue] = ACTIONS(3670), + [anon_sym_goto] = ACTIONS(3670), + [anon_sym___try] = ACTIONS(3670), + [anon_sym___leave] = ACTIONS(3670), + [anon_sym_not] = ACTIONS(3670), + [anon_sym_compl] = ACTIONS(3670), + [anon_sym_DASH_DASH] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3672), + [anon_sym_sizeof] = ACTIONS(3670), + [anon_sym___alignof__] = ACTIONS(3670), + [anon_sym___alignof] = ACTIONS(3670), + [anon_sym__alignof] = ACTIONS(3670), + [anon_sym_alignof] = ACTIONS(3670), + [anon_sym__Alignof] = ACTIONS(3670), + [anon_sym_offsetof] = ACTIONS(3670), + [anon_sym__Generic] = ACTIONS(3670), + [anon_sym_typename] = ACTIONS(3670), + [anon_sym_asm] = ACTIONS(3670), + [anon_sym___asm__] = ACTIONS(3670), + [anon_sym___asm] = ACTIONS(3670), + [sym_number_literal] = ACTIONS(3672), + [anon_sym_L_SQUOTE] = ACTIONS(3672), + [anon_sym_u_SQUOTE] = ACTIONS(3672), + [anon_sym_U_SQUOTE] = ACTIONS(3672), + [anon_sym_u8_SQUOTE] = ACTIONS(3672), + [anon_sym_SQUOTE] = ACTIONS(3672), + [anon_sym_L_DQUOTE] = ACTIONS(3672), + [anon_sym_u_DQUOTE] = ACTIONS(3672), + [anon_sym_U_DQUOTE] = ACTIONS(3672), + [anon_sym_u8_DQUOTE] = ACTIONS(3672), + [anon_sym_DQUOTE] = ACTIONS(3672), + [sym_true] = ACTIONS(3670), + [sym_false] = ACTIONS(3670), + [anon_sym_NULL] = ACTIONS(3670), + [anon_sym_nullptr] = ACTIONS(3670), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3670), + [anon_sym_decltype] = ACTIONS(3670), + [anon_sym_explicit] = ACTIONS(3670), + [anon_sym_export] = ACTIONS(3670), + [anon_sym_module] = ACTIONS(3670), + [anon_sym_import] = ACTIONS(3670), + [anon_sym_template] = ACTIONS(3670), + [anon_sym_operator] = ACTIONS(3670), + [anon_sym_try] = ACTIONS(3670), + [anon_sym_delete] = ACTIONS(3670), + [anon_sym_throw] = ACTIONS(3670), + [anon_sym_namespace] = ACTIONS(3670), + [anon_sym_static_assert] = ACTIONS(3670), + [anon_sym_concept] = ACTIONS(3670), + [anon_sym_co_return] = ACTIONS(3670), + [anon_sym_co_yield] = ACTIONS(3670), + [anon_sym_R_DQUOTE] = ACTIONS(3672), + [anon_sym_LR_DQUOTE] = ACTIONS(3672), + [anon_sym_uR_DQUOTE] = ACTIONS(3672), + [anon_sym_UR_DQUOTE] = ACTIONS(3672), + [anon_sym_u8R_DQUOTE] = ACTIONS(3672), + [anon_sym_co_await] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3670), + [anon_sym_requires] = ACTIONS(3670), + [anon_sym_CARET_CARET] = ACTIONS(3672), + [anon_sym_LBRACK_COLON] = ACTIONS(3672), + [sym_this] = ACTIONS(3670), }, - [STATE(750)] = { - [ts_builtin_sym_end] = ACTIONS(3928), - [sym_identifier] = ACTIONS(3926), - [aux_sym_preproc_include_token1] = ACTIONS(3926), - [aux_sym_preproc_def_token1] = ACTIONS(3926), - [aux_sym_preproc_if_token1] = ACTIONS(3926), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3926), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3926), - [sym_preproc_directive] = ACTIONS(3926), - [anon_sym_LPAREN2] = ACTIONS(3928), - [anon_sym_BANG] = ACTIONS(3928), - [anon_sym_TILDE] = ACTIONS(3928), - [anon_sym_DASH] = ACTIONS(3926), - [anon_sym_PLUS] = ACTIONS(3926), - [anon_sym_STAR] = ACTIONS(3928), - [anon_sym_AMP_AMP] = ACTIONS(3928), - [anon_sym_AMP] = ACTIONS(3926), - [anon_sym_SEMI] = ACTIONS(3928), - [anon_sym___extension__] = ACTIONS(3926), - [anon_sym_typedef] = ACTIONS(3926), - [anon_sym_virtual] = ACTIONS(3926), - [anon_sym_extern] = ACTIONS(3926), - [anon_sym___attribute__] = ACTIONS(3926), - [anon_sym___attribute] = ACTIONS(3926), - [anon_sym_using] = ACTIONS(3926), - [anon_sym_COLON_COLON] = ACTIONS(3928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3928), - [anon_sym___declspec] = ACTIONS(3926), - [anon_sym___based] = ACTIONS(3926), - [anon_sym___cdecl] = ACTIONS(3926), - [anon_sym___clrcall] = ACTIONS(3926), - [anon_sym___stdcall] = ACTIONS(3926), - [anon_sym___fastcall] = ACTIONS(3926), - [anon_sym___thiscall] = ACTIONS(3926), - [anon_sym___vectorcall] = ACTIONS(3926), - [anon_sym_LBRACE] = ACTIONS(3928), - [anon_sym_signed] = ACTIONS(3926), - [anon_sym_unsigned] = ACTIONS(3926), - [anon_sym_long] = ACTIONS(3926), - [anon_sym_short] = ACTIONS(3926), - [anon_sym_LBRACK] = ACTIONS(3926), - [anon_sym_static] = ACTIONS(3926), - [anon_sym_register] = ACTIONS(3926), - [anon_sym_inline] = ACTIONS(3926), - [anon_sym___inline] = ACTIONS(3926), - [anon_sym___inline__] = ACTIONS(3926), - [anon_sym___forceinline] = ACTIONS(3926), - [anon_sym_thread_local] = ACTIONS(3926), - [anon_sym___thread] = ACTIONS(3926), - [anon_sym_const] = ACTIONS(3926), - [anon_sym_constexpr] = ACTIONS(3926), - [anon_sym_volatile] = ACTIONS(3926), - [anon_sym_restrict] = ACTIONS(3926), - [anon_sym___restrict__] = ACTIONS(3926), - [anon_sym__Atomic] = ACTIONS(3926), - [anon_sym__Noreturn] = ACTIONS(3926), - [anon_sym_noreturn] = ACTIONS(3926), - [anon_sym__Nonnull] = ACTIONS(3926), - [anon_sym_mutable] = ACTIONS(3926), - [anon_sym_constinit] = ACTIONS(3926), - [anon_sym_consteval] = ACTIONS(3926), - [anon_sym_alignas] = ACTIONS(3926), - [anon_sym__Alignas] = ACTIONS(3926), - [sym_primitive_type] = ACTIONS(3926), - [anon_sym_enum] = ACTIONS(3926), - [anon_sym_class] = ACTIONS(3926), - [anon_sym_struct] = ACTIONS(3926), - [anon_sym_union] = ACTIONS(3926), - [anon_sym_if] = ACTIONS(3926), - [anon_sym_switch] = ACTIONS(3926), - [anon_sym_case] = ACTIONS(3926), - [anon_sym_default] = ACTIONS(3926), - [anon_sym_while] = ACTIONS(3926), - [anon_sym_do] = ACTIONS(3926), - [anon_sym_for] = ACTIONS(3926), - [anon_sym_return] = ACTIONS(3926), - [anon_sym_break] = ACTIONS(3926), - [anon_sym_continue] = ACTIONS(3926), - [anon_sym_goto] = ACTIONS(3926), - [anon_sym_not] = ACTIONS(3926), - [anon_sym_compl] = ACTIONS(3926), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3926), - [anon_sym___alignof__] = ACTIONS(3926), - [anon_sym___alignof] = ACTIONS(3926), - [anon_sym__alignof] = ACTIONS(3926), - [anon_sym_alignof] = ACTIONS(3926), - [anon_sym__Alignof] = ACTIONS(3926), - [anon_sym_offsetof] = ACTIONS(3926), - [anon_sym__Generic] = ACTIONS(3926), - [anon_sym_typename] = ACTIONS(3926), - [anon_sym_asm] = ACTIONS(3926), - [anon_sym___asm__] = ACTIONS(3926), - [anon_sym___asm] = ACTIONS(3926), - [sym_number_literal] = ACTIONS(3928), - [anon_sym_L_SQUOTE] = ACTIONS(3928), - [anon_sym_u_SQUOTE] = ACTIONS(3928), - [anon_sym_U_SQUOTE] = ACTIONS(3928), - [anon_sym_u8_SQUOTE] = ACTIONS(3928), - [anon_sym_SQUOTE] = ACTIONS(3928), - [anon_sym_L_DQUOTE] = ACTIONS(3928), - [anon_sym_u_DQUOTE] = ACTIONS(3928), - [anon_sym_U_DQUOTE] = ACTIONS(3928), - [anon_sym_u8_DQUOTE] = ACTIONS(3928), - [anon_sym_DQUOTE] = ACTIONS(3928), - [sym_true] = ACTIONS(3926), - [sym_false] = ACTIONS(3926), - [anon_sym_NULL] = ACTIONS(3926), - [anon_sym_nullptr] = ACTIONS(3926), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3926), - [anon_sym_decltype] = ACTIONS(3926), - [anon_sym_explicit] = ACTIONS(3926), - [anon_sym_export] = ACTIONS(3926), - [anon_sym_module] = ACTIONS(3926), - [anon_sym_import] = ACTIONS(3926), - [anon_sym_template] = ACTIONS(3926), - [anon_sym_operator] = ACTIONS(3926), - [anon_sym_try] = ACTIONS(3926), - [anon_sym_delete] = ACTIONS(3926), - [anon_sym_throw] = ACTIONS(3926), - [anon_sym_namespace] = ACTIONS(3926), - [anon_sym_static_assert] = ACTIONS(3926), - [anon_sym_concept] = ACTIONS(3926), - [anon_sym_co_return] = ACTIONS(3926), - [anon_sym_co_yield] = ACTIONS(3926), - [anon_sym_R_DQUOTE] = ACTIONS(3928), - [anon_sym_LR_DQUOTE] = ACTIONS(3928), - [anon_sym_uR_DQUOTE] = ACTIONS(3928), - [anon_sym_UR_DQUOTE] = ACTIONS(3928), - [anon_sym_u8R_DQUOTE] = ACTIONS(3928), - [anon_sym_co_await] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_requires] = ACTIONS(3926), - [anon_sym_CARET_CARET] = ACTIONS(3928), - [anon_sym_LBRACK_COLON] = ACTIONS(3928), - [sym_this] = ACTIONS(3926), + [STATE(624)] = { + [sym_identifier] = ACTIONS(3674), + [aux_sym_preproc_include_token1] = ACTIONS(3674), + [aux_sym_preproc_def_token1] = ACTIONS(3674), + [aux_sym_preproc_if_token1] = ACTIONS(3674), + [aux_sym_preproc_if_token2] = ACTIONS(3674), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3674), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3674), + [sym_preproc_directive] = ACTIONS(3674), + [anon_sym_LPAREN2] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3676), + [anon_sym_TILDE] = ACTIONS(3676), + [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_PLUS] = ACTIONS(3674), + [anon_sym_STAR] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3676), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_SEMI] = ACTIONS(3676), + [anon_sym___extension__] = ACTIONS(3674), + [anon_sym_typedef] = ACTIONS(3674), + [anon_sym_virtual] = ACTIONS(3674), + [anon_sym_extern] = ACTIONS(3674), + [anon_sym___attribute__] = ACTIONS(3674), + [anon_sym___attribute] = ACTIONS(3674), + [anon_sym_using] = ACTIONS(3674), + [anon_sym_COLON_COLON] = ACTIONS(3676), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3676), + [anon_sym___declspec] = ACTIONS(3674), + [anon_sym___based] = ACTIONS(3674), + [anon_sym___cdecl] = ACTIONS(3674), + [anon_sym___clrcall] = ACTIONS(3674), + [anon_sym___stdcall] = ACTIONS(3674), + [anon_sym___fastcall] = ACTIONS(3674), + [anon_sym___thiscall] = ACTIONS(3674), + [anon_sym___vectorcall] = ACTIONS(3674), + [anon_sym_LBRACE] = ACTIONS(3676), + [anon_sym_signed] = ACTIONS(3674), + [anon_sym_unsigned] = ACTIONS(3674), + [anon_sym_long] = ACTIONS(3674), + [anon_sym_short] = ACTIONS(3674), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_static] = ACTIONS(3674), + [anon_sym_register] = ACTIONS(3674), + [anon_sym_inline] = ACTIONS(3674), + [anon_sym___inline] = ACTIONS(3674), + [anon_sym___inline__] = ACTIONS(3674), + [anon_sym___forceinline] = ACTIONS(3674), + [anon_sym_thread_local] = ACTIONS(3674), + [anon_sym___thread] = ACTIONS(3674), + [anon_sym_const] = ACTIONS(3674), + [anon_sym_constexpr] = ACTIONS(3674), + [anon_sym_volatile] = ACTIONS(3674), + [anon_sym_restrict] = ACTIONS(3674), + [anon_sym___restrict__] = ACTIONS(3674), + [anon_sym__Atomic] = ACTIONS(3674), + [anon_sym__Noreturn] = ACTIONS(3674), + [anon_sym_noreturn] = ACTIONS(3674), + [anon_sym__Nonnull] = ACTIONS(3674), + [anon_sym_mutable] = ACTIONS(3674), + [anon_sym_constinit] = ACTIONS(3674), + [anon_sym_consteval] = ACTIONS(3674), + [anon_sym_alignas] = ACTIONS(3674), + [anon_sym__Alignas] = ACTIONS(3674), + [sym_primitive_type] = ACTIONS(3674), + [anon_sym_enum] = ACTIONS(3674), + [anon_sym_class] = ACTIONS(3674), + [anon_sym_struct] = ACTIONS(3674), + [anon_sym_union] = ACTIONS(3674), + [anon_sym_if] = ACTIONS(3674), + [anon_sym_else] = ACTIONS(3674), + [anon_sym_switch] = ACTIONS(3674), + [anon_sym_case] = ACTIONS(3674), + [anon_sym_default] = ACTIONS(3674), + [anon_sym_while] = ACTIONS(3674), + [anon_sym_do] = ACTIONS(3674), + [anon_sym_for] = ACTIONS(3674), + [anon_sym_return] = ACTIONS(3674), + [anon_sym_break] = ACTIONS(3674), + [anon_sym_continue] = ACTIONS(3674), + [anon_sym_goto] = ACTIONS(3674), + [anon_sym___try] = ACTIONS(3674), + [anon_sym___leave] = ACTIONS(3674), + [anon_sym_not] = ACTIONS(3674), + [anon_sym_compl] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [anon_sym_PLUS_PLUS] = ACTIONS(3676), + [anon_sym_sizeof] = ACTIONS(3674), + [anon_sym___alignof__] = ACTIONS(3674), + [anon_sym___alignof] = ACTIONS(3674), + [anon_sym__alignof] = ACTIONS(3674), + [anon_sym_alignof] = ACTIONS(3674), + [anon_sym__Alignof] = ACTIONS(3674), + [anon_sym_offsetof] = ACTIONS(3674), + [anon_sym__Generic] = ACTIONS(3674), + [anon_sym_typename] = ACTIONS(3674), + [anon_sym_asm] = ACTIONS(3674), + [anon_sym___asm__] = ACTIONS(3674), + [anon_sym___asm] = ACTIONS(3674), + [sym_number_literal] = ACTIONS(3676), + [anon_sym_L_SQUOTE] = ACTIONS(3676), + [anon_sym_u_SQUOTE] = ACTIONS(3676), + [anon_sym_U_SQUOTE] = ACTIONS(3676), + [anon_sym_u8_SQUOTE] = ACTIONS(3676), + [anon_sym_SQUOTE] = ACTIONS(3676), + [anon_sym_L_DQUOTE] = ACTIONS(3676), + [anon_sym_u_DQUOTE] = ACTIONS(3676), + [anon_sym_U_DQUOTE] = ACTIONS(3676), + [anon_sym_u8_DQUOTE] = ACTIONS(3676), + [anon_sym_DQUOTE] = ACTIONS(3676), + [sym_true] = ACTIONS(3674), + [sym_false] = ACTIONS(3674), + [anon_sym_NULL] = ACTIONS(3674), + [anon_sym_nullptr] = ACTIONS(3674), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3674), + [anon_sym_decltype] = ACTIONS(3674), + [anon_sym_explicit] = ACTIONS(3674), + [anon_sym_export] = ACTIONS(3674), + [anon_sym_module] = ACTIONS(3674), + [anon_sym_import] = ACTIONS(3674), + [anon_sym_template] = ACTIONS(3674), + [anon_sym_operator] = ACTIONS(3674), + [anon_sym_try] = ACTIONS(3674), + [anon_sym_delete] = ACTIONS(3674), + [anon_sym_throw] = ACTIONS(3674), + [anon_sym_namespace] = ACTIONS(3674), + [anon_sym_static_assert] = ACTIONS(3674), + [anon_sym_concept] = ACTIONS(3674), + [anon_sym_co_return] = ACTIONS(3674), + [anon_sym_co_yield] = ACTIONS(3674), + [anon_sym_R_DQUOTE] = ACTIONS(3676), + [anon_sym_LR_DQUOTE] = ACTIONS(3676), + [anon_sym_uR_DQUOTE] = ACTIONS(3676), + [anon_sym_UR_DQUOTE] = ACTIONS(3676), + [anon_sym_u8R_DQUOTE] = ACTIONS(3676), + [anon_sym_co_await] = ACTIONS(3674), + [anon_sym_new] = ACTIONS(3674), + [anon_sym_requires] = ACTIONS(3674), + [anon_sym_CARET_CARET] = ACTIONS(3676), + [anon_sym_LBRACK_COLON] = ACTIONS(3676), + [sym_this] = ACTIONS(3674), }, - [STATE(751)] = { - [ts_builtin_sym_end] = ACTIONS(4008), - [sym_identifier] = ACTIONS(4006), - [aux_sym_preproc_include_token1] = ACTIONS(4006), - [aux_sym_preproc_def_token1] = ACTIONS(4006), - [aux_sym_preproc_if_token1] = ACTIONS(4006), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4006), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4006), - [sym_preproc_directive] = ACTIONS(4006), - [anon_sym_LPAREN2] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4008), - [anon_sym_TILDE] = ACTIONS(4008), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_STAR] = ACTIONS(4008), - [anon_sym_AMP_AMP] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4006), - [anon_sym_SEMI] = ACTIONS(4008), - [anon_sym___extension__] = ACTIONS(4006), - [anon_sym_typedef] = ACTIONS(4006), - [anon_sym_virtual] = ACTIONS(4006), - [anon_sym_extern] = ACTIONS(4006), - [anon_sym___attribute__] = ACTIONS(4006), - [anon_sym___attribute] = ACTIONS(4006), - [anon_sym_using] = ACTIONS(4006), - [anon_sym_COLON_COLON] = ACTIONS(4008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4008), - [anon_sym___declspec] = ACTIONS(4006), - [anon_sym___based] = ACTIONS(4006), - [anon_sym___cdecl] = ACTIONS(4006), - [anon_sym___clrcall] = ACTIONS(4006), - [anon_sym___stdcall] = ACTIONS(4006), - [anon_sym___fastcall] = ACTIONS(4006), - [anon_sym___thiscall] = ACTIONS(4006), - [anon_sym___vectorcall] = ACTIONS(4006), - [anon_sym_LBRACE] = ACTIONS(4008), - [anon_sym_signed] = ACTIONS(4006), - [anon_sym_unsigned] = ACTIONS(4006), - [anon_sym_long] = ACTIONS(4006), - [anon_sym_short] = ACTIONS(4006), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_static] = ACTIONS(4006), - [anon_sym_register] = ACTIONS(4006), - [anon_sym_inline] = ACTIONS(4006), - [anon_sym___inline] = ACTIONS(4006), - [anon_sym___inline__] = ACTIONS(4006), - [anon_sym___forceinline] = ACTIONS(4006), - [anon_sym_thread_local] = ACTIONS(4006), - [anon_sym___thread] = ACTIONS(4006), - [anon_sym_const] = ACTIONS(4006), - [anon_sym_constexpr] = ACTIONS(4006), - [anon_sym_volatile] = ACTIONS(4006), - [anon_sym_restrict] = ACTIONS(4006), - [anon_sym___restrict__] = ACTIONS(4006), - [anon_sym__Atomic] = ACTIONS(4006), - [anon_sym__Noreturn] = ACTIONS(4006), - [anon_sym_noreturn] = ACTIONS(4006), - [anon_sym__Nonnull] = ACTIONS(4006), - [anon_sym_mutable] = ACTIONS(4006), - [anon_sym_constinit] = ACTIONS(4006), - [anon_sym_consteval] = ACTIONS(4006), - [anon_sym_alignas] = ACTIONS(4006), - [anon_sym__Alignas] = ACTIONS(4006), - [sym_primitive_type] = ACTIONS(4006), - [anon_sym_enum] = ACTIONS(4006), - [anon_sym_class] = ACTIONS(4006), - [anon_sym_struct] = ACTIONS(4006), - [anon_sym_union] = ACTIONS(4006), - [anon_sym_if] = ACTIONS(4006), - [anon_sym_switch] = ACTIONS(4006), - [anon_sym_case] = ACTIONS(4006), - [anon_sym_default] = ACTIONS(4006), - [anon_sym_while] = ACTIONS(4006), - [anon_sym_do] = ACTIONS(4006), - [anon_sym_for] = ACTIONS(4006), - [anon_sym_return] = ACTIONS(4006), - [anon_sym_break] = ACTIONS(4006), - [anon_sym_continue] = ACTIONS(4006), - [anon_sym_goto] = ACTIONS(4006), - [anon_sym_not] = ACTIONS(4006), - [anon_sym_compl] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4008), - [anon_sym_PLUS_PLUS] = ACTIONS(4008), - [anon_sym_sizeof] = ACTIONS(4006), - [anon_sym___alignof__] = ACTIONS(4006), - [anon_sym___alignof] = ACTIONS(4006), - [anon_sym__alignof] = ACTIONS(4006), - [anon_sym_alignof] = ACTIONS(4006), - [anon_sym__Alignof] = ACTIONS(4006), - [anon_sym_offsetof] = ACTIONS(4006), - [anon_sym__Generic] = ACTIONS(4006), - [anon_sym_typename] = ACTIONS(4006), - [anon_sym_asm] = ACTIONS(4006), - [anon_sym___asm__] = ACTIONS(4006), - [anon_sym___asm] = ACTIONS(4006), - [sym_number_literal] = ACTIONS(4008), - [anon_sym_L_SQUOTE] = ACTIONS(4008), - [anon_sym_u_SQUOTE] = ACTIONS(4008), - [anon_sym_U_SQUOTE] = ACTIONS(4008), - [anon_sym_u8_SQUOTE] = ACTIONS(4008), - [anon_sym_SQUOTE] = ACTIONS(4008), - [anon_sym_L_DQUOTE] = ACTIONS(4008), - [anon_sym_u_DQUOTE] = ACTIONS(4008), - [anon_sym_U_DQUOTE] = ACTIONS(4008), - [anon_sym_u8_DQUOTE] = ACTIONS(4008), - [anon_sym_DQUOTE] = ACTIONS(4008), - [sym_true] = ACTIONS(4006), - [sym_false] = ACTIONS(4006), - [anon_sym_NULL] = ACTIONS(4006), - [anon_sym_nullptr] = ACTIONS(4006), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4006), - [anon_sym_decltype] = ACTIONS(4006), - [anon_sym_explicit] = ACTIONS(4006), - [anon_sym_export] = ACTIONS(4006), - [anon_sym_module] = ACTIONS(4006), - [anon_sym_import] = ACTIONS(4006), - [anon_sym_template] = ACTIONS(4006), - [anon_sym_operator] = ACTIONS(4006), - [anon_sym_try] = ACTIONS(4006), - [anon_sym_delete] = ACTIONS(4006), - [anon_sym_throw] = ACTIONS(4006), - [anon_sym_namespace] = ACTIONS(4006), - [anon_sym_static_assert] = ACTIONS(4006), - [anon_sym_concept] = ACTIONS(4006), - [anon_sym_co_return] = ACTIONS(4006), - [anon_sym_co_yield] = ACTIONS(4006), - [anon_sym_R_DQUOTE] = ACTIONS(4008), - [anon_sym_LR_DQUOTE] = ACTIONS(4008), - [anon_sym_uR_DQUOTE] = ACTIONS(4008), - [anon_sym_UR_DQUOTE] = ACTIONS(4008), - [anon_sym_u8R_DQUOTE] = ACTIONS(4008), - [anon_sym_co_await] = ACTIONS(4006), - [anon_sym_new] = ACTIONS(4006), - [anon_sym_requires] = ACTIONS(4006), - [anon_sym_CARET_CARET] = ACTIONS(4008), - [anon_sym_LBRACK_COLON] = ACTIONS(4008), - [sym_this] = ACTIONS(4006), + [STATE(625)] = { + [ts_builtin_sym_end] = ACTIONS(3636), + [sym_identifier] = ACTIONS(3634), + [aux_sym_preproc_include_token1] = ACTIONS(3634), + [aux_sym_preproc_def_token1] = ACTIONS(3634), + [aux_sym_preproc_if_token1] = ACTIONS(3634), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3634), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3634), + [sym_preproc_directive] = ACTIONS(3634), + [anon_sym_LPAREN2] = ACTIONS(3636), + [anon_sym_BANG] = ACTIONS(3636), + [anon_sym_TILDE] = ACTIONS(3636), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_STAR] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3636), + [anon_sym_AMP] = ACTIONS(3634), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym___extension__] = ACTIONS(3634), + [anon_sym_typedef] = ACTIONS(3634), + [anon_sym_virtual] = ACTIONS(3634), + [anon_sym_extern] = ACTIONS(3634), + [anon_sym___attribute__] = ACTIONS(3634), + [anon_sym___attribute] = ACTIONS(3634), + [anon_sym_using] = ACTIONS(3634), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3636), + [anon_sym___declspec] = ACTIONS(3634), + [anon_sym___based] = ACTIONS(3634), + [anon_sym___cdecl] = ACTIONS(3634), + [anon_sym___clrcall] = ACTIONS(3634), + [anon_sym___stdcall] = ACTIONS(3634), + [anon_sym___fastcall] = ACTIONS(3634), + [anon_sym___thiscall] = ACTIONS(3634), + [anon_sym___vectorcall] = ACTIONS(3634), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_signed] = ACTIONS(3634), + [anon_sym_unsigned] = ACTIONS(3634), + [anon_sym_long] = ACTIONS(3634), + [anon_sym_short] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3634), + [anon_sym_static] = ACTIONS(3634), + [anon_sym_register] = ACTIONS(3634), + [anon_sym_inline] = ACTIONS(3634), + [anon_sym___inline] = ACTIONS(3634), + [anon_sym___inline__] = ACTIONS(3634), + [anon_sym___forceinline] = ACTIONS(3634), + [anon_sym_thread_local] = ACTIONS(3634), + [anon_sym___thread] = ACTIONS(3634), + [anon_sym_const] = ACTIONS(3634), + [anon_sym_constexpr] = ACTIONS(3634), + [anon_sym_volatile] = ACTIONS(3634), + [anon_sym_restrict] = ACTIONS(3634), + [anon_sym___restrict__] = ACTIONS(3634), + [anon_sym__Atomic] = ACTIONS(3634), + [anon_sym__Noreturn] = ACTIONS(3634), + [anon_sym_noreturn] = ACTIONS(3634), + [anon_sym__Nonnull] = ACTIONS(3634), + [anon_sym_mutable] = ACTIONS(3634), + [anon_sym_constinit] = ACTIONS(3634), + [anon_sym_consteval] = ACTIONS(3634), + [anon_sym_alignas] = ACTIONS(3634), + [anon_sym__Alignas] = ACTIONS(3634), + [sym_primitive_type] = ACTIONS(3634), + [anon_sym_enum] = ACTIONS(3634), + [anon_sym_class] = ACTIONS(3634), + [anon_sym_struct] = ACTIONS(3634), + [anon_sym_union] = ACTIONS(3634), + [anon_sym_if] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(3634), + [anon_sym_switch] = ACTIONS(3634), + [anon_sym_case] = ACTIONS(3634), + [anon_sym_default] = ACTIONS(3634), + [anon_sym_while] = ACTIONS(3634), + [anon_sym_do] = ACTIONS(3634), + [anon_sym_for] = ACTIONS(3634), + [anon_sym_return] = ACTIONS(3634), + [anon_sym_break] = ACTIONS(3634), + [anon_sym_continue] = ACTIONS(3634), + [anon_sym_goto] = ACTIONS(3634), + [anon_sym___try] = ACTIONS(3634), + [anon_sym___leave] = ACTIONS(3634), + [anon_sym_not] = ACTIONS(3634), + [anon_sym_compl] = ACTIONS(3634), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_sizeof] = ACTIONS(3634), + [anon_sym___alignof__] = ACTIONS(3634), + [anon_sym___alignof] = ACTIONS(3634), + [anon_sym__alignof] = ACTIONS(3634), + [anon_sym_alignof] = ACTIONS(3634), + [anon_sym__Alignof] = ACTIONS(3634), + [anon_sym_offsetof] = ACTIONS(3634), + [anon_sym__Generic] = ACTIONS(3634), + [anon_sym_typename] = ACTIONS(3634), + [anon_sym_asm] = ACTIONS(3634), + [anon_sym___asm__] = ACTIONS(3634), + [anon_sym___asm] = ACTIONS(3634), + [sym_number_literal] = ACTIONS(3636), + [anon_sym_L_SQUOTE] = ACTIONS(3636), + [anon_sym_u_SQUOTE] = ACTIONS(3636), + [anon_sym_U_SQUOTE] = ACTIONS(3636), + [anon_sym_u8_SQUOTE] = ACTIONS(3636), + [anon_sym_SQUOTE] = ACTIONS(3636), + [anon_sym_L_DQUOTE] = ACTIONS(3636), + [anon_sym_u_DQUOTE] = ACTIONS(3636), + [anon_sym_U_DQUOTE] = ACTIONS(3636), + [anon_sym_u8_DQUOTE] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(3636), + [sym_true] = ACTIONS(3634), + [sym_false] = ACTIONS(3634), + [anon_sym_NULL] = ACTIONS(3634), + [anon_sym_nullptr] = ACTIONS(3634), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3634), + [anon_sym_decltype] = ACTIONS(3634), + [anon_sym_explicit] = ACTIONS(3634), + [anon_sym_export] = ACTIONS(3634), + [anon_sym_module] = ACTIONS(3634), + [anon_sym_import] = ACTIONS(3634), + [anon_sym_template] = ACTIONS(3634), + [anon_sym_operator] = ACTIONS(3634), + [anon_sym_try] = ACTIONS(3634), + [anon_sym_delete] = ACTIONS(3634), + [anon_sym_throw] = ACTIONS(3634), + [anon_sym_namespace] = ACTIONS(3634), + [anon_sym_static_assert] = ACTIONS(3634), + [anon_sym_concept] = ACTIONS(3634), + [anon_sym_co_return] = ACTIONS(3634), + [anon_sym_co_yield] = ACTIONS(3634), + [anon_sym_R_DQUOTE] = ACTIONS(3636), + [anon_sym_LR_DQUOTE] = ACTIONS(3636), + [anon_sym_uR_DQUOTE] = ACTIONS(3636), + [anon_sym_UR_DQUOTE] = ACTIONS(3636), + [anon_sym_u8R_DQUOTE] = ACTIONS(3636), + [anon_sym_co_await] = ACTIONS(3634), + [anon_sym_new] = ACTIONS(3634), + [anon_sym_requires] = ACTIONS(3634), + [anon_sym_CARET_CARET] = ACTIONS(3636), + [anon_sym_LBRACK_COLON] = ACTIONS(3636), + [sym_this] = ACTIONS(3634), }, - [STATE(752)] = { - [sym_identifier] = ACTIONS(3894), - [aux_sym_preproc_include_token1] = ACTIONS(3894), - [aux_sym_preproc_def_token1] = ACTIONS(3894), - [aux_sym_preproc_if_token1] = ACTIONS(3894), - [aux_sym_preproc_if_token2] = ACTIONS(3894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3894), - [sym_preproc_directive] = ACTIONS(3894), - [anon_sym_LPAREN2] = ACTIONS(3896), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(3896), - [anon_sym_AMP_AMP] = ACTIONS(3896), - [anon_sym_AMP] = ACTIONS(3894), - [anon_sym_SEMI] = ACTIONS(3896), - [anon_sym___extension__] = ACTIONS(3894), - [anon_sym_typedef] = ACTIONS(3894), - [anon_sym_virtual] = ACTIONS(3894), - [anon_sym_extern] = ACTIONS(3894), - [anon_sym___attribute__] = ACTIONS(3894), - [anon_sym___attribute] = ACTIONS(3894), - [anon_sym_using] = ACTIONS(3894), - [anon_sym_COLON_COLON] = ACTIONS(3896), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3896), - [anon_sym___declspec] = ACTIONS(3894), - [anon_sym___based] = ACTIONS(3894), - [anon_sym___cdecl] = ACTIONS(3894), - [anon_sym___clrcall] = ACTIONS(3894), - [anon_sym___stdcall] = ACTIONS(3894), - [anon_sym___fastcall] = ACTIONS(3894), - [anon_sym___thiscall] = ACTIONS(3894), - [anon_sym___vectorcall] = ACTIONS(3894), - [anon_sym_LBRACE] = ACTIONS(3896), - [anon_sym_signed] = ACTIONS(3894), - [anon_sym_unsigned] = ACTIONS(3894), - [anon_sym_long] = ACTIONS(3894), - [anon_sym_short] = ACTIONS(3894), - [anon_sym_LBRACK] = ACTIONS(3894), - [anon_sym_static] = ACTIONS(3894), - [anon_sym_register] = ACTIONS(3894), - [anon_sym_inline] = ACTIONS(3894), - [anon_sym___inline] = ACTIONS(3894), - [anon_sym___inline__] = ACTIONS(3894), - [anon_sym___forceinline] = ACTIONS(3894), - [anon_sym_thread_local] = ACTIONS(3894), - [anon_sym___thread] = ACTIONS(3894), - [anon_sym_const] = ACTIONS(3894), - [anon_sym_constexpr] = ACTIONS(3894), - [anon_sym_volatile] = ACTIONS(3894), - [anon_sym_restrict] = ACTIONS(3894), - [anon_sym___restrict__] = ACTIONS(3894), - [anon_sym__Atomic] = ACTIONS(3894), - [anon_sym__Noreturn] = ACTIONS(3894), - [anon_sym_noreturn] = ACTIONS(3894), - [anon_sym__Nonnull] = ACTIONS(3894), - [anon_sym_mutable] = ACTIONS(3894), - [anon_sym_constinit] = ACTIONS(3894), - [anon_sym_consteval] = ACTIONS(3894), - [anon_sym_alignas] = ACTIONS(3894), - [anon_sym__Alignas] = ACTIONS(3894), - [sym_primitive_type] = ACTIONS(3894), - [anon_sym_enum] = ACTIONS(3894), - [anon_sym_class] = ACTIONS(3894), - [anon_sym_struct] = ACTIONS(3894), - [anon_sym_union] = ACTIONS(3894), - [anon_sym_if] = ACTIONS(3894), - [anon_sym_else] = ACTIONS(3894), - [anon_sym_switch] = ACTIONS(3894), - [anon_sym_case] = ACTIONS(3894), - [anon_sym_default] = ACTIONS(3894), - [anon_sym_while] = ACTIONS(3894), - [anon_sym_do] = ACTIONS(3894), - [anon_sym_for] = ACTIONS(3894), - [anon_sym_return] = ACTIONS(3894), - [anon_sym_break] = ACTIONS(3894), - [anon_sym_continue] = ACTIONS(3894), - [anon_sym_goto] = ACTIONS(3894), - [anon_sym___try] = ACTIONS(3894), - [anon_sym___leave] = ACTIONS(3894), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3896), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(3894), - [anon_sym___alignof] = ACTIONS(3894), - [anon_sym__alignof] = ACTIONS(3894), - [anon_sym_alignof] = ACTIONS(3894), - [anon_sym__Alignof] = ACTIONS(3894), - [anon_sym_offsetof] = ACTIONS(3894), - [anon_sym__Generic] = ACTIONS(3894), - [anon_sym_typename] = ACTIONS(3894), - [anon_sym_asm] = ACTIONS(3894), - [anon_sym___asm__] = ACTIONS(3894), - [anon_sym___asm] = ACTIONS(3894), - [sym_number_literal] = ACTIONS(3896), - [anon_sym_L_SQUOTE] = ACTIONS(3896), - [anon_sym_u_SQUOTE] = ACTIONS(3896), - [anon_sym_U_SQUOTE] = ACTIONS(3896), - [anon_sym_u8_SQUOTE] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(3896), - [anon_sym_L_DQUOTE] = ACTIONS(3896), - [anon_sym_u_DQUOTE] = ACTIONS(3896), - [anon_sym_U_DQUOTE] = ACTIONS(3896), - [anon_sym_u8_DQUOTE] = ACTIONS(3896), - [anon_sym_DQUOTE] = ACTIONS(3896), - [sym_true] = ACTIONS(3894), - [sym_false] = ACTIONS(3894), - [anon_sym_NULL] = ACTIONS(3894), - [anon_sym_nullptr] = ACTIONS(3894), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3894), - [anon_sym_decltype] = ACTIONS(3894), - [anon_sym_explicit] = ACTIONS(3894), - [anon_sym_template] = ACTIONS(3894), - [anon_sym_operator] = ACTIONS(3894), - [anon_sym_try] = ACTIONS(3894), - [anon_sym_delete] = ACTIONS(3894), - [anon_sym_throw] = ACTIONS(3894), - [anon_sym_namespace] = ACTIONS(3894), - [anon_sym_static_assert] = ACTIONS(3894), - [anon_sym_concept] = ACTIONS(3894), - [anon_sym_co_return] = ACTIONS(3894), - [anon_sym_co_yield] = ACTIONS(3894), - [anon_sym_R_DQUOTE] = ACTIONS(3896), - [anon_sym_LR_DQUOTE] = ACTIONS(3896), - [anon_sym_uR_DQUOTE] = ACTIONS(3896), - [anon_sym_UR_DQUOTE] = ACTIONS(3896), - [anon_sym_u8R_DQUOTE] = ACTIONS(3896), - [anon_sym_co_await] = ACTIONS(3894), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_requires] = ACTIONS(3894), - [anon_sym_CARET_CARET] = ACTIONS(3896), - [anon_sym_LBRACK_COLON] = ACTIONS(3896), - [sym_this] = ACTIONS(3894), + [STATE(626)] = { + [sym_catch_clause] = STATE(398), + [aux_sym_constructor_try_statement_repeat1] = STATE(398), + [ts_builtin_sym_end] = ACTIONS(3180), + [sym_identifier] = ACTIONS(3178), + [aux_sym_preproc_include_token1] = ACTIONS(3178), + [aux_sym_preproc_def_token1] = ACTIONS(3178), + [aux_sym_preproc_if_token1] = ACTIONS(3178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3178), + [sym_preproc_directive] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3180), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_TILDE] = ACTIONS(3180), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_AMP_AMP] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym___extension__] = ACTIONS(3178), + [anon_sym_typedef] = ACTIONS(3178), + [anon_sym_virtual] = ACTIONS(3178), + [anon_sym_extern] = ACTIONS(3178), + [anon_sym___attribute__] = ACTIONS(3178), + [anon_sym___attribute] = ACTIONS(3178), + [anon_sym_using] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3180), + [anon_sym___declspec] = ACTIONS(3178), + [anon_sym___based] = ACTIONS(3178), + [anon_sym___cdecl] = ACTIONS(3178), + [anon_sym___clrcall] = ACTIONS(3178), + [anon_sym___stdcall] = ACTIONS(3178), + [anon_sym___fastcall] = ACTIONS(3178), + [anon_sym___thiscall] = ACTIONS(3178), + [anon_sym___vectorcall] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3180), + [anon_sym_signed] = ACTIONS(3178), + [anon_sym_unsigned] = ACTIONS(3178), + [anon_sym_long] = ACTIONS(3178), + [anon_sym_short] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_static] = ACTIONS(3178), + [anon_sym_register] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym___inline] = ACTIONS(3178), + [anon_sym___inline__] = ACTIONS(3178), + [anon_sym___forceinline] = ACTIONS(3178), + [anon_sym_thread_local] = ACTIONS(3178), + [anon_sym___thread] = ACTIONS(3178), + [anon_sym_const] = ACTIONS(3178), + [anon_sym_constexpr] = ACTIONS(3178), + [anon_sym_volatile] = ACTIONS(3178), + [anon_sym_restrict] = ACTIONS(3178), + [anon_sym___restrict__] = ACTIONS(3178), + [anon_sym__Atomic] = ACTIONS(3178), + [anon_sym__Noreturn] = ACTIONS(3178), + [anon_sym_noreturn] = ACTIONS(3178), + [anon_sym__Nonnull] = ACTIONS(3178), + [anon_sym_mutable] = ACTIONS(3178), + [anon_sym_constinit] = ACTIONS(3178), + [anon_sym_consteval] = ACTIONS(3178), + [anon_sym_alignas] = ACTIONS(3178), + [anon_sym__Alignas] = ACTIONS(3178), + [sym_primitive_type] = ACTIONS(3178), + [anon_sym_enum] = ACTIONS(3178), + [anon_sym_class] = ACTIONS(3178), + [anon_sym_struct] = ACTIONS(3178), + [anon_sym_union] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_switch] = ACTIONS(3178), + [anon_sym_case] = ACTIONS(3178), + [anon_sym_default] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_break] = ACTIONS(3178), + [anon_sym_continue] = ACTIONS(3178), + [anon_sym_goto] = ACTIONS(3178), + [anon_sym_not] = ACTIONS(3178), + [anon_sym_compl] = ACTIONS(3178), + [anon_sym_DASH_DASH] = ACTIONS(3180), + [anon_sym_PLUS_PLUS] = ACTIONS(3180), + [anon_sym_sizeof] = ACTIONS(3178), + [anon_sym___alignof__] = ACTIONS(3178), + [anon_sym___alignof] = ACTIONS(3178), + [anon_sym__alignof] = ACTIONS(3178), + [anon_sym_alignof] = ACTIONS(3178), + [anon_sym__Alignof] = ACTIONS(3178), + [anon_sym_offsetof] = ACTIONS(3178), + [anon_sym__Generic] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3178), + [anon_sym_asm] = ACTIONS(3178), + [anon_sym___asm__] = ACTIONS(3178), + [anon_sym___asm] = ACTIONS(3178), + [sym_number_literal] = ACTIONS(3180), + [anon_sym_L_SQUOTE] = ACTIONS(3180), + [anon_sym_u_SQUOTE] = ACTIONS(3180), + [anon_sym_U_SQUOTE] = ACTIONS(3180), + [anon_sym_u8_SQUOTE] = ACTIONS(3180), + [anon_sym_SQUOTE] = ACTIONS(3180), + [anon_sym_L_DQUOTE] = ACTIONS(3180), + [anon_sym_u_DQUOTE] = ACTIONS(3180), + [anon_sym_U_DQUOTE] = ACTIONS(3180), + [anon_sym_u8_DQUOTE] = ACTIONS(3180), + [anon_sym_DQUOTE] = ACTIONS(3180), + [sym_true] = ACTIONS(3178), + [sym_false] = ACTIONS(3178), + [anon_sym_NULL] = ACTIONS(3178), + [anon_sym_nullptr] = ACTIONS(3178), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3178), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_explicit] = ACTIONS(3178), + [anon_sym_export] = ACTIONS(3178), + [anon_sym_module] = ACTIONS(3178), + [anon_sym_import] = ACTIONS(3178), + [anon_sym_template] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_delete] = ACTIONS(3178), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_namespace] = ACTIONS(3178), + [anon_sym_static_assert] = ACTIONS(3178), + [anon_sym_concept] = ACTIONS(3178), + [anon_sym_co_return] = ACTIONS(3178), + [anon_sym_co_yield] = ACTIONS(3178), + [anon_sym_catch] = ACTIONS(3788), + [anon_sym_R_DQUOTE] = ACTIONS(3180), + [anon_sym_LR_DQUOTE] = ACTIONS(3180), + [anon_sym_uR_DQUOTE] = ACTIONS(3180), + [anon_sym_UR_DQUOTE] = ACTIONS(3180), + [anon_sym_u8R_DQUOTE] = ACTIONS(3180), + [anon_sym_co_await] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_requires] = ACTIONS(3178), + [anon_sym_CARET_CARET] = ACTIONS(3180), + [anon_sym_LBRACK_COLON] = ACTIONS(3180), + [sym_this] = ACTIONS(3178), }, - [STATE(753)] = { - [ts_builtin_sym_end] = ACTIONS(3932), - [sym_identifier] = ACTIONS(3930), - [aux_sym_preproc_include_token1] = ACTIONS(3930), - [aux_sym_preproc_def_token1] = ACTIONS(3930), - [aux_sym_preproc_if_token1] = ACTIONS(3930), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3930), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3930), - [sym_preproc_directive] = ACTIONS(3930), - [anon_sym_LPAREN2] = ACTIONS(3932), - [anon_sym_BANG] = ACTIONS(3932), - [anon_sym_TILDE] = ACTIONS(3932), - [anon_sym_DASH] = ACTIONS(3930), - [anon_sym_PLUS] = ACTIONS(3930), - [anon_sym_STAR] = ACTIONS(3932), - [anon_sym_AMP_AMP] = ACTIONS(3932), - [anon_sym_AMP] = ACTIONS(3930), - [anon_sym_SEMI] = ACTIONS(3932), - [anon_sym___extension__] = ACTIONS(3930), - [anon_sym_typedef] = ACTIONS(3930), - [anon_sym_virtual] = ACTIONS(3930), - [anon_sym_extern] = ACTIONS(3930), - [anon_sym___attribute__] = ACTIONS(3930), - [anon_sym___attribute] = ACTIONS(3930), - [anon_sym_using] = ACTIONS(3930), - [anon_sym_COLON_COLON] = ACTIONS(3932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3932), - [anon_sym___declspec] = ACTIONS(3930), - [anon_sym___based] = ACTIONS(3930), - [anon_sym___cdecl] = ACTIONS(3930), - [anon_sym___clrcall] = ACTIONS(3930), - [anon_sym___stdcall] = ACTIONS(3930), - [anon_sym___fastcall] = ACTIONS(3930), - [anon_sym___thiscall] = ACTIONS(3930), - [anon_sym___vectorcall] = ACTIONS(3930), - [anon_sym_LBRACE] = ACTIONS(3932), - [anon_sym_signed] = ACTIONS(3930), - [anon_sym_unsigned] = ACTIONS(3930), - [anon_sym_long] = ACTIONS(3930), - [anon_sym_short] = ACTIONS(3930), - [anon_sym_LBRACK] = ACTIONS(3930), - [anon_sym_static] = ACTIONS(3930), - [anon_sym_register] = ACTIONS(3930), - [anon_sym_inline] = ACTIONS(3930), - [anon_sym___inline] = ACTIONS(3930), - [anon_sym___inline__] = ACTIONS(3930), - [anon_sym___forceinline] = ACTIONS(3930), - [anon_sym_thread_local] = ACTIONS(3930), - [anon_sym___thread] = ACTIONS(3930), - [anon_sym_const] = ACTIONS(3930), - [anon_sym_constexpr] = ACTIONS(3930), - [anon_sym_volatile] = ACTIONS(3930), - [anon_sym_restrict] = ACTIONS(3930), - [anon_sym___restrict__] = ACTIONS(3930), - [anon_sym__Atomic] = ACTIONS(3930), - [anon_sym__Noreturn] = ACTIONS(3930), - [anon_sym_noreturn] = ACTIONS(3930), - [anon_sym__Nonnull] = ACTIONS(3930), - [anon_sym_mutable] = ACTIONS(3930), - [anon_sym_constinit] = ACTIONS(3930), - [anon_sym_consteval] = ACTIONS(3930), - [anon_sym_alignas] = ACTIONS(3930), - [anon_sym__Alignas] = ACTIONS(3930), - [sym_primitive_type] = ACTIONS(3930), - [anon_sym_enum] = ACTIONS(3930), - [anon_sym_class] = ACTIONS(3930), - [anon_sym_struct] = ACTIONS(3930), - [anon_sym_union] = ACTIONS(3930), - [anon_sym_if] = ACTIONS(3930), - [anon_sym_switch] = ACTIONS(3930), - [anon_sym_case] = ACTIONS(3930), - [anon_sym_default] = ACTIONS(3930), - [anon_sym_while] = ACTIONS(3930), - [anon_sym_do] = ACTIONS(3930), - [anon_sym_for] = ACTIONS(3930), - [anon_sym_return] = ACTIONS(3930), - [anon_sym_break] = ACTIONS(3930), - [anon_sym_continue] = ACTIONS(3930), - [anon_sym_goto] = ACTIONS(3930), - [anon_sym_not] = ACTIONS(3930), - [anon_sym_compl] = ACTIONS(3930), - [anon_sym_DASH_DASH] = ACTIONS(3932), - [anon_sym_PLUS_PLUS] = ACTIONS(3932), - [anon_sym_sizeof] = ACTIONS(3930), - [anon_sym___alignof__] = ACTIONS(3930), - [anon_sym___alignof] = ACTIONS(3930), - [anon_sym__alignof] = ACTIONS(3930), - [anon_sym_alignof] = ACTIONS(3930), - [anon_sym__Alignof] = ACTIONS(3930), - [anon_sym_offsetof] = ACTIONS(3930), - [anon_sym__Generic] = ACTIONS(3930), - [anon_sym_typename] = ACTIONS(3930), - [anon_sym_asm] = ACTIONS(3930), - [anon_sym___asm__] = ACTIONS(3930), - [anon_sym___asm] = ACTIONS(3930), - [sym_number_literal] = ACTIONS(3932), - [anon_sym_L_SQUOTE] = ACTIONS(3932), - [anon_sym_u_SQUOTE] = ACTIONS(3932), - [anon_sym_U_SQUOTE] = ACTIONS(3932), - [anon_sym_u8_SQUOTE] = ACTIONS(3932), - [anon_sym_SQUOTE] = ACTIONS(3932), - [anon_sym_L_DQUOTE] = ACTIONS(3932), - [anon_sym_u_DQUOTE] = ACTIONS(3932), - [anon_sym_U_DQUOTE] = ACTIONS(3932), - [anon_sym_u8_DQUOTE] = ACTIONS(3932), - [anon_sym_DQUOTE] = ACTIONS(3932), - [sym_true] = ACTIONS(3930), - [sym_false] = ACTIONS(3930), - [anon_sym_NULL] = ACTIONS(3930), - [anon_sym_nullptr] = ACTIONS(3930), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3930), - [anon_sym_decltype] = ACTIONS(3930), - [anon_sym_explicit] = ACTIONS(3930), - [anon_sym_export] = ACTIONS(3930), - [anon_sym_module] = ACTIONS(3930), - [anon_sym_import] = ACTIONS(3930), - [anon_sym_template] = ACTIONS(3930), - [anon_sym_operator] = ACTIONS(3930), - [anon_sym_try] = ACTIONS(3930), - [anon_sym_delete] = ACTIONS(3930), - [anon_sym_throw] = ACTIONS(3930), - [anon_sym_namespace] = ACTIONS(3930), - [anon_sym_static_assert] = ACTIONS(3930), - [anon_sym_concept] = ACTIONS(3930), - [anon_sym_co_return] = ACTIONS(3930), - [anon_sym_co_yield] = ACTIONS(3930), - [anon_sym_R_DQUOTE] = ACTIONS(3932), - [anon_sym_LR_DQUOTE] = ACTIONS(3932), - [anon_sym_uR_DQUOTE] = ACTIONS(3932), - [anon_sym_UR_DQUOTE] = ACTIONS(3932), - [anon_sym_u8R_DQUOTE] = ACTIONS(3932), - [anon_sym_co_await] = ACTIONS(3930), - [anon_sym_new] = ACTIONS(3930), - [anon_sym_requires] = ACTIONS(3930), - [anon_sym_CARET_CARET] = ACTIONS(3932), - [anon_sym_LBRACK_COLON] = ACTIONS(3932), - [sym_this] = ACTIONS(3930), + [STATE(627)] = { + [ts_builtin_sym_end] = ACTIONS(3652), + [sym_identifier] = ACTIONS(3650), + [aux_sym_preproc_include_token1] = ACTIONS(3650), + [aux_sym_preproc_def_token1] = ACTIONS(3650), + [aux_sym_preproc_if_token1] = ACTIONS(3650), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3650), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3650), + [sym_preproc_directive] = ACTIONS(3650), + [anon_sym_LPAREN2] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3652), + [anon_sym_TILDE] = ACTIONS(3652), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_STAR] = ACTIONS(3652), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_AMP] = ACTIONS(3650), + [anon_sym_SEMI] = ACTIONS(3652), + [anon_sym___extension__] = ACTIONS(3650), + [anon_sym_typedef] = ACTIONS(3650), + [anon_sym_virtual] = ACTIONS(3650), + [anon_sym_extern] = ACTIONS(3650), + [anon_sym___attribute__] = ACTIONS(3650), + [anon_sym___attribute] = ACTIONS(3650), + [anon_sym_using] = ACTIONS(3650), + [anon_sym_COLON_COLON] = ACTIONS(3652), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3652), + [anon_sym___declspec] = ACTIONS(3650), + [anon_sym___based] = ACTIONS(3650), + [anon_sym___cdecl] = ACTIONS(3650), + [anon_sym___clrcall] = ACTIONS(3650), + [anon_sym___stdcall] = ACTIONS(3650), + [anon_sym___fastcall] = ACTIONS(3650), + [anon_sym___thiscall] = ACTIONS(3650), + [anon_sym___vectorcall] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_signed] = ACTIONS(3650), + [anon_sym_unsigned] = ACTIONS(3650), + [anon_sym_long] = ACTIONS(3650), + [anon_sym_short] = ACTIONS(3650), + [anon_sym_LBRACK] = ACTIONS(3650), + [anon_sym_static] = ACTIONS(3650), + [anon_sym_register] = ACTIONS(3650), + [anon_sym_inline] = ACTIONS(3650), + [anon_sym___inline] = ACTIONS(3650), + [anon_sym___inline__] = ACTIONS(3650), + [anon_sym___forceinline] = ACTIONS(3650), + [anon_sym_thread_local] = ACTIONS(3650), + [anon_sym___thread] = ACTIONS(3650), + [anon_sym_const] = ACTIONS(3650), + [anon_sym_constexpr] = ACTIONS(3650), + [anon_sym_volatile] = ACTIONS(3650), + [anon_sym_restrict] = ACTIONS(3650), + [anon_sym___restrict__] = ACTIONS(3650), + [anon_sym__Atomic] = ACTIONS(3650), + [anon_sym__Noreturn] = ACTIONS(3650), + [anon_sym_noreturn] = ACTIONS(3650), + [anon_sym__Nonnull] = ACTIONS(3650), + [anon_sym_mutable] = ACTIONS(3650), + [anon_sym_constinit] = ACTIONS(3650), + [anon_sym_consteval] = ACTIONS(3650), + [anon_sym_alignas] = ACTIONS(3650), + [anon_sym__Alignas] = ACTIONS(3650), + [sym_primitive_type] = ACTIONS(3650), + [anon_sym_enum] = ACTIONS(3650), + [anon_sym_class] = ACTIONS(3650), + [anon_sym_struct] = ACTIONS(3650), + [anon_sym_union] = ACTIONS(3650), + [anon_sym_if] = ACTIONS(3650), + [anon_sym_else] = ACTIONS(3650), + [anon_sym_switch] = ACTIONS(3650), + [anon_sym_case] = ACTIONS(3650), + [anon_sym_default] = ACTIONS(3650), + [anon_sym_while] = ACTIONS(3650), + [anon_sym_do] = ACTIONS(3650), + [anon_sym_for] = ACTIONS(3650), + [anon_sym_return] = ACTIONS(3650), + [anon_sym_break] = ACTIONS(3650), + [anon_sym_continue] = ACTIONS(3650), + [anon_sym_goto] = ACTIONS(3650), + [anon_sym___try] = ACTIONS(3650), + [anon_sym___leave] = ACTIONS(3650), + [anon_sym_not] = ACTIONS(3650), + [anon_sym_compl] = ACTIONS(3650), + [anon_sym_DASH_DASH] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3652), + [anon_sym_sizeof] = ACTIONS(3650), + [anon_sym___alignof__] = ACTIONS(3650), + [anon_sym___alignof] = ACTIONS(3650), + [anon_sym__alignof] = ACTIONS(3650), + [anon_sym_alignof] = ACTIONS(3650), + [anon_sym__Alignof] = ACTIONS(3650), + [anon_sym_offsetof] = ACTIONS(3650), + [anon_sym__Generic] = ACTIONS(3650), + [anon_sym_typename] = ACTIONS(3650), + [anon_sym_asm] = ACTIONS(3650), + [anon_sym___asm__] = ACTIONS(3650), + [anon_sym___asm] = ACTIONS(3650), + [sym_number_literal] = ACTIONS(3652), + [anon_sym_L_SQUOTE] = ACTIONS(3652), + [anon_sym_u_SQUOTE] = ACTIONS(3652), + [anon_sym_U_SQUOTE] = ACTIONS(3652), + [anon_sym_u8_SQUOTE] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(3652), + [anon_sym_L_DQUOTE] = ACTIONS(3652), + [anon_sym_u_DQUOTE] = ACTIONS(3652), + [anon_sym_U_DQUOTE] = ACTIONS(3652), + [anon_sym_u8_DQUOTE] = ACTIONS(3652), + [anon_sym_DQUOTE] = ACTIONS(3652), + [sym_true] = ACTIONS(3650), + [sym_false] = ACTIONS(3650), + [anon_sym_NULL] = ACTIONS(3650), + [anon_sym_nullptr] = ACTIONS(3650), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3650), + [anon_sym_decltype] = ACTIONS(3650), + [anon_sym_explicit] = ACTIONS(3650), + [anon_sym_export] = ACTIONS(3650), + [anon_sym_module] = ACTIONS(3650), + [anon_sym_import] = ACTIONS(3650), + [anon_sym_template] = ACTIONS(3650), + [anon_sym_operator] = ACTIONS(3650), + [anon_sym_try] = ACTIONS(3650), + [anon_sym_delete] = ACTIONS(3650), + [anon_sym_throw] = ACTIONS(3650), + [anon_sym_namespace] = ACTIONS(3650), + [anon_sym_static_assert] = ACTIONS(3650), + [anon_sym_concept] = ACTIONS(3650), + [anon_sym_co_return] = ACTIONS(3650), + [anon_sym_co_yield] = ACTIONS(3650), + [anon_sym_R_DQUOTE] = ACTIONS(3652), + [anon_sym_LR_DQUOTE] = ACTIONS(3652), + [anon_sym_uR_DQUOTE] = ACTIONS(3652), + [anon_sym_UR_DQUOTE] = ACTIONS(3652), + [anon_sym_u8R_DQUOTE] = ACTIONS(3652), + [anon_sym_co_await] = ACTIONS(3650), + [anon_sym_new] = ACTIONS(3650), + [anon_sym_requires] = ACTIONS(3650), + [anon_sym_CARET_CARET] = ACTIONS(3652), + [anon_sym_LBRACK_COLON] = ACTIONS(3652), + [sym_this] = ACTIONS(3650), }, - [STATE(754)] = { - [ts_builtin_sym_end] = ACTIONS(3936), - [sym_identifier] = ACTIONS(3934), - [aux_sym_preproc_include_token1] = ACTIONS(3934), - [aux_sym_preproc_def_token1] = ACTIONS(3934), - [aux_sym_preproc_if_token1] = ACTIONS(3934), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3934), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3934), - [sym_preproc_directive] = ACTIONS(3934), - [anon_sym_LPAREN2] = ACTIONS(3936), - [anon_sym_BANG] = ACTIONS(3936), - [anon_sym_TILDE] = ACTIONS(3936), - [anon_sym_DASH] = ACTIONS(3934), - [anon_sym_PLUS] = ACTIONS(3934), - [anon_sym_STAR] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3936), - [anon_sym_AMP] = ACTIONS(3934), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym___extension__] = ACTIONS(3934), - [anon_sym_typedef] = ACTIONS(3934), - [anon_sym_virtual] = ACTIONS(3934), - [anon_sym_extern] = ACTIONS(3934), - [anon_sym___attribute__] = ACTIONS(3934), - [anon_sym___attribute] = ACTIONS(3934), - [anon_sym_using] = ACTIONS(3934), - [anon_sym_COLON_COLON] = ACTIONS(3936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3936), - [anon_sym___declspec] = ACTIONS(3934), - [anon_sym___based] = ACTIONS(3934), - [anon_sym___cdecl] = ACTIONS(3934), - [anon_sym___clrcall] = ACTIONS(3934), - [anon_sym___stdcall] = ACTIONS(3934), - [anon_sym___fastcall] = ACTIONS(3934), - [anon_sym___thiscall] = ACTIONS(3934), - [anon_sym___vectorcall] = ACTIONS(3934), - [anon_sym_LBRACE] = ACTIONS(3936), - [anon_sym_signed] = ACTIONS(3934), - [anon_sym_unsigned] = ACTIONS(3934), - [anon_sym_long] = ACTIONS(3934), - [anon_sym_short] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(3934), - [anon_sym_static] = ACTIONS(3934), - [anon_sym_register] = ACTIONS(3934), - [anon_sym_inline] = ACTIONS(3934), - [anon_sym___inline] = ACTIONS(3934), - [anon_sym___inline__] = ACTIONS(3934), - [anon_sym___forceinline] = ACTIONS(3934), - [anon_sym_thread_local] = ACTIONS(3934), - [anon_sym___thread] = ACTIONS(3934), - [anon_sym_const] = ACTIONS(3934), - [anon_sym_constexpr] = ACTIONS(3934), - [anon_sym_volatile] = ACTIONS(3934), - [anon_sym_restrict] = ACTIONS(3934), - [anon_sym___restrict__] = ACTIONS(3934), - [anon_sym__Atomic] = ACTIONS(3934), - [anon_sym__Noreturn] = ACTIONS(3934), - [anon_sym_noreturn] = ACTIONS(3934), - [anon_sym__Nonnull] = ACTIONS(3934), - [anon_sym_mutable] = ACTIONS(3934), - [anon_sym_constinit] = ACTIONS(3934), - [anon_sym_consteval] = ACTIONS(3934), - [anon_sym_alignas] = ACTIONS(3934), - [anon_sym__Alignas] = ACTIONS(3934), - [sym_primitive_type] = ACTIONS(3934), - [anon_sym_enum] = ACTIONS(3934), - [anon_sym_class] = ACTIONS(3934), - [anon_sym_struct] = ACTIONS(3934), - [anon_sym_union] = ACTIONS(3934), - [anon_sym_if] = ACTIONS(3934), - [anon_sym_switch] = ACTIONS(3934), - [anon_sym_case] = ACTIONS(3934), - [anon_sym_default] = ACTIONS(3934), - [anon_sym_while] = ACTIONS(3934), - [anon_sym_do] = ACTIONS(3934), - [anon_sym_for] = ACTIONS(3934), - [anon_sym_return] = ACTIONS(3934), - [anon_sym_break] = ACTIONS(3934), - [anon_sym_continue] = ACTIONS(3934), - [anon_sym_goto] = ACTIONS(3934), - [anon_sym_not] = ACTIONS(3934), - [anon_sym_compl] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(3936), - [anon_sym_PLUS_PLUS] = ACTIONS(3936), - [anon_sym_sizeof] = ACTIONS(3934), - [anon_sym___alignof__] = ACTIONS(3934), - [anon_sym___alignof] = ACTIONS(3934), - [anon_sym__alignof] = ACTIONS(3934), - [anon_sym_alignof] = ACTIONS(3934), - [anon_sym__Alignof] = ACTIONS(3934), - [anon_sym_offsetof] = ACTIONS(3934), - [anon_sym__Generic] = ACTIONS(3934), - [anon_sym_typename] = ACTIONS(3934), - [anon_sym_asm] = ACTIONS(3934), - [anon_sym___asm__] = ACTIONS(3934), - [anon_sym___asm] = ACTIONS(3934), - [sym_number_literal] = ACTIONS(3936), - [anon_sym_L_SQUOTE] = ACTIONS(3936), - [anon_sym_u_SQUOTE] = ACTIONS(3936), - [anon_sym_U_SQUOTE] = ACTIONS(3936), - [anon_sym_u8_SQUOTE] = ACTIONS(3936), - [anon_sym_SQUOTE] = ACTIONS(3936), - [anon_sym_L_DQUOTE] = ACTIONS(3936), - [anon_sym_u_DQUOTE] = ACTIONS(3936), - [anon_sym_U_DQUOTE] = ACTIONS(3936), - [anon_sym_u8_DQUOTE] = ACTIONS(3936), - [anon_sym_DQUOTE] = ACTIONS(3936), - [sym_true] = ACTIONS(3934), - [sym_false] = ACTIONS(3934), - [anon_sym_NULL] = ACTIONS(3934), - [anon_sym_nullptr] = ACTIONS(3934), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3934), - [anon_sym_decltype] = ACTIONS(3934), - [anon_sym_explicit] = ACTIONS(3934), - [anon_sym_export] = ACTIONS(3934), - [anon_sym_module] = ACTIONS(3934), - [anon_sym_import] = ACTIONS(3934), - [anon_sym_template] = ACTIONS(3934), - [anon_sym_operator] = ACTIONS(3934), - [anon_sym_try] = ACTIONS(3934), - [anon_sym_delete] = ACTIONS(3934), - [anon_sym_throw] = ACTIONS(3934), - [anon_sym_namespace] = ACTIONS(3934), - [anon_sym_static_assert] = ACTIONS(3934), - [anon_sym_concept] = ACTIONS(3934), - [anon_sym_co_return] = ACTIONS(3934), - [anon_sym_co_yield] = ACTIONS(3934), - [anon_sym_R_DQUOTE] = ACTIONS(3936), - [anon_sym_LR_DQUOTE] = ACTIONS(3936), - [anon_sym_uR_DQUOTE] = ACTIONS(3936), - [anon_sym_UR_DQUOTE] = ACTIONS(3936), - [anon_sym_u8R_DQUOTE] = ACTIONS(3936), - [anon_sym_co_await] = ACTIONS(3934), - [anon_sym_new] = ACTIONS(3934), - [anon_sym_requires] = ACTIONS(3934), - [anon_sym_CARET_CARET] = ACTIONS(3936), - [anon_sym_LBRACK_COLON] = ACTIONS(3936), - [sym_this] = ACTIONS(3934), + [STATE(628)] = { + [sym_identifier] = ACTIONS(3678), + [aux_sym_preproc_include_token1] = ACTIONS(3678), + [aux_sym_preproc_def_token1] = ACTIONS(3678), + [aux_sym_preproc_if_token1] = ACTIONS(3678), + [aux_sym_preproc_if_token2] = ACTIONS(3678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3678), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3678), + [sym_preproc_directive] = ACTIONS(3678), + [anon_sym_LPAREN2] = ACTIONS(3680), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3680), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym___extension__] = ACTIONS(3678), + [anon_sym_typedef] = ACTIONS(3678), + [anon_sym_virtual] = ACTIONS(3678), + [anon_sym_extern] = ACTIONS(3678), + [anon_sym___attribute__] = ACTIONS(3678), + [anon_sym___attribute] = ACTIONS(3678), + [anon_sym_using] = ACTIONS(3678), + [anon_sym_COLON_COLON] = ACTIONS(3680), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3680), + [anon_sym___declspec] = ACTIONS(3678), + [anon_sym___based] = ACTIONS(3678), + [anon_sym___cdecl] = ACTIONS(3678), + [anon_sym___clrcall] = ACTIONS(3678), + [anon_sym___stdcall] = ACTIONS(3678), + [anon_sym___fastcall] = ACTIONS(3678), + [anon_sym___thiscall] = ACTIONS(3678), + [anon_sym___vectorcall] = ACTIONS(3678), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_signed] = ACTIONS(3678), + [anon_sym_unsigned] = ACTIONS(3678), + [anon_sym_long] = ACTIONS(3678), + [anon_sym_short] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_static] = ACTIONS(3678), + [anon_sym_register] = ACTIONS(3678), + [anon_sym_inline] = ACTIONS(3678), + [anon_sym___inline] = ACTIONS(3678), + [anon_sym___inline__] = ACTIONS(3678), + [anon_sym___forceinline] = ACTIONS(3678), + [anon_sym_thread_local] = ACTIONS(3678), + [anon_sym___thread] = ACTIONS(3678), + [anon_sym_const] = ACTIONS(3678), + [anon_sym_constexpr] = ACTIONS(3678), + [anon_sym_volatile] = ACTIONS(3678), + [anon_sym_restrict] = ACTIONS(3678), + [anon_sym___restrict__] = ACTIONS(3678), + [anon_sym__Atomic] = ACTIONS(3678), + [anon_sym__Noreturn] = ACTIONS(3678), + [anon_sym_noreturn] = ACTIONS(3678), + [anon_sym__Nonnull] = ACTIONS(3678), + [anon_sym_mutable] = ACTIONS(3678), + [anon_sym_constinit] = ACTIONS(3678), + [anon_sym_consteval] = ACTIONS(3678), + [anon_sym_alignas] = ACTIONS(3678), + [anon_sym__Alignas] = ACTIONS(3678), + [sym_primitive_type] = ACTIONS(3678), + [anon_sym_enum] = ACTIONS(3678), + [anon_sym_class] = ACTIONS(3678), + [anon_sym_struct] = ACTIONS(3678), + [anon_sym_union] = ACTIONS(3678), + [anon_sym_if] = ACTIONS(3678), + [anon_sym_else] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_case] = ACTIONS(3678), + [anon_sym_default] = ACTIONS(3678), + [anon_sym_while] = ACTIONS(3678), + [anon_sym_do] = ACTIONS(3678), + [anon_sym_for] = ACTIONS(3678), + [anon_sym_return] = ACTIONS(3678), + [anon_sym_break] = ACTIONS(3678), + [anon_sym_continue] = ACTIONS(3678), + [anon_sym_goto] = ACTIONS(3678), + [anon_sym___try] = ACTIONS(3678), + [anon_sym___leave] = ACTIONS(3678), + [anon_sym_not] = ACTIONS(3678), + [anon_sym_compl] = ACTIONS(3678), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_sizeof] = ACTIONS(3678), + [anon_sym___alignof__] = ACTIONS(3678), + [anon_sym___alignof] = ACTIONS(3678), + [anon_sym__alignof] = ACTIONS(3678), + [anon_sym_alignof] = ACTIONS(3678), + [anon_sym__Alignof] = ACTIONS(3678), + [anon_sym_offsetof] = ACTIONS(3678), + [anon_sym__Generic] = ACTIONS(3678), + [anon_sym_typename] = ACTIONS(3678), + [anon_sym_asm] = ACTIONS(3678), + [anon_sym___asm__] = ACTIONS(3678), + [anon_sym___asm] = ACTIONS(3678), + [sym_number_literal] = ACTIONS(3680), + [anon_sym_L_SQUOTE] = ACTIONS(3680), + [anon_sym_u_SQUOTE] = ACTIONS(3680), + [anon_sym_U_SQUOTE] = ACTIONS(3680), + [anon_sym_u8_SQUOTE] = ACTIONS(3680), + [anon_sym_SQUOTE] = ACTIONS(3680), + [anon_sym_L_DQUOTE] = ACTIONS(3680), + [anon_sym_u_DQUOTE] = ACTIONS(3680), + [anon_sym_U_DQUOTE] = ACTIONS(3680), + [anon_sym_u8_DQUOTE] = ACTIONS(3680), + [anon_sym_DQUOTE] = ACTIONS(3680), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [anon_sym_NULL] = ACTIONS(3678), + [anon_sym_nullptr] = ACTIONS(3678), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3678), + [anon_sym_decltype] = ACTIONS(3678), + [anon_sym_explicit] = ACTIONS(3678), + [anon_sym_export] = ACTIONS(3678), + [anon_sym_module] = ACTIONS(3678), + [anon_sym_import] = ACTIONS(3678), + [anon_sym_template] = ACTIONS(3678), + [anon_sym_operator] = ACTIONS(3678), + [anon_sym_try] = ACTIONS(3678), + [anon_sym_delete] = ACTIONS(3678), + [anon_sym_throw] = ACTIONS(3678), + [anon_sym_namespace] = ACTIONS(3678), + [anon_sym_static_assert] = ACTIONS(3678), + [anon_sym_concept] = ACTIONS(3678), + [anon_sym_co_return] = ACTIONS(3678), + [anon_sym_co_yield] = ACTIONS(3678), + [anon_sym_R_DQUOTE] = ACTIONS(3680), + [anon_sym_LR_DQUOTE] = ACTIONS(3680), + [anon_sym_uR_DQUOTE] = ACTIONS(3680), + [anon_sym_UR_DQUOTE] = ACTIONS(3680), + [anon_sym_u8R_DQUOTE] = ACTIONS(3680), + [anon_sym_co_await] = ACTIONS(3678), + [anon_sym_new] = ACTIONS(3678), + [anon_sym_requires] = ACTIONS(3678), + [anon_sym_CARET_CARET] = ACTIONS(3680), + [anon_sym_LBRACK_COLON] = ACTIONS(3680), + [sym_this] = ACTIONS(3678), }, - [STATE(755)] = { - [ts_builtin_sym_end] = ACTIONS(3940), - [sym_identifier] = ACTIONS(3938), - [aux_sym_preproc_include_token1] = ACTIONS(3938), - [aux_sym_preproc_def_token1] = ACTIONS(3938), - [aux_sym_preproc_if_token1] = ACTIONS(3938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3938), - [sym_preproc_directive] = ACTIONS(3938), - [anon_sym_LPAREN2] = ACTIONS(3940), - [anon_sym_BANG] = ACTIONS(3940), - [anon_sym_TILDE] = ACTIONS(3940), - [anon_sym_DASH] = ACTIONS(3938), - [anon_sym_PLUS] = ACTIONS(3938), - [anon_sym_STAR] = ACTIONS(3940), - [anon_sym_AMP_AMP] = ACTIONS(3940), - [anon_sym_AMP] = ACTIONS(3938), - [anon_sym_SEMI] = ACTIONS(3940), - [anon_sym___extension__] = ACTIONS(3938), - [anon_sym_typedef] = ACTIONS(3938), - [anon_sym_virtual] = ACTIONS(3938), - [anon_sym_extern] = ACTIONS(3938), - [anon_sym___attribute__] = ACTIONS(3938), - [anon_sym___attribute] = ACTIONS(3938), - [anon_sym_using] = ACTIONS(3938), - [anon_sym_COLON_COLON] = ACTIONS(3940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3940), - [anon_sym___declspec] = ACTIONS(3938), - [anon_sym___based] = ACTIONS(3938), - [anon_sym___cdecl] = ACTIONS(3938), - [anon_sym___clrcall] = ACTIONS(3938), - [anon_sym___stdcall] = ACTIONS(3938), - [anon_sym___fastcall] = ACTIONS(3938), - [anon_sym___thiscall] = ACTIONS(3938), - [anon_sym___vectorcall] = ACTIONS(3938), - [anon_sym_LBRACE] = ACTIONS(3940), - [anon_sym_signed] = ACTIONS(3938), - [anon_sym_unsigned] = ACTIONS(3938), - [anon_sym_long] = ACTIONS(3938), - [anon_sym_short] = ACTIONS(3938), - [anon_sym_LBRACK] = ACTIONS(3938), - [anon_sym_static] = ACTIONS(3938), - [anon_sym_register] = ACTIONS(3938), - [anon_sym_inline] = ACTIONS(3938), - [anon_sym___inline] = ACTIONS(3938), - [anon_sym___inline__] = ACTIONS(3938), - [anon_sym___forceinline] = ACTIONS(3938), - [anon_sym_thread_local] = ACTIONS(3938), - [anon_sym___thread] = ACTIONS(3938), - [anon_sym_const] = ACTIONS(3938), - [anon_sym_constexpr] = ACTIONS(3938), - [anon_sym_volatile] = ACTIONS(3938), - [anon_sym_restrict] = ACTIONS(3938), - [anon_sym___restrict__] = ACTIONS(3938), - [anon_sym__Atomic] = ACTIONS(3938), - [anon_sym__Noreturn] = ACTIONS(3938), - [anon_sym_noreturn] = ACTIONS(3938), - [anon_sym__Nonnull] = ACTIONS(3938), - [anon_sym_mutable] = ACTIONS(3938), - [anon_sym_constinit] = ACTIONS(3938), - [anon_sym_consteval] = ACTIONS(3938), - [anon_sym_alignas] = ACTIONS(3938), - [anon_sym__Alignas] = ACTIONS(3938), - [sym_primitive_type] = ACTIONS(3938), - [anon_sym_enum] = ACTIONS(3938), - [anon_sym_class] = ACTIONS(3938), - [anon_sym_struct] = ACTIONS(3938), - [anon_sym_union] = ACTIONS(3938), - [anon_sym_if] = ACTIONS(3938), - [anon_sym_switch] = ACTIONS(3938), - [anon_sym_case] = ACTIONS(3938), - [anon_sym_default] = ACTIONS(3938), - [anon_sym_while] = ACTIONS(3938), - [anon_sym_do] = ACTIONS(3938), - [anon_sym_for] = ACTIONS(3938), - [anon_sym_return] = ACTIONS(3938), - [anon_sym_break] = ACTIONS(3938), - [anon_sym_continue] = ACTIONS(3938), - [anon_sym_goto] = ACTIONS(3938), - [anon_sym_not] = ACTIONS(3938), - [anon_sym_compl] = ACTIONS(3938), - [anon_sym_DASH_DASH] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(3940), - [anon_sym_sizeof] = ACTIONS(3938), - [anon_sym___alignof__] = ACTIONS(3938), - [anon_sym___alignof] = ACTIONS(3938), - [anon_sym__alignof] = ACTIONS(3938), - [anon_sym_alignof] = ACTIONS(3938), - [anon_sym__Alignof] = ACTIONS(3938), - [anon_sym_offsetof] = ACTIONS(3938), - [anon_sym__Generic] = ACTIONS(3938), - [anon_sym_typename] = ACTIONS(3938), - [anon_sym_asm] = ACTIONS(3938), - [anon_sym___asm__] = ACTIONS(3938), - [anon_sym___asm] = ACTIONS(3938), - [sym_number_literal] = ACTIONS(3940), - [anon_sym_L_SQUOTE] = ACTIONS(3940), - [anon_sym_u_SQUOTE] = ACTIONS(3940), - [anon_sym_U_SQUOTE] = ACTIONS(3940), - [anon_sym_u8_SQUOTE] = ACTIONS(3940), - [anon_sym_SQUOTE] = ACTIONS(3940), - [anon_sym_L_DQUOTE] = ACTIONS(3940), - [anon_sym_u_DQUOTE] = ACTIONS(3940), - [anon_sym_U_DQUOTE] = ACTIONS(3940), - [anon_sym_u8_DQUOTE] = ACTIONS(3940), - [anon_sym_DQUOTE] = ACTIONS(3940), - [sym_true] = ACTIONS(3938), - [sym_false] = ACTIONS(3938), - [anon_sym_NULL] = ACTIONS(3938), - [anon_sym_nullptr] = ACTIONS(3938), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3938), - [anon_sym_decltype] = ACTIONS(3938), - [anon_sym_explicit] = ACTIONS(3938), - [anon_sym_export] = ACTIONS(3938), - [anon_sym_module] = ACTIONS(3938), - [anon_sym_import] = ACTIONS(3938), - [anon_sym_template] = ACTIONS(3938), - [anon_sym_operator] = ACTIONS(3938), - [anon_sym_try] = ACTIONS(3938), - [anon_sym_delete] = ACTIONS(3938), - [anon_sym_throw] = ACTIONS(3938), - [anon_sym_namespace] = ACTIONS(3938), - [anon_sym_static_assert] = ACTIONS(3938), - [anon_sym_concept] = ACTIONS(3938), - [anon_sym_co_return] = ACTIONS(3938), - [anon_sym_co_yield] = ACTIONS(3938), - [anon_sym_R_DQUOTE] = ACTIONS(3940), - [anon_sym_LR_DQUOTE] = ACTIONS(3940), - [anon_sym_uR_DQUOTE] = ACTIONS(3940), - [anon_sym_UR_DQUOTE] = ACTIONS(3940), - [anon_sym_u8R_DQUOTE] = ACTIONS(3940), - [anon_sym_co_await] = ACTIONS(3938), - [anon_sym_new] = ACTIONS(3938), - [anon_sym_requires] = ACTIONS(3938), - [anon_sym_CARET_CARET] = ACTIONS(3940), - [anon_sym_LBRACK_COLON] = ACTIONS(3940), - [sym_this] = ACTIONS(3938), + [STATE(629)] = { + [ts_builtin_sym_end] = ACTIONS(3624), + [sym_identifier] = ACTIONS(3622), + [aux_sym_preproc_include_token1] = ACTIONS(3622), + [aux_sym_preproc_def_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), + [sym_preproc_directive] = ACTIONS(3622), + [anon_sym_LPAREN2] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_STAR] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_AMP] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym___extension__] = ACTIONS(3622), + [anon_sym_typedef] = ACTIONS(3622), + [anon_sym_virtual] = ACTIONS(3622), + [anon_sym_extern] = ACTIONS(3622), + [anon_sym___attribute__] = ACTIONS(3622), + [anon_sym___attribute] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_COLON_COLON] = ACTIONS(3624), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), + [anon_sym___declspec] = ACTIONS(3622), + [anon_sym___based] = ACTIONS(3622), + [anon_sym___cdecl] = ACTIONS(3622), + [anon_sym___clrcall] = ACTIONS(3622), + [anon_sym___stdcall] = ACTIONS(3622), + [anon_sym___fastcall] = ACTIONS(3622), + [anon_sym___thiscall] = ACTIONS(3622), + [anon_sym___vectorcall] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_signed] = ACTIONS(3622), + [anon_sym_unsigned] = ACTIONS(3622), + [anon_sym_long] = ACTIONS(3622), + [anon_sym_short] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_register] = ACTIONS(3622), + [anon_sym_inline] = ACTIONS(3622), + [anon_sym___inline] = ACTIONS(3622), + [anon_sym___inline__] = ACTIONS(3622), + [anon_sym___forceinline] = ACTIONS(3622), + [anon_sym_thread_local] = ACTIONS(3622), + [anon_sym___thread] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_constexpr] = ACTIONS(3622), + [anon_sym_volatile] = ACTIONS(3622), + [anon_sym_restrict] = ACTIONS(3622), + [anon_sym___restrict__] = ACTIONS(3622), + [anon_sym__Atomic] = ACTIONS(3622), + [anon_sym__Noreturn] = ACTIONS(3622), + [anon_sym_noreturn] = ACTIONS(3622), + [anon_sym__Nonnull] = ACTIONS(3622), + [anon_sym_mutable] = ACTIONS(3622), + [anon_sym_constinit] = ACTIONS(3622), + [anon_sym_consteval] = ACTIONS(3622), + [anon_sym_alignas] = ACTIONS(3622), + [anon_sym__Alignas] = ACTIONS(3622), + [sym_primitive_type] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_struct] = ACTIONS(3622), + [anon_sym_union] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_case] = ACTIONS(3622), + [anon_sym_default] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_goto] = ACTIONS(3622), + [anon_sym___try] = ACTIONS(3622), + [anon_sym___leave] = ACTIONS(3622), + [anon_sym_not] = ACTIONS(3622), + [anon_sym_compl] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_sizeof] = ACTIONS(3622), + [anon_sym___alignof__] = ACTIONS(3622), + [anon_sym___alignof] = ACTIONS(3622), + [anon_sym__alignof] = ACTIONS(3622), + [anon_sym_alignof] = ACTIONS(3622), + [anon_sym__Alignof] = ACTIONS(3622), + [anon_sym_offsetof] = ACTIONS(3622), + [anon_sym__Generic] = ACTIONS(3622), + [anon_sym_typename] = ACTIONS(3622), + [anon_sym_asm] = ACTIONS(3622), + [anon_sym___asm__] = ACTIONS(3622), + [anon_sym___asm] = ACTIONS(3622), + [sym_number_literal] = ACTIONS(3624), + [anon_sym_L_SQUOTE] = ACTIONS(3624), + [anon_sym_u_SQUOTE] = ACTIONS(3624), + [anon_sym_U_SQUOTE] = ACTIONS(3624), + [anon_sym_u8_SQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_L_DQUOTE] = ACTIONS(3624), + [anon_sym_u_DQUOTE] = ACTIONS(3624), + [anon_sym_U_DQUOTE] = ACTIONS(3624), + [anon_sym_u8_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [anon_sym_NULL] = ACTIONS(3622), + [anon_sym_nullptr] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3622), + [anon_sym_decltype] = ACTIONS(3622), + [anon_sym_explicit] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_template] = ACTIONS(3622), + [anon_sym_operator] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_static_assert] = ACTIONS(3622), + [anon_sym_concept] = ACTIONS(3622), + [anon_sym_co_return] = ACTIONS(3622), + [anon_sym_co_yield] = ACTIONS(3622), + [anon_sym_R_DQUOTE] = ACTIONS(3624), + [anon_sym_LR_DQUOTE] = ACTIONS(3624), + [anon_sym_uR_DQUOTE] = ACTIONS(3624), + [anon_sym_UR_DQUOTE] = ACTIONS(3624), + [anon_sym_u8R_DQUOTE] = ACTIONS(3624), + [anon_sym_co_await] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_requires] = ACTIONS(3622), + [anon_sym_CARET_CARET] = ACTIONS(3624), + [anon_sym_LBRACK_COLON] = ACTIONS(3624), + [sym_this] = ACTIONS(3622), }, - [STATE(756)] = { - [ts_builtin_sym_end] = ACTIONS(3944), - [sym_identifier] = ACTIONS(3942), - [aux_sym_preproc_include_token1] = ACTIONS(3942), - [aux_sym_preproc_def_token1] = ACTIONS(3942), - [aux_sym_preproc_if_token1] = ACTIONS(3942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3942), - [sym_preproc_directive] = ACTIONS(3942), - [anon_sym_LPAREN2] = ACTIONS(3944), - [anon_sym_BANG] = ACTIONS(3944), - [anon_sym_TILDE] = ACTIONS(3944), - [anon_sym_DASH] = ACTIONS(3942), - [anon_sym_PLUS] = ACTIONS(3942), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_AMP_AMP] = ACTIONS(3944), - [anon_sym_AMP] = ACTIONS(3942), - [anon_sym_SEMI] = ACTIONS(3944), - [anon_sym___extension__] = ACTIONS(3942), - [anon_sym_typedef] = ACTIONS(3942), - [anon_sym_virtual] = ACTIONS(3942), - [anon_sym_extern] = ACTIONS(3942), - [anon_sym___attribute__] = ACTIONS(3942), - [anon_sym___attribute] = ACTIONS(3942), - [anon_sym_using] = ACTIONS(3942), - [anon_sym_COLON_COLON] = ACTIONS(3944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3944), - [anon_sym___declspec] = ACTIONS(3942), - [anon_sym___based] = ACTIONS(3942), - [anon_sym___cdecl] = ACTIONS(3942), - [anon_sym___clrcall] = ACTIONS(3942), - [anon_sym___stdcall] = ACTIONS(3942), - [anon_sym___fastcall] = ACTIONS(3942), - [anon_sym___thiscall] = ACTIONS(3942), - [anon_sym___vectorcall] = ACTIONS(3942), - [anon_sym_LBRACE] = ACTIONS(3944), - [anon_sym_signed] = ACTIONS(3942), - [anon_sym_unsigned] = ACTIONS(3942), - [anon_sym_long] = ACTIONS(3942), - [anon_sym_short] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(3942), - [anon_sym_static] = ACTIONS(3942), - [anon_sym_register] = ACTIONS(3942), - [anon_sym_inline] = ACTIONS(3942), - [anon_sym___inline] = ACTIONS(3942), - [anon_sym___inline__] = ACTIONS(3942), - [anon_sym___forceinline] = ACTIONS(3942), - [anon_sym_thread_local] = ACTIONS(3942), - [anon_sym___thread] = ACTIONS(3942), - [anon_sym_const] = ACTIONS(3942), - [anon_sym_constexpr] = ACTIONS(3942), - [anon_sym_volatile] = ACTIONS(3942), - [anon_sym_restrict] = ACTIONS(3942), - [anon_sym___restrict__] = ACTIONS(3942), - [anon_sym__Atomic] = ACTIONS(3942), - [anon_sym__Noreturn] = ACTIONS(3942), - [anon_sym_noreturn] = ACTIONS(3942), - [anon_sym__Nonnull] = ACTIONS(3942), - [anon_sym_mutable] = ACTIONS(3942), - [anon_sym_constinit] = ACTIONS(3942), - [anon_sym_consteval] = ACTIONS(3942), - [anon_sym_alignas] = ACTIONS(3942), - [anon_sym__Alignas] = ACTIONS(3942), - [sym_primitive_type] = ACTIONS(3942), - [anon_sym_enum] = ACTIONS(3942), - [anon_sym_class] = ACTIONS(3942), - [anon_sym_struct] = ACTIONS(3942), - [anon_sym_union] = ACTIONS(3942), - [anon_sym_if] = ACTIONS(3942), - [anon_sym_switch] = ACTIONS(3942), - [anon_sym_case] = ACTIONS(3942), - [anon_sym_default] = ACTIONS(3942), - [anon_sym_while] = ACTIONS(3942), - [anon_sym_do] = ACTIONS(3942), - [anon_sym_for] = ACTIONS(3942), - [anon_sym_return] = ACTIONS(3942), - [anon_sym_break] = ACTIONS(3942), - [anon_sym_continue] = ACTIONS(3942), - [anon_sym_goto] = ACTIONS(3942), - [anon_sym_not] = ACTIONS(3942), - [anon_sym_compl] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(3944), - [anon_sym_PLUS_PLUS] = ACTIONS(3944), - [anon_sym_sizeof] = ACTIONS(3942), - [anon_sym___alignof__] = ACTIONS(3942), - [anon_sym___alignof] = ACTIONS(3942), - [anon_sym__alignof] = ACTIONS(3942), - [anon_sym_alignof] = ACTIONS(3942), - [anon_sym__Alignof] = ACTIONS(3942), - [anon_sym_offsetof] = ACTIONS(3942), - [anon_sym__Generic] = ACTIONS(3942), - [anon_sym_typename] = ACTIONS(3942), - [anon_sym_asm] = ACTIONS(3942), - [anon_sym___asm__] = ACTIONS(3942), - [anon_sym___asm] = ACTIONS(3942), - [sym_number_literal] = ACTIONS(3944), - [anon_sym_L_SQUOTE] = ACTIONS(3944), - [anon_sym_u_SQUOTE] = ACTIONS(3944), - [anon_sym_U_SQUOTE] = ACTIONS(3944), - [anon_sym_u8_SQUOTE] = ACTIONS(3944), - [anon_sym_SQUOTE] = ACTIONS(3944), - [anon_sym_L_DQUOTE] = ACTIONS(3944), - [anon_sym_u_DQUOTE] = ACTIONS(3944), - [anon_sym_U_DQUOTE] = ACTIONS(3944), - [anon_sym_u8_DQUOTE] = ACTIONS(3944), - [anon_sym_DQUOTE] = ACTIONS(3944), - [sym_true] = ACTIONS(3942), - [sym_false] = ACTIONS(3942), - [anon_sym_NULL] = ACTIONS(3942), - [anon_sym_nullptr] = ACTIONS(3942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3942), - [anon_sym_decltype] = ACTIONS(3942), - [anon_sym_explicit] = ACTIONS(3942), - [anon_sym_export] = ACTIONS(3942), - [anon_sym_module] = ACTIONS(3942), - [anon_sym_import] = ACTIONS(3942), - [anon_sym_template] = ACTIONS(3942), - [anon_sym_operator] = ACTIONS(3942), - [anon_sym_try] = ACTIONS(3942), - [anon_sym_delete] = ACTIONS(3942), - [anon_sym_throw] = ACTIONS(3942), - [anon_sym_namespace] = ACTIONS(3942), - [anon_sym_static_assert] = ACTIONS(3942), - [anon_sym_concept] = ACTIONS(3942), - [anon_sym_co_return] = ACTIONS(3942), - [anon_sym_co_yield] = ACTIONS(3942), - [anon_sym_R_DQUOTE] = ACTIONS(3944), - [anon_sym_LR_DQUOTE] = ACTIONS(3944), - [anon_sym_uR_DQUOTE] = ACTIONS(3944), - [anon_sym_UR_DQUOTE] = ACTIONS(3944), - [anon_sym_u8R_DQUOTE] = ACTIONS(3944), - [anon_sym_co_await] = ACTIONS(3942), - [anon_sym_new] = ACTIONS(3942), - [anon_sym_requires] = ACTIONS(3942), - [anon_sym_CARET_CARET] = ACTIONS(3944), - [anon_sym_LBRACK_COLON] = ACTIONS(3944), - [sym_this] = ACTIONS(3942), + [STATE(630)] = { + [sym_identifier] = ACTIONS(3588), + [aux_sym_preproc_include_token1] = ACTIONS(3588), + [aux_sym_preproc_def_token1] = ACTIONS(3588), + [aux_sym_preproc_if_token1] = ACTIONS(3588), + [aux_sym_preproc_if_token2] = ACTIONS(3588), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3588), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3588), + [sym_preproc_directive] = ACTIONS(3588), + [anon_sym_LPAREN2] = ACTIONS(3590), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3588), + [anon_sym_STAR] = ACTIONS(3590), + [anon_sym_AMP_AMP] = ACTIONS(3590), + [anon_sym_AMP] = ACTIONS(3588), + [anon_sym_SEMI] = ACTIONS(3590), + [anon_sym___extension__] = ACTIONS(3588), + [anon_sym_typedef] = ACTIONS(3588), + [anon_sym_virtual] = ACTIONS(3588), + [anon_sym_extern] = ACTIONS(3588), + [anon_sym___attribute__] = ACTIONS(3588), + [anon_sym___attribute] = ACTIONS(3588), + [anon_sym_using] = ACTIONS(3588), + [anon_sym_COLON_COLON] = ACTIONS(3590), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3590), + [anon_sym___declspec] = ACTIONS(3588), + [anon_sym___based] = ACTIONS(3588), + [anon_sym___cdecl] = ACTIONS(3588), + [anon_sym___clrcall] = ACTIONS(3588), + [anon_sym___stdcall] = ACTIONS(3588), + [anon_sym___fastcall] = ACTIONS(3588), + [anon_sym___thiscall] = ACTIONS(3588), + [anon_sym___vectorcall] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3590), + [anon_sym_signed] = ACTIONS(3588), + [anon_sym_unsigned] = ACTIONS(3588), + [anon_sym_long] = ACTIONS(3588), + [anon_sym_short] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3588), + [anon_sym_static] = ACTIONS(3588), + [anon_sym_register] = ACTIONS(3588), + [anon_sym_inline] = ACTIONS(3588), + [anon_sym___inline] = ACTIONS(3588), + [anon_sym___inline__] = ACTIONS(3588), + [anon_sym___forceinline] = ACTIONS(3588), + [anon_sym_thread_local] = ACTIONS(3588), + [anon_sym___thread] = ACTIONS(3588), + [anon_sym_const] = ACTIONS(3588), + [anon_sym_constexpr] = ACTIONS(3588), + [anon_sym_volatile] = ACTIONS(3588), + [anon_sym_restrict] = ACTIONS(3588), + [anon_sym___restrict__] = ACTIONS(3588), + [anon_sym__Atomic] = ACTIONS(3588), + [anon_sym__Noreturn] = ACTIONS(3588), + [anon_sym_noreturn] = ACTIONS(3588), + [anon_sym__Nonnull] = ACTIONS(3588), + [anon_sym_mutable] = ACTIONS(3588), + [anon_sym_constinit] = ACTIONS(3588), + [anon_sym_consteval] = ACTIONS(3588), + [anon_sym_alignas] = ACTIONS(3588), + [anon_sym__Alignas] = ACTIONS(3588), + [sym_primitive_type] = ACTIONS(3588), + [anon_sym_enum] = ACTIONS(3588), + [anon_sym_class] = ACTIONS(3588), + [anon_sym_struct] = ACTIONS(3588), + [anon_sym_union] = ACTIONS(3588), + [anon_sym_if] = ACTIONS(3588), + [anon_sym_else] = ACTIONS(3588), + [anon_sym_switch] = ACTIONS(3588), + [anon_sym_case] = ACTIONS(3588), + [anon_sym_default] = ACTIONS(3588), + [anon_sym_while] = ACTIONS(3588), + [anon_sym_do] = ACTIONS(3588), + [anon_sym_for] = ACTIONS(3588), + [anon_sym_return] = ACTIONS(3588), + [anon_sym_break] = ACTIONS(3588), + [anon_sym_continue] = ACTIONS(3588), + [anon_sym_goto] = ACTIONS(3588), + [anon_sym___try] = ACTIONS(3588), + [anon_sym___leave] = ACTIONS(3588), + [anon_sym_not] = ACTIONS(3588), + [anon_sym_compl] = ACTIONS(3588), + [anon_sym_DASH_DASH] = ACTIONS(3590), + [anon_sym_PLUS_PLUS] = ACTIONS(3590), + [anon_sym_sizeof] = ACTIONS(3588), + [anon_sym___alignof__] = ACTIONS(3588), + [anon_sym___alignof] = ACTIONS(3588), + [anon_sym__alignof] = ACTIONS(3588), + [anon_sym_alignof] = ACTIONS(3588), + [anon_sym__Alignof] = ACTIONS(3588), + [anon_sym_offsetof] = ACTIONS(3588), + [anon_sym__Generic] = ACTIONS(3588), + [anon_sym_typename] = ACTIONS(3588), + [anon_sym_asm] = ACTIONS(3588), + [anon_sym___asm__] = ACTIONS(3588), + [anon_sym___asm] = ACTIONS(3588), + [sym_number_literal] = ACTIONS(3590), + [anon_sym_L_SQUOTE] = ACTIONS(3590), + [anon_sym_u_SQUOTE] = ACTIONS(3590), + [anon_sym_U_SQUOTE] = ACTIONS(3590), + [anon_sym_u8_SQUOTE] = ACTIONS(3590), + [anon_sym_SQUOTE] = ACTIONS(3590), + [anon_sym_L_DQUOTE] = ACTIONS(3590), + [anon_sym_u_DQUOTE] = ACTIONS(3590), + [anon_sym_U_DQUOTE] = ACTIONS(3590), + [anon_sym_u8_DQUOTE] = ACTIONS(3590), + [anon_sym_DQUOTE] = ACTIONS(3590), + [sym_true] = ACTIONS(3588), + [sym_false] = ACTIONS(3588), + [anon_sym_NULL] = ACTIONS(3588), + [anon_sym_nullptr] = ACTIONS(3588), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3588), + [anon_sym_decltype] = ACTIONS(3588), + [anon_sym_explicit] = ACTIONS(3588), + [anon_sym_export] = ACTIONS(3588), + [anon_sym_module] = ACTIONS(3588), + [anon_sym_import] = ACTIONS(3588), + [anon_sym_template] = ACTIONS(3588), + [anon_sym_operator] = ACTIONS(3588), + [anon_sym_try] = ACTIONS(3588), + [anon_sym_delete] = ACTIONS(3588), + [anon_sym_throw] = ACTIONS(3588), + [anon_sym_namespace] = ACTIONS(3588), + [anon_sym_static_assert] = ACTIONS(3588), + [anon_sym_concept] = ACTIONS(3588), + [anon_sym_co_return] = ACTIONS(3588), + [anon_sym_co_yield] = ACTIONS(3588), + [anon_sym_R_DQUOTE] = ACTIONS(3590), + [anon_sym_LR_DQUOTE] = ACTIONS(3590), + [anon_sym_uR_DQUOTE] = ACTIONS(3590), + [anon_sym_UR_DQUOTE] = ACTIONS(3590), + [anon_sym_u8R_DQUOTE] = ACTIONS(3590), + [anon_sym_co_await] = ACTIONS(3588), + [anon_sym_new] = ACTIONS(3588), + [anon_sym_requires] = ACTIONS(3588), + [anon_sym_CARET_CARET] = ACTIONS(3590), + [anon_sym_LBRACK_COLON] = ACTIONS(3590), + [sym_this] = ACTIONS(3588), }, - [STATE(757)] = { - [ts_builtin_sym_end] = ACTIONS(3948), - [sym_identifier] = ACTIONS(3946), - [aux_sym_preproc_include_token1] = ACTIONS(3946), - [aux_sym_preproc_def_token1] = ACTIONS(3946), - [aux_sym_preproc_if_token1] = ACTIONS(3946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3946), - [sym_preproc_directive] = ACTIONS(3946), - [anon_sym_LPAREN2] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_TILDE] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3946), - [anon_sym_PLUS] = ACTIONS(3946), - [anon_sym_STAR] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym___extension__] = ACTIONS(3946), - [anon_sym_typedef] = ACTIONS(3946), - [anon_sym_virtual] = ACTIONS(3946), - [anon_sym_extern] = ACTIONS(3946), - [anon_sym___attribute__] = ACTIONS(3946), - [anon_sym___attribute] = ACTIONS(3946), - [anon_sym_using] = ACTIONS(3946), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3948), - [anon_sym___declspec] = ACTIONS(3946), - [anon_sym___based] = ACTIONS(3946), - [anon_sym___cdecl] = ACTIONS(3946), - [anon_sym___clrcall] = ACTIONS(3946), - [anon_sym___stdcall] = ACTIONS(3946), - [anon_sym___fastcall] = ACTIONS(3946), - [anon_sym___thiscall] = ACTIONS(3946), - [anon_sym___vectorcall] = ACTIONS(3946), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_signed] = ACTIONS(3946), - [anon_sym_unsigned] = ACTIONS(3946), - [anon_sym_long] = ACTIONS(3946), - [anon_sym_short] = ACTIONS(3946), - [anon_sym_LBRACK] = ACTIONS(3946), - [anon_sym_static] = ACTIONS(3946), - [anon_sym_register] = ACTIONS(3946), - [anon_sym_inline] = ACTIONS(3946), - [anon_sym___inline] = ACTIONS(3946), - [anon_sym___inline__] = ACTIONS(3946), - [anon_sym___forceinline] = ACTIONS(3946), - [anon_sym_thread_local] = ACTIONS(3946), - [anon_sym___thread] = ACTIONS(3946), - [anon_sym_const] = ACTIONS(3946), - [anon_sym_constexpr] = ACTIONS(3946), - [anon_sym_volatile] = ACTIONS(3946), - [anon_sym_restrict] = ACTIONS(3946), - [anon_sym___restrict__] = ACTIONS(3946), - [anon_sym__Atomic] = ACTIONS(3946), - [anon_sym__Noreturn] = ACTIONS(3946), - [anon_sym_noreturn] = ACTIONS(3946), - [anon_sym__Nonnull] = ACTIONS(3946), - [anon_sym_mutable] = ACTIONS(3946), - [anon_sym_constinit] = ACTIONS(3946), - [anon_sym_consteval] = ACTIONS(3946), - [anon_sym_alignas] = ACTIONS(3946), - [anon_sym__Alignas] = ACTIONS(3946), - [sym_primitive_type] = ACTIONS(3946), - [anon_sym_enum] = ACTIONS(3946), - [anon_sym_class] = ACTIONS(3946), - [anon_sym_struct] = ACTIONS(3946), - [anon_sym_union] = ACTIONS(3946), - [anon_sym_if] = ACTIONS(3946), - [anon_sym_switch] = ACTIONS(3946), - [anon_sym_case] = ACTIONS(3946), - [anon_sym_default] = ACTIONS(3946), - [anon_sym_while] = ACTIONS(3946), - [anon_sym_do] = ACTIONS(3946), - [anon_sym_for] = ACTIONS(3946), - [anon_sym_return] = ACTIONS(3946), - [anon_sym_break] = ACTIONS(3946), - [anon_sym_continue] = ACTIONS(3946), - [anon_sym_goto] = ACTIONS(3946), - [anon_sym_not] = ACTIONS(3946), - [anon_sym_compl] = ACTIONS(3946), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_sizeof] = ACTIONS(3946), - [anon_sym___alignof__] = ACTIONS(3946), - [anon_sym___alignof] = ACTIONS(3946), - [anon_sym__alignof] = ACTIONS(3946), - [anon_sym_alignof] = ACTIONS(3946), - [anon_sym__Alignof] = ACTIONS(3946), - [anon_sym_offsetof] = ACTIONS(3946), - [anon_sym__Generic] = ACTIONS(3946), - [anon_sym_typename] = ACTIONS(3946), - [anon_sym_asm] = ACTIONS(3946), - [anon_sym___asm__] = ACTIONS(3946), - [anon_sym___asm] = ACTIONS(3946), - [sym_number_literal] = ACTIONS(3948), - [anon_sym_L_SQUOTE] = ACTIONS(3948), - [anon_sym_u_SQUOTE] = ACTIONS(3948), - [anon_sym_U_SQUOTE] = ACTIONS(3948), - [anon_sym_u8_SQUOTE] = ACTIONS(3948), - [anon_sym_SQUOTE] = ACTIONS(3948), - [anon_sym_L_DQUOTE] = ACTIONS(3948), - [anon_sym_u_DQUOTE] = ACTIONS(3948), - [anon_sym_U_DQUOTE] = ACTIONS(3948), - [anon_sym_u8_DQUOTE] = ACTIONS(3948), - [anon_sym_DQUOTE] = ACTIONS(3948), - [sym_true] = ACTIONS(3946), - [sym_false] = ACTIONS(3946), - [anon_sym_NULL] = ACTIONS(3946), - [anon_sym_nullptr] = ACTIONS(3946), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3946), - [anon_sym_decltype] = ACTIONS(3946), - [anon_sym_explicit] = ACTIONS(3946), - [anon_sym_export] = ACTIONS(3946), - [anon_sym_module] = ACTIONS(3946), - [anon_sym_import] = ACTIONS(3946), - [anon_sym_template] = ACTIONS(3946), - [anon_sym_operator] = ACTIONS(3946), - [anon_sym_try] = ACTIONS(3946), - [anon_sym_delete] = ACTIONS(3946), - [anon_sym_throw] = ACTIONS(3946), - [anon_sym_namespace] = ACTIONS(3946), - [anon_sym_static_assert] = ACTIONS(3946), - [anon_sym_concept] = ACTIONS(3946), - [anon_sym_co_return] = ACTIONS(3946), - [anon_sym_co_yield] = ACTIONS(3946), - [anon_sym_R_DQUOTE] = ACTIONS(3948), - [anon_sym_LR_DQUOTE] = ACTIONS(3948), - [anon_sym_uR_DQUOTE] = ACTIONS(3948), - [anon_sym_UR_DQUOTE] = ACTIONS(3948), - [anon_sym_u8R_DQUOTE] = ACTIONS(3948), - [anon_sym_co_await] = ACTIONS(3946), - [anon_sym_new] = ACTIONS(3946), - [anon_sym_requires] = ACTIONS(3946), - [anon_sym_CARET_CARET] = ACTIONS(3948), - [anon_sym_LBRACK_COLON] = ACTIONS(3948), - [sym_this] = ACTIONS(3946), + [STATE(631)] = { + [sym_identifier] = ACTIONS(3600), + [aux_sym_preproc_include_token1] = ACTIONS(3600), + [aux_sym_preproc_def_token1] = ACTIONS(3600), + [aux_sym_preproc_if_token1] = ACTIONS(3600), + [aux_sym_preproc_if_token2] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), + [sym_preproc_directive] = ACTIONS(3600), + [anon_sym_LPAREN2] = ACTIONS(3602), + [anon_sym_BANG] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3600), + [anon_sym_STAR] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_AMP] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym___extension__] = ACTIONS(3600), + [anon_sym_typedef] = ACTIONS(3600), + [anon_sym_virtual] = ACTIONS(3600), + [anon_sym_extern] = ACTIONS(3600), + [anon_sym___attribute__] = ACTIONS(3600), + [anon_sym___attribute] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), + [anon_sym___declspec] = ACTIONS(3600), + [anon_sym___based] = ACTIONS(3600), + [anon_sym___cdecl] = ACTIONS(3600), + [anon_sym___clrcall] = ACTIONS(3600), + [anon_sym___stdcall] = ACTIONS(3600), + [anon_sym___fastcall] = ACTIONS(3600), + [anon_sym___thiscall] = ACTIONS(3600), + [anon_sym___vectorcall] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_signed] = ACTIONS(3600), + [anon_sym_unsigned] = ACTIONS(3600), + [anon_sym_long] = ACTIONS(3600), + [anon_sym_short] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_register] = ACTIONS(3600), + [anon_sym_inline] = ACTIONS(3600), + [anon_sym___inline] = ACTIONS(3600), + [anon_sym___inline__] = ACTIONS(3600), + [anon_sym___forceinline] = ACTIONS(3600), + [anon_sym_thread_local] = ACTIONS(3600), + [anon_sym___thread] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_constexpr] = ACTIONS(3600), + [anon_sym_volatile] = ACTIONS(3600), + [anon_sym_restrict] = ACTIONS(3600), + [anon_sym___restrict__] = ACTIONS(3600), + [anon_sym__Atomic] = ACTIONS(3600), + [anon_sym__Noreturn] = ACTIONS(3600), + [anon_sym_noreturn] = ACTIONS(3600), + [anon_sym__Nonnull] = ACTIONS(3600), + [anon_sym_mutable] = ACTIONS(3600), + [anon_sym_constinit] = ACTIONS(3600), + [anon_sym_consteval] = ACTIONS(3600), + [anon_sym_alignas] = ACTIONS(3600), + [anon_sym__Alignas] = ACTIONS(3600), + [sym_primitive_type] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_struct] = ACTIONS(3600), + [anon_sym_union] = ACTIONS(3600), + [anon_sym_if] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3600), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_case] = ACTIONS(3600), + [anon_sym_default] = ACTIONS(3600), + [anon_sym_while] = ACTIONS(3600), + [anon_sym_do] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3600), + [anon_sym_return] = ACTIONS(3600), + [anon_sym_break] = ACTIONS(3600), + [anon_sym_continue] = ACTIONS(3600), + [anon_sym_goto] = ACTIONS(3600), + [anon_sym___try] = ACTIONS(3600), + [anon_sym___leave] = ACTIONS(3600), + [anon_sym_not] = ACTIONS(3600), + [anon_sym_compl] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3602), + [anon_sym_PLUS_PLUS] = ACTIONS(3602), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(3600), + [anon_sym___alignof] = ACTIONS(3600), + [anon_sym__alignof] = ACTIONS(3600), + [anon_sym_alignof] = ACTIONS(3600), + [anon_sym__Alignof] = ACTIONS(3600), + [anon_sym_offsetof] = ACTIONS(3600), + [anon_sym__Generic] = ACTIONS(3600), + [anon_sym_typename] = ACTIONS(3600), + [anon_sym_asm] = ACTIONS(3600), + [anon_sym___asm__] = ACTIONS(3600), + [anon_sym___asm] = ACTIONS(3600), + [sym_number_literal] = ACTIONS(3602), + [anon_sym_L_SQUOTE] = ACTIONS(3602), + [anon_sym_u_SQUOTE] = ACTIONS(3602), + [anon_sym_U_SQUOTE] = ACTIONS(3602), + [anon_sym_u8_SQUOTE] = ACTIONS(3602), + [anon_sym_SQUOTE] = ACTIONS(3602), + [anon_sym_L_DQUOTE] = ACTIONS(3602), + [anon_sym_u_DQUOTE] = ACTIONS(3602), + [anon_sym_U_DQUOTE] = ACTIONS(3602), + [anon_sym_u8_DQUOTE] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [sym_true] = ACTIONS(3600), + [sym_false] = ACTIONS(3600), + [anon_sym_NULL] = ACTIONS(3600), + [anon_sym_nullptr] = ACTIONS(3600), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3600), + [anon_sym_decltype] = ACTIONS(3600), + [anon_sym_explicit] = ACTIONS(3600), + [anon_sym_export] = ACTIONS(3600), + [anon_sym_module] = ACTIONS(3600), + [anon_sym_import] = ACTIONS(3600), + [anon_sym_template] = ACTIONS(3600), + [anon_sym_operator] = ACTIONS(3600), + [anon_sym_try] = ACTIONS(3600), + [anon_sym_delete] = ACTIONS(3600), + [anon_sym_throw] = ACTIONS(3600), + [anon_sym_namespace] = ACTIONS(3600), + [anon_sym_static_assert] = ACTIONS(3600), + [anon_sym_concept] = ACTIONS(3600), + [anon_sym_co_return] = ACTIONS(3600), + [anon_sym_co_yield] = ACTIONS(3600), + [anon_sym_R_DQUOTE] = ACTIONS(3602), + [anon_sym_LR_DQUOTE] = ACTIONS(3602), + [anon_sym_uR_DQUOTE] = ACTIONS(3602), + [anon_sym_UR_DQUOTE] = ACTIONS(3602), + [anon_sym_u8R_DQUOTE] = ACTIONS(3602), + [anon_sym_co_await] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3600), + [anon_sym_requires] = ACTIONS(3600), + [anon_sym_CARET_CARET] = ACTIONS(3602), + [anon_sym_LBRACK_COLON] = ACTIONS(3602), + [sym_this] = ACTIONS(3600), }, - [STATE(758)] = { - [ts_builtin_sym_end] = ACTIONS(3952), - [sym_identifier] = ACTIONS(3950), - [aux_sym_preproc_include_token1] = ACTIONS(3950), - [aux_sym_preproc_def_token1] = ACTIONS(3950), - [aux_sym_preproc_if_token1] = ACTIONS(3950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), - [sym_preproc_directive] = ACTIONS(3950), - [anon_sym_LPAREN2] = ACTIONS(3952), - [anon_sym_BANG] = ACTIONS(3952), - [anon_sym_TILDE] = ACTIONS(3952), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_STAR] = ACTIONS(3952), - [anon_sym_AMP_AMP] = ACTIONS(3952), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_SEMI] = ACTIONS(3952), - [anon_sym___extension__] = ACTIONS(3950), - [anon_sym_typedef] = ACTIONS(3950), - [anon_sym_virtual] = ACTIONS(3950), - [anon_sym_extern] = ACTIONS(3950), - [anon_sym___attribute__] = ACTIONS(3950), - [anon_sym___attribute] = ACTIONS(3950), - [anon_sym_using] = ACTIONS(3950), - [anon_sym_COLON_COLON] = ACTIONS(3952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), - [anon_sym___declspec] = ACTIONS(3950), - [anon_sym___based] = ACTIONS(3950), - [anon_sym___cdecl] = ACTIONS(3950), - [anon_sym___clrcall] = ACTIONS(3950), - [anon_sym___stdcall] = ACTIONS(3950), - [anon_sym___fastcall] = ACTIONS(3950), - [anon_sym___thiscall] = ACTIONS(3950), - [anon_sym___vectorcall] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3952), - [anon_sym_signed] = ACTIONS(3950), - [anon_sym_unsigned] = ACTIONS(3950), - [anon_sym_long] = ACTIONS(3950), - [anon_sym_short] = ACTIONS(3950), - [anon_sym_LBRACK] = ACTIONS(3950), - [anon_sym_static] = ACTIONS(3950), - [anon_sym_register] = ACTIONS(3950), - [anon_sym_inline] = ACTIONS(3950), - [anon_sym___inline] = ACTIONS(3950), - [anon_sym___inline__] = ACTIONS(3950), - [anon_sym___forceinline] = ACTIONS(3950), - [anon_sym_thread_local] = ACTIONS(3950), - [anon_sym___thread] = ACTIONS(3950), - [anon_sym_const] = ACTIONS(3950), - [anon_sym_constexpr] = ACTIONS(3950), - [anon_sym_volatile] = ACTIONS(3950), - [anon_sym_restrict] = ACTIONS(3950), - [anon_sym___restrict__] = ACTIONS(3950), - [anon_sym__Atomic] = ACTIONS(3950), - [anon_sym__Noreturn] = ACTIONS(3950), - [anon_sym_noreturn] = ACTIONS(3950), - [anon_sym__Nonnull] = ACTIONS(3950), - [anon_sym_mutable] = ACTIONS(3950), - [anon_sym_constinit] = ACTIONS(3950), - [anon_sym_consteval] = ACTIONS(3950), - [anon_sym_alignas] = ACTIONS(3950), - [anon_sym__Alignas] = ACTIONS(3950), - [sym_primitive_type] = ACTIONS(3950), - [anon_sym_enum] = ACTIONS(3950), - [anon_sym_class] = ACTIONS(3950), - [anon_sym_struct] = ACTIONS(3950), - [anon_sym_union] = ACTIONS(3950), - [anon_sym_if] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_case] = ACTIONS(3950), - [anon_sym_default] = ACTIONS(3950), - [anon_sym_while] = ACTIONS(3950), - [anon_sym_do] = ACTIONS(3950), - [anon_sym_for] = ACTIONS(3950), - [anon_sym_return] = ACTIONS(3950), - [anon_sym_break] = ACTIONS(3950), - [anon_sym_continue] = ACTIONS(3950), - [anon_sym_goto] = ACTIONS(3950), - [anon_sym_not] = ACTIONS(3950), - [anon_sym_compl] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3952), - [anon_sym_PLUS_PLUS] = ACTIONS(3952), - [anon_sym_sizeof] = ACTIONS(3950), - [anon_sym___alignof__] = ACTIONS(3950), - [anon_sym___alignof] = ACTIONS(3950), - [anon_sym__alignof] = ACTIONS(3950), - [anon_sym_alignof] = ACTIONS(3950), - [anon_sym__Alignof] = ACTIONS(3950), - [anon_sym_offsetof] = ACTIONS(3950), - [anon_sym__Generic] = ACTIONS(3950), - [anon_sym_typename] = ACTIONS(3950), - [anon_sym_asm] = ACTIONS(3950), - [anon_sym___asm__] = ACTIONS(3950), - [anon_sym___asm] = ACTIONS(3950), - [sym_number_literal] = ACTIONS(3952), - [anon_sym_L_SQUOTE] = ACTIONS(3952), - [anon_sym_u_SQUOTE] = ACTIONS(3952), - [anon_sym_U_SQUOTE] = ACTIONS(3952), - [anon_sym_u8_SQUOTE] = ACTIONS(3952), - [anon_sym_SQUOTE] = ACTIONS(3952), - [anon_sym_L_DQUOTE] = ACTIONS(3952), - [anon_sym_u_DQUOTE] = ACTIONS(3952), - [anon_sym_U_DQUOTE] = ACTIONS(3952), - [anon_sym_u8_DQUOTE] = ACTIONS(3952), - [anon_sym_DQUOTE] = ACTIONS(3952), - [sym_true] = ACTIONS(3950), - [sym_false] = ACTIONS(3950), - [anon_sym_NULL] = ACTIONS(3950), - [anon_sym_nullptr] = ACTIONS(3950), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3950), - [anon_sym_decltype] = ACTIONS(3950), - [anon_sym_explicit] = ACTIONS(3950), - [anon_sym_export] = ACTIONS(3950), - [anon_sym_module] = ACTIONS(3950), - [anon_sym_import] = ACTIONS(3950), - [anon_sym_template] = ACTIONS(3950), - [anon_sym_operator] = ACTIONS(3950), - [anon_sym_try] = ACTIONS(3950), - [anon_sym_delete] = ACTIONS(3950), - [anon_sym_throw] = ACTIONS(3950), - [anon_sym_namespace] = ACTIONS(3950), - [anon_sym_static_assert] = ACTIONS(3950), - [anon_sym_concept] = ACTIONS(3950), - [anon_sym_co_return] = ACTIONS(3950), - [anon_sym_co_yield] = ACTIONS(3950), - [anon_sym_R_DQUOTE] = ACTIONS(3952), - [anon_sym_LR_DQUOTE] = ACTIONS(3952), - [anon_sym_uR_DQUOTE] = ACTIONS(3952), - [anon_sym_UR_DQUOTE] = ACTIONS(3952), - [anon_sym_u8R_DQUOTE] = ACTIONS(3952), - [anon_sym_co_await] = ACTIONS(3950), - [anon_sym_new] = ACTIONS(3950), - [anon_sym_requires] = ACTIONS(3950), - [anon_sym_CARET_CARET] = ACTIONS(3952), - [anon_sym_LBRACK_COLON] = ACTIONS(3952), - [sym_this] = ACTIONS(3950), - }, - [STATE(759)] = { - [ts_builtin_sym_end] = ACTIONS(3956), - [sym_identifier] = ACTIONS(3954), - [aux_sym_preproc_include_token1] = ACTIONS(3954), - [aux_sym_preproc_def_token1] = ACTIONS(3954), - [aux_sym_preproc_if_token1] = ACTIONS(3954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3954), - [sym_preproc_directive] = ACTIONS(3954), - [anon_sym_LPAREN2] = ACTIONS(3956), - [anon_sym_BANG] = ACTIONS(3956), - [anon_sym_TILDE] = ACTIONS(3956), - [anon_sym_DASH] = ACTIONS(3954), - [anon_sym_PLUS] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3956), - [anon_sym_AMP_AMP] = ACTIONS(3956), - [anon_sym_AMP] = ACTIONS(3954), - [anon_sym_SEMI] = ACTIONS(3956), - [anon_sym___extension__] = ACTIONS(3954), - [anon_sym_typedef] = ACTIONS(3954), - [anon_sym_virtual] = ACTIONS(3954), - [anon_sym_extern] = ACTIONS(3954), - [anon_sym___attribute__] = ACTIONS(3954), - [anon_sym___attribute] = ACTIONS(3954), - [anon_sym_using] = ACTIONS(3954), - [anon_sym_COLON_COLON] = ACTIONS(3956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3956), - [anon_sym___declspec] = ACTIONS(3954), - [anon_sym___based] = ACTIONS(3954), - [anon_sym___cdecl] = ACTIONS(3954), - [anon_sym___clrcall] = ACTIONS(3954), - [anon_sym___stdcall] = ACTIONS(3954), - [anon_sym___fastcall] = ACTIONS(3954), - [anon_sym___thiscall] = ACTIONS(3954), - [anon_sym___vectorcall] = ACTIONS(3954), - [anon_sym_LBRACE] = ACTIONS(3956), - [anon_sym_signed] = ACTIONS(3954), - [anon_sym_unsigned] = ACTIONS(3954), - [anon_sym_long] = ACTIONS(3954), - [anon_sym_short] = ACTIONS(3954), - [anon_sym_LBRACK] = ACTIONS(3954), - [anon_sym_static] = ACTIONS(3954), - [anon_sym_register] = ACTIONS(3954), - [anon_sym_inline] = ACTIONS(3954), - [anon_sym___inline] = ACTIONS(3954), - [anon_sym___inline__] = ACTIONS(3954), - [anon_sym___forceinline] = ACTIONS(3954), - [anon_sym_thread_local] = ACTIONS(3954), - [anon_sym___thread] = ACTIONS(3954), - [anon_sym_const] = ACTIONS(3954), - [anon_sym_constexpr] = ACTIONS(3954), - [anon_sym_volatile] = ACTIONS(3954), - [anon_sym_restrict] = ACTIONS(3954), - [anon_sym___restrict__] = ACTIONS(3954), - [anon_sym__Atomic] = ACTIONS(3954), - [anon_sym__Noreturn] = ACTIONS(3954), - [anon_sym_noreturn] = ACTIONS(3954), - [anon_sym__Nonnull] = ACTIONS(3954), - [anon_sym_mutable] = ACTIONS(3954), - [anon_sym_constinit] = ACTIONS(3954), - [anon_sym_consteval] = ACTIONS(3954), - [anon_sym_alignas] = ACTIONS(3954), - [anon_sym__Alignas] = ACTIONS(3954), - [sym_primitive_type] = ACTIONS(3954), - [anon_sym_enum] = ACTIONS(3954), - [anon_sym_class] = ACTIONS(3954), - [anon_sym_struct] = ACTIONS(3954), - [anon_sym_union] = ACTIONS(3954), - [anon_sym_if] = ACTIONS(3954), - [anon_sym_switch] = ACTIONS(3954), - [anon_sym_case] = ACTIONS(3954), - [anon_sym_default] = ACTIONS(3954), - [anon_sym_while] = ACTIONS(3954), - [anon_sym_do] = ACTIONS(3954), - [anon_sym_for] = ACTIONS(3954), - [anon_sym_return] = ACTIONS(3954), - [anon_sym_break] = ACTIONS(3954), - [anon_sym_continue] = ACTIONS(3954), - [anon_sym_goto] = ACTIONS(3954), - [anon_sym_not] = ACTIONS(3954), - [anon_sym_compl] = ACTIONS(3954), - [anon_sym_DASH_DASH] = ACTIONS(3956), - [anon_sym_PLUS_PLUS] = ACTIONS(3956), - [anon_sym_sizeof] = ACTIONS(3954), - [anon_sym___alignof__] = ACTIONS(3954), - [anon_sym___alignof] = ACTIONS(3954), - [anon_sym__alignof] = ACTIONS(3954), - [anon_sym_alignof] = ACTIONS(3954), - [anon_sym__Alignof] = ACTIONS(3954), - [anon_sym_offsetof] = ACTIONS(3954), - [anon_sym__Generic] = ACTIONS(3954), - [anon_sym_typename] = ACTIONS(3954), - [anon_sym_asm] = ACTIONS(3954), - [anon_sym___asm__] = ACTIONS(3954), - [anon_sym___asm] = ACTIONS(3954), - [sym_number_literal] = ACTIONS(3956), - [anon_sym_L_SQUOTE] = ACTIONS(3956), - [anon_sym_u_SQUOTE] = ACTIONS(3956), - [anon_sym_U_SQUOTE] = ACTIONS(3956), - [anon_sym_u8_SQUOTE] = ACTIONS(3956), - [anon_sym_SQUOTE] = ACTIONS(3956), - [anon_sym_L_DQUOTE] = ACTIONS(3956), - [anon_sym_u_DQUOTE] = ACTIONS(3956), - [anon_sym_U_DQUOTE] = ACTIONS(3956), - [anon_sym_u8_DQUOTE] = ACTIONS(3956), - [anon_sym_DQUOTE] = ACTIONS(3956), - [sym_true] = ACTIONS(3954), - [sym_false] = ACTIONS(3954), - [anon_sym_NULL] = ACTIONS(3954), - [anon_sym_nullptr] = ACTIONS(3954), + [STATE(632)] = { + [ts_builtin_sym_end] = ACTIONS(3610), + [sym_identifier] = ACTIONS(3608), + [aux_sym_preproc_include_token1] = ACTIONS(3608), + [aux_sym_preproc_def_token1] = ACTIONS(3608), + [aux_sym_preproc_if_token1] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3608), + [sym_preproc_directive] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3610), + [anon_sym_AMP_AMP] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_SEMI] = ACTIONS(3610), + [anon_sym___extension__] = ACTIONS(3608), + [anon_sym_typedef] = ACTIONS(3608), + [anon_sym_virtual] = ACTIONS(3608), + [anon_sym_extern] = ACTIONS(3608), + [anon_sym___attribute__] = ACTIONS(3608), + [anon_sym___attribute] = ACTIONS(3608), + [anon_sym_using] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3610), + [anon_sym___declspec] = ACTIONS(3608), + [anon_sym___based] = ACTIONS(3608), + [anon_sym___cdecl] = ACTIONS(3608), + [anon_sym___clrcall] = ACTIONS(3608), + [anon_sym___stdcall] = ACTIONS(3608), + [anon_sym___fastcall] = ACTIONS(3608), + [anon_sym___thiscall] = ACTIONS(3608), + [anon_sym___vectorcall] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(3610), + [anon_sym_signed] = ACTIONS(3608), + [anon_sym_unsigned] = ACTIONS(3608), + [anon_sym_long] = ACTIONS(3608), + [anon_sym_short] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_static] = ACTIONS(3608), + [anon_sym_register] = ACTIONS(3608), + [anon_sym_inline] = ACTIONS(3608), + [anon_sym___inline] = ACTIONS(3608), + [anon_sym___inline__] = ACTIONS(3608), + [anon_sym___forceinline] = ACTIONS(3608), + [anon_sym_thread_local] = ACTIONS(3608), + [anon_sym___thread] = ACTIONS(3608), + [anon_sym_const] = ACTIONS(3608), + [anon_sym_constexpr] = ACTIONS(3608), + [anon_sym_volatile] = ACTIONS(3608), + [anon_sym_restrict] = ACTIONS(3608), + [anon_sym___restrict__] = ACTIONS(3608), + [anon_sym__Atomic] = ACTIONS(3608), + [anon_sym__Noreturn] = ACTIONS(3608), + [anon_sym_noreturn] = ACTIONS(3608), + [anon_sym__Nonnull] = ACTIONS(3608), + [anon_sym_mutable] = ACTIONS(3608), + [anon_sym_constinit] = ACTIONS(3608), + [anon_sym_consteval] = ACTIONS(3608), + [anon_sym_alignas] = ACTIONS(3608), + [anon_sym__Alignas] = ACTIONS(3608), + [sym_primitive_type] = ACTIONS(3608), + [anon_sym_enum] = ACTIONS(3608), + [anon_sym_class] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3608), + [anon_sym_union] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_else] = ACTIONS(3608), + [anon_sym_switch] = ACTIONS(3608), + [anon_sym_case] = ACTIONS(3608), + [anon_sym_default] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_break] = ACTIONS(3608), + [anon_sym_continue] = ACTIONS(3608), + [anon_sym_goto] = ACTIONS(3608), + [anon_sym___try] = ACTIONS(3608), + [anon_sym___leave] = ACTIONS(3608), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(3610), + [anon_sym_PLUS_PLUS] = ACTIONS(3610), + [anon_sym_sizeof] = ACTIONS(3608), + [anon_sym___alignof__] = ACTIONS(3608), + [anon_sym___alignof] = ACTIONS(3608), + [anon_sym__alignof] = ACTIONS(3608), + [anon_sym_alignof] = ACTIONS(3608), + [anon_sym__Alignof] = ACTIONS(3608), + [anon_sym_offsetof] = ACTIONS(3608), + [anon_sym__Generic] = ACTIONS(3608), + [anon_sym_typename] = ACTIONS(3608), + [anon_sym_asm] = ACTIONS(3608), + [anon_sym___asm__] = ACTIONS(3608), + [anon_sym___asm] = ACTIONS(3608), + [sym_number_literal] = ACTIONS(3610), + [anon_sym_L_SQUOTE] = ACTIONS(3610), + [anon_sym_u_SQUOTE] = ACTIONS(3610), + [anon_sym_U_SQUOTE] = ACTIONS(3610), + [anon_sym_u8_SQUOTE] = ACTIONS(3610), + [anon_sym_SQUOTE] = ACTIONS(3610), + [anon_sym_L_DQUOTE] = ACTIONS(3610), + [anon_sym_u_DQUOTE] = ACTIONS(3610), + [anon_sym_U_DQUOTE] = ACTIONS(3610), + [anon_sym_u8_DQUOTE] = ACTIONS(3610), + [anon_sym_DQUOTE] = ACTIONS(3610), + [sym_true] = ACTIONS(3608), + [sym_false] = ACTIONS(3608), + [anon_sym_NULL] = ACTIONS(3608), + [anon_sym_nullptr] = ACTIONS(3608), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3954), - [anon_sym_decltype] = ACTIONS(3954), - [anon_sym_explicit] = ACTIONS(3954), - [anon_sym_export] = ACTIONS(3954), - [anon_sym_module] = ACTIONS(3954), - [anon_sym_import] = ACTIONS(3954), - [anon_sym_template] = ACTIONS(3954), - [anon_sym_operator] = ACTIONS(3954), - [anon_sym_try] = ACTIONS(3954), - [anon_sym_delete] = ACTIONS(3954), - [anon_sym_throw] = ACTIONS(3954), - [anon_sym_namespace] = ACTIONS(3954), - [anon_sym_static_assert] = ACTIONS(3954), - [anon_sym_concept] = ACTIONS(3954), - [anon_sym_co_return] = ACTIONS(3954), - [anon_sym_co_yield] = ACTIONS(3954), - [anon_sym_R_DQUOTE] = ACTIONS(3956), - [anon_sym_LR_DQUOTE] = ACTIONS(3956), - [anon_sym_uR_DQUOTE] = ACTIONS(3956), - [anon_sym_UR_DQUOTE] = ACTIONS(3956), - [anon_sym_u8R_DQUOTE] = ACTIONS(3956), - [anon_sym_co_await] = ACTIONS(3954), - [anon_sym_new] = ACTIONS(3954), - [anon_sym_requires] = ACTIONS(3954), - [anon_sym_CARET_CARET] = ACTIONS(3956), - [anon_sym_LBRACK_COLON] = ACTIONS(3956), - [sym_this] = ACTIONS(3954), + [sym_auto] = ACTIONS(3608), + [anon_sym_decltype] = ACTIONS(3608), + [anon_sym_explicit] = ACTIONS(3608), + [anon_sym_export] = ACTIONS(3608), + [anon_sym_module] = ACTIONS(3608), + [anon_sym_import] = ACTIONS(3608), + [anon_sym_template] = ACTIONS(3608), + [anon_sym_operator] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_delete] = ACTIONS(3608), + [anon_sym_throw] = ACTIONS(3608), + [anon_sym_namespace] = ACTIONS(3608), + [anon_sym_static_assert] = ACTIONS(3608), + [anon_sym_concept] = ACTIONS(3608), + [anon_sym_co_return] = ACTIONS(3608), + [anon_sym_co_yield] = ACTIONS(3608), + [anon_sym_R_DQUOTE] = ACTIONS(3610), + [anon_sym_LR_DQUOTE] = ACTIONS(3610), + [anon_sym_uR_DQUOTE] = ACTIONS(3610), + [anon_sym_UR_DQUOTE] = ACTIONS(3610), + [anon_sym_u8R_DQUOTE] = ACTIONS(3610), + [anon_sym_co_await] = ACTIONS(3608), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_requires] = ACTIONS(3608), + [anon_sym_CARET_CARET] = ACTIONS(3610), + [anon_sym_LBRACK_COLON] = ACTIONS(3610), + [sym_this] = ACTIONS(3608), }, - [STATE(760)] = { - [ts_builtin_sym_end] = ACTIONS(4166), - [sym_identifier] = ACTIONS(4164), - [aux_sym_preproc_include_token1] = ACTIONS(4164), - [aux_sym_preproc_def_token1] = ACTIONS(4164), - [aux_sym_preproc_if_token1] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4164), - [anon_sym_LPAREN2] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4166), - [anon_sym_TILDE] = ACTIONS(4166), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_AMP] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym___extension__] = ACTIONS(4164), - [anon_sym_typedef] = ACTIONS(4164), - [anon_sym_virtual] = ACTIONS(4164), - [anon_sym_extern] = ACTIONS(4164), - [anon_sym___attribute__] = ACTIONS(4164), - [anon_sym___attribute] = ACTIONS(4164), - [anon_sym_using] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), - [anon_sym___declspec] = ACTIONS(4164), - [anon_sym___based] = ACTIONS(4164), - [anon_sym___cdecl] = ACTIONS(4164), - [anon_sym___clrcall] = ACTIONS(4164), - [anon_sym___stdcall] = ACTIONS(4164), - [anon_sym___fastcall] = ACTIONS(4164), - [anon_sym___thiscall] = ACTIONS(4164), - [anon_sym___vectorcall] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4166), - [anon_sym_signed] = ACTIONS(4164), - [anon_sym_unsigned] = ACTIONS(4164), - [anon_sym_long] = ACTIONS(4164), - [anon_sym_short] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4164), - [anon_sym_static] = ACTIONS(4164), - [anon_sym_register] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym___inline] = ACTIONS(4164), - [anon_sym___inline__] = ACTIONS(4164), - [anon_sym___forceinline] = ACTIONS(4164), - [anon_sym_thread_local] = ACTIONS(4164), - [anon_sym___thread] = ACTIONS(4164), - [anon_sym_const] = ACTIONS(4164), - [anon_sym_constexpr] = ACTIONS(4164), - [anon_sym_volatile] = ACTIONS(4164), - [anon_sym_restrict] = ACTIONS(4164), - [anon_sym___restrict__] = ACTIONS(4164), - [anon_sym__Atomic] = ACTIONS(4164), - [anon_sym__Noreturn] = ACTIONS(4164), - [anon_sym_noreturn] = ACTIONS(4164), - [anon_sym__Nonnull] = ACTIONS(4164), - [anon_sym_mutable] = ACTIONS(4164), - [anon_sym_constinit] = ACTIONS(4164), - [anon_sym_consteval] = ACTIONS(4164), - [anon_sym_alignas] = ACTIONS(4164), - [anon_sym__Alignas] = ACTIONS(4164), - [sym_primitive_type] = ACTIONS(4164), - [anon_sym_enum] = ACTIONS(4164), - [anon_sym_class] = ACTIONS(4164), - [anon_sym_struct] = ACTIONS(4164), - [anon_sym_union] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_switch] = ACTIONS(4164), - [anon_sym_case] = ACTIONS(4164), - [anon_sym_default] = ACTIONS(4164), - [anon_sym_while] = ACTIONS(4164), - [anon_sym_do] = ACTIONS(4164), - [anon_sym_for] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_goto] = ACTIONS(4164), - [anon_sym_not] = ACTIONS(4164), - [anon_sym_compl] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_sizeof] = ACTIONS(4164), - [anon_sym___alignof__] = ACTIONS(4164), - [anon_sym___alignof] = ACTIONS(4164), - [anon_sym__alignof] = ACTIONS(4164), - [anon_sym_alignof] = ACTIONS(4164), - [anon_sym__Alignof] = ACTIONS(4164), - [anon_sym_offsetof] = ACTIONS(4164), - [anon_sym__Generic] = ACTIONS(4164), - [anon_sym_typename] = ACTIONS(4164), - [anon_sym_asm] = ACTIONS(4164), - [anon_sym___asm__] = ACTIONS(4164), - [anon_sym___asm] = ACTIONS(4164), - [sym_number_literal] = ACTIONS(4166), - [anon_sym_L_SQUOTE] = ACTIONS(4166), - [anon_sym_u_SQUOTE] = ACTIONS(4166), - [anon_sym_U_SQUOTE] = ACTIONS(4166), - [anon_sym_u8_SQUOTE] = ACTIONS(4166), - [anon_sym_SQUOTE] = ACTIONS(4166), - [anon_sym_L_DQUOTE] = ACTIONS(4166), - [anon_sym_u_DQUOTE] = ACTIONS(4166), - [anon_sym_U_DQUOTE] = ACTIONS(4166), - [anon_sym_u8_DQUOTE] = ACTIONS(4166), - [anon_sym_DQUOTE] = ACTIONS(4166), - [sym_true] = ACTIONS(4164), - [sym_false] = ACTIONS(4164), - [anon_sym_NULL] = ACTIONS(4164), - [anon_sym_nullptr] = ACTIONS(4164), + [STATE(633)] = { + [ts_builtin_sym_end] = ACTIONS(3668), + [sym_identifier] = ACTIONS(3666), + [aux_sym_preproc_include_token1] = ACTIONS(3666), + [aux_sym_preproc_def_token1] = ACTIONS(3666), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3666), + [sym_preproc_directive] = ACTIONS(3666), + [anon_sym_LPAREN2] = ACTIONS(3668), + [anon_sym_BANG] = ACTIONS(3668), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym___extension__] = ACTIONS(3666), + [anon_sym_typedef] = ACTIONS(3666), + [anon_sym_virtual] = ACTIONS(3666), + [anon_sym_extern] = ACTIONS(3666), + [anon_sym___attribute__] = ACTIONS(3666), + [anon_sym___attribute] = ACTIONS(3666), + [anon_sym_using] = ACTIONS(3666), + [anon_sym_COLON_COLON] = ACTIONS(3668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3668), + [anon_sym___declspec] = ACTIONS(3666), + [anon_sym___based] = ACTIONS(3666), + [anon_sym___cdecl] = ACTIONS(3666), + [anon_sym___clrcall] = ACTIONS(3666), + [anon_sym___stdcall] = ACTIONS(3666), + [anon_sym___fastcall] = ACTIONS(3666), + [anon_sym___thiscall] = ACTIONS(3666), + [anon_sym___vectorcall] = ACTIONS(3666), + [anon_sym_LBRACE] = ACTIONS(3668), + [anon_sym_signed] = ACTIONS(3666), + [anon_sym_unsigned] = ACTIONS(3666), + [anon_sym_long] = ACTIONS(3666), + [anon_sym_short] = ACTIONS(3666), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_static] = ACTIONS(3666), + [anon_sym_register] = ACTIONS(3666), + [anon_sym_inline] = ACTIONS(3666), + [anon_sym___inline] = ACTIONS(3666), + [anon_sym___inline__] = ACTIONS(3666), + [anon_sym___forceinline] = ACTIONS(3666), + [anon_sym_thread_local] = ACTIONS(3666), + [anon_sym___thread] = ACTIONS(3666), + [anon_sym_const] = ACTIONS(3666), + [anon_sym_constexpr] = ACTIONS(3666), + [anon_sym_volatile] = ACTIONS(3666), + [anon_sym_restrict] = ACTIONS(3666), + [anon_sym___restrict__] = ACTIONS(3666), + [anon_sym__Atomic] = ACTIONS(3666), + [anon_sym__Noreturn] = ACTIONS(3666), + [anon_sym_noreturn] = ACTIONS(3666), + [anon_sym__Nonnull] = ACTIONS(3666), + [anon_sym_mutable] = ACTIONS(3666), + [anon_sym_constinit] = ACTIONS(3666), + [anon_sym_consteval] = ACTIONS(3666), + [anon_sym_alignas] = ACTIONS(3666), + [anon_sym__Alignas] = ACTIONS(3666), + [sym_primitive_type] = ACTIONS(3666), + [anon_sym_enum] = ACTIONS(3666), + [anon_sym_class] = ACTIONS(3666), + [anon_sym_struct] = ACTIONS(3666), + [anon_sym_union] = ACTIONS(3666), + [anon_sym_if] = ACTIONS(3666), + [anon_sym_else] = ACTIONS(3666), + [anon_sym_switch] = ACTIONS(3666), + [anon_sym_case] = ACTIONS(3666), + [anon_sym_default] = ACTIONS(3666), + [anon_sym_while] = ACTIONS(3666), + [anon_sym_do] = ACTIONS(3666), + [anon_sym_for] = ACTIONS(3666), + [anon_sym_return] = ACTIONS(3666), + [anon_sym_break] = ACTIONS(3666), + [anon_sym_continue] = ACTIONS(3666), + [anon_sym_goto] = ACTIONS(3666), + [anon_sym___try] = ACTIONS(3666), + [anon_sym___leave] = ACTIONS(3666), + [anon_sym_not] = ACTIONS(3666), + [anon_sym_compl] = ACTIONS(3666), + [anon_sym_DASH_DASH] = ACTIONS(3668), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_sizeof] = ACTIONS(3666), + [anon_sym___alignof__] = ACTIONS(3666), + [anon_sym___alignof] = ACTIONS(3666), + [anon_sym__alignof] = ACTIONS(3666), + [anon_sym_alignof] = ACTIONS(3666), + [anon_sym__Alignof] = ACTIONS(3666), + [anon_sym_offsetof] = ACTIONS(3666), + [anon_sym__Generic] = ACTIONS(3666), + [anon_sym_typename] = ACTIONS(3666), + [anon_sym_asm] = ACTIONS(3666), + [anon_sym___asm__] = ACTIONS(3666), + [anon_sym___asm] = ACTIONS(3666), + [sym_number_literal] = ACTIONS(3668), + [anon_sym_L_SQUOTE] = ACTIONS(3668), + [anon_sym_u_SQUOTE] = ACTIONS(3668), + [anon_sym_U_SQUOTE] = ACTIONS(3668), + [anon_sym_u8_SQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3668), + [anon_sym_L_DQUOTE] = ACTIONS(3668), + [anon_sym_u_DQUOTE] = ACTIONS(3668), + [anon_sym_U_DQUOTE] = ACTIONS(3668), + [anon_sym_u8_DQUOTE] = ACTIONS(3668), + [anon_sym_DQUOTE] = ACTIONS(3668), + [sym_true] = ACTIONS(3666), + [sym_false] = ACTIONS(3666), + [anon_sym_NULL] = ACTIONS(3666), + [anon_sym_nullptr] = ACTIONS(3666), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3666), + [anon_sym_decltype] = ACTIONS(3666), + [anon_sym_explicit] = ACTIONS(3666), + [anon_sym_export] = ACTIONS(3666), + [anon_sym_module] = ACTIONS(3666), + [anon_sym_import] = ACTIONS(3666), + [anon_sym_template] = ACTIONS(3666), + [anon_sym_operator] = ACTIONS(3666), + [anon_sym_try] = ACTIONS(3666), + [anon_sym_delete] = ACTIONS(3666), + [anon_sym_throw] = ACTIONS(3666), + [anon_sym_namespace] = ACTIONS(3666), + [anon_sym_static_assert] = ACTIONS(3666), + [anon_sym_concept] = ACTIONS(3666), + [anon_sym_co_return] = ACTIONS(3666), + [anon_sym_co_yield] = ACTIONS(3666), + [anon_sym_R_DQUOTE] = ACTIONS(3668), + [anon_sym_LR_DQUOTE] = ACTIONS(3668), + [anon_sym_uR_DQUOTE] = ACTIONS(3668), + [anon_sym_UR_DQUOTE] = ACTIONS(3668), + [anon_sym_u8R_DQUOTE] = ACTIONS(3668), + [anon_sym_co_await] = ACTIONS(3666), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_requires] = ACTIONS(3666), + [anon_sym_CARET_CARET] = ACTIONS(3668), + [anon_sym_LBRACK_COLON] = ACTIONS(3668), + [sym_this] = ACTIONS(3666), + }, + [STATE(634)] = { + [sym_identifier] = ACTIONS(3163), + [aux_sym_preproc_include_token1] = ACTIONS(3163), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [anon_sym_COMMA] = ACTIONS(3488), + [aux_sym_preproc_if_token1] = ACTIONS(3163), + [aux_sym_preproc_if_token2] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), + [sym_preproc_directive] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3488), + [anon_sym___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_extern] = ACTIONS(3163), + [anon_sym___attribute__] = ACTIONS(3163), + [anon_sym___attribute] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3163), + [anon_sym___based] = ACTIONS(3163), + [anon_sym___cdecl] = ACTIONS(3163), + [anon_sym___clrcall] = ACTIONS(3163), + [anon_sym___stdcall] = ACTIONS(3163), + [anon_sym___fastcall] = ACTIONS(3163), + [anon_sym___thiscall] = ACTIONS(3163), + [anon_sym___vectorcall] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym___inline] = ACTIONS(3163), + [anon_sym___inline__] = ACTIONS(3163), + [anon_sym___forceinline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym___thread] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym___restrict__] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym__Noreturn] = ACTIONS(3163), + [anon_sym_noreturn] = ACTIONS(3163), + [anon_sym__Nonnull] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym__Alignas] = ACTIONS(3163), + [sym_primitive_type] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_switch] = ACTIONS(3163), + [anon_sym_case] = ACTIONS(3163), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_goto] = ACTIONS(3163), + [anon_sym___try] = ACTIONS(3163), + [anon_sym___leave] = ACTIONS(3163), + [anon_sym_not] = ACTIONS(3163), + [anon_sym_compl] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3163), + [anon_sym___alignof__] = ACTIONS(3163), + [anon_sym___alignof] = ACTIONS(3163), + [anon_sym__alignof] = ACTIONS(3163), + [anon_sym_alignof] = ACTIONS(3163), + [anon_sym__Alignof] = ACTIONS(3163), + [anon_sym_offsetof] = ACTIONS(3163), + [anon_sym__Generic] = ACTIONS(3163), + [anon_sym_typename] = ACTIONS(3163), + [anon_sym_asm] = ACTIONS(3163), + [anon_sym___asm__] = ACTIONS(3163), + [anon_sym___asm] = ACTIONS(3163), + [sym_number_literal] = ACTIONS(3161), + [anon_sym_L_SQUOTE] = ACTIONS(3161), + [anon_sym_u_SQUOTE] = ACTIONS(3161), + [anon_sym_U_SQUOTE] = ACTIONS(3161), + [anon_sym_u8_SQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_L_DQUOTE] = ACTIONS(3161), + [anon_sym_u_DQUOTE] = ACTIONS(3161), + [anon_sym_U_DQUOTE] = ACTIONS(3161), + [anon_sym_u8_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [anon_sym_NULL] = ACTIONS(3163), + [anon_sym_nullptr] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_export] = ACTIONS(3163), + [anon_sym_module] = ACTIONS(3163), + [anon_sym_import] = ACTIONS(3163), + [anon_sym_template] = ACTIONS(3163), + [anon_sym_operator] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_delete] = ACTIONS(3163), + [anon_sym_throw] = ACTIONS(3163), + [anon_sym_namespace] = ACTIONS(3163), + [anon_sym_static_assert] = ACTIONS(3163), + [anon_sym_concept] = ACTIONS(3163), + [anon_sym_co_return] = ACTIONS(3163), + [anon_sym_co_yield] = ACTIONS(3163), + [anon_sym_R_DQUOTE] = ACTIONS(3161), + [anon_sym_LR_DQUOTE] = ACTIONS(3161), + [anon_sym_uR_DQUOTE] = ACTIONS(3161), + [anon_sym_UR_DQUOTE] = ACTIONS(3161), + [anon_sym_u8R_DQUOTE] = ACTIONS(3161), + [anon_sym_co_await] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_requires] = ACTIONS(3163), + [anon_sym_CARET_CARET] = ACTIONS(3161), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), + [sym_this] = ACTIONS(3163), + }, + [STATE(635)] = { + [sym_else_clause] = STATE(756), + [sym_identifier] = ACTIONS(3408), + [aux_sym_preproc_include_token1] = ACTIONS(3408), + [aux_sym_preproc_def_token1] = ACTIONS(3408), + [aux_sym_preproc_if_token1] = ACTIONS(3408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3408), + [sym_preproc_directive] = ACTIONS(3408), + [anon_sym_LPAREN2] = ACTIONS(3410), + [anon_sym_BANG] = ACTIONS(3410), + [anon_sym_TILDE] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(3408), + [anon_sym_PLUS] = ACTIONS(3408), + [anon_sym_STAR] = ACTIONS(3410), + [anon_sym_AMP_AMP] = ACTIONS(3410), + [anon_sym_AMP] = ACTIONS(3408), + [anon_sym_SEMI] = ACTIONS(3410), + [anon_sym___extension__] = ACTIONS(3408), + [anon_sym_typedef] = ACTIONS(3408), + [anon_sym_virtual] = ACTIONS(3408), + [anon_sym_extern] = ACTIONS(3408), + [anon_sym___attribute__] = ACTIONS(3408), + [anon_sym___attribute] = ACTIONS(3408), + [anon_sym_using] = ACTIONS(3408), + [anon_sym_COLON_COLON] = ACTIONS(3410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3410), + [anon_sym___declspec] = ACTIONS(3408), + [anon_sym___based] = ACTIONS(3408), + [anon_sym___cdecl] = ACTIONS(3408), + [anon_sym___clrcall] = ACTIONS(3408), + [anon_sym___stdcall] = ACTIONS(3408), + [anon_sym___fastcall] = ACTIONS(3408), + [anon_sym___thiscall] = ACTIONS(3408), + [anon_sym___vectorcall] = ACTIONS(3408), + [anon_sym_LBRACE] = ACTIONS(3410), + [anon_sym_RBRACE] = ACTIONS(3410), + [anon_sym_signed] = ACTIONS(3408), + [anon_sym_unsigned] = ACTIONS(3408), + [anon_sym_long] = ACTIONS(3408), + [anon_sym_short] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3408), + [anon_sym_static] = ACTIONS(3408), + [anon_sym_register] = ACTIONS(3408), + [anon_sym_inline] = ACTIONS(3408), + [anon_sym___inline] = ACTIONS(3408), + [anon_sym___inline__] = ACTIONS(3408), + [anon_sym___forceinline] = ACTIONS(3408), + [anon_sym_thread_local] = ACTIONS(3408), + [anon_sym___thread] = ACTIONS(3408), + [anon_sym_const] = ACTIONS(3408), + [anon_sym_constexpr] = ACTIONS(3408), + [anon_sym_volatile] = ACTIONS(3408), + [anon_sym_restrict] = ACTIONS(3408), + [anon_sym___restrict__] = ACTIONS(3408), + [anon_sym__Atomic] = ACTIONS(3408), + [anon_sym__Noreturn] = ACTIONS(3408), + [anon_sym_noreturn] = ACTIONS(3408), + [anon_sym__Nonnull] = ACTIONS(3408), + [anon_sym_mutable] = ACTIONS(3408), + [anon_sym_constinit] = ACTIONS(3408), + [anon_sym_consteval] = ACTIONS(3408), + [anon_sym_alignas] = ACTIONS(3408), + [anon_sym__Alignas] = ACTIONS(3408), + [sym_primitive_type] = ACTIONS(3408), + [anon_sym_enum] = ACTIONS(3408), + [anon_sym_class] = ACTIONS(3408), + [anon_sym_struct] = ACTIONS(3408), + [anon_sym_union] = ACTIONS(3408), + [anon_sym_if] = ACTIONS(3408), + [anon_sym_else] = ACTIONS(4670), + [anon_sym_switch] = ACTIONS(3408), + [anon_sym_case] = ACTIONS(3408), + [anon_sym_default] = ACTIONS(3408), + [anon_sym_while] = ACTIONS(3408), + [anon_sym_do] = ACTIONS(3408), + [anon_sym_for] = ACTIONS(3408), + [anon_sym_return] = ACTIONS(3408), + [anon_sym_break] = ACTIONS(3408), + [anon_sym_continue] = ACTIONS(3408), + [anon_sym_goto] = ACTIONS(3408), + [anon_sym___try] = ACTIONS(3408), + [anon_sym___leave] = ACTIONS(3408), + [anon_sym_not] = ACTIONS(3408), + [anon_sym_compl] = ACTIONS(3408), + [anon_sym_DASH_DASH] = ACTIONS(3410), + [anon_sym_PLUS_PLUS] = ACTIONS(3410), + [anon_sym_sizeof] = ACTIONS(3408), + [anon_sym___alignof__] = ACTIONS(3408), + [anon_sym___alignof] = ACTIONS(3408), + [anon_sym__alignof] = ACTIONS(3408), + [anon_sym_alignof] = ACTIONS(3408), + [anon_sym__Alignof] = ACTIONS(3408), + [anon_sym_offsetof] = ACTIONS(3408), + [anon_sym__Generic] = ACTIONS(3408), + [anon_sym_typename] = ACTIONS(3408), + [anon_sym_asm] = ACTIONS(3408), + [anon_sym___asm__] = ACTIONS(3408), + [anon_sym___asm] = ACTIONS(3408), + [sym_number_literal] = ACTIONS(3410), + [anon_sym_L_SQUOTE] = ACTIONS(3410), + [anon_sym_u_SQUOTE] = ACTIONS(3410), + [anon_sym_U_SQUOTE] = ACTIONS(3410), + [anon_sym_u8_SQUOTE] = ACTIONS(3410), + [anon_sym_SQUOTE] = ACTIONS(3410), + [anon_sym_L_DQUOTE] = ACTIONS(3410), + [anon_sym_u_DQUOTE] = ACTIONS(3410), + [anon_sym_U_DQUOTE] = ACTIONS(3410), + [anon_sym_u8_DQUOTE] = ACTIONS(3410), + [anon_sym_DQUOTE] = ACTIONS(3410), + [sym_true] = ACTIONS(3408), + [sym_false] = ACTIONS(3408), + [anon_sym_NULL] = ACTIONS(3408), + [anon_sym_nullptr] = ACTIONS(3408), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3408), + [anon_sym_decltype] = ACTIONS(3408), + [anon_sym_explicit] = ACTIONS(3408), + [anon_sym_export] = ACTIONS(3408), + [anon_sym_import] = ACTIONS(3408), + [anon_sym_template] = ACTIONS(3408), + [anon_sym_operator] = ACTIONS(3408), + [anon_sym_try] = ACTIONS(3408), + [anon_sym_delete] = ACTIONS(3408), + [anon_sym_throw] = ACTIONS(3408), + [anon_sym_namespace] = ACTIONS(3408), + [anon_sym_static_assert] = ACTIONS(3408), + [anon_sym_concept] = ACTIONS(3408), + [anon_sym_co_return] = ACTIONS(3408), + [anon_sym_co_yield] = ACTIONS(3408), + [anon_sym_R_DQUOTE] = ACTIONS(3410), + [anon_sym_LR_DQUOTE] = ACTIONS(3410), + [anon_sym_uR_DQUOTE] = ACTIONS(3410), + [anon_sym_UR_DQUOTE] = ACTIONS(3410), + [anon_sym_u8R_DQUOTE] = ACTIONS(3410), + [anon_sym_co_await] = ACTIONS(3408), + [anon_sym_new] = ACTIONS(3408), + [anon_sym_requires] = ACTIONS(3408), + [anon_sym_CARET_CARET] = ACTIONS(3410), + [anon_sym_LBRACK_COLON] = ACTIONS(3410), + [sym_this] = ACTIONS(3408), + }, + [STATE(636)] = { + [ts_builtin_sym_end] = ACTIONS(3660), + [sym_identifier] = ACTIONS(3658), + [aux_sym_preproc_include_token1] = ACTIONS(3658), + [aux_sym_preproc_def_token1] = ACTIONS(3658), + [aux_sym_preproc_if_token1] = ACTIONS(3658), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3658), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3658), + [sym_preproc_directive] = ACTIONS(3658), + [anon_sym_LPAREN2] = ACTIONS(3660), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_STAR] = ACTIONS(3660), + [anon_sym_AMP_AMP] = ACTIONS(3660), + [anon_sym_AMP] = ACTIONS(3658), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym___extension__] = ACTIONS(3658), + [anon_sym_typedef] = ACTIONS(3658), + [anon_sym_virtual] = ACTIONS(3658), + [anon_sym_extern] = ACTIONS(3658), + [anon_sym___attribute__] = ACTIONS(3658), + [anon_sym___attribute] = ACTIONS(3658), + [anon_sym_using] = ACTIONS(3658), + [anon_sym_COLON_COLON] = ACTIONS(3660), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3660), + [anon_sym___declspec] = ACTIONS(3658), + [anon_sym___based] = ACTIONS(3658), + [anon_sym___cdecl] = ACTIONS(3658), + [anon_sym___clrcall] = ACTIONS(3658), + [anon_sym___stdcall] = ACTIONS(3658), + [anon_sym___fastcall] = ACTIONS(3658), + [anon_sym___thiscall] = ACTIONS(3658), + [anon_sym___vectorcall] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_signed] = ACTIONS(3658), + [anon_sym_unsigned] = ACTIONS(3658), + [anon_sym_long] = ACTIONS(3658), + [anon_sym_short] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_register] = ACTIONS(3658), + [anon_sym_inline] = ACTIONS(3658), + [anon_sym___inline] = ACTIONS(3658), + [anon_sym___inline__] = ACTIONS(3658), + [anon_sym___forceinline] = ACTIONS(3658), + [anon_sym_thread_local] = ACTIONS(3658), + [anon_sym___thread] = ACTIONS(3658), + [anon_sym_const] = ACTIONS(3658), + [anon_sym_constexpr] = ACTIONS(3658), + [anon_sym_volatile] = ACTIONS(3658), + [anon_sym_restrict] = ACTIONS(3658), + [anon_sym___restrict__] = ACTIONS(3658), + [anon_sym__Atomic] = ACTIONS(3658), + [anon_sym__Noreturn] = ACTIONS(3658), + [anon_sym_noreturn] = ACTIONS(3658), + [anon_sym__Nonnull] = ACTIONS(3658), + [anon_sym_mutable] = ACTIONS(3658), + [anon_sym_constinit] = ACTIONS(3658), + [anon_sym_consteval] = ACTIONS(3658), + [anon_sym_alignas] = ACTIONS(3658), + [anon_sym__Alignas] = ACTIONS(3658), + [sym_primitive_type] = ACTIONS(3658), + [anon_sym_enum] = ACTIONS(3658), + [anon_sym_class] = ACTIONS(3658), + [anon_sym_struct] = ACTIONS(3658), + [anon_sym_union] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_else] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_case] = ACTIONS(3658), + [anon_sym_default] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_goto] = ACTIONS(3658), + [anon_sym___try] = ACTIONS(3658), + [anon_sym___leave] = ACTIONS(3658), + [anon_sym_not] = ACTIONS(3658), + [anon_sym_compl] = ACTIONS(3658), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_sizeof] = ACTIONS(3658), + [anon_sym___alignof__] = ACTIONS(3658), + [anon_sym___alignof] = ACTIONS(3658), + [anon_sym__alignof] = ACTIONS(3658), + [anon_sym_alignof] = ACTIONS(3658), + [anon_sym__Alignof] = ACTIONS(3658), + [anon_sym_offsetof] = ACTIONS(3658), + [anon_sym__Generic] = ACTIONS(3658), + [anon_sym_typename] = ACTIONS(3658), + [anon_sym_asm] = ACTIONS(3658), + [anon_sym___asm__] = ACTIONS(3658), + [anon_sym___asm] = ACTIONS(3658), + [sym_number_literal] = ACTIONS(3660), + [anon_sym_L_SQUOTE] = ACTIONS(3660), + [anon_sym_u_SQUOTE] = ACTIONS(3660), + [anon_sym_U_SQUOTE] = ACTIONS(3660), + [anon_sym_u8_SQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [anon_sym_L_DQUOTE] = ACTIONS(3660), + [anon_sym_u_DQUOTE] = ACTIONS(3660), + [anon_sym_U_DQUOTE] = ACTIONS(3660), + [anon_sym_u8_DQUOTE] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [sym_true] = ACTIONS(3658), + [sym_false] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_nullptr] = ACTIONS(3658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3658), + [anon_sym_decltype] = ACTIONS(3658), + [anon_sym_explicit] = ACTIONS(3658), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_module] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_template] = ACTIONS(3658), + [anon_sym_operator] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_delete] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_namespace] = ACTIONS(3658), + [anon_sym_static_assert] = ACTIONS(3658), + [anon_sym_concept] = ACTIONS(3658), + [anon_sym_co_return] = ACTIONS(3658), + [anon_sym_co_yield] = ACTIONS(3658), + [anon_sym_R_DQUOTE] = ACTIONS(3660), + [anon_sym_LR_DQUOTE] = ACTIONS(3660), + [anon_sym_uR_DQUOTE] = ACTIONS(3660), + [anon_sym_UR_DQUOTE] = ACTIONS(3660), + [anon_sym_u8R_DQUOTE] = ACTIONS(3660), + [anon_sym_co_await] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_requires] = ACTIONS(3658), + [anon_sym_CARET_CARET] = ACTIONS(3660), + [anon_sym_LBRACK_COLON] = ACTIONS(3660), + [sym_this] = ACTIONS(3658), + }, + [STATE(637)] = { + [sym_identifier] = ACTIONS(3520), + [aux_sym_preproc_include_token1] = ACTIONS(3520), + [aux_sym_preproc_def_token1] = ACTIONS(3520), + [aux_sym_preproc_if_token1] = ACTIONS(3520), + [aux_sym_preproc_if_token2] = ACTIONS(3520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3520), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3520), + [sym_preproc_directive] = ACTIONS(3520), + [anon_sym_LPAREN2] = ACTIONS(3522), + [anon_sym_BANG] = ACTIONS(3522), + [anon_sym_TILDE] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3520), + [anon_sym_PLUS] = ACTIONS(3520), + [anon_sym_STAR] = ACTIONS(3522), + [anon_sym_AMP_AMP] = ACTIONS(3522), + [anon_sym_AMP] = ACTIONS(3520), + [anon_sym_SEMI] = ACTIONS(3522), + [anon_sym___extension__] = ACTIONS(3520), + [anon_sym_typedef] = ACTIONS(3520), + [anon_sym_virtual] = ACTIONS(3520), + [anon_sym_extern] = ACTIONS(3520), + [anon_sym___attribute__] = ACTIONS(3520), + [anon_sym___attribute] = ACTIONS(3520), + [anon_sym_using] = ACTIONS(3520), + [anon_sym_COLON_COLON] = ACTIONS(3522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3522), + [anon_sym___declspec] = ACTIONS(3520), + [anon_sym___based] = ACTIONS(3520), + [anon_sym___cdecl] = ACTIONS(3520), + [anon_sym___clrcall] = ACTIONS(3520), + [anon_sym___stdcall] = ACTIONS(3520), + [anon_sym___fastcall] = ACTIONS(3520), + [anon_sym___thiscall] = ACTIONS(3520), + [anon_sym___vectorcall] = ACTIONS(3520), + [anon_sym_LBRACE] = ACTIONS(3522), + [anon_sym_signed] = ACTIONS(3520), + [anon_sym_unsigned] = ACTIONS(3520), + [anon_sym_long] = ACTIONS(3520), + [anon_sym_short] = ACTIONS(3520), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_static] = ACTIONS(3520), + [anon_sym_register] = ACTIONS(3520), + [anon_sym_inline] = ACTIONS(3520), + [anon_sym___inline] = ACTIONS(3520), + [anon_sym___inline__] = ACTIONS(3520), + [anon_sym___forceinline] = ACTIONS(3520), + [anon_sym_thread_local] = ACTIONS(3520), + [anon_sym___thread] = ACTIONS(3520), + [anon_sym_const] = ACTIONS(3520), + [anon_sym_constexpr] = ACTIONS(3520), + [anon_sym_volatile] = ACTIONS(3520), + [anon_sym_restrict] = ACTIONS(3520), + [anon_sym___restrict__] = ACTIONS(3520), + [anon_sym__Atomic] = ACTIONS(3520), + [anon_sym__Noreturn] = ACTIONS(3520), + [anon_sym_noreturn] = ACTIONS(3520), + [anon_sym__Nonnull] = ACTIONS(3520), + [anon_sym_mutable] = ACTIONS(3520), + [anon_sym_constinit] = ACTIONS(3520), + [anon_sym_consteval] = ACTIONS(3520), + [anon_sym_alignas] = ACTIONS(3520), + [anon_sym__Alignas] = ACTIONS(3520), + [sym_primitive_type] = ACTIONS(3520), + [anon_sym_enum] = ACTIONS(3520), + [anon_sym_class] = ACTIONS(3520), + [anon_sym_struct] = ACTIONS(3520), + [anon_sym_union] = ACTIONS(3520), + [anon_sym_if] = ACTIONS(3520), + [anon_sym_else] = ACTIONS(3520), + [anon_sym_switch] = ACTIONS(3520), + [anon_sym_case] = ACTIONS(3520), + [anon_sym_default] = ACTIONS(3520), + [anon_sym_while] = ACTIONS(3520), + [anon_sym_do] = ACTIONS(3520), + [anon_sym_for] = ACTIONS(3520), + [anon_sym_return] = ACTIONS(3520), + [anon_sym_break] = ACTIONS(3520), + [anon_sym_continue] = ACTIONS(3520), + [anon_sym_goto] = ACTIONS(3520), + [anon_sym___try] = ACTIONS(3520), + [anon_sym___leave] = ACTIONS(3520), + [anon_sym_not] = ACTIONS(3520), + [anon_sym_compl] = ACTIONS(3520), + [anon_sym_DASH_DASH] = ACTIONS(3522), + [anon_sym_PLUS_PLUS] = ACTIONS(3522), + [anon_sym_sizeof] = ACTIONS(3520), + [anon_sym___alignof__] = ACTIONS(3520), + [anon_sym___alignof] = ACTIONS(3520), + [anon_sym__alignof] = ACTIONS(3520), + [anon_sym_alignof] = ACTIONS(3520), + [anon_sym__Alignof] = ACTIONS(3520), + [anon_sym_offsetof] = ACTIONS(3520), + [anon_sym__Generic] = ACTIONS(3520), + [anon_sym_typename] = ACTIONS(3520), + [anon_sym_asm] = ACTIONS(3520), + [anon_sym___asm__] = ACTIONS(3520), + [anon_sym___asm] = ACTIONS(3520), + [sym_number_literal] = ACTIONS(3522), + [anon_sym_L_SQUOTE] = ACTIONS(3522), + [anon_sym_u_SQUOTE] = ACTIONS(3522), + [anon_sym_U_SQUOTE] = ACTIONS(3522), + [anon_sym_u8_SQUOTE] = ACTIONS(3522), + [anon_sym_SQUOTE] = ACTIONS(3522), + [anon_sym_L_DQUOTE] = ACTIONS(3522), + [anon_sym_u_DQUOTE] = ACTIONS(3522), + [anon_sym_U_DQUOTE] = ACTIONS(3522), + [anon_sym_u8_DQUOTE] = ACTIONS(3522), + [anon_sym_DQUOTE] = ACTIONS(3522), + [sym_true] = ACTIONS(3520), + [sym_false] = ACTIONS(3520), + [anon_sym_NULL] = ACTIONS(3520), + [anon_sym_nullptr] = ACTIONS(3520), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3520), + [anon_sym_decltype] = ACTIONS(3520), + [anon_sym_explicit] = ACTIONS(3520), + [anon_sym_export] = ACTIONS(3520), + [anon_sym_module] = ACTIONS(3520), + [anon_sym_import] = ACTIONS(3520), + [anon_sym_template] = ACTIONS(3520), + [anon_sym_operator] = ACTIONS(3520), + [anon_sym_try] = ACTIONS(3520), + [anon_sym_delete] = ACTIONS(3520), + [anon_sym_throw] = ACTIONS(3520), + [anon_sym_namespace] = ACTIONS(3520), + [anon_sym_static_assert] = ACTIONS(3520), + [anon_sym_concept] = ACTIONS(3520), + [anon_sym_co_return] = ACTIONS(3520), + [anon_sym_co_yield] = ACTIONS(3520), + [anon_sym_R_DQUOTE] = ACTIONS(3522), + [anon_sym_LR_DQUOTE] = ACTIONS(3522), + [anon_sym_uR_DQUOTE] = ACTIONS(3522), + [anon_sym_UR_DQUOTE] = ACTIONS(3522), + [anon_sym_u8R_DQUOTE] = ACTIONS(3522), + [anon_sym_co_await] = ACTIONS(3520), + [anon_sym_new] = ACTIONS(3520), + [anon_sym_requires] = ACTIONS(3520), + [anon_sym_CARET_CARET] = ACTIONS(3522), + [anon_sym_LBRACK_COLON] = ACTIONS(3522), + [sym_this] = ACTIONS(3520), + }, + [STATE(638)] = { + [ts_builtin_sym_end] = ACTIONS(3664), + [sym_identifier] = ACTIONS(3662), + [aux_sym_preproc_include_token1] = ACTIONS(3662), + [aux_sym_preproc_def_token1] = ACTIONS(3662), + [aux_sym_preproc_if_token1] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), + [sym_preproc_directive] = ACTIONS(3662), + [anon_sym_LPAREN2] = ACTIONS(3664), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym___extension__] = ACTIONS(3662), + [anon_sym_typedef] = ACTIONS(3662), + [anon_sym_virtual] = ACTIONS(3662), + [anon_sym_extern] = ACTIONS(3662), + [anon_sym___attribute__] = ACTIONS(3662), + [anon_sym___attribute] = ACTIONS(3662), + [anon_sym_using] = ACTIONS(3662), + [anon_sym_COLON_COLON] = ACTIONS(3664), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), + [anon_sym___declspec] = ACTIONS(3662), + [anon_sym___based] = ACTIONS(3662), + [anon_sym___cdecl] = ACTIONS(3662), + [anon_sym___clrcall] = ACTIONS(3662), + [anon_sym___stdcall] = ACTIONS(3662), + [anon_sym___fastcall] = ACTIONS(3662), + [anon_sym___thiscall] = ACTIONS(3662), + [anon_sym___vectorcall] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_signed] = ACTIONS(3662), + [anon_sym_unsigned] = ACTIONS(3662), + [anon_sym_long] = ACTIONS(3662), + [anon_sym_short] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3662), + [anon_sym_static] = ACTIONS(3662), + [anon_sym_register] = ACTIONS(3662), + [anon_sym_inline] = ACTIONS(3662), + [anon_sym___inline] = ACTIONS(3662), + [anon_sym___inline__] = ACTIONS(3662), + [anon_sym___forceinline] = ACTIONS(3662), + [anon_sym_thread_local] = ACTIONS(3662), + [anon_sym___thread] = ACTIONS(3662), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_constexpr] = ACTIONS(3662), + [anon_sym_volatile] = ACTIONS(3662), + [anon_sym_restrict] = ACTIONS(3662), + [anon_sym___restrict__] = ACTIONS(3662), + [anon_sym__Atomic] = ACTIONS(3662), + [anon_sym__Noreturn] = ACTIONS(3662), + [anon_sym_noreturn] = ACTIONS(3662), + [anon_sym__Nonnull] = ACTIONS(3662), + [anon_sym_mutable] = ACTIONS(3662), + [anon_sym_constinit] = ACTIONS(3662), + [anon_sym_consteval] = ACTIONS(3662), + [anon_sym_alignas] = ACTIONS(3662), + [anon_sym__Alignas] = ACTIONS(3662), + [sym_primitive_type] = ACTIONS(3662), + [anon_sym_enum] = ACTIONS(3662), + [anon_sym_class] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(3662), + [anon_sym_union] = ACTIONS(3662), + [anon_sym_if] = ACTIONS(3662), + [anon_sym_else] = ACTIONS(3662), + [anon_sym_switch] = ACTIONS(3662), + [anon_sym_case] = ACTIONS(3662), + [anon_sym_default] = ACTIONS(3662), + [anon_sym_while] = ACTIONS(3662), + [anon_sym_do] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3662), + [anon_sym_return] = ACTIONS(3662), + [anon_sym_break] = ACTIONS(3662), + [anon_sym_continue] = ACTIONS(3662), + [anon_sym_goto] = ACTIONS(3662), + [anon_sym___try] = ACTIONS(3662), + [anon_sym___leave] = ACTIONS(3662), + [anon_sym_not] = ACTIONS(3662), + [anon_sym_compl] = ACTIONS(3662), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_sizeof] = ACTIONS(3662), + [anon_sym___alignof__] = ACTIONS(3662), + [anon_sym___alignof] = ACTIONS(3662), + [anon_sym__alignof] = ACTIONS(3662), + [anon_sym_alignof] = ACTIONS(3662), + [anon_sym__Alignof] = ACTIONS(3662), + [anon_sym_offsetof] = ACTIONS(3662), + [anon_sym__Generic] = ACTIONS(3662), + [anon_sym_typename] = ACTIONS(3662), + [anon_sym_asm] = ACTIONS(3662), + [anon_sym___asm__] = ACTIONS(3662), + [anon_sym___asm] = ACTIONS(3662), + [sym_number_literal] = ACTIONS(3664), + [anon_sym_L_SQUOTE] = ACTIONS(3664), + [anon_sym_u_SQUOTE] = ACTIONS(3664), + [anon_sym_U_SQUOTE] = ACTIONS(3664), + [anon_sym_u8_SQUOTE] = ACTIONS(3664), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_L_DQUOTE] = ACTIONS(3664), + [anon_sym_u_DQUOTE] = ACTIONS(3664), + [anon_sym_U_DQUOTE] = ACTIONS(3664), + [anon_sym_u8_DQUOTE] = ACTIONS(3664), + [anon_sym_DQUOTE] = ACTIONS(3664), + [sym_true] = ACTIONS(3662), + [sym_false] = ACTIONS(3662), + [anon_sym_NULL] = ACTIONS(3662), + [anon_sym_nullptr] = ACTIONS(3662), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3662), + [anon_sym_decltype] = ACTIONS(3662), + [anon_sym_explicit] = ACTIONS(3662), + [anon_sym_export] = ACTIONS(3662), + [anon_sym_module] = ACTIONS(3662), + [anon_sym_import] = ACTIONS(3662), + [anon_sym_template] = ACTIONS(3662), + [anon_sym_operator] = ACTIONS(3662), + [anon_sym_try] = ACTIONS(3662), + [anon_sym_delete] = ACTIONS(3662), + [anon_sym_throw] = ACTIONS(3662), + [anon_sym_namespace] = ACTIONS(3662), + [anon_sym_static_assert] = ACTIONS(3662), + [anon_sym_concept] = ACTIONS(3662), + [anon_sym_co_return] = ACTIONS(3662), + [anon_sym_co_yield] = ACTIONS(3662), + [anon_sym_R_DQUOTE] = ACTIONS(3664), + [anon_sym_LR_DQUOTE] = ACTIONS(3664), + [anon_sym_uR_DQUOTE] = ACTIONS(3664), + [anon_sym_UR_DQUOTE] = ACTIONS(3664), + [anon_sym_u8R_DQUOTE] = ACTIONS(3664), + [anon_sym_co_await] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3662), + [anon_sym_requires] = ACTIONS(3662), + [anon_sym_CARET_CARET] = ACTIONS(3664), + [anon_sym_LBRACK_COLON] = ACTIONS(3664), + [sym_this] = ACTIONS(3662), + }, + [STATE(639)] = { + [ts_builtin_sym_end] = ACTIONS(3664), + [sym_identifier] = ACTIONS(3662), + [aux_sym_preproc_include_token1] = ACTIONS(3662), + [aux_sym_preproc_def_token1] = ACTIONS(3662), + [aux_sym_preproc_if_token1] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), + [sym_preproc_directive] = ACTIONS(3662), + [anon_sym_LPAREN2] = ACTIONS(3664), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym___extension__] = ACTIONS(3662), + [anon_sym_typedef] = ACTIONS(3662), + [anon_sym_virtual] = ACTIONS(3662), + [anon_sym_extern] = ACTIONS(3662), + [anon_sym___attribute__] = ACTIONS(3662), + [anon_sym___attribute] = ACTIONS(3662), + [anon_sym_using] = ACTIONS(3662), + [anon_sym_COLON_COLON] = ACTIONS(3664), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), + [anon_sym___declspec] = ACTIONS(3662), + [anon_sym___based] = ACTIONS(3662), + [anon_sym___cdecl] = ACTIONS(3662), + [anon_sym___clrcall] = ACTIONS(3662), + [anon_sym___stdcall] = ACTIONS(3662), + [anon_sym___fastcall] = ACTIONS(3662), + [anon_sym___thiscall] = ACTIONS(3662), + [anon_sym___vectorcall] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_signed] = ACTIONS(3662), + [anon_sym_unsigned] = ACTIONS(3662), + [anon_sym_long] = ACTIONS(3662), + [anon_sym_short] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3662), + [anon_sym_static] = ACTIONS(3662), + [anon_sym_register] = ACTIONS(3662), + [anon_sym_inline] = ACTIONS(3662), + [anon_sym___inline] = ACTIONS(3662), + [anon_sym___inline__] = ACTIONS(3662), + [anon_sym___forceinline] = ACTIONS(3662), + [anon_sym_thread_local] = ACTIONS(3662), + [anon_sym___thread] = ACTIONS(3662), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_constexpr] = ACTIONS(3662), + [anon_sym_volatile] = ACTIONS(3662), + [anon_sym_restrict] = ACTIONS(3662), + [anon_sym___restrict__] = ACTIONS(3662), + [anon_sym__Atomic] = ACTIONS(3662), + [anon_sym__Noreturn] = ACTIONS(3662), + [anon_sym_noreturn] = ACTIONS(3662), + [anon_sym__Nonnull] = ACTIONS(3662), + [anon_sym_mutable] = ACTIONS(3662), + [anon_sym_constinit] = ACTIONS(3662), + [anon_sym_consteval] = ACTIONS(3662), + [anon_sym_alignas] = ACTIONS(3662), + [anon_sym__Alignas] = ACTIONS(3662), + [sym_primitive_type] = ACTIONS(3662), + [anon_sym_enum] = ACTIONS(3662), + [anon_sym_class] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(3662), + [anon_sym_union] = ACTIONS(3662), + [anon_sym_if] = ACTIONS(3662), + [anon_sym_else] = ACTIONS(3662), + [anon_sym_switch] = ACTIONS(3662), + [anon_sym_case] = ACTIONS(3662), + [anon_sym_default] = ACTIONS(3662), + [anon_sym_while] = ACTIONS(3662), + [anon_sym_do] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3662), + [anon_sym_return] = ACTIONS(3662), + [anon_sym_break] = ACTIONS(3662), + [anon_sym_continue] = ACTIONS(3662), + [anon_sym_goto] = ACTIONS(3662), + [anon_sym___try] = ACTIONS(3662), + [anon_sym___leave] = ACTIONS(3662), + [anon_sym_not] = ACTIONS(3662), + [anon_sym_compl] = ACTIONS(3662), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_sizeof] = ACTIONS(3662), + [anon_sym___alignof__] = ACTIONS(3662), + [anon_sym___alignof] = ACTIONS(3662), + [anon_sym__alignof] = ACTIONS(3662), + [anon_sym_alignof] = ACTIONS(3662), + [anon_sym__Alignof] = ACTIONS(3662), + [anon_sym_offsetof] = ACTIONS(3662), + [anon_sym__Generic] = ACTIONS(3662), + [anon_sym_typename] = ACTIONS(3662), + [anon_sym_asm] = ACTIONS(3662), + [anon_sym___asm__] = ACTIONS(3662), + [anon_sym___asm] = ACTIONS(3662), + [sym_number_literal] = ACTIONS(3664), + [anon_sym_L_SQUOTE] = ACTIONS(3664), + [anon_sym_u_SQUOTE] = ACTIONS(3664), + [anon_sym_U_SQUOTE] = ACTIONS(3664), + [anon_sym_u8_SQUOTE] = ACTIONS(3664), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_L_DQUOTE] = ACTIONS(3664), + [anon_sym_u_DQUOTE] = ACTIONS(3664), + [anon_sym_U_DQUOTE] = ACTIONS(3664), + [anon_sym_u8_DQUOTE] = ACTIONS(3664), + [anon_sym_DQUOTE] = ACTIONS(3664), + [sym_true] = ACTIONS(3662), + [sym_false] = ACTIONS(3662), + [anon_sym_NULL] = ACTIONS(3662), + [anon_sym_nullptr] = ACTIONS(3662), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3662), + [anon_sym_decltype] = ACTIONS(3662), + [anon_sym_explicit] = ACTIONS(3662), + [anon_sym_export] = ACTIONS(3662), + [anon_sym_module] = ACTIONS(3662), + [anon_sym_import] = ACTIONS(3662), + [anon_sym_template] = ACTIONS(3662), + [anon_sym_operator] = ACTIONS(3662), + [anon_sym_try] = ACTIONS(3662), + [anon_sym_delete] = ACTIONS(3662), + [anon_sym_throw] = ACTIONS(3662), + [anon_sym_namespace] = ACTIONS(3662), + [anon_sym_static_assert] = ACTIONS(3662), + [anon_sym_concept] = ACTIONS(3662), + [anon_sym_co_return] = ACTIONS(3662), + [anon_sym_co_yield] = ACTIONS(3662), + [anon_sym_R_DQUOTE] = ACTIONS(3664), + [anon_sym_LR_DQUOTE] = ACTIONS(3664), + [anon_sym_uR_DQUOTE] = ACTIONS(3664), + [anon_sym_UR_DQUOTE] = ACTIONS(3664), + [anon_sym_u8R_DQUOTE] = ACTIONS(3664), + [anon_sym_co_await] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3662), + [anon_sym_requires] = ACTIONS(3662), + [anon_sym_CARET_CARET] = ACTIONS(3664), + [anon_sym_LBRACK_COLON] = ACTIONS(3664), + [sym_this] = ACTIONS(3662), + }, + [STATE(640)] = { + [sym_identifier] = ACTIONS(3592), + [aux_sym_preproc_include_token1] = ACTIONS(3592), + [aux_sym_preproc_def_token1] = ACTIONS(3592), + [aux_sym_preproc_if_token1] = ACTIONS(3592), + [aux_sym_preproc_if_token2] = ACTIONS(3592), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3592), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3592), + [sym_preproc_directive] = ACTIONS(3592), + [anon_sym_LPAREN2] = ACTIONS(3594), + [anon_sym_BANG] = ACTIONS(3594), + [anon_sym_TILDE] = ACTIONS(3594), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3594), + [anon_sym_AMP_AMP] = ACTIONS(3594), + [anon_sym_AMP] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym___extension__] = ACTIONS(3592), + [anon_sym_typedef] = ACTIONS(3592), + [anon_sym_virtual] = ACTIONS(3592), + [anon_sym_extern] = ACTIONS(3592), + [anon_sym___attribute__] = ACTIONS(3592), + [anon_sym___attribute] = ACTIONS(3592), + [anon_sym_using] = ACTIONS(3592), + [anon_sym_COLON_COLON] = ACTIONS(3594), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3594), + [anon_sym___declspec] = ACTIONS(3592), + [anon_sym___based] = ACTIONS(3592), + [anon_sym___cdecl] = ACTIONS(3592), + [anon_sym___clrcall] = ACTIONS(3592), + [anon_sym___stdcall] = ACTIONS(3592), + [anon_sym___fastcall] = ACTIONS(3592), + [anon_sym___thiscall] = ACTIONS(3592), + [anon_sym___vectorcall] = ACTIONS(3592), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_signed] = ACTIONS(3592), + [anon_sym_unsigned] = ACTIONS(3592), + [anon_sym_long] = ACTIONS(3592), + [anon_sym_short] = ACTIONS(3592), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_static] = ACTIONS(3592), + [anon_sym_register] = ACTIONS(3592), + [anon_sym_inline] = ACTIONS(3592), + [anon_sym___inline] = ACTIONS(3592), + [anon_sym___inline__] = ACTIONS(3592), + [anon_sym___forceinline] = ACTIONS(3592), + [anon_sym_thread_local] = ACTIONS(3592), + [anon_sym___thread] = ACTIONS(3592), + [anon_sym_const] = ACTIONS(3592), + [anon_sym_constexpr] = ACTIONS(3592), + [anon_sym_volatile] = ACTIONS(3592), + [anon_sym_restrict] = ACTIONS(3592), + [anon_sym___restrict__] = ACTIONS(3592), + [anon_sym__Atomic] = ACTIONS(3592), + [anon_sym__Noreturn] = ACTIONS(3592), + [anon_sym_noreturn] = ACTIONS(3592), + [anon_sym__Nonnull] = ACTIONS(3592), + [anon_sym_mutable] = ACTIONS(3592), + [anon_sym_constinit] = ACTIONS(3592), + [anon_sym_consteval] = ACTIONS(3592), + [anon_sym_alignas] = ACTIONS(3592), + [anon_sym__Alignas] = ACTIONS(3592), + [sym_primitive_type] = ACTIONS(3592), + [anon_sym_enum] = ACTIONS(3592), + [anon_sym_class] = ACTIONS(3592), + [anon_sym_struct] = ACTIONS(3592), + [anon_sym_union] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_else] = ACTIONS(3592), + [anon_sym_switch] = ACTIONS(3592), + [anon_sym_case] = ACTIONS(3592), + [anon_sym_default] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_break] = ACTIONS(3592), + [anon_sym_continue] = ACTIONS(3592), + [anon_sym_goto] = ACTIONS(3592), + [anon_sym___try] = ACTIONS(3592), + [anon_sym___leave] = ACTIONS(3592), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3594), + [anon_sym_PLUS_PLUS] = ACTIONS(3594), + [anon_sym_sizeof] = ACTIONS(3592), + [anon_sym___alignof__] = ACTIONS(3592), + [anon_sym___alignof] = ACTIONS(3592), + [anon_sym__alignof] = ACTIONS(3592), + [anon_sym_alignof] = ACTIONS(3592), + [anon_sym__Alignof] = ACTIONS(3592), + [anon_sym_offsetof] = ACTIONS(3592), + [anon_sym__Generic] = ACTIONS(3592), + [anon_sym_typename] = ACTIONS(3592), + [anon_sym_asm] = ACTIONS(3592), + [anon_sym___asm__] = ACTIONS(3592), + [anon_sym___asm] = ACTIONS(3592), + [sym_number_literal] = ACTIONS(3594), + [anon_sym_L_SQUOTE] = ACTIONS(3594), + [anon_sym_u_SQUOTE] = ACTIONS(3594), + [anon_sym_U_SQUOTE] = ACTIONS(3594), + [anon_sym_u8_SQUOTE] = ACTIONS(3594), + [anon_sym_SQUOTE] = ACTIONS(3594), + [anon_sym_L_DQUOTE] = ACTIONS(3594), + [anon_sym_u_DQUOTE] = ACTIONS(3594), + [anon_sym_U_DQUOTE] = ACTIONS(3594), + [anon_sym_u8_DQUOTE] = ACTIONS(3594), + [anon_sym_DQUOTE] = ACTIONS(3594), + [sym_true] = ACTIONS(3592), + [sym_false] = ACTIONS(3592), + [anon_sym_NULL] = ACTIONS(3592), + [anon_sym_nullptr] = ACTIONS(3592), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3592), + [anon_sym_decltype] = ACTIONS(3592), + [anon_sym_explicit] = ACTIONS(3592), + [anon_sym_export] = ACTIONS(3592), + [anon_sym_module] = ACTIONS(3592), + [anon_sym_import] = ACTIONS(3592), + [anon_sym_template] = ACTIONS(3592), + [anon_sym_operator] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_delete] = ACTIONS(3592), + [anon_sym_throw] = ACTIONS(3592), + [anon_sym_namespace] = ACTIONS(3592), + [anon_sym_static_assert] = ACTIONS(3592), + [anon_sym_concept] = ACTIONS(3592), + [anon_sym_co_return] = ACTIONS(3592), + [anon_sym_co_yield] = ACTIONS(3592), + [anon_sym_R_DQUOTE] = ACTIONS(3594), + [anon_sym_LR_DQUOTE] = ACTIONS(3594), + [anon_sym_uR_DQUOTE] = ACTIONS(3594), + [anon_sym_UR_DQUOTE] = ACTIONS(3594), + [anon_sym_u8R_DQUOTE] = ACTIONS(3594), + [anon_sym_co_await] = ACTIONS(3592), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_requires] = ACTIONS(3592), + [anon_sym_CARET_CARET] = ACTIONS(3594), + [anon_sym_LBRACK_COLON] = ACTIONS(3594), + [sym_this] = ACTIONS(3592), + }, + [STATE(641)] = { + [sym_identifier] = ACTIONS(3524), + [aux_sym_preproc_include_token1] = ACTIONS(3524), + [aux_sym_preproc_def_token1] = ACTIONS(3524), + [aux_sym_preproc_if_token1] = ACTIONS(3524), + [aux_sym_preproc_if_token2] = ACTIONS(3524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3524), + [sym_preproc_directive] = ACTIONS(3524), + [anon_sym_LPAREN2] = ACTIONS(3526), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_TILDE] = ACTIONS(3526), + [anon_sym_DASH] = ACTIONS(3524), + [anon_sym_PLUS] = ACTIONS(3524), + [anon_sym_STAR] = ACTIONS(3526), + [anon_sym_AMP_AMP] = ACTIONS(3526), + [anon_sym_AMP] = ACTIONS(3524), + [anon_sym_SEMI] = ACTIONS(3526), + [anon_sym___extension__] = ACTIONS(3524), + [anon_sym_typedef] = ACTIONS(3524), + [anon_sym_virtual] = ACTIONS(3524), + [anon_sym_extern] = ACTIONS(3524), + [anon_sym___attribute__] = ACTIONS(3524), + [anon_sym___attribute] = ACTIONS(3524), + [anon_sym_using] = ACTIONS(3524), + [anon_sym_COLON_COLON] = ACTIONS(3526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3526), + [anon_sym___declspec] = ACTIONS(3524), + [anon_sym___based] = ACTIONS(3524), + [anon_sym___cdecl] = ACTIONS(3524), + [anon_sym___clrcall] = ACTIONS(3524), + [anon_sym___stdcall] = ACTIONS(3524), + [anon_sym___fastcall] = ACTIONS(3524), + [anon_sym___thiscall] = ACTIONS(3524), + [anon_sym___vectorcall] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(3526), + [anon_sym_signed] = ACTIONS(3524), + [anon_sym_unsigned] = ACTIONS(3524), + [anon_sym_long] = ACTIONS(3524), + [anon_sym_short] = ACTIONS(3524), + [anon_sym_LBRACK] = ACTIONS(3524), + [anon_sym_static] = ACTIONS(3524), + [anon_sym_register] = ACTIONS(3524), + [anon_sym_inline] = ACTIONS(3524), + [anon_sym___inline] = ACTIONS(3524), + [anon_sym___inline__] = ACTIONS(3524), + [anon_sym___forceinline] = ACTIONS(3524), + [anon_sym_thread_local] = ACTIONS(3524), + [anon_sym___thread] = ACTIONS(3524), + [anon_sym_const] = ACTIONS(3524), + [anon_sym_constexpr] = ACTIONS(3524), + [anon_sym_volatile] = ACTIONS(3524), + [anon_sym_restrict] = ACTIONS(3524), + [anon_sym___restrict__] = ACTIONS(3524), + [anon_sym__Atomic] = ACTIONS(3524), + [anon_sym__Noreturn] = ACTIONS(3524), + [anon_sym_noreturn] = ACTIONS(3524), + [anon_sym__Nonnull] = ACTIONS(3524), + [anon_sym_mutable] = ACTIONS(3524), + [anon_sym_constinit] = ACTIONS(3524), + [anon_sym_consteval] = ACTIONS(3524), + [anon_sym_alignas] = ACTIONS(3524), + [anon_sym__Alignas] = ACTIONS(3524), + [sym_primitive_type] = ACTIONS(3524), + [anon_sym_enum] = ACTIONS(3524), + [anon_sym_class] = ACTIONS(3524), + [anon_sym_struct] = ACTIONS(3524), + [anon_sym_union] = ACTIONS(3524), + [anon_sym_if] = ACTIONS(3524), + [anon_sym_else] = ACTIONS(3524), + [anon_sym_switch] = ACTIONS(3524), + [anon_sym_case] = ACTIONS(3524), + [anon_sym_default] = ACTIONS(3524), + [anon_sym_while] = ACTIONS(3524), + [anon_sym_do] = ACTIONS(3524), + [anon_sym_for] = ACTIONS(3524), + [anon_sym_return] = ACTIONS(3524), + [anon_sym_break] = ACTIONS(3524), + [anon_sym_continue] = ACTIONS(3524), + [anon_sym_goto] = ACTIONS(3524), + [anon_sym___try] = ACTIONS(3524), + [anon_sym___leave] = ACTIONS(3524), + [anon_sym_not] = ACTIONS(3524), + [anon_sym_compl] = ACTIONS(3524), + [anon_sym_DASH_DASH] = ACTIONS(3526), + [anon_sym_PLUS_PLUS] = ACTIONS(3526), + [anon_sym_sizeof] = ACTIONS(3524), + [anon_sym___alignof__] = ACTIONS(3524), + [anon_sym___alignof] = ACTIONS(3524), + [anon_sym__alignof] = ACTIONS(3524), + [anon_sym_alignof] = ACTIONS(3524), + [anon_sym__Alignof] = ACTIONS(3524), + [anon_sym_offsetof] = ACTIONS(3524), + [anon_sym__Generic] = ACTIONS(3524), + [anon_sym_typename] = ACTIONS(3524), + [anon_sym_asm] = ACTIONS(3524), + [anon_sym___asm__] = ACTIONS(3524), + [anon_sym___asm] = ACTIONS(3524), + [sym_number_literal] = ACTIONS(3526), + [anon_sym_L_SQUOTE] = ACTIONS(3526), + [anon_sym_u_SQUOTE] = ACTIONS(3526), + [anon_sym_U_SQUOTE] = ACTIONS(3526), + [anon_sym_u8_SQUOTE] = ACTIONS(3526), + [anon_sym_SQUOTE] = ACTIONS(3526), + [anon_sym_L_DQUOTE] = ACTIONS(3526), + [anon_sym_u_DQUOTE] = ACTIONS(3526), + [anon_sym_U_DQUOTE] = ACTIONS(3526), + [anon_sym_u8_DQUOTE] = ACTIONS(3526), + [anon_sym_DQUOTE] = ACTIONS(3526), + [sym_true] = ACTIONS(3524), + [sym_false] = ACTIONS(3524), + [anon_sym_NULL] = ACTIONS(3524), + [anon_sym_nullptr] = ACTIONS(3524), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4164), - [anon_sym_decltype] = ACTIONS(4164), - [anon_sym_explicit] = ACTIONS(4164), - [anon_sym_export] = ACTIONS(4164), - [anon_sym_module] = ACTIONS(4164), - [anon_sym_import] = ACTIONS(4164), - [anon_sym_template] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_delete] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_namespace] = ACTIONS(4164), - [anon_sym_static_assert] = ACTIONS(4164), - [anon_sym_concept] = ACTIONS(4164), - [anon_sym_co_return] = ACTIONS(4164), - [anon_sym_co_yield] = ACTIONS(4164), - [anon_sym_R_DQUOTE] = ACTIONS(4166), - [anon_sym_LR_DQUOTE] = ACTIONS(4166), - [anon_sym_uR_DQUOTE] = ACTIONS(4166), - [anon_sym_UR_DQUOTE] = ACTIONS(4166), - [anon_sym_u8R_DQUOTE] = ACTIONS(4166), - [anon_sym_co_await] = ACTIONS(4164), - [anon_sym_new] = ACTIONS(4164), - [anon_sym_requires] = ACTIONS(4164), - [anon_sym_CARET_CARET] = ACTIONS(4166), - [anon_sym_LBRACK_COLON] = ACTIONS(4166), - [sym_this] = ACTIONS(4164), + [sym_auto] = ACTIONS(3524), + [anon_sym_decltype] = ACTIONS(3524), + [anon_sym_explicit] = ACTIONS(3524), + [anon_sym_export] = ACTIONS(3524), + [anon_sym_module] = ACTIONS(3524), + [anon_sym_import] = ACTIONS(3524), + [anon_sym_template] = ACTIONS(3524), + [anon_sym_operator] = ACTIONS(3524), + [anon_sym_try] = ACTIONS(3524), + [anon_sym_delete] = ACTIONS(3524), + [anon_sym_throw] = ACTIONS(3524), + [anon_sym_namespace] = ACTIONS(3524), + [anon_sym_static_assert] = ACTIONS(3524), + [anon_sym_concept] = ACTIONS(3524), + [anon_sym_co_return] = ACTIONS(3524), + [anon_sym_co_yield] = ACTIONS(3524), + [anon_sym_R_DQUOTE] = ACTIONS(3526), + [anon_sym_LR_DQUOTE] = ACTIONS(3526), + [anon_sym_uR_DQUOTE] = ACTIONS(3526), + [anon_sym_UR_DQUOTE] = ACTIONS(3526), + [anon_sym_u8R_DQUOTE] = ACTIONS(3526), + [anon_sym_co_await] = ACTIONS(3524), + [anon_sym_new] = ACTIONS(3524), + [anon_sym_requires] = ACTIONS(3524), + [anon_sym_CARET_CARET] = ACTIONS(3526), + [anon_sym_LBRACK_COLON] = ACTIONS(3526), + [sym_this] = ACTIONS(3524), }, - [STATE(761)] = { - [ts_builtin_sym_end] = ACTIONS(4170), - [sym_identifier] = ACTIONS(4168), - [aux_sym_preproc_include_token1] = ACTIONS(4168), - [aux_sym_preproc_def_token1] = ACTIONS(4168), - [aux_sym_preproc_if_token1] = ACTIONS(4168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4168), - [sym_preproc_directive] = ACTIONS(4168), - [anon_sym_LPAREN2] = ACTIONS(4170), - [anon_sym_BANG] = ACTIONS(4170), - [anon_sym_TILDE] = ACTIONS(4170), - [anon_sym_DASH] = ACTIONS(4168), - [anon_sym_PLUS] = ACTIONS(4168), - [anon_sym_STAR] = ACTIONS(4170), - [anon_sym_AMP_AMP] = ACTIONS(4170), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_SEMI] = ACTIONS(4170), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4168), - [anon_sym_virtual] = ACTIONS(4168), - [anon_sym_extern] = ACTIONS(4168), - [anon_sym___attribute__] = ACTIONS(4168), - [anon_sym___attribute] = ACTIONS(4168), - [anon_sym_using] = ACTIONS(4168), - [anon_sym_COLON_COLON] = ACTIONS(4170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4170), - [anon_sym___declspec] = ACTIONS(4168), - [anon_sym___based] = ACTIONS(4168), - [anon_sym___cdecl] = ACTIONS(4168), - [anon_sym___clrcall] = ACTIONS(4168), - [anon_sym___stdcall] = ACTIONS(4168), - [anon_sym___fastcall] = ACTIONS(4168), - [anon_sym___thiscall] = ACTIONS(4168), - [anon_sym___vectorcall] = ACTIONS(4168), - [anon_sym_LBRACE] = ACTIONS(4170), - [anon_sym_signed] = ACTIONS(4168), - [anon_sym_unsigned] = ACTIONS(4168), - [anon_sym_long] = ACTIONS(4168), - [anon_sym_short] = ACTIONS(4168), - [anon_sym_LBRACK] = ACTIONS(4168), - [anon_sym_static] = ACTIONS(4168), - [anon_sym_register] = ACTIONS(4168), - [anon_sym_inline] = ACTIONS(4168), - [anon_sym___inline] = ACTIONS(4168), - [anon_sym___inline__] = ACTIONS(4168), - [anon_sym___forceinline] = ACTIONS(4168), - [anon_sym_thread_local] = ACTIONS(4168), - [anon_sym___thread] = ACTIONS(4168), - [anon_sym_const] = ACTIONS(4168), - [anon_sym_constexpr] = ACTIONS(4168), - [anon_sym_volatile] = ACTIONS(4168), - [anon_sym_restrict] = ACTIONS(4168), - [anon_sym___restrict__] = ACTIONS(4168), - [anon_sym__Atomic] = ACTIONS(4168), - [anon_sym__Noreturn] = ACTIONS(4168), - [anon_sym_noreturn] = ACTIONS(4168), - [anon_sym__Nonnull] = ACTIONS(4168), - [anon_sym_mutable] = ACTIONS(4168), - [anon_sym_constinit] = ACTIONS(4168), - [anon_sym_consteval] = ACTIONS(4168), - [anon_sym_alignas] = ACTIONS(4168), - [anon_sym__Alignas] = ACTIONS(4168), - [sym_primitive_type] = ACTIONS(4168), - [anon_sym_enum] = ACTIONS(4168), - [anon_sym_class] = ACTIONS(4168), - [anon_sym_struct] = ACTIONS(4168), - [anon_sym_union] = ACTIONS(4168), - [anon_sym_if] = ACTIONS(4168), - [anon_sym_switch] = ACTIONS(4168), - [anon_sym_case] = ACTIONS(4168), - [anon_sym_default] = ACTIONS(4168), - [anon_sym_while] = ACTIONS(4168), - [anon_sym_do] = ACTIONS(4168), - [anon_sym_for] = ACTIONS(4168), - [anon_sym_return] = ACTIONS(4168), - [anon_sym_break] = ACTIONS(4168), - [anon_sym_continue] = ACTIONS(4168), - [anon_sym_goto] = ACTIONS(4168), - [anon_sym_not] = ACTIONS(4168), - [anon_sym_compl] = ACTIONS(4168), - [anon_sym_DASH_DASH] = ACTIONS(4170), - [anon_sym_PLUS_PLUS] = ACTIONS(4170), - [anon_sym_sizeof] = ACTIONS(4168), - [anon_sym___alignof__] = ACTIONS(4168), - [anon_sym___alignof] = ACTIONS(4168), - [anon_sym__alignof] = ACTIONS(4168), - [anon_sym_alignof] = ACTIONS(4168), - [anon_sym__Alignof] = ACTIONS(4168), - [anon_sym_offsetof] = ACTIONS(4168), - [anon_sym__Generic] = ACTIONS(4168), - [anon_sym_typename] = ACTIONS(4168), - [anon_sym_asm] = ACTIONS(4168), - [anon_sym___asm__] = ACTIONS(4168), - [anon_sym___asm] = ACTIONS(4168), - [sym_number_literal] = ACTIONS(4170), - [anon_sym_L_SQUOTE] = ACTIONS(4170), - [anon_sym_u_SQUOTE] = ACTIONS(4170), - [anon_sym_U_SQUOTE] = ACTIONS(4170), - [anon_sym_u8_SQUOTE] = ACTIONS(4170), - [anon_sym_SQUOTE] = ACTIONS(4170), - [anon_sym_L_DQUOTE] = ACTIONS(4170), - [anon_sym_u_DQUOTE] = ACTIONS(4170), - [anon_sym_U_DQUOTE] = ACTIONS(4170), - [anon_sym_u8_DQUOTE] = ACTIONS(4170), - [anon_sym_DQUOTE] = ACTIONS(4170), - [sym_true] = ACTIONS(4168), - [sym_false] = ACTIONS(4168), - [anon_sym_NULL] = ACTIONS(4168), - [anon_sym_nullptr] = ACTIONS(4168), + [STATE(642)] = { + [sym_identifier] = ACTIONS(3528), + [aux_sym_preproc_include_token1] = ACTIONS(3528), + [aux_sym_preproc_def_token1] = ACTIONS(3528), + [aux_sym_preproc_if_token1] = ACTIONS(3528), + [aux_sym_preproc_if_token2] = ACTIONS(3528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3528), + [sym_preproc_directive] = ACTIONS(3528), + [anon_sym_LPAREN2] = ACTIONS(3530), + [anon_sym_BANG] = ACTIONS(3530), + [anon_sym_TILDE] = ACTIONS(3530), + [anon_sym_DASH] = ACTIONS(3528), + [anon_sym_PLUS] = ACTIONS(3528), + [anon_sym_STAR] = ACTIONS(3530), + [anon_sym_AMP_AMP] = ACTIONS(3530), + [anon_sym_AMP] = ACTIONS(3528), + [anon_sym_SEMI] = ACTIONS(3530), + [anon_sym___extension__] = ACTIONS(3528), + [anon_sym_typedef] = ACTIONS(3528), + [anon_sym_virtual] = ACTIONS(3528), + [anon_sym_extern] = ACTIONS(3528), + [anon_sym___attribute__] = ACTIONS(3528), + [anon_sym___attribute] = ACTIONS(3528), + [anon_sym_using] = ACTIONS(3528), + [anon_sym_COLON_COLON] = ACTIONS(3530), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3530), + [anon_sym___declspec] = ACTIONS(3528), + [anon_sym___based] = ACTIONS(3528), + [anon_sym___cdecl] = ACTIONS(3528), + [anon_sym___clrcall] = ACTIONS(3528), + [anon_sym___stdcall] = ACTIONS(3528), + [anon_sym___fastcall] = ACTIONS(3528), + [anon_sym___thiscall] = ACTIONS(3528), + [anon_sym___vectorcall] = ACTIONS(3528), + [anon_sym_LBRACE] = ACTIONS(3530), + [anon_sym_signed] = ACTIONS(3528), + [anon_sym_unsigned] = ACTIONS(3528), + [anon_sym_long] = ACTIONS(3528), + [anon_sym_short] = ACTIONS(3528), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_static] = ACTIONS(3528), + [anon_sym_register] = ACTIONS(3528), + [anon_sym_inline] = ACTIONS(3528), + [anon_sym___inline] = ACTIONS(3528), + [anon_sym___inline__] = ACTIONS(3528), + [anon_sym___forceinline] = ACTIONS(3528), + [anon_sym_thread_local] = ACTIONS(3528), + [anon_sym___thread] = ACTIONS(3528), + [anon_sym_const] = ACTIONS(3528), + [anon_sym_constexpr] = ACTIONS(3528), + [anon_sym_volatile] = ACTIONS(3528), + [anon_sym_restrict] = ACTIONS(3528), + [anon_sym___restrict__] = ACTIONS(3528), + [anon_sym__Atomic] = ACTIONS(3528), + [anon_sym__Noreturn] = ACTIONS(3528), + [anon_sym_noreturn] = ACTIONS(3528), + [anon_sym__Nonnull] = ACTIONS(3528), + [anon_sym_mutable] = ACTIONS(3528), + [anon_sym_constinit] = ACTIONS(3528), + [anon_sym_consteval] = ACTIONS(3528), + [anon_sym_alignas] = ACTIONS(3528), + [anon_sym__Alignas] = ACTIONS(3528), + [sym_primitive_type] = ACTIONS(3528), + [anon_sym_enum] = ACTIONS(3528), + [anon_sym_class] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(3528), + [anon_sym_union] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(3528), + [anon_sym_else] = ACTIONS(3528), + [anon_sym_switch] = ACTIONS(3528), + [anon_sym_case] = ACTIONS(3528), + [anon_sym_default] = ACTIONS(3528), + [anon_sym_while] = ACTIONS(3528), + [anon_sym_do] = ACTIONS(3528), + [anon_sym_for] = ACTIONS(3528), + [anon_sym_return] = ACTIONS(3528), + [anon_sym_break] = ACTIONS(3528), + [anon_sym_continue] = ACTIONS(3528), + [anon_sym_goto] = ACTIONS(3528), + [anon_sym___try] = ACTIONS(3528), + [anon_sym___leave] = ACTIONS(3528), + [anon_sym_not] = ACTIONS(3528), + [anon_sym_compl] = ACTIONS(3528), + [anon_sym_DASH_DASH] = ACTIONS(3530), + [anon_sym_PLUS_PLUS] = ACTIONS(3530), + [anon_sym_sizeof] = ACTIONS(3528), + [anon_sym___alignof__] = ACTIONS(3528), + [anon_sym___alignof] = ACTIONS(3528), + [anon_sym__alignof] = ACTIONS(3528), + [anon_sym_alignof] = ACTIONS(3528), + [anon_sym__Alignof] = ACTIONS(3528), + [anon_sym_offsetof] = ACTIONS(3528), + [anon_sym__Generic] = ACTIONS(3528), + [anon_sym_typename] = ACTIONS(3528), + [anon_sym_asm] = ACTIONS(3528), + [anon_sym___asm__] = ACTIONS(3528), + [anon_sym___asm] = ACTIONS(3528), + [sym_number_literal] = ACTIONS(3530), + [anon_sym_L_SQUOTE] = ACTIONS(3530), + [anon_sym_u_SQUOTE] = ACTIONS(3530), + [anon_sym_U_SQUOTE] = ACTIONS(3530), + [anon_sym_u8_SQUOTE] = ACTIONS(3530), + [anon_sym_SQUOTE] = ACTIONS(3530), + [anon_sym_L_DQUOTE] = ACTIONS(3530), + [anon_sym_u_DQUOTE] = ACTIONS(3530), + [anon_sym_U_DQUOTE] = ACTIONS(3530), + [anon_sym_u8_DQUOTE] = ACTIONS(3530), + [anon_sym_DQUOTE] = ACTIONS(3530), + [sym_true] = ACTIONS(3528), + [sym_false] = ACTIONS(3528), + [anon_sym_NULL] = ACTIONS(3528), + [anon_sym_nullptr] = ACTIONS(3528), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3528), + [anon_sym_decltype] = ACTIONS(3528), + [anon_sym_explicit] = ACTIONS(3528), + [anon_sym_export] = ACTIONS(3528), + [anon_sym_module] = ACTIONS(3528), + [anon_sym_import] = ACTIONS(3528), + [anon_sym_template] = ACTIONS(3528), + [anon_sym_operator] = ACTIONS(3528), + [anon_sym_try] = ACTIONS(3528), + [anon_sym_delete] = ACTIONS(3528), + [anon_sym_throw] = ACTIONS(3528), + [anon_sym_namespace] = ACTIONS(3528), + [anon_sym_static_assert] = ACTIONS(3528), + [anon_sym_concept] = ACTIONS(3528), + [anon_sym_co_return] = ACTIONS(3528), + [anon_sym_co_yield] = ACTIONS(3528), + [anon_sym_R_DQUOTE] = ACTIONS(3530), + [anon_sym_LR_DQUOTE] = ACTIONS(3530), + [anon_sym_uR_DQUOTE] = ACTIONS(3530), + [anon_sym_UR_DQUOTE] = ACTIONS(3530), + [anon_sym_u8R_DQUOTE] = ACTIONS(3530), + [anon_sym_co_await] = ACTIONS(3528), + [anon_sym_new] = ACTIONS(3528), + [anon_sym_requires] = ACTIONS(3528), + [anon_sym_CARET_CARET] = ACTIONS(3530), + [anon_sym_LBRACK_COLON] = ACTIONS(3530), + [sym_this] = ACTIONS(3528), + }, + [STATE(643)] = { + [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(3389), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3384), + [anon_sym_PLUS] = ACTIONS(3384), + [anon_sym_STAR] = ACTIONS(3389), + [anon_sym_AMP_AMP] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3384), + [anon_sym_SEMI] = ACTIONS(3389), + [anon_sym___extension__] = ACTIONS(3384), + [anon_sym_typedef] = ACTIONS(3384), + [anon_sym_virtual] = ACTIONS(3384), + [anon_sym_extern] = ACTIONS(3384), + [anon_sym___attribute__] = ACTIONS(3384), + [anon_sym___attribute] = ACTIONS(3384), + [anon_sym_using] = ACTIONS(3384), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3389), + [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(3389), + [anon_sym_signed] = ACTIONS(3384), + [anon_sym_unsigned] = ACTIONS(3384), + [anon_sym_long] = ACTIONS(3384), + [anon_sym_short] = ACTIONS(3384), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3384), + [anon_sym_register] = ACTIONS(3384), + [anon_sym_inline] = ACTIONS(3384), + [anon_sym___inline] = ACTIONS(3384), + [anon_sym___inline__] = ACTIONS(3384), + [anon_sym___forceinline] = ACTIONS(3384), + [anon_sym_thread_local] = ACTIONS(3384), + [anon_sym___thread] = 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__Nonnull] = ACTIONS(3384), + [anon_sym_mutable] = ACTIONS(3384), + [anon_sym_constinit] = ACTIONS(3384), + [anon_sym_consteval] = ACTIONS(3384), + [anon_sym_alignas] = ACTIONS(3384), + [anon_sym__Alignas] = 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_else] = 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___try] = ACTIONS(3384), + [anon_sym___leave] = ACTIONS(3384), + [anon_sym_not] = ACTIONS(3384), + [anon_sym_compl] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3389), + [anon_sym_PLUS_PLUS] = ACTIONS(3389), + [anon_sym_sizeof] = ACTIONS(3384), + [anon_sym___alignof__] = ACTIONS(3384), + [anon_sym___alignof] = ACTIONS(3384), + [anon_sym__alignof] = ACTIONS(3384), + [anon_sym_alignof] = ACTIONS(3384), + [anon_sym__Alignof] = ACTIONS(3384), + [anon_sym_offsetof] = ACTIONS(3384), + [anon_sym__Generic] = ACTIONS(3384), + [anon_sym_typename] = ACTIONS(3384), + [anon_sym_asm] = ACTIONS(3384), + [anon_sym___asm__] = ACTIONS(3384), + [anon_sym___asm] = ACTIONS(3384), + [sym_number_literal] = ACTIONS(3389), + [anon_sym_L_SQUOTE] = ACTIONS(3389), + [anon_sym_u_SQUOTE] = ACTIONS(3389), + [anon_sym_U_SQUOTE] = ACTIONS(3389), + [anon_sym_u8_SQUOTE] = ACTIONS(3389), + [anon_sym_SQUOTE] = ACTIONS(3389), + [anon_sym_L_DQUOTE] = ACTIONS(3389), + [anon_sym_u_DQUOTE] = ACTIONS(3389), + [anon_sym_U_DQUOTE] = ACTIONS(3389), + [anon_sym_u8_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(3389), + [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_explicit] = ACTIONS(3384), + [anon_sym_export] = ACTIONS(3384), + [anon_sym_module] = ACTIONS(3384), + [anon_sym_import] = 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_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(3389), + [anon_sym_LR_DQUOTE] = ACTIONS(3389), + [anon_sym_uR_DQUOTE] = ACTIONS(3389), + [anon_sym_UR_DQUOTE] = ACTIONS(3389), + [anon_sym_u8R_DQUOTE] = ACTIONS(3389), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3384), + [anon_sym_requires] = ACTIONS(3384), + [anon_sym_CARET_CARET] = ACTIONS(3389), + [anon_sym_LBRACK_COLON] = ACTIONS(3389), + [sym_this] = ACTIONS(3384), + }, + [STATE(644)] = { + [sym_identifier] = ACTIONS(3532), + [aux_sym_preproc_include_token1] = ACTIONS(3532), + [aux_sym_preproc_def_token1] = ACTIONS(3532), + [aux_sym_preproc_if_token1] = ACTIONS(3532), + [aux_sym_preproc_if_token2] = ACTIONS(3532), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3532), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3532), + [sym_preproc_directive] = ACTIONS(3532), + [anon_sym_LPAREN2] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3534), + [anon_sym_TILDE] = ACTIONS(3534), + [anon_sym_DASH] = ACTIONS(3532), + [anon_sym_PLUS] = ACTIONS(3532), + [anon_sym_STAR] = ACTIONS(3534), + [anon_sym_AMP_AMP] = ACTIONS(3534), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_SEMI] = ACTIONS(3534), + [anon_sym___extension__] = ACTIONS(3532), + [anon_sym_typedef] = ACTIONS(3532), + [anon_sym_virtual] = ACTIONS(3532), + [anon_sym_extern] = ACTIONS(3532), + [anon_sym___attribute__] = ACTIONS(3532), + [anon_sym___attribute] = ACTIONS(3532), + [anon_sym_using] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3534), + [anon_sym___declspec] = ACTIONS(3532), + [anon_sym___based] = ACTIONS(3532), + [anon_sym___cdecl] = ACTIONS(3532), + [anon_sym___clrcall] = ACTIONS(3532), + [anon_sym___stdcall] = ACTIONS(3532), + [anon_sym___fastcall] = ACTIONS(3532), + [anon_sym___thiscall] = ACTIONS(3532), + [anon_sym___vectorcall] = ACTIONS(3532), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_signed] = ACTIONS(3532), + [anon_sym_unsigned] = ACTIONS(3532), + [anon_sym_long] = ACTIONS(3532), + [anon_sym_short] = ACTIONS(3532), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_static] = ACTIONS(3532), + [anon_sym_register] = ACTIONS(3532), + [anon_sym_inline] = ACTIONS(3532), + [anon_sym___inline] = ACTIONS(3532), + [anon_sym___inline__] = ACTIONS(3532), + [anon_sym___forceinline] = ACTIONS(3532), + [anon_sym_thread_local] = ACTIONS(3532), + [anon_sym___thread] = ACTIONS(3532), + [anon_sym_const] = ACTIONS(3532), + [anon_sym_constexpr] = ACTIONS(3532), + [anon_sym_volatile] = ACTIONS(3532), + [anon_sym_restrict] = ACTIONS(3532), + [anon_sym___restrict__] = ACTIONS(3532), + [anon_sym__Atomic] = ACTIONS(3532), + [anon_sym__Noreturn] = ACTIONS(3532), + [anon_sym_noreturn] = ACTIONS(3532), + [anon_sym__Nonnull] = ACTIONS(3532), + [anon_sym_mutable] = ACTIONS(3532), + [anon_sym_constinit] = ACTIONS(3532), + [anon_sym_consteval] = ACTIONS(3532), + [anon_sym_alignas] = ACTIONS(3532), + [anon_sym__Alignas] = ACTIONS(3532), + [sym_primitive_type] = ACTIONS(3532), + [anon_sym_enum] = ACTIONS(3532), + [anon_sym_class] = ACTIONS(3532), + [anon_sym_struct] = ACTIONS(3532), + [anon_sym_union] = ACTIONS(3532), + [anon_sym_if] = ACTIONS(3532), + [anon_sym_else] = ACTIONS(3532), + [anon_sym_switch] = ACTIONS(3532), + [anon_sym_case] = ACTIONS(3532), + [anon_sym_default] = ACTIONS(3532), + [anon_sym_while] = ACTIONS(3532), + [anon_sym_do] = ACTIONS(3532), + [anon_sym_for] = ACTIONS(3532), + [anon_sym_return] = ACTIONS(3532), + [anon_sym_break] = ACTIONS(3532), + [anon_sym_continue] = ACTIONS(3532), + [anon_sym_goto] = ACTIONS(3532), + [anon_sym___try] = ACTIONS(3532), + [anon_sym___leave] = ACTIONS(3532), + [anon_sym_not] = ACTIONS(3532), + [anon_sym_compl] = ACTIONS(3532), + [anon_sym_DASH_DASH] = ACTIONS(3534), + [anon_sym_PLUS_PLUS] = ACTIONS(3534), + [anon_sym_sizeof] = ACTIONS(3532), + [anon_sym___alignof__] = ACTIONS(3532), + [anon_sym___alignof] = ACTIONS(3532), + [anon_sym__alignof] = ACTIONS(3532), + [anon_sym_alignof] = ACTIONS(3532), + [anon_sym__Alignof] = ACTIONS(3532), + [anon_sym_offsetof] = ACTIONS(3532), + [anon_sym__Generic] = ACTIONS(3532), + [anon_sym_typename] = ACTIONS(3532), + [anon_sym_asm] = ACTIONS(3532), + [anon_sym___asm__] = ACTIONS(3532), + [anon_sym___asm] = ACTIONS(3532), + [sym_number_literal] = ACTIONS(3534), + [anon_sym_L_SQUOTE] = ACTIONS(3534), + [anon_sym_u_SQUOTE] = ACTIONS(3534), + [anon_sym_U_SQUOTE] = ACTIONS(3534), + [anon_sym_u8_SQUOTE] = ACTIONS(3534), + [anon_sym_SQUOTE] = ACTIONS(3534), + [anon_sym_L_DQUOTE] = ACTIONS(3534), + [anon_sym_u_DQUOTE] = ACTIONS(3534), + [anon_sym_U_DQUOTE] = ACTIONS(3534), + [anon_sym_u8_DQUOTE] = ACTIONS(3534), + [anon_sym_DQUOTE] = ACTIONS(3534), + [sym_true] = ACTIONS(3532), + [sym_false] = ACTIONS(3532), + [anon_sym_NULL] = ACTIONS(3532), + [anon_sym_nullptr] = ACTIONS(3532), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3532), + [anon_sym_decltype] = ACTIONS(3532), + [anon_sym_explicit] = ACTIONS(3532), + [anon_sym_export] = ACTIONS(3532), + [anon_sym_module] = ACTIONS(3532), + [anon_sym_import] = ACTIONS(3532), + [anon_sym_template] = ACTIONS(3532), + [anon_sym_operator] = ACTIONS(3532), + [anon_sym_try] = ACTIONS(3532), + [anon_sym_delete] = ACTIONS(3532), + [anon_sym_throw] = ACTIONS(3532), + [anon_sym_namespace] = ACTIONS(3532), + [anon_sym_static_assert] = ACTIONS(3532), + [anon_sym_concept] = ACTIONS(3532), + [anon_sym_co_return] = ACTIONS(3532), + [anon_sym_co_yield] = ACTIONS(3532), + [anon_sym_R_DQUOTE] = ACTIONS(3534), + [anon_sym_LR_DQUOTE] = ACTIONS(3534), + [anon_sym_uR_DQUOTE] = ACTIONS(3534), + [anon_sym_UR_DQUOTE] = ACTIONS(3534), + [anon_sym_u8R_DQUOTE] = ACTIONS(3534), + [anon_sym_co_await] = ACTIONS(3532), + [anon_sym_new] = ACTIONS(3532), + [anon_sym_requires] = ACTIONS(3532), + [anon_sym_CARET_CARET] = ACTIONS(3534), + [anon_sym_LBRACK_COLON] = ACTIONS(3534), + [sym_this] = ACTIONS(3532), + }, + [STATE(645)] = { + [sym_expression] = STATE(5919), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_initializer_list] = STATE(5986), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(2384), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2386), + [aux_sym_preproc_if_token2] = ACTIONS(2386), + [aux_sym_preproc_else_token1] = ACTIONS(2386), + [aux_sym_preproc_elif_token1] = ACTIONS(2384), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2386), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2386), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(3859), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2386), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_PERCENT] = ACTIONS(2386), + [anon_sym_PIPE_PIPE] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_CARET] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_EQ_EQ] = ACTIONS(2386), + [anon_sym_BANG_EQ] = ACTIONS(2386), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_GT_EQ] = ACTIONS(2386), + [anon_sym_LT_EQ] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2386), + [anon_sym_GT_GT] = ACTIONS(2386), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_QMARK] = ACTIONS(2386), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_LT_EQ_GT] = ACTIONS(2386), + [anon_sym_or] = ACTIONS(2384), + [anon_sym_and] = ACTIONS(2384), + [anon_sym_bitor] = ACTIONS(2384), + [anon_sym_xor] = ACTIONS(2384), + [anon_sym_bitand] = ACTIONS(2384), + [anon_sym_not_eq] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_sizeof] = ACTIONS(3881), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DOT_STAR] = ACTIONS(2386), + [anon_sym_DASH_GT] = ACTIONS(2386), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4168), - [anon_sym_decltype] = ACTIONS(4168), - [anon_sym_explicit] = ACTIONS(4168), - [anon_sym_export] = ACTIONS(4168), - [anon_sym_module] = ACTIONS(4168), - [anon_sym_import] = ACTIONS(4168), - [anon_sym_template] = ACTIONS(4168), - [anon_sym_operator] = ACTIONS(4168), - [anon_sym_try] = ACTIONS(4168), - [anon_sym_delete] = ACTIONS(4168), - [anon_sym_throw] = ACTIONS(4168), - [anon_sym_namespace] = ACTIONS(4168), - [anon_sym_static_assert] = ACTIONS(4168), - [anon_sym_concept] = ACTIONS(4168), - [anon_sym_co_return] = ACTIONS(4168), - [anon_sym_co_yield] = ACTIONS(4168), - [anon_sym_R_DQUOTE] = ACTIONS(4170), - [anon_sym_LR_DQUOTE] = ACTIONS(4170), - [anon_sym_uR_DQUOTE] = ACTIONS(4170), - [anon_sym_UR_DQUOTE] = ACTIONS(4170), - [anon_sym_u8R_DQUOTE] = ACTIONS(4170), - [anon_sym_co_await] = ACTIONS(4168), - [anon_sym_new] = ACTIONS(4168), - [anon_sym_requires] = ACTIONS(4168), - [anon_sym_CARET_CARET] = ACTIONS(4170), - [anon_sym_LBRACK_COLON] = ACTIONS(4170), - [sym_this] = ACTIONS(4168), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(762)] = { - [ts_builtin_sym_end] = ACTIONS(4526), - [sym_identifier] = ACTIONS(4528), - [aux_sym_preproc_include_token1] = ACTIONS(4528), - [aux_sym_preproc_def_token1] = ACTIONS(4528), - [aux_sym_preproc_if_token1] = ACTIONS(4528), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4528), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4528), - [sym_preproc_directive] = ACTIONS(4528), - [anon_sym_LPAREN2] = ACTIONS(4526), - [anon_sym_BANG] = ACTIONS(4526), - [anon_sym_TILDE] = ACTIONS(4526), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_STAR] = ACTIONS(4526), - [anon_sym_AMP_AMP] = ACTIONS(4526), - [anon_sym_AMP] = ACTIONS(4528), - [anon_sym_SEMI] = ACTIONS(4526), - [anon_sym___extension__] = ACTIONS(4528), - [anon_sym_typedef] = ACTIONS(4528), - [anon_sym_virtual] = ACTIONS(4528), - [anon_sym_extern] = ACTIONS(4528), - [anon_sym___attribute__] = ACTIONS(4528), - [anon_sym___attribute] = ACTIONS(4528), - [anon_sym_using] = ACTIONS(4528), - [anon_sym_COLON_COLON] = ACTIONS(4526), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4526), - [anon_sym___declspec] = ACTIONS(4528), - [anon_sym___based] = ACTIONS(4528), - [anon_sym___cdecl] = ACTIONS(4528), - [anon_sym___clrcall] = ACTIONS(4528), - [anon_sym___stdcall] = ACTIONS(4528), - [anon_sym___fastcall] = ACTIONS(4528), - [anon_sym___thiscall] = ACTIONS(4528), - [anon_sym___vectorcall] = ACTIONS(4528), - [anon_sym_LBRACE] = ACTIONS(4526), - [anon_sym_signed] = ACTIONS(4528), - [anon_sym_unsigned] = ACTIONS(4528), - [anon_sym_long] = ACTIONS(4528), - [anon_sym_short] = ACTIONS(4528), - [anon_sym_LBRACK] = ACTIONS(4528), - [anon_sym_static] = ACTIONS(4528), - [anon_sym_register] = ACTIONS(4528), - [anon_sym_inline] = ACTIONS(4528), - [anon_sym___inline] = ACTIONS(4528), - [anon_sym___inline__] = ACTIONS(4528), - [anon_sym___forceinline] = ACTIONS(4528), - [anon_sym_thread_local] = ACTIONS(4528), - [anon_sym___thread] = ACTIONS(4528), - [anon_sym_const] = ACTIONS(4528), - [anon_sym_constexpr] = ACTIONS(4528), - [anon_sym_volatile] = ACTIONS(4528), - [anon_sym_restrict] = ACTIONS(4528), - [anon_sym___restrict__] = ACTIONS(4528), - [anon_sym__Atomic] = ACTIONS(4528), - [anon_sym__Noreturn] = ACTIONS(4528), - [anon_sym_noreturn] = ACTIONS(4528), - [anon_sym__Nonnull] = ACTIONS(4528), - [anon_sym_mutable] = ACTIONS(4528), - [anon_sym_constinit] = ACTIONS(4528), - [anon_sym_consteval] = ACTIONS(4528), - [anon_sym_alignas] = ACTIONS(4528), - [anon_sym__Alignas] = ACTIONS(4528), - [sym_primitive_type] = ACTIONS(4528), - [anon_sym_enum] = ACTIONS(4528), - [anon_sym_class] = ACTIONS(4528), - [anon_sym_struct] = ACTIONS(4528), - [anon_sym_union] = ACTIONS(4528), - [anon_sym_if] = ACTIONS(4528), - [anon_sym_switch] = ACTIONS(4528), - [anon_sym_case] = ACTIONS(4528), - [anon_sym_default] = ACTIONS(4528), - [anon_sym_while] = ACTIONS(4528), - [anon_sym_do] = ACTIONS(4528), - [anon_sym_for] = ACTIONS(4528), - [anon_sym_return] = ACTIONS(4528), - [anon_sym_break] = ACTIONS(4528), - [anon_sym_continue] = ACTIONS(4528), - [anon_sym_goto] = ACTIONS(4528), - [anon_sym_not] = ACTIONS(4528), - [anon_sym_compl] = ACTIONS(4528), - [anon_sym_DASH_DASH] = ACTIONS(4526), - [anon_sym_PLUS_PLUS] = ACTIONS(4526), - [anon_sym_sizeof] = ACTIONS(4528), - [anon_sym___alignof__] = ACTIONS(4528), - [anon_sym___alignof] = ACTIONS(4528), - [anon_sym__alignof] = ACTIONS(4528), - [anon_sym_alignof] = ACTIONS(4528), - [anon_sym__Alignof] = ACTIONS(4528), - [anon_sym_offsetof] = ACTIONS(4528), - [anon_sym__Generic] = ACTIONS(4528), - [anon_sym_typename] = ACTIONS(4528), - [anon_sym_asm] = ACTIONS(4528), - [anon_sym___asm__] = ACTIONS(4528), - [anon_sym___asm] = ACTIONS(4528), - [sym_number_literal] = ACTIONS(4526), - [anon_sym_L_SQUOTE] = ACTIONS(4526), - [anon_sym_u_SQUOTE] = ACTIONS(4526), - [anon_sym_U_SQUOTE] = ACTIONS(4526), - [anon_sym_u8_SQUOTE] = ACTIONS(4526), - [anon_sym_SQUOTE] = ACTIONS(4526), - [anon_sym_L_DQUOTE] = ACTIONS(4526), - [anon_sym_u_DQUOTE] = ACTIONS(4526), - [anon_sym_U_DQUOTE] = ACTIONS(4526), - [anon_sym_u8_DQUOTE] = ACTIONS(4526), - [anon_sym_DQUOTE] = ACTIONS(4526), - [sym_true] = ACTIONS(4528), - [sym_false] = ACTIONS(4528), - [anon_sym_NULL] = ACTIONS(4528), - [anon_sym_nullptr] = ACTIONS(4528), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4528), - [anon_sym_decltype] = ACTIONS(4528), - [anon_sym_explicit] = ACTIONS(4528), - [anon_sym_export] = ACTIONS(4528), - [anon_sym_module] = ACTIONS(4528), - [anon_sym_import] = ACTIONS(4528), - [anon_sym_template] = ACTIONS(4528), - [anon_sym_operator] = ACTIONS(4528), - [anon_sym_try] = ACTIONS(4528), - [anon_sym_delete] = ACTIONS(4528), - [anon_sym_throw] = ACTIONS(4528), - [anon_sym_namespace] = ACTIONS(4528), - [anon_sym_static_assert] = ACTIONS(4528), - [anon_sym_concept] = ACTIONS(4528), - [anon_sym_co_return] = ACTIONS(4528), - [anon_sym_co_yield] = ACTIONS(4528), - [anon_sym_R_DQUOTE] = ACTIONS(4526), - [anon_sym_LR_DQUOTE] = ACTIONS(4526), - [anon_sym_uR_DQUOTE] = ACTIONS(4526), - [anon_sym_UR_DQUOTE] = ACTIONS(4526), - [anon_sym_u8R_DQUOTE] = ACTIONS(4526), - [anon_sym_co_await] = ACTIONS(4528), - [anon_sym_new] = ACTIONS(4528), - [anon_sym_requires] = ACTIONS(4528), - [anon_sym_CARET_CARET] = ACTIONS(4526), - [anon_sym_LBRACK_COLON] = ACTIONS(4526), - [sym_this] = ACTIONS(4528), + [STATE(646)] = { + [sym_identifier] = ACTIONS(3544), + [aux_sym_preproc_include_token1] = ACTIONS(3544), + [aux_sym_preproc_def_token1] = ACTIONS(3544), + [aux_sym_preproc_if_token1] = ACTIONS(3544), + [aux_sym_preproc_if_token2] = ACTIONS(3544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3544), + [sym_preproc_directive] = ACTIONS(3544), + [anon_sym_LPAREN2] = ACTIONS(3546), + [anon_sym_BANG] = ACTIONS(3546), + [anon_sym_TILDE] = ACTIONS(3546), + [anon_sym_DASH] = ACTIONS(3544), + [anon_sym_PLUS] = ACTIONS(3544), + [anon_sym_STAR] = ACTIONS(3546), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3544), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym___extension__] = ACTIONS(3544), + [anon_sym_typedef] = ACTIONS(3544), + [anon_sym_virtual] = ACTIONS(3544), + [anon_sym_extern] = ACTIONS(3544), + [anon_sym___attribute__] = ACTIONS(3544), + [anon_sym___attribute] = ACTIONS(3544), + [anon_sym_using] = ACTIONS(3544), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3546), + [anon_sym___declspec] = ACTIONS(3544), + [anon_sym___based] = ACTIONS(3544), + [anon_sym___cdecl] = ACTIONS(3544), + [anon_sym___clrcall] = ACTIONS(3544), + [anon_sym___stdcall] = ACTIONS(3544), + [anon_sym___fastcall] = ACTIONS(3544), + [anon_sym___thiscall] = ACTIONS(3544), + [anon_sym___vectorcall] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3546), + [anon_sym_signed] = ACTIONS(3544), + [anon_sym_unsigned] = ACTIONS(3544), + [anon_sym_long] = ACTIONS(3544), + [anon_sym_short] = ACTIONS(3544), + [anon_sym_LBRACK] = ACTIONS(3544), + [anon_sym_static] = ACTIONS(3544), + [anon_sym_register] = ACTIONS(3544), + [anon_sym_inline] = ACTIONS(3544), + [anon_sym___inline] = ACTIONS(3544), + [anon_sym___inline__] = ACTIONS(3544), + [anon_sym___forceinline] = ACTIONS(3544), + [anon_sym_thread_local] = ACTIONS(3544), + [anon_sym___thread] = ACTIONS(3544), + [anon_sym_const] = ACTIONS(3544), + [anon_sym_constexpr] = ACTIONS(3544), + [anon_sym_volatile] = ACTIONS(3544), + [anon_sym_restrict] = ACTIONS(3544), + [anon_sym___restrict__] = ACTIONS(3544), + [anon_sym__Atomic] = ACTIONS(3544), + [anon_sym__Noreturn] = ACTIONS(3544), + [anon_sym_noreturn] = ACTIONS(3544), + [anon_sym__Nonnull] = ACTIONS(3544), + [anon_sym_mutable] = ACTIONS(3544), + [anon_sym_constinit] = ACTIONS(3544), + [anon_sym_consteval] = ACTIONS(3544), + [anon_sym_alignas] = ACTIONS(3544), + [anon_sym__Alignas] = ACTIONS(3544), + [sym_primitive_type] = ACTIONS(3544), + [anon_sym_enum] = ACTIONS(3544), + [anon_sym_class] = ACTIONS(3544), + [anon_sym_struct] = ACTIONS(3544), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_else] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3544), + [anon_sym_case] = ACTIONS(3544), + [anon_sym_default] = ACTIONS(3544), + [anon_sym_while] = ACTIONS(3544), + [anon_sym_do] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3544), + [anon_sym_return] = ACTIONS(3544), + [anon_sym_break] = ACTIONS(3544), + [anon_sym_continue] = ACTIONS(3544), + [anon_sym_goto] = ACTIONS(3544), + [anon_sym___try] = ACTIONS(3544), + [anon_sym___leave] = ACTIONS(3544), + [anon_sym_not] = ACTIONS(3544), + [anon_sym_compl] = ACTIONS(3544), + [anon_sym_DASH_DASH] = ACTIONS(3546), + [anon_sym_PLUS_PLUS] = ACTIONS(3546), + [anon_sym_sizeof] = ACTIONS(3544), + [anon_sym___alignof__] = ACTIONS(3544), + [anon_sym___alignof] = ACTIONS(3544), + [anon_sym__alignof] = ACTIONS(3544), + [anon_sym_alignof] = ACTIONS(3544), + [anon_sym__Alignof] = ACTIONS(3544), + [anon_sym_offsetof] = ACTIONS(3544), + [anon_sym__Generic] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3544), + [anon_sym_asm] = ACTIONS(3544), + [anon_sym___asm__] = ACTIONS(3544), + [anon_sym___asm] = ACTIONS(3544), + [sym_number_literal] = ACTIONS(3546), + [anon_sym_L_SQUOTE] = ACTIONS(3546), + [anon_sym_u_SQUOTE] = ACTIONS(3546), + [anon_sym_U_SQUOTE] = ACTIONS(3546), + [anon_sym_u8_SQUOTE] = ACTIONS(3546), + [anon_sym_SQUOTE] = ACTIONS(3546), + [anon_sym_L_DQUOTE] = ACTIONS(3546), + [anon_sym_u_DQUOTE] = ACTIONS(3546), + [anon_sym_U_DQUOTE] = ACTIONS(3546), + [anon_sym_u8_DQUOTE] = ACTIONS(3546), + [anon_sym_DQUOTE] = ACTIONS(3546), + [sym_true] = ACTIONS(3544), + [sym_false] = ACTIONS(3544), + [anon_sym_NULL] = ACTIONS(3544), + [anon_sym_nullptr] = ACTIONS(3544), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3544), + [anon_sym_decltype] = ACTIONS(3544), + [anon_sym_explicit] = ACTIONS(3544), + [anon_sym_export] = ACTIONS(3544), + [anon_sym_module] = ACTIONS(3544), + [anon_sym_import] = ACTIONS(3544), + [anon_sym_template] = ACTIONS(3544), + [anon_sym_operator] = ACTIONS(3544), + [anon_sym_try] = ACTIONS(3544), + [anon_sym_delete] = ACTIONS(3544), + [anon_sym_throw] = ACTIONS(3544), + [anon_sym_namespace] = ACTIONS(3544), + [anon_sym_static_assert] = ACTIONS(3544), + [anon_sym_concept] = ACTIONS(3544), + [anon_sym_co_return] = ACTIONS(3544), + [anon_sym_co_yield] = ACTIONS(3544), + [anon_sym_R_DQUOTE] = ACTIONS(3546), + [anon_sym_LR_DQUOTE] = ACTIONS(3546), + [anon_sym_uR_DQUOTE] = ACTIONS(3546), + [anon_sym_UR_DQUOTE] = ACTIONS(3546), + [anon_sym_u8R_DQUOTE] = ACTIONS(3546), + [anon_sym_co_await] = ACTIONS(3544), + [anon_sym_new] = ACTIONS(3544), + [anon_sym_requires] = ACTIONS(3544), + [anon_sym_CARET_CARET] = ACTIONS(3546), + [anon_sym_LBRACK_COLON] = ACTIONS(3546), + [sym_this] = ACTIONS(3544), }, - [STATE(763)] = { - [sym_identifier] = ACTIONS(4034), - [aux_sym_preproc_include_token1] = ACTIONS(4034), - [aux_sym_preproc_def_token1] = ACTIONS(4034), - [aux_sym_preproc_if_token1] = ACTIONS(4034), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4034), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4034), - [sym_preproc_directive] = ACTIONS(4034), - [anon_sym_LPAREN2] = ACTIONS(4036), - [anon_sym_BANG] = ACTIONS(4036), - [anon_sym_TILDE] = ACTIONS(4036), - [anon_sym_DASH] = ACTIONS(4034), - [anon_sym_PLUS] = ACTIONS(4034), - [anon_sym_STAR] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_AMP] = ACTIONS(4034), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym___extension__] = ACTIONS(4034), - [anon_sym_typedef] = ACTIONS(4034), - [anon_sym_virtual] = ACTIONS(4034), - [anon_sym_extern] = ACTIONS(4034), - [anon_sym___attribute__] = ACTIONS(4034), - [anon_sym___attribute] = ACTIONS(4034), - [anon_sym_using] = ACTIONS(4034), - [anon_sym_COLON_COLON] = ACTIONS(4036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4036), - [anon_sym___declspec] = ACTIONS(4034), - [anon_sym___based] = ACTIONS(4034), - [anon_sym___cdecl] = ACTIONS(4034), - [anon_sym___clrcall] = ACTIONS(4034), - [anon_sym___stdcall] = ACTIONS(4034), - [anon_sym___fastcall] = ACTIONS(4034), - [anon_sym___thiscall] = ACTIONS(4034), - [anon_sym___vectorcall] = ACTIONS(4034), - [anon_sym_LBRACE] = ACTIONS(4036), - [anon_sym_RBRACE] = ACTIONS(4036), - [anon_sym_signed] = ACTIONS(4034), - [anon_sym_unsigned] = ACTIONS(4034), - [anon_sym_long] = ACTIONS(4034), - [anon_sym_short] = ACTIONS(4034), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_static] = ACTIONS(4034), - [anon_sym_register] = ACTIONS(4034), - [anon_sym_inline] = ACTIONS(4034), - [anon_sym___inline] = ACTIONS(4034), - [anon_sym___inline__] = ACTIONS(4034), - [anon_sym___forceinline] = ACTIONS(4034), - [anon_sym_thread_local] = ACTIONS(4034), - [anon_sym___thread] = ACTIONS(4034), - [anon_sym_const] = ACTIONS(4034), - [anon_sym_constexpr] = ACTIONS(4034), - [anon_sym_volatile] = ACTIONS(4034), - [anon_sym_restrict] = ACTIONS(4034), - [anon_sym___restrict__] = ACTIONS(4034), - [anon_sym__Atomic] = ACTIONS(4034), - [anon_sym__Noreturn] = ACTIONS(4034), - [anon_sym_noreturn] = ACTIONS(4034), - [anon_sym__Nonnull] = ACTIONS(4034), - [anon_sym_mutable] = ACTIONS(4034), - [anon_sym_constinit] = ACTIONS(4034), - [anon_sym_consteval] = ACTIONS(4034), - [anon_sym_alignas] = ACTIONS(4034), - [anon_sym__Alignas] = ACTIONS(4034), - [sym_primitive_type] = ACTIONS(4034), - [anon_sym_enum] = ACTIONS(4034), - [anon_sym_class] = ACTIONS(4034), - [anon_sym_struct] = ACTIONS(4034), - [anon_sym_union] = ACTIONS(4034), - [anon_sym_if] = ACTIONS(4034), - [anon_sym_switch] = ACTIONS(4034), - [anon_sym_case] = ACTIONS(4034), - [anon_sym_default] = ACTIONS(4034), - [anon_sym_while] = ACTIONS(4034), - [anon_sym_do] = ACTIONS(4034), - [anon_sym_for] = ACTIONS(4034), - [anon_sym_return] = ACTIONS(4034), - [anon_sym_break] = ACTIONS(4034), - [anon_sym_continue] = ACTIONS(4034), - [anon_sym_goto] = ACTIONS(4034), - [anon_sym___try] = ACTIONS(4034), - [anon_sym___leave] = ACTIONS(4034), - [anon_sym_not] = ACTIONS(4034), - [anon_sym_compl] = ACTIONS(4034), - [anon_sym_DASH_DASH] = ACTIONS(4036), - [anon_sym_PLUS_PLUS] = ACTIONS(4036), - [anon_sym_sizeof] = ACTIONS(4034), - [anon_sym___alignof__] = ACTIONS(4034), - [anon_sym___alignof] = ACTIONS(4034), - [anon_sym__alignof] = ACTIONS(4034), - [anon_sym_alignof] = ACTIONS(4034), - [anon_sym__Alignof] = ACTIONS(4034), - [anon_sym_offsetof] = ACTIONS(4034), - [anon_sym__Generic] = ACTIONS(4034), - [anon_sym_typename] = ACTIONS(4034), - [anon_sym_asm] = ACTIONS(4034), - [anon_sym___asm__] = ACTIONS(4034), - [anon_sym___asm] = ACTIONS(4034), - [sym_number_literal] = ACTIONS(4036), - [anon_sym_L_SQUOTE] = ACTIONS(4036), - [anon_sym_u_SQUOTE] = ACTIONS(4036), - [anon_sym_U_SQUOTE] = ACTIONS(4036), - [anon_sym_u8_SQUOTE] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4036), - [anon_sym_L_DQUOTE] = ACTIONS(4036), - [anon_sym_u_DQUOTE] = ACTIONS(4036), - [anon_sym_U_DQUOTE] = ACTIONS(4036), - [anon_sym_u8_DQUOTE] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(4036), - [sym_true] = ACTIONS(4034), - [sym_false] = ACTIONS(4034), - [anon_sym_NULL] = ACTIONS(4034), - [anon_sym_nullptr] = ACTIONS(4034), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4034), - [anon_sym_decltype] = ACTIONS(4034), - [anon_sym_explicit] = ACTIONS(4034), - [anon_sym_template] = ACTIONS(4034), - [anon_sym_operator] = ACTIONS(4034), - [anon_sym_try] = ACTIONS(4034), - [anon_sym_delete] = ACTIONS(4034), - [anon_sym_throw] = ACTIONS(4034), - [anon_sym_namespace] = ACTIONS(4034), - [anon_sym_static_assert] = ACTIONS(4034), - [anon_sym_concept] = ACTIONS(4034), - [anon_sym_co_return] = ACTIONS(4034), - [anon_sym_co_yield] = ACTIONS(4034), - [anon_sym_R_DQUOTE] = ACTIONS(4036), - [anon_sym_LR_DQUOTE] = ACTIONS(4036), - [anon_sym_uR_DQUOTE] = ACTIONS(4036), - [anon_sym_UR_DQUOTE] = ACTIONS(4036), - [anon_sym_u8R_DQUOTE] = ACTIONS(4036), - [anon_sym_co_await] = ACTIONS(4034), - [anon_sym_new] = ACTIONS(4034), - [anon_sym_requires] = ACTIONS(4034), - [anon_sym_CARET_CARET] = ACTIONS(4036), - [anon_sym_LBRACK_COLON] = ACTIONS(4036), - [sym_this] = ACTIONS(4034), + [STATE(647)] = { + [sym_identifier] = ACTIONS(3540), + [aux_sym_preproc_include_token1] = ACTIONS(3540), + [aux_sym_preproc_def_token1] = ACTIONS(3540), + [aux_sym_preproc_if_token1] = ACTIONS(3540), + [aux_sym_preproc_if_token2] = ACTIONS(3540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3540), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3540), + [sym_preproc_directive] = ACTIONS(3540), + [anon_sym_LPAREN2] = ACTIONS(3542), + [anon_sym_BANG] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_STAR] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3540), + [anon_sym_SEMI] = ACTIONS(3542), + [anon_sym___extension__] = ACTIONS(3540), + [anon_sym_typedef] = ACTIONS(3540), + [anon_sym_virtual] = ACTIONS(3540), + [anon_sym_extern] = ACTIONS(3540), + [anon_sym___attribute__] = ACTIONS(3540), + [anon_sym___attribute] = ACTIONS(3540), + [anon_sym_using] = ACTIONS(3540), + [anon_sym_COLON_COLON] = ACTIONS(3542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3542), + [anon_sym___declspec] = ACTIONS(3540), + [anon_sym___based] = ACTIONS(3540), + [anon_sym___cdecl] = ACTIONS(3540), + [anon_sym___clrcall] = ACTIONS(3540), + [anon_sym___stdcall] = ACTIONS(3540), + [anon_sym___fastcall] = ACTIONS(3540), + [anon_sym___thiscall] = ACTIONS(3540), + [anon_sym___vectorcall] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_signed] = ACTIONS(3540), + [anon_sym_unsigned] = ACTIONS(3540), + [anon_sym_long] = ACTIONS(3540), + [anon_sym_short] = ACTIONS(3540), + [anon_sym_LBRACK] = ACTIONS(3540), + [anon_sym_static] = ACTIONS(3540), + [anon_sym_register] = ACTIONS(3540), + [anon_sym_inline] = ACTIONS(3540), + [anon_sym___inline] = ACTIONS(3540), + [anon_sym___inline__] = ACTIONS(3540), + [anon_sym___forceinline] = ACTIONS(3540), + [anon_sym_thread_local] = ACTIONS(3540), + [anon_sym___thread] = ACTIONS(3540), + [anon_sym_const] = ACTIONS(3540), + [anon_sym_constexpr] = ACTIONS(3540), + [anon_sym_volatile] = ACTIONS(3540), + [anon_sym_restrict] = ACTIONS(3540), + [anon_sym___restrict__] = ACTIONS(3540), + [anon_sym__Atomic] = ACTIONS(3540), + [anon_sym__Noreturn] = ACTIONS(3540), + [anon_sym_noreturn] = ACTIONS(3540), + [anon_sym__Nonnull] = ACTIONS(3540), + [anon_sym_mutable] = ACTIONS(3540), + [anon_sym_constinit] = ACTIONS(3540), + [anon_sym_consteval] = ACTIONS(3540), + [anon_sym_alignas] = ACTIONS(3540), + [anon_sym__Alignas] = ACTIONS(3540), + [sym_primitive_type] = ACTIONS(3540), + [anon_sym_enum] = ACTIONS(3540), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3540), + [anon_sym_union] = ACTIONS(3540), + [anon_sym_if] = ACTIONS(3540), + [anon_sym_else] = ACTIONS(3540), + [anon_sym_switch] = ACTIONS(3540), + [anon_sym_case] = ACTIONS(3540), + [anon_sym_default] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3540), + [anon_sym_do] = ACTIONS(3540), + [anon_sym_for] = ACTIONS(3540), + [anon_sym_return] = ACTIONS(3540), + [anon_sym_break] = ACTIONS(3540), + [anon_sym_continue] = ACTIONS(3540), + [anon_sym_goto] = ACTIONS(3540), + [anon_sym___try] = ACTIONS(3540), + [anon_sym___leave] = ACTIONS(3540), + [anon_sym_not] = ACTIONS(3540), + [anon_sym_compl] = ACTIONS(3540), + [anon_sym_DASH_DASH] = ACTIONS(3542), + [anon_sym_PLUS_PLUS] = ACTIONS(3542), + [anon_sym_sizeof] = ACTIONS(3540), + [anon_sym___alignof__] = ACTIONS(3540), + [anon_sym___alignof] = ACTIONS(3540), + [anon_sym__alignof] = ACTIONS(3540), + [anon_sym_alignof] = ACTIONS(3540), + [anon_sym__Alignof] = ACTIONS(3540), + [anon_sym_offsetof] = ACTIONS(3540), + [anon_sym__Generic] = ACTIONS(3540), + [anon_sym_typename] = ACTIONS(3540), + [anon_sym_asm] = ACTIONS(3540), + [anon_sym___asm__] = ACTIONS(3540), + [anon_sym___asm] = ACTIONS(3540), + [sym_number_literal] = ACTIONS(3542), + [anon_sym_L_SQUOTE] = ACTIONS(3542), + [anon_sym_u_SQUOTE] = ACTIONS(3542), + [anon_sym_U_SQUOTE] = ACTIONS(3542), + [anon_sym_u8_SQUOTE] = ACTIONS(3542), + [anon_sym_SQUOTE] = ACTIONS(3542), + [anon_sym_L_DQUOTE] = ACTIONS(3542), + [anon_sym_u_DQUOTE] = ACTIONS(3542), + [anon_sym_U_DQUOTE] = ACTIONS(3542), + [anon_sym_u8_DQUOTE] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [sym_true] = ACTIONS(3540), + [sym_false] = ACTIONS(3540), + [anon_sym_NULL] = ACTIONS(3540), + [anon_sym_nullptr] = ACTIONS(3540), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3540), + [anon_sym_decltype] = ACTIONS(3540), + [anon_sym_explicit] = ACTIONS(3540), + [anon_sym_export] = ACTIONS(3540), + [anon_sym_module] = ACTIONS(3540), + [anon_sym_import] = ACTIONS(3540), + [anon_sym_template] = ACTIONS(3540), + [anon_sym_operator] = ACTIONS(3540), + [anon_sym_try] = ACTIONS(3540), + [anon_sym_delete] = ACTIONS(3540), + [anon_sym_throw] = ACTIONS(3540), + [anon_sym_namespace] = ACTIONS(3540), + [anon_sym_static_assert] = ACTIONS(3540), + [anon_sym_concept] = ACTIONS(3540), + [anon_sym_co_return] = ACTIONS(3540), + [anon_sym_co_yield] = ACTIONS(3540), + [anon_sym_R_DQUOTE] = ACTIONS(3542), + [anon_sym_LR_DQUOTE] = ACTIONS(3542), + [anon_sym_uR_DQUOTE] = ACTIONS(3542), + [anon_sym_UR_DQUOTE] = ACTIONS(3542), + [anon_sym_u8R_DQUOTE] = ACTIONS(3542), + [anon_sym_co_await] = ACTIONS(3540), + [anon_sym_new] = ACTIONS(3540), + [anon_sym_requires] = ACTIONS(3540), + [anon_sym_CARET_CARET] = ACTIONS(3542), + [anon_sym_LBRACK_COLON] = ACTIONS(3542), + [sym_this] = ACTIONS(3540), }, - [STATE(764)] = { - [sym_identifier] = ACTIONS(3926), - [aux_sym_preproc_include_token1] = ACTIONS(3926), - [aux_sym_preproc_def_token1] = ACTIONS(3926), - [aux_sym_preproc_if_token1] = ACTIONS(3926), - [aux_sym_preproc_if_token2] = ACTIONS(3926), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3926), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3926), - [sym_preproc_directive] = ACTIONS(3926), + [STATE(648)] = { + [ts_builtin_sym_end] = ACTIONS(3562), + [sym_identifier] = ACTIONS(3560), + [aux_sym_preproc_include_token1] = ACTIONS(3560), + [aux_sym_preproc_def_token1] = ACTIONS(3560), + [aux_sym_preproc_if_token1] = ACTIONS(3560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3560), + [sym_preproc_directive] = ACTIONS(3560), + [anon_sym_LPAREN2] = ACTIONS(3562), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3560), + [anon_sym_PLUS] = ACTIONS(3560), + [anon_sym_STAR] = ACTIONS(3562), + [anon_sym_AMP_AMP] = ACTIONS(3562), + [anon_sym_AMP] = ACTIONS(3560), + [anon_sym_SEMI] = ACTIONS(3562), + [anon_sym___extension__] = ACTIONS(3560), + [anon_sym_typedef] = ACTIONS(3560), + [anon_sym_virtual] = ACTIONS(3560), + [anon_sym_extern] = ACTIONS(3560), + [anon_sym___attribute__] = ACTIONS(3560), + [anon_sym___attribute] = ACTIONS(3560), + [anon_sym_using] = ACTIONS(3560), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3562), + [anon_sym___declspec] = ACTIONS(3560), + [anon_sym___based] = ACTIONS(3560), + [anon_sym___cdecl] = ACTIONS(3560), + [anon_sym___clrcall] = ACTIONS(3560), + [anon_sym___stdcall] = ACTIONS(3560), + [anon_sym___fastcall] = ACTIONS(3560), + [anon_sym___thiscall] = ACTIONS(3560), + [anon_sym___vectorcall] = ACTIONS(3560), + [anon_sym_LBRACE] = ACTIONS(3562), + [anon_sym_signed] = ACTIONS(3560), + [anon_sym_unsigned] = ACTIONS(3560), + [anon_sym_long] = ACTIONS(3560), + [anon_sym_short] = ACTIONS(3560), + [anon_sym_LBRACK] = ACTIONS(3560), + [anon_sym_static] = ACTIONS(3560), + [anon_sym_register] = ACTIONS(3560), + [anon_sym_inline] = ACTIONS(3560), + [anon_sym___inline] = ACTIONS(3560), + [anon_sym___inline__] = ACTIONS(3560), + [anon_sym___forceinline] = ACTIONS(3560), + [anon_sym_thread_local] = ACTIONS(3560), + [anon_sym___thread] = ACTIONS(3560), + [anon_sym_const] = ACTIONS(3560), + [anon_sym_constexpr] = ACTIONS(3560), + [anon_sym_volatile] = ACTIONS(3560), + [anon_sym_restrict] = ACTIONS(3560), + [anon_sym___restrict__] = ACTIONS(3560), + [anon_sym__Atomic] = ACTIONS(3560), + [anon_sym__Noreturn] = ACTIONS(3560), + [anon_sym_noreturn] = ACTIONS(3560), + [anon_sym__Nonnull] = ACTIONS(3560), + [anon_sym_mutable] = ACTIONS(3560), + [anon_sym_constinit] = ACTIONS(3560), + [anon_sym_consteval] = ACTIONS(3560), + [anon_sym_alignas] = ACTIONS(3560), + [anon_sym__Alignas] = ACTIONS(3560), + [sym_primitive_type] = ACTIONS(3560), + [anon_sym_enum] = ACTIONS(3560), + [anon_sym_class] = ACTIONS(3560), + [anon_sym_struct] = ACTIONS(3560), + [anon_sym_union] = ACTIONS(3560), + [anon_sym_if] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(3560), + [anon_sym_switch] = ACTIONS(3560), + [anon_sym_case] = ACTIONS(3560), + [anon_sym_default] = ACTIONS(3560), + [anon_sym_while] = ACTIONS(3560), + [anon_sym_do] = ACTIONS(3560), + [anon_sym_for] = ACTIONS(3560), + [anon_sym_return] = ACTIONS(3560), + [anon_sym_break] = ACTIONS(3560), + [anon_sym_continue] = ACTIONS(3560), + [anon_sym_goto] = ACTIONS(3560), + [anon_sym___try] = ACTIONS(3560), + [anon_sym___leave] = ACTIONS(3560), + [anon_sym_not] = ACTIONS(3560), + [anon_sym_compl] = ACTIONS(3560), + [anon_sym_DASH_DASH] = ACTIONS(3562), + [anon_sym_PLUS_PLUS] = ACTIONS(3562), + [anon_sym_sizeof] = ACTIONS(3560), + [anon_sym___alignof__] = ACTIONS(3560), + [anon_sym___alignof] = ACTIONS(3560), + [anon_sym__alignof] = ACTIONS(3560), + [anon_sym_alignof] = ACTIONS(3560), + [anon_sym__Alignof] = ACTIONS(3560), + [anon_sym_offsetof] = ACTIONS(3560), + [anon_sym__Generic] = ACTIONS(3560), + [anon_sym_typename] = ACTIONS(3560), + [anon_sym_asm] = ACTIONS(3560), + [anon_sym___asm__] = ACTIONS(3560), + [anon_sym___asm] = ACTIONS(3560), + [sym_number_literal] = ACTIONS(3562), + [anon_sym_L_SQUOTE] = ACTIONS(3562), + [anon_sym_u_SQUOTE] = ACTIONS(3562), + [anon_sym_U_SQUOTE] = ACTIONS(3562), + [anon_sym_u8_SQUOTE] = ACTIONS(3562), + [anon_sym_SQUOTE] = ACTIONS(3562), + [anon_sym_L_DQUOTE] = ACTIONS(3562), + [anon_sym_u_DQUOTE] = ACTIONS(3562), + [anon_sym_U_DQUOTE] = ACTIONS(3562), + [anon_sym_u8_DQUOTE] = ACTIONS(3562), + [anon_sym_DQUOTE] = ACTIONS(3562), + [sym_true] = ACTIONS(3560), + [sym_false] = ACTIONS(3560), + [anon_sym_NULL] = ACTIONS(3560), + [anon_sym_nullptr] = ACTIONS(3560), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3560), + [anon_sym_decltype] = ACTIONS(3560), + [anon_sym_explicit] = ACTIONS(3560), + [anon_sym_export] = ACTIONS(3560), + [anon_sym_module] = ACTIONS(3560), + [anon_sym_import] = ACTIONS(3560), + [anon_sym_template] = ACTIONS(3560), + [anon_sym_operator] = ACTIONS(3560), + [anon_sym_try] = ACTIONS(3560), + [anon_sym_delete] = ACTIONS(3560), + [anon_sym_throw] = ACTIONS(3560), + [anon_sym_namespace] = ACTIONS(3560), + [anon_sym_static_assert] = ACTIONS(3560), + [anon_sym_concept] = ACTIONS(3560), + [anon_sym_co_return] = ACTIONS(3560), + [anon_sym_co_yield] = ACTIONS(3560), + [anon_sym_R_DQUOTE] = ACTIONS(3562), + [anon_sym_LR_DQUOTE] = ACTIONS(3562), + [anon_sym_uR_DQUOTE] = ACTIONS(3562), + [anon_sym_UR_DQUOTE] = ACTIONS(3562), + [anon_sym_u8R_DQUOTE] = ACTIONS(3562), + [anon_sym_co_await] = ACTIONS(3560), + [anon_sym_new] = ACTIONS(3560), + [anon_sym_requires] = ACTIONS(3560), + [anon_sym_CARET_CARET] = ACTIONS(3562), + [anon_sym_LBRACK_COLON] = ACTIONS(3562), + [sym_this] = ACTIONS(3560), + }, + [STATE(649)] = { + [sym_identifier] = ACTIONS(4096), + [aux_sym_preproc_include_token1] = ACTIONS(4096), + [aux_sym_preproc_def_token1] = ACTIONS(4096), + [aux_sym_preproc_if_token1] = ACTIONS(4096), + [aux_sym_preproc_if_token2] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), + [sym_preproc_directive] = ACTIONS(4096), + [anon_sym_LPAREN2] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(4098), + [anon_sym_TILDE] = ACTIONS(4098), + [anon_sym_DASH] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4096), + [anon_sym_STAR] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4096), + [anon_sym_SEMI] = ACTIONS(4098), + [anon_sym___extension__] = ACTIONS(4096), + [anon_sym_typedef] = ACTIONS(4096), + [anon_sym_virtual] = ACTIONS(4096), + [anon_sym_extern] = ACTIONS(4096), + [anon_sym___attribute__] = ACTIONS(4096), + [anon_sym___attribute] = ACTIONS(4096), + [anon_sym_using] = ACTIONS(4096), + [anon_sym_COLON_COLON] = ACTIONS(4098), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4098), + [anon_sym___declspec] = ACTIONS(4096), + [anon_sym___based] = ACTIONS(4096), + [anon_sym___cdecl] = ACTIONS(4096), + [anon_sym___clrcall] = ACTIONS(4096), + [anon_sym___stdcall] = ACTIONS(4096), + [anon_sym___fastcall] = ACTIONS(4096), + [anon_sym___thiscall] = ACTIONS(4096), + [anon_sym___vectorcall] = ACTIONS(4096), + [anon_sym_LBRACE] = ACTIONS(4098), + [anon_sym_signed] = ACTIONS(4096), + [anon_sym_unsigned] = ACTIONS(4096), + [anon_sym_long] = ACTIONS(4096), + [anon_sym_short] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_static] = ACTIONS(4096), + [anon_sym_register] = ACTIONS(4096), + [anon_sym_inline] = ACTIONS(4096), + [anon_sym___inline] = ACTIONS(4096), + [anon_sym___inline__] = ACTIONS(4096), + [anon_sym___forceinline] = ACTIONS(4096), + [anon_sym_thread_local] = ACTIONS(4096), + [anon_sym___thread] = ACTIONS(4096), + [anon_sym_const] = ACTIONS(4096), + [anon_sym_constexpr] = ACTIONS(4096), + [anon_sym_volatile] = ACTIONS(4096), + [anon_sym_restrict] = ACTIONS(4096), + [anon_sym___restrict__] = ACTIONS(4096), + [anon_sym__Atomic] = ACTIONS(4096), + [anon_sym__Noreturn] = ACTIONS(4096), + [anon_sym_noreturn] = ACTIONS(4096), + [anon_sym__Nonnull] = ACTIONS(4096), + [anon_sym_mutable] = ACTIONS(4096), + [anon_sym_constinit] = ACTIONS(4096), + [anon_sym_consteval] = ACTIONS(4096), + [anon_sym_alignas] = ACTIONS(4096), + [anon_sym__Alignas] = ACTIONS(4096), + [sym_primitive_type] = ACTIONS(4096), + [anon_sym_enum] = ACTIONS(4096), + [anon_sym_class] = ACTIONS(4096), + [anon_sym_struct] = ACTIONS(4096), + [anon_sym_union] = ACTIONS(4096), + [anon_sym_if] = ACTIONS(4096), + [anon_sym_switch] = ACTIONS(4096), + [anon_sym_case] = ACTIONS(4096), + [anon_sym_default] = ACTIONS(4096), + [anon_sym_while] = ACTIONS(4096), + [anon_sym_do] = ACTIONS(4096), + [anon_sym_for] = ACTIONS(4096), + [anon_sym_return] = ACTIONS(4096), + [anon_sym_break] = ACTIONS(4096), + [anon_sym_continue] = ACTIONS(4096), + [anon_sym_goto] = ACTIONS(4096), + [anon_sym___try] = ACTIONS(4096), + [anon_sym___leave] = ACTIONS(4096), + [anon_sym_not] = ACTIONS(4096), + [anon_sym_compl] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4098), + [anon_sym_PLUS_PLUS] = ACTIONS(4098), + [anon_sym_sizeof] = ACTIONS(4096), + [anon_sym___alignof__] = ACTIONS(4096), + [anon_sym___alignof] = ACTIONS(4096), + [anon_sym__alignof] = ACTIONS(4096), + [anon_sym_alignof] = ACTIONS(4096), + [anon_sym__Alignof] = ACTIONS(4096), + [anon_sym_offsetof] = ACTIONS(4096), + [anon_sym__Generic] = ACTIONS(4096), + [anon_sym_typename] = ACTIONS(4096), + [anon_sym_asm] = ACTIONS(4096), + [anon_sym___asm__] = ACTIONS(4096), + [anon_sym___asm] = ACTIONS(4096), + [sym_number_literal] = ACTIONS(4098), + [anon_sym_L_SQUOTE] = ACTIONS(4098), + [anon_sym_u_SQUOTE] = ACTIONS(4098), + [anon_sym_U_SQUOTE] = ACTIONS(4098), + [anon_sym_u8_SQUOTE] = ACTIONS(4098), + [anon_sym_SQUOTE] = ACTIONS(4098), + [anon_sym_L_DQUOTE] = ACTIONS(4098), + [anon_sym_u_DQUOTE] = ACTIONS(4098), + [anon_sym_U_DQUOTE] = ACTIONS(4098), + [anon_sym_u8_DQUOTE] = ACTIONS(4098), + [anon_sym_DQUOTE] = ACTIONS(4098), + [sym_true] = ACTIONS(4096), + [sym_false] = ACTIONS(4096), + [anon_sym_NULL] = ACTIONS(4096), + [anon_sym_nullptr] = ACTIONS(4096), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4096), + [anon_sym_decltype] = ACTIONS(4096), + [anon_sym_explicit] = ACTIONS(4096), + [anon_sym_export] = ACTIONS(4096), + [anon_sym_module] = ACTIONS(4096), + [anon_sym_import] = ACTIONS(4096), + [anon_sym_template] = ACTIONS(4096), + [anon_sym_operator] = ACTIONS(4096), + [anon_sym_try] = ACTIONS(4096), + [anon_sym_delete] = ACTIONS(4096), + [anon_sym_throw] = ACTIONS(4096), + [anon_sym_namespace] = ACTIONS(4096), + [anon_sym_static_assert] = ACTIONS(4096), + [anon_sym_concept] = ACTIONS(4096), + [anon_sym_co_return] = ACTIONS(4096), + [anon_sym_co_yield] = ACTIONS(4096), + [anon_sym_R_DQUOTE] = ACTIONS(4098), + [anon_sym_LR_DQUOTE] = ACTIONS(4098), + [anon_sym_uR_DQUOTE] = ACTIONS(4098), + [anon_sym_UR_DQUOTE] = ACTIONS(4098), + [anon_sym_u8R_DQUOTE] = ACTIONS(4098), + [anon_sym_co_await] = ACTIONS(4096), + [anon_sym_new] = ACTIONS(4096), + [anon_sym_requires] = ACTIONS(4096), + [anon_sym_CARET_CARET] = ACTIONS(4098), + [anon_sym_LBRACK_COLON] = ACTIONS(4098), + [sym_this] = ACTIONS(4096), + }, + [STATE(650)] = { + [sym_identifier] = ACTIONS(3925), + [aux_sym_preproc_include_token1] = ACTIONS(3925), + [aux_sym_preproc_def_token1] = ACTIONS(3925), + [aux_sym_preproc_if_token1] = ACTIONS(3925), + [aux_sym_preproc_if_token2] = ACTIONS(3925), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3925), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3925), + [sym_preproc_directive] = ACTIONS(3925), [anon_sym_LPAREN2] = ACTIONS(3928), [anon_sym_BANG] = ACTIONS(3928), [anon_sym_TILDE] = ACTIONS(3928), - [anon_sym_DASH] = ACTIONS(3926), - [anon_sym_PLUS] = ACTIONS(3926), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_PLUS] = ACTIONS(3925), [anon_sym_STAR] = ACTIONS(3928), [anon_sym_AMP_AMP] = ACTIONS(3928), - [anon_sym_AMP] = ACTIONS(3926), + [anon_sym_AMP] = ACTIONS(3925), [anon_sym_SEMI] = ACTIONS(3928), - [anon_sym___extension__] = ACTIONS(3926), - [anon_sym_typedef] = ACTIONS(3926), - [anon_sym_virtual] = ACTIONS(3926), - [anon_sym_extern] = ACTIONS(3926), - [anon_sym___attribute__] = ACTIONS(3926), - [anon_sym___attribute] = ACTIONS(3926), - [anon_sym_using] = ACTIONS(3926), + [anon_sym___extension__] = ACTIONS(3925), + [anon_sym_typedef] = ACTIONS(3925), + [anon_sym_virtual] = ACTIONS(3925), + [anon_sym_extern] = ACTIONS(3925), + [anon_sym___attribute__] = ACTIONS(3925), + [anon_sym___attribute] = ACTIONS(3925), + [anon_sym_using] = ACTIONS(3925), [anon_sym_COLON_COLON] = ACTIONS(3928), [anon_sym_LBRACK_LBRACK] = ACTIONS(3928), - [anon_sym___declspec] = ACTIONS(3926), - [anon_sym___based] = ACTIONS(3926), - [anon_sym___cdecl] = ACTIONS(3926), - [anon_sym___clrcall] = ACTIONS(3926), - [anon_sym___stdcall] = ACTIONS(3926), - [anon_sym___fastcall] = ACTIONS(3926), - [anon_sym___thiscall] = ACTIONS(3926), - [anon_sym___vectorcall] = ACTIONS(3926), + [anon_sym___declspec] = ACTIONS(3925), + [anon_sym___based] = ACTIONS(3925), + [anon_sym___cdecl] = ACTIONS(3925), + [anon_sym___clrcall] = ACTIONS(3925), + [anon_sym___stdcall] = ACTIONS(3925), + [anon_sym___fastcall] = ACTIONS(3925), + [anon_sym___thiscall] = ACTIONS(3925), + [anon_sym___vectorcall] = ACTIONS(3925), [anon_sym_LBRACE] = ACTIONS(3928), - [anon_sym_signed] = ACTIONS(3926), - [anon_sym_unsigned] = ACTIONS(3926), - [anon_sym_long] = ACTIONS(3926), - [anon_sym_short] = ACTIONS(3926), - [anon_sym_LBRACK] = ACTIONS(3926), - [anon_sym_static] = ACTIONS(3926), - [anon_sym_register] = ACTIONS(3926), - [anon_sym_inline] = ACTIONS(3926), - [anon_sym___inline] = ACTIONS(3926), - [anon_sym___inline__] = ACTIONS(3926), - [anon_sym___forceinline] = ACTIONS(3926), - [anon_sym_thread_local] = ACTIONS(3926), - [anon_sym___thread] = ACTIONS(3926), - [anon_sym_const] = ACTIONS(3926), - [anon_sym_constexpr] = ACTIONS(3926), - [anon_sym_volatile] = ACTIONS(3926), - [anon_sym_restrict] = ACTIONS(3926), - [anon_sym___restrict__] = ACTIONS(3926), - [anon_sym__Atomic] = ACTIONS(3926), - [anon_sym__Noreturn] = ACTIONS(3926), - [anon_sym_noreturn] = ACTIONS(3926), - [anon_sym__Nonnull] = ACTIONS(3926), - [anon_sym_mutable] = ACTIONS(3926), - [anon_sym_constinit] = ACTIONS(3926), - [anon_sym_consteval] = ACTIONS(3926), - [anon_sym_alignas] = ACTIONS(3926), - [anon_sym__Alignas] = ACTIONS(3926), - [sym_primitive_type] = ACTIONS(3926), - [anon_sym_enum] = ACTIONS(3926), - [anon_sym_class] = ACTIONS(3926), - [anon_sym_struct] = ACTIONS(3926), - [anon_sym_union] = ACTIONS(3926), - [anon_sym_if] = ACTIONS(3926), - [anon_sym_switch] = ACTIONS(3926), - [anon_sym_case] = ACTIONS(3926), - [anon_sym_default] = ACTIONS(3926), - [anon_sym_while] = ACTIONS(3926), - [anon_sym_do] = ACTIONS(3926), - [anon_sym_for] = ACTIONS(3926), - [anon_sym_return] = ACTIONS(3926), - [anon_sym_break] = ACTIONS(3926), - [anon_sym_continue] = ACTIONS(3926), - [anon_sym_goto] = ACTIONS(3926), - [anon_sym___try] = ACTIONS(3926), - [anon_sym___leave] = ACTIONS(3926), - [anon_sym_not] = ACTIONS(3926), - [anon_sym_compl] = ACTIONS(3926), + [anon_sym_signed] = ACTIONS(3925), + [anon_sym_unsigned] = ACTIONS(3925), + [anon_sym_long] = ACTIONS(3925), + [anon_sym_short] = ACTIONS(3925), + [anon_sym_LBRACK] = ACTIONS(3925), + [anon_sym_static] = ACTIONS(3925), + [anon_sym_register] = ACTIONS(3925), + [anon_sym_inline] = ACTIONS(3925), + [anon_sym___inline] = ACTIONS(3925), + [anon_sym___inline__] = ACTIONS(3925), + [anon_sym___forceinline] = ACTIONS(3925), + [anon_sym_thread_local] = ACTIONS(3925), + [anon_sym___thread] = ACTIONS(3925), + [anon_sym_const] = ACTIONS(3925), + [anon_sym_constexpr] = ACTIONS(3925), + [anon_sym_volatile] = ACTIONS(3925), + [anon_sym_restrict] = ACTIONS(3925), + [anon_sym___restrict__] = ACTIONS(3925), + [anon_sym__Atomic] = ACTIONS(3925), + [anon_sym__Noreturn] = ACTIONS(3925), + [anon_sym_noreturn] = ACTIONS(3925), + [anon_sym__Nonnull] = ACTIONS(3925), + [anon_sym_mutable] = ACTIONS(3925), + [anon_sym_constinit] = ACTIONS(3925), + [anon_sym_consteval] = ACTIONS(3925), + [anon_sym_alignas] = ACTIONS(3925), + [anon_sym__Alignas] = ACTIONS(3925), + [sym_primitive_type] = ACTIONS(3925), + [anon_sym_enum] = ACTIONS(3925), + [anon_sym_class] = ACTIONS(3925), + [anon_sym_struct] = ACTIONS(3925), + [anon_sym_union] = ACTIONS(3925), + [anon_sym_if] = ACTIONS(3925), + [anon_sym_switch] = ACTIONS(3925), + [anon_sym_case] = ACTIONS(3925), + [anon_sym_default] = ACTIONS(3925), + [anon_sym_while] = ACTIONS(3925), + [anon_sym_do] = ACTIONS(3925), + [anon_sym_for] = ACTIONS(3925), + [anon_sym_return] = ACTIONS(3925), + [anon_sym_break] = ACTIONS(3925), + [anon_sym_continue] = ACTIONS(3925), + [anon_sym_goto] = ACTIONS(3925), + [anon_sym___try] = ACTIONS(3925), + [anon_sym___leave] = ACTIONS(3925), + [anon_sym_not] = ACTIONS(3925), + [anon_sym_compl] = ACTIONS(3925), [anon_sym_DASH_DASH] = ACTIONS(3928), [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3926), - [anon_sym___alignof__] = ACTIONS(3926), - [anon_sym___alignof] = ACTIONS(3926), - [anon_sym__alignof] = ACTIONS(3926), - [anon_sym_alignof] = ACTIONS(3926), - [anon_sym__Alignof] = ACTIONS(3926), - [anon_sym_offsetof] = ACTIONS(3926), - [anon_sym__Generic] = ACTIONS(3926), - [anon_sym_typename] = ACTIONS(3926), - [anon_sym_asm] = ACTIONS(3926), - [anon_sym___asm__] = ACTIONS(3926), - [anon_sym___asm] = ACTIONS(3926), + [anon_sym_sizeof] = ACTIONS(3925), + [anon_sym___alignof__] = ACTIONS(3925), + [anon_sym___alignof] = ACTIONS(3925), + [anon_sym__alignof] = ACTIONS(3925), + [anon_sym_alignof] = ACTIONS(3925), + [anon_sym__Alignof] = ACTIONS(3925), + [anon_sym_offsetof] = ACTIONS(3925), + [anon_sym__Generic] = ACTIONS(3925), + [anon_sym_typename] = ACTIONS(3925), + [anon_sym_asm] = ACTIONS(3925), + [anon_sym___asm__] = ACTIONS(3925), + [anon_sym___asm] = ACTIONS(3925), [sym_number_literal] = ACTIONS(3928), [anon_sym_L_SQUOTE] = ACTIONS(3928), [anon_sym_u_SQUOTE] = ACTIONS(3928), @@ -162719,6799 +152976,5257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(3928), [anon_sym_u8_DQUOTE] = ACTIONS(3928), [anon_sym_DQUOTE] = ACTIONS(3928), - [sym_true] = ACTIONS(3926), - [sym_false] = ACTIONS(3926), - [anon_sym_NULL] = ACTIONS(3926), - [anon_sym_nullptr] = ACTIONS(3926), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3926), - [anon_sym_decltype] = ACTIONS(3926), - [anon_sym_explicit] = ACTIONS(3926), - [anon_sym_template] = ACTIONS(3926), - [anon_sym_operator] = ACTIONS(3926), - [anon_sym_try] = ACTIONS(3926), - [anon_sym_delete] = ACTIONS(3926), - [anon_sym_throw] = ACTIONS(3926), - [anon_sym_namespace] = ACTIONS(3926), - [anon_sym_static_assert] = ACTIONS(3926), - [anon_sym_concept] = ACTIONS(3926), - [anon_sym_co_return] = ACTIONS(3926), - [anon_sym_co_yield] = ACTIONS(3926), + [sym_true] = ACTIONS(3925), + [sym_false] = ACTIONS(3925), + [anon_sym_NULL] = ACTIONS(3925), + [anon_sym_nullptr] = ACTIONS(3925), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3925), + [anon_sym_decltype] = ACTIONS(3925), + [anon_sym_explicit] = ACTIONS(3925), + [anon_sym_export] = ACTIONS(3925), + [anon_sym_module] = ACTIONS(3925), + [anon_sym_import] = ACTIONS(3925), + [anon_sym_template] = ACTIONS(3925), + [anon_sym_operator] = ACTIONS(3925), + [anon_sym_try] = ACTIONS(3925), + [anon_sym_delete] = ACTIONS(3925), + [anon_sym_throw] = ACTIONS(3925), + [anon_sym_namespace] = ACTIONS(3925), + [anon_sym_static_assert] = ACTIONS(3925), + [anon_sym_concept] = ACTIONS(3925), + [anon_sym_co_return] = ACTIONS(3925), + [anon_sym_co_yield] = ACTIONS(3925), [anon_sym_R_DQUOTE] = ACTIONS(3928), [anon_sym_LR_DQUOTE] = ACTIONS(3928), [anon_sym_uR_DQUOTE] = ACTIONS(3928), [anon_sym_UR_DQUOTE] = ACTIONS(3928), [anon_sym_u8R_DQUOTE] = ACTIONS(3928), - [anon_sym_co_await] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_requires] = ACTIONS(3926), + [anon_sym_co_await] = ACTIONS(3925), + [anon_sym_new] = ACTIONS(3925), + [anon_sym_requires] = ACTIONS(3925), [anon_sym_CARET_CARET] = ACTIONS(3928), [anon_sym_LBRACK_COLON] = ACTIONS(3928), - [sym_this] = ACTIONS(3926), + [sym_this] = ACTIONS(3925), }, - [STATE(765)] = { - [sym_identifier] = ACTIONS(3930), - [aux_sym_preproc_include_token1] = ACTIONS(3930), - [aux_sym_preproc_def_token1] = ACTIONS(3930), - [aux_sym_preproc_if_token1] = ACTIONS(3930), - [aux_sym_preproc_if_token2] = ACTIONS(3930), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3930), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3930), - [sym_preproc_directive] = ACTIONS(3930), - [anon_sym_LPAREN2] = ACTIONS(3932), - [anon_sym_BANG] = ACTIONS(3932), - [anon_sym_TILDE] = ACTIONS(3932), - [anon_sym_DASH] = ACTIONS(3930), - [anon_sym_PLUS] = ACTIONS(3930), - [anon_sym_STAR] = ACTIONS(3932), - [anon_sym_AMP_AMP] = ACTIONS(3932), - [anon_sym_AMP] = ACTIONS(3930), - [anon_sym_SEMI] = ACTIONS(3932), - [anon_sym___extension__] = ACTIONS(3930), - [anon_sym_typedef] = ACTIONS(3930), - [anon_sym_virtual] = ACTIONS(3930), - [anon_sym_extern] = ACTIONS(3930), - [anon_sym___attribute__] = ACTIONS(3930), - [anon_sym___attribute] = ACTIONS(3930), - [anon_sym_using] = ACTIONS(3930), - [anon_sym_COLON_COLON] = ACTIONS(3932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3932), - [anon_sym___declspec] = ACTIONS(3930), - [anon_sym___based] = ACTIONS(3930), - [anon_sym___cdecl] = ACTIONS(3930), - [anon_sym___clrcall] = ACTIONS(3930), - [anon_sym___stdcall] = ACTIONS(3930), - [anon_sym___fastcall] = ACTIONS(3930), - [anon_sym___thiscall] = ACTIONS(3930), - [anon_sym___vectorcall] = ACTIONS(3930), - [anon_sym_LBRACE] = ACTIONS(3932), - [anon_sym_signed] = ACTIONS(3930), - [anon_sym_unsigned] = ACTIONS(3930), - [anon_sym_long] = ACTIONS(3930), - [anon_sym_short] = ACTIONS(3930), - [anon_sym_LBRACK] = ACTIONS(3930), - [anon_sym_static] = ACTIONS(3930), - [anon_sym_register] = ACTIONS(3930), - [anon_sym_inline] = ACTIONS(3930), - [anon_sym___inline] = ACTIONS(3930), - [anon_sym___inline__] = ACTIONS(3930), - [anon_sym___forceinline] = ACTIONS(3930), - [anon_sym_thread_local] = ACTIONS(3930), - [anon_sym___thread] = ACTIONS(3930), - [anon_sym_const] = ACTIONS(3930), - [anon_sym_constexpr] = ACTIONS(3930), - [anon_sym_volatile] = ACTIONS(3930), - [anon_sym_restrict] = ACTIONS(3930), - [anon_sym___restrict__] = ACTIONS(3930), - [anon_sym__Atomic] = ACTIONS(3930), - [anon_sym__Noreturn] = ACTIONS(3930), - [anon_sym_noreturn] = ACTIONS(3930), - [anon_sym__Nonnull] = ACTIONS(3930), - [anon_sym_mutable] = ACTIONS(3930), - [anon_sym_constinit] = ACTIONS(3930), - [anon_sym_consteval] = ACTIONS(3930), - [anon_sym_alignas] = ACTIONS(3930), - [anon_sym__Alignas] = ACTIONS(3930), - [sym_primitive_type] = ACTIONS(3930), - [anon_sym_enum] = ACTIONS(3930), - [anon_sym_class] = ACTIONS(3930), - [anon_sym_struct] = ACTIONS(3930), - [anon_sym_union] = ACTIONS(3930), - [anon_sym_if] = ACTIONS(3930), - [anon_sym_switch] = ACTIONS(3930), - [anon_sym_case] = ACTIONS(3930), - [anon_sym_default] = ACTIONS(3930), - [anon_sym_while] = ACTIONS(3930), - [anon_sym_do] = ACTIONS(3930), - [anon_sym_for] = ACTIONS(3930), - [anon_sym_return] = ACTIONS(3930), - [anon_sym_break] = ACTIONS(3930), - [anon_sym_continue] = ACTIONS(3930), - [anon_sym_goto] = ACTIONS(3930), - [anon_sym___try] = ACTIONS(3930), - [anon_sym___leave] = ACTIONS(3930), - [anon_sym_not] = ACTIONS(3930), - [anon_sym_compl] = ACTIONS(3930), - [anon_sym_DASH_DASH] = ACTIONS(3932), - [anon_sym_PLUS_PLUS] = ACTIONS(3932), - [anon_sym_sizeof] = ACTIONS(3930), - [anon_sym___alignof__] = ACTIONS(3930), - [anon_sym___alignof] = ACTIONS(3930), - [anon_sym__alignof] = ACTIONS(3930), - [anon_sym_alignof] = ACTIONS(3930), - [anon_sym__Alignof] = ACTIONS(3930), - [anon_sym_offsetof] = ACTIONS(3930), - [anon_sym__Generic] = ACTIONS(3930), - [anon_sym_typename] = ACTIONS(3930), - [anon_sym_asm] = ACTIONS(3930), - [anon_sym___asm__] = ACTIONS(3930), - [anon_sym___asm] = ACTIONS(3930), - [sym_number_literal] = ACTIONS(3932), - [anon_sym_L_SQUOTE] = ACTIONS(3932), - [anon_sym_u_SQUOTE] = ACTIONS(3932), - [anon_sym_U_SQUOTE] = ACTIONS(3932), - [anon_sym_u8_SQUOTE] = ACTIONS(3932), - [anon_sym_SQUOTE] = ACTIONS(3932), - [anon_sym_L_DQUOTE] = ACTIONS(3932), - [anon_sym_u_DQUOTE] = ACTIONS(3932), - [anon_sym_U_DQUOTE] = ACTIONS(3932), - [anon_sym_u8_DQUOTE] = ACTIONS(3932), - [anon_sym_DQUOTE] = ACTIONS(3932), - [sym_true] = ACTIONS(3930), - [sym_false] = ACTIONS(3930), - [anon_sym_NULL] = ACTIONS(3930), - [anon_sym_nullptr] = ACTIONS(3930), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3930), - [anon_sym_decltype] = ACTIONS(3930), - [anon_sym_explicit] = ACTIONS(3930), - [anon_sym_template] = ACTIONS(3930), - [anon_sym_operator] = ACTIONS(3930), - [anon_sym_try] = ACTIONS(3930), - [anon_sym_delete] = ACTIONS(3930), - [anon_sym_throw] = ACTIONS(3930), - [anon_sym_namespace] = ACTIONS(3930), - [anon_sym_static_assert] = ACTIONS(3930), - [anon_sym_concept] = ACTIONS(3930), - [anon_sym_co_return] = ACTIONS(3930), - [anon_sym_co_yield] = ACTIONS(3930), - [anon_sym_R_DQUOTE] = ACTIONS(3932), - [anon_sym_LR_DQUOTE] = ACTIONS(3932), - [anon_sym_uR_DQUOTE] = ACTIONS(3932), - [anon_sym_UR_DQUOTE] = ACTIONS(3932), - [anon_sym_u8R_DQUOTE] = ACTIONS(3932), - [anon_sym_co_await] = ACTIONS(3930), - [anon_sym_new] = ACTIONS(3930), - [anon_sym_requires] = ACTIONS(3930), - [anon_sym_CARET_CARET] = ACTIONS(3932), - [anon_sym_LBRACK_COLON] = ACTIONS(3932), - [sym_this] = ACTIONS(3930), + [STATE(651)] = { + [sym_identifier] = ACTIONS(3556), + [aux_sym_preproc_include_token1] = ACTIONS(3556), + [aux_sym_preproc_def_token1] = ACTIONS(3556), + [aux_sym_preproc_if_token1] = ACTIONS(3556), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3556), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3556), + [sym_preproc_directive] = ACTIONS(3556), + [anon_sym_LPAREN2] = ACTIONS(3558), + [anon_sym_BANG] = ACTIONS(3558), + [anon_sym_TILDE] = ACTIONS(3558), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(3558), + [anon_sym_AMP_AMP] = ACTIONS(3558), + [anon_sym_AMP] = ACTIONS(3556), + [anon_sym_SEMI] = ACTIONS(3558), + [anon_sym___extension__] = ACTIONS(3556), + [anon_sym_typedef] = ACTIONS(3556), + [anon_sym_virtual] = ACTIONS(3556), + [anon_sym_extern] = ACTIONS(3556), + [anon_sym___attribute__] = ACTIONS(3556), + [anon_sym___attribute] = ACTIONS(3556), + [anon_sym_using] = ACTIONS(3556), + [anon_sym_COLON_COLON] = ACTIONS(3558), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3558), + [anon_sym___declspec] = ACTIONS(3556), + [anon_sym___based] = ACTIONS(3556), + [anon_sym___cdecl] = ACTIONS(3556), + [anon_sym___clrcall] = ACTIONS(3556), + [anon_sym___stdcall] = ACTIONS(3556), + [anon_sym___fastcall] = ACTIONS(3556), + [anon_sym___thiscall] = ACTIONS(3556), + [anon_sym___vectorcall] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3558), + [anon_sym_RBRACE] = ACTIONS(3558), + [anon_sym_signed] = ACTIONS(3556), + [anon_sym_unsigned] = ACTIONS(3556), + [anon_sym_long] = ACTIONS(3556), + [anon_sym_short] = ACTIONS(3556), + [anon_sym_LBRACK] = ACTIONS(3556), + [anon_sym_static] = ACTIONS(3556), + [anon_sym_register] = ACTIONS(3556), + [anon_sym_inline] = ACTIONS(3556), + [anon_sym___inline] = ACTIONS(3556), + [anon_sym___inline__] = ACTIONS(3556), + [anon_sym___forceinline] = ACTIONS(3556), + [anon_sym_thread_local] = ACTIONS(3556), + [anon_sym___thread] = ACTIONS(3556), + [anon_sym_const] = ACTIONS(3556), + [anon_sym_constexpr] = ACTIONS(3556), + [anon_sym_volatile] = ACTIONS(3556), + [anon_sym_restrict] = ACTIONS(3556), + [anon_sym___restrict__] = ACTIONS(3556), + [anon_sym__Atomic] = ACTIONS(3556), + [anon_sym__Noreturn] = ACTIONS(3556), + [anon_sym_noreturn] = ACTIONS(3556), + [anon_sym__Nonnull] = ACTIONS(3556), + [anon_sym_mutable] = ACTIONS(3556), + [anon_sym_constinit] = ACTIONS(3556), + [anon_sym_consteval] = ACTIONS(3556), + [anon_sym_alignas] = ACTIONS(3556), + [anon_sym__Alignas] = ACTIONS(3556), + [sym_primitive_type] = ACTIONS(3556), + [anon_sym_enum] = ACTIONS(3556), + [anon_sym_class] = ACTIONS(3556), + [anon_sym_struct] = ACTIONS(3556), + [anon_sym_union] = ACTIONS(3556), + [anon_sym_if] = ACTIONS(3556), + [anon_sym_else] = ACTIONS(3556), + [anon_sym_switch] = ACTIONS(3556), + [anon_sym_case] = ACTIONS(3556), + [anon_sym_default] = ACTIONS(3556), + [anon_sym_while] = ACTIONS(3556), + [anon_sym_do] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3556), + [anon_sym_return] = ACTIONS(3556), + [anon_sym_break] = ACTIONS(3556), + [anon_sym_continue] = ACTIONS(3556), + [anon_sym_goto] = ACTIONS(3556), + [anon_sym___try] = ACTIONS(3556), + [anon_sym___leave] = ACTIONS(3556), + [anon_sym_not] = ACTIONS(3556), + [anon_sym_compl] = ACTIONS(3556), + [anon_sym_DASH_DASH] = ACTIONS(3558), + [anon_sym_PLUS_PLUS] = ACTIONS(3558), + [anon_sym_sizeof] = ACTIONS(3556), + [anon_sym___alignof__] = ACTIONS(3556), + [anon_sym___alignof] = ACTIONS(3556), + [anon_sym__alignof] = ACTIONS(3556), + [anon_sym_alignof] = ACTIONS(3556), + [anon_sym__Alignof] = ACTIONS(3556), + [anon_sym_offsetof] = ACTIONS(3556), + [anon_sym__Generic] = ACTIONS(3556), + [anon_sym_typename] = ACTIONS(3556), + [anon_sym_asm] = ACTIONS(3556), + [anon_sym___asm__] = ACTIONS(3556), + [anon_sym___asm] = ACTIONS(3556), + [sym_number_literal] = ACTIONS(3558), + [anon_sym_L_SQUOTE] = ACTIONS(3558), + [anon_sym_u_SQUOTE] = ACTIONS(3558), + [anon_sym_U_SQUOTE] = ACTIONS(3558), + [anon_sym_u8_SQUOTE] = ACTIONS(3558), + [anon_sym_SQUOTE] = ACTIONS(3558), + [anon_sym_L_DQUOTE] = ACTIONS(3558), + [anon_sym_u_DQUOTE] = ACTIONS(3558), + [anon_sym_U_DQUOTE] = ACTIONS(3558), + [anon_sym_u8_DQUOTE] = ACTIONS(3558), + [anon_sym_DQUOTE] = ACTIONS(3558), + [sym_true] = ACTIONS(3556), + [sym_false] = ACTIONS(3556), + [anon_sym_NULL] = ACTIONS(3556), + [anon_sym_nullptr] = ACTIONS(3556), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3556), + [anon_sym_decltype] = ACTIONS(3556), + [anon_sym_explicit] = ACTIONS(3556), + [anon_sym_export] = ACTIONS(3556), + [anon_sym_import] = ACTIONS(3556), + [anon_sym_template] = ACTIONS(3556), + [anon_sym_operator] = ACTIONS(3556), + [anon_sym_try] = ACTIONS(3556), + [anon_sym_delete] = ACTIONS(3556), + [anon_sym_throw] = ACTIONS(3556), + [anon_sym_namespace] = ACTIONS(3556), + [anon_sym_static_assert] = ACTIONS(3556), + [anon_sym_concept] = ACTIONS(3556), + [anon_sym_co_return] = ACTIONS(3556), + [anon_sym_co_yield] = ACTIONS(3556), + [anon_sym_R_DQUOTE] = ACTIONS(3558), + [anon_sym_LR_DQUOTE] = ACTIONS(3558), + [anon_sym_uR_DQUOTE] = ACTIONS(3558), + [anon_sym_UR_DQUOTE] = ACTIONS(3558), + [anon_sym_u8R_DQUOTE] = ACTIONS(3558), + [anon_sym_co_await] = ACTIONS(3556), + [anon_sym_new] = ACTIONS(3556), + [anon_sym_requires] = ACTIONS(3556), + [anon_sym_CARET_CARET] = ACTIONS(3558), + [anon_sym_LBRACK_COLON] = ACTIONS(3558), + [sym_this] = ACTIONS(3556), }, - [STATE(766)] = { - [sym_identifier] = ACTIONS(3934), - [aux_sym_preproc_include_token1] = ACTIONS(3934), - [aux_sym_preproc_def_token1] = ACTIONS(3934), - [aux_sym_preproc_if_token1] = ACTIONS(3934), - [aux_sym_preproc_if_token2] = ACTIONS(3934), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3934), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3934), - [sym_preproc_directive] = ACTIONS(3934), - [anon_sym_LPAREN2] = ACTIONS(3936), - [anon_sym_BANG] = ACTIONS(3936), - [anon_sym_TILDE] = ACTIONS(3936), - [anon_sym_DASH] = ACTIONS(3934), - [anon_sym_PLUS] = ACTIONS(3934), - [anon_sym_STAR] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3936), - [anon_sym_AMP] = ACTIONS(3934), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym___extension__] = ACTIONS(3934), - [anon_sym_typedef] = ACTIONS(3934), - [anon_sym_virtual] = ACTIONS(3934), - [anon_sym_extern] = ACTIONS(3934), - [anon_sym___attribute__] = ACTIONS(3934), - [anon_sym___attribute] = ACTIONS(3934), - [anon_sym_using] = ACTIONS(3934), - [anon_sym_COLON_COLON] = ACTIONS(3936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3936), - [anon_sym___declspec] = ACTIONS(3934), - [anon_sym___based] = ACTIONS(3934), - [anon_sym___cdecl] = ACTIONS(3934), - [anon_sym___clrcall] = ACTIONS(3934), - [anon_sym___stdcall] = ACTIONS(3934), - [anon_sym___fastcall] = ACTIONS(3934), - [anon_sym___thiscall] = ACTIONS(3934), - [anon_sym___vectorcall] = ACTIONS(3934), - [anon_sym_LBRACE] = ACTIONS(3936), - [anon_sym_signed] = ACTIONS(3934), - [anon_sym_unsigned] = ACTIONS(3934), - [anon_sym_long] = ACTIONS(3934), - [anon_sym_short] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(3934), - [anon_sym_static] = ACTIONS(3934), - [anon_sym_register] = ACTIONS(3934), - [anon_sym_inline] = ACTIONS(3934), - [anon_sym___inline] = ACTIONS(3934), - [anon_sym___inline__] = ACTIONS(3934), - [anon_sym___forceinline] = ACTIONS(3934), - [anon_sym_thread_local] = ACTIONS(3934), - [anon_sym___thread] = ACTIONS(3934), - [anon_sym_const] = ACTIONS(3934), - [anon_sym_constexpr] = ACTIONS(3934), - [anon_sym_volatile] = ACTIONS(3934), - [anon_sym_restrict] = ACTIONS(3934), - [anon_sym___restrict__] = ACTIONS(3934), - [anon_sym__Atomic] = ACTIONS(3934), - [anon_sym__Noreturn] = ACTIONS(3934), - [anon_sym_noreturn] = ACTIONS(3934), - [anon_sym__Nonnull] = ACTIONS(3934), - [anon_sym_mutable] = ACTIONS(3934), - [anon_sym_constinit] = ACTIONS(3934), - [anon_sym_consteval] = ACTIONS(3934), - [anon_sym_alignas] = ACTIONS(3934), - [anon_sym__Alignas] = ACTIONS(3934), - [sym_primitive_type] = ACTIONS(3934), - [anon_sym_enum] = ACTIONS(3934), - [anon_sym_class] = ACTIONS(3934), - [anon_sym_struct] = ACTIONS(3934), - [anon_sym_union] = ACTIONS(3934), - [anon_sym_if] = ACTIONS(3934), - [anon_sym_switch] = ACTIONS(3934), - [anon_sym_case] = ACTIONS(3934), - [anon_sym_default] = ACTIONS(3934), - [anon_sym_while] = ACTIONS(3934), - [anon_sym_do] = ACTIONS(3934), - [anon_sym_for] = ACTIONS(3934), - [anon_sym_return] = ACTIONS(3934), - [anon_sym_break] = ACTIONS(3934), - [anon_sym_continue] = ACTIONS(3934), - [anon_sym_goto] = ACTIONS(3934), - [anon_sym___try] = ACTIONS(3934), - [anon_sym___leave] = ACTIONS(3934), - [anon_sym_not] = ACTIONS(3934), - [anon_sym_compl] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(3936), - [anon_sym_PLUS_PLUS] = ACTIONS(3936), - [anon_sym_sizeof] = ACTIONS(3934), - [anon_sym___alignof__] = ACTIONS(3934), - [anon_sym___alignof] = ACTIONS(3934), - [anon_sym__alignof] = ACTIONS(3934), - [anon_sym_alignof] = ACTIONS(3934), - [anon_sym__Alignof] = ACTIONS(3934), - [anon_sym_offsetof] = ACTIONS(3934), - [anon_sym__Generic] = ACTIONS(3934), - [anon_sym_typename] = ACTIONS(3934), - [anon_sym_asm] = ACTIONS(3934), - [anon_sym___asm__] = ACTIONS(3934), - [anon_sym___asm] = ACTIONS(3934), - [sym_number_literal] = ACTIONS(3936), - [anon_sym_L_SQUOTE] = ACTIONS(3936), - [anon_sym_u_SQUOTE] = ACTIONS(3936), - [anon_sym_U_SQUOTE] = ACTIONS(3936), - [anon_sym_u8_SQUOTE] = ACTIONS(3936), - [anon_sym_SQUOTE] = ACTIONS(3936), - [anon_sym_L_DQUOTE] = ACTIONS(3936), - [anon_sym_u_DQUOTE] = ACTIONS(3936), - [anon_sym_U_DQUOTE] = ACTIONS(3936), - [anon_sym_u8_DQUOTE] = ACTIONS(3936), - [anon_sym_DQUOTE] = ACTIONS(3936), - [sym_true] = ACTIONS(3934), - [sym_false] = ACTIONS(3934), - [anon_sym_NULL] = ACTIONS(3934), - [anon_sym_nullptr] = ACTIONS(3934), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3934), - [anon_sym_decltype] = ACTIONS(3934), - [anon_sym_explicit] = ACTIONS(3934), - [anon_sym_template] = ACTIONS(3934), - [anon_sym_operator] = ACTIONS(3934), - [anon_sym_try] = ACTIONS(3934), - [anon_sym_delete] = ACTIONS(3934), - [anon_sym_throw] = ACTIONS(3934), - [anon_sym_namespace] = ACTIONS(3934), - [anon_sym_static_assert] = ACTIONS(3934), - [anon_sym_concept] = ACTIONS(3934), - [anon_sym_co_return] = ACTIONS(3934), - [anon_sym_co_yield] = ACTIONS(3934), - [anon_sym_R_DQUOTE] = ACTIONS(3936), - [anon_sym_LR_DQUOTE] = ACTIONS(3936), - [anon_sym_uR_DQUOTE] = ACTIONS(3936), - [anon_sym_UR_DQUOTE] = ACTIONS(3936), - [anon_sym_u8R_DQUOTE] = ACTIONS(3936), - [anon_sym_co_await] = ACTIONS(3934), - [anon_sym_new] = ACTIONS(3934), - [anon_sym_requires] = ACTIONS(3934), - [anon_sym_CARET_CARET] = ACTIONS(3936), - [anon_sym_LBRACK_COLON] = ACTIONS(3936), - [sym_this] = ACTIONS(3934), + [STATE(652)] = { + [sym_identifier] = ACTIONS(3939), + [aux_sym_preproc_include_token1] = ACTIONS(3939), + [aux_sym_preproc_def_token1] = ACTIONS(3939), + [aux_sym_preproc_if_token1] = ACTIONS(3939), + [aux_sym_preproc_if_token2] = ACTIONS(3939), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3939), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3939), + [sym_preproc_directive] = ACTIONS(3939), + [anon_sym_LPAREN2] = ACTIONS(3941), + [anon_sym_BANG] = ACTIONS(3941), + [anon_sym_TILDE] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3939), + [anon_sym_PLUS] = ACTIONS(3939), + [anon_sym_STAR] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3939), + [anon_sym_SEMI] = ACTIONS(3941), + [anon_sym___extension__] = ACTIONS(3939), + [anon_sym_typedef] = ACTIONS(3939), + [anon_sym_virtual] = ACTIONS(3939), + [anon_sym_extern] = ACTIONS(3939), + [anon_sym___attribute__] = ACTIONS(3939), + [anon_sym___attribute] = ACTIONS(3939), + [anon_sym_using] = ACTIONS(3939), + [anon_sym_COLON_COLON] = ACTIONS(3941), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3941), + [anon_sym___declspec] = ACTIONS(3939), + [anon_sym___based] = ACTIONS(3939), + [anon_sym___cdecl] = ACTIONS(3939), + [anon_sym___clrcall] = ACTIONS(3939), + [anon_sym___stdcall] = ACTIONS(3939), + [anon_sym___fastcall] = ACTIONS(3939), + [anon_sym___thiscall] = ACTIONS(3939), + [anon_sym___vectorcall] = ACTIONS(3939), + [anon_sym_LBRACE] = ACTIONS(3941), + [anon_sym_signed] = ACTIONS(3939), + [anon_sym_unsigned] = ACTIONS(3939), + [anon_sym_long] = ACTIONS(3939), + [anon_sym_short] = ACTIONS(3939), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_static] = ACTIONS(3939), + [anon_sym_register] = ACTIONS(3939), + [anon_sym_inline] = ACTIONS(3939), + [anon_sym___inline] = ACTIONS(3939), + [anon_sym___inline__] = ACTIONS(3939), + [anon_sym___forceinline] = ACTIONS(3939), + [anon_sym_thread_local] = ACTIONS(3939), + [anon_sym___thread] = ACTIONS(3939), + [anon_sym_const] = ACTIONS(3939), + [anon_sym_constexpr] = ACTIONS(3939), + [anon_sym_volatile] = ACTIONS(3939), + [anon_sym_restrict] = ACTIONS(3939), + [anon_sym___restrict__] = ACTIONS(3939), + [anon_sym__Atomic] = ACTIONS(3939), + [anon_sym__Noreturn] = ACTIONS(3939), + [anon_sym_noreturn] = ACTIONS(3939), + [anon_sym__Nonnull] = ACTIONS(3939), + [anon_sym_mutable] = ACTIONS(3939), + [anon_sym_constinit] = ACTIONS(3939), + [anon_sym_consteval] = ACTIONS(3939), + [anon_sym_alignas] = ACTIONS(3939), + [anon_sym__Alignas] = ACTIONS(3939), + [sym_primitive_type] = ACTIONS(3939), + [anon_sym_enum] = ACTIONS(3939), + [anon_sym_class] = ACTIONS(3939), + [anon_sym_struct] = ACTIONS(3939), + [anon_sym_union] = ACTIONS(3939), + [anon_sym_if] = ACTIONS(3939), + [anon_sym_switch] = ACTIONS(3939), + [anon_sym_case] = ACTIONS(3939), + [anon_sym_default] = ACTIONS(3939), + [anon_sym_while] = ACTIONS(3939), + [anon_sym_do] = ACTIONS(3939), + [anon_sym_for] = ACTIONS(3939), + [anon_sym_return] = ACTIONS(3939), + [anon_sym_break] = ACTIONS(3939), + [anon_sym_continue] = ACTIONS(3939), + [anon_sym_goto] = ACTIONS(3939), + [anon_sym___try] = ACTIONS(3939), + [anon_sym___leave] = ACTIONS(3939), + [anon_sym_not] = ACTIONS(3939), + [anon_sym_compl] = ACTIONS(3939), + [anon_sym_DASH_DASH] = ACTIONS(3941), + [anon_sym_PLUS_PLUS] = ACTIONS(3941), + [anon_sym_sizeof] = ACTIONS(3939), + [anon_sym___alignof__] = ACTIONS(3939), + [anon_sym___alignof] = ACTIONS(3939), + [anon_sym__alignof] = ACTIONS(3939), + [anon_sym_alignof] = ACTIONS(3939), + [anon_sym__Alignof] = ACTIONS(3939), + [anon_sym_offsetof] = ACTIONS(3939), + [anon_sym__Generic] = ACTIONS(3939), + [anon_sym_typename] = ACTIONS(3939), + [anon_sym_asm] = ACTIONS(3939), + [anon_sym___asm__] = ACTIONS(3939), + [anon_sym___asm] = ACTIONS(3939), + [sym_number_literal] = ACTIONS(3941), + [anon_sym_L_SQUOTE] = ACTIONS(3941), + [anon_sym_u_SQUOTE] = ACTIONS(3941), + [anon_sym_U_SQUOTE] = ACTIONS(3941), + [anon_sym_u8_SQUOTE] = ACTIONS(3941), + [anon_sym_SQUOTE] = ACTIONS(3941), + [anon_sym_L_DQUOTE] = ACTIONS(3941), + [anon_sym_u_DQUOTE] = ACTIONS(3941), + [anon_sym_U_DQUOTE] = ACTIONS(3941), + [anon_sym_u8_DQUOTE] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [sym_true] = ACTIONS(3939), + [sym_false] = ACTIONS(3939), + [anon_sym_NULL] = ACTIONS(3939), + [anon_sym_nullptr] = ACTIONS(3939), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3939), + [anon_sym_decltype] = ACTIONS(3939), + [anon_sym_explicit] = ACTIONS(3939), + [anon_sym_export] = ACTIONS(3939), + [anon_sym_module] = ACTIONS(3939), + [anon_sym_import] = ACTIONS(3939), + [anon_sym_template] = ACTIONS(3939), + [anon_sym_operator] = ACTIONS(3939), + [anon_sym_try] = ACTIONS(3939), + [anon_sym_delete] = ACTIONS(3939), + [anon_sym_throw] = ACTIONS(3939), + [anon_sym_namespace] = ACTIONS(3939), + [anon_sym_static_assert] = ACTIONS(3939), + [anon_sym_concept] = ACTIONS(3939), + [anon_sym_co_return] = ACTIONS(3939), + [anon_sym_co_yield] = ACTIONS(3939), + [anon_sym_R_DQUOTE] = ACTIONS(3941), + [anon_sym_LR_DQUOTE] = ACTIONS(3941), + [anon_sym_uR_DQUOTE] = ACTIONS(3941), + [anon_sym_UR_DQUOTE] = ACTIONS(3941), + [anon_sym_u8R_DQUOTE] = ACTIONS(3941), + [anon_sym_co_await] = ACTIONS(3939), + [anon_sym_new] = ACTIONS(3939), + [anon_sym_requires] = ACTIONS(3939), + [anon_sym_CARET_CARET] = ACTIONS(3941), + [anon_sym_LBRACK_COLON] = ACTIONS(3941), + [sym_this] = ACTIONS(3939), }, - [STATE(767)] = { - [sym_identifier] = ACTIONS(3938), - [aux_sym_preproc_include_token1] = ACTIONS(3938), - [aux_sym_preproc_def_token1] = ACTIONS(3938), - [aux_sym_preproc_if_token1] = ACTIONS(3938), - [aux_sym_preproc_if_token2] = ACTIONS(3938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3938), - [sym_preproc_directive] = ACTIONS(3938), - [anon_sym_LPAREN2] = ACTIONS(3940), - [anon_sym_BANG] = ACTIONS(3940), - [anon_sym_TILDE] = ACTIONS(3940), - [anon_sym_DASH] = ACTIONS(3938), - [anon_sym_PLUS] = ACTIONS(3938), - [anon_sym_STAR] = ACTIONS(3940), - [anon_sym_AMP_AMP] = ACTIONS(3940), - [anon_sym_AMP] = ACTIONS(3938), - [anon_sym_SEMI] = ACTIONS(3940), - [anon_sym___extension__] = ACTIONS(3938), - [anon_sym_typedef] = ACTIONS(3938), - [anon_sym_virtual] = ACTIONS(3938), - [anon_sym_extern] = ACTIONS(3938), - [anon_sym___attribute__] = ACTIONS(3938), - [anon_sym___attribute] = ACTIONS(3938), - [anon_sym_using] = ACTIONS(3938), - [anon_sym_COLON_COLON] = ACTIONS(3940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3940), - [anon_sym___declspec] = ACTIONS(3938), - [anon_sym___based] = ACTIONS(3938), - [anon_sym___cdecl] = ACTIONS(3938), - [anon_sym___clrcall] = ACTIONS(3938), - [anon_sym___stdcall] = ACTIONS(3938), - [anon_sym___fastcall] = ACTIONS(3938), - [anon_sym___thiscall] = ACTIONS(3938), - [anon_sym___vectorcall] = ACTIONS(3938), - [anon_sym_LBRACE] = ACTIONS(3940), - [anon_sym_signed] = ACTIONS(3938), - [anon_sym_unsigned] = ACTIONS(3938), - [anon_sym_long] = ACTIONS(3938), - [anon_sym_short] = ACTIONS(3938), - [anon_sym_LBRACK] = ACTIONS(3938), - [anon_sym_static] = ACTIONS(3938), - [anon_sym_register] = ACTIONS(3938), - [anon_sym_inline] = ACTIONS(3938), - [anon_sym___inline] = ACTIONS(3938), - [anon_sym___inline__] = ACTIONS(3938), - [anon_sym___forceinline] = ACTIONS(3938), - [anon_sym_thread_local] = ACTIONS(3938), - [anon_sym___thread] = ACTIONS(3938), - [anon_sym_const] = ACTIONS(3938), - [anon_sym_constexpr] = ACTIONS(3938), - [anon_sym_volatile] = ACTIONS(3938), - [anon_sym_restrict] = ACTIONS(3938), - [anon_sym___restrict__] = ACTIONS(3938), - [anon_sym__Atomic] = ACTIONS(3938), - [anon_sym__Noreturn] = ACTIONS(3938), - [anon_sym_noreturn] = ACTIONS(3938), - [anon_sym__Nonnull] = ACTIONS(3938), - [anon_sym_mutable] = ACTIONS(3938), - [anon_sym_constinit] = ACTIONS(3938), - [anon_sym_consteval] = ACTIONS(3938), - [anon_sym_alignas] = ACTIONS(3938), - [anon_sym__Alignas] = ACTIONS(3938), - [sym_primitive_type] = ACTIONS(3938), - [anon_sym_enum] = ACTIONS(3938), - [anon_sym_class] = ACTIONS(3938), - [anon_sym_struct] = ACTIONS(3938), - [anon_sym_union] = ACTIONS(3938), - [anon_sym_if] = ACTIONS(3938), - [anon_sym_switch] = ACTIONS(3938), - [anon_sym_case] = ACTIONS(3938), - [anon_sym_default] = ACTIONS(3938), - [anon_sym_while] = ACTIONS(3938), - [anon_sym_do] = ACTIONS(3938), - [anon_sym_for] = ACTIONS(3938), - [anon_sym_return] = ACTIONS(3938), - [anon_sym_break] = ACTIONS(3938), - [anon_sym_continue] = ACTIONS(3938), - [anon_sym_goto] = ACTIONS(3938), - [anon_sym___try] = ACTIONS(3938), - [anon_sym___leave] = ACTIONS(3938), - [anon_sym_not] = ACTIONS(3938), - [anon_sym_compl] = ACTIONS(3938), - [anon_sym_DASH_DASH] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(3940), - [anon_sym_sizeof] = ACTIONS(3938), - [anon_sym___alignof__] = ACTIONS(3938), - [anon_sym___alignof] = ACTIONS(3938), - [anon_sym__alignof] = ACTIONS(3938), - [anon_sym_alignof] = ACTIONS(3938), - [anon_sym__Alignof] = ACTIONS(3938), - [anon_sym_offsetof] = ACTIONS(3938), - [anon_sym__Generic] = ACTIONS(3938), - [anon_sym_typename] = ACTIONS(3938), - [anon_sym_asm] = ACTIONS(3938), - [anon_sym___asm__] = ACTIONS(3938), - [anon_sym___asm] = ACTIONS(3938), - [sym_number_literal] = ACTIONS(3940), - [anon_sym_L_SQUOTE] = ACTIONS(3940), - [anon_sym_u_SQUOTE] = ACTIONS(3940), - [anon_sym_U_SQUOTE] = ACTIONS(3940), - [anon_sym_u8_SQUOTE] = ACTIONS(3940), - [anon_sym_SQUOTE] = ACTIONS(3940), - [anon_sym_L_DQUOTE] = ACTIONS(3940), - [anon_sym_u_DQUOTE] = ACTIONS(3940), - [anon_sym_U_DQUOTE] = ACTIONS(3940), - [anon_sym_u8_DQUOTE] = ACTIONS(3940), - [anon_sym_DQUOTE] = ACTIONS(3940), - [sym_true] = ACTIONS(3938), - [sym_false] = ACTIONS(3938), - [anon_sym_NULL] = ACTIONS(3938), - [anon_sym_nullptr] = ACTIONS(3938), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3938), - [anon_sym_decltype] = ACTIONS(3938), - [anon_sym_explicit] = ACTIONS(3938), - [anon_sym_template] = ACTIONS(3938), - [anon_sym_operator] = ACTIONS(3938), - [anon_sym_try] = ACTIONS(3938), - [anon_sym_delete] = ACTIONS(3938), - [anon_sym_throw] = ACTIONS(3938), - [anon_sym_namespace] = ACTIONS(3938), - [anon_sym_static_assert] = ACTIONS(3938), - [anon_sym_concept] = ACTIONS(3938), - [anon_sym_co_return] = ACTIONS(3938), - [anon_sym_co_yield] = ACTIONS(3938), - [anon_sym_R_DQUOTE] = ACTIONS(3940), - [anon_sym_LR_DQUOTE] = ACTIONS(3940), - [anon_sym_uR_DQUOTE] = ACTIONS(3940), - [anon_sym_UR_DQUOTE] = ACTIONS(3940), - [anon_sym_u8R_DQUOTE] = ACTIONS(3940), - [anon_sym_co_await] = ACTIONS(3938), - [anon_sym_new] = ACTIONS(3938), - [anon_sym_requires] = ACTIONS(3938), - [anon_sym_CARET_CARET] = ACTIONS(3940), - [anon_sym_LBRACK_COLON] = ACTIONS(3940), - [sym_this] = ACTIONS(3938), + [STATE(653)] = { + [sym_identifier] = ACTIONS(3943), + [aux_sym_preproc_include_token1] = ACTIONS(3943), + [aux_sym_preproc_def_token1] = ACTIONS(3943), + [aux_sym_preproc_if_token1] = ACTIONS(3943), + [aux_sym_preproc_if_token2] = ACTIONS(3943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3943), + [sym_preproc_directive] = ACTIONS(3943), + [anon_sym_LPAREN2] = ACTIONS(3945), + [anon_sym_BANG] = ACTIONS(3945), + [anon_sym_TILDE] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3943), + [anon_sym_STAR] = ACTIONS(3945), + [anon_sym_AMP_AMP] = ACTIONS(3945), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_SEMI] = ACTIONS(3945), + [anon_sym___extension__] = ACTIONS(3943), + [anon_sym_typedef] = ACTIONS(3943), + [anon_sym_virtual] = ACTIONS(3943), + [anon_sym_extern] = ACTIONS(3943), + [anon_sym___attribute__] = ACTIONS(3943), + [anon_sym___attribute] = ACTIONS(3943), + [anon_sym_using] = ACTIONS(3943), + [anon_sym_COLON_COLON] = ACTIONS(3945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3945), + [anon_sym___declspec] = ACTIONS(3943), + [anon_sym___based] = ACTIONS(3943), + [anon_sym___cdecl] = ACTIONS(3943), + [anon_sym___clrcall] = ACTIONS(3943), + [anon_sym___stdcall] = ACTIONS(3943), + [anon_sym___fastcall] = ACTIONS(3943), + [anon_sym___thiscall] = ACTIONS(3943), + [anon_sym___vectorcall] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_signed] = ACTIONS(3943), + [anon_sym_unsigned] = ACTIONS(3943), + [anon_sym_long] = ACTIONS(3943), + [anon_sym_short] = ACTIONS(3943), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_static] = ACTIONS(3943), + [anon_sym_register] = ACTIONS(3943), + [anon_sym_inline] = ACTIONS(3943), + [anon_sym___inline] = ACTIONS(3943), + [anon_sym___inline__] = ACTIONS(3943), + [anon_sym___forceinline] = ACTIONS(3943), + [anon_sym_thread_local] = ACTIONS(3943), + [anon_sym___thread] = ACTIONS(3943), + [anon_sym_const] = ACTIONS(3943), + [anon_sym_constexpr] = ACTIONS(3943), + [anon_sym_volatile] = ACTIONS(3943), + [anon_sym_restrict] = ACTIONS(3943), + [anon_sym___restrict__] = ACTIONS(3943), + [anon_sym__Atomic] = ACTIONS(3943), + [anon_sym__Noreturn] = ACTIONS(3943), + [anon_sym_noreturn] = ACTIONS(3943), + [anon_sym__Nonnull] = ACTIONS(3943), + [anon_sym_mutable] = ACTIONS(3943), + [anon_sym_constinit] = ACTIONS(3943), + [anon_sym_consteval] = ACTIONS(3943), + [anon_sym_alignas] = ACTIONS(3943), + [anon_sym__Alignas] = ACTIONS(3943), + [sym_primitive_type] = ACTIONS(3943), + [anon_sym_enum] = ACTIONS(3943), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3943), + [anon_sym_union] = ACTIONS(3943), + [anon_sym_if] = ACTIONS(3943), + [anon_sym_switch] = ACTIONS(3943), + [anon_sym_case] = ACTIONS(3943), + [anon_sym_default] = ACTIONS(3943), + [anon_sym_while] = ACTIONS(3943), + [anon_sym_do] = ACTIONS(3943), + [anon_sym_for] = ACTIONS(3943), + [anon_sym_return] = ACTIONS(3943), + [anon_sym_break] = ACTIONS(3943), + [anon_sym_continue] = ACTIONS(3943), + [anon_sym_goto] = ACTIONS(3943), + [anon_sym___try] = ACTIONS(3943), + [anon_sym___leave] = ACTIONS(3943), + [anon_sym_not] = ACTIONS(3943), + [anon_sym_compl] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3945), + [anon_sym_PLUS_PLUS] = ACTIONS(3945), + [anon_sym_sizeof] = ACTIONS(3943), + [anon_sym___alignof__] = ACTIONS(3943), + [anon_sym___alignof] = ACTIONS(3943), + [anon_sym__alignof] = ACTIONS(3943), + [anon_sym_alignof] = ACTIONS(3943), + [anon_sym__Alignof] = ACTIONS(3943), + [anon_sym_offsetof] = ACTIONS(3943), + [anon_sym__Generic] = ACTIONS(3943), + [anon_sym_typename] = ACTIONS(3943), + [anon_sym_asm] = ACTIONS(3943), + [anon_sym___asm__] = ACTIONS(3943), + [anon_sym___asm] = ACTIONS(3943), + [sym_number_literal] = ACTIONS(3945), + [anon_sym_L_SQUOTE] = ACTIONS(3945), + [anon_sym_u_SQUOTE] = ACTIONS(3945), + [anon_sym_U_SQUOTE] = ACTIONS(3945), + [anon_sym_u8_SQUOTE] = ACTIONS(3945), + [anon_sym_SQUOTE] = ACTIONS(3945), + [anon_sym_L_DQUOTE] = ACTIONS(3945), + [anon_sym_u_DQUOTE] = ACTIONS(3945), + [anon_sym_U_DQUOTE] = ACTIONS(3945), + [anon_sym_u8_DQUOTE] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3945), + [sym_true] = ACTIONS(3943), + [sym_false] = ACTIONS(3943), + [anon_sym_NULL] = ACTIONS(3943), + [anon_sym_nullptr] = ACTIONS(3943), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3943), + [anon_sym_decltype] = ACTIONS(3943), + [anon_sym_explicit] = ACTIONS(3943), + [anon_sym_export] = ACTIONS(3943), + [anon_sym_module] = ACTIONS(3943), + [anon_sym_import] = ACTIONS(3943), + [anon_sym_template] = ACTIONS(3943), + [anon_sym_operator] = ACTIONS(3943), + [anon_sym_try] = ACTIONS(3943), + [anon_sym_delete] = ACTIONS(3943), + [anon_sym_throw] = ACTIONS(3943), + [anon_sym_namespace] = ACTIONS(3943), + [anon_sym_static_assert] = ACTIONS(3943), + [anon_sym_concept] = ACTIONS(3943), + [anon_sym_co_return] = ACTIONS(3943), + [anon_sym_co_yield] = ACTIONS(3943), + [anon_sym_R_DQUOTE] = ACTIONS(3945), + [anon_sym_LR_DQUOTE] = ACTIONS(3945), + [anon_sym_uR_DQUOTE] = ACTIONS(3945), + [anon_sym_UR_DQUOTE] = ACTIONS(3945), + [anon_sym_u8R_DQUOTE] = ACTIONS(3945), + [anon_sym_co_await] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3943), + [anon_sym_requires] = ACTIONS(3943), + [anon_sym_CARET_CARET] = ACTIONS(3945), + [anon_sym_LBRACK_COLON] = ACTIONS(3945), + [sym_this] = ACTIONS(3943), }, - [STATE(768)] = { - [sym_identifier] = ACTIONS(3942), - [aux_sym_preproc_include_token1] = ACTIONS(3942), - [aux_sym_preproc_def_token1] = ACTIONS(3942), - [aux_sym_preproc_if_token1] = ACTIONS(3942), - [aux_sym_preproc_if_token2] = ACTIONS(3942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3942), - [sym_preproc_directive] = ACTIONS(3942), - [anon_sym_LPAREN2] = ACTIONS(3944), - [anon_sym_BANG] = ACTIONS(3944), - [anon_sym_TILDE] = ACTIONS(3944), - [anon_sym_DASH] = ACTIONS(3942), - [anon_sym_PLUS] = ACTIONS(3942), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_AMP_AMP] = ACTIONS(3944), - [anon_sym_AMP] = ACTIONS(3942), - [anon_sym_SEMI] = ACTIONS(3944), - [anon_sym___extension__] = ACTIONS(3942), - [anon_sym_typedef] = ACTIONS(3942), - [anon_sym_virtual] = ACTIONS(3942), - [anon_sym_extern] = ACTIONS(3942), - [anon_sym___attribute__] = ACTIONS(3942), - [anon_sym___attribute] = ACTIONS(3942), - [anon_sym_using] = ACTIONS(3942), - [anon_sym_COLON_COLON] = ACTIONS(3944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3944), - [anon_sym___declspec] = ACTIONS(3942), - [anon_sym___based] = ACTIONS(3942), - [anon_sym___cdecl] = ACTIONS(3942), - [anon_sym___clrcall] = ACTIONS(3942), - [anon_sym___stdcall] = ACTIONS(3942), - [anon_sym___fastcall] = ACTIONS(3942), - [anon_sym___thiscall] = ACTIONS(3942), - [anon_sym___vectorcall] = ACTIONS(3942), - [anon_sym_LBRACE] = ACTIONS(3944), - [anon_sym_signed] = ACTIONS(3942), - [anon_sym_unsigned] = ACTIONS(3942), - [anon_sym_long] = ACTIONS(3942), - [anon_sym_short] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(3942), - [anon_sym_static] = ACTIONS(3942), - [anon_sym_register] = ACTIONS(3942), - [anon_sym_inline] = ACTIONS(3942), - [anon_sym___inline] = ACTIONS(3942), - [anon_sym___inline__] = ACTIONS(3942), - [anon_sym___forceinline] = ACTIONS(3942), - [anon_sym_thread_local] = ACTIONS(3942), - [anon_sym___thread] = ACTIONS(3942), - [anon_sym_const] = ACTIONS(3942), - [anon_sym_constexpr] = ACTIONS(3942), - [anon_sym_volatile] = ACTIONS(3942), - [anon_sym_restrict] = ACTIONS(3942), - [anon_sym___restrict__] = ACTIONS(3942), - [anon_sym__Atomic] = ACTIONS(3942), - [anon_sym__Noreturn] = ACTIONS(3942), - [anon_sym_noreturn] = ACTIONS(3942), - [anon_sym__Nonnull] = ACTIONS(3942), - [anon_sym_mutable] = ACTIONS(3942), - [anon_sym_constinit] = ACTIONS(3942), - [anon_sym_consteval] = ACTIONS(3942), - [anon_sym_alignas] = ACTIONS(3942), - [anon_sym__Alignas] = ACTIONS(3942), - [sym_primitive_type] = ACTIONS(3942), - [anon_sym_enum] = ACTIONS(3942), - [anon_sym_class] = ACTIONS(3942), - [anon_sym_struct] = ACTIONS(3942), - [anon_sym_union] = ACTIONS(3942), - [anon_sym_if] = ACTIONS(3942), - [anon_sym_switch] = ACTIONS(3942), - [anon_sym_case] = ACTIONS(3942), - [anon_sym_default] = ACTIONS(3942), - [anon_sym_while] = ACTIONS(3942), - [anon_sym_do] = ACTIONS(3942), - [anon_sym_for] = ACTIONS(3942), - [anon_sym_return] = ACTIONS(3942), - [anon_sym_break] = ACTIONS(3942), - [anon_sym_continue] = ACTIONS(3942), - [anon_sym_goto] = ACTIONS(3942), - [anon_sym___try] = ACTIONS(3942), - [anon_sym___leave] = ACTIONS(3942), - [anon_sym_not] = ACTIONS(3942), - [anon_sym_compl] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(3944), - [anon_sym_PLUS_PLUS] = ACTIONS(3944), - [anon_sym_sizeof] = ACTIONS(3942), - [anon_sym___alignof__] = ACTIONS(3942), - [anon_sym___alignof] = ACTIONS(3942), - [anon_sym__alignof] = ACTIONS(3942), - [anon_sym_alignof] = ACTIONS(3942), - [anon_sym__Alignof] = ACTIONS(3942), - [anon_sym_offsetof] = ACTIONS(3942), - [anon_sym__Generic] = ACTIONS(3942), - [anon_sym_typename] = ACTIONS(3942), - [anon_sym_asm] = ACTIONS(3942), - [anon_sym___asm__] = ACTIONS(3942), - [anon_sym___asm] = ACTIONS(3942), - [sym_number_literal] = ACTIONS(3944), - [anon_sym_L_SQUOTE] = ACTIONS(3944), - [anon_sym_u_SQUOTE] = ACTIONS(3944), - [anon_sym_U_SQUOTE] = ACTIONS(3944), - [anon_sym_u8_SQUOTE] = ACTIONS(3944), - [anon_sym_SQUOTE] = ACTIONS(3944), - [anon_sym_L_DQUOTE] = ACTIONS(3944), - [anon_sym_u_DQUOTE] = ACTIONS(3944), - [anon_sym_U_DQUOTE] = ACTIONS(3944), - [anon_sym_u8_DQUOTE] = ACTIONS(3944), - [anon_sym_DQUOTE] = ACTIONS(3944), - [sym_true] = ACTIONS(3942), - [sym_false] = ACTIONS(3942), - [anon_sym_NULL] = ACTIONS(3942), - [anon_sym_nullptr] = ACTIONS(3942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3942), - [anon_sym_decltype] = ACTIONS(3942), - [anon_sym_explicit] = ACTIONS(3942), - [anon_sym_template] = ACTIONS(3942), - [anon_sym_operator] = ACTIONS(3942), - [anon_sym_try] = ACTIONS(3942), - [anon_sym_delete] = ACTIONS(3942), - [anon_sym_throw] = ACTIONS(3942), - [anon_sym_namespace] = ACTIONS(3942), - [anon_sym_static_assert] = ACTIONS(3942), - [anon_sym_concept] = ACTIONS(3942), - [anon_sym_co_return] = ACTIONS(3942), - [anon_sym_co_yield] = ACTIONS(3942), - [anon_sym_R_DQUOTE] = ACTIONS(3944), - [anon_sym_LR_DQUOTE] = ACTIONS(3944), - [anon_sym_uR_DQUOTE] = ACTIONS(3944), - [anon_sym_UR_DQUOTE] = ACTIONS(3944), - [anon_sym_u8R_DQUOTE] = ACTIONS(3944), - [anon_sym_co_await] = ACTIONS(3942), - [anon_sym_new] = ACTIONS(3942), - [anon_sym_requires] = ACTIONS(3942), - [anon_sym_CARET_CARET] = ACTIONS(3944), - [anon_sym_LBRACK_COLON] = ACTIONS(3944), - [sym_this] = ACTIONS(3942), + [STATE(654)] = { + [sym_identifier] = ACTIONS(3984), + [aux_sym_preproc_include_token1] = ACTIONS(3984), + [aux_sym_preproc_def_token1] = ACTIONS(3984), + [aux_sym_preproc_if_token1] = ACTIONS(3984), + [aux_sym_preproc_if_token2] = ACTIONS(3984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3984), + [sym_preproc_directive] = ACTIONS(3984), + [anon_sym_LPAREN2] = ACTIONS(3986), + [anon_sym_BANG] = ACTIONS(3986), + [anon_sym_TILDE] = ACTIONS(3986), + [anon_sym_DASH] = ACTIONS(3984), + [anon_sym_PLUS] = ACTIONS(3984), + [anon_sym_STAR] = ACTIONS(3986), + [anon_sym_AMP_AMP] = ACTIONS(3986), + [anon_sym_AMP] = ACTIONS(3984), + [anon_sym_SEMI] = ACTIONS(3986), + [anon_sym___extension__] = ACTIONS(3984), + [anon_sym_typedef] = ACTIONS(3984), + [anon_sym_virtual] = ACTIONS(3984), + [anon_sym_extern] = ACTIONS(3984), + [anon_sym___attribute__] = ACTIONS(3984), + [anon_sym___attribute] = ACTIONS(3984), + [anon_sym_using] = ACTIONS(3984), + [anon_sym_COLON_COLON] = ACTIONS(3986), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3986), + [anon_sym___declspec] = ACTIONS(3984), + [anon_sym___based] = ACTIONS(3984), + [anon_sym___cdecl] = ACTIONS(3984), + [anon_sym___clrcall] = ACTIONS(3984), + [anon_sym___stdcall] = ACTIONS(3984), + [anon_sym___fastcall] = ACTIONS(3984), + [anon_sym___thiscall] = ACTIONS(3984), + [anon_sym___vectorcall] = ACTIONS(3984), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_signed] = ACTIONS(3984), + [anon_sym_unsigned] = ACTIONS(3984), + [anon_sym_long] = ACTIONS(3984), + [anon_sym_short] = ACTIONS(3984), + [anon_sym_LBRACK] = ACTIONS(3984), + [anon_sym_static] = ACTIONS(3984), + [anon_sym_register] = ACTIONS(3984), + [anon_sym_inline] = ACTIONS(3984), + [anon_sym___inline] = ACTIONS(3984), + [anon_sym___inline__] = ACTIONS(3984), + [anon_sym___forceinline] = ACTIONS(3984), + [anon_sym_thread_local] = ACTIONS(3984), + [anon_sym___thread] = ACTIONS(3984), + [anon_sym_const] = ACTIONS(3984), + [anon_sym_constexpr] = ACTIONS(3984), + [anon_sym_volatile] = ACTIONS(3984), + [anon_sym_restrict] = ACTIONS(3984), + [anon_sym___restrict__] = ACTIONS(3984), + [anon_sym__Atomic] = ACTIONS(3984), + [anon_sym__Noreturn] = ACTIONS(3984), + [anon_sym_noreturn] = ACTIONS(3984), + [anon_sym__Nonnull] = ACTIONS(3984), + [anon_sym_mutable] = ACTIONS(3984), + [anon_sym_constinit] = ACTIONS(3984), + [anon_sym_consteval] = ACTIONS(3984), + [anon_sym_alignas] = ACTIONS(3984), + [anon_sym__Alignas] = ACTIONS(3984), + [sym_primitive_type] = ACTIONS(3984), + [anon_sym_enum] = ACTIONS(3984), + [anon_sym_class] = ACTIONS(3984), + [anon_sym_struct] = ACTIONS(3984), + [anon_sym_union] = ACTIONS(3984), + [anon_sym_if] = ACTIONS(3984), + [anon_sym_switch] = ACTIONS(3984), + [anon_sym_case] = ACTIONS(3984), + [anon_sym_default] = ACTIONS(3984), + [anon_sym_while] = ACTIONS(3984), + [anon_sym_do] = ACTIONS(3984), + [anon_sym_for] = ACTIONS(3984), + [anon_sym_return] = ACTIONS(3984), + [anon_sym_break] = ACTIONS(3984), + [anon_sym_continue] = ACTIONS(3984), + [anon_sym_goto] = ACTIONS(3984), + [anon_sym___try] = ACTIONS(3984), + [anon_sym___leave] = ACTIONS(3984), + [anon_sym_not] = ACTIONS(3984), + [anon_sym_compl] = ACTIONS(3984), + [anon_sym_DASH_DASH] = ACTIONS(3986), + [anon_sym_PLUS_PLUS] = ACTIONS(3986), + [anon_sym_sizeof] = ACTIONS(3984), + [anon_sym___alignof__] = ACTIONS(3984), + [anon_sym___alignof] = ACTIONS(3984), + [anon_sym__alignof] = ACTIONS(3984), + [anon_sym_alignof] = ACTIONS(3984), + [anon_sym__Alignof] = ACTIONS(3984), + [anon_sym_offsetof] = ACTIONS(3984), + [anon_sym__Generic] = ACTIONS(3984), + [anon_sym_typename] = ACTIONS(3984), + [anon_sym_asm] = ACTIONS(3984), + [anon_sym___asm__] = ACTIONS(3984), + [anon_sym___asm] = ACTIONS(3984), + [sym_number_literal] = ACTIONS(3986), + [anon_sym_L_SQUOTE] = ACTIONS(3986), + [anon_sym_u_SQUOTE] = ACTIONS(3986), + [anon_sym_U_SQUOTE] = ACTIONS(3986), + [anon_sym_u8_SQUOTE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3986), + [anon_sym_L_DQUOTE] = ACTIONS(3986), + [anon_sym_u_DQUOTE] = ACTIONS(3986), + [anon_sym_U_DQUOTE] = ACTIONS(3986), + [anon_sym_u8_DQUOTE] = ACTIONS(3986), + [anon_sym_DQUOTE] = ACTIONS(3986), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3984), + [anon_sym_nullptr] = ACTIONS(3984), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3984), + [anon_sym_decltype] = ACTIONS(3984), + [anon_sym_explicit] = ACTIONS(3984), + [anon_sym_export] = ACTIONS(3984), + [anon_sym_module] = ACTIONS(3984), + [anon_sym_import] = ACTIONS(3984), + [anon_sym_template] = ACTIONS(3984), + [anon_sym_operator] = ACTIONS(3984), + [anon_sym_try] = ACTIONS(3984), + [anon_sym_delete] = ACTIONS(3984), + [anon_sym_throw] = ACTIONS(3984), + [anon_sym_namespace] = ACTIONS(3984), + [anon_sym_static_assert] = ACTIONS(3984), + [anon_sym_concept] = ACTIONS(3984), + [anon_sym_co_return] = ACTIONS(3984), + [anon_sym_co_yield] = ACTIONS(3984), + [anon_sym_R_DQUOTE] = ACTIONS(3986), + [anon_sym_LR_DQUOTE] = ACTIONS(3986), + [anon_sym_uR_DQUOTE] = ACTIONS(3986), + [anon_sym_UR_DQUOTE] = ACTIONS(3986), + [anon_sym_u8R_DQUOTE] = ACTIONS(3986), + [anon_sym_co_await] = ACTIONS(3984), + [anon_sym_new] = ACTIONS(3984), + [anon_sym_requires] = ACTIONS(3984), + [anon_sym_CARET_CARET] = ACTIONS(3986), + [anon_sym_LBRACK_COLON] = ACTIONS(3986), + [sym_this] = ACTIONS(3984), }, - [STATE(769)] = { - [sym_identifier] = ACTIONS(3946), - [aux_sym_preproc_include_token1] = ACTIONS(3946), - [aux_sym_preproc_def_token1] = ACTIONS(3946), - [aux_sym_preproc_if_token1] = ACTIONS(3946), - [aux_sym_preproc_if_token2] = ACTIONS(3946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3946), - [sym_preproc_directive] = ACTIONS(3946), - [anon_sym_LPAREN2] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_TILDE] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3946), - [anon_sym_PLUS] = ACTIONS(3946), - [anon_sym_STAR] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym___extension__] = ACTIONS(3946), - [anon_sym_typedef] = ACTIONS(3946), - [anon_sym_virtual] = ACTIONS(3946), - [anon_sym_extern] = ACTIONS(3946), - [anon_sym___attribute__] = ACTIONS(3946), - [anon_sym___attribute] = ACTIONS(3946), - [anon_sym_using] = ACTIONS(3946), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3948), - [anon_sym___declspec] = ACTIONS(3946), - [anon_sym___based] = ACTIONS(3946), - [anon_sym___cdecl] = ACTIONS(3946), - [anon_sym___clrcall] = ACTIONS(3946), - [anon_sym___stdcall] = ACTIONS(3946), - [anon_sym___fastcall] = ACTIONS(3946), - [anon_sym___thiscall] = ACTIONS(3946), - [anon_sym___vectorcall] = ACTIONS(3946), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_signed] = ACTIONS(3946), - [anon_sym_unsigned] = ACTIONS(3946), - [anon_sym_long] = ACTIONS(3946), - [anon_sym_short] = ACTIONS(3946), - [anon_sym_LBRACK] = ACTIONS(3946), - [anon_sym_static] = ACTIONS(3946), - [anon_sym_register] = ACTIONS(3946), - [anon_sym_inline] = ACTIONS(3946), - [anon_sym___inline] = ACTIONS(3946), - [anon_sym___inline__] = ACTIONS(3946), - [anon_sym___forceinline] = ACTIONS(3946), - [anon_sym_thread_local] = ACTIONS(3946), - [anon_sym___thread] = ACTIONS(3946), - [anon_sym_const] = ACTIONS(3946), - [anon_sym_constexpr] = ACTIONS(3946), - [anon_sym_volatile] = ACTIONS(3946), - [anon_sym_restrict] = ACTIONS(3946), - [anon_sym___restrict__] = ACTIONS(3946), - [anon_sym__Atomic] = ACTIONS(3946), - [anon_sym__Noreturn] = ACTIONS(3946), - [anon_sym_noreturn] = ACTIONS(3946), - [anon_sym__Nonnull] = ACTIONS(3946), - [anon_sym_mutable] = ACTIONS(3946), - [anon_sym_constinit] = ACTIONS(3946), - [anon_sym_consteval] = ACTIONS(3946), - [anon_sym_alignas] = ACTIONS(3946), - [anon_sym__Alignas] = ACTIONS(3946), - [sym_primitive_type] = ACTIONS(3946), - [anon_sym_enum] = ACTIONS(3946), - [anon_sym_class] = ACTIONS(3946), - [anon_sym_struct] = ACTIONS(3946), - [anon_sym_union] = ACTIONS(3946), - [anon_sym_if] = ACTIONS(3946), - [anon_sym_switch] = ACTIONS(3946), - [anon_sym_case] = ACTIONS(3946), - [anon_sym_default] = ACTIONS(3946), - [anon_sym_while] = ACTIONS(3946), - [anon_sym_do] = ACTIONS(3946), - [anon_sym_for] = ACTIONS(3946), - [anon_sym_return] = ACTIONS(3946), - [anon_sym_break] = ACTIONS(3946), - [anon_sym_continue] = ACTIONS(3946), - [anon_sym_goto] = ACTIONS(3946), - [anon_sym___try] = ACTIONS(3946), - [anon_sym___leave] = ACTIONS(3946), - [anon_sym_not] = ACTIONS(3946), - [anon_sym_compl] = ACTIONS(3946), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_sizeof] = ACTIONS(3946), - [anon_sym___alignof__] = ACTIONS(3946), - [anon_sym___alignof] = ACTIONS(3946), - [anon_sym__alignof] = ACTIONS(3946), - [anon_sym_alignof] = ACTIONS(3946), - [anon_sym__Alignof] = ACTIONS(3946), - [anon_sym_offsetof] = ACTIONS(3946), - [anon_sym__Generic] = ACTIONS(3946), - [anon_sym_typename] = ACTIONS(3946), - [anon_sym_asm] = ACTIONS(3946), - [anon_sym___asm__] = ACTIONS(3946), - [anon_sym___asm] = ACTIONS(3946), - [sym_number_literal] = ACTIONS(3948), - [anon_sym_L_SQUOTE] = ACTIONS(3948), - [anon_sym_u_SQUOTE] = ACTIONS(3948), - [anon_sym_U_SQUOTE] = ACTIONS(3948), - [anon_sym_u8_SQUOTE] = ACTIONS(3948), - [anon_sym_SQUOTE] = ACTIONS(3948), - [anon_sym_L_DQUOTE] = ACTIONS(3948), - [anon_sym_u_DQUOTE] = ACTIONS(3948), - [anon_sym_U_DQUOTE] = ACTIONS(3948), - [anon_sym_u8_DQUOTE] = ACTIONS(3948), - [anon_sym_DQUOTE] = ACTIONS(3948), - [sym_true] = ACTIONS(3946), - [sym_false] = ACTIONS(3946), - [anon_sym_NULL] = ACTIONS(3946), - [anon_sym_nullptr] = ACTIONS(3946), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3946), - [anon_sym_decltype] = ACTIONS(3946), - [anon_sym_explicit] = ACTIONS(3946), - [anon_sym_template] = ACTIONS(3946), - [anon_sym_operator] = ACTIONS(3946), - [anon_sym_try] = ACTIONS(3946), - [anon_sym_delete] = ACTIONS(3946), - [anon_sym_throw] = ACTIONS(3946), - [anon_sym_namespace] = ACTIONS(3946), - [anon_sym_static_assert] = ACTIONS(3946), - [anon_sym_concept] = ACTIONS(3946), - [anon_sym_co_return] = ACTIONS(3946), - [anon_sym_co_yield] = ACTIONS(3946), - [anon_sym_R_DQUOTE] = ACTIONS(3948), - [anon_sym_LR_DQUOTE] = ACTIONS(3948), - [anon_sym_uR_DQUOTE] = ACTIONS(3948), - [anon_sym_UR_DQUOTE] = ACTIONS(3948), - [anon_sym_u8R_DQUOTE] = ACTIONS(3948), - [anon_sym_co_await] = ACTIONS(3946), - [anon_sym_new] = ACTIONS(3946), - [anon_sym_requires] = ACTIONS(3946), - [anon_sym_CARET_CARET] = ACTIONS(3948), - [anon_sym_LBRACK_COLON] = ACTIONS(3948), - [sym_this] = ACTIONS(3946), + [STATE(655)] = { + [sym_identifier] = ACTIONS(3996), + [aux_sym_preproc_include_token1] = ACTIONS(3996), + [aux_sym_preproc_def_token1] = ACTIONS(3996), + [aux_sym_preproc_if_token1] = ACTIONS(3996), + [aux_sym_preproc_if_token2] = ACTIONS(3996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3996), + [sym_preproc_directive] = ACTIONS(3996), + [anon_sym_LPAREN2] = ACTIONS(3998), + [anon_sym_BANG] = ACTIONS(3998), + [anon_sym_TILDE] = ACTIONS(3998), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_PLUS] = ACTIONS(3996), + [anon_sym_STAR] = ACTIONS(3998), + [anon_sym_AMP_AMP] = ACTIONS(3998), + [anon_sym_AMP] = ACTIONS(3996), + [anon_sym_SEMI] = ACTIONS(3998), + [anon_sym___extension__] = ACTIONS(3996), + [anon_sym_typedef] = ACTIONS(3996), + [anon_sym_virtual] = ACTIONS(3996), + [anon_sym_extern] = ACTIONS(3996), + [anon_sym___attribute__] = ACTIONS(3996), + [anon_sym___attribute] = ACTIONS(3996), + [anon_sym_using] = ACTIONS(3996), + [anon_sym_COLON_COLON] = ACTIONS(3998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3998), + [anon_sym___declspec] = ACTIONS(3996), + [anon_sym___based] = ACTIONS(3996), + [anon_sym___cdecl] = ACTIONS(3996), + [anon_sym___clrcall] = ACTIONS(3996), + [anon_sym___stdcall] = ACTIONS(3996), + [anon_sym___fastcall] = ACTIONS(3996), + [anon_sym___thiscall] = ACTIONS(3996), + [anon_sym___vectorcall] = ACTIONS(3996), + [anon_sym_LBRACE] = ACTIONS(3998), + [anon_sym_signed] = ACTIONS(3996), + [anon_sym_unsigned] = ACTIONS(3996), + [anon_sym_long] = ACTIONS(3996), + [anon_sym_short] = ACTIONS(3996), + [anon_sym_LBRACK] = ACTIONS(3996), + [anon_sym_static] = ACTIONS(3996), + [anon_sym_register] = ACTIONS(3996), + [anon_sym_inline] = ACTIONS(3996), + [anon_sym___inline] = ACTIONS(3996), + [anon_sym___inline__] = ACTIONS(3996), + [anon_sym___forceinline] = ACTIONS(3996), + [anon_sym_thread_local] = ACTIONS(3996), + [anon_sym___thread] = ACTIONS(3996), + [anon_sym_const] = ACTIONS(3996), + [anon_sym_constexpr] = ACTIONS(3996), + [anon_sym_volatile] = ACTIONS(3996), + [anon_sym_restrict] = ACTIONS(3996), + [anon_sym___restrict__] = ACTIONS(3996), + [anon_sym__Atomic] = ACTIONS(3996), + [anon_sym__Noreturn] = ACTIONS(3996), + [anon_sym_noreturn] = ACTIONS(3996), + [anon_sym__Nonnull] = ACTIONS(3996), + [anon_sym_mutable] = ACTIONS(3996), + [anon_sym_constinit] = ACTIONS(3996), + [anon_sym_consteval] = ACTIONS(3996), + [anon_sym_alignas] = ACTIONS(3996), + [anon_sym__Alignas] = ACTIONS(3996), + [sym_primitive_type] = ACTIONS(3996), + [anon_sym_enum] = ACTIONS(3996), + [anon_sym_class] = ACTIONS(3996), + [anon_sym_struct] = ACTIONS(3996), + [anon_sym_union] = ACTIONS(3996), + [anon_sym_if] = ACTIONS(3996), + [anon_sym_switch] = ACTIONS(3996), + [anon_sym_case] = ACTIONS(3996), + [anon_sym_default] = ACTIONS(3996), + [anon_sym_while] = ACTIONS(3996), + [anon_sym_do] = ACTIONS(3996), + [anon_sym_for] = ACTIONS(3996), + [anon_sym_return] = ACTIONS(3996), + [anon_sym_break] = ACTIONS(3996), + [anon_sym_continue] = ACTIONS(3996), + [anon_sym_goto] = ACTIONS(3996), + [anon_sym___try] = ACTIONS(3996), + [anon_sym___leave] = ACTIONS(3996), + [anon_sym_not] = ACTIONS(3996), + [anon_sym_compl] = ACTIONS(3996), + [anon_sym_DASH_DASH] = ACTIONS(3998), + [anon_sym_PLUS_PLUS] = ACTIONS(3998), + [anon_sym_sizeof] = ACTIONS(3996), + [anon_sym___alignof__] = ACTIONS(3996), + [anon_sym___alignof] = ACTIONS(3996), + [anon_sym__alignof] = ACTIONS(3996), + [anon_sym_alignof] = ACTIONS(3996), + [anon_sym__Alignof] = ACTIONS(3996), + [anon_sym_offsetof] = ACTIONS(3996), + [anon_sym__Generic] = ACTIONS(3996), + [anon_sym_typename] = ACTIONS(3996), + [anon_sym_asm] = ACTIONS(3996), + [anon_sym___asm__] = ACTIONS(3996), + [anon_sym___asm] = ACTIONS(3996), + [sym_number_literal] = ACTIONS(3998), + [anon_sym_L_SQUOTE] = ACTIONS(3998), + [anon_sym_u_SQUOTE] = ACTIONS(3998), + [anon_sym_U_SQUOTE] = ACTIONS(3998), + [anon_sym_u8_SQUOTE] = ACTIONS(3998), + [anon_sym_SQUOTE] = ACTIONS(3998), + [anon_sym_L_DQUOTE] = ACTIONS(3998), + [anon_sym_u_DQUOTE] = ACTIONS(3998), + [anon_sym_U_DQUOTE] = ACTIONS(3998), + [anon_sym_u8_DQUOTE] = ACTIONS(3998), + [anon_sym_DQUOTE] = ACTIONS(3998), + [sym_true] = ACTIONS(3996), + [sym_false] = ACTIONS(3996), + [anon_sym_NULL] = ACTIONS(3996), + [anon_sym_nullptr] = ACTIONS(3996), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3996), + [anon_sym_decltype] = ACTIONS(3996), + [anon_sym_explicit] = ACTIONS(3996), + [anon_sym_export] = ACTIONS(3996), + [anon_sym_module] = ACTIONS(3996), + [anon_sym_import] = ACTIONS(3996), + [anon_sym_template] = ACTIONS(3996), + [anon_sym_operator] = ACTIONS(3996), + [anon_sym_try] = ACTIONS(3996), + [anon_sym_delete] = ACTIONS(3996), + [anon_sym_throw] = ACTIONS(3996), + [anon_sym_namespace] = ACTIONS(3996), + [anon_sym_static_assert] = ACTIONS(3996), + [anon_sym_concept] = ACTIONS(3996), + [anon_sym_co_return] = ACTIONS(3996), + [anon_sym_co_yield] = ACTIONS(3996), + [anon_sym_R_DQUOTE] = ACTIONS(3998), + [anon_sym_LR_DQUOTE] = ACTIONS(3998), + [anon_sym_uR_DQUOTE] = ACTIONS(3998), + [anon_sym_UR_DQUOTE] = ACTIONS(3998), + [anon_sym_u8R_DQUOTE] = ACTIONS(3998), + [anon_sym_co_await] = ACTIONS(3996), + [anon_sym_new] = ACTIONS(3996), + [anon_sym_requires] = ACTIONS(3996), + [anon_sym_CARET_CARET] = ACTIONS(3998), + [anon_sym_LBRACK_COLON] = ACTIONS(3998), + [sym_this] = ACTIONS(3996), }, - [STATE(770)] = { - [sym_identifier] = ACTIONS(3950), - [aux_sym_preproc_include_token1] = ACTIONS(3950), - [aux_sym_preproc_def_token1] = ACTIONS(3950), - [aux_sym_preproc_if_token1] = ACTIONS(3950), - [aux_sym_preproc_if_token2] = ACTIONS(3950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), - [sym_preproc_directive] = ACTIONS(3950), - [anon_sym_LPAREN2] = ACTIONS(3952), - [anon_sym_BANG] = ACTIONS(3952), - [anon_sym_TILDE] = ACTIONS(3952), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_STAR] = ACTIONS(3952), - [anon_sym_AMP_AMP] = ACTIONS(3952), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_SEMI] = ACTIONS(3952), - [anon_sym___extension__] = ACTIONS(3950), - [anon_sym_typedef] = ACTIONS(3950), - [anon_sym_virtual] = ACTIONS(3950), - [anon_sym_extern] = ACTIONS(3950), - [anon_sym___attribute__] = ACTIONS(3950), - [anon_sym___attribute] = ACTIONS(3950), - [anon_sym_using] = ACTIONS(3950), - [anon_sym_COLON_COLON] = ACTIONS(3952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), - [anon_sym___declspec] = ACTIONS(3950), - [anon_sym___based] = ACTIONS(3950), - [anon_sym___cdecl] = ACTIONS(3950), - [anon_sym___clrcall] = ACTIONS(3950), - [anon_sym___stdcall] = ACTIONS(3950), - [anon_sym___fastcall] = ACTIONS(3950), - [anon_sym___thiscall] = ACTIONS(3950), - [anon_sym___vectorcall] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3952), - [anon_sym_signed] = ACTIONS(3950), - [anon_sym_unsigned] = ACTIONS(3950), - [anon_sym_long] = ACTIONS(3950), - [anon_sym_short] = ACTIONS(3950), - [anon_sym_LBRACK] = ACTIONS(3950), - [anon_sym_static] = ACTIONS(3950), - [anon_sym_register] = ACTIONS(3950), - [anon_sym_inline] = ACTIONS(3950), - [anon_sym___inline] = ACTIONS(3950), - [anon_sym___inline__] = ACTIONS(3950), - [anon_sym___forceinline] = ACTIONS(3950), - [anon_sym_thread_local] = ACTIONS(3950), - [anon_sym___thread] = ACTIONS(3950), - [anon_sym_const] = ACTIONS(3950), - [anon_sym_constexpr] = ACTIONS(3950), - [anon_sym_volatile] = ACTIONS(3950), - [anon_sym_restrict] = ACTIONS(3950), - [anon_sym___restrict__] = ACTIONS(3950), - [anon_sym__Atomic] = ACTIONS(3950), - [anon_sym__Noreturn] = ACTIONS(3950), - [anon_sym_noreturn] = ACTIONS(3950), - [anon_sym__Nonnull] = ACTIONS(3950), - [anon_sym_mutable] = ACTIONS(3950), - [anon_sym_constinit] = ACTIONS(3950), - [anon_sym_consteval] = ACTIONS(3950), - [anon_sym_alignas] = ACTIONS(3950), - [anon_sym__Alignas] = ACTIONS(3950), - [sym_primitive_type] = ACTIONS(3950), - [anon_sym_enum] = ACTIONS(3950), - [anon_sym_class] = ACTIONS(3950), - [anon_sym_struct] = ACTIONS(3950), - [anon_sym_union] = ACTIONS(3950), - [anon_sym_if] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_case] = ACTIONS(3950), - [anon_sym_default] = ACTIONS(3950), - [anon_sym_while] = ACTIONS(3950), - [anon_sym_do] = ACTIONS(3950), - [anon_sym_for] = ACTIONS(3950), - [anon_sym_return] = ACTIONS(3950), - [anon_sym_break] = ACTIONS(3950), - [anon_sym_continue] = ACTIONS(3950), - [anon_sym_goto] = ACTIONS(3950), - [anon_sym___try] = ACTIONS(3950), - [anon_sym___leave] = ACTIONS(3950), - [anon_sym_not] = ACTIONS(3950), - [anon_sym_compl] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3952), - [anon_sym_PLUS_PLUS] = ACTIONS(3952), - [anon_sym_sizeof] = ACTIONS(3950), - [anon_sym___alignof__] = ACTIONS(3950), - [anon_sym___alignof] = ACTIONS(3950), - [anon_sym__alignof] = ACTIONS(3950), - [anon_sym_alignof] = ACTIONS(3950), - [anon_sym__Alignof] = ACTIONS(3950), - [anon_sym_offsetof] = ACTIONS(3950), - [anon_sym__Generic] = ACTIONS(3950), - [anon_sym_typename] = ACTIONS(3950), - [anon_sym_asm] = ACTIONS(3950), - [anon_sym___asm__] = ACTIONS(3950), - [anon_sym___asm] = ACTIONS(3950), - [sym_number_literal] = ACTIONS(3952), - [anon_sym_L_SQUOTE] = ACTIONS(3952), - [anon_sym_u_SQUOTE] = ACTIONS(3952), - [anon_sym_U_SQUOTE] = ACTIONS(3952), - [anon_sym_u8_SQUOTE] = ACTIONS(3952), - [anon_sym_SQUOTE] = ACTIONS(3952), - [anon_sym_L_DQUOTE] = ACTIONS(3952), - [anon_sym_u_DQUOTE] = ACTIONS(3952), - [anon_sym_U_DQUOTE] = ACTIONS(3952), - [anon_sym_u8_DQUOTE] = ACTIONS(3952), - [anon_sym_DQUOTE] = ACTIONS(3952), - [sym_true] = ACTIONS(3950), - [sym_false] = ACTIONS(3950), - [anon_sym_NULL] = ACTIONS(3950), - [anon_sym_nullptr] = ACTIONS(3950), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3950), - [anon_sym_decltype] = ACTIONS(3950), - [anon_sym_explicit] = ACTIONS(3950), - [anon_sym_template] = ACTIONS(3950), - [anon_sym_operator] = ACTIONS(3950), - [anon_sym_try] = ACTIONS(3950), - [anon_sym_delete] = ACTIONS(3950), - [anon_sym_throw] = ACTIONS(3950), - [anon_sym_namespace] = ACTIONS(3950), - [anon_sym_static_assert] = ACTIONS(3950), - [anon_sym_concept] = ACTIONS(3950), - [anon_sym_co_return] = ACTIONS(3950), - [anon_sym_co_yield] = ACTIONS(3950), - [anon_sym_R_DQUOTE] = ACTIONS(3952), - [anon_sym_LR_DQUOTE] = ACTIONS(3952), - [anon_sym_uR_DQUOTE] = ACTIONS(3952), - [anon_sym_UR_DQUOTE] = ACTIONS(3952), - [anon_sym_u8R_DQUOTE] = ACTIONS(3952), - [anon_sym_co_await] = ACTIONS(3950), - [anon_sym_new] = ACTIONS(3950), - [anon_sym_requires] = ACTIONS(3950), - [anon_sym_CARET_CARET] = ACTIONS(3952), - [anon_sym_LBRACK_COLON] = ACTIONS(3952), - [sym_this] = ACTIONS(3950), + [STATE(656)] = { + [sym_identifier] = ACTIONS(4016), + [aux_sym_preproc_include_token1] = ACTIONS(4016), + [aux_sym_preproc_def_token1] = ACTIONS(4016), + [aux_sym_preproc_if_token1] = ACTIONS(4016), + [aux_sym_preproc_if_token2] = ACTIONS(4016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4016), + [sym_preproc_directive] = ACTIONS(4016), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(4018), + [anon_sym_TILDE] = ACTIONS(4018), + [anon_sym_DASH] = ACTIONS(4016), + [anon_sym_PLUS] = ACTIONS(4016), + [anon_sym_STAR] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4016), + [anon_sym_SEMI] = ACTIONS(4018), + [anon_sym___extension__] = ACTIONS(4016), + [anon_sym_typedef] = ACTIONS(4016), + [anon_sym_virtual] = ACTIONS(4016), + [anon_sym_extern] = ACTIONS(4016), + [anon_sym___attribute__] = ACTIONS(4016), + [anon_sym___attribute] = ACTIONS(4016), + [anon_sym_using] = ACTIONS(4016), + [anon_sym_COLON_COLON] = ACTIONS(4018), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4018), + [anon_sym___declspec] = ACTIONS(4016), + [anon_sym___based] = ACTIONS(4016), + [anon_sym___cdecl] = ACTIONS(4016), + [anon_sym___clrcall] = ACTIONS(4016), + [anon_sym___stdcall] = ACTIONS(4016), + [anon_sym___fastcall] = ACTIONS(4016), + [anon_sym___thiscall] = ACTIONS(4016), + [anon_sym___vectorcall] = ACTIONS(4016), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_signed] = ACTIONS(4016), + [anon_sym_unsigned] = ACTIONS(4016), + [anon_sym_long] = ACTIONS(4016), + [anon_sym_short] = ACTIONS(4016), + [anon_sym_LBRACK] = ACTIONS(4016), + [anon_sym_static] = ACTIONS(4016), + [anon_sym_register] = ACTIONS(4016), + [anon_sym_inline] = ACTIONS(4016), + [anon_sym___inline] = ACTIONS(4016), + [anon_sym___inline__] = ACTIONS(4016), + [anon_sym___forceinline] = ACTIONS(4016), + [anon_sym_thread_local] = ACTIONS(4016), + [anon_sym___thread] = ACTIONS(4016), + [anon_sym_const] = ACTIONS(4016), + [anon_sym_constexpr] = ACTIONS(4016), + [anon_sym_volatile] = ACTIONS(4016), + [anon_sym_restrict] = ACTIONS(4016), + [anon_sym___restrict__] = ACTIONS(4016), + [anon_sym__Atomic] = ACTIONS(4016), + [anon_sym__Noreturn] = ACTIONS(4016), + [anon_sym_noreturn] = ACTIONS(4016), + [anon_sym__Nonnull] = ACTIONS(4016), + [anon_sym_mutable] = ACTIONS(4016), + [anon_sym_constinit] = ACTIONS(4016), + [anon_sym_consteval] = ACTIONS(4016), + [anon_sym_alignas] = ACTIONS(4016), + [anon_sym__Alignas] = ACTIONS(4016), + [sym_primitive_type] = ACTIONS(4016), + [anon_sym_enum] = ACTIONS(4016), + [anon_sym_class] = ACTIONS(4016), + [anon_sym_struct] = ACTIONS(4016), + [anon_sym_union] = ACTIONS(4016), + [anon_sym_if] = ACTIONS(4016), + [anon_sym_switch] = ACTIONS(4016), + [anon_sym_case] = ACTIONS(4016), + [anon_sym_default] = ACTIONS(4016), + [anon_sym_while] = ACTIONS(4016), + [anon_sym_do] = ACTIONS(4016), + [anon_sym_for] = ACTIONS(4016), + [anon_sym_return] = ACTIONS(4016), + [anon_sym_break] = ACTIONS(4016), + [anon_sym_continue] = ACTIONS(4016), + [anon_sym_goto] = ACTIONS(4016), + [anon_sym___try] = ACTIONS(4016), + [anon_sym___leave] = ACTIONS(4016), + [anon_sym_not] = ACTIONS(4016), + [anon_sym_compl] = ACTIONS(4016), + [anon_sym_DASH_DASH] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(4018), + [anon_sym_sizeof] = ACTIONS(4016), + [anon_sym___alignof__] = ACTIONS(4016), + [anon_sym___alignof] = ACTIONS(4016), + [anon_sym__alignof] = ACTIONS(4016), + [anon_sym_alignof] = ACTIONS(4016), + [anon_sym__Alignof] = ACTIONS(4016), + [anon_sym_offsetof] = ACTIONS(4016), + [anon_sym__Generic] = ACTIONS(4016), + [anon_sym_typename] = ACTIONS(4016), + [anon_sym_asm] = ACTIONS(4016), + [anon_sym___asm__] = ACTIONS(4016), + [anon_sym___asm] = ACTIONS(4016), + [sym_number_literal] = ACTIONS(4018), + [anon_sym_L_SQUOTE] = ACTIONS(4018), + [anon_sym_u_SQUOTE] = ACTIONS(4018), + [anon_sym_U_SQUOTE] = ACTIONS(4018), + [anon_sym_u8_SQUOTE] = ACTIONS(4018), + [anon_sym_SQUOTE] = ACTIONS(4018), + [anon_sym_L_DQUOTE] = ACTIONS(4018), + [anon_sym_u_DQUOTE] = ACTIONS(4018), + [anon_sym_U_DQUOTE] = ACTIONS(4018), + [anon_sym_u8_DQUOTE] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(4018), + [sym_true] = ACTIONS(4016), + [sym_false] = ACTIONS(4016), + [anon_sym_NULL] = ACTIONS(4016), + [anon_sym_nullptr] = ACTIONS(4016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4016), + [anon_sym_decltype] = ACTIONS(4016), + [anon_sym_explicit] = ACTIONS(4016), + [anon_sym_export] = ACTIONS(4016), + [anon_sym_module] = ACTIONS(4016), + [anon_sym_import] = ACTIONS(4016), + [anon_sym_template] = ACTIONS(4016), + [anon_sym_operator] = ACTIONS(4016), + [anon_sym_try] = ACTIONS(4016), + [anon_sym_delete] = ACTIONS(4016), + [anon_sym_throw] = ACTIONS(4016), + [anon_sym_namespace] = ACTIONS(4016), + [anon_sym_static_assert] = ACTIONS(4016), + [anon_sym_concept] = ACTIONS(4016), + [anon_sym_co_return] = ACTIONS(4016), + [anon_sym_co_yield] = ACTIONS(4016), + [anon_sym_R_DQUOTE] = ACTIONS(4018), + [anon_sym_LR_DQUOTE] = ACTIONS(4018), + [anon_sym_uR_DQUOTE] = ACTIONS(4018), + [anon_sym_UR_DQUOTE] = ACTIONS(4018), + [anon_sym_u8R_DQUOTE] = ACTIONS(4018), + [anon_sym_co_await] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(4016), + [anon_sym_requires] = ACTIONS(4016), + [anon_sym_CARET_CARET] = ACTIONS(4018), + [anon_sym_LBRACK_COLON] = ACTIONS(4018), + [sym_this] = ACTIONS(4016), }, - [STATE(771)] = { - [sym_identifier] = ACTIONS(3970), - [aux_sym_preproc_include_token1] = ACTIONS(3970), - [aux_sym_preproc_def_token1] = ACTIONS(3970), - [aux_sym_preproc_if_token1] = ACTIONS(3970), - [aux_sym_preproc_if_token2] = ACTIONS(3970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3970), - [sym_preproc_directive] = ACTIONS(3970), - [anon_sym_LPAREN2] = ACTIONS(3972), - [anon_sym_BANG] = ACTIONS(3972), - [anon_sym_TILDE] = ACTIONS(3972), - [anon_sym_DASH] = ACTIONS(3970), - [anon_sym_PLUS] = ACTIONS(3970), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_AMP_AMP] = ACTIONS(3972), - [anon_sym_AMP] = ACTIONS(3970), - [anon_sym_SEMI] = ACTIONS(3972), - [anon_sym___extension__] = ACTIONS(3970), - [anon_sym_typedef] = ACTIONS(3970), - [anon_sym_virtual] = ACTIONS(3970), - [anon_sym_extern] = ACTIONS(3970), - [anon_sym___attribute__] = ACTIONS(3970), - [anon_sym___attribute] = ACTIONS(3970), - [anon_sym_using] = ACTIONS(3970), - [anon_sym_COLON_COLON] = ACTIONS(3972), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3972), - [anon_sym___declspec] = ACTIONS(3970), - [anon_sym___based] = ACTIONS(3970), - [anon_sym___cdecl] = ACTIONS(3970), - [anon_sym___clrcall] = ACTIONS(3970), - [anon_sym___stdcall] = ACTIONS(3970), - [anon_sym___fastcall] = ACTIONS(3970), - [anon_sym___thiscall] = ACTIONS(3970), - [anon_sym___vectorcall] = ACTIONS(3970), - [anon_sym_LBRACE] = ACTIONS(3972), - [anon_sym_signed] = ACTIONS(3970), - [anon_sym_unsigned] = ACTIONS(3970), - [anon_sym_long] = ACTIONS(3970), - [anon_sym_short] = ACTIONS(3970), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_static] = ACTIONS(3970), - [anon_sym_register] = ACTIONS(3970), - [anon_sym_inline] = ACTIONS(3970), - [anon_sym___inline] = ACTIONS(3970), - [anon_sym___inline__] = ACTIONS(3970), - [anon_sym___forceinline] = ACTIONS(3970), - [anon_sym_thread_local] = ACTIONS(3970), - [anon_sym___thread] = ACTIONS(3970), - [anon_sym_const] = ACTIONS(3970), - [anon_sym_constexpr] = ACTIONS(3970), - [anon_sym_volatile] = ACTIONS(3970), - [anon_sym_restrict] = ACTIONS(3970), - [anon_sym___restrict__] = ACTIONS(3970), - [anon_sym__Atomic] = ACTIONS(3970), - [anon_sym__Noreturn] = ACTIONS(3970), - [anon_sym_noreturn] = ACTIONS(3970), - [anon_sym__Nonnull] = ACTIONS(3970), - [anon_sym_mutable] = ACTIONS(3970), - [anon_sym_constinit] = ACTIONS(3970), - [anon_sym_consteval] = ACTIONS(3970), - [anon_sym_alignas] = ACTIONS(3970), - [anon_sym__Alignas] = ACTIONS(3970), - [sym_primitive_type] = ACTIONS(3970), - [anon_sym_enum] = ACTIONS(3970), - [anon_sym_class] = ACTIONS(3970), - [anon_sym_struct] = ACTIONS(3970), - [anon_sym_union] = ACTIONS(3970), - [anon_sym_if] = ACTIONS(3970), - [anon_sym_switch] = ACTIONS(3970), - [anon_sym_case] = ACTIONS(3970), - [anon_sym_default] = ACTIONS(3970), - [anon_sym_while] = ACTIONS(3970), - [anon_sym_do] = ACTIONS(3970), - [anon_sym_for] = ACTIONS(3970), - [anon_sym_return] = ACTIONS(3970), - [anon_sym_break] = ACTIONS(3970), - [anon_sym_continue] = ACTIONS(3970), - [anon_sym_goto] = ACTIONS(3970), - [anon_sym___try] = ACTIONS(3970), - [anon_sym___leave] = ACTIONS(3970), - [anon_sym_not] = ACTIONS(3970), - [anon_sym_compl] = ACTIONS(3970), - [anon_sym_DASH_DASH] = ACTIONS(3972), - [anon_sym_PLUS_PLUS] = ACTIONS(3972), - [anon_sym_sizeof] = ACTIONS(3970), - [anon_sym___alignof__] = ACTIONS(3970), - [anon_sym___alignof] = ACTIONS(3970), - [anon_sym__alignof] = ACTIONS(3970), - [anon_sym_alignof] = ACTIONS(3970), - [anon_sym__Alignof] = ACTIONS(3970), - [anon_sym_offsetof] = ACTIONS(3970), - [anon_sym__Generic] = ACTIONS(3970), - [anon_sym_typename] = ACTIONS(3970), - [anon_sym_asm] = ACTIONS(3970), - [anon_sym___asm__] = ACTIONS(3970), - [anon_sym___asm] = ACTIONS(3970), - [sym_number_literal] = ACTIONS(3972), - [anon_sym_L_SQUOTE] = ACTIONS(3972), - [anon_sym_u_SQUOTE] = ACTIONS(3972), - [anon_sym_U_SQUOTE] = ACTIONS(3972), - [anon_sym_u8_SQUOTE] = ACTIONS(3972), - [anon_sym_SQUOTE] = ACTIONS(3972), - [anon_sym_L_DQUOTE] = ACTIONS(3972), - [anon_sym_u_DQUOTE] = ACTIONS(3972), - [anon_sym_U_DQUOTE] = ACTIONS(3972), - [anon_sym_u8_DQUOTE] = ACTIONS(3972), - [anon_sym_DQUOTE] = ACTIONS(3972), - [sym_true] = ACTIONS(3970), - [sym_false] = ACTIONS(3970), - [anon_sym_NULL] = ACTIONS(3970), - [anon_sym_nullptr] = ACTIONS(3970), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3970), - [anon_sym_decltype] = ACTIONS(3970), - [anon_sym_explicit] = ACTIONS(3970), - [anon_sym_template] = ACTIONS(3970), - [anon_sym_operator] = ACTIONS(3970), - [anon_sym_try] = ACTIONS(3970), - [anon_sym_delete] = ACTIONS(3970), - [anon_sym_throw] = ACTIONS(3970), - [anon_sym_namespace] = ACTIONS(3970), - [anon_sym_static_assert] = ACTIONS(3970), - [anon_sym_concept] = ACTIONS(3970), - [anon_sym_co_return] = ACTIONS(3970), - [anon_sym_co_yield] = ACTIONS(3970), - [anon_sym_R_DQUOTE] = ACTIONS(3972), - [anon_sym_LR_DQUOTE] = ACTIONS(3972), - [anon_sym_uR_DQUOTE] = ACTIONS(3972), - [anon_sym_UR_DQUOTE] = ACTIONS(3972), - [anon_sym_u8R_DQUOTE] = ACTIONS(3972), - [anon_sym_co_await] = ACTIONS(3970), - [anon_sym_new] = ACTIONS(3970), - [anon_sym_requires] = ACTIONS(3970), - [anon_sym_CARET_CARET] = ACTIONS(3972), - [anon_sym_LBRACK_COLON] = ACTIONS(3972), - [sym_this] = ACTIONS(3970), + [STATE(657)] = { + [ts_builtin_sym_end] = ACTIONS(3919), + [sym_identifier] = ACTIONS(3917), + [aux_sym_preproc_include_token1] = ACTIONS(3917), + [aux_sym_preproc_def_token1] = ACTIONS(3917), + [anon_sym_COMMA] = ACTIONS(3919), + [aux_sym_preproc_if_token1] = ACTIONS(3917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3917), + [sym_preproc_directive] = ACTIONS(3917), + [anon_sym_LPAREN2] = ACTIONS(3919), + [anon_sym_BANG] = ACTIONS(3919), + [anon_sym_TILDE] = ACTIONS(3919), + [anon_sym_DASH] = ACTIONS(3917), + [anon_sym_PLUS] = ACTIONS(3917), + [anon_sym_STAR] = ACTIONS(3919), + [anon_sym_AMP_AMP] = ACTIONS(3919), + [anon_sym_AMP] = ACTIONS(3917), + [anon_sym_SEMI] = ACTIONS(3919), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_typedef] = ACTIONS(3917), + [anon_sym_virtual] = ACTIONS(3917), + [anon_sym_extern] = ACTIONS(3917), + [anon_sym___attribute__] = ACTIONS(3917), + [anon_sym___attribute] = ACTIONS(3917), + [anon_sym_using] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(3919), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3919), + [anon_sym___declspec] = ACTIONS(3917), + [anon_sym___based] = ACTIONS(3917), + [anon_sym___cdecl] = ACTIONS(3917), + [anon_sym___clrcall] = ACTIONS(3917), + [anon_sym___stdcall] = ACTIONS(3917), + [anon_sym___fastcall] = ACTIONS(3917), + [anon_sym___thiscall] = ACTIONS(3917), + [anon_sym___vectorcall] = ACTIONS(3917), + [anon_sym_LBRACE] = ACTIONS(3919), + [anon_sym_RBRACE] = ACTIONS(3919), + [anon_sym_signed] = ACTIONS(3917), + [anon_sym_unsigned] = ACTIONS(3917), + [anon_sym_long] = ACTIONS(3917), + [anon_sym_short] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(3917), + [anon_sym_static] = ACTIONS(3917), + [anon_sym_register] = ACTIONS(3917), + [anon_sym_inline] = ACTIONS(3917), + [anon_sym___inline] = ACTIONS(3917), + [anon_sym___inline__] = ACTIONS(3917), + [anon_sym___forceinline] = ACTIONS(3917), + [anon_sym_thread_local] = ACTIONS(3917), + [anon_sym___thread] = ACTIONS(3917), + [anon_sym_const] = ACTIONS(3917), + [anon_sym_constexpr] = ACTIONS(3917), + [anon_sym_volatile] = ACTIONS(3917), + [anon_sym_restrict] = ACTIONS(3917), + [anon_sym___restrict__] = ACTIONS(3917), + [anon_sym__Atomic] = ACTIONS(3917), + [anon_sym__Noreturn] = ACTIONS(3917), + [anon_sym_noreturn] = ACTIONS(3917), + [anon_sym__Nonnull] = ACTIONS(3917), + [anon_sym_mutable] = ACTIONS(3917), + [anon_sym_constinit] = ACTIONS(3917), + [anon_sym_consteval] = ACTIONS(3917), + [anon_sym_alignas] = ACTIONS(3917), + [anon_sym__Alignas] = ACTIONS(3917), + [sym_primitive_type] = ACTIONS(3917), + [anon_sym_enum] = ACTIONS(3917), + [anon_sym_class] = ACTIONS(3917), + [anon_sym_struct] = ACTIONS(3917), + [anon_sym_union] = ACTIONS(3917), + [anon_sym_if] = ACTIONS(3917), + [anon_sym_switch] = ACTIONS(3917), + [anon_sym_case] = ACTIONS(3917), + [anon_sym_default] = ACTIONS(3917), + [anon_sym_while] = ACTIONS(3917), + [anon_sym_do] = ACTIONS(3917), + [anon_sym_for] = ACTIONS(3917), + [anon_sym_return] = ACTIONS(3917), + [anon_sym_break] = ACTIONS(3917), + [anon_sym_continue] = ACTIONS(3917), + [anon_sym_goto] = ACTIONS(3917), + [anon_sym_not] = ACTIONS(3917), + [anon_sym_compl] = ACTIONS(3917), + [anon_sym_DASH_DASH] = ACTIONS(3919), + [anon_sym_PLUS_PLUS] = ACTIONS(3919), + [anon_sym_sizeof] = ACTIONS(3917), + [anon_sym___alignof__] = ACTIONS(3917), + [anon_sym___alignof] = ACTIONS(3917), + [anon_sym__alignof] = ACTIONS(3917), + [anon_sym_alignof] = ACTIONS(3917), + [anon_sym__Alignof] = ACTIONS(3917), + [anon_sym_offsetof] = ACTIONS(3917), + [anon_sym__Generic] = ACTIONS(3917), + [anon_sym_typename] = ACTIONS(3917), + [anon_sym_asm] = ACTIONS(3917), + [anon_sym___asm__] = ACTIONS(3917), + [anon_sym___asm] = ACTIONS(3917), + [sym_number_literal] = ACTIONS(3919), + [anon_sym_L_SQUOTE] = ACTIONS(3919), + [anon_sym_u_SQUOTE] = ACTIONS(3919), + [anon_sym_U_SQUOTE] = ACTIONS(3919), + [anon_sym_u8_SQUOTE] = ACTIONS(3919), + [anon_sym_SQUOTE] = ACTIONS(3919), + [anon_sym_L_DQUOTE] = ACTIONS(3919), + [anon_sym_u_DQUOTE] = ACTIONS(3919), + [anon_sym_U_DQUOTE] = ACTIONS(3919), + [anon_sym_u8_DQUOTE] = ACTIONS(3919), + [anon_sym_DQUOTE] = ACTIONS(3919), + [sym_true] = ACTIONS(3917), + [sym_false] = ACTIONS(3917), + [anon_sym_NULL] = ACTIONS(3917), + [anon_sym_nullptr] = ACTIONS(3917), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3917), + [anon_sym_decltype] = ACTIONS(3917), + [anon_sym_explicit] = ACTIONS(3917), + [anon_sym_export] = ACTIONS(3917), + [anon_sym_module] = ACTIONS(3917), + [anon_sym_import] = ACTIONS(3917), + [anon_sym_template] = ACTIONS(3917), + [anon_sym_operator] = ACTIONS(3917), + [anon_sym_try] = ACTIONS(3917), + [anon_sym_delete] = ACTIONS(3917), + [anon_sym_throw] = ACTIONS(3917), + [anon_sym_namespace] = ACTIONS(3917), + [anon_sym_static_assert] = ACTIONS(3917), + [anon_sym_concept] = ACTIONS(3917), + [anon_sym_co_return] = ACTIONS(3917), + [anon_sym_co_yield] = ACTIONS(3917), + [anon_sym_R_DQUOTE] = ACTIONS(3919), + [anon_sym_LR_DQUOTE] = ACTIONS(3919), + [anon_sym_uR_DQUOTE] = ACTIONS(3919), + [anon_sym_UR_DQUOTE] = ACTIONS(3919), + [anon_sym_u8R_DQUOTE] = ACTIONS(3919), + [anon_sym_co_await] = ACTIONS(3917), + [anon_sym_new] = ACTIONS(3917), + [anon_sym_requires] = ACTIONS(3917), + [anon_sym_CARET_CARET] = ACTIONS(3919), + [anon_sym_LBRACK_COLON] = ACTIONS(3919), + [sym_this] = ACTIONS(3917), }, - [STATE(772)] = { - [sym_identifier] = ACTIONS(3902), - [aux_sym_preproc_include_token1] = ACTIONS(3902), - [aux_sym_preproc_def_token1] = ACTIONS(3902), - [aux_sym_preproc_if_token1] = ACTIONS(3902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3902), - [sym_preproc_directive] = ACTIONS(3902), - [anon_sym_LPAREN2] = ACTIONS(3904), - [anon_sym_BANG] = ACTIONS(3904), - [anon_sym_TILDE] = ACTIONS(3904), - [anon_sym_DASH] = ACTIONS(3902), - [anon_sym_PLUS] = ACTIONS(3902), - [anon_sym_STAR] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3904), - [anon_sym_AMP] = ACTIONS(3902), - [anon_sym_SEMI] = ACTIONS(3904), - [anon_sym___extension__] = ACTIONS(3902), - [anon_sym_typedef] = ACTIONS(3902), - [anon_sym_virtual] = ACTIONS(3902), - [anon_sym_extern] = ACTIONS(3902), - [anon_sym___attribute__] = ACTIONS(3902), - [anon_sym___attribute] = ACTIONS(3902), - [anon_sym_using] = 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___cdecl] = ACTIONS(3902), - [anon_sym___clrcall] = ACTIONS(3902), - [anon_sym___stdcall] = ACTIONS(3902), - [anon_sym___fastcall] = ACTIONS(3902), - [anon_sym___thiscall] = ACTIONS(3902), - [anon_sym___vectorcall] = ACTIONS(3902), - [anon_sym_LBRACE] = ACTIONS(3904), - [anon_sym_RBRACE] = ACTIONS(3904), - [anon_sym_signed] = ACTIONS(3902), - [anon_sym_unsigned] = ACTIONS(3902), - [anon_sym_long] = ACTIONS(3902), - [anon_sym_short] = ACTIONS(3902), - [anon_sym_LBRACK] = ACTIONS(3902), - [anon_sym_static] = ACTIONS(3902), - [anon_sym_register] = ACTIONS(3902), - [anon_sym_inline] = ACTIONS(3902), - [anon_sym___inline] = ACTIONS(3902), - [anon_sym___inline__] = ACTIONS(3902), - [anon_sym___forceinline] = ACTIONS(3902), - [anon_sym_thread_local] = ACTIONS(3902), - [anon_sym___thread] = ACTIONS(3902), - [anon_sym_const] = ACTIONS(3902), - [anon_sym_constexpr] = ACTIONS(3902), - [anon_sym_volatile] = ACTIONS(3902), - [anon_sym_restrict] = ACTIONS(3902), - [anon_sym___restrict__] = ACTIONS(3902), - [anon_sym__Atomic] = ACTIONS(3902), - [anon_sym__Noreturn] = ACTIONS(3902), - [anon_sym_noreturn] = ACTIONS(3902), - [anon_sym__Nonnull] = ACTIONS(3902), - [anon_sym_mutable] = ACTIONS(3902), - [anon_sym_constinit] = ACTIONS(3902), - [anon_sym_consteval] = ACTIONS(3902), - [anon_sym_alignas] = ACTIONS(3902), - [anon_sym__Alignas] = ACTIONS(3902), - [sym_primitive_type] = ACTIONS(3902), - [anon_sym_enum] = ACTIONS(3902), - [anon_sym_class] = ACTIONS(3902), - [anon_sym_struct] = ACTIONS(3902), - [anon_sym_union] = ACTIONS(3902), - [anon_sym_if] = ACTIONS(3902), - [anon_sym_switch] = ACTIONS(3902), - [anon_sym_case] = ACTIONS(3902), - [anon_sym_default] = ACTIONS(3902), - [anon_sym_while] = ACTIONS(3902), - [anon_sym_do] = ACTIONS(3902), - [anon_sym_for] = ACTIONS(3902), - [anon_sym_return] = ACTIONS(3902), - [anon_sym_break] = ACTIONS(3902), - [anon_sym_continue] = ACTIONS(3902), - [anon_sym_goto] = ACTIONS(3902), - [anon_sym___try] = ACTIONS(3902), - [anon_sym___leave] = ACTIONS(3902), - [anon_sym_not] = ACTIONS(3902), - [anon_sym_compl] = ACTIONS(3902), - [anon_sym_DASH_DASH] = ACTIONS(3904), - [anon_sym_PLUS_PLUS] = ACTIONS(3904), - [anon_sym_sizeof] = ACTIONS(3902), - [anon_sym___alignof__] = ACTIONS(3902), - [anon_sym___alignof] = ACTIONS(3902), - [anon_sym__alignof] = ACTIONS(3902), - [anon_sym_alignof] = ACTIONS(3902), - [anon_sym__Alignof] = ACTIONS(3902), - [anon_sym_offsetof] = ACTIONS(3902), - [anon_sym__Generic] = ACTIONS(3902), - [anon_sym_typename] = ACTIONS(3902), - [anon_sym_asm] = ACTIONS(3902), - [anon_sym___asm__] = ACTIONS(3902), - [anon_sym___asm] = ACTIONS(3902), - [sym_number_literal] = ACTIONS(3904), - [anon_sym_L_SQUOTE] = ACTIONS(3904), - [anon_sym_u_SQUOTE] = ACTIONS(3904), - [anon_sym_U_SQUOTE] = ACTIONS(3904), - [anon_sym_u8_SQUOTE] = ACTIONS(3904), - [anon_sym_SQUOTE] = ACTIONS(3904), - [anon_sym_L_DQUOTE] = ACTIONS(3904), - [anon_sym_u_DQUOTE] = ACTIONS(3904), - [anon_sym_U_DQUOTE] = ACTIONS(3904), - [anon_sym_u8_DQUOTE] = ACTIONS(3904), - [anon_sym_DQUOTE] = ACTIONS(3904), - [sym_true] = ACTIONS(3902), - [sym_false] = ACTIONS(3902), - [anon_sym_NULL] = ACTIONS(3902), - [anon_sym_nullptr] = ACTIONS(3902), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3902), - [anon_sym_decltype] = ACTIONS(3902), - [anon_sym_explicit] = ACTIONS(3902), - [anon_sym_template] = ACTIONS(3902), - [anon_sym_operator] = ACTIONS(3902), - [anon_sym_try] = ACTIONS(3902), - [anon_sym_delete] = ACTIONS(3902), - [anon_sym_throw] = ACTIONS(3902), - [anon_sym_namespace] = ACTIONS(3902), - [anon_sym_static_assert] = ACTIONS(3902), - [anon_sym_concept] = ACTIONS(3902), - [anon_sym_co_return] = ACTIONS(3902), - [anon_sym_co_yield] = ACTIONS(3902), - [anon_sym_R_DQUOTE] = ACTIONS(3904), - [anon_sym_LR_DQUOTE] = ACTIONS(3904), - [anon_sym_uR_DQUOTE] = ACTIONS(3904), - [anon_sym_UR_DQUOTE] = ACTIONS(3904), - [anon_sym_u8R_DQUOTE] = ACTIONS(3904), - [anon_sym_co_await] = ACTIONS(3902), - [anon_sym_new] = ACTIONS(3902), - [anon_sym_requires] = ACTIONS(3902), - [anon_sym_CARET_CARET] = ACTIONS(3904), - [anon_sym_LBRACK_COLON] = ACTIONS(3904), - [sym_this] = ACTIONS(3902), + [STATE(658)] = { + [sym_identifier] = ACTIONS(4024), + [aux_sym_preproc_include_token1] = ACTIONS(4024), + [aux_sym_preproc_def_token1] = ACTIONS(4024), + [aux_sym_preproc_if_token1] = ACTIONS(4024), + [aux_sym_preproc_if_token2] = ACTIONS(4024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4024), + [sym_preproc_directive] = ACTIONS(4024), + [anon_sym_LPAREN2] = ACTIONS(4026), + [anon_sym_BANG] = ACTIONS(4026), + [anon_sym_TILDE] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_STAR] = ACTIONS(4026), + [anon_sym_AMP_AMP] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4024), + [anon_sym_SEMI] = ACTIONS(4026), + [anon_sym___extension__] = ACTIONS(4024), + [anon_sym_typedef] = ACTIONS(4024), + [anon_sym_virtual] = ACTIONS(4024), + [anon_sym_extern] = ACTIONS(4024), + [anon_sym___attribute__] = ACTIONS(4024), + [anon_sym___attribute] = ACTIONS(4024), + [anon_sym_using] = ACTIONS(4024), + [anon_sym_COLON_COLON] = ACTIONS(4026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4026), + [anon_sym___declspec] = ACTIONS(4024), + [anon_sym___based] = ACTIONS(4024), + [anon_sym___cdecl] = ACTIONS(4024), + [anon_sym___clrcall] = ACTIONS(4024), + [anon_sym___stdcall] = ACTIONS(4024), + [anon_sym___fastcall] = ACTIONS(4024), + [anon_sym___thiscall] = ACTIONS(4024), + [anon_sym___vectorcall] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4026), + [anon_sym_signed] = ACTIONS(4024), + [anon_sym_unsigned] = ACTIONS(4024), + [anon_sym_long] = ACTIONS(4024), + [anon_sym_short] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4024), + [anon_sym_static] = ACTIONS(4024), + [anon_sym_register] = ACTIONS(4024), + [anon_sym_inline] = ACTIONS(4024), + [anon_sym___inline] = ACTIONS(4024), + [anon_sym___inline__] = ACTIONS(4024), + [anon_sym___forceinline] = ACTIONS(4024), + [anon_sym_thread_local] = ACTIONS(4024), + [anon_sym___thread] = ACTIONS(4024), + [anon_sym_const] = ACTIONS(4024), + [anon_sym_constexpr] = ACTIONS(4024), + [anon_sym_volatile] = ACTIONS(4024), + [anon_sym_restrict] = ACTIONS(4024), + [anon_sym___restrict__] = ACTIONS(4024), + [anon_sym__Atomic] = ACTIONS(4024), + [anon_sym__Noreturn] = ACTIONS(4024), + [anon_sym_noreturn] = ACTIONS(4024), + [anon_sym__Nonnull] = ACTIONS(4024), + [anon_sym_mutable] = ACTIONS(4024), + [anon_sym_constinit] = ACTIONS(4024), + [anon_sym_consteval] = ACTIONS(4024), + [anon_sym_alignas] = ACTIONS(4024), + [anon_sym__Alignas] = ACTIONS(4024), + [sym_primitive_type] = ACTIONS(4024), + [anon_sym_enum] = ACTIONS(4024), + [anon_sym_class] = ACTIONS(4024), + [anon_sym_struct] = ACTIONS(4024), + [anon_sym_union] = ACTIONS(4024), + [anon_sym_if] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_case] = ACTIONS(4024), + [anon_sym_default] = ACTIONS(4024), + [anon_sym_while] = ACTIONS(4024), + [anon_sym_do] = ACTIONS(4024), + [anon_sym_for] = ACTIONS(4024), + [anon_sym_return] = ACTIONS(4024), + [anon_sym_break] = ACTIONS(4024), + [anon_sym_continue] = ACTIONS(4024), + [anon_sym_goto] = ACTIONS(4024), + [anon_sym___try] = ACTIONS(4024), + [anon_sym___leave] = ACTIONS(4024), + [anon_sym_not] = ACTIONS(4024), + [anon_sym_compl] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4026), + [anon_sym_PLUS_PLUS] = ACTIONS(4026), + [anon_sym_sizeof] = ACTIONS(4024), + [anon_sym___alignof__] = ACTIONS(4024), + [anon_sym___alignof] = ACTIONS(4024), + [anon_sym__alignof] = ACTIONS(4024), + [anon_sym_alignof] = ACTIONS(4024), + [anon_sym__Alignof] = ACTIONS(4024), + [anon_sym_offsetof] = ACTIONS(4024), + [anon_sym__Generic] = ACTIONS(4024), + [anon_sym_typename] = ACTIONS(4024), + [anon_sym_asm] = ACTIONS(4024), + [anon_sym___asm__] = ACTIONS(4024), + [anon_sym___asm] = ACTIONS(4024), + [sym_number_literal] = ACTIONS(4026), + [anon_sym_L_SQUOTE] = ACTIONS(4026), + [anon_sym_u_SQUOTE] = ACTIONS(4026), + [anon_sym_U_SQUOTE] = ACTIONS(4026), + [anon_sym_u8_SQUOTE] = ACTIONS(4026), + [anon_sym_SQUOTE] = ACTIONS(4026), + [anon_sym_L_DQUOTE] = ACTIONS(4026), + [anon_sym_u_DQUOTE] = ACTIONS(4026), + [anon_sym_U_DQUOTE] = ACTIONS(4026), + [anon_sym_u8_DQUOTE] = ACTIONS(4026), + [anon_sym_DQUOTE] = ACTIONS(4026), + [sym_true] = ACTIONS(4024), + [sym_false] = ACTIONS(4024), + [anon_sym_NULL] = ACTIONS(4024), + [anon_sym_nullptr] = ACTIONS(4024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4024), + [anon_sym_decltype] = ACTIONS(4024), + [anon_sym_explicit] = ACTIONS(4024), + [anon_sym_export] = ACTIONS(4024), + [anon_sym_module] = ACTIONS(4024), + [anon_sym_import] = ACTIONS(4024), + [anon_sym_template] = ACTIONS(4024), + [anon_sym_operator] = ACTIONS(4024), + [anon_sym_try] = ACTIONS(4024), + [anon_sym_delete] = ACTIONS(4024), + [anon_sym_throw] = ACTIONS(4024), + [anon_sym_namespace] = ACTIONS(4024), + [anon_sym_static_assert] = ACTIONS(4024), + [anon_sym_concept] = ACTIONS(4024), + [anon_sym_co_return] = ACTIONS(4024), + [anon_sym_co_yield] = ACTIONS(4024), + [anon_sym_R_DQUOTE] = ACTIONS(4026), + [anon_sym_LR_DQUOTE] = ACTIONS(4026), + [anon_sym_uR_DQUOTE] = ACTIONS(4026), + [anon_sym_UR_DQUOTE] = ACTIONS(4026), + [anon_sym_u8R_DQUOTE] = ACTIONS(4026), + [anon_sym_co_await] = ACTIONS(4024), + [anon_sym_new] = ACTIONS(4024), + [anon_sym_requires] = ACTIONS(4024), + [anon_sym_CARET_CARET] = ACTIONS(4026), + [anon_sym_LBRACK_COLON] = ACTIONS(4026), + [sym_this] = ACTIONS(4024), }, - [STATE(773)] = { - [sym_identifier] = ACTIONS(3906), - [aux_sym_preproc_include_token1] = ACTIONS(3906), - [aux_sym_preproc_def_token1] = ACTIONS(3906), - [aux_sym_preproc_if_token1] = ACTIONS(3906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3906), - [sym_preproc_directive] = ACTIONS(3906), - [anon_sym_LPAREN2] = ACTIONS(3908), - [anon_sym_BANG] = ACTIONS(3908), - [anon_sym_TILDE] = ACTIONS(3908), - [anon_sym_DASH] = ACTIONS(3906), - [anon_sym_PLUS] = ACTIONS(3906), - [anon_sym_STAR] = ACTIONS(3908), - [anon_sym_AMP_AMP] = ACTIONS(3908), - [anon_sym_AMP] = ACTIONS(3906), - [anon_sym_SEMI] = ACTIONS(3908), - [anon_sym___extension__] = ACTIONS(3906), - [anon_sym_typedef] = ACTIONS(3906), - [anon_sym_virtual] = ACTIONS(3906), - [anon_sym_extern] = ACTIONS(3906), - [anon_sym___attribute__] = ACTIONS(3906), - [anon_sym___attribute] = ACTIONS(3906), - [anon_sym_using] = ACTIONS(3906), - [anon_sym_COLON_COLON] = ACTIONS(3908), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3908), - [anon_sym___declspec] = ACTIONS(3906), - [anon_sym___based] = ACTIONS(3906), - [anon_sym___cdecl] = ACTIONS(3906), - [anon_sym___clrcall] = ACTIONS(3906), - [anon_sym___stdcall] = ACTIONS(3906), - [anon_sym___fastcall] = ACTIONS(3906), - [anon_sym___thiscall] = ACTIONS(3906), - [anon_sym___vectorcall] = ACTIONS(3906), - [anon_sym_LBRACE] = ACTIONS(3908), - [anon_sym_RBRACE] = ACTIONS(3908), - [anon_sym_signed] = ACTIONS(3906), - [anon_sym_unsigned] = ACTIONS(3906), - [anon_sym_long] = ACTIONS(3906), - [anon_sym_short] = ACTIONS(3906), - [anon_sym_LBRACK] = ACTIONS(3906), - [anon_sym_static] = ACTIONS(3906), - [anon_sym_register] = ACTIONS(3906), - [anon_sym_inline] = ACTIONS(3906), - [anon_sym___inline] = ACTIONS(3906), - [anon_sym___inline__] = ACTIONS(3906), - [anon_sym___forceinline] = ACTIONS(3906), - [anon_sym_thread_local] = ACTIONS(3906), - [anon_sym___thread] = ACTIONS(3906), - [anon_sym_const] = ACTIONS(3906), - [anon_sym_constexpr] = ACTIONS(3906), - [anon_sym_volatile] = ACTIONS(3906), - [anon_sym_restrict] = ACTIONS(3906), - [anon_sym___restrict__] = ACTIONS(3906), - [anon_sym__Atomic] = ACTIONS(3906), - [anon_sym__Noreturn] = ACTIONS(3906), - [anon_sym_noreturn] = ACTIONS(3906), - [anon_sym__Nonnull] = ACTIONS(3906), - [anon_sym_mutable] = ACTIONS(3906), - [anon_sym_constinit] = ACTIONS(3906), - [anon_sym_consteval] = ACTIONS(3906), - [anon_sym_alignas] = ACTIONS(3906), - [anon_sym__Alignas] = ACTIONS(3906), - [sym_primitive_type] = ACTIONS(3906), - [anon_sym_enum] = ACTIONS(3906), - [anon_sym_class] = ACTIONS(3906), - [anon_sym_struct] = ACTIONS(3906), - [anon_sym_union] = ACTIONS(3906), - [anon_sym_if] = ACTIONS(3906), - [anon_sym_switch] = ACTIONS(3906), - [anon_sym_case] = ACTIONS(3906), - [anon_sym_default] = ACTIONS(3906), - [anon_sym_while] = ACTIONS(3906), - [anon_sym_do] = ACTIONS(3906), - [anon_sym_for] = ACTIONS(3906), - [anon_sym_return] = ACTIONS(3906), - [anon_sym_break] = ACTIONS(3906), - [anon_sym_continue] = ACTIONS(3906), - [anon_sym_goto] = ACTIONS(3906), - [anon_sym___try] = ACTIONS(3906), - [anon_sym___leave] = ACTIONS(3906), - [anon_sym_not] = ACTIONS(3906), - [anon_sym_compl] = ACTIONS(3906), - [anon_sym_DASH_DASH] = ACTIONS(3908), - [anon_sym_PLUS_PLUS] = ACTIONS(3908), - [anon_sym_sizeof] = ACTIONS(3906), - [anon_sym___alignof__] = ACTIONS(3906), - [anon_sym___alignof] = ACTIONS(3906), - [anon_sym__alignof] = ACTIONS(3906), - [anon_sym_alignof] = ACTIONS(3906), - [anon_sym__Alignof] = ACTIONS(3906), - [anon_sym_offsetof] = ACTIONS(3906), - [anon_sym__Generic] = ACTIONS(3906), - [anon_sym_typename] = ACTIONS(3906), - [anon_sym_asm] = ACTIONS(3906), - [anon_sym___asm__] = ACTIONS(3906), - [anon_sym___asm] = ACTIONS(3906), - [sym_number_literal] = ACTIONS(3908), - [anon_sym_L_SQUOTE] = ACTIONS(3908), - [anon_sym_u_SQUOTE] = ACTIONS(3908), - [anon_sym_U_SQUOTE] = ACTIONS(3908), - [anon_sym_u8_SQUOTE] = ACTIONS(3908), - [anon_sym_SQUOTE] = ACTIONS(3908), - [anon_sym_L_DQUOTE] = ACTIONS(3908), - [anon_sym_u_DQUOTE] = ACTIONS(3908), - [anon_sym_U_DQUOTE] = ACTIONS(3908), - [anon_sym_u8_DQUOTE] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(3908), - [sym_true] = ACTIONS(3906), - [sym_false] = ACTIONS(3906), - [anon_sym_NULL] = ACTIONS(3906), - [anon_sym_nullptr] = ACTIONS(3906), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3906), - [anon_sym_decltype] = ACTIONS(3906), - [anon_sym_explicit] = ACTIONS(3906), - [anon_sym_template] = ACTIONS(3906), - [anon_sym_operator] = ACTIONS(3906), - [anon_sym_try] = ACTIONS(3906), - [anon_sym_delete] = ACTIONS(3906), - [anon_sym_throw] = ACTIONS(3906), - [anon_sym_namespace] = ACTIONS(3906), - [anon_sym_static_assert] = ACTIONS(3906), - [anon_sym_concept] = ACTIONS(3906), - [anon_sym_co_return] = ACTIONS(3906), - [anon_sym_co_yield] = ACTIONS(3906), - [anon_sym_R_DQUOTE] = ACTIONS(3908), - [anon_sym_LR_DQUOTE] = ACTIONS(3908), - [anon_sym_uR_DQUOTE] = ACTIONS(3908), - [anon_sym_UR_DQUOTE] = ACTIONS(3908), - [anon_sym_u8R_DQUOTE] = ACTIONS(3908), - [anon_sym_co_await] = ACTIONS(3906), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(3906), - [anon_sym_CARET_CARET] = ACTIONS(3908), - [anon_sym_LBRACK_COLON] = ACTIONS(3908), - [sym_this] = ACTIONS(3906), + [STATE(659)] = { + [sym_identifier] = ACTIONS(4028), + [aux_sym_preproc_include_token1] = ACTIONS(4028), + [aux_sym_preproc_def_token1] = ACTIONS(4028), + [aux_sym_preproc_if_token1] = ACTIONS(4028), + [aux_sym_preproc_if_token2] = ACTIONS(4028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4028), + [sym_preproc_directive] = ACTIONS(4028), + [anon_sym_LPAREN2] = ACTIONS(4030), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_TILDE] = ACTIONS(4030), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym___extension__] = ACTIONS(4028), + [anon_sym_typedef] = ACTIONS(4028), + [anon_sym_virtual] = ACTIONS(4028), + [anon_sym_extern] = ACTIONS(4028), + [anon_sym___attribute__] = ACTIONS(4028), + [anon_sym___attribute] = ACTIONS(4028), + [anon_sym_using] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4030), + [anon_sym___declspec] = ACTIONS(4028), + [anon_sym___based] = ACTIONS(4028), + [anon_sym___cdecl] = ACTIONS(4028), + [anon_sym___clrcall] = ACTIONS(4028), + [anon_sym___stdcall] = ACTIONS(4028), + [anon_sym___fastcall] = ACTIONS(4028), + [anon_sym___thiscall] = ACTIONS(4028), + [anon_sym___vectorcall] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_signed] = ACTIONS(4028), + [anon_sym_unsigned] = ACTIONS(4028), + [anon_sym_long] = ACTIONS(4028), + [anon_sym_short] = ACTIONS(4028), + [anon_sym_LBRACK] = ACTIONS(4028), + [anon_sym_static] = ACTIONS(4028), + [anon_sym_register] = ACTIONS(4028), + [anon_sym_inline] = ACTIONS(4028), + [anon_sym___inline] = ACTIONS(4028), + [anon_sym___inline__] = ACTIONS(4028), + [anon_sym___forceinline] = ACTIONS(4028), + [anon_sym_thread_local] = ACTIONS(4028), + [anon_sym___thread] = ACTIONS(4028), + [anon_sym_const] = ACTIONS(4028), + [anon_sym_constexpr] = ACTIONS(4028), + [anon_sym_volatile] = ACTIONS(4028), + [anon_sym_restrict] = ACTIONS(4028), + [anon_sym___restrict__] = ACTIONS(4028), + [anon_sym__Atomic] = ACTIONS(4028), + [anon_sym__Noreturn] = ACTIONS(4028), + [anon_sym_noreturn] = ACTIONS(4028), + [anon_sym__Nonnull] = ACTIONS(4028), + [anon_sym_mutable] = ACTIONS(4028), + [anon_sym_constinit] = ACTIONS(4028), + [anon_sym_consteval] = ACTIONS(4028), + [anon_sym_alignas] = ACTIONS(4028), + [anon_sym__Alignas] = ACTIONS(4028), + [sym_primitive_type] = ACTIONS(4028), + [anon_sym_enum] = ACTIONS(4028), + [anon_sym_class] = ACTIONS(4028), + [anon_sym_struct] = ACTIONS(4028), + [anon_sym_union] = ACTIONS(4028), + [anon_sym_if] = ACTIONS(4028), + [anon_sym_switch] = ACTIONS(4028), + [anon_sym_case] = ACTIONS(4028), + [anon_sym_default] = ACTIONS(4028), + [anon_sym_while] = ACTIONS(4028), + [anon_sym_do] = ACTIONS(4028), + [anon_sym_for] = ACTIONS(4028), + [anon_sym_return] = ACTIONS(4028), + [anon_sym_break] = ACTIONS(4028), + [anon_sym_continue] = ACTIONS(4028), + [anon_sym_goto] = ACTIONS(4028), + [anon_sym___try] = ACTIONS(4028), + [anon_sym___leave] = ACTIONS(4028), + [anon_sym_not] = ACTIONS(4028), + [anon_sym_compl] = ACTIONS(4028), + [anon_sym_DASH_DASH] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4030), + [anon_sym_sizeof] = ACTIONS(4028), + [anon_sym___alignof__] = ACTIONS(4028), + [anon_sym___alignof] = ACTIONS(4028), + [anon_sym__alignof] = ACTIONS(4028), + [anon_sym_alignof] = ACTIONS(4028), + [anon_sym__Alignof] = ACTIONS(4028), + [anon_sym_offsetof] = ACTIONS(4028), + [anon_sym__Generic] = ACTIONS(4028), + [anon_sym_typename] = ACTIONS(4028), + [anon_sym_asm] = ACTIONS(4028), + [anon_sym___asm__] = ACTIONS(4028), + [anon_sym___asm] = ACTIONS(4028), + [sym_number_literal] = ACTIONS(4030), + [anon_sym_L_SQUOTE] = ACTIONS(4030), + [anon_sym_u_SQUOTE] = ACTIONS(4030), + [anon_sym_U_SQUOTE] = ACTIONS(4030), + [anon_sym_u8_SQUOTE] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4030), + [anon_sym_L_DQUOTE] = ACTIONS(4030), + [anon_sym_u_DQUOTE] = ACTIONS(4030), + [anon_sym_U_DQUOTE] = ACTIONS(4030), + [anon_sym_u8_DQUOTE] = ACTIONS(4030), + [anon_sym_DQUOTE] = ACTIONS(4030), + [sym_true] = ACTIONS(4028), + [sym_false] = ACTIONS(4028), + [anon_sym_NULL] = ACTIONS(4028), + [anon_sym_nullptr] = ACTIONS(4028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4028), + [anon_sym_decltype] = ACTIONS(4028), + [anon_sym_explicit] = ACTIONS(4028), + [anon_sym_export] = ACTIONS(4028), + [anon_sym_module] = ACTIONS(4028), + [anon_sym_import] = ACTIONS(4028), + [anon_sym_template] = ACTIONS(4028), + [anon_sym_operator] = ACTIONS(4028), + [anon_sym_try] = ACTIONS(4028), + [anon_sym_delete] = ACTIONS(4028), + [anon_sym_throw] = ACTIONS(4028), + [anon_sym_namespace] = ACTIONS(4028), + [anon_sym_static_assert] = ACTIONS(4028), + [anon_sym_concept] = ACTIONS(4028), + [anon_sym_co_return] = ACTIONS(4028), + [anon_sym_co_yield] = ACTIONS(4028), + [anon_sym_R_DQUOTE] = ACTIONS(4030), + [anon_sym_LR_DQUOTE] = ACTIONS(4030), + [anon_sym_uR_DQUOTE] = ACTIONS(4030), + [anon_sym_UR_DQUOTE] = ACTIONS(4030), + [anon_sym_u8R_DQUOTE] = ACTIONS(4030), + [anon_sym_co_await] = ACTIONS(4028), + [anon_sym_new] = ACTIONS(4028), + [anon_sym_requires] = ACTIONS(4028), + [anon_sym_CARET_CARET] = ACTIONS(4030), + [anon_sym_LBRACK_COLON] = ACTIONS(4030), + [sym_this] = ACTIONS(4028), }, - [STATE(774)] = { - [sym_identifier] = ACTIONS(4172), - [aux_sym_preproc_include_token1] = ACTIONS(4172), - [aux_sym_preproc_def_token1] = ACTIONS(4172), - [aux_sym_preproc_if_token1] = ACTIONS(4172), - [aux_sym_preproc_if_token2] = ACTIONS(4172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4172), - [sym_preproc_directive] = ACTIONS(4172), - [anon_sym_LPAREN2] = ACTIONS(4174), - [anon_sym_BANG] = ACTIONS(4174), - [anon_sym_TILDE] = ACTIONS(4174), - [anon_sym_DASH] = ACTIONS(4172), - [anon_sym_PLUS] = ACTIONS(4172), - [anon_sym_STAR] = ACTIONS(4174), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_AMP] = ACTIONS(4172), - [anon_sym_SEMI] = ACTIONS(4174), - [anon_sym___extension__] = ACTIONS(4172), - [anon_sym_typedef] = ACTIONS(4172), - [anon_sym_virtual] = ACTIONS(4172), - [anon_sym_extern] = ACTIONS(4172), - [anon_sym___attribute__] = ACTIONS(4172), - [anon_sym___attribute] = ACTIONS(4172), - [anon_sym_using] = ACTIONS(4172), - [anon_sym_COLON_COLON] = ACTIONS(4174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4174), - [anon_sym___declspec] = ACTIONS(4172), - [anon_sym___based] = ACTIONS(4172), - [anon_sym___cdecl] = ACTIONS(4172), - [anon_sym___clrcall] = ACTIONS(4172), - [anon_sym___stdcall] = ACTIONS(4172), - [anon_sym___fastcall] = ACTIONS(4172), - [anon_sym___thiscall] = ACTIONS(4172), - [anon_sym___vectorcall] = ACTIONS(4172), - [anon_sym_LBRACE] = ACTIONS(4174), - [anon_sym_signed] = ACTIONS(4172), - [anon_sym_unsigned] = ACTIONS(4172), - [anon_sym_long] = ACTIONS(4172), - [anon_sym_short] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4172), - [anon_sym_static] = ACTIONS(4172), - [anon_sym_register] = ACTIONS(4172), - [anon_sym_inline] = ACTIONS(4172), - [anon_sym___inline] = ACTIONS(4172), - [anon_sym___inline__] = ACTIONS(4172), - [anon_sym___forceinline] = ACTIONS(4172), - [anon_sym_thread_local] = ACTIONS(4172), - [anon_sym___thread] = ACTIONS(4172), - [anon_sym_const] = ACTIONS(4172), - [anon_sym_constexpr] = ACTIONS(4172), - [anon_sym_volatile] = ACTIONS(4172), - [anon_sym_restrict] = ACTIONS(4172), - [anon_sym___restrict__] = ACTIONS(4172), - [anon_sym__Atomic] = ACTIONS(4172), - [anon_sym__Noreturn] = ACTIONS(4172), - [anon_sym_noreturn] = ACTIONS(4172), - [anon_sym__Nonnull] = ACTIONS(4172), - [anon_sym_mutable] = ACTIONS(4172), - [anon_sym_constinit] = ACTIONS(4172), - [anon_sym_consteval] = ACTIONS(4172), - [anon_sym_alignas] = ACTIONS(4172), - [anon_sym__Alignas] = ACTIONS(4172), - [sym_primitive_type] = ACTIONS(4172), - [anon_sym_enum] = ACTIONS(4172), - [anon_sym_class] = ACTIONS(4172), - [anon_sym_struct] = ACTIONS(4172), - [anon_sym_union] = ACTIONS(4172), - [anon_sym_if] = ACTIONS(4172), - [anon_sym_switch] = ACTIONS(4172), - [anon_sym_case] = ACTIONS(4172), - [anon_sym_default] = ACTIONS(4172), - [anon_sym_while] = ACTIONS(4172), - [anon_sym_do] = ACTIONS(4172), - [anon_sym_for] = ACTIONS(4172), - [anon_sym_return] = ACTIONS(4172), - [anon_sym_break] = ACTIONS(4172), - [anon_sym_continue] = ACTIONS(4172), - [anon_sym_goto] = ACTIONS(4172), - [anon_sym___try] = ACTIONS(4172), - [anon_sym___leave] = ACTIONS(4172), - [anon_sym_not] = ACTIONS(4172), - [anon_sym_compl] = ACTIONS(4172), - [anon_sym_DASH_DASH] = ACTIONS(4174), - [anon_sym_PLUS_PLUS] = ACTIONS(4174), - [anon_sym_sizeof] = ACTIONS(4172), - [anon_sym___alignof__] = ACTIONS(4172), - [anon_sym___alignof] = ACTIONS(4172), - [anon_sym__alignof] = ACTIONS(4172), - [anon_sym_alignof] = ACTIONS(4172), - [anon_sym__Alignof] = ACTIONS(4172), - [anon_sym_offsetof] = ACTIONS(4172), - [anon_sym__Generic] = ACTIONS(4172), - [anon_sym_typename] = ACTIONS(4172), - [anon_sym_asm] = ACTIONS(4172), - [anon_sym___asm__] = ACTIONS(4172), - [anon_sym___asm] = ACTIONS(4172), - [sym_number_literal] = ACTIONS(4174), - [anon_sym_L_SQUOTE] = ACTIONS(4174), - [anon_sym_u_SQUOTE] = ACTIONS(4174), - [anon_sym_U_SQUOTE] = ACTIONS(4174), - [anon_sym_u8_SQUOTE] = ACTIONS(4174), - [anon_sym_SQUOTE] = ACTIONS(4174), - [anon_sym_L_DQUOTE] = ACTIONS(4174), - [anon_sym_u_DQUOTE] = ACTIONS(4174), - [anon_sym_U_DQUOTE] = ACTIONS(4174), - [anon_sym_u8_DQUOTE] = ACTIONS(4174), - [anon_sym_DQUOTE] = ACTIONS(4174), - [sym_true] = ACTIONS(4172), - [sym_false] = ACTIONS(4172), - [anon_sym_NULL] = ACTIONS(4172), - [anon_sym_nullptr] = ACTIONS(4172), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4172), - [anon_sym_decltype] = ACTIONS(4172), - [anon_sym_explicit] = ACTIONS(4172), - [anon_sym_template] = ACTIONS(4172), - [anon_sym_operator] = ACTIONS(4172), - [anon_sym_try] = ACTIONS(4172), - [anon_sym_delete] = ACTIONS(4172), - [anon_sym_throw] = ACTIONS(4172), - [anon_sym_namespace] = ACTIONS(4172), - [anon_sym_static_assert] = ACTIONS(4172), - [anon_sym_concept] = ACTIONS(4172), - [anon_sym_co_return] = ACTIONS(4172), - [anon_sym_co_yield] = ACTIONS(4172), - [anon_sym_R_DQUOTE] = ACTIONS(4174), - [anon_sym_LR_DQUOTE] = ACTIONS(4174), - [anon_sym_uR_DQUOTE] = ACTIONS(4174), - [anon_sym_UR_DQUOTE] = ACTIONS(4174), - [anon_sym_u8R_DQUOTE] = ACTIONS(4174), - [anon_sym_co_await] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_requires] = ACTIONS(4172), - [anon_sym_CARET_CARET] = ACTIONS(4174), - [anon_sym_LBRACK_COLON] = ACTIONS(4174), - [sym_this] = ACTIONS(4172), + [STATE(660)] = { + [sym_identifier] = ACTIONS(4032), + [aux_sym_preproc_include_token1] = ACTIONS(4032), + [aux_sym_preproc_def_token1] = ACTIONS(4032), + [aux_sym_preproc_if_token1] = ACTIONS(4032), + [aux_sym_preproc_if_token2] = ACTIONS(4032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4032), + [sym_preproc_directive] = ACTIONS(4032), + [anon_sym_LPAREN2] = ACTIONS(4034), + [anon_sym_BANG] = ACTIONS(4034), + [anon_sym_TILDE] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4034), + [anon_sym_AMP_AMP] = ACTIONS(4034), + [anon_sym_AMP] = ACTIONS(4032), + [anon_sym_SEMI] = ACTIONS(4034), + [anon_sym___extension__] = ACTIONS(4032), + [anon_sym_typedef] = ACTIONS(4032), + [anon_sym_virtual] = ACTIONS(4032), + [anon_sym_extern] = ACTIONS(4032), + [anon_sym___attribute__] = ACTIONS(4032), + [anon_sym___attribute] = ACTIONS(4032), + [anon_sym_using] = ACTIONS(4032), + [anon_sym_COLON_COLON] = ACTIONS(4034), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4034), + [anon_sym___declspec] = ACTIONS(4032), + [anon_sym___based] = ACTIONS(4032), + [anon_sym___cdecl] = ACTIONS(4032), + [anon_sym___clrcall] = ACTIONS(4032), + [anon_sym___stdcall] = ACTIONS(4032), + [anon_sym___fastcall] = ACTIONS(4032), + [anon_sym___thiscall] = ACTIONS(4032), + [anon_sym___vectorcall] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4034), + [anon_sym_signed] = ACTIONS(4032), + [anon_sym_unsigned] = ACTIONS(4032), + [anon_sym_long] = ACTIONS(4032), + [anon_sym_short] = ACTIONS(4032), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_static] = ACTIONS(4032), + [anon_sym_register] = ACTIONS(4032), + [anon_sym_inline] = ACTIONS(4032), + [anon_sym___inline] = ACTIONS(4032), + [anon_sym___inline__] = ACTIONS(4032), + [anon_sym___forceinline] = ACTIONS(4032), + [anon_sym_thread_local] = ACTIONS(4032), + [anon_sym___thread] = ACTIONS(4032), + [anon_sym_const] = ACTIONS(4032), + [anon_sym_constexpr] = ACTIONS(4032), + [anon_sym_volatile] = ACTIONS(4032), + [anon_sym_restrict] = ACTIONS(4032), + [anon_sym___restrict__] = ACTIONS(4032), + [anon_sym__Atomic] = ACTIONS(4032), + [anon_sym__Noreturn] = ACTIONS(4032), + [anon_sym_noreturn] = ACTIONS(4032), + [anon_sym__Nonnull] = ACTIONS(4032), + [anon_sym_mutable] = ACTIONS(4032), + [anon_sym_constinit] = ACTIONS(4032), + [anon_sym_consteval] = ACTIONS(4032), + [anon_sym_alignas] = ACTIONS(4032), + [anon_sym__Alignas] = ACTIONS(4032), + [sym_primitive_type] = ACTIONS(4032), + [anon_sym_enum] = ACTIONS(4032), + [anon_sym_class] = ACTIONS(4032), + [anon_sym_struct] = ACTIONS(4032), + [anon_sym_union] = ACTIONS(4032), + [anon_sym_if] = ACTIONS(4032), + [anon_sym_switch] = ACTIONS(4032), + [anon_sym_case] = ACTIONS(4032), + [anon_sym_default] = ACTIONS(4032), + [anon_sym_while] = ACTIONS(4032), + [anon_sym_do] = ACTIONS(4032), + [anon_sym_for] = ACTIONS(4032), + [anon_sym_return] = ACTIONS(4032), + [anon_sym_break] = ACTIONS(4032), + [anon_sym_continue] = ACTIONS(4032), + [anon_sym_goto] = ACTIONS(4032), + [anon_sym___try] = ACTIONS(4032), + [anon_sym___leave] = ACTIONS(4032), + [anon_sym_not] = ACTIONS(4032), + [anon_sym_compl] = ACTIONS(4032), + [anon_sym_DASH_DASH] = ACTIONS(4034), + [anon_sym_PLUS_PLUS] = ACTIONS(4034), + [anon_sym_sizeof] = ACTIONS(4032), + [anon_sym___alignof__] = ACTIONS(4032), + [anon_sym___alignof] = ACTIONS(4032), + [anon_sym__alignof] = ACTIONS(4032), + [anon_sym_alignof] = ACTIONS(4032), + [anon_sym__Alignof] = ACTIONS(4032), + [anon_sym_offsetof] = ACTIONS(4032), + [anon_sym__Generic] = ACTIONS(4032), + [anon_sym_typename] = ACTIONS(4032), + [anon_sym_asm] = ACTIONS(4032), + [anon_sym___asm__] = ACTIONS(4032), + [anon_sym___asm] = ACTIONS(4032), + [sym_number_literal] = ACTIONS(4034), + [anon_sym_L_SQUOTE] = ACTIONS(4034), + [anon_sym_u_SQUOTE] = ACTIONS(4034), + [anon_sym_U_SQUOTE] = ACTIONS(4034), + [anon_sym_u8_SQUOTE] = ACTIONS(4034), + [anon_sym_SQUOTE] = ACTIONS(4034), + [anon_sym_L_DQUOTE] = ACTIONS(4034), + [anon_sym_u_DQUOTE] = ACTIONS(4034), + [anon_sym_U_DQUOTE] = ACTIONS(4034), + [anon_sym_u8_DQUOTE] = ACTIONS(4034), + [anon_sym_DQUOTE] = ACTIONS(4034), + [sym_true] = ACTIONS(4032), + [sym_false] = ACTIONS(4032), + [anon_sym_NULL] = ACTIONS(4032), + [anon_sym_nullptr] = ACTIONS(4032), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4032), + [anon_sym_decltype] = ACTIONS(4032), + [anon_sym_explicit] = ACTIONS(4032), + [anon_sym_export] = ACTIONS(4032), + [anon_sym_module] = ACTIONS(4032), + [anon_sym_import] = ACTIONS(4032), + [anon_sym_template] = ACTIONS(4032), + [anon_sym_operator] = ACTIONS(4032), + [anon_sym_try] = ACTIONS(4032), + [anon_sym_delete] = ACTIONS(4032), + [anon_sym_throw] = ACTIONS(4032), + [anon_sym_namespace] = ACTIONS(4032), + [anon_sym_static_assert] = ACTIONS(4032), + [anon_sym_concept] = ACTIONS(4032), + [anon_sym_co_return] = ACTIONS(4032), + [anon_sym_co_yield] = ACTIONS(4032), + [anon_sym_R_DQUOTE] = ACTIONS(4034), + [anon_sym_LR_DQUOTE] = ACTIONS(4034), + [anon_sym_uR_DQUOTE] = ACTIONS(4034), + [anon_sym_UR_DQUOTE] = ACTIONS(4034), + [anon_sym_u8R_DQUOTE] = ACTIONS(4034), + [anon_sym_co_await] = ACTIONS(4032), + [anon_sym_new] = ACTIONS(4032), + [anon_sym_requires] = ACTIONS(4032), + [anon_sym_CARET_CARET] = ACTIONS(4034), + [anon_sym_LBRACK_COLON] = ACTIONS(4034), + [sym_this] = ACTIONS(4032), }, - [STATE(775)] = { - [sym_identifier] = ACTIONS(3982), - [aux_sym_preproc_include_token1] = ACTIONS(3982), - [aux_sym_preproc_def_token1] = ACTIONS(3982), - [aux_sym_preproc_if_token1] = ACTIONS(3982), - [aux_sym_preproc_if_token2] = ACTIONS(3982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3982), - [sym_preproc_directive] = ACTIONS(3982), - [anon_sym_LPAREN2] = ACTIONS(3984), - [anon_sym_BANG] = ACTIONS(3984), - [anon_sym_TILDE] = ACTIONS(3984), - [anon_sym_DASH] = ACTIONS(3982), - [anon_sym_PLUS] = ACTIONS(3982), - [anon_sym_STAR] = ACTIONS(3984), - [anon_sym_AMP_AMP] = ACTIONS(3984), - [anon_sym_AMP] = ACTIONS(3982), - [anon_sym_SEMI] = ACTIONS(3984), - [anon_sym___extension__] = ACTIONS(3982), - [anon_sym_typedef] = ACTIONS(3982), - [anon_sym_virtual] = ACTIONS(3982), - [anon_sym_extern] = ACTIONS(3982), - [anon_sym___attribute__] = ACTIONS(3982), - [anon_sym___attribute] = ACTIONS(3982), - [anon_sym_using] = ACTIONS(3982), - [anon_sym_COLON_COLON] = ACTIONS(3984), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3984), - [anon_sym___declspec] = ACTIONS(3982), - [anon_sym___based] = ACTIONS(3982), - [anon_sym___cdecl] = ACTIONS(3982), - [anon_sym___clrcall] = ACTIONS(3982), - [anon_sym___stdcall] = ACTIONS(3982), - [anon_sym___fastcall] = ACTIONS(3982), - [anon_sym___thiscall] = ACTIONS(3982), - [anon_sym___vectorcall] = ACTIONS(3982), - [anon_sym_LBRACE] = ACTIONS(3984), - [anon_sym_signed] = ACTIONS(3982), - [anon_sym_unsigned] = ACTIONS(3982), - [anon_sym_long] = ACTIONS(3982), - [anon_sym_short] = ACTIONS(3982), - [anon_sym_LBRACK] = ACTIONS(3982), - [anon_sym_static] = ACTIONS(3982), - [anon_sym_register] = ACTIONS(3982), - [anon_sym_inline] = ACTIONS(3982), - [anon_sym___inline] = ACTIONS(3982), - [anon_sym___inline__] = ACTIONS(3982), - [anon_sym___forceinline] = ACTIONS(3982), - [anon_sym_thread_local] = ACTIONS(3982), - [anon_sym___thread] = ACTIONS(3982), - [anon_sym_const] = ACTIONS(3982), - [anon_sym_constexpr] = ACTIONS(3982), - [anon_sym_volatile] = ACTIONS(3982), - [anon_sym_restrict] = ACTIONS(3982), - [anon_sym___restrict__] = ACTIONS(3982), - [anon_sym__Atomic] = ACTIONS(3982), - [anon_sym__Noreturn] = ACTIONS(3982), - [anon_sym_noreturn] = ACTIONS(3982), - [anon_sym__Nonnull] = ACTIONS(3982), - [anon_sym_mutable] = ACTIONS(3982), - [anon_sym_constinit] = ACTIONS(3982), - [anon_sym_consteval] = ACTIONS(3982), - [anon_sym_alignas] = ACTIONS(3982), - [anon_sym__Alignas] = ACTIONS(3982), - [sym_primitive_type] = ACTIONS(3982), - [anon_sym_enum] = ACTIONS(3982), - [anon_sym_class] = ACTIONS(3982), - [anon_sym_struct] = ACTIONS(3982), - [anon_sym_union] = ACTIONS(3982), - [anon_sym_if] = ACTIONS(3982), - [anon_sym_switch] = ACTIONS(3982), - [anon_sym_case] = ACTIONS(3982), - [anon_sym_default] = ACTIONS(3982), - [anon_sym_while] = ACTIONS(3982), - [anon_sym_do] = ACTIONS(3982), - [anon_sym_for] = ACTIONS(3982), - [anon_sym_return] = ACTIONS(3982), - [anon_sym_break] = ACTIONS(3982), - [anon_sym_continue] = ACTIONS(3982), - [anon_sym_goto] = ACTIONS(3982), - [anon_sym___try] = ACTIONS(3982), - [anon_sym___leave] = ACTIONS(3982), - [anon_sym_not] = ACTIONS(3982), - [anon_sym_compl] = ACTIONS(3982), - [anon_sym_DASH_DASH] = ACTIONS(3984), - [anon_sym_PLUS_PLUS] = ACTIONS(3984), - [anon_sym_sizeof] = ACTIONS(3982), - [anon_sym___alignof__] = ACTIONS(3982), - [anon_sym___alignof] = ACTIONS(3982), - [anon_sym__alignof] = ACTIONS(3982), - [anon_sym_alignof] = ACTIONS(3982), - [anon_sym__Alignof] = ACTIONS(3982), - [anon_sym_offsetof] = ACTIONS(3982), - [anon_sym__Generic] = ACTIONS(3982), - [anon_sym_typename] = ACTIONS(3982), - [anon_sym_asm] = ACTIONS(3982), - [anon_sym___asm__] = ACTIONS(3982), - [anon_sym___asm] = ACTIONS(3982), - [sym_number_literal] = ACTIONS(3984), - [anon_sym_L_SQUOTE] = ACTIONS(3984), - [anon_sym_u_SQUOTE] = ACTIONS(3984), - [anon_sym_U_SQUOTE] = ACTIONS(3984), - [anon_sym_u8_SQUOTE] = ACTIONS(3984), - [anon_sym_SQUOTE] = ACTIONS(3984), - [anon_sym_L_DQUOTE] = ACTIONS(3984), - [anon_sym_u_DQUOTE] = ACTIONS(3984), - [anon_sym_U_DQUOTE] = ACTIONS(3984), - [anon_sym_u8_DQUOTE] = ACTIONS(3984), - [anon_sym_DQUOTE] = ACTIONS(3984), - [sym_true] = ACTIONS(3982), - [sym_false] = ACTIONS(3982), - [anon_sym_NULL] = ACTIONS(3982), - [anon_sym_nullptr] = ACTIONS(3982), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3982), - [anon_sym_decltype] = ACTIONS(3982), - [anon_sym_explicit] = ACTIONS(3982), - [anon_sym_template] = ACTIONS(3982), - [anon_sym_operator] = ACTIONS(3982), - [anon_sym_try] = ACTIONS(3982), - [anon_sym_delete] = ACTIONS(3982), - [anon_sym_throw] = ACTIONS(3982), - [anon_sym_namespace] = ACTIONS(3982), - [anon_sym_static_assert] = ACTIONS(3982), - [anon_sym_concept] = ACTIONS(3982), - [anon_sym_co_return] = ACTIONS(3982), - [anon_sym_co_yield] = ACTIONS(3982), - [anon_sym_R_DQUOTE] = ACTIONS(3984), - [anon_sym_LR_DQUOTE] = ACTIONS(3984), - [anon_sym_uR_DQUOTE] = ACTIONS(3984), - [anon_sym_UR_DQUOTE] = ACTIONS(3984), - [anon_sym_u8R_DQUOTE] = ACTIONS(3984), - [anon_sym_co_await] = ACTIONS(3982), - [anon_sym_new] = ACTIONS(3982), - [anon_sym_requires] = ACTIONS(3982), - [anon_sym_CARET_CARET] = ACTIONS(3984), - [anon_sym_LBRACK_COLON] = ACTIONS(3984), - [sym_this] = ACTIONS(3982), + [STATE(661)] = { + [sym_identifier] = ACTIONS(4036), + [aux_sym_preproc_include_token1] = ACTIONS(4036), + [aux_sym_preproc_def_token1] = ACTIONS(4036), + [aux_sym_preproc_if_token1] = ACTIONS(4036), + [aux_sym_preproc_if_token2] = ACTIONS(4036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4036), + [sym_preproc_directive] = ACTIONS(4036), + [anon_sym_LPAREN2] = ACTIONS(4038), + [anon_sym_BANG] = ACTIONS(4038), + [anon_sym_TILDE] = ACTIONS(4038), + [anon_sym_DASH] = ACTIONS(4036), + [anon_sym_PLUS] = ACTIONS(4036), + [anon_sym_STAR] = ACTIONS(4038), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_AMP] = ACTIONS(4036), + [anon_sym_SEMI] = ACTIONS(4038), + [anon_sym___extension__] = ACTIONS(4036), + [anon_sym_typedef] = ACTIONS(4036), + [anon_sym_virtual] = ACTIONS(4036), + [anon_sym_extern] = ACTIONS(4036), + [anon_sym___attribute__] = ACTIONS(4036), + [anon_sym___attribute] = ACTIONS(4036), + [anon_sym_using] = ACTIONS(4036), + [anon_sym_COLON_COLON] = ACTIONS(4038), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4038), + [anon_sym___declspec] = ACTIONS(4036), + [anon_sym___based] = ACTIONS(4036), + [anon_sym___cdecl] = ACTIONS(4036), + [anon_sym___clrcall] = ACTIONS(4036), + [anon_sym___stdcall] = ACTIONS(4036), + [anon_sym___fastcall] = ACTIONS(4036), + [anon_sym___thiscall] = ACTIONS(4036), + [anon_sym___vectorcall] = ACTIONS(4036), + [anon_sym_LBRACE] = ACTIONS(4038), + [anon_sym_signed] = ACTIONS(4036), + [anon_sym_unsigned] = ACTIONS(4036), + [anon_sym_long] = ACTIONS(4036), + [anon_sym_short] = ACTIONS(4036), + [anon_sym_LBRACK] = ACTIONS(4036), + [anon_sym_static] = ACTIONS(4036), + [anon_sym_register] = ACTIONS(4036), + [anon_sym_inline] = ACTIONS(4036), + [anon_sym___inline] = ACTIONS(4036), + [anon_sym___inline__] = ACTIONS(4036), + [anon_sym___forceinline] = ACTIONS(4036), + [anon_sym_thread_local] = ACTIONS(4036), + [anon_sym___thread] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4036), + [anon_sym_constexpr] = ACTIONS(4036), + [anon_sym_volatile] = ACTIONS(4036), + [anon_sym_restrict] = ACTIONS(4036), + [anon_sym___restrict__] = ACTIONS(4036), + [anon_sym__Atomic] = ACTIONS(4036), + [anon_sym__Noreturn] = ACTIONS(4036), + [anon_sym_noreturn] = ACTIONS(4036), + [anon_sym__Nonnull] = ACTIONS(4036), + [anon_sym_mutable] = ACTIONS(4036), + [anon_sym_constinit] = ACTIONS(4036), + [anon_sym_consteval] = ACTIONS(4036), + [anon_sym_alignas] = ACTIONS(4036), + [anon_sym__Alignas] = ACTIONS(4036), + [sym_primitive_type] = ACTIONS(4036), + [anon_sym_enum] = ACTIONS(4036), + [anon_sym_class] = ACTIONS(4036), + [anon_sym_struct] = ACTIONS(4036), + [anon_sym_union] = ACTIONS(4036), + [anon_sym_if] = ACTIONS(4036), + [anon_sym_switch] = ACTIONS(4036), + [anon_sym_case] = ACTIONS(4036), + [anon_sym_default] = ACTIONS(4036), + [anon_sym_while] = ACTIONS(4036), + [anon_sym_do] = ACTIONS(4036), + [anon_sym_for] = ACTIONS(4036), + [anon_sym_return] = ACTIONS(4036), + [anon_sym_break] = ACTIONS(4036), + [anon_sym_continue] = ACTIONS(4036), + [anon_sym_goto] = ACTIONS(4036), + [anon_sym___try] = ACTIONS(4036), + [anon_sym___leave] = ACTIONS(4036), + [anon_sym_not] = ACTIONS(4036), + [anon_sym_compl] = ACTIONS(4036), + [anon_sym_DASH_DASH] = ACTIONS(4038), + [anon_sym_PLUS_PLUS] = ACTIONS(4038), + [anon_sym_sizeof] = ACTIONS(4036), + [anon_sym___alignof__] = ACTIONS(4036), + [anon_sym___alignof] = ACTIONS(4036), + [anon_sym__alignof] = ACTIONS(4036), + [anon_sym_alignof] = ACTIONS(4036), + [anon_sym__Alignof] = ACTIONS(4036), + [anon_sym_offsetof] = ACTIONS(4036), + [anon_sym__Generic] = ACTIONS(4036), + [anon_sym_typename] = ACTIONS(4036), + [anon_sym_asm] = ACTIONS(4036), + [anon_sym___asm__] = ACTIONS(4036), + [anon_sym___asm] = ACTIONS(4036), + [sym_number_literal] = ACTIONS(4038), + [anon_sym_L_SQUOTE] = ACTIONS(4038), + [anon_sym_u_SQUOTE] = ACTIONS(4038), + [anon_sym_U_SQUOTE] = ACTIONS(4038), + [anon_sym_u8_SQUOTE] = ACTIONS(4038), + [anon_sym_SQUOTE] = ACTIONS(4038), + [anon_sym_L_DQUOTE] = ACTIONS(4038), + [anon_sym_u_DQUOTE] = ACTIONS(4038), + [anon_sym_U_DQUOTE] = ACTIONS(4038), + [anon_sym_u8_DQUOTE] = ACTIONS(4038), + [anon_sym_DQUOTE] = ACTIONS(4038), + [sym_true] = ACTIONS(4036), + [sym_false] = ACTIONS(4036), + [anon_sym_NULL] = ACTIONS(4036), + [anon_sym_nullptr] = ACTIONS(4036), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4036), + [anon_sym_decltype] = ACTIONS(4036), + [anon_sym_explicit] = ACTIONS(4036), + [anon_sym_export] = ACTIONS(4036), + [anon_sym_module] = ACTIONS(4036), + [anon_sym_import] = ACTIONS(4036), + [anon_sym_template] = ACTIONS(4036), + [anon_sym_operator] = ACTIONS(4036), + [anon_sym_try] = ACTIONS(4036), + [anon_sym_delete] = ACTIONS(4036), + [anon_sym_throw] = ACTIONS(4036), + [anon_sym_namespace] = ACTIONS(4036), + [anon_sym_static_assert] = ACTIONS(4036), + [anon_sym_concept] = ACTIONS(4036), + [anon_sym_co_return] = ACTIONS(4036), + [anon_sym_co_yield] = ACTIONS(4036), + [anon_sym_R_DQUOTE] = ACTIONS(4038), + [anon_sym_LR_DQUOTE] = ACTIONS(4038), + [anon_sym_uR_DQUOTE] = ACTIONS(4038), + [anon_sym_UR_DQUOTE] = ACTIONS(4038), + [anon_sym_u8R_DQUOTE] = ACTIONS(4038), + [anon_sym_co_await] = ACTIONS(4036), + [anon_sym_new] = ACTIONS(4036), + [anon_sym_requires] = ACTIONS(4036), + [anon_sym_CARET_CARET] = ACTIONS(4038), + [anon_sym_LBRACK_COLON] = ACTIONS(4038), + [sym_this] = ACTIONS(4036), }, - [STATE(776)] = { - [sym_identifier] = ACTIONS(3910), - [aux_sym_preproc_include_token1] = ACTIONS(3910), - [aux_sym_preproc_def_token1] = ACTIONS(3910), - [aux_sym_preproc_if_token1] = ACTIONS(3910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3910), - [sym_preproc_directive] = ACTIONS(3910), - [anon_sym_LPAREN2] = ACTIONS(3912), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(3912), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_AMP] = ACTIONS(3910), - [anon_sym_SEMI] = ACTIONS(3912), - [anon_sym___extension__] = ACTIONS(3910), - [anon_sym_typedef] = ACTIONS(3910), - [anon_sym_virtual] = ACTIONS(3910), - [anon_sym_extern] = ACTIONS(3910), - [anon_sym___attribute__] = ACTIONS(3910), - [anon_sym___attribute] = ACTIONS(3910), - [anon_sym_using] = ACTIONS(3910), - [anon_sym_COLON_COLON] = ACTIONS(3912), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3912), - [anon_sym___declspec] = ACTIONS(3910), - [anon_sym___based] = ACTIONS(3910), - [anon_sym___cdecl] = ACTIONS(3910), - [anon_sym___clrcall] = ACTIONS(3910), - [anon_sym___stdcall] = ACTIONS(3910), - [anon_sym___fastcall] = ACTIONS(3910), - [anon_sym___thiscall] = ACTIONS(3910), - [anon_sym___vectorcall] = ACTIONS(3910), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_RBRACE] = ACTIONS(3912), - [anon_sym_signed] = ACTIONS(3910), - [anon_sym_unsigned] = ACTIONS(3910), - [anon_sym_long] = ACTIONS(3910), - [anon_sym_short] = ACTIONS(3910), - [anon_sym_LBRACK] = ACTIONS(3910), - [anon_sym_static] = ACTIONS(3910), - [anon_sym_register] = ACTIONS(3910), - [anon_sym_inline] = ACTIONS(3910), - [anon_sym___inline] = ACTIONS(3910), - [anon_sym___inline__] = ACTIONS(3910), - [anon_sym___forceinline] = ACTIONS(3910), - [anon_sym_thread_local] = ACTIONS(3910), - [anon_sym___thread] = ACTIONS(3910), - [anon_sym_const] = ACTIONS(3910), - [anon_sym_constexpr] = ACTIONS(3910), - [anon_sym_volatile] = ACTIONS(3910), - [anon_sym_restrict] = ACTIONS(3910), - [anon_sym___restrict__] = ACTIONS(3910), - [anon_sym__Atomic] = ACTIONS(3910), - [anon_sym__Noreturn] = ACTIONS(3910), - [anon_sym_noreturn] = ACTIONS(3910), - [anon_sym__Nonnull] = ACTIONS(3910), - [anon_sym_mutable] = ACTIONS(3910), - [anon_sym_constinit] = ACTIONS(3910), - [anon_sym_consteval] = ACTIONS(3910), - [anon_sym_alignas] = ACTIONS(3910), - [anon_sym__Alignas] = ACTIONS(3910), - [sym_primitive_type] = ACTIONS(3910), - [anon_sym_enum] = ACTIONS(3910), - [anon_sym_class] = ACTIONS(3910), - [anon_sym_struct] = ACTIONS(3910), - [anon_sym_union] = ACTIONS(3910), - [anon_sym_if] = ACTIONS(3910), - [anon_sym_switch] = ACTIONS(3910), - [anon_sym_case] = ACTIONS(3910), - [anon_sym_default] = ACTIONS(3910), - [anon_sym_while] = ACTIONS(3910), - [anon_sym_do] = ACTIONS(3910), - [anon_sym_for] = ACTIONS(3910), - [anon_sym_return] = ACTIONS(3910), - [anon_sym_break] = ACTIONS(3910), - [anon_sym_continue] = ACTIONS(3910), - [anon_sym_goto] = ACTIONS(3910), - [anon_sym___try] = ACTIONS(3910), - [anon_sym___leave] = ACTIONS(3910), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(3912), - [anon_sym_PLUS_PLUS] = ACTIONS(3912), - [anon_sym_sizeof] = ACTIONS(3910), - [anon_sym___alignof__] = ACTIONS(3910), - [anon_sym___alignof] = ACTIONS(3910), - [anon_sym__alignof] = ACTIONS(3910), - [anon_sym_alignof] = ACTIONS(3910), - [anon_sym__Alignof] = ACTIONS(3910), - [anon_sym_offsetof] = ACTIONS(3910), - [anon_sym__Generic] = ACTIONS(3910), - [anon_sym_typename] = ACTIONS(3910), - [anon_sym_asm] = ACTIONS(3910), - [anon_sym___asm__] = ACTIONS(3910), - [anon_sym___asm] = ACTIONS(3910), - [sym_number_literal] = ACTIONS(3912), - [anon_sym_L_SQUOTE] = ACTIONS(3912), - [anon_sym_u_SQUOTE] = ACTIONS(3912), - [anon_sym_U_SQUOTE] = ACTIONS(3912), - [anon_sym_u8_SQUOTE] = ACTIONS(3912), - [anon_sym_SQUOTE] = ACTIONS(3912), - [anon_sym_L_DQUOTE] = ACTIONS(3912), - [anon_sym_u_DQUOTE] = ACTIONS(3912), - [anon_sym_U_DQUOTE] = ACTIONS(3912), - [anon_sym_u8_DQUOTE] = ACTIONS(3912), - [anon_sym_DQUOTE] = ACTIONS(3912), - [sym_true] = ACTIONS(3910), - [sym_false] = ACTIONS(3910), - [anon_sym_NULL] = ACTIONS(3910), - [anon_sym_nullptr] = ACTIONS(3910), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3910), - [anon_sym_decltype] = ACTIONS(3910), - [anon_sym_explicit] = ACTIONS(3910), - [anon_sym_template] = ACTIONS(3910), - [anon_sym_operator] = ACTIONS(3910), - [anon_sym_try] = ACTIONS(3910), - [anon_sym_delete] = ACTIONS(3910), - [anon_sym_throw] = ACTIONS(3910), - [anon_sym_namespace] = ACTIONS(3910), - [anon_sym_static_assert] = ACTIONS(3910), - [anon_sym_concept] = ACTIONS(3910), - [anon_sym_co_return] = ACTIONS(3910), - [anon_sym_co_yield] = ACTIONS(3910), - [anon_sym_R_DQUOTE] = ACTIONS(3912), - [anon_sym_LR_DQUOTE] = ACTIONS(3912), - [anon_sym_uR_DQUOTE] = ACTIONS(3912), - [anon_sym_UR_DQUOTE] = ACTIONS(3912), - [anon_sym_u8R_DQUOTE] = ACTIONS(3912), - [anon_sym_co_await] = ACTIONS(3910), - [anon_sym_new] = ACTIONS(3910), - [anon_sym_requires] = ACTIONS(3910), - [anon_sym_CARET_CARET] = ACTIONS(3912), - [anon_sym_LBRACK_COLON] = ACTIONS(3912), - [sym_this] = ACTIONS(3910), + [STATE(662)] = { + [sym_identifier] = ACTIONS(4040), + [aux_sym_preproc_include_token1] = ACTIONS(4040), + [aux_sym_preproc_def_token1] = ACTIONS(4040), + [aux_sym_preproc_if_token1] = ACTIONS(4040), + [aux_sym_preproc_if_token2] = ACTIONS(4040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4040), + [sym_preproc_directive] = ACTIONS(4040), + [anon_sym_LPAREN2] = ACTIONS(4042), + [anon_sym_BANG] = ACTIONS(4042), + [anon_sym_TILDE] = ACTIONS(4042), + [anon_sym_DASH] = ACTIONS(4040), + [anon_sym_PLUS] = ACTIONS(4040), + [anon_sym_STAR] = ACTIONS(4042), + [anon_sym_AMP_AMP] = ACTIONS(4042), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_SEMI] = ACTIONS(4042), + [anon_sym___extension__] = ACTIONS(4040), + [anon_sym_typedef] = ACTIONS(4040), + [anon_sym_virtual] = ACTIONS(4040), + [anon_sym_extern] = ACTIONS(4040), + [anon_sym___attribute__] = ACTIONS(4040), + [anon_sym___attribute] = ACTIONS(4040), + [anon_sym_using] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(4042), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4042), + [anon_sym___declspec] = ACTIONS(4040), + [anon_sym___based] = ACTIONS(4040), + [anon_sym___cdecl] = ACTIONS(4040), + [anon_sym___clrcall] = ACTIONS(4040), + [anon_sym___stdcall] = ACTIONS(4040), + [anon_sym___fastcall] = ACTIONS(4040), + [anon_sym___thiscall] = ACTIONS(4040), + [anon_sym___vectorcall] = ACTIONS(4040), + [anon_sym_LBRACE] = ACTIONS(4042), + [anon_sym_signed] = ACTIONS(4040), + [anon_sym_unsigned] = ACTIONS(4040), + [anon_sym_long] = ACTIONS(4040), + [anon_sym_short] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4040), + [anon_sym_static] = ACTIONS(4040), + [anon_sym_register] = ACTIONS(4040), + [anon_sym_inline] = ACTIONS(4040), + [anon_sym___inline] = ACTIONS(4040), + [anon_sym___inline__] = ACTIONS(4040), + [anon_sym___forceinline] = ACTIONS(4040), + [anon_sym_thread_local] = ACTIONS(4040), + [anon_sym___thread] = ACTIONS(4040), + [anon_sym_const] = ACTIONS(4040), + [anon_sym_constexpr] = ACTIONS(4040), + [anon_sym_volatile] = ACTIONS(4040), + [anon_sym_restrict] = ACTIONS(4040), + [anon_sym___restrict__] = ACTIONS(4040), + [anon_sym__Atomic] = ACTIONS(4040), + [anon_sym__Noreturn] = ACTIONS(4040), + [anon_sym_noreturn] = ACTIONS(4040), + [anon_sym__Nonnull] = ACTIONS(4040), + [anon_sym_mutable] = ACTIONS(4040), + [anon_sym_constinit] = ACTIONS(4040), + [anon_sym_consteval] = ACTIONS(4040), + [anon_sym_alignas] = ACTIONS(4040), + [anon_sym__Alignas] = ACTIONS(4040), + [sym_primitive_type] = ACTIONS(4040), + [anon_sym_enum] = ACTIONS(4040), + [anon_sym_class] = ACTIONS(4040), + [anon_sym_struct] = ACTIONS(4040), + [anon_sym_union] = ACTIONS(4040), + [anon_sym_if] = ACTIONS(4040), + [anon_sym_switch] = ACTIONS(4040), + [anon_sym_case] = ACTIONS(4040), + [anon_sym_default] = ACTIONS(4040), + [anon_sym_while] = ACTIONS(4040), + [anon_sym_do] = ACTIONS(4040), + [anon_sym_for] = ACTIONS(4040), + [anon_sym_return] = ACTIONS(4040), + [anon_sym_break] = ACTIONS(4040), + [anon_sym_continue] = ACTIONS(4040), + [anon_sym_goto] = ACTIONS(4040), + [anon_sym___try] = ACTIONS(4040), + [anon_sym___leave] = ACTIONS(4040), + [anon_sym_not] = ACTIONS(4040), + [anon_sym_compl] = ACTIONS(4040), + [anon_sym_DASH_DASH] = ACTIONS(4042), + [anon_sym_PLUS_PLUS] = ACTIONS(4042), + [anon_sym_sizeof] = ACTIONS(4040), + [anon_sym___alignof__] = ACTIONS(4040), + [anon_sym___alignof] = ACTIONS(4040), + [anon_sym__alignof] = ACTIONS(4040), + [anon_sym_alignof] = ACTIONS(4040), + [anon_sym__Alignof] = ACTIONS(4040), + [anon_sym_offsetof] = ACTIONS(4040), + [anon_sym__Generic] = ACTIONS(4040), + [anon_sym_typename] = ACTIONS(4040), + [anon_sym_asm] = ACTIONS(4040), + [anon_sym___asm__] = ACTIONS(4040), + [anon_sym___asm] = ACTIONS(4040), + [sym_number_literal] = ACTIONS(4042), + [anon_sym_L_SQUOTE] = ACTIONS(4042), + [anon_sym_u_SQUOTE] = ACTIONS(4042), + [anon_sym_U_SQUOTE] = ACTIONS(4042), + [anon_sym_u8_SQUOTE] = ACTIONS(4042), + [anon_sym_SQUOTE] = ACTIONS(4042), + [anon_sym_L_DQUOTE] = ACTIONS(4042), + [anon_sym_u_DQUOTE] = ACTIONS(4042), + [anon_sym_U_DQUOTE] = ACTIONS(4042), + [anon_sym_u8_DQUOTE] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4042), + [sym_true] = ACTIONS(4040), + [sym_false] = ACTIONS(4040), + [anon_sym_NULL] = ACTIONS(4040), + [anon_sym_nullptr] = ACTIONS(4040), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4040), + [anon_sym_decltype] = ACTIONS(4040), + [anon_sym_explicit] = ACTIONS(4040), + [anon_sym_export] = ACTIONS(4040), + [anon_sym_module] = ACTIONS(4040), + [anon_sym_import] = ACTIONS(4040), + [anon_sym_template] = ACTIONS(4040), + [anon_sym_operator] = ACTIONS(4040), + [anon_sym_try] = ACTIONS(4040), + [anon_sym_delete] = ACTIONS(4040), + [anon_sym_throw] = ACTIONS(4040), + [anon_sym_namespace] = ACTIONS(4040), + [anon_sym_static_assert] = ACTIONS(4040), + [anon_sym_concept] = ACTIONS(4040), + [anon_sym_co_return] = ACTIONS(4040), + [anon_sym_co_yield] = ACTIONS(4040), + [anon_sym_R_DQUOTE] = ACTIONS(4042), + [anon_sym_LR_DQUOTE] = ACTIONS(4042), + [anon_sym_uR_DQUOTE] = ACTIONS(4042), + [anon_sym_UR_DQUOTE] = ACTIONS(4042), + [anon_sym_u8R_DQUOTE] = ACTIONS(4042), + [anon_sym_co_await] = ACTIONS(4040), + [anon_sym_new] = ACTIONS(4040), + [anon_sym_requires] = ACTIONS(4040), + [anon_sym_CARET_CARET] = ACTIONS(4042), + [anon_sym_LBRACK_COLON] = ACTIONS(4042), + [sym_this] = ACTIONS(4040), }, - [STATE(777)] = { - [sym_identifier] = ACTIONS(3914), - [aux_sym_preproc_include_token1] = ACTIONS(3914), - [aux_sym_preproc_def_token1] = ACTIONS(3914), - [aux_sym_preproc_if_token1] = ACTIONS(3914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3914), - [sym_preproc_directive] = ACTIONS(3914), - [anon_sym_LPAREN2] = ACTIONS(3916), - [anon_sym_BANG] = ACTIONS(3916), - [anon_sym_TILDE] = ACTIONS(3916), - [anon_sym_DASH] = ACTIONS(3914), - [anon_sym_PLUS] = ACTIONS(3914), - [anon_sym_STAR] = ACTIONS(3916), - [anon_sym_AMP_AMP] = ACTIONS(3916), - [anon_sym_AMP] = ACTIONS(3914), - [anon_sym_SEMI] = ACTIONS(3916), - [anon_sym___extension__] = ACTIONS(3914), - [anon_sym_typedef] = ACTIONS(3914), - [anon_sym_virtual] = ACTIONS(3914), - [anon_sym_extern] = ACTIONS(3914), - [anon_sym___attribute__] = ACTIONS(3914), - [anon_sym___attribute] = ACTIONS(3914), - [anon_sym_using] = ACTIONS(3914), - [anon_sym_COLON_COLON] = ACTIONS(3916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3916), - [anon_sym___declspec] = ACTIONS(3914), - [anon_sym___based] = ACTIONS(3914), - [anon_sym___cdecl] = ACTIONS(3914), - [anon_sym___clrcall] = ACTIONS(3914), - [anon_sym___stdcall] = ACTIONS(3914), - [anon_sym___fastcall] = ACTIONS(3914), - [anon_sym___thiscall] = ACTIONS(3914), - [anon_sym___vectorcall] = ACTIONS(3914), - [anon_sym_LBRACE] = ACTIONS(3916), - [anon_sym_RBRACE] = ACTIONS(3916), - [anon_sym_signed] = ACTIONS(3914), - [anon_sym_unsigned] = ACTIONS(3914), - [anon_sym_long] = ACTIONS(3914), - [anon_sym_short] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_register] = ACTIONS(3914), - [anon_sym_inline] = ACTIONS(3914), - [anon_sym___inline] = ACTIONS(3914), - [anon_sym___inline__] = ACTIONS(3914), - [anon_sym___forceinline] = ACTIONS(3914), - [anon_sym_thread_local] = ACTIONS(3914), - [anon_sym___thread] = ACTIONS(3914), - [anon_sym_const] = ACTIONS(3914), - [anon_sym_constexpr] = ACTIONS(3914), - [anon_sym_volatile] = ACTIONS(3914), - [anon_sym_restrict] = ACTIONS(3914), - [anon_sym___restrict__] = ACTIONS(3914), - [anon_sym__Atomic] = ACTIONS(3914), - [anon_sym__Noreturn] = ACTIONS(3914), - [anon_sym_noreturn] = ACTIONS(3914), - [anon_sym__Nonnull] = ACTIONS(3914), - [anon_sym_mutable] = ACTIONS(3914), - [anon_sym_constinit] = ACTIONS(3914), - [anon_sym_consteval] = ACTIONS(3914), - [anon_sym_alignas] = ACTIONS(3914), - [anon_sym__Alignas] = ACTIONS(3914), - [sym_primitive_type] = ACTIONS(3914), - [anon_sym_enum] = ACTIONS(3914), - [anon_sym_class] = ACTIONS(3914), - [anon_sym_struct] = ACTIONS(3914), - [anon_sym_union] = ACTIONS(3914), - [anon_sym_if] = ACTIONS(3914), - [anon_sym_switch] = ACTIONS(3914), - [anon_sym_case] = ACTIONS(3914), - [anon_sym_default] = ACTIONS(3914), - [anon_sym_while] = ACTIONS(3914), - [anon_sym_do] = ACTIONS(3914), - [anon_sym_for] = ACTIONS(3914), - [anon_sym_return] = ACTIONS(3914), - [anon_sym_break] = ACTIONS(3914), - [anon_sym_continue] = ACTIONS(3914), - [anon_sym_goto] = ACTIONS(3914), - [anon_sym___try] = ACTIONS(3914), - [anon_sym___leave] = ACTIONS(3914), - [anon_sym_not] = ACTIONS(3914), - [anon_sym_compl] = ACTIONS(3914), - [anon_sym_DASH_DASH] = ACTIONS(3916), - [anon_sym_PLUS_PLUS] = ACTIONS(3916), - [anon_sym_sizeof] = ACTIONS(3914), - [anon_sym___alignof__] = ACTIONS(3914), - [anon_sym___alignof] = ACTIONS(3914), - [anon_sym__alignof] = ACTIONS(3914), - [anon_sym_alignof] = ACTIONS(3914), - [anon_sym__Alignof] = ACTIONS(3914), - [anon_sym_offsetof] = ACTIONS(3914), - [anon_sym__Generic] = ACTIONS(3914), - [anon_sym_typename] = ACTIONS(3914), - [anon_sym_asm] = ACTIONS(3914), - [anon_sym___asm__] = ACTIONS(3914), - [anon_sym___asm] = ACTIONS(3914), - [sym_number_literal] = ACTIONS(3916), - [anon_sym_L_SQUOTE] = ACTIONS(3916), - [anon_sym_u_SQUOTE] = ACTIONS(3916), - [anon_sym_U_SQUOTE] = ACTIONS(3916), - [anon_sym_u8_SQUOTE] = ACTIONS(3916), - [anon_sym_SQUOTE] = ACTIONS(3916), - [anon_sym_L_DQUOTE] = ACTIONS(3916), - [anon_sym_u_DQUOTE] = ACTIONS(3916), - [anon_sym_U_DQUOTE] = ACTIONS(3916), - [anon_sym_u8_DQUOTE] = ACTIONS(3916), - [anon_sym_DQUOTE] = ACTIONS(3916), - [sym_true] = ACTIONS(3914), - [sym_false] = ACTIONS(3914), - [anon_sym_NULL] = ACTIONS(3914), - [anon_sym_nullptr] = ACTIONS(3914), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3914), - [anon_sym_decltype] = ACTIONS(3914), - [anon_sym_explicit] = ACTIONS(3914), - [anon_sym_template] = ACTIONS(3914), - [anon_sym_operator] = ACTIONS(3914), - [anon_sym_try] = ACTIONS(3914), - [anon_sym_delete] = ACTIONS(3914), - [anon_sym_throw] = ACTIONS(3914), - [anon_sym_namespace] = ACTIONS(3914), - [anon_sym_static_assert] = ACTIONS(3914), - [anon_sym_concept] = ACTIONS(3914), - [anon_sym_co_return] = ACTIONS(3914), - [anon_sym_co_yield] = ACTIONS(3914), - [anon_sym_R_DQUOTE] = ACTIONS(3916), - [anon_sym_LR_DQUOTE] = ACTIONS(3916), - [anon_sym_uR_DQUOTE] = ACTIONS(3916), - [anon_sym_UR_DQUOTE] = ACTIONS(3916), - [anon_sym_u8R_DQUOTE] = ACTIONS(3916), - [anon_sym_co_await] = ACTIONS(3914), - [anon_sym_new] = ACTIONS(3914), - [anon_sym_requires] = ACTIONS(3914), - [anon_sym_CARET_CARET] = ACTIONS(3916), - [anon_sym_LBRACK_COLON] = ACTIONS(3916), - [sym_this] = ACTIONS(3914), + [STATE(663)] = { + [sym_identifier] = ACTIONS(4024), + [aux_sym_preproc_include_token1] = ACTIONS(4024), + [aux_sym_preproc_def_token1] = ACTIONS(4024), + [aux_sym_preproc_if_token1] = ACTIONS(4024), + [aux_sym_preproc_if_token2] = ACTIONS(4024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4024), + [sym_preproc_directive] = ACTIONS(4024), + [anon_sym_LPAREN2] = ACTIONS(4026), + [anon_sym_BANG] = ACTIONS(4026), + [anon_sym_TILDE] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_STAR] = ACTIONS(4026), + [anon_sym_AMP_AMP] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4024), + [anon_sym_SEMI] = ACTIONS(4026), + [anon_sym___extension__] = ACTIONS(4024), + [anon_sym_typedef] = ACTIONS(4024), + [anon_sym_virtual] = ACTIONS(4024), + [anon_sym_extern] = ACTIONS(4024), + [anon_sym___attribute__] = ACTIONS(4024), + [anon_sym___attribute] = ACTIONS(4024), + [anon_sym_using] = ACTIONS(4024), + [anon_sym_COLON_COLON] = ACTIONS(4026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4026), + [anon_sym___declspec] = ACTIONS(4024), + [anon_sym___based] = ACTIONS(4024), + [anon_sym___cdecl] = ACTIONS(4024), + [anon_sym___clrcall] = ACTIONS(4024), + [anon_sym___stdcall] = ACTIONS(4024), + [anon_sym___fastcall] = ACTIONS(4024), + [anon_sym___thiscall] = ACTIONS(4024), + [anon_sym___vectorcall] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4026), + [anon_sym_signed] = ACTIONS(4024), + [anon_sym_unsigned] = ACTIONS(4024), + [anon_sym_long] = ACTIONS(4024), + [anon_sym_short] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4024), + [anon_sym_static] = ACTIONS(4024), + [anon_sym_register] = ACTIONS(4024), + [anon_sym_inline] = ACTIONS(4024), + [anon_sym___inline] = ACTIONS(4024), + [anon_sym___inline__] = ACTIONS(4024), + [anon_sym___forceinline] = ACTIONS(4024), + [anon_sym_thread_local] = ACTIONS(4024), + [anon_sym___thread] = ACTIONS(4024), + [anon_sym_const] = ACTIONS(4024), + [anon_sym_constexpr] = ACTIONS(4024), + [anon_sym_volatile] = ACTIONS(4024), + [anon_sym_restrict] = ACTIONS(4024), + [anon_sym___restrict__] = ACTIONS(4024), + [anon_sym__Atomic] = ACTIONS(4024), + [anon_sym__Noreturn] = ACTIONS(4024), + [anon_sym_noreturn] = ACTIONS(4024), + [anon_sym__Nonnull] = ACTIONS(4024), + [anon_sym_mutable] = ACTIONS(4024), + [anon_sym_constinit] = ACTIONS(4024), + [anon_sym_consteval] = ACTIONS(4024), + [anon_sym_alignas] = ACTIONS(4024), + [anon_sym__Alignas] = ACTIONS(4024), + [sym_primitive_type] = ACTIONS(4024), + [anon_sym_enum] = ACTIONS(4024), + [anon_sym_class] = ACTIONS(4024), + [anon_sym_struct] = ACTIONS(4024), + [anon_sym_union] = ACTIONS(4024), + [anon_sym_if] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_case] = ACTIONS(4024), + [anon_sym_default] = ACTIONS(4024), + [anon_sym_while] = ACTIONS(4024), + [anon_sym_do] = ACTIONS(4024), + [anon_sym_for] = ACTIONS(4024), + [anon_sym_return] = ACTIONS(4024), + [anon_sym_break] = ACTIONS(4024), + [anon_sym_continue] = ACTIONS(4024), + [anon_sym_goto] = ACTIONS(4024), + [anon_sym___try] = ACTIONS(4024), + [anon_sym___leave] = ACTIONS(4024), + [anon_sym_not] = ACTIONS(4024), + [anon_sym_compl] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4026), + [anon_sym_PLUS_PLUS] = ACTIONS(4026), + [anon_sym_sizeof] = ACTIONS(4024), + [anon_sym___alignof__] = ACTIONS(4024), + [anon_sym___alignof] = ACTIONS(4024), + [anon_sym__alignof] = ACTIONS(4024), + [anon_sym_alignof] = ACTIONS(4024), + [anon_sym__Alignof] = ACTIONS(4024), + [anon_sym_offsetof] = ACTIONS(4024), + [anon_sym__Generic] = ACTIONS(4024), + [anon_sym_typename] = ACTIONS(4024), + [anon_sym_asm] = ACTIONS(4024), + [anon_sym___asm__] = ACTIONS(4024), + [anon_sym___asm] = ACTIONS(4024), + [sym_number_literal] = ACTIONS(4026), + [anon_sym_L_SQUOTE] = ACTIONS(4026), + [anon_sym_u_SQUOTE] = ACTIONS(4026), + [anon_sym_U_SQUOTE] = ACTIONS(4026), + [anon_sym_u8_SQUOTE] = ACTIONS(4026), + [anon_sym_SQUOTE] = ACTIONS(4026), + [anon_sym_L_DQUOTE] = ACTIONS(4026), + [anon_sym_u_DQUOTE] = ACTIONS(4026), + [anon_sym_U_DQUOTE] = ACTIONS(4026), + [anon_sym_u8_DQUOTE] = ACTIONS(4026), + [anon_sym_DQUOTE] = ACTIONS(4026), + [sym_true] = ACTIONS(4024), + [sym_false] = ACTIONS(4024), + [anon_sym_NULL] = ACTIONS(4024), + [anon_sym_nullptr] = ACTIONS(4024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4024), + [anon_sym_decltype] = ACTIONS(4024), + [anon_sym_explicit] = ACTIONS(4024), + [anon_sym_export] = ACTIONS(4024), + [anon_sym_module] = ACTIONS(4024), + [anon_sym_import] = ACTIONS(4024), + [anon_sym_template] = ACTIONS(4024), + [anon_sym_operator] = ACTIONS(4024), + [anon_sym_try] = ACTIONS(4024), + [anon_sym_delete] = ACTIONS(4024), + [anon_sym_throw] = ACTIONS(4024), + [anon_sym_namespace] = ACTIONS(4024), + [anon_sym_static_assert] = ACTIONS(4024), + [anon_sym_concept] = ACTIONS(4024), + [anon_sym_co_return] = ACTIONS(4024), + [anon_sym_co_yield] = ACTIONS(4024), + [anon_sym_R_DQUOTE] = ACTIONS(4026), + [anon_sym_LR_DQUOTE] = ACTIONS(4026), + [anon_sym_uR_DQUOTE] = ACTIONS(4026), + [anon_sym_UR_DQUOTE] = ACTIONS(4026), + [anon_sym_u8R_DQUOTE] = ACTIONS(4026), + [anon_sym_co_await] = ACTIONS(4024), + [anon_sym_new] = ACTIONS(4024), + [anon_sym_requires] = ACTIONS(4024), + [anon_sym_CARET_CARET] = ACTIONS(4026), + [anon_sym_LBRACK_COLON] = ACTIONS(4026), + [sym_this] = ACTIONS(4024), }, - [STATE(778)] = { - [sym_identifier] = ACTIONS(3994), - [aux_sym_preproc_include_token1] = ACTIONS(3994), - [aux_sym_preproc_def_token1] = ACTIONS(3994), - [aux_sym_preproc_if_token1] = ACTIONS(3994), - [aux_sym_preproc_if_token2] = ACTIONS(3994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3994), - [sym_preproc_directive] = ACTIONS(3994), - [anon_sym_LPAREN2] = ACTIONS(3996), - [anon_sym_BANG] = ACTIONS(3996), - [anon_sym_TILDE] = ACTIONS(3996), - [anon_sym_DASH] = ACTIONS(3994), - [anon_sym_PLUS] = ACTIONS(3994), - [anon_sym_STAR] = ACTIONS(3996), - [anon_sym_AMP_AMP] = ACTIONS(3996), - [anon_sym_AMP] = ACTIONS(3994), - [anon_sym_SEMI] = ACTIONS(3996), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_typedef] = ACTIONS(3994), - [anon_sym_virtual] = ACTIONS(3994), - [anon_sym_extern] = ACTIONS(3994), - [anon_sym___attribute__] = ACTIONS(3994), - [anon_sym___attribute] = ACTIONS(3994), - [anon_sym_using] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3996), - [anon_sym___declspec] = ACTIONS(3994), - [anon_sym___based] = ACTIONS(3994), - [anon_sym___cdecl] = ACTIONS(3994), - [anon_sym___clrcall] = ACTIONS(3994), - [anon_sym___stdcall] = ACTIONS(3994), - [anon_sym___fastcall] = ACTIONS(3994), - [anon_sym___thiscall] = ACTIONS(3994), - [anon_sym___vectorcall] = ACTIONS(3994), - [anon_sym_LBRACE] = ACTIONS(3996), - [anon_sym_signed] = ACTIONS(3994), - [anon_sym_unsigned] = ACTIONS(3994), - [anon_sym_long] = ACTIONS(3994), - [anon_sym_short] = ACTIONS(3994), - [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_static] = ACTIONS(3994), - [anon_sym_register] = ACTIONS(3994), - [anon_sym_inline] = ACTIONS(3994), - [anon_sym___inline] = ACTIONS(3994), - [anon_sym___inline__] = ACTIONS(3994), - [anon_sym___forceinline] = ACTIONS(3994), - [anon_sym_thread_local] = ACTIONS(3994), - [anon_sym___thread] = ACTIONS(3994), - [anon_sym_const] = ACTIONS(3994), - [anon_sym_constexpr] = ACTIONS(3994), - [anon_sym_volatile] = ACTIONS(3994), - [anon_sym_restrict] = ACTIONS(3994), - [anon_sym___restrict__] = ACTIONS(3994), - [anon_sym__Atomic] = ACTIONS(3994), - [anon_sym__Noreturn] = ACTIONS(3994), - [anon_sym_noreturn] = ACTIONS(3994), - [anon_sym__Nonnull] = ACTIONS(3994), - [anon_sym_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [anon_sym_alignas] = ACTIONS(3994), - [anon_sym__Alignas] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(3994), - [anon_sym_enum] = ACTIONS(3994), - [anon_sym_class] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(3994), - [anon_sym_union] = ACTIONS(3994), - [anon_sym_if] = ACTIONS(3994), - [anon_sym_switch] = ACTIONS(3994), - [anon_sym_case] = ACTIONS(3994), - [anon_sym_default] = ACTIONS(3994), - [anon_sym_while] = ACTIONS(3994), - [anon_sym_do] = ACTIONS(3994), - [anon_sym_for] = ACTIONS(3994), - [anon_sym_return] = ACTIONS(3994), - [anon_sym_break] = ACTIONS(3994), - [anon_sym_continue] = ACTIONS(3994), - [anon_sym_goto] = ACTIONS(3994), - [anon_sym___try] = ACTIONS(3994), - [anon_sym___leave] = ACTIONS(3994), - [anon_sym_not] = ACTIONS(3994), - [anon_sym_compl] = ACTIONS(3994), - [anon_sym_DASH_DASH] = ACTIONS(3996), - [anon_sym_PLUS_PLUS] = ACTIONS(3996), - [anon_sym_sizeof] = ACTIONS(3994), - [anon_sym___alignof__] = ACTIONS(3994), - [anon_sym___alignof] = ACTIONS(3994), - [anon_sym__alignof] = ACTIONS(3994), - [anon_sym_alignof] = ACTIONS(3994), - [anon_sym__Alignof] = ACTIONS(3994), - [anon_sym_offsetof] = ACTIONS(3994), - [anon_sym__Generic] = ACTIONS(3994), - [anon_sym_typename] = ACTIONS(3994), - [anon_sym_asm] = ACTIONS(3994), - [anon_sym___asm__] = ACTIONS(3994), - [anon_sym___asm] = ACTIONS(3994), - [sym_number_literal] = ACTIONS(3996), - [anon_sym_L_SQUOTE] = ACTIONS(3996), - [anon_sym_u_SQUOTE] = ACTIONS(3996), - [anon_sym_U_SQUOTE] = ACTIONS(3996), - [anon_sym_u8_SQUOTE] = ACTIONS(3996), - [anon_sym_SQUOTE] = ACTIONS(3996), - [anon_sym_L_DQUOTE] = ACTIONS(3996), - [anon_sym_u_DQUOTE] = ACTIONS(3996), - [anon_sym_U_DQUOTE] = ACTIONS(3996), - [anon_sym_u8_DQUOTE] = ACTIONS(3996), - [anon_sym_DQUOTE] = ACTIONS(3996), - [sym_true] = ACTIONS(3994), - [sym_false] = ACTIONS(3994), - [anon_sym_NULL] = ACTIONS(3994), - [anon_sym_nullptr] = ACTIONS(3994), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3994), - [anon_sym_decltype] = ACTIONS(3994), - [anon_sym_explicit] = ACTIONS(3994), - [anon_sym_template] = ACTIONS(3994), - [anon_sym_operator] = ACTIONS(3994), - [anon_sym_try] = ACTIONS(3994), - [anon_sym_delete] = ACTIONS(3994), - [anon_sym_throw] = ACTIONS(3994), - [anon_sym_namespace] = ACTIONS(3994), - [anon_sym_static_assert] = ACTIONS(3994), - [anon_sym_concept] = ACTIONS(3994), - [anon_sym_co_return] = ACTIONS(3994), - [anon_sym_co_yield] = ACTIONS(3994), - [anon_sym_R_DQUOTE] = ACTIONS(3996), - [anon_sym_LR_DQUOTE] = ACTIONS(3996), - [anon_sym_uR_DQUOTE] = ACTIONS(3996), - [anon_sym_UR_DQUOTE] = ACTIONS(3996), - [anon_sym_u8R_DQUOTE] = ACTIONS(3996), - [anon_sym_co_await] = ACTIONS(3994), - [anon_sym_new] = ACTIONS(3994), - [anon_sym_requires] = ACTIONS(3994), - [anon_sym_CARET_CARET] = ACTIONS(3996), - [anon_sym_LBRACK_COLON] = ACTIONS(3996), - [sym_this] = ACTIONS(3994), + [STATE(664)] = { + [sym_identifier] = ACTIONS(4076), + [aux_sym_preproc_include_token1] = ACTIONS(4076), + [aux_sym_preproc_def_token1] = ACTIONS(4076), + [aux_sym_preproc_if_token1] = ACTIONS(4076), + [aux_sym_preproc_if_token2] = ACTIONS(4076), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4076), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4076), + [sym_preproc_directive] = ACTIONS(4076), + [anon_sym_LPAREN2] = ACTIONS(4078), + [anon_sym_BANG] = ACTIONS(4078), + [anon_sym_TILDE] = ACTIONS(4078), + [anon_sym_DASH] = ACTIONS(4076), + [anon_sym_PLUS] = ACTIONS(4076), + [anon_sym_STAR] = ACTIONS(4078), + [anon_sym_AMP_AMP] = ACTIONS(4078), + [anon_sym_AMP] = ACTIONS(4076), + [anon_sym_SEMI] = ACTIONS(4078), + [anon_sym___extension__] = ACTIONS(4076), + [anon_sym_typedef] = ACTIONS(4076), + [anon_sym_virtual] = ACTIONS(4076), + [anon_sym_extern] = ACTIONS(4076), + [anon_sym___attribute__] = ACTIONS(4076), + [anon_sym___attribute] = ACTIONS(4076), + [anon_sym_using] = ACTIONS(4076), + [anon_sym_COLON_COLON] = ACTIONS(4078), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4078), + [anon_sym___declspec] = ACTIONS(4076), + [anon_sym___based] = ACTIONS(4076), + [anon_sym___cdecl] = ACTIONS(4076), + [anon_sym___clrcall] = ACTIONS(4076), + [anon_sym___stdcall] = ACTIONS(4076), + [anon_sym___fastcall] = ACTIONS(4076), + [anon_sym___thiscall] = ACTIONS(4076), + [anon_sym___vectorcall] = ACTIONS(4076), + [anon_sym_LBRACE] = ACTIONS(4078), + [anon_sym_signed] = ACTIONS(4076), + [anon_sym_unsigned] = ACTIONS(4076), + [anon_sym_long] = ACTIONS(4076), + [anon_sym_short] = ACTIONS(4076), + [anon_sym_LBRACK] = ACTIONS(4076), + [anon_sym_static] = ACTIONS(4076), + [anon_sym_register] = ACTIONS(4076), + [anon_sym_inline] = ACTIONS(4076), + [anon_sym___inline] = ACTIONS(4076), + [anon_sym___inline__] = ACTIONS(4076), + [anon_sym___forceinline] = ACTIONS(4076), + [anon_sym_thread_local] = ACTIONS(4076), + [anon_sym___thread] = ACTIONS(4076), + [anon_sym_const] = ACTIONS(4076), + [anon_sym_constexpr] = ACTIONS(4076), + [anon_sym_volatile] = ACTIONS(4076), + [anon_sym_restrict] = ACTIONS(4076), + [anon_sym___restrict__] = ACTIONS(4076), + [anon_sym__Atomic] = ACTIONS(4076), + [anon_sym__Noreturn] = ACTIONS(4076), + [anon_sym_noreturn] = ACTIONS(4076), + [anon_sym__Nonnull] = ACTIONS(4076), + [anon_sym_mutable] = ACTIONS(4076), + [anon_sym_constinit] = ACTIONS(4076), + [anon_sym_consteval] = ACTIONS(4076), + [anon_sym_alignas] = ACTIONS(4076), + [anon_sym__Alignas] = ACTIONS(4076), + [sym_primitive_type] = ACTIONS(4076), + [anon_sym_enum] = ACTIONS(4076), + [anon_sym_class] = ACTIONS(4076), + [anon_sym_struct] = ACTIONS(4076), + [anon_sym_union] = ACTIONS(4076), + [anon_sym_if] = ACTIONS(4076), + [anon_sym_switch] = ACTIONS(4076), + [anon_sym_case] = ACTIONS(4076), + [anon_sym_default] = ACTIONS(4076), + [anon_sym_while] = ACTIONS(4076), + [anon_sym_do] = ACTIONS(4076), + [anon_sym_for] = ACTIONS(4076), + [anon_sym_return] = ACTIONS(4076), + [anon_sym_break] = ACTIONS(4076), + [anon_sym_continue] = ACTIONS(4076), + [anon_sym_goto] = ACTIONS(4076), + [anon_sym___try] = ACTIONS(4076), + [anon_sym___leave] = ACTIONS(4076), + [anon_sym_not] = ACTIONS(4076), + [anon_sym_compl] = ACTIONS(4076), + [anon_sym_DASH_DASH] = ACTIONS(4078), + [anon_sym_PLUS_PLUS] = ACTIONS(4078), + [anon_sym_sizeof] = ACTIONS(4076), + [anon_sym___alignof__] = ACTIONS(4076), + [anon_sym___alignof] = ACTIONS(4076), + [anon_sym__alignof] = ACTIONS(4076), + [anon_sym_alignof] = ACTIONS(4076), + [anon_sym__Alignof] = ACTIONS(4076), + [anon_sym_offsetof] = ACTIONS(4076), + [anon_sym__Generic] = ACTIONS(4076), + [anon_sym_typename] = ACTIONS(4076), + [anon_sym_asm] = ACTIONS(4076), + [anon_sym___asm__] = ACTIONS(4076), + [anon_sym___asm] = ACTIONS(4076), + [sym_number_literal] = ACTIONS(4078), + [anon_sym_L_SQUOTE] = ACTIONS(4078), + [anon_sym_u_SQUOTE] = ACTIONS(4078), + [anon_sym_U_SQUOTE] = ACTIONS(4078), + [anon_sym_u8_SQUOTE] = ACTIONS(4078), + [anon_sym_SQUOTE] = ACTIONS(4078), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), + [sym_true] = ACTIONS(4076), + [sym_false] = ACTIONS(4076), + [anon_sym_NULL] = ACTIONS(4076), + [anon_sym_nullptr] = ACTIONS(4076), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4076), + [anon_sym_decltype] = ACTIONS(4076), + [anon_sym_explicit] = ACTIONS(4076), + [anon_sym_export] = ACTIONS(4076), + [anon_sym_module] = ACTIONS(4076), + [anon_sym_import] = ACTIONS(4076), + [anon_sym_template] = ACTIONS(4076), + [anon_sym_operator] = ACTIONS(4076), + [anon_sym_try] = ACTIONS(4076), + [anon_sym_delete] = ACTIONS(4076), + [anon_sym_throw] = ACTIONS(4076), + [anon_sym_namespace] = ACTIONS(4076), + [anon_sym_static_assert] = ACTIONS(4076), + [anon_sym_concept] = ACTIONS(4076), + [anon_sym_co_return] = ACTIONS(4076), + [anon_sym_co_yield] = ACTIONS(4076), + [anon_sym_R_DQUOTE] = ACTIONS(4078), + [anon_sym_LR_DQUOTE] = ACTIONS(4078), + [anon_sym_uR_DQUOTE] = ACTIONS(4078), + [anon_sym_UR_DQUOTE] = ACTIONS(4078), + [anon_sym_u8R_DQUOTE] = ACTIONS(4078), + [anon_sym_co_await] = ACTIONS(4076), + [anon_sym_new] = ACTIONS(4076), + [anon_sym_requires] = ACTIONS(4076), + [anon_sym_CARET_CARET] = ACTIONS(4078), + [anon_sym_LBRACK_COLON] = ACTIONS(4078), + [sym_this] = ACTIONS(4076), }, - [STATE(779)] = { - [sym_identifier] = ACTIONS(3918), - [aux_sym_preproc_include_token1] = ACTIONS(3918), - [aux_sym_preproc_def_token1] = ACTIONS(3918), - [aux_sym_preproc_if_token1] = ACTIONS(3918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3918), - [sym_preproc_directive] = ACTIONS(3918), - [anon_sym_LPAREN2] = ACTIONS(3920), - [anon_sym_BANG] = ACTIONS(3920), - [anon_sym_TILDE] = ACTIONS(3920), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_STAR] = ACTIONS(3920), - [anon_sym_AMP_AMP] = ACTIONS(3920), - [anon_sym_AMP] = ACTIONS(3918), - [anon_sym_SEMI] = ACTIONS(3920), - [anon_sym___extension__] = ACTIONS(3918), - [anon_sym_typedef] = ACTIONS(3918), - [anon_sym_virtual] = ACTIONS(3918), - [anon_sym_extern] = ACTIONS(3918), - [anon_sym___attribute__] = ACTIONS(3918), - [anon_sym___attribute] = ACTIONS(3918), - [anon_sym_using] = ACTIONS(3918), - [anon_sym_COLON_COLON] = ACTIONS(3920), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3920), - [anon_sym___declspec] = ACTIONS(3918), - [anon_sym___based] = ACTIONS(3918), - [anon_sym___cdecl] = ACTIONS(3918), - [anon_sym___clrcall] = ACTIONS(3918), - [anon_sym___stdcall] = ACTIONS(3918), - [anon_sym___fastcall] = ACTIONS(3918), - [anon_sym___thiscall] = ACTIONS(3918), - [anon_sym___vectorcall] = ACTIONS(3918), - [anon_sym_LBRACE] = ACTIONS(3920), - [anon_sym_RBRACE] = ACTIONS(3920), - [anon_sym_signed] = ACTIONS(3918), - [anon_sym_unsigned] = ACTIONS(3918), - [anon_sym_long] = ACTIONS(3918), - [anon_sym_short] = ACTIONS(3918), - [anon_sym_LBRACK] = ACTIONS(3918), - [anon_sym_static] = ACTIONS(3918), - [anon_sym_register] = ACTIONS(3918), - [anon_sym_inline] = ACTIONS(3918), - [anon_sym___inline] = ACTIONS(3918), - [anon_sym___inline__] = ACTIONS(3918), - [anon_sym___forceinline] = ACTIONS(3918), - [anon_sym_thread_local] = ACTIONS(3918), - [anon_sym___thread] = ACTIONS(3918), - [anon_sym_const] = ACTIONS(3918), - [anon_sym_constexpr] = ACTIONS(3918), - [anon_sym_volatile] = ACTIONS(3918), - [anon_sym_restrict] = ACTIONS(3918), - [anon_sym___restrict__] = ACTIONS(3918), - [anon_sym__Atomic] = ACTIONS(3918), - [anon_sym__Noreturn] = ACTIONS(3918), - [anon_sym_noreturn] = ACTIONS(3918), - [anon_sym__Nonnull] = ACTIONS(3918), - [anon_sym_mutable] = ACTIONS(3918), - [anon_sym_constinit] = ACTIONS(3918), - [anon_sym_consteval] = ACTIONS(3918), - [anon_sym_alignas] = ACTIONS(3918), - [anon_sym__Alignas] = ACTIONS(3918), - [sym_primitive_type] = ACTIONS(3918), - [anon_sym_enum] = ACTIONS(3918), - [anon_sym_class] = ACTIONS(3918), - [anon_sym_struct] = ACTIONS(3918), - [anon_sym_union] = ACTIONS(3918), - [anon_sym_if] = ACTIONS(3918), - [anon_sym_switch] = ACTIONS(3918), - [anon_sym_case] = ACTIONS(3918), - [anon_sym_default] = ACTIONS(3918), - [anon_sym_while] = ACTIONS(3918), - [anon_sym_do] = ACTIONS(3918), - [anon_sym_for] = ACTIONS(3918), - [anon_sym_return] = ACTIONS(3918), - [anon_sym_break] = ACTIONS(3918), - [anon_sym_continue] = ACTIONS(3918), - [anon_sym_goto] = ACTIONS(3918), - [anon_sym___try] = ACTIONS(3918), - [anon_sym___leave] = ACTIONS(3918), - [anon_sym_not] = ACTIONS(3918), - [anon_sym_compl] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3920), - [anon_sym_PLUS_PLUS] = ACTIONS(3920), - [anon_sym_sizeof] = ACTIONS(3918), - [anon_sym___alignof__] = ACTIONS(3918), - [anon_sym___alignof] = ACTIONS(3918), - [anon_sym__alignof] = ACTIONS(3918), - [anon_sym_alignof] = ACTIONS(3918), - [anon_sym__Alignof] = ACTIONS(3918), - [anon_sym_offsetof] = ACTIONS(3918), - [anon_sym__Generic] = ACTIONS(3918), - [anon_sym_typename] = ACTIONS(3918), - [anon_sym_asm] = ACTIONS(3918), - [anon_sym___asm__] = ACTIONS(3918), - [anon_sym___asm] = ACTIONS(3918), - [sym_number_literal] = ACTIONS(3920), - [anon_sym_L_SQUOTE] = ACTIONS(3920), - [anon_sym_u_SQUOTE] = ACTIONS(3920), - [anon_sym_U_SQUOTE] = ACTIONS(3920), - [anon_sym_u8_SQUOTE] = ACTIONS(3920), - [anon_sym_SQUOTE] = ACTIONS(3920), - [anon_sym_L_DQUOTE] = ACTIONS(3920), - [anon_sym_u_DQUOTE] = ACTIONS(3920), - [anon_sym_U_DQUOTE] = ACTIONS(3920), - [anon_sym_u8_DQUOTE] = ACTIONS(3920), - [anon_sym_DQUOTE] = ACTIONS(3920), - [sym_true] = ACTIONS(3918), - [sym_false] = ACTIONS(3918), - [anon_sym_NULL] = ACTIONS(3918), - [anon_sym_nullptr] = ACTIONS(3918), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3918), - [anon_sym_decltype] = ACTIONS(3918), - [anon_sym_explicit] = ACTIONS(3918), - [anon_sym_template] = ACTIONS(3918), - [anon_sym_operator] = ACTIONS(3918), - [anon_sym_try] = ACTIONS(3918), - [anon_sym_delete] = ACTIONS(3918), - [anon_sym_throw] = ACTIONS(3918), - [anon_sym_namespace] = ACTIONS(3918), - [anon_sym_static_assert] = ACTIONS(3918), - [anon_sym_concept] = ACTIONS(3918), - [anon_sym_co_return] = ACTIONS(3918), - [anon_sym_co_yield] = ACTIONS(3918), - [anon_sym_R_DQUOTE] = ACTIONS(3920), - [anon_sym_LR_DQUOTE] = ACTIONS(3920), - [anon_sym_uR_DQUOTE] = ACTIONS(3920), - [anon_sym_UR_DQUOTE] = ACTIONS(3920), - [anon_sym_u8R_DQUOTE] = ACTIONS(3920), - [anon_sym_co_await] = ACTIONS(3918), - [anon_sym_new] = ACTIONS(3918), - [anon_sym_requires] = ACTIONS(3918), - [anon_sym_CARET_CARET] = ACTIONS(3920), - [anon_sym_LBRACK_COLON] = ACTIONS(3920), - [sym_this] = ACTIONS(3918), + [STATE(665)] = { + [sym_identifier] = ACTIONS(3684), + [aux_sym_preproc_include_token1] = ACTIONS(3684), + [aux_sym_preproc_def_token1] = ACTIONS(3684), + [aux_sym_preproc_if_token1] = ACTIONS(3684), + [aux_sym_preproc_if_token2] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3684), + [sym_preproc_directive] = ACTIONS(3684), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_BANG] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym___extension__] = ACTIONS(3684), + [anon_sym_typedef] = ACTIONS(3684), + [anon_sym_virtual] = ACTIONS(3684), + [anon_sym_extern] = ACTIONS(3684), + [anon_sym___attribute__] = ACTIONS(3684), + [anon_sym___attribute] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_COLON_COLON] = ACTIONS(3686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), + [anon_sym___declspec] = ACTIONS(3684), + [anon_sym___based] = ACTIONS(3684), + [anon_sym___cdecl] = ACTIONS(3684), + [anon_sym___clrcall] = ACTIONS(3684), + [anon_sym___stdcall] = ACTIONS(3684), + [anon_sym___fastcall] = ACTIONS(3684), + [anon_sym___thiscall] = ACTIONS(3684), + [anon_sym___vectorcall] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_signed] = ACTIONS(3684), + [anon_sym_unsigned] = ACTIONS(3684), + [anon_sym_long] = ACTIONS(3684), + [anon_sym_short] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_register] = ACTIONS(3684), + [anon_sym_inline] = ACTIONS(3684), + [anon_sym___inline] = ACTIONS(3684), + [anon_sym___inline__] = ACTIONS(3684), + [anon_sym___forceinline] = ACTIONS(3684), + [anon_sym_thread_local] = ACTIONS(3684), + [anon_sym___thread] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_constexpr] = ACTIONS(3684), + [anon_sym_volatile] = ACTIONS(3684), + [anon_sym_restrict] = ACTIONS(3684), + [anon_sym___restrict__] = ACTIONS(3684), + [anon_sym__Atomic] = ACTIONS(3684), + [anon_sym__Noreturn] = ACTIONS(3684), + [anon_sym_noreturn] = ACTIONS(3684), + [anon_sym__Nonnull] = ACTIONS(3684), + [anon_sym_mutable] = ACTIONS(3684), + [anon_sym_constinit] = ACTIONS(3684), + [anon_sym_consteval] = ACTIONS(3684), + [anon_sym_alignas] = ACTIONS(3684), + [anon_sym__Alignas] = ACTIONS(3684), + [sym_primitive_type] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_struct] = ACTIONS(3684), + [anon_sym_union] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_case] = ACTIONS(3684), + [anon_sym_default] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_goto] = ACTIONS(3684), + [anon_sym___try] = ACTIONS(3684), + [anon_sym___leave] = ACTIONS(3684), + [anon_sym_not] = ACTIONS(3684), + [anon_sym_compl] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_sizeof] = ACTIONS(3684), + [anon_sym___alignof__] = ACTIONS(3684), + [anon_sym___alignof] = ACTIONS(3684), + [anon_sym__alignof] = ACTIONS(3684), + [anon_sym_alignof] = ACTIONS(3684), + [anon_sym__Alignof] = ACTIONS(3684), + [anon_sym_offsetof] = ACTIONS(3684), + [anon_sym__Generic] = ACTIONS(3684), + [anon_sym_typename] = ACTIONS(3684), + [anon_sym_asm] = ACTIONS(3684), + [anon_sym___asm__] = ACTIONS(3684), + [anon_sym___asm] = ACTIONS(3684), + [sym_number_literal] = ACTIONS(3686), + [anon_sym_L_SQUOTE] = ACTIONS(3686), + [anon_sym_u_SQUOTE] = ACTIONS(3686), + [anon_sym_U_SQUOTE] = ACTIONS(3686), + [anon_sym_u8_SQUOTE] = ACTIONS(3686), + [anon_sym_SQUOTE] = ACTIONS(3686), + [anon_sym_L_DQUOTE] = ACTIONS(3686), + [anon_sym_u_DQUOTE] = ACTIONS(3686), + [anon_sym_U_DQUOTE] = ACTIONS(3686), + [anon_sym_u8_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [anon_sym_NULL] = ACTIONS(3684), + [anon_sym_nullptr] = ACTIONS(3684), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3684), + [anon_sym_decltype] = ACTIONS(3684), + [anon_sym_explicit] = ACTIONS(3684), + [anon_sym_export] = ACTIONS(3684), + [anon_sym_module] = ACTIONS(3684), + [anon_sym_import] = ACTIONS(3684), + [anon_sym_template] = ACTIONS(3684), + [anon_sym_operator] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_static_assert] = ACTIONS(3684), + [anon_sym_concept] = ACTIONS(3684), + [anon_sym_co_return] = ACTIONS(3684), + [anon_sym_co_yield] = ACTIONS(3684), + [anon_sym_R_DQUOTE] = ACTIONS(3686), + [anon_sym_LR_DQUOTE] = ACTIONS(3686), + [anon_sym_uR_DQUOTE] = ACTIONS(3686), + [anon_sym_UR_DQUOTE] = ACTIONS(3686), + [anon_sym_u8R_DQUOTE] = ACTIONS(3686), + [anon_sym_co_await] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_requires] = ACTIONS(3684), + [anon_sym_CARET_CARET] = ACTIONS(3686), + [anon_sym_LBRACK_COLON] = ACTIONS(3686), + [sym_this] = ACTIONS(3684), }, - [STATE(780)] = { - [sym_identifier] = ACTIONS(3998), - [aux_sym_preproc_include_token1] = ACTIONS(3998), - [aux_sym_preproc_def_token1] = ACTIONS(3998), - [aux_sym_preproc_if_token1] = ACTIONS(3998), - [aux_sym_preproc_if_token2] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), - [sym_preproc_directive] = ACTIONS(3998), - [anon_sym_LPAREN2] = ACTIONS(4000), - [anon_sym_BANG] = ACTIONS(4000), - [anon_sym_TILDE] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(3998), - [anon_sym_PLUS] = ACTIONS(3998), - [anon_sym_STAR] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym___extension__] = ACTIONS(3998), - [anon_sym_typedef] = ACTIONS(3998), - [anon_sym_virtual] = ACTIONS(3998), - [anon_sym_extern] = ACTIONS(3998), - [anon_sym___attribute__] = ACTIONS(3998), - [anon_sym___attribute] = ACTIONS(3998), - [anon_sym_using] = ACTIONS(3998), - [anon_sym_COLON_COLON] = ACTIONS(4000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), - [anon_sym___declspec] = ACTIONS(3998), - [anon_sym___based] = ACTIONS(3998), - [anon_sym___cdecl] = ACTIONS(3998), - [anon_sym___clrcall] = ACTIONS(3998), - [anon_sym___stdcall] = ACTIONS(3998), - [anon_sym___fastcall] = ACTIONS(3998), - [anon_sym___thiscall] = ACTIONS(3998), - [anon_sym___vectorcall] = ACTIONS(3998), - [anon_sym_LBRACE] = ACTIONS(4000), - [anon_sym_signed] = ACTIONS(3998), - [anon_sym_unsigned] = ACTIONS(3998), - [anon_sym_long] = ACTIONS(3998), - [anon_sym_short] = ACTIONS(3998), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_static] = ACTIONS(3998), - [anon_sym_register] = ACTIONS(3998), - [anon_sym_inline] = ACTIONS(3998), - [anon_sym___inline] = ACTIONS(3998), - [anon_sym___inline__] = ACTIONS(3998), - [anon_sym___forceinline] = ACTIONS(3998), - [anon_sym_thread_local] = ACTIONS(3998), - [anon_sym___thread] = ACTIONS(3998), - [anon_sym_const] = ACTIONS(3998), - [anon_sym_constexpr] = ACTIONS(3998), - [anon_sym_volatile] = ACTIONS(3998), - [anon_sym_restrict] = ACTIONS(3998), - [anon_sym___restrict__] = ACTIONS(3998), - [anon_sym__Atomic] = ACTIONS(3998), - [anon_sym__Noreturn] = ACTIONS(3998), - [anon_sym_noreturn] = ACTIONS(3998), - [anon_sym__Nonnull] = ACTIONS(3998), - [anon_sym_mutable] = ACTIONS(3998), - [anon_sym_constinit] = ACTIONS(3998), - [anon_sym_consteval] = ACTIONS(3998), - [anon_sym_alignas] = ACTIONS(3998), - [anon_sym__Alignas] = ACTIONS(3998), - [sym_primitive_type] = ACTIONS(3998), - [anon_sym_enum] = ACTIONS(3998), - [anon_sym_class] = ACTIONS(3998), - [anon_sym_struct] = ACTIONS(3998), - [anon_sym_union] = ACTIONS(3998), - [anon_sym_if] = ACTIONS(3998), - [anon_sym_switch] = ACTIONS(3998), - [anon_sym_case] = ACTIONS(3998), - [anon_sym_default] = ACTIONS(3998), - [anon_sym_while] = ACTIONS(3998), - [anon_sym_do] = ACTIONS(3998), - [anon_sym_for] = ACTIONS(3998), - [anon_sym_return] = ACTIONS(3998), - [anon_sym_break] = ACTIONS(3998), - [anon_sym_continue] = ACTIONS(3998), - [anon_sym_goto] = ACTIONS(3998), - [anon_sym___try] = ACTIONS(3998), - [anon_sym___leave] = ACTIONS(3998), - [anon_sym_not] = ACTIONS(3998), - [anon_sym_compl] = ACTIONS(3998), - [anon_sym_DASH_DASH] = ACTIONS(4000), - [anon_sym_PLUS_PLUS] = ACTIONS(4000), - [anon_sym_sizeof] = ACTIONS(3998), - [anon_sym___alignof__] = ACTIONS(3998), - [anon_sym___alignof] = ACTIONS(3998), - [anon_sym__alignof] = ACTIONS(3998), - [anon_sym_alignof] = ACTIONS(3998), - [anon_sym__Alignof] = ACTIONS(3998), - [anon_sym_offsetof] = ACTIONS(3998), - [anon_sym__Generic] = ACTIONS(3998), - [anon_sym_typename] = ACTIONS(3998), - [anon_sym_asm] = ACTIONS(3998), - [anon_sym___asm__] = ACTIONS(3998), - [anon_sym___asm] = ACTIONS(3998), - [sym_number_literal] = ACTIONS(4000), - [anon_sym_L_SQUOTE] = ACTIONS(4000), - [anon_sym_u_SQUOTE] = ACTIONS(4000), - [anon_sym_U_SQUOTE] = ACTIONS(4000), - [anon_sym_u8_SQUOTE] = ACTIONS(4000), - [anon_sym_SQUOTE] = 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_true] = ACTIONS(3998), - [sym_false] = ACTIONS(3998), - [anon_sym_NULL] = ACTIONS(3998), - [anon_sym_nullptr] = ACTIONS(3998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3998), - [anon_sym_decltype] = ACTIONS(3998), - [anon_sym_explicit] = ACTIONS(3998), - [anon_sym_template] = ACTIONS(3998), - [anon_sym_operator] = ACTIONS(3998), - [anon_sym_try] = ACTIONS(3998), - [anon_sym_delete] = ACTIONS(3998), - [anon_sym_throw] = ACTIONS(3998), - [anon_sym_namespace] = ACTIONS(3998), - [anon_sym_static_assert] = ACTIONS(3998), - [anon_sym_concept] = ACTIONS(3998), - [anon_sym_co_return] = ACTIONS(3998), - [anon_sym_co_yield] = ACTIONS(3998), - [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), - [anon_sym_co_await] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_requires] = ACTIONS(3998), - [anon_sym_CARET_CARET] = ACTIONS(4000), - [anon_sym_LBRACK_COLON] = ACTIONS(4000), - [sym_this] = ACTIONS(3998), + [STATE(666)] = { + [sym_identifier] = ACTIONS(3564), + [aux_sym_preproc_include_token1] = ACTIONS(3564), + [aux_sym_preproc_def_token1] = ACTIONS(3564), + [aux_sym_preproc_if_token1] = ACTIONS(3564), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3564), + [sym_preproc_directive] = ACTIONS(3564), + [anon_sym_LPAREN2] = ACTIONS(3566), + [anon_sym_BANG] = ACTIONS(3566), + [anon_sym_TILDE] = ACTIONS(3566), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3566), + [anon_sym_AMP_AMP] = ACTIONS(3566), + [anon_sym_AMP] = ACTIONS(3564), + [anon_sym_SEMI] = ACTIONS(3566), + [anon_sym___extension__] = ACTIONS(3564), + [anon_sym_typedef] = ACTIONS(3564), + [anon_sym_virtual] = ACTIONS(3564), + [anon_sym_extern] = ACTIONS(3564), + [anon_sym___attribute__] = ACTIONS(3564), + [anon_sym___attribute] = ACTIONS(3564), + [anon_sym_using] = ACTIONS(3564), + [anon_sym_COLON_COLON] = ACTIONS(3566), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3566), + [anon_sym___declspec] = ACTIONS(3564), + [anon_sym___based] = ACTIONS(3564), + [anon_sym___cdecl] = ACTIONS(3564), + [anon_sym___clrcall] = ACTIONS(3564), + [anon_sym___stdcall] = ACTIONS(3564), + [anon_sym___fastcall] = ACTIONS(3564), + [anon_sym___thiscall] = ACTIONS(3564), + [anon_sym___vectorcall] = ACTIONS(3564), + [anon_sym_LBRACE] = ACTIONS(3566), + [anon_sym_RBRACE] = ACTIONS(3566), + [anon_sym_signed] = ACTIONS(3564), + [anon_sym_unsigned] = ACTIONS(3564), + [anon_sym_long] = ACTIONS(3564), + [anon_sym_short] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3564), + [anon_sym_static] = ACTIONS(3564), + [anon_sym_register] = ACTIONS(3564), + [anon_sym_inline] = ACTIONS(3564), + [anon_sym___inline] = ACTIONS(3564), + [anon_sym___inline__] = ACTIONS(3564), + [anon_sym___forceinline] = ACTIONS(3564), + [anon_sym_thread_local] = ACTIONS(3564), + [anon_sym___thread] = ACTIONS(3564), + [anon_sym_const] = ACTIONS(3564), + [anon_sym_constexpr] = ACTIONS(3564), + [anon_sym_volatile] = ACTIONS(3564), + [anon_sym_restrict] = ACTIONS(3564), + [anon_sym___restrict__] = ACTIONS(3564), + [anon_sym__Atomic] = ACTIONS(3564), + [anon_sym__Noreturn] = ACTIONS(3564), + [anon_sym_noreturn] = ACTIONS(3564), + [anon_sym__Nonnull] = ACTIONS(3564), + [anon_sym_mutable] = ACTIONS(3564), + [anon_sym_constinit] = ACTIONS(3564), + [anon_sym_consteval] = ACTIONS(3564), + [anon_sym_alignas] = ACTIONS(3564), + [anon_sym__Alignas] = ACTIONS(3564), + [sym_primitive_type] = ACTIONS(3564), + [anon_sym_enum] = ACTIONS(3564), + [anon_sym_class] = ACTIONS(3564), + [anon_sym_struct] = ACTIONS(3564), + [anon_sym_union] = ACTIONS(3564), + [anon_sym_if] = ACTIONS(3564), + [anon_sym_else] = ACTIONS(3564), + [anon_sym_switch] = ACTIONS(3564), + [anon_sym_case] = ACTIONS(3564), + [anon_sym_default] = ACTIONS(3564), + [anon_sym_while] = ACTIONS(3564), + [anon_sym_do] = ACTIONS(3564), + [anon_sym_for] = ACTIONS(3564), + [anon_sym_return] = ACTIONS(3564), + [anon_sym_break] = ACTIONS(3564), + [anon_sym_continue] = ACTIONS(3564), + [anon_sym_goto] = ACTIONS(3564), + [anon_sym___try] = ACTIONS(3564), + [anon_sym___leave] = ACTIONS(3564), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3566), + [anon_sym_sizeof] = ACTIONS(3564), + [anon_sym___alignof__] = ACTIONS(3564), + [anon_sym___alignof] = ACTIONS(3564), + [anon_sym__alignof] = ACTIONS(3564), + [anon_sym_alignof] = ACTIONS(3564), + [anon_sym__Alignof] = ACTIONS(3564), + [anon_sym_offsetof] = ACTIONS(3564), + [anon_sym__Generic] = ACTIONS(3564), + [anon_sym_typename] = ACTIONS(3564), + [anon_sym_asm] = ACTIONS(3564), + [anon_sym___asm__] = ACTIONS(3564), + [anon_sym___asm] = ACTIONS(3564), + [sym_number_literal] = ACTIONS(3566), + [anon_sym_L_SQUOTE] = ACTIONS(3566), + [anon_sym_u_SQUOTE] = ACTIONS(3566), + [anon_sym_U_SQUOTE] = ACTIONS(3566), + [anon_sym_u8_SQUOTE] = ACTIONS(3566), + [anon_sym_SQUOTE] = ACTIONS(3566), + [anon_sym_L_DQUOTE] = ACTIONS(3566), + [anon_sym_u_DQUOTE] = ACTIONS(3566), + [anon_sym_U_DQUOTE] = ACTIONS(3566), + [anon_sym_u8_DQUOTE] = ACTIONS(3566), + [anon_sym_DQUOTE] = ACTIONS(3566), + [sym_true] = ACTIONS(3564), + [sym_false] = ACTIONS(3564), + [anon_sym_NULL] = ACTIONS(3564), + [anon_sym_nullptr] = ACTIONS(3564), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3564), + [anon_sym_decltype] = ACTIONS(3564), + [anon_sym_explicit] = ACTIONS(3564), + [anon_sym_export] = ACTIONS(3564), + [anon_sym_import] = ACTIONS(3564), + [anon_sym_template] = ACTIONS(3564), + [anon_sym_operator] = ACTIONS(3564), + [anon_sym_try] = ACTIONS(3564), + [anon_sym_delete] = ACTIONS(3564), + [anon_sym_throw] = ACTIONS(3564), + [anon_sym_namespace] = ACTIONS(3564), + [anon_sym_static_assert] = ACTIONS(3564), + [anon_sym_concept] = ACTIONS(3564), + [anon_sym_co_return] = ACTIONS(3564), + [anon_sym_co_yield] = ACTIONS(3564), + [anon_sym_R_DQUOTE] = ACTIONS(3566), + [anon_sym_LR_DQUOTE] = ACTIONS(3566), + [anon_sym_uR_DQUOTE] = ACTIONS(3566), + [anon_sym_UR_DQUOTE] = ACTIONS(3566), + [anon_sym_u8R_DQUOTE] = ACTIONS(3566), + [anon_sym_co_await] = ACTIONS(3564), + [anon_sym_new] = ACTIONS(3564), + [anon_sym_requires] = ACTIONS(3564), + [anon_sym_CARET_CARET] = ACTIONS(3566), + [anon_sym_LBRACK_COLON] = ACTIONS(3566), + [sym_this] = ACTIONS(3564), }, - [STATE(781)] = { - [sym_identifier] = ACTIONS(3990), - [aux_sym_preproc_include_token1] = ACTIONS(3990), - [aux_sym_preproc_def_token1] = ACTIONS(3990), - [aux_sym_preproc_if_token1] = ACTIONS(3990), - [aux_sym_preproc_if_token2] = ACTIONS(3990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3990), - [sym_preproc_directive] = ACTIONS(3990), - [anon_sym_LPAREN2] = ACTIONS(3992), - [anon_sym_BANG] = ACTIONS(3992), - [anon_sym_TILDE] = ACTIONS(3992), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3992), - [anon_sym_AMP] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(3992), - [anon_sym___extension__] = ACTIONS(3990), - [anon_sym_typedef] = ACTIONS(3990), - [anon_sym_virtual] = ACTIONS(3990), - [anon_sym_extern] = ACTIONS(3990), - [anon_sym___attribute__] = ACTIONS(3990), - [anon_sym___attribute] = ACTIONS(3990), - [anon_sym_using] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3992), - [anon_sym___declspec] = ACTIONS(3990), - [anon_sym___based] = ACTIONS(3990), - [anon_sym___cdecl] = ACTIONS(3990), - [anon_sym___clrcall] = ACTIONS(3990), - [anon_sym___stdcall] = ACTIONS(3990), - [anon_sym___fastcall] = ACTIONS(3990), - [anon_sym___thiscall] = ACTIONS(3990), - [anon_sym___vectorcall] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(3992), - [anon_sym_signed] = ACTIONS(3990), - [anon_sym_unsigned] = ACTIONS(3990), - [anon_sym_long] = ACTIONS(3990), - [anon_sym_short] = ACTIONS(3990), - [anon_sym_LBRACK] = ACTIONS(3990), - [anon_sym_static] = ACTIONS(3990), - [anon_sym_register] = ACTIONS(3990), - [anon_sym_inline] = ACTIONS(3990), - [anon_sym___inline] = ACTIONS(3990), - [anon_sym___inline__] = ACTIONS(3990), - [anon_sym___forceinline] = ACTIONS(3990), - [anon_sym_thread_local] = ACTIONS(3990), - [anon_sym___thread] = ACTIONS(3990), - [anon_sym_const] = ACTIONS(3990), - [anon_sym_constexpr] = ACTIONS(3990), - [anon_sym_volatile] = ACTIONS(3990), - [anon_sym_restrict] = ACTIONS(3990), - [anon_sym___restrict__] = ACTIONS(3990), - [anon_sym__Atomic] = ACTIONS(3990), - [anon_sym__Noreturn] = ACTIONS(3990), - [anon_sym_noreturn] = ACTIONS(3990), - [anon_sym__Nonnull] = ACTIONS(3990), - [anon_sym_mutable] = ACTIONS(3990), - [anon_sym_constinit] = ACTIONS(3990), - [anon_sym_consteval] = ACTIONS(3990), - [anon_sym_alignas] = ACTIONS(3990), - [anon_sym__Alignas] = ACTIONS(3990), - [sym_primitive_type] = ACTIONS(3990), - [anon_sym_enum] = ACTIONS(3990), - [anon_sym_class] = ACTIONS(3990), - [anon_sym_struct] = ACTIONS(3990), - [anon_sym_union] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_switch] = ACTIONS(3990), - [anon_sym_case] = ACTIONS(3990), - [anon_sym_default] = ACTIONS(3990), - [anon_sym_while] = ACTIONS(3990), - [anon_sym_do] = ACTIONS(3990), - [anon_sym_for] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_goto] = ACTIONS(3990), - [anon_sym___try] = ACTIONS(3990), - [anon_sym___leave] = ACTIONS(3990), - [anon_sym_not] = ACTIONS(3990), - [anon_sym_compl] = ACTIONS(3990), - [anon_sym_DASH_DASH] = ACTIONS(3992), - [anon_sym_PLUS_PLUS] = ACTIONS(3992), - [anon_sym_sizeof] = ACTIONS(3990), - [anon_sym___alignof__] = ACTIONS(3990), - [anon_sym___alignof] = ACTIONS(3990), - [anon_sym__alignof] = ACTIONS(3990), - [anon_sym_alignof] = ACTIONS(3990), - [anon_sym__Alignof] = ACTIONS(3990), - [anon_sym_offsetof] = ACTIONS(3990), - [anon_sym__Generic] = ACTIONS(3990), - [anon_sym_typename] = ACTIONS(3990), - [anon_sym_asm] = ACTIONS(3990), - [anon_sym___asm__] = ACTIONS(3990), - [anon_sym___asm] = ACTIONS(3990), - [sym_number_literal] = ACTIONS(3992), - [anon_sym_L_SQUOTE] = ACTIONS(3992), - [anon_sym_u_SQUOTE] = ACTIONS(3992), - [anon_sym_U_SQUOTE] = ACTIONS(3992), - [anon_sym_u8_SQUOTE] = ACTIONS(3992), - [anon_sym_SQUOTE] = ACTIONS(3992), - [anon_sym_L_DQUOTE] = ACTIONS(3992), - [anon_sym_u_DQUOTE] = ACTIONS(3992), - [anon_sym_U_DQUOTE] = ACTIONS(3992), - [anon_sym_u8_DQUOTE] = ACTIONS(3992), - [anon_sym_DQUOTE] = ACTIONS(3992), - [sym_true] = ACTIONS(3990), - [sym_false] = ACTIONS(3990), - [anon_sym_NULL] = ACTIONS(3990), - [anon_sym_nullptr] = ACTIONS(3990), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3990), - [anon_sym_decltype] = ACTIONS(3990), - [anon_sym_explicit] = ACTIONS(3990), - [anon_sym_template] = ACTIONS(3990), - [anon_sym_operator] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_delete] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_namespace] = ACTIONS(3990), - [anon_sym_static_assert] = ACTIONS(3990), - [anon_sym_concept] = ACTIONS(3990), - [anon_sym_co_return] = ACTIONS(3990), - [anon_sym_co_yield] = ACTIONS(3990), - [anon_sym_R_DQUOTE] = ACTIONS(3992), - [anon_sym_LR_DQUOTE] = ACTIONS(3992), - [anon_sym_uR_DQUOTE] = ACTIONS(3992), - [anon_sym_UR_DQUOTE] = ACTIONS(3992), - [anon_sym_u8R_DQUOTE] = ACTIONS(3992), - [anon_sym_co_await] = ACTIONS(3990), - [anon_sym_new] = ACTIONS(3990), - [anon_sym_requires] = ACTIONS(3990), - [anon_sym_CARET_CARET] = ACTIONS(3992), - [anon_sym_LBRACK_COLON] = ACTIONS(3992), - [sym_this] = ACTIONS(3990), + [STATE(667)] = { + [sym_identifier] = ACTIONS(4080), + [aux_sym_preproc_include_token1] = ACTIONS(4080), + [aux_sym_preproc_def_token1] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(4080), + [aux_sym_preproc_if_token2] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), + [sym_preproc_directive] = ACTIONS(4080), + [anon_sym_LPAREN2] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_TILDE] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4080), + [anon_sym_PLUS] = ACTIONS(4080), + [anon_sym_STAR] = ACTIONS(4082), + [anon_sym_AMP_AMP] = ACTIONS(4082), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_SEMI] = ACTIONS(4082), + [anon_sym___extension__] = ACTIONS(4080), + [anon_sym_typedef] = ACTIONS(4080), + [anon_sym_virtual] = ACTIONS(4080), + [anon_sym_extern] = ACTIONS(4080), + [anon_sym___attribute__] = ACTIONS(4080), + [anon_sym___attribute] = ACTIONS(4080), + [anon_sym_using] = ACTIONS(4080), + [anon_sym_COLON_COLON] = ACTIONS(4082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), + [anon_sym___declspec] = ACTIONS(4080), + [anon_sym___based] = ACTIONS(4080), + [anon_sym___cdecl] = ACTIONS(4080), + [anon_sym___clrcall] = ACTIONS(4080), + [anon_sym___stdcall] = ACTIONS(4080), + [anon_sym___fastcall] = ACTIONS(4080), + [anon_sym___thiscall] = ACTIONS(4080), + [anon_sym___vectorcall] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4082), + [anon_sym_signed] = ACTIONS(4080), + [anon_sym_unsigned] = ACTIONS(4080), + [anon_sym_long] = ACTIONS(4080), + [anon_sym_short] = ACTIONS(4080), + [anon_sym_LBRACK] = ACTIONS(4080), + [anon_sym_static] = ACTIONS(4080), + [anon_sym_register] = ACTIONS(4080), + [anon_sym_inline] = ACTIONS(4080), + [anon_sym___inline] = ACTIONS(4080), + [anon_sym___inline__] = ACTIONS(4080), + [anon_sym___forceinline] = ACTIONS(4080), + [anon_sym_thread_local] = ACTIONS(4080), + [anon_sym___thread] = ACTIONS(4080), + [anon_sym_const] = ACTIONS(4080), + [anon_sym_constexpr] = ACTIONS(4080), + [anon_sym_volatile] = ACTIONS(4080), + [anon_sym_restrict] = ACTIONS(4080), + [anon_sym___restrict__] = ACTIONS(4080), + [anon_sym__Atomic] = ACTIONS(4080), + [anon_sym__Noreturn] = ACTIONS(4080), + [anon_sym_noreturn] = ACTIONS(4080), + [anon_sym__Nonnull] = ACTIONS(4080), + [anon_sym_mutable] = ACTIONS(4080), + [anon_sym_constinit] = ACTIONS(4080), + [anon_sym_consteval] = ACTIONS(4080), + [anon_sym_alignas] = ACTIONS(4080), + [anon_sym__Alignas] = ACTIONS(4080), + [sym_primitive_type] = ACTIONS(4080), + [anon_sym_enum] = ACTIONS(4080), + [anon_sym_class] = ACTIONS(4080), + [anon_sym_struct] = ACTIONS(4080), + [anon_sym_union] = ACTIONS(4080), + [anon_sym_if] = ACTIONS(4080), + [anon_sym_switch] = ACTIONS(4080), + [anon_sym_case] = ACTIONS(4080), + [anon_sym_default] = ACTIONS(4080), + [anon_sym_while] = ACTIONS(4080), + [anon_sym_do] = ACTIONS(4080), + [anon_sym_for] = ACTIONS(4080), + [anon_sym_return] = ACTIONS(4080), + [anon_sym_break] = ACTIONS(4080), + [anon_sym_continue] = ACTIONS(4080), + [anon_sym_goto] = ACTIONS(4080), + [anon_sym___try] = ACTIONS(4080), + [anon_sym___leave] = ACTIONS(4080), + [anon_sym_not] = ACTIONS(4080), + [anon_sym_compl] = ACTIONS(4080), + [anon_sym_DASH_DASH] = ACTIONS(4082), + [anon_sym_PLUS_PLUS] = ACTIONS(4082), + [anon_sym_sizeof] = ACTIONS(4080), + [anon_sym___alignof__] = ACTIONS(4080), + [anon_sym___alignof] = ACTIONS(4080), + [anon_sym__alignof] = ACTIONS(4080), + [anon_sym_alignof] = ACTIONS(4080), + [anon_sym__Alignof] = ACTIONS(4080), + [anon_sym_offsetof] = ACTIONS(4080), + [anon_sym__Generic] = ACTIONS(4080), + [anon_sym_typename] = ACTIONS(4080), + [anon_sym_asm] = ACTIONS(4080), + [anon_sym___asm__] = ACTIONS(4080), + [anon_sym___asm] = ACTIONS(4080), + [sym_number_literal] = ACTIONS(4082), + [anon_sym_L_SQUOTE] = ACTIONS(4082), + [anon_sym_u_SQUOTE] = ACTIONS(4082), + [anon_sym_U_SQUOTE] = ACTIONS(4082), + [anon_sym_u8_SQUOTE] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4082), + [anon_sym_L_DQUOTE] = ACTIONS(4082), + [anon_sym_u_DQUOTE] = ACTIONS(4082), + [anon_sym_U_DQUOTE] = ACTIONS(4082), + [anon_sym_u8_DQUOTE] = ACTIONS(4082), + [anon_sym_DQUOTE] = ACTIONS(4082), + [sym_true] = ACTIONS(4080), + [sym_false] = ACTIONS(4080), + [anon_sym_NULL] = ACTIONS(4080), + [anon_sym_nullptr] = ACTIONS(4080), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4080), + [anon_sym_decltype] = ACTIONS(4080), + [anon_sym_explicit] = ACTIONS(4080), + [anon_sym_export] = ACTIONS(4080), + [anon_sym_module] = ACTIONS(4080), + [anon_sym_import] = ACTIONS(4080), + [anon_sym_template] = ACTIONS(4080), + [anon_sym_operator] = ACTIONS(4080), + [anon_sym_try] = ACTIONS(4080), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_throw] = ACTIONS(4080), + [anon_sym_namespace] = ACTIONS(4080), + [anon_sym_static_assert] = ACTIONS(4080), + [anon_sym_concept] = ACTIONS(4080), + [anon_sym_co_return] = ACTIONS(4080), + [anon_sym_co_yield] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4080), + [anon_sym_new] = ACTIONS(4080), + [anon_sym_requires] = ACTIONS(4080), + [anon_sym_CARET_CARET] = ACTIONS(4082), + [anon_sym_LBRACK_COLON] = ACTIONS(4082), + [sym_this] = ACTIONS(4080), }, - [STATE(782)] = { - [sym_identifier] = ACTIONS(3998), - [aux_sym_preproc_include_token1] = ACTIONS(3998), - [aux_sym_preproc_def_token1] = ACTIONS(3998), - [aux_sym_preproc_if_token1] = ACTIONS(3998), - [aux_sym_preproc_if_token2] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), - [sym_preproc_directive] = ACTIONS(3998), - [anon_sym_LPAREN2] = ACTIONS(4000), - [anon_sym_BANG] = ACTIONS(4000), - [anon_sym_TILDE] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(3998), - [anon_sym_PLUS] = ACTIONS(3998), - [anon_sym_STAR] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym___extension__] = ACTIONS(3998), - [anon_sym_typedef] = ACTIONS(3998), - [anon_sym_virtual] = ACTIONS(3998), - [anon_sym_extern] = ACTIONS(3998), - [anon_sym___attribute__] = ACTIONS(3998), - [anon_sym___attribute] = ACTIONS(3998), - [anon_sym_using] = ACTIONS(3998), - [anon_sym_COLON_COLON] = ACTIONS(4000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), - [anon_sym___declspec] = ACTIONS(3998), - [anon_sym___based] = ACTIONS(3998), - [anon_sym___cdecl] = ACTIONS(3998), - [anon_sym___clrcall] = ACTIONS(3998), - [anon_sym___stdcall] = ACTIONS(3998), - [anon_sym___fastcall] = ACTIONS(3998), - [anon_sym___thiscall] = ACTIONS(3998), - [anon_sym___vectorcall] = ACTIONS(3998), - [anon_sym_LBRACE] = ACTIONS(4000), - [anon_sym_signed] = ACTIONS(3998), - [anon_sym_unsigned] = ACTIONS(3998), - [anon_sym_long] = ACTIONS(3998), - [anon_sym_short] = ACTIONS(3998), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_static] = ACTIONS(3998), - [anon_sym_register] = ACTIONS(3998), - [anon_sym_inline] = ACTIONS(3998), - [anon_sym___inline] = ACTIONS(3998), - [anon_sym___inline__] = ACTIONS(3998), - [anon_sym___forceinline] = ACTIONS(3998), - [anon_sym_thread_local] = ACTIONS(3998), - [anon_sym___thread] = ACTIONS(3998), - [anon_sym_const] = ACTIONS(3998), - [anon_sym_constexpr] = ACTIONS(3998), - [anon_sym_volatile] = ACTIONS(3998), - [anon_sym_restrict] = ACTIONS(3998), - [anon_sym___restrict__] = ACTIONS(3998), - [anon_sym__Atomic] = ACTIONS(3998), - [anon_sym__Noreturn] = ACTIONS(3998), - [anon_sym_noreturn] = ACTIONS(3998), - [anon_sym__Nonnull] = ACTIONS(3998), - [anon_sym_mutable] = ACTIONS(3998), - [anon_sym_constinit] = ACTIONS(3998), - [anon_sym_consteval] = ACTIONS(3998), - [anon_sym_alignas] = ACTIONS(3998), - [anon_sym__Alignas] = ACTIONS(3998), - [sym_primitive_type] = ACTIONS(3998), - [anon_sym_enum] = ACTIONS(3998), - [anon_sym_class] = ACTIONS(3998), - [anon_sym_struct] = ACTIONS(3998), - [anon_sym_union] = ACTIONS(3998), - [anon_sym_if] = ACTIONS(3998), - [anon_sym_switch] = ACTIONS(3998), - [anon_sym_case] = ACTIONS(3998), - [anon_sym_default] = ACTIONS(3998), - [anon_sym_while] = ACTIONS(3998), - [anon_sym_do] = ACTIONS(3998), - [anon_sym_for] = ACTIONS(3998), - [anon_sym_return] = ACTIONS(3998), - [anon_sym_break] = ACTIONS(3998), - [anon_sym_continue] = ACTIONS(3998), - [anon_sym_goto] = ACTIONS(3998), - [anon_sym___try] = ACTIONS(3998), - [anon_sym___leave] = ACTIONS(3998), - [anon_sym_not] = ACTIONS(3998), - [anon_sym_compl] = ACTIONS(3998), - [anon_sym_DASH_DASH] = ACTIONS(4000), - [anon_sym_PLUS_PLUS] = ACTIONS(4000), - [anon_sym_sizeof] = ACTIONS(3998), - [anon_sym___alignof__] = ACTIONS(3998), - [anon_sym___alignof] = ACTIONS(3998), - [anon_sym__alignof] = ACTIONS(3998), - [anon_sym_alignof] = ACTIONS(3998), - [anon_sym__Alignof] = ACTIONS(3998), - [anon_sym_offsetof] = ACTIONS(3998), - [anon_sym__Generic] = ACTIONS(3998), - [anon_sym_typename] = ACTIONS(3998), - [anon_sym_asm] = ACTIONS(3998), - [anon_sym___asm__] = ACTIONS(3998), - [anon_sym___asm] = ACTIONS(3998), - [sym_number_literal] = ACTIONS(4000), - [anon_sym_L_SQUOTE] = ACTIONS(4000), - [anon_sym_u_SQUOTE] = ACTIONS(4000), - [anon_sym_U_SQUOTE] = ACTIONS(4000), - [anon_sym_u8_SQUOTE] = ACTIONS(4000), - [anon_sym_SQUOTE] = 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_true] = ACTIONS(3998), - [sym_false] = ACTIONS(3998), - [anon_sym_NULL] = ACTIONS(3998), - [anon_sym_nullptr] = ACTIONS(3998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3998), - [anon_sym_decltype] = ACTIONS(3998), - [anon_sym_explicit] = ACTIONS(3998), - [anon_sym_template] = ACTIONS(3998), - [anon_sym_operator] = ACTIONS(3998), - [anon_sym_try] = ACTIONS(3998), - [anon_sym_delete] = ACTIONS(3998), - [anon_sym_throw] = ACTIONS(3998), - [anon_sym_namespace] = ACTIONS(3998), - [anon_sym_static_assert] = ACTIONS(3998), - [anon_sym_concept] = ACTIONS(3998), - [anon_sym_co_return] = ACTIONS(3998), - [anon_sym_co_yield] = ACTIONS(3998), - [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), - [anon_sym_co_await] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_requires] = ACTIONS(3998), - [anon_sym_CARET_CARET] = ACTIONS(4000), - [anon_sym_LBRACK_COLON] = ACTIONS(4000), - [sym_this] = ACTIONS(3998), + [STATE(668)] = { + [sym_identifier] = ACTIONS(4080), + [aux_sym_preproc_include_token1] = ACTIONS(4080), + [aux_sym_preproc_def_token1] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(4080), + [aux_sym_preproc_if_token2] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), + [sym_preproc_directive] = ACTIONS(4080), + [anon_sym_LPAREN2] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_TILDE] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4080), + [anon_sym_PLUS] = ACTIONS(4080), + [anon_sym_STAR] = ACTIONS(4082), + [anon_sym_AMP_AMP] = ACTIONS(4082), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_SEMI] = ACTIONS(4082), + [anon_sym___extension__] = ACTIONS(4080), + [anon_sym_typedef] = ACTIONS(4080), + [anon_sym_virtual] = ACTIONS(4080), + [anon_sym_extern] = ACTIONS(4080), + [anon_sym___attribute__] = ACTIONS(4080), + [anon_sym___attribute] = ACTIONS(4080), + [anon_sym_using] = ACTIONS(4080), + [anon_sym_COLON_COLON] = ACTIONS(4082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), + [anon_sym___declspec] = ACTIONS(4080), + [anon_sym___based] = ACTIONS(4080), + [anon_sym___cdecl] = ACTIONS(4080), + [anon_sym___clrcall] = ACTIONS(4080), + [anon_sym___stdcall] = ACTIONS(4080), + [anon_sym___fastcall] = ACTIONS(4080), + [anon_sym___thiscall] = ACTIONS(4080), + [anon_sym___vectorcall] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4082), + [anon_sym_signed] = ACTIONS(4080), + [anon_sym_unsigned] = ACTIONS(4080), + [anon_sym_long] = ACTIONS(4080), + [anon_sym_short] = ACTIONS(4080), + [anon_sym_LBRACK] = ACTIONS(4080), + [anon_sym_static] = ACTIONS(4080), + [anon_sym_register] = ACTIONS(4080), + [anon_sym_inline] = ACTIONS(4080), + [anon_sym___inline] = ACTIONS(4080), + [anon_sym___inline__] = ACTIONS(4080), + [anon_sym___forceinline] = ACTIONS(4080), + [anon_sym_thread_local] = ACTIONS(4080), + [anon_sym___thread] = ACTIONS(4080), + [anon_sym_const] = ACTIONS(4080), + [anon_sym_constexpr] = ACTIONS(4080), + [anon_sym_volatile] = ACTIONS(4080), + [anon_sym_restrict] = ACTIONS(4080), + [anon_sym___restrict__] = ACTIONS(4080), + [anon_sym__Atomic] = ACTIONS(4080), + [anon_sym__Noreturn] = ACTIONS(4080), + [anon_sym_noreturn] = ACTIONS(4080), + [anon_sym__Nonnull] = ACTIONS(4080), + [anon_sym_mutable] = ACTIONS(4080), + [anon_sym_constinit] = ACTIONS(4080), + [anon_sym_consteval] = ACTIONS(4080), + [anon_sym_alignas] = ACTIONS(4080), + [anon_sym__Alignas] = ACTIONS(4080), + [sym_primitive_type] = ACTIONS(4080), + [anon_sym_enum] = ACTIONS(4080), + [anon_sym_class] = ACTIONS(4080), + [anon_sym_struct] = ACTIONS(4080), + [anon_sym_union] = ACTIONS(4080), + [anon_sym_if] = ACTIONS(4080), + [anon_sym_switch] = ACTIONS(4080), + [anon_sym_case] = ACTIONS(4080), + [anon_sym_default] = ACTIONS(4080), + [anon_sym_while] = ACTIONS(4080), + [anon_sym_do] = ACTIONS(4080), + [anon_sym_for] = ACTIONS(4080), + [anon_sym_return] = ACTIONS(4080), + [anon_sym_break] = ACTIONS(4080), + [anon_sym_continue] = ACTIONS(4080), + [anon_sym_goto] = ACTIONS(4080), + [anon_sym___try] = ACTIONS(4080), + [anon_sym___leave] = ACTIONS(4080), + [anon_sym_not] = ACTIONS(4080), + [anon_sym_compl] = ACTIONS(4080), + [anon_sym_DASH_DASH] = ACTIONS(4082), + [anon_sym_PLUS_PLUS] = ACTIONS(4082), + [anon_sym_sizeof] = ACTIONS(4080), + [anon_sym___alignof__] = ACTIONS(4080), + [anon_sym___alignof] = ACTIONS(4080), + [anon_sym__alignof] = ACTIONS(4080), + [anon_sym_alignof] = ACTIONS(4080), + [anon_sym__Alignof] = ACTIONS(4080), + [anon_sym_offsetof] = ACTIONS(4080), + [anon_sym__Generic] = ACTIONS(4080), + [anon_sym_typename] = ACTIONS(4080), + [anon_sym_asm] = ACTIONS(4080), + [anon_sym___asm__] = ACTIONS(4080), + [anon_sym___asm] = ACTIONS(4080), + [sym_number_literal] = ACTIONS(4082), + [anon_sym_L_SQUOTE] = ACTIONS(4082), + [anon_sym_u_SQUOTE] = ACTIONS(4082), + [anon_sym_U_SQUOTE] = ACTIONS(4082), + [anon_sym_u8_SQUOTE] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4082), + [anon_sym_L_DQUOTE] = ACTIONS(4082), + [anon_sym_u_DQUOTE] = ACTIONS(4082), + [anon_sym_U_DQUOTE] = ACTIONS(4082), + [anon_sym_u8_DQUOTE] = ACTIONS(4082), + [anon_sym_DQUOTE] = ACTIONS(4082), + [sym_true] = ACTIONS(4080), + [sym_false] = ACTIONS(4080), + [anon_sym_NULL] = ACTIONS(4080), + [anon_sym_nullptr] = ACTIONS(4080), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4080), + [anon_sym_decltype] = ACTIONS(4080), + [anon_sym_explicit] = ACTIONS(4080), + [anon_sym_export] = ACTIONS(4080), + [anon_sym_module] = ACTIONS(4080), + [anon_sym_import] = ACTIONS(4080), + [anon_sym_template] = ACTIONS(4080), + [anon_sym_operator] = ACTIONS(4080), + [anon_sym_try] = ACTIONS(4080), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_throw] = ACTIONS(4080), + [anon_sym_namespace] = ACTIONS(4080), + [anon_sym_static_assert] = ACTIONS(4080), + [anon_sym_concept] = ACTIONS(4080), + [anon_sym_co_return] = ACTIONS(4080), + [anon_sym_co_yield] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4080), + [anon_sym_new] = ACTIONS(4080), + [anon_sym_requires] = ACTIONS(4080), + [anon_sym_CARET_CARET] = ACTIONS(4082), + [anon_sym_LBRACK_COLON] = ACTIONS(4082), + [sym_this] = ACTIONS(4080), }, - [STATE(783)] = { - [sym_identifier] = ACTIONS(4002), - [aux_sym_preproc_include_token1] = ACTIONS(4002), - [aux_sym_preproc_def_token1] = ACTIONS(4002), - [aux_sym_preproc_if_token1] = ACTIONS(4002), - [aux_sym_preproc_if_token2] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), - [sym_preproc_directive] = ACTIONS(4002), - [anon_sym_LPAREN2] = ACTIONS(4004), - [anon_sym_BANG] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(4004), - [anon_sym_DASH] = ACTIONS(4002), - [anon_sym_PLUS] = ACTIONS(4002), - [anon_sym_STAR] = ACTIONS(4004), - [anon_sym_AMP_AMP] = ACTIONS(4004), - [anon_sym_AMP] = ACTIONS(4002), - [anon_sym_SEMI] = ACTIONS(4004), - [anon_sym___extension__] = ACTIONS(4002), - [anon_sym_typedef] = ACTIONS(4002), - [anon_sym_virtual] = ACTIONS(4002), - [anon_sym_extern] = ACTIONS(4002), - [anon_sym___attribute__] = ACTIONS(4002), - [anon_sym___attribute] = ACTIONS(4002), - [anon_sym_using] = ACTIONS(4002), - [anon_sym_COLON_COLON] = ACTIONS(4004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), - [anon_sym___declspec] = ACTIONS(4002), - [anon_sym___based] = ACTIONS(4002), - [anon_sym___cdecl] = ACTIONS(4002), - [anon_sym___clrcall] = ACTIONS(4002), - [anon_sym___stdcall] = ACTIONS(4002), - [anon_sym___fastcall] = ACTIONS(4002), - [anon_sym___thiscall] = ACTIONS(4002), - [anon_sym___vectorcall] = ACTIONS(4002), - [anon_sym_LBRACE] = ACTIONS(4004), - [anon_sym_signed] = ACTIONS(4002), - [anon_sym_unsigned] = ACTIONS(4002), - [anon_sym_long] = ACTIONS(4002), - [anon_sym_short] = ACTIONS(4002), - [anon_sym_LBRACK] = ACTIONS(4002), - [anon_sym_static] = ACTIONS(4002), - [anon_sym_register] = ACTIONS(4002), - [anon_sym_inline] = ACTIONS(4002), - [anon_sym___inline] = ACTIONS(4002), - [anon_sym___inline__] = ACTIONS(4002), - [anon_sym___forceinline] = ACTIONS(4002), - [anon_sym_thread_local] = ACTIONS(4002), - [anon_sym___thread] = ACTIONS(4002), - [anon_sym_const] = ACTIONS(4002), - [anon_sym_constexpr] = ACTIONS(4002), - [anon_sym_volatile] = ACTIONS(4002), - [anon_sym_restrict] = ACTIONS(4002), - [anon_sym___restrict__] = ACTIONS(4002), - [anon_sym__Atomic] = ACTIONS(4002), - [anon_sym__Noreturn] = ACTIONS(4002), - [anon_sym_noreturn] = ACTIONS(4002), - [anon_sym__Nonnull] = ACTIONS(4002), - [anon_sym_mutable] = ACTIONS(4002), - [anon_sym_constinit] = ACTIONS(4002), - [anon_sym_consteval] = ACTIONS(4002), - [anon_sym_alignas] = ACTIONS(4002), - [anon_sym__Alignas] = ACTIONS(4002), - [sym_primitive_type] = ACTIONS(4002), - [anon_sym_enum] = ACTIONS(4002), - [anon_sym_class] = ACTIONS(4002), - [anon_sym_struct] = ACTIONS(4002), - [anon_sym_union] = ACTIONS(4002), - [anon_sym_if] = ACTIONS(4002), - [anon_sym_switch] = ACTIONS(4002), - [anon_sym_case] = ACTIONS(4002), - [anon_sym_default] = ACTIONS(4002), - [anon_sym_while] = ACTIONS(4002), - [anon_sym_do] = ACTIONS(4002), - [anon_sym_for] = ACTIONS(4002), - [anon_sym_return] = ACTIONS(4002), - [anon_sym_break] = ACTIONS(4002), - [anon_sym_continue] = ACTIONS(4002), - [anon_sym_goto] = ACTIONS(4002), - [anon_sym___try] = ACTIONS(4002), - [anon_sym___leave] = ACTIONS(4002), - [anon_sym_not] = ACTIONS(4002), - [anon_sym_compl] = ACTIONS(4002), - [anon_sym_DASH_DASH] = ACTIONS(4004), - [anon_sym_PLUS_PLUS] = ACTIONS(4004), - [anon_sym_sizeof] = ACTIONS(4002), - [anon_sym___alignof__] = ACTIONS(4002), - [anon_sym___alignof] = ACTIONS(4002), - [anon_sym__alignof] = ACTIONS(4002), - [anon_sym_alignof] = ACTIONS(4002), - [anon_sym__Alignof] = ACTIONS(4002), - [anon_sym_offsetof] = ACTIONS(4002), - [anon_sym__Generic] = ACTIONS(4002), - [anon_sym_typename] = ACTIONS(4002), - [anon_sym_asm] = ACTIONS(4002), - [anon_sym___asm__] = ACTIONS(4002), - [anon_sym___asm] = ACTIONS(4002), - [sym_number_literal] = ACTIONS(4004), - [anon_sym_L_SQUOTE] = ACTIONS(4004), - [anon_sym_u_SQUOTE] = ACTIONS(4004), - [anon_sym_U_SQUOTE] = ACTIONS(4004), - [anon_sym_u8_SQUOTE] = ACTIONS(4004), - [anon_sym_SQUOTE] = ACTIONS(4004), - [anon_sym_L_DQUOTE] = ACTIONS(4004), - [anon_sym_u_DQUOTE] = ACTIONS(4004), - [anon_sym_U_DQUOTE] = ACTIONS(4004), - [anon_sym_u8_DQUOTE] = ACTIONS(4004), - [anon_sym_DQUOTE] = ACTIONS(4004), - [sym_true] = ACTIONS(4002), - [sym_false] = ACTIONS(4002), - [anon_sym_NULL] = ACTIONS(4002), - [anon_sym_nullptr] = ACTIONS(4002), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4002), - [anon_sym_decltype] = ACTIONS(4002), - [anon_sym_explicit] = ACTIONS(4002), - [anon_sym_template] = ACTIONS(4002), - [anon_sym_operator] = ACTIONS(4002), - [anon_sym_try] = ACTIONS(4002), - [anon_sym_delete] = ACTIONS(4002), - [anon_sym_throw] = ACTIONS(4002), - [anon_sym_namespace] = ACTIONS(4002), - [anon_sym_static_assert] = ACTIONS(4002), - [anon_sym_concept] = ACTIONS(4002), - [anon_sym_co_return] = ACTIONS(4002), - [anon_sym_co_yield] = ACTIONS(4002), - [anon_sym_R_DQUOTE] = ACTIONS(4004), - [anon_sym_LR_DQUOTE] = ACTIONS(4004), - [anon_sym_uR_DQUOTE] = ACTIONS(4004), - [anon_sym_UR_DQUOTE] = ACTIONS(4004), - [anon_sym_u8R_DQUOTE] = ACTIONS(4004), - [anon_sym_co_await] = ACTIONS(4002), - [anon_sym_new] = ACTIONS(4002), - [anon_sym_requires] = ACTIONS(4002), - [anon_sym_CARET_CARET] = ACTIONS(4004), - [anon_sym_LBRACK_COLON] = ACTIONS(4004), - [sym_this] = ACTIONS(4002), + [STATE(669)] = { + [sym_identifier] = ACTIONS(4443), + [aux_sym_preproc_include_token1] = ACTIONS(4443), + [aux_sym_preproc_def_token1] = ACTIONS(4443), + [aux_sym_preproc_if_token1] = ACTIONS(4443), + [aux_sym_preproc_if_token2] = ACTIONS(4443), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), + [sym_preproc_directive] = ACTIONS(4443), + [anon_sym_LPAREN2] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4445), + [anon_sym_TILDE] = ACTIONS(4445), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_AMP] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym___extension__] = ACTIONS(4443), + [anon_sym_typedef] = ACTIONS(4443), + [anon_sym_virtual] = ACTIONS(4443), + [anon_sym_extern] = ACTIONS(4443), + [anon_sym___attribute__] = ACTIONS(4443), + [anon_sym___attribute] = ACTIONS(4443), + [anon_sym_using] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4445), + [anon_sym___declspec] = ACTIONS(4443), + [anon_sym___based] = ACTIONS(4443), + [anon_sym___cdecl] = ACTIONS(4443), + [anon_sym___clrcall] = ACTIONS(4443), + [anon_sym___stdcall] = ACTIONS(4443), + [anon_sym___fastcall] = ACTIONS(4443), + [anon_sym___thiscall] = ACTIONS(4443), + [anon_sym___vectorcall] = ACTIONS(4443), + [anon_sym_LBRACE] = ACTIONS(4445), + [anon_sym_signed] = ACTIONS(4443), + [anon_sym_unsigned] = ACTIONS(4443), + [anon_sym_long] = ACTIONS(4443), + [anon_sym_short] = ACTIONS(4443), + [anon_sym_LBRACK] = ACTIONS(4443), + [anon_sym_static] = ACTIONS(4443), + [anon_sym_register] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym___inline] = ACTIONS(4443), + [anon_sym___inline__] = ACTIONS(4443), + [anon_sym___forceinline] = ACTIONS(4443), + [anon_sym_thread_local] = ACTIONS(4443), + [anon_sym___thread] = ACTIONS(4443), + [anon_sym_const] = ACTIONS(4443), + [anon_sym_constexpr] = ACTIONS(4443), + [anon_sym_volatile] = ACTIONS(4443), + [anon_sym_restrict] = ACTIONS(4443), + [anon_sym___restrict__] = ACTIONS(4443), + [anon_sym__Atomic] = ACTIONS(4443), + [anon_sym__Noreturn] = ACTIONS(4443), + [anon_sym_noreturn] = ACTIONS(4443), + [anon_sym__Nonnull] = ACTIONS(4443), + [anon_sym_mutable] = ACTIONS(4443), + [anon_sym_constinit] = ACTIONS(4443), + [anon_sym_consteval] = ACTIONS(4443), + [anon_sym_alignas] = ACTIONS(4443), + [anon_sym__Alignas] = ACTIONS(4443), + [sym_primitive_type] = ACTIONS(4443), + [anon_sym_enum] = ACTIONS(4443), + [anon_sym_class] = ACTIONS(4443), + [anon_sym_struct] = ACTIONS(4443), + [anon_sym_union] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_switch] = ACTIONS(4443), + [anon_sym_case] = ACTIONS(4443), + [anon_sym_default] = ACTIONS(4443), + [anon_sym_while] = ACTIONS(4443), + [anon_sym_do] = ACTIONS(4443), + [anon_sym_for] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_goto] = ACTIONS(4443), + [anon_sym___try] = ACTIONS(4443), + [anon_sym___leave] = ACTIONS(4443), + [anon_sym_not] = ACTIONS(4443), + [anon_sym_compl] = ACTIONS(4443), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_sizeof] = ACTIONS(4443), + [anon_sym___alignof__] = ACTIONS(4443), + [anon_sym___alignof] = ACTIONS(4443), + [anon_sym__alignof] = ACTIONS(4443), + [anon_sym_alignof] = ACTIONS(4443), + [anon_sym__Alignof] = ACTIONS(4443), + [anon_sym_offsetof] = ACTIONS(4443), + [anon_sym__Generic] = ACTIONS(4443), + [anon_sym_typename] = ACTIONS(4443), + [anon_sym_asm] = ACTIONS(4443), + [anon_sym___asm__] = ACTIONS(4443), + [anon_sym___asm] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4445), + [anon_sym_L_SQUOTE] = ACTIONS(4445), + [anon_sym_u_SQUOTE] = ACTIONS(4445), + [anon_sym_U_SQUOTE] = ACTIONS(4445), + [anon_sym_u8_SQUOTE] = ACTIONS(4445), + [anon_sym_SQUOTE] = ACTIONS(4445), + [anon_sym_L_DQUOTE] = ACTIONS(4445), + [anon_sym_u_DQUOTE] = ACTIONS(4445), + [anon_sym_U_DQUOTE] = ACTIONS(4445), + [anon_sym_u8_DQUOTE] = ACTIONS(4445), + [anon_sym_DQUOTE] = ACTIONS(4445), + [sym_true] = ACTIONS(4443), + [sym_false] = ACTIONS(4443), + [anon_sym_NULL] = ACTIONS(4443), + [anon_sym_nullptr] = ACTIONS(4443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4443), + [anon_sym_decltype] = ACTIONS(4443), + [anon_sym_explicit] = ACTIONS(4443), + [anon_sym_export] = ACTIONS(4443), + [anon_sym_module] = ACTIONS(4443), + [anon_sym_import] = ACTIONS(4443), + [anon_sym_template] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_delete] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_namespace] = ACTIONS(4443), + [anon_sym_static_assert] = ACTIONS(4443), + [anon_sym_concept] = ACTIONS(4443), + [anon_sym_co_return] = ACTIONS(4443), + [anon_sym_co_yield] = ACTIONS(4443), + [anon_sym_R_DQUOTE] = ACTIONS(4445), + [anon_sym_LR_DQUOTE] = ACTIONS(4445), + [anon_sym_uR_DQUOTE] = ACTIONS(4445), + [anon_sym_UR_DQUOTE] = ACTIONS(4445), + [anon_sym_u8R_DQUOTE] = ACTIONS(4445), + [anon_sym_co_await] = ACTIONS(4443), + [anon_sym_new] = ACTIONS(4443), + [anon_sym_requires] = ACTIONS(4443), + [anon_sym_CARET_CARET] = ACTIONS(4445), + [anon_sym_LBRACK_COLON] = ACTIONS(4445), + [sym_this] = ACTIONS(4443), }, - [STATE(784)] = { - [sym_identifier] = ACTIONS(3922), - [aux_sym_preproc_include_token1] = ACTIONS(3922), - [aux_sym_preproc_def_token1] = ACTIONS(3922), - [aux_sym_preproc_if_token1] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), - [sym_preproc_directive] = ACTIONS(3922), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3924), - [anon_sym_TILDE] = ACTIONS(3924), - [anon_sym_DASH] = ACTIONS(3922), - [anon_sym_PLUS] = ACTIONS(3922), - [anon_sym_STAR] = ACTIONS(3924), - [anon_sym_AMP_AMP] = ACTIONS(3924), - [anon_sym_AMP] = ACTIONS(3922), - [anon_sym_SEMI] = ACTIONS(3924), - [anon_sym___extension__] = ACTIONS(3922), - [anon_sym_typedef] = ACTIONS(3922), - [anon_sym_virtual] = ACTIONS(3922), - [anon_sym_extern] = ACTIONS(3922), - [anon_sym___attribute__] = ACTIONS(3922), - [anon_sym___attribute] = ACTIONS(3922), - [anon_sym_using] = ACTIONS(3922), - [anon_sym_COLON_COLON] = ACTIONS(3924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), - [anon_sym___declspec] = ACTIONS(3922), - [anon_sym___based] = ACTIONS(3922), - [anon_sym___cdecl] = ACTIONS(3922), - [anon_sym___clrcall] = ACTIONS(3922), - [anon_sym___stdcall] = ACTIONS(3922), - [anon_sym___fastcall] = ACTIONS(3922), - [anon_sym___thiscall] = ACTIONS(3922), - [anon_sym___vectorcall] = ACTIONS(3922), - [anon_sym_LBRACE] = ACTIONS(3924), - [anon_sym_RBRACE] = ACTIONS(3924), - [anon_sym_signed] = ACTIONS(3922), - [anon_sym_unsigned] = ACTIONS(3922), - [anon_sym_long] = ACTIONS(3922), - [anon_sym_short] = ACTIONS(3922), - [anon_sym_LBRACK] = ACTIONS(3922), - [anon_sym_static] = ACTIONS(3922), - [anon_sym_register] = ACTIONS(3922), - [anon_sym_inline] = ACTIONS(3922), - [anon_sym___inline] = ACTIONS(3922), - [anon_sym___inline__] = ACTIONS(3922), - [anon_sym___forceinline] = ACTIONS(3922), - [anon_sym_thread_local] = ACTIONS(3922), - [anon_sym___thread] = ACTIONS(3922), - [anon_sym_const] = ACTIONS(3922), - [anon_sym_constexpr] = ACTIONS(3922), - [anon_sym_volatile] = ACTIONS(3922), - [anon_sym_restrict] = ACTIONS(3922), - [anon_sym___restrict__] = ACTIONS(3922), - [anon_sym__Atomic] = ACTIONS(3922), - [anon_sym__Noreturn] = ACTIONS(3922), - [anon_sym_noreturn] = ACTIONS(3922), - [anon_sym__Nonnull] = ACTIONS(3922), - [anon_sym_mutable] = ACTIONS(3922), - [anon_sym_constinit] = ACTIONS(3922), - [anon_sym_consteval] = ACTIONS(3922), - [anon_sym_alignas] = ACTIONS(3922), - [anon_sym__Alignas] = ACTIONS(3922), - [sym_primitive_type] = ACTIONS(3922), - [anon_sym_enum] = ACTIONS(3922), - [anon_sym_class] = ACTIONS(3922), - [anon_sym_struct] = ACTIONS(3922), - [anon_sym_union] = ACTIONS(3922), - [anon_sym_if] = ACTIONS(3922), - [anon_sym_switch] = ACTIONS(3922), - [anon_sym_case] = ACTIONS(3922), - [anon_sym_default] = ACTIONS(3922), - [anon_sym_while] = ACTIONS(3922), - [anon_sym_do] = ACTIONS(3922), - [anon_sym_for] = ACTIONS(3922), - [anon_sym_return] = ACTIONS(3922), - [anon_sym_break] = ACTIONS(3922), - [anon_sym_continue] = ACTIONS(3922), - [anon_sym_goto] = ACTIONS(3922), - [anon_sym___try] = ACTIONS(3922), - [anon_sym___leave] = ACTIONS(3922), - [anon_sym_not] = ACTIONS(3922), - [anon_sym_compl] = ACTIONS(3922), - [anon_sym_DASH_DASH] = ACTIONS(3924), - [anon_sym_PLUS_PLUS] = ACTIONS(3924), - [anon_sym_sizeof] = ACTIONS(3922), - [anon_sym___alignof__] = ACTIONS(3922), - [anon_sym___alignof] = ACTIONS(3922), - [anon_sym__alignof] = ACTIONS(3922), - [anon_sym_alignof] = ACTIONS(3922), - [anon_sym__Alignof] = ACTIONS(3922), - [anon_sym_offsetof] = ACTIONS(3922), - [anon_sym__Generic] = ACTIONS(3922), - [anon_sym_typename] = ACTIONS(3922), - [anon_sym_asm] = ACTIONS(3922), - [anon_sym___asm__] = ACTIONS(3922), - [anon_sym___asm] = ACTIONS(3922), - [sym_number_literal] = ACTIONS(3924), - [anon_sym_L_SQUOTE] = ACTIONS(3924), - [anon_sym_u_SQUOTE] = ACTIONS(3924), - [anon_sym_U_SQUOTE] = ACTIONS(3924), - [anon_sym_u8_SQUOTE] = ACTIONS(3924), - [anon_sym_SQUOTE] = ACTIONS(3924), - [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_true] = ACTIONS(3922), - [sym_false] = ACTIONS(3922), - [anon_sym_NULL] = ACTIONS(3922), - [anon_sym_nullptr] = ACTIONS(3922), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3922), - [anon_sym_decltype] = ACTIONS(3922), - [anon_sym_explicit] = ACTIONS(3922), - [anon_sym_template] = ACTIONS(3922), - [anon_sym_operator] = ACTIONS(3922), - [anon_sym_try] = ACTIONS(3922), - [anon_sym_delete] = ACTIONS(3922), - [anon_sym_throw] = ACTIONS(3922), - [anon_sym_namespace] = ACTIONS(3922), - [anon_sym_static_assert] = ACTIONS(3922), - [anon_sym_concept] = ACTIONS(3922), - [anon_sym_co_return] = ACTIONS(3922), - [anon_sym_co_yield] = ACTIONS(3922), - [anon_sym_R_DQUOTE] = ACTIONS(3924), - [anon_sym_LR_DQUOTE] = ACTIONS(3924), - [anon_sym_uR_DQUOTE] = ACTIONS(3924), - [anon_sym_UR_DQUOTE] = ACTIONS(3924), - [anon_sym_u8R_DQUOTE] = ACTIONS(3924), - [anon_sym_co_await] = ACTIONS(3922), - [anon_sym_new] = ACTIONS(3922), - [anon_sym_requires] = ACTIONS(3922), - [anon_sym_CARET_CARET] = ACTIONS(3924), - [anon_sym_LBRACK_COLON] = ACTIONS(3924), - [sym_this] = ACTIONS(3922), + [STATE(670)] = { + [sym_identifier] = ACTIONS(4116), + [aux_sym_preproc_include_token1] = ACTIONS(4116), + [aux_sym_preproc_def_token1] = ACTIONS(4116), + [aux_sym_preproc_if_token1] = ACTIONS(4116), + [aux_sym_preproc_if_token2] = ACTIONS(4116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4116), + [sym_preproc_directive] = ACTIONS(4116), + [anon_sym_LPAREN2] = ACTIONS(4118), + [anon_sym_BANG] = ACTIONS(4118), + [anon_sym_TILDE] = ACTIONS(4118), + [anon_sym_DASH] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4116), + [anon_sym_STAR] = ACTIONS(4118), + [anon_sym_AMP_AMP] = ACTIONS(4118), + [anon_sym_AMP] = ACTIONS(4116), + [anon_sym_SEMI] = ACTIONS(4118), + [anon_sym___extension__] = ACTIONS(4116), + [anon_sym_typedef] = ACTIONS(4116), + [anon_sym_virtual] = ACTIONS(4116), + [anon_sym_extern] = ACTIONS(4116), + [anon_sym___attribute__] = ACTIONS(4116), + [anon_sym___attribute] = ACTIONS(4116), + [anon_sym_using] = ACTIONS(4116), + [anon_sym_COLON_COLON] = ACTIONS(4118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4118), + [anon_sym___declspec] = ACTIONS(4116), + [anon_sym___based] = ACTIONS(4116), + [anon_sym___cdecl] = ACTIONS(4116), + [anon_sym___clrcall] = ACTIONS(4116), + [anon_sym___stdcall] = ACTIONS(4116), + [anon_sym___fastcall] = ACTIONS(4116), + [anon_sym___thiscall] = ACTIONS(4116), + [anon_sym___vectorcall] = ACTIONS(4116), + [anon_sym_LBRACE] = ACTIONS(4118), + [anon_sym_signed] = ACTIONS(4116), + [anon_sym_unsigned] = ACTIONS(4116), + [anon_sym_long] = ACTIONS(4116), + [anon_sym_short] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_static] = ACTIONS(4116), + [anon_sym_register] = ACTIONS(4116), + [anon_sym_inline] = ACTIONS(4116), + [anon_sym___inline] = ACTIONS(4116), + [anon_sym___inline__] = ACTIONS(4116), + [anon_sym___forceinline] = ACTIONS(4116), + [anon_sym_thread_local] = ACTIONS(4116), + [anon_sym___thread] = ACTIONS(4116), + [anon_sym_const] = ACTIONS(4116), + [anon_sym_constexpr] = ACTIONS(4116), + [anon_sym_volatile] = ACTIONS(4116), + [anon_sym_restrict] = ACTIONS(4116), + [anon_sym___restrict__] = ACTIONS(4116), + [anon_sym__Atomic] = ACTIONS(4116), + [anon_sym__Noreturn] = ACTIONS(4116), + [anon_sym_noreturn] = ACTIONS(4116), + [anon_sym__Nonnull] = ACTIONS(4116), + [anon_sym_mutable] = ACTIONS(4116), + [anon_sym_constinit] = ACTIONS(4116), + [anon_sym_consteval] = ACTIONS(4116), + [anon_sym_alignas] = ACTIONS(4116), + [anon_sym__Alignas] = ACTIONS(4116), + [sym_primitive_type] = ACTIONS(4116), + [anon_sym_enum] = ACTIONS(4116), + [anon_sym_class] = ACTIONS(4116), + [anon_sym_struct] = ACTIONS(4116), + [anon_sym_union] = ACTIONS(4116), + [anon_sym_if] = ACTIONS(4116), + [anon_sym_switch] = ACTIONS(4116), + [anon_sym_case] = ACTIONS(4116), + [anon_sym_default] = ACTIONS(4116), + [anon_sym_while] = ACTIONS(4116), + [anon_sym_do] = ACTIONS(4116), + [anon_sym_for] = ACTIONS(4116), + [anon_sym_return] = ACTIONS(4116), + [anon_sym_break] = ACTIONS(4116), + [anon_sym_continue] = ACTIONS(4116), + [anon_sym_goto] = ACTIONS(4116), + [anon_sym___try] = ACTIONS(4116), + [anon_sym___leave] = ACTIONS(4116), + [anon_sym_not] = ACTIONS(4116), + [anon_sym_compl] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4118), + [anon_sym_PLUS_PLUS] = ACTIONS(4118), + [anon_sym_sizeof] = ACTIONS(4116), + [anon_sym___alignof__] = ACTIONS(4116), + [anon_sym___alignof] = ACTIONS(4116), + [anon_sym__alignof] = ACTIONS(4116), + [anon_sym_alignof] = ACTIONS(4116), + [anon_sym__Alignof] = ACTIONS(4116), + [anon_sym_offsetof] = ACTIONS(4116), + [anon_sym__Generic] = ACTIONS(4116), + [anon_sym_typename] = ACTIONS(4116), + [anon_sym_asm] = ACTIONS(4116), + [anon_sym___asm__] = ACTIONS(4116), + [anon_sym___asm] = ACTIONS(4116), + [sym_number_literal] = ACTIONS(4118), + [anon_sym_L_SQUOTE] = ACTIONS(4118), + [anon_sym_u_SQUOTE] = ACTIONS(4118), + [anon_sym_U_SQUOTE] = ACTIONS(4118), + [anon_sym_u8_SQUOTE] = ACTIONS(4118), + [anon_sym_SQUOTE] = ACTIONS(4118), + [anon_sym_L_DQUOTE] = ACTIONS(4118), + [anon_sym_u_DQUOTE] = ACTIONS(4118), + [anon_sym_U_DQUOTE] = ACTIONS(4118), + [anon_sym_u8_DQUOTE] = ACTIONS(4118), + [anon_sym_DQUOTE] = ACTIONS(4118), + [sym_true] = ACTIONS(4116), + [sym_false] = ACTIONS(4116), + [anon_sym_NULL] = ACTIONS(4116), + [anon_sym_nullptr] = ACTIONS(4116), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4116), + [anon_sym_decltype] = ACTIONS(4116), + [anon_sym_explicit] = ACTIONS(4116), + [anon_sym_export] = ACTIONS(4116), + [anon_sym_module] = ACTIONS(4116), + [anon_sym_import] = ACTIONS(4116), + [anon_sym_template] = ACTIONS(4116), + [anon_sym_operator] = ACTIONS(4116), + [anon_sym_try] = ACTIONS(4116), + [anon_sym_delete] = ACTIONS(4116), + [anon_sym_throw] = ACTIONS(4116), + [anon_sym_namespace] = ACTIONS(4116), + [anon_sym_static_assert] = ACTIONS(4116), + [anon_sym_concept] = ACTIONS(4116), + [anon_sym_co_return] = ACTIONS(4116), + [anon_sym_co_yield] = ACTIONS(4116), + [anon_sym_R_DQUOTE] = ACTIONS(4118), + [anon_sym_LR_DQUOTE] = ACTIONS(4118), + [anon_sym_uR_DQUOTE] = ACTIONS(4118), + [anon_sym_UR_DQUOTE] = ACTIONS(4118), + [anon_sym_u8R_DQUOTE] = ACTIONS(4118), + [anon_sym_co_await] = ACTIONS(4116), + [anon_sym_new] = ACTIONS(4116), + [anon_sym_requires] = ACTIONS(4116), + [anon_sym_CARET_CARET] = ACTIONS(4118), + [anon_sym_LBRACK_COLON] = ACTIONS(4118), + [sym_this] = ACTIONS(4116), }, - [STATE(785)] = { - [sym_identifier] = ACTIONS(3922), - [aux_sym_preproc_include_token1] = ACTIONS(3922), - [aux_sym_preproc_def_token1] = ACTIONS(3922), - [aux_sym_preproc_if_token1] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), - [sym_preproc_directive] = ACTIONS(3922), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3924), - [anon_sym_TILDE] = ACTIONS(3924), - [anon_sym_DASH] = ACTIONS(3922), - [anon_sym_PLUS] = ACTIONS(3922), - [anon_sym_STAR] = ACTIONS(3924), - [anon_sym_AMP_AMP] = ACTIONS(3924), - [anon_sym_AMP] = ACTIONS(3922), - [anon_sym_SEMI] = ACTIONS(3924), - [anon_sym___extension__] = ACTIONS(3922), - [anon_sym_typedef] = ACTIONS(3922), - [anon_sym_virtual] = ACTIONS(3922), - [anon_sym_extern] = ACTIONS(3922), - [anon_sym___attribute__] = ACTIONS(3922), - [anon_sym___attribute] = ACTIONS(3922), - [anon_sym_using] = ACTIONS(3922), - [anon_sym_COLON_COLON] = ACTIONS(3924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), - [anon_sym___declspec] = ACTIONS(3922), - [anon_sym___based] = ACTIONS(3922), - [anon_sym___cdecl] = ACTIONS(3922), - [anon_sym___clrcall] = ACTIONS(3922), - [anon_sym___stdcall] = ACTIONS(3922), - [anon_sym___fastcall] = ACTIONS(3922), - [anon_sym___thiscall] = ACTIONS(3922), - [anon_sym___vectorcall] = ACTIONS(3922), - [anon_sym_LBRACE] = ACTIONS(3924), - [anon_sym_RBRACE] = ACTIONS(3924), - [anon_sym_signed] = ACTIONS(3922), - [anon_sym_unsigned] = ACTIONS(3922), - [anon_sym_long] = ACTIONS(3922), - [anon_sym_short] = ACTIONS(3922), - [anon_sym_LBRACK] = ACTIONS(3922), - [anon_sym_static] = ACTIONS(3922), - [anon_sym_register] = ACTIONS(3922), - [anon_sym_inline] = ACTIONS(3922), - [anon_sym___inline] = ACTIONS(3922), - [anon_sym___inline__] = ACTIONS(3922), - [anon_sym___forceinline] = ACTIONS(3922), - [anon_sym_thread_local] = ACTIONS(3922), - [anon_sym___thread] = ACTIONS(3922), - [anon_sym_const] = ACTIONS(3922), - [anon_sym_constexpr] = ACTIONS(3922), - [anon_sym_volatile] = ACTIONS(3922), - [anon_sym_restrict] = ACTIONS(3922), - [anon_sym___restrict__] = ACTIONS(3922), - [anon_sym__Atomic] = ACTIONS(3922), - [anon_sym__Noreturn] = ACTIONS(3922), - [anon_sym_noreturn] = ACTIONS(3922), - [anon_sym__Nonnull] = ACTIONS(3922), - [anon_sym_mutable] = ACTIONS(3922), - [anon_sym_constinit] = ACTIONS(3922), - [anon_sym_consteval] = ACTIONS(3922), - [anon_sym_alignas] = ACTIONS(3922), - [anon_sym__Alignas] = ACTIONS(3922), - [sym_primitive_type] = ACTIONS(3922), - [anon_sym_enum] = ACTIONS(3922), - [anon_sym_class] = ACTIONS(3922), - [anon_sym_struct] = ACTIONS(3922), - [anon_sym_union] = ACTIONS(3922), - [anon_sym_if] = ACTIONS(3922), - [anon_sym_switch] = ACTIONS(3922), - [anon_sym_case] = ACTIONS(3922), - [anon_sym_default] = ACTIONS(3922), - [anon_sym_while] = ACTIONS(3922), - [anon_sym_do] = ACTIONS(3922), - [anon_sym_for] = ACTIONS(3922), - [anon_sym_return] = ACTIONS(3922), - [anon_sym_break] = ACTIONS(3922), - [anon_sym_continue] = ACTIONS(3922), - [anon_sym_goto] = ACTIONS(3922), - [anon_sym___try] = ACTIONS(3922), - [anon_sym___leave] = ACTIONS(3922), - [anon_sym_not] = ACTIONS(3922), - [anon_sym_compl] = ACTIONS(3922), - [anon_sym_DASH_DASH] = ACTIONS(3924), - [anon_sym_PLUS_PLUS] = ACTIONS(3924), - [anon_sym_sizeof] = ACTIONS(3922), - [anon_sym___alignof__] = ACTIONS(3922), - [anon_sym___alignof] = ACTIONS(3922), - [anon_sym__alignof] = ACTIONS(3922), - [anon_sym_alignof] = ACTIONS(3922), - [anon_sym__Alignof] = ACTIONS(3922), - [anon_sym_offsetof] = ACTIONS(3922), - [anon_sym__Generic] = ACTIONS(3922), - [anon_sym_typename] = ACTIONS(3922), - [anon_sym_asm] = ACTIONS(3922), - [anon_sym___asm__] = ACTIONS(3922), - [anon_sym___asm] = ACTIONS(3922), - [sym_number_literal] = ACTIONS(3924), - [anon_sym_L_SQUOTE] = ACTIONS(3924), - [anon_sym_u_SQUOTE] = ACTIONS(3924), - [anon_sym_U_SQUOTE] = ACTIONS(3924), - [anon_sym_u8_SQUOTE] = ACTIONS(3924), - [anon_sym_SQUOTE] = ACTIONS(3924), - [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_true] = ACTIONS(3922), - [sym_false] = ACTIONS(3922), - [anon_sym_NULL] = ACTIONS(3922), - [anon_sym_nullptr] = ACTIONS(3922), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3922), - [anon_sym_decltype] = ACTIONS(3922), - [anon_sym_explicit] = ACTIONS(3922), - [anon_sym_template] = ACTIONS(3922), - [anon_sym_operator] = ACTIONS(3922), - [anon_sym_try] = ACTIONS(3922), - [anon_sym_delete] = ACTIONS(3922), - [anon_sym_throw] = ACTIONS(3922), - [anon_sym_namespace] = ACTIONS(3922), - [anon_sym_static_assert] = ACTIONS(3922), - [anon_sym_concept] = ACTIONS(3922), - [anon_sym_co_return] = ACTIONS(3922), - [anon_sym_co_yield] = ACTIONS(3922), - [anon_sym_R_DQUOTE] = ACTIONS(3924), - [anon_sym_LR_DQUOTE] = ACTIONS(3924), - [anon_sym_uR_DQUOTE] = ACTIONS(3924), - [anon_sym_UR_DQUOTE] = ACTIONS(3924), - [anon_sym_u8R_DQUOTE] = ACTIONS(3924), - [anon_sym_co_await] = ACTIONS(3922), - [anon_sym_new] = ACTIONS(3922), - [anon_sym_requires] = ACTIONS(3922), - [anon_sym_CARET_CARET] = ACTIONS(3924), - [anon_sym_LBRACK_COLON] = ACTIONS(3924), - [sym_this] = ACTIONS(3922), + [STATE(671)] = { + [sym_identifier] = ACTIONS(4120), + [aux_sym_preproc_include_token1] = ACTIONS(4120), + [aux_sym_preproc_def_token1] = ACTIONS(4120), + [aux_sym_preproc_if_token1] = ACTIONS(4120), + [aux_sym_preproc_if_token2] = ACTIONS(4120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4120), + [sym_preproc_directive] = ACTIONS(4120), + [anon_sym_LPAREN2] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4122), + [anon_sym_TILDE] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_AMP] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym___extension__] = ACTIONS(4120), + [anon_sym_typedef] = ACTIONS(4120), + [anon_sym_virtual] = ACTIONS(4120), + [anon_sym_extern] = ACTIONS(4120), + [anon_sym___attribute__] = ACTIONS(4120), + [anon_sym___attribute] = ACTIONS(4120), + [anon_sym_using] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4122), + [anon_sym___declspec] = ACTIONS(4120), + [anon_sym___based] = ACTIONS(4120), + [anon_sym___cdecl] = ACTIONS(4120), + [anon_sym___clrcall] = ACTIONS(4120), + [anon_sym___stdcall] = ACTIONS(4120), + [anon_sym___fastcall] = ACTIONS(4120), + [anon_sym___thiscall] = ACTIONS(4120), + [anon_sym___vectorcall] = ACTIONS(4120), + [anon_sym_LBRACE] = ACTIONS(4122), + [anon_sym_signed] = ACTIONS(4120), + [anon_sym_unsigned] = ACTIONS(4120), + [anon_sym_long] = ACTIONS(4120), + [anon_sym_short] = ACTIONS(4120), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_static] = ACTIONS(4120), + [anon_sym_register] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym___inline] = ACTIONS(4120), + [anon_sym___inline__] = ACTIONS(4120), + [anon_sym___forceinline] = ACTIONS(4120), + [anon_sym_thread_local] = ACTIONS(4120), + [anon_sym___thread] = ACTIONS(4120), + [anon_sym_const] = ACTIONS(4120), + [anon_sym_constexpr] = ACTIONS(4120), + [anon_sym_volatile] = ACTIONS(4120), + [anon_sym_restrict] = ACTIONS(4120), + [anon_sym___restrict__] = ACTIONS(4120), + [anon_sym__Atomic] = ACTIONS(4120), + [anon_sym__Noreturn] = ACTIONS(4120), + [anon_sym_noreturn] = ACTIONS(4120), + [anon_sym__Nonnull] = ACTIONS(4120), + [anon_sym_mutable] = ACTIONS(4120), + [anon_sym_constinit] = ACTIONS(4120), + [anon_sym_consteval] = ACTIONS(4120), + [anon_sym_alignas] = ACTIONS(4120), + [anon_sym__Alignas] = ACTIONS(4120), + [sym_primitive_type] = ACTIONS(4120), + [anon_sym_enum] = ACTIONS(4120), + [anon_sym_class] = ACTIONS(4120), + [anon_sym_struct] = ACTIONS(4120), + [anon_sym_union] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_switch] = ACTIONS(4120), + [anon_sym_case] = ACTIONS(4120), + [anon_sym_default] = ACTIONS(4120), + [anon_sym_while] = ACTIONS(4120), + [anon_sym_do] = ACTIONS(4120), + [anon_sym_for] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_goto] = ACTIONS(4120), + [anon_sym___try] = ACTIONS(4120), + [anon_sym___leave] = ACTIONS(4120), + [anon_sym_not] = ACTIONS(4120), + [anon_sym_compl] = ACTIONS(4120), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_sizeof] = ACTIONS(4120), + [anon_sym___alignof__] = ACTIONS(4120), + [anon_sym___alignof] = ACTIONS(4120), + [anon_sym__alignof] = ACTIONS(4120), + [anon_sym_alignof] = ACTIONS(4120), + [anon_sym__Alignof] = ACTIONS(4120), + [anon_sym_offsetof] = ACTIONS(4120), + [anon_sym__Generic] = ACTIONS(4120), + [anon_sym_typename] = ACTIONS(4120), + [anon_sym_asm] = ACTIONS(4120), + [anon_sym___asm__] = ACTIONS(4120), + [anon_sym___asm] = ACTIONS(4120), + [sym_number_literal] = ACTIONS(4122), + [anon_sym_L_SQUOTE] = ACTIONS(4122), + [anon_sym_u_SQUOTE] = ACTIONS(4122), + [anon_sym_U_SQUOTE] = ACTIONS(4122), + [anon_sym_u8_SQUOTE] = ACTIONS(4122), + [anon_sym_SQUOTE] = ACTIONS(4122), + [anon_sym_L_DQUOTE] = ACTIONS(4122), + [anon_sym_u_DQUOTE] = ACTIONS(4122), + [anon_sym_U_DQUOTE] = ACTIONS(4122), + [anon_sym_u8_DQUOTE] = ACTIONS(4122), + [anon_sym_DQUOTE] = ACTIONS(4122), + [sym_true] = ACTIONS(4120), + [sym_false] = ACTIONS(4120), + [anon_sym_NULL] = ACTIONS(4120), + [anon_sym_nullptr] = ACTIONS(4120), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4120), + [anon_sym_decltype] = ACTIONS(4120), + [anon_sym_explicit] = ACTIONS(4120), + [anon_sym_export] = ACTIONS(4120), + [anon_sym_module] = ACTIONS(4120), + [anon_sym_import] = ACTIONS(4120), + [anon_sym_template] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_delete] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_namespace] = ACTIONS(4120), + [anon_sym_static_assert] = ACTIONS(4120), + [anon_sym_concept] = ACTIONS(4120), + [anon_sym_co_return] = ACTIONS(4120), + [anon_sym_co_yield] = ACTIONS(4120), + [anon_sym_R_DQUOTE] = ACTIONS(4122), + [anon_sym_LR_DQUOTE] = ACTIONS(4122), + [anon_sym_uR_DQUOTE] = ACTIONS(4122), + [anon_sym_UR_DQUOTE] = ACTIONS(4122), + [anon_sym_u8R_DQUOTE] = ACTIONS(4122), + [anon_sym_co_await] = ACTIONS(4120), + [anon_sym_new] = ACTIONS(4120), + [anon_sym_requires] = ACTIONS(4120), + [anon_sym_CARET_CARET] = ACTIONS(4122), + [anon_sym_LBRACK_COLON] = ACTIONS(4122), + [sym_this] = ACTIONS(4120), }, - [STATE(786)] = { - [sym_identifier] = ACTIONS(4054), - [aux_sym_preproc_include_token1] = ACTIONS(4054), - [aux_sym_preproc_def_token1] = ACTIONS(4054), - [aux_sym_preproc_if_token1] = ACTIONS(4054), - [aux_sym_preproc_if_token2] = ACTIONS(4054), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4054), - [sym_preproc_directive] = ACTIONS(4054), - [anon_sym_LPAREN2] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_TILDE] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4054), - [anon_sym_PLUS] = ACTIONS(4054), - [anon_sym_STAR] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4054), - [anon_sym_SEMI] = ACTIONS(4056), - [anon_sym___extension__] = ACTIONS(4054), - [anon_sym_typedef] = ACTIONS(4054), - [anon_sym_virtual] = ACTIONS(4054), - [anon_sym_extern] = ACTIONS(4054), - [anon_sym___attribute__] = ACTIONS(4054), - [anon_sym___attribute] = ACTIONS(4054), - [anon_sym_using] = ACTIONS(4054), - [anon_sym_COLON_COLON] = ACTIONS(4056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4056), - [anon_sym___declspec] = ACTIONS(4054), - [anon_sym___based] = ACTIONS(4054), - [anon_sym___cdecl] = ACTIONS(4054), - [anon_sym___clrcall] = ACTIONS(4054), - [anon_sym___stdcall] = ACTIONS(4054), - [anon_sym___fastcall] = ACTIONS(4054), - [anon_sym___thiscall] = ACTIONS(4054), - [anon_sym___vectorcall] = ACTIONS(4054), - [anon_sym_LBRACE] = ACTIONS(4056), - [anon_sym_signed] = ACTIONS(4054), - [anon_sym_unsigned] = ACTIONS(4054), - [anon_sym_long] = ACTIONS(4054), - [anon_sym_short] = ACTIONS(4054), - [anon_sym_LBRACK] = ACTIONS(4054), - [anon_sym_static] = ACTIONS(4054), - [anon_sym_register] = ACTIONS(4054), - [anon_sym_inline] = ACTIONS(4054), - [anon_sym___inline] = ACTIONS(4054), - [anon_sym___inline__] = ACTIONS(4054), - [anon_sym___forceinline] = ACTIONS(4054), - [anon_sym_thread_local] = ACTIONS(4054), - [anon_sym___thread] = ACTIONS(4054), - [anon_sym_const] = ACTIONS(4054), - [anon_sym_constexpr] = ACTIONS(4054), - [anon_sym_volatile] = ACTIONS(4054), - [anon_sym_restrict] = ACTIONS(4054), - [anon_sym___restrict__] = ACTIONS(4054), - [anon_sym__Atomic] = ACTIONS(4054), - [anon_sym__Noreturn] = ACTIONS(4054), - [anon_sym_noreturn] = ACTIONS(4054), - [anon_sym__Nonnull] = ACTIONS(4054), - [anon_sym_mutable] = ACTIONS(4054), - [anon_sym_constinit] = ACTIONS(4054), - [anon_sym_consteval] = ACTIONS(4054), - [anon_sym_alignas] = ACTIONS(4054), - [anon_sym__Alignas] = ACTIONS(4054), - [sym_primitive_type] = ACTIONS(4054), - [anon_sym_enum] = ACTIONS(4054), - [anon_sym_class] = ACTIONS(4054), - [anon_sym_struct] = ACTIONS(4054), - [anon_sym_union] = ACTIONS(4054), - [anon_sym_if] = ACTIONS(4054), - [anon_sym_switch] = ACTIONS(4054), - [anon_sym_case] = ACTIONS(4054), - [anon_sym_default] = ACTIONS(4054), - [anon_sym_while] = ACTIONS(4054), - [anon_sym_do] = ACTIONS(4054), - [anon_sym_for] = ACTIONS(4054), - [anon_sym_return] = ACTIONS(4054), - [anon_sym_break] = ACTIONS(4054), - [anon_sym_continue] = ACTIONS(4054), - [anon_sym_goto] = ACTIONS(4054), - [anon_sym___try] = ACTIONS(4054), - [anon_sym___leave] = ACTIONS(4054), - [anon_sym_not] = ACTIONS(4054), - [anon_sym_compl] = ACTIONS(4054), - [anon_sym_DASH_DASH] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4056), - [anon_sym_sizeof] = ACTIONS(4054), - [anon_sym___alignof__] = ACTIONS(4054), - [anon_sym___alignof] = ACTIONS(4054), - [anon_sym__alignof] = ACTIONS(4054), - [anon_sym_alignof] = ACTIONS(4054), - [anon_sym__Alignof] = ACTIONS(4054), - [anon_sym_offsetof] = ACTIONS(4054), - [anon_sym__Generic] = ACTIONS(4054), - [anon_sym_typename] = ACTIONS(4054), - [anon_sym_asm] = ACTIONS(4054), - [anon_sym___asm__] = ACTIONS(4054), - [anon_sym___asm] = ACTIONS(4054), - [sym_number_literal] = ACTIONS(4056), - [anon_sym_L_SQUOTE] = ACTIONS(4056), - [anon_sym_u_SQUOTE] = ACTIONS(4056), - [anon_sym_U_SQUOTE] = ACTIONS(4056), - [anon_sym_u8_SQUOTE] = ACTIONS(4056), - [anon_sym_SQUOTE] = ACTIONS(4056), - [anon_sym_L_DQUOTE] = ACTIONS(4056), - [anon_sym_u_DQUOTE] = ACTIONS(4056), - [anon_sym_U_DQUOTE] = ACTIONS(4056), - [anon_sym_u8_DQUOTE] = ACTIONS(4056), - [anon_sym_DQUOTE] = ACTIONS(4056), - [sym_true] = ACTIONS(4054), - [sym_false] = ACTIONS(4054), - [anon_sym_NULL] = ACTIONS(4054), - [anon_sym_nullptr] = ACTIONS(4054), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4054), - [anon_sym_decltype] = ACTIONS(4054), - [anon_sym_explicit] = ACTIONS(4054), - [anon_sym_template] = ACTIONS(4054), - [anon_sym_operator] = ACTIONS(4054), - [anon_sym_try] = ACTIONS(4054), - [anon_sym_delete] = ACTIONS(4054), - [anon_sym_throw] = ACTIONS(4054), - [anon_sym_namespace] = ACTIONS(4054), - [anon_sym_static_assert] = ACTIONS(4054), - [anon_sym_concept] = ACTIONS(4054), - [anon_sym_co_return] = ACTIONS(4054), - [anon_sym_co_yield] = ACTIONS(4054), - [anon_sym_R_DQUOTE] = ACTIONS(4056), - [anon_sym_LR_DQUOTE] = ACTIONS(4056), - [anon_sym_uR_DQUOTE] = ACTIONS(4056), - [anon_sym_UR_DQUOTE] = ACTIONS(4056), - [anon_sym_u8R_DQUOTE] = ACTIONS(4056), - [anon_sym_co_await] = ACTIONS(4054), - [anon_sym_new] = ACTIONS(4054), - [anon_sym_requires] = ACTIONS(4054), - [anon_sym_CARET_CARET] = ACTIONS(4056), - [anon_sym_LBRACK_COLON] = ACTIONS(4056), - [sym_this] = ACTIONS(4054), + [STATE(672)] = { + [sym_identifier] = ACTIONS(4124), + [aux_sym_preproc_include_token1] = ACTIONS(4124), + [aux_sym_preproc_def_token1] = ACTIONS(4124), + [aux_sym_preproc_if_token1] = ACTIONS(4124), + [aux_sym_preproc_if_token2] = ACTIONS(4124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4124), + [sym_preproc_directive] = ACTIONS(4124), + [anon_sym_LPAREN2] = ACTIONS(4126), + [anon_sym_BANG] = ACTIONS(4126), + [anon_sym_TILDE] = ACTIONS(4126), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_PLUS] = ACTIONS(4124), + [anon_sym_STAR] = ACTIONS(4126), + [anon_sym_AMP_AMP] = ACTIONS(4126), + [anon_sym_AMP] = ACTIONS(4124), + [anon_sym_SEMI] = ACTIONS(4126), + [anon_sym___extension__] = ACTIONS(4124), + [anon_sym_typedef] = ACTIONS(4124), + [anon_sym_virtual] = ACTIONS(4124), + [anon_sym_extern] = ACTIONS(4124), + [anon_sym___attribute__] = ACTIONS(4124), + [anon_sym___attribute] = ACTIONS(4124), + [anon_sym_using] = ACTIONS(4124), + [anon_sym_COLON_COLON] = ACTIONS(4126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4126), + [anon_sym___declspec] = ACTIONS(4124), + [anon_sym___based] = ACTIONS(4124), + [anon_sym___cdecl] = ACTIONS(4124), + [anon_sym___clrcall] = ACTIONS(4124), + [anon_sym___stdcall] = ACTIONS(4124), + [anon_sym___fastcall] = ACTIONS(4124), + [anon_sym___thiscall] = ACTIONS(4124), + [anon_sym___vectorcall] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [anon_sym_signed] = ACTIONS(4124), + [anon_sym_unsigned] = ACTIONS(4124), + [anon_sym_long] = ACTIONS(4124), + [anon_sym_short] = ACTIONS(4124), + [anon_sym_LBRACK] = ACTIONS(4124), + [anon_sym_static] = ACTIONS(4124), + [anon_sym_register] = ACTIONS(4124), + [anon_sym_inline] = ACTIONS(4124), + [anon_sym___inline] = ACTIONS(4124), + [anon_sym___inline__] = ACTIONS(4124), + [anon_sym___forceinline] = ACTIONS(4124), + [anon_sym_thread_local] = ACTIONS(4124), + [anon_sym___thread] = ACTIONS(4124), + [anon_sym_const] = ACTIONS(4124), + [anon_sym_constexpr] = ACTIONS(4124), + [anon_sym_volatile] = ACTIONS(4124), + [anon_sym_restrict] = ACTIONS(4124), + [anon_sym___restrict__] = ACTIONS(4124), + [anon_sym__Atomic] = ACTIONS(4124), + [anon_sym__Noreturn] = ACTIONS(4124), + [anon_sym_noreturn] = ACTIONS(4124), + [anon_sym__Nonnull] = ACTIONS(4124), + [anon_sym_mutable] = ACTIONS(4124), + [anon_sym_constinit] = ACTIONS(4124), + [anon_sym_consteval] = ACTIONS(4124), + [anon_sym_alignas] = ACTIONS(4124), + [anon_sym__Alignas] = ACTIONS(4124), + [sym_primitive_type] = ACTIONS(4124), + [anon_sym_enum] = ACTIONS(4124), + [anon_sym_class] = ACTIONS(4124), + [anon_sym_struct] = ACTIONS(4124), + [anon_sym_union] = ACTIONS(4124), + [anon_sym_if] = ACTIONS(4124), + [anon_sym_switch] = ACTIONS(4124), + [anon_sym_case] = ACTIONS(4124), + [anon_sym_default] = ACTIONS(4124), + [anon_sym_while] = ACTIONS(4124), + [anon_sym_do] = ACTIONS(4124), + [anon_sym_for] = ACTIONS(4124), + [anon_sym_return] = ACTIONS(4124), + [anon_sym_break] = ACTIONS(4124), + [anon_sym_continue] = ACTIONS(4124), + [anon_sym_goto] = ACTIONS(4124), + [anon_sym___try] = ACTIONS(4124), + [anon_sym___leave] = ACTIONS(4124), + [anon_sym_not] = ACTIONS(4124), + [anon_sym_compl] = ACTIONS(4124), + [anon_sym_DASH_DASH] = ACTIONS(4126), + [anon_sym_PLUS_PLUS] = ACTIONS(4126), + [anon_sym_sizeof] = ACTIONS(4124), + [anon_sym___alignof__] = ACTIONS(4124), + [anon_sym___alignof] = ACTIONS(4124), + [anon_sym__alignof] = ACTIONS(4124), + [anon_sym_alignof] = ACTIONS(4124), + [anon_sym__Alignof] = ACTIONS(4124), + [anon_sym_offsetof] = ACTIONS(4124), + [anon_sym__Generic] = ACTIONS(4124), + [anon_sym_typename] = ACTIONS(4124), + [anon_sym_asm] = ACTIONS(4124), + [anon_sym___asm__] = ACTIONS(4124), + [anon_sym___asm] = ACTIONS(4124), + [sym_number_literal] = ACTIONS(4126), + [anon_sym_L_SQUOTE] = ACTIONS(4126), + [anon_sym_u_SQUOTE] = ACTIONS(4126), + [anon_sym_U_SQUOTE] = ACTIONS(4126), + [anon_sym_u8_SQUOTE] = ACTIONS(4126), + [anon_sym_SQUOTE] = ACTIONS(4126), + [anon_sym_L_DQUOTE] = ACTIONS(4126), + [anon_sym_u_DQUOTE] = ACTIONS(4126), + [anon_sym_U_DQUOTE] = ACTIONS(4126), + [anon_sym_u8_DQUOTE] = ACTIONS(4126), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym_true] = ACTIONS(4124), + [sym_false] = ACTIONS(4124), + [anon_sym_NULL] = ACTIONS(4124), + [anon_sym_nullptr] = ACTIONS(4124), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4124), + [anon_sym_decltype] = ACTIONS(4124), + [anon_sym_explicit] = ACTIONS(4124), + [anon_sym_export] = ACTIONS(4124), + [anon_sym_module] = ACTIONS(4124), + [anon_sym_import] = ACTIONS(4124), + [anon_sym_template] = ACTIONS(4124), + [anon_sym_operator] = ACTIONS(4124), + [anon_sym_try] = ACTIONS(4124), + [anon_sym_delete] = ACTIONS(4124), + [anon_sym_throw] = ACTIONS(4124), + [anon_sym_namespace] = ACTIONS(4124), + [anon_sym_static_assert] = ACTIONS(4124), + [anon_sym_concept] = ACTIONS(4124), + [anon_sym_co_return] = ACTIONS(4124), + [anon_sym_co_yield] = ACTIONS(4124), + [anon_sym_R_DQUOTE] = ACTIONS(4126), + [anon_sym_LR_DQUOTE] = ACTIONS(4126), + [anon_sym_uR_DQUOTE] = ACTIONS(4126), + [anon_sym_UR_DQUOTE] = ACTIONS(4126), + [anon_sym_u8R_DQUOTE] = ACTIONS(4126), + [anon_sym_co_await] = ACTIONS(4124), + [anon_sym_new] = ACTIONS(4124), + [anon_sym_requires] = ACTIONS(4124), + [anon_sym_CARET_CARET] = ACTIONS(4126), + [anon_sym_LBRACK_COLON] = ACTIONS(4126), + [sym_this] = ACTIONS(4124), }, - [STATE(787)] = { - [sym_identifier] = ACTIONS(4058), - [aux_sym_preproc_include_token1] = ACTIONS(4058), - [aux_sym_preproc_def_token1] = ACTIONS(4058), - [aux_sym_preproc_if_token1] = ACTIONS(4058), - [aux_sym_preproc_if_token2] = ACTIONS(4058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4058), - [sym_preproc_directive] = ACTIONS(4058), - [anon_sym_LPAREN2] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(4060), - [anon_sym_TILDE] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4058), - [anon_sym_STAR] = ACTIONS(4060), - [anon_sym_AMP_AMP] = ACTIONS(4060), - [anon_sym_AMP] = ACTIONS(4058), - [anon_sym_SEMI] = ACTIONS(4060), - [anon_sym___extension__] = ACTIONS(4058), - [anon_sym_typedef] = ACTIONS(4058), - [anon_sym_virtual] = ACTIONS(4058), - [anon_sym_extern] = ACTIONS(4058), - [anon_sym___attribute__] = ACTIONS(4058), - [anon_sym___attribute] = ACTIONS(4058), - [anon_sym_using] = ACTIONS(4058), - [anon_sym_COLON_COLON] = ACTIONS(4060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4060), - [anon_sym___declspec] = ACTIONS(4058), - [anon_sym___based] = ACTIONS(4058), - [anon_sym___cdecl] = ACTIONS(4058), - [anon_sym___clrcall] = ACTIONS(4058), - [anon_sym___stdcall] = ACTIONS(4058), - [anon_sym___fastcall] = ACTIONS(4058), - [anon_sym___thiscall] = ACTIONS(4058), - [anon_sym___vectorcall] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4060), - [anon_sym_signed] = ACTIONS(4058), - [anon_sym_unsigned] = ACTIONS(4058), - [anon_sym_long] = ACTIONS(4058), - [anon_sym_short] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4058), - [anon_sym_static] = ACTIONS(4058), - [anon_sym_register] = ACTIONS(4058), - [anon_sym_inline] = ACTIONS(4058), - [anon_sym___inline] = ACTIONS(4058), - [anon_sym___inline__] = ACTIONS(4058), - [anon_sym___forceinline] = ACTIONS(4058), - [anon_sym_thread_local] = ACTIONS(4058), - [anon_sym___thread] = ACTIONS(4058), - [anon_sym_const] = ACTIONS(4058), - [anon_sym_constexpr] = ACTIONS(4058), - [anon_sym_volatile] = ACTIONS(4058), - [anon_sym_restrict] = ACTIONS(4058), - [anon_sym___restrict__] = ACTIONS(4058), - [anon_sym__Atomic] = ACTIONS(4058), - [anon_sym__Noreturn] = ACTIONS(4058), - [anon_sym_noreturn] = ACTIONS(4058), - [anon_sym__Nonnull] = ACTIONS(4058), - [anon_sym_mutable] = ACTIONS(4058), - [anon_sym_constinit] = ACTIONS(4058), - [anon_sym_consteval] = ACTIONS(4058), - [anon_sym_alignas] = ACTIONS(4058), - [anon_sym__Alignas] = ACTIONS(4058), - [sym_primitive_type] = ACTIONS(4058), - [anon_sym_enum] = ACTIONS(4058), - [anon_sym_class] = ACTIONS(4058), - [anon_sym_struct] = ACTIONS(4058), - [anon_sym_union] = ACTIONS(4058), - [anon_sym_if] = ACTIONS(4058), - [anon_sym_switch] = ACTIONS(4058), - [anon_sym_case] = ACTIONS(4058), - [anon_sym_default] = ACTIONS(4058), - [anon_sym_while] = ACTIONS(4058), - [anon_sym_do] = ACTIONS(4058), - [anon_sym_for] = ACTIONS(4058), - [anon_sym_return] = ACTIONS(4058), - [anon_sym_break] = ACTIONS(4058), - [anon_sym_continue] = ACTIONS(4058), - [anon_sym_goto] = ACTIONS(4058), - [anon_sym___try] = ACTIONS(4058), - [anon_sym___leave] = ACTIONS(4058), - [anon_sym_not] = ACTIONS(4058), - [anon_sym_compl] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4060), - [anon_sym_PLUS_PLUS] = ACTIONS(4060), - [anon_sym_sizeof] = ACTIONS(4058), - [anon_sym___alignof__] = ACTIONS(4058), - [anon_sym___alignof] = ACTIONS(4058), - [anon_sym__alignof] = ACTIONS(4058), - [anon_sym_alignof] = ACTIONS(4058), - [anon_sym__Alignof] = ACTIONS(4058), - [anon_sym_offsetof] = ACTIONS(4058), - [anon_sym__Generic] = ACTIONS(4058), - [anon_sym_typename] = ACTIONS(4058), - [anon_sym_asm] = ACTIONS(4058), - [anon_sym___asm__] = ACTIONS(4058), - [anon_sym___asm] = ACTIONS(4058), - [sym_number_literal] = ACTIONS(4060), - [anon_sym_L_SQUOTE] = ACTIONS(4060), - [anon_sym_u_SQUOTE] = ACTIONS(4060), - [anon_sym_U_SQUOTE] = ACTIONS(4060), - [anon_sym_u8_SQUOTE] = ACTIONS(4060), - [anon_sym_SQUOTE] = ACTIONS(4060), - [anon_sym_L_DQUOTE] = ACTIONS(4060), - [anon_sym_u_DQUOTE] = ACTIONS(4060), - [anon_sym_U_DQUOTE] = ACTIONS(4060), - [anon_sym_u8_DQUOTE] = ACTIONS(4060), - [anon_sym_DQUOTE] = ACTIONS(4060), - [sym_true] = ACTIONS(4058), - [sym_false] = ACTIONS(4058), - [anon_sym_NULL] = ACTIONS(4058), - [anon_sym_nullptr] = ACTIONS(4058), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4058), - [anon_sym_decltype] = ACTIONS(4058), - [anon_sym_explicit] = ACTIONS(4058), - [anon_sym_template] = ACTIONS(4058), - [anon_sym_operator] = ACTIONS(4058), - [anon_sym_try] = ACTIONS(4058), - [anon_sym_delete] = ACTIONS(4058), - [anon_sym_throw] = ACTIONS(4058), - [anon_sym_namespace] = ACTIONS(4058), - [anon_sym_static_assert] = ACTIONS(4058), - [anon_sym_concept] = ACTIONS(4058), - [anon_sym_co_return] = ACTIONS(4058), - [anon_sym_co_yield] = ACTIONS(4058), - [anon_sym_R_DQUOTE] = ACTIONS(4060), - [anon_sym_LR_DQUOTE] = ACTIONS(4060), - [anon_sym_uR_DQUOTE] = ACTIONS(4060), - [anon_sym_UR_DQUOTE] = ACTIONS(4060), - [anon_sym_u8R_DQUOTE] = ACTIONS(4060), - [anon_sym_co_await] = ACTIONS(4058), - [anon_sym_new] = ACTIONS(4058), - [anon_sym_requires] = ACTIONS(4058), - [anon_sym_CARET_CARET] = ACTIONS(4060), - [anon_sym_LBRACK_COLON] = ACTIONS(4060), - [sym_this] = ACTIONS(4058), + [STATE(673)] = { + [sym_identifier] = ACTIONS(4128), + [aux_sym_preproc_include_token1] = ACTIONS(4128), + [aux_sym_preproc_def_token1] = ACTIONS(4128), + [aux_sym_preproc_if_token1] = ACTIONS(4128), + [aux_sym_preproc_if_token2] = ACTIONS(4128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4128), + [sym_preproc_directive] = ACTIONS(4128), + [anon_sym_LPAREN2] = ACTIONS(4130), + [anon_sym_BANG] = ACTIONS(4130), + [anon_sym_TILDE] = ACTIONS(4130), + [anon_sym_DASH] = ACTIONS(4128), + [anon_sym_PLUS] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_AMP_AMP] = ACTIONS(4130), + [anon_sym_AMP] = ACTIONS(4128), + [anon_sym_SEMI] = ACTIONS(4130), + [anon_sym___extension__] = ACTIONS(4128), + [anon_sym_typedef] = ACTIONS(4128), + [anon_sym_virtual] = ACTIONS(4128), + [anon_sym_extern] = ACTIONS(4128), + [anon_sym___attribute__] = ACTIONS(4128), + [anon_sym___attribute] = ACTIONS(4128), + [anon_sym_using] = ACTIONS(4128), + [anon_sym_COLON_COLON] = ACTIONS(4130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4130), + [anon_sym___declspec] = ACTIONS(4128), + [anon_sym___based] = ACTIONS(4128), + [anon_sym___cdecl] = ACTIONS(4128), + [anon_sym___clrcall] = ACTIONS(4128), + [anon_sym___stdcall] = ACTIONS(4128), + [anon_sym___fastcall] = ACTIONS(4128), + [anon_sym___thiscall] = ACTIONS(4128), + [anon_sym___vectorcall] = ACTIONS(4128), + [anon_sym_LBRACE] = ACTIONS(4130), + [anon_sym_signed] = ACTIONS(4128), + [anon_sym_unsigned] = ACTIONS(4128), + [anon_sym_long] = ACTIONS(4128), + [anon_sym_short] = ACTIONS(4128), + [anon_sym_LBRACK] = ACTIONS(4128), + [anon_sym_static] = ACTIONS(4128), + [anon_sym_register] = ACTIONS(4128), + [anon_sym_inline] = ACTIONS(4128), + [anon_sym___inline] = ACTIONS(4128), + [anon_sym___inline__] = ACTIONS(4128), + [anon_sym___forceinline] = ACTIONS(4128), + [anon_sym_thread_local] = ACTIONS(4128), + [anon_sym___thread] = ACTIONS(4128), + [anon_sym_const] = ACTIONS(4128), + [anon_sym_constexpr] = ACTIONS(4128), + [anon_sym_volatile] = ACTIONS(4128), + [anon_sym_restrict] = ACTIONS(4128), + [anon_sym___restrict__] = ACTIONS(4128), + [anon_sym__Atomic] = ACTIONS(4128), + [anon_sym__Noreturn] = ACTIONS(4128), + [anon_sym_noreturn] = ACTIONS(4128), + [anon_sym__Nonnull] = ACTIONS(4128), + [anon_sym_mutable] = ACTIONS(4128), + [anon_sym_constinit] = ACTIONS(4128), + [anon_sym_consteval] = ACTIONS(4128), + [anon_sym_alignas] = ACTIONS(4128), + [anon_sym__Alignas] = ACTIONS(4128), + [sym_primitive_type] = ACTIONS(4128), + [anon_sym_enum] = ACTIONS(4128), + [anon_sym_class] = ACTIONS(4128), + [anon_sym_struct] = ACTIONS(4128), + [anon_sym_union] = ACTIONS(4128), + [anon_sym_if] = ACTIONS(4128), + [anon_sym_switch] = ACTIONS(4128), + [anon_sym_case] = ACTIONS(4128), + [anon_sym_default] = ACTIONS(4128), + [anon_sym_while] = ACTIONS(4128), + [anon_sym_do] = ACTIONS(4128), + [anon_sym_for] = ACTIONS(4128), + [anon_sym_return] = ACTIONS(4128), + [anon_sym_break] = ACTIONS(4128), + [anon_sym_continue] = ACTIONS(4128), + [anon_sym_goto] = ACTIONS(4128), + [anon_sym___try] = ACTIONS(4128), + [anon_sym___leave] = ACTIONS(4128), + [anon_sym_not] = ACTIONS(4128), + [anon_sym_compl] = ACTIONS(4128), + [anon_sym_DASH_DASH] = ACTIONS(4130), + [anon_sym_PLUS_PLUS] = ACTIONS(4130), + [anon_sym_sizeof] = ACTIONS(4128), + [anon_sym___alignof__] = ACTIONS(4128), + [anon_sym___alignof] = ACTIONS(4128), + [anon_sym__alignof] = ACTIONS(4128), + [anon_sym_alignof] = ACTIONS(4128), + [anon_sym__Alignof] = ACTIONS(4128), + [anon_sym_offsetof] = ACTIONS(4128), + [anon_sym__Generic] = ACTIONS(4128), + [anon_sym_typename] = ACTIONS(4128), + [anon_sym_asm] = ACTIONS(4128), + [anon_sym___asm__] = ACTIONS(4128), + [anon_sym___asm] = ACTIONS(4128), + [sym_number_literal] = ACTIONS(4130), + [anon_sym_L_SQUOTE] = ACTIONS(4130), + [anon_sym_u_SQUOTE] = ACTIONS(4130), + [anon_sym_U_SQUOTE] = ACTIONS(4130), + [anon_sym_u8_SQUOTE] = ACTIONS(4130), + [anon_sym_SQUOTE] = ACTIONS(4130), + [anon_sym_L_DQUOTE] = ACTIONS(4130), + [anon_sym_u_DQUOTE] = ACTIONS(4130), + [anon_sym_U_DQUOTE] = ACTIONS(4130), + [anon_sym_u8_DQUOTE] = ACTIONS(4130), + [anon_sym_DQUOTE] = ACTIONS(4130), + [sym_true] = ACTIONS(4128), + [sym_false] = ACTIONS(4128), + [anon_sym_NULL] = ACTIONS(4128), + [anon_sym_nullptr] = ACTIONS(4128), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4128), + [anon_sym_decltype] = ACTIONS(4128), + [anon_sym_explicit] = ACTIONS(4128), + [anon_sym_export] = ACTIONS(4128), + [anon_sym_module] = ACTIONS(4128), + [anon_sym_import] = ACTIONS(4128), + [anon_sym_template] = ACTIONS(4128), + [anon_sym_operator] = ACTIONS(4128), + [anon_sym_try] = ACTIONS(4128), + [anon_sym_delete] = ACTIONS(4128), + [anon_sym_throw] = ACTIONS(4128), + [anon_sym_namespace] = ACTIONS(4128), + [anon_sym_static_assert] = ACTIONS(4128), + [anon_sym_concept] = ACTIONS(4128), + [anon_sym_co_return] = ACTIONS(4128), + [anon_sym_co_yield] = ACTIONS(4128), + [anon_sym_R_DQUOTE] = ACTIONS(4130), + [anon_sym_LR_DQUOTE] = ACTIONS(4130), + [anon_sym_uR_DQUOTE] = ACTIONS(4130), + [anon_sym_UR_DQUOTE] = ACTIONS(4130), + [anon_sym_u8R_DQUOTE] = ACTIONS(4130), + [anon_sym_co_await] = ACTIONS(4128), + [anon_sym_new] = ACTIONS(4128), + [anon_sym_requires] = ACTIONS(4128), + [anon_sym_CARET_CARET] = ACTIONS(4130), + [anon_sym_LBRACK_COLON] = ACTIONS(4130), + [sym_this] = ACTIONS(4128), }, - [STATE(788)] = { - [sym_identifier] = ACTIONS(3926), - [aux_sym_preproc_include_token1] = ACTIONS(3926), - [aux_sym_preproc_def_token1] = ACTIONS(3926), - [aux_sym_preproc_if_token1] = ACTIONS(3926), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3926), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3926), - [sym_preproc_directive] = ACTIONS(3926), - [anon_sym_LPAREN2] = ACTIONS(3928), - [anon_sym_BANG] = ACTIONS(3928), - [anon_sym_TILDE] = ACTIONS(3928), - [anon_sym_DASH] = ACTIONS(3926), - [anon_sym_PLUS] = ACTIONS(3926), - [anon_sym_STAR] = ACTIONS(3928), - [anon_sym_AMP_AMP] = ACTIONS(3928), - [anon_sym_AMP] = ACTIONS(3926), - [anon_sym_SEMI] = ACTIONS(3928), - [anon_sym___extension__] = ACTIONS(3926), - [anon_sym_typedef] = ACTIONS(3926), - [anon_sym_virtual] = ACTIONS(3926), - [anon_sym_extern] = ACTIONS(3926), - [anon_sym___attribute__] = ACTIONS(3926), - [anon_sym___attribute] = ACTIONS(3926), - [anon_sym_using] = ACTIONS(3926), - [anon_sym_COLON_COLON] = ACTIONS(3928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3928), - [anon_sym___declspec] = ACTIONS(3926), - [anon_sym___based] = ACTIONS(3926), - [anon_sym___cdecl] = ACTIONS(3926), - [anon_sym___clrcall] = ACTIONS(3926), - [anon_sym___stdcall] = ACTIONS(3926), - [anon_sym___fastcall] = ACTIONS(3926), - [anon_sym___thiscall] = ACTIONS(3926), - [anon_sym___vectorcall] = ACTIONS(3926), - [anon_sym_LBRACE] = ACTIONS(3928), - [anon_sym_RBRACE] = ACTIONS(3928), - [anon_sym_signed] = ACTIONS(3926), - [anon_sym_unsigned] = ACTIONS(3926), - [anon_sym_long] = ACTIONS(3926), - [anon_sym_short] = ACTIONS(3926), - [anon_sym_LBRACK] = ACTIONS(3926), - [anon_sym_static] = ACTIONS(3926), - [anon_sym_register] = ACTIONS(3926), - [anon_sym_inline] = ACTIONS(3926), - [anon_sym___inline] = ACTIONS(3926), - [anon_sym___inline__] = ACTIONS(3926), - [anon_sym___forceinline] = ACTIONS(3926), - [anon_sym_thread_local] = ACTIONS(3926), - [anon_sym___thread] = ACTIONS(3926), - [anon_sym_const] = ACTIONS(3926), - [anon_sym_constexpr] = ACTIONS(3926), - [anon_sym_volatile] = ACTIONS(3926), - [anon_sym_restrict] = ACTIONS(3926), - [anon_sym___restrict__] = ACTIONS(3926), - [anon_sym__Atomic] = ACTIONS(3926), - [anon_sym__Noreturn] = ACTIONS(3926), - [anon_sym_noreturn] = ACTIONS(3926), - [anon_sym__Nonnull] = ACTIONS(3926), - [anon_sym_mutable] = ACTIONS(3926), - [anon_sym_constinit] = ACTIONS(3926), - [anon_sym_consteval] = ACTIONS(3926), - [anon_sym_alignas] = ACTIONS(3926), - [anon_sym__Alignas] = ACTIONS(3926), - [sym_primitive_type] = ACTIONS(3926), - [anon_sym_enum] = ACTIONS(3926), - [anon_sym_class] = ACTIONS(3926), - [anon_sym_struct] = ACTIONS(3926), - [anon_sym_union] = ACTIONS(3926), - [anon_sym_if] = ACTIONS(3926), - [anon_sym_switch] = ACTIONS(3926), - [anon_sym_case] = ACTIONS(3926), - [anon_sym_default] = ACTIONS(3926), - [anon_sym_while] = ACTIONS(3926), - [anon_sym_do] = ACTIONS(3926), - [anon_sym_for] = ACTIONS(3926), - [anon_sym_return] = ACTIONS(3926), - [anon_sym_break] = ACTIONS(3926), - [anon_sym_continue] = ACTIONS(3926), - [anon_sym_goto] = ACTIONS(3926), - [anon_sym___try] = ACTIONS(3926), - [anon_sym___leave] = ACTIONS(3926), - [anon_sym_not] = ACTIONS(3926), - [anon_sym_compl] = ACTIONS(3926), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3926), - [anon_sym___alignof__] = ACTIONS(3926), - [anon_sym___alignof] = ACTIONS(3926), - [anon_sym__alignof] = ACTIONS(3926), - [anon_sym_alignof] = ACTIONS(3926), - [anon_sym__Alignof] = ACTIONS(3926), - [anon_sym_offsetof] = ACTIONS(3926), - [anon_sym__Generic] = ACTIONS(3926), - [anon_sym_typename] = ACTIONS(3926), - [anon_sym_asm] = ACTIONS(3926), - [anon_sym___asm__] = ACTIONS(3926), - [anon_sym___asm] = ACTIONS(3926), - [sym_number_literal] = ACTIONS(3928), - [anon_sym_L_SQUOTE] = ACTIONS(3928), - [anon_sym_u_SQUOTE] = ACTIONS(3928), - [anon_sym_U_SQUOTE] = ACTIONS(3928), - [anon_sym_u8_SQUOTE] = ACTIONS(3928), - [anon_sym_SQUOTE] = ACTIONS(3928), - [anon_sym_L_DQUOTE] = ACTIONS(3928), - [anon_sym_u_DQUOTE] = ACTIONS(3928), - [anon_sym_U_DQUOTE] = ACTIONS(3928), - [anon_sym_u8_DQUOTE] = ACTIONS(3928), - [anon_sym_DQUOTE] = ACTIONS(3928), - [sym_true] = ACTIONS(3926), - [sym_false] = ACTIONS(3926), - [anon_sym_NULL] = ACTIONS(3926), - [anon_sym_nullptr] = ACTIONS(3926), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3926), - [anon_sym_decltype] = ACTIONS(3926), - [anon_sym_explicit] = ACTIONS(3926), - [anon_sym_template] = ACTIONS(3926), - [anon_sym_operator] = ACTIONS(3926), - [anon_sym_try] = ACTIONS(3926), - [anon_sym_delete] = ACTIONS(3926), - [anon_sym_throw] = ACTIONS(3926), - [anon_sym_namespace] = ACTIONS(3926), - [anon_sym_static_assert] = ACTIONS(3926), - [anon_sym_concept] = ACTIONS(3926), - [anon_sym_co_return] = ACTIONS(3926), - [anon_sym_co_yield] = ACTIONS(3926), - [anon_sym_R_DQUOTE] = ACTIONS(3928), - [anon_sym_LR_DQUOTE] = ACTIONS(3928), - [anon_sym_uR_DQUOTE] = ACTIONS(3928), - [anon_sym_UR_DQUOTE] = ACTIONS(3928), - [anon_sym_u8R_DQUOTE] = ACTIONS(3928), - [anon_sym_co_await] = ACTIONS(3926), - [anon_sym_new] = ACTIONS(3926), - [anon_sym_requires] = ACTIONS(3926), - [anon_sym_CARET_CARET] = ACTIONS(3928), - [anon_sym_LBRACK_COLON] = ACTIONS(3928), - [sym_this] = ACTIONS(3926), + [STATE(674)] = { + [sym_identifier] = ACTIONS(3568), + [aux_sym_preproc_include_token1] = ACTIONS(3568), + [aux_sym_preproc_def_token1] = ACTIONS(3568), + [aux_sym_preproc_if_token1] = ACTIONS(3568), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3568), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3568), + [sym_preproc_directive] = ACTIONS(3568), + [anon_sym_LPAREN2] = ACTIONS(3570), + [anon_sym_BANG] = ACTIONS(3570), + [anon_sym_TILDE] = ACTIONS(3570), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_STAR] = ACTIONS(3570), + [anon_sym_AMP_AMP] = ACTIONS(3570), + [anon_sym_AMP] = ACTIONS(3568), + [anon_sym_SEMI] = ACTIONS(3570), + [anon_sym___extension__] = ACTIONS(3568), + [anon_sym_typedef] = ACTIONS(3568), + [anon_sym_virtual] = ACTIONS(3568), + [anon_sym_extern] = ACTIONS(3568), + [anon_sym___attribute__] = ACTIONS(3568), + [anon_sym___attribute] = ACTIONS(3568), + [anon_sym_using] = ACTIONS(3568), + [anon_sym_COLON_COLON] = ACTIONS(3570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3570), + [anon_sym___declspec] = ACTIONS(3568), + [anon_sym___based] = ACTIONS(3568), + [anon_sym___cdecl] = ACTIONS(3568), + [anon_sym___clrcall] = ACTIONS(3568), + [anon_sym___stdcall] = ACTIONS(3568), + [anon_sym___fastcall] = ACTIONS(3568), + [anon_sym___thiscall] = ACTIONS(3568), + [anon_sym___vectorcall] = ACTIONS(3568), + [anon_sym_LBRACE] = ACTIONS(3570), + [anon_sym_RBRACE] = ACTIONS(3570), + [anon_sym_signed] = ACTIONS(3568), + [anon_sym_unsigned] = ACTIONS(3568), + [anon_sym_long] = ACTIONS(3568), + [anon_sym_short] = ACTIONS(3568), + [anon_sym_LBRACK] = ACTIONS(3568), + [anon_sym_static] = ACTIONS(3568), + [anon_sym_register] = ACTIONS(3568), + [anon_sym_inline] = ACTIONS(3568), + [anon_sym___inline] = ACTIONS(3568), + [anon_sym___inline__] = ACTIONS(3568), + [anon_sym___forceinline] = ACTIONS(3568), + [anon_sym_thread_local] = ACTIONS(3568), + [anon_sym___thread] = ACTIONS(3568), + [anon_sym_const] = ACTIONS(3568), + [anon_sym_constexpr] = ACTIONS(3568), + [anon_sym_volatile] = ACTIONS(3568), + [anon_sym_restrict] = ACTIONS(3568), + [anon_sym___restrict__] = ACTIONS(3568), + [anon_sym__Atomic] = ACTIONS(3568), + [anon_sym__Noreturn] = ACTIONS(3568), + [anon_sym_noreturn] = ACTIONS(3568), + [anon_sym__Nonnull] = ACTIONS(3568), + [anon_sym_mutable] = ACTIONS(3568), + [anon_sym_constinit] = ACTIONS(3568), + [anon_sym_consteval] = ACTIONS(3568), + [anon_sym_alignas] = ACTIONS(3568), + [anon_sym__Alignas] = ACTIONS(3568), + [sym_primitive_type] = ACTIONS(3568), + [anon_sym_enum] = ACTIONS(3568), + [anon_sym_class] = ACTIONS(3568), + [anon_sym_struct] = ACTIONS(3568), + [anon_sym_union] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_else] = ACTIONS(3568), + [anon_sym_switch] = ACTIONS(3568), + [anon_sym_case] = ACTIONS(3568), + [anon_sym_default] = ACTIONS(3568), + [anon_sym_while] = ACTIONS(3568), + [anon_sym_do] = ACTIONS(3568), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_break] = ACTIONS(3568), + [anon_sym_continue] = ACTIONS(3568), + [anon_sym_goto] = ACTIONS(3568), + [anon_sym___try] = ACTIONS(3568), + [anon_sym___leave] = ACTIONS(3568), + [anon_sym_not] = ACTIONS(3568), + [anon_sym_compl] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3570), + [anon_sym_PLUS_PLUS] = ACTIONS(3570), + [anon_sym_sizeof] = ACTIONS(3568), + [anon_sym___alignof__] = ACTIONS(3568), + [anon_sym___alignof] = ACTIONS(3568), + [anon_sym__alignof] = ACTIONS(3568), + [anon_sym_alignof] = ACTIONS(3568), + [anon_sym__Alignof] = ACTIONS(3568), + [anon_sym_offsetof] = ACTIONS(3568), + [anon_sym__Generic] = ACTIONS(3568), + [anon_sym_typename] = ACTIONS(3568), + [anon_sym_asm] = ACTIONS(3568), + [anon_sym___asm__] = ACTIONS(3568), + [anon_sym___asm] = ACTIONS(3568), + [sym_number_literal] = ACTIONS(3570), + [anon_sym_L_SQUOTE] = ACTIONS(3570), + [anon_sym_u_SQUOTE] = ACTIONS(3570), + [anon_sym_U_SQUOTE] = ACTIONS(3570), + [anon_sym_u8_SQUOTE] = ACTIONS(3570), + [anon_sym_SQUOTE] = ACTIONS(3570), + [anon_sym_L_DQUOTE] = ACTIONS(3570), + [anon_sym_u_DQUOTE] = ACTIONS(3570), + [anon_sym_U_DQUOTE] = ACTIONS(3570), + [anon_sym_u8_DQUOTE] = ACTIONS(3570), + [anon_sym_DQUOTE] = ACTIONS(3570), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [anon_sym_NULL] = ACTIONS(3568), + [anon_sym_nullptr] = ACTIONS(3568), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3568), + [anon_sym_decltype] = ACTIONS(3568), + [anon_sym_explicit] = ACTIONS(3568), + [anon_sym_export] = ACTIONS(3568), + [anon_sym_import] = ACTIONS(3568), + [anon_sym_template] = ACTIONS(3568), + [anon_sym_operator] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3568), + [anon_sym_delete] = ACTIONS(3568), + [anon_sym_throw] = ACTIONS(3568), + [anon_sym_namespace] = ACTIONS(3568), + [anon_sym_static_assert] = ACTIONS(3568), + [anon_sym_concept] = ACTIONS(3568), + [anon_sym_co_return] = ACTIONS(3568), + [anon_sym_co_yield] = ACTIONS(3568), + [anon_sym_R_DQUOTE] = ACTIONS(3570), + [anon_sym_LR_DQUOTE] = ACTIONS(3570), + [anon_sym_uR_DQUOTE] = ACTIONS(3570), + [anon_sym_UR_DQUOTE] = ACTIONS(3570), + [anon_sym_u8R_DQUOTE] = ACTIONS(3570), + [anon_sym_co_await] = ACTIONS(3568), + [anon_sym_new] = ACTIONS(3568), + [anon_sym_requires] = ACTIONS(3568), + [anon_sym_CARET_CARET] = ACTIONS(3570), + [anon_sym_LBRACK_COLON] = ACTIONS(3570), + [sym_this] = ACTIONS(3568), }, - [STATE(789)] = { - [sym_identifier] = ACTIONS(3930), - [aux_sym_preproc_include_token1] = ACTIONS(3930), - [aux_sym_preproc_def_token1] = ACTIONS(3930), - [aux_sym_preproc_if_token1] = ACTIONS(3930), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3930), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3930), - [sym_preproc_directive] = ACTIONS(3930), - [anon_sym_LPAREN2] = ACTIONS(3932), - [anon_sym_BANG] = ACTIONS(3932), - [anon_sym_TILDE] = ACTIONS(3932), - [anon_sym_DASH] = ACTIONS(3930), - [anon_sym_PLUS] = ACTIONS(3930), - [anon_sym_STAR] = ACTIONS(3932), - [anon_sym_AMP_AMP] = ACTIONS(3932), - [anon_sym_AMP] = ACTIONS(3930), - [anon_sym_SEMI] = ACTIONS(3932), - [anon_sym___extension__] = ACTIONS(3930), - [anon_sym_typedef] = ACTIONS(3930), - [anon_sym_virtual] = ACTIONS(3930), - [anon_sym_extern] = ACTIONS(3930), - [anon_sym___attribute__] = ACTIONS(3930), - [anon_sym___attribute] = ACTIONS(3930), - [anon_sym_using] = ACTIONS(3930), - [anon_sym_COLON_COLON] = ACTIONS(3932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3932), - [anon_sym___declspec] = ACTIONS(3930), - [anon_sym___based] = ACTIONS(3930), - [anon_sym___cdecl] = ACTIONS(3930), - [anon_sym___clrcall] = ACTIONS(3930), - [anon_sym___stdcall] = ACTIONS(3930), - [anon_sym___fastcall] = ACTIONS(3930), - [anon_sym___thiscall] = ACTIONS(3930), - [anon_sym___vectorcall] = ACTIONS(3930), - [anon_sym_LBRACE] = ACTIONS(3932), - [anon_sym_RBRACE] = ACTIONS(3932), - [anon_sym_signed] = ACTIONS(3930), - [anon_sym_unsigned] = ACTIONS(3930), - [anon_sym_long] = ACTIONS(3930), - [anon_sym_short] = ACTIONS(3930), - [anon_sym_LBRACK] = ACTIONS(3930), - [anon_sym_static] = ACTIONS(3930), - [anon_sym_register] = ACTIONS(3930), - [anon_sym_inline] = ACTIONS(3930), - [anon_sym___inline] = ACTIONS(3930), - [anon_sym___inline__] = ACTIONS(3930), - [anon_sym___forceinline] = ACTIONS(3930), - [anon_sym_thread_local] = ACTIONS(3930), - [anon_sym___thread] = ACTIONS(3930), - [anon_sym_const] = ACTIONS(3930), - [anon_sym_constexpr] = ACTIONS(3930), - [anon_sym_volatile] = ACTIONS(3930), - [anon_sym_restrict] = ACTIONS(3930), - [anon_sym___restrict__] = ACTIONS(3930), - [anon_sym__Atomic] = ACTIONS(3930), - [anon_sym__Noreturn] = ACTIONS(3930), - [anon_sym_noreturn] = ACTIONS(3930), - [anon_sym__Nonnull] = ACTIONS(3930), - [anon_sym_mutable] = ACTIONS(3930), - [anon_sym_constinit] = ACTIONS(3930), - [anon_sym_consteval] = ACTIONS(3930), - [anon_sym_alignas] = ACTIONS(3930), - [anon_sym__Alignas] = ACTIONS(3930), - [sym_primitive_type] = ACTIONS(3930), - [anon_sym_enum] = ACTIONS(3930), - [anon_sym_class] = ACTIONS(3930), - [anon_sym_struct] = ACTIONS(3930), - [anon_sym_union] = ACTIONS(3930), - [anon_sym_if] = ACTIONS(3930), - [anon_sym_switch] = ACTIONS(3930), - [anon_sym_case] = ACTIONS(3930), - [anon_sym_default] = ACTIONS(3930), - [anon_sym_while] = ACTIONS(3930), - [anon_sym_do] = ACTIONS(3930), - [anon_sym_for] = ACTIONS(3930), - [anon_sym_return] = ACTIONS(3930), - [anon_sym_break] = ACTIONS(3930), - [anon_sym_continue] = ACTIONS(3930), - [anon_sym_goto] = ACTIONS(3930), - [anon_sym___try] = ACTIONS(3930), - [anon_sym___leave] = ACTIONS(3930), - [anon_sym_not] = ACTIONS(3930), - [anon_sym_compl] = ACTIONS(3930), - [anon_sym_DASH_DASH] = ACTIONS(3932), - [anon_sym_PLUS_PLUS] = ACTIONS(3932), - [anon_sym_sizeof] = ACTIONS(3930), - [anon_sym___alignof__] = ACTIONS(3930), - [anon_sym___alignof] = ACTIONS(3930), - [anon_sym__alignof] = ACTIONS(3930), - [anon_sym_alignof] = ACTIONS(3930), - [anon_sym__Alignof] = ACTIONS(3930), - [anon_sym_offsetof] = ACTIONS(3930), - [anon_sym__Generic] = ACTIONS(3930), - [anon_sym_typename] = ACTIONS(3930), - [anon_sym_asm] = ACTIONS(3930), - [anon_sym___asm__] = ACTIONS(3930), - [anon_sym___asm] = ACTIONS(3930), - [sym_number_literal] = ACTIONS(3932), - [anon_sym_L_SQUOTE] = ACTIONS(3932), - [anon_sym_u_SQUOTE] = ACTIONS(3932), - [anon_sym_U_SQUOTE] = ACTIONS(3932), - [anon_sym_u8_SQUOTE] = ACTIONS(3932), - [anon_sym_SQUOTE] = ACTIONS(3932), - [anon_sym_L_DQUOTE] = ACTIONS(3932), - [anon_sym_u_DQUOTE] = ACTIONS(3932), - [anon_sym_U_DQUOTE] = ACTIONS(3932), - [anon_sym_u8_DQUOTE] = ACTIONS(3932), - [anon_sym_DQUOTE] = ACTIONS(3932), - [sym_true] = ACTIONS(3930), - [sym_false] = ACTIONS(3930), - [anon_sym_NULL] = ACTIONS(3930), - [anon_sym_nullptr] = ACTIONS(3930), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3930), - [anon_sym_decltype] = ACTIONS(3930), - [anon_sym_explicit] = ACTIONS(3930), - [anon_sym_template] = ACTIONS(3930), - [anon_sym_operator] = ACTIONS(3930), - [anon_sym_try] = ACTIONS(3930), - [anon_sym_delete] = ACTIONS(3930), - [anon_sym_throw] = ACTIONS(3930), - [anon_sym_namespace] = ACTIONS(3930), - [anon_sym_static_assert] = ACTIONS(3930), - [anon_sym_concept] = ACTIONS(3930), - [anon_sym_co_return] = ACTIONS(3930), - [anon_sym_co_yield] = ACTIONS(3930), - [anon_sym_R_DQUOTE] = ACTIONS(3932), - [anon_sym_LR_DQUOTE] = ACTIONS(3932), - [anon_sym_uR_DQUOTE] = ACTIONS(3932), - [anon_sym_UR_DQUOTE] = ACTIONS(3932), - [anon_sym_u8R_DQUOTE] = ACTIONS(3932), - [anon_sym_co_await] = ACTIONS(3930), - [anon_sym_new] = ACTIONS(3930), - [anon_sym_requires] = ACTIONS(3930), - [anon_sym_CARET_CARET] = ACTIONS(3932), - [anon_sym_LBRACK_COLON] = ACTIONS(3932), - [sym_this] = ACTIONS(3930), + [STATE(675)] = { + [sym_identifier] = ACTIONS(3572), + [aux_sym_preproc_include_token1] = ACTIONS(3572), + [aux_sym_preproc_def_token1] = ACTIONS(3572), + [aux_sym_preproc_if_token1] = ACTIONS(3572), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3572), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3572), + [sym_preproc_directive] = ACTIONS(3572), + [anon_sym_LPAREN2] = ACTIONS(3574), + [anon_sym_BANG] = ACTIONS(3574), + [anon_sym_TILDE] = ACTIONS(3574), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_STAR] = ACTIONS(3574), + [anon_sym_AMP_AMP] = ACTIONS(3574), + [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3574), + [anon_sym___extension__] = ACTIONS(3572), + [anon_sym_typedef] = ACTIONS(3572), + [anon_sym_virtual] = ACTIONS(3572), + [anon_sym_extern] = ACTIONS(3572), + [anon_sym___attribute__] = ACTIONS(3572), + [anon_sym___attribute] = ACTIONS(3572), + [anon_sym_using] = ACTIONS(3572), + [anon_sym_COLON_COLON] = ACTIONS(3574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3574), + [anon_sym___declspec] = ACTIONS(3572), + [anon_sym___based] = ACTIONS(3572), + [anon_sym___cdecl] = ACTIONS(3572), + [anon_sym___clrcall] = ACTIONS(3572), + [anon_sym___stdcall] = ACTIONS(3572), + [anon_sym___fastcall] = ACTIONS(3572), + [anon_sym___thiscall] = ACTIONS(3572), + [anon_sym___vectorcall] = ACTIONS(3572), + [anon_sym_LBRACE] = ACTIONS(3574), + [anon_sym_RBRACE] = ACTIONS(3574), + [anon_sym_signed] = ACTIONS(3572), + [anon_sym_unsigned] = ACTIONS(3572), + [anon_sym_long] = ACTIONS(3572), + [anon_sym_short] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_static] = ACTIONS(3572), + [anon_sym_register] = ACTIONS(3572), + [anon_sym_inline] = ACTIONS(3572), + [anon_sym___inline] = ACTIONS(3572), + [anon_sym___inline__] = ACTIONS(3572), + [anon_sym___forceinline] = ACTIONS(3572), + [anon_sym_thread_local] = ACTIONS(3572), + [anon_sym___thread] = ACTIONS(3572), + [anon_sym_const] = ACTIONS(3572), + [anon_sym_constexpr] = ACTIONS(3572), + [anon_sym_volatile] = ACTIONS(3572), + [anon_sym_restrict] = ACTIONS(3572), + [anon_sym___restrict__] = ACTIONS(3572), + [anon_sym__Atomic] = ACTIONS(3572), + [anon_sym__Noreturn] = ACTIONS(3572), + [anon_sym_noreturn] = ACTIONS(3572), + [anon_sym__Nonnull] = ACTIONS(3572), + [anon_sym_mutable] = ACTIONS(3572), + [anon_sym_constinit] = ACTIONS(3572), + [anon_sym_consteval] = ACTIONS(3572), + [anon_sym_alignas] = ACTIONS(3572), + [anon_sym__Alignas] = ACTIONS(3572), + [sym_primitive_type] = ACTIONS(3572), + [anon_sym_enum] = ACTIONS(3572), + [anon_sym_class] = ACTIONS(3572), + [anon_sym_struct] = ACTIONS(3572), + [anon_sym_union] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_else] = ACTIONS(3572), + [anon_sym_switch] = ACTIONS(3572), + [anon_sym_case] = ACTIONS(3572), + [anon_sym_default] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_break] = ACTIONS(3572), + [anon_sym_continue] = ACTIONS(3572), + [anon_sym_goto] = ACTIONS(3572), + [anon_sym___try] = ACTIONS(3572), + [anon_sym___leave] = ACTIONS(3572), + [anon_sym_not] = ACTIONS(3572), + [anon_sym_compl] = ACTIONS(3572), + [anon_sym_DASH_DASH] = ACTIONS(3574), + [anon_sym_PLUS_PLUS] = ACTIONS(3574), + [anon_sym_sizeof] = ACTIONS(3572), + [anon_sym___alignof__] = ACTIONS(3572), + [anon_sym___alignof] = ACTIONS(3572), + [anon_sym__alignof] = ACTIONS(3572), + [anon_sym_alignof] = ACTIONS(3572), + [anon_sym__Alignof] = ACTIONS(3572), + [anon_sym_offsetof] = ACTIONS(3572), + [anon_sym__Generic] = ACTIONS(3572), + [anon_sym_typename] = ACTIONS(3572), + [anon_sym_asm] = ACTIONS(3572), + [anon_sym___asm__] = ACTIONS(3572), + [anon_sym___asm] = ACTIONS(3572), + [sym_number_literal] = ACTIONS(3574), + [anon_sym_L_SQUOTE] = ACTIONS(3574), + [anon_sym_u_SQUOTE] = ACTIONS(3574), + [anon_sym_U_SQUOTE] = ACTIONS(3574), + [anon_sym_u8_SQUOTE] = ACTIONS(3574), + [anon_sym_SQUOTE] = ACTIONS(3574), + [anon_sym_L_DQUOTE] = ACTIONS(3574), + [anon_sym_u_DQUOTE] = ACTIONS(3574), + [anon_sym_U_DQUOTE] = ACTIONS(3574), + [anon_sym_u8_DQUOTE] = ACTIONS(3574), + [anon_sym_DQUOTE] = ACTIONS(3574), + [sym_true] = ACTIONS(3572), + [sym_false] = ACTIONS(3572), + [anon_sym_NULL] = ACTIONS(3572), + [anon_sym_nullptr] = ACTIONS(3572), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3572), + [anon_sym_decltype] = ACTIONS(3572), + [anon_sym_explicit] = ACTIONS(3572), + [anon_sym_export] = ACTIONS(3572), + [anon_sym_import] = ACTIONS(3572), + [anon_sym_template] = ACTIONS(3572), + [anon_sym_operator] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_delete] = ACTIONS(3572), + [anon_sym_throw] = ACTIONS(3572), + [anon_sym_namespace] = ACTIONS(3572), + [anon_sym_static_assert] = ACTIONS(3572), + [anon_sym_concept] = ACTIONS(3572), + [anon_sym_co_return] = ACTIONS(3572), + [anon_sym_co_yield] = ACTIONS(3572), + [anon_sym_R_DQUOTE] = ACTIONS(3574), + [anon_sym_LR_DQUOTE] = ACTIONS(3574), + [anon_sym_uR_DQUOTE] = ACTIONS(3574), + [anon_sym_UR_DQUOTE] = ACTIONS(3574), + [anon_sym_u8R_DQUOTE] = ACTIONS(3574), + [anon_sym_co_await] = ACTIONS(3572), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_requires] = ACTIONS(3572), + [anon_sym_CARET_CARET] = ACTIONS(3574), + [anon_sym_LBRACK_COLON] = ACTIONS(3574), + [sym_this] = ACTIONS(3572), }, - [STATE(790)] = { - [sym_identifier] = ACTIONS(3934), - [aux_sym_preproc_include_token1] = ACTIONS(3934), - [aux_sym_preproc_def_token1] = ACTIONS(3934), - [aux_sym_preproc_if_token1] = ACTIONS(3934), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3934), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3934), - [sym_preproc_directive] = ACTIONS(3934), - [anon_sym_LPAREN2] = ACTIONS(3936), - [anon_sym_BANG] = ACTIONS(3936), - [anon_sym_TILDE] = ACTIONS(3936), - [anon_sym_DASH] = ACTIONS(3934), - [anon_sym_PLUS] = ACTIONS(3934), - [anon_sym_STAR] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3936), - [anon_sym_AMP] = ACTIONS(3934), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym___extension__] = ACTIONS(3934), - [anon_sym_typedef] = ACTIONS(3934), - [anon_sym_virtual] = ACTIONS(3934), - [anon_sym_extern] = ACTIONS(3934), - [anon_sym___attribute__] = ACTIONS(3934), - [anon_sym___attribute] = ACTIONS(3934), - [anon_sym_using] = ACTIONS(3934), - [anon_sym_COLON_COLON] = ACTIONS(3936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3936), - [anon_sym___declspec] = ACTIONS(3934), - [anon_sym___based] = ACTIONS(3934), - [anon_sym___cdecl] = ACTIONS(3934), - [anon_sym___clrcall] = ACTIONS(3934), - [anon_sym___stdcall] = ACTIONS(3934), - [anon_sym___fastcall] = ACTIONS(3934), - [anon_sym___thiscall] = ACTIONS(3934), - [anon_sym___vectorcall] = ACTIONS(3934), - [anon_sym_LBRACE] = ACTIONS(3936), - [anon_sym_RBRACE] = ACTIONS(3936), - [anon_sym_signed] = ACTIONS(3934), - [anon_sym_unsigned] = ACTIONS(3934), - [anon_sym_long] = ACTIONS(3934), - [anon_sym_short] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(3934), - [anon_sym_static] = ACTIONS(3934), - [anon_sym_register] = ACTIONS(3934), - [anon_sym_inline] = ACTIONS(3934), - [anon_sym___inline] = ACTIONS(3934), - [anon_sym___inline__] = ACTIONS(3934), - [anon_sym___forceinline] = ACTIONS(3934), - [anon_sym_thread_local] = ACTIONS(3934), - [anon_sym___thread] = ACTIONS(3934), - [anon_sym_const] = ACTIONS(3934), - [anon_sym_constexpr] = ACTIONS(3934), - [anon_sym_volatile] = ACTIONS(3934), - [anon_sym_restrict] = ACTIONS(3934), - [anon_sym___restrict__] = ACTIONS(3934), - [anon_sym__Atomic] = ACTIONS(3934), - [anon_sym__Noreturn] = ACTIONS(3934), - [anon_sym_noreturn] = ACTIONS(3934), - [anon_sym__Nonnull] = ACTIONS(3934), - [anon_sym_mutable] = ACTIONS(3934), - [anon_sym_constinit] = ACTIONS(3934), - [anon_sym_consteval] = ACTIONS(3934), - [anon_sym_alignas] = ACTIONS(3934), - [anon_sym__Alignas] = ACTIONS(3934), - [sym_primitive_type] = ACTIONS(3934), - [anon_sym_enum] = ACTIONS(3934), - [anon_sym_class] = ACTIONS(3934), - [anon_sym_struct] = ACTIONS(3934), - [anon_sym_union] = ACTIONS(3934), - [anon_sym_if] = ACTIONS(3934), - [anon_sym_switch] = ACTIONS(3934), - [anon_sym_case] = ACTIONS(3934), - [anon_sym_default] = ACTIONS(3934), - [anon_sym_while] = ACTIONS(3934), - [anon_sym_do] = ACTIONS(3934), - [anon_sym_for] = ACTIONS(3934), - [anon_sym_return] = ACTIONS(3934), - [anon_sym_break] = ACTIONS(3934), - [anon_sym_continue] = ACTIONS(3934), - [anon_sym_goto] = ACTIONS(3934), - [anon_sym___try] = ACTIONS(3934), - [anon_sym___leave] = ACTIONS(3934), - [anon_sym_not] = ACTIONS(3934), - [anon_sym_compl] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(3936), - [anon_sym_PLUS_PLUS] = ACTIONS(3936), - [anon_sym_sizeof] = ACTIONS(3934), - [anon_sym___alignof__] = ACTIONS(3934), - [anon_sym___alignof] = ACTIONS(3934), - [anon_sym__alignof] = ACTIONS(3934), - [anon_sym_alignof] = ACTIONS(3934), - [anon_sym__Alignof] = ACTIONS(3934), - [anon_sym_offsetof] = ACTIONS(3934), - [anon_sym__Generic] = ACTIONS(3934), - [anon_sym_typename] = ACTIONS(3934), - [anon_sym_asm] = ACTIONS(3934), - [anon_sym___asm__] = ACTIONS(3934), - [anon_sym___asm] = ACTIONS(3934), - [sym_number_literal] = ACTIONS(3936), - [anon_sym_L_SQUOTE] = ACTIONS(3936), - [anon_sym_u_SQUOTE] = ACTIONS(3936), - [anon_sym_U_SQUOTE] = ACTIONS(3936), - [anon_sym_u8_SQUOTE] = ACTIONS(3936), - [anon_sym_SQUOTE] = ACTIONS(3936), - [anon_sym_L_DQUOTE] = ACTIONS(3936), - [anon_sym_u_DQUOTE] = ACTIONS(3936), - [anon_sym_U_DQUOTE] = ACTIONS(3936), - [anon_sym_u8_DQUOTE] = ACTIONS(3936), - [anon_sym_DQUOTE] = ACTIONS(3936), - [sym_true] = ACTIONS(3934), - [sym_false] = ACTIONS(3934), - [anon_sym_NULL] = ACTIONS(3934), - [anon_sym_nullptr] = ACTIONS(3934), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3934), - [anon_sym_decltype] = ACTIONS(3934), - [anon_sym_explicit] = ACTIONS(3934), - [anon_sym_template] = ACTIONS(3934), - [anon_sym_operator] = ACTIONS(3934), - [anon_sym_try] = ACTIONS(3934), - [anon_sym_delete] = ACTIONS(3934), - [anon_sym_throw] = ACTIONS(3934), - [anon_sym_namespace] = ACTIONS(3934), - [anon_sym_static_assert] = ACTIONS(3934), - [anon_sym_concept] = ACTIONS(3934), - [anon_sym_co_return] = ACTIONS(3934), - [anon_sym_co_yield] = ACTIONS(3934), - [anon_sym_R_DQUOTE] = ACTIONS(3936), - [anon_sym_LR_DQUOTE] = ACTIONS(3936), - [anon_sym_uR_DQUOTE] = ACTIONS(3936), - [anon_sym_UR_DQUOTE] = ACTIONS(3936), - [anon_sym_u8R_DQUOTE] = ACTIONS(3936), - [anon_sym_co_await] = ACTIONS(3934), - [anon_sym_new] = ACTIONS(3934), - [anon_sym_requires] = ACTIONS(3934), - [anon_sym_CARET_CARET] = ACTIONS(3936), - [anon_sym_LBRACK_COLON] = ACTIONS(3936), - [sym_this] = ACTIONS(3934), + [STATE(676)] = { + [sym_identifier] = ACTIONS(3576), + [aux_sym_preproc_include_token1] = ACTIONS(3576), + [aux_sym_preproc_def_token1] = ACTIONS(3576), + [aux_sym_preproc_if_token1] = ACTIONS(3576), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3576), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3576), + [sym_preproc_directive] = ACTIONS(3576), + [anon_sym_LPAREN2] = ACTIONS(3578), + [anon_sym_BANG] = ACTIONS(3578), + [anon_sym_TILDE] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_STAR] = ACTIONS(3578), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_AMP] = ACTIONS(3576), + [anon_sym_SEMI] = ACTIONS(3578), + [anon_sym___extension__] = ACTIONS(3576), + [anon_sym_typedef] = ACTIONS(3576), + [anon_sym_virtual] = ACTIONS(3576), + [anon_sym_extern] = ACTIONS(3576), + [anon_sym___attribute__] = ACTIONS(3576), + [anon_sym___attribute] = ACTIONS(3576), + [anon_sym_using] = ACTIONS(3576), + [anon_sym_COLON_COLON] = ACTIONS(3578), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3578), + [anon_sym___declspec] = ACTIONS(3576), + [anon_sym___based] = ACTIONS(3576), + [anon_sym___cdecl] = ACTIONS(3576), + [anon_sym___clrcall] = ACTIONS(3576), + [anon_sym___stdcall] = ACTIONS(3576), + [anon_sym___fastcall] = ACTIONS(3576), + [anon_sym___thiscall] = ACTIONS(3576), + [anon_sym___vectorcall] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_RBRACE] = ACTIONS(3578), + [anon_sym_signed] = ACTIONS(3576), + [anon_sym_unsigned] = ACTIONS(3576), + [anon_sym_long] = ACTIONS(3576), + [anon_sym_short] = ACTIONS(3576), + [anon_sym_LBRACK] = ACTIONS(3576), + [anon_sym_static] = ACTIONS(3576), + [anon_sym_register] = ACTIONS(3576), + [anon_sym_inline] = ACTIONS(3576), + [anon_sym___inline] = ACTIONS(3576), + [anon_sym___inline__] = ACTIONS(3576), + [anon_sym___forceinline] = ACTIONS(3576), + [anon_sym_thread_local] = ACTIONS(3576), + [anon_sym___thread] = ACTIONS(3576), + [anon_sym_const] = ACTIONS(3576), + [anon_sym_constexpr] = ACTIONS(3576), + [anon_sym_volatile] = ACTIONS(3576), + [anon_sym_restrict] = ACTIONS(3576), + [anon_sym___restrict__] = ACTIONS(3576), + [anon_sym__Atomic] = ACTIONS(3576), + [anon_sym__Noreturn] = ACTIONS(3576), + [anon_sym_noreturn] = ACTIONS(3576), + [anon_sym__Nonnull] = ACTIONS(3576), + [anon_sym_mutable] = ACTIONS(3576), + [anon_sym_constinit] = ACTIONS(3576), + [anon_sym_consteval] = ACTIONS(3576), + [anon_sym_alignas] = ACTIONS(3576), + [anon_sym__Alignas] = ACTIONS(3576), + [sym_primitive_type] = ACTIONS(3576), + [anon_sym_enum] = ACTIONS(3576), + [anon_sym_class] = ACTIONS(3576), + [anon_sym_struct] = ACTIONS(3576), + [anon_sym_union] = ACTIONS(3576), + [anon_sym_if] = ACTIONS(3576), + [anon_sym_else] = ACTIONS(3576), + [anon_sym_switch] = ACTIONS(3576), + [anon_sym_case] = ACTIONS(3576), + [anon_sym_default] = ACTIONS(3576), + [anon_sym_while] = ACTIONS(3576), + [anon_sym_do] = ACTIONS(3576), + [anon_sym_for] = ACTIONS(3576), + [anon_sym_return] = ACTIONS(3576), + [anon_sym_break] = ACTIONS(3576), + [anon_sym_continue] = ACTIONS(3576), + [anon_sym_goto] = ACTIONS(3576), + [anon_sym___try] = ACTIONS(3576), + [anon_sym___leave] = ACTIONS(3576), + [anon_sym_not] = ACTIONS(3576), + [anon_sym_compl] = ACTIONS(3576), + [anon_sym_DASH_DASH] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3578), + [anon_sym_sizeof] = ACTIONS(3576), + [anon_sym___alignof__] = ACTIONS(3576), + [anon_sym___alignof] = ACTIONS(3576), + [anon_sym__alignof] = ACTIONS(3576), + [anon_sym_alignof] = ACTIONS(3576), + [anon_sym__Alignof] = ACTIONS(3576), + [anon_sym_offsetof] = ACTIONS(3576), + [anon_sym__Generic] = ACTIONS(3576), + [anon_sym_typename] = ACTIONS(3576), + [anon_sym_asm] = ACTIONS(3576), + [anon_sym___asm__] = ACTIONS(3576), + [anon_sym___asm] = ACTIONS(3576), + [sym_number_literal] = ACTIONS(3578), + [anon_sym_L_SQUOTE] = ACTIONS(3578), + [anon_sym_u_SQUOTE] = ACTIONS(3578), + [anon_sym_U_SQUOTE] = ACTIONS(3578), + [anon_sym_u8_SQUOTE] = ACTIONS(3578), + [anon_sym_SQUOTE] = ACTIONS(3578), + [anon_sym_L_DQUOTE] = ACTIONS(3578), + [anon_sym_u_DQUOTE] = ACTIONS(3578), + [anon_sym_U_DQUOTE] = ACTIONS(3578), + [anon_sym_u8_DQUOTE] = ACTIONS(3578), + [anon_sym_DQUOTE] = ACTIONS(3578), + [sym_true] = ACTIONS(3576), + [sym_false] = ACTIONS(3576), + [anon_sym_NULL] = ACTIONS(3576), + [anon_sym_nullptr] = ACTIONS(3576), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3576), + [anon_sym_decltype] = ACTIONS(3576), + [anon_sym_explicit] = ACTIONS(3576), + [anon_sym_export] = ACTIONS(3576), + [anon_sym_import] = ACTIONS(3576), + [anon_sym_template] = ACTIONS(3576), + [anon_sym_operator] = ACTIONS(3576), + [anon_sym_try] = ACTIONS(3576), + [anon_sym_delete] = ACTIONS(3576), + [anon_sym_throw] = ACTIONS(3576), + [anon_sym_namespace] = ACTIONS(3576), + [anon_sym_static_assert] = ACTIONS(3576), + [anon_sym_concept] = ACTIONS(3576), + [anon_sym_co_return] = ACTIONS(3576), + [anon_sym_co_yield] = ACTIONS(3576), + [anon_sym_R_DQUOTE] = ACTIONS(3578), + [anon_sym_LR_DQUOTE] = ACTIONS(3578), + [anon_sym_uR_DQUOTE] = ACTIONS(3578), + [anon_sym_UR_DQUOTE] = ACTIONS(3578), + [anon_sym_u8R_DQUOTE] = ACTIONS(3578), + [anon_sym_co_await] = ACTIONS(3576), + [anon_sym_new] = ACTIONS(3576), + [anon_sym_requires] = ACTIONS(3576), + [anon_sym_CARET_CARET] = ACTIONS(3578), + [anon_sym_LBRACK_COLON] = ACTIONS(3578), + [sym_this] = ACTIONS(3576), }, - [STATE(791)] = { - [sym_identifier] = ACTIONS(3938), - [aux_sym_preproc_include_token1] = ACTIONS(3938), - [aux_sym_preproc_def_token1] = ACTIONS(3938), - [aux_sym_preproc_if_token1] = ACTIONS(3938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3938), - [sym_preproc_directive] = ACTIONS(3938), - [anon_sym_LPAREN2] = ACTIONS(3940), - [anon_sym_BANG] = ACTIONS(3940), - [anon_sym_TILDE] = ACTIONS(3940), - [anon_sym_DASH] = ACTIONS(3938), - [anon_sym_PLUS] = ACTIONS(3938), - [anon_sym_STAR] = ACTIONS(3940), - [anon_sym_AMP_AMP] = ACTIONS(3940), - [anon_sym_AMP] = ACTIONS(3938), - [anon_sym_SEMI] = ACTIONS(3940), - [anon_sym___extension__] = ACTIONS(3938), - [anon_sym_typedef] = ACTIONS(3938), - [anon_sym_virtual] = ACTIONS(3938), - [anon_sym_extern] = ACTIONS(3938), - [anon_sym___attribute__] = ACTIONS(3938), - [anon_sym___attribute] = ACTIONS(3938), - [anon_sym_using] = ACTIONS(3938), - [anon_sym_COLON_COLON] = ACTIONS(3940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3940), - [anon_sym___declspec] = ACTIONS(3938), - [anon_sym___based] = ACTIONS(3938), - [anon_sym___cdecl] = ACTIONS(3938), - [anon_sym___clrcall] = ACTIONS(3938), - [anon_sym___stdcall] = ACTIONS(3938), - [anon_sym___fastcall] = ACTIONS(3938), - [anon_sym___thiscall] = ACTIONS(3938), - [anon_sym___vectorcall] = ACTIONS(3938), - [anon_sym_LBRACE] = ACTIONS(3940), - [anon_sym_RBRACE] = ACTIONS(3940), - [anon_sym_signed] = ACTIONS(3938), - [anon_sym_unsigned] = ACTIONS(3938), - [anon_sym_long] = ACTIONS(3938), - [anon_sym_short] = ACTIONS(3938), - [anon_sym_LBRACK] = ACTIONS(3938), - [anon_sym_static] = ACTIONS(3938), - [anon_sym_register] = ACTIONS(3938), - [anon_sym_inline] = ACTIONS(3938), - [anon_sym___inline] = ACTIONS(3938), - [anon_sym___inline__] = ACTIONS(3938), - [anon_sym___forceinline] = ACTIONS(3938), - [anon_sym_thread_local] = ACTIONS(3938), - [anon_sym___thread] = ACTIONS(3938), - [anon_sym_const] = ACTIONS(3938), - [anon_sym_constexpr] = ACTIONS(3938), - [anon_sym_volatile] = ACTIONS(3938), - [anon_sym_restrict] = ACTIONS(3938), - [anon_sym___restrict__] = ACTIONS(3938), - [anon_sym__Atomic] = ACTIONS(3938), - [anon_sym__Noreturn] = ACTIONS(3938), - [anon_sym_noreturn] = ACTIONS(3938), - [anon_sym__Nonnull] = ACTIONS(3938), - [anon_sym_mutable] = ACTIONS(3938), - [anon_sym_constinit] = ACTIONS(3938), - [anon_sym_consteval] = ACTIONS(3938), - [anon_sym_alignas] = ACTIONS(3938), - [anon_sym__Alignas] = ACTIONS(3938), - [sym_primitive_type] = ACTIONS(3938), - [anon_sym_enum] = ACTIONS(3938), - [anon_sym_class] = ACTIONS(3938), - [anon_sym_struct] = ACTIONS(3938), - [anon_sym_union] = ACTIONS(3938), - [anon_sym_if] = ACTIONS(3938), - [anon_sym_switch] = ACTIONS(3938), - [anon_sym_case] = ACTIONS(3938), - [anon_sym_default] = ACTIONS(3938), - [anon_sym_while] = ACTIONS(3938), - [anon_sym_do] = ACTIONS(3938), - [anon_sym_for] = ACTIONS(3938), - [anon_sym_return] = ACTIONS(3938), - [anon_sym_break] = ACTIONS(3938), - [anon_sym_continue] = ACTIONS(3938), - [anon_sym_goto] = ACTIONS(3938), - [anon_sym___try] = ACTIONS(3938), - [anon_sym___leave] = ACTIONS(3938), - [anon_sym_not] = ACTIONS(3938), - [anon_sym_compl] = ACTIONS(3938), - [anon_sym_DASH_DASH] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(3940), - [anon_sym_sizeof] = ACTIONS(3938), - [anon_sym___alignof__] = ACTIONS(3938), - [anon_sym___alignof] = ACTIONS(3938), - [anon_sym__alignof] = ACTIONS(3938), - [anon_sym_alignof] = ACTIONS(3938), - [anon_sym__Alignof] = ACTIONS(3938), - [anon_sym_offsetof] = ACTIONS(3938), - [anon_sym__Generic] = ACTIONS(3938), - [anon_sym_typename] = ACTIONS(3938), - [anon_sym_asm] = ACTIONS(3938), - [anon_sym___asm__] = ACTIONS(3938), - [anon_sym___asm] = ACTIONS(3938), - [sym_number_literal] = ACTIONS(3940), - [anon_sym_L_SQUOTE] = ACTIONS(3940), - [anon_sym_u_SQUOTE] = ACTIONS(3940), - [anon_sym_U_SQUOTE] = ACTIONS(3940), - [anon_sym_u8_SQUOTE] = ACTIONS(3940), - [anon_sym_SQUOTE] = ACTIONS(3940), - [anon_sym_L_DQUOTE] = ACTIONS(3940), - [anon_sym_u_DQUOTE] = ACTIONS(3940), - [anon_sym_U_DQUOTE] = ACTIONS(3940), - [anon_sym_u8_DQUOTE] = ACTIONS(3940), - [anon_sym_DQUOTE] = ACTIONS(3940), - [sym_true] = ACTIONS(3938), - [sym_false] = ACTIONS(3938), - [anon_sym_NULL] = ACTIONS(3938), - [anon_sym_nullptr] = ACTIONS(3938), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3938), - [anon_sym_decltype] = ACTIONS(3938), - [anon_sym_explicit] = ACTIONS(3938), - [anon_sym_template] = ACTIONS(3938), - [anon_sym_operator] = ACTIONS(3938), - [anon_sym_try] = ACTIONS(3938), - [anon_sym_delete] = ACTIONS(3938), - [anon_sym_throw] = ACTIONS(3938), - [anon_sym_namespace] = ACTIONS(3938), - [anon_sym_static_assert] = ACTIONS(3938), - [anon_sym_concept] = ACTIONS(3938), - [anon_sym_co_return] = ACTIONS(3938), - [anon_sym_co_yield] = ACTIONS(3938), - [anon_sym_R_DQUOTE] = ACTIONS(3940), - [anon_sym_LR_DQUOTE] = ACTIONS(3940), - [anon_sym_uR_DQUOTE] = ACTIONS(3940), - [anon_sym_UR_DQUOTE] = ACTIONS(3940), - [anon_sym_u8R_DQUOTE] = ACTIONS(3940), - [anon_sym_co_await] = ACTIONS(3938), - [anon_sym_new] = ACTIONS(3938), - [anon_sym_requires] = ACTIONS(3938), - [anon_sym_CARET_CARET] = ACTIONS(3940), - [anon_sym_LBRACK_COLON] = ACTIONS(3940), - [sym_this] = ACTIONS(3938), + [STATE(677)] = { + [sym_identifier] = ACTIONS(3580), + [aux_sym_preproc_include_token1] = ACTIONS(3580), + [aux_sym_preproc_def_token1] = ACTIONS(3580), + [aux_sym_preproc_if_token1] = ACTIONS(3580), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3580), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3580), + [sym_preproc_directive] = ACTIONS(3580), + [anon_sym_LPAREN2] = ACTIONS(3582), + [anon_sym_BANG] = ACTIONS(3582), + [anon_sym_TILDE] = ACTIONS(3582), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_STAR] = ACTIONS(3582), + [anon_sym_AMP_AMP] = ACTIONS(3582), + [anon_sym_AMP] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym___extension__] = ACTIONS(3580), + [anon_sym_typedef] = ACTIONS(3580), + [anon_sym_virtual] = ACTIONS(3580), + [anon_sym_extern] = ACTIONS(3580), + [anon_sym___attribute__] = ACTIONS(3580), + [anon_sym___attribute] = ACTIONS(3580), + [anon_sym_using] = ACTIONS(3580), + [anon_sym_COLON_COLON] = ACTIONS(3582), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3582), + [anon_sym___declspec] = ACTIONS(3580), + [anon_sym___based] = ACTIONS(3580), + [anon_sym___cdecl] = ACTIONS(3580), + [anon_sym___clrcall] = ACTIONS(3580), + [anon_sym___stdcall] = ACTIONS(3580), + [anon_sym___fastcall] = ACTIONS(3580), + [anon_sym___thiscall] = ACTIONS(3580), + [anon_sym___vectorcall] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_RBRACE] = ACTIONS(3582), + [anon_sym_signed] = ACTIONS(3580), + [anon_sym_unsigned] = ACTIONS(3580), + [anon_sym_long] = ACTIONS(3580), + [anon_sym_short] = ACTIONS(3580), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_register] = ACTIONS(3580), + [anon_sym_inline] = ACTIONS(3580), + [anon_sym___inline] = ACTIONS(3580), + [anon_sym___inline__] = ACTIONS(3580), + [anon_sym___forceinline] = ACTIONS(3580), + [anon_sym_thread_local] = ACTIONS(3580), + [anon_sym___thread] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_constexpr] = ACTIONS(3580), + [anon_sym_volatile] = ACTIONS(3580), + [anon_sym_restrict] = ACTIONS(3580), + [anon_sym___restrict__] = ACTIONS(3580), + [anon_sym__Atomic] = ACTIONS(3580), + [anon_sym__Noreturn] = ACTIONS(3580), + [anon_sym_noreturn] = ACTIONS(3580), + [anon_sym__Nonnull] = ACTIONS(3580), + [anon_sym_mutable] = ACTIONS(3580), + [anon_sym_constinit] = ACTIONS(3580), + [anon_sym_consteval] = ACTIONS(3580), + [anon_sym_alignas] = ACTIONS(3580), + [anon_sym__Alignas] = ACTIONS(3580), + [sym_primitive_type] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), + [anon_sym_class] = ACTIONS(3580), + [anon_sym_struct] = ACTIONS(3580), + [anon_sym_union] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_else] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_case] = ACTIONS(3580), + [anon_sym_default] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_goto] = ACTIONS(3580), + [anon_sym___try] = ACTIONS(3580), + [anon_sym___leave] = ACTIONS(3580), + [anon_sym_not] = ACTIONS(3580), + [anon_sym_compl] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3582), + [anon_sym_PLUS_PLUS] = ACTIONS(3582), + [anon_sym_sizeof] = ACTIONS(3580), + [anon_sym___alignof__] = ACTIONS(3580), + [anon_sym___alignof] = ACTIONS(3580), + [anon_sym__alignof] = ACTIONS(3580), + [anon_sym_alignof] = ACTIONS(3580), + [anon_sym__Alignof] = ACTIONS(3580), + [anon_sym_offsetof] = ACTIONS(3580), + [anon_sym__Generic] = ACTIONS(3580), + [anon_sym_typename] = ACTIONS(3580), + [anon_sym_asm] = ACTIONS(3580), + [anon_sym___asm__] = ACTIONS(3580), + [anon_sym___asm] = ACTIONS(3580), + [sym_number_literal] = ACTIONS(3582), + [anon_sym_L_SQUOTE] = ACTIONS(3582), + [anon_sym_u_SQUOTE] = ACTIONS(3582), + [anon_sym_U_SQUOTE] = ACTIONS(3582), + [anon_sym_u8_SQUOTE] = ACTIONS(3582), + [anon_sym_SQUOTE] = ACTIONS(3582), + [anon_sym_L_DQUOTE] = ACTIONS(3582), + [anon_sym_u_DQUOTE] = ACTIONS(3582), + [anon_sym_U_DQUOTE] = ACTIONS(3582), + [anon_sym_u8_DQUOTE] = ACTIONS(3582), + [anon_sym_DQUOTE] = ACTIONS(3582), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [anon_sym_NULL] = ACTIONS(3580), + [anon_sym_nullptr] = ACTIONS(3580), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3580), + [anon_sym_decltype] = ACTIONS(3580), + [anon_sym_explicit] = ACTIONS(3580), + [anon_sym_export] = ACTIONS(3580), + [anon_sym_import] = ACTIONS(3580), + [anon_sym_template] = ACTIONS(3580), + [anon_sym_operator] = ACTIONS(3580), + [anon_sym_try] = ACTIONS(3580), + [anon_sym_delete] = ACTIONS(3580), + [anon_sym_throw] = ACTIONS(3580), + [anon_sym_namespace] = ACTIONS(3580), + [anon_sym_static_assert] = ACTIONS(3580), + [anon_sym_concept] = ACTIONS(3580), + [anon_sym_co_return] = ACTIONS(3580), + [anon_sym_co_yield] = ACTIONS(3580), + [anon_sym_R_DQUOTE] = ACTIONS(3582), + [anon_sym_LR_DQUOTE] = ACTIONS(3582), + [anon_sym_uR_DQUOTE] = ACTIONS(3582), + [anon_sym_UR_DQUOTE] = ACTIONS(3582), + [anon_sym_u8R_DQUOTE] = ACTIONS(3582), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3580), + [anon_sym_requires] = ACTIONS(3580), + [anon_sym_CARET_CARET] = ACTIONS(3582), + [anon_sym_LBRACK_COLON] = ACTIONS(3582), + [sym_this] = ACTIONS(3580), }, - [STATE(792)] = { - [sym_identifier] = ACTIONS(4006), - [aux_sym_preproc_include_token1] = ACTIONS(4006), - [aux_sym_preproc_def_token1] = ACTIONS(4006), - [aux_sym_preproc_if_token1] = ACTIONS(4006), - [aux_sym_preproc_if_token2] = ACTIONS(4006), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4006), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4006), - [sym_preproc_directive] = ACTIONS(4006), - [anon_sym_LPAREN2] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4008), - [anon_sym_TILDE] = ACTIONS(4008), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_STAR] = ACTIONS(4008), - [anon_sym_AMP_AMP] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4006), - [anon_sym_SEMI] = ACTIONS(4008), - [anon_sym___extension__] = ACTIONS(4006), - [anon_sym_typedef] = ACTIONS(4006), - [anon_sym_virtual] = ACTIONS(4006), - [anon_sym_extern] = ACTIONS(4006), - [anon_sym___attribute__] = ACTIONS(4006), - [anon_sym___attribute] = ACTIONS(4006), - [anon_sym_using] = ACTIONS(4006), - [anon_sym_COLON_COLON] = ACTIONS(4008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4008), - [anon_sym___declspec] = ACTIONS(4006), - [anon_sym___based] = ACTIONS(4006), - [anon_sym___cdecl] = ACTIONS(4006), - [anon_sym___clrcall] = ACTIONS(4006), - [anon_sym___stdcall] = ACTIONS(4006), - [anon_sym___fastcall] = ACTIONS(4006), - [anon_sym___thiscall] = ACTIONS(4006), - [anon_sym___vectorcall] = ACTIONS(4006), - [anon_sym_LBRACE] = ACTIONS(4008), - [anon_sym_signed] = ACTIONS(4006), - [anon_sym_unsigned] = ACTIONS(4006), - [anon_sym_long] = ACTIONS(4006), - [anon_sym_short] = ACTIONS(4006), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_static] = ACTIONS(4006), - [anon_sym_register] = ACTIONS(4006), - [anon_sym_inline] = ACTIONS(4006), - [anon_sym___inline] = ACTIONS(4006), - [anon_sym___inline__] = ACTIONS(4006), - [anon_sym___forceinline] = ACTIONS(4006), - [anon_sym_thread_local] = ACTIONS(4006), - [anon_sym___thread] = ACTIONS(4006), - [anon_sym_const] = ACTIONS(4006), - [anon_sym_constexpr] = ACTIONS(4006), - [anon_sym_volatile] = ACTIONS(4006), - [anon_sym_restrict] = ACTIONS(4006), - [anon_sym___restrict__] = ACTIONS(4006), - [anon_sym__Atomic] = ACTIONS(4006), - [anon_sym__Noreturn] = ACTIONS(4006), - [anon_sym_noreturn] = ACTIONS(4006), - [anon_sym__Nonnull] = ACTIONS(4006), - [anon_sym_mutable] = ACTIONS(4006), - [anon_sym_constinit] = ACTIONS(4006), - [anon_sym_consteval] = ACTIONS(4006), - [anon_sym_alignas] = ACTIONS(4006), - [anon_sym__Alignas] = ACTIONS(4006), - [sym_primitive_type] = ACTIONS(4006), - [anon_sym_enum] = ACTIONS(4006), - [anon_sym_class] = ACTIONS(4006), - [anon_sym_struct] = ACTIONS(4006), - [anon_sym_union] = ACTIONS(4006), - [anon_sym_if] = ACTIONS(4006), - [anon_sym_switch] = ACTIONS(4006), - [anon_sym_case] = ACTIONS(4006), - [anon_sym_default] = ACTIONS(4006), - [anon_sym_while] = ACTIONS(4006), - [anon_sym_do] = ACTIONS(4006), - [anon_sym_for] = ACTIONS(4006), - [anon_sym_return] = ACTIONS(4006), - [anon_sym_break] = ACTIONS(4006), - [anon_sym_continue] = ACTIONS(4006), - [anon_sym_goto] = ACTIONS(4006), - [anon_sym___try] = ACTIONS(4006), - [anon_sym___leave] = ACTIONS(4006), - [anon_sym_not] = ACTIONS(4006), - [anon_sym_compl] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4008), - [anon_sym_PLUS_PLUS] = ACTIONS(4008), - [anon_sym_sizeof] = ACTIONS(4006), - [anon_sym___alignof__] = ACTIONS(4006), - [anon_sym___alignof] = ACTIONS(4006), - [anon_sym__alignof] = ACTIONS(4006), - [anon_sym_alignof] = ACTIONS(4006), - [anon_sym__Alignof] = ACTIONS(4006), - [anon_sym_offsetof] = ACTIONS(4006), - [anon_sym__Generic] = ACTIONS(4006), - [anon_sym_typename] = ACTIONS(4006), - [anon_sym_asm] = ACTIONS(4006), - [anon_sym___asm__] = ACTIONS(4006), - [anon_sym___asm] = ACTIONS(4006), - [sym_number_literal] = ACTIONS(4008), - [anon_sym_L_SQUOTE] = ACTIONS(4008), - [anon_sym_u_SQUOTE] = ACTIONS(4008), - [anon_sym_U_SQUOTE] = ACTIONS(4008), - [anon_sym_u8_SQUOTE] = ACTIONS(4008), - [anon_sym_SQUOTE] = ACTIONS(4008), - [anon_sym_L_DQUOTE] = ACTIONS(4008), - [anon_sym_u_DQUOTE] = ACTIONS(4008), - [anon_sym_U_DQUOTE] = ACTIONS(4008), - [anon_sym_u8_DQUOTE] = ACTIONS(4008), - [anon_sym_DQUOTE] = ACTIONS(4008), - [sym_true] = ACTIONS(4006), - [sym_false] = ACTIONS(4006), - [anon_sym_NULL] = ACTIONS(4006), - [anon_sym_nullptr] = ACTIONS(4006), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4006), - [anon_sym_decltype] = ACTIONS(4006), - [anon_sym_explicit] = ACTIONS(4006), - [anon_sym_template] = ACTIONS(4006), - [anon_sym_operator] = ACTIONS(4006), - [anon_sym_try] = ACTIONS(4006), - [anon_sym_delete] = ACTIONS(4006), - [anon_sym_throw] = ACTIONS(4006), - [anon_sym_namespace] = ACTIONS(4006), - [anon_sym_static_assert] = ACTIONS(4006), - [anon_sym_concept] = ACTIONS(4006), - [anon_sym_co_return] = ACTIONS(4006), - [anon_sym_co_yield] = ACTIONS(4006), - [anon_sym_R_DQUOTE] = ACTIONS(4008), - [anon_sym_LR_DQUOTE] = ACTIONS(4008), - [anon_sym_uR_DQUOTE] = ACTIONS(4008), - [anon_sym_UR_DQUOTE] = ACTIONS(4008), - [anon_sym_u8R_DQUOTE] = ACTIONS(4008), - [anon_sym_co_await] = ACTIONS(4006), - [anon_sym_new] = ACTIONS(4006), - [anon_sym_requires] = ACTIONS(4006), - [anon_sym_CARET_CARET] = ACTIONS(4008), - [anon_sym_LBRACK_COLON] = ACTIONS(4008), - [sym_this] = ACTIONS(4006), + [STATE(678)] = { + [sym_identifier] = ACTIONS(4132), + [aux_sym_preproc_include_token1] = ACTIONS(4132), + [aux_sym_preproc_def_token1] = ACTIONS(4132), + [aux_sym_preproc_if_token1] = ACTIONS(4132), + [aux_sym_preproc_if_token2] = ACTIONS(4132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4132), + [sym_preproc_directive] = ACTIONS(4132), + [anon_sym_LPAREN2] = ACTIONS(4134), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_TILDE] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4132), + [anon_sym_STAR] = ACTIONS(4134), + [anon_sym_AMP_AMP] = ACTIONS(4134), + [anon_sym_AMP] = ACTIONS(4132), + [anon_sym_SEMI] = ACTIONS(4134), + [anon_sym___extension__] = ACTIONS(4132), + [anon_sym_typedef] = ACTIONS(4132), + [anon_sym_virtual] = ACTIONS(4132), + [anon_sym_extern] = ACTIONS(4132), + [anon_sym___attribute__] = ACTIONS(4132), + [anon_sym___attribute] = ACTIONS(4132), + [anon_sym_using] = ACTIONS(4132), + [anon_sym_COLON_COLON] = ACTIONS(4134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4134), + [anon_sym___declspec] = ACTIONS(4132), + [anon_sym___based] = ACTIONS(4132), + [anon_sym___cdecl] = ACTIONS(4132), + [anon_sym___clrcall] = ACTIONS(4132), + [anon_sym___stdcall] = ACTIONS(4132), + [anon_sym___fastcall] = ACTIONS(4132), + [anon_sym___thiscall] = ACTIONS(4132), + [anon_sym___vectorcall] = ACTIONS(4132), + [anon_sym_LBRACE] = ACTIONS(4134), + [anon_sym_signed] = ACTIONS(4132), + [anon_sym_unsigned] = ACTIONS(4132), + [anon_sym_long] = ACTIONS(4132), + [anon_sym_short] = ACTIONS(4132), + [anon_sym_LBRACK] = ACTIONS(4132), + [anon_sym_static] = ACTIONS(4132), + [anon_sym_register] = ACTIONS(4132), + [anon_sym_inline] = ACTIONS(4132), + [anon_sym___inline] = ACTIONS(4132), + [anon_sym___inline__] = ACTIONS(4132), + [anon_sym___forceinline] = ACTIONS(4132), + [anon_sym_thread_local] = ACTIONS(4132), + [anon_sym___thread] = ACTIONS(4132), + [anon_sym_const] = ACTIONS(4132), + [anon_sym_constexpr] = ACTIONS(4132), + [anon_sym_volatile] = ACTIONS(4132), + [anon_sym_restrict] = ACTIONS(4132), + [anon_sym___restrict__] = ACTIONS(4132), + [anon_sym__Atomic] = ACTIONS(4132), + [anon_sym__Noreturn] = ACTIONS(4132), + [anon_sym_noreturn] = ACTIONS(4132), + [anon_sym__Nonnull] = ACTIONS(4132), + [anon_sym_mutable] = ACTIONS(4132), + [anon_sym_constinit] = ACTIONS(4132), + [anon_sym_consteval] = ACTIONS(4132), + [anon_sym_alignas] = ACTIONS(4132), + [anon_sym__Alignas] = ACTIONS(4132), + [sym_primitive_type] = ACTIONS(4132), + [anon_sym_enum] = ACTIONS(4132), + [anon_sym_class] = ACTIONS(4132), + [anon_sym_struct] = ACTIONS(4132), + [anon_sym_union] = ACTIONS(4132), + [anon_sym_if] = ACTIONS(4132), + [anon_sym_switch] = ACTIONS(4132), + [anon_sym_case] = ACTIONS(4132), + [anon_sym_default] = ACTIONS(4132), + [anon_sym_while] = ACTIONS(4132), + [anon_sym_do] = ACTIONS(4132), + [anon_sym_for] = ACTIONS(4132), + [anon_sym_return] = ACTIONS(4132), + [anon_sym_break] = ACTIONS(4132), + [anon_sym_continue] = ACTIONS(4132), + [anon_sym_goto] = ACTIONS(4132), + [anon_sym___try] = ACTIONS(4132), + [anon_sym___leave] = ACTIONS(4132), + [anon_sym_not] = ACTIONS(4132), + [anon_sym_compl] = ACTIONS(4132), + [anon_sym_DASH_DASH] = ACTIONS(4134), + [anon_sym_PLUS_PLUS] = ACTIONS(4134), + [anon_sym_sizeof] = ACTIONS(4132), + [anon_sym___alignof__] = ACTIONS(4132), + [anon_sym___alignof] = ACTIONS(4132), + [anon_sym__alignof] = ACTIONS(4132), + [anon_sym_alignof] = ACTIONS(4132), + [anon_sym__Alignof] = ACTIONS(4132), + [anon_sym_offsetof] = ACTIONS(4132), + [anon_sym__Generic] = ACTIONS(4132), + [anon_sym_typename] = ACTIONS(4132), + [anon_sym_asm] = ACTIONS(4132), + [anon_sym___asm__] = ACTIONS(4132), + [anon_sym___asm] = ACTIONS(4132), + [sym_number_literal] = ACTIONS(4134), + [anon_sym_L_SQUOTE] = ACTIONS(4134), + [anon_sym_u_SQUOTE] = ACTIONS(4134), + [anon_sym_U_SQUOTE] = ACTIONS(4134), + [anon_sym_u8_SQUOTE] = ACTIONS(4134), + [anon_sym_SQUOTE] = ACTIONS(4134), + [anon_sym_L_DQUOTE] = ACTIONS(4134), + [anon_sym_u_DQUOTE] = ACTIONS(4134), + [anon_sym_U_DQUOTE] = ACTIONS(4134), + [anon_sym_u8_DQUOTE] = ACTIONS(4134), + [anon_sym_DQUOTE] = ACTIONS(4134), + [sym_true] = ACTIONS(4132), + [sym_false] = ACTIONS(4132), + [anon_sym_NULL] = ACTIONS(4132), + [anon_sym_nullptr] = ACTIONS(4132), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4132), + [anon_sym_decltype] = ACTIONS(4132), + [anon_sym_explicit] = ACTIONS(4132), + [anon_sym_export] = ACTIONS(4132), + [anon_sym_module] = ACTIONS(4132), + [anon_sym_import] = ACTIONS(4132), + [anon_sym_template] = ACTIONS(4132), + [anon_sym_operator] = ACTIONS(4132), + [anon_sym_try] = ACTIONS(4132), + [anon_sym_delete] = ACTIONS(4132), + [anon_sym_throw] = ACTIONS(4132), + [anon_sym_namespace] = ACTIONS(4132), + [anon_sym_static_assert] = ACTIONS(4132), + [anon_sym_concept] = ACTIONS(4132), + [anon_sym_co_return] = ACTIONS(4132), + [anon_sym_co_yield] = ACTIONS(4132), + [anon_sym_R_DQUOTE] = ACTIONS(4134), + [anon_sym_LR_DQUOTE] = ACTIONS(4134), + [anon_sym_uR_DQUOTE] = ACTIONS(4134), + [anon_sym_UR_DQUOTE] = ACTIONS(4134), + [anon_sym_u8R_DQUOTE] = ACTIONS(4134), + [anon_sym_co_await] = ACTIONS(4132), + [anon_sym_new] = ACTIONS(4132), + [anon_sym_requires] = ACTIONS(4132), + [anon_sym_CARET_CARET] = ACTIONS(4134), + [anon_sym_LBRACK_COLON] = ACTIONS(4134), + [sym_this] = ACTIONS(4132), }, - [STATE(793)] = { - [sym_identifier] = ACTIONS(3942), - [aux_sym_preproc_include_token1] = ACTIONS(3942), - [aux_sym_preproc_def_token1] = ACTIONS(3942), - [aux_sym_preproc_if_token1] = ACTIONS(3942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3942), - [sym_preproc_directive] = ACTIONS(3942), - [anon_sym_LPAREN2] = ACTIONS(3944), - [anon_sym_BANG] = ACTIONS(3944), - [anon_sym_TILDE] = ACTIONS(3944), - [anon_sym_DASH] = ACTIONS(3942), - [anon_sym_PLUS] = ACTIONS(3942), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_AMP_AMP] = ACTIONS(3944), - [anon_sym_AMP] = ACTIONS(3942), - [anon_sym_SEMI] = ACTIONS(3944), - [anon_sym___extension__] = ACTIONS(3942), - [anon_sym_typedef] = ACTIONS(3942), - [anon_sym_virtual] = ACTIONS(3942), - [anon_sym_extern] = ACTIONS(3942), - [anon_sym___attribute__] = ACTIONS(3942), - [anon_sym___attribute] = ACTIONS(3942), - [anon_sym_using] = ACTIONS(3942), - [anon_sym_COLON_COLON] = ACTIONS(3944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3944), - [anon_sym___declspec] = ACTIONS(3942), - [anon_sym___based] = ACTIONS(3942), - [anon_sym___cdecl] = ACTIONS(3942), - [anon_sym___clrcall] = ACTIONS(3942), - [anon_sym___stdcall] = ACTIONS(3942), - [anon_sym___fastcall] = ACTIONS(3942), - [anon_sym___thiscall] = ACTIONS(3942), - [anon_sym___vectorcall] = ACTIONS(3942), - [anon_sym_LBRACE] = ACTIONS(3944), - [anon_sym_RBRACE] = ACTIONS(3944), - [anon_sym_signed] = ACTIONS(3942), - [anon_sym_unsigned] = ACTIONS(3942), - [anon_sym_long] = ACTIONS(3942), - [anon_sym_short] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(3942), - [anon_sym_static] = ACTIONS(3942), - [anon_sym_register] = ACTIONS(3942), - [anon_sym_inline] = ACTIONS(3942), - [anon_sym___inline] = ACTIONS(3942), - [anon_sym___inline__] = ACTIONS(3942), - [anon_sym___forceinline] = ACTIONS(3942), - [anon_sym_thread_local] = ACTIONS(3942), - [anon_sym___thread] = ACTIONS(3942), - [anon_sym_const] = ACTIONS(3942), - [anon_sym_constexpr] = ACTIONS(3942), - [anon_sym_volatile] = ACTIONS(3942), - [anon_sym_restrict] = ACTIONS(3942), - [anon_sym___restrict__] = ACTIONS(3942), - [anon_sym__Atomic] = ACTIONS(3942), - [anon_sym__Noreturn] = ACTIONS(3942), - [anon_sym_noreturn] = ACTIONS(3942), - [anon_sym__Nonnull] = ACTIONS(3942), - [anon_sym_mutable] = ACTIONS(3942), - [anon_sym_constinit] = ACTIONS(3942), - [anon_sym_consteval] = ACTIONS(3942), - [anon_sym_alignas] = ACTIONS(3942), - [anon_sym__Alignas] = ACTIONS(3942), - [sym_primitive_type] = ACTIONS(3942), - [anon_sym_enum] = ACTIONS(3942), - [anon_sym_class] = ACTIONS(3942), - [anon_sym_struct] = ACTIONS(3942), - [anon_sym_union] = ACTIONS(3942), - [anon_sym_if] = ACTIONS(3942), - [anon_sym_switch] = ACTIONS(3942), - [anon_sym_case] = ACTIONS(3942), - [anon_sym_default] = ACTIONS(3942), - [anon_sym_while] = ACTIONS(3942), - [anon_sym_do] = ACTIONS(3942), - [anon_sym_for] = ACTIONS(3942), - [anon_sym_return] = ACTIONS(3942), - [anon_sym_break] = ACTIONS(3942), - [anon_sym_continue] = ACTIONS(3942), - [anon_sym_goto] = ACTIONS(3942), - [anon_sym___try] = ACTIONS(3942), - [anon_sym___leave] = ACTIONS(3942), - [anon_sym_not] = ACTIONS(3942), - [anon_sym_compl] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(3944), - [anon_sym_PLUS_PLUS] = ACTIONS(3944), - [anon_sym_sizeof] = ACTIONS(3942), - [anon_sym___alignof__] = ACTIONS(3942), - [anon_sym___alignof] = ACTIONS(3942), - [anon_sym__alignof] = ACTIONS(3942), - [anon_sym_alignof] = ACTIONS(3942), - [anon_sym__Alignof] = ACTIONS(3942), - [anon_sym_offsetof] = ACTIONS(3942), - [anon_sym__Generic] = ACTIONS(3942), - [anon_sym_typename] = ACTIONS(3942), - [anon_sym_asm] = ACTIONS(3942), - [anon_sym___asm__] = ACTIONS(3942), - [anon_sym___asm] = ACTIONS(3942), - [sym_number_literal] = ACTIONS(3944), - [anon_sym_L_SQUOTE] = ACTIONS(3944), - [anon_sym_u_SQUOTE] = ACTIONS(3944), - [anon_sym_U_SQUOTE] = ACTIONS(3944), - [anon_sym_u8_SQUOTE] = ACTIONS(3944), - [anon_sym_SQUOTE] = ACTIONS(3944), - [anon_sym_L_DQUOTE] = ACTIONS(3944), - [anon_sym_u_DQUOTE] = ACTIONS(3944), - [anon_sym_U_DQUOTE] = ACTIONS(3944), - [anon_sym_u8_DQUOTE] = ACTIONS(3944), - [anon_sym_DQUOTE] = ACTIONS(3944), - [sym_true] = ACTIONS(3942), - [sym_false] = ACTIONS(3942), - [anon_sym_NULL] = ACTIONS(3942), - [anon_sym_nullptr] = ACTIONS(3942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3942), - [anon_sym_decltype] = ACTIONS(3942), - [anon_sym_explicit] = ACTIONS(3942), - [anon_sym_template] = ACTIONS(3942), - [anon_sym_operator] = ACTIONS(3942), - [anon_sym_try] = ACTIONS(3942), - [anon_sym_delete] = ACTIONS(3942), - [anon_sym_throw] = ACTIONS(3942), - [anon_sym_namespace] = ACTIONS(3942), - [anon_sym_static_assert] = ACTIONS(3942), - [anon_sym_concept] = ACTIONS(3942), - [anon_sym_co_return] = ACTIONS(3942), - [anon_sym_co_yield] = ACTIONS(3942), - [anon_sym_R_DQUOTE] = ACTIONS(3944), - [anon_sym_LR_DQUOTE] = ACTIONS(3944), - [anon_sym_uR_DQUOTE] = ACTIONS(3944), - [anon_sym_UR_DQUOTE] = ACTIONS(3944), - [anon_sym_u8R_DQUOTE] = ACTIONS(3944), - [anon_sym_co_await] = ACTIONS(3942), - [anon_sym_new] = ACTIONS(3942), - [anon_sym_requires] = ACTIONS(3942), - [anon_sym_CARET_CARET] = ACTIONS(3944), - [anon_sym_LBRACK_COLON] = ACTIONS(3944), - [sym_this] = ACTIONS(3942), + [STATE(679)] = { + [sym_identifier] = ACTIONS(4136), + [aux_sym_preproc_include_token1] = ACTIONS(4136), + [aux_sym_preproc_def_token1] = ACTIONS(4136), + [aux_sym_preproc_if_token1] = ACTIONS(4136), + [aux_sym_preproc_if_token2] = ACTIONS(4136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4136), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4136), + [sym_preproc_directive] = ACTIONS(4136), + [anon_sym_LPAREN2] = ACTIONS(4138), + [anon_sym_BANG] = ACTIONS(4138), + [anon_sym_TILDE] = ACTIONS(4138), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4136), + [anon_sym_STAR] = ACTIONS(4138), + [anon_sym_AMP_AMP] = ACTIONS(4138), + [anon_sym_AMP] = ACTIONS(4136), + [anon_sym_SEMI] = ACTIONS(4138), + [anon_sym___extension__] = ACTIONS(4136), + [anon_sym_typedef] = ACTIONS(4136), + [anon_sym_virtual] = ACTIONS(4136), + [anon_sym_extern] = ACTIONS(4136), + [anon_sym___attribute__] = ACTIONS(4136), + [anon_sym___attribute] = ACTIONS(4136), + [anon_sym_using] = ACTIONS(4136), + [anon_sym_COLON_COLON] = ACTIONS(4138), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4138), + [anon_sym___declspec] = ACTIONS(4136), + [anon_sym___based] = ACTIONS(4136), + [anon_sym___cdecl] = ACTIONS(4136), + [anon_sym___clrcall] = ACTIONS(4136), + [anon_sym___stdcall] = ACTIONS(4136), + [anon_sym___fastcall] = ACTIONS(4136), + [anon_sym___thiscall] = ACTIONS(4136), + [anon_sym___vectorcall] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(4138), + [anon_sym_signed] = ACTIONS(4136), + [anon_sym_unsigned] = ACTIONS(4136), + [anon_sym_long] = ACTIONS(4136), + [anon_sym_short] = ACTIONS(4136), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_static] = ACTIONS(4136), + [anon_sym_register] = ACTIONS(4136), + [anon_sym_inline] = ACTIONS(4136), + [anon_sym___inline] = ACTIONS(4136), + [anon_sym___inline__] = ACTIONS(4136), + [anon_sym___forceinline] = ACTIONS(4136), + [anon_sym_thread_local] = ACTIONS(4136), + [anon_sym___thread] = ACTIONS(4136), + [anon_sym_const] = ACTIONS(4136), + [anon_sym_constexpr] = ACTIONS(4136), + [anon_sym_volatile] = ACTIONS(4136), + [anon_sym_restrict] = ACTIONS(4136), + [anon_sym___restrict__] = ACTIONS(4136), + [anon_sym__Atomic] = ACTIONS(4136), + [anon_sym__Noreturn] = ACTIONS(4136), + [anon_sym_noreturn] = ACTIONS(4136), + [anon_sym__Nonnull] = ACTIONS(4136), + [anon_sym_mutable] = ACTIONS(4136), + [anon_sym_constinit] = ACTIONS(4136), + [anon_sym_consteval] = ACTIONS(4136), + [anon_sym_alignas] = ACTIONS(4136), + [anon_sym__Alignas] = ACTIONS(4136), + [sym_primitive_type] = ACTIONS(4136), + [anon_sym_enum] = ACTIONS(4136), + [anon_sym_class] = ACTIONS(4136), + [anon_sym_struct] = ACTIONS(4136), + [anon_sym_union] = ACTIONS(4136), + [anon_sym_if] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(4136), + [anon_sym_case] = ACTIONS(4136), + [anon_sym_default] = ACTIONS(4136), + [anon_sym_while] = ACTIONS(4136), + [anon_sym_do] = ACTIONS(4136), + [anon_sym_for] = ACTIONS(4136), + [anon_sym_return] = ACTIONS(4136), + [anon_sym_break] = ACTIONS(4136), + [anon_sym_continue] = ACTIONS(4136), + [anon_sym_goto] = ACTIONS(4136), + [anon_sym___try] = ACTIONS(4136), + [anon_sym___leave] = ACTIONS(4136), + [anon_sym_not] = ACTIONS(4136), + [anon_sym_compl] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4138), + [anon_sym_PLUS_PLUS] = ACTIONS(4138), + [anon_sym_sizeof] = ACTIONS(4136), + [anon_sym___alignof__] = ACTIONS(4136), + [anon_sym___alignof] = ACTIONS(4136), + [anon_sym__alignof] = ACTIONS(4136), + [anon_sym_alignof] = ACTIONS(4136), + [anon_sym__Alignof] = ACTIONS(4136), + [anon_sym_offsetof] = ACTIONS(4136), + [anon_sym__Generic] = ACTIONS(4136), + [anon_sym_typename] = ACTIONS(4136), + [anon_sym_asm] = ACTIONS(4136), + [anon_sym___asm__] = ACTIONS(4136), + [anon_sym___asm] = ACTIONS(4136), + [sym_number_literal] = ACTIONS(4138), + [anon_sym_L_SQUOTE] = ACTIONS(4138), + [anon_sym_u_SQUOTE] = ACTIONS(4138), + [anon_sym_U_SQUOTE] = ACTIONS(4138), + [anon_sym_u8_SQUOTE] = ACTIONS(4138), + [anon_sym_SQUOTE] = ACTIONS(4138), + [anon_sym_L_DQUOTE] = ACTIONS(4138), + [anon_sym_u_DQUOTE] = ACTIONS(4138), + [anon_sym_U_DQUOTE] = ACTIONS(4138), + [anon_sym_u8_DQUOTE] = ACTIONS(4138), + [anon_sym_DQUOTE] = ACTIONS(4138), + [sym_true] = ACTIONS(4136), + [sym_false] = ACTIONS(4136), + [anon_sym_NULL] = ACTIONS(4136), + [anon_sym_nullptr] = ACTIONS(4136), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4136), + [anon_sym_decltype] = ACTIONS(4136), + [anon_sym_explicit] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4136), + [anon_sym_module] = ACTIONS(4136), + [anon_sym_import] = ACTIONS(4136), + [anon_sym_template] = ACTIONS(4136), + [anon_sym_operator] = ACTIONS(4136), + [anon_sym_try] = ACTIONS(4136), + [anon_sym_delete] = ACTIONS(4136), + [anon_sym_throw] = ACTIONS(4136), + [anon_sym_namespace] = ACTIONS(4136), + [anon_sym_static_assert] = ACTIONS(4136), + [anon_sym_concept] = ACTIONS(4136), + [anon_sym_co_return] = ACTIONS(4136), + [anon_sym_co_yield] = ACTIONS(4136), + [anon_sym_R_DQUOTE] = ACTIONS(4138), + [anon_sym_LR_DQUOTE] = ACTIONS(4138), + [anon_sym_uR_DQUOTE] = ACTIONS(4138), + [anon_sym_UR_DQUOTE] = ACTIONS(4138), + [anon_sym_u8R_DQUOTE] = ACTIONS(4138), + [anon_sym_co_await] = ACTIONS(4136), + [anon_sym_new] = ACTIONS(4136), + [anon_sym_requires] = ACTIONS(4136), + [anon_sym_CARET_CARET] = ACTIONS(4138), + [anon_sym_LBRACK_COLON] = ACTIONS(4138), + [sym_this] = ACTIONS(4136), }, - [STATE(794)] = { - [sym_identifier] = ACTIONS(3946), - [aux_sym_preproc_include_token1] = ACTIONS(3946), - [aux_sym_preproc_def_token1] = ACTIONS(3946), - [aux_sym_preproc_if_token1] = ACTIONS(3946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3946), - [sym_preproc_directive] = ACTIONS(3946), - [anon_sym_LPAREN2] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_TILDE] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3946), - [anon_sym_PLUS] = ACTIONS(3946), - [anon_sym_STAR] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym___extension__] = ACTIONS(3946), - [anon_sym_typedef] = ACTIONS(3946), - [anon_sym_virtual] = ACTIONS(3946), - [anon_sym_extern] = ACTIONS(3946), - [anon_sym___attribute__] = ACTIONS(3946), - [anon_sym___attribute] = ACTIONS(3946), - [anon_sym_using] = ACTIONS(3946), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3948), - [anon_sym___declspec] = ACTIONS(3946), - [anon_sym___based] = ACTIONS(3946), - [anon_sym___cdecl] = ACTIONS(3946), - [anon_sym___clrcall] = ACTIONS(3946), - [anon_sym___stdcall] = ACTIONS(3946), - [anon_sym___fastcall] = ACTIONS(3946), - [anon_sym___thiscall] = ACTIONS(3946), - [anon_sym___vectorcall] = ACTIONS(3946), - [anon_sym_LBRACE] = ACTIONS(3948), - [anon_sym_RBRACE] = ACTIONS(3948), - [anon_sym_signed] = ACTIONS(3946), - [anon_sym_unsigned] = ACTIONS(3946), - [anon_sym_long] = ACTIONS(3946), - [anon_sym_short] = ACTIONS(3946), - [anon_sym_LBRACK] = ACTIONS(3946), - [anon_sym_static] = ACTIONS(3946), - [anon_sym_register] = ACTIONS(3946), - [anon_sym_inline] = ACTIONS(3946), - [anon_sym___inline] = ACTIONS(3946), - [anon_sym___inline__] = ACTIONS(3946), - [anon_sym___forceinline] = ACTIONS(3946), - [anon_sym_thread_local] = ACTIONS(3946), - [anon_sym___thread] = ACTIONS(3946), - [anon_sym_const] = ACTIONS(3946), - [anon_sym_constexpr] = ACTIONS(3946), - [anon_sym_volatile] = ACTIONS(3946), - [anon_sym_restrict] = ACTIONS(3946), - [anon_sym___restrict__] = ACTIONS(3946), - [anon_sym__Atomic] = ACTIONS(3946), - [anon_sym__Noreturn] = ACTIONS(3946), - [anon_sym_noreturn] = ACTIONS(3946), - [anon_sym__Nonnull] = ACTIONS(3946), - [anon_sym_mutable] = ACTIONS(3946), - [anon_sym_constinit] = ACTIONS(3946), - [anon_sym_consteval] = ACTIONS(3946), - [anon_sym_alignas] = ACTIONS(3946), - [anon_sym__Alignas] = ACTIONS(3946), - [sym_primitive_type] = ACTIONS(3946), - [anon_sym_enum] = ACTIONS(3946), - [anon_sym_class] = ACTIONS(3946), - [anon_sym_struct] = ACTIONS(3946), - [anon_sym_union] = ACTIONS(3946), - [anon_sym_if] = ACTIONS(3946), - [anon_sym_switch] = ACTIONS(3946), - [anon_sym_case] = ACTIONS(3946), - [anon_sym_default] = ACTIONS(3946), - [anon_sym_while] = ACTIONS(3946), - [anon_sym_do] = ACTIONS(3946), - [anon_sym_for] = ACTIONS(3946), - [anon_sym_return] = ACTIONS(3946), - [anon_sym_break] = ACTIONS(3946), - [anon_sym_continue] = ACTIONS(3946), - [anon_sym_goto] = ACTIONS(3946), - [anon_sym___try] = ACTIONS(3946), - [anon_sym___leave] = ACTIONS(3946), - [anon_sym_not] = ACTIONS(3946), - [anon_sym_compl] = ACTIONS(3946), - [anon_sym_DASH_DASH] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3948), - [anon_sym_sizeof] = ACTIONS(3946), - [anon_sym___alignof__] = ACTIONS(3946), - [anon_sym___alignof] = ACTIONS(3946), - [anon_sym__alignof] = ACTIONS(3946), - [anon_sym_alignof] = ACTIONS(3946), - [anon_sym__Alignof] = ACTIONS(3946), - [anon_sym_offsetof] = ACTIONS(3946), - [anon_sym__Generic] = ACTIONS(3946), - [anon_sym_typename] = ACTIONS(3946), - [anon_sym_asm] = ACTIONS(3946), - [anon_sym___asm__] = ACTIONS(3946), - [anon_sym___asm] = ACTIONS(3946), - [sym_number_literal] = ACTIONS(3948), - [anon_sym_L_SQUOTE] = ACTIONS(3948), - [anon_sym_u_SQUOTE] = ACTIONS(3948), - [anon_sym_U_SQUOTE] = ACTIONS(3948), - [anon_sym_u8_SQUOTE] = ACTIONS(3948), - [anon_sym_SQUOTE] = ACTIONS(3948), - [anon_sym_L_DQUOTE] = ACTIONS(3948), - [anon_sym_u_DQUOTE] = ACTIONS(3948), - [anon_sym_U_DQUOTE] = ACTIONS(3948), - [anon_sym_u8_DQUOTE] = ACTIONS(3948), - [anon_sym_DQUOTE] = ACTIONS(3948), - [sym_true] = ACTIONS(3946), - [sym_false] = ACTIONS(3946), - [anon_sym_NULL] = ACTIONS(3946), - [anon_sym_nullptr] = ACTIONS(3946), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3946), - [anon_sym_decltype] = ACTIONS(3946), - [anon_sym_explicit] = ACTIONS(3946), - [anon_sym_template] = ACTIONS(3946), - [anon_sym_operator] = ACTIONS(3946), - [anon_sym_try] = ACTIONS(3946), - [anon_sym_delete] = ACTIONS(3946), - [anon_sym_throw] = ACTIONS(3946), - [anon_sym_namespace] = ACTIONS(3946), - [anon_sym_static_assert] = ACTIONS(3946), - [anon_sym_concept] = ACTIONS(3946), - [anon_sym_co_return] = ACTIONS(3946), - [anon_sym_co_yield] = ACTIONS(3946), - [anon_sym_R_DQUOTE] = ACTIONS(3948), - [anon_sym_LR_DQUOTE] = ACTIONS(3948), - [anon_sym_uR_DQUOTE] = ACTIONS(3948), - [anon_sym_UR_DQUOTE] = ACTIONS(3948), - [anon_sym_u8R_DQUOTE] = ACTIONS(3948), - [anon_sym_co_await] = ACTIONS(3946), - [anon_sym_new] = ACTIONS(3946), - [anon_sym_requires] = ACTIONS(3946), - [anon_sym_CARET_CARET] = ACTIONS(3948), - [anon_sym_LBRACK_COLON] = ACTIONS(3948), - [sym_this] = ACTIONS(3946), + [STATE(680)] = { + [sym_identifier] = ACTIONS(4140), + [aux_sym_preproc_include_token1] = ACTIONS(4140), + [aux_sym_preproc_def_token1] = ACTIONS(4140), + [aux_sym_preproc_if_token1] = ACTIONS(4140), + [aux_sym_preproc_if_token2] = ACTIONS(4140), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4140), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4140), + [sym_preproc_directive] = ACTIONS(4140), + [anon_sym_LPAREN2] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4142), + [anon_sym_TILDE] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym___extension__] = ACTIONS(4140), + [anon_sym_typedef] = ACTIONS(4140), + [anon_sym_virtual] = ACTIONS(4140), + [anon_sym_extern] = ACTIONS(4140), + [anon_sym___attribute__] = ACTIONS(4140), + [anon_sym___attribute] = ACTIONS(4140), + [anon_sym_using] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4142), + [anon_sym___declspec] = ACTIONS(4140), + [anon_sym___based] = ACTIONS(4140), + [anon_sym___cdecl] = ACTIONS(4140), + [anon_sym___clrcall] = ACTIONS(4140), + [anon_sym___stdcall] = ACTIONS(4140), + [anon_sym___fastcall] = ACTIONS(4140), + [anon_sym___thiscall] = ACTIONS(4140), + [anon_sym___vectorcall] = ACTIONS(4140), + [anon_sym_LBRACE] = ACTIONS(4142), + [anon_sym_signed] = ACTIONS(4140), + [anon_sym_unsigned] = ACTIONS(4140), + [anon_sym_long] = ACTIONS(4140), + [anon_sym_short] = ACTIONS(4140), + [anon_sym_LBRACK] = ACTIONS(4140), + [anon_sym_static] = ACTIONS(4140), + [anon_sym_register] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym___inline] = ACTIONS(4140), + [anon_sym___inline__] = ACTIONS(4140), + [anon_sym___forceinline] = ACTIONS(4140), + [anon_sym_thread_local] = ACTIONS(4140), + [anon_sym___thread] = ACTIONS(4140), + [anon_sym_const] = ACTIONS(4140), + [anon_sym_constexpr] = ACTIONS(4140), + [anon_sym_volatile] = ACTIONS(4140), + [anon_sym_restrict] = ACTIONS(4140), + [anon_sym___restrict__] = ACTIONS(4140), + [anon_sym__Atomic] = ACTIONS(4140), + [anon_sym__Noreturn] = ACTIONS(4140), + [anon_sym_noreturn] = ACTIONS(4140), + [anon_sym__Nonnull] = ACTIONS(4140), + [anon_sym_mutable] = ACTIONS(4140), + [anon_sym_constinit] = ACTIONS(4140), + [anon_sym_consteval] = ACTIONS(4140), + [anon_sym_alignas] = ACTIONS(4140), + [anon_sym__Alignas] = ACTIONS(4140), + [sym_primitive_type] = ACTIONS(4140), + [anon_sym_enum] = ACTIONS(4140), + [anon_sym_class] = ACTIONS(4140), + [anon_sym_struct] = ACTIONS(4140), + [anon_sym_union] = ACTIONS(4140), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_switch] = ACTIONS(4140), + [anon_sym_case] = ACTIONS(4140), + [anon_sym_default] = ACTIONS(4140), + [anon_sym_while] = ACTIONS(4140), + [anon_sym_do] = ACTIONS(4140), + [anon_sym_for] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_goto] = ACTIONS(4140), + [anon_sym___try] = ACTIONS(4140), + [anon_sym___leave] = ACTIONS(4140), + [anon_sym_not] = ACTIONS(4140), + [anon_sym_compl] = ACTIONS(4140), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_sizeof] = ACTIONS(4140), + [anon_sym___alignof__] = ACTIONS(4140), + [anon_sym___alignof] = ACTIONS(4140), + [anon_sym__alignof] = ACTIONS(4140), + [anon_sym_alignof] = ACTIONS(4140), + [anon_sym__Alignof] = ACTIONS(4140), + [anon_sym_offsetof] = ACTIONS(4140), + [anon_sym__Generic] = ACTIONS(4140), + [anon_sym_typename] = ACTIONS(4140), + [anon_sym_asm] = ACTIONS(4140), + [anon_sym___asm__] = ACTIONS(4140), + [anon_sym___asm] = ACTIONS(4140), + [sym_number_literal] = ACTIONS(4142), + [anon_sym_L_SQUOTE] = ACTIONS(4142), + [anon_sym_u_SQUOTE] = ACTIONS(4142), + [anon_sym_U_SQUOTE] = ACTIONS(4142), + [anon_sym_u8_SQUOTE] = ACTIONS(4142), + [anon_sym_SQUOTE] = ACTIONS(4142), + [anon_sym_L_DQUOTE] = ACTIONS(4142), + [anon_sym_u_DQUOTE] = ACTIONS(4142), + [anon_sym_U_DQUOTE] = ACTIONS(4142), + [anon_sym_u8_DQUOTE] = ACTIONS(4142), + [anon_sym_DQUOTE] = ACTIONS(4142), + [sym_true] = ACTIONS(4140), + [sym_false] = ACTIONS(4140), + [anon_sym_NULL] = ACTIONS(4140), + [anon_sym_nullptr] = ACTIONS(4140), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4140), + [anon_sym_decltype] = ACTIONS(4140), + [anon_sym_explicit] = ACTIONS(4140), + [anon_sym_export] = ACTIONS(4140), + [anon_sym_module] = ACTIONS(4140), + [anon_sym_import] = ACTIONS(4140), + [anon_sym_template] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_delete] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_namespace] = ACTIONS(4140), + [anon_sym_static_assert] = ACTIONS(4140), + [anon_sym_concept] = ACTIONS(4140), + [anon_sym_co_return] = ACTIONS(4140), + [anon_sym_co_yield] = ACTIONS(4140), + [anon_sym_R_DQUOTE] = ACTIONS(4142), + [anon_sym_LR_DQUOTE] = ACTIONS(4142), + [anon_sym_uR_DQUOTE] = ACTIONS(4142), + [anon_sym_UR_DQUOTE] = ACTIONS(4142), + [anon_sym_u8R_DQUOTE] = ACTIONS(4142), + [anon_sym_co_await] = ACTIONS(4140), + [anon_sym_new] = ACTIONS(4140), + [anon_sym_requires] = ACTIONS(4140), + [anon_sym_CARET_CARET] = ACTIONS(4142), + [anon_sym_LBRACK_COLON] = ACTIONS(4142), + [sym_this] = ACTIONS(4140), }, - [STATE(795)] = { - [sym_identifier] = ACTIONS(3950), - [aux_sym_preproc_include_token1] = ACTIONS(3950), - [aux_sym_preproc_def_token1] = ACTIONS(3950), - [aux_sym_preproc_if_token1] = ACTIONS(3950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), - [sym_preproc_directive] = ACTIONS(3950), - [anon_sym_LPAREN2] = ACTIONS(3952), - [anon_sym_BANG] = ACTIONS(3952), - [anon_sym_TILDE] = ACTIONS(3952), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_STAR] = ACTIONS(3952), - [anon_sym_AMP_AMP] = ACTIONS(3952), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_SEMI] = ACTIONS(3952), - [anon_sym___extension__] = ACTIONS(3950), - [anon_sym_typedef] = ACTIONS(3950), - [anon_sym_virtual] = ACTIONS(3950), - [anon_sym_extern] = ACTIONS(3950), - [anon_sym___attribute__] = ACTIONS(3950), - [anon_sym___attribute] = ACTIONS(3950), - [anon_sym_using] = ACTIONS(3950), - [anon_sym_COLON_COLON] = ACTIONS(3952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), - [anon_sym___declspec] = ACTIONS(3950), - [anon_sym___based] = ACTIONS(3950), - [anon_sym___cdecl] = ACTIONS(3950), - [anon_sym___clrcall] = ACTIONS(3950), - [anon_sym___stdcall] = ACTIONS(3950), - [anon_sym___fastcall] = ACTIONS(3950), - [anon_sym___thiscall] = ACTIONS(3950), - [anon_sym___vectorcall] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3952), - [anon_sym_RBRACE] = ACTIONS(3952), - [anon_sym_signed] = ACTIONS(3950), - [anon_sym_unsigned] = ACTIONS(3950), - [anon_sym_long] = ACTIONS(3950), - [anon_sym_short] = ACTIONS(3950), - [anon_sym_LBRACK] = ACTIONS(3950), - [anon_sym_static] = ACTIONS(3950), - [anon_sym_register] = ACTIONS(3950), - [anon_sym_inline] = ACTIONS(3950), - [anon_sym___inline] = ACTIONS(3950), - [anon_sym___inline__] = ACTIONS(3950), - [anon_sym___forceinline] = ACTIONS(3950), - [anon_sym_thread_local] = ACTIONS(3950), - [anon_sym___thread] = ACTIONS(3950), - [anon_sym_const] = ACTIONS(3950), - [anon_sym_constexpr] = ACTIONS(3950), - [anon_sym_volatile] = ACTIONS(3950), - [anon_sym_restrict] = ACTIONS(3950), - [anon_sym___restrict__] = ACTIONS(3950), - [anon_sym__Atomic] = ACTIONS(3950), - [anon_sym__Noreturn] = ACTIONS(3950), - [anon_sym_noreturn] = ACTIONS(3950), - [anon_sym__Nonnull] = ACTIONS(3950), - [anon_sym_mutable] = ACTIONS(3950), - [anon_sym_constinit] = ACTIONS(3950), - [anon_sym_consteval] = ACTIONS(3950), - [anon_sym_alignas] = ACTIONS(3950), - [anon_sym__Alignas] = ACTIONS(3950), - [sym_primitive_type] = ACTIONS(3950), - [anon_sym_enum] = ACTIONS(3950), - [anon_sym_class] = ACTIONS(3950), - [anon_sym_struct] = ACTIONS(3950), - [anon_sym_union] = ACTIONS(3950), - [anon_sym_if] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_case] = ACTIONS(3950), - [anon_sym_default] = ACTIONS(3950), - [anon_sym_while] = ACTIONS(3950), - [anon_sym_do] = ACTIONS(3950), - [anon_sym_for] = ACTIONS(3950), - [anon_sym_return] = ACTIONS(3950), - [anon_sym_break] = ACTIONS(3950), - [anon_sym_continue] = ACTIONS(3950), - [anon_sym_goto] = ACTIONS(3950), - [anon_sym___try] = ACTIONS(3950), - [anon_sym___leave] = ACTIONS(3950), - [anon_sym_not] = ACTIONS(3950), - [anon_sym_compl] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3952), - [anon_sym_PLUS_PLUS] = ACTIONS(3952), - [anon_sym_sizeof] = ACTIONS(3950), - [anon_sym___alignof__] = ACTIONS(3950), - [anon_sym___alignof] = ACTIONS(3950), - [anon_sym__alignof] = ACTIONS(3950), - [anon_sym_alignof] = ACTIONS(3950), - [anon_sym__Alignof] = ACTIONS(3950), - [anon_sym_offsetof] = ACTIONS(3950), - [anon_sym__Generic] = ACTIONS(3950), - [anon_sym_typename] = ACTIONS(3950), - [anon_sym_asm] = ACTIONS(3950), - [anon_sym___asm__] = ACTIONS(3950), - [anon_sym___asm] = ACTIONS(3950), - [sym_number_literal] = ACTIONS(3952), - [anon_sym_L_SQUOTE] = ACTIONS(3952), - [anon_sym_u_SQUOTE] = ACTIONS(3952), - [anon_sym_U_SQUOTE] = ACTIONS(3952), - [anon_sym_u8_SQUOTE] = ACTIONS(3952), - [anon_sym_SQUOTE] = ACTIONS(3952), - [anon_sym_L_DQUOTE] = ACTIONS(3952), - [anon_sym_u_DQUOTE] = ACTIONS(3952), - [anon_sym_U_DQUOTE] = ACTIONS(3952), - [anon_sym_u8_DQUOTE] = ACTIONS(3952), - [anon_sym_DQUOTE] = ACTIONS(3952), - [sym_true] = ACTIONS(3950), - [sym_false] = ACTIONS(3950), - [anon_sym_NULL] = ACTIONS(3950), - [anon_sym_nullptr] = ACTIONS(3950), + [STATE(681)] = { + [sym_identifier] = ACTIONS(4144), + [aux_sym_preproc_include_token1] = ACTIONS(4144), + [aux_sym_preproc_def_token1] = ACTIONS(4144), + [aux_sym_preproc_if_token1] = ACTIONS(4144), + [aux_sym_preproc_if_token2] = ACTIONS(4144), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4144), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4144), + [sym_preproc_directive] = ACTIONS(4144), + [anon_sym_LPAREN2] = ACTIONS(4146), + [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_TILDE] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4144), + [anon_sym_STAR] = ACTIONS(4146), + [anon_sym_AMP_AMP] = ACTIONS(4146), + [anon_sym_AMP] = ACTIONS(4144), + [anon_sym_SEMI] = ACTIONS(4146), + [anon_sym___extension__] = ACTIONS(4144), + [anon_sym_typedef] = ACTIONS(4144), + [anon_sym_virtual] = ACTIONS(4144), + [anon_sym_extern] = ACTIONS(4144), + [anon_sym___attribute__] = ACTIONS(4144), + [anon_sym___attribute] = ACTIONS(4144), + [anon_sym_using] = ACTIONS(4144), + [anon_sym_COLON_COLON] = ACTIONS(4146), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4146), + [anon_sym___declspec] = ACTIONS(4144), + [anon_sym___based] = ACTIONS(4144), + [anon_sym___cdecl] = ACTIONS(4144), + [anon_sym___clrcall] = ACTIONS(4144), + [anon_sym___stdcall] = ACTIONS(4144), + [anon_sym___fastcall] = ACTIONS(4144), + [anon_sym___thiscall] = ACTIONS(4144), + [anon_sym___vectorcall] = ACTIONS(4144), + [anon_sym_LBRACE] = ACTIONS(4146), + [anon_sym_signed] = ACTIONS(4144), + [anon_sym_unsigned] = ACTIONS(4144), + [anon_sym_long] = ACTIONS(4144), + [anon_sym_short] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_static] = ACTIONS(4144), + [anon_sym_register] = ACTIONS(4144), + [anon_sym_inline] = ACTIONS(4144), + [anon_sym___inline] = ACTIONS(4144), + [anon_sym___inline__] = ACTIONS(4144), + [anon_sym___forceinline] = ACTIONS(4144), + [anon_sym_thread_local] = ACTIONS(4144), + [anon_sym___thread] = ACTIONS(4144), + [anon_sym_const] = ACTIONS(4144), + [anon_sym_constexpr] = ACTIONS(4144), + [anon_sym_volatile] = ACTIONS(4144), + [anon_sym_restrict] = ACTIONS(4144), + [anon_sym___restrict__] = ACTIONS(4144), + [anon_sym__Atomic] = ACTIONS(4144), + [anon_sym__Noreturn] = ACTIONS(4144), + [anon_sym_noreturn] = ACTIONS(4144), + [anon_sym__Nonnull] = ACTIONS(4144), + [anon_sym_mutable] = ACTIONS(4144), + [anon_sym_constinit] = ACTIONS(4144), + [anon_sym_consteval] = ACTIONS(4144), + [anon_sym_alignas] = ACTIONS(4144), + [anon_sym__Alignas] = ACTIONS(4144), + [sym_primitive_type] = ACTIONS(4144), + [anon_sym_enum] = ACTIONS(4144), + [anon_sym_class] = ACTIONS(4144), + [anon_sym_struct] = ACTIONS(4144), + [anon_sym_union] = ACTIONS(4144), + [anon_sym_if] = ACTIONS(4144), + [anon_sym_switch] = ACTIONS(4144), + [anon_sym_case] = ACTIONS(4144), + [anon_sym_default] = ACTIONS(4144), + [anon_sym_while] = ACTIONS(4144), + [anon_sym_do] = ACTIONS(4144), + [anon_sym_for] = ACTIONS(4144), + [anon_sym_return] = ACTIONS(4144), + [anon_sym_break] = ACTIONS(4144), + [anon_sym_continue] = ACTIONS(4144), + [anon_sym_goto] = ACTIONS(4144), + [anon_sym___try] = ACTIONS(4144), + [anon_sym___leave] = ACTIONS(4144), + [anon_sym_not] = ACTIONS(4144), + [anon_sym_compl] = ACTIONS(4144), + [anon_sym_DASH_DASH] = ACTIONS(4146), + [anon_sym_PLUS_PLUS] = ACTIONS(4146), + [anon_sym_sizeof] = ACTIONS(4144), + [anon_sym___alignof__] = ACTIONS(4144), + [anon_sym___alignof] = ACTIONS(4144), + [anon_sym__alignof] = ACTIONS(4144), + [anon_sym_alignof] = ACTIONS(4144), + [anon_sym__Alignof] = ACTIONS(4144), + [anon_sym_offsetof] = ACTIONS(4144), + [anon_sym__Generic] = ACTIONS(4144), + [anon_sym_typename] = ACTIONS(4144), + [anon_sym_asm] = ACTIONS(4144), + [anon_sym___asm__] = ACTIONS(4144), + [anon_sym___asm] = ACTIONS(4144), + [sym_number_literal] = ACTIONS(4146), + [anon_sym_L_SQUOTE] = ACTIONS(4146), + [anon_sym_u_SQUOTE] = ACTIONS(4146), + [anon_sym_U_SQUOTE] = ACTIONS(4146), + [anon_sym_u8_SQUOTE] = ACTIONS(4146), + [anon_sym_SQUOTE] = ACTIONS(4146), + [anon_sym_L_DQUOTE] = ACTIONS(4146), + [anon_sym_u_DQUOTE] = ACTIONS(4146), + [anon_sym_U_DQUOTE] = ACTIONS(4146), + [anon_sym_u8_DQUOTE] = ACTIONS(4146), + [anon_sym_DQUOTE] = ACTIONS(4146), + [sym_true] = ACTIONS(4144), + [sym_false] = ACTIONS(4144), + [anon_sym_NULL] = ACTIONS(4144), + [anon_sym_nullptr] = ACTIONS(4144), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3950), - [anon_sym_decltype] = ACTIONS(3950), - [anon_sym_explicit] = ACTIONS(3950), - [anon_sym_template] = ACTIONS(3950), - [anon_sym_operator] = ACTIONS(3950), - [anon_sym_try] = ACTIONS(3950), - [anon_sym_delete] = ACTIONS(3950), - [anon_sym_throw] = ACTIONS(3950), - [anon_sym_namespace] = ACTIONS(3950), - [anon_sym_static_assert] = ACTIONS(3950), - [anon_sym_concept] = ACTIONS(3950), - [anon_sym_co_return] = ACTIONS(3950), - [anon_sym_co_yield] = ACTIONS(3950), - [anon_sym_R_DQUOTE] = ACTIONS(3952), - [anon_sym_LR_DQUOTE] = ACTIONS(3952), - [anon_sym_uR_DQUOTE] = ACTIONS(3952), - [anon_sym_UR_DQUOTE] = ACTIONS(3952), - [anon_sym_u8R_DQUOTE] = ACTIONS(3952), - [anon_sym_co_await] = ACTIONS(3950), - [anon_sym_new] = ACTIONS(3950), - [anon_sym_requires] = ACTIONS(3950), - [anon_sym_CARET_CARET] = ACTIONS(3952), - [anon_sym_LBRACK_COLON] = ACTIONS(3952), - [sym_this] = ACTIONS(3950), - }, - [STATE(796)] = { - [sym_identifier] = ACTIONS(4010), - [aux_sym_preproc_include_token1] = ACTIONS(4010), - [aux_sym_preproc_def_token1] = ACTIONS(4010), - [aux_sym_preproc_if_token1] = ACTIONS(4010), - [aux_sym_preproc_if_token2] = ACTIONS(4010), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4010), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4010), - [sym_preproc_directive] = ACTIONS(4010), - [anon_sym_LPAREN2] = ACTIONS(4012), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_TILDE] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4012), - [anon_sym_AMP_AMP] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4012), - [anon_sym___extension__] = ACTIONS(4010), - [anon_sym_typedef] = ACTIONS(4010), - [anon_sym_virtual] = ACTIONS(4010), - [anon_sym_extern] = ACTIONS(4010), - [anon_sym___attribute__] = ACTIONS(4010), - [anon_sym___attribute] = ACTIONS(4010), - [anon_sym_using] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4012), - [anon_sym___declspec] = ACTIONS(4010), - [anon_sym___based] = ACTIONS(4010), - [anon_sym___cdecl] = ACTIONS(4010), - [anon_sym___clrcall] = ACTIONS(4010), - [anon_sym___stdcall] = ACTIONS(4010), - [anon_sym___fastcall] = ACTIONS(4010), - [anon_sym___thiscall] = ACTIONS(4010), - [anon_sym___vectorcall] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_signed] = ACTIONS(4010), - [anon_sym_unsigned] = ACTIONS(4010), - [anon_sym_long] = ACTIONS(4010), - [anon_sym_short] = ACTIONS(4010), - [anon_sym_LBRACK] = ACTIONS(4010), - [anon_sym_static] = ACTIONS(4010), - [anon_sym_register] = ACTIONS(4010), - [anon_sym_inline] = ACTIONS(4010), - [anon_sym___inline] = ACTIONS(4010), - [anon_sym___inline__] = ACTIONS(4010), - [anon_sym___forceinline] = ACTIONS(4010), - [anon_sym_thread_local] = ACTIONS(4010), - [anon_sym___thread] = ACTIONS(4010), - [anon_sym_const] = ACTIONS(4010), - [anon_sym_constexpr] = ACTIONS(4010), - [anon_sym_volatile] = ACTIONS(4010), - [anon_sym_restrict] = ACTIONS(4010), - [anon_sym___restrict__] = ACTIONS(4010), - [anon_sym__Atomic] = ACTIONS(4010), - [anon_sym__Noreturn] = ACTIONS(4010), - [anon_sym_noreturn] = ACTIONS(4010), - [anon_sym__Nonnull] = ACTIONS(4010), - [anon_sym_mutable] = ACTIONS(4010), - [anon_sym_constinit] = ACTIONS(4010), - [anon_sym_consteval] = ACTIONS(4010), - [anon_sym_alignas] = ACTIONS(4010), - [anon_sym__Alignas] = ACTIONS(4010), - [sym_primitive_type] = ACTIONS(4010), - [anon_sym_enum] = ACTIONS(4010), - [anon_sym_class] = ACTIONS(4010), - [anon_sym_struct] = ACTIONS(4010), - [anon_sym_union] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_switch] = ACTIONS(4010), - [anon_sym_case] = ACTIONS(4010), - [anon_sym_default] = ACTIONS(4010), - [anon_sym_while] = ACTIONS(4010), - [anon_sym_do] = ACTIONS(4010), - [anon_sym_for] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_goto] = ACTIONS(4010), - [anon_sym___try] = ACTIONS(4010), - [anon_sym___leave] = ACTIONS(4010), - [anon_sym_not] = ACTIONS(4010), - [anon_sym_compl] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4012), - [anon_sym_sizeof] = ACTIONS(4010), - [anon_sym___alignof__] = ACTIONS(4010), - [anon_sym___alignof] = ACTIONS(4010), - [anon_sym__alignof] = ACTIONS(4010), - [anon_sym_alignof] = ACTIONS(4010), - [anon_sym__Alignof] = ACTIONS(4010), - [anon_sym_offsetof] = ACTIONS(4010), - [anon_sym__Generic] = ACTIONS(4010), - [anon_sym_typename] = ACTIONS(4010), - [anon_sym_asm] = ACTIONS(4010), - [anon_sym___asm__] = ACTIONS(4010), - [anon_sym___asm] = ACTIONS(4010), - [sym_number_literal] = ACTIONS(4012), - [anon_sym_L_SQUOTE] = ACTIONS(4012), - [anon_sym_u_SQUOTE] = ACTIONS(4012), - [anon_sym_U_SQUOTE] = ACTIONS(4012), - [anon_sym_u8_SQUOTE] = ACTIONS(4012), - [anon_sym_SQUOTE] = ACTIONS(4012), - [anon_sym_L_DQUOTE] = ACTIONS(4012), - [anon_sym_u_DQUOTE] = ACTIONS(4012), - [anon_sym_U_DQUOTE] = ACTIONS(4012), - [anon_sym_u8_DQUOTE] = ACTIONS(4012), - [anon_sym_DQUOTE] = ACTIONS(4012), - [sym_true] = ACTIONS(4010), - [sym_false] = ACTIONS(4010), - [anon_sym_NULL] = ACTIONS(4010), - [anon_sym_nullptr] = ACTIONS(4010), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4010), - [anon_sym_decltype] = ACTIONS(4010), - [anon_sym_explicit] = ACTIONS(4010), - [anon_sym_template] = ACTIONS(4010), - [anon_sym_operator] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_delete] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_namespace] = ACTIONS(4010), - [anon_sym_static_assert] = ACTIONS(4010), - [anon_sym_concept] = ACTIONS(4010), - [anon_sym_co_return] = ACTIONS(4010), - [anon_sym_co_yield] = ACTIONS(4010), - [anon_sym_R_DQUOTE] = ACTIONS(4012), - [anon_sym_LR_DQUOTE] = ACTIONS(4012), - [anon_sym_uR_DQUOTE] = ACTIONS(4012), - [anon_sym_UR_DQUOTE] = ACTIONS(4012), - [anon_sym_u8R_DQUOTE] = ACTIONS(4012), - [anon_sym_co_await] = ACTIONS(4010), - [anon_sym_new] = ACTIONS(4010), - [anon_sym_requires] = ACTIONS(4010), - [anon_sym_CARET_CARET] = ACTIONS(4012), - [anon_sym_LBRACK_COLON] = ACTIONS(4012), - [sym_this] = ACTIONS(4010), + [sym_auto] = ACTIONS(4144), + [anon_sym_decltype] = ACTIONS(4144), + [anon_sym_explicit] = ACTIONS(4144), + [anon_sym_export] = ACTIONS(4144), + [anon_sym_module] = ACTIONS(4144), + [anon_sym_import] = ACTIONS(4144), + [anon_sym_template] = ACTIONS(4144), + [anon_sym_operator] = ACTIONS(4144), + [anon_sym_try] = ACTIONS(4144), + [anon_sym_delete] = ACTIONS(4144), + [anon_sym_throw] = ACTIONS(4144), + [anon_sym_namespace] = ACTIONS(4144), + [anon_sym_static_assert] = ACTIONS(4144), + [anon_sym_concept] = ACTIONS(4144), + [anon_sym_co_return] = ACTIONS(4144), + [anon_sym_co_yield] = ACTIONS(4144), + [anon_sym_R_DQUOTE] = ACTIONS(4146), + [anon_sym_LR_DQUOTE] = ACTIONS(4146), + [anon_sym_uR_DQUOTE] = ACTIONS(4146), + [anon_sym_UR_DQUOTE] = ACTIONS(4146), + [anon_sym_u8R_DQUOTE] = ACTIONS(4146), + [anon_sym_co_await] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_requires] = ACTIONS(4144), + [anon_sym_CARET_CARET] = ACTIONS(4146), + [anon_sym_LBRACK_COLON] = ACTIONS(4146), + [sym_this] = ACTIONS(4144), }, - [STATE(797)] = { - [sym_identifier] = ACTIONS(3954), - [aux_sym_preproc_include_token1] = ACTIONS(3954), - [aux_sym_preproc_def_token1] = ACTIONS(3954), - [aux_sym_preproc_if_token1] = ACTIONS(3954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3954), - [sym_preproc_directive] = ACTIONS(3954), - [anon_sym_LPAREN2] = ACTIONS(3956), - [anon_sym_BANG] = ACTIONS(3956), - [anon_sym_TILDE] = ACTIONS(3956), - [anon_sym_DASH] = ACTIONS(3954), - [anon_sym_PLUS] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3956), - [anon_sym_AMP_AMP] = ACTIONS(3956), - [anon_sym_AMP] = ACTIONS(3954), - [anon_sym_SEMI] = ACTIONS(3956), - [anon_sym___extension__] = ACTIONS(3954), - [anon_sym_typedef] = ACTIONS(3954), - [anon_sym_virtual] = ACTIONS(3954), - [anon_sym_extern] = ACTIONS(3954), - [anon_sym___attribute__] = ACTIONS(3954), - [anon_sym___attribute] = ACTIONS(3954), - [anon_sym_using] = ACTIONS(3954), - [anon_sym_COLON_COLON] = ACTIONS(3956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3956), - [anon_sym___declspec] = ACTIONS(3954), - [anon_sym___based] = ACTIONS(3954), - [anon_sym___cdecl] = ACTIONS(3954), - [anon_sym___clrcall] = ACTIONS(3954), - [anon_sym___stdcall] = ACTIONS(3954), - [anon_sym___fastcall] = ACTIONS(3954), - [anon_sym___thiscall] = ACTIONS(3954), - [anon_sym___vectorcall] = ACTIONS(3954), - [anon_sym_LBRACE] = ACTIONS(3956), - [anon_sym_RBRACE] = ACTIONS(3956), - [anon_sym_signed] = ACTIONS(3954), - [anon_sym_unsigned] = ACTIONS(3954), - [anon_sym_long] = ACTIONS(3954), - [anon_sym_short] = ACTIONS(3954), - [anon_sym_LBRACK] = ACTIONS(3954), - [anon_sym_static] = ACTIONS(3954), - [anon_sym_register] = ACTIONS(3954), - [anon_sym_inline] = ACTIONS(3954), - [anon_sym___inline] = ACTIONS(3954), - [anon_sym___inline__] = ACTIONS(3954), - [anon_sym___forceinline] = ACTIONS(3954), - [anon_sym_thread_local] = ACTIONS(3954), - [anon_sym___thread] = ACTIONS(3954), - [anon_sym_const] = ACTIONS(3954), - [anon_sym_constexpr] = ACTIONS(3954), - [anon_sym_volatile] = ACTIONS(3954), - [anon_sym_restrict] = ACTIONS(3954), - [anon_sym___restrict__] = ACTIONS(3954), - [anon_sym__Atomic] = ACTIONS(3954), - [anon_sym__Noreturn] = ACTIONS(3954), - [anon_sym_noreturn] = ACTIONS(3954), - [anon_sym__Nonnull] = ACTIONS(3954), - [anon_sym_mutable] = ACTIONS(3954), - [anon_sym_constinit] = ACTIONS(3954), - [anon_sym_consteval] = ACTIONS(3954), - [anon_sym_alignas] = ACTIONS(3954), - [anon_sym__Alignas] = ACTIONS(3954), - [sym_primitive_type] = ACTIONS(3954), - [anon_sym_enum] = ACTIONS(3954), - [anon_sym_class] = ACTIONS(3954), - [anon_sym_struct] = ACTIONS(3954), - [anon_sym_union] = ACTIONS(3954), - [anon_sym_if] = ACTIONS(3954), - [anon_sym_switch] = ACTIONS(3954), - [anon_sym_case] = ACTIONS(3954), - [anon_sym_default] = ACTIONS(3954), - [anon_sym_while] = ACTIONS(3954), - [anon_sym_do] = ACTIONS(3954), - [anon_sym_for] = ACTIONS(3954), - [anon_sym_return] = ACTIONS(3954), - [anon_sym_break] = ACTIONS(3954), - [anon_sym_continue] = ACTIONS(3954), - [anon_sym_goto] = ACTIONS(3954), - [anon_sym___try] = ACTIONS(3954), - [anon_sym___leave] = ACTIONS(3954), - [anon_sym_not] = ACTIONS(3954), - [anon_sym_compl] = ACTIONS(3954), - [anon_sym_DASH_DASH] = ACTIONS(3956), - [anon_sym_PLUS_PLUS] = ACTIONS(3956), - [anon_sym_sizeof] = ACTIONS(3954), - [anon_sym___alignof__] = ACTIONS(3954), - [anon_sym___alignof] = ACTIONS(3954), - [anon_sym__alignof] = ACTIONS(3954), - [anon_sym_alignof] = ACTIONS(3954), - [anon_sym__Alignof] = ACTIONS(3954), - [anon_sym_offsetof] = ACTIONS(3954), - [anon_sym__Generic] = ACTIONS(3954), - [anon_sym_typename] = ACTIONS(3954), - [anon_sym_asm] = ACTIONS(3954), - [anon_sym___asm__] = ACTIONS(3954), - [anon_sym___asm] = ACTIONS(3954), - [sym_number_literal] = ACTIONS(3956), - [anon_sym_L_SQUOTE] = ACTIONS(3956), - [anon_sym_u_SQUOTE] = ACTIONS(3956), - [anon_sym_U_SQUOTE] = ACTIONS(3956), - [anon_sym_u8_SQUOTE] = ACTIONS(3956), - [anon_sym_SQUOTE] = ACTIONS(3956), - [anon_sym_L_DQUOTE] = ACTIONS(3956), - [anon_sym_u_DQUOTE] = ACTIONS(3956), - [anon_sym_U_DQUOTE] = ACTIONS(3956), - [anon_sym_u8_DQUOTE] = ACTIONS(3956), - [anon_sym_DQUOTE] = ACTIONS(3956), - [sym_true] = ACTIONS(3954), - [sym_false] = ACTIONS(3954), - [anon_sym_NULL] = ACTIONS(3954), - [anon_sym_nullptr] = ACTIONS(3954), + [STATE(682)] = { + [sym_identifier] = ACTIONS(4148), + [aux_sym_preproc_include_token1] = ACTIONS(4148), + [aux_sym_preproc_def_token1] = ACTIONS(4148), + [aux_sym_preproc_if_token1] = ACTIONS(4148), + [aux_sym_preproc_if_token2] = ACTIONS(4148), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4148), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4148), + [sym_preproc_directive] = ACTIONS(4148), + [anon_sym_LPAREN2] = ACTIONS(4150), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_TILDE] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4148), + [anon_sym_PLUS] = ACTIONS(4148), + [anon_sym_STAR] = ACTIONS(4150), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_AMP] = ACTIONS(4148), + [anon_sym_SEMI] = ACTIONS(4150), + [anon_sym___extension__] = ACTIONS(4148), + [anon_sym_typedef] = ACTIONS(4148), + [anon_sym_virtual] = ACTIONS(4148), + [anon_sym_extern] = ACTIONS(4148), + [anon_sym___attribute__] = ACTIONS(4148), + [anon_sym___attribute] = ACTIONS(4148), + [anon_sym_using] = ACTIONS(4148), + [anon_sym_COLON_COLON] = ACTIONS(4150), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4150), + [anon_sym___declspec] = ACTIONS(4148), + [anon_sym___based] = ACTIONS(4148), + [anon_sym___cdecl] = ACTIONS(4148), + [anon_sym___clrcall] = ACTIONS(4148), + [anon_sym___stdcall] = ACTIONS(4148), + [anon_sym___fastcall] = ACTIONS(4148), + [anon_sym___thiscall] = ACTIONS(4148), + [anon_sym___vectorcall] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4150), + [anon_sym_signed] = ACTIONS(4148), + [anon_sym_unsigned] = ACTIONS(4148), + [anon_sym_long] = ACTIONS(4148), + [anon_sym_short] = ACTIONS(4148), + [anon_sym_LBRACK] = ACTIONS(4148), + [anon_sym_static] = ACTIONS(4148), + [anon_sym_register] = ACTIONS(4148), + [anon_sym_inline] = ACTIONS(4148), + [anon_sym___inline] = ACTIONS(4148), + [anon_sym___inline__] = ACTIONS(4148), + [anon_sym___forceinline] = ACTIONS(4148), + [anon_sym_thread_local] = ACTIONS(4148), + [anon_sym___thread] = ACTIONS(4148), + [anon_sym_const] = ACTIONS(4148), + [anon_sym_constexpr] = ACTIONS(4148), + [anon_sym_volatile] = ACTIONS(4148), + [anon_sym_restrict] = ACTIONS(4148), + [anon_sym___restrict__] = ACTIONS(4148), + [anon_sym__Atomic] = ACTIONS(4148), + [anon_sym__Noreturn] = ACTIONS(4148), + [anon_sym_noreturn] = ACTIONS(4148), + [anon_sym__Nonnull] = ACTIONS(4148), + [anon_sym_mutable] = ACTIONS(4148), + [anon_sym_constinit] = ACTIONS(4148), + [anon_sym_consteval] = ACTIONS(4148), + [anon_sym_alignas] = ACTIONS(4148), + [anon_sym__Alignas] = ACTIONS(4148), + [sym_primitive_type] = ACTIONS(4148), + [anon_sym_enum] = ACTIONS(4148), + [anon_sym_class] = ACTIONS(4148), + [anon_sym_struct] = ACTIONS(4148), + [anon_sym_union] = ACTIONS(4148), + [anon_sym_if] = ACTIONS(4148), + [anon_sym_switch] = ACTIONS(4148), + [anon_sym_case] = ACTIONS(4148), + [anon_sym_default] = ACTIONS(4148), + [anon_sym_while] = ACTIONS(4148), + [anon_sym_do] = ACTIONS(4148), + [anon_sym_for] = ACTIONS(4148), + [anon_sym_return] = ACTIONS(4148), + [anon_sym_break] = ACTIONS(4148), + [anon_sym_continue] = ACTIONS(4148), + [anon_sym_goto] = ACTIONS(4148), + [anon_sym___try] = ACTIONS(4148), + [anon_sym___leave] = ACTIONS(4148), + [anon_sym_not] = ACTIONS(4148), + [anon_sym_compl] = ACTIONS(4148), + [anon_sym_DASH_DASH] = ACTIONS(4150), + [anon_sym_PLUS_PLUS] = ACTIONS(4150), + [anon_sym_sizeof] = ACTIONS(4148), + [anon_sym___alignof__] = ACTIONS(4148), + [anon_sym___alignof] = ACTIONS(4148), + [anon_sym__alignof] = ACTIONS(4148), + [anon_sym_alignof] = ACTIONS(4148), + [anon_sym__Alignof] = ACTIONS(4148), + [anon_sym_offsetof] = ACTIONS(4148), + [anon_sym__Generic] = ACTIONS(4148), + [anon_sym_typename] = ACTIONS(4148), + [anon_sym_asm] = ACTIONS(4148), + [anon_sym___asm__] = ACTIONS(4148), + [anon_sym___asm] = ACTIONS(4148), + [sym_number_literal] = ACTIONS(4150), + [anon_sym_L_SQUOTE] = ACTIONS(4150), + [anon_sym_u_SQUOTE] = ACTIONS(4150), + [anon_sym_U_SQUOTE] = ACTIONS(4150), + [anon_sym_u8_SQUOTE] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4150), + [anon_sym_L_DQUOTE] = ACTIONS(4150), + [anon_sym_u_DQUOTE] = ACTIONS(4150), + [anon_sym_U_DQUOTE] = ACTIONS(4150), + [anon_sym_u8_DQUOTE] = ACTIONS(4150), + [anon_sym_DQUOTE] = ACTIONS(4150), + [sym_true] = ACTIONS(4148), + [sym_false] = ACTIONS(4148), + [anon_sym_NULL] = ACTIONS(4148), + [anon_sym_nullptr] = ACTIONS(4148), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3954), - [anon_sym_decltype] = ACTIONS(3954), - [anon_sym_explicit] = ACTIONS(3954), - [anon_sym_template] = ACTIONS(3954), - [anon_sym_operator] = ACTIONS(3954), - [anon_sym_try] = ACTIONS(3954), - [anon_sym_delete] = ACTIONS(3954), - [anon_sym_throw] = ACTIONS(3954), - [anon_sym_namespace] = ACTIONS(3954), - [anon_sym_static_assert] = ACTIONS(3954), - [anon_sym_concept] = ACTIONS(3954), - [anon_sym_co_return] = ACTIONS(3954), - [anon_sym_co_yield] = ACTIONS(3954), - [anon_sym_R_DQUOTE] = ACTIONS(3956), - [anon_sym_LR_DQUOTE] = ACTIONS(3956), - [anon_sym_uR_DQUOTE] = ACTIONS(3956), - [anon_sym_UR_DQUOTE] = ACTIONS(3956), - [anon_sym_u8R_DQUOTE] = ACTIONS(3956), - [anon_sym_co_await] = ACTIONS(3954), - [anon_sym_new] = ACTIONS(3954), - [anon_sym_requires] = ACTIONS(3954), - [anon_sym_CARET_CARET] = ACTIONS(3956), - [anon_sym_LBRACK_COLON] = ACTIONS(3956), - [sym_this] = ACTIONS(3954), + [sym_auto] = ACTIONS(4148), + [anon_sym_decltype] = ACTIONS(4148), + [anon_sym_explicit] = ACTIONS(4148), + [anon_sym_export] = ACTIONS(4148), + [anon_sym_module] = ACTIONS(4148), + [anon_sym_import] = ACTIONS(4148), + [anon_sym_template] = ACTIONS(4148), + [anon_sym_operator] = ACTIONS(4148), + [anon_sym_try] = ACTIONS(4148), + [anon_sym_delete] = ACTIONS(4148), + [anon_sym_throw] = ACTIONS(4148), + [anon_sym_namespace] = ACTIONS(4148), + [anon_sym_static_assert] = ACTIONS(4148), + [anon_sym_concept] = ACTIONS(4148), + [anon_sym_co_return] = ACTIONS(4148), + [anon_sym_co_yield] = ACTIONS(4148), + [anon_sym_R_DQUOTE] = ACTIONS(4150), + [anon_sym_LR_DQUOTE] = ACTIONS(4150), + [anon_sym_uR_DQUOTE] = ACTIONS(4150), + [anon_sym_UR_DQUOTE] = ACTIONS(4150), + [anon_sym_u8R_DQUOTE] = ACTIONS(4150), + [anon_sym_co_await] = ACTIONS(4148), + [anon_sym_new] = ACTIONS(4148), + [anon_sym_requires] = ACTIONS(4148), + [anon_sym_CARET_CARET] = ACTIONS(4150), + [anon_sym_LBRACK_COLON] = ACTIONS(4150), + [sym_this] = ACTIONS(4148), }, - [STATE(798)] = { - [sym_identifier] = ACTIONS(3958), - [aux_sym_preproc_include_token1] = ACTIONS(3958), - [aux_sym_preproc_def_token1] = ACTIONS(3958), - [aux_sym_preproc_if_token1] = ACTIONS(3958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3958), - [sym_preproc_directive] = ACTIONS(3958), - [anon_sym_LPAREN2] = ACTIONS(3960), - [anon_sym_BANG] = ACTIONS(3960), - [anon_sym_TILDE] = ACTIONS(3960), - [anon_sym_DASH] = ACTIONS(3958), - [anon_sym_PLUS] = ACTIONS(3958), - [anon_sym_STAR] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_AMP] = ACTIONS(3958), - [anon_sym_SEMI] = ACTIONS(3960), - [anon_sym___extension__] = ACTIONS(3958), - [anon_sym_typedef] = ACTIONS(3958), - [anon_sym_virtual] = ACTIONS(3958), - [anon_sym_extern] = ACTIONS(3958), - [anon_sym___attribute__] = ACTIONS(3958), - [anon_sym___attribute] = ACTIONS(3958), - [anon_sym_using] = ACTIONS(3958), - [anon_sym_COLON_COLON] = ACTIONS(3960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3960), - [anon_sym___declspec] = ACTIONS(3958), - [anon_sym___based] = ACTIONS(3958), - [anon_sym___cdecl] = ACTIONS(3958), - [anon_sym___clrcall] = ACTIONS(3958), - [anon_sym___stdcall] = ACTIONS(3958), - [anon_sym___fastcall] = ACTIONS(3958), - [anon_sym___thiscall] = ACTIONS(3958), - [anon_sym___vectorcall] = ACTIONS(3958), - [anon_sym_LBRACE] = ACTIONS(3960), - [anon_sym_RBRACE] = ACTIONS(3960), - [anon_sym_signed] = ACTIONS(3958), - [anon_sym_unsigned] = ACTIONS(3958), - [anon_sym_long] = ACTIONS(3958), - [anon_sym_short] = ACTIONS(3958), - [anon_sym_LBRACK] = ACTIONS(3958), - [anon_sym_static] = ACTIONS(3958), - [anon_sym_register] = ACTIONS(3958), - [anon_sym_inline] = ACTIONS(3958), - [anon_sym___inline] = ACTIONS(3958), - [anon_sym___inline__] = ACTIONS(3958), - [anon_sym___forceinline] = ACTIONS(3958), - [anon_sym_thread_local] = ACTIONS(3958), - [anon_sym___thread] = ACTIONS(3958), - [anon_sym_const] = ACTIONS(3958), - [anon_sym_constexpr] = ACTIONS(3958), - [anon_sym_volatile] = ACTIONS(3958), - [anon_sym_restrict] = ACTIONS(3958), - [anon_sym___restrict__] = ACTIONS(3958), - [anon_sym__Atomic] = ACTIONS(3958), - [anon_sym__Noreturn] = ACTIONS(3958), - [anon_sym_noreturn] = ACTIONS(3958), - [anon_sym__Nonnull] = ACTIONS(3958), - [anon_sym_mutable] = ACTIONS(3958), - [anon_sym_constinit] = ACTIONS(3958), - [anon_sym_consteval] = ACTIONS(3958), - [anon_sym_alignas] = ACTIONS(3958), - [anon_sym__Alignas] = ACTIONS(3958), - [sym_primitive_type] = ACTIONS(3958), - [anon_sym_enum] = ACTIONS(3958), - [anon_sym_class] = ACTIONS(3958), - [anon_sym_struct] = ACTIONS(3958), - [anon_sym_union] = ACTIONS(3958), - [anon_sym_if] = ACTIONS(3958), - [anon_sym_switch] = ACTIONS(3958), - [anon_sym_case] = ACTIONS(3958), - [anon_sym_default] = ACTIONS(3958), - [anon_sym_while] = ACTIONS(3958), - [anon_sym_do] = ACTIONS(3958), - [anon_sym_for] = ACTIONS(3958), - [anon_sym_return] = ACTIONS(3958), - [anon_sym_break] = ACTIONS(3958), - [anon_sym_continue] = ACTIONS(3958), - [anon_sym_goto] = ACTIONS(3958), - [anon_sym___try] = ACTIONS(3958), - [anon_sym___leave] = ACTIONS(3958), - [anon_sym_not] = ACTIONS(3958), - [anon_sym_compl] = ACTIONS(3958), - [anon_sym_DASH_DASH] = ACTIONS(3960), - [anon_sym_PLUS_PLUS] = ACTIONS(3960), - [anon_sym_sizeof] = ACTIONS(3958), - [anon_sym___alignof__] = ACTIONS(3958), - [anon_sym___alignof] = ACTIONS(3958), - [anon_sym__alignof] = ACTIONS(3958), - [anon_sym_alignof] = ACTIONS(3958), - [anon_sym__Alignof] = ACTIONS(3958), - [anon_sym_offsetof] = ACTIONS(3958), - [anon_sym__Generic] = ACTIONS(3958), - [anon_sym_typename] = ACTIONS(3958), - [anon_sym_asm] = ACTIONS(3958), - [anon_sym___asm__] = ACTIONS(3958), - [anon_sym___asm] = ACTIONS(3958), - [sym_number_literal] = ACTIONS(3960), - [anon_sym_L_SQUOTE] = ACTIONS(3960), - [anon_sym_u_SQUOTE] = ACTIONS(3960), - [anon_sym_U_SQUOTE] = ACTIONS(3960), - [anon_sym_u8_SQUOTE] = ACTIONS(3960), - [anon_sym_SQUOTE] = ACTIONS(3960), - [anon_sym_L_DQUOTE] = ACTIONS(3960), - [anon_sym_u_DQUOTE] = ACTIONS(3960), - [anon_sym_U_DQUOTE] = ACTIONS(3960), - [anon_sym_u8_DQUOTE] = ACTIONS(3960), - [anon_sym_DQUOTE] = ACTIONS(3960), - [sym_true] = ACTIONS(3958), - [sym_false] = ACTIONS(3958), - [anon_sym_NULL] = ACTIONS(3958), - [anon_sym_nullptr] = ACTIONS(3958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3958), - [anon_sym_decltype] = ACTIONS(3958), - [anon_sym_explicit] = ACTIONS(3958), - [anon_sym_template] = ACTIONS(3958), - [anon_sym_operator] = ACTIONS(3958), - [anon_sym_try] = ACTIONS(3958), - [anon_sym_delete] = ACTIONS(3958), - [anon_sym_throw] = ACTIONS(3958), - [anon_sym_namespace] = ACTIONS(3958), - [anon_sym_static_assert] = ACTIONS(3958), - [anon_sym_concept] = ACTIONS(3958), - [anon_sym_co_return] = ACTIONS(3958), - [anon_sym_co_yield] = ACTIONS(3958), - [anon_sym_R_DQUOTE] = ACTIONS(3960), - [anon_sym_LR_DQUOTE] = ACTIONS(3960), - [anon_sym_uR_DQUOTE] = ACTIONS(3960), - [anon_sym_UR_DQUOTE] = ACTIONS(3960), - [anon_sym_u8R_DQUOTE] = ACTIONS(3960), - [anon_sym_co_await] = ACTIONS(3958), - [anon_sym_new] = ACTIONS(3958), - [anon_sym_requires] = ACTIONS(3958), - [anon_sym_CARET_CARET] = ACTIONS(3960), - [anon_sym_LBRACK_COLON] = ACTIONS(3960), - [sym_this] = ACTIONS(3958), + [STATE(683)] = { + [sym_identifier] = ACTIONS(4132), + [aux_sym_preproc_include_token1] = ACTIONS(4132), + [aux_sym_preproc_def_token1] = ACTIONS(4132), + [aux_sym_preproc_if_token1] = ACTIONS(4132), + [aux_sym_preproc_if_token2] = ACTIONS(4132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4132), + [sym_preproc_directive] = ACTIONS(4132), + [anon_sym_LPAREN2] = ACTIONS(4134), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_TILDE] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4132), + [anon_sym_STAR] = ACTIONS(4134), + [anon_sym_AMP_AMP] = ACTIONS(4134), + [anon_sym_AMP] = ACTIONS(4132), + [anon_sym_SEMI] = ACTIONS(4134), + [anon_sym___extension__] = ACTIONS(4132), + [anon_sym_typedef] = ACTIONS(4132), + [anon_sym_virtual] = ACTIONS(4132), + [anon_sym_extern] = ACTIONS(4132), + [anon_sym___attribute__] = ACTIONS(4132), + [anon_sym___attribute] = ACTIONS(4132), + [anon_sym_using] = ACTIONS(4132), + [anon_sym_COLON_COLON] = ACTIONS(4134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4134), + [anon_sym___declspec] = ACTIONS(4132), + [anon_sym___based] = ACTIONS(4132), + [anon_sym___cdecl] = ACTIONS(4132), + [anon_sym___clrcall] = ACTIONS(4132), + [anon_sym___stdcall] = ACTIONS(4132), + [anon_sym___fastcall] = ACTIONS(4132), + [anon_sym___thiscall] = ACTIONS(4132), + [anon_sym___vectorcall] = ACTIONS(4132), + [anon_sym_LBRACE] = ACTIONS(4134), + [anon_sym_signed] = ACTIONS(4132), + [anon_sym_unsigned] = ACTIONS(4132), + [anon_sym_long] = ACTIONS(4132), + [anon_sym_short] = ACTIONS(4132), + [anon_sym_LBRACK] = ACTIONS(4132), + [anon_sym_static] = ACTIONS(4132), + [anon_sym_register] = ACTIONS(4132), + [anon_sym_inline] = ACTIONS(4132), + [anon_sym___inline] = ACTIONS(4132), + [anon_sym___inline__] = ACTIONS(4132), + [anon_sym___forceinline] = ACTIONS(4132), + [anon_sym_thread_local] = ACTIONS(4132), + [anon_sym___thread] = ACTIONS(4132), + [anon_sym_const] = ACTIONS(4132), + [anon_sym_constexpr] = ACTIONS(4132), + [anon_sym_volatile] = ACTIONS(4132), + [anon_sym_restrict] = ACTIONS(4132), + [anon_sym___restrict__] = ACTIONS(4132), + [anon_sym__Atomic] = ACTIONS(4132), + [anon_sym__Noreturn] = ACTIONS(4132), + [anon_sym_noreturn] = ACTIONS(4132), + [anon_sym__Nonnull] = ACTIONS(4132), + [anon_sym_mutable] = ACTIONS(4132), + [anon_sym_constinit] = ACTIONS(4132), + [anon_sym_consteval] = ACTIONS(4132), + [anon_sym_alignas] = ACTIONS(4132), + [anon_sym__Alignas] = ACTIONS(4132), + [sym_primitive_type] = ACTIONS(4132), + [anon_sym_enum] = ACTIONS(4132), + [anon_sym_class] = ACTIONS(4132), + [anon_sym_struct] = ACTIONS(4132), + [anon_sym_union] = ACTIONS(4132), + [anon_sym_if] = ACTIONS(4132), + [anon_sym_switch] = ACTIONS(4132), + [anon_sym_case] = ACTIONS(4132), + [anon_sym_default] = ACTIONS(4132), + [anon_sym_while] = ACTIONS(4132), + [anon_sym_do] = ACTIONS(4132), + [anon_sym_for] = ACTIONS(4132), + [anon_sym_return] = ACTIONS(4132), + [anon_sym_break] = ACTIONS(4132), + [anon_sym_continue] = ACTIONS(4132), + [anon_sym_goto] = ACTIONS(4132), + [anon_sym___try] = ACTIONS(4132), + [anon_sym___leave] = ACTIONS(4132), + [anon_sym_not] = ACTIONS(4132), + [anon_sym_compl] = ACTIONS(4132), + [anon_sym_DASH_DASH] = ACTIONS(4134), + [anon_sym_PLUS_PLUS] = ACTIONS(4134), + [anon_sym_sizeof] = ACTIONS(4132), + [anon_sym___alignof__] = ACTIONS(4132), + [anon_sym___alignof] = ACTIONS(4132), + [anon_sym__alignof] = ACTIONS(4132), + [anon_sym_alignof] = ACTIONS(4132), + [anon_sym__Alignof] = ACTIONS(4132), + [anon_sym_offsetof] = ACTIONS(4132), + [anon_sym__Generic] = ACTIONS(4132), + [anon_sym_typename] = ACTIONS(4132), + [anon_sym_asm] = ACTIONS(4132), + [anon_sym___asm__] = ACTIONS(4132), + [anon_sym___asm] = ACTIONS(4132), + [sym_number_literal] = ACTIONS(4134), + [anon_sym_L_SQUOTE] = ACTIONS(4134), + [anon_sym_u_SQUOTE] = ACTIONS(4134), + [anon_sym_U_SQUOTE] = ACTIONS(4134), + [anon_sym_u8_SQUOTE] = ACTIONS(4134), + [anon_sym_SQUOTE] = ACTIONS(4134), + [anon_sym_L_DQUOTE] = ACTIONS(4134), + [anon_sym_u_DQUOTE] = ACTIONS(4134), + [anon_sym_U_DQUOTE] = ACTIONS(4134), + [anon_sym_u8_DQUOTE] = ACTIONS(4134), + [anon_sym_DQUOTE] = ACTIONS(4134), + [sym_true] = ACTIONS(4132), + [sym_false] = ACTIONS(4132), + [anon_sym_NULL] = ACTIONS(4132), + [anon_sym_nullptr] = ACTIONS(4132), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4132), + [anon_sym_decltype] = ACTIONS(4132), + [anon_sym_explicit] = ACTIONS(4132), + [anon_sym_export] = ACTIONS(4132), + [anon_sym_module] = ACTIONS(4132), + [anon_sym_import] = ACTIONS(4132), + [anon_sym_template] = ACTIONS(4132), + [anon_sym_operator] = ACTIONS(4132), + [anon_sym_try] = ACTIONS(4132), + [anon_sym_delete] = ACTIONS(4132), + [anon_sym_throw] = ACTIONS(4132), + [anon_sym_namespace] = ACTIONS(4132), + [anon_sym_static_assert] = ACTIONS(4132), + [anon_sym_concept] = ACTIONS(4132), + [anon_sym_co_return] = ACTIONS(4132), + [anon_sym_co_yield] = ACTIONS(4132), + [anon_sym_R_DQUOTE] = ACTIONS(4134), + [anon_sym_LR_DQUOTE] = ACTIONS(4134), + [anon_sym_uR_DQUOTE] = ACTIONS(4134), + [anon_sym_UR_DQUOTE] = ACTIONS(4134), + [anon_sym_u8R_DQUOTE] = ACTIONS(4134), + [anon_sym_co_await] = ACTIONS(4132), + [anon_sym_new] = ACTIONS(4132), + [anon_sym_requires] = ACTIONS(4132), + [anon_sym_CARET_CARET] = ACTIONS(4134), + [anon_sym_LBRACK_COLON] = ACTIONS(4134), + [sym_this] = ACTIONS(4132), }, - [STATE(799)] = { - [sym_identifier] = ACTIONS(3962), - [aux_sym_preproc_include_token1] = ACTIONS(3962), - [aux_sym_preproc_def_token1] = ACTIONS(3962), - [aux_sym_preproc_if_token1] = ACTIONS(3962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3962), - [sym_preproc_directive] = ACTIONS(3962), - [anon_sym_LPAREN2] = ACTIONS(3964), - [anon_sym_BANG] = ACTIONS(3964), - [anon_sym_TILDE] = ACTIONS(3964), - [anon_sym_DASH] = ACTIONS(3962), - [anon_sym_PLUS] = ACTIONS(3962), - [anon_sym_STAR] = ACTIONS(3964), - [anon_sym_AMP_AMP] = ACTIONS(3964), - [anon_sym_AMP] = ACTIONS(3962), - [anon_sym_SEMI] = ACTIONS(3964), - [anon_sym___extension__] = ACTIONS(3962), - [anon_sym_typedef] = ACTIONS(3962), - [anon_sym_virtual] = ACTIONS(3962), - [anon_sym_extern] = ACTIONS(3962), - [anon_sym___attribute__] = ACTIONS(3962), - [anon_sym___attribute] = ACTIONS(3962), - [anon_sym_using] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(3964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3964), - [anon_sym___declspec] = ACTIONS(3962), - [anon_sym___based] = ACTIONS(3962), - [anon_sym___cdecl] = ACTIONS(3962), - [anon_sym___clrcall] = ACTIONS(3962), - [anon_sym___stdcall] = ACTIONS(3962), - [anon_sym___fastcall] = ACTIONS(3962), - [anon_sym___thiscall] = ACTIONS(3962), - [anon_sym___vectorcall] = ACTIONS(3962), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_RBRACE] = ACTIONS(3964), - [anon_sym_signed] = ACTIONS(3962), - [anon_sym_unsigned] = ACTIONS(3962), - [anon_sym_long] = ACTIONS(3962), - [anon_sym_short] = ACTIONS(3962), - [anon_sym_LBRACK] = ACTIONS(3962), - [anon_sym_static] = ACTIONS(3962), - [anon_sym_register] = ACTIONS(3962), - [anon_sym_inline] = ACTIONS(3962), - [anon_sym___inline] = ACTIONS(3962), - [anon_sym___inline__] = ACTIONS(3962), - [anon_sym___forceinline] = ACTIONS(3962), - [anon_sym_thread_local] = ACTIONS(3962), - [anon_sym___thread] = ACTIONS(3962), - [anon_sym_const] = ACTIONS(3962), - [anon_sym_constexpr] = ACTIONS(3962), - [anon_sym_volatile] = ACTIONS(3962), - [anon_sym_restrict] = ACTIONS(3962), - [anon_sym___restrict__] = ACTIONS(3962), - [anon_sym__Atomic] = ACTIONS(3962), - [anon_sym__Noreturn] = ACTIONS(3962), - [anon_sym_noreturn] = ACTIONS(3962), - [anon_sym__Nonnull] = ACTIONS(3962), - [anon_sym_mutable] = ACTIONS(3962), - [anon_sym_constinit] = ACTIONS(3962), - [anon_sym_consteval] = ACTIONS(3962), - [anon_sym_alignas] = ACTIONS(3962), - [anon_sym__Alignas] = ACTIONS(3962), - [sym_primitive_type] = ACTIONS(3962), - [anon_sym_enum] = ACTIONS(3962), - [anon_sym_class] = ACTIONS(3962), - [anon_sym_struct] = ACTIONS(3962), - [anon_sym_union] = ACTIONS(3962), - [anon_sym_if] = ACTIONS(3962), - [anon_sym_switch] = ACTIONS(3962), - [anon_sym_case] = ACTIONS(3962), - [anon_sym_default] = ACTIONS(3962), - [anon_sym_while] = ACTIONS(3962), - [anon_sym_do] = ACTIONS(3962), - [anon_sym_for] = ACTIONS(3962), - [anon_sym_return] = ACTIONS(3962), - [anon_sym_break] = ACTIONS(3962), - [anon_sym_continue] = ACTIONS(3962), - [anon_sym_goto] = ACTIONS(3962), - [anon_sym___try] = ACTIONS(3962), - [anon_sym___leave] = ACTIONS(3962), - [anon_sym_not] = ACTIONS(3962), - [anon_sym_compl] = ACTIONS(3962), - [anon_sym_DASH_DASH] = ACTIONS(3964), - [anon_sym_PLUS_PLUS] = ACTIONS(3964), - [anon_sym_sizeof] = ACTIONS(3962), - [anon_sym___alignof__] = ACTIONS(3962), - [anon_sym___alignof] = ACTIONS(3962), - [anon_sym__alignof] = ACTIONS(3962), - [anon_sym_alignof] = ACTIONS(3962), - [anon_sym__Alignof] = ACTIONS(3962), - [anon_sym_offsetof] = ACTIONS(3962), - [anon_sym__Generic] = ACTIONS(3962), - [anon_sym_typename] = ACTIONS(3962), - [anon_sym_asm] = ACTIONS(3962), - [anon_sym___asm__] = ACTIONS(3962), - [anon_sym___asm] = ACTIONS(3962), - [sym_number_literal] = ACTIONS(3964), - [anon_sym_L_SQUOTE] = ACTIONS(3964), - [anon_sym_u_SQUOTE] = ACTIONS(3964), - [anon_sym_U_SQUOTE] = ACTIONS(3964), - [anon_sym_u8_SQUOTE] = ACTIONS(3964), - [anon_sym_SQUOTE] = ACTIONS(3964), - [anon_sym_L_DQUOTE] = ACTIONS(3964), - [anon_sym_u_DQUOTE] = ACTIONS(3964), - [anon_sym_U_DQUOTE] = ACTIONS(3964), - [anon_sym_u8_DQUOTE] = ACTIONS(3964), - [anon_sym_DQUOTE] = ACTIONS(3964), - [sym_true] = ACTIONS(3962), - [sym_false] = ACTIONS(3962), - [anon_sym_NULL] = ACTIONS(3962), - [anon_sym_nullptr] = ACTIONS(3962), + [STATE(684)] = { + [sym_identifier] = ACTIONS(4156), + [aux_sym_preproc_include_token1] = ACTIONS(4156), + [aux_sym_preproc_def_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token2] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), + [sym_preproc_directive] = ACTIONS(4156), + [anon_sym_LPAREN2] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4158), + [anon_sym_TILDE] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym___extension__] = ACTIONS(4156), + [anon_sym_typedef] = ACTIONS(4156), + [anon_sym_virtual] = ACTIONS(4156), + [anon_sym_extern] = ACTIONS(4156), + [anon_sym___attribute__] = ACTIONS(4156), + [anon_sym___attribute] = ACTIONS(4156), + [anon_sym_using] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4156), + [anon_sym___based] = ACTIONS(4156), + [anon_sym___cdecl] = ACTIONS(4156), + [anon_sym___clrcall] = ACTIONS(4156), + [anon_sym___stdcall] = ACTIONS(4156), + [anon_sym___fastcall] = ACTIONS(4156), + [anon_sym___thiscall] = ACTIONS(4156), + [anon_sym___vectorcall] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_signed] = ACTIONS(4156), + [anon_sym_unsigned] = ACTIONS(4156), + [anon_sym_long] = ACTIONS(4156), + [anon_sym_short] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_register] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym___inline] = ACTIONS(4156), + [anon_sym___inline__] = ACTIONS(4156), + [anon_sym___forceinline] = ACTIONS(4156), + [anon_sym_thread_local] = ACTIONS(4156), + [anon_sym___thread] = ACTIONS(4156), + [anon_sym_const] = ACTIONS(4156), + [anon_sym_constexpr] = ACTIONS(4156), + [anon_sym_volatile] = ACTIONS(4156), + [anon_sym_restrict] = ACTIONS(4156), + [anon_sym___restrict__] = ACTIONS(4156), + [anon_sym__Atomic] = ACTIONS(4156), + [anon_sym__Noreturn] = ACTIONS(4156), + [anon_sym_noreturn] = ACTIONS(4156), + [anon_sym__Nonnull] = ACTIONS(4156), + [anon_sym_mutable] = ACTIONS(4156), + [anon_sym_constinit] = ACTIONS(4156), + [anon_sym_consteval] = ACTIONS(4156), + [anon_sym_alignas] = ACTIONS(4156), + [anon_sym__Alignas] = ACTIONS(4156), + [sym_primitive_type] = ACTIONS(4156), + [anon_sym_enum] = ACTIONS(4156), + [anon_sym_class] = ACTIONS(4156), + [anon_sym_struct] = ACTIONS(4156), + [anon_sym_union] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_switch] = ACTIONS(4156), + [anon_sym_case] = ACTIONS(4156), + [anon_sym_default] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_do] = ACTIONS(4156), + [anon_sym_for] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_goto] = ACTIONS(4156), + [anon_sym___try] = ACTIONS(4156), + [anon_sym___leave] = ACTIONS(4156), + [anon_sym_not] = ACTIONS(4156), + [anon_sym_compl] = ACTIONS(4156), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_sizeof] = ACTIONS(4156), + [anon_sym___alignof__] = ACTIONS(4156), + [anon_sym___alignof] = ACTIONS(4156), + [anon_sym__alignof] = ACTIONS(4156), + [anon_sym_alignof] = ACTIONS(4156), + [anon_sym__Alignof] = ACTIONS(4156), + [anon_sym_offsetof] = ACTIONS(4156), + [anon_sym__Generic] = ACTIONS(4156), + [anon_sym_typename] = ACTIONS(4156), + [anon_sym_asm] = ACTIONS(4156), + [anon_sym___asm__] = ACTIONS(4156), + [anon_sym___asm] = ACTIONS(4156), + [sym_number_literal] = ACTIONS(4158), + [anon_sym_L_SQUOTE] = ACTIONS(4158), + [anon_sym_u_SQUOTE] = ACTIONS(4158), + [anon_sym_U_SQUOTE] = ACTIONS(4158), + [anon_sym_u8_SQUOTE] = ACTIONS(4158), + [anon_sym_SQUOTE] = ACTIONS(4158), + [anon_sym_L_DQUOTE] = ACTIONS(4158), + [anon_sym_u_DQUOTE] = ACTIONS(4158), + [anon_sym_U_DQUOTE] = ACTIONS(4158), + [anon_sym_u8_DQUOTE] = ACTIONS(4158), + [anon_sym_DQUOTE] = ACTIONS(4158), + [sym_true] = ACTIONS(4156), + [sym_false] = ACTIONS(4156), + [anon_sym_NULL] = ACTIONS(4156), + [anon_sym_nullptr] = ACTIONS(4156), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3962), - [anon_sym_decltype] = ACTIONS(3962), - [anon_sym_explicit] = ACTIONS(3962), - [anon_sym_template] = ACTIONS(3962), - [anon_sym_operator] = ACTIONS(3962), - [anon_sym_try] = ACTIONS(3962), - [anon_sym_delete] = ACTIONS(3962), - [anon_sym_throw] = ACTIONS(3962), - [anon_sym_namespace] = ACTIONS(3962), - [anon_sym_static_assert] = ACTIONS(3962), - [anon_sym_concept] = ACTIONS(3962), - [anon_sym_co_return] = ACTIONS(3962), - [anon_sym_co_yield] = ACTIONS(3962), - [anon_sym_R_DQUOTE] = ACTIONS(3964), - [anon_sym_LR_DQUOTE] = ACTIONS(3964), - [anon_sym_uR_DQUOTE] = ACTIONS(3964), - [anon_sym_UR_DQUOTE] = ACTIONS(3964), - [anon_sym_u8R_DQUOTE] = ACTIONS(3964), - [anon_sym_co_await] = ACTIONS(3962), - [anon_sym_new] = ACTIONS(3962), - [anon_sym_requires] = ACTIONS(3962), - [anon_sym_CARET_CARET] = ACTIONS(3964), - [anon_sym_LBRACK_COLON] = ACTIONS(3964), - [sym_this] = ACTIONS(3962), - }, - [STATE(800)] = { - [sym_identifier] = ACTIONS(4014), - [aux_sym_preproc_include_token1] = ACTIONS(4014), - [aux_sym_preproc_def_token1] = ACTIONS(4014), - [aux_sym_preproc_if_token1] = ACTIONS(4014), - [aux_sym_preproc_if_token2] = ACTIONS(4014), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4014), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4014), - [sym_preproc_directive] = ACTIONS(4014), - [anon_sym_LPAREN2] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_TILDE] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4014), - [anon_sym_STAR] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4014), - [anon_sym_SEMI] = ACTIONS(4016), - [anon_sym___extension__] = ACTIONS(4014), - [anon_sym_typedef] = ACTIONS(4014), - [anon_sym_virtual] = ACTIONS(4014), - [anon_sym_extern] = ACTIONS(4014), - [anon_sym___attribute__] = ACTIONS(4014), - [anon_sym___attribute] = ACTIONS(4014), - [anon_sym_using] = ACTIONS(4014), - [anon_sym_COLON_COLON] = ACTIONS(4016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4016), - [anon_sym___declspec] = ACTIONS(4014), - [anon_sym___based] = ACTIONS(4014), - [anon_sym___cdecl] = ACTIONS(4014), - [anon_sym___clrcall] = ACTIONS(4014), - [anon_sym___stdcall] = ACTIONS(4014), - [anon_sym___fastcall] = ACTIONS(4014), - [anon_sym___thiscall] = ACTIONS(4014), - [anon_sym___vectorcall] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4016), - [anon_sym_signed] = ACTIONS(4014), - [anon_sym_unsigned] = ACTIONS(4014), - [anon_sym_long] = ACTIONS(4014), - [anon_sym_short] = ACTIONS(4014), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_static] = ACTIONS(4014), - [anon_sym_register] = ACTIONS(4014), - [anon_sym_inline] = ACTIONS(4014), - [anon_sym___inline] = ACTIONS(4014), - [anon_sym___inline__] = ACTIONS(4014), - [anon_sym___forceinline] = ACTIONS(4014), - [anon_sym_thread_local] = ACTIONS(4014), - [anon_sym___thread] = ACTIONS(4014), - [anon_sym_const] = ACTIONS(4014), - [anon_sym_constexpr] = ACTIONS(4014), - [anon_sym_volatile] = ACTIONS(4014), - [anon_sym_restrict] = ACTIONS(4014), - [anon_sym___restrict__] = ACTIONS(4014), - [anon_sym__Atomic] = ACTIONS(4014), - [anon_sym__Noreturn] = ACTIONS(4014), - [anon_sym_noreturn] = ACTIONS(4014), - [anon_sym__Nonnull] = ACTIONS(4014), - [anon_sym_mutable] = ACTIONS(4014), - [anon_sym_constinit] = ACTIONS(4014), - [anon_sym_consteval] = ACTIONS(4014), - [anon_sym_alignas] = ACTIONS(4014), - [anon_sym__Alignas] = ACTIONS(4014), - [sym_primitive_type] = ACTIONS(4014), - [anon_sym_enum] = ACTIONS(4014), - [anon_sym_class] = ACTIONS(4014), - [anon_sym_struct] = ACTIONS(4014), - [anon_sym_union] = ACTIONS(4014), - [anon_sym_if] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4014), - [anon_sym_case] = ACTIONS(4014), - [anon_sym_default] = ACTIONS(4014), - [anon_sym_while] = ACTIONS(4014), - [anon_sym_do] = ACTIONS(4014), - [anon_sym_for] = ACTIONS(4014), - [anon_sym_return] = ACTIONS(4014), - [anon_sym_break] = ACTIONS(4014), - [anon_sym_continue] = ACTIONS(4014), - [anon_sym_goto] = ACTIONS(4014), - [anon_sym___try] = ACTIONS(4014), - [anon_sym___leave] = ACTIONS(4014), - [anon_sym_not] = ACTIONS(4014), - [anon_sym_compl] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4016), - [anon_sym_sizeof] = ACTIONS(4014), - [anon_sym___alignof__] = ACTIONS(4014), - [anon_sym___alignof] = ACTIONS(4014), - [anon_sym__alignof] = ACTIONS(4014), - [anon_sym_alignof] = ACTIONS(4014), - [anon_sym__Alignof] = ACTIONS(4014), - [anon_sym_offsetof] = ACTIONS(4014), - [anon_sym__Generic] = ACTIONS(4014), - [anon_sym_typename] = ACTIONS(4014), - [anon_sym_asm] = ACTIONS(4014), - [anon_sym___asm__] = ACTIONS(4014), - [anon_sym___asm] = ACTIONS(4014), - [sym_number_literal] = ACTIONS(4016), - [anon_sym_L_SQUOTE] = ACTIONS(4016), - [anon_sym_u_SQUOTE] = ACTIONS(4016), - [anon_sym_U_SQUOTE] = ACTIONS(4016), - [anon_sym_u8_SQUOTE] = ACTIONS(4016), - [anon_sym_SQUOTE] = ACTIONS(4016), - [anon_sym_L_DQUOTE] = ACTIONS(4016), - [anon_sym_u_DQUOTE] = ACTIONS(4016), - [anon_sym_U_DQUOTE] = ACTIONS(4016), - [anon_sym_u8_DQUOTE] = ACTIONS(4016), - [anon_sym_DQUOTE] = ACTIONS(4016), - [sym_true] = ACTIONS(4014), - [sym_false] = ACTIONS(4014), - [anon_sym_NULL] = ACTIONS(4014), - [anon_sym_nullptr] = ACTIONS(4014), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4014), - [anon_sym_decltype] = ACTIONS(4014), - [anon_sym_explicit] = ACTIONS(4014), - [anon_sym_template] = ACTIONS(4014), - [anon_sym_operator] = ACTIONS(4014), - [anon_sym_try] = ACTIONS(4014), - [anon_sym_delete] = ACTIONS(4014), - [anon_sym_throw] = ACTIONS(4014), - [anon_sym_namespace] = ACTIONS(4014), - [anon_sym_static_assert] = ACTIONS(4014), - [anon_sym_concept] = ACTIONS(4014), - [anon_sym_co_return] = ACTIONS(4014), - [anon_sym_co_yield] = ACTIONS(4014), - [anon_sym_R_DQUOTE] = ACTIONS(4016), - [anon_sym_LR_DQUOTE] = ACTIONS(4016), - [anon_sym_uR_DQUOTE] = ACTIONS(4016), - [anon_sym_UR_DQUOTE] = ACTIONS(4016), - [anon_sym_u8R_DQUOTE] = ACTIONS(4016), - [anon_sym_co_await] = ACTIONS(4014), - [anon_sym_new] = ACTIONS(4014), - [anon_sym_requires] = ACTIONS(4014), - [anon_sym_CARET_CARET] = ACTIONS(4016), - [anon_sym_LBRACK_COLON] = ACTIONS(4016), - [sym_this] = ACTIONS(4014), - }, - [STATE(801)] = { - [sym_identifier] = ACTIONS(4066), - [aux_sym_preproc_include_token1] = ACTIONS(4066), - [aux_sym_preproc_def_token1] = ACTIONS(4066), - [aux_sym_preproc_if_token1] = ACTIONS(4066), - [aux_sym_preproc_if_token2] = ACTIONS(4066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4066), - [sym_preproc_directive] = ACTIONS(4066), - [anon_sym_LPAREN2] = ACTIONS(4068), - [anon_sym_BANG] = ACTIONS(4068), - [anon_sym_TILDE] = ACTIONS(4068), - [anon_sym_DASH] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4066), - [anon_sym_STAR] = ACTIONS(4068), - [anon_sym_AMP_AMP] = ACTIONS(4068), - [anon_sym_AMP] = ACTIONS(4066), - [anon_sym_SEMI] = ACTIONS(4068), - [anon_sym___extension__] = ACTIONS(4066), - [anon_sym_typedef] = ACTIONS(4066), - [anon_sym_virtual] = ACTIONS(4066), - [anon_sym_extern] = ACTIONS(4066), - [anon_sym___attribute__] = ACTIONS(4066), - [anon_sym___attribute] = ACTIONS(4066), - [anon_sym_using] = ACTIONS(4066), - [anon_sym_COLON_COLON] = ACTIONS(4068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4068), - [anon_sym___declspec] = ACTIONS(4066), - [anon_sym___based] = ACTIONS(4066), - [anon_sym___cdecl] = ACTIONS(4066), - [anon_sym___clrcall] = ACTIONS(4066), - [anon_sym___stdcall] = ACTIONS(4066), - [anon_sym___fastcall] = ACTIONS(4066), - [anon_sym___thiscall] = ACTIONS(4066), - [anon_sym___vectorcall] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4068), - [anon_sym_signed] = ACTIONS(4066), - [anon_sym_unsigned] = ACTIONS(4066), - [anon_sym_long] = ACTIONS(4066), - [anon_sym_short] = ACTIONS(4066), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_static] = ACTIONS(4066), - [anon_sym_register] = ACTIONS(4066), - [anon_sym_inline] = ACTIONS(4066), - [anon_sym___inline] = ACTIONS(4066), - [anon_sym___inline__] = ACTIONS(4066), - [anon_sym___forceinline] = ACTIONS(4066), - [anon_sym_thread_local] = ACTIONS(4066), - [anon_sym___thread] = ACTIONS(4066), - [anon_sym_const] = ACTIONS(4066), - [anon_sym_constexpr] = ACTIONS(4066), - [anon_sym_volatile] = ACTIONS(4066), - [anon_sym_restrict] = ACTIONS(4066), - [anon_sym___restrict__] = ACTIONS(4066), - [anon_sym__Atomic] = ACTIONS(4066), - [anon_sym__Noreturn] = ACTIONS(4066), - [anon_sym_noreturn] = ACTIONS(4066), - [anon_sym__Nonnull] = ACTIONS(4066), - [anon_sym_mutable] = ACTIONS(4066), - [anon_sym_constinit] = ACTIONS(4066), - [anon_sym_consteval] = ACTIONS(4066), - [anon_sym_alignas] = ACTIONS(4066), - [anon_sym__Alignas] = ACTIONS(4066), - [sym_primitive_type] = ACTIONS(4066), - [anon_sym_enum] = ACTIONS(4066), - [anon_sym_class] = ACTIONS(4066), - [anon_sym_struct] = ACTIONS(4066), - [anon_sym_union] = ACTIONS(4066), - [anon_sym_if] = ACTIONS(4066), - [anon_sym_switch] = ACTIONS(4066), - [anon_sym_case] = ACTIONS(4066), - [anon_sym_default] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(4066), - [anon_sym_do] = ACTIONS(4066), - [anon_sym_for] = ACTIONS(4066), - [anon_sym_return] = ACTIONS(4066), - [anon_sym_break] = ACTIONS(4066), - [anon_sym_continue] = ACTIONS(4066), - [anon_sym_goto] = ACTIONS(4066), - [anon_sym___try] = ACTIONS(4066), - [anon_sym___leave] = ACTIONS(4066), - [anon_sym_not] = ACTIONS(4066), - [anon_sym_compl] = ACTIONS(4066), - [anon_sym_DASH_DASH] = ACTIONS(4068), - [anon_sym_PLUS_PLUS] = ACTIONS(4068), - [anon_sym_sizeof] = ACTIONS(4066), - [anon_sym___alignof__] = ACTIONS(4066), - [anon_sym___alignof] = ACTIONS(4066), - [anon_sym__alignof] = ACTIONS(4066), - [anon_sym_alignof] = ACTIONS(4066), - [anon_sym__Alignof] = ACTIONS(4066), - [anon_sym_offsetof] = ACTIONS(4066), - [anon_sym__Generic] = ACTIONS(4066), - [anon_sym_typename] = ACTIONS(4066), - [anon_sym_asm] = ACTIONS(4066), - [anon_sym___asm__] = ACTIONS(4066), - [anon_sym___asm] = ACTIONS(4066), - [sym_number_literal] = ACTIONS(4068), - [anon_sym_L_SQUOTE] = ACTIONS(4068), - [anon_sym_u_SQUOTE] = ACTIONS(4068), - [anon_sym_U_SQUOTE] = ACTIONS(4068), - [anon_sym_u8_SQUOTE] = ACTIONS(4068), - [anon_sym_SQUOTE] = ACTIONS(4068), - [anon_sym_L_DQUOTE] = ACTIONS(4068), - [anon_sym_u_DQUOTE] = ACTIONS(4068), - [anon_sym_U_DQUOTE] = ACTIONS(4068), - [anon_sym_u8_DQUOTE] = ACTIONS(4068), - [anon_sym_DQUOTE] = ACTIONS(4068), - [sym_true] = ACTIONS(4066), - [sym_false] = ACTIONS(4066), - [anon_sym_NULL] = ACTIONS(4066), - [anon_sym_nullptr] = ACTIONS(4066), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4066), - [anon_sym_decltype] = ACTIONS(4066), - [anon_sym_explicit] = ACTIONS(4066), - [anon_sym_template] = ACTIONS(4066), - [anon_sym_operator] = ACTIONS(4066), - [anon_sym_try] = ACTIONS(4066), - [anon_sym_delete] = ACTIONS(4066), - [anon_sym_throw] = ACTIONS(4066), - [anon_sym_namespace] = ACTIONS(4066), - [anon_sym_static_assert] = ACTIONS(4066), - [anon_sym_concept] = ACTIONS(4066), - [anon_sym_co_return] = ACTIONS(4066), - [anon_sym_co_yield] = ACTIONS(4066), - [anon_sym_R_DQUOTE] = ACTIONS(4068), - [anon_sym_LR_DQUOTE] = ACTIONS(4068), - [anon_sym_uR_DQUOTE] = ACTIONS(4068), - [anon_sym_UR_DQUOTE] = ACTIONS(4068), - [anon_sym_u8R_DQUOTE] = ACTIONS(4068), - [anon_sym_co_await] = ACTIONS(4066), - [anon_sym_new] = ACTIONS(4066), - [anon_sym_requires] = ACTIONS(4066), - [anon_sym_CARET_CARET] = ACTIONS(4068), - [anon_sym_LBRACK_COLON] = ACTIONS(4068), - [sym_this] = ACTIONS(4066), - }, - [STATE(802)] = { - [sym_identifier] = ACTIONS(3966), - [aux_sym_preproc_include_token1] = ACTIONS(3966), - [aux_sym_preproc_def_token1] = ACTIONS(3966), - [aux_sym_preproc_if_token1] = ACTIONS(3966), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3966), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3966), - [sym_preproc_directive] = ACTIONS(3966), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(3968), - [anon_sym_TILDE] = ACTIONS(3968), - [anon_sym_DASH] = ACTIONS(3966), - [anon_sym_PLUS] = ACTIONS(3966), - [anon_sym_STAR] = ACTIONS(3968), - [anon_sym_AMP_AMP] = ACTIONS(3968), - [anon_sym_AMP] = ACTIONS(3966), - [anon_sym_SEMI] = ACTIONS(3968), - [anon_sym___extension__] = ACTIONS(3966), - [anon_sym_typedef] = ACTIONS(3966), - [anon_sym_virtual] = ACTIONS(3966), - [anon_sym_extern] = ACTIONS(3966), - [anon_sym___attribute__] = ACTIONS(3966), - [anon_sym___attribute] = ACTIONS(3966), - [anon_sym_using] = ACTIONS(3966), - [anon_sym_COLON_COLON] = ACTIONS(3968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3968), - [anon_sym___declspec] = ACTIONS(3966), - [anon_sym___based] = ACTIONS(3966), - [anon_sym___cdecl] = ACTIONS(3966), - [anon_sym___clrcall] = ACTIONS(3966), - [anon_sym___stdcall] = ACTIONS(3966), - [anon_sym___fastcall] = ACTIONS(3966), - [anon_sym___thiscall] = ACTIONS(3966), - [anon_sym___vectorcall] = ACTIONS(3966), - [anon_sym_LBRACE] = ACTIONS(3968), - [anon_sym_RBRACE] = ACTIONS(3968), - [anon_sym_signed] = ACTIONS(3966), - [anon_sym_unsigned] = ACTIONS(3966), - [anon_sym_long] = ACTIONS(3966), - [anon_sym_short] = ACTIONS(3966), - [anon_sym_LBRACK] = ACTIONS(3966), - [anon_sym_static] = ACTIONS(3966), - [anon_sym_register] = ACTIONS(3966), - [anon_sym_inline] = ACTIONS(3966), - [anon_sym___inline] = ACTIONS(3966), - [anon_sym___inline__] = ACTIONS(3966), - [anon_sym___forceinline] = ACTIONS(3966), - [anon_sym_thread_local] = ACTIONS(3966), - [anon_sym___thread] = ACTIONS(3966), - [anon_sym_const] = ACTIONS(3966), - [anon_sym_constexpr] = ACTIONS(3966), - [anon_sym_volatile] = ACTIONS(3966), - [anon_sym_restrict] = ACTIONS(3966), - [anon_sym___restrict__] = ACTIONS(3966), - [anon_sym__Atomic] = ACTIONS(3966), - [anon_sym__Noreturn] = ACTIONS(3966), - [anon_sym_noreturn] = ACTIONS(3966), - [anon_sym__Nonnull] = ACTIONS(3966), - [anon_sym_mutable] = ACTIONS(3966), - [anon_sym_constinit] = ACTIONS(3966), - [anon_sym_consteval] = ACTIONS(3966), - [anon_sym_alignas] = ACTIONS(3966), - [anon_sym__Alignas] = ACTIONS(3966), - [sym_primitive_type] = ACTIONS(3966), - [anon_sym_enum] = ACTIONS(3966), - [anon_sym_class] = ACTIONS(3966), - [anon_sym_struct] = ACTIONS(3966), - [anon_sym_union] = ACTIONS(3966), - [anon_sym_if] = ACTIONS(3966), - [anon_sym_switch] = ACTIONS(3966), - [anon_sym_case] = ACTIONS(3966), - [anon_sym_default] = ACTIONS(3966), - [anon_sym_while] = ACTIONS(3966), - [anon_sym_do] = ACTIONS(3966), - [anon_sym_for] = ACTIONS(3966), - [anon_sym_return] = ACTIONS(3966), - [anon_sym_break] = ACTIONS(3966), - [anon_sym_continue] = ACTIONS(3966), - [anon_sym_goto] = ACTIONS(3966), - [anon_sym___try] = ACTIONS(3966), - [anon_sym___leave] = ACTIONS(3966), - [anon_sym_not] = ACTIONS(3966), - [anon_sym_compl] = ACTIONS(3966), - [anon_sym_DASH_DASH] = ACTIONS(3968), - [anon_sym_PLUS_PLUS] = ACTIONS(3968), - [anon_sym_sizeof] = ACTIONS(3966), - [anon_sym___alignof__] = ACTIONS(3966), - [anon_sym___alignof] = ACTIONS(3966), - [anon_sym__alignof] = ACTIONS(3966), - [anon_sym_alignof] = ACTIONS(3966), - [anon_sym__Alignof] = ACTIONS(3966), - [anon_sym_offsetof] = ACTIONS(3966), - [anon_sym__Generic] = ACTIONS(3966), - [anon_sym_typename] = ACTIONS(3966), - [anon_sym_asm] = ACTIONS(3966), - [anon_sym___asm__] = ACTIONS(3966), - [anon_sym___asm] = ACTIONS(3966), - [sym_number_literal] = ACTIONS(3968), - [anon_sym_L_SQUOTE] = ACTIONS(3968), - [anon_sym_u_SQUOTE] = ACTIONS(3968), - [anon_sym_U_SQUOTE] = ACTIONS(3968), - [anon_sym_u8_SQUOTE] = ACTIONS(3968), - [anon_sym_SQUOTE] = ACTIONS(3968), - [anon_sym_L_DQUOTE] = ACTIONS(3968), - [anon_sym_u_DQUOTE] = ACTIONS(3968), - [anon_sym_U_DQUOTE] = ACTIONS(3968), - [anon_sym_u8_DQUOTE] = ACTIONS(3968), - [anon_sym_DQUOTE] = ACTIONS(3968), - [sym_true] = ACTIONS(3966), - [sym_false] = ACTIONS(3966), - [anon_sym_NULL] = ACTIONS(3966), - [anon_sym_nullptr] = ACTIONS(3966), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3966), - [anon_sym_decltype] = ACTIONS(3966), - [anon_sym_explicit] = ACTIONS(3966), - [anon_sym_template] = ACTIONS(3966), - [anon_sym_operator] = ACTIONS(3966), - [anon_sym_try] = ACTIONS(3966), - [anon_sym_delete] = ACTIONS(3966), - [anon_sym_throw] = ACTIONS(3966), - [anon_sym_namespace] = ACTIONS(3966), - [anon_sym_static_assert] = ACTIONS(3966), - [anon_sym_concept] = ACTIONS(3966), - [anon_sym_co_return] = ACTIONS(3966), - [anon_sym_co_yield] = ACTIONS(3966), - [anon_sym_R_DQUOTE] = ACTIONS(3968), - [anon_sym_LR_DQUOTE] = ACTIONS(3968), - [anon_sym_uR_DQUOTE] = ACTIONS(3968), - [anon_sym_UR_DQUOTE] = ACTIONS(3968), - [anon_sym_u8R_DQUOTE] = ACTIONS(3968), - [anon_sym_co_await] = ACTIONS(3966), - [anon_sym_new] = ACTIONS(3966), - [anon_sym_requires] = ACTIONS(3966), - [anon_sym_CARET_CARET] = ACTIONS(3968), - [anon_sym_LBRACK_COLON] = ACTIONS(3968), - [sym_this] = ACTIONS(3966), - }, - [STATE(803)] = { - [sym_identifier] = ACTIONS(3970), - [aux_sym_preproc_include_token1] = ACTIONS(3970), - [aux_sym_preproc_def_token1] = ACTIONS(3970), - [aux_sym_preproc_if_token1] = ACTIONS(3970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3970), - [sym_preproc_directive] = ACTIONS(3970), - [anon_sym_LPAREN2] = ACTIONS(3972), - [anon_sym_BANG] = ACTIONS(3972), - [anon_sym_TILDE] = ACTIONS(3972), - [anon_sym_DASH] = ACTIONS(3970), - [anon_sym_PLUS] = ACTIONS(3970), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_AMP_AMP] = ACTIONS(3972), - [anon_sym_AMP] = ACTIONS(3970), - [anon_sym_SEMI] = ACTIONS(3972), - [anon_sym___extension__] = ACTIONS(3970), - [anon_sym_typedef] = ACTIONS(3970), - [anon_sym_virtual] = ACTIONS(3970), - [anon_sym_extern] = ACTIONS(3970), - [anon_sym___attribute__] = ACTIONS(3970), - [anon_sym___attribute] = ACTIONS(3970), - [anon_sym_using] = ACTIONS(3970), - [anon_sym_COLON_COLON] = ACTIONS(3972), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3972), - [anon_sym___declspec] = ACTIONS(3970), - [anon_sym___based] = ACTIONS(3970), - [anon_sym___cdecl] = ACTIONS(3970), - [anon_sym___clrcall] = ACTIONS(3970), - [anon_sym___stdcall] = ACTIONS(3970), - [anon_sym___fastcall] = ACTIONS(3970), - [anon_sym___thiscall] = ACTIONS(3970), - [anon_sym___vectorcall] = ACTIONS(3970), - [anon_sym_LBRACE] = ACTIONS(3972), - [anon_sym_RBRACE] = ACTIONS(3972), - [anon_sym_signed] = ACTIONS(3970), - [anon_sym_unsigned] = ACTIONS(3970), - [anon_sym_long] = ACTIONS(3970), - [anon_sym_short] = ACTIONS(3970), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_static] = ACTIONS(3970), - [anon_sym_register] = ACTIONS(3970), - [anon_sym_inline] = ACTIONS(3970), - [anon_sym___inline] = ACTIONS(3970), - [anon_sym___inline__] = ACTIONS(3970), - [anon_sym___forceinline] = ACTIONS(3970), - [anon_sym_thread_local] = ACTIONS(3970), - [anon_sym___thread] = ACTIONS(3970), - [anon_sym_const] = ACTIONS(3970), - [anon_sym_constexpr] = ACTIONS(3970), - [anon_sym_volatile] = ACTIONS(3970), - [anon_sym_restrict] = ACTIONS(3970), - [anon_sym___restrict__] = ACTIONS(3970), - [anon_sym__Atomic] = ACTIONS(3970), - [anon_sym__Noreturn] = ACTIONS(3970), - [anon_sym_noreturn] = ACTIONS(3970), - [anon_sym__Nonnull] = ACTIONS(3970), - [anon_sym_mutable] = ACTIONS(3970), - [anon_sym_constinit] = ACTIONS(3970), - [anon_sym_consteval] = ACTIONS(3970), - [anon_sym_alignas] = ACTIONS(3970), - [anon_sym__Alignas] = ACTIONS(3970), - [sym_primitive_type] = ACTIONS(3970), - [anon_sym_enum] = ACTIONS(3970), - [anon_sym_class] = ACTIONS(3970), - [anon_sym_struct] = ACTIONS(3970), - [anon_sym_union] = ACTIONS(3970), - [anon_sym_if] = ACTIONS(3970), - [anon_sym_switch] = ACTIONS(3970), - [anon_sym_case] = ACTIONS(3970), - [anon_sym_default] = ACTIONS(3970), - [anon_sym_while] = ACTIONS(3970), - [anon_sym_do] = ACTIONS(3970), - [anon_sym_for] = ACTIONS(3970), - [anon_sym_return] = ACTIONS(3970), - [anon_sym_break] = ACTIONS(3970), - [anon_sym_continue] = ACTIONS(3970), - [anon_sym_goto] = ACTIONS(3970), - [anon_sym___try] = ACTIONS(3970), - [anon_sym___leave] = ACTIONS(3970), - [anon_sym_not] = ACTIONS(3970), - [anon_sym_compl] = ACTIONS(3970), - [anon_sym_DASH_DASH] = ACTIONS(3972), - [anon_sym_PLUS_PLUS] = ACTIONS(3972), - [anon_sym_sizeof] = ACTIONS(3970), - [anon_sym___alignof__] = ACTIONS(3970), - [anon_sym___alignof] = ACTIONS(3970), - [anon_sym__alignof] = ACTIONS(3970), - [anon_sym_alignof] = ACTIONS(3970), - [anon_sym__Alignof] = ACTIONS(3970), - [anon_sym_offsetof] = ACTIONS(3970), - [anon_sym__Generic] = ACTIONS(3970), - [anon_sym_typename] = ACTIONS(3970), - [anon_sym_asm] = ACTIONS(3970), - [anon_sym___asm__] = ACTIONS(3970), - [anon_sym___asm] = ACTIONS(3970), - [sym_number_literal] = ACTIONS(3972), - [anon_sym_L_SQUOTE] = ACTIONS(3972), - [anon_sym_u_SQUOTE] = ACTIONS(3972), - [anon_sym_U_SQUOTE] = ACTIONS(3972), - [anon_sym_u8_SQUOTE] = ACTIONS(3972), - [anon_sym_SQUOTE] = ACTIONS(3972), - [anon_sym_L_DQUOTE] = ACTIONS(3972), - [anon_sym_u_DQUOTE] = ACTIONS(3972), - [anon_sym_U_DQUOTE] = ACTIONS(3972), - [anon_sym_u8_DQUOTE] = ACTIONS(3972), - [anon_sym_DQUOTE] = ACTIONS(3972), - [sym_true] = ACTIONS(3970), - [sym_false] = ACTIONS(3970), - [anon_sym_NULL] = ACTIONS(3970), - [anon_sym_nullptr] = ACTIONS(3970), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3970), - [anon_sym_decltype] = ACTIONS(3970), - [anon_sym_explicit] = ACTIONS(3970), - [anon_sym_template] = ACTIONS(3970), - [anon_sym_operator] = ACTIONS(3970), - [anon_sym_try] = ACTIONS(3970), - [anon_sym_delete] = ACTIONS(3970), - [anon_sym_throw] = ACTIONS(3970), - [anon_sym_namespace] = ACTIONS(3970), - [anon_sym_static_assert] = ACTIONS(3970), - [anon_sym_concept] = ACTIONS(3970), - [anon_sym_co_return] = ACTIONS(3970), - [anon_sym_co_yield] = ACTIONS(3970), - [anon_sym_R_DQUOTE] = ACTIONS(3972), - [anon_sym_LR_DQUOTE] = ACTIONS(3972), - [anon_sym_uR_DQUOTE] = ACTIONS(3972), - [anon_sym_UR_DQUOTE] = ACTIONS(3972), - [anon_sym_u8R_DQUOTE] = ACTIONS(3972), - [anon_sym_co_await] = ACTIONS(3970), - [anon_sym_new] = ACTIONS(3970), - [anon_sym_requires] = ACTIONS(3970), - [anon_sym_CARET_CARET] = ACTIONS(3972), - [anon_sym_LBRACK_COLON] = ACTIONS(3972), - [sym_this] = ACTIONS(3970), - }, - [STATE(804)] = { - [sym_identifier] = ACTIONS(4018), - [aux_sym_preproc_include_token1] = ACTIONS(4018), - [aux_sym_preproc_def_token1] = ACTIONS(4018), - [aux_sym_preproc_if_token1] = ACTIONS(4018), - [aux_sym_preproc_if_token2] = ACTIONS(4018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4018), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4018), - [sym_preproc_directive] = ACTIONS(4018), - [anon_sym_LPAREN2] = ACTIONS(4020), - [anon_sym_BANG] = ACTIONS(4020), - [anon_sym_TILDE] = ACTIONS(4020), - [anon_sym_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4018), - [anon_sym_STAR] = ACTIONS(4020), - [anon_sym_AMP_AMP] = ACTIONS(4020), - [anon_sym_AMP] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4020), - [anon_sym___extension__] = ACTIONS(4018), - [anon_sym_typedef] = ACTIONS(4018), - [anon_sym_virtual] = ACTIONS(4018), - [anon_sym_extern] = ACTIONS(4018), - [anon_sym___attribute__] = ACTIONS(4018), - [anon_sym___attribute] = ACTIONS(4018), - [anon_sym_using] = ACTIONS(4018), - [anon_sym_COLON_COLON] = ACTIONS(4020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4020), - [anon_sym___declspec] = ACTIONS(4018), - [anon_sym___based] = ACTIONS(4018), - [anon_sym___cdecl] = ACTIONS(4018), - [anon_sym___clrcall] = ACTIONS(4018), - [anon_sym___stdcall] = ACTIONS(4018), - [anon_sym___fastcall] = ACTIONS(4018), - [anon_sym___thiscall] = ACTIONS(4018), - [anon_sym___vectorcall] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4020), - [anon_sym_signed] = ACTIONS(4018), - [anon_sym_unsigned] = ACTIONS(4018), - [anon_sym_long] = ACTIONS(4018), - [anon_sym_short] = ACTIONS(4018), - [anon_sym_LBRACK] = ACTIONS(4018), - [anon_sym_static] = ACTIONS(4018), - [anon_sym_register] = ACTIONS(4018), - [anon_sym_inline] = ACTIONS(4018), - [anon_sym___inline] = ACTIONS(4018), - [anon_sym___inline__] = ACTIONS(4018), - [anon_sym___forceinline] = ACTIONS(4018), - [anon_sym_thread_local] = ACTIONS(4018), - [anon_sym___thread] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4018), - [anon_sym_constexpr] = ACTIONS(4018), - [anon_sym_volatile] = ACTIONS(4018), - [anon_sym_restrict] = ACTIONS(4018), - [anon_sym___restrict__] = ACTIONS(4018), - [anon_sym__Atomic] = ACTIONS(4018), - [anon_sym__Noreturn] = ACTIONS(4018), - [anon_sym_noreturn] = ACTIONS(4018), - [anon_sym__Nonnull] = ACTIONS(4018), - [anon_sym_mutable] = ACTIONS(4018), - [anon_sym_constinit] = ACTIONS(4018), - [anon_sym_consteval] = ACTIONS(4018), - [anon_sym_alignas] = ACTIONS(4018), - [anon_sym__Alignas] = ACTIONS(4018), - [sym_primitive_type] = ACTIONS(4018), - [anon_sym_enum] = ACTIONS(4018), - [anon_sym_class] = ACTIONS(4018), - [anon_sym_struct] = ACTIONS(4018), - [anon_sym_union] = ACTIONS(4018), - [anon_sym_if] = ACTIONS(4018), - [anon_sym_switch] = ACTIONS(4018), - [anon_sym_case] = ACTIONS(4018), - [anon_sym_default] = ACTIONS(4018), - [anon_sym_while] = ACTIONS(4018), - [anon_sym_do] = ACTIONS(4018), - [anon_sym_for] = ACTIONS(4018), - [anon_sym_return] = ACTIONS(4018), - [anon_sym_break] = ACTIONS(4018), - [anon_sym_continue] = ACTIONS(4018), - [anon_sym_goto] = ACTIONS(4018), - [anon_sym___try] = ACTIONS(4018), - [anon_sym___leave] = ACTIONS(4018), - [anon_sym_not] = ACTIONS(4018), - [anon_sym_compl] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4020), - [anon_sym_PLUS_PLUS] = ACTIONS(4020), - [anon_sym_sizeof] = ACTIONS(4018), - [anon_sym___alignof__] = ACTIONS(4018), - [anon_sym___alignof] = ACTIONS(4018), - [anon_sym__alignof] = ACTIONS(4018), - [anon_sym_alignof] = ACTIONS(4018), - [anon_sym__Alignof] = ACTIONS(4018), - [anon_sym_offsetof] = ACTIONS(4018), - [anon_sym__Generic] = ACTIONS(4018), - [anon_sym_typename] = ACTIONS(4018), - [anon_sym_asm] = ACTIONS(4018), - [anon_sym___asm__] = ACTIONS(4018), - [anon_sym___asm] = ACTIONS(4018), - [sym_number_literal] = ACTIONS(4020), - [anon_sym_L_SQUOTE] = ACTIONS(4020), - [anon_sym_u_SQUOTE] = ACTIONS(4020), - [anon_sym_U_SQUOTE] = ACTIONS(4020), - [anon_sym_u8_SQUOTE] = ACTIONS(4020), - [anon_sym_SQUOTE] = 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_true] = ACTIONS(4018), - [sym_false] = ACTIONS(4018), - [anon_sym_NULL] = ACTIONS(4018), - [anon_sym_nullptr] = ACTIONS(4018), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4018), - [anon_sym_decltype] = ACTIONS(4018), - [anon_sym_explicit] = ACTIONS(4018), - [anon_sym_template] = ACTIONS(4018), - [anon_sym_operator] = ACTIONS(4018), - [anon_sym_try] = ACTIONS(4018), - [anon_sym_delete] = ACTIONS(4018), - [anon_sym_throw] = ACTIONS(4018), - [anon_sym_namespace] = ACTIONS(4018), - [anon_sym_static_assert] = ACTIONS(4018), - [anon_sym_concept] = ACTIONS(4018), - [anon_sym_co_return] = ACTIONS(4018), - [anon_sym_co_yield] = ACTIONS(4018), - [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), - [anon_sym_co_await] = ACTIONS(4018), - [anon_sym_new] = ACTIONS(4018), - [anon_sym_requires] = ACTIONS(4018), - [anon_sym_CARET_CARET] = ACTIONS(4020), - [anon_sym_LBRACK_COLON] = ACTIONS(4020), - [sym_this] = ACTIONS(4018), + [sym_auto] = ACTIONS(4156), + [anon_sym_decltype] = ACTIONS(4156), + [anon_sym_explicit] = ACTIONS(4156), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_module] = ACTIONS(4156), + [anon_sym_import] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_delete] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_namespace] = ACTIONS(4156), + [anon_sym_static_assert] = ACTIONS(4156), + [anon_sym_concept] = ACTIONS(4156), + [anon_sym_co_return] = ACTIONS(4156), + [anon_sym_co_yield] = ACTIONS(4156), + [anon_sym_R_DQUOTE] = ACTIONS(4158), + [anon_sym_LR_DQUOTE] = ACTIONS(4158), + [anon_sym_uR_DQUOTE] = ACTIONS(4158), + [anon_sym_UR_DQUOTE] = ACTIONS(4158), + [anon_sym_u8R_DQUOTE] = ACTIONS(4158), + [anon_sym_co_await] = ACTIONS(4156), + [anon_sym_new] = ACTIONS(4156), + [anon_sym_requires] = ACTIONS(4156), + [anon_sym_CARET_CARET] = ACTIONS(4158), + [anon_sym_LBRACK_COLON] = ACTIONS(4158), + [sym_this] = ACTIONS(4156), }, - [STATE(805)] = { - [sym_identifier] = ACTIONS(4180), - [aux_sym_preproc_include_token1] = ACTIONS(4180), - [aux_sym_preproc_def_token1] = ACTIONS(4180), - [aux_sym_preproc_if_token1] = ACTIONS(4180), - [aux_sym_preproc_if_token2] = ACTIONS(4180), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4180), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4180), - [sym_preproc_directive] = ACTIONS(4180), - [anon_sym_LPAREN2] = ACTIONS(4182), - [anon_sym_BANG] = ACTIONS(4182), - [anon_sym_TILDE] = ACTIONS(4182), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_STAR] = ACTIONS(4182), - [anon_sym_AMP_AMP] = ACTIONS(4182), - [anon_sym_AMP] = ACTIONS(4180), - [anon_sym_SEMI] = ACTIONS(4182), - [anon_sym___extension__] = ACTIONS(4180), - [anon_sym_typedef] = ACTIONS(4180), - [anon_sym_virtual] = ACTIONS(4180), - [anon_sym_extern] = ACTIONS(4180), - [anon_sym___attribute__] = ACTIONS(4180), - [anon_sym___attribute] = ACTIONS(4180), - [anon_sym_using] = ACTIONS(4180), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4182), - [anon_sym___declspec] = ACTIONS(4180), - [anon_sym___based] = ACTIONS(4180), - [anon_sym___cdecl] = ACTIONS(4180), - [anon_sym___clrcall] = ACTIONS(4180), - [anon_sym___stdcall] = ACTIONS(4180), - [anon_sym___fastcall] = ACTIONS(4180), - [anon_sym___thiscall] = ACTIONS(4180), - [anon_sym___vectorcall] = ACTIONS(4180), - [anon_sym_LBRACE] = ACTIONS(4182), - [anon_sym_signed] = ACTIONS(4180), - [anon_sym_unsigned] = ACTIONS(4180), - [anon_sym_long] = ACTIONS(4180), - [anon_sym_short] = ACTIONS(4180), - [anon_sym_LBRACK] = ACTIONS(4180), - [anon_sym_static] = ACTIONS(4180), - [anon_sym_register] = ACTIONS(4180), - [anon_sym_inline] = ACTIONS(4180), - [anon_sym___inline] = ACTIONS(4180), - [anon_sym___inline__] = ACTIONS(4180), - [anon_sym___forceinline] = ACTIONS(4180), - [anon_sym_thread_local] = ACTIONS(4180), - [anon_sym___thread] = ACTIONS(4180), - [anon_sym_const] = ACTIONS(4180), - [anon_sym_constexpr] = ACTIONS(4180), - [anon_sym_volatile] = ACTIONS(4180), - [anon_sym_restrict] = ACTIONS(4180), - [anon_sym___restrict__] = ACTIONS(4180), - [anon_sym__Atomic] = ACTIONS(4180), - [anon_sym__Noreturn] = ACTIONS(4180), - [anon_sym_noreturn] = ACTIONS(4180), - [anon_sym__Nonnull] = ACTIONS(4180), - [anon_sym_mutable] = ACTIONS(4180), - [anon_sym_constinit] = ACTIONS(4180), - [anon_sym_consteval] = ACTIONS(4180), - [anon_sym_alignas] = ACTIONS(4180), - [anon_sym__Alignas] = ACTIONS(4180), - [sym_primitive_type] = ACTIONS(4180), - [anon_sym_enum] = ACTIONS(4180), - [anon_sym_class] = ACTIONS(4180), - [anon_sym_struct] = ACTIONS(4180), - [anon_sym_union] = ACTIONS(4180), - [anon_sym_if] = ACTIONS(4180), - [anon_sym_switch] = ACTIONS(4180), - [anon_sym_case] = ACTIONS(4180), - [anon_sym_default] = ACTIONS(4180), - [anon_sym_while] = ACTIONS(4180), - [anon_sym_do] = ACTIONS(4180), - [anon_sym_for] = ACTIONS(4180), - [anon_sym_return] = ACTIONS(4180), - [anon_sym_break] = ACTIONS(4180), - [anon_sym_continue] = ACTIONS(4180), - [anon_sym_goto] = ACTIONS(4180), - [anon_sym___try] = ACTIONS(4180), - [anon_sym___leave] = ACTIONS(4180), - [anon_sym_not] = ACTIONS(4180), - [anon_sym_compl] = ACTIONS(4180), - [anon_sym_DASH_DASH] = ACTIONS(4182), - [anon_sym_PLUS_PLUS] = ACTIONS(4182), - [anon_sym_sizeof] = ACTIONS(4180), - [anon_sym___alignof__] = ACTIONS(4180), - [anon_sym___alignof] = ACTIONS(4180), - [anon_sym__alignof] = ACTIONS(4180), - [anon_sym_alignof] = ACTIONS(4180), - [anon_sym__Alignof] = ACTIONS(4180), - [anon_sym_offsetof] = ACTIONS(4180), - [anon_sym__Generic] = ACTIONS(4180), - [anon_sym_typename] = ACTIONS(4180), - [anon_sym_asm] = ACTIONS(4180), - [anon_sym___asm__] = ACTIONS(4180), - [anon_sym___asm] = ACTIONS(4180), - [sym_number_literal] = ACTIONS(4182), - [anon_sym_L_SQUOTE] = ACTIONS(4182), - [anon_sym_u_SQUOTE] = ACTIONS(4182), - [anon_sym_U_SQUOTE] = ACTIONS(4182), - [anon_sym_u8_SQUOTE] = ACTIONS(4182), - [anon_sym_SQUOTE] = ACTIONS(4182), - [anon_sym_L_DQUOTE] = ACTIONS(4182), - [anon_sym_u_DQUOTE] = ACTIONS(4182), - [anon_sym_U_DQUOTE] = ACTIONS(4182), - [anon_sym_u8_DQUOTE] = ACTIONS(4182), - [anon_sym_DQUOTE] = ACTIONS(4182), - [sym_true] = ACTIONS(4180), - [sym_false] = ACTIONS(4180), - [anon_sym_NULL] = ACTIONS(4180), - [anon_sym_nullptr] = ACTIONS(4180), + [STATE(685)] = { + [sym_identifier] = ACTIONS(4156), + [aux_sym_preproc_include_token1] = ACTIONS(4156), + [aux_sym_preproc_def_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token2] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), + [sym_preproc_directive] = ACTIONS(4156), + [anon_sym_LPAREN2] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4158), + [anon_sym_TILDE] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym___extension__] = ACTIONS(4156), + [anon_sym_typedef] = ACTIONS(4156), + [anon_sym_virtual] = ACTIONS(4156), + [anon_sym_extern] = ACTIONS(4156), + [anon_sym___attribute__] = ACTIONS(4156), + [anon_sym___attribute] = ACTIONS(4156), + [anon_sym_using] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4156), + [anon_sym___based] = ACTIONS(4156), + [anon_sym___cdecl] = ACTIONS(4156), + [anon_sym___clrcall] = ACTIONS(4156), + [anon_sym___stdcall] = ACTIONS(4156), + [anon_sym___fastcall] = ACTIONS(4156), + [anon_sym___thiscall] = ACTIONS(4156), + [anon_sym___vectorcall] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_signed] = ACTIONS(4156), + [anon_sym_unsigned] = ACTIONS(4156), + [anon_sym_long] = ACTIONS(4156), + [anon_sym_short] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_register] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym___inline] = ACTIONS(4156), + [anon_sym___inline__] = ACTIONS(4156), + [anon_sym___forceinline] = ACTIONS(4156), + [anon_sym_thread_local] = ACTIONS(4156), + [anon_sym___thread] = ACTIONS(4156), + [anon_sym_const] = ACTIONS(4156), + [anon_sym_constexpr] = ACTIONS(4156), + [anon_sym_volatile] = ACTIONS(4156), + [anon_sym_restrict] = ACTIONS(4156), + [anon_sym___restrict__] = ACTIONS(4156), + [anon_sym__Atomic] = ACTIONS(4156), + [anon_sym__Noreturn] = ACTIONS(4156), + [anon_sym_noreturn] = ACTIONS(4156), + [anon_sym__Nonnull] = ACTIONS(4156), + [anon_sym_mutable] = ACTIONS(4156), + [anon_sym_constinit] = ACTIONS(4156), + [anon_sym_consteval] = ACTIONS(4156), + [anon_sym_alignas] = ACTIONS(4156), + [anon_sym__Alignas] = ACTIONS(4156), + [sym_primitive_type] = ACTIONS(4156), + [anon_sym_enum] = ACTIONS(4156), + [anon_sym_class] = ACTIONS(4156), + [anon_sym_struct] = ACTIONS(4156), + [anon_sym_union] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_switch] = ACTIONS(4156), + [anon_sym_case] = ACTIONS(4156), + [anon_sym_default] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_do] = ACTIONS(4156), + [anon_sym_for] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_goto] = ACTIONS(4156), + [anon_sym___try] = ACTIONS(4156), + [anon_sym___leave] = ACTIONS(4156), + [anon_sym_not] = ACTIONS(4156), + [anon_sym_compl] = ACTIONS(4156), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_sizeof] = ACTIONS(4156), + [anon_sym___alignof__] = ACTIONS(4156), + [anon_sym___alignof] = ACTIONS(4156), + [anon_sym__alignof] = ACTIONS(4156), + [anon_sym_alignof] = ACTIONS(4156), + [anon_sym__Alignof] = ACTIONS(4156), + [anon_sym_offsetof] = ACTIONS(4156), + [anon_sym__Generic] = ACTIONS(4156), + [anon_sym_typename] = ACTIONS(4156), + [anon_sym_asm] = ACTIONS(4156), + [anon_sym___asm__] = ACTIONS(4156), + [anon_sym___asm] = ACTIONS(4156), + [sym_number_literal] = ACTIONS(4158), + [anon_sym_L_SQUOTE] = ACTIONS(4158), + [anon_sym_u_SQUOTE] = ACTIONS(4158), + [anon_sym_U_SQUOTE] = ACTIONS(4158), + [anon_sym_u8_SQUOTE] = ACTIONS(4158), + [anon_sym_SQUOTE] = ACTIONS(4158), + [anon_sym_L_DQUOTE] = ACTIONS(4158), + [anon_sym_u_DQUOTE] = ACTIONS(4158), + [anon_sym_U_DQUOTE] = ACTIONS(4158), + [anon_sym_u8_DQUOTE] = ACTIONS(4158), + [anon_sym_DQUOTE] = ACTIONS(4158), + [sym_true] = ACTIONS(4156), + [sym_false] = ACTIONS(4156), + [anon_sym_NULL] = ACTIONS(4156), + [anon_sym_nullptr] = ACTIONS(4156), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4180), - [anon_sym_decltype] = ACTIONS(4180), - [anon_sym_explicit] = ACTIONS(4180), - [anon_sym_template] = ACTIONS(4180), - [anon_sym_operator] = ACTIONS(4180), - [anon_sym_try] = ACTIONS(4180), - [anon_sym_delete] = ACTIONS(4180), - [anon_sym_throw] = ACTIONS(4180), - [anon_sym_namespace] = ACTIONS(4180), - [anon_sym_static_assert] = ACTIONS(4180), - [anon_sym_concept] = ACTIONS(4180), - [anon_sym_co_return] = ACTIONS(4180), - [anon_sym_co_yield] = ACTIONS(4180), - [anon_sym_R_DQUOTE] = ACTIONS(4182), - [anon_sym_LR_DQUOTE] = ACTIONS(4182), - [anon_sym_uR_DQUOTE] = ACTIONS(4182), - [anon_sym_UR_DQUOTE] = ACTIONS(4182), - [anon_sym_u8R_DQUOTE] = ACTIONS(4182), - [anon_sym_co_await] = ACTIONS(4180), - [anon_sym_new] = ACTIONS(4180), - [anon_sym_requires] = ACTIONS(4180), - [anon_sym_CARET_CARET] = ACTIONS(4182), - [anon_sym_LBRACK_COLON] = ACTIONS(4182), - [sym_this] = ACTIONS(4180), - }, - [STATE(806)] = { - [sym_identifier] = ACTIONS(4022), - [aux_sym_preproc_include_token1] = ACTIONS(4022), - [aux_sym_preproc_def_token1] = ACTIONS(4022), - [aux_sym_preproc_if_token1] = ACTIONS(4022), - [aux_sym_preproc_if_token2] = ACTIONS(4022), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4022), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4022), - [sym_preproc_directive] = ACTIONS(4022), - [anon_sym_LPAREN2] = ACTIONS(4024), - [anon_sym_BANG] = ACTIONS(4024), - [anon_sym_TILDE] = ACTIONS(4024), - [anon_sym_DASH] = ACTIONS(4022), - [anon_sym_PLUS] = ACTIONS(4022), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_AMP_AMP] = ACTIONS(4024), - [anon_sym_AMP] = ACTIONS(4022), - [anon_sym_SEMI] = ACTIONS(4024), - [anon_sym___extension__] = ACTIONS(4022), - [anon_sym_typedef] = ACTIONS(4022), - [anon_sym_virtual] = ACTIONS(4022), - [anon_sym_extern] = ACTIONS(4022), - [anon_sym___attribute__] = ACTIONS(4022), - [anon_sym___attribute] = ACTIONS(4022), - [anon_sym_using] = ACTIONS(4022), - [anon_sym_COLON_COLON] = ACTIONS(4024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4024), - [anon_sym___declspec] = ACTIONS(4022), - [anon_sym___based] = ACTIONS(4022), - [anon_sym___cdecl] = ACTIONS(4022), - [anon_sym___clrcall] = ACTIONS(4022), - [anon_sym___stdcall] = ACTIONS(4022), - [anon_sym___fastcall] = ACTIONS(4022), - [anon_sym___thiscall] = ACTIONS(4022), - [anon_sym___vectorcall] = ACTIONS(4022), - [anon_sym_LBRACE] = ACTIONS(4024), - [anon_sym_signed] = ACTIONS(4022), - [anon_sym_unsigned] = ACTIONS(4022), - [anon_sym_long] = ACTIONS(4022), - [anon_sym_short] = ACTIONS(4022), - [anon_sym_LBRACK] = ACTIONS(4022), - [anon_sym_static] = ACTIONS(4022), - [anon_sym_register] = ACTIONS(4022), - [anon_sym_inline] = ACTIONS(4022), - [anon_sym___inline] = ACTIONS(4022), - [anon_sym___inline__] = ACTIONS(4022), - [anon_sym___forceinline] = ACTIONS(4022), - [anon_sym_thread_local] = ACTIONS(4022), - [anon_sym___thread] = ACTIONS(4022), - [anon_sym_const] = ACTIONS(4022), - [anon_sym_constexpr] = ACTIONS(4022), - [anon_sym_volatile] = ACTIONS(4022), - [anon_sym_restrict] = ACTIONS(4022), - [anon_sym___restrict__] = ACTIONS(4022), - [anon_sym__Atomic] = ACTIONS(4022), - [anon_sym__Noreturn] = ACTIONS(4022), - [anon_sym_noreturn] = ACTIONS(4022), - [anon_sym__Nonnull] = ACTIONS(4022), - [anon_sym_mutable] = ACTIONS(4022), - [anon_sym_constinit] = ACTIONS(4022), - [anon_sym_consteval] = ACTIONS(4022), - [anon_sym_alignas] = ACTIONS(4022), - [anon_sym__Alignas] = ACTIONS(4022), - [sym_primitive_type] = ACTIONS(4022), - [anon_sym_enum] = ACTIONS(4022), - [anon_sym_class] = ACTIONS(4022), - [anon_sym_struct] = ACTIONS(4022), - [anon_sym_union] = ACTIONS(4022), - [anon_sym_if] = ACTIONS(4022), - [anon_sym_switch] = ACTIONS(4022), - [anon_sym_case] = ACTIONS(4022), - [anon_sym_default] = ACTIONS(4022), - [anon_sym_while] = ACTIONS(4022), - [anon_sym_do] = ACTIONS(4022), - [anon_sym_for] = ACTIONS(4022), - [anon_sym_return] = ACTIONS(4022), - [anon_sym_break] = ACTIONS(4022), - [anon_sym_continue] = ACTIONS(4022), - [anon_sym_goto] = ACTIONS(4022), - [anon_sym___try] = ACTIONS(4022), - [anon_sym___leave] = ACTIONS(4022), - [anon_sym_not] = ACTIONS(4022), - [anon_sym_compl] = ACTIONS(4022), - [anon_sym_DASH_DASH] = ACTIONS(4024), - [anon_sym_PLUS_PLUS] = ACTIONS(4024), - [anon_sym_sizeof] = ACTIONS(4022), - [anon_sym___alignof__] = ACTIONS(4022), - [anon_sym___alignof] = ACTIONS(4022), - [anon_sym__alignof] = ACTIONS(4022), - [anon_sym_alignof] = ACTIONS(4022), - [anon_sym__Alignof] = ACTIONS(4022), - [anon_sym_offsetof] = ACTIONS(4022), - [anon_sym__Generic] = ACTIONS(4022), - [anon_sym_typename] = ACTIONS(4022), - [anon_sym_asm] = ACTIONS(4022), - [anon_sym___asm__] = ACTIONS(4022), - [anon_sym___asm] = ACTIONS(4022), - [sym_number_literal] = ACTIONS(4024), - [anon_sym_L_SQUOTE] = ACTIONS(4024), - [anon_sym_u_SQUOTE] = ACTIONS(4024), - [anon_sym_U_SQUOTE] = ACTIONS(4024), - [anon_sym_u8_SQUOTE] = ACTIONS(4024), - [anon_sym_SQUOTE] = 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_true] = ACTIONS(4022), - [sym_false] = ACTIONS(4022), - [anon_sym_NULL] = ACTIONS(4022), - [anon_sym_nullptr] = ACTIONS(4022), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4022), - [anon_sym_decltype] = ACTIONS(4022), - [anon_sym_explicit] = ACTIONS(4022), - [anon_sym_template] = ACTIONS(4022), - [anon_sym_operator] = ACTIONS(4022), - [anon_sym_try] = ACTIONS(4022), - [anon_sym_delete] = ACTIONS(4022), - [anon_sym_throw] = ACTIONS(4022), - [anon_sym_namespace] = ACTIONS(4022), - [anon_sym_static_assert] = ACTIONS(4022), - [anon_sym_concept] = ACTIONS(4022), - [anon_sym_co_return] = ACTIONS(4022), - [anon_sym_co_yield] = ACTIONS(4022), - [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), - [anon_sym_co_await] = ACTIONS(4022), - [anon_sym_new] = ACTIONS(4022), - [anon_sym_requires] = ACTIONS(4022), - [anon_sym_CARET_CARET] = ACTIONS(4024), - [anon_sym_LBRACK_COLON] = ACTIONS(4024), - [sym_this] = ACTIONS(4022), - }, - [STATE(807)] = { - [sym_identifier] = ACTIONS(3974), - [aux_sym_preproc_include_token1] = ACTIONS(3974), - [aux_sym_preproc_def_token1] = ACTIONS(3974), - [aux_sym_preproc_if_token1] = ACTIONS(3974), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3974), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3974), - [sym_preproc_directive] = ACTIONS(3974), - [anon_sym_LPAREN2] = ACTIONS(3976), - [anon_sym_BANG] = ACTIONS(3976), - [anon_sym_TILDE] = ACTIONS(3976), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_STAR] = ACTIONS(3976), - [anon_sym_AMP_AMP] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3974), - [anon_sym_SEMI] = ACTIONS(3976), - [anon_sym___extension__] = ACTIONS(3974), - [anon_sym_typedef] = ACTIONS(3974), - [anon_sym_virtual] = ACTIONS(3974), - [anon_sym_extern] = ACTIONS(3974), - [anon_sym___attribute__] = ACTIONS(3974), - [anon_sym___attribute] = ACTIONS(3974), - [anon_sym_using] = ACTIONS(3974), - [anon_sym_COLON_COLON] = ACTIONS(3976), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3976), - [anon_sym___declspec] = ACTIONS(3974), - [anon_sym___based] = ACTIONS(3974), - [anon_sym___cdecl] = ACTIONS(3974), - [anon_sym___clrcall] = ACTIONS(3974), - [anon_sym___stdcall] = ACTIONS(3974), - [anon_sym___fastcall] = ACTIONS(3974), - [anon_sym___thiscall] = ACTIONS(3974), - [anon_sym___vectorcall] = ACTIONS(3974), - [anon_sym_LBRACE] = ACTIONS(3976), - [anon_sym_RBRACE] = ACTIONS(3976), - [anon_sym_signed] = ACTIONS(3974), - [anon_sym_unsigned] = ACTIONS(3974), - [anon_sym_long] = ACTIONS(3974), - [anon_sym_short] = ACTIONS(3974), - [anon_sym_LBRACK] = ACTIONS(3974), - [anon_sym_static] = ACTIONS(3974), - [anon_sym_register] = ACTIONS(3974), - [anon_sym_inline] = ACTIONS(3974), - [anon_sym___inline] = ACTIONS(3974), - [anon_sym___inline__] = ACTIONS(3974), - [anon_sym___forceinline] = ACTIONS(3974), - [anon_sym_thread_local] = ACTIONS(3974), - [anon_sym___thread] = ACTIONS(3974), - [anon_sym_const] = ACTIONS(3974), - [anon_sym_constexpr] = ACTIONS(3974), - [anon_sym_volatile] = ACTIONS(3974), - [anon_sym_restrict] = ACTIONS(3974), - [anon_sym___restrict__] = ACTIONS(3974), - [anon_sym__Atomic] = ACTIONS(3974), - [anon_sym__Noreturn] = ACTIONS(3974), - [anon_sym_noreturn] = ACTIONS(3974), - [anon_sym__Nonnull] = ACTIONS(3974), - [anon_sym_mutable] = ACTIONS(3974), - [anon_sym_constinit] = ACTIONS(3974), - [anon_sym_consteval] = ACTIONS(3974), - [anon_sym_alignas] = ACTIONS(3974), - [anon_sym__Alignas] = ACTIONS(3974), - [sym_primitive_type] = ACTIONS(3974), - [anon_sym_enum] = ACTIONS(3974), - [anon_sym_class] = ACTIONS(3974), - [anon_sym_struct] = ACTIONS(3974), - [anon_sym_union] = ACTIONS(3974), - [anon_sym_if] = ACTIONS(3974), - [anon_sym_switch] = ACTIONS(3974), - [anon_sym_case] = ACTIONS(3974), - [anon_sym_default] = ACTIONS(3974), - [anon_sym_while] = ACTIONS(3974), - [anon_sym_do] = ACTIONS(3974), - [anon_sym_for] = ACTIONS(3974), - [anon_sym_return] = ACTIONS(3974), - [anon_sym_break] = ACTIONS(3974), - [anon_sym_continue] = ACTIONS(3974), - [anon_sym_goto] = ACTIONS(3974), - [anon_sym___try] = ACTIONS(3974), - [anon_sym___leave] = ACTIONS(3974), - [anon_sym_not] = ACTIONS(3974), - [anon_sym_compl] = ACTIONS(3974), - [anon_sym_DASH_DASH] = ACTIONS(3976), - [anon_sym_PLUS_PLUS] = ACTIONS(3976), - [anon_sym_sizeof] = ACTIONS(3974), - [anon_sym___alignof__] = ACTIONS(3974), - [anon_sym___alignof] = ACTIONS(3974), - [anon_sym__alignof] = ACTIONS(3974), - [anon_sym_alignof] = ACTIONS(3974), - [anon_sym__Alignof] = ACTIONS(3974), - [anon_sym_offsetof] = ACTIONS(3974), - [anon_sym__Generic] = ACTIONS(3974), - [anon_sym_typename] = ACTIONS(3974), - [anon_sym_asm] = ACTIONS(3974), - [anon_sym___asm__] = ACTIONS(3974), - [anon_sym___asm] = ACTIONS(3974), - [sym_number_literal] = ACTIONS(3976), - [anon_sym_L_SQUOTE] = ACTIONS(3976), - [anon_sym_u_SQUOTE] = ACTIONS(3976), - [anon_sym_U_SQUOTE] = ACTIONS(3976), - [anon_sym_u8_SQUOTE] = ACTIONS(3976), - [anon_sym_SQUOTE] = ACTIONS(3976), - [anon_sym_L_DQUOTE] = ACTIONS(3976), - [anon_sym_u_DQUOTE] = ACTIONS(3976), - [anon_sym_U_DQUOTE] = ACTIONS(3976), - [anon_sym_u8_DQUOTE] = ACTIONS(3976), - [anon_sym_DQUOTE] = ACTIONS(3976), - [sym_true] = ACTIONS(3974), - [sym_false] = ACTIONS(3974), - [anon_sym_NULL] = ACTIONS(3974), - [anon_sym_nullptr] = ACTIONS(3974), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3974), - [anon_sym_decltype] = ACTIONS(3974), - [anon_sym_explicit] = ACTIONS(3974), - [anon_sym_template] = ACTIONS(3974), - [anon_sym_operator] = ACTIONS(3974), - [anon_sym_try] = ACTIONS(3974), - [anon_sym_delete] = ACTIONS(3974), - [anon_sym_throw] = ACTIONS(3974), - [anon_sym_namespace] = ACTIONS(3974), - [anon_sym_static_assert] = ACTIONS(3974), - [anon_sym_concept] = ACTIONS(3974), - [anon_sym_co_return] = ACTIONS(3974), - [anon_sym_co_yield] = ACTIONS(3974), - [anon_sym_R_DQUOTE] = ACTIONS(3976), - [anon_sym_LR_DQUOTE] = ACTIONS(3976), - [anon_sym_uR_DQUOTE] = ACTIONS(3976), - [anon_sym_UR_DQUOTE] = ACTIONS(3976), - [anon_sym_u8R_DQUOTE] = ACTIONS(3976), - [anon_sym_co_await] = ACTIONS(3974), - [anon_sym_new] = ACTIONS(3974), - [anon_sym_requires] = ACTIONS(3974), - [anon_sym_CARET_CARET] = ACTIONS(3976), - [anon_sym_LBRACK_COLON] = ACTIONS(3976), - [sym_this] = ACTIONS(3974), - }, - [STATE(808)] = { - [sym_identifier] = ACTIONS(3978), - [aux_sym_preproc_include_token1] = ACTIONS(3978), - [aux_sym_preproc_def_token1] = ACTIONS(3978), - [aux_sym_preproc_if_token1] = ACTIONS(3978), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3978), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3978), - [sym_preproc_directive] = ACTIONS(3978), - [anon_sym_LPAREN2] = ACTIONS(3980), - [anon_sym_BANG] = ACTIONS(3980), - [anon_sym_TILDE] = ACTIONS(3980), - [anon_sym_DASH] = ACTIONS(3978), - [anon_sym_PLUS] = ACTIONS(3978), - [anon_sym_STAR] = ACTIONS(3980), - [anon_sym_AMP_AMP] = ACTIONS(3980), - [anon_sym_AMP] = ACTIONS(3978), - [anon_sym_SEMI] = ACTIONS(3980), - [anon_sym___extension__] = ACTIONS(3978), - [anon_sym_typedef] = ACTIONS(3978), - [anon_sym_virtual] = ACTIONS(3978), - [anon_sym_extern] = ACTIONS(3978), - [anon_sym___attribute__] = ACTIONS(3978), - [anon_sym___attribute] = ACTIONS(3978), - [anon_sym_using] = ACTIONS(3978), - [anon_sym_COLON_COLON] = ACTIONS(3980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3980), - [anon_sym___declspec] = ACTIONS(3978), - [anon_sym___based] = ACTIONS(3978), - [anon_sym___cdecl] = ACTIONS(3978), - [anon_sym___clrcall] = ACTIONS(3978), - [anon_sym___stdcall] = ACTIONS(3978), - [anon_sym___fastcall] = ACTIONS(3978), - [anon_sym___thiscall] = ACTIONS(3978), - [anon_sym___vectorcall] = ACTIONS(3978), - [anon_sym_LBRACE] = ACTIONS(3980), - [anon_sym_RBRACE] = ACTIONS(3980), - [anon_sym_signed] = ACTIONS(3978), - [anon_sym_unsigned] = ACTIONS(3978), - [anon_sym_long] = ACTIONS(3978), - [anon_sym_short] = ACTIONS(3978), - [anon_sym_LBRACK] = ACTIONS(3978), - [anon_sym_static] = ACTIONS(3978), - [anon_sym_register] = ACTIONS(3978), - [anon_sym_inline] = ACTIONS(3978), - [anon_sym___inline] = ACTIONS(3978), - [anon_sym___inline__] = ACTIONS(3978), - [anon_sym___forceinline] = ACTIONS(3978), - [anon_sym_thread_local] = ACTIONS(3978), - [anon_sym___thread] = ACTIONS(3978), - [anon_sym_const] = ACTIONS(3978), - [anon_sym_constexpr] = ACTIONS(3978), - [anon_sym_volatile] = ACTIONS(3978), - [anon_sym_restrict] = ACTIONS(3978), - [anon_sym___restrict__] = ACTIONS(3978), - [anon_sym__Atomic] = ACTIONS(3978), - [anon_sym__Noreturn] = ACTIONS(3978), - [anon_sym_noreturn] = ACTIONS(3978), - [anon_sym__Nonnull] = ACTIONS(3978), - [anon_sym_mutable] = ACTIONS(3978), - [anon_sym_constinit] = ACTIONS(3978), - [anon_sym_consteval] = ACTIONS(3978), - [anon_sym_alignas] = ACTIONS(3978), - [anon_sym__Alignas] = ACTIONS(3978), - [sym_primitive_type] = ACTIONS(3978), - [anon_sym_enum] = ACTIONS(3978), - [anon_sym_class] = ACTIONS(3978), - [anon_sym_struct] = ACTIONS(3978), - [anon_sym_union] = ACTIONS(3978), - [anon_sym_if] = ACTIONS(3978), - [anon_sym_switch] = ACTIONS(3978), - [anon_sym_case] = ACTIONS(3978), - [anon_sym_default] = ACTIONS(3978), - [anon_sym_while] = ACTIONS(3978), - [anon_sym_do] = ACTIONS(3978), - [anon_sym_for] = ACTIONS(3978), - [anon_sym_return] = ACTIONS(3978), - [anon_sym_break] = ACTIONS(3978), - [anon_sym_continue] = ACTIONS(3978), - [anon_sym_goto] = ACTIONS(3978), - [anon_sym___try] = ACTIONS(3978), - [anon_sym___leave] = ACTIONS(3978), - [anon_sym_not] = ACTIONS(3978), - [anon_sym_compl] = ACTIONS(3978), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(3978), - [anon_sym___alignof__] = ACTIONS(3978), - [anon_sym___alignof] = ACTIONS(3978), - [anon_sym__alignof] = ACTIONS(3978), - [anon_sym_alignof] = ACTIONS(3978), - [anon_sym__Alignof] = ACTIONS(3978), - [anon_sym_offsetof] = ACTIONS(3978), - [anon_sym__Generic] = ACTIONS(3978), - [anon_sym_typename] = ACTIONS(3978), - [anon_sym_asm] = ACTIONS(3978), - [anon_sym___asm__] = ACTIONS(3978), - [anon_sym___asm] = ACTIONS(3978), - [sym_number_literal] = ACTIONS(3980), - [anon_sym_L_SQUOTE] = ACTIONS(3980), - [anon_sym_u_SQUOTE] = ACTIONS(3980), - [anon_sym_U_SQUOTE] = ACTIONS(3980), - [anon_sym_u8_SQUOTE] = ACTIONS(3980), - [anon_sym_SQUOTE] = ACTIONS(3980), - [anon_sym_L_DQUOTE] = ACTIONS(3980), - [anon_sym_u_DQUOTE] = ACTIONS(3980), - [anon_sym_U_DQUOTE] = ACTIONS(3980), - [anon_sym_u8_DQUOTE] = ACTIONS(3980), - [anon_sym_DQUOTE] = ACTIONS(3980), - [sym_true] = ACTIONS(3978), - [sym_false] = ACTIONS(3978), - [anon_sym_NULL] = ACTIONS(3978), - [anon_sym_nullptr] = ACTIONS(3978), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3978), - [anon_sym_decltype] = ACTIONS(3978), - [anon_sym_explicit] = ACTIONS(3978), - [anon_sym_template] = ACTIONS(3978), - [anon_sym_operator] = ACTIONS(3978), - [anon_sym_try] = ACTIONS(3978), - [anon_sym_delete] = ACTIONS(3978), - [anon_sym_throw] = ACTIONS(3978), - [anon_sym_namespace] = ACTIONS(3978), - [anon_sym_static_assert] = ACTIONS(3978), - [anon_sym_concept] = ACTIONS(3978), - [anon_sym_co_return] = ACTIONS(3978), - [anon_sym_co_yield] = ACTIONS(3978), - [anon_sym_R_DQUOTE] = ACTIONS(3980), - [anon_sym_LR_DQUOTE] = ACTIONS(3980), - [anon_sym_uR_DQUOTE] = ACTIONS(3980), - [anon_sym_UR_DQUOTE] = ACTIONS(3980), - [anon_sym_u8R_DQUOTE] = ACTIONS(3980), - [anon_sym_co_await] = ACTIONS(3978), - [anon_sym_new] = ACTIONS(3978), - [anon_sym_requires] = ACTIONS(3978), - [anon_sym_CARET_CARET] = ACTIONS(3980), - [anon_sym_LBRACK_COLON] = ACTIONS(3980), - [sym_this] = ACTIONS(3978), - }, - [STATE(809)] = { - [sym_identifier] = ACTIONS(3982), - [aux_sym_preproc_include_token1] = ACTIONS(3982), - [aux_sym_preproc_def_token1] = ACTIONS(3982), - [aux_sym_preproc_if_token1] = ACTIONS(3982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3982), - [sym_preproc_directive] = ACTIONS(3982), - [anon_sym_LPAREN2] = ACTIONS(3984), - [anon_sym_BANG] = ACTIONS(3984), - [anon_sym_TILDE] = ACTIONS(3984), - [anon_sym_DASH] = ACTIONS(3982), - [anon_sym_PLUS] = ACTIONS(3982), - [anon_sym_STAR] = ACTIONS(3984), - [anon_sym_AMP_AMP] = ACTIONS(3984), - [anon_sym_AMP] = ACTIONS(3982), - [anon_sym_SEMI] = ACTIONS(3984), - [anon_sym___extension__] = ACTIONS(3982), - [anon_sym_typedef] = ACTIONS(3982), - [anon_sym_virtual] = ACTIONS(3982), - [anon_sym_extern] = ACTIONS(3982), - [anon_sym___attribute__] = ACTIONS(3982), - [anon_sym___attribute] = ACTIONS(3982), - [anon_sym_using] = ACTIONS(3982), - [anon_sym_COLON_COLON] = ACTIONS(3984), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3984), - [anon_sym___declspec] = ACTIONS(3982), - [anon_sym___based] = ACTIONS(3982), - [anon_sym___cdecl] = ACTIONS(3982), - [anon_sym___clrcall] = ACTIONS(3982), - [anon_sym___stdcall] = ACTIONS(3982), - [anon_sym___fastcall] = ACTIONS(3982), - [anon_sym___thiscall] = ACTIONS(3982), - [anon_sym___vectorcall] = ACTIONS(3982), - [anon_sym_LBRACE] = ACTIONS(3984), - [anon_sym_RBRACE] = ACTIONS(3984), - [anon_sym_signed] = ACTIONS(3982), - [anon_sym_unsigned] = ACTIONS(3982), - [anon_sym_long] = ACTIONS(3982), - [anon_sym_short] = ACTIONS(3982), - [anon_sym_LBRACK] = ACTIONS(3982), - [anon_sym_static] = ACTIONS(3982), - [anon_sym_register] = ACTIONS(3982), - [anon_sym_inline] = ACTIONS(3982), - [anon_sym___inline] = ACTIONS(3982), - [anon_sym___inline__] = ACTIONS(3982), - [anon_sym___forceinline] = ACTIONS(3982), - [anon_sym_thread_local] = ACTIONS(3982), - [anon_sym___thread] = ACTIONS(3982), - [anon_sym_const] = ACTIONS(3982), - [anon_sym_constexpr] = ACTIONS(3982), - [anon_sym_volatile] = ACTIONS(3982), - [anon_sym_restrict] = ACTIONS(3982), - [anon_sym___restrict__] = ACTIONS(3982), - [anon_sym__Atomic] = ACTIONS(3982), - [anon_sym__Noreturn] = ACTIONS(3982), - [anon_sym_noreturn] = ACTIONS(3982), - [anon_sym__Nonnull] = ACTIONS(3982), - [anon_sym_mutable] = ACTIONS(3982), - [anon_sym_constinit] = ACTIONS(3982), - [anon_sym_consteval] = ACTIONS(3982), - [anon_sym_alignas] = ACTIONS(3982), - [anon_sym__Alignas] = ACTIONS(3982), - [sym_primitive_type] = ACTIONS(3982), - [anon_sym_enum] = ACTIONS(3982), - [anon_sym_class] = ACTIONS(3982), - [anon_sym_struct] = ACTIONS(3982), - [anon_sym_union] = ACTIONS(3982), - [anon_sym_if] = ACTIONS(3982), - [anon_sym_switch] = ACTIONS(3982), - [anon_sym_case] = ACTIONS(3982), - [anon_sym_default] = ACTIONS(3982), - [anon_sym_while] = ACTIONS(3982), - [anon_sym_do] = ACTIONS(3982), - [anon_sym_for] = ACTIONS(3982), - [anon_sym_return] = ACTIONS(3982), - [anon_sym_break] = ACTIONS(3982), - [anon_sym_continue] = ACTIONS(3982), - [anon_sym_goto] = ACTIONS(3982), - [anon_sym___try] = ACTIONS(3982), - [anon_sym___leave] = ACTIONS(3982), - [anon_sym_not] = ACTIONS(3982), - [anon_sym_compl] = ACTIONS(3982), - [anon_sym_DASH_DASH] = ACTIONS(3984), - [anon_sym_PLUS_PLUS] = ACTIONS(3984), - [anon_sym_sizeof] = ACTIONS(3982), - [anon_sym___alignof__] = ACTIONS(3982), - [anon_sym___alignof] = ACTIONS(3982), - [anon_sym__alignof] = ACTIONS(3982), - [anon_sym_alignof] = ACTIONS(3982), - [anon_sym__Alignof] = ACTIONS(3982), - [anon_sym_offsetof] = ACTIONS(3982), - [anon_sym__Generic] = ACTIONS(3982), - [anon_sym_typename] = ACTIONS(3982), - [anon_sym_asm] = ACTIONS(3982), - [anon_sym___asm__] = ACTIONS(3982), - [anon_sym___asm] = ACTIONS(3982), - [sym_number_literal] = ACTIONS(3984), - [anon_sym_L_SQUOTE] = ACTIONS(3984), - [anon_sym_u_SQUOTE] = ACTIONS(3984), - [anon_sym_U_SQUOTE] = ACTIONS(3984), - [anon_sym_u8_SQUOTE] = ACTIONS(3984), - [anon_sym_SQUOTE] = ACTIONS(3984), - [anon_sym_L_DQUOTE] = ACTIONS(3984), - [anon_sym_u_DQUOTE] = ACTIONS(3984), - [anon_sym_U_DQUOTE] = ACTIONS(3984), - [anon_sym_u8_DQUOTE] = ACTIONS(3984), - [anon_sym_DQUOTE] = ACTIONS(3984), - [sym_true] = ACTIONS(3982), - [sym_false] = ACTIONS(3982), - [anon_sym_NULL] = ACTIONS(3982), - [anon_sym_nullptr] = ACTIONS(3982), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3982), - [anon_sym_decltype] = ACTIONS(3982), - [anon_sym_explicit] = ACTIONS(3982), - [anon_sym_template] = ACTIONS(3982), - [anon_sym_operator] = ACTIONS(3982), - [anon_sym_try] = ACTIONS(3982), - [anon_sym_delete] = ACTIONS(3982), - [anon_sym_throw] = ACTIONS(3982), - [anon_sym_namespace] = ACTIONS(3982), - [anon_sym_static_assert] = ACTIONS(3982), - [anon_sym_concept] = ACTIONS(3982), - [anon_sym_co_return] = ACTIONS(3982), - [anon_sym_co_yield] = ACTIONS(3982), - [anon_sym_R_DQUOTE] = ACTIONS(3984), - [anon_sym_LR_DQUOTE] = ACTIONS(3984), - [anon_sym_uR_DQUOTE] = ACTIONS(3984), - [anon_sym_UR_DQUOTE] = ACTIONS(3984), - [anon_sym_u8R_DQUOTE] = ACTIONS(3984), - [anon_sym_co_await] = ACTIONS(3982), - [anon_sym_new] = ACTIONS(3982), - [anon_sym_requires] = ACTIONS(3982), - [anon_sym_CARET_CARET] = ACTIONS(3984), - [anon_sym_LBRACK_COLON] = ACTIONS(3984), - [sym_this] = ACTIONS(3982), - }, - [STATE(810)] = { - [sym_identifier] = ACTIONS(4026), - [aux_sym_preproc_include_token1] = ACTIONS(4026), - [aux_sym_preproc_def_token1] = ACTIONS(4026), - [aux_sym_preproc_if_token1] = ACTIONS(4026), - [aux_sym_preproc_if_token2] = ACTIONS(4026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4026), - [sym_preproc_directive] = ACTIONS(4026), - [anon_sym_LPAREN2] = ACTIONS(4028), - [anon_sym_BANG] = ACTIONS(4028), - [anon_sym_TILDE] = ACTIONS(4028), - [anon_sym_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4026), - [anon_sym_STAR] = ACTIONS(4028), - [anon_sym_AMP_AMP] = ACTIONS(4028), - [anon_sym_AMP] = ACTIONS(4026), - [anon_sym_SEMI] = ACTIONS(4028), - [anon_sym___extension__] = ACTIONS(4026), - [anon_sym_typedef] = ACTIONS(4026), - [anon_sym_virtual] = ACTIONS(4026), - [anon_sym_extern] = ACTIONS(4026), - [anon_sym___attribute__] = ACTIONS(4026), - [anon_sym___attribute] = ACTIONS(4026), - [anon_sym_using] = ACTIONS(4026), - [anon_sym_COLON_COLON] = ACTIONS(4028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4028), - [anon_sym___declspec] = ACTIONS(4026), - [anon_sym___based] = ACTIONS(4026), - [anon_sym___cdecl] = ACTIONS(4026), - [anon_sym___clrcall] = ACTIONS(4026), - [anon_sym___stdcall] = ACTIONS(4026), - [anon_sym___fastcall] = ACTIONS(4026), - [anon_sym___thiscall] = ACTIONS(4026), - [anon_sym___vectorcall] = ACTIONS(4026), - [anon_sym_LBRACE] = ACTIONS(4028), - [anon_sym_signed] = ACTIONS(4026), - [anon_sym_unsigned] = ACTIONS(4026), - [anon_sym_long] = ACTIONS(4026), - [anon_sym_short] = ACTIONS(4026), - [anon_sym_LBRACK] = ACTIONS(4026), - [anon_sym_static] = ACTIONS(4026), - [anon_sym_register] = ACTIONS(4026), - [anon_sym_inline] = ACTIONS(4026), - [anon_sym___inline] = ACTIONS(4026), - [anon_sym___inline__] = ACTIONS(4026), - [anon_sym___forceinline] = ACTIONS(4026), - [anon_sym_thread_local] = ACTIONS(4026), - [anon_sym___thread] = ACTIONS(4026), - [anon_sym_const] = ACTIONS(4026), - [anon_sym_constexpr] = ACTIONS(4026), - [anon_sym_volatile] = ACTIONS(4026), - [anon_sym_restrict] = ACTIONS(4026), - [anon_sym___restrict__] = ACTIONS(4026), - [anon_sym__Atomic] = ACTIONS(4026), - [anon_sym__Noreturn] = ACTIONS(4026), - [anon_sym_noreturn] = ACTIONS(4026), - [anon_sym__Nonnull] = ACTIONS(4026), - [anon_sym_mutable] = ACTIONS(4026), - [anon_sym_constinit] = ACTIONS(4026), - [anon_sym_consteval] = ACTIONS(4026), - [anon_sym_alignas] = ACTIONS(4026), - [anon_sym__Alignas] = ACTIONS(4026), - [sym_primitive_type] = ACTIONS(4026), - [anon_sym_enum] = ACTIONS(4026), - [anon_sym_class] = ACTIONS(4026), - [anon_sym_struct] = ACTIONS(4026), - [anon_sym_union] = ACTIONS(4026), - [anon_sym_if] = ACTIONS(4026), - [anon_sym_switch] = ACTIONS(4026), - [anon_sym_case] = ACTIONS(4026), - [anon_sym_default] = ACTIONS(4026), - [anon_sym_while] = ACTIONS(4026), - [anon_sym_do] = ACTIONS(4026), - [anon_sym_for] = ACTIONS(4026), - [anon_sym_return] = ACTIONS(4026), - [anon_sym_break] = ACTIONS(4026), - [anon_sym_continue] = ACTIONS(4026), - [anon_sym_goto] = ACTIONS(4026), - [anon_sym___try] = ACTIONS(4026), - [anon_sym___leave] = ACTIONS(4026), - [anon_sym_not] = ACTIONS(4026), - [anon_sym_compl] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4028), - [anon_sym_PLUS_PLUS] = ACTIONS(4028), - [anon_sym_sizeof] = ACTIONS(4026), - [anon_sym___alignof__] = ACTIONS(4026), - [anon_sym___alignof] = ACTIONS(4026), - [anon_sym__alignof] = ACTIONS(4026), - [anon_sym_alignof] = ACTIONS(4026), - [anon_sym__Alignof] = ACTIONS(4026), - [anon_sym_offsetof] = ACTIONS(4026), - [anon_sym__Generic] = ACTIONS(4026), - [anon_sym_typename] = ACTIONS(4026), - [anon_sym_asm] = ACTIONS(4026), - [anon_sym___asm__] = ACTIONS(4026), - [anon_sym___asm] = ACTIONS(4026), - [sym_number_literal] = ACTIONS(4028), - [anon_sym_L_SQUOTE] = ACTIONS(4028), - [anon_sym_u_SQUOTE] = ACTIONS(4028), - [anon_sym_U_SQUOTE] = ACTIONS(4028), - [anon_sym_u8_SQUOTE] = ACTIONS(4028), - [anon_sym_SQUOTE] = 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_true] = ACTIONS(4026), - [sym_false] = ACTIONS(4026), - [anon_sym_NULL] = ACTIONS(4026), - [anon_sym_nullptr] = ACTIONS(4026), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4026), - [anon_sym_decltype] = ACTIONS(4026), - [anon_sym_explicit] = ACTIONS(4026), - [anon_sym_template] = ACTIONS(4026), - [anon_sym_operator] = ACTIONS(4026), - [anon_sym_try] = ACTIONS(4026), - [anon_sym_delete] = ACTIONS(4026), - [anon_sym_throw] = ACTIONS(4026), - [anon_sym_namespace] = ACTIONS(4026), - [anon_sym_static_assert] = ACTIONS(4026), - [anon_sym_concept] = ACTIONS(4026), - [anon_sym_co_return] = ACTIONS(4026), - [anon_sym_co_yield] = ACTIONS(4026), - [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), - [anon_sym_co_await] = ACTIONS(4026), - [anon_sym_new] = ACTIONS(4026), - [anon_sym_requires] = ACTIONS(4026), - [anon_sym_CARET_CARET] = ACTIONS(4028), - [anon_sym_LBRACK_COLON] = ACTIONS(4028), - [sym_this] = ACTIONS(4026), - }, - [STATE(811)] = { - [sym_identifier] = ACTIONS(4115), - [aux_sym_preproc_include_token1] = ACTIONS(4115), - [aux_sym_preproc_def_token1] = ACTIONS(4115), - [aux_sym_preproc_if_token1] = ACTIONS(4115), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4115), - [sym_preproc_directive] = ACTIONS(4115), - [anon_sym_LPAREN2] = ACTIONS(4117), - [anon_sym_BANG] = ACTIONS(4117), - [anon_sym_TILDE] = ACTIONS(4117), - [anon_sym_DASH] = ACTIONS(4115), - [anon_sym_PLUS] = ACTIONS(4115), - [anon_sym_STAR] = ACTIONS(4117), - [anon_sym_AMP_AMP] = ACTIONS(4117), - [anon_sym_AMP] = ACTIONS(4115), - [anon_sym_SEMI] = ACTIONS(4117), - [anon_sym___extension__] = ACTIONS(4115), - [anon_sym_typedef] = ACTIONS(4115), - [anon_sym_virtual] = ACTIONS(4115), - [anon_sym_extern] = ACTIONS(4115), - [anon_sym___attribute__] = ACTIONS(4115), - [anon_sym___attribute] = ACTIONS(4115), - [anon_sym_using] = ACTIONS(4115), - [anon_sym_COLON_COLON] = ACTIONS(4117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4117), - [anon_sym___declspec] = ACTIONS(4115), - [anon_sym___based] = ACTIONS(4115), - [anon_sym___cdecl] = ACTIONS(4115), - [anon_sym___clrcall] = ACTIONS(4115), - [anon_sym___stdcall] = ACTIONS(4115), - [anon_sym___fastcall] = ACTIONS(4115), - [anon_sym___thiscall] = ACTIONS(4115), - [anon_sym___vectorcall] = ACTIONS(4115), - [anon_sym_LBRACE] = ACTIONS(4117), - [anon_sym_RBRACE] = ACTIONS(4117), - [anon_sym_signed] = ACTIONS(4115), - [anon_sym_unsigned] = ACTIONS(4115), - [anon_sym_long] = ACTIONS(4115), - [anon_sym_short] = ACTIONS(4115), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4115), - [anon_sym_register] = ACTIONS(4115), - [anon_sym_inline] = ACTIONS(4115), - [anon_sym___inline] = ACTIONS(4115), - [anon_sym___inline__] = ACTIONS(4115), - [anon_sym___forceinline] = ACTIONS(4115), - [anon_sym_thread_local] = ACTIONS(4115), - [anon_sym___thread] = ACTIONS(4115), - [anon_sym_const] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(4115), - [anon_sym_volatile] = ACTIONS(4115), - [anon_sym_restrict] = ACTIONS(4115), - [anon_sym___restrict__] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(4115), - [anon_sym__Noreturn] = ACTIONS(4115), - [anon_sym_noreturn] = ACTIONS(4115), - [anon_sym__Nonnull] = ACTIONS(4115), - [anon_sym_mutable] = ACTIONS(4115), - [anon_sym_constinit] = ACTIONS(4115), - [anon_sym_consteval] = ACTIONS(4115), - [anon_sym_alignas] = ACTIONS(4115), - [anon_sym__Alignas] = ACTIONS(4115), - [sym_primitive_type] = ACTIONS(4115), - [anon_sym_enum] = ACTIONS(4115), - [anon_sym_class] = ACTIONS(4115), - [anon_sym_struct] = ACTIONS(4115), - [anon_sym_union] = ACTIONS(4115), - [anon_sym_if] = ACTIONS(4115), - [anon_sym_switch] = ACTIONS(4115), - [anon_sym_case] = ACTIONS(4115), - [anon_sym_default] = ACTIONS(4115), - [anon_sym_while] = ACTIONS(4115), - [anon_sym_do] = ACTIONS(4115), - [anon_sym_for] = ACTIONS(4115), - [anon_sym_return] = ACTIONS(4115), - [anon_sym_break] = ACTIONS(4115), - [anon_sym_continue] = ACTIONS(4115), - [anon_sym_goto] = ACTIONS(4115), - [anon_sym___try] = ACTIONS(4115), - [anon_sym___leave] = ACTIONS(4115), - [anon_sym_not] = ACTIONS(4115), - [anon_sym_compl] = ACTIONS(4115), - [anon_sym_DASH_DASH] = ACTIONS(4117), - [anon_sym_PLUS_PLUS] = ACTIONS(4117), - [anon_sym_sizeof] = ACTIONS(4115), - [anon_sym___alignof__] = ACTIONS(4115), - [anon_sym___alignof] = ACTIONS(4115), - [anon_sym__alignof] = ACTIONS(4115), - [anon_sym_alignof] = ACTIONS(4115), - [anon_sym__Alignof] = ACTIONS(4115), - [anon_sym_offsetof] = ACTIONS(4115), - [anon_sym__Generic] = ACTIONS(4115), - [anon_sym_typename] = ACTIONS(4115), - [anon_sym_asm] = ACTIONS(4115), - [anon_sym___asm__] = ACTIONS(4115), - [anon_sym___asm] = ACTIONS(4115), - [sym_number_literal] = ACTIONS(4117), - [anon_sym_L_SQUOTE] = ACTIONS(4117), - [anon_sym_u_SQUOTE] = ACTIONS(4117), - [anon_sym_U_SQUOTE] = ACTIONS(4117), - [anon_sym_u8_SQUOTE] = ACTIONS(4117), - [anon_sym_SQUOTE] = ACTIONS(4117), - [anon_sym_L_DQUOTE] = ACTIONS(4117), - [anon_sym_u_DQUOTE] = ACTIONS(4117), - [anon_sym_U_DQUOTE] = ACTIONS(4117), - [anon_sym_u8_DQUOTE] = ACTIONS(4117), - [anon_sym_DQUOTE] = ACTIONS(4117), - [sym_true] = ACTIONS(4115), - [sym_false] = ACTIONS(4115), - [anon_sym_NULL] = ACTIONS(4115), - [anon_sym_nullptr] = ACTIONS(4115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4115), - [anon_sym_decltype] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(4115), - [anon_sym_template] = ACTIONS(4115), - [anon_sym_operator] = ACTIONS(4115), - [anon_sym_try] = ACTIONS(4115), - [anon_sym_delete] = ACTIONS(4115), - [anon_sym_throw] = ACTIONS(4115), - [anon_sym_namespace] = ACTIONS(4115), - [anon_sym_static_assert] = ACTIONS(4115), - [anon_sym_concept] = ACTIONS(4115), - [anon_sym_co_return] = ACTIONS(4115), - [anon_sym_co_yield] = ACTIONS(4115), - [anon_sym_R_DQUOTE] = ACTIONS(4117), - [anon_sym_LR_DQUOTE] = ACTIONS(4117), - [anon_sym_uR_DQUOTE] = ACTIONS(4117), - [anon_sym_UR_DQUOTE] = ACTIONS(4117), - [anon_sym_u8R_DQUOTE] = ACTIONS(4117), - [anon_sym_co_await] = ACTIONS(4115), - [anon_sym_new] = ACTIONS(4115), - [anon_sym_requires] = ACTIONS(4115), - [anon_sym_CARET_CARET] = ACTIONS(4117), - [anon_sym_LBRACK_COLON] = ACTIONS(4117), - [sym_this] = ACTIONS(4115), + [sym_auto] = ACTIONS(4156), + [anon_sym_decltype] = ACTIONS(4156), + [anon_sym_explicit] = ACTIONS(4156), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_module] = ACTIONS(4156), + [anon_sym_import] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_delete] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_namespace] = ACTIONS(4156), + [anon_sym_static_assert] = ACTIONS(4156), + [anon_sym_concept] = ACTIONS(4156), + [anon_sym_co_return] = ACTIONS(4156), + [anon_sym_co_yield] = ACTIONS(4156), + [anon_sym_R_DQUOTE] = ACTIONS(4158), + [anon_sym_LR_DQUOTE] = ACTIONS(4158), + [anon_sym_uR_DQUOTE] = ACTIONS(4158), + [anon_sym_UR_DQUOTE] = ACTIONS(4158), + [anon_sym_u8R_DQUOTE] = ACTIONS(4158), + [anon_sym_co_await] = ACTIONS(4156), + [anon_sym_new] = ACTIONS(4156), + [anon_sym_requires] = ACTIONS(4156), + [anon_sym_CARET_CARET] = ACTIONS(4158), + [anon_sym_LBRACK_COLON] = ACTIONS(4158), + [sym_this] = ACTIONS(4156), }, - [STATE(812)] = { - [sym_identifier] = ACTIONS(4062), - [aux_sym_preproc_include_token1] = ACTIONS(4062), - [aux_sym_preproc_def_token1] = ACTIONS(4062), - [aux_sym_preproc_if_token1] = ACTIONS(4062), - [aux_sym_preproc_if_token2] = ACTIONS(4062), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4062), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4062), - [sym_preproc_directive] = ACTIONS(4062), - [anon_sym_LPAREN2] = ACTIONS(4064), - [anon_sym_BANG] = ACTIONS(4064), - [anon_sym_TILDE] = ACTIONS(4064), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_PLUS] = ACTIONS(4062), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_AMP_AMP] = ACTIONS(4064), - [anon_sym_AMP] = ACTIONS(4062), - [anon_sym_SEMI] = ACTIONS(4064), - [anon_sym___extension__] = ACTIONS(4062), - [anon_sym_typedef] = ACTIONS(4062), - [anon_sym_virtual] = ACTIONS(4062), - [anon_sym_extern] = ACTIONS(4062), - [anon_sym___attribute__] = ACTIONS(4062), - [anon_sym___attribute] = ACTIONS(4062), - [anon_sym_using] = ACTIONS(4062), - [anon_sym_COLON_COLON] = ACTIONS(4064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4064), - [anon_sym___declspec] = ACTIONS(4062), - [anon_sym___based] = ACTIONS(4062), - [anon_sym___cdecl] = ACTIONS(4062), - [anon_sym___clrcall] = ACTIONS(4062), - [anon_sym___stdcall] = ACTIONS(4062), - [anon_sym___fastcall] = ACTIONS(4062), - [anon_sym___thiscall] = ACTIONS(4062), - [anon_sym___vectorcall] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_signed] = ACTIONS(4062), - [anon_sym_unsigned] = ACTIONS(4062), - [anon_sym_long] = ACTIONS(4062), - [anon_sym_short] = ACTIONS(4062), - [anon_sym_LBRACK] = ACTIONS(4062), - [anon_sym_static] = ACTIONS(4062), - [anon_sym_register] = ACTIONS(4062), - [anon_sym_inline] = ACTIONS(4062), - [anon_sym___inline] = ACTIONS(4062), - [anon_sym___inline__] = ACTIONS(4062), - [anon_sym___forceinline] = ACTIONS(4062), - [anon_sym_thread_local] = ACTIONS(4062), - [anon_sym___thread] = ACTIONS(4062), - [anon_sym_const] = ACTIONS(4062), - [anon_sym_constexpr] = ACTIONS(4062), - [anon_sym_volatile] = ACTIONS(4062), - [anon_sym_restrict] = ACTIONS(4062), - [anon_sym___restrict__] = ACTIONS(4062), - [anon_sym__Atomic] = ACTIONS(4062), - [anon_sym__Noreturn] = ACTIONS(4062), - [anon_sym_noreturn] = ACTIONS(4062), - [anon_sym__Nonnull] = ACTIONS(4062), - [anon_sym_mutable] = ACTIONS(4062), - [anon_sym_constinit] = ACTIONS(4062), - [anon_sym_consteval] = ACTIONS(4062), - [anon_sym_alignas] = ACTIONS(4062), - [anon_sym__Alignas] = ACTIONS(4062), - [sym_primitive_type] = ACTIONS(4062), - [anon_sym_enum] = ACTIONS(4062), - [anon_sym_class] = ACTIONS(4062), - [anon_sym_struct] = ACTIONS(4062), - [anon_sym_union] = ACTIONS(4062), - [anon_sym_if] = ACTIONS(4062), - [anon_sym_switch] = ACTIONS(4062), - [anon_sym_case] = ACTIONS(4062), - [anon_sym_default] = ACTIONS(4062), - [anon_sym_while] = ACTIONS(4062), - [anon_sym_do] = ACTIONS(4062), - [anon_sym_for] = ACTIONS(4062), - [anon_sym_return] = ACTIONS(4062), - [anon_sym_break] = ACTIONS(4062), - [anon_sym_continue] = ACTIONS(4062), - [anon_sym_goto] = ACTIONS(4062), - [anon_sym___try] = ACTIONS(4062), - [anon_sym___leave] = ACTIONS(4062), - [anon_sym_not] = ACTIONS(4062), - [anon_sym_compl] = ACTIONS(4062), - [anon_sym_DASH_DASH] = ACTIONS(4064), - [anon_sym_PLUS_PLUS] = ACTIONS(4064), - [anon_sym_sizeof] = ACTIONS(4062), - [anon_sym___alignof__] = ACTIONS(4062), - [anon_sym___alignof] = ACTIONS(4062), - [anon_sym__alignof] = ACTIONS(4062), - [anon_sym_alignof] = ACTIONS(4062), - [anon_sym__Alignof] = ACTIONS(4062), - [anon_sym_offsetof] = ACTIONS(4062), - [anon_sym__Generic] = ACTIONS(4062), - [anon_sym_typename] = ACTIONS(4062), - [anon_sym_asm] = ACTIONS(4062), - [anon_sym___asm__] = ACTIONS(4062), - [anon_sym___asm] = ACTIONS(4062), - [sym_number_literal] = ACTIONS(4064), - [anon_sym_L_SQUOTE] = ACTIONS(4064), - [anon_sym_u_SQUOTE] = ACTIONS(4064), - [anon_sym_U_SQUOTE] = ACTIONS(4064), - [anon_sym_u8_SQUOTE] = ACTIONS(4064), - [anon_sym_SQUOTE] = ACTIONS(4064), - [anon_sym_L_DQUOTE] = ACTIONS(4064), - [anon_sym_u_DQUOTE] = ACTIONS(4064), - [anon_sym_U_DQUOTE] = ACTIONS(4064), - [anon_sym_u8_DQUOTE] = ACTIONS(4064), - [anon_sym_DQUOTE] = ACTIONS(4064), - [sym_true] = ACTIONS(4062), - [sym_false] = ACTIONS(4062), - [anon_sym_NULL] = ACTIONS(4062), - [anon_sym_nullptr] = ACTIONS(4062), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4062), - [anon_sym_decltype] = ACTIONS(4062), - [anon_sym_explicit] = ACTIONS(4062), - [anon_sym_template] = ACTIONS(4062), - [anon_sym_operator] = ACTIONS(4062), - [anon_sym_try] = ACTIONS(4062), - [anon_sym_delete] = ACTIONS(4062), - [anon_sym_throw] = ACTIONS(4062), - [anon_sym_namespace] = ACTIONS(4062), - [anon_sym_static_assert] = ACTIONS(4062), - [anon_sym_concept] = ACTIONS(4062), - [anon_sym_co_return] = ACTIONS(4062), - [anon_sym_co_yield] = ACTIONS(4062), - [anon_sym_R_DQUOTE] = ACTIONS(4064), - [anon_sym_LR_DQUOTE] = ACTIONS(4064), - [anon_sym_uR_DQUOTE] = ACTIONS(4064), - [anon_sym_UR_DQUOTE] = ACTIONS(4064), - [anon_sym_u8R_DQUOTE] = ACTIONS(4064), - [anon_sym_co_await] = ACTIONS(4062), - [anon_sym_new] = ACTIONS(4062), - [anon_sym_requires] = ACTIONS(4062), - [anon_sym_CARET_CARET] = ACTIONS(4064), - [anon_sym_LBRACK_COLON] = ACTIONS(4064), - [sym_this] = ACTIONS(4062), + [STATE(686)] = { + [sym_identifier] = ACTIONS(4160), + [aux_sym_preproc_include_token1] = ACTIONS(4160), + [aux_sym_preproc_def_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token2] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), + [sym_preproc_directive] = ACTIONS(4160), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_TILDE] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym___extension__] = ACTIONS(4160), + [anon_sym_typedef] = ACTIONS(4160), + [anon_sym_virtual] = ACTIONS(4160), + [anon_sym_extern] = ACTIONS(4160), + [anon_sym___attribute__] = ACTIONS(4160), + [anon_sym___attribute] = ACTIONS(4160), + [anon_sym_using] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), + [anon_sym___declspec] = ACTIONS(4160), + [anon_sym___based] = ACTIONS(4160), + [anon_sym___cdecl] = ACTIONS(4160), + [anon_sym___clrcall] = ACTIONS(4160), + [anon_sym___stdcall] = ACTIONS(4160), + [anon_sym___fastcall] = ACTIONS(4160), + [anon_sym___thiscall] = ACTIONS(4160), + [anon_sym___vectorcall] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_signed] = ACTIONS(4160), + [anon_sym_unsigned] = ACTIONS(4160), + [anon_sym_long] = ACTIONS(4160), + [anon_sym_short] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4160), + [anon_sym_static] = ACTIONS(4160), + [anon_sym_register] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym___inline] = ACTIONS(4160), + [anon_sym___inline__] = ACTIONS(4160), + [anon_sym___forceinline] = ACTIONS(4160), + [anon_sym_thread_local] = ACTIONS(4160), + [anon_sym___thread] = ACTIONS(4160), + [anon_sym_const] = ACTIONS(4160), + [anon_sym_constexpr] = ACTIONS(4160), + [anon_sym_volatile] = ACTIONS(4160), + [anon_sym_restrict] = ACTIONS(4160), + [anon_sym___restrict__] = ACTIONS(4160), + [anon_sym__Atomic] = ACTIONS(4160), + [anon_sym__Noreturn] = ACTIONS(4160), + [anon_sym_noreturn] = ACTIONS(4160), + [anon_sym__Nonnull] = ACTIONS(4160), + [anon_sym_mutable] = ACTIONS(4160), + [anon_sym_constinit] = ACTIONS(4160), + [anon_sym_consteval] = ACTIONS(4160), + [anon_sym_alignas] = ACTIONS(4160), + [anon_sym__Alignas] = ACTIONS(4160), + [sym_primitive_type] = ACTIONS(4160), + [anon_sym_enum] = ACTIONS(4160), + [anon_sym_class] = ACTIONS(4160), + [anon_sym_struct] = ACTIONS(4160), + [anon_sym_union] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_switch] = ACTIONS(4160), + [anon_sym_case] = ACTIONS(4160), + [anon_sym_default] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_do] = ACTIONS(4160), + [anon_sym_for] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_goto] = ACTIONS(4160), + [anon_sym___try] = ACTIONS(4160), + [anon_sym___leave] = ACTIONS(4160), + [anon_sym_not] = ACTIONS(4160), + [anon_sym_compl] = ACTIONS(4160), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_sizeof] = ACTIONS(4160), + [anon_sym___alignof__] = ACTIONS(4160), + [anon_sym___alignof] = ACTIONS(4160), + [anon_sym__alignof] = ACTIONS(4160), + [anon_sym_alignof] = ACTIONS(4160), + [anon_sym__Alignof] = ACTIONS(4160), + [anon_sym_offsetof] = ACTIONS(4160), + [anon_sym__Generic] = ACTIONS(4160), + [anon_sym_typename] = ACTIONS(4160), + [anon_sym_asm] = ACTIONS(4160), + [anon_sym___asm__] = ACTIONS(4160), + [anon_sym___asm] = ACTIONS(4160), + [sym_number_literal] = ACTIONS(4162), + [anon_sym_L_SQUOTE] = ACTIONS(4162), + [anon_sym_u_SQUOTE] = ACTIONS(4162), + [anon_sym_U_SQUOTE] = ACTIONS(4162), + [anon_sym_u8_SQUOTE] = ACTIONS(4162), + [anon_sym_SQUOTE] = ACTIONS(4162), + [anon_sym_L_DQUOTE] = ACTIONS(4162), + [anon_sym_u_DQUOTE] = ACTIONS(4162), + [anon_sym_U_DQUOTE] = ACTIONS(4162), + [anon_sym_u8_DQUOTE] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4162), + [sym_true] = ACTIONS(4160), + [sym_false] = ACTIONS(4160), + [anon_sym_NULL] = ACTIONS(4160), + [anon_sym_nullptr] = ACTIONS(4160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4160), + [anon_sym_decltype] = ACTIONS(4160), + [anon_sym_explicit] = ACTIONS(4160), + [anon_sym_export] = ACTIONS(4160), + [anon_sym_module] = ACTIONS(4160), + [anon_sym_import] = ACTIONS(4160), + [anon_sym_template] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_delete] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_namespace] = ACTIONS(4160), + [anon_sym_static_assert] = ACTIONS(4160), + [anon_sym_concept] = ACTIONS(4160), + [anon_sym_co_return] = ACTIONS(4160), + [anon_sym_co_yield] = ACTIONS(4160), + [anon_sym_R_DQUOTE] = ACTIONS(4162), + [anon_sym_LR_DQUOTE] = ACTIONS(4162), + [anon_sym_uR_DQUOTE] = ACTIONS(4162), + [anon_sym_UR_DQUOTE] = ACTIONS(4162), + [anon_sym_u8R_DQUOTE] = ACTIONS(4162), + [anon_sym_co_await] = ACTIONS(4160), + [anon_sym_new] = ACTIONS(4160), + [anon_sym_requires] = ACTIONS(4160), + [anon_sym_CARET_CARET] = ACTIONS(4162), + [anon_sym_LBRACK_COLON] = ACTIONS(4162), + [sym_this] = ACTIONS(4160), }, - [STATE(813)] = { - [sym_expression] = STATE(5661), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_initializer_list] = STATE(5840), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_COMMA] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(3564), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(2024), - [anon_sym_PLUS] = ACTIONS(2024), - [anon_sym_STAR] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - [anon_sym_EQ_EQ] = ACTIONS(2026), - [anon_sym_BANG_EQ] = ACTIONS(2026), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2026), - [anon_sym_LT_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2026), - [anon_sym_GT_GT] = ACTIONS(2026), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(2024), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_QMARK] = ACTIONS(2026), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_LT_EQ_GT] = ACTIONS(2026), - [anon_sym_or] = ACTIONS(2024), - [anon_sym_and] = ACTIONS(2024), - [anon_sym_bitor] = ACTIONS(2024), - [anon_sym_xor] = ACTIONS(2024), - [anon_sym_bitand] = ACTIONS(2024), - [anon_sym_not_eq] = ACTIONS(2024), - [anon_sym_DASH_DASH] = ACTIONS(2026), - [anon_sym_PLUS_PLUS] = ACTIONS(2026), - [anon_sym_sizeof] = ACTIONS(3574), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2026), - [anon_sym_DASH_GT] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), + [STATE(687)] = { + [sym_identifier] = ACTIONS(4160), + [aux_sym_preproc_include_token1] = ACTIONS(4160), + [aux_sym_preproc_def_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token2] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), + [sym_preproc_directive] = ACTIONS(4160), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_TILDE] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym___extension__] = ACTIONS(4160), + [anon_sym_typedef] = ACTIONS(4160), + [anon_sym_virtual] = ACTIONS(4160), + [anon_sym_extern] = ACTIONS(4160), + [anon_sym___attribute__] = ACTIONS(4160), + [anon_sym___attribute] = ACTIONS(4160), + [anon_sym_using] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), + [anon_sym___declspec] = ACTIONS(4160), + [anon_sym___based] = ACTIONS(4160), + [anon_sym___cdecl] = ACTIONS(4160), + [anon_sym___clrcall] = ACTIONS(4160), + [anon_sym___stdcall] = ACTIONS(4160), + [anon_sym___fastcall] = ACTIONS(4160), + [anon_sym___thiscall] = ACTIONS(4160), + [anon_sym___vectorcall] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_signed] = ACTIONS(4160), + [anon_sym_unsigned] = ACTIONS(4160), + [anon_sym_long] = ACTIONS(4160), + [anon_sym_short] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4160), + [anon_sym_static] = ACTIONS(4160), + [anon_sym_register] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym___inline] = ACTIONS(4160), + [anon_sym___inline__] = ACTIONS(4160), + [anon_sym___forceinline] = ACTIONS(4160), + [anon_sym_thread_local] = ACTIONS(4160), + [anon_sym___thread] = ACTIONS(4160), + [anon_sym_const] = ACTIONS(4160), + [anon_sym_constexpr] = ACTIONS(4160), + [anon_sym_volatile] = ACTIONS(4160), + [anon_sym_restrict] = ACTIONS(4160), + [anon_sym___restrict__] = ACTIONS(4160), + [anon_sym__Atomic] = ACTIONS(4160), + [anon_sym__Noreturn] = ACTIONS(4160), + [anon_sym_noreturn] = ACTIONS(4160), + [anon_sym__Nonnull] = ACTIONS(4160), + [anon_sym_mutable] = ACTIONS(4160), + [anon_sym_constinit] = ACTIONS(4160), + [anon_sym_consteval] = ACTIONS(4160), + [anon_sym_alignas] = ACTIONS(4160), + [anon_sym__Alignas] = ACTIONS(4160), + [sym_primitive_type] = ACTIONS(4160), + [anon_sym_enum] = ACTIONS(4160), + [anon_sym_class] = ACTIONS(4160), + [anon_sym_struct] = ACTIONS(4160), + [anon_sym_union] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_switch] = ACTIONS(4160), + [anon_sym_case] = ACTIONS(4160), + [anon_sym_default] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_do] = ACTIONS(4160), + [anon_sym_for] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_goto] = ACTIONS(4160), + [anon_sym___try] = ACTIONS(4160), + [anon_sym___leave] = ACTIONS(4160), + [anon_sym_not] = ACTIONS(4160), + [anon_sym_compl] = ACTIONS(4160), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_sizeof] = ACTIONS(4160), + [anon_sym___alignof__] = ACTIONS(4160), + [anon_sym___alignof] = ACTIONS(4160), + [anon_sym__alignof] = ACTIONS(4160), + [anon_sym_alignof] = ACTIONS(4160), + [anon_sym__Alignof] = ACTIONS(4160), + [anon_sym_offsetof] = ACTIONS(4160), + [anon_sym__Generic] = ACTIONS(4160), + [anon_sym_typename] = ACTIONS(4160), + [anon_sym_asm] = ACTIONS(4160), + [anon_sym___asm__] = ACTIONS(4160), + [anon_sym___asm] = ACTIONS(4160), + [sym_number_literal] = ACTIONS(4162), + [anon_sym_L_SQUOTE] = ACTIONS(4162), + [anon_sym_u_SQUOTE] = ACTIONS(4162), + [anon_sym_U_SQUOTE] = ACTIONS(4162), + [anon_sym_u8_SQUOTE] = ACTIONS(4162), + [anon_sym_SQUOTE] = ACTIONS(4162), + [anon_sym_L_DQUOTE] = ACTIONS(4162), + [anon_sym_u_DQUOTE] = ACTIONS(4162), + [anon_sym_U_DQUOTE] = ACTIONS(4162), + [anon_sym_u8_DQUOTE] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4162), + [sym_true] = ACTIONS(4160), + [sym_false] = ACTIONS(4160), + [anon_sym_NULL] = ACTIONS(4160), + [anon_sym_nullptr] = ACTIONS(4160), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_auto] = ACTIONS(4160), + [anon_sym_decltype] = ACTIONS(4160), + [anon_sym_explicit] = ACTIONS(4160), + [anon_sym_export] = ACTIONS(4160), + [anon_sym_module] = ACTIONS(4160), + [anon_sym_import] = ACTIONS(4160), + [anon_sym_template] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_delete] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_namespace] = ACTIONS(4160), + [anon_sym_static_assert] = ACTIONS(4160), + [anon_sym_concept] = ACTIONS(4160), + [anon_sym_co_return] = ACTIONS(4160), + [anon_sym_co_yield] = ACTIONS(4160), + [anon_sym_R_DQUOTE] = ACTIONS(4162), + [anon_sym_LR_DQUOTE] = ACTIONS(4162), + [anon_sym_uR_DQUOTE] = ACTIONS(4162), + [anon_sym_UR_DQUOTE] = ACTIONS(4162), + [anon_sym_u8R_DQUOTE] = ACTIONS(4162), + [anon_sym_co_await] = ACTIONS(4160), + [anon_sym_new] = ACTIONS(4160), + [anon_sym_requires] = ACTIONS(4160), + [anon_sym_CARET_CARET] = ACTIONS(4162), + [anon_sym_LBRACK_COLON] = ACTIONS(4162), + [sym_this] = ACTIONS(4160), }, - [STATE(814)] = { + [STATE(688)] = { [sym_identifier] = ACTIONS(4188), [aux_sym_preproc_include_token1] = ACTIONS(4188), [aux_sym_preproc_def_token1] = ACTIONS(4188), @@ -169627,6 +158342,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4188), [anon_sym_decltype] = ACTIONS(4188), [anon_sym_explicit] = ACTIONS(4188), + [anon_sym_export] = ACTIONS(4188), + [anon_sym_module] = ACTIONS(4188), + [anon_sym_import] = ACTIONS(4188), [anon_sym_template] = ACTIONS(4188), [anon_sym_operator] = ACTIONS(4188), [anon_sym_try] = ACTIONS(4188), @@ -169649,2495 +158367,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4190), [sym_this] = ACTIONS(4188), }, - [STATE(815)] = { - [sym_identifier] = ACTIONS(4070), - [aux_sym_preproc_include_token1] = ACTIONS(4070), - [aux_sym_preproc_def_token1] = ACTIONS(4070), - [aux_sym_preproc_if_token1] = ACTIONS(4070), - [aux_sym_preproc_if_token2] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), - [sym_preproc_directive] = ACTIONS(4070), - [anon_sym_LPAREN2] = ACTIONS(4072), - [anon_sym_BANG] = ACTIONS(4072), - [anon_sym_TILDE] = ACTIONS(4072), - [anon_sym_DASH] = ACTIONS(4070), - [anon_sym_PLUS] = ACTIONS(4070), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4070), - [anon_sym_SEMI] = ACTIONS(4072), - [anon_sym___extension__] = ACTIONS(4070), - [anon_sym_typedef] = ACTIONS(4070), - [anon_sym_virtual] = ACTIONS(4070), - [anon_sym_extern] = ACTIONS(4070), - [anon_sym___attribute__] = ACTIONS(4070), - [anon_sym___attribute] = ACTIONS(4070), - [anon_sym_using] = ACTIONS(4070), - [anon_sym_COLON_COLON] = ACTIONS(4072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), - [anon_sym___declspec] = ACTIONS(4070), - [anon_sym___based] = ACTIONS(4070), - [anon_sym___cdecl] = ACTIONS(4070), - [anon_sym___clrcall] = ACTIONS(4070), - [anon_sym___stdcall] = ACTIONS(4070), - [anon_sym___fastcall] = ACTIONS(4070), - [anon_sym___thiscall] = ACTIONS(4070), - [anon_sym___vectorcall] = ACTIONS(4070), - [anon_sym_LBRACE] = ACTIONS(4072), - [anon_sym_signed] = ACTIONS(4070), - [anon_sym_unsigned] = ACTIONS(4070), - [anon_sym_long] = ACTIONS(4070), - [anon_sym_short] = ACTIONS(4070), - [anon_sym_LBRACK] = ACTIONS(4070), - [anon_sym_static] = ACTIONS(4070), - [anon_sym_register] = ACTIONS(4070), - [anon_sym_inline] = ACTIONS(4070), - [anon_sym___inline] = ACTIONS(4070), - [anon_sym___inline__] = ACTIONS(4070), - [anon_sym___forceinline] = ACTIONS(4070), - [anon_sym_thread_local] = ACTIONS(4070), - [anon_sym___thread] = ACTIONS(4070), - [anon_sym_const] = ACTIONS(4070), - [anon_sym_constexpr] = ACTIONS(4070), - [anon_sym_volatile] = ACTIONS(4070), - [anon_sym_restrict] = ACTIONS(4070), - [anon_sym___restrict__] = ACTIONS(4070), - [anon_sym__Atomic] = ACTIONS(4070), - [anon_sym__Noreturn] = ACTIONS(4070), - [anon_sym_noreturn] = ACTIONS(4070), - [anon_sym__Nonnull] = ACTIONS(4070), - [anon_sym_mutable] = ACTIONS(4070), - [anon_sym_constinit] = ACTIONS(4070), - [anon_sym_consteval] = ACTIONS(4070), - [anon_sym_alignas] = ACTIONS(4070), - [anon_sym__Alignas] = ACTIONS(4070), - [sym_primitive_type] = ACTIONS(4070), - [anon_sym_enum] = ACTIONS(4070), - [anon_sym_class] = ACTIONS(4070), - [anon_sym_struct] = ACTIONS(4070), - [anon_sym_union] = ACTIONS(4070), - [anon_sym_if] = ACTIONS(4070), - [anon_sym_switch] = ACTIONS(4070), - [anon_sym_case] = ACTIONS(4070), - [anon_sym_default] = ACTIONS(4070), - [anon_sym_while] = ACTIONS(4070), - [anon_sym_do] = ACTIONS(4070), - [anon_sym_for] = ACTIONS(4070), - [anon_sym_return] = ACTIONS(4070), - [anon_sym_break] = ACTIONS(4070), - [anon_sym_continue] = ACTIONS(4070), - [anon_sym_goto] = ACTIONS(4070), - [anon_sym___try] = ACTIONS(4070), - [anon_sym___leave] = ACTIONS(4070), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_compl] = ACTIONS(4070), - [anon_sym_DASH_DASH] = ACTIONS(4072), - [anon_sym_PLUS_PLUS] = ACTIONS(4072), - [anon_sym_sizeof] = ACTIONS(4070), - [anon_sym___alignof__] = ACTIONS(4070), - [anon_sym___alignof] = ACTIONS(4070), - [anon_sym__alignof] = ACTIONS(4070), - [anon_sym_alignof] = ACTIONS(4070), - [anon_sym__Alignof] = ACTIONS(4070), - [anon_sym_offsetof] = ACTIONS(4070), - [anon_sym__Generic] = ACTIONS(4070), - [anon_sym_typename] = ACTIONS(4070), - [anon_sym_asm] = ACTIONS(4070), - [anon_sym___asm__] = ACTIONS(4070), - [anon_sym___asm] = ACTIONS(4070), - [sym_number_literal] = ACTIONS(4072), - [anon_sym_L_SQUOTE] = ACTIONS(4072), - [anon_sym_u_SQUOTE] = ACTIONS(4072), - [anon_sym_U_SQUOTE] = ACTIONS(4072), - [anon_sym_u8_SQUOTE] = ACTIONS(4072), - [anon_sym_SQUOTE] = ACTIONS(4072), - [anon_sym_L_DQUOTE] = ACTIONS(4072), - [anon_sym_u_DQUOTE] = ACTIONS(4072), - [anon_sym_U_DQUOTE] = ACTIONS(4072), - [anon_sym_u8_DQUOTE] = ACTIONS(4072), - [anon_sym_DQUOTE] = ACTIONS(4072), - [sym_true] = ACTIONS(4070), - [sym_false] = ACTIONS(4070), - [anon_sym_NULL] = ACTIONS(4070), - [anon_sym_nullptr] = ACTIONS(4070), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4070), - [anon_sym_decltype] = ACTIONS(4070), - [anon_sym_explicit] = ACTIONS(4070), - [anon_sym_template] = ACTIONS(4070), - [anon_sym_operator] = ACTIONS(4070), - [anon_sym_try] = ACTIONS(4070), - [anon_sym_delete] = ACTIONS(4070), - [anon_sym_throw] = ACTIONS(4070), - [anon_sym_namespace] = ACTIONS(4070), - [anon_sym_static_assert] = ACTIONS(4070), - [anon_sym_concept] = ACTIONS(4070), - [anon_sym_co_return] = ACTIONS(4070), - [anon_sym_co_yield] = ACTIONS(4070), - [anon_sym_R_DQUOTE] = ACTIONS(4072), - [anon_sym_LR_DQUOTE] = ACTIONS(4072), - [anon_sym_uR_DQUOTE] = ACTIONS(4072), - [anon_sym_UR_DQUOTE] = ACTIONS(4072), - [anon_sym_u8R_DQUOTE] = ACTIONS(4072), - [anon_sym_co_await] = ACTIONS(4070), - [anon_sym_new] = ACTIONS(4070), - [anon_sym_requires] = ACTIONS(4070), - [anon_sym_CARET_CARET] = ACTIONS(4072), - [anon_sym_LBRACK_COLON] = ACTIONS(4072), - [sym_this] = ACTIONS(4070), - }, - [STATE(816)] = { - [sym_identifier] = ACTIONS(4070), - [aux_sym_preproc_include_token1] = ACTIONS(4070), - [aux_sym_preproc_def_token1] = ACTIONS(4070), - [aux_sym_preproc_if_token1] = ACTIONS(4070), - [aux_sym_preproc_if_token2] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), - [sym_preproc_directive] = ACTIONS(4070), - [anon_sym_LPAREN2] = ACTIONS(4072), - [anon_sym_BANG] = ACTIONS(4072), - [anon_sym_TILDE] = ACTIONS(4072), - [anon_sym_DASH] = ACTIONS(4070), - [anon_sym_PLUS] = ACTIONS(4070), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4070), - [anon_sym_SEMI] = ACTIONS(4072), - [anon_sym___extension__] = ACTIONS(4070), - [anon_sym_typedef] = ACTIONS(4070), - [anon_sym_virtual] = ACTIONS(4070), - [anon_sym_extern] = ACTIONS(4070), - [anon_sym___attribute__] = ACTIONS(4070), - [anon_sym___attribute] = ACTIONS(4070), - [anon_sym_using] = ACTIONS(4070), - [anon_sym_COLON_COLON] = ACTIONS(4072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), - [anon_sym___declspec] = ACTIONS(4070), - [anon_sym___based] = ACTIONS(4070), - [anon_sym___cdecl] = ACTIONS(4070), - [anon_sym___clrcall] = ACTIONS(4070), - [anon_sym___stdcall] = ACTIONS(4070), - [anon_sym___fastcall] = ACTIONS(4070), - [anon_sym___thiscall] = ACTIONS(4070), - [anon_sym___vectorcall] = ACTIONS(4070), - [anon_sym_LBRACE] = ACTIONS(4072), - [anon_sym_signed] = ACTIONS(4070), - [anon_sym_unsigned] = ACTIONS(4070), - [anon_sym_long] = ACTIONS(4070), - [anon_sym_short] = ACTIONS(4070), - [anon_sym_LBRACK] = ACTIONS(4070), - [anon_sym_static] = ACTIONS(4070), - [anon_sym_register] = ACTIONS(4070), - [anon_sym_inline] = ACTIONS(4070), - [anon_sym___inline] = ACTIONS(4070), - [anon_sym___inline__] = ACTIONS(4070), - [anon_sym___forceinline] = ACTIONS(4070), - [anon_sym_thread_local] = ACTIONS(4070), - [anon_sym___thread] = ACTIONS(4070), - [anon_sym_const] = ACTIONS(4070), - [anon_sym_constexpr] = ACTIONS(4070), - [anon_sym_volatile] = ACTIONS(4070), - [anon_sym_restrict] = ACTIONS(4070), - [anon_sym___restrict__] = ACTIONS(4070), - [anon_sym__Atomic] = ACTIONS(4070), - [anon_sym__Noreturn] = ACTIONS(4070), - [anon_sym_noreturn] = ACTIONS(4070), - [anon_sym__Nonnull] = ACTIONS(4070), - [anon_sym_mutable] = ACTIONS(4070), - [anon_sym_constinit] = ACTIONS(4070), - [anon_sym_consteval] = ACTIONS(4070), - [anon_sym_alignas] = ACTIONS(4070), - [anon_sym__Alignas] = ACTIONS(4070), - [sym_primitive_type] = ACTIONS(4070), - [anon_sym_enum] = ACTIONS(4070), - [anon_sym_class] = ACTIONS(4070), - [anon_sym_struct] = ACTIONS(4070), - [anon_sym_union] = ACTIONS(4070), - [anon_sym_if] = ACTIONS(4070), - [anon_sym_switch] = ACTIONS(4070), - [anon_sym_case] = ACTIONS(4070), - [anon_sym_default] = ACTIONS(4070), - [anon_sym_while] = ACTIONS(4070), - [anon_sym_do] = ACTIONS(4070), - [anon_sym_for] = ACTIONS(4070), - [anon_sym_return] = ACTIONS(4070), - [anon_sym_break] = ACTIONS(4070), - [anon_sym_continue] = ACTIONS(4070), - [anon_sym_goto] = ACTIONS(4070), - [anon_sym___try] = ACTIONS(4070), - [anon_sym___leave] = ACTIONS(4070), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_compl] = ACTIONS(4070), - [anon_sym_DASH_DASH] = ACTIONS(4072), - [anon_sym_PLUS_PLUS] = ACTIONS(4072), - [anon_sym_sizeof] = ACTIONS(4070), - [anon_sym___alignof__] = ACTIONS(4070), - [anon_sym___alignof] = ACTIONS(4070), - [anon_sym__alignof] = ACTIONS(4070), - [anon_sym_alignof] = ACTIONS(4070), - [anon_sym__Alignof] = ACTIONS(4070), - [anon_sym_offsetof] = ACTIONS(4070), - [anon_sym__Generic] = ACTIONS(4070), - [anon_sym_typename] = ACTIONS(4070), - [anon_sym_asm] = ACTIONS(4070), - [anon_sym___asm__] = ACTIONS(4070), - [anon_sym___asm] = ACTIONS(4070), - [sym_number_literal] = ACTIONS(4072), - [anon_sym_L_SQUOTE] = ACTIONS(4072), - [anon_sym_u_SQUOTE] = ACTIONS(4072), - [anon_sym_U_SQUOTE] = ACTIONS(4072), - [anon_sym_u8_SQUOTE] = ACTIONS(4072), - [anon_sym_SQUOTE] = ACTIONS(4072), - [anon_sym_L_DQUOTE] = ACTIONS(4072), - [anon_sym_u_DQUOTE] = ACTIONS(4072), - [anon_sym_U_DQUOTE] = ACTIONS(4072), - [anon_sym_u8_DQUOTE] = ACTIONS(4072), - [anon_sym_DQUOTE] = ACTIONS(4072), - [sym_true] = ACTIONS(4070), - [sym_false] = ACTIONS(4070), - [anon_sym_NULL] = ACTIONS(4070), - [anon_sym_nullptr] = ACTIONS(4070), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4070), - [anon_sym_decltype] = ACTIONS(4070), - [anon_sym_explicit] = ACTIONS(4070), - [anon_sym_template] = ACTIONS(4070), - [anon_sym_operator] = ACTIONS(4070), - [anon_sym_try] = ACTIONS(4070), - [anon_sym_delete] = ACTIONS(4070), - [anon_sym_throw] = ACTIONS(4070), - [anon_sym_namespace] = ACTIONS(4070), - [anon_sym_static_assert] = ACTIONS(4070), - [anon_sym_concept] = ACTIONS(4070), - [anon_sym_co_return] = ACTIONS(4070), - [anon_sym_co_yield] = ACTIONS(4070), - [anon_sym_R_DQUOTE] = ACTIONS(4072), - [anon_sym_LR_DQUOTE] = ACTIONS(4072), - [anon_sym_uR_DQUOTE] = ACTIONS(4072), - [anon_sym_UR_DQUOTE] = ACTIONS(4072), - [anon_sym_u8R_DQUOTE] = ACTIONS(4072), - [anon_sym_co_await] = ACTIONS(4070), - [anon_sym_new] = ACTIONS(4070), - [anon_sym_requires] = ACTIONS(4070), - [anon_sym_CARET_CARET] = ACTIONS(4072), - [anon_sym_LBRACK_COLON] = ACTIONS(4072), - [sym_this] = ACTIONS(4070), - }, - [STATE(817)] = { - [sym_identifier] = ACTIONS(4082), - [aux_sym_preproc_include_token1] = ACTIONS(4082), - [aux_sym_preproc_def_token1] = ACTIONS(4082), - [aux_sym_preproc_if_token1] = ACTIONS(4082), - [aux_sym_preproc_if_token2] = ACTIONS(4082), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4082), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4082), - [sym_preproc_directive] = ACTIONS(4082), - [anon_sym_LPAREN2] = ACTIONS(4084), - [anon_sym_BANG] = ACTIONS(4084), - [anon_sym_TILDE] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4082), - [anon_sym_PLUS] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_AMP] = ACTIONS(4082), - [anon_sym_SEMI] = ACTIONS(4084), - [anon_sym___extension__] = ACTIONS(4082), - [anon_sym_typedef] = ACTIONS(4082), - [anon_sym_virtual] = ACTIONS(4082), - [anon_sym_extern] = ACTIONS(4082), - [anon_sym___attribute__] = ACTIONS(4082), - [anon_sym___attribute] = ACTIONS(4082), - [anon_sym_using] = ACTIONS(4082), - [anon_sym_COLON_COLON] = ACTIONS(4084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4084), - [anon_sym___declspec] = ACTIONS(4082), - [anon_sym___based] = ACTIONS(4082), - [anon_sym___cdecl] = ACTIONS(4082), - [anon_sym___clrcall] = ACTIONS(4082), - [anon_sym___stdcall] = ACTIONS(4082), - [anon_sym___fastcall] = ACTIONS(4082), - [anon_sym___thiscall] = ACTIONS(4082), - [anon_sym___vectorcall] = ACTIONS(4082), - [anon_sym_LBRACE] = ACTIONS(4084), - [anon_sym_signed] = ACTIONS(4082), - [anon_sym_unsigned] = ACTIONS(4082), - [anon_sym_long] = ACTIONS(4082), - [anon_sym_short] = ACTIONS(4082), - [anon_sym_LBRACK] = ACTIONS(4082), - [anon_sym_static] = ACTIONS(4082), - [anon_sym_register] = ACTIONS(4082), - [anon_sym_inline] = ACTIONS(4082), - [anon_sym___inline] = ACTIONS(4082), - [anon_sym___inline__] = ACTIONS(4082), - [anon_sym___forceinline] = ACTIONS(4082), - [anon_sym_thread_local] = ACTIONS(4082), - [anon_sym___thread] = ACTIONS(4082), - [anon_sym_const] = ACTIONS(4082), - [anon_sym_constexpr] = ACTIONS(4082), - [anon_sym_volatile] = ACTIONS(4082), - [anon_sym_restrict] = ACTIONS(4082), - [anon_sym___restrict__] = ACTIONS(4082), - [anon_sym__Atomic] = ACTIONS(4082), - [anon_sym__Noreturn] = ACTIONS(4082), - [anon_sym_noreturn] = ACTIONS(4082), - [anon_sym__Nonnull] = ACTIONS(4082), - [anon_sym_mutable] = ACTIONS(4082), - [anon_sym_constinit] = ACTIONS(4082), - [anon_sym_consteval] = ACTIONS(4082), - [anon_sym_alignas] = ACTIONS(4082), - [anon_sym__Alignas] = ACTIONS(4082), - [sym_primitive_type] = ACTIONS(4082), - [anon_sym_enum] = ACTIONS(4082), - [anon_sym_class] = ACTIONS(4082), - [anon_sym_struct] = ACTIONS(4082), - [anon_sym_union] = ACTIONS(4082), - [anon_sym_if] = ACTIONS(4082), - [anon_sym_switch] = ACTIONS(4082), - [anon_sym_case] = ACTIONS(4082), - [anon_sym_default] = ACTIONS(4082), - [anon_sym_while] = ACTIONS(4082), - [anon_sym_do] = ACTIONS(4082), - [anon_sym_for] = ACTIONS(4082), - [anon_sym_return] = ACTIONS(4082), - [anon_sym_break] = ACTIONS(4082), - [anon_sym_continue] = ACTIONS(4082), - [anon_sym_goto] = ACTIONS(4082), - [anon_sym___try] = ACTIONS(4082), - [anon_sym___leave] = ACTIONS(4082), - [anon_sym_not] = ACTIONS(4082), - [anon_sym_compl] = ACTIONS(4082), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_sizeof] = ACTIONS(4082), - [anon_sym___alignof__] = ACTIONS(4082), - [anon_sym___alignof] = ACTIONS(4082), - [anon_sym__alignof] = ACTIONS(4082), - [anon_sym_alignof] = ACTIONS(4082), - [anon_sym__Alignof] = ACTIONS(4082), - [anon_sym_offsetof] = ACTIONS(4082), - [anon_sym__Generic] = ACTIONS(4082), - [anon_sym_typename] = ACTIONS(4082), - [anon_sym_asm] = ACTIONS(4082), - [anon_sym___asm__] = ACTIONS(4082), - [anon_sym___asm] = ACTIONS(4082), - [sym_number_literal] = ACTIONS(4084), - [anon_sym_L_SQUOTE] = ACTIONS(4084), - [anon_sym_u_SQUOTE] = ACTIONS(4084), - [anon_sym_U_SQUOTE] = ACTIONS(4084), - [anon_sym_u8_SQUOTE] = ACTIONS(4084), - [anon_sym_SQUOTE] = ACTIONS(4084), - [anon_sym_L_DQUOTE] = ACTIONS(4084), - [anon_sym_u_DQUOTE] = ACTIONS(4084), - [anon_sym_U_DQUOTE] = ACTIONS(4084), - [anon_sym_u8_DQUOTE] = ACTIONS(4084), - [anon_sym_DQUOTE] = ACTIONS(4084), - [sym_true] = ACTIONS(4082), - [sym_false] = ACTIONS(4082), - [anon_sym_NULL] = ACTIONS(4082), - [anon_sym_nullptr] = ACTIONS(4082), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4082), - [anon_sym_decltype] = ACTIONS(4082), - [anon_sym_explicit] = ACTIONS(4082), - [anon_sym_template] = ACTIONS(4082), - [anon_sym_operator] = ACTIONS(4082), - [anon_sym_try] = ACTIONS(4082), - [anon_sym_delete] = ACTIONS(4082), - [anon_sym_throw] = ACTIONS(4082), - [anon_sym_namespace] = ACTIONS(4082), - [anon_sym_static_assert] = ACTIONS(4082), - [anon_sym_concept] = ACTIONS(4082), - [anon_sym_co_return] = ACTIONS(4082), - [anon_sym_co_yield] = ACTIONS(4082), - [anon_sym_R_DQUOTE] = ACTIONS(4084), - [anon_sym_LR_DQUOTE] = ACTIONS(4084), - [anon_sym_uR_DQUOTE] = ACTIONS(4084), - [anon_sym_UR_DQUOTE] = ACTIONS(4084), - [anon_sym_u8R_DQUOTE] = ACTIONS(4084), - [anon_sym_co_await] = ACTIONS(4082), - [anon_sym_new] = ACTIONS(4082), - [anon_sym_requires] = ACTIONS(4082), - [anon_sym_CARET_CARET] = ACTIONS(4084), - [anon_sym_LBRACK_COLON] = ACTIONS(4084), - [sym_this] = ACTIONS(4082), - }, - [STATE(818)] = { - [sym_identifier] = ACTIONS(4138), - [aux_sym_preproc_include_token1] = ACTIONS(4138), - [aux_sym_preproc_def_token1] = ACTIONS(4138), - [aux_sym_preproc_if_token1] = ACTIONS(4138), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4138), - [sym_preproc_directive] = ACTIONS(4138), - [anon_sym_LPAREN2] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4141), - [anon_sym_TILDE] = ACTIONS(4141), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4141), - [anon_sym_AMP_AMP] = ACTIONS(4141), - [anon_sym_AMP] = ACTIONS(4138), - [anon_sym_SEMI] = ACTIONS(4141), - [anon_sym___extension__] = ACTIONS(4138), - [anon_sym_typedef] = ACTIONS(4138), - [anon_sym_virtual] = ACTIONS(4138), - [anon_sym_extern] = ACTIONS(4138), - [anon_sym___attribute__] = ACTIONS(4138), - [anon_sym___attribute] = ACTIONS(4138), - [anon_sym_using] = ACTIONS(4138), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4141), - [anon_sym___declspec] = ACTIONS(4138), - [anon_sym___based] = ACTIONS(4138), - [anon_sym___cdecl] = ACTIONS(4138), - [anon_sym___clrcall] = ACTIONS(4138), - [anon_sym___stdcall] = ACTIONS(4138), - [anon_sym___fastcall] = ACTIONS(4138), - [anon_sym___thiscall] = ACTIONS(4138), - [anon_sym___vectorcall] = ACTIONS(4138), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4141), - [anon_sym_signed] = ACTIONS(4138), - [anon_sym_unsigned] = ACTIONS(4138), - [anon_sym_long] = ACTIONS(4138), - [anon_sym_short] = ACTIONS(4138), - [anon_sym_LBRACK] = ACTIONS(4138), - [anon_sym_static] = ACTIONS(4138), - [anon_sym_register] = ACTIONS(4138), - [anon_sym_inline] = ACTIONS(4138), - [anon_sym___inline] = ACTIONS(4138), - [anon_sym___inline__] = ACTIONS(4138), - [anon_sym___forceinline] = ACTIONS(4138), - [anon_sym_thread_local] = ACTIONS(4138), - [anon_sym___thread] = ACTIONS(4138), - [anon_sym_const] = ACTIONS(4138), - [anon_sym_constexpr] = ACTIONS(4138), - [anon_sym_volatile] = ACTIONS(4138), - [anon_sym_restrict] = ACTIONS(4138), - [anon_sym___restrict__] = ACTIONS(4138), - [anon_sym__Atomic] = ACTIONS(4138), - [anon_sym__Noreturn] = ACTIONS(4138), - [anon_sym_noreturn] = ACTIONS(4138), - [anon_sym__Nonnull] = ACTIONS(4138), - [anon_sym_mutable] = ACTIONS(4138), - [anon_sym_constinit] = ACTIONS(4138), - [anon_sym_consteval] = ACTIONS(4138), - [anon_sym_alignas] = ACTIONS(4138), - [anon_sym__Alignas] = ACTIONS(4138), - [sym_primitive_type] = ACTIONS(4138), - [anon_sym_enum] = ACTIONS(4138), - [anon_sym_class] = ACTIONS(4138), - [anon_sym_struct] = ACTIONS(4138), - [anon_sym_union] = ACTIONS(4138), - [anon_sym_if] = ACTIONS(4138), - [anon_sym_switch] = ACTIONS(4138), - [anon_sym_case] = ACTIONS(4138), - [anon_sym_default] = ACTIONS(4138), - [anon_sym_while] = ACTIONS(4138), - [anon_sym_do] = ACTIONS(4138), - [anon_sym_for] = ACTIONS(4138), - [anon_sym_return] = ACTIONS(4138), - [anon_sym_break] = ACTIONS(4138), - [anon_sym_continue] = ACTIONS(4138), - [anon_sym_goto] = ACTIONS(4138), - [anon_sym___try] = ACTIONS(4138), - [anon_sym___leave] = ACTIONS(4138), - [anon_sym_not] = ACTIONS(4138), - [anon_sym_compl] = ACTIONS(4138), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_sizeof] = ACTIONS(4138), - [anon_sym___alignof__] = ACTIONS(4138), - [anon_sym___alignof] = ACTIONS(4138), - [anon_sym__alignof] = ACTIONS(4138), - [anon_sym_alignof] = ACTIONS(4138), - [anon_sym__Alignof] = ACTIONS(4138), - [anon_sym_offsetof] = ACTIONS(4138), - [anon_sym__Generic] = ACTIONS(4138), - [anon_sym_typename] = ACTIONS(4138), - [anon_sym_asm] = ACTIONS(4138), - [anon_sym___asm__] = ACTIONS(4138), - [anon_sym___asm] = ACTIONS(4138), - [sym_number_literal] = ACTIONS(4141), - [anon_sym_L_SQUOTE] = ACTIONS(4141), - [anon_sym_u_SQUOTE] = ACTIONS(4141), - [anon_sym_U_SQUOTE] = ACTIONS(4141), - [anon_sym_u8_SQUOTE] = ACTIONS(4141), - [anon_sym_SQUOTE] = ACTIONS(4141), - [anon_sym_L_DQUOTE] = ACTIONS(4141), - [anon_sym_u_DQUOTE] = ACTIONS(4141), - [anon_sym_U_DQUOTE] = ACTIONS(4141), - [anon_sym_u8_DQUOTE] = ACTIONS(4141), - [anon_sym_DQUOTE] = ACTIONS(4141), - [sym_true] = ACTIONS(4138), - [sym_false] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_nullptr] = ACTIONS(4138), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4138), - [anon_sym_decltype] = ACTIONS(4138), - [anon_sym_explicit] = ACTIONS(4138), - [anon_sym_template] = ACTIONS(4138), - [anon_sym_operator] = ACTIONS(4138), - [anon_sym_try] = ACTIONS(4138), - [anon_sym_delete] = ACTIONS(4138), - [anon_sym_throw] = ACTIONS(4138), - [anon_sym_namespace] = ACTIONS(4138), - [anon_sym_static_assert] = ACTIONS(4138), - [anon_sym_concept] = ACTIONS(4138), - [anon_sym_co_return] = ACTIONS(4138), - [anon_sym_co_yield] = ACTIONS(4138), - [anon_sym_R_DQUOTE] = ACTIONS(4141), - [anon_sym_LR_DQUOTE] = ACTIONS(4141), - [anon_sym_uR_DQUOTE] = ACTIONS(4141), - [anon_sym_UR_DQUOTE] = ACTIONS(4141), - [anon_sym_u8R_DQUOTE] = ACTIONS(4141), - [anon_sym_co_await] = ACTIONS(4138), - [anon_sym_new] = ACTIONS(4138), - [anon_sym_requires] = ACTIONS(4138), - [anon_sym_CARET_CARET] = ACTIONS(4141), - [anon_sym_LBRACK_COLON] = ACTIONS(4141), - [sym_this] = ACTIONS(4138), - }, - [STATE(819)] = { - [sym_identifier] = ACTIONS(4074), - [aux_sym_preproc_include_token1] = ACTIONS(4074), - [aux_sym_preproc_def_token1] = ACTIONS(4074), - [aux_sym_preproc_if_token1] = ACTIONS(4074), - [aux_sym_preproc_if_token2] = ACTIONS(4074), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4074), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4074), - [sym_preproc_directive] = ACTIONS(4074), - [anon_sym_LPAREN2] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(4076), - [anon_sym_TILDE] = ACTIONS(4076), - [anon_sym_DASH] = ACTIONS(4074), - [anon_sym_PLUS] = ACTIONS(4074), - [anon_sym_STAR] = ACTIONS(4076), - [anon_sym_AMP_AMP] = ACTIONS(4076), - [anon_sym_AMP] = ACTIONS(4074), - [anon_sym_SEMI] = ACTIONS(4076), - [anon_sym___extension__] = ACTIONS(4074), - [anon_sym_typedef] = ACTIONS(4074), - [anon_sym_virtual] = ACTIONS(4074), - [anon_sym_extern] = ACTIONS(4074), - [anon_sym___attribute__] = ACTIONS(4074), - [anon_sym___attribute] = ACTIONS(4074), - [anon_sym_using] = ACTIONS(4074), - [anon_sym_COLON_COLON] = ACTIONS(4076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4076), - [anon_sym___declspec] = ACTIONS(4074), - [anon_sym___based] = ACTIONS(4074), - [anon_sym___cdecl] = ACTIONS(4074), - [anon_sym___clrcall] = ACTIONS(4074), - [anon_sym___stdcall] = ACTIONS(4074), - [anon_sym___fastcall] = ACTIONS(4074), - [anon_sym___thiscall] = ACTIONS(4074), - [anon_sym___vectorcall] = ACTIONS(4074), - [anon_sym_LBRACE] = ACTIONS(4076), - [anon_sym_signed] = ACTIONS(4074), - [anon_sym_unsigned] = ACTIONS(4074), - [anon_sym_long] = ACTIONS(4074), - [anon_sym_short] = ACTIONS(4074), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_static] = ACTIONS(4074), - [anon_sym_register] = ACTIONS(4074), - [anon_sym_inline] = ACTIONS(4074), - [anon_sym___inline] = ACTIONS(4074), - [anon_sym___inline__] = ACTIONS(4074), - [anon_sym___forceinline] = ACTIONS(4074), - [anon_sym_thread_local] = ACTIONS(4074), - [anon_sym___thread] = ACTIONS(4074), - [anon_sym_const] = ACTIONS(4074), - [anon_sym_constexpr] = ACTIONS(4074), - [anon_sym_volatile] = ACTIONS(4074), - [anon_sym_restrict] = ACTIONS(4074), - [anon_sym___restrict__] = ACTIONS(4074), - [anon_sym__Atomic] = ACTIONS(4074), - [anon_sym__Noreturn] = ACTIONS(4074), - [anon_sym_noreturn] = ACTIONS(4074), - [anon_sym__Nonnull] = ACTIONS(4074), - [anon_sym_mutable] = ACTIONS(4074), - [anon_sym_constinit] = ACTIONS(4074), - [anon_sym_consteval] = ACTIONS(4074), - [anon_sym_alignas] = ACTIONS(4074), - [anon_sym__Alignas] = ACTIONS(4074), - [sym_primitive_type] = ACTIONS(4074), - [anon_sym_enum] = ACTIONS(4074), - [anon_sym_class] = ACTIONS(4074), - [anon_sym_struct] = ACTIONS(4074), - [anon_sym_union] = ACTIONS(4074), - [anon_sym_if] = ACTIONS(4074), - [anon_sym_switch] = ACTIONS(4074), - [anon_sym_case] = ACTIONS(4074), - [anon_sym_default] = ACTIONS(4074), - [anon_sym_while] = ACTIONS(4074), - [anon_sym_do] = ACTIONS(4074), - [anon_sym_for] = ACTIONS(4074), - [anon_sym_return] = ACTIONS(4074), - [anon_sym_break] = ACTIONS(4074), - [anon_sym_continue] = ACTIONS(4074), - [anon_sym_goto] = ACTIONS(4074), - [anon_sym___try] = ACTIONS(4074), - [anon_sym___leave] = ACTIONS(4074), - [anon_sym_not] = ACTIONS(4074), - [anon_sym_compl] = ACTIONS(4074), - [anon_sym_DASH_DASH] = ACTIONS(4076), - [anon_sym_PLUS_PLUS] = ACTIONS(4076), - [anon_sym_sizeof] = ACTIONS(4074), - [anon_sym___alignof__] = ACTIONS(4074), - [anon_sym___alignof] = ACTIONS(4074), - [anon_sym__alignof] = ACTIONS(4074), - [anon_sym_alignof] = ACTIONS(4074), - [anon_sym__Alignof] = ACTIONS(4074), - [anon_sym_offsetof] = ACTIONS(4074), - [anon_sym__Generic] = ACTIONS(4074), - [anon_sym_typename] = ACTIONS(4074), - [anon_sym_asm] = ACTIONS(4074), - [anon_sym___asm__] = ACTIONS(4074), - [anon_sym___asm] = ACTIONS(4074), - [sym_number_literal] = ACTIONS(4076), - [anon_sym_L_SQUOTE] = ACTIONS(4076), - [anon_sym_u_SQUOTE] = ACTIONS(4076), - [anon_sym_U_SQUOTE] = ACTIONS(4076), - [anon_sym_u8_SQUOTE] = ACTIONS(4076), - [anon_sym_SQUOTE] = ACTIONS(4076), - [anon_sym_L_DQUOTE] = ACTIONS(4076), - [anon_sym_u_DQUOTE] = ACTIONS(4076), - [anon_sym_U_DQUOTE] = ACTIONS(4076), - [anon_sym_u8_DQUOTE] = ACTIONS(4076), - [anon_sym_DQUOTE] = ACTIONS(4076), - [sym_true] = ACTIONS(4074), - [sym_false] = ACTIONS(4074), - [anon_sym_NULL] = ACTIONS(4074), - [anon_sym_nullptr] = ACTIONS(4074), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4074), - [anon_sym_decltype] = ACTIONS(4074), - [anon_sym_explicit] = ACTIONS(4074), - [anon_sym_template] = ACTIONS(4074), - [anon_sym_operator] = ACTIONS(4074), - [anon_sym_try] = ACTIONS(4074), - [anon_sym_delete] = ACTIONS(4074), - [anon_sym_throw] = ACTIONS(4074), - [anon_sym_namespace] = ACTIONS(4074), - [anon_sym_static_assert] = ACTIONS(4074), - [anon_sym_concept] = ACTIONS(4074), - [anon_sym_co_return] = ACTIONS(4074), - [anon_sym_co_yield] = ACTIONS(4074), - [anon_sym_R_DQUOTE] = ACTIONS(4076), - [anon_sym_LR_DQUOTE] = ACTIONS(4076), - [anon_sym_uR_DQUOTE] = ACTIONS(4076), - [anon_sym_UR_DQUOTE] = ACTIONS(4076), - [anon_sym_u8R_DQUOTE] = ACTIONS(4076), - [anon_sym_co_await] = ACTIONS(4074), - [anon_sym_new] = ACTIONS(4074), - [anon_sym_requires] = ACTIONS(4074), - [anon_sym_CARET_CARET] = ACTIONS(4076), - [anon_sym_LBRACK_COLON] = ACTIONS(4076), - [sym_this] = ACTIONS(4074), - }, - [STATE(820)] = { - [sym_identifier] = ACTIONS(4078), - [aux_sym_preproc_include_token1] = ACTIONS(4078), - [aux_sym_preproc_def_token1] = ACTIONS(4078), - [aux_sym_preproc_if_token1] = ACTIONS(4078), - [aux_sym_preproc_if_token2] = ACTIONS(4078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4078), - [sym_preproc_directive] = ACTIONS(4078), - [anon_sym_LPAREN2] = ACTIONS(4080), - [anon_sym_BANG] = ACTIONS(4080), - [anon_sym_TILDE] = ACTIONS(4080), - [anon_sym_DASH] = ACTIONS(4078), - [anon_sym_PLUS] = ACTIONS(4078), - [anon_sym_STAR] = ACTIONS(4080), - [anon_sym_AMP_AMP] = ACTIONS(4080), - [anon_sym_AMP] = ACTIONS(4078), - [anon_sym_SEMI] = ACTIONS(4080), - [anon_sym___extension__] = ACTIONS(4078), - [anon_sym_typedef] = ACTIONS(4078), - [anon_sym_virtual] = ACTIONS(4078), - [anon_sym_extern] = ACTIONS(4078), - [anon_sym___attribute__] = ACTIONS(4078), - [anon_sym___attribute] = ACTIONS(4078), - [anon_sym_using] = ACTIONS(4078), - [anon_sym_COLON_COLON] = ACTIONS(4080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4080), - [anon_sym___declspec] = ACTIONS(4078), - [anon_sym___based] = ACTIONS(4078), - [anon_sym___cdecl] = ACTIONS(4078), - [anon_sym___clrcall] = ACTIONS(4078), - [anon_sym___stdcall] = ACTIONS(4078), - [anon_sym___fastcall] = ACTIONS(4078), - [anon_sym___thiscall] = ACTIONS(4078), - [anon_sym___vectorcall] = ACTIONS(4078), - [anon_sym_LBRACE] = ACTIONS(4080), - [anon_sym_signed] = ACTIONS(4078), - [anon_sym_unsigned] = ACTIONS(4078), - [anon_sym_long] = ACTIONS(4078), - [anon_sym_short] = ACTIONS(4078), - [anon_sym_LBRACK] = ACTIONS(4078), - [anon_sym_static] = ACTIONS(4078), - [anon_sym_register] = ACTIONS(4078), - [anon_sym_inline] = ACTIONS(4078), - [anon_sym___inline] = ACTIONS(4078), - [anon_sym___inline__] = ACTIONS(4078), - [anon_sym___forceinline] = ACTIONS(4078), - [anon_sym_thread_local] = ACTIONS(4078), - [anon_sym___thread] = ACTIONS(4078), - [anon_sym_const] = ACTIONS(4078), - [anon_sym_constexpr] = ACTIONS(4078), - [anon_sym_volatile] = ACTIONS(4078), - [anon_sym_restrict] = ACTIONS(4078), - [anon_sym___restrict__] = ACTIONS(4078), - [anon_sym__Atomic] = ACTIONS(4078), - [anon_sym__Noreturn] = ACTIONS(4078), - [anon_sym_noreturn] = ACTIONS(4078), - [anon_sym__Nonnull] = ACTIONS(4078), - [anon_sym_mutable] = ACTIONS(4078), - [anon_sym_constinit] = ACTIONS(4078), - [anon_sym_consteval] = ACTIONS(4078), - [anon_sym_alignas] = ACTIONS(4078), - [anon_sym__Alignas] = ACTIONS(4078), - [sym_primitive_type] = ACTIONS(4078), - [anon_sym_enum] = ACTIONS(4078), - [anon_sym_class] = ACTIONS(4078), - [anon_sym_struct] = ACTIONS(4078), - [anon_sym_union] = ACTIONS(4078), - [anon_sym_if] = ACTIONS(4078), - [anon_sym_switch] = ACTIONS(4078), - [anon_sym_case] = ACTIONS(4078), - [anon_sym_default] = ACTIONS(4078), - [anon_sym_while] = ACTIONS(4078), - [anon_sym_do] = ACTIONS(4078), - [anon_sym_for] = ACTIONS(4078), - [anon_sym_return] = ACTIONS(4078), - [anon_sym_break] = ACTIONS(4078), - [anon_sym_continue] = ACTIONS(4078), - [anon_sym_goto] = ACTIONS(4078), - [anon_sym___try] = ACTIONS(4078), - [anon_sym___leave] = ACTIONS(4078), - [anon_sym_not] = ACTIONS(4078), - [anon_sym_compl] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4080), - [anon_sym_PLUS_PLUS] = ACTIONS(4080), - [anon_sym_sizeof] = ACTIONS(4078), - [anon_sym___alignof__] = ACTIONS(4078), - [anon_sym___alignof] = ACTIONS(4078), - [anon_sym__alignof] = ACTIONS(4078), - [anon_sym_alignof] = ACTIONS(4078), - [anon_sym__Alignof] = ACTIONS(4078), - [anon_sym_offsetof] = ACTIONS(4078), - [anon_sym__Generic] = ACTIONS(4078), - [anon_sym_typename] = ACTIONS(4078), - [anon_sym_asm] = ACTIONS(4078), - [anon_sym___asm__] = ACTIONS(4078), - [anon_sym___asm] = ACTIONS(4078), - [sym_number_literal] = ACTIONS(4080), - [anon_sym_L_SQUOTE] = ACTIONS(4080), - [anon_sym_u_SQUOTE] = ACTIONS(4080), - [anon_sym_U_SQUOTE] = ACTIONS(4080), - [anon_sym_u8_SQUOTE] = ACTIONS(4080), - [anon_sym_SQUOTE] = ACTIONS(4080), - [anon_sym_L_DQUOTE] = ACTIONS(4080), - [anon_sym_u_DQUOTE] = ACTIONS(4080), - [anon_sym_U_DQUOTE] = ACTIONS(4080), - [anon_sym_u8_DQUOTE] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4080), - [sym_true] = ACTIONS(4078), - [sym_false] = ACTIONS(4078), - [anon_sym_NULL] = ACTIONS(4078), - [anon_sym_nullptr] = ACTIONS(4078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4078), - [anon_sym_decltype] = ACTIONS(4078), - [anon_sym_explicit] = ACTIONS(4078), - [anon_sym_template] = ACTIONS(4078), - [anon_sym_operator] = ACTIONS(4078), - [anon_sym_try] = ACTIONS(4078), - [anon_sym_delete] = ACTIONS(4078), - [anon_sym_throw] = ACTIONS(4078), - [anon_sym_namespace] = ACTIONS(4078), - [anon_sym_static_assert] = ACTIONS(4078), - [anon_sym_concept] = ACTIONS(4078), - [anon_sym_co_return] = ACTIONS(4078), - [anon_sym_co_yield] = ACTIONS(4078), - [anon_sym_R_DQUOTE] = ACTIONS(4080), - [anon_sym_LR_DQUOTE] = ACTIONS(4080), - [anon_sym_uR_DQUOTE] = ACTIONS(4080), - [anon_sym_UR_DQUOTE] = ACTIONS(4080), - [anon_sym_u8R_DQUOTE] = ACTIONS(4080), - [anon_sym_co_await] = ACTIONS(4078), - [anon_sym_new] = ACTIONS(4078), - [anon_sym_requires] = ACTIONS(4078), - [anon_sym_CARET_CARET] = ACTIONS(4080), - [anon_sym_LBRACK_COLON] = ACTIONS(4080), - [sym_this] = ACTIONS(4078), - }, - [STATE(821)] = { - [sym_identifier] = ACTIONS(4002), - [aux_sym_preproc_include_token1] = ACTIONS(4002), - [aux_sym_preproc_def_token1] = ACTIONS(4002), - [aux_sym_preproc_if_token1] = ACTIONS(4002), - [aux_sym_preproc_if_token2] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), - [sym_preproc_directive] = ACTIONS(4002), - [anon_sym_LPAREN2] = ACTIONS(4004), - [anon_sym_BANG] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(4004), - [anon_sym_DASH] = ACTIONS(4002), - [anon_sym_PLUS] = ACTIONS(4002), - [anon_sym_STAR] = ACTIONS(4004), - [anon_sym_AMP_AMP] = ACTIONS(4004), - [anon_sym_AMP] = ACTIONS(4002), - [anon_sym_SEMI] = ACTIONS(4004), - [anon_sym___extension__] = ACTIONS(4002), - [anon_sym_typedef] = ACTIONS(4002), - [anon_sym_virtual] = ACTIONS(4002), - [anon_sym_extern] = ACTIONS(4002), - [anon_sym___attribute__] = ACTIONS(4002), - [anon_sym___attribute] = ACTIONS(4002), - [anon_sym_using] = ACTIONS(4002), - [anon_sym_COLON_COLON] = ACTIONS(4004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), - [anon_sym___declspec] = ACTIONS(4002), - [anon_sym___based] = ACTIONS(4002), - [anon_sym___cdecl] = ACTIONS(4002), - [anon_sym___clrcall] = ACTIONS(4002), - [anon_sym___stdcall] = ACTIONS(4002), - [anon_sym___fastcall] = ACTIONS(4002), - [anon_sym___thiscall] = ACTIONS(4002), - [anon_sym___vectorcall] = ACTIONS(4002), - [anon_sym_LBRACE] = ACTIONS(4004), - [anon_sym_signed] = ACTIONS(4002), - [anon_sym_unsigned] = ACTIONS(4002), - [anon_sym_long] = ACTIONS(4002), - [anon_sym_short] = ACTIONS(4002), - [anon_sym_LBRACK] = ACTIONS(4002), - [anon_sym_static] = ACTIONS(4002), - [anon_sym_register] = ACTIONS(4002), - [anon_sym_inline] = ACTIONS(4002), - [anon_sym___inline] = ACTIONS(4002), - [anon_sym___inline__] = ACTIONS(4002), - [anon_sym___forceinline] = ACTIONS(4002), - [anon_sym_thread_local] = ACTIONS(4002), - [anon_sym___thread] = ACTIONS(4002), - [anon_sym_const] = ACTIONS(4002), - [anon_sym_constexpr] = ACTIONS(4002), - [anon_sym_volatile] = ACTIONS(4002), - [anon_sym_restrict] = ACTIONS(4002), - [anon_sym___restrict__] = ACTIONS(4002), - [anon_sym__Atomic] = ACTIONS(4002), - [anon_sym__Noreturn] = ACTIONS(4002), - [anon_sym_noreturn] = ACTIONS(4002), - [anon_sym__Nonnull] = ACTIONS(4002), - [anon_sym_mutable] = ACTIONS(4002), - [anon_sym_constinit] = ACTIONS(4002), - [anon_sym_consteval] = ACTIONS(4002), - [anon_sym_alignas] = ACTIONS(4002), - [anon_sym__Alignas] = ACTIONS(4002), - [sym_primitive_type] = ACTIONS(4002), - [anon_sym_enum] = ACTIONS(4002), - [anon_sym_class] = ACTIONS(4002), - [anon_sym_struct] = ACTIONS(4002), - [anon_sym_union] = ACTIONS(4002), - [anon_sym_if] = ACTIONS(4002), - [anon_sym_switch] = ACTIONS(4002), - [anon_sym_case] = ACTIONS(4002), - [anon_sym_default] = ACTIONS(4002), - [anon_sym_while] = ACTIONS(4002), - [anon_sym_do] = ACTIONS(4002), - [anon_sym_for] = ACTIONS(4002), - [anon_sym_return] = ACTIONS(4002), - [anon_sym_break] = ACTIONS(4002), - [anon_sym_continue] = ACTIONS(4002), - [anon_sym_goto] = ACTIONS(4002), - [anon_sym___try] = ACTIONS(4002), - [anon_sym___leave] = ACTIONS(4002), - [anon_sym_not] = ACTIONS(4002), - [anon_sym_compl] = ACTIONS(4002), - [anon_sym_DASH_DASH] = ACTIONS(4004), - [anon_sym_PLUS_PLUS] = ACTIONS(4004), - [anon_sym_sizeof] = ACTIONS(4002), - [anon_sym___alignof__] = ACTIONS(4002), - [anon_sym___alignof] = ACTIONS(4002), - [anon_sym__alignof] = ACTIONS(4002), - [anon_sym_alignof] = ACTIONS(4002), - [anon_sym__Alignof] = ACTIONS(4002), - [anon_sym_offsetof] = ACTIONS(4002), - [anon_sym__Generic] = ACTIONS(4002), - [anon_sym_typename] = ACTIONS(4002), - [anon_sym_asm] = ACTIONS(4002), - [anon_sym___asm__] = ACTIONS(4002), - [anon_sym___asm] = ACTIONS(4002), - [sym_number_literal] = ACTIONS(4004), - [anon_sym_L_SQUOTE] = ACTIONS(4004), - [anon_sym_u_SQUOTE] = ACTIONS(4004), - [anon_sym_U_SQUOTE] = ACTIONS(4004), - [anon_sym_u8_SQUOTE] = ACTIONS(4004), - [anon_sym_SQUOTE] = ACTIONS(4004), - [anon_sym_L_DQUOTE] = ACTIONS(4004), - [anon_sym_u_DQUOTE] = ACTIONS(4004), - [anon_sym_U_DQUOTE] = ACTIONS(4004), - [anon_sym_u8_DQUOTE] = ACTIONS(4004), - [anon_sym_DQUOTE] = ACTIONS(4004), - [sym_true] = ACTIONS(4002), - [sym_false] = ACTIONS(4002), - [anon_sym_NULL] = ACTIONS(4002), - [anon_sym_nullptr] = ACTIONS(4002), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4002), - [anon_sym_decltype] = ACTIONS(4002), - [anon_sym_explicit] = ACTIONS(4002), - [anon_sym_template] = ACTIONS(4002), - [anon_sym_operator] = ACTIONS(4002), - [anon_sym_try] = ACTIONS(4002), - [anon_sym_delete] = ACTIONS(4002), - [anon_sym_throw] = ACTIONS(4002), - [anon_sym_namespace] = ACTIONS(4002), - [anon_sym_static_assert] = ACTIONS(4002), - [anon_sym_concept] = ACTIONS(4002), - [anon_sym_co_return] = ACTIONS(4002), - [anon_sym_co_yield] = ACTIONS(4002), - [anon_sym_R_DQUOTE] = ACTIONS(4004), - [anon_sym_LR_DQUOTE] = ACTIONS(4004), - [anon_sym_uR_DQUOTE] = ACTIONS(4004), - [anon_sym_UR_DQUOTE] = ACTIONS(4004), - [anon_sym_u8R_DQUOTE] = ACTIONS(4004), - [anon_sym_co_await] = ACTIONS(4002), - [anon_sym_new] = ACTIONS(4002), - [anon_sym_requires] = ACTIONS(4002), - [anon_sym_CARET_CARET] = ACTIONS(4004), - [anon_sym_LBRACK_COLON] = ACTIONS(4004), - [sym_this] = ACTIONS(4002), - }, - [STATE(822)] = { - [sym_identifier] = ACTIONS(4090), - [aux_sym_preproc_include_token1] = ACTIONS(4090), - [aux_sym_preproc_def_token1] = ACTIONS(4090), - [aux_sym_preproc_if_token1] = ACTIONS(4090), - [aux_sym_preproc_if_token2] = ACTIONS(4090), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4090), - [sym_preproc_directive] = ACTIONS(4090), - [anon_sym_LPAREN2] = ACTIONS(4092), - [anon_sym_BANG] = ACTIONS(4092), - [anon_sym_TILDE] = ACTIONS(4092), - [anon_sym_DASH] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4090), - [anon_sym_STAR] = ACTIONS(4092), - [anon_sym_AMP_AMP] = ACTIONS(4092), - [anon_sym_AMP] = ACTIONS(4090), - [anon_sym_SEMI] = ACTIONS(4092), - [anon_sym___extension__] = ACTIONS(4090), - [anon_sym_typedef] = ACTIONS(4090), - [anon_sym_virtual] = ACTIONS(4090), - [anon_sym_extern] = ACTIONS(4090), - [anon_sym___attribute__] = ACTIONS(4090), - [anon_sym___attribute] = ACTIONS(4090), - [anon_sym_using] = ACTIONS(4090), - [anon_sym_COLON_COLON] = ACTIONS(4092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4092), - [anon_sym___declspec] = ACTIONS(4090), - [anon_sym___based] = ACTIONS(4090), - [anon_sym___cdecl] = ACTIONS(4090), - [anon_sym___clrcall] = ACTIONS(4090), - [anon_sym___stdcall] = ACTIONS(4090), - [anon_sym___fastcall] = ACTIONS(4090), - [anon_sym___thiscall] = ACTIONS(4090), - [anon_sym___vectorcall] = ACTIONS(4090), - [anon_sym_LBRACE] = ACTIONS(4092), - [anon_sym_signed] = ACTIONS(4090), - [anon_sym_unsigned] = ACTIONS(4090), - [anon_sym_long] = ACTIONS(4090), - [anon_sym_short] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_static] = ACTIONS(4090), - [anon_sym_register] = ACTIONS(4090), - [anon_sym_inline] = ACTIONS(4090), - [anon_sym___inline] = ACTIONS(4090), - [anon_sym___inline__] = ACTIONS(4090), - [anon_sym___forceinline] = ACTIONS(4090), - [anon_sym_thread_local] = ACTIONS(4090), - [anon_sym___thread] = ACTIONS(4090), - [anon_sym_const] = ACTIONS(4090), - [anon_sym_constexpr] = ACTIONS(4090), - [anon_sym_volatile] = ACTIONS(4090), - [anon_sym_restrict] = ACTIONS(4090), - [anon_sym___restrict__] = ACTIONS(4090), - [anon_sym__Atomic] = ACTIONS(4090), - [anon_sym__Noreturn] = ACTIONS(4090), - [anon_sym_noreturn] = ACTIONS(4090), - [anon_sym__Nonnull] = ACTIONS(4090), - [anon_sym_mutable] = ACTIONS(4090), - [anon_sym_constinit] = ACTIONS(4090), - [anon_sym_consteval] = ACTIONS(4090), - [anon_sym_alignas] = ACTIONS(4090), - [anon_sym__Alignas] = ACTIONS(4090), - [sym_primitive_type] = ACTIONS(4090), - [anon_sym_enum] = ACTIONS(4090), - [anon_sym_class] = ACTIONS(4090), - [anon_sym_struct] = ACTIONS(4090), - [anon_sym_union] = ACTIONS(4090), - [anon_sym_if] = ACTIONS(4090), - [anon_sym_switch] = ACTIONS(4090), - [anon_sym_case] = ACTIONS(4090), - [anon_sym_default] = ACTIONS(4090), - [anon_sym_while] = ACTIONS(4090), - [anon_sym_do] = ACTIONS(4090), - [anon_sym_for] = ACTIONS(4090), - [anon_sym_return] = ACTIONS(4090), - [anon_sym_break] = ACTIONS(4090), - [anon_sym_continue] = ACTIONS(4090), - [anon_sym_goto] = ACTIONS(4090), - [anon_sym___try] = ACTIONS(4090), - [anon_sym___leave] = ACTIONS(4090), - [anon_sym_not] = ACTIONS(4090), - [anon_sym_compl] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4092), - [anon_sym_PLUS_PLUS] = ACTIONS(4092), - [anon_sym_sizeof] = ACTIONS(4090), - [anon_sym___alignof__] = ACTIONS(4090), - [anon_sym___alignof] = ACTIONS(4090), - [anon_sym__alignof] = ACTIONS(4090), - [anon_sym_alignof] = ACTIONS(4090), - [anon_sym__Alignof] = ACTIONS(4090), - [anon_sym_offsetof] = ACTIONS(4090), - [anon_sym__Generic] = ACTIONS(4090), - [anon_sym_typename] = ACTIONS(4090), - [anon_sym_asm] = ACTIONS(4090), - [anon_sym___asm__] = ACTIONS(4090), - [anon_sym___asm] = ACTIONS(4090), - [sym_number_literal] = ACTIONS(4092), - [anon_sym_L_SQUOTE] = ACTIONS(4092), - [anon_sym_u_SQUOTE] = ACTIONS(4092), - [anon_sym_U_SQUOTE] = ACTIONS(4092), - [anon_sym_u8_SQUOTE] = ACTIONS(4092), - [anon_sym_SQUOTE] = ACTIONS(4092), - [anon_sym_L_DQUOTE] = ACTIONS(4092), - [anon_sym_u_DQUOTE] = ACTIONS(4092), - [anon_sym_U_DQUOTE] = ACTIONS(4092), - [anon_sym_u8_DQUOTE] = ACTIONS(4092), - [anon_sym_DQUOTE] = ACTIONS(4092), - [sym_true] = ACTIONS(4090), - [sym_false] = ACTIONS(4090), - [anon_sym_NULL] = ACTIONS(4090), - [anon_sym_nullptr] = ACTIONS(4090), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4090), - [anon_sym_decltype] = ACTIONS(4090), - [anon_sym_explicit] = ACTIONS(4090), - [anon_sym_template] = ACTIONS(4090), - [anon_sym_operator] = ACTIONS(4090), - [anon_sym_try] = ACTIONS(4090), - [anon_sym_delete] = ACTIONS(4090), - [anon_sym_throw] = ACTIONS(4090), - [anon_sym_namespace] = ACTIONS(4090), - [anon_sym_static_assert] = ACTIONS(4090), - [anon_sym_concept] = ACTIONS(4090), - [anon_sym_co_return] = ACTIONS(4090), - [anon_sym_co_yield] = ACTIONS(4090), - [anon_sym_R_DQUOTE] = ACTIONS(4092), - [anon_sym_LR_DQUOTE] = ACTIONS(4092), - [anon_sym_uR_DQUOTE] = ACTIONS(4092), - [anon_sym_UR_DQUOTE] = ACTIONS(4092), - [anon_sym_u8R_DQUOTE] = ACTIONS(4092), - [anon_sym_co_await] = ACTIONS(4090), - [anon_sym_new] = ACTIONS(4090), - [anon_sym_requires] = ACTIONS(4090), - [anon_sym_CARET_CARET] = ACTIONS(4092), - [anon_sym_LBRACK_COLON] = ACTIONS(4092), - [sym_this] = ACTIONS(4090), - }, - [STATE(823)] = { - [sym_identifier] = ACTIONS(4030), - [aux_sym_preproc_include_token1] = ACTIONS(4030), - [aux_sym_preproc_def_token1] = ACTIONS(4030), - [aux_sym_preproc_if_token1] = ACTIONS(4030), - [aux_sym_preproc_if_token2] = ACTIONS(4030), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4030), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4030), - [sym_preproc_directive] = ACTIONS(4030), - [anon_sym_LPAREN2] = ACTIONS(4032), - [anon_sym_BANG] = ACTIONS(4032), - [anon_sym_TILDE] = ACTIONS(4032), - [anon_sym_DASH] = ACTIONS(4030), - [anon_sym_PLUS] = ACTIONS(4030), - [anon_sym_STAR] = ACTIONS(4032), - [anon_sym_AMP_AMP] = ACTIONS(4032), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_SEMI] = ACTIONS(4032), - [anon_sym___extension__] = ACTIONS(4030), - [anon_sym_typedef] = ACTIONS(4030), - [anon_sym_virtual] = ACTIONS(4030), - [anon_sym_extern] = ACTIONS(4030), - [anon_sym___attribute__] = ACTIONS(4030), - [anon_sym___attribute] = ACTIONS(4030), - [anon_sym_using] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(4032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4032), - [anon_sym___declspec] = ACTIONS(4030), - [anon_sym___based] = ACTIONS(4030), - [anon_sym___cdecl] = ACTIONS(4030), - [anon_sym___clrcall] = ACTIONS(4030), - [anon_sym___stdcall] = ACTIONS(4030), - [anon_sym___fastcall] = ACTIONS(4030), - [anon_sym___thiscall] = ACTIONS(4030), - [anon_sym___vectorcall] = ACTIONS(4030), - [anon_sym_LBRACE] = ACTIONS(4032), - [anon_sym_signed] = ACTIONS(4030), - [anon_sym_unsigned] = ACTIONS(4030), - [anon_sym_long] = ACTIONS(4030), - [anon_sym_short] = ACTIONS(4030), - [anon_sym_LBRACK] = ACTIONS(4030), - [anon_sym_static] = ACTIONS(4030), - [anon_sym_register] = ACTIONS(4030), - [anon_sym_inline] = ACTIONS(4030), - [anon_sym___inline] = ACTIONS(4030), - [anon_sym___inline__] = ACTIONS(4030), - [anon_sym___forceinline] = ACTIONS(4030), - [anon_sym_thread_local] = ACTIONS(4030), - [anon_sym___thread] = ACTIONS(4030), - [anon_sym_const] = ACTIONS(4030), - [anon_sym_constexpr] = ACTIONS(4030), - [anon_sym_volatile] = ACTIONS(4030), - [anon_sym_restrict] = ACTIONS(4030), - [anon_sym___restrict__] = ACTIONS(4030), - [anon_sym__Atomic] = ACTIONS(4030), - [anon_sym__Noreturn] = ACTIONS(4030), - [anon_sym_noreturn] = ACTIONS(4030), - [anon_sym__Nonnull] = ACTIONS(4030), - [anon_sym_mutable] = ACTIONS(4030), - [anon_sym_constinit] = ACTIONS(4030), - [anon_sym_consteval] = ACTIONS(4030), - [anon_sym_alignas] = ACTIONS(4030), - [anon_sym__Alignas] = ACTIONS(4030), - [sym_primitive_type] = ACTIONS(4030), - [anon_sym_enum] = ACTIONS(4030), - [anon_sym_class] = ACTIONS(4030), - [anon_sym_struct] = ACTIONS(4030), - [anon_sym_union] = ACTIONS(4030), - [anon_sym_if] = ACTIONS(4030), - [anon_sym_switch] = ACTIONS(4030), - [anon_sym_case] = ACTIONS(4030), - [anon_sym_default] = ACTIONS(4030), - [anon_sym_while] = ACTIONS(4030), - [anon_sym_do] = ACTIONS(4030), - [anon_sym_for] = ACTIONS(4030), - [anon_sym_return] = ACTIONS(4030), - [anon_sym_break] = ACTIONS(4030), - [anon_sym_continue] = ACTIONS(4030), - [anon_sym_goto] = ACTIONS(4030), - [anon_sym___try] = ACTIONS(4030), - [anon_sym___leave] = ACTIONS(4030), - [anon_sym_not] = ACTIONS(4030), - [anon_sym_compl] = ACTIONS(4030), - [anon_sym_DASH_DASH] = ACTIONS(4032), - [anon_sym_PLUS_PLUS] = ACTIONS(4032), - [anon_sym_sizeof] = ACTIONS(4030), - [anon_sym___alignof__] = ACTIONS(4030), - [anon_sym___alignof] = ACTIONS(4030), - [anon_sym__alignof] = ACTIONS(4030), - [anon_sym_alignof] = ACTIONS(4030), - [anon_sym__Alignof] = ACTIONS(4030), - [anon_sym_offsetof] = ACTIONS(4030), - [anon_sym__Generic] = ACTIONS(4030), - [anon_sym_typename] = ACTIONS(4030), - [anon_sym_asm] = ACTIONS(4030), - [anon_sym___asm__] = ACTIONS(4030), - [anon_sym___asm] = ACTIONS(4030), - [sym_number_literal] = ACTIONS(4032), - [anon_sym_L_SQUOTE] = ACTIONS(4032), - [anon_sym_u_SQUOTE] = ACTIONS(4032), - [anon_sym_U_SQUOTE] = ACTIONS(4032), - [anon_sym_u8_SQUOTE] = ACTIONS(4032), - [anon_sym_SQUOTE] = ACTIONS(4032), - [anon_sym_L_DQUOTE] = ACTIONS(4032), - [anon_sym_u_DQUOTE] = ACTIONS(4032), - [anon_sym_U_DQUOTE] = ACTIONS(4032), - [anon_sym_u8_DQUOTE] = ACTIONS(4032), - [anon_sym_DQUOTE] = ACTIONS(4032), - [sym_true] = ACTIONS(4030), - [sym_false] = ACTIONS(4030), - [anon_sym_NULL] = ACTIONS(4030), - [anon_sym_nullptr] = ACTIONS(4030), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4030), - [anon_sym_decltype] = ACTIONS(4030), - [anon_sym_explicit] = ACTIONS(4030), - [anon_sym_template] = ACTIONS(4030), - [anon_sym_operator] = ACTIONS(4030), - [anon_sym_try] = ACTIONS(4030), - [anon_sym_delete] = ACTIONS(4030), - [anon_sym_throw] = ACTIONS(4030), - [anon_sym_namespace] = ACTIONS(4030), - [anon_sym_static_assert] = ACTIONS(4030), - [anon_sym_concept] = ACTIONS(4030), - [anon_sym_co_return] = ACTIONS(4030), - [anon_sym_co_yield] = ACTIONS(4030), - [anon_sym_R_DQUOTE] = ACTIONS(4032), - [anon_sym_LR_DQUOTE] = ACTIONS(4032), - [anon_sym_uR_DQUOTE] = ACTIONS(4032), - [anon_sym_UR_DQUOTE] = ACTIONS(4032), - [anon_sym_u8R_DQUOTE] = ACTIONS(4032), - [anon_sym_co_await] = ACTIONS(4030), - [anon_sym_new] = ACTIONS(4030), - [anon_sym_requires] = ACTIONS(4030), - [anon_sym_CARET_CARET] = ACTIONS(4032), - [anon_sym_LBRACK_COLON] = ACTIONS(4032), - [sym_this] = ACTIONS(4030), - }, - [STATE(824)] = { - [sym_identifier] = ACTIONS(3986), - [aux_sym_preproc_include_token1] = ACTIONS(3986), - [aux_sym_preproc_def_token1] = ACTIONS(3986), - [aux_sym_preproc_if_token1] = ACTIONS(3986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3986), - [sym_preproc_directive] = ACTIONS(3986), - [anon_sym_LPAREN2] = ACTIONS(3988), - [anon_sym_BANG] = ACTIONS(3988), - [anon_sym_TILDE] = ACTIONS(3988), - [anon_sym_DASH] = ACTIONS(3986), - [anon_sym_PLUS] = ACTIONS(3986), - [anon_sym_STAR] = ACTIONS(3988), - [anon_sym_AMP_AMP] = ACTIONS(3988), - [anon_sym_AMP] = ACTIONS(3986), - [anon_sym_SEMI] = ACTIONS(3988), - [anon_sym___extension__] = ACTIONS(3986), - [anon_sym_typedef] = ACTIONS(3986), - [anon_sym_virtual] = ACTIONS(3986), - [anon_sym_extern] = ACTIONS(3986), - [anon_sym___attribute__] = ACTIONS(3986), - [anon_sym___attribute] = ACTIONS(3986), - [anon_sym_using] = ACTIONS(3986), - [anon_sym_COLON_COLON] = ACTIONS(3988), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3988), - [anon_sym___declspec] = ACTIONS(3986), - [anon_sym___based] = ACTIONS(3986), - [anon_sym___cdecl] = ACTIONS(3986), - [anon_sym___clrcall] = ACTIONS(3986), - [anon_sym___stdcall] = ACTIONS(3986), - [anon_sym___fastcall] = ACTIONS(3986), - [anon_sym___thiscall] = ACTIONS(3986), - [anon_sym___vectorcall] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3988), - [anon_sym_RBRACE] = ACTIONS(3988), - [anon_sym_signed] = ACTIONS(3986), - [anon_sym_unsigned] = ACTIONS(3986), - [anon_sym_long] = ACTIONS(3986), - [anon_sym_short] = ACTIONS(3986), - [anon_sym_LBRACK] = ACTIONS(3986), - [anon_sym_static] = ACTIONS(3986), - [anon_sym_register] = ACTIONS(3986), - [anon_sym_inline] = ACTIONS(3986), - [anon_sym___inline] = ACTIONS(3986), - [anon_sym___inline__] = ACTIONS(3986), - [anon_sym___forceinline] = ACTIONS(3986), - [anon_sym_thread_local] = ACTIONS(3986), - [anon_sym___thread] = ACTIONS(3986), - [anon_sym_const] = ACTIONS(3986), - [anon_sym_constexpr] = ACTIONS(3986), - [anon_sym_volatile] = ACTIONS(3986), - [anon_sym_restrict] = ACTIONS(3986), - [anon_sym___restrict__] = ACTIONS(3986), - [anon_sym__Atomic] = ACTIONS(3986), - [anon_sym__Noreturn] = ACTIONS(3986), - [anon_sym_noreturn] = ACTIONS(3986), - [anon_sym__Nonnull] = ACTIONS(3986), - [anon_sym_mutable] = ACTIONS(3986), - [anon_sym_constinit] = ACTIONS(3986), - [anon_sym_consteval] = ACTIONS(3986), - [anon_sym_alignas] = ACTIONS(3986), - [anon_sym__Alignas] = ACTIONS(3986), - [sym_primitive_type] = ACTIONS(3986), - [anon_sym_enum] = ACTIONS(3986), - [anon_sym_class] = ACTIONS(3986), - [anon_sym_struct] = ACTIONS(3986), - [anon_sym_union] = ACTIONS(3986), - [anon_sym_if] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(3986), - [anon_sym_case] = ACTIONS(3986), - [anon_sym_default] = ACTIONS(3986), - [anon_sym_while] = ACTIONS(3986), - [anon_sym_do] = ACTIONS(3986), - [anon_sym_for] = ACTIONS(3986), - [anon_sym_return] = ACTIONS(3986), - [anon_sym_break] = ACTIONS(3986), - [anon_sym_continue] = ACTIONS(3986), - [anon_sym_goto] = ACTIONS(3986), - [anon_sym___try] = ACTIONS(3986), - [anon_sym___leave] = ACTIONS(3986), - [anon_sym_not] = ACTIONS(3986), - [anon_sym_compl] = ACTIONS(3986), - [anon_sym_DASH_DASH] = ACTIONS(3988), - [anon_sym_PLUS_PLUS] = ACTIONS(3988), - [anon_sym_sizeof] = ACTIONS(3986), - [anon_sym___alignof__] = ACTIONS(3986), - [anon_sym___alignof] = ACTIONS(3986), - [anon_sym__alignof] = ACTIONS(3986), - [anon_sym_alignof] = ACTIONS(3986), - [anon_sym__Alignof] = ACTIONS(3986), - [anon_sym_offsetof] = ACTIONS(3986), - [anon_sym__Generic] = ACTIONS(3986), - [anon_sym_typename] = ACTIONS(3986), - [anon_sym_asm] = ACTIONS(3986), - [anon_sym___asm__] = ACTIONS(3986), - [anon_sym___asm] = ACTIONS(3986), - [sym_number_literal] = ACTIONS(3988), - [anon_sym_L_SQUOTE] = ACTIONS(3988), - [anon_sym_u_SQUOTE] = ACTIONS(3988), - [anon_sym_U_SQUOTE] = ACTIONS(3988), - [anon_sym_u8_SQUOTE] = ACTIONS(3988), - [anon_sym_SQUOTE] = ACTIONS(3988), - [anon_sym_L_DQUOTE] = ACTIONS(3988), - [anon_sym_u_DQUOTE] = ACTIONS(3988), - [anon_sym_U_DQUOTE] = ACTIONS(3988), - [anon_sym_u8_DQUOTE] = ACTIONS(3988), - [anon_sym_DQUOTE] = ACTIONS(3988), - [sym_true] = ACTIONS(3986), - [sym_false] = ACTIONS(3986), - [anon_sym_NULL] = ACTIONS(3986), - [anon_sym_nullptr] = ACTIONS(3986), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3986), - [anon_sym_decltype] = ACTIONS(3986), - [anon_sym_explicit] = ACTIONS(3986), - [anon_sym_template] = ACTIONS(3986), - [anon_sym_operator] = ACTIONS(3986), - [anon_sym_try] = ACTIONS(3986), - [anon_sym_delete] = ACTIONS(3986), - [anon_sym_throw] = ACTIONS(3986), - [anon_sym_namespace] = ACTIONS(3986), - [anon_sym_static_assert] = ACTIONS(3986), - [anon_sym_concept] = ACTIONS(3986), - [anon_sym_co_return] = ACTIONS(3986), - [anon_sym_co_yield] = ACTIONS(3986), - [anon_sym_R_DQUOTE] = ACTIONS(3988), - [anon_sym_LR_DQUOTE] = ACTIONS(3988), - [anon_sym_uR_DQUOTE] = ACTIONS(3988), - [anon_sym_UR_DQUOTE] = ACTIONS(3988), - [anon_sym_u8R_DQUOTE] = ACTIONS(3988), - [anon_sym_co_await] = ACTIONS(3986), - [anon_sym_new] = ACTIONS(3986), - [anon_sym_requires] = ACTIONS(3986), - [anon_sym_CARET_CARET] = ACTIONS(3988), - [anon_sym_LBRACK_COLON] = ACTIONS(3988), - [sym_this] = ACTIONS(3986), - }, - [STATE(825)] = { - [sym_identifier] = ACTIONS(3990), - [aux_sym_preproc_include_token1] = ACTIONS(3990), - [aux_sym_preproc_def_token1] = ACTIONS(3990), - [aux_sym_preproc_if_token1] = ACTIONS(3990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3990), - [sym_preproc_directive] = ACTIONS(3990), - [anon_sym_LPAREN2] = ACTIONS(3992), - [anon_sym_BANG] = ACTIONS(3992), - [anon_sym_TILDE] = ACTIONS(3992), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3992), - [anon_sym_AMP] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(3992), - [anon_sym___extension__] = ACTIONS(3990), - [anon_sym_typedef] = ACTIONS(3990), - [anon_sym_virtual] = ACTIONS(3990), - [anon_sym_extern] = ACTIONS(3990), - [anon_sym___attribute__] = ACTIONS(3990), - [anon_sym___attribute] = ACTIONS(3990), - [anon_sym_using] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3992), - [anon_sym___declspec] = ACTIONS(3990), - [anon_sym___based] = ACTIONS(3990), - [anon_sym___cdecl] = ACTIONS(3990), - [anon_sym___clrcall] = ACTIONS(3990), - [anon_sym___stdcall] = ACTIONS(3990), - [anon_sym___fastcall] = ACTIONS(3990), - [anon_sym___thiscall] = ACTIONS(3990), - [anon_sym___vectorcall] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(3992), - [anon_sym_RBRACE] = ACTIONS(3992), - [anon_sym_signed] = ACTIONS(3990), - [anon_sym_unsigned] = ACTIONS(3990), - [anon_sym_long] = ACTIONS(3990), - [anon_sym_short] = ACTIONS(3990), - [anon_sym_LBRACK] = ACTIONS(3990), - [anon_sym_static] = ACTIONS(3990), - [anon_sym_register] = ACTIONS(3990), - [anon_sym_inline] = ACTIONS(3990), - [anon_sym___inline] = ACTIONS(3990), - [anon_sym___inline__] = ACTIONS(3990), - [anon_sym___forceinline] = ACTIONS(3990), - [anon_sym_thread_local] = ACTIONS(3990), - [anon_sym___thread] = ACTIONS(3990), - [anon_sym_const] = ACTIONS(3990), - [anon_sym_constexpr] = ACTIONS(3990), - [anon_sym_volatile] = ACTIONS(3990), - [anon_sym_restrict] = ACTIONS(3990), - [anon_sym___restrict__] = ACTIONS(3990), - [anon_sym__Atomic] = ACTIONS(3990), - [anon_sym__Noreturn] = ACTIONS(3990), - [anon_sym_noreturn] = ACTIONS(3990), - [anon_sym__Nonnull] = ACTIONS(3990), - [anon_sym_mutable] = ACTIONS(3990), - [anon_sym_constinit] = ACTIONS(3990), - [anon_sym_consteval] = ACTIONS(3990), - [anon_sym_alignas] = ACTIONS(3990), - [anon_sym__Alignas] = ACTIONS(3990), - [sym_primitive_type] = ACTIONS(3990), - [anon_sym_enum] = ACTIONS(3990), - [anon_sym_class] = ACTIONS(3990), - [anon_sym_struct] = ACTIONS(3990), - [anon_sym_union] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_switch] = ACTIONS(3990), - [anon_sym_case] = ACTIONS(3990), - [anon_sym_default] = ACTIONS(3990), - [anon_sym_while] = ACTIONS(3990), - [anon_sym_do] = ACTIONS(3990), - [anon_sym_for] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_goto] = ACTIONS(3990), - [anon_sym___try] = ACTIONS(3990), - [anon_sym___leave] = ACTIONS(3990), - [anon_sym_not] = ACTIONS(3990), - [anon_sym_compl] = ACTIONS(3990), - [anon_sym_DASH_DASH] = ACTIONS(3992), - [anon_sym_PLUS_PLUS] = ACTIONS(3992), - [anon_sym_sizeof] = ACTIONS(3990), - [anon_sym___alignof__] = ACTIONS(3990), - [anon_sym___alignof] = ACTIONS(3990), - [anon_sym__alignof] = ACTIONS(3990), - [anon_sym_alignof] = ACTIONS(3990), - [anon_sym__Alignof] = ACTIONS(3990), - [anon_sym_offsetof] = ACTIONS(3990), - [anon_sym__Generic] = ACTIONS(3990), - [anon_sym_typename] = ACTIONS(3990), - [anon_sym_asm] = ACTIONS(3990), - [anon_sym___asm__] = ACTIONS(3990), - [anon_sym___asm] = ACTIONS(3990), - [sym_number_literal] = ACTIONS(3992), - [anon_sym_L_SQUOTE] = ACTIONS(3992), - [anon_sym_u_SQUOTE] = ACTIONS(3992), - [anon_sym_U_SQUOTE] = ACTIONS(3992), - [anon_sym_u8_SQUOTE] = ACTIONS(3992), - [anon_sym_SQUOTE] = ACTIONS(3992), - [anon_sym_L_DQUOTE] = ACTIONS(3992), - [anon_sym_u_DQUOTE] = ACTIONS(3992), - [anon_sym_U_DQUOTE] = ACTIONS(3992), - [anon_sym_u8_DQUOTE] = ACTIONS(3992), - [anon_sym_DQUOTE] = ACTIONS(3992), - [sym_true] = ACTIONS(3990), - [sym_false] = ACTIONS(3990), - [anon_sym_NULL] = ACTIONS(3990), - [anon_sym_nullptr] = ACTIONS(3990), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3990), - [anon_sym_decltype] = ACTIONS(3990), - [anon_sym_explicit] = ACTIONS(3990), - [anon_sym_template] = ACTIONS(3990), - [anon_sym_operator] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_delete] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_namespace] = ACTIONS(3990), - [anon_sym_static_assert] = ACTIONS(3990), - [anon_sym_concept] = ACTIONS(3990), - [anon_sym_co_return] = ACTIONS(3990), - [anon_sym_co_yield] = ACTIONS(3990), - [anon_sym_R_DQUOTE] = ACTIONS(3992), - [anon_sym_LR_DQUOTE] = ACTIONS(3992), - [anon_sym_uR_DQUOTE] = ACTIONS(3992), - [anon_sym_UR_DQUOTE] = ACTIONS(3992), - [anon_sym_u8R_DQUOTE] = ACTIONS(3992), - [anon_sym_co_await] = ACTIONS(3990), - [anon_sym_new] = ACTIONS(3990), - [anon_sym_requires] = ACTIONS(3990), - [anon_sym_CARET_CARET] = ACTIONS(3992), - [anon_sym_LBRACK_COLON] = ACTIONS(3992), - [sym_this] = ACTIONS(3990), - }, - [STATE(826)] = { - [sym_identifier] = ACTIONS(4034), - [aux_sym_preproc_include_token1] = ACTIONS(4034), - [aux_sym_preproc_def_token1] = ACTIONS(4034), - [aux_sym_preproc_if_token1] = ACTIONS(4034), - [aux_sym_preproc_if_token2] = ACTIONS(4034), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4034), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4034), - [sym_preproc_directive] = ACTIONS(4034), - [anon_sym_LPAREN2] = ACTIONS(4036), - [anon_sym_BANG] = ACTIONS(4036), - [anon_sym_TILDE] = ACTIONS(4036), - [anon_sym_DASH] = ACTIONS(4034), - [anon_sym_PLUS] = ACTIONS(4034), - [anon_sym_STAR] = ACTIONS(4036), - [anon_sym_AMP_AMP] = ACTIONS(4036), - [anon_sym_AMP] = ACTIONS(4034), - [anon_sym_SEMI] = ACTIONS(4036), - [anon_sym___extension__] = ACTIONS(4034), - [anon_sym_typedef] = ACTIONS(4034), - [anon_sym_virtual] = ACTIONS(4034), - [anon_sym_extern] = ACTIONS(4034), - [anon_sym___attribute__] = ACTIONS(4034), - [anon_sym___attribute] = ACTIONS(4034), - [anon_sym_using] = ACTIONS(4034), - [anon_sym_COLON_COLON] = ACTIONS(4036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4036), - [anon_sym___declspec] = ACTIONS(4034), - [anon_sym___based] = ACTIONS(4034), - [anon_sym___cdecl] = ACTIONS(4034), - [anon_sym___clrcall] = ACTIONS(4034), - [anon_sym___stdcall] = ACTIONS(4034), - [anon_sym___fastcall] = ACTIONS(4034), - [anon_sym___thiscall] = ACTIONS(4034), - [anon_sym___vectorcall] = ACTIONS(4034), - [anon_sym_LBRACE] = ACTIONS(4036), - [anon_sym_signed] = ACTIONS(4034), - [anon_sym_unsigned] = ACTIONS(4034), - [anon_sym_long] = ACTIONS(4034), - [anon_sym_short] = ACTIONS(4034), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_static] = ACTIONS(4034), - [anon_sym_register] = ACTIONS(4034), - [anon_sym_inline] = ACTIONS(4034), - [anon_sym___inline] = ACTIONS(4034), - [anon_sym___inline__] = ACTIONS(4034), - [anon_sym___forceinline] = ACTIONS(4034), - [anon_sym_thread_local] = ACTIONS(4034), - [anon_sym___thread] = ACTIONS(4034), - [anon_sym_const] = ACTIONS(4034), - [anon_sym_constexpr] = ACTIONS(4034), - [anon_sym_volatile] = ACTIONS(4034), - [anon_sym_restrict] = ACTIONS(4034), - [anon_sym___restrict__] = ACTIONS(4034), - [anon_sym__Atomic] = ACTIONS(4034), - [anon_sym__Noreturn] = ACTIONS(4034), - [anon_sym_noreturn] = ACTIONS(4034), - [anon_sym__Nonnull] = ACTIONS(4034), - [anon_sym_mutable] = ACTIONS(4034), - [anon_sym_constinit] = ACTIONS(4034), - [anon_sym_consteval] = ACTIONS(4034), - [anon_sym_alignas] = ACTIONS(4034), - [anon_sym__Alignas] = ACTIONS(4034), - [sym_primitive_type] = ACTIONS(4034), - [anon_sym_enum] = ACTIONS(4034), - [anon_sym_class] = ACTIONS(4034), - [anon_sym_struct] = ACTIONS(4034), - [anon_sym_union] = ACTIONS(4034), - [anon_sym_if] = ACTIONS(4034), - [anon_sym_switch] = ACTIONS(4034), - [anon_sym_case] = ACTIONS(4034), - [anon_sym_default] = ACTIONS(4034), - [anon_sym_while] = ACTIONS(4034), - [anon_sym_do] = ACTIONS(4034), - [anon_sym_for] = ACTIONS(4034), - [anon_sym_return] = ACTIONS(4034), - [anon_sym_break] = ACTIONS(4034), - [anon_sym_continue] = ACTIONS(4034), - [anon_sym_goto] = ACTIONS(4034), - [anon_sym___try] = ACTIONS(4034), - [anon_sym___leave] = ACTIONS(4034), - [anon_sym_not] = ACTIONS(4034), - [anon_sym_compl] = ACTIONS(4034), - [anon_sym_DASH_DASH] = ACTIONS(4036), - [anon_sym_PLUS_PLUS] = ACTIONS(4036), - [anon_sym_sizeof] = ACTIONS(4034), - [anon_sym___alignof__] = ACTIONS(4034), - [anon_sym___alignof] = ACTIONS(4034), - [anon_sym__alignof] = ACTIONS(4034), - [anon_sym_alignof] = ACTIONS(4034), - [anon_sym__Alignof] = ACTIONS(4034), - [anon_sym_offsetof] = ACTIONS(4034), - [anon_sym__Generic] = ACTIONS(4034), - [anon_sym_typename] = ACTIONS(4034), - [anon_sym_asm] = ACTIONS(4034), - [anon_sym___asm__] = ACTIONS(4034), - [anon_sym___asm] = ACTIONS(4034), - [sym_number_literal] = ACTIONS(4036), - [anon_sym_L_SQUOTE] = ACTIONS(4036), - [anon_sym_u_SQUOTE] = ACTIONS(4036), - [anon_sym_U_SQUOTE] = ACTIONS(4036), - [anon_sym_u8_SQUOTE] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4036), - [anon_sym_L_DQUOTE] = ACTIONS(4036), - [anon_sym_u_DQUOTE] = ACTIONS(4036), - [anon_sym_U_DQUOTE] = ACTIONS(4036), - [anon_sym_u8_DQUOTE] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(4036), - [sym_true] = ACTIONS(4034), - [sym_false] = ACTIONS(4034), - [anon_sym_NULL] = ACTIONS(4034), - [anon_sym_nullptr] = ACTIONS(4034), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4034), - [anon_sym_decltype] = ACTIONS(4034), - [anon_sym_explicit] = ACTIONS(4034), - [anon_sym_template] = ACTIONS(4034), - [anon_sym_operator] = ACTIONS(4034), - [anon_sym_try] = ACTIONS(4034), - [anon_sym_delete] = ACTIONS(4034), - [anon_sym_throw] = ACTIONS(4034), - [anon_sym_namespace] = ACTIONS(4034), - [anon_sym_static_assert] = ACTIONS(4034), - [anon_sym_concept] = ACTIONS(4034), - [anon_sym_co_return] = ACTIONS(4034), - [anon_sym_co_yield] = ACTIONS(4034), - [anon_sym_R_DQUOTE] = ACTIONS(4036), - [anon_sym_LR_DQUOTE] = ACTIONS(4036), - [anon_sym_uR_DQUOTE] = ACTIONS(4036), - [anon_sym_UR_DQUOTE] = ACTIONS(4036), - [anon_sym_u8R_DQUOTE] = ACTIONS(4036), - [anon_sym_co_await] = ACTIONS(4034), - [anon_sym_new] = ACTIONS(4034), - [anon_sym_requires] = ACTIONS(4034), - [anon_sym_CARET_CARET] = ACTIONS(4036), - [anon_sym_LBRACK_COLON] = ACTIONS(4036), - [sym_this] = ACTIONS(4034), - }, - [STATE(827)] = { - [sym_identifier] = ACTIONS(4119), - [aux_sym_preproc_include_token1] = ACTIONS(4119), - [aux_sym_preproc_def_token1] = ACTIONS(4119), - [aux_sym_preproc_if_token1] = ACTIONS(4119), - [aux_sym_preproc_if_token2] = ACTIONS(4119), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4119), - [sym_preproc_directive] = ACTIONS(4119), - [anon_sym_LPAREN2] = ACTIONS(4121), - [anon_sym_BANG] = ACTIONS(4121), - [anon_sym_TILDE] = ACTIONS(4121), - [anon_sym_DASH] = ACTIONS(4119), - [anon_sym_PLUS] = ACTIONS(4119), - [anon_sym_STAR] = ACTIONS(4121), - [anon_sym_AMP_AMP] = ACTIONS(4121), - [anon_sym_AMP] = ACTIONS(4119), - [anon_sym_SEMI] = ACTIONS(4121), - [anon_sym___extension__] = ACTIONS(4119), - [anon_sym_typedef] = ACTIONS(4119), - [anon_sym_virtual] = ACTIONS(4119), - [anon_sym_extern] = ACTIONS(4119), - [anon_sym___attribute__] = ACTIONS(4119), - [anon_sym___attribute] = ACTIONS(4119), - [anon_sym_using] = ACTIONS(4119), - [anon_sym_COLON_COLON] = ACTIONS(4121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4121), - [anon_sym___declspec] = ACTIONS(4119), - [anon_sym___based] = ACTIONS(4119), - [anon_sym___cdecl] = ACTIONS(4119), - [anon_sym___clrcall] = ACTIONS(4119), - [anon_sym___stdcall] = ACTIONS(4119), - [anon_sym___fastcall] = ACTIONS(4119), - [anon_sym___thiscall] = ACTIONS(4119), - [anon_sym___vectorcall] = ACTIONS(4119), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_signed] = ACTIONS(4119), - [anon_sym_unsigned] = ACTIONS(4119), - [anon_sym_long] = ACTIONS(4119), - [anon_sym_short] = ACTIONS(4119), - [anon_sym_LBRACK] = ACTIONS(4119), - [anon_sym_static] = ACTIONS(4119), - [anon_sym_register] = ACTIONS(4119), - [anon_sym_inline] = ACTIONS(4119), - [anon_sym___inline] = ACTIONS(4119), - [anon_sym___inline__] = ACTIONS(4119), - [anon_sym___forceinline] = ACTIONS(4119), - [anon_sym_thread_local] = ACTIONS(4119), - [anon_sym___thread] = ACTIONS(4119), - [anon_sym_const] = ACTIONS(4119), - [anon_sym_constexpr] = ACTIONS(4119), - [anon_sym_volatile] = ACTIONS(4119), - [anon_sym_restrict] = ACTIONS(4119), - [anon_sym___restrict__] = ACTIONS(4119), - [anon_sym__Atomic] = ACTIONS(4119), - [anon_sym__Noreturn] = ACTIONS(4119), - [anon_sym_noreturn] = ACTIONS(4119), - [anon_sym__Nonnull] = ACTIONS(4119), - [anon_sym_mutable] = ACTIONS(4119), - [anon_sym_constinit] = ACTIONS(4119), - [anon_sym_consteval] = ACTIONS(4119), - [anon_sym_alignas] = ACTIONS(4119), - [anon_sym__Alignas] = ACTIONS(4119), - [sym_primitive_type] = ACTIONS(4119), - [anon_sym_enum] = ACTIONS(4119), - [anon_sym_class] = ACTIONS(4119), - [anon_sym_struct] = ACTIONS(4119), - [anon_sym_union] = ACTIONS(4119), - [anon_sym_if] = ACTIONS(4119), - [anon_sym_switch] = ACTIONS(4119), - [anon_sym_case] = ACTIONS(4119), - [anon_sym_default] = ACTIONS(4119), - [anon_sym_while] = ACTIONS(4119), - [anon_sym_do] = ACTIONS(4119), - [anon_sym_for] = ACTIONS(4119), - [anon_sym_return] = ACTIONS(4119), - [anon_sym_break] = ACTIONS(4119), - [anon_sym_continue] = ACTIONS(4119), - [anon_sym_goto] = ACTIONS(4119), - [anon_sym___try] = ACTIONS(4119), - [anon_sym___leave] = ACTIONS(4119), - [anon_sym_not] = ACTIONS(4119), - [anon_sym_compl] = ACTIONS(4119), - [anon_sym_DASH_DASH] = ACTIONS(4121), - [anon_sym_PLUS_PLUS] = ACTIONS(4121), - [anon_sym_sizeof] = ACTIONS(4119), - [anon_sym___alignof__] = ACTIONS(4119), - [anon_sym___alignof] = ACTIONS(4119), - [anon_sym__alignof] = ACTIONS(4119), - [anon_sym_alignof] = ACTIONS(4119), - [anon_sym__Alignof] = ACTIONS(4119), - [anon_sym_offsetof] = ACTIONS(4119), - [anon_sym__Generic] = ACTIONS(4119), - [anon_sym_typename] = ACTIONS(4119), - [anon_sym_asm] = ACTIONS(4119), - [anon_sym___asm__] = ACTIONS(4119), - [anon_sym___asm] = ACTIONS(4119), - [sym_number_literal] = ACTIONS(4121), - [anon_sym_L_SQUOTE] = ACTIONS(4121), - [anon_sym_u_SQUOTE] = ACTIONS(4121), - [anon_sym_U_SQUOTE] = ACTIONS(4121), - [anon_sym_u8_SQUOTE] = ACTIONS(4121), - [anon_sym_SQUOTE] = ACTIONS(4121), - [anon_sym_L_DQUOTE] = ACTIONS(4121), - [anon_sym_u_DQUOTE] = ACTIONS(4121), - [anon_sym_U_DQUOTE] = ACTIONS(4121), - [anon_sym_u8_DQUOTE] = ACTIONS(4121), - [anon_sym_DQUOTE] = ACTIONS(4121), - [sym_true] = ACTIONS(4119), - [sym_false] = ACTIONS(4119), - [anon_sym_NULL] = ACTIONS(4119), - [anon_sym_nullptr] = ACTIONS(4119), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4119), - [anon_sym_decltype] = ACTIONS(4119), - [anon_sym_explicit] = ACTIONS(4119), - [anon_sym_template] = ACTIONS(4119), - [anon_sym_operator] = ACTIONS(4119), - [anon_sym_try] = ACTIONS(4119), - [anon_sym_delete] = ACTIONS(4119), - [anon_sym_throw] = ACTIONS(4119), - [anon_sym_namespace] = ACTIONS(4119), - [anon_sym_static_assert] = ACTIONS(4119), - [anon_sym_concept] = ACTIONS(4119), - [anon_sym_co_return] = ACTIONS(4119), - [anon_sym_co_yield] = ACTIONS(4119), - [anon_sym_R_DQUOTE] = ACTIONS(4121), - [anon_sym_LR_DQUOTE] = ACTIONS(4121), - [anon_sym_uR_DQUOTE] = ACTIONS(4121), - [anon_sym_UR_DQUOTE] = ACTIONS(4121), - [anon_sym_u8R_DQUOTE] = ACTIONS(4121), - [anon_sym_co_await] = ACTIONS(4119), - [anon_sym_new] = ACTIONS(4119), - [anon_sym_requires] = ACTIONS(4119), - [anon_sym_CARET_CARET] = ACTIONS(4121), - [anon_sym_LBRACK_COLON] = ACTIONS(4121), - [sym_this] = ACTIONS(4119), - }, - [STATE(828)] = { - [sym_identifier] = ACTIONS(3994), - [aux_sym_preproc_include_token1] = ACTIONS(3994), - [aux_sym_preproc_def_token1] = ACTIONS(3994), - [aux_sym_preproc_if_token1] = ACTIONS(3994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3994), - [sym_preproc_directive] = ACTIONS(3994), - [anon_sym_LPAREN2] = ACTIONS(3996), - [anon_sym_BANG] = ACTIONS(3996), - [anon_sym_TILDE] = ACTIONS(3996), - [anon_sym_DASH] = ACTIONS(3994), - [anon_sym_PLUS] = ACTIONS(3994), - [anon_sym_STAR] = ACTIONS(3996), - [anon_sym_AMP_AMP] = ACTIONS(3996), - [anon_sym_AMP] = ACTIONS(3994), - [anon_sym_SEMI] = ACTIONS(3996), - [anon_sym___extension__] = ACTIONS(3994), - [anon_sym_typedef] = ACTIONS(3994), - [anon_sym_virtual] = ACTIONS(3994), - [anon_sym_extern] = ACTIONS(3994), - [anon_sym___attribute__] = ACTIONS(3994), - [anon_sym___attribute] = ACTIONS(3994), - [anon_sym_using] = ACTIONS(3994), - [anon_sym_COLON_COLON] = ACTIONS(3996), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3996), - [anon_sym___declspec] = ACTIONS(3994), - [anon_sym___based] = ACTIONS(3994), - [anon_sym___cdecl] = ACTIONS(3994), - [anon_sym___clrcall] = ACTIONS(3994), - [anon_sym___stdcall] = ACTIONS(3994), - [anon_sym___fastcall] = ACTIONS(3994), - [anon_sym___thiscall] = ACTIONS(3994), - [anon_sym___vectorcall] = ACTIONS(3994), - [anon_sym_LBRACE] = ACTIONS(3996), - [anon_sym_RBRACE] = ACTIONS(3996), - [anon_sym_signed] = ACTIONS(3994), - [anon_sym_unsigned] = ACTIONS(3994), - [anon_sym_long] = ACTIONS(3994), - [anon_sym_short] = ACTIONS(3994), - [anon_sym_LBRACK] = ACTIONS(3994), - [anon_sym_static] = ACTIONS(3994), - [anon_sym_register] = ACTIONS(3994), - [anon_sym_inline] = ACTIONS(3994), - [anon_sym___inline] = ACTIONS(3994), - [anon_sym___inline__] = ACTIONS(3994), - [anon_sym___forceinline] = ACTIONS(3994), - [anon_sym_thread_local] = ACTIONS(3994), - [anon_sym___thread] = ACTIONS(3994), - [anon_sym_const] = ACTIONS(3994), - [anon_sym_constexpr] = ACTIONS(3994), - [anon_sym_volatile] = ACTIONS(3994), - [anon_sym_restrict] = ACTIONS(3994), - [anon_sym___restrict__] = ACTIONS(3994), - [anon_sym__Atomic] = ACTIONS(3994), - [anon_sym__Noreturn] = ACTIONS(3994), - [anon_sym_noreturn] = ACTIONS(3994), - [anon_sym__Nonnull] = ACTIONS(3994), - [anon_sym_mutable] = ACTIONS(3994), - [anon_sym_constinit] = ACTIONS(3994), - [anon_sym_consteval] = ACTIONS(3994), - [anon_sym_alignas] = ACTIONS(3994), - [anon_sym__Alignas] = ACTIONS(3994), - [sym_primitive_type] = ACTIONS(3994), - [anon_sym_enum] = ACTIONS(3994), - [anon_sym_class] = ACTIONS(3994), - [anon_sym_struct] = ACTIONS(3994), - [anon_sym_union] = ACTIONS(3994), - [anon_sym_if] = ACTIONS(3994), - [anon_sym_switch] = ACTIONS(3994), - [anon_sym_case] = ACTIONS(3994), - [anon_sym_default] = ACTIONS(3994), - [anon_sym_while] = ACTIONS(3994), - [anon_sym_do] = ACTIONS(3994), - [anon_sym_for] = ACTIONS(3994), - [anon_sym_return] = ACTIONS(3994), - [anon_sym_break] = ACTIONS(3994), - [anon_sym_continue] = ACTIONS(3994), - [anon_sym_goto] = ACTIONS(3994), - [anon_sym___try] = ACTIONS(3994), - [anon_sym___leave] = ACTIONS(3994), - [anon_sym_not] = ACTIONS(3994), - [anon_sym_compl] = ACTIONS(3994), - [anon_sym_DASH_DASH] = ACTIONS(3996), - [anon_sym_PLUS_PLUS] = ACTIONS(3996), - [anon_sym_sizeof] = ACTIONS(3994), - [anon_sym___alignof__] = ACTIONS(3994), - [anon_sym___alignof] = ACTIONS(3994), - [anon_sym__alignof] = ACTIONS(3994), - [anon_sym_alignof] = ACTIONS(3994), - [anon_sym__Alignof] = ACTIONS(3994), - [anon_sym_offsetof] = ACTIONS(3994), - [anon_sym__Generic] = ACTIONS(3994), - [anon_sym_typename] = ACTIONS(3994), - [anon_sym_asm] = ACTIONS(3994), - [anon_sym___asm__] = ACTIONS(3994), - [anon_sym___asm] = ACTIONS(3994), - [sym_number_literal] = ACTIONS(3996), - [anon_sym_L_SQUOTE] = ACTIONS(3996), - [anon_sym_u_SQUOTE] = ACTIONS(3996), - [anon_sym_U_SQUOTE] = ACTIONS(3996), - [anon_sym_u8_SQUOTE] = ACTIONS(3996), - [anon_sym_SQUOTE] = ACTIONS(3996), - [anon_sym_L_DQUOTE] = ACTIONS(3996), - [anon_sym_u_DQUOTE] = ACTIONS(3996), - [anon_sym_U_DQUOTE] = ACTIONS(3996), - [anon_sym_u8_DQUOTE] = ACTIONS(3996), - [anon_sym_DQUOTE] = ACTIONS(3996), - [sym_true] = ACTIONS(3994), - [sym_false] = ACTIONS(3994), - [anon_sym_NULL] = ACTIONS(3994), - [anon_sym_nullptr] = ACTIONS(3994), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3994), - [anon_sym_decltype] = ACTIONS(3994), - [anon_sym_explicit] = ACTIONS(3994), - [anon_sym_template] = ACTIONS(3994), - [anon_sym_operator] = ACTIONS(3994), - [anon_sym_try] = ACTIONS(3994), - [anon_sym_delete] = ACTIONS(3994), - [anon_sym_throw] = ACTIONS(3994), - [anon_sym_namespace] = ACTIONS(3994), - [anon_sym_static_assert] = ACTIONS(3994), - [anon_sym_concept] = ACTIONS(3994), - [anon_sym_co_return] = ACTIONS(3994), - [anon_sym_co_yield] = ACTIONS(3994), - [anon_sym_R_DQUOTE] = ACTIONS(3996), - [anon_sym_LR_DQUOTE] = ACTIONS(3996), - [anon_sym_uR_DQUOTE] = ACTIONS(3996), - [anon_sym_UR_DQUOTE] = ACTIONS(3996), - [anon_sym_u8R_DQUOTE] = ACTIONS(3996), - [anon_sym_co_await] = ACTIONS(3994), - [anon_sym_new] = ACTIONS(3994), - [anon_sym_requires] = ACTIONS(3994), - [anon_sym_CARET_CARET] = ACTIONS(3996), - [anon_sym_LBRACK_COLON] = ACTIONS(3996), - [sym_this] = ACTIONS(3994), - }, - [STATE(829)] = { - [sym_identifier] = ACTIONS(4038), - [aux_sym_preproc_include_token1] = ACTIONS(4038), - [aux_sym_preproc_def_token1] = ACTIONS(4038), - [aux_sym_preproc_if_token1] = ACTIONS(4038), - [aux_sym_preproc_if_token2] = ACTIONS(4038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4038), - [sym_preproc_directive] = ACTIONS(4038), - [anon_sym_LPAREN2] = ACTIONS(4040), - [anon_sym_BANG] = ACTIONS(4040), - [anon_sym_TILDE] = ACTIONS(4040), - [anon_sym_DASH] = ACTIONS(4038), - [anon_sym_PLUS] = ACTIONS(4038), - [anon_sym_STAR] = ACTIONS(4040), - [anon_sym_AMP_AMP] = ACTIONS(4040), - [anon_sym_AMP] = ACTIONS(4038), - [anon_sym_SEMI] = ACTIONS(4040), - [anon_sym___extension__] = ACTIONS(4038), - [anon_sym_typedef] = ACTIONS(4038), - [anon_sym_virtual] = ACTIONS(4038), - [anon_sym_extern] = ACTIONS(4038), - [anon_sym___attribute__] = ACTIONS(4038), - [anon_sym___attribute] = ACTIONS(4038), - [anon_sym_using] = ACTIONS(4038), - [anon_sym_COLON_COLON] = ACTIONS(4040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4040), - [anon_sym___declspec] = ACTIONS(4038), - [anon_sym___based] = ACTIONS(4038), - [anon_sym___cdecl] = ACTIONS(4038), - [anon_sym___clrcall] = ACTIONS(4038), - [anon_sym___stdcall] = ACTIONS(4038), - [anon_sym___fastcall] = ACTIONS(4038), - [anon_sym___thiscall] = ACTIONS(4038), - [anon_sym___vectorcall] = ACTIONS(4038), - [anon_sym_LBRACE] = ACTIONS(4040), - [anon_sym_signed] = ACTIONS(4038), - [anon_sym_unsigned] = ACTIONS(4038), - [anon_sym_long] = ACTIONS(4038), - [anon_sym_short] = ACTIONS(4038), - [anon_sym_LBRACK] = ACTIONS(4038), - [anon_sym_static] = ACTIONS(4038), - [anon_sym_register] = ACTIONS(4038), - [anon_sym_inline] = ACTIONS(4038), - [anon_sym___inline] = ACTIONS(4038), - [anon_sym___inline__] = ACTIONS(4038), - [anon_sym___forceinline] = ACTIONS(4038), - [anon_sym_thread_local] = ACTIONS(4038), - [anon_sym___thread] = ACTIONS(4038), - [anon_sym_const] = ACTIONS(4038), - [anon_sym_constexpr] = ACTIONS(4038), - [anon_sym_volatile] = ACTIONS(4038), - [anon_sym_restrict] = ACTIONS(4038), - [anon_sym___restrict__] = ACTIONS(4038), - [anon_sym__Atomic] = ACTIONS(4038), - [anon_sym__Noreturn] = ACTIONS(4038), - [anon_sym_noreturn] = ACTIONS(4038), - [anon_sym__Nonnull] = ACTIONS(4038), - [anon_sym_mutable] = ACTIONS(4038), - [anon_sym_constinit] = ACTIONS(4038), - [anon_sym_consteval] = ACTIONS(4038), - [anon_sym_alignas] = ACTIONS(4038), - [anon_sym__Alignas] = ACTIONS(4038), - [sym_primitive_type] = ACTIONS(4038), - [anon_sym_enum] = ACTIONS(4038), - [anon_sym_class] = ACTIONS(4038), - [anon_sym_struct] = ACTIONS(4038), - [anon_sym_union] = ACTIONS(4038), - [anon_sym_if] = ACTIONS(4038), - [anon_sym_switch] = ACTIONS(4038), - [anon_sym_case] = ACTIONS(4038), - [anon_sym_default] = ACTIONS(4038), - [anon_sym_while] = ACTIONS(4038), - [anon_sym_do] = ACTIONS(4038), - [anon_sym_for] = ACTIONS(4038), - [anon_sym_return] = ACTIONS(4038), - [anon_sym_break] = ACTIONS(4038), - [anon_sym_continue] = ACTIONS(4038), - [anon_sym_goto] = ACTIONS(4038), - [anon_sym___try] = ACTIONS(4038), - [anon_sym___leave] = ACTIONS(4038), - [anon_sym_not] = ACTIONS(4038), - [anon_sym_compl] = ACTIONS(4038), - [anon_sym_DASH_DASH] = ACTIONS(4040), - [anon_sym_PLUS_PLUS] = ACTIONS(4040), - [anon_sym_sizeof] = ACTIONS(4038), - [anon_sym___alignof__] = ACTIONS(4038), - [anon_sym___alignof] = ACTIONS(4038), - [anon_sym__alignof] = ACTIONS(4038), - [anon_sym_alignof] = ACTIONS(4038), - [anon_sym__Alignof] = ACTIONS(4038), - [anon_sym_offsetof] = ACTIONS(4038), - [anon_sym__Generic] = ACTIONS(4038), - [anon_sym_typename] = ACTIONS(4038), - [anon_sym_asm] = ACTIONS(4038), - [anon_sym___asm__] = ACTIONS(4038), - [anon_sym___asm] = ACTIONS(4038), - [sym_number_literal] = ACTIONS(4040), - [anon_sym_L_SQUOTE] = ACTIONS(4040), - [anon_sym_u_SQUOTE] = ACTIONS(4040), - [anon_sym_U_SQUOTE] = ACTIONS(4040), - [anon_sym_u8_SQUOTE] = ACTIONS(4040), - [anon_sym_SQUOTE] = ACTIONS(4040), - [anon_sym_L_DQUOTE] = ACTIONS(4040), - [anon_sym_u_DQUOTE] = ACTIONS(4040), - [anon_sym_U_DQUOTE] = ACTIONS(4040), - [anon_sym_u8_DQUOTE] = ACTIONS(4040), - [anon_sym_DQUOTE] = ACTIONS(4040), - [sym_true] = ACTIONS(4038), - [sym_false] = ACTIONS(4038), - [anon_sym_NULL] = ACTIONS(4038), - [anon_sym_nullptr] = ACTIONS(4038), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4038), - [anon_sym_decltype] = ACTIONS(4038), - [anon_sym_explicit] = ACTIONS(4038), - [anon_sym_template] = ACTIONS(4038), - [anon_sym_operator] = ACTIONS(4038), - [anon_sym_try] = ACTIONS(4038), - [anon_sym_delete] = ACTIONS(4038), - [anon_sym_throw] = ACTIONS(4038), - [anon_sym_namespace] = ACTIONS(4038), - [anon_sym_static_assert] = ACTIONS(4038), - [anon_sym_concept] = ACTIONS(4038), - [anon_sym_co_return] = ACTIONS(4038), - [anon_sym_co_yield] = ACTIONS(4038), - [anon_sym_R_DQUOTE] = ACTIONS(4040), - [anon_sym_LR_DQUOTE] = ACTIONS(4040), - [anon_sym_uR_DQUOTE] = ACTIONS(4040), - [anon_sym_UR_DQUOTE] = ACTIONS(4040), - [anon_sym_u8R_DQUOTE] = ACTIONS(4040), - [anon_sym_co_await] = ACTIONS(4038), - [anon_sym_new] = ACTIONS(4038), - [anon_sym_requires] = ACTIONS(4038), - [anon_sym_CARET_CARET] = ACTIONS(4040), - [anon_sym_LBRACK_COLON] = ACTIONS(4040), - [sym_this] = ACTIONS(4038), - }, - [STATE(830)] = { - [sym_identifier] = ACTIONS(3898), - [aux_sym_preproc_include_token1] = ACTIONS(3898), - [aux_sym_preproc_def_token1] = ACTIONS(3898), - [aux_sym_preproc_if_token1] = ACTIONS(3898), - [aux_sym_preproc_if_token2] = ACTIONS(3898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3898), - [sym_preproc_directive] = ACTIONS(3898), - [anon_sym_LPAREN2] = ACTIONS(3900), - [anon_sym_BANG] = ACTIONS(3900), - [anon_sym_TILDE] = ACTIONS(3900), - [anon_sym_DASH] = ACTIONS(3898), - [anon_sym_PLUS] = ACTIONS(3898), - [anon_sym_STAR] = ACTIONS(3900), - [anon_sym_AMP_AMP] = ACTIONS(3900), - [anon_sym_AMP] = ACTIONS(3898), - [anon_sym_SEMI] = ACTIONS(3900), - [anon_sym___extension__] = ACTIONS(3898), - [anon_sym_typedef] = ACTIONS(3898), - [anon_sym_virtual] = ACTIONS(3898), - [anon_sym_extern] = ACTIONS(3898), - [anon_sym___attribute__] = ACTIONS(3898), - [anon_sym___attribute] = ACTIONS(3898), - [anon_sym_using] = ACTIONS(3898), - [anon_sym_COLON_COLON] = ACTIONS(3900), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3900), - [anon_sym___declspec] = ACTIONS(3898), - [anon_sym___based] = ACTIONS(3898), - [anon_sym___cdecl] = ACTIONS(3898), - [anon_sym___clrcall] = ACTIONS(3898), - [anon_sym___stdcall] = ACTIONS(3898), - [anon_sym___fastcall] = ACTIONS(3898), - [anon_sym___thiscall] = ACTIONS(3898), - [anon_sym___vectorcall] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(3900), - [anon_sym_signed] = ACTIONS(3898), - [anon_sym_unsigned] = ACTIONS(3898), - [anon_sym_long] = ACTIONS(3898), - [anon_sym_short] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(3898), - [anon_sym_static] = ACTIONS(3898), - [anon_sym_register] = ACTIONS(3898), - [anon_sym_inline] = ACTIONS(3898), - [anon_sym___inline] = ACTIONS(3898), - [anon_sym___inline__] = ACTIONS(3898), - [anon_sym___forceinline] = ACTIONS(3898), - [anon_sym_thread_local] = ACTIONS(3898), - [anon_sym___thread] = ACTIONS(3898), - [anon_sym_const] = ACTIONS(3898), - [anon_sym_constexpr] = ACTIONS(3898), - [anon_sym_volatile] = ACTIONS(3898), - [anon_sym_restrict] = ACTIONS(3898), - [anon_sym___restrict__] = ACTIONS(3898), - [anon_sym__Atomic] = ACTIONS(3898), - [anon_sym__Noreturn] = ACTIONS(3898), - [anon_sym_noreturn] = ACTIONS(3898), - [anon_sym__Nonnull] = ACTIONS(3898), - [anon_sym_mutable] = ACTIONS(3898), - [anon_sym_constinit] = ACTIONS(3898), - [anon_sym_consteval] = ACTIONS(3898), - [anon_sym_alignas] = ACTIONS(3898), - [anon_sym__Alignas] = ACTIONS(3898), - [sym_primitive_type] = ACTIONS(3898), - [anon_sym_enum] = ACTIONS(3898), - [anon_sym_class] = ACTIONS(3898), - [anon_sym_struct] = ACTIONS(3898), - [anon_sym_union] = ACTIONS(3898), - [anon_sym_if] = ACTIONS(3898), - [anon_sym_switch] = ACTIONS(3898), - [anon_sym_case] = ACTIONS(3898), - [anon_sym_default] = ACTIONS(3898), - [anon_sym_while] = ACTIONS(3898), - [anon_sym_do] = ACTIONS(3898), - [anon_sym_for] = ACTIONS(3898), - [anon_sym_return] = ACTIONS(3898), - [anon_sym_break] = ACTIONS(3898), - [anon_sym_continue] = ACTIONS(3898), - [anon_sym_goto] = ACTIONS(3898), - [anon_sym___try] = ACTIONS(3898), - [anon_sym___leave] = ACTIONS(3898), - [anon_sym_not] = ACTIONS(3898), - [anon_sym_compl] = ACTIONS(3898), - [anon_sym_DASH_DASH] = ACTIONS(3900), - [anon_sym_PLUS_PLUS] = ACTIONS(3900), - [anon_sym_sizeof] = ACTIONS(3898), - [anon_sym___alignof__] = ACTIONS(3898), - [anon_sym___alignof] = ACTIONS(3898), - [anon_sym__alignof] = ACTIONS(3898), - [anon_sym_alignof] = ACTIONS(3898), - [anon_sym__Alignof] = ACTIONS(3898), - [anon_sym_offsetof] = ACTIONS(3898), - [anon_sym__Generic] = ACTIONS(3898), - [anon_sym_typename] = ACTIONS(3898), - [anon_sym_asm] = ACTIONS(3898), - [anon_sym___asm__] = ACTIONS(3898), - [anon_sym___asm] = ACTIONS(3898), - [sym_number_literal] = ACTIONS(3900), - [anon_sym_L_SQUOTE] = ACTIONS(3900), - [anon_sym_u_SQUOTE] = ACTIONS(3900), - [anon_sym_U_SQUOTE] = ACTIONS(3900), - [anon_sym_u8_SQUOTE] = ACTIONS(3900), - [anon_sym_SQUOTE] = ACTIONS(3900), - [anon_sym_L_DQUOTE] = ACTIONS(3900), - [anon_sym_u_DQUOTE] = ACTIONS(3900), - [anon_sym_U_DQUOTE] = ACTIONS(3900), - [anon_sym_u8_DQUOTE] = ACTIONS(3900), - [anon_sym_DQUOTE] = ACTIONS(3900), - [sym_true] = ACTIONS(3898), - [sym_false] = ACTIONS(3898), - [anon_sym_NULL] = ACTIONS(3898), - [anon_sym_nullptr] = ACTIONS(3898), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3898), - [anon_sym_decltype] = ACTIONS(3898), - [anon_sym_explicit] = ACTIONS(3898), - [anon_sym_template] = ACTIONS(3898), - [anon_sym_operator] = ACTIONS(3898), - [anon_sym_try] = ACTIONS(3898), - [anon_sym_delete] = ACTIONS(3898), - [anon_sym_throw] = ACTIONS(3898), - [anon_sym_namespace] = ACTIONS(3898), - [anon_sym_static_assert] = ACTIONS(3898), - [anon_sym_concept] = ACTIONS(3898), - [anon_sym_co_return] = ACTIONS(3898), - [anon_sym_co_yield] = ACTIONS(3898), - [anon_sym_R_DQUOTE] = ACTIONS(3900), - [anon_sym_LR_DQUOTE] = ACTIONS(3900), - [anon_sym_uR_DQUOTE] = ACTIONS(3900), - [anon_sym_UR_DQUOTE] = ACTIONS(3900), - [anon_sym_u8R_DQUOTE] = ACTIONS(3900), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3898), - [anon_sym_requires] = ACTIONS(3898), - [anon_sym_CARET_CARET] = ACTIONS(3900), - [anon_sym_LBRACK_COLON] = ACTIONS(3900), - [sym_this] = ACTIONS(3898), - }, - [STATE(831)] = { - [sym_identifier] = ACTIONS(3998), - [aux_sym_preproc_include_token1] = ACTIONS(3998), - [aux_sym_preproc_def_token1] = ACTIONS(3998), - [aux_sym_preproc_if_token1] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), - [sym_preproc_directive] = ACTIONS(3998), - [anon_sym_LPAREN2] = ACTIONS(4000), - [anon_sym_BANG] = ACTIONS(4000), - [anon_sym_TILDE] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(3998), - [anon_sym_PLUS] = ACTIONS(3998), - [anon_sym_STAR] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym___extension__] = ACTIONS(3998), - [anon_sym_typedef] = ACTIONS(3998), - [anon_sym_virtual] = ACTIONS(3998), - [anon_sym_extern] = ACTIONS(3998), - [anon_sym___attribute__] = ACTIONS(3998), - [anon_sym___attribute] = ACTIONS(3998), - [anon_sym_using] = ACTIONS(3998), - [anon_sym_COLON_COLON] = ACTIONS(4000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), - [anon_sym___declspec] = ACTIONS(3998), - [anon_sym___based] = ACTIONS(3998), - [anon_sym___cdecl] = ACTIONS(3998), - [anon_sym___clrcall] = ACTIONS(3998), - [anon_sym___stdcall] = ACTIONS(3998), - [anon_sym___fastcall] = ACTIONS(3998), - [anon_sym___thiscall] = ACTIONS(3998), - [anon_sym___vectorcall] = ACTIONS(3998), - [anon_sym_LBRACE] = ACTIONS(4000), - [anon_sym_RBRACE] = ACTIONS(4000), - [anon_sym_signed] = ACTIONS(3998), - [anon_sym_unsigned] = ACTIONS(3998), - [anon_sym_long] = ACTIONS(3998), - [anon_sym_short] = ACTIONS(3998), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_static] = ACTIONS(3998), - [anon_sym_register] = ACTIONS(3998), - [anon_sym_inline] = ACTIONS(3998), - [anon_sym___inline] = ACTIONS(3998), - [anon_sym___inline__] = ACTIONS(3998), - [anon_sym___forceinline] = ACTIONS(3998), - [anon_sym_thread_local] = ACTIONS(3998), - [anon_sym___thread] = ACTIONS(3998), - [anon_sym_const] = ACTIONS(3998), - [anon_sym_constexpr] = ACTIONS(3998), - [anon_sym_volatile] = ACTIONS(3998), - [anon_sym_restrict] = ACTIONS(3998), - [anon_sym___restrict__] = ACTIONS(3998), - [anon_sym__Atomic] = ACTIONS(3998), - [anon_sym__Noreturn] = ACTIONS(3998), - [anon_sym_noreturn] = ACTIONS(3998), - [anon_sym__Nonnull] = ACTIONS(3998), - [anon_sym_mutable] = ACTIONS(3998), - [anon_sym_constinit] = ACTIONS(3998), - [anon_sym_consteval] = ACTIONS(3998), - [anon_sym_alignas] = ACTIONS(3998), - [anon_sym__Alignas] = ACTIONS(3998), - [sym_primitive_type] = ACTIONS(3998), - [anon_sym_enum] = ACTIONS(3998), - [anon_sym_class] = ACTIONS(3998), - [anon_sym_struct] = ACTIONS(3998), - [anon_sym_union] = ACTIONS(3998), - [anon_sym_if] = ACTIONS(3998), - [anon_sym_switch] = ACTIONS(3998), - [anon_sym_case] = ACTIONS(3998), - [anon_sym_default] = ACTIONS(3998), - [anon_sym_while] = ACTIONS(3998), - [anon_sym_do] = ACTIONS(3998), - [anon_sym_for] = ACTIONS(3998), - [anon_sym_return] = ACTIONS(3998), - [anon_sym_break] = ACTIONS(3998), - [anon_sym_continue] = ACTIONS(3998), - [anon_sym_goto] = ACTIONS(3998), - [anon_sym___try] = ACTIONS(3998), - [anon_sym___leave] = ACTIONS(3998), - [anon_sym_not] = ACTIONS(3998), - [anon_sym_compl] = ACTIONS(3998), - [anon_sym_DASH_DASH] = ACTIONS(4000), - [anon_sym_PLUS_PLUS] = ACTIONS(4000), - [anon_sym_sizeof] = ACTIONS(3998), - [anon_sym___alignof__] = ACTIONS(3998), - [anon_sym___alignof] = ACTIONS(3998), - [anon_sym__alignof] = ACTIONS(3998), - [anon_sym_alignof] = ACTIONS(3998), - [anon_sym__Alignof] = ACTIONS(3998), - [anon_sym_offsetof] = ACTIONS(3998), - [anon_sym__Generic] = ACTIONS(3998), - [anon_sym_typename] = ACTIONS(3998), - [anon_sym_asm] = ACTIONS(3998), - [anon_sym___asm__] = ACTIONS(3998), - [anon_sym___asm] = ACTIONS(3998), - [sym_number_literal] = ACTIONS(4000), - [anon_sym_L_SQUOTE] = ACTIONS(4000), - [anon_sym_u_SQUOTE] = ACTIONS(4000), - [anon_sym_U_SQUOTE] = ACTIONS(4000), - [anon_sym_u8_SQUOTE] = ACTIONS(4000), - [anon_sym_SQUOTE] = 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_true] = ACTIONS(3998), - [sym_false] = ACTIONS(3998), - [anon_sym_NULL] = ACTIONS(3998), - [anon_sym_nullptr] = ACTIONS(3998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3998), - [anon_sym_decltype] = ACTIONS(3998), - [anon_sym_explicit] = ACTIONS(3998), - [anon_sym_template] = ACTIONS(3998), - [anon_sym_operator] = ACTIONS(3998), - [anon_sym_try] = ACTIONS(3998), - [anon_sym_delete] = ACTIONS(3998), - [anon_sym_throw] = ACTIONS(3998), - [anon_sym_namespace] = ACTIONS(3998), - [anon_sym_static_assert] = ACTIONS(3998), - [anon_sym_concept] = ACTIONS(3998), - [anon_sym_co_return] = ACTIONS(3998), - [anon_sym_co_yield] = ACTIONS(3998), - [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), - [anon_sym_co_await] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_requires] = ACTIONS(3998), - [anon_sym_CARET_CARET] = ACTIONS(4000), - [anon_sym_LBRACK_COLON] = ACTIONS(4000), - [sym_this] = ACTIONS(3998), - }, - [STATE(832)] = { - [sym_identifier] = ACTIONS(3998), - [aux_sym_preproc_include_token1] = ACTIONS(3998), - [aux_sym_preproc_def_token1] = ACTIONS(3998), - [aux_sym_preproc_if_token1] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), - [sym_preproc_directive] = ACTIONS(3998), - [anon_sym_LPAREN2] = ACTIONS(4000), - [anon_sym_BANG] = ACTIONS(4000), - [anon_sym_TILDE] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(3998), - [anon_sym_PLUS] = ACTIONS(3998), - [anon_sym_STAR] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym___extension__] = ACTIONS(3998), - [anon_sym_typedef] = ACTIONS(3998), - [anon_sym_virtual] = ACTIONS(3998), - [anon_sym_extern] = ACTIONS(3998), - [anon_sym___attribute__] = ACTIONS(3998), - [anon_sym___attribute] = ACTIONS(3998), - [anon_sym_using] = ACTIONS(3998), - [anon_sym_COLON_COLON] = ACTIONS(4000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), - [anon_sym___declspec] = ACTIONS(3998), - [anon_sym___based] = ACTIONS(3998), - [anon_sym___cdecl] = ACTIONS(3998), - [anon_sym___clrcall] = ACTIONS(3998), - [anon_sym___stdcall] = ACTIONS(3998), - [anon_sym___fastcall] = ACTIONS(3998), - [anon_sym___thiscall] = ACTIONS(3998), - [anon_sym___vectorcall] = ACTIONS(3998), - [anon_sym_LBRACE] = ACTIONS(4000), - [anon_sym_RBRACE] = ACTIONS(4000), - [anon_sym_signed] = ACTIONS(3998), - [anon_sym_unsigned] = ACTIONS(3998), - [anon_sym_long] = ACTIONS(3998), - [anon_sym_short] = ACTIONS(3998), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_static] = ACTIONS(3998), - [anon_sym_register] = ACTIONS(3998), - [anon_sym_inline] = ACTIONS(3998), - [anon_sym___inline] = ACTIONS(3998), - [anon_sym___inline__] = ACTIONS(3998), - [anon_sym___forceinline] = ACTIONS(3998), - [anon_sym_thread_local] = ACTIONS(3998), - [anon_sym___thread] = ACTIONS(3998), - [anon_sym_const] = ACTIONS(3998), - [anon_sym_constexpr] = ACTIONS(3998), - [anon_sym_volatile] = ACTIONS(3998), - [anon_sym_restrict] = ACTIONS(3998), - [anon_sym___restrict__] = ACTIONS(3998), - [anon_sym__Atomic] = ACTIONS(3998), - [anon_sym__Noreturn] = ACTIONS(3998), - [anon_sym_noreturn] = ACTIONS(3998), - [anon_sym__Nonnull] = ACTIONS(3998), - [anon_sym_mutable] = ACTIONS(3998), - [anon_sym_constinit] = ACTIONS(3998), - [anon_sym_consteval] = ACTIONS(3998), - [anon_sym_alignas] = ACTIONS(3998), - [anon_sym__Alignas] = ACTIONS(3998), - [sym_primitive_type] = ACTIONS(3998), - [anon_sym_enum] = ACTIONS(3998), - [anon_sym_class] = ACTIONS(3998), - [anon_sym_struct] = ACTIONS(3998), - [anon_sym_union] = ACTIONS(3998), - [anon_sym_if] = ACTIONS(3998), - [anon_sym_switch] = ACTIONS(3998), - [anon_sym_case] = ACTIONS(3998), - [anon_sym_default] = ACTIONS(3998), - [anon_sym_while] = ACTIONS(3998), - [anon_sym_do] = ACTIONS(3998), - [anon_sym_for] = ACTIONS(3998), - [anon_sym_return] = ACTIONS(3998), - [anon_sym_break] = ACTIONS(3998), - [anon_sym_continue] = ACTIONS(3998), - [anon_sym_goto] = ACTIONS(3998), - [anon_sym___try] = ACTIONS(3998), - [anon_sym___leave] = ACTIONS(3998), - [anon_sym_not] = ACTIONS(3998), - [anon_sym_compl] = ACTIONS(3998), - [anon_sym_DASH_DASH] = ACTIONS(4000), - [anon_sym_PLUS_PLUS] = ACTIONS(4000), - [anon_sym_sizeof] = ACTIONS(3998), - [anon_sym___alignof__] = ACTIONS(3998), - [anon_sym___alignof] = ACTIONS(3998), - [anon_sym__alignof] = ACTIONS(3998), - [anon_sym_alignof] = ACTIONS(3998), - [anon_sym__Alignof] = ACTIONS(3998), - [anon_sym_offsetof] = ACTIONS(3998), - [anon_sym__Generic] = ACTIONS(3998), - [anon_sym_typename] = ACTIONS(3998), - [anon_sym_asm] = ACTIONS(3998), - [anon_sym___asm__] = ACTIONS(3998), - [anon_sym___asm] = ACTIONS(3998), - [sym_number_literal] = ACTIONS(4000), - [anon_sym_L_SQUOTE] = ACTIONS(4000), - [anon_sym_u_SQUOTE] = ACTIONS(4000), - [anon_sym_U_SQUOTE] = ACTIONS(4000), - [anon_sym_u8_SQUOTE] = ACTIONS(4000), - [anon_sym_SQUOTE] = 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_true] = ACTIONS(3998), - [sym_false] = ACTIONS(3998), - [anon_sym_NULL] = ACTIONS(3998), - [anon_sym_nullptr] = ACTIONS(3998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3998), - [anon_sym_decltype] = ACTIONS(3998), - [anon_sym_explicit] = ACTIONS(3998), - [anon_sym_template] = ACTIONS(3998), - [anon_sym_operator] = ACTIONS(3998), - [anon_sym_try] = ACTIONS(3998), - [anon_sym_delete] = ACTIONS(3998), - [anon_sym_throw] = ACTIONS(3998), - [anon_sym_namespace] = ACTIONS(3998), - [anon_sym_static_assert] = ACTIONS(3998), - [anon_sym_concept] = ACTIONS(3998), - [anon_sym_co_return] = ACTIONS(3998), - [anon_sym_co_yield] = ACTIONS(3998), - [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), - [anon_sym_co_await] = ACTIONS(3998), - [anon_sym_new] = ACTIONS(3998), - [anon_sym_requires] = ACTIONS(3998), - [anon_sym_CARET_CARET] = ACTIONS(4000), - [anon_sym_LBRACK_COLON] = ACTIONS(4000), - [sym_this] = ACTIONS(3998), - }, - [STATE(833)] = { + [STATE(689)] = { [sym_identifier] = ACTIONS(4196), [aux_sym_preproc_include_token1] = ACTIONS(4196), [aux_sym_preproc_def_token1] = ACTIONS(4196), [aux_sym_preproc_if_token1] = ACTIONS(4196), + [aux_sym_preproc_if_token2] = ACTIONS(4196), [aux_sym_preproc_ifdef_token1] = ACTIONS(4196), [aux_sym_preproc_ifdef_token2] = ACTIONS(4196), [sym_preproc_directive] = ACTIONS(4196), @@ -172168,7 +158403,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(4196), [anon_sym___vectorcall] = ACTIONS(4196), [anon_sym_LBRACE] = ACTIONS(4198), - [anon_sym_RBRACE] = ACTIONS(4198), [anon_sym_signed] = ACTIONS(4196), [anon_sym_unsigned] = ACTIONS(4196), [anon_sym_long] = ACTIONS(4196), @@ -172249,6 +158483,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4196), [anon_sym_decltype] = ACTIONS(4196), [anon_sym_explicit] = ACTIONS(4196), + [anon_sym_export] = ACTIONS(4196), + [anon_sym_module] = ACTIONS(4196), + [anon_sym_import] = ACTIONS(4196), [anon_sym_template] = ACTIONS(4196), [anon_sym_operator] = ACTIONS(4196), [anon_sym_try] = ACTIONS(4196), @@ -172271,1801 +158508,4378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4198), [sym_this] = ACTIONS(4196), }, - [STATE(834)] = { - [sym_identifier] = ACTIONS(4134), - [aux_sym_preproc_include_token1] = ACTIONS(4134), - [aux_sym_preproc_def_token1] = ACTIONS(4134), - [aux_sym_preproc_if_token1] = ACTIONS(4134), - [aux_sym_preproc_if_token2] = ACTIONS(4134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4134), - [sym_preproc_directive] = ACTIONS(4134), - [anon_sym_LPAREN2] = ACTIONS(4136), - [anon_sym_BANG] = ACTIONS(4136), - [anon_sym_TILDE] = ACTIONS(4136), - [anon_sym_DASH] = ACTIONS(4134), - [anon_sym_PLUS] = ACTIONS(4134), - [anon_sym_STAR] = ACTIONS(4136), - [anon_sym_AMP_AMP] = ACTIONS(4136), - [anon_sym_AMP] = ACTIONS(4134), - [anon_sym_SEMI] = ACTIONS(4136), - [anon_sym___extension__] = ACTIONS(4134), - [anon_sym_typedef] = ACTIONS(4134), - [anon_sym_virtual] = ACTIONS(4134), - [anon_sym_extern] = ACTIONS(4134), - [anon_sym___attribute__] = ACTIONS(4134), - [anon_sym___attribute] = ACTIONS(4134), - [anon_sym_using] = ACTIONS(4134), - [anon_sym_COLON_COLON] = ACTIONS(4136), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4136), - [anon_sym___declspec] = ACTIONS(4134), - [anon_sym___based] = ACTIONS(4134), - [anon_sym___cdecl] = ACTIONS(4134), - [anon_sym___clrcall] = ACTIONS(4134), - [anon_sym___stdcall] = ACTIONS(4134), - [anon_sym___fastcall] = ACTIONS(4134), - [anon_sym___thiscall] = ACTIONS(4134), - [anon_sym___vectorcall] = ACTIONS(4134), - [anon_sym_LBRACE] = ACTIONS(4136), - [anon_sym_signed] = ACTIONS(4134), - [anon_sym_unsigned] = ACTIONS(4134), - [anon_sym_long] = ACTIONS(4134), - [anon_sym_short] = ACTIONS(4134), - [anon_sym_LBRACK] = ACTIONS(4134), - [anon_sym_static] = ACTIONS(4134), - [anon_sym_register] = ACTIONS(4134), - [anon_sym_inline] = ACTIONS(4134), - [anon_sym___inline] = ACTIONS(4134), - [anon_sym___inline__] = ACTIONS(4134), - [anon_sym___forceinline] = ACTIONS(4134), - [anon_sym_thread_local] = ACTIONS(4134), - [anon_sym___thread] = ACTIONS(4134), - [anon_sym_const] = ACTIONS(4134), - [anon_sym_constexpr] = ACTIONS(4134), - [anon_sym_volatile] = ACTIONS(4134), - [anon_sym_restrict] = ACTIONS(4134), - [anon_sym___restrict__] = ACTIONS(4134), - [anon_sym__Atomic] = ACTIONS(4134), - [anon_sym__Noreturn] = ACTIONS(4134), - [anon_sym_noreturn] = ACTIONS(4134), - [anon_sym__Nonnull] = ACTIONS(4134), - [anon_sym_mutable] = ACTIONS(4134), - [anon_sym_constinit] = ACTIONS(4134), - [anon_sym_consteval] = ACTIONS(4134), - [anon_sym_alignas] = ACTIONS(4134), - [anon_sym__Alignas] = ACTIONS(4134), - [sym_primitive_type] = ACTIONS(4134), - [anon_sym_enum] = ACTIONS(4134), - [anon_sym_class] = ACTIONS(4134), - [anon_sym_struct] = ACTIONS(4134), - [anon_sym_union] = ACTIONS(4134), - [anon_sym_if] = ACTIONS(4134), - [anon_sym_switch] = ACTIONS(4134), - [anon_sym_case] = ACTIONS(4134), - [anon_sym_default] = ACTIONS(4134), - [anon_sym_while] = ACTIONS(4134), - [anon_sym_do] = ACTIONS(4134), - [anon_sym_for] = ACTIONS(4134), - [anon_sym_return] = ACTIONS(4134), - [anon_sym_break] = ACTIONS(4134), - [anon_sym_continue] = ACTIONS(4134), - [anon_sym_goto] = ACTIONS(4134), - [anon_sym___try] = ACTIONS(4134), - [anon_sym___leave] = ACTIONS(4134), - [anon_sym_not] = ACTIONS(4134), - [anon_sym_compl] = ACTIONS(4134), - [anon_sym_DASH_DASH] = ACTIONS(4136), - [anon_sym_PLUS_PLUS] = ACTIONS(4136), - [anon_sym_sizeof] = ACTIONS(4134), - [anon_sym___alignof__] = ACTIONS(4134), - [anon_sym___alignof] = ACTIONS(4134), - [anon_sym__alignof] = ACTIONS(4134), - [anon_sym_alignof] = ACTIONS(4134), - [anon_sym__Alignof] = ACTIONS(4134), - [anon_sym_offsetof] = ACTIONS(4134), - [anon_sym__Generic] = ACTIONS(4134), - [anon_sym_typename] = ACTIONS(4134), - [anon_sym_asm] = ACTIONS(4134), - [anon_sym___asm__] = ACTIONS(4134), - [anon_sym___asm] = ACTIONS(4134), - [sym_number_literal] = ACTIONS(4136), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4136), - [anon_sym_u_DQUOTE] = ACTIONS(4136), - [anon_sym_U_DQUOTE] = ACTIONS(4136), - [anon_sym_u8_DQUOTE] = ACTIONS(4136), - [anon_sym_DQUOTE] = ACTIONS(4136), - [sym_true] = ACTIONS(4134), - [sym_false] = ACTIONS(4134), - [anon_sym_NULL] = ACTIONS(4134), - [anon_sym_nullptr] = ACTIONS(4134), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4134), - [anon_sym_decltype] = ACTIONS(4134), - [anon_sym_explicit] = ACTIONS(4134), - [anon_sym_template] = ACTIONS(4134), - [anon_sym_operator] = ACTIONS(4134), - [anon_sym_try] = ACTIONS(4134), - [anon_sym_delete] = ACTIONS(4134), - [anon_sym_throw] = ACTIONS(4134), - [anon_sym_namespace] = ACTIONS(4134), - [anon_sym_static_assert] = ACTIONS(4134), - [anon_sym_concept] = ACTIONS(4134), - [anon_sym_co_return] = ACTIONS(4134), - [anon_sym_co_yield] = ACTIONS(4134), - [anon_sym_R_DQUOTE] = ACTIONS(4136), - [anon_sym_LR_DQUOTE] = ACTIONS(4136), - [anon_sym_uR_DQUOTE] = ACTIONS(4136), - [anon_sym_UR_DQUOTE] = ACTIONS(4136), - [anon_sym_u8R_DQUOTE] = ACTIONS(4136), - [anon_sym_co_await] = ACTIONS(4134), - [anon_sym_new] = ACTIONS(4134), - [anon_sym_requires] = ACTIONS(4134), - [anon_sym_CARET_CARET] = ACTIONS(4136), - [anon_sym_LBRACK_COLON] = ACTIONS(4136), - [sym_this] = ACTIONS(4134), + [STATE(690)] = { + [sym_identifier] = ACTIONS(4200), + [aux_sym_preproc_include_token1] = ACTIONS(4200), + [aux_sym_preproc_def_token1] = ACTIONS(4200), + [aux_sym_preproc_if_token1] = ACTIONS(4200), + [aux_sym_preproc_if_token2] = ACTIONS(4200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4200), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4200), + [sym_preproc_directive] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(4202), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_AMP] = ACTIONS(4200), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym___extension__] = ACTIONS(4200), + [anon_sym_typedef] = ACTIONS(4200), + [anon_sym_virtual] = ACTIONS(4200), + [anon_sym_extern] = ACTIONS(4200), + [anon_sym___attribute__] = ACTIONS(4200), + [anon_sym___attribute] = ACTIONS(4200), + [anon_sym_using] = ACTIONS(4200), + [anon_sym_COLON_COLON] = ACTIONS(4202), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4202), + [anon_sym___declspec] = ACTIONS(4200), + [anon_sym___based] = ACTIONS(4200), + [anon_sym___cdecl] = ACTIONS(4200), + [anon_sym___clrcall] = ACTIONS(4200), + [anon_sym___stdcall] = ACTIONS(4200), + [anon_sym___fastcall] = ACTIONS(4200), + [anon_sym___thiscall] = ACTIONS(4200), + [anon_sym___vectorcall] = ACTIONS(4200), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_signed] = ACTIONS(4200), + [anon_sym_unsigned] = ACTIONS(4200), + [anon_sym_long] = ACTIONS(4200), + [anon_sym_short] = ACTIONS(4200), + [anon_sym_LBRACK] = ACTIONS(4200), + [anon_sym_static] = ACTIONS(4200), + [anon_sym_register] = ACTIONS(4200), + [anon_sym_inline] = ACTIONS(4200), + [anon_sym___inline] = ACTIONS(4200), + [anon_sym___inline__] = ACTIONS(4200), + [anon_sym___forceinline] = ACTIONS(4200), + [anon_sym_thread_local] = ACTIONS(4200), + [anon_sym___thread] = ACTIONS(4200), + [anon_sym_const] = ACTIONS(4200), + [anon_sym_constexpr] = ACTIONS(4200), + [anon_sym_volatile] = ACTIONS(4200), + [anon_sym_restrict] = ACTIONS(4200), + [anon_sym___restrict__] = ACTIONS(4200), + [anon_sym__Atomic] = ACTIONS(4200), + [anon_sym__Noreturn] = ACTIONS(4200), + [anon_sym_noreturn] = ACTIONS(4200), + [anon_sym__Nonnull] = ACTIONS(4200), + [anon_sym_mutable] = ACTIONS(4200), + [anon_sym_constinit] = ACTIONS(4200), + [anon_sym_consteval] = ACTIONS(4200), + [anon_sym_alignas] = ACTIONS(4200), + [anon_sym__Alignas] = ACTIONS(4200), + [sym_primitive_type] = ACTIONS(4200), + [anon_sym_enum] = ACTIONS(4200), + [anon_sym_class] = ACTIONS(4200), + [anon_sym_struct] = ACTIONS(4200), + [anon_sym_union] = ACTIONS(4200), + [anon_sym_if] = ACTIONS(4200), + [anon_sym_switch] = ACTIONS(4200), + [anon_sym_case] = ACTIONS(4200), + [anon_sym_default] = ACTIONS(4200), + [anon_sym_while] = ACTIONS(4200), + [anon_sym_do] = ACTIONS(4200), + [anon_sym_for] = ACTIONS(4200), + [anon_sym_return] = ACTIONS(4200), + [anon_sym_break] = ACTIONS(4200), + [anon_sym_continue] = ACTIONS(4200), + [anon_sym_goto] = ACTIONS(4200), + [anon_sym___try] = ACTIONS(4200), + [anon_sym___leave] = ACTIONS(4200), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4202), + [anon_sym_sizeof] = ACTIONS(4200), + [anon_sym___alignof__] = ACTIONS(4200), + [anon_sym___alignof] = ACTIONS(4200), + [anon_sym__alignof] = ACTIONS(4200), + [anon_sym_alignof] = ACTIONS(4200), + [anon_sym__Alignof] = ACTIONS(4200), + [anon_sym_offsetof] = ACTIONS(4200), + [anon_sym__Generic] = ACTIONS(4200), + [anon_sym_typename] = ACTIONS(4200), + [anon_sym_asm] = ACTIONS(4200), + [anon_sym___asm__] = ACTIONS(4200), + [anon_sym___asm] = ACTIONS(4200), + [sym_number_literal] = ACTIONS(4202), + [anon_sym_L_SQUOTE] = ACTIONS(4202), + [anon_sym_u_SQUOTE] = ACTIONS(4202), + [anon_sym_U_SQUOTE] = ACTIONS(4202), + [anon_sym_u8_SQUOTE] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4202), + [anon_sym_L_DQUOTE] = ACTIONS(4202), + [anon_sym_u_DQUOTE] = ACTIONS(4202), + [anon_sym_U_DQUOTE] = ACTIONS(4202), + [anon_sym_u8_DQUOTE] = ACTIONS(4202), + [anon_sym_DQUOTE] = ACTIONS(4202), + [sym_true] = ACTIONS(4200), + [sym_false] = ACTIONS(4200), + [anon_sym_NULL] = ACTIONS(4200), + [anon_sym_nullptr] = ACTIONS(4200), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4200), + [anon_sym_decltype] = ACTIONS(4200), + [anon_sym_explicit] = ACTIONS(4200), + [anon_sym_export] = ACTIONS(4200), + [anon_sym_module] = ACTIONS(4200), + [anon_sym_import] = ACTIONS(4200), + [anon_sym_template] = ACTIONS(4200), + [anon_sym_operator] = ACTIONS(4200), + [anon_sym_try] = ACTIONS(4200), + [anon_sym_delete] = ACTIONS(4200), + [anon_sym_throw] = ACTIONS(4200), + [anon_sym_namespace] = ACTIONS(4200), + [anon_sym_static_assert] = ACTIONS(4200), + [anon_sym_concept] = ACTIONS(4200), + [anon_sym_co_return] = ACTIONS(4200), + [anon_sym_co_yield] = ACTIONS(4200), + [anon_sym_R_DQUOTE] = ACTIONS(4202), + [anon_sym_LR_DQUOTE] = ACTIONS(4202), + [anon_sym_uR_DQUOTE] = ACTIONS(4202), + [anon_sym_UR_DQUOTE] = ACTIONS(4202), + [anon_sym_u8R_DQUOTE] = ACTIONS(4202), + [anon_sym_co_await] = ACTIONS(4200), + [anon_sym_new] = ACTIONS(4200), + [anon_sym_requires] = ACTIONS(4200), + [anon_sym_CARET_CARET] = ACTIONS(4202), + [anon_sym_LBRACK_COLON] = ACTIONS(4202), + [sym_this] = ACTIONS(4200), }, - [STATE(835)] = { - [sym_identifier] = ACTIONS(4002), - [aux_sym_preproc_include_token1] = ACTIONS(4002), - [aux_sym_preproc_def_token1] = ACTIONS(4002), - [aux_sym_preproc_if_token1] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), - [sym_preproc_directive] = ACTIONS(4002), - [anon_sym_LPAREN2] = ACTIONS(4004), - [anon_sym_BANG] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(4004), - [anon_sym_DASH] = ACTIONS(4002), - [anon_sym_PLUS] = ACTIONS(4002), - [anon_sym_STAR] = ACTIONS(4004), - [anon_sym_AMP_AMP] = ACTIONS(4004), - [anon_sym_AMP] = ACTIONS(4002), - [anon_sym_SEMI] = ACTIONS(4004), - [anon_sym___extension__] = ACTIONS(4002), - [anon_sym_typedef] = ACTIONS(4002), - [anon_sym_virtual] = ACTIONS(4002), - [anon_sym_extern] = ACTIONS(4002), - [anon_sym___attribute__] = ACTIONS(4002), - [anon_sym___attribute] = ACTIONS(4002), - [anon_sym_using] = ACTIONS(4002), - [anon_sym_COLON_COLON] = ACTIONS(4004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), - [anon_sym___declspec] = ACTIONS(4002), - [anon_sym___based] = ACTIONS(4002), - [anon_sym___cdecl] = ACTIONS(4002), - [anon_sym___clrcall] = ACTIONS(4002), - [anon_sym___stdcall] = ACTIONS(4002), - [anon_sym___fastcall] = ACTIONS(4002), - [anon_sym___thiscall] = ACTIONS(4002), - [anon_sym___vectorcall] = ACTIONS(4002), - [anon_sym_LBRACE] = ACTIONS(4004), - [anon_sym_RBRACE] = ACTIONS(4004), - [anon_sym_signed] = ACTIONS(4002), - [anon_sym_unsigned] = ACTIONS(4002), - [anon_sym_long] = ACTIONS(4002), - [anon_sym_short] = ACTIONS(4002), - [anon_sym_LBRACK] = ACTIONS(4002), - [anon_sym_static] = ACTIONS(4002), - [anon_sym_register] = ACTIONS(4002), - [anon_sym_inline] = ACTIONS(4002), - [anon_sym___inline] = ACTIONS(4002), - [anon_sym___inline__] = ACTIONS(4002), - [anon_sym___forceinline] = ACTIONS(4002), - [anon_sym_thread_local] = ACTIONS(4002), - [anon_sym___thread] = ACTIONS(4002), - [anon_sym_const] = ACTIONS(4002), - [anon_sym_constexpr] = ACTIONS(4002), - [anon_sym_volatile] = ACTIONS(4002), - [anon_sym_restrict] = ACTIONS(4002), - [anon_sym___restrict__] = ACTIONS(4002), - [anon_sym__Atomic] = ACTIONS(4002), - [anon_sym__Noreturn] = ACTIONS(4002), - [anon_sym_noreturn] = ACTIONS(4002), - [anon_sym__Nonnull] = ACTIONS(4002), - [anon_sym_mutable] = ACTIONS(4002), - [anon_sym_constinit] = ACTIONS(4002), - [anon_sym_consteval] = ACTIONS(4002), - [anon_sym_alignas] = ACTIONS(4002), - [anon_sym__Alignas] = ACTIONS(4002), - [sym_primitive_type] = ACTIONS(4002), - [anon_sym_enum] = ACTIONS(4002), - [anon_sym_class] = ACTIONS(4002), - [anon_sym_struct] = ACTIONS(4002), - [anon_sym_union] = ACTIONS(4002), - [anon_sym_if] = ACTIONS(4002), - [anon_sym_switch] = ACTIONS(4002), - [anon_sym_case] = ACTIONS(4002), - [anon_sym_default] = ACTIONS(4002), - [anon_sym_while] = ACTIONS(4002), - [anon_sym_do] = ACTIONS(4002), - [anon_sym_for] = ACTIONS(4002), - [anon_sym_return] = ACTIONS(4002), - [anon_sym_break] = ACTIONS(4002), - [anon_sym_continue] = ACTIONS(4002), - [anon_sym_goto] = ACTIONS(4002), - [anon_sym___try] = ACTIONS(4002), - [anon_sym___leave] = ACTIONS(4002), - [anon_sym_not] = ACTIONS(4002), - [anon_sym_compl] = ACTIONS(4002), - [anon_sym_DASH_DASH] = ACTIONS(4004), - [anon_sym_PLUS_PLUS] = ACTIONS(4004), - [anon_sym_sizeof] = ACTIONS(4002), - [anon_sym___alignof__] = ACTIONS(4002), - [anon_sym___alignof] = ACTIONS(4002), - [anon_sym__alignof] = ACTIONS(4002), - [anon_sym_alignof] = ACTIONS(4002), - [anon_sym__Alignof] = ACTIONS(4002), - [anon_sym_offsetof] = ACTIONS(4002), - [anon_sym__Generic] = ACTIONS(4002), - [anon_sym_typename] = ACTIONS(4002), - [anon_sym_asm] = ACTIONS(4002), - [anon_sym___asm__] = ACTIONS(4002), - [anon_sym___asm] = ACTIONS(4002), - [sym_number_literal] = ACTIONS(4004), - [anon_sym_L_SQUOTE] = ACTIONS(4004), - [anon_sym_u_SQUOTE] = ACTIONS(4004), - [anon_sym_U_SQUOTE] = ACTIONS(4004), - [anon_sym_u8_SQUOTE] = ACTIONS(4004), - [anon_sym_SQUOTE] = ACTIONS(4004), - [anon_sym_L_DQUOTE] = ACTIONS(4004), - [anon_sym_u_DQUOTE] = ACTIONS(4004), - [anon_sym_U_DQUOTE] = ACTIONS(4004), - [anon_sym_u8_DQUOTE] = ACTIONS(4004), - [anon_sym_DQUOTE] = ACTIONS(4004), - [sym_true] = ACTIONS(4002), - [sym_false] = ACTIONS(4002), - [anon_sym_NULL] = ACTIONS(4002), - [anon_sym_nullptr] = ACTIONS(4002), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4002), - [anon_sym_decltype] = ACTIONS(4002), - [anon_sym_explicit] = ACTIONS(4002), - [anon_sym_template] = ACTIONS(4002), - [anon_sym_operator] = ACTIONS(4002), - [anon_sym_try] = ACTIONS(4002), - [anon_sym_delete] = ACTIONS(4002), - [anon_sym_throw] = ACTIONS(4002), - [anon_sym_namespace] = ACTIONS(4002), - [anon_sym_static_assert] = ACTIONS(4002), - [anon_sym_concept] = ACTIONS(4002), - [anon_sym_co_return] = ACTIONS(4002), - [anon_sym_co_yield] = ACTIONS(4002), - [anon_sym_R_DQUOTE] = ACTIONS(4004), - [anon_sym_LR_DQUOTE] = ACTIONS(4004), - [anon_sym_uR_DQUOTE] = ACTIONS(4004), - [anon_sym_UR_DQUOTE] = ACTIONS(4004), - [anon_sym_u8R_DQUOTE] = ACTIONS(4004), - [anon_sym_co_await] = ACTIONS(4002), - [anon_sym_new] = ACTIONS(4002), - [anon_sym_requires] = ACTIONS(4002), - [anon_sym_CARET_CARET] = ACTIONS(4004), - [anon_sym_LBRACK_COLON] = ACTIONS(4004), - [sym_this] = ACTIONS(4002), + [STATE(691)] = { + [sym_identifier] = ACTIONS(4204), + [aux_sym_preproc_include_token1] = ACTIONS(4204), + [aux_sym_preproc_def_token1] = ACTIONS(4204), + [aux_sym_preproc_if_token1] = ACTIONS(4204), + [aux_sym_preproc_if_token2] = ACTIONS(4204), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4204), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4204), + [sym_preproc_directive] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(4206), + [anon_sym_BANG] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4206), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4206), + [anon_sym_AMP_AMP] = ACTIONS(4206), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym___extension__] = ACTIONS(4204), + [anon_sym_typedef] = ACTIONS(4204), + [anon_sym_virtual] = ACTIONS(4204), + [anon_sym_extern] = ACTIONS(4204), + [anon_sym___attribute__] = ACTIONS(4204), + [anon_sym___attribute] = ACTIONS(4204), + [anon_sym_using] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4206), + [anon_sym___declspec] = ACTIONS(4204), + [anon_sym___based] = ACTIONS(4204), + [anon_sym___cdecl] = ACTIONS(4204), + [anon_sym___clrcall] = ACTIONS(4204), + [anon_sym___stdcall] = ACTIONS(4204), + [anon_sym___fastcall] = ACTIONS(4204), + [anon_sym___thiscall] = ACTIONS(4204), + [anon_sym___vectorcall] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_signed] = ACTIONS(4204), + [anon_sym_unsigned] = ACTIONS(4204), + [anon_sym_long] = ACTIONS(4204), + [anon_sym_short] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_static] = ACTIONS(4204), + [anon_sym_register] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym___inline] = ACTIONS(4204), + [anon_sym___inline__] = ACTIONS(4204), + [anon_sym___forceinline] = ACTIONS(4204), + [anon_sym_thread_local] = ACTIONS(4204), + [anon_sym___thread] = ACTIONS(4204), + [anon_sym_const] = ACTIONS(4204), + [anon_sym_constexpr] = ACTIONS(4204), + [anon_sym_volatile] = ACTIONS(4204), + [anon_sym_restrict] = ACTIONS(4204), + [anon_sym___restrict__] = ACTIONS(4204), + [anon_sym__Atomic] = ACTIONS(4204), + [anon_sym__Noreturn] = ACTIONS(4204), + [anon_sym_noreturn] = ACTIONS(4204), + [anon_sym__Nonnull] = ACTIONS(4204), + [anon_sym_mutable] = ACTIONS(4204), + [anon_sym_constinit] = ACTIONS(4204), + [anon_sym_consteval] = ACTIONS(4204), + [anon_sym_alignas] = ACTIONS(4204), + [anon_sym__Alignas] = ACTIONS(4204), + [sym_primitive_type] = ACTIONS(4204), + [anon_sym_enum] = ACTIONS(4204), + [anon_sym_class] = ACTIONS(4204), + [anon_sym_struct] = ACTIONS(4204), + [anon_sym_union] = ACTIONS(4204), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_switch] = ACTIONS(4204), + [anon_sym_case] = ACTIONS(4204), + [anon_sym_default] = ACTIONS(4204), + [anon_sym_while] = ACTIONS(4204), + [anon_sym_do] = ACTIONS(4204), + [anon_sym_for] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_goto] = ACTIONS(4204), + [anon_sym___try] = ACTIONS(4204), + [anon_sym___leave] = ACTIONS(4204), + [anon_sym_not] = ACTIONS(4204), + [anon_sym_compl] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4206), + [anon_sym_PLUS_PLUS] = ACTIONS(4206), + [anon_sym_sizeof] = ACTIONS(4204), + [anon_sym___alignof__] = ACTIONS(4204), + [anon_sym___alignof] = ACTIONS(4204), + [anon_sym__alignof] = ACTIONS(4204), + [anon_sym_alignof] = ACTIONS(4204), + [anon_sym__Alignof] = ACTIONS(4204), + [anon_sym_offsetof] = ACTIONS(4204), + [anon_sym__Generic] = ACTIONS(4204), + [anon_sym_typename] = ACTIONS(4204), + [anon_sym_asm] = ACTIONS(4204), + [anon_sym___asm__] = ACTIONS(4204), + [anon_sym___asm] = ACTIONS(4204), + [sym_number_literal] = ACTIONS(4206), + [anon_sym_L_SQUOTE] = ACTIONS(4206), + [anon_sym_u_SQUOTE] = ACTIONS(4206), + [anon_sym_U_SQUOTE] = ACTIONS(4206), + [anon_sym_u8_SQUOTE] = ACTIONS(4206), + [anon_sym_SQUOTE] = ACTIONS(4206), + [anon_sym_L_DQUOTE] = ACTIONS(4206), + [anon_sym_u_DQUOTE] = ACTIONS(4206), + [anon_sym_U_DQUOTE] = ACTIONS(4206), + [anon_sym_u8_DQUOTE] = ACTIONS(4206), + [anon_sym_DQUOTE] = ACTIONS(4206), + [sym_true] = ACTIONS(4204), + [sym_false] = ACTIONS(4204), + [anon_sym_NULL] = ACTIONS(4204), + [anon_sym_nullptr] = ACTIONS(4204), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4204), + [anon_sym_decltype] = ACTIONS(4204), + [anon_sym_explicit] = ACTIONS(4204), + [anon_sym_export] = ACTIONS(4204), + [anon_sym_module] = ACTIONS(4204), + [anon_sym_import] = ACTIONS(4204), + [anon_sym_template] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_delete] = ACTIONS(4204), + [anon_sym_throw] = ACTIONS(4204), + [anon_sym_namespace] = ACTIONS(4204), + [anon_sym_static_assert] = ACTIONS(4204), + [anon_sym_concept] = ACTIONS(4204), + [anon_sym_co_return] = ACTIONS(4204), + [anon_sym_co_yield] = ACTIONS(4204), + [anon_sym_R_DQUOTE] = ACTIONS(4206), + [anon_sym_LR_DQUOTE] = ACTIONS(4206), + [anon_sym_uR_DQUOTE] = ACTIONS(4206), + [anon_sym_UR_DQUOTE] = ACTIONS(4206), + [anon_sym_u8R_DQUOTE] = ACTIONS(4206), + [anon_sym_co_await] = ACTIONS(4204), + [anon_sym_new] = ACTIONS(4204), + [anon_sym_requires] = ACTIONS(4204), + [anon_sym_CARET_CARET] = ACTIONS(4206), + [anon_sym_LBRACK_COLON] = ACTIONS(4206), + [sym_this] = ACTIONS(4204), }, - [STATE(836)] = { - [sym_identifier] = ACTIONS(4002), - [aux_sym_preproc_include_token1] = ACTIONS(4002), - [aux_sym_preproc_def_token1] = ACTIONS(4002), - [aux_sym_preproc_if_token1] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), - [sym_preproc_directive] = ACTIONS(4002), - [anon_sym_LPAREN2] = ACTIONS(4004), - [anon_sym_BANG] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(4004), - [anon_sym_DASH] = ACTIONS(4002), - [anon_sym_PLUS] = ACTIONS(4002), - [anon_sym_STAR] = ACTIONS(4004), - [anon_sym_AMP_AMP] = ACTIONS(4004), - [anon_sym_AMP] = ACTIONS(4002), - [anon_sym_SEMI] = ACTIONS(4004), - [anon_sym___extension__] = ACTIONS(4002), - [anon_sym_typedef] = ACTIONS(4002), - [anon_sym_virtual] = ACTIONS(4002), - [anon_sym_extern] = ACTIONS(4002), - [anon_sym___attribute__] = ACTIONS(4002), - [anon_sym___attribute] = ACTIONS(4002), - [anon_sym_using] = ACTIONS(4002), - [anon_sym_COLON_COLON] = ACTIONS(4004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), - [anon_sym___declspec] = ACTIONS(4002), - [anon_sym___based] = ACTIONS(4002), - [anon_sym___cdecl] = ACTIONS(4002), - [anon_sym___clrcall] = ACTIONS(4002), - [anon_sym___stdcall] = ACTIONS(4002), - [anon_sym___fastcall] = ACTIONS(4002), - [anon_sym___thiscall] = ACTIONS(4002), - [anon_sym___vectorcall] = ACTIONS(4002), - [anon_sym_LBRACE] = ACTIONS(4004), - [anon_sym_RBRACE] = ACTIONS(4004), - [anon_sym_signed] = ACTIONS(4002), - [anon_sym_unsigned] = ACTIONS(4002), - [anon_sym_long] = ACTIONS(4002), - [anon_sym_short] = ACTIONS(4002), - [anon_sym_LBRACK] = ACTIONS(4002), - [anon_sym_static] = ACTIONS(4002), - [anon_sym_register] = ACTIONS(4002), - [anon_sym_inline] = ACTIONS(4002), - [anon_sym___inline] = ACTIONS(4002), - [anon_sym___inline__] = ACTIONS(4002), - [anon_sym___forceinline] = ACTIONS(4002), - [anon_sym_thread_local] = ACTIONS(4002), - [anon_sym___thread] = ACTIONS(4002), - [anon_sym_const] = ACTIONS(4002), - [anon_sym_constexpr] = ACTIONS(4002), - [anon_sym_volatile] = ACTIONS(4002), - [anon_sym_restrict] = ACTIONS(4002), - [anon_sym___restrict__] = ACTIONS(4002), - [anon_sym__Atomic] = ACTIONS(4002), - [anon_sym__Noreturn] = ACTIONS(4002), - [anon_sym_noreturn] = ACTIONS(4002), - [anon_sym__Nonnull] = ACTIONS(4002), - [anon_sym_mutable] = ACTIONS(4002), - [anon_sym_constinit] = ACTIONS(4002), - [anon_sym_consteval] = ACTIONS(4002), - [anon_sym_alignas] = ACTIONS(4002), - [anon_sym__Alignas] = ACTIONS(4002), - [sym_primitive_type] = ACTIONS(4002), - [anon_sym_enum] = ACTIONS(4002), - [anon_sym_class] = ACTIONS(4002), - [anon_sym_struct] = ACTIONS(4002), - [anon_sym_union] = ACTIONS(4002), - [anon_sym_if] = ACTIONS(4002), - [anon_sym_switch] = ACTIONS(4002), - [anon_sym_case] = ACTIONS(4002), - [anon_sym_default] = ACTIONS(4002), - [anon_sym_while] = ACTIONS(4002), - [anon_sym_do] = ACTIONS(4002), - [anon_sym_for] = ACTIONS(4002), - [anon_sym_return] = ACTIONS(4002), - [anon_sym_break] = ACTIONS(4002), - [anon_sym_continue] = ACTIONS(4002), - [anon_sym_goto] = ACTIONS(4002), - [anon_sym___try] = ACTIONS(4002), - [anon_sym___leave] = ACTIONS(4002), - [anon_sym_not] = ACTIONS(4002), - [anon_sym_compl] = ACTIONS(4002), - [anon_sym_DASH_DASH] = ACTIONS(4004), - [anon_sym_PLUS_PLUS] = ACTIONS(4004), - [anon_sym_sizeof] = ACTIONS(4002), - [anon_sym___alignof__] = ACTIONS(4002), - [anon_sym___alignof] = ACTIONS(4002), - [anon_sym__alignof] = ACTIONS(4002), - [anon_sym_alignof] = ACTIONS(4002), - [anon_sym__Alignof] = ACTIONS(4002), - [anon_sym_offsetof] = ACTIONS(4002), - [anon_sym__Generic] = ACTIONS(4002), - [anon_sym_typename] = ACTIONS(4002), - [anon_sym_asm] = ACTIONS(4002), - [anon_sym___asm__] = ACTIONS(4002), - [anon_sym___asm] = ACTIONS(4002), - [sym_number_literal] = ACTIONS(4004), - [anon_sym_L_SQUOTE] = ACTIONS(4004), - [anon_sym_u_SQUOTE] = ACTIONS(4004), - [anon_sym_U_SQUOTE] = ACTIONS(4004), - [anon_sym_u8_SQUOTE] = ACTIONS(4004), - [anon_sym_SQUOTE] = ACTIONS(4004), - [anon_sym_L_DQUOTE] = ACTIONS(4004), - [anon_sym_u_DQUOTE] = ACTIONS(4004), - [anon_sym_U_DQUOTE] = ACTIONS(4004), - [anon_sym_u8_DQUOTE] = ACTIONS(4004), - [anon_sym_DQUOTE] = ACTIONS(4004), - [sym_true] = ACTIONS(4002), - [sym_false] = ACTIONS(4002), - [anon_sym_NULL] = ACTIONS(4002), - [anon_sym_nullptr] = ACTIONS(4002), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4002), - [anon_sym_decltype] = ACTIONS(4002), - [anon_sym_explicit] = ACTIONS(4002), - [anon_sym_template] = ACTIONS(4002), - [anon_sym_operator] = ACTIONS(4002), - [anon_sym_try] = ACTIONS(4002), - [anon_sym_delete] = ACTIONS(4002), - [anon_sym_throw] = ACTIONS(4002), - [anon_sym_namespace] = ACTIONS(4002), - [anon_sym_static_assert] = ACTIONS(4002), - [anon_sym_concept] = ACTIONS(4002), - [anon_sym_co_return] = ACTIONS(4002), - [anon_sym_co_yield] = ACTIONS(4002), - [anon_sym_R_DQUOTE] = ACTIONS(4004), - [anon_sym_LR_DQUOTE] = ACTIONS(4004), - [anon_sym_uR_DQUOTE] = ACTIONS(4004), - [anon_sym_UR_DQUOTE] = ACTIONS(4004), - [anon_sym_u8R_DQUOTE] = ACTIONS(4004), - [anon_sym_co_await] = ACTIONS(4002), - [anon_sym_new] = ACTIONS(4002), - [anon_sym_requires] = ACTIONS(4002), - [anon_sym_CARET_CARET] = ACTIONS(4004), - [anon_sym_LBRACK_COLON] = ACTIONS(4004), - [sym_this] = ACTIONS(4002), + [STATE(692)] = { + [sym_identifier] = ACTIONS(4208), + [aux_sym_preproc_include_token1] = ACTIONS(4208), + [aux_sym_preproc_def_token1] = ACTIONS(4208), + [aux_sym_preproc_if_token1] = ACTIONS(4208), + [aux_sym_preproc_if_token2] = ACTIONS(4208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4208), + [sym_preproc_directive] = ACTIONS(4208), + [anon_sym_LPAREN2] = ACTIONS(4210), + [anon_sym_BANG] = ACTIONS(4210), + [anon_sym_TILDE] = ACTIONS(4210), + [anon_sym_DASH] = ACTIONS(4208), + [anon_sym_PLUS] = ACTIONS(4208), + [anon_sym_STAR] = ACTIONS(4210), + [anon_sym_AMP_AMP] = ACTIONS(4210), + [anon_sym_AMP] = ACTIONS(4208), + [anon_sym_SEMI] = ACTIONS(4210), + [anon_sym___extension__] = ACTIONS(4208), + [anon_sym_typedef] = ACTIONS(4208), + [anon_sym_virtual] = ACTIONS(4208), + [anon_sym_extern] = ACTIONS(4208), + [anon_sym___attribute__] = ACTIONS(4208), + [anon_sym___attribute] = ACTIONS(4208), + [anon_sym_using] = ACTIONS(4208), + [anon_sym_COLON_COLON] = ACTIONS(4210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4210), + [anon_sym___declspec] = ACTIONS(4208), + [anon_sym___based] = ACTIONS(4208), + [anon_sym___cdecl] = ACTIONS(4208), + [anon_sym___clrcall] = ACTIONS(4208), + [anon_sym___stdcall] = ACTIONS(4208), + [anon_sym___fastcall] = ACTIONS(4208), + [anon_sym___thiscall] = ACTIONS(4208), + [anon_sym___vectorcall] = ACTIONS(4208), + [anon_sym_LBRACE] = ACTIONS(4210), + [anon_sym_signed] = ACTIONS(4208), + [anon_sym_unsigned] = ACTIONS(4208), + [anon_sym_long] = ACTIONS(4208), + [anon_sym_short] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(4208), + [anon_sym_static] = ACTIONS(4208), + [anon_sym_register] = ACTIONS(4208), + [anon_sym_inline] = ACTIONS(4208), + [anon_sym___inline] = ACTIONS(4208), + [anon_sym___inline__] = ACTIONS(4208), + [anon_sym___forceinline] = ACTIONS(4208), + [anon_sym_thread_local] = ACTIONS(4208), + [anon_sym___thread] = ACTIONS(4208), + [anon_sym_const] = ACTIONS(4208), + [anon_sym_constexpr] = ACTIONS(4208), + [anon_sym_volatile] = ACTIONS(4208), + [anon_sym_restrict] = ACTIONS(4208), + [anon_sym___restrict__] = ACTIONS(4208), + [anon_sym__Atomic] = ACTIONS(4208), + [anon_sym__Noreturn] = ACTIONS(4208), + [anon_sym_noreturn] = ACTIONS(4208), + [anon_sym__Nonnull] = ACTIONS(4208), + [anon_sym_mutable] = ACTIONS(4208), + [anon_sym_constinit] = ACTIONS(4208), + [anon_sym_consteval] = ACTIONS(4208), + [anon_sym_alignas] = ACTIONS(4208), + [anon_sym__Alignas] = ACTIONS(4208), + [sym_primitive_type] = ACTIONS(4208), + [anon_sym_enum] = ACTIONS(4208), + [anon_sym_class] = ACTIONS(4208), + [anon_sym_struct] = ACTIONS(4208), + [anon_sym_union] = ACTIONS(4208), + [anon_sym_if] = ACTIONS(4208), + [anon_sym_switch] = ACTIONS(4208), + [anon_sym_case] = ACTIONS(4208), + [anon_sym_default] = ACTIONS(4208), + [anon_sym_while] = ACTIONS(4208), + [anon_sym_do] = ACTIONS(4208), + [anon_sym_for] = ACTIONS(4208), + [anon_sym_return] = ACTIONS(4208), + [anon_sym_break] = ACTIONS(4208), + [anon_sym_continue] = ACTIONS(4208), + [anon_sym_goto] = ACTIONS(4208), + [anon_sym___try] = ACTIONS(4208), + [anon_sym___leave] = ACTIONS(4208), + [anon_sym_not] = ACTIONS(4208), + [anon_sym_compl] = ACTIONS(4208), + [anon_sym_DASH_DASH] = ACTIONS(4210), + [anon_sym_PLUS_PLUS] = ACTIONS(4210), + [anon_sym_sizeof] = ACTIONS(4208), + [anon_sym___alignof__] = ACTIONS(4208), + [anon_sym___alignof] = ACTIONS(4208), + [anon_sym__alignof] = ACTIONS(4208), + [anon_sym_alignof] = ACTIONS(4208), + [anon_sym__Alignof] = ACTIONS(4208), + [anon_sym_offsetof] = ACTIONS(4208), + [anon_sym__Generic] = ACTIONS(4208), + [anon_sym_typename] = ACTIONS(4208), + [anon_sym_asm] = ACTIONS(4208), + [anon_sym___asm__] = ACTIONS(4208), + [anon_sym___asm] = ACTIONS(4208), + [sym_number_literal] = ACTIONS(4210), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4210), + [anon_sym_u_DQUOTE] = ACTIONS(4210), + [anon_sym_U_DQUOTE] = ACTIONS(4210), + [anon_sym_u8_DQUOTE] = ACTIONS(4210), + [anon_sym_DQUOTE] = ACTIONS(4210), + [sym_true] = ACTIONS(4208), + [sym_false] = ACTIONS(4208), + [anon_sym_NULL] = ACTIONS(4208), + [anon_sym_nullptr] = ACTIONS(4208), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4208), + [anon_sym_decltype] = ACTIONS(4208), + [anon_sym_explicit] = ACTIONS(4208), + [anon_sym_export] = ACTIONS(4208), + [anon_sym_module] = ACTIONS(4208), + [anon_sym_import] = ACTIONS(4208), + [anon_sym_template] = ACTIONS(4208), + [anon_sym_operator] = ACTIONS(4208), + [anon_sym_try] = ACTIONS(4208), + [anon_sym_delete] = ACTIONS(4208), + [anon_sym_throw] = ACTIONS(4208), + [anon_sym_namespace] = ACTIONS(4208), + [anon_sym_static_assert] = ACTIONS(4208), + [anon_sym_concept] = ACTIONS(4208), + [anon_sym_co_return] = ACTIONS(4208), + [anon_sym_co_yield] = ACTIONS(4208), + [anon_sym_R_DQUOTE] = ACTIONS(4210), + [anon_sym_LR_DQUOTE] = ACTIONS(4210), + [anon_sym_uR_DQUOTE] = ACTIONS(4210), + [anon_sym_UR_DQUOTE] = ACTIONS(4210), + [anon_sym_u8R_DQUOTE] = ACTIONS(4210), + [anon_sym_co_await] = ACTIONS(4208), + [anon_sym_new] = ACTIONS(4208), + [anon_sym_requires] = ACTIONS(4208), + [anon_sym_CARET_CARET] = ACTIONS(4210), + [anon_sym_LBRACK_COLON] = ACTIONS(4210), + [sym_this] = ACTIONS(4208), }, - [STATE(837)] = { - [sym_identifier] = ACTIONS(4006), - [aux_sym_preproc_include_token1] = ACTIONS(4006), - [aux_sym_preproc_def_token1] = ACTIONS(4006), - [aux_sym_preproc_if_token1] = ACTIONS(4006), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4006), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4006), - [sym_preproc_directive] = ACTIONS(4006), - [anon_sym_LPAREN2] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4008), - [anon_sym_TILDE] = ACTIONS(4008), - [anon_sym_DASH] = ACTIONS(4006), - [anon_sym_PLUS] = ACTIONS(4006), - [anon_sym_STAR] = ACTIONS(4008), - [anon_sym_AMP_AMP] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4006), - [anon_sym_SEMI] = ACTIONS(4008), - [anon_sym___extension__] = ACTIONS(4006), - [anon_sym_typedef] = ACTIONS(4006), - [anon_sym_virtual] = ACTIONS(4006), - [anon_sym_extern] = ACTIONS(4006), - [anon_sym___attribute__] = ACTIONS(4006), - [anon_sym___attribute] = ACTIONS(4006), - [anon_sym_using] = ACTIONS(4006), - [anon_sym_COLON_COLON] = ACTIONS(4008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4008), - [anon_sym___declspec] = ACTIONS(4006), - [anon_sym___based] = ACTIONS(4006), - [anon_sym___cdecl] = ACTIONS(4006), - [anon_sym___clrcall] = ACTIONS(4006), - [anon_sym___stdcall] = ACTIONS(4006), - [anon_sym___fastcall] = ACTIONS(4006), - [anon_sym___thiscall] = ACTIONS(4006), - [anon_sym___vectorcall] = ACTIONS(4006), - [anon_sym_LBRACE] = ACTIONS(4008), - [anon_sym_RBRACE] = ACTIONS(4008), - [anon_sym_signed] = ACTIONS(4006), - [anon_sym_unsigned] = ACTIONS(4006), - [anon_sym_long] = ACTIONS(4006), - [anon_sym_short] = ACTIONS(4006), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_static] = ACTIONS(4006), - [anon_sym_register] = ACTIONS(4006), - [anon_sym_inline] = ACTIONS(4006), - [anon_sym___inline] = ACTIONS(4006), - [anon_sym___inline__] = ACTIONS(4006), - [anon_sym___forceinline] = ACTIONS(4006), - [anon_sym_thread_local] = ACTIONS(4006), - [anon_sym___thread] = ACTIONS(4006), - [anon_sym_const] = ACTIONS(4006), - [anon_sym_constexpr] = ACTIONS(4006), - [anon_sym_volatile] = ACTIONS(4006), - [anon_sym_restrict] = ACTIONS(4006), - [anon_sym___restrict__] = ACTIONS(4006), - [anon_sym__Atomic] = ACTIONS(4006), - [anon_sym__Noreturn] = ACTIONS(4006), - [anon_sym_noreturn] = ACTIONS(4006), - [anon_sym__Nonnull] = ACTIONS(4006), - [anon_sym_mutable] = ACTIONS(4006), - [anon_sym_constinit] = ACTIONS(4006), - [anon_sym_consteval] = ACTIONS(4006), - [anon_sym_alignas] = ACTIONS(4006), - [anon_sym__Alignas] = ACTIONS(4006), - [sym_primitive_type] = ACTIONS(4006), - [anon_sym_enum] = ACTIONS(4006), - [anon_sym_class] = ACTIONS(4006), - [anon_sym_struct] = ACTIONS(4006), - [anon_sym_union] = ACTIONS(4006), - [anon_sym_if] = ACTIONS(4006), - [anon_sym_switch] = ACTIONS(4006), - [anon_sym_case] = ACTIONS(4006), - [anon_sym_default] = ACTIONS(4006), - [anon_sym_while] = ACTIONS(4006), - [anon_sym_do] = ACTIONS(4006), - [anon_sym_for] = ACTIONS(4006), - [anon_sym_return] = ACTIONS(4006), - [anon_sym_break] = ACTIONS(4006), - [anon_sym_continue] = ACTIONS(4006), - [anon_sym_goto] = ACTIONS(4006), - [anon_sym___try] = ACTIONS(4006), - [anon_sym___leave] = ACTIONS(4006), - [anon_sym_not] = ACTIONS(4006), - [anon_sym_compl] = ACTIONS(4006), - [anon_sym_DASH_DASH] = ACTIONS(4008), - [anon_sym_PLUS_PLUS] = ACTIONS(4008), - [anon_sym_sizeof] = ACTIONS(4006), - [anon_sym___alignof__] = ACTIONS(4006), - [anon_sym___alignof] = ACTIONS(4006), - [anon_sym__alignof] = ACTIONS(4006), - [anon_sym_alignof] = ACTIONS(4006), - [anon_sym__Alignof] = ACTIONS(4006), - [anon_sym_offsetof] = ACTIONS(4006), - [anon_sym__Generic] = ACTIONS(4006), - [anon_sym_typename] = ACTIONS(4006), - [anon_sym_asm] = ACTIONS(4006), - [anon_sym___asm__] = ACTIONS(4006), - [anon_sym___asm] = ACTIONS(4006), - [sym_number_literal] = ACTIONS(4008), - [anon_sym_L_SQUOTE] = ACTIONS(4008), - [anon_sym_u_SQUOTE] = ACTIONS(4008), - [anon_sym_U_SQUOTE] = ACTIONS(4008), - [anon_sym_u8_SQUOTE] = ACTIONS(4008), - [anon_sym_SQUOTE] = ACTIONS(4008), - [anon_sym_L_DQUOTE] = ACTIONS(4008), - [anon_sym_u_DQUOTE] = ACTIONS(4008), - [anon_sym_U_DQUOTE] = ACTIONS(4008), - [anon_sym_u8_DQUOTE] = ACTIONS(4008), - [anon_sym_DQUOTE] = ACTIONS(4008), - [sym_true] = ACTIONS(4006), - [sym_false] = ACTIONS(4006), - [anon_sym_NULL] = ACTIONS(4006), - [anon_sym_nullptr] = ACTIONS(4006), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4006), - [anon_sym_decltype] = ACTIONS(4006), - [anon_sym_explicit] = ACTIONS(4006), - [anon_sym_template] = ACTIONS(4006), - [anon_sym_operator] = ACTIONS(4006), - [anon_sym_try] = ACTIONS(4006), - [anon_sym_delete] = ACTIONS(4006), - [anon_sym_throw] = ACTIONS(4006), - [anon_sym_namespace] = ACTIONS(4006), - [anon_sym_static_assert] = ACTIONS(4006), - [anon_sym_concept] = ACTIONS(4006), - [anon_sym_co_return] = ACTIONS(4006), - [anon_sym_co_yield] = ACTIONS(4006), - [anon_sym_R_DQUOTE] = ACTIONS(4008), - [anon_sym_LR_DQUOTE] = ACTIONS(4008), - [anon_sym_uR_DQUOTE] = ACTIONS(4008), - [anon_sym_UR_DQUOTE] = ACTIONS(4008), - [anon_sym_u8R_DQUOTE] = ACTIONS(4008), - [anon_sym_co_await] = ACTIONS(4006), - [anon_sym_new] = ACTIONS(4006), - [anon_sym_requires] = ACTIONS(4006), - [anon_sym_CARET_CARET] = ACTIONS(4008), - [anon_sym_LBRACK_COLON] = ACTIONS(4008), - [sym_this] = ACTIONS(4006), + [STATE(693)] = { + [sym_identifier] = ACTIONS(4212), + [aux_sym_preproc_include_token1] = ACTIONS(4212), + [aux_sym_preproc_def_token1] = ACTIONS(4212), + [aux_sym_preproc_if_token1] = ACTIONS(4212), + [aux_sym_preproc_if_token2] = ACTIONS(4212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4212), + [sym_preproc_directive] = ACTIONS(4212), + [anon_sym_LPAREN2] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4212), + [anon_sym_PLUS] = ACTIONS(4212), + [anon_sym_STAR] = ACTIONS(4214), + [anon_sym_AMP_AMP] = ACTIONS(4214), + [anon_sym_AMP] = ACTIONS(4212), + [anon_sym_SEMI] = ACTIONS(4214), + [anon_sym___extension__] = ACTIONS(4212), + [anon_sym_typedef] = ACTIONS(4212), + [anon_sym_virtual] = ACTIONS(4212), + [anon_sym_extern] = ACTIONS(4212), + [anon_sym___attribute__] = ACTIONS(4212), + [anon_sym___attribute] = ACTIONS(4212), + [anon_sym_using] = ACTIONS(4212), + [anon_sym_COLON_COLON] = ACTIONS(4214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4214), + [anon_sym___declspec] = ACTIONS(4212), + [anon_sym___based] = ACTIONS(4212), + [anon_sym___cdecl] = ACTIONS(4212), + [anon_sym___clrcall] = ACTIONS(4212), + [anon_sym___stdcall] = ACTIONS(4212), + [anon_sym___fastcall] = ACTIONS(4212), + [anon_sym___thiscall] = ACTIONS(4212), + [anon_sym___vectorcall] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4214), + [anon_sym_signed] = ACTIONS(4212), + [anon_sym_unsigned] = ACTIONS(4212), + [anon_sym_long] = ACTIONS(4212), + [anon_sym_short] = ACTIONS(4212), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_static] = ACTIONS(4212), + [anon_sym_register] = ACTIONS(4212), + [anon_sym_inline] = ACTIONS(4212), + [anon_sym___inline] = ACTIONS(4212), + [anon_sym___inline__] = ACTIONS(4212), + [anon_sym___forceinline] = ACTIONS(4212), + [anon_sym_thread_local] = ACTIONS(4212), + [anon_sym___thread] = ACTIONS(4212), + [anon_sym_const] = ACTIONS(4212), + [anon_sym_constexpr] = ACTIONS(4212), + [anon_sym_volatile] = ACTIONS(4212), + [anon_sym_restrict] = ACTIONS(4212), + [anon_sym___restrict__] = ACTIONS(4212), + [anon_sym__Atomic] = ACTIONS(4212), + [anon_sym__Noreturn] = ACTIONS(4212), + [anon_sym_noreturn] = ACTIONS(4212), + [anon_sym__Nonnull] = ACTIONS(4212), + [anon_sym_mutable] = ACTIONS(4212), + [anon_sym_constinit] = ACTIONS(4212), + [anon_sym_consteval] = ACTIONS(4212), + [anon_sym_alignas] = ACTIONS(4212), + [anon_sym__Alignas] = ACTIONS(4212), + [sym_primitive_type] = ACTIONS(4212), + [anon_sym_enum] = ACTIONS(4212), + [anon_sym_class] = ACTIONS(4212), + [anon_sym_struct] = ACTIONS(4212), + [anon_sym_union] = ACTIONS(4212), + [anon_sym_if] = ACTIONS(4212), + [anon_sym_switch] = ACTIONS(4212), + [anon_sym_case] = ACTIONS(4212), + [anon_sym_default] = ACTIONS(4212), + [anon_sym_while] = ACTIONS(4212), + [anon_sym_do] = ACTIONS(4212), + [anon_sym_for] = ACTIONS(4212), + [anon_sym_return] = ACTIONS(4212), + [anon_sym_break] = ACTIONS(4212), + [anon_sym_continue] = ACTIONS(4212), + [anon_sym_goto] = ACTIONS(4212), + [anon_sym___try] = ACTIONS(4212), + [anon_sym___leave] = ACTIONS(4212), + [anon_sym_not] = ACTIONS(4212), + [anon_sym_compl] = ACTIONS(4212), + [anon_sym_DASH_DASH] = ACTIONS(4214), + [anon_sym_PLUS_PLUS] = ACTIONS(4214), + [anon_sym_sizeof] = ACTIONS(4212), + [anon_sym___alignof__] = ACTIONS(4212), + [anon_sym___alignof] = ACTIONS(4212), + [anon_sym__alignof] = ACTIONS(4212), + [anon_sym_alignof] = ACTIONS(4212), + [anon_sym__Alignof] = ACTIONS(4212), + [anon_sym_offsetof] = ACTIONS(4212), + [anon_sym__Generic] = ACTIONS(4212), + [anon_sym_typename] = ACTIONS(4212), + [anon_sym_asm] = ACTIONS(4212), + [anon_sym___asm__] = ACTIONS(4212), + [anon_sym___asm] = ACTIONS(4212), + [sym_number_literal] = ACTIONS(4214), + [anon_sym_L_SQUOTE] = ACTIONS(4214), + [anon_sym_u_SQUOTE] = ACTIONS(4214), + [anon_sym_U_SQUOTE] = ACTIONS(4214), + [anon_sym_u8_SQUOTE] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4214), + [anon_sym_L_DQUOTE] = ACTIONS(4214), + [anon_sym_u_DQUOTE] = ACTIONS(4214), + [anon_sym_U_DQUOTE] = ACTIONS(4214), + [anon_sym_u8_DQUOTE] = ACTIONS(4214), + [anon_sym_DQUOTE] = ACTIONS(4214), + [sym_true] = ACTIONS(4212), + [sym_false] = ACTIONS(4212), + [anon_sym_NULL] = ACTIONS(4212), + [anon_sym_nullptr] = ACTIONS(4212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4212), + [anon_sym_decltype] = ACTIONS(4212), + [anon_sym_explicit] = ACTIONS(4212), + [anon_sym_export] = ACTIONS(4212), + [anon_sym_module] = ACTIONS(4212), + [anon_sym_import] = ACTIONS(4212), + [anon_sym_template] = ACTIONS(4212), + [anon_sym_operator] = ACTIONS(4212), + [anon_sym_try] = ACTIONS(4212), + [anon_sym_delete] = ACTIONS(4212), + [anon_sym_throw] = ACTIONS(4212), + [anon_sym_namespace] = ACTIONS(4212), + [anon_sym_static_assert] = ACTIONS(4212), + [anon_sym_concept] = ACTIONS(4212), + [anon_sym_co_return] = ACTIONS(4212), + [anon_sym_co_yield] = ACTIONS(4212), + [anon_sym_R_DQUOTE] = ACTIONS(4214), + [anon_sym_LR_DQUOTE] = ACTIONS(4214), + [anon_sym_uR_DQUOTE] = ACTIONS(4214), + [anon_sym_UR_DQUOTE] = ACTIONS(4214), + [anon_sym_u8R_DQUOTE] = ACTIONS(4214), + [anon_sym_co_await] = ACTIONS(4212), + [anon_sym_new] = ACTIONS(4212), + [anon_sym_requires] = ACTIONS(4212), + [anon_sym_CARET_CARET] = ACTIONS(4214), + [anon_sym_LBRACK_COLON] = ACTIONS(4214), + [sym_this] = ACTIONS(4212), }, - [STATE(838)] = { - [sym_identifier] = ACTIONS(4010), - [aux_sym_preproc_include_token1] = ACTIONS(4010), - [aux_sym_preproc_def_token1] = ACTIONS(4010), - [aux_sym_preproc_if_token1] = ACTIONS(4010), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4010), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4010), - [sym_preproc_directive] = ACTIONS(4010), - [anon_sym_LPAREN2] = ACTIONS(4012), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_TILDE] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4010), - [anon_sym_PLUS] = ACTIONS(4010), - [anon_sym_STAR] = ACTIONS(4012), - [anon_sym_AMP_AMP] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4012), - [anon_sym___extension__] = ACTIONS(4010), - [anon_sym_typedef] = ACTIONS(4010), - [anon_sym_virtual] = ACTIONS(4010), - [anon_sym_extern] = ACTIONS(4010), - [anon_sym___attribute__] = ACTIONS(4010), - [anon_sym___attribute] = ACTIONS(4010), - [anon_sym_using] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4012), - [anon_sym___declspec] = ACTIONS(4010), - [anon_sym___based] = ACTIONS(4010), - [anon_sym___cdecl] = ACTIONS(4010), - [anon_sym___clrcall] = ACTIONS(4010), - [anon_sym___stdcall] = ACTIONS(4010), - [anon_sym___fastcall] = ACTIONS(4010), - [anon_sym___thiscall] = ACTIONS(4010), - [anon_sym___vectorcall] = ACTIONS(4010), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_RBRACE] = ACTIONS(4012), - [anon_sym_signed] = ACTIONS(4010), - [anon_sym_unsigned] = ACTIONS(4010), - [anon_sym_long] = ACTIONS(4010), - [anon_sym_short] = ACTIONS(4010), - [anon_sym_LBRACK] = ACTIONS(4010), - [anon_sym_static] = ACTIONS(4010), - [anon_sym_register] = ACTIONS(4010), - [anon_sym_inline] = ACTIONS(4010), - [anon_sym___inline] = ACTIONS(4010), - [anon_sym___inline__] = ACTIONS(4010), - [anon_sym___forceinline] = ACTIONS(4010), - [anon_sym_thread_local] = ACTIONS(4010), - [anon_sym___thread] = ACTIONS(4010), - [anon_sym_const] = ACTIONS(4010), - [anon_sym_constexpr] = ACTIONS(4010), - [anon_sym_volatile] = ACTIONS(4010), - [anon_sym_restrict] = ACTIONS(4010), - [anon_sym___restrict__] = ACTIONS(4010), - [anon_sym__Atomic] = ACTIONS(4010), - [anon_sym__Noreturn] = ACTIONS(4010), - [anon_sym_noreturn] = ACTIONS(4010), - [anon_sym__Nonnull] = ACTIONS(4010), - [anon_sym_mutable] = ACTIONS(4010), - [anon_sym_constinit] = ACTIONS(4010), - [anon_sym_consteval] = ACTIONS(4010), - [anon_sym_alignas] = ACTIONS(4010), - [anon_sym__Alignas] = ACTIONS(4010), - [sym_primitive_type] = ACTIONS(4010), - [anon_sym_enum] = ACTIONS(4010), - [anon_sym_class] = ACTIONS(4010), - [anon_sym_struct] = ACTIONS(4010), - [anon_sym_union] = ACTIONS(4010), - [anon_sym_if] = ACTIONS(4010), - [anon_sym_switch] = ACTIONS(4010), - [anon_sym_case] = ACTIONS(4010), - [anon_sym_default] = ACTIONS(4010), - [anon_sym_while] = ACTIONS(4010), - [anon_sym_do] = ACTIONS(4010), - [anon_sym_for] = ACTIONS(4010), - [anon_sym_return] = ACTIONS(4010), - [anon_sym_break] = ACTIONS(4010), - [anon_sym_continue] = ACTIONS(4010), - [anon_sym_goto] = ACTIONS(4010), - [anon_sym___try] = ACTIONS(4010), - [anon_sym___leave] = ACTIONS(4010), - [anon_sym_not] = ACTIONS(4010), - [anon_sym_compl] = ACTIONS(4010), - [anon_sym_DASH_DASH] = ACTIONS(4012), - [anon_sym_PLUS_PLUS] = ACTIONS(4012), - [anon_sym_sizeof] = ACTIONS(4010), - [anon_sym___alignof__] = ACTIONS(4010), - [anon_sym___alignof] = ACTIONS(4010), - [anon_sym__alignof] = ACTIONS(4010), - [anon_sym_alignof] = ACTIONS(4010), - [anon_sym__Alignof] = ACTIONS(4010), - [anon_sym_offsetof] = ACTIONS(4010), - [anon_sym__Generic] = ACTIONS(4010), - [anon_sym_typename] = ACTIONS(4010), - [anon_sym_asm] = ACTIONS(4010), - [anon_sym___asm__] = ACTIONS(4010), - [anon_sym___asm] = ACTIONS(4010), - [sym_number_literal] = ACTIONS(4012), - [anon_sym_L_SQUOTE] = ACTIONS(4012), - [anon_sym_u_SQUOTE] = ACTIONS(4012), - [anon_sym_U_SQUOTE] = ACTIONS(4012), - [anon_sym_u8_SQUOTE] = ACTIONS(4012), - [anon_sym_SQUOTE] = ACTIONS(4012), - [anon_sym_L_DQUOTE] = ACTIONS(4012), - [anon_sym_u_DQUOTE] = ACTIONS(4012), - [anon_sym_U_DQUOTE] = ACTIONS(4012), - [anon_sym_u8_DQUOTE] = ACTIONS(4012), - [anon_sym_DQUOTE] = ACTIONS(4012), - [sym_true] = ACTIONS(4010), - [sym_false] = ACTIONS(4010), - [anon_sym_NULL] = ACTIONS(4010), - [anon_sym_nullptr] = ACTIONS(4010), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4010), - [anon_sym_decltype] = ACTIONS(4010), - [anon_sym_explicit] = ACTIONS(4010), - [anon_sym_template] = ACTIONS(4010), - [anon_sym_operator] = ACTIONS(4010), - [anon_sym_try] = ACTIONS(4010), - [anon_sym_delete] = ACTIONS(4010), - [anon_sym_throw] = ACTIONS(4010), - [anon_sym_namespace] = ACTIONS(4010), - [anon_sym_static_assert] = ACTIONS(4010), - [anon_sym_concept] = ACTIONS(4010), - [anon_sym_co_return] = ACTIONS(4010), - [anon_sym_co_yield] = ACTIONS(4010), - [anon_sym_R_DQUOTE] = ACTIONS(4012), - [anon_sym_LR_DQUOTE] = ACTIONS(4012), - [anon_sym_uR_DQUOTE] = ACTIONS(4012), - [anon_sym_UR_DQUOTE] = ACTIONS(4012), - [anon_sym_u8R_DQUOTE] = ACTIONS(4012), - [anon_sym_co_await] = ACTIONS(4010), - [anon_sym_new] = ACTIONS(4010), - [anon_sym_requires] = ACTIONS(4010), - [anon_sym_CARET_CARET] = ACTIONS(4012), - [anon_sym_LBRACK_COLON] = ACTIONS(4012), - [sym_this] = ACTIONS(4010), + [STATE(694)] = { + [sym_identifier] = ACTIONS(3588), + [aux_sym_preproc_include_token1] = ACTIONS(3588), + [aux_sym_preproc_def_token1] = ACTIONS(3588), + [aux_sym_preproc_if_token1] = ACTIONS(3588), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3588), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3588), + [sym_preproc_directive] = ACTIONS(3588), + [anon_sym_LPAREN2] = ACTIONS(3590), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3588), + [anon_sym_STAR] = ACTIONS(3590), + [anon_sym_AMP_AMP] = ACTIONS(3590), + [anon_sym_AMP] = ACTIONS(3588), + [anon_sym_SEMI] = ACTIONS(3590), + [anon_sym___extension__] = ACTIONS(3588), + [anon_sym_typedef] = ACTIONS(3588), + [anon_sym_virtual] = ACTIONS(3588), + [anon_sym_extern] = ACTIONS(3588), + [anon_sym___attribute__] = ACTIONS(3588), + [anon_sym___attribute] = ACTIONS(3588), + [anon_sym_using] = ACTIONS(3588), + [anon_sym_COLON_COLON] = ACTIONS(3590), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3590), + [anon_sym___declspec] = ACTIONS(3588), + [anon_sym___based] = ACTIONS(3588), + [anon_sym___cdecl] = ACTIONS(3588), + [anon_sym___clrcall] = ACTIONS(3588), + [anon_sym___stdcall] = ACTIONS(3588), + [anon_sym___fastcall] = ACTIONS(3588), + [anon_sym___thiscall] = ACTIONS(3588), + [anon_sym___vectorcall] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3590), + [anon_sym_RBRACE] = ACTIONS(3590), + [anon_sym_signed] = ACTIONS(3588), + [anon_sym_unsigned] = ACTIONS(3588), + [anon_sym_long] = ACTIONS(3588), + [anon_sym_short] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3588), + [anon_sym_static] = ACTIONS(3588), + [anon_sym_register] = ACTIONS(3588), + [anon_sym_inline] = ACTIONS(3588), + [anon_sym___inline] = ACTIONS(3588), + [anon_sym___inline__] = ACTIONS(3588), + [anon_sym___forceinline] = ACTIONS(3588), + [anon_sym_thread_local] = ACTIONS(3588), + [anon_sym___thread] = ACTIONS(3588), + [anon_sym_const] = ACTIONS(3588), + [anon_sym_constexpr] = ACTIONS(3588), + [anon_sym_volatile] = ACTIONS(3588), + [anon_sym_restrict] = ACTIONS(3588), + [anon_sym___restrict__] = ACTIONS(3588), + [anon_sym__Atomic] = ACTIONS(3588), + [anon_sym__Noreturn] = ACTIONS(3588), + [anon_sym_noreturn] = ACTIONS(3588), + [anon_sym__Nonnull] = ACTIONS(3588), + [anon_sym_mutable] = ACTIONS(3588), + [anon_sym_constinit] = ACTIONS(3588), + [anon_sym_consteval] = ACTIONS(3588), + [anon_sym_alignas] = ACTIONS(3588), + [anon_sym__Alignas] = ACTIONS(3588), + [sym_primitive_type] = ACTIONS(3588), + [anon_sym_enum] = ACTIONS(3588), + [anon_sym_class] = ACTIONS(3588), + [anon_sym_struct] = ACTIONS(3588), + [anon_sym_union] = ACTIONS(3588), + [anon_sym_if] = ACTIONS(3588), + [anon_sym_else] = ACTIONS(3588), + [anon_sym_switch] = ACTIONS(3588), + [anon_sym_case] = ACTIONS(3588), + [anon_sym_default] = ACTIONS(3588), + [anon_sym_while] = ACTIONS(3588), + [anon_sym_do] = ACTIONS(3588), + [anon_sym_for] = ACTIONS(3588), + [anon_sym_return] = ACTIONS(3588), + [anon_sym_break] = ACTIONS(3588), + [anon_sym_continue] = ACTIONS(3588), + [anon_sym_goto] = ACTIONS(3588), + [anon_sym___try] = ACTIONS(3588), + [anon_sym___leave] = ACTIONS(3588), + [anon_sym_not] = ACTIONS(3588), + [anon_sym_compl] = ACTIONS(3588), + [anon_sym_DASH_DASH] = ACTIONS(3590), + [anon_sym_PLUS_PLUS] = ACTIONS(3590), + [anon_sym_sizeof] = ACTIONS(3588), + [anon_sym___alignof__] = ACTIONS(3588), + [anon_sym___alignof] = ACTIONS(3588), + [anon_sym__alignof] = ACTIONS(3588), + [anon_sym_alignof] = ACTIONS(3588), + [anon_sym__Alignof] = ACTIONS(3588), + [anon_sym_offsetof] = ACTIONS(3588), + [anon_sym__Generic] = ACTIONS(3588), + [anon_sym_typename] = ACTIONS(3588), + [anon_sym_asm] = ACTIONS(3588), + [anon_sym___asm__] = ACTIONS(3588), + [anon_sym___asm] = ACTIONS(3588), + [sym_number_literal] = ACTIONS(3590), + [anon_sym_L_SQUOTE] = ACTIONS(3590), + [anon_sym_u_SQUOTE] = ACTIONS(3590), + [anon_sym_U_SQUOTE] = ACTIONS(3590), + [anon_sym_u8_SQUOTE] = ACTIONS(3590), + [anon_sym_SQUOTE] = ACTIONS(3590), + [anon_sym_L_DQUOTE] = ACTIONS(3590), + [anon_sym_u_DQUOTE] = ACTIONS(3590), + [anon_sym_U_DQUOTE] = ACTIONS(3590), + [anon_sym_u8_DQUOTE] = ACTIONS(3590), + [anon_sym_DQUOTE] = ACTIONS(3590), + [sym_true] = ACTIONS(3588), + [sym_false] = ACTIONS(3588), + [anon_sym_NULL] = ACTIONS(3588), + [anon_sym_nullptr] = ACTIONS(3588), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3588), + [anon_sym_decltype] = ACTIONS(3588), + [anon_sym_explicit] = ACTIONS(3588), + [anon_sym_export] = ACTIONS(3588), + [anon_sym_import] = ACTIONS(3588), + [anon_sym_template] = ACTIONS(3588), + [anon_sym_operator] = ACTIONS(3588), + [anon_sym_try] = ACTIONS(3588), + [anon_sym_delete] = ACTIONS(3588), + [anon_sym_throw] = ACTIONS(3588), + [anon_sym_namespace] = ACTIONS(3588), + [anon_sym_static_assert] = ACTIONS(3588), + [anon_sym_concept] = ACTIONS(3588), + [anon_sym_co_return] = ACTIONS(3588), + [anon_sym_co_yield] = ACTIONS(3588), + [anon_sym_R_DQUOTE] = ACTIONS(3590), + [anon_sym_LR_DQUOTE] = ACTIONS(3590), + [anon_sym_uR_DQUOTE] = ACTIONS(3590), + [anon_sym_UR_DQUOTE] = ACTIONS(3590), + [anon_sym_u8R_DQUOTE] = ACTIONS(3590), + [anon_sym_co_await] = ACTIONS(3588), + [anon_sym_new] = ACTIONS(3588), + [anon_sym_requires] = ACTIONS(3588), + [anon_sym_CARET_CARET] = ACTIONS(3590), + [anon_sym_LBRACK_COLON] = ACTIONS(3590), + [sym_this] = ACTIONS(3588), }, - [STATE(839)] = { - [sym_identifier] = ACTIONS(4014), - [aux_sym_preproc_include_token1] = ACTIONS(4014), - [aux_sym_preproc_def_token1] = ACTIONS(4014), - [aux_sym_preproc_if_token1] = ACTIONS(4014), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4014), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4014), - [sym_preproc_directive] = ACTIONS(4014), - [anon_sym_LPAREN2] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_TILDE] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4014), - [anon_sym_PLUS] = ACTIONS(4014), - [anon_sym_STAR] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4014), - [anon_sym_SEMI] = ACTIONS(4016), - [anon_sym___extension__] = ACTIONS(4014), - [anon_sym_typedef] = ACTIONS(4014), - [anon_sym_virtual] = ACTIONS(4014), - [anon_sym_extern] = ACTIONS(4014), - [anon_sym___attribute__] = ACTIONS(4014), - [anon_sym___attribute] = ACTIONS(4014), - [anon_sym_using] = ACTIONS(4014), - [anon_sym_COLON_COLON] = ACTIONS(4016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4016), - [anon_sym___declspec] = ACTIONS(4014), - [anon_sym___based] = ACTIONS(4014), - [anon_sym___cdecl] = ACTIONS(4014), - [anon_sym___clrcall] = ACTIONS(4014), - [anon_sym___stdcall] = ACTIONS(4014), - [anon_sym___fastcall] = ACTIONS(4014), - [anon_sym___thiscall] = ACTIONS(4014), - [anon_sym___vectorcall] = ACTIONS(4014), - [anon_sym_LBRACE] = ACTIONS(4016), - [anon_sym_RBRACE] = ACTIONS(4016), - [anon_sym_signed] = ACTIONS(4014), - [anon_sym_unsigned] = ACTIONS(4014), - [anon_sym_long] = ACTIONS(4014), - [anon_sym_short] = ACTIONS(4014), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_static] = ACTIONS(4014), - [anon_sym_register] = ACTIONS(4014), - [anon_sym_inline] = ACTIONS(4014), - [anon_sym___inline] = ACTIONS(4014), - [anon_sym___inline__] = ACTIONS(4014), - [anon_sym___forceinline] = ACTIONS(4014), - [anon_sym_thread_local] = ACTIONS(4014), - [anon_sym___thread] = ACTIONS(4014), - [anon_sym_const] = ACTIONS(4014), - [anon_sym_constexpr] = ACTIONS(4014), - [anon_sym_volatile] = ACTIONS(4014), - [anon_sym_restrict] = ACTIONS(4014), - [anon_sym___restrict__] = ACTIONS(4014), - [anon_sym__Atomic] = ACTIONS(4014), - [anon_sym__Noreturn] = ACTIONS(4014), - [anon_sym_noreturn] = ACTIONS(4014), - [anon_sym__Nonnull] = ACTIONS(4014), - [anon_sym_mutable] = ACTIONS(4014), - [anon_sym_constinit] = ACTIONS(4014), - [anon_sym_consteval] = ACTIONS(4014), - [anon_sym_alignas] = ACTIONS(4014), - [anon_sym__Alignas] = ACTIONS(4014), - [sym_primitive_type] = ACTIONS(4014), - [anon_sym_enum] = ACTIONS(4014), - [anon_sym_class] = ACTIONS(4014), - [anon_sym_struct] = ACTIONS(4014), - [anon_sym_union] = ACTIONS(4014), - [anon_sym_if] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4014), - [anon_sym_case] = ACTIONS(4014), - [anon_sym_default] = ACTIONS(4014), - [anon_sym_while] = ACTIONS(4014), - [anon_sym_do] = ACTIONS(4014), - [anon_sym_for] = ACTIONS(4014), - [anon_sym_return] = ACTIONS(4014), - [anon_sym_break] = ACTIONS(4014), - [anon_sym_continue] = ACTIONS(4014), - [anon_sym_goto] = ACTIONS(4014), - [anon_sym___try] = ACTIONS(4014), - [anon_sym___leave] = ACTIONS(4014), - [anon_sym_not] = ACTIONS(4014), - [anon_sym_compl] = ACTIONS(4014), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_PLUS_PLUS] = ACTIONS(4016), - [anon_sym_sizeof] = ACTIONS(4014), - [anon_sym___alignof__] = ACTIONS(4014), - [anon_sym___alignof] = ACTIONS(4014), - [anon_sym__alignof] = ACTIONS(4014), - [anon_sym_alignof] = ACTIONS(4014), - [anon_sym__Alignof] = ACTIONS(4014), - [anon_sym_offsetof] = ACTIONS(4014), - [anon_sym__Generic] = ACTIONS(4014), - [anon_sym_typename] = ACTIONS(4014), - [anon_sym_asm] = ACTIONS(4014), - [anon_sym___asm__] = ACTIONS(4014), - [anon_sym___asm] = ACTIONS(4014), - [sym_number_literal] = ACTIONS(4016), - [anon_sym_L_SQUOTE] = ACTIONS(4016), - [anon_sym_u_SQUOTE] = ACTIONS(4016), - [anon_sym_U_SQUOTE] = ACTIONS(4016), - [anon_sym_u8_SQUOTE] = ACTIONS(4016), - [anon_sym_SQUOTE] = ACTIONS(4016), - [anon_sym_L_DQUOTE] = ACTIONS(4016), - [anon_sym_u_DQUOTE] = ACTIONS(4016), - [anon_sym_U_DQUOTE] = ACTIONS(4016), - [anon_sym_u8_DQUOTE] = ACTIONS(4016), - [anon_sym_DQUOTE] = ACTIONS(4016), - [sym_true] = ACTIONS(4014), - [sym_false] = ACTIONS(4014), - [anon_sym_NULL] = ACTIONS(4014), - [anon_sym_nullptr] = ACTIONS(4014), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4014), - [anon_sym_decltype] = ACTIONS(4014), - [anon_sym_explicit] = ACTIONS(4014), - [anon_sym_template] = ACTIONS(4014), - [anon_sym_operator] = ACTIONS(4014), - [anon_sym_try] = ACTIONS(4014), - [anon_sym_delete] = ACTIONS(4014), - [anon_sym_throw] = ACTIONS(4014), - [anon_sym_namespace] = ACTIONS(4014), - [anon_sym_static_assert] = ACTIONS(4014), - [anon_sym_concept] = ACTIONS(4014), - [anon_sym_co_return] = ACTIONS(4014), - [anon_sym_co_yield] = ACTIONS(4014), - [anon_sym_R_DQUOTE] = ACTIONS(4016), - [anon_sym_LR_DQUOTE] = ACTIONS(4016), - [anon_sym_uR_DQUOTE] = ACTIONS(4016), - [anon_sym_UR_DQUOTE] = ACTIONS(4016), - [anon_sym_u8R_DQUOTE] = ACTIONS(4016), - [anon_sym_co_await] = ACTIONS(4014), - [anon_sym_new] = ACTIONS(4014), - [anon_sym_requires] = ACTIONS(4014), - [anon_sym_CARET_CARET] = ACTIONS(4016), - [anon_sym_LBRACK_COLON] = ACTIONS(4016), - [sym_this] = ACTIONS(4014), + [STATE(695)] = { + [sym_identifier] = ACTIONS(4246), + [aux_sym_preproc_include_token1] = ACTIONS(4246), + [aux_sym_preproc_def_token1] = ACTIONS(4246), + [aux_sym_preproc_if_token1] = ACTIONS(4246), + [aux_sym_preproc_if_token2] = ACTIONS(4246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4246), + [sym_preproc_directive] = ACTIONS(4246), + [anon_sym_LPAREN2] = ACTIONS(4248), + [anon_sym_BANG] = ACTIONS(4248), + [anon_sym_TILDE] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4246), + [anon_sym_STAR] = ACTIONS(4248), + [anon_sym_AMP_AMP] = ACTIONS(4248), + [anon_sym_AMP] = ACTIONS(4246), + [anon_sym_SEMI] = ACTIONS(4248), + [anon_sym___extension__] = ACTIONS(4246), + [anon_sym_typedef] = ACTIONS(4246), + [anon_sym_virtual] = ACTIONS(4246), + [anon_sym_extern] = ACTIONS(4246), + [anon_sym___attribute__] = ACTIONS(4246), + [anon_sym___attribute] = ACTIONS(4246), + [anon_sym_using] = ACTIONS(4246), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4248), + [anon_sym___declspec] = ACTIONS(4246), + [anon_sym___based] = ACTIONS(4246), + [anon_sym___cdecl] = ACTIONS(4246), + [anon_sym___clrcall] = ACTIONS(4246), + [anon_sym___stdcall] = ACTIONS(4246), + [anon_sym___fastcall] = ACTIONS(4246), + [anon_sym___thiscall] = ACTIONS(4246), + [anon_sym___vectorcall] = ACTIONS(4246), + [anon_sym_LBRACE] = ACTIONS(4248), + [anon_sym_signed] = ACTIONS(4246), + [anon_sym_unsigned] = ACTIONS(4246), + [anon_sym_long] = ACTIONS(4246), + [anon_sym_short] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_static] = ACTIONS(4246), + [anon_sym_register] = ACTIONS(4246), + [anon_sym_inline] = ACTIONS(4246), + [anon_sym___inline] = ACTIONS(4246), + [anon_sym___inline__] = ACTIONS(4246), + [anon_sym___forceinline] = ACTIONS(4246), + [anon_sym_thread_local] = ACTIONS(4246), + [anon_sym___thread] = ACTIONS(4246), + [anon_sym_const] = ACTIONS(4246), + [anon_sym_constexpr] = ACTIONS(4246), + [anon_sym_volatile] = ACTIONS(4246), + [anon_sym_restrict] = ACTIONS(4246), + [anon_sym___restrict__] = ACTIONS(4246), + [anon_sym__Atomic] = ACTIONS(4246), + [anon_sym__Noreturn] = ACTIONS(4246), + [anon_sym_noreturn] = ACTIONS(4246), + [anon_sym__Nonnull] = ACTIONS(4246), + [anon_sym_mutable] = ACTIONS(4246), + [anon_sym_constinit] = ACTIONS(4246), + [anon_sym_consteval] = ACTIONS(4246), + [anon_sym_alignas] = ACTIONS(4246), + [anon_sym__Alignas] = ACTIONS(4246), + [sym_primitive_type] = ACTIONS(4246), + [anon_sym_enum] = ACTIONS(4246), + [anon_sym_class] = ACTIONS(4246), + [anon_sym_struct] = ACTIONS(4246), + [anon_sym_union] = ACTIONS(4246), + [anon_sym_if] = ACTIONS(4246), + [anon_sym_switch] = ACTIONS(4246), + [anon_sym_case] = ACTIONS(4246), + [anon_sym_default] = ACTIONS(4246), + [anon_sym_while] = ACTIONS(4246), + [anon_sym_do] = ACTIONS(4246), + [anon_sym_for] = ACTIONS(4246), + [anon_sym_return] = ACTIONS(4246), + [anon_sym_break] = ACTIONS(4246), + [anon_sym_continue] = ACTIONS(4246), + [anon_sym_goto] = ACTIONS(4246), + [anon_sym___try] = ACTIONS(4246), + [anon_sym___leave] = ACTIONS(4246), + [anon_sym_not] = ACTIONS(4246), + [anon_sym_compl] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4248), + [anon_sym_PLUS_PLUS] = ACTIONS(4248), + [anon_sym_sizeof] = ACTIONS(4246), + [anon_sym___alignof__] = ACTIONS(4246), + [anon_sym___alignof] = ACTIONS(4246), + [anon_sym__alignof] = ACTIONS(4246), + [anon_sym_alignof] = ACTIONS(4246), + [anon_sym__Alignof] = ACTIONS(4246), + [anon_sym_offsetof] = ACTIONS(4246), + [anon_sym__Generic] = ACTIONS(4246), + [anon_sym_typename] = ACTIONS(4246), + [anon_sym_asm] = ACTIONS(4246), + [anon_sym___asm__] = ACTIONS(4246), + [anon_sym___asm] = ACTIONS(4246), + [sym_number_literal] = ACTIONS(4248), + [anon_sym_L_SQUOTE] = ACTIONS(4248), + [anon_sym_u_SQUOTE] = ACTIONS(4248), + [anon_sym_U_SQUOTE] = ACTIONS(4248), + [anon_sym_u8_SQUOTE] = ACTIONS(4248), + [anon_sym_SQUOTE] = ACTIONS(4248), + [anon_sym_L_DQUOTE] = ACTIONS(4248), + [anon_sym_u_DQUOTE] = ACTIONS(4248), + [anon_sym_U_DQUOTE] = ACTIONS(4248), + [anon_sym_u8_DQUOTE] = ACTIONS(4248), + [anon_sym_DQUOTE] = ACTIONS(4248), + [sym_true] = ACTIONS(4246), + [sym_false] = ACTIONS(4246), + [anon_sym_NULL] = ACTIONS(4246), + [anon_sym_nullptr] = ACTIONS(4246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4246), + [anon_sym_decltype] = ACTIONS(4246), + [anon_sym_explicit] = ACTIONS(4246), + [anon_sym_export] = ACTIONS(4246), + [anon_sym_module] = ACTIONS(4246), + [anon_sym_import] = ACTIONS(4246), + [anon_sym_template] = ACTIONS(4246), + [anon_sym_operator] = ACTIONS(4246), + [anon_sym_try] = ACTIONS(4246), + [anon_sym_delete] = ACTIONS(4246), + [anon_sym_throw] = ACTIONS(4246), + [anon_sym_namespace] = ACTIONS(4246), + [anon_sym_static_assert] = ACTIONS(4246), + [anon_sym_concept] = ACTIONS(4246), + [anon_sym_co_return] = ACTIONS(4246), + [anon_sym_co_yield] = ACTIONS(4246), + [anon_sym_R_DQUOTE] = ACTIONS(4248), + [anon_sym_LR_DQUOTE] = ACTIONS(4248), + [anon_sym_uR_DQUOTE] = ACTIONS(4248), + [anon_sym_UR_DQUOTE] = ACTIONS(4248), + [anon_sym_u8R_DQUOTE] = ACTIONS(4248), + [anon_sym_co_await] = ACTIONS(4246), + [anon_sym_new] = ACTIONS(4246), + [anon_sym_requires] = ACTIONS(4246), + [anon_sym_CARET_CARET] = ACTIONS(4248), + [anon_sym_LBRACK_COLON] = ACTIONS(4248), + [sym_this] = ACTIONS(4246), }, - [STATE(840)] = { - [sym_identifier] = ACTIONS(4096), - [aux_sym_preproc_include_token1] = ACTIONS(4096), - [aux_sym_preproc_def_token1] = ACTIONS(4096), - [aux_sym_preproc_if_token1] = ACTIONS(4096), - [aux_sym_preproc_if_token2] = ACTIONS(4096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), - [sym_preproc_directive] = ACTIONS(4096), - [anon_sym_LPAREN2] = ACTIONS(4098), - [anon_sym_BANG] = ACTIONS(4098), - [anon_sym_TILDE] = ACTIONS(4098), - [anon_sym_DASH] = ACTIONS(4096), - [anon_sym_PLUS] = ACTIONS(4096), - [anon_sym_STAR] = ACTIONS(4098), - [anon_sym_AMP_AMP] = ACTIONS(4098), - [anon_sym_AMP] = ACTIONS(4096), - [anon_sym_SEMI] = ACTIONS(4098), - [anon_sym___extension__] = ACTIONS(4096), - [anon_sym_typedef] = ACTIONS(4096), - [anon_sym_virtual] = ACTIONS(4096), - [anon_sym_extern] = ACTIONS(4096), - [anon_sym___attribute__] = ACTIONS(4096), - [anon_sym___attribute] = ACTIONS(4096), - [anon_sym_using] = ACTIONS(4096), - [anon_sym_COLON_COLON] = ACTIONS(4098), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4098), - [anon_sym___declspec] = ACTIONS(4096), - [anon_sym___based] = ACTIONS(4096), - [anon_sym___cdecl] = ACTIONS(4096), - [anon_sym___clrcall] = ACTIONS(4096), - [anon_sym___stdcall] = ACTIONS(4096), - [anon_sym___fastcall] = ACTIONS(4096), - [anon_sym___thiscall] = ACTIONS(4096), - [anon_sym___vectorcall] = ACTIONS(4096), - [anon_sym_LBRACE] = ACTIONS(4098), - [anon_sym_signed] = ACTIONS(4096), - [anon_sym_unsigned] = ACTIONS(4096), - [anon_sym_long] = ACTIONS(4096), - [anon_sym_short] = ACTIONS(4096), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_static] = ACTIONS(4096), - [anon_sym_register] = ACTIONS(4096), - [anon_sym_inline] = ACTIONS(4096), - [anon_sym___inline] = ACTIONS(4096), - [anon_sym___inline__] = ACTIONS(4096), - [anon_sym___forceinline] = ACTIONS(4096), - [anon_sym_thread_local] = ACTIONS(4096), - [anon_sym___thread] = ACTIONS(4096), - [anon_sym_const] = ACTIONS(4096), - [anon_sym_constexpr] = ACTIONS(4096), - [anon_sym_volatile] = ACTIONS(4096), - [anon_sym_restrict] = ACTIONS(4096), - [anon_sym___restrict__] = ACTIONS(4096), - [anon_sym__Atomic] = ACTIONS(4096), - [anon_sym__Noreturn] = ACTIONS(4096), - [anon_sym_noreturn] = ACTIONS(4096), - [anon_sym__Nonnull] = ACTIONS(4096), - [anon_sym_mutable] = ACTIONS(4096), - [anon_sym_constinit] = ACTIONS(4096), - [anon_sym_consteval] = ACTIONS(4096), - [anon_sym_alignas] = ACTIONS(4096), - [anon_sym__Alignas] = ACTIONS(4096), - [sym_primitive_type] = ACTIONS(4096), - [anon_sym_enum] = ACTIONS(4096), - [anon_sym_class] = ACTIONS(4096), - [anon_sym_struct] = ACTIONS(4096), - [anon_sym_union] = ACTIONS(4096), - [anon_sym_if] = ACTIONS(4096), - [anon_sym_switch] = ACTIONS(4096), - [anon_sym_case] = ACTIONS(4096), - [anon_sym_default] = ACTIONS(4096), - [anon_sym_while] = ACTIONS(4096), - [anon_sym_do] = ACTIONS(4096), - [anon_sym_for] = ACTIONS(4096), - [anon_sym_return] = ACTIONS(4096), - [anon_sym_break] = ACTIONS(4096), - [anon_sym_continue] = ACTIONS(4096), - [anon_sym_goto] = ACTIONS(4096), - [anon_sym___try] = ACTIONS(4096), - [anon_sym___leave] = ACTIONS(4096), - [anon_sym_not] = ACTIONS(4096), - [anon_sym_compl] = ACTIONS(4096), - [anon_sym_DASH_DASH] = ACTIONS(4098), - [anon_sym_PLUS_PLUS] = ACTIONS(4098), - [anon_sym_sizeof] = ACTIONS(4096), - [anon_sym___alignof__] = ACTIONS(4096), - [anon_sym___alignof] = ACTIONS(4096), - [anon_sym__alignof] = ACTIONS(4096), - [anon_sym_alignof] = ACTIONS(4096), - [anon_sym__Alignof] = ACTIONS(4096), - [anon_sym_offsetof] = ACTIONS(4096), - [anon_sym__Generic] = ACTIONS(4096), - [anon_sym_typename] = ACTIONS(4096), - [anon_sym_asm] = ACTIONS(4096), - [anon_sym___asm__] = ACTIONS(4096), - [anon_sym___asm] = ACTIONS(4096), - [sym_number_literal] = ACTIONS(4098), - [anon_sym_L_SQUOTE] = ACTIONS(4098), - [anon_sym_u_SQUOTE] = ACTIONS(4098), - [anon_sym_U_SQUOTE] = ACTIONS(4098), - [anon_sym_u8_SQUOTE] = ACTIONS(4098), - [anon_sym_SQUOTE] = ACTIONS(4098), - [anon_sym_L_DQUOTE] = ACTIONS(4098), - [anon_sym_u_DQUOTE] = ACTIONS(4098), - [anon_sym_U_DQUOTE] = ACTIONS(4098), - [anon_sym_u8_DQUOTE] = ACTIONS(4098), - [anon_sym_DQUOTE] = ACTIONS(4098), - [sym_true] = ACTIONS(4096), - [sym_false] = ACTIONS(4096), - [anon_sym_NULL] = ACTIONS(4096), - [anon_sym_nullptr] = ACTIONS(4096), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4096), - [anon_sym_decltype] = ACTIONS(4096), - [anon_sym_explicit] = ACTIONS(4096), - [anon_sym_template] = ACTIONS(4096), - [anon_sym_operator] = ACTIONS(4096), - [anon_sym_try] = ACTIONS(4096), - [anon_sym_delete] = ACTIONS(4096), - [anon_sym_throw] = ACTIONS(4096), - [anon_sym_namespace] = ACTIONS(4096), - [anon_sym_static_assert] = ACTIONS(4096), - [anon_sym_concept] = ACTIONS(4096), - [anon_sym_co_return] = ACTIONS(4096), - [anon_sym_co_yield] = ACTIONS(4096), - [anon_sym_R_DQUOTE] = ACTIONS(4098), - [anon_sym_LR_DQUOTE] = ACTIONS(4098), - [anon_sym_uR_DQUOTE] = ACTIONS(4098), - [anon_sym_UR_DQUOTE] = ACTIONS(4098), - [anon_sym_u8R_DQUOTE] = ACTIONS(4098), - [anon_sym_co_await] = ACTIONS(4096), - [anon_sym_new] = ACTIONS(4096), - [anon_sym_requires] = ACTIONS(4096), - [anon_sym_CARET_CARET] = ACTIONS(4098), - [anon_sym_LBRACK_COLON] = ACTIONS(4098), - [sym_this] = ACTIONS(4096), + [STATE(696)] = { + [sym_identifier] = ACTIONS(4258), + [aux_sym_preproc_include_token1] = ACTIONS(4258), + [aux_sym_preproc_def_token1] = ACTIONS(4258), + [aux_sym_preproc_if_token1] = ACTIONS(4258), + [aux_sym_preproc_if_token2] = ACTIONS(4258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4258), + [sym_preproc_directive] = ACTIONS(4258), + [anon_sym_LPAREN2] = ACTIONS(4260), + [anon_sym_BANG] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4260), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_STAR] = ACTIONS(4260), + [anon_sym_AMP_AMP] = ACTIONS(4260), + [anon_sym_AMP] = ACTIONS(4258), + [anon_sym_SEMI] = ACTIONS(4260), + [anon_sym___extension__] = ACTIONS(4258), + [anon_sym_typedef] = ACTIONS(4258), + [anon_sym_virtual] = ACTIONS(4258), + [anon_sym_extern] = ACTIONS(4258), + [anon_sym___attribute__] = ACTIONS(4258), + [anon_sym___attribute] = ACTIONS(4258), + [anon_sym_using] = ACTIONS(4258), + [anon_sym_COLON_COLON] = ACTIONS(4260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4260), + [anon_sym___declspec] = ACTIONS(4258), + [anon_sym___based] = ACTIONS(4258), + [anon_sym___cdecl] = ACTIONS(4258), + [anon_sym___clrcall] = ACTIONS(4258), + [anon_sym___stdcall] = ACTIONS(4258), + [anon_sym___fastcall] = ACTIONS(4258), + [anon_sym___thiscall] = ACTIONS(4258), + [anon_sym___vectorcall] = ACTIONS(4258), + [anon_sym_LBRACE] = ACTIONS(4260), + [anon_sym_signed] = ACTIONS(4258), + [anon_sym_unsigned] = ACTIONS(4258), + [anon_sym_long] = ACTIONS(4258), + [anon_sym_short] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_register] = ACTIONS(4258), + [anon_sym_inline] = ACTIONS(4258), + [anon_sym___inline] = ACTIONS(4258), + [anon_sym___inline__] = ACTIONS(4258), + [anon_sym___forceinline] = ACTIONS(4258), + [anon_sym_thread_local] = ACTIONS(4258), + [anon_sym___thread] = ACTIONS(4258), + [anon_sym_const] = ACTIONS(4258), + [anon_sym_constexpr] = ACTIONS(4258), + [anon_sym_volatile] = ACTIONS(4258), + [anon_sym_restrict] = ACTIONS(4258), + [anon_sym___restrict__] = ACTIONS(4258), + [anon_sym__Atomic] = ACTIONS(4258), + [anon_sym__Noreturn] = ACTIONS(4258), + [anon_sym_noreturn] = ACTIONS(4258), + [anon_sym__Nonnull] = ACTIONS(4258), + [anon_sym_mutable] = ACTIONS(4258), + [anon_sym_constinit] = ACTIONS(4258), + [anon_sym_consteval] = ACTIONS(4258), + [anon_sym_alignas] = ACTIONS(4258), + [anon_sym__Alignas] = ACTIONS(4258), + [sym_primitive_type] = ACTIONS(4258), + [anon_sym_enum] = ACTIONS(4258), + [anon_sym_class] = ACTIONS(4258), + [anon_sym_struct] = ACTIONS(4258), + [anon_sym_union] = ACTIONS(4258), + [anon_sym_if] = ACTIONS(4258), + [anon_sym_switch] = ACTIONS(4258), + [anon_sym_case] = ACTIONS(4258), + [anon_sym_default] = ACTIONS(4258), + [anon_sym_while] = ACTIONS(4258), + [anon_sym_do] = ACTIONS(4258), + [anon_sym_for] = ACTIONS(4258), + [anon_sym_return] = ACTIONS(4258), + [anon_sym_break] = ACTIONS(4258), + [anon_sym_continue] = ACTIONS(4258), + [anon_sym_goto] = ACTIONS(4258), + [anon_sym___try] = ACTIONS(4258), + [anon_sym___leave] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4258), + [anon_sym_compl] = ACTIONS(4258), + [anon_sym_DASH_DASH] = ACTIONS(4260), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_sizeof] = ACTIONS(4258), + [anon_sym___alignof__] = ACTIONS(4258), + [anon_sym___alignof] = ACTIONS(4258), + [anon_sym__alignof] = ACTIONS(4258), + [anon_sym_alignof] = ACTIONS(4258), + [anon_sym__Alignof] = ACTIONS(4258), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4258), + [anon_sym_typename] = ACTIONS(4258), + [anon_sym_asm] = ACTIONS(4258), + [anon_sym___asm__] = ACTIONS(4258), + [anon_sym___asm] = ACTIONS(4258), + [sym_number_literal] = ACTIONS(4260), + [anon_sym_L_SQUOTE] = ACTIONS(4260), + [anon_sym_u_SQUOTE] = ACTIONS(4260), + [anon_sym_U_SQUOTE] = ACTIONS(4260), + [anon_sym_u8_SQUOTE] = ACTIONS(4260), + [anon_sym_SQUOTE] = ACTIONS(4260), + [anon_sym_L_DQUOTE] = ACTIONS(4260), + [anon_sym_u_DQUOTE] = ACTIONS(4260), + [anon_sym_U_DQUOTE] = ACTIONS(4260), + [anon_sym_u8_DQUOTE] = ACTIONS(4260), + [anon_sym_DQUOTE] = ACTIONS(4260), + [sym_true] = ACTIONS(4258), + [sym_false] = ACTIONS(4258), + [anon_sym_NULL] = ACTIONS(4258), + [anon_sym_nullptr] = ACTIONS(4258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4258), + [anon_sym_decltype] = ACTIONS(4258), + [anon_sym_explicit] = ACTIONS(4258), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_module] = ACTIONS(4258), + [anon_sym_import] = ACTIONS(4258), + [anon_sym_template] = ACTIONS(4258), + [anon_sym_operator] = ACTIONS(4258), + [anon_sym_try] = ACTIONS(4258), + [anon_sym_delete] = ACTIONS(4258), + [anon_sym_throw] = ACTIONS(4258), + [anon_sym_namespace] = ACTIONS(4258), + [anon_sym_static_assert] = ACTIONS(4258), + [anon_sym_concept] = ACTIONS(4258), + [anon_sym_co_return] = ACTIONS(4258), + [anon_sym_co_yield] = ACTIONS(4258), + [anon_sym_R_DQUOTE] = ACTIONS(4260), + [anon_sym_LR_DQUOTE] = ACTIONS(4260), + [anon_sym_uR_DQUOTE] = ACTIONS(4260), + [anon_sym_UR_DQUOTE] = ACTIONS(4260), + [anon_sym_u8R_DQUOTE] = ACTIONS(4260), + [anon_sym_co_await] = ACTIONS(4258), + [anon_sym_new] = ACTIONS(4258), + [anon_sym_requires] = ACTIONS(4258), + [anon_sym_CARET_CARET] = ACTIONS(4260), + [anon_sym_LBRACK_COLON] = ACTIONS(4260), + [sym_this] = ACTIONS(4258), }, - [STATE(841)] = { - [sym_identifier] = ACTIONS(4018), - [aux_sym_preproc_include_token1] = ACTIONS(4018), - [aux_sym_preproc_def_token1] = ACTIONS(4018), - [aux_sym_preproc_if_token1] = ACTIONS(4018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4018), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4018), - [sym_preproc_directive] = ACTIONS(4018), - [anon_sym_LPAREN2] = ACTIONS(4020), - [anon_sym_BANG] = ACTIONS(4020), - [anon_sym_TILDE] = ACTIONS(4020), - [anon_sym_DASH] = ACTIONS(4018), - [anon_sym_PLUS] = ACTIONS(4018), - [anon_sym_STAR] = ACTIONS(4020), - [anon_sym_AMP_AMP] = ACTIONS(4020), - [anon_sym_AMP] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4020), - [anon_sym___extension__] = ACTIONS(4018), - [anon_sym_typedef] = ACTIONS(4018), - [anon_sym_virtual] = ACTIONS(4018), - [anon_sym_extern] = ACTIONS(4018), - [anon_sym___attribute__] = ACTIONS(4018), - [anon_sym___attribute] = ACTIONS(4018), - [anon_sym_using] = ACTIONS(4018), - [anon_sym_COLON_COLON] = ACTIONS(4020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4020), - [anon_sym___declspec] = ACTIONS(4018), - [anon_sym___based] = ACTIONS(4018), - [anon_sym___cdecl] = ACTIONS(4018), - [anon_sym___clrcall] = ACTIONS(4018), - [anon_sym___stdcall] = ACTIONS(4018), - [anon_sym___fastcall] = ACTIONS(4018), - [anon_sym___thiscall] = ACTIONS(4018), - [anon_sym___vectorcall] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4020), - [anon_sym_RBRACE] = ACTIONS(4020), - [anon_sym_signed] = ACTIONS(4018), - [anon_sym_unsigned] = ACTIONS(4018), - [anon_sym_long] = ACTIONS(4018), - [anon_sym_short] = ACTIONS(4018), - [anon_sym_LBRACK] = ACTIONS(4018), - [anon_sym_static] = ACTIONS(4018), - [anon_sym_register] = ACTIONS(4018), - [anon_sym_inline] = ACTIONS(4018), - [anon_sym___inline] = ACTIONS(4018), - [anon_sym___inline__] = ACTIONS(4018), - [anon_sym___forceinline] = ACTIONS(4018), - [anon_sym_thread_local] = ACTIONS(4018), - [anon_sym___thread] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4018), - [anon_sym_constexpr] = ACTIONS(4018), - [anon_sym_volatile] = ACTIONS(4018), - [anon_sym_restrict] = ACTIONS(4018), - [anon_sym___restrict__] = ACTIONS(4018), - [anon_sym__Atomic] = ACTIONS(4018), - [anon_sym__Noreturn] = ACTIONS(4018), - [anon_sym_noreturn] = ACTIONS(4018), - [anon_sym__Nonnull] = ACTIONS(4018), - [anon_sym_mutable] = ACTIONS(4018), - [anon_sym_constinit] = ACTIONS(4018), - [anon_sym_consteval] = ACTIONS(4018), - [anon_sym_alignas] = ACTIONS(4018), - [anon_sym__Alignas] = ACTIONS(4018), - [sym_primitive_type] = ACTIONS(4018), - [anon_sym_enum] = ACTIONS(4018), - [anon_sym_class] = ACTIONS(4018), - [anon_sym_struct] = ACTIONS(4018), - [anon_sym_union] = ACTIONS(4018), - [anon_sym_if] = ACTIONS(4018), - [anon_sym_switch] = ACTIONS(4018), - [anon_sym_case] = ACTIONS(4018), - [anon_sym_default] = ACTIONS(4018), - [anon_sym_while] = ACTIONS(4018), - [anon_sym_do] = ACTIONS(4018), - [anon_sym_for] = ACTIONS(4018), - [anon_sym_return] = ACTIONS(4018), - [anon_sym_break] = ACTIONS(4018), - [anon_sym_continue] = ACTIONS(4018), - [anon_sym_goto] = ACTIONS(4018), - [anon_sym___try] = ACTIONS(4018), - [anon_sym___leave] = ACTIONS(4018), - [anon_sym_not] = ACTIONS(4018), - [anon_sym_compl] = ACTIONS(4018), - [anon_sym_DASH_DASH] = ACTIONS(4020), - [anon_sym_PLUS_PLUS] = ACTIONS(4020), - [anon_sym_sizeof] = ACTIONS(4018), - [anon_sym___alignof__] = ACTIONS(4018), - [anon_sym___alignof] = ACTIONS(4018), - [anon_sym__alignof] = ACTIONS(4018), - [anon_sym_alignof] = ACTIONS(4018), - [anon_sym__Alignof] = ACTIONS(4018), - [anon_sym_offsetof] = ACTIONS(4018), - [anon_sym__Generic] = ACTIONS(4018), - [anon_sym_typename] = ACTIONS(4018), - [anon_sym_asm] = ACTIONS(4018), - [anon_sym___asm__] = ACTIONS(4018), - [anon_sym___asm] = ACTIONS(4018), - [sym_number_literal] = ACTIONS(4020), - [anon_sym_L_SQUOTE] = ACTIONS(4020), - [anon_sym_u_SQUOTE] = ACTIONS(4020), - [anon_sym_U_SQUOTE] = ACTIONS(4020), - [anon_sym_u8_SQUOTE] = ACTIONS(4020), - [anon_sym_SQUOTE] = 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_true] = ACTIONS(4018), - [sym_false] = ACTIONS(4018), - [anon_sym_NULL] = ACTIONS(4018), - [anon_sym_nullptr] = ACTIONS(4018), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4018), - [anon_sym_decltype] = ACTIONS(4018), - [anon_sym_explicit] = ACTIONS(4018), - [anon_sym_template] = ACTIONS(4018), - [anon_sym_operator] = ACTIONS(4018), - [anon_sym_try] = ACTIONS(4018), - [anon_sym_delete] = ACTIONS(4018), - [anon_sym_throw] = ACTIONS(4018), - [anon_sym_namespace] = ACTIONS(4018), - [anon_sym_static_assert] = ACTIONS(4018), - [anon_sym_concept] = ACTIONS(4018), - [anon_sym_co_return] = ACTIONS(4018), - [anon_sym_co_yield] = ACTIONS(4018), - [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), - [anon_sym_co_await] = ACTIONS(4018), - [anon_sym_new] = ACTIONS(4018), - [anon_sym_requires] = ACTIONS(4018), - [anon_sym_CARET_CARET] = ACTIONS(4020), - [anon_sym_LBRACK_COLON] = ACTIONS(4020), - [sym_this] = ACTIONS(4018), + [STATE(697)] = { + [sym_identifier] = ACTIONS(4266), + [aux_sym_preproc_include_token1] = ACTIONS(4266), + [aux_sym_preproc_def_token1] = ACTIONS(4266), + [aux_sym_preproc_if_token1] = ACTIONS(4266), + [aux_sym_preproc_if_token2] = ACTIONS(4266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4266), + [sym_preproc_directive] = ACTIONS(4266), + [anon_sym_LPAREN2] = ACTIONS(4268), + [anon_sym_BANG] = ACTIONS(4268), + [anon_sym_TILDE] = ACTIONS(4268), + [anon_sym_DASH] = ACTIONS(4266), + [anon_sym_PLUS] = ACTIONS(4266), + [anon_sym_STAR] = ACTIONS(4268), + [anon_sym_AMP_AMP] = ACTIONS(4268), + [anon_sym_AMP] = ACTIONS(4266), + [anon_sym_SEMI] = ACTIONS(4268), + [anon_sym___extension__] = ACTIONS(4266), + [anon_sym_typedef] = ACTIONS(4266), + [anon_sym_virtual] = ACTIONS(4266), + [anon_sym_extern] = ACTIONS(4266), + [anon_sym___attribute__] = ACTIONS(4266), + [anon_sym___attribute] = ACTIONS(4266), + [anon_sym_using] = ACTIONS(4266), + [anon_sym_COLON_COLON] = ACTIONS(4268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4268), + [anon_sym___declspec] = ACTIONS(4266), + [anon_sym___based] = ACTIONS(4266), + [anon_sym___cdecl] = ACTIONS(4266), + [anon_sym___clrcall] = ACTIONS(4266), + [anon_sym___stdcall] = ACTIONS(4266), + [anon_sym___fastcall] = ACTIONS(4266), + [anon_sym___thiscall] = ACTIONS(4266), + [anon_sym___vectorcall] = ACTIONS(4266), + [anon_sym_LBRACE] = ACTIONS(4268), + [anon_sym_signed] = ACTIONS(4266), + [anon_sym_unsigned] = ACTIONS(4266), + [anon_sym_long] = ACTIONS(4266), + [anon_sym_short] = ACTIONS(4266), + [anon_sym_LBRACK] = ACTIONS(4266), + [anon_sym_static] = ACTIONS(4266), + [anon_sym_register] = ACTIONS(4266), + [anon_sym_inline] = ACTIONS(4266), + [anon_sym___inline] = ACTIONS(4266), + [anon_sym___inline__] = ACTIONS(4266), + [anon_sym___forceinline] = ACTIONS(4266), + [anon_sym_thread_local] = ACTIONS(4266), + [anon_sym___thread] = ACTIONS(4266), + [anon_sym_const] = ACTIONS(4266), + [anon_sym_constexpr] = ACTIONS(4266), + [anon_sym_volatile] = ACTIONS(4266), + [anon_sym_restrict] = ACTIONS(4266), + [anon_sym___restrict__] = ACTIONS(4266), + [anon_sym__Atomic] = ACTIONS(4266), + [anon_sym__Noreturn] = ACTIONS(4266), + [anon_sym_noreturn] = ACTIONS(4266), + [anon_sym__Nonnull] = ACTIONS(4266), + [anon_sym_mutable] = ACTIONS(4266), + [anon_sym_constinit] = ACTIONS(4266), + [anon_sym_consteval] = ACTIONS(4266), + [anon_sym_alignas] = ACTIONS(4266), + [anon_sym__Alignas] = ACTIONS(4266), + [sym_primitive_type] = ACTIONS(4266), + [anon_sym_enum] = ACTIONS(4266), + [anon_sym_class] = ACTIONS(4266), + [anon_sym_struct] = ACTIONS(4266), + [anon_sym_union] = ACTIONS(4266), + [anon_sym_if] = ACTIONS(4266), + [anon_sym_switch] = ACTIONS(4266), + [anon_sym_case] = ACTIONS(4266), + [anon_sym_default] = ACTIONS(4266), + [anon_sym_while] = ACTIONS(4266), + [anon_sym_do] = ACTIONS(4266), + [anon_sym_for] = ACTIONS(4266), + [anon_sym_return] = ACTIONS(4266), + [anon_sym_break] = ACTIONS(4266), + [anon_sym_continue] = ACTIONS(4266), + [anon_sym_goto] = ACTIONS(4266), + [anon_sym___try] = ACTIONS(4266), + [anon_sym___leave] = ACTIONS(4266), + [anon_sym_not] = ACTIONS(4266), + [anon_sym_compl] = ACTIONS(4266), + [anon_sym_DASH_DASH] = ACTIONS(4268), + [anon_sym_PLUS_PLUS] = ACTIONS(4268), + [anon_sym_sizeof] = ACTIONS(4266), + [anon_sym___alignof__] = ACTIONS(4266), + [anon_sym___alignof] = ACTIONS(4266), + [anon_sym__alignof] = ACTIONS(4266), + [anon_sym_alignof] = ACTIONS(4266), + [anon_sym__Alignof] = ACTIONS(4266), + [anon_sym_offsetof] = ACTIONS(4266), + [anon_sym__Generic] = ACTIONS(4266), + [anon_sym_typename] = ACTIONS(4266), + [anon_sym_asm] = ACTIONS(4266), + [anon_sym___asm__] = ACTIONS(4266), + [anon_sym___asm] = ACTIONS(4266), + [sym_number_literal] = ACTIONS(4268), + [anon_sym_L_SQUOTE] = ACTIONS(4268), + [anon_sym_u_SQUOTE] = ACTIONS(4268), + [anon_sym_U_SQUOTE] = ACTIONS(4268), + [anon_sym_u8_SQUOTE] = ACTIONS(4268), + [anon_sym_SQUOTE] = ACTIONS(4268), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4266), + [sym_false] = ACTIONS(4266), + [anon_sym_NULL] = ACTIONS(4266), + [anon_sym_nullptr] = ACTIONS(4266), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4266), + [anon_sym_decltype] = ACTIONS(4266), + [anon_sym_explicit] = ACTIONS(4266), + [anon_sym_export] = ACTIONS(4266), + [anon_sym_module] = ACTIONS(4266), + [anon_sym_import] = ACTIONS(4266), + [anon_sym_template] = ACTIONS(4266), + [anon_sym_operator] = ACTIONS(4266), + [anon_sym_try] = ACTIONS(4266), + [anon_sym_delete] = ACTIONS(4266), + [anon_sym_throw] = ACTIONS(4266), + [anon_sym_namespace] = ACTIONS(4266), + [anon_sym_static_assert] = ACTIONS(4266), + [anon_sym_concept] = ACTIONS(4266), + [anon_sym_co_return] = ACTIONS(4266), + [anon_sym_co_yield] = ACTIONS(4266), + [anon_sym_R_DQUOTE] = ACTIONS(4268), + [anon_sym_LR_DQUOTE] = ACTIONS(4268), + [anon_sym_uR_DQUOTE] = ACTIONS(4268), + [anon_sym_UR_DQUOTE] = ACTIONS(4268), + [anon_sym_u8R_DQUOTE] = ACTIONS(4268), + [anon_sym_co_await] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_requires] = ACTIONS(4266), + [anon_sym_CARET_CARET] = ACTIONS(4268), + [anon_sym_LBRACK_COLON] = ACTIONS(4268), + [sym_this] = ACTIONS(4266), }, - [STATE(842)] = { - [sym_identifier] = ACTIONS(4022), - [aux_sym_preproc_include_token1] = ACTIONS(4022), - [aux_sym_preproc_def_token1] = ACTIONS(4022), - [aux_sym_preproc_if_token1] = ACTIONS(4022), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4022), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4022), - [sym_preproc_directive] = ACTIONS(4022), - [anon_sym_LPAREN2] = ACTIONS(4024), - [anon_sym_BANG] = ACTIONS(4024), - [anon_sym_TILDE] = ACTIONS(4024), - [anon_sym_DASH] = ACTIONS(4022), - [anon_sym_PLUS] = ACTIONS(4022), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_AMP_AMP] = ACTIONS(4024), - [anon_sym_AMP] = ACTIONS(4022), - [anon_sym_SEMI] = ACTIONS(4024), - [anon_sym___extension__] = ACTIONS(4022), - [anon_sym_typedef] = ACTIONS(4022), - [anon_sym_virtual] = ACTIONS(4022), - [anon_sym_extern] = ACTIONS(4022), - [anon_sym___attribute__] = ACTIONS(4022), - [anon_sym___attribute] = ACTIONS(4022), - [anon_sym_using] = ACTIONS(4022), - [anon_sym_COLON_COLON] = ACTIONS(4024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4024), - [anon_sym___declspec] = ACTIONS(4022), - [anon_sym___based] = ACTIONS(4022), - [anon_sym___cdecl] = ACTIONS(4022), - [anon_sym___clrcall] = ACTIONS(4022), - [anon_sym___stdcall] = ACTIONS(4022), - [anon_sym___fastcall] = ACTIONS(4022), - [anon_sym___thiscall] = ACTIONS(4022), - [anon_sym___vectorcall] = ACTIONS(4022), - [anon_sym_LBRACE] = ACTIONS(4024), - [anon_sym_RBRACE] = ACTIONS(4024), - [anon_sym_signed] = ACTIONS(4022), - [anon_sym_unsigned] = ACTIONS(4022), - [anon_sym_long] = ACTIONS(4022), - [anon_sym_short] = ACTIONS(4022), - [anon_sym_LBRACK] = ACTIONS(4022), - [anon_sym_static] = ACTIONS(4022), - [anon_sym_register] = ACTIONS(4022), - [anon_sym_inline] = ACTIONS(4022), - [anon_sym___inline] = ACTIONS(4022), - [anon_sym___inline__] = ACTIONS(4022), - [anon_sym___forceinline] = ACTIONS(4022), - [anon_sym_thread_local] = ACTIONS(4022), - [anon_sym___thread] = ACTIONS(4022), - [anon_sym_const] = ACTIONS(4022), - [anon_sym_constexpr] = ACTIONS(4022), - [anon_sym_volatile] = ACTIONS(4022), - [anon_sym_restrict] = ACTIONS(4022), - [anon_sym___restrict__] = ACTIONS(4022), - [anon_sym__Atomic] = ACTIONS(4022), - [anon_sym__Noreturn] = ACTIONS(4022), - [anon_sym_noreturn] = ACTIONS(4022), - [anon_sym__Nonnull] = ACTIONS(4022), - [anon_sym_mutable] = ACTIONS(4022), - [anon_sym_constinit] = ACTIONS(4022), - [anon_sym_consteval] = ACTIONS(4022), - [anon_sym_alignas] = ACTIONS(4022), - [anon_sym__Alignas] = ACTIONS(4022), - [sym_primitive_type] = ACTIONS(4022), - [anon_sym_enum] = ACTIONS(4022), - [anon_sym_class] = ACTIONS(4022), - [anon_sym_struct] = ACTIONS(4022), - [anon_sym_union] = ACTIONS(4022), - [anon_sym_if] = ACTIONS(4022), - [anon_sym_switch] = ACTIONS(4022), - [anon_sym_case] = ACTIONS(4022), - [anon_sym_default] = ACTIONS(4022), - [anon_sym_while] = ACTIONS(4022), - [anon_sym_do] = ACTIONS(4022), - [anon_sym_for] = ACTIONS(4022), - [anon_sym_return] = ACTIONS(4022), - [anon_sym_break] = ACTIONS(4022), - [anon_sym_continue] = ACTIONS(4022), - [anon_sym_goto] = ACTIONS(4022), - [anon_sym___try] = ACTIONS(4022), - [anon_sym___leave] = ACTIONS(4022), - [anon_sym_not] = ACTIONS(4022), - [anon_sym_compl] = ACTIONS(4022), - [anon_sym_DASH_DASH] = ACTIONS(4024), - [anon_sym_PLUS_PLUS] = ACTIONS(4024), - [anon_sym_sizeof] = ACTIONS(4022), - [anon_sym___alignof__] = ACTIONS(4022), - [anon_sym___alignof] = ACTIONS(4022), - [anon_sym__alignof] = ACTIONS(4022), - [anon_sym_alignof] = ACTIONS(4022), - [anon_sym__Alignof] = ACTIONS(4022), - [anon_sym_offsetof] = ACTIONS(4022), - [anon_sym__Generic] = ACTIONS(4022), - [anon_sym_typename] = ACTIONS(4022), - [anon_sym_asm] = ACTIONS(4022), - [anon_sym___asm__] = ACTIONS(4022), - [anon_sym___asm] = ACTIONS(4022), - [sym_number_literal] = ACTIONS(4024), - [anon_sym_L_SQUOTE] = ACTIONS(4024), - [anon_sym_u_SQUOTE] = ACTIONS(4024), - [anon_sym_U_SQUOTE] = ACTIONS(4024), - [anon_sym_u8_SQUOTE] = ACTIONS(4024), - [anon_sym_SQUOTE] = 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_true] = ACTIONS(4022), - [sym_false] = ACTIONS(4022), - [anon_sym_NULL] = ACTIONS(4022), - [anon_sym_nullptr] = ACTIONS(4022), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4022), - [anon_sym_decltype] = ACTIONS(4022), - [anon_sym_explicit] = ACTIONS(4022), - [anon_sym_template] = ACTIONS(4022), - [anon_sym_operator] = ACTIONS(4022), - [anon_sym_try] = ACTIONS(4022), - [anon_sym_delete] = ACTIONS(4022), - [anon_sym_throw] = ACTIONS(4022), - [anon_sym_namespace] = ACTIONS(4022), - [anon_sym_static_assert] = ACTIONS(4022), - [anon_sym_concept] = ACTIONS(4022), - [anon_sym_co_return] = ACTIONS(4022), - [anon_sym_co_yield] = ACTIONS(4022), - [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), - [anon_sym_co_await] = ACTIONS(4022), - [anon_sym_new] = ACTIONS(4022), - [anon_sym_requires] = ACTIONS(4022), - [anon_sym_CARET_CARET] = ACTIONS(4024), - [anon_sym_LBRACK_COLON] = ACTIONS(4024), - [sym_this] = ACTIONS(4022), + [STATE(698)] = { + [sym_identifier] = ACTIONS(4270), + [aux_sym_preproc_include_token1] = ACTIONS(4270), + [aux_sym_preproc_def_token1] = ACTIONS(4270), + [aux_sym_preproc_if_token1] = ACTIONS(4270), + [aux_sym_preproc_if_token2] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), + [sym_preproc_directive] = ACTIONS(4270), + [anon_sym_LPAREN2] = ACTIONS(4272), + [anon_sym_BANG] = ACTIONS(4272), + [anon_sym_TILDE] = ACTIONS(4272), + [anon_sym_DASH] = ACTIONS(4270), + [anon_sym_PLUS] = ACTIONS(4270), + [anon_sym_STAR] = ACTIONS(4272), + [anon_sym_AMP_AMP] = ACTIONS(4272), + [anon_sym_AMP] = ACTIONS(4270), + [anon_sym_SEMI] = ACTIONS(4272), + [anon_sym___extension__] = ACTIONS(4270), + [anon_sym_typedef] = ACTIONS(4270), + [anon_sym_virtual] = ACTIONS(4270), + [anon_sym_extern] = ACTIONS(4270), + [anon_sym___attribute__] = ACTIONS(4270), + [anon_sym___attribute] = ACTIONS(4270), + [anon_sym_using] = ACTIONS(4270), + [anon_sym_COLON_COLON] = ACTIONS(4272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), + [anon_sym___declspec] = ACTIONS(4270), + [anon_sym___based] = ACTIONS(4270), + [anon_sym___cdecl] = ACTIONS(4270), + [anon_sym___clrcall] = ACTIONS(4270), + [anon_sym___stdcall] = ACTIONS(4270), + [anon_sym___fastcall] = ACTIONS(4270), + [anon_sym___thiscall] = ACTIONS(4270), + [anon_sym___vectorcall] = ACTIONS(4270), + [anon_sym_LBRACE] = ACTIONS(4272), + [anon_sym_signed] = ACTIONS(4270), + [anon_sym_unsigned] = ACTIONS(4270), + [anon_sym_long] = ACTIONS(4270), + [anon_sym_short] = ACTIONS(4270), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_static] = ACTIONS(4270), + [anon_sym_register] = ACTIONS(4270), + [anon_sym_inline] = ACTIONS(4270), + [anon_sym___inline] = ACTIONS(4270), + [anon_sym___inline__] = ACTIONS(4270), + [anon_sym___forceinline] = ACTIONS(4270), + [anon_sym_thread_local] = ACTIONS(4270), + [anon_sym___thread] = ACTIONS(4270), + [anon_sym_const] = ACTIONS(4270), + [anon_sym_constexpr] = ACTIONS(4270), + [anon_sym_volatile] = ACTIONS(4270), + [anon_sym_restrict] = ACTIONS(4270), + [anon_sym___restrict__] = ACTIONS(4270), + [anon_sym__Atomic] = ACTIONS(4270), + [anon_sym__Noreturn] = ACTIONS(4270), + [anon_sym_noreturn] = ACTIONS(4270), + [anon_sym__Nonnull] = ACTIONS(4270), + [anon_sym_mutable] = ACTIONS(4270), + [anon_sym_constinit] = ACTIONS(4270), + [anon_sym_consteval] = ACTIONS(4270), + [anon_sym_alignas] = ACTIONS(4270), + [anon_sym__Alignas] = ACTIONS(4270), + [sym_primitive_type] = ACTIONS(4270), + [anon_sym_enum] = ACTIONS(4270), + [anon_sym_class] = ACTIONS(4270), + [anon_sym_struct] = ACTIONS(4270), + [anon_sym_union] = ACTIONS(4270), + [anon_sym_if] = ACTIONS(4270), + [anon_sym_switch] = ACTIONS(4270), + [anon_sym_case] = ACTIONS(4270), + [anon_sym_default] = ACTIONS(4270), + [anon_sym_while] = ACTIONS(4270), + [anon_sym_do] = ACTIONS(4270), + [anon_sym_for] = ACTIONS(4270), + [anon_sym_return] = ACTIONS(4270), + [anon_sym_break] = ACTIONS(4270), + [anon_sym_continue] = ACTIONS(4270), + [anon_sym_goto] = ACTIONS(4270), + [anon_sym___try] = ACTIONS(4270), + [anon_sym___leave] = ACTIONS(4270), + [anon_sym_not] = ACTIONS(4270), + [anon_sym_compl] = ACTIONS(4270), + [anon_sym_DASH_DASH] = ACTIONS(4272), + [anon_sym_PLUS_PLUS] = ACTIONS(4272), + [anon_sym_sizeof] = ACTIONS(4270), + [anon_sym___alignof__] = ACTIONS(4270), + [anon_sym___alignof] = ACTIONS(4270), + [anon_sym__alignof] = ACTIONS(4270), + [anon_sym_alignof] = ACTIONS(4270), + [anon_sym__Alignof] = ACTIONS(4270), + [anon_sym_offsetof] = ACTIONS(4270), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4270), + [anon_sym_asm] = ACTIONS(4270), + [anon_sym___asm__] = ACTIONS(4270), + [anon_sym___asm] = ACTIONS(4270), + [sym_number_literal] = ACTIONS(4272), + [anon_sym_L_SQUOTE] = ACTIONS(4272), + [anon_sym_u_SQUOTE] = ACTIONS(4272), + [anon_sym_U_SQUOTE] = ACTIONS(4272), + [anon_sym_u8_SQUOTE] = ACTIONS(4272), + [anon_sym_SQUOTE] = ACTIONS(4272), + [anon_sym_L_DQUOTE] = ACTIONS(4272), + [anon_sym_u_DQUOTE] = ACTIONS(4272), + [anon_sym_U_DQUOTE] = ACTIONS(4272), + [anon_sym_u8_DQUOTE] = ACTIONS(4272), + [anon_sym_DQUOTE] = ACTIONS(4272), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4270), + [anon_sym_nullptr] = ACTIONS(4270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4270), + [anon_sym_decltype] = ACTIONS(4270), + [anon_sym_explicit] = ACTIONS(4270), + [anon_sym_export] = ACTIONS(4270), + [anon_sym_module] = ACTIONS(4270), + [anon_sym_import] = ACTIONS(4270), + [anon_sym_template] = ACTIONS(4270), + [anon_sym_operator] = ACTIONS(4270), + [anon_sym_try] = ACTIONS(4270), + [anon_sym_delete] = ACTIONS(4270), + [anon_sym_throw] = ACTIONS(4270), + [anon_sym_namespace] = ACTIONS(4270), + [anon_sym_static_assert] = ACTIONS(4270), + [anon_sym_concept] = ACTIONS(4270), + [anon_sym_co_return] = ACTIONS(4270), + [anon_sym_co_yield] = ACTIONS(4270), + [anon_sym_R_DQUOTE] = ACTIONS(4272), + [anon_sym_LR_DQUOTE] = ACTIONS(4272), + [anon_sym_uR_DQUOTE] = ACTIONS(4272), + [anon_sym_UR_DQUOTE] = ACTIONS(4272), + [anon_sym_u8R_DQUOTE] = ACTIONS(4272), + [anon_sym_co_await] = ACTIONS(4270), + [anon_sym_new] = ACTIONS(4270), + [anon_sym_requires] = ACTIONS(4270), + [anon_sym_CARET_CARET] = ACTIONS(4272), + [anon_sym_LBRACK_COLON] = ACTIONS(4272), + [sym_this] = ACTIONS(4270), }, - [STATE(843)] = { - [sym_identifier] = ACTIONS(4026), - [aux_sym_preproc_include_token1] = ACTIONS(4026), - [aux_sym_preproc_def_token1] = ACTIONS(4026), - [aux_sym_preproc_if_token1] = ACTIONS(4026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4026), - [sym_preproc_directive] = ACTIONS(4026), - [anon_sym_LPAREN2] = ACTIONS(4028), - [anon_sym_BANG] = ACTIONS(4028), - [anon_sym_TILDE] = ACTIONS(4028), - [anon_sym_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4026), - [anon_sym_STAR] = ACTIONS(4028), - [anon_sym_AMP_AMP] = ACTIONS(4028), - [anon_sym_AMP] = ACTIONS(4026), - [anon_sym_SEMI] = ACTIONS(4028), - [anon_sym___extension__] = ACTIONS(4026), - [anon_sym_typedef] = ACTIONS(4026), - [anon_sym_virtual] = ACTIONS(4026), - [anon_sym_extern] = ACTIONS(4026), - [anon_sym___attribute__] = ACTIONS(4026), - [anon_sym___attribute] = ACTIONS(4026), - [anon_sym_using] = ACTIONS(4026), - [anon_sym_COLON_COLON] = ACTIONS(4028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4028), - [anon_sym___declspec] = ACTIONS(4026), - [anon_sym___based] = ACTIONS(4026), - [anon_sym___cdecl] = ACTIONS(4026), - [anon_sym___clrcall] = ACTIONS(4026), - [anon_sym___stdcall] = ACTIONS(4026), - [anon_sym___fastcall] = ACTIONS(4026), - [anon_sym___thiscall] = ACTIONS(4026), - [anon_sym___vectorcall] = ACTIONS(4026), - [anon_sym_LBRACE] = ACTIONS(4028), - [anon_sym_RBRACE] = ACTIONS(4028), - [anon_sym_signed] = ACTIONS(4026), - [anon_sym_unsigned] = ACTIONS(4026), - [anon_sym_long] = ACTIONS(4026), - [anon_sym_short] = ACTIONS(4026), - [anon_sym_LBRACK] = ACTIONS(4026), - [anon_sym_static] = ACTIONS(4026), - [anon_sym_register] = ACTIONS(4026), - [anon_sym_inline] = ACTIONS(4026), - [anon_sym___inline] = ACTIONS(4026), - [anon_sym___inline__] = ACTIONS(4026), - [anon_sym___forceinline] = ACTIONS(4026), - [anon_sym_thread_local] = ACTIONS(4026), - [anon_sym___thread] = ACTIONS(4026), - [anon_sym_const] = ACTIONS(4026), - [anon_sym_constexpr] = ACTIONS(4026), - [anon_sym_volatile] = ACTIONS(4026), - [anon_sym_restrict] = ACTIONS(4026), - [anon_sym___restrict__] = ACTIONS(4026), - [anon_sym__Atomic] = ACTIONS(4026), - [anon_sym__Noreturn] = ACTIONS(4026), - [anon_sym_noreturn] = ACTIONS(4026), - [anon_sym__Nonnull] = ACTIONS(4026), - [anon_sym_mutable] = ACTIONS(4026), - [anon_sym_constinit] = ACTIONS(4026), - [anon_sym_consteval] = ACTIONS(4026), - [anon_sym_alignas] = ACTIONS(4026), - [anon_sym__Alignas] = ACTIONS(4026), - [sym_primitive_type] = ACTIONS(4026), - [anon_sym_enum] = ACTIONS(4026), - [anon_sym_class] = ACTIONS(4026), - [anon_sym_struct] = ACTIONS(4026), - [anon_sym_union] = ACTIONS(4026), - [anon_sym_if] = ACTIONS(4026), - [anon_sym_switch] = ACTIONS(4026), - [anon_sym_case] = ACTIONS(4026), - [anon_sym_default] = ACTIONS(4026), - [anon_sym_while] = ACTIONS(4026), - [anon_sym_do] = ACTIONS(4026), - [anon_sym_for] = ACTIONS(4026), - [anon_sym_return] = ACTIONS(4026), - [anon_sym_break] = ACTIONS(4026), - [anon_sym_continue] = ACTIONS(4026), - [anon_sym_goto] = ACTIONS(4026), - [anon_sym___try] = ACTIONS(4026), - [anon_sym___leave] = ACTIONS(4026), - [anon_sym_not] = ACTIONS(4026), - [anon_sym_compl] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4028), - [anon_sym_PLUS_PLUS] = ACTIONS(4028), - [anon_sym_sizeof] = ACTIONS(4026), - [anon_sym___alignof__] = ACTIONS(4026), - [anon_sym___alignof] = ACTIONS(4026), - [anon_sym__alignof] = ACTIONS(4026), - [anon_sym_alignof] = ACTIONS(4026), - [anon_sym__Alignof] = ACTIONS(4026), - [anon_sym_offsetof] = ACTIONS(4026), - [anon_sym__Generic] = ACTIONS(4026), - [anon_sym_typename] = ACTIONS(4026), - [anon_sym_asm] = ACTIONS(4026), - [anon_sym___asm__] = ACTIONS(4026), - [anon_sym___asm] = ACTIONS(4026), - [sym_number_literal] = ACTIONS(4028), - [anon_sym_L_SQUOTE] = ACTIONS(4028), - [anon_sym_u_SQUOTE] = ACTIONS(4028), - [anon_sym_U_SQUOTE] = ACTIONS(4028), - [anon_sym_u8_SQUOTE] = ACTIONS(4028), - [anon_sym_SQUOTE] = 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_true] = ACTIONS(4026), - [sym_false] = ACTIONS(4026), - [anon_sym_NULL] = ACTIONS(4026), - [anon_sym_nullptr] = ACTIONS(4026), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4026), - [anon_sym_decltype] = ACTIONS(4026), - [anon_sym_explicit] = ACTIONS(4026), - [anon_sym_template] = ACTIONS(4026), - [anon_sym_operator] = ACTIONS(4026), - [anon_sym_try] = ACTIONS(4026), - [anon_sym_delete] = ACTIONS(4026), - [anon_sym_throw] = ACTIONS(4026), - [anon_sym_namespace] = ACTIONS(4026), - [anon_sym_static_assert] = ACTIONS(4026), - [anon_sym_concept] = ACTIONS(4026), - [anon_sym_co_return] = ACTIONS(4026), - [anon_sym_co_yield] = ACTIONS(4026), - [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), - [anon_sym_co_await] = ACTIONS(4026), - [anon_sym_new] = ACTIONS(4026), - [anon_sym_requires] = ACTIONS(4026), - [anon_sym_CARET_CARET] = ACTIONS(4028), - [anon_sym_LBRACK_COLON] = ACTIONS(4028), - [sym_this] = ACTIONS(4026), + [STATE(699)] = { + [sym_identifier] = ACTIONS(4270), + [aux_sym_preproc_include_token1] = ACTIONS(4270), + [aux_sym_preproc_def_token1] = ACTIONS(4270), + [aux_sym_preproc_if_token1] = ACTIONS(4270), + [aux_sym_preproc_if_token2] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), + [sym_preproc_directive] = ACTIONS(4270), + [anon_sym_LPAREN2] = ACTIONS(4272), + [anon_sym_BANG] = ACTIONS(4272), + [anon_sym_TILDE] = ACTIONS(4272), + [anon_sym_DASH] = ACTIONS(4270), + [anon_sym_PLUS] = ACTIONS(4270), + [anon_sym_STAR] = ACTIONS(4272), + [anon_sym_AMP_AMP] = ACTIONS(4272), + [anon_sym_AMP] = ACTIONS(4270), + [anon_sym_SEMI] = ACTIONS(4272), + [anon_sym___extension__] = ACTIONS(4270), + [anon_sym_typedef] = ACTIONS(4270), + [anon_sym_virtual] = ACTIONS(4270), + [anon_sym_extern] = ACTIONS(4270), + [anon_sym___attribute__] = ACTIONS(4270), + [anon_sym___attribute] = ACTIONS(4270), + [anon_sym_using] = ACTIONS(4270), + [anon_sym_COLON_COLON] = ACTIONS(4272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), + [anon_sym___declspec] = ACTIONS(4270), + [anon_sym___based] = ACTIONS(4270), + [anon_sym___cdecl] = ACTIONS(4270), + [anon_sym___clrcall] = ACTIONS(4270), + [anon_sym___stdcall] = ACTIONS(4270), + [anon_sym___fastcall] = ACTIONS(4270), + [anon_sym___thiscall] = ACTIONS(4270), + [anon_sym___vectorcall] = ACTIONS(4270), + [anon_sym_LBRACE] = ACTIONS(4272), + [anon_sym_signed] = ACTIONS(4270), + [anon_sym_unsigned] = ACTIONS(4270), + [anon_sym_long] = ACTIONS(4270), + [anon_sym_short] = ACTIONS(4270), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_static] = ACTIONS(4270), + [anon_sym_register] = ACTIONS(4270), + [anon_sym_inline] = ACTIONS(4270), + [anon_sym___inline] = ACTIONS(4270), + [anon_sym___inline__] = ACTIONS(4270), + [anon_sym___forceinline] = ACTIONS(4270), + [anon_sym_thread_local] = ACTIONS(4270), + [anon_sym___thread] = ACTIONS(4270), + [anon_sym_const] = ACTIONS(4270), + [anon_sym_constexpr] = ACTIONS(4270), + [anon_sym_volatile] = ACTIONS(4270), + [anon_sym_restrict] = ACTIONS(4270), + [anon_sym___restrict__] = ACTIONS(4270), + [anon_sym__Atomic] = ACTIONS(4270), + [anon_sym__Noreturn] = ACTIONS(4270), + [anon_sym_noreturn] = ACTIONS(4270), + [anon_sym__Nonnull] = ACTIONS(4270), + [anon_sym_mutable] = ACTIONS(4270), + [anon_sym_constinit] = ACTIONS(4270), + [anon_sym_consteval] = ACTIONS(4270), + [anon_sym_alignas] = ACTIONS(4270), + [anon_sym__Alignas] = ACTIONS(4270), + [sym_primitive_type] = ACTIONS(4270), + [anon_sym_enum] = ACTIONS(4270), + [anon_sym_class] = ACTIONS(4270), + [anon_sym_struct] = ACTIONS(4270), + [anon_sym_union] = ACTIONS(4270), + [anon_sym_if] = ACTIONS(4270), + [anon_sym_switch] = ACTIONS(4270), + [anon_sym_case] = ACTIONS(4270), + [anon_sym_default] = ACTIONS(4270), + [anon_sym_while] = ACTIONS(4270), + [anon_sym_do] = ACTIONS(4270), + [anon_sym_for] = ACTIONS(4270), + [anon_sym_return] = ACTIONS(4270), + [anon_sym_break] = ACTIONS(4270), + [anon_sym_continue] = ACTIONS(4270), + [anon_sym_goto] = ACTIONS(4270), + [anon_sym___try] = ACTIONS(4270), + [anon_sym___leave] = ACTIONS(4270), + [anon_sym_not] = ACTIONS(4270), + [anon_sym_compl] = ACTIONS(4270), + [anon_sym_DASH_DASH] = ACTIONS(4272), + [anon_sym_PLUS_PLUS] = ACTIONS(4272), + [anon_sym_sizeof] = ACTIONS(4270), + [anon_sym___alignof__] = ACTIONS(4270), + [anon_sym___alignof] = ACTIONS(4270), + [anon_sym__alignof] = ACTIONS(4270), + [anon_sym_alignof] = ACTIONS(4270), + [anon_sym__Alignof] = ACTIONS(4270), + [anon_sym_offsetof] = ACTIONS(4270), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4270), + [anon_sym_asm] = ACTIONS(4270), + [anon_sym___asm__] = ACTIONS(4270), + [anon_sym___asm] = ACTIONS(4270), + [sym_number_literal] = ACTIONS(4272), + [anon_sym_L_SQUOTE] = ACTIONS(4272), + [anon_sym_u_SQUOTE] = ACTIONS(4272), + [anon_sym_U_SQUOTE] = ACTIONS(4272), + [anon_sym_u8_SQUOTE] = ACTIONS(4272), + [anon_sym_SQUOTE] = ACTIONS(4272), + [anon_sym_L_DQUOTE] = ACTIONS(4272), + [anon_sym_u_DQUOTE] = ACTIONS(4272), + [anon_sym_U_DQUOTE] = ACTIONS(4272), + [anon_sym_u8_DQUOTE] = ACTIONS(4272), + [anon_sym_DQUOTE] = ACTIONS(4272), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4270), + [anon_sym_nullptr] = ACTIONS(4270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4270), + [anon_sym_decltype] = ACTIONS(4270), + [anon_sym_explicit] = ACTIONS(4270), + [anon_sym_export] = ACTIONS(4270), + [anon_sym_module] = ACTIONS(4270), + [anon_sym_import] = ACTIONS(4270), + [anon_sym_template] = ACTIONS(4270), + [anon_sym_operator] = ACTIONS(4270), + [anon_sym_try] = ACTIONS(4270), + [anon_sym_delete] = ACTIONS(4270), + [anon_sym_throw] = ACTIONS(4270), + [anon_sym_namespace] = ACTIONS(4270), + [anon_sym_static_assert] = ACTIONS(4270), + [anon_sym_concept] = ACTIONS(4270), + [anon_sym_co_return] = ACTIONS(4270), + [anon_sym_co_yield] = ACTIONS(4270), + [anon_sym_R_DQUOTE] = ACTIONS(4272), + [anon_sym_LR_DQUOTE] = ACTIONS(4272), + [anon_sym_uR_DQUOTE] = ACTIONS(4272), + [anon_sym_UR_DQUOTE] = ACTIONS(4272), + [anon_sym_u8R_DQUOTE] = ACTIONS(4272), + [anon_sym_co_await] = ACTIONS(4270), + [anon_sym_new] = ACTIONS(4270), + [anon_sym_requires] = ACTIONS(4270), + [anon_sym_CARET_CARET] = ACTIONS(4272), + [anon_sym_LBRACK_COLON] = ACTIONS(4272), + [sym_this] = ACTIONS(4270), }, - [STATE(844)] = { - [sym_identifier] = ACTIONS(4030), - [aux_sym_preproc_include_token1] = ACTIONS(4030), - [aux_sym_preproc_def_token1] = ACTIONS(4030), - [aux_sym_preproc_if_token1] = ACTIONS(4030), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4030), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4030), - [sym_preproc_directive] = ACTIONS(4030), - [anon_sym_LPAREN2] = ACTIONS(4032), - [anon_sym_BANG] = ACTIONS(4032), - [anon_sym_TILDE] = ACTIONS(4032), - [anon_sym_DASH] = ACTIONS(4030), - [anon_sym_PLUS] = ACTIONS(4030), - [anon_sym_STAR] = ACTIONS(4032), - [anon_sym_AMP_AMP] = ACTIONS(4032), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_SEMI] = ACTIONS(4032), - [anon_sym___extension__] = ACTIONS(4030), - [anon_sym_typedef] = ACTIONS(4030), - [anon_sym_virtual] = ACTIONS(4030), - [anon_sym_extern] = ACTIONS(4030), - [anon_sym___attribute__] = ACTIONS(4030), - [anon_sym___attribute] = ACTIONS(4030), - [anon_sym_using] = ACTIONS(4030), - [anon_sym_COLON_COLON] = ACTIONS(4032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4032), - [anon_sym___declspec] = ACTIONS(4030), - [anon_sym___based] = ACTIONS(4030), - [anon_sym___cdecl] = ACTIONS(4030), - [anon_sym___clrcall] = ACTIONS(4030), - [anon_sym___stdcall] = ACTIONS(4030), - [anon_sym___fastcall] = ACTIONS(4030), - [anon_sym___thiscall] = ACTIONS(4030), - [anon_sym___vectorcall] = ACTIONS(4030), - [anon_sym_LBRACE] = ACTIONS(4032), - [anon_sym_RBRACE] = ACTIONS(4032), - [anon_sym_signed] = ACTIONS(4030), - [anon_sym_unsigned] = ACTIONS(4030), - [anon_sym_long] = ACTIONS(4030), - [anon_sym_short] = ACTIONS(4030), - [anon_sym_LBRACK] = ACTIONS(4030), - [anon_sym_static] = ACTIONS(4030), - [anon_sym_register] = ACTIONS(4030), - [anon_sym_inline] = ACTIONS(4030), - [anon_sym___inline] = ACTIONS(4030), - [anon_sym___inline__] = ACTIONS(4030), - [anon_sym___forceinline] = ACTIONS(4030), - [anon_sym_thread_local] = ACTIONS(4030), - [anon_sym___thread] = ACTIONS(4030), - [anon_sym_const] = ACTIONS(4030), - [anon_sym_constexpr] = ACTIONS(4030), - [anon_sym_volatile] = ACTIONS(4030), - [anon_sym_restrict] = ACTIONS(4030), - [anon_sym___restrict__] = ACTIONS(4030), - [anon_sym__Atomic] = ACTIONS(4030), - [anon_sym__Noreturn] = ACTIONS(4030), - [anon_sym_noreturn] = ACTIONS(4030), - [anon_sym__Nonnull] = ACTIONS(4030), - [anon_sym_mutable] = ACTIONS(4030), - [anon_sym_constinit] = ACTIONS(4030), - [anon_sym_consteval] = ACTIONS(4030), - [anon_sym_alignas] = ACTIONS(4030), - [anon_sym__Alignas] = ACTIONS(4030), - [sym_primitive_type] = ACTIONS(4030), - [anon_sym_enum] = ACTIONS(4030), - [anon_sym_class] = ACTIONS(4030), - [anon_sym_struct] = ACTIONS(4030), - [anon_sym_union] = ACTIONS(4030), - [anon_sym_if] = ACTIONS(4030), - [anon_sym_switch] = ACTIONS(4030), - [anon_sym_case] = ACTIONS(4030), - [anon_sym_default] = ACTIONS(4030), - [anon_sym_while] = ACTIONS(4030), - [anon_sym_do] = ACTIONS(4030), - [anon_sym_for] = ACTIONS(4030), - [anon_sym_return] = ACTIONS(4030), - [anon_sym_break] = ACTIONS(4030), - [anon_sym_continue] = ACTIONS(4030), - [anon_sym_goto] = ACTIONS(4030), - [anon_sym___try] = ACTIONS(4030), - [anon_sym___leave] = ACTIONS(4030), - [anon_sym_not] = ACTIONS(4030), - [anon_sym_compl] = ACTIONS(4030), - [anon_sym_DASH_DASH] = ACTIONS(4032), - [anon_sym_PLUS_PLUS] = ACTIONS(4032), - [anon_sym_sizeof] = ACTIONS(4030), - [anon_sym___alignof__] = ACTIONS(4030), - [anon_sym___alignof] = ACTIONS(4030), - [anon_sym__alignof] = ACTIONS(4030), - [anon_sym_alignof] = ACTIONS(4030), - [anon_sym__Alignof] = ACTIONS(4030), - [anon_sym_offsetof] = ACTIONS(4030), - [anon_sym__Generic] = ACTIONS(4030), - [anon_sym_typename] = ACTIONS(4030), - [anon_sym_asm] = ACTIONS(4030), - [anon_sym___asm__] = ACTIONS(4030), - [anon_sym___asm] = ACTIONS(4030), - [sym_number_literal] = ACTIONS(4032), - [anon_sym_L_SQUOTE] = ACTIONS(4032), - [anon_sym_u_SQUOTE] = ACTIONS(4032), - [anon_sym_U_SQUOTE] = ACTIONS(4032), - [anon_sym_u8_SQUOTE] = ACTIONS(4032), - [anon_sym_SQUOTE] = ACTIONS(4032), - [anon_sym_L_DQUOTE] = ACTIONS(4032), - [anon_sym_u_DQUOTE] = ACTIONS(4032), - [anon_sym_U_DQUOTE] = ACTIONS(4032), - [anon_sym_u8_DQUOTE] = ACTIONS(4032), - [anon_sym_DQUOTE] = ACTIONS(4032), - [sym_true] = ACTIONS(4030), - [sym_false] = ACTIONS(4030), - [anon_sym_NULL] = ACTIONS(4030), - [anon_sym_nullptr] = ACTIONS(4030), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4030), - [anon_sym_decltype] = ACTIONS(4030), - [anon_sym_explicit] = ACTIONS(4030), - [anon_sym_template] = ACTIONS(4030), - [anon_sym_operator] = ACTIONS(4030), - [anon_sym_try] = ACTIONS(4030), - [anon_sym_delete] = ACTIONS(4030), - [anon_sym_throw] = ACTIONS(4030), - [anon_sym_namespace] = ACTIONS(4030), - [anon_sym_static_assert] = ACTIONS(4030), - [anon_sym_concept] = ACTIONS(4030), - [anon_sym_co_return] = ACTIONS(4030), - [anon_sym_co_yield] = ACTIONS(4030), - [anon_sym_R_DQUOTE] = ACTIONS(4032), - [anon_sym_LR_DQUOTE] = ACTIONS(4032), - [anon_sym_uR_DQUOTE] = ACTIONS(4032), - [anon_sym_UR_DQUOTE] = ACTIONS(4032), - [anon_sym_u8R_DQUOTE] = ACTIONS(4032), - [anon_sym_co_await] = ACTIONS(4030), - [anon_sym_new] = ACTIONS(4030), - [anon_sym_requires] = ACTIONS(4030), - [anon_sym_CARET_CARET] = ACTIONS(4032), - [anon_sym_LBRACK_COLON] = ACTIONS(4032), - [sym_this] = ACTIONS(4030), + [STATE(700)] = { + [sym_identifier] = ACTIONS(4286), + [aux_sym_preproc_include_token1] = ACTIONS(4286), + [aux_sym_preproc_def_token1] = ACTIONS(4286), + [aux_sym_preproc_if_token1] = ACTIONS(4286), + [aux_sym_preproc_if_token2] = ACTIONS(4286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4286), + [sym_preproc_directive] = ACTIONS(4286), + [anon_sym_LPAREN2] = ACTIONS(4288), + [anon_sym_BANG] = ACTIONS(4288), + [anon_sym_TILDE] = ACTIONS(4288), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym___extension__] = ACTIONS(4286), + [anon_sym_typedef] = ACTIONS(4286), + [anon_sym_virtual] = ACTIONS(4286), + [anon_sym_extern] = ACTIONS(4286), + [anon_sym___attribute__] = ACTIONS(4286), + [anon_sym___attribute] = ACTIONS(4286), + [anon_sym_using] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4288), + [anon_sym___declspec] = ACTIONS(4286), + [anon_sym___based] = ACTIONS(4286), + [anon_sym___cdecl] = ACTIONS(4286), + [anon_sym___clrcall] = ACTIONS(4286), + [anon_sym___stdcall] = ACTIONS(4286), + [anon_sym___fastcall] = ACTIONS(4286), + [anon_sym___thiscall] = ACTIONS(4286), + [anon_sym___vectorcall] = ACTIONS(4286), + [anon_sym_LBRACE] = ACTIONS(4288), + [anon_sym_signed] = ACTIONS(4286), + [anon_sym_unsigned] = ACTIONS(4286), + [anon_sym_long] = ACTIONS(4286), + [anon_sym_short] = ACTIONS(4286), + [anon_sym_LBRACK] = ACTIONS(4286), + [anon_sym_static] = ACTIONS(4286), + [anon_sym_register] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym___inline] = ACTIONS(4286), + [anon_sym___inline__] = ACTIONS(4286), + [anon_sym___forceinline] = ACTIONS(4286), + [anon_sym_thread_local] = ACTIONS(4286), + [anon_sym___thread] = ACTIONS(4286), + [anon_sym_const] = ACTIONS(4286), + [anon_sym_constexpr] = ACTIONS(4286), + [anon_sym_volatile] = ACTIONS(4286), + [anon_sym_restrict] = ACTIONS(4286), + [anon_sym___restrict__] = ACTIONS(4286), + [anon_sym__Atomic] = ACTIONS(4286), + [anon_sym__Noreturn] = ACTIONS(4286), + [anon_sym_noreturn] = ACTIONS(4286), + [anon_sym__Nonnull] = ACTIONS(4286), + [anon_sym_mutable] = ACTIONS(4286), + [anon_sym_constinit] = ACTIONS(4286), + [anon_sym_consteval] = ACTIONS(4286), + [anon_sym_alignas] = ACTIONS(4286), + [anon_sym__Alignas] = ACTIONS(4286), + [sym_primitive_type] = ACTIONS(4286), + [anon_sym_enum] = ACTIONS(4286), + [anon_sym_class] = ACTIONS(4286), + [anon_sym_struct] = ACTIONS(4286), + [anon_sym_union] = ACTIONS(4286), + [anon_sym_if] = ACTIONS(4286), + [anon_sym_switch] = ACTIONS(4286), + [anon_sym_case] = ACTIONS(4286), + [anon_sym_default] = ACTIONS(4286), + [anon_sym_while] = ACTIONS(4286), + [anon_sym_do] = ACTIONS(4286), + [anon_sym_for] = ACTIONS(4286), + [anon_sym_return] = ACTIONS(4286), + [anon_sym_break] = ACTIONS(4286), + [anon_sym_continue] = ACTIONS(4286), + [anon_sym_goto] = ACTIONS(4286), + [anon_sym___try] = ACTIONS(4286), + [anon_sym___leave] = ACTIONS(4286), + [anon_sym_not] = ACTIONS(4286), + [anon_sym_compl] = ACTIONS(4286), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_sizeof] = ACTIONS(4286), + [anon_sym___alignof__] = ACTIONS(4286), + [anon_sym___alignof] = ACTIONS(4286), + [anon_sym__alignof] = ACTIONS(4286), + [anon_sym_alignof] = ACTIONS(4286), + [anon_sym__Alignof] = ACTIONS(4286), + [anon_sym_offsetof] = ACTIONS(4286), + [anon_sym__Generic] = ACTIONS(4286), + [anon_sym_typename] = ACTIONS(4286), + [anon_sym_asm] = ACTIONS(4286), + [anon_sym___asm__] = ACTIONS(4286), + [anon_sym___asm] = ACTIONS(4286), + [sym_number_literal] = ACTIONS(4288), + [anon_sym_L_SQUOTE] = ACTIONS(4288), + [anon_sym_u_SQUOTE] = ACTIONS(4288), + [anon_sym_U_SQUOTE] = ACTIONS(4288), + [anon_sym_u8_SQUOTE] = ACTIONS(4288), + [anon_sym_SQUOTE] = ACTIONS(4288), + [anon_sym_L_DQUOTE] = ACTIONS(4288), + [anon_sym_u_DQUOTE] = ACTIONS(4288), + [anon_sym_U_DQUOTE] = ACTIONS(4288), + [anon_sym_u8_DQUOTE] = ACTIONS(4288), + [anon_sym_DQUOTE] = ACTIONS(4288), + [sym_true] = ACTIONS(4286), + [sym_false] = ACTIONS(4286), + [anon_sym_NULL] = ACTIONS(4286), + [anon_sym_nullptr] = ACTIONS(4286), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4286), + [anon_sym_decltype] = ACTIONS(4286), + [anon_sym_explicit] = ACTIONS(4286), + [anon_sym_export] = ACTIONS(4286), + [anon_sym_module] = ACTIONS(4286), + [anon_sym_import] = ACTIONS(4286), + [anon_sym_template] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_try] = ACTIONS(4286), + [anon_sym_delete] = ACTIONS(4286), + [anon_sym_throw] = ACTIONS(4286), + [anon_sym_namespace] = ACTIONS(4286), + [anon_sym_static_assert] = ACTIONS(4286), + [anon_sym_concept] = ACTIONS(4286), + [anon_sym_co_return] = ACTIONS(4286), + [anon_sym_co_yield] = ACTIONS(4286), + [anon_sym_R_DQUOTE] = ACTIONS(4288), + [anon_sym_LR_DQUOTE] = ACTIONS(4288), + [anon_sym_uR_DQUOTE] = ACTIONS(4288), + [anon_sym_UR_DQUOTE] = ACTIONS(4288), + [anon_sym_u8R_DQUOTE] = ACTIONS(4288), + [anon_sym_co_await] = ACTIONS(4286), + [anon_sym_new] = ACTIONS(4286), + [anon_sym_requires] = ACTIONS(4286), + [anon_sym_CARET_CARET] = ACTIONS(4288), + [anon_sym_LBRACK_COLON] = ACTIONS(4288), + [sym_this] = ACTIONS(4286), }, - [STATE(845)] = { - [sym_identifier] = ACTIONS(3978), - [aux_sym_preproc_include_token1] = ACTIONS(3978), - [aux_sym_preproc_def_token1] = ACTIONS(3978), - [aux_sym_preproc_if_token1] = ACTIONS(3978), - [aux_sym_preproc_if_token2] = ACTIONS(3978), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3978), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3978), - [sym_preproc_directive] = ACTIONS(3978), - [anon_sym_LPAREN2] = ACTIONS(3980), - [anon_sym_BANG] = ACTIONS(3980), - [anon_sym_TILDE] = ACTIONS(3980), - [anon_sym_DASH] = ACTIONS(3978), - [anon_sym_PLUS] = ACTIONS(3978), - [anon_sym_STAR] = ACTIONS(3980), - [anon_sym_AMP_AMP] = ACTIONS(3980), - [anon_sym_AMP] = ACTIONS(3978), - [anon_sym_SEMI] = ACTIONS(3980), - [anon_sym___extension__] = ACTIONS(3978), - [anon_sym_typedef] = ACTIONS(3978), - [anon_sym_virtual] = ACTIONS(3978), - [anon_sym_extern] = ACTIONS(3978), - [anon_sym___attribute__] = ACTIONS(3978), - [anon_sym___attribute] = ACTIONS(3978), - [anon_sym_using] = ACTIONS(3978), - [anon_sym_COLON_COLON] = ACTIONS(3980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3980), - [anon_sym___declspec] = ACTIONS(3978), - [anon_sym___based] = ACTIONS(3978), - [anon_sym___cdecl] = ACTIONS(3978), - [anon_sym___clrcall] = ACTIONS(3978), - [anon_sym___stdcall] = ACTIONS(3978), - [anon_sym___fastcall] = ACTIONS(3978), - [anon_sym___thiscall] = ACTIONS(3978), - [anon_sym___vectorcall] = ACTIONS(3978), - [anon_sym_LBRACE] = ACTIONS(3980), - [anon_sym_signed] = ACTIONS(3978), - [anon_sym_unsigned] = ACTIONS(3978), - [anon_sym_long] = ACTIONS(3978), - [anon_sym_short] = ACTIONS(3978), - [anon_sym_LBRACK] = ACTIONS(3978), - [anon_sym_static] = ACTIONS(3978), - [anon_sym_register] = ACTIONS(3978), - [anon_sym_inline] = ACTIONS(3978), - [anon_sym___inline] = ACTIONS(3978), - [anon_sym___inline__] = ACTIONS(3978), - [anon_sym___forceinline] = ACTIONS(3978), - [anon_sym_thread_local] = ACTIONS(3978), - [anon_sym___thread] = ACTIONS(3978), - [anon_sym_const] = ACTIONS(3978), - [anon_sym_constexpr] = ACTIONS(3978), - [anon_sym_volatile] = ACTIONS(3978), - [anon_sym_restrict] = ACTIONS(3978), - [anon_sym___restrict__] = ACTIONS(3978), - [anon_sym__Atomic] = ACTIONS(3978), - [anon_sym__Noreturn] = ACTIONS(3978), - [anon_sym_noreturn] = ACTIONS(3978), - [anon_sym__Nonnull] = ACTIONS(3978), - [anon_sym_mutable] = ACTIONS(3978), - [anon_sym_constinit] = ACTIONS(3978), - [anon_sym_consteval] = ACTIONS(3978), - [anon_sym_alignas] = ACTIONS(3978), - [anon_sym__Alignas] = ACTIONS(3978), - [sym_primitive_type] = ACTIONS(3978), - [anon_sym_enum] = ACTIONS(3978), - [anon_sym_class] = ACTIONS(3978), - [anon_sym_struct] = ACTIONS(3978), - [anon_sym_union] = ACTIONS(3978), - [anon_sym_if] = ACTIONS(3978), - [anon_sym_switch] = ACTIONS(3978), - [anon_sym_case] = ACTIONS(3978), - [anon_sym_default] = ACTIONS(3978), - [anon_sym_while] = ACTIONS(3978), - [anon_sym_do] = ACTIONS(3978), - [anon_sym_for] = ACTIONS(3978), - [anon_sym_return] = ACTIONS(3978), - [anon_sym_break] = ACTIONS(3978), - [anon_sym_continue] = ACTIONS(3978), - [anon_sym_goto] = ACTIONS(3978), - [anon_sym___try] = ACTIONS(3978), - [anon_sym___leave] = ACTIONS(3978), - [anon_sym_not] = ACTIONS(3978), - [anon_sym_compl] = ACTIONS(3978), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(3978), - [anon_sym___alignof__] = ACTIONS(3978), - [anon_sym___alignof] = ACTIONS(3978), - [anon_sym__alignof] = ACTIONS(3978), - [anon_sym_alignof] = ACTIONS(3978), - [anon_sym__Alignof] = ACTIONS(3978), - [anon_sym_offsetof] = ACTIONS(3978), - [anon_sym__Generic] = ACTIONS(3978), - [anon_sym_typename] = ACTIONS(3978), - [anon_sym_asm] = ACTIONS(3978), - [anon_sym___asm__] = ACTIONS(3978), - [anon_sym___asm] = ACTIONS(3978), - [sym_number_literal] = ACTIONS(3980), - [anon_sym_L_SQUOTE] = ACTIONS(3980), - [anon_sym_u_SQUOTE] = ACTIONS(3980), - [anon_sym_U_SQUOTE] = ACTIONS(3980), - [anon_sym_u8_SQUOTE] = ACTIONS(3980), - [anon_sym_SQUOTE] = ACTIONS(3980), - [anon_sym_L_DQUOTE] = ACTIONS(3980), - [anon_sym_u_DQUOTE] = ACTIONS(3980), - [anon_sym_U_DQUOTE] = ACTIONS(3980), - [anon_sym_u8_DQUOTE] = ACTIONS(3980), - [anon_sym_DQUOTE] = ACTIONS(3980), - [sym_true] = ACTIONS(3978), - [sym_false] = ACTIONS(3978), - [anon_sym_NULL] = ACTIONS(3978), - [anon_sym_nullptr] = ACTIONS(3978), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3978), - [anon_sym_decltype] = ACTIONS(3978), - [anon_sym_explicit] = ACTIONS(3978), - [anon_sym_template] = ACTIONS(3978), - [anon_sym_operator] = ACTIONS(3978), - [anon_sym_try] = ACTIONS(3978), - [anon_sym_delete] = ACTIONS(3978), - [anon_sym_throw] = ACTIONS(3978), - [anon_sym_namespace] = ACTIONS(3978), - [anon_sym_static_assert] = ACTIONS(3978), - [anon_sym_concept] = ACTIONS(3978), - [anon_sym_co_return] = ACTIONS(3978), - [anon_sym_co_yield] = ACTIONS(3978), - [anon_sym_R_DQUOTE] = ACTIONS(3980), - [anon_sym_LR_DQUOTE] = ACTIONS(3980), - [anon_sym_uR_DQUOTE] = ACTIONS(3980), - [anon_sym_UR_DQUOTE] = ACTIONS(3980), - [anon_sym_u8R_DQUOTE] = ACTIONS(3980), - [anon_sym_co_await] = ACTIONS(3978), - [anon_sym_new] = ACTIONS(3978), - [anon_sym_requires] = ACTIONS(3978), - [anon_sym_CARET_CARET] = ACTIONS(3980), - [anon_sym_LBRACK_COLON] = ACTIONS(3980), - [sym_this] = ACTIONS(3978), + [STATE(701)] = { + [sym_identifier] = ACTIONS(4290), + [aux_sym_preproc_include_token1] = ACTIONS(4290), + [aux_sym_preproc_def_token1] = ACTIONS(4290), + [aux_sym_preproc_if_token1] = ACTIONS(4290), + [aux_sym_preproc_if_token2] = ACTIONS(4290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4290), + [sym_preproc_directive] = ACTIONS(4290), + [anon_sym_LPAREN2] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_AMP] = ACTIONS(4290), + [anon_sym_SEMI] = ACTIONS(4292), + [anon_sym___extension__] = ACTIONS(4290), + [anon_sym_typedef] = ACTIONS(4290), + [anon_sym_virtual] = ACTIONS(4290), + [anon_sym_extern] = ACTIONS(4290), + [anon_sym___attribute__] = ACTIONS(4290), + [anon_sym___attribute] = ACTIONS(4290), + [anon_sym_using] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4292), + [anon_sym___declspec] = ACTIONS(4290), + [anon_sym___based] = ACTIONS(4290), + [anon_sym___cdecl] = ACTIONS(4290), + [anon_sym___clrcall] = ACTIONS(4290), + [anon_sym___stdcall] = ACTIONS(4290), + [anon_sym___fastcall] = ACTIONS(4290), + [anon_sym___thiscall] = ACTIONS(4290), + [anon_sym___vectorcall] = ACTIONS(4290), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_signed] = ACTIONS(4290), + [anon_sym_unsigned] = ACTIONS(4290), + [anon_sym_long] = ACTIONS(4290), + [anon_sym_short] = ACTIONS(4290), + [anon_sym_LBRACK] = ACTIONS(4290), + [anon_sym_static] = ACTIONS(4290), + [anon_sym_register] = ACTIONS(4290), + [anon_sym_inline] = ACTIONS(4290), + [anon_sym___inline] = ACTIONS(4290), + [anon_sym___inline__] = ACTIONS(4290), + [anon_sym___forceinline] = ACTIONS(4290), + [anon_sym_thread_local] = ACTIONS(4290), + [anon_sym___thread] = ACTIONS(4290), + [anon_sym_const] = ACTIONS(4290), + [anon_sym_constexpr] = ACTIONS(4290), + [anon_sym_volatile] = ACTIONS(4290), + [anon_sym_restrict] = ACTIONS(4290), + [anon_sym___restrict__] = ACTIONS(4290), + [anon_sym__Atomic] = ACTIONS(4290), + [anon_sym__Noreturn] = ACTIONS(4290), + [anon_sym_noreturn] = ACTIONS(4290), + [anon_sym__Nonnull] = ACTIONS(4290), + [anon_sym_mutable] = ACTIONS(4290), + [anon_sym_constinit] = ACTIONS(4290), + [anon_sym_consteval] = ACTIONS(4290), + [anon_sym_alignas] = ACTIONS(4290), + [anon_sym__Alignas] = ACTIONS(4290), + [sym_primitive_type] = ACTIONS(4290), + [anon_sym_enum] = ACTIONS(4290), + [anon_sym_class] = ACTIONS(4290), + [anon_sym_struct] = ACTIONS(4290), + [anon_sym_union] = ACTIONS(4290), + [anon_sym_if] = ACTIONS(4290), + [anon_sym_switch] = ACTIONS(4290), + [anon_sym_case] = ACTIONS(4290), + [anon_sym_default] = ACTIONS(4290), + [anon_sym_while] = ACTIONS(4290), + [anon_sym_do] = ACTIONS(4290), + [anon_sym_for] = ACTIONS(4290), + [anon_sym_return] = ACTIONS(4290), + [anon_sym_break] = ACTIONS(4290), + [anon_sym_continue] = ACTIONS(4290), + [anon_sym_goto] = ACTIONS(4290), + [anon_sym___try] = ACTIONS(4290), + [anon_sym___leave] = ACTIONS(4290), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_sizeof] = ACTIONS(4290), + [anon_sym___alignof__] = ACTIONS(4290), + [anon_sym___alignof] = ACTIONS(4290), + [anon_sym__alignof] = ACTIONS(4290), + [anon_sym_alignof] = ACTIONS(4290), + [anon_sym__Alignof] = ACTIONS(4290), + [anon_sym_offsetof] = ACTIONS(4290), + [anon_sym__Generic] = ACTIONS(4290), + [anon_sym_typename] = ACTIONS(4290), + [anon_sym_asm] = ACTIONS(4290), + [anon_sym___asm__] = ACTIONS(4290), + [anon_sym___asm] = ACTIONS(4290), + [sym_number_literal] = ACTIONS(4292), + [anon_sym_L_SQUOTE] = ACTIONS(4292), + [anon_sym_u_SQUOTE] = ACTIONS(4292), + [anon_sym_U_SQUOTE] = ACTIONS(4292), + [anon_sym_u8_SQUOTE] = ACTIONS(4292), + [anon_sym_SQUOTE] = ACTIONS(4292), + [anon_sym_L_DQUOTE] = ACTIONS(4292), + [anon_sym_u_DQUOTE] = ACTIONS(4292), + [anon_sym_U_DQUOTE] = ACTIONS(4292), + [anon_sym_u8_DQUOTE] = ACTIONS(4292), + [anon_sym_DQUOTE] = ACTIONS(4292), + [sym_true] = ACTIONS(4290), + [sym_false] = ACTIONS(4290), + [anon_sym_NULL] = ACTIONS(4290), + [anon_sym_nullptr] = ACTIONS(4290), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4290), + [anon_sym_decltype] = ACTIONS(4290), + [anon_sym_explicit] = ACTIONS(4290), + [anon_sym_export] = ACTIONS(4290), + [anon_sym_module] = ACTIONS(4290), + [anon_sym_import] = ACTIONS(4290), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_operator] = ACTIONS(4290), + [anon_sym_try] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4290), + [anon_sym_throw] = ACTIONS(4290), + [anon_sym_namespace] = ACTIONS(4290), + [anon_sym_static_assert] = ACTIONS(4290), + [anon_sym_concept] = ACTIONS(4290), + [anon_sym_co_return] = ACTIONS(4290), + [anon_sym_co_yield] = ACTIONS(4290), + [anon_sym_R_DQUOTE] = ACTIONS(4292), + [anon_sym_LR_DQUOTE] = ACTIONS(4292), + [anon_sym_uR_DQUOTE] = ACTIONS(4292), + [anon_sym_UR_DQUOTE] = ACTIONS(4292), + [anon_sym_u8R_DQUOTE] = ACTIONS(4292), + [anon_sym_co_await] = ACTIONS(4290), + [anon_sym_new] = ACTIONS(4290), + [anon_sym_requires] = ACTIONS(4290), + [anon_sym_CARET_CARET] = ACTIONS(4292), + [anon_sym_LBRACK_COLON] = ACTIONS(4292), + [sym_this] = ACTIONS(4290), }, - [STATE(846)] = { - [sym_identifier] = ACTIONS(4038), - [aux_sym_preproc_include_token1] = ACTIONS(4038), - [aux_sym_preproc_def_token1] = ACTIONS(4038), - [aux_sym_preproc_if_token1] = ACTIONS(4038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4038), - [sym_preproc_directive] = ACTIONS(4038), - [anon_sym_LPAREN2] = ACTIONS(4040), - [anon_sym_BANG] = ACTIONS(4040), - [anon_sym_TILDE] = ACTIONS(4040), - [anon_sym_DASH] = ACTIONS(4038), - [anon_sym_PLUS] = ACTIONS(4038), - [anon_sym_STAR] = ACTIONS(4040), - [anon_sym_AMP_AMP] = ACTIONS(4040), - [anon_sym_AMP] = ACTIONS(4038), - [anon_sym_SEMI] = ACTIONS(4040), - [anon_sym___extension__] = ACTIONS(4038), - [anon_sym_typedef] = ACTIONS(4038), - [anon_sym_virtual] = ACTIONS(4038), - [anon_sym_extern] = ACTIONS(4038), - [anon_sym___attribute__] = ACTIONS(4038), - [anon_sym___attribute] = ACTIONS(4038), - [anon_sym_using] = ACTIONS(4038), - [anon_sym_COLON_COLON] = ACTIONS(4040), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4040), - [anon_sym___declspec] = ACTIONS(4038), - [anon_sym___based] = ACTIONS(4038), - [anon_sym___cdecl] = ACTIONS(4038), - [anon_sym___clrcall] = ACTIONS(4038), - [anon_sym___stdcall] = ACTIONS(4038), - [anon_sym___fastcall] = ACTIONS(4038), - [anon_sym___thiscall] = ACTIONS(4038), - [anon_sym___vectorcall] = ACTIONS(4038), - [anon_sym_LBRACE] = ACTIONS(4040), - [anon_sym_RBRACE] = ACTIONS(4040), - [anon_sym_signed] = ACTIONS(4038), - [anon_sym_unsigned] = ACTIONS(4038), - [anon_sym_long] = ACTIONS(4038), - [anon_sym_short] = ACTIONS(4038), - [anon_sym_LBRACK] = ACTIONS(4038), - [anon_sym_static] = ACTIONS(4038), - [anon_sym_register] = ACTIONS(4038), - [anon_sym_inline] = ACTIONS(4038), - [anon_sym___inline] = ACTIONS(4038), - [anon_sym___inline__] = ACTIONS(4038), - [anon_sym___forceinline] = ACTIONS(4038), - [anon_sym_thread_local] = ACTIONS(4038), - [anon_sym___thread] = ACTIONS(4038), - [anon_sym_const] = ACTIONS(4038), - [anon_sym_constexpr] = ACTIONS(4038), - [anon_sym_volatile] = ACTIONS(4038), - [anon_sym_restrict] = ACTIONS(4038), - [anon_sym___restrict__] = ACTIONS(4038), - [anon_sym__Atomic] = ACTIONS(4038), - [anon_sym__Noreturn] = ACTIONS(4038), - [anon_sym_noreturn] = ACTIONS(4038), - [anon_sym__Nonnull] = ACTIONS(4038), - [anon_sym_mutable] = ACTIONS(4038), - [anon_sym_constinit] = ACTIONS(4038), - [anon_sym_consteval] = ACTIONS(4038), - [anon_sym_alignas] = ACTIONS(4038), - [anon_sym__Alignas] = ACTIONS(4038), - [sym_primitive_type] = ACTIONS(4038), - [anon_sym_enum] = ACTIONS(4038), - [anon_sym_class] = ACTIONS(4038), - [anon_sym_struct] = ACTIONS(4038), - [anon_sym_union] = ACTIONS(4038), - [anon_sym_if] = ACTIONS(4038), - [anon_sym_switch] = ACTIONS(4038), - [anon_sym_case] = ACTIONS(4038), - [anon_sym_default] = ACTIONS(4038), - [anon_sym_while] = ACTIONS(4038), - [anon_sym_do] = ACTIONS(4038), - [anon_sym_for] = ACTIONS(4038), - [anon_sym_return] = ACTIONS(4038), - [anon_sym_break] = ACTIONS(4038), - [anon_sym_continue] = ACTIONS(4038), - [anon_sym_goto] = ACTIONS(4038), - [anon_sym___try] = ACTIONS(4038), - [anon_sym___leave] = ACTIONS(4038), - [anon_sym_not] = ACTIONS(4038), - [anon_sym_compl] = ACTIONS(4038), - [anon_sym_DASH_DASH] = ACTIONS(4040), - [anon_sym_PLUS_PLUS] = ACTIONS(4040), - [anon_sym_sizeof] = ACTIONS(4038), - [anon_sym___alignof__] = ACTIONS(4038), - [anon_sym___alignof] = ACTIONS(4038), - [anon_sym__alignof] = ACTIONS(4038), - [anon_sym_alignof] = ACTIONS(4038), - [anon_sym__Alignof] = ACTIONS(4038), - [anon_sym_offsetof] = ACTIONS(4038), - [anon_sym__Generic] = ACTIONS(4038), - [anon_sym_typename] = ACTIONS(4038), - [anon_sym_asm] = ACTIONS(4038), - [anon_sym___asm__] = ACTIONS(4038), - [anon_sym___asm] = ACTIONS(4038), - [sym_number_literal] = ACTIONS(4040), - [anon_sym_L_SQUOTE] = ACTIONS(4040), - [anon_sym_u_SQUOTE] = ACTIONS(4040), - [anon_sym_U_SQUOTE] = ACTIONS(4040), - [anon_sym_u8_SQUOTE] = ACTIONS(4040), - [anon_sym_SQUOTE] = ACTIONS(4040), - [anon_sym_L_DQUOTE] = ACTIONS(4040), - [anon_sym_u_DQUOTE] = ACTIONS(4040), - [anon_sym_U_DQUOTE] = ACTIONS(4040), - [anon_sym_u8_DQUOTE] = ACTIONS(4040), - [anon_sym_DQUOTE] = ACTIONS(4040), - [sym_true] = ACTIONS(4038), - [sym_false] = ACTIONS(4038), - [anon_sym_NULL] = ACTIONS(4038), - [anon_sym_nullptr] = ACTIONS(4038), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4038), - [anon_sym_decltype] = ACTIONS(4038), - [anon_sym_explicit] = ACTIONS(4038), - [anon_sym_template] = ACTIONS(4038), - [anon_sym_operator] = ACTIONS(4038), - [anon_sym_try] = ACTIONS(4038), - [anon_sym_delete] = ACTIONS(4038), - [anon_sym_throw] = ACTIONS(4038), - [anon_sym_namespace] = ACTIONS(4038), - [anon_sym_static_assert] = ACTIONS(4038), - [anon_sym_concept] = ACTIONS(4038), - [anon_sym_co_return] = ACTIONS(4038), - [anon_sym_co_yield] = ACTIONS(4038), - [anon_sym_R_DQUOTE] = ACTIONS(4040), - [anon_sym_LR_DQUOTE] = ACTIONS(4040), - [anon_sym_uR_DQUOTE] = ACTIONS(4040), - [anon_sym_UR_DQUOTE] = ACTIONS(4040), - [anon_sym_u8R_DQUOTE] = ACTIONS(4040), - [anon_sym_co_await] = ACTIONS(4038), - [anon_sym_new] = ACTIONS(4038), - [anon_sym_requires] = ACTIONS(4038), - [anon_sym_CARET_CARET] = ACTIONS(4040), - [anon_sym_LBRACK_COLON] = ACTIONS(4040), - [sym_this] = ACTIONS(4038), + [STATE(702)] = { + [sym_identifier] = ACTIONS(4294), + [aux_sym_preproc_include_token1] = ACTIONS(4294), + [aux_sym_preproc_def_token1] = ACTIONS(4294), + [aux_sym_preproc_if_token1] = ACTIONS(4294), + [aux_sym_preproc_if_token2] = ACTIONS(4294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4294), + [sym_preproc_directive] = ACTIONS(4294), + [anon_sym_LPAREN2] = ACTIONS(4296), + [anon_sym_BANG] = ACTIONS(4296), + [anon_sym_TILDE] = ACTIONS(4296), + [anon_sym_DASH] = ACTIONS(4294), + [anon_sym_PLUS] = ACTIONS(4294), + [anon_sym_STAR] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_AMP] = ACTIONS(4294), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym___extension__] = ACTIONS(4294), + [anon_sym_typedef] = ACTIONS(4294), + [anon_sym_virtual] = ACTIONS(4294), + [anon_sym_extern] = ACTIONS(4294), + [anon_sym___attribute__] = ACTIONS(4294), + [anon_sym___attribute] = ACTIONS(4294), + [anon_sym_using] = ACTIONS(4294), + [anon_sym_COLON_COLON] = ACTIONS(4296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4296), + [anon_sym___declspec] = ACTIONS(4294), + [anon_sym___based] = ACTIONS(4294), + [anon_sym___cdecl] = ACTIONS(4294), + [anon_sym___clrcall] = ACTIONS(4294), + [anon_sym___stdcall] = ACTIONS(4294), + [anon_sym___fastcall] = ACTIONS(4294), + [anon_sym___thiscall] = ACTIONS(4294), + [anon_sym___vectorcall] = ACTIONS(4294), + [anon_sym_LBRACE] = ACTIONS(4296), + [anon_sym_signed] = ACTIONS(4294), + [anon_sym_unsigned] = ACTIONS(4294), + [anon_sym_long] = ACTIONS(4294), + [anon_sym_short] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(4294), + [anon_sym_static] = ACTIONS(4294), + [anon_sym_register] = ACTIONS(4294), + [anon_sym_inline] = ACTIONS(4294), + [anon_sym___inline] = ACTIONS(4294), + [anon_sym___inline__] = ACTIONS(4294), + [anon_sym___forceinline] = ACTIONS(4294), + [anon_sym_thread_local] = ACTIONS(4294), + [anon_sym___thread] = ACTIONS(4294), + [anon_sym_const] = ACTIONS(4294), + [anon_sym_constexpr] = ACTIONS(4294), + [anon_sym_volatile] = ACTIONS(4294), + [anon_sym_restrict] = ACTIONS(4294), + [anon_sym___restrict__] = ACTIONS(4294), + [anon_sym__Atomic] = ACTIONS(4294), + [anon_sym__Noreturn] = ACTIONS(4294), + [anon_sym_noreturn] = ACTIONS(4294), + [anon_sym__Nonnull] = ACTIONS(4294), + [anon_sym_mutable] = ACTIONS(4294), + [anon_sym_constinit] = ACTIONS(4294), + [anon_sym_consteval] = ACTIONS(4294), + [anon_sym_alignas] = ACTIONS(4294), + [anon_sym__Alignas] = ACTIONS(4294), + [sym_primitive_type] = ACTIONS(4294), + [anon_sym_enum] = ACTIONS(4294), + [anon_sym_class] = ACTIONS(4294), + [anon_sym_struct] = ACTIONS(4294), + [anon_sym_union] = ACTIONS(4294), + [anon_sym_if] = ACTIONS(4294), + [anon_sym_switch] = ACTIONS(4294), + [anon_sym_case] = ACTIONS(4294), + [anon_sym_default] = ACTIONS(4294), + [anon_sym_while] = ACTIONS(4294), + [anon_sym_do] = ACTIONS(4294), + [anon_sym_for] = ACTIONS(4294), + [anon_sym_return] = ACTIONS(4294), + [anon_sym_break] = ACTIONS(4294), + [anon_sym_continue] = ACTIONS(4294), + [anon_sym_goto] = ACTIONS(4294), + [anon_sym___try] = ACTIONS(4294), + [anon_sym___leave] = ACTIONS(4294), + [anon_sym_not] = ACTIONS(4294), + [anon_sym_compl] = ACTIONS(4294), + [anon_sym_DASH_DASH] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4296), + [anon_sym_sizeof] = ACTIONS(4294), + [anon_sym___alignof__] = ACTIONS(4294), + [anon_sym___alignof] = ACTIONS(4294), + [anon_sym__alignof] = ACTIONS(4294), + [anon_sym_alignof] = ACTIONS(4294), + [anon_sym__Alignof] = ACTIONS(4294), + [anon_sym_offsetof] = ACTIONS(4294), + [anon_sym__Generic] = ACTIONS(4294), + [anon_sym_typename] = ACTIONS(4294), + [anon_sym_asm] = ACTIONS(4294), + [anon_sym___asm__] = ACTIONS(4294), + [anon_sym___asm] = ACTIONS(4294), + [sym_number_literal] = ACTIONS(4296), + [anon_sym_L_SQUOTE] = ACTIONS(4296), + [anon_sym_u_SQUOTE] = ACTIONS(4296), + [anon_sym_U_SQUOTE] = ACTIONS(4296), + [anon_sym_u8_SQUOTE] = ACTIONS(4296), + [anon_sym_SQUOTE] = ACTIONS(4296), + [anon_sym_L_DQUOTE] = ACTIONS(4296), + [anon_sym_u_DQUOTE] = ACTIONS(4296), + [anon_sym_U_DQUOTE] = ACTIONS(4296), + [anon_sym_u8_DQUOTE] = ACTIONS(4296), + [anon_sym_DQUOTE] = ACTIONS(4296), + [sym_true] = ACTIONS(4294), + [sym_false] = ACTIONS(4294), + [anon_sym_NULL] = ACTIONS(4294), + [anon_sym_nullptr] = ACTIONS(4294), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4294), + [anon_sym_decltype] = ACTIONS(4294), + [anon_sym_explicit] = ACTIONS(4294), + [anon_sym_export] = ACTIONS(4294), + [anon_sym_module] = ACTIONS(4294), + [anon_sym_import] = ACTIONS(4294), + [anon_sym_template] = ACTIONS(4294), + [anon_sym_operator] = ACTIONS(4294), + [anon_sym_try] = ACTIONS(4294), + [anon_sym_delete] = ACTIONS(4294), + [anon_sym_throw] = ACTIONS(4294), + [anon_sym_namespace] = ACTIONS(4294), + [anon_sym_static_assert] = ACTIONS(4294), + [anon_sym_concept] = ACTIONS(4294), + [anon_sym_co_return] = ACTIONS(4294), + [anon_sym_co_yield] = ACTIONS(4294), + [anon_sym_R_DQUOTE] = ACTIONS(4296), + [anon_sym_LR_DQUOTE] = ACTIONS(4296), + [anon_sym_uR_DQUOTE] = ACTIONS(4296), + [anon_sym_UR_DQUOTE] = ACTIONS(4296), + [anon_sym_u8R_DQUOTE] = ACTIONS(4296), + [anon_sym_co_await] = ACTIONS(4294), + [anon_sym_new] = ACTIONS(4294), + [anon_sym_requires] = ACTIONS(4294), + [anon_sym_CARET_CARET] = ACTIONS(4296), + [anon_sym_LBRACK_COLON] = ACTIONS(4296), + [sym_this] = ACTIONS(4294), }, - [STATE(847)] = { + [STATE(703)] = { + [sym_identifier] = ACTIONS(4383), + [aux_sym_preproc_include_token1] = ACTIONS(4383), + [aux_sym_preproc_def_token1] = ACTIONS(4383), + [aux_sym_preproc_if_token1] = ACTIONS(4383), + [aux_sym_preproc_if_token2] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4383), + [sym_preproc_directive] = ACTIONS(4383), + [anon_sym_LPAREN2] = ACTIONS(4385), + [anon_sym_BANG] = ACTIONS(4385), + [anon_sym_TILDE] = ACTIONS(4385), + [anon_sym_DASH] = ACTIONS(4383), + [anon_sym_PLUS] = ACTIONS(4383), + [anon_sym_STAR] = ACTIONS(4385), + [anon_sym_AMP_AMP] = ACTIONS(4385), + [anon_sym_AMP] = ACTIONS(4383), + [anon_sym_SEMI] = ACTIONS(4385), + [anon_sym___extension__] = ACTIONS(4383), + [anon_sym_typedef] = ACTIONS(4383), + [anon_sym_virtual] = ACTIONS(4383), + [anon_sym_extern] = ACTIONS(4383), + [anon_sym___attribute__] = ACTIONS(4383), + [anon_sym___attribute] = ACTIONS(4383), + [anon_sym_using] = ACTIONS(4383), + [anon_sym_COLON_COLON] = ACTIONS(4385), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4385), + [anon_sym___declspec] = ACTIONS(4383), + [anon_sym___based] = ACTIONS(4383), + [anon_sym___cdecl] = ACTIONS(4383), + [anon_sym___clrcall] = ACTIONS(4383), + [anon_sym___stdcall] = ACTIONS(4383), + [anon_sym___fastcall] = ACTIONS(4383), + [anon_sym___thiscall] = ACTIONS(4383), + [anon_sym___vectorcall] = ACTIONS(4383), + [anon_sym_LBRACE] = ACTIONS(4385), + [anon_sym_signed] = ACTIONS(4383), + [anon_sym_unsigned] = ACTIONS(4383), + [anon_sym_long] = ACTIONS(4383), + [anon_sym_short] = ACTIONS(4383), + [anon_sym_LBRACK] = ACTIONS(4383), + [anon_sym_static] = ACTIONS(4383), + [anon_sym_register] = ACTIONS(4383), + [anon_sym_inline] = ACTIONS(4383), + [anon_sym___inline] = ACTIONS(4383), + [anon_sym___inline__] = ACTIONS(4383), + [anon_sym___forceinline] = ACTIONS(4383), + [anon_sym_thread_local] = ACTIONS(4383), + [anon_sym___thread] = ACTIONS(4383), + [anon_sym_const] = ACTIONS(4383), + [anon_sym_constexpr] = ACTIONS(4383), + [anon_sym_volatile] = ACTIONS(4383), + [anon_sym_restrict] = ACTIONS(4383), + [anon_sym___restrict__] = ACTIONS(4383), + [anon_sym__Atomic] = ACTIONS(4383), + [anon_sym__Noreturn] = ACTIONS(4383), + [anon_sym_noreturn] = ACTIONS(4383), + [anon_sym__Nonnull] = ACTIONS(4383), + [anon_sym_mutable] = ACTIONS(4383), + [anon_sym_constinit] = ACTIONS(4383), + [anon_sym_consteval] = ACTIONS(4383), + [anon_sym_alignas] = ACTIONS(4383), + [anon_sym__Alignas] = ACTIONS(4383), + [sym_primitive_type] = ACTIONS(4383), + [anon_sym_enum] = ACTIONS(4383), + [anon_sym_class] = ACTIONS(4383), + [anon_sym_struct] = ACTIONS(4383), + [anon_sym_union] = ACTIONS(4383), + [anon_sym_if] = ACTIONS(4383), + [anon_sym_switch] = ACTIONS(4383), + [anon_sym_case] = ACTIONS(4383), + [anon_sym_default] = ACTIONS(4383), + [anon_sym_while] = ACTIONS(4383), + [anon_sym_do] = ACTIONS(4383), + [anon_sym_for] = ACTIONS(4383), + [anon_sym_return] = ACTIONS(4383), + [anon_sym_break] = ACTIONS(4383), + [anon_sym_continue] = ACTIONS(4383), + [anon_sym_goto] = ACTIONS(4383), + [anon_sym___try] = ACTIONS(4383), + [anon_sym___leave] = ACTIONS(4383), + [anon_sym_not] = ACTIONS(4383), + [anon_sym_compl] = ACTIONS(4383), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(4383), + [anon_sym___alignof__] = ACTIONS(4383), + [anon_sym___alignof] = ACTIONS(4383), + [anon_sym__alignof] = ACTIONS(4383), + [anon_sym_alignof] = ACTIONS(4383), + [anon_sym__Alignof] = ACTIONS(4383), + [anon_sym_offsetof] = ACTIONS(4383), + [anon_sym__Generic] = ACTIONS(4383), + [anon_sym_typename] = ACTIONS(4383), + [anon_sym_asm] = ACTIONS(4383), + [anon_sym___asm__] = ACTIONS(4383), + [anon_sym___asm] = ACTIONS(4383), + [sym_number_literal] = ACTIONS(4385), + [anon_sym_L_SQUOTE] = ACTIONS(4385), + [anon_sym_u_SQUOTE] = ACTIONS(4385), + [anon_sym_U_SQUOTE] = ACTIONS(4385), + [anon_sym_u8_SQUOTE] = ACTIONS(4385), + [anon_sym_SQUOTE] = ACTIONS(4385), + [anon_sym_L_DQUOTE] = ACTIONS(4385), + [anon_sym_u_DQUOTE] = ACTIONS(4385), + [anon_sym_U_DQUOTE] = ACTIONS(4385), + [anon_sym_u8_DQUOTE] = ACTIONS(4385), + [anon_sym_DQUOTE] = ACTIONS(4385), + [sym_true] = ACTIONS(4383), + [sym_false] = ACTIONS(4383), + [anon_sym_NULL] = ACTIONS(4383), + [anon_sym_nullptr] = ACTIONS(4383), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4383), + [anon_sym_decltype] = ACTIONS(4383), + [anon_sym_explicit] = ACTIONS(4383), + [anon_sym_export] = ACTIONS(4383), + [anon_sym_module] = ACTIONS(4383), + [anon_sym_import] = ACTIONS(4383), + [anon_sym_template] = ACTIONS(4383), + [anon_sym_operator] = ACTIONS(4383), + [anon_sym_try] = ACTIONS(4383), + [anon_sym_delete] = ACTIONS(4383), + [anon_sym_throw] = ACTIONS(4383), + [anon_sym_namespace] = ACTIONS(4383), + [anon_sym_static_assert] = ACTIONS(4383), + [anon_sym_concept] = ACTIONS(4383), + [anon_sym_co_return] = ACTIONS(4383), + [anon_sym_co_yield] = ACTIONS(4383), + [anon_sym_R_DQUOTE] = ACTIONS(4385), + [anon_sym_LR_DQUOTE] = ACTIONS(4385), + [anon_sym_uR_DQUOTE] = ACTIONS(4385), + [anon_sym_UR_DQUOTE] = ACTIONS(4385), + [anon_sym_u8R_DQUOTE] = ACTIONS(4385), + [anon_sym_co_await] = ACTIONS(4383), + [anon_sym_new] = ACTIONS(4383), + [anon_sym_requires] = ACTIONS(4383), + [anon_sym_CARET_CARET] = ACTIONS(4385), + [anon_sym_LBRACK_COLON] = ACTIONS(4385), + [sym_this] = ACTIONS(4383), + }, + [STATE(704)] = { + [sym_identifier] = ACTIONS(3592), + [aux_sym_preproc_include_token1] = ACTIONS(3592), + [aux_sym_preproc_def_token1] = ACTIONS(3592), + [aux_sym_preproc_if_token1] = ACTIONS(3592), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3592), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3592), + [sym_preproc_directive] = ACTIONS(3592), + [anon_sym_LPAREN2] = ACTIONS(3594), + [anon_sym_BANG] = ACTIONS(3594), + [anon_sym_TILDE] = ACTIONS(3594), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3594), + [anon_sym_AMP_AMP] = ACTIONS(3594), + [anon_sym_AMP] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym___extension__] = ACTIONS(3592), + [anon_sym_typedef] = ACTIONS(3592), + [anon_sym_virtual] = ACTIONS(3592), + [anon_sym_extern] = ACTIONS(3592), + [anon_sym___attribute__] = ACTIONS(3592), + [anon_sym___attribute] = ACTIONS(3592), + [anon_sym_using] = ACTIONS(3592), + [anon_sym_COLON_COLON] = ACTIONS(3594), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3594), + [anon_sym___declspec] = ACTIONS(3592), + [anon_sym___based] = ACTIONS(3592), + [anon_sym___cdecl] = ACTIONS(3592), + [anon_sym___clrcall] = ACTIONS(3592), + [anon_sym___stdcall] = ACTIONS(3592), + [anon_sym___fastcall] = ACTIONS(3592), + [anon_sym___thiscall] = ACTIONS(3592), + [anon_sym___vectorcall] = ACTIONS(3592), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_RBRACE] = ACTIONS(3594), + [anon_sym_signed] = ACTIONS(3592), + [anon_sym_unsigned] = ACTIONS(3592), + [anon_sym_long] = ACTIONS(3592), + [anon_sym_short] = ACTIONS(3592), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_static] = ACTIONS(3592), + [anon_sym_register] = ACTIONS(3592), + [anon_sym_inline] = ACTIONS(3592), + [anon_sym___inline] = ACTIONS(3592), + [anon_sym___inline__] = ACTIONS(3592), + [anon_sym___forceinline] = ACTIONS(3592), + [anon_sym_thread_local] = ACTIONS(3592), + [anon_sym___thread] = ACTIONS(3592), + [anon_sym_const] = ACTIONS(3592), + [anon_sym_constexpr] = ACTIONS(3592), + [anon_sym_volatile] = ACTIONS(3592), + [anon_sym_restrict] = ACTIONS(3592), + [anon_sym___restrict__] = ACTIONS(3592), + [anon_sym__Atomic] = ACTIONS(3592), + [anon_sym__Noreturn] = ACTIONS(3592), + [anon_sym_noreturn] = ACTIONS(3592), + [anon_sym__Nonnull] = ACTIONS(3592), + [anon_sym_mutable] = ACTIONS(3592), + [anon_sym_constinit] = ACTIONS(3592), + [anon_sym_consteval] = ACTIONS(3592), + [anon_sym_alignas] = ACTIONS(3592), + [anon_sym__Alignas] = ACTIONS(3592), + [sym_primitive_type] = ACTIONS(3592), + [anon_sym_enum] = ACTIONS(3592), + [anon_sym_class] = ACTIONS(3592), + [anon_sym_struct] = ACTIONS(3592), + [anon_sym_union] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_else] = ACTIONS(3592), + [anon_sym_switch] = ACTIONS(3592), + [anon_sym_case] = ACTIONS(3592), + [anon_sym_default] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_break] = ACTIONS(3592), + [anon_sym_continue] = ACTIONS(3592), + [anon_sym_goto] = ACTIONS(3592), + [anon_sym___try] = ACTIONS(3592), + [anon_sym___leave] = ACTIONS(3592), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3594), + [anon_sym_PLUS_PLUS] = ACTIONS(3594), + [anon_sym_sizeof] = ACTIONS(3592), + [anon_sym___alignof__] = ACTIONS(3592), + [anon_sym___alignof] = ACTIONS(3592), + [anon_sym__alignof] = ACTIONS(3592), + [anon_sym_alignof] = ACTIONS(3592), + [anon_sym__Alignof] = ACTIONS(3592), + [anon_sym_offsetof] = ACTIONS(3592), + [anon_sym__Generic] = ACTIONS(3592), + [anon_sym_typename] = ACTIONS(3592), + [anon_sym_asm] = ACTIONS(3592), + [anon_sym___asm__] = ACTIONS(3592), + [anon_sym___asm] = ACTIONS(3592), + [sym_number_literal] = ACTIONS(3594), + [anon_sym_L_SQUOTE] = ACTIONS(3594), + [anon_sym_u_SQUOTE] = ACTIONS(3594), + [anon_sym_U_SQUOTE] = ACTIONS(3594), + [anon_sym_u8_SQUOTE] = ACTIONS(3594), + [anon_sym_SQUOTE] = ACTIONS(3594), + [anon_sym_L_DQUOTE] = ACTIONS(3594), + [anon_sym_u_DQUOTE] = ACTIONS(3594), + [anon_sym_U_DQUOTE] = ACTIONS(3594), + [anon_sym_u8_DQUOTE] = ACTIONS(3594), + [anon_sym_DQUOTE] = ACTIONS(3594), + [sym_true] = ACTIONS(3592), + [sym_false] = ACTIONS(3592), + [anon_sym_NULL] = ACTIONS(3592), + [anon_sym_nullptr] = ACTIONS(3592), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3592), + [anon_sym_decltype] = ACTIONS(3592), + [anon_sym_explicit] = ACTIONS(3592), + [anon_sym_export] = ACTIONS(3592), + [anon_sym_import] = ACTIONS(3592), + [anon_sym_template] = ACTIONS(3592), + [anon_sym_operator] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_delete] = ACTIONS(3592), + [anon_sym_throw] = ACTIONS(3592), + [anon_sym_namespace] = ACTIONS(3592), + [anon_sym_static_assert] = ACTIONS(3592), + [anon_sym_concept] = ACTIONS(3592), + [anon_sym_co_return] = ACTIONS(3592), + [anon_sym_co_yield] = ACTIONS(3592), + [anon_sym_R_DQUOTE] = ACTIONS(3594), + [anon_sym_LR_DQUOTE] = ACTIONS(3594), + [anon_sym_uR_DQUOTE] = ACTIONS(3594), + [anon_sym_UR_DQUOTE] = ACTIONS(3594), + [anon_sym_u8R_DQUOTE] = ACTIONS(3594), + [anon_sym_co_await] = ACTIONS(3592), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_requires] = ACTIONS(3592), + [anon_sym_CARET_CARET] = ACTIONS(3594), + [anon_sym_LBRACK_COLON] = ACTIONS(3594), + [sym_this] = ACTIONS(3592), + }, + [STATE(705)] = { + [sym_identifier] = ACTIONS(3917), + [aux_sym_preproc_include_token1] = ACTIONS(3917), + [aux_sym_preproc_def_token1] = ACTIONS(3917), + [aux_sym_preproc_if_token1] = ACTIONS(3917), + [aux_sym_preproc_if_token2] = ACTIONS(3917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3917), + [sym_preproc_directive] = ACTIONS(3917), + [anon_sym_LPAREN2] = ACTIONS(3919), + [anon_sym_BANG] = ACTIONS(3919), + [anon_sym_TILDE] = ACTIONS(3919), + [anon_sym_DASH] = ACTIONS(3917), + [anon_sym_PLUS] = ACTIONS(3917), + [anon_sym_STAR] = ACTIONS(3919), + [anon_sym_AMP_AMP] = ACTIONS(3919), + [anon_sym_AMP] = ACTIONS(3917), + [anon_sym_SEMI] = ACTIONS(3919), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_typedef] = ACTIONS(3917), + [anon_sym_virtual] = ACTIONS(3917), + [anon_sym_extern] = ACTIONS(3917), + [anon_sym___attribute__] = ACTIONS(3917), + [anon_sym___attribute] = ACTIONS(3917), + [anon_sym_using] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(3919), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3919), + [anon_sym___declspec] = ACTIONS(3917), + [anon_sym___based] = ACTIONS(3917), + [anon_sym___cdecl] = ACTIONS(3917), + [anon_sym___clrcall] = ACTIONS(3917), + [anon_sym___stdcall] = ACTIONS(3917), + [anon_sym___fastcall] = ACTIONS(3917), + [anon_sym___thiscall] = ACTIONS(3917), + [anon_sym___vectorcall] = ACTIONS(3917), + [anon_sym_LBRACE] = ACTIONS(3919), + [anon_sym_signed] = ACTIONS(3917), + [anon_sym_unsigned] = ACTIONS(3917), + [anon_sym_long] = ACTIONS(3917), + [anon_sym_short] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(3917), + [anon_sym_static] = ACTIONS(3917), + [anon_sym_register] = ACTIONS(3917), + [anon_sym_inline] = ACTIONS(3917), + [anon_sym___inline] = ACTIONS(3917), + [anon_sym___inline__] = ACTIONS(3917), + [anon_sym___forceinline] = ACTIONS(3917), + [anon_sym_thread_local] = ACTIONS(3917), + [anon_sym___thread] = ACTIONS(3917), + [anon_sym_const] = ACTIONS(3917), + [anon_sym_constexpr] = ACTIONS(3917), + [anon_sym_volatile] = ACTIONS(3917), + [anon_sym_restrict] = ACTIONS(3917), + [anon_sym___restrict__] = ACTIONS(3917), + [anon_sym__Atomic] = ACTIONS(3917), + [anon_sym__Noreturn] = ACTIONS(3917), + [anon_sym_noreturn] = ACTIONS(3917), + [anon_sym__Nonnull] = ACTIONS(3917), + [anon_sym_mutable] = ACTIONS(3917), + [anon_sym_constinit] = ACTIONS(3917), + [anon_sym_consteval] = ACTIONS(3917), + [anon_sym_alignas] = ACTIONS(3917), + [anon_sym__Alignas] = ACTIONS(3917), + [sym_primitive_type] = ACTIONS(3917), + [anon_sym_enum] = ACTIONS(3917), + [anon_sym_class] = ACTIONS(3917), + [anon_sym_struct] = ACTIONS(3917), + [anon_sym_union] = ACTIONS(3917), + [anon_sym_if] = ACTIONS(3917), + [anon_sym_switch] = ACTIONS(3917), + [anon_sym_case] = ACTIONS(3917), + [anon_sym_default] = ACTIONS(3917), + [anon_sym_while] = ACTIONS(3917), + [anon_sym_do] = ACTIONS(3917), + [anon_sym_for] = ACTIONS(3917), + [anon_sym_return] = ACTIONS(3917), + [anon_sym_break] = ACTIONS(3917), + [anon_sym_continue] = ACTIONS(3917), + [anon_sym_goto] = ACTIONS(3917), + [anon_sym___try] = ACTIONS(3917), + [anon_sym___leave] = ACTIONS(3917), + [anon_sym_not] = ACTIONS(3917), + [anon_sym_compl] = ACTIONS(3917), + [anon_sym_DASH_DASH] = ACTIONS(3919), + [anon_sym_PLUS_PLUS] = ACTIONS(3919), + [anon_sym_sizeof] = ACTIONS(3917), + [anon_sym___alignof__] = ACTIONS(3917), + [anon_sym___alignof] = ACTIONS(3917), + [anon_sym__alignof] = ACTIONS(3917), + [anon_sym_alignof] = ACTIONS(3917), + [anon_sym__Alignof] = ACTIONS(3917), + [anon_sym_offsetof] = ACTIONS(3917), + [anon_sym__Generic] = ACTIONS(3917), + [anon_sym_typename] = ACTIONS(3917), + [anon_sym_asm] = ACTIONS(3917), + [anon_sym___asm__] = ACTIONS(3917), + [anon_sym___asm] = ACTIONS(3917), + [sym_number_literal] = ACTIONS(3919), + [anon_sym_L_SQUOTE] = ACTIONS(3919), + [anon_sym_u_SQUOTE] = ACTIONS(3919), + [anon_sym_U_SQUOTE] = ACTIONS(3919), + [anon_sym_u8_SQUOTE] = ACTIONS(3919), + [anon_sym_SQUOTE] = ACTIONS(3919), + [anon_sym_L_DQUOTE] = ACTIONS(3919), + [anon_sym_u_DQUOTE] = ACTIONS(3919), + [anon_sym_U_DQUOTE] = ACTIONS(3919), + [anon_sym_u8_DQUOTE] = ACTIONS(3919), + [anon_sym_DQUOTE] = ACTIONS(3919), + [sym_true] = ACTIONS(3917), + [sym_false] = ACTIONS(3917), + [anon_sym_NULL] = ACTIONS(3917), + [anon_sym_nullptr] = ACTIONS(3917), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3917), + [anon_sym_decltype] = ACTIONS(3917), + [anon_sym_explicit] = ACTIONS(3917), + [anon_sym_export] = ACTIONS(3917), + [anon_sym_module] = ACTIONS(3917), + [anon_sym_import] = ACTIONS(3917), + [anon_sym_template] = ACTIONS(3917), + [anon_sym_operator] = ACTIONS(3917), + [anon_sym_try] = ACTIONS(3917), + [anon_sym_delete] = ACTIONS(3917), + [anon_sym_throw] = ACTIONS(3917), + [anon_sym_namespace] = ACTIONS(3917), + [anon_sym_static_assert] = ACTIONS(3917), + [anon_sym_concept] = ACTIONS(3917), + [anon_sym_co_return] = ACTIONS(3917), + [anon_sym_co_yield] = ACTIONS(3917), + [anon_sym_R_DQUOTE] = ACTIONS(3919), + [anon_sym_LR_DQUOTE] = ACTIONS(3919), + [anon_sym_uR_DQUOTE] = ACTIONS(3919), + [anon_sym_UR_DQUOTE] = ACTIONS(3919), + [anon_sym_u8R_DQUOTE] = ACTIONS(3919), + [anon_sym_co_await] = ACTIONS(3917), + [anon_sym_new] = ACTIONS(3917), + [anon_sym_requires] = ACTIONS(3917), + [anon_sym_CARET_CARET] = ACTIONS(3919), + [anon_sym_LBRACK_COLON] = ACTIONS(3919), + [sym_this] = ACTIONS(3917), + }, + [STATE(706)] = { + [sym_identifier] = ACTIONS(3596), + [aux_sym_preproc_include_token1] = ACTIONS(3596), + [aux_sym_preproc_def_token1] = ACTIONS(3596), + [aux_sym_preproc_if_token1] = ACTIONS(3596), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3596), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3596), + [sym_preproc_directive] = ACTIONS(3596), + [anon_sym_LPAREN2] = ACTIONS(3598), + [anon_sym_BANG] = ACTIONS(3598), + [anon_sym_TILDE] = ACTIONS(3598), + [anon_sym_DASH] = ACTIONS(3596), + [anon_sym_PLUS] = ACTIONS(3596), + [anon_sym_STAR] = ACTIONS(3598), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_AMP] = ACTIONS(3596), + [anon_sym_SEMI] = ACTIONS(3598), + [anon_sym___extension__] = ACTIONS(3596), + [anon_sym_typedef] = ACTIONS(3596), + [anon_sym_virtual] = ACTIONS(3596), + [anon_sym_extern] = ACTIONS(3596), + [anon_sym___attribute__] = ACTIONS(3596), + [anon_sym___attribute] = ACTIONS(3596), + [anon_sym_using] = ACTIONS(3596), + [anon_sym_COLON_COLON] = ACTIONS(3598), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3598), + [anon_sym___declspec] = ACTIONS(3596), + [anon_sym___based] = ACTIONS(3596), + [anon_sym___cdecl] = ACTIONS(3596), + [anon_sym___clrcall] = ACTIONS(3596), + [anon_sym___stdcall] = ACTIONS(3596), + [anon_sym___fastcall] = ACTIONS(3596), + [anon_sym___thiscall] = ACTIONS(3596), + [anon_sym___vectorcall] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_RBRACE] = ACTIONS(3598), + [anon_sym_signed] = ACTIONS(3596), + [anon_sym_unsigned] = ACTIONS(3596), + [anon_sym_long] = ACTIONS(3596), + [anon_sym_short] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_static] = ACTIONS(3596), + [anon_sym_register] = ACTIONS(3596), + [anon_sym_inline] = ACTIONS(3596), + [anon_sym___inline] = ACTIONS(3596), + [anon_sym___inline__] = ACTIONS(3596), + [anon_sym___forceinline] = ACTIONS(3596), + [anon_sym_thread_local] = ACTIONS(3596), + [anon_sym___thread] = ACTIONS(3596), + [anon_sym_const] = ACTIONS(3596), + [anon_sym_constexpr] = ACTIONS(3596), + [anon_sym_volatile] = ACTIONS(3596), + [anon_sym_restrict] = ACTIONS(3596), + [anon_sym___restrict__] = ACTIONS(3596), + [anon_sym__Atomic] = ACTIONS(3596), + [anon_sym__Noreturn] = ACTIONS(3596), + [anon_sym_noreturn] = ACTIONS(3596), + [anon_sym__Nonnull] = ACTIONS(3596), + [anon_sym_mutable] = ACTIONS(3596), + [anon_sym_constinit] = ACTIONS(3596), + [anon_sym_consteval] = ACTIONS(3596), + [anon_sym_alignas] = ACTIONS(3596), + [anon_sym__Alignas] = ACTIONS(3596), + [sym_primitive_type] = ACTIONS(3596), + [anon_sym_enum] = ACTIONS(3596), + [anon_sym_class] = ACTIONS(3596), + [anon_sym_struct] = ACTIONS(3596), + [anon_sym_union] = ACTIONS(3596), + [anon_sym_if] = ACTIONS(3596), + [anon_sym_else] = ACTIONS(3596), + [anon_sym_switch] = ACTIONS(3596), + [anon_sym_case] = ACTIONS(3596), + [anon_sym_default] = ACTIONS(3596), + [anon_sym_while] = ACTIONS(3596), + [anon_sym_do] = ACTIONS(3596), + [anon_sym_for] = ACTIONS(3596), + [anon_sym_return] = ACTIONS(3596), + [anon_sym_break] = ACTIONS(3596), + [anon_sym_continue] = ACTIONS(3596), + [anon_sym_goto] = ACTIONS(3596), + [anon_sym___try] = ACTIONS(3596), + [anon_sym___leave] = ACTIONS(3596), + [anon_sym_not] = ACTIONS(3596), + [anon_sym_compl] = ACTIONS(3596), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3596), + [anon_sym___alignof__] = ACTIONS(3596), + [anon_sym___alignof] = ACTIONS(3596), + [anon_sym__alignof] = ACTIONS(3596), + [anon_sym_alignof] = ACTIONS(3596), + [anon_sym__Alignof] = ACTIONS(3596), + [anon_sym_offsetof] = ACTIONS(3596), + [anon_sym__Generic] = ACTIONS(3596), + [anon_sym_typename] = ACTIONS(3596), + [anon_sym_asm] = ACTIONS(3596), + [anon_sym___asm__] = ACTIONS(3596), + [anon_sym___asm] = ACTIONS(3596), + [sym_number_literal] = ACTIONS(3598), + [anon_sym_L_SQUOTE] = ACTIONS(3598), + [anon_sym_u_SQUOTE] = ACTIONS(3598), + [anon_sym_U_SQUOTE] = ACTIONS(3598), + [anon_sym_u8_SQUOTE] = ACTIONS(3598), + [anon_sym_SQUOTE] = ACTIONS(3598), + [anon_sym_L_DQUOTE] = ACTIONS(3598), + [anon_sym_u_DQUOTE] = ACTIONS(3598), + [anon_sym_U_DQUOTE] = ACTIONS(3598), + [anon_sym_u8_DQUOTE] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3598), + [sym_true] = ACTIONS(3596), + [sym_false] = ACTIONS(3596), + [anon_sym_NULL] = ACTIONS(3596), + [anon_sym_nullptr] = ACTIONS(3596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3596), + [anon_sym_decltype] = ACTIONS(3596), + [anon_sym_explicit] = ACTIONS(3596), + [anon_sym_export] = ACTIONS(3596), + [anon_sym_import] = ACTIONS(3596), + [anon_sym_template] = ACTIONS(3596), + [anon_sym_operator] = ACTIONS(3596), + [anon_sym_try] = ACTIONS(3596), + [anon_sym_delete] = ACTIONS(3596), + [anon_sym_throw] = ACTIONS(3596), + [anon_sym_namespace] = ACTIONS(3596), + [anon_sym_static_assert] = ACTIONS(3596), + [anon_sym_concept] = ACTIONS(3596), + [anon_sym_co_return] = ACTIONS(3596), + [anon_sym_co_yield] = ACTIONS(3596), + [anon_sym_R_DQUOTE] = ACTIONS(3598), + [anon_sym_LR_DQUOTE] = ACTIONS(3598), + [anon_sym_uR_DQUOTE] = ACTIONS(3598), + [anon_sym_UR_DQUOTE] = ACTIONS(3598), + [anon_sym_u8R_DQUOTE] = ACTIONS(3598), + [anon_sym_co_await] = ACTIONS(3596), + [anon_sym_new] = ACTIONS(3596), + [anon_sym_requires] = ACTIONS(3596), + [anon_sym_CARET_CARET] = ACTIONS(3598), + [anon_sym_LBRACK_COLON] = ACTIONS(3598), + [sym_this] = ACTIONS(3596), + }, + [STATE(707)] = { + [sym_identifier] = ACTIONS(3600), + [aux_sym_preproc_include_token1] = ACTIONS(3600), + [aux_sym_preproc_def_token1] = ACTIONS(3600), + [aux_sym_preproc_if_token1] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), + [sym_preproc_directive] = ACTIONS(3600), + [anon_sym_LPAREN2] = ACTIONS(3602), + [anon_sym_BANG] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3600), + [anon_sym_STAR] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_AMP] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym___extension__] = ACTIONS(3600), + [anon_sym_typedef] = ACTIONS(3600), + [anon_sym_virtual] = ACTIONS(3600), + [anon_sym_extern] = ACTIONS(3600), + [anon_sym___attribute__] = ACTIONS(3600), + [anon_sym___attribute] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), + [anon_sym___declspec] = ACTIONS(3600), + [anon_sym___based] = ACTIONS(3600), + [anon_sym___cdecl] = ACTIONS(3600), + [anon_sym___clrcall] = ACTIONS(3600), + [anon_sym___stdcall] = ACTIONS(3600), + [anon_sym___fastcall] = ACTIONS(3600), + [anon_sym___thiscall] = ACTIONS(3600), + [anon_sym___vectorcall] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_RBRACE] = ACTIONS(3602), + [anon_sym_signed] = ACTIONS(3600), + [anon_sym_unsigned] = ACTIONS(3600), + [anon_sym_long] = ACTIONS(3600), + [anon_sym_short] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_register] = ACTIONS(3600), + [anon_sym_inline] = ACTIONS(3600), + [anon_sym___inline] = ACTIONS(3600), + [anon_sym___inline__] = ACTIONS(3600), + [anon_sym___forceinline] = ACTIONS(3600), + [anon_sym_thread_local] = ACTIONS(3600), + [anon_sym___thread] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_constexpr] = ACTIONS(3600), + [anon_sym_volatile] = ACTIONS(3600), + [anon_sym_restrict] = ACTIONS(3600), + [anon_sym___restrict__] = ACTIONS(3600), + [anon_sym__Atomic] = ACTIONS(3600), + [anon_sym__Noreturn] = ACTIONS(3600), + [anon_sym_noreturn] = ACTIONS(3600), + [anon_sym__Nonnull] = ACTIONS(3600), + [anon_sym_mutable] = ACTIONS(3600), + [anon_sym_constinit] = ACTIONS(3600), + [anon_sym_consteval] = ACTIONS(3600), + [anon_sym_alignas] = ACTIONS(3600), + [anon_sym__Alignas] = ACTIONS(3600), + [sym_primitive_type] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_struct] = ACTIONS(3600), + [anon_sym_union] = ACTIONS(3600), + [anon_sym_if] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3600), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_case] = ACTIONS(3600), + [anon_sym_default] = ACTIONS(3600), + [anon_sym_while] = ACTIONS(3600), + [anon_sym_do] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3600), + [anon_sym_return] = ACTIONS(3600), + [anon_sym_break] = ACTIONS(3600), + [anon_sym_continue] = ACTIONS(3600), + [anon_sym_goto] = ACTIONS(3600), + [anon_sym___try] = ACTIONS(3600), + [anon_sym___leave] = ACTIONS(3600), + [anon_sym_not] = ACTIONS(3600), + [anon_sym_compl] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3602), + [anon_sym_PLUS_PLUS] = ACTIONS(3602), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(3600), + [anon_sym___alignof] = ACTIONS(3600), + [anon_sym__alignof] = ACTIONS(3600), + [anon_sym_alignof] = ACTIONS(3600), + [anon_sym__Alignof] = ACTIONS(3600), + [anon_sym_offsetof] = ACTIONS(3600), + [anon_sym__Generic] = ACTIONS(3600), + [anon_sym_typename] = ACTIONS(3600), + [anon_sym_asm] = ACTIONS(3600), + [anon_sym___asm__] = ACTIONS(3600), + [anon_sym___asm] = ACTIONS(3600), + [sym_number_literal] = ACTIONS(3602), + [anon_sym_L_SQUOTE] = ACTIONS(3602), + [anon_sym_u_SQUOTE] = ACTIONS(3602), + [anon_sym_U_SQUOTE] = ACTIONS(3602), + [anon_sym_u8_SQUOTE] = ACTIONS(3602), + [anon_sym_SQUOTE] = ACTIONS(3602), + [anon_sym_L_DQUOTE] = ACTIONS(3602), + [anon_sym_u_DQUOTE] = ACTIONS(3602), + [anon_sym_U_DQUOTE] = ACTIONS(3602), + [anon_sym_u8_DQUOTE] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [sym_true] = ACTIONS(3600), + [sym_false] = ACTIONS(3600), + [anon_sym_NULL] = ACTIONS(3600), + [anon_sym_nullptr] = ACTIONS(3600), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3600), + [anon_sym_decltype] = ACTIONS(3600), + [anon_sym_explicit] = ACTIONS(3600), + [anon_sym_export] = ACTIONS(3600), + [anon_sym_import] = ACTIONS(3600), + [anon_sym_template] = ACTIONS(3600), + [anon_sym_operator] = ACTIONS(3600), + [anon_sym_try] = ACTIONS(3600), + [anon_sym_delete] = ACTIONS(3600), + [anon_sym_throw] = ACTIONS(3600), + [anon_sym_namespace] = ACTIONS(3600), + [anon_sym_static_assert] = ACTIONS(3600), + [anon_sym_concept] = ACTIONS(3600), + [anon_sym_co_return] = ACTIONS(3600), + [anon_sym_co_yield] = ACTIONS(3600), + [anon_sym_R_DQUOTE] = ACTIONS(3602), + [anon_sym_LR_DQUOTE] = ACTIONS(3602), + [anon_sym_uR_DQUOTE] = ACTIONS(3602), + [anon_sym_UR_DQUOTE] = ACTIONS(3602), + [anon_sym_u8R_DQUOTE] = ACTIONS(3602), + [anon_sym_co_await] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3600), + [anon_sym_requires] = ACTIONS(3600), + [anon_sym_CARET_CARET] = ACTIONS(3602), + [anon_sym_LBRACK_COLON] = ACTIONS(3602), + [sym_this] = ACTIONS(3600), + }, + [STATE(708)] = { + [sym_identifier] = ACTIONS(3931), + [aux_sym_preproc_include_token1] = ACTIONS(3931), + [aux_sym_preproc_def_token1] = ACTIONS(3931), + [aux_sym_preproc_if_token1] = ACTIONS(3931), + [aux_sym_preproc_if_token2] = ACTIONS(3931), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3931), + [sym_preproc_directive] = ACTIONS(3931), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_TILDE] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym_SEMI] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(3931), + [anon_sym_typedef] = ACTIONS(3931), + [anon_sym_virtual] = ACTIONS(3931), + [anon_sym_extern] = ACTIONS(3931), + [anon_sym___attribute__] = ACTIONS(3931), + [anon_sym___attribute] = ACTIONS(3931), + [anon_sym_using] = ACTIONS(3931), + [anon_sym_COLON_COLON] = ACTIONS(3933), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3933), + [anon_sym___declspec] = ACTIONS(3931), + [anon_sym___based] = ACTIONS(3931), + [anon_sym___cdecl] = ACTIONS(3931), + [anon_sym___clrcall] = ACTIONS(3931), + [anon_sym___stdcall] = ACTIONS(3931), + [anon_sym___fastcall] = ACTIONS(3931), + [anon_sym___thiscall] = ACTIONS(3931), + [anon_sym___vectorcall] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3933), + [anon_sym_signed] = ACTIONS(3931), + [anon_sym_unsigned] = ACTIONS(3931), + [anon_sym_long] = ACTIONS(3931), + [anon_sym_short] = ACTIONS(3931), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_static] = ACTIONS(3931), + [anon_sym_register] = ACTIONS(3931), + [anon_sym_inline] = ACTIONS(3931), + [anon_sym___inline] = ACTIONS(3931), + [anon_sym___inline__] = ACTIONS(3931), + [anon_sym___forceinline] = ACTIONS(3931), + [anon_sym_thread_local] = ACTIONS(3931), + [anon_sym___thread] = ACTIONS(3931), + [anon_sym_const] = ACTIONS(3931), + [anon_sym_constexpr] = ACTIONS(3931), + [anon_sym_volatile] = ACTIONS(3931), + [anon_sym_restrict] = ACTIONS(3931), + [anon_sym___restrict__] = ACTIONS(3931), + [anon_sym__Atomic] = ACTIONS(3931), + [anon_sym__Noreturn] = ACTIONS(3931), + [anon_sym_noreturn] = ACTIONS(3931), + [anon_sym__Nonnull] = ACTIONS(3931), + [anon_sym_mutable] = ACTIONS(3931), + [anon_sym_constinit] = ACTIONS(3931), + [anon_sym_consteval] = ACTIONS(3931), + [anon_sym_alignas] = ACTIONS(3931), + [anon_sym__Alignas] = ACTIONS(3931), + [sym_primitive_type] = ACTIONS(3931), + [anon_sym_enum] = ACTIONS(3931), + [anon_sym_class] = ACTIONS(3931), + [anon_sym_struct] = ACTIONS(3931), + [anon_sym_union] = ACTIONS(3931), + [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___try] = ACTIONS(3931), + [anon_sym___leave] = ACTIONS(3931), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3933), + [anon_sym_sizeof] = ACTIONS(3931), + [anon_sym___alignof__] = ACTIONS(3931), + [anon_sym___alignof] = ACTIONS(3931), + [anon_sym__alignof] = ACTIONS(3931), + [anon_sym_alignof] = ACTIONS(3931), + [anon_sym__Alignof] = ACTIONS(3931), + [anon_sym_offsetof] = ACTIONS(3931), + [anon_sym__Generic] = ACTIONS(3931), + [anon_sym_typename] = ACTIONS(3931), + [anon_sym_asm] = ACTIONS(3931), + [anon_sym___asm__] = ACTIONS(3931), + [anon_sym___asm] = ACTIONS(3931), + [sym_number_literal] = ACTIONS(3933), + [anon_sym_L_SQUOTE] = ACTIONS(3933), + [anon_sym_u_SQUOTE] = ACTIONS(3933), + [anon_sym_U_SQUOTE] = ACTIONS(3933), + [anon_sym_u8_SQUOTE] = ACTIONS(3933), + [anon_sym_SQUOTE] = ACTIONS(3933), + [anon_sym_L_DQUOTE] = ACTIONS(3933), + [anon_sym_u_DQUOTE] = ACTIONS(3933), + [anon_sym_U_DQUOTE] = ACTIONS(3933), + [anon_sym_u8_DQUOTE] = ACTIONS(3933), + [anon_sym_DQUOTE] = ACTIONS(3933), + [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(3931), + [anon_sym_decltype] = ACTIONS(3931), + [anon_sym_explicit] = ACTIONS(3931), + [anon_sym_export] = ACTIONS(3931), + [anon_sym_module] = ACTIONS(3931), + [anon_sym_import] = ACTIONS(3931), + [anon_sym_template] = ACTIONS(3931), + [anon_sym_operator] = ACTIONS(3931), + [anon_sym_try] = ACTIONS(3931), + [anon_sym_delete] = ACTIONS(3931), + [anon_sym_throw] = ACTIONS(3931), + [anon_sym_namespace] = ACTIONS(3931), + [anon_sym_static_assert] = ACTIONS(3931), + [anon_sym_concept] = ACTIONS(3931), + [anon_sym_co_return] = ACTIONS(3931), + [anon_sym_co_yield] = ACTIONS(3931), + [anon_sym_R_DQUOTE] = ACTIONS(3933), + [anon_sym_LR_DQUOTE] = ACTIONS(3933), + [anon_sym_uR_DQUOTE] = ACTIONS(3933), + [anon_sym_UR_DQUOTE] = ACTIONS(3933), + [anon_sym_u8R_DQUOTE] = ACTIONS(3933), + [anon_sym_co_await] = ACTIONS(3931), + [anon_sym_new] = ACTIONS(3931), + [anon_sym_requires] = ACTIONS(3931), + [anon_sym_CARET_CARET] = ACTIONS(3933), + [anon_sym_LBRACK_COLON] = ACTIONS(3933), + [sym_this] = ACTIONS(3931), + }, + [STATE(709)] = { + [sym_identifier] = ACTIONS(3950), + [aux_sym_preproc_include_token1] = ACTIONS(3950), + [aux_sym_preproc_def_token1] = ACTIONS(3950), + [aux_sym_preproc_if_token1] = ACTIONS(3950), + [aux_sym_preproc_if_token2] = ACTIONS(3950), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), + [sym_preproc_directive] = ACTIONS(3950), + [anon_sym_LPAREN2] = ACTIONS(3952), + [anon_sym_BANG] = ACTIONS(3952), + [anon_sym_TILDE] = ACTIONS(3952), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_PLUS] = ACTIONS(3950), + [anon_sym_STAR] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym___extension__] = ACTIONS(3950), + [anon_sym_typedef] = ACTIONS(3950), + [anon_sym_virtual] = ACTIONS(3950), + [anon_sym_extern] = ACTIONS(3950), + [anon_sym___attribute__] = ACTIONS(3950), + [anon_sym___attribute] = ACTIONS(3950), + [anon_sym_using] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), + [anon_sym___declspec] = ACTIONS(3950), + [anon_sym___based] = ACTIONS(3950), + [anon_sym___cdecl] = ACTIONS(3950), + [anon_sym___clrcall] = ACTIONS(3950), + [anon_sym___stdcall] = ACTIONS(3950), + [anon_sym___fastcall] = ACTIONS(3950), + [anon_sym___thiscall] = ACTIONS(3950), + [anon_sym___vectorcall] = ACTIONS(3950), + [anon_sym_LBRACE] = ACTIONS(3952), + [anon_sym_signed] = ACTIONS(3950), + [anon_sym_unsigned] = ACTIONS(3950), + [anon_sym_long] = ACTIONS(3950), + [anon_sym_short] = ACTIONS(3950), + [anon_sym_LBRACK] = ACTIONS(3950), + [anon_sym_static] = ACTIONS(3950), + [anon_sym_register] = ACTIONS(3950), + [anon_sym_inline] = ACTIONS(3950), + [anon_sym___inline] = ACTIONS(3950), + [anon_sym___inline__] = ACTIONS(3950), + [anon_sym___forceinline] = ACTIONS(3950), + [anon_sym_thread_local] = ACTIONS(3950), + [anon_sym___thread] = ACTIONS(3950), + [anon_sym_const] = ACTIONS(3950), + [anon_sym_constexpr] = ACTIONS(3950), + [anon_sym_volatile] = ACTIONS(3950), + [anon_sym_restrict] = ACTIONS(3950), + [anon_sym___restrict__] = ACTIONS(3950), + [anon_sym__Atomic] = ACTIONS(3950), + [anon_sym__Noreturn] = ACTIONS(3950), + [anon_sym_noreturn] = ACTIONS(3950), + [anon_sym__Nonnull] = ACTIONS(3950), + [anon_sym_mutable] = ACTIONS(3950), + [anon_sym_constinit] = ACTIONS(3950), + [anon_sym_consteval] = ACTIONS(3950), + [anon_sym_alignas] = ACTIONS(3950), + [anon_sym__Alignas] = ACTIONS(3950), + [sym_primitive_type] = ACTIONS(3950), + [anon_sym_enum] = ACTIONS(3950), + [anon_sym_class] = ACTIONS(3950), + [anon_sym_struct] = ACTIONS(3950), + [anon_sym_union] = ACTIONS(3950), + [anon_sym_if] = ACTIONS(3950), + [anon_sym_switch] = ACTIONS(3950), + [anon_sym_case] = ACTIONS(3950), + [anon_sym_default] = ACTIONS(3950), + [anon_sym_while] = ACTIONS(3950), + [anon_sym_do] = ACTIONS(3950), + [anon_sym_for] = ACTIONS(3950), + [anon_sym_return] = ACTIONS(3950), + [anon_sym_break] = ACTIONS(3950), + [anon_sym_continue] = ACTIONS(3950), + [anon_sym_goto] = ACTIONS(3950), + [anon_sym___try] = ACTIONS(3950), + [anon_sym___leave] = ACTIONS(3950), + [anon_sym_not] = ACTIONS(3950), + [anon_sym_compl] = ACTIONS(3950), + [anon_sym_DASH_DASH] = ACTIONS(3952), + [anon_sym_PLUS_PLUS] = ACTIONS(3952), + [anon_sym_sizeof] = ACTIONS(3950), + [anon_sym___alignof__] = ACTIONS(3950), + [anon_sym___alignof] = ACTIONS(3950), + [anon_sym__alignof] = ACTIONS(3950), + [anon_sym_alignof] = ACTIONS(3950), + [anon_sym__Alignof] = ACTIONS(3950), + [anon_sym_offsetof] = ACTIONS(3950), + [anon_sym__Generic] = ACTIONS(3950), + [anon_sym_typename] = ACTIONS(3950), + [anon_sym_asm] = ACTIONS(3950), + [anon_sym___asm__] = ACTIONS(3950), + [anon_sym___asm] = ACTIONS(3950), + [sym_number_literal] = ACTIONS(3952), + [anon_sym_L_SQUOTE] = ACTIONS(3952), + [anon_sym_u_SQUOTE] = ACTIONS(3952), + [anon_sym_U_SQUOTE] = ACTIONS(3952), + [anon_sym_u8_SQUOTE] = ACTIONS(3952), + [anon_sym_SQUOTE] = ACTIONS(3952), + [anon_sym_L_DQUOTE] = ACTIONS(3952), + [anon_sym_u_DQUOTE] = ACTIONS(3952), + [anon_sym_U_DQUOTE] = ACTIONS(3952), + [anon_sym_u8_DQUOTE] = ACTIONS(3952), + [anon_sym_DQUOTE] = ACTIONS(3952), + [sym_true] = ACTIONS(3950), + [sym_false] = ACTIONS(3950), + [anon_sym_NULL] = ACTIONS(3950), + [anon_sym_nullptr] = ACTIONS(3950), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3950), + [anon_sym_decltype] = ACTIONS(3950), + [anon_sym_explicit] = ACTIONS(3950), + [anon_sym_export] = ACTIONS(3950), + [anon_sym_module] = ACTIONS(3950), + [anon_sym_import] = ACTIONS(3950), + [anon_sym_template] = ACTIONS(3950), + [anon_sym_operator] = ACTIONS(3950), + [anon_sym_try] = ACTIONS(3950), + [anon_sym_delete] = ACTIONS(3950), + [anon_sym_throw] = ACTIONS(3950), + [anon_sym_namespace] = ACTIONS(3950), + [anon_sym_static_assert] = ACTIONS(3950), + [anon_sym_concept] = ACTIONS(3950), + [anon_sym_co_return] = ACTIONS(3950), + [anon_sym_co_yield] = ACTIONS(3950), + [anon_sym_R_DQUOTE] = ACTIONS(3952), + [anon_sym_LR_DQUOTE] = ACTIONS(3952), + [anon_sym_uR_DQUOTE] = ACTIONS(3952), + [anon_sym_UR_DQUOTE] = ACTIONS(3952), + [anon_sym_u8R_DQUOTE] = ACTIONS(3952), + [anon_sym_co_await] = ACTIONS(3950), + [anon_sym_new] = ACTIONS(3950), + [anon_sym_requires] = ACTIONS(3950), + [anon_sym_CARET_CARET] = ACTIONS(3952), + [anon_sym_LBRACK_COLON] = ACTIONS(3952), + [sym_this] = ACTIONS(3950), + }, + [STATE(710)] = { + [sym_identifier] = ACTIONS(3962), + [aux_sym_preproc_include_token1] = ACTIONS(3962), + [aux_sym_preproc_def_token1] = ACTIONS(3962), + [aux_sym_preproc_if_token1] = ACTIONS(3962), + [aux_sym_preproc_if_token2] = ACTIONS(3962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3962), + [sym_preproc_directive] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3964), + [anon_sym_BANG] = ACTIONS(3964), + [anon_sym_TILDE] = ACTIONS(3964), + [anon_sym_DASH] = ACTIONS(3962), + [anon_sym_PLUS] = ACTIONS(3962), + [anon_sym_STAR] = ACTIONS(3964), + [anon_sym_AMP_AMP] = ACTIONS(3964), + [anon_sym_AMP] = ACTIONS(3962), + [anon_sym_SEMI] = ACTIONS(3964), + [anon_sym___extension__] = ACTIONS(3962), + [anon_sym_typedef] = ACTIONS(3962), + [anon_sym_virtual] = ACTIONS(3962), + [anon_sym_extern] = ACTIONS(3962), + [anon_sym___attribute__] = ACTIONS(3962), + [anon_sym___attribute] = ACTIONS(3962), + [anon_sym_using] = ACTIONS(3962), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3964), + [anon_sym___declspec] = ACTIONS(3962), + [anon_sym___based] = ACTIONS(3962), + [anon_sym___cdecl] = ACTIONS(3962), + [anon_sym___clrcall] = ACTIONS(3962), + [anon_sym___stdcall] = ACTIONS(3962), + [anon_sym___fastcall] = ACTIONS(3962), + [anon_sym___thiscall] = ACTIONS(3962), + [anon_sym___vectorcall] = ACTIONS(3962), + [anon_sym_LBRACE] = ACTIONS(3964), + [anon_sym_signed] = ACTIONS(3962), + [anon_sym_unsigned] = ACTIONS(3962), + [anon_sym_long] = ACTIONS(3962), + [anon_sym_short] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3962), + [anon_sym_static] = ACTIONS(3962), + [anon_sym_register] = ACTIONS(3962), + [anon_sym_inline] = ACTIONS(3962), + [anon_sym___inline] = ACTIONS(3962), + [anon_sym___inline__] = ACTIONS(3962), + [anon_sym___forceinline] = ACTIONS(3962), + [anon_sym_thread_local] = ACTIONS(3962), + [anon_sym___thread] = ACTIONS(3962), + [anon_sym_const] = ACTIONS(3962), + [anon_sym_constexpr] = ACTIONS(3962), + [anon_sym_volatile] = ACTIONS(3962), + [anon_sym_restrict] = ACTIONS(3962), + [anon_sym___restrict__] = ACTIONS(3962), + [anon_sym__Atomic] = ACTIONS(3962), + [anon_sym__Noreturn] = ACTIONS(3962), + [anon_sym_noreturn] = ACTIONS(3962), + [anon_sym__Nonnull] = ACTIONS(3962), + [anon_sym_mutable] = ACTIONS(3962), + [anon_sym_constinit] = ACTIONS(3962), + [anon_sym_consteval] = ACTIONS(3962), + [anon_sym_alignas] = ACTIONS(3962), + [anon_sym__Alignas] = ACTIONS(3962), + [sym_primitive_type] = ACTIONS(3962), + [anon_sym_enum] = ACTIONS(3962), + [anon_sym_class] = ACTIONS(3962), + [anon_sym_struct] = ACTIONS(3962), + [anon_sym_union] = ACTIONS(3962), + [anon_sym_if] = ACTIONS(3962), + [anon_sym_switch] = ACTIONS(3962), + [anon_sym_case] = ACTIONS(3962), + [anon_sym_default] = ACTIONS(3962), + [anon_sym_while] = ACTIONS(3962), + [anon_sym_do] = ACTIONS(3962), + [anon_sym_for] = ACTIONS(3962), + [anon_sym_return] = ACTIONS(3962), + [anon_sym_break] = ACTIONS(3962), + [anon_sym_continue] = ACTIONS(3962), + [anon_sym_goto] = ACTIONS(3962), + [anon_sym___try] = ACTIONS(3962), + [anon_sym___leave] = ACTIONS(3962), + [anon_sym_not] = ACTIONS(3962), + [anon_sym_compl] = ACTIONS(3962), + [anon_sym_DASH_DASH] = ACTIONS(3964), + [anon_sym_PLUS_PLUS] = ACTIONS(3964), + [anon_sym_sizeof] = ACTIONS(3962), + [anon_sym___alignof__] = ACTIONS(3962), + [anon_sym___alignof] = ACTIONS(3962), + [anon_sym__alignof] = ACTIONS(3962), + [anon_sym_alignof] = ACTIONS(3962), + [anon_sym__Alignof] = ACTIONS(3962), + [anon_sym_offsetof] = ACTIONS(3962), + [anon_sym__Generic] = ACTIONS(3962), + [anon_sym_typename] = ACTIONS(3962), + [anon_sym_asm] = ACTIONS(3962), + [anon_sym___asm__] = ACTIONS(3962), + [anon_sym___asm] = ACTIONS(3962), + [sym_number_literal] = ACTIONS(3964), + [anon_sym_L_SQUOTE] = ACTIONS(3964), + [anon_sym_u_SQUOTE] = ACTIONS(3964), + [anon_sym_U_SQUOTE] = ACTIONS(3964), + [anon_sym_u8_SQUOTE] = ACTIONS(3964), + [anon_sym_SQUOTE] = ACTIONS(3964), + [anon_sym_L_DQUOTE] = ACTIONS(3964), + [anon_sym_u_DQUOTE] = ACTIONS(3964), + [anon_sym_U_DQUOTE] = ACTIONS(3964), + [anon_sym_u8_DQUOTE] = ACTIONS(3964), + [anon_sym_DQUOTE] = ACTIONS(3964), + [sym_true] = ACTIONS(3962), + [sym_false] = ACTIONS(3962), + [anon_sym_NULL] = ACTIONS(3962), + [anon_sym_nullptr] = ACTIONS(3962), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3962), + [anon_sym_decltype] = ACTIONS(3962), + [anon_sym_explicit] = ACTIONS(3962), + [anon_sym_export] = ACTIONS(3962), + [anon_sym_module] = ACTIONS(3962), + [anon_sym_import] = ACTIONS(3962), + [anon_sym_template] = ACTIONS(3962), + [anon_sym_operator] = ACTIONS(3962), + [anon_sym_try] = ACTIONS(3962), + [anon_sym_delete] = ACTIONS(3962), + [anon_sym_throw] = ACTIONS(3962), + [anon_sym_namespace] = ACTIONS(3962), + [anon_sym_static_assert] = ACTIONS(3962), + [anon_sym_concept] = ACTIONS(3962), + [anon_sym_co_return] = ACTIONS(3962), + [anon_sym_co_yield] = ACTIONS(3962), + [anon_sym_R_DQUOTE] = ACTIONS(3964), + [anon_sym_LR_DQUOTE] = ACTIONS(3964), + [anon_sym_uR_DQUOTE] = ACTIONS(3964), + [anon_sym_UR_DQUOTE] = ACTIONS(3964), + [anon_sym_u8R_DQUOTE] = ACTIONS(3964), + [anon_sym_co_await] = ACTIONS(3962), + [anon_sym_new] = ACTIONS(3962), + [anon_sym_requires] = ACTIONS(3962), + [anon_sym_CARET_CARET] = ACTIONS(3964), + [anon_sym_LBRACK_COLON] = ACTIONS(3964), + [sym_this] = ACTIONS(3962), + }, + [STATE(711)] = { + [sym_identifier] = ACTIONS(3988), + [aux_sym_preproc_include_token1] = ACTIONS(3988), + [aux_sym_preproc_def_token1] = ACTIONS(3988), + [aux_sym_preproc_if_token1] = ACTIONS(3988), + [aux_sym_preproc_if_token2] = ACTIONS(3988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3988), + [sym_preproc_directive] = ACTIONS(3988), + [anon_sym_LPAREN2] = ACTIONS(3990), + [anon_sym_BANG] = ACTIONS(3990), + [anon_sym_TILDE] = ACTIONS(3990), + [anon_sym_DASH] = ACTIONS(3988), + [anon_sym_PLUS] = ACTIONS(3988), + [anon_sym_STAR] = ACTIONS(3990), + [anon_sym_AMP_AMP] = ACTIONS(3990), + [anon_sym_AMP] = ACTIONS(3988), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym___extension__] = ACTIONS(3988), + [anon_sym_typedef] = ACTIONS(3988), + [anon_sym_virtual] = ACTIONS(3988), + [anon_sym_extern] = ACTIONS(3988), + [anon_sym___attribute__] = ACTIONS(3988), + [anon_sym___attribute] = ACTIONS(3988), + [anon_sym_using] = ACTIONS(3988), + [anon_sym_COLON_COLON] = ACTIONS(3990), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3990), + [anon_sym___declspec] = ACTIONS(3988), + [anon_sym___based] = ACTIONS(3988), + [anon_sym___cdecl] = ACTIONS(3988), + [anon_sym___clrcall] = ACTIONS(3988), + [anon_sym___stdcall] = ACTIONS(3988), + [anon_sym___fastcall] = ACTIONS(3988), + [anon_sym___thiscall] = ACTIONS(3988), + [anon_sym___vectorcall] = ACTIONS(3988), + [anon_sym_LBRACE] = ACTIONS(3990), + [anon_sym_signed] = ACTIONS(3988), + [anon_sym_unsigned] = ACTIONS(3988), + [anon_sym_long] = ACTIONS(3988), + [anon_sym_short] = ACTIONS(3988), + [anon_sym_LBRACK] = ACTIONS(3988), + [anon_sym_static] = ACTIONS(3988), + [anon_sym_register] = ACTIONS(3988), + [anon_sym_inline] = ACTIONS(3988), + [anon_sym___inline] = ACTIONS(3988), + [anon_sym___inline__] = ACTIONS(3988), + [anon_sym___forceinline] = ACTIONS(3988), + [anon_sym_thread_local] = ACTIONS(3988), + [anon_sym___thread] = ACTIONS(3988), + [anon_sym_const] = ACTIONS(3988), + [anon_sym_constexpr] = ACTIONS(3988), + [anon_sym_volatile] = ACTIONS(3988), + [anon_sym_restrict] = ACTIONS(3988), + [anon_sym___restrict__] = ACTIONS(3988), + [anon_sym__Atomic] = ACTIONS(3988), + [anon_sym__Noreturn] = ACTIONS(3988), + [anon_sym_noreturn] = ACTIONS(3988), + [anon_sym__Nonnull] = ACTIONS(3988), + [anon_sym_mutable] = ACTIONS(3988), + [anon_sym_constinit] = ACTIONS(3988), + [anon_sym_consteval] = ACTIONS(3988), + [anon_sym_alignas] = ACTIONS(3988), + [anon_sym__Alignas] = ACTIONS(3988), + [sym_primitive_type] = ACTIONS(3988), + [anon_sym_enum] = ACTIONS(3988), + [anon_sym_class] = ACTIONS(3988), + [anon_sym_struct] = ACTIONS(3988), + [anon_sym_union] = ACTIONS(3988), + [anon_sym_if] = ACTIONS(3988), + [anon_sym_switch] = ACTIONS(3988), + [anon_sym_case] = ACTIONS(3988), + [anon_sym_default] = ACTIONS(3988), + [anon_sym_while] = ACTIONS(3988), + [anon_sym_do] = ACTIONS(3988), + [anon_sym_for] = ACTIONS(3988), + [anon_sym_return] = ACTIONS(3988), + [anon_sym_break] = ACTIONS(3988), + [anon_sym_continue] = ACTIONS(3988), + [anon_sym_goto] = ACTIONS(3988), + [anon_sym___try] = ACTIONS(3988), + [anon_sym___leave] = ACTIONS(3988), + [anon_sym_not] = ACTIONS(3988), + [anon_sym_compl] = ACTIONS(3988), + [anon_sym_DASH_DASH] = ACTIONS(3990), + [anon_sym_PLUS_PLUS] = ACTIONS(3990), + [anon_sym_sizeof] = ACTIONS(3988), + [anon_sym___alignof__] = ACTIONS(3988), + [anon_sym___alignof] = ACTIONS(3988), + [anon_sym__alignof] = ACTIONS(3988), + [anon_sym_alignof] = ACTIONS(3988), + [anon_sym__Alignof] = ACTIONS(3988), + [anon_sym_offsetof] = ACTIONS(3988), + [anon_sym__Generic] = ACTIONS(3988), + [anon_sym_typename] = ACTIONS(3988), + [anon_sym_asm] = ACTIONS(3988), + [anon_sym___asm__] = ACTIONS(3988), + [anon_sym___asm] = ACTIONS(3988), + [sym_number_literal] = ACTIONS(3990), + [anon_sym_L_SQUOTE] = ACTIONS(3990), + [anon_sym_u_SQUOTE] = ACTIONS(3990), + [anon_sym_U_SQUOTE] = ACTIONS(3990), + [anon_sym_u8_SQUOTE] = ACTIONS(3990), + [anon_sym_SQUOTE] = ACTIONS(3990), + [anon_sym_L_DQUOTE] = ACTIONS(3990), + [anon_sym_u_DQUOTE] = ACTIONS(3990), + [anon_sym_U_DQUOTE] = ACTIONS(3990), + [anon_sym_u8_DQUOTE] = ACTIONS(3990), + [anon_sym_DQUOTE] = ACTIONS(3990), + [sym_true] = ACTIONS(3988), + [sym_false] = ACTIONS(3988), + [anon_sym_NULL] = ACTIONS(3988), + [anon_sym_nullptr] = ACTIONS(3988), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3988), + [anon_sym_decltype] = ACTIONS(3988), + [anon_sym_explicit] = ACTIONS(3988), + [anon_sym_export] = ACTIONS(3988), + [anon_sym_module] = ACTIONS(3988), + [anon_sym_import] = ACTIONS(3988), + [anon_sym_template] = ACTIONS(3988), + [anon_sym_operator] = ACTIONS(3988), + [anon_sym_try] = ACTIONS(3988), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_throw] = ACTIONS(3988), + [anon_sym_namespace] = ACTIONS(3988), + [anon_sym_static_assert] = ACTIONS(3988), + [anon_sym_concept] = ACTIONS(3988), + [anon_sym_co_return] = ACTIONS(3988), + [anon_sym_co_yield] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3988), + [anon_sym_new] = ACTIONS(3988), + [anon_sym_requires] = ACTIONS(3988), + [anon_sym_CARET_CARET] = ACTIONS(3990), + [anon_sym_LBRACK_COLON] = ACTIONS(3990), + [sym_this] = ACTIONS(3988), + }, + [STATE(712)] = { + [sym_identifier] = ACTIONS(3992), + [aux_sym_preproc_include_token1] = ACTIONS(3992), + [aux_sym_preproc_def_token1] = ACTIONS(3992), + [aux_sym_preproc_if_token1] = ACTIONS(3992), + [aux_sym_preproc_if_token2] = ACTIONS(3992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3992), + [sym_preproc_directive] = ACTIONS(3992), + [anon_sym_LPAREN2] = ACTIONS(3994), + [anon_sym_BANG] = ACTIONS(3994), + [anon_sym_TILDE] = ACTIONS(3994), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_AMP] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym___extension__] = ACTIONS(3992), + [anon_sym_typedef] = ACTIONS(3992), + [anon_sym_virtual] = ACTIONS(3992), + [anon_sym_extern] = ACTIONS(3992), + [anon_sym___attribute__] = ACTIONS(3992), + [anon_sym___attribute] = ACTIONS(3992), + [anon_sym_using] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3994), + [anon_sym___declspec] = ACTIONS(3992), + [anon_sym___based] = ACTIONS(3992), + [anon_sym___cdecl] = ACTIONS(3992), + [anon_sym___clrcall] = ACTIONS(3992), + [anon_sym___stdcall] = ACTIONS(3992), + [anon_sym___fastcall] = ACTIONS(3992), + [anon_sym___thiscall] = ACTIONS(3992), + [anon_sym___vectorcall] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_signed] = ACTIONS(3992), + [anon_sym_unsigned] = ACTIONS(3992), + [anon_sym_long] = ACTIONS(3992), + [anon_sym_short] = ACTIONS(3992), + [anon_sym_LBRACK] = ACTIONS(3992), + [anon_sym_static] = ACTIONS(3992), + [anon_sym_register] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym___inline] = ACTIONS(3992), + [anon_sym___inline__] = ACTIONS(3992), + [anon_sym___forceinline] = ACTIONS(3992), + [anon_sym_thread_local] = ACTIONS(3992), + [anon_sym___thread] = ACTIONS(3992), + [anon_sym_const] = ACTIONS(3992), + [anon_sym_constexpr] = ACTIONS(3992), + [anon_sym_volatile] = ACTIONS(3992), + [anon_sym_restrict] = ACTIONS(3992), + [anon_sym___restrict__] = ACTIONS(3992), + [anon_sym__Atomic] = ACTIONS(3992), + [anon_sym__Noreturn] = ACTIONS(3992), + [anon_sym_noreturn] = ACTIONS(3992), + [anon_sym__Nonnull] = ACTIONS(3992), + [anon_sym_mutable] = ACTIONS(3992), + [anon_sym_constinit] = ACTIONS(3992), + [anon_sym_consteval] = ACTIONS(3992), + [anon_sym_alignas] = ACTIONS(3992), + [anon_sym__Alignas] = ACTIONS(3992), + [sym_primitive_type] = ACTIONS(3992), + [anon_sym_enum] = ACTIONS(3992), + [anon_sym_class] = ACTIONS(3992), + [anon_sym_struct] = ACTIONS(3992), + [anon_sym_union] = ACTIONS(3992), + [anon_sym_if] = ACTIONS(3992), + [anon_sym_switch] = ACTIONS(3992), + [anon_sym_case] = ACTIONS(3992), + [anon_sym_default] = ACTIONS(3992), + [anon_sym_while] = ACTIONS(3992), + [anon_sym_do] = ACTIONS(3992), + [anon_sym_for] = ACTIONS(3992), + [anon_sym_return] = ACTIONS(3992), + [anon_sym_break] = ACTIONS(3992), + [anon_sym_continue] = ACTIONS(3992), + [anon_sym_goto] = ACTIONS(3992), + [anon_sym___try] = ACTIONS(3992), + [anon_sym___leave] = ACTIONS(3992), + [anon_sym_not] = ACTIONS(3992), + [anon_sym_compl] = ACTIONS(3992), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_sizeof] = ACTIONS(3992), + [anon_sym___alignof__] = ACTIONS(3992), + [anon_sym___alignof] = ACTIONS(3992), + [anon_sym__alignof] = ACTIONS(3992), + [anon_sym_alignof] = ACTIONS(3992), + [anon_sym__Alignof] = ACTIONS(3992), + [anon_sym_offsetof] = ACTIONS(3992), + [anon_sym__Generic] = ACTIONS(3992), + [anon_sym_typename] = ACTIONS(3992), + [anon_sym_asm] = ACTIONS(3992), + [anon_sym___asm__] = ACTIONS(3992), + [anon_sym___asm] = ACTIONS(3992), + [sym_number_literal] = ACTIONS(3994), + [anon_sym_L_SQUOTE] = ACTIONS(3994), + [anon_sym_u_SQUOTE] = ACTIONS(3994), + [anon_sym_U_SQUOTE] = ACTIONS(3994), + [anon_sym_u8_SQUOTE] = ACTIONS(3994), + [anon_sym_SQUOTE] = ACTIONS(3994), + [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_true] = ACTIONS(3992), + [sym_false] = ACTIONS(3992), + [anon_sym_NULL] = ACTIONS(3992), + [anon_sym_nullptr] = ACTIONS(3992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3992), + [anon_sym_decltype] = ACTIONS(3992), + [anon_sym_explicit] = ACTIONS(3992), + [anon_sym_export] = ACTIONS(3992), + [anon_sym_module] = ACTIONS(3992), + [anon_sym_import] = ACTIONS(3992), + [anon_sym_template] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_try] = ACTIONS(3992), + [anon_sym_delete] = ACTIONS(3992), + [anon_sym_throw] = ACTIONS(3992), + [anon_sym_namespace] = ACTIONS(3992), + [anon_sym_static_assert] = ACTIONS(3992), + [anon_sym_concept] = ACTIONS(3992), + [anon_sym_co_return] = ACTIONS(3992), + [anon_sym_co_yield] = ACTIONS(3992), + [anon_sym_R_DQUOTE] = ACTIONS(3994), + [anon_sym_LR_DQUOTE] = ACTIONS(3994), + [anon_sym_uR_DQUOTE] = ACTIONS(3994), + [anon_sym_UR_DQUOTE] = ACTIONS(3994), + [anon_sym_u8R_DQUOTE] = ACTIONS(3994), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3992), + [anon_sym_requires] = ACTIONS(3992), + [anon_sym_CARET_CARET] = ACTIONS(3994), + [anon_sym_LBRACK_COLON] = ACTIONS(3994), + [sym_this] = ACTIONS(3992), + }, + [STATE(713)] = { + [sym_identifier] = ACTIONS(4000), + [aux_sym_preproc_include_token1] = ACTIONS(4000), + [aux_sym_preproc_def_token1] = ACTIONS(4000), + [aux_sym_preproc_if_token1] = ACTIONS(4000), + [aux_sym_preproc_if_token2] = ACTIONS(4000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4000), + [sym_preproc_directive] = ACTIONS(4000), + [anon_sym_LPAREN2] = ACTIONS(4002), + [anon_sym_BANG] = ACTIONS(4002), + [anon_sym_TILDE] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_AMP] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym___extension__] = ACTIONS(4000), + [anon_sym_typedef] = ACTIONS(4000), + [anon_sym_virtual] = ACTIONS(4000), + [anon_sym_extern] = ACTIONS(4000), + [anon_sym___attribute__] = ACTIONS(4000), + [anon_sym___attribute] = ACTIONS(4000), + [anon_sym_using] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4002), + [anon_sym___declspec] = ACTIONS(4000), + [anon_sym___based] = ACTIONS(4000), + [anon_sym___cdecl] = ACTIONS(4000), + [anon_sym___clrcall] = ACTIONS(4000), + [anon_sym___stdcall] = ACTIONS(4000), + [anon_sym___fastcall] = ACTIONS(4000), + [anon_sym___thiscall] = ACTIONS(4000), + [anon_sym___vectorcall] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_signed] = ACTIONS(4000), + [anon_sym_unsigned] = ACTIONS(4000), + [anon_sym_long] = ACTIONS(4000), + [anon_sym_short] = ACTIONS(4000), + [anon_sym_LBRACK] = ACTIONS(4000), + [anon_sym_static] = ACTIONS(4000), + [anon_sym_register] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym___inline] = ACTIONS(4000), + [anon_sym___inline__] = ACTIONS(4000), + [anon_sym___forceinline] = ACTIONS(4000), + [anon_sym_thread_local] = ACTIONS(4000), + [anon_sym___thread] = ACTIONS(4000), + [anon_sym_const] = ACTIONS(4000), + [anon_sym_constexpr] = ACTIONS(4000), + [anon_sym_volatile] = ACTIONS(4000), + [anon_sym_restrict] = ACTIONS(4000), + [anon_sym___restrict__] = ACTIONS(4000), + [anon_sym__Atomic] = ACTIONS(4000), + [anon_sym__Noreturn] = ACTIONS(4000), + [anon_sym_noreturn] = ACTIONS(4000), + [anon_sym__Nonnull] = ACTIONS(4000), + [anon_sym_mutable] = ACTIONS(4000), + [anon_sym_constinit] = ACTIONS(4000), + [anon_sym_consteval] = ACTIONS(4000), + [anon_sym_alignas] = ACTIONS(4000), + [anon_sym__Alignas] = ACTIONS(4000), + [sym_primitive_type] = ACTIONS(4000), + [anon_sym_enum] = ACTIONS(4000), + [anon_sym_class] = ACTIONS(4000), + [anon_sym_struct] = ACTIONS(4000), + [anon_sym_union] = ACTIONS(4000), + [anon_sym_if] = ACTIONS(4000), + [anon_sym_switch] = ACTIONS(4000), + [anon_sym_case] = ACTIONS(4000), + [anon_sym_default] = ACTIONS(4000), + [anon_sym_while] = ACTIONS(4000), + [anon_sym_do] = ACTIONS(4000), + [anon_sym_for] = ACTIONS(4000), + [anon_sym_return] = ACTIONS(4000), + [anon_sym_break] = ACTIONS(4000), + [anon_sym_continue] = ACTIONS(4000), + [anon_sym_goto] = ACTIONS(4000), + [anon_sym___try] = ACTIONS(4000), + [anon_sym___leave] = ACTIONS(4000), + [anon_sym_not] = ACTIONS(4000), + [anon_sym_compl] = ACTIONS(4000), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_sizeof] = ACTIONS(4000), + [anon_sym___alignof__] = ACTIONS(4000), + [anon_sym___alignof] = ACTIONS(4000), + [anon_sym__alignof] = ACTIONS(4000), + [anon_sym_alignof] = ACTIONS(4000), + [anon_sym__Alignof] = ACTIONS(4000), + [anon_sym_offsetof] = ACTIONS(4000), + [anon_sym__Generic] = ACTIONS(4000), + [anon_sym_typename] = ACTIONS(4000), + [anon_sym_asm] = ACTIONS(4000), + [anon_sym___asm__] = ACTIONS(4000), + [anon_sym___asm] = ACTIONS(4000), + [sym_number_literal] = ACTIONS(4002), + [anon_sym_L_SQUOTE] = ACTIONS(4002), + [anon_sym_u_SQUOTE] = ACTIONS(4002), + [anon_sym_U_SQUOTE] = ACTIONS(4002), + [anon_sym_u8_SQUOTE] = ACTIONS(4002), + [anon_sym_SQUOTE] = ACTIONS(4002), + [anon_sym_L_DQUOTE] = ACTIONS(4002), + [anon_sym_u_DQUOTE] = ACTIONS(4002), + [anon_sym_U_DQUOTE] = ACTIONS(4002), + [anon_sym_u8_DQUOTE] = ACTIONS(4002), + [anon_sym_DQUOTE] = ACTIONS(4002), + [sym_true] = ACTIONS(4000), + [sym_false] = ACTIONS(4000), + [anon_sym_NULL] = ACTIONS(4000), + [anon_sym_nullptr] = ACTIONS(4000), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4000), + [anon_sym_decltype] = ACTIONS(4000), + [anon_sym_explicit] = ACTIONS(4000), + [anon_sym_export] = ACTIONS(4000), + [anon_sym_module] = ACTIONS(4000), + [anon_sym_import] = ACTIONS(4000), + [anon_sym_template] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_try] = ACTIONS(4000), + [anon_sym_delete] = ACTIONS(4000), + [anon_sym_throw] = ACTIONS(4000), + [anon_sym_namespace] = ACTIONS(4000), + [anon_sym_static_assert] = ACTIONS(4000), + [anon_sym_concept] = ACTIONS(4000), + [anon_sym_co_return] = ACTIONS(4000), + [anon_sym_co_yield] = ACTIONS(4000), + [anon_sym_R_DQUOTE] = ACTIONS(4002), + [anon_sym_LR_DQUOTE] = ACTIONS(4002), + [anon_sym_uR_DQUOTE] = ACTIONS(4002), + [anon_sym_UR_DQUOTE] = ACTIONS(4002), + [anon_sym_u8R_DQUOTE] = ACTIONS(4002), + [anon_sym_co_await] = ACTIONS(4000), + [anon_sym_new] = ACTIONS(4000), + [anon_sym_requires] = ACTIONS(4000), + [anon_sym_CARET_CARET] = ACTIONS(4002), + [anon_sym_LBRACK_COLON] = ACTIONS(4002), + [sym_this] = ACTIONS(4000), + }, + [STATE(714)] = { + [sym_identifier] = ACTIONS(4004), + [aux_sym_preproc_include_token1] = ACTIONS(4004), + [aux_sym_preproc_def_token1] = ACTIONS(4004), + [aux_sym_preproc_if_token1] = ACTIONS(4004), + [aux_sym_preproc_if_token2] = ACTIONS(4004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4004), + [sym_preproc_directive] = ACTIONS(4004), + [anon_sym_LPAREN2] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4006), + [anon_sym_TILDE] = ACTIONS(4006), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4006), + [anon_sym___extension__] = ACTIONS(4004), + [anon_sym_typedef] = ACTIONS(4004), + [anon_sym_virtual] = ACTIONS(4004), + [anon_sym_extern] = ACTIONS(4004), + [anon_sym___attribute__] = ACTIONS(4004), + [anon_sym___attribute] = ACTIONS(4004), + [anon_sym_using] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4006), + [anon_sym___declspec] = ACTIONS(4004), + [anon_sym___based] = ACTIONS(4004), + [anon_sym___cdecl] = ACTIONS(4004), + [anon_sym___clrcall] = ACTIONS(4004), + [anon_sym___stdcall] = ACTIONS(4004), + [anon_sym___fastcall] = ACTIONS(4004), + [anon_sym___thiscall] = ACTIONS(4004), + [anon_sym___vectorcall] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4006), + [anon_sym_signed] = ACTIONS(4004), + [anon_sym_unsigned] = ACTIONS(4004), + [anon_sym_long] = ACTIONS(4004), + [anon_sym_short] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_register] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym___inline] = ACTIONS(4004), + [anon_sym___inline__] = ACTIONS(4004), + [anon_sym___forceinline] = ACTIONS(4004), + [anon_sym_thread_local] = ACTIONS(4004), + [anon_sym___thread] = ACTIONS(4004), + [anon_sym_const] = ACTIONS(4004), + [anon_sym_constexpr] = ACTIONS(4004), + [anon_sym_volatile] = ACTIONS(4004), + [anon_sym_restrict] = ACTIONS(4004), + [anon_sym___restrict__] = ACTIONS(4004), + [anon_sym__Atomic] = ACTIONS(4004), + [anon_sym__Noreturn] = ACTIONS(4004), + [anon_sym_noreturn] = ACTIONS(4004), + [anon_sym__Nonnull] = ACTIONS(4004), + [anon_sym_mutable] = ACTIONS(4004), + [anon_sym_constinit] = ACTIONS(4004), + [anon_sym_consteval] = ACTIONS(4004), + [anon_sym_alignas] = ACTIONS(4004), + [anon_sym__Alignas] = ACTIONS(4004), + [sym_primitive_type] = ACTIONS(4004), + [anon_sym_enum] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4004), + [anon_sym_struct] = ACTIONS(4004), + [anon_sym_union] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_switch] = ACTIONS(4004), + [anon_sym_case] = ACTIONS(4004), + [anon_sym_default] = ACTIONS(4004), + [anon_sym_while] = ACTIONS(4004), + [anon_sym_do] = ACTIONS(4004), + [anon_sym_for] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_goto] = ACTIONS(4004), + [anon_sym___try] = ACTIONS(4004), + [anon_sym___leave] = ACTIONS(4004), + [anon_sym_not] = ACTIONS(4004), + [anon_sym_compl] = ACTIONS(4004), + [anon_sym_DASH_DASH] = ACTIONS(4006), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_sizeof] = ACTIONS(4004), + [anon_sym___alignof__] = ACTIONS(4004), + [anon_sym___alignof] = ACTIONS(4004), + [anon_sym__alignof] = ACTIONS(4004), + [anon_sym_alignof] = ACTIONS(4004), + [anon_sym__Alignof] = ACTIONS(4004), + [anon_sym_offsetof] = ACTIONS(4004), + [anon_sym__Generic] = ACTIONS(4004), + [anon_sym_typename] = ACTIONS(4004), + [anon_sym_asm] = ACTIONS(4004), + [anon_sym___asm__] = ACTIONS(4004), + [anon_sym___asm] = ACTIONS(4004), + [sym_number_literal] = ACTIONS(4006), + [anon_sym_L_SQUOTE] = ACTIONS(4006), + [anon_sym_u_SQUOTE] = ACTIONS(4006), + [anon_sym_U_SQUOTE] = ACTIONS(4006), + [anon_sym_u8_SQUOTE] = ACTIONS(4006), + [anon_sym_SQUOTE] = ACTIONS(4006), + [anon_sym_L_DQUOTE] = ACTIONS(4006), + [anon_sym_u_DQUOTE] = ACTIONS(4006), + [anon_sym_U_DQUOTE] = ACTIONS(4006), + [anon_sym_u8_DQUOTE] = ACTIONS(4006), + [anon_sym_DQUOTE] = ACTIONS(4006), + [sym_true] = ACTIONS(4004), + [sym_false] = ACTIONS(4004), + [anon_sym_NULL] = ACTIONS(4004), + [anon_sym_nullptr] = ACTIONS(4004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4004), + [anon_sym_decltype] = ACTIONS(4004), + [anon_sym_explicit] = ACTIONS(4004), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_module] = ACTIONS(4004), + [anon_sym_import] = ACTIONS(4004), + [anon_sym_template] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_delete] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_namespace] = ACTIONS(4004), + [anon_sym_static_assert] = ACTIONS(4004), + [anon_sym_concept] = ACTIONS(4004), + [anon_sym_co_return] = ACTIONS(4004), + [anon_sym_co_yield] = ACTIONS(4004), + [anon_sym_R_DQUOTE] = ACTIONS(4006), + [anon_sym_LR_DQUOTE] = ACTIONS(4006), + [anon_sym_uR_DQUOTE] = ACTIONS(4006), + [anon_sym_UR_DQUOTE] = ACTIONS(4006), + [anon_sym_u8R_DQUOTE] = ACTIONS(4006), + [anon_sym_co_await] = ACTIONS(4004), + [anon_sym_new] = ACTIONS(4004), + [anon_sym_requires] = ACTIONS(4004), + [anon_sym_CARET_CARET] = ACTIONS(4006), + [anon_sym_LBRACK_COLON] = ACTIONS(4006), + [sym_this] = ACTIONS(4004), + }, + [STATE(715)] = { + [sym_identifier] = ACTIONS(4012), + [aux_sym_preproc_include_token1] = ACTIONS(4012), + [aux_sym_preproc_def_token1] = ACTIONS(4012), + [aux_sym_preproc_if_token1] = ACTIONS(4012), + [aux_sym_preproc_if_token2] = ACTIONS(4012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4012), + [sym_preproc_directive] = ACTIONS(4012), + [anon_sym_LPAREN2] = ACTIONS(4014), + [anon_sym_BANG] = ACTIONS(4014), + [anon_sym_TILDE] = ACTIONS(4014), + [anon_sym_DASH] = ACTIONS(4012), + [anon_sym_PLUS] = ACTIONS(4012), + [anon_sym_STAR] = ACTIONS(4014), + [anon_sym_AMP_AMP] = ACTIONS(4014), + [anon_sym_AMP] = ACTIONS(4012), + [anon_sym_SEMI] = ACTIONS(4014), + [anon_sym___extension__] = ACTIONS(4012), + [anon_sym_typedef] = ACTIONS(4012), + [anon_sym_virtual] = ACTIONS(4012), + [anon_sym_extern] = ACTIONS(4012), + [anon_sym___attribute__] = ACTIONS(4012), + [anon_sym___attribute] = ACTIONS(4012), + [anon_sym_using] = ACTIONS(4012), + [anon_sym_COLON_COLON] = ACTIONS(4014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4014), + [anon_sym___declspec] = ACTIONS(4012), + [anon_sym___based] = ACTIONS(4012), + [anon_sym___cdecl] = ACTIONS(4012), + [anon_sym___clrcall] = ACTIONS(4012), + [anon_sym___stdcall] = ACTIONS(4012), + [anon_sym___fastcall] = ACTIONS(4012), + [anon_sym___thiscall] = ACTIONS(4012), + [anon_sym___vectorcall] = ACTIONS(4012), + [anon_sym_LBRACE] = ACTIONS(4014), + [anon_sym_signed] = ACTIONS(4012), + [anon_sym_unsigned] = ACTIONS(4012), + [anon_sym_long] = ACTIONS(4012), + [anon_sym_short] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_static] = ACTIONS(4012), + [anon_sym_register] = ACTIONS(4012), + [anon_sym_inline] = ACTIONS(4012), + [anon_sym___inline] = ACTIONS(4012), + [anon_sym___inline__] = ACTIONS(4012), + [anon_sym___forceinline] = ACTIONS(4012), + [anon_sym_thread_local] = ACTIONS(4012), + [anon_sym___thread] = ACTIONS(4012), + [anon_sym_const] = ACTIONS(4012), + [anon_sym_constexpr] = ACTIONS(4012), + [anon_sym_volatile] = ACTIONS(4012), + [anon_sym_restrict] = ACTIONS(4012), + [anon_sym___restrict__] = ACTIONS(4012), + [anon_sym__Atomic] = ACTIONS(4012), + [anon_sym__Noreturn] = ACTIONS(4012), + [anon_sym_noreturn] = ACTIONS(4012), + [anon_sym__Nonnull] = ACTIONS(4012), + [anon_sym_mutable] = ACTIONS(4012), + [anon_sym_constinit] = ACTIONS(4012), + [anon_sym_consteval] = ACTIONS(4012), + [anon_sym_alignas] = ACTIONS(4012), + [anon_sym__Alignas] = ACTIONS(4012), + [sym_primitive_type] = ACTIONS(4012), + [anon_sym_enum] = ACTIONS(4012), + [anon_sym_class] = ACTIONS(4012), + [anon_sym_struct] = ACTIONS(4012), + [anon_sym_union] = ACTIONS(4012), + [anon_sym_if] = ACTIONS(4012), + [anon_sym_switch] = ACTIONS(4012), + [anon_sym_case] = ACTIONS(4012), + [anon_sym_default] = ACTIONS(4012), + [anon_sym_while] = ACTIONS(4012), + [anon_sym_do] = ACTIONS(4012), + [anon_sym_for] = ACTIONS(4012), + [anon_sym_return] = ACTIONS(4012), + [anon_sym_break] = ACTIONS(4012), + [anon_sym_continue] = ACTIONS(4012), + [anon_sym_goto] = ACTIONS(4012), + [anon_sym___try] = ACTIONS(4012), + [anon_sym___leave] = ACTIONS(4012), + [anon_sym_not] = ACTIONS(4012), + [anon_sym_compl] = ACTIONS(4012), + [anon_sym_DASH_DASH] = ACTIONS(4014), + [anon_sym_PLUS_PLUS] = ACTIONS(4014), + [anon_sym_sizeof] = ACTIONS(4012), + [anon_sym___alignof__] = ACTIONS(4012), + [anon_sym___alignof] = ACTIONS(4012), + [anon_sym__alignof] = ACTIONS(4012), + [anon_sym_alignof] = ACTIONS(4012), + [anon_sym__Alignof] = ACTIONS(4012), + [anon_sym_offsetof] = ACTIONS(4012), + [anon_sym__Generic] = ACTIONS(4012), + [anon_sym_typename] = ACTIONS(4012), + [anon_sym_asm] = ACTIONS(4012), + [anon_sym___asm__] = ACTIONS(4012), + [anon_sym___asm] = ACTIONS(4012), + [sym_number_literal] = ACTIONS(4014), + [anon_sym_L_SQUOTE] = ACTIONS(4014), + [anon_sym_u_SQUOTE] = ACTIONS(4014), + [anon_sym_U_SQUOTE] = ACTIONS(4014), + [anon_sym_u8_SQUOTE] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4014), + [anon_sym_L_DQUOTE] = ACTIONS(4014), + [anon_sym_u_DQUOTE] = ACTIONS(4014), + [anon_sym_U_DQUOTE] = ACTIONS(4014), + [anon_sym_u8_DQUOTE] = ACTIONS(4014), + [anon_sym_DQUOTE] = ACTIONS(4014), + [sym_true] = ACTIONS(4012), + [sym_false] = ACTIONS(4012), + [anon_sym_NULL] = ACTIONS(4012), + [anon_sym_nullptr] = ACTIONS(4012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4012), + [anon_sym_decltype] = ACTIONS(4012), + [anon_sym_explicit] = ACTIONS(4012), + [anon_sym_export] = ACTIONS(4012), + [anon_sym_module] = ACTIONS(4012), + [anon_sym_import] = ACTIONS(4012), + [anon_sym_template] = ACTIONS(4012), + [anon_sym_operator] = ACTIONS(4012), + [anon_sym_try] = ACTIONS(4012), + [anon_sym_delete] = ACTIONS(4012), + [anon_sym_throw] = ACTIONS(4012), + [anon_sym_namespace] = ACTIONS(4012), + [anon_sym_static_assert] = ACTIONS(4012), + [anon_sym_concept] = ACTIONS(4012), + [anon_sym_co_return] = ACTIONS(4012), + [anon_sym_co_yield] = ACTIONS(4012), + [anon_sym_R_DQUOTE] = ACTIONS(4014), + [anon_sym_LR_DQUOTE] = ACTIONS(4014), + [anon_sym_uR_DQUOTE] = ACTIONS(4014), + [anon_sym_UR_DQUOTE] = ACTIONS(4014), + [anon_sym_u8R_DQUOTE] = ACTIONS(4014), + [anon_sym_co_await] = ACTIONS(4012), + [anon_sym_new] = ACTIONS(4012), + [anon_sym_requires] = ACTIONS(4012), + [anon_sym_CARET_CARET] = ACTIONS(4014), + [anon_sym_LBRACK_COLON] = ACTIONS(4014), + [sym_this] = ACTIONS(4012), + }, + [STATE(716)] = { + [sym_identifier] = ACTIONS(3600), + [aux_sym_preproc_include_token1] = ACTIONS(3600), + [aux_sym_preproc_def_token1] = ACTIONS(3600), + [aux_sym_preproc_if_token1] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), + [sym_preproc_directive] = ACTIONS(3600), + [anon_sym_LPAREN2] = ACTIONS(3602), + [anon_sym_BANG] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3600), + [anon_sym_STAR] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_AMP] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym___extension__] = ACTIONS(3600), + [anon_sym_typedef] = ACTIONS(3600), + [anon_sym_virtual] = ACTIONS(3600), + [anon_sym_extern] = ACTIONS(3600), + [anon_sym___attribute__] = ACTIONS(3600), + [anon_sym___attribute] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), + [anon_sym___declspec] = ACTIONS(3600), + [anon_sym___based] = ACTIONS(3600), + [anon_sym___cdecl] = ACTIONS(3600), + [anon_sym___clrcall] = ACTIONS(3600), + [anon_sym___stdcall] = ACTIONS(3600), + [anon_sym___fastcall] = ACTIONS(3600), + [anon_sym___thiscall] = ACTIONS(3600), + [anon_sym___vectorcall] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_RBRACE] = ACTIONS(3602), + [anon_sym_signed] = ACTIONS(3600), + [anon_sym_unsigned] = ACTIONS(3600), + [anon_sym_long] = ACTIONS(3600), + [anon_sym_short] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_register] = ACTIONS(3600), + [anon_sym_inline] = ACTIONS(3600), + [anon_sym___inline] = ACTIONS(3600), + [anon_sym___inline__] = ACTIONS(3600), + [anon_sym___forceinline] = ACTIONS(3600), + [anon_sym_thread_local] = ACTIONS(3600), + [anon_sym___thread] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_constexpr] = ACTIONS(3600), + [anon_sym_volatile] = ACTIONS(3600), + [anon_sym_restrict] = ACTIONS(3600), + [anon_sym___restrict__] = ACTIONS(3600), + [anon_sym__Atomic] = ACTIONS(3600), + [anon_sym__Noreturn] = ACTIONS(3600), + [anon_sym_noreturn] = ACTIONS(3600), + [anon_sym__Nonnull] = ACTIONS(3600), + [anon_sym_mutable] = ACTIONS(3600), + [anon_sym_constinit] = ACTIONS(3600), + [anon_sym_consteval] = ACTIONS(3600), + [anon_sym_alignas] = ACTIONS(3600), + [anon_sym__Alignas] = ACTIONS(3600), + [sym_primitive_type] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_struct] = ACTIONS(3600), + [anon_sym_union] = ACTIONS(3600), + [anon_sym_if] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3600), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_case] = ACTIONS(3600), + [anon_sym_default] = ACTIONS(3600), + [anon_sym_while] = ACTIONS(3600), + [anon_sym_do] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3600), + [anon_sym_return] = ACTIONS(3600), + [anon_sym_break] = ACTIONS(3600), + [anon_sym_continue] = ACTIONS(3600), + [anon_sym_goto] = ACTIONS(3600), + [anon_sym___try] = ACTIONS(3600), + [anon_sym___leave] = ACTIONS(3600), + [anon_sym_not] = ACTIONS(3600), + [anon_sym_compl] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3602), + [anon_sym_PLUS_PLUS] = ACTIONS(3602), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(3600), + [anon_sym___alignof] = ACTIONS(3600), + [anon_sym__alignof] = ACTIONS(3600), + [anon_sym_alignof] = ACTIONS(3600), + [anon_sym__Alignof] = ACTIONS(3600), + [anon_sym_offsetof] = ACTIONS(3600), + [anon_sym__Generic] = ACTIONS(3600), + [anon_sym_typename] = ACTIONS(3600), + [anon_sym_asm] = ACTIONS(3600), + [anon_sym___asm__] = ACTIONS(3600), + [anon_sym___asm] = ACTIONS(3600), + [sym_number_literal] = ACTIONS(3602), + [anon_sym_L_SQUOTE] = ACTIONS(3602), + [anon_sym_u_SQUOTE] = ACTIONS(3602), + [anon_sym_U_SQUOTE] = ACTIONS(3602), + [anon_sym_u8_SQUOTE] = ACTIONS(3602), + [anon_sym_SQUOTE] = ACTIONS(3602), + [anon_sym_L_DQUOTE] = ACTIONS(3602), + [anon_sym_u_DQUOTE] = ACTIONS(3602), + [anon_sym_U_DQUOTE] = ACTIONS(3602), + [anon_sym_u8_DQUOTE] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [sym_true] = ACTIONS(3600), + [sym_false] = ACTIONS(3600), + [anon_sym_NULL] = ACTIONS(3600), + [anon_sym_nullptr] = ACTIONS(3600), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3600), + [anon_sym_decltype] = ACTIONS(3600), + [anon_sym_explicit] = ACTIONS(3600), + [anon_sym_export] = ACTIONS(3600), + [anon_sym_import] = ACTIONS(3600), + [anon_sym_template] = ACTIONS(3600), + [anon_sym_operator] = ACTIONS(3600), + [anon_sym_try] = ACTIONS(3600), + [anon_sym_delete] = ACTIONS(3600), + [anon_sym_throw] = ACTIONS(3600), + [anon_sym_namespace] = ACTIONS(3600), + [anon_sym_static_assert] = ACTIONS(3600), + [anon_sym_concept] = ACTIONS(3600), + [anon_sym_co_return] = ACTIONS(3600), + [anon_sym_co_yield] = ACTIONS(3600), + [anon_sym_R_DQUOTE] = ACTIONS(3602), + [anon_sym_LR_DQUOTE] = ACTIONS(3602), + [anon_sym_uR_DQUOTE] = ACTIONS(3602), + [anon_sym_UR_DQUOTE] = ACTIONS(3602), + [anon_sym_u8R_DQUOTE] = ACTIONS(3602), + [anon_sym_co_await] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3600), + [anon_sym_requires] = ACTIONS(3600), + [anon_sym_CARET_CARET] = ACTIONS(3602), + [anon_sym_LBRACK_COLON] = ACTIONS(3602), + [sym_this] = ACTIONS(3600), + }, + [STATE(717)] = { + [sym_identifier] = ACTIONS(4044), + [aux_sym_preproc_include_token1] = ACTIONS(4044), + [aux_sym_preproc_def_token1] = ACTIONS(4044), + [aux_sym_preproc_if_token1] = ACTIONS(4044), + [aux_sym_preproc_if_token2] = ACTIONS(4044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4044), + [sym_preproc_directive] = ACTIONS(4044), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(4046), + [anon_sym_TILDE] = ACTIONS(4046), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym___extension__] = ACTIONS(4044), + [anon_sym_typedef] = ACTIONS(4044), + [anon_sym_virtual] = ACTIONS(4044), + [anon_sym_extern] = ACTIONS(4044), + [anon_sym___attribute__] = ACTIONS(4044), + [anon_sym___attribute] = ACTIONS(4044), + [anon_sym_using] = ACTIONS(4044), + [anon_sym_COLON_COLON] = ACTIONS(4046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4046), + [anon_sym___declspec] = ACTIONS(4044), + [anon_sym___based] = ACTIONS(4044), + [anon_sym___cdecl] = ACTIONS(4044), + [anon_sym___clrcall] = ACTIONS(4044), + [anon_sym___stdcall] = ACTIONS(4044), + [anon_sym___fastcall] = ACTIONS(4044), + [anon_sym___thiscall] = ACTIONS(4044), + [anon_sym___vectorcall] = ACTIONS(4044), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_signed] = ACTIONS(4044), + [anon_sym_unsigned] = ACTIONS(4044), + [anon_sym_long] = ACTIONS(4044), + [anon_sym_short] = ACTIONS(4044), + [anon_sym_LBRACK] = ACTIONS(4044), + [anon_sym_static] = ACTIONS(4044), + [anon_sym_register] = ACTIONS(4044), + [anon_sym_inline] = ACTIONS(4044), + [anon_sym___inline] = ACTIONS(4044), + [anon_sym___inline__] = ACTIONS(4044), + [anon_sym___forceinline] = ACTIONS(4044), + [anon_sym_thread_local] = ACTIONS(4044), + [anon_sym___thread] = ACTIONS(4044), + [anon_sym_const] = ACTIONS(4044), + [anon_sym_constexpr] = ACTIONS(4044), + [anon_sym_volatile] = ACTIONS(4044), + [anon_sym_restrict] = ACTIONS(4044), + [anon_sym___restrict__] = ACTIONS(4044), + [anon_sym__Atomic] = ACTIONS(4044), + [anon_sym__Noreturn] = ACTIONS(4044), + [anon_sym_noreturn] = ACTIONS(4044), + [anon_sym__Nonnull] = ACTIONS(4044), + [anon_sym_mutable] = ACTIONS(4044), + [anon_sym_constinit] = ACTIONS(4044), + [anon_sym_consteval] = ACTIONS(4044), + [anon_sym_alignas] = ACTIONS(4044), + [anon_sym__Alignas] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(4044), + [anon_sym_enum] = ACTIONS(4044), + [anon_sym_class] = ACTIONS(4044), + [anon_sym_struct] = ACTIONS(4044), + [anon_sym_union] = ACTIONS(4044), + [anon_sym_if] = ACTIONS(4044), + [anon_sym_switch] = ACTIONS(4044), + [anon_sym_case] = ACTIONS(4044), + [anon_sym_default] = ACTIONS(4044), + [anon_sym_while] = ACTIONS(4044), + [anon_sym_do] = ACTIONS(4044), + [anon_sym_for] = ACTIONS(4044), + [anon_sym_return] = ACTIONS(4044), + [anon_sym_break] = ACTIONS(4044), + [anon_sym_continue] = ACTIONS(4044), + [anon_sym_goto] = ACTIONS(4044), + [anon_sym___try] = ACTIONS(4044), + [anon_sym___leave] = ACTIONS(4044), + [anon_sym_not] = ACTIONS(4044), + [anon_sym_compl] = ACTIONS(4044), + [anon_sym_DASH_DASH] = ACTIONS(4046), + [anon_sym_PLUS_PLUS] = ACTIONS(4046), + [anon_sym_sizeof] = ACTIONS(4044), + [anon_sym___alignof__] = ACTIONS(4044), + [anon_sym___alignof] = ACTIONS(4044), + [anon_sym__alignof] = ACTIONS(4044), + [anon_sym_alignof] = ACTIONS(4044), + [anon_sym__Alignof] = ACTIONS(4044), + [anon_sym_offsetof] = ACTIONS(4044), + [anon_sym__Generic] = ACTIONS(4044), + [anon_sym_typename] = ACTIONS(4044), + [anon_sym_asm] = ACTIONS(4044), + [anon_sym___asm__] = ACTIONS(4044), + [anon_sym___asm] = ACTIONS(4044), + [sym_number_literal] = ACTIONS(4046), + [anon_sym_L_SQUOTE] = ACTIONS(4046), + [anon_sym_u_SQUOTE] = ACTIONS(4046), + [anon_sym_U_SQUOTE] = ACTIONS(4046), + [anon_sym_u8_SQUOTE] = ACTIONS(4046), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_L_DQUOTE] = ACTIONS(4046), + [anon_sym_u_DQUOTE] = ACTIONS(4046), + [anon_sym_U_DQUOTE] = ACTIONS(4046), + [anon_sym_u8_DQUOTE] = ACTIONS(4046), + [anon_sym_DQUOTE] = ACTIONS(4046), + [sym_true] = ACTIONS(4044), + [sym_false] = ACTIONS(4044), + [anon_sym_NULL] = ACTIONS(4044), + [anon_sym_nullptr] = ACTIONS(4044), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4044), + [anon_sym_decltype] = ACTIONS(4044), + [anon_sym_explicit] = ACTIONS(4044), + [anon_sym_export] = ACTIONS(4044), + [anon_sym_module] = ACTIONS(4044), + [anon_sym_import] = ACTIONS(4044), + [anon_sym_template] = ACTIONS(4044), + [anon_sym_operator] = ACTIONS(4044), + [anon_sym_try] = ACTIONS(4044), + [anon_sym_delete] = ACTIONS(4044), + [anon_sym_throw] = ACTIONS(4044), + [anon_sym_namespace] = ACTIONS(4044), + [anon_sym_static_assert] = ACTIONS(4044), + [anon_sym_concept] = ACTIONS(4044), + [anon_sym_co_return] = ACTIONS(4044), + [anon_sym_co_yield] = ACTIONS(4044), + [anon_sym_R_DQUOTE] = ACTIONS(4046), + [anon_sym_LR_DQUOTE] = ACTIONS(4046), + [anon_sym_uR_DQUOTE] = ACTIONS(4046), + [anon_sym_UR_DQUOTE] = ACTIONS(4046), + [anon_sym_u8R_DQUOTE] = ACTIONS(4046), + [anon_sym_co_await] = ACTIONS(4044), + [anon_sym_new] = ACTIONS(4044), + [anon_sym_requires] = ACTIONS(4044), + [anon_sym_CARET_CARET] = ACTIONS(4046), + [anon_sym_LBRACK_COLON] = ACTIONS(4046), + [sym_this] = ACTIONS(4044), + }, + [STATE(718)] = { + [sym_identifier] = ACTIONS(4084), + [aux_sym_preproc_include_token1] = ACTIONS(4084), + [aux_sym_preproc_def_token1] = ACTIONS(4084), + [aux_sym_preproc_if_token1] = ACTIONS(4084), + [aux_sym_preproc_if_token2] = ACTIONS(4084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4084), + [sym_preproc_directive] = ACTIONS(4084), + [anon_sym_LPAREN2] = ACTIONS(4086), + [anon_sym_BANG] = ACTIONS(4086), + [anon_sym_TILDE] = ACTIONS(4086), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_STAR] = ACTIONS(4086), + [anon_sym_AMP_AMP] = ACTIONS(4086), + [anon_sym_AMP] = ACTIONS(4084), + [anon_sym_SEMI] = ACTIONS(4086), + [anon_sym___extension__] = ACTIONS(4084), + [anon_sym_typedef] = ACTIONS(4084), + [anon_sym_virtual] = ACTIONS(4084), + [anon_sym_extern] = ACTIONS(4084), + [anon_sym___attribute__] = ACTIONS(4084), + [anon_sym___attribute] = ACTIONS(4084), + [anon_sym_using] = ACTIONS(4084), + [anon_sym_COLON_COLON] = ACTIONS(4086), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4086), + [anon_sym___declspec] = ACTIONS(4084), + [anon_sym___based] = ACTIONS(4084), + [anon_sym___cdecl] = ACTIONS(4084), + [anon_sym___clrcall] = ACTIONS(4084), + [anon_sym___stdcall] = ACTIONS(4084), + [anon_sym___fastcall] = ACTIONS(4084), + [anon_sym___thiscall] = ACTIONS(4084), + [anon_sym___vectorcall] = ACTIONS(4084), + [anon_sym_LBRACE] = ACTIONS(4086), + [anon_sym_signed] = ACTIONS(4084), + [anon_sym_unsigned] = ACTIONS(4084), + [anon_sym_long] = ACTIONS(4084), + [anon_sym_short] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_static] = ACTIONS(4084), + [anon_sym_register] = ACTIONS(4084), + [anon_sym_inline] = ACTIONS(4084), + [anon_sym___inline] = ACTIONS(4084), + [anon_sym___inline__] = ACTIONS(4084), + [anon_sym___forceinline] = ACTIONS(4084), + [anon_sym_thread_local] = ACTIONS(4084), + [anon_sym___thread] = ACTIONS(4084), + [anon_sym_const] = ACTIONS(4084), + [anon_sym_constexpr] = ACTIONS(4084), + [anon_sym_volatile] = ACTIONS(4084), + [anon_sym_restrict] = ACTIONS(4084), + [anon_sym___restrict__] = ACTIONS(4084), + [anon_sym__Atomic] = ACTIONS(4084), + [anon_sym__Noreturn] = ACTIONS(4084), + [anon_sym_noreturn] = ACTIONS(4084), + [anon_sym__Nonnull] = ACTIONS(4084), + [anon_sym_mutable] = ACTIONS(4084), + [anon_sym_constinit] = ACTIONS(4084), + [anon_sym_consteval] = ACTIONS(4084), + [anon_sym_alignas] = ACTIONS(4084), + [anon_sym__Alignas] = ACTIONS(4084), + [sym_primitive_type] = ACTIONS(4084), + [anon_sym_enum] = ACTIONS(4084), + [anon_sym_class] = ACTIONS(4084), + [anon_sym_struct] = ACTIONS(4084), + [anon_sym_union] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4084), + [anon_sym_switch] = ACTIONS(4084), + [anon_sym_case] = ACTIONS(4084), + [anon_sym_default] = ACTIONS(4084), + [anon_sym_while] = ACTIONS(4084), + [anon_sym_do] = ACTIONS(4084), + [anon_sym_for] = ACTIONS(4084), + [anon_sym_return] = ACTIONS(4084), + [anon_sym_break] = ACTIONS(4084), + [anon_sym_continue] = ACTIONS(4084), + [anon_sym_goto] = ACTIONS(4084), + [anon_sym___try] = ACTIONS(4084), + [anon_sym___leave] = ACTIONS(4084), + [anon_sym_not] = ACTIONS(4084), + [anon_sym_compl] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4086), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_sizeof] = ACTIONS(4084), + [anon_sym___alignof__] = ACTIONS(4084), + [anon_sym___alignof] = ACTIONS(4084), + [anon_sym__alignof] = ACTIONS(4084), + [anon_sym_alignof] = ACTIONS(4084), + [anon_sym__Alignof] = ACTIONS(4084), + [anon_sym_offsetof] = ACTIONS(4084), + [anon_sym__Generic] = ACTIONS(4084), + [anon_sym_typename] = ACTIONS(4084), + [anon_sym_asm] = ACTIONS(4084), + [anon_sym___asm__] = ACTIONS(4084), + [anon_sym___asm] = ACTIONS(4084), + [sym_number_literal] = ACTIONS(4086), + [anon_sym_L_SQUOTE] = ACTIONS(4086), + [anon_sym_u_SQUOTE] = ACTIONS(4086), + [anon_sym_U_SQUOTE] = ACTIONS(4086), + [anon_sym_u8_SQUOTE] = ACTIONS(4086), + [anon_sym_SQUOTE] = ACTIONS(4086), + [anon_sym_L_DQUOTE] = ACTIONS(4086), + [anon_sym_u_DQUOTE] = ACTIONS(4086), + [anon_sym_U_DQUOTE] = ACTIONS(4086), + [anon_sym_u8_DQUOTE] = ACTIONS(4086), + [anon_sym_DQUOTE] = ACTIONS(4086), + [sym_true] = ACTIONS(4084), + [sym_false] = ACTIONS(4084), + [anon_sym_NULL] = ACTIONS(4084), + [anon_sym_nullptr] = ACTIONS(4084), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4084), + [anon_sym_decltype] = ACTIONS(4084), + [anon_sym_explicit] = ACTIONS(4084), + [anon_sym_export] = ACTIONS(4084), + [anon_sym_module] = ACTIONS(4084), + [anon_sym_import] = ACTIONS(4084), + [anon_sym_template] = ACTIONS(4084), + [anon_sym_operator] = ACTIONS(4084), + [anon_sym_try] = ACTIONS(4084), + [anon_sym_delete] = ACTIONS(4084), + [anon_sym_throw] = ACTIONS(4084), + [anon_sym_namespace] = ACTIONS(4084), + [anon_sym_static_assert] = ACTIONS(4084), + [anon_sym_concept] = ACTIONS(4084), + [anon_sym_co_return] = ACTIONS(4084), + [anon_sym_co_yield] = ACTIONS(4084), + [anon_sym_R_DQUOTE] = ACTIONS(4086), + [anon_sym_LR_DQUOTE] = ACTIONS(4086), + [anon_sym_uR_DQUOTE] = ACTIONS(4086), + [anon_sym_UR_DQUOTE] = ACTIONS(4086), + [anon_sym_u8R_DQUOTE] = ACTIONS(4086), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(4084), + [anon_sym_requires] = ACTIONS(4084), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(4086), + [sym_this] = ACTIONS(4084), + }, + [STATE(719)] = { + [sym_identifier] = ACTIONS(4088), + [aux_sym_preproc_include_token1] = ACTIONS(4088), + [aux_sym_preproc_def_token1] = ACTIONS(4088), + [aux_sym_preproc_if_token1] = ACTIONS(4088), + [aux_sym_preproc_if_token2] = ACTIONS(4088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4088), + [sym_preproc_directive] = ACTIONS(4088), + [anon_sym_LPAREN2] = ACTIONS(4090), + [anon_sym_BANG] = ACTIONS(4090), + [anon_sym_TILDE] = ACTIONS(4090), + [anon_sym_DASH] = ACTIONS(4088), + [anon_sym_PLUS] = ACTIONS(4088), + [anon_sym_STAR] = ACTIONS(4090), + [anon_sym_AMP_AMP] = ACTIONS(4090), + [anon_sym_AMP] = ACTIONS(4088), + [anon_sym_SEMI] = ACTIONS(4090), + [anon_sym___extension__] = ACTIONS(4088), + [anon_sym_typedef] = ACTIONS(4088), + [anon_sym_virtual] = ACTIONS(4088), + [anon_sym_extern] = ACTIONS(4088), + [anon_sym___attribute__] = ACTIONS(4088), + [anon_sym___attribute] = ACTIONS(4088), + [anon_sym_using] = ACTIONS(4088), + [anon_sym_COLON_COLON] = ACTIONS(4090), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4090), + [anon_sym___declspec] = ACTIONS(4088), + [anon_sym___based] = ACTIONS(4088), + [anon_sym___cdecl] = ACTIONS(4088), + [anon_sym___clrcall] = ACTIONS(4088), + [anon_sym___stdcall] = ACTIONS(4088), + [anon_sym___fastcall] = ACTIONS(4088), + [anon_sym___thiscall] = ACTIONS(4088), + [anon_sym___vectorcall] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_signed] = ACTIONS(4088), + [anon_sym_unsigned] = ACTIONS(4088), + [anon_sym_long] = ACTIONS(4088), + [anon_sym_short] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(4088), + [anon_sym_static] = ACTIONS(4088), + [anon_sym_register] = ACTIONS(4088), + [anon_sym_inline] = ACTIONS(4088), + [anon_sym___inline] = ACTIONS(4088), + [anon_sym___inline__] = ACTIONS(4088), + [anon_sym___forceinline] = ACTIONS(4088), + [anon_sym_thread_local] = ACTIONS(4088), + [anon_sym___thread] = ACTIONS(4088), + [anon_sym_const] = ACTIONS(4088), + [anon_sym_constexpr] = ACTIONS(4088), + [anon_sym_volatile] = ACTIONS(4088), + [anon_sym_restrict] = ACTIONS(4088), + [anon_sym___restrict__] = ACTIONS(4088), + [anon_sym__Atomic] = ACTIONS(4088), + [anon_sym__Noreturn] = ACTIONS(4088), + [anon_sym_noreturn] = ACTIONS(4088), + [anon_sym__Nonnull] = ACTIONS(4088), + [anon_sym_mutable] = ACTIONS(4088), + [anon_sym_constinit] = ACTIONS(4088), + [anon_sym_consteval] = ACTIONS(4088), + [anon_sym_alignas] = ACTIONS(4088), + [anon_sym__Alignas] = ACTIONS(4088), + [sym_primitive_type] = ACTIONS(4088), + [anon_sym_enum] = ACTIONS(4088), + [anon_sym_class] = ACTIONS(4088), + [anon_sym_struct] = ACTIONS(4088), + [anon_sym_union] = ACTIONS(4088), + [anon_sym_if] = ACTIONS(4088), + [anon_sym_switch] = ACTIONS(4088), + [anon_sym_case] = ACTIONS(4088), + [anon_sym_default] = ACTIONS(4088), + [anon_sym_while] = ACTIONS(4088), + [anon_sym_do] = ACTIONS(4088), + [anon_sym_for] = ACTIONS(4088), + [anon_sym_return] = ACTIONS(4088), + [anon_sym_break] = ACTIONS(4088), + [anon_sym_continue] = ACTIONS(4088), + [anon_sym_goto] = ACTIONS(4088), + [anon_sym___try] = ACTIONS(4088), + [anon_sym___leave] = ACTIONS(4088), + [anon_sym_not] = ACTIONS(4088), + [anon_sym_compl] = ACTIONS(4088), + [anon_sym_DASH_DASH] = ACTIONS(4090), + [anon_sym_PLUS_PLUS] = ACTIONS(4090), + [anon_sym_sizeof] = ACTIONS(4088), + [anon_sym___alignof__] = ACTIONS(4088), + [anon_sym___alignof] = ACTIONS(4088), + [anon_sym__alignof] = ACTIONS(4088), + [anon_sym_alignof] = ACTIONS(4088), + [anon_sym__Alignof] = ACTIONS(4088), + [anon_sym_offsetof] = ACTIONS(4088), + [anon_sym__Generic] = ACTIONS(4088), + [anon_sym_typename] = ACTIONS(4088), + [anon_sym_asm] = ACTIONS(4088), + [anon_sym___asm__] = ACTIONS(4088), + [anon_sym___asm] = ACTIONS(4088), + [sym_number_literal] = ACTIONS(4090), + [anon_sym_L_SQUOTE] = ACTIONS(4090), + [anon_sym_u_SQUOTE] = ACTIONS(4090), + [anon_sym_U_SQUOTE] = ACTIONS(4090), + [anon_sym_u8_SQUOTE] = ACTIONS(4090), + [anon_sym_SQUOTE] = ACTIONS(4090), + [anon_sym_L_DQUOTE] = ACTIONS(4090), + [anon_sym_u_DQUOTE] = ACTIONS(4090), + [anon_sym_U_DQUOTE] = ACTIONS(4090), + [anon_sym_u8_DQUOTE] = ACTIONS(4090), + [anon_sym_DQUOTE] = ACTIONS(4090), + [sym_true] = ACTIONS(4088), + [sym_false] = ACTIONS(4088), + [anon_sym_NULL] = ACTIONS(4088), + [anon_sym_nullptr] = ACTIONS(4088), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4088), + [anon_sym_decltype] = ACTIONS(4088), + [anon_sym_explicit] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4088), + [anon_sym_module] = ACTIONS(4088), + [anon_sym_import] = ACTIONS(4088), + [anon_sym_template] = ACTIONS(4088), + [anon_sym_operator] = ACTIONS(4088), + [anon_sym_try] = ACTIONS(4088), + [anon_sym_delete] = ACTIONS(4088), + [anon_sym_throw] = ACTIONS(4088), + [anon_sym_namespace] = ACTIONS(4088), + [anon_sym_static_assert] = ACTIONS(4088), + [anon_sym_concept] = ACTIONS(4088), + [anon_sym_co_return] = ACTIONS(4088), + [anon_sym_co_yield] = ACTIONS(4088), + [anon_sym_R_DQUOTE] = ACTIONS(4090), + [anon_sym_LR_DQUOTE] = ACTIONS(4090), + [anon_sym_uR_DQUOTE] = ACTIONS(4090), + [anon_sym_UR_DQUOTE] = ACTIONS(4090), + [anon_sym_u8R_DQUOTE] = ACTIONS(4090), + [anon_sym_co_await] = ACTIONS(4088), + [anon_sym_new] = ACTIONS(4088), + [anon_sym_requires] = ACTIONS(4088), + [anon_sym_CARET_CARET] = ACTIONS(4090), + [anon_sym_LBRACK_COLON] = ACTIONS(4090), + [sym_this] = ACTIONS(4088), + }, + [STATE(720)] = { + [sym_identifier] = ACTIONS(4092), + [aux_sym_preproc_include_token1] = ACTIONS(4092), + [aux_sym_preproc_def_token1] = ACTIONS(4092), + [aux_sym_preproc_if_token1] = ACTIONS(4092), + [aux_sym_preproc_if_token2] = ACTIONS(4092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4092), + [sym_preproc_directive] = ACTIONS(4092), + [anon_sym_LPAREN2] = ACTIONS(4094), + [anon_sym_BANG] = ACTIONS(4094), + [anon_sym_TILDE] = ACTIONS(4094), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_AMP] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym___extension__] = ACTIONS(4092), + [anon_sym_typedef] = ACTIONS(4092), + [anon_sym_virtual] = ACTIONS(4092), + [anon_sym_extern] = ACTIONS(4092), + [anon_sym___attribute__] = ACTIONS(4092), + [anon_sym___attribute] = ACTIONS(4092), + [anon_sym_using] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4094), + [anon_sym___declspec] = ACTIONS(4092), + [anon_sym___based] = ACTIONS(4092), + [anon_sym___cdecl] = ACTIONS(4092), + [anon_sym___clrcall] = ACTIONS(4092), + [anon_sym___stdcall] = ACTIONS(4092), + [anon_sym___fastcall] = ACTIONS(4092), + [anon_sym___thiscall] = ACTIONS(4092), + [anon_sym___vectorcall] = ACTIONS(4092), + [anon_sym_LBRACE] = ACTIONS(4094), + [anon_sym_signed] = ACTIONS(4092), + [anon_sym_unsigned] = ACTIONS(4092), + [anon_sym_long] = ACTIONS(4092), + [anon_sym_short] = ACTIONS(4092), + [anon_sym_LBRACK] = ACTIONS(4092), + [anon_sym_static] = ACTIONS(4092), + [anon_sym_register] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym___inline] = ACTIONS(4092), + [anon_sym___inline__] = ACTIONS(4092), + [anon_sym___forceinline] = ACTIONS(4092), + [anon_sym_thread_local] = ACTIONS(4092), + [anon_sym___thread] = ACTIONS(4092), + [anon_sym_const] = ACTIONS(4092), + [anon_sym_constexpr] = ACTIONS(4092), + [anon_sym_volatile] = ACTIONS(4092), + [anon_sym_restrict] = ACTIONS(4092), + [anon_sym___restrict__] = ACTIONS(4092), + [anon_sym__Atomic] = ACTIONS(4092), + [anon_sym__Noreturn] = ACTIONS(4092), + [anon_sym_noreturn] = ACTIONS(4092), + [anon_sym__Nonnull] = ACTIONS(4092), + [anon_sym_mutable] = ACTIONS(4092), + [anon_sym_constinit] = ACTIONS(4092), + [anon_sym_consteval] = ACTIONS(4092), + [anon_sym_alignas] = ACTIONS(4092), + [anon_sym__Alignas] = ACTIONS(4092), + [sym_primitive_type] = ACTIONS(4092), + [anon_sym_enum] = ACTIONS(4092), + [anon_sym_class] = ACTIONS(4092), + [anon_sym_struct] = ACTIONS(4092), + [anon_sym_union] = ACTIONS(4092), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(4092), + [anon_sym_case] = ACTIONS(4092), + [anon_sym_default] = ACTIONS(4092), + [anon_sym_while] = ACTIONS(4092), + [anon_sym_do] = ACTIONS(4092), + [anon_sym_for] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_goto] = ACTIONS(4092), + [anon_sym___try] = ACTIONS(4092), + [anon_sym___leave] = ACTIONS(4092), + [anon_sym_not] = ACTIONS(4092), + [anon_sym_compl] = ACTIONS(4092), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_sizeof] = ACTIONS(4092), + [anon_sym___alignof__] = ACTIONS(4092), + [anon_sym___alignof] = ACTIONS(4092), + [anon_sym__alignof] = ACTIONS(4092), + [anon_sym_alignof] = ACTIONS(4092), + [anon_sym__Alignof] = ACTIONS(4092), + [anon_sym_offsetof] = ACTIONS(4092), + [anon_sym__Generic] = ACTIONS(4092), + [anon_sym_typename] = ACTIONS(4092), + [anon_sym_asm] = ACTIONS(4092), + [anon_sym___asm__] = ACTIONS(4092), + [anon_sym___asm] = ACTIONS(4092), + [sym_number_literal] = ACTIONS(4094), + [anon_sym_L_SQUOTE] = ACTIONS(4094), + [anon_sym_u_SQUOTE] = ACTIONS(4094), + [anon_sym_U_SQUOTE] = ACTIONS(4094), + [anon_sym_u8_SQUOTE] = ACTIONS(4094), + [anon_sym_SQUOTE] = ACTIONS(4094), + [anon_sym_L_DQUOTE] = ACTIONS(4094), + [anon_sym_u_DQUOTE] = ACTIONS(4094), + [anon_sym_U_DQUOTE] = ACTIONS(4094), + [anon_sym_u8_DQUOTE] = ACTIONS(4094), + [anon_sym_DQUOTE] = ACTIONS(4094), + [sym_true] = ACTIONS(4092), + [sym_false] = ACTIONS(4092), + [anon_sym_NULL] = ACTIONS(4092), + [anon_sym_nullptr] = ACTIONS(4092), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4092), + [anon_sym_decltype] = ACTIONS(4092), + [anon_sym_explicit] = ACTIONS(4092), + [anon_sym_export] = ACTIONS(4092), + [anon_sym_module] = ACTIONS(4092), + [anon_sym_import] = ACTIONS(4092), + [anon_sym_template] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_delete] = ACTIONS(4092), + [anon_sym_throw] = ACTIONS(4092), + [anon_sym_namespace] = ACTIONS(4092), + [anon_sym_static_assert] = ACTIONS(4092), + [anon_sym_concept] = ACTIONS(4092), + [anon_sym_co_return] = ACTIONS(4092), + [anon_sym_co_yield] = ACTIONS(4092), + [anon_sym_R_DQUOTE] = ACTIONS(4094), + [anon_sym_LR_DQUOTE] = ACTIONS(4094), + [anon_sym_uR_DQUOTE] = ACTIONS(4094), + [anon_sym_UR_DQUOTE] = ACTIONS(4094), + [anon_sym_u8R_DQUOTE] = ACTIONS(4094), + [anon_sym_co_await] = ACTIONS(4092), + [anon_sym_new] = ACTIONS(4092), + [anon_sym_requires] = ACTIONS(4092), + [anon_sym_CARET_CARET] = ACTIONS(4094), + [anon_sym_LBRACK_COLON] = ACTIONS(4094), + [sym_this] = ACTIONS(4092), + }, + [STATE(721)] = { [sym_identifier] = ACTIONS(4100), [aux_sym_preproc_include_token1] = ACTIONS(4100), [aux_sym_preproc_def_token1] = ACTIONS(4100), @@ -174181,6 +162995,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4100), [anon_sym_decltype] = ACTIONS(4100), [anon_sym_explicit] = ACTIONS(4100), + [anon_sym_export] = ACTIONS(4100), + [anon_sym_module] = ACTIONS(4100), + [anon_sym_import] = ACTIONS(4100), [anon_sym_template] = ACTIONS(4100), [anon_sym_operator] = ACTIONS(4100), [anon_sym_try] = ACTIONS(4100), @@ -174203,3043 +163020,430 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4102), [sym_this] = ACTIONS(4100), }, - [STATE(848)] = { - [sym_identifier] = ACTIONS(3898), - [aux_sym_preproc_include_token1] = ACTIONS(3898), - [aux_sym_preproc_def_token1] = ACTIONS(3898), - [aux_sym_preproc_if_token1] = ACTIONS(3898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3898), - [sym_preproc_directive] = ACTIONS(3898), - [anon_sym_LPAREN2] = ACTIONS(3900), - [anon_sym_BANG] = ACTIONS(3900), - [anon_sym_TILDE] = ACTIONS(3900), - [anon_sym_DASH] = ACTIONS(3898), - [anon_sym_PLUS] = ACTIONS(3898), - [anon_sym_STAR] = ACTIONS(3900), - [anon_sym_AMP_AMP] = ACTIONS(3900), - [anon_sym_AMP] = ACTIONS(3898), - [anon_sym_SEMI] = ACTIONS(3900), - [anon_sym___extension__] = ACTIONS(3898), - [anon_sym_typedef] = ACTIONS(3898), - [anon_sym_virtual] = ACTIONS(3898), - [anon_sym_extern] = ACTIONS(3898), - [anon_sym___attribute__] = ACTIONS(3898), - [anon_sym___attribute] = ACTIONS(3898), - [anon_sym_using] = ACTIONS(3898), - [anon_sym_COLON_COLON] = ACTIONS(3900), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3900), - [anon_sym___declspec] = ACTIONS(3898), - [anon_sym___based] = ACTIONS(3898), - [anon_sym___cdecl] = ACTIONS(3898), - [anon_sym___clrcall] = ACTIONS(3898), - [anon_sym___stdcall] = ACTIONS(3898), - [anon_sym___fastcall] = ACTIONS(3898), - [anon_sym___thiscall] = ACTIONS(3898), - [anon_sym___vectorcall] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(3900), - [anon_sym_RBRACE] = ACTIONS(3900), - [anon_sym_signed] = ACTIONS(3898), - [anon_sym_unsigned] = ACTIONS(3898), - [anon_sym_long] = ACTIONS(3898), - [anon_sym_short] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(3898), - [anon_sym_static] = ACTIONS(3898), - [anon_sym_register] = ACTIONS(3898), - [anon_sym_inline] = ACTIONS(3898), - [anon_sym___inline] = ACTIONS(3898), - [anon_sym___inline__] = ACTIONS(3898), - [anon_sym___forceinline] = ACTIONS(3898), - [anon_sym_thread_local] = ACTIONS(3898), - [anon_sym___thread] = ACTIONS(3898), - [anon_sym_const] = ACTIONS(3898), - [anon_sym_constexpr] = ACTIONS(3898), - [anon_sym_volatile] = ACTIONS(3898), - [anon_sym_restrict] = ACTIONS(3898), - [anon_sym___restrict__] = ACTIONS(3898), - [anon_sym__Atomic] = ACTIONS(3898), - [anon_sym__Noreturn] = ACTIONS(3898), - [anon_sym_noreturn] = ACTIONS(3898), - [anon_sym__Nonnull] = ACTIONS(3898), - [anon_sym_mutable] = ACTIONS(3898), - [anon_sym_constinit] = ACTIONS(3898), - [anon_sym_consteval] = ACTIONS(3898), - [anon_sym_alignas] = ACTIONS(3898), - [anon_sym__Alignas] = ACTIONS(3898), - [sym_primitive_type] = ACTIONS(3898), - [anon_sym_enum] = ACTIONS(3898), - [anon_sym_class] = ACTIONS(3898), - [anon_sym_struct] = ACTIONS(3898), - [anon_sym_union] = ACTIONS(3898), - [anon_sym_if] = ACTIONS(3898), - [anon_sym_switch] = ACTIONS(3898), - [anon_sym_case] = ACTIONS(3898), - [anon_sym_default] = ACTIONS(3898), - [anon_sym_while] = ACTIONS(3898), - [anon_sym_do] = ACTIONS(3898), - [anon_sym_for] = ACTIONS(3898), - [anon_sym_return] = ACTIONS(3898), - [anon_sym_break] = ACTIONS(3898), - [anon_sym_continue] = ACTIONS(3898), - [anon_sym_goto] = ACTIONS(3898), - [anon_sym___try] = ACTIONS(3898), - [anon_sym___leave] = ACTIONS(3898), - [anon_sym_not] = ACTIONS(3898), - [anon_sym_compl] = ACTIONS(3898), - [anon_sym_DASH_DASH] = ACTIONS(3900), - [anon_sym_PLUS_PLUS] = ACTIONS(3900), - [anon_sym_sizeof] = ACTIONS(3898), - [anon_sym___alignof__] = ACTIONS(3898), - [anon_sym___alignof] = ACTIONS(3898), - [anon_sym__alignof] = ACTIONS(3898), - [anon_sym_alignof] = ACTIONS(3898), - [anon_sym__Alignof] = ACTIONS(3898), - [anon_sym_offsetof] = ACTIONS(3898), - [anon_sym__Generic] = ACTIONS(3898), - [anon_sym_typename] = ACTIONS(3898), - [anon_sym_asm] = ACTIONS(3898), - [anon_sym___asm__] = ACTIONS(3898), - [anon_sym___asm] = ACTIONS(3898), - [sym_number_literal] = ACTIONS(3900), - [anon_sym_L_SQUOTE] = ACTIONS(3900), - [anon_sym_u_SQUOTE] = ACTIONS(3900), - [anon_sym_U_SQUOTE] = ACTIONS(3900), - [anon_sym_u8_SQUOTE] = ACTIONS(3900), - [anon_sym_SQUOTE] = ACTIONS(3900), - [anon_sym_L_DQUOTE] = ACTIONS(3900), - [anon_sym_u_DQUOTE] = ACTIONS(3900), - [anon_sym_U_DQUOTE] = ACTIONS(3900), - [anon_sym_u8_DQUOTE] = ACTIONS(3900), - [anon_sym_DQUOTE] = ACTIONS(3900), - [sym_true] = ACTIONS(3898), - [sym_false] = ACTIONS(3898), - [anon_sym_NULL] = ACTIONS(3898), - [anon_sym_nullptr] = ACTIONS(3898), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3898), - [anon_sym_decltype] = ACTIONS(3898), - [anon_sym_explicit] = ACTIONS(3898), - [anon_sym_template] = ACTIONS(3898), - [anon_sym_operator] = ACTIONS(3898), - [anon_sym_try] = ACTIONS(3898), - [anon_sym_delete] = ACTIONS(3898), - [anon_sym_throw] = ACTIONS(3898), - [anon_sym_namespace] = ACTIONS(3898), - [anon_sym_static_assert] = ACTIONS(3898), - [anon_sym_concept] = ACTIONS(3898), - [anon_sym_co_return] = ACTIONS(3898), - [anon_sym_co_yield] = ACTIONS(3898), - [anon_sym_R_DQUOTE] = ACTIONS(3900), - [anon_sym_LR_DQUOTE] = ACTIONS(3900), - [anon_sym_uR_DQUOTE] = ACTIONS(3900), - [anon_sym_UR_DQUOTE] = ACTIONS(3900), - [anon_sym_u8R_DQUOTE] = ACTIONS(3900), - [anon_sym_co_await] = ACTIONS(3898), - [anon_sym_new] = ACTIONS(3898), - [anon_sym_requires] = ACTIONS(3898), - [anon_sym_CARET_CARET] = ACTIONS(3900), - [anon_sym_LBRACK_COLON] = ACTIONS(3900), - [sym_this] = ACTIONS(3898), - }, - [STATE(849)] = { - [sym_identifier] = ACTIONS(4042), - [aux_sym_preproc_include_token1] = ACTIONS(4042), - [aux_sym_preproc_def_token1] = ACTIONS(4042), - [aux_sym_preproc_if_token1] = ACTIONS(4042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4042), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4042), - [sym_preproc_directive] = ACTIONS(4042), - [anon_sym_LPAREN2] = ACTIONS(4044), - [anon_sym_BANG] = ACTIONS(4044), - [anon_sym_TILDE] = ACTIONS(4044), - [anon_sym_DASH] = ACTIONS(4042), - [anon_sym_PLUS] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_SEMI] = ACTIONS(4044), - [anon_sym___extension__] = ACTIONS(4042), - [anon_sym_typedef] = ACTIONS(4042), - [anon_sym_virtual] = ACTIONS(4042), - [anon_sym_extern] = ACTIONS(4042), - [anon_sym___attribute__] = ACTIONS(4042), - [anon_sym___attribute] = ACTIONS(4042), - [anon_sym_using] = ACTIONS(4042), - [anon_sym_COLON_COLON] = ACTIONS(4044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4044), - [anon_sym___declspec] = ACTIONS(4042), - [anon_sym___based] = ACTIONS(4042), - [anon_sym___cdecl] = ACTIONS(4042), - [anon_sym___clrcall] = ACTIONS(4042), - [anon_sym___stdcall] = ACTIONS(4042), - [anon_sym___fastcall] = ACTIONS(4042), - [anon_sym___thiscall] = ACTIONS(4042), - [anon_sym___vectorcall] = ACTIONS(4042), - [anon_sym_LBRACE] = ACTIONS(4044), - [anon_sym_RBRACE] = ACTIONS(4044), - [anon_sym_signed] = ACTIONS(4042), - [anon_sym_unsigned] = ACTIONS(4042), - [anon_sym_long] = ACTIONS(4042), - [anon_sym_short] = ACTIONS(4042), - [anon_sym_LBRACK] = ACTIONS(4042), - [anon_sym_static] = ACTIONS(4042), - [anon_sym_register] = ACTIONS(4042), - [anon_sym_inline] = ACTIONS(4042), - [anon_sym___inline] = ACTIONS(4042), - [anon_sym___inline__] = ACTIONS(4042), - [anon_sym___forceinline] = ACTIONS(4042), - [anon_sym_thread_local] = ACTIONS(4042), - [anon_sym___thread] = ACTIONS(4042), - [anon_sym_const] = ACTIONS(4042), - [anon_sym_constexpr] = ACTIONS(4042), - [anon_sym_volatile] = ACTIONS(4042), - [anon_sym_restrict] = ACTIONS(4042), - [anon_sym___restrict__] = ACTIONS(4042), - [anon_sym__Atomic] = ACTIONS(4042), - [anon_sym__Noreturn] = ACTIONS(4042), - [anon_sym_noreturn] = ACTIONS(4042), - [anon_sym__Nonnull] = ACTIONS(4042), - [anon_sym_mutable] = ACTIONS(4042), - [anon_sym_constinit] = ACTIONS(4042), - [anon_sym_consteval] = ACTIONS(4042), - [anon_sym_alignas] = ACTIONS(4042), - [anon_sym__Alignas] = ACTIONS(4042), - [sym_primitive_type] = ACTIONS(4042), - [anon_sym_enum] = ACTIONS(4042), - [anon_sym_class] = ACTIONS(4042), - [anon_sym_struct] = ACTIONS(4042), - [anon_sym_union] = ACTIONS(4042), - [anon_sym_if] = ACTIONS(4042), - [anon_sym_switch] = ACTIONS(4042), - [anon_sym_case] = ACTIONS(4042), - [anon_sym_default] = ACTIONS(4042), - [anon_sym_while] = ACTIONS(4042), - [anon_sym_do] = ACTIONS(4042), - [anon_sym_for] = ACTIONS(4042), - [anon_sym_return] = ACTIONS(4042), - [anon_sym_break] = ACTIONS(4042), - [anon_sym_continue] = ACTIONS(4042), - [anon_sym_goto] = ACTIONS(4042), - [anon_sym___try] = ACTIONS(4042), - [anon_sym___leave] = ACTIONS(4042), - [anon_sym_not] = ACTIONS(4042), - [anon_sym_compl] = ACTIONS(4042), - [anon_sym_DASH_DASH] = ACTIONS(4044), - [anon_sym_PLUS_PLUS] = ACTIONS(4044), - [anon_sym_sizeof] = ACTIONS(4042), - [anon_sym___alignof__] = ACTIONS(4042), - [anon_sym___alignof] = ACTIONS(4042), - [anon_sym__alignof] = ACTIONS(4042), - [anon_sym_alignof] = ACTIONS(4042), - [anon_sym__Alignof] = ACTIONS(4042), - [anon_sym_offsetof] = ACTIONS(4042), - [anon_sym__Generic] = ACTIONS(4042), - [anon_sym_typename] = ACTIONS(4042), - [anon_sym_asm] = ACTIONS(4042), - [anon_sym___asm__] = ACTIONS(4042), - [anon_sym___asm] = ACTIONS(4042), - [sym_number_literal] = ACTIONS(4044), - [anon_sym_L_SQUOTE] = ACTIONS(4044), - [anon_sym_u_SQUOTE] = ACTIONS(4044), - [anon_sym_U_SQUOTE] = ACTIONS(4044), - [anon_sym_u8_SQUOTE] = ACTIONS(4044), - [anon_sym_SQUOTE] = ACTIONS(4044), - [anon_sym_L_DQUOTE] = ACTIONS(4044), - [anon_sym_u_DQUOTE] = ACTIONS(4044), - [anon_sym_U_DQUOTE] = ACTIONS(4044), - [anon_sym_u8_DQUOTE] = ACTIONS(4044), - [anon_sym_DQUOTE] = ACTIONS(4044), - [sym_true] = ACTIONS(4042), - [sym_false] = ACTIONS(4042), - [anon_sym_NULL] = ACTIONS(4042), - [anon_sym_nullptr] = ACTIONS(4042), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4042), - [anon_sym_decltype] = ACTIONS(4042), - [anon_sym_explicit] = ACTIONS(4042), - [anon_sym_template] = ACTIONS(4042), - [anon_sym_operator] = ACTIONS(4042), - [anon_sym_try] = ACTIONS(4042), - [anon_sym_delete] = ACTIONS(4042), - [anon_sym_throw] = ACTIONS(4042), - [anon_sym_namespace] = ACTIONS(4042), - [anon_sym_static_assert] = ACTIONS(4042), - [anon_sym_concept] = ACTIONS(4042), - [anon_sym_co_return] = ACTIONS(4042), - [anon_sym_co_yield] = ACTIONS(4042), - [anon_sym_R_DQUOTE] = ACTIONS(4044), - [anon_sym_LR_DQUOTE] = ACTIONS(4044), - [anon_sym_uR_DQUOTE] = ACTIONS(4044), - [anon_sym_UR_DQUOTE] = ACTIONS(4044), - [anon_sym_u8R_DQUOTE] = ACTIONS(4044), - [anon_sym_co_await] = ACTIONS(4042), - [anon_sym_new] = ACTIONS(4042), - [anon_sym_requires] = ACTIONS(4042), - [anon_sym_CARET_CARET] = ACTIONS(4044), - [anon_sym_LBRACK_COLON] = ACTIONS(4044), - [sym_this] = ACTIONS(4042), - }, - [STATE(850)] = { - [sym_expression] = STATE(6656), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_initializer_list] = STATE(7151), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_COMMA] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(3385), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(2024), - [anon_sym_PLUS] = ACTIONS(2024), - [anon_sym_STAR] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - [anon_sym_EQ_EQ] = ACTIONS(2026), - [anon_sym_BANG_EQ] = ACTIONS(2026), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2026), - [anon_sym_LT_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2026), - [anon_sym_GT_GT] = ACTIONS(2026), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_RBRACK] = ACTIONS(2026), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_QMARK] = ACTIONS(2026), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_LT_EQ_GT] = ACTIONS(2026), - [anon_sym_or] = ACTIONS(2024), - [anon_sym_and] = ACTIONS(2024), - [anon_sym_bitor] = ACTIONS(2024), - [anon_sym_xor] = ACTIONS(2024), - [anon_sym_bitand] = ACTIONS(2024), - [anon_sym_not_eq] = ACTIONS(2024), - [anon_sym_DASH_DASH] = ACTIONS(2026), - [anon_sym_PLUS_PLUS] = ACTIONS(2026), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2026), - [anon_sym_DASH_GT] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(851)] = { - [sym_identifier] = ACTIONS(4046), - [aux_sym_preproc_include_token1] = ACTIONS(4046), - [aux_sym_preproc_def_token1] = ACTIONS(4046), - [aux_sym_preproc_if_token1] = ACTIONS(4046), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4046), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4046), - [sym_preproc_directive] = ACTIONS(4046), - [anon_sym_LPAREN2] = ACTIONS(4048), - [anon_sym_BANG] = ACTIONS(4048), - [anon_sym_TILDE] = ACTIONS(4048), - [anon_sym_DASH] = ACTIONS(4046), - [anon_sym_PLUS] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(4048), - [anon_sym_AMP_AMP] = ACTIONS(4048), - [anon_sym_AMP] = ACTIONS(4046), - [anon_sym_SEMI] = ACTIONS(4048), - [anon_sym___extension__] = ACTIONS(4046), - [anon_sym_typedef] = ACTIONS(4046), - [anon_sym_virtual] = ACTIONS(4046), - [anon_sym_extern] = ACTIONS(4046), - [anon_sym___attribute__] = ACTIONS(4046), - [anon_sym___attribute] = ACTIONS(4046), - [anon_sym_using] = ACTIONS(4046), - [anon_sym_COLON_COLON] = ACTIONS(4048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4048), - [anon_sym___declspec] = ACTIONS(4046), - [anon_sym___based] = ACTIONS(4046), - [anon_sym___cdecl] = ACTIONS(4046), - [anon_sym___clrcall] = ACTIONS(4046), - [anon_sym___stdcall] = ACTIONS(4046), - [anon_sym___fastcall] = ACTIONS(4046), - [anon_sym___thiscall] = ACTIONS(4046), - [anon_sym___vectorcall] = ACTIONS(4046), - [anon_sym_LBRACE] = ACTIONS(4048), - [anon_sym_RBRACE] = ACTIONS(4048), - [anon_sym_signed] = ACTIONS(4046), - [anon_sym_unsigned] = ACTIONS(4046), - [anon_sym_long] = ACTIONS(4046), - [anon_sym_short] = ACTIONS(4046), - [anon_sym_LBRACK] = ACTIONS(4046), - [anon_sym_static] = ACTIONS(4046), - [anon_sym_register] = ACTIONS(4046), - [anon_sym_inline] = ACTIONS(4046), - [anon_sym___inline] = ACTIONS(4046), - [anon_sym___inline__] = ACTIONS(4046), - [anon_sym___forceinline] = ACTIONS(4046), - [anon_sym_thread_local] = ACTIONS(4046), - [anon_sym___thread] = ACTIONS(4046), - [anon_sym_const] = ACTIONS(4046), - [anon_sym_constexpr] = ACTIONS(4046), - [anon_sym_volatile] = ACTIONS(4046), - [anon_sym_restrict] = ACTIONS(4046), - [anon_sym___restrict__] = ACTIONS(4046), - [anon_sym__Atomic] = ACTIONS(4046), - [anon_sym__Noreturn] = ACTIONS(4046), - [anon_sym_noreturn] = ACTIONS(4046), - [anon_sym__Nonnull] = ACTIONS(4046), - [anon_sym_mutable] = ACTIONS(4046), - [anon_sym_constinit] = ACTIONS(4046), - [anon_sym_consteval] = ACTIONS(4046), - [anon_sym_alignas] = ACTIONS(4046), - [anon_sym__Alignas] = ACTIONS(4046), - [sym_primitive_type] = ACTIONS(4046), - [anon_sym_enum] = ACTIONS(4046), - [anon_sym_class] = ACTIONS(4046), - [anon_sym_struct] = ACTIONS(4046), - [anon_sym_union] = ACTIONS(4046), - [anon_sym_if] = ACTIONS(4046), - [anon_sym_switch] = ACTIONS(4046), - [anon_sym_case] = ACTIONS(4046), - [anon_sym_default] = ACTIONS(4046), - [anon_sym_while] = ACTIONS(4046), - [anon_sym_do] = ACTIONS(4046), - [anon_sym_for] = ACTIONS(4046), - [anon_sym_return] = ACTIONS(4046), - [anon_sym_break] = ACTIONS(4046), - [anon_sym_continue] = ACTIONS(4046), - [anon_sym_goto] = ACTIONS(4046), - [anon_sym___try] = ACTIONS(4046), - [anon_sym___leave] = ACTIONS(4046), - [anon_sym_not] = ACTIONS(4046), - [anon_sym_compl] = ACTIONS(4046), - [anon_sym_DASH_DASH] = ACTIONS(4048), - [anon_sym_PLUS_PLUS] = ACTIONS(4048), - [anon_sym_sizeof] = ACTIONS(4046), - [anon_sym___alignof__] = ACTIONS(4046), - [anon_sym___alignof] = ACTIONS(4046), - [anon_sym__alignof] = ACTIONS(4046), - [anon_sym_alignof] = ACTIONS(4046), - [anon_sym__Alignof] = ACTIONS(4046), - [anon_sym_offsetof] = ACTIONS(4046), - [anon_sym__Generic] = ACTIONS(4046), - [anon_sym_typename] = ACTIONS(4046), - [anon_sym_asm] = ACTIONS(4046), - [anon_sym___asm__] = ACTIONS(4046), - [anon_sym___asm] = ACTIONS(4046), - [sym_number_literal] = ACTIONS(4048), - [anon_sym_L_SQUOTE] = ACTIONS(4048), - [anon_sym_u_SQUOTE] = ACTIONS(4048), - [anon_sym_U_SQUOTE] = ACTIONS(4048), - [anon_sym_u8_SQUOTE] = ACTIONS(4048), - [anon_sym_SQUOTE] = ACTIONS(4048), - [anon_sym_L_DQUOTE] = ACTIONS(4048), - [anon_sym_u_DQUOTE] = ACTIONS(4048), - [anon_sym_U_DQUOTE] = ACTIONS(4048), - [anon_sym_u8_DQUOTE] = ACTIONS(4048), - [anon_sym_DQUOTE] = ACTIONS(4048), - [sym_true] = ACTIONS(4046), - [sym_false] = ACTIONS(4046), - [anon_sym_NULL] = ACTIONS(4046), - [anon_sym_nullptr] = ACTIONS(4046), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4046), - [anon_sym_decltype] = ACTIONS(4046), - [anon_sym_explicit] = ACTIONS(4046), - [anon_sym_template] = ACTIONS(4046), - [anon_sym_operator] = ACTIONS(4046), - [anon_sym_try] = ACTIONS(4046), - [anon_sym_delete] = ACTIONS(4046), - [anon_sym_throw] = ACTIONS(4046), - [anon_sym_namespace] = ACTIONS(4046), - [anon_sym_static_assert] = ACTIONS(4046), - [anon_sym_concept] = ACTIONS(4046), - [anon_sym_co_return] = ACTIONS(4046), - [anon_sym_co_yield] = ACTIONS(4046), - [anon_sym_R_DQUOTE] = ACTIONS(4048), - [anon_sym_LR_DQUOTE] = ACTIONS(4048), - [anon_sym_uR_DQUOTE] = ACTIONS(4048), - [anon_sym_UR_DQUOTE] = ACTIONS(4048), - [anon_sym_u8R_DQUOTE] = ACTIONS(4048), - [anon_sym_co_await] = ACTIONS(4046), - [anon_sym_new] = ACTIONS(4046), - [anon_sym_requires] = ACTIONS(4046), - [anon_sym_CARET_CARET] = ACTIONS(4048), - [anon_sym_LBRACK_COLON] = ACTIONS(4048), - [sym_this] = ACTIONS(4046), - }, - [STATE(852)] = { - [sym_identifier] = ACTIONS(4050), - [aux_sym_preproc_include_token1] = ACTIONS(4050), - [aux_sym_preproc_def_token1] = ACTIONS(4050), - [aux_sym_preproc_if_token1] = ACTIONS(4050), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4050), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4050), - [sym_preproc_directive] = ACTIONS(4050), - [anon_sym_LPAREN2] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(4052), - [anon_sym_TILDE] = ACTIONS(4052), - [anon_sym_DASH] = ACTIONS(4050), - [anon_sym_PLUS] = ACTIONS(4050), - [anon_sym_STAR] = ACTIONS(4052), - [anon_sym_AMP_AMP] = ACTIONS(4052), - [anon_sym_AMP] = ACTIONS(4050), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym___extension__] = ACTIONS(4050), - [anon_sym_typedef] = ACTIONS(4050), - [anon_sym_virtual] = ACTIONS(4050), - [anon_sym_extern] = ACTIONS(4050), - [anon_sym___attribute__] = ACTIONS(4050), - [anon_sym___attribute] = ACTIONS(4050), - [anon_sym_using] = ACTIONS(4050), - [anon_sym_COLON_COLON] = ACTIONS(4052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4052), - [anon_sym___declspec] = ACTIONS(4050), - [anon_sym___based] = ACTIONS(4050), - [anon_sym___cdecl] = ACTIONS(4050), - [anon_sym___clrcall] = ACTIONS(4050), - [anon_sym___stdcall] = ACTIONS(4050), - [anon_sym___fastcall] = ACTIONS(4050), - [anon_sym___thiscall] = ACTIONS(4050), - [anon_sym___vectorcall] = ACTIONS(4050), - [anon_sym_LBRACE] = ACTIONS(4052), - [anon_sym_RBRACE] = ACTIONS(4052), - [anon_sym_signed] = ACTIONS(4050), - [anon_sym_unsigned] = ACTIONS(4050), - [anon_sym_long] = ACTIONS(4050), - [anon_sym_short] = ACTIONS(4050), - [anon_sym_LBRACK] = ACTIONS(4050), - [anon_sym_static] = ACTIONS(4050), - [anon_sym_register] = ACTIONS(4050), - [anon_sym_inline] = ACTIONS(4050), - [anon_sym___inline] = ACTIONS(4050), - [anon_sym___inline__] = ACTIONS(4050), - [anon_sym___forceinline] = ACTIONS(4050), - [anon_sym_thread_local] = ACTIONS(4050), - [anon_sym___thread] = ACTIONS(4050), - [anon_sym_const] = ACTIONS(4050), - [anon_sym_constexpr] = ACTIONS(4050), - [anon_sym_volatile] = ACTIONS(4050), - [anon_sym_restrict] = ACTIONS(4050), - [anon_sym___restrict__] = ACTIONS(4050), - [anon_sym__Atomic] = ACTIONS(4050), - [anon_sym__Noreturn] = ACTIONS(4050), - [anon_sym_noreturn] = ACTIONS(4050), - [anon_sym__Nonnull] = ACTIONS(4050), - [anon_sym_mutable] = ACTIONS(4050), - [anon_sym_constinit] = ACTIONS(4050), - [anon_sym_consteval] = ACTIONS(4050), - [anon_sym_alignas] = ACTIONS(4050), - [anon_sym__Alignas] = ACTIONS(4050), - [sym_primitive_type] = ACTIONS(4050), - [anon_sym_enum] = ACTIONS(4050), - [anon_sym_class] = ACTIONS(4050), - [anon_sym_struct] = ACTIONS(4050), - [anon_sym_union] = ACTIONS(4050), - [anon_sym_if] = ACTIONS(4050), - [anon_sym_switch] = ACTIONS(4050), - [anon_sym_case] = ACTIONS(4050), - [anon_sym_default] = ACTIONS(4050), - [anon_sym_while] = ACTIONS(4050), - [anon_sym_do] = ACTIONS(4050), - [anon_sym_for] = ACTIONS(4050), - [anon_sym_return] = ACTIONS(4050), - [anon_sym_break] = ACTIONS(4050), - [anon_sym_continue] = ACTIONS(4050), - [anon_sym_goto] = ACTIONS(4050), - [anon_sym___try] = ACTIONS(4050), - [anon_sym___leave] = ACTIONS(4050), - [anon_sym_not] = ACTIONS(4050), - [anon_sym_compl] = ACTIONS(4050), - [anon_sym_DASH_DASH] = ACTIONS(4052), - [anon_sym_PLUS_PLUS] = ACTIONS(4052), - [anon_sym_sizeof] = ACTIONS(4050), - [anon_sym___alignof__] = ACTIONS(4050), - [anon_sym___alignof] = ACTIONS(4050), - [anon_sym__alignof] = ACTIONS(4050), - [anon_sym_alignof] = ACTIONS(4050), - [anon_sym__Alignof] = ACTIONS(4050), - [anon_sym_offsetof] = ACTIONS(4050), - [anon_sym__Generic] = ACTIONS(4050), - [anon_sym_typename] = ACTIONS(4050), - [anon_sym_asm] = ACTIONS(4050), - [anon_sym___asm__] = ACTIONS(4050), - [anon_sym___asm] = ACTIONS(4050), - [sym_number_literal] = ACTIONS(4052), - [anon_sym_L_SQUOTE] = ACTIONS(4052), - [anon_sym_u_SQUOTE] = ACTIONS(4052), - [anon_sym_U_SQUOTE] = ACTIONS(4052), - [anon_sym_u8_SQUOTE] = ACTIONS(4052), - [anon_sym_SQUOTE] = ACTIONS(4052), - [anon_sym_L_DQUOTE] = ACTIONS(4052), - [anon_sym_u_DQUOTE] = ACTIONS(4052), - [anon_sym_U_DQUOTE] = ACTIONS(4052), - [anon_sym_u8_DQUOTE] = ACTIONS(4052), - [anon_sym_DQUOTE] = ACTIONS(4052), - [sym_true] = ACTIONS(4050), - [sym_false] = ACTIONS(4050), - [anon_sym_NULL] = ACTIONS(4050), - [anon_sym_nullptr] = ACTIONS(4050), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4050), - [anon_sym_decltype] = ACTIONS(4050), - [anon_sym_explicit] = ACTIONS(4050), - [anon_sym_template] = ACTIONS(4050), - [anon_sym_operator] = ACTIONS(4050), - [anon_sym_try] = ACTIONS(4050), - [anon_sym_delete] = ACTIONS(4050), - [anon_sym_throw] = ACTIONS(4050), - [anon_sym_namespace] = ACTIONS(4050), - [anon_sym_static_assert] = ACTIONS(4050), - [anon_sym_concept] = ACTIONS(4050), - [anon_sym_co_return] = ACTIONS(4050), - [anon_sym_co_yield] = ACTIONS(4050), - [anon_sym_R_DQUOTE] = ACTIONS(4052), - [anon_sym_LR_DQUOTE] = ACTIONS(4052), - [anon_sym_uR_DQUOTE] = ACTIONS(4052), - [anon_sym_UR_DQUOTE] = ACTIONS(4052), - [anon_sym_u8R_DQUOTE] = ACTIONS(4052), - [anon_sym_co_await] = ACTIONS(4050), - [anon_sym_new] = ACTIONS(4050), - [anon_sym_requires] = ACTIONS(4050), - [anon_sym_CARET_CARET] = ACTIONS(4052), - [anon_sym_LBRACK_COLON] = ACTIONS(4052), - [sym_this] = ACTIONS(4050), - }, - [STATE(853)] = { - [sym_identifier] = ACTIONS(4107), - [aux_sym_preproc_include_token1] = ACTIONS(4107), - [aux_sym_preproc_def_token1] = ACTIONS(4107), - [aux_sym_preproc_if_token1] = ACTIONS(4107), - [aux_sym_preproc_if_token2] = ACTIONS(4107), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4107), - [sym_preproc_directive] = ACTIONS(4107), - [anon_sym_LPAREN2] = ACTIONS(4109), - [anon_sym_BANG] = ACTIONS(4109), - [anon_sym_TILDE] = ACTIONS(4109), - [anon_sym_DASH] = ACTIONS(4107), - [anon_sym_PLUS] = ACTIONS(4107), - [anon_sym_STAR] = ACTIONS(4109), - [anon_sym_AMP_AMP] = ACTIONS(4109), - [anon_sym_AMP] = ACTIONS(4107), - [anon_sym_SEMI] = ACTIONS(4109), - [anon_sym___extension__] = ACTIONS(4107), - [anon_sym_typedef] = ACTIONS(4107), - [anon_sym_virtual] = ACTIONS(4107), - [anon_sym_extern] = ACTIONS(4107), - [anon_sym___attribute__] = ACTIONS(4107), - [anon_sym___attribute] = ACTIONS(4107), - [anon_sym_using] = ACTIONS(4107), - [anon_sym_COLON_COLON] = ACTIONS(4109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4109), - [anon_sym___declspec] = ACTIONS(4107), - [anon_sym___based] = ACTIONS(4107), - [anon_sym___cdecl] = ACTIONS(4107), - [anon_sym___clrcall] = ACTIONS(4107), - [anon_sym___stdcall] = ACTIONS(4107), - [anon_sym___fastcall] = ACTIONS(4107), - [anon_sym___thiscall] = ACTIONS(4107), - [anon_sym___vectorcall] = ACTIONS(4107), - [anon_sym_LBRACE] = ACTIONS(4109), - [anon_sym_signed] = ACTIONS(4107), - [anon_sym_unsigned] = ACTIONS(4107), - [anon_sym_long] = ACTIONS(4107), - [anon_sym_short] = ACTIONS(4107), - [anon_sym_LBRACK] = ACTIONS(4107), - [anon_sym_static] = ACTIONS(4107), - [anon_sym_register] = ACTIONS(4107), - [anon_sym_inline] = ACTIONS(4107), - [anon_sym___inline] = ACTIONS(4107), - [anon_sym___inline__] = ACTIONS(4107), - [anon_sym___forceinline] = ACTIONS(4107), - [anon_sym_thread_local] = ACTIONS(4107), - [anon_sym___thread] = ACTIONS(4107), - [anon_sym_const] = ACTIONS(4107), - [anon_sym_constexpr] = ACTIONS(4107), - [anon_sym_volatile] = ACTIONS(4107), - [anon_sym_restrict] = ACTIONS(4107), - [anon_sym___restrict__] = ACTIONS(4107), - [anon_sym__Atomic] = ACTIONS(4107), - [anon_sym__Noreturn] = ACTIONS(4107), - [anon_sym_noreturn] = ACTIONS(4107), - [anon_sym__Nonnull] = ACTIONS(4107), - [anon_sym_mutable] = ACTIONS(4107), - [anon_sym_constinit] = ACTIONS(4107), - [anon_sym_consteval] = ACTIONS(4107), - [anon_sym_alignas] = ACTIONS(4107), - [anon_sym__Alignas] = ACTIONS(4107), - [sym_primitive_type] = ACTIONS(4107), - [anon_sym_enum] = ACTIONS(4107), - [anon_sym_class] = ACTIONS(4107), - [anon_sym_struct] = ACTIONS(4107), - [anon_sym_union] = ACTIONS(4107), - [anon_sym_if] = ACTIONS(4107), - [anon_sym_switch] = ACTIONS(4107), - [anon_sym_case] = ACTIONS(4107), - [anon_sym_default] = ACTIONS(4107), - [anon_sym_while] = ACTIONS(4107), - [anon_sym_do] = ACTIONS(4107), - [anon_sym_for] = ACTIONS(4107), - [anon_sym_return] = ACTIONS(4107), - [anon_sym_break] = ACTIONS(4107), - [anon_sym_continue] = ACTIONS(4107), - [anon_sym_goto] = ACTIONS(4107), - [anon_sym___try] = ACTIONS(4107), - [anon_sym___leave] = ACTIONS(4107), - [anon_sym_not] = ACTIONS(4107), - [anon_sym_compl] = ACTIONS(4107), - [anon_sym_DASH_DASH] = ACTIONS(4109), - [anon_sym_PLUS_PLUS] = ACTIONS(4109), - [anon_sym_sizeof] = ACTIONS(4107), - [anon_sym___alignof__] = ACTIONS(4107), - [anon_sym___alignof] = ACTIONS(4107), - [anon_sym__alignof] = ACTIONS(4107), - [anon_sym_alignof] = ACTIONS(4107), - [anon_sym__Alignof] = ACTIONS(4107), - [anon_sym_offsetof] = ACTIONS(4107), - [anon_sym__Generic] = ACTIONS(4107), - [anon_sym_typename] = ACTIONS(4107), - [anon_sym_asm] = ACTIONS(4107), - [anon_sym___asm__] = ACTIONS(4107), - [anon_sym___asm] = ACTIONS(4107), - [sym_number_literal] = ACTIONS(4109), - [anon_sym_L_SQUOTE] = ACTIONS(4109), - [anon_sym_u_SQUOTE] = ACTIONS(4109), - [anon_sym_U_SQUOTE] = ACTIONS(4109), - [anon_sym_u8_SQUOTE] = ACTIONS(4109), - [anon_sym_SQUOTE] = ACTIONS(4109), - [anon_sym_L_DQUOTE] = ACTIONS(4109), - [anon_sym_u_DQUOTE] = ACTIONS(4109), - [anon_sym_U_DQUOTE] = ACTIONS(4109), - [anon_sym_u8_DQUOTE] = ACTIONS(4109), - [anon_sym_DQUOTE] = ACTIONS(4109), - [sym_true] = ACTIONS(4107), - [sym_false] = ACTIONS(4107), - [anon_sym_NULL] = ACTIONS(4107), - [anon_sym_nullptr] = ACTIONS(4107), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4107), - [anon_sym_decltype] = ACTIONS(4107), - [anon_sym_explicit] = ACTIONS(4107), - [anon_sym_template] = ACTIONS(4107), - [anon_sym_operator] = ACTIONS(4107), - [anon_sym_try] = ACTIONS(4107), - [anon_sym_delete] = ACTIONS(4107), - [anon_sym_throw] = ACTIONS(4107), - [anon_sym_namespace] = ACTIONS(4107), - [anon_sym_static_assert] = ACTIONS(4107), - [anon_sym_concept] = ACTIONS(4107), - [anon_sym_co_return] = ACTIONS(4107), - [anon_sym_co_yield] = ACTIONS(4107), - [anon_sym_R_DQUOTE] = ACTIONS(4109), - [anon_sym_LR_DQUOTE] = ACTIONS(4109), - [anon_sym_uR_DQUOTE] = ACTIONS(4109), - [anon_sym_UR_DQUOTE] = ACTIONS(4109), - [anon_sym_u8R_DQUOTE] = ACTIONS(4109), - [anon_sym_co_await] = ACTIONS(4107), - [anon_sym_new] = ACTIONS(4107), - [anon_sym_requires] = ACTIONS(4107), - [anon_sym_CARET_CARET] = ACTIONS(4109), - [anon_sym_LBRACK_COLON] = ACTIONS(4109), - [sym_this] = ACTIONS(4107), - }, - [STATE(854)] = { - [sym_identifier] = ACTIONS(4111), - [aux_sym_preproc_include_token1] = ACTIONS(4111), - [aux_sym_preproc_def_token1] = ACTIONS(4111), - [aux_sym_preproc_if_token1] = ACTIONS(4111), - [aux_sym_preproc_if_token2] = ACTIONS(4111), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4111), - [sym_preproc_directive] = ACTIONS(4111), - [anon_sym_LPAREN2] = ACTIONS(4113), - [anon_sym_BANG] = ACTIONS(4113), - [anon_sym_TILDE] = ACTIONS(4113), - [anon_sym_DASH] = ACTIONS(4111), - [anon_sym_PLUS] = ACTIONS(4111), - [anon_sym_STAR] = ACTIONS(4113), - [anon_sym_AMP_AMP] = ACTIONS(4113), - [anon_sym_AMP] = ACTIONS(4111), - [anon_sym_SEMI] = ACTIONS(4113), - [anon_sym___extension__] = ACTIONS(4111), - [anon_sym_typedef] = ACTIONS(4111), - [anon_sym_virtual] = ACTIONS(4111), - [anon_sym_extern] = ACTIONS(4111), - [anon_sym___attribute__] = ACTIONS(4111), - [anon_sym___attribute] = ACTIONS(4111), - [anon_sym_using] = ACTIONS(4111), - [anon_sym_COLON_COLON] = ACTIONS(4113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4113), - [anon_sym___declspec] = ACTIONS(4111), - [anon_sym___based] = ACTIONS(4111), - [anon_sym___cdecl] = ACTIONS(4111), - [anon_sym___clrcall] = ACTIONS(4111), - [anon_sym___stdcall] = ACTIONS(4111), - [anon_sym___fastcall] = ACTIONS(4111), - [anon_sym___thiscall] = ACTIONS(4111), - [anon_sym___vectorcall] = ACTIONS(4111), - [anon_sym_LBRACE] = ACTIONS(4113), - [anon_sym_signed] = ACTIONS(4111), - [anon_sym_unsigned] = ACTIONS(4111), - [anon_sym_long] = ACTIONS(4111), - [anon_sym_short] = ACTIONS(4111), - [anon_sym_LBRACK] = ACTIONS(4111), - [anon_sym_static] = ACTIONS(4111), - [anon_sym_register] = ACTIONS(4111), - [anon_sym_inline] = ACTIONS(4111), - [anon_sym___inline] = ACTIONS(4111), - [anon_sym___inline__] = ACTIONS(4111), - [anon_sym___forceinline] = ACTIONS(4111), - [anon_sym_thread_local] = ACTIONS(4111), - [anon_sym___thread] = ACTIONS(4111), - [anon_sym_const] = ACTIONS(4111), - [anon_sym_constexpr] = ACTIONS(4111), - [anon_sym_volatile] = ACTIONS(4111), - [anon_sym_restrict] = ACTIONS(4111), - [anon_sym___restrict__] = ACTIONS(4111), - [anon_sym__Atomic] = ACTIONS(4111), - [anon_sym__Noreturn] = ACTIONS(4111), - [anon_sym_noreturn] = ACTIONS(4111), - [anon_sym__Nonnull] = ACTIONS(4111), - [anon_sym_mutable] = ACTIONS(4111), - [anon_sym_constinit] = ACTIONS(4111), - [anon_sym_consteval] = ACTIONS(4111), - [anon_sym_alignas] = ACTIONS(4111), - [anon_sym__Alignas] = ACTIONS(4111), - [sym_primitive_type] = ACTIONS(4111), - [anon_sym_enum] = ACTIONS(4111), - [anon_sym_class] = ACTIONS(4111), - [anon_sym_struct] = ACTIONS(4111), - [anon_sym_union] = ACTIONS(4111), - [anon_sym_if] = ACTIONS(4111), - [anon_sym_switch] = ACTIONS(4111), - [anon_sym_case] = ACTIONS(4111), - [anon_sym_default] = ACTIONS(4111), - [anon_sym_while] = ACTIONS(4111), - [anon_sym_do] = ACTIONS(4111), - [anon_sym_for] = ACTIONS(4111), - [anon_sym_return] = ACTIONS(4111), - [anon_sym_break] = ACTIONS(4111), - [anon_sym_continue] = ACTIONS(4111), - [anon_sym_goto] = ACTIONS(4111), - [anon_sym___try] = ACTIONS(4111), - [anon_sym___leave] = ACTIONS(4111), - [anon_sym_not] = ACTIONS(4111), - [anon_sym_compl] = ACTIONS(4111), - [anon_sym_DASH_DASH] = ACTIONS(4113), - [anon_sym_PLUS_PLUS] = ACTIONS(4113), - [anon_sym_sizeof] = ACTIONS(4111), - [anon_sym___alignof__] = ACTIONS(4111), - [anon_sym___alignof] = ACTIONS(4111), - [anon_sym__alignof] = ACTIONS(4111), - [anon_sym_alignof] = ACTIONS(4111), - [anon_sym__Alignof] = ACTIONS(4111), - [anon_sym_offsetof] = ACTIONS(4111), - [anon_sym__Generic] = ACTIONS(4111), - [anon_sym_typename] = ACTIONS(4111), - [anon_sym_asm] = ACTIONS(4111), - [anon_sym___asm__] = ACTIONS(4111), - [anon_sym___asm] = ACTIONS(4111), - [sym_number_literal] = ACTIONS(4113), - [anon_sym_L_SQUOTE] = ACTIONS(4113), - [anon_sym_u_SQUOTE] = ACTIONS(4113), - [anon_sym_U_SQUOTE] = ACTIONS(4113), - [anon_sym_u8_SQUOTE] = ACTIONS(4113), - [anon_sym_SQUOTE] = ACTIONS(4113), - [anon_sym_L_DQUOTE] = ACTIONS(4113), - [anon_sym_u_DQUOTE] = ACTIONS(4113), - [anon_sym_U_DQUOTE] = ACTIONS(4113), - [anon_sym_u8_DQUOTE] = ACTIONS(4113), - [anon_sym_DQUOTE] = ACTIONS(4113), - [sym_true] = ACTIONS(4111), - [sym_false] = ACTIONS(4111), - [anon_sym_NULL] = ACTIONS(4111), - [anon_sym_nullptr] = ACTIONS(4111), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4111), - [anon_sym_decltype] = ACTIONS(4111), - [anon_sym_explicit] = ACTIONS(4111), - [anon_sym_template] = ACTIONS(4111), - [anon_sym_operator] = ACTIONS(4111), - [anon_sym_try] = ACTIONS(4111), - [anon_sym_delete] = ACTIONS(4111), - [anon_sym_throw] = ACTIONS(4111), - [anon_sym_namespace] = ACTIONS(4111), - [anon_sym_static_assert] = ACTIONS(4111), - [anon_sym_concept] = ACTIONS(4111), - [anon_sym_co_return] = ACTIONS(4111), - [anon_sym_co_yield] = ACTIONS(4111), - [anon_sym_R_DQUOTE] = ACTIONS(4113), - [anon_sym_LR_DQUOTE] = ACTIONS(4113), - [anon_sym_uR_DQUOTE] = ACTIONS(4113), - [anon_sym_UR_DQUOTE] = ACTIONS(4113), - [anon_sym_u8R_DQUOTE] = ACTIONS(4113), - [anon_sym_co_await] = ACTIONS(4111), - [anon_sym_new] = ACTIONS(4111), - [anon_sym_requires] = ACTIONS(4111), - [anon_sym_CARET_CARET] = ACTIONS(4113), - [anon_sym_LBRACK_COLON] = ACTIONS(4113), - [sym_this] = ACTIONS(4111), - }, - [STATE(855)] = { - [sym_identifier] = ACTIONS(4115), - [aux_sym_preproc_include_token1] = ACTIONS(4115), - [aux_sym_preproc_def_token1] = ACTIONS(4115), - [aux_sym_preproc_if_token1] = ACTIONS(4115), - [aux_sym_preproc_if_token2] = ACTIONS(4115), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4115), - [sym_preproc_directive] = ACTIONS(4115), - [anon_sym_LPAREN2] = ACTIONS(4117), - [anon_sym_BANG] = ACTIONS(4117), - [anon_sym_TILDE] = ACTIONS(4117), - [anon_sym_DASH] = ACTIONS(4115), - [anon_sym_PLUS] = ACTIONS(4115), - [anon_sym_STAR] = ACTIONS(4117), - [anon_sym_AMP_AMP] = ACTIONS(4117), - [anon_sym_AMP] = ACTIONS(4115), - [anon_sym_SEMI] = ACTIONS(4117), - [anon_sym___extension__] = ACTIONS(4115), - [anon_sym_typedef] = ACTIONS(4115), - [anon_sym_virtual] = ACTIONS(4115), - [anon_sym_extern] = ACTIONS(4115), - [anon_sym___attribute__] = ACTIONS(4115), - [anon_sym___attribute] = ACTIONS(4115), - [anon_sym_using] = ACTIONS(4115), - [anon_sym_COLON_COLON] = ACTIONS(4117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4117), - [anon_sym___declspec] = ACTIONS(4115), - [anon_sym___based] = ACTIONS(4115), - [anon_sym___cdecl] = ACTIONS(4115), - [anon_sym___clrcall] = ACTIONS(4115), - [anon_sym___stdcall] = ACTIONS(4115), - [anon_sym___fastcall] = ACTIONS(4115), - [anon_sym___thiscall] = ACTIONS(4115), - [anon_sym___vectorcall] = ACTIONS(4115), - [anon_sym_LBRACE] = ACTIONS(4117), - [anon_sym_signed] = ACTIONS(4115), - [anon_sym_unsigned] = ACTIONS(4115), - [anon_sym_long] = ACTIONS(4115), - [anon_sym_short] = ACTIONS(4115), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4115), - [anon_sym_register] = ACTIONS(4115), - [anon_sym_inline] = ACTIONS(4115), - [anon_sym___inline] = ACTIONS(4115), - [anon_sym___inline__] = ACTIONS(4115), - [anon_sym___forceinline] = ACTIONS(4115), - [anon_sym_thread_local] = ACTIONS(4115), - [anon_sym___thread] = ACTIONS(4115), - [anon_sym_const] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(4115), - [anon_sym_volatile] = ACTIONS(4115), - [anon_sym_restrict] = ACTIONS(4115), - [anon_sym___restrict__] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(4115), - [anon_sym__Noreturn] = ACTIONS(4115), - [anon_sym_noreturn] = ACTIONS(4115), - [anon_sym__Nonnull] = ACTIONS(4115), - [anon_sym_mutable] = ACTIONS(4115), - [anon_sym_constinit] = ACTIONS(4115), - [anon_sym_consteval] = ACTIONS(4115), - [anon_sym_alignas] = ACTIONS(4115), - [anon_sym__Alignas] = ACTIONS(4115), - [sym_primitive_type] = ACTIONS(4115), - [anon_sym_enum] = ACTIONS(4115), - [anon_sym_class] = ACTIONS(4115), - [anon_sym_struct] = ACTIONS(4115), - [anon_sym_union] = ACTIONS(4115), - [anon_sym_if] = ACTIONS(4115), - [anon_sym_switch] = ACTIONS(4115), - [anon_sym_case] = ACTIONS(4115), - [anon_sym_default] = ACTIONS(4115), - [anon_sym_while] = ACTIONS(4115), - [anon_sym_do] = ACTIONS(4115), - [anon_sym_for] = ACTIONS(4115), - [anon_sym_return] = ACTIONS(4115), - [anon_sym_break] = ACTIONS(4115), - [anon_sym_continue] = ACTIONS(4115), - [anon_sym_goto] = ACTIONS(4115), - [anon_sym___try] = ACTIONS(4115), - [anon_sym___leave] = ACTIONS(4115), - [anon_sym_not] = ACTIONS(4115), - [anon_sym_compl] = ACTIONS(4115), - [anon_sym_DASH_DASH] = ACTIONS(4117), - [anon_sym_PLUS_PLUS] = ACTIONS(4117), - [anon_sym_sizeof] = ACTIONS(4115), - [anon_sym___alignof__] = ACTIONS(4115), - [anon_sym___alignof] = ACTIONS(4115), - [anon_sym__alignof] = ACTIONS(4115), - [anon_sym_alignof] = ACTIONS(4115), - [anon_sym__Alignof] = ACTIONS(4115), - [anon_sym_offsetof] = ACTIONS(4115), - [anon_sym__Generic] = ACTIONS(4115), - [anon_sym_typename] = ACTIONS(4115), - [anon_sym_asm] = ACTIONS(4115), - [anon_sym___asm__] = ACTIONS(4115), - [anon_sym___asm] = ACTIONS(4115), - [sym_number_literal] = ACTIONS(4117), - [anon_sym_L_SQUOTE] = ACTIONS(4117), - [anon_sym_u_SQUOTE] = ACTIONS(4117), - [anon_sym_U_SQUOTE] = ACTIONS(4117), - [anon_sym_u8_SQUOTE] = ACTIONS(4117), - [anon_sym_SQUOTE] = ACTIONS(4117), - [anon_sym_L_DQUOTE] = ACTIONS(4117), - [anon_sym_u_DQUOTE] = ACTIONS(4117), - [anon_sym_U_DQUOTE] = ACTIONS(4117), - [anon_sym_u8_DQUOTE] = ACTIONS(4117), - [anon_sym_DQUOTE] = ACTIONS(4117), - [sym_true] = ACTIONS(4115), - [sym_false] = ACTIONS(4115), - [anon_sym_NULL] = ACTIONS(4115), - [anon_sym_nullptr] = ACTIONS(4115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4115), - [anon_sym_decltype] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(4115), - [anon_sym_template] = ACTIONS(4115), - [anon_sym_operator] = ACTIONS(4115), - [anon_sym_try] = ACTIONS(4115), - [anon_sym_delete] = ACTIONS(4115), - [anon_sym_throw] = ACTIONS(4115), - [anon_sym_namespace] = ACTIONS(4115), - [anon_sym_static_assert] = ACTIONS(4115), - [anon_sym_concept] = ACTIONS(4115), - [anon_sym_co_return] = ACTIONS(4115), - [anon_sym_co_yield] = ACTIONS(4115), - [anon_sym_R_DQUOTE] = ACTIONS(4117), - [anon_sym_LR_DQUOTE] = ACTIONS(4117), - [anon_sym_uR_DQUOTE] = ACTIONS(4117), - [anon_sym_UR_DQUOTE] = ACTIONS(4117), - [anon_sym_u8R_DQUOTE] = ACTIONS(4117), - [anon_sym_co_await] = ACTIONS(4115), - [anon_sym_new] = ACTIONS(4115), - [anon_sym_requires] = ACTIONS(4115), - [anon_sym_CARET_CARET] = ACTIONS(4117), - [anon_sym_LBRACK_COLON] = ACTIONS(4117), - [sym_this] = ACTIONS(4115), - }, - [STATE(856)] = { - [sym_identifier] = ACTIONS(4134), - [aux_sym_preproc_include_token1] = ACTIONS(4134), - [aux_sym_preproc_def_token1] = ACTIONS(4134), - [aux_sym_preproc_if_token1] = ACTIONS(4134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4134), - [sym_preproc_directive] = ACTIONS(4134), - [anon_sym_LPAREN2] = ACTIONS(4136), - [anon_sym_BANG] = ACTIONS(4136), - [anon_sym_TILDE] = ACTIONS(4136), - [anon_sym_DASH] = ACTIONS(4134), - [anon_sym_PLUS] = ACTIONS(4134), - [anon_sym_STAR] = ACTIONS(4136), - [anon_sym_AMP_AMP] = ACTIONS(4136), - [anon_sym_AMP] = ACTIONS(4134), - [anon_sym_SEMI] = ACTIONS(4136), - [anon_sym___extension__] = ACTIONS(4134), - [anon_sym_typedef] = ACTIONS(4134), - [anon_sym_virtual] = ACTIONS(4134), - [anon_sym_extern] = ACTIONS(4134), - [anon_sym___attribute__] = ACTIONS(4134), - [anon_sym___attribute] = ACTIONS(4134), - [anon_sym_using] = ACTIONS(4134), - [anon_sym_COLON_COLON] = ACTIONS(4136), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4136), - [anon_sym___declspec] = ACTIONS(4134), - [anon_sym___based] = ACTIONS(4134), - [anon_sym___cdecl] = ACTIONS(4134), - [anon_sym___clrcall] = ACTIONS(4134), - [anon_sym___stdcall] = ACTIONS(4134), - [anon_sym___fastcall] = ACTIONS(4134), - [anon_sym___thiscall] = ACTIONS(4134), - [anon_sym___vectorcall] = ACTIONS(4134), - [anon_sym_LBRACE] = ACTIONS(4136), - [anon_sym_RBRACE] = ACTIONS(4136), - [anon_sym_signed] = ACTIONS(4134), - [anon_sym_unsigned] = ACTIONS(4134), - [anon_sym_long] = ACTIONS(4134), - [anon_sym_short] = ACTIONS(4134), - [anon_sym_LBRACK] = ACTIONS(4134), - [anon_sym_static] = ACTIONS(4134), - [anon_sym_register] = ACTIONS(4134), - [anon_sym_inline] = ACTIONS(4134), - [anon_sym___inline] = ACTIONS(4134), - [anon_sym___inline__] = ACTIONS(4134), - [anon_sym___forceinline] = ACTIONS(4134), - [anon_sym_thread_local] = ACTIONS(4134), - [anon_sym___thread] = ACTIONS(4134), - [anon_sym_const] = ACTIONS(4134), - [anon_sym_constexpr] = ACTIONS(4134), - [anon_sym_volatile] = ACTIONS(4134), - [anon_sym_restrict] = ACTIONS(4134), - [anon_sym___restrict__] = ACTIONS(4134), - [anon_sym__Atomic] = ACTIONS(4134), - [anon_sym__Noreturn] = ACTIONS(4134), - [anon_sym_noreturn] = ACTIONS(4134), - [anon_sym__Nonnull] = ACTIONS(4134), - [anon_sym_mutable] = ACTIONS(4134), - [anon_sym_constinit] = ACTIONS(4134), - [anon_sym_consteval] = ACTIONS(4134), - [anon_sym_alignas] = ACTIONS(4134), - [anon_sym__Alignas] = ACTIONS(4134), - [sym_primitive_type] = ACTIONS(4134), - [anon_sym_enum] = ACTIONS(4134), - [anon_sym_class] = ACTIONS(4134), - [anon_sym_struct] = ACTIONS(4134), - [anon_sym_union] = ACTIONS(4134), - [anon_sym_if] = ACTIONS(4134), - [anon_sym_switch] = ACTIONS(4134), - [anon_sym_case] = ACTIONS(4134), - [anon_sym_default] = ACTIONS(4134), - [anon_sym_while] = ACTIONS(4134), - [anon_sym_do] = ACTIONS(4134), - [anon_sym_for] = ACTIONS(4134), - [anon_sym_return] = ACTIONS(4134), - [anon_sym_break] = ACTIONS(4134), - [anon_sym_continue] = ACTIONS(4134), - [anon_sym_goto] = ACTIONS(4134), - [anon_sym___try] = ACTIONS(4134), - [anon_sym___leave] = ACTIONS(4134), - [anon_sym_not] = ACTIONS(4134), - [anon_sym_compl] = ACTIONS(4134), - [anon_sym_DASH_DASH] = ACTIONS(4136), - [anon_sym_PLUS_PLUS] = ACTIONS(4136), - [anon_sym_sizeof] = ACTIONS(4134), - [anon_sym___alignof__] = ACTIONS(4134), - [anon_sym___alignof] = ACTIONS(4134), - [anon_sym__alignof] = ACTIONS(4134), - [anon_sym_alignof] = ACTIONS(4134), - [anon_sym__Alignof] = ACTIONS(4134), - [anon_sym_offsetof] = ACTIONS(4134), - [anon_sym__Generic] = ACTIONS(4134), - [anon_sym_typename] = ACTIONS(4134), - [anon_sym_asm] = ACTIONS(4134), - [anon_sym___asm__] = ACTIONS(4134), - [anon_sym___asm] = ACTIONS(4134), - [sym_number_literal] = ACTIONS(4136), - [anon_sym_L_SQUOTE] = ACTIONS(4136), - [anon_sym_u_SQUOTE] = ACTIONS(4136), - [anon_sym_U_SQUOTE] = ACTIONS(4136), - [anon_sym_u8_SQUOTE] = ACTIONS(4136), - [anon_sym_SQUOTE] = ACTIONS(4136), - [anon_sym_L_DQUOTE] = ACTIONS(4136), - [anon_sym_u_DQUOTE] = ACTIONS(4136), - [anon_sym_U_DQUOTE] = ACTIONS(4136), - [anon_sym_u8_DQUOTE] = ACTIONS(4136), - [anon_sym_DQUOTE] = ACTIONS(4136), - [sym_true] = ACTIONS(4134), - [sym_false] = ACTIONS(4134), - [anon_sym_NULL] = ACTIONS(4134), - [anon_sym_nullptr] = ACTIONS(4134), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4134), - [anon_sym_decltype] = ACTIONS(4134), - [anon_sym_explicit] = ACTIONS(4134), - [anon_sym_template] = ACTIONS(4134), - [anon_sym_operator] = ACTIONS(4134), - [anon_sym_try] = ACTIONS(4134), - [anon_sym_delete] = ACTIONS(4134), - [anon_sym_throw] = ACTIONS(4134), - [anon_sym_namespace] = ACTIONS(4134), - [anon_sym_static_assert] = ACTIONS(4134), - [anon_sym_concept] = ACTIONS(4134), - [anon_sym_co_return] = ACTIONS(4134), - [anon_sym_co_yield] = ACTIONS(4134), - [anon_sym_R_DQUOTE] = ACTIONS(4136), - [anon_sym_LR_DQUOTE] = ACTIONS(4136), - [anon_sym_uR_DQUOTE] = ACTIONS(4136), - [anon_sym_UR_DQUOTE] = ACTIONS(4136), - [anon_sym_u8R_DQUOTE] = ACTIONS(4136), - [anon_sym_co_await] = ACTIONS(4134), - [anon_sym_new] = ACTIONS(4134), - [anon_sym_requires] = ACTIONS(4134), - [anon_sym_CARET_CARET] = ACTIONS(4136), - [anon_sym_LBRACK_COLON] = ACTIONS(4136), - [sym_this] = ACTIONS(4134), - }, - [STATE(857)] = { - [sym_identifier] = ACTIONS(4196), - [aux_sym_preproc_include_token1] = ACTIONS(4196), - [aux_sym_preproc_def_token1] = ACTIONS(4196), - [aux_sym_preproc_if_token1] = ACTIONS(4196), - [aux_sym_preproc_if_token2] = ACTIONS(4196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4196), - [sym_preproc_directive] = ACTIONS(4196), - [anon_sym_LPAREN2] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4198), - [anon_sym_TILDE] = ACTIONS(4198), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_AMP] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym___extension__] = ACTIONS(4196), - [anon_sym_typedef] = ACTIONS(4196), - [anon_sym_virtual] = ACTIONS(4196), - [anon_sym_extern] = ACTIONS(4196), - [anon_sym___attribute__] = ACTIONS(4196), - [anon_sym___attribute] = ACTIONS(4196), - [anon_sym_using] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4198), - [anon_sym___declspec] = ACTIONS(4196), - [anon_sym___based] = ACTIONS(4196), - [anon_sym___cdecl] = ACTIONS(4196), - [anon_sym___clrcall] = ACTIONS(4196), - [anon_sym___stdcall] = ACTIONS(4196), - [anon_sym___fastcall] = ACTIONS(4196), - [anon_sym___thiscall] = ACTIONS(4196), - [anon_sym___vectorcall] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4198), - [anon_sym_signed] = ACTIONS(4196), - [anon_sym_unsigned] = ACTIONS(4196), - [anon_sym_long] = ACTIONS(4196), - [anon_sym_short] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_static] = ACTIONS(4196), - [anon_sym_register] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym___inline] = ACTIONS(4196), - [anon_sym___inline__] = ACTIONS(4196), - [anon_sym___forceinline] = ACTIONS(4196), - [anon_sym_thread_local] = ACTIONS(4196), - [anon_sym___thread] = ACTIONS(4196), - [anon_sym_const] = ACTIONS(4196), - [anon_sym_constexpr] = ACTIONS(4196), - [anon_sym_volatile] = ACTIONS(4196), - [anon_sym_restrict] = ACTIONS(4196), - [anon_sym___restrict__] = ACTIONS(4196), - [anon_sym__Atomic] = ACTIONS(4196), - [anon_sym__Noreturn] = ACTIONS(4196), - [anon_sym_noreturn] = ACTIONS(4196), - [anon_sym__Nonnull] = ACTIONS(4196), - [anon_sym_mutable] = ACTIONS(4196), - [anon_sym_constinit] = ACTIONS(4196), - [anon_sym_consteval] = ACTIONS(4196), - [anon_sym_alignas] = ACTIONS(4196), - [anon_sym__Alignas] = ACTIONS(4196), - [sym_primitive_type] = ACTIONS(4196), - [anon_sym_enum] = ACTIONS(4196), - [anon_sym_class] = ACTIONS(4196), - [anon_sym_struct] = ACTIONS(4196), - [anon_sym_union] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_switch] = ACTIONS(4196), - [anon_sym_case] = ACTIONS(4196), - [anon_sym_default] = ACTIONS(4196), - [anon_sym_while] = ACTIONS(4196), - [anon_sym_do] = ACTIONS(4196), - [anon_sym_for] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_goto] = ACTIONS(4196), - [anon_sym___try] = ACTIONS(4196), - [anon_sym___leave] = ACTIONS(4196), - [anon_sym_not] = ACTIONS(4196), - [anon_sym_compl] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_sizeof] = ACTIONS(4196), - [anon_sym___alignof__] = ACTIONS(4196), - [anon_sym___alignof] = ACTIONS(4196), - [anon_sym__alignof] = ACTIONS(4196), - [anon_sym_alignof] = ACTIONS(4196), - [anon_sym__Alignof] = ACTIONS(4196), - [anon_sym_offsetof] = ACTIONS(4196), - [anon_sym__Generic] = ACTIONS(4196), - [anon_sym_typename] = ACTIONS(4196), - [anon_sym_asm] = ACTIONS(4196), - [anon_sym___asm__] = ACTIONS(4196), - [anon_sym___asm] = ACTIONS(4196), - [sym_number_literal] = ACTIONS(4198), - [anon_sym_L_SQUOTE] = ACTIONS(4198), - [anon_sym_u_SQUOTE] = ACTIONS(4198), - [anon_sym_U_SQUOTE] = ACTIONS(4198), - [anon_sym_u8_SQUOTE] = ACTIONS(4198), - [anon_sym_SQUOTE] = ACTIONS(4198), - [anon_sym_L_DQUOTE] = ACTIONS(4198), - [anon_sym_u_DQUOTE] = ACTIONS(4198), - [anon_sym_U_DQUOTE] = ACTIONS(4198), - [anon_sym_u8_DQUOTE] = ACTIONS(4198), - [anon_sym_DQUOTE] = ACTIONS(4198), - [sym_true] = ACTIONS(4196), - [sym_false] = ACTIONS(4196), - [anon_sym_NULL] = ACTIONS(4196), - [anon_sym_nullptr] = ACTIONS(4196), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4196), - [anon_sym_decltype] = ACTIONS(4196), - [anon_sym_explicit] = ACTIONS(4196), - [anon_sym_template] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_delete] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_namespace] = ACTIONS(4196), - [anon_sym_static_assert] = ACTIONS(4196), - [anon_sym_concept] = ACTIONS(4196), - [anon_sym_co_return] = ACTIONS(4196), - [anon_sym_co_yield] = ACTIONS(4196), - [anon_sym_R_DQUOTE] = ACTIONS(4198), - [anon_sym_LR_DQUOTE] = ACTIONS(4198), - [anon_sym_uR_DQUOTE] = ACTIONS(4198), - [anon_sym_UR_DQUOTE] = ACTIONS(4198), - [anon_sym_u8R_DQUOTE] = ACTIONS(4198), - [anon_sym_co_await] = ACTIONS(4196), - [anon_sym_new] = ACTIONS(4196), - [anon_sym_requires] = ACTIONS(4196), - [anon_sym_CARET_CARET] = ACTIONS(4198), - [anon_sym_LBRACK_COLON] = ACTIONS(4198), - [sym_this] = ACTIONS(4196), - }, - [STATE(858)] = { - [sym_identifier] = ACTIONS(4107), - [aux_sym_preproc_include_token1] = ACTIONS(4107), - [aux_sym_preproc_def_token1] = ACTIONS(4107), - [aux_sym_preproc_if_token1] = ACTIONS(4107), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4107), - [sym_preproc_directive] = ACTIONS(4107), - [anon_sym_LPAREN2] = ACTIONS(4109), - [anon_sym_BANG] = ACTIONS(4109), - [anon_sym_TILDE] = ACTIONS(4109), - [anon_sym_DASH] = ACTIONS(4107), - [anon_sym_PLUS] = ACTIONS(4107), - [anon_sym_STAR] = ACTIONS(4109), - [anon_sym_AMP_AMP] = ACTIONS(4109), - [anon_sym_AMP] = ACTIONS(4107), - [anon_sym_SEMI] = ACTIONS(4109), - [anon_sym___extension__] = ACTIONS(4107), - [anon_sym_typedef] = ACTIONS(4107), - [anon_sym_virtual] = ACTIONS(4107), - [anon_sym_extern] = ACTIONS(4107), - [anon_sym___attribute__] = ACTIONS(4107), - [anon_sym___attribute] = ACTIONS(4107), - [anon_sym_using] = ACTIONS(4107), - [anon_sym_COLON_COLON] = ACTIONS(4109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4109), - [anon_sym___declspec] = ACTIONS(4107), - [anon_sym___based] = ACTIONS(4107), - [anon_sym___cdecl] = ACTIONS(4107), - [anon_sym___clrcall] = ACTIONS(4107), - [anon_sym___stdcall] = ACTIONS(4107), - [anon_sym___fastcall] = ACTIONS(4107), - [anon_sym___thiscall] = ACTIONS(4107), - [anon_sym___vectorcall] = ACTIONS(4107), - [anon_sym_LBRACE] = ACTIONS(4109), - [anon_sym_RBRACE] = ACTIONS(4109), - [anon_sym_signed] = ACTIONS(4107), - [anon_sym_unsigned] = ACTIONS(4107), - [anon_sym_long] = ACTIONS(4107), - [anon_sym_short] = ACTIONS(4107), - [anon_sym_LBRACK] = ACTIONS(4107), - [anon_sym_static] = ACTIONS(4107), - [anon_sym_register] = ACTIONS(4107), - [anon_sym_inline] = ACTIONS(4107), - [anon_sym___inline] = ACTIONS(4107), - [anon_sym___inline__] = ACTIONS(4107), - [anon_sym___forceinline] = ACTIONS(4107), - [anon_sym_thread_local] = ACTIONS(4107), - [anon_sym___thread] = ACTIONS(4107), - [anon_sym_const] = ACTIONS(4107), - [anon_sym_constexpr] = ACTIONS(4107), - [anon_sym_volatile] = ACTIONS(4107), - [anon_sym_restrict] = ACTIONS(4107), - [anon_sym___restrict__] = ACTIONS(4107), - [anon_sym__Atomic] = ACTIONS(4107), - [anon_sym__Noreturn] = ACTIONS(4107), - [anon_sym_noreturn] = ACTIONS(4107), - [anon_sym__Nonnull] = ACTIONS(4107), - [anon_sym_mutable] = ACTIONS(4107), - [anon_sym_constinit] = ACTIONS(4107), - [anon_sym_consteval] = ACTIONS(4107), - [anon_sym_alignas] = ACTIONS(4107), - [anon_sym__Alignas] = ACTIONS(4107), - [sym_primitive_type] = ACTIONS(4107), - [anon_sym_enum] = ACTIONS(4107), - [anon_sym_class] = ACTIONS(4107), - [anon_sym_struct] = ACTIONS(4107), - [anon_sym_union] = ACTIONS(4107), - [anon_sym_if] = ACTIONS(4107), - [anon_sym_switch] = ACTIONS(4107), - [anon_sym_case] = ACTIONS(4107), - [anon_sym_default] = ACTIONS(4107), - [anon_sym_while] = ACTIONS(4107), - [anon_sym_do] = ACTIONS(4107), - [anon_sym_for] = ACTIONS(4107), - [anon_sym_return] = ACTIONS(4107), - [anon_sym_break] = ACTIONS(4107), - [anon_sym_continue] = ACTIONS(4107), - [anon_sym_goto] = ACTIONS(4107), - [anon_sym___try] = ACTIONS(4107), - [anon_sym___leave] = ACTIONS(4107), - [anon_sym_not] = ACTIONS(4107), - [anon_sym_compl] = ACTIONS(4107), - [anon_sym_DASH_DASH] = ACTIONS(4109), - [anon_sym_PLUS_PLUS] = ACTIONS(4109), - [anon_sym_sizeof] = ACTIONS(4107), - [anon_sym___alignof__] = ACTIONS(4107), - [anon_sym___alignof] = ACTIONS(4107), - [anon_sym__alignof] = ACTIONS(4107), - [anon_sym_alignof] = ACTIONS(4107), - [anon_sym__Alignof] = ACTIONS(4107), - [anon_sym_offsetof] = ACTIONS(4107), - [anon_sym__Generic] = ACTIONS(4107), - [anon_sym_typename] = ACTIONS(4107), - [anon_sym_asm] = ACTIONS(4107), - [anon_sym___asm__] = ACTIONS(4107), - [anon_sym___asm] = ACTIONS(4107), - [sym_number_literal] = ACTIONS(4109), - [anon_sym_L_SQUOTE] = ACTIONS(4109), - [anon_sym_u_SQUOTE] = ACTIONS(4109), - [anon_sym_U_SQUOTE] = ACTIONS(4109), - [anon_sym_u8_SQUOTE] = ACTIONS(4109), - [anon_sym_SQUOTE] = ACTIONS(4109), - [anon_sym_L_DQUOTE] = ACTIONS(4109), - [anon_sym_u_DQUOTE] = ACTIONS(4109), - [anon_sym_U_DQUOTE] = ACTIONS(4109), - [anon_sym_u8_DQUOTE] = ACTIONS(4109), - [anon_sym_DQUOTE] = ACTIONS(4109), - [sym_true] = ACTIONS(4107), - [sym_false] = ACTIONS(4107), - [anon_sym_NULL] = ACTIONS(4107), - [anon_sym_nullptr] = ACTIONS(4107), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4107), - [anon_sym_decltype] = ACTIONS(4107), - [anon_sym_explicit] = ACTIONS(4107), - [anon_sym_template] = ACTIONS(4107), - [anon_sym_operator] = ACTIONS(4107), - [anon_sym_try] = ACTIONS(4107), - [anon_sym_delete] = ACTIONS(4107), - [anon_sym_throw] = ACTIONS(4107), - [anon_sym_namespace] = ACTIONS(4107), - [anon_sym_static_assert] = ACTIONS(4107), - [anon_sym_concept] = ACTIONS(4107), - [anon_sym_co_return] = ACTIONS(4107), - [anon_sym_co_yield] = ACTIONS(4107), - [anon_sym_R_DQUOTE] = ACTIONS(4109), - [anon_sym_LR_DQUOTE] = ACTIONS(4109), - [anon_sym_uR_DQUOTE] = ACTIONS(4109), - [anon_sym_UR_DQUOTE] = ACTIONS(4109), - [anon_sym_u8R_DQUOTE] = ACTIONS(4109), - [anon_sym_co_await] = ACTIONS(4107), - [anon_sym_new] = ACTIONS(4107), - [anon_sym_requires] = ACTIONS(4107), - [anon_sym_CARET_CARET] = ACTIONS(4109), - [anon_sym_LBRACK_COLON] = ACTIONS(4109), - [sym_this] = ACTIONS(4107), - }, - [STATE(859)] = { - [sym_identifier] = ACTIONS(4138), - [aux_sym_preproc_include_token1] = ACTIONS(4138), - [aux_sym_preproc_def_token1] = ACTIONS(4138), - [aux_sym_preproc_if_token1] = ACTIONS(4138), - [aux_sym_preproc_if_token2] = ACTIONS(4138), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4138), - [sym_preproc_directive] = ACTIONS(4138), - [anon_sym_LPAREN2] = ACTIONS(4141), - [anon_sym_BANG] = ACTIONS(4141), - [anon_sym_TILDE] = ACTIONS(4141), - [anon_sym_DASH] = ACTIONS(4138), - [anon_sym_PLUS] = ACTIONS(4138), - [anon_sym_STAR] = ACTIONS(4141), - [anon_sym_AMP_AMP] = ACTIONS(4141), - [anon_sym_AMP] = ACTIONS(4138), - [anon_sym_SEMI] = ACTIONS(4141), - [anon_sym___extension__] = ACTIONS(4138), - [anon_sym_typedef] = ACTIONS(4138), - [anon_sym_virtual] = ACTIONS(4138), - [anon_sym_extern] = ACTIONS(4138), - [anon_sym___attribute__] = ACTIONS(4138), - [anon_sym___attribute] = ACTIONS(4138), - [anon_sym_using] = ACTIONS(4138), - [anon_sym_COLON_COLON] = ACTIONS(4141), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4141), - [anon_sym___declspec] = ACTIONS(4138), - [anon_sym___based] = ACTIONS(4138), - [anon_sym___cdecl] = ACTIONS(4138), - [anon_sym___clrcall] = ACTIONS(4138), - [anon_sym___stdcall] = ACTIONS(4138), - [anon_sym___fastcall] = ACTIONS(4138), - [anon_sym___thiscall] = ACTIONS(4138), - [anon_sym___vectorcall] = ACTIONS(4138), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_signed] = ACTIONS(4138), - [anon_sym_unsigned] = ACTIONS(4138), - [anon_sym_long] = ACTIONS(4138), - [anon_sym_short] = ACTIONS(4138), - [anon_sym_LBRACK] = ACTIONS(4138), - [anon_sym_static] = ACTIONS(4138), - [anon_sym_register] = ACTIONS(4138), - [anon_sym_inline] = ACTIONS(4138), - [anon_sym___inline] = ACTIONS(4138), - [anon_sym___inline__] = ACTIONS(4138), - [anon_sym___forceinline] = ACTIONS(4138), - [anon_sym_thread_local] = ACTIONS(4138), - [anon_sym___thread] = ACTIONS(4138), - [anon_sym_const] = ACTIONS(4138), - [anon_sym_constexpr] = ACTIONS(4138), - [anon_sym_volatile] = ACTIONS(4138), - [anon_sym_restrict] = ACTIONS(4138), - [anon_sym___restrict__] = ACTIONS(4138), - [anon_sym__Atomic] = ACTIONS(4138), - [anon_sym__Noreturn] = ACTIONS(4138), - [anon_sym_noreturn] = ACTIONS(4138), - [anon_sym__Nonnull] = ACTIONS(4138), - [anon_sym_mutable] = ACTIONS(4138), - [anon_sym_constinit] = ACTIONS(4138), - [anon_sym_consteval] = ACTIONS(4138), - [anon_sym_alignas] = ACTIONS(4138), - [anon_sym__Alignas] = ACTIONS(4138), - [sym_primitive_type] = ACTIONS(4138), - [anon_sym_enum] = ACTIONS(4138), - [anon_sym_class] = ACTIONS(4138), - [anon_sym_struct] = ACTIONS(4138), - [anon_sym_union] = ACTIONS(4138), - [anon_sym_if] = ACTIONS(4138), - [anon_sym_switch] = ACTIONS(4138), - [anon_sym_case] = ACTIONS(4138), - [anon_sym_default] = ACTIONS(4138), - [anon_sym_while] = ACTIONS(4138), - [anon_sym_do] = ACTIONS(4138), - [anon_sym_for] = ACTIONS(4138), - [anon_sym_return] = ACTIONS(4138), - [anon_sym_break] = ACTIONS(4138), - [anon_sym_continue] = ACTIONS(4138), - [anon_sym_goto] = ACTIONS(4138), - [anon_sym___try] = ACTIONS(4138), - [anon_sym___leave] = ACTIONS(4138), - [anon_sym_not] = ACTIONS(4138), - [anon_sym_compl] = ACTIONS(4138), - [anon_sym_DASH_DASH] = ACTIONS(4141), - [anon_sym_PLUS_PLUS] = ACTIONS(4141), - [anon_sym_sizeof] = ACTIONS(4138), - [anon_sym___alignof__] = ACTIONS(4138), - [anon_sym___alignof] = ACTIONS(4138), - [anon_sym__alignof] = ACTIONS(4138), - [anon_sym_alignof] = ACTIONS(4138), - [anon_sym__Alignof] = ACTIONS(4138), - [anon_sym_offsetof] = ACTIONS(4138), - [anon_sym__Generic] = ACTIONS(4138), - [anon_sym_typename] = ACTIONS(4138), - [anon_sym_asm] = ACTIONS(4138), - [anon_sym___asm__] = ACTIONS(4138), - [anon_sym___asm] = ACTIONS(4138), - [sym_number_literal] = ACTIONS(4141), - [anon_sym_L_SQUOTE] = ACTIONS(4141), - [anon_sym_u_SQUOTE] = ACTIONS(4141), - [anon_sym_U_SQUOTE] = ACTIONS(4141), - [anon_sym_u8_SQUOTE] = ACTIONS(4141), - [anon_sym_SQUOTE] = ACTIONS(4141), - [anon_sym_L_DQUOTE] = ACTIONS(4141), - [anon_sym_u_DQUOTE] = ACTIONS(4141), - [anon_sym_U_DQUOTE] = ACTIONS(4141), - [anon_sym_u8_DQUOTE] = ACTIONS(4141), - [anon_sym_DQUOTE] = ACTIONS(4141), - [sym_true] = ACTIONS(4138), - [sym_false] = ACTIONS(4138), - [anon_sym_NULL] = ACTIONS(4138), - [anon_sym_nullptr] = ACTIONS(4138), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4138), - [anon_sym_decltype] = ACTIONS(4138), - [anon_sym_explicit] = ACTIONS(4138), - [anon_sym_template] = ACTIONS(4138), - [anon_sym_operator] = ACTIONS(4138), - [anon_sym_try] = ACTIONS(4138), - [anon_sym_delete] = ACTIONS(4138), - [anon_sym_throw] = ACTIONS(4138), - [anon_sym_namespace] = ACTIONS(4138), - [anon_sym_static_assert] = ACTIONS(4138), - [anon_sym_concept] = ACTIONS(4138), - [anon_sym_co_return] = ACTIONS(4138), - [anon_sym_co_yield] = ACTIONS(4138), - [anon_sym_R_DQUOTE] = ACTIONS(4141), - [anon_sym_LR_DQUOTE] = ACTIONS(4141), - [anon_sym_uR_DQUOTE] = ACTIONS(4141), - [anon_sym_UR_DQUOTE] = ACTIONS(4141), - [anon_sym_u8R_DQUOTE] = ACTIONS(4141), - [anon_sym_co_await] = ACTIONS(4138), - [anon_sym_new] = ACTIONS(4138), - [anon_sym_requires] = ACTIONS(4138), - [anon_sym_CARET_CARET] = ACTIONS(4141), - [anon_sym_LBRACK_COLON] = ACTIONS(4141), - [sym_this] = ACTIONS(4138), - }, - [STATE(860)] = { - [sym_identifier] = ACTIONS(4096), - [aux_sym_preproc_include_token1] = ACTIONS(4096), - [aux_sym_preproc_def_token1] = ACTIONS(4096), - [aux_sym_preproc_if_token1] = ACTIONS(4096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), - [sym_preproc_directive] = ACTIONS(4096), - [anon_sym_LPAREN2] = ACTIONS(4098), - [anon_sym_BANG] = ACTIONS(4098), - [anon_sym_TILDE] = ACTIONS(4098), - [anon_sym_DASH] = ACTIONS(4096), - [anon_sym_PLUS] = ACTIONS(4096), - [anon_sym_STAR] = ACTIONS(4098), - [anon_sym_AMP_AMP] = ACTIONS(4098), - [anon_sym_AMP] = ACTIONS(4096), - [anon_sym_SEMI] = ACTIONS(4098), - [anon_sym___extension__] = ACTIONS(4096), - [anon_sym_typedef] = ACTIONS(4096), - [anon_sym_virtual] = ACTIONS(4096), - [anon_sym_extern] = ACTIONS(4096), - [anon_sym___attribute__] = ACTIONS(4096), - [anon_sym___attribute] = ACTIONS(4096), - [anon_sym_using] = ACTIONS(4096), - [anon_sym_COLON_COLON] = ACTIONS(4098), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4098), - [anon_sym___declspec] = ACTIONS(4096), - [anon_sym___based] = ACTIONS(4096), - [anon_sym___cdecl] = ACTIONS(4096), - [anon_sym___clrcall] = ACTIONS(4096), - [anon_sym___stdcall] = ACTIONS(4096), - [anon_sym___fastcall] = ACTIONS(4096), - [anon_sym___thiscall] = ACTIONS(4096), - [anon_sym___vectorcall] = ACTIONS(4096), - [anon_sym_LBRACE] = ACTIONS(4098), - [anon_sym_RBRACE] = ACTIONS(4098), - [anon_sym_signed] = ACTIONS(4096), - [anon_sym_unsigned] = ACTIONS(4096), - [anon_sym_long] = ACTIONS(4096), - [anon_sym_short] = ACTIONS(4096), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_static] = ACTIONS(4096), - [anon_sym_register] = ACTIONS(4096), - [anon_sym_inline] = ACTIONS(4096), - [anon_sym___inline] = ACTIONS(4096), - [anon_sym___inline__] = ACTIONS(4096), - [anon_sym___forceinline] = ACTIONS(4096), - [anon_sym_thread_local] = ACTIONS(4096), - [anon_sym___thread] = ACTIONS(4096), - [anon_sym_const] = ACTIONS(4096), - [anon_sym_constexpr] = ACTIONS(4096), - [anon_sym_volatile] = ACTIONS(4096), - [anon_sym_restrict] = ACTIONS(4096), - [anon_sym___restrict__] = ACTIONS(4096), - [anon_sym__Atomic] = ACTIONS(4096), - [anon_sym__Noreturn] = ACTIONS(4096), - [anon_sym_noreturn] = ACTIONS(4096), - [anon_sym__Nonnull] = ACTIONS(4096), - [anon_sym_mutable] = ACTIONS(4096), - [anon_sym_constinit] = ACTIONS(4096), - [anon_sym_consteval] = ACTIONS(4096), - [anon_sym_alignas] = ACTIONS(4096), - [anon_sym__Alignas] = ACTIONS(4096), - [sym_primitive_type] = ACTIONS(4096), - [anon_sym_enum] = ACTIONS(4096), - [anon_sym_class] = ACTIONS(4096), - [anon_sym_struct] = ACTIONS(4096), - [anon_sym_union] = ACTIONS(4096), - [anon_sym_if] = ACTIONS(4096), - [anon_sym_switch] = ACTIONS(4096), - [anon_sym_case] = ACTIONS(4096), - [anon_sym_default] = ACTIONS(4096), - [anon_sym_while] = ACTIONS(4096), - [anon_sym_do] = ACTIONS(4096), - [anon_sym_for] = ACTIONS(4096), - [anon_sym_return] = ACTIONS(4096), - [anon_sym_break] = ACTIONS(4096), - [anon_sym_continue] = ACTIONS(4096), - [anon_sym_goto] = ACTIONS(4096), - [anon_sym___try] = ACTIONS(4096), - [anon_sym___leave] = ACTIONS(4096), - [anon_sym_not] = ACTIONS(4096), - [anon_sym_compl] = ACTIONS(4096), - [anon_sym_DASH_DASH] = ACTIONS(4098), - [anon_sym_PLUS_PLUS] = ACTIONS(4098), - [anon_sym_sizeof] = ACTIONS(4096), - [anon_sym___alignof__] = ACTIONS(4096), - [anon_sym___alignof] = ACTIONS(4096), - [anon_sym__alignof] = ACTIONS(4096), - [anon_sym_alignof] = ACTIONS(4096), - [anon_sym__Alignof] = ACTIONS(4096), - [anon_sym_offsetof] = ACTIONS(4096), - [anon_sym__Generic] = ACTIONS(4096), - [anon_sym_typename] = ACTIONS(4096), - [anon_sym_asm] = ACTIONS(4096), - [anon_sym___asm__] = ACTIONS(4096), - [anon_sym___asm] = ACTIONS(4096), - [sym_number_literal] = ACTIONS(4098), - [anon_sym_L_SQUOTE] = ACTIONS(4098), - [anon_sym_u_SQUOTE] = ACTIONS(4098), - [anon_sym_U_SQUOTE] = ACTIONS(4098), - [anon_sym_u8_SQUOTE] = ACTIONS(4098), - [anon_sym_SQUOTE] = ACTIONS(4098), - [anon_sym_L_DQUOTE] = ACTIONS(4098), - [anon_sym_u_DQUOTE] = ACTIONS(4098), - [anon_sym_U_DQUOTE] = ACTIONS(4098), - [anon_sym_u8_DQUOTE] = ACTIONS(4098), - [anon_sym_DQUOTE] = ACTIONS(4098), - [sym_true] = ACTIONS(4096), - [sym_false] = ACTIONS(4096), - [anon_sym_NULL] = ACTIONS(4096), - [anon_sym_nullptr] = ACTIONS(4096), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4096), - [anon_sym_decltype] = ACTIONS(4096), - [anon_sym_explicit] = ACTIONS(4096), - [anon_sym_template] = ACTIONS(4096), - [anon_sym_operator] = ACTIONS(4096), - [anon_sym_try] = ACTIONS(4096), - [anon_sym_delete] = ACTIONS(4096), - [anon_sym_throw] = ACTIONS(4096), - [anon_sym_namespace] = ACTIONS(4096), - [anon_sym_static_assert] = ACTIONS(4096), - [anon_sym_concept] = ACTIONS(4096), - [anon_sym_co_return] = ACTIONS(4096), - [anon_sym_co_yield] = ACTIONS(4096), - [anon_sym_R_DQUOTE] = ACTIONS(4098), - [anon_sym_LR_DQUOTE] = ACTIONS(4098), - [anon_sym_uR_DQUOTE] = ACTIONS(4098), - [anon_sym_UR_DQUOTE] = ACTIONS(4098), - [anon_sym_u8R_DQUOTE] = ACTIONS(4098), - [anon_sym_co_await] = ACTIONS(4096), - [anon_sym_new] = ACTIONS(4096), - [anon_sym_requires] = ACTIONS(4096), - [anon_sym_CARET_CARET] = ACTIONS(4098), - [anon_sym_LBRACK_COLON] = ACTIONS(4098), - [sym_this] = ACTIONS(4096), - }, - [STATE(861)] = { - [sym_identifier] = ACTIONS(4054), - [aux_sym_preproc_include_token1] = ACTIONS(4054), - [aux_sym_preproc_def_token1] = ACTIONS(4054), - [aux_sym_preproc_if_token1] = ACTIONS(4054), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4054), - [sym_preproc_directive] = ACTIONS(4054), - [anon_sym_LPAREN2] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_TILDE] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4054), - [anon_sym_PLUS] = ACTIONS(4054), - [anon_sym_STAR] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4054), - [anon_sym_SEMI] = ACTIONS(4056), - [anon_sym___extension__] = ACTIONS(4054), - [anon_sym_typedef] = ACTIONS(4054), - [anon_sym_virtual] = ACTIONS(4054), - [anon_sym_extern] = ACTIONS(4054), - [anon_sym___attribute__] = ACTIONS(4054), - [anon_sym___attribute] = ACTIONS(4054), - [anon_sym_using] = ACTIONS(4054), - [anon_sym_COLON_COLON] = ACTIONS(4056), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4056), - [anon_sym___declspec] = ACTIONS(4054), - [anon_sym___based] = ACTIONS(4054), - [anon_sym___cdecl] = ACTIONS(4054), - [anon_sym___clrcall] = ACTIONS(4054), - [anon_sym___stdcall] = ACTIONS(4054), - [anon_sym___fastcall] = ACTIONS(4054), - [anon_sym___thiscall] = ACTIONS(4054), - [anon_sym___vectorcall] = ACTIONS(4054), - [anon_sym_LBRACE] = ACTIONS(4056), - [anon_sym_RBRACE] = ACTIONS(4056), - [anon_sym_signed] = ACTIONS(4054), - [anon_sym_unsigned] = ACTIONS(4054), - [anon_sym_long] = ACTIONS(4054), - [anon_sym_short] = ACTIONS(4054), - [anon_sym_LBRACK] = ACTIONS(4054), - [anon_sym_static] = ACTIONS(4054), - [anon_sym_register] = ACTIONS(4054), - [anon_sym_inline] = ACTIONS(4054), - [anon_sym___inline] = ACTIONS(4054), - [anon_sym___inline__] = ACTIONS(4054), - [anon_sym___forceinline] = ACTIONS(4054), - [anon_sym_thread_local] = ACTIONS(4054), - [anon_sym___thread] = ACTIONS(4054), - [anon_sym_const] = ACTIONS(4054), - [anon_sym_constexpr] = ACTIONS(4054), - [anon_sym_volatile] = ACTIONS(4054), - [anon_sym_restrict] = ACTIONS(4054), - [anon_sym___restrict__] = ACTIONS(4054), - [anon_sym__Atomic] = ACTIONS(4054), - [anon_sym__Noreturn] = ACTIONS(4054), - [anon_sym_noreturn] = ACTIONS(4054), - [anon_sym__Nonnull] = ACTIONS(4054), - [anon_sym_mutable] = ACTIONS(4054), - [anon_sym_constinit] = ACTIONS(4054), - [anon_sym_consteval] = ACTIONS(4054), - [anon_sym_alignas] = ACTIONS(4054), - [anon_sym__Alignas] = ACTIONS(4054), - [sym_primitive_type] = ACTIONS(4054), - [anon_sym_enum] = ACTIONS(4054), - [anon_sym_class] = ACTIONS(4054), - [anon_sym_struct] = ACTIONS(4054), - [anon_sym_union] = ACTIONS(4054), - [anon_sym_if] = ACTIONS(4054), - [anon_sym_switch] = ACTIONS(4054), - [anon_sym_case] = ACTIONS(4054), - [anon_sym_default] = ACTIONS(4054), - [anon_sym_while] = ACTIONS(4054), - [anon_sym_do] = ACTIONS(4054), - [anon_sym_for] = ACTIONS(4054), - [anon_sym_return] = ACTIONS(4054), - [anon_sym_break] = ACTIONS(4054), - [anon_sym_continue] = ACTIONS(4054), - [anon_sym_goto] = ACTIONS(4054), - [anon_sym___try] = ACTIONS(4054), - [anon_sym___leave] = ACTIONS(4054), - [anon_sym_not] = ACTIONS(4054), - [anon_sym_compl] = ACTIONS(4054), - [anon_sym_DASH_DASH] = ACTIONS(4056), - [anon_sym_PLUS_PLUS] = ACTIONS(4056), - [anon_sym_sizeof] = ACTIONS(4054), - [anon_sym___alignof__] = ACTIONS(4054), - [anon_sym___alignof] = ACTIONS(4054), - [anon_sym__alignof] = ACTIONS(4054), - [anon_sym_alignof] = ACTIONS(4054), - [anon_sym__Alignof] = ACTIONS(4054), - [anon_sym_offsetof] = ACTIONS(4054), - [anon_sym__Generic] = ACTIONS(4054), - [anon_sym_typename] = ACTIONS(4054), - [anon_sym_asm] = ACTIONS(4054), - [anon_sym___asm__] = ACTIONS(4054), - [anon_sym___asm] = ACTIONS(4054), - [sym_number_literal] = ACTIONS(4056), - [anon_sym_L_SQUOTE] = ACTIONS(4056), - [anon_sym_u_SQUOTE] = ACTIONS(4056), - [anon_sym_U_SQUOTE] = ACTIONS(4056), - [anon_sym_u8_SQUOTE] = ACTIONS(4056), - [anon_sym_SQUOTE] = ACTIONS(4056), - [anon_sym_L_DQUOTE] = ACTIONS(4056), - [anon_sym_u_DQUOTE] = ACTIONS(4056), - [anon_sym_U_DQUOTE] = ACTIONS(4056), - [anon_sym_u8_DQUOTE] = ACTIONS(4056), - [anon_sym_DQUOTE] = ACTIONS(4056), - [sym_true] = ACTIONS(4054), - [sym_false] = ACTIONS(4054), - [anon_sym_NULL] = ACTIONS(4054), - [anon_sym_nullptr] = ACTIONS(4054), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4054), - [anon_sym_decltype] = ACTIONS(4054), - [anon_sym_explicit] = ACTIONS(4054), - [anon_sym_template] = ACTIONS(4054), - [anon_sym_operator] = ACTIONS(4054), - [anon_sym_try] = ACTIONS(4054), - [anon_sym_delete] = ACTIONS(4054), - [anon_sym_throw] = ACTIONS(4054), - [anon_sym_namespace] = ACTIONS(4054), - [anon_sym_static_assert] = ACTIONS(4054), - [anon_sym_concept] = ACTIONS(4054), - [anon_sym_co_return] = ACTIONS(4054), - [anon_sym_co_yield] = ACTIONS(4054), - [anon_sym_R_DQUOTE] = ACTIONS(4056), - [anon_sym_LR_DQUOTE] = ACTIONS(4056), - [anon_sym_uR_DQUOTE] = ACTIONS(4056), - [anon_sym_UR_DQUOTE] = ACTIONS(4056), - [anon_sym_u8R_DQUOTE] = ACTIONS(4056), - [anon_sym_co_await] = ACTIONS(4054), - [anon_sym_new] = ACTIONS(4054), - [anon_sym_requires] = ACTIONS(4054), - [anon_sym_CARET_CARET] = ACTIONS(4056), - [anon_sym_LBRACK_COLON] = ACTIONS(4056), - [sym_this] = ACTIONS(4054), - }, - [STATE(862)] = { - [sym_identifier] = ACTIONS(4058), - [aux_sym_preproc_include_token1] = ACTIONS(4058), - [aux_sym_preproc_def_token1] = ACTIONS(4058), - [aux_sym_preproc_if_token1] = ACTIONS(4058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4058), - [sym_preproc_directive] = ACTIONS(4058), - [anon_sym_LPAREN2] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(4060), - [anon_sym_TILDE] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4058), - [anon_sym_STAR] = ACTIONS(4060), - [anon_sym_AMP_AMP] = ACTIONS(4060), - [anon_sym_AMP] = ACTIONS(4058), - [anon_sym_SEMI] = ACTIONS(4060), - [anon_sym___extension__] = ACTIONS(4058), - [anon_sym_typedef] = ACTIONS(4058), - [anon_sym_virtual] = ACTIONS(4058), - [anon_sym_extern] = ACTIONS(4058), - [anon_sym___attribute__] = ACTIONS(4058), - [anon_sym___attribute] = ACTIONS(4058), - [anon_sym_using] = ACTIONS(4058), - [anon_sym_COLON_COLON] = ACTIONS(4060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4060), - [anon_sym___declspec] = ACTIONS(4058), - [anon_sym___based] = ACTIONS(4058), - [anon_sym___cdecl] = ACTIONS(4058), - [anon_sym___clrcall] = ACTIONS(4058), - [anon_sym___stdcall] = ACTIONS(4058), - [anon_sym___fastcall] = ACTIONS(4058), - [anon_sym___thiscall] = ACTIONS(4058), - [anon_sym___vectorcall] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4060), - [anon_sym_RBRACE] = ACTIONS(4060), - [anon_sym_signed] = ACTIONS(4058), - [anon_sym_unsigned] = ACTIONS(4058), - [anon_sym_long] = ACTIONS(4058), - [anon_sym_short] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4058), - [anon_sym_static] = ACTIONS(4058), - [anon_sym_register] = ACTIONS(4058), - [anon_sym_inline] = ACTIONS(4058), - [anon_sym___inline] = ACTIONS(4058), - [anon_sym___inline__] = ACTIONS(4058), - [anon_sym___forceinline] = ACTIONS(4058), - [anon_sym_thread_local] = ACTIONS(4058), - [anon_sym___thread] = ACTIONS(4058), - [anon_sym_const] = ACTIONS(4058), - [anon_sym_constexpr] = ACTIONS(4058), - [anon_sym_volatile] = ACTIONS(4058), - [anon_sym_restrict] = ACTIONS(4058), - [anon_sym___restrict__] = ACTIONS(4058), - [anon_sym__Atomic] = ACTIONS(4058), - [anon_sym__Noreturn] = ACTIONS(4058), - [anon_sym_noreturn] = ACTIONS(4058), - [anon_sym__Nonnull] = ACTIONS(4058), - [anon_sym_mutable] = ACTIONS(4058), - [anon_sym_constinit] = ACTIONS(4058), - [anon_sym_consteval] = ACTIONS(4058), - [anon_sym_alignas] = ACTIONS(4058), - [anon_sym__Alignas] = ACTIONS(4058), - [sym_primitive_type] = ACTIONS(4058), - [anon_sym_enum] = ACTIONS(4058), - [anon_sym_class] = ACTIONS(4058), - [anon_sym_struct] = ACTIONS(4058), - [anon_sym_union] = ACTIONS(4058), - [anon_sym_if] = ACTIONS(4058), - [anon_sym_switch] = ACTIONS(4058), - [anon_sym_case] = ACTIONS(4058), - [anon_sym_default] = ACTIONS(4058), - [anon_sym_while] = ACTIONS(4058), - [anon_sym_do] = ACTIONS(4058), - [anon_sym_for] = ACTIONS(4058), - [anon_sym_return] = ACTIONS(4058), - [anon_sym_break] = ACTIONS(4058), - [anon_sym_continue] = ACTIONS(4058), - [anon_sym_goto] = ACTIONS(4058), - [anon_sym___try] = ACTIONS(4058), - [anon_sym___leave] = ACTIONS(4058), - [anon_sym_not] = ACTIONS(4058), - [anon_sym_compl] = ACTIONS(4058), - [anon_sym_DASH_DASH] = ACTIONS(4060), - [anon_sym_PLUS_PLUS] = ACTIONS(4060), - [anon_sym_sizeof] = ACTIONS(4058), - [anon_sym___alignof__] = ACTIONS(4058), - [anon_sym___alignof] = ACTIONS(4058), - [anon_sym__alignof] = ACTIONS(4058), - [anon_sym_alignof] = ACTIONS(4058), - [anon_sym__Alignof] = ACTIONS(4058), - [anon_sym_offsetof] = ACTIONS(4058), - [anon_sym__Generic] = ACTIONS(4058), - [anon_sym_typename] = ACTIONS(4058), - [anon_sym_asm] = ACTIONS(4058), - [anon_sym___asm__] = ACTIONS(4058), - [anon_sym___asm] = ACTIONS(4058), - [sym_number_literal] = ACTIONS(4060), - [anon_sym_L_SQUOTE] = ACTIONS(4060), - [anon_sym_u_SQUOTE] = ACTIONS(4060), - [anon_sym_U_SQUOTE] = ACTIONS(4060), - [anon_sym_u8_SQUOTE] = ACTIONS(4060), - [anon_sym_SQUOTE] = ACTIONS(4060), - [anon_sym_L_DQUOTE] = ACTIONS(4060), - [anon_sym_u_DQUOTE] = ACTIONS(4060), - [anon_sym_U_DQUOTE] = ACTIONS(4060), - [anon_sym_u8_DQUOTE] = ACTIONS(4060), - [anon_sym_DQUOTE] = ACTIONS(4060), - [sym_true] = ACTIONS(4058), - [sym_false] = ACTIONS(4058), - [anon_sym_NULL] = ACTIONS(4058), - [anon_sym_nullptr] = ACTIONS(4058), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4058), - [anon_sym_decltype] = ACTIONS(4058), - [anon_sym_explicit] = ACTIONS(4058), - [anon_sym_template] = ACTIONS(4058), - [anon_sym_operator] = ACTIONS(4058), - [anon_sym_try] = ACTIONS(4058), - [anon_sym_delete] = ACTIONS(4058), - [anon_sym_throw] = ACTIONS(4058), - [anon_sym_namespace] = ACTIONS(4058), - [anon_sym_static_assert] = ACTIONS(4058), - [anon_sym_concept] = ACTIONS(4058), - [anon_sym_co_return] = ACTIONS(4058), - [anon_sym_co_yield] = ACTIONS(4058), - [anon_sym_R_DQUOTE] = ACTIONS(4060), - [anon_sym_LR_DQUOTE] = ACTIONS(4060), - [anon_sym_uR_DQUOTE] = ACTIONS(4060), - [anon_sym_UR_DQUOTE] = ACTIONS(4060), - [anon_sym_u8R_DQUOTE] = ACTIONS(4060), - [anon_sym_co_await] = ACTIONS(4058), - [anon_sym_new] = ACTIONS(4058), - [anon_sym_requires] = ACTIONS(4058), - [anon_sym_CARET_CARET] = ACTIONS(4060), - [anon_sym_LBRACK_COLON] = ACTIONS(4060), - [sym_this] = ACTIONS(4058), - }, - [STATE(863)] = { - [sym_identifier] = ACTIONS(4062), - [aux_sym_preproc_include_token1] = ACTIONS(4062), - [aux_sym_preproc_def_token1] = ACTIONS(4062), - [aux_sym_preproc_if_token1] = ACTIONS(4062), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4062), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4062), - [sym_preproc_directive] = ACTIONS(4062), - [anon_sym_LPAREN2] = ACTIONS(4064), - [anon_sym_BANG] = ACTIONS(4064), - [anon_sym_TILDE] = ACTIONS(4064), - [anon_sym_DASH] = ACTIONS(4062), - [anon_sym_PLUS] = ACTIONS(4062), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_AMP_AMP] = ACTIONS(4064), - [anon_sym_AMP] = ACTIONS(4062), - [anon_sym_SEMI] = ACTIONS(4064), - [anon_sym___extension__] = ACTIONS(4062), - [anon_sym_typedef] = ACTIONS(4062), - [anon_sym_virtual] = ACTIONS(4062), - [anon_sym_extern] = ACTIONS(4062), - [anon_sym___attribute__] = ACTIONS(4062), - [anon_sym___attribute] = ACTIONS(4062), - [anon_sym_using] = ACTIONS(4062), - [anon_sym_COLON_COLON] = ACTIONS(4064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4064), - [anon_sym___declspec] = ACTIONS(4062), - [anon_sym___based] = ACTIONS(4062), - [anon_sym___cdecl] = ACTIONS(4062), - [anon_sym___clrcall] = ACTIONS(4062), - [anon_sym___stdcall] = ACTIONS(4062), - [anon_sym___fastcall] = ACTIONS(4062), - [anon_sym___thiscall] = ACTIONS(4062), - [anon_sym___vectorcall] = ACTIONS(4062), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_RBRACE] = ACTIONS(4064), - [anon_sym_signed] = ACTIONS(4062), - [anon_sym_unsigned] = ACTIONS(4062), - [anon_sym_long] = ACTIONS(4062), - [anon_sym_short] = ACTIONS(4062), - [anon_sym_LBRACK] = ACTIONS(4062), - [anon_sym_static] = ACTIONS(4062), - [anon_sym_register] = ACTIONS(4062), - [anon_sym_inline] = ACTIONS(4062), - [anon_sym___inline] = ACTIONS(4062), - [anon_sym___inline__] = ACTIONS(4062), - [anon_sym___forceinline] = ACTIONS(4062), - [anon_sym_thread_local] = ACTIONS(4062), - [anon_sym___thread] = ACTIONS(4062), - [anon_sym_const] = ACTIONS(4062), - [anon_sym_constexpr] = ACTIONS(4062), - [anon_sym_volatile] = ACTIONS(4062), - [anon_sym_restrict] = ACTIONS(4062), - [anon_sym___restrict__] = ACTIONS(4062), - [anon_sym__Atomic] = ACTIONS(4062), - [anon_sym__Noreturn] = ACTIONS(4062), - [anon_sym_noreturn] = ACTIONS(4062), - [anon_sym__Nonnull] = ACTIONS(4062), - [anon_sym_mutable] = ACTIONS(4062), - [anon_sym_constinit] = ACTIONS(4062), - [anon_sym_consteval] = ACTIONS(4062), - [anon_sym_alignas] = ACTIONS(4062), - [anon_sym__Alignas] = ACTIONS(4062), - [sym_primitive_type] = ACTIONS(4062), - [anon_sym_enum] = ACTIONS(4062), - [anon_sym_class] = ACTIONS(4062), - [anon_sym_struct] = ACTIONS(4062), - [anon_sym_union] = ACTIONS(4062), - [anon_sym_if] = ACTIONS(4062), - [anon_sym_switch] = ACTIONS(4062), - [anon_sym_case] = ACTIONS(4062), - [anon_sym_default] = ACTIONS(4062), - [anon_sym_while] = ACTIONS(4062), - [anon_sym_do] = ACTIONS(4062), - [anon_sym_for] = ACTIONS(4062), - [anon_sym_return] = ACTIONS(4062), - [anon_sym_break] = ACTIONS(4062), - [anon_sym_continue] = ACTIONS(4062), - [anon_sym_goto] = ACTIONS(4062), - [anon_sym___try] = ACTIONS(4062), - [anon_sym___leave] = ACTIONS(4062), - [anon_sym_not] = ACTIONS(4062), - [anon_sym_compl] = ACTIONS(4062), - [anon_sym_DASH_DASH] = ACTIONS(4064), - [anon_sym_PLUS_PLUS] = ACTIONS(4064), - [anon_sym_sizeof] = ACTIONS(4062), - [anon_sym___alignof__] = ACTIONS(4062), - [anon_sym___alignof] = ACTIONS(4062), - [anon_sym__alignof] = ACTIONS(4062), - [anon_sym_alignof] = ACTIONS(4062), - [anon_sym__Alignof] = ACTIONS(4062), - [anon_sym_offsetof] = ACTIONS(4062), - [anon_sym__Generic] = ACTIONS(4062), - [anon_sym_typename] = ACTIONS(4062), - [anon_sym_asm] = ACTIONS(4062), - [anon_sym___asm__] = ACTIONS(4062), - [anon_sym___asm] = ACTIONS(4062), - [sym_number_literal] = ACTIONS(4064), - [anon_sym_L_SQUOTE] = ACTIONS(4064), - [anon_sym_u_SQUOTE] = ACTIONS(4064), - [anon_sym_U_SQUOTE] = ACTIONS(4064), - [anon_sym_u8_SQUOTE] = ACTIONS(4064), - [anon_sym_SQUOTE] = ACTIONS(4064), - [anon_sym_L_DQUOTE] = ACTIONS(4064), - [anon_sym_u_DQUOTE] = ACTIONS(4064), - [anon_sym_U_DQUOTE] = ACTIONS(4064), - [anon_sym_u8_DQUOTE] = ACTIONS(4064), - [anon_sym_DQUOTE] = ACTIONS(4064), - [sym_true] = ACTIONS(4062), - [sym_false] = ACTIONS(4062), - [anon_sym_NULL] = ACTIONS(4062), - [anon_sym_nullptr] = ACTIONS(4062), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4062), - [anon_sym_decltype] = ACTIONS(4062), - [anon_sym_explicit] = ACTIONS(4062), - [anon_sym_template] = ACTIONS(4062), - [anon_sym_operator] = ACTIONS(4062), - [anon_sym_try] = ACTIONS(4062), - [anon_sym_delete] = ACTIONS(4062), - [anon_sym_throw] = ACTIONS(4062), - [anon_sym_namespace] = ACTIONS(4062), - [anon_sym_static_assert] = ACTIONS(4062), - [anon_sym_concept] = ACTIONS(4062), - [anon_sym_co_return] = ACTIONS(4062), - [anon_sym_co_yield] = ACTIONS(4062), - [anon_sym_R_DQUOTE] = ACTIONS(4064), - [anon_sym_LR_DQUOTE] = ACTIONS(4064), - [anon_sym_uR_DQUOTE] = ACTIONS(4064), - [anon_sym_UR_DQUOTE] = ACTIONS(4064), - [anon_sym_u8R_DQUOTE] = ACTIONS(4064), - [anon_sym_co_await] = ACTIONS(4062), - [anon_sym_new] = ACTIONS(4062), - [anon_sym_requires] = ACTIONS(4062), - [anon_sym_CARET_CARET] = ACTIONS(4064), - [anon_sym_LBRACK_COLON] = ACTIONS(4064), - [sym_this] = ACTIONS(4062), - }, - [STATE(864)] = { - [sym_identifier] = ACTIONS(4066), - [aux_sym_preproc_include_token1] = ACTIONS(4066), - [aux_sym_preproc_def_token1] = ACTIONS(4066), - [aux_sym_preproc_if_token1] = ACTIONS(4066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4066), - [sym_preproc_directive] = ACTIONS(4066), - [anon_sym_LPAREN2] = ACTIONS(4068), - [anon_sym_BANG] = ACTIONS(4068), - [anon_sym_TILDE] = ACTIONS(4068), - [anon_sym_DASH] = ACTIONS(4066), - [anon_sym_PLUS] = ACTIONS(4066), - [anon_sym_STAR] = ACTIONS(4068), - [anon_sym_AMP_AMP] = ACTIONS(4068), - [anon_sym_AMP] = ACTIONS(4066), - [anon_sym_SEMI] = ACTIONS(4068), - [anon_sym___extension__] = ACTIONS(4066), - [anon_sym_typedef] = ACTIONS(4066), - [anon_sym_virtual] = ACTIONS(4066), - [anon_sym_extern] = ACTIONS(4066), - [anon_sym___attribute__] = ACTIONS(4066), - [anon_sym___attribute] = ACTIONS(4066), - [anon_sym_using] = ACTIONS(4066), - [anon_sym_COLON_COLON] = ACTIONS(4068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4068), - [anon_sym___declspec] = ACTIONS(4066), - [anon_sym___based] = ACTIONS(4066), - [anon_sym___cdecl] = ACTIONS(4066), - [anon_sym___clrcall] = ACTIONS(4066), - [anon_sym___stdcall] = ACTIONS(4066), - [anon_sym___fastcall] = ACTIONS(4066), - [anon_sym___thiscall] = ACTIONS(4066), - [anon_sym___vectorcall] = ACTIONS(4066), - [anon_sym_LBRACE] = ACTIONS(4068), - [anon_sym_RBRACE] = ACTIONS(4068), - [anon_sym_signed] = ACTIONS(4066), - [anon_sym_unsigned] = ACTIONS(4066), - [anon_sym_long] = ACTIONS(4066), - [anon_sym_short] = ACTIONS(4066), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_static] = ACTIONS(4066), - [anon_sym_register] = ACTIONS(4066), - [anon_sym_inline] = ACTIONS(4066), - [anon_sym___inline] = ACTIONS(4066), - [anon_sym___inline__] = ACTIONS(4066), - [anon_sym___forceinline] = ACTIONS(4066), - [anon_sym_thread_local] = ACTIONS(4066), - [anon_sym___thread] = ACTIONS(4066), - [anon_sym_const] = ACTIONS(4066), - [anon_sym_constexpr] = ACTIONS(4066), - [anon_sym_volatile] = ACTIONS(4066), - [anon_sym_restrict] = ACTIONS(4066), - [anon_sym___restrict__] = ACTIONS(4066), - [anon_sym__Atomic] = ACTIONS(4066), - [anon_sym__Noreturn] = ACTIONS(4066), - [anon_sym_noreturn] = ACTIONS(4066), - [anon_sym__Nonnull] = ACTIONS(4066), - [anon_sym_mutable] = ACTIONS(4066), - [anon_sym_constinit] = ACTIONS(4066), - [anon_sym_consteval] = ACTIONS(4066), - [anon_sym_alignas] = ACTIONS(4066), - [anon_sym__Alignas] = ACTIONS(4066), - [sym_primitive_type] = ACTIONS(4066), - [anon_sym_enum] = ACTIONS(4066), - [anon_sym_class] = ACTIONS(4066), - [anon_sym_struct] = ACTIONS(4066), - [anon_sym_union] = ACTIONS(4066), - [anon_sym_if] = ACTIONS(4066), - [anon_sym_switch] = ACTIONS(4066), - [anon_sym_case] = ACTIONS(4066), - [anon_sym_default] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(4066), - [anon_sym_do] = ACTIONS(4066), - [anon_sym_for] = ACTIONS(4066), - [anon_sym_return] = ACTIONS(4066), - [anon_sym_break] = ACTIONS(4066), - [anon_sym_continue] = ACTIONS(4066), - [anon_sym_goto] = ACTIONS(4066), - [anon_sym___try] = ACTIONS(4066), - [anon_sym___leave] = ACTIONS(4066), - [anon_sym_not] = ACTIONS(4066), - [anon_sym_compl] = ACTIONS(4066), - [anon_sym_DASH_DASH] = ACTIONS(4068), - [anon_sym_PLUS_PLUS] = ACTIONS(4068), - [anon_sym_sizeof] = ACTIONS(4066), - [anon_sym___alignof__] = ACTIONS(4066), - [anon_sym___alignof] = ACTIONS(4066), - [anon_sym__alignof] = ACTIONS(4066), - [anon_sym_alignof] = ACTIONS(4066), - [anon_sym__Alignof] = ACTIONS(4066), - [anon_sym_offsetof] = ACTIONS(4066), - [anon_sym__Generic] = ACTIONS(4066), - [anon_sym_typename] = ACTIONS(4066), - [anon_sym_asm] = ACTIONS(4066), - [anon_sym___asm__] = ACTIONS(4066), - [anon_sym___asm] = ACTIONS(4066), - [sym_number_literal] = ACTIONS(4068), - [anon_sym_L_SQUOTE] = ACTIONS(4068), - [anon_sym_u_SQUOTE] = ACTIONS(4068), - [anon_sym_U_SQUOTE] = ACTIONS(4068), - [anon_sym_u8_SQUOTE] = ACTIONS(4068), - [anon_sym_SQUOTE] = ACTIONS(4068), - [anon_sym_L_DQUOTE] = ACTIONS(4068), - [anon_sym_u_DQUOTE] = ACTIONS(4068), - [anon_sym_U_DQUOTE] = ACTIONS(4068), - [anon_sym_u8_DQUOTE] = ACTIONS(4068), - [anon_sym_DQUOTE] = ACTIONS(4068), - [sym_true] = ACTIONS(4066), - [sym_false] = ACTIONS(4066), - [anon_sym_NULL] = ACTIONS(4066), - [anon_sym_nullptr] = ACTIONS(4066), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4066), - [anon_sym_decltype] = ACTIONS(4066), - [anon_sym_explicit] = ACTIONS(4066), - [anon_sym_template] = ACTIONS(4066), - [anon_sym_operator] = ACTIONS(4066), - [anon_sym_try] = ACTIONS(4066), - [anon_sym_delete] = ACTIONS(4066), - [anon_sym_throw] = ACTIONS(4066), - [anon_sym_namespace] = ACTIONS(4066), - [anon_sym_static_assert] = ACTIONS(4066), - [anon_sym_concept] = ACTIONS(4066), - [anon_sym_co_return] = ACTIONS(4066), - [anon_sym_co_yield] = ACTIONS(4066), - [anon_sym_R_DQUOTE] = ACTIONS(4068), - [anon_sym_LR_DQUOTE] = ACTIONS(4068), - [anon_sym_uR_DQUOTE] = ACTIONS(4068), - [anon_sym_UR_DQUOTE] = ACTIONS(4068), - [anon_sym_u8R_DQUOTE] = ACTIONS(4068), - [anon_sym_co_await] = ACTIONS(4066), - [anon_sym_new] = ACTIONS(4066), - [anon_sym_requires] = ACTIONS(4066), - [anon_sym_CARET_CARET] = ACTIONS(4068), - [anon_sym_LBRACK_COLON] = ACTIONS(4068), - [sym_this] = ACTIONS(4066), - }, - [STATE(865)] = { - [sym_identifier] = ACTIONS(4144), - [aux_sym_preproc_include_token1] = ACTIONS(4144), - [aux_sym_preproc_def_token1] = ACTIONS(4144), - [aux_sym_preproc_if_token1] = ACTIONS(4144), - [aux_sym_preproc_if_token2] = ACTIONS(4144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4144), - [sym_preproc_directive] = ACTIONS(4144), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_TILDE] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4144), - [anon_sym_STAR] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_AMP] = ACTIONS(4144), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_typedef] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_using] = ACTIONS(4144), - [anon_sym_COLON_COLON] = ACTIONS(4146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4146), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym___cdecl] = ACTIONS(4144), - [anon_sym___clrcall] = ACTIONS(4144), - [anon_sym___stdcall] = ACTIONS(4144), - [anon_sym___fastcall] = ACTIONS(4144), - [anon_sym___thiscall] = ACTIONS(4144), - [anon_sym___vectorcall] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4146), - [anon_sym_signed] = ACTIONS(4144), - [anon_sym_unsigned] = ACTIONS(4144), - [anon_sym_long] = ACTIONS(4144), - [anon_sym_short] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [sym_primitive_type] = ACTIONS(4144), - [anon_sym_enum] = ACTIONS(4144), - [anon_sym_class] = ACTIONS(4144), - [anon_sym_struct] = ACTIONS(4144), - [anon_sym_union] = ACTIONS(4144), - [anon_sym_if] = ACTIONS(4144), - [anon_sym_switch] = ACTIONS(4144), - [anon_sym_case] = ACTIONS(4144), - [anon_sym_default] = ACTIONS(4144), - [anon_sym_while] = ACTIONS(4144), - [anon_sym_do] = ACTIONS(4144), - [anon_sym_for] = ACTIONS(4144), - [anon_sym_return] = ACTIONS(4144), - [anon_sym_break] = ACTIONS(4144), - [anon_sym_continue] = ACTIONS(4144), - [anon_sym_goto] = ACTIONS(4144), - [anon_sym___try] = ACTIONS(4144), - [anon_sym___leave] = ACTIONS(4144), - [anon_sym_not] = ACTIONS(4144), - [anon_sym_compl] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_sizeof] = ACTIONS(4144), - [anon_sym___alignof__] = ACTIONS(4144), - [anon_sym___alignof] = ACTIONS(4144), - [anon_sym__alignof] = ACTIONS(4144), - [anon_sym_alignof] = ACTIONS(4144), - [anon_sym__Alignof] = ACTIONS(4144), - [anon_sym_offsetof] = ACTIONS(4144), - [anon_sym__Generic] = ACTIONS(4144), - [anon_sym_typename] = ACTIONS(4144), - [anon_sym_asm] = ACTIONS(4144), - [anon_sym___asm__] = ACTIONS(4144), - [anon_sym___asm] = ACTIONS(4144), - [sym_number_literal] = ACTIONS(4146), - [anon_sym_L_SQUOTE] = ACTIONS(4146), - [anon_sym_u_SQUOTE] = ACTIONS(4146), - [anon_sym_U_SQUOTE] = ACTIONS(4146), - [anon_sym_u8_SQUOTE] = ACTIONS(4146), - [anon_sym_SQUOTE] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(4146), - [anon_sym_u_DQUOTE] = ACTIONS(4146), - [anon_sym_U_DQUOTE] = ACTIONS(4146), - [anon_sym_u8_DQUOTE] = ACTIONS(4146), - [anon_sym_DQUOTE] = ACTIONS(4146), - [sym_true] = ACTIONS(4144), - [sym_false] = ACTIONS(4144), - [anon_sym_NULL] = ACTIONS(4144), - [anon_sym_nullptr] = ACTIONS(4144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_explicit] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_try] = ACTIONS(4144), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_throw] = ACTIONS(4144), - [anon_sym_namespace] = ACTIONS(4144), - [anon_sym_static_assert] = ACTIONS(4144), - [anon_sym_concept] = ACTIONS(4144), - [anon_sym_co_return] = ACTIONS(4144), - [anon_sym_co_yield] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4144), - [anon_sym_new] = ACTIONS(4144), - [anon_sym_requires] = ACTIONS(4144), - [anon_sym_CARET_CARET] = ACTIONS(4146), - [anon_sym_LBRACK_COLON] = ACTIONS(4146), - [sym_this] = ACTIONS(4144), - }, - [STATE(866)] = { - [sym_identifier] = ACTIONS(4144), - [aux_sym_preproc_include_token1] = ACTIONS(4144), - [aux_sym_preproc_def_token1] = ACTIONS(4144), - [aux_sym_preproc_if_token1] = ACTIONS(4144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4144), - [sym_preproc_directive] = ACTIONS(4144), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_TILDE] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4144), - [anon_sym_STAR] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_AMP] = ACTIONS(4144), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_typedef] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_using] = ACTIONS(4144), - [anon_sym_COLON_COLON] = ACTIONS(4146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4146), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym___cdecl] = ACTIONS(4144), - [anon_sym___clrcall] = ACTIONS(4144), - [anon_sym___stdcall] = ACTIONS(4144), - [anon_sym___fastcall] = ACTIONS(4144), - [anon_sym___thiscall] = ACTIONS(4144), - [anon_sym___vectorcall] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4146), - [anon_sym_RBRACE] = ACTIONS(4146), - [anon_sym_signed] = ACTIONS(4144), - [anon_sym_unsigned] = ACTIONS(4144), - [anon_sym_long] = ACTIONS(4144), - [anon_sym_short] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [sym_primitive_type] = ACTIONS(4144), - [anon_sym_enum] = ACTIONS(4144), - [anon_sym_class] = ACTIONS(4144), - [anon_sym_struct] = ACTIONS(4144), - [anon_sym_union] = ACTIONS(4144), - [anon_sym_if] = ACTIONS(4144), - [anon_sym_switch] = ACTIONS(4144), - [anon_sym_case] = ACTIONS(4144), - [anon_sym_default] = ACTIONS(4144), - [anon_sym_while] = ACTIONS(4144), - [anon_sym_do] = ACTIONS(4144), - [anon_sym_for] = ACTIONS(4144), - [anon_sym_return] = ACTIONS(4144), - [anon_sym_break] = ACTIONS(4144), - [anon_sym_continue] = ACTIONS(4144), - [anon_sym_goto] = ACTIONS(4144), - [anon_sym___try] = ACTIONS(4144), - [anon_sym___leave] = ACTIONS(4144), - [anon_sym_not] = ACTIONS(4144), - [anon_sym_compl] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_sizeof] = ACTIONS(4144), - [anon_sym___alignof__] = ACTIONS(4144), - [anon_sym___alignof] = ACTIONS(4144), - [anon_sym__alignof] = ACTIONS(4144), - [anon_sym_alignof] = ACTIONS(4144), - [anon_sym__Alignof] = ACTIONS(4144), - [anon_sym_offsetof] = ACTIONS(4144), - [anon_sym__Generic] = ACTIONS(4144), - [anon_sym_typename] = ACTIONS(4144), - [anon_sym_asm] = ACTIONS(4144), - [anon_sym___asm__] = ACTIONS(4144), - [anon_sym___asm] = ACTIONS(4144), - [sym_number_literal] = ACTIONS(4146), - [anon_sym_L_SQUOTE] = ACTIONS(4146), - [anon_sym_u_SQUOTE] = ACTIONS(4146), - [anon_sym_U_SQUOTE] = ACTIONS(4146), - [anon_sym_u8_SQUOTE] = ACTIONS(4146), - [anon_sym_SQUOTE] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(4146), - [anon_sym_u_DQUOTE] = ACTIONS(4146), - [anon_sym_U_DQUOTE] = ACTIONS(4146), - [anon_sym_u8_DQUOTE] = ACTIONS(4146), - [anon_sym_DQUOTE] = ACTIONS(4146), - [sym_true] = ACTIONS(4144), - [sym_false] = ACTIONS(4144), - [anon_sym_NULL] = ACTIONS(4144), - [anon_sym_nullptr] = ACTIONS(4144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_explicit] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_try] = ACTIONS(4144), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_throw] = ACTIONS(4144), - [anon_sym_namespace] = ACTIONS(4144), - [anon_sym_static_assert] = ACTIONS(4144), - [anon_sym_concept] = ACTIONS(4144), - [anon_sym_co_return] = ACTIONS(4144), - [anon_sym_co_yield] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4144), - [anon_sym_new] = ACTIONS(4144), - [anon_sym_requires] = ACTIONS(4144), - [anon_sym_CARET_CARET] = ACTIONS(4146), - [anon_sym_LBRACK_COLON] = ACTIONS(4146), - [sym_this] = ACTIONS(4144), - }, - [STATE(867)] = { - [sym_identifier] = ACTIONS(4046), - [aux_sym_preproc_include_token1] = ACTIONS(4046), - [aux_sym_preproc_def_token1] = ACTIONS(4046), - [aux_sym_preproc_if_token1] = ACTIONS(4046), - [aux_sym_preproc_if_token2] = ACTIONS(4046), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4046), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4046), - [sym_preproc_directive] = ACTIONS(4046), - [anon_sym_LPAREN2] = ACTIONS(4048), - [anon_sym_BANG] = ACTIONS(4048), - [anon_sym_TILDE] = ACTIONS(4048), - [anon_sym_DASH] = ACTIONS(4046), - [anon_sym_PLUS] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(4048), - [anon_sym_AMP_AMP] = ACTIONS(4048), - [anon_sym_AMP] = ACTIONS(4046), - [anon_sym_SEMI] = ACTIONS(4048), - [anon_sym___extension__] = ACTIONS(4046), - [anon_sym_typedef] = ACTIONS(4046), - [anon_sym_virtual] = ACTIONS(4046), - [anon_sym_extern] = ACTIONS(4046), - [anon_sym___attribute__] = ACTIONS(4046), - [anon_sym___attribute] = ACTIONS(4046), - [anon_sym_using] = ACTIONS(4046), - [anon_sym_COLON_COLON] = ACTIONS(4048), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4048), - [anon_sym___declspec] = ACTIONS(4046), - [anon_sym___based] = ACTIONS(4046), - [anon_sym___cdecl] = ACTIONS(4046), - [anon_sym___clrcall] = ACTIONS(4046), - [anon_sym___stdcall] = ACTIONS(4046), - [anon_sym___fastcall] = ACTIONS(4046), - [anon_sym___thiscall] = ACTIONS(4046), - [anon_sym___vectorcall] = ACTIONS(4046), - [anon_sym_LBRACE] = ACTIONS(4048), - [anon_sym_signed] = ACTIONS(4046), - [anon_sym_unsigned] = ACTIONS(4046), - [anon_sym_long] = ACTIONS(4046), - [anon_sym_short] = ACTIONS(4046), - [anon_sym_LBRACK] = ACTIONS(4046), - [anon_sym_static] = ACTIONS(4046), - [anon_sym_register] = ACTIONS(4046), - [anon_sym_inline] = ACTIONS(4046), - [anon_sym___inline] = ACTIONS(4046), - [anon_sym___inline__] = ACTIONS(4046), - [anon_sym___forceinline] = ACTIONS(4046), - [anon_sym_thread_local] = ACTIONS(4046), - [anon_sym___thread] = ACTIONS(4046), - [anon_sym_const] = ACTIONS(4046), - [anon_sym_constexpr] = ACTIONS(4046), - [anon_sym_volatile] = ACTIONS(4046), - [anon_sym_restrict] = ACTIONS(4046), - [anon_sym___restrict__] = ACTIONS(4046), - [anon_sym__Atomic] = ACTIONS(4046), - [anon_sym__Noreturn] = ACTIONS(4046), - [anon_sym_noreturn] = ACTIONS(4046), - [anon_sym__Nonnull] = ACTIONS(4046), - [anon_sym_mutable] = ACTIONS(4046), - [anon_sym_constinit] = ACTIONS(4046), - [anon_sym_consteval] = ACTIONS(4046), - [anon_sym_alignas] = ACTIONS(4046), - [anon_sym__Alignas] = ACTIONS(4046), - [sym_primitive_type] = ACTIONS(4046), - [anon_sym_enum] = ACTIONS(4046), - [anon_sym_class] = ACTIONS(4046), - [anon_sym_struct] = ACTIONS(4046), - [anon_sym_union] = ACTIONS(4046), - [anon_sym_if] = ACTIONS(4046), - [anon_sym_switch] = ACTIONS(4046), - [anon_sym_case] = ACTIONS(4046), - [anon_sym_default] = ACTIONS(4046), - [anon_sym_while] = ACTIONS(4046), - [anon_sym_do] = ACTIONS(4046), - [anon_sym_for] = ACTIONS(4046), - [anon_sym_return] = ACTIONS(4046), - [anon_sym_break] = ACTIONS(4046), - [anon_sym_continue] = ACTIONS(4046), - [anon_sym_goto] = ACTIONS(4046), - [anon_sym___try] = ACTIONS(4046), - [anon_sym___leave] = ACTIONS(4046), - [anon_sym_not] = ACTIONS(4046), - [anon_sym_compl] = ACTIONS(4046), - [anon_sym_DASH_DASH] = ACTIONS(4048), - [anon_sym_PLUS_PLUS] = ACTIONS(4048), - [anon_sym_sizeof] = ACTIONS(4046), - [anon_sym___alignof__] = ACTIONS(4046), - [anon_sym___alignof] = ACTIONS(4046), - [anon_sym__alignof] = ACTIONS(4046), - [anon_sym_alignof] = ACTIONS(4046), - [anon_sym__Alignof] = ACTIONS(4046), - [anon_sym_offsetof] = ACTIONS(4046), - [anon_sym__Generic] = ACTIONS(4046), - [anon_sym_typename] = ACTIONS(4046), - [anon_sym_asm] = ACTIONS(4046), - [anon_sym___asm__] = ACTIONS(4046), - [anon_sym___asm] = ACTIONS(4046), - [sym_number_literal] = ACTIONS(4048), - [anon_sym_L_SQUOTE] = ACTIONS(4048), - [anon_sym_u_SQUOTE] = ACTIONS(4048), - [anon_sym_U_SQUOTE] = ACTIONS(4048), - [anon_sym_u8_SQUOTE] = ACTIONS(4048), - [anon_sym_SQUOTE] = ACTIONS(4048), - [anon_sym_L_DQUOTE] = ACTIONS(4048), - [anon_sym_u_DQUOTE] = ACTIONS(4048), - [anon_sym_U_DQUOTE] = ACTIONS(4048), - [anon_sym_u8_DQUOTE] = ACTIONS(4048), - [anon_sym_DQUOTE] = ACTIONS(4048), - [sym_true] = ACTIONS(4046), - [sym_false] = ACTIONS(4046), - [anon_sym_NULL] = ACTIONS(4046), - [anon_sym_nullptr] = ACTIONS(4046), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4046), - [anon_sym_decltype] = ACTIONS(4046), - [anon_sym_explicit] = ACTIONS(4046), - [anon_sym_template] = ACTIONS(4046), - [anon_sym_operator] = ACTIONS(4046), - [anon_sym_try] = ACTIONS(4046), - [anon_sym_delete] = ACTIONS(4046), - [anon_sym_throw] = ACTIONS(4046), - [anon_sym_namespace] = ACTIONS(4046), - [anon_sym_static_assert] = ACTIONS(4046), - [anon_sym_concept] = ACTIONS(4046), - [anon_sym_co_return] = ACTIONS(4046), - [anon_sym_co_yield] = ACTIONS(4046), - [anon_sym_R_DQUOTE] = ACTIONS(4048), - [anon_sym_LR_DQUOTE] = ACTIONS(4048), - [anon_sym_uR_DQUOTE] = ACTIONS(4048), - [anon_sym_UR_DQUOTE] = ACTIONS(4048), - [anon_sym_u8R_DQUOTE] = ACTIONS(4048), - [anon_sym_co_await] = ACTIONS(4046), - [anon_sym_new] = ACTIONS(4046), - [anon_sym_requires] = ACTIONS(4046), - [anon_sym_CARET_CARET] = ACTIONS(4048), - [anon_sym_LBRACK_COLON] = ACTIONS(4048), - [sym_this] = ACTIONS(4046), + [STATE(722)] = { + [sym_identifier] = ACTIONS(4104), + [aux_sym_preproc_include_token1] = ACTIONS(4104), + [aux_sym_preproc_def_token1] = ACTIONS(4104), + [aux_sym_preproc_if_token1] = ACTIONS(4104), + [aux_sym_preproc_if_token2] = ACTIONS(4104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4104), + [sym_preproc_directive] = ACTIONS(4104), + [anon_sym_LPAREN2] = ACTIONS(4106), + [anon_sym_BANG] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4104), + [anon_sym_STAR] = ACTIONS(4106), + [anon_sym_AMP_AMP] = ACTIONS(4106), + [anon_sym_AMP] = ACTIONS(4104), + [anon_sym_SEMI] = ACTIONS(4106), + [anon_sym___extension__] = ACTIONS(4104), + [anon_sym_typedef] = ACTIONS(4104), + [anon_sym_virtual] = ACTIONS(4104), + [anon_sym_extern] = ACTIONS(4104), + [anon_sym___attribute__] = ACTIONS(4104), + [anon_sym___attribute] = ACTIONS(4104), + [anon_sym_using] = ACTIONS(4104), + [anon_sym_COLON_COLON] = ACTIONS(4106), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4106), + [anon_sym___declspec] = ACTIONS(4104), + [anon_sym___based] = ACTIONS(4104), + [anon_sym___cdecl] = ACTIONS(4104), + [anon_sym___clrcall] = ACTIONS(4104), + [anon_sym___stdcall] = ACTIONS(4104), + [anon_sym___fastcall] = ACTIONS(4104), + [anon_sym___thiscall] = ACTIONS(4104), + [anon_sym___vectorcall] = ACTIONS(4104), + [anon_sym_LBRACE] = ACTIONS(4106), + [anon_sym_signed] = ACTIONS(4104), + [anon_sym_unsigned] = ACTIONS(4104), + [anon_sym_long] = ACTIONS(4104), + [anon_sym_short] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_static] = ACTIONS(4104), + [anon_sym_register] = ACTIONS(4104), + [anon_sym_inline] = ACTIONS(4104), + [anon_sym___inline] = ACTIONS(4104), + [anon_sym___inline__] = ACTIONS(4104), + [anon_sym___forceinline] = ACTIONS(4104), + [anon_sym_thread_local] = ACTIONS(4104), + [anon_sym___thread] = ACTIONS(4104), + [anon_sym_const] = ACTIONS(4104), + [anon_sym_constexpr] = ACTIONS(4104), + [anon_sym_volatile] = ACTIONS(4104), + [anon_sym_restrict] = ACTIONS(4104), + [anon_sym___restrict__] = ACTIONS(4104), + [anon_sym__Atomic] = ACTIONS(4104), + [anon_sym__Noreturn] = ACTIONS(4104), + [anon_sym_noreturn] = ACTIONS(4104), + [anon_sym__Nonnull] = ACTIONS(4104), + [anon_sym_mutable] = ACTIONS(4104), + [anon_sym_constinit] = ACTIONS(4104), + [anon_sym_consteval] = ACTIONS(4104), + [anon_sym_alignas] = ACTIONS(4104), + [anon_sym__Alignas] = ACTIONS(4104), + [sym_primitive_type] = ACTIONS(4104), + [anon_sym_enum] = ACTIONS(4104), + [anon_sym_class] = ACTIONS(4104), + [anon_sym_struct] = ACTIONS(4104), + [anon_sym_union] = ACTIONS(4104), + [anon_sym_if] = ACTIONS(4104), + [anon_sym_switch] = ACTIONS(4104), + [anon_sym_case] = ACTIONS(4104), + [anon_sym_default] = ACTIONS(4104), + [anon_sym_while] = ACTIONS(4104), + [anon_sym_do] = ACTIONS(4104), + [anon_sym_for] = ACTIONS(4104), + [anon_sym_return] = ACTIONS(4104), + [anon_sym_break] = ACTIONS(4104), + [anon_sym_continue] = ACTIONS(4104), + [anon_sym_goto] = ACTIONS(4104), + [anon_sym___try] = ACTIONS(4104), + [anon_sym___leave] = ACTIONS(4104), + [anon_sym_not] = ACTIONS(4104), + [anon_sym_compl] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4106), + [anon_sym_PLUS_PLUS] = ACTIONS(4106), + [anon_sym_sizeof] = ACTIONS(4104), + [anon_sym___alignof__] = ACTIONS(4104), + [anon_sym___alignof] = ACTIONS(4104), + [anon_sym__alignof] = ACTIONS(4104), + [anon_sym_alignof] = ACTIONS(4104), + [anon_sym__Alignof] = ACTIONS(4104), + [anon_sym_offsetof] = ACTIONS(4104), + [anon_sym__Generic] = ACTIONS(4104), + [anon_sym_typename] = ACTIONS(4104), + [anon_sym_asm] = ACTIONS(4104), + [anon_sym___asm__] = ACTIONS(4104), + [anon_sym___asm] = ACTIONS(4104), + [sym_number_literal] = ACTIONS(4106), + [anon_sym_L_SQUOTE] = ACTIONS(4106), + [anon_sym_u_SQUOTE] = ACTIONS(4106), + [anon_sym_U_SQUOTE] = ACTIONS(4106), + [anon_sym_u8_SQUOTE] = ACTIONS(4106), + [anon_sym_SQUOTE] = ACTIONS(4106), + [anon_sym_L_DQUOTE] = ACTIONS(4106), + [anon_sym_u_DQUOTE] = ACTIONS(4106), + [anon_sym_U_DQUOTE] = ACTIONS(4106), + [anon_sym_u8_DQUOTE] = ACTIONS(4106), + [anon_sym_DQUOTE] = ACTIONS(4106), + [sym_true] = ACTIONS(4104), + [sym_false] = ACTIONS(4104), + [anon_sym_NULL] = ACTIONS(4104), + [anon_sym_nullptr] = ACTIONS(4104), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4104), + [anon_sym_decltype] = ACTIONS(4104), + [anon_sym_explicit] = ACTIONS(4104), + [anon_sym_export] = ACTIONS(4104), + [anon_sym_module] = ACTIONS(4104), + [anon_sym_import] = ACTIONS(4104), + [anon_sym_template] = ACTIONS(4104), + [anon_sym_operator] = ACTIONS(4104), + [anon_sym_try] = ACTIONS(4104), + [anon_sym_delete] = ACTIONS(4104), + [anon_sym_throw] = ACTIONS(4104), + [anon_sym_namespace] = ACTIONS(4104), + [anon_sym_static_assert] = ACTIONS(4104), + [anon_sym_concept] = ACTIONS(4104), + [anon_sym_co_return] = ACTIONS(4104), + [anon_sym_co_yield] = ACTIONS(4104), + [anon_sym_R_DQUOTE] = ACTIONS(4106), + [anon_sym_LR_DQUOTE] = ACTIONS(4106), + [anon_sym_uR_DQUOTE] = ACTIONS(4106), + [anon_sym_UR_DQUOTE] = ACTIONS(4106), + [anon_sym_u8R_DQUOTE] = ACTIONS(4106), + [anon_sym_co_await] = ACTIONS(4104), + [anon_sym_new] = ACTIONS(4104), + [anon_sym_requires] = ACTIONS(4104), + [anon_sym_CARET_CARET] = ACTIONS(4106), + [anon_sym_LBRACK_COLON] = ACTIONS(4106), + [sym_this] = ACTIONS(4104), }, - [STATE(868)] = { - [sym_identifier] = ACTIONS(4070), - [aux_sym_preproc_include_token1] = ACTIONS(4070), - [aux_sym_preproc_def_token1] = ACTIONS(4070), - [aux_sym_preproc_if_token1] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), - [sym_preproc_directive] = ACTIONS(4070), - [anon_sym_LPAREN2] = ACTIONS(4072), - [anon_sym_BANG] = ACTIONS(4072), - [anon_sym_TILDE] = ACTIONS(4072), - [anon_sym_DASH] = ACTIONS(4070), - [anon_sym_PLUS] = ACTIONS(4070), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4070), - [anon_sym_SEMI] = ACTIONS(4072), - [anon_sym___extension__] = ACTIONS(4070), - [anon_sym_typedef] = ACTIONS(4070), - [anon_sym_virtual] = ACTIONS(4070), - [anon_sym_extern] = ACTIONS(4070), - [anon_sym___attribute__] = ACTIONS(4070), - [anon_sym___attribute] = ACTIONS(4070), - [anon_sym_using] = ACTIONS(4070), - [anon_sym_COLON_COLON] = ACTIONS(4072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), - [anon_sym___declspec] = ACTIONS(4070), - [anon_sym___based] = ACTIONS(4070), - [anon_sym___cdecl] = ACTIONS(4070), - [anon_sym___clrcall] = ACTIONS(4070), - [anon_sym___stdcall] = ACTIONS(4070), - [anon_sym___fastcall] = ACTIONS(4070), - [anon_sym___thiscall] = ACTIONS(4070), - [anon_sym___vectorcall] = ACTIONS(4070), - [anon_sym_LBRACE] = ACTIONS(4072), - [anon_sym_RBRACE] = ACTIONS(4072), - [anon_sym_signed] = ACTIONS(4070), - [anon_sym_unsigned] = ACTIONS(4070), - [anon_sym_long] = ACTIONS(4070), - [anon_sym_short] = ACTIONS(4070), - [anon_sym_LBRACK] = ACTIONS(4070), - [anon_sym_static] = ACTIONS(4070), - [anon_sym_register] = ACTIONS(4070), - [anon_sym_inline] = ACTIONS(4070), - [anon_sym___inline] = ACTIONS(4070), - [anon_sym___inline__] = ACTIONS(4070), - [anon_sym___forceinline] = ACTIONS(4070), - [anon_sym_thread_local] = ACTIONS(4070), - [anon_sym___thread] = ACTIONS(4070), - [anon_sym_const] = ACTIONS(4070), - [anon_sym_constexpr] = ACTIONS(4070), - [anon_sym_volatile] = ACTIONS(4070), - [anon_sym_restrict] = ACTIONS(4070), - [anon_sym___restrict__] = ACTIONS(4070), - [anon_sym__Atomic] = ACTIONS(4070), - [anon_sym__Noreturn] = ACTIONS(4070), - [anon_sym_noreturn] = ACTIONS(4070), - [anon_sym__Nonnull] = ACTIONS(4070), - [anon_sym_mutable] = ACTIONS(4070), - [anon_sym_constinit] = ACTIONS(4070), - [anon_sym_consteval] = ACTIONS(4070), - [anon_sym_alignas] = ACTIONS(4070), - [anon_sym__Alignas] = ACTIONS(4070), - [sym_primitive_type] = ACTIONS(4070), - [anon_sym_enum] = ACTIONS(4070), - [anon_sym_class] = ACTIONS(4070), - [anon_sym_struct] = ACTIONS(4070), - [anon_sym_union] = ACTIONS(4070), - [anon_sym_if] = ACTIONS(4070), - [anon_sym_switch] = ACTIONS(4070), - [anon_sym_case] = ACTIONS(4070), - [anon_sym_default] = ACTIONS(4070), - [anon_sym_while] = ACTIONS(4070), - [anon_sym_do] = ACTIONS(4070), - [anon_sym_for] = ACTIONS(4070), - [anon_sym_return] = ACTIONS(4070), - [anon_sym_break] = ACTIONS(4070), - [anon_sym_continue] = ACTIONS(4070), - [anon_sym_goto] = ACTIONS(4070), - [anon_sym___try] = ACTIONS(4070), - [anon_sym___leave] = ACTIONS(4070), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_compl] = ACTIONS(4070), - [anon_sym_DASH_DASH] = ACTIONS(4072), - [anon_sym_PLUS_PLUS] = ACTIONS(4072), - [anon_sym_sizeof] = ACTIONS(4070), - [anon_sym___alignof__] = ACTIONS(4070), - [anon_sym___alignof] = ACTIONS(4070), - [anon_sym__alignof] = ACTIONS(4070), - [anon_sym_alignof] = ACTIONS(4070), - [anon_sym__Alignof] = ACTIONS(4070), - [anon_sym_offsetof] = ACTIONS(4070), - [anon_sym__Generic] = ACTIONS(4070), - [anon_sym_typename] = ACTIONS(4070), - [anon_sym_asm] = ACTIONS(4070), - [anon_sym___asm__] = ACTIONS(4070), - [anon_sym___asm] = ACTIONS(4070), - [sym_number_literal] = ACTIONS(4072), - [anon_sym_L_SQUOTE] = ACTIONS(4072), - [anon_sym_u_SQUOTE] = ACTIONS(4072), - [anon_sym_U_SQUOTE] = ACTIONS(4072), - [anon_sym_u8_SQUOTE] = ACTIONS(4072), - [anon_sym_SQUOTE] = ACTIONS(4072), - [anon_sym_L_DQUOTE] = ACTIONS(4072), - [anon_sym_u_DQUOTE] = ACTIONS(4072), - [anon_sym_U_DQUOTE] = ACTIONS(4072), - [anon_sym_u8_DQUOTE] = ACTIONS(4072), - [anon_sym_DQUOTE] = ACTIONS(4072), - [sym_true] = ACTIONS(4070), - [sym_false] = ACTIONS(4070), - [anon_sym_NULL] = ACTIONS(4070), - [anon_sym_nullptr] = ACTIONS(4070), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4070), - [anon_sym_decltype] = ACTIONS(4070), - [anon_sym_explicit] = ACTIONS(4070), - [anon_sym_template] = ACTIONS(4070), - [anon_sym_operator] = ACTIONS(4070), - [anon_sym_try] = ACTIONS(4070), - [anon_sym_delete] = ACTIONS(4070), - [anon_sym_throw] = ACTIONS(4070), - [anon_sym_namespace] = ACTIONS(4070), - [anon_sym_static_assert] = ACTIONS(4070), - [anon_sym_concept] = ACTIONS(4070), - [anon_sym_co_return] = ACTIONS(4070), - [anon_sym_co_yield] = ACTIONS(4070), - [anon_sym_R_DQUOTE] = ACTIONS(4072), - [anon_sym_LR_DQUOTE] = ACTIONS(4072), - [anon_sym_uR_DQUOTE] = ACTIONS(4072), - [anon_sym_UR_DQUOTE] = ACTIONS(4072), - [anon_sym_u8R_DQUOTE] = ACTIONS(4072), - [anon_sym_co_await] = ACTIONS(4070), - [anon_sym_new] = ACTIONS(4070), - [anon_sym_requires] = ACTIONS(4070), - [anon_sym_CARET_CARET] = ACTIONS(4072), - [anon_sym_LBRACK_COLON] = ACTIONS(4072), - [sym_this] = ACTIONS(4070), + [STATE(723)] = { + [sym_identifier] = ACTIONS(4108), + [aux_sym_preproc_include_token1] = ACTIONS(4108), + [aux_sym_preproc_def_token1] = ACTIONS(4108), + [aux_sym_preproc_if_token1] = ACTIONS(4108), + [aux_sym_preproc_if_token2] = ACTIONS(4108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4108), + [sym_preproc_directive] = ACTIONS(4108), + [anon_sym_LPAREN2] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4110), + [anon_sym_TILDE] = ACTIONS(4110), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_AMP] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym___extension__] = ACTIONS(4108), + [anon_sym_typedef] = ACTIONS(4108), + [anon_sym_virtual] = ACTIONS(4108), + [anon_sym_extern] = ACTIONS(4108), + [anon_sym___attribute__] = ACTIONS(4108), + [anon_sym___attribute] = ACTIONS(4108), + [anon_sym_using] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4110), + [anon_sym___declspec] = ACTIONS(4108), + [anon_sym___based] = ACTIONS(4108), + [anon_sym___cdecl] = ACTIONS(4108), + [anon_sym___clrcall] = ACTIONS(4108), + [anon_sym___stdcall] = ACTIONS(4108), + [anon_sym___fastcall] = ACTIONS(4108), + [anon_sym___thiscall] = ACTIONS(4108), + [anon_sym___vectorcall] = ACTIONS(4108), + [anon_sym_LBRACE] = ACTIONS(4110), + [anon_sym_signed] = ACTIONS(4108), + [anon_sym_unsigned] = ACTIONS(4108), + [anon_sym_long] = ACTIONS(4108), + [anon_sym_short] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_static] = ACTIONS(4108), + [anon_sym_register] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym___inline] = ACTIONS(4108), + [anon_sym___inline__] = ACTIONS(4108), + [anon_sym___forceinline] = ACTIONS(4108), + [anon_sym_thread_local] = ACTIONS(4108), + [anon_sym___thread] = ACTIONS(4108), + [anon_sym_const] = ACTIONS(4108), + [anon_sym_constexpr] = ACTIONS(4108), + [anon_sym_volatile] = ACTIONS(4108), + [anon_sym_restrict] = ACTIONS(4108), + [anon_sym___restrict__] = ACTIONS(4108), + [anon_sym__Atomic] = ACTIONS(4108), + [anon_sym__Noreturn] = ACTIONS(4108), + [anon_sym_noreturn] = ACTIONS(4108), + [anon_sym__Nonnull] = ACTIONS(4108), + [anon_sym_mutable] = ACTIONS(4108), + [anon_sym_constinit] = ACTIONS(4108), + [anon_sym_consteval] = ACTIONS(4108), + [anon_sym_alignas] = ACTIONS(4108), + [anon_sym__Alignas] = ACTIONS(4108), + [sym_primitive_type] = ACTIONS(4108), + [anon_sym_enum] = ACTIONS(4108), + [anon_sym_class] = ACTIONS(4108), + [anon_sym_struct] = ACTIONS(4108), + [anon_sym_union] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_switch] = ACTIONS(4108), + [anon_sym_case] = ACTIONS(4108), + [anon_sym_default] = ACTIONS(4108), + [anon_sym_while] = ACTIONS(4108), + [anon_sym_do] = ACTIONS(4108), + [anon_sym_for] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_goto] = ACTIONS(4108), + [anon_sym___try] = ACTIONS(4108), + [anon_sym___leave] = ACTIONS(4108), + [anon_sym_not] = ACTIONS(4108), + [anon_sym_compl] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_sizeof] = ACTIONS(4108), + [anon_sym___alignof__] = ACTIONS(4108), + [anon_sym___alignof] = ACTIONS(4108), + [anon_sym__alignof] = ACTIONS(4108), + [anon_sym_alignof] = ACTIONS(4108), + [anon_sym__Alignof] = ACTIONS(4108), + [anon_sym_offsetof] = ACTIONS(4108), + [anon_sym__Generic] = ACTIONS(4108), + [anon_sym_typename] = ACTIONS(4108), + [anon_sym_asm] = ACTIONS(4108), + [anon_sym___asm__] = ACTIONS(4108), + [anon_sym___asm] = ACTIONS(4108), + [sym_number_literal] = ACTIONS(4110), + [anon_sym_L_SQUOTE] = ACTIONS(4110), + [anon_sym_u_SQUOTE] = ACTIONS(4110), + [anon_sym_U_SQUOTE] = ACTIONS(4110), + [anon_sym_u8_SQUOTE] = ACTIONS(4110), + [anon_sym_SQUOTE] = ACTIONS(4110), + [anon_sym_L_DQUOTE] = ACTIONS(4110), + [anon_sym_u_DQUOTE] = ACTIONS(4110), + [anon_sym_U_DQUOTE] = ACTIONS(4110), + [anon_sym_u8_DQUOTE] = ACTIONS(4110), + [anon_sym_DQUOTE] = ACTIONS(4110), + [sym_true] = ACTIONS(4108), + [sym_false] = ACTIONS(4108), + [anon_sym_NULL] = ACTIONS(4108), + [anon_sym_nullptr] = ACTIONS(4108), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4108), + [anon_sym_decltype] = ACTIONS(4108), + [anon_sym_explicit] = ACTIONS(4108), + [anon_sym_export] = ACTIONS(4108), + [anon_sym_module] = ACTIONS(4108), + [anon_sym_import] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_delete] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_namespace] = ACTIONS(4108), + [anon_sym_static_assert] = ACTIONS(4108), + [anon_sym_concept] = ACTIONS(4108), + [anon_sym_co_return] = ACTIONS(4108), + [anon_sym_co_yield] = ACTIONS(4108), + [anon_sym_R_DQUOTE] = ACTIONS(4110), + [anon_sym_LR_DQUOTE] = ACTIONS(4110), + [anon_sym_uR_DQUOTE] = ACTIONS(4110), + [anon_sym_UR_DQUOTE] = ACTIONS(4110), + [anon_sym_u8R_DQUOTE] = ACTIONS(4110), + [anon_sym_co_await] = ACTIONS(4108), + [anon_sym_new] = ACTIONS(4108), + [anon_sym_requires] = ACTIONS(4108), + [anon_sym_CARET_CARET] = ACTIONS(4110), + [anon_sym_LBRACK_COLON] = ACTIONS(4110), + [sym_this] = ACTIONS(4108), }, - [STATE(869)] = { - [sym_identifier] = ACTIONS(4070), - [aux_sym_preproc_include_token1] = ACTIONS(4070), - [aux_sym_preproc_def_token1] = ACTIONS(4070), - [aux_sym_preproc_if_token1] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), - [sym_preproc_directive] = ACTIONS(4070), - [anon_sym_LPAREN2] = ACTIONS(4072), - [anon_sym_BANG] = ACTIONS(4072), - [anon_sym_TILDE] = ACTIONS(4072), - [anon_sym_DASH] = ACTIONS(4070), - [anon_sym_PLUS] = ACTIONS(4070), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4070), - [anon_sym_SEMI] = ACTIONS(4072), - [anon_sym___extension__] = ACTIONS(4070), - [anon_sym_typedef] = ACTIONS(4070), - [anon_sym_virtual] = ACTIONS(4070), - [anon_sym_extern] = ACTIONS(4070), - [anon_sym___attribute__] = ACTIONS(4070), - [anon_sym___attribute] = ACTIONS(4070), - [anon_sym_using] = ACTIONS(4070), - [anon_sym_COLON_COLON] = ACTIONS(4072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), - [anon_sym___declspec] = ACTIONS(4070), - [anon_sym___based] = ACTIONS(4070), - [anon_sym___cdecl] = ACTIONS(4070), - [anon_sym___clrcall] = ACTIONS(4070), - [anon_sym___stdcall] = ACTIONS(4070), - [anon_sym___fastcall] = ACTIONS(4070), - [anon_sym___thiscall] = ACTIONS(4070), - [anon_sym___vectorcall] = ACTIONS(4070), - [anon_sym_LBRACE] = ACTIONS(4072), - [anon_sym_RBRACE] = ACTIONS(4072), - [anon_sym_signed] = ACTIONS(4070), - [anon_sym_unsigned] = ACTIONS(4070), - [anon_sym_long] = ACTIONS(4070), - [anon_sym_short] = ACTIONS(4070), - [anon_sym_LBRACK] = ACTIONS(4070), - [anon_sym_static] = ACTIONS(4070), - [anon_sym_register] = ACTIONS(4070), - [anon_sym_inline] = ACTIONS(4070), - [anon_sym___inline] = ACTIONS(4070), - [anon_sym___inline__] = ACTIONS(4070), - [anon_sym___forceinline] = ACTIONS(4070), - [anon_sym_thread_local] = ACTIONS(4070), - [anon_sym___thread] = ACTIONS(4070), - [anon_sym_const] = ACTIONS(4070), - [anon_sym_constexpr] = ACTIONS(4070), - [anon_sym_volatile] = ACTIONS(4070), - [anon_sym_restrict] = ACTIONS(4070), - [anon_sym___restrict__] = ACTIONS(4070), - [anon_sym__Atomic] = ACTIONS(4070), - [anon_sym__Noreturn] = ACTIONS(4070), - [anon_sym_noreturn] = ACTIONS(4070), - [anon_sym__Nonnull] = ACTIONS(4070), - [anon_sym_mutable] = ACTIONS(4070), - [anon_sym_constinit] = ACTIONS(4070), - [anon_sym_consteval] = ACTIONS(4070), - [anon_sym_alignas] = ACTIONS(4070), - [anon_sym__Alignas] = ACTIONS(4070), - [sym_primitive_type] = ACTIONS(4070), - [anon_sym_enum] = ACTIONS(4070), - [anon_sym_class] = ACTIONS(4070), - [anon_sym_struct] = ACTIONS(4070), - [anon_sym_union] = ACTIONS(4070), - [anon_sym_if] = ACTIONS(4070), - [anon_sym_switch] = ACTIONS(4070), - [anon_sym_case] = ACTIONS(4070), - [anon_sym_default] = ACTIONS(4070), - [anon_sym_while] = ACTIONS(4070), - [anon_sym_do] = ACTIONS(4070), - [anon_sym_for] = ACTIONS(4070), - [anon_sym_return] = ACTIONS(4070), - [anon_sym_break] = ACTIONS(4070), - [anon_sym_continue] = ACTIONS(4070), - [anon_sym_goto] = ACTIONS(4070), - [anon_sym___try] = ACTIONS(4070), - [anon_sym___leave] = ACTIONS(4070), - [anon_sym_not] = ACTIONS(4070), - [anon_sym_compl] = ACTIONS(4070), - [anon_sym_DASH_DASH] = ACTIONS(4072), - [anon_sym_PLUS_PLUS] = ACTIONS(4072), - [anon_sym_sizeof] = ACTIONS(4070), - [anon_sym___alignof__] = ACTIONS(4070), - [anon_sym___alignof] = ACTIONS(4070), - [anon_sym__alignof] = ACTIONS(4070), - [anon_sym_alignof] = ACTIONS(4070), - [anon_sym__Alignof] = ACTIONS(4070), - [anon_sym_offsetof] = ACTIONS(4070), - [anon_sym__Generic] = ACTIONS(4070), - [anon_sym_typename] = ACTIONS(4070), - [anon_sym_asm] = ACTIONS(4070), - [anon_sym___asm__] = ACTIONS(4070), - [anon_sym___asm] = ACTIONS(4070), - [sym_number_literal] = ACTIONS(4072), - [anon_sym_L_SQUOTE] = ACTIONS(4072), - [anon_sym_u_SQUOTE] = ACTIONS(4072), - [anon_sym_U_SQUOTE] = ACTIONS(4072), - [anon_sym_u8_SQUOTE] = ACTIONS(4072), - [anon_sym_SQUOTE] = ACTIONS(4072), - [anon_sym_L_DQUOTE] = ACTIONS(4072), - [anon_sym_u_DQUOTE] = ACTIONS(4072), - [anon_sym_U_DQUOTE] = ACTIONS(4072), - [anon_sym_u8_DQUOTE] = ACTIONS(4072), - [anon_sym_DQUOTE] = ACTIONS(4072), - [sym_true] = ACTIONS(4070), - [sym_false] = ACTIONS(4070), - [anon_sym_NULL] = ACTIONS(4070), - [anon_sym_nullptr] = ACTIONS(4070), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4070), - [anon_sym_decltype] = ACTIONS(4070), - [anon_sym_explicit] = ACTIONS(4070), - [anon_sym_template] = ACTIONS(4070), - [anon_sym_operator] = ACTIONS(4070), - [anon_sym_try] = ACTIONS(4070), - [anon_sym_delete] = ACTIONS(4070), - [anon_sym_throw] = ACTIONS(4070), - [anon_sym_namespace] = ACTIONS(4070), - [anon_sym_static_assert] = ACTIONS(4070), - [anon_sym_concept] = ACTIONS(4070), - [anon_sym_co_return] = ACTIONS(4070), - [anon_sym_co_yield] = ACTIONS(4070), - [anon_sym_R_DQUOTE] = ACTIONS(4072), - [anon_sym_LR_DQUOTE] = ACTIONS(4072), - [anon_sym_uR_DQUOTE] = ACTIONS(4072), - [anon_sym_UR_DQUOTE] = ACTIONS(4072), - [anon_sym_u8R_DQUOTE] = ACTIONS(4072), - [anon_sym_co_await] = ACTIONS(4070), - [anon_sym_new] = ACTIONS(4070), - [anon_sym_requires] = ACTIONS(4070), - [anon_sym_CARET_CARET] = ACTIONS(4072), - [anon_sym_LBRACK_COLON] = ACTIONS(4072), - [sym_this] = ACTIONS(4070), + [STATE(724)] = { + [sym_identifier] = ACTIONS(4112), + [aux_sym_preproc_include_token1] = ACTIONS(4112), + [aux_sym_preproc_def_token1] = ACTIONS(4112), + [aux_sym_preproc_if_token1] = ACTIONS(4112), + [aux_sym_preproc_if_token2] = ACTIONS(4112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4112), + [sym_preproc_directive] = ACTIONS(4112), + [anon_sym_LPAREN2] = ACTIONS(4114), + [anon_sym_BANG] = ACTIONS(4114), + [anon_sym_TILDE] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4112), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_STAR] = ACTIONS(4114), + [anon_sym_AMP_AMP] = ACTIONS(4114), + [anon_sym_AMP] = ACTIONS(4112), + [anon_sym_SEMI] = ACTIONS(4114), + [anon_sym___extension__] = ACTIONS(4112), + [anon_sym_typedef] = ACTIONS(4112), + [anon_sym_virtual] = ACTIONS(4112), + [anon_sym_extern] = ACTIONS(4112), + [anon_sym___attribute__] = ACTIONS(4112), + [anon_sym___attribute] = ACTIONS(4112), + [anon_sym_using] = ACTIONS(4112), + [anon_sym_COLON_COLON] = ACTIONS(4114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4114), + [anon_sym___declspec] = ACTIONS(4112), + [anon_sym___based] = ACTIONS(4112), + [anon_sym___cdecl] = ACTIONS(4112), + [anon_sym___clrcall] = ACTIONS(4112), + [anon_sym___stdcall] = ACTIONS(4112), + [anon_sym___fastcall] = ACTIONS(4112), + [anon_sym___thiscall] = ACTIONS(4112), + [anon_sym___vectorcall] = ACTIONS(4112), + [anon_sym_LBRACE] = ACTIONS(4114), + [anon_sym_signed] = ACTIONS(4112), + [anon_sym_unsigned] = ACTIONS(4112), + [anon_sym_long] = ACTIONS(4112), + [anon_sym_short] = ACTIONS(4112), + [anon_sym_LBRACK] = ACTIONS(4112), + [anon_sym_static] = ACTIONS(4112), + [anon_sym_register] = ACTIONS(4112), + [anon_sym_inline] = ACTIONS(4112), + [anon_sym___inline] = ACTIONS(4112), + [anon_sym___inline__] = ACTIONS(4112), + [anon_sym___forceinline] = ACTIONS(4112), + [anon_sym_thread_local] = ACTIONS(4112), + [anon_sym___thread] = ACTIONS(4112), + [anon_sym_const] = ACTIONS(4112), + [anon_sym_constexpr] = ACTIONS(4112), + [anon_sym_volatile] = ACTIONS(4112), + [anon_sym_restrict] = ACTIONS(4112), + [anon_sym___restrict__] = ACTIONS(4112), + [anon_sym__Atomic] = ACTIONS(4112), + [anon_sym__Noreturn] = ACTIONS(4112), + [anon_sym_noreturn] = ACTIONS(4112), + [anon_sym__Nonnull] = ACTIONS(4112), + [anon_sym_mutable] = ACTIONS(4112), + [anon_sym_constinit] = ACTIONS(4112), + [anon_sym_consteval] = ACTIONS(4112), + [anon_sym_alignas] = ACTIONS(4112), + [anon_sym__Alignas] = ACTIONS(4112), + [sym_primitive_type] = ACTIONS(4112), + [anon_sym_enum] = ACTIONS(4112), + [anon_sym_class] = ACTIONS(4112), + [anon_sym_struct] = ACTIONS(4112), + [anon_sym_union] = ACTIONS(4112), + [anon_sym_if] = ACTIONS(4112), + [anon_sym_switch] = ACTIONS(4112), + [anon_sym_case] = ACTIONS(4112), + [anon_sym_default] = ACTIONS(4112), + [anon_sym_while] = ACTIONS(4112), + [anon_sym_do] = ACTIONS(4112), + [anon_sym_for] = ACTIONS(4112), + [anon_sym_return] = ACTIONS(4112), + [anon_sym_break] = ACTIONS(4112), + [anon_sym_continue] = ACTIONS(4112), + [anon_sym_goto] = ACTIONS(4112), + [anon_sym___try] = ACTIONS(4112), + [anon_sym___leave] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4112), + [anon_sym_compl] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4114), + [anon_sym_PLUS_PLUS] = ACTIONS(4114), + [anon_sym_sizeof] = ACTIONS(4112), + [anon_sym___alignof__] = ACTIONS(4112), + [anon_sym___alignof] = ACTIONS(4112), + [anon_sym__alignof] = ACTIONS(4112), + [anon_sym_alignof] = ACTIONS(4112), + [anon_sym__Alignof] = ACTIONS(4112), + [anon_sym_offsetof] = ACTIONS(4112), + [anon_sym__Generic] = ACTIONS(4112), + [anon_sym_typename] = ACTIONS(4112), + [anon_sym_asm] = ACTIONS(4112), + [anon_sym___asm__] = ACTIONS(4112), + [anon_sym___asm] = ACTIONS(4112), + [sym_number_literal] = ACTIONS(4114), + [anon_sym_L_SQUOTE] = ACTIONS(4114), + [anon_sym_u_SQUOTE] = ACTIONS(4114), + [anon_sym_U_SQUOTE] = ACTIONS(4114), + [anon_sym_u8_SQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4114), + [anon_sym_L_DQUOTE] = ACTIONS(4114), + [anon_sym_u_DQUOTE] = ACTIONS(4114), + [anon_sym_U_DQUOTE] = ACTIONS(4114), + [anon_sym_u8_DQUOTE] = ACTIONS(4114), + [anon_sym_DQUOTE] = ACTIONS(4114), + [sym_true] = ACTIONS(4112), + [sym_false] = ACTIONS(4112), + [anon_sym_NULL] = ACTIONS(4112), + [anon_sym_nullptr] = ACTIONS(4112), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4112), + [anon_sym_decltype] = ACTIONS(4112), + [anon_sym_explicit] = ACTIONS(4112), + [anon_sym_export] = ACTIONS(4112), + [anon_sym_module] = ACTIONS(4112), + [anon_sym_import] = ACTIONS(4112), + [anon_sym_template] = ACTIONS(4112), + [anon_sym_operator] = ACTIONS(4112), + [anon_sym_try] = ACTIONS(4112), + [anon_sym_delete] = ACTIONS(4112), + [anon_sym_throw] = ACTIONS(4112), + [anon_sym_namespace] = ACTIONS(4112), + [anon_sym_static_assert] = ACTIONS(4112), + [anon_sym_concept] = ACTIONS(4112), + [anon_sym_co_return] = ACTIONS(4112), + [anon_sym_co_yield] = ACTIONS(4112), + [anon_sym_R_DQUOTE] = ACTIONS(4114), + [anon_sym_LR_DQUOTE] = ACTIONS(4114), + [anon_sym_uR_DQUOTE] = ACTIONS(4114), + [anon_sym_UR_DQUOTE] = ACTIONS(4114), + [anon_sym_u8R_DQUOTE] = ACTIONS(4114), + [anon_sym_co_await] = ACTIONS(4112), + [anon_sym_new] = ACTIONS(4112), + [anon_sym_requires] = ACTIONS(4112), + [anon_sym_CARET_CARET] = ACTIONS(4114), + [anon_sym_LBRACK_COLON] = ACTIONS(4114), + [sym_this] = ACTIONS(4112), }, - [STATE(870)] = { + [STATE(725)] = { [sym_identifier] = ACTIONS(4152), [aux_sym_preproc_include_token1] = ACTIONS(4152), [aux_sym_preproc_def_token1] = ACTIONS(4152), @@ -177355,6 +163559,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4152), [anon_sym_decltype] = ACTIONS(4152), [anon_sym_explicit] = ACTIONS(4152), + [anon_sym_export] = ACTIONS(4152), + [anon_sym_module] = ACTIONS(4152), + [anon_sym_import] = ACTIONS(4152), [anon_sym_template] = ACTIONS(4152), [anon_sym_operator] = ACTIONS(4152), [anon_sym_try] = ACTIONS(4152), @@ -177377,697 +163584,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4154), [sym_this] = ACTIONS(4152), }, - [STATE(871)] = { - [sym_identifier] = ACTIONS(4074), - [aux_sym_preproc_include_token1] = ACTIONS(4074), - [aux_sym_preproc_def_token1] = ACTIONS(4074), - [aux_sym_preproc_if_token1] = ACTIONS(4074), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4074), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4074), - [sym_preproc_directive] = ACTIONS(4074), - [anon_sym_LPAREN2] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(4076), - [anon_sym_TILDE] = ACTIONS(4076), - [anon_sym_DASH] = ACTIONS(4074), - [anon_sym_PLUS] = ACTIONS(4074), - [anon_sym_STAR] = ACTIONS(4076), - [anon_sym_AMP_AMP] = ACTIONS(4076), - [anon_sym_AMP] = ACTIONS(4074), - [anon_sym_SEMI] = ACTIONS(4076), - [anon_sym___extension__] = ACTIONS(4074), - [anon_sym_typedef] = ACTIONS(4074), - [anon_sym_virtual] = ACTIONS(4074), - [anon_sym_extern] = ACTIONS(4074), - [anon_sym___attribute__] = ACTIONS(4074), - [anon_sym___attribute] = ACTIONS(4074), - [anon_sym_using] = ACTIONS(4074), - [anon_sym_COLON_COLON] = ACTIONS(4076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4076), - [anon_sym___declspec] = ACTIONS(4074), - [anon_sym___based] = ACTIONS(4074), - [anon_sym___cdecl] = ACTIONS(4074), - [anon_sym___clrcall] = ACTIONS(4074), - [anon_sym___stdcall] = ACTIONS(4074), - [anon_sym___fastcall] = ACTIONS(4074), - [anon_sym___thiscall] = ACTIONS(4074), - [anon_sym___vectorcall] = ACTIONS(4074), - [anon_sym_LBRACE] = ACTIONS(4076), - [anon_sym_RBRACE] = ACTIONS(4076), - [anon_sym_signed] = ACTIONS(4074), - [anon_sym_unsigned] = ACTIONS(4074), - [anon_sym_long] = ACTIONS(4074), - [anon_sym_short] = ACTIONS(4074), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_static] = ACTIONS(4074), - [anon_sym_register] = ACTIONS(4074), - [anon_sym_inline] = ACTIONS(4074), - [anon_sym___inline] = ACTIONS(4074), - [anon_sym___inline__] = ACTIONS(4074), - [anon_sym___forceinline] = ACTIONS(4074), - [anon_sym_thread_local] = ACTIONS(4074), - [anon_sym___thread] = ACTIONS(4074), - [anon_sym_const] = ACTIONS(4074), - [anon_sym_constexpr] = ACTIONS(4074), - [anon_sym_volatile] = ACTIONS(4074), - [anon_sym_restrict] = ACTIONS(4074), - [anon_sym___restrict__] = ACTIONS(4074), - [anon_sym__Atomic] = ACTIONS(4074), - [anon_sym__Noreturn] = ACTIONS(4074), - [anon_sym_noreturn] = ACTIONS(4074), - [anon_sym__Nonnull] = ACTIONS(4074), - [anon_sym_mutable] = ACTIONS(4074), - [anon_sym_constinit] = ACTIONS(4074), - [anon_sym_consteval] = ACTIONS(4074), - [anon_sym_alignas] = ACTIONS(4074), - [anon_sym__Alignas] = ACTIONS(4074), - [sym_primitive_type] = ACTIONS(4074), - [anon_sym_enum] = ACTIONS(4074), - [anon_sym_class] = ACTIONS(4074), - [anon_sym_struct] = ACTIONS(4074), - [anon_sym_union] = ACTIONS(4074), - [anon_sym_if] = ACTIONS(4074), - [anon_sym_switch] = ACTIONS(4074), - [anon_sym_case] = ACTIONS(4074), - [anon_sym_default] = ACTIONS(4074), - [anon_sym_while] = ACTIONS(4074), - [anon_sym_do] = ACTIONS(4074), - [anon_sym_for] = ACTIONS(4074), - [anon_sym_return] = ACTIONS(4074), - [anon_sym_break] = ACTIONS(4074), - [anon_sym_continue] = ACTIONS(4074), - [anon_sym_goto] = ACTIONS(4074), - [anon_sym___try] = ACTIONS(4074), - [anon_sym___leave] = ACTIONS(4074), - [anon_sym_not] = ACTIONS(4074), - [anon_sym_compl] = ACTIONS(4074), - [anon_sym_DASH_DASH] = ACTIONS(4076), - [anon_sym_PLUS_PLUS] = ACTIONS(4076), - [anon_sym_sizeof] = ACTIONS(4074), - [anon_sym___alignof__] = ACTIONS(4074), - [anon_sym___alignof] = ACTIONS(4074), - [anon_sym__alignof] = ACTIONS(4074), - [anon_sym_alignof] = ACTIONS(4074), - [anon_sym__Alignof] = ACTIONS(4074), - [anon_sym_offsetof] = ACTIONS(4074), - [anon_sym__Generic] = ACTIONS(4074), - [anon_sym_typename] = ACTIONS(4074), - [anon_sym_asm] = ACTIONS(4074), - [anon_sym___asm__] = ACTIONS(4074), - [anon_sym___asm] = ACTIONS(4074), - [sym_number_literal] = ACTIONS(4076), - [anon_sym_L_SQUOTE] = ACTIONS(4076), - [anon_sym_u_SQUOTE] = ACTIONS(4076), - [anon_sym_U_SQUOTE] = ACTIONS(4076), - [anon_sym_u8_SQUOTE] = ACTIONS(4076), - [anon_sym_SQUOTE] = ACTIONS(4076), - [anon_sym_L_DQUOTE] = ACTIONS(4076), - [anon_sym_u_DQUOTE] = ACTIONS(4076), - [anon_sym_U_DQUOTE] = ACTIONS(4076), - [anon_sym_u8_DQUOTE] = ACTIONS(4076), - [anon_sym_DQUOTE] = ACTIONS(4076), - [sym_true] = ACTIONS(4074), - [sym_false] = ACTIONS(4074), - [anon_sym_NULL] = ACTIONS(4074), - [anon_sym_nullptr] = ACTIONS(4074), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4074), - [anon_sym_decltype] = ACTIONS(4074), - [anon_sym_explicit] = ACTIONS(4074), - [anon_sym_template] = ACTIONS(4074), - [anon_sym_operator] = ACTIONS(4074), - [anon_sym_try] = ACTIONS(4074), - [anon_sym_delete] = ACTIONS(4074), - [anon_sym_throw] = ACTIONS(4074), - [anon_sym_namespace] = ACTIONS(4074), - [anon_sym_static_assert] = ACTIONS(4074), - [anon_sym_concept] = ACTIONS(4074), - [anon_sym_co_return] = ACTIONS(4074), - [anon_sym_co_yield] = ACTIONS(4074), - [anon_sym_R_DQUOTE] = ACTIONS(4076), - [anon_sym_LR_DQUOTE] = ACTIONS(4076), - [anon_sym_uR_DQUOTE] = ACTIONS(4076), - [anon_sym_UR_DQUOTE] = ACTIONS(4076), - [anon_sym_u8R_DQUOTE] = ACTIONS(4076), - [anon_sym_co_await] = ACTIONS(4074), - [anon_sym_new] = ACTIONS(4074), - [anon_sym_requires] = ACTIONS(4074), - [anon_sym_CARET_CARET] = ACTIONS(4076), - [anon_sym_LBRACK_COLON] = ACTIONS(4076), - [sym_this] = ACTIONS(4074), - }, - [STATE(872)] = { - [sym_identifier] = ACTIONS(4078), - [aux_sym_preproc_include_token1] = ACTIONS(4078), - [aux_sym_preproc_def_token1] = ACTIONS(4078), - [aux_sym_preproc_if_token1] = ACTIONS(4078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4078), - [sym_preproc_directive] = ACTIONS(4078), - [anon_sym_LPAREN2] = ACTIONS(4080), - [anon_sym_BANG] = ACTIONS(4080), - [anon_sym_TILDE] = ACTIONS(4080), - [anon_sym_DASH] = ACTIONS(4078), - [anon_sym_PLUS] = ACTIONS(4078), - [anon_sym_STAR] = ACTIONS(4080), - [anon_sym_AMP_AMP] = ACTIONS(4080), - [anon_sym_AMP] = ACTIONS(4078), - [anon_sym_SEMI] = ACTIONS(4080), - [anon_sym___extension__] = ACTIONS(4078), - [anon_sym_typedef] = ACTIONS(4078), - [anon_sym_virtual] = ACTIONS(4078), - [anon_sym_extern] = ACTIONS(4078), - [anon_sym___attribute__] = ACTIONS(4078), - [anon_sym___attribute] = ACTIONS(4078), - [anon_sym_using] = ACTIONS(4078), - [anon_sym_COLON_COLON] = ACTIONS(4080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4080), - [anon_sym___declspec] = ACTIONS(4078), - [anon_sym___based] = ACTIONS(4078), - [anon_sym___cdecl] = ACTIONS(4078), - [anon_sym___clrcall] = ACTIONS(4078), - [anon_sym___stdcall] = ACTIONS(4078), - [anon_sym___fastcall] = ACTIONS(4078), - [anon_sym___thiscall] = ACTIONS(4078), - [anon_sym___vectorcall] = ACTIONS(4078), - [anon_sym_LBRACE] = ACTIONS(4080), - [anon_sym_RBRACE] = ACTIONS(4080), - [anon_sym_signed] = ACTIONS(4078), - [anon_sym_unsigned] = ACTIONS(4078), - [anon_sym_long] = ACTIONS(4078), - [anon_sym_short] = ACTIONS(4078), - [anon_sym_LBRACK] = ACTIONS(4078), - [anon_sym_static] = ACTIONS(4078), - [anon_sym_register] = ACTIONS(4078), - [anon_sym_inline] = ACTIONS(4078), - [anon_sym___inline] = ACTIONS(4078), - [anon_sym___inline__] = ACTIONS(4078), - [anon_sym___forceinline] = ACTIONS(4078), - [anon_sym_thread_local] = ACTIONS(4078), - [anon_sym___thread] = ACTIONS(4078), - [anon_sym_const] = ACTIONS(4078), - [anon_sym_constexpr] = ACTIONS(4078), - [anon_sym_volatile] = ACTIONS(4078), - [anon_sym_restrict] = ACTIONS(4078), - [anon_sym___restrict__] = ACTIONS(4078), - [anon_sym__Atomic] = ACTIONS(4078), - [anon_sym__Noreturn] = ACTIONS(4078), - [anon_sym_noreturn] = ACTIONS(4078), - [anon_sym__Nonnull] = ACTIONS(4078), - [anon_sym_mutable] = ACTIONS(4078), - [anon_sym_constinit] = ACTIONS(4078), - [anon_sym_consteval] = ACTIONS(4078), - [anon_sym_alignas] = ACTIONS(4078), - [anon_sym__Alignas] = ACTIONS(4078), - [sym_primitive_type] = ACTIONS(4078), - [anon_sym_enum] = ACTIONS(4078), - [anon_sym_class] = ACTIONS(4078), - [anon_sym_struct] = ACTIONS(4078), - [anon_sym_union] = ACTIONS(4078), - [anon_sym_if] = ACTIONS(4078), - [anon_sym_switch] = ACTIONS(4078), - [anon_sym_case] = ACTIONS(4078), - [anon_sym_default] = ACTIONS(4078), - [anon_sym_while] = ACTIONS(4078), - [anon_sym_do] = ACTIONS(4078), - [anon_sym_for] = ACTIONS(4078), - [anon_sym_return] = ACTIONS(4078), - [anon_sym_break] = ACTIONS(4078), - [anon_sym_continue] = ACTIONS(4078), - [anon_sym_goto] = ACTIONS(4078), - [anon_sym___try] = ACTIONS(4078), - [anon_sym___leave] = ACTIONS(4078), - [anon_sym_not] = ACTIONS(4078), - [anon_sym_compl] = ACTIONS(4078), - [anon_sym_DASH_DASH] = ACTIONS(4080), - [anon_sym_PLUS_PLUS] = ACTIONS(4080), - [anon_sym_sizeof] = ACTIONS(4078), - [anon_sym___alignof__] = ACTIONS(4078), - [anon_sym___alignof] = ACTIONS(4078), - [anon_sym__alignof] = ACTIONS(4078), - [anon_sym_alignof] = ACTIONS(4078), - [anon_sym__Alignof] = ACTIONS(4078), - [anon_sym_offsetof] = ACTIONS(4078), - [anon_sym__Generic] = ACTIONS(4078), - [anon_sym_typename] = ACTIONS(4078), - [anon_sym_asm] = ACTIONS(4078), - [anon_sym___asm__] = ACTIONS(4078), - [anon_sym___asm] = ACTIONS(4078), - [sym_number_literal] = ACTIONS(4080), - [anon_sym_L_SQUOTE] = ACTIONS(4080), - [anon_sym_u_SQUOTE] = ACTIONS(4080), - [anon_sym_U_SQUOTE] = ACTIONS(4080), - [anon_sym_u8_SQUOTE] = ACTIONS(4080), - [anon_sym_SQUOTE] = ACTIONS(4080), - [anon_sym_L_DQUOTE] = ACTIONS(4080), - [anon_sym_u_DQUOTE] = ACTIONS(4080), - [anon_sym_U_DQUOTE] = ACTIONS(4080), - [anon_sym_u8_DQUOTE] = ACTIONS(4080), - [anon_sym_DQUOTE] = ACTIONS(4080), - [sym_true] = ACTIONS(4078), - [sym_false] = ACTIONS(4078), - [anon_sym_NULL] = ACTIONS(4078), - [anon_sym_nullptr] = ACTIONS(4078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4078), - [anon_sym_decltype] = ACTIONS(4078), - [anon_sym_explicit] = ACTIONS(4078), - [anon_sym_template] = ACTIONS(4078), - [anon_sym_operator] = ACTIONS(4078), - [anon_sym_try] = ACTIONS(4078), - [anon_sym_delete] = ACTIONS(4078), - [anon_sym_throw] = ACTIONS(4078), - [anon_sym_namespace] = ACTIONS(4078), - [anon_sym_static_assert] = ACTIONS(4078), - [anon_sym_concept] = ACTIONS(4078), - [anon_sym_co_return] = ACTIONS(4078), - [anon_sym_co_yield] = ACTIONS(4078), - [anon_sym_R_DQUOTE] = ACTIONS(4080), - [anon_sym_LR_DQUOTE] = ACTIONS(4080), - [anon_sym_uR_DQUOTE] = ACTIONS(4080), - [anon_sym_UR_DQUOTE] = ACTIONS(4080), - [anon_sym_u8R_DQUOTE] = ACTIONS(4080), - [anon_sym_co_await] = ACTIONS(4078), - [anon_sym_new] = ACTIONS(4078), - [anon_sym_requires] = ACTIONS(4078), - [anon_sym_CARET_CARET] = ACTIONS(4080), - [anon_sym_LBRACK_COLON] = ACTIONS(4080), - [sym_this] = ACTIONS(4078), - }, - [STATE(873)] = { - [sym_identifier] = ACTIONS(4082), - [aux_sym_preproc_include_token1] = ACTIONS(4082), - [aux_sym_preproc_def_token1] = ACTIONS(4082), - [aux_sym_preproc_if_token1] = ACTIONS(4082), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4082), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4082), - [sym_preproc_directive] = ACTIONS(4082), - [anon_sym_LPAREN2] = ACTIONS(4084), - [anon_sym_BANG] = ACTIONS(4084), - [anon_sym_TILDE] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4082), - [anon_sym_PLUS] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_AMP] = ACTIONS(4082), - [anon_sym_SEMI] = ACTIONS(4084), - [anon_sym___extension__] = ACTIONS(4082), - [anon_sym_typedef] = ACTIONS(4082), - [anon_sym_virtual] = ACTIONS(4082), - [anon_sym_extern] = ACTIONS(4082), - [anon_sym___attribute__] = ACTIONS(4082), - [anon_sym___attribute] = ACTIONS(4082), - [anon_sym_using] = ACTIONS(4082), - [anon_sym_COLON_COLON] = ACTIONS(4084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4084), - [anon_sym___declspec] = ACTIONS(4082), - [anon_sym___based] = ACTIONS(4082), - [anon_sym___cdecl] = ACTIONS(4082), - [anon_sym___clrcall] = ACTIONS(4082), - [anon_sym___stdcall] = ACTIONS(4082), - [anon_sym___fastcall] = ACTIONS(4082), - [anon_sym___thiscall] = ACTIONS(4082), - [anon_sym___vectorcall] = ACTIONS(4082), - [anon_sym_LBRACE] = ACTIONS(4084), - [anon_sym_RBRACE] = ACTIONS(4084), - [anon_sym_signed] = ACTIONS(4082), - [anon_sym_unsigned] = ACTIONS(4082), - [anon_sym_long] = ACTIONS(4082), - [anon_sym_short] = ACTIONS(4082), - [anon_sym_LBRACK] = ACTIONS(4082), - [anon_sym_static] = ACTIONS(4082), - [anon_sym_register] = ACTIONS(4082), - [anon_sym_inline] = ACTIONS(4082), - [anon_sym___inline] = ACTIONS(4082), - [anon_sym___inline__] = ACTIONS(4082), - [anon_sym___forceinline] = ACTIONS(4082), - [anon_sym_thread_local] = ACTIONS(4082), - [anon_sym___thread] = ACTIONS(4082), - [anon_sym_const] = ACTIONS(4082), - [anon_sym_constexpr] = ACTIONS(4082), - [anon_sym_volatile] = ACTIONS(4082), - [anon_sym_restrict] = ACTIONS(4082), - [anon_sym___restrict__] = ACTIONS(4082), - [anon_sym__Atomic] = ACTIONS(4082), - [anon_sym__Noreturn] = ACTIONS(4082), - [anon_sym_noreturn] = ACTIONS(4082), - [anon_sym__Nonnull] = ACTIONS(4082), - [anon_sym_mutable] = ACTIONS(4082), - [anon_sym_constinit] = ACTIONS(4082), - [anon_sym_consteval] = ACTIONS(4082), - [anon_sym_alignas] = ACTIONS(4082), - [anon_sym__Alignas] = ACTIONS(4082), - [sym_primitive_type] = ACTIONS(4082), - [anon_sym_enum] = ACTIONS(4082), - [anon_sym_class] = ACTIONS(4082), - [anon_sym_struct] = ACTIONS(4082), - [anon_sym_union] = ACTIONS(4082), - [anon_sym_if] = ACTIONS(4082), - [anon_sym_switch] = ACTIONS(4082), - [anon_sym_case] = ACTIONS(4082), - [anon_sym_default] = ACTIONS(4082), - [anon_sym_while] = ACTIONS(4082), - [anon_sym_do] = ACTIONS(4082), - [anon_sym_for] = ACTIONS(4082), - [anon_sym_return] = ACTIONS(4082), - [anon_sym_break] = ACTIONS(4082), - [anon_sym_continue] = ACTIONS(4082), - [anon_sym_goto] = ACTIONS(4082), - [anon_sym___try] = ACTIONS(4082), - [anon_sym___leave] = ACTIONS(4082), - [anon_sym_not] = ACTIONS(4082), - [anon_sym_compl] = ACTIONS(4082), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_sizeof] = ACTIONS(4082), - [anon_sym___alignof__] = ACTIONS(4082), - [anon_sym___alignof] = ACTIONS(4082), - [anon_sym__alignof] = ACTIONS(4082), - [anon_sym_alignof] = ACTIONS(4082), - [anon_sym__Alignof] = ACTIONS(4082), - [anon_sym_offsetof] = ACTIONS(4082), - [anon_sym__Generic] = ACTIONS(4082), - [anon_sym_typename] = ACTIONS(4082), - [anon_sym_asm] = ACTIONS(4082), - [anon_sym___asm__] = ACTIONS(4082), - [anon_sym___asm] = ACTIONS(4082), - [sym_number_literal] = ACTIONS(4084), - [anon_sym_L_SQUOTE] = ACTIONS(4084), - [anon_sym_u_SQUOTE] = ACTIONS(4084), - [anon_sym_U_SQUOTE] = ACTIONS(4084), - [anon_sym_u8_SQUOTE] = ACTIONS(4084), - [anon_sym_SQUOTE] = ACTIONS(4084), - [anon_sym_L_DQUOTE] = ACTIONS(4084), - [anon_sym_u_DQUOTE] = ACTIONS(4084), - [anon_sym_U_DQUOTE] = ACTIONS(4084), - [anon_sym_u8_DQUOTE] = ACTIONS(4084), - [anon_sym_DQUOTE] = ACTIONS(4084), - [sym_true] = ACTIONS(4082), - [sym_false] = ACTIONS(4082), - [anon_sym_NULL] = ACTIONS(4082), - [anon_sym_nullptr] = ACTIONS(4082), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4082), - [anon_sym_decltype] = ACTIONS(4082), - [anon_sym_explicit] = ACTIONS(4082), - [anon_sym_template] = ACTIONS(4082), - [anon_sym_operator] = ACTIONS(4082), - [anon_sym_try] = ACTIONS(4082), - [anon_sym_delete] = ACTIONS(4082), - [anon_sym_throw] = ACTIONS(4082), - [anon_sym_namespace] = ACTIONS(4082), - [anon_sym_static_assert] = ACTIONS(4082), - [anon_sym_concept] = ACTIONS(4082), - [anon_sym_co_return] = ACTIONS(4082), - [anon_sym_co_yield] = ACTIONS(4082), - [anon_sym_R_DQUOTE] = ACTIONS(4084), - [anon_sym_LR_DQUOTE] = ACTIONS(4084), - [anon_sym_uR_DQUOTE] = ACTIONS(4084), - [anon_sym_UR_DQUOTE] = ACTIONS(4084), - [anon_sym_u8R_DQUOTE] = ACTIONS(4084), - [anon_sym_co_await] = ACTIONS(4082), - [anon_sym_new] = ACTIONS(4082), - [anon_sym_requires] = ACTIONS(4082), - [anon_sym_CARET_CARET] = ACTIONS(4084), - [anon_sym_LBRACK_COLON] = ACTIONS(4084), - [sym_this] = ACTIONS(4082), + [STATE(726)] = { + [sym_identifier] = ACTIONS(3604), + [aux_sym_preproc_include_token1] = ACTIONS(3604), + [aux_sym_preproc_def_token1] = ACTIONS(3604), + [aux_sym_preproc_if_token1] = ACTIONS(3604), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3604), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3604), + [sym_preproc_directive] = ACTIONS(3604), + [anon_sym_LPAREN2] = ACTIONS(3606), + [anon_sym_BANG] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3606), + [anon_sym_DASH] = ACTIONS(3604), + [anon_sym_PLUS] = ACTIONS(3604), + [anon_sym_STAR] = ACTIONS(3606), + [anon_sym_AMP_AMP] = ACTIONS(3606), + [anon_sym_AMP] = ACTIONS(3604), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym___extension__] = ACTIONS(3604), + [anon_sym_typedef] = ACTIONS(3604), + [anon_sym_virtual] = ACTIONS(3604), + [anon_sym_extern] = ACTIONS(3604), + [anon_sym___attribute__] = ACTIONS(3604), + [anon_sym___attribute] = ACTIONS(3604), + [anon_sym_using] = ACTIONS(3604), + [anon_sym_COLON_COLON] = ACTIONS(3606), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3606), + [anon_sym___declspec] = ACTIONS(3604), + [anon_sym___based] = ACTIONS(3604), + [anon_sym___cdecl] = ACTIONS(3604), + [anon_sym___clrcall] = ACTIONS(3604), + [anon_sym___stdcall] = ACTIONS(3604), + [anon_sym___fastcall] = ACTIONS(3604), + [anon_sym___thiscall] = ACTIONS(3604), + [anon_sym___vectorcall] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3606), + [anon_sym_RBRACE] = ACTIONS(3606), + [anon_sym_signed] = ACTIONS(3604), + [anon_sym_unsigned] = ACTIONS(3604), + [anon_sym_long] = ACTIONS(3604), + [anon_sym_short] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3604), + [anon_sym_static] = ACTIONS(3604), + [anon_sym_register] = ACTIONS(3604), + [anon_sym_inline] = ACTIONS(3604), + [anon_sym___inline] = ACTIONS(3604), + [anon_sym___inline__] = ACTIONS(3604), + [anon_sym___forceinline] = ACTIONS(3604), + [anon_sym_thread_local] = ACTIONS(3604), + [anon_sym___thread] = ACTIONS(3604), + [anon_sym_const] = ACTIONS(3604), + [anon_sym_constexpr] = ACTIONS(3604), + [anon_sym_volatile] = ACTIONS(3604), + [anon_sym_restrict] = ACTIONS(3604), + [anon_sym___restrict__] = ACTIONS(3604), + [anon_sym__Atomic] = ACTIONS(3604), + [anon_sym__Noreturn] = ACTIONS(3604), + [anon_sym_noreturn] = ACTIONS(3604), + [anon_sym__Nonnull] = ACTIONS(3604), + [anon_sym_mutable] = ACTIONS(3604), + [anon_sym_constinit] = ACTIONS(3604), + [anon_sym_consteval] = ACTIONS(3604), + [anon_sym_alignas] = ACTIONS(3604), + [anon_sym__Alignas] = ACTIONS(3604), + [sym_primitive_type] = ACTIONS(3604), + [anon_sym_enum] = ACTIONS(3604), + [anon_sym_class] = ACTIONS(3604), + [anon_sym_struct] = ACTIONS(3604), + [anon_sym_union] = ACTIONS(3604), + [anon_sym_if] = ACTIONS(3604), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_switch] = ACTIONS(3604), + [anon_sym_case] = ACTIONS(3604), + [anon_sym_default] = ACTIONS(3604), + [anon_sym_while] = ACTIONS(3604), + [anon_sym_do] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3604), + [anon_sym_return] = ACTIONS(3604), + [anon_sym_break] = ACTIONS(3604), + [anon_sym_continue] = ACTIONS(3604), + [anon_sym_goto] = ACTIONS(3604), + [anon_sym___try] = ACTIONS(3604), + [anon_sym___leave] = ACTIONS(3604), + [anon_sym_not] = ACTIONS(3604), + [anon_sym_compl] = ACTIONS(3604), + [anon_sym_DASH_DASH] = ACTIONS(3606), + [anon_sym_PLUS_PLUS] = ACTIONS(3606), + [anon_sym_sizeof] = ACTIONS(3604), + [anon_sym___alignof__] = ACTIONS(3604), + [anon_sym___alignof] = ACTIONS(3604), + [anon_sym__alignof] = ACTIONS(3604), + [anon_sym_alignof] = ACTIONS(3604), + [anon_sym__Alignof] = ACTIONS(3604), + [anon_sym_offsetof] = ACTIONS(3604), + [anon_sym__Generic] = ACTIONS(3604), + [anon_sym_typename] = ACTIONS(3604), + [anon_sym_asm] = ACTIONS(3604), + [anon_sym___asm__] = ACTIONS(3604), + [anon_sym___asm] = ACTIONS(3604), + [sym_number_literal] = ACTIONS(3606), + [anon_sym_L_SQUOTE] = ACTIONS(3606), + [anon_sym_u_SQUOTE] = ACTIONS(3606), + [anon_sym_U_SQUOTE] = ACTIONS(3606), + [anon_sym_u8_SQUOTE] = ACTIONS(3606), + [anon_sym_SQUOTE] = ACTIONS(3606), + [anon_sym_L_DQUOTE] = ACTIONS(3606), + [anon_sym_u_DQUOTE] = ACTIONS(3606), + [anon_sym_U_DQUOTE] = ACTIONS(3606), + [anon_sym_u8_DQUOTE] = ACTIONS(3606), + [anon_sym_DQUOTE] = ACTIONS(3606), + [sym_true] = ACTIONS(3604), + [sym_false] = ACTIONS(3604), + [anon_sym_NULL] = ACTIONS(3604), + [anon_sym_nullptr] = ACTIONS(3604), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3604), + [anon_sym_decltype] = ACTIONS(3604), + [anon_sym_explicit] = ACTIONS(3604), + [anon_sym_export] = ACTIONS(3604), + [anon_sym_import] = ACTIONS(3604), + [anon_sym_template] = ACTIONS(3604), + [anon_sym_operator] = ACTIONS(3604), + [anon_sym_try] = ACTIONS(3604), + [anon_sym_delete] = ACTIONS(3604), + [anon_sym_throw] = ACTIONS(3604), + [anon_sym_namespace] = ACTIONS(3604), + [anon_sym_static_assert] = ACTIONS(3604), + [anon_sym_concept] = ACTIONS(3604), + [anon_sym_co_return] = ACTIONS(3604), + [anon_sym_co_yield] = ACTIONS(3604), + [anon_sym_R_DQUOTE] = ACTIONS(3606), + [anon_sym_LR_DQUOTE] = ACTIONS(3606), + [anon_sym_uR_DQUOTE] = ACTIONS(3606), + [anon_sym_UR_DQUOTE] = ACTIONS(3606), + [anon_sym_u8R_DQUOTE] = ACTIONS(3606), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(3604), + [anon_sym_requires] = ACTIONS(3604), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(3606), + [sym_this] = ACTIONS(3604), }, - [STATE(874)] = { - [sym_identifier] = ACTIONS(4156), - [aux_sym_preproc_include_token1] = ACTIONS(4156), - [aux_sym_preproc_def_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token2] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), - [sym_preproc_directive] = ACTIONS(4156), - [anon_sym_LPAREN2] = ACTIONS(4158), - [anon_sym_BANG] = ACTIONS(4158), - [anon_sym_TILDE] = ACTIONS(4158), - [anon_sym_DASH] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4156), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_SEMI] = ACTIONS(4158), - [anon_sym___extension__] = ACTIONS(4156), - [anon_sym_typedef] = ACTIONS(4156), - [anon_sym_virtual] = ACTIONS(4156), - [anon_sym_extern] = ACTIONS(4156), - [anon_sym___attribute__] = ACTIONS(4156), - [anon_sym___attribute] = ACTIONS(4156), - [anon_sym_using] = ACTIONS(4156), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), - [anon_sym___declspec] = ACTIONS(4156), - [anon_sym___based] = ACTIONS(4156), - [anon_sym___cdecl] = ACTIONS(4156), - [anon_sym___clrcall] = ACTIONS(4156), - [anon_sym___stdcall] = ACTIONS(4156), - [anon_sym___fastcall] = ACTIONS(4156), - [anon_sym___thiscall] = ACTIONS(4156), - [anon_sym___vectorcall] = ACTIONS(4156), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_signed] = ACTIONS(4156), - [anon_sym_unsigned] = ACTIONS(4156), - [anon_sym_long] = ACTIONS(4156), - [anon_sym_short] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4156), - [anon_sym_register] = ACTIONS(4156), - [anon_sym_inline] = ACTIONS(4156), - [anon_sym___inline] = ACTIONS(4156), - [anon_sym___inline__] = ACTIONS(4156), - [anon_sym___forceinline] = ACTIONS(4156), - [anon_sym_thread_local] = ACTIONS(4156), - [anon_sym___thread] = ACTIONS(4156), - [anon_sym_const] = ACTIONS(4156), - [anon_sym_constexpr] = ACTIONS(4156), - [anon_sym_volatile] = ACTIONS(4156), - [anon_sym_restrict] = ACTIONS(4156), - [anon_sym___restrict__] = ACTIONS(4156), - [anon_sym__Atomic] = ACTIONS(4156), - [anon_sym__Noreturn] = ACTIONS(4156), - [anon_sym_noreturn] = ACTIONS(4156), - [anon_sym__Nonnull] = ACTIONS(4156), - [anon_sym_mutable] = ACTIONS(4156), - [anon_sym_constinit] = ACTIONS(4156), - [anon_sym_consteval] = ACTIONS(4156), - [anon_sym_alignas] = ACTIONS(4156), - [anon_sym__Alignas] = ACTIONS(4156), - [sym_primitive_type] = ACTIONS(4156), - [anon_sym_enum] = ACTIONS(4156), - [anon_sym_class] = ACTIONS(4156), - [anon_sym_struct] = ACTIONS(4156), - [anon_sym_union] = ACTIONS(4156), - [anon_sym_if] = ACTIONS(4156), - [anon_sym_switch] = ACTIONS(4156), - [anon_sym_case] = ACTIONS(4156), - [anon_sym_default] = ACTIONS(4156), - [anon_sym_while] = ACTIONS(4156), - [anon_sym_do] = ACTIONS(4156), - [anon_sym_for] = ACTIONS(4156), - [anon_sym_return] = ACTIONS(4156), - [anon_sym_break] = ACTIONS(4156), - [anon_sym_continue] = ACTIONS(4156), - [anon_sym_goto] = ACTIONS(4156), - [anon_sym___try] = ACTIONS(4156), - [anon_sym___leave] = ACTIONS(4156), - [anon_sym_not] = ACTIONS(4156), - [anon_sym_compl] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4158), - [anon_sym_PLUS_PLUS] = ACTIONS(4158), - [anon_sym_sizeof] = ACTIONS(4156), - [anon_sym___alignof__] = ACTIONS(4156), - [anon_sym___alignof] = ACTIONS(4156), - [anon_sym__alignof] = ACTIONS(4156), - [anon_sym_alignof] = ACTIONS(4156), - [anon_sym__Alignof] = ACTIONS(4156), - [anon_sym_offsetof] = ACTIONS(4156), - [anon_sym__Generic] = ACTIONS(4156), - [anon_sym_typename] = ACTIONS(4156), - [anon_sym_asm] = ACTIONS(4156), - [anon_sym___asm__] = ACTIONS(4156), - [anon_sym___asm] = ACTIONS(4156), - [sym_number_literal] = ACTIONS(4158), - [anon_sym_L_SQUOTE] = ACTIONS(4158), - [anon_sym_u_SQUOTE] = ACTIONS(4158), - [anon_sym_U_SQUOTE] = ACTIONS(4158), - [anon_sym_u8_SQUOTE] = ACTIONS(4158), - [anon_sym_SQUOTE] = ACTIONS(4158), - [anon_sym_L_DQUOTE] = ACTIONS(4158), - [anon_sym_u_DQUOTE] = ACTIONS(4158), - [anon_sym_U_DQUOTE] = ACTIONS(4158), - [anon_sym_u8_DQUOTE] = ACTIONS(4158), - [anon_sym_DQUOTE] = ACTIONS(4158), - [sym_true] = ACTIONS(4156), - [sym_false] = ACTIONS(4156), - [anon_sym_NULL] = ACTIONS(4156), - [anon_sym_nullptr] = ACTIONS(4156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4156), - [anon_sym_decltype] = ACTIONS(4156), - [anon_sym_explicit] = ACTIONS(4156), - [anon_sym_template] = ACTIONS(4156), - [anon_sym_operator] = ACTIONS(4156), - [anon_sym_try] = ACTIONS(4156), - [anon_sym_delete] = ACTIONS(4156), - [anon_sym_throw] = ACTIONS(4156), - [anon_sym_namespace] = ACTIONS(4156), - [anon_sym_static_assert] = ACTIONS(4156), - [anon_sym_concept] = ACTIONS(4156), - [anon_sym_co_return] = ACTIONS(4156), - [anon_sym_co_yield] = ACTIONS(4156), - [anon_sym_R_DQUOTE] = ACTIONS(4158), - [anon_sym_LR_DQUOTE] = ACTIONS(4158), - [anon_sym_uR_DQUOTE] = ACTIONS(4158), - [anon_sym_UR_DQUOTE] = ACTIONS(4158), - [anon_sym_u8R_DQUOTE] = ACTIONS(4158), - [anon_sym_co_await] = ACTIONS(4156), - [anon_sym_new] = ACTIONS(4156), - [anon_sym_requires] = ACTIONS(4156), - [anon_sym_CARET_CARET] = ACTIONS(4158), - [anon_sym_LBRACK_COLON] = ACTIONS(4158), - [sym_this] = ACTIONS(4156), - }, - [STATE(875)] = { - [sym_identifier] = ACTIONS(4086), - [aux_sym_preproc_include_token1] = ACTIONS(4086), - [aux_sym_preproc_def_token1] = ACTIONS(4086), - [aux_sym_preproc_if_token1] = ACTIONS(4086), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4086), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4086), - [sym_preproc_directive] = ACTIONS(4086), - [anon_sym_LPAREN2] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_TILDE] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4086), - [anon_sym_PLUS] = ACTIONS(4086), - [anon_sym_STAR] = ACTIONS(4088), - [anon_sym_AMP_AMP] = ACTIONS(4088), - [anon_sym_AMP] = ACTIONS(4086), - [anon_sym_SEMI] = ACTIONS(4088), - [anon_sym___extension__] = ACTIONS(4086), - [anon_sym_typedef] = ACTIONS(4086), - [anon_sym_virtual] = ACTIONS(4086), - [anon_sym_extern] = ACTIONS(4086), - [anon_sym___attribute__] = ACTIONS(4086), - [anon_sym___attribute] = ACTIONS(4086), - [anon_sym_using] = ACTIONS(4086), - [anon_sym_COLON_COLON] = ACTIONS(4088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4088), - [anon_sym___declspec] = ACTIONS(4086), - [anon_sym___based] = ACTIONS(4086), - [anon_sym___cdecl] = ACTIONS(4086), - [anon_sym___clrcall] = ACTIONS(4086), - [anon_sym___stdcall] = ACTIONS(4086), - [anon_sym___fastcall] = ACTIONS(4086), - [anon_sym___thiscall] = ACTIONS(4086), - [anon_sym___vectorcall] = ACTIONS(4086), - [anon_sym_LBRACE] = ACTIONS(4088), - [anon_sym_RBRACE] = ACTIONS(4088), - [anon_sym_signed] = ACTIONS(4086), - [anon_sym_unsigned] = ACTIONS(4086), - [anon_sym_long] = ACTIONS(4086), - [anon_sym_short] = ACTIONS(4086), - [anon_sym_LBRACK] = ACTIONS(4086), - [anon_sym_static] = ACTIONS(4086), - [anon_sym_register] = ACTIONS(4086), - [anon_sym_inline] = ACTIONS(4086), - [anon_sym___inline] = ACTIONS(4086), - [anon_sym___inline__] = ACTIONS(4086), - [anon_sym___forceinline] = ACTIONS(4086), - [anon_sym_thread_local] = ACTIONS(4086), - [anon_sym___thread] = ACTIONS(4086), - [anon_sym_const] = ACTIONS(4086), - [anon_sym_constexpr] = ACTIONS(4086), - [anon_sym_volatile] = ACTIONS(4086), - [anon_sym_restrict] = ACTIONS(4086), - [anon_sym___restrict__] = ACTIONS(4086), - [anon_sym__Atomic] = ACTIONS(4086), - [anon_sym__Noreturn] = ACTIONS(4086), - [anon_sym_noreturn] = ACTIONS(4086), - [anon_sym__Nonnull] = ACTIONS(4086), - [anon_sym_mutable] = ACTIONS(4086), - [anon_sym_constinit] = ACTIONS(4086), - [anon_sym_consteval] = ACTIONS(4086), - [anon_sym_alignas] = ACTIONS(4086), - [anon_sym__Alignas] = ACTIONS(4086), - [sym_primitive_type] = ACTIONS(4086), - [anon_sym_enum] = ACTIONS(4086), - [anon_sym_class] = ACTIONS(4086), - [anon_sym_struct] = ACTIONS(4086), - [anon_sym_union] = ACTIONS(4086), - [anon_sym_if] = ACTIONS(4086), - [anon_sym_switch] = ACTIONS(4086), - [anon_sym_case] = ACTIONS(4086), - [anon_sym_default] = ACTIONS(4086), - [anon_sym_while] = ACTIONS(4086), - [anon_sym_do] = ACTIONS(4086), - [anon_sym_for] = ACTIONS(4086), - [anon_sym_return] = ACTIONS(4086), - [anon_sym_break] = ACTIONS(4086), - [anon_sym_continue] = ACTIONS(4086), - [anon_sym_goto] = ACTIONS(4086), - [anon_sym___try] = ACTIONS(4086), - [anon_sym___leave] = ACTIONS(4086), - [anon_sym_not] = ACTIONS(4086), - [anon_sym_compl] = ACTIONS(4086), - [anon_sym_DASH_DASH] = ACTIONS(4088), - [anon_sym_PLUS_PLUS] = ACTIONS(4088), - [anon_sym_sizeof] = ACTIONS(4086), - [anon_sym___alignof__] = ACTIONS(4086), - [anon_sym___alignof] = ACTIONS(4086), - [anon_sym__alignof] = ACTIONS(4086), - [anon_sym_alignof] = ACTIONS(4086), - [anon_sym__Alignof] = ACTIONS(4086), - [anon_sym_offsetof] = ACTIONS(4086), - [anon_sym__Generic] = ACTIONS(4086), - [anon_sym_typename] = ACTIONS(4086), - [anon_sym_asm] = ACTIONS(4086), - [anon_sym___asm__] = ACTIONS(4086), - [anon_sym___asm] = ACTIONS(4086), - [sym_number_literal] = ACTIONS(4088), - [anon_sym_L_SQUOTE] = ACTIONS(4088), - [anon_sym_u_SQUOTE] = ACTIONS(4088), - [anon_sym_U_SQUOTE] = ACTIONS(4088), - [anon_sym_u8_SQUOTE] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4088), - [anon_sym_L_DQUOTE] = ACTIONS(4088), - [anon_sym_u_DQUOTE] = ACTIONS(4088), - [anon_sym_U_DQUOTE] = ACTIONS(4088), - [anon_sym_u8_DQUOTE] = ACTIONS(4088), - [anon_sym_DQUOTE] = ACTIONS(4088), - [sym_true] = ACTIONS(4086), - [sym_false] = ACTIONS(4086), - [anon_sym_NULL] = ACTIONS(4086), - [anon_sym_nullptr] = ACTIONS(4086), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4086), - [anon_sym_decltype] = ACTIONS(4086), - [anon_sym_explicit] = ACTIONS(4086), - [anon_sym_template] = ACTIONS(4086), - [anon_sym_operator] = ACTIONS(4086), - [anon_sym_try] = ACTIONS(4086), - [anon_sym_delete] = ACTIONS(4086), - [anon_sym_throw] = ACTIONS(4086), - [anon_sym_namespace] = ACTIONS(4086), - [anon_sym_static_assert] = ACTIONS(4086), - [anon_sym_concept] = ACTIONS(4086), - [anon_sym_co_return] = ACTIONS(4086), - [anon_sym_co_yield] = ACTIONS(4086), - [anon_sym_R_DQUOTE] = ACTIONS(4088), - [anon_sym_LR_DQUOTE] = ACTIONS(4088), - [anon_sym_uR_DQUOTE] = ACTIONS(4088), - [anon_sym_UR_DQUOTE] = ACTIONS(4088), - [anon_sym_u8R_DQUOTE] = ACTIONS(4088), - [anon_sym_co_await] = ACTIONS(4086), - [anon_sym_new] = ACTIONS(4086), - [anon_sym_requires] = ACTIONS(4086), - [anon_sym_CARET_CARET] = ACTIONS(4088), - [anon_sym_LBRACK_COLON] = ACTIONS(4088), - [sym_this] = ACTIONS(4086), - }, - [STATE(876)] = { + [STATE(727)] = { [sym_identifier] = ACTIONS(4164), [aux_sym_preproc_include_token1] = ACTIONS(4164), [aux_sym_preproc_def_token1] = ACTIONS(4164), @@ -178183,6 +163841,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4164), [anon_sym_decltype] = ACTIONS(4164), [anon_sym_explicit] = ACTIONS(4164), + [anon_sym_export] = ACTIONS(4164), + [anon_sym_module] = ACTIONS(4164), + [anon_sym_import] = ACTIONS(4164), [anon_sym_template] = ACTIONS(4164), [anon_sym_operator] = ACTIONS(4164), [anon_sym_try] = ACTIONS(4164), @@ -178205,7 +163866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4166), [sym_this] = ACTIONS(4164), }, - [STATE(877)] = { + [STATE(728)] = { [sym_identifier] = ACTIONS(4168), [aux_sym_preproc_include_token1] = ACTIONS(4168), [aux_sym_preproc_def_token1] = ACTIONS(4168), @@ -178321,6 +163982,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4168), [anon_sym_decltype] = ACTIONS(4168), [anon_sym_explicit] = ACTIONS(4168), + [anon_sym_export] = ACTIONS(4168), + [anon_sym_module] = ACTIONS(4168), + [anon_sym_import] = ACTIONS(4168), [anon_sym_template] = ACTIONS(4168), [anon_sym_operator] = ACTIONS(4168), [anon_sym_try] = ACTIONS(4168), @@ -178343,145 +164007,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4170), [sym_this] = ACTIONS(4168), }, - [STATE(878)] = { - [sym_identifier] = ACTIONS(4042), - [aux_sym_preproc_include_token1] = ACTIONS(4042), - [aux_sym_preproc_def_token1] = ACTIONS(4042), - [aux_sym_preproc_if_token1] = ACTIONS(4042), - [aux_sym_preproc_if_token2] = ACTIONS(4042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4042), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4042), - [sym_preproc_directive] = ACTIONS(4042), - [anon_sym_LPAREN2] = ACTIONS(4044), - [anon_sym_BANG] = ACTIONS(4044), - [anon_sym_TILDE] = ACTIONS(4044), - [anon_sym_DASH] = ACTIONS(4042), - [anon_sym_PLUS] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_SEMI] = ACTIONS(4044), - [anon_sym___extension__] = ACTIONS(4042), - [anon_sym_typedef] = ACTIONS(4042), - [anon_sym_virtual] = ACTIONS(4042), - [anon_sym_extern] = ACTIONS(4042), - [anon_sym___attribute__] = ACTIONS(4042), - [anon_sym___attribute] = ACTIONS(4042), - [anon_sym_using] = ACTIONS(4042), - [anon_sym_COLON_COLON] = ACTIONS(4044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4044), - [anon_sym___declspec] = ACTIONS(4042), - [anon_sym___based] = ACTIONS(4042), - [anon_sym___cdecl] = ACTIONS(4042), - [anon_sym___clrcall] = ACTIONS(4042), - [anon_sym___stdcall] = ACTIONS(4042), - [anon_sym___fastcall] = ACTIONS(4042), - [anon_sym___thiscall] = ACTIONS(4042), - [anon_sym___vectorcall] = ACTIONS(4042), - [anon_sym_LBRACE] = ACTIONS(4044), - [anon_sym_signed] = ACTIONS(4042), - [anon_sym_unsigned] = ACTIONS(4042), - [anon_sym_long] = ACTIONS(4042), - [anon_sym_short] = ACTIONS(4042), - [anon_sym_LBRACK] = ACTIONS(4042), - [anon_sym_static] = ACTIONS(4042), - [anon_sym_register] = ACTIONS(4042), - [anon_sym_inline] = ACTIONS(4042), - [anon_sym___inline] = ACTIONS(4042), - [anon_sym___inline__] = ACTIONS(4042), - [anon_sym___forceinline] = ACTIONS(4042), - [anon_sym_thread_local] = ACTIONS(4042), - [anon_sym___thread] = ACTIONS(4042), - [anon_sym_const] = ACTIONS(4042), - [anon_sym_constexpr] = ACTIONS(4042), - [anon_sym_volatile] = ACTIONS(4042), - [anon_sym_restrict] = ACTIONS(4042), - [anon_sym___restrict__] = ACTIONS(4042), - [anon_sym__Atomic] = ACTIONS(4042), - [anon_sym__Noreturn] = ACTIONS(4042), - [anon_sym_noreturn] = ACTIONS(4042), - [anon_sym__Nonnull] = ACTIONS(4042), - [anon_sym_mutable] = ACTIONS(4042), - [anon_sym_constinit] = ACTIONS(4042), - [anon_sym_consteval] = ACTIONS(4042), - [anon_sym_alignas] = ACTIONS(4042), - [anon_sym__Alignas] = ACTIONS(4042), - [sym_primitive_type] = ACTIONS(4042), - [anon_sym_enum] = ACTIONS(4042), - [anon_sym_class] = ACTIONS(4042), - [anon_sym_struct] = ACTIONS(4042), - [anon_sym_union] = ACTIONS(4042), - [anon_sym_if] = ACTIONS(4042), - [anon_sym_switch] = ACTIONS(4042), - [anon_sym_case] = ACTIONS(4042), - [anon_sym_default] = ACTIONS(4042), - [anon_sym_while] = ACTIONS(4042), - [anon_sym_do] = ACTIONS(4042), - [anon_sym_for] = ACTIONS(4042), - [anon_sym_return] = ACTIONS(4042), - [anon_sym_break] = ACTIONS(4042), - [anon_sym_continue] = ACTIONS(4042), - [anon_sym_goto] = ACTIONS(4042), - [anon_sym___try] = ACTIONS(4042), - [anon_sym___leave] = ACTIONS(4042), - [anon_sym_not] = ACTIONS(4042), - [anon_sym_compl] = ACTIONS(4042), - [anon_sym_DASH_DASH] = ACTIONS(4044), - [anon_sym_PLUS_PLUS] = ACTIONS(4044), - [anon_sym_sizeof] = ACTIONS(4042), - [anon_sym___alignof__] = ACTIONS(4042), - [anon_sym___alignof] = ACTIONS(4042), - [anon_sym__alignof] = ACTIONS(4042), - [anon_sym_alignof] = ACTIONS(4042), - [anon_sym__Alignof] = ACTIONS(4042), - [anon_sym_offsetof] = ACTIONS(4042), - [anon_sym__Generic] = ACTIONS(4042), - [anon_sym_typename] = ACTIONS(4042), - [anon_sym_asm] = ACTIONS(4042), - [anon_sym___asm__] = ACTIONS(4042), - [anon_sym___asm] = ACTIONS(4042), - [sym_number_literal] = ACTIONS(4044), - [anon_sym_L_SQUOTE] = ACTIONS(4044), - [anon_sym_u_SQUOTE] = ACTIONS(4044), - [anon_sym_U_SQUOTE] = ACTIONS(4044), - [anon_sym_u8_SQUOTE] = ACTIONS(4044), - [anon_sym_SQUOTE] = ACTIONS(4044), - [anon_sym_L_DQUOTE] = ACTIONS(4044), - [anon_sym_u_DQUOTE] = ACTIONS(4044), - [anon_sym_U_DQUOTE] = ACTIONS(4044), - [anon_sym_u8_DQUOTE] = ACTIONS(4044), - [anon_sym_DQUOTE] = ACTIONS(4044), - [sym_true] = ACTIONS(4042), - [sym_false] = ACTIONS(4042), - [anon_sym_NULL] = ACTIONS(4042), - [anon_sym_nullptr] = ACTIONS(4042), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4042), - [anon_sym_decltype] = ACTIONS(4042), - [anon_sym_explicit] = ACTIONS(4042), - [anon_sym_template] = ACTIONS(4042), - [anon_sym_operator] = ACTIONS(4042), - [anon_sym_try] = ACTIONS(4042), - [anon_sym_delete] = ACTIONS(4042), - [anon_sym_throw] = ACTIONS(4042), - [anon_sym_namespace] = ACTIONS(4042), - [anon_sym_static_assert] = ACTIONS(4042), - [anon_sym_concept] = ACTIONS(4042), - [anon_sym_co_return] = ACTIONS(4042), - [anon_sym_co_yield] = ACTIONS(4042), - [anon_sym_R_DQUOTE] = ACTIONS(4044), - [anon_sym_LR_DQUOTE] = ACTIONS(4044), - [anon_sym_uR_DQUOTE] = ACTIONS(4044), - [anon_sym_UR_DQUOTE] = ACTIONS(4044), - [anon_sym_u8R_DQUOTE] = ACTIONS(4044), - [anon_sym_co_await] = ACTIONS(4042), - [anon_sym_new] = ACTIONS(4042), - [anon_sym_requires] = ACTIONS(4042), - [anon_sym_CARET_CARET] = ACTIONS(4044), - [anon_sym_LBRACK_COLON] = ACTIONS(4044), - [sym_this] = ACTIONS(4042), + [STATE(729)] = { + [sym_identifier] = ACTIONS(4172), + [aux_sym_preproc_include_token1] = ACTIONS(4172), + [aux_sym_preproc_def_token1] = ACTIONS(4172), + [aux_sym_preproc_if_token1] = ACTIONS(4172), + [aux_sym_preproc_if_token2] = ACTIONS(4172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4172), + [sym_preproc_directive] = ACTIONS(4172), + [anon_sym_LPAREN2] = ACTIONS(4174), + [anon_sym_BANG] = ACTIONS(4174), + [anon_sym_TILDE] = ACTIONS(4174), + [anon_sym_DASH] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4172), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_AMP_AMP] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4172), + [anon_sym_SEMI] = ACTIONS(4174), + [anon_sym___extension__] = ACTIONS(4172), + [anon_sym_typedef] = ACTIONS(4172), + [anon_sym_virtual] = ACTIONS(4172), + [anon_sym_extern] = ACTIONS(4172), + [anon_sym___attribute__] = ACTIONS(4172), + [anon_sym___attribute] = ACTIONS(4172), + [anon_sym_using] = ACTIONS(4172), + [anon_sym_COLON_COLON] = ACTIONS(4174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4174), + [anon_sym___declspec] = ACTIONS(4172), + [anon_sym___based] = ACTIONS(4172), + [anon_sym___cdecl] = ACTIONS(4172), + [anon_sym___clrcall] = ACTIONS(4172), + [anon_sym___stdcall] = ACTIONS(4172), + [anon_sym___fastcall] = ACTIONS(4172), + [anon_sym___thiscall] = ACTIONS(4172), + [anon_sym___vectorcall] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(4172), + [anon_sym_unsigned] = ACTIONS(4172), + [anon_sym_long] = ACTIONS(4172), + [anon_sym_short] = ACTIONS(4172), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_static] = ACTIONS(4172), + [anon_sym_register] = ACTIONS(4172), + [anon_sym_inline] = ACTIONS(4172), + [anon_sym___inline] = ACTIONS(4172), + [anon_sym___inline__] = ACTIONS(4172), + [anon_sym___forceinline] = ACTIONS(4172), + [anon_sym_thread_local] = ACTIONS(4172), + [anon_sym___thread] = ACTIONS(4172), + [anon_sym_const] = ACTIONS(4172), + [anon_sym_constexpr] = ACTIONS(4172), + [anon_sym_volatile] = ACTIONS(4172), + [anon_sym_restrict] = ACTIONS(4172), + [anon_sym___restrict__] = ACTIONS(4172), + [anon_sym__Atomic] = ACTIONS(4172), + [anon_sym__Noreturn] = ACTIONS(4172), + [anon_sym_noreturn] = ACTIONS(4172), + [anon_sym__Nonnull] = ACTIONS(4172), + [anon_sym_mutable] = ACTIONS(4172), + [anon_sym_constinit] = ACTIONS(4172), + [anon_sym_consteval] = ACTIONS(4172), + [anon_sym_alignas] = ACTIONS(4172), + [anon_sym__Alignas] = ACTIONS(4172), + [sym_primitive_type] = ACTIONS(4172), + [anon_sym_enum] = ACTIONS(4172), + [anon_sym_class] = ACTIONS(4172), + [anon_sym_struct] = ACTIONS(4172), + [anon_sym_union] = ACTIONS(4172), + [anon_sym_if] = ACTIONS(4172), + [anon_sym_switch] = ACTIONS(4172), + [anon_sym_case] = ACTIONS(4172), + [anon_sym_default] = ACTIONS(4172), + [anon_sym_while] = ACTIONS(4172), + [anon_sym_do] = ACTIONS(4172), + [anon_sym_for] = ACTIONS(4172), + [anon_sym_return] = ACTIONS(4172), + [anon_sym_break] = ACTIONS(4172), + [anon_sym_continue] = ACTIONS(4172), + [anon_sym_goto] = ACTIONS(4172), + [anon_sym___try] = ACTIONS(4172), + [anon_sym___leave] = ACTIONS(4172), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_compl] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4174), + [anon_sym_PLUS_PLUS] = ACTIONS(4174), + [anon_sym_sizeof] = ACTIONS(4172), + [anon_sym___alignof__] = ACTIONS(4172), + [anon_sym___alignof] = ACTIONS(4172), + [anon_sym__alignof] = ACTIONS(4172), + [anon_sym_alignof] = ACTIONS(4172), + [anon_sym__Alignof] = ACTIONS(4172), + [anon_sym_offsetof] = ACTIONS(4172), + [anon_sym__Generic] = ACTIONS(4172), + [anon_sym_typename] = ACTIONS(4172), + [anon_sym_asm] = ACTIONS(4172), + [anon_sym___asm__] = ACTIONS(4172), + [anon_sym___asm] = ACTIONS(4172), + [sym_number_literal] = ACTIONS(4174), + [anon_sym_L_SQUOTE] = ACTIONS(4174), + [anon_sym_u_SQUOTE] = ACTIONS(4174), + [anon_sym_U_SQUOTE] = ACTIONS(4174), + [anon_sym_u8_SQUOTE] = ACTIONS(4174), + [anon_sym_SQUOTE] = ACTIONS(4174), + [anon_sym_L_DQUOTE] = ACTIONS(4174), + [anon_sym_u_DQUOTE] = ACTIONS(4174), + [anon_sym_U_DQUOTE] = ACTIONS(4174), + [anon_sym_u8_DQUOTE] = ACTIONS(4174), + [anon_sym_DQUOTE] = ACTIONS(4174), + [sym_true] = ACTIONS(4172), + [sym_false] = ACTIONS(4172), + [anon_sym_NULL] = ACTIONS(4172), + [anon_sym_nullptr] = ACTIONS(4172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4172), + [anon_sym_decltype] = ACTIONS(4172), + [anon_sym_explicit] = ACTIONS(4172), + [anon_sym_export] = ACTIONS(4172), + [anon_sym_module] = ACTIONS(4172), + [anon_sym_import] = ACTIONS(4172), + [anon_sym_template] = ACTIONS(4172), + [anon_sym_operator] = ACTIONS(4172), + [anon_sym_try] = ACTIONS(4172), + [anon_sym_delete] = ACTIONS(4172), + [anon_sym_throw] = ACTIONS(4172), + [anon_sym_namespace] = ACTIONS(4172), + [anon_sym_static_assert] = ACTIONS(4172), + [anon_sym_concept] = ACTIONS(4172), + [anon_sym_co_return] = ACTIONS(4172), + [anon_sym_co_yield] = ACTIONS(4172), + [anon_sym_R_DQUOTE] = ACTIONS(4174), + [anon_sym_LR_DQUOTE] = ACTIONS(4174), + [anon_sym_uR_DQUOTE] = ACTIONS(4174), + [anon_sym_UR_DQUOTE] = ACTIONS(4174), + [anon_sym_u8R_DQUOTE] = ACTIONS(4174), + [anon_sym_co_await] = ACTIONS(4172), + [anon_sym_new] = ACTIONS(4172), + [anon_sym_requires] = ACTIONS(4172), + [anon_sym_CARET_CARET] = ACTIONS(4174), + [anon_sym_LBRACK_COLON] = ACTIONS(4174), + [sym_this] = ACTIONS(4172), }, - [STATE(879)] = { + [STATE(730)] = { [sym_identifier] = ACTIONS(4176), [aux_sym_preproc_include_token1] = ACTIONS(4176), [aux_sym_preproc_def_token1] = ACTIONS(4176), @@ -178597,6 +164264,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4176), [anon_sym_decltype] = ACTIONS(4176), [anon_sym_explicit] = ACTIONS(4176), + [anon_sym_export] = ACTIONS(4176), + [anon_sym_module] = ACTIONS(4176), + [anon_sym_import] = ACTIONS(4176), [anon_sym_template] = ACTIONS(4176), [anon_sym_operator] = ACTIONS(4176), [anon_sym_try] = ACTIONS(4176), @@ -178619,283 +164289,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4178), [sym_this] = ACTIONS(4176), }, - [STATE(880)] = { - [sym_identifier] = ACTIONS(4086), - [aux_sym_preproc_include_token1] = ACTIONS(4086), - [aux_sym_preproc_def_token1] = ACTIONS(4086), - [aux_sym_preproc_if_token1] = ACTIONS(4086), - [aux_sym_preproc_if_token2] = ACTIONS(4086), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4086), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4086), - [sym_preproc_directive] = ACTIONS(4086), - [anon_sym_LPAREN2] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_TILDE] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4086), - [anon_sym_PLUS] = ACTIONS(4086), - [anon_sym_STAR] = ACTIONS(4088), - [anon_sym_AMP_AMP] = ACTIONS(4088), - [anon_sym_AMP] = ACTIONS(4086), - [anon_sym_SEMI] = ACTIONS(4088), - [anon_sym___extension__] = ACTIONS(4086), - [anon_sym_typedef] = ACTIONS(4086), - [anon_sym_virtual] = ACTIONS(4086), - [anon_sym_extern] = ACTIONS(4086), - [anon_sym___attribute__] = ACTIONS(4086), - [anon_sym___attribute] = ACTIONS(4086), - [anon_sym_using] = ACTIONS(4086), - [anon_sym_COLON_COLON] = ACTIONS(4088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4088), - [anon_sym___declspec] = ACTIONS(4086), - [anon_sym___based] = ACTIONS(4086), - [anon_sym___cdecl] = ACTIONS(4086), - [anon_sym___clrcall] = ACTIONS(4086), - [anon_sym___stdcall] = ACTIONS(4086), - [anon_sym___fastcall] = ACTIONS(4086), - [anon_sym___thiscall] = ACTIONS(4086), - [anon_sym___vectorcall] = ACTIONS(4086), - [anon_sym_LBRACE] = ACTIONS(4088), - [anon_sym_signed] = ACTIONS(4086), - [anon_sym_unsigned] = ACTIONS(4086), - [anon_sym_long] = ACTIONS(4086), - [anon_sym_short] = ACTIONS(4086), - [anon_sym_LBRACK] = ACTIONS(4086), - [anon_sym_static] = ACTIONS(4086), - [anon_sym_register] = ACTIONS(4086), - [anon_sym_inline] = ACTIONS(4086), - [anon_sym___inline] = ACTIONS(4086), - [anon_sym___inline__] = ACTIONS(4086), - [anon_sym___forceinline] = ACTIONS(4086), - [anon_sym_thread_local] = ACTIONS(4086), - [anon_sym___thread] = ACTIONS(4086), - [anon_sym_const] = ACTIONS(4086), - [anon_sym_constexpr] = ACTIONS(4086), - [anon_sym_volatile] = ACTIONS(4086), - [anon_sym_restrict] = ACTIONS(4086), - [anon_sym___restrict__] = ACTIONS(4086), - [anon_sym__Atomic] = ACTIONS(4086), - [anon_sym__Noreturn] = ACTIONS(4086), - [anon_sym_noreturn] = ACTIONS(4086), - [anon_sym__Nonnull] = ACTIONS(4086), - [anon_sym_mutable] = ACTIONS(4086), - [anon_sym_constinit] = ACTIONS(4086), - [anon_sym_consteval] = ACTIONS(4086), - [anon_sym_alignas] = ACTIONS(4086), - [anon_sym__Alignas] = ACTIONS(4086), - [sym_primitive_type] = ACTIONS(4086), - [anon_sym_enum] = ACTIONS(4086), - [anon_sym_class] = ACTIONS(4086), - [anon_sym_struct] = ACTIONS(4086), - [anon_sym_union] = ACTIONS(4086), - [anon_sym_if] = ACTIONS(4086), - [anon_sym_switch] = ACTIONS(4086), - [anon_sym_case] = ACTIONS(4086), - [anon_sym_default] = ACTIONS(4086), - [anon_sym_while] = ACTIONS(4086), - [anon_sym_do] = ACTIONS(4086), - [anon_sym_for] = ACTIONS(4086), - [anon_sym_return] = ACTIONS(4086), - [anon_sym_break] = ACTIONS(4086), - [anon_sym_continue] = ACTIONS(4086), - [anon_sym_goto] = ACTIONS(4086), - [anon_sym___try] = ACTIONS(4086), - [anon_sym___leave] = ACTIONS(4086), - [anon_sym_not] = ACTIONS(4086), - [anon_sym_compl] = ACTIONS(4086), - [anon_sym_DASH_DASH] = ACTIONS(4088), - [anon_sym_PLUS_PLUS] = ACTIONS(4088), - [anon_sym_sizeof] = ACTIONS(4086), - [anon_sym___alignof__] = ACTIONS(4086), - [anon_sym___alignof] = ACTIONS(4086), - [anon_sym__alignof] = ACTIONS(4086), - [anon_sym_alignof] = ACTIONS(4086), - [anon_sym__Alignof] = ACTIONS(4086), - [anon_sym_offsetof] = ACTIONS(4086), - [anon_sym__Generic] = ACTIONS(4086), - [anon_sym_typename] = ACTIONS(4086), - [anon_sym_asm] = ACTIONS(4086), - [anon_sym___asm__] = ACTIONS(4086), - [anon_sym___asm] = ACTIONS(4086), - [sym_number_literal] = ACTIONS(4088), - [anon_sym_L_SQUOTE] = ACTIONS(4088), - [anon_sym_u_SQUOTE] = ACTIONS(4088), - [anon_sym_U_SQUOTE] = ACTIONS(4088), - [anon_sym_u8_SQUOTE] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4088), - [anon_sym_L_DQUOTE] = ACTIONS(4088), - [anon_sym_u_DQUOTE] = ACTIONS(4088), - [anon_sym_U_DQUOTE] = ACTIONS(4088), - [anon_sym_u8_DQUOTE] = ACTIONS(4088), - [anon_sym_DQUOTE] = ACTIONS(4088), - [sym_true] = ACTIONS(4086), - [sym_false] = ACTIONS(4086), - [anon_sym_NULL] = ACTIONS(4086), - [anon_sym_nullptr] = ACTIONS(4086), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4086), - [anon_sym_decltype] = ACTIONS(4086), - [anon_sym_explicit] = ACTIONS(4086), - [anon_sym_template] = ACTIONS(4086), - [anon_sym_operator] = ACTIONS(4086), - [anon_sym_try] = ACTIONS(4086), - [anon_sym_delete] = ACTIONS(4086), - [anon_sym_throw] = ACTIONS(4086), - [anon_sym_namespace] = ACTIONS(4086), - [anon_sym_static_assert] = ACTIONS(4086), - [anon_sym_concept] = ACTIONS(4086), - [anon_sym_co_return] = ACTIONS(4086), - [anon_sym_co_yield] = ACTIONS(4086), - [anon_sym_R_DQUOTE] = ACTIONS(4088), - [anon_sym_LR_DQUOTE] = ACTIONS(4088), - [anon_sym_uR_DQUOTE] = ACTIONS(4088), - [anon_sym_UR_DQUOTE] = ACTIONS(4088), - [anon_sym_u8R_DQUOTE] = ACTIONS(4088), - [anon_sym_co_await] = ACTIONS(4086), - [anon_sym_new] = ACTIONS(4086), - [anon_sym_requires] = ACTIONS(4086), - [anon_sym_CARET_CARET] = ACTIONS(4088), - [anon_sym_LBRACK_COLON] = ACTIONS(4088), - [sym_this] = ACTIONS(4086), - }, - [STATE(881)] = { - [sym_identifier] = ACTIONS(4090), - [aux_sym_preproc_include_token1] = ACTIONS(4090), - [aux_sym_preproc_def_token1] = ACTIONS(4090), - [aux_sym_preproc_if_token1] = ACTIONS(4090), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4090), - [sym_preproc_directive] = ACTIONS(4090), - [anon_sym_LPAREN2] = ACTIONS(4092), - [anon_sym_BANG] = ACTIONS(4092), - [anon_sym_TILDE] = ACTIONS(4092), - [anon_sym_DASH] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4090), - [anon_sym_STAR] = ACTIONS(4092), - [anon_sym_AMP_AMP] = ACTIONS(4092), - [anon_sym_AMP] = ACTIONS(4090), - [anon_sym_SEMI] = ACTIONS(4092), - [anon_sym___extension__] = ACTIONS(4090), - [anon_sym_typedef] = ACTIONS(4090), - [anon_sym_virtual] = ACTIONS(4090), - [anon_sym_extern] = ACTIONS(4090), - [anon_sym___attribute__] = ACTIONS(4090), - [anon_sym___attribute] = ACTIONS(4090), - [anon_sym_using] = ACTIONS(4090), - [anon_sym_COLON_COLON] = ACTIONS(4092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4092), - [anon_sym___declspec] = ACTIONS(4090), - [anon_sym___based] = ACTIONS(4090), - [anon_sym___cdecl] = ACTIONS(4090), - [anon_sym___clrcall] = ACTIONS(4090), - [anon_sym___stdcall] = ACTIONS(4090), - [anon_sym___fastcall] = ACTIONS(4090), - [anon_sym___thiscall] = ACTIONS(4090), - [anon_sym___vectorcall] = ACTIONS(4090), - [anon_sym_LBRACE] = ACTIONS(4092), - [anon_sym_RBRACE] = ACTIONS(4092), - [anon_sym_signed] = ACTIONS(4090), - [anon_sym_unsigned] = ACTIONS(4090), - [anon_sym_long] = ACTIONS(4090), - [anon_sym_short] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_static] = ACTIONS(4090), - [anon_sym_register] = ACTIONS(4090), - [anon_sym_inline] = ACTIONS(4090), - [anon_sym___inline] = ACTIONS(4090), - [anon_sym___inline__] = ACTIONS(4090), - [anon_sym___forceinline] = ACTIONS(4090), - [anon_sym_thread_local] = ACTIONS(4090), - [anon_sym___thread] = ACTIONS(4090), - [anon_sym_const] = ACTIONS(4090), - [anon_sym_constexpr] = ACTIONS(4090), - [anon_sym_volatile] = ACTIONS(4090), - [anon_sym_restrict] = ACTIONS(4090), - [anon_sym___restrict__] = ACTIONS(4090), - [anon_sym__Atomic] = ACTIONS(4090), - [anon_sym__Noreturn] = ACTIONS(4090), - [anon_sym_noreturn] = ACTIONS(4090), - [anon_sym__Nonnull] = ACTIONS(4090), - [anon_sym_mutable] = ACTIONS(4090), - [anon_sym_constinit] = ACTIONS(4090), - [anon_sym_consteval] = ACTIONS(4090), - [anon_sym_alignas] = ACTIONS(4090), - [anon_sym__Alignas] = ACTIONS(4090), - [sym_primitive_type] = ACTIONS(4090), - [anon_sym_enum] = ACTIONS(4090), - [anon_sym_class] = ACTIONS(4090), - [anon_sym_struct] = ACTIONS(4090), - [anon_sym_union] = ACTIONS(4090), - [anon_sym_if] = ACTIONS(4090), - [anon_sym_switch] = ACTIONS(4090), - [anon_sym_case] = ACTIONS(4090), - [anon_sym_default] = ACTIONS(4090), - [anon_sym_while] = ACTIONS(4090), - [anon_sym_do] = ACTIONS(4090), - [anon_sym_for] = ACTIONS(4090), - [anon_sym_return] = ACTIONS(4090), - [anon_sym_break] = ACTIONS(4090), - [anon_sym_continue] = ACTIONS(4090), - [anon_sym_goto] = ACTIONS(4090), - [anon_sym___try] = ACTIONS(4090), - [anon_sym___leave] = ACTIONS(4090), - [anon_sym_not] = ACTIONS(4090), - [anon_sym_compl] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4092), - [anon_sym_PLUS_PLUS] = ACTIONS(4092), - [anon_sym_sizeof] = ACTIONS(4090), - [anon_sym___alignof__] = ACTIONS(4090), - [anon_sym___alignof] = ACTIONS(4090), - [anon_sym__alignof] = ACTIONS(4090), - [anon_sym_alignof] = ACTIONS(4090), - [anon_sym__Alignof] = ACTIONS(4090), - [anon_sym_offsetof] = ACTIONS(4090), - [anon_sym__Generic] = ACTIONS(4090), - [anon_sym_typename] = ACTIONS(4090), - [anon_sym_asm] = ACTIONS(4090), - [anon_sym___asm__] = ACTIONS(4090), - [anon_sym___asm] = ACTIONS(4090), - [sym_number_literal] = ACTIONS(4092), - [anon_sym_L_SQUOTE] = ACTIONS(4092), - [anon_sym_u_SQUOTE] = ACTIONS(4092), - [anon_sym_U_SQUOTE] = ACTIONS(4092), - [anon_sym_u8_SQUOTE] = ACTIONS(4092), - [anon_sym_SQUOTE] = ACTIONS(4092), - [anon_sym_L_DQUOTE] = ACTIONS(4092), - [anon_sym_u_DQUOTE] = ACTIONS(4092), - [anon_sym_U_DQUOTE] = ACTIONS(4092), - [anon_sym_u8_DQUOTE] = ACTIONS(4092), - [anon_sym_DQUOTE] = ACTIONS(4092), - [sym_true] = ACTIONS(4090), - [sym_false] = ACTIONS(4090), - [anon_sym_NULL] = ACTIONS(4090), - [anon_sym_nullptr] = ACTIONS(4090), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4090), - [anon_sym_decltype] = ACTIONS(4090), - [anon_sym_explicit] = ACTIONS(4090), - [anon_sym_template] = ACTIONS(4090), - [anon_sym_operator] = ACTIONS(4090), - [anon_sym_try] = ACTIONS(4090), - [anon_sym_delete] = ACTIONS(4090), - [anon_sym_throw] = ACTIONS(4090), - [anon_sym_namespace] = ACTIONS(4090), - [anon_sym_static_assert] = ACTIONS(4090), - [anon_sym_concept] = ACTIONS(4090), - [anon_sym_co_return] = ACTIONS(4090), - [anon_sym_co_yield] = ACTIONS(4090), - [anon_sym_R_DQUOTE] = ACTIONS(4092), - [anon_sym_LR_DQUOTE] = ACTIONS(4092), - [anon_sym_uR_DQUOTE] = ACTIONS(4092), - [anon_sym_UR_DQUOTE] = ACTIONS(4092), - [anon_sym_u8R_DQUOTE] = ACTIONS(4092), - [anon_sym_co_await] = ACTIONS(4090), - [anon_sym_new] = ACTIONS(4090), - [anon_sym_requires] = ACTIONS(4090), - [anon_sym_CARET_CARET] = ACTIONS(4092), - [anon_sym_LBRACK_COLON] = ACTIONS(4092), - [sym_this] = ACTIONS(4090), + [STATE(731)] = { + [sym_identifier] = ACTIONS(4180), + [aux_sym_preproc_include_token1] = ACTIONS(4180), + [aux_sym_preproc_def_token1] = ACTIONS(4180), + [aux_sym_preproc_if_token1] = ACTIONS(4180), + [aux_sym_preproc_if_token2] = ACTIONS(4180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4180), + [sym_preproc_directive] = ACTIONS(4180), + [anon_sym_LPAREN2] = ACTIONS(4182), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_TILDE] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4180), + [anon_sym_STAR] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_AMP] = ACTIONS(4180), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym___extension__] = ACTIONS(4180), + [anon_sym_typedef] = ACTIONS(4180), + [anon_sym_virtual] = ACTIONS(4180), + [anon_sym_extern] = ACTIONS(4180), + [anon_sym___attribute__] = ACTIONS(4180), + [anon_sym___attribute] = ACTIONS(4180), + [anon_sym_using] = ACTIONS(4180), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4182), + [anon_sym___declspec] = ACTIONS(4180), + [anon_sym___based] = ACTIONS(4180), + [anon_sym___cdecl] = ACTIONS(4180), + [anon_sym___clrcall] = ACTIONS(4180), + [anon_sym___stdcall] = ACTIONS(4180), + [anon_sym___fastcall] = ACTIONS(4180), + [anon_sym___thiscall] = ACTIONS(4180), + [anon_sym___vectorcall] = ACTIONS(4180), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_signed] = ACTIONS(4180), + [anon_sym_unsigned] = ACTIONS(4180), + [anon_sym_long] = ACTIONS(4180), + [anon_sym_short] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_static] = ACTIONS(4180), + [anon_sym_register] = ACTIONS(4180), + [anon_sym_inline] = ACTIONS(4180), + [anon_sym___inline] = ACTIONS(4180), + [anon_sym___inline__] = ACTIONS(4180), + [anon_sym___forceinline] = ACTIONS(4180), + [anon_sym_thread_local] = ACTIONS(4180), + [anon_sym___thread] = ACTIONS(4180), + [anon_sym_const] = ACTIONS(4180), + [anon_sym_constexpr] = ACTIONS(4180), + [anon_sym_volatile] = ACTIONS(4180), + [anon_sym_restrict] = ACTIONS(4180), + [anon_sym___restrict__] = ACTIONS(4180), + [anon_sym__Atomic] = ACTIONS(4180), + [anon_sym__Noreturn] = ACTIONS(4180), + [anon_sym_noreturn] = ACTIONS(4180), + [anon_sym__Nonnull] = ACTIONS(4180), + [anon_sym_mutable] = ACTIONS(4180), + [anon_sym_constinit] = ACTIONS(4180), + [anon_sym_consteval] = ACTIONS(4180), + [anon_sym_alignas] = ACTIONS(4180), + [anon_sym__Alignas] = ACTIONS(4180), + [sym_primitive_type] = ACTIONS(4180), + [anon_sym_enum] = ACTIONS(4180), + [anon_sym_class] = ACTIONS(4180), + [anon_sym_struct] = ACTIONS(4180), + [anon_sym_union] = ACTIONS(4180), + [anon_sym_if] = ACTIONS(4180), + [anon_sym_switch] = ACTIONS(4180), + [anon_sym_case] = ACTIONS(4180), + [anon_sym_default] = ACTIONS(4180), + [anon_sym_while] = ACTIONS(4180), + [anon_sym_do] = ACTIONS(4180), + [anon_sym_for] = ACTIONS(4180), + [anon_sym_return] = ACTIONS(4180), + [anon_sym_break] = ACTIONS(4180), + [anon_sym_continue] = ACTIONS(4180), + [anon_sym_goto] = ACTIONS(4180), + [anon_sym___try] = ACTIONS(4180), + [anon_sym___leave] = ACTIONS(4180), + [anon_sym_not] = ACTIONS(4180), + [anon_sym_compl] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_sizeof] = ACTIONS(4180), + [anon_sym___alignof__] = ACTIONS(4180), + [anon_sym___alignof] = ACTIONS(4180), + [anon_sym__alignof] = ACTIONS(4180), + [anon_sym_alignof] = ACTIONS(4180), + [anon_sym__Alignof] = ACTIONS(4180), + [anon_sym_offsetof] = ACTIONS(4180), + [anon_sym__Generic] = ACTIONS(4180), + [anon_sym_typename] = ACTIONS(4180), + [anon_sym_asm] = ACTIONS(4180), + [anon_sym___asm__] = ACTIONS(4180), + [anon_sym___asm] = ACTIONS(4180), + [sym_number_literal] = ACTIONS(4182), + [anon_sym_L_SQUOTE] = ACTIONS(4182), + [anon_sym_u_SQUOTE] = ACTIONS(4182), + [anon_sym_U_SQUOTE] = ACTIONS(4182), + [anon_sym_u8_SQUOTE] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4182), + [anon_sym_L_DQUOTE] = ACTIONS(4182), + [anon_sym_u_DQUOTE] = ACTIONS(4182), + [anon_sym_U_DQUOTE] = ACTIONS(4182), + [anon_sym_u8_DQUOTE] = ACTIONS(4182), + [anon_sym_DQUOTE] = ACTIONS(4182), + [sym_true] = ACTIONS(4180), + [sym_false] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_nullptr] = ACTIONS(4180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4180), + [anon_sym_decltype] = ACTIONS(4180), + [anon_sym_explicit] = ACTIONS(4180), + [anon_sym_export] = ACTIONS(4180), + [anon_sym_module] = ACTIONS(4180), + [anon_sym_import] = ACTIONS(4180), + [anon_sym_template] = ACTIONS(4180), + [anon_sym_operator] = ACTIONS(4180), + [anon_sym_try] = ACTIONS(4180), + [anon_sym_delete] = ACTIONS(4180), + [anon_sym_throw] = ACTIONS(4180), + [anon_sym_namespace] = ACTIONS(4180), + [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_concept] = ACTIONS(4180), + [anon_sym_co_return] = ACTIONS(4180), + [anon_sym_co_yield] = ACTIONS(4180), + [anon_sym_R_DQUOTE] = ACTIONS(4182), + [anon_sym_LR_DQUOTE] = ACTIONS(4182), + [anon_sym_uR_DQUOTE] = ACTIONS(4182), + [anon_sym_UR_DQUOTE] = ACTIONS(4182), + [anon_sym_u8R_DQUOTE] = ACTIONS(4182), + [anon_sym_co_await] = ACTIONS(4180), + [anon_sym_new] = ACTIONS(4180), + [anon_sym_requires] = ACTIONS(4180), + [anon_sym_CARET_CARET] = ACTIONS(4182), + [anon_sym_LBRACK_COLON] = ACTIONS(4182), + [sym_this] = ACTIONS(4180), }, - [STATE(882)] = { + [STATE(732)] = { [sym_identifier] = ACTIONS(4184), [aux_sym_preproc_include_token1] = ACTIONS(4184), [aux_sym_preproc_def_token1] = ACTIONS(4184), @@ -179011,6 +164546,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4184), [anon_sym_decltype] = ACTIONS(4184), [anon_sym_explicit] = ACTIONS(4184), + [anon_sym_export] = ACTIONS(4184), + [anon_sym_module] = ACTIONS(4184), + [anon_sym_import] = ACTIONS(4184), [anon_sym_template] = ACTIONS(4184), [anon_sym_operator] = ACTIONS(4184), [anon_sym_try] = ACTIONS(4184), @@ -179033,145 +164571,1840 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4186), [sym_this] = ACTIONS(4184), }, - [STATE(883)] = { - [sym_identifier] = ACTIONS(4148), - [aux_sym_preproc_include_token1] = ACTIONS(4148), - [aux_sym_preproc_def_token1] = ACTIONS(4148), - [aux_sym_preproc_if_token1] = ACTIONS(4148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4148), - [sym_preproc_directive] = ACTIONS(4148), - [anon_sym_LPAREN2] = ACTIONS(4150), - [anon_sym_BANG] = ACTIONS(4150), - [anon_sym_TILDE] = ACTIONS(4150), - [anon_sym_DASH] = ACTIONS(4148), - [anon_sym_PLUS] = ACTIONS(4148), - [anon_sym_STAR] = ACTIONS(4150), - [anon_sym_AMP_AMP] = ACTIONS(4150), - [anon_sym_AMP] = ACTIONS(4148), - [anon_sym_SEMI] = ACTIONS(4150), - [anon_sym___extension__] = ACTIONS(4148), - [anon_sym_typedef] = ACTIONS(4148), - [anon_sym_virtual] = ACTIONS(4148), - [anon_sym_extern] = ACTIONS(4148), - [anon_sym___attribute__] = ACTIONS(4148), - [anon_sym___attribute] = ACTIONS(4148), - [anon_sym_using] = ACTIONS(4148), - [anon_sym_COLON_COLON] = ACTIONS(4150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4150), - [anon_sym___declspec] = ACTIONS(4148), - [anon_sym___based] = ACTIONS(4148), - [anon_sym___cdecl] = ACTIONS(4148), - [anon_sym___clrcall] = ACTIONS(4148), - [anon_sym___stdcall] = ACTIONS(4148), - [anon_sym___fastcall] = ACTIONS(4148), - [anon_sym___thiscall] = ACTIONS(4148), - [anon_sym___vectorcall] = ACTIONS(4148), - [anon_sym_LBRACE] = ACTIONS(4150), - [anon_sym_RBRACE] = ACTIONS(4150), - [anon_sym_signed] = ACTIONS(4148), - [anon_sym_unsigned] = ACTIONS(4148), - [anon_sym_long] = ACTIONS(4148), - [anon_sym_short] = ACTIONS(4148), - [anon_sym_LBRACK] = ACTIONS(4148), - [anon_sym_static] = ACTIONS(4148), - [anon_sym_register] = ACTIONS(4148), - [anon_sym_inline] = ACTIONS(4148), - [anon_sym___inline] = ACTIONS(4148), - [anon_sym___inline__] = ACTIONS(4148), - [anon_sym___forceinline] = ACTIONS(4148), - [anon_sym_thread_local] = ACTIONS(4148), - [anon_sym___thread] = ACTIONS(4148), - [anon_sym_const] = ACTIONS(4148), - [anon_sym_constexpr] = ACTIONS(4148), - [anon_sym_volatile] = ACTIONS(4148), - [anon_sym_restrict] = ACTIONS(4148), - [anon_sym___restrict__] = ACTIONS(4148), - [anon_sym__Atomic] = ACTIONS(4148), - [anon_sym__Noreturn] = ACTIONS(4148), - [anon_sym_noreturn] = ACTIONS(4148), - [anon_sym__Nonnull] = ACTIONS(4148), - [anon_sym_mutable] = ACTIONS(4148), - [anon_sym_constinit] = ACTIONS(4148), - [anon_sym_consteval] = ACTIONS(4148), - [anon_sym_alignas] = ACTIONS(4148), - [anon_sym__Alignas] = ACTIONS(4148), - [sym_primitive_type] = ACTIONS(4148), - [anon_sym_enum] = ACTIONS(4148), - [anon_sym_class] = ACTIONS(4148), - [anon_sym_struct] = ACTIONS(4148), - [anon_sym_union] = ACTIONS(4148), - [anon_sym_if] = ACTIONS(4148), - [anon_sym_switch] = ACTIONS(4148), - [anon_sym_case] = ACTIONS(4148), - [anon_sym_default] = ACTIONS(4148), - [anon_sym_while] = ACTIONS(4148), - [anon_sym_do] = ACTIONS(4148), - [anon_sym_for] = ACTIONS(4148), - [anon_sym_return] = ACTIONS(4148), - [anon_sym_break] = ACTIONS(4148), - [anon_sym_continue] = ACTIONS(4148), - [anon_sym_goto] = ACTIONS(4148), - [anon_sym___try] = ACTIONS(4148), - [anon_sym___leave] = ACTIONS(4148), - [anon_sym_not] = ACTIONS(4148), - [anon_sym_compl] = ACTIONS(4148), - [anon_sym_DASH_DASH] = ACTIONS(4150), - [anon_sym_PLUS_PLUS] = ACTIONS(4150), - [anon_sym_sizeof] = ACTIONS(4148), - [anon_sym___alignof__] = ACTIONS(4148), - [anon_sym___alignof] = ACTIONS(4148), - [anon_sym__alignof] = ACTIONS(4148), - [anon_sym_alignof] = ACTIONS(4148), - [anon_sym__Alignof] = ACTIONS(4148), - [anon_sym_offsetof] = ACTIONS(4148), - [anon_sym__Generic] = ACTIONS(4148), - [anon_sym_typename] = ACTIONS(4148), - [anon_sym_asm] = ACTIONS(4148), - [anon_sym___asm__] = ACTIONS(4148), - [anon_sym___asm] = ACTIONS(4148), - [sym_number_literal] = ACTIONS(4150), - [anon_sym_L_SQUOTE] = ACTIONS(4150), - [anon_sym_u_SQUOTE] = ACTIONS(4150), - [anon_sym_U_SQUOTE] = ACTIONS(4150), - [anon_sym_u8_SQUOTE] = ACTIONS(4150), - [anon_sym_SQUOTE] = ACTIONS(4150), - [anon_sym_L_DQUOTE] = ACTIONS(4150), - [anon_sym_u_DQUOTE] = ACTIONS(4150), - [anon_sym_U_DQUOTE] = ACTIONS(4150), - [anon_sym_u8_DQUOTE] = ACTIONS(4150), - [anon_sym_DQUOTE] = ACTIONS(4150), - [sym_true] = ACTIONS(4148), - [sym_false] = ACTIONS(4148), - [anon_sym_NULL] = ACTIONS(4148), - [anon_sym_nullptr] = ACTIONS(4148), + [STATE(733)] = { + [sym_identifier] = ACTIONS(3163), + [aux_sym_preproc_include_token1] = ACTIONS(3163), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [anon_sym_COMMA] = ACTIONS(3488), + [aux_sym_preproc_if_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), + [sym_preproc_directive] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_extern] = ACTIONS(3163), + [anon_sym___attribute__] = ACTIONS(3163), + [anon_sym___attribute] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3163), + [anon_sym___based] = ACTIONS(3163), + [anon_sym___cdecl] = ACTIONS(3163), + [anon_sym___clrcall] = ACTIONS(3163), + [anon_sym___stdcall] = ACTIONS(3163), + [anon_sym___fastcall] = ACTIONS(3163), + [anon_sym___thiscall] = ACTIONS(3163), + [anon_sym___vectorcall] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_RBRACE] = ACTIONS(3488), + [anon_sym_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym___inline] = ACTIONS(3163), + [anon_sym___inline__] = ACTIONS(3163), + [anon_sym___forceinline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym___thread] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym___restrict__] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym__Noreturn] = ACTIONS(3163), + [anon_sym_noreturn] = ACTIONS(3163), + [anon_sym__Nonnull] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym__Alignas] = ACTIONS(3163), + [sym_primitive_type] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_switch] = ACTIONS(3163), + [anon_sym_case] = ACTIONS(3163), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_goto] = ACTIONS(3163), + [anon_sym___try] = ACTIONS(3163), + [anon_sym___leave] = ACTIONS(3163), + [anon_sym_not] = ACTIONS(3163), + [anon_sym_compl] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3163), + [anon_sym___alignof__] = ACTIONS(3163), + [anon_sym___alignof] = ACTIONS(3163), + [anon_sym__alignof] = ACTIONS(3163), + [anon_sym_alignof] = ACTIONS(3163), + [anon_sym__Alignof] = ACTIONS(3163), + [anon_sym_offsetof] = ACTIONS(3163), + [anon_sym__Generic] = ACTIONS(3163), + [anon_sym_typename] = ACTIONS(3163), + [anon_sym_asm] = ACTIONS(3163), + [anon_sym___asm__] = ACTIONS(3163), + [anon_sym___asm] = ACTIONS(3163), + [sym_number_literal] = ACTIONS(3161), + [anon_sym_L_SQUOTE] = ACTIONS(3161), + [anon_sym_u_SQUOTE] = ACTIONS(3161), + [anon_sym_U_SQUOTE] = ACTIONS(3161), + [anon_sym_u8_SQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_L_DQUOTE] = ACTIONS(3161), + [anon_sym_u_DQUOTE] = ACTIONS(3161), + [anon_sym_U_DQUOTE] = ACTIONS(3161), + [anon_sym_u8_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [anon_sym_NULL] = ACTIONS(3163), + [anon_sym_nullptr] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_export] = ACTIONS(3163), + [anon_sym_import] = ACTIONS(3163), + [anon_sym_template] = ACTIONS(3163), + [anon_sym_operator] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_delete] = ACTIONS(3163), + [anon_sym_throw] = ACTIONS(3163), + [anon_sym_namespace] = ACTIONS(3163), + [anon_sym_static_assert] = ACTIONS(3163), + [anon_sym_concept] = ACTIONS(3163), + [anon_sym_co_return] = ACTIONS(3163), + [anon_sym_co_yield] = ACTIONS(3163), + [anon_sym_R_DQUOTE] = ACTIONS(3161), + [anon_sym_LR_DQUOTE] = ACTIONS(3161), + [anon_sym_uR_DQUOTE] = ACTIONS(3161), + [anon_sym_UR_DQUOTE] = ACTIONS(3161), + [anon_sym_u8R_DQUOTE] = ACTIONS(3161), + [anon_sym_co_await] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_requires] = ACTIONS(3163), + [anon_sym_CARET_CARET] = ACTIONS(3161), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), + [sym_this] = ACTIONS(3163), + }, + [STATE(734)] = { + [sym_identifier] = ACTIONS(4262), + [aux_sym_preproc_include_token1] = ACTIONS(4262), + [aux_sym_preproc_def_token1] = ACTIONS(4262), + [aux_sym_preproc_if_token1] = ACTIONS(4262), + [aux_sym_preproc_if_token2] = ACTIONS(4262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4262), + [sym_preproc_directive] = ACTIONS(4262), + [anon_sym_LPAREN2] = ACTIONS(4264), + [anon_sym_BANG] = ACTIONS(4264), + [anon_sym_TILDE] = ACTIONS(4264), + [anon_sym_DASH] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4262), + [anon_sym_STAR] = ACTIONS(4264), + [anon_sym_AMP_AMP] = ACTIONS(4264), + [anon_sym_AMP] = ACTIONS(4262), + [anon_sym_SEMI] = ACTIONS(4264), + [anon_sym___extension__] = ACTIONS(4262), + [anon_sym_typedef] = ACTIONS(4262), + [anon_sym_virtual] = ACTIONS(4262), + [anon_sym_extern] = ACTIONS(4262), + [anon_sym___attribute__] = ACTIONS(4262), + [anon_sym___attribute] = ACTIONS(4262), + [anon_sym_using] = ACTIONS(4262), + [anon_sym_COLON_COLON] = ACTIONS(4264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4264), + [anon_sym___declspec] = ACTIONS(4262), + [anon_sym___based] = ACTIONS(4262), + [anon_sym___cdecl] = ACTIONS(4262), + [anon_sym___clrcall] = ACTIONS(4262), + [anon_sym___stdcall] = ACTIONS(4262), + [anon_sym___fastcall] = ACTIONS(4262), + [anon_sym___thiscall] = ACTIONS(4262), + [anon_sym___vectorcall] = ACTIONS(4262), + [anon_sym_LBRACE] = ACTIONS(4264), + [anon_sym_signed] = ACTIONS(4262), + [anon_sym_unsigned] = ACTIONS(4262), + [anon_sym_long] = ACTIONS(4262), + [anon_sym_short] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_static] = ACTIONS(4262), + [anon_sym_register] = ACTIONS(4262), + [anon_sym_inline] = ACTIONS(4262), + [anon_sym___inline] = ACTIONS(4262), + [anon_sym___inline__] = ACTIONS(4262), + [anon_sym___forceinline] = ACTIONS(4262), + [anon_sym_thread_local] = ACTIONS(4262), + [anon_sym___thread] = ACTIONS(4262), + [anon_sym_const] = ACTIONS(4262), + [anon_sym_constexpr] = ACTIONS(4262), + [anon_sym_volatile] = ACTIONS(4262), + [anon_sym_restrict] = ACTIONS(4262), + [anon_sym___restrict__] = ACTIONS(4262), + [anon_sym__Atomic] = ACTIONS(4262), + [anon_sym__Noreturn] = ACTIONS(4262), + [anon_sym_noreturn] = ACTIONS(4262), + [anon_sym__Nonnull] = ACTIONS(4262), + [anon_sym_mutable] = ACTIONS(4262), + [anon_sym_constinit] = ACTIONS(4262), + [anon_sym_consteval] = ACTIONS(4262), + [anon_sym_alignas] = ACTIONS(4262), + [anon_sym__Alignas] = ACTIONS(4262), + [sym_primitive_type] = ACTIONS(4262), + [anon_sym_enum] = ACTIONS(4262), + [anon_sym_class] = ACTIONS(4262), + [anon_sym_struct] = ACTIONS(4262), + [anon_sym_union] = ACTIONS(4262), + [anon_sym_if] = ACTIONS(4262), + [anon_sym_switch] = ACTIONS(4262), + [anon_sym_case] = ACTIONS(4262), + [anon_sym_default] = ACTIONS(4262), + [anon_sym_while] = ACTIONS(4262), + [anon_sym_do] = ACTIONS(4262), + [anon_sym_for] = ACTIONS(4262), + [anon_sym_return] = ACTIONS(4262), + [anon_sym_break] = ACTIONS(4262), + [anon_sym_continue] = ACTIONS(4262), + [anon_sym_goto] = ACTIONS(4262), + [anon_sym___try] = ACTIONS(4262), + [anon_sym___leave] = ACTIONS(4262), + [anon_sym_not] = ACTIONS(4262), + [anon_sym_compl] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4264), + [anon_sym_PLUS_PLUS] = ACTIONS(4264), + [anon_sym_sizeof] = ACTIONS(4262), + [anon_sym___alignof__] = ACTIONS(4262), + [anon_sym___alignof] = ACTIONS(4262), + [anon_sym__alignof] = ACTIONS(4262), + [anon_sym_alignof] = ACTIONS(4262), + [anon_sym__Alignof] = ACTIONS(4262), + [anon_sym_offsetof] = ACTIONS(4262), + [anon_sym__Generic] = ACTIONS(4262), + [anon_sym_typename] = ACTIONS(4262), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [anon_sym___asm] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4264), + [anon_sym_u_SQUOTE] = ACTIONS(4264), + [anon_sym_U_SQUOTE] = ACTIONS(4264), + [anon_sym_u8_SQUOTE] = ACTIONS(4264), + [anon_sym_SQUOTE] = ACTIONS(4264), + [anon_sym_L_DQUOTE] = ACTIONS(4264), + [anon_sym_u_DQUOTE] = ACTIONS(4264), + [anon_sym_U_DQUOTE] = ACTIONS(4264), + [anon_sym_u8_DQUOTE] = ACTIONS(4264), + [anon_sym_DQUOTE] = ACTIONS(4264), + [sym_true] = ACTIONS(4262), + [sym_false] = ACTIONS(4262), + [anon_sym_NULL] = ACTIONS(4262), + [anon_sym_nullptr] = ACTIONS(4262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4262), + [anon_sym_decltype] = ACTIONS(4262), + [anon_sym_explicit] = ACTIONS(4262), + [anon_sym_export] = ACTIONS(4262), + [anon_sym_module] = ACTIONS(4262), + [anon_sym_import] = ACTIONS(4262), + [anon_sym_template] = ACTIONS(4262), + [anon_sym_operator] = ACTIONS(4262), + [anon_sym_try] = ACTIONS(4262), + [anon_sym_delete] = ACTIONS(4262), + [anon_sym_throw] = ACTIONS(4262), + [anon_sym_namespace] = ACTIONS(4262), + [anon_sym_static_assert] = ACTIONS(4262), + [anon_sym_concept] = ACTIONS(4262), + [anon_sym_co_return] = ACTIONS(4262), + [anon_sym_co_yield] = ACTIONS(4262), + [anon_sym_R_DQUOTE] = ACTIONS(4264), + [anon_sym_LR_DQUOTE] = ACTIONS(4264), + [anon_sym_uR_DQUOTE] = ACTIONS(4264), + [anon_sym_UR_DQUOTE] = ACTIONS(4264), + [anon_sym_u8R_DQUOTE] = ACTIONS(4264), + [anon_sym_co_await] = ACTIONS(4262), + [anon_sym_new] = ACTIONS(4262), + [anon_sym_requires] = ACTIONS(4262), + [anon_sym_CARET_CARET] = ACTIONS(4264), + [anon_sym_LBRACK_COLON] = ACTIONS(4264), + [sym_this] = ACTIONS(4262), + }, + [STATE(735)] = { + [sym_identifier] = ACTIONS(4274), + [aux_sym_preproc_include_token1] = ACTIONS(4274), + [aux_sym_preproc_def_token1] = ACTIONS(4274), + [aux_sym_preproc_if_token1] = ACTIONS(4274), + [aux_sym_preproc_if_token2] = ACTIONS(4274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4274), + [sym_preproc_directive] = ACTIONS(4274), + [anon_sym_LPAREN2] = ACTIONS(4276), + [anon_sym_BANG] = ACTIONS(4276), + [anon_sym_TILDE] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_AMP] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym___extension__] = ACTIONS(4274), + [anon_sym_typedef] = ACTIONS(4274), + [anon_sym_virtual] = ACTIONS(4274), + [anon_sym_extern] = ACTIONS(4274), + [anon_sym___attribute__] = ACTIONS(4274), + [anon_sym___attribute] = ACTIONS(4274), + [anon_sym_using] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4276), + [anon_sym___declspec] = ACTIONS(4274), + [anon_sym___based] = ACTIONS(4274), + [anon_sym___cdecl] = ACTIONS(4274), + [anon_sym___clrcall] = ACTIONS(4274), + [anon_sym___stdcall] = ACTIONS(4274), + [anon_sym___fastcall] = ACTIONS(4274), + [anon_sym___thiscall] = ACTIONS(4274), + [anon_sym___vectorcall] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(4276), + [anon_sym_signed] = ACTIONS(4274), + [anon_sym_unsigned] = ACTIONS(4274), + [anon_sym_long] = ACTIONS(4274), + [anon_sym_short] = ACTIONS(4274), + [anon_sym_LBRACK] = ACTIONS(4274), + [anon_sym_static] = ACTIONS(4274), + [anon_sym_register] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym___inline] = ACTIONS(4274), + [anon_sym___inline__] = ACTIONS(4274), + [anon_sym___forceinline] = ACTIONS(4274), + [anon_sym_thread_local] = ACTIONS(4274), + [anon_sym___thread] = ACTIONS(4274), + [anon_sym_const] = ACTIONS(4274), + [anon_sym_constexpr] = ACTIONS(4274), + [anon_sym_volatile] = ACTIONS(4274), + [anon_sym_restrict] = ACTIONS(4274), + [anon_sym___restrict__] = ACTIONS(4274), + [anon_sym__Atomic] = ACTIONS(4274), + [anon_sym__Noreturn] = ACTIONS(4274), + [anon_sym_noreturn] = ACTIONS(4274), + [anon_sym__Nonnull] = ACTIONS(4274), + [anon_sym_mutable] = ACTIONS(4274), + [anon_sym_constinit] = ACTIONS(4274), + [anon_sym_consteval] = ACTIONS(4274), + [anon_sym_alignas] = ACTIONS(4274), + [anon_sym__Alignas] = ACTIONS(4274), + [sym_primitive_type] = ACTIONS(4274), + [anon_sym_enum] = ACTIONS(4274), + [anon_sym_class] = ACTIONS(4274), + [anon_sym_struct] = ACTIONS(4274), + [anon_sym_union] = ACTIONS(4274), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_switch] = ACTIONS(4274), + [anon_sym_case] = ACTIONS(4274), + [anon_sym_default] = ACTIONS(4274), + [anon_sym_while] = ACTIONS(4274), + [anon_sym_do] = ACTIONS(4274), + [anon_sym_for] = ACTIONS(4274), + [anon_sym_return] = ACTIONS(4274), + [anon_sym_break] = ACTIONS(4274), + [anon_sym_continue] = ACTIONS(4274), + [anon_sym_goto] = ACTIONS(4274), + [anon_sym___try] = ACTIONS(4274), + [anon_sym___leave] = ACTIONS(4274), + [anon_sym_not] = ACTIONS(4274), + [anon_sym_compl] = ACTIONS(4274), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_sizeof] = ACTIONS(4274), + [anon_sym___alignof__] = ACTIONS(4274), + [anon_sym___alignof] = ACTIONS(4274), + [anon_sym__alignof] = ACTIONS(4274), + [anon_sym_alignof] = ACTIONS(4274), + [anon_sym__Alignof] = ACTIONS(4274), + [anon_sym_offsetof] = ACTIONS(4274), + [anon_sym__Generic] = ACTIONS(4274), + [anon_sym_typename] = ACTIONS(4274), + [anon_sym_asm] = ACTIONS(4274), + [anon_sym___asm__] = ACTIONS(4274), + [anon_sym___asm] = ACTIONS(4274), + [sym_number_literal] = ACTIONS(4276), + [anon_sym_L_SQUOTE] = ACTIONS(4276), + [anon_sym_u_SQUOTE] = ACTIONS(4276), + [anon_sym_U_SQUOTE] = ACTIONS(4276), + [anon_sym_u8_SQUOTE] = ACTIONS(4276), + [anon_sym_SQUOTE] = ACTIONS(4276), + [anon_sym_L_DQUOTE] = ACTIONS(4276), + [anon_sym_u_DQUOTE] = ACTIONS(4276), + [anon_sym_U_DQUOTE] = ACTIONS(4276), + [anon_sym_u8_DQUOTE] = ACTIONS(4276), + [anon_sym_DQUOTE] = ACTIONS(4276), + [sym_true] = ACTIONS(4274), + [sym_false] = ACTIONS(4274), + [anon_sym_NULL] = ACTIONS(4274), + [anon_sym_nullptr] = ACTIONS(4274), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4274), + [anon_sym_decltype] = ACTIONS(4274), + [anon_sym_explicit] = ACTIONS(4274), + [anon_sym_export] = ACTIONS(4274), + [anon_sym_module] = ACTIONS(4274), + [anon_sym_import] = ACTIONS(4274), + [anon_sym_template] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_try] = ACTIONS(4274), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_throw] = ACTIONS(4274), + [anon_sym_namespace] = ACTIONS(4274), + [anon_sym_static_assert] = ACTIONS(4274), + [anon_sym_concept] = ACTIONS(4274), + [anon_sym_co_return] = ACTIONS(4274), + [anon_sym_co_yield] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4274), + [anon_sym_new] = ACTIONS(4274), + [anon_sym_requires] = ACTIONS(4274), + [anon_sym_CARET_CARET] = ACTIONS(4276), + [anon_sym_LBRACK_COLON] = ACTIONS(4276), + [sym_this] = ACTIONS(4274), + }, + [STATE(736)] = { + [sym_identifier] = ACTIONS(4278), + [aux_sym_preproc_include_token1] = ACTIONS(4278), + [aux_sym_preproc_def_token1] = ACTIONS(4278), + [aux_sym_preproc_if_token1] = ACTIONS(4278), + [aux_sym_preproc_if_token2] = ACTIONS(4278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4278), + [sym_preproc_directive] = ACTIONS(4278), + [anon_sym_LPAREN2] = ACTIONS(4280), + [anon_sym_BANG] = ACTIONS(4280), + [anon_sym_TILDE] = ACTIONS(4280), + [anon_sym_DASH] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_STAR] = ACTIONS(4280), + [anon_sym_AMP_AMP] = ACTIONS(4280), + [anon_sym_AMP] = ACTIONS(4278), + [anon_sym_SEMI] = ACTIONS(4280), + [anon_sym___extension__] = ACTIONS(4278), + [anon_sym_typedef] = ACTIONS(4278), + [anon_sym_virtual] = ACTIONS(4278), + [anon_sym_extern] = ACTIONS(4278), + [anon_sym___attribute__] = ACTIONS(4278), + [anon_sym___attribute] = ACTIONS(4278), + [anon_sym_using] = ACTIONS(4278), + [anon_sym_COLON_COLON] = ACTIONS(4280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4280), + [anon_sym___declspec] = ACTIONS(4278), + [anon_sym___based] = ACTIONS(4278), + [anon_sym___cdecl] = ACTIONS(4278), + [anon_sym___clrcall] = ACTIONS(4278), + [anon_sym___stdcall] = ACTIONS(4278), + [anon_sym___fastcall] = ACTIONS(4278), + [anon_sym___thiscall] = ACTIONS(4278), + [anon_sym___vectorcall] = ACTIONS(4278), + [anon_sym_LBRACE] = ACTIONS(4280), + [anon_sym_signed] = ACTIONS(4278), + [anon_sym_unsigned] = ACTIONS(4278), + [anon_sym_long] = ACTIONS(4278), + [anon_sym_short] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_register] = ACTIONS(4278), + [anon_sym_inline] = ACTIONS(4278), + [anon_sym___inline] = ACTIONS(4278), + [anon_sym___inline__] = ACTIONS(4278), + [anon_sym___forceinline] = ACTIONS(4278), + [anon_sym_thread_local] = ACTIONS(4278), + [anon_sym___thread] = ACTIONS(4278), + [anon_sym_const] = ACTIONS(4278), + [anon_sym_constexpr] = ACTIONS(4278), + [anon_sym_volatile] = ACTIONS(4278), + [anon_sym_restrict] = ACTIONS(4278), + [anon_sym___restrict__] = ACTIONS(4278), + [anon_sym__Atomic] = ACTIONS(4278), + [anon_sym__Noreturn] = ACTIONS(4278), + [anon_sym_noreturn] = ACTIONS(4278), + [anon_sym__Nonnull] = ACTIONS(4278), + [anon_sym_mutable] = ACTIONS(4278), + [anon_sym_constinit] = ACTIONS(4278), + [anon_sym_consteval] = ACTIONS(4278), + [anon_sym_alignas] = ACTIONS(4278), + [anon_sym__Alignas] = ACTIONS(4278), + [sym_primitive_type] = ACTIONS(4278), + [anon_sym_enum] = ACTIONS(4278), + [anon_sym_class] = ACTIONS(4278), + [anon_sym_struct] = ACTIONS(4278), + [anon_sym_union] = ACTIONS(4278), + [anon_sym_if] = ACTIONS(4278), + [anon_sym_switch] = ACTIONS(4278), + [anon_sym_case] = ACTIONS(4278), + [anon_sym_default] = ACTIONS(4278), + [anon_sym_while] = ACTIONS(4278), + [anon_sym_do] = ACTIONS(4278), + [anon_sym_for] = ACTIONS(4278), + [anon_sym_return] = ACTIONS(4278), + [anon_sym_break] = ACTIONS(4278), + [anon_sym_continue] = ACTIONS(4278), + [anon_sym_goto] = ACTIONS(4278), + [anon_sym___try] = ACTIONS(4278), + [anon_sym___leave] = ACTIONS(4278), + [anon_sym_not] = ACTIONS(4278), + [anon_sym_compl] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4280), + [anon_sym_PLUS_PLUS] = ACTIONS(4280), + [anon_sym_sizeof] = ACTIONS(4278), + [anon_sym___alignof__] = ACTIONS(4278), + [anon_sym___alignof] = ACTIONS(4278), + [anon_sym__alignof] = ACTIONS(4278), + [anon_sym_alignof] = ACTIONS(4278), + [anon_sym__Alignof] = ACTIONS(4278), + [anon_sym_offsetof] = ACTIONS(4278), + [anon_sym__Generic] = ACTIONS(4278), + [anon_sym_typename] = ACTIONS(4278), + [anon_sym_asm] = ACTIONS(4278), + [anon_sym___asm__] = ACTIONS(4278), + [anon_sym___asm] = ACTIONS(4278), + [sym_number_literal] = ACTIONS(4280), + [anon_sym_L_SQUOTE] = ACTIONS(4280), + [anon_sym_u_SQUOTE] = ACTIONS(4280), + [anon_sym_U_SQUOTE] = ACTIONS(4280), + [anon_sym_u8_SQUOTE] = ACTIONS(4280), + [anon_sym_SQUOTE] = ACTIONS(4280), + [anon_sym_L_DQUOTE] = ACTIONS(4280), + [anon_sym_u_DQUOTE] = ACTIONS(4280), + [anon_sym_U_DQUOTE] = ACTIONS(4280), + [anon_sym_u8_DQUOTE] = ACTIONS(4280), + [anon_sym_DQUOTE] = ACTIONS(4280), + [sym_true] = ACTIONS(4278), + [sym_false] = ACTIONS(4278), + [anon_sym_NULL] = ACTIONS(4278), + [anon_sym_nullptr] = ACTIONS(4278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4278), + [anon_sym_decltype] = ACTIONS(4278), + [anon_sym_explicit] = ACTIONS(4278), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_module] = ACTIONS(4278), + [anon_sym_import] = ACTIONS(4278), + [anon_sym_template] = ACTIONS(4278), + [anon_sym_operator] = ACTIONS(4278), + [anon_sym_try] = ACTIONS(4278), + [anon_sym_delete] = ACTIONS(4278), + [anon_sym_throw] = ACTIONS(4278), + [anon_sym_namespace] = ACTIONS(4278), + [anon_sym_static_assert] = ACTIONS(4278), + [anon_sym_concept] = ACTIONS(4278), + [anon_sym_co_return] = ACTIONS(4278), + [anon_sym_co_yield] = ACTIONS(4278), + [anon_sym_R_DQUOTE] = ACTIONS(4280), + [anon_sym_LR_DQUOTE] = ACTIONS(4280), + [anon_sym_uR_DQUOTE] = ACTIONS(4280), + [anon_sym_UR_DQUOTE] = ACTIONS(4280), + [anon_sym_u8R_DQUOTE] = ACTIONS(4280), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4278), + [anon_sym_requires] = ACTIONS(4278), + [anon_sym_CARET_CARET] = ACTIONS(4280), + [anon_sym_LBRACK_COLON] = ACTIONS(4280), + [sym_this] = ACTIONS(4278), + }, + [STATE(737)] = { + [sym_identifier] = ACTIONS(4387), + [aux_sym_preproc_include_token1] = ACTIONS(4387), + [aux_sym_preproc_def_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token2] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), + [sym_preproc_directive] = ACTIONS(4387), + [anon_sym_LPAREN2] = ACTIONS(4389), + [anon_sym_BANG] = ACTIONS(4389), + [anon_sym_TILDE] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4387), + [anon_sym_PLUS] = ACTIONS(4387), + [anon_sym_STAR] = ACTIONS(4389), + [anon_sym_AMP_AMP] = ACTIONS(4389), + [anon_sym_AMP] = ACTIONS(4387), + [anon_sym_SEMI] = ACTIONS(4389), + [anon_sym___extension__] = ACTIONS(4387), + [anon_sym_typedef] = ACTIONS(4387), + [anon_sym_virtual] = ACTIONS(4387), + [anon_sym_extern] = ACTIONS(4387), + [anon_sym___attribute__] = ACTIONS(4387), + [anon_sym___attribute] = ACTIONS(4387), + [anon_sym_using] = ACTIONS(4387), + [anon_sym_COLON_COLON] = ACTIONS(4389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4389), + [anon_sym___declspec] = ACTIONS(4387), + [anon_sym___based] = ACTIONS(4387), + [anon_sym___cdecl] = ACTIONS(4387), + [anon_sym___clrcall] = ACTIONS(4387), + [anon_sym___stdcall] = ACTIONS(4387), + [anon_sym___fastcall] = ACTIONS(4387), + [anon_sym___thiscall] = ACTIONS(4387), + [anon_sym___vectorcall] = ACTIONS(4387), + [anon_sym_LBRACE] = ACTIONS(4389), + [anon_sym_signed] = ACTIONS(4387), + [anon_sym_unsigned] = ACTIONS(4387), + [anon_sym_long] = ACTIONS(4387), + [anon_sym_short] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_static] = ACTIONS(4387), + [anon_sym_register] = ACTIONS(4387), + [anon_sym_inline] = ACTIONS(4387), + [anon_sym___inline] = ACTIONS(4387), + [anon_sym___inline__] = ACTIONS(4387), + [anon_sym___forceinline] = ACTIONS(4387), + [anon_sym_thread_local] = ACTIONS(4387), + [anon_sym___thread] = ACTIONS(4387), + [anon_sym_const] = ACTIONS(4387), + [anon_sym_constexpr] = ACTIONS(4387), + [anon_sym_volatile] = ACTIONS(4387), + [anon_sym_restrict] = ACTIONS(4387), + [anon_sym___restrict__] = ACTIONS(4387), + [anon_sym__Atomic] = ACTIONS(4387), + [anon_sym__Noreturn] = ACTIONS(4387), + [anon_sym_noreturn] = ACTIONS(4387), + [anon_sym__Nonnull] = ACTIONS(4387), + [anon_sym_mutable] = ACTIONS(4387), + [anon_sym_constinit] = ACTIONS(4387), + [anon_sym_consteval] = ACTIONS(4387), + [anon_sym_alignas] = ACTIONS(4387), + [anon_sym__Alignas] = ACTIONS(4387), + [sym_primitive_type] = ACTIONS(4387), + [anon_sym_enum] = ACTIONS(4387), + [anon_sym_class] = ACTIONS(4387), + [anon_sym_struct] = ACTIONS(4387), + [anon_sym_union] = ACTIONS(4387), + [anon_sym_if] = ACTIONS(4387), + [anon_sym_switch] = ACTIONS(4387), + [anon_sym_case] = ACTIONS(4387), + [anon_sym_default] = ACTIONS(4387), + [anon_sym_while] = ACTIONS(4387), + [anon_sym_do] = ACTIONS(4387), + [anon_sym_for] = ACTIONS(4387), + [anon_sym_return] = ACTIONS(4387), + [anon_sym_break] = ACTIONS(4387), + [anon_sym_continue] = ACTIONS(4387), + [anon_sym_goto] = ACTIONS(4387), + [anon_sym___try] = ACTIONS(4387), + [anon_sym___leave] = ACTIONS(4387), + [anon_sym_not] = ACTIONS(4387), + [anon_sym_compl] = ACTIONS(4387), + [anon_sym_DASH_DASH] = ACTIONS(4389), + [anon_sym_PLUS_PLUS] = ACTIONS(4389), + [anon_sym_sizeof] = ACTIONS(4387), + [anon_sym___alignof__] = ACTIONS(4387), + [anon_sym___alignof] = ACTIONS(4387), + [anon_sym__alignof] = ACTIONS(4387), + [anon_sym_alignof] = ACTIONS(4387), + [anon_sym__Alignof] = ACTIONS(4387), + [anon_sym_offsetof] = ACTIONS(4387), + [anon_sym__Generic] = ACTIONS(4387), + [anon_sym_typename] = ACTIONS(4387), + [anon_sym_asm] = ACTIONS(4387), + [anon_sym___asm__] = ACTIONS(4387), + [anon_sym___asm] = ACTIONS(4387), + [sym_number_literal] = ACTIONS(4389), + [anon_sym_L_SQUOTE] = ACTIONS(4389), + [anon_sym_u_SQUOTE] = ACTIONS(4389), + [anon_sym_U_SQUOTE] = ACTIONS(4389), + [anon_sym_u8_SQUOTE] = ACTIONS(4389), + [anon_sym_SQUOTE] = ACTIONS(4389), + [anon_sym_L_DQUOTE] = ACTIONS(4389), + [anon_sym_u_DQUOTE] = ACTIONS(4389), + [anon_sym_U_DQUOTE] = ACTIONS(4389), + [anon_sym_u8_DQUOTE] = ACTIONS(4389), + [anon_sym_DQUOTE] = ACTIONS(4389), + [sym_true] = ACTIONS(4387), + [sym_false] = ACTIONS(4387), + [anon_sym_NULL] = ACTIONS(4387), + [anon_sym_nullptr] = ACTIONS(4387), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4387), + [anon_sym_decltype] = ACTIONS(4387), + [anon_sym_explicit] = ACTIONS(4387), + [anon_sym_export] = ACTIONS(4387), + [anon_sym_module] = ACTIONS(4387), + [anon_sym_import] = ACTIONS(4387), + [anon_sym_template] = ACTIONS(4387), + [anon_sym_operator] = ACTIONS(4387), + [anon_sym_try] = ACTIONS(4387), + [anon_sym_delete] = ACTIONS(4387), + [anon_sym_throw] = ACTIONS(4387), + [anon_sym_namespace] = ACTIONS(4387), + [anon_sym_static_assert] = ACTIONS(4387), + [anon_sym_concept] = ACTIONS(4387), + [anon_sym_co_return] = ACTIONS(4387), + [anon_sym_co_yield] = ACTIONS(4387), + [anon_sym_R_DQUOTE] = ACTIONS(4389), + [anon_sym_LR_DQUOTE] = ACTIONS(4389), + [anon_sym_uR_DQUOTE] = ACTIONS(4389), + [anon_sym_UR_DQUOTE] = ACTIONS(4389), + [anon_sym_u8R_DQUOTE] = ACTIONS(4389), + [anon_sym_co_await] = ACTIONS(4387), + [anon_sym_new] = ACTIONS(4387), + [anon_sym_requires] = ACTIONS(4387), + [anon_sym_CARET_CARET] = ACTIONS(4389), + [anon_sym_LBRACK_COLON] = ACTIONS(4389), + [sym_this] = ACTIONS(4387), + }, + [STATE(738)] = { + [sym_identifier] = ACTIONS(3921), + [aux_sym_preproc_include_token1] = ACTIONS(3921), + [aux_sym_preproc_def_token1] = ACTIONS(3921), + [aux_sym_preproc_if_token1] = ACTIONS(3921), + [aux_sym_preproc_if_token2] = ACTIONS(3921), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3921), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3921), + [sym_preproc_directive] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3923), + [anon_sym_BANG] = ACTIONS(3923), + [anon_sym_TILDE] = ACTIONS(3923), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_STAR] = ACTIONS(3923), + [anon_sym_AMP_AMP] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym___extension__] = ACTIONS(3921), + [anon_sym_typedef] = ACTIONS(3921), + [anon_sym_virtual] = ACTIONS(3921), + [anon_sym_extern] = ACTIONS(3921), + [anon_sym___attribute__] = ACTIONS(3921), + [anon_sym___attribute] = ACTIONS(3921), + [anon_sym_using] = ACTIONS(3921), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3923), + [anon_sym___declspec] = ACTIONS(3921), + [anon_sym___based] = ACTIONS(3921), + [anon_sym___cdecl] = ACTIONS(3921), + [anon_sym___clrcall] = ACTIONS(3921), + [anon_sym___stdcall] = ACTIONS(3921), + [anon_sym___fastcall] = ACTIONS(3921), + [anon_sym___thiscall] = ACTIONS(3921), + [anon_sym___vectorcall] = ACTIONS(3921), + [anon_sym_LBRACE] = ACTIONS(3923), + [anon_sym_signed] = ACTIONS(3921), + [anon_sym_unsigned] = ACTIONS(3921), + [anon_sym_long] = ACTIONS(3921), + [anon_sym_short] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_static] = ACTIONS(3921), + [anon_sym_register] = ACTIONS(3921), + [anon_sym_inline] = ACTIONS(3921), + [anon_sym___inline] = ACTIONS(3921), + [anon_sym___inline__] = ACTIONS(3921), + [anon_sym___forceinline] = ACTIONS(3921), + [anon_sym_thread_local] = ACTIONS(3921), + [anon_sym___thread] = ACTIONS(3921), + [anon_sym_const] = ACTIONS(3921), + [anon_sym_constexpr] = ACTIONS(3921), + [anon_sym_volatile] = ACTIONS(3921), + [anon_sym_restrict] = ACTIONS(3921), + [anon_sym___restrict__] = ACTIONS(3921), + [anon_sym__Atomic] = ACTIONS(3921), + [anon_sym__Noreturn] = ACTIONS(3921), + [anon_sym_noreturn] = ACTIONS(3921), + [anon_sym__Nonnull] = ACTIONS(3921), + [anon_sym_mutable] = ACTIONS(3921), + [anon_sym_constinit] = ACTIONS(3921), + [anon_sym_consteval] = ACTIONS(3921), + [anon_sym_alignas] = ACTIONS(3921), + [anon_sym__Alignas] = ACTIONS(3921), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_enum] = ACTIONS(3921), + [anon_sym_class] = ACTIONS(3921), + [anon_sym_struct] = ACTIONS(3921), + [anon_sym_union] = ACTIONS(3921), + [anon_sym_if] = ACTIONS(3921), + [anon_sym_switch] = ACTIONS(3921), + [anon_sym_case] = ACTIONS(3921), + [anon_sym_default] = ACTIONS(3921), + [anon_sym_while] = ACTIONS(3921), + [anon_sym_do] = ACTIONS(3921), + [anon_sym_for] = ACTIONS(3921), + [anon_sym_return] = ACTIONS(3921), + [anon_sym_break] = ACTIONS(3921), + [anon_sym_continue] = ACTIONS(3921), + [anon_sym_goto] = ACTIONS(3921), + [anon_sym___try] = ACTIONS(3921), + [anon_sym___leave] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(3921), + [anon_sym_compl] = ACTIONS(3921), + [anon_sym_DASH_DASH] = ACTIONS(3923), + [anon_sym_PLUS_PLUS] = ACTIONS(3923), + [anon_sym_sizeof] = ACTIONS(3921), + [anon_sym___alignof__] = ACTIONS(3921), + [anon_sym___alignof] = ACTIONS(3921), + [anon_sym__alignof] = ACTIONS(3921), + [anon_sym_alignof] = ACTIONS(3921), + [anon_sym__Alignof] = ACTIONS(3921), + [anon_sym_offsetof] = ACTIONS(3921), + [anon_sym__Generic] = ACTIONS(3921), + [anon_sym_typename] = ACTIONS(3921), + [anon_sym_asm] = ACTIONS(3921), + [anon_sym___asm__] = ACTIONS(3921), + [anon_sym___asm] = ACTIONS(3921), + [sym_number_literal] = ACTIONS(3923), + [anon_sym_L_SQUOTE] = ACTIONS(3923), + [anon_sym_u_SQUOTE] = ACTIONS(3923), + [anon_sym_U_SQUOTE] = ACTIONS(3923), + [anon_sym_u8_SQUOTE] = ACTIONS(3923), + [anon_sym_SQUOTE] = ACTIONS(3923), + [anon_sym_L_DQUOTE] = ACTIONS(3923), + [anon_sym_u_DQUOTE] = ACTIONS(3923), + [anon_sym_U_DQUOTE] = ACTIONS(3923), + [anon_sym_u8_DQUOTE] = ACTIONS(3923), + [anon_sym_DQUOTE] = ACTIONS(3923), + [sym_true] = ACTIONS(3921), + [sym_false] = ACTIONS(3921), + [anon_sym_NULL] = ACTIONS(3921), + [anon_sym_nullptr] = ACTIONS(3921), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3921), + [anon_sym_decltype] = ACTIONS(3921), + [anon_sym_explicit] = ACTIONS(3921), + [anon_sym_export] = ACTIONS(3921), + [anon_sym_module] = ACTIONS(3921), + [anon_sym_import] = ACTIONS(3921), + [anon_sym_template] = ACTIONS(3921), + [anon_sym_operator] = ACTIONS(3921), + [anon_sym_try] = ACTIONS(3921), + [anon_sym_delete] = ACTIONS(3921), + [anon_sym_throw] = ACTIONS(3921), + [anon_sym_namespace] = ACTIONS(3921), + [anon_sym_static_assert] = ACTIONS(3921), + [anon_sym_concept] = ACTIONS(3921), + [anon_sym_co_return] = ACTIONS(3921), + [anon_sym_co_yield] = ACTIONS(3921), + [anon_sym_R_DQUOTE] = ACTIONS(3923), + [anon_sym_LR_DQUOTE] = ACTIONS(3923), + [anon_sym_uR_DQUOTE] = ACTIONS(3923), + [anon_sym_UR_DQUOTE] = ACTIONS(3923), + [anon_sym_u8R_DQUOTE] = ACTIONS(3923), + [anon_sym_co_await] = ACTIONS(3921), + [anon_sym_new] = ACTIONS(3921), + [anon_sym_requires] = ACTIONS(3921), + [anon_sym_CARET_CARET] = ACTIONS(3923), + [anon_sym_LBRACK_COLON] = ACTIONS(3923), + [sym_this] = ACTIONS(3921), + }, + [STATE(739)] = { + [sym_identifier] = ACTIONS(3935), + [aux_sym_preproc_include_token1] = ACTIONS(3935), + [aux_sym_preproc_def_token1] = ACTIONS(3935), + [aux_sym_preproc_if_token1] = ACTIONS(3935), + [aux_sym_preproc_if_token2] = ACTIONS(3935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3935), + [sym_preproc_directive] = ACTIONS(3935), + [anon_sym_LPAREN2] = ACTIONS(3937), + [anon_sym_BANG] = ACTIONS(3937), + [anon_sym_TILDE] = ACTIONS(3937), + [anon_sym_DASH] = ACTIONS(3935), + [anon_sym_PLUS] = ACTIONS(3935), + [anon_sym_STAR] = ACTIONS(3937), + [anon_sym_AMP_AMP] = ACTIONS(3937), + [anon_sym_AMP] = ACTIONS(3935), + [anon_sym_SEMI] = ACTIONS(3937), + [anon_sym___extension__] = ACTIONS(3935), + [anon_sym_typedef] = ACTIONS(3935), + [anon_sym_virtual] = ACTIONS(3935), + [anon_sym_extern] = ACTIONS(3935), + [anon_sym___attribute__] = ACTIONS(3935), + [anon_sym___attribute] = ACTIONS(3935), + [anon_sym_using] = ACTIONS(3935), + [anon_sym_COLON_COLON] = ACTIONS(3937), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3937), + [anon_sym___declspec] = ACTIONS(3935), + [anon_sym___based] = ACTIONS(3935), + [anon_sym___cdecl] = ACTIONS(3935), + [anon_sym___clrcall] = ACTIONS(3935), + [anon_sym___stdcall] = ACTIONS(3935), + [anon_sym___fastcall] = ACTIONS(3935), + [anon_sym___thiscall] = ACTIONS(3935), + [anon_sym___vectorcall] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(3937), + [anon_sym_signed] = ACTIONS(3935), + [anon_sym_unsigned] = ACTIONS(3935), + [anon_sym_long] = ACTIONS(3935), + [anon_sym_short] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3935), + [anon_sym_static] = ACTIONS(3935), + [anon_sym_register] = ACTIONS(3935), + [anon_sym_inline] = ACTIONS(3935), + [anon_sym___inline] = ACTIONS(3935), + [anon_sym___inline__] = ACTIONS(3935), + [anon_sym___forceinline] = ACTIONS(3935), + [anon_sym_thread_local] = ACTIONS(3935), + [anon_sym___thread] = 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__Nonnull] = ACTIONS(3935), + [anon_sym_mutable] = ACTIONS(3935), + [anon_sym_constinit] = ACTIONS(3935), + [anon_sym_consteval] = ACTIONS(3935), + [anon_sym_alignas] = ACTIONS(3935), + [anon_sym__Alignas] = ACTIONS(3935), + [sym_primitive_type] = ACTIONS(3935), + [anon_sym_enum] = ACTIONS(3935), + [anon_sym_class] = ACTIONS(3935), + [anon_sym_struct] = ACTIONS(3935), + [anon_sym_union] = ACTIONS(3935), + [anon_sym_if] = ACTIONS(3935), + [anon_sym_switch] = ACTIONS(3935), + [anon_sym_case] = ACTIONS(3935), + [anon_sym_default] = ACTIONS(3935), + [anon_sym_while] = ACTIONS(3935), + [anon_sym_do] = ACTIONS(3935), + [anon_sym_for] = ACTIONS(3935), + [anon_sym_return] = ACTIONS(3935), + [anon_sym_break] = ACTIONS(3935), + [anon_sym_continue] = ACTIONS(3935), + [anon_sym_goto] = ACTIONS(3935), + [anon_sym___try] = ACTIONS(3935), + [anon_sym___leave] = ACTIONS(3935), + [anon_sym_not] = ACTIONS(3935), + [anon_sym_compl] = ACTIONS(3935), + [anon_sym_DASH_DASH] = ACTIONS(3937), + [anon_sym_PLUS_PLUS] = ACTIONS(3937), + [anon_sym_sizeof] = ACTIONS(3935), + [anon_sym___alignof__] = ACTIONS(3935), + [anon_sym___alignof] = ACTIONS(3935), + [anon_sym__alignof] = ACTIONS(3935), + [anon_sym_alignof] = ACTIONS(3935), + [anon_sym__Alignof] = ACTIONS(3935), + [anon_sym_offsetof] = ACTIONS(3935), + [anon_sym__Generic] = ACTIONS(3935), + [anon_sym_typename] = ACTIONS(3935), + [anon_sym_asm] = ACTIONS(3935), + [anon_sym___asm__] = ACTIONS(3935), + [anon_sym___asm] = ACTIONS(3935), + [sym_number_literal] = ACTIONS(3937), + [anon_sym_L_SQUOTE] = ACTIONS(3937), + [anon_sym_u_SQUOTE] = ACTIONS(3937), + [anon_sym_U_SQUOTE] = ACTIONS(3937), + [anon_sym_u8_SQUOTE] = ACTIONS(3937), + [anon_sym_SQUOTE] = ACTIONS(3937), + [anon_sym_L_DQUOTE] = ACTIONS(3937), + [anon_sym_u_DQUOTE] = ACTIONS(3937), + [anon_sym_U_DQUOTE] = ACTIONS(3937), + [anon_sym_u8_DQUOTE] = ACTIONS(3937), + [anon_sym_DQUOTE] = ACTIONS(3937), + [sym_true] = ACTIONS(3935), + [sym_false] = ACTIONS(3935), + [anon_sym_NULL] = ACTIONS(3935), + [anon_sym_nullptr] = ACTIONS(3935), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3935), + [anon_sym_decltype] = ACTIONS(3935), + [anon_sym_explicit] = ACTIONS(3935), + [anon_sym_export] = ACTIONS(3935), + [anon_sym_module] = ACTIONS(3935), + [anon_sym_import] = ACTIONS(3935), + [anon_sym_template] = ACTIONS(3935), + [anon_sym_operator] = ACTIONS(3935), + [anon_sym_try] = ACTIONS(3935), + [anon_sym_delete] = ACTIONS(3935), + [anon_sym_throw] = ACTIONS(3935), + [anon_sym_namespace] = ACTIONS(3935), + [anon_sym_static_assert] = ACTIONS(3935), + [anon_sym_concept] = ACTIONS(3935), + [anon_sym_co_return] = ACTIONS(3935), + [anon_sym_co_yield] = ACTIONS(3935), + [anon_sym_R_DQUOTE] = ACTIONS(3937), + [anon_sym_LR_DQUOTE] = ACTIONS(3937), + [anon_sym_uR_DQUOTE] = ACTIONS(3937), + [anon_sym_UR_DQUOTE] = ACTIONS(3937), + [anon_sym_u8R_DQUOTE] = ACTIONS(3937), + [anon_sym_co_await] = ACTIONS(3935), + [anon_sym_new] = ACTIONS(3935), + [anon_sym_requires] = ACTIONS(3935), + [anon_sym_CARET_CARET] = ACTIONS(3937), + [anon_sym_LBRACK_COLON] = ACTIONS(3937), + [sym_this] = ACTIONS(3935), + }, + [STATE(740)] = { + [sym_identifier] = ACTIONS(3954), + [aux_sym_preproc_include_token1] = ACTIONS(3954), + [aux_sym_preproc_def_token1] = ACTIONS(3954), + [aux_sym_preproc_if_token1] = ACTIONS(3954), + [aux_sym_preproc_if_token2] = ACTIONS(3954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3954), + [sym_preproc_directive] = ACTIONS(3954), + [anon_sym_LPAREN2] = ACTIONS(3956), + [anon_sym_BANG] = ACTIONS(3956), + [anon_sym_TILDE] = ACTIONS(3956), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_STAR] = ACTIONS(3956), + [anon_sym_AMP_AMP] = ACTIONS(3956), + [anon_sym_AMP] = ACTIONS(3954), + [anon_sym_SEMI] = ACTIONS(3956), + [anon_sym___extension__] = ACTIONS(3954), + [anon_sym_typedef] = ACTIONS(3954), + [anon_sym_virtual] = ACTIONS(3954), + [anon_sym_extern] = ACTIONS(3954), + [anon_sym___attribute__] = ACTIONS(3954), + [anon_sym___attribute] = ACTIONS(3954), + [anon_sym_using] = ACTIONS(3954), + [anon_sym_COLON_COLON] = ACTIONS(3956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3956), + [anon_sym___declspec] = ACTIONS(3954), + [anon_sym___based] = ACTIONS(3954), + [anon_sym___cdecl] = ACTIONS(3954), + [anon_sym___clrcall] = ACTIONS(3954), + [anon_sym___stdcall] = ACTIONS(3954), + [anon_sym___fastcall] = ACTIONS(3954), + [anon_sym___thiscall] = ACTIONS(3954), + [anon_sym___vectorcall] = ACTIONS(3954), + [anon_sym_LBRACE] = ACTIONS(3956), + [anon_sym_signed] = ACTIONS(3954), + [anon_sym_unsigned] = ACTIONS(3954), + [anon_sym_long] = ACTIONS(3954), + [anon_sym_short] = ACTIONS(3954), + [anon_sym_LBRACK] = ACTIONS(3954), + [anon_sym_static] = ACTIONS(3954), + [anon_sym_register] = ACTIONS(3954), + [anon_sym_inline] = ACTIONS(3954), + [anon_sym___inline] = ACTIONS(3954), + [anon_sym___inline__] = ACTIONS(3954), + [anon_sym___forceinline] = ACTIONS(3954), + [anon_sym_thread_local] = ACTIONS(3954), + [anon_sym___thread] = ACTIONS(3954), + [anon_sym_const] = ACTIONS(3954), + [anon_sym_constexpr] = ACTIONS(3954), + [anon_sym_volatile] = ACTIONS(3954), + [anon_sym_restrict] = ACTIONS(3954), + [anon_sym___restrict__] = ACTIONS(3954), + [anon_sym__Atomic] = ACTIONS(3954), + [anon_sym__Noreturn] = ACTIONS(3954), + [anon_sym_noreturn] = ACTIONS(3954), + [anon_sym__Nonnull] = ACTIONS(3954), + [anon_sym_mutable] = ACTIONS(3954), + [anon_sym_constinit] = ACTIONS(3954), + [anon_sym_consteval] = ACTIONS(3954), + [anon_sym_alignas] = ACTIONS(3954), + [anon_sym__Alignas] = ACTIONS(3954), + [sym_primitive_type] = ACTIONS(3954), + [anon_sym_enum] = ACTIONS(3954), + [anon_sym_class] = ACTIONS(3954), + [anon_sym_struct] = ACTIONS(3954), + [anon_sym_union] = ACTIONS(3954), + [anon_sym_if] = ACTIONS(3954), + [anon_sym_switch] = ACTIONS(3954), + [anon_sym_case] = ACTIONS(3954), + [anon_sym_default] = ACTIONS(3954), + [anon_sym_while] = ACTIONS(3954), + [anon_sym_do] = ACTIONS(3954), + [anon_sym_for] = ACTIONS(3954), + [anon_sym_return] = ACTIONS(3954), + [anon_sym_break] = ACTIONS(3954), + [anon_sym_continue] = ACTIONS(3954), + [anon_sym_goto] = ACTIONS(3954), + [anon_sym___try] = ACTIONS(3954), + [anon_sym___leave] = ACTIONS(3954), + [anon_sym_not] = ACTIONS(3954), + [anon_sym_compl] = ACTIONS(3954), + [anon_sym_DASH_DASH] = ACTIONS(3956), + [anon_sym_PLUS_PLUS] = ACTIONS(3956), + [anon_sym_sizeof] = ACTIONS(3954), + [anon_sym___alignof__] = ACTIONS(3954), + [anon_sym___alignof] = ACTIONS(3954), + [anon_sym__alignof] = ACTIONS(3954), + [anon_sym_alignof] = ACTIONS(3954), + [anon_sym__Alignof] = ACTIONS(3954), + [anon_sym_offsetof] = ACTIONS(3954), + [anon_sym__Generic] = ACTIONS(3954), + [anon_sym_typename] = ACTIONS(3954), + [anon_sym_asm] = ACTIONS(3954), + [anon_sym___asm__] = ACTIONS(3954), + [anon_sym___asm] = ACTIONS(3954), + [sym_number_literal] = ACTIONS(3956), + [anon_sym_L_SQUOTE] = ACTIONS(3956), + [anon_sym_u_SQUOTE] = ACTIONS(3956), + [anon_sym_U_SQUOTE] = ACTIONS(3956), + [anon_sym_u8_SQUOTE] = ACTIONS(3956), + [anon_sym_SQUOTE] = ACTIONS(3956), + [anon_sym_L_DQUOTE] = ACTIONS(3956), + [anon_sym_u_DQUOTE] = ACTIONS(3956), + [anon_sym_U_DQUOTE] = ACTIONS(3956), + [anon_sym_u8_DQUOTE] = ACTIONS(3956), + [anon_sym_DQUOTE] = ACTIONS(3956), + [sym_true] = ACTIONS(3954), + [sym_false] = ACTIONS(3954), + [anon_sym_NULL] = ACTIONS(3954), + [anon_sym_nullptr] = ACTIONS(3954), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4148), - [anon_sym_decltype] = ACTIONS(4148), - [anon_sym_explicit] = ACTIONS(4148), - [anon_sym_template] = ACTIONS(4148), - [anon_sym_operator] = ACTIONS(4148), - [anon_sym_try] = ACTIONS(4148), - [anon_sym_delete] = ACTIONS(4148), - [anon_sym_throw] = ACTIONS(4148), - [anon_sym_namespace] = ACTIONS(4148), - [anon_sym_static_assert] = ACTIONS(4148), - [anon_sym_concept] = ACTIONS(4148), - [anon_sym_co_return] = ACTIONS(4148), - [anon_sym_co_yield] = ACTIONS(4148), - [anon_sym_R_DQUOTE] = ACTIONS(4150), - [anon_sym_LR_DQUOTE] = ACTIONS(4150), - [anon_sym_uR_DQUOTE] = ACTIONS(4150), - [anon_sym_UR_DQUOTE] = ACTIONS(4150), - [anon_sym_u8R_DQUOTE] = ACTIONS(4150), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4148), - [anon_sym_requires] = ACTIONS(4148), - [anon_sym_CARET_CARET] = ACTIONS(4150), - [anon_sym_LBRACK_COLON] = ACTIONS(4150), - [sym_this] = ACTIONS(4148), + [sym_auto] = ACTIONS(3954), + [anon_sym_decltype] = ACTIONS(3954), + [anon_sym_explicit] = ACTIONS(3954), + [anon_sym_export] = ACTIONS(3954), + [anon_sym_module] = ACTIONS(3954), + [anon_sym_import] = ACTIONS(3954), + [anon_sym_template] = ACTIONS(3954), + [anon_sym_operator] = ACTIONS(3954), + [anon_sym_try] = ACTIONS(3954), + [anon_sym_delete] = ACTIONS(3954), + [anon_sym_throw] = ACTIONS(3954), + [anon_sym_namespace] = ACTIONS(3954), + [anon_sym_static_assert] = ACTIONS(3954), + [anon_sym_concept] = ACTIONS(3954), + [anon_sym_co_return] = ACTIONS(3954), + [anon_sym_co_yield] = ACTIONS(3954), + [anon_sym_R_DQUOTE] = ACTIONS(3956), + [anon_sym_LR_DQUOTE] = ACTIONS(3956), + [anon_sym_uR_DQUOTE] = ACTIONS(3956), + [anon_sym_UR_DQUOTE] = ACTIONS(3956), + [anon_sym_u8R_DQUOTE] = ACTIONS(3956), + [anon_sym_co_await] = ACTIONS(3954), + [anon_sym_new] = ACTIONS(3954), + [anon_sym_requires] = ACTIONS(3954), + [anon_sym_CARET_CARET] = ACTIONS(3956), + [anon_sym_LBRACK_COLON] = ACTIONS(3956), + [sym_this] = ACTIONS(3954), }, - [STATE(884)] = { + [STATE(741)] = { + [sym_identifier] = ACTIONS(3958), + [aux_sym_preproc_include_token1] = ACTIONS(3958), + [aux_sym_preproc_def_token1] = ACTIONS(3958), + [aux_sym_preproc_if_token1] = ACTIONS(3958), + [aux_sym_preproc_if_token2] = ACTIONS(3958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3958), + [sym_preproc_directive] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3960), + [anon_sym_AMP] = ACTIONS(3958), + [anon_sym_SEMI] = ACTIONS(3960), + [anon_sym___extension__] = ACTIONS(3958), + [anon_sym_typedef] = ACTIONS(3958), + [anon_sym_virtual] = ACTIONS(3958), + [anon_sym_extern] = ACTIONS(3958), + [anon_sym___attribute__] = ACTIONS(3958), + [anon_sym___attribute] = ACTIONS(3958), + [anon_sym_using] = ACTIONS(3958), + [anon_sym_COLON_COLON] = ACTIONS(3960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3960), + [anon_sym___declspec] = ACTIONS(3958), + [anon_sym___based] = ACTIONS(3958), + [anon_sym___cdecl] = ACTIONS(3958), + [anon_sym___clrcall] = ACTIONS(3958), + [anon_sym___stdcall] = ACTIONS(3958), + [anon_sym___fastcall] = ACTIONS(3958), + [anon_sym___thiscall] = ACTIONS(3958), + [anon_sym___vectorcall] = ACTIONS(3958), + [anon_sym_LBRACE] = ACTIONS(3960), + [anon_sym_signed] = ACTIONS(3958), + [anon_sym_unsigned] = ACTIONS(3958), + [anon_sym_long] = ACTIONS(3958), + [anon_sym_short] = ACTIONS(3958), + [anon_sym_LBRACK] = ACTIONS(3958), + [anon_sym_static] = ACTIONS(3958), + [anon_sym_register] = ACTIONS(3958), + [anon_sym_inline] = ACTIONS(3958), + [anon_sym___inline] = ACTIONS(3958), + [anon_sym___inline__] = ACTIONS(3958), + [anon_sym___forceinline] = ACTIONS(3958), + [anon_sym_thread_local] = ACTIONS(3958), + [anon_sym___thread] = ACTIONS(3958), + [anon_sym_const] = ACTIONS(3958), + [anon_sym_constexpr] = ACTIONS(3958), + [anon_sym_volatile] = ACTIONS(3958), + [anon_sym_restrict] = ACTIONS(3958), + [anon_sym___restrict__] = ACTIONS(3958), + [anon_sym__Atomic] = ACTIONS(3958), + [anon_sym__Noreturn] = ACTIONS(3958), + [anon_sym_noreturn] = ACTIONS(3958), + [anon_sym__Nonnull] = ACTIONS(3958), + [anon_sym_mutable] = ACTIONS(3958), + [anon_sym_constinit] = ACTIONS(3958), + [anon_sym_consteval] = ACTIONS(3958), + [anon_sym_alignas] = ACTIONS(3958), + [anon_sym__Alignas] = ACTIONS(3958), + [sym_primitive_type] = ACTIONS(3958), + [anon_sym_enum] = ACTIONS(3958), + [anon_sym_class] = ACTIONS(3958), + [anon_sym_struct] = ACTIONS(3958), + [anon_sym_union] = ACTIONS(3958), + [anon_sym_if] = ACTIONS(3958), + [anon_sym_switch] = ACTIONS(3958), + [anon_sym_case] = ACTIONS(3958), + [anon_sym_default] = ACTIONS(3958), + [anon_sym_while] = ACTIONS(3958), + [anon_sym_do] = ACTIONS(3958), + [anon_sym_for] = ACTIONS(3958), + [anon_sym_return] = ACTIONS(3958), + [anon_sym_break] = ACTIONS(3958), + [anon_sym_continue] = ACTIONS(3958), + [anon_sym_goto] = ACTIONS(3958), + [anon_sym___try] = ACTIONS(3958), + [anon_sym___leave] = ACTIONS(3958), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(3960), + [anon_sym_PLUS_PLUS] = ACTIONS(3960), + [anon_sym_sizeof] = ACTIONS(3958), + [anon_sym___alignof__] = ACTIONS(3958), + [anon_sym___alignof] = ACTIONS(3958), + [anon_sym__alignof] = ACTIONS(3958), + [anon_sym_alignof] = ACTIONS(3958), + [anon_sym__Alignof] = ACTIONS(3958), + [anon_sym_offsetof] = ACTIONS(3958), + [anon_sym__Generic] = ACTIONS(3958), + [anon_sym_typename] = ACTIONS(3958), + [anon_sym_asm] = ACTIONS(3958), + [anon_sym___asm__] = ACTIONS(3958), + [anon_sym___asm] = ACTIONS(3958), + [sym_number_literal] = ACTIONS(3960), + [anon_sym_L_SQUOTE] = ACTIONS(3960), + [anon_sym_u_SQUOTE] = ACTIONS(3960), + [anon_sym_U_SQUOTE] = ACTIONS(3960), + [anon_sym_u8_SQUOTE] = ACTIONS(3960), + [anon_sym_SQUOTE] = ACTIONS(3960), + [anon_sym_L_DQUOTE] = ACTIONS(3960), + [anon_sym_u_DQUOTE] = ACTIONS(3960), + [anon_sym_U_DQUOTE] = ACTIONS(3960), + [anon_sym_u8_DQUOTE] = ACTIONS(3960), + [anon_sym_DQUOTE] = ACTIONS(3960), + [sym_true] = ACTIONS(3958), + [sym_false] = ACTIONS(3958), + [anon_sym_NULL] = ACTIONS(3958), + [anon_sym_nullptr] = ACTIONS(3958), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3958), + [anon_sym_decltype] = ACTIONS(3958), + [anon_sym_explicit] = ACTIONS(3958), + [anon_sym_export] = ACTIONS(3958), + [anon_sym_module] = ACTIONS(3958), + [anon_sym_import] = ACTIONS(3958), + [anon_sym_template] = ACTIONS(3958), + [anon_sym_operator] = ACTIONS(3958), + [anon_sym_try] = ACTIONS(3958), + [anon_sym_delete] = ACTIONS(3958), + [anon_sym_throw] = ACTIONS(3958), + [anon_sym_namespace] = ACTIONS(3958), + [anon_sym_static_assert] = ACTIONS(3958), + [anon_sym_concept] = ACTIONS(3958), + [anon_sym_co_return] = ACTIONS(3958), + [anon_sym_co_yield] = ACTIONS(3958), + [anon_sym_R_DQUOTE] = ACTIONS(3960), + [anon_sym_LR_DQUOTE] = ACTIONS(3960), + [anon_sym_uR_DQUOTE] = ACTIONS(3960), + [anon_sym_UR_DQUOTE] = ACTIONS(3960), + [anon_sym_u8R_DQUOTE] = ACTIONS(3960), + [anon_sym_co_await] = ACTIONS(3958), + [anon_sym_new] = ACTIONS(3958), + [anon_sym_requires] = ACTIONS(3958), + [anon_sym_CARET_CARET] = ACTIONS(3960), + [anon_sym_LBRACK_COLON] = ACTIONS(3960), + [sym_this] = ACTIONS(3958), + }, + [STATE(742)] = { + [sym_identifier] = ACTIONS(4020), + [aux_sym_preproc_include_token1] = ACTIONS(4020), + [aux_sym_preproc_def_token1] = ACTIONS(4020), + [aux_sym_preproc_if_token1] = ACTIONS(4020), + [aux_sym_preproc_if_token2] = ACTIONS(4020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4020), + [sym_preproc_directive] = ACTIONS(4020), + [anon_sym_LPAREN2] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_TILDE] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4020), + [anon_sym_PLUS] = ACTIONS(4020), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_SEMI] = ACTIONS(4022), + [anon_sym___extension__] = ACTIONS(4020), + [anon_sym_typedef] = ACTIONS(4020), + [anon_sym_virtual] = ACTIONS(4020), + [anon_sym_extern] = ACTIONS(4020), + [anon_sym___attribute__] = ACTIONS(4020), + [anon_sym___attribute] = ACTIONS(4020), + [anon_sym_using] = ACTIONS(4020), + [anon_sym_COLON_COLON] = ACTIONS(4022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4022), + [anon_sym___declspec] = ACTIONS(4020), + [anon_sym___based] = ACTIONS(4020), + [anon_sym___cdecl] = ACTIONS(4020), + [anon_sym___clrcall] = ACTIONS(4020), + [anon_sym___stdcall] = ACTIONS(4020), + [anon_sym___fastcall] = ACTIONS(4020), + [anon_sym___thiscall] = ACTIONS(4020), + [anon_sym___vectorcall] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_signed] = ACTIONS(4020), + [anon_sym_unsigned] = ACTIONS(4020), + [anon_sym_long] = ACTIONS(4020), + [anon_sym_short] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(4020), + [anon_sym_static] = ACTIONS(4020), + [anon_sym_register] = ACTIONS(4020), + [anon_sym_inline] = ACTIONS(4020), + [anon_sym___inline] = ACTIONS(4020), + [anon_sym___inline__] = ACTIONS(4020), + [anon_sym___forceinline] = ACTIONS(4020), + [anon_sym_thread_local] = ACTIONS(4020), + [anon_sym___thread] = ACTIONS(4020), + [anon_sym_const] = ACTIONS(4020), + [anon_sym_constexpr] = ACTIONS(4020), + [anon_sym_volatile] = ACTIONS(4020), + [anon_sym_restrict] = ACTIONS(4020), + [anon_sym___restrict__] = ACTIONS(4020), + [anon_sym__Atomic] = ACTIONS(4020), + [anon_sym__Noreturn] = ACTIONS(4020), + [anon_sym_noreturn] = ACTIONS(4020), + [anon_sym__Nonnull] = ACTIONS(4020), + [anon_sym_mutable] = ACTIONS(4020), + [anon_sym_constinit] = ACTIONS(4020), + [anon_sym_consteval] = ACTIONS(4020), + [anon_sym_alignas] = ACTIONS(4020), + [anon_sym__Alignas] = ACTIONS(4020), + [sym_primitive_type] = ACTIONS(4020), + [anon_sym_enum] = ACTIONS(4020), + [anon_sym_class] = ACTIONS(4020), + [anon_sym_struct] = ACTIONS(4020), + [anon_sym_union] = ACTIONS(4020), + [anon_sym_if] = ACTIONS(4020), + [anon_sym_switch] = ACTIONS(4020), + [anon_sym_case] = ACTIONS(4020), + [anon_sym_default] = ACTIONS(4020), + [anon_sym_while] = ACTIONS(4020), + [anon_sym_do] = ACTIONS(4020), + [anon_sym_for] = ACTIONS(4020), + [anon_sym_return] = ACTIONS(4020), + [anon_sym_break] = ACTIONS(4020), + [anon_sym_continue] = ACTIONS(4020), + [anon_sym_goto] = ACTIONS(4020), + [anon_sym___try] = ACTIONS(4020), + [anon_sym___leave] = ACTIONS(4020), + [anon_sym_not] = ACTIONS(4020), + [anon_sym_compl] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4022), + [anon_sym_sizeof] = ACTIONS(4020), + [anon_sym___alignof__] = ACTIONS(4020), + [anon_sym___alignof] = ACTIONS(4020), + [anon_sym__alignof] = ACTIONS(4020), + [anon_sym_alignof] = ACTIONS(4020), + [anon_sym__Alignof] = ACTIONS(4020), + [anon_sym_offsetof] = ACTIONS(4020), + [anon_sym__Generic] = ACTIONS(4020), + [anon_sym_typename] = ACTIONS(4020), + [anon_sym_asm] = ACTIONS(4020), + [anon_sym___asm__] = ACTIONS(4020), + [anon_sym___asm] = ACTIONS(4020), + [sym_number_literal] = ACTIONS(4022), + [anon_sym_L_SQUOTE] = ACTIONS(4022), + [anon_sym_u_SQUOTE] = ACTIONS(4022), + [anon_sym_U_SQUOTE] = ACTIONS(4022), + [anon_sym_u8_SQUOTE] = ACTIONS(4022), + [anon_sym_SQUOTE] = ACTIONS(4022), + [anon_sym_L_DQUOTE] = ACTIONS(4022), + [anon_sym_u_DQUOTE] = ACTIONS(4022), + [anon_sym_U_DQUOTE] = ACTIONS(4022), + [anon_sym_u8_DQUOTE] = ACTIONS(4022), + [anon_sym_DQUOTE] = ACTIONS(4022), + [sym_true] = ACTIONS(4020), + [sym_false] = ACTIONS(4020), + [anon_sym_NULL] = ACTIONS(4020), + [anon_sym_nullptr] = ACTIONS(4020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4020), + [anon_sym_decltype] = ACTIONS(4020), + [anon_sym_explicit] = ACTIONS(4020), + [anon_sym_export] = ACTIONS(4020), + [anon_sym_module] = ACTIONS(4020), + [anon_sym_import] = ACTIONS(4020), + [anon_sym_template] = ACTIONS(4020), + [anon_sym_operator] = ACTIONS(4020), + [anon_sym_try] = ACTIONS(4020), + [anon_sym_delete] = ACTIONS(4020), + [anon_sym_throw] = ACTIONS(4020), + [anon_sym_namespace] = ACTIONS(4020), + [anon_sym_static_assert] = ACTIONS(4020), + [anon_sym_concept] = ACTIONS(4020), + [anon_sym_co_return] = ACTIONS(4020), + [anon_sym_co_yield] = ACTIONS(4020), + [anon_sym_R_DQUOTE] = ACTIONS(4022), + [anon_sym_LR_DQUOTE] = ACTIONS(4022), + [anon_sym_uR_DQUOTE] = ACTIONS(4022), + [anon_sym_UR_DQUOTE] = ACTIONS(4022), + [anon_sym_u8R_DQUOTE] = ACTIONS(4022), + [anon_sym_co_await] = ACTIONS(4020), + [anon_sym_new] = ACTIONS(4020), + [anon_sym_requires] = ACTIONS(4020), + [anon_sym_CARET_CARET] = ACTIONS(4022), + [anon_sym_LBRACK_COLON] = ACTIONS(4022), + [sym_this] = ACTIONS(4020), + }, + [STATE(743)] = { + [sym_identifier] = ACTIONS(4048), + [aux_sym_preproc_include_token1] = ACTIONS(4048), + [aux_sym_preproc_def_token1] = ACTIONS(4048), + [aux_sym_preproc_if_token1] = ACTIONS(4048), + [aux_sym_preproc_if_token2] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4048), + [sym_preproc_directive] = ACTIONS(4048), + [anon_sym_LPAREN2] = ACTIONS(4050), + [anon_sym_BANG] = ACTIONS(4050), + [anon_sym_TILDE] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4048), + [anon_sym_PLUS] = ACTIONS(4048), + [anon_sym_STAR] = ACTIONS(4050), + [anon_sym_AMP_AMP] = ACTIONS(4050), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_SEMI] = ACTIONS(4050), + [anon_sym___extension__] = ACTIONS(4048), + [anon_sym_typedef] = ACTIONS(4048), + [anon_sym_virtual] = ACTIONS(4048), + [anon_sym_extern] = ACTIONS(4048), + [anon_sym___attribute__] = ACTIONS(4048), + [anon_sym___attribute] = ACTIONS(4048), + [anon_sym_using] = ACTIONS(4048), + [anon_sym_COLON_COLON] = ACTIONS(4050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4050), + [anon_sym___declspec] = ACTIONS(4048), + [anon_sym___based] = ACTIONS(4048), + [anon_sym___cdecl] = ACTIONS(4048), + [anon_sym___clrcall] = ACTIONS(4048), + [anon_sym___stdcall] = ACTIONS(4048), + [anon_sym___fastcall] = ACTIONS(4048), + [anon_sym___thiscall] = ACTIONS(4048), + [anon_sym___vectorcall] = ACTIONS(4048), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_signed] = ACTIONS(4048), + [anon_sym_unsigned] = ACTIONS(4048), + [anon_sym_long] = ACTIONS(4048), + [anon_sym_short] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_static] = ACTIONS(4048), + [anon_sym_register] = ACTIONS(4048), + [anon_sym_inline] = ACTIONS(4048), + [anon_sym___inline] = ACTIONS(4048), + [anon_sym___inline__] = ACTIONS(4048), + [anon_sym___forceinline] = ACTIONS(4048), + [anon_sym_thread_local] = ACTIONS(4048), + [anon_sym___thread] = ACTIONS(4048), + [anon_sym_const] = ACTIONS(4048), + [anon_sym_constexpr] = ACTIONS(4048), + [anon_sym_volatile] = ACTIONS(4048), + [anon_sym_restrict] = ACTIONS(4048), + [anon_sym___restrict__] = ACTIONS(4048), + [anon_sym__Atomic] = ACTIONS(4048), + [anon_sym__Noreturn] = ACTIONS(4048), + [anon_sym_noreturn] = ACTIONS(4048), + [anon_sym__Nonnull] = ACTIONS(4048), + [anon_sym_mutable] = ACTIONS(4048), + [anon_sym_constinit] = ACTIONS(4048), + [anon_sym_consteval] = ACTIONS(4048), + [anon_sym_alignas] = ACTIONS(4048), + [anon_sym__Alignas] = ACTIONS(4048), + [sym_primitive_type] = ACTIONS(4048), + [anon_sym_enum] = ACTIONS(4048), + [anon_sym_class] = ACTIONS(4048), + [anon_sym_struct] = ACTIONS(4048), + [anon_sym_union] = ACTIONS(4048), + [anon_sym_if] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(4048), + [anon_sym_case] = ACTIONS(4048), + [anon_sym_default] = ACTIONS(4048), + [anon_sym_while] = ACTIONS(4048), + [anon_sym_do] = ACTIONS(4048), + [anon_sym_for] = ACTIONS(4048), + [anon_sym_return] = ACTIONS(4048), + [anon_sym_break] = ACTIONS(4048), + [anon_sym_continue] = ACTIONS(4048), + [anon_sym_goto] = ACTIONS(4048), + [anon_sym___try] = ACTIONS(4048), + [anon_sym___leave] = ACTIONS(4048), + [anon_sym_not] = ACTIONS(4048), + [anon_sym_compl] = ACTIONS(4048), + [anon_sym_DASH_DASH] = ACTIONS(4050), + [anon_sym_PLUS_PLUS] = ACTIONS(4050), + [anon_sym_sizeof] = ACTIONS(4048), + [anon_sym___alignof__] = ACTIONS(4048), + [anon_sym___alignof] = ACTIONS(4048), + [anon_sym__alignof] = ACTIONS(4048), + [anon_sym_alignof] = ACTIONS(4048), + [anon_sym__Alignof] = ACTIONS(4048), + [anon_sym_offsetof] = ACTIONS(4048), + [anon_sym__Generic] = ACTIONS(4048), + [anon_sym_typename] = ACTIONS(4048), + [anon_sym_asm] = ACTIONS(4048), + [anon_sym___asm__] = ACTIONS(4048), + [anon_sym___asm] = ACTIONS(4048), + [sym_number_literal] = ACTIONS(4050), + [anon_sym_L_SQUOTE] = ACTIONS(4050), + [anon_sym_u_SQUOTE] = ACTIONS(4050), + [anon_sym_U_SQUOTE] = ACTIONS(4050), + [anon_sym_u8_SQUOTE] = ACTIONS(4050), + [anon_sym_SQUOTE] = ACTIONS(4050), + [anon_sym_L_DQUOTE] = ACTIONS(4050), + [anon_sym_u_DQUOTE] = ACTIONS(4050), + [anon_sym_U_DQUOTE] = ACTIONS(4050), + [anon_sym_u8_DQUOTE] = ACTIONS(4050), + [anon_sym_DQUOTE] = ACTIONS(4050), + [sym_true] = ACTIONS(4048), + [sym_false] = ACTIONS(4048), + [anon_sym_NULL] = ACTIONS(4048), + [anon_sym_nullptr] = ACTIONS(4048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4048), + [anon_sym_decltype] = ACTIONS(4048), + [anon_sym_explicit] = ACTIONS(4048), + [anon_sym_export] = ACTIONS(4048), + [anon_sym_module] = ACTIONS(4048), + [anon_sym_import] = ACTIONS(4048), + [anon_sym_template] = ACTIONS(4048), + [anon_sym_operator] = ACTIONS(4048), + [anon_sym_try] = ACTIONS(4048), + [anon_sym_delete] = ACTIONS(4048), + [anon_sym_throw] = ACTIONS(4048), + [anon_sym_namespace] = ACTIONS(4048), + [anon_sym_static_assert] = ACTIONS(4048), + [anon_sym_concept] = ACTIONS(4048), + [anon_sym_co_return] = ACTIONS(4048), + [anon_sym_co_yield] = ACTIONS(4048), + [anon_sym_R_DQUOTE] = ACTIONS(4050), + [anon_sym_LR_DQUOTE] = ACTIONS(4050), + [anon_sym_uR_DQUOTE] = ACTIONS(4050), + [anon_sym_UR_DQUOTE] = ACTIONS(4050), + [anon_sym_u8R_DQUOTE] = ACTIONS(4050), + [anon_sym_co_await] = ACTIONS(4048), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_requires] = ACTIONS(4048), + [anon_sym_CARET_CARET] = ACTIONS(4050), + [anon_sym_LBRACK_COLON] = ACTIONS(4050), + [sym_this] = ACTIONS(4048), + }, + [STATE(744)] = { + [ts_builtin_sym_end] = ACTIONS(3161), + [sym_identifier] = ACTIONS(3163), + [aux_sym_preproc_include_token1] = ACTIONS(3163), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [anon_sym_COMMA] = ACTIONS(3488), + [anon_sym_RPAREN] = ACTIONS(3488), + [aux_sym_preproc_if_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), + [sym_preproc_directive] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3488), + [anon_sym___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_extern] = ACTIONS(3163), + [anon_sym___attribute__] = ACTIONS(3163), + [anon_sym___attribute] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3163), + [anon_sym___based] = ACTIONS(3163), + [anon_sym___cdecl] = ACTIONS(3163), + [anon_sym___clrcall] = ACTIONS(3163), + [anon_sym___stdcall] = ACTIONS(3163), + [anon_sym___fastcall] = ACTIONS(3163), + [anon_sym___thiscall] = ACTIONS(3163), + [anon_sym___vectorcall] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym___inline] = ACTIONS(3163), + [anon_sym___inline__] = ACTIONS(3163), + [anon_sym___forceinline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym___thread] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym___restrict__] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym__Noreturn] = ACTIONS(3163), + [anon_sym_noreturn] = ACTIONS(3163), + [anon_sym__Nonnull] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym__Alignas] = ACTIONS(3163), + [sym_primitive_type] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_switch] = ACTIONS(3163), + [anon_sym_case] = ACTIONS(3163), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_goto] = ACTIONS(3163), + [anon_sym_not] = ACTIONS(3163), + [anon_sym_compl] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3163), + [anon_sym___alignof__] = ACTIONS(3163), + [anon_sym___alignof] = ACTIONS(3163), + [anon_sym__alignof] = ACTIONS(3163), + [anon_sym_alignof] = ACTIONS(3163), + [anon_sym__Alignof] = ACTIONS(3163), + [anon_sym_offsetof] = ACTIONS(3163), + [anon_sym__Generic] = ACTIONS(3163), + [anon_sym_typename] = ACTIONS(3163), + [anon_sym_asm] = ACTIONS(3163), + [anon_sym___asm__] = ACTIONS(3163), + [anon_sym___asm] = ACTIONS(3163), + [sym_number_literal] = ACTIONS(3161), + [anon_sym_L_SQUOTE] = ACTIONS(3161), + [anon_sym_u_SQUOTE] = ACTIONS(3161), + [anon_sym_U_SQUOTE] = ACTIONS(3161), + [anon_sym_u8_SQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_L_DQUOTE] = ACTIONS(3161), + [anon_sym_u_DQUOTE] = ACTIONS(3161), + [anon_sym_U_DQUOTE] = ACTIONS(3161), + [anon_sym_u8_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [anon_sym_NULL] = ACTIONS(3163), + [anon_sym_nullptr] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_export] = ACTIONS(3163), + [anon_sym_module] = ACTIONS(3163), + [anon_sym_import] = ACTIONS(3163), + [anon_sym_template] = ACTIONS(3163), + [anon_sym_operator] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_delete] = ACTIONS(3163), + [anon_sym_throw] = ACTIONS(3163), + [anon_sym_namespace] = ACTIONS(3163), + [anon_sym_static_assert] = ACTIONS(3163), + [anon_sym_concept] = ACTIONS(3163), + [anon_sym_co_return] = ACTIONS(3163), + [anon_sym_co_yield] = ACTIONS(3163), + [anon_sym_R_DQUOTE] = ACTIONS(3161), + [anon_sym_LR_DQUOTE] = ACTIONS(3161), + [anon_sym_uR_DQUOTE] = ACTIONS(3161), + [anon_sym_UR_DQUOTE] = ACTIONS(3161), + [anon_sym_u8R_DQUOTE] = ACTIONS(3161), + [anon_sym_co_await] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_requires] = ACTIONS(3163), + [anon_sym_CARET_CARET] = ACTIONS(3161), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), + [sym_this] = ACTIONS(3163), + }, + [STATE(745)] = { + [sym_identifier] = ACTIONS(3614), + [aux_sym_preproc_include_token1] = ACTIONS(3614), + [aux_sym_preproc_def_token1] = ACTIONS(3614), + [aux_sym_preproc_if_token1] = ACTIONS(3614), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3614), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3614), + [sym_preproc_directive] = ACTIONS(3614), + [anon_sym_LPAREN2] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3614), + [anon_sym_STAR] = ACTIONS(3616), + [anon_sym_AMP_AMP] = ACTIONS(3616), + [anon_sym_AMP] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3616), + [anon_sym___extension__] = ACTIONS(3614), + [anon_sym_typedef] = ACTIONS(3614), + [anon_sym_virtual] = ACTIONS(3614), + [anon_sym_extern] = ACTIONS(3614), + [anon_sym___attribute__] = ACTIONS(3614), + [anon_sym___attribute] = ACTIONS(3614), + [anon_sym_using] = ACTIONS(3614), + [anon_sym_COLON_COLON] = ACTIONS(3616), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3616), + [anon_sym___declspec] = ACTIONS(3614), + [anon_sym___based] = ACTIONS(3614), + [anon_sym___cdecl] = ACTIONS(3614), + [anon_sym___clrcall] = ACTIONS(3614), + [anon_sym___stdcall] = ACTIONS(3614), + [anon_sym___fastcall] = ACTIONS(3614), + [anon_sym___thiscall] = ACTIONS(3614), + [anon_sym___vectorcall] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_RBRACE] = ACTIONS(3616), + [anon_sym_signed] = ACTIONS(3614), + [anon_sym_unsigned] = ACTIONS(3614), + [anon_sym_long] = ACTIONS(3614), + [anon_sym_short] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3614), + [anon_sym_static] = ACTIONS(3614), + [anon_sym_register] = ACTIONS(3614), + [anon_sym_inline] = ACTIONS(3614), + [anon_sym___inline] = ACTIONS(3614), + [anon_sym___inline__] = ACTIONS(3614), + [anon_sym___forceinline] = ACTIONS(3614), + [anon_sym_thread_local] = ACTIONS(3614), + [anon_sym___thread] = ACTIONS(3614), + [anon_sym_const] = ACTIONS(3614), + [anon_sym_constexpr] = ACTIONS(3614), + [anon_sym_volatile] = ACTIONS(3614), + [anon_sym_restrict] = ACTIONS(3614), + [anon_sym___restrict__] = ACTIONS(3614), + [anon_sym__Atomic] = ACTIONS(3614), + [anon_sym__Noreturn] = ACTIONS(3614), + [anon_sym_noreturn] = ACTIONS(3614), + [anon_sym__Nonnull] = ACTIONS(3614), + [anon_sym_mutable] = ACTIONS(3614), + [anon_sym_constinit] = ACTIONS(3614), + [anon_sym_consteval] = ACTIONS(3614), + [anon_sym_alignas] = ACTIONS(3614), + [anon_sym__Alignas] = ACTIONS(3614), + [sym_primitive_type] = ACTIONS(3614), + [anon_sym_enum] = ACTIONS(3614), + [anon_sym_class] = ACTIONS(3614), + [anon_sym_struct] = ACTIONS(3614), + [anon_sym_union] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(3614), + [anon_sym_else] = ACTIONS(3614), + [anon_sym_switch] = ACTIONS(3614), + [anon_sym_case] = ACTIONS(3614), + [anon_sym_default] = ACTIONS(3614), + [anon_sym_while] = ACTIONS(3614), + [anon_sym_do] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3614), + [anon_sym_return] = ACTIONS(3614), + [anon_sym_break] = ACTIONS(3614), + [anon_sym_continue] = ACTIONS(3614), + [anon_sym_goto] = ACTIONS(3614), + [anon_sym___try] = ACTIONS(3614), + [anon_sym___leave] = ACTIONS(3614), + [anon_sym_not] = ACTIONS(3614), + [anon_sym_compl] = ACTIONS(3614), + [anon_sym_DASH_DASH] = ACTIONS(3616), + [anon_sym_PLUS_PLUS] = ACTIONS(3616), + [anon_sym_sizeof] = ACTIONS(3614), + [anon_sym___alignof__] = ACTIONS(3614), + [anon_sym___alignof] = ACTIONS(3614), + [anon_sym__alignof] = ACTIONS(3614), + [anon_sym_alignof] = ACTIONS(3614), + [anon_sym__Alignof] = ACTIONS(3614), + [anon_sym_offsetof] = ACTIONS(3614), + [anon_sym__Generic] = ACTIONS(3614), + [anon_sym_typename] = ACTIONS(3614), + [anon_sym_asm] = ACTIONS(3614), + [anon_sym___asm__] = ACTIONS(3614), + [anon_sym___asm] = ACTIONS(3614), + [sym_number_literal] = ACTIONS(3616), + [anon_sym_L_SQUOTE] = ACTIONS(3616), + [anon_sym_u_SQUOTE] = ACTIONS(3616), + [anon_sym_U_SQUOTE] = ACTIONS(3616), + [anon_sym_u8_SQUOTE] = ACTIONS(3616), + [anon_sym_SQUOTE] = ACTIONS(3616), + [anon_sym_L_DQUOTE] = ACTIONS(3616), + [anon_sym_u_DQUOTE] = ACTIONS(3616), + [anon_sym_U_DQUOTE] = ACTIONS(3616), + [anon_sym_u8_DQUOTE] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [sym_true] = ACTIONS(3614), + [sym_false] = ACTIONS(3614), + [anon_sym_NULL] = ACTIONS(3614), + [anon_sym_nullptr] = ACTIONS(3614), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3614), + [anon_sym_decltype] = ACTIONS(3614), + [anon_sym_explicit] = ACTIONS(3614), + [anon_sym_export] = ACTIONS(3614), + [anon_sym_import] = ACTIONS(3614), + [anon_sym_template] = ACTIONS(3614), + [anon_sym_operator] = ACTIONS(3614), + [anon_sym_try] = ACTIONS(3614), + [anon_sym_delete] = ACTIONS(3614), + [anon_sym_throw] = ACTIONS(3614), + [anon_sym_namespace] = ACTIONS(3614), + [anon_sym_static_assert] = ACTIONS(3614), + [anon_sym_concept] = ACTIONS(3614), + [anon_sym_co_return] = ACTIONS(3614), + [anon_sym_co_yield] = ACTIONS(3614), + [anon_sym_R_DQUOTE] = ACTIONS(3616), + [anon_sym_LR_DQUOTE] = ACTIONS(3616), + [anon_sym_uR_DQUOTE] = ACTIONS(3616), + [anon_sym_UR_DQUOTE] = ACTIONS(3616), + [anon_sym_u8R_DQUOTE] = ACTIONS(3616), + [anon_sym_co_await] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3614), + [anon_sym_requires] = ACTIONS(3614), + [anon_sym_CARET_CARET] = ACTIONS(3616), + [anon_sym_LBRACK_COLON] = ACTIONS(3616), + [sym_this] = ACTIONS(3614), + }, + [STATE(746)] = { [sym_identifier] = ACTIONS(4192), [aux_sym_preproc_include_token1] = ACTIONS(4192), [aux_sym_preproc_def_token1] = ACTIONS(4192), @@ -179287,6 +166520,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4192), [anon_sym_decltype] = ACTIONS(4192), [anon_sym_explicit] = ACTIONS(4192), + [anon_sym_export] = ACTIONS(4192), + [anon_sym_module] = ACTIONS(4192), + [anon_sym_import] = ACTIONS(4192), [anon_sym_template] = ACTIONS(4192), [anon_sym_operator] = ACTIONS(4192), [anon_sym_try] = ACTIONS(4192), @@ -179309,1203 +166545,2921 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4194), [sym_this] = ACTIONS(4192), }, - [STATE(885)] = { - [sym_identifier] = ACTIONS(4152), - [aux_sym_preproc_include_token1] = ACTIONS(4152), - [aux_sym_preproc_def_token1] = ACTIONS(4152), - [aux_sym_preproc_if_token1] = ACTIONS(4152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4152), - [sym_preproc_directive] = ACTIONS(4152), - [anon_sym_LPAREN2] = ACTIONS(4154), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_TILDE] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4152), - [anon_sym_PLUS] = ACTIONS(4152), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_AMP_AMP] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4152), - [anon_sym_SEMI] = ACTIONS(4154), - [anon_sym___extension__] = ACTIONS(4152), - [anon_sym_typedef] = ACTIONS(4152), - [anon_sym_virtual] = ACTIONS(4152), - [anon_sym_extern] = ACTIONS(4152), - [anon_sym___attribute__] = ACTIONS(4152), - [anon_sym___attribute] = ACTIONS(4152), - [anon_sym_using] = ACTIONS(4152), - [anon_sym_COLON_COLON] = ACTIONS(4154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4154), - [anon_sym___declspec] = ACTIONS(4152), - [anon_sym___based] = ACTIONS(4152), - [anon_sym___cdecl] = ACTIONS(4152), - [anon_sym___clrcall] = ACTIONS(4152), - [anon_sym___stdcall] = ACTIONS(4152), - [anon_sym___fastcall] = ACTIONS(4152), - [anon_sym___thiscall] = ACTIONS(4152), - [anon_sym___vectorcall] = ACTIONS(4152), - [anon_sym_LBRACE] = ACTIONS(4154), - [anon_sym_RBRACE] = ACTIONS(4154), - [anon_sym_signed] = ACTIONS(4152), - [anon_sym_unsigned] = ACTIONS(4152), - [anon_sym_long] = ACTIONS(4152), - [anon_sym_short] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_static] = ACTIONS(4152), - [anon_sym_register] = ACTIONS(4152), - [anon_sym_inline] = ACTIONS(4152), - [anon_sym___inline] = ACTIONS(4152), - [anon_sym___inline__] = ACTIONS(4152), - [anon_sym___forceinline] = ACTIONS(4152), - [anon_sym_thread_local] = ACTIONS(4152), - [anon_sym___thread] = ACTIONS(4152), - [anon_sym_const] = ACTIONS(4152), - [anon_sym_constexpr] = ACTIONS(4152), - [anon_sym_volatile] = ACTIONS(4152), - [anon_sym_restrict] = ACTIONS(4152), - [anon_sym___restrict__] = ACTIONS(4152), - [anon_sym__Atomic] = ACTIONS(4152), - [anon_sym__Noreturn] = ACTIONS(4152), - [anon_sym_noreturn] = ACTIONS(4152), - [anon_sym__Nonnull] = ACTIONS(4152), - [anon_sym_mutable] = ACTIONS(4152), - [anon_sym_constinit] = ACTIONS(4152), - [anon_sym_consteval] = ACTIONS(4152), - [anon_sym_alignas] = ACTIONS(4152), - [anon_sym__Alignas] = ACTIONS(4152), - [sym_primitive_type] = ACTIONS(4152), - [anon_sym_enum] = ACTIONS(4152), - [anon_sym_class] = ACTIONS(4152), - [anon_sym_struct] = ACTIONS(4152), - [anon_sym_union] = ACTIONS(4152), - [anon_sym_if] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(4152), - [anon_sym_case] = ACTIONS(4152), - [anon_sym_default] = ACTIONS(4152), - [anon_sym_while] = ACTIONS(4152), - [anon_sym_do] = ACTIONS(4152), - [anon_sym_for] = ACTIONS(4152), - [anon_sym_return] = ACTIONS(4152), - [anon_sym_break] = ACTIONS(4152), - [anon_sym_continue] = ACTIONS(4152), - [anon_sym_goto] = ACTIONS(4152), - [anon_sym___try] = ACTIONS(4152), - [anon_sym___leave] = ACTIONS(4152), - [anon_sym_not] = ACTIONS(4152), - [anon_sym_compl] = ACTIONS(4152), - [anon_sym_DASH_DASH] = ACTIONS(4154), - [anon_sym_PLUS_PLUS] = ACTIONS(4154), - [anon_sym_sizeof] = ACTIONS(4152), - [anon_sym___alignof__] = ACTIONS(4152), - [anon_sym___alignof] = ACTIONS(4152), - [anon_sym__alignof] = ACTIONS(4152), - [anon_sym_alignof] = ACTIONS(4152), - [anon_sym__Alignof] = ACTIONS(4152), - [anon_sym_offsetof] = ACTIONS(4152), - [anon_sym__Generic] = ACTIONS(4152), - [anon_sym_typename] = ACTIONS(4152), - [anon_sym_asm] = ACTIONS(4152), - [anon_sym___asm__] = ACTIONS(4152), - [anon_sym___asm] = ACTIONS(4152), - [sym_number_literal] = ACTIONS(4154), - [anon_sym_L_SQUOTE] = ACTIONS(4154), - [anon_sym_u_SQUOTE] = ACTIONS(4154), - [anon_sym_U_SQUOTE] = ACTIONS(4154), - [anon_sym_u8_SQUOTE] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4154), - [anon_sym_L_DQUOTE] = ACTIONS(4154), - [anon_sym_u_DQUOTE] = ACTIONS(4154), - [anon_sym_U_DQUOTE] = ACTIONS(4154), - [anon_sym_u8_DQUOTE] = ACTIONS(4154), - [anon_sym_DQUOTE] = ACTIONS(4154), - [sym_true] = ACTIONS(4152), - [sym_false] = ACTIONS(4152), - [anon_sym_NULL] = ACTIONS(4152), - [anon_sym_nullptr] = ACTIONS(4152), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4152), - [anon_sym_decltype] = ACTIONS(4152), - [anon_sym_explicit] = ACTIONS(4152), - [anon_sym_template] = ACTIONS(4152), - [anon_sym_operator] = ACTIONS(4152), - [anon_sym_try] = ACTIONS(4152), - [anon_sym_delete] = ACTIONS(4152), - [anon_sym_throw] = ACTIONS(4152), - [anon_sym_namespace] = ACTIONS(4152), - [anon_sym_static_assert] = ACTIONS(4152), - [anon_sym_concept] = ACTIONS(4152), - [anon_sym_co_return] = ACTIONS(4152), - [anon_sym_co_yield] = ACTIONS(4152), - [anon_sym_R_DQUOTE] = ACTIONS(4154), - [anon_sym_LR_DQUOTE] = ACTIONS(4154), - [anon_sym_uR_DQUOTE] = ACTIONS(4154), - [anon_sym_UR_DQUOTE] = ACTIONS(4154), - [anon_sym_u8R_DQUOTE] = ACTIONS(4154), - [anon_sym_co_await] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_requires] = ACTIONS(4152), - [anon_sym_CARET_CARET] = ACTIONS(4154), - [anon_sym_LBRACK_COLON] = ACTIONS(4154), - [sym_this] = ACTIONS(4152), - }, - [STATE(886)] = { - [sym_identifier] = ACTIONS(3902), - [aux_sym_preproc_include_token1] = ACTIONS(3902), - [aux_sym_preproc_def_token1] = ACTIONS(3902), - [aux_sym_preproc_if_token1] = ACTIONS(3902), - [aux_sym_preproc_if_token2] = ACTIONS(3902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3902), - [sym_preproc_directive] = ACTIONS(3902), - [anon_sym_LPAREN2] = ACTIONS(3904), - [anon_sym_BANG] = ACTIONS(3904), - [anon_sym_TILDE] = ACTIONS(3904), - [anon_sym_DASH] = ACTIONS(3902), - [anon_sym_PLUS] = ACTIONS(3902), - [anon_sym_STAR] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3904), - [anon_sym_AMP] = ACTIONS(3902), - [anon_sym_SEMI] = ACTIONS(3904), - [anon_sym___extension__] = ACTIONS(3902), - [anon_sym_typedef] = ACTIONS(3902), - [anon_sym_virtual] = ACTIONS(3902), - [anon_sym_extern] = ACTIONS(3902), - [anon_sym___attribute__] = ACTIONS(3902), - [anon_sym___attribute] = ACTIONS(3902), - [anon_sym_using] = 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___cdecl] = ACTIONS(3902), - [anon_sym___clrcall] = ACTIONS(3902), - [anon_sym___stdcall] = ACTIONS(3902), - [anon_sym___fastcall] = ACTIONS(3902), - [anon_sym___thiscall] = ACTIONS(3902), - [anon_sym___vectorcall] = ACTIONS(3902), - [anon_sym_LBRACE] = ACTIONS(3904), - [anon_sym_signed] = ACTIONS(3902), - [anon_sym_unsigned] = ACTIONS(3902), - [anon_sym_long] = ACTIONS(3902), - [anon_sym_short] = ACTIONS(3902), - [anon_sym_LBRACK] = ACTIONS(3902), - [anon_sym_static] = ACTIONS(3902), - [anon_sym_register] = ACTIONS(3902), - [anon_sym_inline] = ACTIONS(3902), - [anon_sym___inline] = ACTIONS(3902), - [anon_sym___inline__] = ACTIONS(3902), - [anon_sym___forceinline] = ACTIONS(3902), - [anon_sym_thread_local] = ACTIONS(3902), - [anon_sym___thread] = ACTIONS(3902), - [anon_sym_const] = ACTIONS(3902), - [anon_sym_constexpr] = ACTIONS(3902), - [anon_sym_volatile] = ACTIONS(3902), - [anon_sym_restrict] = ACTIONS(3902), - [anon_sym___restrict__] = ACTIONS(3902), - [anon_sym__Atomic] = ACTIONS(3902), - [anon_sym__Noreturn] = ACTIONS(3902), - [anon_sym_noreturn] = ACTIONS(3902), - [anon_sym__Nonnull] = ACTIONS(3902), - [anon_sym_mutable] = ACTIONS(3902), - [anon_sym_constinit] = ACTIONS(3902), - [anon_sym_consteval] = ACTIONS(3902), - [anon_sym_alignas] = ACTIONS(3902), - [anon_sym__Alignas] = ACTIONS(3902), - [sym_primitive_type] = ACTIONS(3902), - [anon_sym_enum] = ACTIONS(3902), - [anon_sym_class] = ACTIONS(3902), - [anon_sym_struct] = ACTIONS(3902), - [anon_sym_union] = ACTIONS(3902), - [anon_sym_if] = ACTIONS(3902), - [anon_sym_switch] = ACTIONS(3902), - [anon_sym_case] = ACTIONS(3902), - [anon_sym_default] = ACTIONS(3902), - [anon_sym_while] = ACTIONS(3902), - [anon_sym_do] = ACTIONS(3902), - [anon_sym_for] = ACTIONS(3902), - [anon_sym_return] = ACTIONS(3902), - [anon_sym_break] = ACTIONS(3902), - [anon_sym_continue] = ACTIONS(3902), - [anon_sym_goto] = ACTIONS(3902), - [anon_sym___try] = ACTIONS(3902), - [anon_sym___leave] = ACTIONS(3902), - [anon_sym_not] = ACTIONS(3902), - [anon_sym_compl] = ACTIONS(3902), - [anon_sym_DASH_DASH] = ACTIONS(3904), - [anon_sym_PLUS_PLUS] = ACTIONS(3904), - [anon_sym_sizeof] = ACTIONS(3902), - [anon_sym___alignof__] = ACTIONS(3902), - [anon_sym___alignof] = ACTIONS(3902), - [anon_sym__alignof] = ACTIONS(3902), - [anon_sym_alignof] = ACTIONS(3902), - [anon_sym__Alignof] = ACTIONS(3902), - [anon_sym_offsetof] = ACTIONS(3902), - [anon_sym__Generic] = ACTIONS(3902), - [anon_sym_typename] = ACTIONS(3902), - [anon_sym_asm] = ACTIONS(3902), - [anon_sym___asm__] = ACTIONS(3902), - [anon_sym___asm] = ACTIONS(3902), - [sym_number_literal] = ACTIONS(3904), - [anon_sym_L_SQUOTE] = ACTIONS(3904), - [anon_sym_u_SQUOTE] = ACTIONS(3904), - [anon_sym_U_SQUOTE] = ACTIONS(3904), - [anon_sym_u8_SQUOTE] = ACTIONS(3904), - [anon_sym_SQUOTE] = ACTIONS(3904), - [anon_sym_L_DQUOTE] = ACTIONS(3904), - [anon_sym_u_DQUOTE] = ACTIONS(3904), - [anon_sym_U_DQUOTE] = ACTIONS(3904), - [anon_sym_u8_DQUOTE] = ACTIONS(3904), - [anon_sym_DQUOTE] = ACTIONS(3904), - [sym_true] = ACTIONS(3902), - [sym_false] = ACTIONS(3902), - [anon_sym_NULL] = ACTIONS(3902), - [anon_sym_nullptr] = ACTIONS(3902), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3902), - [anon_sym_decltype] = ACTIONS(3902), - [anon_sym_explicit] = ACTIONS(3902), - [anon_sym_template] = ACTIONS(3902), - [anon_sym_operator] = ACTIONS(3902), - [anon_sym_try] = ACTIONS(3902), - [anon_sym_delete] = ACTIONS(3902), - [anon_sym_throw] = ACTIONS(3902), - [anon_sym_namespace] = ACTIONS(3902), - [anon_sym_static_assert] = ACTIONS(3902), - [anon_sym_concept] = ACTIONS(3902), - [anon_sym_co_return] = ACTIONS(3902), - [anon_sym_co_yield] = ACTIONS(3902), - [anon_sym_R_DQUOTE] = ACTIONS(3904), - [anon_sym_LR_DQUOTE] = ACTIONS(3904), - [anon_sym_uR_DQUOTE] = ACTIONS(3904), - [anon_sym_UR_DQUOTE] = ACTIONS(3904), - [anon_sym_u8R_DQUOTE] = ACTIONS(3904), - [anon_sym_co_await] = ACTIONS(3902), - [anon_sym_new] = ACTIONS(3902), - [anon_sym_requires] = ACTIONS(3902), - [anon_sym_CARET_CARET] = ACTIONS(3904), - [anon_sym_LBRACK_COLON] = ACTIONS(3904), - [sym_this] = ACTIONS(3902), + [STATE(747)] = { + [sym_identifier] = ACTIONS(4282), + [aux_sym_preproc_include_token1] = ACTIONS(4282), + [aux_sym_preproc_def_token1] = ACTIONS(4282), + [aux_sym_preproc_if_token1] = ACTIONS(4282), + [aux_sym_preproc_if_token2] = ACTIONS(4282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4282), + [sym_preproc_directive] = ACTIONS(4282), + [anon_sym_LPAREN2] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4284), + [anon_sym_TILDE] = ACTIONS(4284), + [anon_sym_DASH] = ACTIONS(4282), + [anon_sym_PLUS] = ACTIONS(4282), + [anon_sym_STAR] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(4282), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym___extension__] = ACTIONS(4282), + [anon_sym_typedef] = ACTIONS(4282), + [anon_sym_virtual] = ACTIONS(4282), + [anon_sym_extern] = ACTIONS(4282), + [anon_sym___attribute__] = ACTIONS(4282), + [anon_sym___attribute] = ACTIONS(4282), + [anon_sym_using] = ACTIONS(4282), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), + [anon_sym___declspec] = ACTIONS(4282), + [anon_sym___based] = ACTIONS(4282), + [anon_sym___cdecl] = ACTIONS(4282), + [anon_sym___clrcall] = ACTIONS(4282), + [anon_sym___stdcall] = ACTIONS(4282), + [anon_sym___fastcall] = ACTIONS(4282), + [anon_sym___thiscall] = ACTIONS(4282), + [anon_sym___vectorcall] = ACTIONS(4282), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_signed] = ACTIONS(4282), + [anon_sym_unsigned] = ACTIONS(4282), + [anon_sym_long] = ACTIONS(4282), + [anon_sym_short] = ACTIONS(4282), + [anon_sym_LBRACK] = ACTIONS(4282), + [anon_sym_static] = ACTIONS(4282), + [anon_sym_register] = ACTIONS(4282), + [anon_sym_inline] = ACTIONS(4282), + [anon_sym___inline] = ACTIONS(4282), + [anon_sym___inline__] = ACTIONS(4282), + [anon_sym___forceinline] = ACTIONS(4282), + [anon_sym_thread_local] = ACTIONS(4282), + [anon_sym___thread] = ACTIONS(4282), + [anon_sym_const] = ACTIONS(4282), + [anon_sym_constexpr] = ACTIONS(4282), + [anon_sym_volatile] = ACTIONS(4282), + [anon_sym_restrict] = ACTIONS(4282), + [anon_sym___restrict__] = ACTIONS(4282), + [anon_sym__Atomic] = ACTIONS(4282), + [anon_sym__Noreturn] = ACTIONS(4282), + [anon_sym_noreturn] = ACTIONS(4282), + [anon_sym__Nonnull] = ACTIONS(4282), + [anon_sym_mutable] = ACTIONS(4282), + [anon_sym_constinit] = ACTIONS(4282), + [anon_sym_consteval] = ACTIONS(4282), + [anon_sym_alignas] = ACTIONS(4282), + [anon_sym__Alignas] = ACTIONS(4282), + [sym_primitive_type] = ACTIONS(4282), + [anon_sym_enum] = ACTIONS(4282), + [anon_sym_class] = ACTIONS(4282), + [anon_sym_struct] = ACTIONS(4282), + [anon_sym_union] = ACTIONS(4282), + [anon_sym_if] = ACTIONS(4282), + [anon_sym_switch] = ACTIONS(4282), + [anon_sym_case] = ACTIONS(4282), + [anon_sym_default] = ACTIONS(4282), + [anon_sym_while] = ACTIONS(4282), + [anon_sym_do] = ACTIONS(4282), + [anon_sym_for] = ACTIONS(4282), + [anon_sym_return] = ACTIONS(4282), + [anon_sym_break] = ACTIONS(4282), + [anon_sym_continue] = ACTIONS(4282), + [anon_sym_goto] = ACTIONS(4282), + [anon_sym___try] = ACTIONS(4282), + [anon_sym___leave] = ACTIONS(4282), + [anon_sym_not] = ACTIONS(4282), + [anon_sym_compl] = ACTIONS(4282), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_sizeof] = ACTIONS(4282), + [anon_sym___alignof__] = ACTIONS(4282), + [anon_sym___alignof] = ACTIONS(4282), + [anon_sym__alignof] = ACTIONS(4282), + [anon_sym_alignof] = ACTIONS(4282), + [anon_sym__Alignof] = ACTIONS(4282), + [anon_sym_offsetof] = ACTIONS(4282), + [anon_sym__Generic] = ACTIONS(4282), + [anon_sym_typename] = ACTIONS(4282), + [anon_sym_asm] = ACTIONS(4282), + [anon_sym___asm__] = ACTIONS(4282), + [anon_sym___asm] = ACTIONS(4282), + [sym_number_literal] = ACTIONS(4284), + [anon_sym_L_SQUOTE] = ACTIONS(4284), + [anon_sym_u_SQUOTE] = ACTIONS(4284), + [anon_sym_U_SQUOTE] = ACTIONS(4284), + [anon_sym_u8_SQUOTE] = ACTIONS(4284), + [anon_sym_SQUOTE] = ACTIONS(4284), + [anon_sym_L_DQUOTE] = ACTIONS(4284), + [anon_sym_u_DQUOTE] = ACTIONS(4284), + [anon_sym_U_DQUOTE] = ACTIONS(4284), + [anon_sym_u8_DQUOTE] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4284), + [sym_true] = ACTIONS(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4282), + [anon_sym_nullptr] = ACTIONS(4282), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4282), + [anon_sym_decltype] = ACTIONS(4282), + [anon_sym_explicit] = ACTIONS(4282), + [anon_sym_export] = ACTIONS(4282), + [anon_sym_module] = ACTIONS(4282), + [anon_sym_import] = ACTIONS(4282), + [anon_sym_template] = ACTIONS(4282), + [anon_sym_operator] = ACTIONS(4282), + [anon_sym_try] = ACTIONS(4282), + [anon_sym_delete] = ACTIONS(4282), + [anon_sym_throw] = ACTIONS(4282), + [anon_sym_namespace] = ACTIONS(4282), + [anon_sym_static_assert] = ACTIONS(4282), + [anon_sym_concept] = ACTIONS(4282), + [anon_sym_co_return] = ACTIONS(4282), + [anon_sym_co_yield] = ACTIONS(4282), + [anon_sym_R_DQUOTE] = ACTIONS(4284), + [anon_sym_LR_DQUOTE] = ACTIONS(4284), + [anon_sym_uR_DQUOTE] = ACTIONS(4284), + [anon_sym_UR_DQUOTE] = ACTIONS(4284), + [anon_sym_u8R_DQUOTE] = ACTIONS(4284), + [anon_sym_co_await] = ACTIONS(4282), + [anon_sym_new] = ACTIONS(4282), + [anon_sym_requires] = ACTIONS(4282), + [anon_sym_CARET_CARET] = ACTIONS(4284), + [anon_sym_LBRACK_COLON] = ACTIONS(4284), + [sym_this] = ACTIONS(4282), }, - [STATE(887)] = { - [sym_identifier] = ACTIONS(4100), - [aux_sym_preproc_include_token1] = ACTIONS(4100), - [aux_sym_preproc_def_token1] = ACTIONS(4100), - [aux_sym_preproc_if_token1] = ACTIONS(4100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), - [sym_preproc_directive] = ACTIONS(4100), - [anon_sym_LPAREN2] = ACTIONS(4102), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4102), - [anon_sym_AMP] = ACTIONS(4100), - [anon_sym_SEMI] = ACTIONS(4102), - [anon_sym___extension__] = ACTIONS(4100), - [anon_sym_typedef] = ACTIONS(4100), - [anon_sym_virtual] = ACTIONS(4100), - [anon_sym_extern] = ACTIONS(4100), - [anon_sym___attribute__] = ACTIONS(4100), - [anon_sym___attribute] = ACTIONS(4100), - [anon_sym_using] = ACTIONS(4100), - [anon_sym_COLON_COLON] = ACTIONS(4102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4102), - [anon_sym___declspec] = ACTIONS(4100), - [anon_sym___based] = ACTIONS(4100), - [anon_sym___cdecl] = ACTIONS(4100), - [anon_sym___clrcall] = ACTIONS(4100), - [anon_sym___stdcall] = ACTIONS(4100), - [anon_sym___fastcall] = ACTIONS(4100), - [anon_sym___thiscall] = ACTIONS(4100), - [anon_sym___vectorcall] = ACTIONS(4100), - [anon_sym_LBRACE] = ACTIONS(4102), - [anon_sym_RBRACE] = ACTIONS(4102), - [anon_sym_signed] = ACTIONS(4100), - [anon_sym_unsigned] = ACTIONS(4100), - [anon_sym_long] = ACTIONS(4100), - [anon_sym_short] = ACTIONS(4100), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_static] = ACTIONS(4100), - [anon_sym_register] = ACTIONS(4100), - [anon_sym_inline] = ACTIONS(4100), - [anon_sym___inline] = ACTIONS(4100), - [anon_sym___inline__] = ACTIONS(4100), - [anon_sym___forceinline] = ACTIONS(4100), - [anon_sym_thread_local] = ACTIONS(4100), - [anon_sym___thread] = ACTIONS(4100), - [anon_sym_const] = ACTIONS(4100), - [anon_sym_constexpr] = ACTIONS(4100), - [anon_sym_volatile] = ACTIONS(4100), - [anon_sym_restrict] = ACTIONS(4100), - [anon_sym___restrict__] = ACTIONS(4100), - [anon_sym__Atomic] = ACTIONS(4100), - [anon_sym__Noreturn] = ACTIONS(4100), - [anon_sym_noreturn] = ACTIONS(4100), - [anon_sym__Nonnull] = ACTIONS(4100), - [anon_sym_mutable] = ACTIONS(4100), - [anon_sym_constinit] = ACTIONS(4100), - [anon_sym_consteval] = ACTIONS(4100), - [anon_sym_alignas] = ACTIONS(4100), - [anon_sym__Alignas] = ACTIONS(4100), - [sym_primitive_type] = ACTIONS(4100), - [anon_sym_enum] = ACTIONS(4100), - [anon_sym_class] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(4100), - [anon_sym_union] = ACTIONS(4100), - [anon_sym_if] = ACTIONS(4100), - [anon_sym_switch] = ACTIONS(4100), - [anon_sym_case] = ACTIONS(4100), - [anon_sym_default] = ACTIONS(4100), - [anon_sym_while] = ACTIONS(4100), - [anon_sym_do] = ACTIONS(4100), - [anon_sym_for] = ACTIONS(4100), - [anon_sym_return] = ACTIONS(4100), - [anon_sym_break] = ACTIONS(4100), - [anon_sym_continue] = ACTIONS(4100), - [anon_sym_goto] = ACTIONS(4100), - [anon_sym___try] = ACTIONS(4100), - [anon_sym___leave] = ACTIONS(4100), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(4102), - [anon_sym_PLUS_PLUS] = ACTIONS(4102), - [anon_sym_sizeof] = ACTIONS(4100), - [anon_sym___alignof__] = ACTIONS(4100), - [anon_sym___alignof] = ACTIONS(4100), - [anon_sym__alignof] = ACTIONS(4100), - [anon_sym_alignof] = ACTIONS(4100), - [anon_sym__Alignof] = ACTIONS(4100), - [anon_sym_offsetof] = ACTIONS(4100), - [anon_sym__Generic] = ACTIONS(4100), - [anon_sym_typename] = ACTIONS(4100), - [anon_sym_asm] = ACTIONS(4100), - [anon_sym___asm__] = ACTIONS(4100), - [anon_sym___asm] = ACTIONS(4100), - [sym_number_literal] = ACTIONS(4102), - [anon_sym_L_SQUOTE] = ACTIONS(4102), - [anon_sym_u_SQUOTE] = ACTIONS(4102), - [anon_sym_U_SQUOTE] = ACTIONS(4102), - [anon_sym_u8_SQUOTE] = ACTIONS(4102), - [anon_sym_SQUOTE] = ACTIONS(4102), - [anon_sym_L_DQUOTE] = ACTIONS(4102), - [anon_sym_u_DQUOTE] = ACTIONS(4102), - [anon_sym_U_DQUOTE] = ACTIONS(4102), - [anon_sym_u8_DQUOTE] = ACTIONS(4102), - [anon_sym_DQUOTE] = ACTIONS(4102), - [sym_true] = ACTIONS(4100), - [sym_false] = ACTIONS(4100), - [anon_sym_NULL] = ACTIONS(4100), - [anon_sym_nullptr] = ACTIONS(4100), + [STATE(748)] = { + [sym_identifier] = ACTIONS(3608), + [aux_sym_preproc_include_token1] = ACTIONS(3608), + [aux_sym_preproc_def_token1] = ACTIONS(3608), + [aux_sym_preproc_if_token1] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3608), + [sym_preproc_directive] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3610), + [anon_sym_AMP_AMP] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3608), + [anon_sym_SEMI] = ACTIONS(3610), + [anon_sym___extension__] = ACTIONS(3608), + [anon_sym_typedef] = ACTIONS(3608), + [anon_sym_virtual] = ACTIONS(3608), + [anon_sym_extern] = ACTIONS(3608), + [anon_sym___attribute__] = ACTIONS(3608), + [anon_sym___attribute] = ACTIONS(3608), + [anon_sym_using] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3610), + [anon_sym___declspec] = ACTIONS(3608), + [anon_sym___based] = ACTIONS(3608), + [anon_sym___cdecl] = ACTIONS(3608), + [anon_sym___clrcall] = ACTIONS(3608), + [anon_sym___stdcall] = ACTIONS(3608), + [anon_sym___fastcall] = ACTIONS(3608), + [anon_sym___thiscall] = ACTIONS(3608), + [anon_sym___vectorcall] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(3610), + [anon_sym_RBRACE] = ACTIONS(3610), + [anon_sym_signed] = ACTIONS(3608), + [anon_sym_unsigned] = ACTIONS(3608), + [anon_sym_long] = ACTIONS(3608), + [anon_sym_short] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_static] = ACTIONS(3608), + [anon_sym_register] = ACTIONS(3608), + [anon_sym_inline] = ACTIONS(3608), + [anon_sym___inline] = ACTIONS(3608), + [anon_sym___inline__] = ACTIONS(3608), + [anon_sym___forceinline] = ACTIONS(3608), + [anon_sym_thread_local] = ACTIONS(3608), + [anon_sym___thread] = ACTIONS(3608), + [anon_sym_const] = ACTIONS(3608), + [anon_sym_constexpr] = ACTIONS(3608), + [anon_sym_volatile] = ACTIONS(3608), + [anon_sym_restrict] = ACTIONS(3608), + [anon_sym___restrict__] = ACTIONS(3608), + [anon_sym__Atomic] = ACTIONS(3608), + [anon_sym__Noreturn] = ACTIONS(3608), + [anon_sym_noreturn] = ACTIONS(3608), + [anon_sym__Nonnull] = ACTIONS(3608), + [anon_sym_mutable] = ACTIONS(3608), + [anon_sym_constinit] = ACTIONS(3608), + [anon_sym_consteval] = ACTIONS(3608), + [anon_sym_alignas] = ACTIONS(3608), + [anon_sym__Alignas] = ACTIONS(3608), + [sym_primitive_type] = ACTIONS(3608), + [anon_sym_enum] = ACTIONS(3608), + [anon_sym_class] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3608), + [anon_sym_union] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_else] = ACTIONS(3608), + [anon_sym_switch] = ACTIONS(3608), + [anon_sym_case] = ACTIONS(3608), + [anon_sym_default] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_break] = ACTIONS(3608), + [anon_sym_continue] = ACTIONS(3608), + [anon_sym_goto] = ACTIONS(3608), + [anon_sym___try] = ACTIONS(3608), + [anon_sym___leave] = ACTIONS(3608), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(3610), + [anon_sym_PLUS_PLUS] = ACTIONS(3610), + [anon_sym_sizeof] = ACTIONS(3608), + [anon_sym___alignof__] = ACTIONS(3608), + [anon_sym___alignof] = ACTIONS(3608), + [anon_sym__alignof] = ACTIONS(3608), + [anon_sym_alignof] = ACTIONS(3608), + [anon_sym__Alignof] = ACTIONS(3608), + [anon_sym_offsetof] = ACTIONS(3608), + [anon_sym__Generic] = ACTIONS(3608), + [anon_sym_typename] = ACTIONS(3608), + [anon_sym_asm] = ACTIONS(3608), + [anon_sym___asm__] = ACTIONS(3608), + [anon_sym___asm] = ACTIONS(3608), + [sym_number_literal] = ACTIONS(3610), + [anon_sym_L_SQUOTE] = ACTIONS(3610), + [anon_sym_u_SQUOTE] = ACTIONS(3610), + [anon_sym_U_SQUOTE] = ACTIONS(3610), + [anon_sym_u8_SQUOTE] = ACTIONS(3610), + [anon_sym_SQUOTE] = ACTIONS(3610), + [anon_sym_L_DQUOTE] = ACTIONS(3610), + [anon_sym_u_DQUOTE] = ACTIONS(3610), + [anon_sym_U_DQUOTE] = ACTIONS(3610), + [anon_sym_u8_DQUOTE] = ACTIONS(3610), + [anon_sym_DQUOTE] = ACTIONS(3610), + [sym_true] = ACTIONS(3608), + [sym_false] = ACTIONS(3608), + [anon_sym_NULL] = ACTIONS(3608), + [anon_sym_nullptr] = ACTIONS(3608), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4100), - [anon_sym_decltype] = ACTIONS(4100), - [anon_sym_explicit] = ACTIONS(4100), - [anon_sym_template] = ACTIONS(4100), - [anon_sym_operator] = ACTIONS(4100), - [anon_sym_try] = ACTIONS(4100), - [anon_sym_delete] = ACTIONS(4100), - [anon_sym_throw] = ACTIONS(4100), - [anon_sym_namespace] = ACTIONS(4100), - [anon_sym_static_assert] = ACTIONS(4100), - [anon_sym_concept] = ACTIONS(4100), - [anon_sym_co_return] = ACTIONS(4100), - [anon_sym_co_yield] = ACTIONS(4100), - [anon_sym_R_DQUOTE] = ACTIONS(4102), - [anon_sym_LR_DQUOTE] = ACTIONS(4102), - [anon_sym_uR_DQUOTE] = ACTIONS(4102), - [anon_sym_UR_DQUOTE] = ACTIONS(4102), - [anon_sym_u8R_DQUOTE] = ACTIONS(4102), - [anon_sym_co_await] = ACTIONS(4100), - [anon_sym_new] = ACTIONS(4100), - [anon_sym_requires] = ACTIONS(4100), - [anon_sym_CARET_CARET] = ACTIONS(4102), - [anon_sym_LBRACK_COLON] = ACTIONS(4102), - [sym_this] = ACTIONS(4100), + [sym_auto] = ACTIONS(3608), + [anon_sym_decltype] = ACTIONS(3608), + [anon_sym_explicit] = ACTIONS(3608), + [anon_sym_export] = ACTIONS(3608), + [anon_sym_import] = ACTIONS(3608), + [anon_sym_template] = ACTIONS(3608), + [anon_sym_operator] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_delete] = ACTIONS(3608), + [anon_sym_throw] = ACTIONS(3608), + [anon_sym_namespace] = ACTIONS(3608), + [anon_sym_static_assert] = ACTIONS(3608), + [anon_sym_concept] = ACTIONS(3608), + [anon_sym_co_return] = ACTIONS(3608), + [anon_sym_co_yield] = ACTIONS(3608), + [anon_sym_R_DQUOTE] = ACTIONS(3610), + [anon_sym_LR_DQUOTE] = ACTIONS(3610), + [anon_sym_uR_DQUOTE] = ACTIONS(3610), + [anon_sym_UR_DQUOTE] = ACTIONS(3610), + [anon_sym_u8R_DQUOTE] = ACTIONS(3610), + [anon_sym_co_await] = ACTIONS(3608), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_requires] = ACTIONS(3608), + [anon_sym_CARET_CARET] = ACTIONS(3610), + [anon_sym_LBRACK_COLON] = ACTIONS(3610), + [sym_this] = ACTIONS(3608), }, - [STATE(888)] = { - [sym_identifier] = ACTIONS(4156), - [aux_sym_preproc_include_token1] = ACTIONS(4156), - [aux_sym_preproc_def_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), - [sym_preproc_directive] = ACTIONS(4156), - [anon_sym_LPAREN2] = ACTIONS(4158), - [anon_sym_BANG] = ACTIONS(4158), - [anon_sym_TILDE] = ACTIONS(4158), - [anon_sym_DASH] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4156), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_SEMI] = ACTIONS(4158), - [anon_sym___extension__] = ACTIONS(4156), - [anon_sym_typedef] = ACTIONS(4156), - [anon_sym_virtual] = ACTIONS(4156), - [anon_sym_extern] = ACTIONS(4156), - [anon_sym___attribute__] = ACTIONS(4156), - [anon_sym___attribute] = ACTIONS(4156), - [anon_sym_using] = ACTIONS(4156), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), - [anon_sym___declspec] = ACTIONS(4156), - [anon_sym___based] = ACTIONS(4156), - [anon_sym___cdecl] = ACTIONS(4156), - [anon_sym___clrcall] = ACTIONS(4156), - [anon_sym___stdcall] = ACTIONS(4156), - [anon_sym___fastcall] = ACTIONS(4156), - [anon_sym___thiscall] = ACTIONS(4156), - [anon_sym___vectorcall] = ACTIONS(4156), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_signed] = ACTIONS(4156), - [anon_sym_unsigned] = ACTIONS(4156), - [anon_sym_long] = ACTIONS(4156), - [anon_sym_short] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4156), - [anon_sym_register] = ACTIONS(4156), - [anon_sym_inline] = ACTIONS(4156), - [anon_sym___inline] = ACTIONS(4156), - [anon_sym___inline__] = ACTIONS(4156), - [anon_sym___forceinline] = ACTIONS(4156), - [anon_sym_thread_local] = ACTIONS(4156), - [anon_sym___thread] = ACTIONS(4156), - [anon_sym_const] = ACTIONS(4156), - [anon_sym_constexpr] = ACTIONS(4156), - [anon_sym_volatile] = ACTIONS(4156), - [anon_sym_restrict] = ACTIONS(4156), - [anon_sym___restrict__] = ACTIONS(4156), - [anon_sym__Atomic] = ACTIONS(4156), - [anon_sym__Noreturn] = ACTIONS(4156), - [anon_sym_noreturn] = ACTIONS(4156), - [anon_sym__Nonnull] = ACTIONS(4156), - [anon_sym_mutable] = ACTIONS(4156), - [anon_sym_constinit] = ACTIONS(4156), - [anon_sym_consteval] = ACTIONS(4156), - [anon_sym_alignas] = ACTIONS(4156), - [anon_sym__Alignas] = ACTIONS(4156), - [sym_primitive_type] = ACTIONS(4156), - [anon_sym_enum] = ACTIONS(4156), - [anon_sym_class] = ACTIONS(4156), - [anon_sym_struct] = ACTIONS(4156), - [anon_sym_union] = ACTIONS(4156), - [anon_sym_if] = ACTIONS(4156), - [anon_sym_switch] = ACTIONS(4156), - [anon_sym_case] = ACTIONS(4156), - [anon_sym_default] = ACTIONS(4156), - [anon_sym_while] = ACTIONS(4156), - [anon_sym_do] = ACTIONS(4156), - [anon_sym_for] = ACTIONS(4156), - [anon_sym_return] = ACTIONS(4156), - [anon_sym_break] = ACTIONS(4156), - [anon_sym_continue] = ACTIONS(4156), - [anon_sym_goto] = ACTIONS(4156), - [anon_sym___try] = ACTIONS(4156), - [anon_sym___leave] = ACTIONS(4156), - [anon_sym_not] = ACTIONS(4156), - [anon_sym_compl] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4158), - [anon_sym_PLUS_PLUS] = ACTIONS(4158), - [anon_sym_sizeof] = ACTIONS(4156), - [anon_sym___alignof__] = ACTIONS(4156), - [anon_sym___alignof] = ACTIONS(4156), - [anon_sym__alignof] = ACTIONS(4156), - [anon_sym_alignof] = ACTIONS(4156), - [anon_sym__Alignof] = ACTIONS(4156), - [anon_sym_offsetof] = ACTIONS(4156), - [anon_sym__Generic] = ACTIONS(4156), - [anon_sym_typename] = ACTIONS(4156), - [anon_sym_asm] = ACTIONS(4156), - [anon_sym___asm__] = ACTIONS(4156), - [anon_sym___asm] = ACTIONS(4156), - [sym_number_literal] = ACTIONS(4158), - [anon_sym_L_SQUOTE] = ACTIONS(4158), - [anon_sym_u_SQUOTE] = ACTIONS(4158), - [anon_sym_U_SQUOTE] = ACTIONS(4158), - [anon_sym_u8_SQUOTE] = ACTIONS(4158), - [anon_sym_SQUOTE] = ACTIONS(4158), - [anon_sym_L_DQUOTE] = ACTIONS(4158), - [anon_sym_u_DQUOTE] = ACTIONS(4158), - [anon_sym_U_DQUOTE] = ACTIONS(4158), - [anon_sym_u8_DQUOTE] = ACTIONS(4158), - [anon_sym_DQUOTE] = ACTIONS(4158), - [sym_true] = ACTIONS(4156), - [sym_false] = ACTIONS(4156), - [anon_sym_NULL] = ACTIONS(4156), - [anon_sym_nullptr] = ACTIONS(4156), + [STATE(749)] = { + [sym_identifier] = ACTIONS(3618), + [aux_sym_preproc_include_token1] = ACTIONS(3618), + [aux_sym_preproc_def_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), + [sym_preproc_directive] = ACTIONS(3618), + [anon_sym_LPAREN2] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_AMP] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym___extension__] = ACTIONS(3618), + [anon_sym_typedef] = ACTIONS(3618), + [anon_sym_virtual] = ACTIONS(3618), + [anon_sym_extern] = ACTIONS(3618), + [anon_sym___attribute__] = ACTIONS(3618), + [anon_sym___attribute] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_COLON_COLON] = ACTIONS(3620), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), + [anon_sym___declspec] = ACTIONS(3618), + [anon_sym___based] = ACTIONS(3618), + [anon_sym___cdecl] = ACTIONS(3618), + [anon_sym___clrcall] = ACTIONS(3618), + [anon_sym___stdcall] = ACTIONS(3618), + [anon_sym___fastcall] = ACTIONS(3618), + [anon_sym___thiscall] = ACTIONS(3618), + [anon_sym___vectorcall] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_RBRACE] = ACTIONS(3620), + [anon_sym_signed] = ACTIONS(3618), + [anon_sym_unsigned] = ACTIONS(3618), + [anon_sym_long] = ACTIONS(3618), + [anon_sym_short] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_register] = ACTIONS(3618), + [anon_sym_inline] = ACTIONS(3618), + [anon_sym___inline] = ACTIONS(3618), + [anon_sym___inline__] = ACTIONS(3618), + [anon_sym___forceinline] = ACTIONS(3618), + [anon_sym_thread_local] = ACTIONS(3618), + [anon_sym___thread] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_constexpr] = ACTIONS(3618), + [anon_sym_volatile] = ACTIONS(3618), + [anon_sym_restrict] = ACTIONS(3618), + [anon_sym___restrict__] = ACTIONS(3618), + [anon_sym__Atomic] = ACTIONS(3618), + [anon_sym__Noreturn] = ACTIONS(3618), + [anon_sym_noreturn] = ACTIONS(3618), + [anon_sym__Nonnull] = ACTIONS(3618), + [anon_sym_mutable] = ACTIONS(3618), + [anon_sym_constinit] = ACTIONS(3618), + [anon_sym_consteval] = ACTIONS(3618), + [anon_sym_alignas] = ACTIONS(3618), + [anon_sym__Alignas] = ACTIONS(3618), + [sym_primitive_type] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_struct] = ACTIONS(3618), + [anon_sym_union] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_else] = ACTIONS(3618), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_case] = ACTIONS(3618), + [anon_sym_default] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_goto] = ACTIONS(3618), + [anon_sym___try] = ACTIONS(3618), + [anon_sym___leave] = ACTIONS(3618), + [anon_sym_not] = ACTIONS(3618), + [anon_sym_compl] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_sizeof] = ACTIONS(3618), + [anon_sym___alignof__] = ACTIONS(3618), + [anon_sym___alignof] = ACTIONS(3618), + [anon_sym__alignof] = ACTIONS(3618), + [anon_sym_alignof] = ACTIONS(3618), + [anon_sym__Alignof] = ACTIONS(3618), + [anon_sym_offsetof] = ACTIONS(3618), + [anon_sym__Generic] = ACTIONS(3618), + [anon_sym_typename] = ACTIONS(3618), + [anon_sym_asm] = ACTIONS(3618), + [anon_sym___asm__] = ACTIONS(3618), + [anon_sym___asm] = ACTIONS(3618), + [sym_number_literal] = ACTIONS(3620), + [anon_sym_L_SQUOTE] = ACTIONS(3620), + [anon_sym_u_SQUOTE] = ACTIONS(3620), + [anon_sym_U_SQUOTE] = ACTIONS(3620), + [anon_sym_u8_SQUOTE] = ACTIONS(3620), + [anon_sym_SQUOTE] = ACTIONS(3620), + [anon_sym_L_DQUOTE] = ACTIONS(3620), + [anon_sym_u_DQUOTE] = ACTIONS(3620), + [anon_sym_U_DQUOTE] = ACTIONS(3620), + [anon_sym_u8_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [anon_sym_NULL] = ACTIONS(3618), + [anon_sym_nullptr] = ACTIONS(3618), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4156), - [anon_sym_decltype] = ACTIONS(4156), - [anon_sym_explicit] = ACTIONS(4156), - [anon_sym_template] = ACTIONS(4156), - [anon_sym_operator] = ACTIONS(4156), - [anon_sym_try] = ACTIONS(4156), - [anon_sym_delete] = ACTIONS(4156), - [anon_sym_throw] = ACTIONS(4156), - [anon_sym_namespace] = ACTIONS(4156), - [anon_sym_static_assert] = ACTIONS(4156), - [anon_sym_concept] = ACTIONS(4156), - [anon_sym_co_return] = ACTIONS(4156), - [anon_sym_co_yield] = ACTIONS(4156), - [anon_sym_R_DQUOTE] = ACTIONS(4158), - [anon_sym_LR_DQUOTE] = ACTIONS(4158), - [anon_sym_uR_DQUOTE] = ACTIONS(4158), - [anon_sym_UR_DQUOTE] = ACTIONS(4158), - [anon_sym_u8R_DQUOTE] = ACTIONS(4158), - [anon_sym_co_await] = ACTIONS(4156), - [anon_sym_new] = ACTIONS(4156), - [anon_sym_requires] = ACTIONS(4156), - [anon_sym_CARET_CARET] = ACTIONS(4158), - [anon_sym_LBRACK_COLON] = ACTIONS(4158), - [sym_this] = ACTIONS(4156), - }, - [STATE(889)] = { - [sym_identifier] = ACTIONS(4050), - [aux_sym_preproc_include_token1] = ACTIONS(4050), - [aux_sym_preproc_def_token1] = ACTIONS(4050), - [aux_sym_preproc_if_token1] = ACTIONS(4050), - [aux_sym_preproc_if_token2] = ACTIONS(4050), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4050), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4050), - [sym_preproc_directive] = ACTIONS(4050), - [anon_sym_LPAREN2] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(4052), - [anon_sym_TILDE] = ACTIONS(4052), - [anon_sym_DASH] = ACTIONS(4050), - [anon_sym_PLUS] = ACTIONS(4050), - [anon_sym_STAR] = ACTIONS(4052), - [anon_sym_AMP_AMP] = ACTIONS(4052), - [anon_sym_AMP] = ACTIONS(4050), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym___extension__] = ACTIONS(4050), - [anon_sym_typedef] = ACTIONS(4050), - [anon_sym_virtual] = ACTIONS(4050), - [anon_sym_extern] = ACTIONS(4050), - [anon_sym___attribute__] = ACTIONS(4050), - [anon_sym___attribute] = ACTIONS(4050), - [anon_sym_using] = ACTIONS(4050), - [anon_sym_COLON_COLON] = ACTIONS(4052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4052), - [anon_sym___declspec] = ACTIONS(4050), - [anon_sym___based] = ACTIONS(4050), - [anon_sym___cdecl] = ACTIONS(4050), - [anon_sym___clrcall] = ACTIONS(4050), - [anon_sym___stdcall] = ACTIONS(4050), - [anon_sym___fastcall] = ACTIONS(4050), - [anon_sym___thiscall] = ACTIONS(4050), - [anon_sym___vectorcall] = ACTIONS(4050), - [anon_sym_LBRACE] = ACTIONS(4052), - [anon_sym_signed] = ACTIONS(4050), - [anon_sym_unsigned] = ACTIONS(4050), - [anon_sym_long] = ACTIONS(4050), - [anon_sym_short] = ACTIONS(4050), - [anon_sym_LBRACK] = ACTIONS(4050), - [anon_sym_static] = ACTIONS(4050), - [anon_sym_register] = ACTIONS(4050), - [anon_sym_inline] = ACTIONS(4050), - [anon_sym___inline] = ACTIONS(4050), - [anon_sym___inline__] = ACTIONS(4050), - [anon_sym___forceinline] = ACTIONS(4050), - [anon_sym_thread_local] = ACTIONS(4050), - [anon_sym___thread] = ACTIONS(4050), - [anon_sym_const] = ACTIONS(4050), - [anon_sym_constexpr] = ACTIONS(4050), - [anon_sym_volatile] = ACTIONS(4050), - [anon_sym_restrict] = ACTIONS(4050), - [anon_sym___restrict__] = ACTIONS(4050), - [anon_sym__Atomic] = ACTIONS(4050), - [anon_sym__Noreturn] = ACTIONS(4050), - [anon_sym_noreturn] = ACTIONS(4050), - [anon_sym__Nonnull] = ACTIONS(4050), - [anon_sym_mutable] = ACTIONS(4050), - [anon_sym_constinit] = ACTIONS(4050), - [anon_sym_consteval] = ACTIONS(4050), - [anon_sym_alignas] = ACTIONS(4050), - [anon_sym__Alignas] = ACTIONS(4050), - [sym_primitive_type] = ACTIONS(4050), - [anon_sym_enum] = ACTIONS(4050), - [anon_sym_class] = ACTIONS(4050), - [anon_sym_struct] = ACTIONS(4050), - [anon_sym_union] = ACTIONS(4050), - [anon_sym_if] = ACTIONS(4050), - [anon_sym_switch] = ACTIONS(4050), - [anon_sym_case] = ACTIONS(4050), - [anon_sym_default] = ACTIONS(4050), - [anon_sym_while] = ACTIONS(4050), - [anon_sym_do] = ACTIONS(4050), - [anon_sym_for] = ACTIONS(4050), - [anon_sym_return] = ACTIONS(4050), - [anon_sym_break] = ACTIONS(4050), - [anon_sym_continue] = ACTIONS(4050), - [anon_sym_goto] = ACTIONS(4050), - [anon_sym___try] = ACTIONS(4050), - [anon_sym___leave] = ACTIONS(4050), - [anon_sym_not] = ACTIONS(4050), - [anon_sym_compl] = ACTIONS(4050), - [anon_sym_DASH_DASH] = ACTIONS(4052), - [anon_sym_PLUS_PLUS] = ACTIONS(4052), - [anon_sym_sizeof] = ACTIONS(4050), - [anon_sym___alignof__] = ACTIONS(4050), - [anon_sym___alignof] = ACTIONS(4050), - [anon_sym__alignof] = ACTIONS(4050), - [anon_sym_alignof] = ACTIONS(4050), - [anon_sym__Alignof] = ACTIONS(4050), - [anon_sym_offsetof] = ACTIONS(4050), - [anon_sym__Generic] = ACTIONS(4050), - [anon_sym_typename] = ACTIONS(4050), - [anon_sym_asm] = ACTIONS(4050), - [anon_sym___asm__] = ACTIONS(4050), - [anon_sym___asm] = ACTIONS(4050), - [sym_number_literal] = ACTIONS(4052), - [anon_sym_L_SQUOTE] = ACTIONS(4052), - [anon_sym_u_SQUOTE] = ACTIONS(4052), - [anon_sym_U_SQUOTE] = ACTIONS(4052), - [anon_sym_u8_SQUOTE] = ACTIONS(4052), - [anon_sym_SQUOTE] = ACTIONS(4052), - [anon_sym_L_DQUOTE] = ACTIONS(4052), - [anon_sym_u_DQUOTE] = ACTIONS(4052), - [anon_sym_U_DQUOTE] = ACTIONS(4052), - [anon_sym_u8_DQUOTE] = ACTIONS(4052), - [anon_sym_DQUOTE] = ACTIONS(4052), - [sym_true] = ACTIONS(4050), - [sym_false] = ACTIONS(4050), - [anon_sym_NULL] = ACTIONS(4050), - [anon_sym_nullptr] = ACTIONS(4050), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4050), - [anon_sym_decltype] = ACTIONS(4050), - [anon_sym_explicit] = ACTIONS(4050), - [anon_sym_template] = ACTIONS(4050), - [anon_sym_operator] = ACTIONS(4050), - [anon_sym_try] = ACTIONS(4050), - [anon_sym_delete] = ACTIONS(4050), - [anon_sym_throw] = ACTIONS(4050), - [anon_sym_namespace] = ACTIONS(4050), - [anon_sym_static_assert] = ACTIONS(4050), - [anon_sym_concept] = ACTIONS(4050), - [anon_sym_co_return] = ACTIONS(4050), - [anon_sym_co_yield] = ACTIONS(4050), - [anon_sym_R_DQUOTE] = ACTIONS(4052), - [anon_sym_LR_DQUOTE] = ACTIONS(4052), - [anon_sym_uR_DQUOTE] = ACTIONS(4052), - [anon_sym_UR_DQUOTE] = ACTIONS(4052), - [anon_sym_u8R_DQUOTE] = ACTIONS(4052), - [anon_sym_co_await] = ACTIONS(4050), - [anon_sym_new] = ACTIONS(4050), - [anon_sym_requires] = ACTIONS(4050), - [anon_sym_CARET_CARET] = ACTIONS(4052), - [anon_sym_LBRACK_COLON] = ACTIONS(4052), - [sym_this] = ACTIONS(4050), + [sym_auto] = ACTIONS(3618), + [anon_sym_decltype] = ACTIONS(3618), + [anon_sym_explicit] = ACTIONS(3618), + [anon_sym_export] = ACTIONS(3618), + [anon_sym_import] = ACTIONS(3618), + [anon_sym_template] = ACTIONS(3618), + [anon_sym_operator] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_namespace] = ACTIONS(3618), + [anon_sym_static_assert] = ACTIONS(3618), + [anon_sym_concept] = ACTIONS(3618), + [anon_sym_co_return] = ACTIONS(3618), + [anon_sym_co_yield] = ACTIONS(3618), + [anon_sym_R_DQUOTE] = ACTIONS(3620), + [anon_sym_LR_DQUOTE] = ACTIONS(3620), + [anon_sym_uR_DQUOTE] = ACTIONS(3620), + [anon_sym_UR_DQUOTE] = ACTIONS(3620), + [anon_sym_u8R_DQUOTE] = ACTIONS(3620), + [anon_sym_co_await] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_requires] = ACTIONS(3618), + [anon_sym_CARET_CARET] = ACTIONS(3620), + [anon_sym_LBRACK_COLON] = ACTIONS(3620), + [sym_this] = ACTIONS(3618), }, - [STATE(890)] = { - [sym_identifier] = ACTIONS(4160), - [aux_sym_preproc_include_token1] = ACTIONS(4160), - [aux_sym_preproc_def_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), - [sym_preproc_directive] = ACTIONS(4160), - [anon_sym_LPAREN2] = ACTIONS(4162), - [anon_sym_BANG] = ACTIONS(4162), - [anon_sym_TILDE] = ACTIONS(4162), - [anon_sym_DASH] = ACTIONS(4160), - [anon_sym_PLUS] = ACTIONS(4160), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym___extension__] = ACTIONS(4160), - [anon_sym_typedef] = ACTIONS(4160), - [anon_sym_virtual] = ACTIONS(4160), - [anon_sym_extern] = ACTIONS(4160), - [anon_sym___attribute__] = ACTIONS(4160), - [anon_sym___attribute] = ACTIONS(4160), - [anon_sym_using] = ACTIONS(4160), - [anon_sym_COLON_COLON] = ACTIONS(4162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), - [anon_sym___declspec] = ACTIONS(4160), - [anon_sym___based] = ACTIONS(4160), - [anon_sym___cdecl] = ACTIONS(4160), - [anon_sym___clrcall] = ACTIONS(4160), - [anon_sym___stdcall] = ACTIONS(4160), - [anon_sym___fastcall] = ACTIONS(4160), - [anon_sym___thiscall] = ACTIONS(4160), - [anon_sym___vectorcall] = ACTIONS(4160), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4162), - [anon_sym_signed] = ACTIONS(4160), - [anon_sym_unsigned] = ACTIONS(4160), - [anon_sym_long] = ACTIONS(4160), - [anon_sym_short] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(4160), - [anon_sym_static] = ACTIONS(4160), - [anon_sym_register] = ACTIONS(4160), - [anon_sym_inline] = ACTIONS(4160), - [anon_sym___inline] = ACTIONS(4160), - [anon_sym___inline__] = ACTIONS(4160), - [anon_sym___forceinline] = ACTIONS(4160), - [anon_sym_thread_local] = ACTIONS(4160), - [anon_sym___thread] = ACTIONS(4160), - [anon_sym_const] = ACTIONS(4160), - [anon_sym_constexpr] = ACTIONS(4160), - [anon_sym_volatile] = ACTIONS(4160), - [anon_sym_restrict] = ACTIONS(4160), - [anon_sym___restrict__] = ACTIONS(4160), - [anon_sym__Atomic] = ACTIONS(4160), - [anon_sym__Noreturn] = ACTIONS(4160), - [anon_sym_noreturn] = ACTIONS(4160), - [anon_sym__Nonnull] = ACTIONS(4160), - [anon_sym_mutable] = ACTIONS(4160), - [anon_sym_constinit] = ACTIONS(4160), - [anon_sym_consteval] = ACTIONS(4160), - [anon_sym_alignas] = ACTIONS(4160), - [anon_sym__Alignas] = ACTIONS(4160), - [sym_primitive_type] = ACTIONS(4160), - [anon_sym_enum] = ACTIONS(4160), - [anon_sym_class] = ACTIONS(4160), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_union] = ACTIONS(4160), - [anon_sym_if] = ACTIONS(4160), - [anon_sym_switch] = ACTIONS(4160), - [anon_sym_case] = ACTIONS(4160), - [anon_sym_default] = ACTIONS(4160), - [anon_sym_while] = ACTIONS(4160), - [anon_sym_do] = ACTIONS(4160), - [anon_sym_for] = ACTIONS(4160), - [anon_sym_return] = ACTIONS(4160), - [anon_sym_break] = ACTIONS(4160), - [anon_sym_continue] = ACTIONS(4160), - [anon_sym_goto] = ACTIONS(4160), - [anon_sym___try] = ACTIONS(4160), - [anon_sym___leave] = ACTIONS(4160), - [anon_sym_not] = ACTIONS(4160), - [anon_sym_compl] = ACTIONS(4160), - [anon_sym_DASH_DASH] = ACTIONS(4162), - [anon_sym_PLUS_PLUS] = ACTIONS(4162), - [anon_sym_sizeof] = ACTIONS(4160), - [anon_sym___alignof__] = ACTIONS(4160), - [anon_sym___alignof] = ACTIONS(4160), - [anon_sym__alignof] = ACTIONS(4160), - [anon_sym_alignof] = ACTIONS(4160), - [anon_sym__Alignof] = ACTIONS(4160), - [anon_sym_offsetof] = ACTIONS(4160), - [anon_sym__Generic] = ACTIONS(4160), - [anon_sym_typename] = ACTIONS(4160), - [anon_sym_asm] = ACTIONS(4160), - [anon_sym___asm__] = ACTIONS(4160), - [anon_sym___asm] = ACTIONS(4160), - [sym_number_literal] = ACTIONS(4162), - [anon_sym_L_SQUOTE] = ACTIONS(4162), - [anon_sym_u_SQUOTE] = ACTIONS(4162), - [anon_sym_U_SQUOTE] = ACTIONS(4162), - [anon_sym_u8_SQUOTE] = ACTIONS(4162), - [anon_sym_SQUOTE] = ACTIONS(4162), - [anon_sym_L_DQUOTE] = ACTIONS(4162), - [anon_sym_u_DQUOTE] = ACTIONS(4162), - [anon_sym_U_DQUOTE] = ACTIONS(4162), - [anon_sym_u8_DQUOTE] = ACTIONS(4162), - [anon_sym_DQUOTE] = ACTIONS(4162), - [sym_true] = ACTIONS(4160), - [sym_false] = ACTIONS(4160), - [anon_sym_NULL] = ACTIONS(4160), - [anon_sym_nullptr] = ACTIONS(4160), + [STATE(750)] = { + [sym_identifier] = ACTIONS(3618), + [aux_sym_preproc_include_token1] = ACTIONS(3618), + [aux_sym_preproc_def_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), + [sym_preproc_directive] = ACTIONS(3618), + [anon_sym_LPAREN2] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_AMP] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym___extension__] = ACTIONS(3618), + [anon_sym_typedef] = ACTIONS(3618), + [anon_sym_virtual] = ACTIONS(3618), + [anon_sym_extern] = ACTIONS(3618), + [anon_sym___attribute__] = ACTIONS(3618), + [anon_sym___attribute] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_COLON_COLON] = ACTIONS(3620), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), + [anon_sym___declspec] = ACTIONS(3618), + [anon_sym___based] = ACTIONS(3618), + [anon_sym___cdecl] = ACTIONS(3618), + [anon_sym___clrcall] = ACTIONS(3618), + [anon_sym___stdcall] = ACTIONS(3618), + [anon_sym___fastcall] = ACTIONS(3618), + [anon_sym___thiscall] = ACTIONS(3618), + [anon_sym___vectorcall] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_RBRACE] = ACTIONS(3620), + [anon_sym_signed] = ACTIONS(3618), + [anon_sym_unsigned] = ACTIONS(3618), + [anon_sym_long] = ACTIONS(3618), + [anon_sym_short] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_register] = ACTIONS(3618), + [anon_sym_inline] = ACTIONS(3618), + [anon_sym___inline] = ACTIONS(3618), + [anon_sym___inline__] = ACTIONS(3618), + [anon_sym___forceinline] = ACTIONS(3618), + [anon_sym_thread_local] = ACTIONS(3618), + [anon_sym___thread] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_constexpr] = ACTIONS(3618), + [anon_sym_volatile] = ACTIONS(3618), + [anon_sym_restrict] = ACTIONS(3618), + [anon_sym___restrict__] = ACTIONS(3618), + [anon_sym__Atomic] = ACTIONS(3618), + [anon_sym__Noreturn] = ACTIONS(3618), + [anon_sym_noreturn] = ACTIONS(3618), + [anon_sym__Nonnull] = ACTIONS(3618), + [anon_sym_mutable] = ACTIONS(3618), + [anon_sym_constinit] = ACTIONS(3618), + [anon_sym_consteval] = ACTIONS(3618), + [anon_sym_alignas] = ACTIONS(3618), + [anon_sym__Alignas] = ACTIONS(3618), + [sym_primitive_type] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_struct] = ACTIONS(3618), + [anon_sym_union] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_else] = ACTIONS(3618), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_case] = ACTIONS(3618), + [anon_sym_default] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_goto] = ACTIONS(3618), + [anon_sym___try] = ACTIONS(3618), + [anon_sym___leave] = ACTIONS(3618), + [anon_sym_not] = ACTIONS(3618), + [anon_sym_compl] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_sizeof] = ACTIONS(3618), + [anon_sym___alignof__] = ACTIONS(3618), + [anon_sym___alignof] = ACTIONS(3618), + [anon_sym__alignof] = ACTIONS(3618), + [anon_sym_alignof] = ACTIONS(3618), + [anon_sym__Alignof] = ACTIONS(3618), + [anon_sym_offsetof] = ACTIONS(3618), + [anon_sym__Generic] = ACTIONS(3618), + [anon_sym_typename] = ACTIONS(3618), + [anon_sym_asm] = ACTIONS(3618), + [anon_sym___asm__] = ACTIONS(3618), + [anon_sym___asm] = ACTIONS(3618), + [sym_number_literal] = ACTIONS(3620), + [anon_sym_L_SQUOTE] = ACTIONS(3620), + [anon_sym_u_SQUOTE] = ACTIONS(3620), + [anon_sym_U_SQUOTE] = ACTIONS(3620), + [anon_sym_u8_SQUOTE] = ACTIONS(3620), + [anon_sym_SQUOTE] = ACTIONS(3620), + [anon_sym_L_DQUOTE] = ACTIONS(3620), + [anon_sym_u_DQUOTE] = ACTIONS(3620), + [anon_sym_U_DQUOTE] = ACTIONS(3620), + [anon_sym_u8_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [anon_sym_NULL] = ACTIONS(3618), + [anon_sym_nullptr] = ACTIONS(3618), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4160), - [anon_sym_decltype] = ACTIONS(4160), - [anon_sym_explicit] = ACTIONS(4160), - [anon_sym_template] = ACTIONS(4160), - [anon_sym_operator] = ACTIONS(4160), - [anon_sym_try] = ACTIONS(4160), - [anon_sym_delete] = ACTIONS(4160), - [anon_sym_throw] = ACTIONS(4160), - [anon_sym_namespace] = ACTIONS(4160), - [anon_sym_static_assert] = ACTIONS(4160), - [anon_sym_concept] = ACTIONS(4160), - [anon_sym_co_return] = ACTIONS(4160), - [anon_sym_co_yield] = ACTIONS(4160), - [anon_sym_R_DQUOTE] = ACTIONS(4162), - [anon_sym_LR_DQUOTE] = ACTIONS(4162), - [anon_sym_uR_DQUOTE] = ACTIONS(4162), - [anon_sym_UR_DQUOTE] = ACTIONS(4162), - [anon_sym_u8R_DQUOTE] = ACTIONS(4162), - [anon_sym_co_await] = ACTIONS(4160), - [anon_sym_new] = ACTIONS(4160), - [anon_sym_requires] = ACTIONS(4160), - [anon_sym_CARET_CARET] = ACTIONS(4162), - [anon_sym_LBRACK_COLON] = ACTIONS(4162), - [sym_this] = ACTIONS(4160), + [sym_auto] = ACTIONS(3618), + [anon_sym_decltype] = ACTIONS(3618), + [anon_sym_explicit] = ACTIONS(3618), + [anon_sym_export] = ACTIONS(3618), + [anon_sym_import] = ACTIONS(3618), + [anon_sym_template] = ACTIONS(3618), + [anon_sym_operator] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_namespace] = ACTIONS(3618), + [anon_sym_static_assert] = ACTIONS(3618), + [anon_sym_concept] = ACTIONS(3618), + [anon_sym_co_return] = ACTIONS(3618), + [anon_sym_co_yield] = ACTIONS(3618), + [anon_sym_R_DQUOTE] = ACTIONS(3620), + [anon_sym_LR_DQUOTE] = ACTIONS(3620), + [anon_sym_uR_DQUOTE] = ACTIONS(3620), + [anon_sym_UR_DQUOTE] = ACTIONS(3620), + [anon_sym_u8R_DQUOTE] = ACTIONS(3620), + [anon_sym_co_await] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_requires] = ACTIONS(3618), + [anon_sym_CARET_CARET] = ACTIONS(3620), + [anon_sym_LBRACK_COLON] = ACTIONS(3620), + [sym_this] = ACTIONS(3618), }, - [STATE(891)] = { - [sym_identifier] = ACTIONS(4164), - [aux_sym_preproc_include_token1] = ACTIONS(4164), - [aux_sym_preproc_def_token1] = ACTIONS(4164), - [aux_sym_preproc_if_token1] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4164), - [anon_sym_LPAREN2] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4166), - [anon_sym_TILDE] = ACTIONS(4166), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_AMP] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym___extension__] = ACTIONS(4164), - [anon_sym_typedef] = ACTIONS(4164), - [anon_sym_virtual] = ACTIONS(4164), - [anon_sym_extern] = ACTIONS(4164), - [anon_sym___attribute__] = ACTIONS(4164), - [anon_sym___attribute] = ACTIONS(4164), - [anon_sym_using] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), - [anon_sym___declspec] = ACTIONS(4164), - [anon_sym___based] = ACTIONS(4164), - [anon_sym___cdecl] = ACTIONS(4164), - [anon_sym___clrcall] = ACTIONS(4164), - [anon_sym___stdcall] = ACTIONS(4164), - [anon_sym___fastcall] = ACTIONS(4164), - [anon_sym___thiscall] = ACTIONS(4164), - [anon_sym___vectorcall] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4166), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_signed] = ACTIONS(4164), - [anon_sym_unsigned] = ACTIONS(4164), - [anon_sym_long] = ACTIONS(4164), - [anon_sym_short] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4164), - [anon_sym_static] = ACTIONS(4164), - [anon_sym_register] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym___inline] = ACTIONS(4164), - [anon_sym___inline__] = ACTIONS(4164), - [anon_sym___forceinline] = ACTIONS(4164), - [anon_sym_thread_local] = ACTIONS(4164), - [anon_sym___thread] = ACTIONS(4164), - [anon_sym_const] = ACTIONS(4164), - [anon_sym_constexpr] = ACTIONS(4164), - [anon_sym_volatile] = ACTIONS(4164), - [anon_sym_restrict] = ACTIONS(4164), - [anon_sym___restrict__] = ACTIONS(4164), - [anon_sym__Atomic] = ACTIONS(4164), - [anon_sym__Noreturn] = ACTIONS(4164), - [anon_sym_noreturn] = ACTIONS(4164), - [anon_sym__Nonnull] = ACTIONS(4164), - [anon_sym_mutable] = ACTIONS(4164), - [anon_sym_constinit] = ACTIONS(4164), - [anon_sym_consteval] = ACTIONS(4164), - [anon_sym_alignas] = ACTIONS(4164), - [anon_sym__Alignas] = ACTIONS(4164), - [sym_primitive_type] = ACTIONS(4164), - [anon_sym_enum] = ACTIONS(4164), - [anon_sym_class] = ACTIONS(4164), - [anon_sym_struct] = ACTIONS(4164), - [anon_sym_union] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_switch] = ACTIONS(4164), - [anon_sym_case] = ACTIONS(4164), - [anon_sym_default] = ACTIONS(4164), - [anon_sym_while] = ACTIONS(4164), - [anon_sym_do] = ACTIONS(4164), - [anon_sym_for] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_goto] = ACTIONS(4164), - [anon_sym___try] = ACTIONS(4164), - [anon_sym___leave] = ACTIONS(4164), - [anon_sym_not] = ACTIONS(4164), - [anon_sym_compl] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_sizeof] = ACTIONS(4164), - [anon_sym___alignof__] = ACTIONS(4164), - [anon_sym___alignof] = ACTIONS(4164), - [anon_sym__alignof] = ACTIONS(4164), - [anon_sym_alignof] = ACTIONS(4164), - [anon_sym__Alignof] = ACTIONS(4164), - [anon_sym_offsetof] = ACTIONS(4164), - [anon_sym__Generic] = ACTIONS(4164), - [anon_sym_typename] = ACTIONS(4164), - [anon_sym_asm] = ACTIONS(4164), - [anon_sym___asm__] = ACTIONS(4164), - [anon_sym___asm] = ACTIONS(4164), - [sym_number_literal] = ACTIONS(4166), - [anon_sym_L_SQUOTE] = ACTIONS(4166), - [anon_sym_u_SQUOTE] = ACTIONS(4166), - [anon_sym_U_SQUOTE] = ACTIONS(4166), - [anon_sym_u8_SQUOTE] = ACTIONS(4166), - [anon_sym_SQUOTE] = ACTIONS(4166), - [anon_sym_L_DQUOTE] = ACTIONS(4166), - [anon_sym_u_DQUOTE] = ACTIONS(4166), - [anon_sym_U_DQUOTE] = ACTIONS(4166), - [anon_sym_u8_DQUOTE] = ACTIONS(4166), - [anon_sym_DQUOTE] = ACTIONS(4166), - [sym_true] = ACTIONS(4164), - [sym_false] = ACTIONS(4164), - [anon_sym_NULL] = ACTIONS(4164), - [anon_sym_nullptr] = ACTIONS(4164), + [STATE(751)] = { + [sym_identifier] = ACTIONS(3622), + [aux_sym_preproc_include_token1] = ACTIONS(3622), + [aux_sym_preproc_def_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), + [sym_preproc_directive] = ACTIONS(3622), + [anon_sym_LPAREN2] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_STAR] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_AMP] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym___extension__] = ACTIONS(3622), + [anon_sym_typedef] = ACTIONS(3622), + [anon_sym_virtual] = ACTIONS(3622), + [anon_sym_extern] = ACTIONS(3622), + [anon_sym___attribute__] = ACTIONS(3622), + [anon_sym___attribute] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_COLON_COLON] = ACTIONS(3624), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), + [anon_sym___declspec] = ACTIONS(3622), + [anon_sym___based] = ACTIONS(3622), + [anon_sym___cdecl] = ACTIONS(3622), + [anon_sym___clrcall] = ACTIONS(3622), + [anon_sym___stdcall] = ACTIONS(3622), + [anon_sym___fastcall] = ACTIONS(3622), + [anon_sym___thiscall] = ACTIONS(3622), + [anon_sym___vectorcall] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_RBRACE] = ACTIONS(3624), + [anon_sym_signed] = ACTIONS(3622), + [anon_sym_unsigned] = ACTIONS(3622), + [anon_sym_long] = ACTIONS(3622), + [anon_sym_short] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_register] = ACTIONS(3622), + [anon_sym_inline] = ACTIONS(3622), + [anon_sym___inline] = ACTIONS(3622), + [anon_sym___inline__] = ACTIONS(3622), + [anon_sym___forceinline] = ACTIONS(3622), + [anon_sym_thread_local] = ACTIONS(3622), + [anon_sym___thread] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_constexpr] = ACTIONS(3622), + [anon_sym_volatile] = ACTIONS(3622), + [anon_sym_restrict] = ACTIONS(3622), + [anon_sym___restrict__] = ACTIONS(3622), + [anon_sym__Atomic] = ACTIONS(3622), + [anon_sym__Noreturn] = ACTIONS(3622), + [anon_sym_noreturn] = ACTIONS(3622), + [anon_sym__Nonnull] = ACTIONS(3622), + [anon_sym_mutable] = ACTIONS(3622), + [anon_sym_constinit] = ACTIONS(3622), + [anon_sym_consteval] = ACTIONS(3622), + [anon_sym_alignas] = ACTIONS(3622), + [anon_sym__Alignas] = ACTIONS(3622), + [sym_primitive_type] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_struct] = ACTIONS(3622), + [anon_sym_union] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_case] = ACTIONS(3622), + [anon_sym_default] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_goto] = ACTIONS(3622), + [anon_sym___try] = ACTIONS(3622), + [anon_sym___leave] = ACTIONS(3622), + [anon_sym_not] = ACTIONS(3622), + [anon_sym_compl] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_sizeof] = ACTIONS(3622), + [anon_sym___alignof__] = ACTIONS(3622), + [anon_sym___alignof] = ACTIONS(3622), + [anon_sym__alignof] = ACTIONS(3622), + [anon_sym_alignof] = ACTIONS(3622), + [anon_sym__Alignof] = ACTIONS(3622), + [anon_sym_offsetof] = ACTIONS(3622), + [anon_sym__Generic] = ACTIONS(3622), + [anon_sym_typename] = ACTIONS(3622), + [anon_sym_asm] = ACTIONS(3622), + [anon_sym___asm__] = ACTIONS(3622), + [anon_sym___asm] = ACTIONS(3622), + [sym_number_literal] = ACTIONS(3624), + [anon_sym_L_SQUOTE] = ACTIONS(3624), + [anon_sym_u_SQUOTE] = ACTIONS(3624), + [anon_sym_U_SQUOTE] = ACTIONS(3624), + [anon_sym_u8_SQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_L_DQUOTE] = ACTIONS(3624), + [anon_sym_u_DQUOTE] = ACTIONS(3624), + [anon_sym_U_DQUOTE] = ACTIONS(3624), + [anon_sym_u8_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [anon_sym_NULL] = ACTIONS(3622), + [anon_sym_nullptr] = ACTIONS(3622), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4164), - [anon_sym_decltype] = ACTIONS(4164), - [anon_sym_explicit] = ACTIONS(4164), - [anon_sym_template] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_delete] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_namespace] = ACTIONS(4164), - [anon_sym_static_assert] = ACTIONS(4164), - [anon_sym_concept] = ACTIONS(4164), - [anon_sym_co_return] = ACTIONS(4164), - [anon_sym_co_yield] = ACTIONS(4164), - [anon_sym_R_DQUOTE] = ACTIONS(4166), - [anon_sym_LR_DQUOTE] = ACTIONS(4166), - [anon_sym_uR_DQUOTE] = ACTIONS(4166), - [anon_sym_UR_DQUOTE] = ACTIONS(4166), - [anon_sym_u8R_DQUOTE] = ACTIONS(4166), - [anon_sym_co_await] = ACTIONS(4164), - [anon_sym_new] = ACTIONS(4164), - [anon_sym_requires] = ACTIONS(4164), - [anon_sym_CARET_CARET] = ACTIONS(4166), - [anon_sym_LBRACK_COLON] = ACTIONS(4166), - [sym_this] = ACTIONS(4164), + [sym_auto] = ACTIONS(3622), + [anon_sym_decltype] = ACTIONS(3622), + [anon_sym_explicit] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_template] = ACTIONS(3622), + [anon_sym_operator] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_static_assert] = ACTIONS(3622), + [anon_sym_concept] = ACTIONS(3622), + [anon_sym_co_return] = ACTIONS(3622), + [anon_sym_co_yield] = ACTIONS(3622), + [anon_sym_R_DQUOTE] = ACTIONS(3624), + [anon_sym_LR_DQUOTE] = ACTIONS(3624), + [anon_sym_uR_DQUOTE] = ACTIONS(3624), + [anon_sym_UR_DQUOTE] = ACTIONS(3624), + [anon_sym_u8R_DQUOTE] = ACTIONS(3624), + [anon_sym_co_await] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_requires] = ACTIONS(3622), + [anon_sym_CARET_CARET] = ACTIONS(3624), + [anon_sym_LBRACK_COLON] = ACTIONS(3624), + [sym_this] = ACTIONS(3622), }, - [STATE(892)] = { - [sym_identifier] = ACTIONS(3910), - [aux_sym_preproc_include_token1] = ACTIONS(3910), - [aux_sym_preproc_def_token1] = ACTIONS(3910), - [aux_sym_preproc_if_token1] = ACTIONS(3910), - [aux_sym_preproc_if_token2] = ACTIONS(3910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3910), - [sym_preproc_directive] = ACTIONS(3910), - [anon_sym_LPAREN2] = ACTIONS(3912), - [anon_sym_BANG] = ACTIONS(3912), - [anon_sym_TILDE] = ACTIONS(3912), - [anon_sym_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3910), - [anon_sym_STAR] = ACTIONS(3912), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_AMP] = ACTIONS(3910), - [anon_sym_SEMI] = ACTIONS(3912), - [anon_sym___extension__] = ACTIONS(3910), - [anon_sym_typedef] = ACTIONS(3910), - [anon_sym_virtual] = ACTIONS(3910), - [anon_sym_extern] = ACTIONS(3910), - [anon_sym___attribute__] = ACTIONS(3910), - [anon_sym___attribute] = ACTIONS(3910), - [anon_sym_using] = ACTIONS(3910), - [anon_sym_COLON_COLON] = ACTIONS(3912), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3912), - [anon_sym___declspec] = ACTIONS(3910), - [anon_sym___based] = ACTIONS(3910), - [anon_sym___cdecl] = ACTIONS(3910), - [anon_sym___clrcall] = ACTIONS(3910), - [anon_sym___stdcall] = ACTIONS(3910), - [anon_sym___fastcall] = ACTIONS(3910), - [anon_sym___thiscall] = ACTIONS(3910), - [anon_sym___vectorcall] = ACTIONS(3910), - [anon_sym_LBRACE] = ACTIONS(3912), - [anon_sym_signed] = ACTIONS(3910), - [anon_sym_unsigned] = ACTIONS(3910), - [anon_sym_long] = ACTIONS(3910), - [anon_sym_short] = ACTIONS(3910), - [anon_sym_LBRACK] = ACTIONS(3910), - [anon_sym_static] = ACTIONS(3910), - [anon_sym_register] = ACTIONS(3910), - [anon_sym_inline] = ACTIONS(3910), - [anon_sym___inline] = ACTIONS(3910), - [anon_sym___inline__] = ACTIONS(3910), - [anon_sym___forceinline] = ACTIONS(3910), - [anon_sym_thread_local] = ACTIONS(3910), - [anon_sym___thread] = ACTIONS(3910), - [anon_sym_const] = ACTIONS(3910), - [anon_sym_constexpr] = ACTIONS(3910), - [anon_sym_volatile] = ACTIONS(3910), - [anon_sym_restrict] = ACTIONS(3910), - [anon_sym___restrict__] = ACTIONS(3910), - [anon_sym__Atomic] = ACTIONS(3910), - [anon_sym__Noreturn] = ACTIONS(3910), - [anon_sym_noreturn] = ACTIONS(3910), - [anon_sym__Nonnull] = ACTIONS(3910), - [anon_sym_mutable] = ACTIONS(3910), - [anon_sym_constinit] = ACTIONS(3910), - [anon_sym_consteval] = ACTIONS(3910), - [anon_sym_alignas] = ACTIONS(3910), - [anon_sym__Alignas] = ACTIONS(3910), - [sym_primitive_type] = ACTIONS(3910), - [anon_sym_enum] = ACTIONS(3910), - [anon_sym_class] = ACTIONS(3910), - [anon_sym_struct] = ACTIONS(3910), - [anon_sym_union] = ACTIONS(3910), - [anon_sym_if] = ACTIONS(3910), - [anon_sym_switch] = ACTIONS(3910), - [anon_sym_case] = ACTIONS(3910), - [anon_sym_default] = ACTIONS(3910), - [anon_sym_while] = ACTIONS(3910), - [anon_sym_do] = ACTIONS(3910), - [anon_sym_for] = ACTIONS(3910), - [anon_sym_return] = ACTIONS(3910), - [anon_sym_break] = ACTIONS(3910), - [anon_sym_continue] = ACTIONS(3910), - [anon_sym_goto] = ACTIONS(3910), - [anon_sym___try] = ACTIONS(3910), - [anon_sym___leave] = ACTIONS(3910), - [anon_sym_not] = ACTIONS(3910), - [anon_sym_compl] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(3912), - [anon_sym_PLUS_PLUS] = ACTIONS(3912), - [anon_sym_sizeof] = ACTIONS(3910), - [anon_sym___alignof__] = ACTIONS(3910), - [anon_sym___alignof] = ACTIONS(3910), - [anon_sym__alignof] = ACTIONS(3910), - [anon_sym_alignof] = ACTIONS(3910), - [anon_sym__Alignof] = ACTIONS(3910), - [anon_sym_offsetof] = ACTIONS(3910), - [anon_sym__Generic] = ACTIONS(3910), - [anon_sym_typename] = ACTIONS(3910), - [anon_sym_asm] = ACTIONS(3910), - [anon_sym___asm__] = ACTIONS(3910), - [anon_sym___asm] = ACTIONS(3910), - [sym_number_literal] = ACTIONS(3912), - [anon_sym_L_SQUOTE] = ACTIONS(3912), - [anon_sym_u_SQUOTE] = ACTIONS(3912), - [anon_sym_U_SQUOTE] = ACTIONS(3912), - [anon_sym_u8_SQUOTE] = ACTIONS(3912), - [anon_sym_SQUOTE] = ACTIONS(3912), - [anon_sym_L_DQUOTE] = ACTIONS(3912), - [anon_sym_u_DQUOTE] = ACTIONS(3912), - [anon_sym_U_DQUOTE] = ACTIONS(3912), - [anon_sym_u8_DQUOTE] = ACTIONS(3912), - [anon_sym_DQUOTE] = ACTIONS(3912), - [sym_true] = ACTIONS(3910), - [sym_false] = ACTIONS(3910), - [anon_sym_NULL] = ACTIONS(3910), - [anon_sym_nullptr] = ACTIONS(3910), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3910), - [anon_sym_decltype] = ACTIONS(3910), - [anon_sym_explicit] = ACTIONS(3910), - [anon_sym_template] = ACTIONS(3910), - [anon_sym_operator] = ACTIONS(3910), - [anon_sym_try] = ACTIONS(3910), - [anon_sym_delete] = ACTIONS(3910), - [anon_sym_throw] = ACTIONS(3910), - [anon_sym_namespace] = ACTIONS(3910), - [anon_sym_static_assert] = ACTIONS(3910), - [anon_sym_concept] = ACTIONS(3910), - [anon_sym_co_return] = ACTIONS(3910), - [anon_sym_co_yield] = ACTIONS(3910), - [anon_sym_R_DQUOTE] = ACTIONS(3912), - [anon_sym_LR_DQUOTE] = ACTIONS(3912), - [anon_sym_uR_DQUOTE] = ACTIONS(3912), - [anon_sym_UR_DQUOTE] = ACTIONS(3912), - [anon_sym_u8R_DQUOTE] = ACTIONS(3912), - [anon_sym_co_await] = ACTIONS(3910), - [anon_sym_new] = ACTIONS(3910), - [anon_sym_requires] = ACTIONS(3910), - [anon_sym_CARET_CARET] = ACTIONS(3912), - [anon_sym_LBRACK_COLON] = ACTIONS(3912), - [sym_this] = ACTIONS(3910), + [STATE(752)] = { + [sym_identifier] = ACTIONS(3622), + [aux_sym_preproc_include_token1] = ACTIONS(3622), + [aux_sym_preproc_def_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), + [sym_preproc_directive] = ACTIONS(3622), + [anon_sym_LPAREN2] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_STAR] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_AMP] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym___extension__] = ACTIONS(3622), + [anon_sym_typedef] = ACTIONS(3622), + [anon_sym_virtual] = ACTIONS(3622), + [anon_sym_extern] = ACTIONS(3622), + [anon_sym___attribute__] = ACTIONS(3622), + [anon_sym___attribute] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_COLON_COLON] = ACTIONS(3624), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), + [anon_sym___declspec] = ACTIONS(3622), + [anon_sym___based] = ACTIONS(3622), + [anon_sym___cdecl] = ACTIONS(3622), + [anon_sym___clrcall] = ACTIONS(3622), + [anon_sym___stdcall] = ACTIONS(3622), + [anon_sym___fastcall] = ACTIONS(3622), + [anon_sym___thiscall] = ACTIONS(3622), + [anon_sym___vectorcall] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_RBRACE] = ACTIONS(3624), + [anon_sym_signed] = ACTIONS(3622), + [anon_sym_unsigned] = ACTIONS(3622), + [anon_sym_long] = ACTIONS(3622), + [anon_sym_short] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_register] = ACTIONS(3622), + [anon_sym_inline] = ACTIONS(3622), + [anon_sym___inline] = ACTIONS(3622), + [anon_sym___inline__] = ACTIONS(3622), + [anon_sym___forceinline] = ACTIONS(3622), + [anon_sym_thread_local] = ACTIONS(3622), + [anon_sym___thread] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_constexpr] = ACTIONS(3622), + [anon_sym_volatile] = ACTIONS(3622), + [anon_sym_restrict] = ACTIONS(3622), + [anon_sym___restrict__] = ACTIONS(3622), + [anon_sym__Atomic] = ACTIONS(3622), + [anon_sym__Noreturn] = ACTIONS(3622), + [anon_sym_noreturn] = ACTIONS(3622), + [anon_sym__Nonnull] = ACTIONS(3622), + [anon_sym_mutable] = ACTIONS(3622), + [anon_sym_constinit] = ACTIONS(3622), + [anon_sym_consteval] = ACTIONS(3622), + [anon_sym_alignas] = ACTIONS(3622), + [anon_sym__Alignas] = ACTIONS(3622), + [sym_primitive_type] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_struct] = ACTIONS(3622), + [anon_sym_union] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_case] = ACTIONS(3622), + [anon_sym_default] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_goto] = ACTIONS(3622), + [anon_sym___try] = ACTIONS(3622), + [anon_sym___leave] = ACTIONS(3622), + [anon_sym_not] = ACTIONS(3622), + [anon_sym_compl] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_sizeof] = ACTIONS(3622), + [anon_sym___alignof__] = ACTIONS(3622), + [anon_sym___alignof] = ACTIONS(3622), + [anon_sym__alignof] = ACTIONS(3622), + [anon_sym_alignof] = ACTIONS(3622), + [anon_sym__Alignof] = ACTIONS(3622), + [anon_sym_offsetof] = ACTIONS(3622), + [anon_sym__Generic] = ACTIONS(3622), + [anon_sym_typename] = ACTIONS(3622), + [anon_sym_asm] = ACTIONS(3622), + [anon_sym___asm__] = ACTIONS(3622), + [anon_sym___asm] = ACTIONS(3622), + [sym_number_literal] = ACTIONS(3624), + [anon_sym_L_SQUOTE] = ACTIONS(3624), + [anon_sym_u_SQUOTE] = ACTIONS(3624), + [anon_sym_U_SQUOTE] = ACTIONS(3624), + [anon_sym_u8_SQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_L_DQUOTE] = ACTIONS(3624), + [anon_sym_u_DQUOTE] = ACTIONS(3624), + [anon_sym_U_DQUOTE] = ACTIONS(3624), + [anon_sym_u8_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [anon_sym_NULL] = ACTIONS(3622), + [anon_sym_nullptr] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3622), + [anon_sym_decltype] = ACTIONS(3622), + [anon_sym_explicit] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_template] = ACTIONS(3622), + [anon_sym_operator] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_static_assert] = ACTIONS(3622), + [anon_sym_concept] = ACTIONS(3622), + [anon_sym_co_return] = ACTIONS(3622), + [anon_sym_co_yield] = ACTIONS(3622), + [anon_sym_R_DQUOTE] = ACTIONS(3624), + [anon_sym_LR_DQUOTE] = ACTIONS(3624), + [anon_sym_uR_DQUOTE] = ACTIONS(3624), + [anon_sym_UR_DQUOTE] = ACTIONS(3624), + [anon_sym_u8R_DQUOTE] = ACTIONS(3624), + [anon_sym_co_await] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_requires] = ACTIONS(3622), + [anon_sym_CARET_CARET] = ACTIONS(3624), + [anon_sym_LBRACK_COLON] = ACTIONS(3624), + [sym_this] = ACTIONS(3622), }, - [STATE(893)] = { - [sym_expression] = STATE(6747), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_initializer_list] = STATE(5840), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_COMMA] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(3592), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(2024), - [anon_sym_PLUS] = ACTIONS(2024), - [anon_sym_STAR] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - [anon_sym_EQ_EQ] = ACTIONS(2026), - [anon_sym_BANG_EQ] = ACTIONS(2026), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2026), - [anon_sym_LT_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2026), - [anon_sym_GT_GT] = ACTIONS(2026), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON] = ACTIONS(2024), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(2024), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_QMARK] = ACTIONS(2026), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_LT_EQ_GT] = ACTIONS(2026), - [anon_sym_or] = ACTIONS(2024), - [anon_sym_and] = ACTIONS(2024), - [anon_sym_bitor] = ACTIONS(2024), - [anon_sym_xor] = ACTIONS(2024), - [anon_sym_bitand] = ACTIONS(2024), - [anon_sym_not_eq] = ACTIONS(2024), - [anon_sym_DASH_DASH] = ACTIONS(2026), - [anon_sym_PLUS_PLUS] = ACTIONS(2026), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(753)] = { + [ts_builtin_sym_end] = ACTIONS(4006), + [sym_identifier] = ACTIONS(4004), + [aux_sym_preproc_include_token1] = ACTIONS(4004), + [aux_sym_preproc_def_token1] = ACTIONS(4004), + [anon_sym_COMMA] = ACTIONS(4006), + [aux_sym_preproc_if_token1] = ACTIONS(4004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4004), + [sym_preproc_directive] = ACTIONS(4004), + [anon_sym_LPAREN2] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4006), + [anon_sym_TILDE] = ACTIONS(4006), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4006), + [anon_sym___extension__] = ACTIONS(4004), + [anon_sym_typedef] = ACTIONS(4004), + [anon_sym_virtual] = ACTIONS(4004), + [anon_sym_extern] = ACTIONS(4004), + [anon_sym___attribute__] = ACTIONS(4004), + [anon_sym___attribute] = ACTIONS(4004), + [anon_sym_using] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4006), + [anon_sym___declspec] = ACTIONS(4004), + [anon_sym___based] = ACTIONS(4004), + [anon_sym___cdecl] = ACTIONS(4004), + [anon_sym___clrcall] = ACTIONS(4004), + [anon_sym___stdcall] = ACTIONS(4004), + [anon_sym___fastcall] = ACTIONS(4004), + [anon_sym___thiscall] = ACTIONS(4004), + [anon_sym___vectorcall] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4006), + [anon_sym_RBRACE] = ACTIONS(4006), + [anon_sym_signed] = ACTIONS(4004), + [anon_sym_unsigned] = ACTIONS(4004), + [anon_sym_long] = ACTIONS(4004), + [anon_sym_short] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_register] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym___inline] = ACTIONS(4004), + [anon_sym___inline__] = ACTIONS(4004), + [anon_sym___forceinline] = ACTIONS(4004), + [anon_sym_thread_local] = ACTIONS(4004), + [anon_sym___thread] = ACTIONS(4004), + [anon_sym_const] = ACTIONS(4004), + [anon_sym_constexpr] = ACTIONS(4004), + [anon_sym_volatile] = ACTIONS(4004), + [anon_sym_restrict] = ACTIONS(4004), + [anon_sym___restrict__] = ACTIONS(4004), + [anon_sym__Atomic] = ACTIONS(4004), + [anon_sym__Noreturn] = ACTIONS(4004), + [anon_sym_noreturn] = ACTIONS(4004), + [anon_sym__Nonnull] = ACTIONS(4004), + [anon_sym_mutable] = ACTIONS(4004), + [anon_sym_constinit] = ACTIONS(4004), + [anon_sym_consteval] = ACTIONS(4004), + [anon_sym_alignas] = ACTIONS(4004), + [anon_sym__Alignas] = ACTIONS(4004), + [sym_primitive_type] = ACTIONS(4004), + [anon_sym_enum] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4004), + [anon_sym_struct] = ACTIONS(4004), + [anon_sym_union] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_switch] = ACTIONS(4004), + [anon_sym_case] = ACTIONS(4004), + [anon_sym_default] = ACTIONS(4004), + [anon_sym_while] = ACTIONS(4004), + [anon_sym_do] = ACTIONS(4004), + [anon_sym_for] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_goto] = ACTIONS(4004), + [anon_sym_not] = ACTIONS(4004), + [anon_sym_compl] = ACTIONS(4004), + [anon_sym_DASH_DASH] = ACTIONS(4006), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_sizeof] = ACTIONS(4004), + [anon_sym___alignof__] = ACTIONS(4004), + [anon_sym___alignof] = ACTIONS(4004), + [anon_sym__alignof] = ACTIONS(4004), + [anon_sym_alignof] = ACTIONS(4004), + [anon_sym__Alignof] = ACTIONS(4004), + [anon_sym_offsetof] = ACTIONS(4004), + [anon_sym__Generic] = ACTIONS(4004), + [anon_sym_typename] = ACTIONS(4004), + [anon_sym_asm] = ACTIONS(4004), + [anon_sym___asm__] = ACTIONS(4004), + [anon_sym___asm] = ACTIONS(4004), + [sym_number_literal] = ACTIONS(4006), + [anon_sym_L_SQUOTE] = ACTIONS(4006), + [anon_sym_u_SQUOTE] = ACTIONS(4006), + [anon_sym_U_SQUOTE] = ACTIONS(4006), + [anon_sym_u8_SQUOTE] = ACTIONS(4006), + [anon_sym_SQUOTE] = ACTIONS(4006), + [anon_sym_L_DQUOTE] = ACTIONS(4006), + [anon_sym_u_DQUOTE] = ACTIONS(4006), + [anon_sym_U_DQUOTE] = ACTIONS(4006), + [anon_sym_u8_DQUOTE] = ACTIONS(4006), + [anon_sym_DQUOTE] = ACTIONS(4006), + [sym_true] = ACTIONS(4004), + [sym_false] = ACTIONS(4004), + [anon_sym_NULL] = ACTIONS(4004), + [anon_sym_nullptr] = ACTIONS(4004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4004), + [anon_sym_decltype] = ACTIONS(4004), + [anon_sym_explicit] = ACTIONS(4004), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_module] = ACTIONS(4004), + [anon_sym_import] = ACTIONS(4004), + [anon_sym_template] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_delete] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_namespace] = ACTIONS(4004), + [anon_sym_static_assert] = ACTIONS(4004), + [anon_sym_concept] = ACTIONS(4004), + [anon_sym_co_return] = ACTIONS(4004), + [anon_sym_co_yield] = ACTIONS(4004), + [anon_sym_R_DQUOTE] = ACTIONS(4006), + [anon_sym_LR_DQUOTE] = ACTIONS(4006), + [anon_sym_uR_DQUOTE] = ACTIONS(4006), + [anon_sym_UR_DQUOTE] = ACTIONS(4006), + [anon_sym_u8R_DQUOTE] = ACTIONS(4006), + [anon_sym_co_await] = ACTIONS(4004), + [anon_sym_new] = ACTIONS(4004), + [anon_sym_requires] = ACTIONS(4004), + [anon_sym_CARET_CARET] = ACTIONS(4006), + [anon_sym_LBRACK_COLON] = ACTIONS(4006), + [sym_this] = ACTIONS(4004), + }, + [STATE(754)] = { + [sym_identifier] = ACTIONS(3626), + [aux_sym_preproc_include_token1] = ACTIONS(3626), + [aux_sym_preproc_def_token1] = ACTIONS(3626), + [aux_sym_preproc_if_token1] = ACTIONS(3626), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), + [sym_preproc_directive] = ACTIONS(3626), + [anon_sym_LPAREN2] = ACTIONS(3628), + [anon_sym_BANG] = ACTIONS(3628), + [anon_sym_TILDE] = ACTIONS(3628), + [anon_sym_DASH] = ACTIONS(3626), + [anon_sym_PLUS] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3628), + [anon_sym_AMP_AMP] = ACTIONS(3628), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym___extension__] = ACTIONS(3626), + [anon_sym_typedef] = ACTIONS(3626), + [anon_sym_virtual] = ACTIONS(3626), + [anon_sym_extern] = ACTIONS(3626), + [anon_sym___attribute__] = ACTIONS(3626), + [anon_sym___attribute] = ACTIONS(3626), + [anon_sym_using] = ACTIONS(3626), + [anon_sym_COLON_COLON] = ACTIONS(3628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), + [anon_sym___declspec] = ACTIONS(3626), + [anon_sym___based] = ACTIONS(3626), + [anon_sym___cdecl] = ACTIONS(3626), + [anon_sym___clrcall] = ACTIONS(3626), + [anon_sym___stdcall] = ACTIONS(3626), + [anon_sym___fastcall] = ACTIONS(3626), + [anon_sym___thiscall] = ACTIONS(3626), + [anon_sym___vectorcall] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3628), + [anon_sym_RBRACE] = ACTIONS(3628), + [anon_sym_signed] = ACTIONS(3626), + [anon_sym_unsigned] = ACTIONS(3626), + [anon_sym_long] = ACTIONS(3626), + [anon_sym_short] = ACTIONS(3626), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_static] = ACTIONS(3626), + [anon_sym_register] = ACTIONS(3626), + [anon_sym_inline] = ACTIONS(3626), + [anon_sym___inline] = ACTIONS(3626), + [anon_sym___inline__] = ACTIONS(3626), + [anon_sym___forceinline] = ACTIONS(3626), + [anon_sym_thread_local] = ACTIONS(3626), + [anon_sym___thread] = ACTIONS(3626), + [anon_sym_const] = ACTIONS(3626), + [anon_sym_constexpr] = ACTIONS(3626), + [anon_sym_volatile] = ACTIONS(3626), + [anon_sym_restrict] = ACTIONS(3626), + [anon_sym___restrict__] = ACTIONS(3626), + [anon_sym__Atomic] = ACTIONS(3626), + [anon_sym__Noreturn] = ACTIONS(3626), + [anon_sym_noreturn] = ACTIONS(3626), + [anon_sym__Nonnull] = ACTIONS(3626), + [anon_sym_mutable] = ACTIONS(3626), + [anon_sym_constinit] = ACTIONS(3626), + [anon_sym_consteval] = ACTIONS(3626), + [anon_sym_alignas] = ACTIONS(3626), + [anon_sym__Alignas] = ACTIONS(3626), + [sym_primitive_type] = ACTIONS(3626), + [anon_sym_enum] = ACTIONS(3626), + [anon_sym_class] = ACTIONS(3626), + [anon_sym_struct] = ACTIONS(3626), + [anon_sym_union] = ACTIONS(3626), + [anon_sym_if] = ACTIONS(3626), + [anon_sym_else] = ACTIONS(3626), + [anon_sym_switch] = ACTIONS(3626), + [anon_sym_case] = ACTIONS(3626), + [anon_sym_default] = ACTIONS(3626), + [anon_sym_while] = ACTIONS(3626), + [anon_sym_do] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3626), + [anon_sym_return] = ACTIONS(3626), + [anon_sym_break] = ACTIONS(3626), + [anon_sym_continue] = ACTIONS(3626), + [anon_sym_goto] = ACTIONS(3626), + [anon_sym___try] = ACTIONS(3626), + [anon_sym___leave] = ACTIONS(3626), + [anon_sym_not] = ACTIONS(3626), + [anon_sym_compl] = ACTIONS(3626), + [anon_sym_DASH_DASH] = ACTIONS(3628), + [anon_sym_PLUS_PLUS] = ACTIONS(3628), + [anon_sym_sizeof] = ACTIONS(3626), + [anon_sym___alignof__] = ACTIONS(3626), + [anon_sym___alignof] = ACTIONS(3626), + [anon_sym__alignof] = ACTIONS(3626), + [anon_sym_alignof] = ACTIONS(3626), + [anon_sym__Alignof] = ACTIONS(3626), + [anon_sym_offsetof] = ACTIONS(3626), + [anon_sym__Generic] = ACTIONS(3626), + [anon_sym_typename] = ACTIONS(3626), + [anon_sym_asm] = ACTIONS(3626), + [anon_sym___asm__] = ACTIONS(3626), + [anon_sym___asm] = ACTIONS(3626), + [sym_number_literal] = ACTIONS(3628), + [anon_sym_L_SQUOTE] = ACTIONS(3628), + [anon_sym_u_SQUOTE] = ACTIONS(3628), + [anon_sym_U_SQUOTE] = ACTIONS(3628), + [anon_sym_u8_SQUOTE] = ACTIONS(3628), + [anon_sym_SQUOTE] = ACTIONS(3628), + [anon_sym_L_DQUOTE] = ACTIONS(3628), + [anon_sym_u_DQUOTE] = ACTIONS(3628), + [anon_sym_U_DQUOTE] = ACTIONS(3628), + [anon_sym_u8_DQUOTE] = ACTIONS(3628), + [anon_sym_DQUOTE] = ACTIONS(3628), + [sym_true] = ACTIONS(3626), + [sym_false] = ACTIONS(3626), + [anon_sym_NULL] = ACTIONS(3626), + [anon_sym_nullptr] = ACTIONS(3626), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3626), + [anon_sym_decltype] = ACTIONS(3626), + [anon_sym_explicit] = ACTIONS(3626), + [anon_sym_export] = ACTIONS(3626), + [anon_sym_import] = ACTIONS(3626), + [anon_sym_template] = ACTIONS(3626), + [anon_sym_operator] = ACTIONS(3626), + [anon_sym_try] = ACTIONS(3626), + [anon_sym_delete] = ACTIONS(3626), + [anon_sym_throw] = ACTIONS(3626), + [anon_sym_namespace] = ACTIONS(3626), + [anon_sym_static_assert] = ACTIONS(3626), + [anon_sym_concept] = ACTIONS(3626), + [anon_sym_co_return] = ACTIONS(3626), + [anon_sym_co_yield] = ACTIONS(3626), + [anon_sym_R_DQUOTE] = ACTIONS(3628), + [anon_sym_LR_DQUOTE] = ACTIONS(3628), + [anon_sym_uR_DQUOTE] = ACTIONS(3628), + [anon_sym_UR_DQUOTE] = ACTIONS(3628), + [anon_sym_u8R_DQUOTE] = ACTIONS(3628), + [anon_sym_co_await] = ACTIONS(3626), + [anon_sym_new] = ACTIONS(3626), + [anon_sym_requires] = ACTIONS(3626), + [anon_sym_CARET_CARET] = ACTIONS(3628), + [anon_sym_LBRACK_COLON] = ACTIONS(3628), + [sym_this] = ACTIONS(3626), + }, + [STATE(755)] = { + [sym_identifier] = ACTIONS(3630), + [aux_sym_preproc_include_token1] = ACTIONS(3630), + [aux_sym_preproc_def_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), + [sym_preproc_directive] = ACTIONS(3630), + [anon_sym_LPAREN2] = ACTIONS(3632), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3630), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_AMP] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym___extension__] = ACTIONS(3630), + [anon_sym_typedef] = ACTIONS(3630), + [anon_sym_virtual] = ACTIONS(3630), + [anon_sym_extern] = ACTIONS(3630), + [anon_sym___attribute__] = ACTIONS(3630), + [anon_sym___attribute] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), + [anon_sym___declspec] = ACTIONS(3630), + [anon_sym___based] = ACTIONS(3630), + [anon_sym___cdecl] = ACTIONS(3630), + [anon_sym___clrcall] = ACTIONS(3630), + [anon_sym___stdcall] = ACTIONS(3630), + [anon_sym___fastcall] = ACTIONS(3630), + [anon_sym___thiscall] = ACTIONS(3630), + [anon_sym___vectorcall] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3632), + [anon_sym_RBRACE] = ACTIONS(3632), + [anon_sym_signed] = ACTIONS(3630), + [anon_sym_unsigned] = ACTIONS(3630), + [anon_sym_long] = ACTIONS(3630), + [anon_sym_short] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_register] = ACTIONS(3630), + [anon_sym_inline] = ACTIONS(3630), + [anon_sym___inline] = ACTIONS(3630), + [anon_sym___inline__] = ACTIONS(3630), + [anon_sym___forceinline] = ACTIONS(3630), + [anon_sym_thread_local] = ACTIONS(3630), + [anon_sym___thread] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_constexpr] = ACTIONS(3630), + [anon_sym_volatile] = ACTIONS(3630), + [anon_sym_restrict] = ACTIONS(3630), + [anon_sym___restrict__] = ACTIONS(3630), + [anon_sym__Atomic] = ACTIONS(3630), + [anon_sym__Noreturn] = ACTIONS(3630), + [anon_sym_noreturn] = ACTIONS(3630), + [anon_sym__Nonnull] = ACTIONS(3630), + [anon_sym_mutable] = ACTIONS(3630), + [anon_sym_constinit] = ACTIONS(3630), + [anon_sym_consteval] = ACTIONS(3630), + [anon_sym_alignas] = ACTIONS(3630), + [anon_sym__Alignas] = ACTIONS(3630), + [sym_primitive_type] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_struct] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3630), + [anon_sym_else] = ACTIONS(3630), + [anon_sym_switch] = ACTIONS(3630), + [anon_sym_case] = ACTIONS(3630), + [anon_sym_default] = ACTIONS(3630), + [anon_sym_while] = ACTIONS(3630), + [anon_sym_do] = ACTIONS(3630), + [anon_sym_for] = ACTIONS(3630), + [anon_sym_return] = ACTIONS(3630), + [anon_sym_break] = ACTIONS(3630), + [anon_sym_continue] = ACTIONS(3630), + [anon_sym_goto] = ACTIONS(3630), + [anon_sym___try] = ACTIONS(3630), + [anon_sym___leave] = ACTIONS(3630), + [anon_sym_not] = ACTIONS(3630), + [anon_sym_compl] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3632), + [anon_sym_PLUS_PLUS] = ACTIONS(3632), + [anon_sym_sizeof] = ACTIONS(3630), + [anon_sym___alignof__] = ACTIONS(3630), + [anon_sym___alignof] = ACTIONS(3630), + [anon_sym__alignof] = ACTIONS(3630), + [anon_sym_alignof] = ACTIONS(3630), + [anon_sym__Alignof] = ACTIONS(3630), + [anon_sym_offsetof] = ACTIONS(3630), + [anon_sym__Generic] = ACTIONS(3630), + [anon_sym_typename] = ACTIONS(3630), + [anon_sym_asm] = ACTIONS(3630), + [anon_sym___asm__] = ACTIONS(3630), + [anon_sym___asm] = ACTIONS(3630), + [sym_number_literal] = ACTIONS(3632), + [anon_sym_L_SQUOTE] = ACTIONS(3632), + [anon_sym_u_SQUOTE] = ACTIONS(3632), + [anon_sym_U_SQUOTE] = ACTIONS(3632), + [anon_sym_u8_SQUOTE] = ACTIONS(3632), + [anon_sym_SQUOTE] = ACTIONS(3632), + [anon_sym_L_DQUOTE] = ACTIONS(3632), + [anon_sym_u_DQUOTE] = ACTIONS(3632), + [anon_sym_U_DQUOTE] = ACTIONS(3632), + [anon_sym_u8_DQUOTE] = ACTIONS(3632), + [anon_sym_DQUOTE] = ACTIONS(3632), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [anon_sym_NULL] = ACTIONS(3630), + [anon_sym_nullptr] = ACTIONS(3630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3630), + [anon_sym_decltype] = ACTIONS(3630), + [anon_sym_explicit] = ACTIONS(3630), + [anon_sym_export] = ACTIONS(3630), + [anon_sym_import] = ACTIONS(3630), + [anon_sym_template] = ACTIONS(3630), + [anon_sym_operator] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3630), + [anon_sym_delete] = ACTIONS(3630), + [anon_sym_throw] = ACTIONS(3630), + [anon_sym_namespace] = ACTIONS(3630), + [anon_sym_static_assert] = ACTIONS(3630), + [anon_sym_concept] = ACTIONS(3630), + [anon_sym_co_return] = ACTIONS(3630), + [anon_sym_co_yield] = ACTIONS(3630), + [anon_sym_R_DQUOTE] = ACTIONS(3632), + [anon_sym_LR_DQUOTE] = ACTIONS(3632), + [anon_sym_uR_DQUOTE] = ACTIONS(3632), + [anon_sym_UR_DQUOTE] = ACTIONS(3632), + [anon_sym_u8R_DQUOTE] = ACTIONS(3632), + [anon_sym_co_await] = ACTIONS(3630), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3630), + [anon_sym_CARET_CARET] = ACTIONS(3632), + [anon_sym_LBRACK_COLON] = ACTIONS(3632), + [sym_this] = ACTIONS(3630), + }, + [STATE(756)] = { + [sym_identifier] = ACTIONS(3638), + [aux_sym_preproc_include_token1] = ACTIONS(3638), + [aux_sym_preproc_def_token1] = ACTIONS(3638), + [aux_sym_preproc_if_token1] = ACTIONS(3638), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3638), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3638), + [sym_preproc_directive] = ACTIONS(3638), + [anon_sym_LPAREN2] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3640), + [anon_sym_TILDE] = ACTIONS(3640), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_AMP_AMP] = ACTIONS(3640), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym___extension__] = ACTIONS(3638), + [anon_sym_typedef] = ACTIONS(3638), + [anon_sym_virtual] = ACTIONS(3638), + [anon_sym_extern] = ACTIONS(3638), + [anon_sym___attribute__] = ACTIONS(3638), + [anon_sym___attribute] = ACTIONS(3638), + [anon_sym_using] = ACTIONS(3638), + [anon_sym_COLON_COLON] = ACTIONS(3640), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3640), + [anon_sym___declspec] = ACTIONS(3638), + [anon_sym___based] = ACTIONS(3638), + [anon_sym___cdecl] = ACTIONS(3638), + [anon_sym___clrcall] = ACTIONS(3638), + [anon_sym___stdcall] = ACTIONS(3638), + [anon_sym___fastcall] = ACTIONS(3638), + [anon_sym___thiscall] = ACTIONS(3638), + [anon_sym___vectorcall] = ACTIONS(3638), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_signed] = ACTIONS(3638), + [anon_sym_unsigned] = ACTIONS(3638), + [anon_sym_long] = ACTIONS(3638), + [anon_sym_short] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_static] = ACTIONS(3638), + [anon_sym_register] = ACTIONS(3638), + [anon_sym_inline] = ACTIONS(3638), + [anon_sym___inline] = ACTIONS(3638), + [anon_sym___inline__] = ACTIONS(3638), + [anon_sym___forceinline] = ACTIONS(3638), + [anon_sym_thread_local] = ACTIONS(3638), + [anon_sym___thread] = ACTIONS(3638), + [anon_sym_const] = ACTIONS(3638), + [anon_sym_constexpr] = ACTIONS(3638), + [anon_sym_volatile] = ACTIONS(3638), + [anon_sym_restrict] = ACTIONS(3638), + [anon_sym___restrict__] = ACTIONS(3638), + [anon_sym__Atomic] = ACTIONS(3638), + [anon_sym__Noreturn] = ACTIONS(3638), + [anon_sym_noreturn] = ACTIONS(3638), + [anon_sym__Nonnull] = ACTIONS(3638), + [anon_sym_mutable] = ACTIONS(3638), + [anon_sym_constinit] = ACTIONS(3638), + [anon_sym_consteval] = ACTIONS(3638), + [anon_sym_alignas] = ACTIONS(3638), + [anon_sym__Alignas] = ACTIONS(3638), + [sym_primitive_type] = ACTIONS(3638), + [anon_sym_enum] = ACTIONS(3638), + [anon_sym_class] = ACTIONS(3638), + [anon_sym_struct] = ACTIONS(3638), + [anon_sym_union] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_else] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_case] = ACTIONS(3638), + [anon_sym_default] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_break] = ACTIONS(3638), + [anon_sym_continue] = ACTIONS(3638), + [anon_sym_goto] = ACTIONS(3638), + [anon_sym___try] = ACTIONS(3638), + [anon_sym___leave] = ACTIONS(3638), + [anon_sym_not] = ACTIONS(3638), + [anon_sym_compl] = ACTIONS(3638), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_sizeof] = ACTIONS(3638), + [anon_sym___alignof__] = ACTIONS(3638), + [anon_sym___alignof] = ACTIONS(3638), + [anon_sym__alignof] = ACTIONS(3638), + [anon_sym_alignof] = ACTIONS(3638), + [anon_sym__Alignof] = ACTIONS(3638), + [anon_sym_offsetof] = ACTIONS(3638), + [anon_sym__Generic] = ACTIONS(3638), + [anon_sym_typename] = ACTIONS(3638), + [anon_sym_asm] = ACTIONS(3638), + [anon_sym___asm__] = ACTIONS(3638), + [anon_sym___asm] = ACTIONS(3638), + [sym_number_literal] = ACTIONS(3640), + [anon_sym_L_SQUOTE] = ACTIONS(3640), + [anon_sym_u_SQUOTE] = ACTIONS(3640), + [anon_sym_U_SQUOTE] = ACTIONS(3640), + [anon_sym_u8_SQUOTE] = ACTIONS(3640), + [anon_sym_SQUOTE] = ACTIONS(3640), + [anon_sym_L_DQUOTE] = ACTIONS(3640), + [anon_sym_u_DQUOTE] = ACTIONS(3640), + [anon_sym_U_DQUOTE] = ACTIONS(3640), + [anon_sym_u8_DQUOTE] = ACTIONS(3640), + [anon_sym_DQUOTE] = ACTIONS(3640), + [sym_true] = ACTIONS(3638), + [sym_false] = ACTIONS(3638), + [anon_sym_NULL] = ACTIONS(3638), + [anon_sym_nullptr] = ACTIONS(3638), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3638), + [anon_sym_decltype] = ACTIONS(3638), + [anon_sym_explicit] = ACTIONS(3638), + [anon_sym_export] = ACTIONS(3638), + [anon_sym_import] = ACTIONS(3638), + [anon_sym_template] = ACTIONS(3638), + [anon_sym_operator] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_delete] = ACTIONS(3638), + [anon_sym_throw] = ACTIONS(3638), + [anon_sym_namespace] = ACTIONS(3638), + [anon_sym_static_assert] = ACTIONS(3638), + [anon_sym_concept] = ACTIONS(3638), + [anon_sym_co_return] = ACTIONS(3638), + [anon_sym_co_yield] = ACTIONS(3638), + [anon_sym_R_DQUOTE] = ACTIONS(3640), + [anon_sym_LR_DQUOTE] = ACTIONS(3640), + [anon_sym_uR_DQUOTE] = ACTIONS(3640), + [anon_sym_UR_DQUOTE] = ACTIONS(3640), + [anon_sym_u8R_DQUOTE] = ACTIONS(3640), + [anon_sym_co_await] = ACTIONS(3638), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_requires] = ACTIONS(3638), + [anon_sym_CARET_CARET] = ACTIONS(3640), + [anon_sym_LBRACK_COLON] = ACTIONS(3640), + [sym_this] = ACTIONS(3638), + }, + [STATE(757)] = { + [sym_identifier] = ACTIONS(3642), + [aux_sym_preproc_include_token1] = ACTIONS(3642), + [aux_sym_preproc_def_token1] = ACTIONS(3642), + [aux_sym_preproc_if_token1] = ACTIONS(3642), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3642), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3642), + [sym_preproc_directive] = ACTIONS(3642), + [anon_sym_LPAREN2] = ACTIONS(3644), + [anon_sym_BANG] = ACTIONS(3644), + [anon_sym_TILDE] = ACTIONS(3644), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(3644), + [anon_sym_AMP_AMP] = ACTIONS(3644), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym___extension__] = ACTIONS(3642), + [anon_sym_typedef] = ACTIONS(3642), + [anon_sym_virtual] = ACTIONS(3642), + [anon_sym_extern] = ACTIONS(3642), + [anon_sym___attribute__] = ACTIONS(3642), + [anon_sym___attribute] = ACTIONS(3642), + [anon_sym_using] = ACTIONS(3642), + [anon_sym_COLON_COLON] = ACTIONS(3644), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3644), + [anon_sym___declspec] = ACTIONS(3642), + [anon_sym___based] = ACTIONS(3642), + [anon_sym___cdecl] = ACTIONS(3642), + [anon_sym___clrcall] = ACTIONS(3642), + [anon_sym___stdcall] = ACTIONS(3642), + [anon_sym___fastcall] = ACTIONS(3642), + [anon_sym___thiscall] = ACTIONS(3642), + [anon_sym___vectorcall] = ACTIONS(3642), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_RBRACE] = ACTIONS(3644), + [anon_sym_signed] = ACTIONS(3642), + [anon_sym_unsigned] = ACTIONS(3642), + [anon_sym_long] = ACTIONS(3642), + [anon_sym_short] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_static] = ACTIONS(3642), + [anon_sym_register] = ACTIONS(3642), + [anon_sym_inline] = ACTIONS(3642), + [anon_sym___inline] = ACTIONS(3642), + [anon_sym___inline__] = ACTIONS(3642), + [anon_sym___forceinline] = ACTIONS(3642), + [anon_sym_thread_local] = ACTIONS(3642), + [anon_sym___thread] = ACTIONS(3642), + [anon_sym_const] = ACTIONS(3642), + [anon_sym_constexpr] = ACTIONS(3642), + [anon_sym_volatile] = ACTIONS(3642), + [anon_sym_restrict] = ACTIONS(3642), + [anon_sym___restrict__] = ACTIONS(3642), + [anon_sym__Atomic] = ACTIONS(3642), + [anon_sym__Noreturn] = ACTIONS(3642), + [anon_sym_noreturn] = ACTIONS(3642), + [anon_sym__Nonnull] = ACTIONS(3642), + [anon_sym_mutable] = ACTIONS(3642), + [anon_sym_constinit] = ACTIONS(3642), + [anon_sym_consteval] = ACTIONS(3642), + [anon_sym_alignas] = ACTIONS(3642), + [anon_sym__Alignas] = ACTIONS(3642), + [sym_primitive_type] = ACTIONS(3642), + [anon_sym_enum] = ACTIONS(3642), + [anon_sym_class] = ACTIONS(3642), + [anon_sym_struct] = ACTIONS(3642), + [anon_sym_union] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_else] = ACTIONS(3642), + [anon_sym_switch] = ACTIONS(3642), + [anon_sym_case] = ACTIONS(3642), + [anon_sym_default] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_break] = ACTIONS(3642), + [anon_sym_continue] = ACTIONS(3642), + [anon_sym_goto] = ACTIONS(3642), + [anon_sym___try] = ACTIONS(3642), + [anon_sym___leave] = ACTIONS(3642), + [anon_sym_not] = ACTIONS(3642), + [anon_sym_compl] = ACTIONS(3642), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_sizeof] = ACTIONS(3642), + [anon_sym___alignof__] = ACTIONS(3642), + [anon_sym___alignof] = ACTIONS(3642), + [anon_sym__alignof] = ACTIONS(3642), + [anon_sym_alignof] = ACTIONS(3642), + [anon_sym__Alignof] = ACTIONS(3642), + [anon_sym_offsetof] = ACTIONS(3642), + [anon_sym__Generic] = ACTIONS(3642), + [anon_sym_typename] = ACTIONS(3642), + [anon_sym_asm] = ACTIONS(3642), + [anon_sym___asm__] = ACTIONS(3642), + [anon_sym___asm] = ACTIONS(3642), + [sym_number_literal] = ACTIONS(3644), + [anon_sym_L_SQUOTE] = ACTIONS(3644), + [anon_sym_u_SQUOTE] = ACTIONS(3644), + [anon_sym_U_SQUOTE] = ACTIONS(3644), + [anon_sym_u8_SQUOTE] = ACTIONS(3644), + [anon_sym_SQUOTE] = ACTIONS(3644), + [anon_sym_L_DQUOTE] = ACTIONS(3644), + [anon_sym_u_DQUOTE] = ACTIONS(3644), + [anon_sym_U_DQUOTE] = ACTIONS(3644), + [anon_sym_u8_DQUOTE] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(3644), + [sym_true] = ACTIONS(3642), + [sym_false] = ACTIONS(3642), + [anon_sym_NULL] = ACTIONS(3642), + [anon_sym_nullptr] = ACTIONS(3642), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3642), + [anon_sym_decltype] = ACTIONS(3642), + [anon_sym_explicit] = ACTIONS(3642), + [anon_sym_export] = ACTIONS(3642), + [anon_sym_import] = ACTIONS(3642), + [anon_sym_template] = ACTIONS(3642), + [anon_sym_operator] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_delete] = ACTIONS(3642), + [anon_sym_throw] = ACTIONS(3642), + [anon_sym_namespace] = ACTIONS(3642), + [anon_sym_static_assert] = ACTIONS(3642), + [anon_sym_concept] = ACTIONS(3642), + [anon_sym_co_return] = ACTIONS(3642), + [anon_sym_co_yield] = ACTIONS(3642), + [anon_sym_R_DQUOTE] = ACTIONS(3644), + [anon_sym_LR_DQUOTE] = ACTIONS(3644), + [anon_sym_uR_DQUOTE] = ACTIONS(3644), + [anon_sym_UR_DQUOTE] = ACTIONS(3644), + [anon_sym_u8R_DQUOTE] = ACTIONS(3644), + [anon_sym_co_await] = ACTIONS(3642), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_requires] = ACTIONS(3642), + [anon_sym_CARET_CARET] = ACTIONS(3644), + [anon_sym_LBRACK_COLON] = ACTIONS(3644), + [sym_this] = ACTIONS(3642), + }, + [STATE(758)] = { + [sym_identifier] = ACTIONS(3646), + [aux_sym_preproc_include_token1] = ACTIONS(3646), + [aux_sym_preproc_def_token1] = ACTIONS(3646), + [aux_sym_preproc_if_token1] = ACTIONS(3646), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3646), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3646), + [sym_preproc_directive] = ACTIONS(3646), + [anon_sym_LPAREN2] = ACTIONS(3648), + [anon_sym_BANG] = ACTIONS(3648), + [anon_sym_TILDE] = ACTIONS(3648), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_AMP_AMP] = ACTIONS(3648), + [anon_sym_AMP] = ACTIONS(3646), + [anon_sym_SEMI] = ACTIONS(3648), + [anon_sym___extension__] = ACTIONS(3646), + [anon_sym_typedef] = ACTIONS(3646), + [anon_sym_virtual] = ACTIONS(3646), + [anon_sym_extern] = ACTIONS(3646), + [anon_sym___attribute__] = ACTIONS(3646), + [anon_sym___attribute] = ACTIONS(3646), + [anon_sym_using] = ACTIONS(3646), + [anon_sym_COLON_COLON] = ACTIONS(3648), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3648), + [anon_sym___declspec] = ACTIONS(3646), + [anon_sym___based] = ACTIONS(3646), + [anon_sym___cdecl] = ACTIONS(3646), + [anon_sym___clrcall] = ACTIONS(3646), + [anon_sym___stdcall] = ACTIONS(3646), + [anon_sym___fastcall] = ACTIONS(3646), + [anon_sym___thiscall] = ACTIONS(3646), + [anon_sym___vectorcall] = ACTIONS(3646), + [anon_sym_LBRACE] = ACTIONS(3648), + [anon_sym_RBRACE] = ACTIONS(3648), + [anon_sym_signed] = ACTIONS(3646), + [anon_sym_unsigned] = ACTIONS(3646), + [anon_sym_long] = ACTIONS(3646), + [anon_sym_short] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_static] = ACTIONS(3646), + [anon_sym_register] = ACTIONS(3646), + [anon_sym_inline] = ACTIONS(3646), + [anon_sym___inline] = ACTIONS(3646), + [anon_sym___inline__] = ACTIONS(3646), + [anon_sym___forceinline] = ACTIONS(3646), + [anon_sym_thread_local] = ACTIONS(3646), + [anon_sym___thread] = ACTIONS(3646), + [anon_sym_const] = ACTIONS(3646), + [anon_sym_constexpr] = ACTIONS(3646), + [anon_sym_volatile] = ACTIONS(3646), + [anon_sym_restrict] = ACTIONS(3646), + [anon_sym___restrict__] = ACTIONS(3646), + [anon_sym__Atomic] = ACTIONS(3646), + [anon_sym__Noreturn] = ACTIONS(3646), + [anon_sym_noreturn] = ACTIONS(3646), + [anon_sym__Nonnull] = ACTIONS(3646), + [anon_sym_mutable] = ACTIONS(3646), + [anon_sym_constinit] = ACTIONS(3646), + [anon_sym_consteval] = ACTIONS(3646), + [anon_sym_alignas] = ACTIONS(3646), + [anon_sym__Alignas] = ACTIONS(3646), + [sym_primitive_type] = ACTIONS(3646), + [anon_sym_enum] = ACTIONS(3646), + [anon_sym_class] = ACTIONS(3646), + [anon_sym_struct] = ACTIONS(3646), + [anon_sym_union] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_else] = ACTIONS(3646), + [anon_sym_switch] = ACTIONS(3646), + [anon_sym_case] = ACTIONS(3646), + [anon_sym_default] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_break] = ACTIONS(3646), + [anon_sym_continue] = ACTIONS(3646), + [anon_sym_goto] = ACTIONS(3646), + [anon_sym___try] = ACTIONS(3646), + [anon_sym___leave] = ACTIONS(3646), + [anon_sym_not] = ACTIONS(3646), + [anon_sym_compl] = ACTIONS(3646), + [anon_sym_DASH_DASH] = ACTIONS(3648), + [anon_sym_PLUS_PLUS] = ACTIONS(3648), + [anon_sym_sizeof] = ACTIONS(3646), + [anon_sym___alignof__] = ACTIONS(3646), + [anon_sym___alignof] = ACTIONS(3646), + [anon_sym__alignof] = ACTIONS(3646), + [anon_sym_alignof] = ACTIONS(3646), + [anon_sym__Alignof] = ACTIONS(3646), + [anon_sym_offsetof] = ACTIONS(3646), + [anon_sym__Generic] = ACTIONS(3646), + [anon_sym_typename] = ACTIONS(3646), + [anon_sym_asm] = ACTIONS(3646), + [anon_sym___asm__] = ACTIONS(3646), + [anon_sym___asm] = ACTIONS(3646), + [sym_number_literal] = ACTIONS(3648), + [anon_sym_L_SQUOTE] = ACTIONS(3648), + [anon_sym_u_SQUOTE] = ACTIONS(3648), + [anon_sym_U_SQUOTE] = ACTIONS(3648), + [anon_sym_u8_SQUOTE] = ACTIONS(3648), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_L_DQUOTE] = ACTIONS(3648), + [anon_sym_u_DQUOTE] = ACTIONS(3648), + [anon_sym_U_DQUOTE] = ACTIONS(3648), + [anon_sym_u8_DQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3648), + [sym_true] = ACTIONS(3646), + [sym_false] = ACTIONS(3646), + [anon_sym_NULL] = ACTIONS(3646), + [anon_sym_nullptr] = ACTIONS(3646), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3646), + [anon_sym_decltype] = ACTIONS(3646), + [anon_sym_explicit] = ACTIONS(3646), + [anon_sym_export] = ACTIONS(3646), + [anon_sym_import] = ACTIONS(3646), + [anon_sym_template] = ACTIONS(3646), + [anon_sym_operator] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_delete] = ACTIONS(3646), + [anon_sym_throw] = ACTIONS(3646), + [anon_sym_namespace] = ACTIONS(3646), + [anon_sym_static_assert] = ACTIONS(3646), + [anon_sym_concept] = ACTIONS(3646), + [anon_sym_co_return] = ACTIONS(3646), + [anon_sym_co_yield] = ACTIONS(3646), + [anon_sym_R_DQUOTE] = ACTIONS(3648), + [anon_sym_LR_DQUOTE] = ACTIONS(3648), + [anon_sym_uR_DQUOTE] = ACTIONS(3648), + [anon_sym_UR_DQUOTE] = ACTIONS(3648), + [anon_sym_u8R_DQUOTE] = ACTIONS(3648), + [anon_sym_co_await] = ACTIONS(3646), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_requires] = ACTIONS(3646), + [anon_sym_CARET_CARET] = ACTIONS(3648), + [anon_sym_LBRACK_COLON] = ACTIONS(3648), + [sym_this] = ACTIONS(3646), + }, + [STATE(759)] = { + [sym_identifier] = ACTIONS(3650), + [aux_sym_preproc_include_token1] = ACTIONS(3650), + [aux_sym_preproc_def_token1] = ACTIONS(3650), + [aux_sym_preproc_if_token1] = ACTIONS(3650), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3650), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3650), + [sym_preproc_directive] = ACTIONS(3650), + [anon_sym_LPAREN2] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3652), + [anon_sym_TILDE] = ACTIONS(3652), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_STAR] = ACTIONS(3652), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_AMP] = ACTIONS(3650), + [anon_sym_SEMI] = ACTIONS(3652), + [anon_sym___extension__] = ACTIONS(3650), + [anon_sym_typedef] = ACTIONS(3650), + [anon_sym_virtual] = ACTIONS(3650), + [anon_sym_extern] = ACTIONS(3650), + [anon_sym___attribute__] = ACTIONS(3650), + [anon_sym___attribute] = ACTIONS(3650), + [anon_sym_using] = ACTIONS(3650), + [anon_sym_COLON_COLON] = ACTIONS(3652), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3652), + [anon_sym___declspec] = ACTIONS(3650), + [anon_sym___based] = ACTIONS(3650), + [anon_sym___cdecl] = ACTIONS(3650), + [anon_sym___clrcall] = ACTIONS(3650), + [anon_sym___stdcall] = ACTIONS(3650), + [anon_sym___fastcall] = ACTIONS(3650), + [anon_sym___thiscall] = ACTIONS(3650), + [anon_sym___vectorcall] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_RBRACE] = ACTIONS(3652), + [anon_sym_signed] = ACTIONS(3650), + [anon_sym_unsigned] = ACTIONS(3650), + [anon_sym_long] = ACTIONS(3650), + [anon_sym_short] = ACTIONS(3650), + [anon_sym_LBRACK] = ACTIONS(3650), + [anon_sym_static] = ACTIONS(3650), + [anon_sym_register] = ACTIONS(3650), + [anon_sym_inline] = ACTIONS(3650), + [anon_sym___inline] = ACTIONS(3650), + [anon_sym___inline__] = ACTIONS(3650), + [anon_sym___forceinline] = ACTIONS(3650), + [anon_sym_thread_local] = ACTIONS(3650), + [anon_sym___thread] = ACTIONS(3650), + [anon_sym_const] = ACTIONS(3650), + [anon_sym_constexpr] = ACTIONS(3650), + [anon_sym_volatile] = ACTIONS(3650), + [anon_sym_restrict] = ACTIONS(3650), + [anon_sym___restrict__] = ACTIONS(3650), + [anon_sym__Atomic] = ACTIONS(3650), + [anon_sym__Noreturn] = ACTIONS(3650), + [anon_sym_noreturn] = ACTIONS(3650), + [anon_sym__Nonnull] = ACTIONS(3650), + [anon_sym_mutable] = ACTIONS(3650), + [anon_sym_constinit] = ACTIONS(3650), + [anon_sym_consteval] = ACTIONS(3650), + [anon_sym_alignas] = ACTIONS(3650), + [anon_sym__Alignas] = ACTIONS(3650), + [sym_primitive_type] = ACTIONS(3650), + [anon_sym_enum] = ACTIONS(3650), + [anon_sym_class] = ACTIONS(3650), + [anon_sym_struct] = ACTIONS(3650), + [anon_sym_union] = ACTIONS(3650), + [anon_sym_if] = ACTIONS(3650), + [anon_sym_else] = ACTIONS(3650), + [anon_sym_switch] = ACTIONS(3650), + [anon_sym_case] = ACTIONS(3650), + [anon_sym_default] = ACTIONS(3650), + [anon_sym_while] = ACTIONS(3650), + [anon_sym_do] = ACTIONS(3650), + [anon_sym_for] = ACTIONS(3650), + [anon_sym_return] = ACTIONS(3650), + [anon_sym_break] = ACTIONS(3650), + [anon_sym_continue] = ACTIONS(3650), + [anon_sym_goto] = ACTIONS(3650), + [anon_sym___try] = ACTIONS(3650), + [anon_sym___leave] = ACTIONS(3650), + [anon_sym_not] = ACTIONS(3650), + [anon_sym_compl] = ACTIONS(3650), + [anon_sym_DASH_DASH] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3652), + [anon_sym_sizeof] = ACTIONS(3650), + [anon_sym___alignof__] = ACTIONS(3650), + [anon_sym___alignof] = ACTIONS(3650), + [anon_sym__alignof] = ACTIONS(3650), + [anon_sym_alignof] = ACTIONS(3650), + [anon_sym__Alignof] = ACTIONS(3650), + [anon_sym_offsetof] = ACTIONS(3650), + [anon_sym__Generic] = ACTIONS(3650), + [anon_sym_typename] = ACTIONS(3650), + [anon_sym_asm] = ACTIONS(3650), + [anon_sym___asm__] = ACTIONS(3650), + [anon_sym___asm] = ACTIONS(3650), + [sym_number_literal] = ACTIONS(3652), + [anon_sym_L_SQUOTE] = ACTIONS(3652), + [anon_sym_u_SQUOTE] = ACTIONS(3652), + [anon_sym_U_SQUOTE] = ACTIONS(3652), + [anon_sym_u8_SQUOTE] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(3652), + [anon_sym_L_DQUOTE] = ACTIONS(3652), + [anon_sym_u_DQUOTE] = ACTIONS(3652), + [anon_sym_U_DQUOTE] = ACTIONS(3652), + [anon_sym_u8_DQUOTE] = ACTIONS(3652), + [anon_sym_DQUOTE] = ACTIONS(3652), + [sym_true] = ACTIONS(3650), + [sym_false] = ACTIONS(3650), + [anon_sym_NULL] = ACTIONS(3650), + [anon_sym_nullptr] = ACTIONS(3650), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3650), + [anon_sym_decltype] = ACTIONS(3650), + [anon_sym_explicit] = ACTIONS(3650), + [anon_sym_export] = ACTIONS(3650), + [anon_sym_import] = ACTIONS(3650), + [anon_sym_template] = ACTIONS(3650), + [anon_sym_operator] = ACTIONS(3650), + [anon_sym_try] = ACTIONS(3650), + [anon_sym_delete] = ACTIONS(3650), + [anon_sym_throw] = ACTIONS(3650), + [anon_sym_namespace] = ACTIONS(3650), + [anon_sym_static_assert] = ACTIONS(3650), + [anon_sym_concept] = ACTIONS(3650), + [anon_sym_co_return] = ACTIONS(3650), + [anon_sym_co_yield] = ACTIONS(3650), + [anon_sym_R_DQUOTE] = ACTIONS(3652), + [anon_sym_LR_DQUOTE] = ACTIONS(3652), + [anon_sym_uR_DQUOTE] = ACTIONS(3652), + [anon_sym_UR_DQUOTE] = ACTIONS(3652), + [anon_sym_u8R_DQUOTE] = ACTIONS(3652), + [anon_sym_co_await] = ACTIONS(3650), + [anon_sym_new] = ACTIONS(3650), + [anon_sym_requires] = ACTIONS(3650), + [anon_sym_CARET_CARET] = ACTIONS(3652), + [anon_sym_LBRACK_COLON] = ACTIONS(3652), + [sym_this] = ACTIONS(3650), + }, + [STATE(760)] = { + [sym_identifier] = ACTIONS(3654), + [aux_sym_preproc_include_token1] = ACTIONS(3654), + [aux_sym_preproc_def_token1] = ACTIONS(3654), + [aux_sym_preproc_if_token1] = ACTIONS(3654), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3654), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3654), + [sym_preproc_directive] = ACTIONS(3654), + [anon_sym_LPAREN2] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_STAR] = ACTIONS(3656), + [anon_sym_AMP_AMP] = ACTIONS(3656), + [anon_sym_AMP] = ACTIONS(3654), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym___extension__] = ACTIONS(3654), + [anon_sym_typedef] = ACTIONS(3654), + [anon_sym_virtual] = ACTIONS(3654), + [anon_sym_extern] = ACTIONS(3654), + [anon_sym___attribute__] = ACTIONS(3654), + [anon_sym___attribute] = ACTIONS(3654), + [anon_sym_using] = ACTIONS(3654), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3656), + [anon_sym___declspec] = ACTIONS(3654), + [anon_sym___based] = ACTIONS(3654), + [anon_sym___cdecl] = ACTIONS(3654), + [anon_sym___clrcall] = ACTIONS(3654), + [anon_sym___stdcall] = ACTIONS(3654), + [anon_sym___fastcall] = ACTIONS(3654), + [anon_sym___thiscall] = ACTIONS(3654), + [anon_sym___vectorcall] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_signed] = ACTIONS(3654), + [anon_sym_unsigned] = ACTIONS(3654), + [anon_sym_long] = ACTIONS(3654), + [anon_sym_short] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_register] = ACTIONS(3654), + [anon_sym_inline] = ACTIONS(3654), + [anon_sym___inline] = ACTIONS(3654), + [anon_sym___inline__] = ACTIONS(3654), + [anon_sym___forceinline] = ACTIONS(3654), + [anon_sym_thread_local] = ACTIONS(3654), + [anon_sym___thread] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3654), + [anon_sym_constexpr] = ACTIONS(3654), + [anon_sym_volatile] = ACTIONS(3654), + [anon_sym_restrict] = ACTIONS(3654), + [anon_sym___restrict__] = ACTIONS(3654), + [anon_sym__Atomic] = ACTIONS(3654), + [anon_sym__Noreturn] = ACTIONS(3654), + [anon_sym_noreturn] = ACTIONS(3654), + [anon_sym__Nonnull] = ACTIONS(3654), + [anon_sym_mutable] = ACTIONS(3654), + [anon_sym_constinit] = ACTIONS(3654), + [anon_sym_consteval] = ACTIONS(3654), + [anon_sym_alignas] = ACTIONS(3654), + [anon_sym__Alignas] = ACTIONS(3654), + [sym_primitive_type] = ACTIONS(3654), + [anon_sym_enum] = ACTIONS(3654), + [anon_sym_class] = ACTIONS(3654), + [anon_sym_struct] = ACTIONS(3654), + [anon_sym_union] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_case] = ACTIONS(3654), + [anon_sym_default] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_goto] = ACTIONS(3654), + [anon_sym___try] = ACTIONS(3654), + [anon_sym___leave] = ACTIONS(3654), + [anon_sym_not] = ACTIONS(3654), + [anon_sym_compl] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_sizeof] = ACTIONS(3654), + [anon_sym___alignof__] = ACTIONS(3654), + [anon_sym___alignof] = ACTIONS(3654), + [anon_sym__alignof] = ACTIONS(3654), + [anon_sym_alignof] = ACTIONS(3654), + [anon_sym__Alignof] = ACTIONS(3654), + [anon_sym_offsetof] = ACTIONS(3654), + [anon_sym__Generic] = ACTIONS(3654), + [anon_sym_typename] = ACTIONS(3654), + [anon_sym_asm] = ACTIONS(3654), + [anon_sym___asm__] = ACTIONS(3654), + [anon_sym___asm] = ACTIONS(3654), + [sym_number_literal] = ACTIONS(3656), + [anon_sym_L_SQUOTE] = ACTIONS(3656), + [anon_sym_u_SQUOTE] = ACTIONS(3656), + [anon_sym_U_SQUOTE] = ACTIONS(3656), + [anon_sym_u8_SQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_L_DQUOTE] = ACTIONS(3656), + [anon_sym_u_DQUOTE] = ACTIONS(3656), + [anon_sym_U_DQUOTE] = ACTIONS(3656), + [anon_sym_u8_DQUOTE] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [sym_true] = ACTIONS(3654), + [sym_false] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_nullptr] = ACTIONS(3654), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3654), + [anon_sym_decltype] = ACTIONS(3654), + [anon_sym_explicit] = ACTIONS(3654), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_template] = ACTIONS(3654), + [anon_sym_operator] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_delete] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_namespace] = ACTIONS(3654), + [anon_sym_static_assert] = ACTIONS(3654), + [anon_sym_concept] = ACTIONS(3654), + [anon_sym_co_return] = ACTIONS(3654), + [anon_sym_co_yield] = ACTIONS(3654), + [anon_sym_R_DQUOTE] = ACTIONS(3656), + [anon_sym_LR_DQUOTE] = ACTIONS(3656), + [anon_sym_uR_DQUOTE] = ACTIONS(3656), + [anon_sym_UR_DQUOTE] = ACTIONS(3656), + [anon_sym_u8R_DQUOTE] = ACTIONS(3656), + [anon_sym_co_await] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_requires] = ACTIONS(3654), + [anon_sym_CARET_CARET] = ACTIONS(3656), + [anon_sym_LBRACK_COLON] = ACTIONS(3656), + [sym_this] = ACTIONS(3654), + }, + [STATE(761)] = { + [sym_identifier] = ACTIONS(3658), + [aux_sym_preproc_include_token1] = ACTIONS(3658), + [aux_sym_preproc_def_token1] = ACTIONS(3658), + [aux_sym_preproc_if_token1] = ACTIONS(3658), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3658), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3658), + [sym_preproc_directive] = ACTIONS(3658), + [anon_sym_LPAREN2] = ACTIONS(3660), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_STAR] = ACTIONS(3660), + [anon_sym_AMP_AMP] = ACTIONS(3660), + [anon_sym_AMP] = ACTIONS(3658), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym___extension__] = ACTIONS(3658), + [anon_sym_typedef] = ACTIONS(3658), + [anon_sym_virtual] = ACTIONS(3658), + [anon_sym_extern] = ACTIONS(3658), + [anon_sym___attribute__] = ACTIONS(3658), + [anon_sym___attribute] = ACTIONS(3658), + [anon_sym_using] = ACTIONS(3658), + [anon_sym_COLON_COLON] = ACTIONS(3660), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3660), + [anon_sym___declspec] = ACTIONS(3658), + [anon_sym___based] = ACTIONS(3658), + [anon_sym___cdecl] = ACTIONS(3658), + [anon_sym___clrcall] = ACTIONS(3658), + [anon_sym___stdcall] = ACTIONS(3658), + [anon_sym___fastcall] = ACTIONS(3658), + [anon_sym___thiscall] = ACTIONS(3658), + [anon_sym___vectorcall] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_RBRACE] = ACTIONS(3660), + [anon_sym_signed] = ACTIONS(3658), + [anon_sym_unsigned] = ACTIONS(3658), + [anon_sym_long] = ACTIONS(3658), + [anon_sym_short] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_register] = ACTIONS(3658), + [anon_sym_inline] = ACTIONS(3658), + [anon_sym___inline] = ACTIONS(3658), + [anon_sym___inline__] = ACTIONS(3658), + [anon_sym___forceinline] = ACTIONS(3658), + [anon_sym_thread_local] = ACTIONS(3658), + [anon_sym___thread] = ACTIONS(3658), + [anon_sym_const] = ACTIONS(3658), + [anon_sym_constexpr] = ACTIONS(3658), + [anon_sym_volatile] = ACTIONS(3658), + [anon_sym_restrict] = ACTIONS(3658), + [anon_sym___restrict__] = ACTIONS(3658), + [anon_sym__Atomic] = ACTIONS(3658), + [anon_sym__Noreturn] = ACTIONS(3658), + [anon_sym_noreturn] = ACTIONS(3658), + [anon_sym__Nonnull] = ACTIONS(3658), + [anon_sym_mutable] = ACTIONS(3658), + [anon_sym_constinit] = ACTIONS(3658), + [anon_sym_consteval] = ACTIONS(3658), + [anon_sym_alignas] = ACTIONS(3658), + [anon_sym__Alignas] = ACTIONS(3658), + [sym_primitive_type] = ACTIONS(3658), + [anon_sym_enum] = ACTIONS(3658), + [anon_sym_class] = ACTIONS(3658), + [anon_sym_struct] = ACTIONS(3658), + [anon_sym_union] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_else] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_case] = ACTIONS(3658), + [anon_sym_default] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_goto] = ACTIONS(3658), + [anon_sym___try] = ACTIONS(3658), + [anon_sym___leave] = ACTIONS(3658), + [anon_sym_not] = ACTIONS(3658), + [anon_sym_compl] = ACTIONS(3658), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_sizeof] = ACTIONS(3658), + [anon_sym___alignof__] = ACTIONS(3658), + [anon_sym___alignof] = ACTIONS(3658), + [anon_sym__alignof] = ACTIONS(3658), + [anon_sym_alignof] = ACTIONS(3658), + [anon_sym__Alignof] = ACTIONS(3658), + [anon_sym_offsetof] = ACTIONS(3658), + [anon_sym__Generic] = ACTIONS(3658), + [anon_sym_typename] = ACTIONS(3658), + [anon_sym_asm] = ACTIONS(3658), + [anon_sym___asm__] = ACTIONS(3658), + [anon_sym___asm] = ACTIONS(3658), + [sym_number_literal] = ACTIONS(3660), + [anon_sym_L_SQUOTE] = ACTIONS(3660), + [anon_sym_u_SQUOTE] = ACTIONS(3660), + [anon_sym_U_SQUOTE] = ACTIONS(3660), + [anon_sym_u8_SQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [anon_sym_L_DQUOTE] = ACTIONS(3660), + [anon_sym_u_DQUOTE] = ACTIONS(3660), + [anon_sym_U_DQUOTE] = ACTIONS(3660), + [anon_sym_u8_DQUOTE] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [sym_true] = ACTIONS(3658), + [sym_false] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_nullptr] = ACTIONS(3658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3658), + [anon_sym_decltype] = ACTIONS(3658), + [anon_sym_explicit] = ACTIONS(3658), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_template] = ACTIONS(3658), + [anon_sym_operator] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_delete] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_namespace] = ACTIONS(3658), + [anon_sym_static_assert] = ACTIONS(3658), + [anon_sym_concept] = ACTIONS(3658), + [anon_sym_co_return] = ACTIONS(3658), + [anon_sym_co_yield] = ACTIONS(3658), + [anon_sym_R_DQUOTE] = ACTIONS(3660), + [anon_sym_LR_DQUOTE] = ACTIONS(3660), + [anon_sym_uR_DQUOTE] = ACTIONS(3660), + [anon_sym_UR_DQUOTE] = ACTIONS(3660), + [anon_sym_u8R_DQUOTE] = ACTIONS(3660), + [anon_sym_co_await] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_requires] = ACTIONS(3658), + [anon_sym_CARET_CARET] = ACTIONS(3660), + [anon_sym_LBRACK_COLON] = ACTIONS(3660), + [sym_this] = ACTIONS(3658), + }, + [STATE(762)] = { + [sym_identifier] = ACTIONS(3662), + [aux_sym_preproc_include_token1] = ACTIONS(3662), + [aux_sym_preproc_def_token1] = ACTIONS(3662), + [aux_sym_preproc_if_token1] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), + [sym_preproc_directive] = ACTIONS(3662), + [anon_sym_LPAREN2] = ACTIONS(3664), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym___extension__] = ACTIONS(3662), + [anon_sym_typedef] = ACTIONS(3662), + [anon_sym_virtual] = ACTIONS(3662), + [anon_sym_extern] = ACTIONS(3662), + [anon_sym___attribute__] = ACTIONS(3662), + [anon_sym___attribute] = ACTIONS(3662), + [anon_sym_using] = ACTIONS(3662), + [anon_sym_COLON_COLON] = ACTIONS(3664), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), + [anon_sym___declspec] = ACTIONS(3662), + [anon_sym___based] = ACTIONS(3662), + [anon_sym___cdecl] = ACTIONS(3662), + [anon_sym___clrcall] = ACTIONS(3662), + [anon_sym___stdcall] = ACTIONS(3662), + [anon_sym___fastcall] = ACTIONS(3662), + [anon_sym___thiscall] = ACTIONS(3662), + [anon_sym___vectorcall] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_signed] = ACTIONS(3662), + [anon_sym_unsigned] = ACTIONS(3662), + [anon_sym_long] = ACTIONS(3662), + [anon_sym_short] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3662), + [anon_sym_static] = ACTIONS(3662), + [anon_sym_register] = ACTIONS(3662), + [anon_sym_inline] = ACTIONS(3662), + [anon_sym___inline] = ACTIONS(3662), + [anon_sym___inline__] = ACTIONS(3662), + [anon_sym___forceinline] = ACTIONS(3662), + [anon_sym_thread_local] = ACTIONS(3662), + [anon_sym___thread] = ACTIONS(3662), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_constexpr] = ACTIONS(3662), + [anon_sym_volatile] = ACTIONS(3662), + [anon_sym_restrict] = ACTIONS(3662), + [anon_sym___restrict__] = ACTIONS(3662), + [anon_sym__Atomic] = ACTIONS(3662), + [anon_sym__Noreturn] = ACTIONS(3662), + [anon_sym_noreturn] = ACTIONS(3662), + [anon_sym__Nonnull] = ACTIONS(3662), + [anon_sym_mutable] = ACTIONS(3662), + [anon_sym_constinit] = ACTIONS(3662), + [anon_sym_consteval] = ACTIONS(3662), + [anon_sym_alignas] = ACTIONS(3662), + [anon_sym__Alignas] = ACTIONS(3662), + [sym_primitive_type] = ACTIONS(3662), + [anon_sym_enum] = ACTIONS(3662), + [anon_sym_class] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(3662), + [anon_sym_union] = ACTIONS(3662), + [anon_sym_if] = ACTIONS(3662), + [anon_sym_else] = ACTIONS(3662), + [anon_sym_switch] = ACTIONS(3662), + [anon_sym_case] = ACTIONS(3662), + [anon_sym_default] = ACTIONS(3662), + [anon_sym_while] = ACTIONS(3662), + [anon_sym_do] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3662), + [anon_sym_return] = ACTIONS(3662), + [anon_sym_break] = ACTIONS(3662), + [anon_sym_continue] = ACTIONS(3662), + [anon_sym_goto] = ACTIONS(3662), + [anon_sym___try] = ACTIONS(3662), + [anon_sym___leave] = ACTIONS(3662), + [anon_sym_not] = ACTIONS(3662), + [anon_sym_compl] = ACTIONS(3662), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_sizeof] = ACTIONS(3662), + [anon_sym___alignof__] = ACTIONS(3662), + [anon_sym___alignof] = ACTIONS(3662), + [anon_sym__alignof] = ACTIONS(3662), + [anon_sym_alignof] = ACTIONS(3662), + [anon_sym__Alignof] = ACTIONS(3662), + [anon_sym_offsetof] = ACTIONS(3662), + [anon_sym__Generic] = ACTIONS(3662), + [anon_sym_typename] = ACTIONS(3662), + [anon_sym_asm] = ACTIONS(3662), + [anon_sym___asm__] = ACTIONS(3662), + [anon_sym___asm] = ACTIONS(3662), + [sym_number_literal] = ACTIONS(3664), + [anon_sym_L_SQUOTE] = ACTIONS(3664), + [anon_sym_u_SQUOTE] = ACTIONS(3664), + [anon_sym_U_SQUOTE] = ACTIONS(3664), + [anon_sym_u8_SQUOTE] = ACTIONS(3664), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_L_DQUOTE] = ACTIONS(3664), + [anon_sym_u_DQUOTE] = ACTIONS(3664), + [anon_sym_U_DQUOTE] = ACTIONS(3664), + [anon_sym_u8_DQUOTE] = ACTIONS(3664), + [anon_sym_DQUOTE] = ACTIONS(3664), + [sym_true] = ACTIONS(3662), + [sym_false] = ACTIONS(3662), + [anon_sym_NULL] = ACTIONS(3662), + [anon_sym_nullptr] = ACTIONS(3662), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3662), + [anon_sym_decltype] = ACTIONS(3662), + [anon_sym_explicit] = ACTIONS(3662), + [anon_sym_export] = ACTIONS(3662), + [anon_sym_import] = ACTIONS(3662), + [anon_sym_template] = ACTIONS(3662), + [anon_sym_operator] = ACTIONS(3662), + [anon_sym_try] = ACTIONS(3662), + [anon_sym_delete] = ACTIONS(3662), + [anon_sym_throw] = ACTIONS(3662), + [anon_sym_namespace] = ACTIONS(3662), + [anon_sym_static_assert] = ACTIONS(3662), + [anon_sym_concept] = ACTIONS(3662), + [anon_sym_co_return] = ACTIONS(3662), + [anon_sym_co_yield] = ACTIONS(3662), + [anon_sym_R_DQUOTE] = ACTIONS(3664), + [anon_sym_LR_DQUOTE] = ACTIONS(3664), + [anon_sym_uR_DQUOTE] = ACTIONS(3664), + [anon_sym_UR_DQUOTE] = ACTIONS(3664), + [anon_sym_u8R_DQUOTE] = ACTIONS(3664), + [anon_sym_co_await] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3662), + [anon_sym_requires] = ACTIONS(3662), + [anon_sym_CARET_CARET] = ACTIONS(3664), + [anon_sym_LBRACK_COLON] = ACTIONS(3664), + [sym_this] = ACTIONS(3662), + }, + [STATE(763)] = { + [sym_identifier] = ACTIONS(3662), + [aux_sym_preproc_include_token1] = ACTIONS(3662), + [aux_sym_preproc_def_token1] = ACTIONS(3662), + [aux_sym_preproc_if_token1] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), + [sym_preproc_directive] = ACTIONS(3662), + [anon_sym_LPAREN2] = ACTIONS(3664), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym___extension__] = ACTIONS(3662), + [anon_sym_typedef] = ACTIONS(3662), + [anon_sym_virtual] = ACTIONS(3662), + [anon_sym_extern] = ACTIONS(3662), + [anon_sym___attribute__] = ACTIONS(3662), + [anon_sym___attribute] = ACTIONS(3662), + [anon_sym_using] = ACTIONS(3662), + [anon_sym_COLON_COLON] = ACTIONS(3664), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), + [anon_sym___declspec] = ACTIONS(3662), + [anon_sym___based] = ACTIONS(3662), + [anon_sym___cdecl] = ACTIONS(3662), + [anon_sym___clrcall] = ACTIONS(3662), + [anon_sym___stdcall] = ACTIONS(3662), + [anon_sym___fastcall] = ACTIONS(3662), + [anon_sym___thiscall] = ACTIONS(3662), + [anon_sym___vectorcall] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_signed] = ACTIONS(3662), + [anon_sym_unsigned] = ACTIONS(3662), + [anon_sym_long] = ACTIONS(3662), + [anon_sym_short] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3662), + [anon_sym_static] = ACTIONS(3662), + [anon_sym_register] = ACTIONS(3662), + [anon_sym_inline] = ACTIONS(3662), + [anon_sym___inline] = ACTIONS(3662), + [anon_sym___inline__] = ACTIONS(3662), + [anon_sym___forceinline] = ACTIONS(3662), + [anon_sym_thread_local] = ACTIONS(3662), + [anon_sym___thread] = ACTIONS(3662), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_constexpr] = ACTIONS(3662), + [anon_sym_volatile] = ACTIONS(3662), + [anon_sym_restrict] = ACTIONS(3662), + [anon_sym___restrict__] = ACTIONS(3662), + [anon_sym__Atomic] = ACTIONS(3662), + [anon_sym__Noreturn] = ACTIONS(3662), + [anon_sym_noreturn] = ACTIONS(3662), + [anon_sym__Nonnull] = ACTIONS(3662), + [anon_sym_mutable] = ACTIONS(3662), + [anon_sym_constinit] = ACTIONS(3662), + [anon_sym_consteval] = ACTIONS(3662), + [anon_sym_alignas] = ACTIONS(3662), + [anon_sym__Alignas] = ACTIONS(3662), + [sym_primitive_type] = ACTIONS(3662), + [anon_sym_enum] = ACTIONS(3662), + [anon_sym_class] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(3662), + [anon_sym_union] = ACTIONS(3662), + [anon_sym_if] = ACTIONS(3662), + [anon_sym_else] = ACTIONS(3662), + [anon_sym_switch] = ACTIONS(3662), + [anon_sym_case] = ACTIONS(3662), + [anon_sym_default] = ACTIONS(3662), + [anon_sym_while] = ACTIONS(3662), + [anon_sym_do] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3662), + [anon_sym_return] = ACTIONS(3662), + [anon_sym_break] = ACTIONS(3662), + [anon_sym_continue] = ACTIONS(3662), + [anon_sym_goto] = ACTIONS(3662), + [anon_sym___try] = ACTIONS(3662), + [anon_sym___leave] = ACTIONS(3662), + [anon_sym_not] = ACTIONS(3662), + [anon_sym_compl] = ACTIONS(3662), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_sizeof] = ACTIONS(3662), + [anon_sym___alignof__] = ACTIONS(3662), + [anon_sym___alignof] = ACTIONS(3662), + [anon_sym__alignof] = ACTIONS(3662), + [anon_sym_alignof] = ACTIONS(3662), + [anon_sym__Alignof] = ACTIONS(3662), + [anon_sym_offsetof] = ACTIONS(3662), + [anon_sym__Generic] = ACTIONS(3662), + [anon_sym_typename] = ACTIONS(3662), + [anon_sym_asm] = ACTIONS(3662), + [anon_sym___asm__] = ACTIONS(3662), + [anon_sym___asm] = ACTIONS(3662), + [sym_number_literal] = ACTIONS(3664), + [anon_sym_L_SQUOTE] = ACTIONS(3664), + [anon_sym_u_SQUOTE] = ACTIONS(3664), + [anon_sym_U_SQUOTE] = ACTIONS(3664), + [anon_sym_u8_SQUOTE] = ACTIONS(3664), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_L_DQUOTE] = ACTIONS(3664), + [anon_sym_u_DQUOTE] = ACTIONS(3664), + [anon_sym_U_DQUOTE] = ACTIONS(3664), + [anon_sym_u8_DQUOTE] = ACTIONS(3664), + [anon_sym_DQUOTE] = ACTIONS(3664), + [sym_true] = ACTIONS(3662), + [sym_false] = ACTIONS(3662), + [anon_sym_NULL] = ACTIONS(3662), + [anon_sym_nullptr] = ACTIONS(3662), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3662), + [anon_sym_decltype] = ACTIONS(3662), + [anon_sym_explicit] = ACTIONS(3662), + [anon_sym_export] = ACTIONS(3662), + [anon_sym_import] = ACTIONS(3662), + [anon_sym_template] = ACTIONS(3662), + [anon_sym_operator] = ACTIONS(3662), + [anon_sym_try] = ACTIONS(3662), + [anon_sym_delete] = ACTIONS(3662), + [anon_sym_throw] = ACTIONS(3662), + [anon_sym_namespace] = ACTIONS(3662), + [anon_sym_static_assert] = ACTIONS(3662), + [anon_sym_concept] = ACTIONS(3662), + [anon_sym_co_return] = ACTIONS(3662), + [anon_sym_co_yield] = ACTIONS(3662), + [anon_sym_R_DQUOTE] = ACTIONS(3664), + [anon_sym_LR_DQUOTE] = ACTIONS(3664), + [anon_sym_uR_DQUOTE] = ACTIONS(3664), + [anon_sym_UR_DQUOTE] = ACTIONS(3664), + [anon_sym_u8R_DQUOTE] = ACTIONS(3664), + [anon_sym_co_await] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3662), + [anon_sym_requires] = ACTIONS(3662), + [anon_sym_CARET_CARET] = ACTIONS(3664), + [anon_sym_LBRACK_COLON] = ACTIONS(3664), + [sym_this] = ACTIONS(3662), + }, + [STATE(764)] = { + [sym_identifier] = ACTIONS(3666), + [aux_sym_preproc_include_token1] = ACTIONS(3666), + [aux_sym_preproc_def_token1] = ACTIONS(3666), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3666), + [sym_preproc_directive] = ACTIONS(3666), + [anon_sym_LPAREN2] = ACTIONS(3668), + [anon_sym_BANG] = ACTIONS(3668), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym___extension__] = ACTIONS(3666), + [anon_sym_typedef] = ACTIONS(3666), + [anon_sym_virtual] = ACTIONS(3666), + [anon_sym_extern] = ACTIONS(3666), + [anon_sym___attribute__] = ACTIONS(3666), + [anon_sym___attribute] = ACTIONS(3666), + [anon_sym_using] = ACTIONS(3666), + [anon_sym_COLON_COLON] = ACTIONS(3668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3668), + [anon_sym___declspec] = ACTIONS(3666), + [anon_sym___based] = ACTIONS(3666), + [anon_sym___cdecl] = ACTIONS(3666), + [anon_sym___clrcall] = ACTIONS(3666), + [anon_sym___stdcall] = ACTIONS(3666), + [anon_sym___fastcall] = ACTIONS(3666), + [anon_sym___thiscall] = ACTIONS(3666), + [anon_sym___vectorcall] = ACTIONS(3666), + [anon_sym_LBRACE] = ACTIONS(3668), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_signed] = ACTIONS(3666), + [anon_sym_unsigned] = ACTIONS(3666), + [anon_sym_long] = ACTIONS(3666), + [anon_sym_short] = ACTIONS(3666), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_static] = ACTIONS(3666), + [anon_sym_register] = ACTIONS(3666), + [anon_sym_inline] = ACTIONS(3666), + [anon_sym___inline] = ACTIONS(3666), + [anon_sym___inline__] = ACTIONS(3666), + [anon_sym___forceinline] = ACTIONS(3666), + [anon_sym_thread_local] = ACTIONS(3666), + [anon_sym___thread] = ACTIONS(3666), + [anon_sym_const] = ACTIONS(3666), + [anon_sym_constexpr] = ACTIONS(3666), + [anon_sym_volatile] = ACTIONS(3666), + [anon_sym_restrict] = ACTIONS(3666), + [anon_sym___restrict__] = ACTIONS(3666), + [anon_sym__Atomic] = ACTIONS(3666), + [anon_sym__Noreturn] = ACTIONS(3666), + [anon_sym_noreturn] = ACTIONS(3666), + [anon_sym__Nonnull] = ACTIONS(3666), + [anon_sym_mutable] = ACTIONS(3666), + [anon_sym_constinit] = ACTIONS(3666), + [anon_sym_consteval] = ACTIONS(3666), + [anon_sym_alignas] = ACTIONS(3666), + [anon_sym__Alignas] = ACTIONS(3666), + [sym_primitive_type] = ACTIONS(3666), + [anon_sym_enum] = ACTIONS(3666), + [anon_sym_class] = ACTIONS(3666), + [anon_sym_struct] = ACTIONS(3666), + [anon_sym_union] = ACTIONS(3666), + [anon_sym_if] = ACTIONS(3666), + [anon_sym_else] = ACTIONS(3666), + [anon_sym_switch] = ACTIONS(3666), + [anon_sym_case] = ACTIONS(3666), + [anon_sym_default] = ACTIONS(3666), + [anon_sym_while] = ACTIONS(3666), + [anon_sym_do] = ACTIONS(3666), + [anon_sym_for] = ACTIONS(3666), + [anon_sym_return] = ACTIONS(3666), + [anon_sym_break] = ACTIONS(3666), + [anon_sym_continue] = ACTIONS(3666), + [anon_sym_goto] = ACTIONS(3666), + [anon_sym___try] = ACTIONS(3666), + [anon_sym___leave] = ACTIONS(3666), + [anon_sym_not] = ACTIONS(3666), + [anon_sym_compl] = ACTIONS(3666), + [anon_sym_DASH_DASH] = ACTIONS(3668), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_sizeof] = ACTIONS(3666), + [anon_sym___alignof__] = ACTIONS(3666), + [anon_sym___alignof] = ACTIONS(3666), + [anon_sym__alignof] = ACTIONS(3666), + [anon_sym_alignof] = ACTIONS(3666), + [anon_sym__Alignof] = ACTIONS(3666), + [anon_sym_offsetof] = ACTIONS(3666), + [anon_sym__Generic] = ACTIONS(3666), + [anon_sym_typename] = ACTIONS(3666), + [anon_sym_asm] = ACTIONS(3666), + [anon_sym___asm__] = ACTIONS(3666), + [anon_sym___asm] = ACTIONS(3666), + [sym_number_literal] = ACTIONS(3668), + [anon_sym_L_SQUOTE] = ACTIONS(3668), + [anon_sym_u_SQUOTE] = ACTIONS(3668), + [anon_sym_U_SQUOTE] = ACTIONS(3668), + [anon_sym_u8_SQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3668), + [anon_sym_L_DQUOTE] = ACTIONS(3668), + [anon_sym_u_DQUOTE] = ACTIONS(3668), + [anon_sym_U_DQUOTE] = ACTIONS(3668), + [anon_sym_u8_DQUOTE] = ACTIONS(3668), + [anon_sym_DQUOTE] = ACTIONS(3668), + [sym_true] = ACTIONS(3666), + [sym_false] = ACTIONS(3666), + [anon_sym_NULL] = ACTIONS(3666), + [anon_sym_nullptr] = ACTIONS(3666), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3666), + [anon_sym_decltype] = ACTIONS(3666), + [anon_sym_explicit] = ACTIONS(3666), + [anon_sym_export] = ACTIONS(3666), + [anon_sym_import] = ACTIONS(3666), + [anon_sym_template] = ACTIONS(3666), + [anon_sym_operator] = ACTIONS(3666), + [anon_sym_try] = ACTIONS(3666), + [anon_sym_delete] = ACTIONS(3666), + [anon_sym_throw] = ACTIONS(3666), + [anon_sym_namespace] = ACTIONS(3666), + [anon_sym_static_assert] = ACTIONS(3666), + [anon_sym_concept] = ACTIONS(3666), + [anon_sym_co_return] = ACTIONS(3666), + [anon_sym_co_yield] = ACTIONS(3666), + [anon_sym_R_DQUOTE] = ACTIONS(3668), + [anon_sym_LR_DQUOTE] = ACTIONS(3668), + [anon_sym_uR_DQUOTE] = ACTIONS(3668), + [anon_sym_UR_DQUOTE] = ACTIONS(3668), + [anon_sym_u8R_DQUOTE] = ACTIONS(3668), + [anon_sym_co_await] = ACTIONS(3666), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_requires] = ACTIONS(3666), + [anon_sym_CARET_CARET] = ACTIONS(3668), + [anon_sym_LBRACK_COLON] = ACTIONS(3668), + [sym_this] = ACTIONS(3666), + }, + [STATE(765)] = { + [sym_identifier] = ACTIONS(3674), + [aux_sym_preproc_include_token1] = ACTIONS(3674), + [aux_sym_preproc_def_token1] = ACTIONS(3674), + [aux_sym_preproc_if_token1] = ACTIONS(3674), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3674), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3674), + [sym_preproc_directive] = ACTIONS(3674), + [anon_sym_LPAREN2] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3676), + [anon_sym_TILDE] = ACTIONS(3676), + [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_PLUS] = ACTIONS(3674), + [anon_sym_STAR] = ACTIONS(3676), + [anon_sym_AMP_AMP] = ACTIONS(3676), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_SEMI] = ACTIONS(3676), + [anon_sym___extension__] = ACTIONS(3674), + [anon_sym_typedef] = ACTIONS(3674), + [anon_sym_virtual] = ACTIONS(3674), + [anon_sym_extern] = ACTIONS(3674), + [anon_sym___attribute__] = ACTIONS(3674), + [anon_sym___attribute] = ACTIONS(3674), + [anon_sym_using] = ACTIONS(3674), + [anon_sym_COLON_COLON] = ACTIONS(3676), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3676), + [anon_sym___declspec] = ACTIONS(3674), + [anon_sym___based] = ACTIONS(3674), + [anon_sym___cdecl] = ACTIONS(3674), + [anon_sym___clrcall] = ACTIONS(3674), + [anon_sym___stdcall] = ACTIONS(3674), + [anon_sym___fastcall] = ACTIONS(3674), + [anon_sym___thiscall] = ACTIONS(3674), + [anon_sym___vectorcall] = ACTIONS(3674), + [anon_sym_LBRACE] = ACTIONS(3676), + [anon_sym_RBRACE] = ACTIONS(3676), + [anon_sym_signed] = ACTIONS(3674), + [anon_sym_unsigned] = ACTIONS(3674), + [anon_sym_long] = ACTIONS(3674), + [anon_sym_short] = ACTIONS(3674), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_static] = ACTIONS(3674), + [anon_sym_register] = ACTIONS(3674), + [anon_sym_inline] = ACTIONS(3674), + [anon_sym___inline] = ACTIONS(3674), + [anon_sym___inline__] = ACTIONS(3674), + [anon_sym___forceinline] = ACTIONS(3674), + [anon_sym_thread_local] = ACTIONS(3674), + [anon_sym___thread] = ACTIONS(3674), + [anon_sym_const] = ACTIONS(3674), + [anon_sym_constexpr] = ACTIONS(3674), + [anon_sym_volatile] = ACTIONS(3674), + [anon_sym_restrict] = ACTIONS(3674), + [anon_sym___restrict__] = ACTIONS(3674), + [anon_sym__Atomic] = ACTIONS(3674), + [anon_sym__Noreturn] = ACTIONS(3674), + [anon_sym_noreturn] = ACTIONS(3674), + [anon_sym__Nonnull] = ACTIONS(3674), + [anon_sym_mutable] = ACTIONS(3674), + [anon_sym_constinit] = ACTIONS(3674), + [anon_sym_consteval] = ACTIONS(3674), + [anon_sym_alignas] = ACTIONS(3674), + [anon_sym__Alignas] = ACTIONS(3674), + [sym_primitive_type] = ACTIONS(3674), + [anon_sym_enum] = ACTIONS(3674), + [anon_sym_class] = ACTIONS(3674), + [anon_sym_struct] = ACTIONS(3674), + [anon_sym_union] = ACTIONS(3674), + [anon_sym_if] = ACTIONS(3674), + [anon_sym_else] = ACTIONS(3674), + [anon_sym_switch] = ACTIONS(3674), + [anon_sym_case] = ACTIONS(3674), + [anon_sym_default] = ACTIONS(3674), + [anon_sym_while] = ACTIONS(3674), + [anon_sym_do] = ACTIONS(3674), + [anon_sym_for] = ACTIONS(3674), + [anon_sym_return] = ACTIONS(3674), + [anon_sym_break] = ACTIONS(3674), + [anon_sym_continue] = ACTIONS(3674), + [anon_sym_goto] = ACTIONS(3674), + [anon_sym___try] = ACTIONS(3674), + [anon_sym___leave] = ACTIONS(3674), + [anon_sym_not] = ACTIONS(3674), + [anon_sym_compl] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [anon_sym_PLUS_PLUS] = ACTIONS(3676), + [anon_sym_sizeof] = ACTIONS(3674), + [anon_sym___alignof__] = ACTIONS(3674), + [anon_sym___alignof] = ACTIONS(3674), + [anon_sym__alignof] = ACTIONS(3674), + [anon_sym_alignof] = ACTIONS(3674), + [anon_sym__Alignof] = ACTIONS(3674), + [anon_sym_offsetof] = ACTIONS(3674), + [anon_sym__Generic] = ACTIONS(3674), + [anon_sym_typename] = ACTIONS(3674), + [anon_sym_asm] = ACTIONS(3674), + [anon_sym___asm__] = ACTIONS(3674), + [anon_sym___asm] = ACTIONS(3674), + [sym_number_literal] = ACTIONS(3676), + [anon_sym_L_SQUOTE] = ACTIONS(3676), + [anon_sym_u_SQUOTE] = ACTIONS(3676), + [anon_sym_U_SQUOTE] = ACTIONS(3676), + [anon_sym_u8_SQUOTE] = ACTIONS(3676), + [anon_sym_SQUOTE] = ACTIONS(3676), + [anon_sym_L_DQUOTE] = ACTIONS(3676), + [anon_sym_u_DQUOTE] = ACTIONS(3676), + [anon_sym_U_DQUOTE] = ACTIONS(3676), + [anon_sym_u8_DQUOTE] = ACTIONS(3676), + [anon_sym_DQUOTE] = ACTIONS(3676), + [sym_true] = ACTIONS(3674), + [sym_false] = ACTIONS(3674), + [anon_sym_NULL] = ACTIONS(3674), + [anon_sym_nullptr] = ACTIONS(3674), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3674), + [anon_sym_decltype] = ACTIONS(3674), + [anon_sym_explicit] = ACTIONS(3674), + [anon_sym_export] = ACTIONS(3674), + [anon_sym_import] = ACTIONS(3674), + [anon_sym_template] = ACTIONS(3674), + [anon_sym_operator] = ACTIONS(3674), + [anon_sym_try] = ACTIONS(3674), + [anon_sym_delete] = ACTIONS(3674), + [anon_sym_throw] = ACTIONS(3674), + [anon_sym_namespace] = ACTIONS(3674), + [anon_sym_static_assert] = ACTIONS(3674), + [anon_sym_concept] = ACTIONS(3674), + [anon_sym_co_return] = ACTIONS(3674), + [anon_sym_co_yield] = ACTIONS(3674), + [anon_sym_R_DQUOTE] = ACTIONS(3676), + [anon_sym_LR_DQUOTE] = ACTIONS(3676), + [anon_sym_uR_DQUOTE] = ACTIONS(3676), + [anon_sym_UR_DQUOTE] = ACTIONS(3676), + [anon_sym_u8R_DQUOTE] = ACTIONS(3676), + [anon_sym_co_await] = ACTIONS(3674), + [anon_sym_new] = ACTIONS(3674), + [anon_sym_requires] = ACTIONS(3674), + [anon_sym_CARET_CARET] = ACTIONS(3676), + [anon_sym_LBRACK_COLON] = ACTIONS(3676), + [sym_this] = ACTIONS(3674), + }, + [STATE(766)] = { + [sym_identifier] = ACTIONS(3678), + [aux_sym_preproc_include_token1] = ACTIONS(3678), + [aux_sym_preproc_def_token1] = ACTIONS(3678), + [aux_sym_preproc_if_token1] = ACTIONS(3678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3678), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3678), + [sym_preproc_directive] = ACTIONS(3678), + [anon_sym_LPAREN2] = ACTIONS(3680), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3680), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym___extension__] = ACTIONS(3678), + [anon_sym_typedef] = ACTIONS(3678), + [anon_sym_virtual] = ACTIONS(3678), + [anon_sym_extern] = ACTIONS(3678), + [anon_sym___attribute__] = ACTIONS(3678), + [anon_sym___attribute] = ACTIONS(3678), + [anon_sym_using] = ACTIONS(3678), + [anon_sym_COLON_COLON] = ACTIONS(3680), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3680), + [anon_sym___declspec] = ACTIONS(3678), + [anon_sym___based] = ACTIONS(3678), + [anon_sym___cdecl] = ACTIONS(3678), + [anon_sym___clrcall] = ACTIONS(3678), + [anon_sym___stdcall] = ACTIONS(3678), + [anon_sym___fastcall] = ACTIONS(3678), + [anon_sym___thiscall] = ACTIONS(3678), + [anon_sym___vectorcall] = ACTIONS(3678), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_signed] = ACTIONS(3678), + [anon_sym_unsigned] = ACTIONS(3678), + [anon_sym_long] = ACTIONS(3678), + [anon_sym_short] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_static] = ACTIONS(3678), + [anon_sym_register] = ACTIONS(3678), + [anon_sym_inline] = ACTIONS(3678), + [anon_sym___inline] = ACTIONS(3678), + [anon_sym___inline__] = ACTIONS(3678), + [anon_sym___forceinline] = ACTIONS(3678), + [anon_sym_thread_local] = ACTIONS(3678), + [anon_sym___thread] = ACTIONS(3678), + [anon_sym_const] = ACTIONS(3678), + [anon_sym_constexpr] = ACTIONS(3678), + [anon_sym_volatile] = ACTIONS(3678), + [anon_sym_restrict] = ACTIONS(3678), + [anon_sym___restrict__] = ACTIONS(3678), + [anon_sym__Atomic] = ACTIONS(3678), + [anon_sym__Noreturn] = ACTIONS(3678), + [anon_sym_noreturn] = ACTIONS(3678), + [anon_sym__Nonnull] = ACTIONS(3678), + [anon_sym_mutable] = ACTIONS(3678), + [anon_sym_constinit] = ACTIONS(3678), + [anon_sym_consteval] = ACTIONS(3678), + [anon_sym_alignas] = ACTIONS(3678), + [anon_sym__Alignas] = ACTIONS(3678), + [sym_primitive_type] = ACTIONS(3678), + [anon_sym_enum] = ACTIONS(3678), + [anon_sym_class] = ACTIONS(3678), + [anon_sym_struct] = ACTIONS(3678), + [anon_sym_union] = ACTIONS(3678), + [anon_sym_if] = ACTIONS(3678), + [anon_sym_else] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_case] = ACTIONS(3678), + [anon_sym_default] = ACTIONS(3678), + [anon_sym_while] = ACTIONS(3678), + [anon_sym_do] = ACTIONS(3678), + [anon_sym_for] = ACTIONS(3678), + [anon_sym_return] = ACTIONS(3678), + [anon_sym_break] = ACTIONS(3678), + [anon_sym_continue] = ACTIONS(3678), + [anon_sym_goto] = ACTIONS(3678), + [anon_sym___try] = ACTIONS(3678), + [anon_sym___leave] = ACTIONS(3678), + [anon_sym_not] = ACTIONS(3678), + [anon_sym_compl] = ACTIONS(3678), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_sizeof] = ACTIONS(3678), + [anon_sym___alignof__] = ACTIONS(3678), + [anon_sym___alignof] = ACTIONS(3678), + [anon_sym__alignof] = ACTIONS(3678), + [anon_sym_alignof] = ACTIONS(3678), + [anon_sym__Alignof] = ACTIONS(3678), + [anon_sym_offsetof] = ACTIONS(3678), + [anon_sym__Generic] = ACTIONS(3678), + [anon_sym_typename] = ACTIONS(3678), + [anon_sym_asm] = ACTIONS(3678), + [anon_sym___asm__] = ACTIONS(3678), + [anon_sym___asm] = ACTIONS(3678), + [sym_number_literal] = ACTIONS(3680), + [anon_sym_L_SQUOTE] = ACTIONS(3680), + [anon_sym_u_SQUOTE] = ACTIONS(3680), + [anon_sym_U_SQUOTE] = ACTIONS(3680), + [anon_sym_u8_SQUOTE] = ACTIONS(3680), + [anon_sym_SQUOTE] = ACTIONS(3680), + [anon_sym_L_DQUOTE] = ACTIONS(3680), + [anon_sym_u_DQUOTE] = ACTIONS(3680), + [anon_sym_U_DQUOTE] = ACTIONS(3680), + [anon_sym_u8_DQUOTE] = ACTIONS(3680), + [anon_sym_DQUOTE] = ACTIONS(3680), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [anon_sym_NULL] = ACTIONS(3678), + [anon_sym_nullptr] = ACTIONS(3678), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3678), + [anon_sym_decltype] = ACTIONS(3678), + [anon_sym_explicit] = ACTIONS(3678), + [anon_sym_export] = ACTIONS(3678), + [anon_sym_import] = ACTIONS(3678), + [anon_sym_template] = ACTIONS(3678), + [anon_sym_operator] = ACTIONS(3678), + [anon_sym_try] = ACTIONS(3678), + [anon_sym_delete] = ACTIONS(3678), + [anon_sym_throw] = ACTIONS(3678), + [anon_sym_namespace] = ACTIONS(3678), + [anon_sym_static_assert] = ACTIONS(3678), + [anon_sym_concept] = ACTIONS(3678), + [anon_sym_co_return] = ACTIONS(3678), + [anon_sym_co_yield] = ACTIONS(3678), + [anon_sym_R_DQUOTE] = ACTIONS(3680), + [anon_sym_LR_DQUOTE] = ACTIONS(3680), + [anon_sym_uR_DQUOTE] = ACTIONS(3680), + [anon_sym_UR_DQUOTE] = ACTIONS(3680), + [anon_sym_u8R_DQUOTE] = ACTIONS(3680), + [anon_sym_co_await] = ACTIONS(3678), + [anon_sym_new] = ACTIONS(3678), + [anon_sym_requires] = ACTIONS(3678), + [anon_sym_CARET_CARET] = ACTIONS(3680), + [anon_sym_LBRACK_COLON] = ACTIONS(3680), + [sym_this] = ACTIONS(3678), + }, + [STATE(767)] = { + [sym_expression] = STATE(5919), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(5986), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2386), + [anon_sym_RPAREN] = ACTIONS(2386), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2386), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_PERCENT] = ACTIONS(2386), + [anon_sym_PIPE_PIPE] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_CARET] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_EQ_EQ] = ACTIONS(2386), + [anon_sym_BANG_EQ] = ACTIONS(2386), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_GT_EQ] = ACTIONS(2386), + [anon_sym_LT_EQ] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2386), + [anon_sym_GT_GT] = ACTIONS(2386), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_LBRACK] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_QMARK] = ACTIONS(2386), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_LT_EQ_GT] = ACTIONS(2386), + [anon_sym_or] = ACTIONS(2384), + [anon_sym_and] = ACTIONS(2384), + [anon_sym_bitor] = ACTIONS(2384), + [anon_sym_xor] = ACTIONS(2384), + [anon_sym_bitand] = ACTIONS(2384), + [anon_sym_not_eq] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -180513,13 +169467,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2026), - [anon_sym_DASH_GT] = ACTIONS(2026), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DOT_STAR] = ACTIONS(2386), + [anon_sym_DASH_GT] = ACTIONS(2386), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -180536,1407 +169490,2000 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_COLON_RBRACK] = ACTIONS(2386), [sym_this] = ACTIONS(237), }, - [STATE(894)] = { - [sym_identifier] = ACTIONS(3914), - [aux_sym_preproc_include_token1] = ACTIONS(3914), - [aux_sym_preproc_def_token1] = ACTIONS(3914), - [aux_sym_preproc_if_token1] = ACTIONS(3914), - [aux_sym_preproc_if_token2] = ACTIONS(3914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3914), - [sym_preproc_directive] = ACTIONS(3914), - [anon_sym_LPAREN2] = ACTIONS(3916), - [anon_sym_BANG] = ACTIONS(3916), - [anon_sym_TILDE] = ACTIONS(3916), - [anon_sym_DASH] = ACTIONS(3914), - [anon_sym_PLUS] = ACTIONS(3914), - [anon_sym_STAR] = ACTIONS(3916), - [anon_sym_AMP_AMP] = ACTIONS(3916), - [anon_sym_AMP] = ACTIONS(3914), - [anon_sym_SEMI] = ACTIONS(3916), - [anon_sym___extension__] = ACTIONS(3914), - [anon_sym_typedef] = ACTIONS(3914), - [anon_sym_virtual] = ACTIONS(3914), - [anon_sym_extern] = ACTIONS(3914), - [anon_sym___attribute__] = ACTIONS(3914), - [anon_sym___attribute] = ACTIONS(3914), - [anon_sym_using] = ACTIONS(3914), - [anon_sym_COLON_COLON] = ACTIONS(3916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3916), - [anon_sym___declspec] = ACTIONS(3914), - [anon_sym___based] = ACTIONS(3914), - [anon_sym___cdecl] = ACTIONS(3914), - [anon_sym___clrcall] = ACTIONS(3914), - [anon_sym___stdcall] = ACTIONS(3914), - [anon_sym___fastcall] = ACTIONS(3914), - [anon_sym___thiscall] = ACTIONS(3914), - [anon_sym___vectorcall] = ACTIONS(3914), - [anon_sym_LBRACE] = ACTIONS(3916), - [anon_sym_signed] = ACTIONS(3914), - [anon_sym_unsigned] = ACTIONS(3914), - [anon_sym_long] = ACTIONS(3914), - [anon_sym_short] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(3914), - [anon_sym_static] = ACTIONS(3914), - [anon_sym_register] = ACTIONS(3914), - [anon_sym_inline] = ACTIONS(3914), - [anon_sym___inline] = ACTIONS(3914), - [anon_sym___inline__] = ACTIONS(3914), - [anon_sym___forceinline] = ACTIONS(3914), - [anon_sym_thread_local] = ACTIONS(3914), - [anon_sym___thread] = ACTIONS(3914), - [anon_sym_const] = ACTIONS(3914), - [anon_sym_constexpr] = ACTIONS(3914), - [anon_sym_volatile] = ACTIONS(3914), - [anon_sym_restrict] = ACTIONS(3914), - [anon_sym___restrict__] = ACTIONS(3914), - [anon_sym__Atomic] = ACTIONS(3914), - [anon_sym__Noreturn] = ACTIONS(3914), - [anon_sym_noreturn] = ACTIONS(3914), - [anon_sym__Nonnull] = ACTIONS(3914), - [anon_sym_mutable] = ACTIONS(3914), - [anon_sym_constinit] = ACTIONS(3914), - [anon_sym_consteval] = ACTIONS(3914), - [anon_sym_alignas] = ACTIONS(3914), - [anon_sym__Alignas] = ACTIONS(3914), - [sym_primitive_type] = ACTIONS(3914), - [anon_sym_enum] = ACTIONS(3914), - [anon_sym_class] = ACTIONS(3914), - [anon_sym_struct] = ACTIONS(3914), - [anon_sym_union] = ACTIONS(3914), - [anon_sym_if] = ACTIONS(3914), - [anon_sym_switch] = ACTIONS(3914), - [anon_sym_case] = ACTIONS(3914), - [anon_sym_default] = ACTIONS(3914), - [anon_sym_while] = ACTIONS(3914), - [anon_sym_do] = ACTIONS(3914), - [anon_sym_for] = ACTIONS(3914), - [anon_sym_return] = ACTIONS(3914), - [anon_sym_break] = ACTIONS(3914), - [anon_sym_continue] = ACTIONS(3914), - [anon_sym_goto] = ACTIONS(3914), - [anon_sym___try] = ACTIONS(3914), - [anon_sym___leave] = ACTIONS(3914), - [anon_sym_not] = ACTIONS(3914), - [anon_sym_compl] = ACTIONS(3914), - [anon_sym_DASH_DASH] = ACTIONS(3916), - [anon_sym_PLUS_PLUS] = ACTIONS(3916), - [anon_sym_sizeof] = ACTIONS(3914), - [anon_sym___alignof__] = ACTIONS(3914), - [anon_sym___alignof] = ACTIONS(3914), - [anon_sym__alignof] = ACTIONS(3914), - [anon_sym_alignof] = ACTIONS(3914), - [anon_sym__Alignof] = ACTIONS(3914), - [anon_sym_offsetof] = ACTIONS(3914), - [anon_sym__Generic] = ACTIONS(3914), - [anon_sym_typename] = ACTIONS(3914), - [anon_sym_asm] = ACTIONS(3914), - [anon_sym___asm__] = ACTIONS(3914), - [anon_sym___asm] = ACTIONS(3914), - [sym_number_literal] = ACTIONS(3916), - [anon_sym_L_SQUOTE] = ACTIONS(3916), - [anon_sym_u_SQUOTE] = ACTIONS(3916), - [anon_sym_U_SQUOTE] = ACTIONS(3916), - [anon_sym_u8_SQUOTE] = ACTIONS(3916), - [anon_sym_SQUOTE] = ACTIONS(3916), - [anon_sym_L_DQUOTE] = ACTIONS(3916), - [anon_sym_u_DQUOTE] = ACTIONS(3916), - [anon_sym_U_DQUOTE] = ACTIONS(3916), - [anon_sym_u8_DQUOTE] = ACTIONS(3916), - [anon_sym_DQUOTE] = ACTIONS(3916), - [sym_true] = ACTIONS(3914), - [sym_false] = ACTIONS(3914), - [anon_sym_NULL] = ACTIONS(3914), - [anon_sym_nullptr] = ACTIONS(3914), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3914), - [anon_sym_decltype] = ACTIONS(3914), - [anon_sym_explicit] = ACTIONS(3914), - [anon_sym_template] = ACTIONS(3914), - [anon_sym_operator] = ACTIONS(3914), - [anon_sym_try] = ACTIONS(3914), - [anon_sym_delete] = ACTIONS(3914), - [anon_sym_throw] = ACTIONS(3914), - [anon_sym_namespace] = ACTIONS(3914), - [anon_sym_static_assert] = ACTIONS(3914), - [anon_sym_concept] = ACTIONS(3914), - [anon_sym_co_return] = ACTIONS(3914), - [anon_sym_co_yield] = ACTIONS(3914), - [anon_sym_R_DQUOTE] = ACTIONS(3916), - [anon_sym_LR_DQUOTE] = ACTIONS(3916), - [anon_sym_uR_DQUOTE] = ACTIONS(3916), - [anon_sym_UR_DQUOTE] = ACTIONS(3916), - [anon_sym_u8R_DQUOTE] = ACTIONS(3916), - [anon_sym_co_await] = ACTIONS(3914), - [anon_sym_new] = ACTIONS(3914), - [anon_sym_requires] = ACTIONS(3914), - [anon_sym_CARET_CARET] = ACTIONS(3916), - [anon_sym_LBRACK_COLON] = ACTIONS(3916), - [sym_this] = ACTIONS(3914), + [STATE(768)] = { + [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(3389), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3384), + [anon_sym_PLUS] = ACTIONS(3384), + [anon_sym_STAR] = ACTIONS(3389), + [anon_sym_AMP_AMP] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3384), + [anon_sym_SEMI] = ACTIONS(3389), + [anon_sym___extension__] = ACTIONS(3384), + [anon_sym_typedef] = ACTIONS(3384), + [anon_sym_virtual] = ACTIONS(3384), + [anon_sym_extern] = ACTIONS(3384), + [anon_sym___attribute__] = ACTIONS(3384), + [anon_sym___attribute] = ACTIONS(3384), + [anon_sym_using] = ACTIONS(3384), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3389), + [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(3389), + [anon_sym_RBRACE] = ACTIONS(3389), + [anon_sym_signed] = ACTIONS(3384), + [anon_sym_unsigned] = ACTIONS(3384), + [anon_sym_long] = ACTIONS(3384), + [anon_sym_short] = ACTIONS(3384), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3384), + [anon_sym_register] = ACTIONS(3384), + [anon_sym_inline] = ACTIONS(3384), + [anon_sym___inline] = ACTIONS(3384), + [anon_sym___inline__] = ACTIONS(3384), + [anon_sym___forceinline] = ACTIONS(3384), + [anon_sym_thread_local] = ACTIONS(3384), + [anon_sym___thread] = 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__Nonnull] = ACTIONS(3384), + [anon_sym_mutable] = ACTIONS(3384), + [anon_sym_constinit] = ACTIONS(3384), + [anon_sym_consteval] = ACTIONS(3384), + [anon_sym_alignas] = ACTIONS(3384), + [anon_sym__Alignas] = 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_else] = 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___try] = ACTIONS(3384), + [anon_sym___leave] = ACTIONS(3384), + [anon_sym_not] = ACTIONS(3384), + [anon_sym_compl] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3389), + [anon_sym_PLUS_PLUS] = ACTIONS(3389), + [anon_sym_sizeof] = ACTIONS(3384), + [anon_sym___alignof__] = ACTIONS(3384), + [anon_sym___alignof] = ACTIONS(3384), + [anon_sym__alignof] = ACTIONS(3384), + [anon_sym_alignof] = ACTIONS(3384), + [anon_sym__Alignof] = ACTIONS(3384), + [anon_sym_offsetof] = ACTIONS(3384), + [anon_sym__Generic] = ACTIONS(3384), + [anon_sym_typename] = ACTIONS(3384), + [anon_sym_asm] = ACTIONS(3384), + [anon_sym___asm__] = ACTIONS(3384), + [anon_sym___asm] = ACTIONS(3384), + [sym_number_literal] = ACTIONS(3389), + [anon_sym_L_SQUOTE] = ACTIONS(3389), + [anon_sym_u_SQUOTE] = ACTIONS(3389), + [anon_sym_U_SQUOTE] = ACTIONS(3389), + [anon_sym_u8_SQUOTE] = ACTIONS(3389), + [anon_sym_SQUOTE] = ACTIONS(3389), + [anon_sym_L_DQUOTE] = ACTIONS(3389), + [anon_sym_u_DQUOTE] = ACTIONS(3389), + [anon_sym_U_DQUOTE] = ACTIONS(3389), + [anon_sym_u8_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(3389), + [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_explicit] = ACTIONS(3384), + [anon_sym_export] = ACTIONS(3384), + [anon_sym_import] = 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_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(3389), + [anon_sym_LR_DQUOTE] = ACTIONS(3389), + [anon_sym_uR_DQUOTE] = ACTIONS(3389), + [anon_sym_UR_DQUOTE] = ACTIONS(3389), + [anon_sym_u8R_DQUOTE] = ACTIONS(3389), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3384), + [anon_sym_requires] = ACTIONS(3384), + [anon_sym_CARET_CARET] = ACTIONS(3389), + [anon_sym_LBRACK_COLON] = ACTIONS(3389), + [sym_this] = ACTIONS(3384), }, - [STATE(895)] = { - [sym_identifier] = ACTIONS(4168), - [aux_sym_preproc_include_token1] = ACTIONS(4168), - [aux_sym_preproc_def_token1] = ACTIONS(4168), - [aux_sym_preproc_if_token1] = ACTIONS(4168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4168), - [sym_preproc_directive] = ACTIONS(4168), - [anon_sym_LPAREN2] = ACTIONS(4170), - [anon_sym_BANG] = ACTIONS(4170), - [anon_sym_TILDE] = ACTIONS(4170), - [anon_sym_DASH] = ACTIONS(4168), - [anon_sym_PLUS] = ACTIONS(4168), - [anon_sym_STAR] = ACTIONS(4170), - [anon_sym_AMP_AMP] = ACTIONS(4170), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_SEMI] = ACTIONS(4170), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4168), - [anon_sym_virtual] = ACTIONS(4168), - [anon_sym_extern] = ACTIONS(4168), - [anon_sym___attribute__] = ACTIONS(4168), - [anon_sym___attribute] = ACTIONS(4168), - [anon_sym_using] = ACTIONS(4168), - [anon_sym_COLON_COLON] = ACTIONS(4170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4170), - [anon_sym___declspec] = ACTIONS(4168), - [anon_sym___based] = ACTIONS(4168), - [anon_sym___cdecl] = ACTIONS(4168), - [anon_sym___clrcall] = ACTIONS(4168), - [anon_sym___stdcall] = ACTIONS(4168), - [anon_sym___fastcall] = ACTIONS(4168), - [anon_sym___thiscall] = ACTIONS(4168), - [anon_sym___vectorcall] = ACTIONS(4168), - [anon_sym_LBRACE] = ACTIONS(4170), - [anon_sym_RBRACE] = ACTIONS(4170), - [anon_sym_signed] = ACTIONS(4168), - [anon_sym_unsigned] = ACTIONS(4168), - [anon_sym_long] = ACTIONS(4168), - [anon_sym_short] = ACTIONS(4168), - [anon_sym_LBRACK] = ACTIONS(4168), - [anon_sym_static] = ACTIONS(4168), - [anon_sym_register] = ACTIONS(4168), - [anon_sym_inline] = ACTIONS(4168), - [anon_sym___inline] = ACTIONS(4168), - [anon_sym___inline__] = ACTIONS(4168), - [anon_sym___forceinline] = ACTIONS(4168), - [anon_sym_thread_local] = ACTIONS(4168), - [anon_sym___thread] = ACTIONS(4168), - [anon_sym_const] = ACTIONS(4168), - [anon_sym_constexpr] = ACTIONS(4168), - [anon_sym_volatile] = ACTIONS(4168), - [anon_sym_restrict] = ACTIONS(4168), - [anon_sym___restrict__] = ACTIONS(4168), - [anon_sym__Atomic] = ACTIONS(4168), - [anon_sym__Noreturn] = ACTIONS(4168), - [anon_sym_noreturn] = ACTIONS(4168), - [anon_sym__Nonnull] = ACTIONS(4168), - [anon_sym_mutable] = ACTIONS(4168), - [anon_sym_constinit] = ACTIONS(4168), - [anon_sym_consteval] = ACTIONS(4168), - [anon_sym_alignas] = ACTIONS(4168), - [anon_sym__Alignas] = ACTIONS(4168), - [sym_primitive_type] = ACTIONS(4168), - [anon_sym_enum] = ACTIONS(4168), - [anon_sym_class] = ACTIONS(4168), - [anon_sym_struct] = ACTIONS(4168), - [anon_sym_union] = ACTIONS(4168), - [anon_sym_if] = ACTIONS(4168), - [anon_sym_switch] = ACTIONS(4168), - [anon_sym_case] = ACTIONS(4168), - [anon_sym_default] = ACTIONS(4168), - [anon_sym_while] = ACTIONS(4168), - [anon_sym_do] = ACTIONS(4168), - [anon_sym_for] = ACTIONS(4168), - [anon_sym_return] = ACTIONS(4168), - [anon_sym_break] = ACTIONS(4168), - [anon_sym_continue] = ACTIONS(4168), - [anon_sym_goto] = ACTIONS(4168), - [anon_sym___try] = ACTIONS(4168), - [anon_sym___leave] = ACTIONS(4168), - [anon_sym_not] = ACTIONS(4168), - [anon_sym_compl] = ACTIONS(4168), - [anon_sym_DASH_DASH] = ACTIONS(4170), - [anon_sym_PLUS_PLUS] = ACTIONS(4170), - [anon_sym_sizeof] = ACTIONS(4168), - [anon_sym___alignof__] = ACTIONS(4168), - [anon_sym___alignof] = ACTIONS(4168), - [anon_sym__alignof] = ACTIONS(4168), - [anon_sym_alignof] = ACTIONS(4168), - [anon_sym__Alignof] = ACTIONS(4168), - [anon_sym_offsetof] = ACTIONS(4168), - [anon_sym__Generic] = ACTIONS(4168), - [anon_sym_typename] = ACTIONS(4168), - [anon_sym_asm] = ACTIONS(4168), - [anon_sym___asm__] = ACTIONS(4168), - [anon_sym___asm] = ACTIONS(4168), - [sym_number_literal] = ACTIONS(4170), - [anon_sym_L_SQUOTE] = ACTIONS(4170), - [anon_sym_u_SQUOTE] = ACTIONS(4170), - [anon_sym_U_SQUOTE] = ACTIONS(4170), - [anon_sym_u8_SQUOTE] = ACTIONS(4170), - [anon_sym_SQUOTE] = ACTIONS(4170), - [anon_sym_L_DQUOTE] = ACTIONS(4170), - [anon_sym_u_DQUOTE] = ACTIONS(4170), - [anon_sym_U_DQUOTE] = ACTIONS(4170), - [anon_sym_u8_DQUOTE] = ACTIONS(4170), - [anon_sym_DQUOTE] = ACTIONS(4170), - [sym_true] = ACTIONS(4168), - [sym_false] = ACTIONS(4168), - [anon_sym_NULL] = ACTIONS(4168), - [anon_sym_nullptr] = ACTIONS(4168), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4168), - [anon_sym_decltype] = ACTIONS(4168), - [anon_sym_explicit] = ACTIONS(4168), - [anon_sym_template] = ACTIONS(4168), - [anon_sym_operator] = ACTIONS(4168), - [anon_sym_try] = ACTIONS(4168), - [anon_sym_delete] = ACTIONS(4168), - [anon_sym_throw] = ACTIONS(4168), - [anon_sym_namespace] = ACTIONS(4168), - [anon_sym_static_assert] = ACTIONS(4168), - [anon_sym_concept] = ACTIONS(4168), - [anon_sym_co_return] = ACTIONS(4168), - [anon_sym_co_yield] = ACTIONS(4168), - [anon_sym_R_DQUOTE] = ACTIONS(4170), - [anon_sym_LR_DQUOTE] = ACTIONS(4170), - [anon_sym_uR_DQUOTE] = ACTIONS(4170), - [anon_sym_UR_DQUOTE] = ACTIONS(4170), - [anon_sym_u8R_DQUOTE] = ACTIONS(4170), - [anon_sym_co_await] = ACTIONS(4168), - [anon_sym_new] = ACTIONS(4168), - [anon_sym_requires] = ACTIONS(4168), - [anon_sym_CARET_CARET] = ACTIONS(4170), - [anon_sym_LBRACK_COLON] = ACTIONS(4170), - [sym_this] = ACTIONS(4168), + [STATE(769)] = { + [sym_identifier] = ACTIONS(3560), + [aux_sym_preproc_include_token1] = ACTIONS(3560), + [aux_sym_preproc_def_token1] = ACTIONS(3560), + [aux_sym_preproc_if_token1] = ACTIONS(3560), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3560), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3560), + [sym_preproc_directive] = ACTIONS(3560), + [anon_sym_LPAREN2] = ACTIONS(3562), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3560), + [anon_sym_PLUS] = ACTIONS(3560), + [anon_sym_STAR] = ACTIONS(3562), + [anon_sym_AMP_AMP] = ACTIONS(3562), + [anon_sym_AMP] = ACTIONS(3560), + [anon_sym_SEMI] = ACTIONS(3562), + [anon_sym___extension__] = ACTIONS(3560), + [anon_sym_typedef] = ACTIONS(3560), + [anon_sym_virtual] = ACTIONS(3560), + [anon_sym_extern] = ACTIONS(3560), + [anon_sym___attribute__] = ACTIONS(3560), + [anon_sym___attribute] = ACTIONS(3560), + [anon_sym_using] = ACTIONS(3560), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3562), + [anon_sym___declspec] = ACTIONS(3560), + [anon_sym___based] = ACTIONS(3560), + [anon_sym___cdecl] = ACTIONS(3560), + [anon_sym___clrcall] = ACTIONS(3560), + [anon_sym___stdcall] = ACTIONS(3560), + [anon_sym___fastcall] = ACTIONS(3560), + [anon_sym___thiscall] = ACTIONS(3560), + [anon_sym___vectorcall] = ACTIONS(3560), + [anon_sym_LBRACE] = ACTIONS(3562), + [anon_sym_RBRACE] = ACTIONS(3562), + [anon_sym_signed] = ACTIONS(3560), + [anon_sym_unsigned] = ACTIONS(3560), + [anon_sym_long] = ACTIONS(3560), + [anon_sym_short] = ACTIONS(3560), + [anon_sym_LBRACK] = ACTIONS(3560), + [anon_sym_static] = ACTIONS(3560), + [anon_sym_register] = ACTIONS(3560), + [anon_sym_inline] = ACTIONS(3560), + [anon_sym___inline] = ACTIONS(3560), + [anon_sym___inline__] = ACTIONS(3560), + [anon_sym___forceinline] = ACTIONS(3560), + [anon_sym_thread_local] = ACTIONS(3560), + [anon_sym___thread] = ACTIONS(3560), + [anon_sym_const] = ACTIONS(3560), + [anon_sym_constexpr] = ACTIONS(3560), + [anon_sym_volatile] = ACTIONS(3560), + [anon_sym_restrict] = ACTIONS(3560), + [anon_sym___restrict__] = ACTIONS(3560), + [anon_sym__Atomic] = ACTIONS(3560), + [anon_sym__Noreturn] = ACTIONS(3560), + [anon_sym_noreturn] = ACTIONS(3560), + [anon_sym__Nonnull] = ACTIONS(3560), + [anon_sym_mutable] = ACTIONS(3560), + [anon_sym_constinit] = ACTIONS(3560), + [anon_sym_consteval] = ACTIONS(3560), + [anon_sym_alignas] = ACTIONS(3560), + [anon_sym__Alignas] = ACTIONS(3560), + [sym_primitive_type] = ACTIONS(3560), + [anon_sym_enum] = ACTIONS(3560), + [anon_sym_class] = ACTIONS(3560), + [anon_sym_struct] = ACTIONS(3560), + [anon_sym_union] = ACTIONS(3560), + [anon_sym_if] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(3560), + [anon_sym_switch] = ACTIONS(3560), + [anon_sym_case] = ACTIONS(3560), + [anon_sym_default] = ACTIONS(3560), + [anon_sym_while] = ACTIONS(3560), + [anon_sym_do] = ACTIONS(3560), + [anon_sym_for] = ACTIONS(3560), + [anon_sym_return] = ACTIONS(3560), + [anon_sym_break] = ACTIONS(3560), + [anon_sym_continue] = ACTIONS(3560), + [anon_sym_goto] = ACTIONS(3560), + [anon_sym___try] = ACTIONS(3560), + [anon_sym___leave] = ACTIONS(3560), + [anon_sym_not] = ACTIONS(3560), + [anon_sym_compl] = ACTIONS(3560), + [anon_sym_DASH_DASH] = ACTIONS(3562), + [anon_sym_PLUS_PLUS] = ACTIONS(3562), + [anon_sym_sizeof] = ACTIONS(3560), + [anon_sym___alignof__] = ACTIONS(3560), + [anon_sym___alignof] = ACTIONS(3560), + [anon_sym__alignof] = ACTIONS(3560), + [anon_sym_alignof] = ACTIONS(3560), + [anon_sym__Alignof] = ACTIONS(3560), + [anon_sym_offsetof] = ACTIONS(3560), + [anon_sym__Generic] = ACTIONS(3560), + [anon_sym_typename] = ACTIONS(3560), + [anon_sym_asm] = ACTIONS(3560), + [anon_sym___asm__] = ACTIONS(3560), + [anon_sym___asm] = ACTIONS(3560), + [sym_number_literal] = ACTIONS(3562), + [anon_sym_L_SQUOTE] = ACTIONS(3562), + [anon_sym_u_SQUOTE] = ACTIONS(3562), + [anon_sym_U_SQUOTE] = ACTIONS(3562), + [anon_sym_u8_SQUOTE] = ACTIONS(3562), + [anon_sym_SQUOTE] = ACTIONS(3562), + [anon_sym_L_DQUOTE] = ACTIONS(3562), + [anon_sym_u_DQUOTE] = ACTIONS(3562), + [anon_sym_U_DQUOTE] = ACTIONS(3562), + [anon_sym_u8_DQUOTE] = ACTIONS(3562), + [anon_sym_DQUOTE] = ACTIONS(3562), + [sym_true] = ACTIONS(3560), + [sym_false] = ACTIONS(3560), + [anon_sym_NULL] = ACTIONS(3560), + [anon_sym_nullptr] = ACTIONS(3560), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3560), + [anon_sym_decltype] = ACTIONS(3560), + [anon_sym_explicit] = ACTIONS(3560), + [anon_sym_export] = ACTIONS(3560), + [anon_sym_import] = ACTIONS(3560), + [anon_sym_template] = ACTIONS(3560), + [anon_sym_operator] = ACTIONS(3560), + [anon_sym_try] = ACTIONS(3560), + [anon_sym_delete] = ACTIONS(3560), + [anon_sym_throw] = ACTIONS(3560), + [anon_sym_namespace] = ACTIONS(3560), + [anon_sym_static_assert] = ACTIONS(3560), + [anon_sym_concept] = ACTIONS(3560), + [anon_sym_co_return] = ACTIONS(3560), + [anon_sym_co_yield] = ACTIONS(3560), + [anon_sym_R_DQUOTE] = ACTIONS(3562), + [anon_sym_LR_DQUOTE] = ACTIONS(3562), + [anon_sym_uR_DQUOTE] = ACTIONS(3562), + [anon_sym_UR_DQUOTE] = ACTIONS(3562), + [anon_sym_u8R_DQUOTE] = ACTIONS(3562), + [anon_sym_co_await] = ACTIONS(3560), + [anon_sym_new] = ACTIONS(3560), + [anon_sym_requires] = ACTIONS(3560), + [anon_sym_CARET_CARET] = ACTIONS(3562), + [anon_sym_LBRACK_COLON] = ACTIONS(3562), + [sym_this] = ACTIONS(3560), }, - [STATE(896)] = { - [sym_identifier] = ACTIONS(3918), - [aux_sym_preproc_include_token1] = ACTIONS(3918), - [aux_sym_preproc_def_token1] = ACTIONS(3918), - [aux_sym_preproc_if_token1] = ACTIONS(3918), - [aux_sym_preproc_if_token2] = ACTIONS(3918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3918), - [sym_preproc_directive] = ACTIONS(3918), - [anon_sym_LPAREN2] = ACTIONS(3920), - [anon_sym_BANG] = ACTIONS(3920), - [anon_sym_TILDE] = ACTIONS(3920), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_STAR] = ACTIONS(3920), - [anon_sym_AMP_AMP] = ACTIONS(3920), - [anon_sym_AMP] = ACTIONS(3918), - [anon_sym_SEMI] = ACTIONS(3920), - [anon_sym___extension__] = ACTIONS(3918), - [anon_sym_typedef] = ACTIONS(3918), - [anon_sym_virtual] = ACTIONS(3918), - [anon_sym_extern] = ACTIONS(3918), - [anon_sym___attribute__] = ACTIONS(3918), - [anon_sym___attribute] = ACTIONS(3918), - [anon_sym_using] = ACTIONS(3918), - [anon_sym_COLON_COLON] = ACTIONS(3920), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3920), - [anon_sym___declspec] = ACTIONS(3918), - [anon_sym___based] = ACTIONS(3918), - [anon_sym___cdecl] = ACTIONS(3918), - [anon_sym___clrcall] = ACTIONS(3918), - [anon_sym___stdcall] = ACTIONS(3918), - [anon_sym___fastcall] = ACTIONS(3918), - [anon_sym___thiscall] = ACTIONS(3918), - [anon_sym___vectorcall] = ACTIONS(3918), - [anon_sym_LBRACE] = ACTIONS(3920), - [anon_sym_signed] = ACTIONS(3918), - [anon_sym_unsigned] = ACTIONS(3918), - [anon_sym_long] = ACTIONS(3918), - [anon_sym_short] = ACTIONS(3918), - [anon_sym_LBRACK] = ACTIONS(3918), - [anon_sym_static] = ACTIONS(3918), - [anon_sym_register] = ACTIONS(3918), - [anon_sym_inline] = ACTIONS(3918), - [anon_sym___inline] = ACTIONS(3918), - [anon_sym___inline__] = ACTIONS(3918), - [anon_sym___forceinline] = ACTIONS(3918), - [anon_sym_thread_local] = ACTIONS(3918), - [anon_sym___thread] = ACTIONS(3918), - [anon_sym_const] = ACTIONS(3918), - [anon_sym_constexpr] = ACTIONS(3918), - [anon_sym_volatile] = ACTIONS(3918), - [anon_sym_restrict] = ACTIONS(3918), - [anon_sym___restrict__] = ACTIONS(3918), - [anon_sym__Atomic] = ACTIONS(3918), - [anon_sym__Noreturn] = ACTIONS(3918), - [anon_sym_noreturn] = ACTIONS(3918), - [anon_sym__Nonnull] = ACTIONS(3918), - [anon_sym_mutable] = ACTIONS(3918), - [anon_sym_constinit] = ACTIONS(3918), - [anon_sym_consteval] = ACTIONS(3918), - [anon_sym_alignas] = ACTIONS(3918), - [anon_sym__Alignas] = ACTIONS(3918), - [sym_primitive_type] = ACTIONS(3918), - [anon_sym_enum] = ACTIONS(3918), - [anon_sym_class] = ACTIONS(3918), - [anon_sym_struct] = ACTIONS(3918), - [anon_sym_union] = ACTIONS(3918), - [anon_sym_if] = ACTIONS(3918), - [anon_sym_switch] = ACTIONS(3918), - [anon_sym_case] = ACTIONS(3918), - [anon_sym_default] = ACTIONS(3918), - [anon_sym_while] = ACTIONS(3918), - [anon_sym_do] = ACTIONS(3918), - [anon_sym_for] = ACTIONS(3918), - [anon_sym_return] = ACTIONS(3918), - [anon_sym_break] = ACTIONS(3918), - [anon_sym_continue] = ACTIONS(3918), - [anon_sym_goto] = ACTIONS(3918), - [anon_sym___try] = ACTIONS(3918), - [anon_sym___leave] = ACTIONS(3918), - [anon_sym_not] = ACTIONS(3918), - [anon_sym_compl] = ACTIONS(3918), - [anon_sym_DASH_DASH] = ACTIONS(3920), - [anon_sym_PLUS_PLUS] = ACTIONS(3920), - [anon_sym_sizeof] = ACTIONS(3918), - [anon_sym___alignof__] = ACTIONS(3918), - [anon_sym___alignof] = ACTIONS(3918), - [anon_sym__alignof] = ACTIONS(3918), - [anon_sym_alignof] = ACTIONS(3918), - [anon_sym__Alignof] = ACTIONS(3918), - [anon_sym_offsetof] = ACTIONS(3918), - [anon_sym__Generic] = ACTIONS(3918), - [anon_sym_typename] = ACTIONS(3918), - [anon_sym_asm] = ACTIONS(3918), - [anon_sym___asm__] = ACTIONS(3918), - [anon_sym___asm] = ACTIONS(3918), - [sym_number_literal] = ACTIONS(3920), - [anon_sym_L_SQUOTE] = ACTIONS(3920), - [anon_sym_u_SQUOTE] = ACTIONS(3920), - [anon_sym_U_SQUOTE] = ACTIONS(3920), - [anon_sym_u8_SQUOTE] = ACTIONS(3920), - [anon_sym_SQUOTE] = ACTIONS(3920), - [anon_sym_L_DQUOTE] = ACTIONS(3920), - [anon_sym_u_DQUOTE] = ACTIONS(3920), - [anon_sym_U_DQUOTE] = ACTIONS(3920), - [anon_sym_u8_DQUOTE] = ACTIONS(3920), - [anon_sym_DQUOTE] = ACTIONS(3920), - [sym_true] = ACTIONS(3918), - [sym_false] = ACTIONS(3918), - [anon_sym_NULL] = ACTIONS(3918), - [anon_sym_nullptr] = ACTIONS(3918), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3918), - [anon_sym_decltype] = ACTIONS(3918), - [anon_sym_explicit] = ACTIONS(3918), - [anon_sym_template] = ACTIONS(3918), - [anon_sym_operator] = ACTIONS(3918), - [anon_sym_try] = ACTIONS(3918), - [anon_sym_delete] = ACTIONS(3918), - [anon_sym_throw] = ACTIONS(3918), - [anon_sym_namespace] = ACTIONS(3918), - [anon_sym_static_assert] = ACTIONS(3918), - [anon_sym_concept] = ACTIONS(3918), - [anon_sym_co_return] = ACTIONS(3918), - [anon_sym_co_yield] = ACTIONS(3918), - [anon_sym_R_DQUOTE] = ACTIONS(3920), - [anon_sym_LR_DQUOTE] = ACTIONS(3920), - [anon_sym_uR_DQUOTE] = ACTIONS(3920), - [anon_sym_UR_DQUOTE] = ACTIONS(3920), - [anon_sym_u8R_DQUOTE] = ACTIONS(3920), - [anon_sym_co_await] = ACTIONS(3918), - [anon_sym_new] = ACTIONS(3918), - [anon_sym_requires] = ACTIONS(3918), - [anon_sym_CARET_CARET] = ACTIONS(3920), - [anon_sym_LBRACK_COLON] = ACTIONS(3920), - [sym_this] = ACTIONS(3918), + [STATE(770)] = { + [sym_identifier] = ACTIONS(3310), + [aux_sym_preproc_include_token1] = ACTIONS(3310), + [aux_sym_preproc_def_token1] = ACTIONS(3310), + [aux_sym_preproc_if_token1] = ACTIONS(3310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3310), + [sym_preproc_directive] = ACTIONS(3310), + [anon_sym_LPAREN2] = ACTIONS(3315), + [anon_sym_BANG] = ACTIONS(3315), + [anon_sym_TILDE] = ACTIONS(3315), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3315), + [anon_sym_AMP_AMP] = ACTIONS(3315), + [anon_sym_AMP] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3315), + [anon_sym___extension__] = ACTIONS(3310), + [anon_sym_typedef] = ACTIONS(3310), + [anon_sym_virtual] = ACTIONS(3310), + [anon_sym_extern] = ACTIONS(3310), + [anon_sym___attribute__] = ACTIONS(3310), + [anon_sym___attribute] = ACTIONS(3310), + [anon_sym_using] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3315), + [anon_sym___declspec] = ACTIONS(3310), + [anon_sym___based] = ACTIONS(3310), + [anon_sym___cdecl] = ACTIONS(3310), + [anon_sym___clrcall] = ACTIONS(3310), + [anon_sym___stdcall] = ACTIONS(3310), + [anon_sym___fastcall] = ACTIONS(3310), + [anon_sym___thiscall] = ACTIONS(3310), + [anon_sym___vectorcall] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3315), + [anon_sym_RBRACE] = ACTIONS(3315), + [anon_sym_signed] = ACTIONS(3310), + [anon_sym_unsigned] = ACTIONS(3310), + [anon_sym_long] = ACTIONS(3310), + [anon_sym_short] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3310), + [anon_sym_static] = ACTIONS(3310), + [anon_sym_register] = ACTIONS(3310), + [anon_sym_inline] = ACTIONS(3310), + [anon_sym___inline] = ACTIONS(3310), + [anon_sym___inline__] = ACTIONS(3310), + [anon_sym___forceinline] = ACTIONS(3310), + [anon_sym_thread_local] = ACTIONS(3310), + [anon_sym___thread] = ACTIONS(3310), + [anon_sym_const] = ACTIONS(3310), + [anon_sym_constexpr] = ACTIONS(3310), + [anon_sym_volatile] = ACTIONS(3310), + [anon_sym_restrict] = ACTIONS(3310), + [anon_sym___restrict__] = ACTIONS(3310), + [anon_sym__Atomic] = ACTIONS(3310), + [anon_sym__Noreturn] = ACTIONS(3310), + [anon_sym_noreturn] = ACTIONS(3310), + [anon_sym__Nonnull] = ACTIONS(3310), + [anon_sym_mutable] = ACTIONS(3310), + [anon_sym_constinit] = ACTIONS(3310), + [anon_sym_consteval] = ACTIONS(3310), + [anon_sym_alignas] = ACTIONS(3310), + [anon_sym__Alignas] = ACTIONS(3310), + [sym_primitive_type] = ACTIONS(3310), + [anon_sym_enum] = ACTIONS(3310), + [anon_sym_class] = ACTIONS(3310), + [anon_sym_struct] = ACTIONS(3310), + [anon_sym_union] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_switch] = ACTIONS(3310), + [anon_sym_case] = ACTIONS(3310), + [anon_sym_default] = ACTIONS(3310), + [anon_sym_while] = ACTIONS(3310), + [anon_sym_do] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_goto] = ACTIONS(3310), + [anon_sym___try] = ACTIONS(3310), + [anon_sym___leave] = ACTIONS(3310), + [anon_sym_not] = ACTIONS(3310), + [anon_sym_compl] = ACTIONS(3310), + [anon_sym_DASH_DASH] = ACTIONS(3315), + [anon_sym_PLUS_PLUS] = ACTIONS(3315), + [anon_sym_sizeof] = ACTIONS(3310), + [anon_sym___alignof__] = ACTIONS(3310), + [anon_sym___alignof] = ACTIONS(3310), + [anon_sym__alignof] = ACTIONS(3310), + [anon_sym_alignof] = ACTIONS(3310), + [anon_sym__Alignof] = ACTIONS(3310), + [anon_sym_offsetof] = ACTIONS(3310), + [anon_sym__Generic] = ACTIONS(3310), + [anon_sym_typename] = ACTIONS(3310), + [anon_sym_asm] = ACTIONS(3310), + [anon_sym___asm__] = ACTIONS(3310), + [anon_sym___asm] = ACTIONS(3310), + [sym_number_literal] = ACTIONS(3315), + [anon_sym_L_SQUOTE] = ACTIONS(3315), + [anon_sym_u_SQUOTE] = ACTIONS(3315), + [anon_sym_U_SQUOTE] = ACTIONS(3315), + [anon_sym_u8_SQUOTE] = ACTIONS(3315), + [anon_sym_SQUOTE] = ACTIONS(3315), + [anon_sym_L_DQUOTE] = ACTIONS(3315), + [anon_sym_u_DQUOTE] = ACTIONS(3315), + [anon_sym_U_DQUOTE] = ACTIONS(3315), + [anon_sym_u8_DQUOTE] = ACTIONS(3315), + [anon_sym_DQUOTE] = ACTIONS(3315), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [anon_sym_NULL] = ACTIONS(3310), + [anon_sym_nullptr] = ACTIONS(3310), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3310), + [anon_sym_decltype] = ACTIONS(3310), + [anon_sym_explicit] = ACTIONS(3310), + [anon_sym_export] = ACTIONS(3310), + [anon_sym_import] = ACTIONS(3310), + [anon_sym_template] = ACTIONS(3310), + [anon_sym_operator] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_delete] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_namespace] = ACTIONS(3310), + [anon_sym_static_assert] = ACTIONS(3310), + [anon_sym_concept] = ACTIONS(3310), + [anon_sym_co_return] = ACTIONS(3310), + [anon_sym_co_yield] = ACTIONS(3310), + [anon_sym_R_DQUOTE] = ACTIONS(3315), + [anon_sym_LR_DQUOTE] = ACTIONS(3315), + [anon_sym_uR_DQUOTE] = ACTIONS(3315), + [anon_sym_UR_DQUOTE] = ACTIONS(3315), + [anon_sym_u8R_DQUOTE] = ACTIONS(3315), + [anon_sym_co_await] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3310), + [anon_sym_requires] = ACTIONS(3310), + [anon_sym_CARET_CARET] = ACTIONS(3315), + [anon_sym_LBRACK_COLON] = ACTIONS(3315), + [sym_this] = ACTIONS(3310), }, - [STATE(897)] = { - [sym_identifier] = ACTIONS(4111), - [aux_sym_preproc_include_token1] = ACTIONS(4111), - [aux_sym_preproc_def_token1] = ACTIONS(4111), - [aux_sym_preproc_if_token1] = ACTIONS(4111), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4111), - [sym_preproc_directive] = ACTIONS(4111), - [anon_sym_LPAREN2] = ACTIONS(4113), - [anon_sym_BANG] = ACTIONS(4113), - [anon_sym_TILDE] = ACTIONS(4113), - [anon_sym_DASH] = ACTIONS(4111), - [anon_sym_PLUS] = ACTIONS(4111), - [anon_sym_STAR] = ACTIONS(4113), - [anon_sym_AMP_AMP] = ACTIONS(4113), - [anon_sym_AMP] = ACTIONS(4111), - [anon_sym_SEMI] = ACTIONS(4113), - [anon_sym___extension__] = ACTIONS(4111), - [anon_sym_typedef] = ACTIONS(4111), - [anon_sym_virtual] = ACTIONS(4111), - [anon_sym_extern] = ACTIONS(4111), - [anon_sym___attribute__] = ACTIONS(4111), - [anon_sym___attribute] = ACTIONS(4111), - [anon_sym_using] = ACTIONS(4111), - [anon_sym_COLON_COLON] = ACTIONS(4113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4113), - [anon_sym___declspec] = ACTIONS(4111), - [anon_sym___based] = ACTIONS(4111), - [anon_sym___cdecl] = ACTIONS(4111), - [anon_sym___clrcall] = ACTIONS(4111), - [anon_sym___stdcall] = ACTIONS(4111), - [anon_sym___fastcall] = ACTIONS(4111), - [anon_sym___thiscall] = ACTIONS(4111), - [anon_sym___vectorcall] = ACTIONS(4111), - [anon_sym_LBRACE] = ACTIONS(4113), - [anon_sym_RBRACE] = ACTIONS(4113), - [anon_sym_signed] = ACTIONS(4111), - [anon_sym_unsigned] = ACTIONS(4111), - [anon_sym_long] = ACTIONS(4111), - [anon_sym_short] = ACTIONS(4111), - [anon_sym_LBRACK] = ACTIONS(4111), - [anon_sym_static] = ACTIONS(4111), - [anon_sym_register] = ACTIONS(4111), - [anon_sym_inline] = ACTIONS(4111), - [anon_sym___inline] = ACTIONS(4111), - [anon_sym___inline__] = ACTIONS(4111), - [anon_sym___forceinline] = ACTIONS(4111), - [anon_sym_thread_local] = ACTIONS(4111), - [anon_sym___thread] = ACTIONS(4111), - [anon_sym_const] = ACTIONS(4111), - [anon_sym_constexpr] = ACTIONS(4111), - [anon_sym_volatile] = ACTIONS(4111), - [anon_sym_restrict] = ACTIONS(4111), - [anon_sym___restrict__] = ACTIONS(4111), - [anon_sym__Atomic] = ACTIONS(4111), - [anon_sym__Noreturn] = ACTIONS(4111), - [anon_sym_noreturn] = ACTIONS(4111), - [anon_sym__Nonnull] = ACTIONS(4111), - [anon_sym_mutable] = ACTIONS(4111), - [anon_sym_constinit] = ACTIONS(4111), - [anon_sym_consteval] = ACTIONS(4111), - [anon_sym_alignas] = ACTIONS(4111), - [anon_sym__Alignas] = ACTIONS(4111), - [sym_primitive_type] = ACTIONS(4111), - [anon_sym_enum] = ACTIONS(4111), - [anon_sym_class] = ACTIONS(4111), - [anon_sym_struct] = ACTIONS(4111), - [anon_sym_union] = ACTIONS(4111), - [anon_sym_if] = ACTIONS(4111), - [anon_sym_switch] = ACTIONS(4111), - [anon_sym_case] = ACTIONS(4111), - [anon_sym_default] = ACTIONS(4111), - [anon_sym_while] = ACTIONS(4111), - [anon_sym_do] = ACTIONS(4111), - [anon_sym_for] = ACTIONS(4111), - [anon_sym_return] = ACTIONS(4111), - [anon_sym_break] = ACTIONS(4111), - [anon_sym_continue] = ACTIONS(4111), - [anon_sym_goto] = ACTIONS(4111), - [anon_sym___try] = ACTIONS(4111), - [anon_sym___leave] = ACTIONS(4111), - [anon_sym_not] = ACTIONS(4111), - [anon_sym_compl] = ACTIONS(4111), - [anon_sym_DASH_DASH] = ACTIONS(4113), - [anon_sym_PLUS_PLUS] = ACTIONS(4113), - [anon_sym_sizeof] = ACTIONS(4111), - [anon_sym___alignof__] = ACTIONS(4111), - [anon_sym___alignof] = ACTIONS(4111), - [anon_sym__alignof] = ACTIONS(4111), - [anon_sym_alignof] = ACTIONS(4111), - [anon_sym__Alignof] = ACTIONS(4111), - [anon_sym_offsetof] = ACTIONS(4111), - [anon_sym__Generic] = ACTIONS(4111), - [anon_sym_typename] = ACTIONS(4111), - [anon_sym_asm] = ACTIONS(4111), - [anon_sym___asm__] = ACTIONS(4111), - [anon_sym___asm] = ACTIONS(4111), - [sym_number_literal] = ACTIONS(4113), - [anon_sym_L_SQUOTE] = ACTIONS(4113), - [anon_sym_u_SQUOTE] = ACTIONS(4113), - [anon_sym_U_SQUOTE] = ACTIONS(4113), - [anon_sym_u8_SQUOTE] = ACTIONS(4113), - [anon_sym_SQUOTE] = ACTIONS(4113), - [anon_sym_L_DQUOTE] = ACTIONS(4113), - [anon_sym_u_DQUOTE] = ACTIONS(4113), - [anon_sym_U_DQUOTE] = ACTIONS(4113), - [anon_sym_u8_DQUOTE] = ACTIONS(4113), - [anon_sym_DQUOTE] = ACTIONS(4113), - [sym_true] = ACTIONS(4111), - [sym_false] = ACTIONS(4111), - [anon_sym_NULL] = ACTIONS(4111), - [anon_sym_nullptr] = ACTIONS(4111), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4111), - [anon_sym_decltype] = ACTIONS(4111), - [anon_sym_explicit] = ACTIONS(4111), - [anon_sym_template] = ACTIONS(4111), - [anon_sym_operator] = ACTIONS(4111), - [anon_sym_try] = ACTIONS(4111), - [anon_sym_delete] = ACTIONS(4111), - [anon_sym_throw] = ACTIONS(4111), - [anon_sym_namespace] = ACTIONS(4111), - [anon_sym_static_assert] = ACTIONS(4111), - [anon_sym_concept] = ACTIONS(4111), - [anon_sym_co_return] = ACTIONS(4111), - [anon_sym_co_yield] = ACTIONS(4111), - [anon_sym_R_DQUOTE] = ACTIONS(4113), - [anon_sym_LR_DQUOTE] = ACTIONS(4113), - [anon_sym_uR_DQUOTE] = ACTIONS(4113), - [anon_sym_UR_DQUOTE] = ACTIONS(4113), - [anon_sym_u8R_DQUOTE] = ACTIONS(4113), - [anon_sym_co_await] = ACTIONS(4111), - [anon_sym_new] = ACTIONS(4111), - [anon_sym_requires] = ACTIONS(4111), - [anon_sym_CARET_CARET] = ACTIONS(4113), - [anon_sym_LBRACK_COLON] = ACTIONS(4113), - [sym_this] = ACTIONS(4111), + [STATE(771)] = { + [sym_identifier] = ACTIONS(3634), + [aux_sym_preproc_include_token1] = ACTIONS(3634), + [aux_sym_preproc_def_token1] = ACTIONS(3634), + [aux_sym_preproc_if_token1] = ACTIONS(3634), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3634), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3634), + [sym_preproc_directive] = ACTIONS(3634), + [anon_sym_LPAREN2] = ACTIONS(3636), + [anon_sym_BANG] = ACTIONS(3636), + [anon_sym_TILDE] = ACTIONS(3636), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_STAR] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3636), + [anon_sym_AMP] = ACTIONS(3634), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym___extension__] = ACTIONS(3634), + [anon_sym_typedef] = ACTIONS(3634), + [anon_sym_virtual] = ACTIONS(3634), + [anon_sym_extern] = ACTIONS(3634), + [anon_sym___attribute__] = ACTIONS(3634), + [anon_sym___attribute] = ACTIONS(3634), + [anon_sym_using] = ACTIONS(3634), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3636), + [anon_sym___declspec] = ACTIONS(3634), + [anon_sym___based] = ACTIONS(3634), + [anon_sym___cdecl] = ACTIONS(3634), + [anon_sym___clrcall] = ACTIONS(3634), + [anon_sym___stdcall] = ACTIONS(3634), + [anon_sym___fastcall] = ACTIONS(3634), + [anon_sym___thiscall] = ACTIONS(3634), + [anon_sym___vectorcall] = ACTIONS(3634), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_RBRACE] = ACTIONS(3636), + [anon_sym_signed] = ACTIONS(3634), + [anon_sym_unsigned] = ACTIONS(3634), + [anon_sym_long] = ACTIONS(3634), + [anon_sym_short] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3634), + [anon_sym_static] = ACTIONS(3634), + [anon_sym_register] = ACTIONS(3634), + [anon_sym_inline] = ACTIONS(3634), + [anon_sym___inline] = ACTIONS(3634), + [anon_sym___inline__] = ACTIONS(3634), + [anon_sym___forceinline] = ACTIONS(3634), + [anon_sym_thread_local] = ACTIONS(3634), + [anon_sym___thread] = ACTIONS(3634), + [anon_sym_const] = ACTIONS(3634), + [anon_sym_constexpr] = ACTIONS(3634), + [anon_sym_volatile] = ACTIONS(3634), + [anon_sym_restrict] = ACTIONS(3634), + [anon_sym___restrict__] = ACTIONS(3634), + [anon_sym__Atomic] = ACTIONS(3634), + [anon_sym__Noreturn] = ACTIONS(3634), + [anon_sym_noreturn] = ACTIONS(3634), + [anon_sym__Nonnull] = ACTIONS(3634), + [anon_sym_mutable] = ACTIONS(3634), + [anon_sym_constinit] = ACTIONS(3634), + [anon_sym_consteval] = ACTIONS(3634), + [anon_sym_alignas] = ACTIONS(3634), + [anon_sym__Alignas] = ACTIONS(3634), + [sym_primitive_type] = ACTIONS(3634), + [anon_sym_enum] = ACTIONS(3634), + [anon_sym_class] = ACTIONS(3634), + [anon_sym_struct] = ACTIONS(3634), + [anon_sym_union] = ACTIONS(3634), + [anon_sym_if] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(3634), + [anon_sym_switch] = ACTIONS(3634), + [anon_sym_case] = ACTIONS(3634), + [anon_sym_default] = ACTIONS(3634), + [anon_sym_while] = ACTIONS(3634), + [anon_sym_do] = ACTIONS(3634), + [anon_sym_for] = ACTIONS(3634), + [anon_sym_return] = ACTIONS(3634), + [anon_sym_break] = ACTIONS(3634), + [anon_sym_continue] = ACTIONS(3634), + [anon_sym_goto] = ACTIONS(3634), + [anon_sym___try] = ACTIONS(3634), + [anon_sym___leave] = ACTIONS(3634), + [anon_sym_not] = ACTIONS(3634), + [anon_sym_compl] = ACTIONS(3634), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_sizeof] = ACTIONS(3634), + [anon_sym___alignof__] = ACTIONS(3634), + [anon_sym___alignof] = ACTIONS(3634), + [anon_sym__alignof] = ACTIONS(3634), + [anon_sym_alignof] = ACTIONS(3634), + [anon_sym__Alignof] = ACTIONS(3634), + [anon_sym_offsetof] = ACTIONS(3634), + [anon_sym__Generic] = ACTIONS(3634), + [anon_sym_typename] = ACTIONS(3634), + [anon_sym_asm] = ACTIONS(3634), + [anon_sym___asm__] = ACTIONS(3634), + [anon_sym___asm] = ACTIONS(3634), + [sym_number_literal] = ACTIONS(3636), + [anon_sym_L_SQUOTE] = ACTIONS(3636), + [anon_sym_u_SQUOTE] = ACTIONS(3636), + [anon_sym_U_SQUOTE] = ACTIONS(3636), + [anon_sym_u8_SQUOTE] = ACTIONS(3636), + [anon_sym_SQUOTE] = ACTIONS(3636), + [anon_sym_L_DQUOTE] = ACTIONS(3636), + [anon_sym_u_DQUOTE] = ACTIONS(3636), + [anon_sym_U_DQUOTE] = ACTIONS(3636), + [anon_sym_u8_DQUOTE] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(3636), + [sym_true] = ACTIONS(3634), + [sym_false] = ACTIONS(3634), + [anon_sym_NULL] = ACTIONS(3634), + [anon_sym_nullptr] = ACTIONS(3634), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3634), + [anon_sym_decltype] = ACTIONS(3634), + [anon_sym_explicit] = ACTIONS(3634), + [anon_sym_export] = ACTIONS(3634), + [anon_sym_import] = ACTIONS(3634), + [anon_sym_template] = ACTIONS(3634), + [anon_sym_operator] = ACTIONS(3634), + [anon_sym_try] = ACTIONS(3634), + [anon_sym_delete] = ACTIONS(3634), + [anon_sym_throw] = ACTIONS(3634), + [anon_sym_namespace] = ACTIONS(3634), + [anon_sym_static_assert] = ACTIONS(3634), + [anon_sym_concept] = ACTIONS(3634), + [anon_sym_co_return] = ACTIONS(3634), + [anon_sym_co_yield] = ACTIONS(3634), + [anon_sym_R_DQUOTE] = ACTIONS(3636), + [anon_sym_LR_DQUOTE] = ACTIONS(3636), + [anon_sym_uR_DQUOTE] = ACTIONS(3636), + [anon_sym_UR_DQUOTE] = ACTIONS(3636), + [anon_sym_u8R_DQUOTE] = ACTIONS(3636), + [anon_sym_co_await] = ACTIONS(3634), + [anon_sym_new] = ACTIONS(3634), + [anon_sym_requires] = ACTIONS(3634), + [anon_sym_CARET_CARET] = ACTIONS(3636), + [anon_sym_LBRACK_COLON] = ACTIONS(3636), + [sym_this] = ACTIONS(3634), }, - [STATE(898)] = { - [sym_identifier] = ACTIONS(3906), - [aux_sym_preproc_include_token1] = ACTIONS(3906), - [aux_sym_preproc_def_token1] = ACTIONS(3906), - [aux_sym_preproc_if_token1] = ACTIONS(3906), - [aux_sym_preproc_if_token2] = ACTIONS(3906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3906), - [sym_preproc_directive] = ACTIONS(3906), - [anon_sym_LPAREN2] = ACTIONS(3908), - [anon_sym_BANG] = ACTIONS(3908), - [anon_sym_TILDE] = ACTIONS(3908), - [anon_sym_DASH] = ACTIONS(3906), - [anon_sym_PLUS] = ACTIONS(3906), - [anon_sym_STAR] = ACTIONS(3908), - [anon_sym_AMP_AMP] = ACTIONS(3908), - [anon_sym_AMP] = ACTIONS(3906), - [anon_sym_SEMI] = ACTIONS(3908), - [anon_sym___extension__] = ACTIONS(3906), - [anon_sym_typedef] = ACTIONS(3906), - [anon_sym_virtual] = ACTIONS(3906), - [anon_sym_extern] = ACTIONS(3906), - [anon_sym___attribute__] = ACTIONS(3906), - [anon_sym___attribute] = ACTIONS(3906), - [anon_sym_using] = ACTIONS(3906), - [anon_sym_COLON_COLON] = ACTIONS(3908), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3908), - [anon_sym___declspec] = ACTIONS(3906), - [anon_sym___based] = ACTIONS(3906), - [anon_sym___cdecl] = ACTIONS(3906), - [anon_sym___clrcall] = ACTIONS(3906), - [anon_sym___stdcall] = ACTIONS(3906), - [anon_sym___fastcall] = ACTIONS(3906), - [anon_sym___thiscall] = ACTIONS(3906), - [anon_sym___vectorcall] = ACTIONS(3906), - [anon_sym_LBRACE] = ACTIONS(3908), - [anon_sym_signed] = ACTIONS(3906), - [anon_sym_unsigned] = ACTIONS(3906), - [anon_sym_long] = ACTIONS(3906), - [anon_sym_short] = ACTIONS(3906), - [anon_sym_LBRACK] = ACTIONS(3906), - [anon_sym_static] = ACTIONS(3906), - [anon_sym_register] = ACTIONS(3906), - [anon_sym_inline] = ACTIONS(3906), - [anon_sym___inline] = ACTIONS(3906), - [anon_sym___inline__] = ACTIONS(3906), - [anon_sym___forceinline] = ACTIONS(3906), - [anon_sym_thread_local] = ACTIONS(3906), - [anon_sym___thread] = ACTIONS(3906), - [anon_sym_const] = ACTIONS(3906), - [anon_sym_constexpr] = ACTIONS(3906), - [anon_sym_volatile] = ACTIONS(3906), - [anon_sym_restrict] = ACTIONS(3906), - [anon_sym___restrict__] = ACTIONS(3906), - [anon_sym__Atomic] = ACTIONS(3906), - [anon_sym__Noreturn] = ACTIONS(3906), - [anon_sym_noreturn] = ACTIONS(3906), - [anon_sym__Nonnull] = ACTIONS(3906), - [anon_sym_mutable] = ACTIONS(3906), - [anon_sym_constinit] = ACTIONS(3906), - [anon_sym_consteval] = ACTIONS(3906), - [anon_sym_alignas] = ACTIONS(3906), - [anon_sym__Alignas] = ACTIONS(3906), - [sym_primitive_type] = ACTIONS(3906), - [anon_sym_enum] = ACTIONS(3906), - [anon_sym_class] = ACTIONS(3906), - [anon_sym_struct] = ACTIONS(3906), - [anon_sym_union] = ACTIONS(3906), - [anon_sym_if] = ACTIONS(3906), - [anon_sym_switch] = ACTIONS(3906), - [anon_sym_case] = ACTIONS(3906), - [anon_sym_default] = ACTIONS(3906), - [anon_sym_while] = ACTIONS(3906), - [anon_sym_do] = ACTIONS(3906), - [anon_sym_for] = ACTIONS(3906), - [anon_sym_return] = ACTIONS(3906), - [anon_sym_break] = ACTIONS(3906), - [anon_sym_continue] = ACTIONS(3906), - [anon_sym_goto] = ACTIONS(3906), - [anon_sym___try] = ACTIONS(3906), - [anon_sym___leave] = ACTIONS(3906), - [anon_sym_not] = ACTIONS(3906), - [anon_sym_compl] = ACTIONS(3906), - [anon_sym_DASH_DASH] = ACTIONS(3908), - [anon_sym_PLUS_PLUS] = ACTIONS(3908), - [anon_sym_sizeof] = ACTIONS(3906), - [anon_sym___alignof__] = ACTIONS(3906), - [anon_sym___alignof] = ACTIONS(3906), - [anon_sym__alignof] = ACTIONS(3906), - [anon_sym_alignof] = ACTIONS(3906), - [anon_sym__Alignof] = ACTIONS(3906), - [anon_sym_offsetof] = ACTIONS(3906), - [anon_sym__Generic] = ACTIONS(3906), - [anon_sym_typename] = ACTIONS(3906), - [anon_sym_asm] = ACTIONS(3906), - [anon_sym___asm__] = ACTIONS(3906), - [anon_sym___asm] = ACTIONS(3906), - [sym_number_literal] = ACTIONS(3908), - [anon_sym_L_SQUOTE] = ACTIONS(3908), - [anon_sym_u_SQUOTE] = ACTIONS(3908), - [anon_sym_U_SQUOTE] = ACTIONS(3908), - [anon_sym_u8_SQUOTE] = ACTIONS(3908), - [anon_sym_SQUOTE] = ACTIONS(3908), - [anon_sym_L_DQUOTE] = ACTIONS(3908), - [anon_sym_u_DQUOTE] = ACTIONS(3908), - [anon_sym_U_DQUOTE] = ACTIONS(3908), - [anon_sym_u8_DQUOTE] = ACTIONS(3908), - [anon_sym_DQUOTE] = ACTIONS(3908), - [sym_true] = ACTIONS(3906), - [sym_false] = ACTIONS(3906), - [anon_sym_NULL] = ACTIONS(3906), - [anon_sym_nullptr] = ACTIONS(3906), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3906), - [anon_sym_decltype] = ACTIONS(3906), - [anon_sym_explicit] = ACTIONS(3906), - [anon_sym_template] = ACTIONS(3906), - [anon_sym_operator] = ACTIONS(3906), - [anon_sym_try] = ACTIONS(3906), - [anon_sym_delete] = ACTIONS(3906), - [anon_sym_throw] = ACTIONS(3906), - [anon_sym_namespace] = ACTIONS(3906), - [anon_sym_static_assert] = ACTIONS(3906), - [anon_sym_concept] = ACTIONS(3906), - [anon_sym_co_return] = ACTIONS(3906), - [anon_sym_co_yield] = ACTIONS(3906), - [anon_sym_R_DQUOTE] = ACTIONS(3908), - [anon_sym_LR_DQUOTE] = ACTIONS(3908), - [anon_sym_uR_DQUOTE] = ACTIONS(3908), - [anon_sym_UR_DQUOTE] = ACTIONS(3908), - [anon_sym_u8R_DQUOTE] = ACTIONS(3908), - [anon_sym_co_await] = ACTIONS(3906), - [anon_sym_new] = ACTIONS(3906), - [anon_sym_requires] = ACTIONS(3906), - [anon_sym_CARET_CARET] = ACTIONS(3908), - [anon_sym_LBRACK_COLON] = ACTIONS(3908), - [sym_this] = ACTIONS(3906), + [STATE(772)] = { + [sym_identifier] = ACTIONS(3520), + [aux_sym_preproc_include_token1] = ACTIONS(3520), + [aux_sym_preproc_def_token1] = ACTIONS(3520), + [aux_sym_preproc_if_token1] = ACTIONS(3520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3520), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3520), + [sym_preproc_directive] = ACTIONS(3520), + [anon_sym_LPAREN2] = ACTIONS(3522), + [anon_sym_BANG] = ACTIONS(3522), + [anon_sym_TILDE] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3520), + [anon_sym_PLUS] = ACTIONS(3520), + [anon_sym_STAR] = ACTIONS(3522), + [anon_sym_AMP_AMP] = ACTIONS(3522), + [anon_sym_AMP] = ACTIONS(3520), + [anon_sym_SEMI] = ACTIONS(3522), + [anon_sym___extension__] = ACTIONS(3520), + [anon_sym_typedef] = ACTIONS(3520), + [anon_sym_virtual] = ACTIONS(3520), + [anon_sym_extern] = ACTIONS(3520), + [anon_sym___attribute__] = ACTIONS(3520), + [anon_sym___attribute] = ACTIONS(3520), + [anon_sym_using] = ACTIONS(3520), + [anon_sym_COLON_COLON] = ACTIONS(3522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3522), + [anon_sym___declspec] = ACTIONS(3520), + [anon_sym___based] = ACTIONS(3520), + [anon_sym___cdecl] = ACTIONS(3520), + [anon_sym___clrcall] = ACTIONS(3520), + [anon_sym___stdcall] = ACTIONS(3520), + [anon_sym___fastcall] = ACTIONS(3520), + [anon_sym___thiscall] = ACTIONS(3520), + [anon_sym___vectorcall] = ACTIONS(3520), + [anon_sym_LBRACE] = ACTIONS(3522), + [anon_sym_RBRACE] = ACTIONS(3522), + [anon_sym_signed] = ACTIONS(3520), + [anon_sym_unsigned] = ACTIONS(3520), + [anon_sym_long] = ACTIONS(3520), + [anon_sym_short] = ACTIONS(3520), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_static] = ACTIONS(3520), + [anon_sym_register] = ACTIONS(3520), + [anon_sym_inline] = ACTIONS(3520), + [anon_sym___inline] = ACTIONS(3520), + [anon_sym___inline__] = ACTIONS(3520), + [anon_sym___forceinline] = ACTIONS(3520), + [anon_sym_thread_local] = ACTIONS(3520), + [anon_sym___thread] = ACTIONS(3520), + [anon_sym_const] = ACTIONS(3520), + [anon_sym_constexpr] = ACTIONS(3520), + [anon_sym_volatile] = ACTIONS(3520), + [anon_sym_restrict] = ACTIONS(3520), + [anon_sym___restrict__] = ACTIONS(3520), + [anon_sym__Atomic] = ACTIONS(3520), + [anon_sym__Noreturn] = ACTIONS(3520), + [anon_sym_noreturn] = ACTIONS(3520), + [anon_sym__Nonnull] = ACTIONS(3520), + [anon_sym_mutable] = ACTIONS(3520), + [anon_sym_constinit] = ACTIONS(3520), + [anon_sym_consteval] = ACTIONS(3520), + [anon_sym_alignas] = ACTIONS(3520), + [anon_sym__Alignas] = ACTIONS(3520), + [sym_primitive_type] = ACTIONS(3520), + [anon_sym_enum] = ACTIONS(3520), + [anon_sym_class] = ACTIONS(3520), + [anon_sym_struct] = ACTIONS(3520), + [anon_sym_union] = ACTIONS(3520), + [anon_sym_if] = ACTIONS(3520), + [anon_sym_else] = ACTIONS(3520), + [anon_sym_switch] = ACTIONS(3520), + [anon_sym_case] = ACTIONS(3520), + [anon_sym_default] = ACTIONS(3520), + [anon_sym_while] = ACTIONS(3520), + [anon_sym_do] = ACTIONS(3520), + [anon_sym_for] = ACTIONS(3520), + [anon_sym_return] = ACTIONS(3520), + [anon_sym_break] = ACTIONS(3520), + [anon_sym_continue] = ACTIONS(3520), + [anon_sym_goto] = ACTIONS(3520), + [anon_sym___try] = ACTIONS(3520), + [anon_sym___leave] = ACTIONS(3520), + [anon_sym_not] = ACTIONS(3520), + [anon_sym_compl] = ACTIONS(3520), + [anon_sym_DASH_DASH] = ACTIONS(3522), + [anon_sym_PLUS_PLUS] = ACTIONS(3522), + [anon_sym_sizeof] = ACTIONS(3520), + [anon_sym___alignof__] = ACTIONS(3520), + [anon_sym___alignof] = ACTIONS(3520), + [anon_sym__alignof] = ACTIONS(3520), + [anon_sym_alignof] = ACTIONS(3520), + [anon_sym__Alignof] = ACTIONS(3520), + [anon_sym_offsetof] = ACTIONS(3520), + [anon_sym__Generic] = ACTIONS(3520), + [anon_sym_typename] = ACTIONS(3520), + [anon_sym_asm] = ACTIONS(3520), + [anon_sym___asm__] = ACTIONS(3520), + [anon_sym___asm] = ACTIONS(3520), + [sym_number_literal] = ACTIONS(3522), + [anon_sym_L_SQUOTE] = ACTIONS(3522), + [anon_sym_u_SQUOTE] = ACTIONS(3522), + [anon_sym_U_SQUOTE] = ACTIONS(3522), + [anon_sym_u8_SQUOTE] = ACTIONS(3522), + [anon_sym_SQUOTE] = ACTIONS(3522), + [anon_sym_L_DQUOTE] = ACTIONS(3522), + [anon_sym_u_DQUOTE] = ACTIONS(3522), + [anon_sym_U_DQUOTE] = ACTIONS(3522), + [anon_sym_u8_DQUOTE] = ACTIONS(3522), + [anon_sym_DQUOTE] = ACTIONS(3522), + [sym_true] = ACTIONS(3520), + [sym_false] = ACTIONS(3520), + [anon_sym_NULL] = ACTIONS(3520), + [anon_sym_nullptr] = ACTIONS(3520), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3520), + [anon_sym_decltype] = ACTIONS(3520), + [anon_sym_explicit] = ACTIONS(3520), + [anon_sym_export] = ACTIONS(3520), + [anon_sym_import] = ACTIONS(3520), + [anon_sym_template] = ACTIONS(3520), + [anon_sym_operator] = ACTIONS(3520), + [anon_sym_try] = ACTIONS(3520), + [anon_sym_delete] = ACTIONS(3520), + [anon_sym_throw] = ACTIONS(3520), + [anon_sym_namespace] = ACTIONS(3520), + [anon_sym_static_assert] = ACTIONS(3520), + [anon_sym_concept] = ACTIONS(3520), + [anon_sym_co_return] = ACTIONS(3520), + [anon_sym_co_yield] = ACTIONS(3520), + [anon_sym_R_DQUOTE] = ACTIONS(3522), + [anon_sym_LR_DQUOTE] = ACTIONS(3522), + [anon_sym_uR_DQUOTE] = ACTIONS(3522), + [anon_sym_UR_DQUOTE] = ACTIONS(3522), + [anon_sym_u8R_DQUOTE] = ACTIONS(3522), + [anon_sym_co_await] = ACTIONS(3520), + [anon_sym_new] = ACTIONS(3520), + [anon_sym_requires] = ACTIONS(3520), + [anon_sym_CARET_CARET] = ACTIONS(3522), + [anon_sym_LBRACK_COLON] = ACTIONS(3522), + [sym_this] = ACTIONS(3520), }, - [STATE(899)] = { - [sym_identifier] = ACTIONS(3922), - [aux_sym_preproc_include_token1] = ACTIONS(3922), - [aux_sym_preproc_def_token1] = ACTIONS(3922), - [aux_sym_preproc_if_token1] = ACTIONS(3922), - [aux_sym_preproc_if_token2] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), - [sym_preproc_directive] = ACTIONS(3922), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3924), - [anon_sym_TILDE] = ACTIONS(3924), - [anon_sym_DASH] = ACTIONS(3922), - [anon_sym_PLUS] = ACTIONS(3922), - [anon_sym_STAR] = ACTIONS(3924), - [anon_sym_AMP_AMP] = ACTIONS(3924), - [anon_sym_AMP] = ACTIONS(3922), - [anon_sym_SEMI] = ACTIONS(3924), - [anon_sym___extension__] = ACTIONS(3922), - [anon_sym_typedef] = ACTIONS(3922), - [anon_sym_virtual] = ACTIONS(3922), - [anon_sym_extern] = ACTIONS(3922), - [anon_sym___attribute__] = ACTIONS(3922), - [anon_sym___attribute] = ACTIONS(3922), - [anon_sym_using] = ACTIONS(3922), - [anon_sym_COLON_COLON] = ACTIONS(3924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), - [anon_sym___declspec] = ACTIONS(3922), - [anon_sym___based] = ACTIONS(3922), - [anon_sym___cdecl] = ACTIONS(3922), - [anon_sym___clrcall] = ACTIONS(3922), - [anon_sym___stdcall] = ACTIONS(3922), - [anon_sym___fastcall] = ACTIONS(3922), - [anon_sym___thiscall] = ACTIONS(3922), - [anon_sym___vectorcall] = ACTIONS(3922), - [anon_sym_LBRACE] = ACTIONS(3924), - [anon_sym_signed] = ACTIONS(3922), - [anon_sym_unsigned] = ACTIONS(3922), - [anon_sym_long] = ACTIONS(3922), - [anon_sym_short] = ACTIONS(3922), - [anon_sym_LBRACK] = ACTIONS(3922), - [anon_sym_static] = ACTIONS(3922), - [anon_sym_register] = ACTIONS(3922), - [anon_sym_inline] = ACTIONS(3922), - [anon_sym___inline] = ACTIONS(3922), - [anon_sym___inline__] = ACTIONS(3922), - [anon_sym___forceinline] = ACTIONS(3922), - [anon_sym_thread_local] = ACTIONS(3922), - [anon_sym___thread] = ACTIONS(3922), - [anon_sym_const] = ACTIONS(3922), - [anon_sym_constexpr] = ACTIONS(3922), - [anon_sym_volatile] = ACTIONS(3922), - [anon_sym_restrict] = ACTIONS(3922), - [anon_sym___restrict__] = ACTIONS(3922), - [anon_sym__Atomic] = ACTIONS(3922), - [anon_sym__Noreturn] = ACTIONS(3922), - [anon_sym_noreturn] = ACTIONS(3922), - [anon_sym__Nonnull] = ACTIONS(3922), - [anon_sym_mutable] = ACTIONS(3922), - [anon_sym_constinit] = ACTIONS(3922), - [anon_sym_consteval] = ACTIONS(3922), - [anon_sym_alignas] = ACTIONS(3922), - [anon_sym__Alignas] = ACTIONS(3922), - [sym_primitive_type] = ACTIONS(3922), - [anon_sym_enum] = ACTIONS(3922), - [anon_sym_class] = ACTIONS(3922), - [anon_sym_struct] = ACTIONS(3922), - [anon_sym_union] = ACTIONS(3922), - [anon_sym_if] = ACTIONS(3922), - [anon_sym_switch] = ACTIONS(3922), - [anon_sym_case] = ACTIONS(3922), - [anon_sym_default] = ACTIONS(3922), - [anon_sym_while] = ACTIONS(3922), - [anon_sym_do] = ACTIONS(3922), - [anon_sym_for] = ACTIONS(3922), - [anon_sym_return] = ACTIONS(3922), - [anon_sym_break] = ACTIONS(3922), - [anon_sym_continue] = ACTIONS(3922), - [anon_sym_goto] = ACTIONS(3922), - [anon_sym___try] = ACTIONS(3922), - [anon_sym___leave] = ACTIONS(3922), - [anon_sym_not] = ACTIONS(3922), - [anon_sym_compl] = ACTIONS(3922), - [anon_sym_DASH_DASH] = ACTIONS(3924), - [anon_sym_PLUS_PLUS] = ACTIONS(3924), - [anon_sym_sizeof] = ACTIONS(3922), - [anon_sym___alignof__] = ACTIONS(3922), - [anon_sym___alignof] = ACTIONS(3922), - [anon_sym__alignof] = ACTIONS(3922), - [anon_sym_alignof] = ACTIONS(3922), - [anon_sym__Alignof] = ACTIONS(3922), - [anon_sym_offsetof] = ACTIONS(3922), - [anon_sym__Generic] = ACTIONS(3922), - [anon_sym_typename] = ACTIONS(3922), - [anon_sym_asm] = ACTIONS(3922), - [anon_sym___asm__] = ACTIONS(3922), - [anon_sym___asm] = ACTIONS(3922), - [sym_number_literal] = ACTIONS(3924), - [anon_sym_L_SQUOTE] = ACTIONS(3924), - [anon_sym_u_SQUOTE] = ACTIONS(3924), - [anon_sym_U_SQUOTE] = ACTIONS(3924), - [anon_sym_u8_SQUOTE] = ACTIONS(3924), - [anon_sym_SQUOTE] = ACTIONS(3924), - [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_true] = ACTIONS(3922), - [sym_false] = ACTIONS(3922), - [anon_sym_NULL] = ACTIONS(3922), - [anon_sym_nullptr] = ACTIONS(3922), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3922), - [anon_sym_decltype] = ACTIONS(3922), - [anon_sym_explicit] = ACTIONS(3922), - [anon_sym_template] = ACTIONS(3922), - [anon_sym_operator] = ACTIONS(3922), - [anon_sym_try] = ACTIONS(3922), - [anon_sym_delete] = ACTIONS(3922), - [anon_sym_throw] = ACTIONS(3922), - [anon_sym_namespace] = ACTIONS(3922), - [anon_sym_static_assert] = ACTIONS(3922), - [anon_sym_concept] = ACTIONS(3922), - [anon_sym_co_return] = ACTIONS(3922), - [anon_sym_co_yield] = ACTIONS(3922), - [anon_sym_R_DQUOTE] = ACTIONS(3924), - [anon_sym_LR_DQUOTE] = ACTIONS(3924), - [anon_sym_uR_DQUOTE] = ACTIONS(3924), - [anon_sym_UR_DQUOTE] = ACTIONS(3924), - [anon_sym_u8R_DQUOTE] = ACTIONS(3924), - [anon_sym_co_await] = ACTIONS(3922), - [anon_sym_new] = ACTIONS(3922), - [anon_sym_requires] = ACTIONS(3922), - [anon_sym_CARET_CARET] = ACTIONS(3924), - [anon_sym_LBRACK_COLON] = ACTIONS(3924), - [sym_this] = ACTIONS(3922), + [STATE(773)] = { + [sym_identifier] = ACTIONS(3163), + [aux_sym_preproc_include_token1] = ACTIONS(3163), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [anon_sym_COMMA] = ACTIONS(3488), + [aux_sym_preproc_if_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), + [sym_preproc_directive] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3488), + [anon_sym___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_extern] = ACTIONS(3163), + [anon_sym___attribute__] = ACTIONS(3163), + [anon_sym___attribute] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3163), + [anon_sym___based] = ACTIONS(3163), + [anon_sym___cdecl] = ACTIONS(3163), + [anon_sym___clrcall] = ACTIONS(3163), + [anon_sym___stdcall] = ACTIONS(3163), + [anon_sym___fastcall] = ACTIONS(3163), + [anon_sym___thiscall] = ACTIONS(3163), + [anon_sym___vectorcall] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_RBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym___inline] = ACTIONS(3163), + [anon_sym___inline__] = ACTIONS(3163), + [anon_sym___forceinline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym___thread] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym___restrict__] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym__Noreturn] = ACTIONS(3163), + [anon_sym_noreturn] = ACTIONS(3163), + [anon_sym__Nonnull] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym__Alignas] = ACTIONS(3163), + [sym_primitive_type] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_switch] = ACTIONS(3163), + [anon_sym_case] = ACTIONS(3163), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_goto] = ACTIONS(3163), + [anon_sym___try] = ACTIONS(3163), + [anon_sym___leave] = ACTIONS(3163), + [anon_sym_not] = ACTIONS(3163), + [anon_sym_compl] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3163), + [anon_sym___alignof__] = ACTIONS(3163), + [anon_sym___alignof] = ACTIONS(3163), + [anon_sym__alignof] = ACTIONS(3163), + [anon_sym_alignof] = ACTIONS(3163), + [anon_sym__Alignof] = ACTIONS(3163), + [anon_sym_offsetof] = ACTIONS(3163), + [anon_sym__Generic] = ACTIONS(3163), + [anon_sym_typename] = ACTIONS(3163), + [anon_sym_asm] = ACTIONS(3163), + [anon_sym___asm__] = ACTIONS(3163), + [anon_sym___asm] = ACTIONS(3163), + [sym_number_literal] = ACTIONS(3161), + [anon_sym_L_SQUOTE] = ACTIONS(3161), + [anon_sym_u_SQUOTE] = ACTIONS(3161), + [anon_sym_U_SQUOTE] = ACTIONS(3161), + [anon_sym_u8_SQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_L_DQUOTE] = ACTIONS(3161), + [anon_sym_u_DQUOTE] = ACTIONS(3161), + [anon_sym_U_DQUOTE] = ACTIONS(3161), + [anon_sym_u8_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [anon_sym_NULL] = ACTIONS(3163), + [anon_sym_nullptr] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_export] = ACTIONS(3163), + [anon_sym_import] = ACTIONS(3163), + [anon_sym_template] = ACTIONS(3163), + [anon_sym_operator] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_delete] = ACTIONS(3163), + [anon_sym_throw] = ACTIONS(3163), + [anon_sym_namespace] = ACTIONS(3163), + [anon_sym_static_assert] = ACTIONS(3163), + [anon_sym_concept] = ACTIONS(3163), + [anon_sym_co_return] = ACTIONS(3163), + [anon_sym_co_yield] = ACTIONS(3163), + [anon_sym_R_DQUOTE] = ACTIONS(3161), + [anon_sym_LR_DQUOTE] = ACTIONS(3161), + [anon_sym_uR_DQUOTE] = ACTIONS(3161), + [anon_sym_UR_DQUOTE] = ACTIONS(3161), + [anon_sym_u8R_DQUOTE] = ACTIONS(3161), + [anon_sym_co_await] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_requires] = ACTIONS(3163), + [anon_sym_CARET_CARET] = ACTIONS(3161), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), + [sym_this] = ACTIONS(3163), }, - [STATE(900)] = { - [sym_identifier] = ACTIONS(3922), - [aux_sym_preproc_include_token1] = ACTIONS(3922), - [aux_sym_preproc_def_token1] = ACTIONS(3922), - [aux_sym_preproc_if_token1] = ACTIONS(3922), - [aux_sym_preproc_if_token2] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), - [sym_preproc_directive] = ACTIONS(3922), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_BANG] = ACTIONS(3924), - [anon_sym_TILDE] = ACTIONS(3924), - [anon_sym_DASH] = ACTIONS(3922), - [anon_sym_PLUS] = ACTIONS(3922), - [anon_sym_STAR] = ACTIONS(3924), - [anon_sym_AMP_AMP] = ACTIONS(3924), - [anon_sym_AMP] = ACTIONS(3922), - [anon_sym_SEMI] = ACTIONS(3924), - [anon_sym___extension__] = ACTIONS(3922), - [anon_sym_typedef] = ACTIONS(3922), - [anon_sym_virtual] = ACTIONS(3922), - [anon_sym_extern] = ACTIONS(3922), - [anon_sym___attribute__] = ACTIONS(3922), - [anon_sym___attribute] = ACTIONS(3922), - [anon_sym_using] = ACTIONS(3922), - [anon_sym_COLON_COLON] = ACTIONS(3924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), - [anon_sym___declspec] = ACTIONS(3922), - [anon_sym___based] = ACTIONS(3922), - [anon_sym___cdecl] = ACTIONS(3922), - [anon_sym___clrcall] = ACTIONS(3922), - [anon_sym___stdcall] = ACTIONS(3922), - [anon_sym___fastcall] = ACTIONS(3922), - [anon_sym___thiscall] = ACTIONS(3922), - [anon_sym___vectorcall] = ACTIONS(3922), - [anon_sym_LBRACE] = ACTIONS(3924), - [anon_sym_signed] = ACTIONS(3922), - [anon_sym_unsigned] = ACTIONS(3922), - [anon_sym_long] = ACTIONS(3922), - [anon_sym_short] = ACTIONS(3922), - [anon_sym_LBRACK] = ACTIONS(3922), - [anon_sym_static] = ACTIONS(3922), - [anon_sym_register] = ACTIONS(3922), - [anon_sym_inline] = ACTIONS(3922), - [anon_sym___inline] = ACTIONS(3922), - [anon_sym___inline__] = ACTIONS(3922), - [anon_sym___forceinline] = ACTIONS(3922), - [anon_sym_thread_local] = ACTIONS(3922), - [anon_sym___thread] = ACTIONS(3922), - [anon_sym_const] = ACTIONS(3922), - [anon_sym_constexpr] = ACTIONS(3922), - [anon_sym_volatile] = ACTIONS(3922), - [anon_sym_restrict] = ACTIONS(3922), - [anon_sym___restrict__] = ACTIONS(3922), - [anon_sym__Atomic] = ACTIONS(3922), - [anon_sym__Noreturn] = ACTIONS(3922), - [anon_sym_noreturn] = ACTIONS(3922), - [anon_sym__Nonnull] = ACTIONS(3922), - [anon_sym_mutable] = ACTIONS(3922), - [anon_sym_constinit] = ACTIONS(3922), - [anon_sym_consteval] = ACTIONS(3922), - [anon_sym_alignas] = ACTIONS(3922), - [anon_sym__Alignas] = ACTIONS(3922), - [sym_primitive_type] = ACTIONS(3922), - [anon_sym_enum] = ACTIONS(3922), - [anon_sym_class] = ACTIONS(3922), - [anon_sym_struct] = ACTIONS(3922), - [anon_sym_union] = ACTIONS(3922), - [anon_sym_if] = ACTIONS(3922), - [anon_sym_switch] = ACTIONS(3922), - [anon_sym_case] = ACTIONS(3922), - [anon_sym_default] = ACTIONS(3922), - [anon_sym_while] = ACTIONS(3922), - [anon_sym_do] = ACTIONS(3922), - [anon_sym_for] = ACTIONS(3922), - [anon_sym_return] = ACTIONS(3922), - [anon_sym_break] = ACTIONS(3922), - [anon_sym_continue] = ACTIONS(3922), - [anon_sym_goto] = ACTIONS(3922), - [anon_sym___try] = ACTIONS(3922), - [anon_sym___leave] = ACTIONS(3922), - [anon_sym_not] = ACTIONS(3922), - [anon_sym_compl] = ACTIONS(3922), - [anon_sym_DASH_DASH] = ACTIONS(3924), - [anon_sym_PLUS_PLUS] = ACTIONS(3924), - [anon_sym_sizeof] = ACTIONS(3922), - [anon_sym___alignof__] = ACTIONS(3922), - [anon_sym___alignof] = ACTIONS(3922), - [anon_sym__alignof] = ACTIONS(3922), - [anon_sym_alignof] = ACTIONS(3922), - [anon_sym__Alignof] = ACTIONS(3922), - [anon_sym_offsetof] = ACTIONS(3922), - [anon_sym__Generic] = ACTIONS(3922), - [anon_sym_typename] = ACTIONS(3922), - [anon_sym_asm] = ACTIONS(3922), - [anon_sym___asm__] = ACTIONS(3922), - [anon_sym___asm] = ACTIONS(3922), - [sym_number_literal] = ACTIONS(3924), - [anon_sym_L_SQUOTE] = ACTIONS(3924), - [anon_sym_u_SQUOTE] = ACTIONS(3924), - [anon_sym_U_SQUOTE] = ACTIONS(3924), - [anon_sym_u8_SQUOTE] = ACTIONS(3924), - [anon_sym_SQUOTE] = ACTIONS(3924), - [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_true] = ACTIONS(3922), - [sym_false] = ACTIONS(3922), - [anon_sym_NULL] = ACTIONS(3922), - [anon_sym_nullptr] = ACTIONS(3922), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3922), - [anon_sym_decltype] = ACTIONS(3922), - [anon_sym_explicit] = ACTIONS(3922), - [anon_sym_template] = ACTIONS(3922), - [anon_sym_operator] = ACTIONS(3922), - [anon_sym_try] = ACTIONS(3922), - [anon_sym_delete] = ACTIONS(3922), - [anon_sym_throw] = ACTIONS(3922), - [anon_sym_namespace] = ACTIONS(3922), - [anon_sym_static_assert] = ACTIONS(3922), - [anon_sym_concept] = ACTIONS(3922), - [anon_sym_co_return] = ACTIONS(3922), - [anon_sym_co_yield] = ACTIONS(3922), - [anon_sym_R_DQUOTE] = ACTIONS(3924), - [anon_sym_LR_DQUOTE] = ACTIONS(3924), - [anon_sym_uR_DQUOTE] = ACTIONS(3924), - [anon_sym_UR_DQUOTE] = ACTIONS(3924), - [anon_sym_u8R_DQUOTE] = ACTIONS(3924), - [anon_sym_co_await] = ACTIONS(3922), - [anon_sym_new] = ACTIONS(3922), - [anon_sym_requires] = ACTIONS(3922), - [anon_sym_CARET_CARET] = ACTIONS(3924), - [anon_sym_LBRACK_COLON] = ACTIONS(3924), - [sym_this] = ACTIONS(3922), + [STATE(774)] = { + [sym_identifier] = ACTIONS(3670), + [aux_sym_preproc_include_token1] = ACTIONS(3670), + [aux_sym_preproc_def_token1] = ACTIONS(3670), + [aux_sym_preproc_if_token1] = ACTIONS(3670), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3670), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3670), + [sym_preproc_directive] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3672), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_TILDE] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_STAR] = ACTIONS(3672), + [anon_sym_AMP_AMP] = ACTIONS(3672), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym___extension__] = ACTIONS(3670), + [anon_sym_typedef] = ACTIONS(3670), + [anon_sym_virtual] = ACTIONS(3670), + [anon_sym_extern] = ACTIONS(3670), + [anon_sym___attribute__] = ACTIONS(3670), + [anon_sym___attribute] = ACTIONS(3670), + [anon_sym_using] = ACTIONS(3670), + [anon_sym_COLON_COLON] = ACTIONS(3672), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3672), + [anon_sym___declspec] = ACTIONS(3670), + [anon_sym___based] = ACTIONS(3670), + [anon_sym___cdecl] = ACTIONS(3670), + [anon_sym___clrcall] = ACTIONS(3670), + [anon_sym___stdcall] = ACTIONS(3670), + [anon_sym___fastcall] = ACTIONS(3670), + [anon_sym___thiscall] = ACTIONS(3670), + [anon_sym___vectorcall] = ACTIONS(3670), + [anon_sym_LBRACE] = ACTIONS(3672), + [anon_sym_RBRACE] = ACTIONS(3672), + [anon_sym_signed] = ACTIONS(3670), + [anon_sym_unsigned] = ACTIONS(3670), + [anon_sym_long] = ACTIONS(3670), + [anon_sym_short] = ACTIONS(3670), + [anon_sym_LBRACK] = ACTIONS(3670), + [anon_sym_static] = ACTIONS(3670), + [anon_sym_register] = ACTIONS(3670), + [anon_sym_inline] = ACTIONS(3670), + [anon_sym___inline] = ACTIONS(3670), + [anon_sym___inline__] = ACTIONS(3670), + [anon_sym___forceinline] = ACTIONS(3670), + [anon_sym_thread_local] = ACTIONS(3670), + [anon_sym___thread] = ACTIONS(3670), + [anon_sym_const] = ACTIONS(3670), + [anon_sym_constexpr] = ACTIONS(3670), + [anon_sym_volatile] = ACTIONS(3670), + [anon_sym_restrict] = ACTIONS(3670), + [anon_sym___restrict__] = ACTIONS(3670), + [anon_sym__Atomic] = ACTIONS(3670), + [anon_sym__Noreturn] = ACTIONS(3670), + [anon_sym_noreturn] = ACTIONS(3670), + [anon_sym__Nonnull] = ACTIONS(3670), + [anon_sym_mutable] = ACTIONS(3670), + [anon_sym_constinit] = ACTIONS(3670), + [anon_sym_consteval] = ACTIONS(3670), + [anon_sym_alignas] = ACTIONS(3670), + [anon_sym__Alignas] = ACTIONS(3670), + [sym_primitive_type] = ACTIONS(3670), + [anon_sym_enum] = ACTIONS(3670), + [anon_sym_class] = ACTIONS(3670), + [anon_sym_struct] = ACTIONS(3670), + [anon_sym_union] = ACTIONS(3670), + [anon_sym_if] = ACTIONS(3670), + [anon_sym_else] = ACTIONS(3670), + [anon_sym_switch] = ACTIONS(3670), + [anon_sym_case] = ACTIONS(3670), + [anon_sym_default] = ACTIONS(3670), + [anon_sym_while] = ACTIONS(3670), + [anon_sym_do] = ACTIONS(3670), + [anon_sym_for] = ACTIONS(3670), + [anon_sym_return] = ACTIONS(3670), + [anon_sym_break] = ACTIONS(3670), + [anon_sym_continue] = ACTIONS(3670), + [anon_sym_goto] = ACTIONS(3670), + [anon_sym___try] = ACTIONS(3670), + [anon_sym___leave] = ACTIONS(3670), + [anon_sym_not] = ACTIONS(3670), + [anon_sym_compl] = ACTIONS(3670), + [anon_sym_DASH_DASH] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3672), + [anon_sym_sizeof] = ACTIONS(3670), + [anon_sym___alignof__] = ACTIONS(3670), + [anon_sym___alignof] = ACTIONS(3670), + [anon_sym__alignof] = ACTIONS(3670), + [anon_sym_alignof] = ACTIONS(3670), + [anon_sym__Alignof] = ACTIONS(3670), + [anon_sym_offsetof] = ACTIONS(3670), + [anon_sym__Generic] = ACTIONS(3670), + [anon_sym_typename] = ACTIONS(3670), + [anon_sym_asm] = ACTIONS(3670), + [anon_sym___asm__] = ACTIONS(3670), + [anon_sym___asm] = ACTIONS(3670), + [sym_number_literal] = ACTIONS(3672), + [anon_sym_L_SQUOTE] = ACTIONS(3672), + [anon_sym_u_SQUOTE] = ACTIONS(3672), + [anon_sym_U_SQUOTE] = ACTIONS(3672), + [anon_sym_u8_SQUOTE] = ACTIONS(3672), + [anon_sym_SQUOTE] = ACTIONS(3672), + [anon_sym_L_DQUOTE] = ACTIONS(3672), + [anon_sym_u_DQUOTE] = ACTIONS(3672), + [anon_sym_U_DQUOTE] = ACTIONS(3672), + [anon_sym_u8_DQUOTE] = ACTIONS(3672), + [anon_sym_DQUOTE] = ACTIONS(3672), + [sym_true] = ACTIONS(3670), + [sym_false] = ACTIONS(3670), + [anon_sym_NULL] = ACTIONS(3670), + [anon_sym_nullptr] = ACTIONS(3670), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3670), + [anon_sym_decltype] = ACTIONS(3670), + [anon_sym_explicit] = ACTIONS(3670), + [anon_sym_export] = ACTIONS(3670), + [anon_sym_import] = ACTIONS(3670), + [anon_sym_template] = ACTIONS(3670), + [anon_sym_operator] = ACTIONS(3670), + [anon_sym_try] = ACTIONS(3670), + [anon_sym_delete] = ACTIONS(3670), + [anon_sym_throw] = ACTIONS(3670), + [anon_sym_namespace] = ACTIONS(3670), + [anon_sym_static_assert] = ACTIONS(3670), + [anon_sym_concept] = ACTIONS(3670), + [anon_sym_co_return] = ACTIONS(3670), + [anon_sym_co_yield] = ACTIONS(3670), + [anon_sym_R_DQUOTE] = ACTIONS(3672), + [anon_sym_LR_DQUOTE] = ACTIONS(3672), + [anon_sym_uR_DQUOTE] = ACTIONS(3672), + [anon_sym_UR_DQUOTE] = ACTIONS(3672), + [anon_sym_u8R_DQUOTE] = ACTIONS(3672), + [anon_sym_co_await] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3670), + [anon_sym_requires] = ACTIONS(3670), + [anon_sym_CARET_CARET] = ACTIONS(3672), + [anon_sym_LBRACK_COLON] = ACTIONS(3672), + [sym_this] = ACTIONS(3670), }, - [STATE(901)] = { - [sym_identifier] = ACTIONS(4172), - [aux_sym_preproc_include_token1] = ACTIONS(4172), - [aux_sym_preproc_def_token1] = ACTIONS(4172), - [aux_sym_preproc_if_token1] = ACTIONS(4172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4172), - [sym_preproc_directive] = ACTIONS(4172), - [anon_sym_LPAREN2] = ACTIONS(4174), - [anon_sym_BANG] = ACTIONS(4174), - [anon_sym_TILDE] = ACTIONS(4174), - [anon_sym_DASH] = ACTIONS(4172), - [anon_sym_PLUS] = ACTIONS(4172), - [anon_sym_STAR] = ACTIONS(4174), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_AMP] = ACTIONS(4172), - [anon_sym_SEMI] = ACTIONS(4174), - [anon_sym___extension__] = ACTIONS(4172), - [anon_sym_typedef] = ACTIONS(4172), - [anon_sym_virtual] = ACTIONS(4172), - [anon_sym_extern] = ACTIONS(4172), - [anon_sym___attribute__] = ACTIONS(4172), - [anon_sym___attribute] = ACTIONS(4172), - [anon_sym_using] = ACTIONS(4172), - [anon_sym_COLON_COLON] = ACTIONS(4174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4174), - [anon_sym___declspec] = ACTIONS(4172), - [anon_sym___based] = ACTIONS(4172), - [anon_sym___cdecl] = ACTIONS(4172), - [anon_sym___clrcall] = ACTIONS(4172), - [anon_sym___stdcall] = ACTIONS(4172), - [anon_sym___fastcall] = ACTIONS(4172), - [anon_sym___thiscall] = ACTIONS(4172), - [anon_sym___vectorcall] = ACTIONS(4172), - [anon_sym_LBRACE] = ACTIONS(4174), - [anon_sym_RBRACE] = ACTIONS(4174), - [anon_sym_signed] = ACTIONS(4172), - [anon_sym_unsigned] = ACTIONS(4172), - [anon_sym_long] = ACTIONS(4172), - [anon_sym_short] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4172), - [anon_sym_static] = ACTIONS(4172), - [anon_sym_register] = ACTIONS(4172), - [anon_sym_inline] = ACTIONS(4172), - [anon_sym___inline] = ACTIONS(4172), - [anon_sym___inline__] = ACTIONS(4172), - [anon_sym___forceinline] = ACTIONS(4172), - [anon_sym_thread_local] = ACTIONS(4172), - [anon_sym___thread] = ACTIONS(4172), - [anon_sym_const] = ACTIONS(4172), - [anon_sym_constexpr] = ACTIONS(4172), - [anon_sym_volatile] = ACTIONS(4172), - [anon_sym_restrict] = ACTIONS(4172), - [anon_sym___restrict__] = ACTIONS(4172), - [anon_sym__Atomic] = ACTIONS(4172), - [anon_sym__Noreturn] = ACTIONS(4172), - [anon_sym_noreturn] = ACTIONS(4172), - [anon_sym__Nonnull] = ACTIONS(4172), - [anon_sym_mutable] = ACTIONS(4172), - [anon_sym_constinit] = ACTIONS(4172), - [anon_sym_consteval] = ACTIONS(4172), - [anon_sym_alignas] = ACTIONS(4172), - [anon_sym__Alignas] = ACTIONS(4172), - [sym_primitive_type] = ACTIONS(4172), - [anon_sym_enum] = ACTIONS(4172), - [anon_sym_class] = ACTIONS(4172), - [anon_sym_struct] = ACTIONS(4172), - [anon_sym_union] = ACTIONS(4172), - [anon_sym_if] = ACTIONS(4172), - [anon_sym_switch] = ACTIONS(4172), - [anon_sym_case] = ACTIONS(4172), - [anon_sym_default] = ACTIONS(4172), - [anon_sym_while] = ACTIONS(4172), - [anon_sym_do] = ACTIONS(4172), - [anon_sym_for] = ACTIONS(4172), - [anon_sym_return] = ACTIONS(4172), - [anon_sym_break] = ACTIONS(4172), - [anon_sym_continue] = ACTIONS(4172), - [anon_sym_goto] = ACTIONS(4172), - [anon_sym___try] = ACTIONS(4172), - [anon_sym___leave] = ACTIONS(4172), - [anon_sym_not] = ACTIONS(4172), - [anon_sym_compl] = ACTIONS(4172), - [anon_sym_DASH_DASH] = ACTIONS(4174), - [anon_sym_PLUS_PLUS] = ACTIONS(4174), - [anon_sym_sizeof] = ACTIONS(4172), - [anon_sym___alignof__] = ACTIONS(4172), - [anon_sym___alignof] = ACTIONS(4172), - [anon_sym__alignof] = ACTIONS(4172), - [anon_sym_alignof] = ACTIONS(4172), - [anon_sym__Alignof] = ACTIONS(4172), - [anon_sym_offsetof] = ACTIONS(4172), - [anon_sym__Generic] = ACTIONS(4172), - [anon_sym_typename] = ACTIONS(4172), - [anon_sym_asm] = ACTIONS(4172), - [anon_sym___asm__] = ACTIONS(4172), - [anon_sym___asm] = ACTIONS(4172), - [sym_number_literal] = ACTIONS(4174), - [anon_sym_L_SQUOTE] = ACTIONS(4174), - [anon_sym_u_SQUOTE] = ACTIONS(4174), - [anon_sym_U_SQUOTE] = ACTIONS(4174), - [anon_sym_u8_SQUOTE] = ACTIONS(4174), - [anon_sym_SQUOTE] = ACTIONS(4174), - [anon_sym_L_DQUOTE] = ACTIONS(4174), - [anon_sym_u_DQUOTE] = ACTIONS(4174), - [anon_sym_U_DQUOTE] = ACTIONS(4174), - [anon_sym_u8_DQUOTE] = ACTIONS(4174), - [anon_sym_DQUOTE] = ACTIONS(4174), - [sym_true] = ACTIONS(4172), - [sym_false] = ACTIONS(4172), - [anon_sym_NULL] = ACTIONS(4172), - [anon_sym_nullptr] = ACTIONS(4172), + [STATE(775)] = { + [sym_identifier] = ACTIONS(3524), + [aux_sym_preproc_include_token1] = ACTIONS(3524), + [aux_sym_preproc_def_token1] = ACTIONS(3524), + [aux_sym_preproc_if_token1] = ACTIONS(3524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3524), + [sym_preproc_directive] = ACTIONS(3524), + [anon_sym_LPAREN2] = ACTIONS(3526), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_TILDE] = ACTIONS(3526), + [anon_sym_DASH] = ACTIONS(3524), + [anon_sym_PLUS] = ACTIONS(3524), + [anon_sym_STAR] = ACTIONS(3526), + [anon_sym_AMP_AMP] = ACTIONS(3526), + [anon_sym_AMP] = ACTIONS(3524), + [anon_sym_SEMI] = ACTIONS(3526), + [anon_sym___extension__] = ACTIONS(3524), + [anon_sym_typedef] = ACTIONS(3524), + [anon_sym_virtual] = ACTIONS(3524), + [anon_sym_extern] = ACTIONS(3524), + [anon_sym___attribute__] = ACTIONS(3524), + [anon_sym___attribute] = ACTIONS(3524), + [anon_sym_using] = ACTIONS(3524), + [anon_sym_COLON_COLON] = ACTIONS(3526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3526), + [anon_sym___declspec] = ACTIONS(3524), + [anon_sym___based] = ACTIONS(3524), + [anon_sym___cdecl] = ACTIONS(3524), + [anon_sym___clrcall] = ACTIONS(3524), + [anon_sym___stdcall] = ACTIONS(3524), + [anon_sym___fastcall] = ACTIONS(3524), + [anon_sym___thiscall] = ACTIONS(3524), + [anon_sym___vectorcall] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(3526), + [anon_sym_RBRACE] = ACTIONS(3526), + [anon_sym_signed] = ACTIONS(3524), + [anon_sym_unsigned] = ACTIONS(3524), + [anon_sym_long] = ACTIONS(3524), + [anon_sym_short] = ACTIONS(3524), + [anon_sym_LBRACK] = ACTIONS(3524), + [anon_sym_static] = ACTIONS(3524), + [anon_sym_register] = ACTIONS(3524), + [anon_sym_inline] = ACTIONS(3524), + [anon_sym___inline] = ACTIONS(3524), + [anon_sym___inline__] = ACTIONS(3524), + [anon_sym___forceinline] = ACTIONS(3524), + [anon_sym_thread_local] = ACTIONS(3524), + [anon_sym___thread] = ACTIONS(3524), + [anon_sym_const] = ACTIONS(3524), + [anon_sym_constexpr] = ACTIONS(3524), + [anon_sym_volatile] = ACTIONS(3524), + [anon_sym_restrict] = ACTIONS(3524), + [anon_sym___restrict__] = ACTIONS(3524), + [anon_sym__Atomic] = ACTIONS(3524), + [anon_sym__Noreturn] = ACTIONS(3524), + [anon_sym_noreturn] = ACTIONS(3524), + [anon_sym__Nonnull] = ACTIONS(3524), + [anon_sym_mutable] = ACTIONS(3524), + [anon_sym_constinit] = ACTIONS(3524), + [anon_sym_consteval] = ACTIONS(3524), + [anon_sym_alignas] = ACTIONS(3524), + [anon_sym__Alignas] = ACTIONS(3524), + [sym_primitive_type] = ACTIONS(3524), + [anon_sym_enum] = ACTIONS(3524), + [anon_sym_class] = ACTIONS(3524), + [anon_sym_struct] = ACTIONS(3524), + [anon_sym_union] = ACTIONS(3524), + [anon_sym_if] = ACTIONS(3524), + [anon_sym_else] = ACTIONS(3524), + [anon_sym_switch] = ACTIONS(3524), + [anon_sym_case] = ACTIONS(3524), + [anon_sym_default] = ACTIONS(3524), + [anon_sym_while] = ACTIONS(3524), + [anon_sym_do] = ACTIONS(3524), + [anon_sym_for] = ACTIONS(3524), + [anon_sym_return] = ACTIONS(3524), + [anon_sym_break] = ACTIONS(3524), + [anon_sym_continue] = ACTIONS(3524), + [anon_sym_goto] = ACTIONS(3524), + [anon_sym___try] = ACTIONS(3524), + [anon_sym___leave] = ACTIONS(3524), + [anon_sym_not] = ACTIONS(3524), + [anon_sym_compl] = ACTIONS(3524), + [anon_sym_DASH_DASH] = ACTIONS(3526), + [anon_sym_PLUS_PLUS] = ACTIONS(3526), + [anon_sym_sizeof] = ACTIONS(3524), + [anon_sym___alignof__] = ACTIONS(3524), + [anon_sym___alignof] = ACTIONS(3524), + [anon_sym__alignof] = ACTIONS(3524), + [anon_sym_alignof] = ACTIONS(3524), + [anon_sym__Alignof] = ACTIONS(3524), + [anon_sym_offsetof] = ACTIONS(3524), + [anon_sym__Generic] = ACTIONS(3524), + [anon_sym_typename] = ACTIONS(3524), + [anon_sym_asm] = ACTIONS(3524), + [anon_sym___asm__] = ACTIONS(3524), + [anon_sym___asm] = ACTIONS(3524), + [sym_number_literal] = ACTIONS(3526), + [anon_sym_L_SQUOTE] = ACTIONS(3526), + [anon_sym_u_SQUOTE] = ACTIONS(3526), + [anon_sym_U_SQUOTE] = ACTIONS(3526), + [anon_sym_u8_SQUOTE] = ACTIONS(3526), + [anon_sym_SQUOTE] = ACTIONS(3526), + [anon_sym_L_DQUOTE] = ACTIONS(3526), + [anon_sym_u_DQUOTE] = ACTIONS(3526), + [anon_sym_U_DQUOTE] = ACTIONS(3526), + [anon_sym_u8_DQUOTE] = ACTIONS(3526), + [anon_sym_DQUOTE] = ACTIONS(3526), + [sym_true] = ACTIONS(3524), + [sym_false] = ACTIONS(3524), + [anon_sym_NULL] = ACTIONS(3524), + [anon_sym_nullptr] = ACTIONS(3524), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4172), - [anon_sym_decltype] = ACTIONS(4172), - [anon_sym_explicit] = ACTIONS(4172), - [anon_sym_template] = ACTIONS(4172), - [anon_sym_operator] = ACTIONS(4172), - [anon_sym_try] = ACTIONS(4172), - [anon_sym_delete] = ACTIONS(4172), - [anon_sym_throw] = ACTIONS(4172), - [anon_sym_namespace] = ACTIONS(4172), - [anon_sym_static_assert] = ACTIONS(4172), - [anon_sym_concept] = ACTIONS(4172), - [anon_sym_co_return] = ACTIONS(4172), - [anon_sym_co_yield] = ACTIONS(4172), - [anon_sym_R_DQUOTE] = ACTIONS(4174), - [anon_sym_LR_DQUOTE] = ACTIONS(4174), - [anon_sym_uR_DQUOTE] = ACTIONS(4174), - [anon_sym_UR_DQUOTE] = ACTIONS(4174), - [anon_sym_u8R_DQUOTE] = ACTIONS(4174), - [anon_sym_co_await] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_requires] = ACTIONS(4172), - [anon_sym_CARET_CARET] = ACTIONS(4174), - [anon_sym_LBRACK_COLON] = ACTIONS(4174), - [sym_this] = ACTIONS(4172), + [sym_auto] = ACTIONS(3524), + [anon_sym_decltype] = ACTIONS(3524), + [anon_sym_explicit] = ACTIONS(3524), + [anon_sym_export] = ACTIONS(3524), + [anon_sym_import] = ACTIONS(3524), + [anon_sym_template] = ACTIONS(3524), + [anon_sym_operator] = ACTIONS(3524), + [anon_sym_try] = ACTIONS(3524), + [anon_sym_delete] = ACTIONS(3524), + [anon_sym_throw] = ACTIONS(3524), + [anon_sym_namespace] = ACTIONS(3524), + [anon_sym_static_assert] = ACTIONS(3524), + [anon_sym_concept] = ACTIONS(3524), + [anon_sym_co_return] = ACTIONS(3524), + [anon_sym_co_yield] = ACTIONS(3524), + [anon_sym_R_DQUOTE] = ACTIONS(3526), + [anon_sym_LR_DQUOTE] = ACTIONS(3526), + [anon_sym_uR_DQUOTE] = ACTIONS(3526), + [anon_sym_UR_DQUOTE] = ACTIONS(3526), + [anon_sym_u8R_DQUOTE] = ACTIONS(3526), + [anon_sym_co_await] = ACTIONS(3524), + [anon_sym_new] = ACTIONS(3524), + [anon_sym_requires] = ACTIONS(3524), + [anon_sym_CARET_CARET] = ACTIONS(3526), + [anon_sym_LBRACK_COLON] = ACTIONS(3526), + [sym_this] = ACTIONS(3524), }, - [STATE(902)] = { - [sym_identifier] = ACTIONS(3954), - [aux_sym_preproc_include_token1] = ACTIONS(3954), - [aux_sym_preproc_def_token1] = ACTIONS(3954), - [aux_sym_preproc_if_token1] = ACTIONS(3954), - [aux_sym_preproc_if_token2] = ACTIONS(3954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3954), - [sym_preproc_directive] = ACTIONS(3954), - [anon_sym_LPAREN2] = ACTIONS(3956), - [anon_sym_BANG] = ACTIONS(3956), - [anon_sym_TILDE] = ACTIONS(3956), - [anon_sym_DASH] = ACTIONS(3954), - [anon_sym_PLUS] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3956), - [anon_sym_AMP_AMP] = ACTIONS(3956), - [anon_sym_AMP] = ACTIONS(3954), - [anon_sym_SEMI] = ACTIONS(3956), - [anon_sym___extension__] = ACTIONS(3954), - [anon_sym_typedef] = ACTIONS(3954), - [anon_sym_virtual] = ACTIONS(3954), - [anon_sym_extern] = ACTIONS(3954), - [anon_sym___attribute__] = ACTIONS(3954), - [anon_sym___attribute] = ACTIONS(3954), - [anon_sym_using] = ACTIONS(3954), - [anon_sym_COLON_COLON] = ACTIONS(3956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3956), - [anon_sym___declspec] = ACTIONS(3954), - [anon_sym___based] = ACTIONS(3954), - [anon_sym___cdecl] = ACTIONS(3954), - [anon_sym___clrcall] = ACTIONS(3954), - [anon_sym___stdcall] = ACTIONS(3954), - [anon_sym___fastcall] = ACTIONS(3954), - [anon_sym___thiscall] = ACTIONS(3954), - [anon_sym___vectorcall] = ACTIONS(3954), - [anon_sym_LBRACE] = ACTIONS(3956), - [anon_sym_signed] = ACTIONS(3954), - [anon_sym_unsigned] = ACTIONS(3954), - [anon_sym_long] = ACTIONS(3954), - [anon_sym_short] = ACTIONS(3954), - [anon_sym_LBRACK] = ACTIONS(3954), - [anon_sym_static] = ACTIONS(3954), - [anon_sym_register] = ACTIONS(3954), - [anon_sym_inline] = ACTIONS(3954), - [anon_sym___inline] = ACTIONS(3954), - [anon_sym___inline__] = ACTIONS(3954), - [anon_sym___forceinline] = ACTIONS(3954), - [anon_sym_thread_local] = ACTIONS(3954), - [anon_sym___thread] = ACTIONS(3954), - [anon_sym_const] = ACTIONS(3954), - [anon_sym_constexpr] = ACTIONS(3954), - [anon_sym_volatile] = ACTIONS(3954), - [anon_sym_restrict] = ACTIONS(3954), - [anon_sym___restrict__] = ACTIONS(3954), - [anon_sym__Atomic] = ACTIONS(3954), - [anon_sym__Noreturn] = ACTIONS(3954), - [anon_sym_noreturn] = ACTIONS(3954), - [anon_sym__Nonnull] = ACTIONS(3954), - [anon_sym_mutable] = ACTIONS(3954), - [anon_sym_constinit] = ACTIONS(3954), - [anon_sym_consteval] = ACTIONS(3954), - [anon_sym_alignas] = ACTIONS(3954), - [anon_sym__Alignas] = ACTIONS(3954), - [sym_primitive_type] = ACTIONS(3954), - [anon_sym_enum] = ACTIONS(3954), - [anon_sym_class] = ACTIONS(3954), - [anon_sym_struct] = ACTIONS(3954), - [anon_sym_union] = ACTIONS(3954), - [anon_sym_if] = ACTIONS(3954), - [anon_sym_switch] = ACTIONS(3954), - [anon_sym_case] = ACTIONS(3954), - [anon_sym_default] = ACTIONS(3954), - [anon_sym_while] = ACTIONS(3954), - [anon_sym_do] = ACTIONS(3954), - [anon_sym_for] = ACTIONS(3954), - [anon_sym_return] = ACTIONS(3954), - [anon_sym_break] = ACTIONS(3954), - [anon_sym_continue] = ACTIONS(3954), - [anon_sym_goto] = ACTIONS(3954), - [anon_sym___try] = ACTIONS(3954), - [anon_sym___leave] = ACTIONS(3954), - [anon_sym_not] = ACTIONS(3954), - [anon_sym_compl] = ACTIONS(3954), - [anon_sym_DASH_DASH] = ACTIONS(3956), - [anon_sym_PLUS_PLUS] = ACTIONS(3956), - [anon_sym_sizeof] = ACTIONS(3954), - [anon_sym___alignof__] = ACTIONS(3954), - [anon_sym___alignof] = ACTIONS(3954), - [anon_sym__alignof] = ACTIONS(3954), - [anon_sym_alignof] = ACTIONS(3954), - [anon_sym__Alignof] = ACTIONS(3954), - [anon_sym_offsetof] = ACTIONS(3954), - [anon_sym__Generic] = ACTIONS(3954), - [anon_sym_typename] = ACTIONS(3954), - [anon_sym_asm] = ACTIONS(3954), - [anon_sym___asm__] = ACTIONS(3954), - [anon_sym___asm] = ACTIONS(3954), - [sym_number_literal] = ACTIONS(3956), - [anon_sym_L_SQUOTE] = ACTIONS(3956), - [anon_sym_u_SQUOTE] = ACTIONS(3956), - [anon_sym_U_SQUOTE] = ACTIONS(3956), - [anon_sym_u8_SQUOTE] = ACTIONS(3956), - [anon_sym_SQUOTE] = ACTIONS(3956), - [anon_sym_L_DQUOTE] = ACTIONS(3956), - [anon_sym_u_DQUOTE] = ACTIONS(3956), - [anon_sym_U_DQUOTE] = ACTIONS(3956), - [anon_sym_u8_DQUOTE] = ACTIONS(3956), - [anon_sym_DQUOTE] = ACTIONS(3956), - [sym_true] = ACTIONS(3954), - [sym_false] = ACTIONS(3954), - [anon_sym_NULL] = ACTIONS(3954), - [anon_sym_nullptr] = ACTIONS(3954), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3954), - [anon_sym_decltype] = ACTIONS(3954), - [anon_sym_explicit] = ACTIONS(3954), - [anon_sym_template] = ACTIONS(3954), - [anon_sym_operator] = ACTIONS(3954), - [anon_sym_try] = ACTIONS(3954), - [anon_sym_delete] = ACTIONS(3954), - [anon_sym_throw] = ACTIONS(3954), - [anon_sym_namespace] = ACTIONS(3954), - [anon_sym_static_assert] = ACTIONS(3954), - [anon_sym_concept] = ACTIONS(3954), - [anon_sym_co_return] = ACTIONS(3954), - [anon_sym_co_yield] = ACTIONS(3954), - [anon_sym_R_DQUOTE] = ACTIONS(3956), - [anon_sym_LR_DQUOTE] = ACTIONS(3956), - [anon_sym_uR_DQUOTE] = ACTIONS(3956), - [anon_sym_UR_DQUOTE] = ACTIONS(3956), - [anon_sym_u8R_DQUOTE] = ACTIONS(3956), - [anon_sym_co_await] = ACTIONS(3954), - [anon_sym_new] = ACTIONS(3954), - [anon_sym_requires] = ACTIONS(3954), - [anon_sym_CARET_CARET] = ACTIONS(3956), - [anon_sym_LBRACK_COLON] = ACTIONS(3956), - [sym_this] = ACTIONS(3954), + [STATE(776)] = { + [sym_identifier] = ACTIONS(3528), + [aux_sym_preproc_include_token1] = ACTIONS(3528), + [aux_sym_preproc_def_token1] = ACTIONS(3528), + [aux_sym_preproc_if_token1] = ACTIONS(3528), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3528), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3528), + [sym_preproc_directive] = ACTIONS(3528), + [anon_sym_LPAREN2] = ACTIONS(3530), + [anon_sym_BANG] = ACTIONS(3530), + [anon_sym_TILDE] = ACTIONS(3530), + [anon_sym_DASH] = ACTIONS(3528), + [anon_sym_PLUS] = ACTIONS(3528), + [anon_sym_STAR] = ACTIONS(3530), + [anon_sym_AMP_AMP] = ACTIONS(3530), + [anon_sym_AMP] = ACTIONS(3528), + [anon_sym_SEMI] = ACTIONS(3530), + [anon_sym___extension__] = ACTIONS(3528), + [anon_sym_typedef] = ACTIONS(3528), + [anon_sym_virtual] = ACTIONS(3528), + [anon_sym_extern] = ACTIONS(3528), + [anon_sym___attribute__] = ACTIONS(3528), + [anon_sym___attribute] = ACTIONS(3528), + [anon_sym_using] = ACTIONS(3528), + [anon_sym_COLON_COLON] = ACTIONS(3530), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3530), + [anon_sym___declspec] = ACTIONS(3528), + [anon_sym___based] = ACTIONS(3528), + [anon_sym___cdecl] = ACTIONS(3528), + [anon_sym___clrcall] = ACTIONS(3528), + [anon_sym___stdcall] = ACTIONS(3528), + [anon_sym___fastcall] = ACTIONS(3528), + [anon_sym___thiscall] = ACTIONS(3528), + [anon_sym___vectorcall] = ACTIONS(3528), + [anon_sym_LBRACE] = ACTIONS(3530), + [anon_sym_RBRACE] = ACTIONS(3530), + [anon_sym_signed] = ACTIONS(3528), + [anon_sym_unsigned] = ACTIONS(3528), + [anon_sym_long] = ACTIONS(3528), + [anon_sym_short] = ACTIONS(3528), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_static] = ACTIONS(3528), + [anon_sym_register] = ACTIONS(3528), + [anon_sym_inline] = ACTIONS(3528), + [anon_sym___inline] = ACTIONS(3528), + [anon_sym___inline__] = ACTIONS(3528), + [anon_sym___forceinline] = ACTIONS(3528), + [anon_sym_thread_local] = ACTIONS(3528), + [anon_sym___thread] = ACTIONS(3528), + [anon_sym_const] = ACTIONS(3528), + [anon_sym_constexpr] = ACTIONS(3528), + [anon_sym_volatile] = ACTIONS(3528), + [anon_sym_restrict] = ACTIONS(3528), + [anon_sym___restrict__] = ACTIONS(3528), + [anon_sym__Atomic] = ACTIONS(3528), + [anon_sym__Noreturn] = ACTIONS(3528), + [anon_sym_noreturn] = ACTIONS(3528), + [anon_sym__Nonnull] = ACTIONS(3528), + [anon_sym_mutable] = ACTIONS(3528), + [anon_sym_constinit] = ACTIONS(3528), + [anon_sym_consteval] = ACTIONS(3528), + [anon_sym_alignas] = ACTIONS(3528), + [anon_sym__Alignas] = ACTIONS(3528), + [sym_primitive_type] = ACTIONS(3528), + [anon_sym_enum] = ACTIONS(3528), + [anon_sym_class] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(3528), + [anon_sym_union] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(3528), + [anon_sym_else] = ACTIONS(3528), + [anon_sym_switch] = ACTIONS(3528), + [anon_sym_case] = ACTIONS(3528), + [anon_sym_default] = ACTIONS(3528), + [anon_sym_while] = ACTIONS(3528), + [anon_sym_do] = ACTIONS(3528), + [anon_sym_for] = ACTIONS(3528), + [anon_sym_return] = ACTIONS(3528), + [anon_sym_break] = ACTIONS(3528), + [anon_sym_continue] = ACTIONS(3528), + [anon_sym_goto] = ACTIONS(3528), + [anon_sym___try] = ACTIONS(3528), + [anon_sym___leave] = ACTIONS(3528), + [anon_sym_not] = ACTIONS(3528), + [anon_sym_compl] = ACTIONS(3528), + [anon_sym_DASH_DASH] = ACTIONS(3530), + [anon_sym_PLUS_PLUS] = ACTIONS(3530), + [anon_sym_sizeof] = ACTIONS(3528), + [anon_sym___alignof__] = ACTIONS(3528), + [anon_sym___alignof] = ACTIONS(3528), + [anon_sym__alignof] = ACTIONS(3528), + [anon_sym_alignof] = ACTIONS(3528), + [anon_sym__Alignof] = ACTIONS(3528), + [anon_sym_offsetof] = ACTIONS(3528), + [anon_sym__Generic] = ACTIONS(3528), + [anon_sym_typename] = ACTIONS(3528), + [anon_sym_asm] = ACTIONS(3528), + [anon_sym___asm__] = ACTIONS(3528), + [anon_sym___asm] = ACTIONS(3528), + [sym_number_literal] = ACTIONS(3530), + [anon_sym_L_SQUOTE] = ACTIONS(3530), + [anon_sym_u_SQUOTE] = ACTIONS(3530), + [anon_sym_U_SQUOTE] = ACTIONS(3530), + [anon_sym_u8_SQUOTE] = ACTIONS(3530), + [anon_sym_SQUOTE] = ACTIONS(3530), + [anon_sym_L_DQUOTE] = ACTIONS(3530), + [anon_sym_u_DQUOTE] = ACTIONS(3530), + [anon_sym_U_DQUOTE] = ACTIONS(3530), + [anon_sym_u8_DQUOTE] = ACTIONS(3530), + [anon_sym_DQUOTE] = ACTIONS(3530), + [sym_true] = ACTIONS(3528), + [sym_false] = ACTIONS(3528), + [anon_sym_NULL] = ACTIONS(3528), + [anon_sym_nullptr] = ACTIONS(3528), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3528), + [anon_sym_decltype] = ACTIONS(3528), + [anon_sym_explicit] = ACTIONS(3528), + [anon_sym_export] = ACTIONS(3528), + [anon_sym_import] = ACTIONS(3528), + [anon_sym_template] = ACTIONS(3528), + [anon_sym_operator] = ACTIONS(3528), + [anon_sym_try] = ACTIONS(3528), + [anon_sym_delete] = ACTIONS(3528), + [anon_sym_throw] = ACTIONS(3528), + [anon_sym_namespace] = ACTIONS(3528), + [anon_sym_static_assert] = ACTIONS(3528), + [anon_sym_concept] = ACTIONS(3528), + [anon_sym_co_return] = ACTIONS(3528), + [anon_sym_co_yield] = ACTIONS(3528), + [anon_sym_R_DQUOTE] = ACTIONS(3530), + [anon_sym_LR_DQUOTE] = ACTIONS(3530), + [anon_sym_uR_DQUOTE] = ACTIONS(3530), + [anon_sym_UR_DQUOTE] = ACTIONS(3530), + [anon_sym_u8R_DQUOTE] = ACTIONS(3530), + [anon_sym_co_await] = ACTIONS(3528), + [anon_sym_new] = ACTIONS(3528), + [anon_sym_requires] = ACTIONS(3528), + [anon_sym_CARET_CARET] = ACTIONS(3530), + [anon_sym_LBRACK_COLON] = ACTIONS(3530), + [sym_this] = ACTIONS(3528), }, - [STATE(903)] = { - [sym_identifier] = ACTIONS(3958), - [aux_sym_preproc_include_token1] = ACTIONS(3958), - [aux_sym_preproc_def_token1] = ACTIONS(3958), - [aux_sym_preproc_if_token1] = ACTIONS(3958), - [aux_sym_preproc_if_token2] = ACTIONS(3958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3958), - [sym_preproc_directive] = ACTIONS(3958), - [anon_sym_LPAREN2] = ACTIONS(3960), - [anon_sym_BANG] = ACTIONS(3960), - [anon_sym_TILDE] = ACTIONS(3960), - [anon_sym_DASH] = ACTIONS(3958), - [anon_sym_PLUS] = ACTIONS(3958), - [anon_sym_STAR] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_AMP] = ACTIONS(3958), - [anon_sym_SEMI] = ACTIONS(3960), - [anon_sym___extension__] = ACTIONS(3958), - [anon_sym_typedef] = ACTIONS(3958), - [anon_sym_virtual] = ACTIONS(3958), - [anon_sym_extern] = ACTIONS(3958), - [anon_sym___attribute__] = ACTIONS(3958), - [anon_sym___attribute] = ACTIONS(3958), - [anon_sym_using] = ACTIONS(3958), - [anon_sym_COLON_COLON] = ACTIONS(3960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3960), - [anon_sym___declspec] = ACTIONS(3958), - [anon_sym___based] = ACTIONS(3958), - [anon_sym___cdecl] = ACTIONS(3958), - [anon_sym___clrcall] = ACTIONS(3958), - [anon_sym___stdcall] = ACTIONS(3958), - [anon_sym___fastcall] = ACTIONS(3958), - [anon_sym___thiscall] = ACTIONS(3958), - [anon_sym___vectorcall] = ACTIONS(3958), - [anon_sym_LBRACE] = ACTIONS(3960), - [anon_sym_signed] = ACTIONS(3958), - [anon_sym_unsigned] = ACTIONS(3958), - [anon_sym_long] = ACTIONS(3958), - [anon_sym_short] = ACTIONS(3958), - [anon_sym_LBRACK] = ACTIONS(3958), - [anon_sym_static] = ACTIONS(3958), - [anon_sym_register] = ACTIONS(3958), - [anon_sym_inline] = ACTIONS(3958), - [anon_sym___inline] = ACTIONS(3958), - [anon_sym___inline__] = ACTIONS(3958), - [anon_sym___forceinline] = ACTIONS(3958), - [anon_sym_thread_local] = ACTIONS(3958), - [anon_sym___thread] = ACTIONS(3958), - [anon_sym_const] = ACTIONS(3958), - [anon_sym_constexpr] = ACTIONS(3958), - [anon_sym_volatile] = ACTIONS(3958), - [anon_sym_restrict] = ACTIONS(3958), - [anon_sym___restrict__] = ACTIONS(3958), - [anon_sym__Atomic] = ACTIONS(3958), - [anon_sym__Noreturn] = ACTIONS(3958), - [anon_sym_noreturn] = ACTIONS(3958), - [anon_sym__Nonnull] = ACTIONS(3958), - [anon_sym_mutable] = ACTIONS(3958), - [anon_sym_constinit] = ACTIONS(3958), - [anon_sym_consteval] = ACTIONS(3958), - [anon_sym_alignas] = ACTIONS(3958), - [anon_sym__Alignas] = ACTIONS(3958), - [sym_primitive_type] = ACTIONS(3958), - [anon_sym_enum] = ACTIONS(3958), - [anon_sym_class] = ACTIONS(3958), - [anon_sym_struct] = ACTIONS(3958), - [anon_sym_union] = ACTIONS(3958), - [anon_sym_if] = ACTIONS(3958), - [anon_sym_switch] = ACTIONS(3958), - [anon_sym_case] = ACTIONS(3958), - [anon_sym_default] = ACTIONS(3958), - [anon_sym_while] = ACTIONS(3958), - [anon_sym_do] = ACTIONS(3958), - [anon_sym_for] = ACTIONS(3958), - [anon_sym_return] = ACTIONS(3958), - [anon_sym_break] = ACTIONS(3958), - [anon_sym_continue] = ACTIONS(3958), - [anon_sym_goto] = ACTIONS(3958), - [anon_sym___try] = ACTIONS(3958), - [anon_sym___leave] = ACTIONS(3958), - [anon_sym_not] = ACTIONS(3958), - [anon_sym_compl] = ACTIONS(3958), - [anon_sym_DASH_DASH] = ACTIONS(3960), - [anon_sym_PLUS_PLUS] = ACTIONS(3960), - [anon_sym_sizeof] = ACTIONS(3958), - [anon_sym___alignof__] = ACTIONS(3958), - [anon_sym___alignof] = ACTIONS(3958), - [anon_sym__alignof] = ACTIONS(3958), - [anon_sym_alignof] = ACTIONS(3958), - [anon_sym__Alignof] = ACTIONS(3958), - [anon_sym_offsetof] = ACTIONS(3958), - [anon_sym__Generic] = ACTIONS(3958), - [anon_sym_typename] = ACTIONS(3958), - [anon_sym_asm] = ACTIONS(3958), - [anon_sym___asm__] = ACTIONS(3958), - [anon_sym___asm] = ACTIONS(3958), - [sym_number_literal] = ACTIONS(3960), - [anon_sym_L_SQUOTE] = ACTIONS(3960), - [anon_sym_u_SQUOTE] = ACTIONS(3960), - [anon_sym_U_SQUOTE] = ACTIONS(3960), - [anon_sym_u8_SQUOTE] = ACTIONS(3960), - [anon_sym_SQUOTE] = ACTIONS(3960), - [anon_sym_L_DQUOTE] = ACTIONS(3960), - [anon_sym_u_DQUOTE] = ACTIONS(3960), - [anon_sym_U_DQUOTE] = ACTIONS(3960), - [anon_sym_u8_DQUOTE] = ACTIONS(3960), - [anon_sym_DQUOTE] = ACTIONS(3960), - [sym_true] = ACTIONS(3958), - [sym_false] = ACTIONS(3958), - [anon_sym_NULL] = ACTIONS(3958), - [anon_sym_nullptr] = ACTIONS(3958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3958), - [anon_sym_decltype] = ACTIONS(3958), - [anon_sym_explicit] = ACTIONS(3958), - [anon_sym_template] = ACTIONS(3958), - [anon_sym_operator] = ACTIONS(3958), - [anon_sym_try] = ACTIONS(3958), - [anon_sym_delete] = ACTIONS(3958), - [anon_sym_throw] = ACTIONS(3958), - [anon_sym_namespace] = ACTIONS(3958), - [anon_sym_static_assert] = ACTIONS(3958), - [anon_sym_concept] = ACTIONS(3958), - [anon_sym_co_return] = ACTIONS(3958), - [anon_sym_co_yield] = ACTIONS(3958), - [anon_sym_R_DQUOTE] = ACTIONS(3960), - [anon_sym_LR_DQUOTE] = ACTIONS(3960), - [anon_sym_uR_DQUOTE] = ACTIONS(3960), - [anon_sym_UR_DQUOTE] = ACTIONS(3960), - [anon_sym_u8R_DQUOTE] = ACTIONS(3960), - [anon_sym_co_await] = ACTIONS(3958), - [anon_sym_new] = ACTIONS(3958), - [anon_sym_requires] = ACTIONS(3958), - [anon_sym_CARET_CARET] = ACTIONS(3960), - [anon_sym_LBRACK_COLON] = ACTIONS(3960), - [sym_this] = ACTIONS(3958), + [STATE(777)] = { + [sym_identifier] = ACTIONS(3532), + [aux_sym_preproc_include_token1] = ACTIONS(3532), + [aux_sym_preproc_def_token1] = ACTIONS(3532), + [aux_sym_preproc_if_token1] = ACTIONS(3532), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3532), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3532), + [sym_preproc_directive] = ACTIONS(3532), + [anon_sym_LPAREN2] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3534), + [anon_sym_TILDE] = ACTIONS(3534), + [anon_sym_DASH] = ACTIONS(3532), + [anon_sym_PLUS] = ACTIONS(3532), + [anon_sym_STAR] = ACTIONS(3534), + [anon_sym_AMP_AMP] = ACTIONS(3534), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_SEMI] = ACTIONS(3534), + [anon_sym___extension__] = ACTIONS(3532), + [anon_sym_typedef] = ACTIONS(3532), + [anon_sym_virtual] = ACTIONS(3532), + [anon_sym_extern] = ACTIONS(3532), + [anon_sym___attribute__] = ACTIONS(3532), + [anon_sym___attribute] = ACTIONS(3532), + [anon_sym_using] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3534), + [anon_sym___declspec] = ACTIONS(3532), + [anon_sym___based] = ACTIONS(3532), + [anon_sym___cdecl] = ACTIONS(3532), + [anon_sym___clrcall] = ACTIONS(3532), + [anon_sym___stdcall] = ACTIONS(3532), + [anon_sym___fastcall] = ACTIONS(3532), + [anon_sym___thiscall] = ACTIONS(3532), + [anon_sym___vectorcall] = ACTIONS(3532), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_RBRACE] = ACTIONS(3534), + [anon_sym_signed] = ACTIONS(3532), + [anon_sym_unsigned] = ACTIONS(3532), + [anon_sym_long] = ACTIONS(3532), + [anon_sym_short] = ACTIONS(3532), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_static] = ACTIONS(3532), + [anon_sym_register] = ACTIONS(3532), + [anon_sym_inline] = ACTIONS(3532), + [anon_sym___inline] = ACTIONS(3532), + [anon_sym___inline__] = ACTIONS(3532), + [anon_sym___forceinline] = ACTIONS(3532), + [anon_sym_thread_local] = ACTIONS(3532), + [anon_sym___thread] = ACTIONS(3532), + [anon_sym_const] = ACTIONS(3532), + [anon_sym_constexpr] = ACTIONS(3532), + [anon_sym_volatile] = ACTIONS(3532), + [anon_sym_restrict] = ACTIONS(3532), + [anon_sym___restrict__] = ACTIONS(3532), + [anon_sym__Atomic] = ACTIONS(3532), + [anon_sym__Noreturn] = ACTIONS(3532), + [anon_sym_noreturn] = ACTIONS(3532), + [anon_sym__Nonnull] = ACTIONS(3532), + [anon_sym_mutable] = ACTIONS(3532), + [anon_sym_constinit] = ACTIONS(3532), + [anon_sym_consteval] = ACTIONS(3532), + [anon_sym_alignas] = ACTIONS(3532), + [anon_sym__Alignas] = ACTIONS(3532), + [sym_primitive_type] = ACTIONS(3532), + [anon_sym_enum] = ACTIONS(3532), + [anon_sym_class] = ACTIONS(3532), + [anon_sym_struct] = ACTIONS(3532), + [anon_sym_union] = ACTIONS(3532), + [anon_sym_if] = ACTIONS(3532), + [anon_sym_else] = ACTIONS(3532), + [anon_sym_switch] = ACTIONS(3532), + [anon_sym_case] = ACTIONS(3532), + [anon_sym_default] = ACTIONS(3532), + [anon_sym_while] = ACTIONS(3532), + [anon_sym_do] = ACTIONS(3532), + [anon_sym_for] = ACTIONS(3532), + [anon_sym_return] = ACTIONS(3532), + [anon_sym_break] = ACTIONS(3532), + [anon_sym_continue] = ACTIONS(3532), + [anon_sym_goto] = ACTIONS(3532), + [anon_sym___try] = ACTIONS(3532), + [anon_sym___leave] = ACTIONS(3532), + [anon_sym_not] = ACTIONS(3532), + [anon_sym_compl] = ACTIONS(3532), + [anon_sym_DASH_DASH] = ACTIONS(3534), + [anon_sym_PLUS_PLUS] = ACTIONS(3534), + [anon_sym_sizeof] = ACTIONS(3532), + [anon_sym___alignof__] = ACTIONS(3532), + [anon_sym___alignof] = ACTIONS(3532), + [anon_sym__alignof] = ACTIONS(3532), + [anon_sym_alignof] = ACTIONS(3532), + [anon_sym__Alignof] = ACTIONS(3532), + [anon_sym_offsetof] = ACTIONS(3532), + [anon_sym__Generic] = ACTIONS(3532), + [anon_sym_typename] = ACTIONS(3532), + [anon_sym_asm] = ACTIONS(3532), + [anon_sym___asm__] = ACTIONS(3532), + [anon_sym___asm] = ACTIONS(3532), + [sym_number_literal] = ACTIONS(3534), + [anon_sym_L_SQUOTE] = ACTIONS(3534), + [anon_sym_u_SQUOTE] = ACTIONS(3534), + [anon_sym_U_SQUOTE] = ACTIONS(3534), + [anon_sym_u8_SQUOTE] = ACTIONS(3534), + [anon_sym_SQUOTE] = ACTIONS(3534), + [anon_sym_L_DQUOTE] = ACTIONS(3534), + [anon_sym_u_DQUOTE] = ACTIONS(3534), + [anon_sym_U_DQUOTE] = ACTIONS(3534), + [anon_sym_u8_DQUOTE] = ACTIONS(3534), + [anon_sym_DQUOTE] = ACTIONS(3534), + [sym_true] = ACTIONS(3532), + [sym_false] = ACTIONS(3532), + [anon_sym_NULL] = ACTIONS(3532), + [anon_sym_nullptr] = ACTIONS(3532), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3532), + [anon_sym_decltype] = ACTIONS(3532), + [anon_sym_explicit] = ACTIONS(3532), + [anon_sym_export] = ACTIONS(3532), + [anon_sym_import] = ACTIONS(3532), + [anon_sym_template] = ACTIONS(3532), + [anon_sym_operator] = ACTIONS(3532), + [anon_sym_try] = ACTIONS(3532), + [anon_sym_delete] = ACTIONS(3532), + [anon_sym_throw] = ACTIONS(3532), + [anon_sym_namespace] = ACTIONS(3532), + [anon_sym_static_assert] = ACTIONS(3532), + [anon_sym_concept] = ACTIONS(3532), + [anon_sym_co_return] = ACTIONS(3532), + [anon_sym_co_yield] = ACTIONS(3532), + [anon_sym_R_DQUOTE] = ACTIONS(3534), + [anon_sym_LR_DQUOTE] = ACTIONS(3534), + [anon_sym_uR_DQUOTE] = ACTIONS(3534), + [anon_sym_UR_DQUOTE] = ACTIONS(3534), + [anon_sym_u8R_DQUOTE] = ACTIONS(3534), + [anon_sym_co_await] = ACTIONS(3532), + [anon_sym_new] = ACTIONS(3532), + [anon_sym_requires] = ACTIONS(3532), + [anon_sym_CARET_CARET] = ACTIONS(3534), + [anon_sym_LBRACK_COLON] = ACTIONS(3534), + [sym_this] = ACTIONS(3532), }, - [STATE(904)] = { + [STATE(778)] = { + [sym_identifier] = ACTIONS(3540), + [aux_sym_preproc_include_token1] = ACTIONS(3540), + [aux_sym_preproc_def_token1] = ACTIONS(3540), + [aux_sym_preproc_if_token1] = ACTIONS(3540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3540), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3540), + [sym_preproc_directive] = ACTIONS(3540), + [anon_sym_LPAREN2] = ACTIONS(3542), + [anon_sym_BANG] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_STAR] = ACTIONS(3542), + [anon_sym_AMP_AMP] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3540), + [anon_sym_SEMI] = ACTIONS(3542), + [anon_sym___extension__] = ACTIONS(3540), + [anon_sym_typedef] = ACTIONS(3540), + [anon_sym_virtual] = ACTIONS(3540), + [anon_sym_extern] = ACTIONS(3540), + [anon_sym___attribute__] = ACTIONS(3540), + [anon_sym___attribute] = ACTIONS(3540), + [anon_sym_using] = ACTIONS(3540), + [anon_sym_COLON_COLON] = ACTIONS(3542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3542), + [anon_sym___declspec] = ACTIONS(3540), + [anon_sym___based] = ACTIONS(3540), + [anon_sym___cdecl] = ACTIONS(3540), + [anon_sym___clrcall] = ACTIONS(3540), + [anon_sym___stdcall] = ACTIONS(3540), + [anon_sym___fastcall] = ACTIONS(3540), + [anon_sym___thiscall] = ACTIONS(3540), + [anon_sym___vectorcall] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_RBRACE] = ACTIONS(3542), + [anon_sym_signed] = ACTIONS(3540), + [anon_sym_unsigned] = ACTIONS(3540), + [anon_sym_long] = ACTIONS(3540), + [anon_sym_short] = ACTIONS(3540), + [anon_sym_LBRACK] = ACTIONS(3540), + [anon_sym_static] = ACTIONS(3540), + [anon_sym_register] = ACTIONS(3540), + [anon_sym_inline] = ACTIONS(3540), + [anon_sym___inline] = ACTIONS(3540), + [anon_sym___inline__] = ACTIONS(3540), + [anon_sym___forceinline] = ACTIONS(3540), + [anon_sym_thread_local] = ACTIONS(3540), + [anon_sym___thread] = ACTIONS(3540), + [anon_sym_const] = ACTIONS(3540), + [anon_sym_constexpr] = ACTIONS(3540), + [anon_sym_volatile] = ACTIONS(3540), + [anon_sym_restrict] = ACTIONS(3540), + [anon_sym___restrict__] = ACTIONS(3540), + [anon_sym__Atomic] = ACTIONS(3540), + [anon_sym__Noreturn] = ACTIONS(3540), + [anon_sym_noreturn] = ACTIONS(3540), + [anon_sym__Nonnull] = ACTIONS(3540), + [anon_sym_mutable] = ACTIONS(3540), + [anon_sym_constinit] = ACTIONS(3540), + [anon_sym_consteval] = ACTIONS(3540), + [anon_sym_alignas] = ACTIONS(3540), + [anon_sym__Alignas] = ACTIONS(3540), + [sym_primitive_type] = ACTIONS(3540), + [anon_sym_enum] = ACTIONS(3540), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3540), + [anon_sym_union] = ACTIONS(3540), + [anon_sym_if] = ACTIONS(3540), + [anon_sym_else] = ACTIONS(3540), + [anon_sym_switch] = ACTIONS(3540), + [anon_sym_case] = ACTIONS(3540), + [anon_sym_default] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3540), + [anon_sym_do] = ACTIONS(3540), + [anon_sym_for] = ACTIONS(3540), + [anon_sym_return] = ACTIONS(3540), + [anon_sym_break] = ACTIONS(3540), + [anon_sym_continue] = ACTIONS(3540), + [anon_sym_goto] = ACTIONS(3540), + [anon_sym___try] = ACTIONS(3540), + [anon_sym___leave] = ACTIONS(3540), + [anon_sym_not] = ACTIONS(3540), + [anon_sym_compl] = ACTIONS(3540), + [anon_sym_DASH_DASH] = ACTIONS(3542), + [anon_sym_PLUS_PLUS] = ACTIONS(3542), + [anon_sym_sizeof] = ACTIONS(3540), + [anon_sym___alignof__] = ACTIONS(3540), + [anon_sym___alignof] = ACTIONS(3540), + [anon_sym__alignof] = ACTIONS(3540), + [anon_sym_alignof] = ACTIONS(3540), + [anon_sym__Alignof] = ACTIONS(3540), + [anon_sym_offsetof] = ACTIONS(3540), + [anon_sym__Generic] = ACTIONS(3540), + [anon_sym_typename] = ACTIONS(3540), + [anon_sym_asm] = ACTIONS(3540), + [anon_sym___asm__] = ACTIONS(3540), + [anon_sym___asm] = ACTIONS(3540), + [sym_number_literal] = ACTIONS(3542), + [anon_sym_L_SQUOTE] = ACTIONS(3542), + [anon_sym_u_SQUOTE] = ACTIONS(3542), + [anon_sym_U_SQUOTE] = ACTIONS(3542), + [anon_sym_u8_SQUOTE] = ACTIONS(3542), + [anon_sym_SQUOTE] = ACTIONS(3542), + [anon_sym_L_DQUOTE] = ACTIONS(3542), + [anon_sym_u_DQUOTE] = ACTIONS(3542), + [anon_sym_U_DQUOTE] = ACTIONS(3542), + [anon_sym_u8_DQUOTE] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [sym_true] = ACTIONS(3540), + [sym_false] = ACTIONS(3540), + [anon_sym_NULL] = ACTIONS(3540), + [anon_sym_nullptr] = ACTIONS(3540), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3540), + [anon_sym_decltype] = ACTIONS(3540), + [anon_sym_explicit] = ACTIONS(3540), + [anon_sym_export] = ACTIONS(3540), + [anon_sym_import] = ACTIONS(3540), + [anon_sym_template] = ACTIONS(3540), + [anon_sym_operator] = ACTIONS(3540), + [anon_sym_try] = ACTIONS(3540), + [anon_sym_delete] = ACTIONS(3540), + [anon_sym_throw] = ACTIONS(3540), + [anon_sym_namespace] = ACTIONS(3540), + [anon_sym_static_assert] = ACTIONS(3540), + [anon_sym_concept] = ACTIONS(3540), + [anon_sym_co_return] = ACTIONS(3540), + [anon_sym_co_yield] = ACTIONS(3540), + [anon_sym_R_DQUOTE] = ACTIONS(3542), + [anon_sym_LR_DQUOTE] = ACTIONS(3542), + [anon_sym_uR_DQUOTE] = ACTIONS(3542), + [anon_sym_UR_DQUOTE] = ACTIONS(3542), + [anon_sym_u8R_DQUOTE] = ACTIONS(3542), + [anon_sym_co_await] = ACTIONS(3540), + [anon_sym_new] = ACTIONS(3540), + [anon_sym_requires] = ACTIONS(3540), + [anon_sym_CARET_CARET] = ACTIONS(3542), + [anon_sym_LBRACK_COLON] = ACTIONS(3542), + [sym_this] = ACTIONS(3540), + }, + [STATE(779)] = { + [sym_identifier] = ACTIONS(3544), + [aux_sym_preproc_include_token1] = ACTIONS(3544), + [aux_sym_preproc_def_token1] = ACTIONS(3544), + [aux_sym_preproc_if_token1] = ACTIONS(3544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3544), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3544), + [sym_preproc_directive] = ACTIONS(3544), + [anon_sym_LPAREN2] = ACTIONS(3546), + [anon_sym_BANG] = ACTIONS(3546), + [anon_sym_TILDE] = ACTIONS(3546), + [anon_sym_DASH] = ACTIONS(3544), + [anon_sym_PLUS] = ACTIONS(3544), + [anon_sym_STAR] = ACTIONS(3546), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3544), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym___extension__] = ACTIONS(3544), + [anon_sym_typedef] = ACTIONS(3544), + [anon_sym_virtual] = ACTIONS(3544), + [anon_sym_extern] = ACTIONS(3544), + [anon_sym___attribute__] = ACTIONS(3544), + [anon_sym___attribute] = ACTIONS(3544), + [anon_sym_using] = ACTIONS(3544), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3546), + [anon_sym___declspec] = ACTIONS(3544), + [anon_sym___based] = ACTIONS(3544), + [anon_sym___cdecl] = ACTIONS(3544), + [anon_sym___clrcall] = ACTIONS(3544), + [anon_sym___stdcall] = ACTIONS(3544), + [anon_sym___fastcall] = ACTIONS(3544), + [anon_sym___thiscall] = ACTIONS(3544), + [anon_sym___vectorcall] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3546), + [anon_sym_RBRACE] = ACTIONS(3546), + [anon_sym_signed] = ACTIONS(3544), + [anon_sym_unsigned] = ACTIONS(3544), + [anon_sym_long] = ACTIONS(3544), + [anon_sym_short] = ACTIONS(3544), + [anon_sym_LBRACK] = ACTIONS(3544), + [anon_sym_static] = ACTIONS(3544), + [anon_sym_register] = ACTIONS(3544), + [anon_sym_inline] = ACTIONS(3544), + [anon_sym___inline] = ACTIONS(3544), + [anon_sym___inline__] = ACTIONS(3544), + [anon_sym___forceinline] = ACTIONS(3544), + [anon_sym_thread_local] = ACTIONS(3544), + [anon_sym___thread] = ACTIONS(3544), + [anon_sym_const] = ACTIONS(3544), + [anon_sym_constexpr] = ACTIONS(3544), + [anon_sym_volatile] = ACTIONS(3544), + [anon_sym_restrict] = ACTIONS(3544), + [anon_sym___restrict__] = ACTIONS(3544), + [anon_sym__Atomic] = ACTIONS(3544), + [anon_sym__Noreturn] = ACTIONS(3544), + [anon_sym_noreturn] = ACTIONS(3544), + [anon_sym__Nonnull] = ACTIONS(3544), + [anon_sym_mutable] = ACTIONS(3544), + [anon_sym_constinit] = ACTIONS(3544), + [anon_sym_consteval] = ACTIONS(3544), + [anon_sym_alignas] = ACTIONS(3544), + [anon_sym__Alignas] = ACTIONS(3544), + [sym_primitive_type] = ACTIONS(3544), + [anon_sym_enum] = ACTIONS(3544), + [anon_sym_class] = ACTIONS(3544), + [anon_sym_struct] = ACTIONS(3544), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_else] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3544), + [anon_sym_case] = ACTIONS(3544), + [anon_sym_default] = ACTIONS(3544), + [anon_sym_while] = ACTIONS(3544), + [anon_sym_do] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3544), + [anon_sym_return] = ACTIONS(3544), + [anon_sym_break] = ACTIONS(3544), + [anon_sym_continue] = ACTIONS(3544), + [anon_sym_goto] = ACTIONS(3544), + [anon_sym___try] = ACTIONS(3544), + [anon_sym___leave] = ACTIONS(3544), + [anon_sym_not] = ACTIONS(3544), + [anon_sym_compl] = ACTIONS(3544), + [anon_sym_DASH_DASH] = ACTIONS(3546), + [anon_sym_PLUS_PLUS] = ACTIONS(3546), + [anon_sym_sizeof] = ACTIONS(3544), + [anon_sym___alignof__] = ACTIONS(3544), + [anon_sym___alignof] = ACTIONS(3544), + [anon_sym__alignof] = ACTIONS(3544), + [anon_sym_alignof] = ACTIONS(3544), + [anon_sym__Alignof] = ACTIONS(3544), + [anon_sym_offsetof] = ACTIONS(3544), + [anon_sym__Generic] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3544), + [anon_sym_asm] = ACTIONS(3544), + [anon_sym___asm__] = ACTIONS(3544), + [anon_sym___asm] = ACTIONS(3544), + [sym_number_literal] = ACTIONS(3546), + [anon_sym_L_SQUOTE] = ACTIONS(3546), + [anon_sym_u_SQUOTE] = ACTIONS(3546), + [anon_sym_U_SQUOTE] = ACTIONS(3546), + [anon_sym_u8_SQUOTE] = ACTIONS(3546), + [anon_sym_SQUOTE] = ACTIONS(3546), + [anon_sym_L_DQUOTE] = ACTIONS(3546), + [anon_sym_u_DQUOTE] = ACTIONS(3546), + [anon_sym_U_DQUOTE] = ACTIONS(3546), + [anon_sym_u8_DQUOTE] = ACTIONS(3546), + [anon_sym_DQUOTE] = ACTIONS(3546), + [sym_true] = ACTIONS(3544), + [sym_false] = ACTIONS(3544), + [anon_sym_NULL] = ACTIONS(3544), + [anon_sym_nullptr] = ACTIONS(3544), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3544), + [anon_sym_decltype] = ACTIONS(3544), + [anon_sym_explicit] = ACTIONS(3544), + [anon_sym_export] = ACTIONS(3544), + [anon_sym_import] = ACTIONS(3544), + [anon_sym_template] = ACTIONS(3544), + [anon_sym_operator] = ACTIONS(3544), + [anon_sym_try] = ACTIONS(3544), + [anon_sym_delete] = ACTIONS(3544), + [anon_sym_throw] = ACTIONS(3544), + [anon_sym_namespace] = ACTIONS(3544), + [anon_sym_static_assert] = ACTIONS(3544), + [anon_sym_concept] = ACTIONS(3544), + [anon_sym_co_return] = ACTIONS(3544), + [anon_sym_co_yield] = ACTIONS(3544), + [anon_sym_R_DQUOTE] = ACTIONS(3546), + [anon_sym_LR_DQUOTE] = ACTIONS(3546), + [anon_sym_uR_DQUOTE] = ACTIONS(3546), + [anon_sym_UR_DQUOTE] = ACTIONS(3546), + [anon_sym_u8R_DQUOTE] = ACTIONS(3546), + [anon_sym_co_await] = ACTIONS(3544), + [anon_sym_new] = ACTIONS(3544), + [anon_sym_requires] = ACTIONS(3544), + [anon_sym_CARET_CARET] = ACTIONS(3546), + [anon_sym_LBRACK_COLON] = ACTIONS(3546), + [sym_this] = ACTIONS(3544), + }, + [STATE(780)] = { + [sym_identifier] = ACTIONS(4008), + [aux_sym_preproc_include_token1] = ACTIONS(4008), + [aux_sym_preproc_def_token1] = ACTIONS(4008), + [aux_sym_preproc_if_token1] = ACTIONS(4008), + [aux_sym_preproc_if_token2] = ACTIONS(4008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4008), + [sym_preproc_directive] = ACTIONS(4008), + [anon_sym_LPAREN2] = ACTIONS(4010), + [anon_sym_BANG] = ACTIONS(4010), + [anon_sym_TILDE] = ACTIONS(4010), + [anon_sym_DASH] = ACTIONS(4008), + [anon_sym_PLUS] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4010), + [anon_sym_AMP_AMP] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4008), + [anon_sym_SEMI] = ACTIONS(4010), + [anon_sym___extension__] = ACTIONS(4008), + [anon_sym_typedef] = ACTIONS(4008), + [anon_sym_virtual] = ACTIONS(4008), + [anon_sym_extern] = ACTIONS(4008), + [anon_sym___attribute__] = ACTIONS(4008), + [anon_sym___attribute] = ACTIONS(4008), + [anon_sym_using] = ACTIONS(4008), + [anon_sym_COLON_COLON] = ACTIONS(4010), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4010), + [anon_sym___declspec] = ACTIONS(4008), + [anon_sym___based] = ACTIONS(4008), + [anon_sym___cdecl] = ACTIONS(4008), + [anon_sym___clrcall] = ACTIONS(4008), + [anon_sym___stdcall] = ACTIONS(4008), + [anon_sym___fastcall] = ACTIONS(4008), + [anon_sym___thiscall] = ACTIONS(4008), + [anon_sym___vectorcall] = ACTIONS(4008), + [anon_sym_LBRACE] = ACTIONS(4010), + [anon_sym_signed] = ACTIONS(4008), + [anon_sym_unsigned] = ACTIONS(4008), + [anon_sym_long] = ACTIONS(4008), + [anon_sym_short] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(4008), + [anon_sym_static] = ACTIONS(4008), + [anon_sym_register] = ACTIONS(4008), + [anon_sym_inline] = ACTIONS(4008), + [anon_sym___inline] = ACTIONS(4008), + [anon_sym___inline__] = ACTIONS(4008), + [anon_sym___forceinline] = ACTIONS(4008), + [anon_sym_thread_local] = ACTIONS(4008), + [anon_sym___thread] = ACTIONS(4008), + [anon_sym_const] = ACTIONS(4008), + [anon_sym_constexpr] = ACTIONS(4008), + [anon_sym_volatile] = ACTIONS(4008), + [anon_sym_restrict] = ACTIONS(4008), + [anon_sym___restrict__] = ACTIONS(4008), + [anon_sym__Atomic] = ACTIONS(4008), + [anon_sym__Noreturn] = ACTIONS(4008), + [anon_sym_noreturn] = ACTIONS(4008), + [anon_sym__Nonnull] = ACTIONS(4008), + [anon_sym_mutable] = ACTIONS(4008), + [anon_sym_constinit] = ACTIONS(4008), + [anon_sym_consteval] = ACTIONS(4008), + [anon_sym_alignas] = ACTIONS(4008), + [anon_sym__Alignas] = ACTIONS(4008), + [sym_primitive_type] = ACTIONS(4008), + [anon_sym_enum] = ACTIONS(4008), + [anon_sym_class] = ACTIONS(4008), + [anon_sym_struct] = ACTIONS(4008), + [anon_sym_union] = ACTIONS(4008), + [anon_sym_if] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4008), + [anon_sym_case] = ACTIONS(4008), + [anon_sym_default] = ACTIONS(4008), + [anon_sym_while] = ACTIONS(4008), + [anon_sym_do] = ACTIONS(4008), + [anon_sym_for] = ACTIONS(4008), + [anon_sym_return] = ACTIONS(4008), + [anon_sym_break] = ACTIONS(4008), + [anon_sym_continue] = ACTIONS(4008), + [anon_sym_goto] = ACTIONS(4008), + [anon_sym___try] = ACTIONS(4008), + [anon_sym___leave] = ACTIONS(4008), + [anon_sym_not] = ACTIONS(4008), + [anon_sym_compl] = ACTIONS(4008), + [anon_sym_DASH_DASH] = ACTIONS(4010), + [anon_sym_PLUS_PLUS] = ACTIONS(4010), + [anon_sym_sizeof] = ACTIONS(4008), + [anon_sym___alignof__] = ACTIONS(4008), + [anon_sym___alignof] = ACTIONS(4008), + [anon_sym__alignof] = ACTIONS(4008), + [anon_sym_alignof] = ACTIONS(4008), + [anon_sym__Alignof] = ACTIONS(4008), + [anon_sym_offsetof] = ACTIONS(4008), + [anon_sym__Generic] = ACTIONS(4008), + [anon_sym_typename] = ACTIONS(4008), + [anon_sym_asm] = ACTIONS(4008), + [anon_sym___asm__] = ACTIONS(4008), + [anon_sym___asm] = ACTIONS(4008), + [sym_number_literal] = ACTIONS(4010), + [anon_sym_L_SQUOTE] = ACTIONS(4010), + [anon_sym_u_SQUOTE] = ACTIONS(4010), + [anon_sym_U_SQUOTE] = ACTIONS(4010), + [anon_sym_u8_SQUOTE] = ACTIONS(4010), + [anon_sym_SQUOTE] = ACTIONS(4010), + [anon_sym_L_DQUOTE] = ACTIONS(4010), + [anon_sym_u_DQUOTE] = ACTIONS(4010), + [anon_sym_U_DQUOTE] = ACTIONS(4010), + [anon_sym_u8_DQUOTE] = ACTIONS(4010), + [anon_sym_DQUOTE] = ACTIONS(4010), + [sym_true] = ACTIONS(4008), + [sym_false] = ACTIONS(4008), + [anon_sym_NULL] = ACTIONS(4008), + [anon_sym_nullptr] = ACTIONS(4008), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4008), + [anon_sym_decltype] = ACTIONS(4008), + [anon_sym_explicit] = ACTIONS(4008), + [anon_sym_export] = ACTIONS(4008), + [anon_sym_module] = ACTIONS(4008), + [anon_sym_import] = ACTIONS(4008), + [anon_sym_template] = ACTIONS(4008), + [anon_sym_operator] = ACTIONS(4008), + [anon_sym_try] = ACTIONS(4008), + [anon_sym_delete] = ACTIONS(4008), + [anon_sym_throw] = ACTIONS(4008), + [anon_sym_namespace] = ACTIONS(4008), + [anon_sym_static_assert] = ACTIONS(4008), + [anon_sym_concept] = ACTIONS(4008), + [anon_sym_co_return] = ACTIONS(4008), + [anon_sym_co_yield] = ACTIONS(4008), + [anon_sym_R_DQUOTE] = ACTIONS(4010), + [anon_sym_LR_DQUOTE] = ACTIONS(4010), + [anon_sym_uR_DQUOTE] = ACTIONS(4010), + [anon_sym_UR_DQUOTE] = ACTIONS(4010), + [anon_sym_u8R_DQUOTE] = ACTIONS(4010), + [anon_sym_co_await] = ACTIONS(4008), + [anon_sym_new] = ACTIONS(4008), + [anon_sym_requires] = ACTIONS(4008), + [anon_sym_CARET_CARET] = ACTIONS(4010), + [anon_sym_LBRACK_COLON] = ACTIONS(4010), + [sym_this] = ACTIONS(4008), + }, + [STATE(781)] = { + [sym_identifier] = ACTIONS(4270), + [aux_sym_preproc_include_token1] = ACTIONS(4270), + [aux_sym_preproc_def_token1] = ACTIONS(4270), + [aux_sym_preproc_if_token1] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), + [sym_preproc_directive] = ACTIONS(4270), + [anon_sym_LPAREN2] = ACTIONS(4272), + [anon_sym_BANG] = ACTIONS(4272), + [anon_sym_TILDE] = ACTIONS(4272), + [anon_sym_DASH] = ACTIONS(4270), + [anon_sym_PLUS] = ACTIONS(4270), + [anon_sym_STAR] = ACTIONS(4272), + [anon_sym_AMP_AMP] = ACTIONS(4272), + [anon_sym_AMP] = ACTIONS(4270), + [anon_sym_SEMI] = ACTIONS(4272), + [anon_sym___extension__] = ACTIONS(4270), + [anon_sym_typedef] = ACTIONS(4270), + [anon_sym_virtual] = ACTIONS(4270), + [anon_sym_extern] = ACTIONS(4270), + [anon_sym___attribute__] = ACTIONS(4270), + [anon_sym___attribute] = ACTIONS(4270), + [anon_sym_using] = ACTIONS(4270), + [anon_sym_COLON_COLON] = ACTIONS(4272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), + [anon_sym___declspec] = ACTIONS(4270), + [anon_sym___based] = ACTIONS(4270), + [anon_sym___cdecl] = ACTIONS(4270), + [anon_sym___clrcall] = ACTIONS(4270), + [anon_sym___stdcall] = ACTIONS(4270), + [anon_sym___fastcall] = ACTIONS(4270), + [anon_sym___thiscall] = ACTIONS(4270), + [anon_sym___vectorcall] = ACTIONS(4270), + [anon_sym_LBRACE] = ACTIONS(4272), + [anon_sym_RBRACE] = ACTIONS(4272), + [anon_sym_signed] = ACTIONS(4270), + [anon_sym_unsigned] = ACTIONS(4270), + [anon_sym_long] = ACTIONS(4270), + [anon_sym_short] = ACTIONS(4270), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_static] = ACTIONS(4270), + [anon_sym_register] = ACTIONS(4270), + [anon_sym_inline] = ACTIONS(4270), + [anon_sym___inline] = ACTIONS(4270), + [anon_sym___inline__] = ACTIONS(4270), + [anon_sym___forceinline] = ACTIONS(4270), + [anon_sym_thread_local] = ACTIONS(4270), + [anon_sym___thread] = ACTIONS(4270), + [anon_sym_const] = ACTIONS(4270), + [anon_sym_constexpr] = ACTIONS(4270), + [anon_sym_volatile] = ACTIONS(4270), + [anon_sym_restrict] = ACTIONS(4270), + [anon_sym___restrict__] = ACTIONS(4270), + [anon_sym__Atomic] = ACTIONS(4270), + [anon_sym__Noreturn] = ACTIONS(4270), + [anon_sym_noreturn] = ACTIONS(4270), + [anon_sym__Nonnull] = ACTIONS(4270), + [anon_sym_mutable] = ACTIONS(4270), + [anon_sym_constinit] = ACTIONS(4270), + [anon_sym_consteval] = ACTIONS(4270), + [anon_sym_alignas] = ACTIONS(4270), + [anon_sym__Alignas] = ACTIONS(4270), + [sym_primitive_type] = ACTIONS(4270), + [anon_sym_enum] = ACTIONS(4270), + [anon_sym_class] = ACTIONS(4270), + [anon_sym_struct] = ACTIONS(4270), + [anon_sym_union] = ACTIONS(4270), + [anon_sym_if] = ACTIONS(4270), + [anon_sym_switch] = ACTIONS(4270), + [anon_sym_case] = ACTIONS(4270), + [anon_sym_default] = ACTIONS(4270), + [anon_sym_while] = ACTIONS(4270), + [anon_sym_do] = ACTIONS(4270), + [anon_sym_for] = ACTIONS(4270), + [anon_sym_return] = ACTIONS(4270), + [anon_sym_break] = ACTIONS(4270), + [anon_sym_continue] = ACTIONS(4270), + [anon_sym_goto] = ACTIONS(4270), + [anon_sym___try] = ACTIONS(4270), + [anon_sym___leave] = ACTIONS(4270), + [anon_sym_not] = ACTIONS(4270), + [anon_sym_compl] = ACTIONS(4270), + [anon_sym_DASH_DASH] = ACTIONS(4272), + [anon_sym_PLUS_PLUS] = ACTIONS(4272), + [anon_sym_sizeof] = ACTIONS(4270), + [anon_sym___alignof__] = ACTIONS(4270), + [anon_sym___alignof] = ACTIONS(4270), + [anon_sym__alignof] = ACTIONS(4270), + [anon_sym_alignof] = ACTIONS(4270), + [anon_sym__Alignof] = ACTIONS(4270), + [anon_sym_offsetof] = ACTIONS(4270), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4270), + [anon_sym_asm] = ACTIONS(4270), + [anon_sym___asm__] = ACTIONS(4270), + [anon_sym___asm] = ACTIONS(4270), + [sym_number_literal] = ACTIONS(4272), + [anon_sym_L_SQUOTE] = ACTIONS(4272), + [anon_sym_u_SQUOTE] = ACTIONS(4272), + [anon_sym_U_SQUOTE] = ACTIONS(4272), + [anon_sym_u8_SQUOTE] = ACTIONS(4272), + [anon_sym_SQUOTE] = ACTIONS(4272), + [anon_sym_L_DQUOTE] = ACTIONS(4272), + [anon_sym_u_DQUOTE] = ACTIONS(4272), + [anon_sym_U_DQUOTE] = ACTIONS(4272), + [anon_sym_u8_DQUOTE] = ACTIONS(4272), + [anon_sym_DQUOTE] = ACTIONS(4272), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4270), + [anon_sym_nullptr] = ACTIONS(4270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4270), + [anon_sym_decltype] = ACTIONS(4270), + [anon_sym_explicit] = ACTIONS(4270), + [anon_sym_export] = ACTIONS(4270), + [anon_sym_import] = ACTIONS(4270), + [anon_sym_template] = ACTIONS(4270), + [anon_sym_operator] = ACTIONS(4270), + [anon_sym_try] = ACTIONS(4270), + [anon_sym_delete] = ACTIONS(4270), + [anon_sym_throw] = ACTIONS(4270), + [anon_sym_namespace] = ACTIONS(4270), + [anon_sym_static_assert] = ACTIONS(4270), + [anon_sym_concept] = ACTIONS(4270), + [anon_sym_co_return] = ACTIONS(4270), + [anon_sym_co_yield] = ACTIONS(4270), + [anon_sym_R_DQUOTE] = ACTIONS(4272), + [anon_sym_LR_DQUOTE] = ACTIONS(4272), + [anon_sym_uR_DQUOTE] = ACTIONS(4272), + [anon_sym_UR_DQUOTE] = ACTIONS(4272), + [anon_sym_u8R_DQUOTE] = ACTIONS(4272), + [anon_sym_co_await] = ACTIONS(4270), + [anon_sym_new] = ACTIONS(4270), + [anon_sym_requires] = ACTIONS(4270), + [anon_sym_CARET_CARET] = ACTIONS(4272), + [anon_sym_LBRACK_COLON] = ACTIONS(4272), + [sym_this] = ACTIONS(4270), + }, + [STATE(782)] = { [sym_identifier] = ACTIONS(3962), [aux_sym_preproc_include_token1] = ACTIONS(3962), [aux_sym_preproc_def_token1] = ACTIONS(3962), [aux_sym_preproc_if_token1] = ACTIONS(3962), - [aux_sym_preproc_if_token2] = ACTIONS(3962), [aux_sym_preproc_ifdef_token1] = ACTIONS(3962), [aux_sym_preproc_ifdef_token2] = ACTIONS(3962), [sym_preproc_directive] = ACTIONS(3962), @@ -181967,6 +171514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(3962), [anon_sym___vectorcall] = ACTIONS(3962), [anon_sym_LBRACE] = ACTIONS(3964), + [anon_sym_RBRACE] = ACTIONS(3964), [anon_sym_signed] = ACTIONS(3962), [anon_sym_unsigned] = ACTIONS(3962), [anon_sym_long] = ACTIONS(3962), @@ -182047,6 +171595,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(3962), [anon_sym_decltype] = ACTIONS(3962), [anon_sym_explicit] = ACTIONS(3962), + [anon_sym_export] = ACTIONS(3962), + [anon_sym_import] = ACTIONS(3962), [anon_sym_template] = ACTIONS(3962), [anon_sym_operator] = ACTIONS(3962), [anon_sym_try] = ACTIONS(3962), @@ -182069,1116 +171619,571 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3964), [sym_this] = ACTIONS(3962), }, - [STATE(905)] = { - [sym_identifier] = ACTIONS(3966), - [aux_sym_preproc_include_token1] = ACTIONS(3966), - [aux_sym_preproc_def_token1] = ACTIONS(3966), - [aux_sym_preproc_if_token1] = ACTIONS(3966), - [aux_sym_preproc_if_token2] = ACTIONS(3966), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3966), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3966), - [sym_preproc_directive] = ACTIONS(3966), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(3968), - [anon_sym_TILDE] = ACTIONS(3968), - [anon_sym_DASH] = ACTIONS(3966), - [anon_sym_PLUS] = ACTIONS(3966), - [anon_sym_STAR] = ACTIONS(3968), - [anon_sym_AMP_AMP] = ACTIONS(3968), - [anon_sym_AMP] = ACTIONS(3966), - [anon_sym_SEMI] = ACTIONS(3968), - [anon_sym___extension__] = ACTIONS(3966), - [anon_sym_typedef] = ACTIONS(3966), - [anon_sym_virtual] = ACTIONS(3966), - [anon_sym_extern] = ACTIONS(3966), - [anon_sym___attribute__] = ACTIONS(3966), - [anon_sym___attribute] = ACTIONS(3966), - [anon_sym_using] = ACTIONS(3966), - [anon_sym_COLON_COLON] = ACTIONS(3968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3968), - [anon_sym___declspec] = ACTIONS(3966), - [anon_sym___based] = ACTIONS(3966), - [anon_sym___cdecl] = ACTIONS(3966), - [anon_sym___clrcall] = ACTIONS(3966), - [anon_sym___stdcall] = ACTIONS(3966), - [anon_sym___fastcall] = ACTIONS(3966), - [anon_sym___thiscall] = ACTIONS(3966), - [anon_sym___vectorcall] = ACTIONS(3966), - [anon_sym_LBRACE] = ACTIONS(3968), - [anon_sym_signed] = ACTIONS(3966), - [anon_sym_unsigned] = ACTIONS(3966), - [anon_sym_long] = ACTIONS(3966), - [anon_sym_short] = ACTIONS(3966), - [anon_sym_LBRACK] = ACTIONS(3966), - [anon_sym_static] = ACTIONS(3966), - [anon_sym_register] = ACTIONS(3966), - [anon_sym_inline] = ACTIONS(3966), - [anon_sym___inline] = ACTIONS(3966), - [anon_sym___inline__] = ACTIONS(3966), - [anon_sym___forceinline] = ACTIONS(3966), - [anon_sym_thread_local] = ACTIONS(3966), - [anon_sym___thread] = ACTIONS(3966), - [anon_sym_const] = ACTIONS(3966), - [anon_sym_constexpr] = ACTIONS(3966), - [anon_sym_volatile] = ACTIONS(3966), - [anon_sym_restrict] = ACTIONS(3966), - [anon_sym___restrict__] = ACTIONS(3966), - [anon_sym__Atomic] = ACTIONS(3966), - [anon_sym__Noreturn] = ACTIONS(3966), - [anon_sym_noreturn] = ACTIONS(3966), - [anon_sym__Nonnull] = ACTIONS(3966), - [anon_sym_mutable] = ACTIONS(3966), - [anon_sym_constinit] = ACTIONS(3966), - [anon_sym_consteval] = ACTIONS(3966), - [anon_sym_alignas] = ACTIONS(3966), - [anon_sym__Alignas] = ACTIONS(3966), - [sym_primitive_type] = ACTIONS(3966), - [anon_sym_enum] = ACTIONS(3966), - [anon_sym_class] = ACTIONS(3966), - [anon_sym_struct] = ACTIONS(3966), - [anon_sym_union] = ACTIONS(3966), - [anon_sym_if] = ACTIONS(3966), - [anon_sym_switch] = ACTIONS(3966), - [anon_sym_case] = ACTIONS(3966), - [anon_sym_default] = ACTIONS(3966), - [anon_sym_while] = ACTIONS(3966), - [anon_sym_do] = ACTIONS(3966), - [anon_sym_for] = ACTIONS(3966), - [anon_sym_return] = ACTIONS(3966), - [anon_sym_break] = ACTIONS(3966), - [anon_sym_continue] = ACTIONS(3966), - [anon_sym_goto] = ACTIONS(3966), - [anon_sym___try] = ACTIONS(3966), - [anon_sym___leave] = ACTIONS(3966), - [anon_sym_not] = ACTIONS(3966), - [anon_sym_compl] = ACTIONS(3966), - [anon_sym_DASH_DASH] = ACTIONS(3968), - [anon_sym_PLUS_PLUS] = ACTIONS(3968), - [anon_sym_sizeof] = ACTIONS(3966), - [anon_sym___alignof__] = ACTIONS(3966), - [anon_sym___alignof] = ACTIONS(3966), - [anon_sym__alignof] = ACTIONS(3966), - [anon_sym_alignof] = ACTIONS(3966), - [anon_sym__Alignof] = ACTIONS(3966), - [anon_sym_offsetof] = ACTIONS(3966), - [anon_sym__Generic] = ACTIONS(3966), - [anon_sym_typename] = ACTIONS(3966), - [anon_sym_asm] = ACTIONS(3966), - [anon_sym___asm__] = ACTIONS(3966), - [anon_sym___asm] = ACTIONS(3966), - [sym_number_literal] = ACTIONS(3968), - [anon_sym_L_SQUOTE] = ACTIONS(3968), - [anon_sym_u_SQUOTE] = ACTIONS(3968), - [anon_sym_U_SQUOTE] = ACTIONS(3968), - [anon_sym_u8_SQUOTE] = ACTIONS(3968), - [anon_sym_SQUOTE] = ACTIONS(3968), - [anon_sym_L_DQUOTE] = ACTIONS(3968), - [anon_sym_u_DQUOTE] = ACTIONS(3968), - [anon_sym_U_DQUOTE] = ACTIONS(3968), - [anon_sym_u8_DQUOTE] = ACTIONS(3968), - [anon_sym_DQUOTE] = ACTIONS(3968), - [sym_true] = ACTIONS(3966), - [sym_false] = ACTIONS(3966), - [anon_sym_NULL] = ACTIONS(3966), - [anon_sym_nullptr] = ACTIONS(3966), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3966), - [anon_sym_decltype] = ACTIONS(3966), - [anon_sym_explicit] = ACTIONS(3966), - [anon_sym_template] = ACTIONS(3966), - [anon_sym_operator] = ACTIONS(3966), - [anon_sym_try] = ACTIONS(3966), - [anon_sym_delete] = ACTIONS(3966), - [anon_sym_throw] = ACTIONS(3966), - [anon_sym_namespace] = ACTIONS(3966), - [anon_sym_static_assert] = ACTIONS(3966), - [anon_sym_concept] = ACTIONS(3966), - [anon_sym_co_return] = ACTIONS(3966), - [anon_sym_co_yield] = ACTIONS(3966), - [anon_sym_R_DQUOTE] = ACTIONS(3968), - [anon_sym_LR_DQUOTE] = ACTIONS(3968), - [anon_sym_uR_DQUOTE] = ACTIONS(3968), - [anon_sym_UR_DQUOTE] = ACTIONS(3968), - [anon_sym_u8R_DQUOTE] = ACTIONS(3968), - [anon_sym_co_await] = ACTIONS(3966), - [anon_sym_new] = ACTIONS(3966), - [anon_sym_requires] = ACTIONS(3966), - [anon_sym_CARET_CARET] = ACTIONS(3968), - [anon_sym_LBRACK_COLON] = ACTIONS(3968), - [sym_this] = ACTIONS(3966), - }, - [STATE(906)] = { - [sym_identifier] = ACTIONS(4176), - [aux_sym_preproc_include_token1] = ACTIONS(4176), - [aux_sym_preproc_def_token1] = ACTIONS(4176), - [aux_sym_preproc_if_token1] = ACTIONS(4176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4176), - [sym_preproc_directive] = ACTIONS(4176), - [anon_sym_LPAREN2] = ACTIONS(4178), - [anon_sym_BANG] = ACTIONS(4178), - [anon_sym_TILDE] = ACTIONS(4178), - [anon_sym_DASH] = ACTIONS(4176), - [anon_sym_PLUS] = ACTIONS(4176), - [anon_sym_STAR] = ACTIONS(4178), - [anon_sym_AMP_AMP] = ACTIONS(4178), - [anon_sym_AMP] = ACTIONS(4176), - [anon_sym_SEMI] = ACTIONS(4178), - [anon_sym___extension__] = ACTIONS(4176), - [anon_sym_typedef] = ACTIONS(4176), - [anon_sym_virtual] = ACTIONS(4176), - [anon_sym_extern] = ACTIONS(4176), - [anon_sym___attribute__] = ACTIONS(4176), - [anon_sym___attribute] = ACTIONS(4176), - [anon_sym_using] = ACTIONS(4176), - [anon_sym_COLON_COLON] = ACTIONS(4178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4178), - [anon_sym___declspec] = ACTIONS(4176), - [anon_sym___based] = ACTIONS(4176), - [anon_sym___cdecl] = ACTIONS(4176), - [anon_sym___clrcall] = ACTIONS(4176), - [anon_sym___stdcall] = ACTIONS(4176), - [anon_sym___fastcall] = ACTIONS(4176), - [anon_sym___thiscall] = ACTIONS(4176), - [anon_sym___vectorcall] = ACTIONS(4176), - [anon_sym_LBRACE] = ACTIONS(4178), - [anon_sym_RBRACE] = ACTIONS(4178), - [anon_sym_signed] = ACTIONS(4176), - [anon_sym_unsigned] = ACTIONS(4176), - [anon_sym_long] = ACTIONS(4176), - [anon_sym_short] = ACTIONS(4176), - [anon_sym_LBRACK] = ACTIONS(4176), - [anon_sym_static] = ACTIONS(4176), - [anon_sym_register] = ACTIONS(4176), - [anon_sym_inline] = ACTIONS(4176), - [anon_sym___inline] = ACTIONS(4176), - [anon_sym___inline__] = ACTIONS(4176), - [anon_sym___forceinline] = ACTIONS(4176), - [anon_sym_thread_local] = ACTIONS(4176), - [anon_sym___thread] = ACTIONS(4176), - [anon_sym_const] = ACTIONS(4176), - [anon_sym_constexpr] = ACTIONS(4176), - [anon_sym_volatile] = ACTIONS(4176), - [anon_sym_restrict] = ACTIONS(4176), - [anon_sym___restrict__] = ACTIONS(4176), - [anon_sym__Atomic] = ACTIONS(4176), - [anon_sym__Noreturn] = ACTIONS(4176), - [anon_sym_noreturn] = ACTIONS(4176), - [anon_sym__Nonnull] = ACTIONS(4176), - [anon_sym_mutable] = ACTIONS(4176), - [anon_sym_constinit] = ACTIONS(4176), - [anon_sym_consteval] = ACTIONS(4176), - [anon_sym_alignas] = ACTIONS(4176), - [anon_sym__Alignas] = ACTIONS(4176), - [sym_primitive_type] = ACTIONS(4176), - [anon_sym_enum] = ACTIONS(4176), - [anon_sym_class] = ACTIONS(4176), - [anon_sym_struct] = ACTIONS(4176), - [anon_sym_union] = ACTIONS(4176), - [anon_sym_if] = ACTIONS(4176), - [anon_sym_switch] = ACTIONS(4176), - [anon_sym_case] = ACTIONS(4176), - [anon_sym_default] = ACTIONS(4176), - [anon_sym_while] = ACTIONS(4176), - [anon_sym_do] = ACTIONS(4176), - [anon_sym_for] = ACTIONS(4176), - [anon_sym_return] = ACTIONS(4176), - [anon_sym_break] = ACTIONS(4176), - [anon_sym_continue] = ACTIONS(4176), - [anon_sym_goto] = ACTIONS(4176), - [anon_sym___try] = ACTIONS(4176), - [anon_sym___leave] = ACTIONS(4176), - [anon_sym_not] = ACTIONS(4176), - [anon_sym_compl] = ACTIONS(4176), - [anon_sym_DASH_DASH] = ACTIONS(4178), - [anon_sym_PLUS_PLUS] = ACTIONS(4178), - [anon_sym_sizeof] = ACTIONS(4176), - [anon_sym___alignof__] = ACTIONS(4176), - [anon_sym___alignof] = ACTIONS(4176), - [anon_sym__alignof] = ACTIONS(4176), - [anon_sym_alignof] = ACTIONS(4176), - [anon_sym__Alignof] = ACTIONS(4176), - [anon_sym_offsetof] = ACTIONS(4176), - [anon_sym__Generic] = ACTIONS(4176), - [anon_sym_typename] = ACTIONS(4176), - [anon_sym_asm] = ACTIONS(4176), - [anon_sym___asm__] = ACTIONS(4176), - [anon_sym___asm] = ACTIONS(4176), - [sym_number_literal] = ACTIONS(4178), - [anon_sym_L_SQUOTE] = ACTIONS(4178), - [anon_sym_u_SQUOTE] = ACTIONS(4178), - [anon_sym_U_SQUOTE] = ACTIONS(4178), - [anon_sym_u8_SQUOTE] = ACTIONS(4178), - [anon_sym_SQUOTE] = ACTIONS(4178), - [anon_sym_L_DQUOTE] = ACTIONS(4178), - [anon_sym_u_DQUOTE] = ACTIONS(4178), - [anon_sym_U_DQUOTE] = ACTIONS(4178), - [anon_sym_u8_DQUOTE] = ACTIONS(4178), - [anon_sym_DQUOTE] = ACTIONS(4178), - [sym_true] = ACTIONS(4176), - [sym_false] = ACTIONS(4176), - [anon_sym_NULL] = ACTIONS(4176), - [anon_sym_nullptr] = ACTIONS(4176), + [STATE(783)] = { + [sym_identifier] = ACTIONS(3684), + [aux_sym_preproc_include_token1] = ACTIONS(3684), + [aux_sym_preproc_def_token1] = ACTIONS(3684), + [aux_sym_preproc_if_token1] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3684), + [sym_preproc_directive] = ACTIONS(3684), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_BANG] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym___extension__] = ACTIONS(3684), + [anon_sym_typedef] = ACTIONS(3684), + [anon_sym_virtual] = ACTIONS(3684), + [anon_sym_extern] = ACTIONS(3684), + [anon_sym___attribute__] = ACTIONS(3684), + [anon_sym___attribute] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_COLON_COLON] = ACTIONS(3686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), + [anon_sym___declspec] = ACTIONS(3684), + [anon_sym___based] = ACTIONS(3684), + [anon_sym___cdecl] = ACTIONS(3684), + [anon_sym___clrcall] = ACTIONS(3684), + [anon_sym___stdcall] = ACTIONS(3684), + [anon_sym___fastcall] = ACTIONS(3684), + [anon_sym___thiscall] = ACTIONS(3684), + [anon_sym___vectorcall] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_RBRACE] = ACTIONS(3686), + [anon_sym_signed] = ACTIONS(3684), + [anon_sym_unsigned] = ACTIONS(3684), + [anon_sym_long] = ACTIONS(3684), + [anon_sym_short] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_register] = ACTIONS(3684), + [anon_sym_inline] = ACTIONS(3684), + [anon_sym___inline] = ACTIONS(3684), + [anon_sym___inline__] = ACTIONS(3684), + [anon_sym___forceinline] = ACTIONS(3684), + [anon_sym_thread_local] = ACTIONS(3684), + [anon_sym___thread] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_constexpr] = ACTIONS(3684), + [anon_sym_volatile] = ACTIONS(3684), + [anon_sym_restrict] = ACTIONS(3684), + [anon_sym___restrict__] = ACTIONS(3684), + [anon_sym__Atomic] = ACTIONS(3684), + [anon_sym__Noreturn] = ACTIONS(3684), + [anon_sym_noreturn] = ACTIONS(3684), + [anon_sym__Nonnull] = ACTIONS(3684), + [anon_sym_mutable] = ACTIONS(3684), + [anon_sym_constinit] = ACTIONS(3684), + [anon_sym_consteval] = ACTIONS(3684), + [anon_sym_alignas] = ACTIONS(3684), + [anon_sym__Alignas] = ACTIONS(3684), + [sym_primitive_type] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_struct] = ACTIONS(3684), + [anon_sym_union] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_case] = ACTIONS(3684), + [anon_sym_default] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_goto] = ACTIONS(3684), + [anon_sym___try] = ACTIONS(3684), + [anon_sym___leave] = ACTIONS(3684), + [anon_sym_not] = ACTIONS(3684), + [anon_sym_compl] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_sizeof] = ACTIONS(3684), + [anon_sym___alignof__] = ACTIONS(3684), + [anon_sym___alignof] = ACTIONS(3684), + [anon_sym__alignof] = ACTIONS(3684), + [anon_sym_alignof] = ACTIONS(3684), + [anon_sym__Alignof] = ACTIONS(3684), + [anon_sym_offsetof] = ACTIONS(3684), + [anon_sym__Generic] = ACTIONS(3684), + [anon_sym_typename] = ACTIONS(3684), + [anon_sym_asm] = ACTIONS(3684), + [anon_sym___asm__] = ACTIONS(3684), + [anon_sym___asm] = ACTIONS(3684), + [sym_number_literal] = ACTIONS(3686), + [anon_sym_L_SQUOTE] = ACTIONS(3686), + [anon_sym_u_SQUOTE] = ACTIONS(3686), + [anon_sym_U_SQUOTE] = ACTIONS(3686), + [anon_sym_u8_SQUOTE] = ACTIONS(3686), + [anon_sym_SQUOTE] = ACTIONS(3686), + [anon_sym_L_DQUOTE] = ACTIONS(3686), + [anon_sym_u_DQUOTE] = ACTIONS(3686), + [anon_sym_U_DQUOTE] = ACTIONS(3686), + [anon_sym_u8_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [anon_sym_NULL] = ACTIONS(3684), + [anon_sym_nullptr] = ACTIONS(3684), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4176), - [anon_sym_decltype] = ACTIONS(4176), - [anon_sym_explicit] = ACTIONS(4176), - [anon_sym_template] = ACTIONS(4176), - [anon_sym_operator] = ACTIONS(4176), - [anon_sym_try] = ACTIONS(4176), - [anon_sym_delete] = ACTIONS(4176), - [anon_sym_throw] = ACTIONS(4176), - [anon_sym_namespace] = ACTIONS(4176), - [anon_sym_static_assert] = ACTIONS(4176), - [anon_sym_concept] = ACTIONS(4176), - [anon_sym_co_return] = ACTIONS(4176), - [anon_sym_co_yield] = ACTIONS(4176), - [anon_sym_R_DQUOTE] = ACTIONS(4178), - [anon_sym_LR_DQUOTE] = ACTIONS(4178), - [anon_sym_uR_DQUOTE] = ACTIONS(4178), - [anon_sym_UR_DQUOTE] = ACTIONS(4178), - [anon_sym_u8R_DQUOTE] = ACTIONS(4178), - [anon_sym_co_await] = ACTIONS(4176), - [anon_sym_new] = ACTIONS(4176), - [anon_sym_requires] = ACTIONS(4176), - [anon_sym_CARET_CARET] = ACTIONS(4178), - [anon_sym_LBRACK_COLON] = ACTIONS(4178), - [sym_this] = ACTIONS(4176), + [sym_auto] = ACTIONS(3684), + [anon_sym_decltype] = ACTIONS(3684), + [anon_sym_explicit] = ACTIONS(3684), + [anon_sym_export] = ACTIONS(3684), + [anon_sym_import] = ACTIONS(3684), + [anon_sym_template] = ACTIONS(3684), + [anon_sym_operator] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_static_assert] = ACTIONS(3684), + [anon_sym_concept] = ACTIONS(3684), + [anon_sym_co_return] = ACTIONS(3684), + [anon_sym_co_yield] = ACTIONS(3684), + [anon_sym_R_DQUOTE] = ACTIONS(3686), + [anon_sym_LR_DQUOTE] = ACTIONS(3686), + [anon_sym_uR_DQUOTE] = ACTIONS(3686), + [anon_sym_UR_DQUOTE] = ACTIONS(3686), + [anon_sym_u8R_DQUOTE] = ACTIONS(3686), + [anon_sym_co_await] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_requires] = ACTIONS(3684), + [anon_sym_CARET_CARET] = ACTIONS(3686), + [anon_sym_LBRACK_COLON] = ACTIONS(3686), + [sym_this] = ACTIONS(3684), }, - [STATE(907)] = { - [sym_identifier] = ACTIONS(4180), - [aux_sym_preproc_include_token1] = ACTIONS(4180), - [aux_sym_preproc_def_token1] = ACTIONS(4180), - [aux_sym_preproc_if_token1] = ACTIONS(4180), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4180), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4180), - [sym_preproc_directive] = ACTIONS(4180), - [anon_sym_LPAREN2] = ACTIONS(4182), - [anon_sym_BANG] = ACTIONS(4182), - [anon_sym_TILDE] = ACTIONS(4182), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_STAR] = ACTIONS(4182), - [anon_sym_AMP_AMP] = ACTIONS(4182), - [anon_sym_AMP] = ACTIONS(4180), - [anon_sym_SEMI] = ACTIONS(4182), - [anon_sym___extension__] = ACTIONS(4180), - [anon_sym_typedef] = ACTIONS(4180), - [anon_sym_virtual] = ACTIONS(4180), - [anon_sym_extern] = ACTIONS(4180), - [anon_sym___attribute__] = ACTIONS(4180), - [anon_sym___attribute] = ACTIONS(4180), - [anon_sym_using] = ACTIONS(4180), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4182), - [anon_sym___declspec] = ACTIONS(4180), - [anon_sym___based] = ACTIONS(4180), - [anon_sym___cdecl] = ACTIONS(4180), - [anon_sym___clrcall] = ACTIONS(4180), - [anon_sym___stdcall] = ACTIONS(4180), - [anon_sym___fastcall] = ACTIONS(4180), - [anon_sym___thiscall] = ACTIONS(4180), - [anon_sym___vectorcall] = ACTIONS(4180), - [anon_sym_LBRACE] = ACTIONS(4182), - [anon_sym_RBRACE] = ACTIONS(4182), - [anon_sym_signed] = ACTIONS(4180), - [anon_sym_unsigned] = ACTIONS(4180), - [anon_sym_long] = ACTIONS(4180), - [anon_sym_short] = ACTIONS(4180), - [anon_sym_LBRACK] = ACTIONS(4180), - [anon_sym_static] = ACTIONS(4180), - [anon_sym_register] = ACTIONS(4180), - [anon_sym_inline] = ACTIONS(4180), - [anon_sym___inline] = ACTIONS(4180), - [anon_sym___inline__] = ACTIONS(4180), - [anon_sym___forceinline] = ACTIONS(4180), - [anon_sym_thread_local] = ACTIONS(4180), - [anon_sym___thread] = ACTIONS(4180), - [anon_sym_const] = ACTIONS(4180), - [anon_sym_constexpr] = ACTIONS(4180), - [anon_sym_volatile] = ACTIONS(4180), - [anon_sym_restrict] = ACTIONS(4180), - [anon_sym___restrict__] = ACTIONS(4180), - [anon_sym__Atomic] = ACTIONS(4180), - [anon_sym__Noreturn] = ACTIONS(4180), - [anon_sym_noreturn] = ACTIONS(4180), - [anon_sym__Nonnull] = ACTIONS(4180), - [anon_sym_mutable] = ACTIONS(4180), - [anon_sym_constinit] = ACTIONS(4180), - [anon_sym_consteval] = ACTIONS(4180), - [anon_sym_alignas] = ACTIONS(4180), - [anon_sym__Alignas] = ACTIONS(4180), - [sym_primitive_type] = ACTIONS(4180), - [anon_sym_enum] = ACTIONS(4180), - [anon_sym_class] = ACTIONS(4180), - [anon_sym_struct] = ACTIONS(4180), - [anon_sym_union] = ACTIONS(4180), - [anon_sym_if] = ACTIONS(4180), - [anon_sym_switch] = ACTIONS(4180), - [anon_sym_case] = ACTIONS(4180), - [anon_sym_default] = ACTIONS(4180), - [anon_sym_while] = ACTIONS(4180), - [anon_sym_do] = ACTIONS(4180), - [anon_sym_for] = ACTIONS(4180), - [anon_sym_return] = ACTIONS(4180), - [anon_sym_break] = ACTIONS(4180), - [anon_sym_continue] = ACTIONS(4180), - [anon_sym_goto] = ACTIONS(4180), - [anon_sym___try] = ACTIONS(4180), - [anon_sym___leave] = ACTIONS(4180), - [anon_sym_not] = ACTIONS(4180), - [anon_sym_compl] = ACTIONS(4180), - [anon_sym_DASH_DASH] = ACTIONS(4182), - [anon_sym_PLUS_PLUS] = ACTIONS(4182), - [anon_sym_sizeof] = ACTIONS(4180), - [anon_sym___alignof__] = ACTIONS(4180), - [anon_sym___alignof] = ACTIONS(4180), - [anon_sym__alignof] = ACTIONS(4180), - [anon_sym_alignof] = ACTIONS(4180), - [anon_sym__Alignof] = ACTIONS(4180), - [anon_sym_offsetof] = ACTIONS(4180), - [anon_sym__Generic] = ACTIONS(4180), - [anon_sym_typename] = ACTIONS(4180), - [anon_sym_asm] = ACTIONS(4180), - [anon_sym___asm__] = ACTIONS(4180), - [anon_sym___asm] = ACTIONS(4180), - [sym_number_literal] = ACTIONS(4182), - [anon_sym_L_SQUOTE] = ACTIONS(4182), - [anon_sym_u_SQUOTE] = ACTIONS(4182), - [anon_sym_U_SQUOTE] = ACTIONS(4182), - [anon_sym_u8_SQUOTE] = ACTIONS(4182), - [anon_sym_SQUOTE] = ACTIONS(4182), - [anon_sym_L_DQUOTE] = ACTIONS(4182), - [anon_sym_u_DQUOTE] = ACTIONS(4182), - [anon_sym_U_DQUOTE] = ACTIONS(4182), - [anon_sym_u8_DQUOTE] = ACTIONS(4182), - [anon_sym_DQUOTE] = ACTIONS(4182), - [sym_true] = ACTIONS(4180), - [sym_false] = ACTIONS(4180), - [anon_sym_NULL] = ACTIONS(4180), - [anon_sym_nullptr] = ACTIONS(4180), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4180), - [anon_sym_decltype] = ACTIONS(4180), - [anon_sym_explicit] = ACTIONS(4180), - [anon_sym_template] = ACTIONS(4180), - [anon_sym_operator] = ACTIONS(4180), - [anon_sym_try] = ACTIONS(4180), - [anon_sym_delete] = ACTIONS(4180), - [anon_sym_throw] = ACTIONS(4180), - [anon_sym_namespace] = ACTIONS(4180), - [anon_sym_static_assert] = ACTIONS(4180), - [anon_sym_concept] = ACTIONS(4180), - [anon_sym_co_return] = ACTIONS(4180), - [anon_sym_co_yield] = ACTIONS(4180), - [anon_sym_R_DQUOTE] = ACTIONS(4182), - [anon_sym_LR_DQUOTE] = ACTIONS(4182), - [anon_sym_uR_DQUOTE] = ACTIONS(4182), - [anon_sym_UR_DQUOTE] = ACTIONS(4182), - [anon_sym_u8R_DQUOTE] = ACTIONS(4182), - [anon_sym_co_await] = ACTIONS(4180), - [anon_sym_new] = ACTIONS(4180), - [anon_sym_requires] = ACTIONS(4180), - [anon_sym_CARET_CARET] = ACTIONS(4182), - [anon_sym_LBRACK_COLON] = ACTIONS(4182), - [sym_this] = ACTIONS(4180), + [STATE(784)] = { + [sym_identifier] = ACTIONS(4136), + [aux_sym_preproc_include_token1] = ACTIONS(4136), + [aux_sym_preproc_def_token1] = ACTIONS(4136), + [aux_sym_preproc_if_token1] = ACTIONS(4136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4136), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4136), + [sym_preproc_directive] = ACTIONS(4136), + [anon_sym_LPAREN2] = ACTIONS(4138), + [anon_sym_BANG] = ACTIONS(4138), + [anon_sym_TILDE] = ACTIONS(4138), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4136), + [anon_sym_STAR] = ACTIONS(4138), + [anon_sym_AMP_AMP] = ACTIONS(4138), + [anon_sym_AMP] = ACTIONS(4136), + [anon_sym_SEMI] = ACTIONS(4138), + [anon_sym___extension__] = ACTIONS(4136), + [anon_sym_typedef] = ACTIONS(4136), + [anon_sym_virtual] = ACTIONS(4136), + [anon_sym_extern] = ACTIONS(4136), + [anon_sym___attribute__] = ACTIONS(4136), + [anon_sym___attribute] = ACTIONS(4136), + [anon_sym_using] = ACTIONS(4136), + [anon_sym_COLON_COLON] = ACTIONS(4138), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4138), + [anon_sym___declspec] = ACTIONS(4136), + [anon_sym___based] = ACTIONS(4136), + [anon_sym___cdecl] = ACTIONS(4136), + [anon_sym___clrcall] = ACTIONS(4136), + [anon_sym___stdcall] = ACTIONS(4136), + [anon_sym___fastcall] = ACTIONS(4136), + [anon_sym___thiscall] = ACTIONS(4136), + [anon_sym___vectorcall] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(4138), + [anon_sym_RBRACE] = ACTIONS(4138), + [anon_sym_signed] = ACTIONS(4136), + [anon_sym_unsigned] = ACTIONS(4136), + [anon_sym_long] = ACTIONS(4136), + [anon_sym_short] = ACTIONS(4136), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_static] = ACTIONS(4136), + [anon_sym_register] = ACTIONS(4136), + [anon_sym_inline] = ACTIONS(4136), + [anon_sym___inline] = ACTIONS(4136), + [anon_sym___inline__] = ACTIONS(4136), + [anon_sym___forceinline] = ACTIONS(4136), + [anon_sym_thread_local] = ACTIONS(4136), + [anon_sym___thread] = ACTIONS(4136), + [anon_sym_const] = ACTIONS(4136), + [anon_sym_constexpr] = ACTIONS(4136), + [anon_sym_volatile] = ACTIONS(4136), + [anon_sym_restrict] = ACTIONS(4136), + [anon_sym___restrict__] = ACTIONS(4136), + [anon_sym__Atomic] = ACTIONS(4136), + [anon_sym__Noreturn] = ACTIONS(4136), + [anon_sym_noreturn] = ACTIONS(4136), + [anon_sym__Nonnull] = ACTIONS(4136), + [anon_sym_mutable] = ACTIONS(4136), + [anon_sym_constinit] = ACTIONS(4136), + [anon_sym_consteval] = ACTIONS(4136), + [anon_sym_alignas] = ACTIONS(4136), + [anon_sym__Alignas] = ACTIONS(4136), + [sym_primitive_type] = ACTIONS(4136), + [anon_sym_enum] = ACTIONS(4136), + [anon_sym_class] = ACTIONS(4136), + [anon_sym_struct] = ACTIONS(4136), + [anon_sym_union] = ACTIONS(4136), + [anon_sym_if] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(4136), + [anon_sym_case] = ACTIONS(4136), + [anon_sym_default] = ACTIONS(4136), + [anon_sym_while] = ACTIONS(4136), + [anon_sym_do] = ACTIONS(4136), + [anon_sym_for] = ACTIONS(4136), + [anon_sym_return] = ACTIONS(4136), + [anon_sym_break] = ACTIONS(4136), + [anon_sym_continue] = ACTIONS(4136), + [anon_sym_goto] = ACTIONS(4136), + [anon_sym___try] = ACTIONS(4136), + [anon_sym___leave] = ACTIONS(4136), + [anon_sym_not] = ACTIONS(4136), + [anon_sym_compl] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4138), + [anon_sym_PLUS_PLUS] = ACTIONS(4138), + [anon_sym_sizeof] = ACTIONS(4136), + [anon_sym___alignof__] = ACTIONS(4136), + [anon_sym___alignof] = ACTIONS(4136), + [anon_sym__alignof] = ACTIONS(4136), + [anon_sym_alignof] = ACTIONS(4136), + [anon_sym__Alignof] = ACTIONS(4136), + [anon_sym_offsetof] = ACTIONS(4136), + [anon_sym__Generic] = ACTIONS(4136), + [anon_sym_typename] = ACTIONS(4136), + [anon_sym_asm] = ACTIONS(4136), + [anon_sym___asm__] = ACTIONS(4136), + [anon_sym___asm] = ACTIONS(4136), + [sym_number_literal] = ACTIONS(4138), + [anon_sym_L_SQUOTE] = ACTIONS(4138), + [anon_sym_u_SQUOTE] = ACTIONS(4138), + [anon_sym_U_SQUOTE] = ACTIONS(4138), + [anon_sym_u8_SQUOTE] = ACTIONS(4138), + [anon_sym_SQUOTE] = ACTIONS(4138), + [anon_sym_L_DQUOTE] = ACTIONS(4138), + [anon_sym_u_DQUOTE] = ACTIONS(4138), + [anon_sym_U_DQUOTE] = ACTIONS(4138), + [anon_sym_u8_DQUOTE] = ACTIONS(4138), + [anon_sym_DQUOTE] = ACTIONS(4138), + [sym_true] = ACTIONS(4136), + [sym_false] = ACTIONS(4136), + [anon_sym_NULL] = ACTIONS(4136), + [anon_sym_nullptr] = ACTIONS(4136), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4136), + [anon_sym_decltype] = ACTIONS(4136), + [anon_sym_explicit] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4136), + [anon_sym_import] = ACTIONS(4136), + [anon_sym_template] = ACTIONS(4136), + [anon_sym_operator] = ACTIONS(4136), + [anon_sym_try] = ACTIONS(4136), + [anon_sym_delete] = ACTIONS(4136), + [anon_sym_throw] = ACTIONS(4136), + [anon_sym_namespace] = ACTIONS(4136), + [anon_sym_static_assert] = ACTIONS(4136), + [anon_sym_concept] = ACTIONS(4136), + [anon_sym_co_return] = ACTIONS(4136), + [anon_sym_co_yield] = ACTIONS(4136), + [anon_sym_R_DQUOTE] = ACTIONS(4138), + [anon_sym_LR_DQUOTE] = ACTIONS(4138), + [anon_sym_uR_DQUOTE] = ACTIONS(4138), + [anon_sym_UR_DQUOTE] = ACTIONS(4138), + [anon_sym_u8R_DQUOTE] = ACTIONS(4138), + [anon_sym_co_await] = ACTIONS(4136), + [anon_sym_new] = ACTIONS(4136), + [anon_sym_requires] = ACTIONS(4136), + [anon_sym_CARET_CARET] = ACTIONS(4138), + [anon_sym_LBRACK_COLON] = ACTIONS(4138), + [sym_this] = ACTIONS(4136), }, - [STATE(908)] = { - [sym_identifier] = ACTIONS(4184), - [aux_sym_preproc_include_token1] = ACTIONS(4184), - [aux_sym_preproc_def_token1] = ACTIONS(4184), - [aux_sym_preproc_if_token1] = ACTIONS(4184), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4184), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4184), - [sym_preproc_directive] = ACTIONS(4184), - [anon_sym_LPAREN2] = ACTIONS(4186), - [anon_sym_BANG] = ACTIONS(4186), - [anon_sym_TILDE] = ACTIONS(4186), - [anon_sym_DASH] = ACTIONS(4184), - [anon_sym_PLUS] = ACTIONS(4184), - [anon_sym_STAR] = ACTIONS(4186), - [anon_sym_AMP_AMP] = ACTIONS(4186), - [anon_sym_AMP] = ACTIONS(4184), - [anon_sym_SEMI] = ACTIONS(4186), - [anon_sym___extension__] = ACTIONS(4184), - [anon_sym_typedef] = ACTIONS(4184), - [anon_sym_virtual] = ACTIONS(4184), - [anon_sym_extern] = ACTIONS(4184), - [anon_sym___attribute__] = ACTIONS(4184), - [anon_sym___attribute] = ACTIONS(4184), - [anon_sym_using] = ACTIONS(4184), - [anon_sym_COLON_COLON] = ACTIONS(4186), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4186), - [anon_sym___declspec] = ACTIONS(4184), - [anon_sym___based] = ACTIONS(4184), - [anon_sym___cdecl] = ACTIONS(4184), - [anon_sym___clrcall] = ACTIONS(4184), - [anon_sym___stdcall] = ACTIONS(4184), - [anon_sym___fastcall] = ACTIONS(4184), - [anon_sym___thiscall] = ACTIONS(4184), - [anon_sym___vectorcall] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(4186), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_signed] = ACTIONS(4184), - [anon_sym_unsigned] = ACTIONS(4184), - [anon_sym_long] = ACTIONS(4184), - [anon_sym_short] = ACTIONS(4184), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_static] = ACTIONS(4184), - [anon_sym_register] = ACTIONS(4184), - [anon_sym_inline] = ACTIONS(4184), - [anon_sym___inline] = ACTIONS(4184), - [anon_sym___inline__] = ACTIONS(4184), - [anon_sym___forceinline] = ACTIONS(4184), - [anon_sym_thread_local] = ACTIONS(4184), - [anon_sym___thread] = ACTIONS(4184), - [anon_sym_const] = ACTIONS(4184), - [anon_sym_constexpr] = ACTIONS(4184), - [anon_sym_volatile] = ACTIONS(4184), - [anon_sym_restrict] = ACTIONS(4184), - [anon_sym___restrict__] = ACTIONS(4184), - [anon_sym__Atomic] = ACTIONS(4184), - [anon_sym__Noreturn] = ACTIONS(4184), - [anon_sym_noreturn] = ACTIONS(4184), - [anon_sym__Nonnull] = ACTIONS(4184), - [anon_sym_mutable] = ACTIONS(4184), - [anon_sym_constinit] = ACTIONS(4184), - [anon_sym_consteval] = ACTIONS(4184), - [anon_sym_alignas] = ACTIONS(4184), - [anon_sym__Alignas] = ACTIONS(4184), - [sym_primitive_type] = ACTIONS(4184), - [anon_sym_enum] = ACTIONS(4184), - [anon_sym_class] = ACTIONS(4184), - [anon_sym_struct] = ACTIONS(4184), - [anon_sym_union] = ACTIONS(4184), - [anon_sym_if] = ACTIONS(4184), - [anon_sym_switch] = ACTIONS(4184), - [anon_sym_case] = ACTIONS(4184), - [anon_sym_default] = ACTIONS(4184), - [anon_sym_while] = ACTIONS(4184), - [anon_sym_do] = ACTIONS(4184), - [anon_sym_for] = ACTIONS(4184), - [anon_sym_return] = ACTIONS(4184), - [anon_sym_break] = ACTIONS(4184), - [anon_sym_continue] = ACTIONS(4184), - [anon_sym_goto] = ACTIONS(4184), - [anon_sym___try] = ACTIONS(4184), - [anon_sym___leave] = ACTIONS(4184), - [anon_sym_not] = ACTIONS(4184), - [anon_sym_compl] = ACTIONS(4184), - [anon_sym_DASH_DASH] = ACTIONS(4186), - [anon_sym_PLUS_PLUS] = ACTIONS(4186), - [anon_sym_sizeof] = ACTIONS(4184), - [anon_sym___alignof__] = ACTIONS(4184), - [anon_sym___alignof] = ACTIONS(4184), - [anon_sym__alignof] = ACTIONS(4184), - [anon_sym_alignof] = ACTIONS(4184), - [anon_sym__Alignof] = ACTIONS(4184), - [anon_sym_offsetof] = ACTIONS(4184), - [anon_sym__Generic] = ACTIONS(4184), - [anon_sym_typename] = ACTIONS(4184), - [anon_sym_asm] = ACTIONS(4184), - [anon_sym___asm__] = ACTIONS(4184), - [anon_sym___asm] = ACTIONS(4184), - [sym_number_literal] = ACTIONS(4186), - [anon_sym_L_SQUOTE] = ACTIONS(4186), - [anon_sym_u_SQUOTE] = ACTIONS(4186), - [anon_sym_U_SQUOTE] = ACTIONS(4186), - [anon_sym_u8_SQUOTE] = ACTIONS(4186), - [anon_sym_SQUOTE] = ACTIONS(4186), - [anon_sym_L_DQUOTE] = ACTIONS(4186), - [anon_sym_u_DQUOTE] = ACTIONS(4186), - [anon_sym_U_DQUOTE] = ACTIONS(4186), - [anon_sym_u8_DQUOTE] = ACTIONS(4186), - [anon_sym_DQUOTE] = ACTIONS(4186), - [sym_true] = ACTIONS(4184), - [sym_false] = ACTIONS(4184), - [anon_sym_NULL] = ACTIONS(4184), - [anon_sym_nullptr] = ACTIONS(4184), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4184), - [anon_sym_decltype] = ACTIONS(4184), - [anon_sym_explicit] = ACTIONS(4184), - [anon_sym_template] = ACTIONS(4184), - [anon_sym_operator] = ACTIONS(4184), - [anon_sym_try] = ACTIONS(4184), - [anon_sym_delete] = ACTIONS(4184), - [anon_sym_throw] = ACTIONS(4184), - [anon_sym_namespace] = ACTIONS(4184), - [anon_sym_static_assert] = ACTIONS(4184), - [anon_sym_concept] = ACTIONS(4184), - [anon_sym_co_return] = ACTIONS(4184), - [anon_sym_co_yield] = ACTIONS(4184), - [anon_sym_R_DQUOTE] = ACTIONS(4186), - [anon_sym_LR_DQUOTE] = ACTIONS(4186), - [anon_sym_uR_DQUOTE] = ACTIONS(4186), - [anon_sym_UR_DQUOTE] = ACTIONS(4186), - [anon_sym_u8R_DQUOTE] = ACTIONS(4186), - [anon_sym_co_await] = ACTIONS(4184), - [anon_sym_new] = ACTIONS(4184), - [anon_sym_requires] = ACTIONS(4184), - [anon_sym_CARET_CARET] = ACTIONS(4186), - [anon_sym_LBRACK_COLON] = ACTIONS(4186), - [sym_this] = ACTIONS(4184), + [STATE(785)] = { + [sym_identifier] = ACTIONS(4140), + [aux_sym_preproc_include_token1] = ACTIONS(4140), + [aux_sym_preproc_def_token1] = ACTIONS(4140), + [aux_sym_preproc_if_token1] = ACTIONS(4140), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4140), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4140), + [sym_preproc_directive] = ACTIONS(4140), + [anon_sym_LPAREN2] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4142), + [anon_sym_TILDE] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym___extension__] = ACTIONS(4140), + [anon_sym_typedef] = ACTIONS(4140), + [anon_sym_virtual] = ACTIONS(4140), + [anon_sym_extern] = ACTIONS(4140), + [anon_sym___attribute__] = ACTIONS(4140), + [anon_sym___attribute] = ACTIONS(4140), + [anon_sym_using] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4142), + [anon_sym___declspec] = ACTIONS(4140), + [anon_sym___based] = ACTIONS(4140), + [anon_sym___cdecl] = ACTIONS(4140), + [anon_sym___clrcall] = ACTIONS(4140), + [anon_sym___stdcall] = ACTIONS(4140), + [anon_sym___fastcall] = ACTIONS(4140), + [anon_sym___thiscall] = ACTIONS(4140), + [anon_sym___vectorcall] = ACTIONS(4140), + [anon_sym_LBRACE] = ACTIONS(4142), + [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_signed] = ACTIONS(4140), + [anon_sym_unsigned] = ACTIONS(4140), + [anon_sym_long] = ACTIONS(4140), + [anon_sym_short] = ACTIONS(4140), + [anon_sym_LBRACK] = ACTIONS(4140), + [anon_sym_static] = ACTIONS(4140), + [anon_sym_register] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym___inline] = ACTIONS(4140), + [anon_sym___inline__] = ACTIONS(4140), + [anon_sym___forceinline] = ACTIONS(4140), + [anon_sym_thread_local] = ACTIONS(4140), + [anon_sym___thread] = ACTIONS(4140), + [anon_sym_const] = ACTIONS(4140), + [anon_sym_constexpr] = ACTIONS(4140), + [anon_sym_volatile] = ACTIONS(4140), + [anon_sym_restrict] = ACTIONS(4140), + [anon_sym___restrict__] = ACTIONS(4140), + [anon_sym__Atomic] = ACTIONS(4140), + [anon_sym__Noreturn] = ACTIONS(4140), + [anon_sym_noreturn] = ACTIONS(4140), + [anon_sym__Nonnull] = ACTIONS(4140), + [anon_sym_mutable] = ACTIONS(4140), + [anon_sym_constinit] = ACTIONS(4140), + [anon_sym_consteval] = ACTIONS(4140), + [anon_sym_alignas] = ACTIONS(4140), + [anon_sym__Alignas] = ACTIONS(4140), + [sym_primitive_type] = ACTIONS(4140), + [anon_sym_enum] = ACTIONS(4140), + [anon_sym_class] = ACTIONS(4140), + [anon_sym_struct] = ACTIONS(4140), + [anon_sym_union] = ACTIONS(4140), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_switch] = ACTIONS(4140), + [anon_sym_case] = ACTIONS(4140), + [anon_sym_default] = ACTIONS(4140), + [anon_sym_while] = ACTIONS(4140), + [anon_sym_do] = ACTIONS(4140), + [anon_sym_for] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_goto] = ACTIONS(4140), + [anon_sym___try] = ACTIONS(4140), + [anon_sym___leave] = ACTIONS(4140), + [anon_sym_not] = ACTIONS(4140), + [anon_sym_compl] = ACTIONS(4140), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_sizeof] = ACTIONS(4140), + [anon_sym___alignof__] = ACTIONS(4140), + [anon_sym___alignof] = ACTIONS(4140), + [anon_sym__alignof] = ACTIONS(4140), + [anon_sym_alignof] = ACTIONS(4140), + [anon_sym__Alignof] = ACTIONS(4140), + [anon_sym_offsetof] = ACTIONS(4140), + [anon_sym__Generic] = ACTIONS(4140), + [anon_sym_typename] = ACTIONS(4140), + [anon_sym_asm] = ACTIONS(4140), + [anon_sym___asm__] = ACTIONS(4140), + [anon_sym___asm] = ACTIONS(4140), + [sym_number_literal] = ACTIONS(4142), + [anon_sym_L_SQUOTE] = ACTIONS(4142), + [anon_sym_u_SQUOTE] = ACTIONS(4142), + [anon_sym_U_SQUOTE] = ACTIONS(4142), + [anon_sym_u8_SQUOTE] = ACTIONS(4142), + [anon_sym_SQUOTE] = ACTIONS(4142), + [anon_sym_L_DQUOTE] = ACTIONS(4142), + [anon_sym_u_DQUOTE] = ACTIONS(4142), + [anon_sym_U_DQUOTE] = ACTIONS(4142), + [anon_sym_u8_DQUOTE] = ACTIONS(4142), + [anon_sym_DQUOTE] = ACTIONS(4142), + [sym_true] = ACTIONS(4140), + [sym_false] = ACTIONS(4140), + [anon_sym_NULL] = ACTIONS(4140), + [anon_sym_nullptr] = ACTIONS(4140), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4140), + [anon_sym_decltype] = ACTIONS(4140), + [anon_sym_explicit] = ACTIONS(4140), + [anon_sym_export] = ACTIONS(4140), + [anon_sym_import] = ACTIONS(4140), + [anon_sym_template] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_delete] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_namespace] = ACTIONS(4140), + [anon_sym_static_assert] = ACTIONS(4140), + [anon_sym_concept] = ACTIONS(4140), + [anon_sym_co_return] = ACTIONS(4140), + [anon_sym_co_yield] = ACTIONS(4140), + [anon_sym_R_DQUOTE] = ACTIONS(4142), + [anon_sym_LR_DQUOTE] = ACTIONS(4142), + [anon_sym_uR_DQUOTE] = ACTIONS(4142), + [anon_sym_UR_DQUOTE] = ACTIONS(4142), + [anon_sym_u8R_DQUOTE] = ACTIONS(4142), + [anon_sym_co_await] = ACTIONS(4140), + [anon_sym_new] = ACTIONS(4140), + [anon_sym_requires] = ACTIONS(4140), + [anon_sym_CARET_CARET] = ACTIONS(4142), + [anon_sym_LBRACK_COLON] = ACTIONS(4142), + [sym_this] = ACTIONS(4140), }, - [STATE(909)] = { - [sym_identifier] = ACTIONS(4188), - [aux_sym_preproc_include_token1] = ACTIONS(4188), - [aux_sym_preproc_def_token1] = ACTIONS(4188), - [aux_sym_preproc_if_token1] = ACTIONS(4188), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4188), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4188), - [sym_preproc_directive] = ACTIONS(4188), - [anon_sym_LPAREN2] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4190), - [anon_sym_TILDE] = ACTIONS(4190), - [anon_sym_DASH] = ACTIONS(4188), - [anon_sym_PLUS] = ACTIONS(4188), - [anon_sym_STAR] = ACTIONS(4190), - [anon_sym_AMP_AMP] = ACTIONS(4190), - [anon_sym_AMP] = ACTIONS(4188), - [anon_sym_SEMI] = ACTIONS(4190), - [anon_sym___extension__] = ACTIONS(4188), - [anon_sym_typedef] = ACTIONS(4188), - [anon_sym_virtual] = ACTIONS(4188), - [anon_sym_extern] = ACTIONS(4188), - [anon_sym___attribute__] = ACTIONS(4188), - [anon_sym___attribute] = ACTIONS(4188), - [anon_sym_using] = ACTIONS(4188), - [anon_sym_COLON_COLON] = ACTIONS(4190), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4190), - [anon_sym___declspec] = ACTIONS(4188), - [anon_sym___based] = ACTIONS(4188), - [anon_sym___cdecl] = ACTIONS(4188), - [anon_sym___clrcall] = ACTIONS(4188), - [anon_sym___stdcall] = ACTIONS(4188), - [anon_sym___fastcall] = ACTIONS(4188), - [anon_sym___thiscall] = ACTIONS(4188), - [anon_sym___vectorcall] = ACTIONS(4188), - [anon_sym_LBRACE] = ACTIONS(4190), - [anon_sym_RBRACE] = ACTIONS(4190), - [anon_sym_signed] = ACTIONS(4188), - [anon_sym_unsigned] = ACTIONS(4188), - [anon_sym_long] = ACTIONS(4188), - [anon_sym_short] = ACTIONS(4188), - [anon_sym_LBRACK] = ACTIONS(4188), - [anon_sym_static] = ACTIONS(4188), - [anon_sym_register] = ACTIONS(4188), - [anon_sym_inline] = ACTIONS(4188), - [anon_sym___inline] = ACTIONS(4188), - [anon_sym___inline__] = ACTIONS(4188), - [anon_sym___forceinline] = ACTIONS(4188), - [anon_sym_thread_local] = ACTIONS(4188), - [anon_sym___thread] = ACTIONS(4188), - [anon_sym_const] = ACTIONS(4188), - [anon_sym_constexpr] = ACTIONS(4188), - [anon_sym_volatile] = ACTIONS(4188), - [anon_sym_restrict] = ACTIONS(4188), - [anon_sym___restrict__] = ACTIONS(4188), - [anon_sym__Atomic] = ACTIONS(4188), - [anon_sym__Noreturn] = ACTIONS(4188), - [anon_sym_noreturn] = ACTIONS(4188), - [anon_sym__Nonnull] = ACTIONS(4188), - [anon_sym_mutable] = ACTIONS(4188), - [anon_sym_constinit] = ACTIONS(4188), - [anon_sym_consteval] = ACTIONS(4188), - [anon_sym_alignas] = ACTIONS(4188), - [anon_sym__Alignas] = ACTIONS(4188), - [sym_primitive_type] = ACTIONS(4188), - [anon_sym_enum] = ACTIONS(4188), - [anon_sym_class] = ACTIONS(4188), - [anon_sym_struct] = ACTIONS(4188), - [anon_sym_union] = ACTIONS(4188), - [anon_sym_if] = ACTIONS(4188), - [anon_sym_switch] = ACTIONS(4188), - [anon_sym_case] = ACTIONS(4188), - [anon_sym_default] = ACTIONS(4188), - [anon_sym_while] = ACTIONS(4188), - [anon_sym_do] = ACTIONS(4188), - [anon_sym_for] = ACTIONS(4188), - [anon_sym_return] = ACTIONS(4188), - [anon_sym_break] = ACTIONS(4188), - [anon_sym_continue] = ACTIONS(4188), - [anon_sym_goto] = ACTIONS(4188), - [anon_sym___try] = ACTIONS(4188), - [anon_sym___leave] = ACTIONS(4188), - [anon_sym_not] = ACTIONS(4188), - [anon_sym_compl] = ACTIONS(4188), - [anon_sym_DASH_DASH] = ACTIONS(4190), - [anon_sym_PLUS_PLUS] = ACTIONS(4190), - [anon_sym_sizeof] = ACTIONS(4188), - [anon_sym___alignof__] = ACTIONS(4188), - [anon_sym___alignof] = ACTIONS(4188), - [anon_sym__alignof] = ACTIONS(4188), - [anon_sym_alignof] = ACTIONS(4188), - [anon_sym__Alignof] = ACTIONS(4188), - [anon_sym_offsetof] = ACTIONS(4188), - [anon_sym__Generic] = ACTIONS(4188), - [anon_sym_typename] = ACTIONS(4188), - [anon_sym_asm] = ACTIONS(4188), - [anon_sym___asm__] = ACTIONS(4188), - [anon_sym___asm] = ACTIONS(4188), - [sym_number_literal] = ACTIONS(4190), - [anon_sym_L_SQUOTE] = ACTIONS(4190), - [anon_sym_u_SQUOTE] = ACTIONS(4190), - [anon_sym_U_SQUOTE] = ACTIONS(4190), - [anon_sym_u8_SQUOTE] = ACTIONS(4190), - [anon_sym_SQUOTE] = ACTIONS(4190), - [anon_sym_L_DQUOTE] = ACTIONS(4190), - [anon_sym_u_DQUOTE] = ACTIONS(4190), - [anon_sym_U_DQUOTE] = ACTIONS(4190), - [anon_sym_u8_DQUOTE] = ACTIONS(4190), - [anon_sym_DQUOTE] = ACTIONS(4190), - [sym_true] = ACTIONS(4188), - [sym_false] = ACTIONS(4188), - [anon_sym_NULL] = ACTIONS(4188), - [anon_sym_nullptr] = ACTIONS(4188), + [STATE(786)] = { + [sym_identifier] = ACTIONS(4144), + [aux_sym_preproc_include_token1] = ACTIONS(4144), + [aux_sym_preproc_def_token1] = ACTIONS(4144), + [aux_sym_preproc_if_token1] = ACTIONS(4144), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4144), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4144), + [sym_preproc_directive] = ACTIONS(4144), + [anon_sym_LPAREN2] = ACTIONS(4146), + [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_TILDE] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4144), + [anon_sym_STAR] = ACTIONS(4146), + [anon_sym_AMP_AMP] = ACTIONS(4146), + [anon_sym_AMP] = ACTIONS(4144), + [anon_sym_SEMI] = ACTIONS(4146), + [anon_sym___extension__] = ACTIONS(4144), + [anon_sym_typedef] = ACTIONS(4144), + [anon_sym_virtual] = ACTIONS(4144), + [anon_sym_extern] = ACTIONS(4144), + [anon_sym___attribute__] = ACTIONS(4144), + [anon_sym___attribute] = ACTIONS(4144), + [anon_sym_using] = ACTIONS(4144), + [anon_sym_COLON_COLON] = ACTIONS(4146), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4146), + [anon_sym___declspec] = ACTIONS(4144), + [anon_sym___based] = ACTIONS(4144), + [anon_sym___cdecl] = ACTIONS(4144), + [anon_sym___clrcall] = ACTIONS(4144), + [anon_sym___stdcall] = ACTIONS(4144), + [anon_sym___fastcall] = ACTIONS(4144), + [anon_sym___thiscall] = ACTIONS(4144), + [anon_sym___vectorcall] = ACTIONS(4144), + [anon_sym_LBRACE] = ACTIONS(4146), + [anon_sym_RBRACE] = ACTIONS(4146), + [anon_sym_signed] = ACTIONS(4144), + [anon_sym_unsigned] = ACTIONS(4144), + [anon_sym_long] = ACTIONS(4144), + [anon_sym_short] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_static] = ACTIONS(4144), + [anon_sym_register] = ACTIONS(4144), + [anon_sym_inline] = ACTIONS(4144), + [anon_sym___inline] = ACTIONS(4144), + [anon_sym___inline__] = ACTIONS(4144), + [anon_sym___forceinline] = ACTIONS(4144), + [anon_sym_thread_local] = ACTIONS(4144), + [anon_sym___thread] = ACTIONS(4144), + [anon_sym_const] = ACTIONS(4144), + [anon_sym_constexpr] = ACTIONS(4144), + [anon_sym_volatile] = ACTIONS(4144), + [anon_sym_restrict] = ACTIONS(4144), + [anon_sym___restrict__] = ACTIONS(4144), + [anon_sym__Atomic] = ACTIONS(4144), + [anon_sym__Noreturn] = ACTIONS(4144), + [anon_sym_noreturn] = ACTIONS(4144), + [anon_sym__Nonnull] = ACTIONS(4144), + [anon_sym_mutable] = ACTIONS(4144), + [anon_sym_constinit] = ACTIONS(4144), + [anon_sym_consteval] = ACTIONS(4144), + [anon_sym_alignas] = ACTIONS(4144), + [anon_sym__Alignas] = ACTIONS(4144), + [sym_primitive_type] = ACTIONS(4144), + [anon_sym_enum] = ACTIONS(4144), + [anon_sym_class] = ACTIONS(4144), + [anon_sym_struct] = ACTIONS(4144), + [anon_sym_union] = ACTIONS(4144), + [anon_sym_if] = ACTIONS(4144), + [anon_sym_switch] = ACTIONS(4144), + [anon_sym_case] = ACTIONS(4144), + [anon_sym_default] = ACTIONS(4144), + [anon_sym_while] = ACTIONS(4144), + [anon_sym_do] = ACTIONS(4144), + [anon_sym_for] = ACTIONS(4144), + [anon_sym_return] = ACTIONS(4144), + [anon_sym_break] = ACTIONS(4144), + [anon_sym_continue] = ACTIONS(4144), + [anon_sym_goto] = ACTIONS(4144), + [anon_sym___try] = ACTIONS(4144), + [anon_sym___leave] = ACTIONS(4144), + [anon_sym_not] = ACTIONS(4144), + [anon_sym_compl] = ACTIONS(4144), + [anon_sym_DASH_DASH] = ACTIONS(4146), + [anon_sym_PLUS_PLUS] = ACTIONS(4146), + [anon_sym_sizeof] = ACTIONS(4144), + [anon_sym___alignof__] = ACTIONS(4144), + [anon_sym___alignof] = ACTIONS(4144), + [anon_sym__alignof] = ACTIONS(4144), + [anon_sym_alignof] = ACTIONS(4144), + [anon_sym__Alignof] = ACTIONS(4144), + [anon_sym_offsetof] = ACTIONS(4144), + [anon_sym__Generic] = ACTIONS(4144), + [anon_sym_typename] = ACTIONS(4144), + [anon_sym_asm] = ACTIONS(4144), + [anon_sym___asm__] = ACTIONS(4144), + [anon_sym___asm] = ACTIONS(4144), + [sym_number_literal] = ACTIONS(4146), + [anon_sym_L_SQUOTE] = ACTIONS(4146), + [anon_sym_u_SQUOTE] = ACTIONS(4146), + [anon_sym_U_SQUOTE] = ACTIONS(4146), + [anon_sym_u8_SQUOTE] = ACTIONS(4146), + [anon_sym_SQUOTE] = ACTIONS(4146), + [anon_sym_L_DQUOTE] = ACTIONS(4146), + [anon_sym_u_DQUOTE] = ACTIONS(4146), + [anon_sym_U_DQUOTE] = ACTIONS(4146), + [anon_sym_u8_DQUOTE] = ACTIONS(4146), + [anon_sym_DQUOTE] = ACTIONS(4146), + [sym_true] = ACTIONS(4144), + [sym_false] = ACTIONS(4144), + [anon_sym_NULL] = ACTIONS(4144), + [anon_sym_nullptr] = ACTIONS(4144), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4188), - [anon_sym_decltype] = ACTIONS(4188), - [anon_sym_explicit] = ACTIONS(4188), - [anon_sym_template] = ACTIONS(4188), - [anon_sym_operator] = ACTIONS(4188), - [anon_sym_try] = ACTIONS(4188), - [anon_sym_delete] = ACTIONS(4188), - [anon_sym_throw] = ACTIONS(4188), - [anon_sym_namespace] = ACTIONS(4188), - [anon_sym_static_assert] = ACTIONS(4188), - [anon_sym_concept] = ACTIONS(4188), - [anon_sym_co_return] = ACTIONS(4188), - [anon_sym_co_yield] = ACTIONS(4188), - [anon_sym_R_DQUOTE] = ACTIONS(4190), - [anon_sym_LR_DQUOTE] = ACTIONS(4190), - [anon_sym_uR_DQUOTE] = ACTIONS(4190), - [anon_sym_UR_DQUOTE] = ACTIONS(4190), - [anon_sym_u8R_DQUOTE] = ACTIONS(4190), - [anon_sym_co_await] = ACTIONS(4188), - [anon_sym_new] = ACTIONS(4188), - [anon_sym_requires] = ACTIONS(4188), - [anon_sym_CARET_CARET] = ACTIONS(4190), - [anon_sym_LBRACK_COLON] = ACTIONS(4190), - [sym_this] = ACTIONS(4188), - }, - [STATE(910)] = { - [sym_identifier] = ACTIONS(3974), - [aux_sym_preproc_include_token1] = ACTIONS(3974), - [aux_sym_preproc_def_token1] = ACTIONS(3974), - [aux_sym_preproc_if_token1] = ACTIONS(3974), - [aux_sym_preproc_if_token2] = ACTIONS(3974), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3974), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3974), - [sym_preproc_directive] = ACTIONS(3974), - [anon_sym_LPAREN2] = ACTIONS(3976), - [anon_sym_BANG] = ACTIONS(3976), - [anon_sym_TILDE] = ACTIONS(3976), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_STAR] = ACTIONS(3976), - [anon_sym_AMP_AMP] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3974), - [anon_sym_SEMI] = ACTIONS(3976), - [anon_sym___extension__] = ACTIONS(3974), - [anon_sym_typedef] = ACTIONS(3974), - [anon_sym_virtual] = ACTIONS(3974), - [anon_sym_extern] = ACTIONS(3974), - [anon_sym___attribute__] = ACTIONS(3974), - [anon_sym___attribute] = ACTIONS(3974), - [anon_sym_using] = ACTIONS(3974), - [anon_sym_COLON_COLON] = ACTIONS(3976), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3976), - [anon_sym___declspec] = ACTIONS(3974), - [anon_sym___based] = ACTIONS(3974), - [anon_sym___cdecl] = ACTIONS(3974), - [anon_sym___clrcall] = ACTIONS(3974), - [anon_sym___stdcall] = ACTIONS(3974), - [anon_sym___fastcall] = ACTIONS(3974), - [anon_sym___thiscall] = ACTIONS(3974), - [anon_sym___vectorcall] = ACTIONS(3974), - [anon_sym_LBRACE] = ACTIONS(3976), - [anon_sym_signed] = ACTIONS(3974), - [anon_sym_unsigned] = ACTIONS(3974), - [anon_sym_long] = ACTIONS(3974), - [anon_sym_short] = ACTIONS(3974), - [anon_sym_LBRACK] = ACTIONS(3974), - [anon_sym_static] = ACTIONS(3974), - [anon_sym_register] = ACTIONS(3974), - [anon_sym_inline] = ACTIONS(3974), - [anon_sym___inline] = ACTIONS(3974), - [anon_sym___inline__] = ACTIONS(3974), - [anon_sym___forceinline] = ACTIONS(3974), - [anon_sym_thread_local] = ACTIONS(3974), - [anon_sym___thread] = ACTIONS(3974), - [anon_sym_const] = ACTIONS(3974), - [anon_sym_constexpr] = ACTIONS(3974), - [anon_sym_volatile] = ACTIONS(3974), - [anon_sym_restrict] = ACTIONS(3974), - [anon_sym___restrict__] = ACTIONS(3974), - [anon_sym__Atomic] = ACTIONS(3974), - [anon_sym__Noreturn] = ACTIONS(3974), - [anon_sym_noreturn] = ACTIONS(3974), - [anon_sym__Nonnull] = ACTIONS(3974), - [anon_sym_mutable] = ACTIONS(3974), - [anon_sym_constinit] = ACTIONS(3974), - [anon_sym_consteval] = ACTIONS(3974), - [anon_sym_alignas] = ACTIONS(3974), - [anon_sym__Alignas] = ACTIONS(3974), - [sym_primitive_type] = ACTIONS(3974), - [anon_sym_enum] = ACTIONS(3974), - [anon_sym_class] = ACTIONS(3974), - [anon_sym_struct] = ACTIONS(3974), - [anon_sym_union] = ACTIONS(3974), - [anon_sym_if] = ACTIONS(3974), - [anon_sym_switch] = ACTIONS(3974), - [anon_sym_case] = ACTIONS(3974), - [anon_sym_default] = ACTIONS(3974), - [anon_sym_while] = ACTIONS(3974), - [anon_sym_do] = ACTIONS(3974), - [anon_sym_for] = ACTIONS(3974), - [anon_sym_return] = ACTIONS(3974), - [anon_sym_break] = ACTIONS(3974), - [anon_sym_continue] = ACTIONS(3974), - [anon_sym_goto] = ACTIONS(3974), - [anon_sym___try] = ACTIONS(3974), - [anon_sym___leave] = ACTIONS(3974), - [anon_sym_not] = ACTIONS(3974), - [anon_sym_compl] = ACTIONS(3974), - [anon_sym_DASH_DASH] = ACTIONS(3976), - [anon_sym_PLUS_PLUS] = ACTIONS(3976), - [anon_sym_sizeof] = ACTIONS(3974), - [anon_sym___alignof__] = ACTIONS(3974), - [anon_sym___alignof] = ACTIONS(3974), - [anon_sym__alignof] = ACTIONS(3974), - [anon_sym_alignof] = ACTIONS(3974), - [anon_sym__Alignof] = ACTIONS(3974), - [anon_sym_offsetof] = ACTIONS(3974), - [anon_sym__Generic] = ACTIONS(3974), - [anon_sym_typename] = ACTIONS(3974), - [anon_sym_asm] = ACTIONS(3974), - [anon_sym___asm__] = ACTIONS(3974), - [anon_sym___asm] = ACTIONS(3974), - [sym_number_literal] = ACTIONS(3976), - [anon_sym_L_SQUOTE] = ACTIONS(3976), - [anon_sym_u_SQUOTE] = ACTIONS(3976), - [anon_sym_U_SQUOTE] = ACTIONS(3976), - [anon_sym_u8_SQUOTE] = ACTIONS(3976), - [anon_sym_SQUOTE] = ACTIONS(3976), - [anon_sym_L_DQUOTE] = ACTIONS(3976), - [anon_sym_u_DQUOTE] = ACTIONS(3976), - [anon_sym_U_DQUOTE] = ACTIONS(3976), - [anon_sym_u8_DQUOTE] = ACTIONS(3976), - [anon_sym_DQUOTE] = ACTIONS(3976), - [sym_true] = ACTIONS(3974), - [sym_false] = ACTIONS(3974), - [anon_sym_NULL] = ACTIONS(3974), - [anon_sym_nullptr] = ACTIONS(3974), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3974), - [anon_sym_decltype] = ACTIONS(3974), - [anon_sym_explicit] = ACTIONS(3974), - [anon_sym_template] = ACTIONS(3974), - [anon_sym_operator] = ACTIONS(3974), - [anon_sym_try] = ACTIONS(3974), - [anon_sym_delete] = ACTIONS(3974), - [anon_sym_throw] = ACTIONS(3974), - [anon_sym_namespace] = ACTIONS(3974), - [anon_sym_static_assert] = ACTIONS(3974), - [anon_sym_concept] = ACTIONS(3974), - [anon_sym_co_return] = ACTIONS(3974), - [anon_sym_co_yield] = ACTIONS(3974), - [anon_sym_R_DQUOTE] = ACTIONS(3976), - [anon_sym_LR_DQUOTE] = ACTIONS(3976), - [anon_sym_uR_DQUOTE] = ACTIONS(3976), - [anon_sym_UR_DQUOTE] = ACTIONS(3976), - [anon_sym_u8R_DQUOTE] = ACTIONS(3976), - [anon_sym_co_await] = ACTIONS(3974), - [anon_sym_new] = ACTIONS(3974), - [anon_sym_requires] = ACTIONS(3974), - [anon_sym_CARET_CARET] = ACTIONS(3976), - [anon_sym_LBRACK_COLON] = ACTIONS(3976), - [sym_this] = ACTIONS(3974), - }, - [STATE(911)] = { - [sym_expression] = STATE(6790), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_initializer_list] = STATE(7260), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_COMMA] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(2811), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2024), - [anon_sym_PLUS] = ACTIONS(2024), - [anon_sym_STAR] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PERCENT] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - [anon_sym_EQ_EQ] = ACTIONS(2026), - [anon_sym_BANG_EQ] = ACTIONS(2026), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2024), - [anon_sym_LT_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2026), - [anon_sym_GT_GT] = ACTIONS(2024), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACE] = ACTIONS(4562), - [anon_sym_LBRACK] = ACTIONS(2024), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_QMARK] = ACTIONS(2026), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_LT_EQ_GT] = ACTIONS(2026), - [anon_sym_or] = ACTIONS(2024), - [anon_sym_and] = ACTIONS(2024), - [anon_sym_bitor] = ACTIONS(2024), - [anon_sym_xor] = ACTIONS(2024), - [anon_sym_bitand] = ACTIONS(2024), - [anon_sym_not_eq] = ACTIONS(2024), - [anon_sym_DASH_DASH] = ACTIONS(2026), - [anon_sym_PLUS_PLUS] = ACTIONS(2026), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DOT_STAR] = ACTIONS(2026), - [anon_sym_DASH_GT] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_GT2] = ACTIONS(2026), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), + [sym_auto] = ACTIONS(4144), + [anon_sym_decltype] = ACTIONS(4144), + [anon_sym_explicit] = ACTIONS(4144), + [anon_sym_export] = ACTIONS(4144), + [anon_sym_import] = ACTIONS(4144), + [anon_sym_template] = ACTIONS(4144), + [anon_sym_operator] = ACTIONS(4144), + [anon_sym_try] = ACTIONS(4144), + [anon_sym_delete] = ACTIONS(4144), + [anon_sym_throw] = ACTIONS(4144), + [anon_sym_namespace] = ACTIONS(4144), + [anon_sym_static_assert] = ACTIONS(4144), + [anon_sym_concept] = ACTIONS(4144), + [anon_sym_co_return] = ACTIONS(4144), + [anon_sym_co_yield] = ACTIONS(4144), + [anon_sym_R_DQUOTE] = ACTIONS(4146), + [anon_sym_LR_DQUOTE] = ACTIONS(4146), + [anon_sym_uR_DQUOTE] = ACTIONS(4146), + [anon_sym_UR_DQUOTE] = ACTIONS(4146), + [anon_sym_u8R_DQUOTE] = ACTIONS(4146), + [anon_sym_co_await] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_requires] = ACTIONS(4144), + [anon_sym_CARET_CARET] = ACTIONS(4146), + [anon_sym_LBRACK_COLON] = ACTIONS(4146), + [sym_this] = ACTIONS(4144), }, - [STATE(912)] = { - [sym_identifier] = ACTIONS(4192), - [aux_sym_preproc_include_token1] = ACTIONS(4192), - [aux_sym_preproc_def_token1] = ACTIONS(4192), - [aux_sym_preproc_if_token1] = ACTIONS(4192), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4192), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4192), - [sym_preproc_directive] = ACTIONS(4192), - [anon_sym_LPAREN2] = ACTIONS(4194), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_TILDE] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4192), - [anon_sym_PLUS] = ACTIONS(4192), - [anon_sym_STAR] = ACTIONS(4194), - [anon_sym_AMP_AMP] = ACTIONS(4194), - [anon_sym_AMP] = ACTIONS(4192), - [anon_sym_SEMI] = ACTIONS(4194), - [anon_sym___extension__] = ACTIONS(4192), - [anon_sym_typedef] = ACTIONS(4192), - [anon_sym_virtual] = ACTIONS(4192), - [anon_sym_extern] = ACTIONS(4192), - [anon_sym___attribute__] = ACTIONS(4192), - [anon_sym___attribute] = ACTIONS(4192), - [anon_sym_using] = ACTIONS(4192), - [anon_sym_COLON_COLON] = ACTIONS(4194), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), - [anon_sym___declspec] = ACTIONS(4192), - [anon_sym___based] = ACTIONS(4192), - [anon_sym___cdecl] = ACTIONS(4192), - [anon_sym___clrcall] = ACTIONS(4192), - [anon_sym___stdcall] = ACTIONS(4192), - [anon_sym___fastcall] = ACTIONS(4192), - [anon_sym___thiscall] = ACTIONS(4192), - [anon_sym___vectorcall] = ACTIONS(4192), - [anon_sym_LBRACE] = ACTIONS(4194), - [anon_sym_RBRACE] = ACTIONS(4194), - [anon_sym_signed] = ACTIONS(4192), - [anon_sym_unsigned] = ACTIONS(4192), - [anon_sym_long] = ACTIONS(4192), - [anon_sym_short] = ACTIONS(4192), - [anon_sym_LBRACK] = ACTIONS(4192), - [anon_sym_static] = ACTIONS(4192), - [anon_sym_register] = ACTIONS(4192), - [anon_sym_inline] = ACTIONS(4192), - [anon_sym___inline] = ACTIONS(4192), - [anon_sym___inline__] = ACTIONS(4192), - [anon_sym___forceinline] = ACTIONS(4192), - [anon_sym_thread_local] = ACTIONS(4192), - [anon_sym___thread] = ACTIONS(4192), - [anon_sym_const] = ACTIONS(4192), - [anon_sym_constexpr] = ACTIONS(4192), - [anon_sym_volatile] = ACTIONS(4192), - [anon_sym_restrict] = ACTIONS(4192), - [anon_sym___restrict__] = ACTIONS(4192), - [anon_sym__Atomic] = ACTIONS(4192), - [anon_sym__Noreturn] = ACTIONS(4192), - [anon_sym_noreturn] = ACTIONS(4192), - [anon_sym__Nonnull] = ACTIONS(4192), - [anon_sym_mutable] = ACTIONS(4192), - [anon_sym_constinit] = ACTIONS(4192), - [anon_sym_consteval] = ACTIONS(4192), - [anon_sym_alignas] = ACTIONS(4192), - [anon_sym__Alignas] = ACTIONS(4192), - [sym_primitive_type] = ACTIONS(4192), - [anon_sym_enum] = ACTIONS(4192), - [anon_sym_class] = ACTIONS(4192), - [anon_sym_struct] = ACTIONS(4192), - [anon_sym_union] = ACTIONS(4192), - [anon_sym_if] = ACTIONS(4192), - [anon_sym_switch] = ACTIONS(4192), - [anon_sym_case] = ACTIONS(4192), - [anon_sym_default] = ACTIONS(4192), - [anon_sym_while] = ACTIONS(4192), - [anon_sym_do] = ACTIONS(4192), - [anon_sym_for] = ACTIONS(4192), - [anon_sym_return] = ACTIONS(4192), - [anon_sym_break] = ACTIONS(4192), - [anon_sym_continue] = ACTIONS(4192), - [anon_sym_goto] = ACTIONS(4192), - [anon_sym___try] = ACTIONS(4192), - [anon_sym___leave] = ACTIONS(4192), - [anon_sym_not] = ACTIONS(4192), - [anon_sym_compl] = ACTIONS(4192), - [anon_sym_DASH_DASH] = ACTIONS(4194), - [anon_sym_PLUS_PLUS] = ACTIONS(4194), - [anon_sym_sizeof] = ACTIONS(4192), - [anon_sym___alignof__] = ACTIONS(4192), - [anon_sym___alignof] = ACTIONS(4192), - [anon_sym__alignof] = ACTIONS(4192), - [anon_sym_alignof] = ACTIONS(4192), - [anon_sym__Alignof] = ACTIONS(4192), - [anon_sym_offsetof] = ACTIONS(4192), - [anon_sym__Generic] = ACTIONS(4192), - [anon_sym_typename] = ACTIONS(4192), - [anon_sym_asm] = ACTIONS(4192), - [anon_sym___asm__] = ACTIONS(4192), - [anon_sym___asm] = ACTIONS(4192), - [sym_number_literal] = ACTIONS(4194), - [anon_sym_L_SQUOTE] = ACTIONS(4194), - [anon_sym_u_SQUOTE] = ACTIONS(4194), - [anon_sym_U_SQUOTE] = ACTIONS(4194), - [anon_sym_u8_SQUOTE] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4194), - [anon_sym_L_DQUOTE] = ACTIONS(4194), - [anon_sym_u_DQUOTE] = ACTIONS(4194), - [anon_sym_U_DQUOTE] = ACTIONS(4194), - [anon_sym_u8_DQUOTE] = ACTIONS(4194), - [anon_sym_DQUOTE] = ACTIONS(4194), - [sym_true] = ACTIONS(4192), - [sym_false] = ACTIONS(4192), - [anon_sym_NULL] = ACTIONS(4192), - [anon_sym_nullptr] = ACTIONS(4192), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4192), - [anon_sym_decltype] = ACTIONS(4192), - [anon_sym_explicit] = ACTIONS(4192), - [anon_sym_template] = ACTIONS(4192), - [anon_sym_operator] = ACTIONS(4192), - [anon_sym_try] = ACTIONS(4192), - [anon_sym_delete] = ACTIONS(4192), - [anon_sym_throw] = ACTIONS(4192), - [anon_sym_namespace] = ACTIONS(4192), - [anon_sym_static_assert] = ACTIONS(4192), - [anon_sym_concept] = ACTIONS(4192), - [anon_sym_co_return] = ACTIONS(4192), - [anon_sym_co_yield] = ACTIONS(4192), - [anon_sym_R_DQUOTE] = ACTIONS(4194), - [anon_sym_LR_DQUOTE] = ACTIONS(4194), - [anon_sym_uR_DQUOTE] = ACTIONS(4194), - [anon_sym_UR_DQUOTE] = ACTIONS(4194), - [anon_sym_u8R_DQUOTE] = ACTIONS(4194), - [anon_sym_co_await] = ACTIONS(4192), - [anon_sym_new] = ACTIONS(4192), - [anon_sym_requires] = ACTIONS(4192), - [anon_sym_CARET_CARET] = ACTIONS(4194), - [anon_sym_LBRACK_COLON] = ACTIONS(4194), - [sym_this] = ACTIONS(4192), - }, - [STATE(913)] = { + [STATE(787)] = { [sym_identifier] = ACTIONS(4148), [aux_sym_preproc_include_token1] = ACTIONS(4148), [aux_sym_preproc_def_token1] = ACTIONS(4148), [aux_sym_preproc_if_token1] = ACTIONS(4148), - [aux_sym_preproc_if_token2] = ACTIONS(4148), [aux_sym_preproc_ifdef_token1] = ACTIONS(4148), [aux_sym_preproc_ifdef_token2] = ACTIONS(4148), [sym_preproc_directive] = ACTIONS(4148), @@ -183209,6 +172214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(4148), [anon_sym___vectorcall] = ACTIONS(4148), [anon_sym_LBRACE] = ACTIONS(4150), + [anon_sym_RBRACE] = ACTIONS(4150), [anon_sym_signed] = ACTIONS(4148), [anon_sym_unsigned] = ACTIONS(4148), [anon_sym_long] = ACTIONS(4148), @@ -183289,6 +172295,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4148), [anon_sym_decltype] = ACTIONS(4148), [anon_sym_explicit] = ACTIONS(4148), + [anon_sym_export] = ACTIONS(4148), + [anon_sym_import] = ACTIONS(4148), [anon_sym_template] = ACTIONS(4148), [anon_sym_operator] = ACTIONS(4148), [anon_sym_try] = ACTIONS(4148), @@ -183311,12 +172319,1131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4150), [sym_this] = ACTIONS(4148), }, - [STATE(914)] = { + [STATE(788)] = { + [sym_identifier] = ACTIONS(4152), + [aux_sym_preproc_include_token1] = ACTIONS(4152), + [aux_sym_preproc_def_token1] = ACTIONS(4152), + [aux_sym_preproc_if_token1] = ACTIONS(4152), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4152), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4152), + [sym_preproc_directive] = ACTIONS(4152), + [anon_sym_LPAREN2] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4154), + [anon_sym_TILDE] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym___extension__] = ACTIONS(4152), + [anon_sym_typedef] = ACTIONS(4152), + [anon_sym_virtual] = ACTIONS(4152), + [anon_sym_extern] = ACTIONS(4152), + [anon_sym___attribute__] = ACTIONS(4152), + [anon_sym___attribute] = ACTIONS(4152), + [anon_sym_using] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4154), + [anon_sym___declspec] = ACTIONS(4152), + [anon_sym___based] = ACTIONS(4152), + [anon_sym___cdecl] = ACTIONS(4152), + [anon_sym___clrcall] = ACTIONS(4152), + [anon_sym___stdcall] = ACTIONS(4152), + [anon_sym___fastcall] = ACTIONS(4152), + [anon_sym___thiscall] = ACTIONS(4152), + [anon_sym___vectorcall] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(4154), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_signed] = ACTIONS(4152), + [anon_sym_unsigned] = ACTIONS(4152), + [anon_sym_long] = ACTIONS(4152), + [anon_sym_short] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_static] = ACTIONS(4152), + [anon_sym_register] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym___inline] = ACTIONS(4152), + [anon_sym___inline__] = ACTIONS(4152), + [anon_sym___forceinline] = ACTIONS(4152), + [anon_sym_thread_local] = ACTIONS(4152), + [anon_sym___thread] = ACTIONS(4152), + [anon_sym_const] = ACTIONS(4152), + [anon_sym_constexpr] = ACTIONS(4152), + [anon_sym_volatile] = ACTIONS(4152), + [anon_sym_restrict] = ACTIONS(4152), + [anon_sym___restrict__] = ACTIONS(4152), + [anon_sym__Atomic] = ACTIONS(4152), + [anon_sym__Noreturn] = ACTIONS(4152), + [anon_sym_noreturn] = ACTIONS(4152), + [anon_sym__Nonnull] = ACTIONS(4152), + [anon_sym_mutable] = ACTIONS(4152), + [anon_sym_constinit] = ACTIONS(4152), + [anon_sym_consteval] = ACTIONS(4152), + [anon_sym_alignas] = ACTIONS(4152), + [anon_sym__Alignas] = ACTIONS(4152), + [sym_primitive_type] = ACTIONS(4152), + [anon_sym_enum] = ACTIONS(4152), + [anon_sym_class] = ACTIONS(4152), + [anon_sym_struct] = ACTIONS(4152), + [anon_sym_union] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4152), + [anon_sym_switch] = ACTIONS(4152), + [anon_sym_case] = ACTIONS(4152), + [anon_sym_default] = ACTIONS(4152), + [anon_sym_while] = ACTIONS(4152), + [anon_sym_do] = ACTIONS(4152), + [anon_sym_for] = ACTIONS(4152), + [anon_sym_return] = ACTIONS(4152), + [anon_sym_break] = ACTIONS(4152), + [anon_sym_continue] = ACTIONS(4152), + [anon_sym_goto] = ACTIONS(4152), + [anon_sym___try] = ACTIONS(4152), + [anon_sym___leave] = ACTIONS(4152), + [anon_sym_not] = ACTIONS(4152), + [anon_sym_compl] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_sizeof] = ACTIONS(4152), + [anon_sym___alignof__] = ACTIONS(4152), + [anon_sym___alignof] = ACTIONS(4152), + [anon_sym__alignof] = ACTIONS(4152), + [anon_sym_alignof] = ACTIONS(4152), + [anon_sym__Alignof] = ACTIONS(4152), + [anon_sym_offsetof] = ACTIONS(4152), + [anon_sym__Generic] = ACTIONS(4152), + [anon_sym_typename] = ACTIONS(4152), + [anon_sym_asm] = ACTIONS(4152), + [anon_sym___asm__] = ACTIONS(4152), + [anon_sym___asm] = ACTIONS(4152), + [sym_number_literal] = ACTIONS(4154), + [anon_sym_L_SQUOTE] = ACTIONS(4154), + [anon_sym_u_SQUOTE] = ACTIONS(4154), + [anon_sym_U_SQUOTE] = ACTIONS(4154), + [anon_sym_u8_SQUOTE] = ACTIONS(4154), + [anon_sym_SQUOTE] = ACTIONS(4154), + [anon_sym_L_DQUOTE] = ACTIONS(4154), + [anon_sym_u_DQUOTE] = ACTIONS(4154), + [anon_sym_U_DQUOTE] = ACTIONS(4154), + [anon_sym_u8_DQUOTE] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(4154), + [sym_true] = ACTIONS(4152), + [sym_false] = ACTIONS(4152), + [anon_sym_NULL] = ACTIONS(4152), + [anon_sym_nullptr] = ACTIONS(4152), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4152), + [anon_sym_decltype] = ACTIONS(4152), + [anon_sym_explicit] = ACTIONS(4152), + [anon_sym_export] = ACTIONS(4152), + [anon_sym_import] = ACTIONS(4152), + [anon_sym_template] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_try] = ACTIONS(4152), + [anon_sym_delete] = ACTIONS(4152), + [anon_sym_throw] = ACTIONS(4152), + [anon_sym_namespace] = ACTIONS(4152), + [anon_sym_static_assert] = ACTIONS(4152), + [anon_sym_concept] = ACTIONS(4152), + [anon_sym_co_return] = ACTIONS(4152), + [anon_sym_co_yield] = ACTIONS(4152), + [anon_sym_R_DQUOTE] = ACTIONS(4154), + [anon_sym_LR_DQUOTE] = ACTIONS(4154), + [anon_sym_uR_DQUOTE] = ACTIONS(4154), + [anon_sym_UR_DQUOTE] = ACTIONS(4154), + [anon_sym_u8R_DQUOTE] = ACTIONS(4154), + [anon_sym_co_await] = ACTIONS(4152), + [anon_sym_new] = ACTIONS(4152), + [anon_sym_requires] = ACTIONS(4152), + [anon_sym_CARET_CARET] = ACTIONS(4154), + [anon_sym_LBRACK_COLON] = ACTIONS(4154), + [sym_this] = ACTIONS(4152), + }, + [STATE(789)] = { + [sym_identifier] = ACTIONS(4132), + [aux_sym_preproc_include_token1] = ACTIONS(4132), + [aux_sym_preproc_def_token1] = ACTIONS(4132), + [aux_sym_preproc_if_token1] = ACTIONS(4132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4132), + [sym_preproc_directive] = ACTIONS(4132), + [anon_sym_LPAREN2] = ACTIONS(4134), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_TILDE] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4132), + [anon_sym_STAR] = ACTIONS(4134), + [anon_sym_AMP_AMP] = ACTIONS(4134), + [anon_sym_AMP] = ACTIONS(4132), + [anon_sym_SEMI] = ACTIONS(4134), + [anon_sym___extension__] = ACTIONS(4132), + [anon_sym_typedef] = ACTIONS(4132), + [anon_sym_virtual] = ACTIONS(4132), + [anon_sym_extern] = ACTIONS(4132), + [anon_sym___attribute__] = ACTIONS(4132), + [anon_sym___attribute] = ACTIONS(4132), + [anon_sym_using] = ACTIONS(4132), + [anon_sym_COLON_COLON] = ACTIONS(4134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4134), + [anon_sym___declspec] = ACTIONS(4132), + [anon_sym___based] = ACTIONS(4132), + [anon_sym___cdecl] = ACTIONS(4132), + [anon_sym___clrcall] = ACTIONS(4132), + [anon_sym___stdcall] = ACTIONS(4132), + [anon_sym___fastcall] = ACTIONS(4132), + [anon_sym___thiscall] = ACTIONS(4132), + [anon_sym___vectorcall] = ACTIONS(4132), + [anon_sym_LBRACE] = ACTIONS(4134), + [anon_sym_RBRACE] = ACTIONS(4134), + [anon_sym_signed] = ACTIONS(4132), + [anon_sym_unsigned] = ACTIONS(4132), + [anon_sym_long] = ACTIONS(4132), + [anon_sym_short] = ACTIONS(4132), + [anon_sym_LBRACK] = ACTIONS(4132), + [anon_sym_static] = ACTIONS(4132), + [anon_sym_register] = ACTIONS(4132), + [anon_sym_inline] = ACTIONS(4132), + [anon_sym___inline] = ACTIONS(4132), + [anon_sym___inline__] = ACTIONS(4132), + [anon_sym___forceinline] = ACTIONS(4132), + [anon_sym_thread_local] = ACTIONS(4132), + [anon_sym___thread] = ACTIONS(4132), + [anon_sym_const] = ACTIONS(4132), + [anon_sym_constexpr] = ACTIONS(4132), + [anon_sym_volatile] = ACTIONS(4132), + [anon_sym_restrict] = ACTIONS(4132), + [anon_sym___restrict__] = ACTIONS(4132), + [anon_sym__Atomic] = ACTIONS(4132), + [anon_sym__Noreturn] = ACTIONS(4132), + [anon_sym_noreturn] = ACTIONS(4132), + [anon_sym__Nonnull] = ACTIONS(4132), + [anon_sym_mutable] = ACTIONS(4132), + [anon_sym_constinit] = ACTIONS(4132), + [anon_sym_consteval] = ACTIONS(4132), + [anon_sym_alignas] = ACTIONS(4132), + [anon_sym__Alignas] = ACTIONS(4132), + [sym_primitive_type] = ACTIONS(4132), + [anon_sym_enum] = ACTIONS(4132), + [anon_sym_class] = ACTIONS(4132), + [anon_sym_struct] = ACTIONS(4132), + [anon_sym_union] = ACTIONS(4132), + [anon_sym_if] = ACTIONS(4132), + [anon_sym_switch] = ACTIONS(4132), + [anon_sym_case] = ACTIONS(4132), + [anon_sym_default] = ACTIONS(4132), + [anon_sym_while] = ACTIONS(4132), + [anon_sym_do] = ACTIONS(4132), + [anon_sym_for] = ACTIONS(4132), + [anon_sym_return] = ACTIONS(4132), + [anon_sym_break] = ACTIONS(4132), + [anon_sym_continue] = ACTIONS(4132), + [anon_sym_goto] = ACTIONS(4132), + [anon_sym___try] = ACTIONS(4132), + [anon_sym___leave] = ACTIONS(4132), + [anon_sym_not] = ACTIONS(4132), + [anon_sym_compl] = ACTIONS(4132), + [anon_sym_DASH_DASH] = ACTIONS(4134), + [anon_sym_PLUS_PLUS] = ACTIONS(4134), + [anon_sym_sizeof] = ACTIONS(4132), + [anon_sym___alignof__] = ACTIONS(4132), + [anon_sym___alignof] = ACTIONS(4132), + [anon_sym__alignof] = ACTIONS(4132), + [anon_sym_alignof] = ACTIONS(4132), + [anon_sym__Alignof] = ACTIONS(4132), + [anon_sym_offsetof] = ACTIONS(4132), + [anon_sym__Generic] = ACTIONS(4132), + [anon_sym_typename] = ACTIONS(4132), + [anon_sym_asm] = ACTIONS(4132), + [anon_sym___asm__] = ACTIONS(4132), + [anon_sym___asm] = ACTIONS(4132), + [sym_number_literal] = ACTIONS(4134), + [anon_sym_L_SQUOTE] = ACTIONS(4134), + [anon_sym_u_SQUOTE] = ACTIONS(4134), + [anon_sym_U_SQUOTE] = ACTIONS(4134), + [anon_sym_u8_SQUOTE] = ACTIONS(4134), + [anon_sym_SQUOTE] = ACTIONS(4134), + [anon_sym_L_DQUOTE] = ACTIONS(4134), + [anon_sym_u_DQUOTE] = ACTIONS(4134), + [anon_sym_U_DQUOTE] = ACTIONS(4134), + [anon_sym_u8_DQUOTE] = ACTIONS(4134), + [anon_sym_DQUOTE] = ACTIONS(4134), + [sym_true] = ACTIONS(4132), + [sym_false] = ACTIONS(4132), + [anon_sym_NULL] = ACTIONS(4132), + [anon_sym_nullptr] = ACTIONS(4132), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4132), + [anon_sym_decltype] = ACTIONS(4132), + [anon_sym_explicit] = ACTIONS(4132), + [anon_sym_export] = ACTIONS(4132), + [anon_sym_import] = ACTIONS(4132), + [anon_sym_template] = ACTIONS(4132), + [anon_sym_operator] = ACTIONS(4132), + [anon_sym_try] = ACTIONS(4132), + [anon_sym_delete] = ACTIONS(4132), + [anon_sym_throw] = ACTIONS(4132), + [anon_sym_namespace] = ACTIONS(4132), + [anon_sym_static_assert] = ACTIONS(4132), + [anon_sym_concept] = ACTIONS(4132), + [anon_sym_co_return] = ACTIONS(4132), + [anon_sym_co_yield] = ACTIONS(4132), + [anon_sym_R_DQUOTE] = ACTIONS(4134), + [anon_sym_LR_DQUOTE] = ACTIONS(4134), + [anon_sym_uR_DQUOTE] = ACTIONS(4134), + [anon_sym_UR_DQUOTE] = ACTIONS(4134), + [anon_sym_u8R_DQUOTE] = ACTIONS(4134), + [anon_sym_co_await] = ACTIONS(4132), + [anon_sym_new] = ACTIONS(4132), + [anon_sym_requires] = ACTIONS(4132), + [anon_sym_CARET_CARET] = ACTIONS(4134), + [anon_sym_LBRACK_COLON] = ACTIONS(4134), + [sym_this] = ACTIONS(4132), + }, + [STATE(790)] = { + [sym_identifier] = ACTIONS(3992), + [aux_sym_preproc_include_token1] = ACTIONS(3992), + [aux_sym_preproc_def_token1] = ACTIONS(3992), + [aux_sym_preproc_if_token1] = ACTIONS(3992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3992), + [sym_preproc_directive] = ACTIONS(3992), + [anon_sym_LPAREN2] = ACTIONS(3994), + [anon_sym_BANG] = ACTIONS(3994), + [anon_sym_TILDE] = ACTIONS(3994), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_AMP] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym___extension__] = ACTIONS(3992), + [anon_sym_typedef] = ACTIONS(3992), + [anon_sym_virtual] = ACTIONS(3992), + [anon_sym_extern] = ACTIONS(3992), + [anon_sym___attribute__] = ACTIONS(3992), + [anon_sym___attribute] = ACTIONS(3992), + [anon_sym_using] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3994), + [anon_sym___declspec] = ACTIONS(3992), + [anon_sym___based] = ACTIONS(3992), + [anon_sym___cdecl] = ACTIONS(3992), + [anon_sym___clrcall] = ACTIONS(3992), + [anon_sym___stdcall] = ACTIONS(3992), + [anon_sym___fastcall] = ACTIONS(3992), + [anon_sym___thiscall] = ACTIONS(3992), + [anon_sym___vectorcall] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_signed] = ACTIONS(3992), + [anon_sym_unsigned] = ACTIONS(3992), + [anon_sym_long] = ACTIONS(3992), + [anon_sym_short] = ACTIONS(3992), + [anon_sym_LBRACK] = ACTIONS(3992), + [anon_sym_static] = ACTIONS(3992), + [anon_sym_register] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym___inline] = ACTIONS(3992), + [anon_sym___inline__] = ACTIONS(3992), + [anon_sym___forceinline] = ACTIONS(3992), + [anon_sym_thread_local] = ACTIONS(3992), + [anon_sym___thread] = ACTIONS(3992), + [anon_sym_const] = ACTIONS(3992), + [anon_sym_constexpr] = ACTIONS(3992), + [anon_sym_volatile] = ACTIONS(3992), + [anon_sym_restrict] = ACTIONS(3992), + [anon_sym___restrict__] = ACTIONS(3992), + [anon_sym__Atomic] = ACTIONS(3992), + [anon_sym__Noreturn] = ACTIONS(3992), + [anon_sym_noreturn] = ACTIONS(3992), + [anon_sym__Nonnull] = ACTIONS(3992), + [anon_sym_mutable] = ACTIONS(3992), + [anon_sym_constinit] = ACTIONS(3992), + [anon_sym_consteval] = ACTIONS(3992), + [anon_sym_alignas] = ACTIONS(3992), + [anon_sym__Alignas] = ACTIONS(3992), + [sym_primitive_type] = ACTIONS(3992), + [anon_sym_enum] = ACTIONS(3992), + [anon_sym_class] = ACTIONS(3992), + [anon_sym_struct] = ACTIONS(3992), + [anon_sym_union] = ACTIONS(3992), + [anon_sym_if] = ACTIONS(3992), + [anon_sym_switch] = ACTIONS(3992), + [anon_sym_case] = ACTIONS(3992), + [anon_sym_default] = ACTIONS(3992), + [anon_sym_while] = ACTIONS(3992), + [anon_sym_do] = ACTIONS(3992), + [anon_sym_for] = ACTIONS(3992), + [anon_sym_return] = ACTIONS(3992), + [anon_sym_break] = ACTIONS(3992), + [anon_sym_continue] = ACTIONS(3992), + [anon_sym_goto] = ACTIONS(3992), + [anon_sym___try] = ACTIONS(3992), + [anon_sym___leave] = ACTIONS(3992), + [anon_sym_not] = ACTIONS(3992), + [anon_sym_compl] = ACTIONS(3992), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_sizeof] = ACTIONS(3992), + [anon_sym___alignof__] = ACTIONS(3992), + [anon_sym___alignof] = ACTIONS(3992), + [anon_sym__alignof] = ACTIONS(3992), + [anon_sym_alignof] = ACTIONS(3992), + [anon_sym__Alignof] = ACTIONS(3992), + [anon_sym_offsetof] = ACTIONS(3992), + [anon_sym__Generic] = ACTIONS(3992), + [anon_sym_typename] = ACTIONS(3992), + [anon_sym_asm] = ACTIONS(3992), + [anon_sym___asm__] = ACTIONS(3992), + [anon_sym___asm] = ACTIONS(3992), + [sym_number_literal] = ACTIONS(3994), + [anon_sym_L_SQUOTE] = ACTIONS(3994), + [anon_sym_u_SQUOTE] = ACTIONS(3994), + [anon_sym_U_SQUOTE] = ACTIONS(3994), + [anon_sym_u8_SQUOTE] = ACTIONS(3994), + [anon_sym_SQUOTE] = ACTIONS(3994), + [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_true] = ACTIONS(3992), + [sym_false] = ACTIONS(3992), + [anon_sym_NULL] = ACTIONS(3992), + [anon_sym_nullptr] = ACTIONS(3992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3992), + [anon_sym_decltype] = ACTIONS(3992), + [anon_sym_explicit] = ACTIONS(3992), + [anon_sym_export] = ACTIONS(3992), + [anon_sym_import] = ACTIONS(3992), + [anon_sym_template] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_try] = ACTIONS(3992), + [anon_sym_delete] = ACTIONS(3992), + [anon_sym_throw] = ACTIONS(3992), + [anon_sym_namespace] = ACTIONS(3992), + [anon_sym_static_assert] = ACTIONS(3992), + [anon_sym_concept] = ACTIONS(3992), + [anon_sym_co_return] = ACTIONS(3992), + [anon_sym_co_yield] = ACTIONS(3992), + [anon_sym_R_DQUOTE] = ACTIONS(3994), + [anon_sym_LR_DQUOTE] = ACTIONS(3994), + [anon_sym_uR_DQUOTE] = ACTIONS(3994), + [anon_sym_UR_DQUOTE] = ACTIONS(3994), + [anon_sym_u8R_DQUOTE] = ACTIONS(3994), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3992), + [anon_sym_requires] = ACTIONS(3992), + [anon_sym_CARET_CARET] = ACTIONS(3994), + [anon_sym_LBRACK_COLON] = ACTIONS(3994), + [sym_this] = ACTIONS(3992), + }, + [STATE(791)] = { + [sym_identifier] = ACTIONS(4156), + [aux_sym_preproc_include_token1] = ACTIONS(4156), + [aux_sym_preproc_def_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), + [sym_preproc_directive] = ACTIONS(4156), + [anon_sym_LPAREN2] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4158), + [anon_sym_TILDE] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym___extension__] = ACTIONS(4156), + [anon_sym_typedef] = ACTIONS(4156), + [anon_sym_virtual] = ACTIONS(4156), + [anon_sym_extern] = ACTIONS(4156), + [anon_sym___attribute__] = ACTIONS(4156), + [anon_sym___attribute] = ACTIONS(4156), + [anon_sym_using] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4156), + [anon_sym___based] = ACTIONS(4156), + [anon_sym___cdecl] = ACTIONS(4156), + [anon_sym___clrcall] = ACTIONS(4156), + [anon_sym___stdcall] = ACTIONS(4156), + [anon_sym___fastcall] = ACTIONS(4156), + [anon_sym___thiscall] = ACTIONS(4156), + [anon_sym___vectorcall] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_signed] = ACTIONS(4156), + [anon_sym_unsigned] = ACTIONS(4156), + [anon_sym_long] = ACTIONS(4156), + [anon_sym_short] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_register] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym___inline] = ACTIONS(4156), + [anon_sym___inline__] = ACTIONS(4156), + [anon_sym___forceinline] = ACTIONS(4156), + [anon_sym_thread_local] = ACTIONS(4156), + [anon_sym___thread] = ACTIONS(4156), + [anon_sym_const] = ACTIONS(4156), + [anon_sym_constexpr] = ACTIONS(4156), + [anon_sym_volatile] = ACTIONS(4156), + [anon_sym_restrict] = ACTIONS(4156), + [anon_sym___restrict__] = ACTIONS(4156), + [anon_sym__Atomic] = ACTIONS(4156), + [anon_sym__Noreturn] = ACTIONS(4156), + [anon_sym_noreturn] = ACTIONS(4156), + [anon_sym__Nonnull] = ACTIONS(4156), + [anon_sym_mutable] = ACTIONS(4156), + [anon_sym_constinit] = ACTIONS(4156), + [anon_sym_consteval] = ACTIONS(4156), + [anon_sym_alignas] = ACTIONS(4156), + [anon_sym__Alignas] = ACTIONS(4156), + [sym_primitive_type] = ACTIONS(4156), + [anon_sym_enum] = ACTIONS(4156), + [anon_sym_class] = ACTIONS(4156), + [anon_sym_struct] = ACTIONS(4156), + [anon_sym_union] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_switch] = ACTIONS(4156), + [anon_sym_case] = ACTIONS(4156), + [anon_sym_default] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_do] = ACTIONS(4156), + [anon_sym_for] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_goto] = ACTIONS(4156), + [anon_sym___try] = ACTIONS(4156), + [anon_sym___leave] = ACTIONS(4156), + [anon_sym_not] = ACTIONS(4156), + [anon_sym_compl] = ACTIONS(4156), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_sizeof] = ACTIONS(4156), + [anon_sym___alignof__] = ACTIONS(4156), + [anon_sym___alignof] = ACTIONS(4156), + [anon_sym__alignof] = ACTIONS(4156), + [anon_sym_alignof] = ACTIONS(4156), + [anon_sym__Alignof] = ACTIONS(4156), + [anon_sym_offsetof] = ACTIONS(4156), + [anon_sym__Generic] = ACTIONS(4156), + [anon_sym_typename] = ACTIONS(4156), + [anon_sym_asm] = ACTIONS(4156), + [anon_sym___asm__] = ACTIONS(4156), + [anon_sym___asm] = ACTIONS(4156), + [sym_number_literal] = ACTIONS(4158), + [anon_sym_L_SQUOTE] = ACTIONS(4158), + [anon_sym_u_SQUOTE] = ACTIONS(4158), + [anon_sym_U_SQUOTE] = ACTIONS(4158), + [anon_sym_u8_SQUOTE] = ACTIONS(4158), + [anon_sym_SQUOTE] = ACTIONS(4158), + [anon_sym_L_DQUOTE] = ACTIONS(4158), + [anon_sym_u_DQUOTE] = ACTIONS(4158), + [anon_sym_U_DQUOTE] = ACTIONS(4158), + [anon_sym_u8_DQUOTE] = ACTIONS(4158), + [anon_sym_DQUOTE] = ACTIONS(4158), + [sym_true] = ACTIONS(4156), + [sym_false] = ACTIONS(4156), + [anon_sym_NULL] = ACTIONS(4156), + [anon_sym_nullptr] = ACTIONS(4156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4156), + [anon_sym_decltype] = ACTIONS(4156), + [anon_sym_explicit] = ACTIONS(4156), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_import] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_delete] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_namespace] = ACTIONS(4156), + [anon_sym_static_assert] = ACTIONS(4156), + [anon_sym_concept] = ACTIONS(4156), + [anon_sym_co_return] = ACTIONS(4156), + [anon_sym_co_yield] = ACTIONS(4156), + [anon_sym_R_DQUOTE] = ACTIONS(4158), + [anon_sym_LR_DQUOTE] = ACTIONS(4158), + [anon_sym_uR_DQUOTE] = ACTIONS(4158), + [anon_sym_UR_DQUOTE] = ACTIONS(4158), + [anon_sym_u8R_DQUOTE] = ACTIONS(4158), + [anon_sym_co_await] = ACTIONS(4156), + [anon_sym_new] = ACTIONS(4156), + [anon_sym_requires] = ACTIONS(4156), + [anon_sym_CARET_CARET] = ACTIONS(4158), + [anon_sym_LBRACK_COLON] = ACTIONS(4158), + [sym_this] = ACTIONS(4156), + }, + [STATE(792)] = { + [sym_identifier] = ACTIONS(4156), + [aux_sym_preproc_include_token1] = ACTIONS(4156), + [aux_sym_preproc_def_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), + [sym_preproc_directive] = ACTIONS(4156), + [anon_sym_LPAREN2] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4158), + [anon_sym_TILDE] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym___extension__] = ACTIONS(4156), + [anon_sym_typedef] = ACTIONS(4156), + [anon_sym_virtual] = ACTIONS(4156), + [anon_sym_extern] = ACTIONS(4156), + [anon_sym___attribute__] = ACTIONS(4156), + [anon_sym___attribute] = ACTIONS(4156), + [anon_sym_using] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4156), + [anon_sym___based] = ACTIONS(4156), + [anon_sym___cdecl] = ACTIONS(4156), + [anon_sym___clrcall] = ACTIONS(4156), + [anon_sym___stdcall] = ACTIONS(4156), + [anon_sym___fastcall] = ACTIONS(4156), + [anon_sym___thiscall] = ACTIONS(4156), + [anon_sym___vectorcall] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_signed] = ACTIONS(4156), + [anon_sym_unsigned] = ACTIONS(4156), + [anon_sym_long] = ACTIONS(4156), + [anon_sym_short] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_register] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym___inline] = ACTIONS(4156), + [anon_sym___inline__] = ACTIONS(4156), + [anon_sym___forceinline] = ACTIONS(4156), + [anon_sym_thread_local] = ACTIONS(4156), + [anon_sym___thread] = ACTIONS(4156), + [anon_sym_const] = ACTIONS(4156), + [anon_sym_constexpr] = ACTIONS(4156), + [anon_sym_volatile] = ACTIONS(4156), + [anon_sym_restrict] = ACTIONS(4156), + [anon_sym___restrict__] = ACTIONS(4156), + [anon_sym__Atomic] = ACTIONS(4156), + [anon_sym__Noreturn] = ACTIONS(4156), + [anon_sym_noreturn] = ACTIONS(4156), + [anon_sym__Nonnull] = ACTIONS(4156), + [anon_sym_mutable] = ACTIONS(4156), + [anon_sym_constinit] = ACTIONS(4156), + [anon_sym_consteval] = ACTIONS(4156), + [anon_sym_alignas] = ACTIONS(4156), + [anon_sym__Alignas] = ACTIONS(4156), + [sym_primitive_type] = ACTIONS(4156), + [anon_sym_enum] = ACTIONS(4156), + [anon_sym_class] = ACTIONS(4156), + [anon_sym_struct] = ACTIONS(4156), + [anon_sym_union] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_switch] = ACTIONS(4156), + [anon_sym_case] = ACTIONS(4156), + [anon_sym_default] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_do] = ACTIONS(4156), + [anon_sym_for] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_goto] = ACTIONS(4156), + [anon_sym___try] = ACTIONS(4156), + [anon_sym___leave] = ACTIONS(4156), + [anon_sym_not] = ACTIONS(4156), + [anon_sym_compl] = ACTIONS(4156), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_sizeof] = ACTIONS(4156), + [anon_sym___alignof__] = ACTIONS(4156), + [anon_sym___alignof] = ACTIONS(4156), + [anon_sym__alignof] = ACTIONS(4156), + [anon_sym_alignof] = ACTIONS(4156), + [anon_sym__Alignof] = ACTIONS(4156), + [anon_sym_offsetof] = ACTIONS(4156), + [anon_sym__Generic] = ACTIONS(4156), + [anon_sym_typename] = ACTIONS(4156), + [anon_sym_asm] = ACTIONS(4156), + [anon_sym___asm__] = ACTIONS(4156), + [anon_sym___asm] = ACTIONS(4156), + [sym_number_literal] = ACTIONS(4158), + [anon_sym_L_SQUOTE] = ACTIONS(4158), + [anon_sym_u_SQUOTE] = ACTIONS(4158), + [anon_sym_U_SQUOTE] = ACTIONS(4158), + [anon_sym_u8_SQUOTE] = ACTIONS(4158), + [anon_sym_SQUOTE] = ACTIONS(4158), + [anon_sym_L_DQUOTE] = ACTIONS(4158), + [anon_sym_u_DQUOTE] = ACTIONS(4158), + [anon_sym_U_DQUOTE] = ACTIONS(4158), + [anon_sym_u8_DQUOTE] = ACTIONS(4158), + [anon_sym_DQUOTE] = ACTIONS(4158), + [sym_true] = ACTIONS(4156), + [sym_false] = ACTIONS(4156), + [anon_sym_NULL] = ACTIONS(4156), + [anon_sym_nullptr] = ACTIONS(4156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4156), + [anon_sym_decltype] = ACTIONS(4156), + [anon_sym_explicit] = ACTIONS(4156), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_import] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_delete] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_namespace] = ACTIONS(4156), + [anon_sym_static_assert] = ACTIONS(4156), + [anon_sym_concept] = ACTIONS(4156), + [anon_sym_co_return] = ACTIONS(4156), + [anon_sym_co_yield] = ACTIONS(4156), + [anon_sym_R_DQUOTE] = ACTIONS(4158), + [anon_sym_LR_DQUOTE] = ACTIONS(4158), + [anon_sym_uR_DQUOTE] = ACTIONS(4158), + [anon_sym_UR_DQUOTE] = ACTIONS(4158), + [anon_sym_u8R_DQUOTE] = ACTIONS(4158), + [anon_sym_co_await] = ACTIONS(4156), + [anon_sym_new] = ACTIONS(4156), + [anon_sym_requires] = ACTIONS(4156), + [anon_sym_CARET_CARET] = ACTIONS(4158), + [anon_sym_LBRACK_COLON] = ACTIONS(4158), + [sym_this] = ACTIONS(4156), + }, + [STATE(793)] = { + [sym_identifier] = ACTIONS(4028), + [aux_sym_preproc_include_token1] = ACTIONS(4028), + [aux_sym_preproc_def_token1] = ACTIONS(4028), + [aux_sym_preproc_if_token1] = ACTIONS(4028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4028), + [sym_preproc_directive] = ACTIONS(4028), + [anon_sym_LPAREN2] = ACTIONS(4030), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_TILDE] = ACTIONS(4030), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym___extension__] = ACTIONS(4028), + [anon_sym_typedef] = ACTIONS(4028), + [anon_sym_virtual] = ACTIONS(4028), + [anon_sym_extern] = ACTIONS(4028), + [anon_sym___attribute__] = ACTIONS(4028), + [anon_sym___attribute] = ACTIONS(4028), + [anon_sym_using] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4030), + [anon_sym___declspec] = ACTIONS(4028), + [anon_sym___based] = ACTIONS(4028), + [anon_sym___cdecl] = ACTIONS(4028), + [anon_sym___clrcall] = ACTIONS(4028), + [anon_sym___stdcall] = ACTIONS(4028), + [anon_sym___fastcall] = ACTIONS(4028), + [anon_sym___thiscall] = ACTIONS(4028), + [anon_sym___vectorcall] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_signed] = ACTIONS(4028), + [anon_sym_unsigned] = ACTIONS(4028), + [anon_sym_long] = ACTIONS(4028), + [anon_sym_short] = ACTIONS(4028), + [anon_sym_LBRACK] = ACTIONS(4028), + [anon_sym_static] = ACTIONS(4028), + [anon_sym_register] = ACTIONS(4028), + [anon_sym_inline] = ACTIONS(4028), + [anon_sym___inline] = ACTIONS(4028), + [anon_sym___inline__] = ACTIONS(4028), + [anon_sym___forceinline] = ACTIONS(4028), + [anon_sym_thread_local] = ACTIONS(4028), + [anon_sym___thread] = ACTIONS(4028), + [anon_sym_const] = ACTIONS(4028), + [anon_sym_constexpr] = ACTIONS(4028), + [anon_sym_volatile] = ACTIONS(4028), + [anon_sym_restrict] = ACTIONS(4028), + [anon_sym___restrict__] = ACTIONS(4028), + [anon_sym__Atomic] = ACTIONS(4028), + [anon_sym__Noreturn] = ACTIONS(4028), + [anon_sym_noreturn] = ACTIONS(4028), + [anon_sym__Nonnull] = ACTIONS(4028), + [anon_sym_mutable] = ACTIONS(4028), + [anon_sym_constinit] = ACTIONS(4028), + [anon_sym_consteval] = ACTIONS(4028), + [anon_sym_alignas] = ACTIONS(4028), + [anon_sym__Alignas] = ACTIONS(4028), + [sym_primitive_type] = ACTIONS(4028), + [anon_sym_enum] = ACTIONS(4028), + [anon_sym_class] = ACTIONS(4028), + [anon_sym_struct] = ACTIONS(4028), + [anon_sym_union] = ACTIONS(4028), + [anon_sym_if] = ACTIONS(4028), + [anon_sym_switch] = ACTIONS(4028), + [anon_sym_case] = ACTIONS(4028), + [anon_sym_default] = ACTIONS(4028), + [anon_sym_while] = ACTIONS(4028), + [anon_sym_do] = ACTIONS(4028), + [anon_sym_for] = ACTIONS(4028), + [anon_sym_return] = ACTIONS(4028), + [anon_sym_break] = ACTIONS(4028), + [anon_sym_continue] = ACTIONS(4028), + [anon_sym_goto] = ACTIONS(4028), + [anon_sym___try] = ACTIONS(4028), + [anon_sym___leave] = ACTIONS(4028), + [anon_sym_not] = ACTIONS(4028), + [anon_sym_compl] = ACTIONS(4028), + [anon_sym_DASH_DASH] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4030), + [anon_sym_sizeof] = ACTIONS(4028), + [anon_sym___alignof__] = ACTIONS(4028), + [anon_sym___alignof] = ACTIONS(4028), + [anon_sym__alignof] = ACTIONS(4028), + [anon_sym_alignof] = ACTIONS(4028), + [anon_sym__Alignof] = ACTIONS(4028), + [anon_sym_offsetof] = ACTIONS(4028), + [anon_sym__Generic] = ACTIONS(4028), + [anon_sym_typename] = ACTIONS(4028), + [anon_sym_asm] = ACTIONS(4028), + [anon_sym___asm__] = ACTIONS(4028), + [anon_sym___asm] = ACTIONS(4028), + [sym_number_literal] = ACTIONS(4030), + [anon_sym_L_SQUOTE] = ACTIONS(4030), + [anon_sym_u_SQUOTE] = ACTIONS(4030), + [anon_sym_U_SQUOTE] = ACTIONS(4030), + [anon_sym_u8_SQUOTE] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4030), + [anon_sym_L_DQUOTE] = ACTIONS(4030), + [anon_sym_u_DQUOTE] = ACTIONS(4030), + [anon_sym_U_DQUOTE] = ACTIONS(4030), + [anon_sym_u8_DQUOTE] = ACTIONS(4030), + [anon_sym_DQUOTE] = ACTIONS(4030), + [sym_true] = ACTIONS(4028), + [sym_false] = ACTIONS(4028), + [anon_sym_NULL] = ACTIONS(4028), + [anon_sym_nullptr] = ACTIONS(4028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4028), + [anon_sym_decltype] = ACTIONS(4028), + [anon_sym_explicit] = ACTIONS(4028), + [anon_sym_export] = ACTIONS(4028), + [anon_sym_import] = ACTIONS(4028), + [anon_sym_template] = ACTIONS(4028), + [anon_sym_operator] = ACTIONS(4028), + [anon_sym_try] = ACTIONS(4028), + [anon_sym_delete] = ACTIONS(4028), + [anon_sym_throw] = ACTIONS(4028), + [anon_sym_namespace] = ACTIONS(4028), + [anon_sym_static_assert] = ACTIONS(4028), + [anon_sym_concept] = ACTIONS(4028), + [anon_sym_co_return] = ACTIONS(4028), + [anon_sym_co_yield] = ACTIONS(4028), + [anon_sym_R_DQUOTE] = ACTIONS(4030), + [anon_sym_LR_DQUOTE] = ACTIONS(4030), + [anon_sym_uR_DQUOTE] = ACTIONS(4030), + [anon_sym_UR_DQUOTE] = ACTIONS(4030), + [anon_sym_u8R_DQUOTE] = ACTIONS(4030), + [anon_sym_co_await] = ACTIONS(4028), + [anon_sym_new] = ACTIONS(4028), + [anon_sym_requires] = ACTIONS(4028), + [anon_sym_CARET_CARET] = ACTIONS(4030), + [anon_sym_LBRACK_COLON] = ACTIONS(4030), + [sym_this] = ACTIONS(4028), + }, + [STATE(794)] = { + [sym_identifier] = ACTIONS(4104), + [aux_sym_preproc_include_token1] = ACTIONS(4104), + [aux_sym_preproc_def_token1] = ACTIONS(4104), + [aux_sym_preproc_if_token1] = ACTIONS(4104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4104), + [sym_preproc_directive] = ACTIONS(4104), + [anon_sym_LPAREN2] = ACTIONS(4106), + [anon_sym_BANG] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4104), + [anon_sym_STAR] = ACTIONS(4106), + [anon_sym_AMP_AMP] = ACTIONS(4106), + [anon_sym_AMP] = ACTIONS(4104), + [anon_sym_SEMI] = ACTIONS(4106), + [anon_sym___extension__] = ACTIONS(4104), + [anon_sym_typedef] = ACTIONS(4104), + [anon_sym_virtual] = ACTIONS(4104), + [anon_sym_extern] = ACTIONS(4104), + [anon_sym___attribute__] = ACTIONS(4104), + [anon_sym___attribute] = ACTIONS(4104), + [anon_sym_using] = ACTIONS(4104), + [anon_sym_COLON_COLON] = ACTIONS(4106), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4106), + [anon_sym___declspec] = ACTIONS(4104), + [anon_sym___based] = ACTIONS(4104), + [anon_sym___cdecl] = ACTIONS(4104), + [anon_sym___clrcall] = ACTIONS(4104), + [anon_sym___stdcall] = ACTIONS(4104), + [anon_sym___fastcall] = ACTIONS(4104), + [anon_sym___thiscall] = ACTIONS(4104), + [anon_sym___vectorcall] = ACTIONS(4104), + [anon_sym_LBRACE] = ACTIONS(4106), + [anon_sym_RBRACE] = ACTIONS(4106), + [anon_sym_signed] = ACTIONS(4104), + [anon_sym_unsigned] = ACTIONS(4104), + [anon_sym_long] = ACTIONS(4104), + [anon_sym_short] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_static] = ACTIONS(4104), + [anon_sym_register] = ACTIONS(4104), + [anon_sym_inline] = ACTIONS(4104), + [anon_sym___inline] = ACTIONS(4104), + [anon_sym___inline__] = ACTIONS(4104), + [anon_sym___forceinline] = ACTIONS(4104), + [anon_sym_thread_local] = ACTIONS(4104), + [anon_sym___thread] = ACTIONS(4104), + [anon_sym_const] = ACTIONS(4104), + [anon_sym_constexpr] = ACTIONS(4104), + [anon_sym_volatile] = ACTIONS(4104), + [anon_sym_restrict] = ACTIONS(4104), + [anon_sym___restrict__] = ACTIONS(4104), + [anon_sym__Atomic] = ACTIONS(4104), + [anon_sym__Noreturn] = ACTIONS(4104), + [anon_sym_noreturn] = ACTIONS(4104), + [anon_sym__Nonnull] = ACTIONS(4104), + [anon_sym_mutable] = ACTIONS(4104), + [anon_sym_constinit] = ACTIONS(4104), + [anon_sym_consteval] = ACTIONS(4104), + [anon_sym_alignas] = ACTIONS(4104), + [anon_sym__Alignas] = ACTIONS(4104), + [sym_primitive_type] = ACTIONS(4104), + [anon_sym_enum] = ACTIONS(4104), + [anon_sym_class] = ACTIONS(4104), + [anon_sym_struct] = ACTIONS(4104), + [anon_sym_union] = ACTIONS(4104), + [anon_sym_if] = ACTIONS(4104), + [anon_sym_switch] = ACTIONS(4104), + [anon_sym_case] = ACTIONS(4104), + [anon_sym_default] = ACTIONS(4104), + [anon_sym_while] = ACTIONS(4104), + [anon_sym_do] = ACTIONS(4104), + [anon_sym_for] = ACTIONS(4104), + [anon_sym_return] = ACTIONS(4104), + [anon_sym_break] = ACTIONS(4104), + [anon_sym_continue] = ACTIONS(4104), + [anon_sym_goto] = ACTIONS(4104), + [anon_sym___try] = ACTIONS(4104), + [anon_sym___leave] = ACTIONS(4104), + [anon_sym_not] = ACTIONS(4104), + [anon_sym_compl] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4106), + [anon_sym_PLUS_PLUS] = ACTIONS(4106), + [anon_sym_sizeof] = ACTIONS(4104), + [anon_sym___alignof__] = ACTIONS(4104), + [anon_sym___alignof] = ACTIONS(4104), + [anon_sym__alignof] = ACTIONS(4104), + [anon_sym_alignof] = ACTIONS(4104), + [anon_sym__Alignof] = ACTIONS(4104), + [anon_sym_offsetof] = ACTIONS(4104), + [anon_sym__Generic] = ACTIONS(4104), + [anon_sym_typename] = ACTIONS(4104), + [anon_sym_asm] = ACTIONS(4104), + [anon_sym___asm__] = ACTIONS(4104), + [anon_sym___asm] = ACTIONS(4104), + [sym_number_literal] = ACTIONS(4106), + [anon_sym_L_SQUOTE] = ACTIONS(4106), + [anon_sym_u_SQUOTE] = ACTIONS(4106), + [anon_sym_U_SQUOTE] = ACTIONS(4106), + [anon_sym_u8_SQUOTE] = ACTIONS(4106), + [anon_sym_SQUOTE] = ACTIONS(4106), + [anon_sym_L_DQUOTE] = ACTIONS(4106), + [anon_sym_u_DQUOTE] = ACTIONS(4106), + [anon_sym_U_DQUOTE] = ACTIONS(4106), + [anon_sym_u8_DQUOTE] = ACTIONS(4106), + [anon_sym_DQUOTE] = ACTIONS(4106), + [sym_true] = ACTIONS(4104), + [sym_false] = ACTIONS(4104), + [anon_sym_NULL] = ACTIONS(4104), + [anon_sym_nullptr] = ACTIONS(4104), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4104), + [anon_sym_decltype] = ACTIONS(4104), + [anon_sym_explicit] = ACTIONS(4104), + [anon_sym_export] = ACTIONS(4104), + [anon_sym_import] = ACTIONS(4104), + [anon_sym_template] = ACTIONS(4104), + [anon_sym_operator] = ACTIONS(4104), + [anon_sym_try] = ACTIONS(4104), + [anon_sym_delete] = ACTIONS(4104), + [anon_sym_throw] = ACTIONS(4104), + [anon_sym_namespace] = ACTIONS(4104), + [anon_sym_static_assert] = ACTIONS(4104), + [anon_sym_concept] = ACTIONS(4104), + [anon_sym_co_return] = ACTIONS(4104), + [anon_sym_co_yield] = ACTIONS(4104), + [anon_sym_R_DQUOTE] = ACTIONS(4106), + [anon_sym_LR_DQUOTE] = ACTIONS(4106), + [anon_sym_uR_DQUOTE] = ACTIONS(4106), + [anon_sym_UR_DQUOTE] = ACTIONS(4106), + [anon_sym_u8R_DQUOTE] = ACTIONS(4106), + [anon_sym_co_await] = ACTIONS(4104), + [anon_sym_new] = ACTIONS(4104), + [anon_sym_requires] = ACTIONS(4104), + [anon_sym_CARET_CARET] = ACTIONS(4106), + [anon_sym_LBRACK_COLON] = ACTIONS(4106), + [sym_this] = ACTIONS(4104), + }, + [STATE(795)] = { + [sym_identifier] = ACTIONS(4108), + [aux_sym_preproc_include_token1] = ACTIONS(4108), + [aux_sym_preproc_def_token1] = ACTIONS(4108), + [aux_sym_preproc_if_token1] = ACTIONS(4108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4108), + [sym_preproc_directive] = ACTIONS(4108), + [anon_sym_LPAREN2] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4110), + [anon_sym_TILDE] = ACTIONS(4110), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_AMP] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym___extension__] = ACTIONS(4108), + [anon_sym_typedef] = ACTIONS(4108), + [anon_sym_virtual] = ACTIONS(4108), + [anon_sym_extern] = ACTIONS(4108), + [anon_sym___attribute__] = ACTIONS(4108), + [anon_sym___attribute] = ACTIONS(4108), + [anon_sym_using] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4110), + [anon_sym___declspec] = ACTIONS(4108), + [anon_sym___based] = ACTIONS(4108), + [anon_sym___cdecl] = ACTIONS(4108), + [anon_sym___clrcall] = ACTIONS(4108), + [anon_sym___stdcall] = ACTIONS(4108), + [anon_sym___fastcall] = ACTIONS(4108), + [anon_sym___thiscall] = ACTIONS(4108), + [anon_sym___vectorcall] = ACTIONS(4108), + [anon_sym_LBRACE] = ACTIONS(4110), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_signed] = ACTIONS(4108), + [anon_sym_unsigned] = ACTIONS(4108), + [anon_sym_long] = ACTIONS(4108), + [anon_sym_short] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_static] = ACTIONS(4108), + [anon_sym_register] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym___inline] = ACTIONS(4108), + [anon_sym___inline__] = ACTIONS(4108), + [anon_sym___forceinline] = ACTIONS(4108), + [anon_sym_thread_local] = ACTIONS(4108), + [anon_sym___thread] = ACTIONS(4108), + [anon_sym_const] = ACTIONS(4108), + [anon_sym_constexpr] = ACTIONS(4108), + [anon_sym_volatile] = ACTIONS(4108), + [anon_sym_restrict] = ACTIONS(4108), + [anon_sym___restrict__] = ACTIONS(4108), + [anon_sym__Atomic] = ACTIONS(4108), + [anon_sym__Noreturn] = ACTIONS(4108), + [anon_sym_noreturn] = ACTIONS(4108), + [anon_sym__Nonnull] = ACTIONS(4108), + [anon_sym_mutable] = ACTIONS(4108), + [anon_sym_constinit] = ACTIONS(4108), + [anon_sym_consteval] = ACTIONS(4108), + [anon_sym_alignas] = ACTIONS(4108), + [anon_sym__Alignas] = ACTIONS(4108), + [sym_primitive_type] = ACTIONS(4108), + [anon_sym_enum] = ACTIONS(4108), + [anon_sym_class] = ACTIONS(4108), + [anon_sym_struct] = ACTIONS(4108), + [anon_sym_union] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_switch] = ACTIONS(4108), + [anon_sym_case] = ACTIONS(4108), + [anon_sym_default] = ACTIONS(4108), + [anon_sym_while] = ACTIONS(4108), + [anon_sym_do] = ACTIONS(4108), + [anon_sym_for] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_goto] = ACTIONS(4108), + [anon_sym___try] = ACTIONS(4108), + [anon_sym___leave] = ACTIONS(4108), + [anon_sym_not] = ACTIONS(4108), + [anon_sym_compl] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_sizeof] = ACTIONS(4108), + [anon_sym___alignof__] = ACTIONS(4108), + [anon_sym___alignof] = ACTIONS(4108), + [anon_sym__alignof] = ACTIONS(4108), + [anon_sym_alignof] = ACTIONS(4108), + [anon_sym__Alignof] = ACTIONS(4108), + [anon_sym_offsetof] = ACTIONS(4108), + [anon_sym__Generic] = ACTIONS(4108), + [anon_sym_typename] = ACTIONS(4108), + [anon_sym_asm] = ACTIONS(4108), + [anon_sym___asm__] = ACTIONS(4108), + [anon_sym___asm] = ACTIONS(4108), + [sym_number_literal] = ACTIONS(4110), + [anon_sym_L_SQUOTE] = ACTIONS(4110), + [anon_sym_u_SQUOTE] = ACTIONS(4110), + [anon_sym_U_SQUOTE] = ACTIONS(4110), + [anon_sym_u8_SQUOTE] = ACTIONS(4110), + [anon_sym_SQUOTE] = ACTIONS(4110), + [anon_sym_L_DQUOTE] = ACTIONS(4110), + [anon_sym_u_DQUOTE] = ACTIONS(4110), + [anon_sym_U_DQUOTE] = ACTIONS(4110), + [anon_sym_u8_DQUOTE] = ACTIONS(4110), + [anon_sym_DQUOTE] = ACTIONS(4110), + [sym_true] = ACTIONS(4108), + [sym_false] = ACTIONS(4108), + [anon_sym_NULL] = ACTIONS(4108), + [anon_sym_nullptr] = ACTIONS(4108), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4108), + [anon_sym_decltype] = ACTIONS(4108), + [anon_sym_explicit] = ACTIONS(4108), + [anon_sym_export] = ACTIONS(4108), + [anon_sym_import] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_delete] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_namespace] = ACTIONS(4108), + [anon_sym_static_assert] = ACTIONS(4108), + [anon_sym_concept] = ACTIONS(4108), + [anon_sym_co_return] = ACTIONS(4108), + [anon_sym_co_yield] = ACTIONS(4108), + [anon_sym_R_DQUOTE] = ACTIONS(4110), + [anon_sym_LR_DQUOTE] = ACTIONS(4110), + [anon_sym_uR_DQUOTE] = ACTIONS(4110), + [anon_sym_UR_DQUOTE] = ACTIONS(4110), + [anon_sym_u8R_DQUOTE] = ACTIONS(4110), + [anon_sym_co_await] = ACTIONS(4108), + [anon_sym_new] = ACTIONS(4108), + [anon_sym_requires] = ACTIONS(4108), + [anon_sym_CARET_CARET] = ACTIONS(4110), + [anon_sym_LBRACK_COLON] = ACTIONS(4110), + [sym_this] = ACTIONS(4108), + }, + [STATE(796)] = { [sym_identifier] = ACTIONS(4160), [aux_sym_preproc_include_token1] = ACTIONS(4160), [aux_sym_preproc_def_token1] = ACTIONS(4160), [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token2] = ACTIONS(4160), [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), [sym_preproc_directive] = ACTIONS(4160), @@ -183347,6 +173474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(4160), [anon_sym___vectorcall] = ACTIONS(4160), [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_RBRACE] = ACTIONS(4162), [anon_sym_signed] = ACTIONS(4160), [anon_sym_unsigned] = ACTIONS(4160), [anon_sym_long] = ACTIONS(4160), @@ -183427,6 +173555,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(4160), [anon_sym_decltype] = ACTIONS(4160), [anon_sym_explicit] = ACTIONS(4160), + [anon_sym_export] = ACTIONS(4160), + [anon_sym_import] = ACTIONS(4160), [anon_sym_template] = ACTIONS(4160), [anon_sym_operator] = ACTIONS(4160), [anon_sym_try] = ACTIONS(4160), @@ -183449,9845 +173579,10320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4162), [sym_this] = ACTIONS(4160), }, - [STATE(915)] = { - [sym_identifier] = ACTIONS(4119), - [aux_sym_preproc_include_token1] = ACTIONS(4119), - [aux_sym_preproc_def_token1] = ACTIONS(4119), - [aux_sym_preproc_if_token1] = ACTIONS(4119), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4119), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4119), - [sym_preproc_directive] = ACTIONS(4119), - [anon_sym_LPAREN2] = ACTIONS(4121), - [anon_sym_BANG] = ACTIONS(4121), - [anon_sym_TILDE] = ACTIONS(4121), - [anon_sym_DASH] = ACTIONS(4119), - [anon_sym_PLUS] = ACTIONS(4119), - [anon_sym_STAR] = ACTIONS(4121), - [anon_sym_AMP_AMP] = ACTIONS(4121), - [anon_sym_AMP] = ACTIONS(4119), - [anon_sym_SEMI] = ACTIONS(4121), - [anon_sym___extension__] = ACTIONS(4119), - [anon_sym_typedef] = ACTIONS(4119), - [anon_sym_virtual] = ACTIONS(4119), - [anon_sym_extern] = ACTIONS(4119), - [anon_sym___attribute__] = ACTIONS(4119), - [anon_sym___attribute] = ACTIONS(4119), - [anon_sym_using] = ACTIONS(4119), - [anon_sym_COLON_COLON] = ACTIONS(4121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4121), - [anon_sym___declspec] = ACTIONS(4119), - [anon_sym___based] = ACTIONS(4119), - [anon_sym___cdecl] = ACTIONS(4119), - [anon_sym___clrcall] = ACTIONS(4119), - [anon_sym___stdcall] = ACTIONS(4119), - [anon_sym___fastcall] = ACTIONS(4119), - [anon_sym___thiscall] = ACTIONS(4119), - [anon_sym___vectorcall] = ACTIONS(4119), - [anon_sym_LBRACE] = ACTIONS(4121), - [anon_sym_RBRACE] = ACTIONS(4121), - [anon_sym_signed] = ACTIONS(4119), - [anon_sym_unsigned] = ACTIONS(4119), - [anon_sym_long] = ACTIONS(4119), - [anon_sym_short] = ACTIONS(4119), - [anon_sym_LBRACK] = ACTIONS(4119), - [anon_sym_static] = ACTIONS(4119), - [anon_sym_register] = ACTIONS(4119), - [anon_sym_inline] = ACTIONS(4119), - [anon_sym___inline] = ACTIONS(4119), - [anon_sym___inline__] = ACTIONS(4119), - [anon_sym___forceinline] = ACTIONS(4119), - [anon_sym_thread_local] = ACTIONS(4119), - [anon_sym___thread] = ACTIONS(4119), - [anon_sym_const] = ACTIONS(4119), - [anon_sym_constexpr] = ACTIONS(4119), - [anon_sym_volatile] = ACTIONS(4119), - [anon_sym_restrict] = ACTIONS(4119), - [anon_sym___restrict__] = ACTIONS(4119), - [anon_sym__Atomic] = ACTIONS(4119), - [anon_sym__Noreturn] = ACTIONS(4119), - [anon_sym_noreturn] = ACTIONS(4119), - [anon_sym__Nonnull] = ACTIONS(4119), - [anon_sym_mutable] = ACTIONS(4119), - [anon_sym_constinit] = ACTIONS(4119), - [anon_sym_consteval] = ACTIONS(4119), - [anon_sym_alignas] = ACTIONS(4119), - [anon_sym__Alignas] = ACTIONS(4119), - [sym_primitive_type] = ACTIONS(4119), - [anon_sym_enum] = ACTIONS(4119), - [anon_sym_class] = ACTIONS(4119), - [anon_sym_struct] = ACTIONS(4119), - [anon_sym_union] = ACTIONS(4119), - [anon_sym_if] = ACTIONS(4119), - [anon_sym_switch] = ACTIONS(4119), - [anon_sym_case] = ACTIONS(4119), - [anon_sym_default] = ACTIONS(4119), - [anon_sym_while] = ACTIONS(4119), - [anon_sym_do] = ACTIONS(4119), - [anon_sym_for] = ACTIONS(4119), - [anon_sym_return] = ACTIONS(4119), - [anon_sym_break] = ACTIONS(4119), - [anon_sym_continue] = ACTIONS(4119), - [anon_sym_goto] = ACTIONS(4119), - [anon_sym___try] = ACTIONS(4119), - [anon_sym___leave] = ACTIONS(4119), - [anon_sym_not] = ACTIONS(4119), - [anon_sym_compl] = ACTIONS(4119), - [anon_sym_DASH_DASH] = ACTIONS(4121), - [anon_sym_PLUS_PLUS] = ACTIONS(4121), - [anon_sym_sizeof] = ACTIONS(4119), - [anon_sym___alignof__] = ACTIONS(4119), - [anon_sym___alignof] = ACTIONS(4119), - [anon_sym__alignof] = ACTIONS(4119), - [anon_sym_alignof] = ACTIONS(4119), - [anon_sym__Alignof] = ACTIONS(4119), - [anon_sym_offsetof] = ACTIONS(4119), - [anon_sym__Generic] = ACTIONS(4119), - [anon_sym_typename] = ACTIONS(4119), - [anon_sym_asm] = ACTIONS(4119), - [anon_sym___asm__] = ACTIONS(4119), - [anon_sym___asm] = ACTIONS(4119), - [sym_number_literal] = ACTIONS(4121), - [anon_sym_L_SQUOTE] = ACTIONS(4121), - [anon_sym_u_SQUOTE] = ACTIONS(4121), - [anon_sym_U_SQUOTE] = ACTIONS(4121), - [anon_sym_u8_SQUOTE] = ACTIONS(4121), - [anon_sym_SQUOTE] = ACTIONS(4121), - [anon_sym_L_DQUOTE] = ACTIONS(4121), - [anon_sym_u_DQUOTE] = ACTIONS(4121), - [anon_sym_U_DQUOTE] = ACTIONS(4121), - [anon_sym_u8_DQUOTE] = ACTIONS(4121), - [anon_sym_DQUOTE] = ACTIONS(4121), - [sym_true] = ACTIONS(4119), - [sym_false] = ACTIONS(4119), - [anon_sym_NULL] = ACTIONS(4119), - [anon_sym_nullptr] = ACTIONS(4119), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4119), - [anon_sym_decltype] = ACTIONS(4119), - [anon_sym_explicit] = ACTIONS(4119), - [anon_sym_template] = ACTIONS(4119), - [anon_sym_operator] = ACTIONS(4119), - [anon_sym_try] = ACTIONS(4119), - [anon_sym_delete] = ACTIONS(4119), - [anon_sym_throw] = ACTIONS(4119), - [anon_sym_namespace] = ACTIONS(4119), - [anon_sym_static_assert] = ACTIONS(4119), - [anon_sym_concept] = ACTIONS(4119), - [anon_sym_co_return] = ACTIONS(4119), - [anon_sym_co_yield] = ACTIONS(4119), - [anon_sym_R_DQUOTE] = ACTIONS(4121), - [anon_sym_LR_DQUOTE] = ACTIONS(4121), - [anon_sym_uR_DQUOTE] = ACTIONS(4121), - [anon_sym_UR_DQUOTE] = ACTIONS(4121), - [anon_sym_u8R_DQUOTE] = ACTIONS(4121), - [anon_sym_co_await] = ACTIONS(4119), - [anon_sym_new] = ACTIONS(4119), - [anon_sym_requires] = ACTIONS(4119), - [anon_sym_CARET_CARET] = ACTIONS(4121), - [anon_sym_LBRACK_COLON] = ACTIONS(4121), - [sym_this] = ACTIONS(4119), - }, - [STATE(916)] = { - [sym_identifier] = ACTIONS(3986), - [aux_sym_preproc_include_token1] = ACTIONS(3986), - [aux_sym_preproc_def_token1] = ACTIONS(3986), - [aux_sym_preproc_if_token1] = ACTIONS(3986), - [aux_sym_preproc_if_token2] = ACTIONS(3986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3986), - [sym_preproc_directive] = ACTIONS(3986), - [anon_sym_LPAREN2] = ACTIONS(3988), - [anon_sym_BANG] = ACTIONS(3988), - [anon_sym_TILDE] = ACTIONS(3988), - [anon_sym_DASH] = ACTIONS(3986), - [anon_sym_PLUS] = ACTIONS(3986), - [anon_sym_STAR] = ACTIONS(3988), - [anon_sym_AMP_AMP] = ACTIONS(3988), - [anon_sym_AMP] = ACTIONS(3986), - [anon_sym_SEMI] = ACTIONS(3988), - [anon_sym___extension__] = ACTIONS(3986), - [anon_sym_typedef] = ACTIONS(3986), - [anon_sym_virtual] = ACTIONS(3986), - [anon_sym_extern] = ACTIONS(3986), - [anon_sym___attribute__] = ACTIONS(3986), - [anon_sym___attribute] = ACTIONS(3986), - [anon_sym_using] = ACTIONS(3986), - [anon_sym_COLON_COLON] = ACTIONS(3988), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3988), - [anon_sym___declspec] = ACTIONS(3986), - [anon_sym___based] = ACTIONS(3986), - [anon_sym___cdecl] = ACTIONS(3986), - [anon_sym___clrcall] = ACTIONS(3986), - [anon_sym___stdcall] = ACTIONS(3986), - [anon_sym___fastcall] = ACTIONS(3986), - [anon_sym___thiscall] = ACTIONS(3986), - [anon_sym___vectorcall] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3988), - [anon_sym_signed] = ACTIONS(3986), - [anon_sym_unsigned] = ACTIONS(3986), - [anon_sym_long] = ACTIONS(3986), - [anon_sym_short] = ACTIONS(3986), - [anon_sym_LBRACK] = ACTIONS(3986), - [anon_sym_static] = ACTIONS(3986), - [anon_sym_register] = ACTIONS(3986), - [anon_sym_inline] = ACTIONS(3986), - [anon_sym___inline] = ACTIONS(3986), - [anon_sym___inline__] = ACTIONS(3986), - [anon_sym___forceinline] = ACTIONS(3986), - [anon_sym_thread_local] = ACTIONS(3986), - [anon_sym___thread] = ACTIONS(3986), - [anon_sym_const] = ACTIONS(3986), - [anon_sym_constexpr] = ACTIONS(3986), - [anon_sym_volatile] = ACTIONS(3986), - [anon_sym_restrict] = ACTIONS(3986), - [anon_sym___restrict__] = ACTIONS(3986), - [anon_sym__Atomic] = ACTIONS(3986), - [anon_sym__Noreturn] = ACTIONS(3986), - [anon_sym_noreturn] = ACTIONS(3986), - [anon_sym__Nonnull] = ACTIONS(3986), - [anon_sym_mutable] = ACTIONS(3986), - [anon_sym_constinit] = ACTIONS(3986), - [anon_sym_consteval] = ACTIONS(3986), - [anon_sym_alignas] = ACTIONS(3986), - [anon_sym__Alignas] = ACTIONS(3986), - [sym_primitive_type] = ACTIONS(3986), - [anon_sym_enum] = ACTIONS(3986), - [anon_sym_class] = ACTIONS(3986), - [anon_sym_struct] = ACTIONS(3986), - [anon_sym_union] = ACTIONS(3986), - [anon_sym_if] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(3986), - [anon_sym_case] = ACTIONS(3986), - [anon_sym_default] = ACTIONS(3986), - [anon_sym_while] = ACTIONS(3986), - [anon_sym_do] = ACTIONS(3986), - [anon_sym_for] = ACTIONS(3986), - [anon_sym_return] = ACTIONS(3986), - [anon_sym_break] = ACTIONS(3986), - [anon_sym_continue] = ACTIONS(3986), - [anon_sym_goto] = ACTIONS(3986), - [anon_sym___try] = ACTIONS(3986), - [anon_sym___leave] = ACTIONS(3986), - [anon_sym_not] = ACTIONS(3986), - [anon_sym_compl] = ACTIONS(3986), - [anon_sym_DASH_DASH] = ACTIONS(3988), - [anon_sym_PLUS_PLUS] = ACTIONS(3988), - [anon_sym_sizeof] = ACTIONS(3986), - [anon_sym___alignof__] = ACTIONS(3986), - [anon_sym___alignof] = ACTIONS(3986), - [anon_sym__alignof] = ACTIONS(3986), - [anon_sym_alignof] = ACTIONS(3986), - [anon_sym__Alignof] = ACTIONS(3986), - [anon_sym_offsetof] = ACTIONS(3986), - [anon_sym__Generic] = ACTIONS(3986), - [anon_sym_typename] = ACTIONS(3986), - [anon_sym_asm] = ACTIONS(3986), - [anon_sym___asm__] = ACTIONS(3986), - [anon_sym___asm] = ACTIONS(3986), - [sym_number_literal] = ACTIONS(3988), - [anon_sym_L_SQUOTE] = ACTIONS(3988), - [anon_sym_u_SQUOTE] = ACTIONS(3988), - [anon_sym_U_SQUOTE] = ACTIONS(3988), - [anon_sym_u8_SQUOTE] = ACTIONS(3988), - [anon_sym_SQUOTE] = ACTIONS(3988), - [anon_sym_L_DQUOTE] = ACTIONS(3988), - [anon_sym_u_DQUOTE] = ACTIONS(3988), - [anon_sym_U_DQUOTE] = ACTIONS(3988), - [anon_sym_u8_DQUOTE] = ACTIONS(3988), - [anon_sym_DQUOTE] = ACTIONS(3988), - [sym_true] = ACTIONS(3986), - [sym_false] = ACTIONS(3986), - [anon_sym_NULL] = ACTIONS(3986), - [anon_sym_nullptr] = ACTIONS(3986), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3986), - [anon_sym_decltype] = ACTIONS(3986), - [anon_sym_explicit] = ACTIONS(3986), - [anon_sym_template] = ACTIONS(3986), - [anon_sym_operator] = ACTIONS(3986), - [anon_sym_try] = ACTIONS(3986), - [anon_sym_delete] = ACTIONS(3986), - [anon_sym_throw] = ACTIONS(3986), - [anon_sym_namespace] = ACTIONS(3986), - [anon_sym_static_assert] = ACTIONS(3986), - [anon_sym_concept] = ACTIONS(3986), - [anon_sym_co_return] = ACTIONS(3986), - [anon_sym_co_yield] = ACTIONS(3986), - [anon_sym_R_DQUOTE] = ACTIONS(3988), - [anon_sym_LR_DQUOTE] = ACTIONS(3988), - [anon_sym_uR_DQUOTE] = ACTIONS(3988), - [anon_sym_UR_DQUOTE] = ACTIONS(3988), - [anon_sym_u8R_DQUOTE] = ACTIONS(3988), - [anon_sym_co_await] = ACTIONS(3986), - [anon_sym_new] = ACTIONS(3986), - [anon_sym_requires] = ACTIONS(3986), - [anon_sym_CARET_CARET] = ACTIONS(3988), - [anon_sym_LBRACK_COLON] = ACTIONS(3988), - [sym_this] = ACTIONS(3986), - }, - [STATE(917)] = { - [sym_expression] = STATE(7005), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4568), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3385), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_SLASH] = ACTIONS(4570), - [anon_sym_PERCENT] = ACTIONS(4568), - [anon_sym_PIPE_PIPE] = ACTIONS(4568), - [anon_sym_AMP_AMP] = ACTIONS(4568), - [anon_sym_PIPE] = ACTIONS(4570), - [anon_sym_CARET] = ACTIONS(4570), - [anon_sym_AMP] = ACTIONS(4572), - [anon_sym_EQ_EQ] = ACTIONS(4568), - [anon_sym_BANG_EQ] = ACTIONS(4568), - [anon_sym_GT] = ACTIONS(4570), - [anon_sym_GT_EQ] = ACTIONS(4568), - [anon_sym_LT_EQ] = ACTIONS(4570), - [anon_sym_LT] = ACTIONS(4570), - [anon_sym_LT_LT] = ACTIONS(4568), - [anon_sym_GT_GT] = ACTIONS(4568), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(4568), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_QMARK] = ACTIONS(4568), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_LT_EQ_GT] = ACTIONS(4568), - [anon_sym_or] = ACTIONS(4570), - [anon_sym_and] = ACTIONS(4570), - [anon_sym_bitor] = ACTIONS(4570), - [anon_sym_xor] = ACTIONS(4570), - [anon_sym_bitand] = ACTIONS(4570), - [anon_sym_not_eq] = ACTIONS(4570), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [anon_sym_DOT] = ACTIONS(4570), - [anon_sym_DOT_STAR] = ACTIONS(4568), - [anon_sym_DASH_GT] = ACTIONS(4568), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(918)] = { - [sym_expression] = STATE(6628), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4574), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4577), - [anon_sym_COLON_COLON] = ACTIONS(4580), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(4583), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4586), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(4589), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(4592), - [sym_this] = ACTIONS(3425), - }, - [STATE(919)] = { - [sym_expression] = STATE(5418), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(4595), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4598), - [anon_sym_COLON_COLON] = ACTIONS(4601), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(4604), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(4607), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(4610), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(4613), - [sym_this] = ACTIONS(2714), - }, - [STATE(920)] = { - [sym_expression] = STATE(6773), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4616), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4619), - [anon_sym_COLON_COLON] = ACTIONS(4622), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(4625), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4628), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(4631), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(4634), - [sym_this] = ACTIONS(2851), - }, - [STATE(921)] = { - [sym_expression] = STATE(5679), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(3469), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(3472), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(3478), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(3481), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(3484), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(3487), - [sym_this] = ACTIONS(2004), - }, - [STATE(922)] = { - [sym_expression] = STATE(6237), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(4637), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4640), - [anon_sym_COLON_COLON] = ACTIONS(4643), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2776), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2779), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), + [STATE(797)] = { + [sym_identifier] = ACTIONS(4160), + [aux_sym_preproc_include_token1] = ACTIONS(4160), + [aux_sym_preproc_def_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), + [sym_preproc_directive] = ACTIONS(4160), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_TILDE] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym___extension__] = ACTIONS(4160), + [anon_sym_typedef] = ACTIONS(4160), + [anon_sym_virtual] = ACTIONS(4160), + [anon_sym_extern] = ACTIONS(4160), + [anon_sym___attribute__] = ACTIONS(4160), + [anon_sym___attribute] = ACTIONS(4160), + [anon_sym_using] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), + [anon_sym___declspec] = ACTIONS(4160), + [anon_sym___based] = ACTIONS(4160), + [anon_sym___cdecl] = ACTIONS(4160), + [anon_sym___clrcall] = ACTIONS(4160), + [anon_sym___stdcall] = ACTIONS(4160), + [anon_sym___fastcall] = ACTIONS(4160), + [anon_sym___thiscall] = ACTIONS(4160), + [anon_sym___vectorcall] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_signed] = ACTIONS(4160), + [anon_sym_unsigned] = ACTIONS(4160), + [anon_sym_long] = ACTIONS(4160), + [anon_sym_short] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4160), + [anon_sym_static] = ACTIONS(4160), + [anon_sym_register] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym___inline] = ACTIONS(4160), + [anon_sym___inline__] = ACTIONS(4160), + [anon_sym___forceinline] = ACTIONS(4160), + [anon_sym_thread_local] = ACTIONS(4160), + [anon_sym___thread] = ACTIONS(4160), + [anon_sym_const] = ACTIONS(4160), + [anon_sym_constexpr] = ACTIONS(4160), + [anon_sym_volatile] = ACTIONS(4160), + [anon_sym_restrict] = ACTIONS(4160), + [anon_sym___restrict__] = ACTIONS(4160), + [anon_sym__Atomic] = ACTIONS(4160), + [anon_sym__Noreturn] = ACTIONS(4160), + [anon_sym_noreturn] = ACTIONS(4160), + [anon_sym__Nonnull] = ACTIONS(4160), + [anon_sym_mutable] = ACTIONS(4160), + [anon_sym_constinit] = ACTIONS(4160), + [anon_sym_consteval] = ACTIONS(4160), + [anon_sym_alignas] = ACTIONS(4160), + [anon_sym__Alignas] = ACTIONS(4160), + [sym_primitive_type] = ACTIONS(4160), + [anon_sym_enum] = ACTIONS(4160), + [anon_sym_class] = ACTIONS(4160), + [anon_sym_struct] = ACTIONS(4160), + [anon_sym_union] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_switch] = ACTIONS(4160), + [anon_sym_case] = ACTIONS(4160), + [anon_sym_default] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_do] = ACTIONS(4160), + [anon_sym_for] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_goto] = ACTIONS(4160), + [anon_sym___try] = ACTIONS(4160), + [anon_sym___leave] = ACTIONS(4160), + [anon_sym_not] = ACTIONS(4160), + [anon_sym_compl] = ACTIONS(4160), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_sizeof] = ACTIONS(4160), + [anon_sym___alignof__] = ACTIONS(4160), + [anon_sym___alignof] = ACTIONS(4160), + [anon_sym__alignof] = ACTIONS(4160), + [anon_sym_alignof] = ACTIONS(4160), + [anon_sym__Alignof] = ACTIONS(4160), + [anon_sym_offsetof] = ACTIONS(4160), + [anon_sym__Generic] = ACTIONS(4160), + [anon_sym_typename] = ACTIONS(4160), + [anon_sym_asm] = ACTIONS(4160), + [anon_sym___asm__] = ACTIONS(4160), + [anon_sym___asm] = ACTIONS(4160), + [sym_number_literal] = ACTIONS(4162), + [anon_sym_L_SQUOTE] = ACTIONS(4162), + [anon_sym_u_SQUOTE] = ACTIONS(4162), + [anon_sym_U_SQUOTE] = ACTIONS(4162), + [anon_sym_u8_SQUOTE] = ACTIONS(4162), + [anon_sym_SQUOTE] = ACTIONS(4162), + [anon_sym_L_DQUOTE] = ACTIONS(4162), + [anon_sym_u_DQUOTE] = ACTIONS(4162), + [anon_sym_U_DQUOTE] = ACTIONS(4162), + [anon_sym_u8_DQUOTE] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4162), + [sym_true] = ACTIONS(4160), + [sym_false] = ACTIONS(4160), + [anon_sym_NULL] = ACTIONS(4160), + [anon_sym_nullptr] = ACTIONS(4160), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(4646), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2788), - [sym_this] = ACTIONS(237), + [sym_auto] = ACTIONS(4160), + [anon_sym_decltype] = ACTIONS(4160), + [anon_sym_explicit] = ACTIONS(4160), + [anon_sym_export] = ACTIONS(4160), + [anon_sym_import] = ACTIONS(4160), + [anon_sym_template] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_delete] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_namespace] = ACTIONS(4160), + [anon_sym_static_assert] = ACTIONS(4160), + [anon_sym_concept] = ACTIONS(4160), + [anon_sym_co_return] = ACTIONS(4160), + [anon_sym_co_yield] = ACTIONS(4160), + [anon_sym_R_DQUOTE] = ACTIONS(4162), + [anon_sym_LR_DQUOTE] = ACTIONS(4162), + [anon_sym_uR_DQUOTE] = ACTIONS(4162), + [anon_sym_UR_DQUOTE] = ACTIONS(4162), + [anon_sym_u8R_DQUOTE] = ACTIONS(4162), + [anon_sym_co_await] = ACTIONS(4160), + [anon_sym_new] = ACTIONS(4160), + [anon_sym_requires] = ACTIONS(4160), + [anon_sym_CARET_CARET] = ACTIONS(4162), + [anon_sym_LBRACK_COLON] = ACTIONS(4162), + [sym_this] = ACTIONS(4160), }, - [STATE(923)] = { - [sym_expression] = STATE(6775), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4649), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4652), - [anon_sym_COLON_COLON] = ACTIONS(4655), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2776), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2779), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), + [STATE(798)] = { + [sym_identifier] = ACTIONS(4164), + [aux_sym_preproc_include_token1] = ACTIONS(4164), + [aux_sym_preproc_def_token1] = ACTIONS(4164), + [aux_sym_preproc_if_token1] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), + [sym_preproc_directive] = ACTIONS(4164), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_typedef] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_using] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym___cdecl] = ACTIONS(4164), + [anon_sym___clrcall] = ACTIONS(4164), + [anon_sym___stdcall] = ACTIONS(4164), + [anon_sym___fastcall] = ACTIONS(4164), + [anon_sym___thiscall] = ACTIONS(4164), + [anon_sym___vectorcall] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4166), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_signed] = ACTIONS(4164), + [anon_sym_unsigned] = ACTIONS(4164), + [anon_sym_long] = ACTIONS(4164), + [anon_sym_short] = ACTIONS(4164), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [sym_primitive_type] = ACTIONS(4164), + [anon_sym_enum] = ACTIONS(4164), + [anon_sym_class] = ACTIONS(4164), + [anon_sym_struct] = ACTIONS(4164), + [anon_sym_union] = ACTIONS(4164), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_switch] = ACTIONS(4164), + [anon_sym_case] = ACTIONS(4164), + [anon_sym_default] = ACTIONS(4164), + [anon_sym_while] = ACTIONS(4164), + [anon_sym_do] = ACTIONS(4164), + [anon_sym_for] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_goto] = ACTIONS(4164), + [anon_sym___try] = ACTIONS(4164), + [anon_sym___leave] = ACTIONS(4164), + [anon_sym_not] = ACTIONS(4164), + [anon_sym_compl] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_sizeof] = ACTIONS(4164), + [anon_sym___alignof__] = ACTIONS(4164), + [anon_sym___alignof] = ACTIONS(4164), + [anon_sym__alignof] = ACTIONS(4164), + [anon_sym_alignof] = ACTIONS(4164), + [anon_sym__Alignof] = ACTIONS(4164), + [anon_sym_offsetof] = ACTIONS(4164), + [anon_sym__Generic] = ACTIONS(4164), + [anon_sym_typename] = ACTIONS(4164), + [anon_sym_asm] = ACTIONS(4164), + [anon_sym___asm__] = ACTIONS(4164), + [anon_sym___asm] = ACTIONS(4164), + [sym_number_literal] = ACTIONS(4166), + [anon_sym_L_SQUOTE] = ACTIONS(4166), + [anon_sym_u_SQUOTE] = ACTIONS(4166), + [anon_sym_U_SQUOTE] = ACTIONS(4166), + [anon_sym_u8_SQUOTE] = ACTIONS(4166), + [anon_sym_SQUOTE] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(4166), + [anon_sym_u_DQUOTE] = ACTIONS(4166), + [anon_sym_U_DQUOTE] = ACTIONS(4166), + [anon_sym_u8_DQUOTE] = ACTIONS(4166), + [anon_sym_DQUOTE] = ACTIONS(4166), + [sym_true] = ACTIONS(4164), + [sym_false] = ACTIONS(4164), + [anon_sym_NULL] = ACTIONS(4164), + [anon_sym_nullptr] = ACTIONS(4164), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(2785), - [anon_sym_delete] = ACTIONS(3602), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2788), - [sym_this] = ACTIONS(237), - }, - [STATE(924)] = { - [sym_expression] = STATE(4650), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(4658), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(4661), - [anon_sym_COLON_COLON] = ACTIONS(4664), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(4667), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(4670), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(4673), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(4676), - [sym_this] = ACTIONS(2058), - }, - [STATE(925)] = { - [sym_expression] = STATE(5058), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(4679), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4685), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(4688), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(4691), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(4694), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(4697), - [sym_this] = ACTIONS(1914), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_explicit] = ACTIONS(4164), + [anon_sym_export] = ACTIONS(4164), + [anon_sym_import] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_delete] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_namespace] = ACTIONS(4164), + [anon_sym_static_assert] = ACTIONS(4164), + [anon_sym_concept] = ACTIONS(4164), + [anon_sym_co_return] = ACTIONS(4164), + [anon_sym_co_yield] = ACTIONS(4164), + [anon_sym_R_DQUOTE] = ACTIONS(4166), + [anon_sym_LR_DQUOTE] = ACTIONS(4166), + [anon_sym_uR_DQUOTE] = ACTIONS(4166), + [anon_sym_UR_DQUOTE] = ACTIONS(4166), + [anon_sym_u8R_DQUOTE] = ACTIONS(4166), + [anon_sym_co_await] = ACTIONS(4164), + [anon_sym_new] = ACTIONS(4164), + [anon_sym_requires] = ACTIONS(4164), + [anon_sym_CARET_CARET] = ACTIONS(4166), + [anon_sym_LBRACK_COLON] = ACTIONS(4166), + [sym_this] = ACTIONS(4164), }, - [STATE(926)] = { - [sym_expression] = STATE(6426), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4700), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4703), - [anon_sym_COLON_COLON] = ACTIONS(4706), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2776), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2779), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), + [STATE(799)] = { + [sym_identifier] = ACTIONS(4168), + [aux_sym_preproc_include_token1] = ACTIONS(4168), + [aux_sym_preproc_def_token1] = ACTIONS(4168), + [aux_sym_preproc_if_token1] = ACTIONS(4168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4168), + [sym_preproc_directive] = ACTIONS(4168), + [anon_sym_LPAREN2] = ACTIONS(4170), + [anon_sym_BANG] = ACTIONS(4170), + [anon_sym_TILDE] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_AMP_AMP] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4170), + [anon_sym___extension__] = ACTIONS(4168), + [anon_sym_typedef] = ACTIONS(4168), + [anon_sym_virtual] = ACTIONS(4168), + [anon_sym_extern] = ACTIONS(4168), + [anon_sym___attribute__] = ACTIONS(4168), + [anon_sym___attribute] = ACTIONS(4168), + [anon_sym_using] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4170), + [anon_sym___declspec] = ACTIONS(4168), + [anon_sym___based] = ACTIONS(4168), + [anon_sym___cdecl] = ACTIONS(4168), + [anon_sym___clrcall] = ACTIONS(4168), + [anon_sym___stdcall] = ACTIONS(4168), + [anon_sym___fastcall] = ACTIONS(4168), + [anon_sym___thiscall] = ACTIONS(4168), + [anon_sym___vectorcall] = ACTIONS(4168), + [anon_sym_LBRACE] = ACTIONS(4170), + [anon_sym_RBRACE] = ACTIONS(4170), + [anon_sym_signed] = ACTIONS(4168), + [anon_sym_unsigned] = ACTIONS(4168), + [anon_sym_long] = ACTIONS(4168), + [anon_sym_short] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_static] = ACTIONS(4168), + [anon_sym_register] = ACTIONS(4168), + [anon_sym_inline] = ACTIONS(4168), + [anon_sym___inline] = ACTIONS(4168), + [anon_sym___inline__] = ACTIONS(4168), + [anon_sym___forceinline] = ACTIONS(4168), + [anon_sym_thread_local] = ACTIONS(4168), + [anon_sym___thread] = ACTIONS(4168), + [anon_sym_const] = ACTIONS(4168), + [anon_sym_constexpr] = ACTIONS(4168), + [anon_sym_volatile] = ACTIONS(4168), + [anon_sym_restrict] = ACTIONS(4168), + [anon_sym___restrict__] = ACTIONS(4168), + [anon_sym__Atomic] = ACTIONS(4168), + [anon_sym__Noreturn] = ACTIONS(4168), + [anon_sym_noreturn] = ACTIONS(4168), + [anon_sym__Nonnull] = ACTIONS(4168), + [anon_sym_mutable] = ACTIONS(4168), + [anon_sym_constinit] = ACTIONS(4168), + [anon_sym_consteval] = ACTIONS(4168), + [anon_sym_alignas] = ACTIONS(4168), + [anon_sym__Alignas] = ACTIONS(4168), + [sym_primitive_type] = ACTIONS(4168), + [anon_sym_enum] = ACTIONS(4168), + [anon_sym_class] = ACTIONS(4168), + [anon_sym_struct] = ACTIONS(4168), + [anon_sym_union] = ACTIONS(4168), + [anon_sym_if] = ACTIONS(4168), + [anon_sym_switch] = ACTIONS(4168), + [anon_sym_case] = ACTIONS(4168), + [anon_sym_default] = ACTIONS(4168), + [anon_sym_while] = ACTIONS(4168), + [anon_sym_do] = ACTIONS(4168), + [anon_sym_for] = ACTIONS(4168), + [anon_sym_return] = ACTIONS(4168), + [anon_sym_break] = ACTIONS(4168), + [anon_sym_continue] = ACTIONS(4168), + [anon_sym_goto] = ACTIONS(4168), + [anon_sym___try] = ACTIONS(4168), + [anon_sym___leave] = ACTIONS(4168), + [anon_sym_not] = ACTIONS(4168), + [anon_sym_compl] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4170), + [anon_sym_PLUS_PLUS] = ACTIONS(4170), + [anon_sym_sizeof] = ACTIONS(4168), + [anon_sym___alignof__] = ACTIONS(4168), + [anon_sym___alignof] = ACTIONS(4168), + [anon_sym__alignof] = ACTIONS(4168), + [anon_sym_alignof] = ACTIONS(4168), + [anon_sym__Alignof] = ACTIONS(4168), + [anon_sym_offsetof] = ACTIONS(4168), + [anon_sym__Generic] = ACTIONS(4168), + [anon_sym_typename] = ACTIONS(4168), + [anon_sym_asm] = ACTIONS(4168), + [anon_sym___asm__] = ACTIONS(4168), + [anon_sym___asm] = ACTIONS(4168), + [sym_number_literal] = ACTIONS(4170), + [anon_sym_L_SQUOTE] = ACTIONS(4170), + [anon_sym_u_SQUOTE] = ACTIONS(4170), + [anon_sym_U_SQUOTE] = ACTIONS(4170), + [anon_sym_u8_SQUOTE] = ACTIONS(4170), + [anon_sym_SQUOTE] = ACTIONS(4170), + [anon_sym_L_DQUOTE] = ACTIONS(4170), + [anon_sym_u_DQUOTE] = ACTIONS(4170), + [anon_sym_U_DQUOTE] = ACTIONS(4170), + [anon_sym_u8_DQUOTE] = ACTIONS(4170), + [anon_sym_DQUOTE] = ACTIONS(4170), + [sym_true] = ACTIONS(4168), + [sym_false] = ACTIONS(4168), + [anon_sym_NULL] = ACTIONS(4168), + [anon_sym_nullptr] = ACTIONS(4168), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(2785), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2788), - [sym_this] = ACTIONS(237), - }, - [STATE(927)] = { - [sym_expression] = STATE(5389), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(4658), - [anon_sym_LPAREN2] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4709), - [anon_sym_COLON_COLON] = ACTIONS(4712), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(4667), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(4670), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(4673), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(4676), - [sym_this] = ACTIONS(2058), + [sym_auto] = ACTIONS(4168), + [anon_sym_decltype] = ACTIONS(4168), + [anon_sym_explicit] = ACTIONS(4168), + [anon_sym_export] = ACTIONS(4168), + [anon_sym_import] = ACTIONS(4168), + [anon_sym_template] = ACTIONS(4168), + [anon_sym_operator] = ACTIONS(4168), + [anon_sym_try] = ACTIONS(4168), + [anon_sym_delete] = ACTIONS(4168), + [anon_sym_throw] = ACTIONS(4168), + [anon_sym_namespace] = ACTIONS(4168), + [anon_sym_static_assert] = ACTIONS(4168), + [anon_sym_concept] = ACTIONS(4168), + [anon_sym_co_return] = ACTIONS(4168), + [anon_sym_co_yield] = ACTIONS(4168), + [anon_sym_R_DQUOTE] = ACTIONS(4170), + [anon_sym_LR_DQUOTE] = ACTIONS(4170), + [anon_sym_uR_DQUOTE] = ACTIONS(4170), + [anon_sym_UR_DQUOTE] = ACTIONS(4170), + [anon_sym_u8R_DQUOTE] = ACTIONS(4170), + [anon_sym_co_await] = ACTIONS(4168), + [anon_sym_new] = ACTIONS(4168), + [anon_sym_requires] = ACTIONS(4168), + [anon_sym_CARET_CARET] = ACTIONS(4170), + [anon_sym_LBRACK_COLON] = ACTIONS(4170), + [sym_this] = ACTIONS(4168), }, - [STATE(928)] = { - [sym_expression] = STATE(6334), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(2746), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2763), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2776), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2779), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(2785), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2788), - [sym_this] = ACTIONS(237), - }, - [STATE(929)] = { - [sym_expression] = STATE(4319), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(4658), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4715), - [anon_sym_COLON_COLON] = ACTIONS(4718), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(4667), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(4670), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(4673), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(4676), - [sym_this] = ACTIONS(2058), + [STATE(800)] = { + [sym_identifier] = ACTIONS(4172), + [aux_sym_preproc_include_token1] = ACTIONS(4172), + [aux_sym_preproc_def_token1] = ACTIONS(4172), + [aux_sym_preproc_if_token1] = ACTIONS(4172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4172), + [sym_preproc_directive] = ACTIONS(4172), + [anon_sym_LPAREN2] = ACTIONS(4174), + [anon_sym_BANG] = ACTIONS(4174), + [anon_sym_TILDE] = ACTIONS(4174), + [anon_sym_DASH] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4172), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_AMP_AMP] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4172), + [anon_sym_SEMI] = ACTIONS(4174), + [anon_sym___extension__] = ACTIONS(4172), + [anon_sym_typedef] = ACTIONS(4172), + [anon_sym_virtual] = ACTIONS(4172), + [anon_sym_extern] = ACTIONS(4172), + [anon_sym___attribute__] = ACTIONS(4172), + [anon_sym___attribute] = ACTIONS(4172), + [anon_sym_using] = ACTIONS(4172), + [anon_sym_COLON_COLON] = ACTIONS(4174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4174), + [anon_sym___declspec] = ACTIONS(4172), + [anon_sym___based] = ACTIONS(4172), + [anon_sym___cdecl] = ACTIONS(4172), + [anon_sym___clrcall] = ACTIONS(4172), + [anon_sym___stdcall] = ACTIONS(4172), + [anon_sym___fastcall] = ACTIONS(4172), + [anon_sym___thiscall] = ACTIONS(4172), + [anon_sym___vectorcall] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4174), + [anon_sym_RBRACE] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(4172), + [anon_sym_unsigned] = ACTIONS(4172), + [anon_sym_long] = ACTIONS(4172), + [anon_sym_short] = ACTIONS(4172), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_static] = ACTIONS(4172), + [anon_sym_register] = ACTIONS(4172), + [anon_sym_inline] = ACTIONS(4172), + [anon_sym___inline] = ACTIONS(4172), + [anon_sym___inline__] = ACTIONS(4172), + [anon_sym___forceinline] = ACTIONS(4172), + [anon_sym_thread_local] = ACTIONS(4172), + [anon_sym___thread] = ACTIONS(4172), + [anon_sym_const] = ACTIONS(4172), + [anon_sym_constexpr] = ACTIONS(4172), + [anon_sym_volatile] = ACTIONS(4172), + [anon_sym_restrict] = ACTIONS(4172), + [anon_sym___restrict__] = ACTIONS(4172), + [anon_sym__Atomic] = ACTIONS(4172), + [anon_sym__Noreturn] = ACTIONS(4172), + [anon_sym_noreturn] = ACTIONS(4172), + [anon_sym__Nonnull] = ACTIONS(4172), + [anon_sym_mutable] = ACTIONS(4172), + [anon_sym_constinit] = ACTIONS(4172), + [anon_sym_consteval] = ACTIONS(4172), + [anon_sym_alignas] = ACTIONS(4172), + [anon_sym__Alignas] = ACTIONS(4172), + [sym_primitive_type] = ACTIONS(4172), + [anon_sym_enum] = ACTIONS(4172), + [anon_sym_class] = ACTIONS(4172), + [anon_sym_struct] = ACTIONS(4172), + [anon_sym_union] = ACTIONS(4172), + [anon_sym_if] = ACTIONS(4172), + [anon_sym_switch] = ACTIONS(4172), + [anon_sym_case] = ACTIONS(4172), + [anon_sym_default] = ACTIONS(4172), + [anon_sym_while] = ACTIONS(4172), + [anon_sym_do] = ACTIONS(4172), + [anon_sym_for] = ACTIONS(4172), + [anon_sym_return] = ACTIONS(4172), + [anon_sym_break] = ACTIONS(4172), + [anon_sym_continue] = ACTIONS(4172), + [anon_sym_goto] = ACTIONS(4172), + [anon_sym___try] = ACTIONS(4172), + [anon_sym___leave] = ACTIONS(4172), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_compl] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4174), + [anon_sym_PLUS_PLUS] = ACTIONS(4174), + [anon_sym_sizeof] = ACTIONS(4172), + [anon_sym___alignof__] = ACTIONS(4172), + [anon_sym___alignof] = ACTIONS(4172), + [anon_sym__alignof] = ACTIONS(4172), + [anon_sym_alignof] = ACTIONS(4172), + [anon_sym__Alignof] = ACTIONS(4172), + [anon_sym_offsetof] = ACTIONS(4172), + [anon_sym__Generic] = ACTIONS(4172), + [anon_sym_typename] = ACTIONS(4172), + [anon_sym_asm] = ACTIONS(4172), + [anon_sym___asm__] = ACTIONS(4172), + [anon_sym___asm] = ACTIONS(4172), + [sym_number_literal] = ACTIONS(4174), + [anon_sym_L_SQUOTE] = ACTIONS(4174), + [anon_sym_u_SQUOTE] = ACTIONS(4174), + [anon_sym_U_SQUOTE] = ACTIONS(4174), + [anon_sym_u8_SQUOTE] = ACTIONS(4174), + [anon_sym_SQUOTE] = ACTIONS(4174), + [anon_sym_L_DQUOTE] = ACTIONS(4174), + [anon_sym_u_DQUOTE] = ACTIONS(4174), + [anon_sym_U_DQUOTE] = ACTIONS(4174), + [anon_sym_u8_DQUOTE] = ACTIONS(4174), + [anon_sym_DQUOTE] = ACTIONS(4174), + [sym_true] = ACTIONS(4172), + [sym_false] = ACTIONS(4172), + [anon_sym_NULL] = ACTIONS(4172), + [anon_sym_nullptr] = ACTIONS(4172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4172), + [anon_sym_decltype] = ACTIONS(4172), + [anon_sym_explicit] = ACTIONS(4172), + [anon_sym_export] = ACTIONS(4172), + [anon_sym_import] = ACTIONS(4172), + [anon_sym_template] = ACTIONS(4172), + [anon_sym_operator] = ACTIONS(4172), + [anon_sym_try] = ACTIONS(4172), + [anon_sym_delete] = ACTIONS(4172), + [anon_sym_throw] = ACTIONS(4172), + [anon_sym_namespace] = ACTIONS(4172), + [anon_sym_static_assert] = ACTIONS(4172), + [anon_sym_concept] = ACTIONS(4172), + [anon_sym_co_return] = ACTIONS(4172), + [anon_sym_co_yield] = ACTIONS(4172), + [anon_sym_R_DQUOTE] = ACTIONS(4174), + [anon_sym_LR_DQUOTE] = ACTIONS(4174), + [anon_sym_uR_DQUOTE] = ACTIONS(4174), + [anon_sym_UR_DQUOTE] = ACTIONS(4174), + [anon_sym_u8R_DQUOTE] = ACTIONS(4174), + [anon_sym_co_await] = ACTIONS(4172), + [anon_sym_new] = ACTIONS(4172), + [anon_sym_requires] = ACTIONS(4172), + [anon_sym_CARET_CARET] = ACTIONS(4174), + [anon_sym_LBRACK_COLON] = ACTIONS(4174), + [sym_this] = ACTIONS(4172), }, - [STATE(930)] = { - [sym_expression] = STATE(4764), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(4721), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4724), - [anon_sym_COLON_COLON] = ACTIONS(4727), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(4667), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(4670), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(4673), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(4676), - [sym_this] = ACTIONS(2058), + [STATE(801)] = { + [sym_identifier] = ACTIONS(4176), + [aux_sym_preproc_include_token1] = ACTIONS(4176), + [aux_sym_preproc_def_token1] = ACTIONS(4176), + [aux_sym_preproc_if_token1] = ACTIONS(4176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4176), + [sym_preproc_directive] = ACTIONS(4176), + [anon_sym_LPAREN2] = ACTIONS(4178), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_TILDE] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4178), + [anon_sym_AMP_AMP] = ACTIONS(4178), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4178), + [anon_sym___extension__] = ACTIONS(4176), + [anon_sym_typedef] = ACTIONS(4176), + [anon_sym_virtual] = ACTIONS(4176), + [anon_sym_extern] = ACTIONS(4176), + [anon_sym___attribute__] = ACTIONS(4176), + [anon_sym___attribute] = ACTIONS(4176), + [anon_sym_using] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4178), + [anon_sym___declspec] = ACTIONS(4176), + [anon_sym___based] = ACTIONS(4176), + [anon_sym___cdecl] = ACTIONS(4176), + [anon_sym___clrcall] = ACTIONS(4176), + [anon_sym___stdcall] = ACTIONS(4176), + [anon_sym___fastcall] = ACTIONS(4176), + [anon_sym___thiscall] = ACTIONS(4176), + [anon_sym___vectorcall] = ACTIONS(4176), + [anon_sym_LBRACE] = ACTIONS(4178), + [anon_sym_RBRACE] = ACTIONS(4178), + [anon_sym_signed] = ACTIONS(4176), + [anon_sym_unsigned] = ACTIONS(4176), + [anon_sym_long] = ACTIONS(4176), + [anon_sym_short] = ACTIONS(4176), + [anon_sym_LBRACK] = ACTIONS(4176), + [anon_sym_static] = ACTIONS(4176), + [anon_sym_register] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym___inline] = ACTIONS(4176), + [anon_sym___inline__] = ACTIONS(4176), + [anon_sym___forceinline] = ACTIONS(4176), + [anon_sym_thread_local] = ACTIONS(4176), + [anon_sym___thread] = ACTIONS(4176), + [anon_sym_const] = ACTIONS(4176), + [anon_sym_constexpr] = ACTIONS(4176), + [anon_sym_volatile] = ACTIONS(4176), + [anon_sym_restrict] = ACTIONS(4176), + [anon_sym___restrict__] = ACTIONS(4176), + [anon_sym__Atomic] = ACTIONS(4176), + [anon_sym__Noreturn] = ACTIONS(4176), + [anon_sym_noreturn] = ACTIONS(4176), + [anon_sym__Nonnull] = ACTIONS(4176), + [anon_sym_mutable] = ACTIONS(4176), + [anon_sym_constinit] = ACTIONS(4176), + [anon_sym_consteval] = ACTIONS(4176), + [anon_sym_alignas] = ACTIONS(4176), + [anon_sym__Alignas] = ACTIONS(4176), + [sym_primitive_type] = ACTIONS(4176), + [anon_sym_enum] = ACTIONS(4176), + [anon_sym_class] = ACTIONS(4176), + [anon_sym_struct] = ACTIONS(4176), + [anon_sym_union] = ACTIONS(4176), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_switch] = ACTIONS(4176), + [anon_sym_case] = ACTIONS(4176), + [anon_sym_default] = ACTIONS(4176), + [anon_sym_while] = ACTIONS(4176), + [anon_sym_do] = ACTIONS(4176), + [anon_sym_for] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_goto] = ACTIONS(4176), + [anon_sym___try] = ACTIONS(4176), + [anon_sym___leave] = ACTIONS(4176), + [anon_sym_not] = ACTIONS(4176), + [anon_sym_compl] = ACTIONS(4176), + [anon_sym_DASH_DASH] = ACTIONS(4178), + [anon_sym_PLUS_PLUS] = ACTIONS(4178), + [anon_sym_sizeof] = ACTIONS(4176), + [anon_sym___alignof__] = ACTIONS(4176), + [anon_sym___alignof] = ACTIONS(4176), + [anon_sym__alignof] = ACTIONS(4176), + [anon_sym_alignof] = ACTIONS(4176), + [anon_sym__Alignof] = ACTIONS(4176), + [anon_sym_offsetof] = ACTIONS(4176), + [anon_sym__Generic] = ACTIONS(4176), + [anon_sym_typename] = ACTIONS(4176), + [anon_sym_asm] = ACTIONS(4176), + [anon_sym___asm__] = ACTIONS(4176), + [anon_sym___asm] = ACTIONS(4176), + [sym_number_literal] = ACTIONS(4178), + [anon_sym_L_SQUOTE] = ACTIONS(4178), + [anon_sym_u_SQUOTE] = ACTIONS(4178), + [anon_sym_U_SQUOTE] = ACTIONS(4178), + [anon_sym_u8_SQUOTE] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4178), + [anon_sym_L_DQUOTE] = ACTIONS(4178), + [anon_sym_u_DQUOTE] = ACTIONS(4178), + [anon_sym_U_DQUOTE] = ACTIONS(4178), + [anon_sym_u8_DQUOTE] = ACTIONS(4178), + [anon_sym_DQUOTE] = ACTIONS(4178), + [sym_true] = ACTIONS(4176), + [sym_false] = ACTIONS(4176), + [anon_sym_NULL] = ACTIONS(4176), + [anon_sym_nullptr] = ACTIONS(4176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4176), + [anon_sym_decltype] = ACTIONS(4176), + [anon_sym_explicit] = ACTIONS(4176), + [anon_sym_export] = ACTIONS(4176), + [anon_sym_import] = ACTIONS(4176), + [anon_sym_template] = ACTIONS(4176), + [anon_sym_operator] = ACTIONS(4176), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_delete] = ACTIONS(4176), + [anon_sym_throw] = ACTIONS(4176), + [anon_sym_namespace] = ACTIONS(4176), + [anon_sym_static_assert] = ACTIONS(4176), + [anon_sym_concept] = ACTIONS(4176), + [anon_sym_co_return] = ACTIONS(4176), + [anon_sym_co_yield] = ACTIONS(4176), + [anon_sym_R_DQUOTE] = ACTIONS(4178), + [anon_sym_LR_DQUOTE] = ACTIONS(4178), + [anon_sym_uR_DQUOTE] = ACTIONS(4178), + [anon_sym_UR_DQUOTE] = ACTIONS(4178), + [anon_sym_u8R_DQUOTE] = ACTIONS(4178), + [anon_sym_co_await] = ACTIONS(4176), + [anon_sym_new] = ACTIONS(4176), + [anon_sym_requires] = ACTIONS(4176), + [anon_sym_CARET_CARET] = ACTIONS(4178), + [anon_sym_LBRACK_COLON] = ACTIONS(4178), + [sym_this] = ACTIONS(4176), }, - [STATE(931)] = { - [sym_expression] = STATE(6728), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4730), - [anon_sym_LPAREN2] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4733), - [anon_sym_COLON_COLON] = ACTIONS(4736), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(4739), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4742), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), + [STATE(802)] = { + [sym_identifier] = ACTIONS(4180), + [aux_sym_preproc_include_token1] = ACTIONS(4180), + [aux_sym_preproc_def_token1] = ACTIONS(4180), + [aux_sym_preproc_if_token1] = ACTIONS(4180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4180), + [sym_preproc_directive] = ACTIONS(4180), + [anon_sym_LPAREN2] = ACTIONS(4182), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_TILDE] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4180), + [anon_sym_STAR] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_AMP] = ACTIONS(4180), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym___extension__] = ACTIONS(4180), + [anon_sym_typedef] = ACTIONS(4180), + [anon_sym_virtual] = ACTIONS(4180), + [anon_sym_extern] = ACTIONS(4180), + [anon_sym___attribute__] = ACTIONS(4180), + [anon_sym___attribute] = ACTIONS(4180), + [anon_sym_using] = ACTIONS(4180), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4182), + [anon_sym___declspec] = ACTIONS(4180), + [anon_sym___based] = ACTIONS(4180), + [anon_sym___cdecl] = ACTIONS(4180), + [anon_sym___clrcall] = ACTIONS(4180), + [anon_sym___stdcall] = ACTIONS(4180), + [anon_sym___fastcall] = ACTIONS(4180), + [anon_sym___thiscall] = ACTIONS(4180), + [anon_sym___vectorcall] = ACTIONS(4180), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_signed] = ACTIONS(4180), + [anon_sym_unsigned] = ACTIONS(4180), + [anon_sym_long] = ACTIONS(4180), + [anon_sym_short] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_static] = ACTIONS(4180), + [anon_sym_register] = ACTIONS(4180), + [anon_sym_inline] = ACTIONS(4180), + [anon_sym___inline] = ACTIONS(4180), + [anon_sym___inline__] = ACTIONS(4180), + [anon_sym___forceinline] = ACTIONS(4180), + [anon_sym_thread_local] = ACTIONS(4180), + [anon_sym___thread] = ACTIONS(4180), + [anon_sym_const] = ACTIONS(4180), + [anon_sym_constexpr] = ACTIONS(4180), + [anon_sym_volatile] = ACTIONS(4180), + [anon_sym_restrict] = ACTIONS(4180), + [anon_sym___restrict__] = ACTIONS(4180), + [anon_sym__Atomic] = ACTIONS(4180), + [anon_sym__Noreturn] = ACTIONS(4180), + [anon_sym_noreturn] = ACTIONS(4180), + [anon_sym__Nonnull] = ACTIONS(4180), + [anon_sym_mutable] = ACTIONS(4180), + [anon_sym_constinit] = ACTIONS(4180), + [anon_sym_consteval] = ACTIONS(4180), + [anon_sym_alignas] = ACTIONS(4180), + [anon_sym__Alignas] = ACTIONS(4180), + [sym_primitive_type] = ACTIONS(4180), + [anon_sym_enum] = ACTIONS(4180), + [anon_sym_class] = ACTIONS(4180), + [anon_sym_struct] = ACTIONS(4180), + [anon_sym_union] = ACTIONS(4180), + [anon_sym_if] = ACTIONS(4180), + [anon_sym_switch] = ACTIONS(4180), + [anon_sym_case] = ACTIONS(4180), + [anon_sym_default] = ACTIONS(4180), + [anon_sym_while] = ACTIONS(4180), + [anon_sym_do] = ACTIONS(4180), + [anon_sym_for] = ACTIONS(4180), + [anon_sym_return] = ACTIONS(4180), + [anon_sym_break] = ACTIONS(4180), + [anon_sym_continue] = ACTIONS(4180), + [anon_sym_goto] = ACTIONS(4180), + [anon_sym___try] = ACTIONS(4180), + [anon_sym___leave] = ACTIONS(4180), + [anon_sym_not] = ACTIONS(4180), + [anon_sym_compl] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_sizeof] = ACTIONS(4180), + [anon_sym___alignof__] = ACTIONS(4180), + [anon_sym___alignof] = ACTIONS(4180), + [anon_sym__alignof] = ACTIONS(4180), + [anon_sym_alignof] = ACTIONS(4180), + [anon_sym__Alignof] = ACTIONS(4180), + [anon_sym_offsetof] = ACTIONS(4180), + [anon_sym__Generic] = ACTIONS(4180), + [anon_sym_typename] = ACTIONS(4180), + [anon_sym_asm] = ACTIONS(4180), + [anon_sym___asm__] = ACTIONS(4180), + [anon_sym___asm] = ACTIONS(4180), + [sym_number_literal] = ACTIONS(4182), + [anon_sym_L_SQUOTE] = ACTIONS(4182), + [anon_sym_u_SQUOTE] = ACTIONS(4182), + [anon_sym_U_SQUOTE] = ACTIONS(4182), + [anon_sym_u8_SQUOTE] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4182), + [anon_sym_L_DQUOTE] = ACTIONS(4182), + [anon_sym_u_DQUOTE] = ACTIONS(4182), + [anon_sym_U_DQUOTE] = ACTIONS(4182), + [anon_sym_u8_DQUOTE] = ACTIONS(4182), + [anon_sym_DQUOTE] = ACTIONS(4182), + [sym_true] = ACTIONS(4180), + [sym_false] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_nullptr] = ACTIONS(4180), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(2785), - [anon_sym_delete] = ACTIONS(3578), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2788), - [sym_this] = ACTIONS(237), + [sym_auto] = ACTIONS(4180), + [anon_sym_decltype] = ACTIONS(4180), + [anon_sym_explicit] = ACTIONS(4180), + [anon_sym_export] = ACTIONS(4180), + [anon_sym_import] = ACTIONS(4180), + [anon_sym_template] = ACTIONS(4180), + [anon_sym_operator] = ACTIONS(4180), + [anon_sym_try] = ACTIONS(4180), + [anon_sym_delete] = ACTIONS(4180), + [anon_sym_throw] = ACTIONS(4180), + [anon_sym_namespace] = ACTIONS(4180), + [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_concept] = ACTIONS(4180), + [anon_sym_co_return] = ACTIONS(4180), + [anon_sym_co_yield] = ACTIONS(4180), + [anon_sym_R_DQUOTE] = ACTIONS(4182), + [anon_sym_LR_DQUOTE] = ACTIONS(4182), + [anon_sym_uR_DQUOTE] = ACTIONS(4182), + [anon_sym_UR_DQUOTE] = ACTIONS(4182), + [anon_sym_u8R_DQUOTE] = ACTIONS(4182), + [anon_sym_co_await] = ACTIONS(4180), + [anon_sym_new] = ACTIONS(4180), + [anon_sym_requires] = ACTIONS(4180), + [anon_sym_CARET_CARET] = ACTIONS(4182), + [anon_sym_LBRACK_COLON] = ACTIONS(4182), + [sym_this] = ACTIONS(4180), }, - [STATE(932)] = { - [sym_expression] = STATE(5306), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(4658), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4745), - [anon_sym_COLON_COLON] = ACTIONS(4748), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(4667), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(4670), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(4673), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(4676), - [sym_this] = ACTIONS(2058), + [STATE(803)] = { + [sym_identifier] = ACTIONS(4184), + [aux_sym_preproc_include_token1] = ACTIONS(4184), + [aux_sym_preproc_def_token1] = ACTIONS(4184), + [aux_sym_preproc_if_token1] = ACTIONS(4184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4184), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4184), + [sym_preproc_directive] = ACTIONS(4184), + [anon_sym_LPAREN2] = ACTIONS(4186), + [anon_sym_BANG] = ACTIONS(4186), + [anon_sym_TILDE] = ACTIONS(4186), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4186), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_AMP] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym___extension__] = ACTIONS(4184), + [anon_sym_typedef] = ACTIONS(4184), + [anon_sym_virtual] = ACTIONS(4184), + [anon_sym_extern] = ACTIONS(4184), + [anon_sym___attribute__] = ACTIONS(4184), + [anon_sym___attribute] = ACTIONS(4184), + [anon_sym_using] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4186), + [anon_sym___declspec] = ACTIONS(4184), + [anon_sym___based] = ACTIONS(4184), + [anon_sym___cdecl] = ACTIONS(4184), + [anon_sym___clrcall] = ACTIONS(4184), + [anon_sym___stdcall] = ACTIONS(4184), + [anon_sym___fastcall] = ACTIONS(4184), + [anon_sym___thiscall] = ACTIONS(4184), + [anon_sym___vectorcall] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4186), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_signed] = ACTIONS(4184), + [anon_sym_unsigned] = ACTIONS(4184), + [anon_sym_long] = ACTIONS(4184), + [anon_sym_short] = ACTIONS(4184), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_static] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym___inline] = ACTIONS(4184), + [anon_sym___inline__] = ACTIONS(4184), + [anon_sym___forceinline] = ACTIONS(4184), + [anon_sym_thread_local] = ACTIONS(4184), + [anon_sym___thread] = ACTIONS(4184), + [anon_sym_const] = ACTIONS(4184), + [anon_sym_constexpr] = ACTIONS(4184), + [anon_sym_volatile] = ACTIONS(4184), + [anon_sym_restrict] = ACTIONS(4184), + [anon_sym___restrict__] = ACTIONS(4184), + [anon_sym__Atomic] = ACTIONS(4184), + [anon_sym__Noreturn] = ACTIONS(4184), + [anon_sym_noreturn] = ACTIONS(4184), + [anon_sym__Nonnull] = ACTIONS(4184), + [anon_sym_mutable] = ACTIONS(4184), + [anon_sym_constinit] = ACTIONS(4184), + [anon_sym_consteval] = ACTIONS(4184), + [anon_sym_alignas] = ACTIONS(4184), + [anon_sym__Alignas] = ACTIONS(4184), + [sym_primitive_type] = ACTIONS(4184), + [anon_sym_enum] = ACTIONS(4184), + [anon_sym_class] = ACTIONS(4184), + [anon_sym_struct] = ACTIONS(4184), + [anon_sym_union] = ACTIONS(4184), + [anon_sym_if] = ACTIONS(4184), + [anon_sym_switch] = ACTIONS(4184), + [anon_sym_case] = ACTIONS(4184), + [anon_sym_default] = ACTIONS(4184), + [anon_sym_while] = ACTIONS(4184), + [anon_sym_do] = ACTIONS(4184), + [anon_sym_for] = ACTIONS(4184), + [anon_sym_return] = ACTIONS(4184), + [anon_sym_break] = ACTIONS(4184), + [anon_sym_continue] = ACTIONS(4184), + [anon_sym_goto] = ACTIONS(4184), + [anon_sym___try] = ACTIONS(4184), + [anon_sym___leave] = ACTIONS(4184), + [anon_sym_not] = ACTIONS(4184), + [anon_sym_compl] = ACTIONS(4184), + [anon_sym_DASH_DASH] = ACTIONS(4186), + [anon_sym_PLUS_PLUS] = ACTIONS(4186), + [anon_sym_sizeof] = ACTIONS(4184), + [anon_sym___alignof__] = ACTIONS(4184), + [anon_sym___alignof] = ACTIONS(4184), + [anon_sym__alignof] = ACTIONS(4184), + [anon_sym_alignof] = ACTIONS(4184), + [anon_sym__Alignof] = ACTIONS(4184), + [anon_sym_offsetof] = ACTIONS(4184), + [anon_sym__Generic] = ACTIONS(4184), + [anon_sym_typename] = ACTIONS(4184), + [anon_sym_asm] = ACTIONS(4184), + [anon_sym___asm__] = ACTIONS(4184), + [anon_sym___asm] = ACTIONS(4184), + [sym_number_literal] = ACTIONS(4186), + [anon_sym_L_SQUOTE] = ACTIONS(4186), + [anon_sym_u_SQUOTE] = ACTIONS(4186), + [anon_sym_U_SQUOTE] = ACTIONS(4186), + [anon_sym_u8_SQUOTE] = ACTIONS(4186), + [anon_sym_SQUOTE] = ACTIONS(4186), + [anon_sym_L_DQUOTE] = ACTIONS(4186), + [anon_sym_u_DQUOTE] = ACTIONS(4186), + [anon_sym_U_DQUOTE] = ACTIONS(4186), + [anon_sym_u8_DQUOTE] = ACTIONS(4186), + [anon_sym_DQUOTE] = ACTIONS(4186), + [sym_true] = ACTIONS(4184), + [sym_false] = ACTIONS(4184), + [anon_sym_NULL] = ACTIONS(4184), + [anon_sym_nullptr] = ACTIONS(4184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4184), + [anon_sym_decltype] = ACTIONS(4184), + [anon_sym_explicit] = ACTIONS(4184), + [anon_sym_export] = ACTIONS(4184), + [anon_sym_import] = ACTIONS(4184), + [anon_sym_template] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_try] = ACTIONS(4184), + [anon_sym_delete] = ACTIONS(4184), + [anon_sym_throw] = ACTIONS(4184), + [anon_sym_namespace] = ACTIONS(4184), + [anon_sym_static_assert] = ACTIONS(4184), + [anon_sym_concept] = ACTIONS(4184), + [anon_sym_co_return] = ACTIONS(4184), + [anon_sym_co_yield] = ACTIONS(4184), + [anon_sym_R_DQUOTE] = ACTIONS(4186), + [anon_sym_LR_DQUOTE] = ACTIONS(4186), + [anon_sym_uR_DQUOTE] = ACTIONS(4186), + [anon_sym_UR_DQUOTE] = ACTIONS(4186), + [anon_sym_u8R_DQUOTE] = ACTIONS(4186), + [anon_sym_co_await] = ACTIONS(4184), + [anon_sym_new] = ACTIONS(4184), + [anon_sym_requires] = ACTIONS(4184), + [anon_sym_CARET_CARET] = ACTIONS(4186), + [anon_sym_LBRACK_COLON] = ACTIONS(4186), + [sym_this] = ACTIONS(4184), }, - [STATE(933)] = { - [sym_expression] = STATE(5180), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(4751), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4754), - [anon_sym_COLON_COLON] = ACTIONS(4757), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(4760), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(4763), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(4766), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(4769), - [sym_this] = ACTIONS(2630), + [STATE(804)] = { + [sym_identifier] = ACTIONS(4032), + [aux_sym_preproc_include_token1] = ACTIONS(4032), + [aux_sym_preproc_def_token1] = ACTIONS(4032), + [aux_sym_preproc_if_token1] = ACTIONS(4032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4032), + [sym_preproc_directive] = ACTIONS(4032), + [anon_sym_LPAREN2] = ACTIONS(4034), + [anon_sym_BANG] = ACTIONS(4034), + [anon_sym_TILDE] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4034), + [anon_sym_AMP_AMP] = ACTIONS(4034), + [anon_sym_AMP] = ACTIONS(4032), + [anon_sym_SEMI] = ACTIONS(4034), + [anon_sym___extension__] = ACTIONS(4032), + [anon_sym_typedef] = ACTIONS(4032), + [anon_sym_virtual] = ACTIONS(4032), + [anon_sym_extern] = ACTIONS(4032), + [anon_sym___attribute__] = ACTIONS(4032), + [anon_sym___attribute] = ACTIONS(4032), + [anon_sym_using] = ACTIONS(4032), + [anon_sym_COLON_COLON] = ACTIONS(4034), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4034), + [anon_sym___declspec] = ACTIONS(4032), + [anon_sym___based] = ACTIONS(4032), + [anon_sym___cdecl] = ACTIONS(4032), + [anon_sym___clrcall] = ACTIONS(4032), + [anon_sym___stdcall] = ACTIONS(4032), + [anon_sym___fastcall] = ACTIONS(4032), + [anon_sym___thiscall] = ACTIONS(4032), + [anon_sym___vectorcall] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4034), + [anon_sym_RBRACE] = ACTIONS(4034), + [anon_sym_signed] = ACTIONS(4032), + [anon_sym_unsigned] = ACTIONS(4032), + [anon_sym_long] = ACTIONS(4032), + [anon_sym_short] = ACTIONS(4032), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_static] = ACTIONS(4032), + [anon_sym_register] = ACTIONS(4032), + [anon_sym_inline] = ACTIONS(4032), + [anon_sym___inline] = ACTIONS(4032), + [anon_sym___inline__] = ACTIONS(4032), + [anon_sym___forceinline] = ACTIONS(4032), + [anon_sym_thread_local] = ACTIONS(4032), + [anon_sym___thread] = ACTIONS(4032), + [anon_sym_const] = ACTIONS(4032), + [anon_sym_constexpr] = ACTIONS(4032), + [anon_sym_volatile] = ACTIONS(4032), + [anon_sym_restrict] = ACTIONS(4032), + [anon_sym___restrict__] = ACTIONS(4032), + [anon_sym__Atomic] = ACTIONS(4032), + [anon_sym__Noreturn] = ACTIONS(4032), + [anon_sym_noreturn] = ACTIONS(4032), + [anon_sym__Nonnull] = ACTIONS(4032), + [anon_sym_mutable] = ACTIONS(4032), + [anon_sym_constinit] = ACTIONS(4032), + [anon_sym_consteval] = ACTIONS(4032), + [anon_sym_alignas] = ACTIONS(4032), + [anon_sym__Alignas] = ACTIONS(4032), + [sym_primitive_type] = ACTIONS(4032), + [anon_sym_enum] = ACTIONS(4032), + [anon_sym_class] = ACTIONS(4032), + [anon_sym_struct] = ACTIONS(4032), + [anon_sym_union] = ACTIONS(4032), + [anon_sym_if] = ACTIONS(4032), + [anon_sym_switch] = ACTIONS(4032), + [anon_sym_case] = ACTIONS(4032), + [anon_sym_default] = ACTIONS(4032), + [anon_sym_while] = ACTIONS(4032), + [anon_sym_do] = ACTIONS(4032), + [anon_sym_for] = ACTIONS(4032), + [anon_sym_return] = ACTIONS(4032), + [anon_sym_break] = ACTIONS(4032), + [anon_sym_continue] = ACTIONS(4032), + [anon_sym_goto] = ACTIONS(4032), + [anon_sym___try] = ACTIONS(4032), + [anon_sym___leave] = ACTIONS(4032), + [anon_sym_not] = ACTIONS(4032), + [anon_sym_compl] = ACTIONS(4032), + [anon_sym_DASH_DASH] = ACTIONS(4034), + [anon_sym_PLUS_PLUS] = ACTIONS(4034), + [anon_sym_sizeof] = ACTIONS(4032), + [anon_sym___alignof__] = ACTIONS(4032), + [anon_sym___alignof] = ACTIONS(4032), + [anon_sym__alignof] = ACTIONS(4032), + [anon_sym_alignof] = ACTIONS(4032), + [anon_sym__Alignof] = ACTIONS(4032), + [anon_sym_offsetof] = ACTIONS(4032), + [anon_sym__Generic] = ACTIONS(4032), + [anon_sym_typename] = ACTIONS(4032), + [anon_sym_asm] = ACTIONS(4032), + [anon_sym___asm__] = ACTIONS(4032), + [anon_sym___asm] = ACTIONS(4032), + [sym_number_literal] = ACTIONS(4034), + [anon_sym_L_SQUOTE] = ACTIONS(4034), + [anon_sym_u_SQUOTE] = ACTIONS(4034), + [anon_sym_U_SQUOTE] = ACTIONS(4034), + [anon_sym_u8_SQUOTE] = ACTIONS(4034), + [anon_sym_SQUOTE] = ACTIONS(4034), + [anon_sym_L_DQUOTE] = ACTIONS(4034), + [anon_sym_u_DQUOTE] = ACTIONS(4034), + [anon_sym_U_DQUOTE] = ACTIONS(4034), + [anon_sym_u8_DQUOTE] = ACTIONS(4034), + [anon_sym_DQUOTE] = ACTIONS(4034), + [sym_true] = ACTIONS(4032), + [sym_false] = ACTIONS(4032), + [anon_sym_NULL] = ACTIONS(4032), + [anon_sym_nullptr] = ACTIONS(4032), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4032), + [anon_sym_decltype] = ACTIONS(4032), + [anon_sym_explicit] = ACTIONS(4032), + [anon_sym_export] = ACTIONS(4032), + [anon_sym_import] = ACTIONS(4032), + [anon_sym_template] = ACTIONS(4032), + [anon_sym_operator] = ACTIONS(4032), + [anon_sym_try] = ACTIONS(4032), + [anon_sym_delete] = ACTIONS(4032), + [anon_sym_throw] = ACTIONS(4032), + [anon_sym_namespace] = ACTIONS(4032), + [anon_sym_static_assert] = ACTIONS(4032), + [anon_sym_concept] = ACTIONS(4032), + [anon_sym_co_return] = ACTIONS(4032), + [anon_sym_co_yield] = ACTIONS(4032), + [anon_sym_R_DQUOTE] = ACTIONS(4034), + [anon_sym_LR_DQUOTE] = ACTIONS(4034), + [anon_sym_uR_DQUOTE] = ACTIONS(4034), + [anon_sym_UR_DQUOTE] = ACTIONS(4034), + [anon_sym_u8R_DQUOTE] = ACTIONS(4034), + [anon_sym_co_await] = ACTIONS(4032), + [anon_sym_new] = ACTIONS(4032), + [anon_sym_requires] = ACTIONS(4032), + [anon_sym_CARET_CARET] = ACTIONS(4034), + [anon_sym_LBRACK_COLON] = ACTIONS(4034), + [sym_this] = ACTIONS(4032), }, - [STATE(934)] = { - [sym__declaration_modifiers] = STATE(2633), - [sym__declaration_specifiers] = STATE(8703), - [sym_attribute_specifier] = STATE(2633), - [sym_attribute_declaration] = STATE(2633), - [sym_ms_declspec_modifier] = STATE(2633), - [sym_storage_class_specifier] = STATE(2633), - [sym_type_qualifier] = STATE(2633), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(6302), - [sym_sized_type_specifier] = STATE(5975), - [sym_enum_specifier] = STATE(5975), - [sym_struct_specifier] = STATE(5975), - [sym_union_specifier] = STATE(5975), - [sym_placeholder_type_specifier] = STATE(5975), - [sym_decltype_auto] = STATE(6020), - [sym_decltype] = STATE(5891), - [sym_class_specifier] = STATE(5975), - [sym_dependent_type] = STATE(5975), - [sym_template_type] = STATE(5264), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8584), - [sym_qualified_type_identifier] = STATE(5495), - [sym_splice_specifier] = STATE(4691), - [sym__splice_specialization_specifier] = STATE(5263), - [sym_splice_type_specifier] = STATE(5891), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2633), - [aux_sym_sized_type_specifier_repeat1] = STATE(4270), - [sym_identifier] = ACTIONS(4772), - [anon_sym_COMMA] = ACTIONS(4774), - [anon_sym_BANG] = ACTIONS(4776), - [anon_sym_TILDE] = ACTIONS(4774), - [anon_sym_DASH] = ACTIONS(4776), - [anon_sym_PLUS] = ACTIONS(4776), - [anon_sym_STAR] = ACTIONS(4776), - [anon_sym_SLASH] = ACTIONS(4776), - [anon_sym_PERCENT] = ACTIONS(4776), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4776), - [anon_sym_CARET] = ACTIONS(4776), - [anon_sym_AMP] = ACTIONS(4776), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), - [anon_sym_GT] = ACTIONS(4776), - [anon_sym_GT_EQ] = ACTIONS(4774), - [anon_sym_LT_EQ] = ACTIONS(4776), - [anon_sym_LT] = ACTIONS(4776), - [anon_sym_LT_LT] = ACTIONS(4776), - [anon_sym_GT_GT] = ACTIONS(4776), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(4778), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(4782), - [anon_sym_unsigned] = ACTIONS(4782), - [anon_sym_long] = ACTIONS(4782), - [anon_sym_short] = ACTIONS(4782), - [anon_sym_static] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(4776), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(4784), - [anon_sym_enum] = ACTIONS(4786), - [anon_sym_class] = ACTIONS(4788), - [anon_sym_struct] = ACTIONS(4790), - [anon_sym_union] = ACTIONS(4792), - [anon_sym_STAR_EQ] = ACTIONS(4774), - [anon_sym_SLASH_EQ] = ACTIONS(4774), - [anon_sym_PERCENT_EQ] = ACTIONS(4774), - [anon_sym_PLUS_EQ] = ACTIONS(4774), - [anon_sym_DASH_EQ] = ACTIONS(4774), - [anon_sym_LT_LT_EQ] = ACTIONS(4774), - [anon_sym_GT_GT_EQ] = ACTIONS(4774), - [anon_sym_AMP_EQ] = ACTIONS(4774), - [anon_sym_CARET_EQ] = ACTIONS(4774), - [anon_sym_PIPE_EQ] = ACTIONS(4774), - [anon_sym_and_eq] = ACTIONS(4776), - [anon_sym_or_eq] = ACTIONS(4776), - [anon_sym_xor_eq] = ACTIONS(4776), - [anon_sym_not] = ACTIONS(4776), - [anon_sym_compl] = ACTIONS(4776), - [anon_sym_LT_EQ_GT] = ACTIONS(4774), - [anon_sym_or] = ACTIONS(4776), - [anon_sym_and] = ACTIONS(4776), - [anon_sym_bitor] = ACTIONS(4776), - [anon_sym_xor] = ACTIONS(4776), - [anon_sym_bitand] = ACTIONS(4776), - [anon_sym_not_eq] = ACTIONS(4776), - [anon_sym_DASH_DASH] = ACTIONS(4774), - [anon_sym_PLUS_PLUS] = ACTIONS(4774), - [anon_sym_typename] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4776), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4796), - [anon_sym_decltype] = ACTIONS(4798), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_delete] = ACTIONS(4802), - [anon_sym_co_await] = ACTIONS(4776), - [anon_sym_new] = ACTIONS(4802), - [anon_sym_DASH_GT_STAR] = ACTIONS(4774), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), - [anon_sym_LPAREN_RPAREN] = ACTIONS(4774), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4774), - [anon_sym_DQUOTE_DQUOTE] = ACTIONS(4806), + [STATE(805)] = { + [sym_identifier] = ACTIONS(4036), + [aux_sym_preproc_include_token1] = ACTIONS(4036), + [aux_sym_preproc_def_token1] = ACTIONS(4036), + [aux_sym_preproc_if_token1] = ACTIONS(4036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4036), + [sym_preproc_directive] = ACTIONS(4036), + [anon_sym_LPAREN2] = ACTIONS(4038), + [anon_sym_BANG] = ACTIONS(4038), + [anon_sym_TILDE] = ACTIONS(4038), + [anon_sym_DASH] = ACTIONS(4036), + [anon_sym_PLUS] = ACTIONS(4036), + [anon_sym_STAR] = ACTIONS(4038), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_AMP] = ACTIONS(4036), + [anon_sym_SEMI] = ACTIONS(4038), + [anon_sym___extension__] = ACTIONS(4036), + [anon_sym_typedef] = ACTIONS(4036), + [anon_sym_virtual] = ACTIONS(4036), + [anon_sym_extern] = ACTIONS(4036), + [anon_sym___attribute__] = ACTIONS(4036), + [anon_sym___attribute] = ACTIONS(4036), + [anon_sym_using] = ACTIONS(4036), + [anon_sym_COLON_COLON] = ACTIONS(4038), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4038), + [anon_sym___declspec] = ACTIONS(4036), + [anon_sym___based] = ACTIONS(4036), + [anon_sym___cdecl] = ACTIONS(4036), + [anon_sym___clrcall] = ACTIONS(4036), + [anon_sym___stdcall] = ACTIONS(4036), + [anon_sym___fastcall] = ACTIONS(4036), + [anon_sym___thiscall] = ACTIONS(4036), + [anon_sym___vectorcall] = ACTIONS(4036), + [anon_sym_LBRACE] = ACTIONS(4038), + [anon_sym_RBRACE] = ACTIONS(4038), + [anon_sym_signed] = ACTIONS(4036), + [anon_sym_unsigned] = ACTIONS(4036), + [anon_sym_long] = ACTIONS(4036), + [anon_sym_short] = ACTIONS(4036), + [anon_sym_LBRACK] = ACTIONS(4036), + [anon_sym_static] = ACTIONS(4036), + [anon_sym_register] = ACTIONS(4036), + [anon_sym_inline] = ACTIONS(4036), + [anon_sym___inline] = ACTIONS(4036), + [anon_sym___inline__] = ACTIONS(4036), + [anon_sym___forceinline] = ACTIONS(4036), + [anon_sym_thread_local] = ACTIONS(4036), + [anon_sym___thread] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4036), + [anon_sym_constexpr] = ACTIONS(4036), + [anon_sym_volatile] = ACTIONS(4036), + [anon_sym_restrict] = ACTIONS(4036), + [anon_sym___restrict__] = ACTIONS(4036), + [anon_sym__Atomic] = ACTIONS(4036), + [anon_sym__Noreturn] = ACTIONS(4036), + [anon_sym_noreturn] = ACTIONS(4036), + [anon_sym__Nonnull] = ACTIONS(4036), + [anon_sym_mutable] = ACTIONS(4036), + [anon_sym_constinit] = ACTIONS(4036), + [anon_sym_consteval] = ACTIONS(4036), + [anon_sym_alignas] = ACTIONS(4036), + [anon_sym__Alignas] = ACTIONS(4036), + [sym_primitive_type] = ACTIONS(4036), + [anon_sym_enum] = ACTIONS(4036), + [anon_sym_class] = ACTIONS(4036), + [anon_sym_struct] = ACTIONS(4036), + [anon_sym_union] = ACTIONS(4036), + [anon_sym_if] = ACTIONS(4036), + [anon_sym_switch] = ACTIONS(4036), + [anon_sym_case] = ACTIONS(4036), + [anon_sym_default] = ACTIONS(4036), + [anon_sym_while] = ACTIONS(4036), + [anon_sym_do] = ACTIONS(4036), + [anon_sym_for] = ACTIONS(4036), + [anon_sym_return] = ACTIONS(4036), + [anon_sym_break] = ACTIONS(4036), + [anon_sym_continue] = ACTIONS(4036), + [anon_sym_goto] = ACTIONS(4036), + [anon_sym___try] = ACTIONS(4036), + [anon_sym___leave] = ACTIONS(4036), + [anon_sym_not] = ACTIONS(4036), + [anon_sym_compl] = ACTIONS(4036), + [anon_sym_DASH_DASH] = ACTIONS(4038), + [anon_sym_PLUS_PLUS] = ACTIONS(4038), + [anon_sym_sizeof] = ACTIONS(4036), + [anon_sym___alignof__] = ACTIONS(4036), + [anon_sym___alignof] = ACTIONS(4036), + [anon_sym__alignof] = ACTIONS(4036), + [anon_sym_alignof] = ACTIONS(4036), + [anon_sym__Alignof] = ACTIONS(4036), + [anon_sym_offsetof] = ACTIONS(4036), + [anon_sym__Generic] = ACTIONS(4036), + [anon_sym_typename] = ACTIONS(4036), + [anon_sym_asm] = ACTIONS(4036), + [anon_sym___asm__] = ACTIONS(4036), + [anon_sym___asm] = ACTIONS(4036), + [sym_number_literal] = ACTIONS(4038), + [anon_sym_L_SQUOTE] = ACTIONS(4038), + [anon_sym_u_SQUOTE] = ACTIONS(4038), + [anon_sym_U_SQUOTE] = ACTIONS(4038), + [anon_sym_u8_SQUOTE] = ACTIONS(4038), + [anon_sym_SQUOTE] = ACTIONS(4038), + [anon_sym_L_DQUOTE] = ACTIONS(4038), + [anon_sym_u_DQUOTE] = ACTIONS(4038), + [anon_sym_U_DQUOTE] = ACTIONS(4038), + [anon_sym_u8_DQUOTE] = ACTIONS(4038), + [anon_sym_DQUOTE] = ACTIONS(4038), + [sym_true] = ACTIONS(4036), + [sym_false] = ACTIONS(4036), + [anon_sym_NULL] = ACTIONS(4036), + [anon_sym_nullptr] = ACTIONS(4036), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4036), + [anon_sym_decltype] = ACTIONS(4036), + [anon_sym_explicit] = ACTIONS(4036), + [anon_sym_export] = ACTIONS(4036), + [anon_sym_import] = ACTIONS(4036), + [anon_sym_template] = ACTIONS(4036), + [anon_sym_operator] = ACTIONS(4036), + [anon_sym_try] = ACTIONS(4036), + [anon_sym_delete] = ACTIONS(4036), + [anon_sym_throw] = ACTIONS(4036), + [anon_sym_namespace] = ACTIONS(4036), + [anon_sym_static_assert] = ACTIONS(4036), + [anon_sym_concept] = ACTIONS(4036), + [anon_sym_co_return] = ACTIONS(4036), + [anon_sym_co_yield] = ACTIONS(4036), + [anon_sym_R_DQUOTE] = ACTIONS(4038), + [anon_sym_LR_DQUOTE] = ACTIONS(4038), + [anon_sym_uR_DQUOTE] = ACTIONS(4038), + [anon_sym_UR_DQUOTE] = ACTIONS(4038), + [anon_sym_u8R_DQUOTE] = ACTIONS(4038), + [anon_sym_co_await] = ACTIONS(4036), + [anon_sym_new] = ACTIONS(4036), + [anon_sym_requires] = ACTIONS(4036), + [anon_sym_CARET_CARET] = ACTIONS(4038), + [anon_sym_LBRACK_COLON] = ACTIONS(4038), + [sym_this] = ACTIONS(4036), }, - [STATE(935)] = { - [sym__declaration_modifiers] = STATE(2633), - [sym__declaration_specifiers] = STATE(8703), - [sym_attribute_specifier] = STATE(2633), - [sym_attribute_declaration] = STATE(2633), - [sym_ms_declspec_modifier] = STATE(2633), - [sym_storage_class_specifier] = STATE(2633), - [sym_type_qualifier] = STATE(2633), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(6302), - [sym_sized_type_specifier] = STATE(5975), - [sym_enum_specifier] = STATE(5975), - [sym_struct_specifier] = STATE(5975), - [sym_union_specifier] = STATE(5975), - [sym_placeholder_type_specifier] = STATE(5975), - [sym_decltype_auto] = STATE(6020), - [sym_decltype] = STATE(5891), - [sym_class_specifier] = STATE(5975), - [sym_dependent_type] = STATE(5975), - [sym_template_type] = STATE(5264), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8584), - [sym_qualified_type_identifier] = STATE(5495), - [sym_splice_specifier] = STATE(4691), - [sym__splice_specialization_specifier] = STATE(5263), - [sym_splice_type_specifier] = STATE(5891), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2633), - [aux_sym_sized_type_specifier_repeat1] = STATE(4270), - [sym_identifier] = ACTIONS(4772), - [anon_sym_COMMA] = ACTIONS(4808), - [anon_sym_BANG] = ACTIONS(4810), - [anon_sym_TILDE] = ACTIONS(4808), - [anon_sym_DASH] = ACTIONS(4810), - [anon_sym_PLUS] = ACTIONS(4810), - [anon_sym_STAR] = ACTIONS(4810), - [anon_sym_SLASH] = ACTIONS(4810), - [anon_sym_PERCENT] = ACTIONS(4810), - [anon_sym_PIPE_PIPE] = ACTIONS(4808), - [anon_sym_AMP_AMP] = ACTIONS(4808), - [anon_sym_PIPE] = ACTIONS(4810), - [anon_sym_CARET] = ACTIONS(4810), - [anon_sym_AMP] = ACTIONS(4810), - [anon_sym_EQ_EQ] = ACTIONS(4808), - [anon_sym_BANG_EQ] = ACTIONS(4808), - [anon_sym_GT] = ACTIONS(4810), - [anon_sym_GT_EQ] = ACTIONS(4808), - [anon_sym_LT_EQ] = ACTIONS(4810), - [anon_sym_LT] = ACTIONS(4810), - [anon_sym_LT_LT] = ACTIONS(4810), - [anon_sym_GT_GT] = ACTIONS(4810), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(4778), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(4782), - [anon_sym_unsigned] = ACTIONS(4782), - [anon_sym_long] = ACTIONS(4782), - [anon_sym_short] = ACTIONS(4782), - [anon_sym_static] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(4810), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(4784), - [anon_sym_enum] = ACTIONS(4786), - [anon_sym_class] = ACTIONS(4788), - [anon_sym_struct] = ACTIONS(4790), - [anon_sym_union] = ACTIONS(4792), - [anon_sym_STAR_EQ] = ACTIONS(4808), - [anon_sym_SLASH_EQ] = ACTIONS(4808), - [anon_sym_PERCENT_EQ] = ACTIONS(4808), - [anon_sym_PLUS_EQ] = ACTIONS(4808), - [anon_sym_DASH_EQ] = ACTIONS(4808), - [anon_sym_LT_LT_EQ] = ACTIONS(4808), - [anon_sym_GT_GT_EQ] = ACTIONS(4808), - [anon_sym_AMP_EQ] = ACTIONS(4808), - [anon_sym_CARET_EQ] = ACTIONS(4808), - [anon_sym_PIPE_EQ] = ACTIONS(4808), - [anon_sym_and_eq] = ACTIONS(4810), - [anon_sym_or_eq] = ACTIONS(4810), - [anon_sym_xor_eq] = ACTIONS(4810), - [anon_sym_not] = ACTIONS(4810), - [anon_sym_compl] = ACTIONS(4810), - [anon_sym_LT_EQ_GT] = ACTIONS(4808), - [anon_sym_or] = ACTIONS(4810), - [anon_sym_and] = ACTIONS(4810), - [anon_sym_bitor] = ACTIONS(4810), - [anon_sym_xor] = ACTIONS(4810), - [anon_sym_bitand] = ACTIONS(4810), - [anon_sym_not_eq] = ACTIONS(4810), - [anon_sym_DASH_DASH] = ACTIONS(4808), - [anon_sym_PLUS_PLUS] = ACTIONS(4808), - [anon_sym_typename] = ACTIONS(4794), - [anon_sym_DASH_GT] = ACTIONS(4810), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4796), - [anon_sym_decltype] = ACTIONS(4798), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_delete] = ACTIONS(4812), - [anon_sym_co_await] = ACTIONS(4810), - [anon_sym_new] = ACTIONS(4812), - [anon_sym_DASH_GT_STAR] = ACTIONS(4808), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), - [anon_sym_LPAREN_RPAREN] = ACTIONS(4808), - [anon_sym_LBRACK_RBRACK] = ACTIONS(4808), - [anon_sym_DQUOTE_DQUOTE] = ACTIONS(4814), + [STATE(806)] = { + [sym_identifier] = ACTIONS(4443), + [aux_sym_preproc_include_token1] = ACTIONS(4443), + [aux_sym_preproc_def_token1] = ACTIONS(4443), + [aux_sym_preproc_if_token1] = ACTIONS(4443), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), + [sym_preproc_directive] = ACTIONS(4443), + [anon_sym_LPAREN2] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4445), + [anon_sym_TILDE] = ACTIONS(4445), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_AMP] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym___extension__] = ACTIONS(4443), + [anon_sym_typedef] = ACTIONS(4443), + [anon_sym_virtual] = ACTIONS(4443), + [anon_sym_extern] = ACTIONS(4443), + [anon_sym___attribute__] = ACTIONS(4443), + [anon_sym___attribute] = ACTIONS(4443), + [anon_sym_using] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4445), + [anon_sym___declspec] = ACTIONS(4443), + [anon_sym___based] = ACTIONS(4443), + [anon_sym___cdecl] = ACTIONS(4443), + [anon_sym___clrcall] = ACTIONS(4443), + [anon_sym___stdcall] = ACTIONS(4443), + [anon_sym___fastcall] = ACTIONS(4443), + [anon_sym___thiscall] = ACTIONS(4443), + [anon_sym___vectorcall] = ACTIONS(4443), + [anon_sym_LBRACE] = ACTIONS(4445), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_signed] = ACTIONS(4443), + [anon_sym_unsigned] = ACTIONS(4443), + [anon_sym_long] = ACTIONS(4443), + [anon_sym_short] = ACTIONS(4443), + [anon_sym_LBRACK] = ACTIONS(4443), + [anon_sym_static] = ACTIONS(4443), + [anon_sym_register] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym___inline] = ACTIONS(4443), + [anon_sym___inline__] = ACTIONS(4443), + [anon_sym___forceinline] = ACTIONS(4443), + [anon_sym_thread_local] = ACTIONS(4443), + [anon_sym___thread] = ACTIONS(4443), + [anon_sym_const] = ACTIONS(4443), + [anon_sym_constexpr] = ACTIONS(4443), + [anon_sym_volatile] = ACTIONS(4443), + [anon_sym_restrict] = ACTIONS(4443), + [anon_sym___restrict__] = ACTIONS(4443), + [anon_sym__Atomic] = ACTIONS(4443), + [anon_sym__Noreturn] = ACTIONS(4443), + [anon_sym_noreturn] = ACTIONS(4443), + [anon_sym__Nonnull] = ACTIONS(4443), + [anon_sym_mutable] = ACTIONS(4443), + [anon_sym_constinit] = ACTIONS(4443), + [anon_sym_consteval] = ACTIONS(4443), + [anon_sym_alignas] = ACTIONS(4443), + [anon_sym__Alignas] = ACTIONS(4443), + [sym_primitive_type] = ACTIONS(4443), + [anon_sym_enum] = ACTIONS(4443), + [anon_sym_class] = ACTIONS(4443), + [anon_sym_struct] = ACTIONS(4443), + [anon_sym_union] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_switch] = ACTIONS(4443), + [anon_sym_case] = ACTIONS(4443), + [anon_sym_default] = ACTIONS(4443), + [anon_sym_while] = ACTIONS(4443), + [anon_sym_do] = ACTIONS(4443), + [anon_sym_for] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_goto] = ACTIONS(4443), + [anon_sym___try] = ACTIONS(4443), + [anon_sym___leave] = ACTIONS(4443), + [anon_sym_not] = ACTIONS(4443), + [anon_sym_compl] = ACTIONS(4443), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_sizeof] = ACTIONS(4443), + [anon_sym___alignof__] = ACTIONS(4443), + [anon_sym___alignof] = ACTIONS(4443), + [anon_sym__alignof] = ACTIONS(4443), + [anon_sym_alignof] = ACTIONS(4443), + [anon_sym__Alignof] = ACTIONS(4443), + [anon_sym_offsetof] = ACTIONS(4443), + [anon_sym__Generic] = ACTIONS(4443), + [anon_sym_typename] = ACTIONS(4443), + [anon_sym_asm] = ACTIONS(4443), + [anon_sym___asm__] = ACTIONS(4443), + [anon_sym___asm] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4445), + [anon_sym_L_SQUOTE] = ACTIONS(4445), + [anon_sym_u_SQUOTE] = ACTIONS(4445), + [anon_sym_U_SQUOTE] = ACTIONS(4445), + [anon_sym_u8_SQUOTE] = ACTIONS(4445), + [anon_sym_SQUOTE] = ACTIONS(4445), + [anon_sym_L_DQUOTE] = ACTIONS(4445), + [anon_sym_u_DQUOTE] = ACTIONS(4445), + [anon_sym_U_DQUOTE] = ACTIONS(4445), + [anon_sym_u8_DQUOTE] = ACTIONS(4445), + [anon_sym_DQUOTE] = ACTIONS(4445), + [sym_true] = ACTIONS(4443), + [sym_false] = ACTIONS(4443), + [anon_sym_NULL] = ACTIONS(4443), + [anon_sym_nullptr] = ACTIONS(4443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4443), + [anon_sym_decltype] = ACTIONS(4443), + [anon_sym_explicit] = ACTIONS(4443), + [anon_sym_export] = ACTIONS(4443), + [anon_sym_import] = ACTIONS(4443), + [anon_sym_template] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_delete] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_namespace] = ACTIONS(4443), + [anon_sym_static_assert] = ACTIONS(4443), + [anon_sym_concept] = ACTIONS(4443), + [anon_sym_co_return] = ACTIONS(4443), + [anon_sym_co_yield] = ACTIONS(4443), + [anon_sym_R_DQUOTE] = ACTIONS(4445), + [anon_sym_LR_DQUOTE] = ACTIONS(4445), + [anon_sym_uR_DQUOTE] = ACTIONS(4445), + [anon_sym_UR_DQUOTE] = ACTIONS(4445), + [anon_sym_u8R_DQUOTE] = ACTIONS(4445), + [anon_sym_co_await] = ACTIONS(4443), + [anon_sym_new] = ACTIONS(4443), + [anon_sym_requires] = ACTIONS(4443), + [anon_sym_CARET_CARET] = ACTIONS(4445), + [anon_sym_LBRACK_COLON] = ACTIONS(4445), + [sym_this] = ACTIONS(4443), }, - [STATE(936)] = { - [sym_type_qualifier] = STATE(980), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6856), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4816), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4820), - [anon_sym_RBRACK] = ACTIONS(4822), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(807)] = { + [sym_identifier] = ACTIONS(4188), + [aux_sym_preproc_include_token1] = ACTIONS(4188), + [aux_sym_preproc_def_token1] = ACTIONS(4188), + [aux_sym_preproc_if_token1] = ACTIONS(4188), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4188), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4188), + [sym_preproc_directive] = ACTIONS(4188), + [anon_sym_LPAREN2] = ACTIONS(4190), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_TILDE] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4190), + [anon_sym_AMP_AMP] = ACTIONS(4190), + [anon_sym_AMP] = ACTIONS(4188), + [anon_sym_SEMI] = ACTIONS(4190), + [anon_sym___extension__] = ACTIONS(4188), + [anon_sym_typedef] = ACTIONS(4188), + [anon_sym_virtual] = ACTIONS(4188), + [anon_sym_extern] = ACTIONS(4188), + [anon_sym___attribute__] = ACTIONS(4188), + [anon_sym___attribute] = ACTIONS(4188), + [anon_sym_using] = ACTIONS(4188), + [anon_sym_COLON_COLON] = ACTIONS(4190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4190), + [anon_sym___declspec] = ACTIONS(4188), + [anon_sym___based] = ACTIONS(4188), + [anon_sym___cdecl] = ACTIONS(4188), + [anon_sym___clrcall] = ACTIONS(4188), + [anon_sym___stdcall] = ACTIONS(4188), + [anon_sym___fastcall] = ACTIONS(4188), + [anon_sym___thiscall] = ACTIONS(4188), + [anon_sym___vectorcall] = ACTIONS(4188), + [anon_sym_LBRACE] = ACTIONS(4190), + [anon_sym_RBRACE] = ACTIONS(4190), + [anon_sym_signed] = ACTIONS(4188), + [anon_sym_unsigned] = ACTIONS(4188), + [anon_sym_long] = ACTIONS(4188), + [anon_sym_short] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4188), + [anon_sym_static] = ACTIONS(4188), + [anon_sym_register] = ACTIONS(4188), + [anon_sym_inline] = ACTIONS(4188), + [anon_sym___inline] = ACTIONS(4188), + [anon_sym___inline__] = ACTIONS(4188), + [anon_sym___forceinline] = ACTIONS(4188), + [anon_sym_thread_local] = ACTIONS(4188), + [anon_sym___thread] = ACTIONS(4188), + [anon_sym_const] = ACTIONS(4188), + [anon_sym_constexpr] = ACTIONS(4188), + [anon_sym_volatile] = ACTIONS(4188), + [anon_sym_restrict] = ACTIONS(4188), + [anon_sym___restrict__] = ACTIONS(4188), + [anon_sym__Atomic] = ACTIONS(4188), + [anon_sym__Noreturn] = ACTIONS(4188), + [anon_sym_noreturn] = ACTIONS(4188), + [anon_sym__Nonnull] = ACTIONS(4188), + [anon_sym_mutable] = ACTIONS(4188), + [anon_sym_constinit] = ACTIONS(4188), + [anon_sym_consteval] = ACTIONS(4188), + [anon_sym_alignas] = ACTIONS(4188), + [anon_sym__Alignas] = ACTIONS(4188), + [sym_primitive_type] = ACTIONS(4188), + [anon_sym_enum] = ACTIONS(4188), + [anon_sym_class] = ACTIONS(4188), + [anon_sym_struct] = ACTIONS(4188), + [anon_sym_union] = ACTIONS(4188), + [anon_sym_if] = ACTIONS(4188), + [anon_sym_switch] = ACTIONS(4188), + [anon_sym_case] = ACTIONS(4188), + [anon_sym_default] = ACTIONS(4188), + [anon_sym_while] = ACTIONS(4188), + [anon_sym_do] = ACTIONS(4188), + [anon_sym_for] = ACTIONS(4188), + [anon_sym_return] = ACTIONS(4188), + [anon_sym_break] = ACTIONS(4188), + [anon_sym_continue] = ACTIONS(4188), + [anon_sym_goto] = ACTIONS(4188), + [anon_sym___try] = ACTIONS(4188), + [anon_sym___leave] = ACTIONS(4188), + [anon_sym_not] = ACTIONS(4188), + [anon_sym_compl] = ACTIONS(4188), + [anon_sym_DASH_DASH] = ACTIONS(4190), + [anon_sym_PLUS_PLUS] = ACTIONS(4190), + [anon_sym_sizeof] = ACTIONS(4188), + [anon_sym___alignof__] = ACTIONS(4188), + [anon_sym___alignof] = ACTIONS(4188), + [anon_sym__alignof] = ACTIONS(4188), + [anon_sym_alignof] = ACTIONS(4188), + [anon_sym__Alignof] = ACTIONS(4188), + [anon_sym_offsetof] = ACTIONS(4188), + [anon_sym__Generic] = ACTIONS(4188), + [anon_sym_typename] = ACTIONS(4188), + [anon_sym_asm] = ACTIONS(4188), + [anon_sym___asm__] = ACTIONS(4188), + [anon_sym___asm] = ACTIONS(4188), + [sym_number_literal] = ACTIONS(4190), + [anon_sym_L_SQUOTE] = ACTIONS(4190), + [anon_sym_u_SQUOTE] = ACTIONS(4190), + [anon_sym_U_SQUOTE] = ACTIONS(4190), + [anon_sym_u8_SQUOTE] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4190), + [anon_sym_L_DQUOTE] = ACTIONS(4190), + [anon_sym_u_DQUOTE] = ACTIONS(4190), + [anon_sym_U_DQUOTE] = ACTIONS(4190), + [anon_sym_u8_DQUOTE] = ACTIONS(4190), + [anon_sym_DQUOTE] = ACTIONS(4190), + [sym_true] = ACTIONS(4188), + [sym_false] = ACTIONS(4188), + [anon_sym_NULL] = ACTIONS(4188), + [anon_sym_nullptr] = ACTIONS(4188), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4188), + [anon_sym_decltype] = ACTIONS(4188), + [anon_sym_explicit] = ACTIONS(4188), + [anon_sym_export] = ACTIONS(4188), + [anon_sym_import] = ACTIONS(4188), + [anon_sym_template] = ACTIONS(4188), + [anon_sym_operator] = ACTIONS(4188), + [anon_sym_try] = ACTIONS(4188), + [anon_sym_delete] = ACTIONS(4188), + [anon_sym_throw] = ACTIONS(4188), + [anon_sym_namespace] = ACTIONS(4188), + [anon_sym_static_assert] = ACTIONS(4188), + [anon_sym_concept] = ACTIONS(4188), + [anon_sym_co_return] = ACTIONS(4188), + [anon_sym_co_yield] = ACTIONS(4188), + [anon_sym_R_DQUOTE] = ACTIONS(4190), + [anon_sym_LR_DQUOTE] = ACTIONS(4190), + [anon_sym_uR_DQUOTE] = ACTIONS(4190), + [anon_sym_UR_DQUOTE] = ACTIONS(4190), + [anon_sym_u8R_DQUOTE] = ACTIONS(4190), + [anon_sym_co_await] = ACTIONS(4188), + [anon_sym_new] = ACTIONS(4188), + [anon_sym_requires] = ACTIONS(4188), + [anon_sym_CARET_CARET] = ACTIONS(4190), + [anon_sym_LBRACK_COLON] = ACTIONS(4190), + [sym_this] = ACTIONS(4188), }, - [STATE(937)] = { - [sym_type_qualifier] = STATE(939), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6940), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4828), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4830), - [anon_sym_RBRACK] = ACTIONS(4832), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(808)] = { + [sym_identifier] = ACTIONS(4192), + [aux_sym_preproc_include_token1] = ACTIONS(4192), + [aux_sym_preproc_def_token1] = ACTIONS(4192), + [aux_sym_preproc_if_token1] = ACTIONS(4192), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4192), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4192), + [sym_preproc_directive] = ACTIONS(4192), + [anon_sym_LPAREN2] = ACTIONS(4194), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_TILDE] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4192), + [anon_sym_STAR] = ACTIONS(4194), + [anon_sym_AMP_AMP] = ACTIONS(4194), + [anon_sym_AMP] = ACTIONS(4192), + [anon_sym_SEMI] = ACTIONS(4194), + [anon_sym___extension__] = ACTIONS(4192), + [anon_sym_typedef] = ACTIONS(4192), + [anon_sym_virtual] = ACTIONS(4192), + [anon_sym_extern] = ACTIONS(4192), + [anon_sym___attribute__] = ACTIONS(4192), + [anon_sym___attribute] = ACTIONS(4192), + [anon_sym_using] = ACTIONS(4192), + [anon_sym_COLON_COLON] = ACTIONS(4194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), + [anon_sym___declspec] = ACTIONS(4192), + [anon_sym___based] = ACTIONS(4192), + [anon_sym___cdecl] = ACTIONS(4192), + [anon_sym___clrcall] = ACTIONS(4192), + [anon_sym___stdcall] = ACTIONS(4192), + [anon_sym___fastcall] = ACTIONS(4192), + [anon_sym___thiscall] = ACTIONS(4192), + [anon_sym___vectorcall] = ACTIONS(4192), + [anon_sym_LBRACE] = ACTIONS(4194), + [anon_sym_RBRACE] = ACTIONS(4194), + [anon_sym_signed] = ACTIONS(4192), + [anon_sym_unsigned] = ACTIONS(4192), + [anon_sym_long] = ACTIONS(4192), + [anon_sym_short] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_static] = ACTIONS(4192), + [anon_sym_register] = ACTIONS(4192), + [anon_sym_inline] = ACTIONS(4192), + [anon_sym___inline] = ACTIONS(4192), + [anon_sym___inline__] = ACTIONS(4192), + [anon_sym___forceinline] = ACTIONS(4192), + [anon_sym_thread_local] = ACTIONS(4192), + [anon_sym___thread] = ACTIONS(4192), + [anon_sym_const] = ACTIONS(4192), + [anon_sym_constexpr] = ACTIONS(4192), + [anon_sym_volatile] = ACTIONS(4192), + [anon_sym_restrict] = ACTIONS(4192), + [anon_sym___restrict__] = ACTIONS(4192), + [anon_sym__Atomic] = ACTIONS(4192), + [anon_sym__Noreturn] = ACTIONS(4192), + [anon_sym_noreturn] = ACTIONS(4192), + [anon_sym__Nonnull] = ACTIONS(4192), + [anon_sym_mutable] = ACTIONS(4192), + [anon_sym_constinit] = ACTIONS(4192), + [anon_sym_consteval] = ACTIONS(4192), + [anon_sym_alignas] = ACTIONS(4192), + [anon_sym__Alignas] = ACTIONS(4192), + [sym_primitive_type] = ACTIONS(4192), + [anon_sym_enum] = ACTIONS(4192), + [anon_sym_class] = ACTIONS(4192), + [anon_sym_struct] = ACTIONS(4192), + [anon_sym_union] = ACTIONS(4192), + [anon_sym_if] = ACTIONS(4192), + [anon_sym_switch] = ACTIONS(4192), + [anon_sym_case] = ACTIONS(4192), + [anon_sym_default] = ACTIONS(4192), + [anon_sym_while] = ACTIONS(4192), + [anon_sym_do] = ACTIONS(4192), + [anon_sym_for] = ACTIONS(4192), + [anon_sym_return] = ACTIONS(4192), + [anon_sym_break] = ACTIONS(4192), + [anon_sym_continue] = ACTIONS(4192), + [anon_sym_goto] = ACTIONS(4192), + [anon_sym___try] = ACTIONS(4192), + [anon_sym___leave] = ACTIONS(4192), + [anon_sym_not] = ACTIONS(4192), + [anon_sym_compl] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4194), + [anon_sym_PLUS_PLUS] = ACTIONS(4194), + [anon_sym_sizeof] = ACTIONS(4192), + [anon_sym___alignof__] = ACTIONS(4192), + [anon_sym___alignof] = ACTIONS(4192), + [anon_sym__alignof] = ACTIONS(4192), + [anon_sym_alignof] = ACTIONS(4192), + [anon_sym__Alignof] = ACTIONS(4192), + [anon_sym_offsetof] = ACTIONS(4192), + [anon_sym__Generic] = ACTIONS(4192), + [anon_sym_typename] = ACTIONS(4192), + [anon_sym_asm] = ACTIONS(4192), + [anon_sym___asm__] = ACTIONS(4192), + [anon_sym___asm] = ACTIONS(4192), + [sym_number_literal] = ACTIONS(4194), + [anon_sym_L_SQUOTE] = ACTIONS(4194), + [anon_sym_u_SQUOTE] = ACTIONS(4194), + [anon_sym_U_SQUOTE] = ACTIONS(4194), + [anon_sym_u8_SQUOTE] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4194), + [anon_sym_L_DQUOTE] = ACTIONS(4194), + [anon_sym_u_DQUOTE] = ACTIONS(4194), + [anon_sym_U_DQUOTE] = ACTIONS(4194), + [anon_sym_u8_DQUOTE] = ACTIONS(4194), + [anon_sym_DQUOTE] = ACTIONS(4194), + [sym_true] = ACTIONS(4192), + [sym_false] = ACTIONS(4192), + [anon_sym_NULL] = ACTIONS(4192), + [anon_sym_nullptr] = ACTIONS(4192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4192), + [anon_sym_decltype] = ACTIONS(4192), + [anon_sym_explicit] = ACTIONS(4192), + [anon_sym_export] = ACTIONS(4192), + [anon_sym_import] = ACTIONS(4192), + [anon_sym_template] = ACTIONS(4192), + [anon_sym_operator] = ACTIONS(4192), + [anon_sym_try] = ACTIONS(4192), + [anon_sym_delete] = ACTIONS(4192), + [anon_sym_throw] = ACTIONS(4192), + [anon_sym_namespace] = ACTIONS(4192), + [anon_sym_static_assert] = ACTIONS(4192), + [anon_sym_concept] = ACTIONS(4192), + [anon_sym_co_return] = ACTIONS(4192), + [anon_sym_co_yield] = ACTIONS(4192), + [anon_sym_R_DQUOTE] = ACTIONS(4194), + [anon_sym_LR_DQUOTE] = ACTIONS(4194), + [anon_sym_uR_DQUOTE] = ACTIONS(4194), + [anon_sym_UR_DQUOTE] = ACTIONS(4194), + [anon_sym_u8R_DQUOTE] = ACTIONS(4194), + [anon_sym_co_await] = ACTIONS(4192), + [anon_sym_new] = ACTIONS(4192), + [anon_sym_requires] = ACTIONS(4192), + [anon_sym_CARET_CARET] = ACTIONS(4194), + [anon_sym_LBRACK_COLON] = ACTIONS(4194), + [sym_this] = ACTIONS(4192), }, - [STATE(938)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(7006), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4834), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(4838), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(809)] = { + [sym_identifier] = ACTIONS(4208), + [aux_sym_preproc_include_token1] = ACTIONS(4208), + [aux_sym_preproc_def_token1] = ACTIONS(4208), + [aux_sym_preproc_if_token1] = ACTIONS(4208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4208), + [sym_preproc_directive] = ACTIONS(4208), + [anon_sym_LPAREN2] = ACTIONS(4210), + [anon_sym_BANG] = ACTIONS(4210), + [anon_sym_TILDE] = ACTIONS(4210), + [anon_sym_DASH] = ACTIONS(4208), + [anon_sym_PLUS] = ACTIONS(4208), + [anon_sym_STAR] = ACTIONS(4210), + [anon_sym_AMP_AMP] = ACTIONS(4210), + [anon_sym_AMP] = ACTIONS(4208), + [anon_sym_SEMI] = ACTIONS(4210), + [anon_sym___extension__] = ACTIONS(4208), + [anon_sym_typedef] = ACTIONS(4208), + [anon_sym_virtual] = ACTIONS(4208), + [anon_sym_extern] = ACTIONS(4208), + [anon_sym___attribute__] = ACTIONS(4208), + [anon_sym___attribute] = ACTIONS(4208), + [anon_sym_using] = ACTIONS(4208), + [anon_sym_COLON_COLON] = ACTIONS(4210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4210), + [anon_sym___declspec] = ACTIONS(4208), + [anon_sym___based] = ACTIONS(4208), + [anon_sym___cdecl] = ACTIONS(4208), + [anon_sym___clrcall] = ACTIONS(4208), + [anon_sym___stdcall] = ACTIONS(4208), + [anon_sym___fastcall] = ACTIONS(4208), + [anon_sym___thiscall] = ACTIONS(4208), + [anon_sym___vectorcall] = ACTIONS(4208), + [anon_sym_LBRACE] = ACTIONS(4210), + [anon_sym_RBRACE] = ACTIONS(4210), + [anon_sym_signed] = ACTIONS(4208), + [anon_sym_unsigned] = ACTIONS(4208), + [anon_sym_long] = ACTIONS(4208), + [anon_sym_short] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(4208), + [anon_sym_static] = ACTIONS(4208), + [anon_sym_register] = ACTIONS(4208), + [anon_sym_inline] = ACTIONS(4208), + [anon_sym___inline] = ACTIONS(4208), + [anon_sym___inline__] = ACTIONS(4208), + [anon_sym___forceinline] = ACTIONS(4208), + [anon_sym_thread_local] = ACTIONS(4208), + [anon_sym___thread] = ACTIONS(4208), + [anon_sym_const] = ACTIONS(4208), + [anon_sym_constexpr] = ACTIONS(4208), + [anon_sym_volatile] = ACTIONS(4208), + [anon_sym_restrict] = ACTIONS(4208), + [anon_sym___restrict__] = ACTIONS(4208), + [anon_sym__Atomic] = ACTIONS(4208), + [anon_sym__Noreturn] = ACTIONS(4208), + [anon_sym_noreturn] = ACTIONS(4208), + [anon_sym__Nonnull] = ACTIONS(4208), + [anon_sym_mutable] = ACTIONS(4208), + [anon_sym_constinit] = ACTIONS(4208), + [anon_sym_consteval] = ACTIONS(4208), + [anon_sym_alignas] = ACTIONS(4208), + [anon_sym__Alignas] = ACTIONS(4208), + [sym_primitive_type] = ACTIONS(4208), + [anon_sym_enum] = ACTIONS(4208), + [anon_sym_class] = ACTIONS(4208), + [anon_sym_struct] = ACTIONS(4208), + [anon_sym_union] = ACTIONS(4208), + [anon_sym_if] = ACTIONS(4208), + [anon_sym_switch] = ACTIONS(4208), + [anon_sym_case] = ACTIONS(4208), + [anon_sym_default] = ACTIONS(4208), + [anon_sym_while] = ACTIONS(4208), + [anon_sym_do] = ACTIONS(4208), + [anon_sym_for] = ACTIONS(4208), + [anon_sym_return] = ACTIONS(4208), + [anon_sym_break] = ACTIONS(4208), + [anon_sym_continue] = ACTIONS(4208), + [anon_sym_goto] = ACTIONS(4208), + [anon_sym___try] = ACTIONS(4208), + [anon_sym___leave] = ACTIONS(4208), + [anon_sym_not] = ACTIONS(4208), + [anon_sym_compl] = ACTIONS(4208), + [anon_sym_DASH_DASH] = ACTIONS(4210), + [anon_sym_PLUS_PLUS] = ACTIONS(4210), + [anon_sym_sizeof] = ACTIONS(4208), + [anon_sym___alignof__] = ACTIONS(4208), + [anon_sym___alignof] = ACTIONS(4208), + [anon_sym__alignof] = ACTIONS(4208), + [anon_sym_alignof] = ACTIONS(4208), + [anon_sym__Alignof] = ACTIONS(4208), + [anon_sym_offsetof] = ACTIONS(4208), + [anon_sym__Generic] = ACTIONS(4208), + [anon_sym_typename] = ACTIONS(4208), + [anon_sym_asm] = ACTIONS(4208), + [anon_sym___asm__] = ACTIONS(4208), + [anon_sym___asm] = ACTIONS(4208), + [sym_number_literal] = ACTIONS(4210), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4210), + [anon_sym_u_DQUOTE] = ACTIONS(4210), + [anon_sym_U_DQUOTE] = ACTIONS(4210), + [anon_sym_u8_DQUOTE] = ACTIONS(4210), + [anon_sym_DQUOTE] = ACTIONS(4210), + [sym_true] = ACTIONS(4208), + [sym_false] = ACTIONS(4208), + [anon_sym_NULL] = ACTIONS(4208), + [anon_sym_nullptr] = ACTIONS(4208), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4208), + [anon_sym_decltype] = ACTIONS(4208), + [anon_sym_explicit] = ACTIONS(4208), + [anon_sym_export] = ACTIONS(4208), + [anon_sym_import] = ACTIONS(4208), + [anon_sym_template] = ACTIONS(4208), + [anon_sym_operator] = ACTIONS(4208), + [anon_sym_try] = ACTIONS(4208), + [anon_sym_delete] = ACTIONS(4208), + [anon_sym_throw] = ACTIONS(4208), + [anon_sym_namespace] = ACTIONS(4208), + [anon_sym_static_assert] = ACTIONS(4208), + [anon_sym_concept] = ACTIONS(4208), + [anon_sym_co_return] = ACTIONS(4208), + [anon_sym_co_yield] = ACTIONS(4208), + [anon_sym_R_DQUOTE] = ACTIONS(4210), + [anon_sym_LR_DQUOTE] = ACTIONS(4210), + [anon_sym_uR_DQUOTE] = ACTIONS(4210), + [anon_sym_UR_DQUOTE] = ACTIONS(4210), + [anon_sym_u8R_DQUOTE] = ACTIONS(4210), + [anon_sym_co_await] = ACTIONS(4208), + [anon_sym_new] = ACTIONS(4208), + [anon_sym_requires] = ACTIONS(4208), + [anon_sym_CARET_CARET] = ACTIONS(4210), + [anon_sym_LBRACK_COLON] = ACTIONS(4210), + [sym_this] = ACTIONS(4208), }, - [STATE(939)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6830), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4840), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(4842), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(810)] = { + [sym_identifier] = ACTIONS(4212), + [aux_sym_preproc_include_token1] = ACTIONS(4212), + [aux_sym_preproc_def_token1] = ACTIONS(4212), + [aux_sym_preproc_if_token1] = ACTIONS(4212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4212), + [sym_preproc_directive] = ACTIONS(4212), + [anon_sym_LPAREN2] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4212), + [anon_sym_PLUS] = ACTIONS(4212), + [anon_sym_STAR] = ACTIONS(4214), + [anon_sym_AMP_AMP] = ACTIONS(4214), + [anon_sym_AMP] = ACTIONS(4212), + [anon_sym_SEMI] = ACTIONS(4214), + [anon_sym___extension__] = ACTIONS(4212), + [anon_sym_typedef] = ACTIONS(4212), + [anon_sym_virtual] = ACTIONS(4212), + [anon_sym_extern] = ACTIONS(4212), + [anon_sym___attribute__] = ACTIONS(4212), + [anon_sym___attribute] = ACTIONS(4212), + [anon_sym_using] = ACTIONS(4212), + [anon_sym_COLON_COLON] = ACTIONS(4214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4214), + [anon_sym___declspec] = ACTIONS(4212), + [anon_sym___based] = ACTIONS(4212), + [anon_sym___cdecl] = ACTIONS(4212), + [anon_sym___clrcall] = ACTIONS(4212), + [anon_sym___stdcall] = ACTIONS(4212), + [anon_sym___fastcall] = ACTIONS(4212), + [anon_sym___thiscall] = ACTIONS(4212), + [anon_sym___vectorcall] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4214), + [anon_sym_RBRACE] = ACTIONS(4214), + [anon_sym_signed] = ACTIONS(4212), + [anon_sym_unsigned] = ACTIONS(4212), + [anon_sym_long] = ACTIONS(4212), + [anon_sym_short] = ACTIONS(4212), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_static] = ACTIONS(4212), + [anon_sym_register] = ACTIONS(4212), + [anon_sym_inline] = ACTIONS(4212), + [anon_sym___inline] = ACTIONS(4212), + [anon_sym___inline__] = ACTIONS(4212), + [anon_sym___forceinline] = ACTIONS(4212), + [anon_sym_thread_local] = ACTIONS(4212), + [anon_sym___thread] = ACTIONS(4212), + [anon_sym_const] = ACTIONS(4212), + [anon_sym_constexpr] = ACTIONS(4212), + [anon_sym_volatile] = ACTIONS(4212), + [anon_sym_restrict] = ACTIONS(4212), + [anon_sym___restrict__] = ACTIONS(4212), + [anon_sym__Atomic] = ACTIONS(4212), + [anon_sym__Noreturn] = ACTIONS(4212), + [anon_sym_noreturn] = ACTIONS(4212), + [anon_sym__Nonnull] = ACTIONS(4212), + [anon_sym_mutable] = ACTIONS(4212), + [anon_sym_constinit] = ACTIONS(4212), + [anon_sym_consteval] = ACTIONS(4212), + [anon_sym_alignas] = ACTIONS(4212), + [anon_sym__Alignas] = ACTIONS(4212), + [sym_primitive_type] = ACTIONS(4212), + [anon_sym_enum] = ACTIONS(4212), + [anon_sym_class] = ACTIONS(4212), + [anon_sym_struct] = ACTIONS(4212), + [anon_sym_union] = ACTIONS(4212), + [anon_sym_if] = ACTIONS(4212), + [anon_sym_switch] = ACTIONS(4212), + [anon_sym_case] = ACTIONS(4212), + [anon_sym_default] = ACTIONS(4212), + [anon_sym_while] = ACTIONS(4212), + [anon_sym_do] = ACTIONS(4212), + [anon_sym_for] = ACTIONS(4212), + [anon_sym_return] = ACTIONS(4212), + [anon_sym_break] = ACTIONS(4212), + [anon_sym_continue] = ACTIONS(4212), + [anon_sym_goto] = ACTIONS(4212), + [anon_sym___try] = ACTIONS(4212), + [anon_sym___leave] = ACTIONS(4212), + [anon_sym_not] = ACTIONS(4212), + [anon_sym_compl] = ACTIONS(4212), + [anon_sym_DASH_DASH] = ACTIONS(4214), + [anon_sym_PLUS_PLUS] = ACTIONS(4214), + [anon_sym_sizeof] = ACTIONS(4212), + [anon_sym___alignof__] = ACTIONS(4212), + [anon_sym___alignof] = ACTIONS(4212), + [anon_sym__alignof] = ACTIONS(4212), + [anon_sym_alignof] = ACTIONS(4212), + [anon_sym__Alignof] = ACTIONS(4212), + [anon_sym_offsetof] = ACTIONS(4212), + [anon_sym__Generic] = ACTIONS(4212), + [anon_sym_typename] = ACTIONS(4212), + [anon_sym_asm] = ACTIONS(4212), + [anon_sym___asm__] = ACTIONS(4212), + [anon_sym___asm] = ACTIONS(4212), + [sym_number_literal] = ACTIONS(4214), + [anon_sym_L_SQUOTE] = ACTIONS(4214), + [anon_sym_u_SQUOTE] = ACTIONS(4214), + [anon_sym_U_SQUOTE] = ACTIONS(4214), + [anon_sym_u8_SQUOTE] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4214), + [anon_sym_L_DQUOTE] = ACTIONS(4214), + [anon_sym_u_DQUOTE] = ACTIONS(4214), + [anon_sym_U_DQUOTE] = ACTIONS(4214), + [anon_sym_u8_DQUOTE] = ACTIONS(4214), + [anon_sym_DQUOTE] = ACTIONS(4214), + [sym_true] = ACTIONS(4212), + [sym_false] = ACTIONS(4212), + [anon_sym_NULL] = ACTIONS(4212), + [anon_sym_nullptr] = ACTIONS(4212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4212), + [anon_sym_decltype] = ACTIONS(4212), + [anon_sym_explicit] = ACTIONS(4212), + [anon_sym_export] = ACTIONS(4212), + [anon_sym_import] = ACTIONS(4212), + [anon_sym_template] = ACTIONS(4212), + [anon_sym_operator] = ACTIONS(4212), + [anon_sym_try] = ACTIONS(4212), + [anon_sym_delete] = ACTIONS(4212), + [anon_sym_throw] = ACTIONS(4212), + [anon_sym_namespace] = ACTIONS(4212), + [anon_sym_static_assert] = ACTIONS(4212), + [anon_sym_concept] = ACTIONS(4212), + [anon_sym_co_return] = ACTIONS(4212), + [anon_sym_co_yield] = ACTIONS(4212), + [anon_sym_R_DQUOTE] = ACTIONS(4214), + [anon_sym_LR_DQUOTE] = ACTIONS(4214), + [anon_sym_uR_DQUOTE] = ACTIONS(4214), + [anon_sym_UR_DQUOTE] = ACTIONS(4214), + [anon_sym_u8R_DQUOTE] = ACTIONS(4214), + [anon_sym_co_await] = ACTIONS(4212), + [anon_sym_new] = ACTIONS(4212), + [anon_sym_requires] = ACTIONS(4212), + [anon_sym_CARET_CARET] = ACTIONS(4214), + [anon_sym_LBRACK_COLON] = ACTIONS(4214), + [sym_this] = ACTIONS(4212), }, - [STATE(940)] = { - [sym_type_qualifier] = STATE(938), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6852), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(938), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4844), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4846), - [anon_sym_RBRACK] = ACTIONS(4848), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(811)] = { + [sym_identifier] = ACTIONS(4112), + [aux_sym_preproc_include_token1] = ACTIONS(4112), + [aux_sym_preproc_def_token1] = ACTIONS(4112), + [aux_sym_preproc_if_token1] = ACTIONS(4112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4112), + [sym_preproc_directive] = ACTIONS(4112), + [anon_sym_LPAREN2] = ACTIONS(4114), + [anon_sym_BANG] = ACTIONS(4114), + [anon_sym_TILDE] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4112), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_STAR] = ACTIONS(4114), + [anon_sym_AMP_AMP] = ACTIONS(4114), + [anon_sym_AMP] = ACTIONS(4112), + [anon_sym_SEMI] = ACTIONS(4114), + [anon_sym___extension__] = ACTIONS(4112), + [anon_sym_typedef] = ACTIONS(4112), + [anon_sym_virtual] = ACTIONS(4112), + [anon_sym_extern] = ACTIONS(4112), + [anon_sym___attribute__] = ACTIONS(4112), + [anon_sym___attribute] = ACTIONS(4112), + [anon_sym_using] = ACTIONS(4112), + [anon_sym_COLON_COLON] = ACTIONS(4114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4114), + [anon_sym___declspec] = ACTIONS(4112), + [anon_sym___based] = ACTIONS(4112), + [anon_sym___cdecl] = ACTIONS(4112), + [anon_sym___clrcall] = ACTIONS(4112), + [anon_sym___stdcall] = ACTIONS(4112), + [anon_sym___fastcall] = ACTIONS(4112), + [anon_sym___thiscall] = ACTIONS(4112), + [anon_sym___vectorcall] = ACTIONS(4112), + [anon_sym_LBRACE] = ACTIONS(4114), + [anon_sym_RBRACE] = ACTIONS(4114), + [anon_sym_signed] = ACTIONS(4112), + [anon_sym_unsigned] = ACTIONS(4112), + [anon_sym_long] = ACTIONS(4112), + [anon_sym_short] = ACTIONS(4112), + [anon_sym_LBRACK] = ACTIONS(4112), + [anon_sym_static] = ACTIONS(4112), + [anon_sym_register] = ACTIONS(4112), + [anon_sym_inline] = ACTIONS(4112), + [anon_sym___inline] = ACTIONS(4112), + [anon_sym___inline__] = ACTIONS(4112), + [anon_sym___forceinline] = ACTIONS(4112), + [anon_sym_thread_local] = ACTIONS(4112), + [anon_sym___thread] = ACTIONS(4112), + [anon_sym_const] = ACTIONS(4112), + [anon_sym_constexpr] = ACTIONS(4112), + [anon_sym_volatile] = ACTIONS(4112), + [anon_sym_restrict] = ACTIONS(4112), + [anon_sym___restrict__] = ACTIONS(4112), + [anon_sym__Atomic] = ACTIONS(4112), + [anon_sym__Noreturn] = ACTIONS(4112), + [anon_sym_noreturn] = ACTIONS(4112), + [anon_sym__Nonnull] = ACTIONS(4112), + [anon_sym_mutable] = ACTIONS(4112), + [anon_sym_constinit] = ACTIONS(4112), + [anon_sym_consteval] = ACTIONS(4112), + [anon_sym_alignas] = ACTIONS(4112), + [anon_sym__Alignas] = ACTIONS(4112), + [sym_primitive_type] = ACTIONS(4112), + [anon_sym_enum] = ACTIONS(4112), + [anon_sym_class] = ACTIONS(4112), + [anon_sym_struct] = ACTIONS(4112), + [anon_sym_union] = ACTIONS(4112), + [anon_sym_if] = ACTIONS(4112), + [anon_sym_switch] = ACTIONS(4112), + [anon_sym_case] = ACTIONS(4112), + [anon_sym_default] = ACTIONS(4112), + [anon_sym_while] = ACTIONS(4112), + [anon_sym_do] = ACTIONS(4112), + [anon_sym_for] = ACTIONS(4112), + [anon_sym_return] = ACTIONS(4112), + [anon_sym_break] = ACTIONS(4112), + [anon_sym_continue] = ACTIONS(4112), + [anon_sym_goto] = ACTIONS(4112), + [anon_sym___try] = ACTIONS(4112), + [anon_sym___leave] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4112), + [anon_sym_compl] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4114), + [anon_sym_PLUS_PLUS] = ACTIONS(4114), + [anon_sym_sizeof] = ACTIONS(4112), + [anon_sym___alignof__] = ACTIONS(4112), + [anon_sym___alignof] = ACTIONS(4112), + [anon_sym__alignof] = ACTIONS(4112), + [anon_sym_alignof] = ACTIONS(4112), + [anon_sym__Alignof] = ACTIONS(4112), + [anon_sym_offsetof] = ACTIONS(4112), + [anon_sym__Generic] = ACTIONS(4112), + [anon_sym_typename] = ACTIONS(4112), + [anon_sym_asm] = ACTIONS(4112), + [anon_sym___asm__] = ACTIONS(4112), + [anon_sym___asm] = ACTIONS(4112), + [sym_number_literal] = ACTIONS(4114), + [anon_sym_L_SQUOTE] = ACTIONS(4114), + [anon_sym_u_SQUOTE] = ACTIONS(4114), + [anon_sym_U_SQUOTE] = ACTIONS(4114), + [anon_sym_u8_SQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4114), + [anon_sym_L_DQUOTE] = ACTIONS(4114), + [anon_sym_u_DQUOTE] = ACTIONS(4114), + [anon_sym_U_DQUOTE] = ACTIONS(4114), + [anon_sym_u8_DQUOTE] = ACTIONS(4114), + [anon_sym_DQUOTE] = ACTIONS(4114), + [sym_true] = ACTIONS(4112), + [sym_false] = ACTIONS(4112), + [anon_sym_NULL] = ACTIONS(4112), + [anon_sym_nullptr] = ACTIONS(4112), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4112), + [anon_sym_decltype] = ACTIONS(4112), + [anon_sym_explicit] = ACTIONS(4112), + [anon_sym_export] = ACTIONS(4112), + [anon_sym_import] = ACTIONS(4112), + [anon_sym_template] = ACTIONS(4112), + [anon_sym_operator] = ACTIONS(4112), + [anon_sym_try] = ACTIONS(4112), + [anon_sym_delete] = ACTIONS(4112), + [anon_sym_throw] = ACTIONS(4112), + [anon_sym_namespace] = ACTIONS(4112), + [anon_sym_static_assert] = ACTIONS(4112), + [anon_sym_concept] = ACTIONS(4112), + [anon_sym_co_return] = ACTIONS(4112), + [anon_sym_co_yield] = ACTIONS(4112), + [anon_sym_R_DQUOTE] = ACTIONS(4114), + [anon_sym_LR_DQUOTE] = ACTIONS(4114), + [anon_sym_uR_DQUOTE] = ACTIONS(4114), + [anon_sym_UR_DQUOTE] = ACTIONS(4114), + [anon_sym_u8R_DQUOTE] = ACTIONS(4114), + [anon_sym_co_await] = ACTIONS(4112), + [anon_sym_new] = ACTIONS(4112), + [anon_sym_requires] = ACTIONS(4112), + [anon_sym_CARET_CARET] = ACTIONS(4114), + [anon_sym_LBRACK_COLON] = ACTIONS(4114), + [sym_this] = ACTIONS(4112), }, - [STATE(941)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(7025), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4850), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(4852), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(812)] = { + [sym_identifier] = ACTIONS(4040), + [aux_sym_preproc_include_token1] = ACTIONS(4040), + [aux_sym_preproc_def_token1] = ACTIONS(4040), + [aux_sym_preproc_if_token1] = ACTIONS(4040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4040), + [sym_preproc_directive] = ACTIONS(4040), + [anon_sym_LPAREN2] = ACTIONS(4042), + [anon_sym_BANG] = ACTIONS(4042), + [anon_sym_TILDE] = ACTIONS(4042), + [anon_sym_DASH] = ACTIONS(4040), + [anon_sym_PLUS] = ACTIONS(4040), + [anon_sym_STAR] = ACTIONS(4042), + [anon_sym_AMP_AMP] = ACTIONS(4042), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_SEMI] = ACTIONS(4042), + [anon_sym___extension__] = ACTIONS(4040), + [anon_sym_typedef] = ACTIONS(4040), + [anon_sym_virtual] = ACTIONS(4040), + [anon_sym_extern] = ACTIONS(4040), + [anon_sym___attribute__] = ACTIONS(4040), + [anon_sym___attribute] = ACTIONS(4040), + [anon_sym_using] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(4042), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4042), + [anon_sym___declspec] = ACTIONS(4040), + [anon_sym___based] = ACTIONS(4040), + [anon_sym___cdecl] = ACTIONS(4040), + [anon_sym___clrcall] = ACTIONS(4040), + [anon_sym___stdcall] = ACTIONS(4040), + [anon_sym___fastcall] = ACTIONS(4040), + [anon_sym___thiscall] = ACTIONS(4040), + [anon_sym___vectorcall] = ACTIONS(4040), + [anon_sym_LBRACE] = ACTIONS(4042), + [anon_sym_RBRACE] = ACTIONS(4042), + [anon_sym_signed] = ACTIONS(4040), + [anon_sym_unsigned] = ACTIONS(4040), + [anon_sym_long] = ACTIONS(4040), + [anon_sym_short] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4040), + [anon_sym_static] = ACTIONS(4040), + [anon_sym_register] = ACTIONS(4040), + [anon_sym_inline] = ACTIONS(4040), + [anon_sym___inline] = ACTIONS(4040), + [anon_sym___inline__] = ACTIONS(4040), + [anon_sym___forceinline] = ACTIONS(4040), + [anon_sym_thread_local] = ACTIONS(4040), + [anon_sym___thread] = ACTIONS(4040), + [anon_sym_const] = ACTIONS(4040), + [anon_sym_constexpr] = ACTIONS(4040), + [anon_sym_volatile] = ACTIONS(4040), + [anon_sym_restrict] = ACTIONS(4040), + [anon_sym___restrict__] = ACTIONS(4040), + [anon_sym__Atomic] = ACTIONS(4040), + [anon_sym__Noreturn] = ACTIONS(4040), + [anon_sym_noreturn] = ACTIONS(4040), + [anon_sym__Nonnull] = ACTIONS(4040), + [anon_sym_mutable] = ACTIONS(4040), + [anon_sym_constinit] = ACTIONS(4040), + [anon_sym_consteval] = ACTIONS(4040), + [anon_sym_alignas] = ACTIONS(4040), + [anon_sym__Alignas] = ACTIONS(4040), + [sym_primitive_type] = ACTIONS(4040), + [anon_sym_enum] = ACTIONS(4040), + [anon_sym_class] = ACTIONS(4040), + [anon_sym_struct] = ACTIONS(4040), + [anon_sym_union] = ACTIONS(4040), + [anon_sym_if] = ACTIONS(4040), + [anon_sym_switch] = ACTIONS(4040), + [anon_sym_case] = ACTIONS(4040), + [anon_sym_default] = ACTIONS(4040), + [anon_sym_while] = ACTIONS(4040), + [anon_sym_do] = ACTIONS(4040), + [anon_sym_for] = ACTIONS(4040), + [anon_sym_return] = ACTIONS(4040), + [anon_sym_break] = ACTIONS(4040), + [anon_sym_continue] = ACTIONS(4040), + [anon_sym_goto] = ACTIONS(4040), + [anon_sym___try] = ACTIONS(4040), + [anon_sym___leave] = ACTIONS(4040), + [anon_sym_not] = ACTIONS(4040), + [anon_sym_compl] = ACTIONS(4040), + [anon_sym_DASH_DASH] = ACTIONS(4042), + [anon_sym_PLUS_PLUS] = ACTIONS(4042), + [anon_sym_sizeof] = ACTIONS(4040), + [anon_sym___alignof__] = ACTIONS(4040), + [anon_sym___alignof] = ACTIONS(4040), + [anon_sym__alignof] = ACTIONS(4040), + [anon_sym_alignof] = ACTIONS(4040), + [anon_sym__Alignof] = ACTIONS(4040), + [anon_sym_offsetof] = ACTIONS(4040), + [anon_sym__Generic] = ACTIONS(4040), + [anon_sym_typename] = ACTIONS(4040), + [anon_sym_asm] = ACTIONS(4040), + [anon_sym___asm__] = ACTIONS(4040), + [anon_sym___asm] = ACTIONS(4040), + [sym_number_literal] = ACTIONS(4042), + [anon_sym_L_SQUOTE] = ACTIONS(4042), + [anon_sym_u_SQUOTE] = ACTIONS(4042), + [anon_sym_U_SQUOTE] = ACTIONS(4042), + [anon_sym_u8_SQUOTE] = ACTIONS(4042), + [anon_sym_SQUOTE] = ACTIONS(4042), + [anon_sym_L_DQUOTE] = ACTIONS(4042), + [anon_sym_u_DQUOTE] = ACTIONS(4042), + [anon_sym_U_DQUOTE] = ACTIONS(4042), + [anon_sym_u8_DQUOTE] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4042), + [sym_true] = ACTIONS(4040), + [sym_false] = ACTIONS(4040), + [anon_sym_NULL] = ACTIONS(4040), + [anon_sym_nullptr] = ACTIONS(4040), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4040), + [anon_sym_decltype] = ACTIONS(4040), + [anon_sym_explicit] = ACTIONS(4040), + [anon_sym_export] = ACTIONS(4040), + [anon_sym_import] = ACTIONS(4040), + [anon_sym_template] = ACTIONS(4040), + [anon_sym_operator] = ACTIONS(4040), + [anon_sym_try] = ACTIONS(4040), + [anon_sym_delete] = ACTIONS(4040), + [anon_sym_throw] = ACTIONS(4040), + [anon_sym_namespace] = ACTIONS(4040), + [anon_sym_static_assert] = ACTIONS(4040), + [anon_sym_concept] = ACTIONS(4040), + [anon_sym_co_return] = ACTIONS(4040), + [anon_sym_co_yield] = ACTIONS(4040), + [anon_sym_R_DQUOTE] = ACTIONS(4042), + [anon_sym_LR_DQUOTE] = ACTIONS(4042), + [anon_sym_uR_DQUOTE] = ACTIONS(4042), + [anon_sym_UR_DQUOTE] = ACTIONS(4042), + [anon_sym_u8R_DQUOTE] = ACTIONS(4042), + [anon_sym_co_await] = ACTIONS(4040), + [anon_sym_new] = ACTIONS(4040), + [anon_sym_requires] = ACTIONS(4040), + [anon_sym_CARET_CARET] = ACTIONS(4042), + [anon_sym_LBRACK_COLON] = ACTIONS(4042), + [sym_this] = ACTIONS(4040), }, - [STATE(942)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(7042), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4854), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(4856), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(813)] = { + [sym_identifier] = ACTIONS(4080), + [aux_sym_preproc_include_token1] = ACTIONS(4080), + [aux_sym_preproc_def_token1] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), + [sym_preproc_directive] = ACTIONS(4080), + [anon_sym_LPAREN2] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_TILDE] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4080), + [anon_sym_PLUS] = ACTIONS(4080), + [anon_sym_STAR] = ACTIONS(4082), + [anon_sym_AMP_AMP] = ACTIONS(4082), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_SEMI] = ACTIONS(4082), + [anon_sym___extension__] = ACTIONS(4080), + [anon_sym_typedef] = ACTIONS(4080), + [anon_sym_virtual] = ACTIONS(4080), + [anon_sym_extern] = ACTIONS(4080), + [anon_sym___attribute__] = ACTIONS(4080), + [anon_sym___attribute] = ACTIONS(4080), + [anon_sym_using] = ACTIONS(4080), + [anon_sym_COLON_COLON] = ACTIONS(4082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), + [anon_sym___declspec] = ACTIONS(4080), + [anon_sym___based] = ACTIONS(4080), + [anon_sym___cdecl] = ACTIONS(4080), + [anon_sym___clrcall] = ACTIONS(4080), + [anon_sym___stdcall] = ACTIONS(4080), + [anon_sym___fastcall] = ACTIONS(4080), + [anon_sym___thiscall] = ACTIONS(4080), + [anon_sym___vectorcall] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4082), + [anon_sym_RBRACE] = ACTIONS(4082), + [anon_sym_signed] = ACTIONS(4080), + [anon_sym_unsigned] = ACTIONS(4080), + [anon_sym_long] = ACTIONS(4080), + [anon_sym_short] = ACTIONS(4080), + [anon_sym_LBRACK] = ACTIONS(4080), + [anon_sym_static] = ACTIONS(4080), + [anon_sym_register] = ACTIONS(4080), + [anon_sym_inline] = ACTIONS(4080), + [anon_sym___inline] = ACTIONS(4080), + [anon_sym___inline__] = ACTIONS(4080), + [anon_sym___forceinline] = ACTIONS(4080), + [anon_sym_thread_local] = ACTIONS(4080), + [anon_sym___thread] = ACTIONS(4080), + [anon_sym_const] = ACTIONS(4080), + [anon_sym_constexpr] = ACTIONS(4080), + [anon_sym_volatile] = ACTIONS(4080), + [anon_sym_restrict] = ACTIONS(4080), + [anon_sym___restrict__] = ACTIONS(4080), + [anon_sym__Atomic] = ACTIONS(4080), + [anon_sym__Noreturn] = ACTIONS(4080), + [anon_sym_noreturn] = ACTIONS(4080), + [anon_sym__Nonnull] = ACTIONS(4080), + [anon_sym_mutable] = ACTIONS(4080), + [anon_sym_constinit] = ACTIONS(4080), + [anon_sym_consteval] = ACTIONS(4080), + [anon_sym_alignas] = ACTIONS(4080), + [anon_sym__Alignas] = ACTIONS(4080), + [sym_primitive_type] = ACTIONS(4080), + [anon_sym_enum] = ACTIONS(4080), + [anon_sym_class] = ACTIONS(4080), + [anon_sym_struct] = ACTIONS(4080), + [anon_sym_union] = ACTIONS(4080), + [anon_sym_if] = ACTIONS(4080), + [anon_sym_switch] = ACTIONS(4080), + [anon_sym_case] = ACTIONS(4080), + [anon_sym_default] = ACTIONS(4080), + [anon_sym_while] = ACTIONS(4080), + [anon_sym_do] = ACTIONS(4080), + [anon_sym_for] = ACTIONS(4080), + [anon_sym_return] = ACTIONS(4080), + [anon_sym_break] = ACTIONS(4080), + [anon_sym_continue] = ACTIONS(4080), + [anon_sym_goto] = ACTIONS(4080), + [anon_sym___try] = ACTIONS(4080), + [anon_sym___leave] = ACTIONS(4080), + [anon_sym_not] = ACTIONS(4080), + [anon_sym_compl] = ACTIONS(4080), + [anon_sym_DASH_DASH] = ACTIONS(4082), + [anon_sym_PLUS_PLUS] = ACTIONS(4082), + [anon_sym_sizeof] = ACTIONS(4080), + [anon_sym___alignof__] = ACTIONS(4080), + [anon_sym___alignof] = ACTIONS(4080), + [anon_sym__alignof] = ACTIONS(4080), + [anon_sym_alignof] = ACTIONS(4080), + [anon_sym__Alignof] = ACTIONS(4080), + [anon_sym_offsetof] = ACTIONS(4080), + [anon_sym__Generic] = ACTIONS(4080), + [anon_sym_typename] = ACTIONS(4080), + [anon_sym_asm] = ACTIONS(4080), + [anon_sym___asm__] = ACTIONS(4080), + [anon_sym___asm] = ACTIONS(4080), + [sym_number_literal] = ACTIONS(4082), + [anon_sym_L_SQUOTE] = ACTIONS(4082), + [anon_sym_u_SQUOTE] = ACTIONS(4082), + [anon_sym_U_SQUOTE] = ACTIONS(4082), + [anon_sym_u8_SQUOTE] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4082), + [anon_sym_L_DQUOTE] = ACTIONS(4082), + [anon_sym_u_DQUOTE] = ACTIONS(4082), + [anon_sym_U_DQUOTE] = ACTIONS(4082), + [anon_sym_u8_DQUOTE] = ACTIONS(4082), + [anon_sym_DQUOTE] = ACTIONS(4082), + [sym_true] = ACTIONS(4080), + [sym_false] = ACTIONS(4080), + [anon_sym_NULL] = ACTIONS(4080), + [anon_sym_nullptr] = ACTIONS(4080), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4080), + [anon_sym_decltype] = ACTIONS(4080), + [anon_sym_explicit] = ACTIONS(4080), + [anon_sym_export] = ACTIONS(4080), + [anon_sym_import] = ACTIONS(4080), + [anon_sym_template] = ACTIONS(4080), + [anon_sym_operator] = ACTIONS(4080), + [anon_sym_try] = ACTIONS(4080), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_throw] = ACTIONS(4080), + [anon_sym_namespace] = ACTIONS(4080), + [anon_sym_static_assert] = ACTIONS(4080), + [anon_sym_concept] = ACTIONS(4080), + [anon_sym_co_return] = ACTIONS(4080), + [anon_sym_co_yield] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4080), + [anon_sym_new] = ACTIONS(4080), + [anon_sym_requires] = ACTIONS(4080), + [anon_sym_CARET_CARET] = ACTIONS(4082), + [anon_sym_LBRACK_COLON] = ACTIONS(4082), + [sym_this] = ACTIONS(4080), }, - [STATE(943)] = { - [sym_type_qualifier] = STATE(973), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(7044), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(973), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4858), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4860), - [anon_sym_RBRACK] = ACTIONS(4862), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(814)] = { + [sym_identifier] = ACTIONS(4044), + [aux_sym_preproc_include_token1] = ACTIONS(4044), + [aux_sym_preproc_def_token1] = ACTIONS(4044), + [aux_sym_preproc_if_token1] = ACTIONS(4044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4044), + [sym_preproc_directive] = ACTIONS(4044), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(4046), + [anon_sym_TILDE] = ACTIONS(4046), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym___extension__] = ACTIONS(4044), + [anon_sym_typedef] = ACTIONS(4044), + [anon_sym_virtual] = ACTIONS(4044), + [anon_sym_extern] = ACTIONS(4044), + [anon_sym___attribute__] = ACTIONS(4044), + [anon_sym___attribute] = ACTIONS(4044), + [anon_sym_using] = ACTIONS(4044), + [anon_sym_COLON_COLON] = ACTIONS(4046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4046), + [anon_sym___declspec] = ACTIONS(4044), + [anon_sym___based] = ACTIONS(4044), + [anon_sym___cdecl] = ACTIONS(4044), + [anon_sym___clrcall] = ACTIONS(4044), + [anon_sym___stdcall] = ACTIONS(4044), + [anon_sym___fastcall] = ACTIONS(4044), + [anon_sym___thiscall] = ACTIONS(4044), + [anon_sym___vectorcall] = ACTIONS(4044), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_RBRACE] = ACTIONS(4046), + [anon_sym_signed] = ACTIONS(4044), + [anon_sym_unsigned] = ACTIONS(4044), + [anon_sym_long] = ACTIONS(4044), + [anon_sym_short] = ACTIONS(4044), + [anon_sym_LBRACK] = ACTIONS(4044), + [anon_sym_static] = ACTIONS(4044), + [anon_sym_register] = ACTIONS(4044), + [anon_sym_inline] = ACTIONS(4044), + [anon_sym___inline] = ACTIONS(4044), + [anon_sym___inline__] = ACTIONS(4044), + [anon_sym___forceinline] = ACTIONS(4044), + [anon_sym_thread_local] = ACTIONS(4044), + [anon_sym___thread] = ACTIONS(4044), + [anon_sym_const] = ACTIONS(4044), + [anon_sym_constexpr] = ACTIONS(4044), + [anon_sym_volatile] = ACTIONS(4044), + [anon_sym_restrict] = ACTIONS(4044), + [anon_sym___restrict__] = ACTIONS(4044), + [anon_sym__Atomic] = ACTIONS(4044), + [anon_sym__Noreturn] = ACTIONS(4044), + [anon_sym_noreturn] = ACTIONS(4044), + [anon_sym__Nonnull] = ACTIONS(4044), + [anon_sym_mutable] = ACTIONS(4044), + [anon_sym_constinit] = ACTIONS(4044), + [anon_sym_consteval] = ACTIONS(4044), + [anon_sym_alignas] = ACTIONS(4044), + [anon_sym__Alignas] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(4044), + [anon_sym_enum] = ACTIONS(4044), + [anon_sym_class] = ACTIONS(4044), + [anon_sym_struct] = ACTIONS(4044), + [anon_sym_union] = ACTIONS(4044), + [anon_sym_if] = ACTIONS(4044), + [anon_sym_switch] = ACTIONS(4044), + [anon_sym_case] = ACTIONS(4044), + [anon_sym_default] = ACTIONS(4044), + [anon_sym_while] = ACTIONS(4044), + [anon_sym_do] = ACTIONS(4044), + [anon_sym_for] = ACTIONS(4044), + [anon_sym_return] = ACTIONS(4044), + [anon_sym_break] = ACTIONS(4044), + [anon_sym_continue] = ACTIONS(4044), + [anon_sym_goto] = ACTIONS(4044), + [anon_sym___try] = ACTIONS(4044), + [anon_sym___leave] = ACTIONS(4044), + [anon_sym_not] = ACTIONS(4044), + [anon_sym_compl] = ACTIONS(4044), + [anon_sym_DASH_DASH] = ACTIONS(4046), + [anon_sym_PLUS_PLUS] = ACTIONS(4046), + [anon_sym_sizeof] = ACTIONS(4044), + [anon_sym___alignof__] = ACTIONS(4044), + [anon_sym___alignof] = ACTIONS(4044), + [anon_sym__alignof] = ACTIONS(4044), + [anon_sym_alignof] = ACTIONS(4044), + [anon_sym__Alignof] = ACTIONS(4044), + [anon_sym_offsetof] = ACTIONS(4044), + [anon_sym__Generic] = ACTIONS(4044), + [anon_sym_typename] = ACTIONS(4044), + [anon_sym_asm] = ACTIONS(4044), + [anon_sym___asm__] = ACTIONS(4044), + [anon_sym___asm] = ACTIONS(4044), + [sym_number_literal] = ACTIONS(4046), + [anon_sym_L_SQUOTE] = ACTIONS(4046), + [anon_sym_u_SQUOTE] = ACTIONS(4046), + [anon_sym_U_SQUOTE] = ACTIONS(4046), + [anon_sym_u8_SQUOTE] = ACTIONS(4046), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_L_DQUOTE] = ACTIONS(4046), + [anon_sym_u_DQUOTE] = ACTIONS(4046), + [anon_sym_U_DQUOTE] = ACTIONS(4046), + [anon_sym_u8_DQUOTE] = ACTIONS(4046), + [anon_sym_DQUOTE] = ACTIONS(4046), + [sym_true] = ACTIONS(4044), + [sym_false] = ACTIONS(4044), + [anon_sym_NULL] = ACTIONS(4044), + [anon_sym_nullptr] = ACTIONS(4044), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4044), + [anon_sym_decltype] = ACTIONS(4044), + [anon_sym_explicit] = ACTIONS(4044), + [anon_sym_export] = ACTIONS(4044), + [anon_sym_import] = ACTIONS(4044), + [anon_sym_template] = ACTIONS(4044), + [anon_sym_operator] = ACTIONS(4044), + [anon_sym_try] = ACTIONS(4044), + [anon_sym_delete] = ACTIONS(4044), + [anon_sym_throw] = ACTIONS(4044), + [anon_sym_namespace] = ACTIONS(4044), + [anon_sym_static_assert] = ACTIONS(4044), + [anon_sym_concept] = ACTIONS(4044), + [anon_sym_co_return] = ACTIONS(4044), + [anon_sym_co_yield] = ACTIONS(4044), + [anon_sym_R_DQUOTE] = ACTIONS(4046), + [anon_sym_LR_DQUOTE] = ACTIONS(4046), + [anon_sym_uR_DQUOTE] = ACTIONS(4046), + [anon_sym_UR_DQUOTE] = ACTIONS(4046), + [anon_sym_u8R_DQUOTE] = ACTIONS(4046), + [anon_sym_co_await] = ACTIONS(4044), + [anon_sym_new] = ACTIONS(4044), + [anon_sym_requires] = ACTIONS(4044), + [anon_sym_CARET_CARET] = ACTIONS(4046), + [anon_sym_LBRACK_COLON] = ACTIONS(4046), + [sym_this] = ACTIONS(4044), }, - [STATE(944)] = { - [sym_type_qualifier] = STATE(947), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6913), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(947), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4864), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4866), - [anon_sym_RBRACK] = ACTIONS(4868), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(815)] = { + [sym_identifier] = ACTIONS(4004), + [aux_sym_preproc_include_token1] = ACTIONS(4004), + [aux_sym_preproc_def_token1] = ACTIONS(4004), + [aux_sym_preproc_if_token1] = ACTIONS(4004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4004), + [sym_preproc_directive] = ACTIONS(4004), + [anon_sym_LPAREN2] = ACTIONS(4006), + [anon_sym_BANG] = ACTIONS(4006), + [anon_sym_TILDE] = ACTIONS(4006), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4006), + [anon_sym___extension__] = ACTIONS(4004), + [anon_sym_typedef] = ACTIONS(4004), + [anon_sym_virtual] = ACTIONS(4004), + [anon_sym_extern] = ACTIONS(4004), + [anon_sym___attribute__] = ACTIONS(4004), + [anon_sym___attribute] = ACTIONS(4004), + [anon_sym_using] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4006), + [anon_sym___declspec] = ACTIONS(4004), + [anon_sym___based] = ACTIONS(4004), + [anon_sym___cdecl] = ACTIONS(4004), + [anon_sym___clrcall] = ACTIONS(4004), + [anon_sym___stdcall] = ACTIONS(4004), + [anon_sym___fastcall] = ACTIONS(4004), + [anon_sym___thiscall] = ACTIONS(4004), + [anon_sym___vectorcall] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4006), + [anon_sym_RBRACE] = ACTIONS(4006), + [anon_sym_signed] = ACTIONS(4004), + [anon_sym_unsigned] = ACTIONS(4004), + [anon_sym_long] = ACTIONS(4004), + [anon_sym_short] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_register] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym___inline] = ACTIONS(4004), + [anon_sym___inline__] = ACTIONS(4004), + [anon_sym___forceinline] = ACTIONS(4004), + [anon_sym_thread_local] = ACTIONS(4004), + [anon_sym___thread] = ACTIONS(4004), + [anon_sym_const] = ACTIONS(4004), + [anon_sym_constexpr] = ACTIONS(4004), + [anon_sym_volatile] = ACTIONS(4004), + [anon_sym_restrict] = ACTIONS(4004), + [anon_sym___restrict__] = ACTIONS(4004), + [anon_sym__Atomic] = ACTIONS(4004), + [anon_sym__Noreturn] = ACTIONS(4004), + [anon_sym_noreturn] = ACTIONS(4004), + [anon_sym__Nonnull] = ACTIONS(4004), + [anon_sym_mutable] = ACTIONS(4004), + [anon_sym_constinit] = ACTIONS(4004), + [anon_sym_consteval] = ACTIONS(4004), + [anon_sym_alignas] = ACTIONS(4004), + [anon_sym__Alignas] = ACTIONS(4004), + [sym_primitive_type] = ACTIONS(4004), + [anon_sym_enum] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4004), + [anon_sym_struct] = ACTIONS(4004), + [anon_sym_union] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_switch] = ACTIONS(4004), + [anon_sym_case] = ACTIONS(4004), + [anon_sym_default] = ACTIONS(4004), + [anon_sym_while] = ACTIONS(4004), + [anon_sym_do] = ACTIONS(4004), + [anon_sym_for] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_goto] = ACTIONS(4004), + [anon_sym___try] = ACTIONS(4004), + [anon_sym___leave] = ACTIONS(4004), + [anon_sym_not] = ACTIONS(4004), + [anon_sym_compl] = ACTIONS(4004), + [anon_sym_DASH_DASH] = ACTIONS(4006), + [anon_sym_PLUS_PLUS] = ACTIONS(4006), + [anon_sym_sizeof] = ACTIONS(4004), + [anon_sym___alignof__] = ACTIONS(4004), + [anon_sym___alignof] = ACTIONS(4004), + [anon_sym__alignof] = ACTIONS(4004), + [anon_sym_alignof] = ACTIONS(4004), + [anon_sym__Alignof] = ACTIONS(4004), + [anon_sym_offsetof] = ACTIONS(4004), + [anon_sym__Generic] = ACTIONS(4004), + [anon_sym_typename] = ACTIONS(4004), + [anon_sym_asm] = ACTIONS(4004), + [anon_sym___asm__] = ACTIONS(4004), + [anon_sym___asm] = ACTIONS(4004), + [sym_number_literal] = ACTIONS(4006), + [anon_sym_L_SQUOTE] = ACTIONS(4006), + [anon_sym_u_SQUOTE] = ACTIONS(4006), + [anon_sym_U_SQUOTE] = ACTIONS(4006), + [anon_sym_u8_SQUOTE] = ACTIONS(4006), + [anon_sym_SQUOTE] = ACTIONS(4006), + [anon_sym_L_DQUOTE] = ACTIONS(4006), + [anon_sym_u_DQUOTE] = ACTIONS(4006), + [anon_sym_U_DQUOTE] = ACTIONS(4006), + [anon_sym_u8_DQUOTE] = ACTIONS(4006), + [anon_sym_DQUOTE] = ACTIONS(4006), + [sym_true] = ACTIONS(4004), + [sym_false] = ACTIONS(4004), + [anon_sym_NULL] = ACTIONS(4004), + [anon_sym_nullptr] = ACTIONS(4004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4004), + [anon_sym_decltype] = ACTIONS(4004), + [anon_sym_explicit] = ACTIONS(4004), + [anon_sym_export] = ACTIONS(4004), + [anon_sym_import] = ACTIONS(4004), + [anon_sym_template] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_try] = ACTIONS(4004), + [anon_sym_delete] = ACTIONS(4004), + [anon_sym_throw] = ACTIONS(4004), + [anon_sym_namespace] = ACTIONS(4004), + [anon_sym_static_assert] = ACTIONS(4004), + [anon_sym_concept] = ACTIONS(4004), + [anon_sym_co_return] = ACTIONS(4004), + [anon_sym_co_yield] = ACTIONS(4004), + [anon_sym_R_DQUOTE] = ACTIONS(4006), + [anon_sym_LR_DQUOTE] = ACTIONS(4006), + [anon_sym_uR_DQUOTE] = ACTIONS(4006), + [anon_sym_UR_DQUOTE] = ACTIONS(4006), + [anon_sym_u8R_DQUOTE] = ACTIONS(4006), + [anon_sym_co_await] = ACTIONS(4004), + [anon_sym_new] = ACTIONS(4004), + [anon_sym_requires] = ACTIONS(4004), + [anon_sym_CARET_CARET] = ACTIONS(4006), + [anon_sym_LBRACK_COLON] = ACTIONS(4006), + [sym_this] = ACTIONS(4004), }, - [STATE(945)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6922), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4870), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(4872), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(816)] = { + [sym_identifier] = ACTIONS(4246), + [aux_sym_preproc_include_token1] = ACTIONS(4246), + [aux_sym_preproc_def_token1] = ACTIONS(4246), + [aux_sym_preproc_if_token1] = ACTIONS(4246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4246), + [sym_preproc_directive] = ACTIONS(4246), + [anon_sym_LPAREN2] = ACTIONS(4248), + [anon_sym_BANG] = ACTIONS(4248), + [anon_sym_TILDE] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4246), + [anon_sym_STAR] = ACTIONS(4248), + [anon_sym_AMP_AMP] = ACTIONS(4248), + [anon_sym_AMP] = ACTIONS(4246), + [anon_sym_SEMI] = ACTIONS(4248), + [anon_sym___extension__] = ACTIONS(4246), + [anon_sym_typedef] = ACTIONS(4246), + [anon_sym_virtual] = ACTIONS(4246), + [anon_sym_extern] = ACTIONS(4246), + [anon_sym___attribute__] = ACTIONS(4246), + [anon_sym___attribute] = ACTIONS(4246), + [anon_sym_using] = ACTIONS(4246), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4248), + [anon_sym___declspec] = ACTIONS(4246), + [anon_sym___based] = ACTIONS(4246), + [anon_sym___cdecl] = ACTIONS(4246), + [anon_sym___clrcall] = ACTIONS(4246), + [anon_sym___stdcall] = ACTIONS(4246), + [anon_sym___fastcall] = ACTIONS(4246), + [anon_sym___thiscall] = ACTIONS(4246), + [anon_sym___vectorcall] = ACTIONS(4246), + [anon_sym_LBRACE] = ACTIONS(4248), + [anon_sym_RBRACE] = ACTIONS(4248), + [anon_sym_signed] = ACTIONS(4246), + [anon_sym_unsigned] = ACTIONS(4246), + [anon_sym_long] = ACTIONS(4246), + [anon_sym_short] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_static] = ACTIONS(4246), + [anon_sym_register] = ACTIONS(4246), + [anon_sym_inline] = ACTIONS(4246), + [anon_sym___inline] = ACTIONS(4246), + [anon_sym___inline__] = ACTIONS(4246), + [anon_sym___forceinline] = ACTIONS(4246), + [anon_sym_thread_local] = ACTIONS(4246), + [anon_sym___thread] = ACTIONS(4246), + [anon_sym_const] = ACTIONS(4246), + [anon_sym_constexpr] = ACTIONS(4246), + [anon_sym_volatile] = ACTIONS(4246), + [anon_sym_restrict] = ACTIONS(4246), + [anon_sym___restrict__] = ACTIONS(4246), + [anon_sym__Atomic] = ACTIONS(4246), + [anon_sym__Noreturn] = ACTIONS(4246), + [anon_sym_noreturn] = ACTIONS(4246), + [anon_sym__Nonnull] = ACTIONS(4246), + [anon_sym_mutable] = ACTIONS(4246), + [anon_sym_constinit] = ACTIONS(4246), + [anon_sym_consteval] = ACTIONS(4246), + [anon_sym_alignas] = ACTIONS(4246), + [anon_sym__Alignas] = ACTIONS(4246), + [sym_primitive_type] = ACTIONS(4246), + [anon_sym_enum] = ACTIONS(4246), + [anon_sym_class] = ACTIONS(4246), + [anon_sym_struct] = ACTIONS(4246), + [anon_sym_union] = ACTIONS(4246), + [anon_sym_if] = ACTIONS(4246), + [anon_sym_switch] = ACTIONS(4246), + [anon_sym_case] = ACTIONS(4246), + [anon_sym_default] = ACTIONS(4246), + [anon_sym_while] = ACTIONS(4246), + [anon_sym_do] = ACTIONS(4246), + [anon_sym_for] = ACTIONS(4246), + [anon_sym_return] = ACTIONS(4246), + [anon_sym_break] = ACTIONS(4246), + [anon_sym_continue] = ACTIONS(4246), + [anon_sym_goto] = ACTIONS(4246), + [anon_sym___try] = ACTIONS(4246), + [anon_sym___leave] = ACTIONS(4246), + [anon_sym_not] = ACTIONS(4246), + [anon_sym_compl] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4248), + [anon_sym_PLUS_PLUS] = ACTIONS(4248), + [anon_sym_sizeof] = ACTIONS(4246), + [anon_sym___alignof__] = ACTIONS(4246), + [anon_sym___alignof] = ACTIONS(4246), + [anon_sym__alignof] = ACTIONS(4246), + [anon_sym_alignof] = ACTIONS(4246), + [anon_sym__Alignof] = ACTIONS(4246), + [anon_sym_offsetof] = ACTIONS(4246), + [anon_sym__Generic] = ACTIONS(4246), + [anon_sym_typename] = ACTIONS(4246), + [anon_sym_asm] = ACTIONS(4246), + [anon_sym___asm__] = ACTIONS(4246), + [anon_sym___asm] = ACTIONS(4246), + [sym_number_literal] = ACTIONS(4248), + [anon_sym_L_SQUOTE] = ACTIONS(4248), + [anon_sym_u_SQUOTE] = ACTIONS(4248), + [anon_sym_U_SQUOTE] = ACTIONS(4248), + [anon_sym_u8_SQUOTE] = ACTIONS(4248), + [anon_sym_SQUOTE] = ACTIONS(4248), + [anon_sym_L_DQUOTE] = ACTIONS(4248), + [anon_sym_u_DQUOTE] = ACTIONS(4248), + [anon_sym_U_DQUOTE] = ACTIONS(4248), + [anon_sym_u8_DQUOTE] = ACTIONS(4248), + [anon_sym_DQUOTE] = ACTIONS(4248), + [sym_true] = ACTIONS(4246), + [sym_false] = ACTIONS(4246), + [anon_sym_NULL] = ACTIONS(4246), + [anon_sym_nullptr] = ACTIONS(4246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4246), + [anon_sym_decltype] = ACTIONS(4246), + [anon_sym_explicit] = ACTIONS(4246), + [anon_sym_export] = ACTIONS(4246), + [anon_sym_import] = ACTIONS(4246), + [anon_sym_template] = ACTIONS(4246), + [anon_sym_operator] = ACTIONS(4246), + [anon_sym_try] = ACTIONS(4246), + [anon_sym_delete] = ACTIONS(4246), + [anon_sym_throw] = ACTIONS(4246), + [anon_sym_namespace] = ACTIONS(4246), + [anon_sym_static_assert] = ACTIONS(4246), + [anon_sym_concept] = ACTIONS(4246), + [anon_sym_co_return] = ACTIONS(4246), + [anon_sym_co_yield] = ACTIONS(4246), + [anon_sym_R_DQUOTE] = ACTIONS(4248), + [anon_sym_LR_DQUOTE] = ACTIONS(4248), + [anon_sym_uR_DQUOTE] = ACTIONS(4248), + [anon_sym_UR_DQUOTE] = ACTIONS(4248), + [anon_sym_u8R_DQUOTE] = ACTIONS(4248), + [anon_sym_co_await] = ACTIONS(4246), + [anon_sym_new] = ACTIONS(4246), + [anon_sym_requires] = ACTIONS(4246), + [anon_sym_CARET_CARET] = ACTIONS(4248), + [anon_sym_LBRACK_COLON] = ACTIONS(4248), + [sym_this] = ACTIONS(4246), }, - [STATE(946)] = { - [sym_type_qualifier] = STATE(941), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6946), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(941), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4874), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4876), - [anon_sym_RBRACK] = ACTIONS(4878), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(817)] = { + [sym_identifier] = ACTIONS(4258), + [aux_sym_preproc_include_token1] = ACTIONS(4258), + [aux_sym_preproc_def_token1] = ACTIONS(4258), + [aux_sym_preproc_if_token1] = ACTIONS(4258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4258), + [sym_preproc_directive] = ACTIONS(4258), + [anon_sym_LPAREN2] = ACTIONS(4260), + [anon_sym_BANG] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4260), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_STAR] = ACTIONS(4260), + [anon_sym_AMP_AMP] = ACTIONS(4260), + [anon_sym_AMP] = ACTIONS(4258), + [anon_sym_SEMI] = ACTIONS(4260), + [anon_sym___extension__] = ACTIONS(4258), + [anon_sym_typedef] = ACTIONS(4258), + [anon_sym_virtual] = ACTIONS(4258), + [anon_sym_extern] = ACTIONS(4258), + [anon_sym___attribute__] = ACTIONS(4258), + [anon_sym___attribute] = ACTIONS(4258), + [anon_sym_using] = ACTIONS(4258), + [anon_sym_COLON_COLON] = ACTIONS(4260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4260), + [anon_sym___declspec] = ACTIONS(4258), + [anon_sym___based] = ACTIONS(4258), + [anon_sym___cdecl] = ACTIONS(4258), + [anon_sym___clrcall] = ACTIONS(4258), + [anon_sym___stdcall] = ACTIONS(4258), + [anon_sym___fastcall] = ACTIONS(4258), + [anon_sym___thiscall] = ACTIONS(4258), + [anon_sym___vectorcall] = ACTIONS(4258), + [anon_sym_LBRACE] = ACTIONS(4260), + [anon_sym_RBRACE] = ACTIONS(4260), + [anon_sym_signed] = ACTIONS(4258), + [anon_sym_unsigned] = ACTIONS(4258), + [anon_sym_long] = ACTIONS(4258), + [anon_sym_short] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_register] = ACTIONS(4258), + [anon_sym_inline] = ACTIONS(4258), + [anon_sym___inline] = ACTIONS(4258), + [anon_sym___inline__] = ACTIONS(4258), + [anon_sym___forceinline] = ACTIONS(4258), + [anon_sym_thread_local] = ACTIONS(4258), + [anon_sym___thread] = ACTIONS(4258), + [anon_sym_const] = ACTIONS(4258), + [anon_sym_constexpr] = ACTIONS(4258), + [anon_sym_volatile] = ACTIONS(4258), + [anon_sym_restrict] = ACTIONS(4258), + [anon_sym___restrict__] = ACTIONS(4258), + [anon_sym__Atomic] = ACTIONS(4258), + [anon_sym__Noreturn] = ACTIONS(4258), + [anon_sym_noreturn] = ACTIONS(4258), + [anon_sym__Nonnull] = ACTIONS(4258), + [anon_sym_mutable] = ACTIONS(4258), + [anon_sym_constinit] = ACTIONS(4258), + [anon_sym_consteval] = ACTIONS(4258), + [anon_sym_alignas] = ACTIONS(4258), + [anon_sym__Alignas] = ACTIONS(4258), + [sym_primitive_type] = ACTIONS(4258), + [anon_sym_enum] = ACTIONS(4258), + [anon_sym_class] = ACTIONS(4258), + [anon_sym_struct] = ACTIONS(4258), + [anon_sym_union] = ACTIONS(4258), + [anon_sym_if] = ACTIONS(4258), + [anon_sym_switch] = ACTIONS(4258), + [anon_sym_case] = ACTIONS(4258), + [anon_sym_default] = ACTIONS(4258), + [anon_sym_while] = ACTIONS(4258), + [anon_sym_do] = ACTIONS(4258), + [anon_sym_for] = ACTIONS(4258), + [anon_sym_return] = ACTIONS(4258), + [anon_sym_break] = ACTIONS(4258), + [anon_sym_continue] = ACTIONS(4258), + [anon_sym_goto] = ACTIONS(4258), + [anon_sym___try] = ACTIONS(4258), + [anon_sym___leave] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4258), + [anon_sym_compl] = ACTIONS(4258), + [anon_sym_DASH_DASH] = ACTIONS(4260), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_sizeof] = ACTIONS(4258), + [anon_sym___alignof__] = ACTIONS(4258), + [anon_sym___alignof] = ACTIONS(4258), + [anon_sym__alignof] = ACTIONS(4258), + [anon_sym_alignof] = ACTIONS(4258), + [anon_sym__Alignof] = ACTIONS(4258), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4258), + [anon_sym_typename] = ACTIONS(4258), + [anon_sym_asm] = ACTIONS(4258), + [anon_sym___asm__] = ACTIONS(4258), + [anon_sym___asm] = ACTIONS(4258), + [sym_number_literal] = ACTIONS(4260), + [anon_sym_L_SQUOTE] = ACTIONS(4260), + [anon_sym_u_SQUOTE] = ACTIONS(4260), + [anon_sym_U_SQUOTE] = ACTIONS(4260), + [anon_sym_u8_SQUOTE] = ACTIONS(4260), + [anon_sym_SQUOTE] = ACTIONS(4260), + [anon_sym_L_DQUOTE] = ACTIONS(4260), + [anon_sym_u_DQUOTE] = ACTIONS(4260), + [anon_sym_U_DQUOTE] = ACTIONS(4260), + [anon_sym_u8_DQUOTE] = ACTIONS(4260), + [anon_sym_DQUOTE] = ACTIONS(4260), + [sym_true] = ACTIONS(4258), + [sym_false] = ACTIONS(4258), + [anon_sym_NULL] = ACTIONS(4258), + [anon_sym_nullptr] = ACTIONS(4258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4258), + [anon_sym_decltype] = ACTIONS(4258), + [anon_sym_explicit] = ACTIONS(4258), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_import] = ACTIONS(4258), + [anon_sym_template] = ACTIONS(4258), + [anon_sym_operator] = ACTIONS(4258), + [anon_sym_try] = ACTIONS(4258), + [anon_sym_delete] = ACTIONS(4258), + [anon_sym_throw] = ACTIONS(4258), + [anon_sym_namespace] = ACTIONS(4258), + [anon_sym_static_assert] = ACTIONS(4258), + [anon_sym_concept] = ACTIONS(4258), + [anon_sym_co_return] = ACTIONS(4258), + [anon_sym_co_yield] = ACTIONS(4258), + [anon_sym_R_DQUOTE] = ACTIONS(4260), + [anon_sym_LR_DQUOTE] = ACTIONS(4260), + [anon_sym_uR_DQUOTE] = ACTIONS(4260), + [anon_sym_UR_DQUOTE] = ACTIONS(4260), + [anon_sym_u8R_DQUOTE] = ACTIONS(4260), + [anon_sym_co_await] = ACTIONS(4258), + [anon_sym_new] = ACTIONS(4258), + [anon_sym_requires] = ACTIONS(4258), + [anon_sym_CARET_CARET] = ACTIONS(4260), + [anon_sym_LBRACK_COLON] = ACTIONS(4260), + [sym_this] = ACTIONS(4258), }, - [STATE(947)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6939), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4880), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(4882), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(818)] = { + [sym_identifier] = ACTIONS(4262), + [aux_sym_preproc_include_token1] = ACTIONS(4262), + [aux_sym_preproc_def_token1] = ACTIONS(4262), + [aux_sym_preproc_if_token1] = ACTIONS(4262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4262), + [sym_preproc_directive] = ACTIONS(4262), + [anon_sym_LPAREN2] = ACTIONS(4264), + [anon_sym_BANG] = ACTIONS(4264), + [anon_sym_TILDE] = ACTIONS(4264), + [anon_sym_DASH] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4262), + [anon_sym_STAR] = ACTIONS(4264), + [anon_sym_AMP_AMP] = ACTIONS(4264), + [anon_sym_AMP] = ACTIONS(4262), + [anon_sym_SEMI] = ACTIONS(4264), + [anon_sym___extension__] = ACTIONS(4262), + [anon_sym_typedef] = ACTIONS(4262), + [anon_sym_virtual] = ACTIONS(4262), + [anon_sym_extern] = ACTIONS(4262), + [anon_sym___attribute__] = ACTIONS(4262), + [anon_sym___attribute] = ACTIONS(4262), + [anon_sym_using] = ACTIONS(4262), + [anon_sym_COLON_COLON] = ACTIONS(4264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4264), + [anon_sym___declspec] = ACTIONS(4262), + [anon_sym___based] = ACTIONS(4262), + [anon_sym___cdecl] = ACTIONS(4262), + [anon_sym___clrcall] = ACTIONS(4262), + [anon_sym___stdcall] = ACTIONS(4262), + [anon_sym___fastcall] = ACTIONS(4262), + [anon_sym___thiscall] = ACTIONS(4262), + [anon_sym___vectorcall] = ACTIONS(4262), + [anon_sym_LBRACE] = ACTIONS(4264), + [anon_sym_RBRACE] = ACTIONS(4264), + [anon_sym_signed] = ACTIONS(4262), + [anon_sym_unsigned] = ACTIONS(4262), + [anon_sym_long] = ACTIONS(4262), + [anon_sym_short] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_static] = ACTIONS(4262), + [anon_sym_register] = ACTIONS(4262), + [anon_sym_inline] = ACTIONS(4262), + [anon_sym___inline] = ACTIONS(4262), + [anon_sym___inline__] = ACTIONS(4262), + [anon_sym___forceinline] = ACTIONS(4262), + [anon_sym_thread_local] = ACTIONS(4262), + [anon_sym___thread] = ACTIONS(4262), + [anon_sym_const] = ACTIONS(4262), + [anon_sym_constexpr] = ACTIONS(4262), + [anon_sym_volatile] = ACTIONS(4262), + [anon_sym_restrict] = ACTIONS(4262), + [anon_sym___restrict__] = ACTIONS(4262), + [anon_sym__Atomic] = ACTIONS(4262), + [anon_sym__Noreturn] = ACTIONS(4262), + [anon_sym_noreturn] = ACTIONS(4262), + [anon_sym__Nonnull] = ACTIONS(4262), + [anon_sym_mutable] = ACTIONS(4262), + [anon_sym_constinit] = ACTIONS(4262), + [anon_sym_consteval] = ACTIONS(4262), + [anon_sym_alignas] = ACTIONS(4262), + [anon_sym__Alignas] = ACTIONS(4262), + [sym_primitive_type] = ACTIONS(4262), + [anon_sym_enum] = ACTIONS(4262), + [anon_sym_class] = ACTIONS(4262), + [anon_sym_struct] = ACTIONS(4262), + [anon_sym_union] = ACTIONS(4262), + [anon_sym_if] = ACTIONS(4262), + [anon_sym_switch] = ACTIONS(4262), + [anon_sym_case] = ACTIONS(4262), + [anon_sym_default] = ACTIONS(4262), + [anon_sym_while] = ACTIONS(4262), + [anon_sym_do] = ACTIONS(4262), + [anon_sym_for] = ACTIONS(4262), + [anon_sym_return] = ACTIONS(4262), + [anon_sym_break] = ACTIONS(4262), + [anon_sym_continue] = ACTIONS(4262), + [anon_sym_goto] = ACTIONS(4262), + [anon_sym___try] = ACTIONS(4262), + [anon_sym___leave] = ACTIONS(4262), + [anon_sym_not] = ACTIONS(4262), + [anon_sym_compl] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4264), + [anon_sym_PLUS_PLUS] = ACTIONS(4264), + [anon_sym_sizeof] = ACTIONS(4262), + [anon_sym___alignof__] = ACTIONS(4262), + [anon_sym___alignof] = ACTIONS(4262), + [anon_sym__alignof] = ACTIONS(4262), + [anon_sym_alignof] = ACTIONS(4262), + [anon_sym__Alignof] = ACTIONS(4262), + [anon_sym_offsetof] = ACTIONS(4262), + [anon_sym__Generic] = ACTIONS(4262), + [anon_sym_typename] = ACTIONS(4262), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [anon_sym___asm] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4264), + [anon_sym_u_SQUOTE] = ACTIONS(4264), + [anon_sym_U_SQUOTE] = ACTIONS(4264), + [anon_sym_u8_SQUOTE] = ACTIONS(4264), + [anon_sym_SQUOTE] = ACTIONS(4264), + [anon_sym_L_DQUOTE] = ACTIONS(4264), + [anon_sym_u_DQUOTE] = ACTIONS(4264), + [anon_sym_U_DQUOTE] = ACTIONS(4264), + [anon_sym_u8_DQUOTE] = ACTIONS(4264), + [anon_sym_DQUOTE] = ACTIONS(4264), + [sym_true] = ACTIONS(4262), + [sym_false] = ACTIONS(4262), + [anon_sym_NULL] = ACTIONS(4262), + [anon_sym_nullptr] = ACTIONS(4262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4262), + [anon_sym_decltype] = ACTIONS(4262), + [anon_sym_explicit] = ACTIONS(4262), + [anon_sym_export] = ACTIONS(4262), + [anon_sym_import] = ACTIONS(4262), + [anon_sym_template] = ACTIONS(4262), + [anon_sym_operator] = ACTIONS(4262), + [anon_sym_try] = ACTIONS(4262), + [anon_sym_delete] = ACTIONS(4262), + [anon_sym_throw] = ACTIONS(4262), + [anon_sym_namespace] = ACTIONS(4262), + [anon_sym_static_assert] = ACTIONS(4262), + [anon_sym_concept] = ACTIONS(4262), + [anon_sym_co_return] = ACTIONS(4262), + [anon_sym_co_yield] = ACTIONS(4262), + [anon_sym_R_DQUOTE] = ACTIONS(4264), + [anon_sym_LR_DQUOTE] = ACTIONS(4264), + [anon_sym_uR_DQUOTE] = ACTIONS(4264), + [anon_sym_UR_DQUOTE] = ACTIONS(4264), + [anon_sym_u8R_DQUOTE] = ACTIONS(4264), + [anon_sym_co_await] = ACTIONS(4262), + [anon_sym_new] = ACTIONS(4262), + [anon_sym_requires] = ACTIONS(4262), + [anon_sym_CARET_CARET] = ACTIONS(4264), + [anon_sym_LBRACK_COLON] = ACTIONS(4264), + [sym_this] = ACTIONS(4262), }, - [STATE(948)] = { - [sym_type_qualifier] = STATE(950), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6941), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(950), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4886), - [anon_sym_RBRACK] = ACTIONS(4888), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(819)] = { + [sym_identifier] = ACTIONS(4266), + [aux_sym_preproc_include_token1] = ACTIONS(4266), + [aux_sym_preproc_def_token1] = ACTIONS(4266), + [aux_sym_preproc_if_token1] = ACTIONS(4266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4266), + [sym_preproc_directive] = ACTIONS(4266), + [anon_sym_LPAREN2] = ACTIONS(4268), + [anon_sym_BANG] = ACTIONS(4268), + [anon_sym_TILDE] = ACTIONS(4268), + [anon_sym_DASH] = ACTIONS(4266), + [anon_sym_PLUS] = ACTIONS(4266), + [anon_sym_STAR] = ACTIONS(4268), + [anon_sym_AMP_AMP] = ACTIONS(4268), + [anon_sym_AMP] = ACTIONS(4266), + [anon_sym_SEMI] = ACTIONS(4268), + [anon_sym___extension__] = ACTIONS(4266), + [anon_sym_typedef] = ACTIONS(4266), + [anon_sym_virtual] = ACTIONS(4266), + [anon_sym_extern] = ACTIONS(4266), + [anon_sym___attribute__] = ACTIONS(4266), + [anon_sym___attribute] = ACTIONS(4266), + [anon_sym_using] = ACTIONS(4266), + [anon_sym_COLON_COLON] = ACTIONS(4268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4268), + [anon_sym___declspec] = ACTIONS(4266), + [anon_sym___based] = ACTIONS(4266), + [anon_sym___cdecl] = ACTIONS(4266), + [anon_sym___clrcall] = ACTIONS(4266), + [anon_sym___stdcall] = ACTIONS(4266), + [anon_sym___fastcall] = ACTIONS(4266), + [anon_sym___thiscall] = ACTIONS(4266), + [anon_sym___vectorcall] = ACTIONS(4266), + [anon_sym_LBRACE] = ACTIONS(4268), + [anon_sym_RBRACE] = ACTIONS(4268), + [anon_sym_signed] = ACTIONS(4266), + [anon_sym_unsigned] = ACTIONS(4266), + [anon_sym_long] = ACTIONS(4266), + [anon_sym_short] = ACTIONS(4266), + [anon_sym_LBRACK] = ACTIONS(4266), + [anon_sym_static] = ACTIONS(4266), + [anon_sym_register] = ACTIONS(4266), + [anon_sym_inline] = ACTIONS(4266), + [anon_sym___inline] = ACTIONS(4266), + [anon_sym___inline__] = ACTIONS(4266), + [anon_sym___forceinline] = ACTIONS(4266), + [anon_sym_thread_local] = ACTIONS(4266), + [anon_sym___thread] = ACTIONS(4266), + [anon_sym_const] = ACTIONS(4266), + [anon_sym_constexpr] = ACTIONS(4266), + [anon_sym_volatile] = ACTIONS(4266), + [anon_sym_restrict] = ACTIONS(4266), + [anon_sym___restrict__] = ACTIONS(4266), + [anon_sym__Atomic] = ACTIONS(4266), + [anon_sym__Noreturn] = ACTIONS(4266), + [anon_sym_noreturn] = ACTIONS(4266), + [anon_sym__Nonnull] = ACTIONS(4266), + [anon_sym_mutable] = ACTIONS(4266), + [anon_sym_constinit] = ACTIONS(4266), + [anon_sym_consteval] = ACTIONS(4266), + [anon_sym_alignas] = ACTIONS(4266), + [anon_sym__Alignas] = ACTIONS(4266), + [sym_primitive_type] = ACTIONS(4266), + [anon_sym_enum] = ACTIONS(4266), + [anon_sym_class] = ACTIONS(4266), + [anon_sym_struct] = ACTIONS(4266), + [anon_sym_union] = ACTIONS(4266), + [anon_sym_if] = ACTIONS(4266), + [anon_sym_switch] = ACTIONS(4266), + [anon_sym_case] = ACTIONS(4266), + [anon_sym_default] = ACTIONS(4266), + [anon_sym_while] = ACTIONS(4266), + [anon_sym_do] = ACTIONS(4266), + [anon_sym_for] = ACTIONS(4266), + [anon_sym_return] = ACTIONS(4266), + [anon_sym_break] = ACTIONS(4266), + [anon_sym_continue] = ACTIONS(4266), + [anon_sym_goto] = ACTIONS(4266), + [anon_sym___try] = ACTIONS(4266), + [anon_sym___leave] = ACTIONS(4266), + [anon_sym_not] = ACTIONS(4266), + [anon_sym_compl] = ACTIONS(4266), + [anon_sym_DASH_DASH] = ACTIONS(4268), + [anon_sym_PLUS_PLUS] = ACTIONS(4268), + [anon_sym_sizeof] = ACTIONS(4266), + [anon_sym___alignof__] = ACTIONS(4266), + [anon_sym___alignof] = ACTIONS(4266), + [anon_sym__alignof] = ACTIONS(4266), + [anon_sym_alignof] = ACTIONS(4266), + [anon_sym__Alignof] = ACTIONS(4266), + [anon_sym_offsetof] = ACTIONS(4266), + [anon_sym__Generic] = ACTIONS(4266), + [anon_sym_typename] = ACTIONS(4266), + [anon_sym_asm] = ACTIONS(4266), + [anon_sym___asm__] = ACTIONS(4266), + [anon_sym___asm] = ACTIONS(4266), + [sym_number_literal] = ACTIONS(4268), + [anon_sym_L_SQUOTE] = ACTIONS(4268), + [anon_sym_u_SQUOTE] = ACTIONS(4268), + [anon_sym_U_SQUOTE] = ACTIONS(4268), + [anon_sym_u8_SQUOTE] = ACTIONS(4268), + [anon_sym_SQUOTE] = ACTIONS(4268), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4266), + [sym_false] = ACTIONS(4266), + [anon_sym_NULL] = ACTIONS(4266), + [anon_sym_nullptr] = ACTIONS(4266), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4266), + [anon_sym_decltype] = ACTIONS(4266), + [anon_sym_explicit] = ACTIONS(4266), + [anon_sym_export] = ACTIONS(4266), + [anon_sym_import] = ACTIONS(4266), + [anon_sym_template] = ACTIONS(4266), + [anon_sym_operator] = ACTIONS(4266), + [anon_sym_try] = ACTIONS(4266), + [anon_sym_delete] = ACTIONS(4266), + [anon_sym_throw] = ACTIONS(4266), + [anon_sym_namespace] = ACTIONS(4266), + [anon_sym_static_assert] = ACTIONS(4266), + [anon_sym_concept] = ACTIONS(4266), + [anon_sym_co_return] = ACTIONS(4266), + [anon_sym_co_yield] = ACTIONS(4266), + [anon_sym_R_DQUOTE] = ACTIONS(4268), + [anon_sym_LR_DQUOTE] = ACTIONS(4268), + [anon_sym_uR_DQUOTE] = ACTIONS(4268), + [anon_sym_UR_DQUOTE] = ACTIONS(4268), + [anon_sym_u8R_DQUOTE] = ACTIONS(4268), + [anon_sym_co_await] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_requires] = ACTIONS(4266), + [anon_sym_CARET_CARET] = ACTIONS(4268), + [anon_sym_LBRACK_COLON] = ACTIONS(4268), + [sym_this] = ACTIONS(4266), }, - [STATE(949)] = { - [sym_type_qualifier] = STATE(951), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6944), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(951), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4890), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4892), - [anon_sym_RBRACK] = ACTIONS(4894), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(820)] = { + [sym_identifier] = ACTIONS(4008), + [aux_sym_preproc_include_token1] = ACTIONS(4008), + [aux_sym_preproc_def_token1] = ACTIONS(4008), + [aux_sym_preproc_if_token1] = ACTIONS(4008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4008), + [sym_preproc_directive] = ACTIONS(4008), + [anon_sym_LPAREN2] = ACTIONS(4010), + [anon_sym_BANG] = ACTIONS(4010), + [anon_sym_TILDE] = ACTIONS(4010), + [anon_sym_DASH] = ACTIONS(4008), + [anon_sym_PLUS] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4010), + [anon_sym_AMP_AMP] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4008), + [anon_sym_SEMI] = ACTIONS(4010), + [anon_sym___extension__] = ACTIONS(4008), + [anon_sym_typedef] = ACTIONS(4008), + [anon_sym_virtual] = ACTIONS(4008), + [anon_sym_extern] = ACTIONS(4008), + [anon_sym___attribute__] = ACTIONS(4008), + [anon_sym___attribute] = ACTIONS(4008), + [anon_sym_using] = ACTIONS(4008), + [anon_sym_COLON_COLON] = ACTIONS(4010), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4010), + [anon_sym___declspec] = ACTIONS(4008), + [anon_sym___based] = ACTIONS(4008), + [anon_sym___cdecl] = ACTIONS(4008), + [anon_sym___clrcall] = ACTIONS(4008), + [anon_sym___stdcall] = ACTIONS(4008), + [anon_sym___fastcall] = ACTIONS(4008), + [anon_sym___thiscall] = ACTIONS(4008), + [anon_sym___vectorcall] = ACTIONS(4008), + [anon_sym_LBRACE] = ACTIONS(4010), + [anon_sym_RBRACE] = ACTIONS(4010), + [anon_sym_signed] = ACTIONS(4008), + [anon_sym_unsigned] = ACTIONS(4008), + [anon_sym_long] = ACTIONS(4008), + [anon_sym_short] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(4008), + [anon_sym_static] = ACTIONS(4008), + [anon_sym_register] = ACTIONS(4008), + [anon_sym_inline] = ACTIONS(4008), + [anon_sym___inline] = ACTIONS(4008), + [anon_sym___inline__] = ACTIONS(4008), + [anon_sym___forceinline] = ACTIONS(4008), + [anon_sym_thread_local] = ACTIONS(4008), + [anon_sym___thread] = ACTIONS(4008), + [anon_sym_const] = ACTIONS(4008), + [anon_sym_constexpr] = ACTIONS(4008), + [anon_sym_volatile] = ACTIONS(4008), + [anon_sym_restrict] = ACTIONS(4008), + [anon_sym___restrict__] = ACTIONS(4008), + [anon_sym__Atomic] = ACTIONS(4008), + [anon_sym__Noreturn] = ACTIONS(4008), + [anon_sym_noreturn] = ACTIONS(4008), + [anon_sym__Nonnull] = ACTIONS(4008), + [anon_sym_mutable] = ACTIONS(4008), + [anon_sym_constinit] = ACTIONS(4008), + [anon_sym_consteval] = ACTIONS(4008), + [anon_sym_alignas] = ACTIONS(4008), + [anon_sym__Alignas] = ACTIONS(4008), + [sym_primitive_type] = ACTIONS(4008), + [anon_sym_enum] = ACTIONS(4008), + [anon_sym_class] = ACTIONS(4008), + [anon_sym_struct] = ACTIONS(4008), + [anon_sym_union] = ACTIONS(4008), + [anon_sym_if] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4008), + [anon_sym_case] = ACTIONS(4008), + [anon_sym_default] = ACTIONS(4008), + [anon_sym_while] = ACTIONS(4008), + [anon_sym_do] = ACTIONS(4008), + [anon_sym_for] = ACTIONS(4008), + [anon_sym_return] = ACTIONS(4008), + [anon_sym_break] = ACTIONS(4008), + [anon_sym_continue] = ACTIONS(4008), + [anon_sym_goto] = ACTIONS(4008), + [anon_sym___try] = ACTIONS(4008), + [anon_sym___leave] = ACTIONS(4008), + [anon_sym_not] = ACTIONS(4008), + [anon_sym_compl] = ACTIONS(4008), + [anon_sym_DASH_DASH] = ACTIONS(4010), + [anon_sym_PLUS_PLUS] = ACTIONS(4010), + [anon_sym_sizeof] = ACTIONS(4008), + [anon_sym___alignof__] = ACTIONS(4008), + [anon_sym___alignof] = ACTIONS(4008), + [anon_sym__alignof] = ACTIONS(4008), + [anon_sym_alignof] = ACTIONS(4008), + [anon_sym__Alignof] = ACTIONS(4008), + [anon_sym_offsetof] = ACTIONS(4008), + [anon_sym__Generic] = ACTIONS(4008), + [anon_sym_typename] = ACTIONS(4008), + [anon_sym_asm] = ACTIONS(4008), + [anon_sym___asm__] = ACTIONS(4008), + [anon_sym___asm] = ACTIONS(4008), + [sym_number_literal] = ACTIONS(4010), + [anon_sym_L_SQUOTE] = ACTIONS(4010), + [anon_sym_u_SQUOTE] = ACTIONS(4010), + [anon_sym_U_SQUOTE] = ACTIONS(4010), + [anon_sym_u8_SQUOTE] = ACTIONS(4010), + [anon_sym_SQUOTE] = ACTIONS(4010), + [anon_sym_L_DQUOTE] = ACTIONS(4010), + [anon_sym_u_DQUOTE] = ACTIONS(4010), + [anon_sym_U_DQUOTE] = ACTIONS(4010), + [anon_sym_u8_DQUOTE] = ACTIONS(4010), + [anon_sym_DQUOTE] = ACTIONS(4010), + [sym_true] = ACTIONS(4008), + [sym_false] = ACTIONS(4008), + [anon_sym_NULL] = ACTIONS(4008), + [anon_sym_nullptr] = ACTIONS(4008), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4008), + [anon_sym_decltype] = ACTIONS(4008), + [anon_sym_explicit] = ACTIONS(4008), + [anon_sym_export] = ACTIONS(4008), + [anon_sym_import] = ACTIONS(4008), + [anon_sym_template] = ACTIONS(4008), + [anon_sym_operator] = ACTIONS(4008), + [anon_sym_try] = ACTIONS(4008), + [anon_sym_delete] = ACTIONS(4008), + [anon_sym_throw] = ACTIONS(4008), + [anon_sym_namespace] = ACTIONS(4008), + [anon_sym_static_assert] = ACTIONS(4008), + [anon_sym_concept] = ACTIONS(4008), + [anon_sym_co_return] = ACTIONS(4008), + [anon_sym_co_yield] = ACTIONS(4008), + [anon_sym_R_DQUOTE] = ACTIONS(4010), + [anon_sym_LR_DQUOTE] = ACTIONS(4010), + [anon_sym_uR_DQUOTE] = ACTIONS(4010), + [anon_sym_UR_DQUOTE] = ACTIONS(4010), + [anon_sym_u8R_DQUOTE] = ACTIONS(4010), + [anon_sym_co_await] = ACTIONS(4008), + [anon_sym_new] = ACTIONS(4008), + [anon_sym_requires] = ACTIONS(4008), + [anon_sym_CARET_CARET] = ACTIONS(4010), + [anon_sym_LBRACK_COLON] = ACTIONS(4010), + [sym_this] = ACTIONS(4008), }, - [STATE(950)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6974), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4896), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(4898), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(821)] = { + [sym_identifier] = ACTIONS(4012), + [aux_sym_preproc_include_token1] = ACTIONS(4012), + [aux_sym_preproc_def_token1] = ACTIONS(4012), + [aux_sym_preproc_if_token1] = ACTIONS(4012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4012), + [sym_preproc_directive] = ACTIONS(4012), + [anon_sym_LPAREN2] = ACTIONS(4014), + [anon_sym_BANG] = ACTIONS(4014), + [anon_sym_TILDE] = ACTIONS(4014), + [anon_sym_DASH] = ACTIONS(4012), + [anon_sym_PLUS] = ACTIONS(4012), + [anon_sym_STAR] = ACTIONS(4014), + [anon_sym_AMP_AMP] = ACTIONS(4014), + [anon_sym_AMP] = ACTIONS(4012), + [anon_sym_SEMI] = ACTIONS(4014), + [anon_sym___extension__] = ACTIONS(4012), + [anon_sym_typedef] = ACTIONS(4012), + [anon_sym_virtual] = ACTIONS(4012), + [anon_sym_extern] = ACTIONS(4012), + [anon_sym___attribute__] = ACTIONS(4012), + [anon_sym___attribute] = ACTIONS(4012), + [anon_sym_using] = ACTIONS(4012), + [anon_sym_COLON_COLON] = ACTIONS(4014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4014), + [anon_sym___declspec] = ACTIONS(4012), + [anon_sym___based] = ACTIONS(4012), + [anon_sym___cdecl] = ACTIONS(4012), + [anon_sym___clrcall] = ACTIONS(4012), + [anon_sym___stdcall] = ACTIONS(4012), + [anon_sym___fastcall] = ACTIONS(4012), + [anon_sym___thiscall] = ACTIONS(4012), + [anon_sym___vectorcall] = ACTIONS(4012), + [anon_sym_LBRACE] = ACTIONS(4014), + [anon_sym_RBRACE] = ACTIONS(4014), + [anon_sym_signed] = ACTIONS(4012), + [anon_sym_unsigned] = ACTIONS(4012), + [anon_sym_long] = ACTIONS(4012), + [anon_sym_short] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_static] = ACTIONS(4012), + [anon_sym_register] = ACTIONS(4012), + [anon_sym_inline] = ACTIONS(4012), + [anon_sym___inline] = ACTIONS(4012), + [anon_sym___inline__] = ACTIONS(4012), + [anon_sym___forceinline] = ACTIONS(4012), + [anon_sym_thread_local] = ACTIONS(4012), + [anon_sym___thread] = ACTIONS(4012), + [anon_sym_const] = ACTIONS(4012), + [anon_sym_constexpr] = ACTIONS(4012), + [anon_sym_volatile] = ACTIONS(4012), + [anon_sym_restrict] = ACTIONS(4012), + [anon_sym___restrict__] = ACTIONS(4012), + [anon_sym__Atomic] = ACTIONS(4012), + [anon_sym__Noreturn] = ACTIONS(4012), + [anon_sym_noreturn] = ACTIONS(4012), + [anon_sym__Nonnull] = ACTIONS(4012), + [anon_sym_mutable] = ACTIONS(4012), + [anon_sym_constinit] = ACTIONS(4012), + [anon_sym_consteval] = ACTIONS(4012), + [anon_sym_alignas] = ACTIONS(4012), + [anon_sym__Alignas] = ACTIONS(4012), + [sym_primitive_type] = ACTIONS(4012), + [anon_sym_enum] = ACTIONS(4012), + [anon_sym_class] = ACTIONS(4012), + [anon_sym_struct] = ACTIONS(4012), + [anon_sym_union] = ACTIONS(4012), + [anon_sym_if] = ACTIONS(4012), + [anon_sym_switch] = ACTIONS(4012), + [anon_sym_case] = ACTIONS(4012), + [anon_sym_default] = ACTIONS(4012), + [anon_sym_while] = ACTIONS(4012), + [anon_sym_do] = ACTIONS(4012), + [anon_sym_for] = ACTIONS(4012), + [anon_sym_return] = ACTIONS(4012), + [anon_sym_break] = ACTIONS(4012), + [anon_sym_continue] = ACTIONS(4012), + [anon_sym_goto] = ACTIONS(4012), + [anon_sym___try] = ACTIONS(4012), + [anon_sym___leave] = ACTIONS(4012), + [anon_sym_not] = ACTIONS(4012), + [anon_sym_compl] = ACTIONS(4012), + [anon_sym_DASH_DASH] = ACTIONS(4014), + [anon_sym_PLUS_PLUS] = ACTIONS(4014), + [anon_sym_sizeof] = ACTIONS(4012), + [anon_sym___alignof__] = ACTIONS(4012), + [anon_sym___alignof] = ACTIONS(4012), + [anon_sym__alignof] = ACTIONS(4012), + [anon_sym_alignof] = ACTIONS(4012), + [anon_sym__Alignof] = ACTIONS(4012), + [anon_sym_offsetof] = ACTIONS(4012), + [anon_sym__Generic] = ACTIONS(4012), + [anon_sym_typename] = ACTIONS(4012), + [anon_sym_asm] = ACTIONS(4012), + [anon_sym___asm__] = ACTIONS(4012), + [anon_sym___asm] = ACTIONS(4012), + [sym_number_literal] = ACTIONS(4014), + [anon_sym_L_SQUOTE] = ACTIONS(4014), + [anon_sym_u_SQUOTE] = ACTIONS(4014), + [anon_sym_U_SQUOTE] = ACTIONS(4014), + [anon_sym_u8_SQUOTE] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4014), + [anon_sym_L_DQUOTE] = ACTIONS(4014), + [anon_sym_u_DQUOTE] = ACTIONS(4014), + [anon_sym_U_DQUOTE] = ACTIONS(4014), + [anon_sym_u8_DQUOTE] = ACTIONS(4014), + [anon_sym_DQUOTE] = ACTIONS(4014), + [sym_true] = ACTIONS(4012), + [sym_false] = ACTIONS(4012), + [anon_sym_NULL] = ACTIONS(4012), + [anon_sym_nullptr] = ACTIONS(4012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4012), + [anon_sym_decltype] = ACTIONS(4012), + [anon_sym_explicit] = ACTIONS(4012), + [anon_sym_export] = ACTIONS(4012), + [anon_sym_import] = ACTIONS(4012), + [anon_sym_template] = ACTIONS(4012), + [anon_sym_operator] = ACTIONS(4012), + [anon_sym_try] = ACTIONS(4012), + [anon_sym_delete] = ACTIONS(4012), + [anon_sym_throw] = ACTIONS(4012), + [anon_sym_namespace] = ACTIONS(4012), + [anon_sym_static_assert] = ACTIONS(4012), + [anon_sym_concept] = ACTIONS(4012), + [anon_sym_co_return] = ACTIONS(4012), + [anon_sym_co_yield] = ACTIONS(4012), + [anon_sym_R_DQUOTE] = ACTIONS(4014), + [anon_sym_LR_DQUOTE] = ACTIONS(4014), + [anon_sym_uR_DQUOTE] = ACTIONS(4014), + [anon_sym_UR_DQUOTE] = ACTIONS(4014), + [anon_sym_u8R_DQUOTE] = ACTIONS(4014), + [anon_sym_co_await] = ACTIONS(4012), + [anon_sym_new] = ACTIONS(4012), + [anon_sym_requires] = ACTIONS(4012), + [anon_sym_CARET_CARET] = ACTIONS(4014), + [anon_sym_LBRACK_COLON] = ACTIONS(4014), + [sym_this] = ACTIONS(4012), }, - [STATE(951)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6976), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4900), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(4902), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(822)] = { + [sym_identifier] = ACTIONS(3996), + [aux_sym_preproc_include_token1] = ACTIONS(3996), + [aux_sym_preproc_def_token1] = ACTIONS(3996), + [aux_sym_preproc_if_token1] = ACTIONS(3996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3996), + [sym_preproc_directive] = ACTIONS(3996), + [anon_sym_LPAREN2] = ACTIONS(3998), + [anon_sym_BANG] = ACTIONS(3998), + [anon_sym_TILDE] = ACTIONS(3998), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_PLUS] = ACTIONS(3996), + [anon_sym_STAR] = ACTIONS(3998), + [anon_sym_AMP_AMP] = ACTIONS(3998), + [anon_sym_AMP] = ACTIONS(3996), + [anon_sym_SEMI] = ACTIONS(3998), + [anon_sym___extension__] = ACTIONS(3996), + [anon_sym_typedef] = ACTIONS(3996), + [anon_sym_virtual] = ACTIONS(3996), + [anon_sym_extern] = ACTIONS(3996), + [anon_sym___attribute__] = ACTIONS(3996), + [anon_sym___attribute] = ACTIONS(3996), + [anon_sym_using] = ACTIONS(3996), + [anon_sym_COLON_COLON] = ACTIONS(3998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3998), + [anon_sym___declspec] = ACTIONS(3996), + [anon_sym___based] = ACTIONS(3996), + [anon_sym___cdecl] = ACTIONS(3996), + [anon_sym___clrcall] = ACTIONS(3996), + [anon_sym___stdcall] = ACTIONS(3996), + [anon_sym___fastcall] = ACTIONS(3996), + [anon_sym___thiscall] = ACTIONS(3996), + [anon_sym___vectorcall] = ACTIONS(3996), + [anon_sym_LBRACE] = ACTIONS(3998), + [anon_sym_RBRACE] = ACTIONS(3998), + [anon_sym_signed] = ACTIONS(3996), + [anon_sym_unsigned] = ACTIONS(3996), + [anon_sym_long] = ACTIONS(3996), + [anon_sym_short] = ACTIONS(3996), + [anon_sym_LBRACK] = ACTIONS(3996), + [anon_sym_static] = ACTIONS(3996), + [anon_sym_register] = ACTIONS(3996), + [anon_sym_inline] = ACTIONS(3996), + [anon_sym___inline] = ACTIONS(3996), + [anon_sym___inline__] = ACTIONS(3996), + [anon_sym___forceinline] = ACTIONS(3996), + [anon_sym_thread_local] = ACTIONS(3996), + [anon_sym___thread] = ACTIONS(3996), + [anon_sym_const] = ACTIONS(3996), + [anon_sym_constexpr] = ACTIONS(3996), + [anon_sym_volatile] = ACTIONS(3996), + [anon_sym_restrict] = ACTIONS(3996), + [anon_sym___restrict__] = ACTIONS(3996), + [anon_sym__Atomic] = ACTIONS(3996), + [anon_sym__Noreturn] = ACTIONS(3996), + [anon_sym_noreturn] = ACTIONS(3996), + [anon_sym__Nonnull] = ACTIONS(3996), + [anon_sym_mutable] = ACTIONS(3996), + [anon_sym_constinit] = ACTIONS(3996), + [anon_sym_consteval] = ACTIONS(3996), + [anon_sym_alignas] = ACTIONS(3996), + [anon_sym__Alignas] = ACTIONS(3996), + [sym_primitive_type] = ACTIONS(3996), + [anon_sym_enum] = ACTIONS(3996), + [anon_sym_class] = ACTIONS(3996), + [anon_sym_struct] = ACTIONS(3996), + [anon_sym_union] = ACTIONS(3996), + [anon_sym_if] = ACTIONS(3996), + [anon_sym_switch] = ACTIONS(3996), + [anon_sym_case] = ACTIONS(3996), + [anon_sym_default] = ACTIONS(3996), + [anon_sym_while] = ACTIONS(3996), + [anon_sym_do] = ACTIONS(3996), + [anon_sym_for] = ACTIONS(3996), + [anon_sym_return] = ACTIONS(3996), + [anon_sym_break] = ACTIONS(3996), + [anon_sym_continue] = ACTIONS(3996), + [anon_sym_goto] = ACTIONS(3996), + [anon_sym___try] = ACTIONS(3996), + [anon_sym___leave] = ACTIONS(3996), + [anon_sym_not] = ACTIONS(3996), + [anon_sym_compl] = ACTIONS(3996), + [anon_sym_DASH_DASH] = ACTIONS(3998), + [anon_sym_PLUS_PLUS] = ACTIONS(3998), + [anon_sym_sizeof] = ACTIONS(3996), + [anon_sym___alignof__] = ACTIONS(3996), + [anon_sym___alignof] = ACTIONS(3996), + [anon_sym__alignof] = ACTIONS(3996), + [anon_sym_alignof] = ACTIONS(3996), + [anon_sym__Alignof] = ACTIONS(3996), + [anon_sym_offsetof] = ACTIONS(3996), + [anon_sym__Generic] = ACTIONS(3996), + [anon_sym_typename] = ACTIONS(3996), + [anon_sym_asm] = ACTIONS(3996), + [anon_sym___asm__] = ACTIONS(3996), + [anon_sym___asm] = ACTIONS(3996), + [sym_number_literal] = ACTIONS(3998), + [anon_sym_L_SQUOTE] = ACTIONS(3998), + [anon_sym_u_SQUOTE] = ACTIONS(3998), + [anon_sym_U_SQUOTE] = ACTIONS(3998), + [anon_sym_u8_SQUOTE] = ACTIONS(3998), + [anon_sym_SQUOTE] = ACTIONS(3998), + [anon_sym_L_DQUOTE] = ACTIONS(3998), + [anon_sym_u_DQUOTE] = ACTIONS(3998), + [anon_sym_U_DQUOTE] = ACTIONS(3998), + [anon_sym_u8_DQUOTE] = ACTIONS(3998), + [anon_sym_DQUOTE] = ACTIONS(3998), + [sym_true] = ACTIONS(3996), + [sym_false] = ACTIONS(3996), + [anon_sym_NULL] = ACTIONS(3996), + [anon_sym_nullptr] = ACTIONS(3996), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3996), + [anon_sym_decltype] = ACTIONS(3996), + [anon_sym_explicit] = ACTIONS(3996), + [anon_sym_export] = ACTIONS(3996), + [anon_sym_import] = ACTIONS(3996), + [anon_sym_template] = ACTIONS(3996), + [anon_sym_operator] = ACTIONS(3996), + [anon_sym_try] = ACTIONS(3996), + [anon_sym_delete] = ACTIONS(3996), + [anon_sym_throw] = ACTIONS(3996), + [anon_sym_namespace] = ACTIONS(3996), + [anon_sym_static_assert] = ACTIONS(3996), + [anon_sym_concept] = ACTIONS(3996), + [anon_sym_co_return] = ACTIONS(3996), + [anon_sym_co_yield] = ACTIONS(3996), + [anon_sym_R_DQUOTE] = ACTIONS(3998), + [anon_sym_LR_DQUOTE] = ACTIONS(3998), + [anon_sym_uR_DQUOTE] = ACTIONS(3998), + [anon_sym_UR_DQUOTE] = ACTIONS(3998), + [anon_sym_u8R_DQUOTE] = ACTIONS(3998), + [anon_sym_co_await] = ACTIONS(3996), + [anon_sym_new] = ACTIONS(3996), + [anon_sym_requires] = ACTIONS(3996), + [anon_sym_CARET_CARET] = ACTIONS(3998), + [anon_sym_LBRACK_COLON] = ACTIONS(3998), + [sym_this] = ACTIONS(3996), }, - [STATE(952)] = { - [sym_type_qualifier] = STATE(942), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(7028), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(942), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4904), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4906), - [anon_sym_RBRACK] = ACTIONS(4908), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(823)] = { + [sym_identifier] = ACTIONS(4270), + [aux_sym_preproc_include_token1] = ACTIONS(4270), + [aux_sym_preproc_def_token1] = ACTIONS(4270), + [aux_sym_preproc_if_token1] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), + [sym_preproc_directive] = ACTIONS(4270), + [anon_sym_LPAREN2] = ACTIONS(4272), + [anon_sym_BANG] = ACTIONS(4272), + [anon_sym_TILDE] = ACTIONS(4272), + [anon_sym_DASH] = ACTIONS(4270), + [anon_sym_PLUS] = ACTIONS(4270), + [anon_sym_STAR] = ACTIONS(4272), + [anon_sym_AMP_AMP] = ACTIONS(4272), + [anon_sym_AMP] = ACTIONS(4270), + [anon_sym_SEMI] = ACTIONS(4272), + [anon_sym___extension__] = ACTIONS(4270), + [anon_sym_typedef] = ACTIONS(4270), + [anon_sym_virtual] = ACTIONS(4270), + [anon_sym_extern] = ACTIONS(4270), + [anon_sym___attribute__] = ACTIONS(4270), + [anon_sym___attribute] = ACTIONS(4270), + [anon_sym_using] = ACTIONS(4270), + [anon_sym_COLON_COLON] = ACTIONS(4272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), + [anon_sym___declspec] = ACTIONS(4270), + [anon_sym___based] = ACTIONS(4270), + [anon_sym___cdecl] = ACTIONS(4270), + [anon_sym___clrcall] = ACTIONS(4270), + [anon_sym___stdcall] = ACTIONS(4270), + [anon_sym___fastcall] = ACTIONS(4270), + [anon_sym___thiscall] = ACTIONS(4270), + [anon_sym___vectorcall] = ACTIONS(4270), + [anon_sym_LBRACE] = ACTIONS(4272), + [anon_sym_RBRACE] = ACTIONS(4272), + [anon_sym_signed] = ACTIONS(4270), + [anon_sym_unsigned] = ACTIONS(4270), + [anon_sym_long] = ACTIONS(4270), + [anon_sym_short] = ACTIONS(4270), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_static] = ACTIONS(4270), + [anon_sym_register] = ACTIONS(4270), + [anon_sym_inline] = ACTIONS(4270), + [anon_sym___inline] = ACTIONS(4270), + [anon_sym___inline__] = ACTIONS(4270), + [anon_sym___forceinline] = ACTIONS(4270), + [anon_sym_thread_local] = ACTIONS(4270), + [anon_sym___thread] = ACTIONS(4270), + [anon_sym_const] = ACTIONS(4270), + [anon_sym_constexpr] = ACTIONS(4270), + [anon_sym_volatile] = ACTIONS(4270), + [anon_sym_restrict] = ACTIONS(4270), + [anon_sym___restrict__] = ACTIONS(4270), + [anon_sym__Atomic] = ACTIONS(4270), + [anon_sym__Noreturn] = ACTIONS(4270), + [anon_sym_noreturn] = ACTIONS(4270), + [anon_sym__Nonnull] = ACTIONS(4270), + [anon_sym_mutable] = ACTIONS(4270), + [anon_sym_constinit] = ACTIONS(4270), + [anon_sym_consteval] = ACTIONS(4270), + [anon_sym_alignas] = ACTIONS(4270), + [anon_sym__Alignas] = ACTIONS(4270), + [sym_primitive_type] = ACTIONS(4270), + [anon_sym_enum] = ACTIONS(4270), + [anon_sym_class] = ACTIONS(4270), + [anon_sym_struct] = ACTIONS(4270), + [anon_sym_union] = ACTIONS(4270), + [anon_sym_if] = ACTIONS(4270), + [anon_sym_switch] = ACTIONS(4270), + [anon_sym_case] = ACTIONS(4270), + [anon_sym_default] = ACTIONS(4270), + [anon_sym_while] = ACTIONS(4270), + [anon_sym_do] = ACTIONS(4270), + [anon_sym_for] = ACTIONS(4270), + [anon_sym_return] = ACTIONS(4270), + [anon_sym_break] = ACTIONS(4270), + [anon_sym_continue] = ACTIONS(4270), + [anon_sym_goto] = ACTIONS(4270), + [anon_sym___try] = ACTIONS(4270), + [anon_sym___leave] = ACTIONS(4270), + [anon_sym_not] = ACTIONS(4270), + [anon_sym_compl] = ACTIONS(4270), + [anon_sym_DASH_DASH] = ACTIONS(4272), + [anon_sym_PLUS_PLUS] = ACTIONS(4272), + [anon_sym_sizeof] = ACTIONS(4270), + [anon_sym___alignof__] = ACTIONS(4270), + [anon_sym___alignof] = ACTIONS(4270), + [anon_sym__alignof] = ACTIONS(4270), + [anon_sym_alignof] = ACTIONS(4270), + [anon_sym__Alignof] = ACTIONS(4270), + [anon_sym_offsetof] = ACTIONS(4270), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4270), + [anon_sym_asm] = ACTIONS(4270), + [anon_sym___asm__] = ACTIONS(4270), + [anon_sym___asm] = ACTIONS(4270), + [sym_number_literal] = ACTIONS(4272), + [anon_sym_L_SQUOTE] = ACTIONS(4272), + [anon_sym_u_SQUOTE] = ACTIONS(4272), + [anon_sym_U_SQUOTE] = ACTIONS(4272), + [anon_sym_u8_SQUOTE] = ACTIONS(4272), + [anon_sym_SQUOTE] = ACTIONS(4272), + [anon_sym_L_DQUOTE] = ACTIONS(4272), + [anon_sym_u_DQUOTE] = ACTIONS(4272), + [anon_sym_U_DQUOTE] = ACTIONS(4272), + [anon_sym_u8_DQUOTE] = ACTIONS(4272), + [anon_sym_DQUOTE] = ACTIONS(4272), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4270), + [anon_sym_nullptr] = ACTIONS(4270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4270), + [anon_sym_decltype] = ACTIONS(4270), + [anon_sym_explicit] = ACTIONS(4270), + [anon_sym_export] = ACTIONS(4270), + [anon_sym_import] = ACTIONS(4270), + [anon_sym_template] = ACTIONS(4270), + [anon_sym_operator] = ACTIONS(4270), + [anon_sym_try] = ACTIONS(4270), + [anon_sym_delete] = ACTIONS(4270), + [anon_sym_throw] = ACTIONS(4270), + [anon_sym_namespace] = ACTIONS(4270), + [anon_sym_static_assert] = ACTIONS(4270), + [anon_sym_concept] = ACTIONS(4270), + [anon_sym_co_return] = ACTIONS(4270), + [anon_sym_co_yield] = ACTIONS(4270), + [anon_sym_R_DQUOTE] = ACTIONS(4272), + [anon_sym_LR_DQUOTE] = ACTIONS(4272), + [anon_sym_uR_DQUOTE] = ACTIONS(4272), + [anon_sym_UR_DQUOTE] = ACTIONS(4272), + [anon_sym_u8R_DQUOTE] = ACTIONS(4272), + [anon_sym_co_await] = ACTIONS(4270), + [anon_sym_new] = ACTIONS(4270), + [anon_sym_requires] = ACTIONS(4270), + [anon_sym_CARET_CARET] = ACTIONS(4272), + [anon_sym_LBRACK_COLON] = ACTIONS(4272), + [sym_this] = ACTIONS(4270), }, - [STATE(953)] = { - [sym_type_qualifier] = STATE(954), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6890), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(954), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4910), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4912), - [anon_sym_RBRACK] = ACTIONS(4914), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(824)] = { + [sym_identifier] = ACTIONS(4132), + [aux_sym_preproc_include_token1] = ACTIONS(4132), + [aux_sym_preproc_def_token1] = ACTIONS(4132), + [aux_sym_preproc_if_token1] = ACTIONS(4132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4132), + [sym_preproc_directive] = ACTIONS(4132), + [anon_sym_LPAREN2] = ACTIONS(4134), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_TILDE] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4132), + [anon_sym_STAR] = ACTIONS(4134), + [anon_sym_AMP_AMP] = ACTIONS(4134), + [anon_sym_AMP] = ACTIONS(4132), + [anon_sym_SEMI] = ACTIONS(4134), + [anon_sym___extension__] = ACTIONS(4132), + [anon_sym_typedef] = ACTIONS(4132), + [anon_sym_virtual] = ACTIONS(4132), + [anon_sym_extern] = ACTIONS(4132), + [anon_sym___attribute__] = ACTIONS(4132), + [anon_sym___attribute] = ACTIONS(4132), + [anon_sym_using] = ACTIONS(4132), + [anon_sym_COLON_COLON] = ACTIONS(4134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4134), + [anon_sym___declspec] = ACTIONS(4132), + [anon_sym___based] = ACTIONS(4132), + [anon_sym___cdecl] = ACTIONS(4132), + [anon_sym___clrcall] = ACTIONS(4132), + [anon_sym___stdcall] = ACTIONS(4132), + [anon_sym___fastcall] = ACTIONS(4132), + [anon_sym___thiscall] = ACTIONS(4132), + [anon_sym___vectorcall] = ACTIONS(4132), + [anon_sym_LBRACE] = ACTIONS(4134), + [anon_sym_RBRACE] = ACTIONS(4134), + [anon_sym_signed] = ACTIONS(4132), + [anon_sym_unsigned] = ACTIONS(4132), + [anon_sym_long] = ACTIONS(4132), + [anon_sym_short] = ACTIONS(4132), + [anon_sym_LBRACK] = ACTIONS(4132), + [anon_sym_static] = ACTIONS(4132), + [anon_sym_register] = ACTIONS(4132), + [anon_sym_inline] = ACTIONS(4132), + [anon_sym___inline] = ACTIONS(4132), + [anon_sym___inline__] = ACTIONS(4132), + [anon_sym___forceinline] = ACTIONS(4132), + [anon_sym_thread_local] = ACTIONS(4132), + [anon_sym___thread] = ACTIONS(4132), + [anon_sym_const] = ACTIONS(4132), + [anon_sym_constexpr] = ACTIONS(4132), + [anon_sym_volatile] = ACTIONS(4132), + [anon_sym_restrict] = ACTIONS(4132), + [anon_sym___restrict__] = ACTIONS(4132), + [anon_sym__Atomic] = ACTIONS(4132), + [anon_sym__Noreturn] = ACTIONS(4132), + [anon_sym_noreturn] = ACTIONS(4132), + [anon_sym__Nonnull] = ACTIONS(4132), + [anon_sym_mutable] = ACTIONS(4132), + [anon_sym_constinit] = ACTIONS(4132), + [anon_sym_consteval] = ACTIONS(4132), + [anon_sym_alignas] = ACTIONS(4132), + [anon_sym__Alignas] = ACTIONS(4132), + [sym_primitive_type] = ACTIONS(4132), + [anon_sym_enum] = ACTIONS(4132), + [anon_sym_class] = ACTIONS(4132), + [anon_sym_struct] = ACTIONS(4132), + [anon_sym_union] = ACTIONS(4132), + [anon_sym_if] = ACTIONS(4132), + [anon_sym_switch] = ACTIONS(4132), + [anon_sym_case] = ACTIONS(4132), + [anon_sym_default] = ACTIONS(4132), + [anon_sym_while] = ACTIONS(4132), + [anon_sym_do] = ACTIONS(4132), + [anon_sym_for] = ACTIONS(4132), + [anon_sym_return] = ACTIONS(4132), + [anon_sym_break] = ACTIONS(4132), + [anon_sym_continue] = ACTIONS(4132), + [anon_sym_goto] = ACTIONS(4132), + [anon_sym___try] = ACTIONS(4132), + [anon_sym___leave] = ACTIONS(4132), + [anon_sym_not] = ACTIONS(4132), + [anon_sym_compl] = ACTIONS(4132), + [anon_sym_DASH_DASH] = ACTIONS(4134), + [anon_sym_PLUS_PLUS] = ACTIONS(4134), + [anon_sym_sizeof] = ACTIONS(4132), + [anon_sym___alignof__] = ACTIONS(4132), + [anon_sym___alignof] = ACTIONS(4132), + [anon_sym__alignof] = ACTIONS(4132), + [anon_sym_alignof] = ACTIONS(4132), + [anon_sym__Alignof] = ACTIONS(4132), + [anon_sym_offsetof] = ACTIONS(4132), + [anon_sym__Generic] = ACTIONS(4132), + [anon_sym_typename] = ACTIONS(4132), + [anon_sym_asm] = ACTIONS(4132), + [anon_sym___asm__] = ACTIONS(4132), + [anon_sym___asm] = ACTIONS(4132), + [sym_number_literal] = ACTIONS(4134), + [anon_sym_L_SQUOTE] = ACTIONS(4134), + [anon_sym_u_SQUOTE] = ACTIONS(4134), + [anon_sym_U_SQUOTE] = ACTIONS(4134), + [anon_sym_u8_SQUOTE] = ACTIONS(4134), + [anon_sym_SQUOTE] = ACTIONS(4134), + [anon_sym_L_DQUOTE] = ACTIONS(4134), + [anon_sym_u_DQUOTE] = ACTIONS(4134), + [anon_sym_U_DQUOTE] = ACTIONS(4134), + [anon_sym_u8_DQUOTE] = ACTIONS(4134), + [anon_sym_DQUOTE] = ACTIONS(4134), + [sym_true] = ACTIONS(4132), + [sym_false] = ACTIONS(4132), + [anon_sym_NULL] = ACTIONS(4132), + [anon_sym_nullptr] = ACTIONS(4132), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4132), + [anon_sym_decltype] = ACTIONS(4132), + [anon_sym_explicit] = ACTIONS(4132), + [anon_sym_export] = ACTIONS(4132), + [anon_sym_import] = ACTIONS(4132), + [anon_sym_template] = ACTIONS(4132), + [anon_sym_operator] = ACTIONS(4132), + [anon_sym_try] = ACTIONS(4132), + [anon_sym_delete] = ACTIONS(4132), + [anon_sym_throw] = ACTIONS(4132), + [anon_sym_namespace] = ACTIONS(4132), + [anon_sym_static_assert] = ACTIONS(4132), + [anon_sym_concept] = ACTIONS(4132), + [anon_sym_co_return] = ACTIONS(4132), + [anon_sym_co_yield] = ACTIONS(4132), + [anon_sym_R_DQUOTE] = ACTIONS(4134), + [anon_sym_LR_DQUOTE] = ACTIONS(4134), + [anon_sym_uR_DQUOTE] = ACTIONS(4134), + [anon_sym_UR_DQUOTE] = ACTIONS(4134), + [anon_sym_u8R_DQUOTE] = ACTIONS(4134), + [anon_sym_co_await] = ACTIONS(4132), + [anon_sym_new] = ACTIONS(4132), + [anon_sym_requires] = ACTIONS(4132), + [anon_sym_CARET_CARET] = ACTIONS(4134), + [anon_sym_LBRACK_COLON] = ACTIONS(4134), + [sym_this] = ACTIONS(4132), }, - [STATE(954)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(7048), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4916), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(4918), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(825)] = { + [sym_identifier] = ACTIONS(4100), + [aux_sym_preproc_include_token1] = ACTIONS(4100), + [aux_sym_preproc_def_token1] = ACTIONS(4100), + [aux_sym_preproc_if_token1] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), + [sym_preproc_directive] = ACTIONS(4100), + [anon_sym_LPAREN2] = ACTIONS(4102), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_TILDE] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4100), + [anon_sym_PLUS] = ACTIONS(4100), + [anon_sym_STAR] = ACTIONS(4102), + [anon_sym_AMP_AMP] = ACTIONS(4102), + [anon_sym_AMP] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym___extension__] = ACTIONS(4100), + [anon_sym_typedef] = ACTIONS(4100), + [anon_sym_virtual] = ACTIONS(4100), + [anon_sym_extern] = ACTIONS(4100), + [anon_sym___attribute__] = ACTIONS(4100), + [anon_sym___attribute] = ACTIONS(4100), + [anon_sym_using] = ACTIONS(4100), + [anon_sym_COLON_COLON] = ACTIONS(4102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4102), + [anon_sym___declspec] = ACTIONS(4100), + [anon_sym___based] = ACTIONS(4100), + [anon_sym___cdecl] = ACTIONS(4100), + [anon_sym___clrcall] = ACTIONS(4100), + [anon_sym___stdcall] = ACTIONS(4100), + [anon_sym___fastcall] = ACTIONS(4100), + [anon_sym___thiscall] = ACTIONS(4100), + [anon_sym___vectorcall] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4102), + [anon_sym_RBRACE] = ACTIONS(4102), + [anon_sym_signed] = ACTIONS(4100), + [anon_sym_unsigned] = ACTIONS(4100), + [anon_sym_long] = ACTIONS(4100), + [anon_sym_short] = ACTIONS(4100), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_static] = ACTIONS(4100), + [anon_sym_register] = ACTIONS(4100), + [anon_sym_inline] = ACTIONS(4100), + [anon_sym___inline] = ACTIONS(4100), + [anon_sym___inline__] = ACTIONS(4100), + [anon_sym___forceinline] = ACTIONS(4100), + [anon_sym_thread_local] = ACTIONS(4100), + [anon_sym___thread] = ACTIONS(4100), + [anon_sym_const] = ACTIONS(4100), + [anon_sym_constexpr] = ACTIONS(4100), + [anon_sym_volatile] = ACTIONS(4100), + [anon_sym_restrict] = ACTIONS(4100), + [anon_sym___restrict__] = ACTIONS(4100), + [anon_sym__Atomic] = ACTIONS(4100), + [anon_sym__Noreturn] = ACTIONS(4100), + [anon_sym_noreturn] = ACTIONS(4100), + [anon_sym__Nonnull] = ACTIONS(4100), + [anon_sym_mutable] = ACTIONS(4100), + [anon_sym_constinit] = ACTIONS(4100), + [anon_sym_consteval] = ACTIONS(4100), + [anon_sym_alignas] = ACTIONS(4100), + [anon_sym__Alignas] = ACTIONS(4100), + [sym_primitive_type] = ACTIONS(4100), + [anon_sym_enum] = ACTIONS(4100), + [anon_sym_class] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(4100), + [anon_sym_union] = ACTIONS(4100), + [anon_sym_if] = ACTIONS(4100), + [anon_sym_switch] = ACTIONS(4100), + [anon_sym_case] = ACTIONS(4100), + [anon_sym_default] = ACTIONS(4100), + [anon_sym_while] = ACTIONS(4100), + [anon_sym_do] = ACTIONS(4100), + [anon_sym_for] = ACTIONS(4100), + [anon_sym_return] = ACTIONS(4100), + [anon_sym_break] = ACTIONS(4100), + [anon_sym_continue] = ACTIONS(4100), + [anon_sym_goto] = ACTIONS(4100), + [anon_sym___try] = ACTIONS(4100), + [anon_sym___leave] = ACTIONS(4100), + [anon_sym_not] = ACTIONS(4100), + [anon_sym_compl] = ACTIONS(4100), + [anon_sym_DASH_DASH] = ACTIONS(4102), + [anon_sym_PLUS_PLUS] = ACTIONS(4102), + [anon_sym_sizeof] = ACTIONS(4100), + [anon_sym___alignof__] = ACTIONS(4100), + [anon_sym___alignof] = ACTIONS(4100), + [anon_sym__alignof] = ACTIONS(4100), + [anon_sym_alignof] = ACTIONS(4100), + [anon_sym__Alignof] = ACTIONS(4100), + [anon_sym_offsetof] = ACTIONS(4100), + [anon_sym__Generic] = ACTIONS(4100), + [anon_sym_typename] = ACTIONS(4100), + [anon_sym_asm] = ACTIONS(4100), + [anon_sym___asm__] = ACTIONS(4100), + [anon_sym___asm] = ACTIONS(4100), + [sym_number_literal] = ACTIONS(4102), + [anon_sym_L_SQUOTE] = ACTIONS(4102), + [anon_sym_u_SQUOTE] = ACTIONS(4102), + [anon_sym_U_SQUOTE] = ACTIONS(4102), + [anon_sym_u8_SQUOTE] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4102), + [anon_sym_L_DQUOTE] = ACTIONS(4102), + [anon_sym_u_DQUOTE] = ACTIONS(4102), + [anon_sym_U_DQUOTE] = ACTIONS(4102), + [anon_sym_u8_DQUOTE] = ACTIONS(4102), + [anon_sym_DQUOTE] = ACTIONS(4102), + [sym_true] = ACTIONS(4100), + [sym_false] = ACTIONS(4100), + [anon_sym_NULL] = ACTIONS(4100), + [anon_sym_nullptr] = ACTIONS(4100), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4100), + [anon_sym_decltype] = ACTIONS(4100), + [anon_sym_explicit] = ACTIONS(4100), + [anon_sym_export] = ACTIONS(4100), + [anon_sym_import] = ACTIONS(4100), + [anon_sym_template] = ACTIONS(4100), + [anon_sym_operator] = ACTIONS(4100), + [anon_sym_try] = ACTIONS(4100), + [anon_sym_delete] = ACTIONS(4100), + [anon_sym_throw] = ACTIONS(4100), + [anon_sym_namespace] = ACTIONS(4100), + [anon_sym_static_assert] = ACTIONS(4100), + [anon_sym_concept] = ACTIONS(4100), + [anon_sym_co_return] = ACTIONS(4100), + [anon_sym_co_yield] = ACTIONS(4100), + [anon_sym_R_DQUOTE] = ACTIONS(4102), + [anon_sym_LR_DQUOTE] = ACTIONS(4102), + [anon_sym_uR_DQUOTE] = ACTIONS(4102), + [anon_sym_UR_DQUOTE] = ACTIONS(4102), + [anon_sym_u8R_DQUOTE] = ACTIONS(4102), + [anon_sym_co_await] = ACTIONS(4100), + [anon_sym_new] = ACTIONS(4100), + [anon_sym_requires] = ACTIONS(4100), + [anon_sym_CARET_CARET] = ACTIONS(4102), + [anon_sym_LBRACK_COLON] = ACTIONS(4102), + [sym_this] = ACTIONS(4100), }, - [STATE(955)] = { - [sym_type_qualifier] = STATE(957), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(7050), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(957), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4920), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4922), - [anon_sym_RBRACK] = ACTIONS(4924), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(826)] = { + [sym_identifier] = ACTIONS(4278), + [aux_sym_preproc_include_token1] = ACTIONS(4278), + [aux_sym_preproc_def_token1] = ACTIONS(4278), + [aux_sym_preproc_if_token1] = ACTIONS(4278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4278), + [sym_preproc_directive] = ACTIONS(4278), + [anon_sym_LPAREN2] = ACTIONS(4280), + [anon_sym_BANG] = ACTIONS(4280), + [anon_sym_TILDE] = ACTIONS(4280), + [anon_sym_DASH] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_STAR] = ACTIONS(4280), + [anon_sym_AMP_AMP] = ACTIONS(4280), + [anon_sym_AMP] = ACTIONS(4278), + [anon_sym_SEMI] = ACTIONS(4280), + [anon_sym___extension__] = ACTIONS(4278), + [anon_sym_typedef] = ACTIONS(4278), + [anon_sym_virtual] = ACTIONS(4278), + [anon_sym_extern] = ACTIONS(4278), + [anon_sym___attribute__] = ACTIONS(4278), + [anon_sym___attribute] = ACTIONS(4278), + [anon_sym_using] = ACTIONS(4278), + [anon_sym_COLON_COLON] = ACTIONS(4280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4280), + [anon_sym___declspec] = ACTIONS(4278), + [anon_sym___based] = ACTIONS(4278), + [anon_sym___cdecl] = ACTIONS(4278), + [anon_sym___clrcall] = ACTIONS(4278), + [anon_sym___stdcall] = ACTIONS(4278), + [anon_sym___fastcall] = ACTIONS(4278), + [anon_sym___thiscall] = ACTIONS(4278), + [anon_sym___vectorcall] = ACTIONS(4278), + [anon_sym_LBRACE] = ACTIONS(4280), + [anon_sym_RBRACE] = ACTIONS(4280), + [anon_sym_signed] = ACTIONS(4278), + [anon_sym_unsigned] = ACTIONS(4278), + [anon_sym_long] = ACTIONS(4278), + [anon_sym_short] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_register] = ACTIONS(4278), + [anon_sym_inline] = ACTIONS(4278), + [anon_sym___inline] = ACTIONS(4278), + [anon_sym___inline__] = ACTIONS(4278), + [anon_sym___forceinline] = ACTIONS(4278), + [anon_sym_thread_local] = ACTIONS(4278), + [anon_sym___thread] = ACTIONS(4278), + [anon_sym_const] = ACTIONS(4278), + [anon_sym_constexpr] = ACTIONS(4278), + [anon_sym_volatile] = ACTIONS(4278), + [anon_sym_restrict] = ACTIONS(4278), + [anon_sym___restrict__] = ACTIONS(4278), + [anon_sym__Atomic] = ACTIONS(4278), + [anon_sym__Noreturn] = ACTIONS(4278), + [anon_sym_noreturn] = ACTIONS(4278), + [anon_sym__Nonnull] = ACTIONS(4278), + [anon_sym_mutable] = ACTIONS(4278), + [anon_sym_constinit] = ACTIONS(4278), + [anon_sym_consteval] = ACTIONS(4278), + [anon_sym_alignas] = ACTIONS(4278), + [anon_sym__Alignas] = ACTIONS(4278), + [sym_primitive_type] = ACTIONS(4278), + [anon_sym_enum] = ACTIONS(4278), + [anon_sym_class] = ACTIONS(4278), + [anon_sym_struct] = ACTIONS(4278), + [anon_sym_union] = ACTIONS(4278), + [anon_sym_if] = ACTIONS(4278), + [anon_sym_switch] = ACTIONS(4278), + [anon_sym_case] = ACTIONS(4278), + [anon_sym_default] = ACTIONS(4278), + [anon_sym_while] = ACTIONS(4278), + [anon_sym_do] = ACTIONS(4278), + [anon_sym_for] = ACTIONS(4278), + [anon_sym_return] = ACTIONS(4278), + [anon_sym_break] = ACTIONS(4278), + [anon_sym_continue] = ACTIONS(4278), + [anon_sym_goto] = ACTIONS(4278), + [anon_sym___try] = ACTIONS(4278), + [anon_sym___leave] = ACTIONS(4278), + [anon_sym_not] = ACTIONS(4278), + [anon_sym_compl] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4280), + [anon_sym_PLUS_PLUS] = ACTIONS(4280), + [anon_sym_sizeof] = ACTIONS(4278), + [anon_sym___alignof__] = ACTIONS(4278), + [anon_sym___alignof] = ACTIONS(4278), + [anon_sym__alignof] = ACTIONS(4278), + [anon_sym_alignof] = ACTIONS(4278), + [anon_sym__Alignof] = ACTIONS(4278), + [anon_sym_offsetof] = ACTIONS(4278), + [anon_sym__Generic] = ACTIONS(4278), + [anon_sym_typename] = ACTIONS(4278), + [anon_sym_asm] = ACTIONS(4278), + [anon_sym___asm__] = ACTIONS(4278), + [anon_sym___asm] = ACTIONS(4278), + [sym_number_literal] = ACTIONS(4280), + [anon_sym_L_SQUOTE] = ACTIONS(4280), + [anon_sym_u_SQUOTE] = ACTIONS(4280), + [anon_sym_U_SQUOTE] = ACTIONS(4280), + [anon_sym_u8_SQUOTE] = ACTIONS(4280), + [anon_sym_SQUOTE] = ACTIONS(4280), + [anon_sym_L_DQUOTE] = ACTIONS(4280), + [anon_sym_u_DQUOTE] = ACTIONS(4280), + [anon_sym_U_DQUOTE] = ACTIONS(4280), + [anon_sym_u8_DQUOTE] = ACTIONS(4280), + [anon_sym_DQUOTE] = ACTIONS(4280), + [sym_true] = ACTIONS(4278), + [sym_false] = ACTIONS(4278), + [anon_sym_NULL] = ACTIONS(4278), + [anon_sym_nullptr] = ACTIONS(4278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4278), + [anon_sym_decltype] = ACTIONS(4278), + [anon_sym_explicit] = ACTIONS(4278), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_import] = ACTIONS(4278), + [anon_sym_template] = ACTIONS(4278), + [anon_sym_operator] = ACTIONS(4278), + [anon_sym_try] = ACTIONS(4278), + [anon_sym_delete] = ACTIONS(4278), + [anon_sym_throw] = ACTIONS(4278), + [anon_sym_namespace] = ACTIONS(4278), + [anon_sym_static_assert] = ACTIONS(4278), + [anon_sym_concept] = ACTIONS(4278), + [anon_sym_co_return] = ACTIONS(4278), + [anon_sym_co_yield] = ACTIONS(4278), + [anon_sym_R_DQUOTE] = ACTIONS(4280), + [anon_sym_LR_DQUOTE] = ACTIONS(4280), + [anon_sym_uR_DQUOTE] = ACTIONS(4280), + [anon_sym_UR_DQUOTE] = ACTIONS(4280), + [anon_sym_u8R_DQUOTE] = ACTIONS(4280), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4278), + [anon_sym_requires] = ACTIONS(4278), + [anon_sym_CARET_CARET] = ACTIONS(4280), + [anon_sym_LBRACK_COLON] = ACTIONS(4280), + [sym_this] = ACTIONS(4278), }, - [STATE(956)] = { - [sym_type_qualifier] = STATE(958), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(7069), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(958), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4926), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4928), - [anon_sym_RBRACK] = ACTIONS(4930), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(827)] = { + [sym_identifier] = ACTIONS(4016), + [aux_sym_preproc_include_token1] = ACTIONS(4016), + [aux_sym_preproc_def_token1] = ACTIONS(4016), + [aux_sym_preproc_if_token1] = ACTIONS(4016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4016), + [sym_preproc_directive] = ACTIONS(4016), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(4018), + [anon_sym_TILDE] = ACTIONS(4018), + [anon_sym_DASH] = ACTIONS(4016), + [anon_sym_PLUS] = ACTIONS(4016), + [anon_sym_STAR] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4016), + [anon_sym_SEMI] = ACTIONS(4018), + [anon_sym___extension__] = ACTIONS(4016), + [anon_sym_typedef] = ACTIONS(4016), + [anon_sym_virtual] = ACTIONS(4016), + [anon_sym_extern] = ACTIONS(4016), + [anon_sym___attribute__] = ACTIONS(4016), + [anon_sym___attribute] = ACTIONS(4016), + [anon_sym_using] = ACTIONS(4016), + [anon_sym_COLON_COLON] = ACTIONS(4018), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4018), + [anon_sym___declspec] = ACTIONS(4016), + [anon_sym___based] = ACTIONS(4016), + [anon_sym___cdecl] = ACTIONS(4016), + [anon_sym___clrcall] = ACTIONS(4016), + [anon_sym___stdcall] = ACTIONS(4016), + [anon_sym___fastcall] = ACTIONS(4016), + [anon_sym___thiscall] = ACTIONS(4016), + [anon_sym___vectorcall] = ACTIONS(4016), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_RBRACE] = ACTIONS(4018), + [anon_sym_signed] = ACTIONS(4016), + [anon_sym_unsigned] = ACTIONS(4016), + [anon_sym_long] = ACTIONS(4016), + [anon_sym_short] = ACTIONS(4016), + [anon_sym_LBRACK] = ACTIONS(4016), + [anon_sym_static] = ACTIONS(4016), + [anon_sym_register] = ACTIONS(4016), + [anon_sym_inline] = ACTIONS(4016), + [anon_sym___inline] = ACTIONS(4016), + [anon_sym___inline__] = ACTIONS(4016), + [anon_sym___forceinline] = ACTIONS(4016), + [anon_sym_thread_local] = ACTIONS(4016), + [anon_sym___thread] = ACTIONS(4016), + [anon_sym_const] = ACTIONS(4016), + [anon_sym_constexpr] = ACTIONS(4016), + [anon_sym_volatile] = ACTIONS(4016), + [anon_sym_restrict] = ACTIONS(4016), + [anon_sym___restrict__] = ACTIONS(4016), + [anon_sym__Atomic] = ACTIONS(4016), + [anon_sym__Noreturn] = ACTIONS(4016), + [anon_sym_noreturn] = ACTIONS(4016), + [anon_sym__Nonnull] = ACTIONS(4016), + [anon_sym_mutable] = ACTIONS(4016), + [anon_sym_constinit] = ACTIONS(4016), + [anon_sym_consteval] = ACTIONS(4016), + [anon_sym_alignas] = ACTIONS(4016), + [anon_sym__Alignas] = ACTIONS(4016), + [sym_primitive_type] = ACTIONS(4016), + [anon_sym_enum] = ACTIONS(4016), + [anon_sym_class] = ACTIONS(4016), + [anon_sym_struct] = ACTIONS(4016), + [anon_sym_union] = ACTIONS(4016), + [anon_sym_if] = ACTIONS(4016), + [anon_sym_switch] = ACTIONS(4016), + [anon_sym_case] = ACTIONS(4016), + [anon_sym_default] = ACTIONS(4016), + [anon_sym_while] = ACTIONS(4016), + [anon_sym_do] = ACTIONS(4016), + [anon_sym_for] = ACTIONS(4016), + [anon_sym_return] = ACTIONS(4016), + [anon_sym_break] = ACTIONS(4016), + [anon_sym_continue] = ACTIONS(4016), + [anon_sym_goto] = ACTIONS(4016), + [anon_sym___try] = ACTIONS(4016), + [anon_sym___leave] = ACTIONS(4016), + [anon_sym_not] = ACTIONS(4016), + [anon_sym_compl] = ACTIONS(4016), + [anon_sym_DASH_DASH] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(4018), + [anon_sym_sizeof] = ACTIONS(4016), + [anon_sym___alignof__] = ACTIONS(4016), + [anon_sym___alignof] = ACTIONS(4016), + [anon_sym__alignof] = ACTIONS(4016), + [anon_sym_alignof] = ACTIONS(4016), + [anon_sym__Alignof] = ACTIONS(4016), + [anon_sym_offsetof] = ACTIONS(4016), + [anon_sym__Generic] = ACTIONS(4016), + [anon_sym_typename] = ACTIONS(4016), + [anon_sym_asm] = ACTIONS(4016), + [anon_sym___asm__] = ACTIONS(4016), + [anon_sym___asm] = ACTIONS(4016), + [sym_number_literal] = ACTIONS(4018), + [anon_sym_L_SQUOTE] = ACTIONS(4018), + [anon_sym_u_SQUOTE] = ACTIONS(4018), + [anon_sym_U_SQUOTE] = ACTIONS(4018), + [anon_sym_u8_SQUOTE] = ACTIONS(4018), + [anon_sym_SQUOTE] = ACTIONS(4018), + [anon_sym_L_DQUOTE] = ACTIONS(4018), + [anon_sym_u_DQUOTE] = ACTIONS(4018), + [anon_sym_U_DQUOTE] = ACTIONS(4018), + [anon_sym_u8_DQUOTE] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(4018), + [sym_true] = ACTIONS(4016), + [sym_false] = ACTIONS(4016), + [anon_sym_NULL] = ACTIONS(4016), + [anon_sym_nullptr] = ACTIONS(4016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4016), + [anon_sym_decltype] = ACTIONS(4016), + [anon_sym_explicit] = ACTIONS(4016), + [anon_sym_export] = ACTIONS(4016), + [anon_sym_import] = ACTIONS(4016), + [anon_sym_template] = ACTIONS(4016), + [anon_sym_operator] = ACTIONS(4016), + [anon_sym_try] = ACTIONS(4016), + [anon_sym_delete] = ACTIONS(4016), + [anon_sym_throw] = ACTIONS(4016), + [anon_sym_namespace] = ACTIONS(4016), + [anon_sym_static_assert] = ACTIONS(4016), + [anon_sym_concept] = ACTIONS(4016), + [anon_sym_co_return] = ACTIONS(4016), + [anon_sym_co_yield] = ACTIONS(4016), + [anon_sym_R_DQUOTE] = ACTIONS(4018), + [anon_sym_LR_DQUOTE] = ACTIONS(4018), + [anon_sym_uR_DQUOTE] = ACTIONS(4018), + [anon_sym_UR_DQUOTE] = ACTIONS(4018), + [anon_sym_u8R_DQUOTE] = ACTIONS(4018), + [anon_sym_co_await] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(4016), + [anon_sym_requires] = ACTIONS(4016), + [anon_sym_CARET_CARET] = ACTIONS(4018), + [anon_sym_LBRACK_COLON] = ACTIONS(4018), + [sym_this] = ACTIONS(4016), }, - [STATE(957)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6857), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4932), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(4934), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(828)] = { + [sym_identifier] = ACTIONS(4282), + [aux_sym_preproc_include_token1] = ACTIONS(4282), + [aux_sym_preproc_def_token1] = ACTIONS(4282), + [aux_sym_preproc_if_token1] = ACTIONS(4282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4282), + [sym_preproc_directive] = ACTIONS(4282), + [anon_sym_LPAREN2] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4284), + [anon_sym_TILDE] = ACTIONS(4284), + [anon_sym_DASH] = ACTIONS(4282), + [anon_sym_PLUS] = ACTIONS(4282), + [anon_sym_STAR] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(4282), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym___extension__] = ACTIONS(4282), + [anon_sym_typedef] = ACTIONS(4282), + [anon_sym_virtual] = ACTIONS(4282), + [anon_sym_extern] = ACTIONS(4282), + [anon_sym___attribute__] = ACTIONS(4282), + [anon_sym___attribute] = ACTIONS(4282), + [anon_sym_using] = ACTIONS(4282), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), + [anon_sym___declspec] = ACTIONS(4282), + [anon_sym___based] = ACTIONS(4282), + [anon_sym___cdecl] = ACTIONS(4282), + [anon_sym___clrcall] = ACTIONS(4282), + [anon_sym___stdcall] = ACTIONS(4282), + [anon_sym___fastcall] = ACTIONS(4282), + [anon_sym___thiscall] = ACTIONS(4282), + [anon_sym___vectorcall] = ACTIONS(4282), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_signed] = ACTIONS(4282), + [anon_sym_unsigned] = ACTIONS(4282), + [anon_sym_long] = ACTIONS(4282), + [anon_sym_short] = ACTIONS(4282), + [anon_sym_LBRACK] = ACTIONS(4282), + [anon_sym_static] = ACTIONS(4282), + [anon_sym_register] = ACTIONS(4282), + [anon_sym_inline] = ACTIONS(4282), + [anon_sym___inline] = ACTIONS(4282), + [anon_sym___inline__] = ACTIONS(4282), + [anon_sym___forceinline] = ACTIONS(4282), + [anon_sym_thread_local] = ACTIONS(4282), + [anon_sym___thread] = ACTIONS(4282), + [anon_sym_const] = ACTIONS(4282), + [anon_sym_constexpr] = ACTIONS(4282), + [anon_sym_volatile] = ACTIONS(4282), + [anon_sym_restrict] = ACTIONS(4282), + [anon_sym___restrict__] = ACTIONS(4282), + [anon_sym__Atomic] = ACTIONS(4282), + [anon_sym__Noreturn] = ACTIONS(4282), + [anon_sym_noreturn] = ACTIONS(4282), + [anon_sym__Nonnull] = ACTIONS(4282), + [anon_sym_mutable] = ACTIONS(4282), + [anon_sym_constinit] = ACTIONS(4282), + [anon_sym_consteval] = ACTIONS(4282), + [anon_sym_alignas] = ACTIONS(4282), + [anon_sym__Alignas] = ACTIONS(4282), + [sym_primitive_type] = ACTIONS(4282), + [anon_sym_enum] = ACTIONS(4282), + [anon_sym_class] = ACTIONS(4282), + [anon_sym_struct] = ACTIONS(4282), + [anon_sym_union] = ACTIONS(4282), + [anon_sym_if] = ACTIONS(4282), + [anon_sym_switch] = ACTIONS(4282), + [anon_sym_case] = ACTIONS(4282), + [anon_sym_default] = ACTIONS(4282), + [anon_sym_while] = ACTIONS(4282), + [anon_sym_do] = ACTIONS(4282), + [anon_sym_for] = ACTIONS(4282), + [anon_sym_return] = ACTIONS(4282), + [anon_sym_break] = ACTIONS(4282), + [anon_sym_continue] = ACTIONS(4282), + [anon_sym_goto] = ACTIONS(4282), + [anon_sym___try] = ACTIONS(4282), + [anon_sym___leave] = ACTIONS(4282), + [anon_sym_not] = ACTIONS(4282), + [anon_sym_compl] = ACTIONS(4282), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_sizeof] = ACTIONS(4282), + [anon_sym___alignof__] = ACTIONS(4282), + [anon_sym___alignof] = ACTIONS(4282), + [anon_sym__alignof] = ACTIONS(4282), + [anon_sym_alignof] = ACTIONS(4282), + [anon_sym__Alignof] = ACTIONS(4282), + [anon_sym_offsetof] = ACTIONS(4282), + [anon_sym__Generic] = ACTIONS(4282), + [anon_sym_typename] = ACTIONS(4282), + [anon_sym_asm] = ACTIONS(4282), + [anon_sym___asm__] = ACTIONS(4282), + [anon_sym___asm] = ACTIONS(4282), + [sym_number_literal] = ACTIONS(4284), + [anon_sym_L_SQUOTE] = ACTIONS(4284), + [anon_sym_u_SQUOTE] = ACTIONS(4284), + [anon_sym_U_SQUOTE] = ACTIONS(4284), + [anon_sym_u8_SQUOTE] = ACTIONS(4284), + [anon_sym_SQUOTE] = ACTIONS(4284), + [anon_sym_L_DQUOTE] = ACTIONS(4284), + [anon_sym_u_DQUOTE] = ACTIONS(4284), + [anon_sym_U_DQUOTE] = ACTIONS(4284), + [anon_sym_u8_DQUOTE] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4284), + [sym_true] = ACTIONS(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4282), + [anon_sym_nullptr] = ACTIONS(4282), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4282), + [anon_sym_decltype] = ACTIONS(4282), + [anon_sym_explicit] = ACTIONS(4282), + [anon_sym_export] = ACTIONS(4282), + [anon_sym_import] = ACTIONS(4282), + [anon_sym_template] = ACTIONS(4282), + [anon_sym_operator] = ACTIONS(4282), + [anon_sym_try] = ACTIONS(4282), + [anon_sym_delete] = ACTIONS(4282), + [anon_sym_throw] = ACTIONS(4282), + [anon_sym_namespace] = ACTIONS(4282), + [anon_sym_static_assert] = ACTIONS(4282), + [anon_sym_concept] = ACTIONS(4282), + [anon_sym_co_return] = ACTIONS(4282), + [anon_sym_co_yield] = ACTIONS(4282), + [anon_sym_R_DQUOTE] = ACTIONS(4284), + [anon_sym_LR_DQUOTE] = ACTIONS(4284), + [anon_sym_uR_DQUOTE] = ACTIONS(4284), + [anon_sym_UR_DQUOTE] = ACTIONS(4284), + [anon_sym_u8R_DQUOTE] = ACTIONS(4284), + [anon_sym_co_await] = ACTIONS(4282), + [anon_sym_new] = ACTIONS(4282), + [anon_sym_requires] = ACTIONS(4282), + [anon_sym_CARET_CARET] = ACTIONS(4284), + [anon_sym_LBRACK_COLON] = ACTIONS(4284), + [sym_this] = ACTIONS(4282), }, - [STATE(958)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6870), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4936), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(4938), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(829)] = { + [sym_identifier] = ACTIONS(4120), + [aux_sym_preproc_include_token1] = ACTIONS(4120), + [aux_sym_preproc_def_token1] = ACTIONS(4120), + [aux_sym_preproc_if_token1] = ACTIONS(4120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4120), + [sym_preproc_directive] = ACTIONS(4120), + [anon_sym_LPAREN2] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4122), + [anon_sym_TILDE] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_AMP] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym___extension__] = ACTIONS(4120), + [anon_sym_typedef] = ACTIONS(4120), + [anon_sym_virtual] = ACTIONS(4120), + [anon_sym_extern] = ACTIONS(4120), + [anon_sym___attribute__] = ACTIONS(4120), + [anon_sym___attribute] = ACTIONS(4120), + [anon_sym_using] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4122), + [anon_sym___declspec] = ACTIONS(4120), + [anon_sym___based] = ACTIONS(4120), + [anon_sym___cdecl] = ACTIONS(4120), + [anon_sym___clrcall] = ACTIONS(4120), + [anon_sym___stdcall] = ACTIONS(4120), + [anon_sym___fastcall] = ACTIONS(4120), + [anon_sym___thiscall] = ACTIONS(4120), + [anon_sym___vectorcall] = ACTIONS(4120), + [anon_sym_LBRACE] = ACTIONS(4122), + [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_signed] = ACTIONS(4120), + [anon_sym_unsigned] = ACTIONS(4120), + [anon_sym_long] = ACTIONS(4120), + [anon_sym_short] = ACTIONS(4120), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_static] = ACTIONS(4120), + [anon_sym_register] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym___inline] = ACTIONS(4120), + [anon_sym___inline__] = ACTIONS(4120), + [anon_sym___forceinline] = ACTIONS(4120), + [anon_sym_thread_local] = ACTIONS(4120), + [anon_sym___thread] = ACTIONS(4120), + [anon_sym_const] = ACTIONS(4120), + [anon_sym_constexpr] = ACTIONS(4120), + [anon_sym_volatile] = ACTIONS(4120), + [anon_sym_restrict] = ACTIONS(4120), + [anon_sym___restrict__] = ACTIONS(4120), + [anon_sym__Atomic] = ACTIONS(4120), + [anon_sym__Noreturn] = ACTIONS(4120), + [anon_sym_noreturn] = ACTIONS(4120), + [anon_sym__Nonnull] = ACTIONS(4120), + [anon_sym_mutable] = ACTIONS(4120), + [anon_sym_constinit] = ACTIONS(4120), + [anon_sym_consteval] = ACTIONS(4120), + [anon_sym_alignas] = ACTIONS(4120), + [anon_sym__Alignas] = ACTIONS(4120), + [sym_primitive_type] = ACTIONS(4120), + [anon_sym_enum] = ACTIONS(4120), + [anon_sym_class] = ACTIONS(4120), + [anon_sym_struct] = ACTIONS(4120), + [anon_sym_union] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_switch] = ACTIONS(4120), + [anon_sym_case] = ACTIONS(4120), + [anon_sym_default] = ACTIONS(4120), + [anon_sym_while] = ACTIONS(4120), + [anon_sym_do] = ACTIONS(4120), + [anon_sym_for] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_goto] = ACTIONS(4120), + [anon_sym___try] = ACTIONS(4120), + [anon_sym___leave] = ACTIONS(4120), + [anon_sym_not] = ACTIONS(4120), + [anon_sym_compl] = ACTIONS(4120), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_sizeof] = ACTIONS(4120), + [anon_sym___alignof__] = ACTIONS(4120), + [anon_sym___alignof] = ACTIONS(4120), + [anon_sym__alignof] = ACTIONS(4120), + [anon_sym_alignof] = ACTIONS(4120), + [anon_sym__Alignof] = ACTIONS(4120), + [anon_sym_offsetof] = ACTIONS(4120), + [anon_sym__Generic] = ACTIONS(4120), + [anon_sym_typename] = ACTIONS(4120), + [anon_sym_asm] = ACTIONS(4120), + [anon_sym___asm__] = ACTIONS(4120), + [anon_sym___asm] = ACTIONS(4120), + [sym_number_literal] = ACTIONS(4122), + [anon_sym_L_SQUOTE] = ACTIONS(4122), + [anon_sym_u_SQUOTE] = ACTIONS(4122), + [anon_sym_U_SQUOTE] = ACTIONS(4122), + [anon_sym_u8_SQUOTE] = ACTIONS(4122), + [anon_sym_SQUOTE] = ACTIONS(4122), + [anon_sym_L_DQUOTE] = ACTIONS(4122), + [anon_sym_u_DQUOTE] = ACTIONS(4122), + [anon_sym_U_DQUOTE] = ACTIONS(4122), + [anon_sym_u8_DQUOTE] = ACTIONS(4122), + [anon_sym_DQUOTE] = ACTIONS(4122), + [sym_true] = ACTIONS(4120), + [sym_false] = ACTIONS(4120), + [anon_sym_NULL] = ACTIONS(4120), + [anon_sym_nullptr] = ACTIONS(4120), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4120), + [anon_sym_decltype] = ACTIONS(4120), + [anon_sym_explicit] = ACTIONS(4120), + [anon_sym_export] = ACTIONS(4120), + [anon_sym_import] = ACTIONS(4120), + [anon_sym_template] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_delete] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_namespace] = ACTIONS(4120), + [anon_sym_static_assert] = ACTIONS(4120), + [anon_sym_concept] = ACTIONS(4120), + [anon_sym_co_return] = ACTIONS(4120), + [anon_sym_co_yield] = ACTIONS(4120), + [anon_sym_R_DQUOTE] = ACTIONS(4122), + [anon_sym_LR_DQUOTE] = ACTIONS(4122), + [anon_sym_uR_DQUOTE] = ACTIONS(4122), + [anon_sym_UR_DQUOTE] = ACTIONS(4122), + [anon_sym_u8R_DQUOTE] = ACTIONS(4122), + [anon_sym_co_await] = ACTIONS(4120), + [anon_sym_new] = ACTIONS(4120), + [anon_sym_requires] = ACTIONS(4120), + [anon_sym_CARET_CARET] = ACTIONS(4122), + [anon_sym_LBRACK_COLON] = ACTIONS(4122), + [sym_this] = ACTIONS(4120), }, - [STATE(959)] = { - [sym_type_qualifier] = STATE(960), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6892), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(960), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4940), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4942), - [anon_sym_RBRACK] = ACTIONS(4944), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(830)] = { + [sym_identifier] = ACTIONS(4124), + [aux_sym_preproc_include_token1] = ACTIONS(4124), + [aux_sym_preproc_def_token1] = ACTIONS(4124), + [aux_sym_preproc_if_token1] = ACTIONS(4124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4124), + [sym_preproc_directive] = ACTIONS(4124), + [anon_sym_LPAREN2] = ACTIONS(4126), + [anon_sym_BANG] = ACTIONS(4126), + [anon_sym_TILDE] = ACTIONS(4126), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_PLUS] = ACTIONS(4124), + [anon_sym_STAR] = ACTIONS(4126), + [anon_sym_AMP_AMP] = ACTIONS(4126), + [anon_sym_AMP] = ACTIONS(4124), + [anon_sym_SEMI] = ACTIONS(4126), + [anon_sym___extension__] = ACTIONS(4124), + [anon_sym_typedef] = ACTIONS(4124), + [anon_sym_virtual] = ACTIONS(4124), + [anon_sym_extern] = ACTIONS(4124), + [anon_sym___attribute__] = ACTIONS(4124), + [anon_sym___attribute] = ACTIONS(4124), + [anon_sym_using] = ACTIONS(4124), + [anon_sym_COLON_COLON] = ACTIONS(4126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4126), + [anon_sym___declspec] = ACTIONS(4124), + [anon_sym___based] = ACTIONS(4124), + [anon_sym___cdecl] = ACTIONS(4124), + [anon_sym___clrcall] = ACTIONS(4124), + [anon_sym___stdcall] = ACTIONS(4124), + [anon_sym___fastcall] = ACTIONS(4124), + [anon_sym___thiscall] = ACTIONS(4124), + [anon_sym___vectorcall] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [anon_sym_RBRACE] = ACTIONS(4126), + [anon_sym_signed] = ACTIONS(4124), + [anon_sym_unsigned] = ACTIONS(4124), + [anon_sym_long] = ACTIONS(4124), + [anon_sym_short] = ACTIONS(4124), + [anon_sym_LBRACK] = ACTIONS(4124), + [anon_sym_static] = ACTIONS(4124), + [anon_sym_register] = ACTIONS(4124), + [anon_sym_inline] = ACTIONS(4124), + [anon_sym___inline] = ACTIONS(4124), + [anon_sym___inline__] = ACTIONS(4124), + [anon_sym___forceinline] = ACTIONS(4124), + [anon_sym_thread_local] = ACTIONS(4124), + [anon_sym___thread] = ACTIONS(4124), + [anon_sym_const] = ACTIONS(4124), + [anon_sym_constexpr] = ACTIONS(4124), + [anon_sym_volatile] = ACTIONS(4124), + [anon_sym_restrict] = ACTIONS(4124), + [anon_sym___restrict__] = ACTIONS(4124), + [anon_sym__Atomic] = ACTIONS(4124), + [anon_sym__Noreturn] = ACTIONS(4124), + [anon_sym_noreturn] = ACTIONS(4124), + [anon_sym__Nonnull] = ACTIONS(4124), + [anon_sym_mutable] = ACTIONS(4124), + [anon_sym_constinit] = ACTIONS(4124), + [anon_sym_consteval] = ACTIONS(4124), + [anon_sym_alignas] = ACTIONS(4124), + [anon_sym__Alignas] = ACTIONS(4124), + [sym_primitive_type] = ACTIONS(4124), + [anon_sym_enum] = ACTIONS(4124), + [anon_sym_class] = ACTIONS(4124), + [anon_sym_struct] = ACTIONS(4124), + [anon_sym_union] = ACTIONS(4124), + [anon_sym_if] = ACTIONS(4124), + [anon_sym_switch] = ACTIONS(4124), + [anon_sym_case] = ACTIONS(4124), + [anon_sym_default] = ACTIONS(4124), + [anon_sym_while] = ACTIONS(4124), + [anon_sym_do] = ACTIONS(4124), + [anon_sym_for] = ACTIONS(4124), + [anon_sym_return] = ACTIONS(4124), + [anon_sym_break] = ACTIONS(4124), + [anon_sym_continue] = ACTIONS(4124), + [anon_sym_goto] = ACTIONS(4124), + [anon_sym___try] = ACTIONS(4124), + [anon_sym___leave] = ACTIONS(4124), + [anon_sym_not] = ACTIONS(4124), + [anon_sym_compl] = ACTIONS(4124), + [anon_sym_DASH_DASH] = ACTIONS(4126), + [anon_sym_PLUS_PLUS] = ACTIONS(4126), + [anon_sym_sizeof] = ACTIONS(4124), + [anon_sym___alignof__] = ACTIONS(4124), + [anon_sym___alignof] = ACTIONS(4124), + [anon_sym__alignof] = ACTIONS(4124), + [anon_sym_alignof] = ACTIONS(4124), + [anon_sym__Alignof] = ACTIONS(4124), + [anon_sym_offsetof] = ACTIONS(4124), + [anon_sym__Generic] = ACTIONS(4124), + [anon_sym_typename] = ACTIONS(4124), + [anon_sym_asm] = ACTIONS(4124), + [anon_sym___asm__] = ACTIONS(4124), + [anon_sym___asm] = ACTIONS(4124), + [sym_number_literal] = ACTIONS(4126), + [anon_sym_L_SQUOTE] = ACTIONS(4126), + [anon_sym_u_SQUOTE] = ACTIONS(4126), + [anon_sym_U_SQUOTE] = ACTIONS(4126), + [anon_sym_u8_SQUOTE] = ACTIONS(4126), + [anon_sym_SQUOTE] = ACTIONS(4126), + [anon_sym_L_DQUOTE] = ACTIONS(4126), + [anon_sym_u_DQUOTE] = ACTIONS(4126), + [anon_sym_U_DQUOTE] = ACTIONS(4126), + [anon_sym_u8_DQUOTE] = ACTIONS(4126), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym_true] = ACTIONS(4124), + [sym_false] = ACTIONS(4124), + [anon_sym_NULL] = ACTIONS(4124), + [anon_sym_nullptr] = ACTIONS(4124), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4124), + [anon_sym_decltype] = ACTIONS(4124), + [anon_sym_explicit] = ACTIONS(4124), + [anon_sym_export] = ACTIONS(4124), + [anon_sym_import] = ACTIONS(4124), + [anon_sym_template] = ACTIONS(4124), + [anon_sym_operator] = ACTIONS(4124), + [anon_sym_try] = ACTIONS(4124), + [anon_sym_delete] = ACTIONS(4124), + [anon_sym_throw] = ACTIONS(4124), + [anon_sym_namespace] = ACTIONS(4124), + [anon_sym_static_assert] = ACTIONS(4124), + [anon_sym_concept] = ACTIONS(4124), + [anon_sym_co_return] = ACTIONS(4124), + [anon_sym_co_yield] = ACTIONS(4124), + [anon_sym_R_DQUOTE] = ACTIONS(4126), + [anon_sym_LR_DQUOTE] = ACTIONS(4126), + [anon_sym_uR_DQUOTE] = ACTIONS(4126), + [anon_sym_UR_DQUOTE] = ACTIONS(4126), + [anon_sym_u8R_DQUOTE] = ACTIONS(4126), + [anon_sym_co_await] = ACTIONS(4124), + [anon_sym_new] = ACTIONS(4124), + [anon_sym_requires] = ACTIONS(4124), + [anon_sym_CARET_CARET] = ACTIONS(4126), + [anon_sym_LBRACK_COLON] = ACTIONS(4126), + [sym_this] = ACTIONS(4124), }, - [STATE(960)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6970), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4946), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(4948), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(831)] = { + [sym_identifier] = ACTIONS(4387), + [aux_sym_preproc_include_token1] = ACTIONS(4387), + [aux_sym_preproc_def_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), + [sym_preproc_directive] = ACTIONS(4387), + [anon_sym_LPAREN2] = ACTIONS(4389), + [anon_sym_BANG] = ACTIONS(4389), + [anon_sym_TILDE] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4387), + [anon_sym_PLUS] = ACTIONS(4387), + [anon_sym_STAR] = ACTIONS(4389), + [anon_sym_AMP_AMP] = ACTIONS(4389), + [anon_sym_AMP] = ACTIONS(4387), + [anon_sym_SEMI] = ACTIONS(4389), + [anon_sym___extension__] = ACTIONS(4387), + [anon_sym_typedef] = ACTIONS(4387), + [anon_sym_virtual] = ACTIONS(4387), + [anon_sym_extern] = ACTIONS(4387), + [anon_sym___attribute__] = ACTIONS(4387), + [anon_sym___attribute] = ACTIONS(4387), + [anon_sym_using] = ACTIONS(4387), + [anon_sym_COLON_COLON] = ACTIONS(4389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4389), + [anon_sym___declspec] = ACTIONS(4387), + [anon_sym___based] = ACTIONS(4387), + [anon_sym___cdecl] = ACTIONS(4387), + [anon_sym___clrcall] = ACTIONS(4387), + [anon_sym___stdcall] = ACTIONS(4387), + [anon_sym___fastcall] = ACTIONS(4387), + [anon_sym___thiscall] = ACTIONS(4387), + [anon_sym___vectorcall] = ACTIONS(4387), + [anon_sym_LBRACE] = ACTIONS(4389), + [anon_sym_RBRACE] = ACTIONS(4389), + [anon_sym_signed] = ACTIONS(4387), + [anon_sym_unsigned] = ACTIONS(4387), + [anon_sym_long] = ACTIONS(4387), + [anon_sym_short] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_static] = ACTIONS(4387), + [anon_sym_register] = ACTIONS(4387), + [anon_sym_inline] = ACTIONS(4387), + [anon_sym___inline] = ACTIONS(4387), + [anon_sym___inline__] = ACTIONS(4387), + [anon_sym___forceinline] = ACTIONS(4387), + [anon_sym_thread_local] = ACTIONS(4387), + [anon_sym___thread] = ACTIONS(4387), + [anon_sym_const] = ACTIONS(4387), + [anon_sym_constexpr] = ACTIONS(4387), + [anon_sym_volatile] = ACTIONS(4387), + [anon_sym_restrict] = ACTIONS(4387), + [anon_sym___restrict__] = ACTIONS(4387), + [anon_sym__Atomic] = ACTIONS(4387), + [anon_sym__Noreturn] = ACTIONS(4387), + [anon_sym_noreturn] = ACTIONS(4387), + [anon_sym__Nonnull] = ACTIONS(4387), + [anon_sym_mutable] = ACTIONS(4387), + [anon_sym_constinit] = ACTIONS(4387), + [anon_sym_consteval] = ACTIONS(4387), + [anon_sym_alignas] = ACTIONS(4387), + [anon_sym__Alignas] = ACTIONS(4387), + [sym_primitive_type] = ACTIONS(4387), + [anon_sym_enum] = ACTIONS(4387), + [anon_sym_class] = ACTIONS(4387), + [anon_sym_struct] = ACTIONS(4387), + [anon_sym_union] = ACTIONS(4387), + [anon_sym_if] = ACTIONS(4387), + [anon_sym_switch] = ACTIONS(4387), + [anon_sym_case] = ACTIONS(4387), + [anon_sym_default] = ACTIONS(4387), + [anon_sym_while] = ACTIONS(4387), + [anon_sym_do] = ACTIONS(4387), + [anon_sym_for] = ACTIONS(4387), + [anon_sym_return] = ACTIONS(4387), + [anon_sym_break] = ACTIONS(4387), + [anon_sym_continue] = ACTIONS(4387), + [anon_sym_goto] = ACTIONS(4387), + [anon_sym___try] = ACTIONS(4387), + [anon_sym___leave] = ACTIONS(4387), + [anon_sym_not] = ACTIONS(4387), + [anon_sym_compl] = ACTIONS(4387), + [anon_sym_DASH_DASH] = ACTIONS(4389), + [anon_sym_PLUS_PLUS] = ACTIONS(4389), + [anon_sym_sizeof] = ACTIONS(4387), + [anon_sym___alignof__] = ACTIONS(4387), + [anon_sym___alignof] = ACTIONS(4387), + [anon_sym__alignof] = ACTIONS(4387), + [anon_sym_alignof] = ACTIONS(4387), + [anon_sym__Alignof] = ACTIONS(4387), + [anon_sym_offsetof] = ACTIONS(4387), + [anon_sym__Generic] = ACTIONS(4387), + [anon_sym_typename] = ACTIONS(4387), + [anon_sym_asm] = ACTIONS(4387), + [anon_sym___asm__] = ACTIONS(4387), + [anon_sym___asm] = ACTIONS(4387), + [sym_number_literal] = ACTIONS(4389), + [anon_sym_L_SQUOTE] = ACTIONS(4389), + [anon_sym_u_SQUOTE] = ACTIONS(4389), + [anon_sym_U_SQUOTE] = ACTIONS(4389), + [anon_sym_u8_SQUOTE] = ACTIONS(4389), + [anon_sym_SQUOTE] = ACTIONS(4389), + [anon_sym_L_DQUOTE] = ACTIONS(4389), + [anon_sym_u_DQUOTE] = ACTIONS(4389), + [anon_sym_U_DQUOTE] = ACTIONS(4389), + [anon_sym_u8_DQUOTE] = ACTIONS(4389), + [anon_sym_DQUOTE] = ACTIONS(4389), + [sym_true] = ACTIONS(4387), + [sym_false] = ACTIONS(4387), + [anon_sym_NULL] = ACTIONS(4387), + [anon_sym_nullptr] = ACTIONS(4387), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4387), + [anon_sym_decltype] = ACTIONS(4387), + [anon_sym_explicit] = ACTIONS(4387), + [anon_sym_export] = ACTIONS(4387), + [anon_sym_import] = ACTIONS(4387), + [anon_sym_template] = ACTIONS(4387), + [anon_sym_operator] = ACTIONS(4387), + [anon_sym_try] = ACTIONS(4387), + [anon_sym_delete] = ACTIONS(4387), + [anon_sym_throw] = ACTIONS(4387), + [anon_sym_namespace] = ACTIONS(4387), + [anon_sym_static_assert] = ACTIONS(4387), + [anon_sym_concept] = ACTIONS(4387), + [anon_sym_co_return] = ACTIONS(4387), + [anon_sym_co_yield] = ACTIONS(4387), + [anon_sym_R_DQUOTE] = ACTIONS(4389), + [anon_sym_LR_DQUOTE] = ACTIONS(4389), + [anon_sym_uR_DQUOTE] = ACTIONS(4389), + [anon_sym_UR_DQUOTE] = ACTIONS(4389), + [anon_sym_u8R_DQUOTE] = ACTIONS(4389), + [anon_sym_co_await] = ACTIONS(4387), + [anon_sym_new] = ACTIONS(4387), + [anon_sym_requires] = ACTIONS(4387), + [anon_sym_CARET_CARET] = ACTIONS(4389), + [anon_sym_LBRACK_COLON] = ACTIONS(4389), + [sym_this] = ACTIONS(4387), }, - [STATE(961)] = { - [sym_type_qualifier] = STATE(963), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6975), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(963), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4950), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4952), - [anon_sym_RBRACK] = ACTIONS(4954), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(832)] = { + [sym_identifier] = ACTIONS(4024), + [aux_sym_preproc_include_token1] = ACTIONS(4024), + [aux_sym_preproc_def_token1] = ACTIONS(4024), + [aux_sym_preproc_if_token1] = ACTIONS(4024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4024), + [sym_preproc_directive] = ACTIONS(4024), + [anon_sym_LPAREN2] = ACTIONS(4026), + [anon_sym_BANG] = ACTIONS(4026), + [anon_sym_TILDE] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_STAR] = ACTIONS(4026), + [anon_sym_AMP_AMP] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4024), + [anon_sym_SEMI] = ACTIONS(4026), + [anon_sym___extension__] = ACTIONS(4024), + [anon_sym_typedef] = ACTIONS(4024), + [anon_sym_virtual] = ACTIONS(4024), + [anon_sym_extern] = ACTIONS(4024), + [anon_sym___attribute__] = ACTIONS(4024), + [anon_sym___attribute] = ACTIONS(4024), + [anon_sym_using] = ACTIONS(4024), + [anon_sym_COLON_COLON] = ACTIONS(4026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4026), + [anon_sym___declspec] = ACTIONS(4024), + [anon_sym___based] = ACTIONS(4024), + [anon_sym___cdecl] = ACTIONS(4024), + [anon_sym___clrcall] = ACTIONS(4024), + [anon_sym___stdcall] = ACTIONS(4024), + [anon_sym___fastcall] = ACTIONS(4024), + [anon_sym___thiscall] = ACTIONS(4024), + [anon_sym___vectorcall] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4026), + [anon_sym_RBRACE] = ACTIONS(4026), + [anon_sym_signed] = ACTIONS(4024), + [anon_sym_unsigned] = ACTIONS(4024), + [anon_sym_long] = ACTIONS(4024), + [anon_sym_short] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4024), + [anon_sym_static] = ACTIONS(4024), + [anon_sym_register] = ACTIONS(4024), + [anon_sym_inline] = ACTIONS(4024), + [anon_sym___inline] = ACTIONS(4024), + [anon_sym___inline__] = ACTIONS(4024), + [anon_sym___forceinline] = ACTIONS(4024), + [anon_sym_thread_local] = ACTIONS(4024), + [anon_sym___thread] = ACTIONS(4024), + [anon_sym_const] = ACTIONS(4024), + [anon_sym_constexpr] = ACTIONS(4024), + [anon_sym_volatile] = ACTIONS(4024), + [anon_sym_restrict] = ACTIONS(4024), + [anon_sym___restrict__] = ACTIONS(4024), + [anon_sym__Atomic] = ACTIONS(4024), + [anon_sym__Noreturn] = ACTIONS(4024), + [anon_sym_noreturn] = ACTIONS(4024), + [anon_sym__Nonnull] = ACTIONS(4024), + [anon_sym_mutable] = ACTIONS(4024), + [anon_sym_constinit] = ACTIONS(4024), + [anon_sym_consteval] = ACTIONS(4024), + [anon_sym_alignas] = ACTIONS(4024), + [anon_sym__Alignas] = ACTIONS(4024), + [sym_primitive_type] = ACTIONS(4024), + [anon_sym_enum] = ACTIONS(4024), + [anon_sym_class] = ACTIONS(4024), + [anon_sym_struct] = ACTIONS(4024), + [anon_sym_union] = ACTIONS(4024), + [anon_sym_if] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_case] = ACTIONS(4024), + [anon_sym_default] = ACTIONS(4024), + [anon_sym_while] = ACTIONS(4024), + [anon_sym_do] = ACTIONS(4024), + [anon_sym_for] = ACTIONS(4024), + [anon_sym_return] = ACTIONS(4024), + [anon_sym_break] = ACTIONS(4024), + [anon_sym_continue] = ACTIONS(4024), + [anon_sym_goto] = ACTIONS(4024), + [anon_sym___try] = ACTIONS(4024), + [anon_sym___leave] = ACTIONS(4024), + [anon_sym_not] = ACTIONS(4024), + [anon_sym_compl] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4026), + [anon_sym_PLUS_PLUS] = ACTIONS(4026), + [anon_sym_sizeof] = ACTIONS(4024), + [anon_sym___alignof__] = ACTIONS(4024), + [anon_sym___alignof] = ACTIONS(4024), + [anon_sym__alignof] = ACTIONS(4024), + [anon_sym_alignof] = ACTIONS(4024), + [anon_sym__Alignof] = ACTIONS(4024), + [anon_sym_offsetof] = ACTIONS(4024), + [anon_sym__Generic] = ACTIONS(4024), + [anon_sym_typename] = ACTIONS(4024), + [anon_sym_asm] = ACTIONS(4024), + [anon_sym___asm__] = ACTIONS(4024), + [anon_sym___asm] = ACTIONS(4024), + [sym_number_literal] = ACTIONS(4026), + [anon_sym_L_SQUOTE] = ACTIONS(4026), + [anon_sym_u_SQUOTE] = ACTIONS(4026), + [anon_sym_U_SQUOTE] = ACTIONS(4026), + [anon_sym_u8_SQUOTE] = ACTIONS(4026), + [anon_sym_SQUOTE] = ACTIONS(4026), + [anon_sym_L_DQUOTE] = ACTIONS(4026), + [anon_sym_u_DQUOTE] = ACTIONS(4026), + [anon_sym_U_DQUOTE] = ACTIONS(4026), + [anon_sym_u8_DQUOTE] = ACTIONS(4026), + [anon_sym_DQUOTE] = ACTIONS(4026), + [sym_true] = ACTIONS(4024), + [sym_false] = ACTIONS(4024), + [anon_sym_NULL] = ACTIONS(4024), + [anon_sym_nullptr] = ACTIONS(4024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4024), + [anon_sym_decltype] = ACTIONS(4024), + [anon_sym_explicit] = ACTIONS(4024), + [anon_sym_export] = ACTIONS(4024), + [anon_sym_import] = ACTIONS(4024), + [anon_sym_template] = ACTIONS(4024), + [anon_sym_operator] = ACTIONS(4024), + [anon_sym_try] = ACTIONS(4024), + [anon_sym_delete] = ACTIONS(4024), + [anon_sym_throw] = ACTIONS(4024), + [anon_sym_namespace] = ACTIONS(4024), + [anon_sym_static_assert] = ACTIONS(4024), + [anon_sym_concept] = ACTIONS(4024), + [anon_sym_co_return] = ACTIONS(4024), + [anon_sym_co_yield] = ACTIONS(4024), + [anon_sym_R_DQUOTE] = ACTIONS(4026), + [anon_sym_LR_DQUOTE] = ACTIONS(4026), + [anon_sym_uR_DQUOTE] = ACTIONS(4026), + [anon_sym_UR_DQUOTE] = ACTIONS(4026), + [anon_sym_u8R_DQUOTE] = ACTIONS(4026), + [anon_sym_co_await] = ACTIONS(4024), + [anon_sym_new] = ACTIONS(4024), + [anon_sym_requires] = ACTIONS(4024), + [anon_sym_CARET_CARET] = ACTIONS(4026), + [anon_sym_LBRACK_COLON] = ACTIONS(4026), + [sym_this] = ACTIONS(4024), }, - [STATE(962)] = { - [sym_type_qualifier] = STATE(964), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6981), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(964), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4956), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4958), - [anon_sym_RBRACK] = ACTIONS(4960), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(833)] = { + [sym_expression] = STATE(5919), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_initializer_list] = STATE(5986), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2386), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(3752), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2386), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_PERCENT] = ACTIONS(2386), + [anon_sym_PIPE_PIPE] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_CARET] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_EQ_EQ] = ACTIONS(2386), + [anon_sym_BANG_EQ] = ACTIONS(2386), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_GT_EQ] = ACTIONS(2386), + [anon_sym_LT_EQ] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2386), + [anon_sym_GT_GT] = ACTIONS(2386), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym___attribute__] = ACTIONS(2384), + [anon_sym___attribute] = ACTIONS(2384), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_QMARK] = ACTIONS(2386), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_LT_EQ_GT] = ACTIONS(2386), + [anon_sym_or] = ACTIONS(2384), + [anon_sym_and] = ACTIONS(2384), + [anon_sym_bitor] = ACTIONS(2384), + [anon_sym_xor] = ACTIONS(2384), + [anon_sym_bitand] = ACTIONS(2384), + [anon_sym_not_eq] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DOT_STAR] = ACTIONS(2386), + [anon_sym_DASH_GT] = ACTIONS(2386), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(963)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6992), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4962), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(4964), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(834)] = { + [sym_identifier] = ACTIONS(3950), + [aux_sym_preproc_include_token1] = ACTIONS(3950), + [aux_sym_preproc_def_token1] = ACTIONS(3950), + [aux_sym_preproc_if_token1] = ACTIONS(3950), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), + [sym_preproc_directive] = ACTIONS(3950), + [anon_sym_LPAREN2] = ACTIONS(3952), + [anon_sym_BANG] = ACTIONS(3952), + [anon_sym_TILDE] = ACTIONS(3952), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_PLUS] = ACTIONS(3950), + [anon_sym_STAR] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym___extension__] = ACTIONS(3950), + [anon_sym_typedef] = ACTIONS(3950), + [anon_sym_virtual] = ACTIONS(3950), + [anon_sym_extern] = ACTIONS(3950), + [anon_sym___attribute__] = ACTIONS(3950), + [anon_sym___attribute] = ACTIONS(3950), + [anon_sym_using] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), + [anon_sym___declspec] = ACTIONS(3950), + [anon_sym___based] = ACTIONS(3950), + [anon_sym___cdecl] = ACTIONS(3950), + [anon_sym___clrcall] = ACTIONS(3950), + [anon_sym___stdcall] = ACTIONS(3950), + [anon_sym___fastcall] = ACTIONS(3950), + [anon_sym___thiscall] = ACTIONS(3950), + [anon_sym___vectorcall] = ACTIONS(3950), + [anon_sym_LBRACE] = ACTIONS(3952), + [anon_sym_RBRACE] = ACTIONS(3952), + [anon_sym_signed] = ACTIONS(3950), + [anon_sym_unsigned] = ACTIONS(3950), + [anon_sym_long] = ACTIONS(3950), + [anon_sym_short] = ACTIONS(3950), + [anon_sym_LBRACK] = ACTIONS(3950), + [anon_sym_static] = ACTIONS(3950), + [anon_sym_register] = ACTIONS(3950), + [anon_sym_inline] = ACTIONS(3950), + [anon_sym___inline] = ACTIONS(3950), + [anon_sym___inline__] = ACTIONS(3950), + [anon_sym___forceinline] = ACTIONS(3950), + [anon_sym_thread_local] = ACTIONS(3950), + [anon_sym___thread] = ACTIONS(3950), + [anon_sym_const] = ACTIONS(3950), + [anon_sym_constexpr] = ACTIONS(3950), + [anon_sym_volatile] = ACTIONS(3950), + [anon_sym_restrict] = ACTIONS(3950), + [anon_sym___restrict__] = ACTIONS(3950), + [anon_sym__Atomic] = ACTIONS(3950), + [anon_sym__Noreturn] = ACTIONS(3950), + [anon_sym_noreturn] = ACTIONS(3950), + [anon_sym__Nonnull] = ACTIONS(3950), + [anon_sym_mutable] = ACTIONS(3950), + [anon_sym_constinit] = ACTIONS(3950), + [anon_sym_consteval] = ACTIONS(3950), + [anon_sym_alignas] = ACTIONS(3950), + [anon_sym__Alignas] = ACTIONS(3950), + [sym_primitive_type] = ACTIONS(3950), + [anon_sym_enum] = ACTIONS(3950), + [anon_sym_class] = ACTIONS(3950), + [anon_sym_struct] = ACTIONS(3950), + [anon_sym_union] = ACTIONS(3950), + [anon_sym_if] = ACTIONS(3950), + [anon_sym_switch] = ACTIONS(3950), + [anon_sym_case] = ACTIONS(3950), + [anon_sym_default] = ACTIONS(3950), + [anon_sym_while] = ACTIONS(3950), + [anon_sym_do] = ACTIONS(3950), + [anon_sym_for] = ACTIONS(3950), + [anon_sym_return] = ACTIONS(3950), + [anon_sym_break] = ACTIONS(3950), + [anon_sym_continue] = ACTIONS(3950), + [anon_sym_goto] = ACTIONS(3950), + [anon_sym___try] = ACTIONS(3950), + [anon_sym___leave] = ACTIONS(3950), + [anon_sym_not] = ACTIONS(3950), + [anon_sym_compl] = ACTIONS(3950), + [anon_sym_DASH_DASH] = ACTIONS(3952), + [anon_sym_PLUS_PLUS] = ACTIONS(3952), + [anon_sym_sizeof] = ACTIONS(3950), + [anon_sym___alignof__] = ACTIONS(3950), + [anon_sym___alignof] = ACTIONS(3950), + [anon_sym__alignof] = ACTIONS(3950), + [anon_sym_alignof] = ACTIONS(3950), + [anon_sym__Alignof] = ACTIONS(3950), + [anon_sym_offsetof] = ACTIONS(3950), + [anon_sym__Generic] = ACTIONS(3950), + [anon_sym_typename] = ACTIONS(3950), + [anon_sym_asm] = ACTIONS(3950), + [anon_sym___asm__] = ACTIONS(3950), + [anon_sym___asm] = ACTIONS(3950), + [sym_number_literal] = ACTIONS(3952), + [anon_sym_L_SQUOTE] = ACTIONS(3952), + [anon_sym_u_SQUOTE] = ACTIONS(3952), + [anon_sym_U_SQUOTE] = ACTIONS(3952), + [anon_sym_u8_SQUOTE] = ACTIONS(3952), + [anon_sym_SQUOTE] = ACTIONS(3952), + [anon_sym_L_DQUOTE] = ACTIONS(3952), + [anon_sym_u_DQUOTE] = ACTIONS(3952), + [anon_sym_U_DQUOTE] = ACTIONS(3952), + [anon_sym_u8_DQUOTE] = ACTIONS(3952), + [anon_sym_DQUOTE] = ACTIONS(3952), + [sym_true] = ACTIONS(3950), + [sym_false] = ACTIONS(3950), + [anon_sym_NULL] = ACTIONS(3950), + [anon_sym_nullptr] = ACTIONS(3950), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3950), + [anon_sym_decltype] = ACTIONS(3950), + [anon_sym_explicit] = ACTIONS(3950), + [anon_sym_export] = ACTIONS(3950), + [anon_sym_import] = ACTIONS(3950), + [anon_sym_template] = ACTIONS(3950), + [anon_sym_operator] = ACTIONS(3950), + [anon_sym_try] = ACTIONS(3950), + [anon_sym_delete] = ACTIONS(3950), + [anon_sym_throw] = ACTIONS(3950), + [anon_sym_namespace] = ACTIONS(3950), + [anon_sym_static_assert] = ACTIONS(3950), + [anon_sym_concept] = ACTIONS(3950), + [anon_sym_co_return] = ACTIONS(3950), + [anon_sym_co_yield] = ACTIONS(3950), + [anon_sym_R_DQUOTE] = ACTIONS(3952), + [anon_sym_LR_DQUOTE] = ACTIONS(3952), + [anon_sym_uR_DQUOTE] = ACTIONS(3952), + [anon_sym_UR_DQUOTE] = ACTIONS(3952), + [anon_sym_u8R_DQUOTE] = ACTIONS(3952), + [anon_sym_co_await] = ACTIONS(3950), + [anon_sym_new] = ACTIONS(3950), + [anon_sym_requires] = ACTIONS(3950), + [anon_sym_CARET_CARET] = ACTIONS(3952), + [anon_sym_LBRACK_COLON] = ACTIONS(3952), + [sym_this] = ACTIONS(3950), }, - [STATE(964)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6999), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4966), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(4968), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(835)] = { + [sym_identifier] = ACTIONS(4080), + [aux_sym_preproc_include_token1] = ACTIONS(4080), + [aux_sym_preproc_def_token1] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), + [sym_preproc_directive] = ACTIONS(4080), + [anon_sym_LPAREN2] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_TILDE] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4080), + [anon_sym_PLUS] = ACTIONS(4080), + [anon_sym_STAR] = ACTIONS(4082), + [anon_sym_AMP_AMP] = ACTIONS(4082), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_SEMI] = ACTIONS(4082), + [anon_sym___extension__] = ACTIONS(4080), + [anon_sym_typedef] = ACTIONS(4080), + [anon_sym_virtual] = ACTIONS(4080), + [anon_sym_extern] = ACTIONS(4080), + [anon_sym___attribute__] = ACTIONS(4080), + [anon_sym___attribute] = ACTIONS(4080), + [anon_sym_using] = ACTIONS(4080), + [anon_sym_COLON_COLON] = ACTIONS(4082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), + [anon_sym___declspec] = ACTIONS(4080), + [anon_sym___based] = ACTIONS(4080), + [anon_sym___cdecl] = ACTIONS(4080), + [anon_sym___clrcall] = ACTIONS(4080), + [anon_sym___stdcall] = ACTIONS(4080), + [anon_sym___fastcall] = ACTIONS(4080), + [anon_sym___thiscall] = ACTIONS(4080), + [anon_sym___vectorcall] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4082), + [anon_sym_RBRACE] = ACTIONS(4082), + [anon_sym_signed] = ACTIONS(4080), + [anon_sym_unsigned] = ACTIONS(4080), + [anon_sym_long] = ACTIONS(4080), + [anon_sym_short] = ACTIONS(4080), + [anon_sym_LBRACK] = ACTIONS(4080), + [anon_sym_static] = ACTIONS(4080), + [anon_sym_register] = ACTIONS(4080), + [anon_sym_inline] = ACTIONS(4080), + [anon_sym___inline] = ACTIONS(4080), + [anon_sym___inline__] = ACTIONS(4080), + [anon_sym___forceinline] = ACTIONS(4080), + [anon_sym_thread_local] = ACTIONS(4080), + [anon_sym___thread] = ACTIONS(4080), + [anon_sym_const] = ACTIONS(4080), + [anon_sym_constexpr] = ACTIONS(4080), + [anon_sym_volatile] = ACTIONS(4080), + [anon_sym_restrict] = ACTIONS(4080), + [anon_sym___restrict__] = ACTIONS(4080), + [anon_sym__Atomic] = ACTIONS(4080), + [anon_sym__Noreturn] = ACTIONS(4080), + [anon_sym_noreturn] = ACTIONS(4080), + [anon_sym__Nonnull] = ACTIONS(4080), + [anon_sym_mutable] = ACTIONS(4080), + [anon_sym_constinit] = ACTIONS(4080), + [anon_sym_consteval] = ACTIONS(4080), + [anon_sym_alignas] = ACTIONS(4080), + [anon_sym__Alignas] = ACTIONS(4080), + [sym_primitive_type] = ACTIONS(4080), + [anon_sym_enum] = ACTIONS(4080), + [anon_sym_class] = ACTIONS(4080), + [anon_sym_struct] = ACTIONS(4080), + [anon_sym_union] = ACTIONS(4080), + [anon_sym_if] = ACTIONS(4080), + [anon_sym_switch] = ACTIONS(4080), + [anon_sym_case] = ACTIONS(4080), + [anon_sym_default] = ACTIONS(4080), + [anon_sym_while] = ACTIONS(4080), + [anon_sym_do] = ACTIONS(4080), + [anon_sym_for] = ACTIONS(4080), + [anon_sym_return] = ACTIONS(4080), + [anon_sym_break] = ACTIONS(4080), + [anon_sym_continue] = ACTIONS(4080), + [anon_sym_goto] = ACTIONS(4080), + [anon_sym___try] = ACTIONS(4080), + [anon_sym___leave] = ACTIONS(4080), + [anon_sym_not] = ACTIONS(4080), + [anon_sym_compl] = ACTIONS(4080), + [anon_sym_DASH_DASH] = ACTIONS(4082), + [anon_sym_PLUS_PLUS] = ACTIONS(4082), + [anon_sym_sizeof] = ACTIONS(4080), + [anon_sym___alignof__] = ACTIONS(4080), + [anon_sym___alignof] = ACTIONS(4080), + [anon_sym__alignof] = ACTIONS(4080), + [anon_sym_alignof] = ACTIONS(4080), + [anon_sym__Alignof] = ACTIONS(4080), + [anon_sym_offsetof] = ACTIONS(4080), + [anon_sym__Generic] = ACTIONS(4080), + [anon_sym_typename] = ACTIONS(4080), + [anon_sym_asm] = ACTIONS(4080), + [anon_sym___asm__] = ACTIONS(4080), + [anon_sym___asm] = ACTIONS(4080), + [sym_number_literal] = ACTIONS(4082), + [anon_sym_L_SQUOTE] = ACTIONS(4082), + [anon_sym_u_SQUOTE] = ACTIONS(4082), + [anon_sym_U_SQUOTE] = ACTIONS(4082), + [anon_sym_u8_SQUOTE] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4082), + [anon_sym_L_DQUOTE] = ACTIONS(4082), + [anon_sym_u_DQUOTE] = ACTIONS(4082), + [anon_sym_U_DQUOTE] = ACTIONS(4082), + [anon_sym_u8_DQUOTE] = ACTIONS(4082), + [anon_sym_DQUOTE] = ACTIONS(4082), + [sym_true] = ACTIONS(4080), + [sym_false] = ACTIONS(4080), + [anon_sym_NULL] = ACTIONS(4080), + [anon_sym_nullptr] = ACTIONS(4080), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4080), + [anon_sym_decltype] = ACTIONS(4080), + [anon_sym_explicit] = ACTIONS(4080), + [anon_sym_export] = ACTIONS(4080), + [anon_sym_import] = ACTIONS(4080), + [anon_sym_template] = ACTIONS(4080), + [anon_sym_operator] = ACTIONS(4080), + [anon_sym_try] = ACTIONS(4080), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_throw] = ACTIONS(4080), + [anon_sym_namespace] = ACTIONS(4080), + [anon_sym_static_assert] = ACTIONS(4080), + [anon_sym_concept] = ACTIONS(4080), + [anon_sym_co_return] = ACTIONS(4080), + [anon_sym_co_yield] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4080), + [anon_sym_new] = ACTIONS(4080), + [anon_sym_requires] = ACTIONS(4080), + [anon_sym_CARET_CARET] = ACTIONS(4082), + [anon_sym_LBRACK_COLON] = ACTIONS(4082), + [sym_this] = ACTIONS(4080), }, - [STATE(965)] = { - [sym_type_qualifier] = STATE(966), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6917), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(966), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4970), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4972), - [anon_sym_RBRACK] = ACTIONS(4974), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(836)] = { + [sym_identifier] = ACTIONS(4128), + [aux_sym_preproc_include_token1] = ACTIONS(4128), + [aux_sym_preproc_def_token1] = ACTIONS(4128), + [aux_sym_preproc_if_token1] = ACTIONS(4128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4128), + [sym_preproc_directive] = ACTIONS(4128), + [anon_sym_LPAREN2] = ACTIONS(4130), + [anon_sym_BANG] = ACTIONS(4130), + [anon_sym_TILDE] = ACTIONS(4130), + [anon_sym_DASH] = ACTIONS(4128), + [anon_sym_PLUS] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_AMP_AMP] = ACTIONS(4130), + [anon_sym_AMP] = ACTIONS(4128), + [anon_sym_SEMI] = ACTIONS(4130), + [anon_sym___extension__] = ACTIONS(4128), + [anon_sym_typedef] = ACTIONS(4128), + [anon_sym_virtual] = ACTIONS(4128), + [anon_sym_extern] = ACTIONS(4128), + [anon_sym___attribute__] = ACTIONS(4128), + [anon_sym___attribute] = ACTIONS(4128), + [anon_sym_using] = ACTIONS(4128), + [anon_sym_COLON_COLON] = ACTIONS(4130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4130), + [anon_sym___declspec] = ACTIONS(4128), + [anon_sym___based] = ACTIONS(4128), + [anon_sym___cdecl] = ACTIONS(4128), + [anon_sym___clrcall] = ACTIONS(4128), + [anon_sym___stdcall] = ACTIONS(4128), + [anon_sym___fastcall] = ACTIONS(4128), + [anon_sym___thiscall] = ACTIONS(4128), + [anon_sym___vectorcall] = ACTIONS(4128), + [anon_sym_LBRACE] = ACTIONS(4130), + [anon_sym_RBRACE] = ACTIONS(4130), + [anon_sym_signed] = ACTIONS(4128), + [anon_sym_unsigned] = ACTIONS(4128), + [anon_sym_long] = ACTIONS(4128), + [anon_sym_short] = ACTIONS(4128), + [anon_sym_LBRACK] = ACTIONS(4128), + [anon_sym_static] = ACTIONS(4128), + [anon_sym_register] = ACTIONS(4128), + [anon_sym_inline] = ACTIONS(4128), + [anon_sym___inline] = ACTIONS(4128), + [anon_sym___inline__] = ACTIONS(4128), + [anon_sym___forceinline] = ACTIONS(4128), + [anon_sym_thread_local] = ACTIONS(4128), + [anon_sym___thread] = ACTIONS(4128), + [anon_sym_const] = ACTIONS(4128), + [anon_sym_constexpr] = ACTIONS(4128), + [anon_sym_volatile] = ACTIONS(4128), + [anon_sym_restrict] = ACTIONS(4128), + [anon_sym___restrict__] = ACTIONS(4128), + [anon_sym__Atomic] = ACTIONS(4128), + [anon_sym__Noreturn] = ACTIONS(4128), + [anon_sym_noreturn] = ACTIONS(4128), + [anon_sym__Nonnull] = ACTIONS(4128), + [anon_sym_mutable] = ACTIONS(4128), + [anon_sym_constinit] = ACTIONS(4128), + [anon_sym_consteval] = ACTIONS(4128), + [anon_sym_alignas] = ACTIONS(4128), + [anon_sym__Alignas] = ACTIONS(4128), + [sym_primitive_type] = ACTIONS(4128), + [anon_sym_enum] = ACTIONS(4128), + [anon_sym_class] = ACTIONS(4128), + [anon_sym_struct] = ACTIONS(4128), + [anon_sym_union] = ACTIONS(4128), + [anon_sym_if] = ACTIONS(4128), + [anon_sym_switch] = ACTIONS(4128), + [anon_sym_case] = ACTIONS(4128), + [anon_sym_default] = ACTIONS(4128), + [anon_sym_while] = ACTIONS(4128), + [anon_sym_do] = ACTIONS(4128), + [anon_sym_for] = ACTIONS(4128), + [anon_sym_return] = ACTIONS(4128), + [anon_sym_break] = ACTIONS(4128), + [anon_sym_continue] = ACTIONS(4128), + [anon_sym_goto] = ACTIONS(4128), + [anon_sym___try] = ACTIONS(4128), + [anon_sym___leave] = ACTIONS(4128), + [anon_sym_not] = ACTIONS(4128), + [anon_sym_compl] = ACTIONS(4128), + [anon_sym_DASH_DASH] = ACTIONS(4130), + [anon_sym_PLUS_PLUS] = ACTIONS(4130), + [anon_sym_sizeof] = ACTIONS(4128), + [anon_sym___alignof__] = ACTIONS(4128), + [anon_sym___alignof] = ACTIONS(4128), + [anon_sym__alignof] = ACTIONS(4128), + [anon_sym_alignof] = ACTIONS(4128), + [anon_sym__Alignof] = ACTIONS(4128), + [anon_sym_offsetof] = ACTIONS(4128), + [anon_sym__Generic] = ACTIONS(4128), + [anon_sym_typename] = ACTIONS(4128), + [anon_sym_asm] = ACTIONS(4128), + [anon_sym___asm__] = ACTIONS(4128), + [anon_sym___asm] = ACTIONS(4128), + [sym_number_literal] = ACTIONS(4130), + [anon_sym_L_SQUOTE] = ACTIONS(4130), + [anon_sym_u_SQUOTE] = ACTIONS(4130), + [anon_sym_U_SQUOTE] = ACTIONS(4130), + [anon_sym_u8_SQUOTE] = ACTIONS(4130), + [anon_sym_SQUOTE] = ACTIONS(4130), + [anon_sym_L_DQUOTE] = ACTIONS(4130), + [anon_sym_u_DQUOTE] = ACTIONS(4130), + [anon_sym_U_DQUOTE] = ACTIONS(4130), + [anon_sym_u8_DQUOTE] = ACTIONS(4130), + [anon_sym_DQUOTE] = ACTIONS(4130), + [sym_true] = ACTIONS(4128), + [sym_false] = ACTIONS(4128), + [anon_sym_NULL] = ACTIONS(4128), + [anon_sym_nullptr] = ACTIONS(4128), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4128), + [anon_sym_decltype] = ACTIONS(4128), + [anon_sym_explicit] = ACTIONS(4128), + [anon_sym_export] = ACTIONS(4128), + [anon_sym_import] = ACTIONS(4128), + [anon_sym_template] = ACTIONS(4128), + [anon_sym_operator] = ACTIONS(4128), + [anon_sym_try] = ACTIONS(4128), + [anon_sym_delete] = ACTIONS(4128), + [anon_sym_throw] = ACTIONS(4128), + [anon_sym_namespace] = ACTIONS(4128), + [anon_sym_static_assert] = ACTIONS(4128), + [anon_sym_concept] = ACTIONS(4128), + [anon_sym_co_return] = ACTIONS(4128), + [anon_sym_co_yield] = ACTIONS(4128), + [anon_sym_R_DQUOTE] = ACTIONS(4130), + [anon_sym_LR_DQUOTE] = ACTIONS(4130), + [anon_sym_uR_DQUOTE] = ACTIONS(4130), + [anon_sym_UR_DQUOTE] = ACTIONS(4130), + [anon_sym_u8R_DQUOTE] = ACTIONS(4130), + [anon_sym_co_await] = ACTIONS(4128), + [anon_sym_new] = ACTIONS(4128), + [anon_sym_requires] = ACTIONS(4128), + [anon_sym_CARET_CARET] = ACTIONS(4130), + [anon_sym_LBRACK_COLON] = ACTIONS(4130), + [sym_this] = ACTIONS(4128), }, - [STATE(966)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6982), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4976), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(4978), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(837)] = { + [sym_identifier] = ACTIONS(3984), + [aux_sym_preproc_include_token1] = ACTIONS(3984), + [aux_sym_preproc_def_token1] = ACTIONS(3984), + [aux_sym_preproc_if_token1] = ACTIONS(3984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3984), + [sym_preproc_directive] = ACTIONS(3984), + [anon_sym_LPAREN2] = ACTIONS(3986), + [anon_sym_BANG] = ACTIONS(3986), + [anon_sym_TILDE] = ACTIONS(3986), + [anon_sym_DASH] = ACTIONS(3984), + [anon_sym_PLUS] = ACTIONS(3984), + [anon_sym_STAR] = ACTIONS(3986), + [anon_sym_AMP_AMP] = ACTIONS(3986), + [anon_sym_AMP] = ACTIONS(3984), + [anon_sym_SEMI] = ACTIONS(3986), + [anon_sym___extension__] = ACTIONS(3984), + [anon_sym_typedef] = ACTIONS(3984), + [anon_sym_virtual] = ACTIONS(3984), + [anon_sym_extern] = ACTIONS(3984), + [anon_sym___attribute__] = ACTIONS(3984), + [anon_sym___attribute] = ACTIONS(3984), + [anon_sym_using] = ACTIONS(3984), + [anon_sym_COLON_COLON] = ACTIONS(3986), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3986), + [anon_sym___declspec] = ACTIONS(3984), + [anon_sym___based] = ACTIONS(3984), + [anon_sym___cdecl] = ACTIONS(3984), + [anon_sym___clrcall] = ACTIONS(3984), + [anon_sym___stdcall] = ACTIONS(3984), + [anon_sym___fastcall] = ACTIONS(3984), + [anon_sym___thiscall] = ACTIONS(3984), + [anon_sym___vectorcall] = ACTIONS(3984), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_RBRACE] = ACTIONS(3986), + [anon_sym_signed] = ACTIONS(3984), + [anon_sym_unsigned] = ACTIONS(3984), + [anon_sym_long] = ACTIONS(3984), + [anon_sym_short] = ACTIONS(3984), + [anon_sym_LBRACK] = ACTIONS(3984), + [anon_sym_static] = ACTIONS(3984), + [anon_sym_register] = ACTIONS(3984), + [anon_sym_inline] = ACTIONS(3984), + [anon_sym___inline] = ACTIONS(3984), + [anon_sym___inline__] = ACTIONS(3984), + [anon_sym___forceinline] = ACTIONS(3984), + [anon_sym_thread_local] = ACTIONS(3984), + [anon_sym___thread] = ACTIONS(3984), + [anon_sym_const] = ACTIONS(3984), + [anon_sym_constexpr] = ACTIONS(3984), + [anon_sym_volatile] = ACTIONS(3984), + [anon_sym_restrict] = ACTIONS(3984), + [anon_sym___restrict__] = ACTIONS(3984), + [anon_sym__Atomic] = ACTIONS(3984), + [anon_sym__Noreturn] = ACTIONS(3984), + [anon_sym_noreturn] = ACTIONS(3984), + [anon_sym__Nonnull] = ACTIONS(3984), + [anon_sym_mutable] = ACTIONS(3984), + [anon_sym_constinit] = ACTIONS(3984), + [anon_sym_consteval] = ACTIONS(3984), + [anon_sym_alignas] = ACTIONS(3984), + [anon_sym__Alignas] = ACTIONS(3984), + [sym_primitive_type] = ACTIONS(3984), + [anon_sym_enum] = ACTIONS(3984), + [anon_sym_class] = ACTIONS(3984), + [anon_sym_struct] = ACTIONS(3984), + [anon_sym_union] = ACTIONS(3984), + [anon_sym_if] = ACTIONS(3984), + [anon_sym_switch] = ACTIONS(3984), + [anon_sym_case] = ACTIONS(3984), + [anon_sym_default] = ACTIONS(3984), + [anon_sym_while] = ACTIONS(3984), + [anon_sym_do] = ACTIONS(3984), + [anon_sym_for] = ACTIONS(3984), + [anon_sym_return] = ACTIONS(3984), + [anon_sym_break] = ACTIONS(3984), + [anon_sym_continue] = ACTIONS(3984), + [anon_sym_goto] = ACTIONS(3984), + [anon_sym___try] = ACTIONS(3984), + [anon_sym___leave] = ACTIONS(3984), + [anon_sym_not] = ACTIONS(3984), + [anon_sym_compl] = ACTIONS(3984), + [anon_sym_DASH_DASH] = ACTIONS(3986), + [anon_sym_PLUS_PLUS] = ACTIONS(3986), + [anon_sym_sizeof] = ACTIONS(3984), + [anon_sym___alignof__] = ACTIONS(3984), + [anon_sym___alignof] = ACTIONS(3984), + [anon_sym__alignof] = ACTIONS(3984), + [anon_sym_alignof] = ACTIONS(3984), + [anon_sym__Alignof] = ACTIONS(3984), + [anon_sym_offsetof] = ACTIONS(3984), + [anon_sym__Generic] = ACTIONS(3984), + [anon_sym_typename] = ACTIONS(3984), + [anon_sym_asm] = ACTIONS(3984), + [anon_sym___asm__] = ACTIONS(3984), + [anon_sym___asm] = ACTIONS(3984), + [sym_number_literal] = ACTIONS(3986), + [anon_sym_L_SQUOTE] = ACTIONS(3986), + [anon_sym_u_SQUOTE] = ACTIONS(3986), + [anon_sym_U_SQUOTE] = ACTIONS(3986), + [anon_sym_u8_SQUOTE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3986), + [anon_sym_L_DQUOTE] = ACTIONS(3986), + [anon_sym_u_DQUOTE] = ACTIONS(3986), + [anon_sym_U_DQUOTE] = ACTIONS(3986), + [anon_sym_u8_DQUOTE] = ACTIONS(3986), + [anon_sym_DQUOTE] = ACTIONS(3986), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3984), + [anon_sym_nullptr] = ACTIONS(3984), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3984), + [anon_sym_decltype] = ACTIONS(3984), + [anon_sym_explicit] = ACTIONS(3984), + [anon_sym_export] = ACTIONS(3984), + [anon_sym_import] = ACTIONS(3984), + [anon_sym_template] = ACTIONS(3984), + [anon_sym_operator] = ACTIONS(3984), + [anon_sym_try] = ACTIONS(3984), + [anon_sym_delete] = ACTIONS(3984), + [anon_sym_throw] = ACTIONS(3984), + [anon_sym_namespace] = ACTIONS(3984), + [anon_sym_static_assert] = ACTIONS(3984), + [anon_sym_concept] = ACTIONS(3984), + [anon_sym_co_return] = ACTIONS(3984), + [anon_sym_co_yield] = ACTIONS(3984), + [anon_sym_R_DQUOTE] = ACTIONS(3986), + [anon_sym_LR_DQUOTE] = ACTIONS(3986), + [anon_sym_uR_DQUOTE] = ACTIONS(3986), + [anon_sym_UR_DQUOTE] = ACTIONS(3986), + [anon_sym_u8R_DQUOTE] = ACTIONS(3986), + [anon_sym_co_await] = ACTIONS(3984), + [anon_sym_new] = ACTIONS(3984), + [anon_sym_requires] = ACTIONS(3984), + [anon_sym_CARET_CARET] = ACTIONS(3986), + [anon_sym_LBRACK_COLON] = ACTIONS(3986), + [sym_this] = ACTIONS(3984), }, - [STATE(967)] = { - [sym_type_qualifier] = STATE(968), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6984), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(968), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4980), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4982), - [anon_sym_RBRACK] = ACTIONS(4984), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(838)] = { + [sym_identifier] = ACTIONS(4196), + [aux_sym_preproc_include_token1] = ACTIONS(4196), + [aux_sym_preproc_def_token1] = ACTIONS(4196), + [aux_sym_preproc_if_token1] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4196), + [sym_preproc_directive] = ACTIONS(4196), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4198), + [anon_sym_TILDE] = ACTIONS(4198), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_AMP] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4198), + [anon_sym___extension__] = ACTIONS(4196), + [anon_sym_typedef] = ACTIONS(4196), + [anon_sym_virtual] = ACTIONS(4196), + [anon_sym_extern] = ACTIONS(4196), + [anon_sym___attribute__] = ACTIONS(4196), + [anon_sym___attribute] = ACTIONS(4196), + [anon_sym_using] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4198), + [anon_sym___declspec] = ACTIONS(4196), + [anon_sym___based] = ACTIONS(4196), + [anon_sym___cdecl] = ACTIONS(4196), + [anon_sym___clrcall] = ACTIONS(4196), + [anon_sym___stdcall] = ACTIONS(4196), + [anon_sym___fastcall] = ACTIONS(4196), + [anon_sym___thiscall] = ACTIONS(4196), + [anon_sym___vectorcall] = ACTIONS(4196), + [anon_sym_LBRACE] = ACTIONS(4198), + [anon_sym_RBRACE] = ACTIONS(4198), + [anon_sym_signed] = ACTIONS(4196), + [anon_sym_unsigned] = ACTIONS(4196), + [anon_sym_long] = ACTIONS(4196), + [anon_sym_short] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_static] = ACTIONS(4196), + [anon_sym_register] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym___inline] = ACTIONS(4196), + [anon_sym___inline__] = ACTIONS(4196), + [anon_sym___forceinline] = ACTIONS(4196), + [anon_sym_thread_local] = ACTIONS(4196), + [anon_sym___thread] = ACTIONS(4196), + [anon_sym_const] = ACTIONS(4196), + [anon_sym_constexpr] = ACTIONS(4196), + [anon_sym_volatile] = ACTIONS(4196), + [anon_sym_restrict] = ACTIONS(4196), + [anon_sym___restrict__] = ACTIONS(4196), + [anon_sym__Atomic] = ACTIONS(4196), + [anon_sym__Noreturn] = ACTIONS(4196), + [anon_sym_noreturn] = ACTIONS(4196), + [anon_sym__Nonnull] = ACTIONS(4196), + [anon_sym_mutable] = ACTIONS(4196), + [anon_sym_constinit] = ACTIONS(4196), + [anon_sym_consteval] = ACTIONS(4196), + [anon_sym_alignas] = ACTIONS(4196), + [anon_sym__Alignas] = ACTIONS(4196), + [sym_primitive_type] = ACTIONS(4196), + [anon_sym_enum] = ACTIONS(4196), + [anon_sym_class] = ACTIONS(4196), + [anon_sym_struct] = ACTIONS(4196), + [anon_sym_union] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_switch] = ACTIONS(4196), + [anon_sym_case] = ACTIONS(4196), + [anon_sym_default] = ACTIONS(4196), + [anon_sym_while] = ACTIONS(4196), + [anon_sym_do] = ACTIONS(4196), + [anon_sym_for] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_goto] = ACTIONS(4196), + [anon_sym___try] = ACTIONS(4196), + [anon_sym___leave] = ACTIONS(4196), + [anon_sym_not] = ACTIONS(4196), + [anon_sym_compl] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_sizeof] = ACTIONS(4196), + [anon_sym___alignof__] = ACTIONS(4196), + [anon_sym___alignof] = ACTIONS(4196), + [anon_sym__alignof] = ACTIONS(4196), + [anon_sym_alignof] = ACTIONS(4196), + [anon_sym__Alignof] = ACTIONS(4196), + [anon_sym_offsetof] = ACTIONS(4196), + [anon_sym__Generic] = ACTIONS(4196), + [anon_sym_typename] = ACTIONS(4196), + [anon_sym_asm] = ACTIONS(4196), + [anon_sym___asm__] = ACTIONS(4196), + [anon_sym___asm] = ACTIONS(4196), + [sym_number_literal] = ACTIONS(4198), + [anon_sym_L_SQUOTE] = ACTIONS(4198), + [anon_sym_u_SQUOTE] = ACTIONS(4198), + [anon_sym_U_SQUOTE] = ACTIONS(4198), + [anon_sym_u8_SQUOTE] = ACTIONS(4198), + [anon_sym_SQUOTE] = ACTIONS(4198), + [anon_sym_L_DQUOTE] = ACTIONS(4198), + [anon_sym_u_DQUOTE] = ACTIONS(4198), + [anon_sym_U_DQUOTE] = ACTIONS(4198), + [anon_sym_u8_DQUOTE] = ACTIONS(4198), + [anon_sym_DQUOTE] = ACTIONS(4198), + [sym_true] = ACTIONS(4196), + [sym_false] = ACTIONS(4196), + [anon_sym_NULL] = ACTIONS(4196), + [anon_sym_nullptr] = ACTIONS(4196), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4196), + [anon_sym_decltype] = ACTIONS(4196), + [anon_sym_explicit] = ACTIONS(4196), + [anon_sym_export] = ACTIONS(4196), + [anon_sym_import] = ACTIONS(4196), + [anon_sym_template] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_delete] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_namespace] = ACTIONS(4196), + [anon_sym_static_assert] = ACTIONS(4196), + [anon_sym_concept] = ACTIONS(4196), + [anon_sym_co_return] = ACTIONS(4196), + [anon_sym_co_yield] = ACTIONS(4196), + [anon_sym_R_DQUOTE] = ACTIONS(4198), + [anon_sym_LR_DQUOTE] = ACTIONS(4198), + [anon_sym_uR_DQUOTE] = ACTIONS(4198), + [anon_sym_UR_DQUOTE] = ACTIONS(4198), + [anon_sym_u8R_DQUOTE] = ACTIONS(4198), + [anon_sym_co_await] = ACTIONS(4196), + [anon_sym_new] = ACTIONS(4196), + [anon_sym_requires] = ACTIONS(4196), + [anon_sym_CARET_CARET] = ACTIONS(4198), + [anon_sym_LBRACK_COLON] = ACTIONS(4198), + [sym_this] = ACTIONS(4196), }, - [STATE(968)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6989), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4986), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(839)] = { + [sym_identifier] = ACTIONS(4200), + [aux_sym_preproc_include_token1] = ACTIONS(4200), + [aux_sym_preproc_def_token1] = ACTIONS(4200), + [aux_sym_preproc_if_token1] = ACTIONS(4200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4200), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4200), + [sym_preproc_directive] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(4202), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_AMP] = ACTIONS(4200), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym___extension__] = ACTIONS(4200), + [anon_sym_typedef] = ACTIONS(4200), + [anon_sym_virtual] = ACTIONS(4200), + [anon_sym_extern] = ACTIONS(4200), + [anon_sym___attribute__] = ACTIONS(4200), + [anon_sym___attribute] = ACTIONS(4200), + [anon_sym_using] = ACTIONS(4200), + [anon_sym_COLON_COLON] = ACTIONS(4202), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4202), + [anon_sym___declspec] = ACTIONS(4200), + [anon_sym___based] = ACTIONS(4200), + [anon_sym___cdecl] = ACTIONS(4200), + [anon_sym___clrcall] = ACTIONS(4200), + [anon_sym___stdcall] = ACTIONS(4200), + [anon_sym___fastcall] = ACTIONS(4200), + [anon_sym___thiscall] = ACTIONS(4200), + [anon_sym___vectorcall] = ACTIONS(4200), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_RBRACE] = ACTIONS(4202), + [anon_sym_signed] = ACTIONS(4200), + [anon_sym_unsigned] = ACTIONS(4200), + [anon_sym_long] = ACTIONS(4200), + [anon_sym_short] = ACTIONS(4200), + [anon_sym_LBRACK] = ACTIONS(4200), + [anon_sym_static] = ACTIONS(4200), + [anon_sym_register] = ACTIONS(4200), + [anon_sym_inline] = ACTIONS(4200), + [anon_sym___inline] = ACTIONS(4200), + [anon_sym___inline__] = ACTIONS(4200), + [anon_sym___forceinline] = ACTIONS(4200), + [anon_sym_thread_local] = ACTIONS(4200), + [anon_sym___thread] = ACTIONS(4200), + [anon_sym_const] = ACTIONS(4200), + [anon_sym_constexpr] = ACTIONS(4200), + [anon_sym_volatile] = ACTIONS(4200), + [anon_sym_restrict] = ACTIONS(4200), + [anon_sym___restrict__] = ACTIONS(4200), + [anon_sym__Atomic] = ACTIONS(4200), + [anon_sym__Noreturn] = ACTIONS(4200), + [anon_sym_noreturn] = ACTIONS(4200), + [anon_sym__Nonnull] = ACTIONS(4200), + [anon_sym_mutable] = ACTIONS(4200), + [anon_sym_constinit] = ACTIONS(4200), + [anon_sym_consteval] = ACTIONS(4200), + [anon_sym_alignas] = ACTIONS(4200), + [anon_sym__Alignas] = ACTIONS(4200), + [sym_primitive_type] = ACTIONS(4200), + [anon_sym_enum] = ACTIONS(4200), + [anon_sym_class] = ACTIONS(4200), + [anon_sym_struct] = ACTIONS(4200), + [anon_sym_union] = ACTIONS(4200), + [anon_sym_if] = ACTIONS(4200), + [anon_sym_switch] = ACTIONS(4200), + [anon_sym_case] = ACTIONS(4200), + [anon_sym_default] = ACTIONS(4200), + [anon_sym_while] = ACTIONS(4200), + [anon_sym_do] = ACTIONS(4200), + [anon_sym_for] = ACTIONS(4200), + [anon_sym_return] = ACTIONS(4200), + [anon_sym_break] = ACTIONS(4200), + [anon_sym_continue] = ACTIONS(4200), + [anon_sym_goto] = ACTIONS(4200), + [anon_sym___try] = ACTIONS(4200), + [anon_sym___leave] = ACTIONS(4200), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4202), + [anon_sym_sizeof] = ACTIONS(4200), + [anon_sym___alignof__] = ACTIONS(4200), + [anon_sym___alignof] = ACTIONS(4200), + [anon_sym__alignof] = ACTIONS(4200), + [anon_sym_alignof] = ACTIONS(4200), + [anon_sym__Alignof] = ACTIONS(4200), + [anon_sym_offsetof] = ACTIONS(4200), + [anon_sym__Generic] = ACTIONS(4200), + [anon_sym_typename] = ACTIONS(4200), + [anon_sym_asm] = ACTIONS(4200), + [anon_sym___asm__] = ACTIONS(4200), + [anon_sym___asm] = ACTIONS(4200), + [sym_number_literal] = ACTIONS(4202), + [anon_sym_L_SQUOTE] = ACTIONS(4202), + [anon_sym_u_SQUOTE] = ACTIONS(4202), + [anon_sym_U_SQUOTE] = ACTIONS(4202), + [anon_sym_u8_SQUOTE] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4202), + [anon_sym_L_DQUOTE] = ACTIONS(4202), + [anon_sym_u_DQUOTE] = ACTIONS(4202), + [anon_sym_U_DQUOTE] = ACTIONS(4202), + [anon_sym_u8_DQUOTE] = ACTIONS(4202), + [anon_sym_DQUOTE] = ACTIONS(4202), + [sym_true] = ACTIONS(4200), + [sym_false] = ACTIONS(4200), + [anon_sym_NULL] = ACTIONS(4200), + [anon_sym_nullptr] = ACTIONS(4200), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4200), + [anon_sym_decltype] = ACTIONS(4200), + [anon_sym_explicit] = ACTIONS(4200), + [anon_sym_export] = ACTIONS(4200), + [anon_sym_import] = ACTIONS(4200), + [anon_sym_template] = ACTIONS(4200), + [anon_sym_operator] = ACTIONS(4200), + [anon_sym_try] = ACTIONS(4200), + [anon_sym_delete] = ACTIONS(4200), + [anon_sym_throw] = ACTIONS(4200), + [anon_sym_namespace] = ACTIONS(4200), + [anon_sym_static_assert] = ACTIONS(4200), + [anon_sym_concept] = ACTIONS(4200), + [anon_sym_co_return] = ACTIONS(4200), + [anon_sym_co_yield] = ACTIONS(4200), + [anon_sym_R_DQUOTE] = ACTIONS(4202), + [anon_sym_LR_DQUOTE] = ACTIONS(4202), + [anon_sym_uR_DQUOTE] = ACTIONS(4202), + [anon_sym_UR_DQUOTE] = ACTIONS(4202), + [anon_sym_u8R_DQUOTE] = ACTIONS(4202), + [anon_sym_co_await] = ACTIONS(4200), + [anon_sym_new] = ACTIONS(4200), + [anon_sym_requires] = ACTIONS(4200), + [anon_sym_CARET_CARET] = ACTIONS(4202), + [anon_sym_LBRACK_COLON] = ACTIONS(4202), + [sym_this] = ACTIONS(4200), }, - [STATE(969)] = { - [sym_type_qualifier] = STATE(970), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(7030), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(970), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4990), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4992), - [anon_sym_RBRACK] = ACTIONS(4994), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(840)] = { + [sym_identifier] = ACTIONS(4204), + [aux_sym_preproc_include_token1] = ACTIONS(4204), + [aux_sym_preproc_def_token1] = ACTIONS(4204), + [aux_sym_preproc_if_token1] = ACTIONS(4204), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4204), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4204), + [sym_preproc_directive] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(4206), + [anon_sym_BANG] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4206), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4206), + [anon_sym_AMP_AMP] = ACTIONS(4206), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym___extension__] = ACTIONS(4204), + [anon_sym_typedef] = ACTIONS(4204), + [anon_sym_virtual] = ACTIONS(4204), + [anon_sym_extern] = ACTIONS(4204), + [anon_sym___attribute__] = ACTIONS(4204), + [anon_sym___attribute] = ACTIONS(4204), + [anon_sym_using] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4206), + [anon_sym___declspec] = ACTIONS(4204), + [anon_sym___based] = ACTIONS(4204), + [anon_sym___cdecl] = ACTIONS(4204), + [anon_sym___clrcall] = ACTIONS(4204), + [anon_sym___stdcall] = ACTIONS(4204), + [anon_sym___fastcall] = ACTIONS(4204), + [anon_sym___thiscall] = ACTIONS(4204), + [anon_sym___vectorcall] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_RBRACE] = ACTIONS(4206), + [anon_sym_signed] = ACTIONS(4204), + [anon_sym_unsigned] = ACTIONS(4204), + [anon_sym_long] = ACTIONS(4204), + [anon_sym_short] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_static] = ACTIONS(4204), + [anon_sym_register] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym___inline] = ACTIONS(4204), + [anon_sym___inline__] = ACTIONS(4204), + [anon_sym___forceinline] = ACTIONS(4204), + [anon_sym_thread_local] = ACTIONS(4204), + [anon_sym___thread] = ACTIONS(4204), + [anon_sym_const] = ACTIONS(4204), + [anon_sym_constexpr] = ACTIONS(4204), + [anon_sym_volatile] = ACTIONS(4204), + [anon_sym_restrict] = ACTIONS(4204), + [anon_sym___restrict__] = ACTIONS(4204), + [anon_sym__Atomic] = ACTIONS(4204), + [anon_sym__Noreturn] = ACTIONS(4204), + [anon_sym_noreturn] = ACTIONS(4204), + [anon_sym__Nonnull] = ACTIONS(4204), + [anon_sym_mutable] = ACTIONS(4204), + [anon_sym_constinit] = ACTIONS(4204), + [anon_sym_consteval] = ACTIONS(4204), + [anon_sym_alignas] = ACTIONS(4204), + [anon_sym__Alignas] = ACTIONS(4204), + [sym_primitive_type] = ACTIONS(4204), + [anon_sym_enum] = ACTIONS(4204), + [anon_sym_class] = ACTIONS(4204), + [anon_sym_struct] = ACTIONS(4204), + [anon_sym_union] = ACTIONS(4204), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_switch] = ACTIONS(4204), + [anon_sym_case] = ACTIONS(4204), + [anon_sym_default] = ACTIONS(4204), + [anon_sym_while] = ACTIONS(4204), + [anon_sym_do] = ACTIONS(4204), + [anon_sym_for] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_goto] = ACTIONS(4204), + [anon_sym___try] = ACTIONS(4204), + [anon_sym___leave] = ACTIONS(4204), + [anon_sym_not] = ACTIONS(4204), + [anon_sym_compl] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4206), + [anon_sym_PLUS_PLUS] = ACTIONS(4206), + [anon_sym_sizeof] = ACTIONS(4204), + [anon_sym___alignof__] = ACTIONS(4204), + [anon_sym___alignof] = ACTIONS(4204), + [anon_sym__alignof] = ACTIONS(4204), + [anon_sym_alignof] = ACTIONS(4204), + [anon_sym__Alignof] = ACTIONS(4204), + [anon_sym_offsetof] = ACTIONS(4204), + [anon_sym__Generic] = ACTIONS(4204), + [anon_sym_typename] = ACTIONS(4204), + [anon_sym_asm] = ACTIONS(4204), + [anon_sym___asm__] = ACTIONS(4204), + [anon_sym___asm] = ACTIONS(4204), + [sym_number_literal] = ACTIONS(4206), + [anon_sym_L_SQUOTE] = ACTIONS(4206), + [anon_sym_u_SQUOTE] = ACTIONS(4206), + [anon_sym_U_SQUOTE] = ACTIONS(4206), + [anon_sym_u8_SQUOTE] = ACTIONS(4206), + [anon_sym_SQUOTE] = ACTIONS(4206), + [anon_sym_L_DQUOTE] = ACTIONS(4206), + [anon_sym_u_DQUOTE] = ACTIONS(4206), + [anon_sym_U_DQUOTE] = ACTIONS(4206), + [anon_sym_u8_DQUOTE] = ACTIONS(4206), + [anon_sym_DQUOTE] = ACTIONS(4206), + [sym_true] = ACTIONS(4204), + [sym_false] = ACTIONS(4204), + [anon_sym_NULL] = ACTIONS(4204), + [anon_sym_nullptr] = ACTIONS(4204), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4204), + [anon_sym_decltype] = ACTIONS(4204), + [anon_sym_explicit] = ACTIONS(4204), + [anon_sym_export] = ACTIONS(4204), + [anon_sym_import] = ACTIONS(4204), + [anon_sym_template] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_delete] = ACTIONS(4204), + [anon_sym_throw] = ACTIONS(4204), + [anon_sym_namespace] = ACTIONS(4204), + [anon_sym_static_assert] = ACTIONS(4204), + [anon_sym_concept] = ACTIONS(4204), + [anon_sym_co_return] = ACTIONS(4204), + [anon_sym_co_yield] = ACTIONS(4204), + [anon_sym_R_DQUOTE] = ACTIONS(4206), + [anon_sym_LR_DQUOTE] = ACTIONS(4206), + [anon_sym_uR_DQUOTE] = ACTIONS(4206), + [anon_sym_UR_DQUOTE] = ACTIONS(4206), + [anon_sym_u8R_DQUOTE] = ACTIONS(4206), + [anon_sym_co_await] = ACTIONS(4204), + [anon_sym_new] = ACTIONS(4204), + [anon_sym_requires] = ACTIONS(4204), + [anon_sym_CARET_CARET] = ACTIONS(4206), + [anon_sym_LBRACK_COLON] = ACTIONS(4206), + [sym_this] = ACTIONS(4204), }, - [STATE(970)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6949), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(4996), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(4998), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(841)] = { + [sym_identifier] = ACTIONS(4084), + [aux_sym_preproc_include_token1] = ACTIONS(4084), + [aux_sym_preproc_def_token1] = ACTIONS(4084), + [aux_sym_preproc_if_token1] = ACTIONS(4084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4084), + [sym_preproc_directive] = ACTIONS(4084), + [anon_sym_LPAREN2] = ACTIONS(4086), + [anon_sym_BANG] = ACTIONS(4086), + [anon_sym_TILDE] = ACTIONS(4086), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_STAR] = ACTIONS(4086), + [anon_sym_AMP_AMP] = ACTIONS(4086), + [anon_sym_AMP] = ACTIONS(4084), + [anon_sym_SEMI] = ACTIONS(4086), + [anon_sym___extension__] = ACTIONS(4084), + [anon_sym_typedef] = ACTIONS(4084), + [anon_sym_virtual] = ACTIONS(4084), + [anon_sym_extern] = ACTIONS(4084), + [anon_sym___attribute__] = ACTIONS(4084), + [anon_sym___attribute] = ACTIONS(4084), + [anon_sym_using] = ACTIONS(4084), + [anon_sym_COLON_COLON] = ACTIONS(4086), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4086), + [anon_sym___declspec] = ACTIONS(4084), + [anon_sym___based] = ACTIONS(4084), + [anon_sym___cdecl] = ACTIONS(4084), + [anon_sym___clrcall] = ACTIONS(4084), + [anon_sym___stdcall] = ACTIONS(4084), + [anon_sym___fastcall] = ACTIONS(4084), + [anon_sym___thiscall] = ACTIONS(4084), + [anon_sym___vectorcall] = ACTIONS(4084), + [anon_sym_LBRACE] = ACTIONS(4086), + [anon_sym_RBRACE] = ACTIONS(4086), + [anon_sym_signed] = ACTIONS(4084), + [anon_sym_unsigned] = ACTIONS(4084), + [anon_sym_long] = ACTIONS(4084), + [anon_sym_short] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_static] = ACTIONS(4084), + [anon_sym_register] = ACTIONS(4084), + [anon_sym_inline] = ACTIONS(4084), + [anon_sym___inline] = ACTIONS(4084), + [anon_sym___inline__] = ACTIONS(4084), + [anon_sym___forceinline] = ACTIONS(4084), + [anon_sym_thread_local] = ACTIONS(4084), + [anon_sym___thread] = ACTIONS(4084), + [anon_sym_const] = ACTIONS(4084), + [anon_sym_constexpr] = ACTIONS(4084), + [anon_sym_volatile] = ACTIONS(4084), + [anon_sym_restrict] = ACTIONS(4084), + [anon_sym___restrict__] = ACTIONS(4084), + [anon_sym__Atomic] = ACTIONS(4084), + [anon_sym__Noreturn] = ACTIONS(4084), + [anon_sym_noreturn] = ACTIONS(4084), + [anon_sym__Nonnull] = ACTIONS(4084), + [anon_sym_mutable] = ACTIONS(4084), + [anon_sym_constinit] = ACTIONS(4084), + [anon_sym_consteval] = ACTIONS(4084), + [anon_sym_alignas] = ACTIONS(4084), + [anon_sym__Alignas] = ACTIONS(4084), + [sym_primitive_type] = ACTIONS(4084), + [anon_sym_enum] = ACTIONS(4084), + [anon_sym_class] = ACTIONS(4084), + [anon_sym_struct] = ACTIONS(4084), + [anon_sym_union] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4084), + [anon_sym_switch] = ACTIONS(4084), + [anon_sym_case] = ACTIONS(4084), + [anon_sym_default] = ACTIONS(4084), + [anon_sym_while] = ACTIONS(4084), + [anon_sym_do] = ACTIONS(4084), + [anon_sym_for] = ACTIONS(4084), + [anon_sym_return] = ACTIONS(4084), + [anon_sym_break] = ACTIONS(4084), + [anon_sym_continue] = ACTIONS(4084), + [anon_sym_goto] = ACTIONS(4084), + [anon_sym___try] = ACTIONS(4084), + [anon_sym___leave] = ACTIONS(4084), + [anon_sym_not] = ACTIONS(4084), + [anon_sym_compl] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4086), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_sizeof] = ACTIONS(4084), + [anon_sym___alignof__] = ACTIONS(4084), + [anon_sym___alignof] = ACTIONS(4084), + [anon_sym__alignof] = ACTIONS(4084), + [anon_sym_alignof] = ACTIONS(4084), + [anon_sym__Alignof] = ACTIONS(4084), + [anon_sym_offsetof] = ACTIONS(4084), + [anon_sym__Generic] = ACTIONS(4084), + [anon_sym_typename] = ACTIONS(4084), + [anon_sym_asm] = ACTIONS(4084), + [anon_sym___asm__] = ACTIONS(4084), + [anon_sym___asm] = ACTIONS(4084), + [sym_number_literal] = ACTIONS(4086), + [anon_sym_L_SQUOTE] = ACTIONS(4086), + [anon_sym_u_SQUOTE] = ACTIONS(4086), + [anon_sym_U_SQUOTE] = ACTIONS(4086), + [anon_sym_u8_SQUOTE] = ACTIONS(4086), + [anon_sym_SQUOTE] = ACTIONS(4086), + [anon_sym_L_DQUOTE] = ACTIONS(4086), + [anon_sym_u_DQUOTE] = ACTIONS(4086), + [anon_sym_U_DQUOTE] = ACTIONS(4086), + [anon_sym_u8_DQUOTE] = ACTIONS(4086), + [anon_sym_DQUOTE] = ACTIONS(4086), + [sym_true] = ACTIONS(4084), + [sym_false] = ACTIONS(4084), + [anon_sym_NULL] = ACTIONS(4084), + [anon_sym_nullptr] = ACTIONS(4084), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4084), + [anon_sym_decltype] = ACTIONS(4084), + [anon_sym_explicit] = ACTIONS(4084), + [anon_sym_export] = ACTIONS(4084), + [anon_sym_import] = ACTIONS(4084), + [anon_sym_template] = ACTIONS(4084), + [anon_sym_operator] = ACTIONS(4084), + [anon_sym_try] = ACTIONS(4084), + [anon_sym_delete] = ACTIONS(4084), + [anon_sym_throw] = ACTIONS(4084), + [anon_sym_namespace] = ACTIONS(4084), + [anon_sym_static_assert] = ACTIONS(4084), + [anon_sym_concept] = ACTIONS(4084), + [anon_sym_co_return] = ACTIONS(4084), + [anon_sym_co_yield] = ACTIONS(4084), + [anon_sym_R_DQUOTE] = ACTIONS(4086), + [anon_sym_LR_DQUOTE] = ACTIONS(4086), + [anon_sym_uR_DQUOTE] = ACTIONS(4086), + [anon_sym_UR_DQUOTE] = ACTIONS(4086), + [anon_sym_u8R_DQUOTE] = ACTIONS(4086), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(4084), + [anon_sym_requires] = ACTIONS(4084), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(4086), + [sym_this] = ACTIONS(4084), }, - [STATE(971)] = { - [sym_type_qualifier] = STATE(972), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6952), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(972), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(5000), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5002), - [anon_sym_RBRACK] = ACTIONS(5004), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(842)] = { + [sym_identifier] = ACTIONS(4088), + [aux_sym_preproc_include_token1] = ACTIONS(4088), + [aux_sym_preproc_def_token1] = ACTIONS(4088), + [aux_sym_preproc_if_token1] = ACTIONS(4088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4088), + [sym_preproc_directive] = ACTIONS(4088), + [anon_sym_LPAREN2] = ACTIONS(4090), + [anon_sym_BANG] = ACTIONS(4090), + [anon_sym_TILDE] = ACTIONS(4090), + [anon_sym_DASH] = ACTIONS(4088), + [anon_sym_PLUS] = ACTIONS(4088), + [anon_sym_STAR] = ACTIONS(4090), + [anon_sym_AMP_AMP] = ACTIONS(4090), + [anon_sym_AMP] = ACTIONS(4088), + [anon_sym_SEMI] = ACTIONS(4090), + [anon_sym___extension__] = ACTIONS(4088), + [anon_sym_typedef] = ACTIONS(4088), + [anon_sym_virtual] = ACTIONS(4088), + [anon_sym_extern] = ACTIONS(4088), + [anon_sym___attribute__] = ACTIONS(4088), + [anon_sym___attribute] = ACTIONS(4088), + [anon_sym_using] = ACTIONS(4088), + [anon_sym_COLON_COLON] = ACTIONS(4090), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4090), + [anon_sym___declspec] = ACTIONS(4088), + [anon_sym___based] = ACTIONS(4088), + [anon_sym___cdecl] = ACTIONS(4088), + [anon_sym___clrcall] = ACTIONS(4088), + [anon_sym___stdcall] = ACTIONS(4088), + [anon_sym___fastcall] = ACTIONS(4088), + [anon_sym___thiscall] = ACTIONS(4088), + [anon_sym___vectorcall] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4090), + [anon_sym_signed] = ACTIONS(4088), + [anon_sym_unsigned] = ACTIONS(4088), + [anon_sym_long] = ACTIONS(4088), + [anon_sym_short] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(4088), + [anon_sym_static] = ACTIONS(4088), + [anon_sym_register] = ACTIONS(4088), + [anon_sym_inline] = ACTIONS(4088), + [anon_sym___inline] = ACTIONS(4088), + [anon_sym___inline__] = ACTIONS(4088), + [anon_sym___forceinline] = ACTIONS(4088), + [anon_sym_thread_local] = ACTIONS(4088), + [anon_sym___thread] = ACTIONS(4088), + [anon_sym_const] = ACTIONS(4088), + [anon_sym_constexpr] = ACTIONS(4088), + [anon_sym_volatile] = ACTIONS(4088), + [anon_sym_restrict] = ACTIONS(4088), + [anon_sym___restrict__] = ACTIONS(4088), + [anon_sym__Atomic] = ACTIONS(4088), + [anon_sym__Noreturn] = ACTIONS(4088), + [anon_sym_noreturn] = ACTIONS(4088), + [anon_sym__Nonnull] = ACTIONS(4088), + [anon_sym_mutable] = ACTIONS(4088), + [anon_sym_constinit] = ACTIONS(4088), + [anon_sym_consteval] = ACTIONS(4088), + [anon_sym_alignas] = ACTIONS(4088), + [anon_sym__Alignas] = ACTIONS(4088), + [sym_primitive_type] = ACTIONS(4088), + [anon_sym_enum] = ACTIONS(4088), + [anon_sym_class] = ACTIONS(4088), + [anon_sym_struct] = ACTIONS(4088), + [anon_sym_union] = ACTIONS(4088), + [anon_sym_if] = ACTIONS(4088), + [anon_sym_switch] = ACTIONS(4088), + [anon_sym_case] = ACTIONS(4088), + [anon_sym_default] = ACTIONS(4088), + [anon_sym_while] = ACTIONS(4088), + [anon_sym_do] = ACTIONS(4088), + [anon_sym_for] = ACTIONS(4088), + [anon_sym_return] = ACTIONS(4088), + [anon_sym_break] = ACTIONS(4088), + [anon_sym_continue] = ACTIONS(4088), + [anon_sym_goto] = ACTIONS(4088), + [anon_sym___try] = ACTIONS(4088), + [anon_sym___leave] = ACTIONS(4088), + [anon_sym_not] = ACTIONS(4088), + [anon_sym_compl] = ACTIONS(4088), + [anon_sym_DASH_DASH] = ACTIONS(4090), + [anon_sym_PLUS_PLUS] = ACTIONS(4090), + [anon_sym_sizeof] = ACTIONS(4088), + [anon_sym___alignof__] = ACTIONS(4088), + [anon_sym___alignof] = ACTIONS(4088), + [anon_sym__alignof] = ACTIONS(4088), + [anon_sym_alignof] = ACTIONS(4088), + [anon_sym__Alignof] = ACTIONS(4088), + [anon_sym_offsetof] = ACTIONS(4088), + [anon_sym__Generic] = ACTIONS(4088), + [anon_sym_typename] = ACTIONS(4088), + [anon_sym_asm] = ACTIONS(4088), + [anon_sym___asm__] = ACTIONS(4088), + [anon_sym___asm] = ACTIONS(4088), + [sym_number_literal] = ACTIONS(4090), + [anon_sym_L_SQUOTE] = ACTIONS(4090), + [anon_sym_u_SQUOTE] = ACTIONS(4090), + [anon_sym_U_SQUOTE] = ACTIONS(4090), + [anon_sym_u8_SQUOTE] = ACTIONS(4090), + [anon_sym_SQUOTE] = ACTIONS(4090), + [anon_sym_L_DQUOTE] = ACTIONS(4090), + [anon_sym_u_DQUOTE] = ACTIONS(4090), + [anon_sym_U_DQUOTE] = ACTIONS(4090), + [anon_sym_u8_DQUOTE] = ACTIONS(4090), + [anon_sym_DQUOTE] = ACTIONS(4090), + [sym_true] = ACTIONS(4088), + [sym_false] = ACTIONS(4088), + [anon_sym_NULL] = ACTIONS(4088), + [anon_sym_nullptr] = ACTIONS(4088), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4088), + [anon_sym_decltype] = ACTIONS(4088), + [anon_sym_explicit] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4088), + [anon_sym_import] = ACTIONS(4088), + [anon_sym_template] = ACTIONS(4088), + [anon_sym_operator] = ACTIONS(4088), + [anon_sym_try] = ACTIONS(4088), + [anon_sym_delete] = ACTIONS(4088), + [anon_sym_throw] = ACTIONS(4088), + [anon_sym_namespace] = ACTIONS(4088), + [anon_sym_static_assert] = ACTIONS(4088), + [anon_sym_concept] = ACTIONS(4088), + [anon_sym_co_return] = ACTIONS(4088), + [anon_sym_co_yield] = ACTIONS(4088), + [anon_sym_R_DQUOTE] = ACTIONS(4090), + [anon_sym_LR_DQUOTE] = ACTIONS(4090), + [anon_sym_uR_DQUOTE] = ACTIONS(4090), + [anon_sym_UR_DQUOTE] = ACTIONS(4090), + [anon_sym_u8R_DQUOTE] = ACTIONS(4090), + [anon_sym_co_await] = ACTIONS(4088), + [anon_sym_new] = ACTIONS(4088), + [anon_sym_requires] = ACTIONS(4088), + [anon_sym_CARET_CARET] = ACTIONS(4090), + [anon_sym_LBRACK_COLON] = ACTIONS(4090), + [sym_this] = ACTIONS(4088), }, - [STATE(972)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6967), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(5006), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(5008), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(843)] = { + [sym_identifier] = ACTIONS(3925), + [aux_sym_preproc_include_token1] = ACTIONS(3925), + [aux_sym_preproc_def_token1] = ACTIONS(3925), + [aux_sym_preproc_if_token1] = ACTIONS(3925), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3925), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3925), + [sym_preproc_directive] = ACTIONS(3925), + [anon_sym_LPAREN2] = ACTIONS(3928), + [anon_sym_BANG] = ACTIONS(3928), + [anon_sym_TILDE] = ACTIONS(3928), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_PLUS] = ACTIONS(3925), + [anon_sym_STAR] = ACTIONS(3928), + [anon_sym_AMP_AMP] = ACTIONS(3928), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_SEMI] = ACTIONS(3928), + [anon_sym___extension__] = ACTIONS(3925), + [anon_sym_typedef] = ACTIONS(3925), + [anon_sym_virtual] = ACTIONS(3925), + [anon_sym_extern] = ACTIONS(3925), + [anon_sym___attribute__] = ACTIONS(3925), + [anon_sym___attribute] = ACTIONS(3925), + [anon_sym_using] = ACTIONS(3925), + [anon_sym_COLON_COLON] = ACTIONS(3928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3928), + [anon_sym___declspec] = ACTIONS(3925), + [anon_sym___based] = ACTIONS(3925), + [anon_sym___cdecl] = ACTIONS(3925), + [anon_sym___clrcall] = ACTIONS(3925), + [anon_sym___stdcall] = ACTIONS(3925), + [anon_sym___fastcall] = ACTIONS(3925), + [anon_sym___thiscall] = ACTIONS(3925), + [anon_sym___vectorcall] = ACTIONS(3925), + [anon_sym_LBRACE] = ACTIONS(3928), + [anon_sym_RBRACE] = ACTIONS(3928), + [anon_sym_signed] = ACTIONS(3925), + [anon_sym_unsigned] = ACTIONS(3925), + [anon_sym_long] = ACTIONS(3925), + [anon_sym_short] = ACTIONS(3925), + [anon_sym_LBRACK] = ACTIONS(3925), + [anon_sym_static] = ACTIONS(3925), + [anon_sym_register] = ACTIONS(3925), + [anon_sym_inline] = ACTIONS(3925), + [anon_sym___inline] = ACTIONS(3925), + [anon_sym___inline__] = ACTIONS(3925), + [anon_sym___forceinline] = ACTIONS(3925), + [anon_sym_thread_local] = ACTIONS(3925), + [anon_sym___thread] = ACTIONS(3925), + [anon_sym_const] = ACTIONS(3925), + [anon_sym_constexpr] = ACTIONS(3925), + [anon_sym_volatile] = ACTIONS(3925), + [anon_sym_restrict] = ACTIONS(3925), + [anon_sym___restrict__] = ACTIONS(3925), + [anon_sym__Atomic] = ACTIONS(3925), + [anon_sym__Noreturn] = ACTIONS(3925), + [anon_sym_noreturn] = ACTIONS(3925), + [anon_sym__Nonnull] = ACTIONS(3925), + [anon_sym_mutable] = ACTIONS(3925), + [anon_sym_constinit] = ACTIONS(3925), + [anon_sym_consteval] = ACTIONS(3925), + [anon_sym_alignas] = ACTIONS(3925), + [anon_sym__Alignas] = ACTIONS(3925), + [sym_primitive_type] = ACTIONS(3925), + [anon_sym_enum] = ACTIONS(3925), + [anon_sym_class] = ACTIONS(3925), + [anon_sym_struct] = ACTIONS(3925), + [anon_sym_union] = ACTIONS(3925), + [anon_sym_if] = ACTIONS(3925), + [anon_sym_switch] = ACTIONS(3925), + [anon_sym_case] = ACTIONS(3925), + [anon_sym_default] = ACTIONS(3925), + [anon_sym_while] = ACTIONS(3925), + [anon_sym_do] = ACTIONS(3925), + [anon_sym_for] = ACTIONS(3925), + [anon_sym_return] = ACTIONS(3925), + [anon_sym_break] = ACTIONS(3925), + [anon_sym_continue] = ACTIONS(3925), + [anon_sym_goto] = ACTIONS(3925), + [anon_sym___try] = ACTIONS(3925), + [anon_sym___leave] = ACTIONS(3925), + [anon_sym_not] = ACTIONS(3925), + [anon_sym_compl] = ACTIONS(3925), + [anon_sym_DASH_DASH] = ACTIONS(3928), + [anon_sym_PLUS_PLUS] = ACTIONS(3928), + [anon_sym_sizeof] = ACTIONS(3925), + [anon_sym___alignof__] = ACTIONS(3925), + [anon_sym___alignof] = ACTIONS(3925), + [anon_sym__alignof] = ACTIONS(3925), + [anon_sym_alignof] = ACTIONS(3925), + [anon_sym__Alignof] = ACTIONS(3925), + [anon_sym_offsetof] = ACTIONS(3925), + [anon_sym__Generic] = ACTIONS(3925), + [anon_sym_typename] = ACTIONS(3925), + [anon_sym_asm] = ACTIONS(3925), + [anon_sym___asm__] = ACTIONS(3925), + [anon_sym___asm] = ACTIONS(3925), + [sym_number_literal] = ACTIONS(3928), + [anon_sym_L_SQUOTE] = ACTIONS(3928), + [anon_sym_u_SQUOTE] = ACTIONS(3928), + [anon_sym_U_SQUOTE] = ACTIONS(3928), + [anon_sym_u8_SQUOTE] = ACTIONS(3928), + [anon_sym_SQUOTE] = ACTIONS(3928), + [anon_sym_L_DQUOTE] = ACTIONS(3928), + [anon_sym_u_DQUOTE] = ACTIONS(3928), + [anon_sym_U_DQUOTE] = ACTIONS(3928), + [anon_sym_u8_DQUOTE] = ACTIONS(3928), + [anon_sym_DQUOTE] = ACTIONS(3928), + [sym_true] = ACTIONS(3925), + [sym_false] = ACTIONS(3925), + [anon_sym_NULL] = ACTIONS(3925), + [anon_sym_nullptr] = ACTIONS(3925), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3925), + [anon_sym_decltype] = ACTIONS(3925), + [anon_sym_explicit] = ACTIONS(3925), + [anon_sym_export] = ACTIONS(3925), + [anon_sym_import] = ACTIONS(3925), + [anon_sym_template] = ACTIONS(3925), + [anon_sym_operator] = ACTIONS(3925), + [anon_sym_try] = ACTIONS(3925), + [anon_sym_delete] = ACTIONS(3925), + [anon_sym_throw] = ACTIONS(3925), + [anon_sym_namespace] = ACTIONS(3925), + [anon_sym_static_assert] = ACTIONS(3925), + [anon_sym_concept] = ACTIONS(3925), + [anon_sym_co_return] = ACTIONS(3925), + [anon_sym_co_yield] = ACTIONS(3925), + [anon_sym_R_DQUOTE] = ACTIONS(3928), + [anon_sym_LR_DQUOTE] = ACTIONS(3928), + [anon_sym_uR_DQUOTE] = ACTIONS(3928), + [anon_sym_UR_DQUOTE] = ACTIONS(3928), + [anon_sym_u8R_DQUOTE] = ACTIONS(3928), + [anon_sym_co_await] = ACTIONS(3925), + [anon_sym_new] = ACTIONS(3925), + [anon_sym_requires] = ACTIONS(3925), + [anon_sym_CARET_CARET] = ACTIONS(3928), + [anon_sym_LBRACK_COLON] = ACTIONS(3928), + [sym_this] = ACTIONS(3925), }, - [STATE(973)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(7051), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(5010), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(5012), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(844)] = { + [sym_identifier] = ACTIONS(4000), + [aux_sym_preproc_include_token1] = ACTIONS(4000), + [aux_sym_preproc_def_token1] = ACTIONS(4000), + [aux_sym_preproc_if_token1] = ACTIONS(4000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4000), + [sym_preproc_directive] = ACTIONS(4000), + [anon_sym_LPAREN2] = ACTIONS(4002), + [anon_sym_BANG] = ACTIONS(4002), + [anon_sym_TILDE] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_AMP] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym___extension__] = ACTIONS(4000), + [anon_sym_typedef] = ACTIONS(4000), + [anon_sym_virtual] = ACTIONS(4000), + [anon_sym_extern] = ACTIONS(4000), + [anon_sym___attribute__] = ACTIONS(4000), + [anon_sym___attribute] = ACTIONS(4000), + [anon_sym_using] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4002), + [anon_sym___declspec] = ACTIONS(4000), + [anon_sym___based] = ACTIONS(4000), + [anon_sym___cdecl] = ACTIONS(4000), + [anon_sym___clrcall] = ACTIONS(4000), + [anon_sym___stdcall] = ACTIONS(4000), + [anon_sym___fastcall] = ACTIONS(4000), + [anon_sym___thiscall] = ACTIONS(4000), + [anon_sym___vectorcall] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_signed] = ACTIONS(4000), + [anon_sym_unsigned] = ACTIONS(4000), + [anon_sym_long] = ACTIONS(4000), + [anon_sym_short] = ACTIONS(4000), + [anon_sym_LBRACK] = ACTIONS(4000), + [anon_sym_static] = ACTIONS(4000), + [anon_sym_register] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym___inline] = ACTIONS(4000), + [anon_sym___inline__] = ACTIONS(4000), + [anon_sym___forceinline] = ACTIONS(4000), + [anon_sym_thread_local] = ACTIONS(4000), + [anon_sym___thread] = ACTIONS(4000), + [anon_sym_const] = ACTIONS(4000), + [anon_sym_constexpr] = ACTIONS(4000), + [anon_sym_volatile] = ACTIONS(4000), + [anon_sym_restrict] = ACTIONS(4000), + [anon_sym___restrict__] = ACTIONS(4000), + [anon_sym__Atomic] = ACTIONS(4000), + [anon_sym__Noreturn] = ACTIONS(4000), + [anon_sym_noreturn] = ACTIONS(4000), + [anon_sym__Nonnull] = ACTIONS(4000), + [anon_sym_mutable] = ACTIONS(4000), + [anon_sym_constinit] = ACTIONS(4000), + [anon_sym_consteval] = ACTIONS(4000), + [anon_sym_alignas] = ACTIONS(4000), + [anon_sym__Alignas] = ACTIONS(4000), + [sym_primitive_type] = ACTIONS(4000), + [anon_sym_enum] = ACTIONS(4000), + [anon_sym_class] = ACTIONS(4000), + [anon_sym_struct] = ACTIONS(4000), + [anon_sym_union] = ACTIONS(4000), + [anon_sym_if] = ACTIONS(4000), + [anon_sym_switch] = ACTIONS(4000), + [anon_sym_case] = ACTIONS(4000), + [anon_sym_default] = ACTIONS(4000), + [anon_sym_while] = ACTIONS(4000), + [anon_sym_do] = ACTIONS(4000), + [anon_sym_for] = ACTIONS(4000), + [anon_sym_return] = ACTIONS(4000), + [anon_sym_break] = ACTIONS(4000), + [anon_sym_continue] = ACTIONS(4000), + [anon_sym_goto] = ACTIONS(4000), + [anon_sym___try] = ACTIONS(4000), + [anon_sym___leave] = ACTIONS(4000), + [anon_sym_not] = ACTIONS(4000), + [anon_sym_compl] = ACTIONS(4000), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_sizeof] = ACTIONS(4000), + [anon_sym___alignof__] = ACTIONS(4000), + [anon_sym___alignof] = ACTIONS(4000), + [anon_sym__alignof] = ACTIONS(4000), + [anon_sym_alignof] = ACTIONS(4000), + [anon_sym__Alignof] = ACTIONS(4000), + [anon_sym_offsetof] = ACTIONS(4000), + [anon_sym__Generic] = ACTIONS(4000), + [anon_sym_typename] = ACTIONS(4000), + [anon_sym_asm] = ACTIONS(4000), + [anon_sym___asm__] = ACTIONS(4000), + [anon_sym___asm] = ACTIONS(4000), + [sym_number_literal] = ACTIONS(4002), + [anon_sym_L_SQUOTE] = ACTIONS(4002), + [anon_sym_u_SQUOTE] = ACTIONS(4002), + [anon_sym_U_SQUOTE] = ACTIONS(4002), + [anon_sym_u8_SQUOTE] = ACTIONS(4002), + [anon_sym_SQUOTE] = ACTIONS(4002), + [anon_sym_L_DQUOTE] = ACTIONS(4002), + [anon_sym_u_DQUOTE] = ACTIONS(4002), + [anon_sym_U_DQUOTE] = ACTIONS(4002), + [anon_sym_u8_DQUOTE] = ACTIONS(4002), + [anon_sym_DQUOTE] = ACTIONS(4002), + [sym_true] = ACTIONS(4000), + [sym_false] = ACTIONS(4000), + [anon_sym_NULL] = ACTIONS(4000), + [anon_sym_nullptr] = ACTIONS(4000), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4000), + [anon_sym_decltype] = ACTIONS(4000), + [anon_sym_explicit] = ACTIONS(4000), + [anon_sym_export] = ACTIONS(4000), + [anon_sym_import] = ACTIONS(4000), + [anon_sym_template] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_try] = ACTIONS(4000), + [anon_sym_delete] = ACTIONS(4000), + [anon_sym_throw] = ACTIONS(4000), + [anon_sym_namespace] = ACTIONS(4000), + [anon_sym_static_assert] = ACTIONS(4000), + [anon_sym_concept] = ACTIONS(4000), + [anon_sym_co_return] = ACTIONS(4000), + [anon_sym_co_yield] = ACTIONS(4000), + [anon_sym_R_DQUOTE] = ACTIONS(4002), + [anon_sym_LR_DQUOTE] = ACTIONS(4002), + [anon_sym_uR_DQUOTE] = ACTIONS(4002), + [anon_sym_UR_DQUOTE] = ACTIONS(4002), + [anon_sym_u8R_DQUOTE] = ACTIONS(4002), + [anon_sym_co_await] = ACTIONS(4000), + [anon_sym_new] = ACTIONS(4000), + [anon_sym_requires] = ACTIONS(4000), + [anon_sym_CARET_CARET] = ACTIONS(4002), + [anon_sym_LBRACK_COLON] = ACTIONS(4002), + [sym_this] = ACTIONS(4000), }, - [STATE(974)] = { - [sym_type_qualifier] = STATE(976), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6945), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(976), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(5014), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5016), - [anon_sym_RBRACK] = ACTIONS(5018), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(845)] = { + [sym_identifier] = ACTIONS(3921), + [aux_sym_preproc_include_token1] = ACTIONS(3921), + [aux_sym_preproc_def_token1] = ACTIONS(3921), + [aux_sym_preproc_if_token1] = ACTIONS(3921), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3921), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3921), + [sym_preproc_directive] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3923), + [anon_sym_BANG] = ACTIONS(3923), + [anon_sym_TILDE] = ACTIONS(3923), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_STAR] = ACTIONS(3923), + [anon_sym_AMP_AMP] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym___extension__] = ACTIONS(3921), + [anon_sym_typedef] = ACTIONS(3921), + [anon_sym_virtual] = ACTIONS(3921), + [anon_sym_extern] = ACTIONS(3921), + [anon_sym___attribute__] = ACTIONS(3921), + [anon_sym___attribute] = ACTIONS(3921), + [anon_sym_using] = ACTIONS(3921), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3923), + [anon_sym___declspec] = ACTIONS(3921), + [anon_sym___based] = ACTIONS(3921), + [anon_sym___cdecl] = ACTIONS(3921), + [anon_sym___clrcall] = ACTIONS(3921), + [anon_sym___stdcall] = ACTIONS(3921), + [anon_sym___fastcall] = ACTIONS(3921), + [anon_sym___thiscall] = ACTIONS(3921), + [anon_sym___vectorcall] = ACTIONS(3921), + [anon_sym_LBRACE] = ACTIONS(3923), + [anon_sym_RBRACE] = ACTIONS(3923), + [anon_sym_signed] = ACTIONS(3921), + [anon_sym_unsigned] = ACTIONS(3921), + [anon_sym_long] = ACTIONS(3921), + [anon_sym_short] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_static] = ACTIONS(3921), + [anon_sym_register] = ACTIONS(3921), + [anon_sym_inline] = ACTIONS(3921), + [anon_sym___inline] = ACTIONS(3921), + [anon_sym___inline__] = ACTIONS(3921), + [anon_sym___forceinline] = ACTIONS(3921), + [anon_sym_thread_local] = ACTIONS(3921), + [anon_sym___thread] = ACTIONS(3921), + [anon_sym_const] = ACTIONS(3921), + [anon_sym_constexpr] = ACTIONS(3921), + [anon_sym_volatile] = ACTIONS(3921), + [anon_sym_restrict] = ACTIONS(3921), + [anon_sym___restrict__] = ACTIONS(3921), + [anon_sym__Atomic] = ACTIONS(3921), + [anon_sym__Noreturn] = ACTIONS(3921), + [anon_sym_noreturn] = ACTIONS(3921), + [anon_sym__Nonnull] = ACTIONS(3921), + [anon_sym_mutable] = ACTIONS(3921), + [anon_sym_constinit] = ACTIONS(3921), + [anon_sym_consteval] = ACTIONS(3921), + [anon_sym_alignas] = ACTIONS(3921), + [anon_sym__Alignas] = ACTIONS(3921), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_enum] = ACTIONS(3921), + [anon_sym_class] = ACTIONS(3921), + [anon_sym_struct] = ACTIONS(3921), + [anon_sym_union] = ACTIONS(3921), + [anon_sym_if] = ACTIONS(3921), + [anon_sym_switch] = ACTIONS(3921), + [anon_sym_case] = ACTIONS(3921), + [anon_sym_default] = ACTIONS(3921), + [anon_sym_while] = ACTIONS(3921), + [anon_sym_do] = ACTIONS(3921), + [anon_sym_for] = ACTIONS(3921), + [anon_sym_return] = ACTIONS(3921), + [anon_sym_break] = ACTIONS(3921), + [anon_sym_continue] = ACTIONS(3921), + [anon_sym_goto] = ACTIONS(3921), + [anon_sym___try] = ACTIONS(3921), + [anon_sym___leave] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(3921), + [anon_sym_compl] = ACTIONS(3921), + [anon_sym_DASH_DASH] = ACTIONS(3923), + [anon_sym_PLUS_PLUS] = ACTIONS(3923), + [anon_sym_sizeof] = ACTIONS(3921), + [anon_sym___alignof__] = ACTIONS(3921), + [anon_sym___alignof] = ACTIONS(3921), + [anon_sym__alignof] = ACTIONS(3921), + [anon_sym_alignof] = ACTIONS(3921), + [anon_sym__Alignof] = ACTIONS(3921), + [anon_sym_offsetof] = ACTIONS(3921), + [anon_sym__Generic] = ACTIONS(3921), + [anon_sym_typename] = ACTIONS(3921), + [anon_sym_asm] = ACTIONS(3921), + [anon_sym___asm__] = ACTIONS(3921), + [anon_sym___asm] = ACTIONS(3921), + [sym_number_literal] = ACTIONS(3923), + [anon_sym_L_SQUOTE] = ACTIONS(3923), + [anon_sym_u_SQUOTE] = ACTIONS(3923), + [anon_sym_U_SQUOTE] = ACTIONS(3923), + [anon_sym_u8_SQUOTE] = ACTIONS(3923), + [anon_sym_SQUOTE] = ACTIONS(3923), + [anon_sym_L_DQUOTE] = ACTIONS(3923), + [anon_sym_u_DQUOTE] = ACTIONS(3923), + [anon_sym_U_DQUOTE] = ACTIONS(3923), + [anon_sym_u8_DQUOTE] = ACTIONS(3923), + [anon_sym_DQUOTE] = ACTIONS(3923), + [sym_true] = ACTIONS(3921), + [sym_false] = ACTIONS(3921), + [anon_sym_NULL] = ACTIONS(3921), + [anon_sym_nullptr] = ACTIONS(3921), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3921), + [anon_sym_decltype] = ACTIONS(3921), + [anon_sym_explicit] = ACTIONS(3921), + [anon_sym_export] = ACTIONS(3921), + [anon_sym_import] = ACTIONS(3921), + [anon_sym_template] = ACTIONS(3921), + [anon_sym_operator] = ACTIONS(3921), + [anon_sym_try] = ACTIONS(3921), + [anon_sym_delete] = ACTIONS(3921), + [anon_sym_throw] = ACTIONS(3921), + [anon_sym_namespace] = ACTIONS(3921), + [anon_sym_static_assert] = ACTIONS(3921), + [anon_sym_concept] = ACTIONS(3921), + [anon_sym_co_return] = ACTIONS(3921), + [anon_sym_co_yield] = ACTIONS(3921), + [anon_sym_R_DQUOTE] = ACTIONS(3923), + [anon_sym_LR_DQUOTE] = ACTIONS(3923), + [anon_sym_uR_DQUOTE] = ACTIONS(3923), + [anon_sym_UR_DQUOTE] = ACTIONS(3923), + [anon_sym_u8R_DQUOTE] = ACTIONS(3923), + [anon_sym_co_await] = ACTIONS(3921), + [anon_sym_new] = ACTIONS(3921), + [anon_sym_requires] = ACTIONS(3921), + [anon_sym_CARET_CARET] = ACTIONS(3923), + [anon_sym_LBRACK_COLON] = ACTIONS(3923), + [sym_this] = ACTIONS(3921), }, - [STATE(975)] = { - [sym_type_qualifier] = STATE(990), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6997), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(990), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(5020), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5022), - [anon_sym_RBRACK] = ACTIONS(5024), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(846)] = { + [sym_identifier] = ACTIONS(3935), + [aux_sym_preproc_include_token1] = ACTIONS(3935), + [aux_sym_preproc_def_token1] = ACTIONS(3935), + [aux_sym_preproc_if_token1] = ACTIONS(3935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3935), + [sym_preproc_directive] = ACTIONS(3935), + [anon_sym_LPAREN2] = ACTIONS(3937), + [anon_sym_BANG] = ACTIONS(3937), + [anon_sym_TILDE] = ACTIONS(3937), + [anon_sym_DASH] = ACTIONS(3935), + [anon_sym_PLUS] = ACTIONS(3935), + [anon_sym_STAR] = ACTIONS(3937), + [anon_sym_AMP_AMP] = ACTIONS(3937), + [anon_sym_AMP] = ACTIONS(3935), + [anon_sym_SEMI] = ACTIONS(3937), + [anon_sym___extension__] = ACTIONS(3935), + [anon_sym_typedef] = ACTIONS(3935), + [anon_sym_virtual] = ACTIONS(3935), + [anon_sym_extern] = ACTIONS(3935), + [anon_sym___attribute__] = ACTIONS(3935), + [anon_sym___attribute] = ACTIONS(3935), + [anon_sym_using] = ACTIONS(3935), + [anon_sym_COLON_COLON] = ACTIONS(3937), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3937), + [anon_sym___declspec] = ACTIONS(3935), + [anon_sym___based] = ACTIONS(3935), + [anon_sym___cdecl] = ACTIONS(3935), + [anon_sym___clrcall] = ACTIONS(3935), + [anon_sym___stdcall] = ACTIONS(3935), + [anon_sym___fastcall] = ACTIONS(3935), + [anon_sym___thiscall] = ACTIONS(3935), + [anon_sym___vectorcall] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(3937), + [anon_sym_RBRACE] = ACTIONS(3937), + [anon_sym_signed] = ACTIONS(3935), + [anon_sym_unsigned] = ACTIONS(3935), + [anon_sym_long] = ACTIONS(3935), + [anon_sym_short] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3935), + [anon_sym_static] = ACTIONS(3935), + [anon_sym_register] = ACTIONS(3935), + [anon_sym_inline] = ACTIONS(3935), + [anon_sym___inline] = ACTIONS(3935), + [anon_sym___inline__] = ACTIONS(3935), + [anon_sym___forceinline] = ACTIONS(3935), + [anon_sym_thread_local] = ACTIONS(3935), + [anon_sym___thread] = 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__Nonnull] = ACTIONS(3935), + [anon_sym_mutable] = ACTIONS(3935), + [anon_sym_constinit] = ACTIONS(3935), + [anon_sym_consteval] = ACTIONS(3935), + [anon_sym_alignas] = ACTIONS(3935), + [anon_sym__Alignas] = ACTIONS(3935), + [sym_primitive_type] = ACTIONS(3935), + [anon_sym_enum] = ACTIONS(3935), + [anon_sym_class] = ACTIONS(3935), + [anon_sym_struct] = ACTIONS(3935), + [anon_sym_union] = ACTIONS(3935), + [anon_sym_if] = ACTIONS(3935), + [anon_sym_switch] = ACTIONS(3935), + [anon_sym_case] = ACTIONS(3935), + [anon_sym_default] = ACTIONS(3935), + [anon_sym_while] = ACTIONS(3935), + [anon_sym_do] = ACTIONS(3935), + [anon_sym_for] = ACTIONS(3935), + [anon_sym_return] = ACTIONS(3935), + [anon_sym_break] = ACTIONS(3935), + [anon_sym_continue] = ACTIONS(3935), + [anon_sym_goto] = ACTIONS(3935), + [anon_sym___try] = ACTIONS(3935), + [anon_sym___leave] = ACTIONS(3935), + [anon_sym_not] = ACTIONS(3935), + [anon_sym_compl] = ACTIONS(3935), + [anon_sym_DASH_DASH] = ACTIONS(3937), + [anon_sym_PLUS_PLUS] = ACTIONS(3937), + [anon_sym_sizeof] = ACTIONS(3935), + [anon_sym___alignof__] = ACTIONS(3935), + [anon_sym___alignof] = ACTIONS(3935), + [anon_sym__alignof] = ACTIONS(3935), + [anon_sym_alignof] = ACTIONS(3935), + [anon_sym__Alignof] = ACTIONS(3935), + [anon_sym_offsetof] = ACTIONS(3935), + [anon_sym__Generic] = ACTIONS(3935), + [anon_sym_typename] = ACTIONS(3935), + [anon_sym_asm] = ACTIONS(3935), + [anon_sym___asm__] = ACTIONS(3935), + [anon_sym___asm] = ACTIONS(3935), + [sym_number_literal] = ACTIONS(3937), + [anon_sym_L_SQUOTE] = ACTIONS(3937), + [anon_sym_u_SQUOTE] = ACTIONS(3937), + [anon_sym_U_SQUOTE] = ACTIONS(3937), + [anon_sym_u8_SQUOTE] = ACTIONS(3937), + [anon_sym_SQUOTE] = ACTIONS(3937), + [anon_sym_L_DQUOTE] = ACTIONS(3937), + [anon_sym_u_DQUOTE] = ACTIONS(3937), + [anon_sym_U_DQUOTE] = ACTIONS(3937), + [anon_sym_u8_DQUOTE] = ACTIONS(3937), + [anon_sym_DQUOTE] = ACTIONS(3937), + [sym_true] = ACTIONS(3935), + [sym_false] = ACTIONS(3935), + [anon_sym_NULL] = ACTIONS(3935), + [anon_sym_nullptr] = ACTIONS(3935), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3935), + [anon_sym_decltype] = ACTIONS(3935), + [anon_sym_explicit] = ACTIONS(3935), + [anon_sym_export] = ACTIONS(3935), + [anon_sym_import] = ACTIONS(3935), + [anon_sym_template] = ACTIONS(3935), + [anon_sym_operator] = ACTIONS(3935), + [anon_sym_try] = ACTIONS(3935), + [anon_sym_delete] = ACTIONS(3935), + [anon_sym_throw] = ACTIONS(3935), + [anon_sym_namespace] = ACTIONS(3935), + [anon_sym_static_assert] = ACTIONS(3935), + [anon_sym_concept] = ACTIONS(3935), + [anon_sym_co_return] = ACTIONS(3935), + [anon_sym_co_yield] = ACTIONS(3935), + [anon_sym_R_DQUOTE] = ACTIONS(3937), + [anon_sym_LR_DQUOTE] = ACTIONS(3937), + [anon_sym_uR_DQUOTE] = ACTIONS(3937), + [anon_sym_UR_DQUOTE] = ACTIONS(3937), + [anon_sym_u8R_DQUOTE] = ACTIONS(3937), + [anon_sym_co_await] = ACTIONS(3935), + [anon_sym_new] = ACTIONS(3935), + [anon_sym_requires] = ACTIONS(3935), + [anon_sym_CARET_CARET] = ACTIONS(3937), + [anon_sym_LBRACK_COLON] = ACTIONS(3937), + [sym_this] = ACTIONS(3935), }, - [STATE(976)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6987), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(5026), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(5028), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(847)] = { + [sym_identifier] = ACTIONS(4286), + [aux_sym_preproc_include_token1] = ACTIONS(4286), + [aux_sym_preproc_def_token1] = ACTIONS(4286), + [aux_sym_preproc_if_token1] = ACTIONS(4286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4286), + [sym_preproc_directive] = ACTIONS(4286), + [anon_sym_LPAREN2] = ACTIONS(4288), + [anon_sym_BANG] = ACTIONS(4288), + [anon_sym_TILDE] = ACTIONS(4288), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym___extension__] = ACTIONS(4286), + [anon_sym_typedef] = ACTIONS(4286), + [anon_sym_virtual] = ACTIONS(4286), + [anon_sym_extern] = ACTIONS(4286), + [anon_sym___attribute__] = ACTIONS(4286), + [anon_sym___attribute] = ACTIONS(4286), + [anon_sym_using] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4288), + [anon_sym___declspec] = ACTIONS(4286), + [anon_sym___based] = ACTIONS(4286), + [anon_sym___cdecl] = ACTIONS(4286), + [anon_sym___clrcall] = ACTIONS(4286), + [anon_sym___stdcall] = ACTIONS(4286), + [anon_sym___fastcall] = ACTIONS(4286), + [anon_sym___thiscall] = ACTIONS(4286), + [anon_sym___vectorcall] = ACTIONS(4286), + [anon_sym_LBRACE] = ACTIONS(4288), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_signed] = ACTIONS(4286), + [anon_sym_unsigned] = ACTIONS(4286), + [anon_sym_long] = ACTIONS(4286), + [anon_sym_short] = ACTIONS(4286), + [anon_sym_LBRACK] = ACTIONS(4286), + [anon_sym_static] = ACTIONS(4286), + [anon_sym_register] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym___inline] = ACTIONS(4286), + [anon_sym___inline__] = ACTIONS(4286), + [anon_sym___forceinline] = ACTIONS(4286), + [anon_sym_thread_local] = ACTIONS(4286), + [anon_sym___thread] = ACTIONS(4286), + [anon_sym_const] = ACTIONS(4286), + [anon_sym_constexpr] = ACTIONS(4286), + [anon_sym_volatile] = ACTIONS(4286), + [anon_sym_restrict] = ACTIONS(4286), + [anon_sym___restrict__] = ACTIONS(4286), + [anon_sym__Atomic] = ACTIONS(4286), + [anon_sym__Noreturn] = ACTIONS(4286), + [anon_sym_noreturn] = ACTIONS(4286), + [anon_sym__Nonnull] = ACTIONS(4286), + [anon_sym_mutable] = ACTIONS(4286), + [anon_sym_constinit] = ACTIONS(4286), + [anon_sym_consteval] = ACTIONS(4286), + [anon_sym_alignas] = ACTIONS(4286), + [anon_sym__Alignas] = ACTIONS(4286), + [sym_primitive_type] = ACTIONS(4286), + [anon_sym_enum] = ACTIONS(4286), + [anon_sym_class] = ACTIONS(4286), + [anon_sym_struct] = ACTIONS(4286), + [anon_sym_union] = ACTIONS(4286), + [anon_sym_if] = ACTIONS(4286), + [anon_sym_switch] = ACTIONS(4286), + [anon_sym_case] = ACTIONS(4286), + [anon_sym_default] = ACTIONS(4286), + [anon_sym_while] = ACTIONS(4286), + [anon_sym_do] = ACTIONS(4286), + [anon_sym_for] = ACTIONS(4286), + [anon_sym_return] = ACTIONS(4286), + [anon_sym_break] = ACTIONS(4286), + [anon_sym_continue] = ACTIONS(4286), + [anon_sym_goto] = ACTIONS(4286), + [anon_sym___try] = ACTIONS(4286), + [anon_sym___leave] = ACTIONS(4286), + [anon_sym_not] = ACTIONS(4286), + [anon_sym_compl] = ACTIONS(4286), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_sizeof] = ACTIONS(4286), + [anon_sym___alignof__] = ACTIONS(4286), + [anon_sym___alignof] = ACTIONS(4286), + [anon_sym__alignof] = ACTIONS(4286), + [anon_sym_alignof] = ACTIONS(4286), + [anon_sym__Alignof] = ACTIONS(4286), + [anon_sym_offsetof] = ACTIONS(4286), + [anon_sym__Generic] = ACTIONS(4286), + [anon_sym_typename] = ACTIONS(4286), + [anon_sym_asm] = ACTIONS(4286), + [anon_sym___asm__] = ACTIONS(4286), + [anon_sym___asm] = ACTIONS(4286), + [sym_number_literal] = ACTIONS(4288), + [anon_sym_L_SQUOTE] = ACTIONS(4288), + [anon_sym_u_SQUOTE] = ACTIONS(4288), + [anon_sym_U_SQUOTE] = ACTIONS(4288), + [anon_sym_u8_SQUOTE] = ACTIONS(4288), + [anon_sym_SQUOTE] = ACTIONS(4288), + [anon_sym_L_DQUOTE] = ACTIONS(4288), + [anon_sym_u_DQUOTE] = ACTIONS(4288), + [anon_sym_U_DQUOTE] = ACTIONS(4288), + [anon_sym_u8_DQUOTE] = ACTIONS(4288), + [anon_sym_DQUOTE] = ACTIONS(4288), + [sym_true] = ACTIONS(4286), + [sym_false] = ACTIONS(4286), + [anon_sym_NULL] = ACTIONS(4286), + [anon_sym_nullptr] = ACTIONS(4286), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4286), + [anon_sym_decltype] = ACTIONS(4286), + [anon_sym_explicit] = ACTIONS(4286), + [anon_sym_export] = ACTIONS(4286), + [anon_sym_import] = ACTIONS(4286), + [anon_sym_template] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_try] = ACTIONS(4286), + [anon_sym_delete] = ACTIONS(4286), + [anon_sym_throw] = ACTIONS(4286), + [anon_sym_namespace] = ACTIONS(4286), + [anon_sym_static_assert] = ACTIONS(4286), + [anon_sym_concept] = ACTIONS(4286), + [anon_sym_co_return] = ACTIONS(4286), + [anon_sym_co_yield] = ACTIONS(4286), + [anon_sym_R_DQUOTE] = ACTIONS(4288), + [anon_sym_LR_DQUOTE] = ACTIONS(4288), + [anon_sym_uR_DQUOTE] = ACTIONS(4288), + [anon_sym_UR_DQUOTE] = ACTIONS(4288), + [anon_sym_u8R_DQUOTE] = ACTIONS(4288), + [anon_sym_co_await] = ACTIONS(4286), + [anon_sym_new] = ACTIONS(4286), + [anon_sym_requires] = ACTIONS(4286), + [anon_sym_CARET_CARET] = ACTIONS(4288), + [anon_sym_LBRACK_COLON] = ACTIONS(4288), + [sym_this] = ACTIONS(4286), }, - [STATE(977)] = { - [sym_type_qualifier] = STATE(978), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(7003), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(978), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(5030), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5032), - [anon_sym_RBRACK] = ACTIONS(5034), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(848)] = { + [sym_identifier] = ACTIONS(4290), + [aux_sym_preproc_include_token1] = ACTIONS(4290), + [aux_sym_preproc_def_token1] = ACTIONS(4290), + [aux_sym_preproc_if_token1] = ACTIONS(4290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4290), + [sym_preproc_directive] = ACTIONS(4290), + [anon_sym_LPAREN2] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_AMP] = ACTIONS(4290), + [anon_sym_SEMI] = ACTIONS(4292), + [anon_sym___extension__] = ACTIONS(4290), + [anon_sym_typedef] = ACTIONS(4290), + [anon_sym_virtual] = ACTIONS(4290), + [anon_sym_extern] = ACTIONS(4290), + [anon_sym___attribute__] = ACTIONS(4290), + [anon_sym___attribute] = ACTIONS(4290), + [anon_sym_using] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4292), + [anon_sym___declspec] = ACTIONS(4290), + [anon_sym___based] = ACTIONS(4290), + [anon_sym___cdecl] = ACTIONS(4290), + [anon_sym___clrcall] = ACTIONS(4290), + [anon_sym___stdcall] = ACTIONS(4290), + [anon_sym___fastcall] = ACTIONS(4290), + [anon_sym___thiscall] = ACTIONS(4290), + [anon_sym___vectorcall] = ACTIONS(4290), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4292), + [anon_sym_signed] = ACTIONS(4290), + [anon_sym_unsigned] = ACTIONS(4290), + [anon_sym_long] = ACTIONS(4290), + [anon_sym_short] = ACTIONS(4290), + [anon_sym_LBRACK] = ACTIONS(4290), + [anon_sym_static] = ACTIONS(4290), + [anon_sym_register] = ACTIONS(4290), + [anon_sym_inline] = ACTIONS(4290), + [anon_sym___inline] = ACTIONS(4290), + [anon_sym___inline__] = ACTIONS(4290), + [anon_sym___forceinline] = ACTIONS(4290), + [anon_sym_thread_local] = ACTIONS(4290), + [anon_sym___thread] = ACTIONS(4290), + [anon_sym_const] = ACTIONS(4290), + [anon_sym_constexpr] = ACTIONS(4290), + [anon_sym_volatile] = ACTIONS(4290), + [anon_sym_restrict] = ACTIONS(4290), + [anon_sym___restrict__] = ACTIONS(4290), + [anon_sym__Atomic] = ACTIONS(4290), + [anon_sym__Noreturn] = ACTIONS(4290), + [anon_sym_noreturn] = ACTIONS(4290), + [anon_sym__Nonnull] = ACTIONS(4290), + [anon_sym_mutable] = ACTIONS(4290), + [anon_sym_constinit] = ACTIONS(4290), + [anon_sym_consteval] = ACTIONS(4290), + [anon_sym_alignas] = ACTIONS(4290), + [anon_sym__Alignas] = ACTIONS(4290), + [sym_primitive_type] = ACTIONS(4290), + [anon_sym_enum] = ACTIONS(4290), + [anon_sym_class] = ACTIONS(4290), + [anon_sym_struct] = ACTIONS(4290), + [anon_sym_union] = ACTIONS(4290), + [anon_sym_if] = ACTIONS(4290), + [anon_sym_switch] = ACTIONS(4290), + [anon_sym_case] = ACTIONS(4290), + [anon_sym_default] = ACTIONS(4290), + [anon_sym_while] = ACTIONS(4290), + [anon_sym_do] = ACTIONS(4290), + [anon_sym_for] = ACTIONS(4290), + [anon_sym_return] = ACTIONS(4290), + [anon_sym_break] = ACTIONS(4290), + [anon_sym_continue] = ACTIONS(4290), + [anon_sym_goto] = ACTIONS(4290), + [anon_sym___try] = ACTIONS(4290), + [anon_sym___leave] = ACTIONS(4290), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_sizeof] = ACTIONS(4290), + [anon_sym___alignof__] = ACTIONS(4290), + [anon_sym___alignof] = ACTIONS(4290), + [anon_sym__alignof] = ACTIONS(4290), + [anon_sym_alignof] = ACTIONS(4290), + [anon_sym__Alignof] = ACTIONS(4290), + [anon_sym_offsetof] = ACTIONS(4290), + [anon_sym__Generic] = ACTIONS(4290), + [anon_sym_typename] = ACTIONS(4290), + [anon_sym_asm] = ACTIONS(4290), + [anon_sym___asm__] = ACTIONS(4290), + [anon_sym___asm] = ACTIONS(4290), + [sym_number_literal] = ACTIONS(4292), + [anon_sym_L_SQUOTE] = ACTIONS(4292), + [anon_sym_u_SQUOTE] = ACTIONS(4292), + [anon_sym_U_SQUOTE] = ACTIONS(4292), + [anon_sym_u8_SQUOTE] = ACTIONS(4292), + [anon_sym_SQUOTE] = ACTIONS(4292), + [anon_sym_L_DQUOTE] = ACTIONS(4292), + [anon_sym_u_DQUOTE] = ACTIONS(4292), + [anon_sym_U_DQUOTE] = ACTIONS(4292), + [anon_sym_u8_DQUOTE] = ACTIONS(4292), + [anon_sym_DQUOTE] = ACTIONS(4292), + [sym_true] = ACTIONS(4290), + [sym_false] = ACTIONS(4290), + [anon_sym_NULL] = ACTIONS(4290), + [anon_sym_nullptr] = ACTIONS(4290), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4290), + [anon_sym_decltype] = ACTIONS(4290), + [anon_sym_explicit] = ACTIONS(4290), + [anon_sym_export] = ACTIONS(4290), + [anon_sym_import] = ACTIONS(4290), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_operator] = ACTIONS(4290), + [anon_sym_try] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4290), + [anon_sym_throw] = ACTIONS(4290), + [anon_sym_namespace] = ACTIONS(4290), + [anon_sym_static_assert] = ACTIONS(4290), + [anon_sym_concept] = ACTIONS(4290), + [anon_sym_co_return] = ACTIONS(4290), + [anon_sym_co_yield] = ACTIONS(4290), + [anon_sym_R_DQUOTE] = ACTIONS(4292), + [anon_sym_LR_DQUOTE] = ACTIONS(4292), + [anon_sym_uR_DQUOTE] = ACTIONS(4292), + [anon_sym_UR_DQUOTE] = ACTIONS(4292), + [anon_sym_u8R_DQUOTE] = ACTIONS(4292), + [anon_sym_co_await] = ACTIONS(4290), + [anon_sym_new] = ACTIONS(4290), + [anon_sym_requires] = ACTIONS(4290), + [anon_sym_CARET_CARET] = ACTIONS(4292), + [anon_sym_LBRACK_COLON] = ACTIONS(4292), + [sym_this] = ACTIONS(4290), }, - [STATE(978)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(7011), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(5036), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(5038), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(849)] = { + [sym_identifier] = ACTIONS(4294), + [aux_sym_preproc_include_token1] = ACTIONS(4294), + [aux_sym_preproc_def_token1] = ACTIONS(4294), + [aux_sym_preproc_if_token1] = ACTIONS(4294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4294), + [sym_preproc_directive] = ACTIONS(4294), + [anon_sym_LPAREN2] = ACTIONS(4296), + [anon_sym_BANG] = ACTIONS(4296), + [anon_sym_TILDE] = ACTIONS(4296), + [anon_sym_DASH] = ACTIONS(4294), + [anon_sym_PLUS] = ACTIONS(4294), + [anon_sym_STAR] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_AMP] = ACTIONS(4294), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym___extension__] = ACTIONS(4294), + [anon_sym_typedef] = ACTIONS(4294), + [anon_sym_virtual] = ACTIONS(4294), + [anon_sym_extern] = ACTIONS(4294), + [anon_sym___attribute__] = ACTIONS(4294), + [anon_sym___attribute] = ACTIONS(4294), + [anon_sym_using] = ACTIONS(4294), + [anon_sym_COLON_COLON] = ACTIONS(4296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4296), + [anon_sym___declspec] = ACTIONS(4294), + [anon_sym___based] = ACTIONS(4294), + [anon_sym___cdecl] = ACTIONS(4294), + [anon_sym___clrcall] = ACTIONS(4294), + [anon_sym___stdcall] = ACTIONS(4294), + [anon_sym___fastcall] = ACTIONS(4294), + [anon_sym___thiscall] = ACTIONS(4294), + [anon_sym___vectorcall] = ACTIONS(4294), + [anon_sym_LBRACE] = ACTIONS(4296), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_signed] = ACTIONS(4294), + [anon_sym_unsigned] = ACTIONS(4294), + [anon_sym_long] = ACTIONS(4294), + [anon_sym_short] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(4294), + [anon_sym_static] = ACTIONS(4294), + [anon_sym_register] = ACTIONS(4294), + [anon_sym_inline] = ACTIONS(4294), + [anon_sym___inline] = ACTIONS(4294), + [anon_sym___inline__] = ACTIONS(4294), + [anon_sym___forceinline] = ACTIONS(4294), + [anon_sym_thread_local] = ACTIONS(4294), + [anon_sym___thread] = ACTIONS(4294), + [anon_sym_const] = ACTIONS(4294), + [anon_sym_constexpr] = ACTIONS(4294), + [anon_sym_volatile] = ACTIONS(4294), + [anon_sym_restrict] = ACTIONS(4294), + [anon_sym___restrict__] = ACTIONS(4294), + [anon_sym__Atomic] = ACTIONS(4294), + [anon_sym__Noreturn] = ACTIONS(4294), + [anon_sym_noreturn] = ACTIONS(4294), + [anon_sym__Nonnull] = ACTIONS(4294), + [anon_sym_mutable] = ACTIONS(4294), + [anon_sym_constinit] = ACTIONS(4294), + [anon_sym_consteval] = ACTIONS(4294), + [anon_sym_alignas] = ACTIONS(4294), + [anon_sym__Alignas] = ACTIONS(4294), + [sym_primitive_type] = ACTIONS(4294), + [anon_sym_enum] = ACTIONS(4294), + [anon_sym_class] = ACTIONS(4294), + [anon_sym_struct] = ACTIONS(4294), + [anon_sym_union] = ACTIONS(4294), + [anon_sym_if] = ACTIONS(4294), + [anon_sym_switch] = ACTIONS(4294), + [anon_sym_case] = ACTIONS(4294), + [anon_sym_default] = ACTIONS(4294), + [anon_sym_while] = ACTIONS(4294), + [anon_sym_do] = ACTIONS(4294), + [anon_sym_for] = ACTIONS(4294), + [anon_sym_return] = ACTIONS(4294), + [anon_sym_break] = ACTIONS(4294), + [anon_sym_continue] = ACTIONS(4294), + [anon_sym_goto] = ACTIONS(4294), + [anon_sym___try] = ACTIONS(4294), + [anon_sym___leave] = ACTIONS(4294), + [anon_sym_not] = ACTIONS(4294), + [anon_sym_compl] = ACTIONS(4294), + [anon_sym_DASH_DASH] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4296), + [anon_sym_sizeof] = ACTIONS(4294), + [anon_sym___alignof__] = ACTIONS(4294), + [anon_sym___alignof] = ACTIONS(4294), + [anon_sym__alignof] = ACTIONS(4294), + [anon_sym_alignof] = ACTIONS(4294), + [anon_sym__Alignof] = ACTIONS(4294), + [anon_sym_offsetof] = ACTIONS(4294), + [anon_sym__Generic] = ACTIONS(4294), + [anon_sym_typename] = ACTIONS(4294), + [anon_sym_asm] = ACTIONS(4294), + [anon_sym___asm__] = ACTIONS(4294), + [anon_sym___asm] = ACTIONS(4294), + [sym_number_literal] = ACTIONS(4296), + [anon_sym_L_SQUOTE] = ACTIONS(4296), + [anon_sym_u_SQUOTE] = ACTIONS(4296), + [anon_sym_U_SQUOTE] = ACTIONS(4296), + [anon_sym_u8_SQUOTE] = ACTIONS(4296), + [anon_sym_SQUOTE] = ACTIONS(4296), + [anon_sym_L_DQUOTE] = ACTIONS(4296), + [anon_sym_u_DQUOTE] = ACTIONS(4296), + [anon_sym_U_DQUOTE] = ACTIONS(4296), + [anon_sym_u8_DQUOTE] = ACTIONS(4296), + [anon_sym_DQUOTE] = ACTIONS(4296), + [sym_true] = ACTIONS(4294), + [sym_false] = ACTIONS(4294), + [anon_sym_NULL] = ACTIONS(4294), + [anon_sym_nullptr] = ACTIONS(4294), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4294), + [anon_sym_decltype] = ACTIONS(4294), + [anon_sym_explicit] = ACTIONS(4294), + [anon_sym_export] = ACTIONS(4294), + [anon_sym_import] = ACTIONS(4294), + [anon_sym_template] = ACTIONS(4294), + [anon_sym_operator] = ACTIONS(4294), + [anon_sym_try] = ACTIONS(4294), + [anon_sym_delete] = ACTIONS(4294), + [anon_sym_throw] = ACTIONS(4294), + [anon_sym_namespace] = ACTIONS(4294), + [anon_sym_static_assert] = ACTIONS(4294), + [anon_sym_concept] = ACTIONS(4294), + [anon_sym_co_return] = ACTIONS(4294), + [anon_sym_co_yield] = ACTIONS(4294), + [anon_sym_R_DQUOTE] = ACTIONS(4296), + [anon_sym_LR_DQUOTE] = ACTIONS(4296), + [anon_sym_uR_DQUOTE] = ACTIONS(4296), + [anon_sym_UR_DQUOTE] = ACTIONS(4296), + [anon_sym_u8R_DQUOTE] = ACTIONS(4296), + [anon_sym_co_await] = ACTIONS(4294), + [anon_sym_new] = ACTIONS(4294), + [anon_sym_requires] = ACTIONS(4294), + [anon_sym_CARET_CARET] = ACTIONS(4296), + [anon_sym_LBRACK_COLON] = ACTIONS(4296), + [sym_this] = ACTIONS(4294), }, - [STATE(979)] = { - [sym_type_qualifier] = STATE(945), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6846), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(945), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5042), - [anon_sym_RBRACK] = ACTIONS(5044), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(850)] = { + [sym_identifier] = ACTIONS(4092), + [aux_sym_preproc_include_token1] = ACTIONS(4092), + [aux_sym_preproc_def_token1] = ACTIONS(4092), + [aux_sym_preproc_if_token1] = ACTIONS(4092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4092), + [sym_preproc_directive] = ACTIONS(4092), + [anon_sym_LPAREN2] = ACTIONS(4094), + [anon_sym_BANG] = ACTIONS(4094), + [anon_sym_TILDE] = ACTIONS(4094), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_AMP] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym___extension__] = ACTIONS(4092), + [anon_sym_typedef] = ACTIONS(4092), + [anon_sym_virtual] = ACTIONS(4092), + [anon_sym_extern] = ACTIONS(4092), + [anon_sym___attribute__] = ACTIONS(4092), + [anon_sym___attribute] = ACTIONS(4092), + [anon_sym_using] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4094), + [anon_sym___declspec] = ACTIONS(4092), + [anon_sym___based] = ACTIONS(4092), + [anon_sym___cdecl] = ACTIONS(4092), + [anon_sym___clrcall] = ACTIONS(4092), + [anon_sym___stdcall] = ACTIONS(4092), + [anon_sym___fastcall] = ACTIONS(4092), + [anon_sym___thiscall] = ACTIONS(4092), + [anon_sym___vectorcall] = ACTIONS(4092), + [anon_sym_LBRACE] = ACTIONS(4094), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_signed] = ACTIONS(4092), + [anon_sym_unsigned] = ACTIONS(4092), + [anon_sym_long] = ACTIONS(4092), + [anon_sym_short] = ACTIONS(4092), + [anon_sym_LBRACK] = ACTIONS(4092), + [anon_sym_static] = ACTIONS(4092), + [anon_sym_register] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym___inline] = ACTIONS(4092), + [anon_sym___inline__] = ACTIONS(4092), + [anon_sym___forceinline] = ACTIONS(4092), + [anon_sym_thread_local] = ACTIONS(4092), + [anon_sym___thread] = ACTIONS(4092), + [anon_sym_const] = ACTIONS(4092), + [anon_sym_constexpr] = ACTIONS(4092), + [anon_sym_volatile] = ACTIONS(4092), + [anon_sym_restrict] = ACTIONS(4092), + [anon_sym___restrict__] = ACTIONS(4092), + [anon_sym__Atomic] = ACTIONS(4092), + [anon_sym__Noreturn] = ACTIONS(4092), + [anon_sym_noreturn] = ACTIONS(4092), + [anon_sym__Nonnull] = ACTIONS(4092), + [anon_sym_mutable] = ACTIONS(4092), + [anon_sym_constinit] = ACTIONS(4092), + [anon_sym_consteval] = ACTIONS(4092), + [anon_sym_alignas] = ACTIONS(4092), + [anon_sym__Alignas] = ACTIONS(4092), + [sym_primitive_type] = ACTIONS(4092), + [anon_sym_enum] = ACTIONS(4092), + [anon_sym_class] = ACTIONS(4092), + [anon_sym_struct] = ACTIONS(4092), + [anon_sym_union] = ACTIONS(4092), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(4092), + [anon_sym_case] = ACTIONS(4092), + [anon_sym_default] = ACTIONS(4092), + [anon_sym_while] = ACTIONS(4092), + [anon_sym_do] = ACTIONS(4092), + [anon_sym_for] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_goto] = ACTIONS(4092), + [anon_sym___try] = ACTIONS(4092), + [anon_sym___leave] = ACTIONS(4092), + [anon_sym_not] = ACTIONS(4092), + [anon_sym_compl] = ACTIONS(4092), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_sizeof] = ACTIONS(4092), + [anon_sym___alignof__] = ACTIONS(4092), + [anon_sym___alignof] = ACTIONS(4092), + [anon_sym__alignof] = ACTIONS(4092), + [anon_sym_alignof] = ACTIONS(4092), + [anon_sym__Alignof] = ACTIONS(4092), + [anon_sym_offsetof] = ACTIONS(4092), + [anon_sym__Generic] = ACTIONS(4092), + [anon_sym_typename] = ACTIONS(4092), + [anon_sym_asm] = ACTIONS(4092), + [anon_sym___asm__] = ACTIONS(4092), + [anon_sym___asm] = ACTIONS(4092), + [sym_number_literal] = ACTIONS(4094), + [anon_sym_L_SQUOTE] = ACTIONS(4094), + [anon_sym_u_SQUOTE] = ACTIONS(4094), + [anon_sym_U_SQUOTE] = ACTIONS(4094), + [anon_sym_u8_SQUOTE] = ACTIONS(4094), + [anon_sym_SQUOTE] = ACTIONS(4094), + [anon_sym_L_DQUOTE] = ACTIONS(4094), + [anon_sym_u_DQUOTE] = ACTIONS(4094), + [anon_sym_U_DQUOTE] = ACTIONS(4094), + [anon_sym_u8_DQUOTE] = ACTIONS(4094), + [anon_sym_DQUOTE] = ACTIONS(4094), + [sym_true] = ACTIONS(4092), + [sym_false] = ACTIONS(4092), + [anon_sym_NULL] = ACTIONS(4092), + [anon_sym_nullptr] = ACTIONS(4092), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4092), + [anon_sym_decltype] = ACTIONS(4092), + [anon_sym_explicit] = ACTIONS(4092), + [anon_sym_export] = ACTIONS(4092), + [anon_sym_import] = ACTIONS(4092), + [anon_sym_template] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_delete] = ACTIONS(4092), + [anon_sym_throw] = ACTIONS(4092), + [anon_sym_namespace] = ACTIONS(4092), + [anon_sym_static_assert] = ACTIONS(4092), + [anon_sym_concept] = ACTIONS(4092), + [anon_sym_co_return] = ACTIONS(4092), + [anon_sym_co_yield] = ACTIONS(4092), + [anon_sym_R_DQUOTE] = ACTIONS(4094), + [anon_sym_LR_DQUOTE] = ACTIONS(4094), + [anon_sym_uR_DQUOTE] = ACTIONS(4094), + [anon_sym_UR_DQUOTE] = ACTIONS(4094), + [anon_sym_u8R_DQUOTE] = ACTIONS(4094), + [anon_sym_co_await] = ACTIONS(4092), + [anon_sym_new] = ACTIONS(4092), + [anon_sym_requires] = ACTIONS(4092), + [anon_sym_CARET_CARET] = ACTIONS(4094), + [anon_sym_LBRACK_COLON] = ACTIONS(4094), + [sym_this] = ACTIONS(4092), }, - [STATE(980)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6869), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(5046), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(5048), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(851)] = { + [sym_identifier] = ACTIONS(4383), + [aux_sym_preproc_include_token1] = ACTIONS(4383), + [aux_sym_preproc_def_token1] = ACTIONS(4383), + [aux_sym_preproc_if_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4383), + [sym_preproc_directive] = ACTIONS(4383), + [anon_sym_LPAREN2] = ACTIONS(4385), + [anon_sym_BANG] = ACTIONS(4385), + [anon_sym_TILDE] = ACTIONS(4385), + [anon_sym_DASH] = ACTIONS(4383), + [anon_sym_PLUS] = ACTIONS(4383), + [anon_sym_STAR] = ACTIONS(4385), + [anon_sym_AMP_AMP] = ACTIONS(4385), + [anon_sym_AMP] = ACTIONS(4383), + [anon_sym_SEMI] = ACTIONS(4385), + [anon_sym___extension__] = ACTIONS(4383), + [anon_sym_typedef] = ACTIONS(4383), + [anon_sym_virtual] = ACTIONS(4383), + [anon_sym_extern] = ACTIONS(4383), + [anon_sym___attribute__] = ACTIONS(4383), + [anon_sym___attribute] = ACTIONS(4383), + [anon_sym_using] = ACTIONS(4383), + [anon_sym_COLON_COLON] = ACTIONS(4385), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4385), + [anon_sym___declspec] = ACTIONS(4383), + [anon_sym___based] = ACTIONS(4383), + [anon_sym___cdecl] = ACTIONS(4383), + [anon_sym___clrcall] = ACTIONS(4383), + [anon_sym___stdcall] = ACTIONS(4383), + [anon_sym___fastcall] = ACTIONS(4383), + [anon_sym___thiscall] = ACTIONS(4383), + [anon_sym___vectorcall] = ACTIONS(4383), + [anon_sym_LBRACE] = ACTIONS(4385), + [anon_sym_RBRACE] = ACTIONS(4385), + [anon_sym_signed] = ACTIONS(4383), + [anon_sym_unsigned] = ACTIONS(4383), + [anon_sym_long] = ACTIONS(4383), + [anon_sym_short] = ACTIONS(4383), + [anon_sym_LBRACK] = ACTIONS(4383), + [anon_sym_static] = ACTIONS(4383), + [anon_sym_register] = ACTIONS(4383), + [anon_sym_inline] = ACTIONS(4383), + [anon_sym___inline] = ACTIONS(4383), + [anon_sym___inline__] = ACTIONS(4383), + [anon_sym___forceinline] = ACTIONS(4383), + [anon_sym_thread_local] = ACTIONS(4383), + [anon_sym___thread] = ACTIONS(4383), + [anon_sym_const] = ACTIONS(4383), + [anon_sym_constexpr] = ACTIONS(4383), + [anon_sym_volatile] = ACTIONS(4383), + [anon_sym_restrict] = ACTIONS(4383), + [anon_sym___restrict__] = ACTIONS(4383), + [anon_sym__Atomic] = ACTIONS(4383), + [anon_sym__Noreturn] = ACTIONS(4383), + [anon_sym_noreturn] = ACTIONS(4383), + [anon_sym__Nonnull] = ACTIONS(4383), + [anon_sym_mutable] = ACTIONS(4383), + [anon_sym_constinit] = ACTIONS(4383), + [anon_sym_consteval] = ACTIONS(4383), + [anon_sym_alignas] = ACTIONS(4383), + [anon_sym__Alignas] = ACTIONS(4383), + [sym_primitive_type] = ACTIONS(4383), + [anon_sym_enum] = ACTIONS(4383), + [anon_sym_class] = ACTIONS(4383), + [anon_sym_struct] = ACTIONS(4383), + [anon_sym_union] = ACTIONS(4383), + [anon_sym_if] = ACTIONS(4383), + [anon_sym_switch] = ACTIONS(4383), + [anon_sym_case] = ACTIONS(4383), + [anon_sym_default] = ACTIONS(4383), + [anon_sym_while] = ACTIONS(4383), + [anon_sym_do] = ACTIONS(4383), + [anon_sym_for] = ACTIONS(4383), + [anon_sym_return] = ACTIONS(4383), + [anon_sym_break] = ACTIONS(4383), + [anon_sym_continue] = ACTIONS(4383), + [anon_sym_goto] = ACTIONS(4383), + [anon_sym___try] = ACTIONS(4383), + [anon_sym___leave] = ACTIONS(4383), + [anon_sym_not] = ACTIONS(4383), + [anon_sym_compl] = ACTIONS(4383), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(4383), + [anon_sym___alignof__] = ACTIONS(4383), + [anon_sym___alignof] = ACTIONS(4383), + [anon_sym__alignof] = ACTIONS(4383), + [anon_sym_alignof] = ACTIONS(4383), + [anon_sym__Alignof] = ACTIONS(4383), + [anon_sym_offsetof] = ACTIONS(4383), + [anon_sym__Generic] = ACTIONS(4383), + [anon_sym_typename] = ACTIONS(4383), + [anon_sym_asm] = ACTIONS(4383), + [anon_sym___asm__] = ACTIONS(4383), + [anon_sym___asm] = ACTIONS(4383), + [sym_number_literal] = ACTIONS(4385), + [anon_sym_L_SQUOTE] = ACTIONS(4385), + [anon_sym_u_SQUOTE] = ACTIONS(4385), + [anon_sym_U_SQUOTE] = ACTIONS(4385), + [anon_sym_u8_SQUOTE] = ACTIONS(4385), + [anon_sym_SQUOTE] = ACTIONS(4385), + [anon_sym_L_DQUOTE] = ACTIONS(4385), + [anon_sym_u_DQUOTE] = ACTIONS(4385), + [anon_sym_U_DQUOTE] = ACTIONS(4385), + [anon_sym_u8_DQUOTE] = ACTIONS(4385), + [anon_sym_DQUOTE] = ACTIONS(4385), + [sym_true] = ACTIONS(4383), + [sym_false] = ACTIONS(4383), + [anon_sym_NULL] = ACTIONS(4383), + [anon_sym_nullptr] = ACTIONS(4383), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4383), + [anon_sym_decltype] = ACTIONS(4383), + [anon_sym_explicit] = ACTIONS(4383), + [anon_sym_export] = ACTIONS(4383), + [anon_sym_import] = ACTIONS(4383), + [anon_sym_template] = ACTIONS(4383), + [anon_sym_operator] = ACTIONS(4383), + [anon_sym_try] = ACTIONS(4383), + [anon_sym_delete] = ACTIONS(4383), + [anon_sym_throw] = ACTIONS(4383), + [anon_sym_namespace] = ACTIONS(4383), + [anon_sym_static_assert] = ACTIONS(4383), + [anon_sym_concept] = ACTIONS(4383), + [anon_sym_co_return] = ACTIONS(4383), + [anon_sym_co_yield] = ACTIONS(4383), + [anon_sym_R_DQUOTE] = ACTIONS(4385), + [anon_sym_LR_DQUOTE] = ACTIONS(4385), + [anon_sym_uR_DQUOTE] = ACTIONS(4385), + [anon_sym_UR_DQUOTE] = ACTIONS(4385), + [anon_sym_u8R_DQUOTE] = ACTIONS(4385), + [anon_sym_co_await] = ACTIONS(4383), + [anon_sym_new] = ACTIONS(4383), + [anon_sym_requires] = ACTIONS(4383), + [anon_sym_CARET_CARET] = ACTIONS(4385), + [anon_sym_LBRACK_COLON] = ACTIONS(4385), + [sym_this] = ACTIONS(4383), }, - [STATE(981)] = { - [sym_type_qualifier] = STATE(982), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6874), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(982), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(5050), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5052), - [anon_sym_RBRACK] = ACTIONS(5054), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(852)] = { + [sym_identifier] = ACTIONS(3954), + [aux_sym_preproc_include_token1] = ACTIONS(3954), + [aux_sym_preproc_def_token1] = ACTIONS(3954), + [aux_sym_preproc_if_token1] = ACTIONS(3954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3954), + [sym_preproc_directive] = ACTIONS(3954), + [anon_sym_LPAREN2] = ACTIONS(3956), + [anon_sym_BANG] = ACTIONS(3956), + [anon_sym_TILDE] = ACTIONS(3956), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_STAR] = ACTIONS(3956), + [anon_sym_AMP_AMP] = ACTIONS(3956), + [anon_sym_AMP] = ACTIONS(3954), + [anon_sym_SEMI] = ACTIONS(3956), + [anon_sym___extension__] = ACTIONS(3954), + [anon_sym_typedef] = ACTIONS(3954), + [anon_sym_virtual] = ACTIONS(3954), + [anon_sym_extern] = ACTIONS(3954), + [anon_sym___attribute__] = ACTIONS(3954), + [anon_sym___attribute] = ACTIONS(3954), + [anon_sym_using] = ACTIONS(3954), + [anon_sym_COLON_COLON] = ACTIONS(3956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3956), + [anon_sym___declspec] = ACTIONS(3954), + [anon_sym___based] = ACTIONS(3954), + [anon_sym___cdecl] = ACTIONS(3954), + [anon_sym___clrcall] = ACTIONS(3954), + [anon_sym___stdcall] = ACTIONS(3954), + [anon_sym___fastcall] = ACTIONS(3954), + [anon_sym___thiscall] = ACTIONS(3954), + [anon_sym___vectorcall] = ACTIONS(3954), + [anon_sym_LBRACE] = ACTIONS(3956), + [anon_sym_RBRACE] = ACTIONS(3956), + [anon_sym_signed] = ACTIONS(3954), + [anon_sym_unsigned] = ACTIONS(3954), + [anon_sym_long] = ACTIONS(3954), + [anon_sym_short] = ACTIONS(3954), + [anon_sym_LBRACK] = ACTIONS(3954), + [anon_sym_static] = ACTIONS(3954), + [anon_sym_register] = ACTIONS(3954), + [anon_sym_inline] = ACTIONS(3954), + [anon_sym___inline] = ACTIONS(3954), + [anon_sym___inline__] = ACTIONS(3954), + [anon_sym___forceinline] = ACTIONS(3954), + [anon_sym_thread_local] = ACTIONS(3954), + [anon_sym___thread] = ACTIONS(3954), + [anon_sym_const] = ACTIONS(3954), + [anon_sym_constexpr] = ACTIONS(3954), + [anon_sym_volatile] = ACTIONS(3954), + [anon_sym_restrict] = ACTIONS(3954), + [anon_sym___restrict__] = ACTIONS(3954), + [anon_sym__Atomic] = ACTIONS(3954), + [anon_sym__Noreturn] = ACTIONS(3954), + [anon_sym_noreturn] = ACTIONS(3954), + [anon_sym__Nonnull] = ACTIONS(3954), + [anon_sym_mutable] = ACTIONS(3954), + [anon_sym_constinit] = ACTIONS(3954), + [anon_sym_consteval] = ACTIONS(3954), + [anon_sym_alignas] = ACTIONS(3954), + [anon_sym__Alignas] = ACTIONS(3954), + [sym_primitive_type] = ACTIONS(3954), + [anon_sym_enum] = ACTIONS(3954), + [anon_sym_class] = ACTIONS(3954), + [anon_sym_struct] = ACTIONS(3954), + [anon_sym_union] = ACTIONS(3954), + [anon_sym_if] = ACTIONS(3954), + [anon_sym_switch] = ACTIONS(3954), + [anon_sym_case] = ACTIONS(3954), + [anon_sym_default] = ACTIONS(3954), + [anon_sym_while] = ACTIONS(3954), + [anon_sym_do] = ACTIONS(3954), + [anon_sym_for] = ACTIONS(3954), + [anon_sym_return] = ACTIONS(3954), + [anon_sym_break] = ACTIONS(3954), + [anon_sym_continue] = ACTIONS(3954), + [anon_sym_goto] = ACTIONS(3954), + [anon_sym___try] = ACTIONS(3954), + [anon_sym___leave] = ACTIONS(3954), + [anon_sym_not] = ACTIONS(3954), + [anon_sym_compl] = ACTIONS(3954), + [anon_sym_DASH_DASH] = ACTIONS(3956), + [anon_sym_PLUS_PLUS] = ACTIONS(3956), + [anon_sym_sizeof] = ACTIONS(3954), + [anon_sym___alignof__] = ACTIONS(3954), + [anon_sym___alignof] = ACTIONS(3954), + [anon_sym__alignof] = ACTIONS(3954), + [anon_sym_alignof] = ACTIONS(3954), + [anon_sym__Alignof] = ACTIONS(3954), + [anon_sym_offsetof] = ACTIONS(3954), + [anon_sym__Generic] = ACTIONS(3954), + [anon_sym_typename] = ACTIONS(3954), + [anon_sym_asm] = ACTIONS(3954), + [anon_sym___asm__] = ACTIONS(3954), + [anon_sym___asm] = ACTIONS(3954), + [sym_number_literal] = ACTIONS(3956), + [anon_sym_L_SQUOTE] = ACTIONS(3956), + [anon_sym_u_SQUOTE] = ACTIONS(3956), + [anon_sym_U_SQUOTE] = ACTIONS(3956), + [anon_sym_u8_SQUOTE] = ACTIONS(3956), + [anon_sym_SQUOTE] = ACTIONS(3956), + [anon_sym_L_DQUOTE] = ACTIONS(3956), + [anon_sym_u_DQUOTE] = ACTIONS(3956), + [anon_sym_U_DQUOTE] = ACTIONS(3956), + [anon_sym_u8_DQUOTE] = ACTIONS(3956), + [anon_sym_DQUOTE] = ACTIONS(3956), + [sym_true] = ACTIONS(3954), + [sym_false] = ACTIONS(3954), + [anon_sym_NULL] = ACTIONS(3954), + [anon_sym_nullptr] = ACTIONS(3954), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3954), + [anon_sym_decltype] = ACTIONS(3954), + [anon_sym_explicit] = ACTIONS(3954), + [anon_sym_export] = ACTIONS(3954), + [anon_sym_import] = ACTIONS(3954), + [anon_sym_template] = ACTIONS(3954), + [anon_sym_operator] = ACTIONS(3954), + [anon_sym_try] = ACTIONS(3954), + [anon_sym_delete] = ACTIONS(3954), + [anon_sym_throw] = ACTIONS(3954), + [anon_sym_namespace] = ACTIONS(3954), + [anon_sym_static_assert] = ACTIONS(3954), + [anon_sym_concept] = ACTIONS(3954), + [anon_sym_co_return] = ACTIONS(3954), + [anon_sym_co_yield] = ACTIONS(3954), + [anon_sym_R_DQUOTE] = ACTIONS(3956), + [anon_sym_LR_DQUOTE] = ACTIONS(3956), + [anon_sym_uR_DQUOTE] = ACTIONS(3956), + [anon_sym_UR_DQUOTE] = ACTIONS(3956), + [anon_sym_u8R_DQUOTE] = ACTIONS(3956), + [anon_sym_co_await] = ACTIONS(3954), + [anon_sym_new] = ACTIONS(3954), + [anon_sym_requires] = ACTIONS(3954), + [anon_sym_CARET_CARET] = ACTIONS(3956), + [anon_sym_LBRACK_COLON] = ACTIONS(3956), + [sym_this] = ACTIONS(3954), }, - [STATE(982)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6882), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(5056), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(5058), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(853)] = { + [sym_identifier] = ACTIONS(3958), + [aux_sym_preproc_include_token1] = ACTIONS(3958), + [aux_sym_preproc_def_token1] = ACTIONS(3958), + [aux_sym_preproc_if_token1] = ACTIONS(3958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3958), + [sym_preproc_directive] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3960), + [anon_sym_AMP] = ACTIONS(3958), + [anon_sym_SEMI] = ACTIONS(3960), + [anon_sym___extension__] = ACTIONS(3958), + [anon_sym_typedef] = ACTIONS(3958), + [anon_sym_virtual] = ACTIONS(3958), + [anon_sym_extern] = ACTIONS(3958), + [anon_sym___attribute__] = ACTIONS(3958), + [anon_sym___attribute] = ACTIONS(3958), + [anon_sym_using] = ACTIONS(3958), + [anon_sym_COLON_COLON] = ACTIONS(3960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3960), + [anon_sym___declspec] = ACTIONS(3958), + [anon_sym___based] = ACTIONS(3958), + [anon_sym___cdecl] = ACTIONS(3958), + [anon_sym___clrcall] = ACTIONS(3958), + [anon_sym___stdcall] = ACTIONS(3958), + [anon_sym___fastcall] = ACTIONS(3958), + [anon_sym___thiscall] = ACTIONS(3958), + [anon_sym___vectorcall] = ACTIONS(3958), + [anon_sym_LBRACE] = ACTIONS(3960), + [anon_sym_RBRACE] = ACTIONS(3960), + [anon_sym_signed] = ACTIONS(3958), + [anon_sym_unsigned] = ACTIONS(3958), + [anon_sym_long] = ACTIONS(3958), + [anon_sym_short] = ACTIONS(3958), + [anon_sym_LBRACK] = ACTIONS(3958), + [anon_sym_static] = ACTIONS(3958), + [anon_sym_register] = ACTIONS(3958), + [anon_sym_inline] = ACTIONS(3958), + [anon_sym___inline] = ACTIONS(3958), + [anon_sym___inline__] = ACTIONS(3958), + [anon_sym___forceinline] = ACTIONS(3958), + [anon_sym_thread_local] = ACTIONS(3958), + [anon_sym___thread] = ACTIONS(3958), + [anon_sym_const] = ACTIONS(3958), + [anon_sym_constexpr] = ACTIONS(3958), + [anon_sym_volatile] = ACTIONS(3958), + [anon_sym_restrict] = ACTIONS(3958), + [anon_sym___restrict__] = ACTIONS(3958), + [anon_sym__Atomic] = ACTIONS(3958), + [anon_sym__Noreturn] = ACTIONS(3958), + [anon_sym_noreturn] = ACTIONS(3958), + [anon_sym__Nonnull] = ACTIONS(3958), + [anon_sym_mutable] = ACTIONS(3958), + [anon_sym_constinit] = ACTIONS(3958), + [anon_sym_consteval] = ACTIONS(3958), + [anon_sym_alignas] = ACTIONS(3958), + [anon_sym__Alignas] = ACTIONS(3958), + [sym_primitive_type] = ACTIONS(3958), + [anon_sym_enum] = ACTIONS(3958), + [anon_sym_class] = ACTIONS(3958), + [anon_sym_struct] = ACTIONS(3958), + [anon_sym_union] = ACTIONS(3958), + [anon_sym_if] = ACTIONS(3958), + [anon_sym_switch] = ACTIONS(3958), + [anon_sym_case] = ACTIONS(3958), + [anon_sym_default] = ACTIONS(3958), + [anon_sym_while] = ACTIONS(3958), + [anon_sym_do] = ACTIONS(3958), + [anon_sym_for] = ACTIONS(3958), + [anon_sym_return] = ACTIONS(3958), + [anon_sym_break] = ACTIONS(3958), + [anon_sym_continue] = ACTIONS(3958), + [anon_sym_goto] = ACTIONS(3958), + [anon_sym___try] = ACTIONS(3958), + [anon_sym___leave] = ACTIONS(3958), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(3960), + [anon_sym_PLUS_PLUS] = ACTIONS(3960), + [anon_sym_sizeof] = ACTIONS(3958), + [anon_sym___alignof__] = ACTIONS(3958), + [anon_sym___alignof] = ACTIONS(3958), + [anon_sym__alignof] = ACTIONS(3958), + [anon_sym_alignof] = ACTIONS(3958), + [anon_sym__Alignof] = ACTIONS(3958), + [anon_sym_offsetof] = ACTIONS(3958), + [anon_sym__Generic] = ACTIONS(3958), + [anon_sym_typename] = ACTIONS(3958), + [anon_sym_asm] = ACTIONS(3958), + [anon_sym___asm__] = ACTIONS(3958), + [anon_sym___asm] = ACTIONS(3958), + [sym_number_literal] = ACTIONS(3960), + [anon_sym_L_SQUOTE] = ACTIONS(3960), + [anon_sym_u_SQUOTE] = ACTIONS(3960), + [anon_sym_U_SQUOTE] = ACTIONS(3960), + [anon_sym_u8_SQUOTE] = ACTIONS(3960), + [anon_sym_SQUOTE] = ACTIONS(3960), + [anon_sym_L_DQUOTE] = ACTIONS(3960), + [anon_sym_u_DQUOTE] = ACTIONS(3960), + [anon_sym_U_DQUOTE] = ACTIONS(3960), + [anon_sym_u8_DQUOTE] = ACTIONS(3960), + [anon_sym_DQUOTE] = ACTIONS(3960), + [sym_true] = ACTIONS(3958), + [sym_false] = ACTIONS(3958), + [anon_sym_NULL] = ACTIONS(3958), + [anon_sym_nullptr] = ACTIONS(3958), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3958), + [anon_sym_decltype] = ACTIONS(3958), + [anon_sym_explicit] = ACTIONS(3958), + [anon_sym_export] = ACTIONS(3958), + [anon_sym_import] = ACTIONS(3958), + [anon_sym_template] = ACTIONS(3958), + [anon_sym_operator] = ACTIONS(3958), + [anon_sym_try] = ACTIONS(3958), + [anon_sym_delete] = ACTIONS(3958), + [anon_sym_throw] = ACTIONS(3958), + [anon_sym_namespace] = ACTIONS(3958), + [anon_sym_static_assert] = ACTIONS(3958), + [anon_sym_concept] = ACTIONS(3958), + [anon_sym_co_return] = ACTIONS(3958), + [anon_sym_co_yield] = ACTIONS(3958), + [anon_sym_R_DQUOTE] = ACTIONS(3960), + [anon_sym_LR_DQUOTE] = ACTIONS(3960), + [anon_sym_uR_DQUOTE] = ACTIONS(3960), + [anon_sym_UR_DQUOTE] = ACTIONS(3960), + [anon_sym_u8R_DQUOTE] = ACTIONS(3960), + [anon_sym_co_await] = ACTIONS(3958), + [anon_sym_new] = ACTIONS(3958), + [anon_sym_requires] = ACTIONS(3958), + [anon_sym_CARET_CARET] = ACTIONS(3960), + [anon_sym_LBRACK_COLON] = ACTIONS(3960), + [sym_this] = ACTIONS(3958), }, - [STATE(983)] = { - [sym_type_qualifier] = STATE(984), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6905), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(5060), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5062), - [anon_sym_RBRACK] = ACTIONS(5064), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(854)] = { + [sym_identifier] = ACTIONS(3917), + [aux_sym_preproc_include_token1] = ACTIONS(3917), + [aux_sym_preproc_def_token1] = ACTIONS(3917), + [aux_sym_preproc_if_token1] = ACTIONS(3917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3917), + [sym_preproc_directive] = ACTIONS(3917), + [anon_sym_LPAREN2] = ACTIONS(3919), + [anon_sym_BANG] = ACTIONS(3919), + [anon_sym_TILDE] = ACTIONS(3919), + [anon_sym_DASH] = ACTIONS(3917), + [anon_sym_PLUS] = ACTIONS(3917), + [anon_sym_STAR] = ACTIONS(3919), + [anon_sym_AMP_AMP] = ACTIONS(3919), + [anon_sym_AMP] = ACTIONS(3917), + [anon_sym_SEMI] = ACTIONS(3919), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_typedef] = ACTIONS(3917), + [anon_sym_virtual] = ACTIONS(3917), + [anon_sym_extern] = ACTIONS(3917), + [anon_sym___attribute__] = ACTIONS(3917), + [anon_sym___attribute] = ACTIONS(3917), + [anon_sym_using] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(3919), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3919), + [anon_sym___declspec] = ACTIONS(3917), + [anon_sym___based] = ACTIONS(3917), + [anon_sym___cdecl] = ACTIONS(3917), + [anon_sym___clrcall] = ACTIONS(3917), + [anon_sym___stdcall] = ACTIONS(3917), + [anon_sym___fastcall] = ACTIONS(3917), + [anon_sym___thiscall] = ACTIONS(3917), + [anon_sym___vectorcall] = ACTIONS(3917), + [anon_sym_LBRACE] = ACTIONS(3919), + [anon_sym_RBRACE] = ACTIONS(3919), + [anon_sym_signed] = ACTIONS(3917), + [anon_sym_unsigned] = ACTIONS(3917), + [anon_sym_long] = ACTIONS(3917), + [anon_sym_short] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(3917), + [anon_sym_static] = ACTIONS(3917), + [anon_sym_register] = ACTIONS(3917), + [anon_sym_inline] = ACTIONS(3917), + [anon_sym___inline] = ACTIONS(3917), + [anon_sym___inline__] = ACTIONS(3917), + [anon_sym___forceinline] = ACTIONS(3917), + [anon_sym_thread_local] = ACTIONS(3917), + [anon_sym___thread] = ACTIONS(3917), + [anon_sym_const] = ACTIONS(3917), + [anon_sym_constexpr] = ACTIONS(3917), + [anon_sym_volatile] = ACTIONS(3917), + [anon_sym_restrict] = ACTIONS(3917), + [anon_sym___restrict__] = ACTIONS(3917), + [anon_sym__Atomic] = ACTIONS(3917), + [anon_sym__Noreturn] = ACTIONS(3917), + [anon_sym_noreturn] = ACTIONS(3917), + [anon_sym__Nonnull] = ACTIONS(3917), + [anon_sym_mutable] = ACTIONS(3917), + [anon_sym_constinit] = ACTIONS(3917), + [anon_sym_consteval] = ACTIONS(3917), + [anon_sym_alignas] = ACTIONS(3917), + [anon_sym__Alignas] = ACTIONS(3917), + [sym_primitive_type] = ACTIONS(3917), + [anon_sym_enum] = ACTIONS(3917), + [anon_sym_class] = ACTIONS(3917), + [anon_sym_struct] = ACTIONS(3917), + [anon_sym_union] = ACTIONS(3917), + [anon_sym_if] = ACTIONS(3917), + [anon_sym_switch] = ACTIONS(3917), + [anon_sym_case] = ACTIONS(3917), + [anon_sym_default] = ACTIONS(3917), + [anon_sym_while] = ACTIONS(3917), + [anon_sym_do] = ACTIONS(3917), + [anon_sym_for] = ACTIONS(3917), + [anon_sym_return] = ACTIONS(3917), + [anon_sym_break] = ACTIONS(3917), + [anon_sym_continue] = ACTIONS(3917), + [anon_sym_goto] = ACTIONS(3917), + [anon_sym___try] = ACTIONS(3917), + [anon_sym___leave] = ACTIONS(3917), + [anon_sym_not] = ACTIONS(3917), + [anon_sym_compl] = ACTIONS(3917), + [anon_sym_DASH_DASH] = ACTIONS(3919), + [anon_sym_PLUS_PLUS] = ACTIONS(3919), + [anon_sym_sizeof] = ACTIONS(3917), + [anon_sym___alignof__] = ACTIONS(3917), + [anon_sym___alignof] = ACTIONS(3917), + [anon_sym__alignof] = ACTIONS(3917), + [anon_sym_alignof] = ACTIONS(3917), + [anon_sym__Alignof] = ACTIONS(3917), + [anon_sym_offsetof] = ACTIONS(3917), + [anon_sym__Generic] = ACTIONS(3917), + [anon_sym_typename] = ACTIONS(3917), + [anon_sym_asm] = ACTIONS(3917), + [anon_sym___asm__] = ACTIONS(3917), + [anon_sym___asm] = ACTIONS(3917), + [sym_number_literal] = ACTIONS(3919), + [anon_sym_L_SQUOTE] = ACTIONS(3919), + [anon_sym_u_SQUOTE] = ACTIONS(3919), + [anon_sym_U_SQUOTE] = ACTIONS(3919), + [anon_sym_u8_SQUOTE] = ACTIONS(3919), + [anon_sym_SQUOTE] = ACTIONS(3919), + [anon_sym_L_DQUOTE] = ACTIONS(3919), + [anon_sym_u_DQUOTE] = ACTIONS(3919), + [anon_sym_U_DQUOTE] = ACTIONS(3919), + [anon_sym_u8_DQUOTE] = ACTIONS(3919), + [anon_sym_DQUOTE] = ACTIONS(3919), + [sym_true] = ACTIONS(3917), + [sym_false] = ACTIONS(3917), + [anon_sym_NULL] = ACTIONS(3917), + [anon_sym_nullptr] = ACTIONS(3917), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3917), + [anon_sym_decltype] = ACTIONS(3917), + [anon_sym_explicit] = ACTIONS(3917), + [anon_sym_export] = ACTIONS(3917), + [anon_sym_import] = ACTIONS(3917), + [anon_sym_template] = ACTIONS(3917), + [anon_sym_operator] = ACTIONS(3917), + [anon_sym_try] = ACTIONS(3917), + [anon_sym_delete] = ACTIONS(3917), + [anon_sym_throw] = ACTIONS(3917), + [anon_sym_namespace] = ACTIONS(3917), + [anon_sym_static_assert] = ACTIONS(3917), + [anon_sym_concept] = ACTIONS(3917), + [anon_sym_co_return] = ACTIONS(3917), + [anon_sym_co_yield] = ACTIONS(3917), + [anon_sym_R_DQUOTE] = ACTIONS(3919), + [anon_sym_LR_DQUOTE] = ACTIONS(3919), + [anon_sym_uR_DQUOTE] = ACTIONS(3919), + [anon_sym_UR_DQUOTE] = ACTIONS(3919), + [anon_sym_u8R_DQUOTE] = ACTIONS(3919), + [anon_sym_co_await] = ACTIONS(3917), + [anon_sym_new] = ACTIONS(3917), + [anon_sym_requires] = ACTIONS(3917), + [anon_sym_CARET_CARET] = ACTIONS(3919), + [anon_sym_LBRACK_COLON] = ACTIONS(3919), + [sym_this] = ACTIONS(3917), }, - [STATE(984)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6910), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(5066), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(5068), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(855)] = { + [sym_identifier] = ACTIONS(3931), + [aux_sym_preproc_include_token1] = ACTIONS(3931), + [aux_sym_preproc_def_token1] = ACTIONS(3931), + [aux_sym_preproc_if_token1] = ACTIONS(3931), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3931), + [sym_preproc_directive] = ACTIONS(3931), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_TILDE] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym_SEMI] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(3931), + [anon_sym_typedef] = ACTIONS(3931), + [anon_sym_virtual] = ACTIONS(3931), + [anon_sym_extern] = ACTIONS(3931), + [anon_sym___attribute__] = ACTIONS(3931), + [anon_sym___attribute] = ACTIONS(3931), + [anon_sym_using] = ACTIONS(3931), + [anon_sym_COLON_COLON] = ACTIONS(3933), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3933), + [anon_sym___declspec] = ACTIONS(3931), + [anon_sym___based] = ACTIONS(3931), + [anon_sym___cdecl] = ACTIONS(3931), + [anon_sym___clrcall] = ACTIONS(3931), + [anon_sym___stdcall] = ACTIONS(3931), + [anon_sym___fastcall] = ACTIONS(3931), + [anon_sym___thiscall] = ACTIONS(3931), + [anon_sym___vectorcall] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3933), + [anon_sym_RBRACE] = ACTIONS(3933), + [anon_sym_signed] = ACTIONS(3931), + [anon_sym_unsigned] = ACTIONS(3931), + [anon_sym_long] = ACTIONS(3931), + [anon_sym_short] = ACTIONS(3931), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_static] = ACTIONS(3931), + [anon_sym_register] = ACTIONS(3931), + [anon_sym_inline] = ACTIONS(3931), + [anon_sym___inline] = ACTIONS(3931), + [anon_sym___inline__] = ACTIONS(3931), + [anon_sym___forceinline] = ACTIONS(3931), + [anon_sym_thread_local] = ACTIONS(3931), + [anon_sym___thread] = ACTIONS(3931), + [anon_sym_const] = ACTIONS(3931), + [anon_sym_constexpr] = ACTIONS(3931), + [anon_sym_volatile] = ACTIONS(3931), + [anon_sym_restrict] = ACTIONS(3931), + [anon_sym___restrict__] = ACTIONS(3931), + [anon_sym__Atomic] = ACTIONS(3931), + [anon_sym__Noreturn] = ACTIONS(3931), + [anon_sym_noreturn] = ACTIONS(3931), + [anon_sym__Nonnull] = ACTIONS(3931), + [anon_sym_mutable] = ACTIONS(3931), + [anon_sym_constinit] = ACTIONS(3931), + [anon_sym_consteval] = ACTIONS(3931), + [anon_sym_alignas] = ACTIONS(3931), + [anon_sym__Alignas] = ACTIONS(3931), + [sym_primitive_type] = ACTIONS(3931), + [anon_sym_enum] = ACTIONS(3931), + [anon_sym_class] = ACTIONS(3931), + [anon_sym_struct] = ACTIONS(3931), + [anon_sym_union] = ACTIONS(3931), + [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___try] = ACTIONS(3931), + [anon_sym___leave] = ACTIONS(3931), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3933), + [anon_sym_sizeof] = ACTIONS(3931), + [anon_sym___alignof__] = ACTIONS(3931), + [anon_sym___alignof] = ACTIONS(3931), + [anon_sym__alignof] = ACTIONS(3931), + [anon_sym_alignof] = ACTIONS(3931), + [anon_sym__Alignof] = ACTIONS(3931), + [anon_sym_offsetof] = ACTIONS(3931), + [anon_sym__Generic] = ACTIONS(3931), + [anon_sym_typename] = ACTIONS(3931), + [anon_sym_asm] = ACTIONS(3931), + [anon_sym___asm__] = ACTIONS(3931), + [anon_sym___asm] = ACTIONS(3931), + [sym_number_literal] = ACTIONS(3933), + [anon_sym_L_SQUOTE] = ACTIONS(3933), + [anon_sym_u_SQUOTE] = ACTIONS(3933), + [anon_sym_U_SQUOTE] = ACTIONS(3933), + [anon_sym_u8_SQUOTE] = ACTIONS(3933), + [anon_sym_SQUOTE] = ACTIONS(3933), + [anon_sym_L_DQUOTE] = ACTIONS(3933), + [anon_sym_u_DQUOTE] = ACTIONS(3933), + [anon_sym_U_DQUOTE] = ACTIONS(3933), + [anon_sym_u8_DQUOTE] = ACTIONS(3933), + [anon_sym_DQUOTE] = ACTIONS(3933), + [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(3931), + [anon_sym_decltype] = ACTIONS(3931), + [anon_sym_explicit] = ACTIONS(3931), + [anon_sym_export] = ACTIONS(3931), + [anon_sym_import] = ACTIONS(3931), + [anon_sym_template] = ACTIONS(3931), + [anon_sym_operator] = ACTIONS(3931), + [anon_sym_try] = ACTIONS(3931), + [anon_sym_delete] = ACTIONS(3931), + [anon_sym_throw] = ACTIONS(3931), + [anon_sym_namespace] = ACTIONS(3931), + [anon_sym_static_assert] = ACTIONS(3931), + [anon_sym_concept] = ACTIONS(3931), + [anon_sym_co_return] = ACTIONS(3931), + [anon_sym_co_yield] = ACTIONS(3931), + [anon_sym_R_DQUOTE] = ACTIONS(3933), + [anon_sym_LR_DQUOTE] = ACTIONS(3933), + [anon_sym_uR_DQUOTE] = ACTIONS(3933), + [anon_sym_UR_DQUOTE] = ACTIONS(3933), + [anon_sym_u8R_DQUOTE] = ACTIONS(3933), + [anon_sym_co_await] = ACTIONS(3931), + [anon_sym_new] = ACTIONS(3931), + [anon_sym_requires] = ACTIONS(3931), + [anon_sym_CARET_CARET] = ACTIONS(3933), + [anon_sym_LBRACK_COLON] = ACTIONS(3933), + [sym_this] = ACTIONS(3931), }, - [STATE(985)] = { - [sym_type_qualifier] = STATE(986), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6911), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(986), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(5070), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5072), - [anon_sym_RBRACK] = ACTIONS(5074), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(856)] = { + [sym_identifier] = ACTIONS(4096), + [aux_sym_preproc_include_token1] = ACTIONS(4096), + [aux_sym_preproc_def_token1] = ACTIONS(4096), + [aux_sym_preproc_if_token1] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), + [sym_preproc_directive] = ACTIONS(4096), + [anon_sym_LPAREN2] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(4098), + [anon_sym_TILDE] = ACTIONS(4098), + [anon_sym_DASH] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4096), + [anon_sym_STAR] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4096), + [anon_sym_SEMI] = ACTIONS(4098), + [anon_sym___extension__] = ACTIONS(4096), + [anon_sym_typedef] = ACTIONS(4096), + [anon_sym_virtual] = ACTIONS(4096), + [anon_sym_extern] = ACTIONS(4096), + [anon_sym___attribute__] = ACTIONS(4096), + [anon_sym___attribute] = ACTIONS(4096), + [anon_sym_using] = ACTIONS(4096), + [anon_sym_COLON_COLON] = ACTIONS(4098), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4098), + [anon_sym___declspec] = ACTIONS(4096), + [anon_sym___based] = ACTIONS(4096), + [anon_sym___cdecl] = ACTIONS(4096), + [anon_sym___clrcall] = ACTIONS(4096), + [anon_sym___stdcall] = ACTIONS(4096), + [anon_sym___fastcall] = ACTIONS(4096), + [anon_sym___thiscall] = ACTIONS(4096), + [anon_sym___vectorcall] = ACTIONS(4096), + [anon_sym_LBRACE] = ACTIONS(4098), + [anon_sym_RBRACE] = ACTIONS(4098), + [anon_sym_signed] = ACTIONS(4096), + [anon_sym_unsigned] = ACTIONS(4096), + [anon_sym_long] = ACTIONS(4096), + [anon_sym_short] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_static] = ACTIONS(4096), + [anon_sym_register] = ACTIONS(4096), + [anon_sym_inline] = ACTIONS(4096), + [anon_sym___inline] = ACTIONS(4096), + [anon_sym___inline__] = ACTIONS(4096), + [anon_sym___forceinline] = ACTIONS(4096), + [anon_sym_thread_local] = ACTIONS(4096), + [anon_sym___thread] = ACTIONS(4096), + [anon_sym_const] = ACTIONS(4096), + [anon_sym_constexpr] = ACTIONS(4096), + [anon_sym_volatile] = ACTIONS(4096), + [anon_sym_restrict] = ACTIONS(4096), + [anon_sym___restrict__] = ACTIONS(4096), + [anon_sym__Atomic] = ACTIONS(4096), + [anon_sym__Noreturn] = ACTIONS(4096), + [anon_sym_noreturn] = ACTIONS(4096), + [anon_sym__Nonnull] = ACTIONS(4096), + [anon_sym_mutable] = ACTIONS(4096), + [anon_sym_constinit] = ACTIONS(4096), + [anon_sym_consteval] = ACTIONS(4096), + [anon_sym_alignas] = ACTIONS(4096), + [anon_sym__Alignas] = ACTIONS(4096), + [sym_primitive_type] = ACTIONS(4096), + [anon_sym_enum] = ACTIONS(4096), + [anon_sym_class] = ACTIONS(4096), + [anon_sym_struct] = ACTIONS(4096), + [anon_sym_union] = ACTIONS(4096), + [anon_sym_if] = ACTIONS(4096), + [anon_sym_switch] = ACTIONS(4096), + [anon_sym_case] = ACTIONS(4096), + [anon_sym_default] = ACTIONS(4096), + [anon_sym_while] = ACTIONS(4096), + [anon_sym_do] = ACTIONS(4096), + [anon_sym_for] = ACTIONS(4096), + [anon_sym_return] = ACTIONS(4096), + [anon_sym_break] = ACTIONS(4096), + [anon_sym_continue] = ACTIONS(4096), + [anon_sym_goto] = ACTIONS(4096), + [anon_sym___try] = ACTIONS(4096), + [anon_sym___leave] = ACTIONS(4096), + [anon_sym_not] = ACTIONS(4096), + [anon_sym_compl] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4098), + [anon_sym_PLUS_PLUS] = ACTIONS(4098), + [anon_sym_sizeof] = ACTIONS(4096), + [anon_sym___alignof__] = ACTIONS(4096), + [anon_sym___alignof] = ACTIONS(4096), + [anon_sym__alignof] = ACTIONS(4096), + [anon_sym_alignof] = ACTIONS(4096), + [anon_sym__Alignof] = ACTIONS(4096), + [anon_sym_offsetof] = ACTIONS(4096), + [anon_sym__Generic] = ACTIONS(4096), + [anon_sym_typename] = ACTIONS(4096), + [anon_sym_asm] = ACTIONS(4096), + [anon_sym___asm__] = ACTIONS(4096), + [anon_sym___asm] = ACTIONS(4096), + [sym_number_literal] = ACTIONS(4098), + [anon_sym_L_SQUOTE] = ACTIONS(4098), + [anon_sym_u_SQUOTE] = ACTIONS(4098), + [anon_sym_U_SQUOTE] = ACTIONS(4098), + [anon_sym_u8_SQUOTE] = ACTIONS(4098), + [anon_sym_SQUOTE] = ACTIONS(4098), + [anon_sym_L_DQUOTE] = ACTIONS(4098), + [anon_sym_u_DQUOTE] = ACTIONS(4098), + [anon_sym_U_DQUOTE] = ACTIONS(4098), + [anon_sym_u8_DQUOTE] = ACTIONS(4098), + [anon_sym_DQUOTE] = ACTIONS(4098), + [sym_true] = ACTIONS(4096), + [sym_false] = ACTIONS(4096), + [anon_sym_NULL] = ACTIONS(4096), + [anon_sym_nullptr] = ACTIONS(4096), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4096), + [anon_sym_decltype] = ACTIONS(4096), + [anon_sym_explicit] = ACTIONS(4096), + [anon_sym_export] = ACTIONS(4096), + [anon_sym_import] = ACTIONS(4096), + [anon_sym_template] = ACTIONS(4096), + [anon_sym_operator] = ACTIONS(4096), + [anon_sym_try] = ACTIONS(4096), + [anon_sym_delete] = ACTIONS(4096), + [anon_sym_throw] = ACTIONS(4096), + [anon_sym_namespace] = ACTIONS(4096), + [anon_sym_static_assert] = ACTIONS(4096), + [anon_sym_concept] = ACTIONS(4096), + [anon_sym_co_return] = ACTIONS(4096), + [anon_sym_co_yield] = ACTIONS(4096), + [anon_sym_R_DQUOTE] = ACTIONS(4098), + [anon_sym_LR_DQUOTE] = ACTIONS(4098), + [anon_sym_uR_DQUOTE] = ACTIONS(4098), + [anon_sym_UR_DQUOTE] = ACTIONS(4098), + [anon_sym_u8R_DQUOTE] = ACTIONS(4098), + [anon_sym_co_await] = ACTIONS(4096), + [anon_sym_new] = ACTIONS(4096), + [anon_sym_requires] = ACTIONS(4096), + [anon_sym_CARET_CARET] = ACTIONS(4098), + [anon_sym_LBRACK_COLON] = ACTIONS(4098), + [sym_this] = ACTIONS(4096), }, - [STATE(986)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6914), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(5076), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(5078), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(857)] = { + [sym_identifier] = ACTIONS(3988), + [aux_sym_preproc_include_token1] = ACTIONS(3988), + [aux_sym_preproc_def_token1] = ACTIONS(3988), + [aux_sym_preproc_if_token1] = ACTIONS(3988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3988), + [sym_preproc_directive] = ACTIONS(3988), + [anon_sym_LPAREN2] = ACTIONS(3990), + [anon_sym_BANG] = ACTIONS(3990), + [anon_sym_TILDE] = ACTIONS(3990), + [anon_sym_DASH] = ACTIONS(3988), + [anon_sym_PLUS] = ACTIONS(3988), + [anon_sym_STAR] = ACTIONS(3990), + [anon_sym_AMP_AMP] = ACTIONS(3990), + [anon_sym_AMP] = ACTIONS(3988), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym___extension__] = ACTIONS(3988), + [anon_sym_typedef] = ACTIONS(3988), + [anon_sym_virtual] = ACTIONS(3988), + [anon_sym_extern] = ACTIONS(3988), + [anon_sym___attribute__] = ACTIONS(3988), + [anon_sym___attribute] = ACTIONS(3988), + [anon_sym_using] = ACTIONS(3988), + [anon_sym_COLON_COLON] = ACTIONS(3990), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3990), + [anon_sym___declspec] = ACTIONS(3988), + [anon_sym___based] = ACTIONS(3988), + [anon_sym___cdecl] = ACTIONS(3988), + [anon_sym___clrcall] = ACTIONS(3988), + [anon_sym___stdcall] = ACTIONS(3988), + [anon_sym___fastcall] = ACTIONS(3988), + [anon_sym___thiscall] = ACTIONS(3988), + [anon_sym___vectorcall] = ACTIONS(3988), + [anon_sym_LBRACE] = ACTIONS(3990), + [anon_sym_RBRACE] = ACTIONS(3990), + [anon_sym_signed] = ACTIONS(3988), + [anon_sym_unsigned] = ACTIONS(3988), + [anon_sym_long] = ACTIONS(3988), + [anon_sym_short] = ACTIONS(3988), + [anon_sym_LBRACK] = ACTIONS(3988), + [anon_sym_static] = ACTIONS(3988), + [anon_sym_register] = ACTIONS(3988), + [anon_sym_inline] = ACTIONS(3988), + [anon_sym___inline] = ACTIONS(3988), + [anon_sym___inline__] = ACTIONS(3988), + [anon_sym___forceinline] = ACTIONS(3988), + [anon_sym_thread_local] = ACTIONS(3988), + [anon_sym___thread] = ACTIONS(3988), + [anon_sym_const] = ACTIONS(3988), + [anon_sym_constexpr] = ACTIONS(3988), + [anon_sym_volatile] = ACTIONS(3988), + [anon_sym_restrict] = ACTIONS(3988), + [anon_sym___restrict__] = ACTIONS(3988), + [anon_sym__Atomic] = ACTIONS(3988), + [anon_sym__Noreturn] = ACTIONS(3988), + [anon_sym_noreturn] = ACTIONS(3988), + [anon_sym__Nonnull] = ACTIONS(3988), + [anon_sym_mutable] = ACTIONS(3988), + [anon_sym_constinit] = ACTIONS(3988), + [anon_sym_consteval] = ACTIONS(3988), + [anon_sym_alignas] = ACTIONS(3988), + [anon_sym__Alignas] = ACTIONS(3988), + [sym_primitive_type] = ACTIONS(3988), + [anon_sym_enum] = ACTIONS(3988), + [anon_sym_class] = ACTIONS(3988), + [anon_sym_struct] = ACTIONS(3988), + [anon_sym_union] = ACTIONS(3988), + [anon_sym_if] = ACTIONS(3988), + [anon_sym_switch] = ACTIONS(3988), + [anon_sym_case] = ACTIONS(3988), + [anon_sym_default] = ACTIONS(3988), + [anon_sym_while] = ACTIONS(3988), + [anon_sym_do] = ACTIONS(3988), + [anon_sym_for] = ACTIONS(3988), + [anon_sym_return] = ACTIONS(3988), + [anon_sym_break] = ACTIONS(3988), + [anon_sym_continue] = ACTIONS(3988), + [anon_sym_goto] = ACTIONS(3988), + [anon_sym___try] = ACTIONS(3988), + [anon_sym___leave] = ACTIONS(3988), + [anon_sym_not] = ACTIONS(3988), + [anon_sym_compl] = ACTIONS(3988), + [anon_sym_DASH_DASH] = ACTIONS(3990), + [anon_sym_PLUS_PLUS] = ACTIONS(3990), + [anon_sym_sizeof] = ACTIONS(3988), + [anon_sym___alignof__] = ACTIONS(3988), + [anon_sym___alignof] = ACTIONS(3988), + [anon_sym__alignof] = ACTIONS(3988), + [anon_sym_alignof] = ACTIONS(3988), + [anon_sym__Alignof] = ACTIONS(3988), + [anon_sym_offsetof] = ACTIONS(3988), + [anon_sym__Generic] = ACTIONS(3988), + [anon_sym_typename] = ACTIONS(3988), + [anon_sym_asm] = ACTIONS(3988), + [anon_sym___asm__] = ACTIONS(3988), + [anon_sym___asm] = ACTIONS(3988), + [sym_number_literal] = ACTIONS(3990), + [anon_sym_L_SQUOTE] = ACTIONS(3990), + [anon_sym_u_SQUOTE] = ACTIONS(3990), + [anon_sym_U_SQUOTE] = ACTIONS(3990), + [anon_sym_u8_SQUOTE] = ACTIONS(3990), + [anon_sym_SQUOTE] = ACTIONS(3990), + [anon_sym_L_DQUOTE] = ACTIONS(3990), + [anon_sym_u_DQUOTE] = ACTIONS(3990), + [anon_sym_U_DQUOTE] = ACTIONS(3990), + [anon_sym_u8_DQUOTE] = ACTIONS(3990), + [anon_sym_DQUOTE] = ACTIONS(3990), + [sym_true] = ACTIONS(3988), + [sym_false] = ACTIONS(3988), + [anon_sym_NULL] = ACTIONS(3988), + [anon_sym_nullptr] = ACTIONS(3988), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3988), + [anon_sym_decltype] = ACTIONS(3988), + [anon_sym_explicit] = ACTIONS(3988), + [anon_sym_export] = ACTIONS(3988), + [anon_sym_import] = ACTIONS(3988), + [anon_sym_template] = ACTIONS(3988), + [anon_sym_operator] = ACTIONS(3988), + [anon_sym_try] = ACTIONS(3988), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_throw] = ACTIONS(3988), + [anon_sym_namespace] = ACTIONS(3988), + [anon_sym_static_assert] = ACTIONS(3988), + [anon_sym_concept] = ACTIONS(3988), + [anon_sym_co_return] = ACTIONS(3988), + [anon_sym_co_yield] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3988), + [anon_sym_new] = ACTIONS(3988), + [anon_sym_requires] = ACTIONS(3988), + [anon_sym_CARET_CARET] = ACTIONS(3990), + [anon_sym_LBRACK_COLON] = ACTIONS(3990), + [sym_this] = ACTIONS(3988), }, - [STATE(987)] = { - [sym_type_qualifier] = STATE(945), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6846), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(945), - [sym_identifier] = ACTIONS(5080), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5042), - [anon_sym_RBRACK] = ACTIONS(5044), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(858)] = { + [sym_identifier] = ACTIONS(4024), + [aux_sym_preproc_include_token1] = ACTIONS(4024), + [aux_sym_preproc_def_token1] = ACTIONS(4024), + [aux_sym_preproc_if_token1] = ACTIONS(4024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4024), + [sym_preproc_directive] = ACTIONS(4024), + [anon_sym_LPAREN2] = ACTIONS(4026), + [anon_sym_BANG] = ACTIONS(4026), + [anon_sym_TILDE] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_STAR] = ACTIONS(4026), + [anon_sym_AMP_AMP] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4024), + [anon_sym_SEMI] = ACTIONS(4026), + [anon_sym___extension__] = ACTIONS(4024), + [anon_sym_typedef] = ACTIONS(4024), + [anon_sym_virtual] = ACTIONS(4024), + [anon_sym_extern] = ACTIONS(4024), + [anon_sym___attribute__] = ACTIONS(4024), + [anon_sym___attribute] = ACTIONS(4024), + [anon_sym_using] = ACTIONS(4024), + [anon_sym_COLON_COLON] = ACTIONS(4026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4026), + [anon_sym___declspec] = ACTIONS(4024), + [anon_sym___based] = ACTIONS(4024), + [anon_sym___cdecl] = ACTIONS(4024), + [anon_sym___clrcall] = ACTIONS(4024), + [anon_sym___stdcall] = ACTIONS(4024), + [anon_sym___fastcall] = ACTIONS(4024), + [anon_sym___thiscall] = ACTIONS(4024), + [anon_sym___vectorcall] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4026), + [anon_sym_RBRACE] = ACTIONS(4026), + [anon_sym_signed] = ACTIONS(4024), + [anon_sym_unsigned] = ACTIONS(4024), + [anon_sym_long] = ACTIONS(4024), + [anon_sym_short] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4024), + [anon_sym_static] = ACTIONS(4024), + [anon_sym_register] = ACTIONS(4024), + [anon_sym_inline] = ACTIONS(4024), + [anon_sym___inline] = ACTIONS(4024), + [anon_sym___inline__] = ACTIONS(4024), + [anon_sym___forceinline] = ACTIONS(4024), + [anon_sym_thread_local] = ACTIONS(4024), + [anon_sym___thread] = ACTIONS(4024), + [anon_sym_const] = ACTIONS(4024), + [anon_sym_constexpr] = ACTIONS(4024), + [anon_sym_volatile] = ACTIONS(4024), + [anon_sym_restrict] = ACTIONS(4024), + [anon_sym___restrict__] = ACTIONS(4024), + [anon_sym__Atomic] = ACTIONS(4024), + [anon_sym__Noreturn] = ACTIONS(4024), + [anon_sym_noreturn] = ACTIONS(4024), + [anon_sym__Nonnull] = ACTIONS(4024), + [anon_sym_mutable] = ACTIONS(4024), + [anon_sym_constinit] = ACTIONS(4024), + [anon_sym_consteval] = ACTIONS(4024), + [anon_sym_alignas] = ACTIONS(4024), + [anon_sym__Alignas] = ACTIONS(4024), + [sym_primitive_type] = ACTIONS(4024), + [anon_sym_enum] = ACTIONS(4024), + [anon_sym_class] = ACTIONS(4024), + [anon_sym_struct] = ACTIONS(4024), + [anon_sym_union] = ACTIONS(4024), + [anon_sym_if] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_case] = ACTIONS(4024), + [anon_sym_default] = ACTIONS(4024), + [anon_sym_while] = ACTIONS(4024), + [anon_sym_do] = ACTIONS(4024), + [anon_sym_for] = ACTIONS(4024), + [anon_sym_return] = ACTIONS(4024), + [anon_sym_break] = ACTIONS(4024), + [anon_sym_continue] = ACTIONS(4024), + [anon_sym_goto] = ACTIONS(4024), + [anon_sym___try] = ACTIONS(4024), + [anon_sym___leave] = ACTIONS(4024), + [anon_sym_not] = ACTIONS(4024), + [anon_sym_compl] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4026), + [anon_sym_PLUS_PLUS] = ACTIONS(4026), + [anon_sym_sizeof] = ACTIONS(4024), + [anon_sym___alignof__] = ACTIONS(4024), + [anon_sym___alignof] = ACTIONS(4024), + [anon_sym__alignof] = ACTIONS(4024), + [anon_sym_alignof] = ACTIONS(4024), + [anon_sym__Alignof] = ACTIONS(4024), + [anon_sym_offsetof] = ACTIONS(4024), + [anon_sym__Generic] = ACTIONS(4024), + [anon_sym_typename] = ACTIONS(4024), + [anon_sym_asm] = ACTIONS(4024), + [anon_sym___asm__] = ACTIONS(4024), + [anon_sym___asm] = ACTIONS(4024), + [sym_number_literal] = ACTIONS(4026), + [anon_sym_L_SQUOTE] = ACTIONS(4026), + [anon_sym_u_SQUOTE] = ACTIONS(4026), + [anon_sym_U_SQUOTE] = ACTIONS(4026), + [anon_sym_u8_SQUOTE] = ACTIONS(4026), + [anon_sym_SQUOTE] = ACTIONS(4026), + [anon_sym_L_DQUOTE] = ACTIONS(4026), + [anon_sym_u_DQUOTE] = ACTIONS(4026), + [anon_sym_U_DQUOTE] = ACTIONS(4026), + [anon_sym_u8_DQUOTE] = ACTIONS(4026), + [anon_sym_DQUOTE] = ACTIONS(4026), + [sym_true] = ACTIONS(4024), + [sym_false] = ACTIONS(4024), + [anon_sym_NULL] = ACTIONS(4024), + [anon_sym_nullptr] = ACTIONS(4024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4024), + [anon_sym_decltype] = ACTIONS(4024), + [anon_sym_explicit] = ACTIONS(4024), + [anon_sym_export] = ACTIONS(4024), + [anon_sym_import] = ACTIONS(4024), + [anon_sym_template] = ACTIONS(4024), + [anon_sym_operator] = ACTIONS(4024), + [anon_sym_try] = ACTIONS(4024), + [anon_sym_delete] = ACTIONS(4024), + [anon_sym_throw] = ACTIONS(4024), + [anon_sym_namespace] = ACTIONS(4024), + [anon_sym_static_assert] = ACTIONS(4024), + [anon_sym_concept] = ACTIONS(4024), + [anon_sym_co_return] = ACTIONS(4024), + [anon_sym_co_yield] = ACTIONS(4024), + [anon_sym_R_DQUOTE] = ACTIONS(4026), + [anon_sym_LR_DQUOTE] = ACTIONS(4026), + [anon_sym_uR_DQUOTE] = ACTIONS(4026), + [anon_sym_UR_DQUOTE] = ACTIONS(4026), + [anon_sym_u8R_DQUOTE] = ACTIONS(4026), + [anon_sym_co_await] = ACTIONS(4024), + [anon_sym_new] = ACTIONS(4024), + [anon_sym_requires] = ACTIONS(4024), + [anon_sym_CARET_CARET] = ACTIONS(4026), + [anon_sym_LBRACK_COLON] = ACTIONS(4026), + [sym_this] = ACTIONS(4024), }, - [STATE(988)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6844), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(5082), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(5084), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(859)] = { + [sym_identifier] = ACTIONS(4020), + [aux_sym_preproc_include_token1] = ACTIONS(4020), + [aux_sym_preproc_def_token1] = ACTIONS(4020), + [aux_sym_preproc_if_token1] = ACTIONS(4020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4020), + [sym_preproc_directive] = ACTIONS(4020), + [anon_sym_LPAREN2] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_TILDE] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4020), + [anon_sym_PLUS] = ACTIONS(4020), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_SEMI] = ACTIONS(4022), + [anon_sym___extension__] = ACTIONS(4020), + [anon_sym_typedef] = ACTIONS(4020), + [anon_sym_virtual] = ACTIONS(4020), + [anon_sym_extern] = ACTIONS(4020), + [anon_sym___attribute__] = ACTIONS(4020), + [anon_sym___attribute] = ACTIONS(4020), + [anon_sym_using] = ACTIONS(4020), + [anon_sym_COLON_COLON] = ACTIONS(4022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4022), + [anon_sym___declspec] = ACTIONS(4020), + [anon_sym___based] = ACTIONS(4020), + [anon_sym___cdecl] = ACTIONS(4020), + [anon_sym___clrcall] = ACTIONS(4020), + [anon_sym___stdcall] = ACTIONS(4020), + [anon_sym___fastcall] = ACTIONS(4020), + [anon_sym___thiscall] = ACTIONS(4020), + [anon_sym___vectorcall] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_RBRACE] = ACTIONS(4022), + [anon_sym_signed] = ACTIONS(4020), + [anon_sym_unsigned] = ACTIONS(4020), + [anon_sym_long] = ACTIONS(4020), + [anon_sym_short] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(4020), + [anon_sym_static] = ACTIONS(4020), + [anon_sym_register] = ACTIONS(4020), + [anon_sym_inline] = ACTIONS(4020), + [anon_sym___inline] = ACTIONS(4020), + [anon_sym___inline__] = ACTIONS(4020), + [anon_sym___forceinline] = ACTIONS(4020), + [anon_sym_thread_local] = ACTIONS(4020), + [anon_sym___thread] = ACTIONS(4020), + [anon_sym_const] = ACTIONS(4020), + [anon_sym_constexpr] = ACTIONS(4020), + [anon_sym_volatile] = ACTIONS(4020), + [anon_sym_restrict] = ACTIONS(4020), + [anon_sym___restrict__] = ACTIONS(4020), + [anon_sym__Atomic] = ACTIONS(4020), + [anon_sym__Noreturn] = ACTIONS(4020), + [anon_sym_noreturn] = ACTIONS(4020), + [anon_sym__Nonnull] = ACTIONS(4020), + [anon_sym_mutable] = ACTIONS(4020), + [anon_sym_constinit] = ACTIONS(4020), + [anon_sym_consteval] = ACTIONS(4020), + [anon_sym_alignas] = ACTIONS(4020), + [anon_sym__Alignas] = ACTIONS(4020), + [sym_primitive_type] = ACTIONS(4020), + [anon_sym_enum] = ACTIONS(4020), + [anon_sym_class] = ACTIONS(4020), + [anon_sym_struct] = ACTIONS(4020), + [anon_sym_union] = ACTIONS(4020), + [anon_sym_if] = ACTIONS(4020), + [anon_sym_switch] = ACTIONS(4020), + [anon_sym_case] = ACTIONS(4020), + [anon_sym_default] = ACTIONS(4020), + [anon_sym_while] = ACTIONS(4020), + [anon_sym_do] = ACTIONS(4020), + [anon_sym_for] = ACTIONS(4020), + [anon_sym_return] = ACTIONS(4020), + [anon_sym_break] = ACTIONS(4020), + [anon_sym_continue] = ACTIONS(4020), + [anon_sym_goto] = ACTIONS(4020), + [anon_sym___try] = ACTIONS(4020), + [anon_sym___leave] = ACTIONS(4020), + [anon_sym_not] = ACTIONS(4020), + [anon_sym_compl] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4022), + [anon_sym_sizeof] = ACTIONS(4020), + [anon_sym___alignof__] = ACTIONS(4020), + [anon_sym___alignof] = ACTIONS(4020), + [anon_sym__alignof] = ACTIONS(4020), + [anon_sym_alignof] = ACTIONS(4020), + [anon_sym__Alignof] = ACTIONS(4020), + [anon_sym_offsetof] = ACTIONS(4020), + [anon_sym__Generic] = ACTIONS(4020), + [anon_sym_typename] = ACTIONS(4020), + [anon_sym_asm] = ACTIONS(4020), + [anon_sym___asm__] = ACTIONS(4020), + [anon_sym___asm] = ACTIONS(4020), + [sym_number_literal] = ACTIONS(4022), + [anon_sym_L_SQUOTE] = ACTIONS(4022), + [anon_sym_u_SQUOTE] = ACTIONS(4022), + [anon_sym_U_SQUOTE] = ACTIONS(4022), + [anon_sym_u8_SQUOTE] = ACTIONS(4022), + [anon_sym_SQUOTE] = ACTIONS(4022), + [anon_sym_L_DQUOTE] = ACTIONS(4022), + [anon_sym_u_DQUOTE] = ACTIONS(4022), + [anon_sym_U_DQUOTE] = ACTIONS(4022), + [anon_sym_u8_DQUOTE] = ACTIONS(4022), + [anon_sym_DQUOTE] = ACTIONS(4022), + [sym_true] = ACTIONS(4020), + [sym_false] = ACTIONS(4020), + [anon_sym_NULL] = ACTIONS(4020), + [anon_sym_nullptr] = ACTIONS(4020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4020), + [anon_sym_decltype] = ACTIONS(4020), + [anon_sym_explicit] = ACTIONS(4020), + [anon_sym_export] = ACTIONS(4020), + [anon_sym_import] = ACTIONS(4020), + [anon_sym_template] = ACTIONS(4020), + [anon_sym_operator] = ACTIONS(4020), + [anon_sym_try] = ACTIONS(4020), + [anon_sym_delete] = ACTIONS(4020), + [anon_sym_throw] = ACTIONS(4020), + [anon_sym_namespace] = ACTIONS(4020), + [anon_sym_static_assert] = ACTIONS(4020), + [anon_sym_concept] = ACTIONS(4020), + [anon_sym_co_return] = ACTIONS(4020), + [anon_sym_co_yield] = ACTIONS(4020), + [anon_sym_R_DQUOTE] = ACTIONS(4022), + [anon_sym_LR_DQUOTE] = ACTIONS(4022), + [anon_sym_uR_DQUOTE] = ACTIONS(4022), + [anon_sym_UR_DQUOTE] = ACTIONS(4022), + [anon_sym_u8R_DQUOTE] = ACTIONS(4022), + [anon_sym_co_await] = ACTIONS(4020), + [anon_sym_new] = ACTIONS(4020), + [anon_sym_requires] = ACTIONS(4020), + [anon_sym_CARET_CARET] = ACTIONS(4022), + [anon_sym_LBRACK_COLON] = ACTIONS(4022), + [sym_this] = ACTIONS(4020), }, - [STATE(989)] = { - [sym_type_qualifier] = STATE(988), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6986), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(988), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(5086), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5088), - [anon_sym_RBRACK] = ACTIONS(5090), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(860)] = { + [sym_identifier] = ACTIONS(3939), + [aux_sym_preproc_include_token1] = ACTIONS(3939), + [aux_sym_preproc_def_token1] = ACTIONS(3939), + [aux_sym_preproc_if_token1] = ACTIONS(3939), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3939), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3939), + [sym_preproc_directive] = ACTIONS(3939), + [anon_sym_LPAREN2] = ACTIONS(3941), + [anon_sym_BANG] = ACTIONS(3941), + [anon_sym_TILDE] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3939), + [anon_sym_PLUS] = ACTIONS(3939), + [anon_sym_STAR] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3939), + [anon_sym_SEMI] = ACTIONS(3941), + [anon_sym___extension__] = ACTIONS(3939), + [anon_sym_typedef] = ACTIONS(3939), + [anon_sym_virtual] = ACTIONS(3939), + [anon_sym_extern] = ACTIONS(3939), + [anon_sym___attribute__] = ACTIONS(3939), + [anon_sym___attribute] = ACTIONS(3939), + [anon_sym_using] = ACTIONS(3939), + [anon_sym_COLON_COLON] = ACTIONS(3941), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3941), + [anon_sym___declspec] = ACTIONS(3939), + [anon_sym___based] = ACTIONS(3939), + [anon_sym___cdecl] = ACTIONS(3939), + [anon_sym___clrcall] = ACTIONS(3939), + [anon_sym___stdcall] = ACTIONS(3939), + [anon_sym___fastcall] = ACTIONS(3939), + [anon_sym___thiscall] = ACTIONS(3939), + [anon_sym___vectorcall] = ACTIONS(3939), + [anon_sym_LBRACE] = ACTIONS(3941), + [anon_sym_RBRACE] = ACTIONS(3941), + [anon_sym_signed] = ACTIONS(3939), + [anon_sym_unsigned] = ACTIONS(3939), + [anon_sym_long] = ACTIONS(3939), + [anon_sym_short] = ACTIONS(3939), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_static] = ACTIONS(3939), + [anon_sym_register] = ACTIONS(3939), + [anon_sym_inline] = ACTIONS(3939), + [anon_sym___inline] = ACTIONS(3939), + [anon_sym___inline__] = ACTIONS(3939), + [anon_sym___forceinline] = ACTIONS(3939), + [anon_sym_thread_local] = ACTIONS(3939), + [anon_sym___thread] = ACTIONS(3939), + [anon_sym_const] = ACTIONS(3939), + [anon_sym_constexpr] = ACTIONS(3939), + [anon_sym_volatile] = ACTIONS(3939), + [anon_sym_restrict] = ACTIONS(3939), + [anon_sym___restrict__] = ACTIONS(3939), + [anon_sym__Atomic] = ACTIONS(3939), + [anon_sym__Noreturn] = ACTIONS(3939), + [anon_sym_noreturn] = ACTIONS(3939), + [anon_sym__Nonnull] = ACTIONS(3939), + [anon_sym_mutable] = ACTIONS(3939), + [anon_sym_constinit] = ACTIONS(3939), + [anon_sym_consteval] = ACTIONS(3939), + [anon_sym_alignas] = ACTIONS(3939), + [anon_sym__Alignas] = ACTIONS(3939), + [sym_primitive_type] = ACTIONS(3939), + [anon_sym_enum] = ACTIONS(3939), + [anon_sym_class] = ACTIONS(3939), + [anon_sym_struct] = ACTIONS(3939), + [anon_sym_union] = ACTIONS(3939), + [anon_sym_if] = ACTIONS(3939), + [anon_sym_switch] = ACTIONS(3939), + [anon_sym_case] = ACTIONS(3939), + [anon_sym_default] = ACTIONS(3939), + [anon_sym_while] = ACTIONS(3939), + [anon_sym_do] = ACTIONS(3939), + [anon_sym_for] = ACTIONS(3939), + [anon_sym_return] = ACTIONS(3939), + [anon_sym_break] = ACTIONS(3939), + [anon_sym_continue] = ACTIONS(3939), + [anon_sym_goto] = ACTIONS(3939), + [anon_sym___try] = ACTIONS(3939), + [anon_sym___leave] = ACTIONS(3939), + [anon_sym_not] = ACTIONS(3939), + [anon_sym_compl] = ACTIONS(3939), + [anon_sym_DASH_DASH] = ACTIONS(3941), + [anon_sym_PLUS_PLUS] = ACTIONS(3941), + [anon_sym_sizeof] = ACTIONS(3939), + [anon_sym___alignof__] = ACTIONS(3939), + [anon_sym___alignof] = ACTIONS(3939), + [anon_sym__alignof] = ACTIONS(3939), + [anon_sym_alignof] = ACTIONS(3939), + [anon_sym__Alignof] = ACTIONS(3939), + [anon_sym_offsetof] = ACTIONS(3939), + [anon_sym__Generic] = ACTIONS(3939), + [anon_sym_typename] = ACTIONS(3939), + [anon_sym_asm] = ACTIONS(3939), + [anon_sym___asm__] = ACTIONS(3939), + [anon_sym___asm] = ACTIONS(3939), + [sym_number_literal] = ACTIONS(3941), + [anon_sym_L_SQUOTE] = ACTIONS(3941), + [anon_sym_u_SQUOTE] = ACTIONS(3941), + [anon_sym_U_SQUOTE] = ACTIONS(3941), + [anon_sym_u8_SQUOTE] = ACTIONS(3941), + [anon_sym_SQUOTE] = ACTIONS(3941), + [anon_sym_L_DQUOTE] = ACTIONS(3941), + [anon_sym_u_DQUOTE] = ACTIONS(3941), + [anon_sym_U_DQUOTE] = ACTIONS(3941), + [anon_sym_u8_DQUOTE] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [sym_true] = ACTIONS(3939), + [sym_false] = ACTIONS(3939), + [anon_sym_NULL] = ACTIONS(3939), + [anon_sym_nullptr] = ACTIONS(3939), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3939), + [anon_sym_decltype] = ACTIONS(3939), + [anon_sym_explicit] = ACTIONS(3939), + [anon_sym_export] = ACTIONS(3939), + [anon_sym_import] = ACTIONS(3939), + [anon_sym_template] = ACTIONS(3939), + [anon_sym_operator] = ACTIONS(3939), + [anon_sym_try] = ACTIONS(3939), + [anon_sym_delete] = ACTIONS(3939), + [anon_sym_throw] = ACTIONS(3939), + [anon_sym_namespace] = ACTIONS(3939), + [anon_sym_static_assert] = ACTIONS(3939), + [anon_sym_concept] = ACTIONS(3939), + [anon_sym_co_return] = ACTIONS(3939), + [anon_sym_co_yield] = ACTIONS(3939), + [anon_sym_R_DQUOTE] = ACTIONS(3941), + [anon_sym_LR_DQUOTE] = ACTIONS(3941), + [anon_sym_uR_DQUOTE] = ACTIONS(3941), + [anon_sym_UR_DQUOTE] = ACTIONS(3941), + [anon_sym_u8R_DQUOTE] = ACTIONS(3941), + [anon_sym_co_await] = ACTIONS(3939), + [anon_sym_new] = ACTIONS(3939), + [anon_sym_requires] = ACTIONS(3939), + [anon_sym_CARET_CARET] = ACTIONS(3941), + [anon_sym_LBRACK_COLON] = ACTIONS(3941), + [sym_this] = ACTIONS(3939), }, - [STATE(990)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [sym_expression] = STATE(6979), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(5092), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4818), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_RBRACK] = ACTIONS(5094), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym___restrict__] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym__Noreturn] = ACTIONS(4824), - [anon_sym_noreturn] = ACTIONS(4824), - [anon_sym__Nonnull] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_constinit] = ACTIONS(4824), - [anon_sym_consteval] = ACTIONS(4824), - [anon_sym_alignas] = ACTIONS(4826), - [anon_sym__Alignas] = ACTIONS(4826), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(861)] = { + [sym_identifier] = ACTIONS(4076), + [aux_sym_preproc_include_token1] = ACTIONS(4076), + [aux_sym_preproc_def_token1] = ACTIONS(4076), + [aux_sym_preproc_if_token1] = ACTIONS(4076), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4076), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4076), + [sym_preproc_directive] = ACTIONS(4076), + [anon_sym_LPAREN2] = ACTIONS(4078), + [anon_sym_BANG] = ACTIONS(4078), + [anon_sym_TILDE] = ACTIONS(4078), + [anon_sym_DASH] = ACTIONS(4076), + [anon_sym_PLUS] = ACTIONS(4076), + [anon_sym_STAR] = ACTIONS(4078), + [anon_sym_AMP_AMP] = ACTIONS(4078), + [anon_sym_AMP] = ACTIONS(4076), + [anon_sym_SEMI] = ACTIONS(4078), + [anon_sym___extension__] = ACTIONS(4076), + [anon_sym_typedef] = ACTIONS(4076), + [anon_sym_virtual] = ACTIONS(4076), + [anon_sym_extern] = ACTIONS(4076), + [anon_sym___attribute__] = ACTIONS(4076), + [anon_sym___attribute] = ACTIONS(4076), + [anon_sym_using] = ACTIONS(4076), + [anon_sym_COLON_COLON] = ACTIONS(4078), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4078), + [anon_sym___declspec] = ACTIONS(4076), + [anon_sym___based] = ACTIONS(4076), + [anon_sym___cdecl] = ACTIONS(4076), + [anon_sym___clrcall] = ACTIONS(4076), + [anon_sym___stdcall] = ACTIONS(4076), + [anon_sym___fastcall] = ACTIONS(4076), + [anon_sym___thiscall] = ACTIONS(4076), + [anon_sym___vectorcall] = ACTIONS(4076), + [anon_sym_LBRACE] = ACTIONS(4078), + [anon_sym_RBRACE] = ACTIONS(4078), + [anon_sym_signed] = ACTIONS(4076), + [anon_sym_unsigned] = ACTIONS(4076), + [anon_sym_long] = ACTIONS(4076), + [anon_sym_short] = ACTIONS(4076), + [anon_sym_LBRACK] = ACTIONS(4076), + [anon_sym_static] = ACTIONS(4076), + [anon_sym_register] = ACTIONS(4076), + [anon_sym_inline] = ACTIONS(4076), + [anon_sym___inline] = ACTIONS(4076), + [anon_sym___inline__] = ACTIONS(4076), + [anon_sym___forceinline] = ACTIONS(4076), + [anon_sym_thread_local] = ACTIONS(4076), + [anon_sym___thread] = ACTIONS(4076), + [anon_sym_const] = ACTIONS(4076), + [anon_sym_constexpr] = ACTIONS(4076), + [anon_sym_volatile] = ACTIONS(4076), + [anon_sym_restrict] = ACTIONS(4076), + [anon_sym___restrict__] = ACTIONS(4076), + [anon_sym__Atomic] = ACTIONS(4076), + [anon_sym__Noreturn] = ACTIONS(4076), + [anon_sym_noreturn] = ACTIONS(4076), + [anon_sym__Nonnull] = ACTIONS(4076), + [anon_sym_mutable] = ACTIONS(4076), + [anon_sym_constinit] = ACTIONS(4076), + [anon_sym_consteval] = ACTIONS(4076), + [anon_sym_alignas] = ACTIONS(4076), + [anon_sym__Alignas] = ACTIONS(4076), + [sym_primitive_type] = ACTIONS(4076), + [anon_sym_enum] = ACTIONS(4076), + [anon_sym_class] = ACTIONS(4076), + [anon_sym_struct] = ACTIONS(4076), + [anon_sym_union] = ACTIONS(4076), + [anon_sym_if] = ACTIONS(4076), + [anon_sym_switch] = ACTIONS(4076), + [anon_sym_case] = ACTIONS(4076), + [anon_sym_default] = ACTIONS(4076), + [anon_sym_while] = ACTIONS(4076), + [anon_sym_do] = ACTIONS(4076), + [anon_sym_for] = ACTIONS(4076), + [anon_sym_return] = ACTIONS(4076), + [anon_sym_break] = ACTIONS(4076), + [anon_sym_continue] = ACTIONS(4076), + [anon_sym_goto] = ACTIONS(4076), + [anon_sym___try] = ACTIONS(4076), + [anon_sym___leave] = ACTIONS(4076), + [anon_sym_not] = ACTIONS(4076), + [anon_sym_compl] = ACTIONS(4076), + [anon_sym_DASH_DASH] = ACTIONS(4078), + [anon_sym_PLUS_PLUS] = ACTIONS(4078), + [anon_sym_sizeof] = ACTIONS(4076), + [anon_sym___alignof__] = ACTIONS(4076), + [anon_sym___alignof] = ACTIONS(4076), + [anon_sym__alignof] = ACTIONS(4076), + [anon_sym_alignof] = ACTIONS(4076), + [anon_sym__Alignof] = ACTIONS(4076), + [anon_sym_offsetof] = ACTIONS(4076), + [anon_sym__Generic] = ACTIONS(4076), + [anon_sym_typename] = ACTIONS(4076), + [anon_sym_asm] = ACTIONS(4076), + [anon_sym___asm__] = ACTIONS(4076), + [anon_sym___asm] = ACTIONS(4076), + [sym_number_literal] = ACTIONS(4078), + [anon_sym_L_SQUOTE] = ACTIONS(4078), + [anon_sym_u_SQUOTE] = ACTIONS(4078), + [anon_sym_U_SQUOTE] = ACTIONS(4078), + [anon_sym_u8_SQUOTE] = ACTIONS(4078), + [anon_sym_SQUOTE] = ACTIONS(4078), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), + [sym_true] = ACTIONS(4076), + [sym_false] = ACTIONS(4076), + [anon_sym_NULL] = ACTIONS(4076), + [anon_sym_nullptr] = ACTIONS(4076), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4076), + [anon_sym_decltype] = ACTIONS(4076), + [anon_sym_explicit] = ACTIONS(4076), + [anon_sym_export] = ACTIONS(4076), + [anon_sym_import] = ACTIONS(4076), + [anon_sym_template] = ACTIONS(4076), + [anon_sym_operator] = ACTIONS(4076), + [anon_sym_try] = ACTIONS(4076), + [anon_sym_delete] = ACTIONS(4076), + [anon_sym_throw] = ACTIONS(4076), + [anon_sym_namespace] = ACTIONS(4076), + [anon_sym_static_assert] = ACTIONS(4076), + [anon_sym_concept] = ACTIONS(4076), + [anon_sym_co_return] = ACTIONS(4076), + [anon_sym_co_yield] = ACTIONS(4076), + [anon_sym_R_DQUOTE] = ACTIONS(4078), + [anon_sym_LR_DQUOTE] = ACTIONS(4078), + [anon_sym_uR_DQUOTE] = ACTIONS(4078), + [anon_sym_UR_DQUOTE] = ACTIONS(4078), + [anon_sym_u8R_DQUOTE] = ACTIONS(4078), + [anon_sym_co_await] = ACTIONS(4076), + [anon_sym_new] = ACTIONS(4076), + [anon_sym_requires] = ACTIONS(4076), + [anon_sym_CARET_CARET] = ACTIONS(4078), + [anon_sym_LBRACK_COLON] = ACTIONS(4078), + [sym_this] = ACTIONS(4076), }, - [STATE(991)] = { - [sym_function_definition] = STATE(2725), - [sym_declaration] = STATE(2725), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6285), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4663), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2622), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8548), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4348), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__empty_declaration] = STATE(2725), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2414), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(2725), - [sym_operator_cast] = STATE(9050), - [sym__constructor_specifiers] = STATE(2414), - [sym_operator_cast_definition] = STATE(2725), - [sym_operator_cast_declaration] = STATE(2725), - [sym_constructor_or_destructor_definition] = STATE(2725), - [sym_constructor_or_destructor_declaration] = STATE(2725), - [sym_friend_declaration] = STATE(2725), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_alias_declaration] = STATE(2725), - [sym_concept_definition] = STATE(2725), - [sym_requires_clause] = STATE(1002), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7652), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9050), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2414), - [sym_identifier] = ACTIONS(5096), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), + [STATE(862)] = { + [sym_identifier] = ACTIONS(4048), + [aux_sym_preproc_include_token1] = ACTIONS(4048), + [aux_sym_preproc_def_token1] = ACTIONS(4048), + [aux_sym_preproc_if_token1] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4048), + [sym_preproc_directive] = ACTIONS(4048), + [anon_sym_LPAREN2] = ACTIONS(4050), + [anon_sym_BANG] = ACTIONS(4050), + [anon_sym_TILDE] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4048), + [anon_sym_PLUS] = ACTIONS(4048), + [anon_sym_STAR] = ACTIONS(4050), + [anon_sym_AMP_AMP] = ACTIONS(4050), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_SEMI] = ACTIONS(4050), + [anon_sym___extension__] = ACTIONS(4048), + [anon_sym_typedef] = ACTIONS(4048), + [anon_sym_virtual] = ACTIONS(4048), + [anon_sym_extern] = ACTIONS(4048), + [anon_sym___attribute__] = ACTIONS(4048), + [anon_sym___attribute] = ACTIONS(4048), + [anon_sym_using] = ACTIONS(4048), + [anon_sym_COLON_COLON] = ACTIONS(4050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4050), + [anon_sym___declspec] = ACTIONS(4048), + [anon_sym___based] = ACTIONS(4048), + [anon_sym___cdecl] = ACTIONS(4048), + [anon_sym___clrcall] = ACTIONS(4048), + [anon_sym___stdcall] = ACTIONS(4048), + [anon_sym___fastcall] = ACTIONS(4048), + [anon_sym___thiscall] = ACTIONS(4048), + [anon_sym___vectorcall] = ACTIONS(4048), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_RBRACE] = ACTIONS(4050), + [anon_sym_signed] = ACTIONS(4048), + [anon_sym_unsigned] = ACTIONS(4048), + [anon_sym_long] = ACTIONS(4048), + [anon_sym_short] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_static] = ACTIONS(4048), + [anon_sym_register] = ACTIONS(4048), + [anon_sym_inline] = ACTIONS(4048), + [anon_sym___inline] = ACTIONS(4048), + [anon_sym___inline__] = ACTIONS(4048), + [anon_sym___forceinline] = ACTIONS(4048), + [anon_sym_thread_local] = ACTIONS(4048), + [anon_sym___thread] = ACTIONS(4048), + [anon_sym_const] = ACTIONS(4048), + [anon_sym_constexpr] = ACTIONS(4048), + [anon_sym_volatile] = ACTIONS(4048), + [anon_sym_restrict] = ACTIONS(4048), + [anon_sym___restrict__] = ACTIONS(4048), + [anon_sym__Atomic] = ACTIONS(4048), + [anon_sym__Noreturn] = ACTIONS(4048), + [anon_sym_noreturn] = ACTIONS(4048), + [anon_sym__Nonnull] = ACTIONS(4048), + [anon_sym_mutable] = ACTIONS(4048), + [anon_sym_constinit] = ACTIONS(4048), + [anon_sym_consteval] = ACTIONS(4048), + [anon_sym_alignas] = ACTIONS(4048), + [anon_sym__Alignas] = ACTIONS(4048), + [sym_primitive_type] = ACTIONS(4048), + [anon_sym_enum] = ACTIONS(4048), + [anon_sym_class] = ACTIONS(4048), + [anon_sym_struct] = ACTIONS(4048), + [anon_sym_union] = ACTIONS(4048), + [anon_sym_if] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(4048), + [anon_sym_case] = ACTIONS(4048), + [anon_sym_default] = ACTIONS(4048), + [anon_sym_while] = ACTIONS(4048), + [anon_sym_do] = ACTIONS(4048), + [anon_sym_for] = ACTIONS(4048), + [anon_sym_return] = ACTIONS(4048), + [anon_sym_break] = ACTIONS(4048), + [anon_sym_continue] = ACTIONS(4048), + [anon_sym_goto] = ACTIONS(4048), + [anon_sym___try] = ACTIONS(4048), + [anon_sym___leave] = ACTIONS(4048), + [anon_sym_not] = ACTIONS(4048), + [anon_sym_compl] = ACTIONS(4048), + [anon_sym_DASH_DASH] = ACTIONS(4050), + [anon_sym_PLUS_PLUS] = ACTIONS(4050), + [anon_sym_sizeof] = ACTIONS(4048), + [anon_sym___alignof__] = ACTIONS(4048), + [anon_sym___alignof] = ACTIONS(4048), + [anon_sym__alignof] = ACTIONS(4048), + [anon_sym_alignof] = ACTIONS(4048), + [anon_sym__Alignof] = ACTIONS(4048), + [anon_sym_offsetof] = ACTIONS(4048), + [anon_sym__Generic] = ACTIONS(4048), + [anon_sym_typename] = ACTIONS(4048), + [anon_sym_asm] = ACTIONS(4048), + [anon_sym___asm__] = ACTIONS(4048), + [anon_sym___asm] = ACTIONS(4048), + [sym_number_literal] = ACTIONS(4050), + [anon_sym_L_SQUOTE] = ACTIONS(4050), + [anon_sym_u_SQUOTE] = ACTIONS(4050), + [anon_sym_U_SQUOTE] = ACTIONS(4050), + [anon_sym_u8_SQUOTE] = ACTIONS(4050), + [anon_sym_SQUOTE] = ACTIONS(4050), + [anon_sym_L_DQUOTE] = ACTIONS(4050), + [anon_sym_u_DQUOTE] = ACTIONS(4050), + [anon_sym_U_DQUOTE] = ACTIONS(4050), + [anon_sym_u8_DQUOTE] = ACTIONS(4050), + [anon_sym_DQUOTE] = ACTIONS(4050), + [sym_true] = ACTIONS(4048), + [sym_false] = ACTIONS(4048), + [anon_sym_NULL] = ACTIONS(4048), + [anon_sym_nullptr] = ACTIONS(4048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4048), + [anon_sym_decltype] = ACTIONS(4048), + [anon_sym_explicit] = ACTIONS(4048), + [anon_sym_export] = ACTIONS(4048), + [anon_sym_import] = ACTIONS(4048), + [anon_sym_template] = ACTIONS(4048), + [anon_sym_operator] = ACTIONS(4048), + [anon_sym_try] = ACTIONS(4048), + [anon_sym_delete] = ACTIONS(4048), + [anon_sym_throw] = ACTIONS(4048), + [anon_sym_namespace] = ACTIONS(4048), + [anon_sym_static_assert] = ACTIONS(4048), + [anon_sym_concept] = ACTIONS(4048), + [anon_sym_co_return] = ACTIONS(4048), + [anon_sym_co_yield] = ACTIONS(4048), + [anon_sym_R_DQUOTE] = ACTIONS(4050), + [anon_sym_LR_DQUOTE] = ACTIONS(4050), + [anon_sym_uR_DQUOTE] = ACTIONS(4050), + [anon_sym_UR_DQUOTE] = ACTIONS(4050), + [anon_sym_u8R_DQUOTE] = ACTIONS(4050), + [anon_sym_co_await] = ACTIONS(4048), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_requires] = ACTIONS(4048), + [anon_sym_CARET_CARET] = ACTIONS(4050), + [anon_sym_LBRACK_COLON] = ACTIONS(4050), + [sym_this] = ACTIONS(4048), + }, + [STATE(863)] = { + [sym_identifier] = ACTIONS(3943), + [aux_sym_preproc_include_token1] = ACTIONS(3943), + [aux_sym_preproc_def_token1] = ACTIONS(3943), + [aux_sym_preproc_if_token1] = ACTIONS(3943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3943), + [sym_preproc_directive] = ACTIONS(3943), + [anon_sym_LPAREN2] = ACTIONS(3945), + [anon_sym_BANG] = ACTIONS(3945), + [anon_sym_TILDE] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3943), + [anon_sym_STAR] = ACTIONS(3945), + [anon_sym_AMP_AMP] = ACTIONS(3945), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_SEMI] = ACTIONS(3945), + [anon_sym___extension__] = ACTIONS(3943), + [anon_sym_typedef] = ACTIONS(3943), + [anon_sym_virtual] = ACTIONS(3943), + [anon_sym_extern] = ACTIONS(3943), + [anon_sym___attribute__] = ACTIONS(3943), + [anon_sym___attribute] = ACTIONS(3943), + [anon_sym_using] = ACTIONS(3943), + [anon_sym_COLON_COLON] = ACTIONS(3945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3945), + [anon_sym___declspec] = ACTIONS(3943), + [anon_sym___based] = ACTIONS(3943), + [anon_sym___cdecl] = ACTIONS(3943), + [anon_sym___clrcall] = ACTIONS(3943), + [anon_sym___stdcall] = ACTIONS(3943), + [anon_sym___fastcall] = ACTIONS(3943), + [anon_sym___thiscall] = ACTIONS(3943), + [anon_sym___vectorcall] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_RBRACE] = ACTIONS(3945), + [anon_sym_signed] = ACTIONS(3943), + [anon_sym_unsigned] = ACTIONS(3943), + [anon_sym_long] = ACTIONS(3943), + [anon_sym_short] = ACTIONS(3943), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_static] = ACTIONS(3943), + [anon_sym_register] = ACTIONS(3943), + [anon_sym_inline] = ACTIONS(3943), + [anon_sym___inline] = ACTIONS(3943), + [anon_sym___inline__] = ACTIONS(3943), + [anon_sym___forceinline] = ACTIONS(3943), + [anon_sym_thread_local] = ACTIONS(3943), + [anon_sym___thread] = ACTIONS(3943), + [anon_sym_const] = ACTIONS(3943), + [anon_sym_constexpr] = ACTIONS(3943), + [anon_sym_volatile] = ACTIONS(3943), + [anon_sym_restrict] = ACTIONS(3943), + [anon_sym___restrict__] = ACTIONS(3943), + [anon_sym__Atomic] = ACTIONS(3943), + [anon_sym__Noreturn] = ACTIONS(3943), + [anon_sym_noreturn] = ACTIONS(3943), + [anon_sym__Nonnull] = ACTIONS(3943), + [anon_sym_mutable] = ACTIONS(3943), + [anon_sym_constinit] = ACTIONS(3943), + [anon_sym_consteval] = ACTIONS(3943), + [anon_sym_alignas] = ACTIONS(3943), + [anon_sym__Alignas] = ACTIONS(3943), + [sym_primitive_type] = ACTIONS(3943), + [anon_sym_enum] = ACTIONS(3943), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3943), + [anon_sym_union] = ACTIONS(3943), + [anon_sym_if] = ACTIONS(3943), + [anon_sym_switch] = ACTIONS(3943), + [anon_sym_case] = ACTIONS(3943), + [anon_sym_default] = ACTIONS(3943), + [anon_sym_while] = ACTIONS(3943), + [anon_sym_do] = ACTIONS(3943), + [anon_sym_for] = ACTIONS(3943), + [anon_sym_return] = ACTIONS(3943), + [anon_sym_break] = ACTIONS(3943), + [anon_sym_continue] = ACTIONS(3943), + [anon_sym_goto] = ACTIONS(3943), + [anon_sym___try] = ACTIONS(3943), + [anon_sym___leave] = ACTIONS(3943), + [anon_sym_not] = ACTIONS(3943), + [anon_sym_compl] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3945), + [anon_sym_PLUS_PLUS] = ACTIONS(3945), + [anon_sym_sizeof] = ACTIONS(3943), + [anon_sym___alignof__] = ACTIONS(3943), + [anon_sym___alignof] = ACTIONS(3943), + [anon_sym__alignof] = ACTIONS(3943), + [anon_sym_alignof] = ACTIONS(3943), + [anon_sym__Alignof] = ACTIONS(3943), + [anon_sym_offsetof] = ACTIONS(3943), + [anon_sym__Generic] = ACTIONS(3943), + [anon_sym_typename] = ACTIONS(3943), + [anon_sym_asm] = ACTIONS(3943), + [anon_sym___asm__] = ACTIONS(3943), + [anon_sym___asm] = ACTIONS(3943), + [sym_number_literal] = ACTIONS(3945), + [anon_sym_L_SQUOTE] = ACTIONS(3945), + [anon_sym_u_SQUOTE] = ACTIONS(3945), + [anon_sym_U_SQUOTE] = ACTIONS(3945), + [anon_sym_u8_SQUOTE] = ACTIONS(3945), + [anon_sym_SQUOTE] = ACTIONS(3945), + [anon_sym_L_DQUOTE] = ACTIONS(3945), + [anon_sym_u_DQUOTE] = ACTIONS(3945), + [anon_sym_U_DQUOTE] = ACTIONS(3945), + [anon_sym_u8_DQUOTE] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3945), + [sym_true] = ACTIONS(3943), + [sym_false] = ACTIONS(3943), + [anon_sym_NULL] = ACTIONS(3943), + [anon_sym_nullptr] = ACTIONS(3943), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3943), + [anon_sym_decltype] = ACTIONS(3943), + [anon_sym_explicit] = ACTIONS(3943), + [anon_sym_export] = ACTIONS(3943), + [anon_sym_import] = ACTIONS(3943), + [anon_sym_template] = ACTIONS(3943), + [anon_sym_operator] = ACTIONS(3943), + [anon_sym_try] = ACTIONS(3943), + [anon_sym_delete] = ACTIONS(3943), + [anon_sym_throw] = ACTIONS(3943), + [anon_sym_namespace] = ACTIONS(3943), + [anon_sym_static_assert] = ACTIONS(3943), + [anon_sym_concept] = ACTIONS(3943), + [anon_sym_co_return] = ACTIONS(3943), + [anon_sym_co_yield] = ACTIONS(3943), + [anon_sym_R_DQUOTE] = ACTIONS(3945), + [anon_sym_LR_DQUOTE] = ACTIONS(3945), + [anon_sym_uR_DQUOTE] = ACTIONS(3945), + [anon_sym_UR_DQUOTE] = ACTIONS(3945), + [anon_sym_u8R_DQUOTE] = ACTIONS(3945), + [anon_sym_co_await] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3943), + [anon_sym_requires] = ACTIONS(3943), + [anon_sym_CARET_CARET] = ACTIONS(3945), + [anon_sym_LBRACK_COLON] = ACTIONS(3945), + [sym_this] = ACTIONS(3943), + }, + [STATE(864)] = { + [sym_identifier] = ACTIONS(4116), + [aux_sym_preproc_include_token1] = ACTIONS(4116), + [aux_sym_preproc_def_token1] = ACTIONS(4116), + [aux_sym_preproc_if_token1] = ACTIONS(4116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4116), + [sym_preproc_directive] = ACTIONS(4116), + [anon_sym_LPAREN2] = ACTIONS(4118), + [anon_sym_BANG] = ACTIONS(4118), + [anon_sym_TILDE] = ACTIONS(4118), + [anon_sym_DASH] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4116), + [anon_sym_STAR] = ACTIONS(4118), + [anon_sym_AMP_AMP] = ACTIONS(4118), + [anon_sym_AMP] = ACTIONS(4116), + [anon_sym_SEMI] = ACTIONS(4118), + [anon_sym___extension__] = ACTIONS(4116), + [anon_sym_typedef] = ACTIONS(4116), + [anon_sym_virtual] = ACTIONS(4116), + [anon_sym_extern] = ACTIONS(4116), + [anon_sym___attribute__] = ACTIONS(4116), + [anon_sym___attribute] = ACTIONS(4116), + [anon_sym_using] = ACTIONS(4116), + [anon_sym_COLON_COLON] = ACTIONS(4118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4118), + [anon_sym___declspec] = ACTIONS(4116), + [anon_sym___based] = ACTIONS(4116), + [anon_sym___cdecl] = ACTIONS(4116), + [anon_sym___clrcall] = ACTIONS(4116), + [anon_sym___stdcall] = ACTIONS(4116), + [anon_sym___fastcall] = ACTIONS(4116), + [anon_sym___thiscall] = ACTIONS(4116), + [anon_sym___vectorcall] = ACTIONS(4116), + [anon_sym_LBRACE] = ACTIONS(4118), + [anon_sym_RBRACE] = ACTIONS(4118), + [anon_sym_signed] = ACTIONS(4116), + [anon_sym_unsigned] = ACTIONS(4116), + [anon_sym_long] = ACTIONS(4116), + [anon_sym_short] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_static] = ACTIONS(4116), + [anon_sym_register] = ACTIONS(4116), + [anon_sym_inline] = ACTIONS(4116), + [anon_sym___inline] = ACTIONS(4116), + [anon_sym___inline__] = ACTIONS(4116), + [anon_sym___forceinline] = ACTIONS(4116), + [anon_sym_thread_local] = ACTIONS(4116), + [anon_sym___thread] = ACTIONS(4116), + [anon_sym_const] = ACTIONS(4116), + [anon_sym_constexpr] = ACTIONS(4116), + [anon_sym_volatile] = ACTIONS(4116), + [anon_sym_restrict] = ACTIONS(4116), + [anon_sym___restrict__] = ACTIONS(4116), + [anon_sym__Atomic] = ACTIONS(4116), + [anon_sym__Noreturn] = ACTIONS(4116), + [anon_sym_noreturn] = ACTIONS(4116), + [anon_sym__Nonnull] = ACTIONS(4116), + [anon_sym_mutable] = ACTIONS(4116), + [anon_sym_constinit] = ACTIONS(4116), + [anon_sym_consteval] = ACTIONS(4116), + [anon_sym_alignas] = ACTIONS(4116), + [anon_sym__Alignas] = ACTIONS(4116), + [sym_primitive_type] = ACTIONS(4116), + [anon_sym_enum] = ACTIONS(4116), + [anon_sym_class] = ACTIONS(4116), + [anon_sym_struct] = ACTIONS(4116), + [anon_sym_union] = ACTIONS(4116), + [anon_sym_if] = ACTIONS(4116), + [anon_sym_switch] = ACTIONS(4116), + [anon_sym_case] = ACTIONS(4116), + [anon_sym_default] = ACTIONS(4116), + [anon_sym_while] = ACTIONS(4116), + [anon_sym_do] = ACTIONS(4116), + [anon_sym_for] = ACTIONS(4116), + [anon_sym_return] = ACTIONS(4116), + [anon_sym_break] = ACTIONS(4116), + [anon_sym_continue] = ACTIONS(4116), + [anon_sym_goto] = ACTIONS(4116), + [anon_sym___try] = ACTIONS(4116), + [anon_sym___leave] = ACTIONS(4116), + [anon_sym_not] = ACTIONS(4116), + [anon_sym_compl] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4118), + [anon_sym_PLUS_PLUS] = ACTIONS(4118), + [anon_sym_sizeof] = ACTIONS(4116), + [anon_sym___alignof__] = ACTIONS(4116), + [anon_sym___alignof] = ACTIONS(4116), + [anon_sym__alignof] = ACTIONS(4116), + [anon_sym_alignof] = ACTIONS(4116), + [anon_sym__Alignof] = ACTIONS(4116), + [anon_sym_offsetof] = ACTIONS(4116), + [anon_sym__Generic] = ACTIONS(4116), + [anon_sym_typename] = ACTIONS(4116), + [anon_sym_asm] = ACTIONS(4116), + [anon_sym___asm__] = ACTIONS(4116), + [anon_sym___asm] = ACTIONS(4116), + [sym_number_literal] = ACTIONS(4118), + [anon_sym_L_SQUOTE] = ACTIONS(4118), + [anon_sym_u_SQUOTE] = ACTIONS(4118), + [anon_sym_U_SQUOTE] = ACTIONS(4118), + [anon_sym_u8_SQUOTE] = ACTIONS(4118), + [anon_sym_SQUOTE] = ACTIONS(4118), + [anon_sym_L_DQUOTE] = ACTIONS(4118), + [anon_sym_u_DQUOTE] = ACTIONS(4118), + [anon_sym_U_DQUOTE] = ACTIONS(4118), + [anon_sym_u8_DQUOTE] = ACTIONS(4118), + [anon_sym_DQUOTE] = ACTIONS(4118), + [sym_true] = ACTIONS(4116), + [sym_false] = ACTIONS(4116), + [anon_sym_NULL] = ACTIONS(4116), + [anon_sym_nullptr] = ACTIONS(4116), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4116), + [anon_sym_decltype] = ACTIONS(4116), + [anon_sym_explicit] = ACTIONS(4116), + [anon_sym_export] = ACTIONS(4116), + [anon_sym_import] = ACTIONS(4116), + [anon_sym_template] = ACTIONS(4116), + [anon_sym_operator] = ACTIONS(4116), + [anon_sym_try] = ACTIONS(4116), + [anon_sym_delete] = ACTIONS(4116), + [anon_sym_throw] = ACTIONS(4116), + [anon_sym_namespace] = ACTIONS(4116), + [anon_sym_static_assert] = ACTIONS(4116), + [anon_sym_concept] = ACTIONS(4116), + [anon_sym_co_return] = ACTIONS(4116), + [anon_sym_co_yield] = ACTIONS(4116), + [anon_sym_R_DQUOTE] = ACTIONS(4118), + [anon_sym_LR_DQUOTE] = ACTIONS(4118), + [anon_sym_uR_DQUOTE] = ACTIONS(4118), + [anon_sym_UR_DQUOTE] = ACTIONS(4118), + [anon_sym_u8R_DQUOTE] = ACTIONS(4118), + [anon_sym_co_await] = ACTIONS(4116), + [anon_sym_new] = ACTIONS(4116), + [anon_sym_requires] = ACTIONS(4116), + [anon_sym_CARET_CARET] = ACTIONS(4118), + [anon_sym_LBRACK_COLON] = ACTIONS(4118), + [sym_this] = ACTIONS(4116), + }, + [STATE(865)] = { + [sym_identifier] = ACTIONS(4274), + [aux_sym_preproc_include_token1] = ACTIONS(4274), + [aux_sym_preproc_def_token1] = ACTIONS(4274), + [aux_sym_preproc_if_token1] = ACTIONS(4274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4274), + [sym_preproc_directive] = ACTIONS(4274), + [anon_sym_LPAREN2] = ACTIONS(4276), + [anon_sym_BANG] = ACTIONS(4276), + [anon_sym_TILDE] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_AMP] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym___extension__] = ACTIONS(4274), + [anon_sym_typedef] = ACTIONS(4274), + [anon_sym_virtual] = ACTIONS(4274), + [anon_sym_extern] = ACTIONS(4274), + [anon_sym___attribute__] = ACTIONS(4274), + [anon_sym___attribute] = ACTIONS(4274), + [anon_sym_using] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4276), + [anon_sym___declspec] = ACTIONS(4274), + [anon_sym___based] = ACTIONS(4274), + [anon_sym___cdecl] = ACTIONS(4274), + [anon_sym___clrcall] = ACTIONS(4274), + [anon_sym___stdcall] = ACTIONS(4274), + [anon_sym___fastcall] = ACTIONS(4274), + [anon_sym___thiscall] = ACTIONS(4274), + [anon_sym___vectorcall] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(4276), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_signed] = ACTIONS(4274), + [anon_sym_unsigned] = ACTIONS(4274), + [anon_sym_long] = ACTIONS(4274), + [anon_sym_short] = ACTIONS(4274), + [anon_sym_LBRACK] = ACTIONS(4274), + [anon_sym_static] = ACTIONS(4274), + [anon_sym_register] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym___inline] = ACTIONS(4274), + [anon_sym___inline__] = ACTIONS(4274), + [anon_sym___forceinline] = ACTIONS(4274), + [anon_sym_thread_local] = ACTIONS(4274), + [anon_sym___thread] = ACTIONS(4274), + [anon_sym_const] = ACTIONS(4274), + [anon_sym_constexpr] = ACTIONS(4274), + [anon_sym_volatile] = ACTIONS(4274), + [anon_sym_restrict] = ACTIONS(4274), + [anon_sym___restrict__] = ACTIONS(4274), + [anon_sym__Atomic] = ACTIONS(4274), + [anon_sym__Noreturn] = ACTIONS(4274), + [anon_sym_noreturn] = ACTIONS(4274), + [anon_sym__Nonnull] = ACTIONS(4274), + [anon_sym_mutable] = ACTIONS(4274), + [anon_sym_constinit] = ACTIONS(4274), + [anon_sym_consteval] = ACTIONS(4274), + [anon_sym_alignas] = ACTIONS(4274), + [anon_sym__Alignas] = ACTIONS(4274), + [sym_primitive_type] = ACTIONS(4274), + [anon_sym_enum] = ACTIONS(4274), + [anon_sym_class] = ACTIONS(4274), + [anon_sym_struct] = ACTIONS(4274), + [anon_sym_union] = ACTIONS(4274), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_switch] = ACTIONS(4274), + [anon_sym_case] = ACTIONS(4274), + [anon_sym_default] = ACTIONS(4274), + [anon_sym_while] = ACTIONS(4274), + [anon_sym_do] = ACTIONS(4274), + [anon_sym_for] = ACTIONS(4274), + [anon_sym_return] = ACTIONS(4274), + [anon_sym_break] = ACTIONS(4274), + [anon_sym_continue] = ACTIONS(4274), + [anon_sym_goto] = ACTIONS(4274), + [anon_sym___try] = ACTIONS(4274), + [anon_sym___leave] = ACTIONS(4274), + [anon_sym_not] = ACTIONS(4274), + [anon_sym_compl] = ACTIONS(4274), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_sizeof] = ACTIONS(4274), + [anon_sym___alignof__] = ACTIONS(4274), + [anon_sym___alignof] = ACTIONS(4274), + [anon_sym__alignof] = ACTIONS(4274), + [anon_sym_alignof] = ACTIONS(4274), + [anon_sym__Alignof] = ACTIONS(4274), + [anon_sym_offsetof] = ACTIONS(4274), + [anon_sym__Generic] = ACTIONS(4274), + [anon_sym_typename] = ACTIONS(4274), + [anon_sym_asm] = ACTIONS(4274), + [anon_sym___asm__] = ACTIONS(4274), + [anon_sym___asm] = ACTIONS(4274), + [sym_number_literal] = ACTIONS(4276), + [anon_sym_L_SQUOTE] = ACTIONS(4276), + [anon_sym_u_SQUOTE] = ACTIONS(4276), + [anon_sym_U_SQUOTE] = ACTIONS(4276), + [anon_sym_u8_SQUOTE] = ACTIONS(4276), + [anon_sym_SQUOTE] = ACTIONS(4276), + [anon_sym_L_DQUOTE] = ACTIONS(4276), + [anon_sym_u_DQUOTE] = ACTIONS(4276), + [anon_sym_U_DQUOTE] = ACTIONS(4276), + [anon_sym_u8_DQUOTE] = ACTIONS(4276), + [anon_sym_DQUOTE] = ACTIONS(4276), + [sym_true] = ACTIONS(4274), + [sym_false] = ACTIONS(4274), + [anon_sym_NULL] = ACTIONS(4274), + [anon_sym_nullptr] = ACTIONS(4274), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4274), + [anon_sym_decltype] = ACTIONS(4274), + [anon_sym_explicit] = ACTIONS(4274), + [anon_sym_export] = ACTIONS(4274), + [anon_sym_import] = ACTIONS(4274), + [anon_sym_template] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_try] = ACTIONS(4274), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_throw] = ACTIONS(4274), + [anon_sym_namespace] = ACTIONS(4274), + [anon_sym_static_assert] = ACTIONS(4274), + [anon_sym_concept] = ACTIONS(4274), + [anon_sym_co_return] = ACTIONS(4274), + [anon_sym_co_yield] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4274), + [anon_sym_new] = ACTIONS(4274), + [anon_sym_requires] = ACTIONS(4274), + [anon_sym_CARET_CARET] = ACTIONS(4276), + [anon_sym_LBRACK_COLON] = ACTIONS(4276), + [sym_this] = ACTIONS(4274), + }, + [STATE(866)] = { + [ts_builtin_sym_end] = ACTIONS(4468), + [sym_identifier] = ACTIONS(4466), + [aux_sym_preproc_include_token1] = ACTIONS(4466), + [aux_sym_preproc_def_token1] = ACTIONS(4466), + [aux_sym_preproc_if_token1] = ACTIONS(4466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4466), + [sym_preproc_directive] = ACTIONS(4466), + [anon_sym_LPAREN2] = ACTIONS(4468), + [anon_sym_BANG] = ACTIONS(4468), + [anon_sym_TILDE] = ACTIONS(4468), + [anon_sym_DASH] = ACTIONS(4466), + [anon_sym_PLUS] = ACTIONS(4466), + [anon_sym_STAR] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_AMP] = ACTIONS(4466), + [anon_sym_SEMI] = ACTIONS(4468), + [anon_sym___extension__] = ACTIONS(4466), + [anon_sym_typedef] = ACTIONS(4466), + [anon_sym_virtual] = ACTIONS(4466), + [anon_sym_extern] = ACTIONS(4466), + [anon_sym___attribute__] = ACTIONS(4466), + [anon_sym___attribute] = ACTIONS(4466), + [anon_sym_using] = ACTIONS(4466), + [anon_sym_COLON_COLON] = ACTIONS(4468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4468), + [anon_sym___declspec] = ACTIONS(4466), + [anon_sym___based] = ACTIONS(4466), + [anon_sym___cdecl] = ACTIONS(4466), + [anon_sym___clrcall] = ACTIONS(4466), + [anon_sym___stdcall] = ACTIONS(4466), + [anon_sym___fastcall] = ACTIONS(4466), + [anon_sym___thiscall] = ACTIONS(4466), + [anon_sym___vectorcall] = ACTIONS(4466), + [anon_sym_LBRACE] = ACTIONS(4468), + [anon_sym_signed] = ACTIONS(4466), + [anon_sym_unsigned] = ACTIONS(4466), + [anon_sym_long] = ACTIONS(4466), + [anon_sym_short] = ACTIONS(4466), + [anon_sym_LBRACK] = ACTIONS(4466), + [anon_sym_static] = ACTIONS(4466), + [anon_sym_register] = ACTIONS(4466), + [anon_sym_inline] = ACTIONS(4466), + [anon_sym___inline] = ACTIONS(4466), + [anon_sym___inline__] = ACTIONS(4466), + [anon_sym___forceinline] = ACTIONS(4466), + [anon_sym_thread_local] = ACTIONS(4466), + [anon_sym___thread] = ACTIONS(4466), + [anon_sym_const] = ACTIONS(4466), + [anon_sym_constexpr] = ACTIONS(4466), + [anon_sym_volatile] = ACTIONS(4466), + [anon_sym_restrict] = ACTIONS(4466), + [anon_sym___restrict__] = ACTIONS(4466), + [anon_sym__Atomic] = ACTIONS(4466), + [anon_sym__Noreturn] = ACTIONS(4466), + [anon_sym_noreturn] = ACTIONS(4466), + [anon_sym__Nonnull] = ACTIONS(4466), + [anon_sym_mutable] = ACTIONS(4466), + [anon_sym_constinit] = ACTIONS(4466), + [anon_sym_consteval] = ACTIONS(4466), + [anon_sym_alignas] = ACTIONS(4466), + [anon_sym__Alignas] = ACTIONS(4466), + [sym_primitive_type] = ACTIONS(4466), + [anon_sym_enum] = ACTIONS(4466), + [anon_sym_class] = ACTIONS(4466), + [anon_sym_struct] = ACTIONS(4466), + [anon_sym_union] = ACTIONS(4466), + [anon_sym_if] = ACTIONS(4466), + [anon_sym_switch] = ACTIONS(4466), + [anon_sym_case] = ACTIONS(4466), + [anon_sym_default] = ACTIONS(4466), + [anon_sym_while] = ACTIONS(4466), + [anon_sym_do] = ACTIONS(4466), + [anon_sym_for] = ACTIONS(4466), + [anon_sym_return] = ACTIONS(4466), + [anon_sym_break] = ACTIONS(4466), + [anon_sym_continue] = ACTIONS(4466), + [anon_sym_goto] = ACTIONS(4466), + [anon_sym_not] = ACTIONS(4466), + [anon_sym_compl] = ACTIONS(4466), + [anon_sym_DASH_DASH] = ACTIONS(4468), + [anon_sym_PLUS_PLUS] = ACTIONS(4468), + [anon_sym_sizeof] = ACTIONS(4466), + [anon_sym___alignof__] = ACTIONS(4466), + [anon_sym___alignof] = ACTIONS(4466), + [anon_sym__alignof] = ACTIONS(4466), + [anon_sym_alignof] = ACTIONS(4466), + [anon_sym__Alignof] = ACTIONS(4466), + [anon_sym_offsetof] = ACTIONS(4466), + [anon_sym__Generic] = ACTIONS(4466), + [anon_sym_typename] = ACTIONS(4466), + [anon_sym_asm] = ACTIONS(4466), + [anon_sym___asm__] = ACTIONS(4466), + [anon_sym___asm] = ACTIONS(4466), + [sym_number_literal] = ACTIONS(4468), + [anon_sym_L_SQUOTE] = ACTIONS(4468), + [anon_sym_u_SQUOTE] = ACTIONS(4468), + [anon_sym_U_SQUOTE] = ACTIONS(4468), + [anon_sym_u8_SQUOTE] = ACTIONS(4468), + [anon_sym_SQUOTE] = ACTIONS(4468), + [anon_sym_L_DQUOTE] = ACTIONS(4468), + [anon_sym_u_DQUOTE] = ACTIONS(4468), + [anon_sym_U_DQUOTE] = ACTIONS(4468), + [anon_sym_u8_DQUOTE] = ACTIONS(4468), + [anon_sym_DQUOTE] = ACTIONS(4468), + [sym_true] = ACTIONS(4466), + [sym_false] = ACTIONS(4466), + [anon_sym_NULL] = ACTIONS(4466), + [anon_sym_nullptr] = ACTIONS(4466), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4466), + [anon_sym_decltype] = ACTIONS(4466), + [anon_sym_explicit] = ACTIONS(4466), + [anon_sym_export] = ACTIONS(4466), + [anon_sym_module] = ACTIONS(4466), + [anon_sym_import] = ACTIONS(4466), + [anon_sym_template] = ACTIONS(4466), + [anon_sym_operator] = ACTIONS(4466), + [anon_sym_try] = ACTIONS(4466), + [anon_sym_delete] = ACTIONS(4466), + [anon_sym_throw] = ACTIONS(4466), + [anon_sym_namespace] = ACTIONS(4466), + [anon_sym_static_assert] = ACTIONS(4466), + [anon_sym_concept] = ACTIONS(4466), + [anon_sym_co_return] = ACTIONS(4466), + [anon_sym_co_yield] = ACTIONS(4466), + [anon_sym_R_DQUOTE] = ACTIONS(4468), + [anon_sym_LR_DQUOTE] = ACTIONS(4468), + [anon_sym_uR_DQUOTE] = ACTIONS(4468), + [anon_sym_UR_DQUOTE] = ACTIONS(4468), + [anon_sym_u8R_DQUOTE] = ACTIONS(4468), + [anon_sym_co_await] = ACTIONS(4466), + [anon_sym_new] = ACTIONS(4466), + [anon_sym_requires] = ACTIONS(4466), + [anon_sym_CARET_CARET] = ACTIONS(4468), + [anon_sym_LBRACK_COLON] = ACTIONS(4468), + [sym_this] = ACTIONS(4466), + }, + [STATE(867)] = { + [ts_builtin_sym_end] = ACTIONS(4122), + [sym_identifier] = ACTIONS(4120), + [aux_sym_preproc_include_token1] = ACTIONS(4120), + [aux_sym_preproc_def_token1] = ACTIONS(4120), + [aux_sym_preproc_if_token1] = ACTIONS(4120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4120), + [sym_preproc_directive] = ACTIONS(4120), + [anon_sym_LPAREN2] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4122), + [anon_sym_TILDE] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4122), + [anon_sym_AMP_AMP] = ACTIONS(4122), + [anon_sym_AMP] = ACTIONS(4120), + [anon_sym_SEMI] = ACTIONS(4122), + [anon_sym___extension__] = ACTIONS(4120), + [anon_sym_typedef] = ACTIONS(4120), + [anon_sym_virtual] = ACTIONS(4120), + [anon_sym_extern] = ACTIONS(4120), + [anon_sym___attribute__] = ACTIONS(4120), + [anon_sym___attribute] = ACTIONS(4120), + [anon_sym_using] = ACTIONS(4120), + [anon_sym_COLON_COLON] = ACTIONS(4122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4122), + [anon_sym___declspec] = ACTIONS(4120), + [anon_sym___based] = ACTIONS(4120), + [anon_sym___cdecl] = ACTIONS(4120), + [anon_sym___clrcall] = ACTIONS(4120), + [anon_sym___stdcall] = ACTIONS(4120), + [anon_sym___fastcall] = ACTIONS(4120), + [anon_sym___thiscall] = ACTIONS(4120), + [anon_sym___vectorcall] = ACTIONS(4120), + [anon_sym_LBRACE] = ACTIONS(4122), + [anon_sym_signed] = ACTIONS(4120), + [anon_sym_unsigned] = ACTIONS(4120), + [anon_sym_long] = ACTIONS(4120), + [anon_sym_short] = ACTIONS(4120), + [anon_sym_LBRACK] = ACTIONS(4120), + [anon_sym_static] = ACTIONS(4120), + [anon_sym_register] = ACTIONS(4120), + [anon_sym_inline] = ACTIONS(4120), + [anon_sym___inline] = ACTIONS(4120), + [anon_sym___inline__] = ACTIONS(4120), + [anon_sym___forceinline] = ACTIONS(4120), + [anon_sym_thread_local] = ACTIONS(4120), + [anon_sym___thread] = ACTIONS(4120), + [anon_sym_const] = ACTIONS(4120), + [anon_sym_constexpr] = ACTIONS(4120), + [anon_sym_volatile] = ACTIONS(4120), + [anon_sym_restrict] = ACTIONS(4120), + [anon_sym___restrict__] = ACTIONS(4120), + [anon_sym__Atomic] = ACTIONS(4120), + [anon_sym__Noreturn] = ACTIONS(4120), + [anon_sym_noreturn] = ACTIONS(4120), + [anon_sym__Nonnull] = ACTIONS(4120), + [anon_sym_mutable] = ACTIONS(4120), + [anon_sym_constinit] = ACTIONS(4120), + [anon_sym_consteval] = ACTIONS(4120), + [anon_sym_alignas] = ACTIONS(4120), + [anon_sym__Alignas] = ACTIONS(4120), + [sym_primitive_type] = ACTIONS(4120), + [anon_sym_enum] = ACTIONS(4120), + [anon_sym_class] = ACTIONS(4120), + [anon_sym_struct] = ACTIONS(4120), + [anon_sym_union] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_switch] = ACTIONS(4120), + [anon_sym_case] = ACTIONS(4120), + [anon_sym_default] = ACTIONS(4120), + [anon_sym_while] = ACTIONS(4120), + [anon_sym_do] = ACTIONS(4120), + [anon_sym_for] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_goto] = ACTIONS(4120), + [anon_sym_not] = ACTIONS(4120), + [anon_sym_compl] = ACTIONS(4120), + [anon_sym_DASH_DASH] = ACTIONS(4122), + [anon_sym_PLUS_PLUS] = ACTIONS(4122), + [anon_sym_sizeof] = ACTIONS(4120), + [anon_sym___alignof__] = ACTIONS(4120), + [anon_sym___alignof] = ACTIONS(4120), + [anon_sym__alignof] = ACTIONS(4120), + [anon_sym_alignof] = ACTIONS(4120), + [anon_sym__Alignof] = ACTIONS(4120), + [anon_sym_offsetof] = ACTIONS(4120), + [anon_sym__Generic] = ACTIONS(4120), + [anon_sym_typename] = ACTIONS(4120), + [anon_sym_asm] = ACTIONS(4120), + [anon_sym___asm__] = ACTIONS(4120), + [anon_sym___asm] = ACTIONS(4120), + [sym_number_literal] = ACTIONS(4122), + [anon_sym_L_SQUOTE] = ACTIONS(4122), + [anon_sym_u_SQUOTE] = ACTIONS(4122), + [anon_sym_U_SQUOTE] = ACTIONS(4122), + [anon_sym_u8_SQUOTE] = ACTIONS(4122), + [anon_sym_SQUOTE] = ACTIONS(4122), + [anon_sym_L_DQUOTE] = ACTIONS(4122), + [anon_sym_u_DQUOTE] = ACTIONS(4122), + [anon_sym_U_DQUOTE] = ACTIONS(4122), + [anon_sym_u8_DQUOTE] = ACTIONS(4122), + [anon_sym_DQUOTE] = ACTIONS(4122), + [sym_true] = ACTIONS(4120), + [sym_false] = ACTIONS(4120), + [anon_sym_NULL] = ACTIONS(4120), + [anon_sym_nullptr] = ACTIONS(4120), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4120), + [anon_sym_decltype] = ACTIONS(4120), + [anon_sym_explicit] = ACTIONS(4120), + [anon_sym_export] = ACTIONS(4120), + [anon_sym_module] = ACTIONS(4120), + [anon_sym_import] = ACTIONS(4120), + [anon_sym_template] = ACTIONS(4120), + [anon_sym_operator] = ACTIONS(4120), + [anon_sym_try] = ACTIONS(4120), + [anon_sym_delete] = ACTIONS(4120), + [anon_sym_throw] = ACTIONS(4120), + [anon_sym_namespace] = ACTIONS(4120), + [anon_sym_static_assert] = ACTIONS(4120), + [anon_sym_concept] = ACTIONS(4120), + [anon_sym_co_return] = ACTIONS(4120), + [anon_sym_co_yield] = ACTIONS(4120), + [anon_sym_R_DQUOTE] = ACTIONS(4122), + [anon_sym_LR_DQUOTE] = ACTIONS(4122), + [anon_sym_uR_DQUOTE] = ACTIONS(4122), + [anon_sym_UR_DQUOTE] = ACTIONS(4122), + [anon_sym_u8R_DQUOTE] = ACTIONS(4122), + [anon_sym_co_await] = ACTIONS(4120), + [anon_sym_new] = ACTIONS(4120), + [anon_sym_requires] = ACTIONS(4120), + [anon_sym_CARET_CARET] = ACTIONS(4122), + [anon_sym_LBRACK_COLON] = ACTIONS(4122), + [sym_this] = ACTIONS(4120), + }, + [STATE(868)] = { + [ts_builtin_sym_end] = ACTIONS(4126), + [sym_identifier] = ACTIONS(4124), + [aux_sym_preproc_include_token1] = ACTIONS(4124), + [aux_sym_preproc_def_token1] = ACTIONS(4124), + [aux_sym_preproc_if_token1] = ACTIONS(4124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4124), + [sym_preproc_directive] = ACTIONS(4124), + [anon_sym_LPAREN2] = ACTIONS(4126), + [anon_sym_BANG] = ACTIONS(4126), + [anon_sym_TILDE] = ACTIONS(4126), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_PLUS] = ACTIONS(4124), + [anon_sym_STAR] = ACTIONS(4126), + [anon_sym_AMP_AMP] = ACTIONS(4126), + [anon_sym_AMP] = ACTIONS(4124), + [anon_sym_SEMI] = ACTIONS(4126), + [anon_sym___extension__] = ACTIONS(4124), + [anon_sym_typedef] = ACTIONS(4124), + [anon_sym_virtual] = ACTIONS(4124), + [anon_sym_extern] = ACTIONS(4124), + [anon_sym___attribute__] = ACTIONS(4124), + [anon_sym___attribute] = ACTIONS(4124), + [anon_sym_using] = ACTIONS(4124), + [anon_sym_COLON_COLON] = ACTIONS(4126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4126), + [anon_sym___declspec] = ACTIONS(4124), + [anon_sym___based] = ACTIONS(4124), + [anon_sym___cdecl] = ACTIONS(4124), + [anon_sym___clrcall] = ACTIONS(4124), + [anon_sym___stdcall] = ACTIONS(4124), + [anon_sym___fastcall] = ACTIONS(4124), + [anon_sym___thiscall] = ACTIONS(4124), + [anon_sym___vectorcall] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [anon_sym_signed] = ACTIONS(4124), + [anon_sym_unsigned] = ACTIONS(4124), + [anon_sym_long] = ACTIONS(4124), + [anon_sym_short] = ACTIONS(4124), + [anon_sym_LBRACK] = ACTIONS(4124), + [anon_sym_static] = ACTIONS(4124), + [anon_sym_register] = ACTIONS(4124), + [anon_sym_inline] = ACTIONS(4124), + [anon_sym___inline] = ACTIONS(4124), + [anon_sym___inline__] = ACTIONS(4124), + [anon_sym___forceinline] = ACTIONS(4124), + [anon_sym_thread_local] = ACTIONS(4124), + [anon_sym___thread] = ACTIONS(4124), + [anon_sym_const] = ACTIONS(4124), + [anon_sym_constexpr] = ACTIONS(4124), + [anon_sym_volatile] = ACTIONS(4124), + [anon_sym_restrict] = ACTIONS(4124), + [anon_sym___restrict__] = ACTIONS(4124), + [anon_sym__Atomic] = ACTIONS(4124), + [anon_sym__Noreturn] = ACTIONS(4124), + [anon_sym_noreturn] = ACTIONS(4124), + [anon_sym__Nonnull] = ACTIONS(4124), + [anon_sym_mutable] = ACTIONS(4124), + [anon_sym_constinit] = ACTIONS(4124), + [anon_sym_consteval] = ACTIONS(4124), + [anon_sym_alignas] = ACTIONS(4124), + [anon_sym__Alignas] = ACTIONS(4124), + [sym_primitive_type] = ACTIONS(4124), + [anon_sym_enum] = ACTIONS(4124), + [anon_sym_class] = ACTIONS(4124), + [anon_sym_struct] = ACTIONS(4124), + [anon_sym_union] = ACTIONS(4124), + [anon_sym_if] = ACTIONS(4124), + [anon_sym_switch] = ACTIONS(4124), + [anon_sym_case] = ACTIONS(4124), + [anon_sym_default] = ACTIONS(4124), + [anon_sym_while] = ACTIONS(4124), + [anon_sym_do] = ACTIONS(4124), + [anon_sym_for] = ACTIONS(4124), + [anon_sym_return] = ACTIONS(4124), + [anon_sym_break] = ACTIONS(4124), + [anon_sym_continue] = ACTIONS(4124), + [anon_sym_goto] = ACTIONS(4124), + [anon_sym_not] = ACTIONS(4124), + [anon_sym_compl] = ACTIONS(4124), + [anon_sym_DASH_DASH] = ACTIONS(4126), + [anon_sym_PLUS_PLUS] = ACTIONS(4126), + [anon_sym_sizeof] = ACTIONS(4124), + [anon_sym___alignof__] = ACTIONS(4124), + [anon_sym___alignof] = ACTIONS(4124), + [anon_sym__alignof] = ACTIONS(4124), + [anon_sym_alignof] = ACTIONS(4124), + [anon_sym__Alignof] = ACTIONS(4124), + [anon_sym_offsetof] = ACTIONS(4124), + [anon_sym__Generic] = ACTIONS(4124), + [anon_sym_typename] = ACTIONS(4124), + [anon_sym_asm] = ACTIONS(4124), + [anon_sym___asm__] = ACTIONS(4124), + [anon_sym___asm] = ACTIONS(4124), + [sym_number_literal] = ACTIONS(4126), + [anon_sym_L_SQUOTE] = ACTIONS(4126), + [anon_sym_u_SQUOTE] = ACTIONS(4126), + [anon_sym_U_SQUOTE] = ACTIONS(4126), + [anon_sym_u8_SQUOTE] = ACTIONS(4126), + [anon_sym_SQUOTE] = ACTIONS(4126), + [anon_sym_L_DQUOTE] = ACTIONS(4126), + [anon_sym_u_DQUOTE] = ACTIONS(4126), + [anon_sym_U_DQUOTE] = ACTIONS(4126), + [anon_sym_u8_DQUOTE] = ACTIONS(4126), + [anon_sym_DQUOTE] = ACTIONS(4126), + [sym_true] = ACTIONS(4124), + [sym_false] = ACTIONS(4124), + [anon_sym_NULL] = ACTIONS(4124), + [anon_sym_nullptr] = ACTIONS(4124), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4124), + [anon_sym_decltype] = ACTIONS(4124), + [anon_sym_explicit] = ACTIONS(4124), + [anon_sym_export] = ACTIONS(4124), + [anon_sym_module] = ACTIONS(4124), + [anon_sym_import] = ACTIONS(4124), + [anon_sym_template] = ACTIONS(4124), + [anon_sym_operator] = ACTIONS(4124), + [anon_sym_try] = ACTIONS(4124), + [anon_sym_delete] = ACTIONS(4124), + [anon_sym_throw] = ACTIONS(4124), + [anon_sym_namespace] = ACTIONS(4124), + [anon_sym_static_assert] = ACTIONS(4124), + [anon_sym_concept] = ACTIONS(4124), + [anon_sym_co_return] = ACTIONS(4124), + [anon_sym_co_yield] = ACTIONS(4124), + [anon_sym_R_DQUOTE] = ACTIONS(4126), + [anon_sym_LR_DQUOTE] = ACTIONS(4126), + [anon_sym_uR_DQUOTE] = ACTIONS(4126), + [anon_sym_UR_DQUOTE] = ACTIONS(4126), + [anon_sym_u8R_DQUOTE] = ACTIONS(4126), + [anon_sym_co_await] = ACTIONS(4124), + [anon_sym_new] = ACTIONS(4124), + [anon_sym_requires] = ACTIONS(4124), + [anon_sym_CARET_CARET] = ACTIONS(4126), + [anon_sym_LBRACK_COLON] = ACTIONS(4126), + [sym_this] = ACTIONS(4124), + }, + [STATE(869)] = { + [ts_builtin_sym_end] = ACTIONS(3998), + [sym_identifier] = ACTIONS(3996), + [aux_sym_preproc_include_token1] = ACTIONS(3996), + [aux_sym_preproc_def_token1] = ACTIONS(3996), + [aux_sym_preproc_if_token1] = ACTIONS(3996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3996), + [sym_preproc_directive] = ACTIONS(3996), + [anon_sym_LPAREN2] = ACTIONS(3998), + [anon_sym_BANG] = ACTIONS(3998), + [anon_sym_TILDE] = ACTIONS(3998), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_PLUS] = ACTIONS(3996), + [anon_sym_STAR] = ACTIONS(3998), + [anon_sym_AMP_AMP] = ACTIONS(3998), + [anon_sym_AMP] = ACTIONS(3996), + [anon_sym_SEMI] = ACTIONS(3998), + [anon_sym___extension__] = ACTIONS(3996), + [anon_sym_typedef] = ACTIONS(3996), + [anon_sym_virtual] = ACTIONS(3996), + [anon_sym_extern] = ACTIONS(3996), + [anon_sym___attribute__] = ACTIONS(3996), + [anon_sym___attribute] = ACTIONS(3996), + [anon_sym_using] = ACTIONS(3996), + [anon_sym_COLON_COLON] = ACTIONS(3998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3998), + [anon_sym___declspec] = ACTIONS(3996), + [anon_sym___based] = ACTIONS(3996), + [anon_sym___cdecl] = ACTIONS(3996), + [anon_sym___clrcall] = ACTIONS(3996), + [anon_sym___stdcall] = ACTIONS(3996), + [anon_sym___fastcall] = ACTIONS(3996), + [anon_sym___thiscall] = ACTIONS(3996), + [anon_sym___vectorcall] = ACTIONS(3996), + [anon_sym_LBRACE] = ACTIONS(3998), + [anon_sym_signed] = ACTIONS(3996), + [anon_sym_unsigned] = ACTIONS(3996), + [anon_sym_long] = ACTIONS(3996), + [anon_sym_short] = ACTIONS(3996), + [anon_sym_LBRACK] = ACTIONS(3996), + [anon_sym_static] = ACTIONS(3996), + [anon_sym_register] = ACTIONS(3996), + [anon_sym_inline] = ACTIONS(3996), + [anon_sym___inline] = ACTIONS(3996), + [anon_sym___inline__] = ACTIONS(3996), + [anon_sym___forceinline] = ACTIONS(3996), + [anon_sym_thread_local] = ACTIONS(3996), + [anon_sym___thread] = ACTIONS(3996), + [anon_sym_const] = ACTIONS(3996), + [anon_sym_constexpr] = ACTIONS(3996), + [anon_sym_volatile] = ACTIONS(3996), + [anon_sym_restrict] = ACTIONS(3996), + [anon_sym___restrict__] = ACTIONS(3996), + [anon_sym__Atomic] = ACTIONS(3996), + [anon_sym__Noreturn] = ACTIONS(3996), + [anon_sym_noreturn] = ACTIONS(3996), + [anon_sym__Nonnull] = ACTIONS(3996), + [anon_sym_mutable] = ACTIONS(3996), + [anon_sym_constinit] = ACTIONS(3996), + [anon_sym_consteval] = ACTIONS(3996), + [anon_sym_alignas] = ACTIONS(3996), + [anon_sym__Alignas] = ACTIONS(3996), + [sym_primitive_type] = ACTIONS(3996), + [anon_sym_enum] = ACTIONS(3996), + [anon_sym_class] = ACTIONS(3996), + [anon_sym_struct] = ACTIONS(3996), + [anon_sym_union] = ACTIONS(3996), + [anon_sym_if] = ACTIONS(3996), + [anon_sym_switch] = ACTIONS(3996), + [anon_sym_case] = ACTIONS(3996), + [anon_sym_default] = ACTIONS(3996), + [anon_sym_while] = ACTIONS(3996), + [anon_sym_do] = ACTIONS(3996), + [anon_sym_for] = ACTIONS(3996), + [anon_sym_return] = ACTIONS(3996), + [anon_sym_break] = ACTIONS(3996), + [anon_sym_continue] = ACTIONS(3996), + [anon_sym_goto] = ACTIONS(3996), + [anon_sym_not] = ACTIONS(3996), + [anon_sym_compl] = ACTIONS(3996), + [anon_sym_DASH_DASH] = ACTIONS(3998), + [anon_sym_PLUS_PLUS] = ACTIONS(3998), + [anon_sym_sizeof] = ACTIONS(3996), + [anon_sym___alignof__] = ACTIONS(3996), + [anon_sym___alignof] = ACTIONS(3996), + [anon_sym__alignof] = ACTIONS(3996), + [anon_sym_alignof] = ACTIONS(3996), + [anon_sym__Alignof] = ACTIONS(3996), + [anon_sym_offsetof] = ACTIONS(3996), + [anon_sym__Generic] = ACTIONS(3996), + [anon_sym_typename] = ACTIONS(3996), + [anon_sym_asm] = ACTIONS(3996), + [anon_sym___asm__] = ACTIONS(3996), + [anon_sym___asm] = ACTIONS(3996), + [sym_number_literal] = ACTIONS(3998), + [anon_sym_L_SQUOTE] = ACTIONS(3998), + [anon_sym_u_SQUOTE] = ACTIONS(3998), + [anon_sym_U_SQUOTE] = ACTIONS(3998), + [anon_sym_u8_SQUOTE] = ACTIONS(3998), + [anon_sym_SQUOTE] = ACTIONS(3998), + [anon_sym_L_DQUOTE] = ACTIONS(3998), + [anon_sym_u_DQUOTE] = ACTIONS(3998), + [anon_sym_U_DQUOTE] = ACTIONS(3998), + [anon_sym_u8_DQUOTE] = ACTIONS(3998), + [anon_sym_DQUOTE] = ACTIONS(3998), + [sym_true] = ACTIONS(3996), + [sym_false] = ACTIONS(3996), + [anon_sym_NULL] = ACTIONS(3996), + [anon_sym_nullptr] = ACTIONS(3996), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3996), + [anon_sym_decltype] = ACTIONS(3996), + [anon_sym_explicit] = ACTIONS(3996), + [anon_sym_export] = ACTIONS(3996), + [anon_sym_module] = ACTIONS(3996), + [anon_sym_import] = ACTIONS(3996), + [anon_sym_template] = ACTIONS(3996), + [anon_sym_operator] = ACTIONS(3996), + [anon_sym_try] = ACTIONS(3996), + [anon_sym_delete] = ACTIONS(3996), + [anon_sym_throw] = ACTIONS(3996), + [anon_sym_namespace] = ACTIONS(3996), + [anon_sym_static_assert] = ACTIONS(3996), + [anon_sym_concept] = ACTIONS(3996), + [anon_sym_co_return] = ACTIONS(3996), + [anon_sym_co_yield] = ACTIONS(3996), + [anon_sym_R_DQUOTE] = ACTIONS(3998), + [anon_sym_LR_DQUOTE] = ACTIONS(3998), + [anon_sym_uR_DQUOTE] = ACTIONS(3998), + [anon_sym_UR_DQUOTE] = ACTIONS(3998), + [anon_sym_u8R_DQUOTE] = ACTIONS(3998), + [anon_sym_co_await] = ACTIONS(3996), + [anon_sym_new] = ACTIONS(3996), + [anon_sym_requires] = ACTIONS(3996), + [anon_sym_CARET_CARET] = ACTIONS(3998), + [anon_sym_LBRACK_COLON] = ACTIONS(3998), + [sym_this] = ACTIONS(3996), + }, + [STATE(870)] = { + [sym_preproc_def] = STATE(872), + [sym_preproc_function_def] = STATE(872), + [sym_preproc_call] = STATE(872), + [sym_preproc_if_in_field_declaration_list] = STATE(872), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(872), + [sym_type_definition] = STATE(872), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8092), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(872), + [sym_field_declaration] = STATE(872), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(872), + [sym_operator_cast] = STATE(9211), + [sym_inline_method_definition] = STATE(872), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(872), + [sym_operator_cast_declaration] = STATE(872), + [sym_constructor_or_destructor_definition] = STATE(872), + [sym_constructor_or_destructor_declaration] = STATE(872), + [sym_friend_declaration] = STATE(872), + [sym_access_specifier] = STATE(11030), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(872), + [sym_alias_declaration] = STATE(872), + [sym_static_assert_declaration] = STATE(872), + [sym_consteval_block_declaration] = STATE(872), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(872), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9455), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(4686), + [aux_sym_preproc_if_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), + [sym_preproc_directive] = ACTIONS(4692), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(4694), + [anon_sym___extension__] = ACTIONS(4696), + [anon_sym_typedef] = ACTIONS(4698), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(5098), - [anon_sym_COLON_COLON] = ACTIONS(5100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(4700), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_RBRACE] = ACTIONS(4702), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_LBRACK] = ACTIONS(3460), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -193297,7 +183902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3067), + [anon_sym_constexpr] = ACTIONS(4704), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -193307,113 +183912,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4706), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(3085), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(4708), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3087), - [anon_sym_concept] = ACTIONS(5104), - [anon_sym_requires] = ACTIONS(5106), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(4712), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(992)] = { - [sym_function_definition] = STATE(898), - [sym_declaration] = STATE(898), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6279), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4663), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2620), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8592), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4324), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__empty_declaration] = STATE(898), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2416), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(898), - [sym_operator_cast] = STATE(9049), - [sym__constructor_specifiers] = STATE(2416), - [sym_operator_cast_definition] = STATE(898), - [sym_operator_cast_declaration] = STATE(898), - [sym_constructor_or_destructor_definition] = STATE(898), - [sym_constructor_or_destructor_declaration] = STATE(898), - [sym_friend_declaration] = STATE(898), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_alias_declaration] = STATE(898), - [sym_concept_definition] = STATE(898), - [sym_requires_clause] = STATE(1003), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7652), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9049), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2416), - [sym_identifier] = ACTIONS(5096), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), + [STATE(871)] = { + [ts_builtin_sym_end] = ACTIONS(4130), + [sym_identifier] = ACTIONS(4128), + [aux_sym_preproc_include_token1] = ACTIONS(4128), + [aux_sym_preproc_def_token1] = ACTIONS(4128), + [aux_sym_preproc_if_token1] = ACTIONS(4128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4128), + [sym_preproc_directive] = ACTIONS(4128), + [anon_sym_LPAREN2] = ACTIONS(4130), + [anon_sym_BANG] = ACTIONS(4130), + [anon_sym_TILDE] = ACTIONS(4130), + [anon_sym_DASH] = ACTIONS(4128), + [anon_sym_PLUS] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4130), + [anon_sym_AMP_AMP] = ACTIONS(4130), + [anon_sym_AMP] = ACTIONS(4128), + [anon_sym_SEMI] = ACTIONS(4130), + [anon_sym___extension__] = ACTIONS(4128), + [anon_sym_typedef] = ACTIONS(4128), + [anon_sym_virtual] = ACTIONS(4128), + [anon_sym_extern] = ACTIONS(4128), + [anon_sym___attribute__] = ACTIONS(4128), + [anon_sym___attribute] = ACTIONS(4128), + [anon_sym_using] = ACTIONS(4128), + [anon_sym_COLON_COLON] = ACTIONS(4130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4130), + [anon_sym___declspec] = ACTIONS(4128), + [anon_sym___based] = ACTIONS(4128), + [anon_sym___cdecl] = ACTIONS(4128), + [anon_sym___clrcall] = ACTIONS(4128), + [anon_sym___stdcall] = ACTIONS(4128), + [anon_sym___fastcall] = ACTIONS(4128), + [anon_sym___thiscall] = ACTIONS(4128), + [anon_sym___vectorcall] = ACTIONS(4128), + [anon_sym_LBRACE] = ACTIONS(4130), + [anon_sym_signed] = ACTIONS(4128), + [anon_sym_unsigned] = ACTIONS(4128), + [anon_sym_long] = ACTIONS(4128), + [anon_sym_short] = ACTIONS(4128), + [anon_sym_LBRACK] = ACTIONS(4128), + [anon_sym_static] = ACTIONS(4128), + [anon_sym_register] = ACTIONS(4128), + [anon_sym_inline] = ACTIONS(4128), + [anon_sym___inline] = ACTIONS(4128), + [anon_sym___inline__] = ACTIONS(4128), + [anon_sym___forceinline] = ACTIONS(4128), + [anon_sym_thread_local] = ACTIONS(4128), + [anon_sym___thread] = ACTIONS(4128), + [anon_sym_const] = ACTIONS(4128), + [anon_sym_constexpr] = ACTIONS(4128), + [anon_sym_volatile] = ACTIONS(4128), + [anon_sym_restrict] = ACTIONS(4128), + [anon_sym___restrict__] = ACTIONS(4128), + [anon_sym__Atomic] = ACTIONS(4128), + [anon_sym__Noreturn] = ACTIONS(4128), + [anon_sym_noreturn] = ACTIONS(4128), + [anon_sym__Nonnull] = ACTIONS(4128), + [anon_sym_mutable] = ACTIONS(4128), + [anon_sym_constinit] = ACTIONS(4128), + [anon_sym_consteval] = ACTIONS(4128), + [anon_sym_alignas] = ACTIONS(4128), + [anon_sym__Alignas] = ACTIONS(4128), + [sym_primitive_type] = ACTIONS(4128), + [anon_sym_enum] = ACTIONS(4128), + [anon_sym_class] = ACTIONS(4128), + [anon_sym_struct] = ACTIONS(4128), + [anon_sym_union] = ACTIONS(4128), + [anon_sym_if] = ACTIONS(4128), + [anon_sym_switch] = ACTIONS(4128), + [anon_sym_case] = ACTIONS(4128), + [anon_sym_default] = ACTIONS(4128), + [anon_sym_while] = ACTIONS(4128), + [anon_sym_do] = ACTIONS(4128), + [anon_sym_for] = ACTIONS(4128), + [anon_sym_return] = ACTIONS(4128), + [anon_sym_break] = ACTIONS(4128), + [anon_sym_continue] = ACTIONS(4128), + [anon_sym_goto] = ACTIONS(4128), + [anon_sym_not] = ACTIONS(4128), + [anon_sym_compl] = ACTIONS(4128), + [anon_sym_DASH_DASH] = ACTIONS(4130), + [anon_sym_PLUS_PLUS] = ACTIONS(4130), + [anon_sym_sizeof] = ACTIONS(4128), + [anon_sym___alignof__] = ACTIONS(4128), + [anon_sym___alignof] = ACTIONS(4128), + [anon_sym__alignof] = ACTIONS(4128), + [anon_sym_alignof] = ACTIONS(4128), + [anon_sym__Alignof] = ACTIONS(4128), + [anon_sym_offsetof] = ACTIONS(4128), + [anon_sym__Generic] = ACTIONS(4128), + [anon_sym_typename] = ACTIONS(4128), + [anon_sym_asm] = ACTIONS(4128), + [anon_sym___asm__] = ACTIONS(4128), + [anon_sym___asm] = ACTIONS(4128), + [sym_number_literal] = ACTIONS(4130), + [anon_sym_L_SQUOTE] = ACTIONS(4130), + [anon_sym_u_SQUOTE] = ACTIONS(4130), + [anon_sym_U_SQUOTE] = ACTIONS(4130), + [anon_sym_u8_SQUOTE] = ACTIONS(4130), + [anon_sym_SQUOTE] = ACTIONS(4130), + [anon_sym_L_DQUOTE] = ACTIONS(4130), + [anon_sym_u_DQUOTE] = ACTIONS(4130), + [anon_sym_U_DQUOTE] = ACTIONS(4130), + [anon_sym_u8_DQUOTE] = ACTIONS(4130), + [anon_sym_DQUOTE] = ACTIONS(4130), + [sym_true] = ACTIONS(4128), + [sym_false] = ACTIONS(4128), + [anon_sym_NULL] = ACTIONS(4128), + [anon_sym_nullptr] = ACTIONS(4128), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4128), + [anon_sym_decltype] = ACTIONS(4128), + [anon_sym_explicit] = ACTIONS(4128), + [anon_sym_export] = ACTIONS(4128), + [anon_sym_module] = ACTIONS(4128), + [anon_sym_import] = ACTIONS(4128), + [anon_sym_template] = ACTIONS(4128), + [anon_sym_operator] = ACTIONS(4128), + [anon_sym_try] = ACTIONS(4128), + [anon_sym_delete] = ACTIONS(4128), + [anon_sym_throw] = ACTIONS(4128), + [anon_sym_namespace] = ACTIONS(4128), + [anon_sym_static_assert] = ACTIONS(4128), + [anon_sym_concept] = ACTIONS(4128), + [anon_sym_co_return] = ACTIONS(4128), + [anon_sym_co_yield] = ACTIONS(4128), + [anon_sym_R_DQUOTE] = ACTIONS(4130), + [anon_sym_LR_DQUOTE] = ACTIONS(4130), + [anon_sym_uR_DQUOTE] = ACTIONS(4130), + [anon_sym_UR_DQUOTE] = ACTIONS(4130), + [anon_sym_u8R_DQUOTE] = ACTIONS(4130), + [anon_sym_co_await] = ACTIONS(4128), + [anon_sym_new] = ACTIONS(4128), + [anon_sym_requires] = ACTIONS(4128), + [anon_sym_CARET_CARET] = ACTIONS(4130), + [anon_sym_LBRACK_COLON] = ACTIONS(4130), + [sym_this] = ACTIONS(4128), + }, + [STATE(872)] = { + [sym_preproc_def] = STATE(884), + [sym_preproc_function_def] = STATE(884), + [sym_preproc_call] = STATE(884), + [sym_preproc_if_in_field_declaration_list] = STATE(884), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(884), + [sym_type_definition] = STATE(884), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8092), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(884), + [sym_field_declaration] = STATE(884), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(884), + [sym_operator_cast] = STATE(9211), + [sym_inline_method_definition] = STATE(884), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(884), + [sym_operator_cast_declaration] = STATE(884), + [sym_constructor_or_destructor_definition] = STATE(884), + [sym_constructor_or_destructor_declaration] = STATE(884), + [sym_friend_declaration] = STATE(884), + [sym_access_specifier] = STATE(11030), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(884), + [sym_alias_declaration] = STATE(884), + [sym_static_assert_declaration] = STATE(884), + [sym_consteval_block_declaration] = STATE(884), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9455), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(4686), + [aux_sym_preproc_if_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), + [sym_preproc_directive] = ACTIONS(4692), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(4714), + [anon_sym___extension__] = ACTIONS(4696), + [anon_sym_typedef] = ACTIONS(4698), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(5108), - [anon_sym_COLON_COLON] = ACTIONS(5100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(4700), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_RBRACE] = ACTIONS(4716), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_LBRACK] = ACTIONS(3460), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -193423,7 +184180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(5110), + [anon_sym_constexpr] = ACTIONS(4704), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -193433,113 +184190,1933 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4706), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5112), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(4708), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(5114), - [anon_sym_concept] = ACTIONS(1204), - [anon_sym_requires] = ACTIONS(5106), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(4712), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(993)] = { - [sym_function_definition] = STATE(408), - [sym_declaration] = STATE(408), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6273), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4663), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2618), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8585), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4302), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__empty_declaration] = STATE(408), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2410), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(408), - [sym_operator_cast] = STATE(9076), - [sym__constructor_specifiers] = STATE(2410), - [sym_operator_cast_definition] = STATE(408), - [sym_operator_cast_declaration] = STATE(408), - [sym_constructor_or_destructor_definition] = STATE(408), - [sym_constructor_or_destructor_declaration] = STATE(408), - [sym_friend_declaration] = STATE(408), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_alias_declaration] = STATE(408), - [sym_concept_definition] = STATE(408), - [sym_requires_clause] = STATE(1001), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7652), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9076), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2410), - [sym_identifier] = ACTIONS(5096), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), + [STATE(873)] = { + [ts_builtin_sym_end] = ACTIONS(4002), + [sym_identifier] = ACTIONS(4000), + [aux_sym_preproc_include_token1] = ACTIONS(4000), + [aux_sym_preproc_def_token1] = ACTIONS(4000), + [aux_sym_preproc_if_token1] = ACTIONS(4000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4000), + [sym_preproc_directive] = ACTIONS(4000), + [anon_sym_LPAREN2] = ACTIONS(4002), + [anon_sym_BANG] = ACTIONS(4002), + [anon_sym_TILDE] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_AMP] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym___extension__] = ACTIONS(4000), + [anon_sym_typedef] = ACTIONS(4000), + [anon_sym_virtual] = ACTIONS(4000), + [anon_sym_extern] = ACTIONS(4000), + [anon_sym___attribute__] = ACTIONS(4000), + [anon_sym___attribute] = ACTIONS(4000), + [anon_sym_using] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4002), + [anon_sym___declspec] = ACTIONS(4000), + [anon_sym___based] = ACTIONS(4000), + [anon_sym___cdecl] = ACTIONS(4000), + [anon_sym___clrcall] = ACTIONS(4000), + [anon_sym___stdcall] = ACTIONS(4000), + [anon_sym___fastcall] = ACTIONS(4000), + [anon_sym___thiscall] = ACTIONS(4000), + [anon_sym___vectorcall] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_signed] = ACTIONS(4000), + [anon_sym_unsigned] = ACTIONS(4000), + [anon_sym_long] = ACTIONS(4000), + [anon_sym_short] = ACTIONS(4000), + [anon_sym_LBRACK] = ACTIONS(4000), + [anon_sym_static] = ACTIONS(4000), + [anon_sym_register] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym___inline] = ACTIONS(4000), + [anon_sym___inline__] = ACTIONS(4000), + [anon_sym___forceinline] = ACTIONS(4000), + [anon_sym_thread_local] = ACTIONS(4000), + [anon_sym___thread] = ACTIONS(4000), + [anon_sym_const] = ACTIONS(4000), + [anon_sym_constexpr] = ACTIONS(4000), + [anon_sym_volatile] = ACTIONS(4000), + [anon_sym_restrict] = ACTIONS(4000), + [anon_sym___restrict__] = ACTIONS(4000), + [anon_sym__Atomic] = ACTIONS(4000), + [anon_sym__Noreturn] = ACTIONS(4000), + [anon_sym_noreturn] = ACTIONS(4000), + [anon_sym__Nonnull] = ACTIONS(4000), + [anon_sym_mutable] = ACTIONS(4000), + [anon_sym_constinit] = ACTIONS(4000), + [anon_sym_consteval] = ACTIONS(4000), + [anon_sym_alignas] = ACTIONS(4000), + [anon_sym__Alignas] = ACTIONS(4000), + [sym_primitive_type] = ACTIONS(4000), + [anon_sym_enum] = ACTIONS(4000), + [anon_sym_class] = ACTIONS(4000), + [anon_sym_struct] = ACTIONS(4000), + [anon_sym_union] = ACTIONS(4000), + [anon_sym_if] = ACTIONS(4000), + [anon_sym_switch] = ACTIONS(4000), + [anon_sym_case] = ACTIONS(4000), + [anon_sym_default] = ACTIONS(4000), + [anon_sym_while] = ACTIONS(4000), + [anon_sym_do] = ACTIONS(4000), + [anon_sym_for] = ACTIONS(4000), + [anon_sym_return] = ACTIONS(4000), + [anon_sym_break] = ACTIONS(4000), + [anon_sym_continue] = ACTIONS(4000), + [anon_sym_goto] = ACTIONS(4000), + [anon_sym_not] = ACTIONS(4000), + [anon_sym_compl] = ACTIONS(4000), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_sizeof] = ACTIONS(4000), + [anon_sym___alignof__] = ACTIONS(4000), + [anon_sym___alignof] = ACTIONS(4000), + [anon_sym__alignof] = ACTIONS(4000), + [anon_sym_alignof] = ACTIONS(4000), + [anon_sym__Alignof] = ACTIONS(4000), + [anon_sym_offsetof] = ACTIONS(4000), + [anon_sym__Generic] = ACTIONS(4000), + [anon_sym_typename] = ACTIONS(4000), + [anon_sym_asm] = ACTIONS(4000), + [anon_sym___asm__] = ACTIONS(4000), + [anon_sym___asm] = ACTIONS(4000), + [sym_number_literal] = ACTIONS(4002), + [anon_sym_L_SQUOTE] = ACTIONS(4002), + [anon_sym_u_SQUOTE] = ACTIONS(4002), + [anon_sym_U_SQUOTE] = ACTIONS(4002), + [anon_sym_u8_SQUOTE] = ACTIONS(4002), + [anon_sym_SQUOTE] = ACTIONS(4002), + [anon_sym_L_DQUOTE] = ACTIONS(4002), + [anon_sym_u_DQUOTE] = ACTIONS(4002), + [anon_sym_U_DQUOTE] = ACTIONS(4002), + [anon_sym_u8_DQUOTE] = ACTIONS(4002), + [anon_sym_DQUOTE] = ACTIONS(4002), + [sym_true] = ACTIONS(4000), + [sym_false] = ACTIONS(4000), + [anon_sym_NULL] = ACTIONS(4000), + [anon_sym_nullptr] = ACTIONS(4000), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4000), + [anon_sym_decltype] = ACTIONS(4000), + [anon_sym_explicit] = ACTIONS(4000), + [anon_sym_export] = ACTIONS(4000), + [anon_sym_module] = ACTIONS(4000), + [anon_sym_import] = ACTIONS(4000), + [anon_sym_template] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_try] = ACTIONS(4000), + [anon_sym_delete] = ACTIONS(4000), + [anon_sym_throw] = ACTIONS(4000), + [anon_sym_namespace] = ACTIONS(4000), + [anon_sym_static_assert] = ACTIONS(4000), + [anon_sym_concept] = ACTIONS(4000), + [anon_sym_co_return] = ACTIONS(4000), + [anon_sym_co_yield] = ACTIONS(4000), + [anon_sym_R_DQUOTE] = ACTIONS(4002), + [anon_sym_LR_DQUOTE] = ACTIONS(4002), + [anon_sym_uR_DQUOTE] = ACTIONS(4002), + [anon_sym_UR_DQUOTE] = ACTIONS(4002), + [anon_sym_u8R_DQUOTE] = ACTIONS(4002), + [anon_sym_co_await] = ACTIONS(4000), + [anon_sym_new] = ACTIONS(4000), + [anon_sym_requires] = ACTIONS(4000), + [anon_sym_CARET_CARET] = ACTIONS(4002), + [anon_sym_LBRACK_COLON] = ACTIONS(4002), + [sym_this] = ACTIONS(4000), + }, + [STATE(874)] = { + [ts_builtin_sym_end] = ACTIONS(4094), + [sym_identifier] = ACTIONS(4092), + [aux_sym_preproc_include_token1] = ACTIONS(4092), + [aux_sym_preproc_def_token1] = ACTIONS(4092), + [aux_sym_preproc_if_token1] = ACTIONS(4092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4092), + [sym_preproc_directive] = ACTIONS(4092), + [anon_sym_LPAREN2] = ACTIONS(4094), + [anon_sym_BANG] = ACTIONS(4094), + [anon_sym_TILDE] = ACTIONS(4094), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_AMP] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym___extension__] = ACTIONS(4092), + [anon_sym_typedef] = ACTIONS(4092), + [anon_sym_virtual] = ACTIONS(4092), + [anon_sym_extern] = ACTIONS(4092), + [anon_sym___attribute__] = ACTIONS(4092), + [anon_sym___attribute] = ACTIONS(4092), + [anon_sym_using] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4094), + [anon_sym___declspec] = ACTIONS(4092), + [anon_sym___based] = ACTIONS(4092), + [anon_sym___cdecl] = ACTIONS(4092), + [anon_sym___clrcall] = ACTIONS(4092), + [anon_sym___stdcall] = ACTIONS(4092), + [anon_sym___fastcall] = ACTIONS(4092), + [anon_sym___thiscall] = ACTIONS(4092), + [anon_sym___vectorcall] = ACTIONS(4092), + [anon_sym_LBRACE] = ACTIONS(4094), + [anon_sym_signed] = ACTIONS(4092), + [anon_sym_unsigned] = ACTIONS(4092), + [anon_sym_long] = ACTIONS(4092), + [anon_sym_short] = ACTIONS(4092), + [anon_sym_LBRACK] = ACTIONS(4092), + [anon_sym_static] = ACTIONS(4092), + [anon_sym_register] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym___inline] = ACTIONS(4092), + [anon_sym___inline__] = ACTIONS(4092), + [anon_sym___forceinline] = ACTIONS(4092), + [anon_sym_thread_local] = ACTIONS(4092), + [anon_sym___thread] = ACTIONS(4092), + [anon_sym_const] = ACTIONS(4092), + [anon_sym_constexpr] = ACTIONS(4092), + [anon_sym_volatile] = ACTIONS(4092), + [anon_sym_restrict] = ACTIONS(4092), + [anon_sym___restrict__] = ACTIONS(4092), + [anon_sym__Atomic] = ACTIONS(4092), + [anon_sym__Noreturn] = ACTIONS(4092), + [anon_sym_noreturn] = ACTIONS(4092), + [anon_sym__Nonnull] = ACTIONS(4092), + [anon_sym_mutable] = ACTIONS(4092), + [anon_sym_constinit] = ACTIONS(4092), + [anon_sym_consteval] = ACTIONS(4092), + [anon_sym_alignas] = ACTIONS(4092), + [anon_sym__Alignas] = ACTIONS(4092), + [sym_primitive_type] = ACTIONS(4092), + [anon_sym_enum] = ACTIONS(4092), + [anon_sym_class] = ACTIONS(4092), + [anon_sym_struct] = ACTIONS(4092), + [anon_sym_union] = ACTIONS(4092), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(4092), + [anon_sym_case] = ACTIONS(4092), + [anon_sym_default] = ACTIONS(4092), + [anon_sym_while] = ACTIONS(4092), + [anon_sym_do] = ACTIONS(4092), + [anon_sym_for] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_goto] = ACTIONS(4092), + [anon_sym_not] = ACTIONS(4092), + [anon_sym_compl] = ACTIONS(4092), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_sizeof] = ACTIONS(4092), + [anon_sym___alignof__] = ACTIONS(4092), + [anon_sym___alignof] = ACTIONS(4092), + [anon_sym__alignof] = ACTIONS(4092), + [anon_sym_alignof] = ACTIONS(4092), + [anon_sym__Alignof] = ACTIONS(4092), + [anon_sym_offsetof] = ACTIONS(4092), + [anon_sym__Generic] = ACTIONS(4092), + [anon_sym_typename] = ACTIONS(4092), + [anon_sym_asm] = ACTIONS(4092), + [anon_sym___asm__] = ACTIONS(4092), + [anon_sym___asm] = ACTIONS(4092), + [sym_number_literal] = ACTIONS(4094), + [anon_sym_L_SQUOTE] = ACTIONS(4094), + [anon_sym_u_SQUOTE] = ACTIONS(4094), + [anon_sym_U_SQUOTE] = ACTIONS(4094), + [anon_sym_u8_SQUOTE] = ACTIONS(4094), + [anon_sym_SQUOTE] = ACTIONS(4094), + [anon_sym_L_DQUOTE] = ACTIONS(4094), + [anon_sym_u_DQUOTE] = ACTIONS(4094), + [anon_sym_U_DQUOTE] = ACTIONS(4094), + [anon_sym_u8_DQUOTE] = ACTIONS(4094), + [anon_sym_DQUOTE] = ACTIONS(4094), + [sym_true] = ACTIONS(4092), + [sym_false] = ACTIONS(4092), + [anon_sym_NULL] = ACTIONS(4092), + [anon_sym_nullptr] = ACTIONS(4092), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4092), + [anon_sym_decltype] = ACTIONS(4092), + [anon_sym_explicit] = ACTIONS(4092), + [anon_sym_export] = ACTIONS(4092), + [anon_sym_module] = ACTIONS(4092), + [anon_sym_import] = ACTIONS(4092), + [anon_sym_template] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_delete] = ACTIONS(4092), + [anon_sym_throw] = ACTIONS(4092), + [anon_sym_namespace] = ACTIONS(4092), + [anon_sym_static_assert] = ACTIONS(4092), + [anon_sym_concept] = ACTIONS(4092), + [anon_sym_co_return] = ACTIONS(4092), + [anon_sym_co_yield] = ACTIONS(4092), + [anon_sym_R_DQUOTE] = ACTIONS(4094), + [anon_sym_LR_DQUOTE] = ACTIONS(4094), + [anon_sym_uR_DQUOTE] = ACTIONS(4094), + [anon_sym_UR_DQUOTE] = ACTIONS(4094), + [anon_sym_u8R_DQUOTE] = ACTIONS(4094), + [anon_sym_co_await] = ACTIONS(4092), + [anon_sym_new] = ACTIONS(4092), + [anon_sym_requires] = ACTIONS(4092), + [anon_sym_CARET_CARET] = ACTIONS(4094), + [anon_sym_LBRACK_COLON] = ACTIONS(4094), + [sym_this] = ACTIONS(4092), + }, + [STATE(875)] = { + [ts_builtin_sym_end] = ACTIONS(4445), + [sym_identifier] = ACTIONS(4443), + [aux_sym_preproc_include_token1] = ACTIONS(4443), + [aux_sym_preproc_def_token1] = ACTIONS(4443), + [aux_sym_preproc_if_token1] = ACTIONS(4443), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), + [sym_preproc_directive] = ACTIONS(4443), + [anon_sym_LPAREN2] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4445), + [anon_sym_TILDE] = ACTIONS(4445), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_AMP] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym___extension__] = ACTIONS(4443), + [anon_sym_typedef] = ACTIONS(4443), + [anon_sym_virtual] = ACTIONS(4443), + [anon_sym_extern] = ACTIONS(4443), + [anon_sym___attribute__] = ACTIONS(4443), + [anon_sym___attribute] = ACTIONS(4443), + [anon_sym_using] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4445), + [anon_sym___declspec] = ACTIONS(4443), + [anon_sym___based] = ACTIONS(4443), + [anon_sym___cdecl] = ACTIONS(4443), + [anon_sym___clrcall] = ACTIONS(4443), + [anon_sym___stdcall] = ACTIONS(4443), + [anon_sym___fastcall] = ACTIONS(4443), + [anon_sym___thiscall] = ACTIONS(4443), + [anon_sym___vectorcall] = ACTIONS(4443), + [anon_sym_LBRACE] = ACTIONS(4445), + [anon_sym_signed] = ACTIONS(4443), + [anon_sym_unsigned] = ACTIONS(4443), + [anon_sym_long] = ACTIONS(4443), + [anon_sym_short] = ACTIONS(4443), + [anon_sym_LBRACK] = ACTIONS(4443), + [anon_sym_static] = ACTIONS(4443), + [anon_sym_register] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym___inline] = ACTIONS(4443), + [anon_sym___inline__] = ACTIONS(4443), + [anon_sym___forceinline] = ACTIONS(4443), + [anon_sym_thread_local] = ACTIONS(4443), + [anon_sym___thread] = ACTIONS(4443), + [anon_sym_const] = ACTIONS(4443), + [anon_sym_constexpr] = ACTIONS(4443), + [anon_sym_volatile] = ACTIONS(4443), + [anon_sym_restrict] = ACTIONS(4443), + [anon_sym___restrict__] = ACTIONS(4443), + [anon_sym__Atomic] = ACTIONS(4443), + [anon_sym__Noreturn] = ACTIONS(4443), + [anon_sym_noreturn] = ACTIONS(4443), + [anon_sym__Nonnull] = ACTIONS(4443), + [anon_sym_mutable] = ACTIONS(4443), + [anon_sym_constinit] = ACTIONS(4443), + [anon_sym_consteval] = ACTIONS(4443), + [anon_sym_alignas] = ACTIONS(4443), + [anon_sym__Alignas] = ACTIONS(4443), + [sym_primitive_type] = ACTIONS(4443), + [anon_sym_enum] = ACTIONS(4443), + [anon_sym_class] = ACTIONS(4443), + [anon_sym_struct] = ACTIONS(4443), + [anon_sym_union] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_switch] = ACTIONS(4443), + [anon_sym_case] = ACTIONS(4443), + [anon_sym_default] = ACTIONS(4443), + [anon_sym_while] = ACTIONS(4443), + [anon_sym_do] = ACTIONS(4443), + [anon_sym_for] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_goto] = ACTIONS(4443), + [anon_sym_not] = ACTIONS(4443), + [anon_sym_compl] = ACTIONS(4443), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_sizeof] = ACTIONS(4443), + [anon_sym___alignof__] = ACTIONS(4443), + [anon_sym___alignof] = ACTIONS(4443), + [anon_sym__alignof] = ACTIONS(4443), + [anon_sym_alignof] = ACTIONS(4443), + [anon_sym__Alignof] = ACTIONS(4443), + [anon_sym_offsetof] = ACTIONS(4443), + [anon_sym__Generic] = ACTIONS(4443), + [anon_sym_typename] = ACTIONS(4443), + [anon_sym_asm] = ACTIONS(4443), + [anon_sym___asm__] = ACTIONS(4443), + [anon_sym___asm] = ACTIONS(4443), + [sym_number_literal] = ACTIONS(4445), + [anon_sym_L_SQUOTE] = ACTIONS(4445), + [anon_sym_u_SQUOTE] = ACTIONS(4445), + [anon_sym_U_SQUOTE] = ACTIONS(4445), + [anon_sym_u8_SQUOTE] = ACTIONS(4445), + [anon_sym_SQUOTE] = ACTIONS(4445), + [anon_sym_L_DQUOTE] = ACTIONS(4445), + [anon_sym_u_DQUOTE] = ACTIONS(4445), + [anon_sym_U_DQUOTE] = ACTIONS(4445), + [anon_sym_u8_DQUOTE] = ACTIONS(4445), + [anon_sym_DQUOTE] = ACTIONS(4445), + [sym_true] = ACTIONS(4443), + [sym_false] = ACTIONS(4443), + [anon_sym_NULL] = ACTIONS(4443), + [anon_sym_nullptr] = ACTIONS(4443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4443), + [anon_sym_decltype] = ACTIONS(4443), + [anon_sym_explicit] = ACTIONS(4443), + [anon_sym_export] = ACTIONS(4443), + [anon_sym_module] = ACTIONS(4443), + [anon_sym_import] = ACTIONS(4443), + [anon_sym_template] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_delete] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_namespace] = ACTIONS(4443), + [anon_sym_static_assert] = ACTIONS(4443), + [anon_sym_concept] = ACTIONS(4443), + [anon_sym_co_return] = ACTIONS(4443), + [anon_sym_co_yield] = ACTIONS(4443), + [anon_sym_R_DQUOTE] = ACTIONS(4445), + [anon_sym_LR_DQUOTE] = ACTIONS(4445), + [anon_sym_uR_DQUOTE] = ACTIONS(4445), + [anon_sym_UR_DQUOTE] = ACTIONS(4445), + [anon_sym_u8R_DQUOTE] = ACTIONS(4445), + [anon_sym_co_await] = ACTIONS(4443), + [anon_sym_new] = ACTIONS(4443), + [anon_sym_requires] = ACTIONS(4443), + [anon_sym_CARET_CARET] = ACTIONS(4445), + [anon_sym_LBRACK_COLON] = ACTIONS(4445), + [sym_this] = ACTIONS(4443), + }, + [STATE(876)] = { + [ts_builtin_sym_end] = ACTIONS(4198), + [sym_identifier] = ACTIONS(4196), + [aux_sym_preproc_include_token1] = ACTIONS(4196), + [aux_sym_preproc_def_token1] = ACTIONS(4196), + [aux_sym_preproc_if_token1] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4196), + [sym_preproc_directive] = ACTIONS(4196), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4198), + [anon_sym_TILDE] = ACTIONS(4198), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_AMP] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4198), + [anon_sym___extension__] = ACTIONS(4196), + [anon_sym_typedef] = ACTIONS(4196), + [anon_sym_virtual] = ACTIONS(4196), + [anon_sym_extern] = ACTIONS(4196), + [anon_sym___attribute__] = ACTIONS(4196), + [anon_sym___attribute] = ACTIONS(4196), + [anon_sym_using] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4198), + [anon_sym___declspec] = ACTIONS(4196), + [anon_sym___based] = ACTIONS(4196), + [anon_sym___cdecl] = ACTIONS(4196), + [anon_sym___clrcall] = ACTIONS(4196), + [anon_sym___stdcall] = ACTIONS(4196), + [anon_sym___fastcall] = ACTIONS(4196), + [anon_sym___thiscall] = ACTIONS(4196), + [anon_sym___vectorcall] = ACTIONS(4196), + [anon_sym_LBRACE] = ACTIONS(4198), + [anon_sym_signed] = ACTIONS(4196), + [anon_sym_unsigned] = ACTIONS(4196), + [anon_sym_long] = ACTIONS(4196), + [anon_sym_short] = ACTIONS(4196), + [anon_sym_LBRACK] = ACTIONS(4196), + [anon_sym_static] = ACTIONS(4196), + [anon_sym_register] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym___inline] = ACTIONS(4196), + [anon_sym___inline__] = ACTIONS(4196), + [anon_sym___forceinline] = ACTIONS(4196), + [anon_sym_thread_local] = ACTIONS(4196), + [anon_sym___thread] = ACTIONS(4196), + [anon_sym_const] = ACTIONS(4196), + [anon_sym_constexpr] = ACTIONS(4196), + [anon_sym_volatile] = ACTIONS(4196), + [anon_sym_restrict] = ACTIONS(4196), + [anon_sym___restrict__] = ACTIONS(4196), + [anon_sym__Atomic] = ACTIONS(4196), + [anon_sym__Noreturn] = ACTIONS(4196), + [anon_sym_noreturn] = ACTIONS(4196), + [anon_sym__Nonnull] = ACTIONS(4196), + [anon_sym_mutable] = ACTIONS(4196), + [anon_sym_constinit] = ACTIONS(4196), + [anon_sym_consteval] = ACTIONS(4196), + [anon_sym_alignas] = ACTIONS(4196), + [anon_sym__Alignas] = ACTIONS(4196), + [sym_primitive_type] = ACTIONS(4196), + [anon_sym_enum] = ACTIONS(4196), + [anon_sym_class] = ACTIONS(4196), + [anon_sym_struct] = ACTIONS(4196), + [anon_sym_union] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_switch] = ACTIONS(4196), + [anon_sym_case] = ACTIONS(4196), + [anon_sym_default] = ACTIONS(4196), + [anon_sym_while] = ACTIONS(4196), + [anon_sym_do] = ACTIONS(4196), + [anon_sym_for] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_goto] = ACTIONS(4196), + [anon_sym_not] = ACTIONS(4196), + [anon_sym_compl] = ACTIONS(4196), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_sizeof] = ACTIONS(4196), + [anon_sym___alignof__] = ACTIONS(4196), + [anon_sym___alignof] = ACTIONS(4196), + [anon_sym__alignof] = ACTIONS(4196), + [anon_sym_alignof] = ACTIONS(4196), + [anon_sym__Alignof] = ACTIONS(4196), + [anon_sym_offsetof] = ACTIONS(4196), + [anon_sym__Generic] = ACTIONS(4196), + [anon_sym_typename] = ACTIONS(4196), + [anon_sym_asm] = ACTIONS(4196), + [anon_sym___asm__] = ACTIONS(4196), + [anon_sym___asm] = ACTIONS(4196), + [sym_number_literal] = ACTIONS(4198), + [anon_sym_L_SQUOTE] = ACTIONS(4198), + [anon_sym_u_SQUOTE] = ACTIONS(4198), + [anon_sym_U_SQUOTE] = ACTIONS(4198), + [anon_sym_u8_SQUOTE] = ACTIONS(4198), + [anon_sym_SQUOTE] = ACTIONS(4198), + [anon_sym_L_DQUOTE] = ACTIONS(4198), + [anon_sym_u_DQUOTE] = ACTIONS(4198), + [anon_sym_U_DQUOTE] = ACTIONS(4198), + [anon_sym_u8_DQUOTE] = ACTIONS(4198), + [anon_sym_DQUOTE] = ACTIONS(4198), + [sym_true] = ACTIONS(4196), + [sym_false] = ACTIONS(4196), + [anon_sym_NULL] = ACTIONS(4196), + [anon_sym_nullptr] = ACTIONS(4196), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4196), + [anon_sym_decltype] = ACTIONS(4196), + [anon_sym_explicit] = ACTIONS(4196), + [anon_sym_export] = ACTIONS(4196), + [anon_sym_module] = ACTIONS(4196), + [anon_sym_import] = ACTIONS(4196), + [anon_sym_template] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_delete] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_namespace] = ACTIONS(4196), + [anon_sym_static_assert] = ACTIONS(4196), + [anon_sym_concept] = ACTIONS(4196), + [anon_sym_co_return] = ACTIONS(4196), + [anon_sym_co_yield] = ACTIONS(4196), + [anon_sym_R_DQUOTE] = ACTIONS(4198), + [anon_sym_LR_DQUOTE] = ACTIONS(4198), + [anon_sym_uR_DQUOTE] = ACTIONS(4198), + [anon_sym_UR_DQUOTE] = ACTIONS(4198), + [anon_sym_u8R_DQUOTE] = ACTIONS(4198), + [anon_sym_co_await] = ACTIONS(4196), + [anon_sym_new] = ACTIONS(4196), + [anon_sym_requires] = ACTIONS(4196), + [anon_sym_CARET_CARET] = ACTIONS(4198), + [anon_sym_LBRACK_COLON] = ACTIONS(4198), + [sym_this] = ACTIONS(4196), + }, + [STATE(877)] = { + [ts_builtin_sym_end] = ACTIONS(4202), + [sym_identifier] = ACTIONS(4200), + [aux_sym_preproc_include_token1] = ACTIONS(4200), + [aux_sym_preproc_def_token1] = ACTIONS(4200), + [aux_sym_preproc_if_token1] = ACTIONS(4200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4200), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4200), + [sym_preproc_directive] = ACTIONS(4200), + [anon_sym_LPAREN2] = ACTIONS(4202), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4202), + [anon_sym_AMP_AMP] = ACTIONS(4202), + [anon_sym_AMP] = ACTIONS(4200), + [anon_sym_SEMI] = ACTIONS(4202), + [anon_sym___extension__] = ACTIONS(4200), + [anon_sym_typedef] = ACTIONS(4200), + [anon_sym_virtual] = ACTIONS(4200), + [anon_sym_extern] = ACTIONS(4200), + [anon_sym___attribute__] = ACTIONS(4200), + [anon_sym___attribute] = ACTIONS(4200), + [anon_sym_using] = ACTIONS(4200), + [anon_sym_COLON_COLON] = ACTIONS(4202), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4202), + [anon_sym___declspec] = ACTIONS(4200), + [anon_sym___based] = ACTIONS(4200), + [anon_sym___cdecl] = ACTIONS(4200), + [anon_sym___clrcall] = ACTIONS(4200), + [anon_sym___stdcall] = ACTIONS(4200), + [anon_sym___fastcall] = ACTIONS(4200), + [anon_sym___thiscall] = ACTIONS(4200), + [anon_sym___vectorcall] = ACTIONS(4200), + [anon_sym_LBRACE] = ACTIONS(4202), + [anon_sym_signed] = ACTIONS(4200), + [anon_sym_unsigned] = ACTIONS(4200), + [anon_sym_long] = ACTIONS(4200), + [anon_sym_short] = ACTIONS(4200), + [anon_sym_LBRACK] = ACTIONS(4200), + [anon_sym_static] = ACTIONS(4200), + [anon_sym_register] = ACTIONS(4200), + [anon_sym_inline] = ACTIONS(4200), + [anon_sym___inline] = ACTIONS(4200), + [anon_sym___inline__] = ACTIONS(4200), + [anon_sym___forceinline] = ACTIONS(4200), + [anon_sym_thread_local] = ACTIONS(4200), + [anon_sym___thread] = ACTIONS(4200), + [anon_sym_const] = ACTIONS(4200), + [anon_sym_constexpr] = ACTIONS(4200), + [anon_sym_volatile] = ACTIONS(4200), + [anon_sym_restrict] = ACTIONS(4200), + [anon_sym___restrict__] = ACTIONS(4200), + [anon_sym__Atomic] = ACTIONS(4200), + [anon_sym__Noreturn] = ACTIONS(4200), + [anon_sym_noreturn] = ACTIONS(4200), + [anon_sym__Nonnull] = ACTIONS(4200), + [anon_sym_mutable] = ACTIONS(4200), + [anon_sym_constinit] = ACTIONS(4200), + [anon_sym_consteval] = ACTIONS(4200), + [anon_sym_alignas] = ACTIONS(4200), + [anon_sym__Alignas] = ACTIONS(4200), + [sym_primitive_type] = ACTIONS(4200), + [anon_sym_enum] = ACTIONS(4200), + [anon_sym_class] = ACTIONS(4200), + [anon_sym_struct] = ACTIONS(4200), + [anon_sym_union] = ACTIONS(4200), + [anon_sym_if] = ACTIONS(4200), + [anon_sym_switch] = ACTIONS(4200), + [anon_sym_case] = ACTIONS(4200), + [anon_sym_default] = ACTIONS(4200), + [anon_sym_while] = ACTIONS(4200), + [anon_sym_do] = ACTIONS(4200), + [anon_sym_for] = ACTIONS(4200), + [anon_sym_return] = ACTIONS(4200), + [anon_sym_break] = ACTIONS(4200), + [anon_sym_continue] = ACTIONS(4200), + [anon_sym_goto] = ACTIONS(4200), + [anon_sym_not] = ACTIONS(4200), + [anon_sym_compl] = ACTIONS(4200), + [anon_sym_DASH_DASH] = ACTIONS(4202), + [anon_sym_PLUS_PLUS] = ACTIONS(4202), + [anon_sym_sizeof] = ACTIONS(4200), + [anon_sym___alignof__] = ACTIONS(4200), + [anon_sym___alignof] = ACTIONS(4200), + [anon_sym__alignof] = ACTIONS(4200), + [anon_sym_alignof] = ACTIONS(4200), + [anon_sym__Alignof] = ACTIONS(4200), + [anon_sym_offsetof] = ACTIONS(4200), + [anon_sym__Generic] = ACTIONS(4200), + [anon_sym_typename] = ACTIONS(4200), + [anon_sym_asm] = ACTIONS(4200), + [anon_sym___asm__] = ACTIONS(4200), + [anon_sym___asm] = ACTIONS(4200), + [sym_number_literal] = ACTIONS(4202), + [anon_sym_L_SQUOTE] = ACTIONS(4202), + [anon_sym_u_SQUOTE] = ACTIONS(4202), + [anon_sym_U_SQUOTE] = ACTIONS(4202), + [anon_sym_u8_SQUOTE] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4202), + [anon_sym_L_DQUOTE] = ACTIONS(4202), + [anon_sym_u_DQUOTE] = ACTIONS(4202), + [anon_sym_U_DQUOTE] = ACTIONS(4202), + [anon_sym_u8_DQUOTE] = ACTIONS(4202), + [anon_sym_DQUOTE] = ACTIONS(4202), + [sym_true] = ACTIONS(4200), + [sym_false] = ACTIONS(4200), + [anon_sym_NULL] = ACTIONS(4200), + [anon_sym_nullptr] = ACTIONS(4200), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4200), + [anon_sym_decltype] = ACTIONS(4200), + [anon_sym_explicit] = ACTIONS(4200), + [anon_sym_export] = ACTIONS(4200), + [anon_sym_module] = ACTIONS(4200), + [anon_sym_import] = ACTIONS(4200), + [anon_sym_template] = ACTIONS(4200), + [anon_sym_operator] = ACTIONS(4200), + [anon_sym_try] = ACTIONS(4200), + [anon_sym_delete] = ACTIONS(4200), + [anon_sym_throw] = ACTIONS(4200), + [anon_sym_namespace] = ACTIONS(4200), + [anon_sym_static_assert] = ACTIONS(4200), + [anon_sym_concept] = ACTIONS(4200), + [anon_sym_co_return] = ACTIONS(4200), + [anon_sym_co_yield] = ACTIONS(4200), + [anon_sym_R_DQUOTE] = ACTIONS(4202), + [anon_sym_LR_DQUOTE] = ACTIONS(4202), + [anon_sym_uR_DQUOTE] = ACTIONS(4202), + [anon_sym_UR_DQUOTE] = ACTIONS(4202), + [anon_sym_u8R_DQUOTE] = ACTIONS(4202), + [anon_sym_co_await] = ACTIONS(4200), + [anon_sym_new] = ACTIONS(4200), + [anon_sym_requires] = ACTIONS(4200), + [anon_sym_CARET_CARET] = ACTIONS(4202), + [anon_sym_LBRACK_COLON] = ACTIONS(4202), + [sym_this] = ACTIONS(4200), + }, + [STATE(878)] = { + [ts_builtin_sym_end] = ACTIONS(4206), + [sym_identifier] = ACTIONS(4204), + [aux_sym_preproc_include_token1] = ACTIONS(4204), + [aux_sym_preproc_def_token1] = ACTIONS(4204), + [aux_sym_preproc_if_token1] = ACTIONS(4204), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4204), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4204), + [sym_preproc_directive] = ACTIONS(4204), + [anon_sym_LPAREN2] = ACTIONS(4206), + [anon_sym_BANG] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4206), + [anon_sym_DASH] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4204), + [anon_sym_STAR] = ACTIONS(4206), + [anon_sym_AMP_AMP] = ACTIONS(4206), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym_SEMI] = ACTIONS(4206), + [anon_sym___extension__] = ACTIONS(4204), + [anon_sym_typedef] = ACTIONS(4204), + [anon_sym_virtual] = ACTIONS(4204), + [anon_sym_extern] = ACTIONS(4204), + [anon_sym___attribute__] = ACTIONS(4204), + [anon_sym___attribute] = ACTIONS(4204), + [anon_sym_using] = ACTIONS(4204), + [anon_sym_COLON_COLON] = ACTIONS(4206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4206), + [anon_sym___declspec] = ACTIONS(4204), + [anon_sym___based] = ACTIONS(4204), + [anon_sym___cdecl] = ACTIONS(4204), + [anon_sym___clrcall] = ACTIONS(4204), + [anon_sym___stdcall] = ACTIONS(4204), + [anon_sym___fastcall] = ACTIONS(4204), + [anon_sym___thiscall] = ACTIONS(4204), + [anon_sym___vectorcall] = ACTIONS(4204), + [anon_sym_LBRACE] = ACTIONS(4206), + [anon_sym_signed] = ACTIONS(4204), + [anon_sym_unsigned] = ACTIONS(4204), + [anon_sym_long] = ACTIONS(4204), + [anon_sym_short] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_static] = ACTIONS(4204), + [anon_sym_register] = ACTIONS(4204), + [anon_sym_inline] = ACTIONS(4204), + [anon_sym___inline] = ACTIONS(4204), + [anon_sym___inline__] = ACTIONS(4204), + [anon_sym___forceinline] = ACTIONS(4204), + [anon_sym_thread_local] = ACTIONS(4204), + [anon_sym___thread] = ACTIONS(4204), + [anon_sym_const] = ACTIONS(4204), + [anon_sym_constexpr] = ACTIONS(4204), + [anon_sym_volatile] = ACTIONS(4204), + [anon_sym_restrict] = ACTIONS(4204), + [anon_sym___restrict__] = ACTIONS(4204), + [anon_sym__Atomic] = ACTIONS(4204), + [anon_sym__Noreturn] = ACTIONS(4204), + [anon_sym_noreturn] = ACTIONS(4204), + [anon_sym__Nonnull] = ACTIONS(4204), + [anon_sym_mutable] = ACTIONS(4204), + [anon_sym_constinit] = ACTIONS(4204), + [anon_sym_consteval] = ACTIONS(4204), + [anon_sym_alignas] = ACTIONS(4204), + [anon_sym__Alignas] = ACTIONS(4204), + [sym_primitive_type] = ACTIONS(4204), + [anon_sym_enum] = ACTIONS(4204), + [anon_sym_class] = ACTIONS(4204), + [anon_sym_struct] = ACTIONS(4204), + [anon_sym_union] = ACTIONS(4204), + [anon_sym_if] = ACTIONS(4204), + [anon_sym_switch] = ACTIONS(4204), + [anon_sym_case] = ACTIONS(4204), + [anon_sym_default] = ACTIONS(4204), + [anon_sym_while] = ACTIONS(4204), + [anon_sym_do] = ACTIONS(4204), + [anon_sym_for] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_goto] = ACTIONS(4204), + [anon_sym_not] = ACTIONS(4204), + [anon_sym_compl] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4206), + [anon_sym_PLUS_PLUS] = ACTIONS(4206), + [anon_sym_sizeof] = ACTIONS(4204), + [anon_sym___alignof__] = ACTIONS(4204), + [anon_sym___alignof] = ACTIONS(4204), + [anon_sym__alignof] = ACTIONS(4204), + [anon_sym_alignof] = ACTIONS(4204), + [anon_sym__Alignof] = ACTIONS(4204), + [anon_sym_offsetof] = ACTIONS(4204), + [anon_sym__Generic] = ACTIONS(4204), + [anon_sym_typename] = ACTIONS(4204), + [anon_sym_asm] = ACTIONS(4204), + [anon_sym___asm__] = ACTIONS(4204), + [anon_sym___asm] = ACTIONS(4204), + [sym_number_literal] = ACTIONS(4206), + [anon_sym_L_SQUOTE] = ACTIONS(4206), + [anon_sym_u_SQUOTE] = ACTIONS(4206), + [anon_sym_U_SQUOTE] = ACTIONS(4206), + [anon_sym_u8_SQUOTE] = ACTIONS(4206), + [anon_sym_SQUOTE] = ACTIONS(4206), + [anon_sym_L_DQUOTE] = ACTIONS(4206), + [anon_sym_u_DQUOTE] = ACTIONS(4206), + [anon_sym_U_DQUOTE] = ACTIONS(4206), + [anon_sym_u8_DQUOTE] = ACTIONS(4206), + [anon_sym_DQUOTE] = ACTIONS(4206), + [sym_true] = ACTIONS(4204), + [sym_false] = ACTIONS(4204), + [anon_sym_NULL] = ACTIONS(4204), + [anon_sym_nullptr] = ACTIONS(4204), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4204), + [anon_sym_decltype] = ACTIONS(4204), + [anon_sym_explicit] = ACTIONS(4204), + [anon_sym_export] = ACTIONS(4204), + [anon_sym_module] = ACTIONS(4204), + [anon_sym_import] = ACTIONS(4204), + [anon_sym_template] = ACTIONS(4204), + [anon_sym_operator] = ACTIONS(4204), + [anon_sym_try] = ACTIONS(4204), + [anon_sym_delete] = ACTIONS(4204), + [anon_sym_throw] = ACTIONS(4204), + [anon_sym_namespace] = ACTIONS(4204), + [anon_sym_static_assert] = ACTIONS(4204), + [anon_sym_concept] = ACTIONS(4204), + [anon_sym_co_return] = ACTIONS(4204), + [anon_sym_co_yield] = ACTIONS(4204), + [anon_sym_R_DQUOTE] = ACTIONS(4206), + [anon_sym_LR_DQUOTE] = ACTIONS(4206), + [anon_sym_uR_DQUOTE] = ACTIONS(4206), + [anon_sym_UR_DQUOTE] = ACTIONS(4206), + [anon_sym_u8R_DQUOTE] = ACTIONS(4206), + [anon_sym_co_await] = ACTIONS(4204), + [anon_sym_new] = ACTIONS(4204), + [anon_sym_requires] = ACTIONS(4204), + [anon_sym_CARET_CARET] = ACTIONS(4206), + [anon_sym_LBRACK_COLON] = ACTIONS(4206), + [sym_this] = ACTIONS(4204), + }, + [STATE(879)] = { + [ts_builtin_sym_end] = ACTIONS(4540), + [sym_identifier] = ACTIONS(4538), + [aux_sym_preproc_include_token1] = ACTIONS(4538), + [aux_sym_preproc_def_token1] = ACTIONS(4538), + [aux_sym_preproc_if_token1] = ACTIONS(4538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4538), + [sym_preproc_directive] = ACTIONS(4538), + [anon_sym_LPAREN2] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4538), + [anon_sym_PLUS] = ACTIONS(4538), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_AMP_AMP] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4538), + [anon_sym_SEMI] = ACTIONS(4540), + [anon_sym___extension__] = ACTIONS(4538), + [anon_sym_typedef] = ACTIONS(4538), + [anon_sym_virtual] = ACTIONS(4538), + [anon_sym_extern] = ACTIONS(4538), + [anon_sym___attribute__] = ACTIONS(4538), + [anon_sym___attribute] = ACTIONS(4538), + [anon_sym_using] = ACTIONS(4538), + [anon_sym_COLON_COLON] = ACTIONS(4540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4540), + [anon_sym___declspec] = ACTIONS(4538), + [anon_sym___based] = ACTIONS(4538), + [anon_sym___cdecl] = ACTIONS(4538), + [anon_sym___clrcall] = ACTIONS(4538), + [anon_sym___stdcall] = ACTIONS(4538), + [anon_sym___fastcall] = ACTIONS(4538), + [anon_sym___thiscall] = ACTIONS(4538), + [anon_sym___vectorcall] = ACTIONS(4538), + [anon_sym_LBRACE] = ACTIONS(4540), + [anon_sym_signed] = ACTIONS(4538), + [anon_sym_unsigned] = ACTIONS(4538), + [anon_sym_long] = ACTIONS(4538), + [anon_sym_short] = ACTIONS(4538), + [anon_sym_LBRACK] = ACTIONS(4538), + [anon_sym_static] = ACTIONS(4538), + [anon_sym_register] = ACTIONS(4538), + [anon_sym_inline] = ACTIONS(4538), + [anon_sym___inline] = ACTIONS(4538), + [anon_sym___inline__] = ACTIONS(4538), + [anon_sym___forceinline] = ACTIONS(4538), + [anon_sym_thread_local] = ACTIONS(4538), + [anon_sym___thread] = ACTIONS(4538), + [anon_sym_const] = ACTIONS(4538), + [anon_sym_constexpr] = ACTIONS(4538), + [anon_sym_volatile] = ACTIONS(4538), + [anon_sym_restrict] = ACTIONS(4538), + [anon_sym___restrict__] = ACTIONS(4538), + [anon_sym__Atomic] = ACTIONS(4538), + [anon_sym__Noreturn] = ACTIONS(4538), + [anon_sym_noreturn] = ACTIONS(4538), + [anon_sym__Nonnull] = ACTIONS(4538), + [anon_sym_mutable] = ACTIONS(4538), + [anon_sym_constinit] = ACTIONS(4538), + [anon_sym_consteval] = ACTIONS(4538), + [anon_sym_alignas] = ACTIONS(4538), + [anon_sym__Alignas] = ACTIONS(4538), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_enum] = ACTIONS(4538), + [anon_sym_class] = ACTIONS(4538), + [anon_sym_struct] = ACTIONS(4538), + [anon_sym_union] = ACTIONS(4538), + [anon_sym_if] = ACTIONS(4538), + [anon_sym_switch] = ACTIONS(4538), + [anon_sym_case] = ACTIONS(4538), + [anon_sym_default] = ACTIONS(4538), + [anon_sym_while] = ACTIONS(4538), + [anon_sym_do] = ACTIONS(4538), + [anon_sym_for] = ACTIONS(4538), + [anon_sym_return] = ACTIONS(4538), + [anon_sym_break] = ACTIONS(4538), + [anon_sym_continue] = ACTIONS(4538), + [anon_sym_goto] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(4538), + [anon_sym_compl] = ACTIONS(4538), + [anon_sym_DASH_DASH] = ACTIONS(4540), + [anon_sym_PLUS_PLUS] = ACTIONS(4540), + [anon_sym_sizeof] = ACTIONS(4538), + [anon_sym___alignof__] = ACTIONS(4538), + [anon_sym___alignof] = ACTIONS(4538), + [anon_sym__alignof] = ACTIONS(4538), + [anon_sym_alignof] = ACTIONS(4538), + [anon_sym__Alignof] = ACTIONS(4538), + [anon_sym_offsetof] = ACTIONS(4538), + [anon_sym__Generic] = ACTIONS(4538), + [anon_sym_typename] = ACTIONS(4538), + [anon_sym_asm] = ACTIONS(4538), + [anon_sym___asm__] = ACTIONS(4538), + [anon_sym___asm] = ACTIONS(4538), + [sym_number_literal] = ACTIONS(4540), + [anon_sym_L_SQUOTE] = ACTIONS(4540), + [anon_sym_u_SQUOTE] = ACTIONS(4540), + [anon_sym_U_SQUOTE] = ACTIONS(4540), + [anon_sym_u8_SQUOTE] = ACTIONS(4540), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_L_DQUOTE] = ACTIONS(4540), + [anon_sym_u_DQUOTE] = ACTIONS(4540), + [anon_sym_U_DQUOTE] = ACTIONS(4540), + [anon_sym_u8_DQUOTE] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [sym_true] = ACTIONS(4538), + [sym_false] = ACTIONS(4538), + [anon_sym_NULL] = ACTIONS(4538), + [anon_sym_nullptr] = ACTIONS(4538), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4538), + [anon_sym_decltype] = ACTIONS(4538), + [anon_sym_explicit] = ACTIONS(4538), + [anon_sym_export] = ACTIONS(4538), + [anon_sym_module] = ACTIONS(4538), + [anon_sym_import] = ACTIONS(4538), + [anon_sym_template] = ACTIONS(4538), + [anon_sym_operator] = ACTIONS(4538), + [anon_sym_try] = ACTIONS(4538), + [anon_sym_delete] = ACTIONS(4538), + [anon_sym_throw] = ACTIONS(4538), + [anon_sym_namespace] = ACTIONS(4538), + [anon_sym_static_assert] = ACTIONS(4538), + [anon_sym_concept] = ACTIONS(4538), + [anon_sym_co_return] = ACTIONS(4538), + [anon_sym_co_yield] = ACTIONS(4538), + [anon_sym_R_DQUOTE] = ACTIONS(4540), + [anon_sym_LR_DQUOTE] = ACTIONS(4540), + [anon_sym_uR_DQUOTE] = ACTIONS(4540), + [anon_sym_UR_DQUOTE] = ACTIONS(4540), + [anon_sym_u8R_DQUOTE] = ACTIONS(4540), + [anon_sym_co_await] = ACTIONS(4538), + [anon_sym_new] = ACTIONS(4538), + [anon_sym_requires] = ACTIONS(4538), + [anon_sym_CARET_CARET] = ACTIONS(4540), + [anon_sym_LBRACK_COLON] = ACTIONS(4540), + [sym_this] = ACTIONS(4538), + }, + [STATE(880)] = { + [ts_builtin_sym_end] = ACTIONS(4098), + [sym_identifier] = ACTIONS(4096), + [aux_sym_preproc_include_token1] = ACTIONS(4096), + [aux_sym_preproc_def_token1] = ACTIONS(4096), + [aux_sym_preproc_if_token1] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), + [sym_preproc_directive] = ACTIONS(4096), + [anon_sym_LPAREN2] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(4098), + [anon_sym_TILDE] = ACTIONS(4098), + [anon_sym_DASH] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4096), + [anon_sym_STAR] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4096), + [anon_sym_SEMI] = ACTIONS(4098), + [anon_sym___extension__] = ACTIONS(4096), + [anon_sym_typedef] = ACTIONS(4096), + [anon_sym_virtual] = ACTIONS(4096), + [anon_sym_extern] = ACTIONS(4096), + [anon_sym___attribute__] = ACTIONS(4096), + [anon_sym___attribute] = ACTIONS(4096), + [anon_sym_using] = ACTIONS(4096), + [anon_sym_COLON_COLON] = ACTIONS(4098), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4098), + [anon_sym___declspec] = ACTIONS(4096), + [anon_sym___based] = ACTIONS(4096), + [anon_sym___cdecl] = ACTIONS(4096), + [anon_sym___clrcall] = ACTIONS(4096), + [anon_sym___stdcall] = ACTIONS(4096), + [anon_sym___fastcall] = ACTIONS(4096), + [anon_sym___thiscall] = ACTIONS(4096), + [anon_sym___vectorcall] = ACTIONS(4096), + [anon_sym_LBRACE] = ACTIONS(4098), + [anon_sym_signed] = ACTIONS(4096), + [anon_sym_unsigned] = ACTIONS(4096), + [anon_sym_long] = ACTIONS(4096), + [anon_sym_short] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_static] = ACTIONS(4096), + [anon_sym_register] = ACTIONS(4096), + [anon_sym_inline] = ACTIONS(4096), + [anon_sym___inline] = ACTIONS(4096), + [anon_sym___inline__] = ACTIONS(4096), + [anon_sym___forceinline] = ACTIONS(4096), + [anon_sym_thread_local] = ACTIONS(4096), + [anon_sym___thread] = ACTIONS(4096), + [anon_sym_const] = ACTIONS(4096), + [anon_sym_constexpr] = ACTIONS(4096), + [anon_sym_volatile] = ACTIONS(4096), + [anon_sym_restrict] = ACTIONS(4096), + [anon_sym___restrict__] = ACTIONS(4096), + [anon_sym__Atomic] = ACTIONS(4096), + [anon_sym__Noreturn] = ACTIONS(4096), + [anon_sym_noreturn] = ACTIONS(4096), + [anon_sym__Nonnull] = ACTIONS(4096), + [anon_sym_mutable] = ACTIONS(4096), + [anon_sym_constinit] = ACTIONS(4096), + [anon_sym_consteval] = ACTIONS(4096), + [anon_sym_alignas] = ACTIONS(4096), + [anon_sym__Alignas] = ACTIONS(4096), + [sym_primitive_type] = ACTIONS(4096), + [anon_sym_enum] = ACTIONS(4096), + [anon_sym_class] = ACTIONS(4096), + [anon_sym_struct] = ACTIONS(4096), + [anon_sym_union] = ACTIONS(4096), + [anon_sym_if] = ACTIONS(4096), + [anon_sym_switch] = ACTIONS(4096), + [anon_sym_case] = ACTIONS(4096), + [anon_sym_default] = ACTIONS(4096), + [anon_sym_while] = ACTIONS(4096), + [anon_sym_do] = ACTIONS(4096), + [anon_sym_for] = ACTIONS(4096), + [anon_sym_return] = ACTIONS(4096), + [anon_sym_break] = ACTIONS(4096), + [anon_sym_continue] = ACTIONS(4096), + [anon_sym_goto] = ACTIONS(4096), + [anon_sym_not] = ACTIONS(4096), + [anon_sym_compl] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4098), + [anon_sym_PLUS_PLUS] = ACTIONS(4098), + [anon_sym_sizeof] = ACTIONS(4096), + [anon_sym___alignof__] = ACTIONS(4096), + [anon_sym___alignof] = ACTIONS(4096), + [anon_sym__alignof] = ACTIONS(4096), + [anon_sym_alignof] = ACTIONS(4096), + [anon_sym__Alignof] = ACTIONS(4096), + [anon_sym_offsetof] = ACTIONS(4096), + [anon_sym__Generic] = ACTIONS(4096), + [anon_sym_typename] = ACTIONS(4096), + [anon_sym_asm] = ACTIONS(4096), + [anon_sym___asm__] = ACTIONS(4096), + [anon_sym___asm] = ACTIONS(4096), + [sym_number_literal] = ACTIONS(4098), + [anon_sym_L_SQUOTE] = ACTIONS(4098), + [anon_sym_u_SQUOTE] = ACTIONS(4098), + [anon_sym_U_SQUOTE] = ACTIONS(4098), + [anon_sym_u8_SQUOTE] = ACTIONS(4098), + [anon_sym_SQUOTE] = ACTIONS(4098), + [anon_sym_L_DQUOTE] = ACTIONS(4098), + [anon_sym_u_DQUOTE] = ACTIONS(4098), + [anon_sym_U_DQUOTE] = ACTIONS(4098), + [anon_sym_u8_DQUOTE] = ACTIONS(4098), + [anon_sym_DQUOTE] = ACTIONS(4098), + [sym_true] = ACTIONS(4096), + [sym_false] = ACTIONS(4096), + [anon_sym_NULL] = ACTIONS(4096), + [anon_sym_nullptr] = ACTIONS(4096), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4096), + [anon_sym_decltype] = ACTIONS(4096), + [anon_sym_explicit] = ACTIONS(4096), + [anon_sym_export] = ACTIONS(4096), + [anon_sym_module] = ACTIONS(4096), + [anon_sym_import] = ACTIONS(4096), + [anon_sym_template] = ACTIONS(4096), + [anon_sym_operator] = ACTIONS(4096), + [anon_sym_try] = ACTIONS(4096), + [anon_sym_delete] = ACTIONS(4096), + [anon_sym_throw] = ACTIONS(4096), + [anon_sym_namespace] = ACTIONS(4096), + [anon_sym_static_assert] = ACTIONS(4096), + [anon_sym_concept] = ACTIONS(4096), + [anon_sym_co_return] = ACTIONS(4096), + [anon_sym_co_yield] = ACTIONS(4096), + [anon_sym_R_DQUOTE] = ACTIONS(4098), + [anon_sym_LR_DQUOTE] = ACTIONS(4098), + [anon_sym_uR_DQUOTE] = ACTIONS(4098), + [anon_sym_UR_DQUOTE] = ACTIONS(4098), + [anon_sym_u8R_DQUOTE] = ACTIONS(4098), + [anon_sym_co_await] = ACTIONS(4096), + [anon_sym_new] = ACTIONS(4096), + [anon_sym_requires] = ACTIONS(4096), + [anon_sym_CARET_CARET] = ACTIONS(4098), + [anon_sym_LBRACK_COLON] = ACTIONS(4098), + [sym_this] = ACTIONS(4096), + }, + [STATE(881)] = { + [ts_builtin_sym_end] = ACTIONS(3956), + [sym_identifier] = ACTIONS(3954), + [aux_sym_preproc_include_token1] = ACTIONS(3954), + [aux_sym_preproc_def_token1] = ACTIONS(3954), + [aux_sym_preproc_if_token1] = ACTIONS(3954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3954), + [sym_preproc_directive] = ACTIONS(3954), + [anon_sym_LPAREN2] = ACTIONS(3956), + [anon_sym_BANG] = ACTIONS(3956), + [anon_sym_TILDE] = ACTIONS(3956), + [anon_sym_DASH] = ACTIONS(3954), + [anon_sym_PLUS] = ACTIONS(3954), + [anon_sym_STAR] = ACTIONS(3956), + [anon_sym_AMP_AMP] = ACTIONS(3956), + [anon_sym_AMP] = ACTIONS(3954), + [anon_sym_SEMI] = ACTIONS(3956), + [anon_sym___extension__] = ACTIONS(3954), + [anon_sym_typedef] = ACTIONS(3954), + [anon_sym_virtual] = ACTIONS(3954), + [anon_sym_extern] = ACTIONS(3954), + [anon_sym___attribute__] = ACTIONS(3954), + [anon_sym___attribute] = ACTIONS(3954), + [anon_sym_using] = ACTIONS(3954), + [anon_sym_COLON_COLON] = ACTIONS(3956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3956), + [anon_sym___declspec] = ACTIONS(3954), + [anon_sym___based] = ACTIONS(3954), + [anon_sym___cdecl] = ACTIONS(3954), + [anon_sym___clrcall] = ACTIONS(3954), + [anon_sym___stdcall] = ACTIONS(3954), + [anon_sym___fastcall] = ACTIONS(3954), + [anon_sym___thiscall] = ACTIONS(3954), + [anon_sym___vectorcall] = ACTIONS(3954), + [anon_sym_LBRACE] = ACTIONS(3956), + [anon_sym_signed] = ACTIONS(3954), + [anon_sym_unsigned] = ACTIONS(3954), + [anon_sym_long] = ACTIONS(3954), + [anon_sym_short] = ACTIONS(3954), + [anon_sym_LBRACK] = ACTIONS(3954), + [anon_sym_static] = ACTIONS(3954), + [anon_sym_register] = ACTIONS(3954), + [anon_sym_inline] = ACTIONS(3954), + [anon_sym___inline] = ACTIONS(3954), + [anon_sym___inline__] = ACTIONS(3954), + [anon_sym___forceinline] = ACTIONS(3954), + [anon_sym_thread_local] = ACTIONS(3954), + [anon_sym___thread] = ACTIONS(3954), + [anon_sym_const] = ACTIONS(3954), + [anon_sym_constexpr] = ACTIONS(3954), + [anon_sym_volatile] = ACTIONS(3954), + [anon_sym_restrict] = ACTIONS(3954), + [anon_sym___restrict__] = ACTIONS(3954), + [anon_sym__Atomic] = ACTIONS(3954), + [anon_sym__Noreturn] = ACTIONS(3954), + [anon_sym_noreturn] = ACTIONS(3954), + [anon_sym__Nonnull] = ACTIONS(3954), + [anon_sym_mutable] = ACTIONS(3954), + [anon_sym_constinit] = ACTIONS(3954), + [anon_sym_consteval] = ACTIONS(3954), + [anon_sym_alignas] = ACTIONS(3954), + [anon_sym__Alignas] = ACTIONS(3954), + [sym_primitive_type] = ACTIONS(3954), + [anon_sym_enum] = ACTIONS(3954), + [anon_sym_class] = ACTIONS(3954), + [anon_sym_struct] = ACTIONS(3954), + [anon_sym_union] = ACTIONS(3954), + [anon_sym_if] = ACTIONS(3954), + [anon_sym_switch] = ACTIONS(3954), + [anon_sym_case] = ACTIONS(3954), + [anon_sym_default] = ACTIONS(3954), + [anon_sym_while] = ACTIONS(3954), + [anon_sym_do] = ACTIONS(3954), + [anon_sym_for] = ACTIONS(3954), + [anon_sym_return] = ACTIONS(3954), + [anon_sym_break] = ACTIONS(3954), + [anon_sym_continue] = ACTIONS(3954), + [anon_sym_goto] = ACTIONS(3954), + [anon_sym_not] = ACTIONS(3954), + [anon_sym_compl] = ACTIONS(3954), + [anon_sym_DASH_DASH] = ACTIONS(3956), + [anon_sym_PLUS_PLUS] = ACTIONS(3956), + [anon_sym_sizeof] = ACTIONS(3954), + [anon_sym___alignof__] = ACTIONS(3954), + [anon_sym___alignof] = ACTIONS(3954), + [anon_sym__alignof] = ACTIONS(3954), + [anon_sym_alignof] = ACTIONS(3954), + [anon_sym__Alignof] = ACTIONS(3954), + [anon_sym_offsetof] = ACTIONS(3954), + [anon_sym__Generic] = ACTIONS(3954), + [anon_sym_typename] = ACTIONS(3954), + [anon_sym_asm] = ACTIONS(3954), + [anon_sym___asm__] = ACTIONS(3954), + [anon_sym___asm] = ACTIONS(3954), + [sym_number_literal] = ACTIONS(3956), + [anon_sym_L_SQUOTE] = ACTIONS(3956), + [anon_sym_u_SQUOTE] = ACTIONS(3956), + [anon_sym_U_SQUOTE] = ACTIONS(3956), + [anon_sym_u8_SQUOTE] = ACTIONS(3956), + [anon_sym_SQUOTE] = ACTIONS(3956), + [anon_sym_L_DQUOTE] = ACTIONS(3956), + [anon_sym_u_DQUOTE] = ACTIONS(3956), + [anon_sym_U_DQUOTE] = ACTIONS(3956), + [anon_sym_u8_DQUOTE] = ACTIONS(3956), + [anon_sym_DQUOTE] = ACTIONS(3956), + [sym_true] = ACTIONS(3954), + [sym_false] = ACTIONS(3954), + [anon_sym_NULL] = ACTIONS(3954), + [anon_sym_nullptr] = ACTIONS(3954), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3954), + [anon_sym_decltype] = ACTIONS(3954), + [anon_sym_explicit] = ACTIONS(3954), + [anon_sym_export] = ACTIONS(3954), + [anon_sym_module] = ACTIONS(3954), + [anon_sym_import] = ACTIONS(3954), + [anon_sym_template] = ACTIONS(3954), + [anon_sym_operator] = ACTIONS(3954), + [anon_sym_try] = ACTIONS(3954), + [anon_sym_delete] = ACTIONS(3954), + [anon_sym_throw] = ACTIONS(3954), + [anon_sym_namespace] = ACTIONS(3954), + [anon_sym_static_assert] = ACTIONS(3954), + [anon_sym_concept] = ACTIONS(3954), + [anon_sym_co_return] = ACTIONS(3954), + [anon_sym_co_yield] = ACTIONS(3954), + [anon_sym_R_DQUOTE] = ACTIONS(3956), + [anon_sym_LR_DQUOTE] = ACTIONS(3956), + [anon_sym_uR_DQUOTE] = ACTIONS(3956), + [anon_sym_UR_DQUOTE] = ACTIONS(3956), + [anon_sym_u8R_DQUOTE] = ACTIONS(3956), + [anon_sym_co_await] = ACTIONS(3954), + [anon_sym_new] = ACTIONS(3954), + [anon_sym_requires] = ACTIONS(3954), + [anon_sym_CARET_CARET] = ACTIONS(3956), + [anon_sym_LBRACK_COLON] = ACTIONS(3956), + [sym_this] = ACTIONS(3954), + }, + [STATE(882)] = { + [ts_builtin_sym_end] = ACTIONS(3960), + [sym_identifier] = ACTIONS(3958), + [aux_sym_preproc_include_token1] = ACTIONS(3958), + [aux_sym_preproc_def_token1] = ACTIONS(3958), + [aux_sym_preproc_if_token1] = ACTIONS(3958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3958), + [sym_preproc_directive] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3960), + [anon_sym_AMP] = ACTIONS(3958), + [anon_sym_SEMI] = ACTIONS(3960), + [anon_sym___extension__] = ACTIONS(3958), + [anon_sym_typedef] = ACTIONS(3958), + [anon_sym_virtual] = ACTIONS(3958), + [anon_sym_extern] = ACTIONS(3958), + [anon_sym___attribute__] = ACTIONS(3958), + [anon_sym___attribute] = ACTIONS(3958), + [anon_sym_using] = ACTIONS(3958), + [anon_sym_COLON_COLON] = ACTIONS(3960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3960), + [anon_sym___declspec] = ACTIONS(3958), + [anon_sym___based] = ACTIONS(3958), + [anon_sym___cdecl] = ACTIONS(3958), + [anon_sym___clrcall] = ACTIONS(3958), + [anon_sym___stdcall] = ACTIONS(3958), + [anon_sym___fastcall] = ACTIONS(3958), + [anon_sym___thiscall] = ACTIONS(3958), + [anon_sym___vectorcall] = ACTIONS(3958), + [anon_sym_LBRACE] = ACTIONS(3960), + [anon_sym_signed] = ACTIONS(3958), + [anon_sym_unsigned] = ACTIONS(3958), + [anon_sym_long] = ACTIONS(3958), + [anon_sym_short] = ACTIONS(3958), + [anon_sym_LBRACK] = ACTIONS(3958), + [anon_sym_static] = ACTIONS(3958), + [anon_sym_register] = ACTIONS(3958), + [anon_sym_inline] = ACTIONS(3958), + [anon_sym___inline] = ACTIONS(3958), + [anon_sym___inline__] = ACTIONS(3958), + [anon_sym___forceinline] = ACTIONS(3958), + [anon_sym_thread_local] = ACTIONS(3958), + [anon_sym___thread] = ACTIONS(3958), + [anon_sym_const] = ACTIONS(3958), + [anon_sym_constexpr] = ACTIONS(3958), + [anon_sym_volatile] = ACTIONS(3958), + [anon_sym_restrict] = ACTIONS(3958), + [anon_sym___restrict__] = ACTIONS(3958), + [anon_sym__Atomic] = ACTIONS(3958), + [anon_sym__Noreturn] = ACTIONS(3958), + [anon_sym_noreturn] = ACTIONS(3958), + [anon_sym__Nonnull] = ACTIONS(3958), + [anon_sym_mutable] = ACTIONS(3958), + [anon_sym_constinit] = ACTIONS(3958), + [anon_sym_consteval] = ACTIONS(3958), + [anon_sym_alignas] = ACTIONS(3958), + [anon_sym__Alignas] = ACTIONS(3958), + [sym_primitive_type] = ACTIONS(3958), + [anon_sym_enum] = ACTIONS(3958), + [anon_sym_class] = ACTIONS(3958), + [anon_sym_struct] = ACTIONS(3958), + [anon_sym_union] = ACTIONS(3958), + [anon_sym_if] = ACTIONS(3958), + [anon_sym_switch] = ACTIONS(3958), + [anon_sym_case] = ACTIONS(3958), + [anon_sym_default] = ACTIONS(3958), + [anon_sym_while] = ACTIONS(3958), + [anon_sym_do] = ACTIONS(3958), + [anon_sym_for] = ACTIONS(3958), + [anon_sym_return] = ACTIONS(3958), + [anon_sym_break] = ACTIONS(3958), + [anon_sym_continue] = ACTIONS(3958), + [anon_sym_goto] = ACTIONS(3958), + [anon_sym_not] = ACTIONS(3958), + [anon_sym_compl] = ACTIONS(3958), + [anon_sym_DASH_DASH] = ACTIONS(3960), + [anon_sym_PLUS_PLUS] = ACTIONS(3960), + [anon_sym_sizeof] = ACTIONS(3958), + [anon_sym___alignof__] = ACTIONS(3958), + [anon_sym___alignof] = ACTIONS(3958), + [anon_sym__alignof] = ACTIONS(3958), + [anon_sym_alignof] = ACTIONS(3958), + [anon_sym__Alignof] = ACTIONS(3958), + [anon_sym_offsetof] = ACTIONS(3958), + [anon_sym__Generic] = ACTIONS(3958), + [anon_sym_typename] = ACTIONS(3958), + [anon_sym_asm] = ACTIONS(3958), + [anon_sym___asm__] = ACTIONS(3958), + [anon_sym___asm] = ACTIONS(3958), + [sym_number_literal] = ACTIONS(3960), + [anon_sym_L_SQUOTE] = ACTIONS(3960), + [anon_sym_u_SQUOTE] = ACTIONS(3960), + [anon_sym_U_SQUOTE] = ACTIONS(3960), + [anon_sym_u8_SQUOTE] = ACTIONS(3960), + [anon_sym_SQUOTE] = ACTIONS(3960), + [anon_sym_L_DQUOTE] = ACTIONS(3960), + [anon_sym_u_DQUOTE] = ACTIONS(3960), + [anon_sym_U_DQUOTE] = ACTIONS(3960), + [anon_sym_u8_DQUOTE] = ACTIONS(3960), + [anon_sym_DQUOTE] = ACTIONS(3960), + [sym_true] = ACTIONS(3958), + [sym_false] = ACTIONS(3958), + [anon_sym_NULL] = ACTIONS(3958), + [anon_sym_nullptr] = ACTIONS(3958), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3958), + [anon_sym_decltype] = ACTIONS(3958), + [anon_sym_explicit] = ACTIONS(3958), + [anon_sym_export] = ACTIONS(3958), + [anon_sym_module] = ACTIONS(3958), + [anon_sym_import] = ACTIONS(3958), + [anon_sym_template] = ACTIONS(3958), + [anon_sym_operator] = ACTIONS(3958), + [anon_sym_try] = ACTIONS(3958), + [anon_sym_delete] = ACTIONS(3958), + [anon_sym_throw] = ACTIONS(3958), + [anon_sym_namespace] = ACTIONS(3958), + [anon_sym_static_assert] = ACTIONS(3958), + [anon_sym_concept] = ACTIONS(3958), + [anon_sym_co_return] = ACTIONS(3958), + [anon_sym_co_yield] = ACTIONS(3958), + [anon_sym_R_DQUOTE] = ACTIONS(3960), + [anon_sym_LR_DQUOTE] = ACTIONS(3960), + [anon_sym_uR_DQUOTE] = ACTIONS(3960), + [anon_sym_UR_DQUOTE] = ACTIONS(3960), + [anon_sym_u8R_DQUOTE] = ACTIONS(3960), + [anon_sym_co_await] = ACTIONS(3958), + [anon_sym_new] = ACTIONS(3958), + [anon_sym_requires] = ACTIONS(3958), + [anon_sym_CARET_CARET] = ACTIONS(3960), + [anon_sym_LBRACK_COLON] = ACTIONS(3960), + [sym_this] = ACTIONS(3958), + }, + [STATE(883)] = { + [ts_builtin_sym_end] = ACTIONS(4102), + [sym_identifier] = ACTIONS(4100), + [aux_sym_preproc_include_token1] = ACTIONS(4100), + [aux_sym_preproc_def_token1] = ACTIONS(4100), + [aux_sym_preproc_if_token1] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), + [sym_preproc_directive] = ACTIONS(4100), + [anon_sym_LPAREN2] = ACTIONS(4102), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_TILDE] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4100), + [anon_sym_PLUS] = ACTIONS(4100), + [anon_sym_STAR] = ACTIONS(4102), + [anon_sym_AMP_AMP] = ACTIONS(4102), + [anon_sym_AMP] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym___extension__] = ACTIONS(4100), + [anon_sym_typedef] = ACTIONS(4100), + [anon_sym_virtual] = ACTIONS(4100), + [anon_sym_extern] = ACTIONS(4100), + [anon_sym___attribute__] = ACTIONS(4100), + [anon_sym___attribute] = ACTIONS(4100), + [anon_sym_using] = ACTIONS(4100), + [anon_sym_COLON_COLON] = ACTIONS(4102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4102), + [anon_sym___declspec] = ACTIONS(4100), + [anon_sym___based] = ACTIONS(4100), + [anon_sym___cdecl] = ACTIONS(4100), + [anon_sym___clrcall] = ACTIONS(4100), + [anon_sym___stdcall] = ACTIONS(4100), + [anon_sym___fastcall] = ACTIONS(4100), + [anon_sym___thiscall] = ACTIONS(4100), + [anon_sym___vectorcall] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4102), + [anon_sym_signed] = ACTIONS(4100), + [anon_sym_unsigned] = ACTIONS(4100), + [anon_sym_long] = ACTIONS(4100), + [anon_sym_short] = ACTIONS(4100), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_static] = ACTIONS(4100), + [anon_sym_register] = ACTIONS(4100), + [anon_sym_inline] = ACTIONS(4100), + [anon_sym___inline] = ACTIONS(4100), + [anon_sym___inline__] = ACTIONS(4100), + [anon_sym___forceinline] = ACTIONS(4100), + [anon_sym_thread_local] = ACTIONS(4100), + [anon_sym___thread] = ACTIONS(4100), + [anon_sym_const] = ACTIONS(4100), + [anon_sym_constexpr] = ACTIONS(4100), + [anon_sym_volatile] = ACTIONS(4100), + [anon_sym_restrict] = ACTIONS(4100), + [anon_sym___restrict__] = ACTIONS(4100), + [anon_sym__Atomic] = ACTIONS(4100), + [anon_sym__Noreturn] = ACTIONS(4100), + [anon_sym_noreturn] = ACTIONS(4100), + [anon_sym__Nonnull] = ACTIONS(4100), + [anon_sym_mutable] = ACTIONS(4100), + [anon_sym_constinit] = ACTIONS(4100), + [anon_sym_consteval] = ACTIONS(4100), + [anon_sym_alignas] = ACTIONS(4100), + [anon_sym__Alignas] = ACTIONS(4100), + [sym_primitive_type] = ACTIONS(4100), + [anon_sym_enum] = ACTIONS(4100), + [anon_sym_class] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(4100), + [anon_sym_union] = ACTIONS(4100), + [anon_sym_if] = ACTIONS(4100), + [anon_sym_switch] = ACTIONS(4100), + [anon_sym_case] = ACTIONS(4100), + [anon_sym_default] = ACTIONS(4100), + [anon_sym_while] = ACTIONS(4100), + [anon_sym_do] = ACTIONS(4100), + [anon_sym_for] = ACTIONS(4100), + [anon_sym_return] = ACTIONS(4100), + [anon_sym_break] = ACTIONS(4100), + [anon_sym_continue] = ACTIONS(4100), + [anon_sym_goto] = ACTIONS(4100), + [anon_sym_not] = ACTIONS(4100), + [anon_sym_compl] = ACTIONS(4100), + [anon_sym_DASH_DASH] = ACTIONS(4102), + [anon_sym_PLUS_PLUS] = ACTIONS(4102), + [anon_sym_sizeof] = ACTIONS(4100), + [anon_sym___alignof__] = ACTIONS(4100), + [anon_sym___alignof] = ACTIONS(4100), + [anon_sym__alignof] = ACTIONS(4100), + [anon_sym_alignof] = ACTIONS(4100), + [anon_sym__Alignof] = ACTIONS(4100), + [anon_sym_offsetof] = ACTIONS(4100), + [anon_sym__Generic] = ACTIONS(4100), + [anon_sym_typename] = ACTIONS(4100), + [anon_sym_asm] = ACTIONS(4100), + [anon_sym___asm__] = ACTIONS(4100), + [anon_sym___asm] = ACTIONS(4100), + [sym_number_literal] = ACTIONS(4102), + [anon_sym_L_SQUOTE] = ACTIONS(4102), + [anon_sym_u_SQUOTE] = ACTIONS(4102), + [anon_sym_U_SQUOTE] = ACTIONS(4102), + [anon_sym_u8_SQUOTE] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4102), + [anon_sym_L_DQUOTE] = ACTIONS(4102), + [anon_sym_u_DQUOTE] = ACTIONS(4102), + [anon_sym_U_DQUOTE] = ACTIONS(4102), + [anon_sym_u8_DQUOTE] = ACTIONS(4102), + [anon_sym_DQUOTE] = ACTIONS(4102), + [sym_true] = ACTIONS(4100), + [sym_false] = ACTIONS(4100), + [anon_sym_NULL] = ACTIONS(4100), + [anon_sym_nullptr] = ACTIONS(4100), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4100), + [anon_sym_decltype] = ACTIONS(4100), + [anon_sym_explicit] = ACTIONS(4100), + [anon_sym_export] = ACTIONS(4100), + [anon_sym_module] = ACTIONS(4100), + [anon_sym_import] = ACTIONS(4100), + [anon_sym_template] = ACTIONS(4100), + [anon_sym_operator] = ACTIONS(4100), + [anon_sym_try] = ACTIONS(4100), + [anon_sym_delete] = ACTIONS(4100), + [anon_sym_throw] = ACTIONS(4100), + [anon_sym_namespace] = ACTIONS(4100), + [anon_sym_static_assert] = ACTIONS(4100), + [anon_sym_concept] = ACTIONS(4100), + [anon_sym_co_return] = ACTIONS(4100), + [anon_sym_co_yield] = ACTIONS(4100), + [anon_sym_R_DQUOTE] = ACTIONS(4102), + [anon_sym_LR_DQUOTE] = ACTIONS(4102), + [anon_sym_uR_DQUOTE] = ACTIONS(4102), + [anon_sym_UR_DQUOTE] = ACTIONS(4102), + [anon_sym_u8R_DQUOTE] = ACTIONS(4102), + [anon_sym_co_await] = ACTIONS(4100), + [anon_sym_new] = ACTIONS(4100), + [anon_sym_requires] = ACTIONS(4100), + [anon_sym_CARET_CARET] = ACTIONS(4102), + [anon_sym_LBRACK_COLON] = ACTIONS(4102), + [sym_this] = ACTIONS(4100), + }, + [STATE(884)] = { + [sym_preproc_def] = STATE(884), + [sym_preproc_function_def] = STATE(884), + [sym_preproc_call] = STATE(884), + [sym_preproc_if_in_field_declaration_list] = STATE(884), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(884), + [sym_type_definition] = STATE(884), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8092), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(884), + [sym_field_declaration] = STATE(884), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(884), + [sym_operator_cast] = STATE(9211), + [sym_inline_method_definition] = STATE(884), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(884), + [sym_operator_cast_declaration] = STATE(884), + [sym_constructor_or_destructor_definition] = STATE(884), + [sym_constructor_or_destructor_declaration] = STATE(884), + [sym_friend_declaration] = STATE(884), + [sym_access_specifier] = STATE(11030), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(884), + [sym_alias_declaration] = STATE(884), + [sym_static_assert_declaration] = STATE(884), + [sym_consteval_block_declaration] = STATE(884), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9455), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(4542), + [aux_sym_preproc_def_token1] = ACTIONS(4718), + [aux_sym_preproc_if_token1] = ACTIONS(4721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4724), + [sym_preproc_directive] = ACTIONS(4727), + [anon_sym_LPAREN2] = ACTIONS(4559), + [anon_sym_TILDE] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4565), + [anon_sym_AMP_AMP] = ACTIONS(4568), + [anon_sym_AMP] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym___extension__] = ACTIONS(4733), + [anon_sym_typedef] = ACTIONS(4736), + [anon_sym_virtual] = ACTIONS(4583), + [anon_sym_extern] = ACTIONS(4586), + [anon_sym___attribute__] = ACTIONS(4589), + [anon_sym___attribute] = ACTIONS(4589), + [anon_sym_using] = ACTIONS(4739), + [anon_sym_COLON_COLON] = ACTIONS(4595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4598), + [anon_sym___declspec] = ACTIONS(4601), + [anon_sym___based] = ACTIONS(4604), + [anon_sym_RBRACE] = ACTIONS(4742), + [anon_sym_signed] = ACTIONS(4607), + [anon_sym_unsigned] = ACTIONS(4607), + [anon_sym_long] = ACTIONS(4607), + [anon_sym_short] = ACTIONS(4607), + [anon_sym_LBRACK] = ACTIONS(4610), + [anon_sym_static] = ACTIONS(4586), + [anon_sym_register] = ACTIONS(4586), + [anon_sym_inline] = ACTIONS(4586), + [anon_sym___inline] = ACTIONS(4586), + [anon_sym___inline__] = ACTIONS(4586), + [anon_sym___forceinline] = ACTIONS(4586), + [anon_sym_thread_local] = ACTIONS(4586), + [anon_sym___thread] = ACTIONS(4586), + [anon_sym_const] = ACTIONS(4613), + [anon_sym_constexpr] = ACTIONS(4744), + [anon_sym_volatile] = ACTIONS(4613), + [anon_sym_restrict] = ACTIONS(4613), + [anon_sym___restrict__] = ACTIONS(4613), + [anon_sym__Atomic] = ACTIONS(4613), + [anon_sym__Noreturn] = ACTIONS(4613), + [anon_sym_noreturn] = ACTIONS(4613), + [anon_sym__Nonnull] = ACTIONS(4613), + [anon_sym_mutable] = ACTIONS(4613), + [anon_sym_constinit] = ACTIONS(4613), + [anon_sym_consteval] = ACTIONS(4747), + [anon_sym_alignas] = ACTIONS(4622), + [anon_sym__Alignas] = ACTIONS(4622), + [sym_primitive_type] = ACTIONS(4625), + [anon_sym_enum] = ACTIONS(4628), + [anon_sym_class] = ACTIONS(4631), + [anon_sym_struct] = ACTIONS(4634), + [anon_sym_union] = ACTIONS(4637), + [anon_sym_typename] = ACTIONS(4640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4643), + [anon_sym_decltype] = ACTIONS(4646), + [anon_sym_explicit] = ACTIONS(4649), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_template] = ACTIONS(4750), + [anon_sym_operator] = ACTIONS(4658), + [anon_sym_friend] = ACTIONS(4753), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_static_assert] = ACTIONS(4756), + [anon_sym_LBRACK_COLON] = ACTIONS(4667), + }, + [STATE(885)] = { + [ts_builtin_sym_end] = ACTIONS(4536), + [sym_identifier] = ACTIONS(4534), + [aux_sym_preproc_include_token1] = ACTIONS(4534), + [aux_sym_preproc_def_token1] = ACTIONS(4534), + [aux_sym_preproc_if_token1] = ACTIONS(4534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4534), + [sym_preproc_directive] = ACTIONS(4534), + [anon_sym_LPAREN2] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_TILDE] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_AMP_AMP] = ACTIONS(4536), + [anon_sym_AMP] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4536), + [anon_sym___extension__] = ACTIONS(4534), + [anon_sym_typedef] = ACTIONS(4534), + [anon_sym_virtual] = ACTIONS(4534), + [anon_sym_extern] = ACTIONS(4534), + [anon_sym___attribute__] = ACTIONS(4534), + [anon_sym___attribute] = ACTIONS(4534), + [anon_sym_using] = ACTIONS(4534), + [anon_sym_COLON_COLON] = ACTIONS(4536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4536), + [anon_sym___declspec] = ACTIONS(4534), + [anon_sym___based] = ACTIONS(4534), + [anon_sym___cdecl] = ACTIONS(4534), + [anon_sym___clrcall] = ACTIONS(4534), + [anon_sym___stdcall] = ACTIONS(4534), + [anon_sym___fastcall] = ACTIONS(4534), + [anon_sym___thiscall] = ACTIONS(4534), + [anon_sym___vectorcall] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4536), + [anon_sym_signed] = ACTIONS(4534), + [anon_sym_unsigned] = ACTIONS(4534), + [anon_sym_long] = ACTIONS(4534), + [anon_sym_short] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_static] = ACTIONS(4534), + [anon_sym_register] = ACTIONS(4534), + [anon_sym_inline] = ACTIONS(4534), + [anon_sym___inline] = ACTIONS(4534), + [anon_sym___inline__] = ACTIONS(4534), + [anon_sym___forceinline] = ACTIONS(4534), + [anon_sym_thread_local] = ACTIONS(4534), + [anon_sym___thread] = ACTIONS(4534), + [anon_sym_const] = ACTIONS(4534), + [anon_sym_constexpr] = ACTIONS(4534), + [anon_sym_volatile] = ACTIONS(4534), + [anon_sym_restrict] = ACTIONS(4534), + [anon_sym___restrict__] = ACTIONS(4534), + [anon_sym__Atomic] = ACTIONS(4534), + [anon_sym__Noreturn] = ACTIONS(4534), + [anon_sym_noreturn] = ACTIONS(4534), + [anon_sym__Nonnull] = ACTIONS(4534), + [anon_sym_mutable] = ACTIONS(4534), + [anon_sym_constinit] = ACTIONS(4534), + [anon_sym_consteval] = ACTIONS(4534), + [anon_sym_alignas] = ACTIONS(4534), + [anon_sym__Alignas] = ACTIONS(4534), + [sym_primitive_type] = ACTIONS(4534), + [anon_sym_enum] = ACTIONS(4534), + [anon_sym_class] = ACTIONS(4534), + [anon_sym_struct] = ACTIONS(4534), + [anon_sym_union] = ACTIONS(4534), + [anon_sym_if] = ACTIONS(4534), + [anon_sym_switch] = ACTIONS(4534), + [anon_sym_case] = ACTIONS(4534), + [anon_sym_default] = ACTIONS(4534), + [anon_sym_while] = ACTIONS(4534), + [anon_sym_do] = ACTIONS(4534), + [anon_sym_for] = ACTIONS(4534), + [anon_sym_return] = ACTIONS(4534), + [anon_sym_break] = ACTIONS(4534), + [anon_sym_continue] = ACTIONS(4534), + [anon_sym_goto] = ACTIONS(4534), + [anon_sym_not] = ACTIONS(4534), + [anon_sym_compl] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4536), + [anon_sym_PLUS_PLUS] = ACTIONS(4536), + [anon_sym_sizeof] = ACTIONS(4534), + [anon_sym___alignof__] = ACTIONS(4534), + [anon_sym___alignof] = ACTIONS(4534), + [anon_sym__alignof] = ACTIONS(4534), + [anon_sym_alignof] = ACTIONS(4534), + [anon_sym__Alignof] = ACTIONS(4534), + [anon_sym_offsetof] = ACTIONS(4534), + [anon_sym__Generic] = ACTIONS(4534), + [anon_sym_typename] = ACTIONS(4534), + [anon_sym_asm] = ACTIONS(4534), + [anon_sym___asm__] = ACTIONS(4534), + [anon_sym___asm] = ACTIONS(4534), + [sym_number_literal] = ACTIONS(4536), + [anon_sym_L_SQUOTE] = ACTIONS(4536), + [anon_sym_u_SQUOTE] = ACTIONS(4536), + [anon_sym_U_SQUOTE] = ACTIONS(4536), + [anon_sym_u8_SQUOTE] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_L_DQUOTE] = ACTIONS(4536), + [anon_sym_u_DQUOTE] = ACTIONS(4536), + [anon_sym_U_DQUOTE] = ACTIONS(4536), + [anon_sym_u8_DQUOTE] = ACTIONS(4536), + [anon_sym_DQUOTE] = ACTIONS(4536), + [sym_true] = ACTIONS(4534), + [sym_false] = ACTIONS(4534), + [anon_sym_NULL] = ACTIONS(4534), + [anon_sym_nullptr] = ACTIONS(4534), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4534), + [anon_sym_decltype] = ACTIONS(4534), + [anon_sym_explicit] = ACTIONS(4534), + [anon_sym_export] = ACTIONS(4534), + [anon_sym_module] = ACTIONS(4534), + [anon_sym_import] = ACTIONS(4534), + [anon_sym_template] = ACTIONS(4534), + [anon_sym_operator] = ACTIONS(4534), + [anon_sym_try] = ACTIONS(4534), + [anon_sym_delete] = ACTIONS(4534), + [anon_sym_throw] = ACTIONS(4534), + [anon_sym_namespace] = ACTIONS(4534), + [anon_sym_static_assert] = ACTIONS(4534), + [anon_sym_concept] = ACTIONS(4534), + [anon_sym_co_return] = ACTIONS(4534), + [anon_sym_co_yield] = ACTIONS(4534), + [anon_sym_R_DQUOTE] = ACTIONS(4536), + [anon_sym_LR_DQUOTE] = ACTIONS(4536), + [anon_sym_uR_DQUOTE] = ACTIONS(4536), + [anon_sym_UR_DQUOTE] = ACTIONS(4536), + [anon_sym_u8R_DQUOTE] = ACTIONS(4536), + [anon_sym_co_await] = ACTIONS(4534), + [anon_sym_new] = ACTIONS(4534), + [anon_sym_requires] = ACTIONS(4534), + [anon_sym_CARET_CARET] = ACTIONS(4536), + [anon_sym_LBRACK_COLON] = ACTIONS(4536), + [sym_this] = ACTIONS(4534), + }, + [STATE(886)] = { + [sym_preproc_def] = STATE(895), + [sym_preproc_function_def] = STATE(895), + [sym_preproc_call] = STATE(895), + [sym_preproc_if_in_field_declaration_list] = STATE(895), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(895), + [sym_type_definition] = STATE(895), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8092), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(895), + [sym_field_declaration] = STATE(895), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(895), + [sym_operator_cast] = STATE(9211), + [sym_inline_method_definition] = STATE(895), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(895), + [sym_operator_cast_declaration] = STATE(895), + [sym_constructor_or_destructor_definition] = STATE(895), + [sym_constructor_or_destructor_declaration] = STATE(895), + [sym_friend_declaration] = STATE(895), + [sym_access_specifier] = STATE(11030), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(895), + [sym_alias_declaration] = STATE(895), + [sym_static_assert_declaration] = STATE(895), + [sym_consteval_block_declaration] = STATE(895), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(895), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9455), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(4686), + [aux_sym_preproc_if_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), + [sym_preproc_directive] = ACTIONS(4692), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(4759), + [anon_sym___extension__] = ACTIONS(4696), + [anon_sym_typedef] = ACTIONS(4698), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(5100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(4700), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_RBRACE] = ACTIONS(4761), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_LBRACK] = ACTIONS(3460), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -193549,7 +186126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(5118), + [anon_sym_constexpr] = ACTIONS(4704), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -193559,113 +186136,1238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4706), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5120), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(4708), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(5122), - [anon_sym_concept] = ACTIONS(347), - [anon_sym_requires] = ACTIONS(5106), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(4712), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(994)] = { - [sym_function_definition] = STATE(704), - [sym_declaration] = STATE(704), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6284), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4663), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2569), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8554), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4304), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__empty_declaration] = STATE(704), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2350), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(704), - [sym_operator_cast] = STATE(9060), - [sym__constructor_specifiers] = STATE(2350), - [sym_operator_cast_definition] = STATE(704), - [sym_operator_cast_declaration] = STATE(704), - [sym_constructor_or_destructor_definition] = STATE(704), - [sym_constructor_or_destructor_declaration] = STATE(704), - [sym_friend_declaration] = STATE(704), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_alias_declaration] = STATE(704), - [sym_concept_definition] = STATE(704), - [sym_requires_clause] = STATE(1006), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7652), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9060), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2350), - [sym_identifier] = ACTIONS(5096), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), + [STATE(887)] = { + [ts_builtin_sym_end] = ACTIONS(4118), + [sym_identifier] = ACTIONS(4116), + [aux_sym_preproc_include_token1] = ACTIONS(4116), + [aux_sym_preproc_def_token1] = ACTIONS(4116), + [aux_sym_preproc_if_token1] = ACTIONS(4116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4116), + [sym_preproc_directive] = ACTIONS(4116), + [anon_sym_LPAREN2] = ACTIONS(4118), + [anon_sym_BANG] = ACTIONS(4118), + [anon_sym_TILDE] = ACTIONS(4118), + [anon_sym_DASH] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4116), + [anon_sym_STAR] = ACTIONS(4118), + [anon_sym_AMP_AMP] = ACTIONS(4118), + [anon_sym_AMP] = ACTIONS(4116), + [anon_sym_SEMI] = ACTIONS(4118), + [anon_sym___extension__] = ACTIONS(4116), + [anon_sym_typedef] = ACTIONS(4116), + [anon_sym_virtual] = ACTIONS(4116), + [anon_sym_extern] = ACTIONS(4116), + [anon_sym___attribute__] = ACTIONS(4116), + [anon_sym___attribute] = ACTIONS(4116), + [anon_sym_using] = ACTIONS(4116), + [anon_sym_COLON_COLON] = ACTIONS(4118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4118), + [anon_sym___declspec] = ACTIONS(4116), + [anon_sym___based] = ACTIONS(4116), + [anon_sym___cdecl] = ACTIONS(4116), + [anon_sym___clrcall] = ACTIONS(4116), + [anon_sym___stdcall] = ACTIONS(4116), + [anon_sym___fastcall] = ACTIONS(4116), + [anon_sym___thiscall] = ACTIONS(4116), + [anon_sym___vectorcall] = ACTIONS(4116), + [anon_sym_LBRACE] = ACTIONS(4118), + [anon_sym_signed] = ACTIONS(4116), + [anon_sym_unsigned] = ACTIONS(4116), + [anon_sym_long] = ACTIONS(4116), + [anon_sym_short] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_static] = ACTIONS(4116), + [anon_sym_register] = ACTIONS(4116), + [anon_sym_inline] = ACTIONS(4116), + [anon_sym___inline] = ACTIONS(4116), + [anon_sym___inline__] = ACTIONS(4116), + [anon_sym___forceinline] = ACTIONS(4116), + [anon_sym_thread_local] = ACTIONS(4116), + [anon_sym___thread] = ACTIONS(4116), + [anon_sym_const] = ACTIONS(4116), + [anon_sym_constexpr] = ACTIONS(4116), + [anon_sym_volatile] = ACTIONS(4116), + [anon_sym_restrict] = ACTIONS(4116), + [anon_sym___restrict__] = ACTIONS(4116), + [anon_sym__Atomic] = ACTIONS(4116), + [anon_sym__Noreturn] = ACTIONS(4116), + [anon_sym_noreturn] = ACTIONS(4116), + [anon_sym__Nonnull] = ACTIONS(4116), + [anon_sym_mutable] = ACTIONS(4116), + [anon_sym_constinit] = ACTIONS(4116), + [anon_sym_consteval] = ACTIONS(4116), + [anon_sym_alignas] = ACTIONS(4116), + [anon_sym__Alignas] = ACTIONS(4116), + [sym_primitive_type] = ACTIONS(4116), + [anon_sym_enum] = ACTIONS(4116), + [anon_sym_class] = ACTIONS(4116), + [anon_sym_struct] = ACTIONS(4116), + [anon_sym_union] = ACTIONS(4116), + [anon_sym_if] = ACTIONS(4116), + [anon_sym_switch] = ACTIONS(4116), + [anon_sym_case] = ACTIONS(4116), + [anon_sym_default] = ACTIONS(4116), + [anon_sym_while] = ACTIONS(4116), + [anon_sym_do] = ACTIONS(4116), + [anon_sym_for] = ACTIONS(4116), + [anon_sym_return] = ACTIONS(4116), + [anon_sym_break] = ACTIONS(4116), + [anon_sym_continue] = ACTIONS(4116), + [anon_sym_goto] = ACTIONS(4116), + [anon_sym_not] = ACTIONS(4116), + [anon_sym_compl] = ACTIONS(4116), + [anon_sym_DASH_DASH] = ACTIONS(4118), + [anon_sym_PLUS_PLUS] = ACTIONS(4118), + [anon_sym_sizeof] = ACTIONS(4116), + [anon_sym___alignof__] = ACTIONS(4116), + [anon_sym___alignof] = ACTIONS(4116), + [anon_sym__alignof] = ACTIONS(4116), + [anon_sym_alignof] = ACTIONS(4116), + [anon_sym__Alignof] = ACTIONS(4116), + [anon_sym_offsetof] = ACTIONS(4116), + [anon_sym__Generic] = ACTIONS(4116), + [anon_sym_typename] = ACTIONS(4116), + [anon_sym_asm] = ACTIONS(4116), + [anon_sym___asm__] = ACTIONS(4116), + [anon_sym___asm] = ACTIONS(4116), + [sym_number_literal] = ACTIONS(4118), + [anon_sym_L_SQUOTE] = ACTIONS(4118), + [anon_sym_u_SQUOTE] = ACTIONS(4118), + [anon_sym_U_SQUOTE] = ACTIONS(4118), + [anon_sym_u8_SQUOTE] = ACTIONS(4118), + [anon_sym_SQUOTE] = ACTIONS(4118), + [anon_sym_L_DQUOTE] = ACTIONS(4118), + [anon_sym_u_DQUOTE] = ACTIONS(4118), + [anon_sym_U_DQUOTE] = ACTIONS(4118), + [anon_sym_u8_DQUOTE] = ACTIONS(4118), + [anon_sym_DQUOTE] = ACTIONS(4118), + [sym_true] = ACTIONS(4116), + [sym_false] = ACTIONS(4116), + [anon_sym_NULL] = ACTIONS(4116), + [anon_sym_nullptr] = ACTIONS(4116), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4116), + [anon_sym_decltype] = ACTIONS(4116), + [anon_sym_explicit] = ACTIONS(4116), + [anon_sym_export] = ACTIONS(4116), + [anon_sym_module] = ACTIONS(4116), + [anon_sym_import] = ACTIONS(4116), + [anon_sym_template] = ACTIONS(4116), + [anon_sym_operator] = ACTIONS(4116), + [anon_sym_try] = ACTIONS(4116), + [anon_sym_delete] = ACTIONS(4116), + [anon_sym_throw] = ACTIONS(4116), + [anon_sym_namespace] = ACTIONS(4116), + [anon_sym_static_assert] = ACTIONS(4116), + [anon_sym_concept] = ACTIONS(4116), + [anon_sym_co_return] = ACTIONS(4116), + [anon_sym_co_yield] = ACTIONS(4116), + [anon_sym_R_DQUOTE] = ACTIONS(4118), + [anon_sym_LR_DQUOTE] = ACTIONS(4118), + [anon_sym_uR_DQUOTE] = ACTIONS(4118), + [anon_sym_UR_DQUOTE] = ACTIONS(4118), + [anon_sym_u8R_DQUOTE] = ACTIONS(4118), + [anon_sym_co_await] = ACTIONS(4116), + [anon_sym_new] = ACTIONS(4116), + [anon_sym_requires] = ACTIONS(4116), + [anon_sym_CARET_CARET] = ACTIONS(4118), + [anon_sym_LBRACK_COLON] = ACTIONS(4118), + [sym_this] = ACTIONS(4116), + }, + [STATE(888)] = { + [ts_builtin_sym_end] = ACTIONS(4288), + [sym_identifier] = ACTIONS(4286), + [aux_sym_preproc_include_token1] = ACTIONS(4286), + [aux_sym_preproc_def_token1] = ACTIONS(4286), + [aux_sym_preproc_if_token1] = ACTIONS(4286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4286), + [sym_preproc_directive] = ACTIONS(4286), + [anon_sym_LPAREN2] = ACTIONS(4288), + [anon_sym_BANG] = ACTIONS(4288), + [anon_sym_TILDE] = ACTIONS(4288), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(4286), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym___extension__] = ACTIONS(4286), + [anon_sym_typedef] = ACTIONS(4286), + [anon_sym_virtual] = ACTIONS(4286), + [anon_sym_extern] = ACTIONS(4286), + [anon_sym___attribute__] = ACTIONS(4286), + [anon_sym___attribute] = ACTIONS(4286), + [anon_sym_using] = ACTIONS(4286), + [anon_sym_COLON_COLON] = ACTIONS(4288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4288), + [anon_sym___declspec] = ACTIONS(4286), + [anon_sym___based] = ACTIONS(4286), + [anon_sym___cdecl] = ACTIONS(4286), + [anon_sym___clrcall] = ACTIONS(4286), + [anon_sym___stdcall] = ACTIONS(4286), + [anon_sym___fastcall] = ACTIONS(4286), + [anon_sym___thiscall] = ACTIONS(4286), + [anon_sym___vectorcall] = ACTIONS(4286), + [anon_sym_LBRACE] = ACTIONS(4288), + [anon_sym_signed] = ACTIONS(4286), + [anon_sym_unsigned] = ACTIONS(4286), + [anon_sym_long] = ACTIONS(4286), + [anon_sym_short] = ACTIONS(4286), + [anon_sym_LBRACK] = ACTIONS(4286), + [anon_sym_static] = ACTIONS(4286), + [anon_sym_register] = ACTIONS(4286), + [anon_sym_inline] = ACTIONS(4286), + [anon_sym___inline] = ACTIONS(4286), + [anon_sym___inline__] = ACTIONS(4286), + [anon_sym___forceinline] = ACTIONS(4286), + [anon_sym_thread_local] = ACTIONS(4286), + [anon_sym___thread] = ACTIONS(4286), + [anon_sym_const] = ACTIONS(4286), + [anon_sym_constexpr] = ACTIONS(4286), + [anon_sym_volatile] = ACTIONS(4286), + [anon_sym_restrict] = ACTIONS(4286), + [anon_sym___restrict__] = ACTIONS(4286), + [anon_sym__Atomic] = ACTIONS(4286), + [anon_sym__Noreturn] = ACTIONS(4286), + [anon_sym_noreturn] = ACTIONS(4286), + [anon_sym__Nonnull] = ACTIONS(4286), + [anon_sym_mutable] = ACTIONS(4286), + [anon_sym_constinit] = ACTIONS(4286), + [anon_sym_consteval] = ACTIONS(4286), + [anon_sym_alignas] = ACTIONS(4286), + [anon_sym__Alignas] = ACTIONS(4286), + [sym_primitive_type] = ACTIONS(4286), + [anon_sym_enum] = ACTIONS(4286), + [anon_sym_class] = ACTIONS(4286), + [anon_sym_struct] = ACTIONS(4286), + [anon_sym_union] = ACTIONS(4286), + [anon_sym_if] = ACTIONS(4286), + [anon_sym_switch] = ACTIONS(4286), + [anon_sym_case] = ACTIONS(4286), + [anon_sym_default] = ACTIONS(4286), + [anon_sym_while] = ACTIONS(4286), + [anon_sym_do] = ACTIONS(4286), + [anon_sym_for] = ACTIONS(4286), + [anon_sym_return] = ACTIONS(4286), + [anon_sym_break] = ACTIONS(4286), + [anon_sym_continue] = ACTIONS(4286), + [anon_sym_goto] = ACTIONS(4286), + [anon_sym_not] = ACTIONS(4286), + [anon_sym_compl] = ACTIONS(4286), + [anon_sym_DASH_DASH] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(4288), + [anon_sym_sizeof] = ACTIONS(4286), + [anon_sym___alignof__] = ACTIONS(4286), + [anon_sym___alignof] = ACTIONS(4286), + [anon_sym__alignof] = ACTIONS(4286), + [anon_sym_alignof] = ACTIONS(4286), + [anon_sym__Alignof] = ACTIONS(4286), + [anon_sym_offsetof] = ACTIONS(4286), + [anon_sym__Generic] = ACTIONS(4286), + [anon_sym_typename] = ACTIONS(4286), + [anon_sym_asm] = ACTIONS(4286), + [anon_sym___asm__] = ACTIONS(4286), + [anon_sym___asm] = ACTIONS(4286), + [sym_number_literal] = ACTIONS(4288), + [anon_sym_L_SQUOTE] = ACTIONS(4288), + [anon_sym_u_SQUOTE] = ACTIONS(4288), + [anon_sym_U_SQUOTE] = ACTIONS(4288), + [anon_sym_u8_SQUOTE] = ACTIONS(4288), + [anon_sym_SQUOTE] = ACTIONS(4288), + [anon_sym_L_DQUOTE] = ACTIONS(4288), + [anon_sym_u_DQUOTE] = ACTIONS(4288), + [anon_sym_U_DQUOTE] = ACTIONS(4288), + [anon_sym_u8_DQUOTE] = ACTIONS(4288), + [anon_sym_DQUOTE] = ACTIONS(4288), + [sym_true] = ACTIONS(4286), + [sym_false] = ACTIONS(4286), + [anon_sym_NULL] = ACTIONS(4286), + [anon_sym_nullptr] = ACTIONS(4286), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4286), + [anon_sym_decltype] = ACTIONS(4286), + [anon_sym_explicit] = ACTIONS(4286), + [anon_sym_export] = ACTIONS(4286), + [anon_sym_module] = ACTIONS(4286), + [anon_sym_import] = ACTIONS(4286), + [anon_sym_template] = ACTIONS(4286), + [anon_sym_operator] = ACTIONS(4286), + [anon_sym_try] = ACTIONS(4286), + [anon_sym_delete] = ACTIONS(4286), + [anon_sym_throw] = ACTIONS(4286), + [anon_sym_namespace] = ACTIONS(4286), + [anon_sym_static_assert] = ACTIONS(4286), + [anon_sym_concept] = ACTIONS(4286), + [anon_sym_co_return] = ACTIONS(4286), + [anon_sym_co_yield] = ACTIONS(4286), + [anon_sym_R_DQUOTE] = ACTIONS(4288), + [anon_sym_LR_DQUOTE] = ACTIONS(4288), + [anon_sym_uR_DQUOTE] = ACTIONS(4288), + [anon_sym_UR_DQUOTE] = ACTIONS(4288), + [anon_sym_u8R_DQUOTE] = ACTIONS(4288), + [anon_sym_co_await] = ACTIONS(4286), + [anon_sym_new] = ACTIONS(4286), + [anon_sym_requires] = ACTIONS(4286), + [anon_sym_CARET_CARET] = ACTIONS(4288), + [anon_sym_LBRACK_COLON] = ACTIONS(4288), + [sym_this] = ACTIONS(4286), + }, + [STATE(889)] = { + [ts_builtin_sym_end] = ACTIONS(4292), + [sym_identifier] = ACTIONS(4290), + [aux_sym_preproc_include_token1] = ACTIONS(4290), + [aux_sym_preproc_def_token1] = ACTIONS(4290), + [aux_sym_preproc_if_token1] = ACTIONS(4290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4290), + [sym_preproc_directive] = ACTIONS(4290), + [anon_sym_LPAREN2] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_AMP] = ACTIONS(4290), + [anon_sym_SEMI] = ACTIONS(4292), + [anon_sym___extension__] = ACTIONS(4290), + [anon_sym_typedef] = ACTIONS(4290), + [anon_sym_virtual] = ACTIONS(4290), + [anon_sym_extern] = ACTIONS(4290), + [anon_sym___attribute__] = ACTIONS(4290), + [anon_sym___attribute] = ACTIONS(4290), + [anon_sym_using] = ACTIONS(4290), + [anon_sym_COLON_COLON] = ACTIONS(4292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4292), + [anon_sym___declspec] = ACTIONS(4290), + [anon_sym___based] = ACTIONS(4290), + [anon_sym___cdecl] = ACTIONS(4290), + [anon_sym___clrcall] = ACTIONS(4290), + [anon_sym___stdcall] = ACTIONS(4290), + [anon_sym___fastcall] = ACTIONS(4290), + [anon_sym___thiscall] = ACTIONS(4290), + [anon_sym___vectorcall] = ACTIONS(4290), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_signed] = ACTIONS(4290), + [anon_sym_unsigned] = ACTIONS(4290), + [anon_sym_long] = ACTIONS(4290), + [anon_sym_short] = ACTIONS(4290), + [anon_sym_LBRACK] = ACTIONS(4290), + [anon_sym_static] = ACTIONS(4290), + [anon_sym_register] = ACTIONS(4290), + [anon_sym_inline] = ACTIONS(4290), + [anon_sym___inline] = ACTIONS(4290), + [anon_sym___inline__] = ACTIONS(4290), + [anon_sym___forceinline] = ACTIONS(4290), + [anon_sym_thread_local] = ACTIONS(4290), + [anon_sym___thread] = ACTIONS(4290), + [anon_sym_const] = ACTIONS(4290), + [anon_sym_constexpr] = ACTIONS(4290), + [anon_sym_volatile] = ACTIONS(4290), + [anon_sym_restrict] = ACTIONS(4290), + [anon_sym___restrict__] = ACTIONS(4290), + [anon_sym__Atomic] = ACTIONS(4290), + [anon_sym__Noreturn] = ACTIONS(4290), + [anon_sym_noreturn] = ACTIONS(4290), + [anon_sym__Nonnull] = ACTIONS(4290), + [anon_sym_mutable] = ACTIONS(4290), + [anon_sym_constinit] = ACTIONS(4290), + [anon_sym_consteval] = ACTIONS(4290), + [anon_sym_alignas] = ACTIONS(4290), + [anon_sym__Alignas] = ACTIONS(4290), + [sym_primitive_type] = ACTIONS(4290), + [anon_sym_enum] = ACTIONS(4290), + [anon_sym_class] = ACTIONS(4290), + [anon_sym_struct] = ACTIONS(4290), + [anon_sym_union] = ACTIONS(4290), + [anon_sym_if] = ACTIONS(4290), + [anon_sym_switch] = ACTIONS(4290), + [anon_sym_case] = ACTIONS(4290), + [anon_sym_default] = ACTIONS(4290), + [anon_sym_while] = ACTIONS(4290), + [anon_sym_do] = ACTIONS(4290), + [anon_sym_for] = ACTIONS(4290), + [anon_sym_return] = ACTIONS(4290), + [anon_sym_break] = ACTIONS(4290), + [anon_sym_continue] = ACTIONS(4290), + [anon_sym_goto] = ACTIONS(4290), + [anon_sym_not] = ACTIONS(4290), + [anon_sym_compl] = ACTIONS(4290), + [anon_sym_DASH_DASH] = ACTIONS(4292), + [anon_sym_PLUS_PLUS] = ACTIONS(4292), + [anon_sym_sizeof] = ACTIONS(4290), + [anon_sym___alignof__] = ACTIONS(4290), + [anon_sym___alignof] = ACTIONS(4290), + [anon_sym__alignof] = ACTIONS(4290), + [anon_sym_alignof] = ACTIONS(4290), + [anon_sym__Alignof] = ACTIONS(4290), + [anon_sym_offsetof] = ACTIONS(4290), + [anon_sym__Generic] = ACTIONS(4290), + [anon_sym_typename] = ACTIONS(4290), + [anon_sym_asm] = ACTIONS(4290), + [anon_sym___asm__] = ACTIONS(4290), + [anon_sym___asm] = ACTIONS(4290), + [sym_number_literal] = ACTIONS(4292), + [anon_sym_L_SQUOTE] = ACTIONS(4292), + [anon_sym_u_SQUOTE] = ACTIONS(4292), + [anon_sym_U_SQUOTE] = ACTIONS(4292), + [anon_sym_u8_SQUOTE] = ACTIONS(4292), + [anon_sym_SQUOTE] = ACTIONS(4292), + [anon_sym_L_DQUOTE] = ACTIONS(4292), + [anon_sym_u_DQUOTE] = ACTIONS(4292), + [anon_sym_U_DQUOTE] = ACTIONS(4292), + [anon_sym_u8_DQUOTE] = ACTIONS(4292), + [anon_sym_DQUOTE] = ACTIONS(4292), + [sym_true] = ACTIONS(4290), + [sym_false] = ACTIONS(4290), + [anon_sym_NULL] = ACTIONS(4290), + [anon_sym_nullptr] = ACTIONS(4290), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4290), + [anon_sym_decltype] = ACTIONS(4290), + [anon_sym_explicit] = ACTIONS(4290), + [anon_sym_export] = ACTIONS(4290), + [anon_sym_module] = ACTIONS(4290), + [anon_sym_import] = ACTIONS(4290), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_operator] = ACTIONS(4290), + [anon_sym_try] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4290), + [anon_sym_throw] = ACTIONS(4290), + [anon_sym_namespace] = ACTIONS(4290), + [anon_sym_static_assert] = ACTIONS(4290), + [anon_sym_concept] = ACTIONS(4290), + [anon_sym_co_return] = ACTIONS(4290), + [anon_sym_co_yield] = ACTIONS(4290), + [anon_sym_R_DQUOTE] = ACTIONS(4292), + [anon_sym_LR_DQUOTE] = ACTIONS(4292), + [anon_sym_uR_DQUOTE] = ACTIONS(4292), + [anon_sym_UR_DQUOTE] = ACTIONS(4292), + [anon_sym_u8R_DQUOTE] = ACTIONS(4292), + [anon_sym_co_await] = ACTIONS(4290), + [anon_sym_new] = ACTIONS(4290), + [anon_sym_requires] = ACTIONS(4290), + [anon_sym_CARET_CARET] = ACTIONS(4292), + [anon_sym_LBRACK_COLON] = ACTIONS(4292), + [sym_this] = ACTIONS(4290), + }, + [STATE(890)] = { + [ts_builtin_sym_end] = ACTIONS(4296), + [sym_identifier] = ACTIONS(4294), + [aux_sym_preproc_include_token1] = ACTIONS(4294), + [aux_sym_preproc_def_token1] = ACTIONS(4294), + [aux_sym_preproc_if_token1] = ACTIONS(4294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4294), + [sym_preproc_directive] = ACTIONS(4294), + [anon_sym_LPAREN2] = ACTIONS(4296), + [anon_sym_BANG] = ACTIONS(4296), + [anon_sym_TILDE] = ACTIONS(4296), + [anon_sym_DASH] = ACTIONS(4294), + [anon_sym_PLUS] = ACTIONS(4294), + [anon_sym_STAR] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_AMP] = ACTIONS(4294), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym___extension__] = ACTIONS(4294), + [anon_sym_typedef] = ACTIONS(4294), + [anon_sym_virtual] = ACTIONS(4294), + [anon_sym_extern] = ACTIONS(4294), + [anon_sym___attribute__] = ACTIONS(4294), + [anon_sym___attribute] = ACTIONS(4294), + [anon_sym_using] = ACTIONS(4294), + [anon_sym_COLON_COLON] = ACTIONS(4296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4296), + [anon_sym___declspec] = ACTIONS(4294), + [anon_sym___based] = ACTIONS(4294), + [anon_sym___cdecl] = ACTIONS(4294), + [anon_sym___clrcall] = ACTIONS(4294), + [anon_sym___stdcall] = ACTIONS(4294), + [anon_sym___fastcall] = ACTIONS(4294), + [anon_sym___thiscall] = ACTIONS(4294), + [anon_sym___vectorcall] = ACTIONS(4294), + [anon_sym_LBRACE] = ACTIONS(4296), + [anon_sym_signed] = ACTIONS(4294), + [anon_sym_unsigned] = ACTIONS(4294), + [anon_sym_long] = ACTIONS(4294), + [anon_sym_short] = ACTIONS(4294), + [anon_sym_LBRACK] = ACTIONS(4294), + [anon_sym_static] = ACTIONS(4294), + [anon_sym_register] = ACTIONS(4294), + [anon_sym_inline] = ACTIONS(4294), + [anon_sym___inline] = ACTIONS(4294), + [anon_sym___inline__] = ACTIONS(4294), + [anon_sym___forceinline] = ACTIONS(4294), + [anon_sym_thread_local] = ACTIONS(4294), + [anon_sym___thread] = ACTIONS(4294), + [anon_sym_const] = ACTIONS(4294), + [anon_sym_constexpr] = ACTIONS(4294), + [anon_sym_volatile] = ACTIONS(4294), + [anon_sym_restrict] = ACTIONS(4294), + [anon_sym___restrict__] = ACTIONS(4294), + [anon_sym__Atomic] = ACTIONS(4294), + [anon_sym__Noreturn] = ACTIONS(4294), + [anon_sym_noreturn] = ACTIONS(4294), + [anon_sym__Nonnull] = ACTIONS(4294), + [anon_sym_mutable] = ACTIONS(4294), + [anon_sym_constinit] = ACTIONS(4294), + [anon_sym_consteval] = ACTIONS(4294), + [anon_sym_alignas] = ACTIONS(4294), + [anon_sym__Alignas] = ACTIONS(4294), + [sym_primitive_type] = ACTIONS(4294), + [anon_sym_enum] = ACTIONS(4294), + [anon_sym_class] = ACTIONS(4294), + [anon_sym_struct] = ACTIONS(4294), + [anon_sym_union] = ACTIONS(4294), + [anon_sym_if] = ACTIONS(4294), + [anon_sym_switch] = ACTIONS(4294), + [anon_sym_case] = ACTIONS(4294), + [anon_sym_default] = ACTIONS(4294), + [anon_sym_while] = ACTIONS(4294), + [anon_sym_do] = ACTIONS(4294), + [anon_sym_for] = ACTIONS(4294), + [anon_sym_return] = ACTIONS(4294), + [anon_sym_break] = ACTIONS(4294), + [anon_sym_continue] = ACTIONS(4294), + [anon_sym_goto] = ACTIONS(4294), + [anon_sym_not] = ACTIONS(4294), + [anon_sym_compl] = ACTIONS(4294), + [anon_sym_DASH_DASH] = ACTIONS(4296), + [anon_sym_PLUS_PLUS] = ACTIONS(4296), + [anon_sym_sizeof] = ACTIONS(4294), + [anon_sym___alignof__] = ACTIONS(4294), + [anon_sym___alignof] = ACTIONS(4294), + [anon_sym__alignof] = ACTIONS(4294), + [anon_sym_alignof] = ACTIONS(4294), + [anon_sym__Alignof] = ACTIONS(4294), + [anon_sym_offsetof] = ACTIONS(4294), + [anon_sym__Generic] = ACTIONS(4294), + [anon_sym_typename] = ACTIONS(4294), + [anon_sym_asm] = ACTIONS(4294), + [anon_sym___asm__] = ACTIONS(4294), + [anon_sym___asm] = ACTIONS(4294), + [sym_number_literal] = ACTIONS(4296), + [anon_sym_L_SQUOTE] = ACTIONS(4296), + [anon_sym_u_SQUOTE] = ACTIONS(4296), + [anon_sym_U_SQUOTE] = ACTIONS(4296), + [anon_sym_u8_SQUOTE] = ACTIONS(4296), + [anon_sym_SQUOTE] = ACTIONS(4296), + [anon_sym_L_DQUOTE] = ACTIONS(4296), + [anon_sym_u_DQUOTE] = ACTIONS(4296), + [anon_sym_U_DQUOTE] = ACTIONS(4296), + [anon_sym_u8_DQUOTE] = ACTIONS(4296), + [anon_sym_DQUOTE] = ACTIONS(4296), + [sym_true] = ACTIONS(4294), + [sym_false] = ACTIONS(4294), + [anon_sym_NULL] = ACTIONS(4294), + [anon_sym_nullptr] = ACTIONS(4294), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4294), + [anon_sym_decltype] = ACTIONS(4294), + [anon_sym_explicit] = ACTIONS(4294), + [anon_sym_export] = ACTIONS(4294), + [anon_sym_module] = ACTIONS(4294), + [anon_sym_import] = ACTIONS(4294), + [anon_sym_template] = ACTIONS(4294), + [anon_sym_operator] = ACTIONS(4294), + [anon_sym_try] = ACTIONS(4294), + [anon_sym_delete] = ACTIONS(4294), + [anon_sym_throw] = ACTIONS(4294), + [anon_sym_namespace] = ACTIONS(4294), + [anon_sym_static_assert] = ACTIONS(4294), + [anon_sym_concept] = ACTIONS(4294), + [anon_sym_co_return] = ACTIONS(4294), + [anon_sym_co_yield] = ACTIONS(4294), + [anon_sym_R_DQUOTE] = ACTIONS(4296), + [anon_sym_LR_DQUOTE] = ACTIONS(4296), + [anon_sym_uR_DQUOTE] = ACTIONS(4296), + [anon_sym_UR_DQUOTE] = ACTIONS(4296), + [anon_sym_u8R_DQUOTE] = ACTIONS(4296), + [anon_sym_co_await] = ACTIONS(4294), + [anon_sym_new] = ACTIONS(4294), + [anon_sym_requires] = ACTIONS(4294), + [anon_sym_CARET_CARET] = ACTIONS(4296), + [anon_sym_LBRACK_COLON] = ACTIONS(4296), + [sym_this] = ACTIONS(4294), + }, + [STATE(891)] = { + [ts_builtin_sym_end] = ACTIONS(4022), + [sym_identifier] = ACTIONS(4020), + [aux_sym_preproc_include_token1] = ACTIONS(4020), + [aux_sym_preproc_def_token1] = ACTIONS(4020), + [aux_sym_preproc_if_token1] = ACTIONS(4020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4020), + [sym_preproc_directive] = ACTIONS(4020), + [anon_sym_LPAREN2] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(4022), + [anon_sym_TILDE] = ACTIONS(4022), + [anon_sym_DASH] = ACTIONS(4020), + [anon_sym_PLUS] = ACTIONS(4020), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_SEMI] = ACTIONS(4022), + [anon_sym___extension__] = ACTIONS(4020), + [anon_sym_typedef] = ACTIONS(4020), + [anon_sym_virtual] = ACTIONS(4020), + [anon_sym_extern] = ACTIONS(4020), + [anon_sym___attribute__] = ACTIONS(4020), + [anon_sym___attribute] = ACTIONS(4020), + [anon_sym_using] = ACTIONS(4020), + [anon_sym_COLON_COLON] = ACTIONS(4022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4022), + [anon_sym___declspec] = ACTIONS(4020), + [anon_sym___based] = ACTIONS(4020), + [anon_sym___cdecl] = ACTIONS(4020), + [anon_sym___clrcall] = ACTIONS(4020), + [anon_sym___stdcall] = ACTIONS(4020), + [anon_sym___fastcall] = ACTIONS(4020), + [anon_sym___thiscall] = ACTIONS(4020), + [anon_sym___vectorcall] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_signed] = ACTIONS(4020), + [anon_sym_unsigned] = ACTIONS(4020), + [anon_sym_long] = ACTIONS(4020), + [anon_sym_short] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(4020), + [anon_sym_static] = ACTIONS(4020), + [anon_sym_register] = ACTIONS(4020), + [anon_sym_inline] = ACTIONS(4020), + [anon_sym___inline] = ACTIONS(4020), + [anon_sym___inline__] = ACTIONS(4020), + [anon_sym___forceinline] = ACTIONS(4020), + [anon_sym_thread_local] = ACTIONS(4020), + [anon_sym___thread] = ACTIONS(4020), + [anon_sym_const] = ACTIONS(4020), + [anon_sym_constexpr] = ACTIONS(4020), + [anon_sym_volatile] = ACTIONS(4020), + [anon_sym_restrict] = ACTIONS(4020), + [anon_sym___restrict__] = ACTIONS(4020), + [anon_sym__Atomic] = ACTIONS(4020), + [anon_sym__Noreturn] = ACTIONS(4020), + [anon_sym_noreturn] = ACTIONS(4020), + [anon_sym__Nonnull] = ACTIONS(4020), + [anon_sym_mutable] = ACTIONS(4020), + [anon_sym_constinit] = ACTIONS(4020), + [anon_sym_consteval] = ACTIONS(4020), + [anon_sym_alignas] = ACTIONS(4020), + [anon_sym__Alignas] = ACTIONS(4020), + [sym_primitive_type] = ACTIONS(4020), + [anon_sym_enum] = ACTIONS(4020), + [anon_sym_class] = ACTIONS(4020), + [anon_sym_struct] = ACTIONS(4020), + [anon_sym_union] = ACTIONS(4020), + [anon_sym_if] = ACTIONS(4020), + [anon_sym_switch] = ACTIONS(4020), + [anon_sym_case] = ACTIONS(4020), + [anon_sym_default] = ACTIONS(4020), + [anon_sym_while] = ACTIONS(4020), + [anon_sym_do] = ACTIONS(4020), + [anon_sym_for] = ACTIONS(4020), + [anon_sym_return] = ACTIONS(4020), + [anon_sym_break] = ACTIONS(4020), + [anon_sym_continue] = ACTIONS(4020), + [anon_sym_goto] = ACTIONS(4020), + [anon_sym_not] = ACTIONS(4020), + [anon_sym_compl] = ACTIONS(4020), + [anon_sym_DASH_DASH] = ACTIONS(4022), + [anon_sym_PLUS_PLUS] = ACTIONS(4022), + [anon_sym_sizeof] = ACTIONS(4020), + [anon_sym___alignof__] = ACTIONS(4020), + [anon_sym___alignof] = ACTIONS(4020), + [anon_sym__alignof] = ACTIONS(4020), + [anon_sym_alignof] = ACTIONS(4020), + [anon_sym__Alignof] = ACTIONS(4020), + [anon_sym_offsetof] = ACTIONS(4020), + [anon_sym__Generic] = ACTIONS(4020), + [anon_sym_typename] = ACTIONS(4020), + [anon_sym_asm] = ACTIONS(4020), + [anon_sym___asm__] = ACTIONS(4020), + [anon_sym___asm] = ACTIONS(4020), + [sym_number_literal] = ACTIONS(4022), + [anon_sym_L_SQUOTE] = ACTIONS(4022), + [anon_sym_u_SQUOTE] = ACTIONS(4022), + [anon_sym_U_SQUOTE] = ACTIONS(4022), + [anon_sym_u8_SQUOTE] = ACTIONS(4022), + [anon_sym_SQUOTE] = ACTIONS(4022), + [anon_sym_L_DQUOTE] = ACTIONS(4022), + [anon_sym_u_DQUOTE] = ACTIONS(4022), + [anon_sym_U_DQUOTE] = ACTIONS(4022), + [anon_sym_u8_DQUOTE] = ACTIONS(4022), + [anon_sym_DQUOTE] = ACTIONS(4022), + [sym_true] = ACTIONS(4020), + [sym_false] = ACTIONS(4020), + [anon_sym_NULL] = ACTIONS(4020), + [anon_sym_nullptr] = ACTIONS(4020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4020), + [anon_sym_decltype] = ACTIONS(4020), + [anon_sym_explicit] = ACTIONS(4020), + [anon_sym_export] = ACTIONS(4020), + [anon_sym_module] = ACTIONS(4020), + [anon_sym_import] = ACTIONS(4020), + [anon_sym_template] = ACTIONS(4020), + [anon_sym_operator] = ACTIONS(4020), + [anon_sym_try] = ACTIONS(4020), + [anon_sym_delete] = ACTIONS(4020), + [anon_sym_throw] = ACTIONS(4020), + [anon_sym_namespace] = ACTIONS(4020), + [anon_sym_static_assert] = ACTIONS(4020), + [anon_sym_concept] = ACTIONS(4020), + [anon_sym_co_return] = ACTIONS(4020), + [anon_sym_co_yield] = ACTIONS(4020), + [anon_sym_R_DQUOTE] = ACTIONS(4022), + [anon_sym_LR_DQUOTE] = ACTIONS(4022), + [anon_sym_uR_DQUOTE] = ACTIONS(4022), + [anon_sym_UR_DQUOTE] = ACTIONS(4022), + [anon_sym_u8R_DQUOTE] = ACTIONS(4022), + [anon_sym_co_await] = ACTIONS(4020), + [anon_sym_new] = ACTIONS(4020), + [anon_sym_requires] = ACTIONS(4020), + [anon_sym_CARET_CARET] = ACTIONS(4022), + [anon_sym_LBRACK_COLON] = ACTIONS(4022), + [sym_this] = ACTIONS(4020), + }, + [STATE(892)] = { + [ts_builtin_sym_end] = ACTIONS(4114), + [sym_identifier] = ACTIONS(4112), + [aux_sym_preproc_include_token1] = ACTIONS(4112), + [aux_sym_preproc_def_token1] = ACTIONS(4112), + [aux_sym_preproc_if_token1] = ACTIONS(4112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4112), + [sym_preproc_directive] = ACTIONS(4112), + [anon_sym_LPAREN2] = ACTIONS(4114), + [anon_sym_BANG] = ACTIONS(4114), + [anon_sym_TILDE] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4112), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_STAR] = ACTIONS(4114), + [anon_sym_AMP_AMP] = ACTIONS(4114), + [anon_sym_AMP] = ACTIONS(4112), + [anon_sym_SEMI] = ACTIONS(4114), + [anon_sym___extension__] = ACTIONS(4112), + [anon_sym_typedef] = ACTIONS(4112), + [anon_sym_virtual] = ACTIONS(4112), + [anon_sym_extern] = ACTIONS(4112), + [anon_sym___attribute__] = ACTIONS(4112), + [anon_sym___attribute] = ACTIONS(4112), + [anon_sym_using] = ACTIONS(4112), + [anon_sym_COLON_COLON] = ACTIONS(4114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4114), + [anon_sym___declspec] = ACTIONS(4112), + [anon_sym___based] = ACTIONS(4112), + [anon_sym___cdecl] = ACTIONS(4112), + [anon_sym___clrcall] = ACTIONS(4112), + [anon_sym___stdcall] = ACTIONS(4112), + [anon_sym___fastcall] = ACTIONS(4112), + [anon_sym___thiscall] = ACTIONS(4112), + [anon_sym___vectorcall] = ACTIONS(4112), + [anon_sym_LBRACE] = ACTIONS(4114), + [anon_sym_signed] = ACTIONS(4112), + [anon_sym_unsigned] = ACTIONS(4112), + [anon_sym_long] = ACTIONS(4112), + [anon_sym_short] = ACTIONS(4112), + [anon_sym_LBRACK] = ACTIONS(4112), + [anon_sym_static] = ACTIONS(4112), + [anon_sym_register] = ACTIONS(4112), + [anon_sym_inline] = ACTIONS(4112), + [anon_sym___inline] = ACTIONS(4112), + [anon_sym___inline__] = ACTIONS(4112), + [anon_sym___forceinline] = ACTIONS(4112), + [anon_sym_thread_local] = ACTIONS(4112), + [anon_sym___thread] = ACTIONS(4112), + [anon_sym_const] = ACTIONS(4112), + [anon_sym_constexpr] = ACTIONS(4112), + [anon_sym_volatile] = ACTIONS(4112), + [anon_sym_restrict] = ACTIONS(4112), + [anon_sym___restrict__] = ACTIONS(4112), + [anon_sym__Atomic] = ACTIONS(4112), + [anon_sym__Noreturn] = ACTIONS(4112), + [anon_sym_noreturn] = ACTIONS(4112), + [anon_sym__Nonnull] = ACTIONS(4112), + [anon_sym_mutable] = ACTIONS(4112), + [anon_sym_constinit] = ACTIONS(4112), + [anon_sym_consteval] = ACTIONS(4112), + [anon_sym_alignas] = ACTIONS(4112), + [anon_sym__Alignas] = ACTIONS(4112), + [sym_primitive_type] = ACTIONS(4112), + [anon_sym_enum] = ACTIONS(4112), + [anon_sym_class] = ACTIONS(4112), + [anon_sym_struct] = ACTIONS(4112), + [anon_sym_union] = ACTIONS(4112), + [anon_sym_if] = ACTIONS(4112), + [anon_sym_switch] = ACTIONS(4112), + [anon_sym_case] = ACTIONS(4112), + [anon_sym_default] = ACTIONS(4112), + [anon_sym_while] = ACTIONS(4112), + [anon_sym_do] = ACTIONS(4112), + [anon_sym_for] = ACTIONS(4112), + [anon_sym_return] = ACTIONS(4112), + [anon_sym_break] = ACTIONS(4112), + [anon_sym_continue] = ACTIONS(4112), + [anon_sym_goto] = ACTIONS(4112), + [anon_sym_not] = ACTIONS(4112), + [anon_sym_compl] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4114), + [anon_sym_PLUS_PLUS] = ACTIONS(4114), + [anon_sym_sizeof] = ACTIONS(4112), + [anon_sym___alignof__] = ACTIONS(4112), + [anon_sym___alignof] = ACTIONS(4112), + [anon_sym__alignof] = ACTIONS(4112), + [anon_sym_alignof] = ACTIONS(4112), + [anon_sym__Alignof] = ACTIONS(4112), + [anon_sym_offsetof] = ACTIONS(4112), + [anon_sym__Generic] = ACTIONS(4112), + [anon_sym_typename] = ACTIONS(4112), + [anon_sym_asm] = ACTIONS(4112), + [anon_sym___asm__] = ACTIONS(4112), + [anon_sym___asm] = ACTIONS(4112), + [sym_number_literal] = ACTIONS(4114), + [anon_sym_L_SQUOTE] = ACTIONS(4114), + [anon_sym_u_SQUOTE] = ACTIONS(4114), + [anon_sym_U_SQUOTE] = ACTIONS(4114), + [anon_sym_u8_SQUOTE] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4114), + [anon_sym_L_DQUOTE] = ACTIONS(4114), + [anon_sym_u_DQUOTE] = ACTIONS(4114), + [anon_sym_U_DQUOTE] = ACTIONS(4114), + [anon_sym_u8_DQUOTE] = ACTIONS(4114), + [anon_sym_DQUOTE] = ACTIONS(4114), + [sym_true] = ACTIONS(4112), + [sym_false] = ACTIONS(4112), + [anon_sym_NULL] = ACTIONS(4112), + [anon_sym_nullptr] = ACTIONS(4112), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4112), + [anon_sym_decltype] = ACTIONS(4112), + [anon_sym_explicit] = ACTIONS(4112), + [anon_sym_export] = ACTIONS(4112), + [anon_sym_module] = ACTIONS(4112), + [anon_sym_import] = ACTIONS(4112), + [anon_sym_template] = ACTIONS(4112), + [anon_sym_operator] = ACTIONS(4112), + [anon_sym_try] = ACTIONS(4112), + [anon_sym_delete] = ACTIONS(4112), + [anon_sym_throw] = ACTIONS(4112), + [anon_sym_namespace] = ACTIONS(4112), + [anon_sym_static_assert] = ACTIONS(4112), + [anon_sym_concept] = ACTIONS(4112), + [anon_sym_co_return] = ACTIONS(4112), + [anon_sym_co_yield] = ACTIONS(4112), + [anon_sym_R_DQUOTE] = ACTIONS(4114), + [anon_sym_LR_DQUOTE] = ACTIONS(4114), + [anon_sym_uR_DQUOTE] = ACTIONS(4114), + [anon_sym_UR_DQUOTE] = ACTIONS(4114), + [anon_sym_u8R_DQUOTE] = ACTIONS(4114), + [anon_sym_co_await] = ACTIONS(4112), + [anon_sym_new] = ACTIONS(4112), + [anon_sym_requires] = ACTIONS(4112), + [anon_sym_CARET_CARET] = ACTIONS(4114), + [anon_sym_LBRACK_COLON] = ACTIONS(4114), + [sym_this] = ACTIONS(4112), + }, + [STATE(893)] = { + [ts_builtin_sym_end] = ACTIONS(4385), + [sym_identifier] = ACTIONS(4383), + [aux_sym_preproc_include_token1] = ACTIONS(4383), + [aux_sym_preproc_def_token1] = ACTIONS(4383), + [aux_sym_preproc_if_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4383), + [sym_preproc_directive] = ACTIONS(4383), + [anon_sym_LPAREN2] = ACTIONS(4385), + [anon_sym_BANG] = ACTIONS(4385), + [anon_sym_TILDE] = ACTIONS(4385), + [anon_sym_DASH] = ACTIONS(4383), + [anon_sym_PLUS] = ACTIONS(4383), + [anon_sym_STAR] = ACTIONS(4385), + [anon_sym_AMP_AMP] = ACTIONS(4385), + [anon_sym_AMP] = ACTIONS(4383), + [anon_sym_SEMI] = ACTIONS(4385), + [anon_sym___extension__] = ACTIONS(4383), + [anon_sym_typedef] = ACTIONS(4383), + [anon_sym_virtual] = ACTIONS(4383), + [anon_sym_extern] = ACTIONS(4383), + [anon_sym___attribute__] = ACTIONS(4383), + [anon_sym___attribute] = ACTIONS(4383), + [anon_sym_using] = ACTIONS(4383), + [anon_sym_COLON_COLON] = ACTIONS(4385), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4385), + [anon_sym___declspec] = ACTIONS(4383), + [anon_sym___based] = ACTIONS(4383), + [anon_sym___cdecl] = ACTIONS(4383), + [anon_sym___clrcall] = ACTIONS(4383), + [anon_sym___stdcall] = ACTIONS(4383), + [anon_sym___fastcall] = ACTIONS(4383), + [anon_sym___thiscall] = ACTIONS(4383), + [anon_sym___vectorcall] = ACTIONS(4383), + [anon_sym_LBRACE] = ACTIONS(4385), + [anon_sym_signed] = ACTIONS(4383), + [anon_sym_unsigned] = ACTIONS(4383), + [anon_sym_long] = ACTIONS(4383), + [anon_sym_short] = ACTIONS(4383), + [anon_sym_LBRACK] = ACTIONS(4383), + [anon_sym_static] = ACTIONS(4383), + [anon_sym_register] = ACTIONS(4383), + [anon_sym_inline] = ACTIONS(4383), + [anon_sym___inline] = ACTIONS(4383), + [anon_sym___inline__] = ACTIONS(4383), + [anon_sym___forceinline] = ACTIONS(4383), + [anon_sym_thread_local] = ACTIONS(4383), + [anon_sym___thread] = ACTIONS(4383), + [anon_sym_const] = ACTIONS(4383), + [anon_sym_constexpr] = ACTIONS(4383), + [anon_sym_volatile] = ACTIONS(4383), + [anon_sym_restrict] = ACTIONS(4383), + [anon_sym___restrict__] = ACTIONS(4383), + [anon_sym__Atomic] = ACTIONS(4383), + [anon_sym__Noreturn] = ACTIONS(4383), + [anon_sym_noreturn] = ACTIONS(4383), + [anon_sym__Nonnull] = ACTIONS(4383), + [anon_sym_mutable] = ACTIONS(4383), + [anon_sym_constinit] = ACTIONS(4383), + [anon_sym_consteval] = ACTIONS(4383), + [anon_sym_alignas] = ACTIONS(4383), + [anon_sym__Alignas] = ACTIONS(4383), + [sym_primitive_type] = ACTIONS(4383), + [anon_sym_enum] = ACTIONS(4383), + [anon_sym_class] = ACTIONS(4383), + [anon_sym_struct] = ACTIONS(4383), + [anon_sym_union] = ACTIONS(4383), + [anon_sym_if] = ACTIONS(4383), + [anon_sym_switch] = ACTIONS(4383), + [anon_sym_case] = ACTIONS(4383), + [anon_sym_default] = ACTIONS(4383), + [anon_sym_while] = ACTIONS(4383), + [anon_sym_do] = ACTIONS(4383), + [anon_sym_for] = ACTIONS(4383), + [anon_sym_return] = ACTIONS(4383), + [anon_sym_break] = ACTIONS(4383), + [anon_sym_continue] = ACTIONS(4383), + [anon_sym_goto] = ACTIONS(4383), + [anon_sym_not] = ACTIONS(4383), + [anon_sym_compl] = ACTIONS(4383), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(4383), + [anon_sym___alignof__] = ACTIONS(4383), + [anon_sym___alignof] = ACTIONS(4383), + [anon_sym__alignof] = ACTIONS(4383), + [anon_sym_alignof] = ACTIONS(4383), + [anon_sym__Alignof] = ACTIONS(4383), + [anon_sym_offsetof] = ACTIONS(4383), + [anon_sym__Generic] = ACTIONS(4383), + [anon_sym_typename] = ACTIONS(4383), + [anon_sym_asm] = ACTIONS(4383), + [anon_sym___asm__] = ACTIONS(4383), + [anon_sym___asm] = ACTIONS(4383), + [sym_number_literal] = ACTIONS(4385), + [anon_sym_L_SQUOTE] = ACTIONS(4385), + [anon_sym_u_SQUOTE] = ACTIONS(4385), + [anon_sym_U_SQUOTE] = ACTIONS(4385), + [anon_sym_u8_SQUOTE] = ACTIONS(4385), + [anon_sym_SQUOTE] = ACTIONS(4385), + [anon_sym_L_DQUOTE] = ACTIONS(4385), + [anon_sym_u_DQUOTE] = ACTIONS(4385), + [anon_sym_U_DQUOTE] = ACTIONS(4385), + [anon_sym_u8_DQUOTE] = ACTIONS(4385), + [anon_sym_DQUOTE] = ACTIONS(4385), + [sym_true] = ACTIONS(4383), + [sym_false] = ACTIONS(4383), + [anon_sym_NULL] = ACTIONS(4383), + [anon_sym_nullptr] = ACTIONS(4383), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4383), + [anon_sym_decltype] = ACTIONS(4383), + [anon_sym_explicit] = ACTIONS(4383), + [anon_sym_export] = ACTIONS(4383), + [anon_sym_module] = ACTIONS(4383), + [anon_sym_import] = ACTIONS(4383), + [anon_sym_template] = ACTIONS(4383), + [anon_sym_operator] = ACTIONS(4383), + [anon_sym_try] = ACTIONS(4383), + [anon_sym_delete] = ACTIONS(4383), + [anon_sym_throw] = ACTIONS(4383), + [anon_sym_namespace] = ACTIONS(4383), + [anon_sym_static_assert] = ACTIONS(4383), + [anon_sym_concept] = ACTIONS(4383), + [anon_sym_co_return] = ACTIONS(4383), + [anon_sym_co_yield] = ACTIONS(4383), + [anon_sym_R_DQUOTE] = ACTIONS(4385), + [anon_sym_LR_DQUOTE] = ACTIONS(4385), + [anon_sym_uR_DQUOTE] = ACTIONS(4385), + [anon_sym_UR_DQUOTE] = ACTIONS(4385), + [anon_sym_u8R_DQUOTE] = ACTIONS(4385), + [anon_sym_co_await] = ACTIONS(4383), + [anon_sym_new] = ACTIONS(4383), + [anon_sym_requires] = ACTIONS(4383), + [anon_sym_CARET_CARET] = ACTIONS(4385), + [anon_sym_LBRACK_COLON] = ACTIONS(4385), + [sym_this] = ACTIONS(4383), + }, + [STATE(894)] = { + [ts_builtin_sym_end] = ACTIONS(4050), + [sym_identifier] = ACTIONS(4048), + [aux_sym_preproc_include_token1] = ACTIONS(4048), + [aux_sym_preproc_def_token1] = ACTIONS(4048), + [aux_sym_preproc_if_token1] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4048), + [sym_preproc_directive] = ACTIONS(4048), + [anon_sym_LPAREN2] = ACTIONS(4050), + [anon_sym_BANG] = ACTIONS(4050), + [anon_sym_TILDE] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4048), + [anon_sym_PLUS] = ACTIONS(4048), + [anon_sym_STAR] = ACTIONS(4050), + [anon_sym_AMP_AMP] = ACTIONS(4050), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_SEMI] = ACTIONS(4050), + [anon_sym___extension__] = ACTIONS(4048), + [anon_sym_typedef] = ACTIONS(4048), + [anon_sym_virtual] = ACTIONS(4048), + [anon_sym_extern] = ACTIONS(4048), + [anon_sym___attribute__] = ACTIONS(4048), + [anon_sym___attribute] = ACTIONS(4048), + [anon_sym_using] = ACTIONS(4048), + [anon_sym_COLON_COLON] = ACTIONS(4050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4050), + [anon_sym___declspec] = ACTIONS(4048), + [anon_sym___based] = ACTIONS(4048), + [anon_sym___cdecl] = ACTIONS(4048), + [anon_sym___clrcall] = ACTIONS(4048), + [anon_sym___stdcall] = ACTIONS(4048), + [anon_sym___fastcall] = ACTIONS(4048), + [anon_sym___thiscall] = ACTIONS(4048), + [anon_sym___vectorcall] = ACTIONS(4048), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_signed] = ACTIONS(4048), + [anon_sym_unsigned] = ACTIONS(4048), + [anon_sym_long] = ACTIONS(4048), + [anon_sym_short] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_static] = ACTIONS(4048), + [anon_sym_register] = ACTIONS(4048), + [anon_sym_inline] = ACTIONS(4048), + [anon_sym___inline] = ACTIONS(4048), + [anon_sym___inline__] = ACTIONS(4048), + [anon_sym___forceinline] = ACTIONS(4048), + [anon_sym_thread_local] = ACTIONS(4048), + [anon_sym___thread] = ACTIONS(4048), + [anon_sym_const] = ACTIONS(4048), + [anon_sym_constexpr] = ACTIONS(4048), + [anon_sym_volatile] = ACTIONS(4048), + [anon_sym_restrict] = ACTIONS(4048), + [anon_sym___restrict__] = ACTIONS(4048), + [anon_sym__Atomic] = ACTIONS(4048), + [anon_sym__Noreturn] = ACTIONS(4048), + [anon_sym_noreturn] = ACTIONS(4048), + [anon_sym__Nonnull] = ACTIONS(4048), + [anon_sym_mutable] = ACTIONS(4048), + [anon_sym_constinit] = ACTIONS(4048), + [anon_sym_consteval] = ACTIONS(4048), + [anon_sym_alignas] = ACTIONS(4048), + [anon_sym__Alignas] = ACTIONS(4048), + [sym_primitive_type] = ACTIONS(4048), + [anon_sym_enum] = ACTIONS(4048), + [anon_sym_class] = ACTIONS(4048), + [anon_sym_struct] = ACTIONS(4048), + [anon_sym_union] = ACTIONS(4048), + [anon_sym_if] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(4048), + [anon_sym_case] = ACTIONS(4048), + [anon_sym_default] = ACTIONS(4048), + [anon_sym_while] = ACTIONS(4048), + [anon_sym_do] = ACTIONS(4048), + [anon_sym_for] = ACTIONS(4048), + [anon_sym_return] = ACTIONS(4048), + [anon_sym_break] = ACTIONS(4048), + [anon_sym_continue] = ACTIONS(4048), + [anon_sym_goto] = ACTIONS(4048), + [anon_sym_not] = ACTIONS(4048), + [anon_sym_compl] = ACTIONS(4048), + [anon_sym_DASH_DASH] = ACTIONS(4050), + [anon_sym_PLUS_PLUS] = ACTIONS(4050), + [anon_sym_sizeof] = ACTIONS(4048), + [anon_sym___alignof__] = ACTIONS(4048), + [anon_sym___alignof] = ACTIONS(4048), + [anon_sym__alignof] = ACTIONS(4048), + [anon_sym_alignof] = ACTIONS(4048), + [anon_sym__Alignof] = ACTIONS(4048), + [anon_sym_offsetof] = ACTIONS(4048), + [anon_sym__Generic] = ACTIONS(4048), + [anon_sym_typename] = ACTIONS(4048), + [anon_sym_asm] = ACTIONS(4048), + [anon_sym___asm__] = ACTIONS(4048), + [anon_sym___asm] = ACTIONS(4048), + [sym_number_literal] = ACTIONS(4050), + [anon_sym_L_SQUOTE] = ACTIONS(4050), + [anon_sym_u_SQUOTE] = ACTIONS(4050), + [anon_sym_U_SQUOTE] = ACTIONS(4050), + [anon_sym_u8_SQUOTE] = ACTIONS(4050), + [anon_sym_SQUOTE] = ACTIONS(4050), + [anon_sym_L_DQUOTE] = ACTIONS(4050), + [anon_sym_u_DQUOTE] = ACTIONS(4050), + [anon_sym_U_DQUOTE] = ACTIONS(4050), + [anon_sym_u8_DQUOTE] = ACTIONS(4050), + [anon_sym_DQUOTE] = ACTIONS(4050), + [sym_true] = ACTIONS(4048), + [sym_false] = ACTIONS(4048), + [anon_sym_NULL] = ACTIONS(4048), + [anon_sym_nullptr] = ACTIONS(4048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4048), + [anon_sym_decltype] = ACTIONS(4048), + [anon_sym_explicit] = ACTIONS(4048), + [anon_sym_export] = ACTIONS(4048), + [anon_sym_module] = ACTIONS(4048), + [anon_sym_import] = ACTIONS(4048), + [anon_sym_template] = ACTIONS(4048), + [anon_sym_operator] = ACTIONS(4048), + [anon_sym_try] = ACTIONS(4048), + [anon_sym_delete] = ACTIONS(4048), + [anon_sym_throw] = ACTIONS(4048), + [anon_sym_namespace] = ACTIONS(4048), + [anon_sym_static_assert] = ACTIONS(4048), + [anon_sym_concept] = ACTIONS(4048), + [anon_sym_co_return] = ACTIONS(4048), + [anon_sym_co_yield] = ACTIONS(4048), + [anon_sym_R_DQUOTE] = ACTIONS(4050), + [anon_sym_LR_DQUOTE] = ACTIONS(4050), + [anon_sym_uR_DQUOTE] = ACTIONS(4050), + [anon_sym_UR_DQUOTE] = ACTIONS(4050), + [anon_sym_u8R_DQUOTE] = ACTIONS(4050), + [anon_sym_co_await] = ACTIONS(4048), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_requires] = ACTIONS(4048), + [anon_sym_CARET_CARET] = ACTIONS(4050), + [anon_sym_LBRACK_COLON] = ACTIONS(4050), + [sym_this] = ACTIONS(4048), + }, + [STATE(895)] = { + [sym_preproc_def] = STATE(884), + [sym_preproc_function_def] = STATE(884), + [sym_preproc_call] = STATE(884), + [sym_preproc_if_in_field_declaration_list] = STATE(884), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(884), + [sym_type_definition] = STATE(884), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8092), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(884), + [sym_field_declaration] = STATE(884), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(884), + [sym_operator_cast] = STATE(9211), + [sym_inline_method_definition] = STATE(884), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(884), + [sym_operator_cast_declaration] = STATE(884), + [sym_constructor_or_destructor_definition] = STATE(884), + [sym_constructor_or_destructor_declaration] = STATE(884), + [sym_friend_declaration] = STATE(884), + [sym_access_specifier] = STATE(11030), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(884), + [sym_alias_declaration] = STATE(884), + [sym_static_assert_declaration] = STATE(884), + [sym_consteval_block_declaration] = STATE(884), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9455), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(4686), + [aux_sym_preproc_if_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), + [sym_preproc_directive] = ACTIONS(4692), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(4714), + [anon_sym___extension__] = ACTIONS(4696), + [anon_sym_typedef] = ACTIONS(4698), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(5124), - [anon_sym_COLON_COLON] = ACTIONS(5100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(4700), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_RBRACE] = ACTIONS(4763), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_LBRACK] = ACTIONS(3460), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -193675,7 +187377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(5126), + [anon_sym_constexpr] = ACTIONS(4704), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -193685,113 +187387,1794 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4706), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5128), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(4708), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(5130), - [anon_sym_concept] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(5106), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(4712), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(995)] = { - [sym_function_definition] = STATE(3348), - [sym_declaration] = STATE(3348), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6294), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4663), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2623), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8578), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4357), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__empty_declaration] = STATE(3348), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2417), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(3348), - [sym_operator_cast] = STATE(9064), - [sym__constructor_specifiers] = STATE(2417), - [sym_operator_cast_definition] = STATE(3348), - [sym_operator_cast_declaration] = STATE(3348), - [sym_constructor_or_destructor_definition] = STATE(3348), - [sym_constructor_or_destructor_declaration] = STATE(3348), - [sym_friend_declaration] = STATE(3348), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_alias_declaration] = STATE(3348), - [sym_concept_definition] = STATE(3348), - [sym_requires_clause] = STATE(1004), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7652), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9064), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2417), - [sym_identifier] = ACTIONS(5096), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), + [STATE(896)] = { + [sym_identifier] = ACTIONS(4522), + [aux_sym_preproc_include_token1] = ACTIONS(4522), + [aux_sym_preproc_def_token1] = ACTIONS(4522), + [aux_sym_preproc_if_token1] = ACTIONS(4522), + [aux_sym_preproc_if_token2] = ACTIONS(4522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4522), + [sym_preproc_directive] = ACTIONS(4522), + [anon_sym_LPAREN2] = ACTIONS(4524), + [anon_sym_BANG] = ACTIONS(4524), + [anon_sym_TILDE] = ACTIONS(4524), + [anon_sym_DASH] = ACTIONS(4522), + [anon_sym_PLUS] = ACTIONS(4522), + [anon_sym_STAR] = ACTIONS(4524), + [anon_sym_AMP_AMP] = ACTIONS(4524), + [anon_sym_AMP] = ACTIONS(4522), + [anon_sym_SEMI] = ACTIONS(4524), + [anon_sym___extension__] = ACTIONS(4522), + [anon_sym_typedef] = ACTIONS(4522), + [anon_sym_virtual] = ACTIONS(4522), + [anon_sym_extern] = ACTIONS(4522), + [anon_sym___attribute__] = ACTIONS(4522), + [anon_sym___attribute] = ACTIONS(4522), + [anon_sym_using] = ACTIONS(4522), + [anon_sym_COLON_COLON] = ACTIONS(4524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4524), + [anon_sym___declspec] = ACTIONS(4522), + [anon_sym___based] = ACTIONS(4522), + [anon_sym___cdecl] = ACTIONS(4522), + [anon_sym___clrcall] = ACTIONS(4522), + [anon_sym___stdcall] = ACTIONS(4522), + [anon_sym___fastcall] = ACTIONS(4522), + [anon_sym___thiscall] = ACTIONS(4522), + [anon_sym___vectorcall] = ACTIONS(4522), + [anon_sym_LBRACE] = ACTIONS(4524), + [anon_sym_signed] = ACTIONS(4522), + [anon_sym_unsigned] = ACTIONS(4522), + [anon_sym_long] = ACTIONS(4522), + [anon_sym_short] = ACTIONS(4522), + [anon_sym_LBRACK] = ACTIONS(4522), + [anon_sym_static] = ACTIONS(4522), + [anon_sym_register] = ACTIONS(4522), + [anon_sym_inline] = ACTIONS(4522), + [anon_sym___inline] = ACTIONS(4522), + [anon_sym___inline__] = ACTIONS(4522), + [anon_sym___forceinline] = ACTIONS(4522), + [anon_sym_thread_local] = ACTIONS(4522), + [anon_sym___thread] = ACTIONS(4522), + [anon_sym_const] = ACTIONS(4522), + [anon_sym_constexpr] = ACTIONS(4522), + [anon_sym_volatile] = ACTIONS(4522), + [anon_sym_restrict] = ACTIONS(4522), + [anon_sym___restrict__] = ACTIONS(4522), + [anon_sym__Atomic] = ACTIONS(4522), + [anon_sym__Noreturn] = ACTIONS(4522), + [anon_sym_noreturn] = ACTIONS(4522), + [anon_sym__Nonnull] = ACTIONS(4522), + [anon_sym_mutable] = ACTIONS(4522), + [anon_sym_constinit] = ACTIONS(4522), + [anon_sym_consteval] = ACTIONS(4522), + [anon_sym_alignas] = ACTIONS(4522), + [anon_sym__Alignas] = ACTIONS(4522), + [sym_primitive_type] = ACTIONS(4522), + [anon_sym_enum] = ACTIONS(4522), + [anon_sym_class] = ACTIONS(4522), + [anon_sym_struct] = ACTIONS(4522), + [anon_sym_union] = ACTIONS(4522), + [anon_sym_if] = ACTIONS(4522), + [anon_sym_switch] = ACTIONS(4522), + [anon_sym_case] = ACTIONS(4522), + [anon_sym_default] = ACTIONS(4522), + [anon_sym_while] = ACTIONS(4522), + [anon_sym_do] = ACTIONS(4522), + [anon_sym_for] = ACTIONS(4522), + [anon_sym_return] = ACTIONS(4522), + [anon_sym_break] = ACTIONS(4522), + [anon_sym_continue] = ACTIONS(4522), + [anon_sym_goto] = ACTIONS(4522), + [anon_sym_not] = ACTIONS(4522), + [anon_sym_compl] = ACTIONS(4522), + [anon_sym_DASH_DASH] = ACTIONS(4524), + [anon_sym_PLUS_PLUS] = ACTIONS(4524), + [anon_sym_sizeof] = ACTIONS(4522), + [anon_sym___alignof__] = ACTIONS(4522), + [anon_sym___alignof] = ACTIONS(4522), + [anon_sym__alignof] = ACTIONS(4522), + [anon_sym_alignof] = ACTIONS(4522), + [anon_sym__Alignof] = ACTIONS(4522), + [anon_sym_offsetof] = ACTIONS(4522), + [anon_sym__Generic] = ACTIONS(4522), + [anon_sym_typename] = ACTIONS(4522), + [anon_sym_asm] = ACTIONS(4522), + [anon_sym___asm__] = ACTIONS(4522), + [anon_sym___asm] = ACTIONS(4522), + [sym_number_literal] = ACTIONS(4524), + [anon_sym_L_SQUOTE] = ACTIONS(4524), + [anon_sym_u_SQUOTE] = ACTIONS(4524), + [anon_sym_U_SQUOTE] = ACTIONS(4524), + [anon_sym_u8_SQUOTE] = ACTIONS(4524), + [anon_sym_SQUOTE] = ACTIONS(4524), + [anon_sym_L_DQUOTE] = ACTIONS(4524), + [anon_sym_u_DQUOTE] = ACTIONS(4524), + [anon_sym_U_DQUOTE] = ACTIONS(4524), + [anon_sym_u8_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4524), + [sym_true] = ACTIONS(4522), + [sym_false] = ACTIONS(4522), + [anon_sym_NULL] = ACTIONS(4522), + [anon_sym_nullptr] = ACTIONS(4522), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4522), + [anon_sym_decltype] = ACTIONS(4522), + [anon_sym_explicit] = ACTIONS(4522), + [anon_sym_export] = ACTIONS(4522), + [anon_sym_module] = ACTIONS(4522), + [anon_sym_import] = ACTIONS(4522), + [anon_sym_template] = ACTIONS(4522), + [anon_sym_operator] = ACTIONS(4522), + [anon_sym_try] = ACTIONS(4522), + [anon_sym_delete] = ACTIONS(4522), + [anon_sym_throw] = ACTIONS(4522), + [anon_sym_namespace] = ACTIONS(4522), + [anon_sym_static_assert] = ACTIONS(4522), + [anon_sym_concept] = ACTIONS(4522), + [anon_sym_co_return] = ACTIONS(4522), + [anon_sym_co_yield] = ACTIONS(4522), + [anon_sym_R_DQUOTE] = ACTIONS(4524), + [anon_sym_LR_DQUOTE] = ACTIONS(4524), + [anon_sym_uR_DQUOTE] = ACTIONS(4524), + [anon_sym_UR_DQUOTE] = ACTIONS(4524), + [anon_sym_u8R_DQUOTE] = ACTIONS(4524), + [anon_sym_co_await] = ACTIONS(4522), + [anon_sym_new] = ACTIONS(4522), + [anon_sym_requires] = ACTIONS(4522), + [anon_sym_CARET_CARET] = ACTIONS(4524), + [anon_sym_LBRACK_COLON] = ACTIONS(4524), + [sym_this] = ACTIONS(4522), + }, + [STATE(897)] = { + [sym_identifier] = ACTIONS(4504), + [aux_sym_preproc_include_token1] = ACTIONS(4504), + [aux_sym_preproc_def_token1] = ACTIONS(4504), + [aux_sym_preproc_if_token1] = ACTIONS(4504), + [aux_sym_preproc_if_token2] = ACTIONS(4504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4504), + [sym_preproc_directive] = ACTIONS(4504), + [anon_sym_LPAREN2] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4507), + [anon_sym_TILDE] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4504), + [anon_sym_STAR] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_AMP] = ACTIONS(4504), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym___extension__] = ACTIONS(4504), + [anon_sym_typedef] = ACTIONS(4504), + [anon_sym_virtual] = ACTIONS(4504), + [anon_sym_extern] = ACTIONS(4504), + [anon_sym___attribute__] = ACTIONS(4504), + [anon_sym___attribute] = ACTIONS(4504), + [anon_sym_using] = ACTIONS(4504), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4507), + [anon_sym___declspec] = ACTIONS(4504), + [anon_sym___based] = ACTIONS(4504), + [anon_sym___cdecl] = ACTIONS(4504), + [anon_sym___clrcall] = ACTIONS(4504), + [anon_sym___stdcall] = ACTIONS(4504), + [anon_sym___fastcall] = ACTIONS(4504), + [anon_sym___thiscall] = ACTIONS(4504), + [anon_sym___vectorcall] = ACTIONS(4504), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_signed] = ACTIONS(4504), + [anon_sym_unsigned] = ACTIONS(4504), + [anon_sym_long] = ACTIONS(4504), + [anon_sym_short] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4504), + [anon_sym_static] = ACTIONS(4504), + [anon_sym_register] = ACTIONS(4504), + [anon_sym_inline] = ACTIONS(4504), + [anon_sym___inline] = ACTIONS(4504), + [anon_sym___inline__] = ACTIONS(4504), + [anon_sym___forceinline] = ACTIONS(4504), + [anon_sym_thread_local] = ACTIONS(4504), + [anon_sym___thread] = ACTIONS(4504), + [anon_sym_const] = ACTIONS(4504), + [anon_sym_constexpr] = ACTIONS(4504), + [anon_sym_volatile] = ACTIONS(4504), + [anon_sym_restrict] = ACTIONS(4504), + [anon_sym___restrict__] = ACTIONS(4504), + [anon_sym__Atomic] = ACTIONS(4504), + [anon_sym__Noreturn] = ACTIONS(4504), + [anon_sym_noreturn] = ACTIONS(4504), + [anon_sym__Nonnull] = ACTIONS(4504), + [anon_sym_mutable] = ACTIONS(4504), + [anon_sym_constinit] = ACTIONS(4504), + [anon_sym_consteval] = ACTIONS(4504), + [anon_sym_alignas] = ACTIONS(4504), + [anon_sym__Alignas] = ACTIONS(4504), + [sym_primitive_type] = ACTIONS(4504), + [anon_sym_enum] = ACTIONS(4504), + [anon_sym_class] = ACTIONS(4504), + [anon_sym_struct] = ACTIONS(4504), + [anon_sym_union] = ACTIONS(4504), + [anon_sym_if] = ACTIONS(4504), + [anon_sym_switch] = ACTIONS(4504), + [anon_sym_case] = ACTIONS(4504), + [anon_sym_default] = ACTIONS(4504), + [anon_sym_while] = ACTIONS(4504), + [anon_sym_do] = ACTIONS(4504), + [anon_sym_for] = ACTIONS(4504), + [anon_sym_return] = ACTIONS(4504), + [anon_sym_break] = ACTIONS(4504), + [anon_sym_continue] = ACTIONS(4504), + [anon_sym_goto] = ACTIONS(4504), + [anon_sym_not] = ACTIONS(4504), + [anon_sym_compl] = ACTIONS(4504), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_sizeof] = ACTIONS(4504), + [anon_sym___alignof__] = ACTIONS(4504), + [anon_sym___alignof] = ACTIONS(4504), + [anon_sym__alignof] = ACTIONS(4504), + [anon_sym_alignof] = ACTIONS(4504), + [anon_sym__Alignof] = ACTIONS(4504), + [anon_sym_offsetof] = ACTIONS(4504), + [anon_sym__Generic] = ACTIONS(4504), + [anon_sym_typename] = ACTIONS(4504), + [anon_sym_asm] = ACTIONS(4504), + [anon_sym___asm__] = ACTIONS(4504), + [anon_sym___asm] = ACTIONS(4504), + [sym_number_literal] = ACTIONS(4507), + [anon_sym_L_SQUOTE] = ACTIONS(4507), + [anon_sym_u_SQUOTE] = ACTIONS(4507), + [anon_sym_U_SQUOTE] = ACTIONS(4507), + [anon_sym_u8_SQUOTE] = ACTIONS(4507), + [anon_sym_SQUOTE] = ACTIONS(4507), + [anon_sym_L_DQUOTE] = ACTIONS(4507), + [anon_sym_u_DQUOTE] = ACTIONS(4507), + [anon_sym_U_DQUOTE] = ACTIONS(4507), + [anon_sym_u8_DQUOTE] = ACTIONS(4507), + [anon_sym_DQUOTE] = ACTIONS(4507), + [sym_true] = ACTIONS(4504), + [sym_false] = ACTIONS(4504), + [anon_sym_NULL] = ACTIONS(4504), + [anon_sym_nullptr] = ACTIONS(4504), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4504), + [anon_sym_decltype] = ACTIONS(4504), + [anon_sym_explicit] = ACTIONS(4504), + [anon_sym_export] = ACTIONS(4504), + [anon_sym_module] = ACTIONS(4504), + [anon_sym_import] = ACTIONS(4504), + [anon_sym_template] = ACTIONS(4504), + [anon_sym_operator] = ACTIONS(4504), + [anon_sym_try] = ACTIONS(4504), + [anon_sym_delete] = ACTIONS(4504), + [anon_sym_throw] = ACTIONS(4504), + [anon_sym_namespace] = ACTIONS(4504), + [anon_sym_static_assert] = ACTIONS(4504), + [anon_sym_concept] = ACTIONS(4504), + [anon_sym_co_return] = ACTIONS(4504), + [anon_sym_co_yield] = ACTIONS(4504), + [anon_sym_R_DQUOTE] = ACTIONS(4507), + [anon_sym_LR_DQUOTE] = ACTIONS(4507), + [anon_sym_uR_DQUOTE] = ACTIONS(4507), + [anon_sym_UR_DQUOTE] = ACTIONS(4507), + [anon_sym_u8R_DQUOTE] = ACTIONS(4507), + [anon_sym_co_await] = ACTIONS(4504), + [anon_sym_new] = ACTIONS(4504), + [anon_sym_requires] = ACTIONS(4504), + [anon_sym_CARET_CARET] = ACTIONS(4507), + [anon_sym_LBRACK_COLON] = ACTIONS(4507), + [sym_this] = ACTIONS(4504), + }, + [STATE(898)] = { + [ts_builtin_sym_end] = ACTIONS(4134), + [sym_identifier] = ACTIONS(4132), + [aux_sym_preproc_include_token1] = ACTIONS(4132), + [aux_sym_preproc_def_token1] = ACTIONS(4132), + [aux_sym_preproc_if_token1] = ACTIONS(4132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4132), + [sym_preproc_directive] = ACTIONS(4132), + [anon_sym_LPAREN2] = ACTIONS(4134), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_TILDE] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4132), + [anon_sym_STAR] = ACTIONS(4134), + [anon_sym_AMP_AMP] = ACTIONS(4134), + [anon_sym_AMP] = ACTIONS(4132), + [anon_sym_SEMI] = ACTIONS(4134), + [anon_sym___extension__] = ACTIONS(4132), + [anon_sym_typedef] = ACTIONS(4132), + [anon_sym_virtual] = ACTIONS(4132), + [anon_sym_extern] = ACTIONS(4132), + [anon_sym___attribute__] = ACTIONS(4132), + [anon_sym___attribute] = ACTIONS(4132), + [anon_sym_using] = ACTIONS(4132), + [anon_sym_COLON_COLON] = ACTIONS(4134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4134), + [anon_sym___declspec] = ACTIONS(4132), + [anon_sym___based] = ACTIONS(4132), + [anon_sym___cdecl] = ACTIONS(4132), + [anon_sym___clrcall] = ACTIONS(4132), + [anon_sym___stdcall] = ACTIONS(4132), + [anon_sym___fastcall] = ACTIONS(4132), + [anon_sym___thiscall] = ACTIONS(4132), + [anon_sym___vectorcall] = ACTIONS(4132), + [anon_sym_LBRACE] = ACTIONS(4134), + [anon_sym_signed] = ACTIONS(4132), + [anon_sym_unsigned] = ACTIONS(4132), + [anon_sym_long] = ACTIONS(4132), + [anon_sym_short] = ACTIONS(4132), + [anon_sym_LBRACK] = ACTIONS(4132), + [anon_sym_static] = ACTIONS(4132), + [anon_sym_register] = ACTIONS(4132), + [anon_sym_inline] = ACTIONS(4132), + [anon_sym___inline] = ACTIONS(4132), + [anon_sym___inline__] = ACTIONS(4132), + [anon_sym___forceinline] = ACTIONS(4132), + [anon_sym_thread_local] = ACTIONS(4132), + [anon_sym___thread] = ACTIONS(4132), + [anon_sym_const] = ACTIONS(4132), + [anon_sym_constexpr] = ACTIONS(4132), + [anon_sym_volatile] = ACTIONS(4132), + [anon_sym_restrict] = ACTIONS(4132), + [anon_sym___restrict__] = ACTIONS(4132), + [anon_sym__Atomic] = ACTIONS(4132), + [anon_sym__Noreturn] = ACTIONS(4132), + [anon_sym_noreturn] = ACTIONS(4132), + [anon_sym__Nonnull] = ACTIONS(4132), + [anon_sym_mutable] = ACTIONS(4132), + [anon_sym_constinit] = ACTIONS(4132), + [anon_sym_consteval] = ACTIONS(4132), + [anon_sym_alignas] = ACTIONS(4132), + [anon_sym__Alignas] = ACTIONS(4132), + [sym_primitive_type] = ACTIONS(4132), + [anon_sym_enum] = ACTIONS(4132), + [anon_sym_class] = ACTIONS(4132), + [anon_sym_struct] = ACTIONS(4132), + [anon_sym_union] = ACTIONS(4132), + [anon_sym_if] = ACTIONS(4132), + [anon_sym_switch] = ACTIONS(4132), + [anon_sym_case] = ACTIONS(4132), + [anon_sym_default] = ACTIONS(4132), + [anon_sym_while] = ACTIONS(4132), + [anon_sym_do] = ACTIONS(4132), + [anon_sym_for] = ACTIONS(4132), + [anon_sym_return] = ACTIONS(4132), + [anon_sym_break] = ACTIONS(4132), + [anon_sym_continue] = ACTIONS(4132), + [anon_sym_goto] = ACTIONS(4132), + [anon_sym_not] = ACTIONS(4132), + [anon_sym_compl] = ACTIONS(4132), + [anon_sym_DASH_DASH] = ACTIONS(4134), + [anon_sym_PLUS_PLUS] = ACTIONS(4134), + [anon_sym_sizeof] = ACTIONS(4132), + [anon_sym___alignof__] = ACTIONS(4132), + [anon_sym___alignof] = ACTIONS(4132), + [anon_sym__alignof] = ACTIONS(4132), + [anon_sym_alignof] = ACTIONS(4132), + [anon_sym__Alignof] = ACTIONS(4132), + [anon_sym_offsetof] = ACTIONS(4132), + [anon_sym__Generic] = ACTIONS(4132), + [anon_sym_typename] = ACTIONS(4132), + [anon_sym_asm] = ACTIONS(4132), + [anon_sym___asm__] = ACTIONS(4132), + [anon_sym___asm] = ACTIONS(4132), + [sym_number_literal] = ACTIONS(4134), + [anon_sym_L_SQUOTE] = ACTIONS(4134), + [anon_sym_u_SQUOTE] = ACTIONS(4134), + [anon_sym_U_SQUOTE] = ACTIONS(4134), + [anon_sym_u8_SQUOTE] = ACTIONS(4134), + [anon_sym_SQUOTE] = ACTIONS(4134), + [anon_sym_L_DQUOTE] = ACTIONS(4134), + [anon_sym_u_DQUOTE] = ACTIONS(4134), + [anon_sym_U_DQUOTE] = ACTIONS(4134), + [anon_sym_u8_DQUOTE] = ACTIONS(4134), + [anon_sym_DQUOTE] = ACTIONS(4134), + [sym_true] = ACTIONS(4132), + [sym_false] = ACTIONS(4132), + [anon_sym_NULL] = ACTIONS(4132), + [anon_sym_nullptr] = ACTIONS(4132), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4132), + [anon_sym_decltype] = ACTIONS(4132), + [anon_sym_explicit] = ACTIONS(4132), + [anon_sym_export] = ACTIONS(4132), + [anon_sym_module] = ACTIONS(4132), + [anon_sym_import] = ACTIONS(4132), + [anon_sym_template] = ACTIONS(4132), + [anon_sym_operator] = ACTIONS(4132), + [anon_sym_try] = ACTIONS(4132), + [anon_sym_delete] = ACTIONS(4132), + [anon_sym_throw] = ACTIONS(4132), + [anon_sym_namespace] = ACTIONS(4132), + [anon_sym_static_assert] = ACTIONS(4132), + [anon_sym_concept] = ACTIONS(4132), + [anon_sym_co_return] = ACTIONS(4132), + [anon_sym_co_yield] = ACTIONS(4132), + [anon_sym_R_DQUOTE] = ACTIONS(4134), + [anon_sym_LR_DQUOTE] = ACTIONS(4134), + [anon_sym_uR_DQUOTE] = ACTIONS(4134), + [anon_sym_UR_DQUOTE] = ACTIONS(4134), + [anon_sym_u8R_DQUOTE] = ACTIONS(4134), + [anon_sym_co_await] = ACTIONS(4132), + [anon_sym_new] = ACTIONS(4132), + [anon_sym_requires] = ACTIONS(4132), + [anon_sym_CARET_CARET] = ACTIONS(4134), + [anon_sym_LBRACK_COLON] = ACTIONS(4134), + [sym_this] = ACTIONS(4132), + }, + [STATE(899)] = { + [ts_builtin_sym_end] = ACTIONS(4106), + [sym_identifier] = ACTIONS(4104), + [aux_sym_preproc_include_token1] = ACTIONS(4104), + [aux_sym_preproc_def_token1] = ACTIONS(4104), + [aux_sym_preproc_if_token1] = ACTIONS(4104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4104), + [sym_preproc_directive] = ACTIONS(4104), + [anon_sym_LPAREN2] = ACTIONS(4106), + [anon_sym_BANG] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4104), + [anon_sym_PLUS] = ACTIONS(4104), + [anon_sym_STAR] = ACTIONS(4106), + [anon_sym_AMP_AMP] = ACTIONS(4106), + [anon_sym_AMP] = ACTIONS(4104), + [anon_sym_SEMI] = ACTIONS(4106), + [anon_sym___extension__] = ACTIONS(4104), + [anon_sym_typedef] = ACTIONS(4104), + [anon_sym_virtual] = ACTIONS(4104), + [anon_sym_extern] = ACTIONS(4104), + [anon_sym___attribute__] = ACTIONS(4104), + [anon_sym___attribute] = ACTIONS(4104), + [anon_sym_using] = ACTIONS(4104), + [anon_sym_COLON_COLON] = ACTIONS(4106), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4106), + [anon_sym___declspec] = ACTIONS(4104), + [anon_sym___based] = ACTIONS(4104), + [anon_sym___cdecl] = ACTIONS(4104), + [anon_sym___clrcall] = ACTIONS(4104), + [anon_sym___stdcall] = ACTIONS(4104), + [anon_sym___fastcall] = ACTIONS(4104), + [anon_sym___thiscall] = ACTIONS(4104), + [anon_sym___vectorcall] = ACTIONS(4104), + [anon_sym_LBRACE] = ACTIONS(4106), + [anon_sym_signed] = ACTIONS(4104), + [anon_sym_unsigned] = ACTIONS(4104), + [anon_sym_long] = ACTIONS(4104), + [anon_sym_short] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_static] = ACTIONS(4104), + [anon_sym_register] = ACTIONS(4104), + [anon_sym_inline] = ACTIONS(4104), + [anon_sym___inline] = ACTIONS(4104), + [anon_sym___inline__] = ACTIONS(4104), + [anon_sym___forceinline] = ACTIONS(4104), + [anon_sym_thread_local] = ACTIONS(4104), + [anon_sym___thread] = ACTIONS(4104), + [anon_sym_const] = ACTIONS(4104), + [anon_sym_constexpr] = ACTIONS(4104), + [anon_sym_volatile] = ACTIONS(4104), + [anon_sym_restrict] = ACTIONS(4104), + [anon_sym___restrict__] = ACTIONS(4104), + [anon_sym__Atomic] = ACTIONS(4104), + [anon_sym__Noreturn] = ACTIONS(4104), + [anon_sym_noreturn] = ACTIONS(4104), + [anon_sym__Nonnull] = ACTIONS(4104), + [anon_sym_mutable] = ACTIONS(4104), + [anon_sym_constinit] = ACTIONS(4104), + [anon_sym_consteval] = ACTIONS(4104), + [anon_sym_alignas] = ACTIONS(4104), + [anon_sym__Alignas] = ACTIONS(4104), + [sym_primitive_type] = ACTIONS(4104), + [anon_sym_enum] = ACTIONS(4104), + [anon_sym_class] = ACTIONS(4104), + [anon_sym_struct] = ACTIONS(4104), + [anon_sym_union] = ACTIONS(4104), + [anon_sym_if] = ACTIONS(4104), + [anon_sym_switch] = ACTIONS(4104), + [anon_sym_case] = ACTIONS(4104), + [anon_sym_default] = ACTIONS(4104), + [anon_sym_while] = ACTIONS(4104), + [anon_sym_do] = ACTIONS(4104), + [anon_sym_for] = ACTIONS(4104), + [anon_sym_return] = ACTIONS(4104), + [anon_sym_break] = ACTIONS(4104), + [anon_sym_continue] = ACTIONS(4104), + [anon_sym_goto] = ACTIONS(4104), + [anon_sym_not] = ACTIONS(4104), + [anon_sym_compl] = ACTIONS(4104), + [anon_sym_DASH_DASH] = ACTIONS(4106), + [anon_sym_PLUS_PLUS] = ACTIONS(4106), + [anon_sym_sizeof] = ACTIONS(4104), + [anon_sym___alignof__] = ACTIONS(4104), + [anon_sym___alignof] = ACTIONS(4104), + [anon_sym__alignof] = ACTIONS(4104), + [anon_sym_alignof] = ACTIONS(4104), + [anon_sym__Alignof] = ACTIONS(4104), + [anon_sym_offsetof] = ACTIONS(4104), + [anon_sym__Generic] = ACTIONS(4104), + [anon_sym_typename] = ACTIONS(4104), + [anon_sym_asm] = ACTIONS(4104), + [anon_sym___asm__] = ACTIONS(4104), + [anon_sym___asm] = ACTIONS(4104), + [sym_number_literal] = ACTIONS(4106), + [anon_sym_L_SQUOTE] = ACTIONS(4106), + [anon_sym_u_SQUOTE] = ACTIONS(4106), + [anon_sym_U_SQUOTE] = ACTIONS(4106), + [anon_sym_u8_SQUOTE] = ACTIONS(4106), + [anon_sym_SQUOTE] = ACTIONS(4106), + [anon_sym_L_DQUOTE] = ACTIONS(4106), + [anon_sym_u_DQUOTE] = ACTIONS(4106), + [anon_sym_U_DQUOTE] = ACTIONS(4106), + [anon_sym_u8_DQUOTE] = ACTIONS(4106), + [anon_sym_DQUOTE] = ACTIONS(4106), + [sym_true] = ACTIONS(4104), + [sym_false] = ACTIONS(4104), + [anon_sym_NULL] = ACTIONS(4104), + [anon_sym_nullptr] = ACTIONS(4104), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4104), + [anon_sym_decltype] = ACTIONS(4104), + [anon_sym_explicit] = ACTIONS(4104), + [anon_sym_export] = ACTIONS(4104), + [anon_sym_module] = ACTIONS(4104), + [anon_sym_import] = ACTIONS(4104), + [anon_sym_template] = ACTIONS(4104), + [anon_sym_operator] = ACTIONS(4104), + [anon_sym_try] = ACTIONS(4104), + [anon_sym_delete] = ACTIONS(4104), + [anon_sym_throw] = ACTIONS(4104), + [anon_sym_namespace] = ACTIONS(4104), + [anon_sym_static_assert] = ACTIONS(4104), + [anon_sym_concept] = ACTIONS(4104), + [anon_sym_co_return] = ACTIONS(4104), + [anon_sym_co_yield] = ACTIONS(4104), + [anon_sym_R_DQUOTE] = ACTIONS(4106), + [anon_sym_LR_DQUOTE] = ACTIONS(4106), + [anon_sym_uR_DQUOTE] = ACTIONS(4106), + [anon_sym_UR_DQUOTE] = ACTIONS(4106), + [anon_sym_u8R_DQUOTE] = ACTIONS(4106), + [anon_sym_co_await] = ACTIONS(4104), + [anon_sym_new] = ACTIONS(4104), + [anon_sym_requires] = ACTIONS(4104), + [anon_sym_CARET_CARET] = ACTIONS(4106), + [anon_sym_LBRACK_COLON] = ACTIONS(4106), + [sym_this] = ACTIONS(4104), + }, + [STATE(900)] = { + [ts_builtin_sym_end] = ACTIONS(4456), + [sym_identifier] = ACTIONS(4454), + [aux_sym_preproc_include_token1] = ACTIONS(4454), + [aux_sym_preproc_def_token1] = ACTIONS(4454), + [aux_sym_preproc_if_token1] = ACTIONS(4454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4454), + [sym_preproc_directive] = ACTIONS(4454), + [anon_sym_LPAREN2] = ACTIONS(4456), + [anon_sym_BANG] = ACTIONS(4456), + [anon_sym_TILDE] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4454), + [anon_sym_STAR] = ACTIONS(4456), + [anon_sym_AMP_AMP] = ACTIONS(4456), + [anon_sym_AMP] = ACTIONS(4454), + [anon_sym_SEMI] = ACTIONS(4456), + [anon_sym___extension__] = ACTIONS(4454), + [anon_sym_typedef] = ACTIONS(4454), + [anon_sym_virtual] = ACTIONS(4454), + [anon_sym_extern] = ACTIONS(4454), + [anon_sym___attribute__] = ACTIONS(4454), + [anon_sym___attribute] = ACTIONS(4454), + [anon_sym_using] = ACTIONS(4454), + [anon_sym_COLON_COLON] = ACTIONS(4456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4456), + [anon_sym___declspec] = ACTIONS(4454), + [anon_sym___based] = ACTIONS(4454), + [anon_sym___cdecl] = ACTIONS(4454), + [anon_sym___clrcall] = ACTIONS(4454), + [anon_sym___stdcall] = ACTIONS(4454), + [anon_sym___fastcall] = ACTIONS(4454), + [anon_sym___thiscall] = ACTIONS(4454), + [anon_sym___vectorcall] = ACTIONS(4454), + [anon_sym_LBRACE] = ACTIONS(4456), + [anon_sym_signed] = ACTIONS(4454), + [anon_sym_unsigned] = ACTIONS(4454), + [anon_sym_long] = ACTIONS(4454), + [anon_sym_short] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_static] = ACTIONS(4454), + [anon_sym_register] = ACTIONS(4454), + [anon_sym_inline] = ACTIONS(4454), + [anon_sym___inline] = ACTIONS(4454), + [anon_sym___inline__] = ACTIONS(4454), + [anon_sym___forceinline] = ACTIONS(4454), + [anon_sym_thread_local] = ACTIONS(4454), + [anon_sym___thread] = ACTIONS(4454), + [anon_sym_const] = ACTIONS(4454), + [anon_sym_constexpr] = ACTIONS(4454), + [anon_sym_volatile] = ACTIONS(4454), + [anon_sym_restrict] = ACTIONS(4454), + [anon_sym___restrict__] = ACTIONS(4454), + [anon_sym__Atomic] = ACTIONS(4454), + [anon_sym__Noreturn] = ACTIONS(4454), + [anon_sym_noreturn] = ACTIONS(4454), + [anon_sym__Nonnull] = ACTIONS(4454), + [anon_sym_mutable] = ACTIONS(4454), + [anon_sym_constinit] = ACTIONS(4454), + [anon_sym_consteval] = ACTIONS(4454), + [anon_sym_alignas] = ACTIONS(4454), + [anon_sym__Alignas] = ACTIONS(4454), + [sym_primitive_type] = ACTIONS(4454), + [anon_sym_enum] = ACTIONS(4454), + [anon_sym_class] = ACTIONS(4454), + [anon_sym_struct] = ACTIONS(4454), + [anon_sym_union] = ACTIONS(4454), + [anon_sym_if] = ACTIONS(4454), + [anon_sym_switch] = ACTIONS(4454), + [anon_sym_case] = ACTIONS(4454), + [anon_sym_default] = ACTIONS(4454), + [anon_sym_while] = ACTIONS(4454), + [anon_sym_do] = ACTIONS(4454), + [anon_sym_for] = ACTIONS(4454), + [anon_sym_return] = ACTIONS(4454), + [anon_sym_break] = ACTIONS(4454), + [anon_sym_continue] = ACTIONS(4454), + [anon_sym_goto] = ACTIONS(4454), + [anon_sym_not] = ACTIONS(4454), + [anon_sym_compl] = ACTIONS(4454), + [anon_sym_DASH_DASH] = ACTIONS(4456), + [anon_sym_PLUS_PLUS] = ACTIONS(4456), + [anon_sym_sizeof] = ACTIONS(4454), + [anon_sym___alignof__] = ACTIONS(4454), + [anon_sym___alignof] = ACTIONS(4454), + [anon_sym__alignof] = ACTIONS(4454), + [anon_sym_alignof] = ACTIONS(4454), + [anon_sym__Alignof] = ACTIONS(4454), + [anon_sym_offsetof] = ACTIONS(4454), + [anon_sym__Generic] = ACTIONS(4454), + [anon_sym_typename] = ACTIONS(4454), + [anon_sym_asm] = ACTIONS(4454), + [anon_sym___asm__] = ACTIONS(4454), + [anon_sym___asm] = ACTIONS(4454), + [sym_number_literal] = ACTIONS(4456), + [anon_sym_L_SQUOTE] = ACTIONS(4456), + [anon_sym_u_SQUOTE] = ACTIONS(4456), + [anon_sym_U_SQUOTE] = ACTIONS(4456), + [anon_sym_u8_SQUOTE] = ACTIONS(4456), + [anon_sym_SQUOTE] = ACTIONS(4456), + [anon_sym_L_DQUOTE] = ACTIONS(4456), + [anon_sym_u_DQUOTE] = ACTIONS(4456), + [anon_sym_U_DQUOTE] = ACTIONS(4456), + [anon_sym_u8_DQUOTE] = ACTIONS(4456), + [anon_sym_DQUOTE] = ACTIONS(4456), + [sym_true] = ACTIONS(4454), + [sym_false] = ACTIONS(4454), + [anon_sym_NULL] = ACTIONS(4454), + [anon_sym_nullptr] = ACTIONS(4454), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4454), + [anon_sym_decltype] = ACTIONS(4454), + [anon_sym_explicit] = ACTIONS(4454), + [anon_sym_export] = ACTIONS(4454), + [anon_sym_module] = ACTIONS(4454), + [anon_sym_import] = ACTIONS(4454), + [anon_sym_template] = ACTIONS(4454), + [anon_sym_operator] = ACTIONS(4454), + [anon_sym_try] = ACTIONS(4454), + [anon_sym_delete] = ACTIONS(4454), + [anon_sym_throw] = ACTIONS(4454), + [anon_sym_namespace] = ACTIONS(4454), + [anon_sym_static_assert] = ACTIONS(4454), + [anon_sym_concept] = ACTIONS(4454), + [anon_sym_co_return] = ACTIONS(4454), + [anon_sym_co_yield] = ACTIONS(4454), + [anon_sym_R_DQUOTE] = ACTIONS(4456), + [anon_sym_LR_DQUOTE] = ACTIONS(4456), + [anon_sym_uR_DQUOTE] = ACTIONS(4456), + [anon_sym_UR_DQUOTE] = ACTIONS(4456), + [anon_sym_u8R_DQUOTE] = ACTIONS(4456), + [anon_sym_co_await] = ACTIONS(4454), + [anon_sym_new] = ACTIONS(4454), + [anon_sym_requires] = ACTIONS(4454), + [anon_sym_CARET_CARET] = ACTIONS(4456), + [anon_sym_LBRACK_COLON] = ACTIONS(4456), + [sym_this] = ACTIONS(4454), + }, + [STATE(901)] = { + [ts_builtin_sym_end] = ACTIONS(4460), + [sym_identifier] = ACTIONS(4458), + [aux_sym_preproc_include_token1] = ACTIONS(4458), + [aux_sym_preproc_def_token1] = ACTIONS(4458), + [aux_sym_preproc_if_token1] = ACTIONS(4458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4458), + [sym_preproc_directive] = ACTIONS(4458), + [anon_sym_LPAREN2] = ACTIONS(4460), + [anon_sym_BANG] = ACTIONS(4460), + [anon_sym_TILDE] = ACTIONS(4460), + [anon_sym_DASH] = ACTIONS(4458), + [anon_sym_PLUS] = ACTIONS(4458), + [anon_sym_STAR] = ACTIONS(4460), + [anon_sym_AMP_AMP] = ACTIONS(4460), + [anon_sym_AMP] = ACTIONS(4458), + [anon_sym_SEMI] = ACTIONS(4460), + [anon_sym___extension__] = ACTIONS(4458), + [anon_sym_typedef] = ACTIONS(4458), + [anon_sym_virtual] = ACTIONS(4458), + [anon_sym_extern] = ACTIONS(4458), + [anon_sym___attribute__] = ACTIONS(4458), + [anon_sym___attribute] = ACTIONS(4458), + [anon_sym_using] = ACTIONS(4458), + [anon_sym_COLON_COLON] = ACTIONS(4460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4460), + [anon_sym___declspec] = ACTIONS(4458), + [anon_sym___based] = ACTIONS(4458), + [anon_sym___cdecl] = ACTIONS(4458), + [anon_sym___clrcall] = ACTIONS(4458), + [anon_sym___stdcall] = ACTIONS(4458), + [anon_sym___fastcall] = ACTIONS(4458), + [anon_sym___thiscall] = ACTIONS(4458), + [anon_sym___vectorcall] = ACTIONS(4458), + [anon_sym_LBRACE] = ACTIONS(4460), + [anon_sym_signed] = ACTIONS(4458), + [anon_sym_unsigned] = ACTIONS(4458), + [anon_sym_long] = ACTIONS(4458), + [anon_sym_short] = ACTIONS(4458), + [anon_sym_LBRACK] = ACTIONS(4458), + [anon_sym_static] = ACTIONS(4458), + [anon_sym_register] = ACTIONS(4458), + [anon_sym_inline] = ACTIONS(4458), + [anon_sym___inline] = ACTIONS(4458), + [anon_sym___inline__] = ACTIONS(4458), + [anon_sym___forceinline] = ACTIONS(4458), + [anon_sym_thread_local] = ACTIONS(4458), + [anon_sym___thread] = ACTIONS(4458), + [anon_sym_const] = ACTIONS(4458), + [anon_sym_constexpr] = ACTIONS(4458), + [anon_sym_volatile] = ACTIONS(4458), + [anon_sym_restrict] = ACTIONS(4458), + [anon_sym___restrict__] = ACTIONS(4458), + [anon_sym__Atomic] = ACTIONS(4458), + [anon_sym__Noreturn] = ACTIONS(4458), + [anon_sym_noreturn] = ACTIONS(4458), + [anon_sym__Nonnull] = ACTIONS(4458), + [anon_sym_mutable] = ACTIONS(4458), + [anon_sym_constinit] = ACTIONS(4458), + [anon_sym_consteval] = ACTIONS(4458), + [anon_sym_alignas] = ACTIONS(4458), + [anon_sym__Alignas] = ACTIONS(4458), + [sym_primitive_type] = ACTIONS(4458), + [anon_sym_enum] = ACTIONS(4458), + [anon_sym_class] = ACTIONS(4458), + [anon_sym_struct] = ACTIONS(4458), + [anon_sym_union] = ACTIONS(4458), + [anon_sym_if] = ACTIONS(4458), + [anon_sym_switch] = ACTIONS(4458), + [anon_sym_case] = ACTIONS(4458), + [anon_sym_default] = ACTIONS(4458), + [anon_sym_while] = ACTIONS(4458), + [anon_sym_do] = ACTIONS(4458), + [anon_sym_for] = ACTIONS(4458), + [anon_sym_return] = ACTIONS(4458), + [anon_sym_break] = ACTIONS(4458), + [anon_sym_continue] = ACTIONS(4458), + [anon_sym_goto] = ACTIONS(4458), + [anon_sym_not] = ACTIONS(4458), + [anon_sym_compl] = ACTIONS(4458), + [anon_sym_DASH_DASH] = ACTIONS(4460), + [anon_sym_PLUS_PLUS] = ACTIONS(4460), + [anon_sym_sizeof] = ACTIONS(4458), + [anon_sym___alignof__] = ACTIONS(4458), + [anon_sym___alignof] = ACTIONS(4458), + [anon_sym__alignof] = ACTIONS(4458), + [anon_sym_alignof] = ACTIONS(4458), + [anon_sym__Alignof] = ACTIONS(4458), + [anon_sym_offsetof] = ACTIONS(4458), + [anon_sym__Generic] = ACTIONS(4458), + [anon_sym_typename] = ACTIONS(4458), + [anon_sym_asm] = ACTIONS(4458), + [anon_sym___asm__] = ACTIONS(4458), + [anon_sym___asm] = ACTIONS(4458), + [sym_number_literal] = ACTIONS(4460), + [anon_sym_L_SQUOTE] = ACTIONS(4460), + [anon_sym_u_SQUOTE] = ACTIONS(4460), + [anon_sym_U_SQUOTE] = ACTIONS(4460), + [anon_sym_u8_SQUOTE] = ACTIONS(4460), + [anon_sym_SQUOTE] = ACTIONS(4460), + [anon_sym_L_DQUOTE] = ACTIONS(4460), + [anon_sym_u_DQUOTE] = ACTIONS(4460), + [anon_sym_U_DQUOTE] = ACTIONS(4460), + [anon_sym_u8_DQUOTE] = ACTIONS(4460), + [anon_sym_DQUOTE] = ACTIONS(4460), + [sym_true] = ACTIONS(4458), + [sym_false] = ACTIONS(4458), + [anon_sym_NULL] = ACTIONS(4458), + [anon_sym_nullptr] = ACTIONS(4458), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4458), + [anon_sym_decltype] = ACTIONS(4458), + [anon_sym_explicit] = ACTIONS(4458), + [anon_sym_export] = ACTIONS(4458), + [anon_sym_module] = ACTIONS(4458), + [anon_sym_import] = ACTIONS(4458), + [anon_sym_template] = ACTIONS(4458), + [anon_sym_operator] = ACTIONS(4458), + [anon_sym_try] = ACTIONS(4458), + [anon_sym_delete] = ACTIONS(4458), + [anon_sym_throw] = ACTIONS(4458), + [anon_sym_namespace] = ACTIONS(4458), + [anon_sym_static_assert] = ACTIONS(4458), + [anon_sym_concept] = ACTIONS(4458), + [anon_sym_co_return] = ACTIONS(4458), + [anon_sym_co_yield] = ACTIONS(4458), + [anon_sym_R_DQUOTE] = ACTIONS(4460), + [anon_sym_LR_DQUOTE] = ACTIONS(4460), + [anon_sym_uR_DQUOTE] = ACTIONS(4460), + [anon_sym_UR_DQUOTE] = ACTIONS(4460), + [anon_sym_u8R_DQUOTE] = ACTIONS(4460), + [anon_sym_co_await] = ACTIONS(4458), + [anon_sym_new] = ACTIONS(4458), + [anon_sym_requires] = ACTIONS(4458), + [anon_sym_CARET_CARET] = ACTIONS(4460), + [anon_sym_LBRACK_COLON] = ACTIONS(4460), + [sym_this] = ACTIONS(4458), + }, + [STATE(902)] = { + [ts_builtin_sym_end] = ACTIONS(4464), + [sym_identifier] = ACTIONS(4462), + [aux_sym_preproc_include_token1] = ACTIONS(4462), + [aux_sym_preproc_def_token1] = ACTIONS(4462), + [aux_sym_preproc_if_token1] = ACTIONS(4462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4462), + [sym_preproc_directive] = ACTIONS(4462), + [anon_sym_LPAREN2] = ACTIONS(4464), + [anon_sym_BANG] = ACTIONS(4464), + [anon_sym_TILDE] = ACTIONS(4464), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_AMP] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4464), + [anon_sym___extension__] = ACTIONS(4462), + [anon_sym_typedef] = ACTIONS(4462), + [anon_sym_virtual] = ACTIONS(4462), + [anon_sym_extern] = ACTIONS(4462), + [anon_sym___attribute__] = ACTIONS(4462), + [anon_sym___attribute] = ACTIONS(4462), + [anon_sym_using] = ACTIONS(4462), + [anon_sym_COLON_COLON] = ACTIONS(4464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4464), + [anon_sym___declspec] = ACTIONS(4462), + [anon_sym___based] = ACTIONS(4462), + [anon_sym___cdecl] = ACTIONS(4462), + [anon_sym___clrcall] = ACTIONS(4462), + [anon_sym___stdcall] = ACTIONS(4462), + [anon_sym___fastcall] = ACTIONS(4462), + [anon_sym___thiscall] = ACTIONS(4462), + [anon_sym___vectorcall] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_signed] = ACTIONS(4462), + [anon_sym_unsigned] = ACTIONS(4462), + [anon_sym_long] = ACTIONS(4462), + [anon_sym_short] = ACTIONS(4462), + [anon_sym_LBRACK] = ACTIONS(4462), + [anon_sym_static] = ACTIONS(4462), + [anon_sym_register] = ACTIONS(4462), + [anon_sym_inline] = ACTIONS(4462), + [anon_sym___inline] = ACTIONS(4462), + [anon_sym___inline__] = ACTIONS(4462), + [anon_sym___forceinline] = ACTIONS(4462), + [anon_sym_thread_local] = ACTIONS(4462), + [anon_sym___thread] = ACTIONS(4462), + [anon_sym_const] = ACTIONS(4462), + [anon_sym_constexpr] = ACTIONS(4462), + [anon_sym_volatile] = ACTIONS(4462), + [anon_sym_restrict] = ACTIONS(4462), + [anon_sym___restrict__] = ACTIONS(4462), + [anon_sym__Atomic] = ACTIONS(4462), + [anon_sym__Noreturn] = ACTIONS(4462), + [anon_sym_noreturn] = ACTIONS(4462), + [anon_sym__Nonnull] = ACTIONS(4462), + [anon_sym_mutable] = ACTIONS(4462), + [anon_sym_constinit] = ACTIONS(4462), + [anon_sym_consteval] = ACTIONS(4462), + [anon_sym_alignas] = ACTIONS(4462), + [anon_sym__Alignas] = ACTIONS(4462), + [sym_primitive_type] = ACTIONS(4462), + [anon_sym_enum] = ACTIONS(4462), + [anon_sym_class] = ACTIONS(4462), + [anon_sym_struct] = ACTIONS(4462), + [anon_sym_union] = ACTIONS(4462), + [anon_sym_if] = ACTIONS(4462), + [anon_sym_switch] = ACTIONS(4462), + [anon_sym_case] = ACTIONS(4462), + [anon_sym_default] = ACTIONS(4462), + [anon_sym_while] = ACTIONS(4462), + [anon_sym_do] = ACTIONS(4462), + [anon_sym_for] = ACTIONS(4462), + [anon_sym_return] = ACTIONS(4462), + [anon_sym_break] = ACTIONS(4462), + [anon_sym_continue] = ACTIONS(4462), + [anon_sym_goto] = ACTIONS(4462), + [anon_sym_not] = ACTIONS(4462), + [anon_sym_compl] = ACTIONS(4462), + [anon_sym_DASH_DASH] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4464), + [anon_sym_sizeof] = ACTIONS(4462), + [anon_sym___alignof__] = ACTIONS(4462), + [anon_sym___alignof] = ACTIONS(4462), + [anon_sym__alignof] = ACTIONS(4462), + [anon_sym_alignof] = ACTIONS(4462), + [anon_sym__Alignof] = ACTIONS(4462), + [anon_sym_offsetof] = ACTIONS(4462), + [anon_sym__Generic] = ACTIONS(4462), + [anon_sym_typename] = ACTIONS(4462), + [anon_sym_asm] = ACTIONS(4462), + [anon_sym___asm__] = ACTIONS(4462), + [anon_sym___asm] = ACTIONS(4462), + [sym_number_literal] = ACTIONS(4464), + [anon_sym_L_SQUOTE] = ACTIONS(4464), + [anon_sym_u_SQUOTE] = ACTIONS(4464), + [anon_sym_U_SQUOTE] = ACTIONS(4464), + [anon_sym_u8_SQUOTE] = ACTIONS(4464), + [anon_sym_SQUOTE] = ACTIONS(4464), + [anon_sym_L_DQUOTE] = ACTIONS(4464), + [anon_sym_u_DQUOTE] = ACTIONS(4464), + [anon_sym_U_DQUOTE] = ACTIONS(4464), + [anon_sym_u8_DQUOTE] = ACTIONS(4464), + [anon_sym_DQUOTE] = ACTIONS(4464), + [sym_true] = ACTIONS(4462), + [sym_false] = ACTIONS(4462), + [anon_sym_NULL] = ACTIONS(4462), + [anon_sym_nullptr] = ACTIONS(4462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4462), + [anon_sym_decltype] = ACTIONS(4462), + [anon_sym_explicit] = ACTIONS(4462), + [anon_sym_export] = ACTIONS(4462), + [anon_sym_module] = ACTIONS(4462), + [anon_sym_import] = ACTIONS(4462), + [anon_sym_template] = ACTIONS(4462), + [anon_sym_operator] = ACTIONS(4462), + [anon_sym_try] = ACTIONS(4462), + [anon_sym_delete] = ACTIONS(4462), + [anon_sym_throw] = ACTIONS(4462), + [anon_sym_namespace] = ACTIONS(4462), + [anon_sym_static_assert] = ACTIONS(4462), + [anon_sym_concept] = ACTIONS(4462), + [anon_sym_co_return] = ACTIONS(4462), + [anon_sym_co_yield] = ACTIONS(4462), + [anon_sym_R_DQUOTE] = ACTIONS(4464), + [anon_sym_LR_DQUOTE] = ACTIONS(4464), + [anon_sym_uR_DQUOTE] = ACTIONS(4464), + [anon_sym_UR_DQUOTE] = ACTIONS(4464), + [anon_sym_u8R_DQUOTE] = ACTIONS(4464), + [anon_sym_co_await] = ACTIONS(4462), + [anon_sym_new] = ACTIONS(4462), + [anon_sym_requires] = ACTIONS(4462), + [anon_sym_CARET_CARET] = ACTIONS(4464), + [anon_sym_LBRACK_COLON] = ACTIONS(4464), + [sym_this] = ACTIONS(4462), + }, + [STATE(903)] = { + [ts_builtin_sym_end] = ACTIONS(4138), + [sym_identifier] = ACTIONS(4136), + [aux_sym_preproc_include_token1] = ACTIONS(4136), + [aux_sym_preproc_def_token1] = ACTIONS(4136), + [aux_sym_preproc_if_token1] = ACTIONS(4136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4136), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4136), + [sym_preproc_directive] = ACTIONS(4136), + [anon_sym_LPAREN2] = ACTIONS(4138), + [anon_sym_BANG] = ACTIONS(4138), + [anon_sym_TILDE] = ACTIONS(4138), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4136), + [anon_sym_STAR] = ACTIONS(4138), + [anon_sym_AMP_AMP] = ACTIONS(4138), + [anon_sym_AMP] = ACTIONS(4136), + [anon_sym_SEMI] = ACTIONS(4138), + [anon_sym___extension__] = ACTIONS(4136), + [anon_sym_typedef] = ACTIONS(4136), + [anon_sym_virtual] = ACTIONS(4136), + [anon_sym_extern] = ACTIONS(4136), + [anon_sym___attribute__] = ACTIONS(4136), + [anon_sym___attribute] = ACTIONS(4136), + [anon_sym_using] = ACTIONS(4136), + [anon_sym_COLON_COLON] = ACTIONS(4138), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4138), + [anon_sym___declspec] = ACTIONS(4136), + [anon_sym___based] = ACTIONS(4136), + [anon_sym___cdecl] = ACTIONS(4136), + [anon_sym___clrcall] = ACTIONS(4136), + [anon_sym___stdcall] = ACTIONS(4136), + [anon_sym___fastcall] = ACTIONS(4136), + [anon_sym___thiscall] = ACTIONS(4136), + [anon_sym___vectorcall] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(4138), + [anon_sym_signed] = ACTIONS(4136), + [anon_sym_unsigned] = ACTIONS(4136), + [anon_sym_long] = ACTIONS(4136), + [anon_sym_short] = ACTIONS(4136), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_static] = ACTIONS(4136), + [anon_sym_register] = ACTIONS(4136), + [anon_sym_inline] = ACTIONS(4136), + [anon_sym___inline] = ACTIONS(4136), + [anon_sym___inline__] = ACTIONS(4136), + [anon_sym___forceinline] = ACTIONS(4136), + [anon_sym_thread_local] = ACTIONS(4136), + [anon_sym___thread] = ACTIONS(4136), + [anon_sym_const] = ACTIONS(4136), + [anon_sym_constexpr] = ACTIONS(4136), + [anon_sym_volatile] = ACTIONS(4136), + [anon_sym_restrict] = ACTIONS(4136), + [anon_sym___restrict__] = ACTIONS(4136), + [anon_sym__Atomic] = ACTIONS(4136), + [anon_sym__Noreturn] = ACTIONS(4136), + [anon_sym_noreturn] = ACTIONS(4136), + [anon_sym__Nonnull] = ACTIONS(4136), + [anon_sym_mutable] = ACTIONS(4136), + [anon_sym_constinit] = ACTIONS(4136), + [anon_sym_consteval] = ACTIONS(4136), + [anon_sym_alignas] = ACTIONS(4136), + [anon_sym__Alignas] = ACTIONS(4136), + [sym_primitive_type] = ACTIONS(4136), + [anon_sym_enum] = ACTIONS(4136), + [anon_sym_class] = ACTIONS(4136), + [anon_sym_struct] = ACTIONS(4136), + [anon_sym_union] = ACTIONS(4136), + [anon_sym_if] = ACTIONS(4136), + [anon_sym_switch] = ACTIONS(4136), + [anon_sym_case] = ACTIONS(4136), + [anon_sym_default] = ACTIONS(4136), + [anon_sym_while] = ACTIONS(4136), + [anon_sym_do] = ACTIONS(4136), + [anon_sym_for] = ACTIONS(4136), + [anon_sym_return] = ACTIONS(4136), + [anon_sym_break] = ACTIONS(4136), + [anon_sym_continue] = ACTIONS(4136), + [anon_sym_goto] = ACTIONS(4136), + [anon_sym_not] = ACTIONS(4136), + [anon_sym_compl] = ACTIONS(4136), + [anon_sym_DASH_DASH] = ACTIONS(4138), + [anon_sym_PLUS_PLUS] = ACTIONS(4138), + [anon_sym_sizeof] = ACTIONS(4136), + [anon_sym___alignof__] = ACTIONS(4136), + [anon_sym___alignof] = ACTIONS(4136), + [anon_sym__alignof] = ACTIONS(4136), + [anon_sym_alignof] = ACTIONS(4136), + [anon_sym__Alignof] = ACTIONS(4136), + [anon_sym_offsetof] = ACTIONS(4136), + [anon_sym__Generic] = ACTIONS(4136), + [anon_sym_typename] = ACTIONS(4136), + [anon_sym_asm] = ACTIONS(4136), + [anon_sym___asm__] = ACTIONS(4136), + [anon_sym___asm] = ACTIONS(4136), + [sym_number_literal] = ACTIONS(4138), + [anon_sym_L_SQUOTE] = ACTIONS(4138), + [anon_sym_u_SQUOTE] = ACTIONS(4138), + [anon_sym_U_SQUOTE] = ACTIONS(4138), + [anon_sym_u8_SQUOTE] = ACTIONS(4138), + [anon_sym_SQUOTE] = ACTIONS(4138), + [anon_sym_L_DQUOTE] = ACTIONS(4138), + [anon_sym_u_DQUOTE] = ACTIONS(4138), + [anon_sym_U_DQUOTE] = ACTIONS(4138), + [anon_sym_u8_DQUOTE] = ACTIONS(4138), + [anon_sym_DQUOTE] = ACTIONS(4138), + [sym_true] = ACTIONS(4136), + [sym_false] = ACTIONS(4136), + [anon_sym_NULL] = ACTIONS(4136), + [anon_sym_nullptr] = ACTIONS(4136), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4136), + [anon_sym_decltype] = ACTIONS(4136), + [anon_sym_explicit] = ACTIONS(4136), + [anon_sym_export] = ACTIONS(4136), + [anon_sym_module] = ACTIONS(4136), + [anon_sym_import] = ACTIONS(4136), + [anon_sym_template] = ACTIONS(4136), + [anon_sym_operator] = ACTIONS(4136), + [anon_sym_try] = ACTIONS(4136), + [anon_sym_delete] = ACTIONS(4136), + [anon_sym_throw] = ACTIONS(4136), + [anon_sym_namespace] = ACTIONS(4136), + [anon_sym_static_assert] = ACTIONS(4136), + [anon_sym_concept] = ACTIONS(4136), + [anon_sym_co_return] = ACTIONS(4136), + [anon_sym_co_yield] = ACTIONS(4136), + [anon_sym_R_DQUOTE] = ACTIONS(4138), + [anon_sym_LR_DQUOTE] = ACTIONS(4138), + [anon_sym_uR_DQUOTE] = ACTIONS(4138), + [anon_sym_UR_DQUOTE] = ACTIONS(4138), + [anon_sym_u8R_DQUOTE] = ACTIONS(4138), + [anon_sym_co_await] = ACTIONS(4136), + [anon_sym_new] = ACTIONS(4136), + [anon_sym_requires] = ACTIONS(4136), + [anon_sym_CARET_CARET] = ACTIONS(4138), + [anon_sym_LBRACK_COLON] = ACTIONS(4138), + [sym_this] = ACTIONS(4136), + }, + [STATE(904)] = { + [ts_builtin_sym_end] = ACTIONS(4142), + [sym_identifier] = ACTIONS(4140), + [aux_sym_preproc_include_token1] = ACTIONS(4140), + [aux_sym_preproc_def_token1] = ACTIONS(4140), + [aux_sym_preproc_if_token1] = ACTIONS(4140), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4140), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4140), + [sym_preproc_directive] = ACTIONS(4140), + [anon_sym_LPAREN2] = ACTIONS(4142), + [anon_sym_BANG] = ACTIONS(4142), + [anon_sym_TILDE] = ACTIONS(4142), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4142), + [anon_sym_AMP_AMP] = ACTIONS(4142), + [anon_sym_AMP] = ACTIONS(4140), + [anon_sym_SEMI] = ACTIONS(4142), + [anon_sym___extension__] = ACTIONS(4140), + [anon_sym_typedef] = ACTIONS(4140), + [anon_sym_virtual] = ACTIONS(4140), + [anon_sym_extern] = ACTIONS(4140), + [anon_sym___attribute__] = ACTIONS(4140), + [anon_sym___attribute] = ACTIONS(4140), + [anon_sym_using] = ACTIONS(4140), + [anon_sym_COLON_COLON] = ACTIONS(4142), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4142), + [anon_sym___declspec] = ACTIONS(4140), + [anon_sym___based] = ACTIONS(4140), + [anon_sym___cdecl] = ACTIONS(4140), + [anon_sym___clrcall] = ACTIONS(4140), + [anon_sym___stdcall] = ACTIONS(4140), + [anon_sym___fastcall] = ACTIONS(4140), + [anon_sym___thiscall] = ACTIONS(4140), + [anon_sym___vectorcall] = ACTIONS(4140), + [anon_sym_LBRACE] = ACTIONS(4142), + [anon_sym_signed] = ACTIONS(4140), + [anon_sym_unsigned] = ACTIONS(4140), + [anon_sym_long] = ACTIONS(4140), + [anon_sym_short] = ACTIONS(4140), + [anon_sym_LBRACK] = ACTIONS(4140), + [anon_sym_static] = ACTIONS(4140), + [anon_sym_register] = ACTIONS(4140), + [anon_sym_inline] = ACTIONS(4140), + [anon_sym___inline] = ACTIONS(4140), + [anon_sym___inline__] = ACTIONS(4140), + [anon_sym___forceinline] = ACTIONS(4140), + [anon_sym_thread_local] = ACTIONS(4140), + [anon_sym___thread] = ACTIONS(4140), + [anon_sym_const] = ACTIONS(4140), + [anon_sym_constexpr] = ACTIONS(4140), + [anon_sym_volatile] = ACTIONS(4140), + [anon_sym_restrict] = ACTIONS(4140), + [anon_sym___restrict__] = ACTIONS(4140), + [anon_sym__Atomic] = ACTIONS(4140), + [anon_sym__Noreturn] = ACTIONS(4140), + [anon_sym_noreturn] = ACTIONS(4140), + [anon_sym__Nonnull] = ACTIONS(4140), + [anon_sym_mutable] = ACTIONS(4140), + [anon_sym_constinit] = ACTIONS(4140), + [anon_sym_consteval] = ACTIONS(4140), + [anon_sym_alignas] = ACTIONS(4140), + [anon_sym__Alignas] = ACTIONS(4140), + [sym_primitive_type] = ACTIONS(4140), + [anon_sym_enum] = ACTIONS(4140), + [anon_sym_class] = ACTIONS(4140), + [anon_sym_struct] = ACTIONS(4140), + [anon_sym_union] = ACTIONS(4140), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_switch] = ACTIONS(4140), + [anon_sym_case] = ACTIONS(4140), + [anon_sym_default] = ACTIONS(4140), + [anon_sym_while] = ACTIONS(4140), + [anon_sym_do] = ACTIONS(4140), + [anon_sym_for] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_goto] = ACTIONS(4140), + [anon_sym_not] = ACTIONS(4140), + [anon_sym_compl] = ACTIONS(4140), + [anon_sym_DASH_DASH] = ACTIONS(4142), + [anon_sym_PLUS_PLUS] = ACTIONS(4142), + [anon_sym_sizeof] = ACTIONS(4140), + [anon_sym___alignof__] = ACTIONS(4140), + [anon_sym___alignof] = ACTIONS(4140), + [anon_sym__alignof] = ACTIONS(4140), + [anon_sym_alignof] = ACTIONS(4140), + [anon_sym__Alignof] = ACTIONS(4140), + [anon_sym_offsetof] = ACTIONS(4140), + [anon_sym__Generic] = ACTIONS(4140), + [anon_sym_typename] = ACTIONS(4140), + [anon_sym_asm] = ACTIONS(4140), + [anon_sym___asm__] = ACTIONS(4140), + [anon_sym___asm] = ACTIONS(4140), + [sym_number_literal] = ACTIONS(4142), + [anon_sym_L_SQUOTE] = ACTIONS(4142), + [anon_sym_u_SQUOTE] = ACTIONS(4142), + [anon_sym_U_SQUOTE] = ACTIONS(4142), + [anon_sym_u8_SQUOTE] = ACTIONS(4142), + [anon_sym_SQUOTE] = ACTIONS(4142), + [anon_sym_L_DQUOTE] = ACTIONS(4142), + [anon_sym_u_DQUOTE] = ACTIONS(4142), + [anon_sym_U_DQUOTE] = ACTIONS(4142), + [anon_sym_u8_DQUOTE] = ACTIONS(4142), + [anon_sym_DQUOTE] = ACTIONS(4142), + [sym_true] = ACTIONS(4140), + [sym_false] = ACTIONS(4140), + [anon_sym_NULL] = ACTIONS(4140), + [anon_sym_nullptr] = ACTIONS(4140), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4140), + [anon_sym_decltype] = ACTIONS(4140), + [anon_sym_explicit] = ACTIONS(4140), + [anon_sym_export] = ACTIONS(4140), + [anon_sym_module] = ACTIONS(4140), + [anon_sym_import] = ACTIONS(4140), + [anon_sym_template] = ACTIONS(4140), + [anon_sym_operator] = ACTIONS(4140), + [anon_sym_try] = ACTIONS(4140), + [anon_sym_delete] = ACTIONS(4140), + [anon_sym_throw] = ACTIONS(4140), + [anon_sym_namespace] = ACTIONS(4140), + [anon_sym_static_assert] = ACTIONS(4140), + [anon_sym_concept] = ACTIONS(4140), + [anon_sym_co_return] = ACTIONS(4140), + [anon_sym_co_yield] = ACTIONS(4140), + [anon_sym_R_DQUOTE] = ACTIONS(4142), + [anon_sym_LR_DQUOTE] = ACTIONS(4142), + [anon_sym_uR_DQUOTE] = ACTIONS(4142), + [anon_sym_UR_DQUOTE] = ACTIONS(4142), + [anon_sym_u8R_DQUOTE] = ACTIONS(4142), + [anon_sym_co_await] = ACTIONS(4140), + [anon_sym_new] = ACTIONS(4140), + [anon_sym_requires] = ACTIONS(4140), + [anon_sym_CARET_CARET] = ACTIONS(4142), + [anon_sym_LBRACK_COLON] = ACTIONS(4142), + [sym_this] = ACTIONS(4140), + }, + [STATE(905)] = { + [ts_builtin_sym_end] = ACTIONS(4146), + [sym_identifier] = ACTIONS(4144), + [aux_sym_preproc_include_token1] = ACTIONS(4144), + [aux_sym_preproc_def_token1] = ACTIONS(4144), + [aux_sym_preproc_if_token1] = ACTIONS(4144), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4144), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4144), + [sym_preproc_directive] = ACTIONS(4144), + [anon_sym_LPAREN2] = ACTIONS(4146), + [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_TILDE] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4144), + [anon_sym_STAR] = ACTIONS(4146), + [anon_sym_AMP_AMP] = ACTIONS(4146), + [anon_sym_AMP] = ACTIONS(4144), + [anon_sym_SEMI] = ACTIONS(4146), + [anon_sym___extension__] = ACTIONS(4144), + [anon_sym_typedef] = ACTIONS(4144), + [anon_sym_virtual] = ACTIONS(4144), + [anon_sym_extern] = ACTIONS(4144), + [anon_sym___attribute__] = ACTIONS(4144), + [anon_sym___attribute] = ACTIONS(4144), + [anon_sym_using] = ACTIONS(4144), + [anon_sym_COLON_COLON] = ACTIONS(4146), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4146), + [anon_sym___declspec] = ACTIONS(4144), + [anon_sym___based] = ACTIONS(4144), + [anon_sym___cdecl] = ACTIONS(4144), + [anon_sym___clrcall] = ACTIONS(4144), + [anon_sym___stdcall] = ACTIONS(4144), + [anon_sym___fastcall] = ACTIONS(4144), + [anon_sym___thiscall] = ACTIONS(4144), + [anon_sym___vectorcall] = ACTIONS(4144), + [anon_sym_LBRACE] = ACTIONS(4146), + [anon_sym_signed] = ACTIONS(4144), + [anon_sym_unsigned] = ACTIONS(4144), + [anon_sym_long] = ACTIONS(4144), + [anon_sym_short] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_static] = ACTIONS(4144), + [anon_sym_register] = ACTIONS(4144), + [anon_sym_inline] = ACTIONS(4144), + [anon_sym___inline] = ACTIONS(4144), + [anon_sym___inline__] = ACTIONS(4144), + [anon_sym___forceinline] = ACTIONS(4144), + [anon_sym_thread_local] = ACTIONS(4144), + [anon_sym___thread] = ACTIONS(4144), + [anon_sym_const] = ACTIONS(4144), + [anon_sym_constexpr] = ACTIONS(4144), + [anon_sym_volatile] = ACTIONS(4144), + [anon_sym_restrict] = ACTIONS(4144), + [anon_sym___restrict__] = ACTIONS(4144), + [anon_sym__Atomic] = ACTIONS(4144), + [anon_sym__Noreturn] = ACTIONS(4144), + [anon_sym_noreturn] = ACTIONS(4144), + [anon_sym__Nonnull] = ACTIONS(4144), + [anon_sym_mutable] = ACTIONS(4144), + [anon_sym_constinit] = ACTIONS(4144), + [anon_sym_consteval] = ACTIONS(4144), + [anon_sym_alignas] = ACTIONS(4144), + [anon_sym__Alignas] = ACTIONS(4144), + [sym_primitive_type] = ACTIONS(4144), + [anon_sym_enum] = ACTIONS(4144), + [anon_sym_class] = ACTIONS(4144), + [anon_sym_struct] = ACTIONS(4144), + [anon_sym_union] = ACTIONS(4144), + [anon_sym_if] = ACTIONS(4144), + [anon_sym_switch] = ACTIONS(4144), + [anon_sym_case] = ACTIONS(4144), + [anon_sym_default] = ACTIONS(4144), + [anon_sym_while] = ACTIONS(4144), + [anon_sym_do] = ACTIONS(4144), + [anon_sym_for] = ACTIONS(4144), + [anon_sym_return] = ACTIONS(4144), + [anon_sym_break] = ACTIONS(4144), + [anon_sym_continue] = ACTIONS(4144), + [anon_sym_goto] = ACTIONS(4144), + [anon_sym_not] = ACTIONS(4144), + [anon_sym_compl] = ACTIONS(4144), + [anon_sym_DASH_DASH] = ACTIONS(4146), + [anon_sym_PLUS_PLUS] = ACTIONS(4146), + [anon_sym_sizeof] = ACTIONS(4144), + [anon_sym___alignof__] = ACTIONS(4144), + [anon_sym___alignof] = ACTIONS(4144), + [anon_sym__alignof] = ACTIONS(4144), + [anon_sym_alignof] = ACTIONS(4144), + [anon_sym__Alignof] = ACTIONS(4144), + [anon_sym_offsetof] = ACTIONS(4144), + [anon_sym__Generic] = ACTIONS(4144), + [anon_sym_typename] = ACTIONS(4144), + [anon_sym_asm] = ACTIONS(4144), + [anon_sym___asm__] = ACTIONS(4144), + [anon_sym___asm] = ACTIONS(4144), + [sym_number_literal] = ACTIONS(4146), + [anon_sym_L_SQUOTE] = ACTIONS(4146), + [anon_sym_u_SQUOTE] = ACTIONS(4146), + [anon_sym_U_SQUOTE] = ACTIONS(4146), + [anon_sym_u8_SQUOTE] = ACTIONS(4146), + [anon_sym_SQUOTE] = ACTIONS(4146), + [anon_sym_L_DQUOTE] = ACTIONS(4146), + [anon_sym_u_DQUOTE] = ACTIONS(4146), + [anon_sym_U_DQUOTE] = ACTIONS(4146), + [anon_sym_u8_DQUOTE] = ACTIONS(4146), + [anon_sym_DQUOTE] = ACTIONS(4146), + [sym_true] = ACTIONS(4144), + [sym_false] = ACTIONS(4144), + [anon_sym_NULL] = ACTIONS(4144), + [anon_sym_nullptr] = ACTIONS(4144), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4144), + [anon_sym_decltype] = ACTIONS(4144), + [anon_sym_explicit] = ACTIONS(4144), + [anon_sym_export] = ACTIONS(4144), + [anon_sym_module] = ACTIONS(4144), + [anon_sym_import] = ACTIONS(4144), + [anon_sym_template] = ACTIONS(4144), + [anon_sym_operator] = ACTIONS(4144), + [anon_sym_try] = ACTIONS(4144), + [anon_sym_delete] = ACTIONS(4144), + [anon_sym_throw] = ACTIONS(4144), + [anon_sym_namespace] = ACTIONS(4144), + [anon_sym_static_assert] = ACTIONS(4144), + [anon_sym_concept] = ACTIONS(4144), + [anon_sym_co_return] = ACTIONS(4144), + [anon_sym_co_yield] = ACTIONS(4144), + [anon_sym_R_DQUOTE] = ACTIONS(4146), + [anon_sym_LR_DQUOTE] = ACTIONS(4146), + [anon_sym_uR_DQUOTE] = ACTIONS(4146), + [anon_sym_UR_DQUOTE] = ACTIONS(4146), + [anon_sym_u8R_DQUOTE] = ACTIONS(4146), + [anon_sym_co_await] = ACTIONS(4144), + [anon_sym_new] = ACTIONS(4144), + [anon_sym_requires] = ACTIONS(4144), + [anon_sym_CARET_CARET] = ACTIONS(4146), + [anon_sym_LBRACK_COLON] = ACTIONS(4146), + [sym_this] = ACTIONS(4144), + }, + [STATE(906)] = { + [sym_identifier] = ACTIONS(4510), + [aux_sym_preproc_include_token1] = ACTIONS(4510), + [aux_sym_preproc_def_token1] = ACTIONS(4510), + [aux_sym_preproc_if_token1] = ACTIONS(4510), + [aux_sym_preproc_if_token2] = ACTIONS(4510), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4510), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4510), + [sym_preproc_directive] = ACTIONS(4510), + [anon_sym_LPAREN2] = ACTIONS(4512), + [anon_sym_BANG] = ACTIONS(4512), + [anon_sym_TILDE] = ACTIONS(4512), + [anon_sym_DASH] = ACTIONS(4510), + [anon_sym_PLUS] = ACTIONS(4510), + [anon_sym_STAR] = ACTIONS(4512), + [anon_sym_AMP_AMP] = ACTIONS(4512), + [anon_sym_AMP] = ACTIONS(4510), + [anon_sym_SEMI] = ACTIONS(4512), + [anon_sym___extension__] = ACTIONS(4510), + [anon_sym_typedef] = ACTIONS(4510), + [anon_sym_virtual] = ACTIONS(4510), + [anon_sym_extern] = ACTIONS(4510), + [anon_sym___attribute__] = ACTIONS(4510), + [anon_sym___attribute] = ACTIONS(4510), + [anon_sym_using] = ACTIONS(4510), + [anon_sym_COLON_COLON] = ACTIONS(4512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4512), + [anon_sym___declspec] = ACTIONS(4510), + [anon_sym___based] = ACTIONS(4510), + [anon_sym___cdecl] = ACTIONS(4510), + [anon_sym___clrcall] = ACTIONS(4510), + [anon_sym___stdcall] = ACTIONS(4510), + [anon_sym___fastcall] = ACTIONS(4510), + [anon_sym___thiscall] = ACTIONS(4510), + [anon_sym___vectorcall] = ACTIONS(4510), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_signed] = ACTIONS(4510), + [anon_sym_unsigned] = ACTIONS(4510), + [anon_sym_long] = ACTIONS(4510), + [anon_sym_short] = ACTIONS(4510), + [anon_sym_LBRACK] = ACTIONS(4510), + [anon_sym_static] = ACTIONS(4510), + [anon_sym_register] = ACTIONS(4510), + [anon_sym_inline] = ACTIONS(4510), + [anon_sym___inline] = ACTIONS(4510), + [anon_sym___inline__] = ACTIONS(4510), + [anon_sym___forceinline] = ACTIONS(4510), + [anon_sym_thread_local] = ACTIONS(4510), + [anon_sym___thread] = ACTIONS(4510), + [anon_sym_const] = ACTIONS(4510), + [anon_sym_constexpr] = ACTIONS(4510), + [anon_sym_volatile] = ACTIONS(4510), + [anon_sym_restrict] = ACTIONS(4510), + [anon_sym___restrict__] = ACTIONS(4510), + [anon_sym__Atomic] = ACTIONS(4510), + [anon_sym__Noreturn] = ACTIONS(4510), + [anon_sym_noreturn] = ACTIONS(4510), + [anon_sym__Nonnull] = ACTIONS(4510), + [anon_sym_mutable] = ACTIONS(4510), + [anon_sym_constinit] = ACTIONS(4510), + [anon_sym_consteval] = ACTIONS(4510), + [anon_sym_alignas] = ACTIONS(4510), + [anon_sym__Alignas] = ACTIONS(4510), + [sym_primitive_type] = ACTIONS(4510), + [anon_sym_enum] = ACTIONS(4510), + [anon_sym_class] = ACTIONS(4510), + [anon_sym_struct] = ACTIONS(4510), + [anon_sym_union] = ACTIONS(4510), + [anon_sym_if] = ACTIONS(4510), + [anon_sym_switch] = ACTIONS(4510), + [anon_sym_case] = ACTIONS(4510), + [anon_sym_default] = ACTIONS(4510), + [anon_sym_while] = ACTIONS(4510), + [anon_sym_do] = ACTIONS(4510), + [anon_sym_for] = ACTIONS(4510), + [anon_sym_return] = ACTIONS(4510), + [anon_sym_break] = ACTIONS(4510), + [anon_sym_continue] = ACTIONS(4510), + [anon_sym_goto] = ACTIONS(4510), + [anon_sym_not] = ACTIONS(4510), + [anon_sym_compl] = ACTIONS(4510), + [anon_sym_DASH_DASH] = ACTIONS(4512), + [anon_sym_PLUS_PLUS] = ACTIONS(4512), + [anon_sym_sizeof] = ACTIONS(4510), + [anon_sym___alignof__] = ACTIONS(4510), + [anon_sym___alignof] = ACTIONS(4510), + [anon_sym__alignof] = ACTIONS(4510), + [anon_sym_alignof] = ACTIONS(4510), + [anon_sym__Alignof] = ACTIONS(4510), + [anon_sym_offsetof] = ACTIONS(4510), + [anon_sym__Generic] = ACTIONS(4510), + [anon_sym_typename] = ACTIONS(4510), + [anon_sym_asm] = ACTIONS(4510), + [anon_sym___asm__] = ACTIONS(4510), + [anon_sym___asm] = ACTIONS(4510), + [sym_number_literal] = ACTIONS(4512), + [anon_sym_L_SQUOTE] = ACTIONS(4512), + [anon_sym_u_SQUOTE] = ACTIONS(4512), + [anon_sym_U_SQUOTE] = ACTIONS(4512), + [anon_sym_u8_SQUOTE] = ACTIONS(4512), + [anon_sym_SQUOTE] = ACTIONS(4512), + [anon_sym_L_DQUOTE] = ACTIONS(4512), + [anon_sym_u_DQUOTE] = ACTIONS(4512), + [anon_sym_U_DQUOTE] = ACTIONS(4512), + [anon_sym_u8_DQUOTE] = ACTIONS(4512), + [anon_sym_DQUOTE] = ACTIONS(4512), + [sym_true] = ACTIONS(4510), + [sym_false] = ACTIONS(4510), + [anon_sym_NULL] = ACTIONS(4510), + [anon_sym_nullptr] = ACTIONS(4510), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4510), + [anon_sym_decltype] = ACTIONS(4510), + [anon_sym_explicit] = ACTIONS(4510), + [anon_sym_export] = ACTIONS(4510), + [anon_sym_module] = ACTIONS(4510), + [anon_sym_import] = ACTIONS(4510), + [anon_sym_template] = ACTIONS(4510), + [anon_sym_operator] = ACTIONS(4510), + [anon_sym_try] = ACTIONS(4510), + [anon_sym_delete] = ACTIONS(4510), + [anon_sym_throw] = ACTIONS(4510), + [anon_sym_namespace] = ACTIONS(4510), + [anon_sym_static_assert] = ACTIONS(4510), + [anon_sym_concept] = ACTIONS(4510), + [anon_sym_co_return] = ACTIONS(4510), + [anon_sym_co_yield] = ACTIONS(4510), + [anon_sym_R_DQUOTE] = ACTIONS(4512), + [anon_sym_LR_DQUOTE] = ACTIONS(4512), + [anon_sym_uR_DQUOTE] = ACTIONS(4512), + [anon_sym_UR_DQUOTE] = ACTIONS(4512), + [anon_sym_u8R_DQUOTE] = ACTIONS(4512), + [anon_sym_co_await] = ACTIONS(4510), + [anon_sym_new] = ACTIONS(4510), + [anon_sym_requires] = ACTIONS(4510), + [anon_sym_CARET_CARET] = ACTIONS(4512), + [anon_sym_LBRACK_COLON] = ACTIONS(4512), + [sym_this] = ACTIONS(4510), + }, + [STATE(907)] = { + [sym_identifier] = ACTIONS(4514), + [aux_sym_preproc_include_token1] = ACTIONS(4514), + [aux_sym_preproc_def_token1] = ACTIONS(4514), + [aux_sym_preproc_if_token1] = ACTIONS(4514), + [aux_sym_preproc_if_token2] = ACTIONS(4514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4514), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4514), + [sym_preproc_directive] = ACTIONS(4514), + [anon_sym_LPAREN2] = ACTIONS(4516), + [anon_sym_BANG] = ACTIONS(4516), + [anon_sym_TILDE] = ACTIONS(4516), + [anon_sym_DASH] = ACTIONS(4514), + [anon_sym_PLUS] = ACTIONS(4514), + [anon_sym_STAR] = ACTIONS(4516), + [anon_sym_AMP_AMP] = ACTIONS(4516), + [anon_sym_AMP] = ACTIONS(4514), + [anon_sym_SEMI] = ACTIONS(4516), + [anon_sym___extension__] = ACTIONS(4514), + [anon_sym_typedef] = ACTIONS(4514), + [anon_sym_virtual] = ACTIONS(4514), + [anon_sym_extern] = ACTIONS(4514), + [anon_sym___attribute__] = ACTIONS(4514), + [anon_sym___attribute] = ACTIONS(4514), + [anon_sym_using] = ACTIONS(4514), + [anon_sym_COLON_COLON] = ACTIONS(4516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4516), + [anon_sym___declspec] = ACTIONS(4514), + [anon_sym___based] = ACTIONS(4514), + [anon_sym___cdecl] = ACTIONS(4514), + [anon_sym___clrcall] = ACTIONS(4514), + [anon_sym___stdcall] = ACTIONS(4514), + [anon_sym___fastcall] = ACTIONS(4514), + [anon_sym___thiscall] = ACTIONS(4514), + [anon_sym___vectorcall] = ACTIONS(4514), + [anon_sym_LBRACE] = ACTIONS(4516), + [anon_sym_signed] = ACTIONS(4514), + [anon_sym_unsigned] = ACTIONS(4514), + [anon_sym_long] = ACTIONS(4514), + [anon_sym_short] = ACTIONS(4514), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym_static] = ACTIONS(4514), + [anon_sym_register] = ACTIONS(4514), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym___inline] = ACTIONS(4514), + [anon_sym___inline__] = ACTIONS(4514), + [anon_sym___forceinline] = ACTIONS(4514), + [anon_sym_thread_local] = ACTIONS(4514), + [anon_sym___thread] = ACTIONS(4514), + [anon_sym_const] = ACTIONS(4514), + [anon_sym_constexpr] = ACTIONS(4514), + [anon_sym_volatile] = ACTIONS(4514), + [anon_sym_restrict] = ACTIONS(4514), + [anon_sym___restrict__] = ACTIONS(4514), + [anon_sym__Atomic] = ACTIONS(4514), + [anon_sym__Noreturn] = ACTIONS(4514), + [anon_sym_noreturn] = ACTIONS(4514), + [anon_sym__Nonnull] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4514), + [anon_sym_constinit] = ACTIONS(4514), + [anon_sym_consteval] = ACTIONS(4514), + [anon_sym_alignas] = ACTIONS(4514), + [anon_sym__Alignas] = ACTIONS(4514), + [sym_primitive_type] = ACTIONS(4514), + [anon_sym_enum] = ACTIONS(4514), + [anon_sym_class] = ACTIONS(4514), + [anon_sym_struct] = ACTIONS(4514), + [anon_sym_union] = ACTIONS(4514), + [anon_sym_if] = ACTIONS(4514), + [anon_sym_switch] = ACTIONS(4514), + [anon_sym_case] = ACTIONS(4514), + [anon_sym_default] = ACTIONS(4514), + [anon_sym_while] = ACTIONS(4514), + [anon_sym_do] = ACTIONS(4514), + [anon_sym_for] = ACTIONS(4514), + [anon_sym_return] = ACTIONS(4514), + [anon_sym_break] = ACTIONS(4514), + [anon_sym_continue] = ACTIONS(4514), + [anon_sym_goto] = ACTIONS(4514), + [anon_sym_not] = ACTIONS(4514), + [anon_sym_compl] = ACTIONS(4514), + [anon_sym_DASH_DASH] = ACTIONS(4516), + [anon_sym_PLUS_PLUS] = ACTIONS(4516), + [anon_sym_sizeof] = ACTIONS(4514), + [anon_sym___alignof__] = ACTIONS(4514), + [anon_sym___alignof] = ACTIONS(4514), + [anon_sym__alignof] = ACTIONS(4514), + [anon_sym_alignof] = ACTIONS(4514), + [anon_sym__Alignof] = ACTIONS(4514), + [anon_sym_offsetof] = ACTIONS(4514), + [anon_sym__Generic] = ACTIONS(4514), + [anon_sym_typename] = ACTIONS(4514), + [anon_sym_asm] = ACTIONS(4514), + [anon_sym___asm__] = ACTIONS(4514), + [anon_sym___asm] = ACTIONS(4514), + [sym_number_literal] = ACTIONS(4516), + [anon_sym_L_SQUOTE] = ACTIONS(4516), + [anon_sym_u_SQUOTE] = ACTIONS(4516), + [anon_sym_U_SQUOTE] = ACTIONS(4516), + [anon_sym_u8_SQUOTE] = ACTIONS(4516), + [anon_sym_SQUOTE] = ACTIONS(4516), + [anon_sym_L_DQUOTE] = ACTIONS(4516), + [anon_sym_u_DQUOTE] = ACTIONS(4516), + [anon_sym_U_DQUOTE] = ACTIONS(4516), + [anon_sym_u8_DQUOTE] = ACTIONS(4516), + [anon_sym_DQUOTE] = ACTIONS(4516), + [sym_true] = ACTIONS(4514), + [sym_false] = ACTIONS(4514), + [anon_sym_NULL] = ACTIONS(4514), + [anon_sym_nullptr] = ACTIONS(4514), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4514), + [anon_sym_decltype] = ACTIONS(4514), + [anon_sym_explicit] = ACTIONS(4514), + [anon_sym_export] = ACTIONS(4514), + [anon_sym_module] = ACTIONS(4514), + [anon_sym_import] = ACTIONS(4514), + [anon_sym_template] = ACTIONS(4514), + [anon_sym_operator] = ACTIONS(4514), + [anon_sym_try] = ACTIONS(4514), + [anon_sym_delete] = ACTIONS(4514), + [anon_sym_throw] = ACTIONS(4514), + [anon_sym_namespace] = ACTIONS(4514), + [anon_sym_static_assert] = ACTIONS(4514), + [anon_sym_concept] = ACTIONS(4514), + [anon_sym_co_return] = ACTIONS(4514), + [anon_sym_co_yield] = ACTIONS(4514), + [anon_sym_R_DQUOTE] = ACTIONS(4516), + [anon_sym_LR_DQUOTE] = ACTIONS(4516), + [anon_sym_uR_DQUOTE] = ACTIONS(4516), + [anon_sym_UR_DQUOTE] = ACTIONS(4516), + [anon_sym_u8R_DQUOTE] = ACTIONS(4516), + [anon_sym_co_await] = ACTIONS(4514), + [anon_sym_new] = ACTIONS(4514), + [anon_sym_requires] = ACTIONS(4514), + [anon_sym_CARET_CARET] = ACTIONS(4516), + [anon_sym_LBRACK_COLON] = ACTIONS(4516), + [sym_this] = ACTIONS(4514), + }, + [STATE(908)] = { + [sym_preproc_def] = STATE(914), + [sym_preproc_function_def] = STATE(914), + [sym_preproc_call] = STATE(914), + [sym_preproc_if_in_field_declaration_list] = STATE(914), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(914), + [sym_type_definition] = STATE(914), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8092), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(914), + [sym_field_declaration] = STATE(914), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(914), + [sym_operator_cast] = STATE(9211), + [sym_inline_method_definition] = STATE(914), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(914), + [sym_operator_cast_declaration] = STATE(914), + [sym_constructor_or_destructor_definition] = STATE(914), + [sym_constructor_or_destructor_declaration] = STATE(914), + [sym_friend_declaration] = STATE(914), + [sym_access_specifier] = STATE(11030), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(914), + [sym_alias_declaration] = STATE(914), + [sym_static_assert_declaration] = STATE(914), + [sym_consteval_block_declaration] = STATE(914), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(914), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9455), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(4686), + [aux_sym_preproc_if_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), + [sym_preproc_directive] = ACTIONS(4692), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(4765), + [anon_sym___extension__] = ACTIONS(4696), + [anon_sym_typedef] = ACTIONS(4698), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(5132), - [anon_sym_COLON_COLON] = ACTIONS(5100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(4700), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_RBRACE] = ACTIONS(4767), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_LBRACK] = ACTIONS(3460), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -193801,7 +189184,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4342), + [anon_sym_constexpr] = ACTIONS(4704), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -193811,862 +189194,821 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4706), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(4346), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(4708), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4348), - [anon_sym_concept] = ACTIONS(5134), - [anon_sym_requires] = ACTIONS(5106), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(4712), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(996)] = { - [sym_function_definition] = STATE(773), - [sym_declaration] = STATE(773), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4663), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8557), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__empty_declaration] = STATE(773), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2397), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(773), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2397), - [sym_operator_cast_definition] = STATE(773), - [sym_operator_cast_declaration] = STATE(773), - [sym_constructor_or_destructor_definition] = STATE(773), - [sym_constructor_or_destructor_declaration] = STATE(773), - [sym_friend_declaration] = STATE(773), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_alias_declaration] = STATE(773), - [sym_concept_definition] = STATE(773), - [sym_requires_clause] = STATE(1007), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7652), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2397), - [sym_identifier] = ACTIONS(5096), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(5100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(5138), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), + [STATE(909)] = { + [ts_builtin_sym_end] = ACTIONS(4150), + [sym_identifier] = ACTIONS(4148), + [aux_sym_preproc_include_token1] = ACTIONS(4148), + [aux_sym_preproc_def_token1] = ACTIONS(4148), + [aux_sym_preproc_if_token1] = ACTIONS(4148), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4148), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4148), + [sym_preproc_directive] = ACTIONS(4148), + [anon_sym_LPAREN2] = ACTIONS(4150), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_TILDE] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4148), + [anon_sym_PLUS] = ACTIONS(4148), + [anon_sym_STAR] = ACTIONS(4150), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_AMP] = ACTIONS(4148), + [anon_sym_SEMI] = ACTIONS(4150), + [anon_sym___extension__] = ACTIONS(4148), + [anon_sym_typedef] = ACTIONS(4148), + [anon_sym_virtual] = ACTIONS(4148), + [anon_sym_extern] = ACTIONS(4148), + [anon_sym___attribute__] = ACTIONS(4148), + [anon_sym___attribute] = ACTIONS(4148), + [anon_sym_using] = ACTIONS(4148), + [anon_sym_COLON_COLON] = ACTIONS(4150), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4150), + [anon_sym___declspec] = ACTIONS(4148), + [anon_sym___based] = ACTIONS(4148), + [anon_sym___cdecl] = ACTIONS(4148), + [anon_sym___clrcall] = ACTIONS(4148), + [anon_sym___stdcall] = ACTIONS(4148), + [anon_sym___fastcall] = ACTIONS(4148), + [anon_sym___thiscall] = ACTIONS(4148), + [anon_sym___vectorcall] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4150), + [anon_sym_signed] = ACTIONS(4148), + [anon_sym_unsigned] = ACTIONS(4148), + [anon_sym_long] = ACTIONS(4148), + [anon_sym_short] = ACTIONS(4148), + [anon_sym_LBRACK] = ACTIONS(4148), + [anon_sym_static] = ACTIONS(4148), + [anon_sym_register] = ACTIONS(4148), + [anon_sym_inline] = ACTIONS(4148), + [anon_sym___inline] = ACTIONS(4148), + [anon_sym___inline__] = ACTIONS(4148), + [anon_sym___forceinline] = ACTIONS(4148), + [anon_sym_thread_local] = ACTIONS(4148), + [anon_sym___thread] = ACTIONS(4148), + [anon_sym_const] = ACTIONS(4148), + [anon_sym_constexpr] = ACTIONS(4148), + [anon_sym_volatile] = ACTIONS(4148), + [anon_sym_restrict] = ACTIONS(4148), + [anon_sym___restrict__] = ACTIONS(4148), + [anon_sym__Atomic] = ACTIONS(4148), + [anon_sym__Noreturn] = ACTIONS(4148), + [anon_sym_noreturn] = ACTIONS(4148), + [anon_sym__Nonnull] = ACTIONS(4148), + [anon_sym_mutable] = ACTIONS(4148), + [anon_sym_constinit] = ACTIONS(4148), + [anon_sym_consteval] = ACTIONS(4148), + [anon_sym_alignas] = ACTIONS(4148), + [anon_sym__Alignas] = ACTIONS(4148), + [sym_primitive_type] = ACTIONS(4148), + [anon_sym_enum] = ACTIONS(4148), + [anon_sym_class] = ACTIONS(4148), + [anon_sym_struct] = ACTIONS(4148), + [anon_sym_union] = ACTIONS(4148), + [anon_sym_if] = ACTIONS(4148), + [anon_sym_switch] = ACTIONS(4148), + [anon_sym_case] = ACTIONS(4148), + [anon_sym_default] = ACTIONS(4148), + [anon_sym_while] = ACTIONS(4148), + [anon_sym_do] = ACTIONS(4148), + [anon_sym_for] = ACTIONS(4148), + [anon_sym_return] = ACTIONS(4148), + [anon_sym_break] = ACTIONS(4148), + [anon_sym_continue] = ACTIONS(4148), + [anon_sym_goto] = ACTIONS(4148), + [anon_sym_not] = ACTIONS(4148), + [anon_sym_compl] = ACTIONS(4148), + [anon_sym_DASH_DASH] = ACTIONS(4150), + [anon_sym_PLUS_PLUS] = ACTIONS(4150), + [anon_sym_sizeof] = ACTIONS(4148), + [anon_sym___alignof__] = ACTIONS(4148), + [anon_sym___alignof] = ACTIONS(4148), + [anon_sym__alignof] = ACTIONS(4148), + [anon_sym_alignof] = ACTIONS(4148), + [anon_sym__Alignof] = ACTIONS(4148), + [anon_sym_offsetof] = ACTIONS(4148), + [anon_sym__Generic] = ACTIONS(4148), + [anon_sym_typename] = ACTIONS(4148), + [anon_sym_asm] = ACTIONS(4148), + [anon_sym___asm__] = ACTIONS(4148), + [anon_sym___asm] = ACTIONS(4148), + [sym_number_literal] = ACTIONS(4150), + [anon_sym_L_SQUOTE] = ACTIONS(4150), + [anon_sym_u_SQUOTE] = ACTIONS(4150), + [anon_sym_U_SQUOTE] = ACTIONS(4150), + [anon_sym_u8_SQUOTE] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4150), + [anon_sym_L_DQUOTE] = ACTIONS(4150), + [anon_sym_u_DQUOTE] = ACTIONS(4150), + [anon_sym_U_DQUOTE] = ACTIONS(4150), + [anon_sym_u8_DQUOTE] = ACTIONS(4150), + [anon_sym_DQUOTE] = ACTIONS(4150), + [sym_true] = ACTIONS(4148), + [sym_false] = ACTIONS(4148), + [anon_sym_NULL] = ACTIONS(4148), + [anon_sym_nullptr] = ACTIONS(4148), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5140), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(5142), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_requires] = ACTIONS(5106), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_auto] = ACTIONS(4148), + [anon_sym_decltype] = ACTIONS(4148), + [anon_sym_explicit] = ACTIONS(4148), + [anon_sym_export] = ACTIONS(4148), + [anon_sym_module] = ACTIONS(4148), + [anon_sym_import] = ACTIONS(4148), + [anon_sym_template] = ACTIONS(4148), + [anon_sym_operator] = ACTIONS(4148), + [anon_sym_try] = ACTIONS(4148), + [anon_sym_delete] = ACTIONS(4148), + [anon_sym_throw] = ACTIONS(4148), + [anon_sym_namespace] = ACTIONS(4148), + [anon_sym_static_assert] = ACTIONS(4148), + [anon_sym_concept] = ACTIONS(4148), + [anon_sym_co_return] = ACTIONS(4148), + [anon_sym_co_yield] = ACTIONS(4148), + [anon_sym_R_DQUOTE] = ACTIONS(4150), + [anon_sym_LR_DQUOTE] = ACTIONS(4150), + [anon_sym_uR_DQUOTE] = ACTIONS(4150), + [anon_sym_UR_DQUOTE] = ACTIONS(4150), + [anon_sym_u8R_DQUOTE] = ACTIONS(4150), + [anon_sym_co_await] = ACTIONS(4148), + [anon_sym_new] = ACTIONS(4148), + [anon_sym_requires] = ACTIONS(4148), + [anon_sym_CARET_CARET] = ACTIONS(4150), + [anon_sym_LBRACK_COLON] = ACTIONS(4150), + [sym_this] = ACTIONS(4148), }, - [STATE(997)] = { - [sym_function_definition] = STATE(3277), - [sym_declaration] = STATE(3277), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6283), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4663), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2621), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4342), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__empty_declaration] = STATE(3277), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(3277), - [sym_operator_cast] = STATE(9142), - [sym__constructor_specifiers] = STATE(2332), - [sym_operator_cast_definition] = STATE(3277), - [sym_operator_cast_declaration] = STATE(3277), - [sym_constructor_or_destructor_definition] = STATE(3277), - [sym_constructor_or_destructor_declaration] = STATE(3277), - [sym_friend_declaration] = STATE(3277), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_alias_declaration] = STATE(3277), - [sym_concept_definition] = STATE(3277), - [sym_requires_clause] = STATE(1000), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7652), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(5096), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(5144), - [anon_sym_COLON_COLON] = ACTIONS(5100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), + [STATE(910)] = { + [ts_builtin_sym_end] = ACTIONS(4154), + [sym_identifier] = ACTIONS(4152), + [aux_sym_preproc_include_token1] = ACTIONS(4152), + [aux_sym_preproc_def_token1] = ACTIONS(4152), + [aux_sym_preproc_if_token1] = ACTIONS(4152), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4152), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4152), + [sym_preproc_directive] = ACTIONS(4152), + [anon_sym_LPAREN2] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4154), + [anon_sym_TILDE] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym___extension__] = ACTIONS(4152), + [anon_sym_typedef] = ACTIONS(4152), + [anon_sym_virtual] = ACTIONS(4152), + [anon_sym_extern] = ACTIONS(4152), + [anon_sym___attribute__] = ACTIONS(4152), + [anon_sym___attribute] = ACTIONS(4152), + [anon_sym_using] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4154), + [anon_sym___declspec] = ACTIONS(4152), + [anon_sym___based] = ACTIONS(4152), + [anon_sym___cdecl] = ACTIONS(4152), + [anon_sym___clrcall] = ACTIONS(4152), + [anon_sym___stdcall] = ACTIONS(4152), + [anon_sym___fastcall] = ACTIONS(4152), + [anon_sym___thiscall] = ACTIONS(4152), + [anon_sym___vectorcall] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(4154), + [anon_sym_signed] = ACTIONS(4152), + [anon_sym_unsigned] = ACTIONS(4152), + [anon_sym_long] = ACTIONS(4152), + [anon_sym_short] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_static] = ACTIONS(4152), + [anon_sym_register] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym___inline] = ACTIONS(4152), + [anon_sym___inline__] = ACTIONS(4152), + [anon_sym___forceinline] = ACTIONS(4152), + [anon_sym_thread_local] = ACTIONS(4152), + [anon_sym___thread] = ACTIONS(4152), + [anon_sym_const] = ACTIONS(4152), + [anon_sym_constexpr] = ACTIONS(4152), + [anon_sym_volatile] = ACTIONS(4152), + [anon_sym_restrict] = ACTIONS(4152), + [anon_sym___restrict__] = ACTIONS(4152), + [anon_sym__Atomic] = ACTIONS(4152), + [anon_sym__Noreturn] = ACTIONS(4152), + [anon_sym_noreturn] = ACTIONS(4152), + [anon_sym__Nonnull] = ACTIONS(4152), + [anon_sym_mutable] = ACTIONS(4152), + [anon_sym_constinit] = ACTIONS(4152), + [anon_sym_consteval] = ACTIONS(4152), + [anon_sym_alignas] = ACTIONS(4152), + [anon_sym__Alignas] = ACTIONS(4152), + [sym_primitive_type] = ACTIONS(4152), + [anon_sym_enum] = ACTIONS(4152), + [anon_sym_class] = ACTIONS(4152), + [anon_sym_struct] = ACTIONS(4152), + [anon_sym_union] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4152), + [anon_sym_switch] = ACTIONS(4152), + [anon_sym_case] = ACTIONS(4152), + [anon_sym_default] = ACTIONS(4152), + [anon_sym_while] = ACTIONS(4152), + [anon_sym_do] = ACTIONS(4152), + [anon_sym_for] = ACTIONS(4152), + [anon_sym_return] = ACTIONS(4152), + [anon_sym_break] = ACTIONS(4152), + [anon_sym_continue] = ACTIONS(4152), + [anon_sym_goto] = ACTIONS(4152), + [anon_sym_not] = ACTIONS(4152), + [anon_sym_compl] = ACTIONS(4152), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_sizeof] = ACTIONS(4152), + [anon_sym___alignof__] = ACTIONS(4152), + [anon_sym___alignof] = ACTIONS(4152), + [anon_sym__alignof] = ACTIONS(4152), + [anon_sym_alignof] = ACTIONS(4152), + [anon_sym__Alignof] = ACTIONS(4152), + [anon_sym_offsetof] = ACTIONS(4152), + [anon_sym__Generic] = ACTIONS(4152), + [anon_sym_typename] = ACTIONS(4152), + [anon_sym_asm] = ACTIONS(4152), + [anon_sym___asm__] = ACTIONS(4152), + [anon_sym___asm] = ACTIONS(4152), + [sym_number_literal] = ACTIONS(4154), + [anon_sym_L_SQUOTE] = ACTIONS(4154), + [anon_sym_u_SQUOTE] = ACTIONS(4154), + [anon_sym_U_SQUOTE] = ACTIONS(4154), + [anon_sym_u8_SQUOTE] = ACTIONS(4154), + [anon_sym_SQUOTE] = ACTIONS(4154), + [anon_sym_L_DQUOTE] = ACTIONS(4154), + [anon_sym_u_DQUOTE] = ACTIONS(4154), + [anon_sym_U_DQUOTE] = ACTIONS(4154), + [anon_sym_u8_DQUOTE] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(4154), + [sym_true] = ACTIONS(4152), + [sym_false] = ACTIONS(4152), + [anon_sym_NULL] = ACTIONS(4152), + [anon_sym_nullptr] = ACTIONS(4152), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(4374), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4376), - [anon_sym_concept] = ACTIONS(5146), - [anon_sym_requires] = ACTIONS(5106), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(998)] = { - [sym_expression] = STATE(4650), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(4658), - [anon_sym_LPAREN2] = ACTIONS(5148), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(2755), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_AMP] = ACTIONS(2760), - [anon_sym___extension__] = ACTIONS(4661), - [anon_sym_COLON_COLON] = ACTIONS(4664), - [anon_sym___based] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(4673), - [anon_sym_operator] = ACTIONS(2768), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(4676), - [sym_this] = ACTIONS(2058), + [sym_auto] = ACTIONS(4152), + [anon_sym_decltype] = ACTIONS(4152), + [anon_sym_explicit] = ACTIONS(4152), + [anon_sym_export] = ACTIONS(4152), + [anon_sym_module] = ACTIONS(4152), + [anon_sym_import] = ACTIONS(4152), + [anon_sym_template] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_try] = ACTIONS(4152), + [anon_sym_delete] = ACTIONS(4152), + [anon_sym_throw] = ACTIONS(4152), + [anon_sym_namespace] = ACTIONS(4152), + [anon_sym_static_assert] = ACTIONS(4152), + [anon_sym_concept] = ACTIONS(4152), + [anon_sym_co_return] = ACTIONS(4152), + [anon_sym_co_yield] = ACTIONS(4152), + [anon_sym_R_DQUOTE] = ACTIONS(4154), + [anon_sym_LR_DQUOTE] = ACTIONS(4154), + [anon_sym_uR_DQUOTE] = ACTIONS(4154), + [anon_sym_UR_DQUOTE] = ACTIONS(4154), + [anon_sym_u8R_DQUOTE] = ACTIONS(4154), + [anon_sym_co_await] = ACTIONS(4152), + [anon_sym_new] = ACTIONS(4152), + [anon_sym_requires] = ACTIONS(4152), + [anon_sym_CARET_CARET] = ACTIONS(4154), + [anon_sym_LBRACK_COLON] = ACTIONS(4154), + [sym_this] = ACTIONS(4152), }, - [STATE(999)] = { - [sym_expression] = STATE(5058), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(4679), - [anon_sym_LPAREN2] = ACTIONS(5154), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(5157), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(5160), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_AMP] = ACTIONS(5163), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4685), - [anon_sym___based] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(4694), - [anon_sym_operator] = ACTIONS(2768), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(4697), - [sym_this] = ACTIONS(1914), + [STATE(911)] = { + [ts_builtin_sym_end] = ACTIONS(4134), + [sym_identifier] = ACTIONS(4132), + [aux_sym_preproc_include_token1] = ACTIONS(4132), + [aux_sym_preproc_def_token1] = ACTIONS(4132), + [aux_sym_preproc_if_token1] = ACTIONS(4132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4132), + [sym_preproc_directive] = ACTIONS(4132), + [anon_sym_LPAREN2] = ACTIONS(4134), + [anon_sym_BANG] = ACTIONS(4134), + [anon_sym_TILDE] = ACTIONS(4134), + [anon_sym_DASH] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4132), + [anon_sym_STAR] = ACTIONS(4134), + [anon_sym_AMP_AMP] = ACTIONS(4134), + [anon_sym_AMP] = ACTIONS(4132), + [anon_sym_SEMI] = ACTIONS(4134), + [anon_sym___extension__] = ACTIONS(4132), + [anon_sym_typedef] = ACTIONS(4132), + [anon_sym_virtual] = ACTIONS(4132), + [anon_sym_extern] = ACTIONS(4132), + [anon_sym___attribute__] = ACTIONS(4132), + [anon_sym___attribute] = ACTIONS(4132), + [anon_sym_using] = ACTIONS(4132), + [anon_sym_COLON_COLON] = ACTIONS(4134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4134), + [anon_sym___declspec] = ACTIONS(4132), + [anon_sym___based] = ACTIONS(4132), + [anon_sym___cdecl] = ACTIONS(4132), + [anon_sym___clrcall] = ACTIONS(4132), + [anon_sym___stdcall] = ACTIONS(4132), + [anon_sym___fastcall] = ACTIONS(4132), + [anon_sym___thiscall] = ACTIONS(4132), + [anon_sym___vectorcall] = ACTIONS(4132), + [anon_sym_LBRACE] = ACTIONS(4134), + [anon_sym_signed] = ACTIONS(4132), + [anon_sym_unsigned] = ACTIONS(4132), + [anon_sym_long] = ACTIONS(4132), + [anon_sym_short] = ACTIONS(4132), + [anon_sym_LBRACK] = ACTIONS(4132), + [anon_sym_static] = ACTIONS(4132), + [anon_sym_register] = ACTIONS(4132), + [anon_sym_inline] = ACTIONS(4132), + [anon_sym___inline] = ACTIONS(4132), + [anon_sym___inline__] = ACTIONS(4132), + [anon_sym___forceinline] = ACTIONS(4132), + [anon_sym_thread_local] = ACTIONS(4132), + [anon_sym___thread] = ACTIONS(4132), + [anon_sym_const] = ACTIONS(4132), + [anon_sym_constexpr] = ACTIONS(4132), + [anon_sym_volatile] = ACTIONS(4132), + [anon_sym_restrict] = ACTIONS(4132), + [anon_sym___restrict__] = ACTIONS(4132), + [anon_sym__Atomic] = ACTIONS(4132), + [anon_sym__Noreturn] = ACTIONS(4132), + [anon_sym_noreturn] = ACTIONS(4132), + [anon_sym__Nonnull] = ACTIONS(4132), + [anon_sym_mutable] = ACTIONS(4132), + [anon_sym_constinit] = ACTIONS(4132), + [anon_sym_consteval] = ACTIONS(4132), + [anon_sym_alignas] = ACTIONS(4132), + [anon_sym__Alignas] = ACTIONS(4132), + [sym_primitive_type] = ACTIONS(4132), + [anon_sym_enum] = ACTIONS(4132), + [anon_sym_class] = ACTIONS(4132), + [anon_sym_struct] = ACTIONS(4132), + [anon_sym_union] = ACTIONS(4132), + [anon_sym_if] = ACTIONS(4132), + [anon_sym_switch] = ACTIONS(4132), + [anon_sym_case] = ACTIONS(4132), + [anon_sym_default] = ACTIONS(4132), + [anon_sym_while] = ACTIONS(4132), + [anon_sym_do] = ACTIONS(4132), + [anon_sym_for] = ACTIONS(4132), + [anon_sym_return] = ACTIONS(4132), + [anon_sym_break] = ACTIONS(4132), + [anon_sym_continue] = ACTIONS(4132), + [anon_sym_goto] = ACTIONS(4132), + [anon_sym_not] = ACTIONS(4132), + [anon_sym_compl] = ACTIONS(4132), + [anon_sym_DASH_DASH] = ACTIONS(4134), + [anon_sym_PLUS_PLUS] = ACTIONS(4134), + [anon_sym_sizeof] = ACTIONS(4132), + [anon_sym___alignof__] = ACTIONS(4132), + [anon_sym___alignof] = ACTIONS(4132), + [anon_sym__alignof] = ACTIONS(4132), + [anon_sym_alignof] = ACTIONS(4132), + [anon_sym__Alignof] = ACTIONS(4132), + [anon_sym_offsetof] = ACTIONS(4132), + [anon_sym__Generic] = ACTIONS(4132), + [anon_sym_typename] = ACTIONS(4132), + [anon_sym_asm] = ACTIONS(4132), + [anon_sym___asm__] = ACTIONS(4132), + [anon_sym___asm] = ACTIONS(4132), + [sym_number_literal] = ACTIONS(4134), + [anon_sym_L_SQUOTE] = ACTIONS(4134), + [anon_sym_u_SQUOTE] = ACTIONS(4134), + [anon_sym_U_SQUOTE] = ACTIONS(4134), + [anon_sym_u8_SQUOTE] = ACTIONS(4134), + [anon_sym_SQUOTE] = ACTIONS(4134), + [anon_sym_L_DQUOTE] = ACTIONS(4134), + [anon_sym_u_DQUOTE] = ACTIONS(4134), + [anon_sym_U_DQUOTE] = ACTIONS(4134), + [anon_sym_u8_DQUOTE] = ACTIONS(4134), + [anon_sym_DQUOTE] = ACTIONS(4134), + [sym_true] = ACTIONS(4132), + [sym_false] = ACTIONS(4132), + [anon_sym_NULL] = ACTIONS(4132), + [anon_sym_nullptr] = ACTIONS(4132), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4132), + [anon_sym_decltype] = ACTIONS(4132), + [anon_sym_explicit] = ACTIONS(4132), + [anon_sym_export] = ACTIONS(4132), + [anon_sym_module] = ACTIONS(4132), + [anon_sym_import] = ACTIONS(4132), + [anon_sym_template] = ACTIONS(4132), + [anon_sym_operator] = ACTIONS(4132), + [anon_sym_try] = ACTIONS(4132), + [anon_sym_delete] = ACTIONS(4132), + [anon_sym_throw] = ACTIONS(4132), + [anon_sym_namespace] = ACTIONS(4132), + [anon_sym_static_assert] = ACTIONS(4132), + [anon_sym_concept] = ACTIONS(4132), + [anon_sym_co_return] = ACTIONS(4132), + [anon_sym_co_yield] = ACTIONS(4132), + [anon_sym_R_DQUOTE] = ACTIONS(4134), + [anon_sym_LR_DQUOTE] = ACTIONS(4134), + [anon_sym_uR_DQUOTE] = ACTIONS(4134), + [anon_sym_UR_DQUOTE] = ACTIONS(4134), + [anon_sym_u8R_DQUOTE] = ACTIONS(4134), + [anon_sym_co_await] = ACTIONS(4132), + [anon_sym_new] = ACTIONS(4132), + [anon_sym_requires] = ACTIONS(4132), + [anon_sym_CARET_CARET] = ACTIONS(4134), + [anon_sym_LBRACK_COLON] = ACTIONS(4134), + [sym_this] = ACTIONS(4132), }, - [STATE(1000)] = { - [sym_function_definition] = STATE(3365), - [sym_declaration] = STATE(3365), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6283), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4663), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2621), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8599), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4342), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__empty_declaration] = STATE(3365), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2332), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(3365), - [sym_operator_cast] = STATE(9142), - [sym__constructor_specifiers] = STATE(2332), - [sym_operator_cast_definition] = STATE(3365), - [sym_operator_cast_declaration] = STATE(3365), - [sym_constructor_or_destructor_definition] = STATE(3365), - [sym_constructor_or_destructor_declaration] = STATE(3365), - [sym_friend_declaration] = STATE(3365), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_alias_declaration] = STATE(3365), - [sym_concept_definition] = STATE(3365), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7652), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9142), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2332), - [sym_identifier] = ACTIONS(5096), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(5144), - [anon_sym_COLON_COLON] = ACTIONS(5100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4370), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), + [STATE(912)] = { + [ts_builtin_sym_end] = ACTIONS(4158), + [sym_identifier] = ACTIONS(4156), + [aux_sym_preproc_include_token1] = ACTIONS(4156), + [aux_sym_preproc_def_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), + [sym_preproc_directive] = ACTIONS(4156), + [anon_sym_LPAREN2] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4158), + [anon_sym_TILDE] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym___extension__] = ACTIONS(4156), + [anon_sym_typedef] = ACTIONS(4156), + [anon_sym_virtual] = ACTIONS(4156), + [anon_sym_extern] = ACTIONS(4156), + [anon_sym___attribute__] = ACTIONS(4156), + [anon_sym___attribute] = ACTIONS(4156), + [anon_sym_using] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4156), + [anon_sym___based] = ACTIONS(4156), + [anon_sym___cdecl] = ACTIONS(4156), + [anon_sym___clrcall] = ACTIONS(4156), + [anon_sym___stdcall] = ACTIONS(4156), + [anon_sym___fastcall] = ACTIONS(4156), + [anon_sym___thiscall] = ACTIONS(4156), + [anon_sym___vectorcall] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_signed] = ACTIONS(4156), + [anon_sym_unsigned] = ACTIONS(4156), + [anon_sym_long] = ACTIONS(4156), + [anon_sym_short] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_register] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym___inline] = ACTIONS(4156), + [anon_sym___inline__] = ACTIONS(4156), + [anon_sym___forceinline] = ACTIONS(4156), + [anon_sym_thread_local] = ACTIONS(4156), + [anon_sym___thread] = ACTIONS(4156), + [anon_sym_const] = ACTIONS(4156), + [anon_sym_constexpr] = ACTIONS(4156), + [anon_sym_volatile] = ACTIONS(4156), + [anon_sym_restrict] = ACTIONS(4156), + [anon_sym___restrict__] = ACTIONS(4156), + [anon_sym__Atomic] = ACTIONS(4156), + [anon_sym__Noreturn] = ACTIONS(4156), + [anon_sym_noreturn] = ACTIONS(4156), + [anon_sym__Nonnull] = ACTIONS(4156), + [anon_sym_mutable] = ACTIONS(4156), + [anon_sym_constinit] = ACTIONS(4156), + [anon_sym_consteval] = ACTIONS(4156), + [anon_sym_alignas] = ACTIONS(4156), + [anon_sym__Alignas] = ACTIONS(4156), + [sym_primitive_type] = ACTIONS(4156), + [anon_sym_enum] = ACTIONS(4156), + [anon_sym_class] = ACTIONS(4156), + [anon_sym_struct] = ACTIONS(4156), + [anon_sym_union] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_switch] = ACTIONS(4156), + [anon_sym_case] = ACTIONS(4156), + [anon_sym_default] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_do] = ACTIONS(4156), + [anon_sym_for] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_goto] = ACTIONS(4156), + [anon_sym_not] = ACTIONS(4156), + [anon_sym_compl] = ACTIONS(4156), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_sizeof] = ACTIONS(4156), + [anon_sym___alignof__] = ACTIONS(4156), + [anon_sym___alignof] = ACTIONS(4156), + [anon_sym__alignof] = ACTIONS(4156), + [anon_sym_alignof] = ACTIONS(4156), + [anon_sym__Alignof] = ACTIONS(4156), + [anon_sym_offsetof] = ACTIONS(4156), + [anon_sym__Generic] = ACTIONS(4156), + [anon_sym_typename] = ACTIONS(4156), + [anon_sym_asm] = ACTIONS(4156), + [anon_sym___asm__] = ACTIONS(4156), + [anon_sym___asm] = ACTIONS(4156), + [sym_number_literal] = ACTIONS(4158), + [anon_sym_L_SQUOTE] = ACTIONS(4158), + [anon_sym_u_SQUOTE] = ACTIONS(4158), + [anon_sym_U_SQUOTE] = ACTIONS(4158), + [anon_sym_u8_SQUOTE] = ACTIONS(4158), + [anon_sym_SQUOTE] = ACTIONS(4158), + [anon_sym_L_DQUOTE] = ACTIONS(4158), + [anon_sym_u_DQUOTE] = ACTIONS(4158), + [anon_sym_U_DQUOTE] = ACTIONS(4158), + [anon_sym_u8_DQUOTE] = ACTIONS(4158), + [anon_sym_DQUOTE] = ACTIONS(4158), + [sym_true] = ACTIONS(4156), + [sym_false] = ACTIONS(4156), + [anon_sym_NULL] = ACTIONS(4156), + [anon_sym_nullptr] = ACTIONS(4156), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(4374), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4376), - [anon_sym_concept] = ACTIONS(5146), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_auto] = ACTIONS(4156), + [anon_sym_decltype] = ACTIONS(4156), + [anon_sym_explicit] = ACTIONS(4156), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_module] = ACTIONS(4156), + [anon_sym_import] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_delete] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_namespace] = ACTIONS(4156), + [anon_sym_static_assert] = ACTIONS(4156), + [anon_sym_concept] = ACTIONS(4156), + [anon_sym_co_return] = ACTIONS(4156), + [anon_sym_co_yield] = ACTIONS(4156), + [anon_sym_R_DQUOTE] = ACTIONS(4158), + [anon_sym_LR_DQUOTE] = ACTIONS(4158), + [anon_sym_uR_DQUOTE] = ACTIONS(4158), + [anon_sym_UR_DQUOTE] = ACTIONS(4158), + [anon_sym_u8R_DQUOTE] = ACTIONS(4158), + [anon_sym_co_await] = ACTIONS(4156), + [anon_sym_new] = ACTIONS(4156), + [anon_sym_requires] = ACTIONS(4156), + [anon_sym_CARET_CARET] = ACTIONS(4158), + [anon_sym_LBRACK_COLON] = ACTIONS(4158), + [sym_this] = ACTIONS(4156), }, - [STATE(1001)] = { - [sym_function_definition] = STATE(432), - [sym_declaration] = STATE(432), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6273), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4663), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2618), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8585), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4302), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__empty_declaration] = STATE(432), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2410), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(432), - [sym_operator_cast] = STATE(9076), - [sym__constructor_specifiers] = STATE(2410), - [sym_operator_cast_definition] = STATE(432), - [sym_operator_cast_declaration] = STATE(432), - [sym_constructor_or_destructor_definition] = STATE(432), - [sym_constructor_or_destructor_declaration] = STATE(432), - [sym_friend_declaration] = STATE(432), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_alias_declaration] = STATE(432), - [sym_concept_definition] = STATE(432), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7652), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9076), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2410), - [sym_identifier] = ACTIONS(5096), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(5116), - [anon_sym_COLON_COLON] = ACTIONS(5100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(5118), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), + [STATE(913)] = { + [ts_builtin_sym_end] = ACTIONS(4158), + [sym_identifier] = ACTIONS(4156), + [aux_sym_preproc_include_token1] = ACTIONS(4156), + [aux_sym_preproc_def_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), + [sym_preproc_directive] = ACTIONS(4156), + [anon_sym_LPAREN2] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4158), + [anon_sym_TILDE] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4156), + [anon_sym_PLUS] = ACTIONS(4156), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym___extension__] = ACTIONS(4156), + [anon_sym_typedef] = ACTIONS(4156), + [anon_sym_virtual] = ACTIONS(4156), + [anon_sym_extern] = ACTIONS(4156), + [anon_sym___attribute__] = ACTIONS(4156), + [anon_sym___attribute] = ACTIONS(4156), + [anon_sym_using] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4156), + [anon_sym___based] = ACTIONS(4156), + [anon_sym___cdecl] = ACTIONS(4156), + [anon_sym___clrcall] = ACTIONS(4156), + [anon_sym___stdcall] = ACTIONS(4156), + [anon_sym___fastcall] = ACTIONS(4156), + [anon_sym___thiscall] = ACTIONS(4156), + [anon_sym___vectorcall] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_signed] = ACTIONS(4156), + [anon_sym_unsigned] = ACTIONS(4156), + [anon_sym_long] = ACTIONS(4156), + [anon_sym_short] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_register] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym___inline] = ACTIONS(4156), + [anon_sym___inline__] = ACTIONS(4156), + [anon_sym___forceinline] = ACTIONS(4156), + [anon_sym_thread_local] = ACTIONS(4156), + [anon_sym___thread] = ACTIONS(4156), + [anon_sym_const] = ACTIONS(4156), + [anon_sym_constexpr] = ACTIONS(4156), + [anon_sym_volatile] = ACTIONS(4156), + [anon_sym_restrict] = ACTIONS(4156), + [anon_sym___restrict__] = ACTIONS(4156), + [anon_sym__Atomic] = ACTIONS(4156), + [anon_sym__Noreturn] = ACTIONS(4156), + [anon_sym_noreturn] = ACTIONS(4156), + [anon_sym__Nonnull] = ACTIONS(4156), + [anon_sym_mutable] = ACTIONS(4156), + [anon_sym_constinit] = ACTIONS(4156), + [anon_sym_consteval] = ACTIONS(4156), + [anon_sym_alignas] = ACTIONS(4156), + [anon_sym__Alignas] = ACTIONS(4156), + [sym_primitive_type] = ACTIONS(4156), + [anon_sym_enum] = ACTIONS(4156), + [anon_sym_class] = ACTIONS(4156), + [anon_sym_struct] = ACTIONS(4156), + [anon_sym_union] = ACTIONS(4156), + [anon_sym_if] = ACTIONS(4156), + [anon_sym_switch] = ACTIONS(4156), + [anon_sym_case] = ACTIONS(4156), + [anon_sym_default] = ACTIONS(4156), + [anon_sym_while] = ACTIONS(4156), + [anon_sym_do] = ACTIONS(4156), + [anon_sym_for] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_goto] = ACTIONS(4156), + [anon_sym_not] = ACTIONS(4156), + [anon_sym_compl] = ACTIONS(4156), + [anon_sym_DASH_DASH] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4158), + [anon_sym_sizeof] = ACTIONS(4156), + [anon_sym___alignof__] = ACTIONS(4156), + [anon_sym___alignof] = ACTIONS(4156), + [anon_sym__alignof] = ACTIONS(4156), + [anon_sym_alignof] = ACTIONS(4156), + [anon_sym__Alignof] = ACTIONS(4156), + [anon_sym_offsetof] = ACTIONS(4156), + [anon_sym__Generic] = ACTIONS(4156), + [anon_sym_typename] = ACTIONS(4156), + [anon_sym_asm] = ACTIONS(4156), + [anon_sym___asm__] = ACTIONS(4156), + [anon_sym___asm] = ACTIONS(4156), + [sym_number_literal] = ACTIONS(4158), + [anon_sym_L_SQUOTE] = ACTIONS(4158), + [anon_sym_u_SQUOTE] = ACTIONS(4158), + [anon_sym_U_SQUOTE] = ACTIONS(4158), + [anon_sym_u8_SQUOTE] = ACTIONS(4158), + [anon_sym_SQUOTE] = ACTIONS(4158), + [anon_sym_L_DQUOTE] = ACTIONS(4158), + [anon_sym_u_DQUOTE] = ACTIONS(4158), + [anon_sym_U_DQUOTE] = ACTIONS(4158), + [anon_sym_u8_DQUOTE] = ACTIONS(4158), + [anon_sym_DQUOTE] = ACTIONS(4158), + [sym_true] = ACTIONS(4156), + [sym_false] = ACTIONS(4156), + [anon_sym_NULL] = ACTIONS(4156), + [anon_sym_nullptr] = ACTIONS(4156), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5120), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(5122), - [anon_sym_concept] = ACTIONS(347), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_auto] = ACTIONS(4156), + [anon_sym_decltype] = ACTIONS(4156), + [anon_sym_explicit] = ACTIONS(4156), + [anon_sym_export] = ACTIONS(4156), + [anon_sym_module] = ACTIONS(4156), + [anon_sym_import] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_try] = ACTIONS(4156), + [anon_sym_delete] = ACTIONS(4156), + [anon_sym_throw] = ACTIONS(4156), + [anon_sym_namespace] = ACTIONS(4156), + [anon_sym_static_assert] = ACTIONS(4156), + [anon_sym_concept] = ACTIONS(4156), + [anon_sym_co_return] = ACTIONS(4156), + [anon_sym_co_yield] = ACTIONS(4156), + [anon_sym_R_DQUOTE] = ACTIONS(4158), + [anon_sym_LR_DQUOTE] = ACTIONS(4158), + [anon_sym_uR_DQUOTE] = ACTIONS(4158), + [anon_sym_UR_DQUOTE] = ACTIONS(4158), + [anon_sym_u8R_DQUOTE] = ACTIONS(4158), + [anon_sym_co_await] = ACTIONS(4156), + [anon_sym_new] = ACTIONS(4156), + [anon_sym_requires] = ACTIONS(4156), + [anon_sym_CARET_CARET] = ACTIONS(4158), + [anon_sym_LBRACK_COLON] = ACTIONS(4158), + [sym_this] = ACTIONS(4156), }, - [STATE(1002)] = { - [sym_function_definition] = STATE(2751), - [sym_declaration] = STATE(2751), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6285), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4663), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2622), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8548), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4348), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__empty_declaration] = STATE(2751), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2414), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(2751), - [sym_operator_cast] = STATE(9050), - [sym__constructor_specifiers] = STATE(2414), - [sym_operator_cast_definition] = STATE(2751), - [sym_operator_cast_declaration] = STATE(2751), - [sym_constructor_or_destructor_definition] = STATE(2751), - [sym_constructor_or_destructor_declaration] = STATE(2751), - [sym_friend_declaration] = STATE(2751), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_alias_declaration] = STATE(2751), - [sym_concept_definition] = STATE(2751), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7652), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9050), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2414), - [sym_identifier] = ACTIONS(5096), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), + [STATE(914)] = { + [sym_preproc_def] = STATE(884), + [sym_preproc_function_def] = STATE(884), + [sym_preproc_call] = STATE(884), + [sym_preproc_if_in_field_declaration_list] = STATE(884), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(884), + [sym_type_definition] = STATE(884), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8092), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(884), + [sym_field_declaration] = STATE(884), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(884), + [sym_operator_cast] = STATE(9211), + [sym_inline_method_definition] = STATE(884), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(884), + [sym_operator_cast_declaration] = STATE(884), + [sym_constructor_or_destructor_definition] = STATE(884), + [sym_constructor_or_destructor_declaration] = STATE(884), + [sym_friend_declaration] = STATE(884), + [sym_access_specifier] = STATE(11030), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(884), + [sym_alias_declaration] = STATE(884), + [sym_static_assert_declaration] = STATE(884), + [sym_consteval_block_declaration] = STATE(884), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9455), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(4686), + [aux_sym_preproc_if_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), + [sym_preproc_directive] = ACTIONS(4692), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(4714), + [anon_sym___extension__] = ACTIONS(4696), + [anon_sym_typedef] = ACTIONS(4698), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(5098), - [anon_sym_COLON_COLON] = ACTIONS(5100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(4700), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_RBRACE] = ACTIONS(4769), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_LBRACK] = ACTIONS(3460), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -194676,7 +190018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3067), + [anon_sym_constexpr] = ACTIONS(4704), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -194686,1575 +190028,1377 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4706), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(3085), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(4708), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3087), - [anon_sym_concept] = ACTIONS(5104), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(4712), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(1003)] = { - [sym_function_definition] = STATE(781), - [sym_declaration] = STATE(781), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6279), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4663), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2620), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8592), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4324), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__empty_declaration] = STATE(781), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2416), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(781), - [sym_operator_cast] = STATE(9049), - [sym__constructor_specifiers] = STATE(2416), - [sym_operator_cast_definition] = STATE(781), - [sym_operator_cast_declaration] = STATE(781), - [sym_constructor_or_destructor_definition] = STATE(781), - [sym_constructor_or_destructor_declaration] = STATE(781), - [sym_friend_declaration] = STATE(781), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_alias_declaration] = STATE(781), - [sym_concept_definition] = STATE(781), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7652), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9049), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2416), - [sym_identifier] = ACTIONS(5096), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(5108), - [anon_sym_COLON_COLON] = ACTIONS(5100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(5110), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5112), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(5114), - [anon_sym_concept] = ACTIONS(1204), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [STATE(915)] = { + [ts_builtin_sym_end] = ACTIONS(4010), + [sym_identifier] = ACTIONS(4008), + [aux_sym_preproc_include_token1] = ACTIONS(4008), + [aux_sym_preproc_def_token1] = ACTIONS(4008), + [aux_sym_preproc_if_token1] = ACTIONS(4008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4008), + [sym_preproc_directive] = ACTIONS(4008), + [anon_sym_LPAREN2] = ACTIONS(4010), + [anon_sym_BANG] = ACTIONS(4010), + [anon_sym_TILDE] = ACTIONS(4010), + [anon_sym_DASH] = ACTIONS(4008), + [anon_sym_PLUS] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4010), + [anon_sym_AMP_AMP] = ACTIONS(4010), + [anon_sym_AMP] = ACTIONS(4008), + [anon_sym_SEMI] = ACTIONS(4010), + [anon_sym___extension__] = ACTIONS(4008), + [anon_sym_typedef] = ACTIONS(4008), + [anon_sym_virtual] = ACTIONS(4008), + [anon_sym_extern] = ACTIONS(4008), + [anon_sym___attribute__] = ACTIONS(4008), + [anon_sym___attribute] = ACTIONS(4008), + [anon_sym_using] = ACTIONS(4008), + [anon_sym_COLON_COLON] = ACTIONS(4010), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4010), + [anon_sym___declspec] = ACTIONS(4008), + [anon_sym___based] = ACTIONS(4008), + [anon_sym___cdecl] = ACTIONS(4008), + [anon_sym___clrcall] = ACTIONS(4008), + [anon_sym___stdcall] = ACTIONS(4008), + [anon_sym___fastcall] = ACTIONS(4008), + [anon_sym___thiscall] = ACTIONS(4008), + [anon_sym___vectorcall] = ACTIONS(4008), + [anon_sym_LBRACE] = ACTIONS(4010), + [anon_sym_signed] = ACTIONS(4008), + [anon_sym_unsigned] = ACTIONS(4008), + [anon_sym_long] = ACTIONS(4008), + [anon_sym_short] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(4008), + [anon_sym_static] = ACTIONS(4008), + [anon_sym_register] = ACTIONS(4008), + [anon_sym_inline] = ACTIONS(4008), + [anon_sym___inline] = ACTIONS(4008), + [anon_sym___inline__] = ACTIONS(4008), + [anon_sym___forceinline] = ACTIONS(4008), + [anon_sym_thread_local] = ACTIONS(4008), + [anon_sym___thread] = ACTIONS(4008), + [anon_sym_const] = ACTIONS(4008), + [anon_sym_constexpr] = ACTIONS(4008), + [anon_sym_volatile] = ACTIONS(4008), + [anon_sym_restrict] = ACTIONS(4008), + [anon_sym___restrict__] = ACTIONS(4008), + [anon_sym__Atomic] = ACTIONS(4008), + [anon_sym__Noreturn] = ACTIONS(4008), + [anon_sym_noreturn] = ACTIONS(4008), + [anon_sym__Nonnull] = ACTIONS(4008), + [anon_sym_mutable] = ACTIONS(4008), + [anon_sym_constinit] = ACTIONS(4008), + [anon_sym_consteval] = ACTIONS(4008), + [anon_sym_alignas] = ACTIONS(4008), + [anon_sym__Alignas] = ACTIONS(4008), + [sym_primitive_type] = ACTIONS(4008), + [anon_sym_enum] = ACTIONS(4008), + [anon_sym_class] = ACTIONS(4008), + [anon_sym_struct] = ACTIONS(4008), + [anon_sym_union] = ACTIONS(4008), + [anon_sym_if] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(4008), + [anon_sym_case] = ACTIONS(4008), + [anon_sym_default] = ACTIONS(4008), + [anon_sym_while] = ACTIONS(4008), + [anon_sym_do] = ACTIONS(4008), + [anon_sym_for] = ACTIONS(4008), + [anon_sym_return] = ACTIONS(4008), + [anon_sym_break] = ACTIONS(4008), + [anon_sym_continue] = ACTIONS(4008), + [anon_sym_goto] = ACTIONS(4008), + [anon_sym_not] = ACTIONS(4008), + [anon_sym_compl] = ACTIONS(4008), + [anon_sym_DASH_DASH] = ACTIONS(4010), + [anon_sym_PLUS_PLUS] = ACTIONS(4010), + [anon_sym_sizeof] = ACTIONS(4008), + [anon_sym___alignof__] = ACTIONS(4008), + [anon_sym___alignof] = ACTIONS(4008), + [anon_sym__alignof] = ACTIONS(4008), + [anon_sym_alignof] = ACTIONS(4008), + [anon_sym__Alignof] = ACTIONS(4008), + [anon_sym_offsetof] = ACTIONS(4008), + [anon_sym__Generic] = ACTIONS(4008), + [anon_sym_typename] = ACTIONS(4008), + [anon_sym_asm] = ACTIONS(4008), + [anon_sym___asm__] = ACTIONS(4008), + [anon_sym___asm] = ACTIONS(4008), + [sym_number_literal] = ACTIONS(4010), + [anon_sym_L_SQUOTE] = ACTIONS(4010), + [anon_sym_u_SQUOTE] = ACTIONS(4010), + [anon_sym_U_SQUOTE] = ACTIONS(4010), + [anon_sym_u8_SQUOTE] = ACTIONS(4010), + [anon_sym_SQUOTE] = ACTIONS(4010), + [anon_sym_L_DQUOTE] = ACTIONS(4010), + [anon_sym_u_DQUOTE] = ACTIONS(4010), + [anon_sym_U_DQUOTE] = ACTIONS(4010), + [anon_sym_u8_DQUOTE] = ACTIONS(4010), + [anon_sym_DQUOTE] = ACTIONS(4010), + [sym_true] = ACTIONS(4008), + [sym_false] = ACTIONS(4008), + [anon_sym_NULL] = ACTIONS(4008), + [anon_sym_nullptr] = ACTIONS(4008), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4008), + [anon_sym_decltype] = ACTIONS(4008), + [anon_sym_explicit] = ACTIONS(4008), + [anon_sym_export] = ACTIONS(4008), + [anon_sym_module] = ACTIONS(4008), + [anon_sym_import] = ACTIONS(4008), + [anon_sym_template] = ACTIONS(4008), + [anon_sym_operator] = ACTIONS(4008), + [anon_sym_try] = ACTIONS(4008), + [anon_sym_delete] = ACTIONS(4008), + [anon_sym_throw] = ACTIONS(4008), + [anon_sym_namespace] = ACTIONS(4008), + [anon_sym_static_assert] = ACTIONS(4008), + [anon_sym_concept] = ACTIONS(4008), + [anon_sym_co_return] = ACTIONS(4008), + [anon_sym_co_yield] = ACTIONS(4008), + [anon_sym_R_DQUOTE] = ACTIONS(4010), + [anon_sym_LR_DQUOTE] = ACTIONS(4010), + [anon_sym_uR_DQUOTE] = ACTIONS(4010), + [anon_sym_UR_DQUOTE] = ACTIONS(4010), + [anon_sym_u8R_DQUOTE] = ACTIONS(4010), + [anon_sym_co_await] = ACTIONS(4008), + [anon_sym_new] = ACTIONS(4008), + [anon_sym_requires] = ACTIONS(4008), + [anon_sym_CARET_CARET] = ACTIONS(4010), + [anon_sym_LBRACK_COLON] = ACTIONS(4010), + [sym_this] = ACTIONS(4008), }, - [STATE(1004)] = { - [sym_function_definition] = STATE(3266), - [sym_declaration] = STATE(3266), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6294), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4663), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2623), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8578), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4357), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__empty_declaration] = STATE(3266), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2417), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(3266), - [sym_operator_cast] = STATE(9064), - [sym__constructor_specifiers] = STATE(2417), - [sym_operator_cast_definition] = STATE(3266), - [sym_operator_cast_declaration] = STATE(3266), - [sym_constructor_or_destructor_definition] = STATE(3266), - [sym_constructor_or_destructor_declaration] = STATE(3266), - [sym_friend_declaration] = STATE(3266), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_alias_declaration] = STATE(3266), - [sym_concept_definition] = STATE(3266), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7652), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9064), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2417), - [sym_identifier] = ACTIONS(5096), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(5132), - [anon_sym_COLON_COLON] = ACTIONS(5100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(4342), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4348), - [anon_sym_concept] = ACTIONS(5134), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [STATE(916)] = { + [sym_identifier] = ACTIONS(4518), + [aux_sym_preproc_include_token1] = ACTIONS(4518), + [aux_sym_preproc_def_token1] = ACTIONS(4518), + [aux_sym_preproc_if_token1] = ACTIONS(4518), + [aux_sym_preproc_if_token2] = ACTIONS(4518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4518), + [sym_preproc_directive] = ACTIONS(4518), + [anon_sym_LPAREN2] = ACTIONS(4520), + [anon_sym_BANG] = ACTIONS(4520), + [anon_sym_TILDE] = ACTIONS(4520), + [anon_sym_DASH] = ACTIONS(4518), + [anon_sym_PLUS] = ACTIONS(4518), + [anon_sym_STAR] = ACTIONS(4520), + [anon_sym_AMP_AMP] = ACTIONS(4520), + [anon_sym_AMP] = ACTIONS(4518), + [anon_sym_SEMI] = ACTIONS(4520), + [anon_sym___extension__] = ACTIONS(4518), + [anon_sym_typedef] = ACTIONS(4518), + [anon_sym_virtual] = ACTIONS(4518), + [anon_sym_extern] = ACTIONS(4518), + [anon_sym___attribute__] = ACTIONS(4518), + [anon_sym___attribute] = ACTIONS(4518), + [anon_sym_using] = ACTIONS(4518), + [anon_sym_COLON_COLON] = ACTIONS(4520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4520), + [anon_sym___declspec] = ACTIONS(4518), + [anon_sym___based] = ACTIONS(4518), + [anon_sym___cdecl] = ACTIONS(4518), + [anon_sym___clrcall] = ACTIONS(4518), + [anon_sym___stdcall] = ACTIONS(4518), + [anon_sym___fastcall] = ACTIONS(4518), + [anon_sym___thiscall] = ACTIONS(4518), + [anon_sym___vectorcall] = ACTIONS(4518), + [anon_sym_LBRACE] = ACTIONS(4520), + [anon_sym_signed] = ACTIONS(4518), + [anon_sym_unsigned] = ACTIONS(4518), + [anon_sym_long] = ACTIONS(4518), + [anon_sym_short] = ACTIONS(4518), + [anon_sym_LBRACK] = ACTIONS(4518), + [anon_sym_static] = ACTIONS(4518), + [anon_sym_register] = ACTIONS(4518), + [anon_sym_inline] = ACTIONS(4518), + [anon_sym___inline] = ACTIONS(4518), + [anon_sym___inline__] = ACTIONS(4518), + [anon_sym___forceinline] = ACTIONS(4518), + [anon_sym_thread_local] = ACTIONS(4518), + [anon_sym___thread] = ACTIONS(4518), + [anon_sym_const] = ACTIONS(4518), + [anon_sym_constexpr] = ACTIONS(4518), + [anon_sym_volatile] = ACTIONS(4518), + [anon_sym_restrict] = ACTIONS(4518), + [anon_sym___restrict__] = ACTIONS(4518), + [anon_sym__Atomic] = ACTIONS(4518), + [anon_sym__Noreturn] = ACTIONS(4518), + [anon_sym_noreturn] = ACTIONS(4518), + [anon_sym__Nonnull] = ACTIONS(4518), + [anon_sym_mutable] = ACTIONS(4518), + [anon_sym_constinit] = ACTIONS(4518), + [anon_sym_consteval] = ACTIONS(4518), + [anon_sym_alignas] = ACTIONS(4518), + [anon_sym__Alignas] = ACTIONS(4518), + [sym_primitive_type] = ACTIONS(4518), + [anon_sym_enum] = ACTIONS(4518), + [anon_sym_class] = ACTIONS(4518), + [anon_sym_struct] = ACTIONS(4518), + [anon_sym_union] = ACTIONS(4518), + [anon_sym_if] = ACTIONS(4518), + [anon_sym_switch] = ACTIONS(4518), + [anon_sym_case] = ACTIONS(4518), + [anon_sym_default] = ACTIONS(4518), + [anon_sym_while] = ACTIONS(4518), + [anon_sym_do] = ACTIONS(4518), + [anon_sym_for] = ACTIONS(4518), + [anon_sym_return] = ACTIONS(4518), + [anon_sym_break] = ACTIONS(4518), + [anon_sym_continue] = ACTIONS(4518), + [anon_sym_goto] = ACTIONS(4518), + [anon_sym_not] = ACTIONS(4518), + [anon_sym_compl] = ACTIONS(4518), + [anon_sym_DASH_DASH] = ACTIONS(4520), + [anon_sym_PLUS_PLUS] = ACTIONS(4520), + [anon_sym_sizeof] = ACTIONS(4518), + [anon_sym___alignof__] = ACTIONS(4518), + [anon_sym___alignof] = ACTIONS(4518), + [anon_sym__alignof] = ACTIONS(4518), + [anon_sym_alignof] = ACTIONS(4518), + [anon_sym__Alignof] = ACTIONS(4518), + [anon_sym_offsetof] = ACTIONS(4518), + [anon_sym__Generic] = ACTIONS(4518), + [anon_sym_typename] = ACTIONS(4518), + [anon_sym_asm] = ACTIONS(4518), + [anon_sym___asm__] = ACTIONS(4518), + [anon_sym___asm] = ACTIONS(4518), + [sym_number_literal] = ACTIONS(4520), + [anon_sym_L_SQUOTE] = ACTIONS(4520), + [anon_sym_u_SQUOTE] = ACTIONS(4520), + [anon_sym_U_SQUOTE] = ACTIONS(4520), + [anon_sym_u8_SQUOTE] = ACTIONS(4520), + [anon_sym_SQUOTE] = ACTIONS(4520), + [anon_sym_L_DQUOTE] = ACTIONS(4520), + [anon_sym_u_DQUOTE] = ACTIONS(4520), + [anon_sym_U_DQUOTE] = ACTIONS(4520), + [anon_sym_u8_DQUOTE] = ACTIONS(4520), + [anon_sym_DQUOTE] = ACTIONS(4520), + [sym_true] = ACTIONS(4518), + [sym_false] = ACTIONS(4518), + [anon_sym_NULL] = ACTIONS(4518), + [anon_sym_nullptr] = ACTIONS(4518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4518), + [anon_sym_decltype] = ACTIONS(4518), + [anon_sym_explicit] = ACTIONS(4518), + [anon_sym_export] = ACTIONS(4518), + [anon_sym_module] = ACTIONS(4518), + [anon_sym_import] = ACTIONS(4518), + [anon_sym_template] = ACTIONS(4518), + [anon_sym_operator] = ACTIONS(4518), + [anon_sym_try] = ACTIONS(4518), + [anon_sym_delete] = ACTIONS(4518), + [anon_sym_throw] = ACTIONS(4518), + [anon_sym_namespace] = ACTIONS(4518), + [anon_sym_static_assert] = ACTIONS(4518), + [anon_sym_concept] = ACTIONS(4518), + [anon_sym_co_return] = ACTIONS(4518), + [anon_sym_co_yield] = ACTIONS(4518), + [anon_sym_R_DQUOTE] = ACTIONS(4520), + [anon_sym_LR_DQUOTE] = ACTIONS(4520), + [anon_sym_uR_DQUOTE] = ACTIONS(4520), + [anon_sym_UR_DQUOTE] = ACTIONS(4520), + [anon_sym_u8R_DQUOTE] = ACTIONS(4520), + [anon_sym_co_await] = ACTIONS(4518), + [anon_sym_new] = ACTIONS(4518), + [anon_sym_requires] = ACTIONS(4518), + [anon_sym_CARET_CARET] = ACTIONS(4520), + [anon_sym_LBRACK_COLON] = ACTIONS(4520), + [sym_this] = ACTIONS(4518), }, - [STATE(1005)] = { - [sym_expression] = STATE(6628), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4574), - [anon_sym_LPAREN2] = ACTIONS(5166), - [anon_sym_BANG] = ACTIONS(5169), - [anon_sym_TILDE] = ACTIONS(5169), - [anon_sym_DASH] = ACTIONS(5172), - [anon_sym_PLUS] = ACTIONS(5172), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_AMP] = ACTIONS(5175), - [anon_sym___extension__] = ACTIONS(4577), - [anon_sym_COLON_COLON] = ACTIONS(4580), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_RBRACK] = ACTIONS(2758), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(4583), - [anon_sym_not] = ACTIONS(5172), - [anon_sym_compl] = ACTIONS(5172), - [anon_sym_DASH_DASH] = ACTIONS(5178), - [anon_sym_PLUS_PLUS] = ACTIONS(5178), - [anon_sym_sizeof] = ACTIONS(5181), - [anon_sym___alignof__] = ACTIONS(5184), - [anon_sym___alignof] = ACTIONS(5184), - [anon_sym__alignof] = ACTIONS(5184), - [anon_sym_alignof] = ACTIONS(5184), - [anon_sym__Alignof] = ACTIONS(5184), - [anon_sym_offsetof] = ACTIONS(5187), - [anon_sym__Generic] = ACTIONS(5190), - [anon_sym_typename] = ACTIONS(4586), - [anon_sym_asm] = ACTIONS(5193), - [anon_sym___asm__] = ACTIONS(5193), - [anon_sym___asm] = ACTIONS(5193), - [sym_number_literal] = ACTIONS(5196), - [anon_sym_L_SQUOTE] = ACTIONS(5199), - [anon_sym_u_SQUOTE] = ACTIONS(5199), - [anon_sym_U_SQUOTE] = ACTIONS(5199), - [anon_sym_u8_SQUOTE] = ACTIONS(5199), - [anon_sym_SQUOTE] = ACTIONS(5199), - [anon_sym_L_DQUOTE] = ACTIONS(5202), - [anon_sym_u_DQUOTE] = ACTIONS(5202), - [anon_sym_U_DQUOTE] = ACTIONS(5202), - [anon_sym_u8_DQUOTE] = ACTIONS(5202), - [anon_sym_DQUOTE] = ACTIONS(5202), - [sym_true] = ACTIONS(5205), - [sym_false] = ACTIONS(5205), - [anon_sym_NULL] = ACTIONS(5208), - [anon_sym_nullptr] = ACTIONS(5208), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(4589), - [anon_sym_delete] = ACTIONS(5211), - [anon_sym_R_DQUOTE] = ACTIONS(5214), - [anon_sym_LR_DQUOTE] = ACTIONS(5214), - [anon_sym_uR_DQUOTE] = ACTIONS(5214), - [anon_sym_UR_DQUOTE] = ACTIONS(5214), - [anon_sym_u8R_DQUOTE] = ACTIONS(5214), - [anon_sym_co_await] = ACTIONS(5217), - [anon_sym_new] = ACTIONS(5220), - [anon_sym_requires] = ACTIONS(5223), - [anon_sym_CARET_CARET] = ACTIONS(5226), - [anon_sym_LBRACK_COLON] = ACTIONS(4592), - [sym_this] = ACTIONS(5205), + [STATE(917)] = { + [ts_builtin_sym_end] = ACTIONS(4014), + [sym_identifier] = ACTIONS(4012), + [aux_sym_preproc_include_token1] = ACTIONS(4012), + [aux_sym_preproc_def_token1] = ACTIONS(4012), + [aux_sym_preproc_if_token1] = ACTIONS(4012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4012), + [sym_preproc_directive] = ACTIONS(4012), + [anon_sym_LPAREN2] = ACTIONS(4014), + [anon_sym_BANG] = ACTIONS(4014), + [anon_sym_TILDE] = ACTIONS(4014), + [anon_sym_DASH] = ACTIONS(4012), + [anon_sym_PLUS] = ACTIONS(4012), + [anon_sym_STAR] = ACTIONS(4014), + [anon_sym_AMP_AMP] = ACTIONS(4014), + [anon_sym_AMP] = ACTIONS(4012), + [anon_sym_SEMI] = ACTIONS(4014), + [anon_sym___extension__] = ACTIONS(4012), + [anon_sym_typedef] = ACTIONS(4012), + [anon_sym_virtual] = ACTIONS(4012), + [anon_sym_extern] = ACTIONS(4012), + [anon_sym___attribute__] = ACTIONS(4012), + [anon_sym___attribute] = ACTIONS(4012), + [anon_sym_using] = ACTIONS(4012), + [anon_sym_COLON_COLON] = ACTIONS(4014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4014), + [anon_sym___declspec] = ACTIONS(4012), + [anon_sym___based] = ACTIONS(4012), + [anon_sym___cdecl] = ACTIONS(4012), + [anon_sym___clrcall] = ACTIONS(4012), + [anon_sym___stdcall] = ACTIONS(4012), + [anon_sym___fastcall] = ACTIONS(4012), + [anon_sym___thiscall] = ACTIONS(4012), + [anon_sym___vectorcall] = ACTIONS(4012), + [anon_sym_LBRACE] = ACTIONS(4014), + [anon_sym_signed] = ACTIONS(4012), + [anon_sym_unsigned] = ACTIONS(4012), + [anon_sym_long] = ACTIONS(4012), + [anon_sym_short] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_static] = ACTIONS(4012), + [anon_sym_register] = ACTIONS(4012), + [anon_sym_inline] = ACTIONS(4012), + [anon_sym___inline] = ACTIONS(4012), + [anon_sym___inline__] = ACTIONS(4012), + [anon_sym___forceinline] = ACTIONS(4012), + [anon_sym_thread_local] = ACTIONS(4012), + [anon_sym___thread] = ACTIONS(4012), + [anon_sym_const] = ACTIONS(4012), + [anon_sym_constexpr] = ACTIONS(4012), + [anon_sym_volatile] = ACTIONS(4012), + [anon_sym_restrict] = ACTIONS(4012), + [anon_sym___restrict__] = ACTIONS(4012), + [anon_sym__Atomic] = ACTIONS(4012), + [anon_sym__Noreturn] = ACTIONS(4012), + [anon_sym_noreturn] = ACTIONS(4012), + [anon_sym__Nonnull] = ACTIONS(4012), + [anon_sym_mutable] = ACTIONS(4012), + [anon_sym_constinit] = ACTIONS(4012), + [anon_sym_consteval] = ACTIONS(4012), + [anon_sym_alignas] = ACTIONS(4012), + [anon_sym__Alignas] = ACTIONS(4012), + [sym_primitive_type] = ACTIONS(4012), + [anon_sym_enum] = ACTIONS(4012), + [anon_sym_class] = ACTIONS(4012), + [anon_sym_struct] = ACTIONS(4012), + [anon_sym_union] = ACTIONS(4012), + [anon_sym_if] = ACTIONS(4012), + [anon_sym_switch] = ACTIONS(4012), + [anon_sym_case] = ACTIONS(4012), + [anon_sym_default] = ACTIONS(4012), + [anon_sym_while] = ACTIONS(4012), + [anon_sym_do] = ACTIONS(4012), + [anon_sym_for] = ACTIONS(4012), + [anon_sym_return] = ACTIONS(4012), + [anon_sym_break] = ACTIONS(4012), + [anon_sym_continue] = ACTIONS(4012), + [anon_sym_goto] = ACTIONS(4012), + [anon_sym_not] = ACTIONS(4012), + [anon_sym_compl] = ACTIONS(4012), + [anon_sym_DASH_DASH] = ACTIONS(4014), + [anon_sym_PLUS_PLUS] = ACTIONS(4014), + [anon_sym_sizeof] = ACTIONS(4012), + [anon_sym___alignof__] = ACTIONS(4012), + [anon_sym___alignof] = ACTIONS(4012), + [anon_sym__alignof] = ACTIONS(4012), + [anon_sym_alignof] = ACTIONS(4012), + [anon_sym__Alignof] = ACTIONS(4012), + [anon_sym_offsetof] = ACTIONS(4012), + [anon_sym__Generic] = ACTIONS(4012), + [anon_sym_typename] = ACTIONS(4012), + [anon_sym_asm] = ACTIONS(4012), + [anon_sym___asm__] = ACTIONS(4012), + [anon_sym___asm] = ACTIONS(4012), + [sym_number_literal] = ACTIONS(4014), + [anon_sym_L_SQUOTE] = ACTIONS(4014), + [anon_sym_u_SQUOTE] = ACTIONS(4014), + [anon_sym_U_SQUOTE] = ACTIONS(4014), + [anon_sym_u8_SQUOTE] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4014), + [anon_sym_L_DQUOTE] = ACTIONS(4014), + [anon_sym_u_DQUOTE] = ACTIONS(4014), + [anon_sym_U_DQUOTE] = ACTIONS(4014), + [anon_sym_u8_DQUOTE] = ACTIONS(4014), + [anon_sym_DQUOTE] = ACTIONS(4014), + [sym_true] = ACTIONS(4012), + [sym_false] = ACTIONS(4012), + [anon_sym_NULL] = ACTIONS(4012), + [anon_sym_nullptr] = ACTIONS(4012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4012), + [anon_sym_decltype] = ACTIONS(4012), + [anon_sym_explicit] = ACTIONS(4012), + [anon_sym_export] = ACTIONS(4012), + [anon_sym_module] = ACTIONS(4012), + [anon_sym_import] = ACTIONS(4012), + [anon_sym_template] = ACTIONS(4012), + [anon_sym_operator] = ACTIONS(4012), + [anon_sym_try] = ACTIONS(4012), + [anon_sym_delete] = ACTIONS(4012), + [anon_sym_throw] = ACTIONS(4012), + [anon_sym_namespace] = ACTIONS(4012), + [anon_sym_static_assert] = ACTIONS(4012), + [anon_sym_concept] = ACTIONS(4012), + [anon_sym_co_return] = ACTIONS(4012), + [anon_sym_co_yield] = ACTIONS(4012), + [anon_sym_R_DQUOTE] = ACTIONS(4014), + [anon_sym_LR_DQUOTE] = ACTIONS(4014), + [anon_sym_uR_DQUOTE] = ACTIONS(4014), + [anon_sym_UR_DQUOTE] = ACTIONS(4014), + [anon_sym_u8R_DQUOTE] = ACTIONS(4014), + [anon_sym_co_await] = ACTIONS(4012), + [anon_sym_new] = ACTIONS(4012), + [anon_sym_requires] = ACTIONS(4012), + [anon_sym_CARET_CARET] = ACTIONS(4014), + [anon_sym_LBRACK_COLON] = ACTIONS(4014), + [sym_this] = ACTIONS(4012), }, - [STATE(1006)] = { - [sym_function_definition] = STATE(615), - [sym_declaration] = STATE(615), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6284), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4663), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2569), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8554), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4304), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__empty_declaration] = STATE(615), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2350), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(615), - [sym_operator_cast] = STATE(9060), - [sym__constructor_specifiers] = STATE(2350), - [sym_operator_cast_definition] = STATE(615), - [sym_operator_cast_declaration] = STATE(615), - [sym_constructor_or_destructor_definition] = STATE(615), - [sym_constructor_or_destructor_declaration] = STATE(615), - [sym_friend_declaration] = STATE(615), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_alias_declaration] = STATE(615), - [sym_concept_definition] = STATE(615), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7652), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9060), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2350), - [sym_identifier] = ACTIONS(5096), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(5124), - [anon_sym_COLON_COLON] = ACTIONS(5100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(5126), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), + [STATE(918)] = { + [ts_builtin_sym_end] = ACTIONS(4162), + [sym_identifier] = ACTIONS(4160), + [aux_sym_preproc_include_token1] = ACTIONS(4160), + [aux_sym_preproc_def_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), + [sym_preproc_directive] = ACTIONS(4160), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_TILDE] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym___extension__] = ACTIONS(4160), + [anon_sym_typedef] = ACTIONS(4160), + [anon_sym_virtual] = ACTIONS(4160), + [anon_sym_extern] = ACTIONS(4160), + [anon_sym___attribute__] = ACTIONS(4160), + [anon_sym___attribute] = ACTIONS(4160), + [anon_sym_using] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), + [anon_sym___declspec] = ACTIONS(4160), + [anon_sym___based] = ACTIONS(4160), + [anon_sym___cdecl] = ACTIONS(4160), + [anon_sym___clrcall] = ACTIONS(4160), + [anon_sym___stdcall] = ACTIONS(4160), + [anon_sym___fastcall] = ACTIONS(4160), + [anon_sym___thiscall] = ACTIONS(4160), + [anon_sym___vectorcall] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_signed] = ACTIONS(4160), + [anon_sym_unsigned] = ACTIONS(4160), + [anon_sym_long] = ACTIONS(4160), + [anon_sym_short] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4160), + [anon_sym_static] = ACTIONS(4160), + [anon_sym_register] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym___inline] = ACTIONS(4160), + [anon_sym___inline__] = ACTIONS(4160), + [anon_sym___forceinline] = ACTIONS(4160), + [anon_sym_thread_local] = ACTIONS(4160), + [anon_sym___thread] = ACTIONS(4160), + [anon_sym_const] = ACTIONS(4160), + [anon_sym_constexpr] = ACTIONS(4160), + [anon_sym_volatile] = ACTIONS(4160), + [anon_sym_restrict] = ACTIONS(4160), + [anon_sym___restrict__] = ACTIONS(4160), + [anon_sym__Atomic] = ACTIONS(4160), + [anon_sym__Noreturn] = ACTIONS(4160), + [anon_sym_noreturn] = ACTIONS(4160), + [anon_sym__Nonnull] = ACTIONS(4160), + [anon_sym_mutable] = ACTIONS(4160), + [anon_sym_constinit] = ACTIONS(4160), + [anon_sym_consteval] = ACTIONS(4160), + [anon_sym_alignas] = ACTIONS(4160), + [anon_sym__Alignas] = ACTIONS(4160), + [sym_primitive_type] = ACTIONS(4160), + [anon_sym_enum] = ACTIONS(4160), + [anon_sym_class] = ACTIONS(4160), + [anon_sym_struct] = ACTIONS(4160), + [anon_sym_union] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_switch] = ACTIONS(4160), + [anon_sym_case] = ACTIONS(4160), + [anon_sym_default] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_do] = ACTIONS(4160), + [anon_sym_for] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_goto] = ACTIONS(4160), + [anon_sym_not] = ACTIONS(4160), + [anon_sym_compl] = ACTIONS(4160), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_sizeof] = ACTIONS(4160), + [anon_sym___alignof__] = ACTIONS(4160), + [anon_sym___alignof] = ACTIONS(4160), + [anon_sym__alignof] = ACTIONS(4160), + [anon_sym_alignof] = ACTIONS(4160), + [anon_sym__Alignof] = ACTIONS(4160), + [anon_sym_offsetof] = ACTIONS(4160), + [anon_sym__Generic] = ACTIONS(4160), + [anon_sym_typename] = ACTIONS(4160), + [anon_sym_asm] = ACTIONS(4160), + [anon_sym___asm__] = ACTIONS(4160), + [anon_sym___asm] = ACTIONS(4160), + [sym_number_literal] = ACTIONS(4162), + [anon_sym_L_SQUOTE] = ACTIONS(4162), + [anon_sym_u_SQUOTE] = ACTIONS(4162), + [anon_sym_U_SQUOTE] = ACTIONS(4162), + [anon_sym_u8_SQUOTE] = ACTIONS(4162), + [anon_sym_SQUOTE] = ACTIONS(4162), + [anon_sym_L_DQUOTE] = ACTIONS(4162), + [anon_sym_u_DQUOTE] = ACTIONS(4162), + [anon_sym_U_DQUOTE] = ACTIONS(4162), + [anon_sym_u8_DQUOTE] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4162), + [sym_true] = ACTIONS(4160), + [sym_false] = ACTIONS(4160), + [anon_sym_NULL] = ACTIONS(4160), + [anon_sym_nullptr] = ACTIONS(4160), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5128), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(5130), - [anon_sym_concept] = ACTIONS(155), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(1007)] = { - [sym_function_definition] = STATE(825), - [sym_declaration] = STATE(825), - [sym__declaration_modifiers] = STATE(4663), - [sym__declaration_specifiers] = STATE(6309), - [sym_attribute_specifier] = STATE(4663), - [sym_attribute_declaration] = STATE(4663), - [sym_ms_declspec_modifier] = STATE(4663), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(2615), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8557), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(4663), - [sym_type_qualifier] = STATE(4663), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(4369), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym__empty_declaration] = STATE(825), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_explicit_function_specifier] = STATE(2397), - [sym_dependent_type] = STATE(4714), - [sym_template_declaration] = STATE(825), - [sym_operator_cast] = STATE(9110), - [sym__constructor_specifiers] = STATE(2397), - [sym_operator_cast_definition] = STATE(825), - [sym_operator_cast_declaration] = STATE(825), - [sym_constructor_or_destructor_definition] = STATE(825), - [sym_constructor_or_destructor_declaration] = STATE(825), - [sym_friend_declaration] = STATE(825), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_alias_declaration] = STATE(825), - [sym_concept_definition] = STATE(825), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7652), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_qualified_operator_cast_identifier] = STATE(9110), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [aux_sym_operator_cast_definition_repeat1] = STATE(2397), - [sym_identifier] = ACTIONS(5096), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(5136), - [anon_sym_COLON_COLON] = ACTIONS(5100), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(5138), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5140), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(5142), - [anon_sym_concept] = ACTIONS(249), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(1008)] = { - [sym_identifier] = ACTIONS(5229), - [anon_sym_LPAREN2] = ACTIONS(5231), - [anon_sym_BANG] = ACTIONS(5231), - [anon_sym_TILDE] = ACTIONS(5231), - [anon_sym_DASH] = ACTIONS(5229), - [anon_sym_PLUS] = ACTIONS(5229), - [anon_sym_STAR] = ACTIONS(5231), - [anon_sym_AMP_AMP] = ACTIONS(5231), - [anon_sym_AMP] = ACTIONS(5229), - [anon_sym_SEMI] = ACTIONS(5231), - [anon_sym___extension__] = ACTIONS(5229), - [anon_sym_virtual] = ACTIONS(5229), - [anon_sym_extern] = ACTIONS(5229), - [anon_sym___attribute__] = ACTIONS(5229), - [anon_sym___attribute] = ACTIONS(5229), - [anon_sym_using] = ACTIONS(5229), - [anon_sym_COLON_COLON] = ACTIONS(5231), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5231), - [anon_sym___declspec] = ACTIONS(5229), - [anon_sym___based] = ACTIONS(5229), - [anon_sym_LBRACE] = ACTIONS(5231), - [anon_sym_signed] = ACTIONS(5229), - [anon_sym_unsigned] = ACTIONS(5229), - [anon_sym_long] = ACTIONS(5229), - [anon_sym_short] = ACTIONS(5229), - [anon_sym_LBRACK] = ACTIONS(5229), - [anon_sym_static] = ACTIONS(5229), - [anon_sym_EQ] = ACTIONS(5231), - [anon_sym_register] = ACTIONS(5229), - [anon_sym_inline] = ACTIONS(5229), - [anon_sym___inline] = ACTIONS(5229), - [anon_sym___inline__] = ACTIONS(5229), - [anon_sym___forceinline] = ACTIONS(5229), - [anon_sym_thread_local] = ACTIONS(5229), - [anon_sym___thread] = ACTIONS(5229), - [anon_sym_const] = ACTIONS(5229), - [anon_sym_constexpr] = ACTIONS(5229), - [anon_sym_volatile] = ACTIONS(5229), - [anon_sym_restrict] = ACTIONS(5229), - [anon_sym___restrict__] = ACTIONS(5229), - [anon_sym__Atomic] = ACTIONS(5229), - [anon_sym__Noreturn] = ACTIONS(5229), - [anon_sym_noreturn] = ACTIONS(5229), - [anon_sym__Nonnull] = ACTIONS(5229), - [anon_sym_mutable] = ACTIONS(5229), - [anon_sym_constinit] = ACTIONS(5229), - [anon_sym_consteval] = ACTIONS(5229), - [anon_sym_alignas] = ACTIONS(5229), - [anon_sym__Alignas] = ACTIONS(5229), - [sym_primitive_type] = ACTIONS(5229), - [anon_sym_enum] = ACTIONS(5229), - [anon_sym_class] = ACTIONS(5229), - [anon_sym_struct] = ACTIONS(5229), - [anon_sym_union] = ACTIONS(5229), - [anon_sym_if] = ACTIONS(5229), - [anon_sym_switch] = ACTIONS(5229), - [anon_sym_case] = ACTIONS(5229), - [anon_sym_default] = ACTIONS(5229), - [anon_sym_while] = ACTIONS(5229), - [anon_sym_do] = ACTIONS(5229), - [anon_sym_for] = ACTIONS(5229), - [anon_sym_return] = ACTIONS(5229), - [anon_sym_break] = ACTIONS(5229), - [anon_sym_continue] = ACTIONS(5229), - [anon_sym_goto] = ACTIONS(5229), - [anon_sym___try] = ACTIONS(5229), - [anon_sym___leave] = ACTIONS(5229), - [anon_sym_not] = ACTIONS(5229), - [anon_sym_compl] = ACTIONS(5229), - [anon_sym_DASH_DASH] = ACTIONS(5231), - [anon_sym_PLUS_PLUS] = ACTIONS(5231), - [anon_sym_sizeof] = ACTIONS(5229), - [anon_sym___alignof__] = ACTIONS(5229), - [anon_sym___alignof] = ACTIONS(5229), - [anon_sym__alignof] = ACTIONS(5229), - [anon_sym_alignof] = ACTIONS(5229), - [anon_sym__Alignof] = ACTIONS(5229), - [anon_sym_offsetof] = ACTIONS(5229), - [anon_sym__Generic] = ACTIONS(5229), - [anon_sym_typename] = ACTIONS(5229), - [anon_sym_asm] = ACTIONS(5229), - [anon_sym___asm__] = ACTIONS(5229), - [anon_sym___asm] = ACTIONS(5229), - [sym_number_literal] = ACTIONS(5231), - [anon_sym_L_SQUOTE] = ACTIONS(5231), - [anon_sym_u_SQUOTE] = ACTIONS(5231), - [anon_sym_U_SQUOTE] = ACTIONS(5231), - [anon_sym_u8_SQUOTE] = ACTIONS(5231), - [anon_sym_SQUOTE] = ACTIONS(5231), - [anon_sym_L_DQUOTE] = ACTIONS(5231), - [anon_sym_u_DQUOTE] = ACTIONS(5231), - [anon_sym_U_DQUOTE] = ACTIONS(5231), - [anon_sym_u8_DQUOTE] = ACTIONS(5231), - [anon_sym_DQUOTE] = ACTIONS(5231), - [sym_true] = ACTIONS(5229), - [sym_false] = ACTIONS(5229), - [anon_sym_NULL] = ACTIONS(5229), - [anon_sym_nullptr] = ACTIONS(5229), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5229), - [anon_sym_decltype] = ACTIONS(5229), - [anon_sym_explicit] = ACTIONS(5229), - [anon_sym_template] = ACTIONS(5229), - [anon_sym_operator] = ACTIONS(5229), - [anon_sym_try] = ACTIONS(5229), - [anon_sym_delete] = ACTIONS(5229), - [anon_sym_throw] = ACTIONS(5229), - [anon_sym_co_return] = ACTIONS(5229), - [anon_sym_co_yield] = ACTIONS(5229), - [anon_sym_R_DQUOTE] = ACTIONS(5231), - [anon_sym_LR_DQUOTE] = ACTIONS(5231), - [anon_sym_uR_DQUOTE] = ACTIONS(5231), - [anon_sym_UR_DQUOTE] = ACTIONS(5231), - [anon_sym_u8R_DQUOTE] = ACTIONS(5231), - [anon_sym_co_await] = ACTIONS(5229), - [anon_sym_new] = ACTIONS(5229), - [anon_sym_requires] = ACTIONS(5229), - [anon_sym_CARET_CARET] = ACTIONS(5231), - [anon_sym_LBRACK_COLON] = ACTIONS(5231), - [sym_this] = ACTIONS(5229), - }, - [STATE(1009)] = { - [sym_identifier] = ACTIONS(5233), - [anon_sym_LPAREN2] = ACTIONS(5235), - [anon_sym_BANG] = ACTIONS(5235), - [anon_sym_TILDE] = ACTIONS(5235), - [anon_sym_DASH] = ACTIONS(5233), - [anon_sym_PLUS] = ACTIONS(5233), - [anon_sym_STAR] = ACTIONS(5235), - [anon_sym_AMP_AMP] = ACTIONS(5235), - [anon_sym_AMP] = ACTIONS(5233), - [anon_sym_SEMI] = ACTIONS(5235), - [anon_sym___extension__] = ACTIONS(5233), - [anon_sym_virtual] = ACTIONS(5233), - [anon_sym_extern] = ACTIONS(5233), - [anon_sym___attribute__] = ACTIONS(5233), - [anon_sym___attribute] = ACTIONS(5233), - [anon_sym_using] = ACTIONS(5233), - [anon_sym_COLON_COLON] = ACTIONS(5235), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5235), - [anon_sym___declspec] = ACTIONS(5233), - [anon_sym___based] = ACTIONS(5233), - [anon_sym_LBRACE] = ACTIONS(5235), - [anon_sym_signed] = ACTIONS(5233), - [anon_sym_unsigned] = ACTIONS(5233), - [anon_sym_long] = ACTIONS(5233), - [anon_sym_short] = ACTIONS(5233), - [anon_sym_LBRACK] = ACTIONS(5233), - [anon_sym_static] = ACTIONS(5233), - [anon_sym_EQ] = ACTIONS(5235), - [anon_sym_register] = ACTIONS(5233), - [anon_sym_inline] = ACTIONS(5233), - [anon_sym___inline] = ACTIONS(5233), - [anon_sym___inline__] = ACTIONS(5233), - [anon_sym___forceinline] = ACTIONS(5233), - [anon_sym_thread_local] = ACTIONS(5233), - [anon_sym___thread] = ACTIONS(5233), - [anon_sym_const] = ACTIONS(5233), - [anon_sym_constexpr] = ACTIONS(5233), - [anon_sym_volatile] = ACTIONS(5233), - [anon_sym_restrict] = ACTIONS(5233), - [anon_sym___restrict__] = ACTIONS(5233), - [anon_sym__Atomic] = ACTIONS(5233), - [anon_sym__Noreturn] = ACTIONS(5233), - [anon_sym_noreturn] = ACTIONS(5233), - [anon_sym__Nonnull] = ACTIONS(5233), - [anon_sym_mutable] = ACTIONS(5233), - [anon_sym_constinit] = ACTIONS(5233), - [anon_sym_consteval] = ACTIONS(5233), - [anon_sym_alignas] = ACTIONS(5233), - [anon_sym__Alignas] = ACTIONS(5233), - [sym_primitive_type] = ACTIONS(5233), - [anon_sym_enum] = ACTIONS(5233), - [anon_sym_class] = ACTIONS(5233), - [anon_sym_struct] = ACTIONS(5233), - [anon_sym_union] = ACTIONS(5233), - [anon_sym_if] = ACTIONS(5233), - [anon_sym_switch] = ACTIONS(5233), - [anon_sym_case] = ACTIONS(5233), - [anon_sym_default] = ACTIONS(5233), - [anon_sym_while] = ACTIONS(5233), - [anon_sym_do] = ACTIONS(5233), - [anon_sym_for] = ACTIONS(5233), - [anon_sym_return] = ACTIONS(5233), - [anon_sym_break] = ACTIONS(5233), - [anon_sym_continue] = ACTIONS(5233), - [anon_sym_goto] = ACTIONS(5233), - [anon_sym___try] = ACTIONS(5233), - [anon_sym___leave] = ACTIONS(5233), - [anon_sym_not] = ACTIONS(5233), - [anon_sym_compl] = ACTIONS(5233), - [anon_sym_DASH_DASH] = ACTIONS(5235), - [anon_sym_PLUS_PLUS] = ACTIONS(5235), - [anon_sym_sizeof] = ACTIONS(5233), - [anon_sym___alignof__] = ACTIONS(5233), - [anon_sym___alignof] = ACTIONS(5233), - [anon_sym__alignof] = ACTIONS(5233), - [anon_sym_alignof] = ACTIONS(5233), - [anon_sym__Alignof] = ACTIONS(5233), - [anon_sym_offsetof] = ACTIONS(5233), - [anon_sym__Generic] = ACTIONS(5233), - [anon_sym_typename] = ACTIONS(5233), - [anon_sym_asm] = ACTIONS(5233), - [anon_sym___asm__] = ACTIONS(5233), - [anon_sym___asm] = ACTIONS(5233), - [sym_number_literal] = ACTIONS(5235), - [anon_sym_L_SQUOTE] = ACTIONS(5235), - [anon_sym_u_SQUOTE] = ACTIONS(5235), - [anon_sym_U_SQUOTE] = ACTIONS(5235), - [anon_sym_u8_SQUOTE] = ACTIONS(5235), - [anon_sym_SQUOTE] = ACTIONS(5235), - [anon_sym_L_DQUOTE] = ACTIONS(5235), - [anon_sym_u_DQUOTE] = ACTIONS(5235), - [anon_sym_U_DQUOTE] = ACTIONS(5235), - [anon_sym_u8_DQUOTE] = ACTIONS(5235), - [anon_sym_DQUOTE] = ACTIONS(5235), - [sym_true] = ACTIONS(5233), - [sym_false] = ACTIONS(5233), - [anon_sym_NULL] = ACTIONS(5233), - [anon_sym_nullptr] = ACTIONS(5233), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5233), - [anon_sym_decltype] = ACTIONS(5233), - [anon_sym_explicit] = ACTIONS(5233), - [anon_sym_template] = ACTIONS(5233), - [anon_sym_operator] = ACTIONS(5233), - [anon_sym_try] = ACTIONS(5233), - [anon_sym_delete] = ACTIONS(5233), - [anon_sym_throw] = ACTIONS(5233), - [anon_sym_co_return] = ACTIONS(5233), - [anon_sym_co_yield] = ACTIONS(5233), - [anon_sym_R_DQUOTE] = ACTIONS(5235), - [anon_sym_LR_DQUOTE] = ACTIONS(5235), - [anon_sym_uR_DQUOTE] = ACTIONS(5235), - [anon_sym_UR_DQUOTE] = ACTIONS(5235), - [anon_sym_u8R_DQUOTE] = ACTIONS(5235), - [anon_sym_co_await] = ACTIONS(5233), - [anon_sym_new] = ACTIONS(5233), - [anon_sym_requires] = ACTIONS(5233), - [anon_sym_CARET_CARET] = ACTIONS(5235), - [anon_sym_LBRACK_COLON] = ACTIONS(5235), - [sym_this] = ACTIONS(5233), + [sym_auto] = ACTIONS(4160), + [anon_sym_decltype] = ACTIONS(4160), + [anon_sym_explicit] = ACTIONS(4160), + [anon_sym_export] = ACTIONS(4160), + [anon_sym_module] = ACTIONS(4160), + [anon_sym_import] = ACTIONS(4160), + [anon_sym_template] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_delete] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_namespace] = ACTIONS(4160), + [anon_sym_static_assert] = ACTIONS(4160), + [anon_sym_concept] = ACTIONS(4160), + [anon_sym_co_return] = ACTIONS(4160), + [anon_sym_co_yield] = ACTIONS(4160), + [anon_sym_R_DQUOTE] = ACTIONS(4162), + [anon_sym_LR_DQUOTE] = ACTIONS(4162), + [anon_sym_uR_DQUOTE] = ACTIONS(4162), + [anon_sym_UR_DQUOTE] = ACTIONS(4162), + [anon_sym_u8R_DQUOTE] = ACTIONS(4162), + [anon_sym_co_await] = ACTIONS(4160), + [anon_sym_new] = ACTIONS(4160), + [anon_sym_requires] = ACTIONS(4160), + [anon_sym_CARET_CARET] = ACTIONS(4162), + [anon_sym_LBRACK_COLON] = ACTIONS(4162), + [sym_this] = ACTIONS(4160), }, - [STATE(1010)] = { - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8684), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8469), - [sym_array_declarator] = STATE(8469), - [sym_expression] = STATE(5050), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5293), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7840), - [sym_qualified_identifier] = STATE(5294), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2929), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1872), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), + [STATE(919)] = { + [ts_builtin_sym_end] = ACTIONS(4162), + [sym_identifier] = ACTIONS(4160), + [aux_sym_preproc_include_token1] = ACTIONS(4160), + [aux_sym_preproc_def_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), + [sym_preproc_directive] = ACTIONS(4160), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_TILDE] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4160), + [anon_sym_PLUS] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym___extension__] = ACTIONS(4160), + [anon_sym_typedef] = ACTIONS(4160), + [anon_sym_virtual] = ACTIONS(4160), + [anon_sym_extern] = ACTIONS(4160), + [anon_sym___attribute__] = ACTIONS(4160), + [anon_sym___attribute] = ACTIONS(4160), + [anon_sym_using] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), + [anon_sym___declspec] = ACTIONS(4160), + [anon_sym___based] = ACTIONS(4160), + [anon_sym___cdecl] = ACTIONS(4160), + [anon_sym___clrcall] = ACTIONS(4160), + [anon_sym___stdcall] = ACTIONS(4160), + [anon_sym___fastcall] = ACTIONS(4160), + [anon_sym___thiscall] = ACTIONS(4160), + [anon_sym___vectorcall] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4162), + [anon_sym_signed] = ACTIONS(4160), + [anon_sym_unsigned] = ACTIONS(4160), + [anon_sym_long] = ACTIONS(4160), + [anon_sym_short] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4160), + [anon_sym_static] = ACTIONS(4160), + [anon_sym_register] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym___inline] = ACTIONS(4160), + [anon_sym___inline__] = ACTIONS(4160), + [anon_sym___forceinline] = ACTIONS(4160), + [anon_sym_thread_local] = ACTIONS(4160), + [anon_sym___thread] = ACTIONS(4160), + [anon_sym_const] = ACTIONS(4160), + [anon_sym_constexpr] = ACTIONS(4160), + [anon_sym_volatile] = ACTIONS(4160), + [anon_sym_restrict] = ACTIONS(4160), + [anon_sym___restrict__] = ACTIONS(4160), + [anon_sym__Atomic] = ACTIONS(4160), + [anon_sym__Noreturn] = ACTIONS(4160), + [anon_sym_noreturn] = ACTIONS(4160), + [anon_sym__Nonnull] = ACTIONS(4160), + [anon_sym_mutable] = ACTIONS(4160), + [anon_sym_constinit] = ACTIONS(4160), + [anon_sym_consteval] = ACTIONS(4160), + [anon_sym_alignas] = ACTIONS(4160), + [anon_sym__Alignas] = ACTIONS(4160), + [sym_primitive_type] = ACTIONS(4160), + [anon_sym_enum] = ACTIONS(4160), + [anon_sym_class] = ACTIONS(4160), + [anon_sym_struct] = ACTIONS(4160), + [anon_sym_union] = ACTIONS(4160), + [anon_sym_if] = ACTIONS(4160), + [anon_sym_switch] = ACTIONS(4160), + [anon_sym_case] = ACTIONS(4160), + [anon_sym_default] = ACTIONS(4160), + [anon_sym_while] = ACTIONS(4160), + [anon_sym_do] = ACTIONS(4160), + [anon_sym_for] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_goto] = ACTIONS(4160), + [anon_sym_not] = ACTIONS(4160), + [anon_sym_compl] = ACTIONS(4160), + [anon_sym_DASH_DASH] = ACTIONS(4162), + [anon_sym_PLUS_PLUS] = ACTIONS(4162), + [anon_sym_sizeof] = ACTIONS(4160), + [anon_sym___alignof__] = ACTIONS(4160), + [anon_sym___alignof] = ACTIONS(4160), + [anon_sym__alignof] = ACTIONS(4160), + [anon_sym_alignof] = ACTIONS(4160), + [anon_sym__Alignof] = ACTIONS(4160), + [anon_sym_offsetof] = ACTIONS(4160), + [anon_sym__Generic] = ACTIONS(4160), + [anon_sym_typename] = ACTIONS(4160), + [anon_sym_asm] = ACTIONS(4160), + [anon_sym___asm__] = ACTIONS(4160), + [anon_sym___asm] = ACTIONS(4160), + [sym_number_literal] = ACTIONS(4162), + [anon_sym_L_SQUOTE] = ACTIONS(4162), + [anon_sym_u_SQUOTE] = ACTIONS(4162), + [anon_sym_U_SQUOTE] = ACTIONS(4162), + [anon_sym_u8_SQUOTE] = ACTIONS(4162), + [anon_sym_SQUOTE] = ACTIONS(4162), + [anon_sym_L_DQUOTE] = ACTIONS(4162), + [anon_sym_u_DQUOTE] = ACTIONS(4162), + [anon_sym_U_DQUOTE] = ACTIONS(4162), + [anon_sym_u8_DQUOTE] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4162), + [sym_true] = ACTIONS(4160), + [sym_false] = ACTIONS(4160), + [anon_sym_NULL] = ACTIONS(4160), + [anon_sym_nullptr] = ACTIONS(4160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4160), + [anon_sym_decltype] = ACTIONS(4160), + [anon_sym_explicit] = ACTIONS(4160), + [anon_sym_export] = ACTIONS(4160), + [anon_sym_module] = ACTIONS(4160), + [anon_sym_import] = ACTIONS(4160), + [anon_sym_template] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_try] = ACTIONS(4160), + [anon_sym_delete] = ACTIONS(4160), + [anon_sym_throw] = ACTIONS(4160), + [anon_sym_namespace] = ACTIONS(4160), + [anon_sym_static_assert] = ACTIONS(4160), + [anon_sym_concept] = ACTIONS(4160), + [anon_sym_co_return] = ACTIONS(4160), + [anon_sym_co_yield] = ACTIONS(4160), + [anon_sym_R_DQUOTE] = ACTIONS(4162), + [anon_sym_LR_DQUOTE] = ACTIONS(4162), + [anon_sym_uR_DQUOTE] = ACTIONS(4162), + [anon_sym_UR_DQUOTE] = ACTIONS(4162), + [anon_sym_u8R_DQUOTE] = ACTIONS(4162), + [anon_sym_co_await] = ACTIONS(4160), + [anon_sym_new] = ACTIONS(4160), + [anon_sym_requires] = ACTIONS(4160), + [anon_sym_CARET_CARET] = ACTIONS(4162), + [anon_sym_LBRACK_COLON] = ACTIONS(4162), + [sym_this] = ACTIONS(4160), }, - [STATE(1011)] = { - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8684), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8469), - [sym_array_declarator] = STATE(8469), - [sym_expression] = STATE(3665), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5195), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7863), - [sym_qualified_identifier] = STATE(5196), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_operator_name] = STATE(8469), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2981), - [anon_sym_LPAREN2] = ACTIONS(2983), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(920)] = { + [ts_builtin_sym_end] = ACTIONS(4110), + [sym_identifier] = ACTIONS(4108), + [aux_sym_preproc_include_token1] = ACTIONS(4108), + [aux_sym_preproc_def_token1] = ACTIONS(4108), + [aux_sym_preproc_if_token1] = ACTIONS(4108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4108), + [sym_preproc_directive] = ACTIONS(4108), + [anon_sym_LPAREN2] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4110), + [anon_sym_TILDE] = ACTIONS(4110), + [anon_sym_DASH] = ACTIONS(4108), + [anon_sym_PLUS] = ACTIONS(4108), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_AMP] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym___extension__] = ACTIONS(4108), + [anon_sym_typedef] = ACTIONS(4108), + [anon_sym_virtual] = ACTIONS(4108), + [anon_sym_extern] = ACTIONS(4108), + [anon_sym___attribute__] = ACTIONS(4108), + [anon_sym___attribute] = ACTIONS(4108), + [anon_sym_using] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4110), + [anon_sym___declspec] = ACTIONS(4108), + [anon_sym___based] = ACTIONS(4108), + [anon_sym___cdecl] = ACTIONS(4108), + [anon_sym___clrcall] = ACTIONS(4108), + [anon_sym___stdcall] = ACTIONS(4108), + [anon_sym___fastcall] = ACTIONS(4108), + [anon_sym___thiscall] = ACTIONS(4108), + [anon_sym___vectorcall] = ACTIONS(4108), + [anon_sym_LBRACE] = ACTIONS(4110), + [anon_sym_signed] = ACTIONS(4108), + [anon_sym_unsigned] = ACTIONS(4108), + [anon_sym_long] = ACTIONS(4108), + [anon_sym_short] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_static] = ACTIONS(4108), + [anon_sym_register] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym___inline] = ACTIONS(4108), + [anon_sym___inline__] = ACTIONS(4108), + [anon_sym___forceinline] = ACTIONS(4108), + [anon_sym_thread_local] = ACTIONS(4108), + [anon_sym___thread] = ACTIONS(4108), + [anon_sym_const] = ACTIONS(4108), + [anon_sym_constexpr] = ACTIONS(4108), + [anon_sym_volatile] = ACTIONS(4108), + [anon_sym_restrict] = ACTIONS(4108), + [anon_sym___restrict__] = ACTIONS(4108), + [anon_sym__Atomic] = ACTIONS(4108), + [anon_sym__Noreturn] = ACTIONS(4108), + [anon_sym_noreturn] = ACTIONS(4108), + [anon_sym__Nonnull] = ACTIONS(4108), + [anon_sym_mutable] = ACTIONS(4108), + [anon_sym_constinit] = ACTIONS(4108), + [anon_sym_consteval] = ACTIONS(4108), + [anon_sym_alignas] = ACTIONS(4108), + [anon_sym__Alignas] = ACTIONS(4108), + [sym_primitive_type] = ACTIONS(4108), + [anon_sym_enum] = ACTIONS(4108), + [anon_sym_class] = ACTIONS(4108), + [anon_sym_struct] = ACTIONS(4108), + [anon_sym_union] = ACTIONS(4108), + [anon_sym_if] = ACTIONS(4108), + [anon_sym_switch] = ACTIONS(4108), + [anon_sym_case] = ACTIONS(4108), + [anon_sym_default] = ACTIONS(4108), + [anon_sym_while] = ACTIONS(4108), + [anon_sym_do] = ACTIONS(4108), + [anon_sym_for] = ACTIONS(4108), + [anon_sym_return] = ACTIONS(4108), + [anon_sym_break] = ACTIONS(4108), + [anon_sym_continue] = ACTIONS(4108), + [anon_sym_goto] = ACTIONS(4108), + [anon_sym_not] = ACTIONS(4108), + [anon_sym_compl] = ACTIONS(4108), + [anon_sym_DASH_DASH] = ACTIONS(4110), + [anon_sym_PLUS_PLUS] = ACTIONS(4110), + [anon_sym_sizeof] = ACTIONS(4108), + [anon_sym___alignof__] = ACTIONS(4108), + [anon_sym___alignof] = ACTIONS(4108), + [anon_sym__alignof] = ACTIONS(4108), + [anon_sym_alignof] = ACTIONS(4108), + [anon_sym__Alignof] = ACTIONS(4108), + [anon_sym_offsetof] = ACTIONS(4108), + [anon_sym__Generic] = ACTIONS(4108), + [anon_sym_typename] = ACTIONS(4108), + [anon_sym_asm] = ACTIONS(4108), + [anon_sym___asm__] = ACTIONS(4108), + [anon_sym___asm] = ACTIONS(4108), + [sym_number_literal] = ACTIONS(4110), + [anon_sym_L_SQUOTE] = ACTIONS(4110), + [anon_sym_u_SQUOTE] = ACTIONS(4110), + [anon_sym_U_SQUOTE] = ACTIONS(4110), + [anon_sym_u8_SQUOTE] = ACTIONS(4110), + [anon_sym_SQUOTE] = ACTIONS(4110), + [anon_sym_L_DQUOTE] = ACTIONS(4110), + [anon_sym_u_DQUOTE] = ACTIONS(4110), + [anon_sym_U_DQUOTE] = ACTIONS(4110), + [anon_sym_u8_DQUOTE] = ACTIONS(4110), + [anon_sym_DQUOTE] = ACTIONS(4110), + [sym_true] = ACTIONS(4108), + [sym_false] = ACTIONS(4108), + [anon_sym_NULL] = ACTIONS(4108), + [anon_sym_nullptr] = ACTIONS(4108), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4108), + [anon_sym_decltype] = ACTIONS(4108), + [anon_sym_explicit] = ACTIONS(4108), + [anon_sym_export] = ACTIONS(4108), + [anon_sym_module] = ACTIONS(4108), + [anon_sym_import] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_try] = ACTIONS(4108), + [anon_sym_delete] = ACTIONS(4108), + [anon_sym_throw] = ACTIONS(4108), + [anon_sym_namespace] = ACTIONS(4108), + [anon_sym_static_assert] = ACTIONS(4108), + [anon_sym_concept] = ACTIONS(4108), + [anon_sym_co_return] = ACTIONS(4108), + [anon_sym_co_yield] = ACTIONS(4108), + [anon_sym_R_DQUOTE] = ACTIONS(4110), + [anon_sym_LR_DQUOTE] = ACTIONS(4110), + [anon_sym_uR_DQUOTE] = ACTIONS(4110), + [anon_sym_UR_DQUOTE] = ACTIONS(4110), + [anon_sym_u8R_DQUOTE] = ACTIONS(4110), + [anon_sym_co_await] = ACTIONS(4108), + [anon_sym_new] = ACTIONS(4108), + [anon_sym_requires] = ACTIONS(4108), + [anon_sym_CARET_CARET] = ACTIONS(4110), + [anon_sym_LBRACK_COLON] = ACTIONS(4110), + [sym_this] = ACTIONS(4108), }, - [STATE(1012)] = { - [sym_identifier] = ACTIONS(5237), - [anon_sym_LPAREN2] = ACTIONS(5240), - [anon_sym_BANG] = ACTIONS(5243), - [anon_sym_TILDE] = ACTIONS(5240), - [anon_sym_DASH] = ACTIONS(5245), - [anon_sym_PLUS] = ACTIONS(5245), - [anon_sym_STAR] = ACTIONS(5240), - [anon_sym_AMP_AMP] = ACTIONS(5247), - [anon_sym_AMP] = ACTIONS(5237), - [anon_sym_SEMI] = ACTIONS(5243), - [anon_sym___extension__] = ACTIONS(5237), - [anon_sym_virtual] = ACTIONS(5249), - [anon_sym_extern] = ACTIONS(5249), - [anon_sym___attribute__] = ACTIONS(5249), - [anon_sym___attribute] = ACTIONS(5249), - [anon_sym_using] = ACTIONS(5245), - [anon_sym_COLON_COLON] = ACTIONS(5240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5240), - [anon_sym___declspec] = ACTIONS(5249), - [anon_sym___based] = ACTIONS(5249), - [anon_sym_LBRACE] = ACTIONS(5243), - [anon_sym_signed] = ACTIONS(5249), - [anon_sym_unsigned] = ACTIONS(5249), - [anon_sym_long] = ACTIONS(5249), - [anon_sym_short] = ACTIONS(5249), - [anon_sym_LBRACK] = ACTIONS(5237), - [anon_sym_static] = ACTIONS(5249), - [anon_sym_register] = ACTIONS(5249), - [anon_sym_inline] = ACTIONS(5249), - [anon_sym___inline] = ACTIONS(5249), - [anon_sym___inline__] = ACTIONS(5249), - [anon_sym___forceinline] = ACTIONS(5249), - [anon_sym_thread_local] = ACTIONS(5249), - [anon_sym___thread] = ACTIONS(5249), - [anon_sym_const] = ACTIONS(5249), - [anon_sym_constexpr] = ACTIONS(5249), - [anon_sym_volatile] = ACTIONS(5249), - [anon_sym_restrict] = ACTIONS(5249), - [anon_sym___restrict__] = ACTIONS(5249), - [anon_sym__Atomic] = ACTIONS(5249), - [anon_sym__Noreturn] = ACTIONS(5249), - [anon_sym_noreturn] = ACTIONS(5249), - [anon_sym__Nonnull] = ACTIONS(5249), - [anon_sym_mutable] = ACTIONS(5249), - [anon_sym_constinit] = ACTIONS(5249), - [anon_sym_consteval] = ACTIONS(5249), - [anon_sym_alignas] = ACTIONS(5249), - [anon_sym__Alignas] = ACTIONS(5249), - [sym_primitive_type] = ACTIONS(5237), - [anon_sym_enum] = ACTIONS(5249), - [anon_sym_class] = ACTIONS(5249), - [anon_sym_struct] = ACTIONS(5249), - [anon_sym_union] = ACTIONS(5249), - [anon_sym_if] = ACTIONS(5245), - [anon_sym_switch] = ACTIONS(5245), - [anon_sym_case] = ACTIONS(5245), - [anon_sym_default] = ACTIONS(5245), - [anon_sym_while] = ACTIONS(5245), - [anon_sym_do] = ACTIONS(5245), - [anon_sym_for] = ACTIONS(5245), - [anon_sym_return] = ACTIONS(5245), - [anon_sym_break] = ACTIONS(5245), - [anon_sym_continue] = ACTIONS(5245), - [anon_sym_goto] = ACTIONS(5245), - [anon_sym___try] = ACTIONS(5245), - [anon_sym___leave] = ACTIONS(5245), - [anon_sym_not] = ACTIONS(5245), - [anon_sym_compl] = ACTIONS(5245), - [anon_sym_DASH_DASH] = ACTIONS(5243), - [anon_sym_PLUS_PLUS] = ACTIONS(5243), - [anon_sym_sizeof] = ACTIONS(5245), - [anon_sym___alignof__] = ACTIONS(5245), - [anon_sym___alignof] = ACTIONS(5245), - [anon_sym__alignof] = ACTIONS(5245), - [anon_sym_alignof] = ACTIONS(5245), - [anon_sym__Alignof] = ACTIONS(5245), - [anon_sym_offsetof] = ACTIONS(5245), - [anon_sym__Generic] = ACTIONS(5245), - [anon_sym_typename] = ACTIONS(5237), - [anon_sym_asm] = ACTIONS(5245), - [anon_sym___asm__] = ACTIONS(5245), - [anon_sym___asm] = ACTIONS(5245), - [sym_number_literal] = ACTIONS(5243), - [anon_sym_L_SQUOTE] = ACTIONS(5243), - [anon_sym_u_SQUOTE] = ACTIONS(5243), - [anon_sym_U_SQUOTE] = ACTIONS(5243), - [anon_sym_u8_SQUOTE] = ACTIONS(5243), - [anon_sym_SQUOTE] = ACTIONS(5243), - [anon_sym_L_DQUOTE] = ACTIONS(5243), - [anon_sym_u_DQUOTE] = ACTIONS(5243), - [anon_sym_U_DQUOTE] = ACTIONS(5243), - [anon_sym_u8_DQUOTE] = ACTIONS(5243), - [anon_sym_DQUOTE] = ACTIONS(5243), - [sym_true] = ACTIONS(5245), - [sym_false] = ACTIONS(5245), - [anon_sym_NULL] = ACTIONS(5245), - [anon_sym_nullptr] = ACTIONS(5245), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5249), - [anon_sym_decltype] = ACTIONS(5237), - [anon_sym_explicit] = ACTIONS(5249), - [anon_sym_template] = ACTIONS(5237), - [anon_sym_operator] = ACTIONS(5249), - [anon_sym_try] = ACTIONS(5245), - [anon_sym_delete] = ACTIONS(5245), - [anon_sym_throw] = ACTIONS(5245), - [anon_sym_co_return] = ACTIONS(5245), - [anon_sym_co_yield] = ACTIONS(5245), - [anon_sym_R_DQUOTE] = ACTIONS(5243), - [anon_sym_LR_DQUOTE] = ACTIONS(5243), - [anon_sym_uR_DQUOTE] = ACTIONS(5243), - [anon_sym_UR_DQUOTE] = ACTIONS(5243), - [anon_sym_u8R_DQUOTE] = ACTIONS(5243), - [anon_sym_co_await] = ACTIONS(5245), - [anon_sym_new] = ACTIONS(5245), - [anon_sym_requires] = ACTIONS(5245), - [anon_sym_CARET_CARET] = ACTIONS(5243), - [anon_sym_LBRACK_COLON] = ACTIONS(5240), - [sym_this] = ACTIONS(5245), + [STATE(921)] = { + [ts_builtin_sym_end] = ACTIONS(4166), + [sym_identifier] = ACTIONS(4164), + [aux_sym_preproc_include_token1] = ACTIONS(4164), + [aux_sym_preproc_def_token1] = ACTIONS(4164), + [aux_sym_preproc_if_token1] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), + [sym_preproc_directive] = ACTIONS(4164), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_typedef] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_using] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym___cdecl] = ACTIONS(4164), + [anon_sym___clrcall] = ACTIONS(4164), + [anon_sym___stdcall] = ACTIONS(4164), + [anon_sym___fastcall] = ACTIONS(4164), + [anon_sym___thiscall] = ACTIONS(4164), + [anon_sym___vectorcall] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4166), + [anon_sym_signed] = ACTIONS(4164), + [anon_sym_unsigned] = ACTIONS(4164), + [anon_sym_long] = ACTIONS(4164), + [anon_sym_short] = ACTIONS(4164), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [sym_primitive_type] = ACTIONS(4164), + [anon_sym_enum] = ACTIONS(4164), + [anon_sym_class] = ACTIONS(4164), + [anon_sym_struct] = ACTIONS(4164), + [anon_sym_union] = ACTIONS(4164), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_switch] = ACTIONS(4164), + [anon_sym_case] = ACTIONS(4164), + [anon_sym_default] = ACTIONS(4164), + [anon_sym_while] = ACTIONS(4164), + [anon_sym_do] = ACTIONS(4164), + [anon_sym_for] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_goto] = ACTIONS(4164), + [anon_sym_not] = ACTIONS(4164), + [anon_sym_compl] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_sizeof] = ACTIONS(4164), + [anon_sym___alignof__] = ACTIONS(4164), + [anon_sym___alignof] = ACTIONS(4164), + [anon_sym__alignof] = ACTIONS(4164), + [anon_sym_alignof] = ACTIONS(4164), + [anon_sym__Alignof] = ACTIONS(4164), + [anon_sym_offsetof] = ACTIONS(4164), + [anon_sym__Generic] = ACTIONS(4164), + [anon_sym_typename] = ACTIONS(4164), + [anon_sym_asm] = ACTIONS(4164), + [anon_sym___asm__] = ACTIONS(4164), + [anon_sym___asm] = ACTIONS(4164), + [sym_number_literal] = ACTIONS(4166), + [anon_sym_L_SQUOTE] = ACTIONS(4166), + [anon_sym_u_SQUOTE] = ACTIONS(4166), + [anon_sym_U_SQUOTE] = ACTIONS(4166), + [anon_sym_u8_SQUOTE] = ACTIONS(4166), + [anon_sym_SQUOTE] = ACTIONS(4166), + [anon_sym_L_DQUOTE] = ACTIONS(4166), + [anon_sym_u_DQUOTE] = ACTIONS(4166), + [anon_sym_U_DQUOTE] = ACTIONS(4166), + [anon_sym_u8_DQUOTE] = ACTIONS(4166), + [anon_sym_DQUOTE] = ACTIONS(4166), + [sym_true] = ACTIONS(4164), + [sym_false] = ACTIONS(4164), + [anon_sym_NULL] = ACTIONS(4164), + [anon_sym_nullptr] = ACTIONS(4164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_explicit] = ACTIONS(4164), + [anon_sym_export] = ACTIONS(4164), + [anon_sym_module] = ACTIONS(4164), + [anon_sym_import] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_delete] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_namespace] = ACTIONS(4164), + [anon_sym_static_assert] = ACTIONS(4164), + [anon_sym_concept] = ACTIONS(4164), + [anon_sym_co_return] = ACTIONS(4164), + [anon_sym_co_yield] = ACTIONS(4164), + [anon_sym_R_DQUOTE] = ACTIONS(4166), + [anon_sym_LR_DQUOTE] = ACTIONS(4166), + [anon_sym_uR_DQUOTE] = ACTIONS(4166), + [anon_sym_UR_DQUOTE] = ACTIONS(4166), + [anon_sym_u8R_DQUOTE] = ACTIONS(4166), + [anon_sym_co_await] = ACTIONS(4164), + [anon_sym_new] = ACTIONS(4164), + [anon_sym_requires] = ACTIONS(4164), + [anon_sym_CARET_CARET] = ACTIONS(4166), + [anon_sym_LBRACK_COLON] = ACTIONS(4166), + [sym_this] = ACTIONS(4164), }, - [STATE(1013)] = { - [sym_string_literal] = STATE(4004), - [sym_decltype_auto] = STATE(4767), - [sym_template_argument_list] = STATE(2029), - [sym_raw_string_literal] = STATE(4004), - [aux_sym_sized_type_specifier_repeat1] = STATE(4121), - [sym_identifier] = ACTIONS(5251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_TILDE] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(5265), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym___extension__] = ACTIONS(5251), - [anon_sym_virtual] = ACTIONS(5251), - [anon_sym_extern] = ACTIONS(5251), - [anon_sym___attribute__] = ACTIONS(5251), - [anon_sym___attribute] = ACTIONS(5251), - [anon_sym_COLON] = ACTIONS(5268), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5258), - [anon_sym___declspec] = ACTIONS(5251), - [anon_sym___based] = ACTIONS(5251), - [anon_sym___cdecl] = ACTIONS(5251), - [anon_sym___clrcall] = ACTIONS(5251), - [anon_sym___stdcall] = ACTIONS(5251), - [anon_sym___fastcall] = ACTIONS(5251), - [anon_sym___thiscall] = ACTIONS(5251), - [anon_sym___vectorcall] = ACTIONS(5251), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_RBRACE] = ACTIONS(5253), - [anon_sym_signed] = ACTIONS(5274), - [anon_sym_unsigned] = ACTIONS(5274), - [anon_sym_long] = ACTIONS(5274), - [anon_sym_short] = ACTIONS(5274), - [anon_sym_LBRACK] = ACTIONS(5262), - [anon_sym_static] = ACTIONS(5251), - [anon_sym_EQ] = ACTIONS(5276), - [anon_sym_register] = ACTIONS(5251), - [anon_sym_inline] = ACTIONS(5251), - [anon_sym___inline] = ACTIONS(5251), - [anon_sym___inline__] = ACTIONS(5251), - [anon_sym___forceinline] = ACTIONS(5251), - [anon_sym_thread_local] = ACTIONS(5251), - [anon_sym___thread] = ACTIONS(5251), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5251), - [anon_sym_volatile] = ACTIONS(5251), - [anon_sym_restrict] = ACTIONS(5251), - [anon_sym___restrict__] = ACTIONS(5251), - [anon_sym__Atomic] = ACTIONS(5251), - [anon_sym__Noreturn] = ACTIONS(5251), - [anon_sym_noreturn] = ACTIONS(5251), - [anon_sym__Nonnull] = ACTIONS(5251), - [anon_sym_mutable] = ACTIONS(5251), - [anon_sym_constinit] = ACTIONS(5251), - [anon_sym_consteval] = ACTIONS(5251), - [anon_sym_alignas] = ACTIONS(5251), - [anon_sym__Alignas] = ACTIONS(5251), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5276), - [anon_sym_or_eq] = ACTIONS(5276), - [anon_sym_xor_eq] = ACTIONS(5276), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5260), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5260), - [anon_sym_not_eq] = ACTIONS(5260), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5280), - [anon_sym_decltype] = ACTIONS(5282), - [anon_sym_template] = ACTIONS(5251), - [anon_sym_operator] = ACTIONS(5251), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_LBRACK_COLON] = ACTIONS(5258), + [STATE(922)] = { + [ts_builtin_sym_end] = ACTIONS(4170), + [sym_identifier] = ACTIONS(4168), + [aux_sym_preproc_include_token1] = ACTIONS(4168), + [aux_sym_preproc_def_token1] = ACTIONS(4168), + [aux_sym_preproc_if_token1] = ACTIONS(4168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4168), + [sym_preproc_directive] = ACTIONS(4168), + [anon_sym_LPAREN2] = ACTIONS(4170), + [anon_sym_BANG] = ACTIONS(4170), + [anon_sym_TILDE] = ACTIONS(4170), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_AMP_AMP] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4170), + [anon_sym___extension__] = ACTIONS(4168), + [anon_sym_typedef] = ACTIONS(4168), + [anon_sym_virtual] = ACTIONS(4168), + [anon_sym_extern] = ACTIONS(4168), + [anon_sym___attribute__] = ACTIONS(4168), + [anon_sym___attribute] = ACTIONS(4168), + [anon_sym_using] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4170), + [anon_sym___declspec] = ACTIONS(4168), + [anon_sym___based] = ACTIONS(4168), + [anon_sym___cdecl] = ACTIONS(4168), + [anon_sym___clrcall] = ACTIONS(4168), + [anon_sym___stdcall] = ACTIONS(4168), + [anon_sym___fastcall] = ACTIONS(4168), + [anon_sym___thiscall] = ACTIONS(4168), + [anon_sym___vectorcall] = ACTIONS(4168), + [anon_sym_LBRACE] = ACTIONS(4170), + [anon_sym_signed] = ACTIONS(4168), + [anon_sym_unsigned] = ACTIONS(4168), + [anon_sym_long] = ACTIONS(4168), + [anon_sym_short] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_static] = ACTIONS(4168), + [anon_sym_register] = ACTIONS(4168), + [anon_sym_inline] = ACTIONS(4168), + [anon_sym___inline] = ACTIONS(4168), + [anon_sym___inline__] = ACTIONS(4168), + [anon_sym___forceinline] = ACTIONS(4168), + [anon_sym_thread_local] = ACTIONS(4168), + [anon_sym___thread] = ACTIONS(4168), + [anon_sym_const] = ACTIONS(4168), + [anon_sym_constexpr] = ACTIONS(4168), + [anon_sym_volatile] = ACTIONS(4168), + [anon_sym_restrict] = ACTIONS(4168), + [anon_sym___restrict__] = ACTIONS(4168), + [anon_sym__Atomic] = ACTIONS(4168), + [anon_sym__Noreturn] = ACTIONS(4168), + [anon_sym_noreturn] = ACTIONS(4168), + [anon_sym__Nonnull] = ACTIONS(4168), + [anon_sym_mutable] = ACTIONS(4168), + [anon_sym_constinit] = ACTIONS(4168), + [anon_sym_consteval] = ACTIONS(4168), + [anon_sym_alignas] = ACTIONS(4168), + [anon_sym__Alignas] = ACTIONS(4168), + [sym_primitive_type] = ACTIONS(4168), + [anon_sym_enum] = ACTIONS(4168), + [anon_sym_class] = ACTIONS(4168), + [anon_sym_struct] = ACTIONS(4168), + [anon_sym_union] = ACTIONS(4168), + [anon_sym_if] = ACTIONS(4168), + [anon_sym_switch] = ACTIONS(4168), + [anon_sym_case] = ACTIONS(4168), + [anon_sym_default] = ACTIONS(4168), + [anon_sym_while] = ACTIONS(4168), + [anon_sym_do] = ACTIONS(4168), + [anon_sym_for] = ACTIONS(4168), + [anon_sym_return] = ACTIONS(4168), + [anon_sym_break] = ACTIONS(4168), + [anon_sym_continue] = ACTIONS(4168), + [anon_sym_goto] = ACTIONS(4168), + [anon_sym_not] = ACTIONS(4168), + [anon_sym_compl] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4170), + [anon_sym_PLUS_PLUS] = ACTIONS(4170), + [anon_sym_sizeof] = ACTIONS(4168), + [anon_sym___alignof__] = ACTIONS(4168), + [anon_sym___alignof] = ACTIONS(4168), + [anon_sym__alignof] = ACTIONS(4168), + [anon_sym_alignof] = ACTIONS(4168), + [anon_sym__Alignof] = ACTIONS(4168), + [anon_sym_offsetof] = ACTIONS(4168), + [anon_sym__Generic] = ACTIONS(4168), + [anon_sym_typename] = ACTIONS(4168), + [anon_sym_asm] = ACTIONS(4168), + [anon_sym___asm__] = ACTIONS(4168), + [anon_sym___asm] = ACTIONS(4168), + [sym_number_literal] = ACTIONS(4170), + [anon_sym_L_SQUOTE] = ACTIONS(4170), + [anon_sym_u_SQUOTE] = ACTIONS(4170), + [anon_sym_U_SQUOTE] = ACTIONS(4170), + [anon_sym_u8_SQUOTE] = ACTIONS(4170), + [anon_sym_SQUOTE] = ACTIONS(4170), + [anon_sym_L_DQUOTE] = ACTIONS(4170), + [anon_sym_u_DQUOTE] = ACTIONS(4170), + [anon_sym_U_DQUOTE] = ACTIONS(4170), + [anon_sym_u8_DQUOTE] = ACTIONS(4170), + [anon_sym_DQUOTE] = ACTIONS(4170), + [sym_true] = ACTIONS(4168), + [sym_false] = ACTIONS(4168), + [anon_sym_NULL] = ACTIONS(4168), + [anon_sym_nullptr] = ACTIONS(4168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4168), + [anon_sym_decltype] = ACTIONS(4168), + [anon_sym_explicit] = ACTIONS(4168), + [anon_sym_export] = ACTIONS(4168), + [anon_sym_module] = ACTIONS(4168), + [anon_sym_import] = ACTIONS(4168), + [anon_sym_template] = ACTIONS(4168), + [anon_sym_operator] = ACTIONS(4168), + [anon_sym_try] = ACTIONS(4168), + [anon_sym_delete] = ACTIONS(4168), + [anon_sym_throw] = ACTIONS(4168), + [anon_sym_namespace] = ACTIONS(4168), + [anon_sym_static_assert] = ACTIONS(4168), + [anon_sym_concept] = ACTIONS(4168), + [anon_sym_co_return] = ACTIONS(4168), + [anon_sym_co_yield] = ACTIONS(4168), + [anon_sym_R_DQUOTE] = ACTIONS(4170), + [anon_sym_LR_DQUOTE] = ACTIONS(4170), + [anon_sym_uR_DQUOTE] = ACTIONS(4170), + [anon_sym_UR_DQUOTE] = ACTIONS(4170), + [anon_sym_u8R_DQUOTE] = ACTIONS(4170), + [anon_sym_co_await] = ACTIONS(4168), + [anon_sym_new] = ACTIONS(4168), + [anon_sym_requires] = ACTIONS(4168), + [anon_sym_CARET_CARET] = ACTIONS(4170), + [anon_sym_LBRACK_COLON] = ACTIONS(4170), + [sym_this] = ACTIONS(4168), }, - [STATE(1014)] = { - [sym_string_literal] = STATE(4004), - [sym_decltype_auto] = STATE(4767), - [sym_template_argument_list] = STATE(2061), - [sym_raw_string_literal] = STATE(4004), - [aux_sym_sized_type_specifier_repeat1] = STATE(4121), - [sym_identifier] = ACTIONS(5251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5284), - [anon_sym_TILDE] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(5265), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5255), - [anon_sym___extension__] = ACTIONS(5251), - [anon_sym_virtual] = ACTIONS(5251), - [anon_sym_extern] = ACTIONS(5251), - [anon_sym___attribute__] = ACTIONS(5251), - [anon_sym___attribute] = ACTIONS(5251), - [anon_sym_COLON] = ACTIONS(5288), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5290), - [anon_sym___declspec] = ACTIONS(5251), - [anon_sym___based] = ACTIONS(5251), - [anon_sym___cdecl] = ACTIONS(5251), - [anon_sym___clrcall] = ACTIONS(5251), - [anon_sym___stdcall] = ACTIONS(5251), - [anon_sym___fastcall] = ACTIONS(5251), - [anon_sym___thiscall] = ACTIONS(5251), - [anon_sym___vectorcall] = ACTIONS(5251), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_RBRACE] = ACTIONS(5253), - [anon_sym_signed] = ACTIONS(5274), - [anon_sym_unsigned] = ACTIONS(5274), - [anon_sym_long] = ACTIONS(5274), - [anon_sym_short] = ACTIONS(5274), - [anon_sym_LBRACK] = ACTIONS(5293), - [anon_sym_static] = ACTIONS(5251), - [anon_sym_EQ] = ACTIONS(5276), - [anon_sym_register] = ACTIONS(5251), - [anon_sym_inline] = ACTIONS(5251), - [anon_sym___inline] = ACTIONS(5251), - [anon_sym___inline__] = ACTIONS(5251), - [anon_sym___forceinline] = ACTIONS(5251), - [anon_sym_thread_local] = ACTIONS(5251), - [anon_sym___thread] = ACTIONS(5251), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5251), - [anon_sym_volatile] = ACTIONS(5251), - [anon_sym_restrict] = ACTIONS(5251), - [anon_sym___restrict__] = ACTIONS(5251), - [anon_sym__Atomic] = ACTIONS(5251), - [anon_sym__Noreturn] = ACTIONS(5251), - [anon_sym_noreturn] = ACTIONS(5251), - [anon_sym__Nonnull] = ACTIONS(5251), - [anon_sym_mutable] = ACTIONS(5251), - [anon_sym_constinit] = ACTIONS(5251), - [anon_sym_consteval] = ACTIONS(5251), - [anon_sym_alignas] = ACTIONS(5251), - [anon_sym__Alignas] = ACTIONS(5251), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5276), - [anon_sym_or_eq] = ACTIONS(5276), - [anon_sym_xor_eq] = ACTIONS(5276), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5260), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5260), - [anon_sym_not_eq] = ACTIONS(5260), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5280), - [anon_sym_decltype] = ACTIONS(5282), - [anon_sym_template] = ACTIONS(5251), - [anon_sym_operator] = ACTIONS(5251), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_LBRACK_COLON] = ACTIONS(5258), + [STATE(923)] = { + [ts_builtin_sym_end] = ACTIONS(4174), + [sym_identifier] = ACTIONS(4172), + [aux_sym_preproc_include_token1] = ACTIONS(4172), + [aux_sym_preproc_def_token1] = ACTIONS(4172), + [aux_sym_preproc_if_token1] = ACTIONS(4172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4172), + [sym_preproc_directive] = ACTIONS(4172), + [anon_sym_LPAREN2] = ACTIONS(4174), + [anon_sym_BANG] = ACTIONS(4174), + [anon_sym_TILDE] = ACTIONS(4174), + [anon_sym_DASH] = ACTIONS(4172), + [anon_sym_PLUS] = ACTIONS(4172), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_AMP_AMP] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4172), + [anon_sym_SEMI] = ACTIONS(4174), + [anon_sym___extension__] = ACTIONS(4172), + [anon_sym_typedef] = ACTIONS(4172), + [anon_sym_virtual] = ACTIONS(4172), + [anon_sym_extern] = ACTIONS(4172), + [anon_sym___attribute__] = ACTIONS(4172), + [anon_sym___attribute] = ACTIONS(4172), + [anon_sym_using] = ACTIONS(4172), + [anon_sym_COLON_COLON] = ACTIONS(4174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4174), + [anon_sym___declspec] = ACTIONS(4172), + [anon_sym___based] = ACTIONS(4172), + [anon_sym___cdecl] = ACTIONS(4172), + [anon_sym___clrcall] = ACTIONS(4172), + [anon_sym___stdcall] = ACTIONS(4172), + [anon_sym___fastcall] = ACTIONS(4172), + [anon_sym___thiscall] = ACTIONS(4172), + [anon_sym___vectorcall] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(4172), + [anon_sym_unsigned] = ACTIONS(4172), + [anon_sym_long] = ACTIONS(4172), + [anon_sym_short] = ACTIONS(4172), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_static] = ACTIONS(4172), + [anon_sym_register] = ACTIONS(4172), + [anon_sym_inline] = ACTIONS(4172), + [anon_sym___inline] = ACTIONS(4172), + [anon_sym___inline__] = ACTIONS(4172), + [anon_sym___forceinline] = ACTIONS(4172), + [anon_sym_thread_local] = ACTIONS(4172), + [anon_sym___thread] = ACTIONS(4172), + [anon_sym_const] = ACTIONS(4172), + [anon_sym_constexpr] = ACTIONS(4172), + [anon_sym_volatile] = ACTIONS(4172), + [anon_sym_restrict] = ACTIONS(4172), + [anon_sym___restrict__] = ACTIONS(4172), + [anon_sym__Atomic] = ACTIONS(4172), + [anon_sym__Noreturn] = ACTIONS(4172), + [anon_sym_noreturn] = ACTIONS(4172), + [anon_sym__Nonnull] = ACTIONS(4172), + [anon_sym_mutable] = ACTIONS(4172), + [anon_sym_constinit] = ACTIONS(4172), + [anon_sym_consteval] = ACTIONS(4172), + [anon_sym_alignas] = ACTIONS(4172), + [anon_sym__Alignas] = ACTIONS(4172), + [sym_primitive_type] = ACTIONS(4172), + [anon_sym_enum] = ACTIONS(4172), + [anon_sym_class] = ACTIONS(4172), + [anon_sym_struct] = ACTIONS(4172), + [anon_sym_union] = ACTIONS(4172), + [anon_sym_if] = ACTIONS(4172), + [anon_sym_switch] = ACTIONS(4172), + [anon_sym_case] = ACTIONS(4172), + [anon_sym_default] = ACTIONS(4172), + [anon_sym_while] = ACTIONS(4172), + [anon_sym_do] = ACTIONS(4172), + [anon_sym_for] = ACTIONS(4172), + [anon_sym_return] = ACTIONS(4172), + [anon_sym_break] = ACTIONS(4172), + [anon_sym_continue] = ACTIONS(4172), + [anon_sym_goto] = ACTIONS(4172), + [anon_sym_not] = ACTIONS(4172), + [anon_sym_compl] = ACTIONS(4172), + [anon_sym_DASH_DASH] = ACTIONS(4174), + [anon_sym_PLUS_PLUS] = ACTIONS(4174), + [anon_sym_sizeof] = ACTIONS(4172), + [anon_sym___alignof__] = ACTIONS(4172), + [anon_sym___alignof] = ACTIONS(4172), + [anon_sym__alignof] = ACTIONS(4172), + [anon_sym_alignof] = ACTIONS(4172), + [anon_sym__Alignof] = ACTIONS(4172), + [anon_sym_offsetof] = ACTIONS(4172), + [anon_sym__Generic] = ACTIONS(4172), + [anon_sym_typename] = ACTIONS(4172), + [anon_sym_asm] = ACTIONS(4172), + [anon_sym___asm__] = ACTIONS(4172), + [anon_sym___asm] = ACTIONS(4172), + [sym_number_literal] = ACTIONS(4174), + [anon_sym_L_SQUOTE] = ACTIONS(4174), + [anon_sym_u_SQUOTE] = ACTIONS(4174), + [anon_sym_U_SQUOTE] = ACTIONS(4174), + [anon_sym_u8_SQUOTE] = ACTIONS(4174), + [anon_sym_SQUOTE] = ACTIONS(4174), + [anon_sym_L_DQUOTE] = ACTIONS(4174), + [anon_sym_u_DQUOTE] = ACTIONS(4174), + [anon_sym_U_DQUOTE] = ACTIONS(4174), + [anon_sym_u8_DQUOTE] = ACTIONS(4174), + [anon_sym_DQUOTE] = ACTIONS(4174), + [sym_true] = ACTIONS(4172), + [sym_false] = ACTIONS(4172), + [anon_sym_NULL] = ACTIONS(4172), + [anon_sym_nullptr] = ACTIONS(4172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4172), + [anon_sym_decltype] = ACTIONS(4172), + [anon_sym_explicit] = ACTIONS(4172), + [anon_sym_export] = ACTIONS(4172), + [anon_sym_module] = ACTIONS(4172), + [anon_sym_import] = ACTIONS(4172), + [anon_sym_template] = ACTIONS(4172), + [anon_sym_operator] = ACTIONS(4172), + [anon_sym_try] = ACTIONS(4172), + [anon_sym_delete] = ACTIONS(4172), + [anon_sym_throw] = ACTIONS(4172), + [anon_sym_namespace] = ACTIONS(4172), + [anon_sym_static_assert] = ACTIONS(4172), + [anon_sym_concept] = ACTIONS(4172), + [anon_sym_co_return] = ACTIONS(4172), + [anon_sym_co_yield] = ACTIONS(4172), + [anon_sym_R_DQUOTE] = ACTIONS(4174), + [anon_sym_LR_DQUOTE] = ACTIONS(4174), + [anon_sym_uR_DQUOTE] = ACTIONS(4174), + [anon_sym_UR_DQUOTE] = ACTIONS(4174), + [anon_sym_u8R_DQUOTE] = ACTIONS(4174), + [anon_sym_co_await] = ACTIONS(4172), + [anon_sym_new] = ACTIONS(4172), + [anon_sym_requires] = ACTIONS(4172), + [anon_sym_CARET_CARET] = ACTIONS(4174), + [anon_sym_LBRACK_COLON] = ACTIONS(4174), + [sym_this] = ACTIONS(4172), }, - [STATE(1015)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_call_modifier] = STATE(6282), - [sym__declarator] = STATE(8939), - [sym__abstract_declarator] = STATE(9271), - [sym_parenthesized_declarator] = STATE(8469), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_function_declarator] = STATE(8469), - [sym_abstract_function_declarator] = STATE(8389), - [sym_array_declarator] = STATE(8469), - [sym_abstract_array_declarator] = STATE(8389), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_list] = STATE(4601), - [sym_parameter_declaration] = STATE(9742), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_explicit_object_parameter_declaration] = STATE(9742), - [sym_optional_parameter_declaration] = STATE(9742), - [sym_variadic_parameter_declaration] = STATE(9742), - [sym_reference_declarator] = STATE(8469), - [sym_abstract_reference_declarator] = STATE(8389), - [sym_structured_binding_declarator] = STATE(8469), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7829), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(5297), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), - [anon_sym_RPAREN] = ACTIONS(5299), - [anon_sym_LPAREN2] = ACTIONS(5301), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(5303), - [anon_sym_AMP_AMP] = ACTIONS(5305), - [anon_sym_AMP] = ACTIONS(5307), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), + [STATE(924)] = { + [sym_preproc_def] = STATE(929), + [sym_preproc_function_def] = STATE(929), + [sym_preproc_call] = STATE(929), + [sym_preproc_if_in_field_declaration_list] = STATE(929), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(929), + [sym_type_definition] = STATE(929), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8092), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(929), + [sym_field_declaration] = STATE(929), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(929), + [sym_operator_cast] = STATE(9211), + [sym_inline_method_definition] = STATE(929), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(929), + [sym_operator_cast_declaration] = STATE(929), + [sym_constructor_or_destructor_definition] = STATE(929), + [sym_constructor_or_destructor_declaration] = STATE(929), + [sym_friend_declaration] = STATE(929), + [sym_access_specifier] = STATE(11030), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(929), + [sym_alias_declaration] = STATE(929), + [sym_static_assert_declaration] = STATE(929), + [sym_consteval_block_declaration] = STATE(929), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(929), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9455), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(4686), + [aux_sym_preproc_if_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), + [sym_preproc_directive] = ACTIONS(4692), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(4771), + [anon_sym___extension__] = ACTIONS(4696), + [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5309), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_using] = ACTIONS(4700), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(1880), - [anon_sym___clrcall] = ACTIONS(1880), - [anon_sym___stdcall] = ACTIONS(1880), - [anon_sym___fastcall] = ACTIONS(1880), - [anon_sym___thiscall] = ACTIONS(1880), - [anon_sym___vectorcall] = ACTIONS(1880), + [anon_sym_RBRACE] = ACTIONS(4773), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(3460), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -196264,7 +191408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4704), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -196274,6938 +191418,12908 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4706), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(5313), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - [sym_this] = ACTIONS(5315), - }, - [STATE(1016)] = { - [sym_catch_clause] = STATE(1016), - [aux_sym_constructor_try_statement_repeat1] = STATE(1016), - [sym_identifier] = ACTIONS(3137), - [anon_sym_LPAREN2] = ACTIONS(3139), - [anon_sym_BANG] = ACTIONS(3139), - [anon_sym_TILDE] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3139), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym___extension__] = ACTIONS(3137), - [anon_sym_typedef] = ACTIONS(3137), - [anon_sym_virtual] = ACTIONS(3137), - [anon_sym_extern] = ACTIONS(3137), - [anon_sym___attribute__] = ACTIONS(3137), - [anon_sym___attribute] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3139), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3139), - [anon_sym___declspec] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_signed] = ACTIONS(3137), - [anon_sym_unsigned] = ACTIONS(3137), - [anon_sym_long] = ACTIONS(3137), - [anon_sym_short] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_static] = ACTIONS(3137), - [anon_sym_register] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym___inline] = ACTIONS(3137), - [anon_sym___inline__] = ACTIONS(3137), - [anon_sym___forceinline] = ACTIONS(3137), - [anon_sym_thread_local] = ACTIONS(3137), - [anon_sym___thread] = ACTIONS(3137), - [anon_sym_const] = ACTIONS(3137), - [anon_sym_constexpr] = ACTIONS(3137), - [anon_sym_volatile] = ACTIONS(3137), - [anon_sym_restrict] = ACTIONS(3137), - [anon_sym___restrict__] = ACTIONS(3137), - [anon_sym__Atomic] = ACTIONS(3137), - [anon_sym__Noreturn] = ACTIONS(3137), - [anon_sym_noreturn] = ACTIONS(3137), - [anon_sym__Nonnull] = ACTIONS(3137), - [anon_sym_mutable] = ACTIONS(3137), - [anon_sym_constinit] = ACTIONS(3137), - [anon_sym_consteval] = ACTIONS(3137), - [anon_sym_alignas] = ACTIONS(3137), - [anon_sym__Alignas] = ACTIONS(3137), - [sym_primitive_type] = ACTIONS(3137), - [anon_sym_enum] = ACTIONS(3137), - [anon_sym_class] = ACTIONS(3137), - [anon_sym_struct] = ACTIONS(3137), - [anon_sym_union] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_switch] = ACTIONS(3137), - [anon_sym_while] = ACTIONS(3137), - [anon_sym_do] = ACTIONS(3137), - [anon_sym_for] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_goto] = ACTIONS(3137), - [anon_sym___try] = ACTIONS(3137), - [anon_sym___leave] = ACTIONS(3137), - [anon_sym_not] = ACTIONS(3137), - [anon_sym_compl] = ACTIONS(3137), - [anon_sym_DASH_DASH] = ACTIONS(3139), - [anon_sym_PLUS_PLUS] = ACTIONS(3139), - [anon_sym_sizeof] = ACTIONS(3137), - [anon_sym___alignof__] = ACTIONS(3137), - [anon_sym___alignof] = ACTIONS(3137), - [anon_sym__alignof] = ACTIONS(3137), - [anon_sym_alignof] = ACTIONS(3137), - [anon_sym__Alignof] = ACTIONS(3137), - [anon_sym_offsetof] = ACTIONS(3137), - [anon_sym__Generic] = ACTIONS(3137), - [anon_sym_typename] = ACTIONS(3137), - [anon_sym_asm] = ACTIONS(3137), - [anon_sym___asm__] = ACTIONS(3137), - [anon_sym___asm] = ACTIONS(3137), - [sym_number_literal] = ACTIONS(3139), - [anon_sym_L_SQUOTE] = ACTIONS(3139), - [anon_sym_u_SQUOTE] = ACTIONS(3139), - [anon_sym_U_SQUOTE] = ACTIONS(3139), - [anon_sym_u8_SQUOTE] = ACTIONS(3139), - [anon_sym_SQUOTE] = ACTIONS(3139), - [anon_sym_L_DQUOTE] = ACTIONS(3139), - [anon_sym_u_DQUOTE] = ACTIONS(3139), - [anon_sym_U_DQUOTE] = ACTIONS(3139), - [anon_sym_u8_DQUOTE] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3139), - [sym_true] = ACTIONS(3137), - [sym_false] = ACTIONS(3137), - [anon_sym_NULL] = ACTIONS(3137), - [anon_sym_nullptr] = ACTIONS(3137), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3137), - [anon_sym_decltype] = ACTIONS(3137), - [anon_sym_template] = ACTIONS(3137), - [anon_sym_try] = ACTIONS(3137), - [anon_sym_delete] = ACTIONS(3137), - [anon_sym_throw] = ACTIONS(3137), - [anon_sym_co_return] = ACTIONS(3137), - [anon_sym_co_yield] = ACTIONS(3137), - [anon_sym_catch] = ACTIONS(5317), - [anon_sym_R_DQUOTE] = ACTIONS(3139), - [anon_sym_LR_DQUOTE] = ACTIONS(3139), - [anon_sym_uR_DQUOTE] = ACTIONS(3139), - [anon_sym_UR_DQUOTE] = ACTIONS(3139), - [anon_sym_u8R_DQUOTE] = ACTIONS(3139), - [anon_sym_co_await] = ACTIONS(3137), - [anon_sym_new] = ACTIONS(3137), - [anon_sym_requires] = ACTIONS(3137), - [anon_sym_CARET_CARET] = ACTIONS(3139), - [anon_sym_LBRACK_COLON] = ACTIONS(3139), - [sym_this] = ACTIONS(3137), - }, - [STATE(1017)] = { - [sym_catch_clause] = STATE(1016), - [aux_sym_constructor_try_statement_repeat1] = STATE(1016), - [sym_identifier] = ACTIONS(3148), - [anon_sym_LPAREN2] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3150), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym___extension__] = ACTIONS(3148), - [anon_sym_typedef] = ACTIONS(3148), - [anon_sym_virtual] = ACTIONS(3148), - [anon_sym_extern] = ACTIONS(3148), - [anon_sym___attribute__] = ACTIONS(3148), - [anon_sym___attribute] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3150), - [anon_sym___declspec] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_signed] = ACTIONS(3148), - [anon_sym_unsigned] = ACTIONS(3148), - [anon_sym_long] = ACTIONS(3148), - [anon_sym_short] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_register] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym___inline] = ACTIONS(3148), - [anon_sym___inline__] = ACTIONS(3148), - [anon_sym___forceinline] = ACTIONS(3148), - [anon_sym_thread_local] = ACTIONS(3148), - [anon_sym___thread] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_constexpr] = ACTIONS(3148), - [anon_sym_volatile] = ACTIONS(3148), - [anon_sym_restrict] = ACTIONS(3148), - [anon_sym___restrict__] = ACTIONS(3148), - [anon_sym__Atomic] = ACTIONS(3148), - [anon_sym__Noreturn] = ACTIONS(3148), - [anon_sym_noreturn] = ACTIONS(3148), - [anon_sym__Nonnull] = ACTIONS(3148), - [anon_sym_mutable] = ACTIONS(3148), - [anon_sym_constinit] = ACTIONS(3148), - [anon_sym_consteval] = ACTIONS(3148), - [anon_sym_alignas] = ACTIONS(3148), - [anon_sym__Alignas] = ACTIONS(3148), - [sym_primitive_type] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(3148), - [anon_sym_union] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_switch] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_do] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_goto] = ACTIONS(3148), - [anon_sym___try] = ACTIONS(3148), - [anon_sym___leave] = ACTIONS(3148), - [anon_sym_not] = ACTIONS(3148), - [anon_sym_compl] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_sizeof] = ACTIONS(3148), - [anon_sym___alignof__] = ACTIONS(3148), - [anon_sym___alignof] = ACTIONS(3148), - [anon_sym__alignof] = ACTIONS(3148), - [anon_sym_alignof] = ACTIONS(3148), - [anon_sym__Alignof] = ACTIONS(3148), - [anon_sym_offsetof] = ACTIONS(3148), - [anon_sym__Generic] = ACTIONS(3148), - [anon_sym_typename] = ACTIONS(3148), - [anon_sym_asm] = ACTIONS(3148), - [anon_sym___asm__] = ACTIONS(3148), - [anon_sym___asm] = ACTIONS(3148), - [sym_number_literal] = ACTIONS(3150), - [anon_sym_L_SQUOTE] = ACTIONS(3150), - [anon_sym_u_SQUOTE] = ACTIONS(3150), - [anon_sym_U_SQUOTE] = ACTIONS(3150), - [anon_sym_u8_SQUOTE] = ACTIONS(3150), - [anon_sym_SQUOTE] = ACTIONS(3150), - [anon_sym_L_DQUOTE] = ACTIONS(3150), - [anon_sym_u_DQUOTE] = ACTIONS(3150), - [anon_sym_U_DQUOTE] = ACTIONS(3150), - [anon_sym_u8_DQUOTE] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3150), - [sym_true] = ACTIONS(3148), - [sym_false] = ACTIONS(3148), - [anon_sym_NULL] = ACTIONS(3148), - [anon_sym_nullptr] = ACTIONS(3148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3148), - [anon_sym_decltype] = ACTIONS(3148), - [anon_sym_template] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_delete] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_co_return] = ACTIONS(3148), - [anon_sym_co_yield] = ACTIONS(3148), - [anon_sym_catch] = ACTIONS(5320), - [anon_sym_R_DQUOTE] = ACTIONS(3150), - [anon_sym_LR_DQUOTE] = ACTIONS(3150), - [anon_sym_uR_DQUOTE] = ACTIONS(3150), - [anon_sym_UR_DQUOTE] = ACTIONS(3150), - [anon_sym_u8R_DQUOTE] = ACTIONS(3150), - [anon_sym_co_await] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3148), - [anon_sym_requires] = ACTIONS(3148), - [anon_sym_CARET_CARET] = ACTIONS(3150), - [anon_sym_LBRACK_COLON] = ACTIONS(3150), - [sym_this] = ACTIONS(3148), - }, - [STATE(1018)] = { - [sym_string_literal] = STATE(4004), - [sym_decltype_auto] = STATE(4767), - [sym_template_argument_list] = STATE(2061), - [sym_raw_string_literal] = STATE(4004), - [aux_sym_sized_type_specifier_repeat1] = STATE(4121), - [sym_identifier] = ACTIONS(5251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5284), - [anon_sym_TILDE] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(5265), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5255), - [anon_sym___extension__] = ACTIONS(5251), - [anon_sym_virtual] = ACTIONS(5251), - [anon_sym_extern] = ACTIONS(5251), - [anon_sym___attribute__] = ACTIONS(5251), - [anon_sym___attribute] = ACTIONS(5251), - [anon_sym_COLON] = ACTIONS(5322), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5290), - [anon_sym___declspec] = ACTIONS(5251), - [anon_sym___based] = ACTIONS(5251), - [anon_sym___cdecl] = ACTIONS(5251), - [anon_sym___clrcall] = ACTIONS(5251), - [anon_sym___stdcall] = ACTIONS(5251), - [anon_sym___fastcall] = ACTIONS(5251), - [anon_sym___thiscall] = ACTIONS(5251), - [anon_sym___vectorcall] = ACTIONS(5251), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(5274), - [anon_sym_unsigned] = ACTIONS(5274), - [anon_sym_long] = ACTIONS(5274), - [anon_sym_short] = ACTIONS(5274), - [anon_sym_LBRACK] = ACTIONS(5293), - [anon_sym_static] = ACTIONS(5251), - [anon_sym_EQ] = ACTIONS(5276), - [anon_sym_register] = ACTIONS(5251), - [anon_sym_inline] = ACTIONS(5251), - [anon_sym___inline] = ACTIONS(5251), - [anon_sym___inline__] = ACTIONS(5251), - [anon_sym___forceinline] = ACTIONS(5251), - [anon_sym_thread_local] = ACTIONS(5251), - [anon_sym___thread] = ACTIONS(5251), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5251), - [anon_sym_volatile] = ACTIONS(5251), - [anon_sym_restrict] = ACTIONS(5251), - [anon_sym___restrict__] = ACTIONS(5251), - [anon_sym__Atomic] = ACTIONS(5251), - [anon_sym__Noreturn] = ACTIONS(5251), - [anon_sym_noreturn] = ACTIONS(5251), - [anon_sym__Nonnull] = ACTIONS(5251), - [anon_sym_mutable] = ACTIONS(5251), - [anon_sym_constinit] = ACTIONS(5251), - [anon_sym_consteval] = ACTIONS(5251), - [anon_sym_alignas] = ACTIONS(5251), - [anon_sym__Alignas] = ACTIONS(5251), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5276), - [anon_sym_or_eq] = ACTIONS(5276), - [anon_sym_xor_eq] = ACTIONS(5276), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5260), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5260), - [anon_sym_not_eq] = ACTIONS(5260), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5280), - [anon_sym_decltype] = ACTIONS(5282), - [anon_sym_template] = ACTIONS(5251), - [anon_sym_operator] = ACTIONS(5251), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_LBRACK_COLON] = ACTIONS(5258), - }, - [STATE(1019)] = { - [sym_string_literal] = STATE(4004), - [sym_decltype_auto] = STATE(4767), - [sym_template_argument_list] = STATE(2029), - [sym_raw_string_literal] = STATE(4004), - [aux_sym_sized_type_specifier_repeat1] = STATE(4121), - [sym_identifier] = ACTIONS(5251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_TILDE] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(5265), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym___extension__] = ACTIONS(5251), - [anon_sym_virtual] = ACTIONS(5251), - [anon_sym_extern] = ACTIONS(5251), - [anon_sym___attribute__] = ACTIONS(5251), - [anon_sym___attribute] = ACTIONS(5251), - [anon_sym_COLON] = ACTIONS(5324), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5258), - [anon_sym___declspec] = ACTIONS(5251), - [anon_sym___based] = ACTIONS(5251), - [anon_sym___cdecl] = ACTIONS(5251), - [anon_sym___clrcall] = ACTIONS(5251), - [anon_sym___stdcall] = ACTIONS(5251), - [anon_sym___fastcall] = ACTIONS(5251), - [anon_sym___thiscall] = ACTIONS(5251), - [anon_sym___vectorcall] = ACTIONS(5251), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(5274), - [anon_sym_unsigned] = ACTIONS(5274), - [anon_sym_long] = ACTIONS(5274), - [anon_sym_short] = ACTIONS(5274), - [anon_sym_LBRACK] = ACTIONS(5262), - [anon_sym_static] = ACTIONS(5251), - [anon_sym_EQ] = ACTIONS(5276), - [anon_sym_register] = ACTIONS(5251), - [anon_sym_inline] = ACTIONS(5251), - [anon_sym___inline] = ACTIONS(5251), - [anon_sym___inline__] = ACTIONS(5251), - [anon_sym___forceinline] = ACTIONS(5251), - [anon_sym_thread_local] = ACTIONS(5251), - [anon_sym___thread] = ACTIONS(5251), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5251), - [anon_sym_volatile] = ACTIONS(5251), - [anon_sym_restrict] = ACTIONS(5251), - [anon_sym___restrict__] = ACTIONS(5251), - [anon_sym__Atomic] = ACTIONS(5251), - [anon_sym__Noreturn] = ACTIONS(5251), - [anon_sym_noreturn] = ACTIONS(5251), - [anon_sym__Nonnull] = ACTIONS(5251), - [anon_sym_mutable] = ACTIONS(5251), - [anon_sym_constinit] = ACTIONS(5251), - [anon_sym_consteval] = ACTIONS(5251), - [anon_sym_alignas] = ACTIONS(5251), - [anon_sym__Alignas] = ACTIONS(5251), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5276), - [anon_sym_or_eq] = ACTIONS(5276), - [anon_sym_xor_eq] = ACTIONS(5276), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5260), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5260), - [anon_sym_not_eq] = ACTIONS(5260), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5280), - [anon_sym_decltype] = ACTIONS(5282), - [anon_sym_template] = ACTIONS(5251), - [anon_sym_operator] = ACTIONS(5251), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_LBRACK_COLON] = ACTIONS(5258), - }, - [STATE(1020)] = { - [sym_expression] = STATE(4440), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1021)] = { - [sym_expression] = STATE(5090), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(4708), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(4712), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(1022)] = { - [sym_expression] = STATE(6324), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), + [STATE(925)] = { + [ts_builtin_sym_end] = ACTIONS(4178), + [sym_identifier] = ACTIONS(4176), + [aux_sym_preproc_include_token1] = ACTIONS(4176), + [aux_sym_preproc_def_token1] = ACTIONS(4176), + [aux_sym_preproc_if_token1] = ACTIONS(4176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4176), + [sym_preproc_directive] = ACTIONS(4176), + [anon_sym_LPAREN2] = ACTIONS(4178), + [anon_sym_BANG] = ACTIONS(4178), + [anon_sym_TILDE] = ACTIONS(4178), + [anon_sym_DASH] = ACTIONS(4176), + [anon_sym_PLUS] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(4178), + [anon_sym_AMP_AMP] = ACTIONS(4178), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4178), + [anon_sym___extension__] = ACTIONS(4176), + [anon_sym_typedef] = ACTIONS(4176), + [anon_sym_virtual] = ACTIONS(4176), + [anon_sym_extern] = ACTIONS(4176), + [anon_sym___attribute__] = ACTIONS(4176), + [anon_sym___attribute] = ACTIONS(4176), + [anon_sym_using] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4178), + [anon_sym___declspec] = ACTIONS(4176), + [anon_sym___based] = ACTIONS(4176), + [anon_sym___cdecl] = ACTIONS(4176), + [anon_sym___clrcall] = ACTIONS(4176), + [anon_sym___stdcall] = ACTIONS(4176), + [anon_sym___fastcall] = ACTIONS(4176), + [anon_sym___thiscall] = ACTIONS(4176), + [anon_sym___vectorcall] = ACTIONS(4176), + [anon_sym_LBRACE] = ACTIONS(4178), + [anon_sym_signed] = ACTIONS(4176), + [anon_sym_unsigned] = ACTIONS(4176), + [anon_sym_long] = ACTIONS(4176), + [anon_sym_short] = ACTIONS(4176), + [anon_sym_LBRACK] = ACTIONS(4176), + [anon_sym_static] = ACTIONS(4176), + [anon_sym_register] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym___inline] = ACTIONS(4176), + [anon_sym___inline__] = ACTIONS(4176), + [anon_sym___forceinline] = ACTIONS(4176), + [anon_sym_thread_local] = ACTIONS(4176), + [anon_sym___thread] = ACTIONS(4176), + [anon_sym_const] = ACTIONS(4176), + [anon_sym_constexpr] = ACTIONS(4176), + [anon_sym_volatile] = ACTIONS(4176), + [anon_sym_restrict] = ACTIONS(4176), + [anon_sym___restrict__] = ACTIONS(4176), + [anon_sym__Atomic] = ACTIONS(4176), + [anon_sym__Noreturn] = ACTIONS(4176), + [anon_sym_noreturn] = ACTIONS(4176), + [anon_sym__Nonnull] = ACTIONS(4176), + [anon_sym_mutable] = ACTIONS(4176), + [anon_sym_constinit] = ACTIONS(4176), + [anon_sym_consteval] = ACTIONS(4176), + [anon_sym_alignas] = ACTIONS(4176), + [anon_sym__Alignas] = ACTIONS(4176), + [sym_primitive_type] = ACTIONS(4176), + [anon_sym_enum] = ACTIONS(4176), + [anon_sym_class] = ACTIONS(4176), + [anon_sym_struct] = ACTIONS(4176), + [anon_sym_union] = ACTIONS(4176), + [anon_sym_if] = ACTIONS(4176), + [anon_sym_switch] = ACTIONS(4176), + [anon_sym_case] = ACTIONS(4176), + [anon_sym_default] = ACTIONS(4176), + [anon_sym_while] = ACTIONS(4176), + [anon_sym_do] = ACTIONS(4176), + [anon_sym_for] = ACTIONS(4176), + [anon_sym_return] = ACTIONS(4176), + [anon_sym_break] = ACTIONS(4176), + [anon_sym_continue] = ACTIONS(4176), + [anon_sym_goto] = ACTIONS(4176), + [anon_sym_not] = ACTIONS(4176), + [anon_sym_compl] = ACTIONS(4176), + [anon_sym_DASH_DASH] = ACTIONS(4178), + [anon_sym_PLUS_PLUS] = ACTIONS(4178), + [anon_sym_sizeof] = ACTIONS(4176), + [anon_sym___alignof__] = ACTIONS(4176), + [anon_sym___alignof] = ACTIONS(4176), + [anon_sym__alignof] = ACTIONS(4176), + [anon_sym_alignof] = ACTIONS(4176), + [anon_sym__Alignof] = ACTIONS(4176), + [anon_sym_offsetof] = ACTIONS(4176), + [anon_sym__Generic] = ACTIONS(4176), + [anon_sym_typename] = ACTIONS(4176), + [anon_sym_asm] = ACTIONS(4176), + [anon_sym___asm__] = ACTIONS(4176), + [anon_sym___asm] = ACTIONS(4176), + [sym_number_literal] = ACTIONS(4178), + [anon_sym_L_SQUOTE] = ACTIONS(4178), + [anon_sym_u_SQUOTE] = ACTIONS(4178), + [anon_sym_U_SQUOTE] = ACTIONS(4178), + [anon_sym_u8_SQUOTE] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4178), + [anon_sym_L_DQUOTE] = ACTIONS(4178), + [anon_sym_u_DQUOTE] = ACTIONS(4178), + [anon_sym_U_DQUOTE] = ACTIONS(4178), + [anon_sym_u8_DQUOTE] = ACTIONS(4178), + [anon_sym_DQUOTE] = ACTIONS(4178), + [sym_true] = ACTIONS(4176), + [sym_false] = ACTIONS(4176), + [anon_sym_NULL] = ACTIONS(4176), + [anon_sym_nullptr] = ACTIONS(4176), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1023)] = { - [sym_string_literal] = STATE(4004), - [sym_decltype_auto] = STATE(4767), - [sym_template_argument_list] = STATE(2061), - [sym_raw_string_literal] = STATE(4004), - [aux_sym_sized_type_specifier_repeat1] = STATE(4121), - [sym_identifier] = ACTIONS(5251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5284), - [anon_sym_TILDE] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(5265), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5255), - [anon_sym___extension__] = ACTIONS(5251), - [anon_sym_virtual] = ACTIONS(5251), - [anon_sym_extern] = ACTIONS(5251), - [anon_sym___attribute__] = ACTIONS(5251), - [anon_sym___attribute] = ACTIONS(5251), - [anon_sym_COLON] = ACTIONS(5330), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5290), - [anon_sym___declspec] = ACTIONS(5251), - [anon_sym___based] = ACTIONS(5251), - [anon_sym___cdecl] = ACTIONS(5251), - [anon_sym___clrcall] = ACTIONS(5251), - [anon_sym___stdcall] = ACTIONS(5251), - [anon_sym___fastcall] = ACTIONS(5251), - [anon_sym___thiscall] = ACTIONS(5251), - [anon_sym___vectorcall] = ACTIONS(5251), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(5274), - [anon_sym_unsigned] = ACTIONS(5274), - [anon_sym_long] = ACTIONS(5274), - [anon_sym_short] = ACTIONS(5274), - [anon_sym_LBRACK] = ACTIONS(5293), - [anon_sym_static] = ACTIONS(5251), - [anon_sym_EQ] = ACTIONS(5276), - [anon_sym_register] = ACTIONS(5251), - [anon_sym_inline] = ACTIONS(5251), - [anon_sym___inline] = ACTIONS(5251), - [anon_sym___inline__] = ACTIONS(5251), - [anon_sym___forceinline] = ACTIONS(5251), - [anon_sym_thread_local] = ACTIONS(5251), - [anon_sym___thread] = ACTIONS(5251), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5251), - [anon_sym_volatile] = ACTIONS(5251), - [anon_sym_restrict] = ACTIONS(5251), - [anon_sym___restrict__] = ACTIONS(5251), - [anon_sym__Atomic] = ACTIONS(5251), - [anon_sym__Noreturn] = ACTIONS(5251), - [anon_sym_noreturn] = ACTIONS(5251), - [anon_sym__Nonnull] = ACTIONS(5251), - [anon_sym_mutable] = ACTIONS(5251), - [anon_sym_constinit] = ACTIONS(5251), - [anon_sym_consteval] = ACTIONS(5251), - [anon_sym_alignas] = ACTIONS(5251), - [anon_sym__Alignas] = ACTIONS(5251), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5276), - [anon_sym_or_eq] = ACTIONS(5276), - [anon_sym_xor_eq] = ACTIONS(5276), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5260), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5260), - [anon_sym_not_eq] = ACTIONS(5260), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5280), - [anon_sym_decltype] = ACTIONS(5282), - [anon_sym_template] = ACTIONS(5251), - [anon_sym_operator] = ACTIONS(5251), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_LBRACK_COLON] = ACTIONS(5258), - }, - [STATE(1024)] = { - [sym_string_literal] = STATE(4004), - [sym_decltype_auto] = STATE(4767), - [sym_template_argument_list] = STATE(2029), - [sym_raw_string_literal] = STATE(4004), - [aux_sym_sized_type_specifier_repeat1] = STATE(4121), - [sym_identifier] = ACTIONS(5251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_TILDE] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(5265), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym___extension__] = ACTIONS(5251), - [anon_sym_virtual] = ACTIONS(5251), - [anon_sym_extern] = ACTIONS(5251), - [anon_sym___attribute__] = ACTIONS(5251), - [anon_sym___attribute] = ACTIONS(5251), - [anon_sym_COLON] = ACTIONS(5332), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5258), - [anon_sym___declspec] = ACTIONS(5251), - [anon_sym___based] = ACTIONS(5251), - [anon_sym___cdecl] = ACTIONS(5251), - [anon_sym___clrcall] = ACTIONS(5251), - [anon_sym___stdcall] = ACTIONS(5251), - [anon_sym___fastcall] = ACTIONS(5251), - [anon_sym___thiscall] = ACTIONS(5251), - [anon_sym___vectorcall] = ACTIONS(5251), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(5274), - [anon_sym_unsigned] = ACTIONS(5274), - [anon_sym_long] = ACTIONS(5274), - [anon_sym_short] = ACTIONS(5274), - [anon_sym_LBRACK] = ACTIONS(5262), - [anon_sym_static] = ACTIONS(5251), - [anon_sym_EQ] = ACTIONS(5276), - [anon_sym_register] = ACTIONS(5251), - [anon_sym_inline] = ACTIONS(5251), - [anon_sym___inline] = ACTIONS(5251), - [anon_sym___inline__] = ACTIONS(5251), - [anon_sym___forceinline] = ACTIONS(5251), - [anon_sym_thread_local] = ACTIONS(5251), - [anon_sym___thread] = ACTIONS(5251), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5251), - [anon_sym_volatile] = ACTIONS(5251), - [anon_sym_restrict] = ACTIONS(5251), - [anon_sym___restrict__] = ACTIONS(5251), - [anon_sym__Atomic] = ACTIONS(5251), - [anon_sym__Noreturn] = ACTIONS(5251), - [anon_sym_noreturn] = ACTIONS(5251), - [anon_sym__Nonnull] = ACTIONS(5251), - [anon_sym_mutable] = ACTIONS(5251), - [anon_sym_constinit] = ACTIONS(5251), - [anon_sym_consteval] = ACTIONS(5251), - [anon_sym_alignas] = ACTIONS(5251), - [anon_sym__Alignas] = ACTIONS(5251), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5276), - [anon_sym_or_eq] = ACTIONS(5276), - [anon_sym_xor_eq] = ACTIONS(5276), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5260), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5260), - [anon_sym_not_eq] = ACTIONS(5260), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5280), - [anon_sym_decltype] = ACTIONS(5282), - [anon_sym_template] = ACTIONS(5251), - [anon_sym_operator] = ACTIONS(5251), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_LBRACK_COLON] = ACTIONS(5258), - }, - [STATE(1025)] = { - [sym_expression] = STATE(5702), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), + [sym_auto] = ACTIONS(4176), + [anon_sym_decltype] = ACTIONS(4176), + [anon_sym_explicit] = ACTIONS(4176), + [anon_sym_export] = ACTIONS(4176), + [anon_sym_module] = ACTIONS(4176), + [anon_sym_import] = ACTIONS(4176), + [anon_sym_template] = ACTIONS(4176), + [anon_sym_operator] = ACTIONS(4176), + [anon_sym_try] = ACTIONS(4176), + [anon_sym_delete] = ACTIONS(4176), + [anon_sym_throw] = ACTIONS(4176), + [anon_sym_namespace] = ACTIONS(4176), + [anon_sym_static_assert] = ACTIONS(4176), + [anon_sym_concept] = ACTIONS(4176), + [anon_sym_co_return] = ACTIONS(4176), + [anon_sym_co_yield] = ACTIONS(4176), + [anon_sym_R_DQUOTE] = ACTIONS(4178), + [anon_sym_LR_DQUOTE] = ACTIONS(4178), + [anon_sym_uR_DQUOTE] = ACTIONS(4178), + [anon_sym_UR_DQUOTE] = ACTIONS(4178), + [anon_sym_u8R_DQUOTE] = ACTIONS(4178), + [anon_sym_co_await] = ACTIONS(4176), + [anon_sym_new] = ACTIONS(4176), + [anon_sym_requires] = ACTIONS(4176), + [anon_sym_CARET_CARET] = ACTIONS(4178), + [anon_sym_LBRACK_COLON] = ACTIONS(4178), + [sym_this] = ACTIONS(4176), }, - [STATE(1026)] = { - [sym_expression] = STATE(6568), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9603), - [sym_initializer_pair] = STATE(9603), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_COMMA] = ACTIONS(5336), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5338), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), + [STATE(926)] = { + [ts_builtin_sym_end] = ACTIONS(4182), + [sym_identifier] = ACTIONS(4180), + [aux_sym_preproc_include_token1] = ACTIONS(4180), + [aux_sym_preproc_def_token1] = ACTIONS(4180), + [aux_sym_preproc_if_token1] = ACTIONS(4180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4180), + [sym_preproc_directive] = ACTIONS(4180), + [anon_sym_LPAREN2] = ACTIONS(4182), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_TILDE] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4180), + [anon_sym_PLUS] = ACTIONS(4180), + [anon_sym_STAR] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_AMP] = ACTIONS(4180), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym___extension__] = ACTIONS(4180), + [anon_sym_typedef] = ACTIONS(4180), + [anon_sym_virtual] = ACTIONS(4180), + [anon_sym_extern] = ACTIONS(4180), + [anon_sym___attribute__] = ACTIONS(4180), + [anon_sym___attribute] = ACTIONS(4180), + [anon_sym_using] = ACTIONS(4180), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4182), + [anon_sym___declspec] = ACTIONS(4180), + [anon_sym___based] = ACTIONS(4180), + [anon_sym___cdecl] = ACTIONS(4180), + [anon_sym___clrcall] = ACTIONS(4180), + [anon_sym___stdcall] = ACTIONS(4180), + [anon_sym___fastcall] = ACTIONS(4180), + [anon_sym___thiscall] = ACTIONS(4180), + [anon_sym___vectorcall] = ACTIONS(4180), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_signed] = ACTIONS(4180), + [anon_sym_unsigned] = ACTIONS(4180), + [anon_sym_long] = ACTIONS(4180), + [anon_sym_short] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_static] = ACTIONS(4180), + [anon_sym_register] = ACTIONS(4180), + [anon_sym_inline] = ACTIONS(4180), + [anon_sym___inline] = ACTIONS(4180), + [anon_sym___inline__] = ACTIONS(4180), + [anon_sym___forceinline] = ACTIONS(4180), + [anon_sym_thread_local] = ACTIONS(4180), + [anon_sym___thread] = ACTIONS(4180), + [anon_sym_const] = ACTIONS(4180), + [anon_sym_constexpr] = ACTIONS(4180), + [anon_sym_volatile] = ACTIONS(4180), + [anon_sym_restrict] = ACTIONS(4180), + [anon_sym___restrict__] = ACTIONS(4180), + [anon_sym__Atomic] = ACTIONS(4180), + [anon_sym__Noreturn] = ACTIONS(4180), + [anon_sym_noreturn] = ACTIONS(4180), + [anon_sym__Nonnull] = ACTIONS(4180), + [anon_sym_mutable] = ACTIONS(4180), + [anon_sym_constinit] = ACTIONS(4180), + [anon_sym_consteval] = ACTIONS(4180), + [anon_sym_alignas] = ACTIONS(4180), + [anon_sym__Alignas] = ACTIONS(4180), + [sym_primitive_type] = ACTIONS(4180), + [anon_sym_enum] = ACTIONS(4180), + [anon_sym_class] = ACTIONS(4180), + [anon_sym_struct] = ACTIONS(4180), + [anon_sym_union] = ACTIONS(4180), + [anon_sym_if] = ACTIONS(4180), + [anon_sym_switch] = ACTIONS(4180), + [anon_sym_case] = ACTIONS(4180), + [anon_sym_default] = ACTIONS(4180), + [anon_sym_while] = ACTIONS(4180), + [anon_sym_do] = ACTIONS(4180), + [anon_sym_for] = ACTIONS(4180), + [anon_sym_return] = ACTIONS(4180), + [anon_sym_break] = ACTIONS(4180), + [anon_sym_continue] = ACTIONS(4180), + [anon_sym_goto] = ACTIONS(4180), + [anon_sym_not] = ACTIONS(4180), + [anon_sym_compl] = ACTIONS(4180), + [anon_sym_DASH_DASH] = ACTIONS(4182), + [anon_sym_PLUS_PLUS] = ACTIONS(4182), + [anon_sym_sizeof] = ACTIONS(4180), + [anon_sym___alignof__] = ACTIONS(4180), + [anon_sym___alignof] = ACTIONS(4180), + [anon_sym__alignof] = ACTIONS(4180), + [anon_sym_alignof] = ACTIONS(4180), + [anon_sym__Alignof] = ACTIONS(4180), + [anon_sym_offsetof] = ACTIONS(4180), + [anon_sym__Generic] = ACTIONS(4180), + [anon_sym_typename] = ACTIONS(4180), + [anon_sym_asm] = ACTIONS(4180), + [anon_sym___asm__] = ACTIONS(4180), + [anon_sym___asm] = ACTIONS(4180), + [sym_number_literal] = ACTIONS(4182), + [anon_sym_L_SQUOTE] = ACTIONS(4182), + [anon_sym_u_SQUOTE] = ACTIONS(4182), + [anon_sym_U_SQUOTE] = ACTIONS(4182), + [anon_sym_u8_SQUOTE] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4182), + [anon_sym_L_DQUOTE] = ACTIONS(4182), + [anon_sym_u_DQUOTE] = ACTIONS(4182), + [anon_sym_U_DQUOTE] = ACTIONS(4182), + [anon_sym_u8_DQUOTE] = ACTIONS(4182), + [anon_sym_DQUOTE] = ACTIONS(4182), + [sym_true] = ACTIONS(4180), + [sym_false] = ACTIONS(4180), + [anon_sym_NULL] = ACTIONS(4180), + [anon_sym_nullptr] = ACTIONS(4180), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1027)] = { - [sym_expression] = STATE(6565), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9620), - [sym_initializer_pair] = STATE(9620), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_COMMA] = ACTIONS(5342), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5344), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1028)] = { - [sym_expression] = STATE(4442), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1029)] = { - [sym_expression] = STATE(6255), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1030)] = { - [sym_expression] = STATE(4595), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [sym_auto] = ACTIONS(4180), + [anon_sym_decltype] = ACTIONS(4180), + [anon_sym_explicit] = ACTIONS(4180), + [anon_sym_export] = ACTIONS(4180), + [anon_sym_module] = ACTIONS(4180), + [anon_sym_import] = ACTIONS(4180), + [anon_sym_template] = ACTIONS(4180), + [anon_sym_operator] = ACTIONS(4180), + [anon_sym_try] = ACTIONS(4180), + [anon_sym_delete] = ACTIONS(4180), + [anon_sym_throw] = ACTIONS(4180), + [anon_sym_namespace] = ACTIONS(4180), + [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_concept] = ACTIONS(4180), + [anon_sym_co_return] = ACTIONS(4180), + [anon_sym_co_yield] = ACTIONS(4180), + [anon_sym_R_DQUOTE] = ACTIONS(4182), + [anon_sym_LR_DQUOTE] = ACTIONS(4182), + [anon_sym_uR_DQUOTE] = ACTIONS(4182), + [anon_sym_UR_DQUOTE] = ACTIONS(4182), + [anon_sym_u8R_DQUOTE] = ACTIONS(4182), + [anon_sym_co_await] = ACTIONS(4180), + [anon_sym_new] = ACTIONS(4180), + [anon_sym_requires] = ACTIONS(4180), + [anon_sym_CARET_CARET] = ACTIONS(4182), + [anon_sym_LBRACK_COLON] = ACTIONS(4182), + [sym_this] = ACTIONS(4180), }, - [STATE(1031)] = { - [sym_expression] = STATE(6609), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10056), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10342), - [sym_initializer_pair] = STATE(10342), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5348), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), + [STATE(927)] = { + [ts_builtin_sym_end] = ACTIONS(4186), + [sym_identifier] = ACTIONS(4184), + [aux_sym_preproc_include_token1] = ACTIONS(4184), + [aux_sym_preproc_def_token1] = ACTIONS(4184), + [aux_sym_preproc_if_token1] = ACTIONS(4184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4184), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4184), + [sym_preproc_directive] = ACTIONS(4184), + [anon_sym_LPAREN2] = ACTIONS(4186), + [anon_sym_BANG] = ACTIONS(4186), + [anon_sym_TILDE] = ACTIONS(4186), + [anon_sym_DASH] = ACTIONS(4184), + [anon_sym_PLUS] = ACTIONS(4184), + [anon_sym_STAR] = ACTIONS(4186), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_AMP] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym___extension__] = ACTIONS(4184), + [anon_sym_typedef] = ACTIONS(4184), + [anon_sym_virtual] = ACTIONS(4184), + [anon_sym_extern] = ACTIONS(4184), + [anon_sym___attribute__] = ACTIONS(4184), + [anon_sym___attribute] = ACTIONS(4184), + [anon_sym_using] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4186), + [anon_sym___declspec] = ACTIONS(4184), + [anon_sym___based] = ACTIONS(4184), + [anon_sym___cdecl] = ACTIONS(4184), + [anon_sym___clrcall] = ACTIONS(4184), + [anon_sym___stdcall] = ACTIONS(4184), + [anon_sym___fastcall] = ACTIONS(4184), + [anon_sym___thiscall] = ACTIONS(4184), + [anon_sym___vectorcall] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4186), + [anon_sym_signed] = ACTIONS(4184), + [anon_sym_unsigned] = ACTIONS(4184), + [anon_sym_long] = ACTIONS(4184), + [anon_sym_short] = ACTIONS(4184), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_static] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym___inline] = ACTIONS(4184), + [anon_sym___inline__] = ACTIONS(4184), + [anon_sym___forceinline] = ACTIONS(4184), + [anon_sym_thread_local] = ACTIONS(4184), + [anon_sym___thread] = ACTIONS(4184), + [anon_sym_const] = ACTIONS(4184), + [anon_sym_constexpr] = ACTIONS(4184), + [anon_sym_volatile] = ACTIONS(4184), + [anon_sym_restrict] = ACTIONS(4184), + [anon_sym___restrict__] = ACTIONS(4184), + [anon_sym__Atomic] = ACTIONS(4184), + [anon_sym__Noreturn] = ACTIONS(4184), + [anon_sym_noreturn] = ACTIONS(4184), + [anon_sym__Nonnull] = ACTIONS(4184), + [anon_sym_mutable] = ACTIONS(4184), + [anon_sym_constinit] = ACTIONS(4184), + [anon_sym_consteval] = ACTIONS(4184), + [anon_sym_alignas] = ACTIONS(4184), + [anon_sym__Alignas] = ACTIONS(4184), + [sym_primitive_type] = ACTIONS(4184), + [anon_sym_enum] = ACTIONS(4184), + [anon_sym_class] = ACTIONS(4184), + [anon_sym_struct] = ACTIONS(4184), + [anon_sym_union] = ACTIONS(4184), + [anon_sym_if] = ACTIONS(4184), + [anon_sym_switch] = ACTIONS(4184), + [anon_sym_case] = ACTIONS(4184), + [anon_sym_default] = ACTIONS(4184), + [anon_sym_while] = ACTIONS(4184), + [anon_sym_do] = ACTIONS(4184), + [anon_sym_for] = ACTIONS(4184), + [anon_sym_return] = ACTIONS(4184), + [anon_sym_break] = ACTIONS(4184), + [anon_sym_continue] = ACTIONS(4184), + [anon_sym_goto] = ACTIONS(4184), + [anon_sym_not] = ACTIONS(4184), + [anon_sym_compl] = ACTIONS(4184), + [anon_sym_DASH_DASH] = ACTIONS(4186), + [anon_sym_PLUS_PLUS] = ACTIONS(4186), + [anon_sym_sizeof] = ACTIONS(4184), + [anon_sym___alignof__] = ACTIONS(4184), + [anon_sym___alignof] = ACTIONS(4184), + [anon_sym__alignof] = ACTIONS(4184), + [anon_sym_alignof] = ACTIONS(4184), + [anon_sym__Alignof] = ACTIONS(4184), + [anon_sym_offsetof] = ACTIONS(4184), + [anon_sym__Generic] = ACTIONS(4184), + [anon_sym_typename] = ACTIONS(4184), + [anon_sym_asm] = ACTIONS(4184), + [anon_sym___asm__] = ACTIONS(4184), + [anon_sym___asm] = ACTIONS(4184), + [sym_number_literal] = ACTIONS(4186), + [anon_sym_L_SQUOTE] = ACTIONS(4186), + [anon_sym_u_SQUOTE] = ACTIONS(4186), + [anon_sym_U_SQUOTE] = ACTIONS(4186), + [anon_sym_u8_SQUOTE] = ACTIONS(4186), + [anon_sym_SQUOTE] = ACTIONS(4186), + [anon_sym_L_DQUOTE] = ACTIONS(4186), + [anon_sym_u_DQUOTE] = ACTIONS(4186), + [anon_sym_U_DQUOTE] = ACTIONS(4186), + [anon_sym_u8_DQUOTE] = ACTIONS(4186), + [anon_sym_DQUOTE] = ACTIONS(4186), + [sym_true] = ACTIONS(4184), + [sym_false] = ACTIONS(4184), + [anon_sym_NULL] = ACTIONS(4184), + [anon_sym_nullptr] = ACTIONS(4184), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1032)] = { - [sym_expression] = STATE(5061), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1033)] = { - [sym_string_literal] = STATE(4004), - [sym_decltype_auto] = STATE(4767), - [sym_template_argument_list] = STATE(2061), - [sym_raw_string_literal] = STATE(4004), - [aux_sym_sized_type_specifier_repeat1] = STATE(4121), - [sym_identifier] = ACTIONS(5251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5284), - [anon_sym_TILDE] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(5265), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5255), - [anon_sym___extension__] = ACTIONS(5251), - [anon_sym_virtual] = ACTIONS(5251), - [anon_sym_extern] = ACTIONS(5251), - [anon_sym___attribute__] = ACTIONS(5251), - [anon_sym___attribute] = ACTIONS(5251), - [anon_sym_COLON] = ACTIONS(5332), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5290), - [anon_sym___declspec] = ACTIONS(5251), - [anon_sym___based] = ACTIONS(5251), - [anon_sym___cdecl] = ACTIONS(5251), - [anon_sym___clrcall] = ACTIONS(5251), - [anon_sym___stdcall] = ACTIONS(5251), - [anon_sym___fastcall] = ACTIONS(5251), - [anon_sym___thiscall] = ACTIONS(5251), - [anon_sym___vectorcall] = ACTIONS(5251), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(5274), - [anon_sym_unsigned] = ACTIONS(5274), - [anon_sym_long] = ACTIONS(5274), - [anon_sym_short] = ACTIONS(5274), - [anon_sym_LBRACK] = ACTIONS(5293), - [anon_sym_static] = ACTIONS(5251), - [anon_sym_EQ] = ACTIONS(5276), - [anon_sym_register] = ACTIONS(5251), - [anon_sym_inline] = ACTIONS(5251), - [anon_sym___inline] = ACTIONS(5251), - [anon_sym___inline__] = ACTIONS(5251), - [anon_sym___forceinline] = ACTIONS(5251), - [anon_sym_thread_local] = ACTIONS(5251), - [anon_sym___thread] = ACTIONS(5251), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5251), - [anon_sym_volatile] = ACTIONS(5251), - [anon_sym_restrict] = ACTIONS(5251), - [anon_sym___restrict__] = ACTIONS(5251), - [anon_sym__Atomic] = ACTIONS(5251), - [anon_sym__Noreturn] = ACTIONS(5251), - [anon_sym_noreturn] = ACTIONS(5251), - [anon_sym__Nonnull] = ACTIONS(5251), - [anon_sym_mutable] = ACTIONS(5251), - [anon_sym_constinit] = ACTIONS(5251), - [anon_sym_consteval] = ACTIONS(5251), - [anon_sym_alignas] = ACTIONS(5251), - [anon_sym__Alignas] = ACTIONS(5251), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5276), - [anon_sym_or_eq] = ACTIONS(5276), - [anon_sym_xor_eq] = ACTIONS(5276), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5260), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5260), - [anon_sym_not_eq] = ACTIONS(5260), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5280), - [anon_sym_decltype] = ACTIONS(5282), - [anon_sym_template] = ACTIONS(5251), - [anon_sym_operator] = ACTIONS(5251), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_LBRACK_COLON] = ACTIONS(5258), + [sym_auto] = ACTIONS(4184), + [anon_sym_decltype] = ACTIONS(4184), + [anon_sym_explicit] = ACTIONS(4184), + [anon_sym_export] = ACTIONS(4184), + [anon_sym_module] = ACTIONS(4184), + [anon_sym_import] = ACTIONS(4184), + [anon_sym_template] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_try] = ACTIONS(4184), + [anon_sym_delete] = ACTIONS(4184), + [anon_sym_throw] = ACTIONS(4184), + [anon_sym_namespace] = ACTIONS(4184), + [anon_sym_static_assert] = ACTIONS(4184), + [anon_sym_concept] = ACTIONS(4184), + [anon_sym_co_return] = ACTIONS(4184), + [anon_sym_co_yield] = ACTIONS(4184), + [anon_sym_R_DQUOTE] = ACTIONS(4186), + [anon_sym_LR_DQUOTE] = ACTIONS(4186), + [anon_sym_uR_DQUOTE] = ACTIONS(4186), + [anon_sym_UR_DQUOTE] = ACTIONS(4186), + [anon_sym_u8R_DQUOTE] = ACTIONS(4186), + [anon_sym_co_await] = ACTIONS(4184), + [anon_sym_new] = ACTIONS(4184), + [anon_sym_requires] = ACTIONS(4184), + [anon_sym_CARET_CARET] = ACTIONS(4186), + [anon_sym_LBRACK_COLON] = ACTIONS(4186), + [sym_this] = ACTIONS(4184), }, - [STATE(1034)] = { - [sym_expression] = STATE(6596), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9533), - [sym_initializer_pair] = STATE(9533), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_COMMA] = ACTIONS(179), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5350), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), + [STATE(928)] = { + [ts_builtin_sym_end] = ACTIONS(4474), + [sym_identifier] = ACTIONS(4472), + [aux_sym_preproc_include_token1] = ACTIONS(4472), + [aux_sym_preproc_def_token1] = ACTIONS(4472), + [aux_sym_preproc_if_token1] = ACTIONS(4472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4472), + [sym_preproc_directive] = ACTIONS(4472), + [anon_sym_LPAREN2] = ACTIONS(4474), + [anon_sym_BANG] = ACTIONS(4474), + [anon_sym_TILDE] = ACTIONS(4474), + [anon_sym_DASH] = ACTIONS(4472), + [anon_sym_PLUS] = ACTIONS(4472), + [anon_sym_STAR] = ACTIONS(4474), + [anon_sym_AMP_AMP] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4472), + [anon_sym_SEMI] = ACTIONS(4474), + [anon_sym___extension__] = ACTIONS(4472), + [anon_sym_typedef] = ACTIONS(4472), + [anon_sym_virtual] = ACTIONS(4472), + [anon_sym_extern] = ACTIONS(4472), + [anon_sym___attribute__] = ACTIONS(4472), + [anon_sym___attribute] = ACTIONS(4472), + [anon_sym_using] = ACTIONS(4472), + [anon_sym_COLON_COLON] = ACTIONS(4474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4474), + [anon_sym___declspec] = ACTIONS(4472), + [anon_sym___based] = ACTIONS(4472), + [anon_sym___cdecl] = ACTIONS(4472), + [anon_sym___clrcall] = ACTIONS(4472), + [anon_sym___stdcall] = ACTIONS(4472), + [anon_sym___fastcall] = ACTIONS(4472), + [anon_sym___thiscall] = ACTIONS(4472), + [anon_sym___vectorcall] = ACTIONS(4472), + [anon_sym_LBRACE] = ACTIONS(4474), + [anon_sym_signed] = ACTIONS(4472), + [anon_sym_unsigned] = ACTIONS(4472), + [anon_sym_long] = ACTIONS(4472), + [anon_sym_short] = ACTIONS(4472), + [anon_sym_LBRACK] = ACTIONS(4472), + [anon_sym_static] = ACTIONS(4472), + [anon_sym_register] = ACTIONS(4472), + [anon_sym_inline] = ACTIONS(4472), + [anon_sym___inline] = ACTIONS(4472), + [anon_sym___inline__] = ACTIONS(4472), + [anon_sym___forceinline] = ACTIONS(4472), + [anon_sym_thread_local] = ACTIONS(4472), + [anon_sym___thread] = ACTIONS(4472), + [anon_sym_const] = ACTIONS(4472), + [anon_sym_constexpr] = ACTIONS(4472), + [anon_sym_volatile] = ACTIONS(4472), + [anon_sym_restrict] = ACTIONS(4472), + [anon_sym___restrict__] = ACTIONS(4472), + [anon_sym__Atomic] = ACTIONS(4472), + [anon_sym__Noreturn] = ACTIONS(4472), + [anon_sym_noreturn] = ACTIONS(4472), + [anon_sym__Nonnull] = ACTIONS(4472), + [anon_sym_mutable] = ACTIONS(4472), + [anon_sym_constinit] = ACTIONS(4472), + [anon_sym_consteval] = ACTIONS(4472), + [anon_sym_alignas] = ACTIONS(4472), + [anon_sym__Alignas] = ACTIONS(4472), + [sym_primitive_type] = ACTIONS(4472), + [anon_sym_enum] = ACTIONS(4472), + [anon_sym_class] = ACTIONS(4472), + [anon_sym_struct] = ACTIONS(4472), + [anon_sym_union] = ACTIONS(4472), + [anon_sym_if] = ACTIONS(4472), + [anon_sym_switch] = ACTIONS(4472), + [anon_sym_case] = ACTIONS(4472), + [anon_sym_default] = ACTIONS(4472), + [anon_sym_while] = ACTIONS(4472), + [anon_sym_do] = ACTIONS(4472), + [anon_sym_for] = ACTIONS(4472), + [anon_sym_return] = ACTIONS(4472), + [anon_sym_break] = ACTIONS(4472), + [anon_sym_continue] = ACTIONS(4472), + [anon_sym_goto] = ACTIONS(4472), + [anon_sym_not] = ACTIONS(4472), + [anon_sym_compl] = ACTIONS(4472), + [anon_sym_DASH_DASH] = ACTIONS(4474), + [anon_sym_PLUS_PLUS] = ACTIONS(4474), + [anon_sym_sizeof] = ACTIONS(4472), + [anon_sym___alignof__] = ACTIONS(4472), + [anon_sym___alignof] = ACTIONS(4472), + [anon_sym__alignof] = ACTIONS(4472), + [anon_sym_alignof] = ACTIONS(4472), + [anon_sym__Alignof] = ACTIONS(4472), + [anon_sym_offsetof] = ACTIONS(4472), + [anon_sym__Generic] = ACTIONS(4472), + [anon_sym_typename] = ACTIONS(4472), + [anon_sym_asm] = ACTIONS(4472), + [anon_sym___asm__] = ACTIONS(4472), + [anon_sym___asm] = ACTIONS(4472), + [sym_number_literal] = ACTIONS(4474), + [anon_sym_L_SQUOTE] = ACTIONS(4474), + [anon_sym_u_SQUOTE] = ACTIONS(4474), + [anon_sym_U_SQUOTE] = ACTIONS(4474), + [anon_sym_u8_SQUOTE] = ACTIONS(4474), + [anon_sym_SQUOTE] = ACTIONS(4474), + [anon_sym_L_DQUOTE] = ACTIONS(4474), + [anon_sym_u_DQUOTE] = ACTIONS(4474), + [anon_sym_U_DQUOTE] = ACTIONS(4474), + [anon_sym_u8_DQUOTE] = ACTIONS(4474), + [anon_sym_DQUOTE] = ACTIONS(4474), + [sym_true] = ACTIONS(4472), + [sym_false] = ACTIONS(4472), + [anon_sym_NULL] = ACTIONS(4472), + [anon_sym_nullptr] = ACTIONS(4472), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1035)] = { - [sym_string_literal] = STATE(4004), - [sym_decltype_auto] = STATE(4767), - [sym_template_argument_list] = STATE(2029), - [sym_raw_string_literal] = STATE(4004), - [aux_sym_sized_type_specifier_repeat1] = STATE(4121), - [sym_identifier] = ACTIONS(5251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_RPAREN] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_TILDE] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(5265), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym___extension__] = ACTIONS(5251), - [anon_sym_virtual] = ACTIONS(5251), - [anon_sym_extern] = ACTIONS(5251), - [anon_sym___attribute__] = ACTIONS(5251), - [anon_sym___attribute] = ACTIONS(5251), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5258), - [anon_sym___declspec] = ACTIONS(5251), - [anon_sym___based] = ACTIONS(5251), - [anon_sym___cdecl] = ACTIONS(5251), - [anon_sym___clrcall] = ACTIONS(5251), - [anon_sym___stdcall] = ACTIONS(5251), - [anon_sym___fastcall] = ACTIONS(5251), - [anon_sym___thiscall] = ACTIONS(5251), - [anon_sym___vectorcall] = ACTIONS(5251), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(5274), - [anon_sym_unsigned] = ACTIONS(5274), - [anon_sym_long] = ACTIONS(5274), - [anon_sym_short] = ACTIONS(5274), - [anon_sym_LBRACK] = ACTIONS(5262), - [anon_sym_static] = ACTIONS(5251), - [anon_sym_EQ] = ACTIONS(5276), - [anon_sym_register] = ACTIONS(5251), - [anon_sym_inline] = ACTIONS(5251), - [anon_sym___inline] = ACTIONS(5251), - [anon_sym___inline__] = ACTIONS(5251), - [anon_sym___forceinline] = ACTIONS(5251), - [anon_sym_thread_local] = ACTIONS(5251), - [anon_sym___thread] = ACTIONS(5251), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5251), - [anon_sym_volatile] = ACTIONS(5251), - [anon_sym_restrict] = ACTIONS(5251), - [anon_sym___restrict__] = ACTIONS(5251), - [anon_sym__Atomic] = ACTIONS(5251), - [anon_sym__Noreturn] = ACTIONS(5251), - [anon_sym_noreturn] = ACTIONS(5251), - [anon_sym__Nonnull] = ACTIONS(5251), - [anon_sym_mutable] = ACTIONS(5251), - [anon_sym_constinit] = ACTIONS(5251), - [anon_sym_consteval] = ACTIONS(5251), - [anon_sym_alignas] = ACTIONS(5251), - [anon_sym__Alignas] = ACTIONS(5251), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5276), - [anon_sym_or_eq] = ACTIONS(5276), - [anon_sym_xor_eq] = ACTIONS(5276), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5260), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5260), - [anon_sym_not_eq] = ACTIONS(5260), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5280), - [anon_sym_decltype] = ACTIONS(5282), - [anon_sym_template] = ACTIONS(5251), - [anon_sym_operator] = ACTIONS(5251), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_LBRACK_COLON] = ACTIONS(5258), + [sym_auto] = ACTIONS(4472), + [anon_sym_decltype] = ACTIONS(4472), + [anon_sym_explicit] = ACTIONS(4472), + [anon_sym_export] = ACTIONS(4472), + [anon_sym_module] = ACTIONS(4472), + [anon_sym_import] = ACTIONS(4472), + [anon_sym_template] = ACTIONS(4472), + [anon_sym_operator] = ACTIONS(4472), + [anon_sym_try] = ACTIONS(4472), + [anon_sym_delete] = ACTIONS(4472), + [anon_sym_throw] = ACTIONS(4472), + [anon_sym_namespace] = ACTIONS(4472), + [anon_sym_static_assert] = ACTIONS(4472), + [anon_sym_concept] = ACTIONS(4472), + [anon_sym_co_return] = ACTIONS(4472), + [anon_sym_co_yield] = ACTIONS(4472), + [anon_sym_R_DQUOTE] = ACTIONS(4474), + [anon_sym_LR_DQUOTE] = ACTIONS(4474), + [anon_sym_uR_DQUOTE] = ACTIONS(4474), + [anon_sym_UR_DQUOTE] = ACTIONS(4474), + [anon_sym_u8R_DQUOTE] = ACTIONS(4474), + [anon_sym_co_await] = ACTIONS(4472), + [anon_sym_new] = ACTIONS(4472), + [anon_sym_requires] = ACTIONS(4472), + [anon_sym_CARET_CARET] = ACTIONS(4474), + [anon_sym_LBRACK_COLON] = ACTIONS(4474), + [sym_this] = ACTIONS(4472), }, - [STATE(1036)] = { - [sym_expression] = STATE(6456), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9755), - [sym_initializer_pair] = STATE(9755), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_COMMA] = ACTIONS(5352), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5354), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), + [STATE(929)] = { + [sym_preproc_def] = STATE(884), + [sym_preproc_function_def] = STATE(884), + [sym_preproc_call] = STATE(884), + [sym_preproc_if_in_field_declaration_list] = STATE(884), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(884), + [sym_type_definition] = STATE(884), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8092), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(884), + [sym_field_declaration] = STATE(884), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(884), + [sym_operator_cast] = STATE(9211), + [sym_inline_method_definition] = STATE(884), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(884), + [sym_operator_cast_declaration] = STATE(884), + [sym_constructor_or_destructor_definition] = STATE(884), + [sym_constructor_or_destructor_declaration] = STATE(884), + [sym_friend_declaration] = STATE(884), + [sym_access_specifier] = STATE(11030), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(884), + [sym_alias_declaration] = STATE(884), + [sym_static_assert_declaration] = STATE(884), + [sym_consteval_block_declaration] = STATE(884), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9455), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(4686), + [aux_sym_preproc_if_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), + [sym_preproc_directive] = ACTIONS(4692), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(4714), + [anon_sym___extension__] = ACTIONS(4696), + [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4700), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4775), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4704), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(4708), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(4712), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(1037)] = { - [sym_expression] = STATE(6772), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(930)] = { + [ts_builtin_sym_end] = ACTIONS(4478), + [sym_identifier] = ACTIONS(4476), + [aux_sym_preproc_include_token1] = ACTIONS(4476), + [aux_sym_preproc_def_token1] = ACTIONS(4476), + [aux_sym_preproc_if_token1] = ACTIONS(4476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4476), + [sym_preproc_directive] = ACTIONS(4476), + [anon_sym_LPAREN2] = ACTIONS(4478), + [anon_sym_BANG] = ACTIONS(4478), + [anon_sym_TILDE] = ACTIONS(4478), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_AMP] = ACTIONS(4476), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym___extension__] = ACTIONS(4476), + [anon_sym_typedef] = ACTIONS(4476), + [anon_sym_virtual] = ACTIONS(4476), + [anon_sym_extern] = ACTIONS(4476), + [anon_sym___attribute__] = ACTIONS(4476), + [anon_sym___attribute] = ACTIONS(4476), + [anon_sym_using] = ACTIONS(4476), + [anon_sym_COLON_COLON] = ACTIONS(4478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4478), + [anon_sym___declspec] = ACTIONS(4476), + [anon_sym___based] = ACTIONS(4476), + [anon_sym___cdecl] = ACTIONS(4476), + [anon_sym___clrcall] = ACTIONS(4476), + [anon_sym___stdcall] = ACTIONS(4476), + [anon_sym___fastcall] = ACTIONS(4476), + [anon_sym___thiscall] = ACTIONS(4476), + [anon_sym___vectorcall] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(4478), + [anon_sym_signed] = ACTIONS(4476), + [anon_sym_unsigned] = ACTIONS(4476), + [anon_sym_long] = ACTIONS(4476), + [anon_sym_short] = ACTIONS(4476), + [anon_sym_LBRACK] = ACTIONS(4476), + [anon_sym_static] = ACTIONS(4476), + [anon_sym_register] = ACTIONS(4476), + [anon_sym_inline] = ACTIONS(4476), + [anon_sym___inline] = ACTIONS(4476), + [anon_sym___inline__] = ACTIONS(4476), + [anon_sym___forceinline] = ACTIONS(4476), + [anon_sym_thread_local] = ACTIONS(4476), + [anon_sym___thread] = ACTIONS(4476), + [anon_sym_const] = ACTIONS(4476), + [anon_sym_constexpr] = ACTIONS(4476), + [anon_sym_volatile] = ACTIONS(4476), + [anon_sym_restrict] = ACTIONS(4476), + [anon_sym___restrict__] = ACTIONS(4476), + [anon_sym__Atomic] = ACTIONS(4476), + [anon_sym__Noreturn] = ACTIONS(4476), + [anon_sym_noreturn] = ACTIONS(4476), + [anon_sym__Nonnull] = ACTIONS(4476), + [anon_sym_mutable] = ACTIONS(4476), + [anon_sym_constinit] = ACTIONS(4476), + [anon_sym_consteval] = ACTIONS(4476), + [anon_sym_alignas] = ACTIONS(4476), + [anon_sym__Alignas] = ACTIONS(4476), + [sym_primitive_type] = ACTIONS(4476), + [anon_sym_enum] = ACTIONS(4476), + [anon_sym_class] = ACTIONS(4476), + [anon_sym_struct] = ACTIONS(4476), + [anon_sym_union] = ACTIONS(4476), + [anon_sym_if] = ACTIONS(4476), + [anon_sym_switch] = ACTIONS(4476), + [anon_sym_case] = ACTIONS(4476), + [anon_sym_default] = ACTIONS(4476), + [anon_sym_while] = ACTIONS(4476), + [anon_sym_do] = ACTIONS(4476), + [anon_sym_for] = ACTIONS(4476), + [anon_sym_return] = ACTIONS(4476), + [anon_sym_break] = ACTIONS(4476), + [anon_sym_continue] = ACTIONS(4476), + [anon_sym_goto] = ACTIONS(4476), + [anon_sym_not] = ACTIONS(4476), + [anon_sym_compl] = ACTIONS(4476), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4478), + [anon_sym_sizeof] = ACTIONS(4476), + [anon_sym___alignof__] = ACTIONS(4476), + [anon_sym___alignof] = ACTIONS(4476), + [anon_sym__alignof] = ACTIONS(4476), + [anon_sym_alignof] = ACTIONS(4476), + [anon_sym__Alignof] = ACTIONS(4476), + [anon_sym_offsetof] = ACTIONS(4476), + [anon_sym__Generic] = ACTIONS(4476), + [anon_sym_typename] = ACTIONS(4476), + [anon_sym_asm] = ACTIONS(4476), + [anon_sym___asm__] = ACTIONS(4476), + [anon_sym___asm] = ACTIONS(4476), + [sym_number_literal] = ACTIONS(4478), + [anon_sym_L_SQUOTE] = ACTIONS(4478), + [anon_sym_u_SQUOTE] = ACTIONS(4478), + [anon_sym_U_SQUOTE] = ACTIONS(4478), + [anon_sym_u8_SQUOTE] = ACTIONS(4478), + [anon_sym_SQUOTE] = ACTIONS(4478), + [anon_sym_L_DQUOTE] = ACTIONS(4478), + [anon_sym_u_DQUOTE] = ACTIONS(4478), + [anon_sym_U_DQUOTE] = ACTIONS(4478), + [anon_sym_u8_DQUOTE] = ACTIONS(4478), + [anon_sym_DQUOTE] = ACTIONS(4478), + [sym_true] = ACTIONS(4476), + [sym_false] = ACTIONS(4476), + [anon_sym_NULL] = ACTIONS(4476), + [anon_sym_nullptr] = ACTIONS(4476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4476), + [anon_sym_decltype] = ACTIONS(4476), + [anon_sym_explicit] = ACTIONS(4476), + [anon_sym_export] = ACTIONS(4476), + [anon_sym_module] = ACTIONS(4476), + [anon_sym_import] = ACTIONS(4476), + [anon_sym_template] = ACTIONS(4476), + [anon_sym_operator] = ACTIONS(4476), + [anon_sym_try] = ACTIONS(4476), + [anon_sym_delete] = ACTIONS(4476), + [anon_sym_throw] = ACTIONS(4476), + [anon_sym_namespace] = ACTIONS(4476), + [anon_sym_static_assert] = ACTIONS(4476), + [anon_sym_concept] = ACTIONS(4476), + [anon_sym_co_return] = ACTIONS(4476), + [anon_sym_co_yield] = ACTIONS(4476), + [anon_sym_R_DQUOTE] = ACTIONS(4478), + [anon_sym_LR_DQUOTE] = ACTIONS(4478), + [anon_sym_uR_DQUOTE] = ACTIONS(4478), + [anon_sym_UR_DQUOTE] = ACTIONS(4478), + [anon_sym_u8R_DQUOTE] = ACTIONS(4478), + [anon_sym_co_await] = ACTIONS(4476), + [anon_sym_new] = ACTIONS(4476), + [anon_sym_requires] = ACTIONS(4476), + [anon_sym_CARET_CARET] = ACTIONS(4478), + [anon_sym_LBRACK_COLON] = ACTIONS(4478), + [sym_this] = ACTIONS(4476), }, - [STATE(1038)] = { - [sym_expression] = STATE(6629), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(931)] = { + [sym_identifier] = ACTIONS(4526), + [aux_sym_preproc_include_token1] = ACTIONS(4526), + [aux_sym_preproc_def_token1] = ACTIONS(4526), + [aux_sym_preproc_if_token1] = ACTIONS(4526), + [aux_sym_preproc_if_token2] = ACTIONS(4526), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4526), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4526), + [sym_preproc_directive] = ACTIONS(4526), + [anon_sym_LPAREN2] = ACTIONS(4528), + [anon_sym_BANG] = ACTIONS(4528), + [anon_sym_TILDE] = ACTIONS(4528), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4528), + [anon_sym_AMP_AMP] = ACTIONS(4528), + [anon_sym_AMP] = ACTIONS(4526), + [anon_sym_SEMI] = ACTIONS(4528), + [anon_sym___extension__] = ACTIONS(4526), + [anon_sym_typedef] = ACTIONS(4526), + [anon_sym_virtual] = ACTIONS(4526), + [anon_sym_extern] = ACTIONS(4526), + [anon_sym___attribute__] = ACTIONS(4526), + [anon_sym___attribute] = ACTIONS(4526), + [anon_sym_using] = ACTIONS(4526), + [anon_sym_COLON_COLON] = ACTIONS(4528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4528), + [anon_sym___declspec] = ACTIONS(4526), + [anon_sym___based] = ACTIONS(4526), + [anon_sym___cdecl] = ACTIONS(4526), + [anon_sym___clrcall] = ACTIONS(4526), + [anon_sym___stdcall] = ACTIONS(4526), + [anon_sym___fastcall] = ACTIONS(4526), + [anon_sym___thiscall] = ACTIONS(4526), + [anon_sym___vectorcall] = ACTIONS(4526), + [anon_sym_LBRACE] = ACTIONS(4528), + [anon_sym_signed] = ACTIONS(4526), + [anon_sym_unsigned] = ACTIONS(4526), + [anon_sym_long] = ACTIONS(4526), + [anon_sym_short] = ACTIONS(4526), + [anon_sym_LBRACK] = ACTIONS(4526), + [anon_sym_static] = ACTIONS(4526), + [anon_sym_register] = ACTIONS(4526), + [anon_sym_inline] = ACTIONS(4526), + [anon_sym___inline] = ACTIONS(4526), + [anon_sym___inline__] = ACTIONS(4526), + [anon_sym___forceinline] = ACTIONS(4526), + [anon_sym_thread_local] = ACTIONS(4526), + [anon_sym___thread] = ACTIONS(4526), + [anon_sym_const] = ACTIONS(4526), + [anon_sym_constexpr] = ACTIONS(4526), + [anon_sym_volatile] = ACTIONS(4526), + [anon_sym_restrict] = ACTIONS(4526), + [anon_sym___restrict__] = ACTIONS(4526), + [anon_sym__Atomic] = ACTIONS(4526), + [anon_sym__Noreturn] = ACTIONS(4526), + [anon_sym_noreturn] = ACTIONS(4526), + [anon_sym__Nonnull] = ACTIONS(4526), + [anon_sym_mutable] = ACTIONS(4526), + [anon_sym_constinit] = ACTIONS(4526), + [anon_sym_consteval] = ACTIONS(4526), + [anon_sym_alignas] = ACTIONS(4526), + [anon_sym__Alignas] = ACTIONS(4526), + [sym_primitive_type] = ACTIONS(4526), + [anon_sym_enum] = ACTIONS(4526), + [anon_sym_class] = ACTIONS(4526), + [anon_sym_struct] = ACTIONS(4526), + [anon_sym_union] = ACTIONS(4526), + [anon_sym_if] = ACTIONS(4526), + [anon_sym_switch] = ACTIONS(4526), + [anon_sym_case] = ACTIONS(4526), + [anon_sym_default] = ACTIONS(4526), + [anon_sym_while] = ACTIONS(4526), + [anon_sym_do] = ACTIONS(4526), + [anon_sym_for] = ACTIONS(4526), + [anon_sym_return] = ACTIONS(4526), + [anon_sym_break] = ACTIONS(4526), + [anon_sym_continue] = ACTIONS(4526), + [anon_sym_goto] = ACTIONS(4526), + [anon_sym_not] = ACTIONS(4526), + [anon_sym_compl] = ACTIONS(4526), + [anon_sym_DASH_DASH] = ACTIONS(4528), + [anon_sym_PLUS_PLUS] = ACTIONS(4528), + [anon_sym_sizeof] = ACTIONS(4526), + [anon_sym___alignof__] = ACTIONS(4526), + [anon_sym___alignof] = ACTIONS(4526), + [anon_sym__alignof] = ACTIONS(4526), + [anon_sym_alignof] = ACTIONS(4526), + [anon_sym__Alignof] = ACTIONS(4526), + [anon_sym_offsetof] = ACTIONS(4526), + [anon_sym__Generic] = ACTIONS(4526), + [anon_sym_typename] = ACTIONS(4526), + [anon_sym_asm] = ACTIONS(4526), + [anon_sym___asm__] = ACTIONS(4526), + [anon_sym___asm] = ACTIONS(4526), + [sym_number_literal] = ACTIONS(4528), + [anon_sym_L_SQUOTE] = ACTIONS(4528), + [anon_sym_u_SQUOTE] = ACTIONS(4528), + [anon_sym_U_SQUOTE] = ACTIONS(4528), + [anon_sym_u8_SQUOTE] = ACTIONS(4528), + [anon_sym_SQUOTE] = ACTIONS(4528), + [anon_sym_L_DQUOTE] = ACTIONS(4528), + [anon_sym_u_DQUOTE] = ACTIONS(4528), + [anon_sym_U_DQUOTE] = ACTIONS(4528), + [anon_sym_u8_DQUOTE] = ACTIONS(4528), + [anon_sym_DQUOTE] = ACTIONS(4528), + [sym_true] = ACTIONS(4526), + [sym_false] = ACTIONS(4526), + [anon_sym_NULL] = ACTIONS(4526), + [anon_sym_nullptr] = ACTIONS(4526), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4526), + [anon_sym_decltype] = ACTIONS(4526), + [anon_sym_explicit] = ACTIONS(4526), + [anon_sym_export] = ACTIONS(4526), + [anon_sym_module] = ACTIONS(4526), + [anon_sym_import] = ACTIONS(4526), + [anon_sym_template] = ACTIONS(4526), + [anon_sym_operator] = ACTIONS(4526), + [anon_sym_try] = ACTIONS(4526), + [anon_sym_delete] = ACTIONS(4526), + [anon_sym_throw] = ACTIONS(4526), + [anon_sym_namespace] = ACTIONS(4526), + [anon_sym_static_assert] = ACTIONS(4526), + [anon_sym_concept] = ACTIONS(4526), + [anon_sym_co_return] = ACTIONS(4526), + [anon_sym_co_yield] = ACTIONS(4526), + [anon_sym_R_DQUOTE] = ACTIONS(4528), + [anon_sym_LR_DQUOTE] = ACTIONS(4528), + [anon_sym_uR_DQUOTE] = ACTIONS(4528), + [anon_sym_UR_DQUOTE] = ACTIONS(4528), + [anon_sym_u8R_DQUOTE] = ACTIONS(4528), + [anon_sym_co_await] = ACTIONS(4526), + [anon_sym_new] = ACTIONS(4526), + [anon_sym_requires] = ACTIONS(4526), + [anon_sym_CARET_CARET] = ACTIONS(4528), + [anon_sym_LBRACK_COLON] = ACTIONS(4528), + [sym_this] = ACTIONS(4526), }, - [STATE(1039)] = { - [sym_expression] = STATE(6560), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9879), - [sym_initializer_pair] = STATE(9879), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_COMMA] = ACTIONS(5356), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), + [STATE(932)] = { + [sym_preproc_def] = STATE(935), + [sym_preproc_function_def] = STATE(935), + [sym_preproc_call] = STATE(935), + [sym_preproc_if_in_field_declaration_list] = STATE(935), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(935), + [sym_type_definition] = STATE(935), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8092), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(935), + [sym_field_declaration] = STATE(935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(935), + [sym_operator_cast] = STATE(9211), + [sym_inline_method_definition] = STATE(935), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(935), + [sym_operator_cast_declaration] = STATE(935), + [sym_constructor_or_destructor_definition] = STATE(935), + [sym_constructor_or_destructor_declaration] = STATE(935), + [sym_friend_declaration] = STATE(935), + [sym_access_specifier] = STATE(11030), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(935), + [sym_alias_declaration] = STATE(935), + [sym_static_assert_declaration] = STATE(935), + [sym_consteval_block_declaration] = STATE(935), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(935), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9455), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(4686), + [aux_sym_preproc_if_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), + [sym_preproc_directive] = ACTIONS(4692), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(4777), + [anon_sym___extension__] = ACTIONS(4696), + [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4700), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4779), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4704), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(4708), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(4712), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(1040)] = { - [sym_expression] = STATE(6366), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [STATE(933)] = { + [ts_builtin_sym_end] = ACTIONS(3923), + [sym_identifier] = ACTIONS(3921), + [aux_sym_preproc_include_token1] = ACTIONS(3921), + [aux_sym_preproc_def_token1] = ACTIONS(3921), + [aux_sym_preproc_if_token1] = ACTIONS(3921), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3921), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3921), + [sym_preproc_directive] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3923), + [anon_sym_BANG] = ACTIONS(3923), + [anon_sym_TILDE] = ACTIONS(3923), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_STAR] = ACTIONS(3923), + [anon_sym_AMP_AMP] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym___extension__] = ACTIONS(3921), + [anon_sym_typedef] = ACTIONS(3921), + [anon_sym_virtual] = ACTIONS(3921), + [anon_sym_extern] = ACTIONS(3921), + [anon_sym___attribute__] = ACTIONS(3921), + [anon_sym___attribute] = ACTIONS(3921), + [anon_sym_using] = ACTIONS(3921), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3923), + [anon_sym___declspec] = ACTIONS(3921), + [anon_sym___based] = ACTIONS(3921), + [anon_sym___cdecl] = ACTIONS(3921), + [anon_sym___clrcall] = ACTIONS(3921), + [anon_sym___stdcall] = ACTIONS(3921), + [anon_sym___fastcall] = ACTIONS(3921), + [anon_sym___thiscall] = ACTIONS(3921), + [anon_sym___vectorcall] = ACTIONS(3921), + [anon_sym_LBRACE] = ACTIONS(3923), + [anon_sym_signed] = ACTIONS(3921), + [anon_sym_unsigned] = ACTIONS(3921), + [anon_sym_long] = ACTIONS(3921), + [anon_sym_short] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_static] = ACTIONS(3921), + [anon_sym_register] = ACTIONS(3921), + [anon_sym_inline] = ACTIONS(3921), + [anon_sym___inline] = ACTIONS(3921), + [anon_sym___inline__] = ACTIONS(3921), + [anon_sym___forceinline] = ACTIONS(3921), + [anon_sym_thread_local] = ACTIONS(3921), + [anon_sym___thread] = ACTIONS(3921), + [anon_sym_const] = ACTIONS(3921), + [anon_sym_constexpr] = ACTIONS(3921), + [anon_sym_volatile] = ACTIONS(3921), + [anon_sym_restrict] = ACTIONS(3921), + [anon_sym___restrict__] = ACTIONS(3921), + [anon_sym__Atomic] = ACTIONS(3921), + [anon_sym__Noreturn] = ACTIONS(3921), + [anon_sym_noreturn] = ACTIONS(3921), + [anon_sym__Nonnull] = ACTIONS(3921), + [anon_sym_mutable] = ACTIONS(3921), + [anon_sym_constinit] = ACTIONS(3921), + [anon_sym_consteval] = ACTIONS(3921), + [anon_sym_alignas] = ACTIONS(3921), + [anon_sym__Alignas] = ACTIONS(3921), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_enum] = ACTIONS(3921), + [anon_sym_class] = ACTIONS(3921), + [anon_sym_struct] = ACTIONS(3921), + [anon_sym_union] = ACTIONS(3921), + [anon_sym_if] = ACTIONS(3921), + [anon_sym_switch] = ACTIONS(3921), + [anon_sym_case] = ACTIONS(3921), + [anon_sym_default] = ACTIONS(3921), + [anon_sym_while] = ACTIONS(3921), + [anon_sym_do] = ACTIONS(3921), + [anon_sym_for] = ACTIONS(3921), + [anon_sym_return] = ACTIONS(3921), + [anon_sym_break] = ACTIONS(3921), + [anon_sym_continue] = ACTIONS(3921), + [anon_sym_goto] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(3921), + [anon_sym_compl] = ACTIONS(3921), + [anon_sym_DASH_DASH] = ACTIONS(3923), + [anon_sym_PLUS_PLUS] = ACTIONS(3923), + [anon_sym_sizeof] = ACTIONS(3921), + [anon_sym___alignof__] = ACTIONS(3921), + [anon_sym___alignof] = ACTIONS(3921), + [anon_sym__alignof] = ACTIONS(3921), + [anon_sym_alignof] = ACTIONS(3921), + [anon_sym__Alignof] = ACTIONS(3921), + [anon_sym_offsetof] = ACTIONS(3921), + [anon_sym__Generic] = ACTIONS(3921), + [anon_sym_typename] = ACTIONS(3921), + [anon_sym_asm] = ACTIONS(3921), + [anon_sym___asm__] = ACTIONS(3921), + [anon_sym___asm] = ACTIONS(3921), + [sym_number_literal] = ACTIONS(3923), + [anon_sym_L_SQUOTE] = ACTIONS(3923), + [anon_sym_u_SQUOTE] = ACTIONS(3923), + [anon_sym_U_SQUOTE] = ACTIONS(3923), + [anon_sym_u8_SQUOTE] = ACTIONS(3923), + [anon_sym_SQUOTE] = ACTIONS(3923), + [anon_sym_L_DQUOTE] = ACTIONS(3923), + [anon_sym_u_DQUOTE] = ACTIONS(3923), + [anon_sym_U_DQUOTE] = ACTIONS(3923), + [anon_sym_u8_DQUOTE] = ACTIONS(3923), + [anon_sym_DQUOTE] = ACTIONS(3923), + [sym_true] = ACTIONS(3921), + [sym_false] = ACTIONS(3921), + [anon_sym_NULL] = ACTIONS(3921), + [anon_sym_nullptr] = ACTIONS(3921), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3921), + [anon_sym_decltype] = ACTIONS(3921), + [anon_sym_explicit] = ACTIONS(3921), + [anon_sym_export] = ACTIONS(3921), + [anon_sym_module] = ACTIONS(3921), + [anon_sym_import] = ACTIONS(3921), + [anon_sym_template] = ACTIONS(3921), + [anon_sym_operator] = ACTIONS(3921), + [anon_sym_try] = ACTIONS(3921), + [anon_sym_delete] = ACTIONS(3921), + [anon_sym_throw] = ACTIONS(3921), + [anon_sym_namespace] = ACTIONS(3921), + [anon_sym_static_assert] = ACTIONS(3921), + [anon_sym_concept] = ACTIONS(3921), + [anon_sym_co_return] = ACTIONS(3921), + [anon_sym_co_yield] = ACTIONS(3921), + [anon_sym_R_DQUOTE] = ACTIONS(3923), + [anon_sym_LR_DQUOTE] = ACTIONS(3923), + [anon_sym_uR_DQUOTE] = ACTIONS(3923), + [anon_sym_UR_DQUOTE] = ACTIONS(3923), + [anon_sym_u8R_DQUOTE] = ACTIONS(3923), + [anon_sym_co_await] = ACTIONS(3921), + [anon_sym_new] = ACTIONS(3921), + [anon_sym_requires] = ACTIONS(3921), + [anon_sym_CARET_CARET] = ACTIONS(3923), + [anon_sym_LBRACK_COLON] = ACTIONS(3923), + [sym_this] = ACTIONS(3921), }, - [STATE(1041)] = { - [sym_expression] = STATE(6257), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [STATE(934)] = { + [ts_builtin_sym_end] = ACTIONS(4482), + [sym_identifier] = ACTIONS(4480), + [aux_sym_preproc_include_token1] = ACTIONS(4480), + [aux_sym_preproc_def_token1] = ACTIONS(4480), + [aux_sym_preproc_if_token1] = ACTIONS(4480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4480), + [sym_preproc_directive] = ACTIONS(4480), + [anon_sym_LPAREN2] = ACTIONS(4482), + [anon_sym_BANG] = ACTIONS(4482), + [anon_sym_TILDE] = ACTIONS(4482), + [anon_sym_DASH] = ACTIONS(4480), + [anon_sym_PLUS] = ACTIONS(4480), + [anon_sym_STAR] = ACTIONS(4482), + [anon_sym_AMP_AMP] = ACTIONS(4482), + [anon_sym_AMP] = ACTIONS(4480), + [anon_sym_SEMI] = ACTIONS(4482), + [anon_sym___extension__] = ACTIONS(4480), + [anon_sym_typedef] = ACTIONS(4480), + [anon_sym_virtual] = ACTIONS(4480), + [anon_sym_extern] = ACTIONS(4480), + [anon_sym___attribute__] = ACTIONS(4480), + [anon_sym___attribute] = ACTIONS(4480), + [anon_sym_using] = ACTIONS(4480), + [anon_sym_COLON_COLON] = ACTIONS(4482), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4482), + [anon_sym___declspec] = ACTIONS(4480), + [anon_sym___based] = ACTIONS(4480), + [anon_sym___cdecl] = ACTIONS(4480), + [anon_sym___clrcall] = ACTIONS(4480), + [anon_sym___stdcall] = ACTIONS(4480), + [anon_sym___fastcall] = ACTIONS(4480), + [anon_sym___thiscall] = ACTIONS(4480), + [anon_sym___vectorcall] = ACTIONS(4480), + [anon_sym_LBRACE] = ACTIONS(4482), + [anon_sym_signed] = ACTIONS(4480), + [anon_sym_unsigned] = ACTIONS(4480), + [anon_sym_long] = ACTIONS(4480), + [anon_sym_short] = ACTIONS(4480), + [anon_sym_LBRACK] = ACTIONS(4480), + [anon_sym_static] = ACTIONS(4480), + [anon_sym_register] = ACTIONS(4480), + [anon_sym_inline] = ACTIONS(4480), + [anon_sym___inline] = ACTIONS(4480), + [anon_sym___inline__] = ACTIONS(4480), + [anon_sym___forceinline] = ACTIONS(4480), + [anon_sym_thread_local] = ACTIONS(4480), + [anon_sym___thread] = ACTIONS(4480), + [anon_sym_const] = ACTIONS(4480), + [anon_sym_constexpr] = ACTIONS(4480), + [anon_sym_volatile] = ACTIONS(4480), + [anon_sym_restrict] = ACTIONS(4480), + [anon_sym___restrict__] = ACTIONS(4480), + [anon_sym__Atomic] = ACTIONS(4480), + [anon_sym__Noreturn] = ACTIONS(4480), + [anon_sym_noreturn] = ACTIONS(4480), + [anon_sym__Nonnull] = ACTIONS(4480), + [anon_sym_mutable] = ACTIONS(4480), + [anon_sym_constinit] = ACTIONS(4480), + [anon_sym_consteval] = ACTIONS(4480), + [anon_sym_alignas] = ACTIONS(4480), + [anon_sym__Alignas] = ACTIONS(4480), + [sym_primitive_type] = ACTIONS(4480), + [anon_sym_enum] = ACTIONS(4480), + [anon_sym_class] = ACTIONS(4480), + [anon_sym_struct] = ACTIONS(4480), + [anon_sym_union] = ACTIONS(4480), + [anon_sym_if] = ACTIONS(4480), + [anon_sym_switch] = ACTIONS(4480), + [anon_sym_case] = ACTIONS(4480), + [anon_sym_default] = ACTIONS(4480), + [anon_sym_while] = ACTIONS(4480), + [anon_sym_do] = ACTIONS(4480), + [anon_sym_for] = ACTIONS(4480), + [anon_sym_return] = ACTIONS(4480), + [anon_sym_break] = ACTIONS(4480), + [anon_sym_continue] = ACTIONS(4480), + [anon_sym_goto] = ACTIONS(4480), + [anon_sym_not] = ACTIONS(4480), + [anon_sym_compl] = ACTIONS(4480), + [anon_sym_DASH_DASH] = ACTIONS(4482), + [anon_sym_PLUS_PLUS] = ACTIONS(4482), + [anon_sym_sizeof] = ACTIONS(4480), + [anon_sym___alignof__] = ACTIONS(4480), + [anon_sym___alignof] = ACTIONS(4480), + [anon_sym__alignof] = ACTIONS(4480), + [anon_sym_alignof] = ACTIONS(4480), + [anon_sym__Alignof] = ACTIONS(4480), + [anon_sym_offsetof] = ACTIONS(4480), + [anon_sym__Generic] = ACTIONS(4480), + [anon_sym_typename] = ACTIONS(4480), + [anon_sym_asm] = ACTIONS(4480), + [anon_sym___asm__] = ACTIONS(4480), + [anon_sym___asm] = ACTIONS(4480), + [sym_number_literal] = ACTIONS(4482), + [anon_sym_L_SQUOTE] = ACTIONS(4482), + [anon_sym_u_SQUOTE] = ACTIONS(4482), + [anon_sym_U_SQUOTE] = ACTIONS(4482), + [anon_sym_u8_SQUOTE] = ACTIONS(4482), + [anon_sym_SQUOTE] = ACTIONS(4482), + [anon_sym_L_DQUOTE] = ACTIONS(4482), + [anon_sym_u_DQUOTE] = ACTIONS(4482), + [anon_sym_U_DQUOTE] = ACTIONS(4482), + [anon_sym_u8_DQUOTE] = ACTIONS(4482), + [anon_sym_DQUOTE] = ACTIONS(4482), + [sym_true] = ACTIONS(4480), + [sym_false] = ACTIONS(4480), + [anon_sym_NULL] = ACTIONS(4480), + [anon_sym_nullptr] = ACTIONS(4480), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4480), + [anon_sym_decltype] = ACTIONS(4480), + [anon_sym_explicit] = ACTIONS(4480), + [anon_sym_export] = ACTIONS(4480), + [anon_sym_module] = ACTIONS(4480), + [anon_sym_import] = ACTIONS(4480), + [anon_sym_template] = ACTIONS(4480), + [anon_sym_operator] = ACTIONS(4480), + [anon_sym_try] = ACTIONS(4480), + [anon_sym_delete] = ACTIONS(4480), + [anon_sym_throw] = ACTIONS(4480), + [anon_sym_namespace] = ACTIONS(4480), + [anon_sym_static_assert] = ACTIONS(4480), + [anon_sym_concept] = ACTIONS(4480), + [anon_sym_co_return] = ACTIONS(4480), + [anon_sym_co_yield] = ACTIONS(4480), + [anon_sym_R_DQUOTE] = ACTIONS(4482), + [anon_sym_LR_DQUOTE] = ACTIONS(4482), + [anon_sym_uR_DQUOTE] = ACTIONS(4482), + [anon_sym_UR_DQUOTE] = ACTIONS(4482), + [anon_sym_u8R_DQUOTE] = ACTIONS(4482), + [anon_sym_co_await] = ACTIONS(4480), + [anon_sym_new] = ACTIONS(4480), + [anon_sym_requires] = ACTIONS(4480), + [anon_sym_CARET_CARET] = ACTIONS(4482), + [anon_sym_LBRACK_COLON] = ACTIONS(4482), + [sym_this] = ACTIONS(4480), }, - [STATE(1042)] = { - [sym_expression] = STATE(6472), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9848), - [sym_initializer_pair] = STATE(9848), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_COMMA] = ACTIONS(5360), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5362), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), + [STATE(935)] = { + [sym_preproc_def] = STATE(884), + [sym_preproc_function_def] = STATE(884), + [sym_preproc_call] = STATE(884), + [sym_preproc_if_in_field_declaration_list] = STATE(884), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(884), + [sym_type_definition] = STATE(884), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8092), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(884), + [sym_field_declaration] = STATE(884), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(884), + [sym_operator_cast] = STATE(9211), + [sym_inline_method_definition] = STATE(884), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(884), + [sym_operator_cast_declaration] = STATE(884), + [sym_constructor_or_destructor_definition] = STATE(884), + [sym_constructor_or_destructor_declaration] = STATE(884), + [sym_friend_declaration] = STATE(884), + [sym_access_specifier] = STATE(11030), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(884), + [sym_alias_declaration] = STATE(884), + [sym_static_assert_declaration] = STATE(884), + [sym_consteval_block_declaration] = STATE(884), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9455), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(4686), + [aux_sym_preproc_if_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), + [sym_preproc_directive] = ACTIONS(4692), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(4714), + [anon_sym___extension__] = ACTIONS(4696), + [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4700), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4781), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4704), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1043)] = { - [sym_expression] = STATE(5376), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), - }, - [STATE(1044)] = { - [sym_expression] = STATE(5408), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(4708), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(4712), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(1045)] = { - [sym_expression] = STATE(6620), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), + [STATE(936)] = { + [sym_preproc_def] = STATE(940), + [sym_preproc_function_def] = STATE(940), + [sym_preproc_call] = STATE(940), + [sym_preproc_if_in_field_declaration_list] = STATE(940), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(940), + [sym_type_definition] = STATE(940), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8092), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(940), + [sym_field_declaration] = STATE(940), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(940), + [sym_operator_cast] = STATE(9211), + [sym_inline_method_definition] = STATE(940), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(940), + [sym_operator_cast_declaration] = STATE(940), + [sym_constructor_or_destructor_definition] = STATE(940), + [sym_constructor_or_destructor_declaration] = STATE(940), + [sym_friend_declaration] = STATE(940), + [sym_access_specifier] = STATE(11030), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(940), + [sym_alias_declaration] = STATE(940), + [sym_static_assert_declaration] = STATE(940), + [sym_consteval_block_declaration] = STATE(940), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(940), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9455), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(4686), + [aux_sym_preproc_if_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), + [sym_preproc_directive] = ACTIONS(4692), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(4783), + [anon_sym___extension__] = ACTIONS(4696), + [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4700), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4785), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4704), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(4708), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(4712), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(1046)] = { - [sym_expression] = STATE(6622), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), + [STATE(937)] = { + [ts_builtin_sym_end] = ACTIONS(4190), + [sym_identifier] = ACTIONS(4188), + [aux_sym_preproc_include_token1] = ACTIONS(4188), + [aux_sym_preproc_def_token1] = ACTIONS(4188), + [aux_sym_preproc_if_token1] = ACTIONS(4188), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4188), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4188), + [sym_preproc_directive] = ACTIONS(4188), + [anon_sym_LPAREN2] = ACTIONS(4190), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_TILDE] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4188), + [anon_sym_STAR] = ACTIONS(4190), + [anon_sym_AMP_AMP] = ACTIONS(4190), + [anon_sym_AMP] = ACTIONS(4188), + [anon_sym_SEMI] = ACTIONS(4190), + [anon_sym___extension__] = ACTIONS(4188), + [anon_sym_typedef] = ACTIONS(4188), + [anon_sym_virtual] = ACTIONS(4188), + [anon_sym_extern] = ACTIONS(4188), + [anon_sym___attribute__] = ACTIONS(4188), + [anon_sym___attribute] = ACTIONS(4188), + [anon_sym_using] = ACTIONS(4188), + [anon_sym_COLON_COLON] = ACTIONS(4190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4190), + [anon_sym___declspec] = ACTIONS(4188), + [anon_sym___based] = ACTIONS(4188), + [anon_sym___cdecl] = ACTIONS(4188), + [anon_sym___clrcall] = ACTIONS(4188), + [anon_sym___stdcall] = ACTIONS(4188), + [anon_sym___fastcall] = ACTIONS(4188), + [anon_sym___thiscall] = ACTIONS(4188), + [anon_sym___vectorcall] = ACTIONS(4188), + [anon_sym_LBRACE] = ACTIONS(4190), + [anon_sym_signed] = ACTIONS(4188), + [anon_sym_unsigned] = ACTIONS(4188), + [anon_sym_long] = ACTIONS(4188), + [anon_sym_short] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4188), + [anon_sym_static] = ACTIONS(4188), + [anon_sym_register] = ACTIONS(4188), + [anon_sym_inline] = ACTIONS(4188), + [anon_sym___inline] = ACTIONS(4188), + [anon_sym___inline__] = ACTIONS(4188), + [anon_sym___forceinline] = ACTIONS(4188), + [anon_sym_thread_local] = ACTIONS(4188), + [anon_sym___thread] = ACTIONS(4188), + [anon_sym_const] = ACTIONS(4188), + [anon_sym_constexpr] = ACTIONS(4188), + [anon_sym_volatile] = ACTIONS(4188), + [anon_sym_restrict] = ACTIONS(4188), + [anon_sym___restrict__] = ACTIONS(4188), + [anon_sym__Atomic] = ACTIONS(4188), + [anon_sym__Noreturn] = ACTIONS(4188), + [anon_sym_noreturn] = ACTIONS(4188), + [anon_sym__Nonnull] = ACTIONS(4188), + [anon_sym_mutable] = ACTIONS(4188), + [anon_sym_constinit] = ACTIONS(4188), + [anon_sym_consteval] = ACTIONS(4188), + [anon_sym_alignas] = ACTIONS(4188), + [anon_sym__Alignas] = ACTIONS(4188), + [sym_primitive_type] = ACTIONS(4188), + [anon_sym_enum] = ACTIONS(4188), + [anon_sym_class] = ACTIONS(4188), + [anon_sym_struct] = ACTIONS(4188), + [anon_sym_union] = ACTIONS(4188), + [anon_sym_if] = ACTIONS(4188), + [anon_sym_switch] = ACTIONS(4188), + [anon_sym_case] = ACTIONS(4188), + [anon_sym_default] = ACTIONS(4188), + [anon_sym_while] = ACTIONS(4188), + [anon_sym_do] = ACTIONS(4188), + [anon_sym_for] = ACTIONS(4188), + [anon_sym_return] = ACTIONS(4188), + [anon_sym_break] = ACTIONS(4188), + [anon_sym_continue] = ACTIONS(4188), + [anon_sym_goto] = ACTIONS(4188), + [anon_sym_not] = ACTIONS(4188), + [anon_sym_compl] = ACTIONS(4188), + [anon_sym_DASH_DASH] = ACTIONS(4190), + [anon_sym_PLUS_PLUS] = ACTIONS(4190), + [anon_sym_sizeof] = ACTIONS(4188), + [anon_sym___alignof__] = ACTIONS(4188), + [anon_sym___alignof] = ACTIONS(4188), + [anon_sym__alignof] = ACTIONS(4188), + [anon_sym_alignof] = ACTIONS(4188), + [anon_sym__Alignof] = ACTIONS(4188), + [anon_sym_offsetof] = ACTIONS(4188), + [anon_sym__Generic] = ACTIONS(4188), + [anon_sym_typename] = ACTIONS(4188), + [anon_sym_asm] = ACTIONS(4188), + [anon_sym___asm__] = ACTIONS(4188), + [anon_sym___asm] = ACTIONS(4188), + [sym_number_literal] = ACTIONS(4190), + [anon_sym_L_SQUOTE] = ACTIONS(4190), + [anon_sym_u_SQUOTE] = ACTIONS(4190), + [anon_sym_U_SQUOTE] = ACTIONS(4190), + [anon_sym_u8_SQUOTE] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4190), + [anon_sym_L_DQUOTE] = ACTIONS(4190), + [anon_sym_u_DQUOTE] = ACTIONS(4190), + [anon_sym_U_DQUOTE] = ACTIONS(4190), + [anon_sym_u8_DQUOTE] = ACTIONS(4190), + [anon_sym_DQUOTE] = ACTIONS(4190), + [sym_true] = ACTIONS(4188), + [sym_false] = ACTIONS(4188), + [anon_sym_NULL] = ACTIONS(4188), + [anon_sym_nullptr] = ACTIONS(4188), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_auto] = ACTIONS(4188), + [anon_sym_decltype] = ACTIONS(4188), + [anon_sym_explicit] = ACTIONS(4188), + [anon_sym_export] = ACTIONS(4188), + [anon_sym_module] = ACTIONS(4188), + [anon_sym_import] = ACTIONS(4188), + [anon_sym_template] = ACTIONS(4188), + [anon_sym_operator] = ACTIONS(4188), + [anon_sym_try] = ACTIONS(4188), + [anon_sym_delete] = ACTIONS(4188), + [anon_sym_throw] = ACTIONS(4188), + [anon_sym_namespace] = ACTIONS(4188), + [anon_sym_static_assert] = ACTIONS(4188), + [anon_sym_concept] = ACTIONS(4188), + [anon_sym_co_return] = ACTIONS(4188), + [anon_sym_co_yield] = ACTIONS(4188), + [anon_sym_R_DQUOTE] = ACTIONS(4190), + [anon_sym_LR_DQUOTE] = ACTIONS(4190), + [anon_sym_uR_DQUOTE] = ACTIONS(4190), + [anon_sym_UR_DQUOTE] = ACTIONS(4190), + [anon_sym_u8R_DQUOTE] = ACTIONS(4190), + [anon_sym_co_await] = ACTIONS(4188), + [anon_sym_new] = ACTIONS(4188), + [anon_sym_requires] = ACTIONS(4188), + [anon_sym_CARET_CARET] = ACTIONS(4190), + [anon_sym_LBRACK_COLON] = ACTIONS(4190), + [sym_this] = ACTIONS(4188), }, - [STATE(1047)] = { - [sym_string_literal] = STATE(4004), - [sym_decltype_auto] = STATE(4767), - [sym_template_argument_list] = STATE(2061), - [sym_raw_string_literal] = STATE(4004), - [aux_sym_sized_type_specifier_repeat1] = STATE(4121), - [sym_identifier] = ACTIONS(5251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5284), - [anon_sym_TILDE] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(5265), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5255), - [anon_sym___extension__] = ACTIONS(5251), - [anon_sym_virtual] = ACTIONS(5251), - [anon_sym_extern] = ACTIONS(5251), - [anon_sym___attribute__] = ACTIONS(5251), - [anon_sym___attribute] = ACTIONS(5251), - [anon_sym_COLON] = ACTIONS(5268), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5290), - [anon_sym___declspec] = ACTIONS(5251), - [anon_sym___based] = ACTIONS(5251), - [anon_sym___cdecl] = ACTIONS(5251), - [anon_sym___clrcall] = ACTIONS(5251), - [anon_sym___stdcall] = ACTIONS(5251), - [anon_sym___fastcall] = ACTIONS(5251), - [anon_sym___thiscall] = ACTIONS(5251), - [anon_sym___vectorcall] = ACTIONS(5251), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(5274), - [anon_sym_unsigned] = ACTIONS(5274), - [anon_sym_long] = ACTIONS(5274), - [anon_sym_short] = ACTIONS(5274), - [anon_sym_LBRACK] = ACTIONS(5293), - [anon_sym_static] = ACTIONS(5251), - [anon_sym_EQ] = ACTIONS(5276), - [anon_sym_register] = ACTIONS(5251), - [anon_sym_inline] = ACTIONS(5251), - [anon_sym___inline] = ACTIONS(5251), - [anon_sym___inline__] = ACTIONS(5251), - [anon_sym___forceinline] = ACTIONS(5251), - [anon_sym_thread_local] = ACTIONS(5251), - [anon_sym___thread] = ACTIONS(5251), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5251), - [anon_sym_volatile] = ACTIONS(5251), - [anon_sym_restrict] = ACTIONS(5251), - [anon_sym___restrict__] = ACTIONS(5251), - [anon_sym__Atomic] = ACTIONS(5251), - [anon_sym__Noreturn] = ACTIONS(5251), - [anon_sym_noreturn] = ACTIONS(5251), - [anon_sym__Nonnull] = ACTIONS(5251), - [anon_sym_mutable] = ACTIONS(5251), - [anon_sym_constinit] = ACTIONS(5251), - [anon_sym_consteval] = ACTIONS(5251), - [anon_sym_alignas] = ACTIONS(5251), - [anon_sym__Alignas] = ACTIONS(5251), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5276), - [anon_sym_or_eq] = ACTIONS(5276), - [anon_sym_xor_eq] = ACTIONS(5276), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5260), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5260), - [anon_sym_not_eq] = ACTIONS(5260), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5280), - [anon_sym_decltype] = ACTIONS(5282), - [anon_sym_template] = ACTIONS(5251), - [anon_sym_operator] = ACTIONS(5251), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_LBRACK_COLON] = ACTIONS(5258), + [STATE(938)] = { + [ts_builtin_sym_end] = ACTIONS(4194), + [sym_identifier] = ACTIONS(4192), + [aux_sym_preproc_include_token1] = ACTIONS(4192), + [aux_sym_preproc_def_token1] = ACTIONS(4192), + [aux_sym_preproc_if_token1] = ACTIONS(4192), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4192), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4192), + [sym_preproc_directive] = ACTIONS(4192), + [anon_sym_LPAREN2] = ACTIONS(4194), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_TILDE] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4192), + [anon_sym_STAR] = ACTIONS(4194), + [anon_sym_AMP_AMP] = ACTIONS(4194), + [anon_sym_AMP] = ACTIONS(4192), + [anon_sym_SEMI] = ACTIONS(4194), + [anon_sym___extension__] = ACTIONS(4192), + [anon_sym_typedef] = ACTIONS(4192), + [anon_sym_virtual] = ACTIONS(4192), + [anon_sym_extern] = ACTIONS(4192), + [anon_sym___attribute__] = ACTIONS(4192), + [anon_sym___attribute] = ACTIONS(4192), + [anon_sym_using] = ACTIONS(4192), + [anon_sym_COLON_COLON] = ACTIONS(4194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), + [anon_sym___declspec] = ACTIONS(4192), + [anon_sym___based] = ACTIONS(4192), + [anon_sym___cdecl] = ACTIONS(4192), + [anon_sym___clrcall] = ACTIONS(4192), + [anon_sym___stdcall] = ACTIONS(4192), + [anon_sym___fastcall] = ACTIONS(4192), + [anon_sym___thiscall] = ACTIONS(4192), + [anon_sym___vectorcall] = ACTIONS(4192), + [anon_sym_LBRACE] = ACTIONS(4194), + [anon_sym_signed] = ACTIONS(4192), + [anon_sym_unsigned] = ACTIONS(4192), + [anon_sym_long] = ACTIONS(4192), + [anon_sym_short] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_static] = ACTIONS(4192), + [anon_sym_register] = ACTIONS(4192), + [anon_sym_inline] = ACTIONS(4192), + [anon_sym___inline] = ACTIONS(4192), + [anon_sym___inline__] = ACTIONS(4192), + [anon_sym___forceinline] = ACTIONS(4192), + [anon_sym_thread_local] = ACTIONS(4192), + [anon_sym___thread] = ACTIONS(4192), + [anon_sym_const] = ACTIONS(4192), + [anon_sym_constexpr] = ACTIONS(4192), + [anon_sym_volatile] = ACTIONS(4192), + [anon_sym_restrict] = ACTIONS(4192), + [anon_sym___restrict__] = ACTIONS(4192), + [anon_sym__Atomic] = ACTIONS(4192), + [anon_sym__Noreturn] = ACTIONS(4192), + [anon_sym_noreturn] = ACTIONS(4192), + [anon_sym__Nonnull] = ACTIONS(4192), + [anon_sym_mutable] = ACTIONS(4192), + [anon_sym_constinit] = ACTIONS(4192), + [anon_sym_consteval] = ACTIONS(4192), + [anon_sym_alignas] = ACTIONS(4192), + [anon_sym__Alignas] = ACTIONS(4192), + [sym_primitive_type] = ACTIONS(4192), + [anon_sym_enum] = ACTIONS(4192), + [anon_sym_class] = ACTIONS(4192), + [anon_sym_struct] = ACTIONS(4192), + [anon_sym_union] = ACTIONS(4192), + [anon_sym_if] = ACTIONS(4192), + [anon_sym_switch] = ACTIONS(4192), + [anon_sym_case] = ACTIONS(4192), + [anon_sym_default] = ACTIONS(4192), + [anon_sym_while] = ACTIONS(4192), + [anon_sym_do] = ACTIONS(4192), + [anon_sym_for] = ACTIONS(4192), + [anon_sym_return] = ACTIONS(4192), + [anon_sym_break] = ACTIONS(4192), + [anon_sym_continue] = ACTIONS(4192), + [anon_sym_goto] = ACTIONS(4192), + [anon_sym_not] = ACTIONS(4192), + [anon_sym_compl] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4194), + [anon_sym_PLUS_PLUS] = ACTIONS(4194), + [anon_sym_sizeof] = ACTIONS(4192), + [anon_sym___alignof__] = ACTIONS(4192), + [anon_sym___alignof] = ACTIONS(4192), + [anon_sym__alignof] = ACTIONS(4192), + [anon_sym_alignof] = ACTIONS(4192), + [anon_sym__Alignof] = ACTIONS(4192), + [anon_sym_offsetof] = ACTIONS(4192), + [anon_sym__Generic] = ACTIONS(4192), + [anon_sym_typename] = ACTIONS(4192), + [anon_sym_asm] = ACTIONS(4192), + [anon_sym___asm__] = ACTIONS(4192), + [anon_sym___asm] = ACTIONS(4192), + [sym_number_literal] = ACTIONS(4194), + [anon_sym_L_SQUOTE] = ACTIONS(4194), + [anon_sym_u_SQUOTE] = ACTIONS(4194), + [anon_sym_U_SQUOTE] = ACTIONS(4194), + [anon_sym_u8_SQUOTE] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4194), + [anon_sym_L_DQUOTE] = ACTIONS(4194), + [anon_sym_u_DQUOTE] = ACTIONS(4194), + [anon_sym_U_DQUOTE] = ACTIONS(4194), + [anon_sym_u8_DQUOTE] = ACTIONS(4194), + [anon_sym_DQUOTE] = ACTIONS(4194), + [sym_true] = ACTIONS(4192), + [sym_false] = ACTIONS(4192), + [anon_sym_NULL] = ACTIONS(4192), + [anon_sym_nullptr] = ACTIONS(4192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4192), + [anon_sym_decltype] = ACTIONS(4192), + [anon_sym_explicit] = ACTIONS(4192), + [anon_sym_export] = ACTIONS(4192), + [anon_sym_module] = ACTIONS(4192), + [anon_sym_import] = ACTIONS(4192), + [anon_sym_template] = ACTIONS(4192), + [anon_sym_operator] = ACTIONS(4192), + [anon_sym_try] = ACTIONS(4192), + [anon_sym_delete] = ACTIONS(4192), + [anon_sym_throw] = ACTIONS(4192), + [anon_sym_namespace] = ACTIONS(4192), + [anon_sym_static_assert] = ACTIONS(4192), + [anon_sym_concept] = ACTIONS(4192), + [anon_sym_co_return] = ACTIONS(4192), + [anon_sym_co_yield] = ACTIONS(4192), + [anon_sym_R_DQUOTE] = ACTIONS(4194), + [anon_sym_LR_DQUOTE] = ACTIONS(4194), + [anon_sym_uR_DQUOTE] = ACTIONS(4194), + [anon_sym_UR_DQUOTE] = ACTIONS(4194), + [anon_sym_u8R_DQUOTE] = ACTIONS(4194), + [anon_sym_co_await] = ACTIONS(4192), + [anon_sym_new] = ACTIONS(4192), + [anon_sym_requires] = ACTIONS(4192), + [anon_sym_CARET_CARET] = ACTIONS(4194), + [anon_sym_LBRACK_COLON] = ACTIONS(4194), + [sym_this] = ACTIONS(4192), }, - [STATE(1048)] = { - [sym_expression] = STATE(5322), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(939)] = { + [ts_builtin_sym_end] = ACTIONS(4018), + [sym_identifier] = ACTIONS(4016), + [aux_sym_preproc_include_token1] = ACTIONS(4016), + [aux_sym_preproc_def_token1] = ACTIONS(4016), + [aux_sym_preproc_if_token1] = ACTIONS(4016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4016), + [sym_preproc_directive] = ACTIONS(4016), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(4018), + [anon_sym_TILDE] = ACTIONS(4018), + [anon_sym_DASH] = ACTIONS(4016), + [anon_sym_PLUS] = ACTIONS(4016), + [anon_sym_STAR] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4016), + [anon_sym_SEMI] = ACTIONS(4018), + [anon_sym___extension__] = ACTIONS(4016), + [anon_sym_typedef] = ACTIONS(4016), + [anon_sym_virtual] = ACTIONS(4016), + [anon_sym_extern] = ACTIONS(4016), + [anon_sym___attribute__] = ACTIONS(4016), + [anon_sym___attribute] = ACTIONS(4016), + [anon_sym_using] = ACTIONS(4016), + [anon_sym_COLON_COLON] = ACTIONS(4018), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4018), + [anon_sym___declspec] = ACTIONS(4016), + [anon_sym___based] = ACTIONS(4016), + [anon_sym___cdecl] = ACTIONS(4016), + [anon_sym___clrcall] = ACTIONS(4016), + [anon_sym___stdcall] = ACTIONS(4016), + [anon_sym___fastcall] = ACTIONS(4016), + [anon_sym___thiscall] = ACTIONS(4016), + [anon_sym___vectorcall] = ACTIONS(4016), + [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_signed] = ACTIONS(4016), + [anon_sym_unsigned] = ACTIONS(4016), + [anon_sym_long] = ACTIONS(4016), + [anon_sym_short] = ACTIONS(4016), + [anon_sym_LBRACK] = ACTIONS(4016), + [anon_sym_static] = ACTIONS(4016), + [anon_sym_register] = ACTIONS(4016), + [anon_sym_inline] = ACTIONS(4016), + [anon_sym___inline] = ACTIONS(4016), + [anon_sym___inline__] = ACTIONS(4016), + [anon_sym___forceinline] = ACTIONS(4016), + [anon_sym_thread_local] = ACTIONS(4016), + [anon_sym___thread] = ACTIONS(4016), + [anon_sym_const] = ACTIONS(4016), + [anon_sym_constexpr] = ACTIONS(4016), + [anon_sym_volatile] = ACTIONS(4016), + [anon_sym_restrict] = ACTIONS(4016), + [anon_sym___restrict__] = ACTIONS(4016), + [anon_sym__Atomic] = ACTIONS(4016), + [anon_sym__Noreturn] = ACTIONS(4016), + [anon_sym_noreturn] = ACTIONS(4016), + [anon_sym__Nonnull] = ACTIONS(4016), + [anon_sym_mutable] = ACTIONS(4016), + [anon_sym_constinit] = ACTIONS(4016), + [anon_sym_consteval] = ACTIONS(4016), + [anon_sym_alignas] = ACTIONS(4016), + [anon_sym__Alignas] = ACTIONS(4016), + [sym_primitive_type] = ACTIONS(4016), + [anon_sym_enum] = ACTIONS(4016), + [anon_sym_class] = ACTIONS(4016), + [anon_sym_struct] = ACTIONS(4016), + [anon_sym_union] = ACTIONS(4016), + [anon_sym_if] = ACTIONS(4016), + [anon_sym_switch] = ACTIONS(4016), + [anon_sym_case] = ACTIONS(4016), + [anon_sym_default] = ACTIONS(4016), + [anon_sym_while] = ACTIONS(4016), + [anon_sym_do] = ACTIONS(4016), + [anon_sym_for] = ACTIONS(4016), + [anon_sym_return] = ACTIONS(4016), + [anon_sym_break] = ACTIONS(4016), + [anon_sym_continue] = ACTIONS(4016), + [anon_sym_goto] = ACTIONS(4016), + [anon_sym_not] = ACTIONS(4016), + [anon_sym_compl] = ACTIONS(4016), + [anon_sym_DASH_DASH] = ACTIONS(4018), + [anon_sym_PLUS_PLUS] = ACTIONS(4018), + [anon_sym_sizeof] = ACTIONS(4016), + [anon_sym___alignof__] = ACTIONS(4016), + [anon_sym___alignof] = ACTIONS(4016), + [anon_sym__alignof] = ACTIONS(4016), + [anon_sym_alignof] = ACTIONS(4016), + [anon_sym__Alignof] = ACTIONS(4016), + [anon_sym_offsetof] = ACTIONS(4016), + [anon_sym__Generic] = ACTIONS(4016), + [anon_sym_typename] = ACTIONS(4016), + [anon_sym_asm] = ACTIONS(4016), + [anon_sym___asm__] = ACTIONS(4016), + [anon_sym___asm] = ACTIONS(4016), + [sym_number_literal] = ACTIONS(4018), + [anon_sym_L_SQUOTE] = ACTIONS(4018), + [anon_sym_u_SQUOTE] = ACTIONS(4018), + [anon_sym_U_SQUOTE] = ACTIONS(4018), + [anon_sym_u8_SQUOTE] = ACTIONS(4018), + [anon_sym_SQUOTE] = ACTIONS(4018), + [anon_sym_L_DQUOTE] = ACTIONS(4018), + [anon_sym_u_DQUOTE] = ACTIONS(4018), + [anon_sym_U_DQUOTE] = ACTIONS(4018), + [anon_sym_u8_DQUOTE] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(4018), + [sym_true] = ACTIONS(4016), + [sym_false] = ACTIONS(4016), + [anon_sym_NULL] = ACTIONS(4016), + [anon_sym_nullptr] = ACTIONS(4016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4016), + [anon_sym_decltype] = ACTIONS(4016), + [anon_sym_explicit] = ACTIONS(4016), + [anon_sym_export] = ACTIONS(4016), + [anon_sym_module] = ACTIONS(4016), + [anon_sym_import] = ACTIONS(4016), + [anon_sym_template] = ACTIONS(4016), + [anon_sym_operator] = ACTIONS(4016), + [anon_sym_try] = ACTIONS(4016), + [anon_sym_delete] = ACTIONS(4016), + [anon_sym_throw] = ACTIONS(4016), + [anon_sym_namespace] = ACTIONS(4016), + [anon_sym_static_assert] = ACTIONS(4016), + [anon_sym_concept] = ACTIONS(4016), + [anon_sym_co_return] = ACTIONS(4016), + [anon_sym_co_yield] = ACTIONS(4016), + [anon_sym_R_DQUOTE] = ACTIONS(4018), + [anon_sym_LR_DQUOTE] = ACTIONS(4018), + [anon_sym_uR_DQUOTE] = ACTIONS(4018), + [anon_sym_UR_DQUOTE] = ACTIONS(4018), + [anon_sym_u8R_DQUOTE] = ACTIONS(4018), + [anon_sym_co_await] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(4016), + [anon_sym_requires] = ACTIONS(4016), + [anon_sym_CARET_CARET] = ACTIONS(4018), + [anon_sym_LBRACK_COLON] = ACTIONS(4018), + [sym_this] = ACTIONS(4016), }, - [STATE(1049)] = { - [sym_expression] = STATE(5324), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(940)] = { + [sym_preproc_def] = STATE(884), + [sym_preproc_function_def] = STATE(884), + [sym_preproc_call] = STATE(884), + [sym_preproc_if_in_field_declaration_list] = STATE(884), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(884), + [sym_type_definition] = STATE(884), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8092), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(884), + [sym_field_declaration] = STATE(884), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(884), + [sym_operator_cast] = STATE(9211), + [sym_inline_method_definition] = STATE(884), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(884), + [sym_operator_cast_declaration] = STATE(884), + [sym_constructor_or_destructor_definition] = STATE(884), + [sym_constructor_or_destructor_declaration] = STATE(884), + [sym_friend_declaration] = STATE(884), + [sym_access_specifier] = STATE(11030), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(884), + [sym_alias_declaration] = STATE(884), + [sym_static_assert_declaration] = STATE(884), + [sym_consteval_block_declaration] = STATE(884), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9455), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(4686), + [aux_sym_preproc_if_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), + [sym_preproc_directive] = ACTIONS(4692), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(4714), + [anon_sym___extension__] = ACTIONS(4696), + [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4700), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4787), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4704), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(4708), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(4712), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(1050)] = { - [sym_string_literal] = STATE(4004), - [sym_decltype_auto] = STATE(4767), - [sym_template_argument_list] = STATE(2029), - [sym_raw_string_literal] = STATE(4004), - [aux_sym_sized_type_specifier_repeat1] = STATE(4121), - [sym_identifier] = ACTIONS(5251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_TILDE] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(5265), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym___extension__] = ACTIONS(5251), - [anon_sym_virtual] = ACTIONS(5251), - [anon_sym_extern] = ACTIONS(5251), - [anon_sym___attribute__] = ACTIONS(5251), - [anon_sym___attribute] = ACTIONS(5251), - [anon_sym_COLON] = ACTIONS(5330), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5258), - [anon_sym___declspec] = ACTIONS(5251), - [anon_sym___based] = ACTIONS(5251), - [anon_sym___cdecl] = ACTIONS(5251), - [anon_sym___clrcall] = ACTIONS(5251), - [anon_sym___stdcall] = ACTIONS(5251), - [anon_sym___fastcall] = ACTIONS(5251), - [anon_sym___thiscall] = ACTIONS(5251), - [anon_sym___vectorcall] = ACTIONS(5251), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(5274), - [anon_sym_unsigned] = ACTIONS(5274), - [anon_sym_long] = ACTIONS(5274), - [anon_sym_short] = ACTIONS(5274), - [anon_sym_LBRACK] = ACTIONS(5262), - [anon_sym_static] = ACTIONS(5251), - [anon_sym_EQ] = ACTIONS(5276), - [anon_sym_register] = ACTIONS(5251), - [anon_sym_inline] = ACTIONS(5251), - [anon_sym___inline] = ACTIONS(5251), - [anon_sym___inline__] = ACTIONS(5251), - [anon_sym___forceinline] = ACTIONS(5251), - [anon_sym_thread_local] = ACTIONS(5251), - [anon_sym___thread] = ACTIONS(5251), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5251), - [anon_sym_volatile] = ACTIONS(5251), - [anon_sym_restrict] = ACTIONS(5251), - [anon_sym___restrict__] = ACTIONS(5251), - [anon_sym__Atomic] = ACTIONS(5251), - [anon_sym__Noreturn] = ACTIONS(5251), - [anon_sym_noreturn] = ACTIONS(5251), - [anon_sym__Nonnull] = ACTIONS(5251), - [anon_sym_mutable] = ACTIONS(5251), - [anon_sym_constinit] = ACTIONS(5251), - [anon_sym_consteval] = ACTIONS(5251), - [anon_sym_alignas] = ACTIONS(5251), - [anon_sym__Alignas] = ACTIONS(5251), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5276), - [anon_sym_or_eq] = ACTIONS(5276), - [anon_sym_xor_eq] = ACTIONS(5276), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5260), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5260), - [anon_sym_not_eq] = ACTIONS(5260), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5280), - [anon_sym_decltype] = ACTIONS(5282), - [anon_sym_template] = ACTIONS(5251), - [anon_sym_operator] = ACTIONS(5251), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_LBRACK_COLON] = ACTIONS(5258), + [STATE(941)] = { + [sym_preproc_def] = STATE(884), + [sym_preproc_function_def] = STATE(884), + [sym_preproc_call] = STATE(884), + [sym_preproc_if_in_field_declaration_list] = STATE(884), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(884), + [sym_type_definition] = STATE(884), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8092), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(884), + [sym_field_declaration] = STATE(884), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(884), + [sym_operator_cast] = STATE(9211), + [sym_inline_method_definition] = STATE(884), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(884), + [sym_operator_cast_declaration] = STATE(884), + [sym_constructor_or_destructor_definition] = STATE(884), + [sym_constructor_or_destructor_declaration] = STATE(884), + [sym_friend_declaration] = STATE(884), + [sym_access_specifier] = STATE(11030), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(884), + [sym_alias_declaration] = STATE(884), + [sym_static_assert_declaration] = STATE(884), + [sym_consteval_block_declaration] = STATE(884), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9455), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(4686), + [aux_sym_preproc_if_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), + [sym_preproc_directive] = ACTIONS(4692), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(4714), + [anon_sym___extension__] = ACTIONS(4696), + [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4700), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4789), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4704), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(4708), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(4712), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(1051)] = { - [sym_expression] = STATE(5209), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), + [STATE(942)] = { + [sym_preproc_def] = STATE(1015), + [sym_preproc_function_def] = STATE(1015), + [sym_preproc_call] = STATE(1015), + [sym_preproc_if_in_field_declaration_list] = STATE(1015), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1015), + [sym_type_definition] = STATE(1015), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8092), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(1015), + [sym_field_declaration] = STATE(1015), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(1015), + [sym_operator_cast] = STATE(9211), + [sym_inline_method_definition] = STATE(1015), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(1015), + [sym_operator_cast_declaration] = STATE(1015), + [sym_constructor_or_destructor_definition] = STATE(1015), + [sym_constructor_or_destructor_declaration] = STATE(1015), + [sym_friend_declaration] = STATE(1015), + [sym_access_specifier] = STATE(11030), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(1015), + [sym_alias_declaration] = STATE(1015), + [sym_static_assert_declaration] = STATE(1015), + [sym_consteval_block_declaration] = STATE(1015), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1015), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9455), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(4686), + [aux_sym_preproc_if_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), + [sym_preproc_directive] = ACTIONS(4692), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(4791), + [anon_sym___extension__] = ACTIONS(4696), + [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4700), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4793), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4704), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(4708), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(4712), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(1052)] = { - [sym_expression] = STATE(5336), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), + [STATE(943)] = { + [ts_builtin_sym_end] = ACTIONS(4512), + [sym_identifier] = ACTIONS(4510), + [aux_sym_preproc_include_token1] = ACTIONS(4510), + [aux_sym_preproc_def_token1] = ACTIONS(4510), + [aux_sym_preproc_if_token1] = ACTIONS(4510), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4510), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4510), + [sym_preproc_directive] = ACTIONS(4510), + [anon_sym_LPAREN2] = ACTIONS(4512), + [anon_sym_BANG] = ACTIONS(4512), + [anon_sym_TILDE] = ACTIONS(4512), + [anon_sym_DASH] = ACTIONS(4510), + [anon_sym_PLUS] = ACTIONS(4510), + [anon_sym_STAR] = ACTIONS(4512), + [anon_sym_AMP_AMP] = ACTIONS(4512), + [anon_sym_AMP] = ACTIONS(4510), + [anon_sym_SEMI] = ACTIONS(4512), + [anon_sym___extension__] = ACTIONS(4510), + [anon_sym_typedef] = ACTIONS(4510), + [anon_sym_virtual] = ACTIONS(4510), + [anon_sym_extern] = ACTIONS(4510), + [anon_sym___attribute__] = ACTIONS(4510), + [anon_sym___attribute] = ACTIONS(4510), + [anon_sym_using] = ACTIONS(4510), + [anon_sym_COLON_COLON] = ACTIONS(4512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4512), + [anon_sym___declspec] = ACTIONS(4510), + [anon_sym___based] = ACTIONS(4510), + [anon_sym___cdecl] = ACTIONS(4510), + [anon_sym___clrcall] = ACTIONS(4510), + [anon_sym___stdcall] = ACTIONS(4510), + [anon_sym___fastcall] = ACTIONS(4510), + [anon_sym___thiscall] = ACTIONS(4510), + [anon_sym___vectorcall] = ACTIONS(4510), + [anon_sym_LBRACE] = ACTIONS(4512), + [anon_sym_signed] = ACTIONS(4510), + [anon_sym_unsigned] = ACTIONS(4510), + [anon_sym_long] = ACTIONS(4510), + [anon_sym_short] = ACTIONS(4510), + [anon_sym_LBRACK] = ACTIONS(4510), + [anon_sym_static] = ACTIONS(4510), + [anon_sym_register] = ACTIONS(4510), + [anon_sym_inline] = ACTIONS(4510), + [anon_sym___inline] = ACTIONS(4510), + [anon_sym___inline__] = ACTIONS(4510), + [anon_sym___forceinline] = ACTIONS(4510), + [anon_sym_thread_local] = ACTIONS(4510), + [anon_sym___thread] = ACTIONS(4510), + [anon_sym_const] = ACTIONS(4510), + [anon_sym_constexpr] = ACTIONS(4510), + [anon_sym_volatile] = ACTIONS(4510), + [anon_sym_restrict] = ACTIONS(4510), + [anon_sym___restrict__] = ACTIONS(4510), + [anon_sym__Atomic] = ACTIONS(4510), + [anon_sym__Noreturn] = ACTIONS(4510), + [anon_sym_noreturn] = ACTIONS(4510), + [anon_sym__Nonnull] = ACTIONS(4510), + [anon_sym_mutable] = ACTIONS(4510), + [anon_sym_constinit] = ACTIONS(4510), + [anon_sym_consteval] = ACTIONS(4510), + [anon_sym_alignas] = ACTIONS(4510), + [anon_sym__Alignas] = ACTIONS(4510), + [sym_primitive_type] = ACTIONS(4510), + [anon_sym_enum] = ACTIONS(4510), + [anon_sym_class] = ACTIONS(4510), + [anon_sym_struct] = ACTIONS(4510), + [anon_sym_union] = ACTIONS(4510), + [anon_sym_if] = ACTIONS(4510), + [anon_sym_switch] = ACTIONS(4510), + [anon_sym_case] = ACTIONS(4510), + [anon_sym_default] = ACTIONS(4510), + [anon_sym_while] = ACTIONS(4510), + [anon_sym_do] = ACTIONS(4510), + [anon_sym_for] = ACTIONS(4510), + [anon_sym_return] = ACTIONS(4510), + [anon_sym_break] = ACTIONS(4510), + [anon_sym_continue] = ACTIONS(4510), + [anon_sym_goto] = ACTIONS(4510), + [anon_sym_not] = ACTIONS(4510), + [anon_sym_compl] = ACTIONS(4510), + [anon_sym_DASH_DASH] = ACTIONS(4512), + [anon_sym_PLUS_PLUS] = ACTIONS(4512), + [anon_sym_sizeof] = ACTIONS(4510), + [anon_sym___alignof__] = ACTIONS(4510), + [anon_sym___alignof] = ACTIONS(4510), + [anon_sym__alignof] = ACTIONS(4510), + [anon_sym_alignof] = ACTIONS(4510), + [anon_sym__Alignof] = ACTIONS(4510), + [anon_sym_offsetof] = ACTIONS(4510), + [anon_sym__Generic] = ACTIONS(4510), + [anon_sym_typename] = ACTIONS(4510), + [anon_sym_asm] = ACTIONS(4510), + [anon_sym___asm__] = ACTIONS(4510), + [anon_sym___asm] = ACTIONS(4510), + [sym_number_literal] = ACTIONS(4512), + [anon_sym_L_SQUOTE] = ACTIONS(4512), + [anon_sym_u_SQUOTE] = ACTIONS(4512), + [anon_sym_U_SQUOTE] = ACTIONS(4512), + [anon_sym_u8_SQUOTE] = ACTIONS(4512), + [anon_sym_SQUOTE] = ACTIONS(4512), + [anon_sym_L_DQUOTE] = ACTIONS(4512), + [anon_sym_u_DQUOTE] = ACTIONS(4512), + [anon_sym_U_DQUOTE] = ACTIONS(4512), + [anon_sym_u8_DQUOTE] = ACTIONS(4512), + [anon_sym_DQUOTE] = ACTIONS(4512), + [sym_true] = ACTIONS(4510), + [sym_false] = ACTIONS(4510), + [anon_sym_NULL] = ACTIONS(4510), + [anon_sym_nullptr] = ACTIONS(4510), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4510), + [anon_sym_decltype] = ACTIONS(4510), + [anon_sym_explicit] = ACTIONS(4510), + [anon_sym_export] = ACTIONS(4510), + [anon_sym_module] = ACTIONS(4510), + [anon_sym_import] = ACTIONS(4510), + [anon_sym_template] = ACTIONS(4510), + [anon_sym_operator] = ACTIONS(4510), + [anon_sym_try] = ACTIONS(4510), + [anon_sym_delete] = ACTIONS(4510), + [anon_sym_throw] = ACTIONS(4510), + [anon_sym_namespace] = ACTIONS(4510), + [anon_sym_static_assert] = ACTIONS(4510), + [anon_sym_concept] = ACTIONS(4510), + [anon_sym_co_return] = ACTIONS(4510), + [anon_sym_co_yield] = ACTIONS(4510), + [anon_sym_R_DQUOTE] = ACTIONS(4512), + [anon_sym_LR_DQUOTE] = ACTIONS(4512), + [anon_sym_uR_DQUOTE] = ACTIONS(4512), + [anon_sym_UR_DQUOTE] = ACTIONS(4512), + [anon_sym_u8R_DQUOTE] = ACTIONS(4512), + [anon_sym_co_await] = ACTIONS(4510), + [anon_sym_new] = ACTIONS(4510), + [anon_sym_requires] = ACTIONS(4510), + [anon_sym_CARET_CARET] = ACTIONS(4512), + [anon_sym_LBRACK_COLON] = ACTIONS(4512), + [sym_this] = ACTIONS(4510), }, - [STATE(1053)] = { - [sym_expression] = STATE(4902), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(944)] = { + [ts_builtin_sym_end] = ACTIONS(3937), + [sym_identifier] = ACTIONS(3935), + [aux_sym_preproc_include_token1] = ACTIONS(3935), + [aux_sym_preproc_def_token1] = ACTIONS(3935), + [aux_sym_preproc_if_token1] = ACTIONS(3935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3935), + [sym_preproc_directive] = ACTIONS(3935), + [anon_sym_LPAREN2] = ACTIONS(3937), + [anon_sym_BANG] = ACTIONS(3937), + [anon_sym_TILDE] = ACTIONS(3937), + [anon_sym_DASH] = ACTIONS(3935), + [anon_sym_PLUS] = ACTIONS(3935), + [anon_sym_STAR] = ACTIONS(3937), + [anon_sym_AMP_AMP] = ACTIONS(3937), + [anon_sym_AMP] = ACTIONS(3935), + [anon_sym_SEMI] = ACTIONS(3937), + [anon_sym___extension__] = ACTIONS(3935), + [anon_sym_typedef] = ACTIONS(3935), + [anon_sym_virtual] = ACTIONS(3935), + [anon_sym_extern] = ACTIONS(3935), + [anon_sym___attribute__] = ACTIONS(3935), + [anon_sym___attribute] = ACTIONS(3935), + [anon_sym_using] = ACTIONS(3935), + [anon_sym_COLON_COLON] = ACTIONS(3937), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3937), + [anon_sym___declspec] = ACTIONS(3935), + [anon_sym___based] = ACTIONS(3935), + [anon_sym___cdecl] = ACTIONS(3935), + [anon_sym___clrcall] = ACTIONS(3935), + [anon_sym___stdcall] = ACTIONS(3935), + [anon_sym___fastcall] = ACTIONS(3935), + [anon_sym___thiscall] = ACTIONS(3935), + [anon_sym___vectorcall] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(3937), + [anon_sym_signed] = ACTIONS(3935), + [anon_sym_unsigned] = ACTIONS(3935), + [anon_sym_long] = ACTIONS(3935), + [anon_sym_short] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3935), + [anon_sym_static] = ACTIONS(3935), + [anon_sym_register] = ACTIONS(3935), + [anon_sym_inline] = ACTIONS(3935), + [anon_sym___inline] = ACTIONS(3935), + [anon_sym___inline__] = ACTIONS(3935), + [anon_sym___forceinline] = ACTIONS(3935), + [anon_sym_thread_local] = ACTIONS(3935), + [anon_sym___thread] = 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__Nonnull] = ACTIONS(3935), + [anon_sym_mutable] = ACTIONS(3935), + [anon_sym_constinit] = ACTIONS(3935), + [anon_sym_consteval] = ACTIONS(3935), + [anon_sym_alignas] = ACTIONS(3935), + [anon_sym__Alignas] = ACTIONS(3935), + [sym_primitive_type] = ACTIONS(3935), + [anon_sym_enum] = ACTIONS(3935), + [anon_sym_class] = ACTIONS(3935), + [anon_sym_struct] = ACTIONS(3935), + [anon_sym_union] = ACTIONS(3935), + [anon_sym_if] = ACTIONS(3935), + [anon_sym_switch] = ACTIONS(3935), + [anon_sym_case] = ACTIONS(3935), + [anon_sym_default] = ACTIONS(3935), + [anon_sym_while] = ACTIONS(3935), + [anon_sym_do] = ACTIONS(3935), + [anon_sym_for] = ACTIONS(3935), + [anon_sym_return] = ACTIONS(3935), + [anon_sym_break] = ACTIONS(3935), + [anon_sym_continue] = ACTIONS(3935), + [anon_sym_goto] = ACTIONS(3935), + [anon_sym_not] = ACTIONS(3935), + [anon_sym_compl] = ACTIONS(3935), + [anon_sym_DASH_DASH] = ACTIONS(3937), + [anon_sym_PLUS_PLUS] = ACTIONS(3937), + [anon_sym_sizeof] = ACTIONS(3935), + [anon_sym___alignof__] = ACTIONS(3935), + [anon_sym___alignof] = ACTIONS(3935), + [anon_sym__alignof] = ACTIONS(3935), + [anon_sym_alignof] = ACTIONS(3935), + [anon_sym__Alignof] = ACTIONS(3935), + [anon_sym_offsetof] = ACTIONS(3935), + [anon_sym__Generic] = ACTIONS(3935), + [anon_sym_typename] = ACTIONS(3935), + [anon_sym_asm] = ACTIONS(3935), + [anon_sym___asm__] = ACTIONS(3935), + [anon_sym___asm] = ACTIONS(3935), + [sym_number_literal] = ACTIONS(3937), + [anon_sym_L_SQUOTE] = ACTIONS(3937), + [anon_sym_u_SQUOTE] = ACTIONS(3937), + [anon_sym_U_SQUOTE] = ACTIONS(3937), + [anon_sym_u8_SQUOTE] = ACTIONS(3937), + [anon_sym_SQUOTE] = ACTIONS(3937), + [anon_sym_L_DQUOTE] = ACTIONS(3937), + [anon_sym_u_DQUOTE] = ACTIONS(3937), + [anon_sym_U_DQUOTE] = ACTIONS(3937), + [anon_sym_u8_DQUOTE] = ACTIONS(3937), + [anon_sym_DQUOTE] = ACTIONS(3937), + [sym_true] = ACTIONS(3935), + [sym_false] = ACTIONS(3935), + [anon_sym_NULL] = ACTIONS(3935), + [anon_sym_nullptr] = ACTIONS(3935), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3935), + [anon_sym_decltype] = ACTIONS(3935), + [anon_sym_explicit] = ACTIONS(3935), + [anon_sym_export] = ACTIONS(3935), + [anon_sym_module] = ACTIONS(3935), + [anon_sym_import] = ACTIONS(3935), + [anon_sym_template] = ACTIONS(3935), + [anon_sym_operator] = ACTIONS(3935), + [anon_sym_try] = ACTIONS(3935), + [anon_sym_delete] = ACTIONS(3935), + [anon_sym_throw] = ACTIONS(3935), + [anon_sym_namespace] = ACTIONS(3935), + [anon_sym_static_assert] = ACTIONS(3935), + [anon_sym_concept] = ACTIONS(3935), + [anon_sym_co_return] = ACTIONS(3935), + [anon_sym_co_yield] = ACTIONS(3935), + [anon_sym_R_DQUOTE] = ACTIONS(3937), + [anon_sym_LR_DQUOTE] = ACTIONS(3937), + [anon_sym_uR_DQUOTE] = ACTIONS(3937), + [anon_sym_UR_DQUOTE] = ACTIONS(3937), + [anon_sym_u8R_DQUOTE] = ACTIONS(3937), + [anon_sym_co_await] = ACTIONS(3935), + [anon_sym_new] = ACTIONS(3935), + [anon_sym_requires] = ACTIONS(3935), + [anon_sym_CARET_CARET] = ACTIONS(3937), + [anon_sym_LBRACK_COLON] = ACTIONS(3937), + [sym_this] = ACTIONS(3935), }, - [STATE(1054)] = { - [sym_expression] = STATE(4689), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(945)] = { + [ts_builtin_sym_end] = ACTIONS(4210), + [sym_identifier] = ACTIONS(4208), + [aux_sym_preproc_include_token1] = ACTIONS(4208), + [aux_sym_preproc_def_token1] = ACTIONS(4208), + [aux_sym_preproc_if_token1] = ACTIONS(4208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4208), + [sym_preproc_directive] = ACTIONS(4208), + [anon_sym_LPAREN2] = ACTIONS(4210), + [anon_sym_BANG] = ACTIONS(4210), + [anon_sym_TILDE] = ACTIONS(4210), + [anon_sym_DASH] = ACTIONS(4208), + [anon_sym_PLUS] = ACTIONS(4208), + [anon_sym_STAR] = ACTIONS(4210), + [anon_sym_AMP_AMP] = ACTIONS(4210), + [anon_sym_AMP] = ACTIONS(4208), + [anon_sym_SEMI] = ACTIONS(4210), + [anon_sym___extension__] = ACTIONS(4208), + [anon_sym_typedef] = ACTIONS(4208), + [anon_sym_virtual] = ACTIONS(4208), + [anon_sym_extern] = ACTIONS(4208), + [anon_sym___attribute__] = ACTIONS(4208), + [anon_sym___attribute] = ACTIONS(4208), + [anon_sym_using] = ACTIONS(4208), + [anon_sym_COLON_COLON] = ACTIONS(4210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4210), + [anon_sym___declspec] = ACTIONS(4208), + [anon_sym___based] = ACTIONS(4208), + [anon_sym___cdecl] = ACTIONS(4208), + [anon_sym___clrcall] = ACTIONS(4208), + [anon_sym___stdcall] = ACTIONS(4208), + [anon_sym___fastcall] = ACTIONS(4208), + [anon_sym___thiscall] = ACTIONS(4208), + [anon_sym___vectorcall] = ACTIONS(4208), + [anon_sym_LBRACE] = ACTIONS(4210), + [anon_sym_signed] = ACTIONS(4208), + [anon_sym_unsigned] = ACTIONS(4208), + [anon_sym_long] = ACTIONS(4208), + [anon_sym_short] = ACTIONS(4208), + [anon_sym_LBRACK] = ACTIONS(4208), + [anon_sym_static] = ACTIONS(4208), + [anon_sym_register] = ACTIONS(4208), + [anon_sym_inline] = ACTIONS(4208), + [anon_sym___inline] = ACTIONS(4208), + [anon_sym___inline__] = ACTIONS(4208), + [anon_sym___forceinline] = ACTIONS(4208), + [anon_sym_thread_local] = ACTIONS(4208), + [anon_sym___thread] = ACTIONS(4208), + [anon_sym_const] = ACTIONS(4208), + [anon_sym_constexpr] = ACTIONS(4208), + [anon_sym_volatile] = ACTIONS(4208), + [anon_sym_restrict] = ACTIONS(4208), + [anon_sym___restrict__] = ACTIONS(4208), + [anon_sym__Atomic] = ACTIONS(4208), + [anon_sym__Noreturn] = ACTIONS(4208), + [anon_sym_noreturn] = ACTIONS(4208), + [anon_sym__Nonnull] = ACTIONS(4208), + [anon_sym_mutable] = ACTIONS(4208), + [anon_sym_constinit] = ACTIONS(4208), + [anon_sym_consteval] = ACTIONS(4208), + [anon_sym_alignas] = ACTIONS(4208), + [anon_sym__Alignas] = ACTIONS(4208), + [sym_primitive_type] = ACTIONS(4208), + [anon_sym_enum] = ACTIONS(4208), + [anon_sym_class] = ACTIONS(4208), + [anon_sym_struct] = ACTIONS(4208), + [anon_sym_union] = ACTIONS(4208), + [anon_sym_if] = ACTIONS(4208), + [anon_sym_switch] = ACTIONS(4208), + [anon_sym_case] = ACTIONS(4208), + [anon_sym_default] = ACTIONS(4208), + [anon_sym_while] = ACTIONS(4208), + [anon_sym_do] = ACTIONS(4208), + [anon_sym_for] = ACTIONS(4208), + [anon_sym_return] = ACTIONS(4208), + [anon_sym_break] = ACTIONS(4208), + [anon_sym_continue] = ACTIONS(4208), + [anon_sym_goto] = ACTIONS(4208), + [anon_sym_not] = ACTIONS(4208), + [anon_sym_compl] = ACTIONS(4208), + [anon_sym_DASH_DASH] = ACTIONS(4210), + [anon_sym_PLUS_PLUS] = ACTIONS(4210), + [anon_sym_sizeof] = ACTIONS(4208), + [anon_sym___alignof__] = ACTIONS(4208), + [anon_sym___alignof] = ACTIONS(4208), + [anon_sym__alignof] = ACTIONS(4208), + [anon_sym_alignof] = ACTIONS(4208), + [anon_sym__Alignof] = ACTIONS(4208), + [anon_sym_offsetof] = ACTIONS(4208), + [anon_sym__Generic] = ACTIONS(4208), + [anon_sym_typename] = ACTIONS(4208), + [anon_sym_asm] = ACTIONS(4208), + [anon_sym___asm__] = ACTIONS(4208), + [anon_sym___asm] = ACTIONS(4208), + [sym_number_literal] = ACTIONS(4210), + [anon_sym_L_SQUOTE] = ACTIONS(4210), + [anon_sym_u_SQUOTE] = ACTIONS(4210), + [anon_sym_U_SQUOTE] = ACTIONS(4210), + [anon_sym_u8_SQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_L_DQUOTE] = ACTIONS(4210), + [anon_sym_u_DQUOTE] = ACTIONS(4210), + [anon_sym_U_DQUOTE] = ACTIONS(4210), + [anon_sym_u8_DQUOTE] = ACTIONS(4210), + [anon_sym_DQUOTE] = ACTIONS(4210), + [sym_true] = ACTIONS(4208), + [sym_false] = ACTIONS(4208), + [anon_sym_NULL] = ACTIONS(4208), + [anon_sym_nullptr] = ACTIONS(4208), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4208), + [anon_sym_decltype] = ACTIONS(4208), + [anon_sym_explicit] = ACTIONS(4208), + [anon_sym_export] = ACTIONS(4208), + [anon_sym_module] = ACTIONS(4208), + [anon_sym_import] = ACTIONS(4208), + [anon_sym_template] = ACTIONS(4208), + [anon_sym_operator] = ACTIONS(4208), + [anon_sym_try] = ACTIONS(4208), + [anon_sym_delete] = ACTIONS(4208), + [anon_sym_throw] = ACTIONS(4208), + [anon_sym_namespace] = ACTIONS(4208), + [anon_sym_static_assert] = ACTIONS(4208), + [anon_sym_concept] = ACTIONS(4208), + [anon_sym_co_return] = ACTIONS(4208), + [anon_sym_co_yield] = ACTIONS(4208), + [anon_sym_R_DQUOTE] = ACTIONS(4210), + [anon_sym_LR_DQUOTE] = ACTIONS(4210), + [anon_sym_uR_DQUOTE] = ACTIONS(4210), + [anon_sym_UR_DQUOTE] = ACTIONS(4210), + [anon_sym_u8R_DQUOTE] = ACTIONS(4210), + [anon_sym_co_await] = ACTIONS(4208), + [anon_sym_new] = ACTIONS(4208), + [anon_sym_requires] = ACTIONS(4208), + [anon_sym_CARET_CARET] = ACTIONS(4210), + [anon_sym_LBRACK_COLON] = ACTIONS(4210), + [sym_this] = ACTIONS(4208), }, - [STATE(1055)] = { - [sym_expression] = STATE(6512), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9807), - [sym_initializer_pair] = STATE(9807), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_COMMA] = ACTIONS(5364), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5366), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), + [STATE(946)] = { + [ts_builtin_sym_end] = ACTIONS(4214), + [sym_identifier] = ACTIONS(4212), + [aux_sym_preproc_include_token1] = ACTIONS(4212), + [aux_sym_preproc_def_token1] = ACTIONS(4212), + [aux_sym_preproc_if_token1] = ACTIONS(4212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4212), + [sym_preproc_directive] = ACTIONS(4212), + [anon_sym_LPAREN2] = ACTIONS(4214), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_TILDE] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4212), + [anon_sym_PLUS] = ACTIONS(4212), + [anon_sym_STAR] = ACTIONS(4214), + [anon_sym_AMP_AMP] = ACTIONS(4214), + [anon_sym_AMP] = ACTIONS(4212), + [anon_sym_SEMI] = ACTIONS(4214), + [anon_sym___extension__] = ACTIONS(4212), + [anon_sym_typedef] = ACTIONS(4212), + [anon_sym_virtual] = ACTIONS(4212), + [anon_sym_extern] = ACTIONS(4212), + [anon_sym___attribute__] = ACTIONS(4212), + [anon_sym___attribute] = ACTIONS(4212), + [anon_sym_using] = ACTIONS(4212), + [anon_sym_COLON_COLON] = ACTIONS(4214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4214), + [anon_sym___declspec] = ACTIONS(4212), + [anon_sym___based] = ACTIONS(4212), + [anon_sym___cdecl] = ACTIONS(4212), + [anon_sym___clrcall] = ACTIONS(4212), + [anon_sym___stdcall] = ACTIONS(4212), + [anon_sym___fastcall] = ACTIONS(4212), + [anon_sym___thiscall] = ACTIONS(4212), + [anon_sym___vectorcall] = ACTIONS(4212), + [anon_sym_LBRACE] = ACTIONS(4214), + [anon_sym_signed] = ACTIONS(4212), + [anon_sym_unsigned] = ACTIONS(4212), + [anon_sym_long] = ACTIONS(4212), + [anon_sym_short] = ACTIONS(4212), + [anon_sym_LBRACK] = ACTIONS(4212), + [anon_sym_static] = ACTIONS(4212), + [anon_sym_register] = ACTIONS(4212), + [anon_sym_inline] = ACTIONS(4212), + [anon_sym___inline] = ACTIONS(4212), + [anon_sym___inline__] = ACTIONS(4212), + [anon_sym___forceinline] = ACTIONS(4212), + [anon_sym_thread_local] = ACTIONS(4212), + [anon_sym___thread] = ACTIONS(4212), + [anon_sym_const] = ACTIONS(4212), + [anon_sym_constexpr] = ACTIONS(4212), + [anon_sym_volatile] = ACTIONS(4212), + [anon_sym_restrict] = ACTIONS(4212), + [anon_sym___restrict__] = ACTIONS(4212), + [anon_sym__Atomic] = ACTIONS(4212), + [anon_sym__Noreturn] = ACTIONS(4212), + [anon_sym_noreturn] = ACTIONS(4212), + [anon_sym__Nonnull] = ACTIONS(4212), + [anon_sym_mutable] = ACTIONS(4212), + [anon_sym_constinit] = ACTIONS(4212), + [anon_sym_consteval] = ACTIONS(4212), + [anon_sym_alignas] = ACTIONS(4212), + [anon_sym__Alignas] = ACTIONS(4212), + [sym_primitive_type] = ACTIONS(4212), + [anon_sym_enum] = ACTIONS(4212), + [anon_sym_class] = ACTIONS(4212), + [anon_sym_struct] = ACTIONS(4212), + [anon_sym_union] = ACTIONS(4212), + [anon_sym_if] = ACTIONS(4212), + [anon_sym_switch] = ACTIONS(4212), + [anon_sym_case] = ACTIONS(4212), + [anon_sym_default] = ACTIONS(4212), + [anon_sym_while] = ACTIONS(4212), + [anon_sym_do] = ACTIONS(4212), + [anon_sym_for] = ACTIONS(4212), + [anon_sym_return] = ACTIONS(4212), + [anon_sym_break] = ACTIONS(4212), + [anon_sym_continue] = ACTIONS(4212), + [anon_sym_goto] = ACTIONS(4212), + [anon_sym_not] = ACTIONS(4212), + [anon_sym_compl] = ACTIONS(4212), + [anon_sym_DASH_DASH] = ACTIONS(4214), + [anon_sym_PLUS_PLUS] = ACTIONS(4214), + [anon_sym_sizeof] = ACTIONS(4212), + [anon_sym___alignof__] = ACTIONS(4212), + [anon_sym___alignof] = ACTIONS(4212), + [anon_sym__alignof] = ACTIONS(4212), + [anon_sym_alignof] = ACTIONS(4212), + [anon_sym__Alignof] = ACTIONS(4212), + [anon_sym_offsetof] = ACTIONS(4212), + [anon_sym__Generic] = ACTIONS(4212), + [anon_sym_typename] = ACTIONS(4212), + [anon_sym_asm] = ACTIONS(4212), + [anon_sym___asm__] = ACTIONS(4212), + [anon_sym___asm] = ACTIONS(4212), + [sym_number_literal] = ACTIONS(4214), + [anon_sym_L_SQUOTE] = ACTIONS(4214), + [anon_sym_u_SQUOTE] = ACTIONS(4214), + [anon_sym_U_SQUOTE] = ACTIONS(4214), + [anon_sym_u8_SQUOTE] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4214), + [anon_sym_L_DQUOTE] = ACTIONS(4214), + [anon_sym_u_DQUOTE] = ACTIONS(4214), + [anon_sym_U_DQUOTE] = ACTIONS(4214), + [anon_sym_u8_DQUOTE] = ACTIONS(4214), + [anon_sym_DQUOTE] = ACTIONS(4214), + [sym_true] = ACTIONS(4212), + [sym_false] = ACTIONS(4212), + [anon_sym_NULL] = ACTIONS(4212), + [anon_sym_nullptr] = ACTIONS(4212), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4212), + [anon_sym_decltype] = ACTIONS(4212), + [anon_sym_explicit] = ACTIONS(4212), + [anon_sym_export] = ACTIONS(4212), + [anon_sym_module] = ACTIONS(4212), + [anon_sym_import] = ACTIONS(4212), + [anon_sym_template] = ACTIONS(4212), + [anon_sym_operator] = ACTIONS(4212), + [anon_sym_try] = ACTIONS(4212), + [anon_sym_delete] = ACTIONS(4212), + [anon_sym_throw] = ACTIONS(4212), + [anon_sym_namespace] = ACTIONS(4212), + [anon_sym_static_assert] = ACTIONS(4212), + [anon_sym_concept] = ACTIONS(4212), + [anon_sym_co_return] = ACTIONS(4212), + [anon_sym_co_yield] = ACTIONS(4212), + [anon_sym_R_DQUOTE] = ACTIONS(4214), + [anon_sym_LR_DQUOTE] = ACTIONS(4214), + [anon_sym_uR_DQUOTE] = ACTIONS(4214), + [anon_sym_UR_DQUOTE] = ACTIONS(4214), + [anon_sym_u8R_DQUOTE] = ACTIONS(4214), + [anon_sym_co_await] = ACTIONS(4212), + [anon_sym_new] = ACTIONS(4212), + [anon_sym_requires] = ACTIONS(4212), + [anon_sym_CARET_CARET] = ACTIONS(4214), + [anon_sym_LBRACK_COLON] = ACTIONS(4214), + [sym_this] = ACTIONS(4212), + }, + [STATE(947)] = { + [sym_preproc_def] = STATE(948), + [sym_preproc_function_def] = STATE(948), + [sym_preproc_call] = STATE(948), + [sym_preproc_if_in_field_declaration_list] = STATE(948), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(948), + [sym_type_definition] = STATE(948), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8092), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(948), + [sym_field_declaration] = STATE(948), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(948), + [sym_operator_cast] = STATE(9211), + [sym_inline_method_definition] = STATE(948), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(948), + [sym_operator_cast_declaration] = STATE(948), + [sym_constructor_or_destructor_definition] = STATE(948), + [sym_constructor_or_destructor_declaration] = STATE(948), + [sym_friend_declaration] = STATE(948), + [sym_access_specifier] = STATE(11030), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(948), + [sym_alias_declaration] = STATE(948), + [sym_static_assert_declaration] = STATE(948), + [sym_consteval_block_declaration] = STATE(948), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(948), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9455), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(4686), + [aux_sym_preproc_if_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), + [sym_preproc_directive] = ACTIONS(4692), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(4795), + [anon_sym___extension__] = ACTIONS(4696), + [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4700), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4797), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4704), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(4708), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(4712), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(1056)] = { - [sym_expression] = STATE(6432), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), + [STATE(948)] = { + [sym_preproc_def] = STATE(884), + [sym_preproc_function_def] = STATE(884), + [sym_preproc_call] = STATE(884), + [sym_preproc_if_in_field_declaration_list] = STATE(884), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(884), + [sym_type_definition] = STATE(884), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8092), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(884), + [sym_field_declaration] = STATE(884), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(884), + [sym_operator_cast] = STATE(9211), + [sym_inline_method_definition] = STATE(884), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(884), + [sym_operator_cast_declaration] = STATE(884), + [sym_constructor_or_destructor_definition] = STATE(884), + [sym_constructor_or_destructor_declaration] = STATE(884), + [sym_friend_declaration] = STATE(884), + [sym_access_specifier] = STATE(11030), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(884), + [sym_alias_declaration] = STATE(884), + [sym_static_assert_declaration] = STATE(884), + [sym_consteval_block_declaration] = STATE(884), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9455), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(4686), + [aux_sym_preproc_if_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), + [sym_preproc_directive] = ACTIONS(4692), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(4714), + [anon_sym___extension__] = ACTIONS(4696), + [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4700), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4799), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4704), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(4708), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(4712), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(1057)] = { - [sym_expression] = STATE(6548), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9881), - [sym_initializer_pair] = STATE(9881), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_COMMA] = ACTIONS(5368), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5370), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), + [STATE(949)] = { + [sym_preproc_def] = STATE(989), + [sym_preproc_function_def] = STATE(989), + [sym_preproc_call] = STATE(989), + [sym_preproc_if_in_field_declaration_list] = STATE(989), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(989), + [sym_type_definition] = STATE(989), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8099), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8689), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(989), + [sym_field_declaration] = STATE(989), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2469), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(989), + [sym_operator_cast] = STATE(9167), + [sym_inline_method_definition] = STATE(989), + [sym__constructor_specifiers] = STATE(2469), + [sym_operator_cast_definition] = STATE(989), + [sym_operator_cast_declaration] = STATE(989), + [sym_constructor_or_destructor_definition] = STATE(989), + [sym_constructor_or_destructor_declaration] = STATE(989), + [sym_friend_declaration] = STATE(989), + [sym_access_specifier] = STATE(10982), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(989), + [sym_alias_declaration] = STATE(989), + [sym_static_assert_declaration] = STATE(989), + [sym_consteval_block_declaration] = STATE(989), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9167), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(989), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9503), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2469), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(4801), + [aux_sym_preproc_if_token1] = ACTIONS(4803), + [aux_sym_preproc_if_token2] = ACTIONS(4805), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4807), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4807), + [sym_preproc_directive] = ACTIONS(4809), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym___extension__] = ACTIONS(4813), + [anon_sym_typedef] = ACTIONS(4815), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4817), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4819), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4821), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(4823), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4825), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(4827), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(1058)] = { - [sym_expression] = STATE(6766), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), + [STATE(950)] = { + [sym_identifier] = ACTIONS(4530), + [aux_sym_preproc_include_token1] = ACTIONS(4530), + [aux_sym_preproc_def_token1] = ACTIONS(4530), + [aux_sym_preproc_if_token1] = ACTIONS(4530), + [aux_sym_preproc_if_token2] = ACTIONS(4530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4530), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4530), + [sym_preproc_directive] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(4532), + [anon_sym_BANG] = ACTIONS(4532), + [anon_sym_TILDE] = ACTIONS(4532), + [anon_sym_DASH] = ACTIONS(4530), + [anon_sym_PLUS] = ACTIONS(4530), + [anon_sym_STAR] = ACTIONS(4532), + [anon_sym_AMP_AMP] = ACTIONS(4532), + [anon_sym_AMP] = ACTIONS(4530), + [anon_sym_SEMI] = ACTIONS(4532), + [anon_sym___extension__] = ACTIONS(4530), + [anon_sym_typedef] = ACTIONS(4530), + [anon_sym_virtual] = ACTIONS(4530), + [anon_sym_extern] = ACTIONS(4530), + [anon_sym___attribute__] = ACTIONS(4530), + [anon_sym___attribute] = ACTIONS(4530), + [anon_sym_using] = ACTIONS(4530), + [anon_sym_COLON_COLON] = ACTIONS(4532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4532), + [anon_sym___declspec] = ACTIONS(4530), + [anon_sym___based] = ACTIONS(4530), + [anon_sym___cdecl] = ACTIONS(4530), + [anon_sym___clrcall] = ACTIONS(4530), + [anon_sym___stdcall] = ACTIONS(4530), + [anon_sym___fastcall] = ACTIONS(4530), + [anon_sym___thiscall] = ACTIONS(4530), + [anon_sym___vectorcall] = ACTIONS(4530), + [anon_sym_LBRACE] = ACTIONS(4532), + [anon_sym_signed] = ACTIONS(4530), + [anon_sym_unsigned] = ACTIONS(4530), + [anon_sym_long] = ACTIONS(4530), + [anon_sym_short] = ACTIONS(4530), + [anon_sym_LBRACK] = ACTIONS(4530), + [anon_sym_static] = ACTIONS(4530), + [anon_sym_register] = ACTIONS(4530), + [anon_sym_inline] = ACTIONS(4530), + [anon_sym___inline] = ACTIONS(4530), + [anon_sym___inline__] = ACTIONS(4530), + [anon_sym___forceinline] = ACTIONS(4530), + [anon_sym_thread_local] = ACTIONS(4530), + [anon_sym___thread] = ACTIONS(4530), + [anon_sym_const] = ACTIONS(4530), + [anon_sym_constexpr] = ACTIONS(4530), + [anon_sym_volatile] = ACTIONS(4530), + [anon_sym_restrict] = ACTIONS(4530), + [anon_sym___restrict__] = ACTIONS(4530), + [anon_sym__Atomic] = ACTIONS(4530), + [anon_sym__Noreturn] = ACTIONS(4530), + [anon_sym_noreturn] = ACTIONS(4530), + [anon_sym__Nonnull] = ACTIONS(4530), + [anon_sym_mutable] = ACTIONS(4530), + [anon_sym_constinit] = ACTIONS(4530), + [anon_sym_consteval] = ACTIONS(4530), + [anon_sym_alignas] = ACTIONS(4530), + [anon_sym__Alignas] = ACTIONS(4530), + [sym_primitive_type] = ACTIONS(4530), + [anon_sym_enum] = ACTIONS(4530), + [anon_sym_class] = ACTIONS(4530), + [anon_sym_struct] = ACTIONS(4530), + [anon_sym_union] = ACTIONS(4530), + [anon_sym_if] = ACTIONS(4530), + [anon_sym_switch] = ACTIONS(4530), + [anon_sym_case] = ACTIONS(4530), + [anon_sym_default] = ACTIONS(4530), + [anon_sym_while] = ACTIONS(4530), + [anon_sym_do] = ACTIONS(4530), + [anon_sym_for] = ACTIONS(4530), + [anon_sym_return] = ACTIONS(4530), + [anon_sym_break] = ACTIONS(4530), + [anon_sym_continue] = ACTIONS(4530), + [anon_sym_goto] = ACTIONS(4530), + [anon_sym_not] = ACTIONS(4530), + [anon_sym_compl] = ACTIONS(4530), + [anon_sym_DASH_DASH] = ACTIONS(4532), + [anon_sym_PLUS_PLUS] = ACTIONS(4532), + [anon_sym_sizeof] = ACTIONS(4530), + [anon_sym___alignof__] = ACTIONS(4530), + [anon_sym___alignof] = ACTIONS(4530), + [anon_sym__alignof] = ACTIONS(4530), + [anon_sym_alignof] = ACTIONS(4530), + [anon_sym__Alignof] = ACTIONS(4530), + [anon_sym_offsetof] = ACTIONS(4530), + [anon_sym__Generic] = ACTIONS(4530), + [anon_sym_typename] = ACTIONS(4530), + [anon_sym_asm] = ACTIONS(4530), + [anon_sym___asm__] = ACTIONS(4530), + [anon_sym___asm] = ACTIONS(4530), + [sym_number_literal] = ACTIONS(4532), + [anon_sym_L_SQUOTE] = ACTIONS(4532), + [anon_sym_u_SQUOTE] = ACTIONS(4532), + [anon_sym_U_SQUOTE] = ACTIONS(4532), + [anon_sym_u8_SQUOTE] = ACTIONS(4532), + [anon_sym_SQUOTE] = ACTIONS(4532), + [anon_sym_L_DQUOTE] = ACTIONS(4532), + [anon_sym_u_DQUOTE] = ACTIONS(4532), + [anon_sym_U_DQUOTE] = ACTIONS(4532), + [anon_sym_u8_DQUOTE] = ACTIONS(4532), + [anon_sym_DQUOTE] = ACTIONS(4532), + [sym_true] = ACTIONS(4530), + [sym_false] = ACTIONS(4530), + [anon_sym_NULL] = ACTIONS(4530), + [anon_sym_nullptr] = ACTIONS(4530), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4530), + [anon_sym_decltype] = ACTIONS(4530), + [anon_sym_explicit] = ACTIONS(4530), + [anon_sym_export] = ACTIONS(4530), + [anon_sym_module] = ACTIONS(4530), + [anon_sym_import] = ACTIONS(4530), + [anon_sym_template] = ACTIONS(4530), + [anon_sym_operator] = ACTIONS(4530), + [anon_sym_try] = ACTIONS(4530), + [anon_sym_delete] = ACTIONS(4530), + [anon_sym_throw] = ACTIONS(4530), + [anon_sym_namespace] = ACTIONS(4530), + [anon_sym_static_assert] = ACTIONS(4530), + [anon_sym_concept] = ACTIONS(4530), + [anon_sym_co_return] = ACTIONS(4530), + [anon_sym_co_yield] = ACTIONS(4530), + [anon_sym_R_DQUOTE] = ACTIONS(4532), + [anon_sym_LR_DQUOTE] = ACTIONS(4532), + [anon_sym_uR_DQUOTE] = ACTIONS(4532), + [anon_sym_UR_DQUOTE] = ACTIONS(4532), + [anon_sym_u8R_DQUOTE] = ACTIONS(4532), + [anon_sym_co_await] = ACTIONS(4530), + [anon_sym_new] = ACTIONS(4530), + [anon_sym_requires] = ACTIONS(4530), + [anon_sym_CARET_CARET] = ACTIONS(4532), + [anon_sym_LBRACK_COLON] = ACTIONS(4532), + [sym_this] = ACTIONS(4530), }, - [STATE(1059)] = { - [sym_expression] = STATE(6748), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), + [STATE(951)] = { + [sym_identifier] = ACTIONS(4534), + [aux_sym_preproc_include_token1] = ACTIONS(4534), + [aux_sym_preproc_def_token1] = ACTIONS(4534), + [aux_sym_preproc_if_token1] = ACTIONS(4534), + [aux_sym_preproc_if_token2] = ACTIONS(4534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4534), + [sym_preproc_directive] = ACTIONS(4534), + [anon_sym_LPAREN2] = ACTIONS(4536), + [anon_sym_BANG] = ACTIONS(4536), + [anon_sym_TILDE] = ACTIONS(4536), + [anon_sym_DASH] = ACTIONS(4534), + [anon_sym_PLUS] = ACTIONS(4534), + [anon_sym_STAR] = ACTIONS(4536), + [anon_sym_AMP_AMP] = ACTIONS(4536), + [anon_sym_AMP] = ACTIONS(4534), + [anon_sym_SEMI] = ACTIONS(4536), + [anon_sym___extension__] = ACTIONS(4534), + [anon_sym_typedef] = ACTIONS(4534), + [anon_sym_virtual] = ACTIONS(4534), + [anon_sym_extern] = ACTIONS(4534), + [anon_sym___attribute__] = ACTIONS(4534), + [anon_sym___attribute] = ACTIONS(4534), + [anon_sym_using] = ACTIONS(4534), + [anon_sym_COLON_COLON] = ACTIONS(4536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4536), + [anon_sym___declspec] = ACTIONS(4534), + [anon_sym___based] = ACTIONS(4534), + [anon_sym___cdecl] = ACTIONS(4534), + [anon_sym___clrcall] = ACTIONS(4534), + [anon_sym___stdcall] = ACTIONS(4534), + [anon_sym___fastcall] = ACTIONS(4534), + [anon_sym___thiscall] = ACTIONS(4534), + [anon_sym___vectorcall] = ACTIONS(4534), + [anon_sym_LBRACE] = ACTIONS(4536), + [anon_sym_signed] = ACTIONS(4534), + [anon_sym_unsigned] = ACTIONS(4534), + [anon_sym_long] = ACTIONS(4534), + [anon_sym_short] = ACTIONS(4534), + [anon_sym_LBRACK] = ACTIONS(4534), + [anon_sym_static] = ACTIONS(4534), + [anon_sym_register] = ACTIONS(4534), + [anon_sym_inline] = ACTIONS(4534), + [anon_sym___inline] = ACTIONS(4534), + [anon_sym___inline__] = ACTIONS(4534), + [anon_sym___forceinline] = ACTIONS(4534), + [anon_sym_thread_local] = ACTIONS(4534), + [anon_sym___thread] = ACTIONS(4534), + [anon_sym_const] = ACTIONS(4534), + [anon_sym_constexpr] = ACTIONS(4534), + [anon_sym_volatile] = ACTIONS(4534), + [anon_sym_restrict] = ACTIONS(4534), + [anon_sym___restrict__] = ACTIONS(4534), + [anon_sym__Atomic] = ACTIONS(4534), + [anon_sym__Noreturn] = ACTIONS(4534), + [anon_sym_noreturn] = ACTIONS(4534), + [anon_sym__Nonnull] = ACTIONS(4534), + [anon_sym_mutable] = ACTIONS(4534), + [anon_sym_constinit] = ACTIONS(4534), + [anon_sym_consteval] = ACTIONS(4534), + [anon_sym_alignas] = ACTIONS(4534), + [anon_sym__Alignas] = ACTIONS(4534), + [sym_primitive_type] = ACTIONS(4534), + [anon_sym_enum] = ACTIONS(4534), + [anon_sym_class] = ACTIONS(4534), + [anon_sym_struct] = ACTIONS(4534), + [anon_sym_union] = ACTIONS(4534), + [anon_sym_if] = ACTIONS(4534), + [anon_sym_switch] = ACTIONS(4534), + [anon_sym_case] = ACTIONS(4534), + [anon_sym_default] = ACTIONS(4534), + [anon_sym_while] = ACTIONS(4534), + [anon_sym_do] = ACTIONS(4534), + [anon_sym_for] = ACTIONS(4534), + [anon_sym_return] = ACTIONS(4534), + [anon_sym_break] = ACTIONS(4534), + [anon_sym_continue] = ACTIONS(4534), + [anon_sym_goto] = ACTIONS(4534), + [anon_sym_not] = ACTIONS(4534), + [anon_sym_compl] = ACTIONS(4534), + [anon_sym_DASH_DASH] = ACTIONS(4536), + [anon_sym_PLUS_PLUS] = ACTIONS(4536), + [anon_sym_sizeof] = ACTIONS(4534), + [anon_sym___alignof__] = ACTIONS(4534), + [anon_sym___alignof] = ACTIONS(4534), + [anon_sym__alignof] = ACTIONS(4534), + [anon_sym_alignof] = ACTIONS(4534), + [anon_sym__Alignof] = ACTIONS(4534), + [anon_sym_offsetof] = ACTIONS(4534), + [anon_sym__Generic] = ACTIONS(4534), + [anon_sym_typename] = ACTIONS(4534), + [anon_sym_asm] = ACTIONS(4534), + [anon_sym___asm__] = ACTIONS(4534), + [anon_sym___asm] = ACTIONS(4534), + [sym_number_literal] = ACTIONS(4536), + [anon_sym_L_SQUOTE] = ACTIONS(4536), + [anon_sym_u_SQUOTE] = ACTIONS(4536), + [anon_sym_U_SQUOTE] = ACTIONS(4536), + [anon_sym_u8_SQUOTE] = ACTIONS(4536), + [anon_sym_SQUOTE] = ACTIONS(4536), + [anon_sym_L_DQUOTE] = ACTIONS(4536), + [anon_sym_u_DQUOTE] = ACTIONS(4536), + [anon_sym_U_DQUOTE] = ACTIONS(4536), + [anon_sym_u8_DQUOTE] = ACTIONS(4536), + [anon_sym_DQUOTE] = ACTIONS(4536), + [sym_true] = ACTIONS(4534), + [sym_false] = ACTIONS(4534), + [anon_sym_NULL] = ACTIONS(4534), + [anon_sym_nullptr] = ACTIONS(4534), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4534), + [anon_sym_decltype] = ACTIONS(4534), + [anon_sym_explicit] = ACTIONS(4534), + [anon_sym_export] = ACTIONS(4534), + [anon_sym_module] = ACTIONS(4534), + [anon_sym_import] = ACTIONS(4534), + [anon_sym_template] = ACTIONS(4534), + [anon_sym_operator] = ACTIONS(4534), + [anon_sym_try] = ACTIONS(4534), + [anon_sym_delete] = ACTIONS(4534), + [anon_sym_throw] = ACTIONS(4534), + [anon_sym_namespace] = ACTIONS(4534), + [anon_sym_static_assert] = ACTIONS(4534), + [anon_sym_concept] = ACTIONS(4534), + [anon_sym_co_return] = ACTIONS(4534), + [anon_sym_co_yield] = ACTIONS(4534), + [anon_sym_R_DQUOTE] = ACTIONS(4536), + [anon_sym_LR_DQUOTE] = ACTIONS(4536), + [anon_sym_uR_DQUOTE] = ACTIONS(4536), + [anon_sym_UR_DQUOTE] = ACTIONS(4536), + [anon_sym_u8R_DQUOTE] = ACTIONS(4536), + [anon_sym_co_await] = ACTIONS(4534), + [anon_sym_new] = ACTIONS(4534), + [anon_sym_requires] = ACTIONS(4534), + [anon_sym_CARET_CARET] = ACTIONS(4536), + [anon_sym_LBRACK_COLON] = ACTIONS(4536), + [sym_this] = ACTIONS(4534), + }, + [STATE(952)] = { + [sym_preproc_def] = STATE(954), + [sym_preproc_function_def] = STATE(954), + [sym_preproc_call] = STATE(954), + [sym_preproc_if_in_field_declaration_list] = STATE(954), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(954), + [sym_type_definition] = STATE(954), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8092), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(954), + [sym_field_declaration] = STATE(954), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(954), + [sym_operator_cast] = STATE(9211), + [sym_inline_method_definition] = STATE(954), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(954), + [sym_operator_cast_declaration] = STATE(954), + [sym_constructor_or_destructor_definition] = STATE(954), + [sym_constructor_or_destructor_declaration] = STATE(954), + [sym_friend_declaration] = STATE(954), + [sym_access_specifier] = STATE(11030), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(954), + [sym_alias_declaration] = STATE(954), + [sym_static_assert_declaration] = STATE(954), + [sym_consteval_block_declaration] = STATE(954), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(954), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9455), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(4686), + [aux_sym_preproc_if_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), + [sym_preproc_directive] = ACTIONS(4692), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym___extension__] = ACTIONS(4696), + [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4700), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4831), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4704), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(4708), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(4712), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(1060)] = { - [sym_expression] = STATE(6750), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), + [STATE(953)] = { + [sym_identifier] = ACTIONS(4538), + [aux_sym_preproc_include_token1] = ACTIONS(4538), + [aux_sym_preproc_def_token1] = ACTIONS(4538), + [aux_sym_preproc_if_token1] = ACTIONS(4538), + [aux_sym_preproc_if_token2] = ACTIONS(4538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4538), + [sym_preproc_directive] = ACTIONS(4538), + [anon_sym_LPAREN2] = ACTIONS(4540), + [anon_sym_BANG] = ACTIONS(4540), + [anon_sym_TILDE] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4538), + [anon_sym_PLUS] = ACTIONS(4538), + [anon_sym_STAR] = ACTIONS(4540), + [anon_sym_AMP_AMP] = ACTIONS(4540), + [anon_sym_AMP] = ACTIONS(4538), + [anon_sym_SEMI] = ACTIONS(4540), + [anon_sym___extension__] = ACTIONS(4538), + [anon_sym_typedef] = ACTIONS(4538), + [anon_sym_virtual] = ACTIONS(4538), + [anon_sym_extern] = ACTIONS(4538), + [anon_sym___attribute__] = ACTIONS(4538), + [anon_sym___attribute] = ACTIONS(4538), + [anon_sym_using] = ACTIONS(4538), + [anon_sym_COLON_COLON] = ACTIONS(4540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4540), + [anon_sym___declspec] = ACTIONS(4538), + [anon_sym___based] = ACTIONS(4538), + [anon_sym___cdecl] = ACTIONS(4538), + [anon_sym___clrcall] = ACTIONS(4538), + [anon_sym___stdcall] = ACTIONS(4538), + [anon_sym___fastcall] = ACTIONS(4538), + [anon_sym___thiscall] = ACTIONS(4538), + [anon_sym___vectorcall] = ACTIONS(4538), + [anon_sym_LBRACE] = ACTIONS(4540), + [anon_sym_signed] = ACTIONS(4538), + [anon_sym_unsigned] = ACTIONS(4538), + [anon_sym_long] = ACTIONS(4538), + [anon_sym_short] = ACTIONS(4538), + [anon_sym_LBRACK] = ACTIONS(4538), + [anon_sym_static] = ACTIONS(4538), + [anon_sym_register] = ACTIONS(4538), + [anon_sym_inline] = ACTIONS(4538), + [anon_sym___inline] = ACTIONS(4538), + [anon_sym___inline__] = ACTIONS(4538), + [anon_sym___forceinline] = ACTIONS(4538), + [anon_sym_thread_local] = ACTIONS(4538), + [anon_sym___thread] = ACTIONS(4538), + [anon_sym_const] = ACTIONS(4538), + [anon_sym_constexpr] = ACTIONS(4538), + [anon_sym_volatile] = ACTIONS(4538), + [anon_sym_restrict] = ACTIONS(4538), + [anon_sym___restrict__] = ACTIONS(4538), + [anon_sym__Atomic] = ACTIONS(4538), + [anon_sym__Noreturn] = ACTIONS(4538), + [anon_sym_noreturn] = ACTIONS(4538), + [anon_sym__Nonnull] = ACTIONS(4538), + [anon_sym_mutable] = ACTIONS(4538), + [anon_sym_constinit] = ACTIONS(4538), + [anon_sym_consteval] = ACTIONS(4538), + [anon_sym_alignas] = ACTIONS(4538), + [anon_sym__Alignas] = ACTIONS(4538), + [sym_primitive_type] = ACTIONS(4538), + [anon_sym_enum] = ACTIONS(4538), + [anon_sym_class] = ACTIONS(4538), + [anon_sym_struct] = ACTIONS(4538), + [anon_sym_union] = ACTIONS(4538), + [anon_sym_if] = ACTIONS(4538), + [anon_sym_switch] = ACTIONS(4538), + [anon_sym_case] = ACTIONS(4538), + [anon_sym_default] = ACTIONS(4538), + [anon_sym_while] = ACTIONS(4538), + [anon_sym_do] = ACTIONS(4538), + [anon_sym_for] = ACTIONS(4538), + [anon_sym_return] = ACTIONS(4538), + [anon_sym_break] = ACTIONS(4538), + [anon_sym_continue] = ACTIONS(4538), + [anon_sym_goto] = ACTIONS(4538), + [anon_sym_not] = ACTIONS(4538), + [anon_sym_compl] = ACTIONS(4538), + [anon_sym_DASH_DASH] = ACTIONS(4540), + [anon_sym_PLUS_PLUS] = ACTIONS(4540), + [anon_sym_sizeof] = ACTIONS(4538), + [anon_sym___alignof__] = ACTIONS(4538), + [anon_sym___alignof] = ACTIONS(4538), + [anon_sym__alignof] = ACTIONS(4538), + [anon_sym_alignof] = ACTIONS(4538), + [anon_sym__Alignof] = ACTIONS(4538), + [anon_sym_offsetof] = ACTIONS(4538), + [anon_sym__Generic] = ACTIONS(4538), + [anon_sym_typename] = ACTIONS(4538), + [anon_sym_asm] = ACTIONS(4538), + [anon_sym___asm__] = ACTIONS(4538), + [anon_sym___asm] = ACTIONS(4538), + [sym_number_literal] = ACTIONS(4540), + [anon_sym_L_SQUOTE] = ACTIONS(4540), + [anon_sym_u_SQUOTE] = ACTIONS(4540), + [anon_sym_U_SQUOTE] = ACTIONS(4540), + [anon_sym_u8_SQUOTE] = ACTIONS(4540), + [anon_sym_SQUOTE] = ACTIONS(4540), + [anon_sym_L_DQUOTE] = ACTIONS(4540), + [anon_sym_u_DQUOTE] = ACTIONS(4540), + [anon_sym_U_DQUOTE] = ACTIONS(4540), + [anon_sym_u8_DQUOTE] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(4540), + [sym_true] = ACTIONS(4538), + [sym_false] = ACTIONS(4538), + [anon_sym_NULL] = ACTIONS(4538), + [anon_sym_nullptr] = ACTIONS(4538), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4538), + [anon_sym_decltype] = ACTIONS(4538), + [anon_sym_explicit] = ACTIONS(4538), + [anon_sym_export] = ACTIONS(4538), + [anon_sym_module] = ACTIONS(4538), + [anon_sym_import] = ACTIONS(4538), + [anon_sym_template] = ACTIONS(4538), + [anon_sym_operator] = ACTIONS(4538), + [anon_sym_try] = ACTIONS(4538), + [anon_sym_delete] = ACTIONS(4538), + [anon_sym_throw] = ACTIONS(4538), + [anon_sym_namespace] = ACTIONS(4538), + [anon_sym_static_assert] = ACTIONS(4538), + [anon_sym_concept] = ACTIONS(4538), + [anon_sym_co_return] = ACTIONS(4538), + [anon_sym_co_yield] = ACTIONS(4538), + [anon_sym_R_DQUOTE] = ACTIONS(4540), + [anon_sym_LR_DQUOTE] = ACTIONS(4540), + [anon_sym_uR_DQUOTE] = ACTIONS(4540), + [anon_sym_UR_DQUOTE] = ACTIONS(4540), + [anon_sym_u8R_DQUOTE] = ACTIONS(4540), + [anon_sym_co_await] = ACTIONS(4538), + [anon_sym_new] = ACTIONS(4538), + [anon_sym_requires] = ACTIONS(4538), + [anon_sym_CARET_CARET] = ACTIONS(4540), + [anon_sym_LBRACK_COLON] = ACTIONS(4540), + [sym_this] = ACTIONS(4538), + }, + [STATE(954)] = { + [sym_preproc_def] = STATE(884), + [sym_preproc_function_def] = STATE(884), + [sym_preproc_call] = STATE(884), + [sym_preproc_if_in_field_declaration_list] = STATE(884), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(884), + [sym_type_definition] = STATE(884), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8092), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(884), + [sym_field_declaration] = STATE(884), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(884), + [sym_operator_cast] = STATE(9211), + [sym_inline_method_definition] = STATE(884), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(884), + [sym_operator_cast_declaration] = STATE(884), + [sym_constructor_or_destructor_definition] = STATE(884), + [sym_constructor_or_destructor_declaration] = STATE(884), + [sym_friend_declaration] = STATE(884), + [sym_access_specifier] = STATE(11030), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(884), + [sym_alias_declaration] = STATE(884), + [sym_static_assert_declaration] = STATE(884), + [sym_consteval_block_declaration] = STATE(884), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9455), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(4686), + [aux_sym_preproc_if_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), + [sym_preproc_directive] = ACTIONS(4692), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(4714), + [anon_sym___extension__] = ACTIONS(4696), + [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4700), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4833), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4704), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(4708), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(4712), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(1061)] = { - [sym_expression] = STATE(5409), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(955)] = { + [sym_preproc_def] = STATE(956), + [sym_preproc_function_def] = STATE(956), + [sym_preproc_call] = STATE(956), + [sym_preproc_if_in_field_declaration_list] = STATE(956), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(956), + [sym_type_definition] = STATE(956), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8092), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(956), + [sym_field_declaration] = STATE(956), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(956), + [sym_operator_cast] = STATE(9211), + [sym_inline_method_definition] = STATE(956), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(956), + [sym_operator_cast_declaration] = STATE(956), + [sym_constructor_or_destructor_definition] = STATE(956), + [sym_constructor_or_destructor_declaration] = STATE(956), + [sym_friend_declaration] = STATE(956), + [sym_access_specifier] = STATE(11030), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(956), + [sym_alias_declaration] = STATE(956), + [sym_static_assert_declaration] = STATE(956), + [sym_consteval_block_declaration] = STATE(956), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(956), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9455), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(4686), + [aux_sym_preproc_if_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), + [sym_preproc_directive] = ACTIONS(4692), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(4835), + [anon_sym___extension__] = ACTIONS(4696), + [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4700), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4837), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4704), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(4708), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(4712), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(1062)] = { - [sym_expression] = STATE(5411), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(956)] = { + [sym_preproc_def] = STATE(884), + [sym_preproc_function_def] = STATE(884), + [sym_preproc_call] = STATE(884), + [sym_preproc_if_in_field_declaration_list] = STATE(884), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(884), + [sym_type_definition] = STATE(884), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8092), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(884), + [sym_field_declaration] = STATE(884), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(884), + [sym_operator_cast] = STATE(9211), + [sym_inline_method_definition] = STATE(884), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(884), + [sym_operator_cast_declaration] = STATE(884), + [sym_constructor_or_destructor_definition] = STATE(884), + [sym_constructor_or_destructor_declaration] = STATE(884), + [sym_friend_declaration] = STATE(884), + [sym_access_specifier] = STATE(11030), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(884), + [sym_alias_declaration] = STATE(884), + [sym_static_assert_declaration] = STATE(884), + [sym_consteval_block_declaration] = STATE(884), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9455), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(4686), + [aux_sym_preproc_if_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), + [sym_preproc_directive] = ACTIONS(4692), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(4714), + [anon_sym___extension__] = ACTIONS(4696), + [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4700), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4839), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4704), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(4708), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(4712), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(1063)] = { - [sym_string_literal] = STATE(4004), - [sym_decltype_auto] = STATE(4767), - [sym_template_argument_list] = STATE(2029), - [sym_raw_string_literal] = STATE(4004), - [aux_sym_sized_type_specifier_repeat1] = STATE(4121), - [sym_identifier] = ACTIONS(5251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_TILDE] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(5265), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym___extension__] = ACTIONS(5251), - [anon_sym_virtual] = ACTIONS(5251), - [anon_sym_extern] = ACTIONS(5251), - [anon_sym___attribute__] = ACTIONS(5251), - [anon_sym___attribute] = ACTIONS(5251), - [anon_sym_COLON] = ACTIONS(5322), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5258), - [anon_sym___declspec] = ACTIONS(5251), - [anon_sym___based] = ACTIONS(5251), - [anon_sym___cdecl] = ACTIONS(5251), - [anon_sym___clrcall] = ACTIONS(5251), - [anon_sym___stdcall] = ACTIONS(5251), - [anon_sym___fastcall] = ACTIONS(5251), - [anon_sym___thiscall] = ACTIONS(5251), - [anon_sym___vectorcall] = ACTIONS(5251), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(5274), - [anon_sym_unsigned] = ACTIONS(5274), - [anon_sym_long] = ACTIONS(5274), - [anon_sym_short] = ACTIONS(5274), - [anon_sym_LBRACK] = ACTIONS(5262), - [anon_sym_static] = ACTIONS(5251), - [anon_sym_EQ] = ACTIONS(5276), - [anon_sym_register] = ACTIONS(5251), - [anon_sym_inline] = ACTIONS(5251), - [anon_sym___inline] = ACTIONS(5251), - [anon_sym___inline__] = ACTIONS(5251), - [anon_sym___forceinline] = ACTIONS(5251), - [anon_sym_thread_local] = ACTIONS(5251), - [anon_sym___thread] = ACTIONS(5251), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5251), - [anon_sym_volatile] = ACTIONS(5251), - [anon_sym_restrict] = ACTIONS(5251), - [anon_sym___restrict__] = ACTIONS(5251), - [anon_sym__Atomic] = ACTIONS(5251), - [anon_sym__Noreturn] = ACTIONS(5251), - [anon_sym_noreturn] = ACTIONS(5251), - [anon_sym__Nonnull] = ACTIONS(5251), - [anon_sym_mutable] = ACTIONS(5251), - [anon_sym_constinit] = ACTIONS(5251), - [anon_sym_consteval] = ACTIONS(5251), - [anon_sym_alignas] = ACTIONS(5251), - [anon_sym__Alignas] = ACTIONS(5251), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5276), - [anon_sym_or_eq] = ACTIONS(5276), - [anon_sym_xor_eq] = ACTIONS(5276), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5260), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5260), - [anon_sym_not_eq] = ACTIONS(5260), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5280), - [anon_sym_decltype] = ACTIONS(5282), - [anon_sym_template] = ACTIONS(5251), - [anon_sym_operator] = ACTIONS(5251), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_LBRACK_COLON] = ACTIONS(5258), + [STATE(957)] = { + [ts_builtin_sym_end] = ACTIONS(4507), + [sym_identifier] = ACTIONS(4504), + [aux_sym_preproc_include_token1] = ACTIONS(4504), + [aux_sym_preproc_def_token1] = ACTIONS(4504), + [aux_sym_preproc_if_token1] = ACTIONS(4504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4504), + [sym_preproc_directive] = ACTIONS(4504), + [anon_sym_LPAREN2] = ACTIONS(4507), + [anon_sym_BANG] = ACTIONS(4507), + [anon_sym_TILDE] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4504), + [anon_sym_STAR] = ACTIONS(4507), + [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_AMP] = ACTIONS(4504), + [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym___extension__] = ACTIONS(4504), + [anon_sym_typedef] = ACTIONS(4504), + [anon_sym_virtual] = ACTIONS(4504), + [anon_sym_extern] = ACTIONS(4504), + [anon_sym___attribute__] = ACTIONS(4504), + [anon_sym___attribute] = ACTIONS(4504), + [anon_sym_using] = ACTIONS(4504), + [anon_sym_COLON_COLON] = ACTIONS(4507), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4507), + [anon_sym___declspec] = ACTIONS(4504), + [anon_sym___based] = ACTIONS(4504), + [anon_sym___cdecl] = ACTIONS(4504), + [anon_sym___clrcall] = ACTIONS(4504), + [anon_sym___stdcall] = ACTIONS(4504), + [anon_sym___fastcall] = ACTIONS(4504), + [anon_sym___thiscall] = ACTIONS(4504), + [anon_sym___vectorcall] = ACTIONS(4504), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_signed] = ACTIONS(4504), + [anon_sym_unsigned] = ACTIONS(4504), + [anon_sym_long] = ACTIONS(4504), + [anon_sym_short] = ACTIONS(4504), + [anon_sym_LBRACK] = ACTIONS(4504), + [anon_sym_static] = ACTIONS(4504), + [anon_sym_register] = ACTIONS(4504), + [anon_sym_inline] = ACTIONS(4504), + [anon_sym___inline] = ACTIONS(4504), + [anon_sym___inline__] = ACTIONS(4504), + [anon_sym___forceinline] = ACTIONS(4504), + [anon_sym_thread_local] = ACTIONS(4504), + [anon_sym___thread] = ACTIONS(4504), + [anon_sym_const] = ACTIONS(4504), + [anon_sym_constexpr] = ACTIONS(4504), + [anon_sym_volatile] = ACTIONS(4504), + [anon_sym_restrict] = ACTIONS(4504), + [anon_sym___restrict__] = ACTIONS(4504), + [anon_sym__Atomic] = ACTIONS(4504), + [anon_sym__Noreturn] = ACTIONS(4504), + [anon_sym_noreturn] = ACTIONS(4504), + [anon_sym__Nonnull] = ACTIONS(4504), + [anon_sym_mutable] = ACTIONS(4504), + [anon_sym_constinit] = ACTIONS(4504), + [anon_sym_consteval] = ACTIONS(4504), + [anon_sym_alignas] = ACTIONS(4504), + [anon_sym__Alignas] = ACTIONS(4504), + [sym_primitive_type] = ACTIONS(4504), + [anon_sym_enum] = ACTIONS(4504), + [anon_sym_class] = ACTIONS(4504), + [anon_sym_struct] = ACTIONS(4504), + [anon_sym_union] = ACTIONS(4504), + [anon_sym_if] = ACTIONS(4504), + [anon_sym_switch] = ACTIONS(4504), + [anon_sym_case] = ACTIONS(4504), + [anon_sym_default] = ACTIONS(4504), + [anon_sym_while] = ACTIONS(4504), + [anon_sym_do] = ACTIONS(4504), + [anon_sym_for] = ACTIONS(4504), + [anon_sym_return] = ACTIONS(4504), + [anon_sym_break] = ACTIONS(4504), + [anon_sym_continue] = ACTIONS(4504), + [anon_sym_goto] = ACTIONS(4504), + [anon_sym_not] = ACTIONS(4504), + [anon_sym_compl] = ACTIONS(4504), + [anon_sym_DASH_DASH] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(4507), + [anon_sym_sizeof] = ACTIONS(4504), + [anon_sym___alignof__] = ACTIONS(4504), + [anon_sym___alignof] = ACTIONS(4504), + [anon_sym__alignof] = ACTIONS(4504), + [anon_sym_alignof] = ACTIONS(4504), + [anon_sym__Alignof] = ACTIONS(4504), + [anon_sym_offsetof] = ACTIONS(4504), + [anon_sym__Generic] = ACTIONS(4504), + [anon_sym_typename] = ACTIONS(4504), + [anon_sym_asm] = ACTIONS(4504), + [anon_sym___asm__] = ACTIONS(4504), + [anon_sym___asm] = ACTIONS(4504), + [sym_number_literal] = ACTIONS(4507), + [anon_sym_L_SQUOTE] = ACTIONS(4507), + [anon_sym_u_SQUOTE] = ACTIONS(4507), + [anon_sym_U_SQUOTE] = ACTIONS(4507), + [anon_sym_u8_SQUOTE] = ACTIONS(4507), + [anon_sym_SQUOTE] = ACTIONS(4507), + [anon_sym_L_DQUOTE] = ACTIONS(4507), + [anon_sym_u_DQUOTE] = ACTIONS(4507), + [anon_sym_U_DQUOTE] = ACTIONS(4507), + [anon_sym_u8_DQUOTE] = ACTIONS(4507), + [anon_sym_DQUOTE] = ACTIONS(4507), + [sym_true] = ACTIONS(4504), + [sym_false] = ACTIONS(4504), + [anon_sym_NULL] = ACTIONS(4504), + [anon_sym_nullptr] = ACTIONS(4504), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4504), + [anon_sym_decltype] = ACTIONS(4504), + [anon_sym_explicit] = ACTIONS(4504), + [anon_sym_export] = ACTIONS(4504), + [anon_sym_module] = ACTIONS(4504), + [anon_sym_import] = ACTIONS(4504), + [anon_sym_template] = ACTIONS(4504), + [anon_sym_operator] = ACTIONS(4504), + [anon_sym_try] = ACTIONS(4504), + [anon_sym_delete] = ACTIONS(4504), + [anon_sym_throw] = ACTIONS(4504), + [anon_sym_namespace] = ACTIONS(4504), + [anon_sym_static_assert] = ACTIONS(4504), + [anon_sym_concept] = ACTIONS(4504), + [anon_sym_co_return] = ACTIONS(4504), + [anon_sym_co_yield] = ACTIONS(4504), + [anon_sym_R_DQUOTE] = ACTIONS(4507), + [anon_sym_LR_DQUOTE] = ACTIONS(4507), + [anon_sym_uR_DQUOTE] = ACTIONS(4507), + [anon_sym_UR_DQUOTE] = ACTIONS(4507), + [anon_sym_u8R_DQUOTE] = ACTIONS(4507), + [anon_sym_co_await] = ACTIONS(4504), + [anon_sym_new] = ACTIONS(4504), + [anon_sym_requires] = ACTIONS(4504), + [anon_sym_CARET_CARET] = ACTIONS(4507), + [anon_sym_LBRACK_COLON] = ACTIONS(4507), + [sym_this] = ACTIONS(4504), }, - [STATE(1064)] = { - [sym_expression] = STATE(6635), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), + [STATE(958)] = { + [ts_builtin_sym_end] = ACTIONS(3941), + [sym_identifier] = ACTIONS(3939), + [aux_sym_preproc_include_token1] = ACTIONS(3939), + [aux_sym_preproc_def_token1] = ACTIONS(3939), + [aux_sym_preproc_if_token1] = ACTIONS(3939), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3939), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3939), + [sym_preproc_directive] = ACTIONS(3939), + [anon_sym_LPAREN2] = ACTIONS(3941), + [anon_sym_BANG] = ACTIONS(3941), + [anon_sym_TILDE] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3939), + [anon_sym_PLUS] = ACTIONS(3939), + [anon_sym_STAR] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3939), + [anon_sym_SEMI] = ACTIONS(3941), + [anon_sym___extension__] = ACTIONS(3939), + [anon_sym_typedef] = ACTIONS(3939), + [anon_sym_virtual] = ACTIONS(3939), + [anon_sym_extern] = ACTIONS(3939), + [anon_sym___attribute__] = ACTIONS(3939), + [anon_sym___attribute] = ACTIONS(3939), + [anon_sym_using] = ACTIONS(3939), + [anon_sym_COLON_COLON] = ACTIONS(3941), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3941), + [anon_sym___declspec] = ACTIONS(3939), + [anon_sym___based] = ACTIONS(3939), + [anon_sym___cdecl] = ACTIONS(3939), + [anon_sym___clrcall] = ACTIONS(3939), + [anon_sym___stdcall] = ACTIONS(3939), + [anon_sym___fastcall] = ACTIONS(3939), + [anon_sym___thiscall] = ACTIONS(3939), + [anon_sym___vectorcall] = ACTIONS(3939), + [anon_sym_LBRACE] = ACTIONS(3941), + [anon_sym_signed] = ACTIONS(3939), + [anon_sym_unsigned] = ACTIONS(3939), + [anon_sym_long] = ACTIONS(3939), + [anon_sym_short] = ACTIONS(3939), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_static] = ACTIONS(3939), + [anon_sym_register] = ACTIONS(3939), + [anon_sym_inline] = ACTIONS(3939), + [anon_sym___inline] = ACTIONS(3939), + [anon_sym___inline__] = ACTIONS(3939), + [anon_sym___forceinline] = ACTIONS(3939), + [anon_sym_thread_local] = ACTIONS(3939), + [anon_sym___thread] = ACTIONS(3939), + [anon_sym_const] = ACTIONS(3939), + [anon_sym_constexpr] = ACTIONS(3939), + [anon_sym_volatile] = ACTIONS(3939), + [anon_sym_restrict] = ACTIONS(3939), + [anon_sym___restrict__] = ACTIONS(3939), + [anon_sym__Atomic] = ACTIONS(3939), + [anon_sym__Noreturn] = ACTIONS(3939), + [anon_sym_noreturn] = ACTIONS(3939), + [anon_sym__Nonnull] = ACTIONS(3939), + [anon_sym_mutable] = ACTIONS(3939), + [anon_sym_constinit] = ACTIONS(3939), + [anon_sym_consteval] = ACTIONS(3939), + [anon_sym_alignas] = ACTIONS(3939), + [anon_sym__Alignas] = ACTIONS(3939), + [sym_primitive_type] = ACTIONS(3939), + [anon_sym_enum] = ACTIONS(3939), + [anon_sym_class] = ACTIONS(3939), + [anon_sym_struct] = ACTIONS(3939), + [anon_sym_union] = ACTIONS(3939), + [anon_sym_if] = ACTIONS(3939), + [anon_sym_switch] = ACTIONS(3939), + [anon_sym_case] = ACTIONS(3939), + [anon_sym_default] = ACTIONS(3939), + [anon_sym_while] = ACTIONS(3939), + [anon_sym_do] = ACTIONS(3939), + [anon_sym_for] = ACTIONS(3939), + [anon_sym_return] = ACTIONS(3939), + [anon_sym_break] = ACTIONS(3939), + [anon_sym_continue] = ACTIONS(3939), + [anon_sym_goto] = ACTIONS(3939), + [anon_sym_not] = ACTIONS(3939), + [anon_sym_compl] = ACTIONS(3939), + [anon_sym_DASH_DASH] = ACTIONS(3941), + [anon_sym_PLUS_PLUS] = ACTIONS(3941), + [anon_sym_sizeof] = ACTIONS(3939), + [anon_sym___alignof__] = ACTIONS(3939), + [anon_sym___alignof] = ACTIONS(3939), + [anon_sym__alignof] = ACTIONS(3939), + [anon_sym_alignof] = ACTIONS(3939), + [anon_sym__Alignof] = ACTIONS(3939), + [anon_sym_offsetof] = ACTIONS(3939), + [anon_sym__Generic] = ACTIONS(3939), + [anon_sym_typename] = ACTIONS(3939), + [anon_sym_asm] = ACTIONS(3939), + [anon_sym___asm__] = ACTIONS(3939), + [anon_sym___asm] = ACTIONS(3939), + [sym_number_literal] = ACTIONS(3941), + [anon_sym_L_SQUOTE] = ACTIONS(3941), + [anon_sym_u_SQUOTE] = ACTIONS(3941), + [anon_sym_U_SQUOTE] = ACTIONS(3941), + [anon_sym_u8_SQUOTE] = ACTIONS(3941), + [anon_sym_SQUOTE] = ACTIONS(3941), + [anon_sym_L_DQUOTE] = ACTIONS(3941), + [anon_sym_u_DQUOTE] = ACTIONS(3941), + [anon_sym_U_DQUOTE] = ACTIONS(3941), + [anon_sym_u8_DQUOTE] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [sym_true] = ACTIONS(3939), + [sym_false] = ACTIONS(3939), + [anon_sym_NULL] = ACTIONS(3939), + [anon_sym_nullptr] = ACTIONS(3939), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3939), + [anon_sym_decltype] = ACTIONS(3939), + [anon_sym_explicit] = ACTIONS(3939), + [anon_sym_export] = ACTIONS(3939), + [anon_sym_module] = ACTIONS(3939), + [anon_sym_import] = ACTIONS(3939), + [anon_sym_template] = ACTIONS(3939), + [anon_sym_operator] = ACTIONS(3939), + [anon_sym_try] = ACTIONS(3939), + [anon_sym_delete] = ACTIONS(3939), + [anon_sym_throw] = ACTIONS(3939), + [anon_sym_namespace] = ACTIONS(3939), + [anon_sym_static_assert] = ACTIONS(3939), + [anon_sym_concept] = ACTIONS(3939), + [anon_sym_co_return] = ACTIONS(3939), + [anon_sym_co_yield] = ACTIONS(3939), + [anon_sym_R_DQUOTE] = ACTIONS(3941), + [anon_sym_LR_DQUOTE] = ACTIONS(3941), + [anon_sym_uR_DQUOTE] = ACTIONS(3941), + [anon_sym_UR_DQUOTE] = ACTIONS(3941), + [anon_sym_u8R_DQUOTE] = ACTIONS(3941), + [anon_sym_co_await] = ACTIONS(3939), + [anon_sym_new] = ACTIONS(3939), + [anon_sym_requires] = ACTIONS(3939), + [anon_sym_CARET_CARET] = ACTIONS(3941), + [anon_sym_LBRACK_COLON] = ACTIONS(3941), + [sym_this] = ACTIONS(3939), }, - [STATE(1065)] = { - [sym_string_literal] = STATE(4004), - [sym_decltype_auto] = STATE(4767), - [sym_template_argument_list] = STATE(2029), - [sym_raw_string_literal] = STATE(4004), - [aux_sym_sized_type_specifier_repeat1] = STATE(4121), - [sym_identifier] = ACTIONS(5251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_TILDE] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(5265), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym___extension__] = ACTIONS(5251), - [anon_sym_virtual] = ACTIONS(5251), - [anon_sym_extern] = ACTIONS(5251), - [anon_sym___attribute__] = ACTIONS(5251), - [anon_sym___attribute] = ACTIONS(5251), - [anon_sym_COLON] = ACTIONS(5372), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5258), - [anon_sym___declspec] = ACTIONS(5251), - [anon_sym___based] = ACTIONS(5251), - [anon_sym___cdecl] = ACTIONS(5251), - [anon_sym___clrcall] = ACTIONS(5251), - [anon_sym___stdcall] = ACTIONS(5251), - [anon_sym___fastcall] = ACTIONS(5251), - [anon_sym___thiscall] = ACTIONS(5251), - [anon_sym___vectorcall] = ACTIONS(5251), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(5274), - [anon_sym_unsigned] = ACTIONS(5274), - [anon_sym_long] = ACTIONS(5274), - [anon_sym_short] = ACTIONS(5274), - [anon_sym_LBRACK] = ACTIONS(5262), - [anon_sym_static] = ACTIONS(5251), - [anon_sym_EQ] = ACTIONS(5276), - [anon_sym_register] = ACTIONS(5251), - [anon_sym_inline] = ACTIONS(5251), - [anon_sym___inline] = ACTIONS(5251), - [anon_sym___inline__] = ACTIONS(5251), - [anon_sym___forceinline] = ACTIONS(5251), - [anon_sym_thread_local] = ACTIONS(5251), - [anon_sym___thread] = ACTIONS(5251), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5251), - [anon_sym_volatile] = ACTIONS(5251), - [anon_sym_restrict] = ACTIONS(5251), - [anon_sym___restrict__] = ACTIONS(5251), - [anon_sym__Atomic] = ACTIONS(5251), - [anon_sym__Noreturn] = ACTIONS(5251), - [anon_sym_noreturn] = ACTIONS(5251), - [anon_sym__Nonnull] = ACTIONS(5251), - [anon_sym_mutable] = ACTIONS(5251), - [anon_sym_constinit] = ACTIONS(5251), - [anon_sym_consteval] = ACTIONS(5251), - [anon_sym_alignas] = ACTIONS(5251), - [anon_sym__Alignas] = ACTIONS(5251), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5276), - [anon_sym_or_eq] = ACTIONS(5276), - [anon_sym_xor_eq] = ACTIONS(5276), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5260), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5260), - [anon_sym_not_eq] = ACTIONS(5260), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5280), - [anon_sym_decltype] = ACTIONS(5282), - [anon_sym_template] = ACTIONS(5251), - [anon_sym_operator] = ACTIONS(5251), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_LBRACK_COLON] = ACTIONS(5258), + [STATE(959)] = { + [ts_builtin_sym_end] = ACTIONS(4516), + [sym_identifier] = ACTIONS(4514), + [aux_sym_preproc_include_token1] = ACTIONS(4514), + [aux_sym_preproc_def_token1] = ACTIONS(4514), + [aux_sym_preproc_if_token1] = ACTIONS(4514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4514), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4514), + [sym_preproc_directive] = ACTIONS(4514), + [anon_sym_LPAREN2] = ACTIONS(4516), + [anon_sym_BANG] = ACTIONS(4516), + [anon_sym_TILDE] = ACTIONS(4516), + [anon_sym_DASH] = ACTIONS(4514), + [anon_sym_PLUS] = ACTIONS(4514), + [anon_sym_STAR] = ACTIONS(4516), + [anon_sym_AMP_AMP] = ACTIONS(4516), + [anon_sym_AMP] = ACTIONS(4514), + [anon_sym_SEMI] = ACTIONS(4516), + [anon_sym___extension__] = ACTIONS(4514), + [anon_sym_typedef] = ACTIONS(4514), + [anon_sym_virtual] = ACTIONS(4514), + [anon_sym_extern] = ACTIONS(4514), + [anon_sym___attribute__] = ACTIONS(4514), + [anon_sym___attribute] = ACTIONS(4514), + [anon_sym_using] = ACTIONS(4514), + [anon_sym_COLON_COLON] = ACTIONS(4516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4516), + [anon_sym___declspec] = ACTIONS(4514), + [anon_sym___based] = ACTIONS(4514), + [anon_sym___cdecl] = ACTIONS(4514), + [anon_sym___clrcall] = ACTIONS(4514), + [anon_sym___stdcall] = ACTIONS(4514), + [anon_sym___fastcall] = ACTIONS(4514), + [anon_sym___thiscall] = ACTIONS(4514), + [anon_sym___vectorcall] = ACTIONS(4514), + [anon_sym_LBRACE] = ACTIONS(4516), + [anon_sym_signed] = ACTIONS(4514), + [anon_sym_unsigned] = ACTIONS(4514), + [anon_sym_long] = ACTIONS(4514), + [anon_sym_short] = ACTIONS(4514), + [anon_sym_LBRACK] = ACTIONS(4514), + [anon_sym_static] = ACTIONS(4514), + [anon_sym_register] = ACTIONS(4514), + [anon_sym_inline] = ACTIONS(4514), + [anon_sym___inline] = ACTIONS(4514), + [anon_sym___inline__] = ACTIONS(4514), + [anon_sym___forceinline] = ACTIONS(4514), + [anon_sym_thread_local] = ACTIONS(4514), + [anon_sym___thread] = ACTIONS(4514), + [anon_sym_const] = ACTIONS(4514), + [anon_sym_constexpr] = ACTIONS(4514), + [anon_sym_volatile] = ACTIONS(4514), + [anon_sym_restrict] = ACTIONS(4514), + [anon_sym___restrict__] = ACTIONS(4514), + [anon_sym__Atomic] = ACTIONS(4514), + [anon_sym__Noreturn] = ACTIONS(4514), + [anon_sym_noreturn] = ACTIONS(4514), + [anon_sym__Nonnull] = ACTIONS(4514), + [anon_sym_mutable] = ACTIONS(4514), + [anon_sym_constinit] = ACTIONS(4514), + [anon_sym_consteval] = ACTIONS(4514), + [anon_sym_alignas] = ACTIONS(4514), + [anon_sym__Alignas] = ACTIONS(4514), + [sym_primitive_type] = ACTIONS(4514), + [anon_sym_enum] = ACTIONS(4514), + [anon_sym_class] = ACTIONS(4514), + [anon_sym_struct] = ACTIONS(4514), + [anon_sym_union] = ACTIONS(4514), + [anon_sym_if] = ACTIONS(4514), + [anon_sym_switch] = ACTIONS(4514), + [anon_sym_case] = ACTIONS(4514), + [anon_sym_default] = ACTIONS(4514), + [anon_sym_while] = ACTIONS(4514), + [anon_sym_do] = ACTIONS(4514), + [anon_sym_for] = ACTIONS(4514), + [anon_sym_return] = ACTIONS(4514), + [anon_sym_break] = ACTIONS(4514), + [anon_sym_continue] = ACTIONS(4514), + [anon_sym_goto] = ACTIONS(4514), + [anon_sym_not] = ACTIONS(4514), + [anon_sym_compl] = ACTIONS(4514), + [anon_sym_DASH_DASH] = ACTIONS(4516), + [anon_sym_PLUS_PLUS] = ACTIONS(4516), + [anon_sym_sizeof] = ACTIONS(4514), + [anon_sym___alignof__] = ACTIONS(4514), + [anon_sym___alignof] = ACTIONS(4514), + [anon_sym__alignof] = ACTIONS(4514), + [anon_sym_alignof] = ACTIONS(4514), + [anon_sym__Alignof] = ACTIONS(4514), + [anon_sym_offsetof] = ACTIONS(4514), + [anon_sym__Generic] = ACTIONS(4514), + [anon_sym_typename] = ACTIONS(4514), + [anon_sym_asm] = ACTIONS(4514), + [anon_sym___asm__] = ACTIONS(4514), + [anon_sym___asm] = ACTIONS(4514), + [sym_number_literal] = ACTIONS(4516), + [anon_sym_L_SQUOTE] = ACTIONS(4516), + [anon_sym_u_SQUOTE] = ACTIONS(4516), + [anon_sym_U_SQUOTE] = ACTIONS(4516), + [anon_sym_u8_SQUOTE] = ACTIONS(4516), + [anon_sym_SQUOTE] = ACTIONS(4516), + [anon_sym_L_DQUOTE] = ACTIONS(4516), + [anon_sym_u_DQUOTE] = ACTIONS(4516), + [anon_sym_U_DQUOTE] = ACTIONS(4516), + [anon_sym_u8_DQUOTE] = ACTIONS(4516), + [anon_sym_DQUOTE] = ACTIONS(4516), + [sym_true] = ACTIONS(4514), + [sym_false] = ACTIONS(4514), + [anon_sym_NULL] = ACTIONS(4514), + [anon_sym_nullptr] = ACTIONS(4514), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4514), + [anon_sym_decltype] = ACTIONS(4514), + [anon_sym_explicit] = ACTIONS(4514), + [anon_sym_export] = ACTIONS(4514), + [anon_sym_module] = ACTIONS(4514), + [anon_sym_import] = ACTIONS(4514), + [anon_sym_template] = ACTIONS(4514), + [anon_sym_operator] = ACTIONS(4514), + [anon_sym_try] = ACTIONS(4514), + [anon_sym_delete] = ACTIONS(4514), + [anon_sym_throw] = ACTIONS(4514), + [anon_sym_namespace] = ACTIONS(4514), + [anon_sym_static_assert] = ACTIONS(4514), + [anon_sym_concept] = ACTIONS(4514), + [anon_sym_co_return] = ACTIONS(4514), + [anon_sym_co_yield] = ACTIONS(4514), + [anon_sym_R_DQUOTE] = ACTIONS(4516), + [anon_sym_LR_DQUOTE] = ACTIONS(4516), + [anon_sym_uR_DQUOTE] = ACTIONS(4516), + [anon_sym_UR_DQUOTE] = ACTIONS(4516), + [anon_sym_u8R_DQUOTE] = ACTIONS(4516), + [anon_sym_co_await] = ACTIONS(4514), + [anon_sym_new] = ACTIONS(4514), + [anon_sym_requires] = ACTIONS(4514), + [anon_sym_CARET_CARET] = ACTIONS(4516), + [anon_sym_LBRACK_COLON] = ACTIONS(4516), + [sym_this] = ACTIONS(4514), }, - [STATE(1066)] = { - [sym_expression] = STATE(4615), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(960)] = { + [sym_preproc_def] = STATE(960), + [sym_preproc_function_def] = STATE(960), + [sym_preproc_call] = STATE(960), + [sym_preproc_if_in_field_declaration_list] = STATE(960), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(960), + [sym_type_definition] = STATE(960), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8099), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8689), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(960), + [sym_field_declaration] = STATE(960), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2469), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(960), + [sym_operator_cast] = STATE(9167), + [sym_inline_method_definition] = STATE(960), + [sym__constructor_specifiers] = STATE(2469), + [sym_operator_cast_definition] = STATE(960), + [sym_operator_cast_declaration] = STATE(960), + [sym_constructor_or_destructor_definition] = STATE(960), + [sym_constructor_or_destructor_declaration] = STATE(960), + [sym_friend_declaration] = STATE(960), + [sym_access_specifier] = STATE(10982), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(960), + [sym_alias_declaration] = STATE(960), + [sym_static_assert_declaration] = STATE(960), + [sym_consteval_block_declaration] = STATE(960), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9167), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(960), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9503), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2469), + [sym_identifier] = ACTIONS(4542), + [aux_sym_preproc_def_token1] = ACTIONS(4841), + [aux_sym_preproc_if_token1] = ACTIONS(4844), + [aux_sym_preproc_if_token2] = ACTIONS(4551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4847), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4847), + [sym_preproc_directive] = ACTIONS(4850), + [anon_sym_LPAREN2] = ACTIONS(4559), + [anon_sym_TILDE] = ACTIONS(4562), + [anon_sym_STAR] = ACTIONS(4565), + [anon_sym_AMP_AMP] = ACTIONS(4568), + [anon_sym_AMP] = ACTIONS(4571), + [anon_sym_SEMI] = ACTIONS(4853), + [anon_sym___extension__] = ACTIONS(4856), + [anon_sym_typedef] = ACTIONS(4859), + [anon_sym_virtual] = ACTIONS(4583), + [anon_sym_extern] = ACTIONS(4586), + [anon_sym___attribute__] = ACTIONS(4589), + [anon_sym___attribute] = ACTIONS(4589), + [anon_sym_using] = ACTIONS(4862), + [anon_sym_COLON_COLON] = ACTIONS(4595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4598), + [anon_sym___declspec] = ACTIONS(4601), + [anon_sym___based] = ACTIONS(4604), + [anon_sym_signed] = ACTIONS(4607), + [anon_sym_unsigned] = ACTIONS(4607), + [anon_sym_long] = ACTIONS(4607), + [anon_sym_short] = ACTIONS(4607), + [anon_sym_LBRACK] = ACTIONS(4610), + [anon_sym_static] = ACTIONS(4586), + [anon_sym_register] = ACTIONS(4586), + [anon_sym_inline] = ACTIONS(4586), + [anon_sym___inline] = ACTIONS(4586), + [anon_sym___inline__] = ACTIONS(4586), + [anon_sym___forceinline] = ACTIONS(4586), + [anon_sym_thread_local] = ACTIONS(4586), + [anon_sym___thread] = ACTIONS(4586), + [anon_sym_const] = ACTIONS(4613), + [anon_sym_constexpr] = ACTIONS(4865), + [anon_sym_volatile] = ACTIONS(4613), + [anon_sym_restrict] = ACTIONS(4613), + [anon_sym___restrict__] = ACTIONS(4613), + [anon_sym__Atomic] = ACTIONS(4613), + [anon_sym__Noreturn] = ACTIONS(4613), + [anon_sym_noreturn] = ACTIONS(4613), + [anon_sym__Nonnull] = ACTIONS(4613), + [anon_sym_mutable] = ACTIONS(4613), + [anon_sym_constinit] = ACTIONS(4613), + [anon_sym_consteval] = ACTIONS(4868), + [anon_sym_alignas] = ACTIONS(4622), + [anon_sym__Alignas] = ACTIONS(4622), + [sym_primitive_type] = ACTIONS(4625), + [anon_sym_enum] = ACTIONS(4628), + [anon_sym_class] = ACTIONS(4631), + [anon_sym_struct] = ACTIONS(4634), + [anon_sym_union] = ACTIONS(4637), + [anon_sym_typename] = ACTIONS(4640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4643), + [anon_sym_decltype] = ACTIONS(4646), + [anon_sym_explicit] = ACTIONS(4649), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_template] = ACTIONS(4871), + [anon_sym_operator] = ACTIONS(4658), + [anon_sym_friend] = ACTIONS(4874), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_static_assert] = ACTIONS(4877), + [anon_sym_LBRACK_COLON] = ACTIONS(4667), }, - [STATE(1067)] = { - [sym_expression] = STATE(6416), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [STATE(961)] = { + [ts_builtin_sym_end] = ACTIONS(4486), + [sym_identifier] = ACTIONS(4484), + [aux_sym_preproc_include_token1] = ACTIONS(4484), + [aux_sym_preproc_def_token1] = ACTIONS(4484), + [aux_sym_preproc_if_token1] = ACTIONS(4484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4484), + [sym_preproc_directive] = ACTIONS(4484), + [anon_sym_LPAREN2] = ACTIONS(4486), + [anon_sym_BANG] = ACTIONS(4486), + [anon_sym_TILDE] = ACTIONS(4486), + [anon_sym_DASH] = ACTIONS(4484), + [anon_sym_PLUS] = ACTIONS(4484), + [anon_sym_STAR] = ACTIONS(4486), + [anon_sym_AMP_AMP] = ACTIONS(4486), + [anon_sym_AMP] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(4486), + [anon_sym___extension__] = ACTIONS(4484), + [anon_sym_typedef] = ACTIONS(4484), + [anon_sym_virtual] = ACTIONS(4484), + [anon_sym_extern] = ACTIONS(4484), + [anon_sym___attribute__] = ACTIONS(4484), + [anon_sym___attribute] = ACTIONS(4484), + [anon_sym_using] = ACTIONS(4484), + [anon_sym_COLON_COLON] = ACTIONS(4486), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4486), + [anon_sym___declspec] = ACTIONS(4484), + [anon_sym___based] = ACTIONS(4484), + [anon_sym___cdecl] = ACTIONS(4484), + [anon_sym___clrcall] = ACTIONS(4484), + [anon_sym___stdcall] = ACTIONS(4484), + [anon_sym___fastcall] = ACTIONS(4484), + [anon_sym___thiscall] = ACTIONS(4484), + [anon_sym___vectorcall] = ACTIONS(4484), + [anon_sym_LBRACE] = ACTIONS(4486), + [anon_sym_signed] = ACTIONS(4484), + [anon_sym_unsigned] = ACTIONS(4484), + [anon_sym_long] = ACTIONS(4484), + [anon_sym_short] = ACTIONS(4484), + [anon_sym_LBRACK] = ACTIONS(4484), + [anon_sym_static] = ACTIONS(4484), + [anon_sym_register] = ACTIONS(4484), + [anon_sym_inline] = ACTIONS(4484), + [anon_sym___inline] = ACTIONS(4484), + [anon_sym___inline__] = ACTIONS(4484), + [anon_sym___forceinline] = ACTIONS(4484), + [anon_sym_thread_local] = ACTIONS(4484), + [anon_sym___thread] = ACTIONS(4484), + [anon_sym_const] = ACTIONS(4484), + [anon_sym_constexpr] = ACTIONS(4484), + [anon_sym_volatile] = ACTIONS(4484), + [anon_sym_restrict] = ACTIONS(4484), + [anon_sym___restrict__] = ACTIONS(4484), + [anon_sym__Atomic] = ACTIONS(4484), + [anon_sym__Noreturn] = ACTIONS(4484), + [anon_sym_noreturn] = ACTIONS(4484), + [anon_sym__Nonnull] = ACTIONS(4484), + [anon_sym_mutable] = ACTIONS(4484), + [anon_sym_constinit] = ACTIONS(4484), + [anon_sym_consteval] = ACTIONS(4484), + [anon_sym_alignas] = ACTIONS(4484), + [anon_sym__Alignas] = ACTIONS(4484), + [sym_primitive_type] = ACTIONS(4484), + [anon_sym_enum] = ACTIONS(4484), + [anon_sym_class] = ACTIONS(4484), + [anon_sym_struct] = ACTIONS(4484), + [anon_sym_union] = ACTIONS(4484), + [anon_sym_if] = ACTIONS(4484), + [anon_sym_switch] = ACTIONS(4484), + [anon_sym_case] = ACTIONS(4484), + [anon_sym_default] = ACTIONS(4484), + [anon_sym_while] = ACTIONS(4484), + [anon_sym_do] = ACTIONS(4484), + [anon_sym_for] = ACTIONS(4484), + [anon_sym_return] = ACTIONS(4484), + [anon_sym_break] = ACTIONS(4484), + [anon_sym_continue] = ACTIONS(4484), + [anon_sym_goto] = ACTIONS(4484), + [anon_sym_not] = ACTIONS(4484), + [anon_sym_compl] = ACTIONS(4484), + [anon_sym_DASH_DASH] = ACTIONS(4486), + [anon_sym_PLUS_PLUS] = ACTIONS(4486), + [anon_sym_sizeof] = ACTIONS(4484), + [anon_sym___alignof__] = ACTIONS(4484), + [anon_sym___alignof] = ACTIONS(4484), + [anon_sym__alignof] = ACTIONS(4484), + [anon_sym_alignof] = ACTIONS(4484), + [anon_sym__Alignof] = ACTIONS(4484), + [anon_sym_offsetof] = ACTIONS(4484), + [anon_sym__Generic] = ACTIONS(4484), + [anon_sym_typename] = ACTIONS(4484), + [anon_sym_asm] = ACTIONS(4484), + [anon_sym___asm__] = ACTIONS(4484), + [anon_sym___asm] = ACTIONS(4484), + [sym_number_literal] = ACTIONS(4486), + [anon_sym_L_SQUOTE] = ACTIONS(4486), + [anon_sym_u_SQUOTE] = ACTIONS(4486), + [anon_sym_U_SQUOTE] = ACTIONS(4486), + [anon_sym_u8_SQUOTE] = ACTIONS(4486), + [anon_sym_SQUOTE] = ACTIONS(4486), + [anon_sym_L_DQUOTE] = ACTIONS(4486), + [anon_sym_u_DQUOTE] = ACTIONS(4486), + [anon_sym_U_DQUOTE] = ACTIONS(4486), + [anon_sym_u8_DQUOTE] = ACTIONS(4486), + [anon_sym_DQUOTE] = ACTIONS(4486), + [sym_true] = ACTIONS(4484), + [sym_false] = ACTIONS(4484), + [anon_sym_NULL] = ACTIONS(4484), + [anon_sym_nullptr] = ACTIONS(4484), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4484), + [anon_sym_decltype] = ACTIONS(4484), + [anon_sym_explicit] = ACTIONS(4484), + [anon_sym_export] = ACTIONS(4484), + [anon_sym_module] = ACTIONS(4484), + [anon_sym_import] = ACTIONS(4484), + [anon_sym_template] = ACTIONS(4484), + [anon_sym_operator] = ACTIONS(4484), + [anon_sym_try] = ACTIONS(4484), + [anon_sym_delete] = ACTIONS(4484), + [anon_sym_throw] = ACTIONS(4484), + [anon_sym_namespace] = ACTIONS(4484), + [anon_sym_static_assert] = ACTIONS(4484), + [anon_sym_concept] = ACTIONS(4484), + [anon_sym_co_return] = ACTIONS(4484), + [anon_sym_co_yield] = ACTIONS(4484), + [anon_sym_R_DQUOTE] = ACTIONS(4486), + [anon_sym_LR_DQUOTE] = ACTIONS(4486), + [anon_sym_uR_DQUOTE] = ACTIONS(4486), + [anon_sym_UR_DQUOTE] = ACTIONS(4486), + [anon_sym_u8R_DQUOTE] = ACTIONS(4486), + [anon_sym_co_await] = ACTIONS(4484), + [anon_sym_new] = ACTIONS(4484), + [anon_sym_requires] = ACTIONS(4484), + [anon_sym_CARET_CARET] = ACTIONS(4486), + [anon_sym_LBRACK_COLON] = ACTIONS(4486), + [sym_this] = ACTIONS(4484), }, - [STATE(1068)] = { - [sym_expression] = STATE(5785), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5326), - [anon_sym_LBRACE] = ACTIONS(5326), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(5328), - [anon_sym_constexpr] = ACTIONS(5328), - [anon_sym_mutable] = ACTIONS(5328), - [anon_sym_consteval] = ACTIONS(5328), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [anon_sym_DASH_GT] = ACTIONS(5326), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_noexcept] = ACTIONS(5328), - [anon_sym_throw] = ACTIONS(5328), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), + [STATE(962)] = { + [ts_builtin_sym_end] = ACTIONS(4490), + [sym_identifier] = ACTIONS(4488), + [aux_sym_preproc_include_token1] = ACTIONS(4488), + [aux_sym_preproc_def_token1] = ACTIONS(4488), + [aux_sym_preproc_if_token1] = ACTIONS(4488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4488), + [sym_preproc_directive] = ACTIONS(4488), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_BANG] = ACTIONS(4490), + [anon_sym_TILDE] = ACTIONS(4490), + [anon_sym_DASH] = ACTIONS(4488), + [anon_sym_PLUS] = ACTIONS(4488), + [anon_sym_STAR] = ACTIONS(4490), + [anon_sym_AMP_AMP] = ACTIONS(4490), + [anon_sym_AMP] = ACTIONS(4488), + [anon_sym_SEMI] = ACTIONS(4490), + [anon_sym___extension__] = ACTIONS(4488), + [anon_sym_typedef] = ACTIONS(4488), + [anon_sym_virtual] = ACTIONS(4488), + [anon_sym_extern] = ACTIONS(4488), + [anon_sym___attribute__] = ACTIONS(4488), + [anon_sym___attribute] = ACTIONS(4488), + [anon_sym_using] = ACTIONS(4488), + [anon_sym_COLON_COLON] = ACTIONS(4490), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4490), + [anon_sym___declspec] = ACTIONS(4488), + [anon_sym___based] = ACTIONS(4488), + [anon_sym___cdecl] = ACTIONS(4488), + [anon_sym___clrcall] = ACTIONS(4488), + [anon_sym___stdcall] = ACTIONS(4488), + [anon_sym___fastcall] = ACTIONS(4488), + [anon_sym___thiscall] = ACTIONS(4488), + [anon_sym___vectorcall] = ACTIONS(4488), + [anon_sym_LBRACE] = ACTIONS(4490), + [anon_sym_signed] = ACTIONS(4488), + [anon_sym_unsigned] = ACTIONS(4488), + [anon_sym_long] = ACTIONS(4488), + [anon_sym_short] = ACTIONS(4488), + [anon_sym_LBRACK] = ACTIONS(4488), + [anon_sym_static] = ACTIONS(4488), + [anon_sym_register] = ACTIONS(4488), + [anon_sym_inline] = ACTIONS(4488), + [anon_sym___inline] = ACTIONS(4488), + [anon_sym___inline__] = ACTIONS(4488), + [anon_sym___forceinline] = ACTIONS(4488), + [anon_sym_thread_local] = ACTIONS(4488), + [anon_sym___thread] = ACTIONS(4488), + [anon_sym_const] = ACTIONS(4488), + [anon_sym_constexpr] = ACTIONS(4488), + [anon_sym_volatile] = ACTIONS(4488), + [anon_sym_restrict] = ACTIONS(4488), + [anon_sym___restrict__] = ACTIONS(4488), + [anon_sym__Atomic] = ACTIONS(4488), + [anon_sym__Noreturn] = ACTIONS(4488), + [anon_sym_noreturn] = ACTIONS(4488), + [anon_sym__Nonnull] = ACTIONS(4488), + [anon_sym_mutable] = ACTIONS(4488), + [anon_sym_constinit] = ACTIONS(4488), + [anon_sym_consteval] = ACTIONS(4488), + [anon_sym_alignas] = ACTIONS(4488), + [anon_sym__Alignas] = ACTIONS(4488), + [sym_primitive_type] = ACTIONS(4488), + [anon_sym_enum] = ACTIONS(4488), + [anon_sym_class] = ACTIONS(4488), + [anon_sym_struct] = ACTIONS(4488), + [anon_sym_union] = ACTIONS(4488), + [anon_sym_if] = ACTIONS(4488), + [anon_sym_switch] = ACTIONS(4488), + [anon_sym_case] = ACTIONS(4488), + [anon_sym_default] = ACTIONS(4488), + [anon_sym_while] = ACTIONS(4488), + [anon_sym_do] = ACTIONS(4488), + [anon_sym_for] = ACTIONS(4488), + [anon_sym_return] = ACTIONS(4488), + [anon_sym_break] = ACTIONS(4488), + [anon_sym_continue] = ACTIONS(4488), + [anon_sym_goto] = ACTIONS(4488), + [anon_sym_not] = ACTIONS(4488), + [anon_sym_compl] = ACTIONS(4488), + [anon_sym_DASH_DASH] = ACTIONS(4490), + [anon_sym_PLUS_PLUS] = ACTIONS(4490), + [anon_sym_sizeof] = ACTIONS(4488), + [anon_sym___alignof__] = ACTIONS(4488), + [anon_sym___alignof] = ACTIONS(4488), + [anon_sym__alignof] = ACTIONS(4488), + [anon_sym_alignof] = ACTIONS(4488), + [anon_sym__Alignof] = ACTIONS(4488), + [anon_sym_offsetof] = ACTIONS(4488), + [anon_sym__Generic] = ACTIONS(4488), + [anon_sym_typename] = ACTIONS(4488), + [anon_sym_asm] = ACTIONS(4488), + [anon_sym___asm__] = ACTIONS(4488), + [anon_sym___asm] = ACTIONS(4488), + [sym_number_literal] = ACTIONS(4490), + [anon_sym_L_SQUOTE] = ACTIONS(4490), + [anon_sym_u_SQUOTE] = ACTIONS(4490), + [anon_sym_U_SQUOTE] = ACTIONS(4490), + [anon_sym_u8_SQUOTE] = ACTIONS(4490), + [anon_sym_SQUOTE] = ACTIONS(4490), + [anon_sym_L_DQUOTE] = ACTIONS(4490), + [anon_sym_u_DQUOTE] = ACTIONS(4490), + [anon_sym_U_DQUOTE] = ACTIONS(4490), + [anon_sym_u8_DQUOTE] = ACTIONS(4490), + [anon_sym_DQUOTE] = ACTIONS(4490), + [sym_true] = ACTIONS(4488), + [sym_false] = ACTIONS(4488), + [anon_sym_NULL] = ACTIONS(4488), + [anon_sym_nullptr] = ACTIONS(4488), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4488), + [anon_sym_decltype] = ACTIONS(4488), + [anon_sym_explicit] = ACTIONS(4488), + [anon_sym_export] = ACTIONS(4488), + [anon_sym_module] = ACTIONS(4488), + [anon_sym_import] = ACTIONS(4488), + [anon_sym_template] = ACTIONS(4488), + [anon_sym_operator] = ACTIONS(4488), + [anon_sym_try] = ACTIONS(4488), + [anon_sym_delete] = ACTIONS(4488), + [anon_sym_throw] = ACTIONS(4488), + [anon_sym_namespace] = ACTIONS(4488), + [anon_sym_static_assert] = ACTIONS(4488), + [anon_sym_concept] = ACTIONS(4488), + [anon_sym_co_return] = ACTIONS(4488), + [anon_sym_co_yield] = ACTIONS(4488), + [anon_sym_R_DQUOTE] = ACTIONS(4490), + [anon_sym_LR_DQUOTE] = ACTIONS(4490), + [anon_sym_uR_DQUOTE] = ACTIONS(4490), + [anon_sym_UR_DQUOTE] = ACTIONS(4490), + [anon_sym_u8R_DQUOTE] = ACTIONS(4490), + [anon_sym_co_await] = ACTIONS(4488), + [anon_sym_new] = ACTIONS(4488), + [anon_sym_requires] = ACTIONS(4488), + [anon_sym_CARET_CARET] = ACTIONS(4490), + [anon_sym_LBRACK_COLON] = ACTIONS(4490), + [sym_this] = ACTIONS(4488), }, - [STATE(1069)] = { - [sym_expression] = STATE(6787), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10342), - [sym_initializer_pair] = STATE(10342), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5374), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [STATE(963)] = { + [ts_builtin_sym_end] = ACTIONS(4494), + [sym_identifier] = ACTIONS(4492), + [aux_sym_preproc_include_token1] = ACTIONS(4492), + [aux_sym_preproc_def_token1] = ACTIONS(4492), + [aux_sym_preproc_if_token1] = ACTIONS(4492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4492), + [sym_preproc_directive] = ACTIONS(4492), + [anon_sym_LPAREN2] = ACTIONS(4494), + [anon_sym_BANG] = ACTIONS(4494), + [anon_sym_TILDE] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4492), + [anon_sym_PLUS] = ACTIONS(4492), + [anon_sym_STAR] = ACTIONS(4494), + [anon_sym_AMP_AMP] = ACTIONS(4494), + [anon_sym_AMP] = ACTIONS(4492), + [anon_sym_SEMI] = ACTIONS(4494), + [anon_sym___extension__] = ACTIONS(4492), + [anon_sym_typedef] = ACTIONS(4492), + [anon_sym_virtual] = ACTIONS(4492), + [anon_sym_extern] = ACTIONS(4492), + [anon_sym___attribute__] = ACTIONS(4492), + [anon_sym___attribute] = ACTIONS(4492), + [anon_sym_using] = ACTIONS(4492), + [anon_sym_COLON_COLON] = ACTIONS(4494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4494), + [anon_sym___declspec] = ACTIONS(4492), + [anon_sym___based] = ACTIONS(4492), + [anon_sym___cdecl] = ACTIONS(4492), + [anon_sym___clrcall] = ACTIONS(4492), + [anon_sym___stdcall] = ACTIONS(4492), + [anon_sym___fastcall] = ACTIONS(4492), + [anon_sym___thiscall] = ACTIONS(4492), + [anon_sym___vectorcall] = ACTIONS(4492), + [anon_sym_LBRACE] = ACTIONS(4494), + [anon_sym_signed] = ACTIONS(4492), + [anon_sym_unsigned] = ACTIONS(4492), + [anon_sym_long] = ACTIONS(4492), + [anon_sym_short] = ACTIONS(4492), + [anon_sym_LBRACK] = ACTIONS(4492), + [anon_sym_static] = ACTIONS(4492), + [anon_sym_register] = ACTIONS(4492), + [anon_sym_inline] = ACTIONS(4492), + [anon_sym___inline] = ACTIONS(4492), + [anon_sym___inline__] = ACTIONS(4492), + [anon_sym___forceinline] = ACTIONS(4492), + [anon_sym_thread_local] = ACTIONS(4492), + [anon_sym___thread] = ACTIONS(4492), + [anon_sym_const] = ACTIONS(4492), + [anon_sym_constexpr] = ACTIONS(4492), + [anon_sym_volatile] = ACTIONS(4492), + [anon_sym_restrict] = ACTIONS(4492), + [anon_sym___restrict__] = ACTIONS(4492), + [anon_sym__Atomic] = ACTIONS(4492), + [anon_sym__Noreturn] = ACTIONS(4492), + [anon_sym_noreturn] = ACTIONS(4492), + [anon_sym__Nonnull] = ACTIONS(4492), + [anon_sym_mutable] = ACTIONS(4492), + [anon_sym_constinit] = ACTIONS(4492), + [anon_sym_consteval] = ACTIONS(4492), + [anon_sym_alignas] = ACTIONS(4492), + [anon_sym__Alignas] = ACTIONS(4492), + [sym_primitive_type] = ACTIONS(4492), + [anon_sym_enum] = ACTIONS(4492), + [anon_sym_class] = ACTIONS(4492), + [anon_sym_struct] = ACTIONS(4492), + [anon_sym_union] = ACTIONS(4492), + [anon_sym_if] = ACTIONS(4492), + [anon_sym_switch] = ACTIONS(4492), + [anon_sym_case] = ACTIONS(4492), + [anon_sym_default] = ACTIONS(4492), + [anon_sym_while] = ACTIONS(4492), + [anon_sym_do] = ACTIONS(4492), + [anon_sym_for] = ACTIONS(4492), + [anon_sym_return] = ACTIONS(4492), + [anon_sym_break] = ACTIONS(4492), + [anon_sym_continue] = ACTIONS(4492), + [anon_sym_goto] = ACTIONS(4492), + [anon_sym_not] = ACTIONS(4492), + [anon_sym_compl] = ACTIONS(4492), + [anon_sym_DASH_DASH] = ACTIONS(4494), + [anon_sym_PLUS_PLUS] = ACTIONS(4494), + [anon_sym_sizeof] = ACTIONS(4492), + [anon_sym___alignof__] = ACTIONS(4492), + [anon_sym___alignof] = ACTIONS(4492), + [anon_sym__alignof] = ACTIONS(4492), + [anon_sym_alignof] = ACTIONS(4492), + [anon_sym__Alignof] = ACTIONS(4492), + [anon_sym_offsetof] = ACTIONS(4492), + [anon_sym__Generic] = ACTIONS(4492), + [anon_sym_typename] = ACTIONS(4492), + [anon_sym_asm] = ACTIONS(4492), + [anon_sym___asm__] = ACTIONS(4492), + [anon_sym___asm] = ACTIONS(4492), + [sym_number_literal] = ACTIONS(4494), + [anon_sym_L_SQUOTE] = ACTIONS(4494), + [anon_sym_u_SQUOTE] = ACTIONS(4494), + [anon_sym_U_SQUOTE] = ACTIONS(4494), + [anon_sym_u8_SQUOTE] = ACTIONS(4494), + [anon_sym_SQUOTE] = ACTIONS(4494), + [anon_sym_L_DQUOTE] = ACTIONS(4494), + [anon_sym_u_DQUOTE] = ACTIONS(4494), + [anon_sym_U_DQUOTE] = ACTIONS(4494), + [anon_sym_u8_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE] = ACTIONS(4494), + [sym_true] = ACTIONS(4492), + [sym_false] = ACTIONS(4492), + [anon_sym_NULL] = ACTIONS(4492), + [anon_sym_nullptr] = ACTIONS(4492), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4492), + [anon_sym_decltype] = ACTIONS(4492), + [anon_sym_explicit] = ACTIONS(4492), + [anon_sym_export] = ACTIONS(4492), + [anon_sym_module] = ACTIONS(4492), + [anon_sym_import] = ACTIONS(4492), + [anon_sym_template] = ACTIONS(4492), + [anon_sym_operator] = ACTIONS(4492), + [anon_sym_try] = ACTIONS(4492), + [anon_sym_delete] = ACTIONS(4492), + [anon_sym_throw] = ACTIONS(4492), + [anon_sym_namespace] = ACTIONS(4492), + [anon_sym_static_assert] = ACTIONS(4492), + [anon_sym_concept] = ACTIONS(4492), + [anon_sym_co_return] = ACTIONS(4492), + [anon_sym_co_yield] = ACTIONS(4492), + [anon_sym_R_DQUOTE] = ACTIONS(4494), + [anon_sym_LR_DQUOTE] = ACTIONS(4494), + [anon_sym_uR_DQUOTE] = ACTIONS(4494), + [anon_sym_UR_DQUOTE] = ACTIONS(4494), + [anon_sym_u8R_DQUOTE] = ACTIONS(4494), + [anon_sym_co_await] = ACTIONS(4492), + [anon_sym_new] = ACTIONS(4492), + [anon_sym_requires] = ACTIONS(4492), + [anon_sym_CARET_CARET] = ACTIONS(4494), + [anon_sym_LBRACK_COLON] = ACTIONS(4494), + [sym_this] = ACTIONS(4492), }, - [STATE(1070)] = { - [sym_expression_statement] = STATE(4052), - [sym_expression] = STATE(6806), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10957), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_type_requirement] = STATE(1071), - [sym_compound_requirement] = STATE(1071), - [sym__requirement] = STATE(1071), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_requirement_seq_repeat1] = STATE(1071), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5376), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5378), - [anon_sym_RBRACE] = ACTIONS(5380), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5382), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [STATE(964)] = { + [ts_builtin_sym_end] = ACTIONS(3933), + [sym_identifier] = ACTIONS(3931), + [aux_sym_preproc_include_token1] = ACTIONS(3931), + [aux_sym_preproc_def_token1] = ACTIONS(3931), + [aux_sym_preproc_if_token1] = ACTIONS(3931), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3931), + [sym_preproc_directive] = ACTIONS(3931), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_TILDE] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym_SEMI] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(3931), + [anon_sym_typedef] = ACTIONS(3931), + [anon_sym_virtual] = ACTIONS(3931), + [anon_sym_extern] = ACTIONS(3931), + [anon_sym___attribute__] = ACTIONS(3931), + [anon_sym___attribute] = ACTIONS(3931), + [anon_sym_using] = ACTIONS(3931), + [anon_sym_COLON_COLON] = ACTIONS(3933), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3933), + [anon_sym___declspec] = ACTIONS(3931), + [anon_sym___based] = ACTIONS(3931), + [anon_sym___cdecl] = ACTIONS(3931), + [anon_sym___clrcall] = ACTIONS(3931), + [anon_sym___stdcall] = ACTIONS(3931), + [anon_sym___fastcall] = ACTIONS(3931), + [anon_sym___thiscall] = ACTIONS(3931), + [anon_sym___vectorcall] = ACTIONS(3931), + [anon_sym_LBRACE] = ACTIONS(3933), + [anon_sym_signed] = ACTIONS(3931), + [anon_sym_unsigned] = ACTIONS(3931), + [anon_sym_long] = ACTIONS(3931), + [anon_sym_short] = ACTIONS(3931), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_static] = ACTIONS(3931), + [anon_sym_register] = ACTIONS(3931), + [anon_sym_inline] = ACTIONS(3931), + [anon_sym___inline] = ACTIONS(3931), + [anon_sym___inline__] = ACTIONS(3931), + [anon_sym___forceinline] = ACTIONS(3931), + [anon_sym_thread_local] = ACTIONS(3931), + [anon_sym___thread] = ACTIONS(3931), + [anon_sym_const] = ACTIONS(3931), + [anon_sym_constexpr] = ACTIONS(3931), + [anon_sym_volatile] = ACTIONS(3931), + [anon_sym_restrict] = ACTIONS(3931), + [anon_sym___restrict__] = ACTIONS(3931), + [anon_sym__Atomic] = ACTIONS(3931), + [anon_sym__Noreturn] = ACTIONS(3931), + [anon_sym_noreturn] = ACTIONS(3931), + [anon_sym__Nonnull] = ACTIONS(3931), + [anon_sym_mutable] = ACTIONS(3931), + [anon_sym_constinit] = ACTIONS(3931), + [anon_sym_consteval] = ACTIONS(3931), + [anon_sym_alignas] = ACTIONS(3931), + [anon_sym__Alignas] = ACTIONS(3931), + [sym_primitive_type] = ACTIONS(3931), + [anon_sym_enum] = ACTIONS(3931), + [anon_sym_class] = ACTIONS(3931), + [anon_sym_struct] = ACTIONS(3931), + [anon_sym_union] = ACTIONS(3931), + [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(3933), + [anon_sym_PLUS_PLUS] = ACTIONS(3933), + [anon_sym_sizeof] = ACTIONS(3931), + [anon_sym___alignof__] = ACTIONS(3931), + [anon_sym___alignof] = ACTIONS(3931), + [anon_sym__alignof] = ACTIONS(3931), + [anon_sym_alignof] = ACTIONS(3931), + [anon_sym__Alignof] = ACTIONS(3931), + [anon_sym_offsetof] = ACTIONS(3931), + [anon_sym__Generic] = ACTIONS(3931), + [anon_sym_typename] = ACTIONS(3931), + [anon_sym_asm] = ACTIONS(3931), + [anon_sym___asm__] = ACTIONS(3931), + [anon_sym___asm] = ACTIONS(3931), + [sym_number_literal] = ACTIONS(3933), + [anon_sym_L_SQUOTE] = ACTIONS(3933), + [anon_sym_u_SQUOTE] = ACTIONS(3933), + [anon_sym_U_SQUOTE] = ACTIONS(3933), + [anon_sym_u8_SQUOTE] = ACTIONS(3933), + [anon_sym_SQUOTE] = ACTIONS(3933), + [anon_sym_L_DQUOTE] = ACTIONS(3933), + [anon_sym_u_DQUOTE] = ACTIONS(3933), + [anon_sym_U_DQUOTE] = ACTIONS(3933), + [anon_sym_u8_DQUOTE] = ACTIONS(3933), + [anon_sym_DQUOTE] = ACTIONS(3933), + [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(3931), + [anon_sym_decltype] = ACTIONS(3931), + [anon_sym_explicit] = ACTIONS(3931), + [anon_sym_export] = ACTIONS(3931), + [anon_sym_module] = ACTIONS(3931), + [anon_sym_import] = ACTIONS(3931), + [anon_sym_template] = ACTIONS(3931), + [anon_sym_operator] = ACTIONS(3931), + [anon_sym_try] = ACTIONS(3931), + [anon_sym_delete] = ACTIONS(3931), + [anon_sym_throw] = ACTIONS(3931), + [anon_sym_namespace] = ACTIONS(3931), + [anon_sym_static_assert] = ACTIONS(3931), + [anon_sym_concept] = ACTIONS(3931), + [anon_sym_co_return] = ACTIONS(3931), + [anon_sym_co_yield] = ACTIONS(3931), + [anon_sym_R_DQUOTE] = ACTIONS(3933), + [anon_sym_LR_DQUOTE] = ACTIONS(3933), + [anon_sym_uR_DQUOTE] = ACTIONS(3933), + [anon_sym_UR_DQUOTE] = ACTIONS(3933), + [anon_sym_u8R_DQUOTE] = ACTIONS(3933), + [anon_sym_co_await] = ACTIONS(3931), + [anon_sym_new] = ACTIONS(3931), + [anon_sym_requires] = ACTIONS(3931), + [anon_sym_CARET_CARET] = ACTIONS(3933), + [anon_sym_LBRACK_COLON] = ACTIONS(3933), + [sym_this] = ACTIONS(3931), }, - [STATE(1071)] = { - [sym_expression_statement] = STATE(4052), - [sym_expression] = STATE(6806), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10957), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_type_requirement] = STATE(1101), - [sym_compound_requirement] = STATE(1101), - [sym__requirement] = STATE(1101), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_requirement_seq_repeat1] = STATE(1101), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5376), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5378), - [anon_sym_RBRACE] = ACTIONS(5384), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5382), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [STATE(965)] = { + [ts_builtin_sym_end] = ACTIONS(4248), + [sym_identifier] = ACTIONS(4246), + [aux_sym_preproc_include_token1] = ACTIONS(4246), + [aux_sym_preproc_def_token1] = ACTIONS(4246), + [aux_sym_preproc_if_token1] = ACTIONS(4246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4246), + [sym_preproc_directive] = ACTIONS(4246), + [anon_sym_LPAREN2] = ACTIONS(4248), + [anon_sym_BANG] = ACTIONS(4248), + [anon_sym_TILDE] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4246), + [anon_sym_STAR] = ACTIONS(4248), + [anon_sym_AMP_AMP] = ACTIONS(4248), + [anon_sym_AMP] = ACTIONS(4246), + [anon_sym_SEMI] = ACTIONS(4248), + [anon_sym___extension__] = ACTIONS(4246), + [anon_sym_typedef] = ACTIONS(4246), + [anon_sym_virtual] = ACTIONS(4246), + [anon_sym_extern] = ACTIONS(4246), + [anon_sym___attribute__] = ACTIONS(4246), + [anon_sym___attribute] = ACTIONS(4246), + [anon_sym_using] = ACTIONS(4246), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4248), + [anon_sym___declspec] = ACTIONS(4246), + [anon_sym___based] = ACTIONS(4246), + [anon_sym___cdecl] = ACTIONS(4246), + [anon_sym___clrcall] = ACTIONS(4246), + [anon_sym___stdcall] = ACTIONS(4246), + [anon_sym___fastcall] = ACTIONS(4246), + [anon_sym___thiscall] = ACTIONS(4246), + [anon_sym___vectorcall] = ACTIONS(4246), + [anon_sym_LBRACE] = ACTIONS(4248), + [anon_sym_signed] = ACTIONS(4246), + [anon_sym_unsigned] = ACTIONS(4246), + [anon_sym_long] = ACTIONS(4246), + [anon_sym_short] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_static] = ACTIONS(4246), + [anon_sym_register] = ACTIONS(4246), + [anon_sym_inline] = ACTIONS(4246), + [anon_sym___inline] = ACTIONS(4246), + [anon_sym___inline__] = ACTIONS(4246), + [anon_sym___forceinline] = ACTIONS(4246), + [anon_sym_thread_local] = ACTIONS(4246), + [anon_sym___thread] = ACTIONS(4246), + [anon_sym_const] = ACTIONS(4246), + [anon_sym_constexpr] = ACTIONS(4246), + [anon_sym_volatile] = ACTIONS(4246), + [anon_sym_restrict] = ACTIONS(4246), + [anon_sym___restrict__] = ACTIONS(4246), + [anon_sym__Atomic] = ACTIONS(4246), + [anon_sym__Noreturn] = ACTIONS(4246), + [anon_sym_noreturn] = ACTIONS(4246), + [anon_sym__Nonnull] = ACTIONS(4246), + [anon_sym_mutable] = ACTIONS(4246), + [anon_sym_constinit] = ACTIONS(4246), + [anon_sym_consteval] = ACTIONS(4246), + [anon_sym_alignas] = ACTIONS(4246), + [anon_sym__Alignas] = ACTIONS(4246), + [sym_primitive_type] = ACTIONS(4246), + [anon_sym_enum] = ACTIONS(4246), + [anon_sym_class] = ACTIONS(4246), + [anon_sym_struct] = ACTIONS(4246), + [anon_sym_union] = ACTIONS(4246), + [anon_sym_if] = ACTIONS(4246), + [anon_sym_switch] = ACTIONS(4246), + [anon_sym_case] = ACTIONS(4246), + [anon_sym_default] = ACTIONS(4246), + [anon_sym_while] = ACTIONS(4246), + [anon_sym_do] = ACTIONS(4246), + [anon_sym_for] = ACTIONS(4246), + [anon_sym_return] = ACTIONS(4246), + [anon_sym_break] = ACTIONS(4246), + [anon_sym_continue] = ACTIONS(4246), + [anon_sym_goto] = ACTIONS(4246), + [anon_sym_not] = ACTIONS(4246), + [anon_sym_compl] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4248), + [anon_sym_PLUS_PLUS] = ACTIONS(4248), + [anon_sym_sizeof] = ACTIONS(4246), + [anon_sym___alignof__] = ACTIONS(4246), + [anon_sym___alignof] = ACTIONS(4246), + [anon_sym__alignof] = ACTIONS(4246), + [anon_sym_alignof] = ACTIONS(4246), + [anon_sym__Alignof] = ACTIONS(4246), + [anon_sym_offsetof] = ACTIONS(4246), + [anon_sym__Generic] = ACTIONS(4246), + [anon_sym_typename] = ACTIONS(4246), + [anon_sym_asm] = ACTIONS(4246), + [anon_sym___asm__] = ACTIONS(4246), + [anon_sym___asm] = ACTIONS(4246), + [sym_number_literal] = ACTIONS(4248), + [anon_sym_L_SQUOTE] = ACTIONS(4248), + [anon_sym_u_SQUOTE] = ACTIONS(4248), + [anon_sym_U_SQUOTE] = ACTIONS(4248), + [anon_sym_u8_SQUOTE] = ACTIONS(4248), + [anon_sym_SQUOTE] = ACTIONS(4248), + [anon_sym_L_DQUOTE] = ACTIONS(4248), + [anon_sym_u_DQUOTE] = ACTIONS(4248), + [anon_sym_U_DQUOTE] = ACTIONS(4248), + [anon_sym_u8_DQUOTE] = ACTIONS(4248), + [anon_sym_DQUOTE] = ACTIONS(4248), + [sym_true] = ACTIONS(4246), + [sym_false] = ACTIONS(4246), + [anon_sym_NULL] = ACTIONS(4246), + [anon_sym_nullptr] = ACTIONS(4246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4246), + [anon_sym_decltype] = ACTIONS(4246), + [anon_sym_explicit] = ACTIONS(4246), + [anon_sym_export] = ACTIONS(4246), + [anon_sym_module] = ACTIONS(4246), + [anon_sym_import] = ACTIONS(4246), + [anon_sym_template] = ACTIONS(4246), + [anon_sym_operator] = ACTIONS(4246), + [anon_sym_try] = ACTIONS(4246), + [anon_sym_delete] = ACTIONS(4246), + [anon_sym_throw] = ACTIONS(4246), + [anon_sym_namespace] = ACTIONS(4246), + [anon_sym_static_assert] = ACTIONS(4246), + [anon_sym_concept] = ACTIONS(4246), + [anon_sym_co_return] = ACTIONS(4246), + [anon_sym_co_yield] = ACTIONS(4246), + [anon_sym_R_DQUOTE] = ACTIONS(4248), + [anon_sym_LR_DQUOTE] = ACTIONS(4248), + [anon_sym_uR_DQUOTE] = ACTIONS(4248), + [anon_sym_UR_DQUOTE] = ACTIONS(4248), + [anon_sym_u8R_DQUOTE] = ACTIONS(4248), + [anon_sym_co_await] = ACTIONS(4246), + [anon_sym_new] = ACTIONS(4246), + [anon_sym_requires] = ACTIONS(4246), + [anon_sym_CARET_CARET] = ACTIONS(4248), + [anon_sym_LBRACK_COLON] = ACTIONS(4248), + [sym_this] = ACTIONS(4246), }, - [STATE(1072)] = { - [sym_expression] = STATE(6787), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10342), - [sym_initializer_pair] = STATE(10342), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5386), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [STATE(966)] = { + [sym_identifier] = ACTIONS(4454), + [aux_sym_preproc_include_token1] = ACTIONS(4454), + [aux_sym_preproc_def_token1] = ACTIONS(4454), + [aux_sym_preproc_if_token1] = ACTIONS(4454), + [aux_sym_preproc_if_token2] = ACTIONS(4454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4454), + [sym_preproc_directive] = ACTIONS(4454), + [anon_sym_LPAREN2] = ACTIONS(4456), + [anon_sym_BANG] = ACTIONS(4456), + [anon_sym_TILDE] = ACTIONS(4456), + [anon_sym_DASH] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4454), + [anon_sym_STAR] = ACTIONS(4456), + [anon_sym_AMP_AMP] = ACTIONS(4456), + [anon_sym_AMP] = ACTIONS(4454), + [anon_sym_SEMI] = ACTIONS(4456), + [anon_sym___extension__] = ACTIONS(4454), + [anon_sym_typedef] = ACTIONS(4454), + [anon_sym_virtual] = ACTIONS(4454), + [anon_sym_extern] = ACTIONS(4454), + [anon_sym___attribute__] = ACTIONS(4454), + [anon_sym___attribute] = ACTIONS(4454), + [anon_sym_using] = ACTIONS(4454), + [anon_sym_COLON_COLON] = ACTIONS(4456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4456), + [anon_sym___declspec] = ACTIONS(4454), + [anon_sym___based] = ACTIONS(4454), + [anon_sym___cdecl] = ACTIONS(4454), + [anon_sym___clrcall] = ACTIONS(4454), + [anon_sym___stdcall] = ACTIONS(4454), + [anon_sym___fastcall] = ACTIONS(4454), + [anon_sym___thiscall] = ACTIONS(4454), + [anon_sym___vectorcall] = ACTIONS(4454), + [anon_sym_LBRACE] = ACTIONS(4456), + [anon_sym_signed] = ACTIONS(4454), + [anon_sym_unsigned] = ACTIONS(4454), + [anon_sym_long] = ACTIONS(4454), + [anon_sym_short] = ACTIONS(4454), + [anon_sym_LBRACK] = ACTIONS(4454), + [anon_sym_static] = ACTIONS(4454), + [anon_sym_register] = ACTIONS(4454), + [anon_sym_inline] = ACTIONS(4454), + [anon_sym___inline] = ACTIONS(4454), + [anon_sym___inline__] = ACTIONS(4454), + [anon_sym___forceinline] = ACTIONS(4454), + [anon_sym_thread_local] = ACTIONS(4454), + [anon_sym___thread] = ACTIONS(4454), + [anon_sym_const] = ACTIONS(4454), + [anon_sym_constexpr] = ACTIONS(4454), + [anon_sym_volatile] = ACTIONS(4454), + [anon_sym_restrict] = ACTIONS(4454), + [anon_sym___restrict__] = ACTIONS(4454), + [anon_sym__Atomic] = ACTIONS(4454), + [anon_sym__Noreturn] = ACTIONS(4454), + [anon_sym_noreturn] = ACTIONS(4454), + [anon_sym__Nonnull] = ACTIONS(4454), + [anon_sym_mutable] = ACTIONS(4454), + [anon_sym_constinit] = ACTIONS(4454), + [anon_sym_consteval] = ACTIONS(4454), + [anon_sym_alignas] = ACTIONS(4454), + [anon_sym__Alignas] = ACTIONS(4454), + [sym_primitive_type] = ACTIONS(4454), + [anon_sym_enum] = ACTIONS(4454), + [anon_sym_class] = ACTIONS(4454), + [anon_sym_struct] = ACTIONS(4454), + [anon_sym_union] = ACTIONS(4454), + [anon_sym_if] = ACTIONS(4454), + [anon_sym_switch] = ACTIONS(4454), + [anon_sym_case] = ACTIONS(4454), + [anon_sym_default] = ACTIONS(4454), + [anon_sym_while] = ACTIONS(4454), + [anon_sym_do] = ACTIONS(4454), + [anon_sym_for] = ACTIONS(4454), + [anon_sym_return] = ACTIONS(4454), + [anon_sym_break] = ACTIONS(4454), + [anon_sym_continue] = ACTIONS(4454), + [anon_sym_goto] = ACTIONS(4454), + [anon_sym_not] = ACTIONS(4454), + [anon_sym_compl] = ACTIONS(4454), + [anon_sym_DASH_DASH] = ACTIONS(4456), + [anon_sym_PLUS_PLUS] = ACTIONS(4456), + [anon_sym_sizeof] = ACTIONS(4454), + [anon_sym___alignof__] = ACTIONS(4454), + [anon_sym___alignof] = ACTIONS(4454), + [anon_sym__alignof] = ACTIONS(4454), + [anon_sym_alignof] = ACTIONS(4454), + [anon_sym__Alignof] = ACTIONS(4454), + [anon_sym_offsetof] = ACTIONS(4454), + [anon_sym__Generic] = ACTIONS(4454), + [anon_sym_typename] = ACTIONS(4454), + [anon_sym_asm] = ACTIONS(4454), + [anon_sym___asm__] = ACTIONS(4454), + [anon_sym___asm] = ACTIONS(4454), + [sym_number_literal] = ACTIONS(4456), + [anon_sym_L_SQUOTE] = ACTIONS(4456), + [anon_sym_u_SQUOTE] = ACTIONS(4456), + [anon_sym_U_SQUOTE] = ACTIONS(4456), + [anon_sym_u8_SQUOTE] = ACTIONS(4456), + [anon_sym_SQUOTE] = ACTIONS(4456), + [anon_sym_L_DQUOTE] = ACTIONS(4456), + [anon_sym_u_DQUOTE] = ACTIONS(4456), + [anon_sym_U_DQUOTE] = ACTIONS(4456), + [anon_sym_u8_DQUOTE] = ACTIONS(4456), + [anon_sym_DQUOTE] = ACTIONS(4456), + [sym_true] = ACTIONS(4454), + [sym_false] = ACTIONS(4454), + [anon_sym_NULL] = ACTIONS(4454), + [anon_sym_nullptr] = ACTIONS(4454), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4454), + [anon_sym_decltype] = ACTIONS(4454), + [anon_sym_explicit] = ACTIONS(4454), + [anon_sym_export] = ACTIONS(4454), + [anon_sym_module] = ACTIONS(4454), + [anon_sym_import] = ACTIONS(4454), + [anon_sym_template] = ACTIONS(4454), + [anon_sym_operator] = ACTIONS(4454), + [anon_sym_try] = ACTIONS(4454), + [anon_sym_delete] = ACTIONS(4454), + [anon_sym_throw] = ACTIONS(4454), + [anon_sym_namespace] = ACTIONS(4454), + [anon_sym_static_assert] = ACTIONS(4454), + [anon_sym_concept] = ACTIONS(4454), + [anon_sym_co_return] = ACTIONS(4454), + [anon_sym_co_yield] = ACTIONS(4454), + [anon_sym_R_DQUOTE] = ACTIONS(4456), + [anon_sym_LR_DQUOTE] = ACTIONS(4456), + [anon_sym_uR_DQUOTE] = ACTIONS(4456), + [anon_sym_UR_DQUOTE] = ACTIONS(4456), + [anon_sym_u8R_DQUOTE] = ACTIONS(4456), + [anon_sym_co_await] = ACTIONS(4454), + [anon_sym_new] = ACTIONS(4454), + [anon_sym_requires] = ACTIONS(4454), + [anon_sym_CARET_CARET] = ACTIONS(4456), + [anon_sym_LBRACK_COLON] = ACTIONS(4456), + [sym_this] = ACTIONS(4454), }, - [STATE(1073)] = { - [sym_expression] = STATE(6787), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10342), - [sym_initializer_pair] = STATE(10342), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5388), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [STATE(967)] = { + [sym_identifier] = ACTIONS(4458), + [aux_sym_preproc_include_token1] = ACTIONS(4458), + [aux_sym_preproc_def_token1] = ACTIONS(4458), + [aux_sym_preproc_if_token1] = ACTIONS(4458), + [aux_sym_preproc_if_token2] = ACTIONS(4458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4458), + [sym_preproc_directive] = ACTIONS(4458), + [anon_sym_LPAREN2] = ACTIONS(4460), + [anon_sym_BANG] = ACTIONS(4460), + [anon_sym_TILDE] = ACTIONS(4460), + [anon_sym_DASH] = ACTIONS(4458), + [anon_sym_PLUS] = ACTIONS(4458), + [anon_sym_STAR] = ACTIONS(4460), + [anon_sym_AMP_AMP] = ACTIONS(4460), + [anon_sym_AMP] = ACTIONS(4458), + [anon_sym_SEMI] = ACTIONS(4460), + [anon_sym___extension__] = ACTIONS(4458), + [anon_sym_typedef] = ACTIONS(4458), + [anon_sym_virtual] = ACTIONS(4458), + [anon_sym_extern] = ACTIONS(4458), + [anon_sym___attribute__] = ACTIONS(4458), + [anon_sym___attribute] = ACTIONS(4458), + [anon_sym_using] = ACTIONS(4458), + [anon_sym_COLON_COLON] = ACTIONS(4460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4460), + [anon_sym___declspec] = ACTIONS(4458), + [anon_sym___based] = ACTIONS(4458), + [anon_sym___cdecl] = ACTIONS(4458), + [anon_sym___clrcall] = ACTIONS(4458), + [anon_sym___stdcall] = ACTIONS(4458), + [anon_sym___fastcall] = ACTIONS(4458), + [anon_sym___thiscall] = ACTIONS(4458), + [anon_sym___vectorcall] = ACTIONS(4458), + [anon_sym_LBRACE] = ACTIONS(4460), + [anon_sym_signed] = ACTIONS(4458), + [anon_sym_unsigned] = ACTIONS(4458), + [anon_sym_long] = ACTIONS(4458), + [anon_sym_short] = ACTIONS(4458), + [anon_sym_LBRACK] = ACTIONS(4458), + [anon_sym_static] = ACTIONS(4458), + [anon_sym_register] = ACTIONS(4458), + [anon_sym_inline] = ACTIONS(4458), + [anon_sym___inline] = ACTIONS(4458), + [anon_sym___inline__] = ACTIONS(4458), + [anon_sym___forceinline] = ACTIONS(4458), + [anon_sym_thread_local] = ACTIONS(4458), + [anon_sym___thread] = ACTIONS(4458), + [anon_sym_const] = ACTIONS(4458), + [anon_sym_constexpr] = ACTIONS(4458), + [anon_sym_volatile] = ACTIONS(4458), + [anon_sym_restrict] = ACTIONS(4458), + [anon_sym___restrict__] = ACTIONS(4458), + [anon_sym__Atomic] = ACTIONS(4458), + [anon_sym__Noreturn] = ACTIONS(4458), + [anon_sym_noreturn] = ACTIONS(4458), + [anon_sym__Nonnull] = ACTIONS(4458), + [anon_sym_mutable] = ACTIONS(4458), + [anon_sym_constinit] = ACTIONS(4458), + [anon_sym_consteval] = ACTIONS(4458), + [anon_sym_alignas] = ACTIONS(4458), + [anon_sym__Alignas] = ACTIONS(4458), + [sym_primitive_type] = ACTIONS(4458), + [anon_sym_enum] = ACTIONS(4458), + [anon_sym_class] = ACTIONS(4458), + [anon_sym_struct] = ACTIONS(4458), + [anon_sym_union] = ACTIONS(4458), + [anon_sym_if] = ACTIONS(4458), + [anon_sym_switch] = ACTIONS(4458), + [anon_sym_case] = ACTIONS(4458), + [anon_sym_default] = ACTIONS(4458), + [anon_sym_while] = ACTIONS(4458), + [anon_sym_do] = ACTIONS(4458), + [anon_sym_for] = ACTIONS(4458), + [anon_sym_return] = ACTIONS(4458), + [anon_sym_break] = ACTIONS(4458), + [anon_sym_continue] = ACTIONS(4458), + [anon_sym_goto] = ACTIONS(4458), + [anon_sym_not] = ACTIONS(4458), + [anon_sym_compl] = ACTIONS(4458), + [anon_sym_DASH_DASH] = ACTIONS(4460), + [anon_sym_PLUS_PLUS] = ACTIONS(4460), + [anon_sym_sizeof] = ACTIONS(4458), + [anon_sym___alignof__] = ACTIONS(4458), + [anon_sym___alignof] = ACTIONS(4458), + [anon_sym__alignof] = ACTIONS(4458), + [anon_sym_alignof] = ACTIONS(4458), + [anon_sym__Alignof] = ACTIONS(4458), + [anon_sym_offsetof] = ACTIONS(4458), + [anon_sym__Generic] = ACTIONS(4458), + [anon_sym_typename] = ACTIONS(4458), + [anon_sym_asm] = ACTIONS(4458), + [anon_sym___asm__] = ACTIONS(4458), + [anon_sym___asm] = ACTIONS(4458), + [sym_number_literal] = ACTIONS(4460), + [anon_sym_L_SQUOTE] = ACTIONS(4460), + [anon_sym_u_SQUOTE] = ACTIONS(4460), + [anon_sym_U_SQUOTE] = ACTIONS(4460), + [anon_sym_u8_SQUOTE] = ACTIONS(4460), + [anon_sym_SQUOTE] = ACTIONS(4460), + [anon_sym_L_DQUOTE] = ACTIONS(4460), + [anon_sym_u_DQUOTE] = ACTIONS(4460), + [anon_sym_U_DQUOTE] = ACTIONS(4460), + [anon_sym_u8_DQUOTE] = ACTIONS(4460), + [anon_sym_DQUOTE] = ACTIONS(4460), + [sym_true] = ACTIONS(4458), + [sym_false] = ACTIONS(4458), + [anon_sym_NULL] = ACTIONS(4458), + [anon_sym_nullptr] = ACTIONS(4458), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4458), + [anon_sym_decltype] = ACTIONS(4458), + [anon_sym_explicit] = ACTIONS(4458), + [anon_sym_export] = ACTIONS(4458), + [anon_sym_module] = ACTIONS(4458), + [anon_sym_import] = ACTIONS(4458), + [anon_sym_template] = ACTIONS(4458), + [anon_sym_operator] = ACTIONS(4458), + [anon_sym_try] = ACTIONS(4458), + [anon_sym_delete] = ACTIONS(4458), + [anon_sym_throw] = ACTIONS(4458), + [anon_sym_namespace] = ACTIONS(4458), + [anon_sym_static_assert] = ACTIONS(4458), + [anon_sym_concept] = ACTIONS(4458), + [anon_sym_co_return] = ACTIONS(4458), + [anon_sym_co_yield] = ACTIONS(4458), + [anon_sym_R_DQUOTE] = ACTIONS(4460), + [anon_sym_LR_DQUOTE] = ACTIONS(4460), + [anon_sym_uR_DQUOTE] = ACTIONS(4460), + [anon_sym_UR_DQUOTE] = ACTIONS(4460), + [anon_sym_u8R_DQUOTE] = ACTIONS(4460), + [anon_sym_co_await] = ACTIONS(4458), + [anon_sym_new] = ACTIONS(4458), + [anon_sym_requires] = ACTIONS(4458), + [anon_sym_CARET_CARET] = ACTIONS(4460), + [anon_sym_LBRACK_COLON] = ACTIONS(4460), + [sym_this] = ACTIONS(4458), }, - [STATE(1074)] = { - [sym_expression] = STATE(6787), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10342), - [sym_initializer_pair] = STATE(10342), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5390), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(968)] = { + [sym_identifier] = ACTIONS(4462), + [aux_sym_preproc_include_token1] = ACTIONS(4462), + [aux_sym_preproc_def_token1] = ACTIONS(4462), + [aux_sym_preproc_if_token1] = ACTIONS(4462), + [aux_sym_preproc_if_token2] = ACTIONS(4462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4462), + [sym_preproc_directive] = ACTIONS(4462), + [anon_sym_LPAREN2] = ACTIONS(4464), + [anon_sym_BANG] = ACTIONS(4464), + [anon_sym_TILDE] = ACTIONS(4464), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_AMP] = ACTIONS(4462), + [anon_sym_SEMI] = ACTIONS(4464), + [anon_sym___extension__] = ACTIONS(4462), + [anon_sym_typedef] = ACTIONS(4462), + [anon_sym_virtual] = ACTIONS(4462), + [anon_sym_extern] = ACTIONS(4462), + [anon_sym___attribute__] = ACTIONS(4462), + [anon_sym___attribute] = ACTIONS(4462), + [anon_sym_using] = ACTIONS(4462), + [anon_sym_COLON_COLON] = ACTIONS(4464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4464), + [anon_sym___declspec] = ACTIONS(4462), + [anon_sym___based] = ACTIONS(4462), + [anon_sym___cdecl] = ACTIONS(4462), + [anon_sym___clrcall] = ACTIONS(4462), + [anon_sym___stdcall] = ACTIONS(4462), + [anon_sym___fastcall] = ACTIONS(4462), + [anon_sym___thiscall] = ACTIONS(4462), + [anon_sym___vectorcall] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4464), + [anon_sym_signed] = ACTIONS(4462), + [anon_sym_unsigned] = ACTIONS(4462), + [anon_sym_long] = ACTIONS(4462), + [anon_sym_short] = ACTIONS(4462), + [anon_sym_LBRACK] = ACTIONS(4462), + [anon_sym_static] = ACTIONS(4462), + [anon_sym_register] = ACTIONS(4462), + [anon_sym_inline] = ACTIONS(4462), + [anon_sym___inline] = ACTIONS(4462), + [anon_sym___inline__] = ACTIONS(4462), + [anon_sym___forceinline] = ACTIONS(4462), + [anon_sym_thread_local] = ACTIONS(4462), + [anon_sym___thread] = ACTIONS(4462), + [anon_sym_const] = ACTIONS(4462), + [anon_sym_constexpr] = ACTIONS(4462), + [anon_sym_volatile] = ACTIONS(4462), + [anon_sym_restrict] = ACTIONS(4462), + [anon_sym___restrict__] = ACTIONS(4462), + [anon_sym__Atomic] = ACTIONS(4462), + [anon_sym__Noreturn] = ACTIONS(4462), + [anon_sym_noreturn] = ACTIONS(4462), + [anon_sym__Nonnull] = ACTIONS(4462), + [anon_sym_mutable] = ACTIONS(4462), + [anon_sym_constinit] = ACTIONS(4462), + [anon_sym_consteval] = ACTIONS(4462), + [anon_sym_alignas] = ACTIONS(4462), + [anon_sym__Alignas] = ACTIONS(4462), + [sym_primitive_type] = ACTIONS(4462), + [anon_sym_enum] = ACTIONS(4462), + [anon_sym_class] = ACTIONS(4462), + [anon_sym_struct] = ACTIONS(4462), + [anon_sym_union] = ACTIONS(4462), + [anon_sym_if] = ACTIONS(4462), + [anon_sym_switch] = ACTIONS(4462), + [anon_sym_case] = ACTIONS(4462), + [anon_sym_default] = ACTIONS(4462), + [anon_sym_while] = ACTIONS(4462), + [anon_sym_do] = ACTIONS(4462), + [anon_sym_for] = ACTIONS(4462), + [anon_sym_return] = ACTIONS(4462), + [anon_sym_break] = ACTIONS(4462), + [anon_sym_continue] = ACTIONS(4462), + [anon_sym_goto] = ACTIONS(4462), + [anon_sym_not] = ACTIONS(4462), + [anon_sym_compl] = ACTIONS(4462), + [anon_sym_DASH_DASH] = ACTIONS(4464), + [anon_sym_PLUS_PLUS] = ACTIONS(4464), + [anon_sym_sizeof] = ACTIONS(4462), + [anon_sym___alignof__] = ACTIONS(4462), + [anon_sym___alignof] = ACTIONS(4462), + [anon_sym__alignof] = ACTIONS(4462), + [anon_sym_alignof] = ACTIONS(4462), + [anon_sym__Alignof] = ACTIONS(4462), + [anon_sym_offsetof] = ACTIONS(4462), + [anon_sym__Generic] = ACTIONS(4462), + [anon_sym_typename] = ACTIONS(4462), + [anon_sym_asm] = ACTIONS(4462), + [anon_sym___asm__] = ACTIONS(4462), + [anon_sym___asm] = ACTIONS(4462), + [sym_number_literal] = ACTIONS(4464), + [anon_sym_L_SQUOTE] = ACTIONS(4464), + [anon_sym_u_SQUOTE] = ACTIONS(4464), + [anon_sym_U_SQUOTE] = ACTIONS(4464), + [anon_sym_u8_SQUOTE] = ACTIONS(4464), + [anon_sym_SQUOTE] = ACTIONS(4464), + [anon_sym_L_DQUOTE] = ACTIONS(4464), + [anon_sym_u_DQUOTE] = ACTIONS(4464), + [anon_sym_U_DQUOTE] = ACTIONS(4464), + [anon_sym_u8_DQUOTE] = ACTIONS(4464), + [anon_sym_DQUOTE] = ACTIONS(4464), + [sym_true] = ACTIONS(4462), + [sym_false] = ACTIONS(4462), + [anon_sym_NULL] = ACTIONS(4462), + [anon_sym_nullptr] = ACTIONS(4462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4462), + [anon_sym_decltype] = ACTIONS(4462), + [anon_sym_explicit] = ACTIONS(4462), + [anon_sym_export] = ACTIONS(4462), + [anon_sym_module] = ACTIONS(4462), + [anon_sym_import] = ACTIONS(4462), + [anon_sym_template] = ACTIONS(4462), + [anon_sym_operator] = ACTIONS(4462), + [anon_sym_try] = ACTIONS(4462), + [anon_sym_delete] = ACTIONS(4462), + [anon_sym_throw] = ACTIONS(4462), + [anon_sym_namespace] = ACTIONS(4462), + [anon_sym_static_assert] = ACTIONS(4462), + [anon_sym_concept] = ACTIONS(4462), + [anon_sym_co_return] = ACTIONS(4462), + [anon_sym_co_yield] = ACTIONS(4462), + [anon_sym_R_DQUOTE] = ACTIONS(4464), + [anon_sym_LR_DQUOTE] = ACTIONS(4464), + [anon_sym_uR_DQUOTE] = ACTIONS(4464), + [anon_sym_UR_DQUOTE] = ACTIONS(4464), + [anon_sym_u8R_DQUOTE] = ACTIONS(4464), + [anon_sym_co_await] = ACTIONS(4462), + [anon_sym_new] = ACTIONS(4462), + [anon_sym_requires] = ACTIONS(4462), + [anon_sym_CARET_CARET] = ACTIONS(4464), + [anon_sym_LBRACK_COLON] = ACTIONS(4464), + [sym_this] = ACTIONS(4462), + }, + [STATE(969)] = { + [sym_identifier] = ACTIONS(4466), + [aux_sym_preproc_include_token1] = ACTIONS(4466), + [aux_sym_preproc_def_token1] = ACTIONS(4466), + [aux_sym_preproc_if_token1] = ACTIONS(4466), + [aux_sym_preproc_if_token2] = ACTIONS(4466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4466), + [sym_preproc_directive] = ACTIONS(4466), + [anon_sym_LPAREN2] = ACTIONS(4468), + [anon_sym_BANG] = ACTIONS(4468), + [anon_sym_TILDE] = ACTIONS(4468), + [anon_sym_DASH] = ACTIONS(4466), + [anon_sym_PLUS] = ACTIONS(4466), + [anon_sym_STAR] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_AMP] = ACTIONS(4466), + [anon_sym_SEMI] = ACTIONS(4468), + [anon_sym___extension__] = ACTIONS(4466), + [anon_sym_typedef] = ACTIONS(4466), + [anon_sym_virtual] = ACTIONS(4466), + [anon_sym_extern] = ACTIONS(4466), + [anon_sym___attribute__] = ACTIONS(4466), + [anon_sym___attribute] = ACTIONS(4466), + [anon_sym_using] = ACTIONS(4466), + [anon_sym_COLON_COLON] = ACTIONS(4468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4468), + [anon_sym___declspec] = ACTIONS(4466), + [anon_sym___based] = ACTIONS(4466), + [anon_sym___cdecl] = ACTIONS(4466), + [anon_sym___clrcall] = ACTIONS(4466), + [anon_sym___stdcall] = ACTIONS(4466), + [anon_sym___fastcall] = ACTIONS(4466), + [anon_sym___thiscall] = ACTIONS(4466), + [anon_sym___vectorcall] = ACTIONS(4466), + [anon_sym_LBRACE] = ACTIONS(4468), + [anon_sym_signed] = ACTIONS(4466), + [anon_sym_unsigned] = ACTIONS(4466), + [anon_sym_long] = ACTIONS(4466), + [anon_sym_short] = ACTIONS(4466), + [anon_sym_LBRACK] = ACTIONS(4466), + [anon_sym_static] = ACTIONS(4466), + [anon_sym_register] = ACTIONS(4466), + [anon_sym_inline] = ACTIONS(4466), + [anon_sym___inline] = ACTIONS(4466), + [anon_sym___inline__] = ACTIONS(4466), + [anon_sym___forceinline] = ACTIONS(4466), + [anon_sym_thread_local] = ACTIONS(4466), + [anon_sym___thread] = ACTIONS(4466), + [anon_sym_const] = ACTIONS(4466), + [anon_sym_constexpr] = ACTIONS(4466), + [anon_sym_volatile] = ACTIONS(4466), + [anon_sym_restrict] = ACTIONS(4466), + [anon_sym___restrict__] = ACTIONS(4466), + [anon_sym__Atomic] = ACTIONS(4466), + [anon_sym__Noreturn] = ACTIONS(4466), + [anon_sym_noreturn] = ACTIONS(4466), + [anon_sym__Nonnull] = ACTIONS(4466), + [anon_sym_mutable] = ACTIONS(4466), + [anon_sym_constinit] = ACTIONS(4466), + [anon_sym_consteval] = ACTIONS(4466), + [anon_sym_alignas] = ACTIONS(4466), + [anon_sym__Alignas] = ACTIONS(4466), + [sym_primitive_type] = ACTIONS(4466), + [anon_sym_enum] = ACTIONS(4466), + [anon_sym_class] = ACTIONS(4466), + [anon_sym_struct] = ACTIONS(4466), + [anon_sym_union] = ACTIONS(4466), + [anon_sym_if] = ACTIONS(4466), + [anon_sym_switch] = ACTIONS(4466), + [anon_sym_case] = ACTIONS(4466), + [anon_sym_default] = ACTIONS(4466), + [anon_sym_while] = ACTIONS(4466), + [anon_sym_do] = ACTIONS(4466), + [anon_sym_for] = ACTIONS(4466), + [anon_sym_return] = ACTIONS(4466), + [anon_sym_break] = ACTIONS(4466), + [anon_sym_continue] = ACTIONS(4466), + [anon_sym_goto] = ACTIONS(4466), + [anon_sym_not] = ACTIONS(4466), + [anon_sym_compl] = ACTIONS(4466), + [anon_sym_DASH_DASH] = ACTIONS(4468), + [anon_sym_PLUS_PLUS] = ACTIONS(4468), + [anon_sym_sizeof] = ACTIONS(4466), + [anon_sym___alignof__] = ACTIONS(4466), + [anon_sym___alignof] = ACTIONS(4466), + [anon_sym__alignof] = ACTIONS(4466), + [anon_sym_alignof] = ACTIONS(4466), + [anon_sym__Alignof] = ACTIONS(4466), + [anon_sym_offsetof] = ACTIONS(4466), + [anon_sym__Generic] = ACTIONS(4466), + [anon_sym_typename] = ACTIONS(4466), + [anon_sym_asm] = ACTIONS(4466), + [anon_sym___asm__] = ACTIONS(4466), + [anon_sym___asm] = ACTIONS(4466), + [sym_number_literal] = ACTIONS(4468), + [anon_sym_L_SQUOTE] = ACTIONS(4468), + [anon_sym_u_SQUOTE] = ACTIONS(4468), + [anon_sym_U_SQUOTE] = ACTIONS(4468), + [anon_sym_u8_SQUOTE] = ACTIONS(4468), + [anon_sym_SQUOTE] = ACTIONS(4468), + [anon_sym_L_DQUOTE] = ACTIONS(4468), + [anon_sym_u_DQUOTE] = ACTIONS(4468), + [anon_sym_U_DQUOTE] = ACTIONS(4468), + [anon_sym_u8_DQUOTE] = ACTIONS(4468), + [anon_sym_DQUOTE] = ACTIONS(4468), + [sym_true] = ACTIONS(4466), + [sym_false] = ACTIONS(4466), + [anon_sym_NULL] = ACTIONS(4466), + [anon_sym_nullptr] = ACTIONS(4466), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4466), + [anon_sym_decltype] = ACTIONS(4466), + [anon_sym_explicit] = ACTIONS(4466), + [anon_sym_export] = ACTIONS(4466), + [anon_sym_module] = ACTIONS(4466), + [anon_sym_import] = ACTIONS(4466), + [anon_sym_template] = ACTIONS(4466), + [anon_sym_operator] = ACTIONS(4466), + [anon_sym_try] = ACTIONS(4466), + [anon_sym_delete] = ACTIONS(4466), + [anon_sym_throw] = ACTIONS(4466), + [anon_sym_namespace] = ACTIONS(4466), + [anon_sym_static_assert] = ACTIONS(4466), + [anon_sym_concept] = ACTIONS(4466), + [anon_sym_co_return] = ACTIONS(4466), + [anon_sym_co_yield] = ACTIONS(4466), + [anon_sym_R_DQUOTE] = ACTIONS(4468), + [anon_sym_LR_DQUOTE] = ACTIONS(4468), + [anon_sym_uR_DQUOTE] = ACTIONS(4468), + [anon_sym_UR_DQUOTE] = ACTIONS(4468), + [anon_sym_u8R_DQUOTE] = ACTIONS(4468), + [anon_sym_co_await] = ACTIONS(4466), + [anon_sym_new] = ACTIONS(4466), + [anon_sym_requires] = ACTIONS(4466), + [anon_sym_CARET_CARET] = ACTIONS(4468), + [anon_sym_LBRACK_COLON] = ACTIONS(4468), + [sym_this] = ACTIONS(4466), + }, + [STATE(970)] = { + [ts_builtin_sym_end] = ACTIONS(4260), + [sym_identifier] = ACTIONS(4258), + [aux_sym_preproc_include_token1] = ACTIONS(4258), + [aux_sym_preproc_def_token1] = ACTIONS(4258), + [aux_sym_preproc_if_token1] = ACTIONS(4258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4258), + [sym_preproc_directive] = ACTIONS(4258), + [anon_sym_LPAREN2] = ACTIONS(4260), + [anon_sym_BANG] = ACTIONS(4260), + [anon_sym_TILDE] = ACTIONS(4260), + [anon_sym_DASH] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4258), + [anon_sym_STAR] = ACTIONS(4260), + [anon_sym_AMP_AMP] = ACTIONS(4260), + [anon_sym_AMP] = ACTIONS(4258), + [anon_sym_SEMI] = ACTIONS(4260), + [anon_sym___extension__] = ACTIONS(4258), + [anon_sym_typedef] = ACTIONS(4258), + [anon_sym_virtual] = ACTIONS(4258), + [anon_sym_extern] = ACTIONS(4258), + [anon_sym___attribute__] = ACTIONS(4258), + [anon_sym___attribute] = ACTIONS(4258), + [anon_sym_using] = ACTIONS(4258), + [anon_sym_COLON_COLON] = ACTIONS(4260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4260), + [anon_sym___declspec] = ACTIONS(4258), + [anon_sym___based] = ACTIONS(4258), + [anon_sym___cdecl] = ACTIONS(4258), + [anon_sym___clrcall] = ACTIONS(4258), + [anon_sym___stdcall] = ACTIONS(4258), + [anon_sym___fastcall] = ACTIONS(4258), + [anon_sym___thiscall] = ACTIONS(4258), + [anon_sym___vectorcall] = ACTIONS(4258), + [anon_sym_LBRACE] = ACTIONS(4260), + [anon_sym_signed] = ACTIONS(4258), + [anon_sym_unsigned] = ACTIONS(4258), + [anon_sym_long] = ACTIONS(4258), + [anon_sym_short] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(4258), + [anon_sym_static] = ACTIONS(4258), + [anon_sym_register] = ACTIONS(4258), + [anon_sym_inline] = ACTIONS(4258), + [anon_sym___inline] = ACTIONS(4258), + [anon_sym___inline__] = ACTIONS(4258), + [anon_sym___forceinline] = ACTIONS(4258), + [anon_sym_thread_local] = ACTIONS(4258), + [anon_sym___thread] = ACTIONS(4258), + [anon_sym_const] = ACTIONS(4258), + [anon_sym_constexpr] = ACTIONS(4258), + [anon_sym_volatile] = ACTIONS(4258), + [anon_sym_restrict] = ACTIONS(4258), + [anon_sym___restrict__] = ACTIONS(4258), + [anon_sym__Atomic] = ACTIONS(4258), + [anon_sym__Noreturn] = ACTIONS(4258), + [anon_sym_noreturn] = ACTIONS(4258), + [anon_sym__Nonnull] = ACTIONS(4258), + [anon_sym_mutable] = ACTIONS(4258), + [anon_sym_constinit] = ACTIONS(4258), + [anon_sym_consteval] = ACTIONS(4258), + [anon_sym_alignas] = ACTIONS(4258), + [anon_sym__Alignas] = ACTIONS(4258), + [sym_primitive_type] = ACTIONS(4258), + [anon_sym_enum] = ACTIONS(4258), + [anon_sym_class] = ACTIONS(4258), + [anon_sym_struct] = ACTIONS(4258), + [anon_sym_union] = ACTIONS(4258), + [anon_sym_if] = ACTIONS(4258), + [anon_sym_switch] = ACTIONS(4258), + [anon_sym_case] = ACTIONS(4258), + [anon_sym_default] = ACTIONS(4258), + [anon_sym_while] = ACTIONS(4258), + [anon_sym_do] = ACTIONS(4258), + [anon_sym_for] = ACTIONS(4258), + [anon_sym_return] = ACTIONS(4258), + [anon_sym_break] = ACTIONS(4258), + [anon_sym_continue] = ACTIONS(4258), + [anon_sym_goto] = ACTIONS(4258), + [anon_sym_not] = ACTIONS(4258), + [anon_sym_compl] = ACTIONS(4258), + [anon_sym_DASH_DASH] = ACTIONS(4260), + [anon_sym_PLUS_PLUS] = ACTIONS(4260), + [anon_sym_sizeof] = ACTIONS(4258), + [anon_sym___alignof__] = ACTIONS(4258), + [anon_sym___alignof] = ACTIONS(4258), + [anon_sym__alignof] = ACTIONS(4258), + [anon_sym_alignof] = ACTIONS(4258), + [anon_sym__Alignof] = ACTIONS(4258), + [anon_sym_offsetof] = ACTIONS(4258), + [anon_sym__Generic] = ACTIONS(4258), + [anon_sym_typename] = ACTIONS(4258), + [anon_sym_asm] = ACTIONS(4258), + [anon_sym___asm__] = ACTIONS(4258), + [anon_sym___asm] = ACTIONS(4258), + [sym_number_literal] = ACTIONS(4260), + [anon_sym_L_SQUOTE] = ACTIONS(4260), + [anon_sym_u_SQUOTE] = ACTIONS(4260), + [anon_sym_U_SQUOTE] = ACTIONS(4260), + [anon_sym_u8_SQUOTE] = ACTIONS(4260), + [anon_sym_SQUOTE] = ACTIONS(4260), + [anon_sym_L_DQUOTE] = ACTIONS(4260), + [anon_sym_u_DQUOTE] = ACTIONS(4260), + [anon_sym_U_DQUOTE] = ACTIONS(4260), + [anon_sym_u8_DQUOTE] = ACTIONS(4260), + [anon_sym_DQUOTE] = ACTIONS(4260), + [sym_true] = ACTIONS(4258), + [sym_false] = ACTIONS(4258), + [anon_sym_NULL] = ACTIONS(4258), + [anon_sym_nullptr] = ACTIONS(4258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4258), + [anon_sym_decltype] = ACTIONS(4258), + [anon_sym_explicit] = ACTIONS(4258), + [anon_sym_export] = ACTIONS(4258), + [anon_sym_module] = ACTIONS(4258), + [anon_sym_import] = ACTIONS(4258), + [anon_sym_template] = ACTIONS(4258), + [anon_sym_operator] = ACTIONS(4258), + [anon_sym_try] = ACTIONS(4258), + [anon_sym_delete] = ACTIONS(4258), + [anon_sym_throw] = ACTIONS(4258), + [anon_sym_namespace] = ACTIONS(4258), + [anon_sym_static_assert] = ACTIONS(4258), + [anon_sym_concept] = ACTIONS(4258), + [anon_sym_co_return] = ACTIONS(4258), + [anon_sym_co_yield] = ACTIONS(4258), + [anon_sym_R_DQUOTE] = ACTIONS(4260), + [anon_sym_LR_DQUOTE] = ACTIONS(4260), + [anon_sym_uR_DQUOTE] = ACTIONS(4260), + [anon_sym_UR_DQUOTE] = ACTIONS(4260), + [anon_sym_u8R_DQUOTE] = ACTIONS(4260), + [anon_sym_co_await] = ACTIONS(4258), + [anon_sym_new] = ACTIONS(4258), + [anon_sym_requires] = ACTIONS(4258), + [anon_sym_CARET_CARET] = ACTIONS(4260), + [anon_sym_LBRACK_COLON] = ACTIONS(4260), + [sym_this] = ACTIONS(4258), + }, + [STATE(971)] = { + [ts_builtin_sym_end] = ACTIONS(4264), + [sym_identifier] = ACTIONS(4262), + [aux_sym_preproc_include_token1] = ACTIONS(4262), + [aux_sym_preproc_def_token1] = ACTIONS(4262), + [aux_sym_preproc_if_token1] = ACTIONS(4262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4262), + [sym_preproc_directive] = ACTIONS(4262), + [anon_sym_LPAREN2] = ACTIONS(4264), + [anon_sym_BANG] = ACTIONS(4264), + [anon_sym_TILDE] = ACTIONS(4264), + [anon_sym_DASH] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4262), + [anon_sym_STAR] = ACTIONS(4264), + [anon_sym_AMP_AMP] = ACTIONS(4264), + [anon_sym_AMP] = ACTIONS(4262), + [anon_sym_SEMI] = ACTIONS(4264), + [anon_sym___extension__] = ACTIONS(4262), + [anon_sym_typedef] = ACTIONS(4262), + [anon_sym_virtual] = ACTIONS(4262), + [anon_sym_extern] = ACTIONS(4262), + [anon_sym___attribute__] = ACTIONS(4262), + [anon_sym___attribute] = ACTIONS(4262), + [anon_sym_using] = ACTIONS(4262), + [anon_sym_COLON_COLON] = ACTIONS(4264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4264), + [anon_sym___declspec] = ACTIONS(4262), + [anon_sym___based] = ACTIONS(4262), + [anon_sym___cdecl] = ACTIONS(4262), + [anon_sym___clrcall] = ACTIONS(4262), + [anon_sym___stdcall] = ACTIONS(4262), + [anon_sym___fastcall] = ACTIONS(4262), + [anon_sym___thiscall] = ACTIONS(4262), + [anon_sym___vectorcall] = ACTIONS(4262), + [anon_sym_LBRACE] = ACTIONS(4264), + [anon_sym_signed] = ACTIONS(4262), + [anon_sym_unsigned] = ACTIONS(4262), + [anon_sym_long] = ACTIONS(4262), + [anon_sym_short] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_static] = ACTIONS(4262), + [anon_sym_register] = ACTIONS(4262), + [anon_sym_inline] = ACTIONS(4262), + [anon_sym___inline] = ACTIONS(4262), + [anon_sym___inline__] = ACTIONS(4262), + [anon_sym___forceinline] = ACTIONS(4262), + [anon_sym_thread_local] = ACTIONS(4262), + [anon_sym___thread] = ACTIONS(4262), + [anon_sym_const] = ACTIONS(4262), + [anon_sym_constexpr] = ACTIONS(4262), + [anon_sym_volatile] = ACTIONS(4262), + [anon_sym_restrict] = ACTIONS(4262), + [anon_sym___restrict__] = ACTIONS(4262), + [anon_sym__Atomic] = ACTIONS(4262), + [anon_sym__Noreturn] = ACTIONS(4262), + [anon_sym_noreturn] = ACTIONS(4262), + [anon_sym__Nonnull] = ACTIONS(4262), + [anon_sym_mutable] = ACTIONS(4262), + [anon_sym_constinit] = ACTIONS(4262), + [anon_sym_consteval] = ACTIONS(4262), + [anon_sym_alignas] = ACTIONS(4262), + [anon_sym__Alignas] = ACTIONS(4262), + [sym_primitive_type] = ACTIONS(4262), + [anon_sym_enum] = ACTIONS(4262), + [anon_sym_class] = ACTIONS(4262), + [anon_sym_struct] = ACTIONS(4262), + [anon_sym_union] = ACTIONS(4262), + [anon_sym_if] = ACTIONS(4262), + [anon_sym_switch] = ACTIONS(4262), + [anon_sym_case] = ACTIONS(4262), + [anon_sym_default] = ACTIONS(4262), + [anon_sym_while] = ACTIONS(4262), + [anon_sym_do] = ACTIONS(4262), + [anon_sym_for] = ACTIONS(4262), + [anon_sym_return] = ACTIONS(4262), + [anon_sym_break] = ACTIONS(4262), + [anon_sym_continue] = ACTIONS(4262), + [anon_sym_goto] = ACTIONS(4262), + [anon_sym_not] = ACTIONS(4262), + [anon_sym_compl] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4264), + [anon_sym_PLUS_PLUS] = ACTIONS(4264), + [anon_sym_sizeof] = ACTIONS(4262), + [anon_sym___alignof__] = ACTIONS(4262), + [anon_sym___alignof] = ACTIONS(4262), + [anon_sym__alignof] = ACTIONS(4262), + [anon_sym_alignof] = ACTIONS(4262), + [anon_sym__Alignof] = ACTIONS(4262), + [anon_sym_offsetof] = ACTIONS(4262), + [anon_sym__Generic] = ACTIONS(4262), + [anon_sym_typename] = ACTIONS(4262), + [anon_sym_asm] = ACTIONS(4262), + [anon_sym___asm__] = ACTIONS(4262), + [anon_sym___asm] = ACTIONS(4262), + [sym_number_literal] = ACTIONS(4264), + [anon_sym_L_SQUOTE] = ACTIONS(4264), + [anon_sym_u_SQUOTE] = ACTIONS(4264), + [anon_sym_U_SQUOTE] = ACTIONS(4264), + [anon_sym_u8_SQUOTE] = ACTIONS(4264), + [anon_sym_SQUOTE] = ACTIONS(4264), + [anon_sym_L_DQUOTE] = ACTIONS(4264), + [anon_sym_u_DQUOTE] = ACTIONS(4264), + [anon_sym_U_DQUOTE] = ACTIONS(4264), + [anon_sym_u8_DQUOTE] = ACTIONS(4264), + [anon_sym_DQUOTE] = ACTIONS(4264), + [sym_true] = ACTIONS(4262), + [sym_false] = ACTIONS(4262), + [anon_sym_NULL] = ACTIONS(4262), + [anon_sym_nullptr] = ACTIONS(4262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4262), + [anon_sym_decltype] = ACTIONS(4262), + [anon_sym_explicit] = ACTIONS(4262), + [anon_sym_export] = ACTIONS(4262), + [anon_sym_module] = ACTIONS(4262), + [anon_sym_import] = ACTIONS(4262), + [anon_sym_template] = ACTIONS(4262), + [anon_sym_operator] = ACTIONS(4262), + [anon_sym_try] = ACTIONS(4262), + [anon_sym_delete] = ACTIONS(4262), + [anon_sym_throw] = ACTIONS(4262), + [anon_sym_namespace] = ACTIONS(4262), + [anon_sym_static_assert] = ACTIONS(4262), + [anon_sym_concept] = ACTIONS(4262), + [anon_sym_co_return] = ACTIONS(4262), + [anon_sym_co_yield] = ACTIONS(4262), + [anon_sym_R_DQUOTE] = ACTIONS(4264), + [anon_sym_LR_DQUOTE] = ACTIONS(4264), + [anon_sym_uR_DQUOTE] = ACTIONS(4264), + [anon_sym_UR_DQUOTE] = ACTIONS(4264), + [anon_sym_u8R_DQUOTE] = ACTIONS(4264), + [anon_sym_co_await] = ACTIONS(4262), + [anon_sym_new] = ACTIONS(4262), + [anon_sym_requires] = ACTIONS(4262), + [anon_sym_CARET_CARET] = ACTIONS(4264), + [anon_sym_LBRACK_COLON] = ACTIONS(4264), + [sym_this] = ACTIONS(4262), + }, + [STATE(972)] = { + [ts_builtin_sym_end] = ACTIONS(4268), + [sym_identifier] = ACTIONS(4266), + [aux_sym_preproc_include_token1] = ACTIONS(4266), + [aux_sym_preproc_def_token1] = ACTIONS(4266), + [aux_sym_preproc_if_token1] = ACTIONS(4266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4266), + [sym_preproc_directive] = ACTIONS(4266), + [anon_sym_LPAREN2] = ACTIONS(4268), + [anon_sym_BANG] = ACTIONS(4268), + [anon_sym_TILDE] = ACTIONS(4268), + [anon_sym_DASH] = ACTIONS(4266), + [anon_sym_PLUS] = ACTIONS(4266), + [anon_sym_STAR] = ACTIONS(4268), + [anon_sym_AMP_AMP] = ACTIONS(4268), + [anon_sym_AMP] = ACTIONS(4266), + [anon_sym_SEMI] = ACTIONS(4268), + [anon_sym___extension__] = ACTIONS(4266), + [anon_sym_typedef] = ACTIONS(4266), + [anon_sym_virtual] = ACTIONS(4266), + [anon_sym_extern] = ACTIONS(4266), + [anon_sym___attribute__] = ACTIONS(4266), + [anon_sym___attribute] = ACTIONS(4266), + [anon_sym_using] = ACTIONS(4266), + [anon_sym_COLON_COLON] = ACTIONS(4268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4268), + [anon_sym___declspec] = ACTIONS(4266), + [anon_sym___based] = ACTIONS(4266), + [anon_sym___cdecl] = ACTIONS(4266), + [anon_sym___clrcall] = ACTIONS(4266), + [anon_sym___stdcall] = ACTIONS(4266), + [anon_sym___fastcall] = ACTIONS(4266), + [anon_sym___thiscall] = ACTIONS(4266), + [anon_sym___vectorcall] = ACTIONS(4266), + [anon_sym_LBRACE] = ACTIONS(4268), + [anon_sym_signed] = ACTIONS(4266), + [anon_sym_unsigned] = ACTIONS(4266), + [anon_sym_long] = ACTIONS(4266), + [anon_sym_short] = ACTIONS(4266), + [anon_sym_LBRACK] = ACTIONS(4266), + [anon_sym_static] = ACTIONS(4266), + [anon_sym_register] = ACTIONS(4266), + [anon_sym_inline] = ACTIONS(4266), + [anon_sym___inline] = ACTIONS(4266), + [anon_sym___inline__] = ACTIONS(4266), + [anon_sym___forceinline] = ACTIONS(4266), + [anon_sym_thread_local] = ACTIONS(4266), + [anon_sym___thread] = ACTIONS(4266), + [anon_sym_const] = ACTIONS(4266), + [anon_sym_constexpr] = ACTIONS(4266), + [anon_sym_volatile] = ACTIONS(4266), + [anon_sym_restrict] = ACTIONS(4266), + [anon_sym___restrict__] = ACTIONS(4266), + [anon_sym__Atomic] = ACTIONS(4266), + [anon_sym__Noreturn] = ACTIONS(4266), + [anon_sym_noreturn] = ACTIONS(4266), + [anon_sym__Nonnull] = ACTIONS(4266), + [anon_sym_mutable] = ACTIONS(4266), + [anon_sym_constinit] = ACTIONS(4266), + [anon_sym_consteval] = ACTIONS(4266), + [anon_sym_alignas] = ACTIONS(4266), + [anon_sym__Alignas] = ACTIONS(4266), + [sym_primitive_type] = ACTIONS(4266), + [anon_sym_enum] = ACTIONS(4266), + [anon_sym_class] = ACTIONS(4266), + [anon_sym_struct] = ACTIONS(4266), + [anon_sym_union] = ACTIONS(4266), + [anon_sym_if] = ACTIONS(4266), + [anon_sym_switch] = ACTIONS(4266), + [anon_sym_case] = ACTIONS(4266), + [anon_sym_default] = ACTIONS(4266), + [anon_sym_while] = ACTIONS(4266), + [anon_sym_do] = ACTIONS(4266), + [anon_sym_for] = ACTIONS(4266), + [anon_sym_return] = ACTIONS(4266), + [anon_sym_break] = ACTIONS(4266), + [anon_sym_continue] = ACTIONS(4266), + [anon_sym_goto] = ACTIONS(4266), + [anon_sym_not] = ACTIONS(4266), + [anon_sym_compl] = ACTIONS(4266), + [anon_sym_DASH_DASH] = ACTIONS(4268), + [anon_sym_PLUS_PLUS] = ACTIONS(4268), + [anon_sym_sizeof] = ACTIONS(4266), + [anon_sym___alignof__] = ACTIONS(4266), + [anon_sym___alignof] = ACTIONS(4266), + [anon_sym__alignof] = ACTIONS(4266), + [anon_sym_alignof] = ACTIONS(4266), + [anon_sym__Alignof] = ACTIONS(4266), + [anon_sym_offsetof] = ACTIONS(4266), + [anon_sym__Generic] = ACTIONS(4266), + [anon_sym_typename] = ACTIONS(4266), + [anon_sym_asm] = ACTIONS(4266), + [anon_sym___asm__] = ACTIONS(4266), + [anon_sym___asm] = ACTIONS(4266), + [sym_number_literal] = ACTIONS(4268), + [anon_sym_L_SQUOTE] = ACTIONS(4268), + [anon_sym_u_SQUOTE] = ACTIONS(4268), + [anon_sym_U_SQUOTE] = ACTIONS(4268), + [anon_sym_u8_SQUOTE] = ACTIONS(4268), + [anon_sym_SQUOTE] = ACTIONS(4268), + [anon_sym_L_DQUOTE] = ACTIONS(4268), + [anon_sym_u_DQUOTE] = ACTIONS(4268), + [anon_sym_U_DQUOTE] = ACTIONS(4268), + [anon_sym_u8_DQUOTE] = ACTIONS(4268), + [anon_sym_DQUOTE] = ACTIONS(4268), + [sym_true] = ACTIONS(4266), + [sym_false] = ACTIONS(4266), + [anon_sym_NULL] = ACTIONS(4266), + [anon_sym_nullptr] = ACTIONS(4266), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4266), + [anon_sym_decltype] = ACTIONS(4266), + [anon_sym_explicit] = ACTIONS(4266), + [anon_sym_export] = ACTIONS(4266), + [anon_sym_module] = ACTIONS(4266), + [anon_sym_import] = ACTIONS(4266), + [anon_sym_template] = ACTIONS(4266), + [anon_sym_operator] = ACTIONS(4266), + [anon_sym_try] = ACTIONS(4266), + [anon_sym_delete] = ACTIONS(4266), + [anon_sym_throw] = ACTIONS(4266), + [anon_sym_namespace] = ACTIONS(4266), + [anon_sym_static_assert] = ACTIONS(4266), + [anon_sym_concept] = ACTIONS(4266), + [anon_sym_co_return] = ACTIONS(4266), + [anon_sym_co_yield] = ACTIONS(4266), + [anon_sym_R_DQUOTE] = ACTIONS(4268), + [anon_sym_LR_DQUOTE] = ACTIONS(4268), + [anon_sym_uR_DQUOTE] = ACTIONS(4268), + [anon_sym_UR_DQUOTE] = ACTIONS(4268), + [anon_sym_u8R_DQUOTE] = ACTIONS(4268), + [anon_sym_co_await] = ACTIONS(4266), + [anon_sym_new] = ACTIONS(4266), + [anon_sym_requires] = ACTIONS(4266), + [anon_sym_CARET_CARET] = ACTIONS(4268), + [anon_sym_LBRACK_COLON] = ACTIONS(4268), + [sym_this] = ACTIONS(4266), + }, + [STATE(973)] = { + [ts_builtin_sym_end] = ACTIONS(3945), + [sym_identifier] = ACTIONS(3943), + [aux_sym_preproc_include_token1] = ACTIONS(3943), + [aux_sym_preproc_def_token1] = ACTIONS(3943), + [aux_sym_preproc_if_token1] = ACTIONS(3943), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3943), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3943), + [sym_preproc_directive] = ACTIONS(3943), + [anon_sym_LPAREN2] = ACTIONS(3945), + [anon_sym_BANG] = ACTIONS(3945), + [anon_sym_TILDE] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3943), + [anon_sym_STAR] = ACTIONS(3945), + [anon_sym_AMP_AMP] = ACTIONS(3945), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_SEMI] = ACTIONS(3945), + [anon_sym___extension__] = ACTIONS(3943), + [anon_sym_typedef] = ACTIONS(3943), + [anon_sym_virtual] = ACTIONS(3943), + [anon_sym_extern] = ACTIONS(3943), + [anon_sym___attribute__] = ACTIONS(3943), + [anon_sym___attribute] = ACTIONS(3943), + [anon_sym_using] = ACTIONS(3943), + [anon_sym_COLON_COLON] = ACTIONS(3945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3945), + [anon_sym___declspec] = ACTIONS(3943), + [anon_sym___based] = ACTIONS(3943), + [anon_sym___cdecl] = ACTIONS(3943), + [anon_sym___clrcall] = ACTIONS(3943), + [anon_sym___stdcall] = ACTIONS(3943), + [anon_sym___fastcall] = ACTIONS(3943), + [anon_sym___thiscall] = ACTIONS(3943), + [anon_sym___vectorcall] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_signed] = ACTIONS(3943), + [anon_sym_unsigned] = ACTIONS(3943), + [anon_sym_long] = ACTIONS(3943), + [anon_sym_short] = ACTIONS(3943), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_static] = ACTIONS(3943), + [anon_sym_register] = ACTIONS(3943), + [anon_sym_inline] = ACTIONS(3943), + [anon_sym___inline] = ACTIONS(3943), + [anon_sym___inline__] = ACTIONS(3943), + [anon_sym___forceinline] = ACTIONS(3943), + [anon_sym_thread_local] = ACTIONS(3943), + [anon_sym___thread] = ACTIONS(3943), + [anon_sym_const] = ACTIONS(3943), + [anon_sym_constexpr] = ACTIONS(3943), + [anon_sym_volatile] = ACTIONS(3943), + [anon_sym_restrict] = ACTIONS(3943), + [anon_sym___restrict__] = ACTIONS(3943), + [anon_sym__Atomic] = ACTIONS(3943), + [anon_sym__Noreturn] = ACTIONS(3943), + [anon_sym_noreturn] = ACTIONS(3943), + [anon_sym__Nonnull] = ACTIONS(3943), + [anon_sym_mutable] = ACTIONS(3943), + [anon_sym_constinit] = ACTIONS(3943), + [anon_sym_consteval] = ACTIONS(3943), + [anon_sym_alignas] = ACTIONS(3943), + [anon_sym__Alignas] = ACTIONS(3943), + [sym_primitive_type] = ACTIONS(3943), + [anon_sym_enum] = ACTIONS(3943), + [anon_sym_class] = ACTIONS(3943), + [anon_sym_struct] = ACTIONS(3943), + [anon_sym_union] = ACTIONS(3943), + [anon_sym_if] = ACTIONS(3943), + [anon_sym_switch] = ACTIONS(3943), + [anon_sym_case] = ACTIONS(3943), + [anon_sym_default] = ACTIONS(3943), + [anon_sym_while] = ACTIONS(3943), + [anon_sym_do] = ACTIONS(3943), + [anon_sym_for] = ACTIONS(3943), + [anon_sym_return] = ACTIONS(3943), + [anon_sym_break] = ACTIONS(3943), + [anon_sym_continue] = ACTIONS(3943), + [anon_sym_goto] = ACTIONS(3943), + [anon_sym_not] = ACTIONS(3943), + [anon_sym_compl] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3945), + [anon_sym_PLUS_PLUS] = ACTIONS(3945), + [anon_sym_sizeof] = ACTIONS(3943), + [anon_sym___alignof__] = ACTIONS(3943), + [anon_sym___alignof] = ACTIONS(3943), + [anon_sym__alignof] = ACTIONS(3943), + [anon_sym_alignof] = ACTIONS(3943), + [anon_sym__Alignof] = ACTIONS(3943), + [anon_sym_offsetof] = ACTIONS(3943), + [anon_sym__Generic] = ACTIONS(3943), + [anon_sym_typename] = ACTIONS(3943), + [anon_sym_asm] = ACTIONS(3943), + [anon_sym___asm__] = ACTIONS(3943), + [anon_sym___asm] = ACTIONS(3943), + [sym_number_literal] = ACTIONS(3945), + [anon_sym_L_SQUOTE] = ACTIONS(3945), + [anon_sym_u_SQUOTE] = ACTIONS(3945), + [anon_sym_U_SQUOTE] = ACTIONS(3945), + [anon_sym_u8_SQUOTE] = ACTIONS(3945), + [anon_sym_SQUOTE] = ACTIONS(3945), + [anon_sym_L_DQUOTE] = ACTIONS(3945), + [anon_sym_u_DQUOTE] = ACTIONS(3945), + [anon_sym_U_DQUOTE] = ACTIONS(3945), + [anon_sym_u8_DQUOTE] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3945), + [sym_true] = ACTIONS(3943), + [sym_false] = ACTIONS(3943), + [anon_sym_NULL] = ACTIONS(3943), + [anon_sym_nullptr] = ACTIONS(3943), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3943), + [anon_sym_decltype] = ACTIONS(3943), + [anon_sym_explicit] = ACTIONS(3943), + [anon_sym_export] = ACTIONS(3943), + [anon_sym_module] = ACTIONS(3943), + [anon_sym_import] = ACTIONS(3943), + [anon_sym_template] = ACTIONS(3943), + [anon_sym_operator] = ACTIONS(3943), + [anon_sym_try] = ACTIONS(3943), + [anon_sym_delete] = ACTIONS(3943), + [anon_sym_throw] = ACTIONS(3943), + [anon_sym_namespace] = ACTIONS(3943), + [anon_sym_static_assert] = ACTIONS(3943), + [anon_sym_concept] = ACTIONS(3943), + [anon_sym_co_return] = ACTIONS(3943), + [anon_sym_co_yield] = ACTIONS(3943), + [anon_sym_R_DQUOTE] = ACTIONS(3945), + [anon_sym_LR_DQUOTE] = ACTIONS(3945), + [anon_sym_uR_DQUOTE] = ACTIONS(3945), + [anon_sym_UR_DQUOTE] = ACTIONS(3945), + [anon_sym_u8R_DQUOTE] = ACTIONS(3945), + [anon_sym_co_await] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3943), + [anon_sym_requires] = ACTIONS(3943), + [anon_sym_CARET_CARET] = ACTIONS(3945), + [anon_sym_LBRACK_COLON] = ACTIONS(3945), + [sym_this] = ACTIONS(3943), + }, + [STATE(974)] = { + [sym_preproc_def] = STATE(941), + [sym_preproc_function_def] = STATE(941), + [sym_preproc_call] = STATE(941), + [sym_preproc_if_in_field_declaration_list] = STATE(941), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(941), + [sym_type_definition] = STATE(941), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8092), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(941), + [sym_field_declaration] = STATE(941), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(941), + [sym_operator_cast] = STATE(9211), + [sym_inline_method_definition] = STATE(941), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(941), + [sym_operator_cast_declaration] = STATE(941), + [sym_constructor_or_destructor_definition] = STATE(941), + [sym_constructor_or_destructor_declaration] = STATE(941), + [sym_friend_declaration] = STATE(941), + [sym_access_specifier] = STATE(11030), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(941), + [sym_alias_declaration] = STATE(941), + [sym_static_assert_declaration] = STATE(941), + [sym_consteval_block_declaration] = STATE(941), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(941), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9455), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(4686), + [aux_sym_preproc_if_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), + [sym_preproc_directive] = ACTIONS(4692), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(4880), + [anon_sym___extension__] = ACTIONS(4696), + [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4700), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4882), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4704), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(4708), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(4712), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(975)] = { + [ts_builtin_sym_end] = ACTIONS(4272), + [sym_identifier] = ACTIONS(4270), + [aux_sym_preproc_include_token1] = ACTIONS(4270), + [aux_sym_preproc_def_token1] = ACTIONS(4270), + [aux_sym_preproc_if_token1] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), + [sym_preproc_directive] = ACTIONS(4270), + [anon_sym_LPAREN2] = ACTIONS(4272), + [anon_sym_BANG] = ACTIONS(4272), + [anon_sym_TILDE] = ACTIONS(4272), + [anon_sym_DASH] = ACTIONS(4270), + [anon_sym_PLUS] = ACTIONS(4270), + [anon_sym_STAR] = ACTIONS(4272), + [anon_sym_AMP_AMP] = ACTIONS(4272), + [anon_sym_AMP] = ACTIONS(4270), + [anon_sym_SEMI] = ACTIONS(4272), + [anon_sym___extension__] = ACTIONS(4270), + [anon_sym_typedef] = ACTIONS(4270), + [anon_sym_virtual] = ACTIONS(4270), + [anon_sym_extern] = ACTIONS(4270), + [anon_sym___attribute__] = ACTIONS(4270), + [anon_sym___attribute] = ACTIONS(4270), + [anon_sym_using] = ACTIONS(4270), + [anon_sym_COLON_COLON] = ACTIONS(4272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), + [anon_sym___declspec] = ACTIONS(4270), + [anon_sym___based] = ACTIONS(4270), + [anon_sym___cdecl] = ACTIONS(4270), + [anon_sym___clrcall] = ACTIONS(4270), + [anon_sym___stdcall] = ACTIONS(4270), + [anon_sym___fastcall] = ACTIONS(4270), + [anon_sym___thiscall] = ACTIONS(4270), + [anon_sym___vectorcall] = ACTIONS(4270), + [anon_sym_LBRACE] = ACTIONS(4272), + [anon_sym_signed] = ACTIONS(4270), + [anon_sym_unsigned] = ACTIONS(4270), + [anon_sym_long] = ACTIONS(4270), + [anon_sym_short] = ACTIONS(4270), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_static] = ACTIONS(4270), + [anon_sym_register] = ACTIONS(4270), + [anon_sym_inline] = ACTIONS(4270), + [anon_sym___inline] = ACTIONS(4270), + [anon_sym___inline__] = ACTIONS(4270), + [anon_sym___forceinline] = ACTIONS(4270), + [anon_sym_thread_local] = ACTIONS(4270), + [anon_sym___thread] = ACTIONS(4270), + [anon_sym_const] = ACTIONS(4270), + [anon_sym_constexpr] = ACTIONS(4270), + [anon_sym_volatile] = ACTIONS(4270), + [anon_sym_restrict] = ACTIONS(4270), + [anon_sym___restrict__] = ACTIONS(4270), + [anon_sym__Atomic] = ACTIONS(4270), + [anon_sym__Noreturn] = ACTIONS(4270), + [anon_sym_noreturn] = ACTIONS(4270), + [anon_sym__Nonnull] = ACTIONS(4270), + [anon_sym_mutable] = ACTIONS(4270), + [anon_sym_constinit] = ACTIONS(4270), + [anon_sym_consteval] = ACTIONS(4270), + [anon_sym_alignas] = ACTIONS(4270), + [anon_sym__Alignas] = ACTIONS(4270), + [sym_primitive_type] = ACTIONS(4270), + [anon_sym_enum] = ACTIONS(4270), + [anon_sym_class] = ACTIONS(4270), + [anon_sym_struct] = ACTIONS(4270), + [anon_sym_union] = ACTIONS(4270), + [anon_sym_if] = ACTIONS(4270), + [anon_sym_switch] = ACTIONS(4270), + [anon_sym_case] = ACTIONS(4270), + [anon_sym_default] = ACTIONS(4270), + [anon_sym_while] = ACTIONS(4270), + [anon_sym_do] = ACTIONS(4270), + [anon_sym_for] = ACTIONS(4270), + [anon_sym_return] = ACTIONS(4270), + [anon_sym_break] = ACTIONS(4270), + [anon_sym_continue] = ACTIONS(4270), + [anon_sym_goto] = ACTIONS(4270), + [anon_sym_not] = ACTIONS(4270), + [anon_sym_compl] = ACTIONS(4270), + [anon_sym_DASH_DASH] = ACTIONS(4272), + [anon_sym_PLUS_PLUS] = ACTIONS(4272), + [anon_sym_sizeof] = ACTIONS(4270), + [anon_sym___alignof__] = ACTIONS(4270), + [anon_sym___alignof] = ACTIONS(4270), + [anon_sym__alignof] = ACTIONS(4270), + [anon_sym_alignof] = ACTIONS(4270), + [anon_sym__Alignof] = ACTIONS(4270), + [anon_sym_offsetof] = ACTIONS(4270), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4270), + [anon_sym_asm] = ACTIONS(4270), + [anon_sym___asm__] = ACTIONS(4270), + [anon_sym___asm] = ACTIONS(4270), + [sym_number_literal] = ACTIONS(4272), + [anon_sym_L_SQUOTE] = ACTIONS(4272), + [anon_sym_u_SQUOTE] = ACTIONS(4272), + [anon_sym_U_SQUOTE] = ACTIONS(4272), + [anon_sym_u8_SQUOTE] = ACTIONS(4272), + [anon_sym_SQUOTE] = ACTIONS(4272), + [anon_sym_L_DQUOTE] = ACTIONS(4272), + [anon_sym_u_DQUOTE] = ACTIONS(4272), + [anon_sym_U_DQUOTE] = ACTIONS(4272), + [anon_sym_u8_DQUOTE] = ACTIONS(4272), + [anon_sym_DQUOTE] = ACTIONS(4272), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4270), + [anon_sym_nullptr] = ACTIONS(4270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4270), + [anon_sym_decltype] = ACTIONS(4270), + [anon_sym_explicit] = ACTIONS(4270), + [anon_sym_export] = ACTIONS(4270), + [anon_sym_module] = ACTIONS(4270), + [anon_sym_import] = ACTIONS(4270), + [anon_sym_template] = ACTIONS(4270), + [anon_sym_operator] = ACTIONS(4270), + [anon_sym_try] = ACTIONS(4270), + [anon_sym_delete] = ACTIONS(4270), + [anon_sym_throw] = ACTIONS(4270), + [anon_sym_namespace] = ACTIONS(4270), + [anon_sym_static_assert] = ACTIONS(4270), + [anon_sym_concept] = ACTIONS(4270), + [anon_sym_co_return] = ACTIONS(4270), + [anon_sym_co_yield] = ACTIONS(4270), + [anon_sym_R_DQUOTE] = ACTIONS(4272), + [anon_sym_LR_DQUOTE] = ACTIONS(4272), + [anon_sym_uR_DQUOTE] = ACTIONS(4272), + [anon_sym_UR_DQUOTE] = ACTIONS(4272), + [anon_sym_u8R_DQUOTE] = ACTIONS(4272), + [anon_sym_co_await] = ACTIONS(4270), + [anon_sym_new] = ACTIONS(4270), + [anon_sym_requires] = ACTIONS(4270), + [anon_sym_CARET_CARET] = ACTIONS(4272), + [anon_sym_LBRACK_COLON] = ACTIONS(4272), + [sym_this] = ACTIONS(4270), + }, + [STATE(976)] = { + [ts_builtin_sym_end] = ACTIONS(4272), + [sym_identifier] = ACTIONS(4270), + [aux_sym_preproc_include_token1] = ACTIONS(4270), + [aux_sym_preproc_def_token1] = ACTIONS(4270), + [aux_sym_preproc_if_token1] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), + [sym_preproc_directive] = ACTIONS(4270), + [anon_sym_LPAREN2] = ACTIONS(4272), + [anon_sym_BANG] = ACTIONS(4272), + [anon_sym_TILDE] = ACTIONS(4272), + [anon_sym_DASH] = ACTIONS(4270), + [anon_sym_PLUS] = ACTIONS(4270), + [anon_sym_STAR] = ACTIONS(4272), + [anon_sym_AMP_AMP] = ACTIONS(4272), + [anon_sym_AMP] = ACTIONS(4270), + [anon_sym_SEMI] = ACTIONS(4272), + [anon_sym___extension__] = ACTIONS(4270), + [anon_sym_typedef] = ACTIONS(4270), + [anon_sym_virtual] = ACTIONS(4270), + [anon_sym_extern] = ACTIONS(4270), + [anon_sym___attribute__] = ACTIONS(4270), + [anon_sym___attribute] = ACTIONS(4270), + [anon_sym_using] = ACTIONS(4270), + [anon_sym_COLON_COLON] = ACTIONS(4272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), + [anon_sym___declspec] = ACTIONS(4270), + [anon_sym___based] = ACTIONS(4270), + [anon_sym___cdecl] = ACTIONS(4270), + [anon_sym___clrcall] = ACTIONS(4270), + [anon_sym___stdcall] = ACTIONS(4270), + [anon_sym___fastcall] = ACTIONS(4270), + [anon_sym___thiscall] = ACTIONS(4270), + [anon_sym___vectorcall] = ACTIONS(4270), + [anon_sym_LBRACE] = ACTIONS(4272), + [anon_sym_signed] = ACTIONS(4270), + [anon_sym_unsigned] = ACTIONS(4270), + [anon_sym_long] = ACTIONS(4270), + [anon_sym_short] = ACTIONS(4270), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_static] = ACTIONS(4270), + [anon_sym_register] = ACTIONS(4270), + [anon_sym_inline] = ACTIONS(4270), + [anon_sym___inline] = ACTIONS(4270), + [anon_sym___inline__] = ACTIONS(4270), + [anon_sym___forceinline] = ACTIONS(4270), + [anon_sym_thread_local] = ACTIONS(4270), + [anon_sym___thread] = ACTIONS(4270), + [anon_sym_const] = ACTIONS(4270), + [anon_sym_constexpr] = ACTIONS(4270), + [anon_sym_volatile] = ACTIONS(4270), + [anon_sym_restrict] = ACTIONS(4270), + [anon_sym___restrict__] = ACTIONS(4270), + [anon_sym__Atomic] = ACTIONS(4270), + [anon_sym__Noreturn] = ACTIONS(4270), + [anon_sym_noreturn] = ACTIONS(4270), + [anon_sym__Nonnull] = ACTIONS(4270), + [anon_sym_mutable] = ACTIONS(4270), + [anon_sym_constinit] = ACTIONS(4270), + [anon_sym_consteval] = ACTIONS(4270), + [anon_sym_alignas] = ACTIONS(4270), + [anon_sym__Alignas] = ACTIONS(4270), + [sym_primitive_type] = ACTIONS(4270), + [anon_sym_enum] = ACTIONS(4270), + [anon_sym_class] = ACTIONS(4270), + [anon_sym_struct] = ACTIONS(4270), + [anon_sym_union] = ACTIONS(4270), + [anon_sym_if] = ACTIONS(4270), + [anon_sym_switch] = ACTIONS(4270), + [anon_sym_case] = ACTIONS(4270), + [anon_sym_default] = ACTIONS(4270), + [anon_sym_while] = ACTIONS(4270), + [anon_sym_do] = ACTIONS(4270), + [anon_sym_for] = ACTIONS(4270), + [anon_sym_return] = ACTIONS(4270), + [anon_sym_break] = ACTIONS(4270), + [anon_sym_continue] = ACTIONS(4270), + [anon_sym_goto] = ACTIONS(4270), + [anon_sym_not] = ACTIONS(4270), + [anon_sym_compl] = ACTIONS(4270), + [anon_sym_DASH_DASH] = ACTIONS(4272), + [anon_sym_PLUS_PLUS] = ACTIONS(4272), + [anon_sym_sizeof] = ACTIONS(4270), + [anon_sym___alignof__] = ACTIONS(4270), + [anon_sym___alignof] = ACTIONS(4270), + [anon_sym__alignof] = ACTIONS(4270), + [anon_sym_alignof] = ACTIONS(4270), + [anon_sym__Alignof] = ACTIONS(4270), + [anon_sym_offsetof] = ACTIONS(4270), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4270), + [anon_sym_asm] = ACTIONS(4270), + [anon_sym___asm__] = ACTIONS(4270), + [anon_sym___asm] = ACTIONS(4270), + [sym_number_literal] = ACTIONS(4272), + [anon_sym_L_SQUOTE] = ACTIONS(4272), + [anon_sym_u_SQUOTE] = ACTIONS(4272), + [anon_sym_U_SQUOTE] = ACTIONS(4272), + [anon_sym_u8_SQUOTE] = ACTIONS(4272), + [anon_sym_SQUOTE] = ACTIONS(4272), + [anon_sym_L_DQUOTE] = ACTIONS(4272), + [anon_sym_u_DQUOTE] = ACTIONS(4272), + [anon_sym_U_DQUOTE] = ACTIONS(4272), + [anon_sym_u8_DQUOTE] = ACTIONS(4272), + [anon_sym_DQUOTE] = ACTIONS(4272), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [anon_sym_NULL] = ACTIONS(4270), + [anon_sym_nullptr] = ACTIONS(4270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4270), + [anon_sym_decltype] = ACTIONS(4270), + [anon_sym_explicit] = ACTIONS(4270), + [anon_sym_export] = ACTIONS(4270), + [anon_sym_module] = ACTIONS(4270), + [anon_sym_import] = ACTIONS(4270), + [anon_sym_template] = ACTIONS(4270), + [anon_sym_operator] = ACTIONS(4270), + [anon_sym_try] = ACTIONS(4270), + [anon_sym_delete] = ACTIONS(4270), + [anon_sym_throw] = ACTIONS(4270), + [anon_sym_namespace] = ACTIONS(4270), + [anon_sym_static_assert] = ACTIONS(4270), + [anon_sym_concept] = ACTIONS(4270), + [anon_sym_co_return] = ACTIONS(4270), + [anon_sym_co_yield] = ACTIONS(4270), + [anon_sym_R_DQUOTE] = ACTIONS(4272), + [anon_sym_LR_DQUOTE] = ACTIONS(4272), + [anon_sym_uR_DQUOTE] = ACTIONS(4272), + [anon_sym_UR_DQUOTE] = ACTIONS(4272), + [anon_sym_u8R_DQUOTE] = ACTIONS(4272), + [anon_sym_co_await] = ACTIONS(4270), + [anon_sym_new] = ACTIONS(4270), + [anon_sym_requires] = ACTIONS(4270), + [anon_sym_CARET_CARET] = ACTIONS(4272), + [anon_sym_LBRACK_COLON] = ACTIONS(4272), + [sym_this] = ACTIONS(4270), + }, + [STATE(977)] = { + [ts_builtin_sym_end] = ACTIONS(4026), + [sym_identifier] = ACTIONS(4024), + [aux_sym_preproc_include_token1] = ACTIONS(4024), + [aux_sym_preproc_def_token1] = ACTIONS(4024), + [aux_sym_preproc_if_token1] = ACTIONS(4024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4024), + [sym_preproc_directive] = ACTIONS(4024), + [anon_sym_LPAREN2] = ACTIONS(4026), + [anon_sym_BANG] = ACTIONS(4026), + [anon_sym_TILDE] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_STAR] = ACTIONS(4026), + [anon_sym_AMP_AMP] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4024), + [anon_sym_SEMI] = ACTIONS(4026), + [anon_sym___extension__] = ACTIONS(4024), + [anon_sym_typedef] = ACTIONS(4024), + [anon_sym_virtual] = ACTIONS(4024), + [anon_sym_extern] = ACTIONS(4024), + [anon_sym___attribute__] = ACTIONS(4024), + [anon_sym___attribute] = ACTIONS(4024), + [anon_sym_using] = ACTIONS(4024), + [anon_sym_COLON_COLON] = ACTIONS(4026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4026), + [anon_sym___declspec] = ACTIONS(4024), + [anon_sym___based] = ACTIONS(4024), + [anon_sym___cdecl] = ACTIONS(4024), + [anon_sym___clrcall] = ACTIONS(4024), + [anon_sym___stdcall] = ACTIONS(4024), + [anon_sym___fastcall] = ACTIONS(4024), + [anon_sym___thiscall] = ACTIONS(4024), + [anon_sym___vectorcall] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4026), + [anon_sym_signed] = ACTIONS(4024), + [anon_sym_unsigned] = ACTIONS(4024), + [anon_sym_long] = ACTIONS(4024), + [anon_sym_short] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4024), + [anon_sym_static] = ACTIONS(4024), + [anon_sym_register] = ACTIONS(4024), + [anon_sym_inline] = ACTIONS(4024), + [anon_sym___inline] = ACTIONS(4024), + [anon_sym___inline__] = ACTIONS(4024), + [anon_sym___forceinline] = ACTIONS(4024), + [anon_sym_thread_local] = ACTIONS(4024), + [anon_sym___thread] = ACTIONS(4024), + [anon_sym_const] = ACTIONS(4024), + [anon_sym_constexpr] = ACTIONS(4024), + [anon_sym_volatile] = ACTIONS(4024), + [anon_sym_restrict] = ACTIONS(4024), + [anon_sym___restrict__] = ACTIONS(4024), + [anon_sym__Atomic] = ACTIONS(4024), + [anon_sym__Noreturn] = ACTIONS(4024), + [anon_sym_noreturn] = ACTIONS(4024), + [anon_sym__Nonnull] = ACTIONS(4024), + [anon_sym_mutable] = ACTIONS(4024), + [anon_sym_constinit] = ACTIONS(4024), + [anon_sym_consteval] = ACTIONS(4024), + [anon_sym_alignas] = ACTIONS(4024), + [anon_sym__Alignas] = ACTIONS(4024), + [sym_primitive_type] = ACTIONS(4024), + [anon_sym_enum] = ACTIONS(4024), + [anon_sym_class] = ACTIONS(4024), + [anon_sym_struct] = ACTIONS(4024), + [anon_sym_union] = ACTIONS(4024), + [anon_sym_if] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_case] = ACTIONS(4024), + [anon_sym_default] = ACTIONS(4024), + [anon_sym_while] = ACTIONS(4024), + [anon_sym_do] = ACTIONS(4024), + [anon_sym_for] = ACTIONS(4024), + [anon_sym_return] = ACTIONS(4024), + [anon_sym_break] = ACTIONS(4024), + [anon_sym_continue] = ACTIONS(4024), + [anon_sym_goto] = ACTIONS(4024), + [anon_sym_not] = ACTIONS(4024), + [anon_sym_compl] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4026), + [anon_sym_PLUS_PLUS] = ACTIONS(4026), + [anon_sym_sizeof] = ACTIONS(4024), + [anon_sym___alignof__] = ACTIONS(4024), + [anon_sym___alignof] = ACTIONS(4024), + [anon_sym__alignof] = ACTIONS(4024), + [anon_sym_alignof] = ACTIONS(4024), + [anon_sym__Alignof] = ACTIONS(4024), + [anon_sym_offsetof] = ACTIONS(4024), + [anon_sym__Generic] = ACTIONS(4024), + [anon_sym_typename] = ACTIONS(4024), + [anon_sym_asm] = ACTIONS(4024), + [anon_sym___asm__] = ACTIONS(4024), + [anon_sym___asm] = ACTIONS(4024), + [sym_number_literal] = ACTIONS(4026), + [anon_sym_L_SQUOTE] = ACTIONS(4026), + [anon_sym_u_SQUOTE] = ACTIONS(4026), + [anon_sym_U_SQUOTE] = ACTIONS(4026), + [anon_sym_u8_SQUOTE] = ACTIONS(4026), + [anon_sym_SQUOTE] = ACTIONS(4026), + [anon_sym_L_DQUOTE] = ACTIONS(4026), + [anon_sym_u_DQUOTE] = ACTIONS(4026), + [anon_sym_U_DQUOTE] = ACTIONS(4026), + [anon_sym_u8_DQUOTE] = ACTIONS(4026), + [anon_sym_DQUOTE] = ACTIONS(4026), + [sym_true] = ACTIONS(4024), + [sym_false] = ACTIONS(4024), + [anon_sym_NULL] = ACTIONS(4024), + [anon_sym_nullptr] = ACTIONS(4024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4024), + [anon_sym_decltype] = ACTIONS(4024), + [anon_sym_explicit] = ACTIONS(4024), + [anon_sym_export] = ACTIONS(4024), + [anon_sym_module] = ACTIONS(4024), + [anon_sym_import] = ACTIONS(4024), + [anon_sym_template] = ACTIONS(4024), + [anon_sym_operator] = ACTIONS(4024), + [anon_sym_try] = ACTIONS(4024), + [anon_sym_delete] = ACTIONS(4024), + [anon_sym_throw] = ACTIONS(4024), + [anon_sym_namespace] = ACTIONS(4024), + [anon_sym_static_assert] = ACTIONS(4024), + [anon_sym_concept] = ACTIONS(4024), + [anon_sym_co_return] = ACTIONS(4024), + [anon_sym_co_yield] = ACTIONS(4024), + [anon_sym_R_DQUOTE] = ACTIONS(4026), + [anon_sym_LR_DQUOTE] = ACTIONS(4026), + [anon_sym_uR_DQUOTE] = ACTIONS(4026), + [anon_sym_UR_DQUOTE] = ACTIONS(4026), + [anon_sym_u8R_DQUOTE] = ACTIONS(4026), + [anon_sym_co_await] = ACTIONS(4024), + [anon_sym_new] = ACTIONS(4024), + [anon_sym_requires] = ACTIONS(4024), + [anon_sym_CARET_CARET] = ACTIONS(4026), + [anon_sym_LBRACK_COLON] = ACTIONS(4026), + [sym_this] = ACTIONS(4024), + }, + [STATE(978)] = { + [ts_builtin_sym_end] = ACTIONS(4276), + [sym_identifier] = ACTIONS(4274), + [aux_sym_preproc_include_token1] = ACTIONS(4274), + [aux_sym_preproc_def_token1] = ACTIONS(4274), + [aux_sym_preproc_if_token1] = ACTIONS(4274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4274), + [sym_preproc_directive] = ACTIONS(4274), + [anon_sym_LPAREN2] = ACTIONS(4276), + [anon_sym_BANG] = ACTIONS(4276), + [anon_sym_TILDE] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_AMP] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym___extension__] = ACTIONS(4274), + [anon_sym_typedef] = ACTIONS(4274), + [anon_sym_virtual] = ACTIONS(4274), + [anon_sym_extern] = ACTIONS(4274), + [anon_sym___attribute__] = ACTIONS(4274), + [anon_sym___attribute] = ACTIONS(4274), + [anon_sym_using] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4276), + [anon_sym___declspec] = ACTIONS(4274), + [anon_sym___based] = ACTIONS(4274), + [anon_sym___cdecl] = ACTIONS(4274), + [anon_sym___clrcall] = ACTIONS(4274), + [anon_sym___stdcall] = ACTIONS(4274), + [anon_sym___fastcall] = ACTIONS(4274), + [anon_sym___thiscall] = ACTIONS(4274), + [anon_sym___vectorcall] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(4276), + [anon_sym_signed] = ACTIONS(4274), + [anon_sym_unsigned] = ACTIONS(4274), + [anon_sym_long] = ACTIONS(4274), + [anon_sym_short] = ACTIONS(4274), + [anon_sym_LBRACK] = ACTIONS(4274), + [anon_sym_static] = ACTIONS(4274), + [anon_sym_register] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym___inline] = ACTIONS(4274), + [anon_sym___inline__] = ACTIONS(4274), + [anon_sym___forceinline] = ACTIONS(4274), + [anon_sym_thread_local] = ACTIONS(4274), + [anon_sym___thread] = ACTIONS(4274), + [anon_sym_const] = ACTIONS(4274), + [anon_sym_constexpr] = ACTIONS(4274), + [anon_sym_volatile] = ACTIONS(4274), + [anon_sym_restrict] = ACTIONS(4274), + [anon_sym___restrict__] = ACTIONS(4274), + [anon_sym__Atomic] = ACTIONS(4274), + [anon_sym__Noreturn] = ACTIONS(4274), + [anon_sym_noreturn] = ACTIONS(4274), + [anon_sym__Nonnull] = ACTIONS(4274), + [anon_sym_mutable] = ACTIONS(4274), + [anon_sym_constinit] = ACTIONS(4274), + [anon_sym_consteval] = ACTIONS(4274), + [anon_sym_alignas] = ACTIONS(4274), + [anon_sym__Alignas] = ACTIONS(4274), + [sym_primitive_type] = ACTIONS(4274), + [anon_sym_enum] = ACTIONS(4274), + [anon_sym_class] = ACTIONS(4274), + [anon_sym_struct] = ACTIONS(4274), + [anon_sym_union] = ACTIONS(4274), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_switch] = ACTIONS(4274), + [anon_sym_case] = ACTIONS(4274), + [anon_sym_default] = ACTIONS(4274), + [anon_sym_while] = ACTIONS(4274), + [anon_sym_do] = ACTIONS(4274), + [anon_sym_for] = ACTIONS(4274), + [anon_sym_return] = ACTIONS(4274), + [anon_sym_break] = ACTIONS(4274), + [anon_sym_continue] = ACTIONS(4274), + [anon_sym_goto] = ACTIONS(4274), + [anon_sym_not] = ACTIONS(4274), + [anon_sym_compl] = ACTIONS(4274), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_sizeof] = ACTIONS(4274), + [anon_sym___alignof__] = ACTIONS(4274), + [anon_sym___alignof] = ACTIONS(4274), + [anon_sym__alignof] = ACTIONS(4274), + [anon_sym_alignof] = ACTIONS(4274), + [anon_sym__Alignof] = ACTIONS(4274), + [anon_sym_offsetof] = ACTIONS(4274), + [anon_sym__Generic] = ACTIONS(4274), + [anon_sym_typename] = ACTIONS(4274), + [anon_sym_asm] = ACTIONS(4274), + [anon_sym___asm__] = ACTIONS(4274), + [anon_sym___asm] = ACTIONS(4274), + [sym_number_literal] = ACTIONS(4276), + [anon_sym_L_SQUOTE] = ACTIONS(4276), + [anon_sym_u_SQUOTE] = ACTIONS(4276), + [anon_sym_U_SQUOTE] = ACTIONS(4276), + [anon_sym_u8_SQUOTE] = ACTIONS(4276), + [anon_sym_SQUOTE] = ACTIONS(4276), + [anon_sym_L_DQUOTE] = ACTIONS(4276), + [anon_sym_u_DQUOTE] = ACTIONS(4276), + [anon_sym_U_DQUOTE] = ACTIONS(4276), + [anon_sym_u8_DQUOTE] = ACTIONS(4276), + [anon_sym_DQUOTE] = ACTIONS(4276), + [sym_true] = ACTIONS(4274), + [sym_false] = ACTIONS(4274), + [anon_sym_NULL] = ACTIONS(4274), + [anon_sym_nullptr] = ACTIONS(4274), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4274), + [anon_sym_decltype] = ACTIONS(4274), + [anon_sym_explicit] = ACTIONS(4274), + [anon_sym_export] = ACTIONS(4274), + [anon_sym_module] = ACTIONS(4274), + [anon_sym_import] = ACTIONS(4274), + [anon_sym_template] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_try] = ACTIONS(4274), + [anon_sym_delete] = ACTIONS(4274), + [anon_sym_throw] = ACTIONS(4274), + [anon_sym_namespace] = ACTIONS(4274), + [anon_sym_static_assert] = ACTIONS(4274), + [anon_sym_concept] = ACTIONS(4274), + [anon_sym_co_return] = ACTIONS(4274), + [anon_sym_co_yield] = ACTIONS(4274), + [anon_sym_R_DQUOTE] = ACTIONS(4276), + [anon_sym_LR_DQUOTE] = ACTIONS(4276), + [anon_sym_uR_DQUOTE] = ACTIONS(4276), + [anon_sym_UR_DQUOTE] = ACTIONS(4276), + [anon_sym_u8R_DQUOTE] = ACTIONS(4276), + [anon_sym_co_await] = ACTIONS(4274), + [anon_sym_new] = ACTIONS(4274), + [anon_sym_requires] = ACTIONS(4274), + [anon_sym_CARET_CARET] = ACTIONS(4276), + [anon_sym_LBRACK_COLON] = ACTIONS(4276), + [sym_this] = ACTIONS(4274), + }, + [STATE(979)] = { + [ts_builtin_sym_end] = ACTIONS(4280), + [sym_identifier] = ACTIONS(4278), + [aux_sym_preproc_include_token1] = ACTIONS(4278), + [aux_sym_preproc_def_token1] = ACTIONS(4278), + [aux_sym_preproc_if_token1] = ACTIONS(4278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4278), + [sym_preproc_directive] = ACTIONS(4278), + [anon_sym_LPAREN2] = ACTIONS(4280), + [anon_sym_BANG] = ACTIONS(4280), + [anon_sym_TILDE] = ACTIONS(4280), + [anon_sym_DASH] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_STAR] = ACTIONS(4280), + [anon_sym_AMP_AMP] = ACTIONS(4280), + [anon_sym_AMP] = ACTIONS(4278), + [anon_sym_SEMI] = ACTIONS(4280), + [anon_sym___extension__] = ACTIONS(4278), + [anon_sym_typedef] = ACTIONS(4278), + [anon_sym_virtual] = ACTIONS(4278), + [anon_sym_extern] = ACTIONS(4278), + [anon_sym___attribute__] = ACTIONS(4278), + [anon_sym___attribute] = ACTIONS(4278), + [anon_sym_using] = ACTIONS(4278), + [anon_sym_COLON_COLON] = ACTIONS(4280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4280), + [anon_sym___declspec] = ACTIONS(4278), + [anon_sym___based] = ACTIONS(4278), + [anon_sym___cdecl] = ACTIONS(4278), + [anon_sym___clrcall] = ACTIONS(4278), + [anon_sym___stdcall] = ACTIONS(4278), + [anon_sym___fastcall] = ACTIONS(4278), + [anon_sym___thiscall] = ACTIONS(4278), + [anon_sym___vectorcall] = ACTIONS(4278), + [anon_sym_LBRACE] = ACTIONS(4280), + [anon_sym_signed] = ACTIONS(4278), + [anon_sym_unsigned] = ACTIONS(4278), + [anon_sym_long] = ACTIONS(4278), + [anon_sym_short] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_register] = ACTIONS(4278), + [anon_sym_inline] = ACTIONS(4278), + [anon_sym___inline] = ACTIONS(4278), + [anon_sym___inline__] = ACTIONS(4278), + [anon_sym___forceinline] = ACTIONS(4278), + [anon_sym_thread_local] = ACTIONS(4278), + [anon_sym___thread] = ACTIONS(4278), + [anon_sym_const] = ACTIONS(4278), + [anon_sym_constexpr] = ACTIONS(4278), + [anon_sym_volatile] = ACTIONS(4278), + [anon_sym_restrict] = ACTIONS(4278), + [anon_sym___restrict__] = ACTIONS(4278), + [anon_sym__Atomic] = ACTIONS(4278), + [anon_sym__Noreturn] = ACTIONS(4278), + [anon_sym_noreturn] = ACTIONS(4278), + [anon_sym__Nonnull] = ACTIONS(4278), + [anon_sym_mutable] = ACTIONS(4278), + [anon_sym_constinit] = ACTIONS(4278), + [anon_sym_consteval] = ACTIONS(4278), + [anon_sym_alignas] = ACTIONS(4278), + [anon_sym__Alignas] = ACTIONS(4278), + [sym_primitive_type] = ACTIONS(4278), + [anon_sym_enum] = ACTIONS(4278), + [anon_sym_class] = ACTIONS(4278), + [anon_sym_struct] = ACTIONS(4278), + [anon_sym_union] = ACTIONS(4278), + [anon_sym_if] = ACTIONS(4278), + [anon_sym_switch] = ACTIONS(4278), + [anon_sym_case] = ACTIONS(4278), + [anon_sym_default] = ACTIONS(4278), + [anon_sym_while] = ACTIONS(4278), + [anon_sym_do] = ACTIONS(4278), + [anon_sym_for] = ACTIONS(4278), + [anon_sym_return] = ACTIONS(4278), + [anon_sym_break] = ACTIONS(4278), + [anon_sym_continue] = ACTIONS(4278), + [anon_sym_goto] = ACTIONS(4278), + [anon_sym_not] = ACTIONS(4278), + [anon_sym_compl] = ACTIONS(4278), + [anon_sym_DASH_DASH] = ACTIONS(4280), + [anon_sym_PLUS_PLUS] = ACTIONS(4280), + [anon_sym_sizeof] = ACTIONS(4278), + [anon_sym___alignof__] = ACTIONS(4278), + [anon_sym___alignof] = ACTIONS(4278), + [anon_sym__alignof] = ACTIONS(4278), + [anon_sym_alignof] = ACTIONS(4278), + [anon_sym__Alignof] = ACTIONS(4278), + [anon_sym_offsetof] = ACTIONS(4278), + [anon_sym__Generic] = ACTIONS(4278), + [anon_sym_typename] = ACTIONS(4278), + [anon_sym_asm] = ACTIONS(4278), + [anon_sym___asm__] = ACTIONS(4278), + [anon_sym___asm] = ACTIONS(4278), + [sym_number_literal] = ACTIONS(4280), + [anon_sym_L_SQUOTE] = ACTIONS(4280), + [anon_sym_u_SQUOTE] = ACTIONS(4280), + [anon_sym_U_SQUOTE] = ACTIONS(4280), + [anon_sym_u8_SQUOTE] = ACTIONS(4280), + [anon_sym_SQUOTE] = ACTIONS(4280), + [anon_sym_L_DQUOTE] = ACTIONS(4280), + [anon_sym_u_DQUOTE] = ACTIONS(4280), + [anon_sym_U_DQUOTE] = ACTIONS(4280), + [anon_sym_u8_DQUOTE] = ACTIONS(4280), + [anon_sym_DQUOTE] = ACTIONS(4280), + [sym_true] = ACTIONS(4278), + [sym_false] = ACTIONS(4278), + [anon_sym_NULL] = ACTIONS(4278), + [anon_sym_nullptr] = ACTIONS(4278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4278), + [anon_sym_decltype] = ACTIONS(4278), + [anon_sym_explicit] = ACTIONS(4278), + [anon_sym_export] = ACTIONS(4278), + [anon_sym_module] = ACTIONS(4278), + [anon_sym_import] = ACTIONS(4278), + [anon_sym_template] = ACTIONS(4278), + [anon_sym_operator] = ACTIONS(4278), + [anon_sym_try] = ACTIONS(4278), + [anon_sym_delete] = ACTIONS(4278), + [anon_sym_throw] = ACTIONS(4278), + [anon_sym_namespace] = ACTIONS(4278), + [anon_sym_static_assert] = ACTIONS(4278), + [anon_sym_concept] = ACTIONS(4278), + [anon_sym_co_return] = ACTIONS(4278), + [anon_sym_co_yield] = ACTIONS(4278), + [anon_sym_R_DQUOTE] = ACTIONS(4280), + [anon_sym_LR_DQUOTE] = ACTIONS(4280), + [anon_sym_uR_DQUOTE] = ACTIONS(4280), + [anon_sym_UR_DQUOTE] = ACTIONS(4280), + [anon_sym_u8R_DQUOTE] = ACTIONS(4280), + [anon_sym_co_await] = ACTIONS(4278), + [anon_sym_new] = ACTIONS(4278), + [anon_sym_requires] = ACTIONS(4278), + [anon_sym_CARET_CARET] = ACTIONS(4280), + [anon_sym_LBRACK_COLON] = ACTIONS(4280), + [sym_this] = ACTIONS(4278), + }, + [STATE(980)] = { + [ts_builtin_sym_end] = ACTIONS(4498), + [sym_identifier] = ACTIONS(4496), + [aux_sym_preproc_include_token1] = ACTIONS(4496), + [aux_sym_preproc_def_token1] = ACTIONS(4496), + [aux_sym_preproc_if_token1] = ACTIONS(4496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4496), + [sym_preproc_directive] = ACTIONS(4496), + [anon_sym_LPAREN2] = ACTIONS(4498), + [anon_sym_BANG] = ACTIONS(4498), + [anon_sym_TILDE] = ACTIONS(4498), + [anon_sym_DASH] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4496), + [anon_sym_STAR] = ACTIONS(4498), + [anon_sym_AMP_AMP] = ACTIONS(4498), + [anon_sym_AMP] = ACTIONS(4496), + [anon_sym_SEMI] = ACTIONS(4498), + [anon_sym___extension__] = ACTIONS(4496), + [anon_sym_typedef] = ACTIONS(4496), + [anon_sym_virtual] = ACTIONS(4496), + [anon_sym_extern] = ACTIONS(4496), + [anon_sym___attribute__] = ACTIONS(4496), + [anon_sym___attribute] = ACTIONS(4496), + [anon_sym_using] = ACTIONS(4496), + [anon_sym_COLON_COLON] = ACTIONS(4498), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4498), + [anon_sym___declspec] = ACTIONS(4496), + [anon_sym___based] = ACTIONS(4496), + [anon_sym___cdecl] = ACTIONS(4496), + [anon_sym___clrcall] = ACTIONS(4496), + [anon_sym___stdcall] = ACTIONS(4496), + [anon_sym___fastcall] = ACTIONS(4496), + [anon_sym___thiscall] = ACTIONS(4496), + [anon_sym___vectorcall] = ACTIONS(4496), + [anon_sym_LBRACE] = ACTIONS(4498), + [anon_sym_signed] = ACTIONS(4496), + [anon_sym_unsigned] = ACTIONS(4496), + [anon_sym_long] = ACTIONS(4496), + [anon_sym_short] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4496), + [anon_sym_static] = ACTIONS(4496), + [anon_sym_register] = ACTIONS(4496), + [anon_sym_inline] = ACTIONS(4496), + [anon_sym___inline] = ACTIONS(4496), + [anon_sym___inline__] = ACTIONS(4496), + [anon_sym___forceinline] = ACTIONS(4496), + [anon_sym_thread_local] = ACTIONS(4496), + [anon_sym___thread] = ACTIONS(4496), + [anon_sym_const] = ACTIONS(4496), + [anon_sym_constexpr] = ACTIONS(4496), + [anon_sym_volatile] = ACTIONS(4496), + [anon_sym_restrict] = ACTIONS(4496), + [anon_sym___restrict__] = ACTIONS(4496), + [anon_sym__Atomic] = ACTIONS(4496), + [anon_sym__Noreturn] = ACTIONS(4496), + [anon_sym_noreturn] = ACTIONS(4496), + [anon_sym__Nonnull] = ACTIONS(4496), + [anon_sym_mutable] = ACTIONS(4496), + [anon_sym_constinit] = ACTIONS(4496), + [anon_sym_consteval] = ACTIONS(4496), + [anon_sym_alignas] = ACTIONS(4496), + [anon_sym__Alignas] = ACTIONS(4496), + [sym_primitive_type] = ACTIONS(4496), + [anon_sym_enum] = ACTIONS(4496), + [anon_sym_class] = ACTIONS(4496), + [anon_sym_struct] = ACTIONS(4496), + [anon_sym_union] = ACTIONS(4496), + [anon_sym_if] = ACTIONS(4496), + [anon_sym_switch] = ACTIONS(4496), + [anon_sym_case] = ACTIONS(4496), + [anon_sym_default] = ACTIONS(4496), + [anon_sym_while] = ACTIONS(4496), + [anon_sym_do] = ACTIONS(4496), + [anon_sym_for] = ACTIONS(4496), + [anon_sym_return] = ACTIONS(4496), + [anon_sym_break] = ACTIONS(4496), + [anon_sym_continue] = ACTIONS(4496), + [anon_sym_goto] = ACTIONS(4496), + [anon_sym_not] = ACTIONS(4496), + [anon_sym_compl] = ACTIONS(4496), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), + [anon_sym_sizeof] = ACTIONS(4496), + [anon_sym___alignof__] = ACTIONS(4496), + [anon_sym___alignof] = ACTIONS(4496), + [anon_sym__alignof] = ACTIONS(4496), + [anon_sym_alignof] = ACTIONS(4496), + [anon_sym__Alignof] = ACTIONS(4496), + [anon_sym_offsetof] = ACTIONS(4496), + [anon_sym__Generic] = ACTIONS(4496), + [anon_sym_typename] = ACTIONS(4496), + [anon_sym_asm] = ACTIONS(4496), + [anon_sym___asm__] = ACTIONS(4496), + [anon_sym___asm] = ACTIONS(4496), + [sym_number_literal] = ACTIONS(4498), + [anon_sym_L_SQUOTE] = ACTIONS(4498), + [anon_sym_u_SQUOTE] = ACTIONS(4498), + [anon_sym_U_SQUOTE] = ACTIONS(4498), + [anon_sym_u8_SQUOTE] = ACTIONS(4498), + [anon_sym_SQUOTE] = ACTIONS(4498), + [anon_sym_L_DQUOTE] = ACTIONS(4498), + [anon_sym_u_DQUOTE] = ACTIONS(4498), + [anon_sym_U_DQUOTE] = ACTIONS(4498), + [anon_sym_u8_DQUOTE] = ACTIONS(4498), + [anon_sym_DQUOTE] = ACTIONS(4498), + [sym_true] = ACTIONS(4496), + [sym_false] = ACTIONS(4496), + [anon_sym_NULL] = ACTIONS(4496), + [anon_sym_nullptr] = ACTIONS(4496), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4496), + [anon_sym_decltype] = ACTIONS(4496), + [anon_sym_explicit] = ACTIONS(4496), + [anon_sym_export] = ACTIONS(4496), + [anon_sym_module] = ACTIONS(4496), + [anon_sym_import] = ACTIONS(4496), + [anon_sym_template] = ACTIONS(4496), + [anon_sym_operator] = ACTIONS(4496), + [anon_sym_try] = ACTIONS(4496), + [anon_sym_delete] = ACTIONS(4496), + [anon_sym_throw] = ACTIONS(4496), + [anon_sym_namespace] = ACTIONS(4496), + [anon_sym_static_assert] = ACTIONS(4496), + [anon_sym_concept] = ACTIONS(4496), + [anon_sym_co_return] = ACTIONS(4496), + [anon_sym_co_yield] = ACTIONS(4496), + [anon_sym_R_DQUOTE] = ACTIONS(4498), + [anon_sym_LR_DQUOTE] = ACTIONS(4498), + [anon_sym_uR_DQUOTE] = ACTIONS(4498), + [anon_sym_UR_DQUOTE] = ACTIONS(4498), + [anon_sym_u8R_DQUOTE] = ACTIONS(4498), + [anon_sym_co_await] = ACTIONS(4496), + [anon_sym_new] = ACTIONS(4496), + [anon_sym_requires] = ACTIONS(4496), + [anon_sym_CARET_CARET] = ACTIONS(4498), + [anon_sym_LBRACK_COLON] = ACTIONS(4498), + [sym_this] = ACTIONS(4496), + }, + [STATE(981)] = { + [ts_builtin_sym_end] = ACTIONS(4528), + [sym_identifier] = ACTIONS(4526), + [aux_sym_preproc_include_token1] = ACTIONS(4526), + [aux_sym_preproc_def_token1] = ACTIONS(4526), + [aux_sym_preproc_if_token1] = ACTIONS(4526), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4526), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4526), + [sym_preproc_directive] = ACTIONS(4526), + [anon_sym_LPAREN2] = ACTIONS(4528), + [anon_sym_BANG] = ACTIONS(4528), + [anon_sym_TILDE] = ACTIONS(4528), + [anon_sym_DASH] = ACTIONS(4526), + [anon_sym_PLUS] = ACTIONS(4526), + [anon_sym_STAR] = ACTIONS(4528), + [anon_sym_AMP_AMP] = ACTIONS(4528), + [anon_sym_AMP] = ACTIONS(4526), + [anon_sym_SEMI] = ACTIONS(4528), + [anon_sym___extension__] = ACTIONS(4526), + [anon_sym_typedef] = ACTIONS(4526), + [anon_sym_virtual] = ACTIONS(4526), + [anon_sym_extern] = ACTIONS(4526), + [anon_sym___attribute__] = ACTIONS(4526), + [anon_sym___attribute] = ACTIONS(4526), + [anon_sym_using] = ACTIONS(4526), + [anon_sym_COLON_COLON] = ACTIONS(4528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4528), + [anon_sym___declspec] = ACTIONS(4526), + [anon_sym___based] = ACTIONS(4526), + [anon_sym___cdecl] = ACTIONS(4526), + [anon_sym___clrcall] = ACTIONS(4526), + [anon_sym___stdcall] = ACTIONS(4526), + [anon_sym___fastcall] = ACTIONS(4526), + [anon_sym___thiscall] = ACTIONS(4526), + [anon_sym___vectorcall] = ACTIONS(4526), + [anon_sym_LBRACE] = ACTIONS(4528), + [anon_sym_signed] = ACTIONS(4526), + [anon_sym_unsigned] = ACTIONS(4526), + [anon_sym_long] = ACTIONS(4526), + [anon_sym_short] = ACTIONS(4526), + [anon_sym_LBRACK] = ACTIONS(4526), + [anon_sym_static] = ACTIONS(4526), + [anon_sym_register] = ACTIONS(4526), + [anon_sym_inline] = ACTIONS(4526), + [anon_sym___inline] = ACTIONS(4526), + [anon_sym___inline__] = ACTIONS(4526), + [anon_sym___forceinline] = ACTIONS(4526), + [anon_sym_thread_local] = ACTIONS(4526), + [anon_sym___thread] = ACTIONS(4526), + [anon_sym_const] = ACTIONS(4526), + [anon_sym_constexpr] = ACTIONS(4526), + [anon_sym_volatile] = ACTIONS(4526), + [anon_sym_restrict] = ACTIONS(4526), + [anon_sym___restrict__] = ACTIONS(4526), + [anon_sym__Atomic] = ACTIONS(4526), + [anon_sym__Noreturn] = ACTIONS(4526), + [anon_sym_noreturn] = ACTIONS(4526), + [anon_sym__Nonnull] = ACTIONS(4526), + [anon_sym_mutable] = ACTIONS(4526), + [anon_sym_constinit] = ACTIONS(4526), + [anon_sym_consteval] = ACTIONS(4526), + [anon_sym_alignas] = ACTIONS(4526), + [anon_sym__Alignas] = ACTIONS(4526), + [sym_primitive_type] = ACTIONS(4526), + [anon_sym_enum] = ACTIONS(4526), + [anon_sym_class] = ACTIONS(4526), + [anon_sym_struct] = ACTIONS(4526), + [anon_sym_union] = ACTIONS(4526), + [anon_sym_if] = ACTIONS(4526), + [anon_sym_switch] = ACTIONS(4526), + [anon_sym_case] = ACTIONS(4526), + [anon_sym_default] = ACTIONS(4526), + [anon_sym_while] = ACTIONS(4526), + [anon_sym_do] = ACTIONS(4526), + [anon_sym_for] = ACTIONS(4526), + [anon_sym_return] = ACTIONS(4526), + [anon_sym_break] = ACTIONS(4526), + [anon_sym_continue] = ACTIONS(4526), + [anon_sym_goto] = ACTIONS(4526), + [anon_sym_not] = ACTIONS(4526), + [anon_sym_compl] = ACTIONS(4526), + [anon_sym_DASH_DASH] = ACTIONS(4528), + [anon_sym_PLUS_PLUS] = ACTIONS(4528), + [anon_sym_sizeof] = ACTIONS(4526), + [anon_sym___alignof__] = ACTIONS(4526), + [anon_sym___alignof] = ACTIONS(4526), + [anon_sym__alignof] = ACTIONS(4526), + [anon_sym_alignof] = ACTIONS(4526), + [anon_sym__Alignof] = ACTIONS(4526), + [anon_sym_offsetof] = ACTIONS(4526), + [anon_sym__Generic] = ACTIONS(4526), + [anon_sym_typename] = ACTIONS(4526), + [anon_sym_asm] = ACTIONS(4526), + [anon_sym___asm__] = ACTIONS(4526), + [anon_sym___asm] = ACTIONS(4526), + [sym_number_literal] = ACTIONS(4528), + [anon_sym_L_SQUOTE] = ACTIONS(4528), + [anon_sym_u_SQUOTE] = ACTIONS(4528), + [anon_sym_U_SQUOTE] = ACTIONS(4528), + [anon_sym_u8_SQUOTE] = ACTIONS(4528), + [anon_sym_SQUOTE] = ACTIONS(4528), + [anon_sym_L_DQUOTE] = ACTIONS(4528), + [anon_sym_u_DQUOTE] = ACTIONS(4528), + [anon_sym_U_DQUOTE] = ACTIONS(4528), + [anon_sym_u8_DQUOTE] = ACTIONS(4528), + [anon_sym_DQUOTE] = ACTIONS(4528), + [sym_true] = ACTIONS(4526), + [sym_false] = ACTIONS(4526), + [anon_sym_NULL] = ACTIONS(4526), + [anon_sym_nullptr] = ACTIONS(4526), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4526), + [anon_sym_decltype] = ACTIONS(4526), + [anon_sym_explicit] = ACTIONS(4526), + [anon_sym_export] = ACTIONS(4526), + [anon_sym_module] = ACTIONS(4526), + [anon_sym_import] = ACTIONS(4526), + [anon_sym_template] = ACTIONS(4526), + [anon_sym_operator] = ACTIONS(4526), + [anon_sym_try] = ACTIONS(4526), + [anon_sym_delete] = ACTIONS(4526), + [anon_sym_throw] = ACTIONS(4526), + [anon_sym_namespace] = ACTIONS(4526), + [anon_sym_static_assert] = ACTIONS(4526), + [anon_sym_concept] = ACTIONS(4526), + [anon_sym_co_return] = ACTIONS(4526), + [anon_sym_co_yield] = ACTIONS(4526), + [anon_sym_R_DQUOTE] = ACTIONS(4528), + [anon_sym_LR_DQUOTE] = ACTIONS(4528), + [anon_sym_uR_DQUOTE] = ACTIONS(4528), + [anon_sym_UR_DQUOTE] = ACTIONS(4528), + [anon_sym_u8R_DQUOTE] = ACTIONS(4528), + [anon_sym_co_await] = ACTIONS(4526), + [anon_sym_new] = ACTIONS(4526), + [anon_sym_requires] = ACTIONS(4526), + [anon_sym_CARET_CARET] = ACTIONS(4528), + [anon_sym_LBRACK_COLON] = ACTIONS(4528), + [sym_this] = ACTIONS(4526), + }, + [STATE(982)] = { + [ts_builtin_sym_end] = ACTIONS(4284), + [sym_identifier] = ACTIONS(4282), + [aux_sym_preproc_include_token1] = ACTIONS(4282), + [aux_sym_preproc_def_token1] = ACTIONS(4282), + [aux_sym_preproc_if_token1] = ACTIONS(4282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4282), + [sym_preproc_directive] = ACTIONS(4282), + [anon_sym_LPAREN2] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4284), + [anon_sym_TILDE] = ACTIONS(4284), + [anon_sym_DASH] = ACTIONS(4282), + [anon_sym_PLUS] = ACTIONS(4282), + [anon_sym_STAR] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(4282), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym___extension__] = ACTIONS(4282), + [anon_sym_typedef] = ACTIONS(4282), + [anon_sym_virtual] = ACTIONS(4282), + [anon_sym_extern] = ACTIONS(4282), + [anon_sym___attribute__] = ACTIONS(4282), + [anon_sym___attribute] = ACTIONS(4282), + [anon_sym_using] = ACTIONS(4282), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), + [anon_sym___declspec] = ACTIONS(4282), + [anon_sym___based] = ACTIONS(4282), + [anon_sym___cdecl] = ACTIONS(4282), + [anon_sym___clrcall] = ACTIONS(4282), + [anon_sym___stdcall] = ACTIONS(4282), + [anon_sym___fastcall] = ACTIONS(4282), + [anon_sym___thiscall] = ACTIONS(4282), + [anon_sym___vectorcall] = ACTIONS(4282), + [anon_sym_LBRACE] = ACTIONS(4284), + [anon_sym_signed] = ACTIONS(4282), + [anon_sym_unsigned] = ACTIONS(4282), + [anon_sym_long] = ACTIONS(4282), + [anon_sym_short] = ACTIONS(4282), + [anon_sym_LBRACK] = ACTIONS(4282), + [anon_sym_static] = ACTIONS(4282), + [anon_sym_register] = ACTIONS(4282), + [anon_sym_inline] = ACTIONS(4282), + [anon_sym___inline] = ACTIONS(4282), + [anon_sym___inline__] = ACTIONS(4282), + [anon_sym___forceinline] = ACTIONS(4282), + [anon_sym_thread_local] = ACTIONS(4282), + [anon_sym___thread] = ACTIONS(4282), + [anon_sym_const] = ACTIONS(4282), + [anon_sym_constexpr] = ACTIONS(4282), + [anon_sym_volatile] = ACTIONS(4282), + [anon_sym_restrict] = ACTIONS(4282), + [anon_sym___restrict__] = ACTIONS(4282), + [anon_sym__Atomic] = ACTIONS(4282), + [anon_sym__Noreturn] = ACTIONS(4282), + [anon_sym_noreturn] = ACTIONS(4282), + [anon_sym__Nonnull] = ACTIONS(4282), + [anon_sym_mutable] = ACTIONS(4282), + [anon_sym_constinit] = ACTIONS(4282), + [anon_sym_consteval] = ACTIONS(4282), + [anon_sym_alignas] = ACTIONS(4282), + [anon_sym__Alignas] = ACTIONS(4282), + [sym_primitive_type] = ACTIONS(4282), + [anon_sym_enum] = ACTIONS(4282), + [anon_sym_class] = ACTIONS(4282), + [anon_sym_struct] = ACTIONS(4282), + [anon_sym_union] = ACTIONS(4282), + [anon_sym_if] = ACTIONS(4282), + [anon_sym_switch] = ACTIONS(4282), + [anon_sym_case] = ACTIONS(4282), + [anon_sym_default] = ACTIONS(4282), + [anon_sym_while] = ACTIONS(4282), + [anon_sym_do] = ACTIONS(4282), + [anon_sym_for] = ACTIONS(4282), + [anon_sym_return] = ACTIONS(4282), + [anon_sym_break] = ACTIONS(4282), + [anon_sym_continue] = ACTIONS(4282), + [anon_sym_goto] = ACTIONS(4282), + [anon_sym_not] = ACTIONS(4282), + [anon_sym_compl] = ACTIONS(4282), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_sizeof] = ACTIONS(4282), + [anon_sym___alignof__] = ACTIONS(4282), + [anon_sym___alignof] = ACTIONS(4282), + [anon_sym__alignof] = ACTIONS(4282), + [anon_sym_alignof] = ACTIONS(4282), + [anon_sym__Alignof] = ACTIONS(4282), + [anon_sym_offsetof] = ACTIONS(4282), + [anon_sym__Generic] = ACTIONS(4282), + [anon_sym_typename] = ACTIONS(4282), + [anon_sym_asm] = ACTIONS(4282), + [anon_sym___asm__] = ACTIONS(4282), + [anon_sym___asm] = ACTIONS(4282), + [sym_number_literal] = ACTIONS(4284), + [anon_sym_L_SQUOTE] = ACTIONS(4284), + [anon_sym_u_SQUOTE] = ACTIONS(4284), + [anon_sym_U_SQUOTE] = ACTIONS(4284), + [anon_sym_u8_SQUOTE] = ACTIONS(4284), + [anon_sym_SQUOTE] = ACTIONS(4284), + [anon_sym_L_DQUOTE] = ACTIONS(4284), + [anon_sym_u_DQUOTE] = ACTIONS(4284), + [anon_sym_U_DQUOTE] = ACTIONS(4284), + [anon_sym_u8_DQUOTE] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4284), + [sym_true] = ACTIONS(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4282), + [anon_sym_nullptr] = ACTIONS(4282), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4282), + [anon_sym_decltype] = ACTIONS(4282), + [anon_sym_explicit] = ACTIONS(4282), + [anon_sym_export] = ACTIONS(4282), + [anon_sym_module] = ACTIONS(4282), + [anon_sym_import] = ACTIONS(4282), + [anon_sym_template] = ACTIONS(4282), + [anon_sym_operator] = ACTIONS(4282), + [anon_sym_try] = ACTIONS(4282), + [anon_sym_delete] = ACTIONS(4282), + [anon_sym_throw] = ACTIONS(4282), + [anon_sym_namespace] = ACTIONS(4282), + [anon_sym_static_assert] = ACTIONS(4282), + [anon_sym_concept] = ACTIONS(4282), + [anon_sym_co_return] = ACTIONS(4282), + [anon_sym_co_yield] = ACTIONS(4282), + [anon_sym_R_DQUOTE] = ACTIONS(4284), + [anon_sym_LR_DQUOTE] = ACTIONS(4284), + [anon_sym_uR_DQUOTE] = ACTIONS(4284), + [anon_sym_UR_DQUOTE] = ACTIONS(4284), + [anon_sym_u8R_DQUOTE] = ACTIONS(4284), + [anon_sym_co_await] = ACTIONS(4282), + [anon_sym_new] = ACTIONS(4282), + [anon_sym_requires] = ACTIONS(4282), + [anon_sym_CARET_CARET] = ACTIONS(4284), + [anon_sym_LBRACK_COLON] = ACTIONS(4284), + [sym_this] = ACTIONS(4282), + }, + [STATE(983)] = { + [ts_builtin_sym_end] = ACTIONS(4030), + [sym_identifier] = ACTIONS(4028), + [aux_sym_preproc_include_token1] = ACTIONS(4028), + [aux_sym_preproc_def_token1] = ACTIONS(4028), + [aux_sym_preproc_if_token1] = ACTIONS(4028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4028), + [sym_preproc_directive] = ACTIONS(4028), + [anon_sym_LPAREN2] = ACTIONS(4030), + [anon_sym_BANG] = ACTIONS(4030), + [anon_sym_TILDE] = ACTIONS(4030), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym___extension__] = ACTIONS(4028), + [anon_sym_typedef] = ACTIONS(4028), + [anon_sym_virtual] = ACTIONS(4028), + [anon_sym_extern] = ACTIONS(4028), + [anon_sym___attribute__] = ACTIONS(4028), + [anon_sym___attribute] = ACTIONS(4028), + [anon_sym_using] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(4030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4030), + [anon_sym___declspec] = ACTIONS(4028), + [anon_sym___based] = ACTIONS(4028), + [anon_sym___cdecl] = ACTIONS(4028), + [anon_sym___clrcall] = ACTIONS(4028), + [anon_sym___stdcall] = ACTIONS(4028), + [anon_sym___fastcall] = ACTIONS(4028), + [anon_sym___thiscall] = ACTIONS(4028), + [anon_sym___vectorcall] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4030), + [anon_sym_signed] = ACTIONS(4028), + [anon_sym_unsigned] = ACTIONS(4028), + [anon_sym_long] = ACTIONS(4028), + [anon_sym_short] = ACTIONS(4028), + [anon_sym_LBRACK] = ACTIONS(4028), + [anon_sym_static] = ACTIONS(4028), + [anon_sym_register] = ACTIONS(4028), + [anon_sym_inline] = ACTIONS(4028), + [anon_sym___inline] = ACTIONS(4028), + [anon_sym___inline__] = ACTIONS(4028), + [anon_sym___forceinline] = ACTIONS(4028), + [anon_sym_thread_local] = ACTIONS(4028), + [anon_sym___thread] = ACTIONS(4028), + [anon_sym_const] = ACTIONS(4028), + [anon_sym_constexpr] = ACTIONS(4028), + [anon_sym_volatile] = ACTIONS(4028), + [anon_sym_restrict] = ACTIONS(4028), + [anon_sym___restrict__] = ACTIONS(4028), + [anon_sym__Atomic] = ACTIONS(4028), + [anon_sym__Noreturn] = ACTIONS(4028), + [anon_sym_noreturn] = ACTIONS(4028), + [anon_sym__Nonnull] = ACTIONS(4028), + [anon_sym_mutable] = ACTIONS(4028), + [anon_sym_constinit] = ACTIONS(4028), + [anon_sym_consteval] = ACTIONS(4028), + [anon_sym_alignas] = ACTIONS(4028), + [anon_sym__Alignas] = ACTIONS(4028), + [sym_primitive_type] = ACTIONS(4028), + [anon_sym_enum] = ACTIONS(4028), + [anon_sym_class] = ACTIONS(4028), + [anon_sym_struct] = ACTIONS(4028), + [anon_sym_union] = ACTIONS(4028), + [anon_sym_if] = ACTIONS(4028), + [anon_sym_switch] = ACTIONS(4028), + [anon_sym_case] = ACTIONS(4028), + [anon_sym_default] = ACTIONS(4028), + [anon_sym_while] = ACTIONS(4028), + [anon_sym_do] = ACTIONS(4028), + [anon_sym_for] = ACTIONS(4028), + [anon_sym_return] = ACTIONS(4028), + [anon_sym_break] = ACTIONS(4028), + [anon_sym_continue] = ACTIONS(4028), + [anon_sym_goto] = ACTIONS(4028), + [anon_sym_not] = ACTIONS(4028), + [anon_sym_compl] = ACTIONS(4028), + [anon_sym_DASH_DASH] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4030), + [anon_sym_sizeof] = ACTIONS(4028), + [anon_sym___alignof__] = ACTIONS(4028), + [anon_sym___alignof] = ACTIONS(4028), + [anon_sym__alignof] = ACTIONS(4028), + [anon_sym_alignof] = ACTIONS(4028), + [anon_sym__Alignof] = ACTIONS(4028), + [anon_sym_offsetof] = ACTIONS(4028), + [anon_sym__Generic] = ACTIONS(4028), + [anon_sym_typename] = ACTIONS(4028), + [anon_sym_asm] = ACTIONS(4028), + [anon_sym___asm__] = ACTIONS(4028), + [anon_sym___asm] = ACTIONS(4028), + [sym_number_literal] = ACTIONS(4030), + [anon_sym_L_SQUOTE] = ACTIONS(4030), + [anon_sym_u_SQUOTE] = ACTIONS(4030), + [anon_sym_U_SQUOTE] = ACTIONS(4030), + [anon_sym_u8_SQUOTE] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4030), + [anon_sym_L_DQUOTE] = ACTIONS(4030), + [anon_sym_u_DQUOTE] = ACTIONS(4030), + [anon_sym_U_DQUOTE] = ACTIONS(4030), + [anon_sym_u8_DQUOTE] = ACTIONS(4030), + [anon_sym_DQUOTE] = ACTIONS(4030), + [sym_true] = ACTIONS(4028), + [sym_false] = ACTIONS(4028), + [anon_sym_NULL] = ACTIONS(4028), + [anon_sym_nullptr] = ACTIONS(4028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4028), + [anon_sym_decltype] = ACTIONS(4028), + [anon_sym_explicit] = ACTIONS(4028), + [anon_sym_export] = ACTIONS(4028), + [anon_sym_module] = ACTIONS(4028), + [anon_sym_import] = ACTIONS(4028), + [anon_sym_template] = ACTIONS(4028), + [anon_sym_operator] = ACTIONS(4028), + [anon_sym_try] = ACTIONS(4028), + [anon_sym_delete] = ACTIONS(4028), + [anon_sym_throw] = ACTIONS(4028), + [anon_sym_namespace] = ACTIONS(4028), + [anon_sym_static_assert] = ACTIONS(4028), + [anon_sym_concept] = ACTIONS(4028), + [anon_sym_co_return] = ACTIONS(4028), + [anon_sym_co_yield] = ACTIONS(4028), + [anon_sym_R_DQUOTE] = ACTIONS(4030), + [anon_sym_LR_DQUOTE] = ACTIONS(4030), + [anon_sym_uR_DQUOTE] = ACTIONS(4030), + [anon_sym_UR_DQUOTE] = ACTIONS(4030), + [anon_sym_u8R_DQUOTE] = ACTIONS(4030), + [anon_sym_co_await] = ACTIONS(4028), + [anon_sym_new] = ACTIONS(4028), + [anon_sym_requires] = ACTIONS(4028), + [anon_sym_CARET_CARET] = ACTIONS(4030), + [anon_sym_LBRACK_COLON] = ACTIONS(4030), + [sym_this] = ACTIONS(4028), + }, + [STATE(984)] = { + [ts_builtin_sym_end] = ACTIONS(4034), + [sym_identifier] = ACTIONS(4032), + [aux_sym_preproc_include_token1] = ACTIONS(4032), + [aux_sym_preproc_def_token1] = ACTIONS(4032), + [aux_sym_preproc_if_token1] = ACTIONS(4032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4032), + [sym_preproc_directive] = ACTIONS(4032), + [anon_sym_LPAREN2] = ACTIONS(4034), + [anon_sym_BANG] = ACTIONS(4034), + [anon_sym_TILDE] = ACTIONS(4034), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4034), + [anon_sym_AMP_AMP] = ACTIONS(4034), + [anon_sym_AMP] = ACTIONS(4032), + [anon_sym_SEMI] = ACTIONS(4034), + [anon_sym___extension__] = ACTIONS(4032), + [anon_sym_typedef] = ACTIONS(4032), + [anon_sym_virtual] = ACTIONS(4032), + [anon_sym_extern] = ACTIONS(4032), + [anon_sym___attribute__] = ACTIONS(4032), + [anon_sym___attribute] = ACTIONS(4032), + [anon_sym_using] = ACTIONS(4032), + [anon_sym_COLON_COLON] = ACTIONS(4034), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4034), + [anon_sym___declspec] = ACTIONS(4032), + [anon_sym___based] = ACTIONS(4032), + [anon_sym___cdecl] = ACTIONS(4032), + [anon_sym___clrcall] = ACTIONS(4032), + [anon_sym___stdcall] = ACTIONS(4032), + [anon_sym___fastcall] = ACTIONS(4032), + [anon_sym___thiscall] = ACTIONS(4032), + [anon_sym___vectorcall] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4034), + [anon_sym_signed] = ACTIONS(4032), + [anon_sym_unsigned] = ACTIONS(4032), + [anon_sym_long] = ACTIONS(4032), + [anon_sym_short] = ACTIONS(4032), + [anon_sym_LBRACK] = ACTIONS(4032), + [anon_sym_static] = ACTIONS(4032), + [anon_sym_register] = ACTIONS(4032), + [anon_sym_inline] = ACTIONS(4032), + [anon_sym___inline] = ACTIONS(4032), + [anon_sym___inline__] = ACTIONS(4032), + [anon_sym___forceinline] = ACTIONS(4032), + [anon_sym_thread_local] = ACTIONS(4032), + [anon_sym___thread] = ACTIONS(4032), + [anon_sym_const] = ACTIONS(4032), + [anon_sym_constexpr] = ACTIONS(4032), + [anon_sym_volatile] = ACTIONS(4032), + [anon_sym_restrict] = ACTIONS(4032), + [anon_sym___restrict__] = ACTIONS(4032), + [anon_sym__Atomic] = ACTIONS(4032), + [anon_sym__Noreturn] = ACTIONS(4032), + [anon_sym_noreturn] = ACTIONS(4032), + [anon_sym__Nonnull] = ACTIONS(4032), + [anon_sym_mutable] = ACTIONS(4032), + [anon_sym_constinit] = ACTIONS(4032), + [anon_sym_consteval] = ACTIONS(4032), + [anon_sym_alignas] = ACTIONS(4032), + [anon_sym__Alignas] = ACTIONS(4032), + [sym_primitive_type] = ACTIONS(4032), + [anon_sym_enum] = ACTIONS(4032), + [anon_sym_class] = ACTIONS(4032), + [anon_sym_struct] = ACTIONS(4032), + [anon_sym_union] = ACTIONS(4032), + [anon_sym_if] = ACTIONS(4032), + [anon_sym_switch] = ACTIONS(4032), + [anon_sym_case] = ACTIONS(4032), + [anon_sym_default] = ACTIONS(4032), + [anon_sym_while] = ACTIONS(4032), + [anon_sym_do] = ACTIONS(4032), + [anon_sym_for] = ACTIONS(4032), + [anon_sym_return] = ACTIONS(4032), + [anon_sym_break] = ACTIONS(4032), + [anon_sym_continue] = ACTIONS(4032), + [anon_sym_goto] = ACTIONS(4032), + [anon_sym_not] = ACTIONS(4032), + [anon_sym_compl] = ACTIONS(4032), + [anon_sym_DASH_DASH] = ACTIONS(4034), + [anon_sym_PLUS_PLUS] = ACTIONS(4034), + [anon_sym_sizeof] = ACTIONS(4032), + [anon_sym___alignof__] = ACTIONS(4032), + [anon_sym___alignof] = ACTIONS(4032), + [anon_sym__alignof] = ACTIONS(4032), + [anon_sym_alignof] = ACTIONS(4032), + [anon_sym__Alignof] = ACTIONS(4032), + [anon_sym_offsetof] = ACTIONS(4032), + [anon_sym__Generic] = ACTIONS(4032), + [anon_sym_typename] = ACTIONS(4032), + [anon_sym_asm] = ACTIONS(4032), + [anon_sym___asm__] = ACTIONS(4032), + [anon_sym___asm] = ACTIONS(4032), + [sym_number_literal] = ACTIONS(4034), + [anon_sym_L_SQUOTE] = ACTIONS(4034), + [anon_sym_u_SQUOTE] = ACTIONS(4034), + [anon_sym_U_SQUOTE] = ACTIONS(4034), + [anon_sym_u8_SQUOTE] = ACTIONS(4034), + [anon_sym_SQUOTE] = ACTIONS(4034), + [anon_sym_L_DQUOTE] = ACTIONS(4034), + [anon_sym_u_DQUOTE] = ACTIONS(4034), + [anon_sym_U_DQUOTE] = ACTIONS(4034), + [anon_sym_u8_DQUOTE] = ACTIONS(4034), + [anon_sym_DQUOTE] = ACTIONS(4034), + [sym_true] = ACTIONS(4032), + [sym_false] = ACTIONS(4032), + [anon_sym_NULL] = ACTIONS(4032), + [anon_sym_nullptr] = ACTIONS(4032), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4032), + [anon_sym_decltype] = ACTIONS(4032), + [anon_sym_explicit] = ACTIONS(4032), + [anon_sym_export] = ACTIONS(4032), + [anon_sym_module] = ACTIONS(4032), + [anon_sym_import] = ACTIONS(4032), + [anon_sym_template] = ACTIONS(4032), + [anon_sym_operator] = ACTIONS(4032), + [anon_sym_try] = ACTIONS(4032), + [anon_sym_delete] = ACTIONS(4032), + [anon_sym_throw] = ACTIONS(4032), + [anon_sym_namespace] = ACTIONS(4032), + [anon_sym_static_assert] = ACTIONS(4032), + [anon_sym_concept] = ACTIONS(4032), + [anon_sym_co_return] = ACTIONS(4032), + [anon_sym_co_yield] = ACTIONS(4032), + [anon_sym_R_DQUOTE] = ACTIONS(4034), + [anon_sym_LR_DQUOTE] = ACTIONS(4034), + [anon_sym_uR_DQUOTE] = ACTIONS(4034), + [anon_sym_UR_DQUOTE] = ACTIONS(4034), + [anon_sym_u8R_DQUOTE] = ACTIONS(4034), + [anon_sym_co_await] = ACTIONS(4032), + [anon_sym_new] = ACTIONS(4032), + [anon_sym_requires] = ACTIONS(4032), + [anon_sym_CARET_CARET] = ACTIONS(4034), + [anon_sym_LBRACK_COLON] = ACTIONS(4034), + [sym_this] = ACTIONS(4032), + }, + [STATE(985)] = { + [sym_identifier] = ACTIONS(4472), + [aux_sym_preproc_include_token1] = ACTIONS(4472), + [aux_sym_preproc_def_token1] = ACTIONS(4472), + [aux_sym_preproc_if_token1] = ACTIONS(4472), + [aux_sym_preproc_if_token2] = ACTIONS(4472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4472), + [sym_preproc_directive] = ACTIONS(4472), + [anon_sym_LPAREN2] = ACTIONS(4474), + [anon_sym_BANG] = ACTIONS(4474), + [anon_sym_TILDE] = ACTIONS(4474), + [anon_sym_DASH] = ACTIONS(4472), + [anon_sym_PLUS] = ACTIONS(4472), + [anon_sym_STAR] = ACTIONS(4474), + [anon_sym_AMP_AMP] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4472), + [anon_sym_SEMI] = ACTIONS(4474), + [anon_sym___extension__] = ACTIONS(4472), + [anon_sym_typedef] = ACTIONS(4472), + [anon_sym_virtual] = ACTIONS(4472), + [anon_sym_extern] = ACTIONS(4472), + [anon_sym___attribute__] = ACTIONS(4472), + [anon_sym___attribute] = ACTIONS(4472), + [anon_sym_using] = ACTIONS(4472), + [anon_sym_COLON_COLON] = ACTIONS(4474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4474), + [anon_sym___declspec] = ACTIONS(4472), + [anon_sym___based] = ACTIONS(4472), + [anon_sym___cdecl] = ACTIONS(4472), + [anon_sym___clrcall] = ACTIONS(4472), + [anon_sym___stdcall] = ACTIONS(4472), + [anon_sym___fastcall] = ACTIONS(4472), + [anon_sym___thiscall] = ACTIONS(4472), + [anon_sym___vectorcall] = ACTIONS(4472), + [anon_sym_LBRACE] = ACTIONS(4474), + [anon_sym_signed] = ACTIONS(4472), + [anon_sym_unsigned] = ACTIONS(4472), + [anon_sym_long] = ACTIONS(4472), + [anon_sym_short] = ACTIONS(4472), + [anon_sym_LBRACK] = ACTIONS(4472), + [anon_sym_static] = ACTIONS(4472), + [anon_sym_register] = ACTIONS(4472), + [anon_sym_inline] = ACTIONS(4472), + [anon_sym___inline] = ACTIONS(4472), + [anon_sym___inline__] = ACTIONS(4472), + [anon_sym___forceinline] = ACTIONS(4472), + [anon_sym_thread_local] = ACTIONS(4472), + [anon_sym___thread] = ACTIONS(4472), + [anon_sym_const] = ACTIONS(4472), + [anon_sym_constexpr] = ACTIONS(4472), + [anon_sym_volatile] = ACTIONS(4472), + [anon_sym_restrict] = ACTIONS(4472), + [anon_sym___restrict__] = ACTIONS(4472), + [anon_sym__Atomic] = ACTIONS(4472), + [anon_sym__Noreturn] = ACTIONS(4472), + [anon_sym_noreturn] = ACTIONS(4472), + [anon_sym__Nonnull] = ACTIONS(4472), + [anon_sym_mutable] = ACTIONS(4472), + [anon_sym_constinit] = ACTIONS(4472), + [anon_sym_consteval] = ACTIONS(4472), + [anon_sym_alignas] = ACTIONS(4472), + [anon_sym__Alignas] = ACTIONS(4472), + [sym_primitive_type] = ACTIONS(4472), + [anon_sym_enum] = ACTIONS(4472), + [anon_sym_class] = ACTIONS(4472), + [anon_sym_struct] = ACTIONS(4472), + [anon_sym_union] = ACTIONS(4472), + [anon_sym_if] = ACTIONS(4472), + [anon_sym_switch] = ACTIONS(4472), + [anon_sym_case] = ACTIONS(4472), + [anon_sym_default] = ACTIONS(4472), + [anon_sym_while] = ACTIONS(4472), + [anon_sym_do] = ACTIONS(4472), + [anon_sym_for] = ACTIONS(4472), + [anon_sym_return] = ACTIONS(4472), + [anon_sym_break] = ACTIONS(4472), + [anon_sym_continue] = ACTIONS(4472), + [anon_sym_goto] = ACTIONS(4472), + [anon_sym_not] = ACTIONS(4472), + [anon_sym_compl] = ACTIONS(4472), + [anon_sym_DASH_DASH] = ACTIONS(4474), + [anon_sym_PLUS_PLUS] = ACTIONS(4474), + [anon_sym_sizeof] = ACTIONS(4472), + [anon_sym___alignof__] = ACTIONS(4472), + [anon_sym___alignof] = ACTIONS(4472), + [anon_sym__alignof] = ACTIONS(4472), + [anon_sym_alignof] = ACTIONS(4472), + [anon_sym__Alignof] = ACTIONS(4472), + [anon_sym_offsetof] = ACTIONS(4472), + [anon_sym__Generic] = ACTIONS(4472), + [anon_sym_typename] = ACTIONS(4472), + [anon_sym_asm] = ACTIONS(4472), + [anon_sym___asm__] = ACTIONS(4472), + [anon_sym___asm] = ACTIONS(4472), + [sym_number_literal] = ACTIONS(4474), + [anon_sym_L_SQUOTE] = ACTIONS(4474), + [anon_sym_u_SQUOTE] = ACTIONS(4474), + [anon_sym_U_SQUOTE] = ACTIONS(4474), + [anon_sym_u8_SQUOTE] = ACTIONS(4474), + [anon_sym_SQUOTE] = ACTIONS(4474), + [anon_sym_L_DQUOTE] = ACTIONS(4474), + [anon_sym_u_DQUOTE] = ACTIONS(4474), + [anon_sym_U_DQUOTE] = ACTIONS(4474), + [anon_sym_u8_DQUOTE] = ACTIONS(4474), + [anon_sym_DQUOTE] = ACTIONS(4474), + [sym_true] = ACTIONS(4472), + [sym_false] = ACTIONS(4472), + [anon_sym_NULL] = ACTIONS(4472), + [anon_sym_nullptr] = ACTIONS(4472), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4472), + [anon_sym_decltype] = ACTIONS(4472), + [anon_sym_explicit] = ACTIONS(4472), + [anon_sym_export] = ACTIONS(4472), + [anon_sym_module] = ACTIONS(4472), + [anon_sym_import] = ACTIONS(4472), + [anon_sym_template] = ACTIONS(4472), + [anon_sym_operator] = ACTIONS(4472), + [anon_sym_try] = ACTIONS(4472), + [anon_sym_delete] = ACTIONS(4472), + [anon_sym_throw] = ACTIONS(4472), + [anon_sym_namespace] = ACTIONS(4472), + [anon_sym_static_assert] = ACTIONS(4472), + [anon_sym_concept] = ACTIONS(4472), + [anon_sym_co_return] = ACTIONS(4472), + [anon_sym_co_yield] = ACTIONS(4472), + [anon_sym_R_DQUOTE] = ACTIONS(4474), + [anon_sym_LR_DQUOTE] = ACTIONS(4474), + [anon_sym_uR_DQUOTE] = ACTIONS(4474), + [anon_sym_UR_DQUOTE] = ACTIONS(4474), + [anon_sym_u8R_DQUOTE] = ACTIONS(4474), + [anon_sym_co_await] = ACTIONS(4472), + [anon_sym_new] = ACTIONS(4472), + [anon_sym_requires] = ACTIONS(4472), + [anon_sym_CARET_CARET] = ACTIONS(4474), + [anon_sym_LBRACK_COLON] = ACTIONS(4474), + [sym_this] = ACTIONS(4472), + }, + [STATE(986)] = { + [sym_identifier] = ACTIONS(4476), + [aux_sym_preproc_include_token1] = ACTIONS(4476), + [aux_sym_preproc_def_token1] = ACTIONS(4476), + [aux_sym_preproc_if_token1] = ACTIONS(4476), + [aux_sym_preproc_if_token2] = ACTIONS(4476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4476), + [sym_preproc_directive] = ACTIONS(4476), + [anon_sym_LPAREN2] = ACTIONS(4478), + [anon_sym_BANG] = ACTIONS(4478), + [anon_sym_TILDE] = ACTIONS(4478), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_AMP] = ACTIONS(4476), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym___extension__] = ACTIONS(4476), + [anon_sym_typedef] = ACTIONS(4476), + [anon_sym_virtual] = ACTIONS(4476), + [anon_sym_extern] = ACTIONS(4476), + [anon_sym___attribute__] = ACTIONS(4476), + [anon_sym___attribute] = ACTIONS(4476), + [anon_sym_using] = ACTIONS(4476), + [anon_sym_COLON_COLON] = ACTIONS(4478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4478), + [anon_sym___declspec] = ACTIONS(4476), + [anon_sym___based] = ACTIONS(4476), + [anon_sym___cdecl] = ACTIONS(4476), + [anon_sym___clrcall] = ACTIONS(4476), + [anon_sym___stdcall] = ACTIONS(4476), + [anon_sym___fastcall] = ACTIONS(4476), + [anon_sym___thiscall] = ACTIONS(4476), + [anon_sym___vectorcall] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(4478), + [anon_sym_signed] = ACTIONS(4476), + [anon_sym_unsigned] = ACTIONS(4476), + [anon_sym_long] = ACTIONS(4476), + [anon_sym_short] = ACTIONS(4476), + [anon_sym_LBRACK] = ACTIONS(4476), + [anon_sym_static] = ACTIONS(4476), + [anon_sym_register] = ACTIONS(4476), + [anon_sym_inline] = ACTIONS(4476), + [anon_sym___inline] = ACTIONS(4476), + [anon_sym___inline__] = ACTIONS(4476), + [anon_sym___forceinline] = ACTIONS(4476), + [anon_sym_thread_local] = ACTIONS(4476), + [anon_sym___thread] = ACTIONS(4476), + [anon_sym_const] = ACTIONS(4476), + [anon_sym_constexpr] = ACTIONS(4476), + [anon_sym_volatile] = ACTIONS(4476), + [anon_sym_restrict] = ACTIONS(4476), + [anon_sym___restrict__] = ACTIONS(4476), + [anon_sym__Atomic] = ACTIONS(4476), + [anon_sym__Noreturn] = ACTIONS(4476), + [anon_sym_noreturn] = ACTIONS(4476), + [anon_sym__Nonnull] = ACTIONS(4476), + [anon_sym_mutable] = ACTIONS(4476), + [anon_sym_constinit] = ACTIONS(4476), + [anon_sym_consteval] = ACTIONS(4476), + [anon_sym_alignas] = ACTIONS(4476), + [anon_sym__Alignas] = ACTIONS(4476), + [sym_primitive_type] = ACTIONS(4476), + [anon_sym_enum] = ACTIONS(4476), + [anon_sym_class] = ACTIONS(4476), + [anon_sym_struct] = ACTIONS(4476), + [anon_sym_union] = ACTIONS(4476), + [anon_sym_if] = ACTIONS(4476), + [anon_sym_switch] = ACTIONS(4476), + [anon_sym_case] = ACTIONS(4476), + [anon_sym_default] = ACTIONS(4476), + [anon_sym_while] = ACTIONS(4476), + [anon_sym_do] = ACTIONS(4476), + [anon_sym_for] = ACTIONS(4476), + [anon_sym_return] = ACTIONS(4476), + [anon_sym_break] = ACTIONS(4476), + [anon_sym_continue] = ACTIONS(4476), + [anon_sym_goto] = ACTIONS(4476), + [anon_sym_not] = ACTIONS(4476), + [anon_sym_compl] = ACTIONS(4476), + [anon_sym_DASH_DASH] = ACTIONS(4478), + [anon_sym_PLUS_PLUS] = ACTIONS(4478), + [anon_sym_sizeof] = ACTIONS(4476), + [anon_sym___alignof__] = ACTIONS(4476), + [anon_sym___alignof] = ACTIONS(4476), + [anon_sym__alignof] = ACTIONS(4476), + [anon_sym_alignof] = ACTIONS(4476), + [anon_sym__Alignof] = ACTIONS(4476), + [anon_sym_offsetof] = ACTIONS(4476), + [anon_sym__Generic] = ACTIONS(4476), + [anon_sym_typename] = ACTIONS(4476), + [anon_sym_asm] = ACTIONS(4476), + [anon_sym___asm__] = ACTIONS(4476), + [anon_sym___asm] = ACTIONS(4476), + [sym_number_literal] = ACTIONS(4478), + [anon_sym_L_SQUOTE] = ACTIONS(4478), + [anon_sym_u_SQUOTE] = ACTIONS(4478), + [anon_sym_U_SQUOTE] = ACTIONS(4478), + [anon_sym_u8_SQUOTE] = ACTIONS(4478), + [anon_sym_SQUOTE] = ACTIONS(4478), + [anon_sym_L_DQUOTE] = ACTIONS(4478), + [anon_sym_u_DQUOTE] = ACTIONS(4478), + [anon_sym_U_DQUOTE] = ACTIONS(4478), + [anon_sym_u8_DQUOTE] = ACTIONS(4478), + [anon_sym_DQUOTE] = ACTIONS(4478), + [sym_true] = ACTIONS(4476), + [sym_false] = ACTIONS(4476), + [anon_sym_NULL] = ACTIONS(4476), + [anon_sym_nullptr] = ACTIONS(4476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4476), + [anon_sym_decltype] = ACTIONS(4476), + [anon_sym_explicit] = ACTIONS(4476), + [anon_sym_export] = ACTIONS(4476), + [anon_sym_module] = ACTIONS(4476), + [anon_sym_import] = ACTIONS(4476), + [anon_sym_template] = ACTIONS(4476), + [anon_sym_operator] = ACTIONS(4476), + [anon_sym_try] = ACTIONS(4476), + [anon_sym_delete] = ACTIONS(4476), + [anon_sym_throw] = ACTIONS(4476), + [anon_sym_namespace] = ACTIONS(4476), + [anon_sym_static_assert] = ACTIONS(4476), + [anon_sym_concept] = ACTIONS(4476), + [anon_sym_co_return] = ACTIONS(4476), + [anon_sym_co_yield] = ACTIONS(4476), + [anon_sym_R_DQUOTE] = ACTIONS(4478), + [anon_sym_LR_DQUOTE] = ACTIONS(4478), + [anon_sym_uR_DQUOTE] = ACTIONS(4478), + [anon_sym_UR_DQUOTE] = ACTIONS(4478), + [anon_sym_u8R_DQUOTE] = ACTIONS(4478), + [anon_sym_co_await] = ACTIONS(4476), + [anon_sym_new] = ACTIONS(4476), + [anon_sym_requires] = ACTIONS(4476), + [anon_sym_CARET_CARET] = ACTIONS(4478), + [anon_sym_LBRACK_COLON] = ACTIONS(4478), + [sym_this] = ACTIONS(4476), + }, + [STATE(987)] = { + [sym_identifier] = ACTIONS(4480), + [aux_sym_preproc_include_token1] = ACTIONS(4480), + [aux_sym_preproc_def_token1] = ACTIONS(4480), + [aux_sym_preproc_if_token1] = ACTIONS(4480), + [aux_sym_preproc_if_token2] = ACTIONS(4480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4480), + [sym_preproc_directive] = ACTIONS(4480), + [anon_sym_LPAREN2] = ACTIONS(4482), + [anon_sym_BANG] = ACTIONS(4482), + [anon_sym_TILDE] = ACTIONS(4482), + [anon_sym_DASH] = ACTIONS(4480), + [anon_sym_PLUS] = ACTIONS(4480), + [anon_sym_STAR] = ACTIONS(4482), + [anon_sym_AMP_AMP] = ACTIONS(4482), + [anon_sym_AMP] = ACTIONS(4480), + [anon_sym_SEMI] = ACTIONS(4482), + [anon_sym___extension__] = ACTIONS(4480), + [anon_sym_typedef] = ACTIONS(4480), + [anon_sym_virtual] = ACTIONS(4480), + [anon_sym_extern] = ACTIONS(4480), + [anon_sym___attribute__] = ACTIONS(4480), + [anon_sym___attribute] = ACTIONS(4480), + [anon_sym_using] = ACTIONS(4480), + [anon_sym_COLON_COLON] = ACTIONS(4482), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4482), + [anon_sym___declspec] = ACTIONS(4480), + [anon_sym___based] = ACTIONS(4480), + [anon_sym___cdecl] = ACTIONS(4480), + [anon_sym___clrcall] = ACTIONS(4480), + [anon_sym___stdcall] = ACTIONS(4480), + [anon_sym___fastcall] = ACTIONS(4480), + [anon_sym___thiscall] = ACTIONS(4480), + [anon_sym___vectorcall] = ACTIONS(4480), + [anon_sym_LBRACE] = ACTIONS(4482), + [anon_sym_signed] = ACTIONS(4480), + [anon_sym_unsigned] = ACTIONS(4480), + [anon_sym_long] = ACTIONS(4480), + [anon_sym_short] = ACTIONS(4480), + [anon_sym_LBRACK] = ACTIONS(4480), + [anon_sym_static] = ACTIONS(4480), + [anon_sym_register] = ACTIONS(4480), + [anon_sym_inline] = ACTIONS(4480), + [anon_sym___inline] = ACTIONS(4480), + [anon_sym___inline__] = ACTIONS(4480), + [anon_sym___forceinline] = ACTIONS(4480), + [anon_sym_thread_local] = ACTIONS(4480), + [anon_sym___thread] = ACTIONS(4480), + [anon_sym_const] = ACTIONS(4480), + [anon_sym_constexpr] = ACTIONS(4480), + [anon_sym_volatile] = ACTIONS(4480), + [anon_sym_restrict] = ACTIONS(4480), + [anon_sym___restrict__] = ACTIONS(4480), + [anon_sym__Atomic] = ACTIONS(4480), + [anon_sym__Noreturn] = ACTIONS(4480), + [anon_sym_noreturn] = ACTIONS(4480), + [anon_sym__Nonnull] = ACTIONS(4480), + [anon_sym_mutable] = ACTIONS(4480), + [anon_sym_constinit] = ACTIONS(4480), + [anon_sym_consteval] = ACTIONS(4480), + [anon_sym_alignas] = ACTIONS(4480), + [anon_sym__Alignas] = ACTIONS(4480), + [sym_primitive_type] = ACTIONS(4480), + [anon_sym_enum] = ACTIONS(4480), + [anon_sym_class] = ACTIONS(4480), + [anon_sym_struct] = ACTIONS(4480), + [anon_sym_union] = ACTIONS(4480), + [anon_sym_if] = ACTIONS(4480), + [anon_sym_switch] = ACTIONS(4480), + [anon_sym_case] = ACTIONS(4480), + [anon_sym_default] = ACTIONS(4480), + [anon_sym_while] = ACTIONS(4480), + [anon_sym_do] = ACTIONS(4480), + [anon_sym_for] = ACTIONS(4480), + [anon_sym_return] = ACTIONS(4480), + [anon_sym_break] = ACTIONS(4480), + [anon_sym_continue] = ACTIONS(4480), + [anon_sym_goto] = ACTIONS(4480), + [anon_sym_not] = ACTIONS(4480), + [anon_sym_compl] = ACTIONS(4480), + [anon_sym_DASH_DASH] = ACTIONS(4482), + [anon_sym_PLUS_PLUS] = ACTIONS(4482), + [anon_sym_sizeof] = ACTIONS(4480), + [anon_sym___alignof__] = ACTIONS(4480), + [anon_sym___alignof] = ACTIONS(4480), + [anon_sym__alignof] = ACTIONS(4480), + [anon_sym_alignof] = ACTIONS(4480), + [anon_sym__Alignof] = ACTIONS(4480), + [anon_sym_offsetof] = ACTIONS(4480), + [anon_sym__Generic] = ACTIONS(4480), + [anon_sym_typename] = ACTIONS(4480), + [anon_sym_asm] = ACTIONS(4480), + [anon_sym___asm__] = ACTIONS(4480), + [anon_sym___asm] = ACTIONS(4480), + [sym_number_literal] = ACTIONS(4482), + [anon_sym_L_SQUOTE] = ACTIONS(4482), + [anon_sym_u_SQUOTE] = ACTIONS(4482), + [anon_sym_U_SQUOTE] = ACTIONS(4482), + [anon_sym_u8_SQUOTE] = ACTIONS(4482), + [anon_sym_SQUOTE] = ACTIONS(4482), + [anon_sym_L_DQUOTE] = ACTIONS(4482), + [anon_sym_u_DQUOTE] = ACTIONS(4482), + [anon_sym_U_DQUOTE] = ACTIONS(4482), + [anon_sym_u8_DQUOTE] = ACTIONS(4482), + [anon_sym_DQUOTE] = ACTIONS(4482), + [sym_true] = ACTIONS(4480), + [sym_false] = ACTIONS(4480), + [anon_sym_NULL] = ACTIONS(4480), + [anon_sym_nullptr] = ACTIONS(4480), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4480), + [anon_sym_decltype] = ACTIONS(4480), + [anon_sym_explicit] = ACTIONS(4480), + [anon_sym_export] = ACTIONS(4480), + [anon_sym_module] = ACTIONS(4480), + [anon_sym_import] = ACTIONS(4480), + [anon_sym_template] = ACTIONS(4480), + [anon_sym_operator] = ACTIONS(4480), + [anon_sym_try] = ACTIONS(4480), + [anon_sym_delete] = ACTIONS(4480), + [anon_sym_throw] = ACTIONS(4480), + [anon_sym_namespace] = ACTIONS(4480), + [anon_sym_static_assert] = ACTIONS(4480), + [anon_sym_concept] = ACTIONS(4480), + [anon_sym_co_return] = ACTIONS(4480), + [anon_sym_co_yield] = ACTIONS(4480), + [anon_sym_R_DQUOTE] = ACTIONS(4482), + [anon_sym_LR_DQUOTE] = ACTIONS(4482), + [anon_sym_uR_DQUOTE] = ACTIONS(4482), + [anon_sym_UR_DQUOTE] = ACTIONS(4482), + [anon_sym_u8R_DQUOTE] = ACTIONS(4482), + [anon_sym_co_await] = ACTIONS(4480), + [anon_sym_new] = ACTIONS(4480), + [anon_sym_requires] = ACTIONS(4480), + [anon_sym_CARET_CARET] = ACTIONS(4482), + [anon_sym_LBRACK_COLON] = ACTIONS(4482), + [sym_this] = ACTIONS(4480), + }, + [STATE(988)] = { + [ts_builtin_sym_end] = ACTIONS(4038), + [sym_identifier] = ACTIONS(4036), + [aux_sym_preproc_include_token1] = ACTIONS(4036), + [aux_sym_preproc_def_token1] = ACTIONS(4036), + [aux_sym_preproc_if_token1] = ACTIONS(4036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4036), + [sym_preproc_directive] = ACTIONS(4036), + [anon_sym_LPAREN2] = ACTIONS(4038), + [anon_sym_BANG] = ACTIONS(4038), + [anon_sym_TILDE] = ACTIONS(4038), + [anon_sym_DASH] = ACTIONS(4036), + [anon_sym_PLUS] = ACTIONS(4036), + [anon_sym_STAR] = ACTIONS(4038), + [anon_sym_AMP_AMP] = ACTIONS(4038), + [anon_sym_AMP] = ACTIONS(4036), + [anon_sym_SEMI] = ACTIONS(4038), + [anon_sym___extension__] = ACTIONS(4036), + [anon_sym_typedef] = ACTIONS(4036), + [anon_sym_virtual] = ACTIONS(4036), + [anon_sym_extern] = ACTIONS(4036), + [anon_sym___attribute__] = ACTIONS(4036), + [anon_sym___attribute] = ACTIONS(4036), + [anon_sym_using] = ACTIONS(4036), + [anon_sym_COLON_COLON] = ACTIONS(4038), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4038), + [anon_sym___declspec] = ACTIONS(4036), + [anon_sym___based] = ACTIONS(4036), + [anon_sym___cdecl] = ACTIONS(4036), + [anon_sym___clrcall] = ACTIONS(4036), + [anon_sym___stdcall] = ACTIONS(4036), + [anon_sym___fastcall] = ACTIONS(4036), + [anon_sym___thiscall] = ACTIONS(4036), + [anon_sym___vectorcall] = ACTIONS(4036), + [anon_sym_LBRACE] = ACTIONS(4038), + [anon_sym_signed] = ACTIONS(4036), + [anon_sym_unsigned] = ACTIONS(4036), + [anon_sym_long] = ACTIONS(4036), + [anon_sym_short] = ACTIONS(4036), + [anon_sym_LBRACK] = ACTIONS(4036), + [anon_sym_static] = ACTIONS(4036), + [anon_sym_register] = ACTIONS(4036), + [anon_sym_inline] = ACTIONS(4036), + [anon_sym___inline] = ACTIONS(4036), + [anon_sym___inline__] = ACTIONS(4036), + [anon_sym___forceinline] = ACTIONS(4036), + [anon_sym_thread_local] = ACTIONS(4036), + [anon_sym___thread] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4036), + [anon_sym_constexpr] = ACTIONS(4036), + [anon_sym_volatile] = ACTIONS(4036), + [anon_sym_restrict] = ACTIONS(4036), + [anon_sym___restrict__] = ACTIONS(4036), + [anon_sym__Atomic] = ACTIONS(4036), + [anon_sym__Noreturn] = ACTIONS(4036), + [anon_sym_noreturn] = ACTIONS(4036), + [anon_sym__Nonnull] = ACTIONS(4036), + [anon_sym_mutable] = ACTIONS(4036), + [anon_sym_constinit] = ACTIONS(4036), + [anon_sym_consteval] = ACTIONS(4036), + [anon_sym_alignas] = ACTIONS(4036), + [anon_sym__Alignas] = ACTIONS(4036), + [sym_primitive_type] = ACTIONS(4036), + [anon_sym_enum] = ACTIONS(4036), + [anon_sym_class] = ACTIONS(4036), + [anon_sym_struct] = ACTIONS(4036), + [anon_sym_union] = ACTIONS(4036), + [anon_sym_if] = ACTIONS(4036), + [anon_sym_switch] = ACTIONS(4036), + [anon_sym_case] = ACTIONS(4036), + [anon_sym_default] = ACTIONS(4036), + [anon_sym_while] = ACTIONS(4036), + [anon_sym_do] = ACTIONS(4036), + [anon_sym_for] = ACTIONS(4036), + [anon_sym_return] = ACTIONS(4036), + [anon_sym_break] = ACTIONS(4036), + [anon_sym_continue] = ACTIONS(4036), + [anon_sym_goto] = ACTIONS(4036), + [anon_sym_not] = ACTIONS(4036), + [anon_sym_compl] = ACTIONS(4036), + [anon_sym_DASH_DASH] = ACTIONS(4038), + [anon_sym_PLUS_PLUS] = ACTIONS(4038), + [anon_sym_sizeof] = ACTIONS(4036), + [anon_sym___alignof__] = ACTIONS(4036), + [anon_sym___alignof] = ACTIONS(4036), + [anon_sym__alignof] = ACTIONS(4036), + [anon_sym_alignof] = ACTIONS(4036), + [anon_sym__Alignof] = ACTIONS(4036), + [anon_sym_offsetof] = ACTIONS(4036), + [anon_sym__Generic] = ACTIONS(4036), + [anon_sym_typename] = ACTIONS(4036), + [anon_sym_asm] = ACTIONS(4036), + [anon_sym___asm__] = ACTIONS(4036), + [anon_sym___asm] = ACTIONS(4036), + [sym_number_literal] = ACTIONS(4038), + [anon_sym_L_SQUOTE] = ACTIONS(4038), + [anon_sym_u_SQUOTE] = ACTIONS(4038), + [anon_sym_U_SQUOTE] = ACTIONS(4038), + [anon_sym_u8_SQUOTE] = ACTIONS(4038), + [anon_sym_SQUOTE] = ACTIONS(4038), + [anon_sym_L_DQUOTE] = ACTIONS(4038), + [anon_sym_u_DQUOTE] = ACTIONS(4038), + [anon_sym_U_DQUOTE] = ACTIONS(4038), + [anon_sym_u8_DQUOTE] = ACTIONS(4038), + [anon_sym_DQUOTE] = ACTIONS(4038), + [sym_true] = ACTIONS(4036), + [sym_false] = ACTIONS(4036), + [anon_sym_NULL] = ACTIONS(4036), + [anon_sym_nullptr] = ACTIONS(4036), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4036), + [anon_sym_decltype] = ACTIONS(4036), + [anon_sym_explicit] = ACTIONS(4036), + [anon_sym_export] = ACTIONS(4036), + [anon_sym_module] = ACTIONS(4036), + [anon_sym_import] = ACTIONS(4036), + [anon_sym_template] = ACTIONS(4036), + [anon_sym_operator] = ACTIONS(4036), + [anon_sym_try] = ACTIONS(4036), + [anon_sym_delete] = ACTIONS(4036), + [anon_sym_throw] = ACTIONS(4036), + [anon_sym_namespace] = ACTIONS(4036), + [anon_sym_static_assert] = ACTIONS(4036), + [anon_sym_concept] = ACTIONS(4036), + [anon_sym_co_return] = ACTIONS(4036), + [anon_sym_co_yield] = ACTIONS(4036), + [anon_sym_R_DQUOTE] = ACTIONS(4038), + [anon_sym_LR_DQUOTE] = ACTIONS(4038), + [anon_sym_uR_DQUOTE] = ACTIONS(4038), + [anon_sym_UR_DQUOTE] = ACTIONS(4038), + [anon_sym_u8R_DQUOTE] = ACTIONS(4038), + [anon_sym_co_await] = ACTIONS(4036), + [anon_sym_new] = ACTIONS(4036), + [anon_sym_requires] = ACTIONS(4036), + [anon_sym_CARET_CARET] = ACTIONS(4038), + [anon_sym_LBRACK_COLON] = ACTIONS(4038), + [sym_this] = ACTIONS(4036), + }, + [STATE(989)] = { + [sym_preproc_def] = STATE(960), + [sym_preproc_function_def] = STATE(960), + [sym_preproc_call] = STATE(960), + [sym_preproc_if_in_field_declaration_list] = STATE(960), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(960), + [sym_type_definition] = STATE(960), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8099), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8689), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(960), + [sym_field_declaration] = STATE(960), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2469), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(960), + [sym_operator_cast] = STATE(9167), + [sym_inline_method_definition] = STATE(960), + [sym__constructor_specifiers] = STATE(2469), + [sym_operator_cast_definition] = STATE(960), + [sym_operator_cast_declaration] = STATE(960), + [sym_constructor_or_destructor_definition] = STATE(960), + [sym_constructor_or_destructor_declaration] = STATE(960), + [sym_friend_declaration] = STATE(960), + [sym_access_specifier] = STATE(10982), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(960), + [sym_alias_declaration] = STATE(960), + [sym_static_assert_declaration] = STATE(960), + [sym_consteval_block_declaration] = STATE(960), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9167), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(960), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9503), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2469), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(4801), + [aux_sym_preproc_if_token1] = ACTIONS(4803), + [aux_sym_preproc_if_token2] = ACTIONS(4884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4807), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4807), + [sym_preproc_directive] = ACTIONS(4809), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(4886), + [anon_sym___extension__] = ACTIONS(4813), + [anon_sym_typedef] = ACTIONS(4815), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4817), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4819), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4821), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(4823), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4825), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(4827), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(990)] = { + [ts_builtin_sym_end] = ACTIONS(4502), + [sym_identifier] = ACTIONS(4500), + [aux_sym_preproc_include_token1] = ACTIONS(4500), + [aux_sym_preproc_def_token1] = ACTIONS(4500), + [aux_sym_preproc_if_token1] = ACTIONS(4500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4500), + [sym_preproc_directive] = ACTIONS(4500), + [anon_sym_LPAREN2] = ACTIONS(4502), + [anon_sym_BANG] = ACTIONS(4502), + [anon_sym_TILDE] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4500), + [anon_sym_PLUS] = ACTIONS(4500), + [anon_sym_STAR] = ACTIONS(4502), + [anon_sym_AMP_AMP] = ACTIONS(4502), + [anon_sym_AMP] = ACTIONS(4500), + [anon_sym_SEMI] = ACTIONS(4502), + [anon_sym___extension__] = ACTIONS(4500), + [anon_sym_typedef] = ACTIONS(4500), + [anon_sym_virtual] = ACTIONS(4500), + [anon_sym_extern] = ACTIONS(4500), + [anon_sym___attribute__] = ACTIONS(4500), + [anon_sym___attribute] = ACTIONS(4500), + [anon_sym_using] = ACTIONS(4500), + [anon_sym_COLON_COLON] = ACTIONS(4502), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4502), + [anon_sym___declspec] = ACTIONS(4500), + [anon_sym___based] = ACTIONS(4500), + [anon_sym___cdecl] = ACTIONS(4500), + [anon_sym___clrcall] = ACTIONS(4500), + [anon_sym___stdcall] = ACTIONS(4500), + [anon_sym___fastcall] = ACTIONS(4500), + [anon_sym___thiscall] = ACTIONS(4500), + [anon_sym___vectorcall] = ACTIONS(4500), + [anon_sym_LBRACE] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4500), + [anon_sym_unsigned] = ACTIONS(4500), + [anon_sym_long] = ACTIONS(4500), + [anon_sym_short] = ACTIONS(4500), + [anon_sym_LBRACK] = ACTIONS(4500), + [anon_sym_static] = ACTIONS(4500), + [anon_sym_register] = ACTIONS(4500), + [anon_sym_inline] = ACTIONS(4500), + [anon_sym___inline] = ACTIONS(4500), + [anon_sym___inline__] = ACTIONS(4500), + [anon_sym___forceinline] = ACTIONS(4500), + [anon_sym_thread_local] = ACTIONS(4500), + [anon_sym___thread] = ACTIONS(4500), + [anon_sym_const] = ACTIONS(4500), + [anon_sym_constexpr] = ACTIONS(4500), + [anon_sym_volatile] = ACTIONS(4500), + [anon_sym_restrict] = ACTIONS(4500), + [anon_sym___restrict__] = ACTIONS(4500), + [anon_sym__Atomic] = ACTIONS(4500), + [anon_sym__Noreturn] = ACTIONS(4500), + [anon_sym_noreturn] = ACTIONS(4500), + [anon_sym__Nonnull] = ACTIONS(4500), + [anon_sym_mutable] = ACTIONS(4500), + [anon_sym_constinit] = ACTIONS(4500), + [anon_sym_consteval] = ACTIONS(4500), + [anon_sym_alignas] = ACTIONS(4500), + [anon_sym__Alignas] = ACTIONS(4500), + [sym_primitive_type] = ACTIONS(4500), + [anon_sym_enum] = ACTIONS(4500), + [anon_sym_class] = ACTIONS(4500), + [anon_sym_struct] = ACTIONS(4500), + [anon_sym_union] = ACTIONS(4500), + [anon_sym_if] = ACTIONS(4500), + [anon_sym_switch] = ACTIONS(4500), + [anon_sym_case] = ACTIONS(4500), + [anon_sym_default] = ACTIONS(4500), + [anon_sym_while] = ACTIONS(4500), + [anon_sym_do] = ACTIONS(4500), + [anon_sym_for] = ACTIONS(4500), + [anon_sym_return] = ACTIONS(4500), + [anon_sym_break] = ACTIONS(4500), + [anon_sym_continue] = ACTIONS(4500), + [anon_sym_goto] = ACTIONS(4500), + [anon_sym_not] = ACTIONS(4500), + [anon_sym_compl] = ACTIONS(4500), + [anon_sym_DASH_DASH] = ACTIONS(4502), + [anon_sym_PLUS_PLUS] = ACTIONS(4502), + [anon_sym_sizeof] = ACTIONS(4500), + [anon_sym___alignof__] = ACTIONS(4500), + [anon_sym___alignof] = ACTIONS(4500), + [anon_sym__alignof] = ACTIONS(4500), + [anon_sym_alignof] = ACTIONS(4500), + [anon_sym__Alignof] = ACTIONS(4500), + [anon_sym_offsetof] = ACTIONS(4500), + [anon_sym__Generic] = ACTIONS(4500), + [anon_sym_typename] = ACTIONS(4500), + [anon_sym_asm] = ACTIONS(4500), + [anon_sym___asm__] = ACTIONS(4500), + [anon_sym___asm] = ACTIONS(4500), + [sym_number_literal] = ACTIONS(4502), + [anon_sym_L_SQUOTE] = ACTIONS(4502), + [anon_sym_u_SQUOTE] = ACTIONS(4502), + [anon_sym_U_SQUOTE] = ACTIONS(4502), + [anon_sym_u8_SQUOTE] = ACTIONS(4502), + [anon_sym_SQUOTE] = ACTIONS(4502), + [anon_sym_L_DQUOTE] = ACTIONS(4502), + [anon_sym_u_DQUOTE] = ACTIONS(4502), + [anon_sym_U_DQUOTE] = ACTIONS(4502), + [anon_sym_u8_DQUOTE] = ACTIONS(4502), + [anon_sym_DQUOTE] = ACTIONS(4502), + [sym_true] = ACTIONS(4500), + [sym_false] = ACTIONS(4500), + [anon_sym_NULL] = ACTIONS(4500), + [anon_sym_nullptr] = ACTIONS(4500), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4500), + [anon_sym_decltype] = ACTIONS(4500), + [anon_sym_explicit] = ACTIONS(4500), + [anon_sym_export] = ACTIONS(4500), + [anon_sym_module] = ACTIONS(4500), + [anon_sym_import] = ACTIONS(4500), + [anon_sym_template] = ACTIONS(4500), + [anon_sym_operator] = ACTIONS(4500), + [anon_sym_try] = ACTIONS(4500), + [anon_sym_delete] = ACTIONS(4500), + [anon_sym_throw] = ACTIONS(4500), + [anon_sym_namespace] = ACTIONS(4500), + [anon_sym_static_assert] = ACTIONS(4500), + [anon_sym_concept] = ACTIONS(4500), + [anon_sym_co_return] = ACTIONS(4500), + [anon_sym_co_yield] = ACTIONS(4500), + [anon_sym_R_DQUOTE] = ACTIONS(4502), + [anon_sym_LR_DQUOTE] = ACTIONS(4502), + [anon_sym_uR_DQUOTE] = ACTIONS(4502), + [anon_sym_UR_DQUOTE] = ACTIONS(4502), + [anon_sym_u8R_DQUOTE] = ACTIONS(4502), + [anon_sym_co_await] = ACTIONS(4500), + [anon_sym_new] = ACTIONS(4500), + [anon_sym_requires] = ACTIONS(4500), + [anon_sym_CARET_CARET] = ACTIONS(4502), + [anon_sym_LBRACK_COLON] = ACTIONS(4502), + [sym_this] = ACTIONS(4500), + }, + [STATE(991)] = { + [ts_builtin_sym_end] = ACTIONS(4042), + [sym_identifier] = ACTIONS(4040), + [aux_sym_preproc_include_token1] = ACTIONS(4040), + [aux_sym_preproc_def_token1] = ACTIONS(4040), + [aux_sym_preproc_if_token1] = ACTIONS(4040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4040), + [sym_preproc_directive] = ACTIONS(4040), + [anon_sym_LPAREN2] = ACTIONS(4042), + [anon_sym_BANG] = ACTIONS(4042), + [anon_sym_TILDE] = ACTIONS(4042), + [anon_sym_DASH] = ACTIONS(4040), + [anon_sym_PLUS] = ACTIONS(4040), + [anon_sym_STAR] = ACTIONS(4042), + [anon_sym_AMP_AMP] = ACTIONS(4042), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_SEMI] = ACTIONS(4042), + [anon_sym___extension__] = ACTIONS(4040), + [anon_sym_typedef] = ACTIONS(4040), + [anon_sym_virtual] = ACTIONS(4040), + [anon_sym_extern] = ACTIONS(4040), + [anon_sym___attribute__] = ACTIONS(4040), + [anon_sym___attribute] = ACTIONS(4040), + [anon_sym_using] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(4042), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4042), + [anon_sym___declspec] = ACTIONS(4040), + [anon_sym___based] = ACTIONS(4040), + [anon_sym___cdecl] = ACTIONS(4040), + [anon_sym___clrcall] = ACTIONS(4040), + [anon_sym___stdcall] = ACTIONS(4040), + [anon_sym___fastcall] = ACTIONS(4040), + [anon_sym___thiscall] = ACTIONS(4040), + [anon_sym___vectorcall] = ACTIONS(4040), + [anon_sym_LBRACE] = ACTIONS(4042), + [anon_sym_signed] = ACTIONS(4040), + [anon_sym_unsigned] = ACTIONS(4040), + [anon_sym_long] = ACTIONS(4040), + [anon_sym_short] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4040), + [anon_sym_static] = ACTIONS(4040), + [anon_sym_register] = ACTIONS(4040), + [anon_sym_inline] = ACTIONS(4040), + [anon_sym___inline] = ACTIONS(4040), + [anon_sym___inline__] = ACTIONS(4040), + [anon_sym___forceinline] = ACTIONS(4040), + [anon_sym_thread_local] = ACTIONS(4040), + [anon_sym___thread] = ACTIONS(4040), + [anon_sym_const] = ACTIONS(4040), + [anon_sym_constexpr] = ACTIONS(4040), + [anon_sym_volatile] = ACTIONS(4040), + [anon_sym_restrict] = ACTIONS(4040), + [anon_sym___restrict__] = ACTIONS(4040), + [anon_sym__Atomic] = ACTIONS(4040), + [anon_sym__Noreturn] = ACTIONS(4040), + [anon_sym_noreturn] = ACTIONS(4040), + [anon_sym__Nonnull] = ACTIONS(4040), + [anon_sym_mutable] = ACTIONS(4040), + [anon_sym_constinit] = ACTIONS(4040), + [anon_sym_consteval] = ACTIONS(4040), + [anon_sym_alignas] = ACTIONS(4040), + [anon_sym__Alignas] = ACTIONS(4040), + [sym_primitive_type] = ACTIONS(4040), + [anon_sym_enum] = ACTIONS(4040), + [anon_sym_class] = ACTIONS(4040), + [anon_sym_struct] = ACTIONS(4040), + [anon_sym_union] = ACTIONS(4040), + [anon_sym_if] = ACTIONS(4040), + [anon_sym_switch] = ACTIONS(4040), + [anon_sym_case] = ACTIONS(4040), + [anon_sym_default] = ACTIONS(4040), + [anon_sym_while] = ACTIONS(4040), + [anon_sym_do] = ACTIONS(4040), + [anon_sym_for] = ACTIONS(4040), + [anon_sym_return] = ACTIONS(4040), + [anon_sym_break] = ACTIONS(4040), + [anon_sym_continue] = ACTIONS(4040), + [anon_sym_goto] = ACTIONS(4040), + [anon_sym_not] = ACTIONS(4040), + [anon_sym_compl] = ACTIONS(4040), + [anon_sym_DASH_DASH] = ACTIONS(4042), + [anon_sym_PLUS_PLUS] = ACTIONS(4042), + [anon_sym_sizeof] = ACTIONS(4040), + [anon_sym___alignof__] = ACTIONS(4040), + [anon_sym___alignof] = ACTIONS(4040), + [anon_sym__alignof] = ACTIONS(4040), + [anon_sym_alignof] = ACTIONS(4040), + [anon_sym__Alignof] = ACTIONS(4040), + [anon_sym_offsetof] = ACTIONS(4040), + [anon_sym__Generic] = ACTIONS(4040), + [anon_sym_typename] = ACTIONS(4040), + [anon_sym_asm] = ACTIONS(4040), + [anon_sym___asm__] = ACTIONS(4040), + [anon_sym___asm] = ACTIONS(4040), + [sym_number_literal] = ACTIONS(4042), + [anon_sym_L_SQUOTE] = ACTIONS(4042), + [anon_sym_u_SQUOTE] = ACTIONS(4042), + [anon_sym_U_SQUOTE] = ACTIONS(4042), + [anon_sym_u8_SQUOTE] = ACTIONS(4042), + [anon_sym_SQUOTE] = ACTIONS(4042), + [anon_sym_L_DQUOTE] = ACTIONS(4042), + [anon_sym_u_DQUOTE] = ACTIONS(4042), + [anon_sym_U_DQUOTE] = ACTIONS(4042), + [anon_sym_u8_DQUOTE] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4042), + [sym_true] = ACTIONS(4040), + [sym_false] = ACTIONS(4040), + [anon_sym_NULL] = ACTIONS(4040), + [anon_sym_nullptr] = ACTIONS(4040), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4040), + [anon_sym_decltype] = ACTIONS(4040), + [anon_sym_explicit] = ACTIONS(4040), + [anon_sym_export] = ACTIONS(4040), + [anon_sym_module] = ACTIONS(4040), + [anon_sym_import] = ACTIONS(4040), + [anon_sym_template] = ACTIONS(4040), + [anon_sym_operator] = ACTIONS(4040), + [anon_sym_try] = ACTIONS(4040), + [anon_sym_delete] = ACTIONS(4040), + [anon_sym_throw] = ACTIONS(4040), + [anon_sym_namespace] = ACTIONS(4040), + [anon_sym_static_assert] = ACTIONS(4040), + [anon_sym_concept] = ACTIONS(4040), + [anon_sym_co_return] = ACTIONS(4040), + [anon_sym_co_yield] = ACTIONS(4040), + [anon_sym_R_DQUOTE] = ACTIONS(4042), + [anon_sym_LR_DQUOTE] = ACTIONS(4042), + [anon_sym_uR_DQUOTE] = ACTIONS(4042), + [anon_sym_UR_DQUOTE] = ACTIONS(4042), + [anon_sym_u8R_DQUOTE] = ACTIONS(4042), + [anon_sym_co_await] = ACTIONS(4040), + [anon_sym_new] = ACTIONS(4040), + [anon_sym_requires] = ACTIONS(4040), + [anon_sym_CARET_CARET] = ACTIONS(4042), + [anon_sym_LBRACK_COLON] = ACTIONS(4042), + [sym_this] = ACTIONS(4040), + }, + [STATE(992)] = { + [ts_builtin_sym_end] = ACTIONS(4046), + [sym_identifier] = ACTIONS(4044), + [aux_sym_preproc_include_token1] = ACTIONS(4044), + [aux_sym_preproc_def_token1] = ACTIONS(4044), + [aux_sym_preproc_if_token1] = ACTIONS(4044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4044), + [sym_preproc_directive] = ACTIONS(4044), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(4046), + [anon_sym_TILDE] = ACTIONS(4046), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym___extension__] = ACTIONS(4044), + [anon_sym_typedef] = ACTIONS(4044), + [anon_sym_virtual] = ACTIONS(4044), + [anon_sym_extern] = ACTIONS(4044), + [anon_sym___attribute__] = ACTIONS(4044), + [anon_sym___attribute] = ACTIONS(4044), + [anon_sym_using] = ACTIONS(4044), + [anon_sym_COLON_COLON] = ACTIONS(4046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4046), + [anon_sym___declspec] = ACTIONS(4044), + [anon_sym___based] = ACTIONS(4044), + [anon_sym___cdecl] = ACTIONS(4044), + [anon_sym___clrcall] = ACTIONS(4044), + [anon_sym___stdcall] = ACTIONS(4044), + [anon_sym___fastcall] = ACTIONS(4044), + [anon_sym___thiscall] = ACTIONS(4044), + [anon_sym___vectorcall] = ACTIONS(4044), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_signed] = ACTIONS(4044), + [anon_sym_unsigned] = ACTIONS(4044), + [anon_sym_long] = ACTIONS(4044), + [anon_sym_short] = ACTIONS(4044), + [anon_sym_LBRACK] = ACTIONS(4044), + [anon_sym_static] = ACTIONS(4044), + [anon_sym_register] = ACTIONS(4044), + [anon_sym_inline] = ACTIONS(4044), + [anon_sym___inline] = ACTIONS(4044), + [anon_sym___inline__] = ACTIONS(4044), + [anon_sym___forceinline] = ACTIONS(4044), + [anon_sym_thread_local] = ACTIONS(4044), + [anon_sym___thread] = ACTIONS(4044), + [anon_sym_const] = ACTIONS(4044), + [anon_sym_constexpr] = ACTIONS(4044), + [anon_sym_volatile] = ACTIONS(4044), + [anon_sym_restrict] = ACTIONS(4044), + [anon_sym___restrict__] = ACTIONS(4044), + [anon_sym__Atomic] = ACTIONS(4044), + [anon_sym__Noreturn] = ACTIONS(4044), + [anon_sym_noreturn] = ACTIONS(4044), + [anon_sym__Nonnull] = ACTIONS(4044), + [anon_sym_mutable] = ACTIONS(4044), + [anon_sym_constinit] = ACTIONS(4044), + [anon_sym_consteval] = ACTIONS(4044), + [anon_sym_alignas] = ACTIONS(4044), + [anon_sym__Alignas] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(4044), + [anon_sym_enum] = ACTIONS(4044), + [anon_sym_class] = ACTIONS(4044), + [anon_sym_struct] = ACTIONS(4044), + [anon_sym_union] = ACTIONS(4044), + [anon_sym_if] = ACTIONS(4044), + [anon_sym_switch] = ACTIONS(4044), + [anon_sym_case] = ACTIONS(4044), + [anon_sym_default] = ACTIONS(4044), + [anon_sym_while] = ACTIONS(4044), + [anon_sym_do] = ACTIONS(4044), + [anon_sym_for] = ACTIONS(4044), + [anon_sym_return] = ACTIONS(4044), + [anon_sym_break] = ACTIONS(4044), + [anon_sym_continue] = ACTIONS(4044), + [anon_sym_goto] = ACTIONS(4044), + [anon_sym_not] = ACTIONS(4044), + [anon_sym_compl] = ACTIONS(4044), + [anon_sym_DASH_DASH] = ACTIONS(4046), + [anon_sym_PLUS_PLUS] = ACTIONS(4046), + [anon_sym_sizeof] = ACTIONS(4044), + [anon_sym___alignof__] = ACTIONS(4044), + [anon_sym___alignof] = ACTIONS(4044), + [anon_sym__alignof] = ACTIONS(4044), + [anon_sym_alignof] = ACTIONS(4044), + [anon_sym__Alignof] = ACTIONS(4044), + [anon_sym_offsetof] = ACTIONS(4044), + [anon_sym__Generic] = ACTIONS(4044), + [anon_sym_typename] = ACTIONS(4044), + [anon_sym_asm] = ACTIONS(4044), + [anon_sym___asm__] = ACTIONS(4044), + [anon_sym___asm] = ACTIONS(4044), + [sym_number_literal] = ACTIONS(4046), + [anon_sym_L_SQUOTE] = ACTIONS(4046), + [anon_sym_u_SQUOTE] = ACTIONS(4046), + [anon_sym_U_SQUOTE] = ACTIONS(4046), + [anon_sym_u8_SQUOTE] = ACTIONS(4046), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_L_DQUOTE] = ACTIONS(4046), + [anon_sym_u_DQUOTE] = ACTIONS(4046), + [anon_sym_U_DQUOTE] = ACTIONS(4046), + [anon_sym_u8_DQUOTE] = ACTIONS(4046), + [anon_sym_DQUOTE] = ACTIONS(4046), + [sym_true] = ACTIONS(4044), + [sym_false] = ACTIONS(4044), + [anon_sym_NULL] = ACTIONS(4044), + [anon_sym_nullptr] = ACTIONS(4044), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4044), + [anon_sym_decltype] = ACTIONS(4044), + [anon_sym_explicit] = ACTIONS(4044), + [anon_sym_export] = ACTIONS(4044), + [anon_sym_module] = ACTIONS(4044), + [anon_sym_import] = ACTIONS(4044), + [anon_sym_template] = ACTIONS(4044), + [anon_sym_operator] = ACTIONS(4044), + [anon_sym_try] = ACTIONS(4044), + [anon_sym_delete] = ACTIONS(4044), + [anon_sym_throw] = ACTIONS(4044), + [anon_sym_namespace] = ACTIONS(4044), + [anon_sym_static_assert] = ACTIONS(4044), + [anon_sym_concept] = ACTIONS(4044), + [anon_sym_co_return] = ACTIONS(4044), + [anon_sym_co_yield] = ACTIONS(4044), + [anon_sym_R_DQUOTE] = ACTIONS(4046), + [anon_sym_LR_DQUOTE] = ACTIONS(4046), + [anon_sym_uR_DQUOTE] = ACTIONS(4046), + [anon_sym_UR_DQUOTE] = ACTIONS(4046), + [anon_sym_u8R_DQUOTE] = ACTIONS(4046), + [anon_sym_co_await] = ACTIONS(4044), + [anon_sym_new] = ACTIONS(4044), + [anon_sym_requires] = ACTIONS(4044), + [anon_sym_CARET_CARET] = ACTIONS(4046), + [anon_sym_LBRACK_COLON] = ACTIONS(4046), + [sym_this] = ACTIONS(4044), + }, + [STATE(993)] = { + [ts_builtin_sym_end] = ACTIONS(4532), + [sym_identifier] = ACTIONS(4530), + [aux_sym_preproc_include_token1] = ACTIONS(4530), + [aux_sym_preproc_def_token1] = ACTIONS(4530), + [aux_sym_preproc_if_token1] = ACTIONS(4530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4530), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4530), + [sym_preproc_directive] = ACTIONS(4530), + [anon_sym_LPAREN2] = ACTIONS(4532), + [anon_sym_BANG] = ACTIONS(4532), + [anon_sym_TILDE] = ACTIONS(4532), + [anon_sym_DASH] = ACTIONS(4530), + [anon_sym_PLUS] = ACTIONS(4530), + [anon_sym_STAR] = ACTIONS(4532), + [anon_sym_AMP_AMP] = ACTIONS(4532), + [anon_sym_AMP] = ACTIONS(4530), + [anon_sym_SEMI] = ACTIONS(4532), + [anon_sym___extension__] = ACTIONS(4530), + [anon_sym_typedef] = ACTIONS(4530), + [anon_sym_virtual] = ACTIONS(4530), + [anon_sym_extern] = ACTIONS(4530), + [anon_sym___attribute__] = ACTIONS(4530), + [anon_sym___attribute] = ACTIONS(4530), + [anon_sym_using] = ACTIONS(4530), + [anon_sym_COLON_COLON] = ACTIONS(4532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4532), + [anon_sym___declspec] = ACTIONS(4530), + [anon_sym___based] = ACTIONS(4530), + [anon_sym___cdecl] = ACTIONS(4530), + [anon_sym___clrcall] = ACTIONS(4530), + [anon_sym___stdcall] = ACTIONS(4530), + [anon_sym___fastcall] = ACTIONS(4530), + [anon_sym___thiscall] = ACTIONS(4530), + [anon_sym___vectorcall] = ACTIONS(4530), + [anon_sym_LBRACE] = ACTIONS(4532), + [anon_sym_signed] = ACTIONS(4530), + [anon_sym_unsigned] = ACTIONS(4530), + [anon_sym_long] = ACTIONS(4530), + [anon_sym_short] = ACTIONS(4530), + [anon_sym_LBRACK] = ACTIONS(4530), + [anon_sym_static] = ACTIONS(4530), + [anon_sym_register] = ACTIONS(4530), + [anon_sym_inline] = ACTIONS(4530), + [anon_sym___inline] = ACTIONS(4530), + [anon_sym___inline__] = ACTIONS(4530), + [anon_sym___forceinline] = ACTIONS(4530), + [anon_sym_thread_local] = ACTIONS(4530), + [anon_sym___thread] = ACTIONS(4530), + [anon_sym_const] = ACTIONS(4530), + [anon_sym_constexpr] = ACTIONS(4530), + [anon_sym_volatile] = ACTIONS(4530), + [anon_sym_restrict] = ACTIONS(4530), + [anon_sym___restrict__] = ACTIONS(4530), + [anon_sym__Atomic] = ACTIONS(4530), + [anon_sym__Noreturn] = ACTIONS(4530), + [anon_sym_noreturn] = ACTIONS(4530), + [anon_sym__Nonnull] = ACTIONS(4530), + [anon_sym_mutable] = ACTIONS(4530), + [anon_sym_constinit] = ACTIONS(4530), + [anon_sym_consteval] = ACTIONS(4530), + [anon_sym_alignas] = ACTIONS(4530), + [anon_sym__Alignas] = ACTIONS(4530), + [sym_primitive_type] = ACTIONS(4530), + [anon_sym_enum] = ACTIONS(4530), + [anon_sym_class] = ACTIONS(4530), + [anon_sym_struct] = ACTIONS(4530), + [anon_sym_union] = ACTIONS(4530), + [anon_sym_if] = ACTIONS(4530), + [anon_sym_switch] = ACTIONS(4530), + [anon_sym_case] = ACTIONS(4530), + [anon_sym_default] = ACTIONS(4530), + [anon_sym_while] = ACTIONS(4530), + [anon_sym_do] = ACTIONS(4530), + [anon_sym_for] = ACTIONS(4530), + [anon_sym_return] = ACTIONS(4530), + [anon_sym_break] = ACTIONS(4530), + [anon_sym_continue] = ACTIONS(4530), + [anon_sym_goto] = ACTIONS(4530), + [anon_sym_not] = ACTIONS(4530), + [anon_sym_compl] = ACTIONS(4530), + [anon_sym_DASH_DASH] = ACTIONS(4532), + [anon_sym_PLUS_PLUS] = ACTIONS(4532), + [anon_sym_sizeof] = ACTIONS(4530), + [anon_sym___alignof__] = ACTIONS(4530), + [anon_sym___alignof] = ACTIONS(4530), + [anon_sym__alignof] = ACTIONS(4530), + [anon_sym_alignof] = ACTIONS(4530), + [anon_sym__Alignof] = ACTIONS(4530), + [anon_sym_offsetof] = ACTIONS(4530), + [anon_sym__Generic] = ACTIONS(4530), + [anon_sym_typename] = ACTIONS(4530), + [anon_sym_asm] = ACTIONS(4530), + [anon_sym___asm__] = ACTIONS(4530), + [anon_sym___asm] = ACTIONS(4530), + [sym_number_literal] = ACTIONS(4532), + [anon_sym_L_SQUOTE] = ACTIONS(4532), + [anon_sym_u_SQUOTE] = ACTIONS(4532), + [anon_sym_U_SQUOTE] = ACTIONS(4532), + [anon_sym_u8_SQUOTE] = ACTIONS(4532), + [anon_sym_SQUOTE] = ACTIONS(4532), + [anon_sym_L_DQUOTE] = ACTIONS(4532), + [anon_sym_u_DQUOTE] = ACTIONS(4532), + [anon_sym_U_DQUOTE] = ACTIONS(4532), + [anon_sym_u8_DQUOTE] = ACTIONS(4532), + [anon_sym_DQUOTE] = ACTIONS(4532), + [sym_true] = ACTIONS(4530), + [sym_false] = ACTIONS(4530), + [anon_sym_NULL] = ACTIONS(4530), + [anon_sym_nullptr] = ACTIONS(4530), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4530), + [anon_sym_decltype] = ACTIONS(4530), + [anon_sym_explicit] = ACTIONS(4530), + [anon_sym_export] = ACTIONS(4530), + [anon_sym_module] = ACTIONS(4530), + [anon_sym_import] = ACTIONS(4530), + [anon_sym_template] = ACTIONS(4530), + [anon_sym_operator] = ACTIONS(4530), + [anon_sym_try] = ACTIONS(4530), + [anon_sym_delete] = ACTIONS(4530), + [anon_sym_throw] = ACTIONS(4530), + [anon_sym_namespace] = ACTIONS(4530), + [anon_sym_static_assert] = ACTIONS(4530), + [anon_sym_concept] = ACTIONS(4530), + [anon_sym_co_return] = ACTIONS(4530), + [anon_sym_co_yield] = ACTIONS(4530), + [anon_sym_R_DQUOTE] = ACTIONS(4532), + [anon_sym_LR_DQUOTE] = ACTIONS(4532), + [anon_sym_uR_DQUOTE] = ACTIONS(4532), + [anon_sym_UR_DQUOTE] = ACTIONS(4532), + [anon_sym_u8R_DQUOTE] = ACTIONS(4532), + [anon_sym_co_await] = ACTIONS(4530), + [anon_sym_new] = ACTIONS(4530), + [anon_sym_requires] = ACTIONS(4530), + [anon_sym_CARET_CARET] = ACTIONS(4532), + [anon_sym_LBRACK_COLON] = ACTIONS(4532), + [sym_this] = ACTIONS(4530), + }, + [STATE(994)] = { + [ts_builtin_sym_end] = ACTIONS(3952), + [sym_identifier] = ACTIONS(3950), + [aux_sym_preproc_include_token1] = ACTIONS(3950), + [aux_sym_preproc_def_token1] = ACTIONS(3950), + [aux_sym_preproc_if_token1] = ACTIONS(3950), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), + [sym_preproc_directive] = ACTIONS(3950), + [anon_sym_LPAREN2] = ACTIONS(3952), + [anon_sym_BANG] = ACTIONS(3952), + [anon_sym_TILDE] = ACTIONS(3952), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_PLUS] = ACTIONS(3950), + [anon_sym_STAR] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym___extension__] = ACTIONS(3950), + [anon_sym_typedef] = ACTIONS(3950), + [anon_sym_virtual] = ACTIONS(3950), + [anon_sym_extern] = ACTIONS(3950), + [anon_sym___attribute__] = ACTIONS(3950), + [anon_sym___attribute] = ACTIONS(3950), + [anon_sym_using] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), + [anon_sym___declspec] = ACTIONS(3950), + [anon_sym___based] = ACTIONS(3950), + [anon_sym___cdecl] = ACTIONS(3950), + [anon_sym___clrcall] = ACTIONS(3950), + [anon_sym___stdcall] = ACTIONS(3950), + [anon_sym___fastcall] = ACTIONS(3950), + [anon_sym___thiscall] = ACTIONS(3950), + [anon_sym___vectorcall] = ACTIONS(3950), + [anon_sym_LBRACE] = ACTIONS(3952), + [anon_sym_signed] = ACTIONS(3950), + [anon_sym_unsigned] = ACTIONS(3950), + [anon_sym_long] = ACTIONS(3950), + [anon_sym_short] = ACTIONS(3950), + [anon_sym_LBRACK] = ACTIONS(3950), + [anon_sym_static] = ACTIONS(3950), + [anon_sym_register] = ACTIONS(3950), + [anon_sym_inline] = ACTIONS(3950), + [anon_sym___inline] = ACTIONS(3950), + [anon_sym___inline__] = ACTIONS(3950), + [anon_sym___forceinline] = ACTIONS(3950), + [anon_sym_thread_local] = ACTIONS(3950), + [anon_sym___thread] = ACTIONS(3950), + [anon_sym_const] = ACTIONS(3950), + [anon_sym_constexpr] = ACTIONS(3950), + [anon_sym_volatile] = ACTIONS(3950), + [anon_sym_restrict] = ACTIONS(3950), + [anon_sym___restrict__] = ACTIONS(3950), + [anon_sym__Atomic] = ACTIONS(3950), + [anon_sym__Noreturn] = ACTIONS(3950), + [anon_sym_noreturn] = ACTIONS(3950), + [anon_sym__Nonnull] = ACTIONS(3950), + [anon_sym_mutable] = ACTIONS(3950), + [anon_sym_constinit] = ACTIONS(3950), + [anon_sym_consteval] = ACTIONS(3950), + [anon_sym_alignas] = ACTIONS(3950), + [anon_sym__Alignas] = ACTIONS(3950), + [sym_primitive_type] = ACTIONS(3950), + [anon_sym_enum] = ACTIONS(3950), + [anon_sym_class] = ACTIONS(3950), + [anon_sym_struct] = ACTIONS(3950), + [anon_sym_union] = ACTIONS(3950), + [anon_sym_if] = ACTIONS(3950), + [anon_sym_switch] = ACTIONS(3950), + [anon_sym_case] = ACTIONS(3950), + [anon_sym_default] = ACTIONS(3950), + [anon_sym_while] = ACTIONS(3950), + [anon_sym_do] = ACTIONS(3950), + [anon_sym_for] = ACTIONS(3950), + [anon_sym_return] = ACTIONS(3950), + [anon_sym_break] = ACTIONS(3950), + [anon_sym_continue] = ACTIONS(3950), + [anon_sym_goto] = ACTIONS(3950), + [anon_sym_not] = ACTIONS(3950), + [anon_sym_compl] = ACTIONS(3950), + [anon_sym_DASH_DASH] = ACTIONS(3952), + [anon_sym_PLUS_PLUS] = ACTIONS(3952), + [anon_sym_sizeof] = ACTIONS(3950), + [anon_sym___alignof__] = ACTIONS(3950), + [anon_sym___alignof] = ACTIONS(3950), + [anon_sym__alignof] = ACTIONS(3950), + [anon_sym_alignof] = ACTIONS(3950), + [anon_sym__Alignof] = ACTIONS(3950), + [anon_sym_offsetof] = ACTIONS(3950), + [anon_sym__Generic] = ACTIONS(3950), + [anon_sym_typename] = ACTIONS(3950), + [anon_sym_asm] = ACTIONS(3950), + [anon_sym___asm__] = ACTIONS(3950), + [anon_sym___asm] = ACTIONS(3950), + [sym_number_literal] = ACTIONS(3952), + [anon_sym_L_SQUOTE] = ACTIONS(3952), + [anon_sym_u_SQUOTE] = ACTIONS(3952), + [anon_sym_U_SQUOTE] = ACTIONS(3952), + [anon_sym_u8_SQUOTE] = ACTIONS(3952), + [anon_sym_SQUOTE] = ACTIONS(3952), + [anon_sym_L_DQUOTE] = ACTIONS(3952), + [anon_sym_u_DQUOTE] = ACTIONS(3952), + [anon_sym_U_DQUOTE] = ACTIONS(3952), + [anon_sym_u8_DQUOTE] = ACTIONS(3952), + [anon_sym_DQUOTE] = ACTIONS(3952), + [sym_true] = ACTIONS(3950), + [sym_false] = ACTIONS(3950), + [anon_sym_NULL] = ACTIONS(3950), + [anon_sym_nullptr] = ACTIONS(3950), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3950), + [anon_sym_decltype] = ACTIONS(3950), + [anon_sym_explicit] = ACTIONS(3950), + [anon_sym_export] = ACTIONS(3950), + [anon_sym_module] = ACTIONS(3950), + [anon_sym_import] = ACTIONS(3950), + [anon_sym_template] = ACTIONS(3950), + [anon_sym_operator] = ACTIONS(3950), + [anon_sym_try] = ACTIONS(3950), + [anon_sym_delete] = ACTIONS(3950), + [anon_sym_throw] = ACTIONS(3950), + [anon_sym_namespace] = ACTIONS(3950), + [anon_sym_static_assert] = ACTIONS(3950), + [anon_sym_concept] = ACTIONS(3950), + [anon_sym_co_return] = ACTIONS(3950), + [anon_sym_co_yield] = ACTIONS(3950), + [anon_sym_R_DQUOTE] = ACTIONS(3952), + [anon_sym_LR_DQUOTE] = ACTIONS(3952), + [anon_sym_uR_DQUOTE] = ACTIONS(3952), + [anon_sym_UR_DQUOTE] = ACTIONS(3952), + [anon_sym_u8R_DQUOTE] = ACTIONS(3952), + [anon_sym_co_await] = ACTIONS(3950), + [anon_sym_new] = ACTIONS(3950), + [anon_sym_requires] = ACTIONS(3950), + [anon_sym_CARET_CARET] = ACTIONS(3952), + [anon_sym_LBRACK_COLON] = ACTIONS(3952), + [sym_this] = ACTIONS(3950), + }, + [STATE(995)] = { + [ts_builtin_sym_end] = ACTIONS(4389), + [sym_identifier] = ACTIONS(4387), + [aux_sym_preproc_include_token1] = ACTIONS(4387), + [aux_sym_preproc_def_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), + [sym_preproc_directive] = ACTIONS(4387), + [anon_sym_LPAREN2] = ACTIONS(4389), + [anon_sym_BANG] = ACTIONS(4389), + [anon_sym_TILDE] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4387), + [anon_sym_PLUS] = ACTIONS(4387), + [anon_sym_STAR] = ACTIONS(4389), + [anon_sym_AMP_AMP] = ACTIONS(4389), + [anon_sym_AMP] = ACTIONS(4387), + [anon_sym_SEMI] = ACTIONS(4389), + [anon_sym___extension__] = ACTIONS(4387), + [anon_sym_typedef] = ACTIONS(4387), + [anon_sym_virtual] = ACTIONS(4387), + [anon_sym_extern] = ACTIONS(4387), + [anon_sym___attribute__] = ACTIONS(4387), + [anon_sym___attribute] = ACTIONS(4387), + [anon_sym_using] = ACTIONS(4387), + [anon_sym_COLON_COLON] = ACTIONS(4389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4389), + [anon_sym___declspec] = ACTIONS(4387), + [anon_sym___based] = ACTIONS(4387), + [anon_sym___cdecl] = ACTIONS(4387), + [anon_sym___clrcall] = ACTIONS(4387), + [anon_sym___stdcall] = ACTIONS(4387), + [anon_sym___fastcall] = ACTIONS(4387), + [anon_sym___thiscall] = ACTIONS(4387), + [anon_sym___vectorcall] = ACTIONS(4387), + [anon_sym_LBRACE] = ACTIONS(4389), + [anon_sym_signed] = ACTIONS(4387), + [anon_sym_unsigned] = ACTIONS(4387), + [anon_sym_long] = ACTIONS(4387), + [anon_sym_short] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_static] = ACTIONS(4387), + [anon_sym_register] = ACTIONS(4387), + [anon_sym_inline] = ACTIONS(4387), + [anon_sym___inline] = ACTIONS(4387), + [anon_sym___inline__] = ACTIONS(4387), + [anon_sym___forceinline] = ACTIONS(4387), + [anon_sym_thread_local] = ACTIONS(4387), + [anon_sym___thread] = ACTIONS(4387), + [anon_sym_const] = ACTIONS(4387), + [anon_sym_constexpr] = ACTIONS(4387), + [anon_sym_volatile] = ACTIONS(4387), + [anon_sym_restrict] = ACTIONS(4387), + [anon_sym___restrict__] = ACTIONS(4387), + [anon_sym__Atomic] = ACTIONS(4387), + [anon_sym__Noreturn] = ACTIONS(4387), + [anon_sym_noreturn] = ACTIONS(4387), + [anon_sym__Nonnull] = ACTIONS(4387), + [anon_sym_mutable] = ACTIONS(4387), + [anon_sym_constinit] = ACTIONS(4387), + [anon_sym_consteval] = ACTIONS(4387), + [anon_sym_alignas] = ACTIONS(4387), + [anon_sym__Alignas] = ACTIONS(4387), + [sym_primitive_type] = ACTIONS(4387), + [anon_sym_enum] = ACTIONS(4387), + [anon_sym_class] = ACTIONS(4387), + [anon_sym_struct] = ACTIONS(4387), + [anon_sym_union] = ACTIONS(4387), + [anon_sym_if] = ACTIONS(4387), + [anon_sym_switch] = ACTIONS(4387), + [anon_sym_case] = ACTIONS(4387), + [anon_sym_default] = ACTIONS(4387), + [anon_sym_while] = ACTIONS(4387), + [anon_sym_do] = ACTIONS(4387), + [anon_sym_for] = ACTIONS(4387), + [anon_sym_return] = ACTIONS(4387), + [anon_sym_break] = ACTIONS(4387), + [anon_sym_continue] = ACTIONS(4387), + [anon_sym_goto] = ACTIONS(4387), + [anon_sym_not] = ACTIONS(4387), + [anon_sym_compl] = ACTIONS(4387), + [anon_sym_DASH_DASH] = ACTIONS(4389), + [anon_sym_PLUS_PLUS] = ACTIONS(4389), + [anon_sym_sizeof] = ACTIONS(4387), + [anon_sym___alignof__] = ACTIONS(4387), + [anon_sym___alignof] = ACTIONS(4387), + [anon_sym__alignof] = ACTIONS(4387), + [anon_sym_alignof] = ACTIONS(4387), + [anon_sym__Alignof] = ACTIONS(4387), + [anon_sym_offsetof] = ACTIONS(4387), + [anon_sym__Generic] = ACTIONS(4387), + [anon_sym_typename] = ACTIONS(4387), + [anon_sym_asm] = ACTIONS(4387), + [anon_sym___asm__] = ACTIONS(4387), + [anon_sym___asm] = ACTIONS(4387), + [sym_number_literal] = ACTIONS(4389), + [anon_sym_L_SQUOTE] = ACTIONS(4389), + [anon_sym_u_SQUOTE] = ACTIONS(4389), + [anon_sym_U_SQUOTE] = ACTIONS(4389), + [anon_sym_u8_SQUOTE] = ACTIONS(4389), + [anon_sym_SQUOTE] = ACTIONS(4389), + [anon_sym_L_DQUOTE] = ACTIONS(4389), + [anon_sym_u_DQUOTE] = ACTIONS(4389), + [anon_sym_U_DQUOTE] = ACTIONS(4389), + [anon_sym_u8_DQUOTE] = ACTIONS(4389), + [anon_sym_DQUOTE] = ACTIONS(4389), + [sym_true] = ACTIONS(4387), + [sym_false] = ACTIONS(4387), + [anon_sym_NULL] = ACTIONS(4387), + [anon_sym_nullptr] = ACTIONS(4387), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4387), + [anon_sym_decltype] = ACTIONS(4387), + [anon_sym_explicit] = ACTIONS(4387), + [anon_sym_export] = ACTIONS(4387), + [anon_sym_module] = ACTIONS(4387), + [anon_sym_import] = ACTIONS(4387), + [anon_sym_template] = ACTIONS(4387), + [anon_sym_operator] = ACTIONS(4387), + [anon_sym_try] = ACTIONS(4387), + [anon_sym_delete] = ACTIONS(4387), + [anon_sym_throw] = ACTIONS(4387), + [anon_sym_namespace] = ACTIONS(4387), + [anon_sym_static_assert] = ACTIONS(4387), + [anon_sym_concept] = ACTIONS(4387), + [anon_sym_co_return] = ACTIONS(4387), + [anon_sym_co_yield] = ACTIONS(4387), + [anon_sym_R_DQUOTE] = ACTIONS(4389), + [anon_sym_LR_DQUOTE] = ACTIONS(4389), + [anon_sym_uR_DQUOTE] = ACTIONS(4389), + [anon_sym_UR_DQUOTE] = ACTIONS(4389), + [anon_sym_u8R_DQUOTE] = ACTIONS(4389), + [anon_sym_co_await] = ACTIONS(4387), + [anon_sym_new] = ACTIONS(4387), + [anon_sym_requires] = ACTIONS(4387), + [anon_sym_CARET_CARET] = ACTIONS(4389), + [anon_sym_LBRACK_COLON] = ACTIONS(4389), + [sym_this] = ACTIONS(4387), + }, + [STATE(996)] = { + [ts_builtin_sym_end] = ACTIONS(3964), + [sym_identifier] = ACTIONS(3962), + [aux_sym_preproc_include_token1] = ACTIONS(3962), + [aux_sym_preproc_def_token1] = ACTIONS(3962), + [aux_sym_preproc_if_token1] = ACTIONS(3962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3962), + [sym_preproc_directive] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3964), + [anon_sym_BANG] = ACTIONS(3964), + [anon_sym_TILDE] = ACTIONS(3964), + [anon_sym_DASH] = ACTIONS(3962), + [anon_sym_PLUS] = ACTIONS(3962), + [anon_sym_STAR] = ACTIONS(3964), + [anon_sym_AMP_AMP] = ACTIONS(3964), + [anon_sym_AMP] = ACTIONS(3962), + [anon_sym_SEMI] = ACTIONS(3964), + [anon_sym___extension__] = ACTIONS(3962), + [anon_sym_typedef] = ACTIONS(3962), + [anon_sym_virtual] = ACTIONS(3962), + [anon_sym_extern] = ACTIONS(3962), + [anon_sym___attribute__] = ACTIONS(3962), + [anon_sym___attribute] = ACTIONS(3962), + [anon_sym_using] = ACTIONS(3962), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3964), + [anon_sym___declspec] = ACTIONS(3962), + [anon_sym___based] = ACTIONS(3962), + [anon_sym___cdecl] = ACTIONS(3962), + [anon_sym___clrcall] = ACTIONS(3962), + [anon_sym___stdcall] = ACTIONS(3962), + [anon_sym___fastcall] = ACTIONS(3962), + [anon_sym___thiscall] = ACTIONS(3962), + [anon_sym___vectorcall] = ACTIONS(3962), + [anon_sym_LBRACE] = ACTIONS(3964), + [anon_sym_signed] = ACTIONS(3962), + [anon_sym_unsigned] = ACTIONS(3962), + [anon_sym_long] = ACTIONS(3962), + [anon_sym_short] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3962), + [anon_sym_static] = ACTIONS(3962), + [anon_sym_register] = ACTIONS(3962), + [anon_sym_inline] = ACTIONS(3962), + [anon_sym___inline] = ACTIONS(3962), + [anon_sym___inline__] = ACTIONS(3962), + [anon_sym___forceinline] = ACTIONS(3962), + [anon_sym_thread_local] = ACTIONS(3962), + [anon_sym___thread] = ACTIONS(3962), + [anon_sym_const] = ACTIONS(3962), + [anon_sym_constexpr] = ACTIONS(3962), + [anon_sym_volatile] = ACTIONS(3962), + [anon_sym_restrict] = ACTIONS(3962), + [anon_sym___restrict__] = ACTIONS(3962), + [anon_sym__Atomic] = ACTIONS(3962), + [anon_sym__Noreturn] = ACTIONS(3962), + [anon_sym_noreturn] = ACTIONS(3962), + [anon_sym__Nonnull] = ACTIONS(3962), + [anon_sym_mutable] = ACTIONS(3962), + [anon_sym_constinit] = ACTIONS(3962), + [anon_sym_consteval] = ACTIONS(3962), + [anon_sym_alignas] = ACTIONS(3962), + [anon_sym__Alignas] = ACTIONS(3962), + [sym_primitive_type] = ACTIONS(3962), + [anon_sym_enum] = ACTIONS(3962), + [anon_sym_class] = ACTIONS(3962), + [anon_sym_struct] = ACTIONS(3962), + [anon_sym_union] = ACTIONS(3962), + [anon_sym_if] = ACTIONS(3962), + [anon_sym_switch] = ACTIONS(3962), + [anon_sym_case] = ACTIONS(3962), + [anon_sym_default] = ACTIONS(3962), + [anon_sym_while] = ACTIONS(3962), + [anon_sym_do] = ACTIONS(3962), + [anon_sym_for] = ACTIONS(3962), + [anon_sym_return] = ACTIONS(3962), + [anon_sym_break] = ACTIONS(3962), + [anon_sym_continue] = ACTIONS(3962), + [anon_sym_goto] = ACTIONS(3962), + [anon_sym_not] = ACTIONS(3962), + [anon_sym_compl] = ACTIONS(3962), + [anon_sym_DASH_DASH] = ACTIONS(3964), + [anon_sym_PLUS_PLUS] = ACTIONS(3964), + [anon_sym_sizeof] = ACTIONS(3962), + [anon_sym___alignof__] = ACTIONS(3962), + [anon_sym___alignof] = ACTIONS(3962), + [anon_sym__alignof] = ACTIONS(3962), + [anon_sym_alignof] = ACTIONS(3962), + [anon_sym__Alignof] = ACTIONS(3962), + [anon_sym_offsetof] = ACTIONS(3962), + [anon_sym__Generic] = ACTIONS(3962), + [anon_sym_typename] = ACTIONS(3962), + [anon_sym_asm] = ACTIONS(3962), + [anon_sym___asm__] = ACTIONS(3962), + [anon_sym___asm] = ACTIONS(3962), + [sym_number_literal] = ACTIONS(3964), + [anon_sym_L_SQUOTE] = ACTIONS(3964), + [anon_sym_u_SQUOTE] = ACTIONS(3964), + [anon_sym_U_SQUOTE] = ACTIONS(3964), + [anon_sym_u8_SQUOTE] = ACTIONS(3964), + [anon_sym_SQUOTE] = ACTIONS(3964), + [anon_sym_L_DQUOTE] = ACTIONS(3964), + [anon_sym_u_DQUOTE] = ACTIONS(3964), + [anon_sym_U_DQUOTE] = ACTIONS(3964), + [anon_sym_u8_DQUOTE] = ACTIONS(3964), + [anon_sym_DQUOTE] = ACTIONS(3964), + [sym_true] = ACTIONS(3962), + [sym_false] = ACTIONS(3962), + [anon_sym_NULL] = ACTIONS(3962), + [anon_sym_nullptr] = ACTIONS(3962), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3962), + [anon_sym_decltype] = ACTIONS(3962), + [anon_sym_explicit] = ACTIONS(3962), + [anon_sym_export] = ACTIONS(3962), + [anon_sym_module] = ACTIONS(3962), + [anon_sym_import] = ACTIONS(3962), + [anon_sym_template] = ACTIONS(3962), + [anon_sym_operator] = ACTIONS(3962), + [anon_sym_try] = ACTIONS(3962), + [anon_sym_delete] = ACTIONS(3962), + [anon_sym_throw] = ACTIONS(3962), + [anon_sym_namespace] = ACTIONS(3962), + [anon_sym_static_assert] = ACTIONS(3962), + [anon_sym_concept] = ACTIONS(3962), + [anon_sym_co_return] = ACTIONS(3962), + [anon_sym_co_yield] = ACTIONS(3962), + [anon_sym_R_DQUOTE] = ACTIONS(3964), + [anon_sym_LR_DQUOTE] = ACTIONS(3964), + [anon_sym_uR_DQUOTE] = ACTIONS(3964), + [anon_sym_UR_DQUOTE] = ACTIONS(3964), + [anon_sym_u8R_DQUOTE] = ACTIONS(3964), + [anon_sym_co_await] = ACTIONS(3962), + [anon_sym_new] = ACTIONS(3962), + [anon_sym_requires] = ACTIONS(3962), + [anon_sym_CARET_CARET] = ACTIONS(3964), + [anon_sym_LBRACK_COLON] = ACTIONS(3964), + [sym_this] = ACTIONS(3962), + }, + [STATE(997)] = { + [ts_builtin_sym_end] = ACTIONS(4026), + [sym_identifier] = ACTIONS(4024), + [aux_sym_preproc_include_token1] = ACTIONS(4024), + [aux_sym_preproc_def_token1] = ACTIONS(4024), + [aux_sym_preproc_if_token1] = ACTIONS(4024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4024), + [sym_preproc_directive] = ACTIONS(4024), + [anon_sym_LPAREN2] = ACTIONS(4026), + [anon_sym_BANG] = ACTIONS(4026), + [anon_sym_TILDE] = ACTIONS(4026), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_STAR] = ACTIONS(4026), + [anon_sym_AMP_AMP] = ACTIONS(4026), + [anon_sym_AMP] = ACTIONS(4024), + [anon_sym_SEMI] = ACTIONS(4026), + [anon_sym___extension__] = ACTIONS(4024), + [anon_sym_typedef] = ACTIONS(4024), + [anon_sym_virtual] = ACTIONS(4024), + [anon_sym_extern] = ACTIONS(4024), + [anon_sym___attribute__] = ACTIONS(4024), + [anon_sym___attribute] = ACTIONS(4024), + [anon_sym_using] = ACTIONS(4024), + [anon_sym_COLON_COLON] = ACTIONS(4026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4026), + [anon_sym___declspec] = ACTIONS(4024), + [anon_sym___based] = ACTIONS(4024), + [anon_sym___cdecl] = ACTIONS(4024), + [anon_sym___clrcall] = ACTIONS(4024), + [anon_sym___stdcall] = ACTIONS(4024), + [anon_sym___fastcall] = ACTIONS(4024), + [anon_sym___thiscall] = ACTIONS(4024), + [anon_sym___vectorcall] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4026), + [anon_sym_signed] = ACTIONS(4024), + [anon_sym_unsigned] = ACTIONS(4024), + [anon_sym_long] = ACTIONS(4024), + [anon_sym_short] = ACTIONS(4024), + [anon_sym_LBRACK] = ACTIONS(4024), + [anon_sym_static] = ACTIONS(4024), + [anon_sym_register] = ACTIONS(4024), + [anon_sym_inline] = ACTIONS(4024), + [anon_sym___inline] = ACTIONS(4024), + [anon_sym___inline__] = ACTIONS(4024), + [anon_sym___forceinline] = ACTIONS(4024), + [anon_sym_thread_local] = ACTIONS(4024), + [anon_sym___thread] = ACTIONS(4024), + [anon_sym_const] = ACTIONS(4024), + [anon_sym_constexpr] = ACTIONS(4024), + [anon_sym_volatile] = ACTIONS(4024), + [anon_sym_restrict] = ACTIONS(4024), + [anon_sym___restrict__] = ACTIONS(4024), + [anon_sym__Atomic] = ACTIONS(4024), + [anon_sym__Noreturn] = ACTIONS(4024), + [anon_sym_noreturn] = ACTIONS(4024), + [anon_sym__Nonnull] = ACTIONS(4024), + [anon_sym_mutable] = ACTIONS(4024), + [anon_sym_constinit] = ACTIONS(4024), + [anon_sym_consteval] = ACTIONS(4024), + [anon_sym_alignas] = ACTIONS(4024), + [anon_sym__Alignas] = ACTIONS(4024), + [sym_primitive_type] = ACTIONS(4024), + [anon_sym_enum] = ACTIONS(4024), + [anon_sym_class] = ACTIONS(4024), + [anon_sym_struct] = ACTIONS(4024), + [anon_sym_union] = ACTIONS(4024), + [anon_sym_if] = ACTIONS(4024), + [anon_sym_switch] = ACTIONS(4024), + [anon_sym_case] = ACTIONS(4024), + [anon_sym_default] = ACTIONS(4024), + [anon_sym_while] = ACTIONS(4024), + [anon_sym_do] = ACTIONS(4024), + [anon_sym_for] = ACTIONS(4024), + [anon_sym_return] = ACTIONS(4024), + [anon_sym_break] = ACTIONS(4024), + [anon_sym_continue] = ACTIONS(4024), + [anon_sym_goto] = ACTIONS(4024), + [anon_sym_not] = ACTIONS(4024), + [anon_sym_compl] = ACTIONS(4024), + [anon_sym_DASH_DASH] = ACTIONS(4026), + [anon_sym_PLUS_PLUS] = ACTIONS(4026), + [anon_sym_sizeof] = ACTIONS(4024), + [anon_sym___alignof__] = ACTIONS(4024), + [anon_sym___alignof] = ACTIONS(4024), + [anon_sym__alignof] = ACTIONS(4024), + [anon_sym_alignof] = ACTIONS(4024), + [anon_sym__Alignof] = ACTIONS(4024), + [anon_sym_offsetof] = ACTIONS(4024), + [anon_sym__Generic] = ACTIONS(4024), + [anon_sym_typename] = ACTIONS(4024), + [anon_sym_asm] = ACTIONS(4024), + [anon_sym___asm__] = ACTIONS(4024), + [anon_sym___asm] = ACTIONS(4024), + [sym_number_literal] = ACTIONS(4026), + [anon_sym_L_SQUOTE] = ACTIONS(4026), + [anon_sym_u_SQUOTE] = ACTIONS(4026), + [anon_sym_U_SQUOTE] = ACTIONS(4026), + [anon_sym_u8_SQUOTE] = ACTIONS(4026), + [anon_sym_SQUOTE] = ACTIONS(4026), + [anon_sym_L_DQUOTE] = ACTIONS(4026), + [anon_sym_u_DQUOTE] = ACTIONS(4026), + [anon_sym_U_DQUOTE] = ACTIONS(4026), + [anon_sym_u8_DQUOTE] = ACTIONS(4026), + [anon_sym_DQUOTE] = ACTIONS(4026), + [sym_true] = ACTIONS(4024), + [sym_false] = ACTIONS(4024), + [anon_sym_NULL] = ACTIONS(4024), + [anon_sym_nullptr] = ACTIONS(4024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4024), + [anon_sym_decltype] = ACTIONS(4024), + [anon_sym_explicit] = ACTIONS(4024), + [anon_sym_export] = ACTIONS(4024), + [anon_sym_module] = ACTIONS(4024), + [anon_sym_import] = ACTIONS(4024), + [anon_sym_template] = ACTIONS(4024), + [anon_sym_operator] = ACTIONS(4024), + [anon_sym_try] = ACTIONS(4024), + [anon_sym_delete] = ACTIONS(4024), + [anon_sym_throw] = ACTIONS(4024), + [anon_sym_namespace] = ACTIONS(4024), + [anon_sym_static_assert] = ACTIONS(4024), + [anon_sym_concept] = ACTIONS(4024), + [anon_sym_co_return] = ACTIONS(4024), + [anon_sym_co_yield] = ACTIONS(4024), + [anon_sym_R_DQUOTE] = ACTIONS(4026), + [anon_sym_LR_DQUOTE] = ACTIONS(4026), + [anon_sym_uR_DQUOTE] = ACTIONS(4026), + [anon_sym_UR_DQUOTE] = ACTIONS(4026), + [anon_sym_u8R_DQUOTE] = ACTIONS(4026), + [anon_sym_co_await] = ACTIONS(4024), + [anon_sym_new] = ACTIONS(4024), + [anon_sym_requires] = ACTIONS(4024), + [anon_sym_CARET_CARET] = ACTIONS(4026), + [anon_sym_LBRACK_COLON] = ACTIONS(4026), + [sym_this] = ACTIONS(4024), + }, + [STATE(998)] = { + [ts_builtin_sym_end] = ACTIONS(3986), + [sym_identifier] = ACTIONS(3984), + [aux_sym_preproc_include_token1] = ACTIONS(3984), + [aux_sym_preproc_def_token1] = ACTIONS(3984), + [aux_sym_preproc_if_token1] = ACTIONS(3984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3984), + [sym_preproc_directive] = ACTIONS(3984), + [anon_sym_LPAREN2] = ACTIONS(3986), + [anon_sym_BANG] = ACTIONS(3986), + [anon_sym_TILDE] = ACTIONS(3986), + [anon_sym_DASH] = ACTIONS(3984), + [anon_sym_PLUS] = ACTIONS(3984), + [anon_sym_STAR] = ACTIONS(3986), + [anon_sym_AMP_AMP] = ACTIONS(3986), + [anon_sym_AMP] = ACTIONS(3984), + [anon_sym_SEMI] = ACTIONS(3986), + [anon_sym___extension__] = ACTIONS(3984), + [anon_sym_typedef] = ACTIONS(3984), + [anon_sym_virtual] = ACTIONS(3984), + [anon_sym_extern] = ACTIONS(3984), + [anon_sym___attribute__] = ACTIONS(3984), + [anon_sym___attribute] = ACTIONS(3984), + [anon_sym_using] = ACTIONS(3984), + [anon_sym_COLON_COLON] = ACTIONS(3986), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3986), + [anon_sym___declspec] = ACTIONS(3984), + [anon_sym___based] = ACTIONS(3984), + [anon_sym___cdecl] = ACTIONS(3984), + [anon_sym___clrcall] = ACTIONS(3984), + [anon_sym___stdcall] = ACTIONS(3984), + [anon_sym___fastcall] = ACTIONS(3984), + [anon_sym___thiscall] = ACTIONS(3984), + [anon_sym___vectorcall] = ACTIONS(3984), + [anon_sym_LBRACE] = ACTIONS(3986), + [anon_sym_signed] = ACTIONS(3984), + [anon_sym_unsigned] = ACTIONS(3984), + [anon_sym_long] = ACTIONS(3984), + [anon_sym_short] = ACTIONS(3984), + [anon_sym_LBRACK] = ACTIONS(3984), + [anon_sym_static] = ACTIONS(3984), + [anon_sym_register] = ACTIONS(3984), + [anon_sym_inline] = ACTIONS(3984), + [anon_sym___inline] = ACTIONS(3984), + [anon_sym___inline__] = ACTIONS(3984), + [anon_sym___forceinline] = ACTIONS(3984), + [anon_sym_thread_local] = ACTIONS(3984), + [anon_sym___thread] = ACTIONS(3984), + [anon_sym_const] = ACTIONS(3984), + [anon_sym_constexpr] = ACTIONS(3984), + [anon_sym_volatile] = ACTIONS(3984), + [anon_sym_restrict] = ACTIONS(3984), + [anon_sym___restrict__] = ACTIONS(3984), + [anon_sym__Atomic] = ACTIONS(3984), + [anon_sym__Noreturn] = ACTIONS(3984), + [anon_sym_noreturn] = ACTIONS(3984), + [anon_sym__Nonnull] = ACTIONS(3984), + [anon_sym_mutable] = ACTIONS(3984), + [anon_sym_constinit] = ACTIONS(3984), + [anon_sym_consteval] = ACTIONS(3984), + [anon_sym_alignas] = ACTIONS(3984), + [anon_sym__Alignas] = ACTIONS(3984), + [sym_primitive_type] = ACTIONS(3984), + [anon_sym_enum] = ACTIONS(3984), + [anon_sym_class] = ACTIONS(3984), + [anon_sym_struct] = ACTIONS(3984), + [anon_sym_union] = ACTIONS(3984), + [anon_sym_if] = ACTIONS(3984), + [anon_sym_switch] = ACTIONS(3984), + [anon_sym_case] = ACTIONS(3984), + [anon_sym_default] = ACTIONS(3984), + [anon_sym_while] = ACTIONS(3984), + [anon_sym_do] = ACTIONS(3984), + [anon_sym_for] = ACTIONS(3984), + [anon_sym_return] = ACTIONS(3984), + [anon_sym_break] = ACTIONS(3984), + [anon_sym_continue] = ACTIONS(3984), + [anon_sym_goto] = ACTIONS(3984), + [anon_sym_not] = ACTIONS(3984), + [anon_sym_compl] = ACTIONS(3984), + [anon_sym_DASH_DASH] = ACTIONS(3986), + [anon_sym_PLUS_PLUS] = ACTIONS(3986), + [anon_sym_sizeof] = ACTIONS(3984), + [anon_sym___alignof__] = ACTIONS(3984), + [anon_sym___alignof] = ACTIONS(3984), + [anon_sym__alignof] = ACTIONS(3984), + [anon_sym_alignof] = ACTIONS(3984), + [anon_sym__Alignof] = ACTIONS(3984), + [anon_sym_offsetof] = ACTIONS(3984), + [anon_sym__Generic] = ACTIONS(3984), + [anon_sym_typename] = ACTIONS(3984), + [anon_sym_asm] = ACTIONS(3984), + [anon_sym___asm__] = ACTIONS(3984), + [anon_sym___asm] = ACTIONS(3984), + [sym_number_literal] = ACTIONS(3986), + [anon_sym_L_SQUOTE] = ACTIONS(3986), + [anon_sym_u_SQUOTE] = ACTIONS(3986), + [anon_sym_U_SQUOTE] = ACTIONS(3986), + [anon_sym_u8_SQUOTE] = ACTIONS(3986), + [anon_sym_SQUOTE] = ACTIONS(3986), + [anon_sym_L_DQUOTE] = ACTIONS(3986), + [anon_sym_u_DQUOTE] = ACTIONS(3986), + [anon_sym_U_DQUOTE] = ACTIONS(3986), + [anon_sym_u8_DQUOTE] = ACTIONS(3986), + [anon_sym_DQUOTE] = ACTIONS(3986), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [anon_sym_NULL] = ACTIONS(3984), + [anon_sym_nullptr] = ACTIONS(3984), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3984), + [anon_sym_decltype] = ACTIONS(3984), + [anon_sym_explicit] = ACTIONS(3984), + [anon_sym_export] = ACTIONS(3984), + [anon_sym_module] = ACTIONS(3984), + [anon_sym_import] = ACTIONS(3984), + [anon_sym_template] = ACTIONS(3984), + [anon_sym_operator] = ACTIONS(3984), + [anon_sym_try] = ACTIONS(3984), + [anon_sym_delete] = ACTIONS(3984), + [anon_sym_throw] = ACTIONS(3984), + [anon_sym_namespace] = ACTIONS(3984), + [anon_sym_static_assert] = ACTIONS(3984), + [anon_sym_concept] = ACTIONS(3984), + [anon_sym_co_return] = ACTIONS(3984), + [anon_sym_co_yield] = ACTIONS(3984), + [anon_sym_R_DQUOTE] = ACTIONS(3986), + [anon_sym_LR_DQUOTE] = ACTIONS(3986), + [anon_sym_uR_DQUOTE] = ACTIONS(3986), + [anon_sym_UR_DQUOTE] = ACTIONS(3986), + [anon_sym_u8R_DQUOTE] = ACTIONS(3986), + [anon_sym_co_await] = ACTIONS(3984), + [anon_sym_new] = ACTIONS(3984), + [anon_sym_requires] = ACTIONS(3984), + [anon_sym_CARET_CARET] = ACTIONS(3986), + [anon_sym_LBRACK_COLON] = ACTIONS(3986), + [sym_this] = ACTIONS(3984), + }, + [STATE(999)] = { + [sym_identifier] = ACTIONS(4484), + [aux_sym_preproc_include_token1] = ACTIONS(4484), + [aux_sym_preproc_def_token1] = ACTIONS(4484), + [aux_sym_preproc_if_token1] = ACTIONS(4484), + [aux_sym_preproc_if_token2] = ACTIONS(4484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4484), + [sym_preproc_directive] = ACTIONS(4484), + [anon_sym_LPAREN2] = ACTIONS(4486), + [anon_sym_BANG] = ACTIONS(4486), + [anon_sym_TILDE] = ACTIONS(4486), + [anon_sym_DASH] = ACTIONS(4484), + [anon_sym_PLUS] = ACTIONS(4484), + [anon_sym_STAR] = ACTIONS(4486), + [anon_sym_AMP_AMP] = ACTIONS(4486), + [anon_sym_AMP] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(4486), + [anon_sym___extension__] = ACTIONS(4484), + [anon_sym_typedef] = ACTIONS(4484), + [anon_sym_virtual] = ACTIONS(4484), + [anon_sym_extern] = ACTIONS(4484), + [anon_sym___attribute__] = ACTIONS(4484), + [anon_sym___attribute] = ACTIONS(4484), + [anon_sym_using] = ACTIONS(4484), + [anon_sym_COLON_COLON] = ACTIONS(4486), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4486), + [anon_sym___declspec] = ACTIONS(4484), + [anon_sym___based] = ACTIONS(4484), + [anon_sym___cdecl] = ACTIONS(4484), + [anon_sym___clrcall] = ACTIONS(4484), + [anon_sym___stdcall] = ACTIONS(4484), + [anon_sym___fastcall] = ACTIONS(4484), + [anon_sym___thiscall] = ACTIONS(4484), + [anon_sym___vectorcall] = ACTIONS(4484), + [anon_sym_LBRACE] = ACTIONS(4486), + [anon_sym_signed] = ACTIONS(4484), + [anon_sym_unsigned] = ACTIONS(4484), + [anon_sym_long] = ACTIONS(4484), + [anon_sym_short] = ACTIONS(4484), + [anon_sym_LBRACK] = ACTIONS(4484), + [anon_sym_static] = ACTIONS(4484), + [anon_sym_register] = ACTIONS(4484), + [anon_sym_inline] = ACTIONS(4484), + [anon_sym___inline] = ACTIONS(4484), + [anon_sym___inline__] = ACTIONS(4484), + [anon_sym___forceinline] = ACTIONS(4484), + [anon_sym_thread_local] = ACTIONS(4484), + [anon_sym___thread] = ACTIONS(4484), + [anon_sym_const] = ACTIONS(4484), + [anon_sym_constexpr] = ACTIONS(4484), + [anon_sym_volatile] = ACTIONS(4484), + [anon_sym_restrict] = ACTIONS(4484), + [anon_sym___restrict__] = ACTIONS(4484), + [anon_sym__Atomic] = ACTIONS(4484), + [anon_sym__Noreturn] = ACTIONS(4484), + [anon_sym_noreturn] = ACTIONS(4484), + [anon_sym__Nonnull] = ACTIONS(4484), + [anon_sym_mutable] = ACTIONS(4484), + [anon_sym_constinit] = ACTIONS(4484), + [anon_sym_consteval] = ACTIONS(4484), + [anon_sym_alignas] = ACTIONS(4484), + [anon_sym__Alignas] = ACTIONS(4484), + [sym_primitive_type] = ACTIONS(4484), + [anon_sym_enum] = ACTIONS(4484), + [anon_sym_class] = ACTIONS(4484), + [anon_sym_struct] = ACTIONS(4484), + [anon_sym_union] = ACTIONS(4484), + [anon_sym_if] = ACTIONS(4484), + [anon_sym_switch] = ACTIONS(4484), + [anon_sym_case] = ACTIONS(4484), + [anon_sym_default] = ACTIONS(4484), + [anon_sym_while] = ACTIONS(4484), + [anon_sym_do] = ACTIONS(4484), + [anon_sym_for] = ACTIONS(4484), + [anon_sym_return] = ACTIONS(4484), + [anon_sym_break] = ACTIONS(4484), + [anon_sym_continue] = ACTIONS(4484), + [anon_sym_goto] = ACTIONS(4484), + [anon_sym_not] = ACTIONS(4484), + [anon_sym_compl] = ACTIONS(4484), + [anon_sym_DASH_DASH] = ACTIONS(4486), + [anon_sym_PLUS_PLUS] = ACTIONS(4486), + [anon_sym_sizeof] = ACTIONS(4484), + [anon_sym___alignof__] = ACTIONS(4484), + [anon_sym___alignof] = ACTIONS(4484), + [anon_sym__alignof] = ACTIONS(4484), + [anon_sym_alignof] = ACTIONS(4484), + [anon_sym__Alignof] = ACTIONS(4484), + [anon_sym_offsetof] = ACTIONS(4484), + [anon_sym__Generic] = ACTIONS(4484), + [anon_sym_typename] = ACTIONS(4484), + [anon_sym_asm] = ACTIONS(4484), + [anon_sym___asm__] = ACTIONS(4484), + [anon_sym___asm] = ACTIONS(4484), + [sym_number_literal] = ACTIONS(4486), + [anon_sym_L_SQUOTE] = ACTIONS(4486), + [anon_sym_u_SQUOTE] = ACTIONS(4486), + [anon_sym_U_SQUOTE] = ACTIONS(4486), + [anon_sym_u8_SQUOTE] = ACTIONS(4486), + [anon_sym_SQUOTE] = ACTIONS(4486), + [anon_sym_L_DQUOTE] = ACTIONS(4486), + [anon_sym_u_DQUOTE] = ACTIONS(4486), + [anon_sym_U_DQUOTE] = ACTIONS(4486), + [anon_sym_u8_DQUOTE] = ACTIONS(4486), + [anon_sym_DQUOTE] = ACTIONS(4486), + [sym_true] = ACTIONS(4484), + [sym_false] = ACTIONS(4484), + [anon_sym_NULL] = ACTIONS(4484), + [anon_sym_nullptr] = ACTIONS(4484), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4484), + [anon_sym_decltype] = ACTIONS(4484), + [anon_sym_explicit] = ACTIONS(4484), + [anon_sym_export] = ACTIONS(4484), + [anon_sym_module] = ACTIONS(4484), + [anon_sym_import] = ACTIONS(4484), + [anon_sym_template] = ACTIONS(4484), + [anon_sym_operator] = ACTIONS(4484), + [anon_sym_try] = ACTIONS(4484), + [anon_sym_delete] = ACTIONS(4484), + [anon_sym_throw] = ACTIONS(4484), + [anon_sym_namespace] = ACTIONS(4484), + [anon_sym_static_assert] = ACTIONS(4484), + [anon_sym_concept] = ACTIONS(4484), + [anon_sym_co_return] = ACTIONS(4484), + [anon_sym_co_yield] = ACTIONS(4484), + [anon_sym_R_DQUOTE] = ACTIONS(4486), + [anon_sym_LR_DQUOTE] = ACTIONS(4486), + [anon_sym_uR_DQUOTE] = ACTIONS(4486), + [anon_sym_UR_DQUOTE] = ACTIONS(4486), + [anon_sym_u8R_DQUOTE] = ACTIONS(4486), + [anon_sym_co_await] = ACTIONS(4484), + [anon_sym_new] = ACTIONS(4484), + [anon_sym_requires] = ACTIONS(4484), + [anon_sym_CARET_CARET] = ACTIONS(4486), + [anon_sym_LBRACK_COLON] = ACTIONS(4486), + [sym_this] = ACTIONS(4484), + }, + [STATE(1000)] = { + [sym_identifier] = ACTIONS(4488), + [aux_sym_preproc_include_token1] = ACTIONS(4488), + [aux_sym_preproc_def_token1] = ACTIONS(4488), + [aux_sym_preproc_if_token1] = ACTIONS(4488), + [aux_sym_preproc_if_token2] = ACTIONS(4488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4488), + [sym_preproc_directive] = ACTIONS(4488), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_BANG] = ACTIONS(4490), + [anon_sym_TILDE] = ACTIONS(4490), + [anon_sym_DASH] = ACTIONS(4488), + [anon_sym_PLUS] = ACTIONS(4488), + [anon_sym_STAR] = ACTIONS(4490), + [anon_sym_AMP_AMP] = ACTIONS(4490), + [anon_sym_AMP] = ACTIONS(4488), + [anon_sym_SEMI] = ACTIONS(4490), + [anon_sym___extension__] = ACTIONS(4488), + [anon_sym_typedef] = ACTIONS(4488), + [anon_sym_virtual] = ACTIONS(4488), + [anon_sym_extern] = ACTIONS(4488), + [anon_sym___attribute__] = ACTIONS(4488), + [anon_sym___attribute] = ACTIONS(4488), + [anon_sym_using] = ACTIONS(4488), + [anon_sym_COLON_COLON] = ACTIONS(4490), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4490), + [anon_sym___declspec] = ACTIONS(4488), + [anon_sym___based] = ACTIONS(4488), + [anon_sym___cdecl] = ACTIONS(4488), + [anon_sym___clrcall] = ACTIONS(4488), + [anon_sym___stdcall] = ACTIONS(4488), + [anon_sym___fastcall] = ACTIONS(4488), + [anon_sym___thiscall] = ACTIONS(4488), + [anon_sym___vectorcall] = ACTIONS(4488), + [anon_sym_LBRACE] = ACTIONS(4490), + [anon_sym_signed] = ACTIONS(4488), + [anon_sym_unsigned] = ACTIONS(4488), + [anon_sym_long] = ACTIONS(4488), + [anon_sym_short] = ACTIONS(4488), + [anon_sym_LBRACK] = ACTIONS(4488), + [anon_sym_static] = ACTIONS(4488), + [anon_sym_register] = ACTIONS(4488), + [anon_sym_inline] = ACTIONS(4488), + [anon_sym___inline] = ACTIONS(4488), + [anon_sym___inline__] = ACTIONS(4488), + [anon_sym___forceinline] = ACTIONS(4488), + [anon_sym_thread_local] = ACTIONS(4488), + [anon_sym___thread] = ACTIONS(4488), + [anon_sym_const] = ACTIONS(4488), + [anon_sym_constexpr] = ACTIONS(4488), + [anon_sym_volatile] = ACTIONS(4488), + [anon_sym_restrict] = ACTIONS(4488), + [anon_sym___restrict__] = ACTIONS(4488), + [anon_sym__Atomic] = ACTIONS(4488), + [anon_sym__Noreturn] = ACTIONS(4488), + [anon_sym_noreturn] = ACTIONS(4488), + [anon_sym__Nonnull] = ACTIONS(4488), + [anon_sym_mutable] = ACTIONS(4488), + [anon_sym_constinit] = ACTIONS(4488), + [anon_sym_consteval] = ACTIONS(4488), + [anon_sym_alignas] = ACTIONS(4488), + [anon_sym__Alignas] = ACTIONS(4488), + [sym_primitive_type] = ACTIONS(4488), + [anon_sym_enum] = ACTIONS(4488), + [anon_sym_class] = ACTIONS(4488), + [anon_sym_struct] = ACTIONS(4488), + [anon_sym_union] = ACTIONS(4488), + [anon_sym_if] = ACTIONS(4488), + [anon_sym_switch] = ACTIONS(4488), + [anon_sym_case] = ACTIONS(4488), + [anon_sym_default] = ACTIONS(4488), + [anon_sym_while] = ACTIONS(4488), + [anon_sym_do] = ACTIONS(4488), + [anon_sym_for] = ACTIONS(4488), + [anon_sym_return] = ACTIONS(4488), + [anon_sym_break] = ACTIONS(4488), + [anon_sym_continue] = ACTIONS(4488), + [anon_sym_goto] = ACTIONS(4488), + [anon_sym_not] = ACTIONS(4488), + [anon_sym_compl] = ACTIONS(4488), + [anon_sym_DASH_DASH] = ACTIONS(4490), + [anon_sym_PLUS_PLUS] = ACTIONS(4490), + [anon_sym_sizeof] = ACTIONS(4488), + [anon_sym___alignof__] = ACTIONS(4488), + [anon_sym___alignof] = ACTIONS(4488), + [anon_sym__alignof] = ACTIONS(4488), + [anon_sym_alignof] = ACTIONS(4488), + [anon_sym__Alignof] = ACTIONS(4488), + [anon_sym_offsetof] = ACTIONS(4488), + [anon_sym__Generic] = ACTIONS(4488), + [anon_sym_typename] = ACTIONS(4488), + [anon_sym_asm] = ACTIONS(4488), + [anon_sym___asm__] = ACTIONS(4488), + [anon_sym___asm] = ACTIONS(4488), + [sym_number_literal] = ACTIONS(4490), + [anon_sym_L_SQUOTE] = ACTIONS(4490), + [anon_sym_u_SQUOTE] = ACTIONS(4490), + [anon_sym_U_SQUOTE] = ACTIONS(4490), + [anon_sym_u8_SQUOTE] = ACTIONS(4490), + [anon_sym_SQUOTE] = ACTIONS(4490), + [anon_sym_L_DQUOTE] = ACTIONS(4490), + [anon_sym_u_DQUOTE] = ACTIONS(4490), + [anon_sym_U_DQUOTE] = ACTIONS(4490), + [anon_sym_u8_DQUOTE] = ACTIONS(4490), + [anon_sym_DQUOTE] = ACTIONS(4490), + [sym_true] = ACTIONS(4488), + [sym_false] = ACTIONS(4488), + [anon_sym_NULL] = ACTIONS(4488), + [anon_sym_nullptr] = ACTIONS(4488), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4488), + [anon_sym_decltype] = ACTIONS(4488), + [anon_sym_explicit] = ACTIONS(4488), + [anon_sym_export] = ACTIONS(4488), + [anon_sym_module] = ACTIONS(4488), + [anon_sym_import] = ACTIONS(4488), + [anon_sym_template] = ACTIONS(4488), + [anon_sym_operator] = ACTIONS(4488), + [anon_sym_try] = ACTIONS(4488), + [anon_sym_delete] = ACTIONS(4488), + [anon_sym_throw] = ACTIONS(4488), + [anon_sym_namespace] = ACTIONS(4488), + [anon_sym_static_assert] = ACTIONS(4488), + [anon_sym_concept] = ACTIONS(4488), + [anon_sym_co_return] = ACTIONS(4488), + [anon_sym_co_yield] = ACTIONS(4488), + [anon_sym_R_DQUOTE] = ACTIONS(4490), + [anon_sym_LR_DQUOTE] = ACTIONS(4490), + [anon_sym_uR_DQUOTE] = ACTIONS(4490), + [anon_sym_UR_DQUOTE] = ACTIONS(4490), + [anon_sym_u8R_DQUOTE] = ACTIONS(4490), + [anon_sym_co_await] = ACTIONS(4488), + [anon_sym_new] = ACTIONS(4488), + [anon_sym_requires] = ACTIONS(4488), + [anon_sym_CARET_CARET] = ACTIONS(4490), + [anon_sym_LBRACK_COLON] = ACTIONS(4490), + [sym_this] = ACTIONS(4488), + }, + [STATE(1001)] = { + [sym_identifier] = ACTIONS(4492), + [aux_sym_preproc_include_token1] = ACTIONS(4492), + [aux_sym_preproc_def_token1] = ACTIONS(4492), + [aux_sym_preproc_if_token1] = ACTIONS(4492), + [aux_sym_preproc_if_token2] = ACTIONS(4492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4492), + [sym_preproc_directive] = ACTIONS(4492), + [anon_sym_LPAREN2] = ACTIONS(4494), + [anon_sym_BANG] = ACTIONS(4494), + [anon_sym_TILDE] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4492), + [anon_sym_PLUS] = ACTIONS(4492), + [anon_sym_STAR] = ACTIONS(4494), + [anon_sym_AMP_AMP] = ACTIONS(4494), + [anon_sym_AMP] = ACTIONS(4492), + [anon_sym_SEMI] = ACTIONS(4494), + [anon_sym___extension__] = ACTIONS(4492), + [anon_sym_typedef] = ACTIONS(4492), + [anon_sym_virtual] = ACTIONS(4492), + [anon_sym_extern] = ACTIONS(4492), + [anon_sym___attribute__] = ACTIONS(4492), + [anon_sym___attribute] = ACTIONS(4492), + [anon_sym_using] = ACTIONS(4492), + [anon_sym_COLON_COLON] = ACTIONS(4494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4494), + [anon_sym___declspec] = ACTIONS(4492), + [anon_sym___based] = ACTIONS(4492), + [anon_sym___cdecl] = ACTIONS(4492), + [anon_sym___clrcall] = ACTIONS(4492), + [anon_sym___stdcall] = ACTIONS(4492), + [anon_sym___fastcall] = ACTIONS(4492), + [anon_sym___thiscall] = ACTIONS(4492), + [anon_sym___vectorcall] = ACTIONS(4492), + [anon_sym_LBRACE] = ACTIONS(4494), + [anon_sym_signed] = ACTIONS(4492), + [anon_sym_unsigned] = ACTIONS(4492), + [anon_sym_long] = ACTIONS(4492), + [anon_sym_short] = ACTIONS(4492), + [anon_sym_LBRACK] = ACTIONS(4492), + [anon_sym_static] = ACTIONS(4492), + [anon_sym_register] = ACTIONS(4492), + [anon_sym_inline] = ACTIONS(4492), + [anon_sym___inline] = ACTIONS(4492), + [anon_sym___inline__] = ACTIONS(4492), + [anon_sym___forceinline] = ACTIONS(4492), + [anon_sym_thread_local] = ACTIONS(4492), + [anon_sym___thread] = ACTIONS(4492), + [anon_sym_const] = ACTIONS(4492), + [anon_sym_constexpr] = ACTIONS(4492), + [anon_sym_volatile] = ACTIONS(4492), + [anon_sym_restrict] = ACTIONS(4492), + [anon_sym___restrict__] = ACTIONS(4492), + [anon_sym__Atomic] = ACTIONS(4492), + [anon_sym__Noreturn] = ACTIONS(4492), + [anon_sym_noreturn] = ACTIONS(4492), + [anon_sym__Nonnull] = ACTIONS(4492), + [anon_sym_mutable] = ACTIONS(4492), + [anon_sym_constinit] = ACTIONS(4492), + [anon_sym_consteval] = ACTIONS(4492), + [anon_sym_alignas] = ACTIONS(4492), + [anon_sym__Alignas] = ACTIONS(4492), + [sym_primitive_type] = ACTIONS(4492), + [anon_sym_enum] = ACTIONS(4492), + [anon_sym_class] = ACTIONS(4492), + [anon_sym_struct] = ACTIONS(4492), + [anon_sym_union] = ACTIONS(4492), + [anon_sym_if] = ACTIONS(4492), + [anon_sym_switch] = ACTIONS(4492), + [anon_sym_case] = ACTIONS(4492), + [anon_sym_default] = ACTIONS(4492), + [anon_sym_while] = ACTIONS(4492), + [anon_sym_do] = ACTIONS(4492), + [anon_sym_for] = ACTIONS(4492), + [anon_sym_return] = ACTIONS(4492), + [anon_sym_break] = ACTIONS(4492), + [anon_sym_continue] = ACTIONS(4492), + [anon_sym_goto] = ACTIONS(4492), + [anon_sym_not] = ACTIONS(4492), + [anon_sym_compl] = ACTIONS(4492), + [anon_sym_DASH_DASH] = ACTIONS(4494), + [anon_sym_PLUS_PLUS] = ACTIONS(4494), + [anon_sym_sizeof] = ACTIONS(4492), + [anon_sym___alignof__] = ACTIONS(4492), + [anon_sym___alignof] = ACTIONS(4492), + [anon_sym__alignof] = ACTIONS(4492), + [anon_sym_alignof] = ACTIONS(4492), + [anon_sym__Alignof] = ACTIONS(4492), + [anon_sym_offsetof] = ACTIONS(4492), + [anon_sym__Generic] = ACTIONS(4492), + [anon_sym_typename] = ACTIONS(4492), + [anon_sym_asm] = ACTIONS(4492), + [anon_sym___asm__] = ACTIONS(4492), + [anon_sym___asm] = ACTIONS(4492), + [sym_number_literal] = ACTIONS(4494), + [anon_sym_L_SQUOTE] = ACTIONS(4494), + [anon_sym_u_SQUOTE] = ACTIONS(4494), + [anon_sym_U_SQUOTE] = ACTIONS(4494), + [anon_sym_u8_SQUOTE] = ACTIONS(4494), + [anon_sym_SQUOTE] = ACTIONS(4494), + [anon_sym_L_DQUOTE] = ACTIONS(4494), + [anon_sym_u_DQUOTE] = ACTIONS(4494), + [anon_sym_U_DQUOTE] = ACTIONS(4494), + [anon_sym_u8_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE] = ACTIONS(4494), + [sym_true] = ACTIONS(4492), + [sym_false] = ACTIONS(4492), + [anon_sym_NULL] = ACTIONS(4492), + [anon_sym_nullptr] = ACTIONS(4492), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4492), + [anon_sym_decltype] = ACTIONS(4492), + [anon_sym_explicit] = ACTIONS(4492), + [anon_sym_export] = ACTIONS(4492), + [anon_sym_module] = ACTIONS(4492), + [anon_sym_import] = ACTIONS(4492), + [anon_sym_template] = ACTIONS(4492), + [anon_sym_operator] = ACTIONS(4492), + [anon_sym_try] = ACTIONS(4492), + [anon_sym_delete] = ACTIONS(4492), + [anon_sym_throw] = ACTIONS(4492), + [anon_sym_namespace] = ACTIONS(4492), + [anon_sym_static_assert] = ACTIONS(4492), + [anon_sym_concept] = ACTIONS(4492), + [anon_sym_co_return] = ACTIONS(4492), + [anon_sym_co_yield] = ACTIONS(4492), + [anon_sym_R_DQUOTE] = ACTIONS(4494), + [anon_sym_LR_DQUOTE] = ACTIONS(4494), + [anon_sym_uR_DQUOTE] = ACTIONS(4494), + [anon_sym_UR_DQUOTE] = ACTIONS(4494), + [anon_sym_u8R_DQUOTE] = ACTIONS(4494), + [anon_sym_co_await] = ACTIONS(4492), + [anon_sym_new] = ACTIONS(4492), + [anon_sym_requires] = ACTIONS(4492), + [anon_sym_CARET_CARET] = ACTIONS(4494), + [anon_sym_LBRACK_COLON] = ACTIONS(4494), + [sym_this] = ACTIONS(4492), + }, + [STATE(1002)] = { + [ts_builtin_sym_end] = ACTIONS(4078), + [sym_identifier] = ACTIONS(4076), + [aux_sym_preproc_include_token1] = ACTIONS(4076), + [aux_sym_preproc_def_token1] = ACTIONS(4076), + [aux_sym_preproc_if_token1] = ACTIONS(4076), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4076), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4076), + [sym_preproc_directive] = ACTIONS(4076), + [anon_sym_LPAREN2] = ACTIONS(4078), + [anon_sym_BANG] = ACTIONS(4078), + [anon_sym_TILDE] = ACTIONS(4078), + [anon_sym_DASH] = ACTIONS(4076), + [anon_sym_PLUS] = ACTIONS(4076), + [anon_sym_STAR] = ACTIONS(4078), + [anon_sym_AMP_AMP] = ACTIONS(4078), + [anon_sym_AMP] = ACTIONS(4076), + [anon_sym_SEMI] = ACTIONS(4078), + [anon_sym___extension__] = ACTIONS(4076), + [anon_sym_typedef] = ACTIONS(4076), + [anon_sym_virtual] = ACTIONS(4076), + [anon_sym_extern] = ACTIONS(4076), + [anon_sym___attribute__] = ACTIONS(4076), + [anon_sym___attribute] = ACTIONS(4076), + [anon_sym_using] = ACTIONS(4076), + [anon_sym_COLON_COLON] = ACTIONS(4078), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4078), + [anon_sym___declspec] = ACTIONS(4076), + [anon_sym___based] = ACTIONS(4076), + [anon_sym___cdecl] = ACTIONS(4076), + [anon_sym___clrcall] = ACTIONS(4076), + [anon_sym___stdcall] = ACTIONS(4076), + [anon_sym___fastcall] = ACTIONS(4076), + [anon_sym___thiscall] = ACTIONS(4076), + [anon_sym___vectorcall] = ACTIONS(4076), + [anon_sym_LBRACE] = ACTIONS(4078), + [anon_sym_signed] = ACTIONS(4076), + [anon_sym_unsigned] = ACTIONS(4076), + [anon_sym_long] = ACTIONS(4076), + [anon_sym_short] = ACTIONS(4076), + [anon_sym_LBRACK] = ACTIONS(4076), + [anon_sym_static] = ACTIONS(4076), + [anon_sym_register] = ACTIONS(4076), + [anon_sym_inline] = ACTIONS(4076), + [anon_sym___inline] = ACTIONS(4076), + [anon_sym___inline__] = ACTIONS(4076), + [anon_sym___forceinline] = ACTIONS(4076), + [anon_sym_thread_local] = ACTIONS(4076), + [anon_sym___thread] = ACTIONS(4076), + [anon_sym_const] = ACTIONS(4076), + [anon_sym_constexpr] = ACTIONS(4076), + [anon_sym_volatile] = ACTIONS(4076), + [anon_sym_restrict] = ACTIONS(4076), + [anon_sym___restrict__] = ACTIONS(4076), + [anon_sym__Atomic] = ACTIONS(4076), + [anon_sym__Noreturn] = ACTIONS(4076), + [anon_sym_noreturn] = ACTIONS(4076), + [anon_sym__Nonnull] = ACTIONS(4076), + [anon_sym_mutable] = ACTIONS(4076), + [anon_sym_constinit] = ACTIONS(4076), + [anon_sym_consteval] = ACTIONS(4076), + [anon_sym_alignas] = ACTIONS(4076), + [anon_sym__Alignas] = ACTIONS(4076), + [sym_primitive_type] = ACTIONS(4076), + [anon_sym_enum] = ACTIONS(4076), + [anon_sym_class] = ACTIONS(4076), + [anon_sym_struct] = ACTIONS(4076), + [anon_sym_union] = ACTIONS(4076), + [anon_sym_if] = ACTIONS(4076), + [anon_sym_switch] = ACTIONS(4076), + [anon_sym_case] = ACTIONS(4076), + [anon_sym_default] = ACTIONS(4076), + [anon_sym_while] = ACTIONS(4076), + [anon_sym_do] = ACTIONS(4076), + [anon_sym_for] = ACTIONS(4076), + [anon_sym_return] = ACTIONS(4076), + [anon_sym_break] = ACTIONS(4076), + [anon_sym_continue] = ACTIONS(4076), + [anon_sym_goto] = ACTIONS(4076), + [anon_sym_not] = ACTIONS(4076), + [anon_sym_compl] = ACTIONS(4076), + [anon_sym_DASH_DASH] = ACTIONS(4078), + [anon_sym_PLUS_PLUS] = ACTIONS(4078), + [anon_sym_sizeof] = ACTIONS(4076), + [anon_sym___alignof__] = ACTIONS(4076), + [anon_sym___alignof] = ACTIONS(4076), + [anon_sym__alignof] = ACTIONS(4076), + [anon_sym_alignof] = ACTIONS(4076), + [anon_sym__Alignof] = ACTIONS(4076), + [anon_sym_offsetof] = ACTIONS(4076), + [anon_sym__Generic] = ACTIONS(4076), + [anon_sym_typename] = ACTIONS(4076), + [anon_sym_asm] = ACTIONS(4076), + [anon_sym___asm__] = ACTIONS(4076), + [anon_sym___asm] = ACTIONS(4076), + [sym_number_literal] = ACTIONS(4078), + [anon_sym_L_SQUOTE] = ACTIONS(4078), + [anon_sym_u_SQUOTE] = ACTIONS(4078), + [anon_sym_U_SQUOTE] = ACTIONS(4078), + [anon_sym_u8_SQUOTE] = ACTIONS(4078), + [anon_sym_SQUOTE] = ACTIONS(4078), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), + [sym_true] = ACTIONS(4076), + [sym_false] = ACTIONS(4076), + [anon_sym_NULL] = ACTIONS(4076), + [anon_sym_nullptr] = ACTIONS(4076), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4076), + [anon_sym_decltype] = ACTIONS(4076), + [anon_sym_explicit] = ACTIONS(4076), + [anon_sym_export] = ACTIONS(4076), + [anon_sym_module] = ACTIONS(4076), + [anon_sym_import] = ACTIONS(4076), + [anon_sym_template] = ACTIONS(4076), + [anon_sym_operator] = ACTIONS(4076), + [anon_sym_try] = ACTIONS(4076), + [anon_sym_delete] = ACTIONS(4076), + [anon_sym_throw] = ACTIONS(4076), + [anon_sym_namespace] = ACTIONS(4076), + [anon_sym_static_assert] = ACTIONS(4076), + [anon_sym_concept] = ACTIONS(4076), + [anon_sym_co_return] = ACTIONS(4076), + [anon_sym_co_yield] = ACTIONS(4076), + [anon_sym_R_DQUOTE] = ACTIONS(4078), + [anon_sym_LR_DQUOTE] = ACTIONS(4078), + [anon_sym_uR_DQUOTE] = ACTIONS(4078), + [anon_sym_UR_DQUOTE] = ACTIONS(4078), + [anon_sym_u8R_DQUOTE] = ACTIONS(4078), + [anon_sym_co_await] = ACTIONS(4076), + [anon_sym_new] = ACTIONS(4076), + [anon_sym_requires] = ACTIONS(4076), + [anon_sym_CARET_CARET] = ACTIONS(4078), + [anon_sym_LBRACK_COLON] = ACTIONS(4078), + [sym_this] = ACTIONS(4076), + }, + [STATE(1003)] = { + [ts_builtin_sym_end] = ACTIONS(3686), + [sym_identifier] = ACTIONS(3684), + [aux_sym_preproc_include_token1] = ACTIONS(3684), + [aux_sym_preproc_def_token1] = ACTIONS(3684), + [aux_sym_preproc_if_token1] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3684), + [sym_preproc_directive] = ACTIONS(3684), + [anon_sym_LPAREN2] = ACTIONS(3686), + [anon_sym_BANG] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3686), + [anon_sym_AMP_AMP] = ACTIONS(3686), + [anon_sym_AMP] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym___extension__] = ACTIONS(3684), + [anon_sym_typedef] = ACTIONS(3684), + [anon_sym_virtual] = ACTIONS(3684), + [anon_sym_extern] = ACTIONS(3684), + [anon_sym___attribute__] = ACTIONS(3684), + [anon_sym___attribute] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_COLON_COLON] = ACTIONS(3686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), + [anon_sym___declspec] = ACTIONS(3684), + [anon_sym___based] = ACTIONS(3684), + [anon_sym___cdecl] = ACTIONS(3684), + [anon_sym___clrcall] = ACTIONS(3684), + [anon_sym___stdcall] = ACTIONS(3684), + [anon_sym___fastcall] = ACTIONS(3684), + [anon_sym___thiscall] = ACTIONS(3684), + [anon_sym___vectorcall] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_signed] = ACTIONS(3684), + [anon_sym_unsigned] = ACTIONS(3684), + [anon_sym_long] = ACTIONS(3684), + [anon_sym_short] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_register] = ACTIONS(3684), + [anon_sym_inline] = ACTIONS(3684), + [anon_sym___inline] = ACTIONS(3684), + [anon_sym___inline__] = ACTIONS(3684), + [anon_sym___forceinline] = ACTIONS(3684), + [anon_sym_thread_local] = ACTIONS(3684), + [anon_sym___thread] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_constexpr] = ACTIONS(3684), + [anon_sym_volatile] = ACTIONS(3684), + [anon_sym_restrict] = ACTIONS(3684), + [anon_sym___restrict__] = ACTIONS(3684), + [anon_sym__Atomic] = ACTIONS(3684), + [anon_sym__Noreturn] = ACTIONS(3684), + [anon_sym_noreturn] = ACTIONS(3684), + [anon_sym__Nonnull] = ACTIONS(3684), + [anon_sym_mutable] = ACTIONS(3684), + [anon_sym_constinit] = ACTIONS(3684), + [anon_sym_consteval] = ACTIONS(3684), + [anon_sym_alignas] = ACTIONS(3684), + [anon_sym__Alignas] = ACTIONS(3684), + [sym_primitive_type] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_struct] = ACTIONS(3684), + [anon_sym_union] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_case] = ACTIONS(3684), + [anon_sym_default] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_goto] = ACTIONS(3684), + [anon_sym_not] = ACTIONS(3684), + [anon_sym_compl] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_sizeof] = ACTIONS(3684), + [anon_sym___alignof__] = ACTIONS(3684), + [anon_sym___alignof] = ACTIONS(3684), + [anon_sym__alignof] = ACTIONS(3684), + [anon_sym_alignof] = ACTIONS(3684), + [anon_sym__Alignof] = ACTIONS(3684), + [anon_sym_offsetof] = ACTIONS(3684), + [anon_sym__Generic] = ACTIONS(3684), + [anon_sym_typename] = ACTIONS(3684), + [anon_sym_asm] = ACTIONS(3684), + [anon_sym___asm__] = ACTIONS(3684), + [anon_sym___asm] = ACTIONS(3684), + [sym_number_literal] = ACTIONS(3686), + [anon_sym_L_SQUOTE] = ACTIONS(3686), + [anon_sym_u_SQUOTE] = ACTIONS(3686), + [anon_sym_U_SQUOTE] = ACTIONS(3686), + [anon_sym_u8_SQUOTE] = ACTIONS(3686), + [anon_sym_SQUOTE] = ACTIONS(3686), + [anon_sym_L_DQUOTE] = ACTIONS(3686), + [anon_sym_u_DQUOTE] = ACTIONS(3686), + [anon_sym_U_DQUOTE] = ACTIONS(3686), + [anon_sym_u8_DQUOTE] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [anon_sym_NULL] = ACTIONS(3684), + [anon_sym_nullptr] = ACTIONS(3684), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3684), + [anon_sym_decltype] = ACTIONS(3684), + [anon_sym_explicit] = ACTIONS(3684), + [anon_sym_export] = ACTIONS(3684), + [anon_sym_module] = ACTIONS(3684), + [anon_sym_import] = ACTIONS(3684), + [anon_sym_template] = ACTIONS(3684), + [anon_sym_operator] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_static_assert] = ACTIONS(3684), + [anon_sym_concept] = ACTIONS(3684), + [anon_sym_co_return] = ACTIONS(3684), + [anon_sym_co_yield] = ACTIONS(3684), + [anon_sym_R_DQUOTE] = ACTIONS(3686), + [anon_sym_LR_DQUOTE] = ACTIONS(3686), + [anon_sym_uR_DQUOTE] = ACTIONS(3686), + [anon_sym_UR_DQUOTE] = ACTIONS(3686), + [anon_sym_u8R_DQUOTE] = ACTIONS(3686), + [anon_sym_co_await] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_requires] = ACTIONS(3684), + [anon_sym_CARET_CARET] = ACTIONS(3686), + [anon_sym_LBRACK_COLON] = ACTIONS(3686), + [sym_this] = ACTIONS(3684), + }, + [STATE(1004)] = { + [ts_builtin_sym_end] = ACTIONS(3990), + [sym_identifier] = ACTIONS(3988), + [aux_sym_preproc_include_token1] = ACTIONS(3988), + [aux_sym_preproc_def_token1] = ACTIONS(3988), + [aux_sym_preproc_if_token1] = ACTIONS(3988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3988), + [sym_preproc_directive] = ACTIONS(3988), + [anon_sym_LPAREN2] = ACTIONS(3990), + [anon_sym_BANG] = ACTIONS(3990), + [anon_sym_TILDE] = ACTIONS(3990), + [anon_sym_DASH] = ACTIONS(3988), + [anon_sym_PLUS] = ACTIONS(3988), + [anon_sym_STAR] = ACTIONS(3990), + [anon_sym_AMP_AMP] = ACTIONS(3990), + [anon_sym_AMP] = ACTIONS(3988), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym___extension__] = ACTIONS(3988), + [anon_sym_typedef] = ACTIONS(3988), + [anon_sym_virtual] = ACTIONS(3988), + [anon_sym_extern] = ACTIONS(3988), + [anon_sym___attribute__] = ACTIONS(3988), + [anon_sym___attribute] = ACTIONS(3988), + [anon_sym_using] = ACTIONS(3988), + [anon_sym_COLON_COLON] = ACTIONS(3990), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3990), + [anon_sym___declspec] = ACTIONS(3988), + [anon_sym___based] = ACTIONS(3988), + [anon_sym___cdecl] = ACTIONS(3988), + [anon_sym___clrcall] = ACTIONS(3988), + [anon_sym___stdcall] = ACTIONS(3988), + [anon_sym___fastcall] = ACTIONS(3988), + [anon_sym___thiscall] = ACTIONS(3988), + [anon_sym___vectorcall] = ACTIONS(3988), + [anon_sym_LBRACE] = ACTIONS(3990), + [anon_sym_signed] = ACTIONS(3988), + [anon_sym_unsigned] = ACTIONS(3988), + [anon_sym_long] = ACTIONS(3988), + [anon_sym_short] = ACTIONS(3988), + [anon_sym_LBRACK] = ACTIONS(3988), + [anon_sym_static] = ACTIONS(3988), + [anon_sym_register] = ACTIONS(3988), + [anon_sym_inline] = ACTIONS(3988), + [anon_sym___inline] = ACTIONS(3988), + [anon_sym___inline__] = ACTIONS(3988), + [anon_sym___forceinline] = ACTIONS(3988), + [anon_sym_thread_local] = ACTIONS(3988), + [anon_sym___thread] = ACTIONS(3988), + [anon_sym_const] = ACTIONS(3988), + [anon_sym_constexpr] = ACTIONS(3988), + [anon_sym_volatile] = ACTIONS(3988), + [anon_sym_restrict] = ACTIONS(3988), + [anon_sym___restrict__] = ACTIONS(3988), + [anon_sym__Atomic] = ACTIONS(3988), + [anon_sym__Noreturn] = ACTIONS(3988), + [anon_sym_noreturn] = ACTIONS(3988), + [anon_sym__Nonnull] = ACTIONS(3988), + [anon_sym_mutable] = ACTIONS(3988), + [anon_sym_constinit] = ACTIONS(3988), + [anon_sym_consteval] = ACTIONS(3988), + [anon_sym_alignas] = ACTIONS(3988), + [anon_sym__Alignas] = ACTIONS(3988), + [sym_primitive_type] = ACTIONS(3988), + [anon_sym_enum] = ACTIONS(3988), + [anon_sym_class] = ACTIONS(3988), + [anon_sym_struct] = ACTIONS(3988), + [anon_sym_union] = ACTIONS(3988), + [anon_sym_if] = ACTIONS(3988), + [anon_sym_switch] = ACTIONS(3988), + [anon_sym_case] = ACTIONS(3988), + [anon_sym_default] = ACTIONS(3988), + [anon_sym_while] = ACTIONS(3988), + [anon_sym_do] = ACTIONS(3988), + [anon_sym_for] = ACTIONS(3988), + [anon_sym_return] = ACTIONS(3988), + [anon_sym_break] = ACTIONS(3988), + [anon_sym_continue] = ACTIONS(3988), + [anon_sym_goto] = ACTIONS(3988), + [anon_sym_not] = ACTIONS(3988), + [anon_sym_compl] = ACTIONS(3988), + [anon_sym_DASH_DASH] = ACTIONS(3990), + [anon_sym_PLUS_PLUS] = ACTIONS(3990), + [anon_sym_sizeof] = ACTIONS(3988), + [anon_sym___alignof__] = ACTIONS(3988), + [anon_sym___alignof] = ACTIONS(3988), + [anon_sym__alignof] = ACTIONS(3988), + [anon_sym_alignof] = ACTIONS(3988), + [anon_sym__Alignof] = ACTIONS(3988), + [anon_sym_offsetof] = ACTIONS(3988), + [anon_sym__Generic] = ACTIONS(3988), + [anon_sym_typename] = ACTIONS(3988), + [anon_sym_asm] = ACTIONS(3988), + [anon_sym___asm__] = ACTIONS(3988), + [anon_sym___asm] = ACTIONS(3988), + [sym_number_literal] = ACTIONS(3990), + [anon_sym_L_SQUOTE] = ACTIONS(3990), + [anon_sym_u_SQUOTE] = ACTIONS(3990), + [anon_sym_U_SQUOTE] = ACTIONS(3990), + [anon_sym_u8_SQUOTE] = ACTIONS(3990), + [anon_sym_SQUOTE] = ACTIONS(3990), + [anon_sym_L_DQUOTE] = ACTIONS(3990), + [anon_sym_u_DQUOTE] = ACTIONS(3990), + [anon_sym_U_DQUOTE] = ACTIONS(3990), + [anon_sym_u8_DQUOTE] = ACTIONS(3990), + [anon_sym_DQUOTE] = ACTIONS(3990), + [sym_true] = ACTIONS(3988), + [sym_false] = ACTIONS(3988), + [anon_sym_NULL] = ACTIONS(3988), + [anon_sym_nullptr] = ACTIONS(3988), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3988), + [anon_sym_decltype] = ACTIONS(3988), + [anon_sym_explicit] = ACTIONS(3988), + [anon_sym_export] = ACTIONS(3988), + [anon_sym_module] = ACTIONS(3988), + [anon_sym_import] = ACTIONS(3988), + [anon_sym_template] = ACTIONS(3988), + [anon_sym_operator] = ACTIONS(3988), + [anon_sym_try] = ACTIONS(3988), + [anon_sym_delete] = ACTIONS(3988), + [anon_sym_throw] = ACTIONS(3988), + [anon_sym_namespace] = ACTIONS(3988), + [anon_sym_static_assert] = ACTIONS(3988), + [anon_sym_concept] = ACTIONS(3988), + [anon_sym_co_return] = ACTIONS(3988), + [anon_sym_co_yield] = ACTIONS(3988), + [anon_sym_R_DQUOTE] = ACTIONS(3990), + [anon_sym_LR_DQUOTE] = ACTIONS(3990), + [anon_sym_uR_DQUOTE] = ACTIONS(3990), + [anon_sym_UR_DQUOTE] = ACTIONS(3990), + [anon_sym_u8R_DQUOTE] = ACTIONS(3990), + [anon_sym_co_await] = ACTIONS(3988), + [anon_sym_new] = ACTIONS(3988), + [anon_sym_requires] = ACTIONS(3988), + [anon_sym_CARET_CARET] = ACTIONS(3990), + [anon_sym_LBRACK_COLON] = ACTIONS(3990), + [sym_this] = ACTIONS(3988), + }, + [STATE(1005)] = { + [ts_builtin_sym_end] = ACTIONS(3994), + [sym_identifier] = ACTIONS(3992), + [aux_sym_preproc_include_token1] = ACTIONS(3992), + [aux_sym_preproc_def_token1] = ACTIONS(3992), + [aux_sym_preproc_if_token1] = ACTIONS(3992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3992), + [sym_preproc_directive] = ACTIONS(3992), + [anon_sym_LPAREN2] = ACTIONS(3994), + [anon_sym_BANG] = ACTIONS(3994), + [anon_sym_TILDE] = ACTIONS(3994), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_AMP] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym___extension__] = ACTIONS(3992), + [anon_sym_typedef] = ACTIONS(3992), + [anon_sym_virtual] = ACTIONS(3992), + [anon_sym_extern] = ACTIONS(3992), + [anon_sym___attribute__] = ACTIONS(3992), + [anon_sym___attribute] = ACTIONS(3992), + [anon_sym_using] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3994), + [anon_sym___declspec] = ACTIONS(3992), + [anon_sym___based] = ACTIONS(3992), + [anon_sym___cdecl] = ACTIONS(3992), + [anon_sym___clrcall] = ACTIONS(3992), + [anon_sym___stdcall] = ACTIONS(3992), + [anon_sym___fastcall] = ACTIONS(3992), + [anon_sym___thiscall] = ACTIONS(3992), + [anon_sym___vectorcall] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3994), + [anon_sym_signed] = ACTIONS(3992), + [anon_sym_unsigned] = ACTIONS(3992), + [anon_sym_long] = ACTIONS(3992), + [anon_sym_short] = ACTIONS(3992), + [anon_sym_LBRACK] = ACTIONS(3992), + [anon_sym_static] = ACTIONS(3992), + [anon_sym_register] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym___inline] = ACTIONS(3992), + [anon_sym___inline__] = ACTIONS(3992), + [anon_sym___forceinline] = ACTIONS(3992), + [anon_sym_thread_local] = ACTIONS(3992), + [anon_sym___thread] = ACTIONS(3992), + [anon_sym_const] = ACTIONS(3992), + [anon_sym_constexpr] = ACTIONS(3992), + [anon_sym_volatile] = ACTIONS(3992), + [anon_sym_restrict] = ACTIONS(3992), + [anon_sym___restrict__] = ACTIONS(3992), + [anon_sym__Atomic] = ACTIONS(3992), + [anon_sym__Noreturn] = ACTIONS(3992), + [anon_sym_noreturn] = ACTIONS(3992), + [anon_sym__Nonnull] = ACTIONS(3992), + [anon_sym_mutable] = ACTIONS(3992), + [anon_sym_constinit] = ACTIONS(3992), + [anon_sym_consteval] = ACTIONS(3992), + [anon_sym_alignas] = ACTIONS(3992), + [anon_sym__Alignas] = ACTIONS(3992), + [sym_primitive_type] = ACTIONS(3992), + [anon_sym_enum] = ACTIONS(3992), + [anon_sym_class] = ACTIONS(3992), + [anon_sym_struct] = ACTIONS(3992), + [anon_sym_union] = ACTIONS(3992), + [anon_sym_if] = ACTIONS(3992), + [anon_sym_switch] = ACTIONS(3992), + [anon_sym_case] = ACTIONS(3992), + [anon_sym_default] = ACTIONS(3992), + [anon_sym_while] = ACTIONS(3992), + [anon_sym_do] = ACTIONS(3992), + [anon_sym_for] = ACTIONS(3992), + [anon_sym_return] = ACTIONS(3992), + [anon_sym_break] = ACTIONS(3992), + [anon_sym_continue] = ACTIONS(3992), + [anon_sym_goto] = ACTIONS(3992), + [anon_sym_not] = ACTIONS(3992), + [anon_sym_compl] = ACTIONS(3992), + [anon_sym_DASH_DASH] = ACTIONS(3994), + [anon_sym_PLUS_PLUS] = ACTIONS(3994), + [anon_sym_sizeof] = ACTIONS(3992), + [anon_sym___alignof__] = ACTIONS(3992), + [anon_sym___alignof] = ACTIONS(3992), + [anon_sym__alignof] = ACTIONS(3992), + [anon_sym_alignof] = ACTIONS(3992), + [anon_sym__Alignof] = ACTIONS(3992), + [anon_sym_offsetof] = ACTIONS(3992), + [anon_sym__Generic] = ACTIONS(3992), + [anon_sym_typename] = ACTIONS(3992), + [anon_sym_asm] = ACTIONS(3992), + [anon_sym___asm__] = ACTIONS(3992), + [anon_sym___asm] = ACTIONS(3992), + [sym_number_literal] = ACTIONS(3994), + [anon_sym_L_SQUOTE] = ACTIONS(3994), + [anon_sym_u_SQUOTE] = ACTIONS(3994), + [anon_sym_U_SQUOTE] = ACTIONS(3994), + [anon_sym_u8_SQUOTE] = ACTIONS(3994), + [anon_sym_SQUOTE] = ACTIONS(3994), + [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_true] = ACTIONS(3992), + [sym_false] = ACTIONS(3992), + [anon_sym_NULL] = ACTIONS(3992), + [anon_sym_nullptr] = ACTIONS(3992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3992), + [anon_sym_decltype] = ACTIONS(3992), + [anon_sym_explicit] = ACTIONS(3992), + [anon_sym_export] = ACTIONS(3992), + [anon_sym_module] = ACTIONS(3992), + [anon_sym_import] = ACTIONS(3992), + [anon_sym_template] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_try] = ACTIONS(3992), + [anon_sym_delete] = ACTIONS(3992), + [anon_sym_throw] = ACTIONS(3992), + [anon_sym_namespace] = ACTIONS(3992), + [anon_sym_static_assert] = ACTIONS(3992), + [anon_sym_concept] = ACTIONS(3992), + [anon_sym_co_return] = ACTIONS(3992), + [anon_sym_co_yield] = ACTIONS(3992), + [anon_sym_R_DQUOTE] = ACTIONS(3994), + [anon_sym_LR_DQUOTE] = ACTIONS(3994), + [anon_sym_uR_DQUOTE] = ACTIONS(3994), + [anon_sym_UR_DQUOTE] = ACTIONS(3994), + [anon_sym_u8R_DQUOTE] = ACTIONS(3994), + [anon_sym_co_await] = ACTIONS(3992), + [anon_sym_new] = ACTIONS(3992), + [anon_sym_requires] = ACTIONS(3992), + [anon_sym_CARET_CARET] = ACTIONS(3994), + [anon_sym_LBRACK_COLON] = ACTIONS(3994), + [sym_this] = ACTIONS(3992), + }, + [STATE(1006)] = { + [ts_builtin_sym_end] = ACTIONS(3928), + [sym_identifier] = ACTIONS(3925), + [aux_sym_preproc_include_token1] = ACTIONS(3925), + [aux_sym_preproc_def_token1] = ACTIONS(3925), + [aux_sym_preproc_if_token1] = ACTIONS(3925), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3925), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3925), + [sym_preproc_directive] = ACTIONS(3925), + [anon_sym_LPAREN2] = ACTIONS(3928), + [anon_sym_BANG] = ACTIONS(3928), + [anon_sym_TILDE] = ACTIONS(3928), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_PLUS] = ACTIONS(3925), + [anon_sym_STAR] = ACTIONS(3928), + [anon_sym_AMP_AMP] = ACTIONS(3928), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_SEMI] = ACTIONS(3928), + [anon_sym___extension__] = ACTIONS(3925), + [anon_sym_typedef] = ACTIONS(3925), + [anon_sym_virtual] = ACTIONS(3925), + [anon_sym_extern] = ACTIONS(3925), + [anon_sym___attribute__] = ACTIONS(3925), + [anon_sym___attribute] = ACTIONS(3925), + [anon_sym_using] = ACTIONS(3925), + [anon_sym_COLON_COLON] = ACTIONS(3928), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3928), + [anon_sym___declspec] = ACTIONS(3925), + [anon_sym___based] = ACTIONS(3925), + [anon_sym___cdecl] = ACTIONS(3925), + [anon_sym___clrcall] = ACTIONS(3925), + [anon_sym___stdcall] = ACTIONS(3925), + [anon_sym___fastcall] = ACTIONS(3925), + [anon_sym___thiscall] = ACTIONS(3925), + [anon_sym___vectorcall] = ACTIONS(3925), + [anon_sym_LBRACE] = ACTIONS(3928), + [anon_sym_signed] = ACTIONS(3925), + [anon_sym_unsigned] = ACTIONS(3925), + [anon_sym_long] = ACTIONS(3925), + [anon_sym_short] = ACTIONS(3925), + [anon_sym_LBRACK] = ACTIONS(3925), + [anon_sym_static] = ACTIONS(3925), + [anon_sym_register] = ACTIONS(3925), + [anon_sym_inline] = ACTIONS(3925), + [anon_sym___inline] = ACTIONS(3925), + [anon_sym___inline__] = ACTIONS(3925), + [anon_sym___forceinline] = ACTIONS(3925), + [anon_sym_thread_local] = ACTIONS(3925), + [anon_sym___thread] = ACTIONS(3925), + [anon_sym_const] = ACTIONS(3925), + [anon_sym_constexpr] = ACTIONS(3925), + [anon_sym_volatile] = ACTIONS(3925), + [anon_sym_restrict] = ACTIONS(3925), + [anon_sym___restrict__] = ACTIONS(3925), + [anon_sym__Atomic] = ACTIONS(3925), + [anon_sym__Noreturn] = ACTIONS(3925), + [anon_sym_noreturn] = ACTIONS(3925), + [anon_sym__Nonnull] = ACTIONS(3925), + [anon_sym_mutable] = ACTIONS(3925), + [anon_sym_constinit] = ACTIONS(3925), + [anon_sym_consteval] = ACTIONS(3925), + [anon_sym_alignas] = ACTIONS(3925), + [anon_sym__Alignas] = ACTIONS(3925), + [sym_primitive_type] = ACTIONS(3925), + [anon_sym_enum] = ACTIONS(3925), + [anon_sym_class] = ACTIONS(3925), + [anon_sym_struct] = ACTIONS(3925), + [anon_sym_union] = ACTIONS(3925), + [anon_sym_if] = ACTIONS(3925), + [anon_sym_switch] = ACTIONS(3925), + [anon_sym_case] = ACTIONS(3925), + [anon_sym_default] = ACTIONS(3925), + [anon_sym_while] = ACTIONS(3925), + [anon_sym_do] = ACTIONS(3925), + [anon_sym_for] = ACTIONS(3925), + [anon_sym_return] = ACTIONS(3925), + [anon_sym_break] = ACTIONS(3925), + [anon_sym_continue] = ACTIONS(3925), + [anon_sym_goto] = ACTIONS(3925), + [anon_sym_not] = ACTIONS(3925), + [anon_sym_compl] = ACTIONS(3925), + [anon_sym_DASH_DASH] = ACTIONS(3928), + [anon_sym_PLUS_PLUS] = ACTIONS(3928), + [anon_sym_sizeof] = ACTIONS(3925), + [anon_sym___alignof__] = ACTIONS(3925), + [anon_sym___alignof] = ACTIONS(3925), + [anon_sym__alignof] = ACTIONS(3925), + [anon_sym_alignof] = ACTIONS(3925), + [anon_sym__Alignof] = ACTIONS(3925), + [anon_sym_offsetof] = ACTIONS(3925), + [anon_sym__Generic] = ACTIONS(3925), + [anon_sym_typename] = ACTIONS(3925), + [anon_sym_asm] = ACTIONS(3925), + [anon_sym___asm__] = ACTIONS(3925), + [anon_sym___asm] = ACTIONS(3925), + [sym_number_literal] = ACTIONS(3928), + [anon_sym_L_SQUOTE] = ACTIONS(3928), + [anon_sym_u_SQUOTE] = ACTIONS(3928), + [anon_sym_U_SQUOTE] = ACTIONS(3928), + [anon_sym_u8_SQUOTE] = ACTIONS(3928), + [anon_sym_SQUOTE] = ACTIONS(3928), + [anon_sym_L_DQUOTE] = ACTIONS(3928), + [anon_sym_u_DQUOTE] = ACTIONS(3928), + [anon_sym_U_DQUOTE] = ACTIONS(3928), + [anon_sym_u8_DQUOTE] = ACTIONS(3928), + [anon_sym_DQUOTE] = ACTIONS(3928), + [sym_true] = ACTIONS(3925), + [sym_false] = ACTIONS(3925), + [anon_sym_NULL] = ACTIONS(3925), + [anon_sym_nullptr] = ACTIONS(3925), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3925), + [anon_sym_decltype] = ACTIONS(3925), + [anon_sym_explicit] = ACTIONS(3925), + [anon_sym_export] = ACTIONS(3925), + [anon_sym_module] = ACTIONS(3925), + [anon_sym_import] = ACTIONS(3925), + [anon_sym_template] = ACTIONS(3925), + [anon_sym_operator] = ACTIONS(3925), + [anon_sym_try] = ACTIONS(3925), + [anon_sym_delete] = ACTIONS(3925), + [anon_sym_throw] = ACTIONS(3925), + [anon_sym_namespace] = ACTIONS(3925), + [anon_sym_static_assert] = ACTIONS(3925), + [anon_sym_concept] = ACTIONS(3925), + [anon_sym_co_return] = ACTIONS(3925), + [anon_sym_co_yield] = ACTIONS(3925), + [anon_sym_R_DQUOTE] = ACTIONS(3928), + [anon_sym_LR_DQUOTE] = ACTIONS(3928), + [anon_sym_uR_DQUOTE] = ACTIONS(3928), + [anon_sym_UR_DQUOTE] = ACTIONS(3928), + [anon_sym_u8R_DQUOTE] = ACTIONS(3928), + [anon_sym_co_await] = ACTIONS(3925), + [anon_sym_new] = ACTIONS(3925), + [anon_sym_requires] = ACTIONS(3925), + [anon_sym_CARET_CARET] = ACTIONS(3928), + [anon_sym_LBRACK_COLON] = ACTIONS(3928), + [sym_this] = ACTIONS(3925), + }, + [STATE(1007)] = { + [ts_builtin_sym_end] = ACTIONS(4082), + [sym_identifier] = ACTIONS(4080), + [aux_sym_preproc_include_token1] = ACTIONS(4080), + [aux_sym_preproc_def_token1] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), + [sym_preproc_directive] = ACTIONS(4080), + [anon_sym_LPAREN2] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_TILDE] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4080), + [anon_sym_PLUS] = ACTIONS(4080), + [anon_sym_STAR] = ACTIONS(4082), + [anon_sym_AMP_AMP] = ACTIONS(4082), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_SEMI] = ACTIONS(4082), + [anon_sym___extension__] = ACTIONS(4080), + [anon_sym_typedef] = ACTIONS(4080), + [anon_sym_virtual] = ACTIONS(4080), + [anon_sym_extern] = ACTIONS(4080), + [anon_sym___attribute__] = ACTIONS(4080), + [anon_sym___attribute] = ACTIONS(4080), + [anon_sym_using] = ACTIONS(4080), + [anon_sym_COLON_COLON] = ACTIONS(4082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), + [anon_sym___declspec] = ACTIONS(4080), + [anon_sym___based] = ACTIONS(4080), + [anon_sym___cdecl] = ACTIONS(4080), + [anon_sym___clrcall] = ACTIONS(4080), + [anon_sym___stdcall] = ACTIONS(4080), + [anon_sym___fastcall] = ACTIONS(4080), + [anon_sym___thiscall] = ACTIONS(4080), + [anon_sym___vectorcall] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4082), + [anon_sym_signed] = ACTIONS(4080), + [anon_sym_unsigned] = ACTIONS(4080), + [anon_sym_long] = ACTIONS(4080), + [anon_sym_short] = ACTIONS(4080), + [anon_sym_LBRACK] = ACTIONS(4080), + [anon_sym_static] = ACTIONS(4080), + [anon_sym_register] = ACTIONS(4080), + [anon_sym_inline] = ACTIONS(4080), + [anon_sym___inline] = ACTIONS(4080), + [anon_sym___inline__] = ACTIONS(4080), + [anon_sym___forceinline] = ACTIONS(4080), + [anon_sym_thread_local] = ACTIONS(4080), + [anon_sym___thread] = ACTIONS(4080), + [anon_sym_const] = ACTIONS(4080), + [anon_sym_constexpr] = ACTIONS(4080), + [anon_sym_volatile] = ACTIONS(4080), + [anon_sym_restrict] = ACTIONS(4080), + [anon_sym___restrict__] = ACTIONS(4080), + [anon_sym__Atomic] = ACTIONS(4080), + [anon_sym__Noreturn] = ACTIONS(4080), + [anon_sym_noreturn] = ACTIONS(4080), + [anon_sym__Nonnull] = ACTIONS(4080), + [anon_sym_mutable] = ACTIONS(4080), + [anon_sym_constinit] = ACTIONS(4080), + [anon_sym_consteval] = ACTIONS(4080), + [anon_sym_alignas] = ACTIONS(4080), + [anon_sym__Alignas] = ACTIONS(4080), + [sym_primitive_type] = ACTIONS(4080), + [anon_sym_enum] = ACTIONS(4080), + [anon_sym_class] = ACTIONS(4080), + [anon_sym_struct] = ACTIONS(4080), + [anon_sym_union] = ACTIONS(4080), + [anon_sym_if] = ACTIONS(4080), + [anon_sym_switch] = ACTIONS(4080), + [anon_sym_case] = ACTIONS(4080), + [anon_sym_default] = ACTIONS(4080), + [anon_sym_while] = ACTIONS(4080), + [anon_sym_do] = ACTIONS(4080), + [anon_sym_for] = ACTIONS(4080), + [anon_sym_return] = ACTIONS(4080), + [anon_sym_break] = ACTIONS(4080), + [anon_sym_continue] = ACTIONS(4080), + [anon_sym_goto] = ACTIONS(4080), + [anon_sym_not] = ACTIONS(4080), + [anon_sym_compl] = ACTIONS(4080), + [anon_sym_DASH_DASH] = ACTIONS(4082), + [anon_sym_PLUS_PLUS] = ACTIONS(4082), + [anon_sym_sizeof] = ACTIONS(4080), + [anon_sym___alignof__] = ACTIONS(4080), + [anon_sym___alignof] = ACTIONS(4080), + [anon_sym__alignof] = ACTIONS(4080), + [anon_sym_alignof] = ACTIONS(4080), + [anon_sym__Alignof] = ACTIONS(4080), + [anon_sym_offsetof] = ACTIONS(4080), + [anon_sym__Generic] = ACTIONS(4080), + [anon_sym_typename] = ACTIONS(4080), + [anon_sym_asm] = ACTIONS(4080), + [anon_sym___asm__] = ACTIONS(4080), + [anon_sym___asm] = ACTIONS(4080), + [sym_number_literal] = ACTIONS(4082), + [anon_sym_L_SQUOTE] = ACTIONS(4082), + [anon_sym_u_SQUOTE] = ACTIONS(4082), + [anon_sym_U_SQUOTE] = ACTIONS(4082), + [anon_sym_u8_SQUOTE] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4082), + [anon_sym_L_DQUOTE] = ACTIONS(4082), + [anon_sym_u_DQUOTE] = ACTIONS(4082), + [anon_sym_U_DQUOTE] = ACTIONS(4082), + [anon_sym_u8_DQUOTE] = ACTIONS(4082), + [anon_sym_DQUOTE] = ACTIONS(4082), + [sym_true] = ACTIONS(4080), + [sym_false] = ACTIONS(4080), + [anon_sym_NULL] = ACTIONS(4080), + [anon_sym_nullptr] = ACTIONS(4080), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4080), + [anon_sym_decltype] = ACTIONS(4080), + [anon_sym_explicit] = ACTIONS(4080), + [anon_sym_export] = ACTIONS(4080), + [anon_sym_module] = ACTIONS(4080), + [anon_sym_import] = ACTIONS(4080), + [anon_sym_template] = ACTIONS(4080), + [anon_sym_operator] = ACTIONS(4080), + [anon_sym_try] = ACTIONS(4080), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_throw] = ACTIONS(4080), + [anon_sym_namespace] = ACTIONS(4080), + [anon_sym_static_assert] = ACTIONS(4080), + [anon_sym_concept] = ACTIONS(4080), + [anon_sym_co_return] = ACTIONS(4080), + [anon_sym_co_yield] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4080), + [anon_sym_new] = ACTIONS(4080), + [anon_sym_requires] = ACTIONS(4080), + [anon_sym_CARET_CARET] = ACTIONS(4082), + [anon_sym_LBRACK_COLON] = ACTIONS(4082), + [sym_this] = ACTIONS(4080), + }, + [STATE(1008)] = { + [ts_builtin_sym_end] = ACTIONS(4082), + [sym_identifier] = ACTIONS(4080), + [aux_sym_preproc_include_token1] = ACTIONS(4080), + [aux_sym_preproc_def_token1] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), + [sym_preproc_directive] = ACTIONS(4080), + [anon_sym_LPAREN2] = ACTIONS(4082), + [anon_sym_BANG] = ACTIONS(4082), + [anon_sym_TILDE] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4080), + [anon_sym_PLUS] = ACTIONS(4080), + [anon_sym_STAR] = ACTIONS(4082), + [anon_sym_AMP_AMP] = ACTIONS(4082), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_SEMI] = ACTIONS(4082), + [anon_sym___extension__] = ACTIONS(4080), + [anon_sym_typedef] = ACTIONS(4080), + [anon_sym_virtual] = ACTIONS(4080), + [anon_sym_extern] = ACTIONS(4080), + [anon_sym___attribute__] = ACTIONS(4080), + [anon_sym___attribute] = ACTIONS(4080), + [anon_sym_using] = ACTIONS(4080), + [anon_sym_COLON_COLON] = ACTIONS(4082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), + [anon_sym___declspec] = ACTIONS(4080), + [anon_sym___based] = ACTIONS(4080), + [anon_sym___cdecl] = ACTIONS(4080), + [anon_sym___clrcall] = ACTIONS(4080), + [anon_sym___stdcall] = ACTIONS(4080), + [anon_sym___fastcall] = ACTIONS(4080), + [anon_sym___thiscall] = ACTIONS(4080), + [anon_sym___vectorcall] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4082), + [anon_sym_signed] = ACTIONS(4080), + [anon_sym_unsigned] = ACTIONS(4080), + [anon_sym_long] = ACTIONS(4080), + [anon_sym_short] = ACTIONS(4080), + [anon_sym_LBRACK] = ACTIONS(4080), + [anon_sym_static] = ACTIONS(4080), + [anon_sym_register] = ACTIONS(4080), + [anon_sym_inline] = ACTIONS(4080), + [anon_sym___inline] = ACTIONS(4080), + [anon_sym___inline__] = ACTIONS(4080), + [anon_sym___forceinline] = ACTIONS(4080), + [anon_sym_thread_local] = ACTIONS(4080), + [anon_sym___thread] = ACTIONS(4080), + [anon_sym_const] = ACTIONS(4080), + [anon_sym_constexpr] = ACTIONS(4080), + [anon_sym_volatile] = ACTIONS(4080), + [anon_sym_restrict] = ACTIONS(4080), + [anon_sym___restrict__] = ACTIONS(4080), + [anon_sym__Atomic] = ACTIONS(4080), + [anon_sym__Noreturn] = ACTIONS(4080), + [anon_sym_noreturn] = ACTIONS(4080), + [anon_sym__Nonnull] = ACTIONS(4080), + [anon_sym_mutable] = ACTIONS(4080), + [anon_sym_constinit] = ACTIONS(4080), + [anon_sym_consteval] = ACTIONS(4080), + [anon_sym_alignas] = ACTIONS(4080), + [anon_sym__Alignas] = ACTIONS(4080), + [sym_primitive_type] = ACTIONS(4080), + [anon_sym_enum] = ACTIONS(4080), + [anon_sym_class] = ACTIONS(4080), + [anon_sym_struct] = ACTIONS(4080), + [anon_sym_union] = ACTIONS(4080), + [anon_sym_if] = ACTIONS(4080), + [anon_sym_switch] = ACTIONS(4080), + [anon_sym_case] = ACTIONS(4080), + [anon_sym_default] = ACTIONS(4080), + [anon_sym_while] = ACTIONS(4080), + [anon_sym_do] = ACTIONS(4080), + [anon_sym_for] = ACTIONS(4080), + [anon_sym_return] = ACTIONS(4080), + [anon_sym_break] = ACTIONS(4080), + [anon_sym_continue] = ACTIONS(4080), + [anon_sym_goto] = ACTIONS(4080), + [anon_sym_not] = ACTIONS(4080), + [anon_sym_compl] = ACTIONS(4080), + [anon_sym_DASH_DASH] = ACTIONS(4082), + [anon_sym_PLUS_PLUS] = ACTIONS(4082), + [anon_sym_sizeof] = ACTIONS(4080), + [anon_sym___alignof__] = ACTIONS(4080), + [anon_sym___alignof] = ACTIONS(4080), + [anon_sym__alignof] = ACTIONS(4080), + [anon_sym_alignof] = ACTIONS(4080), + [anon_sym__Alignof] = ACTIONS(4080), + [anon_sym_offsetof] = ACTIONS(4080), + [anon_sym__Generic] = ACTIONS(4080), + [anon_sym_typename] = ACTIONS(4080), + [anon_sym_asm] = ACTIONS(4080), + [anon_sym___asm__] = ACTIONS(4080), + [anon_sym___asm] = ACTIONS(4080), + [sym_number_literal] = ACTIONS(4082), + [anon_sym_L_SQUOTE] = ACTIONS(4082), + [anon_sym_u_SQUOTE] = ACTIONS(4082), + [anon_sym_U_SQUOTE] = ACTIONS(4082), + [anon_sym_u8_SQUOTE] = ACTIONS(4082), + [anon_sym_SQUOTE] = ACTIONS(4082), + [anon_sym_L_DQUOTE] = ACTIONS(4082), + [anon_sym_u_DQUOTE] = ACTIONS(4082), + [anon_sym_U_DQUOTE] = ACTIONS(4082), + [anon_sym_u8_DQUOTE] = ACTIONS(4082), + [anon_sym_DQUOTE] = ACTIONS(4082), + [sym_true] = ACTIONS(4080), + [sym_false] = ACTIONS(4080), + [anon_sym_NULL] = ACTIONS(4080), + [anon_sym_nullptr] = ACTIONS(4080), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4080), + [anon_sym_decltype] = ACTIONS(4080), + [anon_sym_explicit] = ACTIONS(4080), + [anon_sym_export] = ACTIONS(4080), + [anon_sym_module] = ACTIONS(4080), + [anon_sym_import] = ACTIONS(4080), + [anon_sym_template] = ACTIONS(4080), + [anon_sym_operator] = ACTIONS(4080), + [anon_sym_try] = ACTIONS(4080), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_throw] = ACTIONS(4080), + [anon_sym_namespace] = ACTIONS(4080), + [anon_sym_static_assert] = ACTIONS(4080), + [anon_sym_concept] = ACTIONS(4080), + [anon_sym_co_return] = ACTIONS(4080), + [anon_sym_co_yield] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4080), + [anon_sym_new] = ACTIONS(4080), + [anon_sym_requires] = ACTIONS(4080), + [anon_sym_CARET_CARET] = ACTIONS(4082), + [anon_sym_LBRACK_COLON] = ACTIONS(4082), + [sym_this] = ACTIONS(4080), + }, + [STATE(1009)] = { + [sym_identifier] = ACTIONS(4496), + [aux_sym_preproc_include_token1] = ACTIONS(4496), + [aux_sym_preproc_def_token1] = ACTIONS(4496), + [aux_sym_preproc_if_token1] = ACTIONS(4496), + [aux_sym_preproc_if_token2] = ACTIONS(4496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4496), + [sym_preproc_directive] = ACTIONS(4496), + [anon_sym_LPAREN2] = ACTIONS(4498), + [anon_sym_BANG] = ACTIONS(4498), + [anon_sym_TILDE] = ACTIONS(4498), + [anon_sym_DASH] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4496), + [anon_sym_STAR] = ACTIONS(4498), + [anon_sym_AMP_AMP] = ACTIONS(4498), + [anon_sym_AMP] = ACTIONS(4496), + [anon_sym_SEMI] = ACTIONS(4498), + [anon_sym___extension__] = ACTIONS(4496), + [anon_sym_typedef] = ACTIONS(4496), + [anon_sym_virtual] = ACTIONS(4496), + [anon_sym_extern] = ACTIONS(4496), + [anon_sym___attribute__] = ACTIONS(4496), + [anon_sym___attribute] = ACTIONS(4496), + [anon_sym_using] = ACTIONS(4496), + [anon_sym_COLON_COLON] = ACTIONS(4498), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4498), + [anon_sym___declspec] = ACTIONS(4496), + [anon_sym___based] = ACTIONS(4496), + [anon_sym___cdecl] = ACTIONS(4496), + [anon_sym___clrcall] = ACTIONS(4496), + [anon_sym___stdcall] = ACTIONS(4496), + [anon_sym___fastcall] = ACTIONS(4496), + [anon_sym___thiscall] = ACTIONS(4496), + [anon_sym___vectorcall] = ACTIONS(4496), + [anon_sym_LBRACE] = ACTIONS(4498), + [anon_sym_signed] = ACTIONS(4496), + [anon_sym_unsigned] = ACTIONS(4496), + [anon_sym_long] = ACTIONS(4496), + [anon_sym_short] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4496), + [anon_sym_static] = ACTIONS(4496), + [anon_sym_register] = ACTIONS(4496), + [anon_sym_inline] = ACTIONS(4496), + [anon_sym___inline] = ACTIONS(4496), + [anon_sym___inline__] = ACTIONS(4496), + [anon_sym___forceinline] = ACTIONS(4496), + [anon_sym_thread_local] = ACTIONS(4496), + [anon_sym___thread] = ACTIONS(4496), + [anon_sym_const] = ACTIONS(4496), + [anon_sym_constexpr] = ACTIONS(4496), + [anon_sym_volatile] = ACTIONS(4496), + [anon_sym_restrict] = ACTIONS(4496), + [anon_sym___restrict__] = ACTIONS(4496), + [anon_sym__Atomic] = ACTIONS(4496), + [anon_sym__Noreturn] = ACTIONS(4496), + [anon_sym_noreturn] = ACTIONS(4496), + [anon_sym__Nonnull] = ACTIONS(4496), + [anon_sym_mutable] = ACTIONS(4496), + [anon_sym_constinit] = ACTIONS(4496), + [anon_sym_consteval] = ACTIONS(4496), + [anon_sym_alignas] = ACTIONS(4496), + [anon_sym__Alignas] = ACTIONS(4496), + [sym_primitive_type] = ACTIONS(4496), + [anon_sym_enum] = ACTIONS(4496), + [anon_sym_class] = ACTIONS(4496), + [anon_sym_struct] = ACTIONS(4496), + [anon_sym_union] = ACTIONS(4496), + [anon_sym_if] = ACTIONS(4496), + [anon_sym_switch] = ACTIONS(4496), + [anon_sym_case] = ACTIONS(4496), + [anon_sym_default] = ACTIONS(4496), + [anon_sym_while] = ACTIONS(4496), + [anon_sym_do] = ACTIONS(4496), + [anon_sym_for] = ACTIONS(4496), + [anon_sym_return] = ACTIONS(4496), + [anon_sym_break] = ACTIONS(4496), + [anon_sym_continue] = ACTIONS(4496), + [anon_sym_goto] = ACTIONS(4496), + [anon_sym_not] = ACTIONS(4496), + [anon_sym_compl] = ACTIONS(4496), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), + [anon_sym_sizeof] = ACTIONS(4496), + [anon_sym___alignof__] = ACTIONS(4496), + [anon_sym___alignof] = ACTIONS(4496), + [anon_sym__alignof] = ACTIONS(4496), + [anon_sym_alignof] = ACTIONS(4496), + [anon_sym__Alignof] = ACTIONS(4496), + [anon_sym_offsetof] = ACTIONS(4496), + [anon_sym__Generic] = ACTIONS(4496), + [anon_sym_typename] = ACTIONS(4496), + [anon_sym_asm] = ACTIONS(4496), + [anon_sym___asm__] = ACTIONS(4496), + [anon_sym___asm] = ACTIONS(4496), + [sym_number_literal] = ACTIONS(4498), + [anon_sym_L_SQUOTE] = ACTIONS(4498), + [anon_sym_u_SQUOTE] = ACTIONS(4498), + [anon_sym_U_SQUOTE] = ACTIONS(4498), + [anon_sym_u8_SQUOTE] = ACTIONS(4498), + [anon_sym_SQUOTE] = ACTIONS(4498), + [anon_sym_L_DQUOTE] = ACTIONS(4498), + [anon_sym_u_DQUOTE] = ACTIONS(4498), + [anon_sym_U_DQUOTE] = ACTIONS(4498), + [anon_sym_u8_DQUOTE] = ACTIONS(4498), + [anon_sym_DQUOTE] = ACTIONS(4498), + [sym_true] = ACTIONS(4496), + [sym_false] = ACTIONS(4496), + [anon_sym_NULL] = ACTIONS(4496), + [anon_sym_nullptr] = ACTIONS(4496), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4496), + [anon_sym_decltype] = ACTIONS(4496), + [anon_sym_explicit] = ACTIONS(4496), + [anon_sym_export] = ACTIONS(4496), + [anon_sym_module] = ACTIONS(4496), + [anon_sym_import] = ACTIONS(4496), + [anon_sym_template] = ACTIONS(4496), + [anon_sym_operator] = ACTIONS(4496), + [anon_sym_try] = ACTIONS(4496), + [anon_sym_delete] = ACTIONS(4496), + [anon_sym_throw] = ACTIONS(4496), + [anon_sym_namespace] = ACTIONS(4496), + [anon_sym_static_assert] = ACTIONS(4496), + [anon_sym_concept] = ACTIONS(4496), + [anon_sym_co_return] = ACTIONS(4496), + [anon_sym_co_yield] = ACTIONS(4496), + [anon_sym_R_DQUOTE] = ACTIONS(4498), + [anon_sym_LR_DQUOTE] = ACTIONS(4498), + [anon_sym_uR_DQUOTE] = ACTIONS(4498), + [anon_sym_UR_DQUOTE] = ACTIONS(4498), + [anon_sym_u8R_DQUOTE] = ACTIONS(4498), + [anon_sym_co_await] = ACTIONS(4496), + [anon_sym_new] = ACTIONS(4496), + [anon_sym_requires] = ACTIONS(4496), + [anon_sym_CARET_CARET] = ACTIONS(4498), + [anon_sym_LBRACK_COLON] = ACTIONS(4498), + [sym_this] = ACTIONS(4496), + }, + [STATE(1010)] = { + [ts_builtin_sym_end] = ACTIONS(4524), + [sym_identifier] = ACTIONS(4522), + [aux_sym_preproc_include_token1] = ACTIONS(4522), + [aux_sym_preproc_def_token1] = ACTIONS(4522), + [aux_sym_preproc_if_token1] = ACTIONS(4522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4522), + [sym_preproc_directive] = ACTIONS(4522), + [anon_sym_LPAREN2] = ACTIONS(4524), + [anon_sym_BANG] = ACTIONS(4524), + [anon_sym_TILDE] = ACTIONS(4524), + [anon_sym_DASH] = ACTIONS(4522), + [anon_sym_PLUS] = ACTIONS(4522), + [anon_sym_STAR] = ACTIONS(4524), + [anon_sym_AMP_AMP] = ACTIONS(4524), + [anon_sym_AMP] = ACTIONS(4522), + [anon_sym_SEMI] = ACTIONS(4524), + [anon_sym___extension__] = ACTIONS(4522), + [anon_sym_typedef] = ACTIONS(4522), + [anon_sym_virtual] = ACTIONS(4522), + [anon_sym_extern] = ACTIONS(4522), + [anon_sym___attribute__] = ACTIONS(4522), + [anon_sym___attribute] = ACTIONS(4522), + [anon_sym_using] = ACTIONS(4522), + [anon_sym_COLON_COLON] = ACTIONS(4524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4524), + [anon_sym___declspec] = ACTIONS(4522), + [anon_sym___based] = ACTIONS(4522), + [anon_sym___cdecl] = ACTIONS(4522), + [anon_sym___clrcall] = ACTIONS(4522), + [anon_sym___stdcall] = ACTIONS(4522), + [anon_sym___fastcall] = ACTIONS(4522), + [anon_sym___thiscall] = ACTIONS(4522), + [anon_sym___vectorcall] = ACTIONS(4522), + [anon_sym_LBRACE] = ACTIONS(4524), + [anon_sym_signed] = ACTIONS(4522), + [anon_sym_unsigned] = ACTIONS(4522), + [anon_sym_long] = ACTIONS(4522), + [anon_sym_short] = ACTIONS(4522), + [anon_sym_LBRACK] = ACTIONS(4522), + [anon_sym_static] = ACTIONS(4522), + [anon_sym_register] = ACTIONS(4522), + [anon_sym_inline] = ACTIONS(4522), + [anon_sym___inline] = ACTIONS(4522), + [anon_sym___inline__] = ACTIONS(4522), + [anon_sym___forceinline] = ACTIONS(4522), + [anon_sym_thread_local] = ACTIONS(4522), + [anon_sym___thread] = ACTIONS(4522), + [anon_sym_const] = ACTIONS(4522), + [anon_sym_constexpr] = ACTIONS(4522), + [anon_sym_volatile] = ACTIONS(4522), + [anon_sym_restrict] = ACTIONS(4522), + [anon_sym___restrict__] = ACTIONS(4522), + [anon_sym__Atomic] = ACTIONS(4522), + [anon_sym__Noreturn] = ACTIONS(4522), + [anon_sym_noreturn] = ACTIONS(4522), + [anon_sym__Nonnull] = ACTIONS(4522), + [anon_sym_mutable] = ACTIONS(4522), + [anon_sym_constinit] = ACTIONS(4522), + [anon_sym_consteval] = ACTIONS(4522), + [anon_sym_alignas] = ACTIONS(4522), + [anon_sym__Alignas] = ACTIONS(4522), + [sym_primitive_type] = ACTIONS(4522), + [anon_sym_enum] = ACTIONS(4522), + [anon_sym_class] = ACTIONS(4522), + [anon_sym_struct] = ACTIONS(4522), + [anon_sym_union] = ACTIONS(4522), + [anon_sym_if] = ACTIONS(4522), + [anon_sym_switch] = ACTIONS(4522), + [anon_sym_case] = ACTIONS(4522), + [anon_sym_default] = ACTIONS(4522), + [anon_sym_while] = ACTIONS(4522), + [anon_sym_do] = ACTIONS(4522), + [anon_sym_for] = ACTIONS(4522), + [anon_sym_return] = ACTIONS(4522), + [anon_sym_break] = ACTIONS(4522), + [anon_sym_continue] = ACTIONS(4522), + [anon_sym_goto] = ACTIONS(4522), + [anon_sym_not] = ACTIONS(4522), + [anon_sym_compl] = ACTIONS(4522), + [anon_sym_DASH_DASH] = ACTIONS(4524), + [anon_sym_PLUS_PLUS] = ACTIONS(4524), + [anon_sym_sizeof] = ACTIONS(4522), + [anon_sym___alignof__] = ACTIONS(4522), + [anon_sym___alignof] = ACTIONS(4522), + [anon_sym__alignof] = ACTIONS(4522), + [anon_sym_alignof] = ACTIONS(4522), + [anon_sym__Alignof] = ACTIONS(4522), + [anon_sym_offsetof] = ACTIONS(4522), + [anon_sym__Generic] = ACTIONS(4522), + [anon_sym_typename] = ACTIONS(4522), + [anon_sym_asm] = ACTIONS(4522), + [anon_sym___asm__] = ACTIONS(4522), + [anon_sym___asm] = ACTIONS(4522), + [sym_number_literal] = ACTIONS(4524), + [anon_sym_L_SQUOTE] = ACTIONS(4524), + [anon_sym_u_SQUOTE] = ACTIONS(4524), + [anon_sym_U_SQUOTE] = ACTIONS(4524), + [anon_sym_u8_SQUOTE] = ACTIONS(4524), + [anon_sym_SQUOTE] = ACTIONS(4524), + [anon_sym_L_DQUOTE] = ACTIONS(4524), + [anon_sym_u_DQUOTE] = ACTIONS(4524), + [anon_sym_U_DQUOTE] = ACTIONS(4524), + [anon_sym_u8_DQUOTE] = ACTIONS(4524), + [anon_sym_DQUOTE] = ACTIONS(4524), + [sym_true] = ACTIONS(4522), + [sym_false] = ACTIONS(4522), + [anon_sym_NULL] = ACTIONS(4522), + [anon_sym_nullptr] = ACTIONS(4522), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4522), + [anon_sym_decltype] = ACTIONS(4522), + [anon_sym_explicit] = ACTIONS(4522), + [anon_sym_export] = ACTIONS(4522), + [anon_sym_module] = ACTIONS(4522), + [anon_sym_import] = ACTIONS(4522), + [anon_sym_template] = ACTIONS(4522), + [anon_sym_operator] = ACTIONS(4522), + [anon_sym_try] = ACTIONS(4522), + [anon_sym_delete] = ACTIONS(4522), + [anon_sym_throw] = ACTIONS(4522), + [anon_sym_namespace] = ACTIONS(4522), + [anon_sym_static_assert] = ACTIONS(4522), + [anon_sym_concept] = ACTIONS(4522), + [anon_sym_co_return] = ACTIONS(4522), + [anon_sym_co_yield] = ACTIONS(4522), + [anon_sym_R_DQUOTE] = ACTIONS(4524), + [anon_sym_LR_DQUOTE] = ACTIONS(4524), + [anon_sym_uR_DQUOTE] = ACTIONS(4524), + [anon_sym_UR_DQUOTE] = ACTIONS(4524), + [anon_sym_u8R_DQUOTE] = ACTIONS(4524), + [anon_sym_co_await] = ACTIONS(4522), + [anon_sym_new] = ACTIONS(4522), + [anon_sym_requires] = ACTIONS(4522), + [anon_sym_CARET_CARET] = ACTIONS(4524), + [anon_sym_LBRACK_COLON] = ACTIONS(4524), + [sym_this] = ACTIONS(4522), + }, + [STATE(1011)] = { + [ts_builtin_sym_end] = ACTIONS(4086), + [sym_identifier] = ACTIONS(4084), + [aux_sym_preproc_include_token1] = ACTIONS(4084), + [aux_sym_preproc_def_token1] = ACTIONS(4084), + [aux_sym_preproc_if_token1] = ACTIONS(4084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4084), + [sym_preproc_directive] = ACTIONS(4084), + [anon_sym_LPAREN2] = ACTIONS(4086), + [anon_sym_BANG] = ACTIONS(4086), + [anon_sym_TILDE] = ACTIONS(4086), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_STAR] = ACTIONS(4086), + [anon_sym_AMP_AMP] = ACTIONS(4086), + [anon_sym_AMP] = ACTIONS(4084), + [anon_sym_SEMI] = ACTIONS(4086), + [anon_sym___extension__] = ACTIONS(4084), + [anon_sym_typedef] = ACTIONS(4084), + [anon_sym_virtual] = ACTIONS(4084), + [anon_sym_extern] = ACTIONS(4084), + [anon_sym___attribute__] = ACTIONS(4084), + [anon_sym___attribute] = ACTIONS(4084), + [anon_sym_using] = ACTIONS(4084), + [anon_sym_COLON_COLON] = ACTIONS(4086), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4086), + [anon_sym___declspec] = ACTIONS(4084), + [anon_sym___based] = ACTIONS(4084), + [anon_sym___cdecl] = ACTIONS(4084), + [anon_sym___clrcall] = ACTIONS(4084), + [anon_sym___stdcall] = ACTIONS(4084), + [anon_sym___fastcall] = ACTIONS(4084), + [anon_sym___thiscall] = ACTIONS(4084), + [anon_sym___vectorcall] = ACTIONS(4084), + [anon_sym_LBRACE] = ACTIONS(4086), + [anon_sym_signed] = ACTIONS(4084), + [anon_sym_unsigned] = ACTIONS(4084), + [anon_sym_long] = ACTIONS(4084), + [anon_sym_short] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_static] = ACTIONS(4084), + [anon_sym_register] = ACTIONS(4084), + [anon_sym_inline] = ACTIONS(4084), + [anon_sym___inline] = ACTIONS(4084), + [anon_sym___inline__] = ACTIONS(4084), + [anon_sym___forceinline] = ACTIONS(4084), + [anon_sym_thread_local] = ACTIONS(4084), + [anon_sym___thread] = ACTIONS(4084), + [anon_sym_const] = ACTIONS(4084), + [anon_sym_constexpr] = ACTIONS(4084), + [anon_sym_volatile] = ACTIONS(4084), + [anon_sym_restrict] = ACTIONS(4084), + [anon_sym___restrict__] = ACTIONS(4084), + [anon_sym__Atomic] = ACTIONS(4084), + [anon_sym__Noreturn] = ACTIONS(4084), + [anon_sym_noreturn] = ACTIONS(4084), + [anon_sym__Nonnull] = ACTIONS(4084), + [anon_sym_mutable] = ACTIONS(4084), + [anon_sym_constinit] = ACTIONS(4084), + [anon_sym_consteval] = ACTIONS(4084), + [anon_sym_alignas] = ACTIONS(4084), + [anon_sym__Alignas] = ACTIONS(4084), + [sym_primitive_type] = ACTIONS(4084), + [anon_sym_enum] = ACTIONS(4084), + [anon_sym_class] = ACTIONS(4084), + [anon_sym_struct] = ACTIONS(4084), + [anon_sym_union] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4084), + [anon_sym_switch] = ACTIONS(4084), + [anon_sym_case] = ACTIONS(4084), + [anon_sym_default] = ACTIONS(4084), + [anon_sym_while] = ACTIONS(4084), + [anon_sym_do] = ACTIONS(4084), + [anon_sym_for] = ACTIONS(4084), + [anon_sym_return] = ACTIONS(4084), + [anon_sym_break] = ACTIONS(4084), + [anon_sym_continue] = ACTIONS(4084), + [anon_sym_goto] = ACTIONS(4084), + [anon_sym_not] = ACTIONS(4084), + [anon_sym_compl] = ACTIONS(4084), + [anon_sym_DASH_DASH] = ACTIONS(4086), + [anon_sym_PLUS_PLUS] = ACTIONS(4086), + [anon_sym_sizeof] = ACTIONS(4084), + [anon_sym___alignof__] = ACTIONS(4084), + [anon_sym___alignof] = ACTIONS(4084), + [anon_sym__alignof] = ACTIONS(4084), + [anon_sym_alignof] = ACTIONS(4084), + [anon_sym__Alignof] = ACTIONS(4084), + [anon_sym_offsetof] = ACTIONS(4084), + [anon_sym__Generic] = ACTIONS(4084), + [anon_sym_typename] = ACTIONS(4084), + [anon_sym_asm] = ACTIONS(4084), + [anon_sym___asm__] = ACTIONS(4084), + [anon_sym___asm] = ACTIONS(4084), + [sym_number_literal] = ACTIONS(4086), + [anon_sym_L_SQUOTE] = ACTIONS(4086), + [anon_sym_u_SQUOTE] = ACTIONS(4086), + [anon_sym_U_SQUOTE] = ACTIONS(4086), + [anon_sym_u8_SQUOTE] = ACTIONS(4086), + [anon_sym_SQUOTE] = ACTIONS(4086), + [anon_sym_L_DQUOTE] = ACTIONS(4086), + [anon_sym_u_DQUOTE] = ACTIONS(4086), + [anon_sym_U_DQUOTE] = ACTIONS(4086), + [anon_sym_u8_DQUOTE] = ACTIONS(4086), + [anon_sym_DQUOTE] = ACTIONS(4086), + [sym_true] = ACTIONS(4084), + [sym_false] = ACTIONS(4084), + [anon_sym_NULL] = ACTIONS(4084), + [anon_sym_nullptr] = ACTIONS(4084), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4084), + [anon_sym_decltype] = ACTIONS(4084), + [anon_sym_explicit] = ACTIONS(4084), + [anon_sym_export] = ACTIONS(4084), + [anon_sym_module] = ACTIONS(4084), + [anon_sym_import] = ACTIONS(4084), + [anon_sym_template] = ACTIONS(4084), + [anon_sym_operator] = ACTIONS(4084), + [anon_sym_try] = ACTIONS(4084), + [anon_sym_delete] = ACTIONS(4084), + [anon_sym_throw] = ACTIONS(4084), + [anon_sym_namespace] = ACTIONS(4084), + [anon_sym_static_assert] = ACTIONS(4084), + [anon_sym_concept] = ACTIONS(4084), + [anon_sym_co_return] = ACTIONS(4084), + [anon_sym_co_yield] = ACTIONS(4084), + [anon_sym_R_DQUOTE] = ACTIONS(4086), + [anon_sym_LR_DQUOTE] = ACTIONS(4086), + [anon_sym_uR_DQUOTE] = ACTIONS(4086), + [anon_sym_UR_DQUOTE] = ACTIONS(4086), + [anon_sym_u8R_DQUOTE] = ACTIONS(4086), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(4084), + [anon_sym_requires] = ACTIONS(4084), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(4086), + [sym_this] = ACTIONS(4084), + }, + [STATE(1012)] = { + [sym_identifier] = ACTIONS(4500), + [aux_sym_preproc_include_token1] = ACTIONS(4500), + [aux_sym_preproc_def_token1] = ACTIONS(4500), + [aux_sym_preproc_if_token1] = ACTIONS(4500), + [aux_sym_preproc_if_token2] = ACTIONS(4500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4500), + [sym_preproc_directive] = ACTIONS(4500), + [anon_sym_LPAREN2] = ACTIONS(4502), + [anon_sym_BANG] = ACTIONS(4502), + [anon_sym_TILDE] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4500), + [anon_sym_PLUS] = ACTIONS(4500), + [anon_sym_STAR] = ACTIONS(4502), + [anon_sym_AMP_AMP] = ACTIONS(4502), + [anon_sym_AMP] = ACTIONS(4500), + [anon_sym_SEMI] = ACTIONS(4502), + [anon_sym___extension__] = ACTIONS(4500), + [anon_sym_typedef] = ACTIONS(4500), + [anon_sym_virtual] = ACTIONS(4500), + [anon_sym_extern] = ACTIONS(4500), + [anon_sym___attribute__] = ACTIONS(4500), + [anon_sym___attribute] = ACTIONS(4500), + [anon_sym_using] = ACTIONS(4500), + [anon_sym_COLON_COLON] = ACTIONS(4502), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4502), + [anon_sym___declspec] = ACTIONS(4500), + [anon_sym___based] = ACTIONS(4500), + [anon_sym___cdecl] = ACTIONS(4500), + [anon_sym___clrcall] = ACTIONS(4500), + [anon_sym___stdcall] = ACTIONS(4500), + [anon_sym___fastcall] = ACTIONS(4500), + [anon_sym___thiscall] = ACTIONS(4500), + [anon_sym___vectorcall] = ACTIONS(4500), + [anon_sym_LBRACE] = ACTIONS(4502), + [anon_sym_signed] = ACTIONS(4500), + [anon_sym_unsigned] = ACTIONS(4500), + [anon_sym_long] = ACTIONS(4500), + [anon_sym_short] = ACTIONS(4500), + [anon_sym_LBRACK] = ACTIONS(4500), + [anon_sym_static] = ACTIONS(4500), + [anon_sym_register] = ACTIONS(4500), + [anon_sym_inline] = ACTIONS(4500), + [anon_sym___inline] = ACTIONS(4500), + [anon_sym___inline__] = ACTIONS(4500), + [anon_sym___forceinline] = ACTIONS(4500), + [anon_sym_thread_local] = ACTIONS(4500), + [anon_sym___thread] = ACTIONS(4500), + [anon_sym_const] = ACTIONS(4500), + [anon_sym_constexpr] = ACTIONS(4500), + [anon_sym_volatile] = ACTIONS(4500), + [anon_sym_restrict] = ACTIONS(4500), + [anon_sym___restrict__] = ACTIONS(4500), + [anon_sym__Atomic] = ACTIONS(4500), + [anon_sym__Noreturn] = ACTIONS(4500), + [anon_sym_noreturn] = ACTIONS(4500), + [anon_sym__Nonnull] = ACTIONS(4500), + [anon_sym_mutable] = ACTIONS(4500), + [anon_sym_constinit] = ACTIONS(4500), + [anon_sym_consteval] = ACTIONS(4500), + [anon_sym_alignas] = ACTIONS(4500), + [anon_sym__Alignas] = ACTIONS(4500), + [sym_primitive_type] = ACTIONS(4500), + [anon_sym_enum] = ACTIONS(4500), + [anon_sym_class] = ACTIONS(4500), + [anon_sym_struct] = ACTIONS(4500), + [anon_sym_union] = ACTIONS(4500), + [anon_sym_if] = ACTIONS(4500), + [anon_sym_switch] = ACTIONS(4500), + [anon_sym_case] = ACTIONS(4500), + [anon_sym_default] = ACTIONS(4500), + [anon_sym_while] = ACTIONS(4500), + [anon_sym_do] = ACTIONS(4500), + [anon_sym_for] = ACTIONS(4500), + [anon_sym_return] = ACTIONS(4500), + [anon_sym_break] = ACTIONS(4500), + [anon_sym_continue] = ACTIONS(4500), + [anon_sym_goto] = ACTIONS(4500), + [anon_sym_not] = ACTIONS(4500), + [anon_sym_compl] = ACTIONS(4500), + [anon_sym_DASH_DASH] = ACTIONS(4502), + [anon_sym_PLUS_PLUS] = ACTIONS(4502), + [anon_sym_sizeof] = ACTIONS(4500), + [anon_sym___alignof__] = ACTIONS(4500), + [anon_sym___alignof] = ACTIONS(4500), + [anon_sym__alignof] = ACTIONS(4500), + [anon_sym_alignof] = ACTIONS(4500), + [anon_sym__Alignof] = ACTIONS(4500), + [anon_sym_offsetof] = ACTIONS(4500), + [anon_sym__Generic] = ACTIONS(4500), + [anon_sym_typename] = ACTIONS(4500), + [anon_sym_asm] = ACTIONS(4500), + [anon_sym___asm__] = ACTIONS(4500), + [anon_sym___asm] = ACTIONS(4500), + [sym_number_literal] = ACTIONS(4502), + [anon_sym_L_SQUOTE] = ACTIONS(4502), + [anon_sym_u_SQUOTE] = ACTIONS(4502), + [anon_sym_U_SQUOTE] = ACTIONS(4502), + [anon_sym_u8_SQUOTE] = ACTIONS(4502), + [anon_sym_SQUOTE] = ACTIONS(4502), + [anon_sym_L_DQUOTE] = ACTIONS(4502), + [anon_sym_u_DQUOTE] = ACTIONS(4502), + [anon_sym_U_DQUOTE] = ACTIONS(4502), + [anon_sym_u8_DQUOTE] = ACTIONS(4502), + [anon_sym_DQUOTE] = ACTIONS(4502), + [sym_true] = ACTIONS(4500), + [sym_false] = ACTIONS(4500), + [anon_sym_NULL] = ACTIONS(4500), + [anon_sym_nullptr] = ACTIONS(4500), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4500), + [anon_sym_decltype] = ACTIONS(4500), + [anon_sym_explicit] = ACTIONS(4500), + [anon_sym_export] = ACTIONS(4500), + [anon_sym_module] = ACTIONS(4500), + [anon_sym_import] = ACTIONS(4500), + [anon_sym_template] = ACTIONS(4500), + [anon_sym_operator] = ACTIONS(4500), + [anon_sym_try] = ACTIONS(4500), + [anon_sym_delete] = ACTIONS(4500), + [anon_sym_throw] = ACTIONS(4500), + [anon_sym_namespace] = ACTIONS(4500), + [anon_sym_static_assert] = ACTIONS(4500), + [anon_sym_concept] = ACTIONS(4500), + [anon_sym_co_return] = ACTIONS(4500), + [anon_sym_co_yield] = ACTIONS(4500), + [anon_sym_R_DQUOTE] = ACTIONS(4502), + [anon_sym_LR_DQUOTE] = ACTIONS(4502), + [anon_sym_uR_DQUOTE] = ACTIONS(4502), + [anon_sym_UR_DQUOTE] = ACTIONS(4502), + [anon_sym_u8R_DQUOTE] = ACTIONS(4502), + [anon_sym_co_await] = ACTIONS(4500), + [anon_sym_new] = ACTIONS(4500), + [anon_sym_requires] = ACTIONS(4500), + [anon_sym_CARET_CARET] = ACTIONS(4502), + [anon_sym_LBRACK_COLON] = ACTIONS(4502), + [sym_this] = ACTIONS(4500), + }, + [STATE(1013)] = { + [ts_builtin_sym_end] = ACTIONS(4090), + [sym_identifier] = ACTIONS(4088), + [aux_sym_preproc_include_token1] = ACTIONS(4088), + [aux_sym_preproc_def_token1] = ACTIONS(4088), + [aux_sym_preproc_if_token1] = ACTIONS(4088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4088), + [sym_preproc_directive] = ACTIONS(4088), + [anon_sym_LPAREN2] = ACTIONS(4090), + [anon_sym_BANG] = ACTIONS(4090), + [anon_sym_TILDE] = ACTIONS(4090), + [anon_sym_DASH] = ACTIONS(4088), + [anon_sym_PLUS] = ACTIONS(4088), + [anon_sym_STAR] = ACTIONS(4090), + [anon_sym_AMP_AMP] = ACTIONS(4090), + [anon_sym_AMP] = ACTIONS(4088), + [anon_sym_SEMI] = ACTIONS(4090), + [anon_sym___extension__] = ACTIONS(4088), + [anon_sym_typedef] = ACTIONS(4088), + [anon_sym_virtual] = ACTIONS(4088), + [anon_sym_extern] = ACTIONS(4088), + [anon_sym___attribute__] = ACTIONS(4088), + [anon_sym___attribute] = ACTIONS(4088), + [anon_sym_using] = ACTIONS(4088), + [anon_sym_COLON_COLON] = ACTIONS(4090), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4090), + [anon_sym___declspec] = ACTIONS(4088), + [anon_sym___based] = ACTIONS(4088), + [anon_sym___cdecl] = ACTIONS(4088), + [anon_sym___clrcall] = ACTIONS(4088), + [anon_sym___stdcall] = ACTIONS(4088), + [anon_sym___fastcall] = ACTIONS(4088), + [anon_sym___thiscall] = ACTIONS(4088), + [anon_sym___vectorcall] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_signed] = ACTIONS(4088), + [anon_sym_unsigned] = ACTIONS(4088), + [anon_sym_long] = ACTIONS(4088), + [anon_sym_short] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(4088), + [anon_sym_static] = ACTIONS(4088), + [anon_sym_register] = ACTIONS(4088), + [anon_sym_inline] = ACTIONS(4088), + [anon_sym___inline] = ACTIONS(4088), + [anon_sym___inline__] = ACTIONS(4088), + [anon_sym___forceinline] = ACTIONS(4088), + [anon_sym_thread_local] = ACTIONS(4088), + [anon_sym___thread] = ACTIONS(4088), + [anon_sym_const] = ACTIONS(4088), + [anon_sym_constexpr] = ACTIONS(4088), + [anon_sym_volatile] = ACTIONS(4088), + [anon_sym_restrict] = ACTIONS(4088), + [anon_sym___restrict__] = ACTIONS(4088), + [anon_sym__Atomic] = ACTIONS(4088), + [anon_sym__Noreturn] = ACTIONS(4088), + [anon_sym_noreturn] = ACTIONS(4088), + [anon_sym__Nonnull] = ACTIONS(4088), + [anon_sym_mutable] = ACTIONS(4088), + [anon_sym_constinit] = ACTIONS(4088), + [anon_sym_consteval] = ACTIONS(4088), + [anon_sym_alignas] = ACTIONS(4088), + [anon_sym__Alignas] = ACTIONS(4088), + [sym_primitive_type] = ACTIONS(4088), + [anon_sym_enum] = ACTIONS(4088), + [anon_sym_class] = ACTIONS(4088), + [anon_sym_struct] = ACTIONS(4088), + [anon_sym_union] = ACTIONS(4088), + [anon_sym_if] = ACTIONS(4088), + [anon_sym_switch] = ACTIONS(4088), + [anon_sym_case] = ACTIONS(4088), + [anon_sym_default] = ACTIONS(4088), + [anon_sym_while] = ACTIONS(4088), + [anon_sym_do] = ACTIONS(4088), + [anon_sym_for] = ACTIONS(4088), + [anon_sym_return] = ACTIONS(4088), + [anon_sym_break] = ACTIONS(4088), + [anon_sym_continue] = ACTIONS(4088), + [anon_sym_goto] = ACTIONS(4088), + [anon_sym_not] = ACTIONS(4088), + [anon_sym_compl] = ACTIONS(4088), + [anon_sym_DASH_DASH] = ACTIONS(4090), + [anon_sym_PLUS_PLUS] = ACTIONS(4090), + [anon_sym_sizeof] = ACTIONS(4088), + [anon_sym___alignof__] = ACTIONS(4088), + [anon_sym___alignof] = ACTIONS(4088), + [anon_sym__alignof] = ACTIONS(4088), + [anon_sym_alignof] = ACTIONS(4088), + [anon_sym__Alignof] = ACTIONS(4088), + [anon_sym_offsetof] = ACTIONS(4088), + [anon_sym__Generic] = ACTIONS(4088), + [anon_sym_typename] = ACTIONS(4088), + [anon_sym_asm] = ACTIONS(4088), + [anon_sym___asm__] = ACTIONS(4088), + [anon_sym___asm] = ACTIONS(4088), + [sym_number_literal] = ACTIONS(4090), + [anon_sym_L_SQUOTE] = ACTIONS(4090), + [anon_sym_u_SQUOTE] = ACTIONS(4090), + [anon_sym_U_SQUOTE] = ACTIONS(4090), + [anon_sym_u8_SQUOTE] = ACTIONS(4090), + [anon_sym_SQUOTE] = ACTIONS(4090), + [anon_sym_L_DQUOTE] = ACTIONS(4090), + [anon_sym_u_DQUOTE] = ACTIONS(4090), + [anon_sym_U_DQUOTE] = ACTIONS(4090), + [anon_sym_u8_DQUOTE] = ACTIONS(4090), + [anon_sym_DQUOTE] = ACTIONS(4090), + [sym_true] = ACTIONS(4088), + [sym_false] = ACTIONS(4088), + [anon_sym_NULL] = ACTIONS(4088), + [anon_sym_nullptr] = ACTIONS(4088), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4088), + [anon_sym_decltype] = ACTIONS(4088), + [anon_sym_explicit] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4088), + [anon_sym_module] = ACTIONS(4088), + [anon_sym_import] = ACTIONS(4088), + [anon_sym_template] = ACTIONS(4088), + [anon_sym_operator] = ACTIONS(4088), + [anon_sym_try] = ACTIONS(4088), + [anon_sym_delete] = ACTIONS(4088), + [anon_sym_throw] = ACTIONS(4088), + [anon_sym_namespace] = ACTIONS(4088), + [anon_sym_static_assert] = ACTIONS(4088), + [anon_sym_concept] = ACTIONS(4088), + [anon_sym_co_return] = ACTIONS(4088), + [anon_sym_co_yield] = ACTIONS(4088), + [anon_sym_R_DQUOTE] = ACTIONS(4090), + [anon_sym_LR_DQUOTE] = ACTIONS(4090), + [anon_sym_uR_DQUOTE] = ACTIONS(4090), + [anon_sym_UR_DQUOTE] = ACTIONS(4090), + [anon_sym_u8R_DQUOTE] = ACTIONS(4090), + [anon_sym_co_await] = ACTIONS(4088), + [anon_sym_new] = ACTIONS(4088), + [anon_sym_requires] = ACTIONS(4088), + [anon_sym_CARET_CARET] = ACTIONS(4090), + [anon_sym_LBRACK_COLON] = ACTIONS(4090), + [sym_this] = ACTIONS(4088), + }, + [STATE(1014)] = { + [ts_builtin_sym_end] = ACTIONS(4520), + [sym_identifier] = ACTIONS(4518), + [aux_sym_preproc_include_token1] = ACTIONS(4518), + [aux_sym_preproc_def_token1] = ACTIONS(4518), + [aux_sym_preproc_if_token1] = ACTIONS(4518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4518), + [sym_preproc_directive] = ACTIONS(4518), + [anon_sym_LPAREN2] = ACTIONS(4520), + [anon_sym_BANG] = ACTIONS(4520), + [anon_sym_TILDE] = ACTIONS(4520), + [anon_sym_DASH] = ACTIONS(4518), + [anon_sym_PLUS] = ACTIONS(4518), + [anon_sym_STAR] = ACTIONS(4520), + [anon_sym_AMP_AMP] = ACTIONS(4520), + [anon_sym_AMP] = ACTIONS(4518), + [anon_sym_SEMI] = ACTIONS(4520), + [anon_sym___extension__] = ACTIONS(4518), + [anon_sym_typedef] = ACTIONS(4518), + [anon_sym_virtual] = ACTIONS(4518), + [anon_sym_extern] = ACTIONS(4518), + [anon_sym___attribute__] = ACTIONS(4518), + [anon_sym___attribute] = ACTIONS(4518), + [anon_sym_using] = ACTIONS(4518), + [anon_sym_COLON_COLON] = ACTIONS(4520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4520), + [anon_sym___declspec] = ACTIONS(4518), + [anon_sym___based] = ACTIONS(4518), + [anon_sym___cdecl] = ACTIONS(4518), + [anon_sym___clrcall] = ACTIONS(4518), + [anon_sym___stdcall] = ACTIONS(4518), + [anon_sym___fastcall] = ACTIONS(4518), + [anon_sym___thiscall] = ACTIONS(4518), + [anon_sym___vectorcall] = ACTIONS(4518), + [anon_sym_LBRACE] = ACTIONS(4520), + [anon_sym_signed] = ACTIONS(4518), + [anon_sym_unsigned] = ACTIONS(4518), + [anon_sym_long] = ACTIONS(4518), + [anon_sym_short] = ACTIONS(4518), + [anon_sym_LBRACK] = ACTIONS(4518), + [anon_sym_static] = ACTIONS(4518), + [anon_sym_register] = ACTIONS(4518), + [anon_sym_inline] = ACTIONS(4518), + [anon_sym___inline] = ACTIONS(4518), + [anon_sym___inline__] = ACTIONS(4518), + [anon_sym___forceinline] = ACTIONS(4518), + [anon_sym_thread_local] = ACTIONS(4518), + [anon_sym___thread] = ACTIONS(4518), + [anon_sym_const] = ACTIONS(4518), + [anon_sym_constexpr] = ACTIONS(4518), + [anon_sym_volatile] = ACTIONS(4518), + [anon_sym_restrict] = ACTIONS(4518), + [anon_sym___restrict__] = ACTIONS(4518), + [anon_sym__Atomic] = ACTIONS(4518), + [anon_sym__Noreturn] = ACTIONS(4518), + [anon_sym_noreturn] = ACTIONS(4518), + [anon_sym__Nonnull] = ACTIONS(4518), + [anon_sym_mutable] = ACTIONS(4518), + [anon_sym_constinit] = ACTIONS(4518), + [anon_sym_consteval] = ACTIONS(4518), + [anon_sym_alignas] = ACTIONS(4518), + [anon_sym__Alignas] = ACTIONS(4518), + [sym_primitive_type] = ACTIONS(4518), + [anon_sym_enum] = ACTIONS(4518), + [anon_sym_class] = ACTIONS(4518), + [anon_sym_struct] = ACTIONS(4518), + [anon_sym_union] = ACTIONS(4518), + [anon_sym_if] = ACTIONS(4518), + [anon_sym_switch] = ACTIONS(4518), + [anon_sym_case] = ACTIONS(4518), + [anon_sym_default] = ACTIONS(4518), + [anon_sym_while] = ACTIONS(4518), + [anon_sym_do] = ACTIONS(4518), + [anon_sym_for] = ACTIONS(4518), + [anon_sym_return] = ACTIONS(4518), + [anon_sym_break] = ACTIONS(4518), + [anon_sym_continue] = ACTIONS(4518), + [anon_sym_goto] = ACTIONS(4518), + [anon_sym_not] = ACTIONS(4518), + [anon_sym_compl] = ACTIONS(4518), + [anon_sym_DASH_DASH] = ACTIONS(4520), + [anon_sym_PLUS_PLUS] = ACTIONS(4520), + [anon_sym_sizeof] = ACTIONS(4518), + [anon_sym___alignof__] = ACTIONS(4518), + [anon_sym___alignof] = ACTIONS(4518), + [anon_sym__alignof] = ACTIONS(4518), + [anon_sym_alignof] = ACTIONS(4518), + [anon_sym__Alignof] = ACTIONS(4518), + [anon_sym_offsetof] = ACTIONS(4518), + [anon_sym__Generic] = ACTIONS(4518), + [anon_sym_typename] = ACTIONS(4518), + [anon_sym_asm] = ACTIONS(4518), + [anon_sym___asm__] = ACTIONS(4518), + [anon_sym___asm] = ACTIONS(4518), + [sym_number_literal] = ACTIONS(4520), + [anon_sym_L_SQUOTE] = ACTIONS(4520), + [anon_sym_u_SQUOTE] = ACTIONS(4520), + [anon_sym_U_SQUOTE] = ACTIONS(4520), + [anon_sym_u8_SQUOTE] = ACTIONS(4520), + [anon_sym_SQUOTE] = ACTIONS(4520), + [anon_sym_L_DQUOTE] = ACTIONS(4520), + [anon_sym_u_DQUOTE] = ACTIONS(4520), + [anon_sym_U_DQUOTE] = ACTIONS(4520), + [anon_sym_u8_DQUOTE] = ACTIONS(4520), + [anon_sym_DQUOTE] = ACTIONS(4520), + [sym_true] = ACTIONS(4518), + [sym_false] = ACTIONS(4518), + [anon_sym_NULL] = ACTIONS(4518), + [anon_sym_nullptr] = ACTIONS(4518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4518), + [anon_sym_decltype] = ACTIONS(4518), + [anon_sym_explicit] = ACTIONS(4518), + [anon_sym_export] = ACTIONS(4518), + [anon_sym_module] = ACTIONS(4518), + [anon_sym_import] = ACTIONS(4518), + [anon_sym_template] = ACTIONS(4518), + [anon_sym_operator] = ACTIONS(4518), + [anon_sym_try] = ACTIONS(4518), + [anon_sym_delete] = ACTIONS(4518), + [anon_sym_throw] = ACTIONS(4518), + [anon_sym_namespace] = ACTIONS(4518), + [anon_sym_static_assert] = ACTIONS(4518), + [anon_sym_concept] = ACTIONS(4518), + [anon_sym_co_return] = ACTIONS(4518), + [anon_sym_co_yield] = ACTIONS(4518), + [anon_sym_R_DQUOTE] = ACTIONS(4520), + [anon_sym_LR_DQUOTE] = ACTIONS(4520), + [anon_sym_uR_DQUOTE] = ACTIONS(4520), + [anon_sym_UR_DQUOTE] = ACTIONS(4520), + [anon_sym_u8R_DQUOTE] = ACTIONS(4520), + [anon_sym_co_await] = ACTIONS(4518), + [anon_sym_new] = ACTIONS(4518), + [anon_sym_requires] = ACTIONS(4518), + [anon_sym_CARET_CARET] = ACTIONS(4520), + [anon_sym_LBRACK_COLON] = ACTIONS(4520), + [sym_this] = ACTIONS(4518), + }, + [STATE(1015)] = { + [sym_preproc_def] = STATE(884), + [sym_preproc_function_def] = STATE(884), + [sym_preproc_call] = STATE(884), + [sym_preproc_if_in_field_declaration_list] = STATE(884), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(884), + [sym_type_definition] = STATE(884), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(8092), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4641), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__field_declaration_list_item] = STATE(884), + [sym_field_declaration] = STATE(884), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(884), + [sym_operator_cast] = STATE(9211), + [sym_inline_method_definition] = STATE(884), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(884), + [sym_operator_cast_declaration] = STATE(884), + [sym_constructor_or_destructor_definition] = STATE(884), + [sym_constructor_or_destructor_declaration] = STATE(884), + [sym_friend_declaration] = STATE(884), + [sym_access_specifier] = STATE(11030), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_using_declaration] = STATE(884), + [sym_alias_declaration] = STATE(884), + [sym_static_assert_declaration] = STATE(884), + [sym_consteval_block_declaration] = STATE(884), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7784), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), + [aux_sym__declaration_specifiers_repeat1] = STATE(2883), + [aux_sym_attributed_declarator_repeat1] = STATE(9455), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(3424), + [aux_sym_preproc_def_token1] = ACTIONS(4686), + [aux_sym_preproc_if_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), + [sym_preproc_directive] = ACTIONS(4692), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(4714), + [anon_sym___extension__] = ACTIONS(4696), + [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4700), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4888), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4704), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(4708), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(4712), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(1016)] = { + [sym_expression] = STATE(6752), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_initializer_list] = STATE(7209), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2386), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2386), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_PERCENT] = ACTIONS(2386), + [anon_sym_PIPE_PIPE] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_CARET] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_EQ_EQ] = ACTIONS(2386), + [anon_sym_BANG_EQ] = ACTIONS(2386), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_GT_EQ] = ACTIONS(2386), + [anon_sym_LT_EQ] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2386), + [anon_sym_GT_GT] = ACTIONS(2386), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_RBRACK] = ACTIONS(2386), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_QMARK] = ACTIONS(2386), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_LT_EQ_GT] = ACTIONS(2386), + [anon_sym_or] = ACTIONS(2384), + [anon_sym_and] = ACTIONS(2384), + [anon_sym_bitor] = ACTIONS(2384), + [anon_sym_xor] = ACTIONS(2384), + [anon_sym_bitand] = ACTIONS(2384), + [anon_sym_not_eq] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DOT_STAR] = ACTIONS(2386), + [anon_sym_DASH_GT] = ACTIONS(2386), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1017)] = { + [sym_expression] = STATE(6863), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_initializer_list] = STATE(5986), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2386), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(3694), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2386), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_PERCENT] = ACTIONS(2386), + [anon_sym_PIPE_PIPE] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_CARET] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_EQ_EQ] = ACTIONS(2386), + [anon_sym_BANG_EQ] = ACTIONS(2386), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_GT_EQ] = ACTIONS(2386), + [anon_sym_LT_EQ] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2386), + [anon_sym_GT_GT] = ACTIONS(2386), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON] = ACTIONS(2384), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_QMARK] = ACTIONS(2386), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_LT_EQ_GT] = ACTIONS(2386), + [anon_sym_or] = ACTIONS(2384), + [anon_sym_and] = ACTIONS(2384), + [anon_sym_bitor] = ACTIONS(2384), + [anon_sym_xor] = ACTIONS(2384), + [anon_sym_bitand] = ACTIONS(2384), + [anon_sym_not_eq] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -203213,11 +204327,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DOT_STAR] = ACTIONS(2386), + [anon_sym_DASH_GT] = ACTIONS(2386), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -203234,96 +204350,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1075)] = { - [sym_expression_statement] = STATE(4052), - [sym_expression] = STATE(6806), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10957), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_type_requirement] = STATE(1077), - [sym_compound_requirement] = STATE(1077), - [sym__requirement] = STATE(1077), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_requirement_seq_repeat1] = STATE(1077), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5376), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5378), - [anon_sym_RBRACE] = ACTIONS(5392), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1018)] = { + [sym_expression] = STATE(6826), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_initializer_list] = STATE(7360), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2386), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(3192), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2386), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_PERCENT] = ACTIONS(2386), + [anon_sym_PIPE_PIPE] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_CARET] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_EQ_EQ] = ACTIONS(2386), + [anon_sym_BANG_EQ] = ACTIONS(2386), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_GT_EQ] = ACTIONS(2384), + [anon_sym_LT_EQ] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2386), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(4910), + [anon_sym_LBRACK] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_QMARK] = ACTIONS(2386), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_LT_EQ_GT] = ACTIONS(2386), + [anon_sym_or] = ACTIONS(2384), + [anon_sym_and] = ACTIONS(2384), + [anon_sym_bitor] = ACTIONS(2384), + [anon_sym_xor] = ACTIONS(2384), + [anon_sym_bitand] = ACTIONS(2384), + [anon_sym_not_eq] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DOT_STAR] = ACTIONS(2386), + [anon_sym_DASH_GT] = ACTIONS(2386), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_GT2] = ACTIONS(2386), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(1019)] = { + [sym_expression] = STATE(5919), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_initializer_list] = STATE(5986), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2386), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(4222), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2386), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_PERCENT] = ACTIONS(2386), + [anon_sym_PIPE_PIPE] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_CARET] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_EQ_EQ] = ACTIONS(2386), + [anon_sym_BANG_EQ] = ACTIONS(2386), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_GT_EQ] = ACTIONS(2386), + [anon_sym_LT_EQ] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2386), + [anon_sym_GT_GT] = ACTIONS(2386), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2386), + [anon_sym_LBRACE] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_QMARK] = ACTIONS(2386), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_LT_EQ_GT] = ACTIONS(2386), + [anon_sym_or] = ACTIONS(2384), + [anon_sym_and] = ACTIONS(2384), + [anon_sym_bitor] = ACTIONS(2384), + [anon_sym_xor] = ACTIONS(2384), + [anon_sym_bitand] = ACTIONS(2384), + [anon_sym_not_eq] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_sizeof] = ACTIONS(4234), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -203331,10 +204603,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5382), + [anon_sym_typename] = ACTIONS(4926), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DOT_STAR] = ACTIONS(2386), + [anon_sym_DASH_GT] = ACTIONS(2386), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -203351,96 +204626,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1076)] = { - [sym_expression_statement] = STATE(4052), - [sym_expression] = STATE(6806), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10957), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_type_requirement] = STATE(1098), - [sym_compound_requirement] = STATE(1098), - [sym__requirement] = STATE(1098), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_requirement_seq_repeat1] = STATE(1098), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5376), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5378), - [anon_sym_RBRACE] = ACTIONS(5394), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1020)] = { + [sym_expression] = STATE(7014), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4928), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4304), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_SLASH] = ACTIONS(4930), + [anon_sym_PERCENT] = ACTIONS(4928), + [anon_sym_PIPE_PIPE] = ACTIONS(4928), + [anon_sym_AMP_AMP] = ACTIONS(4928), + [anon_sym_PIPE] = ACTIONS(4930), + [anon_sym_CARET] = ACTIONS(4930), + [anon_sym_AMP] = ACTIONS(4932), + [anon_sym_EQ_EQ] = ACTIONS(4928), + [anon_sym_BANG_EQ] = ACTIONS(4928), + [anon_sym_GT] = ACTIONS(4930), + [anon_sym_GT_EQ] = ACTIONS(4928), + [anon_sym_LT_EQ] = ACTIONS(4930), + [anon_sym_LT] = ACTIONS(4930), + [anon_sym_LT_LT] = ACTIONS(4928), + [anon_sym_GT_GT] = ACTIONS(4928), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(4928), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_QMARK] = ACTIONS(4928), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_LT_EQ_GT] = ACTIONS(4928), + [anon_sym_or] = ACTIONS(4930), + [anon_sym_and] = ACTIONS(4930), + [anon_sym_bitor] = ACTIONS(4930), + [anon_sym_xor] = ACTIONS(4930), + [anon_sym_bitand] = ACTIONS(4930), + [anon_sym_not_eq] = ACTIONS(4930), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [anon_sym_DOT] = ACTIONS(4930), + [anon_sym_DOT_STAR] = ACTIONS(4928), + [anon_sym_DASH_GT] = ACTIONS(4928), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1021)] = { + [sym_expression] = STATE(6845), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4934), + [anon_sym_LPAREN2] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4937), + [anon_sym_COLON_COLON] = ACTIONS(4940), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(4943), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -203448,7 +204871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5382), + [anon_sym_typename] = ACTIONS(4946), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -203468,91 +204891,1022 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(3145), + [anon_sym_delete] = ACTIONS(4238), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(3148), [sym_this] = ACTIONS(237), }, - [STATE(1077)] = { - [sym_expression_statement] = STATE(4052), - [sym_expression] = STATE(6806), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10957), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_type_requirement] = STATE(1101), - [sym_compound_requirement] = STATE(1101), - [sym__requirement] = STATE(1101), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_requirement_seq_repeat1] = STATE(1101), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1022)] = { + [sym_expression] = STATE(6918), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4949), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4955), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(4958), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4961), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(4964), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(4967), + [sym_this] = ACTIONS(3232), + }, + [STATE(1023)] = { + [sym_expression] = STATE(5393), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(4970), + [anon_sym_LPAREN2] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4973), + [anon_sym_COLON_COLON] = ACTIONS(4976), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(4979), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(4982), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(4985), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(4988), + [sym_this] = ACTIONS(2418), + }, + [STATE(1024)] = { + [sym_expression] = STATE(4996), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(4991), + [anon_sym_LPAREN2] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4994), + [anon_sym_COLON_COLON] = ACTIONS(4997), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(4979), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(4982), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(4985), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(4988), + [sym_this] = ACTIONS(2418), + }, + [STATE(1025)] = { + [sym_expression] = STATE(6327), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5000), + [anon_sym_LPAREN2] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(5003), + [anon_sym_COLON_COLON] = ACTIONS(5006), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3139), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(5009), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(3148), + [sym_this] = ACTIONS(237), + }, + [STATE(1026)] = { + [sym_expression] = STATE(5325), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(5012), + [anon_sym_LPAREN2] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(5015), + [anon_sym_COLON_COLON] = ACTIONS(5018), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(5021), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(5024), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(5027), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(5030), + [sym_this] = ACTIONS(2990), + }, + [STATE(1027)] = { + [sym_expression] = STATE(5474), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(4970), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(5033), + [anon_sym_COLON_COLON] = ACTIONS(5036), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(4979), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(4982), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(4985), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(4988), + [sym_this] = ACTIONS(2418), + }, + [STATE(1028)] = { + [sym_expression] = STATE(6775), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(5039), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(5045), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(5048), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(5051), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(5054), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(5057), + [sym_this] = ACTIONS(4342), + }, + [STATE(1029)] = { + [sym_expression] = STATE(6487), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(3106), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5376), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5378), - [anon_sym_RBRACE] = ACTIONS(5396), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(3123), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -203565,7 +205919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5382), + [anon_sym_typename] = ACTIONS(3139), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -203585,8 +205939,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(3145), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -203597,83 +205952,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(3148), [sym_this] = ACTIONS(237), }, - [STATE(1078)] = { - [sym_expression] = STATE(6787), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10342), - [sym_initializer_pair] = STATE(10342), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5398), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1030)] = { + [sym_expression] = STATE(6516), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(5060), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(5063), + [anon_sym_COLON_COLON] = ACTIONS(5066), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -203681,117 +206050,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(3139), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(3145), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(3148), [sym_this] = ACTIONS(237), }, - [STATE(1079)] = { - [sym_expression_statement] = STATE(4052), - [sym_expression] = STATE(6806), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10957), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_type_requirement] = STATE(1101), - [sym_compound_requirement] = STATE(1101), - [sym__requirement] = STATE(1101), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_requirement_seq_repeat1] = STATE(1101), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5376), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5378), - [anon_sym_RBRACE] = ACTIONS(5400), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1031)] = { + [sym_expression] = STATE(4658), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(4970), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(5069), + [anon_sym_COLON_COLON] = ACTIONS(5072), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(4979), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(4982), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(4985), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(4988), + [sym_this] = ACTIONS(2418), + }, + [STATE(1032)] = { + [sym_expression] = STATE(4491), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(4970), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(5075), + [anon_sym_COLON_COLON] = ACTIONS(5078), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(4979), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(4982), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(4985), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(4988), + [sym_this] = ACTIONS(2418), + }, + [STATE(1033)] = { + [sym_expression] = STATE(6884), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(5081), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(5084), + [anon_sym_COLON_COLON] = ACTIONS(5087), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -203799,7 +206443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5382), + [anon_sym_typename] = ACTIONS(3139), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -203819,2079 +206463,11412 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(3145), + [anon_sym_delete] = ACTIONS(3718), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(3148), [sym_this] = ACTIONS(237), }, - [STATE(1080)] = { - [sym_else_clause] = STATE(1124), - [sym_identifier] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_BANG] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3620), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym___attribute] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym__Nonnull] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym__Alignas] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_else] = ACTIONS(5402), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_goto] = ACTIONS(3618), - [anon_sym___try] = ACTIONS(3618), - [anon_sym___leave] = ACTIONS(3618), - [anon_sym_not] = ACTIONS(3618), - [anon_sym_compl] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_sizeof] = ACTIONS(3618), - [anon_sym___alignof__] = ACTIONS(3618), - [anon_sym___alignof] = ACTIONS(3618), - [anon_sym__alignof] = ACTIONS(3618), - [anon_sym_alignof] = ACTIONS(3618), - [anon_sym__Alignof] = ACTIONS(3618), - [anon_sym_offsetof] = ACTIONS(3618), - [anon_sym__Generic] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [anon_sym_asm] = ACTIONS(3618), - [anon_sym___asm__] = ACTIONS(3618), - [anon_sym___asm] = ACTIONS(3618), - [sym_number_literal] = ACTIONS(3620), - [anon_sym_L_SQUOTE] = ACTIONS(3620), - [anon_sym_u_SQUOTE] = ACTIONS(3620), - [anon_sym_U_SQUOTE] = ACTIONS(3620), - [anon_sym_u8_SQUOTE] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3620), - [anon_sym_L_DQUOTE] = ACTIONS(3620), - [anon_sym_u_DQUOTE] = ACTIONS(3620), - [anon_sym_U_DQUOTE] = ACTIONS(3620), - [anon_sym_u8_DQUOTE] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(3620), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [anon_sym_NULL] = ACTIONS(3618), - [anon_sym_nullptr] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_co_return] = ACTIONS(3618), - [anon_sym_co_yield] = ACTIONS(3618), - [anon_sym_R_DQUOTE] = ACTIONS(3620), - [anon_sym_LR_DQUOTE] = ACTIONS(3620), - [anon_sym_uR_DQUOTE] = ACTIONS(3620), - [anon_sym_UR_DQUOTE] = ACTIONS(3620), - [anon_sym_u8R_DQUOTE] = ACTIONS(3620), - [anon_sym_co_await] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_requires] = ACTIONS(3618), - [anon_sym_CARET_CARET] = ACTIONS(3620), - [anon_sym_LBRACK_COLON] = ACTIONS(3620), - [sym_this] = ACTIONS(3618), + [STATE(1034)] = { + [sym_expression] = STATE(5119), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(5090), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(5093), + [anon_sym_COLON_COLON] = ACTIONS(5096), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(5099), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(5102), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(5105), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(5108), + [sym_this] = ACTIONS(2276), + }, + [STATE(1035)] = { + [sym_expression] = STATE(5773), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(4362), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(4365), + [anon_sym_COLON_COLON] = ACTIONS(4368), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(4371), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(4374), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(4377), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(4380), + [sym_this] = ACTIONS(2364), + }, + [STATE(1036)] = { + [sym_expression] = STATE(5447), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(5111), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5114), + [anon_sym_COLON_COLON] = ACTIONS(5117), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(5120), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(5123), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(5126), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(5129), + [sym_this] = ACTIONS(3074), + }, + [STATE(1037)] = { + [sym__declaration_modifiers] = STATE(2831), + [sym__declaration_specifiers] = STATE(8797), + [sym_attribute_specifier] = STATE(2831), + [sym_attribute_declaration] = STATE(2831), + [sym_ms_declspec_modifier] = STATE(2831), + [sym_storage_class_specifier] = STATE(2831), + [sym_type_qualifier] = STATE(2831), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(6389), + [sym_sized_type_specifier] = STATE(6050), + [sym_enum_specifier] = STATE(6050), + [sym_struct_specifier] = STATE(6050), + [sym_union_specifier] = STATE(6050), + [sym_placeholder_type_specifier] = STATE(6050), + [sym_decltype_auto] = STATE(6031), + [sym_decltype] = STATE(5973), + [sym_class_specifier] = STATE(6050), + [sym_dependent_type] = STATE(6050), + [sym_template_type] = STATE(5365), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(5574), + [sym_splice_specifier] = STATE(4802), + [sym__splice_specialization_specifier] = STATE(5472), + [sym_splice_type_specifier] = STATE(5973), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2831), + [aux_sym_sized_type_specifier_repeat1] = STATE(4387), + [sym_identifier] = ACTIONS(5132), + [anon_sym_COMMA] = ACTIONS(5134), + [anon_sym_BANG] = ACTIONS(5136), + [anon_sym_TILDE] = ACTIONS(5134), + [anon_sym_DASH] = ACTIONS(5136), + [anon_sym_PLUS] = ACTIONS(5136), + [anon_sym_STAR] = ACTIONS(5136), + [anon_sym_SLASH] = ACTIONS(5136), + [anon_sym_PERCENT] = ACTIONS(5136), + [anon_sym_PIPE_PIPE] = ACTIONS(5134), + [anon_sym_AMP_AMP] = ACTIONS(5134), + [anon_sym_PIPE] = ACTIONS(5136), + [anon_sym_CARET] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5136), + [anon_sym_EQ_EQ] = ACTIONS(5134), + [anon_sym_BANG_EQ] = ACTIONS(5134), + [anon_sym_GT] = ACTIONS(5136), + [anon_sym_GT_EQ] = ACTIONS(5134), + [anon_sym_LT_EQ] = ACTIONS(5136), + [anon_sym_LT] = ACTIONS(5136), + [anon_sym_LT_LT] = ACTIONS(5136), + [anon_sym_GT_GT] = ACTIONS(5136), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(5138), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5140), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(5142), + [anon_sym_unsigned] = ACTIONS(5142), + [anon_sym_long] = ACTIONS(5142), + [anon_sym_short] = ACTIONS(5142), + [anon_sym_static] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(5136), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(5144), + [anon_sym_enum] = ACTIONS(5146), + [anon_sym_class] = ACTIONS(5148), + [anon_sym_struct] = ACTIONS(5150), + [anon_sym_union] = ACTIONS(5152), + [anon_sym_STAR_EQ] = ACTIONS(5134), + [anon_sym_SLASH_EQ] = ACTIONS(5134), + [anon_sym_PERCENT_EQ] = ACTIONS(5134), + [anon_sym_PLUS_EQ] = ACTIONS(5134), + [anon_sym_DASH_EQ] = ACTIONS(5134), + [anon_sym_LT_LT_EQ] = ACTIONS(5134), + [anon_sym_GT_GT_EQ] = ACTIONS(5134), + [anon_sym_AMP_EQ] = ACTIONS(5134), + [anon_sym_CARET_EQ] = ACTIONS(5134), + [anon_sym_PIPE_EQ] = ACTIONS(5134), + [anon_sym_and_eq] = ACTIONS(5136), + [anon_sym_or_eq] = ACTIONS(5136), + [anon_sym_xor_eq] = ACTIONS(5136), + [anon_sym_not] = ACTIONS(5136), + [anon_sym_compl] = ACTIONS(5136), + [anon_sym_LT_EQ_GT] = ACTIONS(5134), + [anon_sym_or] = ACTIONS(5136), + [anon_sym_and] = ACTIONS(5136), + [anon_sym_bitor] = ACTIONS(5136), + [anon_sym_xor] = ACTIONS(5136), + [anon_sym_bitand] = ACTIONS(5136), + [anon_sym_not_eq] = ACTIONS(5136), + [anon_sym_DASH_DASH] = ACTIONS(5134), + [anon_sym_PLUS_PLUS] = ACTIONS(5134), + [anon_sym_typename] = ACTIONS(5154), + [anon_sym_DASH_GT] = ACTIONS(5136), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5156), + [anon_sym_decltype] = ACTIONS(5158), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_delete] = ACTIONS(5162), + [anon_sym_co_await] = ACTIONS(5136), + [anon_sym_new] = ACTIONS(5162), + [anon_sym_DASH_GT_STAR] = ACTIONS(5134), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), + [anon_sym_LPAREN_RPAREN] = ACTIONS(5134), + [anon_sym_LBRACK_RBRACK] = ACTIONS(5134), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(5166), + }, + [STATE(1038)] = { + [sym__declaration_modifiers] = STATE(2831), + [sym__declaration_specifiers] = STATE(8797), + [sym_attribute_specifier] = STATE(2831), + [sym_attribute_declaration] = STATE(2831), + [sym_ms_declspec_modifier] = STATE(2831), + [sym_storage_class_specifier] = STATE(2831), + [sym_type_qualifier] = STATE(2831), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(6389), + [sym_sized_type_specifier] = STATE(6050), + [sym_enum_specifier] = STATE(6050), + [sym_struct_specifier] = STATE(6050), + [sym_union_specifier] = STATE(6050), + [sym_placeholder_type_specifier] = STATE(6050), + [sym_decltype_auto] = STATE(6031), + [sym_decltype] = STATE(5973), + [sym_class_specifier] = STATE(6050), + [sym_dependent_type] = STATE(6050), + [sym_template_type] = STATE(5365), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(5574), + [sym_splice_specifier] = STATE(4802), + [sym__splice_specialization_specifier] = STATE(5472), + [sym_splice_type_specifier] = STATE(5973), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2831), + [aux_sym_sized_type_specifier_repeat1] = STATE(4387), + [sym_identifier] = ACTIONS(5132), + [anon_sym_COMMA] = ACTIONS(5168), + [anon_sym_BANG] = ACTIONS(5170), + [anon_sym_TILDE] = ACTIONS(5168), + [anon_sym_DASH] = ACTIONS(5170), + [anon_sym_PLUS] = ACTIONS(5170), + [anon_sym_STAR] = ACTIONS(5170), + [anon_sym_SLASH] = ACTIONS(5170), + [anon_sym_PERCENT] = ACTIONS(5170), + [anon_sym_PIPE_PIPE] = ACTIONS(5168), + [anon_sym_AMP_AMP] = ACTIONS(5168), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_CARET] = ACTIONS(5170), + [anon_sym_AMP] = ACTIONS(5170), + [anon_sym_EQ_EQ] = ACTIONS(5168), + [anon_sym_BANG_EQ] = ACTIONS(5168), + [anon_sym_GT] = ACTIONS(5170), + [anon_sym_GT_EQ] = ACTIONS(5168), + [anon_sym_LT_EQ] = ACTIONS(5170), + [anon_sym_LT] = ACTIONS(5170), + [anon_sym_LT_LT] = ACTIONS(5170), + [anon_sym_GT_GT] = ACTIONS(5170), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(5138), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5140), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(5142), + [anon_sym_unsigned] = ACTIONS(5142), + [anon_sym_long] = ACTIONS(5142), + [anon_sym_short] = ACTIONS(5142), + [anon_sym_static] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(5170), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(5144), + [anon_sym_enum] = ACTIONS(5146), + [anon_sym_class] = ACTIONS(5148), + [anon_sym_struct] = ACTIONS(5150), + [anon_sym_union] = ACTIONS(5152), + [anon_sym_STAR_EQ] = ACTIONS(5168), + [anon_sym_SLASH_EQ] = ACTIONS(5168), + [anon_sym_PERCENT_EQ] = ACTIONS(5168), + [anon_sym_PLUS_EQ] = ACTIONS(5168), + [anon_sym_DASH_EQ] = ACTIONS(5168), + [anon_sym_LT_LT_EQ] = ACTIONS(5168), + [anon_sym_GT_GT_EQ] = ACTIONS(5168), + [anon_sym_AMP_EQ] = ACTIONS(5168), + [anon_sym_CARET_EQ] = ACTIONS(5168), + [anon_sym_PIPE_EQ] = ACTIONS(5168), + [anon_sym_and_eq] = ACTIONS(5170), + [anon_sym_or_eq] = ACTIONS(5170), + [anon_sym_xor_eq] = ACTIONS(5170), + [anon_sym_not] = ACTIONS(5170), + [anon_sym_compl] = ACTIONS(5170), + [anon_sym_LT_EQ_GT] = ACTIONS(5168), + [anon_sym_or] = ACTIONS(5170), + [anon_sym_and] = ACTIONS(5170), + [anon_sym_bitor] = ACTIONS(5170), + [anon_sym_xor] = ACTIONS(5170), + [anon_sym_bitand] = ACTIONS(5170), + [anon_sym_not_eq] = ACTIONS(5170), + [anon_sym_DASH_DASH] = ACTIONS(5168), + [anon_sym_PLUS_PLUS] = ACTIONS(5168), + [anon_sym_typename] = ACTIONS(5154), + [anon_sym_DASH_GT] = ACTIONS(5170), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5156), + [anon_sym_decltype] = ACTIONS(5158), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_delete] = ACTIONS(5172), + [anon_sym_co_await] = ACTIONS(5170), + [anon_sym_new] = ACTIONS(5172), + [anon_sym_DASH_GT_STAR] = ACTIONS(5168), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), + [anon_sym_LPAREN_RPAREN] = ACTIONS(5168), + [anon_sym_LBRACK_RBRACK] = ACTIONS(5168), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(5174), + }, + [STATE(1039)] = { + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7075), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5176), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5182), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1040)] = { + [sym_type_qualifier] = STATE(1041), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7010), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1041), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5188), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5190), + [anon_sym_RBRACK] = ACTIONS(5192), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1041)] = { + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7011), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5194), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5196), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1042)] = { + [sym_type_qualifier] = STATE(1089), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7037), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1089), + [sym_identifier] = ACTIONS(5198), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5200), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5202), + [anon_sym_RBRACK] = ACTIONS(5204), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1043)] = { + [sym_type_qualifier] = STATE(1044), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7023), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1044), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5208), + [anon_sym_RBRACK] = ACTIONS(5210), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1044)] = { + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7027), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5212), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5214), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1045)] = { + [sym_type_qualifier] = STATE(1046), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7029), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1046), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5216), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5218), + [anon_sym_RBRACK] = ACTIONS(5220), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1046)] = { + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7030), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5222), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5224), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1047)] = { + [sym_type_qualifier] = STATE(1057), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7132), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1057), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5226), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5228), + [anon_sym_RBRACK] = ACTIONS(5230), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1048)] = { + [sym_type_qualifier] = STATE(1085), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7105), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5232), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5234), + [anon_sym_RBRACK] = ACTIONS(5236), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1049)] = { + [sym_type_qualifier] = STATE(1050), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7041), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1050), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5238), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5240), + [anon_sym_RBRACK] = ACTIONS(5242), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1050)] = { + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7043), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5244), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5246), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1051)] = { + [sym_type_qualifier] = STATE(1052), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7044), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1052), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5248), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5250), + [anon_sym_RBRACK] = ACTIONS(5252), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1052)] = { + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7046), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5254), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5256), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1053)] = { + [sym_type_qualifier] = STATE(1076), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7157), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1076), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5258), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5260), + [anon_sym_RBRACK] = ACTIONS(5262), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1054)] = { + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(6943), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5264), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5266), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1055)] = { + [sym_type_qualifier] = STATE(1077), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(6963), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5268), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5270), + [anon_sym_RBRACK] = ACTIONS(5272), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1056)] = { + [sym_type_qualifier] = STATE(1078), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(6968), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1078), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5274), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5276), + [anon_sym_RBRACK] = ACTIONS(5278), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1057)] = { + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7151), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5280), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5282), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1058)] = { + [sym_type_qualifier] = STATE(1060), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7152), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1060), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5284), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5286), + [anon_sym_RBRACK] = ACTIONS(5288), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1059)] = { + [sym_type_qualifier] = STATE(1061), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7153), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1061), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5290), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5292), + [anon_sym_RBRACK] = ACTIONS(5294), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1060)] = { + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7154), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5296), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5298), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1061)] = { + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7155), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5302), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1062)] = { + [sym_type_qualifier] = STATE(1065), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7036), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1065), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5304), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5306), + [anon_sym_RBRACK] = ACTIONS(5308), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1063)] = { + [sym_type_qualifier] = STATE(1089), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7037), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1089), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5200), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5202), + [anon_sym_RBRACK] = ACTIONS(5204), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1064)] = { + [sym_type_qualifier] = STATE(1039), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7183), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1039), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5310), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5312), + [anon_sym_RBRACK] = ACTIONS(5314), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1065)] = { + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7051), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5316), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5318), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1066)] = { + [sym_type_qualifier] = STATE(1084), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7053), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1084), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5320), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5322), + [anon_sym_RBRACK] = ACTIONS(5324), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1067)] = { + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(6988), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5326), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5328), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1068)] = { + [sym_type_qualifier] = STATE(1079), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7102), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1079), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5330), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5332), + [anon_sym_RBRACK] = ACTIONS(5334), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1069)] = { + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7009), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5336), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5338), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1070)] = { + [sym_type_qualifier] = STATE(1072), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(6928), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1072), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5340), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5342), + [anon_sym_RBRACK] = ACTIONS(5344), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1071)] = { + [sym_type_qualifier] = STATE(1073), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(6929), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1073), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5346), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5348), + [anon_sym_RBRACK] = ACTIONS(5350), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1072)] = { + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(6930), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5352), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5354), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1073)] = { + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(6931), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5356), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5358), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1074)] = { + [sym_type_qualifier] = STATE(1086), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7058), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5360), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5362), + [anon_sym_RBRACK] = ACTIONS(5364), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1075)] = { + [sym_type_qualifier] = STATE(1090), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7099), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5366), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5368), + [anon_sym_RBRACK] = ACTIONS(5370), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1076)] = { + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7170), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5372), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5374), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1077)] = { + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(6987), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5376), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5378), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1078)] = { + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(6989), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5380), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5382), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1079)] = { + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(6933), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5384), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5386), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1080)] = { + [sym_type_qualifier] = STATE(1081), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(6950), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1081), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5388), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5390), + [anon_sym_RBRACK] = ACTIONS(5392), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), }, [STATE(1081)] = { - [sym_expression] = STATE(6787), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10342), - [sym_initializer_pair] = STATE(10342), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5404), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(6956), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5394), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5396), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), }, [STATE(1082)] = { - [sym_string_literal] = STATE(4004), - [sym_decltype_auto] = STATE(4767), - [sym_template_argument_list] = STATE(2061), - [sym_raw_string_literal] = STATE(4004), - [aux_sym_sized_type_specifier_repeat1] = STATE(4121), - [sym_identifier] = ACTIONS(5251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5284), - [anon_sym_TILDE] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(5265), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5406), - [anon_sym___extension__] = ACTIONS(5251), - [anon_sym_virtual] = ACTIONS(5251), - [anon_sym_extern] = ACTIONS(5251), - [anon_sym___attribute__] = ACTIONS(5251), - [anon_sym___attribute] = ACTIONS(5251), - [anon_sym_COLON] = ACTIONS(5322), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5290), - [anon_sym___declspec] = ACTIONS(5251), - [anon_sym___based] = ACTIONS(5251), - [anon_sym___cdecl] = ACTIONS(5251), - [anon_sym___clrcall] = ACTIONS(5251), - [anon_sym___stdcall] = ACTIONS(5251), - [anon_sym___fastcall] = ACTIONS(5251), - [anon_sym___thiscall] = ACTIONS(5251), - [anon_sym___vectorcall] = ACTIONS(5251), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(5274), - [anon_sym_unsigned] = ACTIONS(5274), - [anon_sym_long] = ACTIONS(5274), - [anon_sym_short] = ACTIONS(5274), - [anon_sym_LBRACK] = ACTIONS(5293), - [anon_sym_static] = ACTIONS(5251), - [anon_sym_EQ] = ACTIONS(5276), - [anon_sym_register] = ACTIONS(5251), - [anon_sym_inline] = ACTIONS(5251), - [anon_sym___inline] = ACTIONS(5251), - [anon_sym___inline__] = ACTIONS(5251), - [anon_sym___forceinline] = ACTIONS(5251), - [anon_sym_thread_local] = ACTIONS(5251), - [anon_sym___thread] = ACTIONS(5251), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5251), - [anon_sym_volatile] = ACTIONS(5251), - [anon_sym_restrict] = ACTIONS(5251), - [anon_sym___restrict__] = ACTIONS(5251), - [anon_sym__Atomic] = ACTIONS(5251), - [anon_sym__Noreturn] = ACTIONS(5251), - [anon_sym_noreturn] = ACTIONS(5251), - [anon_sym__Nonnull] = ACTIONS(5251), - [anon_sym_mutable] = ACTIONS(5251), - [anon_sym_constinit] = ACTIONS(5251), - [anon_sym_consteval] = ACTIONS(5251), - [anon_sym_alignas] = ACTIONS(5251), - [anon_sym__Alignas] = ACTIONS(5251), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5276), - [anon_sym_or_eq] = ACTIONS(5276), - [anon_sym_xor_eq] = ACTIONS(5276), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5260), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5260), - [anon_sym_not_eq] = ACTIONS(5260), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5280), - [anon_sym_decltype] = ACTIONS(5282), - [anon_sym_template] = ACTIONS(5251), - [anon_sym_operator] = ACTIONS(5251), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_LBRACK_COLON] = ACTIONS(5258), + [sym_type_qualifier] = STATE(1083), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(6957), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1083), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5398), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5400), + [anon_sym_RBRACK] = ACTIONS(5402), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), }, [STATE(1083)] = { - [sym_expression_statement] = STATE(4052), - [sym_expression] = STATE(6806), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10957), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_type_requirement] = STATE(1086), - [sym_compound_requirement] = STATE(1086), - [sym__requirement] = STATE(1086), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_requirement_seq_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5376), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5378), - [anon_sym_RBRACE] = ACTIONS(5408), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5382), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(6958), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5404), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5406), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), }, [STATE(1084)] = { - [sym_expression_statement] = STATE(4052), - [sym_expression] = STATE(6806), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10957), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_type_requirement] = STATE(1092), - [sym_compound_requirement] = STATE(1092), - [sym__requirement] = STATE(1092), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_requirement_seq_repeat1] = STATE(1092), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5376), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5378), - [anon_sym_RBRACE] = ACTIONS(5410), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5382), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7065), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5408), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5410), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), }, [STATE(1085)] = { - [sym_expression_statement] = STATE(4052), - [sym_expression] = STATE(6806), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10957), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_type_requirement] = STATE(1106), - [sym_compound_requirement] = STATE(1106), - [sym__requirement] = STATE(1106), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_requirement_seq_repeat1] = STATE(1106), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5376), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5378), - [anon_sym_RBRACE] = ACTIONS(5412), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5382), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7093), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5412), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5414), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), }, [STATE(1086)] = { - [sym_expression_statement] = STATE(4052), - [sym_expression] = STATE(6806), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10957), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_type_requirement] = STATE(1101), - [sym_compound_requirement] = STATE(1101), - [sym__requirement] = STATE(1101), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_requirement_seq_repeat1] = STATE(1101), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5376), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5378), - [anon_sym_RBRACE] = ACTIONS(5414), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5382), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7067), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5416), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5418), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), }, [STATE(1087)] = { - [sym_expression] = STATE(6787), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10342), - [sym_initializer_pair] = STATE(10342), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5416), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_type_qualifier] = STATE(1054), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7173), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1054), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5420), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5422), + [anon_sym_RBRACK] = ACTIONS(5424), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), }, [STATE(1088)] = { - [sym_expression] = STATE(6787), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10342), - [sym_initializer_pair] = STATE(10342), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5418), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_type_qualifier] = STATE(1091), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(6975), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5426), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5428), + [anon_sym_RBRACK] = ACTIONS(5430), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), }, [STATE(1089)] = { - [sym_identifier] = ACTIONS(5233), - [anon_sym_LPAREN2] = ACTIONS(5235), - [anon_sym_BANG] = ACTIONS(5235), - [anon_sym_TILDE] = ACTIONS(5235), - [anon_sym_DASH] = ACTIONS(5233), - [anon_sym_PLUS] = ACTIONS(5233), - [anon_sym_STAR] = ACTIONS(5235), - [anon_sym_AMP] = ACTIONS(5235), - [anon_sym_SEMI] = ACTIONS(5235), - [anon_sym___extension__] = ACTIONS(5233), - [anon_sym_virtual] = ACTIONS(5233), - [anon_sym_extern] = ACTIONS(5233), - [anon_sym___attribute__] = ACTIONS(5233), - [anon_sym___attribute] = ACTIONS(5233), - [anon_sym_using] = ACTIONS(5233), - [anon_sym_COLON_COLON] = ACTIONS(5235), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5235), - [anon_sym___declspec] = ACTIONS(5233), - [anon_sym_LBRACE] = ACTIONS(5235), - [anon_sym_signed] = ACTIONS(5233), - [anon_sym_unsigned] = ACTIONS(5233), - [anon_sym_long] = ACTIONS(5233), - [anon_sym_short] = ACTIONS(5233), - [anon_sym_LBRACK] = ACTIONS(5233), - [anon_sym_static] = ACTIONS(5233), - [anon_sym_register] = ACTIONS(5233), - [anon_sym_inline] = ACTIONS(5233), - [anon_sym___inline] = ACTIONS(5233), - [anon_sym___inline__] = ACTIONS(5233), - [anon_sym___forceinline] = ACTIONS(5233), - [anon_sym_thread_local] = ACTIONS(5233), - [anon_sym___thread] = ACTIONS(5233), - [anon_sym_const] = ACTIONS(5233), - [anon_sym_constexpr] = ACTIONS(5233), - [anon_sym_volatile] = ACTIONS(5233), - [anon_sym_restrict] = ACTIONS(5233), - [anon_sym___restrict__] = ACTIONS(5233), - [anon_sym__Atomic] = ACTIONS(5233), - [anon_sym__Noreturn] = ACTIONS(5233), - [anon_sym_noreturn] = ACTIONS(5233), - [anon_sym__Nonnull] = ACTIONS(5233), - [anon_sym_mutable] = ACTIONS(5233), - [anon_sym_constinit] = ACTIONS(5233), - [anon_sym_consteval] = ACTIONS(5233), - [anon_sym_alignas] = ACTIONS(5233), - [anon_sym__Alignas] = ACTIONS(5233), - [sym_primitive_type] = ACTIONS(5233), - [anon_sym_enum] = ACTIONS(5233), - [anon_sym_class] = ACTIONS(5233), - [anon_sym_struct] = ACTIONS(5233), - [anon_sym_union] = ACTIONS(5233), - [anon_sym_if] = ACTIONS(5233), - [anon_sym_switch] = ACTIONS(5233), - [anon_sym_case] = ACTIONS(5233), - [anon_sym_default] = ACTIONS(5233), - [anon_sym_while] = ACTIONS(5233), - [anon_sym_do] = ACTIONS(5233), - [anon_sym_for] = ACTIONS(5233), - [anon_sym_return] = ACTIONS(5233), - [anon_sym_break] = ACTIONS(5233), - [anon_sym_continue] = ACTIONS(5233), - [anon_sym_goto] = ACTIONS(5233), - [anon_sym___try] = ACTIONS(5233), - [anon_sym___leave] = ACTIONS(5233), - [anon_sym_not] = ACTIONS(5233), - [anon_sym_compl] = ACTIONS(5233), - [anon_sym_DASH_DASH] = ACTIONS(5235), - [anon_sym_PLUS_PLUS] = ACTIONS(5235), - [anon_sym_sizeof] = ACTIONS(5233), - [anon_sym___alignof__] = ACTIONS(5233), - [anon_sym___alignof] = ACTIONS(5233), - [anon_sym__alignof] = ACTIONS(5233), - [anon_sym_alignof] = ACTIONS(5233), - [anon_sym__Alignof] = ACTIONS(5233), - [anon_sym_offsetof] = ACTIONS(5233), - [anon_sym__Generic] = ACTIONS(5233), - [anon_sym_typename] = ACTIONS(5233), - [anon_sym_asm] = ACTIONS(5233), - [anon_sym___asm__] = ACTIONS(5233), - [anon_sym___asm] = ACTIONS(5233), - [sym_number_literal] = ACTIONS(5235), - [anon_sym_L_SQUOTE] = ACTIONS(5235), - [anon_sym_u_SQUOTE] = ACTIONS(5235), - [anon_sym_U_SQUOTE] = ACTIONS(5235), - [anon_sym_u8_SQUOTE] = ACTIONS(5235), - [anon_sym_SQUOTE] = ACTIONS(5235), - [anon_sym_L_DQUOTE] = ACTIONS(5235), - [anon_sym_u_DQUOTE] = ACTIONS(5235), - [anon_sym_U_DQUOTE] = ACTIONS(5235), - [anon_sym_u8_DQUOTE] = ACTIONS(5235), - [anon_sym_DQUOTE] = ACTIONS(5235), - [sym_true] = ACTIONS(5233), - [sym_false] = ACTIONS(5233), - [anon_sym_NULL] = ACTIONS(5233), - [anon_sym_nullptr] = ACTIONS(5233), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5233), - [anon_sym_decltype] = ACTIONS(5233), - [anon_sym_template] = ACTIONS(5233), - [anon_sym_try] = ACTIONS(5233), - [anon_sym_delete] = ACTIONS(5233), - [anon_sym_throw] = ACTIONS(5233), - [anon_sym_co_return] = ACTIONS(5233), - [anon_sym_co_yield] = ACTIONS(5233), - [anon_sym_R_DQUOTE] = ACTIONS(5235), - [anon_sym_LR_DQUOTE] = ACTIONS(5235), - [anon_sym_uR_DQUOTE] = ACTIONS(5235), - [anon_sym_UR_DQUOTE] = ACTIONS(5235), - [anon_sym_u8R_DQUOTE] = ACTIONS(5235), - [anon_sym_co_await] = ACTIONS(5233), - [anon_sym_new] = ACTIONS(5233), - [anon_sym_requires] = ACTIONS(5233), - [anon_sym_CARET_CARET] = ACTIONS(5235), - [anon_sym_LBRACK_COLON] = ACTIONS(5235), - [sym_this] = ACTIONS(5233), + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7101), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5432), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5434), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), }, [STATE(1090)] = { - [sym_expression_statement] = STATE(4052), - [sym_expression] = STATE(6806), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10957), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_type_requirement] = STATE(1101), - [sym_compound_requirement] = STATE(1101), - [sym__requirement] = STATE(1101), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_requirement_seq_repeat1] = STATE(1101), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5376), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5378), - [anon_sym_RBRACE] = ACTIONS(5420), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5382), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7056), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5436), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5438), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), }, [STATE(1091)] = { - [sym_expression_statement] = STATE(4052), - [sym_expression] = STATE(6806), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10957), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_type_requirement] = STATE(1093), - [sym_compound_requirement] = STATE(1093), - [sym__requirement] = STATE(1093), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_requirement_seq_repeat1] = STATE(1093), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5376), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5378), - [anon_sym_RBRACE] = ACTIONS(5422), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5382), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(6984), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5440), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5180), + [anon_sym_RBRACK] = ACTIONS(5442), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), }, [STATE(1092)] = { - [sym_expression_statement] = STATE(4052), - [sym_expression] = STATE(6806), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10957), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_type_requirement] = STATE(1101), - [sym_compound_requirement] = STATE(1101), - [sym__requirement] = STATE(1101), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_requirement_seq_repeat1] = STATE(1101), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5376), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5378), - [anon_sym_RBRACE] = ACTIONS(5424), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5382), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_type_qualifier] = STATE(1067), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(6985), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1067), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5444), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5446), + [anon_sym_RBRACK] = ACTIONS(5448), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), }, [STATE(1093)] = { - [sym_expression_statement] = STATE(4052), - [sym_expression] = STATE(6806), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10957), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_type_requirement] = STATE(1101), - [sym_compound_requirement] = STATE(1101), - [sym__requirement] = STATE(1101), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_requirement_seq_repeat1] = STATE(1101), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5376), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5378), - [anon_sym_RBRACE] = ACTIONS(5426), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5382), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_type_qualifier] = STATE(1069), + [sym_alignas_qualifier] = STATE(2724), + [sym_expression] = STATE(7004), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [aux_sym_array_declarator_repeat1] = STATE(1069), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5450), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5452), + [anon_sym_RBRACK] = ACTIONS(5454), + [anon_sym_const] = ACTIONS(5184), + [anon_sym_constexpr] = ACTIONS(5184), + [anon_sym_volatile] = ACTIONS(5184), + [anon_sym_restrict] = ACTIONS(5184), + [anon_sym___restrict__] = ACTIONS(5184), + [anon_sym__Atomic] = ACTIONS(5184), + [anon_sym__Noreturn] = ACTIONS(5184), + [anon_sym_noreturn] = ACTIONS(5184), + [anon_sym__Nonnull] = ACTIONS(5184), + [anon_sym_mutable] = ACTIONS(5184), + [anon_sym_constinit] = ACTIONS(5184), + [anon_sym_consteval] = ACTIONS(5184), + [anon_sym_alignas] = ACTIONS(5186), + [anon_sym__Alignas] = ACTIONS(5186), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), }, [STATE(1094)] = { - [sym_expression_statement] = STATE(4052), - [sym_expression] = STATE(6806), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10957), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_type_requirement] = STATE(1095), - [sym_compound_requirement] = STATE(1095), - [sym__requirement] = STATE(1095), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_requirement_seq_repeat1] = STATE(1095), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5376), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5378), - [anon_sym_RBRACE] = ACTIONS(5428), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5382), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), + [sym_function_definition] = STATE(992), + [sym_declaration] = STATE(992), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6385), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4781), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2684), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8733), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4545), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__empty_declaration] = STATE(992), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2498), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(992), + [sym_operator_cast] = STATE(9265), + [sym__constructor_specifiers] = STATE(2498), + [sym_operator_cast_definition] = STATE(992), + [sym_operator_cast_declaration] = STATE(992), + [sym_constructor_or_destructor_definition] = STATE(992), + [sym_constructor_or_destructor_declaration] = STATE(992), + [sym_friend_declaration] = STATE(992), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_alias_declaration] = STATE(992), + [sym_concept_definition] = STATE(992), + [sym_requires_clause] = STATE(1105), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7777), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9265), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2498), + [sym_identifier] = ACTIONS(5456), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(5458), + [anon_sym_COLON_COLON] = ACTIONS(5460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(5462), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5466), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(5468), + [anon_sym_concept] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(5470), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, [STATE(1095)] = { - [sym_expression_statement] = STATE(4052), - [sym_expression] = STATE(6806), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10957), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_type_requirement] = STATE(1101), - [sym_compound_requirement] = STATE(1101), - [sym__requirement] = STATE(1101), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_requirement_seq_repeat1] = STATE(1101), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5376), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5378), - [anon_sym_RBRACE] = ACTIONS(5430), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5382), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), + [sym_function_definition] = STATE(814), + [sym_declaration] = STATE(814), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4781), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8734), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__empty_declaration] = STATE(814), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2515), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(814), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2515), + [sym_operator_cast_definition] = STATE(814), + [sym_operator_cast_declaration] = STATE(814), + [sym_constructor_or_destructor_definition] = STATE(814), + [sym_constructor_or_destructor_declaration] = STATE(814), + [sym_friend_declaration] = STATE(814), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_alias_declaration] = STATE(814), + [sym_concept_definition] = STATE(814), + [sym_requires_clause] = STATE(1109), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7777), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2515), + [sym_identifier] = ACTIONS(5456), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(5472), + [anon_sym_COLON_COLON] = ACTIONS(5460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(5474), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5476), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(5478), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_requires] = ACTIONS(5470), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, [STATE(1096)] = { - [sym_expression] = STATE(6787), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10342), - [sym_initializer_pair] = STATE(10342), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5432), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_function_definition] = STATE(3475), + [sym_declaration] = STATE(3475), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6416), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4781), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2711), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8689), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4442), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__empty_declaration] = STATE(3475), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2469), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(3475), + [sym_operator_cast] = STATE(9167), + [sym__constructor_specifiers] = STATE(2469), + [sym_operator_cast_definition] = STATE(3475), + [sym_operator_cast_declaration] = STATE(3475), + [sym_constructor_or_destructor_definition] = STATE(3475), + [sym_constructor_or_destructor_declaration] = STATE(3475), + [sym_friend_declaration] = STATE(3475), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_alias_declaration] = STATE(3475), + [sym_concept_definition] = STATE(3475), + [sym_requires_clause] = STATE(1108), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7777), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9167), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2469), + [sym_identifier] = ACTIONS(5456), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(5480), + [anon_sym_COLON_COLON] = ACTIONS(5460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4819), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(4823), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4825), + [anon_sym_concept] = ACTIONS(5482), + [anon_sym_requires] = ACTIONS(5470), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(1097)] = { + [sym_function_definition] = STATE(431), + [sym_declaration] = STATE(431), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4781), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8698), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__empty_declaration] = STATE(431), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2446), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(431), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2446), + [sym_operator_cast_definition] = STATE(431), + [sym_operator_cast_declaration] = STATE(431), + [sym_constructor_or_destructor_definition] = STATE(431), + [sym_constructor_or_destructor_declaration] = STATE(431), + [sym_friend_declaration] = STATE(431), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_alias_declaration] = STATE(431), + [sym_concept_definition] = STATE(431), + [sym_requires_clause] = STATE(1110), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7777), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2446), + [sym_identifier] = ACTIONS(5456), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(5484), + [anon_sym_COLON_COLON] = ACTIONS(5460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(5486), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5488), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(5490), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_requires] = ACTIONS(5470), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(1098)] = { + [sym_function_definition] = STATE(3357), + [sym_declaration] = STATE(3357), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6414), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4781), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2708), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4399), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__empty_declaration] = STATE(3357), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(3357), + [sym_operator_cast] = STATE(9211), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(3357), + [sym_operator_cast_declaration] = STATE(3357), + [sym_constructor_or_destructor_definition] = STATE(3357), + [sym_constructor_or_destructor_declaration] = STATE(3357), + [sym_friend_declaration] = STATE(3357), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_alias_declaration] = STATE(3357), + [sym_concept_definition] = STATE(3357), + [sym_requires_clause] = STATE(1106), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7777), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(5456), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(5492), + [anon_sym_COLON_COLON] = ACTIONS(5460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4704), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(4708), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_concept] = ACTIONS(5494), + [anon_sym_requires] = ACTIONS(5470), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(1099)] = { + [sym_function_definition] = STATE(2837), + [sym_declaration] = STATE(2837), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6415), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4781), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2710), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8674), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4428), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__empty_declaration] = STATE(2837), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2456), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(2837), + [sym_operator_cast] = STATE(9218), + [sym__constructor_specifiers] = STATE(2456), + [sym_operator_cast_definition] = STATE(2837), + [sym_operator_cast_declaration] = STATE(2837), + [sym_constructor_or_destructor_definition] = STATE(2837), + [sym_constructor_or_destructor_declaration] = STATE(2837), + [sym_friend_declaration] = STATE(2837), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_alias_declaration] = STATE(2837), + [sym_concept_definition] = STATE(2837), + [sym_requires_clause] = STATE(1107), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7777), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9218), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2456), + [sym_identifier] = ACTIONS(5456), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(5496), + [anon_sym_COLON_COLON] = ACTIONS(5460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3462), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(3480), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3482), + [anon_sym_concept] = ACTIONS(5498), + [anon_sym_requires] = ACTIONS(5470), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(1100)] = { + [sym_function_definition] = STATE(717), + [sym_declaration] = STATE(717), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6413), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4781), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2707), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8752), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4502), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__empty_declaration] = STATE(717), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2462), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(717), + [sym_operator_cast] = STATE(9210), + [sym__constructor_specifiers] = STATE(2462), + [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_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_alias_declaration] = STATE(717), + [sym_concept_definition] = STATE(717), + [sym_requires_clause] = STATE(1103), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7777), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9210), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2462), + [sym_identifier] = ACTIONS(5456), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(5500), + [anon_sym_COLON_COLON] = ACTIONS(5460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(5502), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5504), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(5506), + [anon_sym_concept] = ACTIONS(1159), + [anon_sym_requires] = ACTIONS(5470), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(1101)] = { + [sym_expression] = STATE(4658), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(4970), + [anon_sym_LPAREN2] = ACTIONS(5508), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(5511), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym___extension__] = ACTIONS(5069), + [anon_sym_COLON_COLON] = ACTIONS(5072), + [anon_sym___based] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3133), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(4985), + [anon_sym_operator] = ACTIONS(3128), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(4988), + [sym_this] = ACTIONS(2418), + }, + [STATE(1102)] = { + [sym_expression] = STATE(5119), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(5090), + [anon_sym_LPAREN2] = ACTIONS(5514), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(5517), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(5520), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(5523), + [anon_sym___extension__] = ACTIONS(5093), + [anon_sym_COLON_COLON] = ACTIONS(5096), + [anon_sym___based] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3133), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(5105), + [anon_sym_operator] = ACTIONS(3128), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(5108), + [sym_this] = ACTIONS(2276), + }, + [STATE(1103)] = { + [sym_function_definition] = STATE(725), + [sym_declaration] = STATE(725), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6413), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4781), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2707), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8752), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4502), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__empty_declaration] = STATE(725), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2462), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(725), + [sym_operator_cast] = STATE(9210), + [sym__constructor_specifiers] = STATE(2462), + [sym_operator_cast_definition] = STATE(725), + [sym_operator_cast_declaration] = STATE(725), + [sym_constructor_or_destructor_definition] = STATE(725), + [sym_constructor_or_destructor_declaration] = STATE(725), + [sym_friend_declaration] = STATE(725), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_alias_declaration] = STATE(725), + [sym_concept_definition] = STATE(725), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7777), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9210), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2462), + [sym_identifier] = ACTIONS(5456), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(5500), + [anon_sym_COLON_COLON] = ACTIONS(5460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(5502), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5504), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(5506), + [anon_sym_concept] = ACTIONS(1159), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(1104)] = { + [sym_expression] = STATE(6775), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(5039), + [anon_sym_LPAREN2] = ACTIONS(5526), + [anon_sym_BANG] = ACTIONS(5529), + [anon_sym_TILDE] = ACTIONS(5529), + [anon_sym_DASH] = ACTIONS(5532), + [anon_sym_PLUS] = ACTIONS(5532), + [anon_sym_STAR] = ACTIONS(5535), + [anon_sym_AMP] = ACTIONS(5535), + [anon_sym___extension__] = ACTIONS(5042), + [anon_sym_COLON_COLON] = ACTIONS(5045), + [anon_sym_LBRACK] = ACTIONS(3133), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_RBRACK] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(5048), + [anon_sym_not] = ACTIONS(5532), + [anon_sym_compl] = ACTIONS(5532), + [anon_sym_DASH_DASH] = ACTIONS(5538), + [anon_sym_PLUS_PLUS] = ACTIONS(5538), + [anon_sym_sizeof] = ACTIONS(5541), + [anon_sym___alignof__] = ACTIONS(5544), + [anon_sym___alignof] = ACTIONS(5544), + [anon_sym__alignof] = ACTIONS(5544), + [anon_sym_alignof] = ACTIONS(5544), + [anon_sym__Alignof] = ACTIONS(5544), + [anon_sym_offsetof] = ACTIONS(5547), + [anon_sym__Generic] = ACTIONS(5550), + [anon_sym_typename] = ACTIONS(5051), + [anon_sym_asm] = ACTIONS(5553), + [anon_sym___asm__] = ACTIONS(5553), + [anon_sym___asm] = ACTIONS(5553), + [sym_number_literal] = ACTIONS(5556), + [anon_sym_L_SQUOTE] = ACTIONS(5559), + [anon_sym_u_SQUOTE] = ACTIONS(5559), + [anon_sym_U_SQUOTE] = ACTIONS(5559), + [anon_sym_u8_SQUOTE] = ACTIONS(5559), + [anon_sym_SQUOTE] = ACTIONS(5559), + [anon_sym_L_DQUOTE] = ACTIONS(5562), + [anon_sym_u_DQUOTE] = ACTIONS(5562), + [anon_sym_U_DQUOTE] = ACTIONS(5562), + [anon_sym_u8_DQUOTE] = ACTIONS(5562), + [anon_sym_DQUOTE] = ACTIONS(5562), + [sym_true] = ACTIONS(5565), + [sym_false] = ACTIONS(5565), + [anon_sym_NULL] = ACTIONS(5568), + [anon_sym_nullptr] = ACTIONS(5568), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3142), + [anon_sym_template] = ACTIONS(5054), + [anon_sym_delete] = ACTIONS(5571), + [anon_sym_R_DQUOTE] = ACTIONS(5574), + [anon_sym_LR_DQUOTE] = ACTIONS(5574), + [anon_sym_uR_DQUOTE] = ACTIONS(5574), + [anon_sym_UR_DQUOTE] = ACTIONS(5574), + [anon_sym_u8R_DQUOTE] = ACTIONS(5574), + [anon_sym_co_await] = ACTIONS(5577), + [anon_sym_new] = ACTIONS(5580), + [anon_sym_requires] = ACTIONS(5583), + [anon_sym_CARET_CARET] = ACTIONS(5586), + [anon_sym_LBRACK_COLON] = ACTIONS(5057), + [sym_this] = ACTIONS(5565), + }, + [STATE(1105)] = { + [sym_function_definition] = STATE(910), + [sym_declaration] = STATE(910), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6385), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4781), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2684), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8733), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4545), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__empty_declaration] = STATE(910), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2498), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(910), + [sym_operator_cast] = STATE(9265), + [sym__constructor_specifiers] = STATE(2498), + [sym_operator_cast_definition] = STATE(910), + [sym_operator_cast_declaration] = STATE(910), + [sym_constructor_or_destructor_definition] = STATE(910), + [sym_constructor_or_destructor_declaration] = STATE(910), + [sym_friend_declaration] = STATE(910), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_alias_declaration] = STATE(910), + [sym_concept_definition] = STATE(910), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7777), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9265), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2498), + [sym_identifier] = ACTIONS(5456), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(5458), + [anon_sym_COLON_COLON] = ACTIONS(5460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(5462), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5466), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(5468), + [anon_sym_concept] = ACTIONS(155), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(1106)] = { + [sym_function_definition] = STATE(3380), + [sym_declaration] = STATE(3380), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6414), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4781), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2708), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4399), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__empty_declaration] = STATE(3380), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2479), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(3380), + [sym_operator_cast] = STATE(9211), + [sym__constructor_specifiers] = STATE(2479), + [sym_operator_cast_definition] = STATE(3380), + [sym_operator_cast_declaration] = STATE(3380), + [sym_constructor_or_destructor_definition] = STATE(3380), + [sym_constructor_or_destructor_declaration] = STATE(3380), + [sym_friend_declaration] = STATE(3380), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_alias_declaration] = STATE(3380), + [sym_concept_definition] = STATE(3380), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7777), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9211), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2479), + [sym_identifier] = ACTIONS(5456), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(5492), + [anon_sym_COLON_COLON] = ACTIONS(5460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4704), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(4708), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_concept] = ACTIONS(5494), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(1107)] = { + [sym_function_definition] = STATE(2785), + [sym_declaration] = STATE(2785), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6415), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4781), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2710), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8674), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4428), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__empty_declaration] = STATE(2785), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2456), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(2785), + [sym_operator_cast] = STATE(9218), + [sym__constructor_specifiers] = STATE(2456), + [sym_operator_cast_definition] = STATE(2785), + [sym_operator_cast_declaration] = STATE(2785), + [sym_constructor_or_destructor_definition] = STATE(2785), + [sym_constructor_or_destructor_declaration] = STATE(2785), + [sym_friend_declaration] = STATE(2785), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_alias_declaration] = STATE(2785), + [sym_concept_definition] = STATE(2785), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7777), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9218), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2456), + [sym_identifier] = ACTIONS(5456), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(5496), + [anon_sym_COLON_COLON] = ACTIONS(5460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(3462), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(3480), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3482), + [anon_sym_concept] = ACTIONS(5498), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(1108)] = { + [sym_function_definition] = STATE(3253), + [sym_declaration] = STATE(3253), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6416), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4781), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2711), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8689), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4442), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__empty_declaration] = STATE(3253), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2469), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(3253), + [sym_operator_cast] = STATE(9167), + [sym__constructor_specifiers] = STATE(2469), + [sym_operator_cast_definition] = STATE(3253), + [sym_operator_cast_declaration] = STATE(3253), + [sym_constructor_or_destructor_definition] = STATE(3253), + [sym_constructor_or_destructor_declaration] = STATE(3253), + [sym_friend_declaration] = STATE(3253), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_alias_declaration] = STATE(3253), + [sym_concept_definition] = STATE(3253), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7777), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9167), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2469), + [sym_identifier] = ACTIONS(5456), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(5480), + [anon_sym_COLON_COLON] = ACTIONS(5460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4819), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(4823), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4825), + [anon_sym_concept] = ACTIONS(5482), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(1109)] = { + [sym_function_definition] = STATE(788), + [sym_declaration] = STATE(788), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6406), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4781), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2694), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8734), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4527), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__empty_declaration] = STATE(788), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2515), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(788), + [sym_operator_cast] = STATE(9234), + [sym__constructor_specifiers] = STATE(2515), + [sym_operator_cast_definition] = STATE(788), + [sym_operator_cast_declaration] = STATE(788), + [sym_constructor_or_destructor_definition] = STATE(788), + [sym_constructor_or_destructor_declaration] = STATE(788), + [sym_friend_declaration] = STATE(788), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_alias_declaration] = STATE(788), + [sym_concept_definition] = STATE(788), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7777), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9234), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2515), + [sym_identifier] = ACTIONS(5456), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(5472), + [anon_sym_COLON_COLON] = ACTIONS(5460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(5474), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5476), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(5478), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(1110)] = { + [sym_function_definition] = STATE(456), + [sym_declaration] = STATE(456), + [sym__declaration_modifiers] = STATE(4781), + [sym__declaration_specifiers] = STATE(6411), + [sym_attribute_specifier] = STATE(4781), + [sym_attribute_declaration] = STATE(4781), + [sym_ms_declspec_modifier] = STATE(4781), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(2705), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8698), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(4781), + [sym_type_qualifier] = STATE(4781), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4439), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym__empty_declaration] = STATE(456), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_explicit_function_specifier] = STATE(2446), + [sym_dependent_type] = STATE(4935), + [sym_template_declaration] = STATE(456), + [sym_operator_cast] = STATE(9244), + [sym__constructor_specifiers] = STATE(2446), + [sym_operator_cast_definition] = STATE(456), + [sym_operator_cast_declaration] = STATE(456), + [sym_constructor_or_destructor_definition] = STATE(456), + [sym_constructor_or_destructor_declaration] = STATE(456), + [sym_friend_declaration] = STATE(456), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_alias_declaration] = STATE(456), + [sym_concept_definition] = STATE(456), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7777), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_qualified_operator_cast_identifier] = STATE(9244), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_operator_cast_definition_repeat1] = STATE(2446), + [sym_identifier] = ACTIONS(5456), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(5484), + [anon_sym_COLON_COLON] = ACTIONS(5460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(5486), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5488), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(5490), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(1111)] = { + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(8831), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8555), + [sym_array_declarator] = STATE(8555), + [sym_expression] = STATE(3772), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5286), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7947), + [sym_qualified_identifier] = STATE(5288), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(3258), + [anon_sym_LPAREN2] = ACTIONS(3260), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1112)] = { + [sym_identifier] = ACTIONS(5589), + [anon_sym_LPAREN2] = ACTIONS(5591), + [anon_sym_BANG] = ACTIONS(5591), + [anon_sym_TILDE] = ACTIONS(5591), + [anon_sym_DASH] = ACTIONS(5589), + [anon_sym_PLUS] = ACTIONS(5589), + [anon_sym_STAR] = ACTIONS(5591), + [anon_sym_AMP_AMP] = ACTIONS(5591), + [anon_sym_AMP] = ACTIONS(5589), + [anon_sym_SEMI] = ACTIONS(5591), + [anon_sym___extension__] = ACTIONS(5589), + [anon_sym_virtual] = ACTIONS(5589), + [anon_sym_extern] = ACTIONS(5589), + [anon_sym___attribute__] = ACTIONS(5589), + [anon_sym___attribute] = ACTIONS(5589), + [anon_sym_using] = ACTIONS(5589), + [anon_sym_COLON_COLON] = ACTIONS(5591), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5591), + [anon_sym___declspec] = ACTIONS(5589), + [anon_sym___based] = ACTIONS(5589), + [anon_sym_LBRACE] = ACTIONS(5591), + [anon_sym_signed] = ACTIONS(5589), + [anon_sym_unsigned] = ACTIONS(5589), + [anon_sym_long] = ACTIONS(5589), + [anon_sym_short] = ACTIONS(5589), + [anon_sym_LBRACK] = ACTIONS(5589), + [anon_sym_static] = ACTIONS(5589), + [anon_sym_EQ] = ACTIONS(5591), + [anon_sym_register] = ACTIONS(5589), + [anon_sym_inline] = ACTIONS(5589), + [anon_sym___inline] = ACTIONS(5589), + [anon_sym___inline__] = ACTIONS(5589), + [anon_sym___forceinline] = ACTIONS(5589), + [anon_sym_thread_local] = ACTIONS(5589), + [anon_sym___thread] = ACTIONS(5589), + [anon_sym_const] = ACTIONS(5589), + [anon_sym_constexpr] = ACTIONS(5589), + [anon_sym_volatile] = ACTIONS(5589), + [anon_sym_restrict] = ACTIONS(5589), + [anon_sym___restrict__] = ACTIONS(5589), + [anon_sym__Atomic] = ACTIONS(5589), + [anon_sym__Noreturn] = ACTIONS(5589), + [anon_sym_noreturn] = ACTIONS(5589), + [anon_sym__Nonnull] = ACTIONS(5589), + [anon_sym_mutable] = ACTIONS(5589), + [anon_sym_constinit] = ACTIONS(5589), + [anon_sym_consteval] = ACTIONS(5589), + [anon_sym_alignas] = ACTIONS(5589), + [anon_sym__Alignas] = ACTIONS(5589), + [sym_primitive_type] = ACTIONS(5589), + [anon_sym_enum] = ACTIONS(5589), + [anon_sym_class] = ACTIONS(5589), + [anon_sym_struct] = ACTIONS(5589), + [anon_sym_union] = ACTIONS(5589), + [anon_sym_if] = ACTIONS(5589), + [anon_sym_switch] = ACTIONS(5589), + [anon_sym_case] = ACTIONS(5589), + [anon_sym_default] = ACTIONS(5589), + [anon_sym_while] = ACTIONS(5589), + [anon_sym_do] = ACTIONS(5589), + [anon_sym_for] = ACTIONS(5589), + [anon_sym_return] = ACTIONS(5589), + [anon_sym_break] = ACTIONS(5589), + [anon_sym_continue] = ACTIONS(5589), + [anon_sym_goto] = ACTIONS(5589), + [anon_sym___try] = ACTIONS(5589), + [anon_sym___leave] = ACTIONS(5589), + [anon_sym_not] = ACTIONS(5589), + [anon_sym_compl] = ACTIONS(5589), + [anon_sym_DASH_DASH] = ACTIONS(5591), + [anon_sym_PLUS_PLUS] = ACTIONS(5591), + [anon_sym_sizeof] = ACTIONS(5589), + [anon_sym___alignof__] = ACTIONS(5589), + [anon_sym___alignof] = ACTIONS(5589), + [anon_sym__alignof] = ACTIONS(5589), + [anon_sym_alignof] = ACTIONS(5589), + [anon_sym__Alignof] = ACTIONS(5589), + [anon_sym_offsetof] = ACTIONS(5589), + [anon_sym__Generic] = ACTIONS(5589), + [anon_sym_typename] = ACTIONS(5589), + [anon_sym_asm] = ACTIONS(5589), + [anon_sym___asm__] = ACTIONS(5589), + [anon_sym___asm] = ACTIONS(5589), + [sym_number_literal] = ACTIONS(5591), + [anon_sym_L_SQUOTE] = ACTIONS(5591), + [anon_sym_u_SQUOTE] = ACTIONS(5591), + [anon_sym_U_SQUOTE] = ACTIONS(5591), + [anon_sym_u8_SQUOTE] = ACTIONS(5591), + [anon_sym_SQUOTE] = ACTIONS(5591), + [anon_sym_L_DQUOTE] = ACTIONS(5591), + [anon_sym_u_DQUOTE] = ACTIONS(5591), + [anon_sym_U_DQUOTE] = ACTIONS(5591), + [anon_sym_u8_DQUOTE] = ACTIONS(5591), + [anon_sym_DQUOTE] = ACTIONS(5591), + [sym_true] = ACTIONS(5589), + [sym_false] = ACTIONS(5589), + [anon_sym_NULL] = ACTIONS(5589), + [anon_sym_nullptr] = ACTIONS(5589), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5589), + [anon_sym_decltype] = ACTIONS(5589), + [anon_sym_explicit] = ACTIONS(5589), + [anon_sym_template] = ACTIONS(5589), + [anon_sym_operator] = ACTIONS(5589), + [anon_sym_try] = ACTIONS(5589), + [anon_sym_delete] = ACTIONS(5589), + [anon_sym_throw] = ACTIONS(5589), + [anon_sym_co_return] = ACTIONS(5589), + [anon_sym_co_yield] = ACTIONS(5589), + [anon_sym_R_DQUOTE] = ACTIONS(5591), + [anon_sym_LR_DQUOTE] = ACTIONS(5591), + [anon_sym_uR_DQUOTE] = ACTIONS(5591), + [anon_sym_UR_DQUOTE] = ACTIONS(5591), + [anon_sym_u8R_DQUOTE] = ACTIONS(5591), + [anon_sym_co_await] = ACTIONS(5589), + [anon_sym_new] = ACTIONS(5589), + [anon_sym_requires] = ACTIONS(5589), + [anon_sym_CARET_CARET] = ACTIONS(5591), + [anon_sym_LBRACK_COLON] = ACTIONS(5591), + [sym_this] = ACTIONS(5589), + }, + [STATE(1113)] = { + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(8831), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8555), + [sym_array_declarator] = STATE(8555), + [sym_expression] = STATE(5117), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5427), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7942), + [sym_qualified_identifier] = STATE(5371), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_operator_name] = STATE(8555), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(3420), + [anon_sym_LPAREN2] = ACTIONS(2226), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1114)] = { + [sym_identifier] = ACTIONS(5593), + [anon_sym_LPAREN2] = ACTIONS(5595), + [anon_sym_BANG] = ACTIONS(5595), + [anon_sym_TILDE] = ACTIONS(5595), + [anon_sym_DASH] = ACTIONS(5593), + [anon_sym_PLUS] = ACTIONS(5593), + [anon_sym_STAR] = ACTIONS(5595), + [anon_sym_AMP_AMP] = ACTIONS(5595), + [anon_sym_AMP] = ACTIONS(5593), + [anon_sym_SEMI] = ACTIONS(5595), + [anon_sym___extension__] = ACTIONS(5593), + [anon_sym_virtual] = ACTIONS(5593), + [anon_sym_extern] = ACTIONS(5593), + [anon_sym___attribute__] = ACTIONS(5593), + [anon_sym___attribute] = ACTIONS(5593), + [anon_sym_using] = ACTIONS(5593), + [anon_sym_COLON_COLON] = ACTIONS(5595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5595), + [anon_sym___declspec] = ACTIONS(5593), + [anon_sym___based] = ACTIONS(5593), + [anon_sym_LBRACE] = ACTIONS(5595), + [anon_sym_signed] = ACTIONS(5593), + [anon_sym_unsigned] = ACTIONS(5593), + [anon_sym_long] = ACTIONS(5593), + [anon_sym_short] = ACTIONS(5593), + [anon_sym_LBRACK] = ACTIONS(5593), + [anon_sym_static] = ACTIONS(5593), + [anon_sym_EQ] = ACTIONS(5595), + [anon_sym_register] = ACTIONS(5593), + [anon_sym_inline] = ACTIONS(5593), + [anon_sym___inline] = ACTIONS(5593), + [anon_sym___inline__] = ACTIONS(5593), + [anon_sym___forceinline] = ACTIONS(5593), + [anon_sym_thread_local] = ACTIONS(5593), + [anon_sym___thread] = ACTIONS(5593), + [anon_sym_const] = ACTIONS(5593), + [anon_sym_constexpr] = ACTIONS(5593), + [anon_sym_volatile] = ACTIONS(5593), + [anon_sym_restrict] = ACTIONS(5593), + [anon_sym___restrict__] = ACTIONS(5593), + [anon_sym__Atomic] = ACTIONS(5593), + [anon_sym__Noreturn] = ACTIONS(5593), + [anon_sym_noreturn] = ACTIONS(5593), + [anon_sym__Nonnull] = ACTIONS(5593), + [anon_sym_mutable] = ACTIONS(5593), + [anon_sym_constinit] = ACTIONS(5593), + [anon_sym_consteval] = ACTIONS(5593), + [anon_sym_alignas] = ACTIONS(5593), + [anon_sym__Alignas] = ACTIONS(5593), + [sym_primitive_type] = ACTIONS(5593), + [anon_sym_enum] = ACTIONS(5593), + [anon_sym_class] = ACTIONS(5593), + [anon_sym_struct] = ACTIONS(5593), + [anon_sym_union] = ACTIONS(5593), + [anon_sym_if] = ACTIONS(5593), + [anon_sym_switch] = ACTIONS(5593), + [anon_sym_case] = ACTIONS(5593), + [anon_sym_default] = ACTIONS(5593), + [anon_sym_while] = ACTIONS(5593), + [anon_sym_do] = ACTIONS(5593), + [anon_sym_for] = ACTIONS(5593), + [anon_sym_return] = ACTIONS(5593), + [anon_sym_break] = ACTIONS(5593), + [anon_sym_continue] = ACTIONS(5593), + [anon_sym_goto] = ACTIONS(5593), + [anon_sym___try] = ACTIONS(5593), + [anon_sym___leave] = ACTIONS(5593), + [anon_sym_not] = ACTIONS(5593), + [anon_sym_compl] = ACTIONS(5593), + [anon_sym_DASH_DASH] = ACTIONS(5595), + [anon_sym_PLUS_PLUS] = ACTIONS(5595), + [anon_sym_sizeof] = ACTIONS(5593), + [anon_sym___alignof__] = ACTIONS(5593), + [anon_sym___alignof] = ACTIONS(5593), + [anon_sym__alignof] = ACTIONS(5593), + [anon_sym_alignof] = ACTIONS(5593), + [anon_sym__Alignof] = ACTIONS(5593), + [anon_sym_offsetof] = ACTIONS(5593), + [anon_sym__Generic] = ACTIONS(5593), + [anon_sym_typename] = ACTIONS(5593), + [anon_sym_asm] = ACTIONS(5593), + [anon_sym___asm__] = ACTIONS(5593), + [anon_sym___asm] = ACTIONS(5593), + [sym_number_literal] = ACTIONS(5595), + [anon_sym_L_SQUOTE] = ACTIONS(5595), + [anon_sym_u_SQUOTE] = ACTIONS(5595), + [anon_sym_U_SQUOTE] = ACTIONS(5595), + [anon_sym_u8_SQUOTE] = ACTIONS(5595), + [anon_sym_SQUOTE] = ACTIONS(5595), + [anon_sym_L_DQUOTE] = ACTIONS(5595), + [anon_sym_u_DQUOTE] = ACTIONS(5595), + [anon_sym_U_DQUOTE] = ACTIONS(5595), + [anon_sym_u8_DQUOTE] = ACTIONS(5595), + [anon_sym_DQUOTE] = ACTIONS(5595), + [sym_true] = ACTIONS(5593), + [sym_false] = ACTIONS(5593), + [anon_sym_NULL] = ACTIONS(5593), + [anon_sym_nullptr] = ACTIONS(5593), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5593), + [anon_sym_decltype] = ACTIONS(5593), + [anon_sym_explicit] = ACTIONS(5593), + [anon_sym_template] = ACTIONS(5593), + [anon_sym_operator] = ACTIONS(5593), + [anon_sym_try] = ACTIONS(5593), + [anon_sym_delete] = ACTIONS(5593), + [anon_sym_throw] = ACTIONS(5593), + [anon_sym_co_return] = ACTIONS(5593), + [anon_sym_co_yield] = ACTIONS(5593), + [anon_sym_R_DQUOTE] = ACTIONS(5595), + [anon_sym_LR_DQUOTE] = ACTIONS(5595), + [anon_sym_uR_DQUOTE] = ACTIONS(5595), + [anon_sym_UR_DQUOTE] = ACTIONS(5595), + [anon_sym_u8R_DQUOTE] = ACTIONS(5595), + [anon_sym_co_await] = ACTIONS(5593), + [anon_sym_new] = ACTIONS(5593), + [anon_sym_requires] = ACTIONS(5593), + [anon_sym_CARET_CARET] = ACTIONS(5595), + [anon_sym_LBRACK_COLON] = ACTIONS(5595), + [sym_this] = ACTIONS(5593), + }, + [STATE(1115)] = { + [sym_identifier] = ACTIONS(5597), + [anon_sym_LPAREN2] = ACTIONS(5600), + [anon_sym_BANG] = ACTIONS(5603), + [anon_sym_TILDE] = ACTIONS(5600), + [anon_sym_DASH] = ACTIONS(5605), + [anon_sym_PLUS] = ACTIONS(5605), + [anon_sym_STAR] = ACTIONS(5600), + [anon_sym_AMP_AMP] = ACTIONS(5607), + [anon_sym_AMP] = ACTIONS(5597), + [anon_sym_SEMI] = ACTIONS(5603), + [anon_sym___extension__] = ACTIONS(5597), + [anon_sym_virtual] = ACTIONS(5609), + [anon_sym_extern] = ACTIONS(5609), + [anon_sym___attribute__] = ACTIONS(5609), + [anon_sym___attribute] = ACTIONS(5609), + [anon_sym_using] = ACTIONS(5605), + [anon_sym_COLON_COLON] = ACTIONS(5600), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5600), + [anon_sym___declspec] = ACTIONS(5609), + [anon_sym___based] = ACTIONS(5609), + [anon_sym_LBRACE] = ACTIONS(5603), + [anon_sym_signed] = ACTIONS(5609), + [anon_sym_unsigned] = ACTIONS(5609), + [anon_sym_long] = ACTIONS(5609), + [anon_sym_short] = ACTIONS(5609), + [anon_sym_LBRACK] = ACTIONS(5597), + [anon_sym_static] = ACTIONS(5609), + [anon_sym_register] = ACTIONS(5609), + [anon_sym_inline] = ACTIONS(5609), + [anon_sym___inline] = ACTIONS(5609), + [anon_sym___inline__] = ACTIONS(5609), + [anon_sym___forceinline] = ACTIONS(5609), + [anon_sym_thread_local] = ACTIONS(5609), + [anon_sym___thread] = ACTIONS(5609), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5609), + [anon_sym_volatile] = ACTIONS(5609), + [anon_sym_restrict] = ACTIONS(5609), + [anon_sym___restrict__] = ACTIONS(5609), + [anon_sym__Atomic] = ACTIONS(5609), + [anon_sym__Noreturn] = ACTIONS(5609), + [anon_sym_noreturn] = ACTIONS(5609), + [anon_sym__Nonnull] = ACTIONS(5609), + [anon_sym_mutable] = ACTIONS(5609), + [anon_sym_constinit] = ACTIONS(5609), + [anon_sym_consteval] = ACTIONS(5609), + [anon_sym_alignas] = ACTIONS(5609), + [anon_sym__Alignas] = ACTIONS(5609), + [sym_primitive_type] = ACTIONS(5597), + [anon_sym_enum] = ACTIONS(5609), + [anon_sym_class] = ACTIONS(5609), + [anon_sym_struct] = ACTIONS(5609), + [anon_sym_union] = ACTIONS(5609), + [anon_sym_if] = ACTIONS(5605), + [anon_sym_switch] = ACTIONS(5605), + [anon_sym_case] = ACTIONS(5605), + [anon_sym_default] = ACTIONS(5605), + [anon_sym_while] = ACTIONS(5605), + [anon_sym_do] = ACTIONS(5605), + [anon_sym_for] = ACTIONS(5605), + [anon_sym_return] = ACTIONS(5605), + [anon_sym_break] = ACTIONS(5605), + [anon_sym_continue] = ACTIONS(5605), + [anon_sym_goto] = ACTIONS(5605), + [anon_sym___try] = ACTIONS(5605), + [anon_sym___leave] = ACTIONS(5605), + [anon_sym_not] = ACTIONS(5605), + [anon_sym_compl] = ACTIONS(5605), + [anon_sym_DASH_DASH] = ACTIONS(5603), + [anon_sym_PLUS_PLUS] = ACTIONS(5603), + [anon_sym_sizeof] = ACTIONS(5605), + [anon_sym___alignof__] = ACTIONS(5605), + [anon_sym___alignof] = ACTIONS(5605), + [anon_sym__alignof] = ACTIONS(5605), + [anon_sym_alignof] = ACTIONS(5605), + [anon_sym__Alignof] = ACTIONS(5605), + [anon_sym_offsetof] = ACTIONS(5605), + [anon_sym__Generic] = ACTIONS(5605), + [anon_sym_typename] = ACTIONS(5597), + [anon_sym_asm] = ACTIONS(5605), + [anon_sym___asm__] = ACTIONS(5605), + [anon_sym___asm] = ACTIONS(5605), + [sym_number_literal] = ACTIONS(5603), + [anon_sym_L_SQUOTE] = ACTIONS(5603), + [anon_sym_u_SQUOTE] = ACTIONS(5603), + [anon_sym_U_SQUOTE] = ACTIONS(5603), + [anon_sym_u8_SQUOTE] = ACTIONS(5603), + [anon_sym_SQUOTE] = ACTIONS(5603), + [anon_sym_L_DQUOTE] = ACTIONS(5603), + [anon_sym_u_DQUOTE] = ACTIONS(5603), + [anon_sym_U_DQUOTE] = ACTIONS(5603), + [anon_sym_u8_DQUOTE] = ACTIONS(5603), + [anon_sym_DQUOTE] = ACTIONS(5603), + [sym_true] = ACTIONS(5605), + [sym_false] = ACTIONS(5605), + [anon_sym_NULL] = ACTIONS(5605), + [anon_sym_nullptr] = ACTIONS(5605), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5609), + [anon_sym_decltype] = ACTIONS(5597), + [anon_sym_explicit] = ACTIONS(5609), + [anon_sym_template] = ACTIONS(5597), + [anon_sym_operator] = ACTIONS(5609), + [anon_sym_try] = ACTIONS(5605), + [anon_sym_delete] = ACTIONS(5605), + [anon_sym_throw] = ACTIONS(5605), + [anon_sym_co_return] = ACTIONS(5605), + [anon_sym_co_yield] = ACTIONS(5605), + [anon_sym_R_DQUOTE] = ACTIONS(5603), + [anon_sym_LR_DQUOTE] = ACTIONS(5603), + [anon_sym_uR_DQUOTE] = ACTIONS(5603), + [anon_sym_UR_DQUOTE] = ACTIONS(5603), + [anon_sym_u8R_DQUOTE] = ACTIONS(5603), + [anon_sym_co_await] = ACTIONS(5605), + [anon_sym_new] = ACTIONS(5605), + [anon_sym_requires] = ACTIONS(5605), + [anon_sym_CARET_CARET] = ACTIONS(5603), + [anon_sym_LBRACK_COLON] = ACTIONS(5600), + [sym_this] = ACTIONS(5605), + }, + [STATE(1116)] = { + [sym_catch_clause] = STATE(1118), + [aux_sym_constructor_try_statement_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(3165), + [anon_sym_LPAREN2] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(3167), + [anon_sym_AMP] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym___extension__] = ACTIONS(3165), + [anon_sym_typedef] = ACTIONS(3165), + [anon_sym_virtual] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3165), + [anon_sym___attribute__] = ACTIONS(3165), + [anon_sym___attribute] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(3167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3167), + [anon_sym___declspec] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_signed] = ACTIONS(3165), + [anon_sym_unsigned] = ACTIONS(3165), + [anon_sym_long] = ACTIONS(3165), + [anon_sym_short] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_static] = ACTIONS(3165), + [anon_sym_register] = ACTIONS(3165), + [anon_sym_inline] = ACTIONS(3165), + [anon_sym___inline] = ACTIONS(3165), + [anon_sym___inline__] = ACTIONS(3165), + [anon_sym___forceinline] = ACTIONS(3165), + [anon_sym_thread_local] = ACTIONS(3165), + [anon_sym___thread] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_constexpr] = ACTIONS(3165), + [anon_sym_volatile] = ACTIONS(3165), + [anon_sym_restrict] = ACTIONS(3165), + [anon_sym___restrict__] = ACTIONS(3165), + [anon_sym__Atomic] = ACTIONS(3165), + [anon_sym__Noreturn] = ACTIONS(3165), + [anon_sym_noreturn] = ACTIONS(3165), + [anon_sym__Nonnull] = ACTIONS(3165), + [anon_sym_mutable] = ACTIONS(3165), + [anon_sym_constinit] = ACTIONS(3165), + [anon_sym_consteval] = ACTIONS(3165), + [anon_sym_alignas] = ACTIONS(3165), + [anon_sym__Alignas] = ACTIONS(3165), + [sym_primitive_type] = ACTIONS(3165), + [anon_sym_enum] = ACTIONS(3165), + [anon_sym_class] = ACTIONS(3165), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3165), + [anon_sym_else] = ACTIONS(3165), + [anon_sym_switch] = ACTIONS(3165), + [anon_sym_while] = ACTIONS(3165), + [anon_sym_do] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(3165), + [anon_sym_return] = ACTIONS(3165), + [anon_sym_break] = ACTIONS(3165), + [anon_sym_continue] = ACTIONS(3165), + [anon_sym_goto] = ACTIONS(3165), + [anon_sym___try] = ACTIONS(3165), + [anon_sym___leave] = ACTIONS(3165), + [anon_sym_not] = ACTIONS(3165), + [anon_sym_compl] = ACTIONS(3165), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_sizeof] = ACTIONS(3165), + [anon_sym___alignof__] = ACTIONS(3165), + [anon_sym___alignof] = ACTIONS(3165), + [anon_sym__alignof] = ACTIONS(3165), + [anon_sym_alignof] = ACTIONS(3165), + [anon_sym__Alignof] = ACTIONS(3165), + [anon_sym_offsetof] = ACTIONS(3165), + [anon_sym__Generic] = ACTIONS(3165), + [anon_sym_typename] = ACTIONS(3165), + [anon_sym_asm] = ACTIONS(3165), + [anon_sym___asm__] = ACTIONS(3165), + [anon_sym___asm] = ACTIONS(3165), + [sym_number_literal] = ACTIONS(3167), + [anon_sym_L_SQUOTE] = ACTIONS(3167), + [anon_sym_u_SQUOTE] = ACTIONS(3167), + [anon_sym_U_SQUOTE] = ACTIONS(3167), + [anon_sym_u8_SQUOTE] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3167), + [anon_sym_L_DQUOTE] = ACTIONS(3167), + [anon_sym_u_DQUOTE] = ACTIONS(3167), + [anon_sym_U_DQUOTE] = ACTIONS(3167), + [anon_sym_u8_DQUOTE] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [sym_true] = ACTIONS(3165), + [sym_false] = ACTIONS(3165), + [anon_sym_NULL] = ACTIONS(3165), + [anon_sym_nullptr] = ACTIONS(3165), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3165), + [anon_sym_decltype] = ACTIONS(3165), + [anon_sym_template] = ACTIONS(3165), + [anon_sym_try] = ACTIONS(3165), + [anon_sym_delete] = ACTIONS(3165), + [anon_sym_throw] = ACTIONS(3165), + [anon_sym_co_return] = ACTIONS(3165), + [anon_sym_co_yield] = ACTIONS(3165), + [anon_sym_catch] = ACTIONS(5611), + [anon_sym_R_DQUOTE] = ACTIONS(3167), + [anon_sym_LR_DQUOTE] = ACTIONS(3167), + [anon_sym_uR_DQUOTE] = ACTIONS(3167), + [anon_sym_UR_DQUOTE] = ACTIONS(3167), + [anon_sym_u8R_DQUOTE] = ACTIONS(3167), + [anon_sym_co_await] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3165), + [anon_sym_requires] = ACTIONS(3165), + [anon_sym_CARET_CARET] = ACTIONS(3167), + [anon_sym_LBRACK_COLON] = ACTIONS(3167), + [sym_this] = ACTIONS(3165), + }, + [STATE(1117)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_call_modifier] = STATE(6422), + [sym__declarator] = STATE(9071), + [sym__abstract_declarator] = STATE(9362), + [sym_parenthesized_declarator] = STATE(8555), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_function_declarator] = STATE(8555), + [sym_abstract_function_declarator] = STATE(8596), + [sym_array_declarator] = STATE(8555), + [sym_abstract_array_declarator] = STATE(8596), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_list] = STATE(4706), + [sym_parameter_declaration] = STATE(9791), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_explicit_object_parameter_declaration] = STATE(9791), + [sym_optional_parameter_declaration] = STATE(9791), + [sym_variadic_parameter_declaration] = STATE(9791), + [sym_reference_declarator] = STATE(8555), + [sym_abstract_reference_declarator] = STATE(8596), + [sym_structured_binding_declarator] = STATE(8555), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7918), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(5613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), + [anon_sym_RPAREN] = ACTIONS(5615), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_AMP_AMP] = ACTIONS(5621), + [anon_sym_AMP] = ACTIONS(5623), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(2242), + [anon_sym___clrcall] = ACTIONS(2242), + [anon_sym___stdcall] = ACTIONS(2242), + [anon_sym___fastcall] = ACTIONS(2242), + [anon_sym___thiscall] = ACTIONS(2242), + [anon_sym___vectorcall] = ACTIONS(2242), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(5627), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5629), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_this] = ACTIONS(5631), + }, + [STATE(1118)] = { + [sym_catch_clause] = STATE(1118), + [aux_sym_constructor_try_statement_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(3171), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3173), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym___extension__] = ACTIONS(3171), + [anon_sym_typedef] = ACTIONS(3171), + [anon_sym_virtual] = ACTIONS(3171), + [anon_sym_extern] = ACTIONS(3171), + [anon_sym___attribute__] = ACTIONS(3171), + [anon_sym___attribute] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3173), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), + [anon_sym___declspec] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3173), + [anon_sym_signed] = ACTIONS(3171), + [anon_sym_unsigned] = ACTIONS(3171), + [anon_sym_long] = ACTIONS(3171), + [anon_sym_short] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_register] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym___inline] = ACTIONS(3171), + [anon_sym___inline__] = ACTIONS(3171), + [anon_sym___forceinline] = ACTIONS(3171), + [anon_sym_thread_local] = ACTIONS(3171), + [anon_sym___thread] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_constexpr] = ACTIONS(3171), + [anon_sym_volatile] = ACTIONS(3171), + [anon_sym_restrict] = ACTIONS(3171), + [anon_sym___restrict__] = ACTIONS(3171), + [anon_sym__Atomic] = ACTIONS(3171), + [anon_sym__Noreturn] = ACTIONS(3171), + [anon_sym_noreturn] = ACTIONS(3171), + [anon_sym__Nonnull] = ACTIONS(3171), + [anon_sym_mutable] = ACTIONS(3171), + [anon_sym_constinit] = ACTIONS(3171), + [anon_sym_consteval] = ACTIONS(3171), + [anon_sym_alignas] = ACTIONS(3171), + [anon_sym__Alignas] = ACTIONS(3171), + [sym_primitive_type] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), + [anon_sym_class] = ACTIONS(3171), + [anon_sym_struct] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_else] = ACTIONS(3171), + [anon_sym_switch] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_do] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_goto] = ACTIONS(3171), + [anon_sym___try] = ACTIONS(3171), + [anon_sym___leave] = ACTIONS(3171), + [anon_sym_not] = ACTIONS(3171), + [anon_sym_compl] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3173), + [anon_sym_PLUS_PLUS] = ACTIONS(3173), + [anon_sym_sizeof] = ACTIONS(3171), + [anon_sym___alignof__] = ACTIONS(3171), + [anon_sym___alignof] = ACTIONS(3171), + [anon_sym__alignof] = ACTIONS(3171), + [anon_sym_alignof] = ACTIONS(3171), + [anon_sym__Alignof] = ACTIONS(3171), + [anon_sym_offsetof] = ACTIONS(3171), + [anon_sym__Generic] = ACTIONS(3171), + [anon_sym_typename] = ACTIONS(3171), + [anon_sym_asm] = ACTIONS(3171), + [anon_sym___asm__] = ACTIONS(3171), + [anon_sym___asm] = ACTIONS(3171), + [sym_number_literal] = ACTIONS(3173), + [anon_sym_L_SQUOTE] = ACTIONS(3173), + [anon_sym_u_SQUOTE] = ACTIONS(3173), + [anon_sym_U_SQUOTE] = ACTIONS(3173), + [anon_sym_u8_SQUOTE] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3173), + [anon_sym_L_DQUOTE] = ACTIONS(3173), + [anon_sym_u_DQUOTE] = ACTIONS(3173), + [anon_sym_U_DQUOTE] = ACTIONS(3173), + [anon_sym_u8_DQUOTE] = ACTIONS(3173), + [anon_sym_DQUOTE] = ACTIONS(3173), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [anon_sym_NULL] = ACTIONS(3171), + [anon_sym_nullptr] = ACTIONS(3171), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3171), + [anon_sym_decltype] = ACTIONS(3171), + [anon_sym_template] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [anon_sym_delete] = ACTIONS(3171), + [anon_sym_throw] = ACTIONS(3171), + [anon_sym_co_return] = ACTIONS(3171), + [anon_sym_co_yield] = ACTIONS(3171), + [anon_sym_catch] = ACTIONS(5633), + [anon_sym_R_DQUOTE] = ACTIONS(3173), + [anon_sym_LR_DQUOTE] = ACTIONS(3173), + [anon_sym_uR_DQUOTE] = ACTIONS(3173), + [anon_sym_UR_DQUOTE] = ACTIONS(3173), + [anon_sym_u8R_DQUOTE] = ACTIONS(3173), + [anon_sym_co_await] = ACTIONS(3171), + [anon_sym_new] = ACTIONS(3171), + [anon_sym_requires] = ACTIONS(3171), + [anon_sym_CARET_CARET] = ACTIONS(3173), + [anon_sym_LBRACK_COLON] = ACTIONS(3173), + [sym_this] = ACTIONS(3171), + }, + [STATE(1119)] = { + [sym_string_literal] = STATE(4105), + [sym_decltype_auto] = STATE(4991), + [sym_template_argument_list] = STATE(2130), + [sym_raw_string_literal] = STATE(4105), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(5636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_TILDE] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5650), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5638), + [anon_sym___extension__] = ACTIONS(5636), + [anon_sym_virtual] = ACTIONS(5636), + [anon_sym_extern] = ACTIONS(5636), + [anon_sym___attribute__] = ACTIONS(5636), + [anon_sym___attribute] = ACTIONS(5636), + [anon_sym_COLON] = ACTIONS(5653), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5643), + [anon_sym___declspec] = ACTIONS(5636), + [anon_sym___based] = ACTIONS(5636), + [anon_sym___cdecl] = ACTIONS(5636), + [anon_sym___clrcall] = ACTIONS(5636), + [anon_sym___stdcall] = ACTIONS(5636), + [anon_sym___fastcall] = ACTIONS(5636), + [anon_sym___thiscall] = ACTIONS(5636), + [anon_sym___vectorcall] = ACTIONS(5636), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_RBRACE] = ACTIONS(5638), + [anon_sym_signed] = ACTIONS(5659), + [anon_sym_unsigned] = ACTIONS(5659), + [anon_sym_long] = ACTIONS(5659), + [anon_sym_short] = ACTIONS(5659), + [anon_sym_LBRACK] = ACTIONS(5647), + [anon_sym_static] = ACTIONS(5636), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_register] = ACTIONS(5636), + [anon_sym_inline] = ACTIONS(5636), + [anon_sym___inline] = ACTIONS(5636), + [anon_sym___inline__] = ACTIONS(5636), + [anon_sym___forceinline] = ACTIONS(5636), + [anon_sym_thread_local] = ACTIONS(5636), + [anon_sym___thread] = ACTIONS(5636), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5636), + [anon_sym_volatile] = ACTIONS(5636), + [anon_sym_restrict] = ACTIONS(5636), + [anon_sym___restrict__] = ACTIONS(5636), + [anon_sym__Atomic] = ACTIONS(5636), + [anon_sym__Noreturn] = ACTIONS(5636), + [anon_sym_noreturn] = ACTIONS(5636), + [anon_sym__Nonnull] = ACTIONS(5636), + [anon_sym_mutable] = ACTIONS(5636), + [anon_sym_constinit] = ACTIONS(5636), + [anon_sym_consteval] = ACTIONS(5636), + [anon_sym_alignas] = ACTIONS(5636), + [anon_sym__Alignas] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5661), + [anon_sym_or_eq] = ACTIONS(5661), + [anon_sym_xor_eq] = ACTIONS(5661), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5645), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5645), + [anon_sym_not_eq] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5665), + [anon_sym_decltype] = ACTIONS(5667), + [anon_sym_template] = ACTIONS(5636), + [anon_sym_operator] = ACTIONS(5636), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_LBRACK_COLON] = ACTIONS(5643), + }, + [STATE(1120)] = { + [sym_string_literal] = STATE(4105), + [sym_decltype_auto] = STATE(4991), + [sym_template_argument_list] = STATE(2131), + [sym_raw_string_literal] = STATE(4105), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(5636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5669), + [anon_sym_TILDE] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5650), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5640), + [anon_sym___extension__] = ACTIONS(5636), + [anon_sym_virtual] = ACTIONS(5636), + [anon_sym_extern] = ACTIONS(5636), + [anon_sym___attribute__] = ACTIONS(5636), + [anon_sym___attribute] = ACTIONS(5636), + [anon_sym_COLON] = ACTIONS(5673), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5675), + [anon_sym___declspec] = ACTIONS(5636), + [anon_sym___based] = ACTIONS(5636), + [anon_sym___cdecl] = ACTIONS(5636), + [anon_sym___clrcall] = ACTIONS(5636), + [anon_sym___stdcall] = ACTIONS(5636), + [anon_sym___fastcall] = ACTIONS(5636), + [anon_sym___thiscall] = ACTIONS(5636), + [anon_sym___vectorcall] = ACTIONS(5636), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_RBRACE] = ACTIONS(5638), + [anon_sym_signed] = ACTIONS(5659), + [anon_sym_unsigned] = ACTIONS(5659), + [anon_sym_long] = ACTIONS(5659), + [anon_sym_short] = ACTIONS(5659), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_static] = ACTIONS(5636), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_register] = ACTIONS(5636), + [anon_sym_inline] = ACTIONS(5636), + [anon_sym___inline] = ACTIONS(5636), + [anon_sym___inline__] = ACTIONS(5636), + [anon_sym___forceinline] = ACTIONS(5636), + [anon_sym_thread_local] = ACTIONS(5636), + [anon_sym___thread] = ACTIONS(5636), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5636), + [anon_sym_volatile] = ACTIONS(5636), + [anon_sym_restrict] = ACTIONS(5636), + [anon_sym___restrict__] = ACTIONS(5636), + [anon_sym__Atomic] = ACTIONS(5636), + [anon_sym__Noreturn] = ACTIONS(5636), + [anon_sym_noreturn] = ACTIONS(5636), + [anon_sym__Nonnull] = ACTIONS(5636), + [anon_sym_mutable] = ACTIONS(5636), + [anon_sym_constinit] = ACTIONS(5636), + [anon_sym_consteval] = ACTIONS(5636), + [anon_sym_alignas] = ACTIONS(5636), + [anon_sym__Alignas] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5661), + [anon_sym_or_eq] = ACTIONS(5661), + [anon_sym_xor_eq] = ACTIONS(5661), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5645), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5645), + [anon_sym_not_eq] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5665), + [anon_sym_decltype] = ACTIONS(5667), + [anon_sym_template] = ACTIONS(5636), + [anon_sym_operator] = ACTIONS(5636), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_LBRACK_COLON] = ACTIONS(5643), + }, + [STATE(1121)] = { + [sym_expression] = STATE(6524), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1097)] = { - [sym_expression] = STATE(6787), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10342), - [sym_initializer_pair] = STATE(10342), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1122)] = { + [sym_expression] = STATE(6337), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1123)] = { + [sym_expression] = STATE(6758), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(1124)] = { + [sym_expression] = STATE(6619), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(9884), + [sym_initializer_pair] = STATE(9884), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_COMMA] = ACTIONS(5690), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5434), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5692), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -205904,7 +217881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -205925,8 +217902,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -205937,79 +217914,433 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1098)] = { - [sym_expression_statement] = STATE(4052), - [sym_expression] = STATE(6806), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10957), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_type_requirement] = STATE(1101), - [sym_compound_requirement] = STATE(1101), - [sym__requirement] = STATE(1101), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_requirement_seq_repeat1] = STATE(1101), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1125)] = { + [sym_string_literal] = STATE(4105), + [sym_decltype_auto] = STATE(4991), + [sym_template_argument_list] = STATE(2130), + [sym_raw_string_literal] = STATE(4105), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(5636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_TILDE] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5650), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5638), + [anon_sym___extension__] = ACTIONS(5636), + [anon_sym_virtual] = ACTIONS(5636), + [anon_sym_extern] = ACTIONS(5636), + [anon_sym___attribute__] = ACTIONS(5636), + [anon_sym___attribute] = ACTIONS(5636), + [anon_sym_COLON] = ACTIONS(5696), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5643), + [anon_sym___declspec] = ACTIONS(5636), + [anon_sym___based] = ACTIONS(5636), + [anon_sym___cdecl] = ACTIONS(5636), + [anon_sym___clrcall] = ACTIONS(5636), + [anon_sym___stdcall] = ACTIONS(5636), + [anon_sym___fastcall] = ACTIONS(5636), + [anon_sym___thiscall] = ACTIONS(5636), + [anon_sym___vectorcall] = ACTIONS(5636), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(5659), + [anon_sym_unsigned] = ACTIONS(5659), + [anon_sym_long] = ACTIONS(5659), + [anon_sym_short] = ACTIONS(5659), + [anon_sym_LBRACK] = ACTIONS(5647), + [anon_sym_static] = ACTIONS(5636), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_register] = ACTIONS(5636), + [anon_sym_inline] = ACTIONS(5636), + [anon_sym___inline] = ACTIONS(5636), + [anon_sym___inline__] = ACTIONS(5636), + [anon_sym___forceinline] = ACTIONS(5636), + [anon_sym_thread_local] = ACTIONS(5636), + [anon_sym___thread] = ACTIONS(5636), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5636), + [anon_sym_volatile] = ACTIONS(5636), + [anon_sym_restrict] = ACTIONS(5636), + [anon_sym___restrict__] = ACTIONS(5636), + [anon_sym__Atomic] = ACTIONS(5636), + [anon_sym__Noreturn] = ACTIONS(5636), + [anon_sym_noreturn] = ACTIONS(5636), + [anon_sym__Nonnull] = ACTIONS(5636), + [anon_sym_mutable] = ACTIONS(5636), + [anon_sym_constinit] = ACTIONS(5636), + [anon_sym_consteval] = ACTIONS(5636), + [anon_sym_alignas] = ACTIONS(5636), + [anon_sym__Alignas] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5661), + [anon_sym_or_eq] = ACTIONS(5661), + [anon_sym_xor_eq] = ACTIONS(5661), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5645), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5645), + [anon_sym_not_eq] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5665), + [anon_sym_decltype] = ACTIONS(5667), + [anon_sym_template] = ACTIONS(5636), + [anon_sym_operator] = ACTIONS(5636), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_LBRACK_COLON] = ACTIONS(5643), + }, + [STATE(1126)] = { + [sym_string_literal] = STATE(4105), + [sym_decltype_auto] = STATE(4991), + [sym_template_argument_list] = STATE(2130), + [sym_raw_string_literal] = STATE(4105), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(5636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_TILDE] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5650), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5638), + [anon_sym___extension__] = ACTIONS(5636), + [anon_sym_virtual] = ACTIONS(5636), + [anon_sym_extern] = ACTIONS(5636), + [anon_sym___attribute__] = ACTIONS(5636), + [anon_sym___attribute] = ACTIONS(5636), + [anon_sym_COLON] = ACTIONS(5698), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5643), + [anon_sym___declspec] = ACTIONS(5636), + [anon_sym___based] = ACTIONS(5636), + [anon_sym___cdecl] = ACTIONS(5636), + [anon_sym___clrcall] = ACTIONS(5636), + [anon_sym___stdcall] = ACTIONS(5636), + [anon_sym___fastcall] = ACTIONS(5636), + [anon_sym___thiscall] = ACTIONS(5636), + [anon_sym___vectorcall] = ACTIONS(5636), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(5659), + [anon_sym_unsigned] = ACTIONS(5659), + [anon_sym_long] = ACTIONS(5659), + [anon_sym_short] = ACTIONS(5659), + [anon_sym_LBRACK] = ACTIONS(5647), + [anon_sym_static] = ACTIONS(5636), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_register] = ACTIONS(5636), + [anon_sym_inline] = ACTIONS(5636), + [anon_sym___inline] = ACTIONS(5636), + [anon_sym___inline__] = ACTIONS(5636), + [anon_sym___forceinline] = ACTIONS(5636), + [anon_sym_thread_local] = ACTIONS(5636), + [anon_sym___thread] = ACTIONS(5636), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5636), + [anon_sym_volatile] = ACTIONS(5636), + [anon_sym_restrict] = ACTIONS(5636), + [anon_sym___restrict__] = ACTIONS(5636), + [anon_sym__Atomic] = ACTIONS(5636), + [anon_sym__Noreturn] = ACTIONS(5636), + [anon_sym_noreturn] = ACTIONS(5636), + [anon_sym__Nonnull] = ACTIONS(5636), + [anon_sym_mutable] = ACTIONS(5636), + [anon_sym_constinit] = ACTIONS(5636), + [anon_sym_consteval] = ACTIONS(5636), + [anon_sym_alignas] = ACTIONS(5636), + [anon_sym__Alignas] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5661), + [anon_sym_or_eq] = ACTIONS(5661), + [anon_sym_xor_eq] = ACTIONS(5661), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5645), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5645), + [anon_sym_not_eq] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5665), + [anon_sym_decltype] = ACTIONS(5667), + [anon_sym_template] = ACTIONS(5636), + [anon_sym_operator] = ACTIONS(5636), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_LBRACK_COLON] = ACTIONS(5643), + }, + [STATE(1127)] = { + [sym_string_literal] = STATE(4105), + [sym_decltype_auto] = STATE(4991), + [sym_template_argument_list] = STATE(2130), + [sym_raw_string_literal] = STATE(4105), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(5636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_RPAREN] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_TILDE] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5650), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5638), + [anon_sym___extension__] = ACTIONS(5636), + [anon_sym_virtual] = ACTIONS(5636), + [anon_sym_extern] = ACTIONS(5636), + [anon_sym___attribute__] = ACTIONS(5636), + [anon_sym___attribute] = ACTIONS(5636), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5643), + [anon_sym___declspec] = ACTIONS(5636), + [anon_sym___based] = ACTIONS(5636), + [anon_sym___cdecl] = ACTIONS(5636), + [anon_sym___clrcall] = ACTIONS(5636), + [anon_sym___stdcall] = ACTIONS(5636), + [anon_sym___fastcall] = ACTIONS(5636), + [anon_sym___thiscall] = ACTIONS(5636), + [anon_sym___vectorcall] = ACTIONS(5636), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(5659), + [anon_sym_unsigned] = ACTIONS(5659), + [anon_sym_long] = ACTIONS(5659), + [anon_sym_short] = ACTIONS(5659), + [anon_sym_LBRACK] = ACTIONS(5647), + [anon_sym_static] = ACTIONS(5636), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_register] = ACTIONS(5636), + [anon_sym_inline] = ACTIONS(5636), + [anon_sym___inline] = ACTIONS(5636), + [anon_sym___inline__] = ACTIONS(5636), + [anon_sym___forceinline] = ACTIONS(5636), + [anon_sym_thread_local] = ACTIONS(5636), + [anon_sym___thread] = ACTIONS(5636), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5636), + [anon_sym_volatile] = ACTIONS(5636), + [anon_sym_restrict] = ACTIONS(5636), + [anon_sym___restrict__] = ACTIONS(5636), + [anon_sym__Atomic] = ACTIONS(5636), + [anon_sym__Noreturn] = ACTIONS(5636), + [anon_sym_noreturn] = ACTIONS(5636), + [anon_sym__Nonnull] = ACTIONS(5636), + [anon_sym_mutable] = ACTIONS(5636), + [anon_sym_constinit] = ACTIONS(5636), + [anon_sym_consteval] = ACTIONS(5636), + [anon_sym_alignas] = ACTIONS(5636), + [anon_sym__Alignas] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5661), + [anon_sym_or_eq] = ACTIONS(5661), + [anon_sym_xor_eq] = ACTIONS(5661), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5645), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5645), + [anon_sym_not_eq] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5665), + [anon_sym_decltype] = ACTIONS(5667), + [anon_sym_template] = ACTIONS(5636), + [anon_sym_operator] = ACTIONS(5636), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_LBRACK_COLON] = ACTIONS(5643), + }, + [STATE(1128)] = { + [sym_expression] = STATE(6590), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10054), + [sym_initializer_pair] = STATE(10054), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_COMMA] = ACTIONS(5700), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5376), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5378), - [anon_sym_RBRACE] = ACTIONS(5436), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5702), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -206022,10 +218353,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5382), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -206042,8 +218374,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -206054,78 +218386,667 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1099)] = { - [sym_expression] = STATE(6787), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10342), - [sym_initializer_pair] = STATE(10342), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1129)] = { + [sym_string_literal] = STATE(4105), + [sym_decltype_auto] = STATE(4991), + [sym_template_argument_list] = STATE(2131), + [sym_raw_string_literal] = STATE(4105), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(5636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5669), + [anon_sym_TILDE] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5650), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5640), + [anon_sym___extension__] = ACTIONS(5636), + [anon_sym_virtual] = ACTIONS(5636), + [anon_sym_extern] = ACTIONS(5636), + [anon_sym___attribute__] = ACTIONS(5636), + [anon_sym___attribute] = ACTIONS(5636), + [anon_sym_COLON] = ACTIONS(5704), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5675), + [anon_sym___declspec] = ACTIONS(5636), + [anon_sym___based] = ACTIONS(5636), + [anon_sym___cdecl] = ACTIONS(5636), + [anon_sym___clrcall] = ACTIONS(5636), + [anon_sym___stdcall] = ACTIONS(5636), + [anon_sym___fastcall] = ACTIONS(5636), + [anon_sym___thiscall] = ACTIONS(5636), + [anon_sym___vectorcall] = ACTIONS(5636), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(5659), + [anon_sym_unsigned] = ACTIONS(5659), + [anon_sym_long] = ACTIONS(5659), + [anon_sym_short] = ACTIONS(5659), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_static] = ACTIONS(5636), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_register] = ACTIONS(5636), + [anon_sym_inline] = ACTIONS(5636), + [anon_sym___inline] = ACTIONS(5636), + [anon_sym___inline__] = ACTIONS(5636), + [anon_sym___forceinline] = ACTIONS(5636), + [anon_sym_thread_local] = ACTIONS(5636), + [anon_sym___thread] = ACTIONS(5636), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5636), + [anon_sym_volatile] = ACTIONS(5636), + [anon_sym_restrict] = ACTIONS(5636), + [anon_sym___restrict__] = ACTIONS(5636), + [anon_sym__Atomic] = ACTIONS(5636), + [anon_sym__Noreturn] = ACTIONS(5636), + [anon_sym_noreturn] = ACTIONS(5636), + [anon_sym__Nonnull] = ACTIONS(5636), + [anon_sym_mutable] = ACTIONS(5636), + [anon_sym_constinit] = ACTIONS(5636), + [anon_sym_consteval] = ACTIONS(5636), + [anon_sym_alignas] = ACTIONS(5636), + [anon_sym__Alignas] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5661), + [anon_sym_or_eq] = ACTIONS(5661), + [anon_sym_xor_eq] = ACTIONS(5661), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5645), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5645), + [anon_sym_not_eq] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5665), + [anon_sym_decltype] = ACTIONS(5667), + [anon_sym_template] = ACTIONS(5636), + [anon_sym_operator] = ACTIONS(5636), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_LBRACK_COLON] = ACTIONS(5643), + }, + [STATE(1130)] = { + [sym_string_literal] = STATE(4105), + [sym_decltype_auto] = STATE(4991), + [sym_template_argument_list] = STATE(2131), + [sym_raw_string_literal] = STATE(4105), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(5636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5669), + [anon_sym_TILDE] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5650), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5640), + [anon_sym___extension__] = ACTIONS(5636), + [anon_sym_virtual] = ACTIONS(5636), + [anon_sym_extern] = ACTIONS(5636), + [anon_sym___attribute__] = ACTIONS(5636), + [anon_sym___attribute] = ACTIONS(5636), + [anon_sym_COLON] = ACTIONS(5706), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5675), + [anon_sym___declspec] = ACTIONS(5636), + [anon_sym___based] = ACTIONS(5636), + [anon_sym___cdecl] = ACTIONS(5636), + [anon_sym___clrcall] = ACTIONS(5636), + [anon_sym___stdcall] = ACTIONS(5636), + [anon_sym___fastcall] = ACTIONS(5636), + [anon_sym___thiscall] = ACTIONS(5636), + [anon_sym___vectorcall] = ACTIONS(5636), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(5659), + [anon_sym_unsigned] = ACTIONS(5659), + [anon_sym_long] = ACTIONS(5659), + [anon_sym_short] = ACTIONS(5659), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_static] = ACTIONS(5636), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_register] = ACTIONS(5636), + [anon_sym_inline] = ACTIONS(5636), + [anon_sym___inline] = ACTIONS(5636), + [anon_sym___inline__] = ACTIONS(5636), + [anon_sym___forceinline] = ACTIONS(5636), + [anon_sym_thread_local] = ACTIONS(5636), + [anon_sym___thread] = ACTIONS(5636), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5636), + [anon_sym_volatile] = ACTIONS(5636), + [anon_sym_restrict] = ACTIONS(5636), + [anon_sym___restrict__] = ACTIONS(5636), + [anon_sym__Atomic] = ACTIONS(5636), + [anon_sym__Noreturn] = ACTIONS(5636), + [anon_sym_noreturn] = ACTIONS(5636), + [anon_sym__Nonnull] = ACTIONS(5636), + [anon_sym_mutable] = ACTIONS(5636), + [anon_sym_constinit] = ACTIONS(5636), + [anon_sym_consteval] = ACTIONS(5636), + [anon_sym_alignas] = ACTIONS(5636), + [anon_sym__Alignas] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5661), + [anon_sym_or_eq] = ACTIONS(5661), + [anon_sym_xor_eq] = ACTIONS(5661), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5645), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5645), + [anon_sym_not_eq] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5665), + [anon_sym_decltype] = ACTIONS(5667), + [anon_sym_template] = ACTIONS(5636), + [anon_sym_operator] = ACTIONS(5636), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_LBRACK_COLON] = ACTIONS(5643), + }, + [STATE(1131)] = { + [sym_expression] = STATE(5411), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1132)] = { + [sym_expression] = STATE(5413), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1133)] = { + [sym_expression] = STATE(6770), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(1134)] = { + [sym_expression] = STATE(6475), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(5682), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5438), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -206138,11 +219059,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), + [anon_sym_DASH_GT] = ACTIONS(5682), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -206159,9 +219080,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -206171,78 +219094,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1100)] = { - [sym_expression] = STATE(6787), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10342), - [sym_initializer_pair] = STATE(10342), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1135)] = { + [sym_expression] = STATE(6723), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10059), + [sym_initializer_pair] = STATE(10059), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_COMMA] = ACTIONS(5708), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5348), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5710), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -206255,7 +219179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -206276,8 +219200,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -206288,547 +219212,551 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1101)] = { - [sym_expression_statement] = STATE(4052), - [sym_expression] = STATE(6806), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10957), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_type_requirement] = STATE(1101), - [sym_compound_requirement] = STATE(1101), - [sym__requirement] = STATE(1101), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_requirement_seq_repeat1] = STATE(1101), - [sym_identifier] = ACTIONS(5440), - [anon_sym_LPAREN2] = ACTIONS(5443), - [anon_sym_BANG] = ACTIONS(5446), - [anon_sym_TILDE] = ACTIONS(5446), - [anon_sym_DASH] = ACTIONS(5449), - [anon_sym_PLUS] = ACTIONS(5449), - [anon_sym_STAR] = ACTIONS(5452), - [anon_sym_AMP] = ACTIONS(5452), - [anon_sym_SEMI] = ACTIONS(5455), - [anon_sym___extension__] = ACTIONS(5458), - [anon_sym_COLON_COLON] = ACTIONS(5461), - [anon_sym_LBRACE] = ACTIONS(5464), - [anon_sym_RBRACE] = ACTIONS(5467), - [anon_sym_LBRACK] = ACTIONS(5469), - [sym_primitive_type] = ACTIONS(5472), - [anon_sym_not] = ACTIONS(5449), - [anon_sym_compl] = ACTIONS(5449), - [anon_sym_DASH_DASH] = ACTIONS(5475), - [anon_sym_PLUS_PLUS] = ACTIONS(5475), - [anon_sym_sizeof] = ACTIONS(5478), - [anon_sym___alignof__] = ACTIONS(5481), - [anon_sym___alignof] = ACTIONS(5481), - [anon_sym__alignof] = ACTIONS(5481), - [anon_sym_alignof] = ACTIONS(5481), - [anon_sym__Alignof] = ACTIONS(5481), - [anon_sym_offsetof] = ACTIONS(5484), - [anon_sym__Generic] = ACTIONS(5487), - [anon_sym_typename] = ACTIONS(5490), - [anon_sym_asm] = ACTIONS(5493), - [anon_sym___asm__] = ACTIONS(5493), - [anon_sym___asm] = ACTIONS(5493), - [sym_number_literal] = ACTIONS(5496), - [anon_sym_L_SQUOTE] = ACTIONS(5499), - [anon_sym_u_SQUOTE] = ACTIONS(5499), - [anon_sym_U_SQUOTE] = ACTIONS(5499), - [anon_sym_u8_SQUOTE] = ACTIONS(5499), - [anon_sym_SQUOTE] = ACTIONS(5499), - [anon_sym_L_DQUOTE] = ACTIONS(5502), - [anon_sym_u_DQUOTE] = ACTIONS(5502), - [anon_sym_U_DQUOTE] = ACTIONS(5502), - [anon_sym_u8_DQUOTE] = ACTIONS(5502), - [anon_sym_DQUOTE] = ACTIONS(5502), - [sym_true] = ACTIONS(5505), - [sym_false] = ACTIONS(5505), - [anon_sym_NULL] = ACTIONS(5508), - [anon_sym_nullptr] = ACTIONS(5508), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5511), - [anon_sym_template] = ACTIONS(5514), - [anon_sym_delete] = ACTIONS(5517), - [anon_sym_R_DQUOTE] = ACTIONS(5520), - [anon_sym_LR_DQUOTE] = ACTIONS(5520), - [anon_sym_uR_DQUOTE] = ACTIONS(5520), - [anon_sym_UR_DQUOTE] = ACTIONS(5520), - [anon_sym_u8R_DQUOTE] = ACTIONS(5520), - [anon_sym_co_await] = ACTIONS(5523), - [anon_sym_new] = ACTIONS(5526), - [anon_sym_requires] = ACTIONS(5529), - [anon_sym_CARET_CARET] = ACTIONS(5532), - [anon_sym_LBRACK_COLON] = ACTIONS(5535), - [sym_this] = ACTIONS(5505), + [STATE(1136)] = { + [sym_string_literal] = STATE(4105), + [sym_decltype_auto] = STATE(4991), + [sym_template_argument_list] = STATE(2131), + [sym_raw_string_literal] = STATE(4105), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(5636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5669), + [anon_sym_TILDE] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5650), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5640), + [anon_sym___extension__] = ACTIONS(5636), + [anon_sym_virtual] = ACTIONS(5636), + [anon_sym_extern] = ACTIONS(5636), + [anon_sym___attribute__] = ACTIONS(5636), + [anon_sym___attribute] = ACTIONS(5636), + [anon_sym_COLON] = ACTIONS(5653), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5675), + [anon_sym___declspec] = ACTIONS(5636), + [anon_sym___based] = ACTIONS(5636), + [anon_sym___cdecl] = ACTIONS(5636), + [anon_sym___clrcall] = ACTIONS(5636), + [anon_sym___stdcall] = ACTIONS(5636), + [anon_sym___fastcall] = ACTIONS(5636), + [anon_sym___thiscall] = ACTIONS(5636), + [anon_sym___vectorcall] = ACTIONS(5636), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(5659), + [anon_sym_unsigned] = ACTIONS(5659), + [anon_sym_long] = ACTIONS(5659), + [anon_sym_short] = ACTIONS(5659), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_static] = ACTIONS(5636), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_register] = ACTIONS(5636), + [anon_sym_inline] = ACTIONS(5636), + [anon_sym___inline] = ACTIONS(5636), + [anon_sym___inline__] = ACTIONS(5636), + [anon_sym___forceinline] = ACTIONS(5636), + [anon_sym_thread_local] = ACTIONS(5636), + [anon_sym___thread] = ACTIONS(5636), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5636), + [anon_sym_volatile] = ACTIONS(5636), + [anon_sym_restrict] = ACTIONS(5636), + [anon_sym___restrict__] = ACTIONS(5636), + [anon_sym__Atomic] = ACTIONS(5636), + [anon_sym__Noreturn] = ACTIONS(5636), + [anon_sym_noreturn] = ACTIONS(5636), + [anon_sym__Nonnull] = ACTIONS(5636), + [anon_sym_mutable] = ACTIONS(5636), + [anon_sym_constinit] = ACTIONS(5636), + [anon_sym_consteval] = ACTIONS(5636), + [anon_sym_alignas] = ACTIONS(5636), + [anon_sym__Alignas] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5661), + [anon_sym_or_eq] = ACTIONS(5661), + [anon_sym_xor_eq] = ACTIONS(5661), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5645), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5645), + [anon_sym_not_eq] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5665), + [anon_sym_decltype] = ACTIONS(5667), + [anon_sym_template] = ACTIONS(5636), + [anon_sym_operator] = ACTIONS(5636), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_LBRACK_COLON] = ACTIONS(5643), }, - [STATE(1102)] = { - [sym_identifier] = ACTIONS(3608), - [anon_sym_LPAREN2] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3608), - [anon_sym_STAR] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_SEMI] = ACTIONS(3610), - [anon_sym___extension__] = ACTIONS(3608), - [anon_sym_typedef] = ACTIONS(3608), - [anon_sym_virtual] = ACTIONS(3608), - [anon_sym_extern] = ACTIONS(3608), - [anon_sym___attribute__] = ACTIONS(3608), - [anon_sym___attribute] = ACTIONS(3608), - [anon_sym_COLON_COLON] = ACTIONS(3610), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3610), - [anon_sym___declspec] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_signed] = ACTIONS(3608), - [anon_sym_unsigned] = ACTIONS(3608), - [anon_sym_long] = ACTIONS(3608), - [anon_sym_short] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_static] = ACTIONS(3608), - [anon_sym_register] = ACTIONS(3608), - [anon_sym_inline] = ACTIONS(3608), - [anon_sym___inline] = ACTIONS(3608), - [anon_sym___inline__] = ACTIONS(3608), - [anon_sym___forceinline] = ACTIONS(3608), - [anon_sym_thread_local] = ACTIONS(3608), - [anon_sym___thread] = ACTIONS(3608), - [anon_sym_const] = ACTIONS(3608), - [anon_sym_constexpr] = ACTIONS(3608), - [anon_sym_volatile] = ACTIONS(3608), - [anon_sym_restrict] = ACTIONS(3608), - [anon_sym___restrict__] = ACTIONS(3608), - [anon_sym__Atomic] = ACTIONS(3608), - [anon_sym__Noreturn] = ACTIONS(3608), - [anon_sym_noreturn] = ACTIONS(3608), - [anon_sym__Nonnull] = ACTIONS(3608), - [anon_sym_mutable] = ACTIONS(3608), - [anon_sym_constinit] = ACTIONS(3608), - [anon_sym_consteval] = ACTIONS(3608), - [anon_sym_alignas] = ACTIONS(3608), - [anon_sym__Alignas] = ACTIONS(3608), - [sym_primitive_type] = ACTIONS(3608), - [anon_sym_enum] = ACTIONS(3608), - [anon_sym_class] = ACTIONS(3608), - [anon_sym_struct] = ACTIONS(3608), - [anon_sym_union] = ACTIONS(3608), - [anon_sym_if] = ACTIONS(3608), - [anon_sym_else] = ACTIONS(3608), - [anon_sym_switch] = ACTIONS(3608), - [anon_sym_while] = ACTIONS(3608), - [anon_sym_do] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3608), - [anon_sym_return] = ACTIONS(3608), - [anon_sym_break] = ACTIONS(3608), - [anon_sym_continue] = ACTIONS(3608), - [anon_sym_goto] = ACTIONS(3608), - [anon_sym___try] = ACTIONS(3608), - [anon_sym___leave] = ACTIONS(3608), - [anon_sym_not] = ACTIONS(3608), - [anon_sym_compl] = ACTIONS(3608), - [anon_sym_DASH_DASH] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3610), - [anon_sym_sizeof] = ACTIONS(3608), - [anon_sym___alignof__] = ACTIONS(3608), - [anon_sym___alignof] = ACTIONS(3608), - [anon_sym__alignof] = ACTIONS(3608), - [anon_sym_alignof] = ACTIONS(3608), - [anon_sym__Alignof] = ACTIONS(3608), - [anon_sym_offsetof] = ACTIONS(3608), - [anon_sym__Generic] = ACTIONS(3608), - [anon_sym_typename] = ACTIONS(3608), - [anon_sym_asm] = ACTIONS(3608), - [anon_sym___asm__] = ACTIONS(3608), - [anon_sym___asm] = ACTIONS(3608), - [sym_number_literal] = ACTIONS(3610), - [anon_sym_L_SQUOTE] = ACTIONS(3610), - [anon_sym_u_SQUOTE] = ACTIONS(3610), - [anon_sym_U_SQUOTE] = ACTIONS(3610), - [anon_sym_u8_SQUOTE] = ACTIONS(3610), - [anon_sym_SQUOTE] = ACTIONS(3610), - [anon_sym_L_DQUOTE] = ACTIONS(3610), - [anon_sym_u_DQUOTE] = ACTIONS(3610), - [anon_sym_U_DQUOTE] = ACTIONS(3610), - [anon_sym_u8_DQUOTE] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [sym_true] = ACTIONS(3608), - [sym_false] = ACTIONS(3608), - [anon_sym_NULL] = ACTIONS(3608), - [anon_sym_nullptr] = ACTIONS(3608), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3608), - [anon_sym_decltype] = ACTIONS(3608), - [anon_sym_template] = ACTIONS(3608), - [anon_sym_try] = ACTIONS(3608), - [anon_sym_delete] = ACTIONS(3608), - [anon_sym_throw] = ACTIONS(3608), - [anon_sym_co_return] = ACTIONS(3608), - [anon_sym_co_yield] = ACTIONS(3608), - [anon_sym_catch] = ACTIONS(3608), - [anon_sym_R_DQUOTE] = ACTIONS(3610), - [anon_sym_LR_DQUOTE] = ACTIONS(3610), - [anon_sym_uR_DQUOTE] = ACTIONS(3610), - [anon_sym_UR_DQUOTE] = ACTIONS(3610), - [anon_sym_u8R_DQUOTE] = ACTIONS(3610), - [anon_sym_co_await] = ACTIONS(3608), - [anon_sym_new] = ACTIONS(3608), - [anon_sym_requires] = ACTIONS(3608), - [anon_sym_CARET_CARET] = ACTIONS(3610), - [anon_sym_LBRACK_COLON] = ACTIONS(3610), - [sym_this] = ACTIONS(3608), + [STATE(1137)] = { + [sym_expression] = STATE(5866), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), }, - [STATE(1103)] = { - [sym_identifier] = ACTIONS(5229), - [anon_sym_LPAREN2] = ACTIONS(5231), - [anon_sym_BANG] = ACTIONS(5231), - [anon_sym_TILDE] = ACTIONS(5231), - [anon_sym_DASH] = ACTIONS(5229), - [anon_sym_PLUS] = ACTIONS(5229), - [anon_sym_STAR] = ACTIONS(5231), - [anon_sym_AMP] = ACTIONS(5231), - [anon_sym_SEMI] = ACTIONS(5231), - [anon_sym___extension__] = ACTIONS(5229), - [anon_sym_virtual] = ACTIONS(5229), - [anon_sym_extern] = ACTIONS(5229), - [anon_sym___attribute__] = ACTIONS(5229), - [anon_sym___attribute] = ACTIONS(5229), - [anon_sym_using] = ACTIONS(5229), - [anon_sym_COLON_COLON] = ACTIONS(5231), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5231), - [anon_sym___declspec] = ACTIONS(5229), - [anon_sym_LBRACE] = ACTIONS(5231), - [anon_sym_signed] = ACTIONS(5229), - [anon_sym_unsigned] = ACTIONS(5229), - [anon_sym_long] = ACTIONS(5229), - [anon_sym_short] = ACTIONS(5229), - [anon_sym_LBRACK] = ACTIONS(5229), - [anon_sym_static] = ACTIONS(5229), - [anon_sym_register] = ACTIONS(5229), - [anon_sym_inline] = ACTIONS(5229), - [anon_sym___inline] = ACTIONS(5229), - [anon_sym___inline__] = ACTIONS(5229), - [anon_sym___forceinline] = ACTIONS(5229), - [anon_sym_thread_local] = ACTIONS(5229), - [anon_sym___thread] = ACTIONS(5229), - [anon_sym_const] = ACTIONS(5229), - [anon_sym_constexpr] = ACTIONS(5229), - [anon_sym_volatile] = ACTIONS(5229), - [anon_sym_restrict] = ACTIONS(5229), - [anon_sym___restrict__] = ACTIONS(5229), - [anon_sym__Atomic] = ACTIONS(5229), - [anon_sym__Noreturn] = ACTIONS(5229), - [anon_sym_noreturn] = ACTIONS(5229), - [anon_sym__Nonnull] = ACTIONS(5229), - [anon_sym_mutable] = ACTIONS(5229), - [anon_sym_constinit] = ACTIONS(5229), - [anon_sym_consteval] = ACTIONS(5229), - [anon_sym_alignas] = ACTIONS(5229), - [anon_sym__Alignas] = ACTIONS(5229), - [sym_primitive_type] = ACTIONS(5229), - [anon_sym_enum] = ACTIONS(5229), - [anon_sym_class] = ACTIONS(5229), - [anon_sym_struct] = ACTIONS(5229), - [anon_sym_union] = ACTIONS(5229), - [anon_sym_if] = ACTIONS(5229), - [anon_sym_switch] = ACTIONS(5229), - [anon_sym_case] = ACTIONS(5229), - [anon_sym_default] = ACTIONS(5229), - [anon_sym_while] = ACTIONS(5229), - [anon_sym_do] = ACTIONS(5229), - [anon_sym_for] = ACTIONS(5229), - [anon_sym_return] = ACTIONS(5229), - [anon_sym_break] = ACTIONS(5229), - [anon_sym_continue] = ACTIONS(5229), - [anon_sym_goto] = ACTIONS(5229), - [anon_sym___try] = ACTIONS(5229), - [anon_sym___leave] = ACTIONS(5229), - [anon_sym_not] = ACTIONS(5229), - [anon_sym_compl] = ACTIONS(5229), - [anon_sym_DASH_DASH] = ACTIONS(5231), - [anon_sym_PLUS_PLUS] = ACTIONS(5231), - [anon_sym_sizeof] = ACTIONS(5229), - [anon_sym___alignof__] = ACTIONS(5229), - [anon_sym___alignof] = ACTIONS(5229), - [anon_sym__alignof] = ACTIONS(5229), - [anon_sym_alignof] = ACTIONS(5229), - [anon_sym__Alignof] = ACTIONS(5229), - [anon_sym_offsetof] = ACTIONS(5229), - [anon_sym__Generic] = ACTIONS(5229), - [anon_sym_typename] = ACTIONS(5229), - [anon_sym_asm] = ACTIONS(5229), - [anon_sym___asm__] = ACTIONS(5229), - [anon_sym___asm] = ACTIONS(5229), - [sym_number_literal] = ACTIONS(5231), - [anon_sym_L_SQUOTE] = ACTIONS(5231), - [anon_sym_u_SQUOTE] = ACTIONS(5231), - [anon_sym_U_SQUOTE] = ACTIONS(5231), - [anon_sym_u8_SQUOTE] = ACTIONS(5231), - [anon_sym_SQUOTE] = ACTIONS(5231), - [anon_sym_L_DQUOTE] = ACTIONS(5231), - [anon_sym_u_DQUOTE] = ACTIONS(5231), - [anon_sym_U_DQUOTE] = ACTIONS(5231), - [anon_sym_u8_DQUOTE] = ACTIONS(5231), - [anon_sym_DQUOTE] = ACTIONS(5231), - [sym_true] = ACTIONS(5229), - [sym_false] = ACTIONS(5229), - [anon_sym_NULL] = ACTIONS(5229), - [anon_sym_nullptr] = ACTIONS(5229), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5229), - [anon_sym_decltype] = ACTIONS(5229), - [anon_sym_template] = ACTIONS(5229), - [anon_sym_try] = ACTIONS(5229), - [anon_sym_delete] = ACTIONS(5229), - [anon_sym_throw] = ACTIONS(5229), - [anon_sym_co_return] = ACTIONS(5229), - [anon_sym_co_yield] = ACTIONS(5229), - [anon_sym_R_DQUOTE] = ACTIONS(5231), - [anon_sym_LR_DQUOTE] = ACTIONS(5231), - [anon_sym_uR_DQUOTE] = ACTIONS(5231), - [anon_sym_UR_DQUOTE] = ACTIONS(5231), - [anon_sym_u8R_DQUOTE] = ACTIONS(5231), - [anon_sym_co_await] = ACTIONS(5229), - [anon_sym_new] = ACTIONS(5229), - [anon_sym_requires] = ACTIONS(5229), - [anon_sym_CARET_CARET] = ACTIONS(5231), - [anon_sym_LBRACK_COLON] = ACTIONS(5231), - [sym_this] = ACTIONS(5229), + [STATE(1138)] = { + [sym_expression] = STATE(4419), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [STATE(1104)] = { - [sym_else_clause] = STATE(1140), - [sym_identifier] = ACTIONS(3612), - [anon_sym_LPAREN2] = ACTIONS(3614), - [anon_sym_BANG] = ACTIONS(3614), - [anon_sym_TILDE] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_STAR] = ACTIONS(3614), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym_SEMI] = ACTIONS(3614), - [anon_sym___extension__] = ACTIONS(3612), - [anon_sym_typedef] = ACTIONS(3612), - [anon_sym_virtual] = ACTIONS(3612), - [anon_sym_extern] = ACTIONS(3612), - [anon_sym___attribute__] = ACTIONS(3612), - [anon_sym___attribute] = ACTIONS(3612), - [anon_sym_COLON_COLON] = ACTIONS(3614), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3614), - [anon_sym___declspec] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_signed] = ACTIONS(3612), - [anon_sym_unsigned] = ACTIONS(3612), - [anon_sym_long] = ACTIONS(3612), - [anon_sym_short] = ACTIONS(3612), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_static] = ACTIONS(3612), - [anon_sym_register] = ACTIONS(3612), - [anon_sym_inline] = ACTIONS(3612), - [anon_sym___inline] = ACTIONS(3612), - [anon_sym___inline__] = ACTIONS(3612), - [anon_sym___forceinline] = ACTIONS(3612), - [anon_sym_thread_local] = ACTIONS(3612), - [anon_sym___thread] = ACTIONS(3612), - [anon_sym_const] = ACTIONS(3612), - [anon_sym_constexpr] = ACTIONS(3612), - [anon_sym_volatile] = ACTIONS(3612), - [anon_sym_restrict] = ACTIONS(3612), - [anon_sym___restrict__] = ACTIONS(3612), - [anon_sym__Atomic] = ACTIONS(3612), - [anon_sym__Noreturn] = ACTIONS(3612), - [anon_sym_noreturn] = ACTIONS(3612), - [anon_sym__Nonnull] = ACTIONS(3612), - [anon_sym_mutable] = ACTIONS(3612), - [anon_sym_constinit] = ACTIONS(3612), - [anon_sym_consteval] = ACTIONS(3612), - [anon_sym_alignas] = ACTIONS(3612), - [anon_sym__Alignas] = ACTIONS(3612), - [sym_primitive_type] = ACTIONS(3612), - [anon_sym_enum] = ACTIONS(3612), - [anon_sym_class] = ACTIONS(3612), - [anon_sym_struct] = ACTIONS(3612), - [anon_sym_union] = ACTIONS(3612), - [anon_sym_if] = ACTIONS(3612), - [anon_sym_else] = ACTIONS(5402), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_while] = ACTIONS(3612), - [anon_sym_do] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3612), - [anon_sym_return] = ACTIONS(3612), - [anon_sym_break] = ACTIONS(3612), - [anon_sym_continue] = ACTIONS(3612), - [anon_sym_goto] = ACTIONS(3612), - [anon_sym___try] = ACTIONS(3612), - [anon_sym___leave] = ACTIONS(3612), - [anon_sym_not] = ACTIONS(3612), - [anon_sym_compl] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3614), - [anon_sym_sizeof] = ACTIONS(3612), - [anon_sym___alignof__] = ACTIONS(3612), - [anon_sym___alignof] = ACTIONS(3612), - [anon_sym__alignof] = ACTIONS(3612), - [anon_sym_alignof] = ACTIONS(3612), - [anon_sym__Alignof] = ACTIONS(3612), - [anon_sym_offsetof] = ACTIONS(3612), - [anon_sym__Generic] = ACTIONS(3612), - [anon_sym_typename] = ACTIONS(3612), - [anon_sym_asm] = ACTIONS(3612), - [anon_sym___asm__] = ACTIONS(3612), - [anon_sym___asm] = ACTIONS(3612), - [sym_number_literal] = ACTIONS(3614), - [anon_sym_L_SQUOTE] = ACTIONS(3614), - [anon_sym_u_SQUOTE] = ACTIONS(3614), - [anon_sym_U_SQUOTE] = ACTIONS(3614), - [anon_sym_u8_SQUOTE] = ACTIONS(3614), - [anon_sym_SQUOTE] = ACTIONS(3614), - [anon_sym_L_DQUOTE] = ACTIONS(3614), - [anon_sym_u_DQUOTE] = ACTIONS(3614), - [anon_sym_U_DQUOTE] = ACTIONS(3614), - [anon_sym_u8_DQUOTE] = ACTIONS(3614), - [anon_sym_DQUOTE] = ACTIONS(3614), - [sym_true] = ACTIONS(3612), - [sym_false] = ACTIONS(3612), - [anon_sym_NULL] = ACTIONS(3612), - [anon_sym_nullptr] = ACTIONS(3612), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3612), - [anon_sym_decltype] = ACTIONS(3612), - [anon_sym_template] = ACTIONS(3612), - [anon_sym_try] = ACTIONS(3612), - [anon_sym_delete] = ACTIONS(3612), - [anon_sym_throw] = ACTIONS(3612), - [anon_sym_co_return] = ACTIONS(3612), - [anon_sym_co_yield] = ACTIONS(3612), - [anon_sym_R_DQUOTE] = ACTIONS(3614), - [anon_sym_LR_DQUOTE] = ACTIONS(3614), - [anon_sym_uR_DQUOTE] = ACTIONS(3614), - [anon_sym_UR_DQUOTE] = ACTIONS(3614), - [anon_sym_u8R_DQUOTE] = ACTIONS(3614), - [anon_sym_co_await] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3612), - [anon_sym_requires] = ACTIONS(3612), - [anon_sym_CARET_CARET] = ACTIONS(3614), - [anon_sym_LBRACK_COLON] = ACTIONS(3614), - [sym_this] = ACTIONS(3612), + [STATE(1139)] = { + [sym_expression] = STATE(6313), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(1105)] = { - [sym_expression_statement] = STATE(4052), - [sym_expression] = STATE(6806), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10957), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_type_requirement] = STATE(1109), - [sym_compound_requirement] = STATE(1109), - [sym__requirement] = STATE(1109), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_requirement_seq_repeat1] = STATE(1109), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1140)] = { + [sym_expression] = STATE(6559), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(9686), + [sym_initializer_pair] = STATE(9686), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_COMMA] = ACTIONS(5712), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5376), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5378), - [anon_sym_RBRACE] = ACTIONS(5538), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5714), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -206841,10 +219769,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5382), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -206861,8 +219790,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -206873,79 +219802,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1106)] = { - [sym_expression_statement] = STATE(4052), - [sym_expression] = STATE(6806), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10957), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_type_requirement] = STATE(1101), - [sym_compound_requirement] = STATE(1101), - [sym__requirement] = STATE(1101), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_requirement_seq_repeat1] = STATE(1101), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1141)] = { + [sym_string_literal] = STATE(4105), + [sym_decltype_auto] = STATE(4991), + [sym_template_argument_list] = STATE(2130), + [sym_raw_string_literal] = STATE(4105), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(5636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_TILDE] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5650), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5638), + [anon_sym___extension__] = ACTIONS(5636), + [anon_sym_virtual] = ACTIONS(5636), + [anon_sym_extern] = ACTIONS(5636), + [anon_sym___attribute__] = ACTIONS(5636), + [anon_sym___attribute] = ACTIONS(5636), + [anon_sym_COLON] = ACTIONS(5716), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5643), + [anon_sym___declspec] = ACTIONS(5636), + [anon_sym___based] = ACTIONS(5636), + [anon_sym___cdecl] = ACTIONS(5636), + [anon_sym___clrcall] = ACTIONS(5636), + [anon_sym___stdcall] = ACTIONS(5636), + [anon_sym___fastcall] = ACTIONS(5636), + [anon_sym___thiscall] = ACTIONS(5636), + [anon_sym___vectorcall] = ACTIONS(5636), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(5659), + [anon_sym_unsigned] = ACTIONS(5659), + [anon_sym_long] = ACTIONS(5659), + [anon_sym_short] = ACTIONS(5659), + [anon_sym_LBRACK] = ACTIONS(5647), + [anon_sym_static] = ACTIONS(5636), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_register] = ACTIONS(5636), + [anon_sym_inline] = ACTIONS(5636), + [anon_sym___inline] = ACTIONS(5636), + [anon_sym___inline__] = ACTIONS(5636), + [anon_sym___forceinline] = ACTIONS(5636), + [anon_sym_thread_local] = ACTIONS(5636), + [anon_sym___thread] = ACTIONS(5636), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5636), + [anon_sym_volatile] = ACTIONS(5636), + [anon_sym_restrict] = ACTIONS(5636), + [anon_sym___restrict__] = ACTIONS(5636), + [anon_sym__Atomic] = ACTIONS(5636), + [anon_sym__Noreturn] = ACTIONS(5636), + [anon_sym_noreturn] = ACTIONS(5636), + [anon_sym__Nonnull] = ACTIONS(5636), + [anon_sym_mutable] = ACTIONS(5636), + [anon_sym_constinit] = ACTIONS(5636), + [anon_sym_consteval] = ACTIONS(5636), + [anon_sym_alignas] = ACTIONS(5636), + [anon_sym__Alignas] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5661), + [anon_sym_or_eq] = ACTIONS(5661), + [anon_sym_xor_eq] = ACTIONS(5661), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5645), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5645), + [anon_sym_not_eq] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5665), + [anon_sym_decltype] = ACTIONS(5667), + [anon_sym_template] = ACTIONS(5636), + [anon_sym_operator] = ACTIONS(5636), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_LBRACK_COLON] = ACTIONS(5643), + }, + [STATE(1142)] = { + [sym_expression] = STATE(6482), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(5682), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5376), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5378), - [anon_sym_RBRACE] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -206958,10 +220003,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5382), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DASH_GT] = ACTIONS(5682), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -206978,9 +220024,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -206990,313 +220038,551 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1107)] = { - [sym_identifier] = ACTIONS(2803), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2803), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym___extension__] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2803), - [anon_sym_virtual] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym___attribute__] = ACTIONS(2803), - [anon_sym___attribute] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_signed] = ACTIONS(2803), - [anon_sym_unsigned] = ACTIONS(2803), - [anon_sym_long] = ACTIONS(2803), - [anon_sym_short] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_register] = ACTIONS(2803), - [anon_sym_inline] = ACTIONS(2803), - [anon_sym___inline] = ACTIONS(2803), - [anon_sym___inline__] = ACTIONS(2803), - [anon_sym___forceinline] = ACTIONS(2803), - [anon_sym_thread_local] = ACTIONS(2803), - [anon_sym___thread] = ACTIONS(2803), - [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__Nonnull] = ACTIONS(2803), - [anon_sym_mutable] = ACTIONS(2803), - [anon_sym_constinit] = ACTIONS(2803), - [anon_sym_consteval] = ACTIONS(2803), - [anon_sym_alignas] = ACTIONS(2803), - [anon_sym__Alignas] = ACTIONS(2803), - [sym_primitive_type] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_if] = ACTIONS(2803), - [anon_sym_else] = ACTIONS(2803), - [anon_sym_switch] = ACTIONS(2803), - [anon_sym_while] = ACTIONS(2803), - [anon_sym_do] = ACTIONS(2803), - [anon_sym_for] = ACTIONS(2803), - [anon_sym_return] = ACTIONS(2803), - [anon_sym_break] = ACTIONS(2803), - [anon_sym_continue] = ACTIONS(2803), - [anon_sym_goto] = ACTIONS(2803), - [anon_sym___try] = ACTIONS(2803), - [anon_sym___leave] = ACTIONS(2803), - [anon_sym_not] = ACTIONS(2803), - [anon_sym_compl] = ACTIONS(2803), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_sizeof] = ACTIONS(2803), - [anon_sym___alignof__] = ACTIONS(2803), - [anon_sym___alignof] = ACTIONS(2803), - [anon_sym__alignof] = ACTIONS(2803), - [anon_sym_alignof] = ACTIONS(2803), - [anon_sym__Alignof] = ACTIONS(2803), - [anon_sym_offsetof] = ACTIONS(2803), - [anon_sym__Generic] = ACTIONS(2803), - [anon_sym_typename] = ACTIONS(2803), - [anon_sym_asm] = ACTIONS(2803), - [anon_sym___asm__] = ACTIONS(2803), - [anon_sym___asm] = ACTIONS(2803), - [sym_number_literal] = ACTIONS(2801), - [anon_sym_L_SQUOTE] = ACTIONS(2801), - [anon_sym_u_SQUOTE] = ACTIONS(2801), - [anon_sym_U_SQUOTE] = ACTIONS(2801), - [anon_sym_u8_SQUOTE] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2801), - [anon_sym_L_DQUOTE] = ACTIONS(2801), - [anon_sym_u_DQUOTE] = ACTIONS(2801), - [anon_sym_U_DQUOTE] = ACTIONS(2801), - [anon_sym_u8_DQUOTE] = ACTIONS(2801), - [anon_sym_DQUOTE] = ACTIONS(2801), - [sym_true] = ACTIONS(2803), - [sym_false] = ACTIONS(2803), - [anon_sym_NULL] = ACTIONS(2803), - [anon_sym_nullptr] = ACTIONS(2803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2803), - [anon_sym_decltype] = ACTIONS(2803), - [anon_sym_template] = ACTIONS(2803), - [anon_sym_try] = ACTIONS(2803), - [anon_sym_delete] = ACTIONS(2803), - [anon_sym_throw] = ACTIONS(2803), - [anon_sym_co_return] = ACTIONS(2803), - [anon_sym_co_yield] = ACTIONS(2803), - [anon_sym_catch] = ACTIONS(2803), - [anon_sym_R_DQUOTE] = ACTIONS(2801), - [anon_sym_LR_DQUOTE] = ACTIONS(2801), - [anon_sym_uR_DQUOTE] = ACTIONS(2801), - [anon_sym_UR_DQUOTE] = ACTIONS(2801), - [anon_sym_u8R_DQUOTE] = ACTIONS(2801), - [anon_sym_co_await] = ACTIONS(2803), - [anon_sym_new] = ACTIONS(2803), - [anon_sym_requires] = ACTIONS(2803), - [anon_sym_CARET_CARET] = ACTIONS(2801), - [anon_sym_LBRACK_COLON] = ACTIONS(2801), - [sym_this] = ACTIONS(2803), + [STATE(1143)] = { + [sym_string_literal] = STATE(4105), + [sym_decltype_auto] = STATE(4991), + [sym_template_argument_list] = STATE(2131), + [sym_raw_string_literal] = STATE(4105), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(5636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5669), + [anon_sym_TILDE] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5650), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5640), + [anon_sym___extension__] = ACTIONS(5636), + [anon_sym_virtual] = ACTIONS(5636), + [anon_sym_extern] = ACTIONS(5636), + [anon_sym___attribute__] = ACTIONS(5636), + [anon_sym___attribute] = ACTIONS(5636), + [anon_sym_COLON] = ACTIONS(5696), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5675), + [anon_sym___declspec] = ACTIONS(5636), + [anon_sym___based] = ACTIONS(5636), + [anon_sym___cdecl] = ACTIONS(5636), + [anon_sym___clrcall] = ACTIONS(5636), + [anon_sym___stdcall] = ACTIONS(5636), + [anon_sym___fastcall] = ACTIONS(5636), + [anon_sym___thiscall] = ACTIONS(5636), + [anon_sym___vectorcall] = ACTIONS(5636), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(5659), + [anon_sym_unsigned] = ACTIONS(5659), + [anon_sym_long] = ACTIONS(5659), + [anon_sym_short] = ACTIONS(5659), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_static] = ACTIONS(5636), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_register] = ACTIONS(5636), + [anon_sym_inline] = ACTIONS(5636), + [anon_sym___inline] = ACTIONS(5636), + [anon_sym___inline__] = ACTIONS(5636), + [anon_sym___forceinline] = ACTIONS(5636), + [anon_sym_thread_local] = ACTIONS(5636), + [anon_sym___thread] = ACTIONS(5636), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5636), + [anon_sym_volatile] = ACTIONS(5636), + [anon_sym_restrict] = ACTIONS(5636), + [anon_sym___restrict__] = ACTIONS(5636), + [anon_sym__Atomic] = ACTIONS(5636), + [anon_sym__Noreturn] = ACTIONS(5636), + [anon_sym_noreturn] = ACTIONS(5636), + [anon_sym__Nonnull] = ACTIONS(5636), + [anon_sym_mutable] = ACTIONS(5636), + [anon_sym_constinit] = ACTIONS(5636), + [anon_sym_consteval] = ACTIONS(5636), + [anon_sym_alignas] = ACTIONS(5636), + [anon_sym__Alignas] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5661), + [anon_sym_or_eq] = ACTIONS(5661), + [anon_sym_xor_eq] = ACTIONS(5661), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5645), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5645), + [anon_sym_not_eq] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5665), + [anon_sym_decltype] = ACTIONS(5667), + [anon_sym_template] = ACTIONS(5636), + [anon_sym_operator] = ACTIONS(5636), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_LBRACK_COLON] = ACTIONS(5643), }, - [STATE(1108)] = { - [sym_identifier] = ACTIONS(2795), - [anon_sym_LPAREN2] = ACTIONS(2793), - [anon_sym_BANG] = ACTIONS(2793), - [anon_sym_TILDE] = ACTIONS(2793), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2793), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_SEMI] = ACTIONS(2793), - [anon_sym___extension__] = ACTIONS(2795), - [anon_sym_typedef] = ACTIONS(2795), - [anon_sym_virtual] = ACTIONS(2795), - [anon_sym_extern] = ACTIONS(2795), - [anon_sym___attribute__] = ACTIONS(2795), - [anon_sym___attribute] = ACTIONS(2795), - [anon_sym_COLON_COLON] = ACTIONS(2793), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), - [anon_sym___declspec] = ACTIONS(2795), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_signed] = ACTIONS(2795), - [anon_sym_unsigned] = ACTIONS(2795), - [anon_sym_long] = ACTIONS(2795), - [anon_sym_short] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2795), - [anon_sym_static] = ACTIONS(2795), - [anon_sym_register] = ACTIONS(2795), - [anon_sym_inline] = ACTIONS(2795), - [anon_sym___inline] = ACTIONS(2795), - [anon_sym___inline__] = ACTIONS(2795), - [anon_sym___forceinline] = ACTIONS(2795), - [anon_sym_thread_local] = ACTIONS(2795), - [anon_sym___thread] = ACTIONS(2795), - [anon_sym_const] = ACTIONS(2795), - [anon_sym_constexpr] = ACTIONS(2795), - [anon_sym_volatile] = ACTIONS(2795), - [anon_sym_restrict] = ACTIONS(2795), - [anon_sym___restrict__] = ACTIONS(2795), - [anon_sym__Atomic] = ACTIONS(2795), - [anon_sym__Noreturn] = ACTIONS(2795), - [anon_sym_noreturn] = ACTIONS(2795), - [anon_sym__Nonnull] = ACTIONS(2795), - [anon_sym_mutable] = ACTIONS(2795), - [anon_sym_constinit] = ACTIONS(2795), - [anon_sym_consteval] = ACTIONS(2795), - [anon_sym_alignas] = ACTIONS(2795), - [anon_sym__Alignas] = ACTIONS(2795), - [sym_primitive_type] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2795), - [anon_sym_class] = ACTIONS(2795), - [anon_sym_struct] = ACTIONS(2795), - [anon_sym_union] = ACTIONS(2795), - [anon_sym_if] = ACTIONS(2795), - [anon_sym_else] = ACTIONS(2795), - [anon_sym_switch] = ACTIONS(2795), - [anon_sym_while] = ACTIONS(2795), - [anon_sym_do] = ACTIONS(2795), - [anon_sym_for] = ACTIONS(2795), - [anon_sym_return] = ACTIONS(2795), - [anon_sym_break] = ACTIONS(2795), - [anon_sym_continue] = ACTIONS(2795), - [anon_sym_goto] = ACTIONS(2795), - [anon_sym___try] = ACTIONS(2795), - [anon_sym___leave] = ACTIONS(2795), - [anon_sym_not] = ACTIONS(2795), - [anon_sym_compl] = ACTIONS(2795), - [anon_sym_DASH_DASH] = ACTIONS(2793), - [anon_sym_PLUS_PLUS] = ACTIONS(2793), - [anon_sym_sizeof] = ACTIONS(2795), - [anon_sym___alignof__] = ACTIONS(2795), - [anon_sym___alignof] = ACTIONS(2795), - [anon_sym__alignof] = ACTIONS(2795), - [anon_sym_alignof] = ACTIONS(2795), - [anon_sym__Alignof] = ACTIONS(2795), - [anon_sym_offsetof] = ACTIONS(2795), - [anon_sym__Generic] = ACTIONS(2795), - [anon_sym_typename] = ACTIONS(2795), - [anon_sym_asm] = ACTIONS(2795), - [anon_sym___asm__] = ACTIONS(2795), - [anon_sym___asm] = ACTIONS(2795), - [sym_number_literal] = ACTIONS(2793), - [anon_sym_L_SQUOTE] = ACTIONS(2793), - [anon_sym_u_SQUOTE] = ACTIONS(2793), - [anon_sym_U_SQUOTE] = ACTIONS(2793), - [anon_sym_u8_SQUOTE] = ACTIONS(2793), - [anon_sym_SQUOTE] = ACTIONS(2793), - [anon_sym_L_DQUOTE] = ACTIONS(2793), - [anon_sym_u_DQUOTE] = ACTIONS(2793), - [anon_sym_U_DQUOTE] = ACTIONS(2793), - [anon_sym_u8_DQUOTE] = ACTIONS(2793), - [anon_sym_DQUOTE] = ACTIONS(2793), - [sym_true] = ACTIONS(2795), - [sym_false] = ACTIONS(2795), - [anon_sym_NULL] = ACTIONS(2795), - [anon_sym_nullptr] = ACTIONS(2795), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2795), - [anon_sym_decltype] = ACTIONS(2795), - [anon_sym_template] = ACTIONS(2795), - [anon_sym_try] = ACTIONS(2795), - [anon_sym_delete] = ACTIONS(2795), - [anon_sym_throw] = ACTIONS(2795), - [anon_sym_co_return] = ACTIONS(2795), - [anon_sym_co_yield] = ACTIONS(2795), - [anon_sym_catch] = ACTIONS(2795), - [anon_sym_R_DQUOTE] = ACTIONS(2793), - [anon_sym_LR_DQUOTE] = ACTIONS(2793), - [anon_sym_uR_DQUOTE] = ACTIONS(2793), - [anon_sym_UR_DQUOTE] = ACTIONS(2793), - [anon_sym_u8R_DQUOTE] = ACTIONS(2793), - [anon_sym_co_await] = ACTIONS(2795), - [anon_sym_new] = ACTIONS(2795), - [anon_sym_requires] = ACTIONS(2795), - [anon_sym_CARET_CARET] = ACTIONS(2793), - [anon_sym_LBRACK_COLON] = ACTIONS(2793), - [sym_this] = ACTIONS(2795), + [STATE(1144)] = { + [sym_expression] = STATE(5492), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1109)] = { - [sym_expression_statement] = STATE(4052), - [sym_expression] = STATE(6806), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10957), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_type_requirement] = STATE(1101), - [sym_compound_requirement] = STATE(1101), - [sym__requirement] = STATE(1101), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_requirement_seq_repeat1] = STATE(1101), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1145)] = { + [sym_expression] = STATE(4973), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1146)] = { + [sym_expression] = STATE(4748), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1147)] = { + [sym_expression] = STATE(6628), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(9970), + [sym_initializer_pair] = STATE(9970), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_COMMA] = ACTIONS(5718), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5376), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5378), - [anon_sym_RBRACE] = ACTIONS(5542), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5720), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -207309,10 +220595,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5382), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -207329,8 +220616,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -207341,78 +220628,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1110)] = { - [sym_expression] = STATE(6787), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10342), - [sym_initializer_pair] = STATE(10342), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1148)] = { + [sym_expression] = STATE(6696), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10192), + [sym_initializer_pair] = STATE(10192), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_COMMA] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5544), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5724), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -207425,7 +220713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -207446,8 +220734,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -207458,78 +220746,551 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1111)] = { - [sym_expression] = STATE(6787), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10342), - [sym_initializer_pair] = STATE(10342), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1149)] = { + [sym_expression] = STATE(5865), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1150)] = { + [sym_expression] = STATE(5462), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1151)] = { + [sym_string_literal] = STATE(4105), + [sym_decltype_auto] = STATE(4991), + [sym_template_argument_list] = STATE(2130), + [sym_raw_string_literal] = STATE(4105), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(5636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_TILDE] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5650), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5638), + [anon_sym___extension__] = ACTIONS(5636), + [anon_sym_virtual] = ACTIONS(5636), + [anon_sym_extern] = ACTIONS(5636), + [anon_sym___attribute__] = ACTIONS(5636), + [anon_sym___attribute] = ACTIONS(5636), + [anon_sym_COLON] = ACTIONS(5704), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5643), + [anon_sym___declspec] = ACTIONS(5636), + [anon_sym___based] = ACTIONS(5636), + [anon_sym___cdecl] = ACTIONS(5636), + [anon_sym___clrcall] = ACTIONS(5636), + [anon_sym___stdcall] = ACTIONS(5636), + [anon_sym___fastcall] = ACTIONS(5636), + [anon_sym___thiscall] = ACTIONS(5636), + [anon_sym___vectorcall] = ACTIONS(5636), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(5659), + [anon_sym_unsigned] = ACTIONS(5659), + [anon_sym_long] = ACTIONS(5659), + [anon_sym_short] = ACTIONS(5659), + [anon_sym_LBRACK] = ACTIONS(5647), + [anon_sym_static] = ACTIONS(5636), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_register] = ACTIONS(5636), + [anon_sym_inline] = ACTIONS(5636), + [anon_sym___inline] = ACTIONS(5636), + [anon_sym___inline__] = ACTIONS(5636), + [anon_sym___forceinline] = ACTIONS(5636), + [anon_sym_thread_local] = ACTIONS(5636), + [anon_sym___thread] = ACTIONS(5636), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5636), + [anon_sym_volatile] = ACTIONS(5636), + [anon_sym_restrict] = ACTIONS(5636), + [anon_sym___restrict__] = ACTIONS(5636), + [anon_sym__Atomic] = ACTIONS(5636), + [anon_sym__Noreturn] = ACTIONS(5636), + [anon_sym_noreturn] = ACTIONS(5636), + [anon_sym__Nonnull] = ACTIONS(5636), + [anon_sym_mutable] = ACTIONS(5636), + [anon_sym_constinit] = ACTIONS(5636), + [anon_sym_consteval] = ACTIONS(5636), + [anon_sym_alignas] = ACTIONS(5636), + [anon_sym__Alignas] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5661), + [anon_sym_or_eq] = ACTIONS(5661), + [anon_sym_xor_eq] = ACTIONS(5661), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5645), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5645), + [anon_sym_not_eq] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5665), + [anon_sym_decltype] = ACTIONS(5667), + [anon_sym_template] = ACTIONS(5636), + [anon_sym_operator] = ACTIONS(5636), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_LBRACK_COLON] = ACTIONS(5643), + }, + [STATE(1152)] = { + [sym_expression] = STATE(4717), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1153)] = { + [sym_expression] = STATE(6605), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(9750), + [sym_initializer_pair] = STATE(9750), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_COMMA] = ACTIONS(5726), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5728), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -207542,7 +221303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -207563,8 +221324,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -207575,83 +221336,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1112)] = { - [sym_expression] = STATE(6787), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10342), - [sym_initializer_pair] = STATE(10342), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5548), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1154)] = { + [sym_expression] = STATE(6865), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -207659,11 +221419,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), + [anon_sym_DASH_GT] = ACTIONS(5682), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -207680,96 +221440,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1113)] = { - [sym_expression_statement] = STATE(4052), - [sym_expression] = STATE(6806), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10957), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_type_requirement] = STATE(1079), - [sym_compound_requirement] = STATE(1079), - [sym__requirement] = STATE(1079), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_requirement_seq_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5376), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5378), - [anon_sym_RBRACE] = ACTIONS(5550), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1155)] = { + [sym_expression] = STATE(6867), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -207777,10 +221537,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5382), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DASH_GT] = ACTIONS(5682), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -207797,90 +221558,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1114)] = { - [sym_expression] = STATE(6787), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10342), - [sym_initializer_pair] = STATE(10342), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1156)] = { + [sym_expression] = STATE(4413), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1157)] = { + [sym_expression] = STATE(6688), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(9956), + [sym_initializer_pair] = STATE(9956), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_COMMA] = ACTIONS(179), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5730), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -207893,7 +221775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -207914,8 +221796,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -207926,79 +221808,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1115)] = { - [sym_expression_statement] = STATE(4052), - [sym_expression] = STATE(6806), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10957), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_type_requirement] = STATE(1090), - [sym_compound_requirement] = STATE(1090), - [sym__requirement] = STATE(1090), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_requirement_seq_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1158)] = { + [sym_expression] = STATE(6687), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(9818), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10569), + [sym_initializer_pair] = STATE(10569), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5376), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5378), - [anon_sym_RBRACE] = ACTIONS(5554), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5732), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -208011,10 +221893,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5382), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -208031,8 +221914,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -208043,3910 +221926,672 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1116)] = { - [sym_identifier] = ACTIONS(3872), - [anon_sym_LPAREN2] = ACTIONS(3874), - [anon_sym_BANG] = ACTIONS(3874), - [anon_sym_TILDE] = ACTIONS(3874), - [anon_sym_DASH] = ACTIONS(3872), - [anon_sym_PLUS] = ACTIONS(3872), - [anon_sym_STAR] = ACTIONS(3874), - [anon_sym_AMP] = ACTIONS(3874), - [anon_sym_SEMI] = ACTIONS(3874), - [anon_sym___extension__] = ACTIONS(3872), - [anon_sym_typedef] = ACTIONS(3872), - [anon_sym_virtual] = ACTIONS(3872), - [anon_sym_extern] = ACTIONS(3872), - [anon_sym___attribute__] = ACTIONS(3872), - [anon_sym___attribute] = ACTIONS(3872), - [anon_sym_COLON_COLON] = ACTIONS(3874), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3874), - [anon_sym___declspec] = ACTIONS(3872), - [anon_sym_LBRACE] = ACTIONS(3874), - [anon_sym_signed] = ACTIONS(3872), - [anon_sym_unsigned] = ACTIONS(3872), - [anon_sym_long] = ACTIONS(3872), - [anon_sym_short] = ACTIONS(3872), - [anon_sym_LBRACK] = ACTIONS(3872), - [anon_sym_static] = ACTIONS(3872), - [anon_sym_register] = ACTIONS(3872), - [anon_sym_inline] = ACTIONS(3872), - [anon_sym___inline] = ACTIONS(3872), - [anon_sym___inline__] = ACTIONS(3872), - [anon_sym___forceinline] = ACTIONS(3872), - [anon_sym_thread_local] = ACTIONS(3872), - [anon_sym___thread] = ACTIONS(3872), - [anon_sym_const] = ACTIONS(3872), - [anon_sym_constexpr] = ACTIONS(3872), - [anon_sym_volatile] = ACTIONS(3872), - [anon_sym_restrict] = ACTIONS(3872), - [anon_sym___restrict__] = ACTIONS(3872), - [anon_sym__Atomic] = ACTIONS(3872), - [anon_sym__Noreturn] = ACTIONS(3872), - [anon_sym_noreturn] = ACTIONS(3872), - [anon_sym__Nonnull] = ACTIONS(3872), - [anon_sym_mutable] = ACTIONS(3872), - [anon_sym_constinit] = ACTIONS(3872), - [anon_sym_consteval] = ACTIONS(3872), - [anon_sym_alignas] = ACTIONS(3872), - [anon_sym__Alignas] = ACTIONS(3872), - [sym_primitive_type] = ACTIONS(3872), - [anon_sym_enum] = ACTIONS(3872), - [anon_sym_class] = ACTIONS(3872), - [anon_sym_struct] = ACTIONS(3872), - [anon_sym_union] = ACTIONS(3872), - [anon_sym_if] = ACTIONS(3872), - [anon_sym_else] = ACTIONS(3872), - [anon_sym_switch] = ACTIONS(3872), - [anon_sym_while] = ACTIONS(3872), - [anon_sym_do] = ACTIONS(3872), - [anon_sym_for] = ACTIONS(3872), - [anon_sym_return] = ACTIONS(3872), - [anon_sym_break] = ACTIONS(3872), - [anon_sym_continue] = ACTIONS(3872), - [anon_sym_goto] = ACTIONS(3872), - [anon_sym___try] = ACTIONS(3872), - [anon_sym___leave] = ACTIONS(3872), - [anon_sym_not] = ACTIONS(3872), - [anon_sym_compl] = ACTIONS(3872), - [anon_sym_DASH_DASH] = ACTIONS(3874), - [anon_sym_PLUS_PLUS] = ACTIONS(3874), - [anon_sym_sizeof] = ACTIONS(3872), - [anon_sym___alignof__] = ACTIONS(3872), - [anon_sym___alignof] = ACTIONS(3872), - [anon_sym__alignof] = ACTIONS(3872), - [anon_sym_alignof] = ACTIONS(3872), - [anon_sym__Alignof] = ACTIONS(3872), - [anon_sym_offsetof] = ACTIONS(3872), - [anon_sym__Generic] = ACTIONS(3872), - [anon_sym_typename] = ACTIONS(3872), - [anon_sym_asm] = ACTIONS(3872), - [anon_sym___asm__] = ACTIONS(3872), - [anon_sym___asm] = ACTIONS(3872), - [sym_number_literal] = ACTIONS(3874), - [anon_sym_L_SQUOTE] = ACTIONS(3874), - [anon_sym_u_SQUOTE] = ACTIONS(3874), - [anon_sym_U_SQUOTE] = ACTIONS(3874), - [anon_sym_u8_SQUOTE] = ACTIONS(3874), - [anon_sym_SQUOTE] = ACTIONS(3874), - [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(3872), - [sym_false] = ACTIONS(3872), - [anon_sym_NULL] = ACTIONS(3872), - [anon_sym_nullptr] = ACTIONS(3872), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3872), - [anon_sym_decltype] = ACTIONS(3872), - [anon_sym_template] = ACTIONS(3872), - [anon_sym_try] = ACTIONS(3872), - [anon_sym_delete] = ACTIONS(3872), - [anon_sym_throw] = ACTIONS(3872), - [anon_sym_co_return] = ACTIONS(3872), - [anon_sym_co_yield] = ACTIONS(3872), - [anon_sym_R_DQUOTE] = ACTIONS(3874), - [anon_sym_LR_DQUOTE] = ACTIONS(3874), - [anon_sym_uR_DQUOTE] = ACTIONS(3874), - [anon_sym_UR_DQUOTE] = ACTIONS(3874), - [anon_sym_u8R_DQUOTE] = ACTIONS(3874), - [anon_sym_co_await] = ACTIONS(3872), - [anon_sym_new] = ACTIONS(3872), - [anon_sym_requires] = ACTIONS(3872), - [anon_sym_CARET_CARET] = ACTIONS(3874), - [anon_sym_LBRACK_COLON] = ACTIONS(3874), - [sym_this] = ACTIONS(3872), - }, - [STATE(1117)] = { - [sym_identifier] = ACTIONS(3868), - [anon_sym_LPAREN2] = ACTIONS(3870), - [anon_sym_BANG] = ACTIONS(3870), - [anon_sym_TILDE] = ACTIONS(3870), - [anon_sym_DASH] = ACTIONS(3868), - [anon_sym_PLUS] = ACTIONS(3868), - [anon_sym_STAR] = ACTIONS(3870), - [anon_sym_AMP] = ACTIONS(3870), - [anon_sym_SEMI] = ACTIONS(3870), - [anon_sym___extension__] = ACTIONS(3868), - [anon_sym_typedef] = ACTIONS(3868), - [anon_sym_virtual] = ACTIONS(3868), - [anon_sym_extern] = ACTIONS(3868), - [anon_sym___attribute__] = ACTIONS(3868), - [anon_sym___attribute] = ACTIONS(3868), - [anon_sym_COLON_COLON] = ACTIONS(3870), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3870), - [anon_sym___declspec] = ACTIONS(3868), - [anon_sym_LBRACE] = ACTIONS(3870), - [anon_sym_signed] = ACTIONS(3868), - [anon_sym_unsigned] = ACTIONS(3868), - [anon_sym_long] = ACTIONS(3868), - [anon_sym_short] = ACTIONS(3868), - [anon_sym_LBRACK] = ACTIONS(3868), - [anon_sym_static] = ACTIONS(3868), - [anon_sym_register] = ACTIONS(3868), - [anon_sym_inline] = ACTIONS(3868), - [anon_sym___inline] = ACTIONS(3868), - [anon_sym___inline__] = ACTIONS(3868), - [anon_sym___forceinline] = ACTIONS(3868), - [anon_sym_thread_local] = ACTIONS(3868), - [anon_sym___thread] = ACTIONS(3868), - [anon_sym_const] = ACTIONS(3868), - [anon_sym_constexpr] = ACTIONS(3868), - [anon_sym_volatile] = ACTIONS(3868), - [anon_sym_restrict] = ACTIONS(3868), - [anon_sym___restrict__] = ACTIONS(3868), - [anon_sym__Atomic] = ACTIONS(3868), - [anon_sym__Noreturn] = ACTIONS(3868), - [anon_sym_noreturn] = ACTIONS(3868), - [anon_sym__Nonnull] = ACTIONS(3868), - [anon_sym_mutable] = ACTIONS(3868), - [anon_sym_constinit] = ACTIONS(3868), - [anon_sym_consteval] = ACTIONS(3868), - [anon_sym_alignas] = ACTIONS(3868), - [anon_sym__Alignas] = ACTIONS(3868), - [sym_primitive_type] = ACTIONS(3868), - [anon_sym_enum] = ACTIONS(3868), - [anon_sym_class] = ACTIONS(3868), - [anon_sym_struct] = ACTIONS(3868), - [anon_sym_union] = ACTIONS(3868), - [anon_sym_if] = ACTIONS(3868), - [anon_sym_else] = ACTIONS(3868), - [anon_sym_switch] = ACTIONS(3868), - [anon_sym_while] = ACTIONS(3868), - [anon_sym_do] = ACTIONS(3868), - [anon_sym_for] = ACTIONS(3868), - [anon_sym_return] = ACTIONS(3868), - [anon_sym_break] = ACTIONS(3868), - [anon_sym_continue] = ACTIONS(3868), - [anon_sym_goto] = ACTIONS(3868), - [anon_sym___try] = ACTIONS(3868), - [anon_sym___leave] = ACTIONS(3868), - [anon_sym_not] = ACTIONS(3868), - [anon_sym_compl] = ACTIONS(3868), - [anon_sym_DASH_DASH] = ACTIONS(3870), - [anon_sym_PLUS_PLUS] = ACTIONS(3870), - [anon_sym_sizeof] = ACTIONS(3868), - [anon_sym___alignof__] = ACTIONS(3868), - [anon_sym___alignof] = ACTIONS(3868), - [anon_sym__alignof] = ACTIONS(3868), - [anon_sym_alignof] = ACTIONS(3868), - [anon_sym__Alignof] = ACTIONS(3868), - [anon_sym_offsetof] = ACTIONS(3868), - [anon_sym__Generic] = ACTIONS(3868), - [anon_sym_typename] = ACTIONS(3868), - [anon_sym_asm] = ACTIONS(3868), - [anon_sym___asm__] = ACTIONS(3868), - [anon_sym___asm] = ACTIONS(3868), - [sym_number_literal] = ACTIONS(3870), - [anon_sym_L_SQUOTE] = ACTIONS(3870), - [anon_sym_u_SQUOTE] = ACTIONS(3870), - [anon_sym_U_SQUOTE] = ACTIONS(3870), - [anon_sym_u8_SQUOTE] = ACTIONS(3870), - [anon_sym_SQUOTE] = ACTIONS(3870), - [anon_sym_L_DQUOTE] = ACTIONS(3870), - [anon_sym_u_DQUOTE] = ACTIONS(3870), - [anon_sym_U_DQUOTE] = ACTIONS(3870), - [anon_sym_u8_DQUOTE] = ACTIONS(3870), - [anon_sym_DQUOTE] = ACTIONS(3870), - [sym_true] = ACTIONS(3868), - [sym_false] = ACTIONS(3868), - [anon_sym_NULL] = ACTIONS(3868), - [anon_sym_nullptr] = ACTIONS(3868), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3868), - [anon_sym_decltype] = ACTIONS(3868), - [anon_sym_template] = ACTIONS(3868), - [anon_sym_try] = ACTIONS(3868), - [anon_sym_delete] = ACTIONS(3868), - [anon_sym_throw] = ACTIONS(3868), - [anon_sym_co_return] = ACTIONS(3868), - [anon_sym_co_yield] = ACTIONS(3868), - [anon_sym_R_DQUOTE] = ACTIONS(3870), - [anon_sym_LR_DQUOTE] = ACTIONS(3870), - [anon_sym_uR_DQUOTE] = ACTIONS(3870), - [anon_sym_UR_DQUOTE] = ACTIONS(3870), - [anon_sym_u8R_DQUOTE] = ACTIONS(3870), - [anon_sym_co_await] = ACTIONS(3868), - [anon_sym_new] = ACTIONS(3868), - [anon_sym_requires] = ACTIONS(3868), - [anon_sym_CARET_CARET] = ACTIONS(3870), - [anon_sym_LBRACK_COLON] = ACTIONS(3870), - [sym_this] = ACTIONS(3868), - }, - [STATE(1118)] = { - [sym_identifier] = ACTIONS(3890), - [anon_sym_LPAREN2] = ACTIONS(3892), - [anon_sym_BANG] = ACTIONS(3892), - [anon_sym_TILDE] = ACTIONS(3892), - [anon_sym_DASH] = ACTIONS(3890), - [anon_sym_PLUS] = ACTIONS(3890), - [anon_sym_STAR] = ACTIONS(3892), - [anon_sym_AMP] = ACTIONS(3892), - [anon_sym_SEMI] = ACTIONS(3892), - [anon_sym___extension__] = ACTIONS(3890), - [anon_sym_typedef] = ACTIONS(3890), - [anon_sym_virtual] = ACTIONS(3890), - [anon_sym_extern] = ACTIONS(3890), - [anon_sym___attribute__] = ACTIONS(3890), - [anon_sym___attribute] = ACTIONS(3890), - [anon_sym_COLON_COLON] = ACTIONS(3892), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3892), - [anon_sym___declspec] = ACTIONS(3890), - [anon_sym_LBRACE] = ACTIONS(3892), - [anon_sym_signed] = ACTIONS(3890), - [anon_sym_unsigned] = ACTIONS(3890), - [anon_sym_long] = ACTIONS(3890), - [anon_sym_short] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_static] = ACTIONS(3890), - [anon_sym_register] = ACTIONS(3890), - [anon_sym_inline] = ACTIONS(3890), - [anon_sym___inline] = ACTIONS(3890), - [anon_sym___inline__] = ACTIONS(3890), - [anon_sym___forceinline] = ACTIONS(3890), - [anon_sym_thread_local] = ACTIONS(3890), - [anon_sym___thread] = ACTIONS(3890), - [anon_sym_const] = ACTIONS(3890), - [anon_sym_constexpr] = ACTIONS(3890), - [anon_sym_volatile] = ACTIONS(3890), - [anon_sym_restrict] = ACTIONS(3890), - [anon_sym___restrict__] = ACTIONS(3890), - [anon_sym__Atomic] = ACTIONS(3890), - [anon_sym__Noreturn] = ACTIONS(3890), - [anon_sym_noreturn] = ACTIONS(3890), - [anon_sym__Nonnull] = ACTIONS(3890), - [anon_sym_mutable] = ACTIONS(3890), - [anon_sym_constinit] = ACTIONS(3890), - [anon_sym_consteval] = ACTIONS(3890), - [anon_sym_alignas] = ACTIONS(3890), - [anon_sym__Alignas] = ACTIONS(3890), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_enum] = ACTIONS(3890), - [anon_sym_class] = ACTIONS(3890), - [anon_sym_struct] = ACTIONS(3890), - [anon_sym_union] = ACTIONS(3890), - [anon_sym_if] = ACTIONS(3890), - [anon_sym_else] = ACTIONS(3890), - [anon_sym_switch] = ACTIONS(3890), - [anon_sym_while] = ACTIONS(3890), - [anon_sym_do] = ACTIONS(3890), - [anon_sym_for] = ACTIONS(3890), - [anon_sym_return] = ACTIONS(3890), - [anon_sym_break] = ACTIONS(3890), - [anon_sym_continue] = ACTIONS(3890), - [anon_sym_goto] = ACTIONS(3890), - [anon_sym___try] = ACTIONS(3890), - [anon_sym___leave] = ACTIONS(3890), - [anon_sym_not] = ACTIONS(3890), - [anon_sym_compl] = ACTIONS(3890), - [anon_sym_DASH_DASH] = ACTIONS(3892), - [anon_sym_PLUS_PLUS] = ACTIONS(3892), - [anon_sym_sizeof] = ACTIONS(3890), - [anon_sym___alignof__] = ACTIONS(3890), - [anon_sym___alignof] = ACTIONS(3890), - [anon_sym__alignof] = ACTIONS(3890), - [anon_sym_alignof] = ACTIONS(3890), - [anon_sym__Alignof] = ACTIONS(3890), - [anon_sym_offsetof] = ACTIONS(3890), - [anon_sym__Generic] = ACTIONS(3890), - [anon_sym_typename] = ACTIONS(3890), - [anon_sym_asm] = ACTIONS(3890), - [anon_sym___asm__] = ACTIONS(3890), - [anon_sym___asm] = ACTIONS(3890), - [sym_number_literal] = ACTIONS(3892), - [anon_sym_L_SQUOTE] = ACTIONS(3892), - [anon_sym_u_SQUOTE] = ACTIONS(3892), - [anon_sym_U_SQUOTE] = ACTIONS(3892), - [anon_sym_u8_SQUOTE] = ACTIONS(3892), - [anon_sym_SQUOTE] = ACTIONS(3892), - [anon_sym_L_DQUOTE] = ACTIONS(3892), - [anon_sym_u_DQUOTE] = ACTIONS(3892), - [anon_sym_U_DQUOTE] = ACTIONS(3892), - [anon_sym_u8_DQUOTE] = ACTIONS(3892), - [anon_sym_DQUOTE] = ACTIONS(3892), - [sym_true] = ACTIONS(3890), - [sym_false] = ACTIONS(3890), - [anon_sym_NULL] = ACTIONS(3890), - [anon_sym_nullptr] = ACTIONS(3890), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3890), - [anon_sym_decltype] = ACTIONS(3890), - [anon_sym_template] = ACTIONS(3890), - [anon_sym_try] = ACTIONS(3890), - [anon_sym_delete] = ACTIONS(3890), - [anon_sym_throw] = ACTIONS(3890), - [anon_sym_co_return] = ACTIONS(3890), - [anon_sym_co_yield] = ACTIONS(3890), - [anon_sym_R_DQUOTE] = ACTIONS(3892), - [anon_sym_LR_DQUOTE] = ACTIONS(3892), - [anon_sym_uR_DQUOTE] = ACTIONS(3892), - [anon_sym_UR_DQUOTE] = ACTIONS(3892), - [anon_sym_u8R_DQUOTE] = ACTIONS(3892), - [anon_sym_co_await] = ACTIONS(3890), - [anon_sym_new] = ACTIONS(3890), - [anon_sym_requires] = ACTIONS(3890), - [anon_sym_CARET_CARET] = ACTIONS(3892), - [anon_sym_LBRACK_COLON] = ACTIONS(3892), - [sym_this] = ACTIONS(3890), - }, - [STATE(1119)] = { - [sym_identifier] = ACTIONS(3636), - [anon_sym_LPAREN2] = ACTIONS(3638), - [anon_sym_BANG] = ACTIONS(3638), - [anon_sym_TILDE] = ACTIONS(3638), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3638), - [anon_sym_AMP] = ACTIONS(3638), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym___extension__] = ACTIONS(3636), - [anon_sym_typedef] = ACTIONS(3636), - [anon_sym_virtual] = ACTIONS(3636), - [anon_sym_extern] = ACTIONS(3636), - [anon_sym___attribute__] = ACTIONS(3636), - [anon_sym___attribute] = ACTIONS(3636), - [anon_sym_COLON_COLON] = ACTIONS(3638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3638), - [anon_sym___declspec] = ACTIONS(3636), - [anon_sym_LBRACE] = ACTIONS(3638), - [anon_sym_signed] = ACTIONS(3636), - [anon_sym_unsigned] = ACTIONS(3636), - [anon_sym_long] = ACTIONS(3636), - [anon_sym_short] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_static] = ACTIONS(3636), - [anon_sym_register] = ACTIONS(3636), - [anon_sym_inline] = ACTIONS(3636), - [anon_sym___inline] = ACTIONS(3636), - [anon_sym___inline__] = ACTIONS(3636), - [anon_sym___forceinline] = ACTIONS(3636), - [anon_sym_thread_local] = ACTIONS(3636), - [anon_sym___thread] = ACTIONS(3636), - [anon_sym_const] = ACTIONS(3636), - [anon_sym_constexpr] = ACTIONS(3636), - [anon_sym_volatile] = ACTIONS(3636), - [anon_sym_restrict] = ACTIONS(3636), - [anon_sym___restrict__] = ACTIONS(3636), - [anon_sym__Atomic] = ACTIONS(3636), - [anon_sym__Noreturn] = ACTIONS(3636), - [anon_sym_noreturn] = ACTIONS(3636), - [anon_sym__Nonnull] = ACTIONS(3636), - [anon_sym_mutable] = ACTIONS(3636), - [anon_sym_constinit] = ACTIONS(3636), - [anon_sym_consteval] = ACTIONS(3636), - [anon_sym_alignas] = ACTIONS(3636), - [anon_sym__Alignas] = ACTIONS(3636), - [sym_primitive_type] = ACTIONS(3636), - [anon_sym_enum] = ACTIONS(3636), - [anon_sym_class] = ACTIONS(3636), - [anon_sym_struct] = ACTIONS(3636), - [anon_sym_union] = ACTIONS(3636), - [anon_sym_if] = ACTIONS(3636), - [anon_sym_else] = ACTIONS(3636), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_while] = ACTIONS(3636), - [anon_sym_do] = ACTIONS(3636), - [anon_sym_for] = ACTIONS(3636), - [anon_sym_return] = ACTIONS(3636), - [anon_sym_break] = ACTIONS(3636), - [anon_sym_continue] = ACTIONS(3636), - [anon_sym_goto] = ACTIONS(3636), - [anon_sym___try] = ACTIONS(3636), - [anon_sym___leave] = ACTIONS(3636), - [anon_sym_not] = ACTIONS(3636), - [anon_sym_compl] = ACTIONS(3636), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_sizeof] = ACTIONS(3636), - [anon_sym___alignof__] = ACTIONS(3636), - [anon_sym___alignof] = ACTIONS(3636), - [anon_sym__alignof] = ACTIONS(3636), - [anon_sym_alignof] = ACTIONS(3636), - [anon_sym__Alignof] = ACTIONS(3636), - [anon_sym_offsetof] = ACTIONS(3636), - [anon_sym__Generic] = ACTIONS(3636), - [anon_sym_typename] = ACTIONS(3636), - [anon_sym_asm] = ACTIONS(3636), - [anon_sym___asm__] = ACTIONS(3636), - [anon_sym___asm] = ACTIONS(3636), - [sym_number_literal] = ACTIONS(3638), - [anon_sym_L_SQUOTE] = ACTIONS(3638), - [anon_sym_u_SQUOTE] = ACTIONS(3638), - [anon_sym_U_SQUOTE] = ACTIONS(3638), - [anon_sym_u8_SQUOTE] = ACTIONS(3638), - [anon_sym_SQUOTE] = ACTIONS(3638), - [anon_sym_L_DQUOTE] = ACTIONS(3638), - [anon_sym_u_DQUOTE] = ACTIONS(3638), - [anon_sym_U_DQUOTE] = ACTIONS(3638), - [anon_sym_u8_DQUOTE] = ACTIONS(3638), - [anon_sym_DQUOTE] = ACTIONS(3638), - [sym_true] = ACTIONS(3636), - [sym_false] = ACTIONS(3636), - [anon_sym_NULL] = ACTIONS(3636), - [anon_sym_nullptr] = ACTIONS(3636), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3636), - [anon_sym_decltype] = ACTIONS(3636), - [anon_sym_template] = ACTIONS(3636), - [anon_sym_try] = ACTIONS(3636), - [anon_sym_delete] = ACTIONS(3636), - [anon_sym_throw] = ACTIONS(3636), - [anon_sym_co_return] = ACTIONS(3636), - [anon_sym_co_yield] = ACTIONS(3636), - [anon_sym_R_DQUOTE] = ACTIONS(3638), - [anon_sym_LR_DQUOTE] = ACTIONS(3638), - [anon_sym_uR_DQUOTE] = ACTIONS(3638), - [anon_sym_UR_DQUOTE] = ACTIONS(3638), - [anon_sym_u8R_DQUOTE] = ACTIONS(3638), - [anon_sym_co_await] = ACTIONS(3636), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_requires] = ACTIONS(3636), - [anon_sym_CARET_CARET] = ACTIONS(3638), - [anon_sym_LBRACK_COLON] = ACTIONS(3638), - [sym_this] = ACTIONS(3636), - }, - [STATE(1120)] = { - [sym_identifier] = ACTIONS(3680), - [anon_sym_LPAREN2] = ACTIONS(3682), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(3682), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_AMP] = ACTIONS(3682), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym___extension__] = ACTIONS(3680), - [anon_sym_typedef] = ACTIONS(3680), - [anon_sym_virtual] = ACTIONS(3680), - [anon_sym_extern] = ACTIONS(3680), - [anon_sym___attribute__] = ACTIONS(3680), - [anon_sym___attribute] = ACTIONS(3680), - [anon_sym_COLON_COLON] = ACTIONS(3682), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3682), - [anon_sym___declspec] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_signed] = ACTIONS(3680), - [anon_sym_unsigned] = ACTIONS(3680), - [anon_sym_long] = ACTIONS(3680), - [anon_sym_short] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3680), - [anon_sym_static] = ACTIONS(3680), - [anon_sym_register] = ACTIONS(3680), - [anon_sym_inline] = ACTIONS(3680), - [anon_sym___inline] = ACTIONS(3680), - [anon_sym___inline__] = ACTIONS(3680), - [anon_sym___forceinline] = ACTIONS(3680), - [anon_sym_thread_local] = ACTIONS(3680), - [anon_sym___thread] = ACTIONS(3680), - [anon_sym_const] = ACTIONS(3680), - [anon_sym_constexpr] = ACTIONS(3680), - [anon_sym_volatile] = ACTIONS(3680), - [anon_sym_restrict] = ACTIONS(3680), - [anon_sym___restrict__] = ACTIONS(3680), - [anon_sym__Atomic] = ACTIONS(3680), - [anon_sym__Noreturn] = ACTIONS(3680), - [anon_sym_noreturn] = ACTIONS(3680), - [anon_sym__Nonnull] = ACTIONS(3680), - [anon_sym_mutable] = ACTIONS(3680), - [anon_sym_constinit] = ACTIONS(3680), - [anon_sym_consteval] = ACTIONS(3680), - [anon_sym_alignas] = ACTIONS(3680), - [anon_sym__Alignas] = ACTIONS(3680), - [sym_primitive_type] = ACTIONS(3680), - [anon_sym_enum] = ACTIONS(3680), - [anon_sym_class] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(3680), - [anon_sym_union] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(3680), - [anon_sym_else] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_while] = ACTIONS(3680), - [anon_sym_do] = ACTIONS(3680), - [anon_sym_for] = ACTIONS(3680), - [anon_sym_return] = ACTIONS(3680), - [anon_sym_break] = ACTIONS(3680), - [anon_sym_continue] = ACTIONS(3680), - [anon_sym_goto] = ACTIONS(3680), - [anon_sym___try] = ACTIONS(3680), - [anon_sym___leave] = ACTIONS(3680), - [anon_sym_not] = ACTIONS(3680), - [anon_sym_compl] = ACTIONS(3680), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_sizeof] = ACTIONS(3680), - [anon_sym___alignof__] = ACTIONS(3680), - [anon_sym___alignof] = ACTIONS(3680), - [anon_sym__alignof] = ACTIONS(3680), - [anon_sym_alignof] = ACTIONS(3680), - [anon_sym__Alignof] = ACTIONS(3680), - [anon_sym_offsetof] = ACTIONS(3680), - [anon_sym__Generic] = ACTIONS(3680), - [anon_sym_typename] = ACTIONS(3680), - [anon_sym_asm] = ACTIONS(3680), - [anon_sym___asm__] = ACTIONS(3680), - [anon_sym___asm] = ACTIONS(3680), - [sym_number_literal] = ACTIONS(3682), - [anon_sym_L_SQUOTE] = ACTIONS(3682), - [anon_sym_u_SQUOTE] = ACTIONS(3682), - [anon_sym_U_SQUOTE] = ACTIONS(3682), - [anon_sym_u8_SQUOTE] = ACTIONS(3682), - [anon_sym_SQUOTE] = ACTIONS(3682), - [anon_sym_L_DQUOTE] = ACTIONS(3682), - [anon_sym_u_DQUOTE] = ACTIONS(3682), - [anon_sym_U_DQUOTE] = ACTIONS(3682), - [anon_sym_u8_DQUOTE] = ACTIONS(3682), - [anon_sym_DQUOTE] = ACTIONS(3682), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [anon_sym_NULL] = ACTIONS(3680), - [anon_sym_nullptr] = ACTIONS(3680), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3680), - [anon_sym_decltype] = ACTIONS(3680), - [anon_sym_template] = ACTIONS(3680), - [anon_sym_try] = ACTIONS(3680), - [anon_sym_delete] = ACTIONS(3680), - [anon_sym_throw] = ACTIONS(3680), - [anon_sym_co_return] = ACTIONS(3680), - [anon_sym_co_yield] = ACTIONS(3680), - [anon_sym_R_DQUOTE] = ACTIONS(3682), - [anon_sym_LR_DQUOTE] = ACTIONS(3682), - [anon_sym_uR_DQUOTE] = ACTIONS(3682), - [anon_sym_UR_DQUOTE] = ACTIONS(3682), - [anon_sym_u8R_DQUOTE] = ACTIONS(3682), - [anon_sym_co_await] = ACTIONS(3680), - [anon_sym_new] = ACTIONS(3680), - [anon_sym_requires] = ACTIONS(3680), - [anon_sym_CARET_CARET] = ACTIONS(3682), - [anon_sym_LBRACK_COLON] = ACTIONS(3682), - [sym_this] = ACTIONS(3680), - }, - [STATE(1121)] = { - [sym_identifier] = ACTIONS(3656), - [anon_sym_LPAREN2] = ACTIONS(3658), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_TILDE] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(3656), - [anon_sym_STAR] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_SEMI] = ACTIONS(3658), - [anon_sym___extension__] = ACTIONS(3656), - [anon_sym_typedef] = ACTIONS(3656), - [anon_sym_virtual] = ACTIONS(3656), - [anon_sym_extern] = ACTIONS(3656), - [anon_sym___attribute__] = ACTIONS(3656), - [anon_sym___attribute] = ACTIONS(3656), - [anon_sym_COLON_COLON] = ACTIONS(3658), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3658), - [anon_sym___declspec] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_signed] = ACTIONS(3656), - [anon_sym_unsigned] = ACTIONS(3656), - [anon_sym_long] = ACTIONS(3656), - [anon_sym_short] = ACTIONS(3656), - [anon_sym_LBRACK] = ACTIONS(3656), - [anon_sym_static] = ACTIONS(3656), - [anon_sym_register] = ACTIONS(3656), - [anon_sym_inline] = ACTIONS(3656), - [anon_sym___inline] = ACTIONS(3656), - [anon_sym___inline__] = ACTIONS(3656), - [anon_sym___forceinline] = ACTIONS(3656), - [anon_sym_thread_local] = ACTIONS(3656), - [anon_sym___thread] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_constexpr] = ACTIONS(3656), - [anon_sym_volatile] = ACTIONS(3656), - [anon_sym_restrict] = ACTIONS(3656), - [anon_sym___restrict__] = ACTIONS(3656), - [anon_sym__Atomic] = ACTIONS(3656), - [anon_sym__Noreturn] = ACTIONS(3656), - [anon_sym_noreturn] = ACTIONS(3656), - [anon_sym__Nonnull] = ACTIONS(3656), - [anon_sym_mutable] = ACTIONS(3656), - [anon_sym_constinit] = ACTIONS(3656), - [anon_sym_consteval] = ACTIONS(3656), - [anon_sym_alignas] = ACTIONS(3656), - [anon_sym__Alignas] = ACTIONS(3656), - [sym_primitive_type] = ACTIONS(3656), - [anon_sym_enum] = ACTIONS(3656), - [anon_sym_class] = ACTIONS(3656), - [anon_sym_struct] = ACTIONS(3656), - [anon_sym_union] = ACTIONS(3656), - [anon_sym_if] = ACTIONS(3656), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_switch] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(3656), - [anon_sym_do] = ACTIONS(3656), - [anon_sym_for] = ACTIONS(3656), - [anon_sym_return] = ACTIONS(3656), - [anon_sym_break] = ACTIONS(3656), - [anon_sym_continue] = ACTIONS(3656), - [anon_sym_goto] = ACTIONS(3656), - [anon_sym___try] = ACTIONS(3656), - [anon_sym___leave] = ACTIONS(3656), - [anon_sym_not] = ACTIONS(3656), - [anon_sym_compl] = ACTIONS(3656), - [anon_sym_DASH_DASH] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3658), - [anon_sym_sizeof] = ACTIONS(3656), - [anon_sym___alignof__] = ACTIONS(3656), - [anon_sym___alignof] = ACTIONS(3656), - [anon_sym__alignof] = ACTIONS(3656), - [anon_sym_alignof] = ACTIONS(3656), - [anon_sym__Alignof] = ACTIONS(3656), - [anon_sym_offsetof] = ACTIONS(3656), - [anon_sym__Generic] = ACTIONS(3656), - [anon_sym_typename] = ACTIONS(3656), - [anon_sym_asm] = ACTIONS(3656), - [anon_sym___asm__] = ACTIONS(3656), - [anon_sym___asm] = ACTIONS(3656), - [sym_number_literal] = ACTIONS(3658), - [anon_sym_L_SQUOTE] = ACTIONS(3658), - [anon_sym_u_SQUOTE] = ACTIONS(3658), - [anon_sym_U_SQUOTE] = ACTIONS(3658), - [anon_sym_u8_SQUOTE] = ACTIONS(3658), - [anon_sym_SQUOTE] = ACTIONS(3658), - [anon_sym_L_DQUOTE] = ACTIONS(3658), - [anon_sym_u_DQUOTE] = ACTIONS(3658), - [anon_sym_U_DQUOTE] = ACTIONS(3658), - [anon_sym_u8_DQUOTE] = ACTIONS(3658), - [anon_sym_DQUOTE] = ACTIONS(3658), - [sym_true] = ACTIONS(3656), - [sym_false] = ACTIONS(3656), - [anon_sym_NULL] = ACTIONS(3656), - [anon_sym_nullptr] = ACTIONS(3656), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3656), - [anon_sym_decltype] = ACTIONS(3656), - [anon_sym_template] = ACTIONS(3656), - [anon_sym_try] = ACTIONS(3656), - [anon_sym_delete] = ACTIONS(3656), - [anon_sym_throw] = ACTIONS(3656), - [anon_sym_co_return] = ACTIONS(3656), - [anon_sym_co_yield] = ACTIONS(3656), - [anon_sym_R_DQUOTE] = ACTIONS(3658), - [anon_sym_LR_DQUOTE] = ACTIONS(3658), - [anon_sym_uR_DQUOTE] = ACTIONS(3658), - [anon_sym_UR_DQUOTE] = ACTIONS(3658), - [anon_sym_u8R_DQUOTE] = ACTIONS(3658), - [anon_sym_co_await] = ACTIONS(3656), - [anon_sym_new] = ACTIONS(3656), - [anon_sym_requires] = ACTIONS(3656), - [anon_sym_CARET_CARET] = ACTIONS(3658), - [anon_sym_LBRACK_COLON] = ACTIONS(3658), - [sym_this] = ACTIONS(3656), - }, - [STATE(1122)] = { - [sym_identifier] = ACTIONS(3664), - [anon_sym_LPAREN2] = ACTIONS(3666), - [anon_sym_BANG] = ACTIONS(3666), - [anon_sym_TILDE] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3664), - [anon_sym_PLUS] = ACTIONS(3664), - [anon_sym_STAR] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3666), - [anon_sym_SEMI] = ACTIONS(3666), - [anon_sym___extension__] = ACTIONS(3664), - [anon_sym_typedef] = ACTIONS(3664), - [anon_sym_virtual] = ACTIONS(3664), - [anon_sym_extern] = ACTIONS(3664), - [anon_sym___attribute__] = ACTIONS(3664), - [anon_sym___attribute] = ACTIONS(3664), - [anon_sym_COLON_COLON] = ACTIONS(3666), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), - [anon_sym___declspec] = ACTIONS(3664), - [anon_sym_LBRACE] = ACTIONS(3666), - [anon_sym_signed] = ACTIONS(3664), - [anon_sym_unsigned] = ACTIONS(3664), - [anon_sym_long] = ACTIONS(3664), - [anon_sym_short] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3664), - [anon_sym_static] = ACTIONS(3664), - [anon_sym_register] = ACTIONS(3664), - [anon_sym_inline] = ACTIONS(3664), - [anon_sym___inline] = ACTIONS(3664), - [anon_sym___inline__] = ACTIONS(3664), - [anon_sym___forceinline] = ACTIONS(3664), - [anon_sym_thread_local] = ACTIONS(3664), - [anon_sym___thread] = ACTIONS(3664), - [anon_sym_const] = ACTIONS(3664), - [anon_sym_constexpr] = ACTIONS(3664), - [anon_sym_volatile] = ACTIONS(3664), - [anon_sym_restrict] = ACTIONS(3664), - [anon_sym___restrict__] = ACTIONS(3664), - [anon_sym__Atomic] = ACTIONS(3664), - [anon_sym__Noreturn] = ACTIONS(3664), - [anon_sym_noreturn] = ACTIONS(3664), - [anon_sym__Nonnull] = ACTIONS(3664), - [anon_sym_mutable] = ACTIONS(3664), - [anon_sym_constinit] = ACTIONS(3664), - [anon_sym_consteval] = ACTIONS(3664), - [anon_sym_alignas] = ACTIONS(3664), - [anon_sym__Alignas] = ACTIONS(3664), - [sym_primitive_type] = ACTIONS(3664), - [anon_sym_enum] = ACTIONS(3664), - [anon_sym_class] = ACTIONS(3664), - [anon_sym_struct] = ACTIONS(3664), - [anon_sym_union] = ACTIONS(3664), - [anon_sym_if] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(3664), - [anon_sym_switch] = ACTIONS(3664), - [anon_sym_while] = ACTIONS(3664), - [anon_sym_do] = ACTIONS(3664), - [anon_sym_for] = ACTIONS(3664), - [anon_sym_return] = ACTIONS(3664), - [anon_sym_break] = ACTIONS(3664), - [anon_sym_continue] = ACTIONS(3664), - [anon_sym_goto] = ACTIONS(3664), - [anon_sym___try] = ACTIONS(3664), - [anon_sym___leave] = ACTIONS(3664), - [anon_sym_not] = ACTIONS(3664), - [anon_sym_compl] = ACTIONS(3664), - [anon_sym_DASH_DASH] = ACTIONS(3666), - [anon_sym_PLUS_PLUS] = ACTIONS(3666), - [anon_sym_sizeof] = ACTIONS(3664), - [anon_sym___alignof__] = ACTIONS(3664), - [anon_sym___alignof] = ACTIONS(3664), - [anon_sym__alignof] = ACTIONS(3664), - [anon_sym_alignof] = ACTIONS(3664), - [anon_sym__Alignof] = ACTIONS(3664), - [anon_sym_offsetof] = ACTIONS(3664), - [anon_sym__Generic] = ACTIONS(3664), - [anon_sym_typename] = ACTIONS(3664), - [anon_sym_asm] = ACTIONS(3664), - [anon_sym___asm__] = ACTIONS(3664), - [anon_sym___asm] = ACTIONS(3664), - [sym_number_literal] = ACTIONS(3666), - [anon_sym_L_SQUOTE] = ACTIONS(3666), - [anon_sym_u_SQUOTE] = ACTIONS(3666), - [anon_sym_U_SQUOTE] = ACTIONS(3666), - [anon_sym_u8_SQUOTE] = ACTIONS(3666), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_L_DQUOTE] = ACTIONS(3666), - [anon_sym_u_DQUOTE] = ACTIONS(3666), - [anon_sym_U_DQUOTE] = ACTIONS(3666), - [anon_sym_u8_DQUOTE] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3666), - [sym_true] = ACTIONS(3664), - [sym_false] = ACTIONS(3664), - [anon_sym_NULL] = ACTIONS(3664), - [anon_sym_nullptr] = ACTIONS(3664), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3664), - [anon_sym_decltype] = ACTIONS(3664), - [anon_sym_template] = ACTIONS(3664), - [anon_sym_try] = ACTIONS(3664), - [anon_sym_delete] = ACTIONS(3664), - [anon_sym_throw] = ACTIONS(3664), - [anon_sym_co_return] = ACTIONS(3664), - [anon_sym_co_yield] = ACTIONS(3664), - [anon_sym_R_DQUOTE] = ACTIONS(3666), - [anon_sym_LR_DQUOTE] = ACTIONS(3666), - [anon_sym_uR_DQUOTE] = ACTIONS(3666), - [anon_sym_UR_DQUOTE] = ACTIONS(3666), - [anon_sym_u8R_DQUOTE] = ACTIONS(3666), - [anon_sym_co_await] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3664), - [anon_sym_requires] = ACTIONS(3664), - [anon_sym_CARET_CARET] = ACTIONS(3666), - [anon_sym_LBRACK_COLON] = ACTIONS(3666), - [sym_this] = ACTIONS(3664), - }, - [STATE(1123)] = { - [sym_identifier] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(3866), - [anon_sym_BANG] = ACTIONS(3866), - [anon_sym_TILDE] = ACTIONS(3866), - [anon_sym_DASH] = ACTIONS(3864), - [anon_sym_PLUS] = ACTIONS(3864), - [anon_sym_STAR] = ACTIONS(3866), - [anon_sym_AMP] = ACTIONS(3866), - [anon_sym_SEMI] = ACTIONS(3866), - [anon_sym___extension__] = ACTIONS(3864), - [anon_sym_typedef] = ACTIONS(3864), - [anon_sym_virtual] = ACTIONS(3864), - [anon_sym_extern] = ACTIONS(3864), - [anon_sym___attribute__] = ACTIONS(3864), - [anon_sym___attribute] = ACTIONS(3864), - [anon_sym_COLON_COLON] = ACTIONS(3866), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3866), - [anon_sym___declspec] = ACTIONS(3864), - [anon_sym_LBRACE] = ACTIONS(3866), - [anon_sym_signed] = ACTIONS(3864), - [anon_sym_unsigned] = ACTIONS(3864), - [anon_sym_long] = ACTIONS(3864), - [anon_sym_short] = ACTIONS(3864), - [anon_sym_LBRACK] = ACTIONS(3864), - [anon_sym_static] = ACTIONS(3864), - [anon_sym_register] = ACTIONS(3864), - [anon_sym_inline] = ACTIONS(3864), - [anon_sym___inline] = ACTIONS(3864), - [anon_sym___inline__] = ACTIONS(3864), - [anon_sym___forceinline] = ACTIONS(3864), - [anon_sym_thread_local] = ACTIONS(3864), - [anon_sym___thread] = ACTIONS(3864), - [anon_sym_const] = ACTIONS(3864), - [anon_sym_constexpr] = ACTIONS(3864), - [anon_sym_volatile] = ACTIONS(3864), - [anon_sym_restrict] = ACTIONS(3864), - [anon_sym___restrict__] = ACTIONS(3864), - [anon_sym__Atomic] = ACTIONS(3864), - [anon_sym__Noreturn] = ACTIONS(3864), - [anon_sym_noreturn] = ACTIONS(3864), - [anon_sym__Nonnull] = ACTIONS(3864), - [anon_sym_mutable] = ACTIONS(3864), - [anon_sym_constinit] = ACTIONS(3864), - [anon_sym_consteval] = ACTIONS(3864), - [anon_sym_alignas] = ACTIONS(3864), - [anon_sym__Alignas] = ACTIONS(3864), - [sym_primitive_type] = ACTIONS(3864), - [anon_sym_enum] = ACTIONS(3864), - [anon_sym_class] = ACTIONS(3864), - [anon_sym_struct] = ACTIONS(3864), - [anon_sym_union] = ACTIONS(3864), - [anon_sym_if] = ACTIONS(3864), - [anon_sym_else] = ACTIONS(3864), - [anon_sym_switch] = ACTIONS(3864), - [anon_sym_while] = ACTIONS(3864), - [anon_sym_do] = ACTIONS(3864), - [anon_sym_for] = ACTIONS(3864), - [anon_sym_return] = ACTIONS(3864), - [anon_sym_break] = ACTIONS(3864), - [anon_sym_continue] = ACTIONS(3864), - [anon_sym_goto] = ACTIONS(3864), - [anon_sym___try] = ACTIONS(3864), - [anon_sym___leave] = ACTIONS(3864), - [anon_sym_not] = ACTIONS(3864), - [anon_sym_compl] = ACTIONS(3864), - [anon_sym_DASH_DASH] = ACTIONS(3866), - [anon_sym_PLUS_PLUS] = ACTIONS(3866), - [anon_sym_sizeof] = ACTIONS(3864), - [anon_sym___alignof__] = ACTIONS(3864), - [anon_sym___alignof] = ACTIONS(3864), - [anon_sym__alignof] = ACTIONS(3864), - [anon_sym_alignof] = ACTIONS(3864), - [anon_sym__Alignof] = ACTIONS(3864), - [anon_sym_offsetof] = ACTIONS(3864), - [anon_sym__Generic] = ACTIONS(3864), - [anon_sym_typename] = ACTIONS(3864), - [anon_sym_asm] = ACTIONS(3864), - [anon_sym___asm__] = ACTIONS(3864), - [anon_sym___asm] = ACTIONS(3864), - [sym_number_literal] = ACTIONS(3866), - [anon_sym_L_SQUOTE] = ACTIONS(3866), - [anon_sym_u_SQUOTE] = ACTIONS(3866), - [anon_sym_U_SQUOTE] = ACTIONS(3866), - [anon_sym_u8_SQUOTE] = ACTIONS(3866), - [anon_sym_SQUOTE] = ACTIONS(3866), - [anon_sym_L_DQUOTE] = ACTIONS(3866), - [anon_sym_u_DQUOTE] = ACTIONS(3866), - [anon_sym_U_DQUOTE] = ACTIONS(3866), - [anon_sym_u8_DQUOTE] = ACTIONS(3866), - [anon_sym_DQUOTE] = ACTIONS(3866), - [sym_true] = ACTIONS(3864), - [sym_false] = ACTIONS(3864), - [anon_sym_NULL] = ACTIONS(3864), - [anon_sym_nullptr] = ACTIONS(3864), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3864), - [anon_sym_decltype] = ACTIONS(3864), - [anon_sym_template] = ACTIONS(3864), - [anon_sym_try] = ACTIONS(3864), - [anon_sym_delete] = ACTIONS(3864), - [anon_sym_throw] = ACTIONS(3864), - [anon_sym_co_return] = ACTIONS(3864), - [anon_sym_co_yield] = ACTIONS(3864), - [anon_sym_R_DQUOTE] = ACTIONS(3866), - [anon_sym_LR_DQUOTE] = ACTIONS(3866), - [anon_sym_uR_DQUOTE] = ACTIONS(3866), - [anon_sym_UR_DQUOTE] = ACTIONS(3866), - [anon_sym_u8R_DQUOTE] = ACTIONS(3866), - [anon_sym_co_await] = ACTIONS(3864), - [anon_sym_new] = ACTIONS(3864), - [anon_sym_requires] = ACTIONS(3864), - [anon_sym_CARET_CARET] = ACTIONS(3866), - [anon_sym_LBRACK_COLON] = ACTIONS(3866), - [sym_this] = ACTIONS(3864), - }, - [STATE(1124)] = { - [sym_identifier] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(3686), - [anon_sym_BANG] = ACTIONS(3686), - [anon_sym_TILDE] = ACTIONS(3686), - [anon_sym_DASH] = ACTIONS(3684), - [anon_sym_PLUS] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3686), - [anon_sym_AMP] = ACTIONS(3686), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym___extension__] = ACTIONS(3684), - [anon_sym_typedef] = ACTIONS(3684), - [anon_sym_virtual] = ACTIONS(3684), - [anon_sym_extern] = ACTIONS(3684), - [anon_sym___attribute__] = ACTIONS(3684), - [anon_sym___attribute] = ACTIONS(3684), - [anon_sym_COLON_COLON] = ACTIONS(3686), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), - [anon_sym___declspec] = ACTIONS(3684), - [anon_sym_LBRACE] = ACTIONS(3686), - [anon_sym_signed] = ACTIONS(3684), - [anon_sym_unsigned] = ACTIONS(3684), - [anon_sym_long] = ACTIONS(3684), - [anon_sym_short] = ACTIONS(3684), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_static] = ACTIONS(3684), - [anon_sym_register] = ACTIONS(3684), - [anon_sym_inline] = ACTIONS(3684), - [anon_sym___inline] = ACTIONS(3684), - [anon_sym___inline__] = ACTIONS(3684), - [anon_sym___forceinline] = ACTIONS(3684), - [anon_sym_thread_local] = ACTIONS(3684), - [anon_sym___thread] = ACTIONS(3684), - [anon_sym_const] = ACTIONS(3684), - [anon_sym_constexpr] = ACTIONS(3684), - [anon_sym_volatile] = ACTIONS(3684), - [anon_sym_restrict] = ACTIONS(3684), - [anon_sym___restrict__] = ACTIONS(3684), - [anon_sym__Atomic] = ACTIONS(3684), - [anon_sym__Noreturn] = ACTIONS(3684), - [anon_sym_noreturn] = ACTIONS(3684), - [anon_sym__Nonnull] = ACTIONS(3684), - [anon_sym_mutable] = ACTIONS(3684), - [anon_sym_constinit] = ACTIONS(3684), - [anon_sym_consteval] = ACTIONS(3684), - [anon_sym_alignas] = ACTIONS(3684), - [anon_sym__Alignas] = ACTIONS(3684), - [sym_primitive_type] = ACTIONS(3684), - [anon_sym_enum] = ACTIONS(3684), - [anon_sym_class] = ACTIONS(3684), - [anon_sym_struct] = ACTIONS(3684), - [anon_sym_union] = ACTIONS(3684), - [anon_sym_if] = ACTIONS(3684), - [anon_sym_else] = ACTIONS(3684), - [anon_sym_switch] = ACTIONS(3684), - [anon_sym_while] = ACTIONS(3684), - [anon_sym_do] = ACTIONS(3684), - [anon_sym_for] = ACTIONS(3684), - [anon_sym_return] = ACTIONS(3684), - [anon_sym_break] = ACTIONS(3684), - [anon_sym_continue] = ACTIONS(3684), - [anon_sym_goto] = ACTIONS(3684), - [anon_sym___try] = ACTIONS(3684), - [anon_sym___leave] = ACTIONS(3684), - [anon_sym_not] = ACTIONS(3684), - [anon_sym_compl] = ACTIONS(3684), - [anon_sym_DASH_DASH] = ACTIONS(3686), - [anon_sym_PLUS_PLUS] = ACTIONS(3686), - [anon_sym_sizeof] = ACTIONS(3684), - [anon_sym___alignof__] = ACTIONS(3684), - [anon_sym___alignof] = ACTIONS(3684), - [anon_sym__alignof] = ACTIONS(3684), - [anon_sym_alignof] = ACTIONS(3684), - [anon_sym__Alignof] = ACTIONS(3684), - [anon_sym_offsetof] = ACTIONS(3684), - [anon_sym__Generic] = ACTIONS(3684), - [anon_sym_typename] = ACTIONS(3684), - [anon_sym_asm] = ACTIONS(3684), - [anon_sym___asm__] = ACTIONS(3684), - [anon_sym___asm] = ACTIONS(3684), - [sym_number_literal] = ACTIONS(3686), - [anon_sym_L_SQUOTE] = ACTIONS(3686), - [anon_sym_u_SQUOTE] = ACTIONS(3686), - [anon_sym_U_SQUOTE] = ACTIONS(3686), - [anon_sym_u8_SQUOTE] = ACTIONS(3686), - [anon_sym_SQUOTE] = ACTIONS(3686), - [anon_sym_L_DQUOTE] = ACTIONS(3686), - [anon_sym_u_DQUOTE] = ACTIONS(3686), - [anon_sym_U_DQUOTE] = ACTIONS(3686), - [anon_sym_u8_DQUOTE] = ACTIONS(3686), - [anon_sym_DQUOTE] = ACTIONS(3686), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [anon_sym_NULL] = ACTIONS(3684), - [anon_sym_nullptr] = ACTIONS(3684), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3684), - [anon_sym_decltype] = ACTIONS(3684), - [anon_sym_template] = ACTIONS(3684), - [anon_sym_try] = ACTIONS(3684), - [anon_sym_delete] = ACTIONS(3684), - [anon_sym_throw] = ACTIONS(3684), - [anon_sym_co_return] = ACTIONS(3684), - [anon_sym_co_yield] = ACTIONS(3684), - [anon_sym_R_DQUOTE] = ACTIONS(3686), - [anon_sym_LR_DQUOTE] = ACTIONS(3686), - [anon_sym_uR_DQUOTE] = ACTIONS(3686), - [anon_sym_UR_DQUOTE] = ACTIONS(3686), - [anon_sym_u8R_DQUOTE] = ACTIONS(3686), - [anon_sym_co_await] = ACTIONS(3684), - [anon_sym_new] = ACTIONS(3684), - [anon_sym_requires] = ACTIONS(3684), - [anon_sym_CARET_CARET] = ACTIONS(3686), - [anon_sym_LBRACK_COLON] = ACTIONS(3686), - [sym_this] = ACTIONS(3684), - }, - [STATE(1125)] = { - [sym_identifier] = ACTIONS(3688), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3690), - [anon_sym_TILDE] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3688), - [anon_sym_PLUS] = ACTIONS(3688), - [anon_sym_STAR] = ACTIONS(3690), - [anon_sym_AMP] = ACTIONS(3690), - [anon_sym_SEMI] = ACTIONS(3690), - [anon_sym___extension__] = ACTIONS(3688), - [anon_sym_typedef] = ACTIONS(3688), - [anon_sym_virtual] = ACTIONS(3688), - [anon_sym_extern] = ACTIONS(3688), - [anon_sym___attribute__] = ACTIONS(3688), - [anon_sym___attribute] = ACTIONS(3688), - [anon_sym_COLON_COLON] = ACTIONS(3690), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3690), - [anon_sym___declspec] = ACTIONS(3688), - [anon_sym_LBRACE] = ACTIONS(3690), - [anon_sym_signed] = ACTIONS(3688), - [anon_sym_unsigned] = ACTIONS(3688), - [anon_sym_long] = ACTIONS(3688), - [anon_sym_short] = ACTIONS(3688), - [anon_sym_LBRACK] = ACTIONS(3688), - [anon_sym_static] = ACTIONS(3688), - [anon_sym_register] = ACTIONS(3688), - [anon_sym_inline] = ACTIONS(3688), - [anon_sym___inline] = ACTIONS(3688), - [anon_sym___inline__] = ACTIONS(3688), - [anon_sym___forceinline] = ACTIONS(3688), - [anon_sym_thread_local] = ACTIONS(3688), - [anon_sym___thread] = ACTIONS(3688), - [anon_sym_const] = ACTIONS(3688), - [anon_sym_constexpr] = ACTIONS(3688), - [anon_sym_volatile] = ACTIONS(3688), - [anon_sym_restrict] = ACTIONS(3688), - [anon_sym___restrict__] = ACTIONS(3688), - [anon_sym__Atomic] = ACTIONS(3688), - [anon_sym__Noreturn] = ACTIONS(3688), - [anon_sym_noreturn] = ACTIONS(3688), - [anon_sym__Nonnull] = ACTIONS(3688), - [anon_sym_mutable] = ACTIONS(3688), - [anon_sym_constinit] = ACTIONS(3688), - [anon_sym_consteval] = ACTIONS(3688), - [anon_sym_alignas] = ACTIONS(3688), - [anon_sym__Alignas] = ACTIONS(3688), - [sym_primitive_type] = ACTIONS(3688), - [anon_sym_enum] = ACTIONS(3688), - [anon_sym_class] = ACTIONS(3688), - [anon_sym_struct] = ACTIONS(3688), - [anon_sym_union] = ACTIONS(3688), - [anon_sym_if] = ACTIONS(3688), - [anon_sym_else] = ACTIONS(3688), - [anon_sym_switch] = ACTIONS(3688), - [anon_sym_while] = ACTIONS(3688), - [anon_sym_do] = ACTIONS(3688), - [anon_sym_for] = ACTIONS(3688), - [anon_sym_return] = ACTIONS(3688), - [anon_sym_break] = ACTIONS(3688), - [anon_sym_continue] = ACTIONS(3688), - [anon_sym_goto] = ACTIONS(3688), - [anon_sym___try] = ACTIONS(3688), - [anon_sym___leave] = ACTIONS(3688), - [anon_sym_not] = ACTIONS(3688), - [anon_sym_compl] = ACTIONS(3688), - [anon_sym_DASH_DASH] = ACTIONS(3690), - [anon_sym_PLUS_PLUS] = ACTIONS(3690), - [anon_sym_sizeof] = ACTIONS(3688), - [anon_sym___alignof__] = ACTIONS(3688), - [anon_sym___alignof] = ACTIONS(3688), - [anon_sym__alignof] = ACTIONS(3688), - [anon_sym_alignof] = ACTIONS(3688), - [anon_sym__Alignof] = ACTIONS(3688), - [anon_sym_offsetof] = ACTIONS(3688), - [anon_sym__Generic] = ACTIONS(3688), - [anon_sym_typename] = ACTIONS(3688), - [anon_sym_asm] = ACTIONS(3688), - [anon_sym___asm__] = ACTIONS(3688), - [anon_sym___asm] = ACTIONS(3688), - [sym_number_literal] = ACTIONS(3690), - [anon_sym_L_SQUOTE] = ACTIONS(3690), - [anon_sym_u_SQUOTE] = ACTIONS(3690), - [anon_sym_U_SQUOTE] = ACTIONS(3690), - [anon_sym_u8_SQUOTE] = ACTIONS(3690), - [anon_sym_SQUOTE] = ACTIONS(3690), - [anon_sym_L_DQUOTE] = ACTIONS(3690), - [anon_sym_u_DQUOTE] = ACTIONS(3690), - [anon_sym_U_DQUOTE] = ACTIONS(3690), - [anon_sym_u8_DQUOTE] = ACTIONS(3690), - [anon_sym_DQUOTE] = ACTIONS(3690), - [sym_true] = ACTIONS(3688), - [sym_false] = ACTIONS(3688), - [anon_sym_NULL] = ACTIONS(3688), - [anon_sym_nullptr] = ACTIONS(3688), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3688), - [anon_sym_decltype] = ACTIONS(3688), - [anon_sym_template] = ACTIONS(3688), - [anon_sym_try] = ACTIONS(3688), - [anon_sym_delete] = ACTIONS(3688), - [anon_sym_throw] = ACTIONS(3688), - [anon_sym_co_return] = ACTIONS(3688), - [anon_sym_co_yield] = ACTIONS(3688), - [anon_sym_R_DQUOTE] = ACTIONS(3690), - [anon_sym_LR_DQUOTE] = ACTIONS(3690), - [anon_sym_uR_DQUOTE] = ACTIONS(3690), - [anon_sym_UR_DQUOTE] = ACTIONS(3690), - [anon_sym_u8R_DQUOTE] = ACTIONS(3690), - [anon_sym_co_await] = ACTIONS(3688), - [anon_sym_new] = ACTIONS(3688), - [anon_sym_requires] = ACTIONS(3688), - [anon_sym_CARET_CARET] = ACTIONS(3690), - [anon_sym_LBRACK_COLON] = ACTIONS(3690), - [sym_this] = ACTIONS(3688), - }, - [STATE(1126)] = { - [sym_identifier] = ACTIONS(3696), - [anon_sym_LPAREN2] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_TILDE] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3696), - [anon_sym_STAR] = ACTIONS(3698), - [anon_sym_AMP] = ACTIONS(3698), - [anon_sym_SEMI] = ACTIONS(3698), - [anon_sym___extension__] = ACTIONS(3696), - [anon_sym_typedef] = ACTIONS(3696), - [anon_sym_virtual] = ACTIONS(3696), - [anon_sym_extern] = ACTIONS(3696), - [anon_sym___attribute__] = ACTIONS(3696), - [anon_sym___attribute] = ACTIONS(3696), - [anon_sym_COLON_COLON] = ACTIONS(3698), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3698), - [anon_sym___declspec] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3698), - [anon_sym_signed] = ACTIONS(3696), - [anon_sym_unsigned] = ACTIONS(3696), - [anon_sym_long] = ACTIONS(3696), - [anon_sym_short] = ACTIONS(3696), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_static] = ACTIONS(3696), - [anon_sym_register] = ACTIONS(3696), - [anon_sym_inline] = ACTIONS(3696), - [anon_sym___inline] = ACTIONS(3696), - [anon_sym___inline__] = ACTIONS(3696), - [anon_sym___forceinline] = ACTIONS(3696), - [anon_sym_thread_local] = ACTIONS(3696), - [anon_sym___thread] = ACTIONS(3696), - [anon_sym_const] = ACTIONS(3696), - [anon_sym_constexpr] = ACTIONS(3696), - [anon_sym_volatile] = ACTIONS(3696), - [anon_sym_restrict] = ACTIONS(3696), - [anon_sym___restrict__] = ACTIONS(3696), - [anon_sym__Atomic] = ACTIONS(3696), - [anon_sym__Noreturn] = ACTIONS(3696), - [anon_sym_noreturn] = ACTIONS(3696), - [anon_sym__Nonnull] = ACTIONS(3696), - [anon_sym_mutable] = ACTIONS(3696), - [anon_sym_constinit] = ACTIONS(3696), - [anon_sym_consteval] = ACTIONS(3696), - [anon_sym_alignas] = ACTIONS(3696), - [anon_sym__Alignas] = ACTIONS(3696), - [sym_primitive_type] = ACTIONS(3696), - [anon_sym_enum] = ACTIONS(3696), - [anon_sym_class] = ACTIONS(3696), - [anon_sym_struct] = ACTIONS(3696), - [anon_sym_union] = ACTIONS(3696), - [anon_sym_if] = ACTIONS(3696), - [anon_sym_else] = ACTIONS(3696), - [anon_sym_switch] = ACTIONS(3696), - [anon_sym_while] = ACTIONS(3696), - [anon_sym_do] = ACTIONS(3696), - [anon_sym_for] = ACTIONS(3696), - [anon_sym_return] = ACTIONS(3696), - [anon_sym_break] = ACTIONS(3696), - [anon_sym_continue] = ACTIONS(3696), - [anon_sym_goto] = ACTIONS(3696), - [anon_sym___try] = ACTIONS(3696), - [anon_sym___leave] = ACTIONS(3696), - [anon_sym_not] = ACTIONS(3696), - [anon_sym_compl] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3698), - [anon_sym_sizeof] = ACTIONS(3696), - [anon_sym___alignof__] = ACTIONS(3696), - [anon_sym___alignof] = ACTIONS(3696), - [anon_sym__alignof] = ACTIONS(3696), - [anon_sym_alignof] = ACTIONS(3696), - [anon_sym__Alignof] = ACTIONS(3696), - [anon_sym_offsetof] = ACTIONS(3696), - [anon_sym__Generic] = ACTIONS(3696), - [anon_sym_typename] = ACTIONS(3696), - [anon_sym_asm] = ACTIONS(3696), - [anon_sym___asm__] = ACTIONS(3696), - [anon_sym___asm] = ACTIONS(3696), - [sym_number_literal] = ACTIONS(3698), - [anon_sym_L_SQUOTE] = ACTIONS(3698), - [anon_sym_u_SQUOTE] = ACTIONS(3698), - [anon_sym_U_SQUOTE] = ACTIONS(3698), - [anon_sym_u8_SQUOTE] = ACTIONS(3698), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_L_DQUOTE] = ACTIONS(3698), - [anon_sym_u_DQUOTE] = ACTIONS(3698), - [anon_sym_U_DQUOTE] = ACTIONS(3698), - [anon_sym_u8_DQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3698), - [sym_true] = ACTIONS(3696), - [sym_false] = ACTIONS(3696), - [anon_sym_NULL] = ACTIONS(3696), - [anon_sym_nullptr] = ACTIONS(3696), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3696), - [anon_sym_decltype] = ACTIONS(3696), - [anon_sym_template] = ACTIONS(3696), - [anon_sym_try] = ACTIONS(3696), - [anon_sym_delete] = ACTIONS(3696), - [anon_sym_throw] = ACTIONS(3696), - [anon_sym_co_return] = ACTIONS(3696), - [anon_sym_co_yield] = ACTIONS(3696), - [anon_sym_R_DQUOTE] = ACTIONS(3698), - [anon_sym_LR_DQUOTE] = ACTIONS(3698), - [anon_sym_uR_DQUOTE] = ACTIONS(3698), - [anon_sym_UR_DQUOTE] = ACTIONS(3698), - [anon_sym_u8R_DQUOTE] = ACTIONS(3698), - [anon_sym_co_await] = ACTIONS(3696), - [anon_sym_new] = ACTIONS(3696), - [anon_sym_requires] = ACTIONS(3696), - [anon_sym_CARET_CARET] = ACTIONS(3698), - [anon_sym_LBRACK_COLON] = ACTIONS(3698), - [sym_this] = ACTIONS(3696), - }, - [STATE(1127)] = { - [sym_identifier] = ACTIONS(3720), - [anon_sym_LPAREN2] = ACTIONS(3722), - [anon_sym_BANG] = ACTIONS(3722), - [anon_sym_TILDE] = ACTIONS(3722), - [anon_sym_DASH] = ACTIONS(3720), - [anon_sym_PLUS] = ACTIONS(3720), - [anon_sym_STAR] = ACTIONS(3722), - [anon_sym_AMP] = ACTIONS(3722), - [anon_sym_SEMI] = ACTIONS(3722), - [anon_sym___extension__] = ACTIONS(3720), - [anon_sym_typedef] = ACTIONS(3720), - [anon_sym_virtual] = ACTIONS(3720), - [anon_sym_extern] = ACTIONS(3720), - [anon_sym___attribute__] = ACTIONS(3720), - [anon_sym___attribute] = ACTIONS(3720), - [anon_sym_COLON_COLON] = ACTIONS(3722), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3722), - [anon_sym___declspec] = ACTIONS(3720), - [anon_sym_LBRACE] = ACTIONS(3722), - [anon_sym_signed] = ACTIONS(3720), - [anon_sym_unsigned] = ACTIONS(3720), - [anon_sym_long] = ACTIONS(3720), - [anon_sym_short] = ACTIONS(3720), - [anon_sym_LBRACK] = ACTIONS(3720), - [anon_sym_static] = ACTIONS(3720), - [anon_sym_register] = ACTIONS(3720), - [anon_sym_inline] = ACTIONS(3720), - [anon_sym___inline] = ACTIONS(3720), - [anon_sym___inline__] = ACTIONS(3720), - [anon_sym___forceinline] = ACTIONS(3720), - [anon_sym_thread_local] = ACTIONS(3720), - [anon_sym___thread] = ACTIONS(3720), - [anon_sym_const] = ACTIONS(3720), - [anon_sym_constexpr] = ACTIONS(3720), - [anon_sym_volatile] = ACTIONS(3720), - [anon_sym_restrict] = ACTIONS(3720), - [anon_sym___restrict__] = ACTIONS(3720), - [anon_sym__Atomic] = ACTIONS(3720), - [anon_sym__Noreturn] = ACTIONS(3720), - [anon_sym_noreturn] = ACTIONS(3720), - [anon_sym__Nonnull] = ACTIONS(3720), - [anon_sym_mutable] = ACTIONS(3720), - [anon_sym_constinit] = ACTIONS(3720), - [anon_sym_consteval] = ACTIONS(3720), - [anon_sym_alignas] = ACTIONS(3720), - [anon_sym__Alignas] = ACTIONS(3720), - [sym_primitive_type] = ACTIONS(3720), - [anon_sym_enum] = ACTIONS(3720), - [anon_sym_class] = ACTIONS(3720), - [anon_sym_struct] = ACTIONS(3720), - [anon_sym_union] = ACTIONS(3720), - [anon_sym_if] = ACTIONS(3720), - [anon_sym_else] = ACTIONS(3720), - [anon_sym_switch] = ACTIONS(3720), - [anon_sym_while] = ACTIONS(3720), - [anon_sym_do] = ACTIONS(3720), - [anon_sym_for] = ACTIONS(3720), - [anon_sym_return] = ACTIONS(3720), - [anon_sym_break] = ACTIONS(3720), - [anon_sym_continue] = ACTIONS(3720), - [anon_sym_goto] = ACTIONS(3720), - [anon_sym___try] = ACTIONS(3720), - [anon_sym___leave] = ACTIONS(3720), - [anon_sym_not] = ACTIONS(3720), - [anon_sym_compl] = ACTIONS(3720), - [anon_sym_DASH_DASH] = ACTIONS(3722), - [anon_sym_PLUS_PLUS] = ACTIONS(3722), - [anon_sym_sizeof] = ACTIONS(3720), - [anon_sym___alignof__] = ACTIONS(3720), - [anon_sym___alignof] = ACTIONS(3720), - [anon_sym__alignof] = ACTIONS(3720), - [anon_sym_alignof] = ACTIONS(3720), - [anon_sym__Alignof] = ACTIONS(3720), - [anon_sym_offsetof] = ACTIONS(3720), - [anon_sym__Generic] = ACTIONS(3720), - [anon_sym_typename] = ACTIONS(3720), - [anon_sym_asm] = ACTIONS(3720), - [anon_sym___asm__] = ACTIONS(3720), - [anon_sym___asm] = ACTIONS(3720), - [sym_number_literal] = ACTIONS(3722), - [anon_sym_L_SQUOTE] = ACTIONS(3722), - [anon_sym_u_SQUOTE] = ACTIONS(3722), - [anon_sym_U_SQUOTE] = ACTIONS(3722), - [anon_sym_u8_SQUOTE] = ACTIONS(3722), - [anon_sym_SQUOTE] = ACTIONS(3722), - [anon_sym_L_DQUOTE] = ACTIONS(3722), - [anon_sym_u_DQUOTE] = ACTIONS(3722), - [anon_sym_U_DQUOTE] = ACTIONS(3722), - [anon_sym_u8_DQUOTE] = ACTIONS(3722), - [anon_sym_DQUOTE] = ACTIONS(3722), - [sym_true] = ACTIONS(3720), - [sym_false] = ACTIONS(3720), - [anon_sym_NULL] = ACTIONS(3720), - [anon_sym_nullptr] = ACTIONS(3720), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3720), - [anon_sym_decltype] = ACTIONS(3720), - [anon_sym_template] = ACTIONS(3720), - [anon_sym_try] = ACTIONS(3720), - [anon_sym_delete] = ACTIONS(3720), - [anon_sym_throw] = ACTIONS(3720), - [anon_sym_co_return] = ACTIONS(3720), - [anon_sym_co_yield] = ACTIONS(3720), - [anon_sym_R_DQUOTE] = ACTIONS(3722), - [anon_sym_LR_DQUOTE] = ACTIONS(3722), - [anon_sym_uR_DQUOTE] = ACTIONS(3722), - [anon_sym_UR_DQUOTE] = ACTIONS(3722), - [anon_sym_u8R_DQUOTE] = ACTIONS(3722), - [anon_sym_co_await] = ACTIONS(3720), - [anon_sym_new] = ACTIONS(3720), - [anon_sym_requires] = ACTIONS(3720), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(3722), - [sym_this] = ACTIONS(3720), - }, - [STATE(1128)] = { - [sym_identifier] = ACTIONS(3894), - [anon_sym_LPAREN2] = ACTIONS(3896), - [anon_sym_BANG] = ACTIONS(3896), - [anon_sym_TILDE] = ACTIONS(3896), - [anon_sym_DASH] = ACTIONS(3894), - [anon_sym_PLUS] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(3896), - [anon_sym_AMP] = ACTIONS(3896), - [anon_sym_SEMI] = ACTIONS(3896), - [anon_sym___extension__] = ACTIONS(3894), - [anon_sym_typedef] = ACTIONS(3894), - [anon_sym_virtual] = ACTIONS(3894), - [anon_sym_extern] = ACTIONS(3894), - [anon_sym___attribute__] = ACTIONS(3894), - [anon_sym___attribute] = ACTIONS(3894), - [anon_sym_COLON_COLON] = ACTIONS(3896), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3896), - [anon_sym___declspec] = ACTIONS(3894), - [anon_sym_LBRACE] = ACTIONS(3896), - [anon_sym_signed] = ACTIONS(3894), - [anon_sym_unsigned] = ACTIONS(3894), - [anon_sym_long] = ACTIONS(3894), - [anon_sym_short] = ACTIONS(3894), - [anon_sym_LBRACK] = ACTIONS(3894), - [anon_sym_static] = ACTIONS(3894), - [anon_sym_register] = ACTIONS(3894), - [anon_sym_inline] = ACTIONS(3894), - [anon_sym___inline] = ACTIONS(3894), - [anon_sym___inline__] = ACTIONS(3894), - [anon_sym___forceinline] = ACTIONS(3894), - [anon_sym_thread_local] = ACTIONS(3894), - [anon_sym___thread] = ACTIONS(3894), - [anon_sym_const] = ACTIONS(3894), - [anon_sym_constexpr] = ACTIONS(3894), - [anon_sym_volatile] = ACTIONS(3894), - [anon_sym_restrict] = ACTIONS(3894), - [anon_sym___restrict__] = ACTIONS(3894), - [anon_sym__Atomic] = ACTIONS(3894), - [anon_sym__Noreturn] = ACTIONS(3894), - [anon_sym_noreturn] = ACTIONS(3894), - [anon_sym__Nonnull] = ACTIONS(3894), - [anon_sym_mutable] = ACTIONS(3894), - [anon_sym_constinit] = ACTIONS(3894), - [anon_sym_consteval] = ACTIONS(3894), - [anon_sym_alignas] = ACTIONS(3894), - [anon_sym__Alignas] = ACTIONS(3894), - [sym_primitive_type] = ACTIONS(3894), - [anon_sym_enum] = ACTIONS(3894), - [anon_sym_class] = ACTIONS(3894), - [anon_sym_struct] = ACTIONS(3894), - [anon_sym_union] = ACTIONS(3894), - [anon_sym_if] = ACTIONS(3894), - [anon_sym_else] = ACTIONS(3894), - [anon_sym_switch] = ACTIONS(3894), - [anon_sym_while] = ACTIONS(3894), - [anon_sym_do] = ACTIONS(3894), - [anon_sym_for] = ACTIONS(3894), - [anon_sym_return] = ACTIONS(3894), - [anon_sym_break] = ACTIONS(3894), - [anon_sym_continue] = ACTIONS(3894), - [anon_sym_goto] = ACTIONS(3894), - [anon_sym___try] = ACTIONS(3894), - [anon_sym___leave] = ACTIONS(3894), - [anon_sym_not] = ACTIONS(3894), - [anon_sym_compl] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3896), - [anon_sym_PLUS_PLUS] = ACTIONS(3896), - [anon_sym_sizeof] = ACTIONS(3894), - [anon_sym___alignof__] = ACTIONS(3894), - [anon_sym___alignof] = ACTIONS(3894), - [anon_sym__alignof] = ACTIONS(3894), - [anon_sym_alignof] = ACTIONS(3894), - [anon_sym__Alignof] = ACTIONS(3894), - [anon_sym_offsetof] = ACTIONS(3894), - [anon_sym__Generic] = ACTIONS(3894), - [anon_sym_typename] = ACTIONS(3894), - [anon_sym_asm] = ACTIONS(3894), - [anon_sym___asm__] = ACTIONS(3894), - [anon_sym___asm] = ACTIONS(3894), - [sym_number_literal] = ACTIONS(3896), - [anon_sym_L_SQUOTE] = ACTIONS(3896), - [anon_sym_u_SQUOTE] = ACTIONS(3896), - [anon_sym_U_SQUOTE] = ACTIONS(3896), - [anon_sym_u8_SQUOTE] = ACTIONS(3896), - [anon_sym_SQUOTE] = ACTIONS(3896), - [anon_sym_L_DQUOTE] = ACTIONS(3896), - [anon_sym_u_DQUOTE] = ACTIONS(3896), - [anon_sym_U_DQUOTE] = ACTIONS(3896), - [anon_sym_u8_DQUOTE] = ACTIONS(3896), - [anon_sym_DQUOTE] = ACTIONS(3896), - [sym_true] = ACTIONS(3894), - [sym_false] = ACTIONS(3894), - [anon_sym_NULL] = ACTIONS(3894), - [anon_sym_nullptr] = ACTIONS(3894), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3894), - [anon_sym_decltype] = ACTIONS(3894), - [anon_sym_template] = ACTIONS(3894), - [anon_sym_try] = ACTIONS(3894), - [anon_sym_delete] = ACTIONS(3894), - [anon_sym_throw] = ACTIONS(3894), - [anon_sym_co_return] = ACTIONS(3894), - [anon_sym_co_yield] = ACTIONS(3894), - [anon_sym_R_DQUOTE] = ACTIONS(3896), - [anon_sym_LR_DQUOTE] = ACTIONS(3896), - [anon_sym_uR_DQUOTE] = ACTIONS(3896), - [anon_sym_UR_DQUOTE] = ACTIONS(3896), - [anon_sym_u8R_DQUOTE] = ACTIONS(3896), - [anon_sym_co_await] = ACTIONS(3894), - [anon_sym_new] = ACTIONS(3894), - [anon_sym_requires] = ACTIONS(3894), - [anon_sym_CARET_CARET] = ACTIONS(3896), - [anon_sym_LBRACK_COLON] = ACTIONS(3896), - [sym_this] = ACTIONS(3894), - }, - [STATE(1129)] = { - [sym_identifier] = ACTIONS(3732), - [anon_sym_LPAREN2] = ACTIONS(3734), - [anon_sym_BANG] = ACTIONS(3734), - [anon_sym_TILDE] = ACTIONS(3734), - [anon_sym_DASH] = ACTIONS(3732), - [anon_sym_PLUS] = ACTIONS(3732), - [anon_sym_STAR] = ACTIONS(3734), - [anon_sym_AMP] = ACTIONS(3734), - [anon_sym_SEMI] = ACTIONS(3734), - [anon_sym___extension__] = ACTIONS(3732), - [anon_sym_typedef] = ACTIONS(3732), - [anon_sym_virtual] = ACTIONS(3732), - [anon_sym_extern] = ACTIONS(3732), - [anon_sym___attribute__] = ACTIONS(3732), - [anon_sym___attribute] = ACTIONS(3732), - [anon_sym_COLON_COLON] = ACTIONS(3734), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3734), - [anon_sym___declspec] = ACTIONS(3732), - [anon_sym_LBRACE] = ACTIONS(3734), - [anon_sym_signed] = ACTIONS(3732), - [anon_sym_unsigned] = ACTIONS(3732), - [anon_sym_long] = ACTIONS(3732), - [anon_sym_short] = ACTIONS(3732), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_static] = ACTIONS(3732), - [anon_sym_register] = ACTIONS(3732), - [anon_sym_inline] = ACTIONS(3732), - [anon_sym___inline] = ACTIONS(3732), - [anon_sym___inline__] = ACTIONS(3732), - [anon_sym___forceinline] = ACTIONS(3732), - [anon_sym_thread_local] = ACTIONS(3732), - [anon_sym___thread] = ACTIONS(3732), - [anon_sym_const] = ACTIONS(3732), - [anon_sym_constexpr] = ACTIONS(3732), - [anon_sym_volatile] = ACTIONS(3732), - [anon_sym_restrict] = ACTIONS(3732), - [anon_sym___restrict__] = ACTIONS(3732), - [anon_sym__Atomic] = ACTIONS(3732), - [anon_sym__Noreturn] = ACTIONS(3732), - [anon_sym_noreturn] = ACTIONS(3732), - [anon_sym__Nonnull] = ACTIONS(3732), - [anon_sym_mutable] = ACTIONS(3732), - [anon_sym_constinit] = ACTIONS(3732), - [anon_sym_consteval] = ACTIONS(3732), - [anon_sym_alignas] = ACTIONS(3732), - [anon_sym__Alignas] = ACTIONS(3732), - [sym_primitive_type] = ACTIONS(3732), - [anon_sym_enum] = ACTIONS(3732), - [anon_sym_class] = ACTIONS(3732), - [anon_sym_struct] = ACTIONS(3732), - [anon_sym_union] = ACTIONS(3732), - [anon_sym_if] = ACTIONS(3732), - [anon_sym_else] = ACTIONS(3732), - [anon_sym_switch] = ACTIONS(3732), - [anon_sym_while] = ACTIONS(3732), - [anon_sym_do] = ACTIONS(3732), - [anon_sym_for] = ACTIONS(3732), - [anon_sym_return] = ACTIONS(3732), - [anon_sym_break] = ACTIONS(3732), - [anon_sym_continue] = ACTIONS(3732), - [anon_sym_goto] = ACTIONS(3732), - [anon_sym___try] = ACTIONS(3732), - [anon_sym___leave] = ACTIONS(3732), - [anon_sym_not] = ACTIONS(3732), - [anon_sym_compl] = ACTIONS(3732), - [anon_sym_DASH_DASH] = ACTIONS(3734), - [anon_sym_PLUS_PLUS] = ACTIONS(3734), - [anon_sym_sizeof] = ACTIONS(3732), - [anon_sym___alignof__] = ACTIONS(3732), - [anon_sym___alignof] = ACTIONS(3732), - [anon_sym__alignof] = ACTIONS(3732), - [anon_sym_alignof] = ACTIONS(3732), - [anon_sym__Alignof] = ACTIONS(3732), - [anon_sym_offsetof] = ACTIONS(3732), - [anon_sym__Generic] = ACTIONS(3732), - [anon_sym_typename] = ACTIONS(3732), - [anon_sym_asm] = ACTIONS(3732), - [anon_sym___asm__] = ACTIONS(3732), - [anon_sym___asm] = ACTIONS(3732), - [sym_number_literal] = ACTIONS(3734), - [anon_sym_L_SQUOTE] = ACTIONS(3734), - [anon_sym_u_SQUOTE] = ACTIONS(3734), - [anon_sym_U_SQUOTE] = ACTIONS(3734), - [anon_sym_u8_SQUOTE] = ACTIONS(3734), - [anon_sym_SQUOTE] = ACTIONS(3734), - [anon_sym_L_DQUOTE] = ACTIONS(3734), - [anon_sym_u_DQUOTE] = ACTIONS(3734), - [anon_sym_U_DQUOTE] = ACTIONS(3734), - [anon_sym_u8_DQUOTE] = ACTIONS(3734), - [anon_sym_DQUOTE] = ACTIONS(3734), - [sym_true] = ACTIONS(3732), - [sym_false] = ACTIONS(3732), - [anon_sym_NULL] = ACTIONS(3732), - [anon_sym_nullptr] = ACTIONS(3732), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3732), - [anon_sym_decltype] = ACTIONS(3732), - [anon_sym_template] = ACTIONS(3732), - [anon_sym_try] = ACTIONS(3732), - [anon_sym_delete] = ACTIONS(3732), - [anon_sym_throw] = ACTIONS(3732), - [anon_sym_co_return] = ACTIONS(3732), - [anon_sym_co_yield] = ACTIONS(3732), - [anon_sym_R_DQUOTE] = ACTIONS(3734), - [anon_sym_LR_DQUOTE] = ACTIONS(3734), - [anon_sym_uR_DQUOTE] = ACTIONS(3734), - [anon_sym_UR_DQUOTE] = ACTIONS(3734), - [anon_sym_u8R_DQUOTE] = ACTIONS(3734), - [anon_sym_co_await] = ACTIONS(3732), - [anon_sym_new] = ACTIONS(3732), - [anon_sym_requires] = ACTIONS(3732), - [anon_sym_CARET_CARET] = ACTIONS(3734), - [anon_sym_LBRACK_COLON] = ACTIONS(3734), - [sym_this] = ACTIONS(3732), - }, - [STATE(1130)] = { - [sym_identifier] = ACTIONS(3676), - [anon_sym_LPAREN2] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_TILDE] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_STAR] = ACTIONS(3678), - [anon_sym_AMP] = ACTIONS(3678), - [anon_sym_SEMI] = ACTIONS(3678), - [anon_sym___extension__] = ACTIONS(3676), - [anon_sym_typedef] = ACTIONS(3676), - [anon_sym_virtual] = ACTIONS(3676), - [anon_sym_extern] = ACTIONS(3676), - [anon_sym___attribute__] = ACTIONS(3676), - [anon_sym___attribute] = ACTIONS(3676), - [anon_sym_COLON_COLON] = ACTIONS(3678), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3678), - [anon_sym___declspec] = ACTIONS(3676), - [anon_sym_LBRACE] = ACTIONS(3678), - [anon_sym_signed] = ACTIONS(3676), - [anon_sym_unsigned] = ACTIONS(3676), - [anon_sym_long] = ACTIONS(3676), - [anon_sym_short] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3676), - [anon_sym_static] = ACTIONS(3676), - [anon_sym_register] = ACTIONS(3676), - [anon_sym_inline] = ACTIONS(3676), - [anon_sym___inline] = ACTIONS(3676), - [anon_sym___inline__] = ACTIONS(3676), - [anon_sym___forceinline] = ACTIONS(3676), - [anon_sym_thread_local] = ACTIONS(3676), - [anon_sym___thread] = ACTIONS(3676), - [anon_sym_const] = ACTIONS(3676), - [anon_sym_constexpr] = ACTIONS(3676), - [anon_sym_volatile] = ACTIONS(3676), - [anon_sym_restrict] = ACTIONS(3676), - [anon_sym___restrict__] = ACTIONS(3676), - [anon_sym__Atomic] = ACTIONS(3676), - [anon_sym__Noreturn] = ACTIONS(3676), - [anon_sym_noreturn] = ACTIONS(3676), - [anon_sym__Nonnull] = ACTIONS(3676), - [anon_sym_mutable] = ACTIONS(3676), - [anon_sym_constinit] = ACTIONS(3676), - [anon_sym_consteval] = ACTIONS(3676), - [anon_sym_alignas] = ACTIONS(3676), - [anon_sym__Alignas] = ACTIONS(3676), - [sym_primitive_type] = ACTIONS(3676), - [anon_sym_enum] = ACTIONS(3676), - [anon_sym_class] = ACTIONS(3676), - [anon_sym_struct] = ACTIONS(3676), - [anon_sym_union] = ACTIONS(3676), - [anon_sym_if] = ACTIONS(3676), - [anon_sym_else] = ACTIONS(3676), - [anon_sym_switch] = ACTIONS(3676), - [anon_sym_while] = ACTIONS(3676), - [anon_sym_do] = ACTIONS(3676), - [anon_sym_for] = ACTIONS(3676), - [anon_sym_return] = ACTIONS(3676), - [anon_sym_break] = ACTIONS(3676), - [anon_sym_continue] = ACTIONS(3676), - [anon_sym_goto] = ACTIONS(3676), - [anon_sym___try] = ACTIONS(3676), - [anon_sym___leave] = ACTIONS(3676), - [anon_sym_not] = ACTIONS(3676), - [anon_sym_compl] = ACTIONS(3676), - [anon_sym_DASH_DASH] = ACTIONS(3678), - [anon_sym_PLUS_PLUS] = ACTIONS(3678), - [anon_sym_sizeof] = ACTIONS(3676), - [anon_sym___alignof__] = ACTIONS(3676), - [anon_sym___alignof] = ACTIONS(3676), - [anon_sym__alignof] = ACTIONS(3676), - [anon_sym_alignof] = ACTIONS(3676), - [anon_sym__Alignof] = ACTIONS(3676), - [anon_sym_offsetof] = ACTIONS(3676), - [anon_sym__Generic] = ACTIONS(3676), - [anon_sym_typename] = ACTIONS(3676), - [anon_sym_asm] = ACTIONS(3676), - [anon_sym___asm__] = ACTIONS(3676), - [anon_sym___asm] = ACTIONS(3676), - [sym_number_literal] = ACTIONS(3678), - [anon_sym_L_SQUOTE] = ACTIONS(3678), - [anon_sym_u_SQUOTE] = ACTIONS(3678), - [anon_sym_U_SQUOTE] = ACTIONS(3678), - [anon_sym_u8_SQUOTE] = ACTIONS(3678), - [anon_sym_SQUOTE] = ACTIONS(3678), - [anon_sym_L_DQUOTE] = ACTIONS(3678), - [anon_sym_u_DQUOTE] = ACTIONS(3678), - [anon_sym_U_DQUOTE] = ACTIONS(3678), - [anon_sym_u8_DQUOTE] = ACTIONS(3678), - [anon_sym_DQUOTE] = ACTIONS(3678), - [sym_true] = ACTIONS(3676), - [sym_false] = ACTIONS(3676), - [anon_sym_NULL] = ACTIONS(3676), - [anon_sym_nullptr] = ACTIONS(3676), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3676), - [anon_sym_decltype] = ACTIONS(3676), - [anon_sym_template] = ACTIONS(3676), - [anon_sym_try] = ACTIONS(3676), - [anon_sym_delete] = ACTIONS(3676), - [anon_sym_throw] = ACTIONS(3676), - [anon_sym_co_return] = ACTIONS(3676), - [anon_sym_co_yield] = ACTIONS(3676), - [anon_sym_R_DQUOTE] = ACTIONS(3678), - [anon_sym_LR_DQUOTE] = ACTIONS(3678), - [anon_sym_uR_DQUOTE] = ACTIONS(3678), - [anon_sym_UR_DQUOTE] = ACTIONS(3678), - [anon_sym_u8R_DQUOTE] = ACTIONS(3678), - [anon_sym_co_await] = ACTIONS(3676), - [anon_sym_new] = ACTIONS(3676), - [anon_sym_requires] = ACTIONS(3676), - [anon_sym_CARET_CARET] = ACTIONS(3678), - [anon_sym_LBRACK_COLON] = ACTIONS(3678), - [sym_this] = ACTIONS(3676), - }, - [STATE(1131)] = { - [sym_identifier] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3706), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3706), - [anon_sym_SEMI] = ACTIONS(3706), - [anon_sym___extension__] = ACTIONS(3704), - [anon_sym_typedef] = ACTIONS(3704), - [anon_sym_virtual] = ACTIONS(3704), - [anon_sym_extern] = ACTIONS(3704), - [anon_sym___attribute__] = ACTIONS(3704), - [anon_sym___attribute] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), - [anon_sym___declspec] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3706), - [anon_sym_signed] = ACTIONS(3704), - [anon_sym_unsigned] = ACTIONS(3704), - [anon_sym_long] = ACTIONS(3704), - [anon_sym_short] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_static] = ACTIONS(3704), - [anon_sym_register] = ACTIONS(3704), - [anon_sym_inline] = ACTIONS(3704), - [anon_sym___inline] = ACTIONS(3704), - [anon_sym___inline__] = ACTIONS(3704), - [anon_sym___forceinline] = ACTIONS(3704), - [anon_sym_thread_local] = ACTIONS(3704), - [anon_sym___thread] = ACTIONS(3704), - [anon_sym_const] = ACTIONS(3704), - [anon_sym_constexpr] = ACTIONS(3704), - [anon_sym_volatile] = ACTIONS(3704), - [anon_sym_restrict] = ACTIONS(3704), - [anon_sym___restrict__] = ACTIONS(3704), - [anon_sym__Atomic] = ACTIONS(3704), - [anon_sym__Noreturn] = ACTIONS(3704), - [anon_sym_noreturn] = ACTIONS(3704), - [anon_sym__Nonnull] = ACTIONS(3704), - [anon_sym_mutable] = ACTIONS(3704), - [anon_sym_constinit] = ACTIONS(3704), - [anon_sym_consteval] = ACTIONS(3704), - [anon_sym_alignas] = ACTIONS(3704), - [anon_sym__Alignas] = ACTIONS(3704), - [sym_primitive_type] = ACTIONS(3704), - [anon_sym_enum] = ACTIONS(3704), - [anon_sym_class] = ACTIONS(3704), - [anon_sym_struct] = ACTIONS(3704), - [anon_sym_union] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_else] = ACTIONS(3704), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_break] = ACTIONS(3704), - [anon_sym_continue] = ACTIONS(3704), - [anon_sym_goto] = ACTIONS(3704), - [anon_sym___try] = ACTIONS(3704), - [anon_sym___leave] = ACTIONS(3704), - [anon_sym_not] = ACTIONS(3704), - [anon_sym_compl] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_sizeof] = ACTIONS(3704), - [anon_sym___alignof__] = ACTIONS(3704), - [anon_sym___alignof] = ACTIONS(3704), - [anon_sym__alignof] = ACTIONS(3704), - [anon_sym_alignof] = ACTIONS(3704), - [anon_sym__Alignof] = ACTIONS(3704), - [anon_sym_offsetof] = ACTIONS(3704), - [anon_sym__Generic] = ACTIONS(3704), - [anon_sym_typename] = ACTIONS(3704), - [anon_sym_asm] = ACTIONS(3704), - [anon_sym___asm__] = ACTIONS(3704), - [anon_sym___asm] = ACTIONS(3704), - [sym_number_literal] = ACTIONS(3706), - [anon_sym_L_SQUOTE] = ACTIONS(3706), - [anon_sym_u_SQUOTE] = ACTIONS(3706), - [anon_sym_U_SQUOTE] = ACTIONS(3706), - [anon_sym_u8_SQUOTE] = ACTIONS(3706), - [anon_sym_SQUOTE] = ACTIONS(3706), - [anon_sym_L_DQUOTE] = ACTIONS(3706), - [anon_sym_u_DQUOTE] = ACTIONS(3706), - [anon_sym_U_DQUOTE] = ACTIONS(3706), - [anon_sym_u8_DQUOTE] = ACTIONS(3706), - [anon_sym_DQUOTE] = ACTIONS(3706), - [sym_true] = ACTIONS(3704), - [sym_false] = ACTIONS(3704), - [anon_sym_NULL] = ACTIONS(3704), - [anon_sym_nullptr] = ACTIONS(3704), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3704), - [anon_sym_decltype] = ACTIONS(3704), - [anon_sym_template] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_delete] = ACTIONS(3704), - [anon_sym_throw] = ACTIONS(3704), - [anon_sym_co_return] = ACTIONS(3704), - [anon_sym_co_yield] = ACTIONS(3704), - [anon_sym_R_DQUOTE] = ACTIONS(3706), - [anon_sym_LR_DQUOTE] = ACTIONS(3706), - [anon_sym_uR_DQUOTE] = ACTIONS(3706), - [anon_sym_UR_DQUOTE] = ACTIONS(3706), - [anon_sym_u8R_DQUOTE] = ACTIONS(3706), - [anon_sym_co_await] = ACTIONS(3704), - [anon_sym_new] = ACTIONS(3704), - [anon_sym_requires] = ACTIONS(3704), - [anon_sym_CARET_CARET] = ACTIONS(3706), - [anon_sym_LBRACK_COLON] = ACTIONS(3706), - [sym_this] = ACTIONS(3704), - }, - [STATE(1132)] = { - [sym_identifier] = ACTIONS(3648), - [anon_sym_LPAREN2] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_TILDE] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3650), - [anon_sym_SEMI] = ACTIONS(3650), - [anon_sym___extension__] = ACTIONS(3648), - [anon_sym_typedef] = ACTIONS(3648), - [anon_sym_virtual] = ACTIONS(3648), - [anon_sym_extern] = ACTIONS(3648), - [anon_sym___attribute__] = ACTIONS(3648), - [anon_sym___attribute] = ACTIONS(3648), - [anon_sym_COLON_COLON] = ACTIONS(3650), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), - [anon_sym___declspec] = ACTIONS(3648), - [anon_sym_LBRACE] = ACTIONS(3650), - [anon_sym_signed] = ACTIONS(3648), - [anon_sym_unsigned] = ACTIONS(3648), - [anon_sym_long] = ACTIONS(3648), - [anon_sym_short] = ACTIONS(3648), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_static] = ACTIONS(3648), - [anon_sym_register] = ACTIONS(3648), - [anon_sym_inline] = ACTIONS(3648), - [anon_sym___inline] = ACTIONS(3648), - [anon_sym___inline__] = ACTIONS(3648), - [anon_sym___forceinline] = ACTIONS(3648), - [anon_sym_thread_local] = ACTIONS(3648), - [anon_sym___thread] = ACTIONS(3648), - [anon_sym_const] = ACTIONS(3648), - [anon_sym_constexpr] = ACTIONS(3648), - [anon_sym_volatile] = ACTIONS(3648), - [anon_sym_restrict] = ACTIONS(3648), - [anon_sym___restrict__] = ACTIONS(3648), - [anon_sym__Atomic] = ACTIONS(3648), - [anon_sym__Noreturn] = ACTIONS(3648), - [anon_sym_noreturn] = ACTIONS(3648), - [anon_sym__Nonnull] = ACTIONS(3648), - [anon_sym_mutable] = ACTIONS(3648), - [anon_sym_constinit] = ACTIONS(3648), - [anon_sym_consteval] = ACTIONS(3648), - [anon_sym_alignas] = ACTIONS(3648), - [anon_sym__Alignas] = ACTIONS(3648), - [sym_primitive_type] = ACTIONS(3648), - [anon_sym_enum] = ACTIONS(3648), - [anon_sym_class] = ACTIONS(3648), - [anon_sym_struct] = ACTIONS(3648), - [anon_sym_union] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3648), - [anon_sym_else] = ACTIONS(3648), - [anon_sym_switch] = ACTIONS(3648), - [anon_sym_while] = ACTIONS(3648), - [anon_sym_do] = ACTIONS(3648), - [anon_sym_for] = ACTIONS(3648), - [anon_sym_return] = ACTIONS(3648), - [anon_sym_break] = ACTIONS(3648), - [anon_sym_continue] = ACTIONS(3648), - [anon_sym_goto] = ACTIONS(3648), - [anon_sym___try] = ACTIONS(3648), - [anon_sym___leave] = ACTIONS(3648), - [anon_sym_not] = ACTIONS(3648), - [anon_sym_compl] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3650), - [anon_sym_sizeof] = ACTIONS(3648), - [anon_sym___alignof__] = ACTIONS(3648), - [anon_sym___alignof] = ACTIONS(3648), - [anon_sym__alignof] = ACTIONS(3648), - [anon_sym_alignof] = ACTIONS(3648), - [anon_sym__Alignof] = ACTIONS(3648), - [anon_sym_offsetof] = ACTIONS(3648), - [anon_sym__Generic] = ACTIONS(3648), - [anon_sym_typename] = ACTIONS(3648), - [anon_sym_asm] = ACTIONS(3648), - [anon_sym___asm__] = ACTIONS(3648), - [anon_sym___asm] = ACTIONS(3648), - [sym_number_literal] = ACTIONS(3650), - [anon_sym_L_SQUOTE] = ACTIONS(3650), - [anon_sym_u_SQUOTE] = ACTIONS(3650), - [anon_sym_U_SQUOTE] = ACTIONS(3650), - [anon_sym_u8_SQUOTE] = ACTIONS(3650), - [anon_sym_SQUOTE] = ACTIONS(3650), - [anon_sym_L_DQUOTE] = ACTIONS(3650), - [anon_sym_u_DQUOTE] = ACTIONS(3650), - [anon_sym_U_DQUOTE] = ACTIONS(3650), - [anon_sym_u8_DQUOTE] = ACTIONS(3650), - [anon_sym_DQUOTE] = ACTIONS(3650), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [anon_sym_NULL] = ACTIONS(3648), - [anon_sym_nullptr] = ACTIONS(3648), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3648), - [anon_sym_decltype] = ACTIONS(3648), - [anon_sym_template] = ACTIONS(3648), - [anon_sym_try] = ACTIONS(3648), - [anon_sym_delete] = ACTIONS(3648), - [anon_sym_throw] = ACTIONS(3648), - [anon_sym_co_return] = ACTIONS(3648), - [anon_sym_co_yield] = ACTIONS(3648), - [anon_sym_R_DQUOTE] = ACTIONS(3650), - [anon_sym_LR_DQUOTE] = ACTIONS(3650), - [anon_sym_uR_DQUOTE] = ACTIONS(3650), - [anon_sym_UR_DQUOTE] = ACTIONS(3650), - [anon_sym_u8R_DQUOTE] = ACTIONS(3650), - [anon_sym_co_await] = ACTIONS(3648), - [anon_sym_new] = ACTIONS(3648), - [anon_sym_requires] = ACTIONS(3648), - [anon_sym_CARET_CARET] = ACTIONS(3650), - [anon_sym_LBRACK_COLON] = ACTIONS(3650), - [sym_this] = ACTIONS(3648), - }, - [STATE(1133)] = { - [sym_identifier] = ACTIONS(3660), - [anon_sym_LPAREN2] = ACTIONS(3662), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_TILDE] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym___extension__] = ACTIONS(3660), - [anon_sym_typedef] = ACTIONS(3660), - [anon_sym_virtual] = ACTIONS(3660), - [anon_sym_extern] = ACTIONS(3660), - [anon_sym___attribute__] = ACTIONS(3660), - [anon_sym___attribute] = ACTIONS(3660), - [anon_sym_COLON_COLON] = ACTIONS(3662), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), - [anon_sym___declspec] = ACTIONS(3660), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_signed] = ACTIONS(3660), - [anon_sym_unsigned] = ACTIONS(3660), - [anon_sym_long] = ACTIONS(3660), - [anon_sym_short] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_static] = ACTIONS(3660), - [anon_sym_register] = ACTIONS(3660), - [anon_sym_inline] = ACTIONS(3660), - [anon_sym___inline] = ACTIONS(3660), - [anon_sym___inline__] = ACTIONS(3660), - [anon_sym___forceinline] = ACTIONS(3660), - [anon_sym_thread_local] = ACTIONS(3660), - [anon_sym___thread] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3660), - [anon_sym_constexpr] = ACTIONS(3660), - [anon_sym_volatile] = ACTIONS(3660), - [anon_sym_restrict] = ACTIONS(3660), - [anon_sym___restrict__] = ACTIONS(3660), - [anon_sym__Atomic] = ACTIONS(3660), - [anon_sym__Noreturn] = ACTIONS(3660), - [anon_sym_noreturn] = ACTIONS(3660), - [anon_sym__Nonnull] = ACTIONS(3660), - [anon_sym_mutable] = ACTIONS(3660), - [anon_sym_constinit] = ACTIONS(3660), - [anon_sym_consteval] = ACTIONS(3660), - [anon_sym_alignas] = ACTIONS(3660), - [anon_sym__Alignas] = ACTIONS(3660), - [sym_primitive_type] = ACTIONS(3660), - [anon_sym_enum] = ACTIONS(3660), - [anon_sym_class] = ACTIONS(3660), - [anon_sym_struct] = ACTIONS(3660), - [anon_sym_union] = ACTIONS(3660), - [anon_sym_if] = ACTIONS(3660), - [anon_sym_else] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_while] = ACTIONS(3660), - [anon_sym_do] = ACTIONS(3660), - [anon_sym_for] = ACTIONS(3660), - [anon_sym_return] = ACTIONS(3660), - [anon_sym_break] = ACTIONS(3660), - [anon_sym_continue] = ACTIONS(3660), - [anon_sym_goto] = ACTIONS(3660), - [anon_sym___try] = ACTIONS(3660), - [anon_sym___leave] = ACTIONS(3660), - [anon_sym_not] = ACTIONS(3660), - [anon_sym_compl] = ACTIONS(3660), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_sizeof] = ACTIONS(3660), - [anon_sym___alignof__] = ACTIONS(3660), - [anon_sym___alignof] = ACTIONS(3660), - [anon_sym__alignof] = ACTIONS(3660), - [anon_sym_alignof] = ACTIONS(3660), - [anon_sym__Alignof] = ACTIONS(3660), - [anon_sym_offsetof] = ACTIONS(3660), - [anon_sym__Generic] = ACTIONS(3660), - [anon_sym_typename] = ACTIONS(3660), - [anon_sym_asm] = ACTIONS(3660), - [anon_sym___asm__] = ACTIONS(3660), - [anon_sym___asm] = ACTIONS(3660), - [sym_number_literal] = ACTIONS(3662), - [anon_sym_L_SQUOTE] = ACTIONS(3662), - [anon_sym_u_SQUOTE] = ACTIONS(3662), - [anon_sym_U_SQUOTE] = ACTIONS(3662), - [anon_sym_u8_SQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3662), - [anon_sym_L_DQUOTE] = ACTIONS(3662), - [anon_sym_u_DQUOTE] = ACTIONS(3662), - [anon_sym_U_DQUOTE] = ACTIONS(3662), - [anon_sym_u8_DQUOTE] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3662), - [sym_true] = ACTIONS(3660), - [sym_false] = ACTIONS(3660), - [anon_sym_NULL] = ACTIONS(3660), - [anon_sym_nullptr] = ACTIONS(3660), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3660), - [anon_sym_decltype] = ACTIONS(3660), - [anon_sym_template] = ACTIONS(3660), - [anon_sym_try] = ACTIONS(3660), - [anon_sym_delete] = ACTIONS(3660), - [anon_sym_throw] = ACTIONS(3660), - [anon_sym_co_return] = ACTIONS(3660), - [anon_sym_co_yield] = ACTIONS(3660), - [anon_sym_R_DQUOTE] = ACTIONS(3662), - [anon_sym_LR_DQUOTE] = ACTIONS(3662), - [anon_sym_uR_DQUOTE] = ACTIONS(3662), - [anon_sym_UR_DQUOTE] = ACTIONS(3662), - [anon_sym_u8R_DQUOTE] = ACTIONS(3662), - [anon_sym_co_await] = ACTIONS(3660), - [anon_sym_new] = ACTIONS(3660), - [anon_sym_requires] = ACTIONS(3660), - [anon_sym_CARET_CARET] = ACTIONS(3662), - [anon_sym_LBRACK_COLON] = ACTIONS(3662), - [sym_this] = ACTIONS(3660), - }, - [STATE(1134)] = { - [sym_identifier] = ACTIONS(3672), - [anon_sym_LPAREN2] = ACTIONS(3674), - [anon_sym_BANG] = ACTIONS(3674), - [anon_sym_TILDE] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_STAR] = ACTIONS(3674), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_SEMI] = ACTIONS(3674), - [anon_sym___extension__] = ACTIONS(3672), - [anon_sym_typedef] = ACTIONS(3672), - [anon_sym_virtual] = ACTIONS(3672), - [anon_sym_extern] = ACTIONS(3672), - [anon_sym___attribute__] = ACTIONS(3672), - [anon_sym___attribute] = ACTIONS(3672), - [anon_sym_COLON_COLON] = ACTIONS(3674), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3674), - [anon_sym___declspec] = ACTIONS(3672), - [anon_sym_LBRACE] = ACTIONS(3674), - [anon_sym_signed] = ACTIONS(3672), - [anon_sym_unsigned] = ACTIONS(3672), - [anon_sym_long] = ACTIONS(3672), - [anon_sym_short] = ACTIONS(3672), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_static] = ACTIONS(3672), - [anon_sym_register] = ACTIONS(3672), - [anon_sym_inline] = ACTIONS(3672), - [anon_sym___inline] = ACTIONS(3672), - [anon_sym___inline__] = ACTIONS(3672), - [anon_sym___forceinline] = ACTIONS(3672), - [anon_sym_thread_local] = ACTIONS(3672), - [anon_sym___thread] = ACTIONS(3672), - [anon_sym_const] = ACTIONS(3672), - [anon_sym_constexpr] = ACTIONS(3672), - [anon_sym_volatile] = ACTIONS(3672), - [anon_sym_restrict] = ACTIONS(3672), - [anon_sym___restrict__] = ACTIONS(3672), - [anon_sym__Atomic] = ACTIONS(3672), - [anon_sym__Noreturn] = ACTIONS(3672), - [anon_sym_noreturn] = ACTIONS(3672), - [anon_sym__Nonnull] = ACTIONS(3672), - [anon_sym_mutable] = ACTIONS(3672), - [anon_sym_constinit] = ACTIONS(3672), - [anon_sym_consteval] = ACTIONS(3672), - [anon_sym_alignas] = ACTIONS(3672), - [anon_sym__Alignas] = ACTIONS(3672), - [sym_primitive_type] = ACTIONS(3672), - [anon_sym_enum] = ACTIONS(3672), - [anon_sym_class] = ACTIONS(3672), - [anon_sym_struct] = ACTIONS(3672), - [anon_sym_union] = ACTIONS(3672), - [anon_sym_if] = ACTIONS(3672), - [anon_sym_else] = ACTIONS(3672), - [anon_sym_switch] = ACTIONS(3672), - [anon_sym_while] = ACTIONS(3672), - [anon_sym_do] = ACTIONS(3672), - [anon_sym_for] = ACTIONS(3672), - [anon_sym_return] = ACTIONS(3672), - [anon_sym_break] = ACTIONS(3672), - [anon_sym_continue] = ACTIONS(3672), - [anon_sym_goto] = ACTIONS(3672), - [anon_sym___try] = ACTIONS(3672), - [anon_sym___leave] = ACTIONS(3672), - [anon_sym_not] = ACTIONS(3672), - [anon_sym_compl] = ACTIONS(3672), - [anon_sym_DASH_DASH] = ACTIONS(3674), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_sizeof] = ACTIONS(3672), - [anon_sym___alignof__] = ACTIONS(3672), - [anon_sym___alignof] = ACTIONS(3672), - [anon_sym__alignof] = ACTIONS(3672), - [anon_sym_alignof] = ACTIONS(3672), - [anon_sym__Alignof] = ACTIONS(3672), - [anon_sym_offsetof] = ACTIONS(3672), - [anon_sym__Generic] = ACTIONS(3672), - [anon_sym_typename] = ACTIONS(3672), - [anon_sym_asm] = ACTIONS(3672), - [anon_sym___asm__] = ACTIONS(3672), - [anon_sym___asm] = ACTIONS(3672), - [sym_number_literal] = ACTIONS(3674), - [anon_sym_L_SQUOTE] = ACTIONS(3674), - [anon_sym_u_SQUOTE] = ACTIONS(3674), - [anon_sym_U_SQUOTE] = ACTIONS(3674), - [anon_sym_u8_SQUOTE] = ACTIONS(3674), - [anon_sym_SQUOTE] = ACTIONS(3674), - [anon_sym_L_DQUOTE] = ACTIONS(3674), - [anon_sym_u_DQUOTE] = ACTIONS(3674), - [anon_sym_U_DQUOTE] = ACTIONS(3674), - [anon_sym_u8_DQUOTE] = ACTIONS(3674), - [anon_sym_DQUOTE] = ACTIONS(3674), - [sym_true] = ACTIONS(3672), - [sym_false] = ACTIONS(3672), - [anon_sym_NULL] = ACTIONS(3672), - [anon_sym_nullptr] = ACTIONS(3672), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3672), - [anon_sym_decltype] = ACTIONS(3672), - [anon_sym_template] = ACTIONS(3672), - [anon_sym_try] = ACTIONS(3672), - [anon_sym_delete] = ACTIONS(3672), - [anon_sym_throw] = ACTIONS(3672), - [anon_sym_co_return] = ACTIONS(3672), - [anon_sym_co_yield] = ACTIONS(3672), - [anon_sym_R_DQUOTE] = ACTIONS(3674), - [anon_sym_LR_DQUOTE] = ACTIONS(3674), - [anon_sym_uR_DQUOTE] = ACTIONS(3674), - [anon_sym_UR_DQUOTE] = ACTIONS(3674), - [anon_sym_u8R_DQUOTE] = ACTIONS(3674), - [anon_sym_co_await] = ACTIONS(3672), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_requires] = ACTIONS(3672), - [anon_sym_CARET_CARET] = ACTIONS(3674), - [anon_sym_LBRACK_COLON] = ACTIONS(3674), - [sym_this] = ACTIONS(3672), - }, - [STATE(1135)] = { - [sym_expression] = STATE(6853), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_lambda_default_capture] = STATE(10128), - [sym__lambda_capture_identifier] = STATE(9644), - [sym_lambda_capture_initializer] = STATE(9644), - [sym__lambda_capture] = STATE(9644), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_identifier_parameter_pack_expansion] = STATE(9644), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5720), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(5556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5558), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(5560), - [anon_sym_AMP] = ACTIONS(5562), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5564), - [anon_sym_EQ] = ACTIONS(5566), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(5568), - }, - [STATE(1136)] = { - [sym_identifier] = ACTIONS(3668), - [anon_sym_LPAREN2] = ACTIONS(3670), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_TILDE] = ACTIONS(3670), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_SEMI] = ACTIONS(3670), - [anon_sym___extension__] = ACTIONS(3668), - [anon_sym_typedef] = ACTIONS(3668), - [anon_sym_virtual] = ACTIONS(3668), - [anon_sym_extern] = ACTIONS(3668), - [anon_sym___attribute__] = ACTIONS(3668), - [anon_sym___attribute] = ACTIONS(3668), - [anon_sym_COLON_COLON] = ACTIONS(3670), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), - [anon_sym___declspec] = ACTIONS(3668), - [anon_sym_LBRACE] = ACTIONS(3670), - [anon_sym_signed] = ACTIONS(3668), - [anon_sym_unsigned] = ACTIONS(3668), - [anon_sym_long] = ACTIONS(3668), - [anon_sym_short] = ACTIONS(3668), - [anon_sym_LBRACK] = ACTIONS(3668), - [anon_sym_static] = ACTIONS(3668), - [anon_sym_register] = ACTIONS(3668), - [anon_sym_inline] = ACTIONS(3668), - [anon_sym___inline] = ACTIONS(3668), - [anon_sym___inline__] = ACTIONS(3668), - [anon_sym___forceinline] = ACTIONS(3668), - [anon_sym_thread_local] = ACTIONS(3668), - [anon_sym___thread] = ACTIONS(3668), - [anon_sym_const] = ACTIONS(3668), - [anon_sym_constexpr] = ACTIONS(3668), - [anon_sym_volatile] = ACTIONS(3668), - [anon_sym_restrict] = ACTIONS(3668), - [anon_sym___restrict__] = ACTIONS(3668), - [anon_sym__Atomic] = ACTIONS(3668), - [anon_sym__Noreturn] = ACTIONS(3668), - [anon_sym_noreturn] = ACTIONS(3668), - [anon_sym__Nonnull] = ACTIONS(3668), - [anon_sym_mutable] = ACTIONS(3668), - [anon_sym_constinit] = ACTIONS(3668), - [anon_sym_consteval] = ACTIONS(3668), - [anon_sym_alignas] = ACTIONS(3668), - [anon_sym__Alignas] = ACTIONS(3668), - [sym_primitive_type] = ACTIONS(3668), - [anon_sym_enum] = ACTIONS(3668), - [anon_sym_class] = ACTIONS(3668), - [anon_sym_struct] = ACTIONS(3668), - [anon_sym_union] = ACTIONS(3668), - [anon_sym_if] = ACTIONS(3668), - [anon_sym_else] = ACTIONS(3668), - [anon_sym_switch] = ACTIONS(3668), - [anon_sym_while] = ACTIONS(3668), - [anon_sym_do] = ACTIONS(3668), - [anon_sym_for] = ACTIONS(3668), - [anon_sym_return] = ACTIONS(3668), - [anon_sym_break] = ACTIONS(3668), - [anon_sym_continue] = ACTIONS(3668), - [anon_sym_goto] = ACTIONS(3668), - [anon_sym___try] = ACTIONS(3668), - [anon_sym___leave] = ACTIONS(3668), - [anon_sym_not] = ACTIONS(3668), - [anon_sym_compl] = ACTIONS(3668), - [anon_sym_DASH_DASH] = ACTIONS(3670), - [anon_sym_PLUS_PLUS] = ACTIONS(3670), - [anon_sym_sizeof] = ACTIONS(3668), - [anon_sym___alignof__] = ACTIONS(3668), - [anon_sym___alignof] = ACTIONS(3668), - [anon_sym__alignof] = ACTIONS(3668), - [anon_sym_alignof] = ACTIONS(3668), - [anon_sym__Alignof] = ACTIONS(3668), - [anon_sym_offsetof] = ACTIONS(3668), - [anon_sym__Generic] = ACTIONS(3668), - [anon_sym_typename] = ACTIONS(3668), - [anon_sym_asm] = ACTIONS(3668), - [anon_sym___asm__] = ACTIONS(3668), - [anon_sym___asm] = ACTIONS(3668), - [sym_number_literal] = ACTIONS(3670), - [anon_sym_L_SQUOTE] = ACTIONS(3670), - [anon_sym_u_SQUOTE] = ACTIONS(3670), - [anon_sym_U_SQUOTE] = ACTIONS(3670), - [anon_sym_u8_SQUOTE] = ACTIONS(3670), - [anon_sym_SQUOTE] = ACTIONS(3670), - [anon_sym_L_DQUOTE] = ACTIONS(3670), - [anon_sym_u_DQUOTE] = ACTIONS(3670), - [anon_sym_U_DQUOTE] = ACTIONS(3670), - [anon_sym_u8_DQUOTE] = ACTIONS(3670), - [anon_sym_DQUOTE] = ACTIONS(3670), - [sym_true] = ACTIONS(3668), - [sym_false] = ACTIONS(3668), - [anon_sym_NULL] = ACTIONS(3668), - [anon_sym_nullptr] = ACTIONS(3668), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3668), - [anon_sym_decltype] = ACTIONS(3668), - [anon_sym_template] = ACTIONS(3668), - [anon_sym_try] = ACTIONS(3668), - [anon_sym_delete] = ACTIONS(3668), - [anon_sym_throw] = ACTIONS(3668), - [anon_sym_co_return] = ACTIONS(3668), - [anon_sym_co_yield] = ACTIONS(3668), - [anon_sym_R_DQUOTE] = ACTIONS(3670), - [anon_sym_LR_DQUOTE] = ACTIONS(3670), - [anon_sym_uR_DQUOTE] = ACTIONS(3670), - [anon_sym_UR_DQUOTE] = ACTIONS(3670), - [anon_sym_u8R_DQUOTE] = ACTIONS(3670), - [anon_sym_co_await] = ACTIONS(3668), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_requires] = ACTIONS(3668), - [anon_sym_CARET_CARET] = ACTIONS(3670), - [anon_sym_LBRACK_COLON] = ACTIONS(3670), - [sym_this] = ACTIONS(3668), - }, - [STATE(1137)] = { - [sym_identifier] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3632), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym___attribute] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym__Nonnull] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym__Alignas] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_else] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [anon_sym_goto] = ACTIONS(3630), - [anon_sym___try] = ACTIONS(3630), - [anon_sym___leave] = ACTIONS(3630), - [anon_sym_not] = ACTIONS(3630), - [anon_sym_compl] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3632), - [anon_sym_PLUS_PLUS] = ACTIONS(3632), - [anon_sym_sizeof] = ACTIONS(3630), - [anon_sym___alignof__] = ACTIONS(3630), - [anon_sym___alignof] = ACTIONS(3630), - [anon_sym__alignof] = ACTIONS(3630), - [anon_sym_alignof] = ACTIONS(3630), - [anon_sym__Alignof] = ACTIONS(3630), - [anon_sym_offsetof] = ACTIONS(3630), - [anon_sym__Generic] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [anon_sym_asm] = ACTIONS(3630), - [anon_sym___asm__] = ACTIONS(3630), - [anon_sym___asm] = ACTIONS(3630), - [sym_number_literal] = ACTIONS(3632), - [anon_sym_L_SQUOTE] = ACTIONS(3632), - [anon_sym_u_SQUOTE] = ACTIONS(3632), - [anon_sym_U_SQUOTE] = ACTIONS(3632), - [anon_sym_u8_SQUOTE] = ACTIONS(3632), - [anon_sym_SQUOTE] = ACTIONS(3632), - [anon_sym_L_DQUOTE] = ACTIONS(3632), - [anon_sym_u_DQUOTE] = ACTIONS(3632), - [anon_sym_U_DQUOTE] = ACTIONS(3632), - [anon_sym_u8_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE] = ACTIONS(3632), - [sym_true] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [anon_sym_NULL] = ACTIONS(3630), - [anon_sym_nullptr] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_delete] = ACTIONS(3630), - [anon_sym_throw] = ACTIONS(3630), - [anon_sym_co_return] = ACTIONS(3630), - [anon_sym_co_yield] = ACTIONS(3630), - [anon_sym_R_DQUOTE] = ACTIONS(3632), - [anon_sym_LR_DQUOTE] = ACTIONS(3632), - [anon_sym_uR_DQUOTE] = ACTIONS(3632), - [anon_sym_UR_DQUOTE] = ACTIONS(3632), - [anon_sym_u8R_DQUOTE] = ACTIONS(3632), - [anon_sym_co_await] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_requires] = ACTIONS(3630), - [anon_sym_CARET_CARET] = ACTIONS(3632), - [anon_sym_LBRACK_COLON] = ACTIONS(3632), - [sym_this] = ACTIONS(3630), - }, - [STATE(1138)] = { - [sym_identifier] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3706), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_DASH] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(3704), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3706), - [anon_sym_SEMI] = ACTIONS(3706), - [anon_sym___extension__] = ACTIONS(3704), - [anon_sym_typedef] = ACTIONS(3704), - [anon_sym_virtual] = ACTIONS(3704), - [anon_sym_extern] = ACTIONS(3704), - [anon_sym___attribute__] = ACTIONS(3704), - [anon_sym___attribute] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), - [anon_sym___declspec] = ACTIONS(3704), - [anon_sym_LBRACE] = ACTIONS(3706), - [anon_sym_signed] = ACTIONS(3704), - [anon_sym_unsigned] = ACTIONS(3704), - [anon_sym_long] = ACTIONS(3704), - [anon_sym_short] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_static] = ACTIONS(3704), - [anon_sym_register] = ACTIONS(3704), - [anon_sym_inline] = ACTIONS(3704), - [anon_sym___inline] = ACTIONS(3704), - [anon_sym___inline__] = ACTIONS(3704), - [anon_sym___forceinline] = ACTIONS(3704), - [anon_sym_thread_local] = ACTIONS(3704), - [anon_sym___thread] = ACTIONS(3704), - [anon_sym_const] = ACTIONS(3704), - [anon_sym_constexpr] = ACTIONS(3704), - [anon_sym_volatile] = ACTIONS(3704), - [anon_sym_restrict] = ACTIONS(3704), - [anon_sym___restrict__] = ACTIONS(3704), - [anon_sym__Atomic] = ACTIONS(3704), - [anon_sym__Noreturn] = ACTIONS(3704), - [anon_sym_noreturn] = ACTIONS(3704), - [anon_sym__Nonnull] = ACTIONS(3704), - [anon_sym_mutable] = ACTIONS(3704), - [anon_sym_constinit] = ACTIONS(3704), - [anon_sym_consteval] = ACTIONS(3704), - [anon_sym_alignas] = ACTIONS(3704), - [anon_sym__Alignas] = ACTIONS(3704), - [sym_primitive_type] = ACTIONS(3704), - [anon_sym_enum] = ACTIONS(3704), - [anon_sym_class] = ACTIONS(3704), - [anon_sym_struct] = ACTIONS(3704), - [anon_sym_union] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3704), - [anon_sym_else] = ACTIONS(3704), - [anon_sym_switch] = ACTIONS(3704), - [anon_sym_while] = ACTIONS(3704), - [anon_sym_do] = ACTIONS(3704), - [anon_sym_for] = ACTIONS(3704), - [anon_sym_return] = ACTIONS(3704), - [anon_sym_break] = ACTIONS(3704), - [anon_sym_continue] = ACTIONS(3704), - [anon_sym_goto] = ACTIONS(3704), - [anon_sym___try] = ACTIONS(3704), - [anon_sym___leave] = ACTIONS(3704), - [anon_sym_not] = ACTIONS(3704), - [anon_sym_compl] = ACTIONS(3704), - [anon_sym_DASH_DASH] = ACTIONS(3706), - [anon_sym_PLUS_PLUS] = ACTIONS(3706), - [anon_sym_sizeof] = ACTIONS(3704), - [anon_sym___alignof__] = ACTIONS(3704), - [anon_sym___alignof] = ACTIONS(3704), - [anon_sym__alignof] = ACTIONS(3704), - [anon_sym_alignof] = ACTIONS(3704), - [anon_sym__Alignof] = ACTIONS(3704), - [anon_sym_offsetof] = ACTIONS(3704), - [anon_sym__Generic] = ACTIONS(3704), - [anon_sym_typename] = ACTIONS(3704), - [anon_sym_asm] = ACTIONS(3704), - [anon_sym___asm__] = ACTIONS(3704), - [anon_sym___asm] = ACTIONS(3704), - [sym_number_literal] = ACTIONS(3706), - [anon_sym_L_SQUOTE] = ACTIONS(3706), - [anon_sym_u_SQUOTE] = ACTIONS(3706), - [anon_sym_U_SQUOTE] = ACTIONS(3706), - [anon_sym_u8_SQUOTE] = ACTIONS(3706), - [anon_sym_SQUOTE] = ACTIONS(3706), - [anon_sym_L_DQUOTE] = ACTIONS(3706), - [anon_sym_u_DQUOTE] = ACTIONS(3706), - [anon_sym_U_DQUOTE] = ACTIONS(3706), - [anon_sym_u8_DQUOTE] = ACTIONS(3706), - [anon_sym_DQUOTE] = ACTIONS(3706), - [sym_true] = ACTIONS(3704), - [sym_false] = ACTIONS(3704), - [anon_sym_NULL] = ACTIONS(3704), - [anon_sym_nullptr] = ACTIONS(3704), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3704), - [anon_sym_decltype] = ACTIONS(3704), - [anon_sym_template] = ACTIONS(3704), - [anon_sym_try] = ACTIONS(3704), - [anon_sym_delete] = ACTIONS(3704), - [anon_sym_throw] = ACTIONS(3704), - [anon_sym_co_return] = ACTIONS(3704), - [anon_sym_co_yield] = ACTIONS(3704), - [anon_sym_R_DQUOTE] = ACTIONS(3706), - [anon_sym_LR_DQUOTE] = ACTIONS(3706), - [anon_sym_uR_DQUOTE] = ACTIONS(3706), - [anon_sym_UR_DQUOTE] = ACTIONS(3706), - [anon_sym_u8R_DQUOTE] = ACTIONS(3706), - [anon_sym_co_await] = ACTIONS(3704), - [anon_sym_new] = ACTIONS(3704), - [anon_sym_requires] = ACTIONS(3704), - [anon_sym_CARET_CARET] = ACTIONS(3706), - [anon_sym_LBRACK_COLON] = ACTIONS(3706), - [sym_this] = ACTIONS(3704), - }, - [STATE(1139)] = { - [sym_identifier] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3632), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym___attribute] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym__Nonnull] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym__Alignas] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_else] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [anon_sym_goto] = ACTIONS(3630), - [anon_sym___try] = ACTIONS(3630), - [anon_sym___leave] = ACTIONS(3630), - [anon_sym_not] = ACTIONS(3630), - [anon_sym_compl] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3632), - [anon_sym_PLUS_PLUS] = ACTIONS(3632), - [anon_sym_sizeof] = ACTIONS(3630), - [anon_sym___alignof__] = ACTIONS(3630), - [anon_sym___alignof] = ACTIONS(3630), - [anon_sym__alignof] = ACTIONS(3630), - [anon_sym_alignof] = ACTIONS(3630), - [anon_sym__Alignof] = ACTIONS(3630), - [anon_sym_offsetof] = ACTIONS(3630), - [anon_sym__Generic] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [anon_sym_asm] = ACTIONS(3630), - [anon_sym___asm__] = ACTIONS(3630), - [anon_sym___asm] = ACTIONS(3630), - [sym_number_literal] = ACTIONS(3632), - [anon_sym_L_SQUOTE] = ACTIONS(3632), - [anon_sym_u_SQUOTE] = ACTIONS(3632), - [anon_sym_U_SQUOTE] = ACTIONS(3632), - [anon_sym_u8_SQUOTE] = ACTIONS(3632), - [anon_sym_SQUOTE] = ACTIONS(3632), - [anon_sym_L_DQUOTE] = ACTIONS(3632), - [anon_sym_u_DQUOTE] = ACTIONS(3632), - [anon_sym_U_DQUOTE] = ACTIONS(3632), - [anon_sym_u8_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE] = ACTIONS(3632), - [sym_true] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [anon_sym_NULL] = ACTIONS(3630), - [anon_sym_nullptr] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_delete] = ACTIONS(3630), - [anon_sym_throw] = ACTIONS(3630), - [anon_sym_co_return] = ACTIONS(3630), - [anon_sym_co_yield] = ACTIONS(3630), - [anon_sym_R_DQUOTE] = ACTIONS(3632), - [anon_sym_LR_DQUOTE] = ACTIONS(3632), - [anon_sym_uR_DQUOTE] = ACTIONS(3632), - [anon_sym_UR_DQUOTE] = ACTIONS(3632), - [anon_sym_u8R_DQUOTE] = ACTIONS(3632), - [anon_sym_co_await] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_requires] = ACTIONS(3630), - [anon_sym_CARET_CARET] = ACTIONS(3632), - [anon_sym_LBRACK_COLON] = ACTIONS(3632), - [sym_this] = ACTIONS(3630), - }, - [STATE(1140)] = { - [sym_identifier] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3622), - [anon_sym_PLUS] = ACTIONS(3622), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3624), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym___attribute] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3624), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym__Nonnull] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym__Alignas] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_if] = ACTIONS(3622), - [anon_sym_else] = ACTIONS(3622), - [anon_sym_switch] = ACTIONS(3622), - [anon_sym_while] = ACTIONS(3622), - [anon_sym_do] = ACTIONS(3622), - [anon_sym_for] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3622), - [anon_sym_break] = ACTIONS(3622), - [anon_sym_continue] = ACTIONS(3622), - [anon_sym_goto] = ACTIONS(3622), - [anon_sym___try] = ACTIONS(3622), - [anon_sym___leave] = ACTIONS(3622), - [anon_sym_not] = ACTIONS(3622), - [anon_sym_compl] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3624), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_sizeof] = ACTIONS(3622), - [anon_sym___alignof__] = ACTIONS(3622), - [anon_sym___alignof] = ACTIONS(3622), - [anon_sym__alignof] = ACTIONS(3622), - [anon_sym_alignof] = ACTIONS(3622), - [anon_sym__Alignof] = ACTIONS(3622), - [anon_sym_offsetof] = ACTIONS(3622), - [anon_sym__Generic] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [anon_sym_asm] = ACTIONS(3622), - [anon_sym___asm__] = ACTIONS(3622), - [anon_sym___asm] = ACTIONS(3622), - [sym_number_literal] = ACTIONS(3624), - [anon_sym_L_SQUOTE] = ACTIONS(3624), - [anon_sym_u_SQUOTE] = ACTIONS(3624), - [anon_sym_U_SQUOTE] = ACTIONS(3624), - [anon_sym_u8_SQUOTE] = ACTIONS(3624), - [anon_sym_SQUOTE] = ACTIONS(3624), - [anon_sym_L_DQUOTE] = ACTIONS(3624), - [anon_sym_u_DQUOTE] = ACTIONS(3624), - [anon_sym_U_DQUOTE] = ACTIONS(3624), - [anon_sym_u8_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [sym_true] = ACTIONS(3622), - [sym_false] = ACTIONS(3622), - [anon_sym_NULL] = ACTIONS(3622), - [anon_sym_nullptr] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_try] = ACTIONS(3622), - [anon_sym_delete] = ACTIONS(3622), - [anon_sym_throw] = ACTIONS(3622), - [anon_sym_co_return] = ACTIONS(3622), - [anon_sym_co_yield] = ACTIONS(3622), - [anon_sym_R_DQUOTE] = ACTIONS(3624), - [anon_sym_LR_DQUOTE] = ACTIONS(3624), - [anon_sym_uR_DQUOTE] = ACTIONS(3624), - [anon_sym_UR_DQUOTE] = ACTIONS(3624), - [anon_sym_u8R_DQUOTE] = ACTIONS(3624), - [anon_sym_co_await] = ACTIONS(3622), - [anon_sym_new] = ACTIONS(3622), - [anon_sym_requires] = ACTIONS(3622), - [anon_sym_CARET_CARET] = ACTIONS(3624), - [anon_sym_LBRACK_COLON] = ACTIONS(3624), - [sym_this] = ACTIONS(3622), - }, - [STATE(1141)] = { - [sym_identifier] = ACTIONS(3700), - [anon_sym_LPAREN2] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_TILDE] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_SEMI] = ACTIONS(3702), - [anon_sym___extension__] = ACTIONS(3700), - [anon_sym_typedef] = ACTIONS(3700), - [anon_sym_virtual] = ACTIONS(3700), - [anon_sym_extern] = ACTIONS(3700), - [anon_sym___attribute__] = ACTIONS(3700), - [anon_sym___attribute] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3702), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3702), - [anon_sym___declspec] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3702), - [anon_sym_signed] = ACTIONS(3700), - [anon_sym_unsigned] = ACTIONS(3700), - [anon_sym_long] = ACTIONS(3700), - [anon_sym_short] = ACTIONS(3700), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_static] = ACTIONS(3700), - [anon_sym_register] = ACTIONS(3700), - [anon_sym_inline] = ACTIONS(3700), - [anon_sym___inline] = ACTIONS(3700), - [anon_sym___inline__] = ACTIONS(3700), - [anon_sym___forceinline] = ACTIONS(3700), - [anon_sym_thread_local] = ACTIONS(3700), - [anon_sym___thread] = ACTIONS(3700), - [anon_sym_const] = ACTIONS(3700), - [anon_sym_constexpr] = ACTIONS(3700), - [anon_sym_volatile] = ACTIONS(3700), - [anon_sym_restrict] = ACTIONS(3700), - [anon_sym___restrict__] = ACTIONS(3700), - [anon_sym__Atomic] = ACTIONS(3700), - [anon_sym__Noreturn] = ACTIONS(3700), - [anon_sym_noreturn] = ACTIONS(3700), - [anon_sym__Nonnull] = ACTIONS(3700), - [anon_sym_mutable] = ACTIONS(3700), - [anon_sym_constinit] = ACTIONS(3700), - [anon_sym_consteval] = ACTIONS(3700), - [anon_sym_alignas] = ACTIONS(3700), - [anon_sym__Alignas] = ACTIONS(3700), - [sym_primitive_type] = ACTIONS(3700), - [anon_sym_enum] = ACTIONS(3700), - [anon_sym_class] = ACTIONS(3700), - [anon_sym_struct] = ACTIONS(3700), - [anon_sym_union] = ACTIONS(3700), - [anon_sym_if] = ACTIONS(3700), - [anon_sym_else] = ACTIONS(3700), - [anon_sym_switch] = ACTIONS(3700), - [anon_sym_while] = ACTIONS(3700), - [anon_sym_do] = ACTIONS(3700), - [anon_sym_for] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(3700), - [anon_sym_break] = ACTIONS(3700), - [anon_sym_continue] = ACTIONS(3700), - [anon_sym_goto] = ACTIONS(3700), - [anon_sym___try] = ACTIONS(3700), - [anon_sym___leave] = ACTIONS(3700), - [anon_sym_not] = ACTIONS(3700), - [anon_sym_compl] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3702), - [anon_sym_sizeof] = ACTIONS(3700), - [anon_sym___alignof__] = ACTIONS(3700), - [anon_sym___alignof] = ACTIONS(3700), - [anon_sym__alignof] = ACTIONS(3700), - [anon_sym_alignof] = ACTIONS(3700), - [anon_sym__Alignof] = ACTIONS(3700), - [anon_sym_offsetof] = ACTIONS(3700), - [anon_sym__Generic] = ACTIONS(3700), - [anon_sym_typename] = ACTIONS(3700), - [anon_sym_asm] = ACTIONS(3700), - [anon_sym___asm__] = ACTIONS(3700), - [anon_sym___asm] = ACTIONS(3700), - [sym_number_literal] = ACTIONS(3702), - [anon_sym_L_SQUOTE] = ACTIONS(3702), - [anon_sym_u_SQUOTE] = ACTIONS(3702), - [anon_sym_U_SQUOTE] = ACTIONS(3702), - [anon_sym_u8_SQUOTE] = ACTIONS(3702), - [anon_sym_SQUOTE] = ACTIONS(3702), - [anon_sym_L_DQUOTE] = ACTIONS(3702), - [anon_sym_u_DQUOTE] = ACTIONS(3702), - [anon_sym_U_DQUOTE] = ACTIONS(3702), - [anon_sym_u8_DQUOTE] = ACTIONS(3702), - [anon_sym_DQUOTE] = ACTIONS(3702), - [sym_true] = ACTIONS(3700), - [sym_false] = ACTIONS(3700), - [anon_sym_NULL] = ACTIONS(3700), - [anon_sym_nullptr] = ACTIONS(3700), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3700), - [anon_sym_decltype] = ACTIONS(3700), - [anon_sym_template] = ACTIONS(3700), - [anon_sym_try] = ACTIONS(3700), - [anon_sym_delete] = ACTIONS(3700), - [anon_sym_throw] = ACTIONS(3700), - [anon_sym_co_return] = ACTIONS(3700), - [anon_sym_co_yield] = ACTIONS(3700), - [anon_sym_R_DQUOTE] = ACTIONS(3702), - [anon_sym_LR_DQUOTE] = ACTIONS(3702), - [anon_sym_uR_DQUOTE] = ACTIONS(3702), - [anon_sym_UR_DQUOTE] = ACTIONS(3702), - [anon_sym_u8R_DQUOTE] = ACTIONS(3702), - [anon_sym_co_await] = ACTIONS(3700), - [anon_sym_new] = ACTIONS(3700), - [anon_sym_requires] = ACTIONS(3700), - [anon_sym_CARET_CARET] = ACTIONS(3702), - [anon_sym_LBRACK_COLON] = ACTIONS(3702), - [sym_this] = ACTIONS(3700), - }, - [STATE(1142)] = { - [sym_identifier] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3628), - [anon_sym_BANG] = ACTIONS(3628), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3628), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym___extension__] = ACTIONS(3626), - [anon_sym_typedef] = ACTIONS(3626), - [anon_sym_virtual] = ACTIONS(3626), - [anon_sym_extern] = ACTIONS(3626), - [anon_sym___attribute__] = ACTIONS(3626), - [anon_sym___attribute] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), - [anon_sym___declspec] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_signed] = ACTIONS(3626), - [anon_sym_unsigned] = ACTIONS(3626), - [anon_sym_long] = ACTIONS(3626), - [anon_sym_short] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_register] = ACTIONS(3626), - [anon_sym_inline] = ACTIONS(3626), - [anon_sym___inline] = ACTIONS(3626), - [anon_sym___inline__] = ACTIONS(3626), - [anon_sym___forceinline] = ACTIONS(3626), - [anon_sym_thread_local] = ACTIONS(3626), - [anon_sym___thread] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_constexpr] = ACTIONS(3626), - [anon_sym_volatile] = ACTIONS(3626), - [anon_sym_restrict] = ACTIONS(3626), - [anon_sym___restrict__] = ACTIONS(3626), - [anon_sym__Atomic] = ACTIONS(3626), - [anon_sym__Noreturn] = ACTIONS(3626), - [anon_sym_noreturn] = ACTIONS(3626), - [anon_sym__Nonnull] = ACTIONS(3626), - [anon_sym_mutable] = ACTIONS(3626), - [anon_sym_constinit] = ACTIONS(3626), - [anon_sym_consteval] = ACTIONS(3626), - [anon_sym_alignas] = ACTIONS(3626), - [anon_sym__Alignas] = ACTIONS(3626), - [sym_primitive_type] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_struct] = ACTIONS(3626), - [anon_sym_union] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_goto] = ACTIONS(3626), - [anon_sym___try] = ACTIONS(3626), - [anon_sym___leave] = ACTIONS(3626), - [anon_sym_not] = ACTIONS(3626), - [anon_sym_compl] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_sizeof] = ACTIONS(3626), - [anon_sym___alignof__] = ACTIONS(3626), - [anon_sym___alignof] = ACTIONS(3626), - [anon_sym__alignof] = ACTIONS(3626), - [anon_sym_alignof] = ACTIONS(3626), - [anon_sym__Alignof] = ACTIONS(3626), - [anon_sym_offsetof] = ACTIONS(3626), - [anon_sym__Generic] = ACTIONS(3626), - [anon_sym_typename] = ACTIONS(3626), - [anon_sym_asm] = ACTIONS(3626), - [anon_sym___asm__] = ACTIONS(3626), - [anon_sym___asm] = ACTIONS(3626), - [sym_number_literal] = ACTIONS(3628), - [anon_sym_L_SQUOTE] = ACTIONS(3628), - [anon_sym_u_SQUOTE] = ACTIONS(3628), - [anon_sym_U_SQUOTE] = ACTIONS(3628), - [anon_sym_u8_SQUOTE] = ACTIONS(3628), - [anon_sym_SQUOTE] = ACTIONS(3628), - [anon_sym_L_DQUOTE] = ACTIONS(3628), - [anon_sym_u_DQUOTE] = ACTIONS(3628), - [anon_sym_U_DQUOTE] = ACTIONS(3628), - [anon_sym_u8_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE] = ACTIONS(3628), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [anon_sym_NULL] = ACTIONS(3626), - [anon_sym_nullptr] = ACTIONS(3626), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3626), - [anon_sym_decltype] = ACTIONS(3626), - [anon_sym_template] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_co_return] = ACTIONS(3626), - [anon_sym_co_yield] = ACTIONS(3626), - [anon_sym_R_DQUOTE] = ACTIONS(3628), - [anon_sym_LR_DQUOTE] = ACTIONS(3628), - [anon_sym_uR_DQUOTE] = ACTIONS(3628), - [anon_sym_UR_DQUOTE] = ACTIONS(3628), - [anon_sym_u8R_DQUOTE] = ACTIONS(3628), - [anon_sym_co_await] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_requires] = ACTIONS(3626), - [anon_sym_CARET_CARET] = ACTIONS(3628), - [anon_sym_LBRACK_COLON] = ACTIONS(3628), - [sym_this] = ACTIONS(3626), - }, - [STATE(1143)] = { - [sym_identifier] = ACTIONS(3708), - [anon_sym_LPAREN2] = ACTIONS(3710), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3708), - [anon_sym_STAR] = ACTIONS(3710), - [anon_sym_AMP] = ACTIONS(3710), - [anon_sym_SEMI] = ACTIONS(3710), - [anon_sym___extension__] = ACTIONS(3708), - [anon_sym_typedef] = ACTIONS(3708), - [anon_sym_virtual] = ACTIONS(3708), - [anon_sym_extern] = ACTIONS(3708), - [anon_sym___attribute__] = ACTIONS(3708), - [anon_sym___attribute] = ACTIONS(3708), - [anon_sym_COLON_COLON] = ACTIONS(3710), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3710), - [anon_sym___declspec] = ACTIONS(3708), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_signed] = ACTIONS(3708), - [anon_sym_unsigned] = ACTIONS(3708), - [anon_sym_long] = ACTIONS(3708), - [anon_sym_short] = ACTIONS(3708), - [anon_sym_LBRACK] = ACTIONS(3708), - [anon_sym_static] = ACTIONS(3708), - [anon_sym_register] = ACTIONS(3708), - [anon_sym_inline] = ACTIONS(3708), - [anon_sym___inline] = ACTIONS(3708), - [anon_sym___inline__] = ACTIONS(3708), - [anon_sym___forceinline] = ACTIONS(3708), - [anon_sym_thread_local] = ACTIONS(3708), - [anon_sym___thread] = ACTIONS(3708), - [anon_sym_const] = ACTIONS(3708), - [anon_sym_constexpr] = ACTIONS(3708), - [anon_sym_volatile] = ACTIONS(3708), - [anon_sym_restrict] = ACTIONS(3708), - [anon_sym___restrict__] = ACTIONS(3708), - [anon_sym__Atomic] = ACTIONS(3708), - [anon_sym__Noreturn] = ACTIONS(3708), - [anon_sym_noreturn] = ACTIONS(3708), - [anon_sym__Nonnull] = ACTIONS(3708), - [anon_sym_mutable] = ACTIONS(3708), - [anon_sym_constinit] = ACTIONS(3708), - [anon_sym_consteval] = ACTIONS(3708), - [anon_sym_alignas] = ACTIONS(3708), - [anon_sym__Alignas] = ACTIONS(3708), - [sym_primitive_type] = ACTIONS(3708), - [anon_sym_enum] = ACTIONS(3708), - [anon_sym_class] = ACTIONS(3708), - [anon_sym_struct] = ACTIONS(3708), - [anon_sym_union] = ACTIONS(3708), - [anon_sym_if] = ACTIONS(3708), - [anon_sym_else] = ACTIONS(3708), - [anon_sym_switch] = ACTIONS(3708), - [anon_sym_while] = ACTIONS(3708), - [anon_sym_do] = ACTIONS(3708), - [anon_sym_for] = ACTIONS(3708), - [anon_sym_return] = ACTIONS(3708), - [anon_sym_break] = ACTIONS(3708), - [anon_sym_continue] = ACTIONS(3708), - [anon_sym_goto] = ACTIONS(3708), - [anon_sym___try] = ACTIONS(3708), - [anon_sym___leave] = ACTIONS(3708), - [anon_sym_not] = ACTIONS(3708), - [anon_sym_compl] = ACTIONS(3708), - [anon_sym_DASH_DASH] = ACTIONS(3710), - [anon_sym_PLUS_PLUS] = ACTIONS(3710), - [anon_sym_sizeof] = ACTIONS(3708), - [anon_sym___alignof__] = ACTIONS(3708), - [anon_sym___alignof] = ACTIONS(3708), - [anon_sym__alignof] = ACTIONS(3708), - [anon_sym_alignof] = ACTIONS(3708), - [anon_sym__Alignof] = ACTIONS(3708), - [anon_sym_offsetof] = ACTIONS(3708), - [anon_sym__Generic] = ACTIONS(3708), - [anon_sym_typename] = ACTIONS(3708), - [anon_sym_asm] = ACTIONS(3708), - [anon_sym___asm__] = ACTIONS(3708), - [anon_sym___asm] = ACTIONS(3708), - [sym_number_literal] = ACTIONS(3710), - [anon_sym_L_SQUOTE] = ACTIONS(3710), - [anon_sym_u_SQUOTE] = ACTIONS(3710), - [anon_sym_U_SQUOTE] = ACTIONS(3710), - [anon_sym_u8_SQUOTE] = ACTIONS(3710), - [anon_sym_SQUOTE] = ACTIONS(3710), - [anon_sym_L_DQUOTE] = ACTIONS(3710), - [anon_sym_u_DQUOTE] = ACTIONS(3710), - [anon_sym_U_DQUOTE] = ACTIONS(3710), - [anon_sym_u8_DQUOTE] = ACTIONS(3710), - [anon_sym_DQUOTE] = ACTIONS(3710), - [sym_true] = ACTIONS(3708), - [sym_false] = ACTIONS(3708), - [anon_sym_NULL] = ACTIONS(3708), - [anon_sym_nullptr] = ACTIONS(3708), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3708), - [anon_sym_decltype] = ACTIONS(3708), - [anon_sym_template] = ACTIONS(3708), - [anon_sym_try] = ACTIONS(3708), - [anon_sym_delete] = ACTIONS(3708), - [anon_sym_throw] = ACTIONS(3708), - [anon_sym_co_return] = ACTIONS(3708), - [anon_sym_co_yield] = ACTIONS(3708), - [anon_sym_R_DQUOTE] = ACTIONS(3710), - [anon_sym_LR_DQUOTE] = ACTIONS(3710), - [anon_sym_uR_DQUOTE] = ACTIONS(3710), - [anon_sym_UR_DQUOTE] = ACTIONS(3710), - [anon_sym_u8R_DQUOTE] = ACTIONS(3710), - [anon_sym_co_await] = ACTIONS(3708), - [anon_sym_new] = ACTIONS(3708), - [anon_sym_requires] = ACTIONS(3708), - [anon_sym_CARET_CARET] = ACTIONS(3710), - [anon_sym_LBRACK_COLON] = ACTIONS(3710), - [sym_this] = ACTIONS(3708), - }, - [STATE(1144)] = { - [sym_expression] = STATE(6853), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_lambda_default_capture] = STATE(10128), - [sym__lambda_capture_identifier] = STATE(9644), - [sym_lambda_capture_initializer] = STATE(9644), - [sym__lambda_capture] = STATE(9644), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_identifier_parameter_pack_expansion] = STATE(9644), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5720), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(5570), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5558), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(5560), - [anon_sym_AMP] = ACTIONS(5562), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5564), - [anon_sym_EQ] = ACTIONS(5566), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(5568), + [STATE(1159)] = { + [sym_expression] = STATE(5494), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [STATE(1145)] = { - [sym_identifier] = ACTIONS(3876), - [anon_sym_LPAREN2] = ACTIONS(3878), - [anon_sym_BANG] = ACTIONS(3878), - [anon_sym_TILDE] = ACTIONS(3878), - [anon_sym_DASH] = ACTIONS(3876), - [anon_sym_PLUS] = ACTIONS(3876), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_AMP] = ACTIONS(3878), - [anon_sym_SEMI] = ACTIONS(3878), - [anon_sym___extension__] = ACTIONS(3876), - [anon_sym_typedef] = ACTIONS(3876), - [anon_sym_virtual] = ACTIONS(3876), - [anon_sym_extern] = ACTIONS(3876), - [anon_sym___attribute__] = ACTIONS(3876), - [anon_sym___attribute] = ACTIONS(3876), - [anon_sym_COLON_COLON] = ACTIONS(3878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), - [anon_sym___declspec] = ACTIONS(3876), - [anon_sym_LBRACE] = ACTIONS(3878), - [anon_sym_signed] = ACTIONS(3876), - [anon_sym_unsigned] = ACTIONS(3876), - [anon_sym_long] = ACTIONS(3876), - [anon_sym_short] = ACTIONS(3876), - [anon_sym_LBRACK] = ACTIONS(3876), - [anon_sym_static] = ACTIONS(3876), - [anon_sym_register] = ACTIONS(3876), - [anon_sym_inline] = ACTIONS(3876), - [anon_sym___inline] = ACTIONS(3876), - [anon_sym___inline__] = ACTIONS(3876), - [anon_sym___forceinline] = ACTIONS(3876), - [anon_sym_thread_local] = ACTIONS(3876), - [anon_sym___thread] = ACTIONS(3876), - [anon_sym_const] = ACTIONS(3876), - [anon_sym_constexpr] = ACTIONS(3876), - [anon_sym_volatile] = ACTIONS(3876), - [anon_sym_restrict] = ACTIONS(3876), - [anon_sym___restrict__] = ACTIONS(3876), - [anon_sym__Atomic] = ACTIONS(3876), - [anon_sym__Noreturn] = ACTIONS(3876), - [anon_sym_noreturn] = ACTIONS(3876), - [anon_sym__Nonnull] = ACTIONS(3876), - [anon_sym_mutable] = ACTIONS(3876), - [anon_sym_constinit] = ACTIONS(3876), - [anon_sym_consteval] = ACTIONS(3876), - [anon_sym_alignas] = ACTIONS(3876), - [anon_sym__Alignas] = ACTIONS(3876), - [sym_primitive_type] = ACTIONS(3876), - [anon_sym_enum] = ACTIONS(3876), - [anon_sym_class] = ACTIONS(3876), - [anon_sym_struct] = ACTIONS(3876), - [anon_sym_union] = ACTIONS(3876), - [anon_sym_if] = ACTIONS(3876), - [anon_sym_else] = ACTIONS(3876), - [anon_sym_switch] = ACTIONS(3876), - [anon_sym_while] = ACTIONS(3876), - [anon_sym_do] = ACTIONS(3876), - [anon_sym_for] = ACTIONS(3876), - [anon_sym_return] = ACTIONS(3876), - [anon_sym_break] = ACTIONS(3876), - [anon_sym_continue] = ACTIONS(3876), - [anon_sym_goto] = ACTIONS(3876), - [anon_sym___try] = ACTIONS(3876), - [anon_sym___leave] = ACTIONS(3876), - [anon_sym_not] = ACTIONS(3876), - [anon_sym_compl] = ACTIONS(3876), - [anon_sym_DASH_DASH] = ACTIONS(3878), - [anon_sym_PLUS_PLUS] = ACTIONS(3878), - [anon_sym_sizeof] = ACTIONS(3876), - [anon_sym___alignof__] = ACTIONS(3876), - [anon_sym___alignof] = ACTIONS(3876), - [anon_sym__alignof] = ACTIONS(3876), - [anon_sym_alignof] = ACTIONS(3876), - [anon_sym__Alignof] = ACTIONS(3876), - [anon_sym_offsetof] = ACTIONS(3876), - [anon_sym__Generic] = ACTIONS(3876), - [anon_sym_typename] = ACTIONS(3876), - [anon_sym_asm] = ACTIONS(3876), - [anon_sym___asm__] = ACTIONS(3876), - [anon_sym___asm] = ACTIONS(3876), - [sym_number_literal] = ACTIONS(3878), - [anon_sym_L_SQUOTE] = ACTIONS(3878), - [anon_sym_u_SQUOTE] = ACTIONS(3878), - [anon_sym_U_SQUOTE] = ACTIONS(3878), - [anon_sym_u8_SQUOTE] = ACTIONS(3878), - [anon_sym_SQUOTE] = ACTIONS(3878), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(3876), - [sym_false] = ACTIONS(3876), - [anon_sym_NULL] = ACTIONS(3876), - [anon_sym_nullptr] = ACTIONS(3876), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3876), - [anon_sym_decltype] = ACTIONS(3876), - [anon_sym_template] = ACTIONS(3876), - [anon_sym_try] = ACTIONS(3876), - [anon_sym_delete] = ACTIONS(3876), - [anon_sym_throw] = ACTIONS(3876), - [anon_sym_co_return] = ACTIONS(3876), - [anon_sym_co_yield] = ACTIONS(3876), - [anon_sym_R_DQUOTE] = ACTIONS(3878), - [anon_sym_LR_DQUOTE] = ACTIONS(3878), - [anon_sym_uR_DQUOTE] = ACTIONS(3878), - [anon_sym_UR_DQUOTE] = ACTIONS(3878), - [anon_sym_u8R_DQUOTE] = ACTIONS(3878), - [anon_sym_co_await] = ACTIONS(3876), - [anon_sym_new] = ACTIONS(3876), - [anon_sym_requires] = ACTIONS(3876), - [anon_sym_CARET_CARET] = ACTIONS(3878), - [anon_sym_LBRACK_COLON] = ACTIONS(3878), - [sym_this] = ACTIONS(3876), + [STATE(1160)] = { + [sym_expression] = STATE(5496), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [STATE(1146)] = { - [sym_identifier] = ACTIONS(2905), - [anon_sym_LPAREN2] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2910), - [anon_sym_SEMI] = ACTIONS(2910), - [anon_sym___extension__] = ACTIONS(2905), - [anon_sym_typedef] = ACTIONS(2905), - [anon_sym_virtual] = ACTIONS(2905), - [anon_sym_extern] = ACTIONS(2905), - [anon_sym___attribute__] = ACTIONS(2905), - [anon_sym___attribute] = ACTIONS(2905), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2910), - [anon_sym___declspec] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2910), - [anon_sym_signed] = ACTIONS(2905), - [anon_sym_unsigned] = ACTIONS(2905), - [anon_sym_long] = ACTIONS(2905), - [anon_sym_short] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_register] = ACTIONS(2905), - [anon_sym_inline] = ACTIONS(2905), - [anon_sym___inline] = ACTIONS(2905), - [anon_sym___inline__] = ACTIONS(2905), - [anon_sym___forceinline] = ACTIONS(2905), - [anon_sym_thread_local] = ACTIONS(2905), - [anon_sym___thread] = ACTIONS(2905), - [anon_sym_const] = ACTIONS(2905), - [anon_sym_constexpr] = ACTIONS(2905), - [anon_sym_volatile] = ACTIONS(2905), - [anon_sym_restrict] = ACTIONS(2905), - [anon_sym___restrict__] = ACTIONS(2905), - [anon_sym__Atomic] = ACTIONS(2905), - [anon_sym__Noreturn] = ACTIONS(2905), - [anon_sym_noreturn] = ACTIONS(2905), - [anon_sym__Nonnull] = ACTIONS(2905), - [anon_sym_mutable] = ACTIONS(2905), - [anon_sym_constinit] = ACTIONS(2905), - [anon_sym_consteval] = ACTIONS(2905), - [anon_sym_alignas] = ACTIONS(2905), - [anon_sym__Alignas] = ACTIONS(2905), - [sym_primitive_type] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2905), - [anon_sym_class] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2905), - [anon_sym_union] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2905), - [anon_sym_else] = ACTIONS(2905), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_while] = ACTIONS(2905), - [anon_sym_do] = ACTIONS(2905), - [anon_sym_for] = ACTIONS(2905), - [anon_sym_return] = ACTIONS(2905), - [anon_sym_break] = ACTIONS(2905), - [anon_sym_continue] = ACTIONS(2905), - [anon_sym_goto] = ACTIONS(2905), - [anon_sym___try] = ACTIONS(2905), - [anon_sym___leave] = ACTIONS(2905), - [anon_sym_not] = ACTIONS(2905), - [anon_sym_compl] = ACTIONS(2905), - [anon_sym_DASH_DASH] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2910), - [anon_sym_sizeof] = ACTIONS(2905), - [anon_sym___alignof__] = ACTIONS(2905), - [anon_sym___alignof] = ACTIONS(2905), - [anon_sym__alignof] = ACTIONS(2905), - [anon_sym_alignof] = ACTIONS(2905), - [anon_sym__Alignof] = ACTIONS(2905), - [anon_sym_offsetof] = ACTIONS(2905), - [anon_sym__Generic] = ACTIONS(2905), - [anon_sym_typename] = ACTIONS(2905), - [anon_sym_asm] = ACTIONS(2905), - [anon_sym___asm__] = ACTIONS(2905), - [anon_sym___asm] = ACTIONS(2905), - [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(2905), - [sym_false] = ACTIONS(2905), - [anon_sym_NULL] = ACTIONS(2905), - [anon_sym_nullptr] = ACTIONS(2905), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2905), - [anon_sym_decltype] = ACTIONS(2905), - [anon_sym_template] = ACTIONS(2905), - [anon_sym_try] = ACTIONS(2905), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_throw] = ACTIONS(2905), - [anon_sym_co_return] = ACTIONS(2905), - [anon_sym_co_yield] = ACTIONS(2905), - [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(2905), - [anon_sym_new] = ACTIONS(2905), - [anon_sym_requires] = ACTIONS(2905), - [anon_sym_CARET_CARET] = ACTIONS(2910), - [anon_sym_LBRACK_COLON] = ACTIONS(2910), - [sym_this] = ACTIONS(2905), + [STATE(1161)] = { + [sym_string_literal] = STATE(4105), + [sym_decltype_auto] = STATE(4991), + [sym_template_argument_list] = STATE(2130), + [sym_raw_string_literal] = STATE(4105), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(5636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_TILDE] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5650), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5638), + [anon_sym___extension__] = ACTIONS(5636), + [anon_sym_virtual] = ACTIONS(5636), + [anon_sym_extern] = ACTIONS(5636), + [anon_sym___attribute__] = ACTIONS(5636), + [anon_sym___attribute] = ACTIONS(5636), + [anon_sym_COLON] = ACTIONS(5706), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5643), + [anon_sym___declspec] = ACTIONS(5636), + [anon_sym___based] = ACTIONS(5636), + [anon_sym___cdecl] = ACTIONS(5636), + [anon_sym___clrcall] = ACTIONS(5636), + [anon_sym___stdcall] = ACTIONS(5636), + [anon_sym___fastcall] = ACTIONS(5636), + [anon_sym___thiscall] = ACTIONS(5636), + [anon_sym___vectorcall] = ACTIONS(5636), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(5659), + [anon_sym_unsigned] = ACTIONS(5659), + [anon_sym_long] = ACTIONS(5659), + [anon_sym_short] = ACTIONS(5659), + [anon_sym_LBRACK] = ACTIONS(5647), + [anon_sym_static] = ACTIONS(5636), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_register] = ACTIONS(5636), + [anon_sym_inline] = ACTIONS(5636), + [anon_sym___inline] = ACTIONS(5636), + [anon_sym___inline__] = ACTIONS(5636), + [anon_sym___forceinline] = ACTIONS(5636), + [anon_sym_thread_local] = ACTIONS(5636), + [anon_sym___thread] = ACTIONS(5636), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5636), + [anon_sym_volatile] = ACTIONS(5636), + [anon_sym_restrict] = ACTIONS(5636), + [anon_sym___restrict__] = ACTIONS(5636), + [anon_sym__Atomic] = ACTIONS(5636), + [anon_sym__Noreturn] = ACTIONS(5636), + [anon_sym_noreturn] = ACTIONS(5636), + [anon_sym__Nonnull] = ACTIONS(5636), + [anon_sym_mutable] = ACTIONS(5636), + [anon_sym_constinit] = ACTIONS(5636), + [anon_sym_consteval] = ACTIONS(5636), + [anon_sym_alignas] = ACTIONS(5636), + [anon_sym__Alignas] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5661), + [anon_sym_or_eq] = ACTIONS(5661), + [anon_sym_xor_eq] = ACTIONS(5661), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5645), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5645), + [anon_sym_not_eq] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5665), + [anon_sym_decltype] = ACTIONS(5667), + [anon_sym_template] = ACTIONS(5636), + [anon_sym_operator] = ACTIONS(5636), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_LBRACK_COLON] = ACTIONS(5643), }, - [STATE(1147)] = { - [sym_identifier] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3718), - [anon_sym_BANG] = ACTIONS(3718), - [anon_sym_TILDE] = ACTIONS(3718), - [anon_sym_DASH] = ACTIONS(3716), - [anon_sym_PLUS] = ACTIONS(3716), - [anon_sym_STAR] = ACTIONS(3718), - [anon_sym_AMP] = ACTIONS(3718), - [anon_sym_SEMI] = ACTIONS(3718), - [anon_sym___extension__] = ACTIONS(3716), - [anon_sym_typedef] = ACTIONS(3716), - [anon_sym_virtual] = ACTIONS(3716), - [anon_sym_extern] = ACTIONS(3716), - [anon_sym___attribute__] = ACTIONS(3716), - [anon_sym___attribute] = ACTIONS(3716), - [anon_sym_COLON_COLON] = ACTIONS(3718), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3718), - [anon_sym___declspec] = ACTIONS(3716), - [anon_sym_LBRACE] = ACTIONS(3718), - [anon_sym_signed] = ACTIONS(3716), - [anon_sym_unsigned] = ACTIONS(3716), - [anon_sym_long] = ACTIONS(3716), - [anon_sym_short] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(3716), - [anon_sym_static] = ACTIONS(3716), - [anon_sym_register] = ACTIONS(3716), - [anon_sym_inline] = ACTIONS(3716), - [anon_sym___inline] = ACTIONS(3716), - [anon_sym___inline__] = ACTIONS(3716), - [anon_sym___forceinline] = ACTIONS(3716), - [anon_sym_thread_local] = ACTIONS(3716), - [anon_sym___thread] = ACTIONS(3716), - [anon_sym_const] = ACTIONS(3716), - [anon_sym_constexpr] = ACTIONS(3716), - [anon_sym_volatile] = ACTIONS(3716), - [anon_sym_restrict] = ACTIONS(3716), - [anon_sym___restrict__] = ACTIONS(3716), - [anon_sym__Atomic] = ACTIONS(3716), - [anon_sym__Noreturn] = ACTIONS(3716), - [anon_sym_noreturn] = ACTIONS(3716), - [anon_sym__Nonnull] = ACTIONS(3716), - [anon_sym_mutable] = ACTIONS(3716), - [anon_sym_constinit] = ACTIONS(3716), - [anon_sym_consteval] = ACTIONS(3716), - [anon_sym_alignas] = ACTIONS(3716), - [anon_sym__Alignas] = ACTIONS(3716), - [sym_primitive_type] = ACTIONS(3716), - [anon_sym_enum] = ACTIONS(3716), - [anon_sym_class] = ACTIONS(3716), - [anon_sym_struct] = ACTIONS(3716), - [anon_sym_union] = ACTIONS(3716), - [anon_sym_if] = ACTIONS(3716), - [anon_sym_else] = ACTIONS(3716), - [anon_sym_switch] = ACTIONS(3716), - [anon_sym_while] = ACTIONS(3716), - [anon_sym_do] = ACTIONS(3716), - [anon_sym_for] = ACTIONS(3716), - [anon_sym_return] = ACTIONS(3716), - [anon_sym_break] = ACTIONS(3716), - [anon_sym_continue] = ACTIONS(3716), - [anon_sym_goto] = ACTIONS(3716), - [anon_sym___try] = ACTIONS(3716), - [anon_sym___leave] = ACTIONS(3716), - [anon_sym_not] = ACTIONS(3716), - [anon_sym_compl] = ACTIONS(3716), - [anon_sym_DASH_DASH] = ACTIONS(3718), - [anon_sym_PLUS_PLUS] = ACTIONS(3718), - [anon_sym_sizeof] = ACTIONS(3716), - [anon_sym___alignof__] = ACTIONS(3716), - [anon_sym___alignof] = ACTIONS(3716), - [anon_sym__alignof] = ACTIONS(3716), - [anon_sym_alignof] = ACTIONS(3716), - [anon_sym__Alignof] = ACTIONS(3716), - [anon_sym_offsetof] = ACTIONS(3716), - [anon_sym__Generic] = ACTIONS(3716), - [anon_sym_typename] = ACTIONS(3716), - [anon_sym_asm] = ACTIONS(3716), - [anon_sym___asm__] = ACTIONS(3716), - [anon_sym___asm] = ACTIONS(3716), - [sym_number_literal] = ACTIONS(3718), - [anon_sym_L_SQUOTE] = ACTIONS(3718), - [anon_sym_u_SQUOTE] = ACTIONS(3718), - [anon_sym_U_SQUOTE] = ACTIONS(3718), - [anon_sym_u8_SQUOTE] = ACTIONS(3718), - [anon_sym_SQUOTE] = ACTIONS(3718), - [anon_sym_L_DQUOTE] = ACTIONS(3718), - [anon_sym_u_DQUOTE] = ACTIONS(3718), - [anon_sym_U_DQUOTE] = ACTIONS(3718), - [anon_sym_u8_DQUOTE] = ACTIONS(3718), - [anon_sym_DQUOTE] = ACTIONS(3718), - [sym_true] = ACTIONS(3716), - [sym_false] = ACTIONS(3716), - [anon_sym_NULL] = ACTIONS(3716), - [anon_sym_nullptr] = ACTIONS(3716), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3716), - [anon_sym_decltype] = ACTIONS(3716), - [anon_sym_template] = ACTIONS(3716), - [anon_sym_try] = ACTIONS(3716), - [anon_sym_delete] = ACTIONS(3716), - [anon_sym_throw] = ACTIONS(3716), - [anon_sym_co_return] = ACTIONS(3716), - [anon_sym_co_yield] = ACTIONS(3716), - [anon_sym_R_DQUOTE] = ACTIONS(3718), - [anon_sym_LR_DQUOTE] = ACTIONS(3718), - [anon_sym_uR_DQUOTE] = ACTIONS(3718), - [anon_sym_UR_DQUOTE] = ACTIONS(3718), - [anon_sym_u8R_DQUOTE] = ACTIONS(3718), - [anon_sym_co_await] = ACTIONS(3716), - [anon_sym_new] = ACTIONS(3716), - [anon_sym_requires] = ACTIONS(3716), - [anon_sym_CARET_CARET] = ACTIONS(3718), - [anon_sym_LBRACK_COLON] = ACTIONS(3718), - [sym_this] = ACTIONS(3716), + [STATE(1162)] = { + [sym_expression] = STATE(5186), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), }, - [STATE(1148)] = { - [sym_identifier] = ACTIONS(3724), - [anon_sym_LPAREN2] = ACTIONS(3726), - [anon_sym_BANG] = ACTIONS(3726), - [anon_sym_TILDE] = ACTIONS(3726), - [anon_sym_DASH] = ACTIONS(3724), - [anon_sym_PLUS] = ACTIONS(3724), - [anon_sym_STAR] = ACTIONS(3726), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_SEMI] = ACTIONS(3726), - [anon_sym___extension__] = ACTIONS(3724), - [anon_sym_typedef] = ACTIONS(3724), - [anon_sym_virtual] = ACTIONS(3724), - [anon_sym_extern] = ACTIONS(3724), - [anon_sym___attribute__] = ACTIONS(3724), - [anon_sym___attribute] = ACTIONS(3724), - [anon_sym_COLON_COLON] = ACTIONS(3726), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3726), - [anon_sym___declspec] = ACTIONS(3724), - [anon_sym_LBRACE] = ACTIONS(3726), - [anon_sym_signed] = ACTIONS(3724), - [anon_sym_unsigned] = ACTIONS(3724), - [anon_sym_long] = ACTIONS(3724), - [anon_sym_short] = ACTIONS(3724), - [anon_sym_LBRACK] = ACTIONS(3724), - [anon_sym_static] = ACTIONS(3724), - [anon_sym_register] = ACTIONS(3724), - [anon_sym_inline] = ACTIONS(3724), - [anon_sym___inline] = ACTIONS(3724), - [anon_sym___inline__] = ACTIONS(3724), - [anon_sym___forceinline] = ACTIONS(3724), - [anon_sym_thread_local] = ACTIONS(3724), - [anon_sym___thread] = ACTIONS(3724), - [anon_sym_const] = ACTIONS(3724), - [anon_sym_constexpr] = ACTIONS(3724), - [anon_sym_volatile] = ACTIONS(3724), - [anon_sym_restrict] = ACTIONS(3724), - [anon_sym___restrict__] = ACTIONS(3724), - [anon_sym__Atomic] = ACTIONS(3724), - [anon_sym__Noreturn] = ACTIONS(3724), - [anon_sym_noreturn] = ACTIONS(3724), - [anon_sym__Nonnull] = ACTIONS(3724), - [anon_sym_mutable] = ACTIONS(3724), - [anon_sym_constinit] = ACTIONS(3724), - [anon_sym_consteval] = ACTIONS(3724), - [anon_sym_alignas] = ACTIONS(3724), - [anon_sym__Alignas] = ACTIONS(3724), - [sym_primitive_type] = ACTIONS(3724), - [anon_sym_enum] = ACTIONS(3724), - [anon_sym_class] = ACTIONS(3724), - [anon_sym_struct] = ACTIONS(3724), - [anon_sym_union] = ACTIONS(3724), - [anon_sym_if] = ACTIONS(3724), - [anon_sym_else] = ACTIONS(3724), - [anon_sym_switch] = ACTIONS(3724), - [anon_sym_while] = ACTIONS(3724), - [anon_sym_do] = ACTIONS(3724), - [anon_sym_for] = ACTIONS(3724), - [anon_sym_return] = ACTIONS(3724), - [anon_sym_break] = ACTIONS(3724), - [anon_sym_continue] = ACTIONS(3724), - [anon_sym_goto] = ACTIONS(3724), - [anon_sym___try] = ACTIONS(3724), - [anon_sym___leave] = ACTIONS(3724), - [anon_sym_not] = ACTIONS(3724), - [anon_sym_compl] = ACTIONS(3724), - [anon_sym_DASH_DASH] = ACTIONS(3726), - [anon_sym_PLUS_PLUS] = ACTIONS(3726), - [anon_sym_sizeof] = ACTIONS(3724), - [anon_sym___alignof__] = ACTIONS(3724), - [anon_sym___alignof] = ACTIONS(3724), - [anon_sym__alignof] = ACTIONS(3724), - [anon_sym_alignof] = ACTIONS(3724), - [anon_sym__Alignof] = ACTIONS(3724), - [anon_sym_offsetof] = ACTIONS(3724), - [anon_sym__Generic] = ACTIONS(3724), - [anon_sym_typename] = ACTIONS(3724), - [anon_sym_asm] = ACTIONS(3724), - [anon_sym___asm__] = ACTIONS(3724), - [anon_sym___asm] = ACTIONS(3724), - [sym_number_literal] = ACTIONS(3726), - [anon_sym_L_SQUOTE] = ACTIONS(3726), - [anon_sym_u_SQUOTE] = ACTIONS(3726), - [anon_sym_U_SQUOTE] = ACTIONS(3726), - [anon_sym_u8_SQUOTE] = ACTIONS(3726), - [anon_sym_SQUOTE] = ACTIONS(3726), - [anon_sym_L_DQUOTE] = ACTIONS(3726), - [anon_sym_u_DQUOTE] = ACTIONS(3726), - [anon_sym_U_DQUOTE] = ACTIONS(3726), - [anon_sym_u8_DQUOTE] = ACTIONS(3726), - [anon_sym_DQUOTE] = ACTIONS(3726), - [sym_true] = ACTIONS(3724), - [sym_false] = ACTIONS(3724), - [anon_sym_NULL] = ACTIONS(3724), - [anon_sym_nullptr] = ACTIONS(3724), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3724), - [anon_sym_decltype] = ACTIONS(3724), - [anon_sym_template] = ACTIONS(3724), - [anon_sym_try] = ACTIONS(3724), - [anon_sym_delete] = ACTIONS(3724), - [anon_sym_throw] = ACTIONS(3724), - [anon_sym_co_return] = ACTIONS(3724), - [anon_sym_co_yield] = ACTIONS(3724), - [anon_sym_R_DQUOTE] = ACTIONS(3726), - [anon_sym_LR_DQUOTE] = ACTIONS(3726), - [anon_sym_uR_DQUOTE] = ACTIONS(3726), - [anon_sym_UR_DQUOTE] = ACTIONS(3726), - [anon_sym_u8R_DQUOTE] = ACTIONS(3726), - [anon_sym_co_await] = ACTIONS(3724), - [anon_sym_new] = ACTIONS(3724), - [anon_sym_requires] = ACTIONS(3724), - [anon_sym_CARET_CARET] = ACTIONS(3726), - [anon_sym_LBRACK_COLON] = ACTIONS(3726), - [sym_this] = ACTIONS(3724), + [STATE(1163)] = { + [sym_expression] = STATE(6920), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), }, - [STATE(1149)] = { - [sym_expression] = STATE(6787), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10342), - [sym_initializer_pair] = STATE(10342), - [sym_subscript_designator] = STATE(9030), - [sym_subscript_range_designator] = STATE(9030), - [sym_field_designator] = STATE(9030), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [aux_sym_initializer_pair_repeat1] = STATE(9030), - [sym_identifier] = ACTIONS(5334), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(5340), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1164)] = { + [sym_expression] = STATE(6796), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -211954,11 +222599,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(4926), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), + [anon_sym_DASH_GT] = ACTIONS(5682), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -211975,1819 +222620,332 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1150)] = { - [sym_identifier] = ACTIONS(5237), - [anon_sym_LPAREN2] = ACTIONS(5243), - [anon_sym_BANG] = ACTIONS(5243), - [anon_sym_TILDE] = ACTIONS(5243), - [anon_sym_DASH] = ACTIONS(5245), - [anon_sym_PLUS] = ACTIONS(5245), - [anon_sym_STAR] = ACTIONS(5243), - [anon_sym_AMP] = ACTIONS(5243), - [anon_sym_SEMI] = ACTIONS(5243), - [anon_sym___extension__] = ACTIONS(5237), - [anon_sym_virtual] = ACTIONS(5249), - [anon_sym_extern] = ACTIONS(5249), - [anon_sym___attribute__] = ACTIONS(5249), - [anon_sym___attribute] = ACTIONS(5249), - [anon_sym_COLON_COLON] = ACTIONS(5240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5240), - [anon_sym___declspec] = ACTIONS(5249), - [anon_sym_LBRACE] = ACTIONS(5243), - [anon_sym_signed] = ACTIONS(5249), - [anon_sym_unsigned] = ACTIONS(5249), - [anon_sym_long] = ACTIONS(5249), - [anon_sym_short] = ACTIONS(5249), - [anon_sym_LBRACK] = ACTIONS(5245), - [anon_sym_static] = ACTIONS(5249), - [anon_sym_register] = ACTIONS(5249), - [anon_sym_inline] = ACTIONS(5249), - [anon_sym___inline] = ACTIONS(5249), - [anon_sym___inline__] = ACTIONS(5249), - [anon_sym___forceinline] = ACTIONS(5249), - [anon_sym_thread_local] = ACTIONS(5249), - [anon_sym___thread] = ACTIONS(5249), - [anon_sym_const] = ACTIONS(5249), - [anon_sym_constexpr] = ACTIONS(5249), - [anon_sym_volatile] = ACTIONS(5249), - [anon_sym_restrict] = ACTIONS(5249), - [anon_sym___restrict__] = ACTIONS(5249), - [anon_sym__Atomic] = ACTIONS(5249), - [anon_sym__Noreturn] = ACTIONS(5249), - [anon_sym_noreturn] = ACTIONS(5249), - [anon_sym__Nonnull] = ACTIONS(5249), - [anon_sym_mutable] = ACTIONS(5249), - [anon_sym_constinit] = ACTIONS(5249), - [anon_sym_consteval] = ACTIONS(5249), - [anon_sym_alignas] = ACTIONS(5249), - [anon_sym__Alignas] = ACTIONS(5249), - [sym_primitive_type] = ACTIONS(5237), - [anon_sym_enum] = ACTIONS(5249), - [anon_sym_class] = ACTIONS(5249), - [anon_sym_struct] = ACTIONS(5249), - [anon_sym_union] = ACTIONS(5249), - [anon_sym_if] = ACTIONS(5245), - [anon_sym_switch] = ACTIONS(5245), - [anon_sym_case] = ACTIONS(5245), - [anon_sym_default] = ACTIONS(5245), - [anon_sym_while] = ACTIONS(5245), - [anon_sym_do] = ACTIONS(5245), - [anon_sym_for] = ACTIONS(5245), - [anon_sym_return] = ACTIONS(5245), - [anon_sym_break] = ACTIONS(5245), - [anon_sym_continue] = ACTIONS(5245), - [anon_sym_goto] = ACTIONS(5245), - [anon_sym___try] = ACTIONS(5245), - [anon_sym___leave] = ACTIONS(5245), - [anon_sym_not] = ACTIONS(5245), - [anon_sym_compl] = ACTIONS(5245), - [anon_sym_DASH_DASH] = ACTIONS(5243), - [anon_sym_PLUS_PLUS] = ACTIONS(5243), - [anon_sym_sizeof] = ACTIONS(5245), - [anon_sym___alignof__] = ACTIONS(5245), - [anon_sym___alignof] = ACTIONS(5245), - [anon_sym__alignof] = ACTIONS(5245), - [anon_sym_alignof] = ACTIONS(5245), - [anon_sym__Alignof] = ACTIONS(5245), - [anon_sym_offsetof] = ACTIONS(5245), - [anon_sym__Generic] = ACTIONS(5245), - [anon_sym_typename] = ACTIONS(5237), - [anon_sym_asm] = ACTIONS(5245), - [anon_sym___asm__] = ACTIONS(5245), - [anon_sym___asm] = ACTIONS(5245), - [sym_number_literal] = ACTIONS(5243), - [anon_sym_L_SQUOTE] = ACTIONS(5243), - [anon_sym_u_SQUOTE] = ACTIONS(5243), - [anon_sym_U_SQUOTE] = ACTIONS(5243), - [anon_sym_u8_SQUOTE] = ACTIONS(5243), - [anon_sym_SQUOTE] = ACTIONS(5243), - [anon_sym_L_DQUOTE] = ACTIONS(5243), - [anon_sym_u_DQUOTE] = ACTIONS(5243), - [anon_sym_U_DQUOTE] = ACTIONS(5243), - [anon_sym_u8_DQUOTE] = ACTIONS(5243), - [anon_sym_DQUOTE] = ACTIONS(5243), - [sym_true] = ACTIONS(5245), - [sym_false] = ACTIONS(5245), - [anon_sym_NULL] = ACTIONS(5245), - [anon_sym_nullptr] = ACTIONS(5245), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5249), - [anon_sym_decltype] = ACTIONS(5237), - [anon_sym_template] = ACTIONS(5237), - [anon_sym_try] = ACTIONS(5245), - [anon_sym_delete] = ACTIONS(5245), - [anon_sym_throw] = ACTIONS(5245), - [anon_sym_co_return] = ACTIONS(5245), - [anon_sym_co_yield] = ACTIONS(5245), - [anon_sym_R_DQUOTE] = ACTIONS(5243), - [anon_sym_LR_DQUOTE] = ACTIONS(5243), - [anon_sym_uR_DQUOTE] = ACTIONS(5243), - [anon_sym_UR_DQUOTE] = ACTIONS(5243), - [anon_sym_u8R_DQUOTE] = ACTIONS(5243), - [anon_sym_co_await] = ACTIONS(5245), - [anon_sym_new] = ACTIONS(5245), - [anon_sym_requires] = ACTIONS(5245), - [anon_sym_CARET_CARET] = ACTIONS(5243), - [anon_sym_LBRACK_COLON] = ACTIONS(5240), - [sym_this] = ACTIONS(5245), - }, - [STATE(1151)] = { - [sym_identifier] = ACTIONS(3728), - [anon_sym_LPAREN2] = ACTIONS(3730), - [anon_sym_BANG] = ACTIONS(3730), - [anon_sym_TILDE] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3730), - [anon_sym_AMP] = ACTIONS(3730), - [anon_sym_SEMI] = ACTIONS(3730), - [anon_sym___extension__] = ACTIONS(3728), - [anon_sym_typedef] = ACTIONS(3728), - [anon_sym_virtual] = ACTIONS(3728), - [anon_sym_extern] = ACTIONS(3728), - [anon_sym___attribute__] = ACTIONS(3728), - [anon_sym___attribute] = ACTIONS(3728), - [anon_sym_COLON_COLON] = ACTIONS(3730), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), - [anon_sym___declspec] = ACTIONS(3728), - [anon_sym_LBRACE] = ACTIONS(3730), - [anon_sym_signed] = ACTIONS(3728), - [anon_sym_unsigned] = ACTIONS(3728), - [anon_sym_long] = ACTIONS(3728), - [anon_sym_short] = ACTIONS(3728), - [anon_sym_LBRACK] = ACTIONS(3728), - [anon_sym_static] = ACTIONS(3728), - [anon_sym_register] = ACTIONS(3728), - [anon_sym_inline] = ACTIONS(3728), - [anon_sym___inline] = ACTIONS(3728), - [anon_sym___inline__] = ACTIONS(3728), - [anon_sym___forceinline] = ACTIONS(3728), - [anon_sym_thread_local] = ACTIONS(3728), - [anon_sym___thread] = ACTIONS(3728), - [anon_sym_const] = ACTIONS(3728), - [anon_sym_constexpr] = ACTIONS(3728), - [anon_sym_volatile] = ACTIONS(3728), - [anon_sym_restrict] = ACTIONS(3728), - [anon_sym___restrict__] = ACTIONS(3728), - [anon_sym__Atomic] = ACTIONS(3728), - [anon_sym__Noreturn] = ACTIONS(3728), - [anon_sym_noreturn] = ACTIONS(3728), - [anon_sym__Nonnull] = ACTIONS(3728), - [anon_sym_mutable] = ACTIONS(3728), - [anon_sym_constinit] = ACTIONS(3728), - [anon_sym_consteval] = ACTIONS(3728), - [anon_sym_alignas] = ACTIONS(3728), - [anon_sym__Alignas] = ACTIONS(3728), - [sym_primitive_type] = ACTIONS(3728), - [anon_sym_enum] = ACTIONS(3728), - [anon_sym_class] = ACTIONS(3728), - [anon_sym_struct] = ACTIONS(3728), - [anon_sym_union] = ACTIONS(3728), - [anon_sym_if] = ACTIONS(3728), - [anon_sym_else] = ACTIONS(3728), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_while] = ACTIONS(3728), - [anon_sym_do] = ACTIONS(3728), - [anon_sym_for] = ACTIONS(3728), - [anon_sym_return] = ACTIONS(3728), - [anon_sym_break] = ACTIONS(3728), - [anon_sym_continue] = ACTIONS(3728), - [anon_sym_goto] = ACTIONS(3728), - [anon_sym___try] = ACTIONS(3728), - [anon_sym___leave] = ACTIONS(3728), - [anon_sym_not] = ACTIONS(3728), - [anon_sym_compl] = ACTIONS(3728), - [anon_sym_DASH_DASH] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3730), - [anon_sym_sizeof] = ACTIONS(3728), - [anon_sym___alignof__] = ACTIONS(3728), - [anon_sym___alignof] = ACTIONS(3728), - [anon_sym__alignof] = ACTIONS(3728), - [anon_sym_alignof] = ACTIONS(3728), - [anon_sym__Alignof] = ACTIONS(3728), - [anon_sym_offsetof] = ACTIONS(3728), - [anon_sym__Generic] = ACTIONS(3728), - [anon_sym_typename] = ACTIONS(3728), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [anon_sym___asm] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3730), - [anon_sym_u_SQUOTE] = ACTIONS(3730), - [anon_sym_U_SQUOTE] = ACTIONS(3730), - [anon_sym_u8_SQUOTE] = ACTIONS(3730), - [anon_sym_SQUOTE] = ACTIONS(3730), - [anon_sym_L_DQUOTE] = ACTIONS(3730), - [anon_sym_u_DQUOTE] = ACTIONS(3730), - [anon_sym_U_DQUOTE] = ACTIONS(3730), - [anon_sym_u8_DQUOTE] = ACTIONS(3730), - [anon_sym_DQUOTE] = ACTIONS(3730), - [sym_true] = ACTIONS(3728), - [sym_false] = ACTIONS(3728), - [anon_sym_NULL] = ACTIONS(3728), - [anon_sym_nullptr] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3728), - [anon_sym_decltype] = ACTIONS(3728), - [anon_sym_template] = ACTIONS(3728), - [anon_sym_try] = ACTIONS(3728), - [anon_sym_delete] = ACTIONS(3728), - [anon_sym_throw] = ACTIONS(3728), - [anon_sym_co_return] = ACTIONS(3728), - [anon_sym_co_yield] = ACTIONS(3728), - [anon_sym_R_DQUOTE] = ACTIONS(3730), - [anon_sym_LR_DQUOTE] = ACTIONS(3730), - [anon_sym_uR_DQUOTE] = ACTIONS(3730), - [anon_sym_UR_DQUOTE] = ACTIONS(3730), - [anon_sym_u8R_DQUOTE] = ACTIONS(3730), - [anon_sym_co_await] = ACTIONS(3728), - [anon_sym_new] = ACTIONS(3728), - [anon_sym_requires] = ACTIONS(3728), - [anon_sym_CARET_CARET] = ACTIONS(3730), - [anon_sym_LBRACK_COLON] = ACTIONS(3730), - [sym_this] = ACTIONS(3728), - }, - [STATE(1152)] = { - [sym_identifier] = ACTIONS(3884), - [anon_sym_LPAREN2] = ACTIONS(3886), - [anon_sym_BANG] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3886), - [anon_sym_AMP] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym___extension__] = ACTIONS(3884), - [anon_sym_typedef] = ACTIONS(3884), - [anon_sym_virtual] = ACTIONS(3884), - [anon_sym_extern] = ACTIONS(3884), - [anon_sym___attribute__] = 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_LBRACE] = ACTIONS(3886), - [anon_sym_signed] = ACTIONS(3884), - [anon_sym_unsigned] = ACTIONS(3884), - [anon_sym_long] = ACTIONS(3884), - [anon_sym_short] = ACTIONS(3884), - [anon_sym_LBRACK] = ACTIONS(3884), - [anon_sym_static] = ACTIONS(3884), - [anon_sym_register] = ACTIONS(3884), - [anon_sym_inline] = ACTIONS(3884), - [anon_sym___inline] = ACTIONS(3884), - [anon_sym___inline__] = ACTIONS(3884), - [anon_sym___forceinline] = ACTIONS(3884), - [anon_sym_thread_local] = ACTIONS(3884), - [anon_sym___thread] = ACTIONS(3884), - [anon_sym_const] = ACTIONS(3884), - [anon_sym_constexpr] = ACTIONS(3884), - [anon_sym_volatile] = ACTIONS(3884), - [anon_sym_restrict] = ACTIONS(3884), - [anon_sym___restrict__] = ACTIONS(3884), - [anon_sym__Atomic] = ACTIONS(3884), - [anon_sym__Noreturn] = ACTIONS(3884), - [anon_sym_noreturn] = ACTIONS(3884), - [anon_sym__Nonnull] = ACTIONS(3884), - [anon_sym_mutable] = ACTIONS(3884), - [anon_sym_constinit] = ACTIONS(3884), - [anon_sym_consteval] = ACTIONS(3884), - [anon_sym_alignas] = ACTIONS(3884), - [anon_sym__Alignas] = ACTIONS(3884), - [sym_primitive_type] = ACTIONS(3884), - [anon_sym_enum] = ACTIONS(3884), - [anon_sym_class] = ACTIONS(3884), - [anon_sym_struct] = ACTIONS(3884), - [anon_sym_union] = ACTIONS(3884), - [anon_sym_if] = ACTIONS(3884), - [anon_sym_else] = ACTIONS(3884), - [anon_sym_switch] = ACTIONS(3884), - [anon_sym_while] = ACTIONS(3884), - [anon_sym_do] = ACTIONS(3884), - [anon_sym_for] = ACTIONS(3884), - [anon_sym_return] = ACTIONS(3884), - [anon_sym_break] = ACTIONS(3884), - [anon_sym_continue] = ACTIONS(3884), - [anon_sym_goto] = ACTIONS(3884), - [anon_sym___try] = ACTIONS(3884), - [anon_sym___leave] = ACTIONS(3884), - [anon_sym_not] = ACTIONS(3884), - [anon_sym_compl] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3886), - [anon_sym_PLUS_PLUS] = ACTIONS(3886), - [anon_sym_sizeof] = ACTIONS(3884), - [anon_sym___alignof__] = ACTIONS(3884), - [anon_sym___alignof] = ACTIONS(3884), - [anon_sym__alignof] = ACTIONS(3884), - [anon_sym_alignof] = ACTIONS(3884), - [anon_sym__Alignof] = ACTIONS(3884), - [anon_sym_offsetof] = ACTIONS(3884), - [anon_sym__Generic] = ACTIONS(3884), - [anon_sym_typename] = ACTIONS(3884), - [anon_sym_asm] = ACTIONS(3884), - [anon_sym___asm__] = ACTIONS(3884), - [anon_sym___asm] = ACTIONS(3884), - [sym_number_literal] = ACTIONS(3886), - [anon_sym_L_SQUOTE] = ACTIONS(3886), - [anon_sym_u_SQUOTE] = ACTIONS(3886), - [anon_sym_U_SQUOTE] = ACTIONS(3886), - [anon_sym_u8_SQUOTE] = ACTIONS(3886), - [anon_sym_SQUOTE] = ACTIONS(3886), - [anon_sym_L_DQUOTE] = ACTIONS(3886), - [anon_sym_u_DQUOTE] = ACTIONS(3886), - [anon_sym_U_DQUOTE] = ACTIONS(3886), - [anon_sym_u8_DQUOTE] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(3886), - [sym_true] = ACTIONS(3884), - [sym_false] = ACTIONS(3884), - [anon_sym_NULL] = ACTIONS(3884), - [anon_sym_nullptr] = ACTIONS(3884), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3884), - [anon_sym_decltype] = ACTIONS(3884), - [anon_sym_template] = ACTIONS(3884), - [anon_sym_try] = ACTIONS(3884), - [anon_sym_delete] = ACTIONS(3884), - [anon_sym_throw] = ACTIONS(3884), - [anon_sym_co_return] = ACTIONS(3884), - [anon_sym_co_yield] = ACTIONS(3884), - [anon_sym_R_DQUOTE] = ACTIONS(3886), - [anon_sym_LR_DQUOTE] = ACTIONS(3886), - [anon_sym_uR_DQUOTE] = ACTIONS(3886), - [anon_sym_UR_DQUOTE] = ACTIONS(3886), - [anon_sym_u8R_DQUOTE] = ACTIONS(3886), - [anon_sym_co_await] = ACTIONS(3884), - [anon_sym_new] = ACTIONS(3884), - [anon_sym_requires] = ACTIONS(3884), - [anon_sym_CARET_CARET] = ACTIONS(3886), - [anon_sym_LBRACK_COLON] = ACTIONS(3886), - [sym_this] = ACTIONS(3884), - }, - [STATE(1153)] = { - [sym_identifier] = ACTIONS(2949), - [anon_sym_LPAREN2] = ACTIONS(2954), - [anon_sym_BANG] = ACTIONS(2954), - [anon_sym_TILDE] = ACTIONS(2954), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_STAR] = ACTIONS(2954), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_SEMI] = ACTIONS(2954), - [anon_sym___extension__] = ACTIONS(2949), - [anon_sym_typedef] = ACTIONS(2949), - [anon_sym_virtual] = ACTIONS(2949), - [anon_sym_extern] = ACTIONS(2949), - [anon_sym___attribute__] = ACTIONS(2949), - [anon_sym___attribute] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2954), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2954), - [anon_sym___declspec] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2954), - [anon_sym_signed] = ACTIONS(2949), - [anon_sym_unsigned] = ACTIONS(2949), - [anon_sym_long] = ACTIONS(2949), - [anon_sym_short] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_static] = ACTIONS(2949), - [anon_sym_register] = ACTIONS(2949), - [anon_sym_inline] = ACTIONS(2949), - [anon_sym___inline] = ACTIONS(2949), - [anon_sym___inline__] = ACTIONS(2949), - [anon_sym___forceinline] = ACTIONS(2949), - [anon_sym_thread_local] = ACTIONS(2949), - [anon_sym___thread] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_constexpr] = ACTIONS(2949), - [anon_sym_volatile] = ACTIONS(2949), - [anon_sym_restrict] = ACTIONS(2949), - [anon_sym___restrict__] = ACTIONS(2949), - [anon_sym__Atomic] = ACTIONS(2949), - [anon_sym__Noreturn] = ACTIONS(2949), - [anon_sym_noreturn] = ACTIONS(2949), - [anon_sym__Nonnull] = ACTIONS(2949), - [anon_sym_mutable] = ACTIONS(2949), - [anon_sym_constinit] = ACTIONS(2949), - [anon_sym_consteval] = ACTIONS(2949), - [anon_sym_alignas] = ACTIONS(2949), - [anon_sym__Alignas] = ACTIONS(2949), - [sym_primitive_type] = ACTIONS(2949), - [anon_sym_enum] = ACTIONS(2949), - [anon_sym_class] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2949), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_else] = ACTIONS(2949), - [anon_sym_switch] = ACTIONS(2949), - [anon_sym_while] = ACTIONS(2949), - [anon_sym_do] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_return] = ACTIONS(2949), - [anon_sym_break] = ACTIONS(2949), - [anon_sym_continue] = ACTIONS(2949), - [anon_sym_goto] = ACTIONS(2949), - [anon_sym___try] = ACTIONS(2949), - [anon_sym___leave] = ACTIONS(2949), - [anon_sym_not] = ACTIONS(2949), - [anon_sym_compl] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2954), - [anon_sym_PLUS_PLUS] = ACTIONS(2954), - [anon_sym_sizeof] = ACTIONS(2949), - [anon_sym___alignof__] = ACTIONS(2949), - [anon_sym___alignof] = ACTIONS(2949), - [anon_sym__alignof] = ACTIONS(2949), - [anon_sym_alignof] = ACTIONS(2949), - [anon_sym__Alignof] = ACTIONS(2949), - [anon_sym_offsetof] = ACTIONS(2949), - [anon_sym__Generic] = ACTIONS(2949), - [anon_sym_typename] = ACTIONS(2949), - [anon_sym_asm] = ACTIONS(2949), - [anon_sym___asm__] = ACTIONS(2949), - [anon_sym___asm] = ACTIONS(2949), - [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(2949), - [sym_false] = ACTIONS(2949), - [anon_sym_NULL] = ACTIONS(2949), - [anon_sym_nullptr] = ACTIONS(2949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2949), - [anon_sym_decltype] = ACTIONS(2949), - [anon_sym_template] = ACTIONS(2949), - [anon_sym_try] = ACTIONS(2949), - [anon_sym_delete] = ACTIONS(2949), - [anon_sym_throw] = ACTIONS(2949), - [anon_sym_co_return] = ACTIONS(2949), - [anon_sym_co_yield] = ACTIONS(2949), - [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(2949), - [anon_sym_new] = ACTIONS(2949), - [anon_sym_requires] = ACTIONS(2949), - [anon_sym_CARET_CARET] = ACTIONS(2954), - [anon_sym_LBRACK_COLON] = ACTIONS(2954), - [sym_this] = ACTIONS(2949), - }, - [STATE(1154)] = { - [sym_identifier] = ACTIONS(3640), - [anon_sym_LPAREN2] = ACTIONS(3642), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_STAR] = ACTIONS(3642), - [anon_sym_AMP] = ACTIONS(3642), - [anon_sym_SEMI] = ACTIONS(3642), - [anon_sym___extension__] = ACTIONS(3640), - [anon_sym_typedef] = ACTIONS(3640), - [anon_sym_virtual] = ACTIONS(3640), - [anon_sym_extern] = ACTIONS(3640), - [anon_sym___attribute__] = ACTIONS(3640), - [anon_sym___attribute] = ACTIONS(3640), - [anon_sym_COLON_COLON] = ACTIONS(3642), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), - [anon_sym___declspec] = ACTIONS(3640), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_signed] = ACTIONS(3640), - [anon_sym_unsigned] = ACTIONS(3640), - [anon_sym_long] = ACTIONS(3640), - [anon_sym_short] = ACTIONS(3640), - [anon_sym_LBRACK] = ACTIONS(3640), - [anon_sym_static] = ACTIONS(3640), - [anon_sym_register] = ACTIONS(3640), - [anon_sym_inline] = ACTIONS(3640), - [anon_sym___inline] = ACTIONS(3640), - [anon_sym___inline__] = ACTIONS(3640), - [anon_sym___forceinline] = ACTIONS(3640), - [anon_sym_thread_local] = ACTIONS(3640), - [anon_sym___thread] = ACTIONS(3640), - [anon_sym_const] = ACTIONS(3640), - [anon_sym_constexpr] = ACTIONS(3640), - [anon_sym_volatile] = ACTIONS(3640), - [anon_sym_restrict] = ACTIONS(3640), - [anon_sym___restrict__] = ACTIONS(3640), - [anon_sym__Atomic] = ACTIONS(3640), - [anon_sym__Noreturn] = ACTIONS(3640), - [anon_sym_noreturn] = ACTIONS(3640), - [anon_sym__Nonnull] = ACTIONS(3640), - [anon_sym_mutable] = ACTIONS(3640), - [anon_sym_constinit] = ACTIONS(3640), - [anon_sym_consteval] = ACTIONS(3640), - [anon_sym_alignas] = ACTIONS(3640), - [anon_sym__Alignas] = ACTIONS(3640), - [sym_primitive_type] = ACTIONS(3640), - [anon_sym_enum] = ACTIONS(3640), - [anon_sym_class] = ACTIONS(3640), - [anon_sym_struct] = ACTIONS(3640), - [anon_sym_union] = ACTIONS(3640), - [anon_sym_if] = ACTIONS(3640), - [anon_sym_else] = ACTIONS(3640), - [anon_sym_switch] = ACTIONS(3640), - [anon_sym_while] = ACTIONS(3640), - [anon_sym_do] = ACTIONS(3640), - [anon_sym_for] = ACTIONS(3640), - [anon_sym_return] = ACTIONS(3640), - [anon_sym_break] = ACTIONS(3640), - [anon_sym_continue] = ACTIONS(3640), - [anon_sym_goto] = ACTIONS(3640), - [anon_sym___try] = ACTIONS(3640), - [anon_sym___leave] = ACTIONS(3640), - [anon_sym_not] = ACTIONS(3640), - [anon_sym_compl] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(3642), - [anon_sym_PLUS_PLUS] = ACTIONS(3642), - [anon_sym_sizeof] = ACTIONS(3640), - [anon_sym___alignof__] = ACTIONS(3640), - [anon_sym___alignof] = ACTIONS(3640), - [anon_sym__alignof] = ACTIONS(3640), - [anon_sym_alignof] = ACTIONS(3640), - [anon_sym__Alignof] = ACTIONS(3640), - [anon_sym_offsetof] = ACTIONS(3640), - [anon_sym__Generic] = ACTIONS(3640), - [anon_sym_typename] = ACTIONS(3640), - [anon_sym_asm] = ACTIONS(3640), - [anon_sym___asm__] = ACTIONS(3640), - [anon_sym___asm] = ACTIONS(3640), - [sym_number_literal] = ACTIONS(3642), - [anon_sym_L_SQUOTE] = ACTIONS(3642), - [anon_sym_u_SQUOTE] = ACTIONS(3642), - [anon_sym_U_SQUOTE] = ACTIONS(3642), - [anon_sym_u8_SQUOTE] = ACTIONS(3642), - [anon_sym_SQUOTE] = ACTIONS(3642), - [anon_sym_L_DQUOTE] = ACTIONS(3642), - [anon_sym_u_DQUOTE] = ACTIONS(3642), - [anon_sym_U_DQUOTE] = ACTIONS(3642), - [anon_sym_u8_DQUOTE] = ACTIONS(3642), - [anon_sym_DQUOTE] = ACTIONS(3642), - [sym_true] = ACTIONS(3640), - [sym_false] = ACTIONS(3640), - [anon_sym_NULL] = ACTIONS(3640), - [anon_sym_nullptr] = ACTIONS(3640), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3640), - [anon_sym_decltype] = ACTIONS(3640), - [anon_sym_template] = ACTIONS(3640), - [anon_sym_try] = ACTIONS(3640), - [anon_sym_delete] = ACTIONS(3640), - [anon_sym_throw] = ACTIONS(3640), - [anon_sym_co_return] = ACTIONS(3640), - [anon_sym_co_yield] = ACTIONS(3640), - [anon_sym_R_DQUOTE] = ACTIONS(3642), - [anon_sym_LR_DQUOTE] = ACTIONS(3642), - [anon_sym_uR_DQUOTE] = ACTIONS(3642), - [anon_sym_UR_DQUOTE] = ACTIONS(3642), - [anon_sym_u8R_DQUOTE] = ACTIONS(3642), - [anon_sym_co_await] = ACTIONS(3640), - [anon_sym_new] = ACTIONS(3640), - [anon_sym_requires] = ACTIONS(3640), - [anon_sym_CARET_CARET] = ACTIONS(3642), - [anon_sym_LBRACK_COLON] = ACTIONS(3642), - [sym_this] = ACTIONS(3640), - }, - [STATE(1155)] = { - [sym_identifier] = ACTIONS(3644), - [anon_sym_LPAREN2] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3646), - [anon_sym_TILDE] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3646), - [anon_sym_AMP] = ACTIONS(3646), - [anon_sym_SEMI] = ACTIONS(3646), - [anon_sym___extension__] = ACTIONS(3644), - [anon_sym_typedef] = ACTIONS(3644), - [anon_sym_virtual] = ACTIONS(3644), - [anon_sym_extern] = ACTIONS(3644), - [anon_sym___attribute__] = ACTIONS(3644), - [anon_sym___attribute] = ACTIONS(3644), - [anon_sym_COLON_COLON] = ACTIONS(3646), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), - [anon_sym___declspec] = ACTIONS(3644), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_signed] = ACTIONS(3644), - [anon_sym_unsigned] = ACTIONS(3644), - [anon_sym_long] = ACTIONS(3644), - [anon_sym_short] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(3644), - [anon_sym_static] = ACTIONS(3644), - [anon_sym_register] = ACTIONS(3644), - [anon_sym_inline] = ACTIONS(3644), - [anon_sym___inline] = ACTIONS(3644), - [anon_sym___inline__] = ACTIONS(3644), - [anon_sym___forceinline] = ACTIONS(3644), - [anon_sym_thread_local] = ACTIONS(3644), - [anon_sym___thread] = ACTIONS(3644), - [anon_sym_const] = ACTIONS(3644), - [anon_sym_constexpr] = ACTIONS(3644), - [anon_sym_volatile] = ACTIONS(3644), - [anon_sym_restrict] = ACTIONS(3644), - [anon_sym___restrict__] = ACTIONS(3644), - [anon_sym__Atomic] = ACTIONS(3644), - [anon_sym__Noreturn] = ACTIONS(3644), - [anon_sym_noreturn] = ACTIONS(3644), - [anon_sym__Nonnull] = ACTIONS(3644), - [anon_sym_mutable] = ACTIONS(3644), - [anon_sym_constinit] = ACTIONS(3644), - [anon_sym_consteval] = ACTIONS(3644), - [anon_sym_alignas] = ACTIONS(3644), - [anon_sym__Alignas] = ACTIONS(3644), - [sym_primitive_type] = ACTIONS(3644), - [anon_sym_enum] = ACTIONS(3644), - [anon_sym_class] = ACTIONS(3644), - [anon_sym_struct] = ACTIONS(3644), - [anon_sym_union] = ACTIONS(3644), - [anon_sym_if] = ACTIONS(3644), - [anon_sym_else] = ACTIONS(3644), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_while] = ACTIONS(3644), - [anon_sym_do] = ACTIONS(3644), - [anon_sym_for] = ACTIONS(3644), - [anon_sym_return] = ACTIONS(3644), - [anon_sym_break] = ACTIONS(3644), - [anon_sym_continue] = ACTIONS(3644), - [anon_sym_goto] = ACTIONS(3644), - [anon_sym___try] = ACTIONS(3644), - [anon_sym___leave] = ACTIONS(3644), - [anon_sym_not] = ACTIONS(3644), - [anon_sym_compl] = ACTIONS(3644), - [anon_sym_DASH_DASH] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3646), - [anon_sym_sizeof] = ACTIONS(3644), - [anon_sym___alignof__] = ACTIONS(3644), - [anon_sym___alignof] = ACTIONS(3644), - [anon_sym__alignof] = ACTIONS(3644), - [anon_sym_alignof] = ACTIONS(3644), - [anon_sym__Alignof] = ACTIONS(3644), - [anon_sym_offsetof] = ACTIONS(3644), - [anon_sym__Generic] = ACTIONS(3644), - [anon_sym_typename] = ACTIONS(3644), - [anon_sym_asm] = ACTIONS(3644), - [anon_sym___asm__] = ACTIONS(3644), - [anon_sym___asm] = ACTIONS(3644), - [sym_number_literal] = ACTIONS(3646), - [anon_sym_L_SQUOTE] = ACTIONS(3646), - [anon_sym_u_SQUOTE] = ACTIONS(3646), - [anon_sym_U_SQUOTE] = ACTIONS(3646), - [anon_sym_u8_SQUOTE] = ACTIONS(3646), - [anon_sym_SQUOTE] = ACTIONS(3646), - [anon_sym_L_DQUOTE] = ACTIONS(3646), - [anon_sym_u_DQUOTE] = ACTIONS(3646), - [anon_sym_U_DQUOTE] = ACTIONS(3646), - [anon_sym_u8_DQUOTE] = ACTIONS(3646), - [anon_sym_DQUOTE] = ACTIONS(3646), - [sym_true] = ACTIONS(3644), - [sym_false] = ACTIONS(3644), - [anon_sym_NULL] = ACTIONS(3644), - [anon_sym_nullptr] = ACTIONS(3644), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3644), - [anon_sym_decltype] = ACTIONS(3644), - [anon_sym_template] = ACTIONS(3644), - [anon_sym_try] = ACTIONS(3644), - [anon_sym_delete] = ACTIONS(3644), - [anon_sym_throw] = ACTIONS(3644), - [anon_sym_co_return] = ACTIONS(3644), - [anon_sym_co_yield] = ACTIONS(3644), - [anon_sym_R_DQUOTE] = ACTIONS(3646), - [anon_sym_LR_DQUOTE] = ACTIONS(3646), - [anon_sym_uR_DQUOTE] = ACTIONS(3646), - [anon_sym_UR_DQUOTE] = ACTIONS(3646), - [anon_sym_u8R_DQUOTE] = ACTIONS(3646), - [anon_sym_co_await] = ACTIONS(3644), - [anon_sym_new] = ACTIONS(3644), - [anon_sym_requires] = ACTIONS(3644), - [anon_sym_CARET_CARET] = ACTIONS(3646), - [anon_sym_LBRACK_COLON] = ACTIONS(3646), - [sym_this] = ACTIONS(3644), - }, - [STATE(1156)] = { - [sym_identifier] = ACTIONS(3712), - [anon_sym_LPAREN2] = ACTIONS(3714), - [anon_sym_BANG] = ACTIONS(3714), - [anon_sym_TILDE] = ACTIONS(3714), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_PLUS] = ACTIONS(3712), - [anon_sym_STAR] = ACTIONS(3714), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_SEMI] = ACTIONS(3714), - [anon_sym___extension__] = ACTIONS(3712), - [anon_sym_typedef] = ACTIONS(3712), - [anon_sym_virtual] = ACTIONS(3712), - [anon_sym_extern] = ACTIONS(3712), - [anon_sym___attribute__] = ACTIONS(3712), - [anon_sym___attribute] = ACTIONS(3712), - [anon_sym_COLON_COLON] = ACTIONS(3714), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3714), - [anon_sym___declspec] = ACTIONS(3712), - [anon_sym_LBRACE] = ACTIONS(3714), - [anon_sym_signed] = ACTIONS(3712), - [anon_sym_unsigned] = ACTIONS(3712), - [anon_sym_long] = ACTIONS(3712), - [anon_sym_short] = ACTIONS(3712), - [anon_sym_LBRACK] = ACTIONS(3712), - [anon_sym_static] = ACTIONS(3712), - [anon_sym_register] = ACTIONS(3712), - [anon_sym_inline] = ACTIONS(3712), - [anon_sym___inline] = ACTIONS(3712), - [anon_sym___inline__] = ACTIONS(3712), - [anon_sym___forceinline] = ACTIONS(3712), - [anon_sym_thread_local] = ACTIONS(3712), - [anon_sym___thread] = ACTIONS(3712), - [anon_sym_const] = ACTIONS(3712), - [anon_sym_constexpr] = ACTIONS(3712), - [anon_sym_volatile] = ACTIONS(3712), - [anon_sym_restrict] = ACTIONS(3712), - [anon_sym___restrict__] = ACTIONS(3712), - [anon_sym__Atomic] = ACTIONS(3712), - [anon_sym__Noreturn] = ACTIONS(3712), - [anon_sym_noreturn] = ACTIONS(3712), - [anon_sym__Nonnull] = ACTIONS(3712), - [anon_sym_mutable] = ACTIONS(3712), - [anon_sym_constinit] = ACTIONS(3712), - [anon_sym_consteval] = ACTIONS(3712), - [anon_sym_alignas] = ACTIONS(3712), - [anon_sym__Alignas] = ACTIONS(3712), - [sym_primitive_type] = ACTIONS(3712), - [anon_sym_enum] = ACTIONS(3712), - [anon_sym_class] = ACTIONS(3712), - [anon_sym_struct] = ACTIONS(3712), - [anon_sym_union] = ACTIONS(3712), - [anon_sym_if] = ACTIONS(3712), - [anon_sym_else] = ACTIONS(3712), - [anon_sym_switch] = ACTIONS(3712), - [anon_sym_while] = ACTIONS(3712), - [anon_sym_do] = ACTIONS(3712), - [anon_sym_for] = ACTIONS(3712), - [anon_sym_return] = ACTIONS(3712), - [anon_sym_break] = ACTIONS(3712), - [anon_sym_continue] = ACTIONS(3712), - [anon_sym_goto] = ACTIONS(3712), - [anon_sym___try] = ACTIONS(3712), - [anon_sym___leave] = ACTIONS(3712), - [anon_sym_not] = ACTIONS(3712), - [anon_sym_compl] = ACTIONS(3712), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_sizeof] = ACTIONS(3712), - [anon_sym___alignof__] = ACTIONS(3712), - [anon_sym___alignof] = ACTIONS(3712), - [anon_sym__alignof] = ACTIONS(3712), - [anon_sym_alignof] = ACTIONS(3712), - [anon_sym__Alignof] = ACTIONS(3712), - [anon_sym_offsetof] = ACTIONS(3712), - [anon_sym__Generic] = ACTIONS(3712), - [anon_sym_typename] = ACTIONS(3712), - [anon_sym_asm] = ACTIONS(3712), - [anon_sym___asm__] = ACTIONS(3712), - [anon_sym___asm] = ACTIONS(3712), - [sym_number_literal] = ACTIONS(3714), - [anon_sym_L_SQUOTE] = ACTIONS(3714), - [anon_sym_u_SQUOTE] = ACTIONS(3714), - [anon_sym_U_SQUOTE] = ACTIONS(3714), - [anon_sym_u8_SQUOTE] = ACTIONS(3714), - [anon_sym_SQUOTE] = ACTIONS(3714), - [anon_sym_L_DQUOTE] = ACTIONS(3714), - [anon_sym_u_DQUOTE] = ACTIONS(3714), - [anon_sym_U_DQUOTE] = ACTIONS(3714), - [anon_sym_u8_DQUOTE] = ACTIONS(3714), - [anon_sym_DQUOTE] = ACTIONS(3714), - [sym_true] = ACTIONS(3712), - [sym_false] = ACTIONS(3712), - [anon_sym_NULL] = ACTIONS(3712), - [anon_sym_nullptr] = ACTIONS(3712), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3712), - [anon_sym_decltype] = ACTIONS(3712), - [anon_sym_template] = ACTIONS(3712), - [anon_sym_try] = ACTIONS(3712), - [anon_sym_delete] = ACTIONS(3712), - [anon_sym_throw] = ACTIONS(3712), - [anon_sym_co_return] = ACTIONS(3712), - [anon_sym_co_yield] = ACTIONS(3712), - [anon_sym_R_DQUOTE] = ACTIONS(3714), - [anon_sym_LR_DQUOTE] = ACTIONS(3714), - [anon_sym_uR_DQUOTE] = ACTIONS(3714), - [anon_sym_UR_DQUOTE] = ACTIONS(3714), - [anon_sym_u8R_DQUOTE] = ACTIONS(3714), - [anon_sym_co_await] = ACTIONS(3712), - [anon_sym_new] = ACTIONS(3712), - [anon_sym_requires] = ACTIONS(3712), - [anon_sym_CARET_CARET] = ACTIONS(3714), - [anon_sym_LBRACK_COLON] = ACTIONS(3714), - [sym_this] = ACTIONS(3712), - }, - [STATE(1157)] = { - [sym_identifier] = ACTIONS(3880), - [anon_sym_LPAREN2] = ACTIONS(3882), - [anon_sym_BANG] = ACTIONS(3882), - [anon_sym_TILDE] = ACTIONS(3882), - [anon_sym_DASH] = ACTIONS(3880), - [anon_sym_PLUS] = ACTIONS(3880), - [anon_sym_STAR] = ACTIONS(3882), - [anon_sym_AMP] = ACTIONS(3882), - [anon_sym_SEMI] = ACTIONS(3882), - [anon_sym___extension__] = ACTIONS(3880), - [anon_sym_typedef] = ACTIONS(3880), - [anon_sym_virtual] = ACTIONS(3880), - [anon_sym_extern] = ACTIONS(3880), - [anon_sym___attribute__] = ACTIONS(3880), - [anon_sym___attribute] = ACTIONS(3880), - [anon_sym_COLON_COLON] = ACTIONS(3882), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3882), - [anon_sym___declspec] = ACTIONS(3880), - [anon_sym_LBRACE] = ACTIONS(3882), - [anon_sym_signed] = ACTIONS(3880), - [anon_sym_unsigned] = ACTIONS(3880), - [anon_sym_long] = ACTIONS(3880), - [anon_sym_short] = ACTIONS(3880), - [anon_sym_LBRACK] = ACTIONS(3880), - [anon_sym_static] = ACTIONS(3880), - [anon_sym_register] = ACTIONS(3880), - [anon_sym_inline] = ACTIONS(3880), - [anon_sym___inline] = ACTIONS(3880), - [anon_sym___inline__] = ACTIONS(3880), - [anon_sym___forceinline] = ACTIONS(3880), - [anon_sym_thread_local] = ACTIONS(3880), - [anon_sym___thread] = ACTIONS(3880), - [anon_sym_const] = ACTIONS(3880), - [anon_sym_constexpr] = ACTIONS(3880), - [anon_sym_volatile] = ACTIONS(3880), - [anon_sym_restrict] = ACTIONS(3880), - [anon_sym___restrict__] = ACTIONS(3880), - [anon_sym__Atomic] = ACTIONS(3880), - [anon_sym__Noreturn] = ACTIONS(3880), - [anon_sym_noreturn] = ACTIONS(3880), - [anon_sym__Nonnull] = ACTIONS(3880), - [anon_sym_mutable] = ACTIONS(3880), - [anon_sym_constinit] = ACTIONS(3880), - [anon_sym_consteval] = ACTIONS(3880), - [anon_sym_alignas] = ACTIONS(3880), - [anon_sym__Alignas] = ACTIONS(3880), - [sym_primitive_type] = ACTIONS(3880), - [anon_sym_enum] = ACTIONS(3880), - [anon_sym_class] = ACTIONS(3880), - [anon_sym_struct] = ACTIONS(3880), - [anon_sym_union] = ACTIONS(3880), - [anon_sym_if] = ACTIONS(3880), - [anon_sym_else] = ACTIONS(3880), - [anon_sym_switch] = ACTIONS(3880), - [anon_sym_while] = ACTIONS(3880), - [anon_sym_do] = ACTIONS(3880), - [anon_sym_for] = ACTIONS(3880), - [anon_sym_return] = ACTIONS(3880), - [anon_sym_break] = ACTIONS(3880), - [anon_sym_continue] = ACTIONS(3880), - [anon_sym_goto] = ACTIONS(3880), - [anon_sym___try] = ACTIONS(3880), - [anon_sym___leave] = ACTIONS(3880), - [anon_sym_not] = ACTIONS(3880), - [anon_sym_compl] = ACTIONS(3880), - [anon_sym_DASH_DASH] = ACTIONS(3882), - [anon_sym_PLUS_PLUS] = ACTIONS(3882), - [anon_sym_sizeof] = ACTIONS(3880), - [anon_sym___alignof__] = ACTIONS(3880), - [anon_sym___alignof] = ACTIONS(3880), - [anon_sym__alignof] = ACTIONS(3880), - [anon_sym_alignof] = ACTIONS(3880), - [anon_sym__Alignof] = ACTIONS(3880), - [anon_sym_offsetof] = ACTIONS(3880), - [anon_sym__Generic] = ACTIONS(3880), - [anon_sym_typename] = ACTIONS(3880), - [anon_sym_asm] = ACTIONS(3880), - [anon_sym___asm__] = ACTIONS(3880), - [anon_sym___asm] = ACTIONS(3880), - [sym_number_literal] = ACTIONS(3882), - [anon_sym_L_SQUOTE] = ACTIONS(3882), - [anon_sym_u_SQUOTE] = ACTIONS(3882), - [anon_sym_U_SQUOTE] = ACTIONS(3882), - [anon_sym_u8_SQUOTE] = ACTIONS(3882), - [anon_sym_SQUOTE] = ACTIONS(3882), - [anon_sym_L_DQUOTE] = ACTIONS(3882), - [anon_sym_u_DQUOTE] = ACTIONS(3882), - [anon_sym_U_DQUOTE] = ACTIONS(3882), - [anon_sym_u8_DQUOTE] = ACTIONS(3882), - [anon_sym_DQUOTE] = ACTIONS(3882), - [sym_true] = ACTIONS(3880), - [sym_false] = ACTIONS(3880), - [anon_sym_NULL] = ACTIONS(3880), - [anon_sym_nullptr] = ACTIONS(3880), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3880), - [anon_sym_decltype] = ACTIONS(3880), - [anon_sym_template] = ACTIONS(3880), - [anon_sym_try] = ACTIONS(3880), - [anon_sym_delete] = ACTIONS(3880), - [anon_sym_throw] = ACTIONS(3880), - [anon_sym_co_return] = ACTIONS(3880), - [anon_sym_co_yield] = ACTIONS(3880), - [anon_sym_R_DQUOTE] = ACTIONS(3882), - [anon_sym_LR_DQUOTE] = ACTIONS(3882), - [anon_sym_uR_DQUOTE] = ACTIONS(3882), - [anon_sym_UR_DQUOTE] = ACTIONS(3882), - [anon_sym_u8R_DQUOTE] = ACTIONS(3882), - [anon_sym_co_await] = ACTIONS(3880), - [anon_sym_new] = ACTIONS(3880), - [anon_sym_requires] = ACTIONS(3880), - [anon_sym_CARET_CARET] = ACTIONS(3882), - [anon_sym_LBRACK_COLON] = ACTIONS(3882), - [sym_this] = ACTIONS(3880), - }, - [STATE(1158)] = { - [sym_identifier] = ACTIONS(3728), - [anon_sym_LPAREN2] = ACTIONS(3730), - [anon_sym_BANG] = ACTIONS(3730), - [anon_sym_TILDE] = ACTIONS(3730), - [anon_sym_DASH] = ACTIONS(3728), - [anon_sym_PLUS] = ACTIONS(3728), - [anon_sym_STAR] = ACTIONS(3730), - [anon_sym_AMP] = ACTIONS(3730), - [anon_sym_SEMI] = ACTIONS(3730), - [anon_sym___extension__] = ACTIONS(3728), - [anon_sym_typedef] = ACTIONS(3728), - [anon_sym_virtual] = ACTIONS(3728), - [anon_sym_extern] = ACTIONS(3728), - [anon_sym___attribute__] = ACTIONS(3728), - [anon_sym___attribute] = ACTIONS(3728), - [anon_sym_COLON_COLON] = ACTIONS(3730), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), - [anon_sym___declspec] = ACTIONS(3728), - [anon_sym_LBRACE] = ACTIONS(3730), - [anon_sym_signed] = ACTIONS(3728), - [anon_sym_unsigned] = ACTIONS(3728), - [anon_sym_long] = ACTIONS(3728), - [anon_sym_short] = ACTIONS(3728), - [anon_sym_LBRACK] = ACTIONS(3728), - [anon_sym_static] = ACTIONS(3728), - [anon_sym_register] = ACTIONS(3728), - [anon_sym_inline] = ACTIONS(3728), - [anon_sym___inline] = ACTIONS(3728), - [anon_sym___inline__] = ACTIONS(3728), - [anon_sym___forceinline] = ACTIONS(3728), - [anon_sym_thread_local] = ACTIONS(3728), - [anon_sym___thread] = ACTIONS(3728), - [anon_sym_const] = ACTIONS(3728), - [anon_sym_constexpr] = ACTIONS(3728), - [anon_sym_volatile] = ACTIONS(3728), - [anon_sym_restrict] = ACTIONS(3728), - [anon_sym___restrict__] = ACTIONS(3728), - [anon_sym__Atomic] = ACTIONS(3728), - [anon_sym__Noreturn] = ACTIONS(3728), - [anon_sym_noreturn] = ACTIONS(3728), - [anon_sym__Nonnull] = ACTIONS(3728), - [anon_sym_mutable] = ACTIONS(3728), - [anon_sym_constinit] = ACTIONS(3728), - [anon_sym_consteval] = ACTIONS(3728), - [anon_sym_alignas] = ACTIONS(3728), - [anon_sym__Alignas] = ACTIONS(3728), - [sym_primitive_type] = ACTIONS(3728), - [anon_sym_enum] = ACTIONS(3728), - [anon_sym_class] = ACTIONS(3728), - [anon_sym_struct] = ACTIONS(3728), - [anon_sym_union] = ACTIONS(3728), - [anon_sym_if] = ACTIONS(3728), - [anon_sym_else] = ACTIONS(3728), - [anon_sym_switch] = ACTIONS(3728), - [anon_sym_while] = ACTIONS(3728), - [anon_sym_do] = ACTIONS(3728), - [anon_sym_for] = ACTIONS(3728), - [anon_sym_return] = ACTIONS(3728), - [anon_sym_break] = ACTIONS(3728), - [anon_sym_continue] = ACTIONS(3728), - [anon_sym_goto] = ACTIONS(3728), - [anon_sym___try] = ACTIONS(3728), - [anon_sym___leave] = ACTIONS(3728), - [anon_sym_not] = ACTIONS(3728), - [anon_sym_compl] = ACTIONS(3728), - [anon_sym_DASH_DASH] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3730), - [anon_sym_sizeof] = ACTIONS(3728), - [anon_sym___alignof__] = ACTIONS(3728), - [anon_sym___alignof] = ACTIONS(3728), - [anon_sym__alignof] = ACTIONS(3728), - [anon_sym_alignof] = ACTIONS(3728), - [anon_sym__Alignof] = ACTIONS(3728), - [anon_sym_offsetof] = ACTIONS(3728), - [anon_sym__Generic] = ACTIONS(3728), - [anon_sym_typename] = ACTIONS(3728), - [anon_sym_asm] = ACTIONS(3728), - [anon_sym___asm__] = ACTIONS(3728), - [anon_sym___asm] = ACTIONS(3728), - [sym_number_literal] = ACTIONS(3730), - [anon_sym_L_SQUOTE] = ACTIONS(3730), - [anon_sym_u_SQUOTE] = ACTIONS(3730), - [anon_sym_U_SQUOTE] = ACTIONS(3730), - [anon_sym_u8_SQUOTE] = ACTIONS(3730), - [anon_sym_SQUOTE] = ACTIONS(3730), - [anon_sym_L_DQUOTE] = ACTIONS(3730), - [anon_sym_u_DQUOTE] = ACTIONS(3730), - [anon_sym_U_DQUOTE] = ACTIONS(3730), - [anon_sym_u8_DQUOTE] = ACTIONS(3730), - [anon_sym_DQUOTE] = ACTIONS(3730), - [sym_true] = ACTIONS(3728), - [sym_false] = ACTIONS(3728), - [anon_sym_NULL] = ACTIONS(3728), - [anon_sym_nullptr] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3728), - [anon_sym_decltype] = ACTIONS(3728), - [anon_sym_template] = ACTIONS(3728), - [anon_sym_try] = ACTIONS(3728), - [anon_sym_delete] = ACTIONS(3728), - [anon_sym_throw] = ACTIONS(3728), - [anon_sym_co_return] = ACTIONS(3728), - [anon_sym_co_yield] = ACTIONS(3728), - [anon_sym_R_DQUOTE] = ACTIONS(3730), - [anon_sym_LR_DQUOTE] = ACTIONS(3730), - [anon_sym_uR_DQUOTE] = ACTIONS(3730), - [anon_sym_UR_DQUOTE] = ACTIONS(3730), - [anon_sym_u8R_DQUOTE] = ACTIONS(3730), - [anon_sym_co_await] = ACTIONS(3728), - [anon_sym_new] = ACTIONS(3728), - [anon_sym_requires] = ACTIONS(3728), - [anon_sym_CARET_CARET] = ACTIONS(3730), - [anon_sym_LBRACK_COLON] = ACTIONS(3730), - [sym_this] = ACTIONS(3728), - }, - [STATE(1159)] = { - [sym_identifier] = ACTIONS(3876), - [anon_sym_LPAREN2] = ACTIONS(3878), - [anon_sym_BANG] = ACTIONS(3878), - [anon_sym_TILDE] = ACTIONS(3878), - [anon_sym_DASH] = ACTIONS(3876), - [anon_sym_PLUS] = ACTIONS(3876), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_AMP] = ACTIONS(3878), - [anon_sym_SEMI] = ACTIONS(3878), - [anon_sym___extension__] = ACTIONS(3876), - [anon_sym_typedef] = ACTIONS(3876), - [anon_sym_virtual] = ACTIONS(3876), - [anon_sym_extern] = ACTIONS(3876), - [anon_sym___attribute__] = ACTIONS(3876), - [anon_sym___attribute] = ACTIONS(3876), - [anon_sym_COLON_COLON] = ACTIONS(3878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), - [anon_sym___declspec] = ACTIONS(3876), - [anon_sym_LBRACE] = ACTIONS(3878), - [anon_sym_signed] = ACTIONS(3876), - [anon_sym_unsigned] = ACTIONS(3876), - [anon_sym_long] = ACTIONS(3876), - [anon_sym_short] = ACTIONS(3876), - [anon_sym_LBRACK] = ACTIONS(3876), - [anon_sym_static] = ACTIONS(3876), - [anon_sym_register] = ACTIONS(3876), - [anon_sym_inline] = ACTIONS(3876), - [anon_sym___inline] = ACTIONS(3876), - [anon_sym___inline__] = ACTIONS(3876), - [anon_sym___forceinline] = ACTIONS(3876), - [anon_sym_thread_local] = ACTIONS(3876), - [anon_sym___thread] = ACTIONS(3876), - [anon_sym_const] = ACTIONS(3876), - [anon_sym_constexpr] = ACTIONS(3876), - [anon_sym_volatile] = ACTIONS(3876), - [anon_sym_restrict] = ACTIONS(3876), - [anon_sym___restrict__] = ACTIONS(3876), - [anon_sym__Atomic] = ACTIONS(3876), - [anon_sym__Noreturn] = ACTIONS(3876), - [anon_sym_noreturn] = ACTIONS(3876), - [anon_sym__Nonnull] = ACTIONS(3876), - [anon_sym_mutable] = ACTIONS(3876), - [anon_sym_constinit] = ACTIONS(3876), - [anon_sym_consteval] = ACTIONS(3876), - [anon_sym_alignas] = ACTIONS(3876), - [anon_sym__Alignas] = ACTIONS(3876), - [sym_primitive_type] = ACTIONS(3876), - [anon_sym_enum] = ACTIONS(3876), - [anon_sym_class] = ACTIONS(3876), - [anon_sym_struct] = ACTIONS(3876), - [anon_sym_union] = ACTIONS(3876), - [anon_sym_if] = ACTIONS(3876), - [anon_sym_else] = ACTIONS(3876), - [anon_sym_switch] = ACTIONS(3876), - [anon_sym_while] = ACTIONS(3876), - [anon_sym_do] = ACTIONS(3876), - [anon_sym_for] = ACTIONS(3876), - [anon_sym_return] = ACTIONS(3876), - [anon_sym_break] = ACTIONS(3876), - [anon_sym_continue] = ACTIONS(3876), - [anon_sym_goto] = ACTIONS(3876), - [anon_sym___try] = ACTIONS(3876), - [anon_sym___leave] = ACTIONS(3876), - [anon_sym_not] = ACTIONS(3876), - [anon_sym_compl] = ACTIONS(3876), - [anon_sym_DASH_DASH] = ACTIONS(3878), - [anon_sym_PLUS_PLUS] = ACTIONS(3878), - [anon_sym_sizeof] = ACTIONS(3876), - [anon_sym___alignof__] = ACTIONS(3876), - [anon_sym___alignof] = ACTIONS(3876), - [anon_sym__alignof] = ACTIONS(3876), - [anon_sym_alignof] = ACTIONS(3876), - [anon_sym__Alignof] = ACTIONS(3876), - [anon_sym_offsetof] = ACTIONS(3876), - [anon_sym__Generic] = ACTIONS(3876), - [anon_sym_typename] = ACTIONS(3876), - [anon_sym_asm] = ACTIONS(3876), - [anon_sym___asm__] = ACTIONS(3876), - [anon_sym___asm] = ACTIONS(3876), - [sym_number_literal] = ACTIONS(3878), - [anon_sym_L_SQUOTE] = ACTIONS(3878), - [anon_sym_u_SQUOTE] = ACTIONS(3878), - [anon_sym_U_SQUOTE] = ACTIONS(3878), - [anon_sym_u8_SQUOTE] = ACTIONS(3878), - [anon_sym_SQUOTE] = ACTIONS(3878), - [anon_sym_L_DQUOTE] = ACTIONS(3878), - [anon_sym_u_DQUOTE] = ACTIONS(3878), - [anon_sym_U_DQUOTE] = ACTIONS(3878), - [anon_sym_u8_DQUOTE] = ACTIONS(3878), - [anon_sym_DQUOTE] = ACTIONS(3878), - [sym_true] = ACTIONS(3876), - [sym_false] = ACTIONS(3876), - [anon_sym_NULL] = ACTIONS(3876), - [anon_sym_nullptr] = ACTIONS(3876), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3876), - [anon_sym_decltype] = ACTIONS(3876), - [anon_sym_template] = ACTIONS(3876), - [anon_sym_try] = ACTIONS(3876), - [anon_sym_delete] = ACTIONS(3876), - [anon_sym_throw] = ACTIONS(3876), - [anon_sym_co_return] = ACTIONS(3876), - [anon_sym_co_yield] = ACTIONS(3876), - [anon_sym_R_DQUOTE] = ACTIONS(3878), - [anon_sym_LR_DQUOTE] = ACTIONS(3878), - [anon_sym_uR_DQUOTE] = ACTIONS(3878), - [anon_sym_UR_DQUOTE] = ACTIONS(3878), - [anon_sym_u8R_DQUOTE] = ACTIONS(3878), - [anon_sym_co_await] = ACTIONS(3876), - [anon_sym_new] = ACTIONS(3876), - [anon_sym_requires] = ACTIONS(3876), - [anon_sym_CARET_CARET] = ACTIONS(3878), - [anon_sym_LBRACK_COLON] = ACTIONS(3878), - [sym_this] = ACTIONS(3876), - }, - [STATE(1160)] = { - [sym_identifier] = ACTIONS(3652), - [anon_sym_LPAREN2] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_TILDE] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3652), - [anon_sym_STAR] = ACTIONS(3654), - [anon_sym_AMP] = ACTIONS(3654), - [anon_sym_SEMI] = ACTIONS(3654), - [anon_sym___extension__] = ACTIONS(3652), - [anon_sym_typedef] = ACTIONS(3652), - [anon_sym_virtual] = ACTIONS(3652), - [anon_sym_extern] = ACTIONS(3652), - [anon_sym___attribute__] = ACTIONS(3652), - [anon_sym___attribute] = ACTIONS(3652), - [anon_sym_COLON_COLON] = ACTIONS(3654), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3654), - [anon_sym___declspec] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_signed] = ACTIONS(3652), - [anon_sym_unsigned] = ACTIONS(3652), - [anon_sym_long] = ACTIONS(3652), - [anon_sym_short] = ACTIONS(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_static] = ACTIONS(3652), - [anon_sym_register] = ACTIONS(3652), - [anon_sym_inline] = ACTIONS(3652), - [anon_sym___inline] = ACTIONS(3652), - [anon_sym___inline__] = ACTIONS(3652), - [anon_sym___forceinline] = ACTIONS(3652), - [anon_sym_thread_local] = ACTIONS(3652), - [anon_sym___thread] = ACTIONS(3652), - [anon_sym_const] = ACTIONS(3652), - [anon_sym_constexpr] = ACTIONS(3652), - [anon_sym_volatile] = ACTIONS(3652), - [anon_sym_restrict] = ACTIONS(3652), - [anon_sym___restrict__] = ACTIONS(3652), - [anon_sym__Atomic] = ACTIONS(3652), - [anon_sym__Noreturn] = ACTIONS(3652), - [anon_sym_noreturn] = ACTIONS(3652), - [anon_sym__Nonnull] = ACTIONS(3652), - [anon_sym_mutable] = ACTIONS(3652), - [anon_sym_constinit] = ACTIONS(3652), - [anon_sym_consteval] = ACTIONS(3652), - [anon_sym_alignas] = ACTIONS(3652), - [anon_sym__Alignas] = ACTIONS(3652), - [sym_primitive_type] = ACTIONS(3652), - [anon_sym_enum] = ACTIONS(3652), - [anon_sym_class] = ACTIONS(3652), - [anon_sym_struct] = ACTIONS(3652), - [anon_sym_union] = ACTIONS(3652), - [anon_sym_if] = ACTIONS(3652), - [anon_sym_else] = ACTIONS(3652), - [anon_sym_switch] = ACTIONS(3652), - [anon_sym_while] = ACTIONS(3652), - [anon_sym_do] = ACTIONS(3652), - [anon_sym_for] = ACTIONS(3652), - [anon_sym_return] = ACTIONS(3652), - [anon_sym_break] = ACTIONS(3652), - [anon_sym_continue] = ACTIONS(3652), - [anon_sym_goto] = ACTIONS(3652), - [anon_sym___try] = ACTIONS(3652), - [anon_sym___leave] = ACTIONS(3652), - [anon_sym_not] = ACTIONS(3652), - [anon_sym_compl] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3654), - [anon_sym_sizeof] = ACTIONS(3652), - [anon_sym___alignof__] = ACTIONS(3652), - [anon_sym___alignof] = ACTIONS(3652), - [anon_sym__alignof] = ACTIONS(3652), - [anon_sym_alignof] = ACTIONS(3652), - [anon_sym__Alignof] = ACTIONS(3652), - [anon_sym_offsetof] = ACTIONS(3652), - [anon_sym__Generic] = ACTIONS(3652), - [anon_sym_typename] = ACTIONS(3652), - [anon_sym_asm] = ACTIONS(3652), - [anon_sym___asm__] = ACTIONS(3652), - [anon_sym___asm] = ACTIONS(3652), - [sym_number_literal] = ACTIONS(3654), - [anon_sym_L_SQUOTE] = ACTIONS(3654), - [anon_sym_u_SQUOTE] = ACTIONS(3654), - [anon_sym_U_SQUOTE] = ACTIONS(3654), - [anon_sym_u8_SQUOTE] = ACTIONS(3654), - [anon_sym_SQUOTE] = ACTIONS(3654), - [anon_sym_L_DQUOTE] = ACTIONS(3654), - [anon_sym_u_DQUOTE] = ACTIONS(3654), - [anon_sym_U_DQUOTE] = ACTIONS(3654), - [anon_sym_u8_DQUOTE] = ACTIONS(3654), - [anon_sym_DQUOTE] = ACTIONS(3654), - [sym_true] = ACTIONS(3652), - [sym_false] = ACTIONS(3652), - [anon_sym_NULL] = ACTIONS(3652), - [anon_sym_nullptr] = ACTIONS(3652), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3652), - [anon_sym_decltype] = ACTIONS(3652), - [anon_sym_template] = ACTIONS(3652), - [anon_sym_try] = ACTIONS(3652), - [anon_sym_delete] = ACTIONS(3652), - [anon_sym_throw] = ACTIONS(3652), - [anon_sym_co_return] = ACTIONS(3652), - [anon_sym_co_yield] = ACTIONS(3652), - [anon_sym_R_DQUOTE] = ACTIONS(3654), - [anon_sym_LR_DQUOTE] = ACTIONS(3654), - [anon_sym_uR_DQUOTE] = ACTIONS(3654), - [anon_sym_UR_DQUOTE] = ACTIONS(3654), - [anon_sym_u8R_DQUOTE] = ACTIONS(3654), - [anon_sym_co_await] = ACTIONS(3652), - [anon_sym_new] = ACTIONS(3652), - [anon_sym_requires] = ACTIONS(3652), - [anon_sym_CARET_CARET] = ACTIONS(3654), - [anon_sym_LBRACK_COLON] = ACTIONS(3654), - [sym_this] = ACTIONS(3652), - }, - [STATE(1161)] = { - [sym_identifier] = ACTIONS(3692), - [anon_sym_LPAREN2] = ACTIONS(3694), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_TILDE] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3692), - [anon_sym_PLUS] = ACTIONS(3692), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3694), - [anon_sym_SEMI] = ACTIONS(3694), - [anon_sym___extension__] = ACTIONS(3692), - [anon_sym_typedef] = ACTIONS(3692), - [anon_sym_virtual] = ACTIONS(3692), - [anon_sym_extern] = ACTIONS(3692), - [anon_sym___attribute__] = ACTIONS(3692), - [anon_sym___attribute] = ACTIONS(3692), - [anon_sym_COLON_COLON] = ACTIONS(3694), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3694), - [anon_sym___declspec] = ACTIONS(3692), - [anon_sym_LBRACE] = ACTIONS(3694), - [anon_sym_signed] = ACTIONS(3692), - [anon_sym_unsigned] = ACTIONS(3692), - [anon_sym_long] = ACTIONS(3692), - [anon_sym_short] = ACTIONS(3692), - [anon_sym_LBRACK] = ACTIONS(3692), - [anon_sym_static] = ACTIONS(3692), - [anon_sym_register] = ACTIONS(3692), - [anon_sym_inline] = ACTIONS(3692), - [anon_sym___inline] = ACTIONS(3692), - [anon_sym___inline__] = ACTIONS(3692), - [anon_sym___forceinline] = ACTIONS(3692), - [anon_sym_thread_local] = ACTIONS(3692), - [anon_sym___thread] = ACTIONS(3692), - [anon_sym_const] = ACTIONS(3692), - [anon_sym_constexpr] = ACTIONS(3692), - [anon_sym_volatile] = ACTIONS(3692), - [anon_sym_restrict] = ACTIONS(3692), - [anon_sym___restrict__] = ACTIONS(3692), - [anon_sym__Atomic] = ACTIONS(3692), - [anon_sym__Noreturn] = ACTIONS(3692), - [anon_sym_noreturn] = ACTIONS(3692), - [anon_sym__Nonnull] = ACTIONS(3692), - [anon_sym_mutable] = ACTIONS(3692), - [anon_sym_constinit] = ACTIONS(3692), - [anon_sym_consteval] = ACTIONS(3692), - [anon_sym_alignas] = ACTIONS(3692), - [anon_sym__Alignas] = ACTIONS(3692), - [sym_primitive_type] = ACTIONS(3692), - [anon_sym_enum] = ACTIONS(3692), - [anon_sym_class] = ACTIONS(3692), - [anon_sym_struct] = ACTIONS(3692), - [anon_sym_union] = ACTIONS(3692), - [anon_sym_if] = ACTIONS(3692), - [anon_sym_else] = ACTIONS(3692), - [anon_sym_switch] = ACTIONS(3692), - [anon_sym_while] = ACTIONS(3692), - [anon_sym_do] = ACTIONS(3692), - [anon_sym_for] = ACTIONS(3692), - [anon_sym_return] = ACTIONS(3692), - [anon_sym_break] = ACTIONS(3692), - [anon_sym_continue] = ACTIONS(3692), - [anon_sym_goto] = ACTIONS(3692), - [anon_sym___try] = ACTIONS(3692), - [anon_sym___leave] = ACTIONS(3692), - [anon_sym_not] = ACTIONS(3692), - [anon_sym_compl] = ACTIONS(3692), - [anon_sym_DASH_DASH] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3694), - [anon_sym_sizeof] = ACTIONS(3692), - [anon_sym___alignof__] = ACTIONS(3692), - [anon_sym___alignof] = ACTIONS(3692), - [anon_sym__alignof] = ACTIONS(3692), - [anon_sym_alignof] = ACTIONS(3692), - [anon_sym__Alignof] = ACTIONS(3692), - [anon_sym_offsetof] = ACTIONS(3692), - [anon_sym__Generic] = ACTIONS(3692), - [anon_sym_typename] = ACTIONS(3692), - [anon_sym_asm] = ACTIONS(3692), - [anon_sym___asm__] = ACTIONS(3692), - [anon_sym___asm] = ACTIONS(3692), - [sym_number_literal] = ACTIONS(3694), - [anon_sym_L_SQUOTE] = ACTIONS(3694), - [anon_sym_u_SQUOTE] = ACTIONS(3694), - [anon_sym_U_SQUOTE] = ACTIONS(3694), - [anon_sym_u8_SQUOTE] = ACTIONS(3694), - [anon_sym_SQUOTE] = ACTIONS(3694), - [anon_sym_L_DQUOTE] = ACTIONS(3694), - [anon_sym_u_DQUOTE] = ACTIONS(3694), - [anon_sym_U_DQUOTE] = ACTIONS(3694), - [anon_sym_u8_DQUOTE] = ACTIONS(3694), - [anon_sym_DQUOTE] = ACTIONS(3694), - [sym_true] = ACTIONS(3692), - [sym_false] = ACTIONS(3692), - [anon_sym_NULL] = ACTIONS(3692), - [anon_sym_nullptr] = ACTIONS(3692), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3692), - [anon_sym_decltype] = ACTIONS(3692), - [anon_sym_template] = ACTIONS(3692), - [anon_sym_try] = ACTIONS(3692), - [anon_sym_delete] = ACTIONS(3692), - [anon_sym_throw] = ACTIONS(3692), - [anon_sym_co_return] = ACTIONS(3692), - [anon_sym_co_yield] = ACTIONS(3692), - [anon_sym_R_DQUOTE] = ACTIONS(3694), - [anon_sym_LR_DQUOTE] = ACTIONS(3694), - [anon_sym_uR_DQUOTE] = ACTIONS(3694), - [anon_sym_UR_DQUOTE] = ACTIONS(3694), - [anon_sym_u8R_DQUOTE] = ACTIONS(3694), - [anon_sym_co_await] = ACTIONS(3692), - [anon_sym_new] = ACTIONS(3692), - [anon_sym_requires] = ACTIONS(3692), - [anon_sym_CARET_CARET] = ACTIONS(3694), - [anon_sym_LBRACK_COLON] = ACTIONS(3694), - [sym_this] = ACTIONS(3692), - }, - [STATE(1162)] = { - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(5999), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(10257), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(5572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_RPAREN] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5253), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5253), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5253), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(5260), - [anon_sym_LT_LT] = ACTIONS(5253), - [anon_sym_GT_GT] = ACTIONS(5253), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(5260), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5260), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5260), - [anon_sym_not_eq] = ACTIONS(5260), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_typename] = ACTIONS(5102), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(1163)] = { - [sym_expression] = STATE(5236), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym__unary_left_fold] = STATE(10538), - [sym__unary_right_fold] = STATE(10540), - [sym__binary_fold] = STATE(10544), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), + [STATE(1165)] = { + [sym_expression] = STATE(5089), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), }, - [STATE(1164)] = { - [sym_expression] = STATE(5262), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym__unary_left_fold] = STATE(11315), - [sym__unary_right_fold] = STATE(11317), - [sym__binary_fold] = STATE(11318), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), + [STATE(1166)] = { + [sym_expression] = STATE(5343), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = ACTIONS(2996), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), }, - [STATE(1165)] = { - [sym_expression] = STATE(6275), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_initializer_list] = STATE(9078), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_default] = ACTIONS(5576), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1167)] = { + [sym_expression] = STATE(6798), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -213795,111 +222953,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(4926), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(5578), - [aux_sym_pure_virtual_clause_token1] = ACTIONS(5580), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), - [anon_sym_new] = ACTIONS(165), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1166)] = { - [sym_expression] = STATE(6289), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_initializer_list] = STATE(9109), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_default] = ACTIONS(5582), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1168)] = { + [sym_expression] = STATE(5441), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = ACTIONS(2996), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), + }, + [STATE(1169)] = { + [sym_expression] = STATE(6520), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -213907,107 +223189,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(5584), - [aux_sym_pure_virtual_clause_token1] = ACTIONS(5586), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1167)] = { - [sym_expression] = STATE(6671), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10492), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10492), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1170)] = { + [sym_expression] = STATE(6814), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1171)] = { + [sym_expression] = STATE(5018), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(5682), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(5684), + [anon_sym_constexpr] = ACTIONS(5684), + [anon_sym_mutable] = ACTIONS(5684), + [anon_sym_consteval] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [anon_sym_DASH_GT] = ACTIONS(5682), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_noexcept] = ACTIONS(5684), + [anon_sym_throw] = ACTIONS(5684), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1172)] = { + [sym_expression] = STATE(6819), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10569), + [sym_initializer_pair] = STATE(10569), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5588), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5734), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -214020,10 +223544,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -214040,8 +223565,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -214052,522 +223577,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1168)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_identifier_parameter_pack_expansion] = STATE(10386), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5655), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(5590), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5592), - [anon_sym_COMMA] = ACTIONS(5594), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5594), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1169)] = { - [sym_expression] = STATE(5226), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym__unary_left_fold] = STATE(11484), - [sym__unary_right_fold] = STATE(11496), - [sym__binary_fold] = STATE(11510), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1170)] = { - [sym_compound_statement] = STATE(10588), - [sym_expression] = STATE(5244), - [sym__string] = STATE(4474), - [sym_comma_expression] = STATE(10588), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym__assignment_expression_lhs] = STATE(11136), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1171)] = { - [sym_string_literal] = STATE(3798), - [sym_decltype_auto] = STATE(4767), - [sym_template_argument_list] = STATE(1955), - [sym_raw_string_literal] = STATE(3798), - [aux_sym_sized_type_specifier_repeat1] = STATE(4121), - [sym_identifier] = ACTIONS(5251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [anon_sym_RPAREN] = ACTIONS(5255), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_TILDE] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(5596), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym___extension__] = ACTIONS(5251), - [anon_sym_virtual] = ACTIONS(5251), - [anon_sym_extern] = ACTIONS(5251), - [anon_sym___attribute__] = ACTIONS(5251), - [anon_sym___attribute] = ACTIONS(5251), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5258), - [anon_sym___declspec] = ACTIONS(5251), - [anon_sym___based] = ACTIONS(5251), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(5274), - [anon_sym_unsigned] = ACTIONS(5274), - [anon_sym_long] = ACTIONS(5274), - [anon_sym_short] = ACTIONS(5274), - [anon_sym_LBRACK] = ACTIONS(5262), - [anon_sym_static] = ACTIONS(5251), - [anon_sym_EQ] = ACTIONS(5262), - [anon_sym_register] = ACTIONS(5251), - [anon_sym_inline] = ACTIONS(5251), - [anon_sym___inline] = ACTIONS(5251), - [anon_sym___inline__] = ACTIONS(5251), - [anon_sym___forceinline] = ACTIONS(5251), - [anon_sym_thread_local] = ACTIONS(5251), - [anon_sym___thread] = ACTIONS(5251), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5251), - [anon_sym_volatile] = ACTIONS(5251), - [anon_sym_restrict] = ACTIONS(5251), - [anon_sym___restrict__] = ACTIONS(5251), - [anon_sym__Atomic] = ACTIONS(5251), - [anon_sym__Noreturn] = ACTIONS(5251), - [anon_sym_noreturn] = ACTIONS(5251), - [anon_sym__Nonnull] = ACTIONS(5251), - [anon_sym_mutable] = ACTIONS(5251), - [anon_sym_constinit] = ACTIONS(5251), - [anon_sym_consteval] = ACTIONS(5251), - [anon_sym_alignas] = ACTIONS(5251), - [anon_sym__Alignas] = ACTIONS(5251), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5253), - [anon_sym_SLASH_EQ] = ACTIONS(5253), - [anon_sym_PERCENT_EQ] = ACTIONS(5253), - [anon_sym_PLUS_EQ] = ACTIONS(5253), - [anon_sym_DASH_EQ] = ACTIONS(5253), - [anon_sym_LT_LT_EQ] = ACTIONS(5253), - [anon_sym_GT_GT_EQ] = ACTIONS(5253), - [anon_sym_AMP_EQ] = ACTIONS(5253), - [anon_sym_CARET_EQ] = ACTIONS(5253), - [anon_sym_PIPE_EQ] = ACTIONS(5253), - [anon_sym_and_eq] = ACTIONS(5599), - [anon_sym_or_eq] = ACTIONS(5599), - [anon_sym_xor_eq] = ACTIONS(5599), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5260), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5260), - [anon_sym_not_eq] = ACTIONS(5260), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5260), - [anon_sym_L_DQUOTE] = ACTIONS(5601), - [anon_sym_u_DQUOTE] = ACTIONS(5601), - [anon_sym_U_DQUOTE] = ACTIONS(5601), - [anon_sym_u8_DQUOTE] = ACTIONS(5601), - [anon_sym_DQUOTE] = ACTIONS(5601), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5280), - [anon_sym_decltype] = ACTIONS(5282), - [anon_sym_template] = ACTIONS(5251), - [anon_sym_operator] = ACTIONS(5251), - [anon_sym_R_DQUOTE] = ACTIONS(5603), - [anon_sym_LR_DQUOTE] = ACTIONS(5603), - [anon_sym_uR_DQUOTE] = ACTIONS(5603), - [anon_sym_UR_DQUOTE] = ACTIONS(5603), - [anon_sym_u8R_DQUOTE] = ACTIONS(5603), - [anon_sym_DASH_GT_STAR] = ACTIONS(5253), - [anon_sym_LBRACK_COLON] = ACTIONS(5258), - }, - [STATE(1172)] = { - [sym_expression] = STATE(6654), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10956), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10956), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1173)] = { + [sym_expression] = STATE(6819), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10569), + [sym_initializer_pair] = STATE(10569), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5605), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5736), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -214580,10 +223661,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -214600,8 +223682,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -214612,298 +223694,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1173)] = { - [sym_expression] = STATE(5286), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym__unary_left_fold] = STATE(10607), - [sym__unary_right_fold] = STATE(10613), - [sym__binary_fold] = STATE(10617), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, [STATE(1174)] = { - [sym_expression] = STATE(6303), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_initializer_list] = STATE(9082), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_default] = ACTIONS(5607), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(5609), - [aux_sym_pure_virtual_clause_token1] = ACTIONS(5611), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_identifier] = ACTIONS(5589), + [anon_sym_LPAREN2] = ACTIONS(5591), + [anon_sym_BANG] = ACTIONS(5591), + [anon_sym_TILDE] = ACTIONS(5591), + [anon_sym_DASH] = ACTIONS(5589), + [anon_sym_PLUS] = ACTIONS(5589), + [anon_sym_STAR] = ACTIONS(5591), + [anon_sym_AMP] = ACTIONS(5591), + [anon_sym_SEMI] = ACTIONS(5591), + [anon_sym___extension__] = ACTIONS(5589), + [anon_sym_virtual] = ACTIONS(5589), + [anon_sym_extern] = ACTIONS(5589), + [anon_sym___attribute__] = ACTIONS(5589), + [anon_sym___attribute] = ACTIONS(5589), + [anon_sym_using] = ACTIONS(5589), + [anon_sym_COLON_COLON] = ACTIONS(5591), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5591), + [anon_sym___declspec] = ACTIONS(5589), + [anon_sym_LBRACE] = ACTIONS(5591), + [anon_sym_signed] = ACTIONS(5589), + [anon_sym_unsigned] = ACTIONS(5589), + [anon_sym_long] = ACTIONS(5589), + [anon_sym_short] = ACTIONS(5589), + [anon_sym_LBRACK] = ACTIONS(5589), + [anon_sym_static] = ACTIONS(5589), + [anon_sym_register] = ACTIONS(5589), + [anon_sym_inline] = ACTIONS(5589), + [anon_sym___inline] = ACTIONS(5589), + [anon_sym___inline__] = ACTIONS(5589), + [anon_sym___forceinline] = ACTIONS(5589), + [anon_sym_thread_local] = ACTIONS(5589), + [anon_sym___thread] = ACTIONS(5589), + [anon_sym_const] = ACTIONS(5589), + [anon_sym_constexpr] = ACTIONS(5589), + [anon_sym_volatile] = ACTIONS(5589), + [anon_sym_restrict] = ACTIONS(5589), + [anon_sym___restrict__] = ACTIONS(5589), + [anon_sym__Atomic] = ACTIONS(5589), + [anon_sym__Noreturn] = ACTIONS(5589), + [anon_sym_noreturn] = ACTIONS(5589), + [anon_sym__Nonnull] = ACTIONS(5589), + [anon_sym_mutable] = ACTIONS(5589), + [anon_sym_constinit] = ACTIONS(5589), + [anon_sym_consteval] = ACTIONS(5589), + [anon_sym_alignas] = ACTIONS(5589), + [anon_sym__Alignas] = ACTIONS(5589), + [sym_primitive_type] = ACTIONS(5589), + [anon_sym_enum] = ACTIONS(5589), + [anon_sym_class] = ACTIONS(5589), + [anon_sym_struct] = ACTIONS(5589), + [anon_sym_union] = ACTIONS(5589), + [anon_sym_if] = ACTIONS(5589), + [anon_sym_switch] = ACTIONS(5589), + [anon_sym_case] = ACTIONS(5589), + [anon_sym_default] = ACTIONS(5589), + [anon_sym_while] = ACTIONS(5589), + [anon_sym_do] = ACTIONS(5589), + [anon_sym_for] = ACTIONS(5589), + [anon_sym_return] = ACTIONS(5589), + [anon_sym_break] = ACTIONS(5589), + [anon_sym_continue] = ACTIONS(5589), + [anon_sym_goto] = ACTIONS(5589), + [anon_sym___try] = ACTIONS(5589), + [anon_sym___leave] = ACTIONS(5589), + [anon_sym_not] = ACTIONS(5589), + [anon_sym_compl] = ACTIONS(5589), + [anon_sym_DASH_DASH] = ACTIONS(5591), + [anon_sym_PLUS_PLUS] = ACTIONS(5591), + [anon_sym_sizeof] = ACTIONS(5589), + [anon_sym___alignof__] = ACTIONS(5589), + [anon_sym___alignof] = ACTIONS(5589), + [anon_sym__alignof] = ACTIONS(5589), + [anon_sym_alignof] = ACTIONS(5589), + [anon_sym__Alignof] = ACTIONS(5589), + [anon_sym_offsetof] = ACTIONS(5589), + [anon_sym__Generic] = ACTIONS(5589), + [anon_sym_typename] = ACTIONS(5589), + [anon_sym_asm] = ACTIONS(5589), + [anon_sym___asm__] = ACTIONS(5589), + [anon_sym___asm] = ACTIONS(5589), + [sym_number_literal] = ACTIONS(5591), + [anon_sym_L_SQUOTE] = ACTIONS(5591), + [anon_sym_u_SQUOTE] = ACTIONS(5591), + [anon_sym_U_SQUOTE] = ACTIONS(5591), + [anon_sym_u8_SQUOTE] = ACTIONS(5591), + [anon_sym_SQUOTE] = ACTIONS(5591), + [anon_sym_L_DQUOTE] = ACTIONS(5591), + [anon_sym_u_DQUOTE] = ACTIONS(5591), + [anon_sym_U_DQUOTE] = ACTIONS(5591), + [anon_sym_u8_DQUOTE] = ACTIONS(5591), + [anon_sym_DQUOTE] = ACTIONS(5591), + [sym_true] = ACTIONS(5589), + [sym_false] = ACTIONS(5589), + [anon_sym_NULL] = ACTIONS(5589), + [anon_sym_nullptr] = ACTIONS(5589), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5589), + [anon_sym_decltype] = ACTIONS(5589), + [anon_sym_template] = ACTIONS(5589), + [anon_sym_try] = ACTIONS(5589), + [anon_sym_delete] = ACTIONS(5589), + [anon_sym_throw] = ACTIONS(5589), + [anon_sym_co_return] = ACTIONS(5589), + [anon_sym_co_yield] = ACTIONS(5589), + [anon_sym_R_DQUOTE] = ACTIONS(5591), + [anon_sym_LR_DQUOTE] = ACTIONS(5591), + [anon_sym_uR_DQUOTE] = ACTIONS(5591), + [anon_sym_UR_DQUOTE] = ACTIONS(5591), + [anon_sym_u8R_DQUOTE] = ACTIONS(5591), + [anon_sym_co_await] = ACTIONS(5589), + [anon_sym_new] = ACTIONS(5589), + [anon_sym_requires] = ACTIONS(5589), + [anon_sym_CARET_CARET] = ACTIONS(5591), + [anon_sym_LBRACK_COLON] = ACTIONS(5591), + [sym_this] = ACTIONS(5589), }, [STATE(1175)] = { - [sym_compound_statement] = STATE(9753), - [sym_expression] = STATE(6455), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9753), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(5613), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym_expression_statement] = STATE(4211), + [sym_expression] = STATE(6891), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11087), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_type_requirement] = STATE(1177), + [sym_compound_requirement] = STATE(1177), + [sym__requirement] = STATE(1177), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_requirement_seq_repeat1] = STATE(1177), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5742), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -214916,7 +223896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(5744), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -214936,8 +223916,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -214948,298 +223928,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, [STATE(1176)] = { - [sym_expression] = STATE(5172), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym__unary_left_fold] = STATE(11307), - [sym__unary_right_fold] = STATE(11319), - [sym__binary_fold] = STATE(11322), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1177)] = { - [sym_expression] = STATE(5272), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym__unary_left_fold] = STATE(10543), - [sym__unary_right_fold] = STATE(10552), - [sym__binary_fold] = STATE(10580), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1178)] = { - [sym_compound_statement] = STATE(9593), - [sym_expression] = STATE(6551), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9593), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(5615), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym_expression_statement] = STATE(4211), + [sym_expression] = STATE(6891), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11087), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_type_requirement] = STATE(1208), + [sym_compound_requirement] = STATE(1208), + [sym__requirement] = STATE(1208), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_requirement_seq_repeat1] = STATE(1208), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5746), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -215252,7 +224013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(5744), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -215272,8 +224033,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -215284,74 +224045,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1179)] = { - [sym_compound_statement] = STATE(9961), - [sym_expression] = STATE(6487), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9961), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(5617), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1177)] = { + [sym_expression_statement] = STATE(4211), + [sym_expression] = STATE(6891), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11087), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_type_requirement] = STATE(1208), + [sym_compound_requirement] = STATE(1208), + [sym__requirement] = STATE(1208), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_requirement_seq_repeat1] = STATE(1208), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5748), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -215364,7 +224130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(5744), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -215384,8 +224150,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -215396,74 +224162,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1180)] = { - [sym_compound_statement] = STATE(9939), - [sym_expression] = STATE(6567), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9939), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(5619), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1178)] = { + [sym_expression] = STATE(6819), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10569), + [sym_initializer_pair] = STATE(10569), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5750), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -215476,10 +224246,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -215496,8 +224267,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -215508,522 +224279,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1181)] = { - [sym_expression] = STATE(5250), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym__unary_left_fold] = STATE(10597), - [sym__unary_right_fold] = STATE(10627), - [sym__binary_fold] = STATE(10638), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1182)] = { - [sym_expression] = STATE(5269), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym__unary_left_fold] = STATE(10646), - [sym__unary_right_fold] = STATE(10648), - [sym__binary_fold] = STATE(10649), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1183)] = { - [sym_expression] = STATE(5277), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym__unary_left_fold] = STATE(10841), - [sym__unary_right_fold] = STATE(10845), - [sym__binary_fold] = STATE(10846), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1184)] = { - [sym_expression] = STATE(5352), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym__unary_left_fold] = STATE(10925), - [sym__unary_right_fold] = STATE(10775), - [sym__binary_fold] = STATE(10807), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1185)] = { - [sym_expression] = STATE(6692), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10952), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10952), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1179)] = { + [sym_expression_statement] = STATE(4211), + [sym_expression] = STATE(6891), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11087), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_type_requirement] = STATE(1181), + [sym_compound_requirement] = STATE(1181), + [sym__requirement] = STATE(1181), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_requirement_seq_repeat1] = STATE(1181), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5621), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5752), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -216036,7 +224364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(5744), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -216056,8 +224384,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -216068,74 +224396,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1186)] = { - [sym_compound_statement] = STATE(9861), - [sym_expression] = STATE(6547), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9861), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(5623), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1180)] = { + [sym_identifier] = ACTIONS(5593), + [anon_sym_LPAREN2] = ACTIONS(5595), + [anon_sym_BANG] = ACTIONS(5595), + [anon_sym_TILDE] = ACTIONS(5595), + [anon_sym_DASH] = ACTIONS(5593), + [anon_sym_PLUS] = ACTIONS(5593), + [anon_sym_STAR] = ACTIONS(5595), + [anon_sym_AMP] = ACTIONS(5595), + [anon_sym_SEMI] = ACTIONS(5595), + [anon_sym___extension__] = ACTIONS(5593), + [anon_sym_virtual] = ACTIONS(5593), + [anon_sym_extern] = ACTIONS(5593), + [anon_sym___attribute__] = ACTIONS(5593), + [anon_sym___attribute] = ACTIONS(5593), + [anon_sym_using] = ACTIONS(5593), + [anon_sym_COLON_COLON] = ACTIONS(5595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5595), + [anon_sym___declspec] = ACTIONS(5593), + [anon_sym_LBRACE] = ACTIONS(5595), + [anon_sym_signed] = ACTIONS(5593), + [anon_sym_unsigned] = ACTIONS(5593), + [anon_sym_long] = ACTIONS(5593), + [anon_sym_short] = ACTIONS(5593), + [anon_sym_LBRACK] = ACTIONS(5593), + [anon_sym_static] = ACTIONS(5593), + [anon_sym_register] = ACTIONS(5593), + [anon_sym_inline] = ACTIONS(5593), + [anon_sym___inline] = ACTIONS(5593), + [anon_sym___inline__] = ACTIONS(5593), + [anon_sym___forceinline] = ACTIONS(5593), + [anon_sym_thread_local] = ACTIONS(5593), + [anon_sym___thread] = ACTIONS(5593), + [anon_sym_const] = ACTIONS(5593), + [anon_sym_constexpr] = ACTIONS(5593), + [anon_sym_volatile] = ACTIONS(5593), + [anon_sym_restrict] = ACTIONS(5593), + [anon_sym___restrict__] = ACTIONS(5593), + [anon_sym__Atomic] = ACTIONS(5593), + [anon_sym__Noreturn] = ACTIONS(5593), + [anon_sym_noreturn] = ACTIONS(5593), + [anon_sym__Nonnull] = ACTIONS(5593), + [anon_sym_mutable] = ACTIONS(5593), + [anon_sym_constinit] = ACTIONS(5593), + [anon_sym_consteval] = ACTIONS(5593), + [anon_sym_alignas] = ACTIONS(5593), + [anon_sym__Alignas] = ACTIONS(5593), + [sym_primitive_type] = ACTIONS(5593), + [anon_sym_enum] = ACTIONS(5593), + [anon_sym_class] = ACTIONS(5593), + [anon_sym_struct] = ACTIONS(5593), + [anon_sym_union] = ACTIONS(5593), + [anon_sym_if] = ACTIONS(5593), + [anon_sym_switch] = ACTIONS(5593), + [anon_sym_case] = ACTIONS(5593), + [anon_sym_default] = ACTIONS(5593), + [anon_sym_while] = ACTIONS(5593), + [anon_sym_do] = ACTIONS(5593), + [anon_sym_for] = ACTIONS(5593), + [anon_sym_return] = ACTIONS(5593), + [anon_sym_break] = ACTIONS(5593), + [anon_sym_continue] = ACTIONS(5593), + [anon_sym_goto] = ACTIONS(5593), + [anon_sym___try] = ACTIONS(5593), + [anon_sym___leave] = ACTIONS(5593), + [anon_sym_not] = ACTIONS(5593), + [anon_sym_compl] = ACTIONS(5593), + [anon_sym_DASH_DASH] = ACTIONS(5595), + [anon_sym_PLUS_PLUS] = ACTIONS(5595), + [anon_sym_sizeof] = ACTIONS(5593), + [anon_sym___alignof__] = ACTIONS(5593), + [anon_sym___alignof] = ACTIONS(5593), + [anon_sym__alignof] = ACTIONS(5593), + [anon_sym_alignof] = ACTIONS(5593), + [anon_sym__Alignof] = ACTIONS(5593), + [anon_sym_offsetof] = ACTIONS(5593), + [anon_sym__Generic] = ACTIONS(5593), + [anon_sym_typename] = ACTIONS(5593), + [anon_sym_asm] = ACTIONS(5593), + [anon_sym___asm__] = ACTIONS(5593), + [anon_sym___asm] = ACTIONS(5593), + [sym_number_literal] = ACTIONS(5595), + [anon_sym_L_SQUOTE] = ACTIONS(5595), + [anon_sym_u_SQUOTE] = ACTIONS(5595), + [anon_sym_U_SQUOTE] = ACTIONS(5595), + [anon_sym_u8_SQUOTE] = ACTIONS(5595), + [anon_sym_SQUOTE] = ACTIONS(5595), + [anon_sym_L_DQUOTE] = ACTIONS(5595), + [anon_sym_u_DQUOTE] = ACTIONS(5595), + [anon_sym_U_DQUOTE] = ACTIONS(5595), + [anon_sym_u8_DQUOTE] = ACTIONS(5595), + [anon_sym_DQUOTE] = ACTIONS(5595), + [sym_true] = ACTIONS(5593), + [sym_false] = ACTIONS(5593), + [anon_sym_NULL] = ACTIONS(5593), + [anon_sym_nullptr] = ACTIONS(5593), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5593), + [anon_sym_decltype] = ACTIONS(5593), + [anon_sym_template] = ACTIONS(5593), + [anon_sym_try] = ACTIONS(5593), + [anon_sym_delete] = ACTIONS(5593), + [anon_sym_throw] = ACTIONS(5593), + [anon_sym_co_return] = ACTIONS(5593), + [anon_sym_co_yield] = ACTIONS(5593), + [anon_sym_R_DQUOTE] = ACTIONS(5595), + [anon_sym_LR_DQUOTE] = ACTIONS(5595), + [anon_sym_uR_DQUOTE] = ACTIONS(5595), + [anon_sym_UR_DQUOTE] = ACTIONS(5595), + [anon_sym_u8R_DQUOTE] = ACTIONS(5595), + [anon_sym_co_await] = ACTIONS(5593), + [anon_sym_new] = ACTIONS(5593), + [anon_sym_requires] = ACTIONS(5593), + [anon_sym_CARET_CARET] = ACTIONS(5595), + [anon_sym_LBRACK_COLON] = ACTIONS(5595), + [sym_this] = ACTIONS(5593), + }, + [STATE(1181)] = { + [sym_expression_statement] = STATE(4211), + [sym_expression] = STATE(6891), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11087), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_type_requirement] = STATE(1208), + [sym_compound_requirement] = STATE(1208), + [sym__requirement] = STATE(1208), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_requirement_seq_repeat1] = STATE(1208), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5754), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -216148,7 +224598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(5744), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -216168,8 +224618,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -216180,74 +224630,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1187)] = { - [sym_expression] = STATE(6811), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11377), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(11377), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1182)] = { + [sym_expression_statement] = STATE(4211), + [sym_expression] = STATE(6891), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11087), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_type_requirement] = STATE(1187), + [sym_compound_requirement] = STATE(1187), + [sym__requirement] = STATE(1187), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_requirement_seq_repeat1] = STATE(1187), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5625), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5756), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -216260,7 +224715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(5744), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -216280,8 +224735,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -216292,74 +224747,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1188)] = { - [sym_compound_statement] = STATE(9872), - [sym_expression] = STATE(6559), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9872), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(5627), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1183)] = { + [sym_expression_statement] = STATE(4211), + [sym_expression] = STATE(6891), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11087), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_type_requirement] = STATE(1185), + [sym_compound_requirement] = STATE(1185), + [sym__requirement] = STATE(1185), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_requirement_seq_repeat1] = STATE(1185), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5758), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -216372,7 +224832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(5744), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -216392,8 +224852,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -216404,74 +224864,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1189)] = { - [sym_expression] = STATE(6710), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10696), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10696), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1184)] = { + [sym_expression] = STATE(6819), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10569), + [sym_initializer_pair] = STATE(10569), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5629), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5760), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -216484,10 +224948,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -216504,8 +224969,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -216516,74 +224981,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1190)] = { - [sym_compound_statement] = STATE(9797), - [sym_expression] = STATE(6510), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9797), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(5631), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1185)] = { + [sym_expression_statement] = STATE(4211), + [sym_expression] = STATE(6891), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11087), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_type_requirement] = STATE(1208), + [sym_compound_requirement] = STATE(1208), + [sym__requirement] = STATE(1208), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_requirement_seq_repeat1] = STATE(1208), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5762), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -216596,7 +225066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(5744), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -216616,8 +225086,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -216628,74 +225098,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1191)] = { - [sym_compound_statement] = STATE(9601), - [sym_expression] = STATE(6566), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9601), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(5633), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1186)] = { + [sym_expression] = STATE(6819), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10569), + [sym_initializer_pair] = STATE(10569), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5764), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -216708,10 +225182,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -216728,8 +225203,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -216740,74 +225215,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1192)] = { - [sym_compound_statement] = STATE(9846), - [sym_expression] = STATE(6471), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(9846), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(5635), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1187)] = { + [sym_expression_statement] = STATE(4211), + [sym_expression] = STATE(6891), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11087), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_type_requirement] = STATE(1208), + [sym_compound_requirement] = STATE(1208), + [sym__requirement] = STATE(1208), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_requirement_seq_repeat1] = STATE(1208), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5766), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -216820,7 +225300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(5744), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -216840,8 +225320,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -216852,185 +225332,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1193)] = { - [sym_expression] = STATE(5201), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym__unary_left_fold] = STATE(10962), - [sym__unary_right_fold] = STATE(11139), - [sym__binary_fold] = STATE(11401), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1194)] = { - [sym_expression] = STATE(6916), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10712), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5637), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1188)] = { + [sym_expression] = STATE(6819), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10569), + [sym_initializer_pair] = STATE(10569), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5768), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -217043,10 +225416,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -217063,8 +225437,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -217075,73 +225449,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1195)] = { - [sym_expression] = STATE(6916), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10712), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1189)] = { + [sym_expression] = STATE(6819), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10569), + [sym_initializer_pair] = STATE(10569), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5770), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -217154,10 +225533,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -217174,8 +225554,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -217186,73 +225566,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1196)] = { - [sym_expression] = STATE(6916), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10712), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1190)] = { + [sym_expression_statement] = STATE(4211), + [sym_expression] = STATE(6891), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11087), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_type_requirement] = STATE(1206), + [sym_compound_requirement] = STATE(1206), + [sym__requirement] = STATE(1206), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_requirement_seq_repeat1] = STATE(1206), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5772), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -217265,7 +225651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(5744), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -217285,8 +225671,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -217297,73 +225683,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1197)] = { - [sym_expression] = STATE(6916), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10712), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5646), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1191)] = { + [sym_expression] = STATE(6819), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10569), + [sym_initializer_pair] = STATE(10569), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5774), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -217376,10 +225767,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -217396,8 +225788,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -217408,73 +225800,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1198)] = { - [sym_expression] = STATE(6916), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10712), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5649), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1192)] = { + [sym_expression_statement] = STATE(4211), + [sym_expression] = STATE(6891), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11087), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_type_requirement] = STATE(1176), + [sym_compound_requirement] = STATE(1176), + [sym__requirement] = STATE(1176), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_requirement_seq_repeat1] = STATE(1176), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5776), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -217487,7 +225885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(5744), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -217507,8 +225905,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -217519,73 +225917,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1199)] = { - [sym_expression] = STATE(6916), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10712), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5652), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1193)] = { + [sym_expression_statement] = STATE(4211), + [sym_expression] = STATE(6891), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11087), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_type_requirement] = STATE(1194), + [sym_compound_requirement] = STATE(1194), + [sym__requirement] = STATE(1194), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_requirement_seq_repeat1] = STATE(1194), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5778), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -217598,7 +226002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(5744), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -217618,8 +226022,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -217630,73 +226034,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1200)] = { - [sym_expression] = STATE(6916), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10712), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5655), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1194)] = { + [sym_expression_statement] = STATE(4211), + [sym_expression] = STATE(6891), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11087), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_type_requirement] = STATE(1208), + [sym_compound_requirement] = STATE(1208), + [sym__requirement] = STATE(1208), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_requirement_seq_repeat1] = STATE(1208), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5780), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -217709,7 +226119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(5744), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -217729,8 +226139,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -217741,73 +226151,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1201)] = { - [sym_expression] = STATE(6916), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10712), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5658), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1195)] = { + [sym_expression] = STATE(6819), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10569), + [sym_initializer_pair] = STATE(10569), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5782), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -217820,10 +226235,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -217840,8 +226256,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -217852,184 +226268,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1202)] = { - [sym_string_literal] = STATE(4004), - [sym_decltype_auto] = STATE(4767), - [sym_template_argument_list] = STATE(2361), - [sym_raw_string_literal] = STATE(4004), - [aux_sym_sized_type_specifier_repeat1] = STATE(4121), - [sym_identifier] = ACTIONS(5251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [anon_sym_RPAREN] = ACTIONS(5255), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_TILDE] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(5265), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym___extension__] = ACTIONS(5251), - [anon_sym_virtual] = ACTIONS(5251), - [anon_sym_extern] = ACTIONS(5251), - [anon_sym___attribute__] = ACTIONS(5251), - [anon_sym___attribute] = ACTIONS(5251), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5258), - [anon_sym___declspec] = ACTIONS(5251), - [anon_sym___based] = ACTIONS(5251), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(5274), - [anon_sym_unsigned] = ACTIONS(5274), - [anon_sym_long] = ACTIONS(5274), - [anon_sym_short] = ACTIONS(5274), - [anon_sym_LBRACK] = ACTIONS(5262), - [anon_sym_static] = ACTIONS(5251), - [anon_sym_EQ] = ACTIONS(5251), - [anon_sym_register] = ACTIONS(5251), - [anon_sym_inline] = ACTIONS(5251), - [anon_sym___inline] = ACTIONS(5251), - [anon_sym___inline__] = ACTIONS(5251), - [anon_sym___forceinline] = ACTIONS(5251), - [anon_sym_thread_local] = ACTIONS(5251), - [anon_sym___thread] = ACTIONS(5251), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5251), - [anon_sym_volatile] = ACTIONS(5251), - [anon_sym_restrict] = ACTIONS(5251), - [anon_sym___restrict__] = ACTIONS(5251), - [anon_sym__Atomic] = ACTIONS(5251), - [anon_sym__Noreturn] = ACTIONS(5251), - [anon_sym_noreturn] = ACTIONS(5251), - [anon_sym__Nonnull] = ACTIONS(5251), - [anon_sym_mutable] = ACTIONS(5251), - [anon_sym_constinit] = ACTIONS(5251), - [anon_sym_consteval] = ACTIONS(5251), - [anon_sym_alignas] = ACTIONS(5251), - [anon_sym__Alignas] = ACTIONS(5251), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5276), - [anon_sym_or_eq] = ACTIONS(5276), - [anon_sym_xor_eq] = ACTIONS(5276), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5260), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5260), - [anon_sym_not_eq] = ACTIONS(5260), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5280), - [anon_sym_decltype] = ACTIONS(5282), - [anon_sym_template] = ACTIONS(5251), - [anon_sym_operator] = ACTIONS(5251), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_LBRACK_COLON] = ACTIONS(5258), - }, - [STATE(1203)] = { - [sym_compound_statement] = STATE(10280), - [sym_expression] = STATE(6721), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10280), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1196)] = { + [sym_expression_statement] = STATE(4211), + [sym_expression] = STATE(6891), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11087), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_type_requirement] = STATE(1208), + [sym_compound_requirement] = STATE(1208), + [sym__requirement] = STATE(1208), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_requirement_seq_repeat1] = STATE(1208), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5784), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -218042,7 +226353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(5744), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -218062,8 +226373,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -218074,73 +226385,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1204)] = { - [sym_expression] = STATE(6916), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10712), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5661), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1197)] = { + [sym_expression] = STATE(6819), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10569), + [sym_initializer_pair] = STATE(10569), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5786), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -218153,10 +226469,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -218173,8 +226490,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -218185,295 +226502,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1205)] = { - [sym_expression] = STATE(6574), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_initializer_list] = STATE(9989), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5664), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1206)] = { - [sym_expression] = STATE(6520), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_initializer_list] = STATE(9771), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5666), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(1198)] = { + [sym_else_clause] = STATE(1258), + [sym_identifier] = ACTIONS(3408), + [anon_sym_LPAREN2] = ACTIONS(3410), + [anon_sym_BANG] = ACTIONS(3410), + [anon_sym_TILDE] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(3408), + [anon_sym_PLUS] = ACTIONS(3408), + [anon_sym_STAR] = ACTIONS(3410), + [anon_sym_AMP] = ACTIONS(3410), + [anon_sym_SEMI] = ACTIONS(3410), + [anon_sym___extension__] = ACTIONS(3408), + [anon_sym_typedef] = ACTIONS(3408), + [anon_sym_virtual] = ACTIONS(3408), + [anon_sym_extern] = ACTIONS(3408), + [anon_sym___attribute__] = ACTIONS(3408), + [anon_sym___attribute] = ACTIONS(3408), + [anon_sym_COLON_COLON] = ACTIONS(3410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3410), + [anon_sym___declspec] = ACTIONS(3408), + [anon_sym_LBRACE] = ACTIONS(3410), + [anon_sym_signed] = ACTIONS(3408), + [anon_sym_unsigned] = ACTIONS(3408), + [anon_sym_long] = ACTIONS(3408), + [anon_sym_short] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3408), + [anon_sym_static] = ACTIONS(3408), + [anon_sym_register] = ACTIONS(3408), + [anon_sym_inline] = ACTIONS(3408), + [anon_sym___inline] = ACTIONS(3408), + [anon_sym___inline__] = ACTIONS(3408), + [anon_sym___forceinline] = ACTIONS(3408), + [anon_sym_thread_local] = ACTIONS(3408), + [anon_sym___thread] = ACTIONS(3408), + [anon_sym_const] = ACTIONS(3408), + [anon_sym_constexpr] = ACTIONS(3408), + [anon_sym_volatile] = ACTIONS(3408), + [anon_sym_restrict] = ACTIONS(3408), + [anon_sym___restrict__] = ACTIONS(3408), + [anon_sym__Atomic] = ACTIONS(3408), + [anon_sym__Noreturn] = ACTIONS(3408), + [anon_sym_noreturn] = ACTIONS(3408), + [anon_sym__Nonnull] = ACTIONS(3408), + [anon_sym_mutable] = ACTIONS(3408), + [anon_sym_constinit] = ACTIONS(3408), + [anon_sym_consteval] = ACTIONS(3408), + [anon_sym_alignas] = ACTIONS(3408), + [anon_sym__Alignas] = ACTIONS(3408), + [sym_primitive_type] = ACTIONS(3408), + [anon_sym_enum] = ACTIONS(3408), + [anon_sym_class] = ACTIONS(3408), + [anon_sym_struct] = ACTIONS(3408), + [anon_sym_union] = ACTIONS(3408), + [anon_sym_if] = ACTIONS(3408), + [anon_sym_else] = ACTIONS(5788), + [anon_sym_switch] = ACTIONS(3408), + [anon_sym_while] = ACTIONS(3408), + [anon_sym_do] = ACTIONS(3408), + [anon_sym_for] = ACTIONS(3408), + [anon_sym_return] = ACTIONS(3408), + [anon_sym_break] = ACTIONS(3408), + [anon_sym_continue] = ACTIONS(3408), + [anon_sym_goto] = ACTIONS(3408), + [anon_sym___try] = ACTIONS(3408), + [anon_sym___leave] = ACTIONS(3408), + [anon_sym_not] = ACTIONS(3408), + [anon_sym_compl] = ACTIONS(3408), + [anon_sym_DASH_DASH] = ACTIONS(3410), + [anon_sym_PLUS_PLUS] = ACTIONS(3410), + [anon_sym_sizeof] = ACTIONS(3408), + [anon_sym___alignof__] = ACTIONS(3408), + [anon_sym___alignof] = ACTIONS(3408), + [anon_sym__alignof] = ACTIONS(3408), + [anon_sym_alignof] = ACTIONS(3408), + [anon_sym__Alignof] = ACTIONS(3408), + [anon_sym_offsetof] = ACTIONS(3408), + [anon_sym__Generic] = ACTIONS(3408), + [anon_sym_typename] = ACTIONS(3408), + [anon_sym_asm] = ACTIONS(3408), + [anon_sym___asm__] = ACTIONS(3408), + [anon_sym___asm] = ACTIONS(3408), + [sym_number_literal] = ACTIONS(3410), + [anon_sym_L_SQUOTE] = ACTIONS(3410), + [anon_sym_u_SQUOTE] = ACTIONS(3410), + [anon_sym_U_SQUOTE] = ACTIONS(3410), + [anon_sym_u8_SQUOTE] = ACTIONS(3410), + [anon_sym_SQUOTE] = ACTIONS(3410), + [anon_sym_L_DQUOTE] = ACTIONS(3410), + [anon_sym_u_DQUOTE] = ACTIONS(3410), + [anon_sym_U_DQUOTE] = ACTIONS(3410), + [anon_sym_u8_DQUOTE] = ACTIONS(3410), + [anon_sym_DQUOTE] = ACTIONS(3410), + [sym_true] = ACTIONS(3408), + [sym_false] = ACTIONS(3408), + [anon_sym_NULL] = ACTIONS(3408), + [anon_sym_nullptr] = ACTIONS(3408), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3408), + [anon_sym_decltype] = ACTIONS(3408), + [anon_sym_template] = ACTIONS(3408), + [anon_sym_try] = ACTIONS(3408), + [anon_sym_delete] = ACTIONS(3408), + [anon_sym_throw] = ACTIONS(3408), + [anon_sym_co_return] = ACTIONS(3408), + [anon_sym_co_yield] = ACTIONS(3408), + [anon_sym_R_DQUOTE] = ACTIONS(3410), + [anon_sym_LR_DQUOTE] = ACTIONS(3410), + [anon_sym_uR_DQUOTE] = ACTIONS(3410), + [anon_sym_UR_DQUOTE] = ACTIONS(3410), + [anon_sym_u8R_DQUOTE] = ACTIONS(3410), + [anon_sym_co_await] = ACTIONS(3408), + [anon_sym_new] = ACTIONS(3408), + [anon_sym_requires] = ACTIONS(3408), + [anon_sym_CARET_CARET] = ACTIONS(3410), + [anon_sym_LBRACK_COLON] = ACTIONS(3410), + [sym_this] = ACTIONS(3408), }, - [STATE(1207)] = { - [sym_expression] = STATE(6916), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10712), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5668), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1199)] = { + [sym_expression_statement] = STATE(4211), + [sym_expression] = STATE(6891), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11087), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_type_requirement] = STATE(1201), + [sym_compound_requirement] = STATE(1201), + [sym__requirement] = STATE(1201), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_requirement_seq_repeat1] = STATE(1201), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5790), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -218486,7 +226704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(5744), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -218506,8 +226724,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -218518,184 +226736,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1208)] = { - [sym_expression] = STATE(6462), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_initializer_list] = STATE(9731), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5671), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(1200)] = { + [sym_identifier] = ACTIONS(3362), + [anon_sym_LPAREN2] = ACTIONS(3364), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_STAR] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym___extension__] = ACTIONS(3362), + [anon_sym_typedef] = ACTIONS(3362), + [anon_sym_virtual] = ACTIONS(3362), + [anon_sym_extern] = ACTIONS(3362), + [anon_sym___attribute__] = ACTIONS(3362), + [anon_sym___attribute] = ACTIONS(3362), + [anon_sym_COLON_COLON] = ACTIONS(3364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), + [anon_sym___declspec] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_signed] = ACTIONS(3362), + [anon_sym_unsigned] = ACTIONS(3362), + [anon_sym_long] = ACTIONS(3362), + [anon_sym_short] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_static] = ACTIONS(3362), + [anon_sym_register] = ACTIONS(3362), + [anon_sym_inline] = ACTIONS(3362), + [anon_sym___inline] = ACTIONS(3362), + [anon_sym___inline__] = ACTIONS(3362), + [anon_sym___forceinline] = ACTIONS(3362), + [anon_sym_thread_local] = ACTIONS(3362), + [anon_sym___thread] = ACTIONS(3362), + [anon_sym_const] = ACTIONS(3362), + [anon_sym_constexpr] = ACTIONS(3362), + [anon_sym_volatile] = ACTIONS(3362), + [anon_sym_restrict] = ACTIONS(3362), + [anon_sym___restrict__] = ACTIONS(3362), + [anon_sym__Atomic] = ACTIONS(3362), + [anon_sym__Noreturn] = ACTIONS(3362), + [anon_sym_noreturn] = ACTIONS(3362), + [anon_sym__Nonnull] = ACTIONS(3362), + [anon_sym_mutable] = ACTIONS(3362), + [anon_sym_constinit] = ACTIONS(3362), + [anon_sym_consteval] = ACTIONS(3362), + [anon_sym_alignas] = ACTIONS(3362), + [anon_sym__Alignas] = ACTIONS(3362), + [sym_primitive_type] = ACTIONS(3362), + [anon_sym_enum] = ACTIONS(3362), + [anon_sym_class] = ACTIONS(3362), + [anon_sym_struct] = ACTIONS(3362), + [anon_sym_union] = ACTIONS(3362), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_else] = ACTIONS(3362), + [anon_sym_switch] = ACTIONS(3362), + [anon_sym_while] = ACTIONS(3362), + [anon_sym_do] = ACTIONS(3362), + [anon_sym_for] = ACTIONS(3362), + [anon_sym_return] = ACTIONS(3362), + [anon_sym_break] = ACTIONS(3362), + [anon_sym_continue] = ACTIONS(3362), + [anon_sym_goto] = ACTIONS(3362), + [anon_sym___try] = ACTIONS(3362), + [anon_sym___leave] = ACTIONS(3362), + [anon_sym_not] = ACTIONS(3362), + [anon_sym_compl] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3364), + [anon_sym_PLUS_PLUS] = ACTIONS(3364), + [anon_sym_sizeof] = ACTIONS(3362), + [anon_sym___alignof__] = ACTIONS(3362), + [anon_sym___alignof] = ACTIONS(3362), + [anon_sym__alignof] = ACTIONS(3362), + [anon_sym_alignof] = ACTIONS(3362), + [anon_sym__Alignof] = ACTIONS(3362), + [anon_sym_offsetof] = ACTIONS(3362), + [anon_sym__Generic] = ACTIONS(3362), + [anon_sym_typename] = ACTIONS(3362), + [anon_sym_asm] = ACTIONS(3362), + [anon_sym___asm__] = ACTIONS(3362), + [anon_sym___asm] = ACTIONS(3362), + [sym_number_literal] = ACTIONS(3364), + [anon_sym_L_SQUOTE] = ACTIONS(3364), + [anon_sym_u_SQUOTE] = ACTIONS(3364), + [anon_sym_U_SQUOTE] = ACTIONS(3364), + [anon_sym_u8_SQUOTE] = ACTIONS(3364), + [anon_sym_SQUOTE] = ACTIONS(3364), + [anon_sym_L_DQUOTE] = ACTIONS(3364), + [anon_sym_u_DQUOTE] = ACTIONS(3364), + [anon_sym_U_DQUOTE] = ACTIONS(3364), + [anon_sym_u8_DQUOTE] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [sym_true] = ACTIONS(3362), + [sym_false] = ACTIONS(3362), + [anon_sym_NULL] = ACTIONS(3362), + [anon_sym_nullptr] = ACTIONS(3362), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3362), + [anon_sym_decltype] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(3362), + [anon_sym_try] = ACTIONS(3362), + [anon_sym_delete] = ACTIONS(3362), + [anon_sym_throw] = ACTIONS(3362), + [anon_sym_co_return] = ACTIONS(3362), + [anon_sym_co_yield] = ACTIONS(3362), + [anon_sym_catch] = ACTIONS(3362), + [anon_sym_R_DQUOTE] = ACTIONS(3364), + [anon_sym_LR_DQUOTE] = ACTIONS(3364), + [anon_sym_uR_DQUOTE] = ACTIONS(3364), + [anon_sym_UR_DQUOTE] = ACTIONS(3364), + [anon_sym_u8R_DQUOTE] = ACTIONS(3364), + [anon_sym_co_await] = ACTIONS(3362), + [anon_sym_new] = ACTIONS(3362), + [anon_sym_requires] = ACTIONS(3362), + [anon_sym_CARET_CARET] = ACTIONS(3364), + [anon_sym_LBRACK_COLON] = ACTIONS(3364), + [sym_this] = ACTIONS(3362), }, - [STATE(1209)] = { - [sym_expression] = STATE(6916), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10712), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5673), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1201)] = { + [sym_expression_statement] = STATE(4211), + [sym_expression] = STATE(6891), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11087), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_type_requirement] = STATE(1208), + [sym_compound_requirement] = STATE(1208), + [sym__requirement] = STATE(1208), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_requirement_seq_repeat1] = STATE(1208), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5792), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -218708,7 +226938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(5744), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -218728,8 +226958,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -218740,183 +226970,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1210)] = { - [sym_expression] = STATE(6573), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_initializer_list] = STATE(9918), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5676), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1211)] = { - [sym_expression] = STATE(6615), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10847), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(5678), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1202)] = { + [sym_expression] = STATE(6819), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10569), + [sym_initializer_pair] = STATE(10569), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5732), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -218929,10 +227054,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -218949,8 +227075,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -218961,77 +227087,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1212)] = { - [sym_expression] = STATE(6649), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10639), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON] = ACTIONS(5680), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1203)] = { + [sym_expression] = STATE(6819), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10569), + [sym_initializer_pair] = STATE(10569), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5794), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -219039,10 +227171,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -219059,414 +227192,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1213)] = { - [sym_expression] = STATE(5658), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_initializer_list] = STATE(5954), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), + [STATE(1204)] = { + [sym_string_literal] = STATE(4105), + [sym_decltype_auto] = STATE(4991), + [sym_template_argument_list] = STATE(2131), + [sym_raw_string_literal] = STATE(4105), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(5636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5669), + [anon_sym_TILDE] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5650), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5796), + [anon_sym___extension__] = ACTIONS(5636), + [anon_sym_virtual] = ACTIONS(5636), + [anon_sym_extern] = ACTIONS(5636), + [anon_sym___attribute__] = ACTIONS(5636), + [anon_sym___attribute] = ACTIONS(5636), + [anon_sym_COLON] = ACTIONS(5706), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5675), + [anon_sym___declspec] = ACTIONS(5636), + [anon_sym___based] = ACTIONS(5636), + [anon_sym___cdecl] = ACTIONS(5636), + [anon_sym___clrcall] = ACTIONS(5636), + [anon_sym___stdcall] = ACTIONS(5636), + [anon_sym___fastcall] = ACTIONS(5636), + [anon_sym___thiscall] = ACTIONS(5636), + [anon_sym___vectorcall] = ACTIONS(5636), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(5659), + [anon_sym_unsigned] = ACTIONS(5659), + [anon_sym_long] = ACTIONS(5659), + [anon_sym_short] = ACTIONS(5659), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_static] = ACTIONS(5636), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_register] = ACTIONS(5636), + [anon_sym_inline] = ACTIONS(5636), + [anon_sym___inline] = ACTIONS(5636), + [anon_sym___inline__] = ACTIONS(5636), + [anon_sym___forceinline] = ACTIONS(5636), + [anon_sym_thread_local] = ACTIONS(5636), + [anon_sym___thread] = ACTIONS(5636), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5636), + [anon_sym_volatile] = ACTIONS(5636), + [anon_sym_restrict] = ACTIONS(5636), + [anon_sym___restrict__] = ACTIONS(5636), + [anon_sym__Atomic] = ACTIONS(5636), + [anon_sym__Noreturn] = ACTIONS(5636), + [anon_sym_noreturn] = ACTIONS(5636), + [anon_sym__Nonnull] = ACTIONS(5636), + [anon_sym_mutable] = ACTIONS(5636), + [anon_sym_constinit] = ACTIONS(5636), + [anon_sym_consteval] = ACTIONS(5636), + [anon_sym_alignas] = ACTIONS(5636), + [anon_sym__Alignas] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5661), + [anon_sym_or_eq] = ACTIONS(5661), + [anon_sym_xor_eq] = ACTIONS(5661), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5645), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5645), + [anon_sym_not_eq] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5665), + [anon_sym_decltype] = ACTIONS(5667), + [anon_sym_template] = ACTIONS(5636), + [anon_sym_operator] = ACTIONS(5636), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_LBRACK_COLON] = ACTIONS(5643), }, - [STATE(1214)] = { - [sym_expression] = STATE(6630), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_initializer_list] = STATE(7120), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(1205)] = { + [sym_else_clause] = STATE(1238), + [sym_identifier] = 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] = ACTIONS(3370), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym___extension__] = ACTIONS(3368), + [anon_sym_typedef] = ACTIONS(3368), + [anon_sym_virtual] = ACTIONS(3368), + [anon_sym_extern] = ACTIONS(3368), + [anon_sym___attribute__] = 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_LBRACE] = ACTIONS(3370), + [anon_sym_signed] = ACTIONS(3368), + [anon_sym_unsigned] = ACTIONS(3368), + [anon_sym_long] = ACTIONS(3368), + [anon_sym_short] = ACTIONS(3368), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_register] = ACTIONS(3368), + [anon_sym_inline] = ACTIONS(3368), + [anon_sym___inline] = ACTIONS(3368), + [anon_sym___inline__] = ACTIONS(3368), + [anon_sym___forceinline] = ACTIONS(3368), + [anon_sym_thread_local] = ACTIONS(3368), + [anon_sym___thread] = 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__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3368), + [anon_sym__Alignas] = 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_else] = ACTIONS(5788), + [anon_sym_switch] = 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___try] = ACTIONS(3368), + [anon_sym___leave] = 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___alignof__] = ACTIONS(3368), + [anon_sym___alignof] = ACTIONS(3368), + [anon_sym__alignof] = ACTIONS(3368), + [anon_sym_alignof] = ACTIONS(3368), + [anon_sym__Alignof] = ACTIONS(3368), + [anon_sym_offsetof] = ACTIONS(3368), + [anon_sym__Generic] = ACTIONS(3368), + [anon_sym_typename] = ACTIONS(3368), + [anon_sym_asm] = 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_template] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_delete] = ACTIONS(3368), + [anon_sym_throw] = 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), + [anon_sym_CARET_CARET] = ACTIONS(3370), + [anon_sym_LBRACK_COLON] = ACTIONS(3370), + [sym_this] = ACTIONS(3368), }, - [STATE(1215)] = { - [sym_expression] = STATE(6425), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_initializer_list] = STATE(5866), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1216)] = { - [sym_expression] = STATE(6562), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10056), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5682), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1206)] = { + [sym_expression_statement] = STATE(4211), + [sym_expression] = STATE(6891), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11087), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_type_requirement] = STATE(1208), + [sym_compound_requirement] = STATE(1208), + [sym__requirement] = STATE(1208), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_requirement_seq_repeat1] = STATE(1208), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5798), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -219479,7 +227523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(5744), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -219499,8 +227543,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -219511,512 +227555,313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1217)] = { - [sym_expression] = STATE(6436), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_initializer_list] = STATE(9362), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1218)] = { - [sym_expression] = STATE(6770), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11046), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON] = ACTIONS(5685), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1219)] = { - [sym_expression] = STATE(6816), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11504), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON] = ACTIONS(5687), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [STATE(1207)] = { + [sym_string_literal] = STATE(4105), + [sym_decltype_auto] = STATE(4991), + [sym_template_argument_list] = STATE(2131), + [sym_raw_string_literal] = STATE(4105), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(5636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5669), + [anon_sym_TILDE] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5650), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5800), + [anon_sym___extension__] = ACTIONS(5636), + [anon_sym_virtual] = ACTIONS(5636), + [anon_sym_extern] = ACTIONS(5636), + [anon_sym___attribute__] = ACTIONS(5636), + [anon_sym___attribute] = ACTIONS(5636), + [anon_sym_COLON] = ACTIONS(5696), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5675), + [anon_sym___declspec] = ACTIONS(5636), + [anon_sym___based] = ACTIONS(5636), + [anon_sym___cdecl] = ACTIONS(5636), + [anon_sym___clrcall] = ACTIONS(5636), + [anon_sym___stdcall] = ACTIONS(5636), + [anon_sym___fastcall] = ACTIONS(5636), + [anon_sym___thiscall] = ACTIONS(5636), + [anon_sym___vectorcall] = ACTIONS(5636), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(5659), + [anon_sym_unsigned] = ACTIONS(5659), + [anon_sym_long] = ACTIONS(5659), + [anon_sym_short] = ACTIONS(5659), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_static] = ACTIONS(5636), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_register] = ACTIONS(5636), + [anon_sym_inline] = ACTIONS(5636), + [anon_sym___inline] = ACTIONS(5636), + [anon_sym___inline__] = ACTIONS(5636), + [anon_sym___forceinline] = ACTIONS(5636), + [anon_sym_thread_local] = ACTIONS(5636), + [anon_sym___thread] = ACTIONS(5636), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5636), + [anon_sym_volatile] = ACTIONS(5636), + [anon_sym_restrict] = ACTIONS(5636), + [anon_sym___restrict__] = ACTIONS(5636), + [anon_sym__Atomic] = ACTIONS(5636), + [anon_sym__Noreturn] = ACTIONS(5636), + [anon_sym_noreturn] = ACTIONS(5636), + [anon_sym__Nonnull] = ACTIONS(5636), + [anon_sym_mutable] = ACTIONS(5636), + [anon_sym_constinit] = ACTIONS(5636), + [anon_sym_consteval] = ACTIONS(5636), + [anon_sym_alignas] = ACTIONS(5636), + [anon_sym__Alignas] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5661), + [anon_sym_or_eq] = ACTIONS(5661), + [anon_sym_xor_eq] = ACTIONS(5661), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5645), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5645), + [anon_sym_not_eq] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5665), + [anon_sym_decltype] = ACTIONS(5667), + [anon_sym_template] = ACTIONS(5636), + [anon_sym_operator] = ACTIONS(5636), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_LBRACK_COLON] = ACTIONS(5643), }, - [STATE(1220)] = { - [sym_expression] = STATE(6817), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10562), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON] = ACTIONS(5689), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [STATE(1208)] = { + [sym_expression_statement] = STATE(4211), + [sym_expression] = STATE(6891), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11087), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_type_requirement] = STATE(1208), + [sym_compound_requirement] = STATE(1208), + [sym__requirement] = STATE(1208), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_requirement_seq_repeat1] = STATE(1208), + [sym_identifier] = ACTIONS(5802), + [anon_sym_LPAREN2] = ACTIONS(5805), + [anon_sym_BANG] = ACTIONS(5808), + [anon_sym_TILDE] = ACTIONS(5808), + [anon_sym_DASH] = ACTIONS(5811), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_STAR] = ACTIONS(5814), + [anon_sym_AMP] = ACTIONS(5814), + [anon_sym_SEMI] = ACTIONS(5817), + [anon_sym___extension__] = ACTIONS(5820), + [anon_sym_COLON_COLON] = ACTIONS(5823), + [anon_sym_LBRACE] = ACTIONS(5826), + [anon_sym_RBRACE] = ACTIONS(5829), + [anon_sym_LBRACK] = ACTIONS(5831), + [sym_primitive_type] = ACTIONS(5834), + [anon_sym_not] = ACTIONS(5811), + [anon_sym_compl] = ACTIONS(5811), + [anon_sym_DASH_DASH] = ACTIONS(5837), + [anon_sym_PLUS_PLUS] = ACTIONS(5837), + [anon_sym_sizeof] = ACTIONS(5840), + [anon_sym___alignof__] = ACTIONS(5843), + [anon_sym___alignof] = ACTIONS(5843), + [anon_sym__alignof] = ACTIONS(5843), + [anon_sym_alignof] = ACTIONS(5843), + [anon_sym__Alignof] = ACTIONS(5843), + [anon_sym_offsetof] = ACTIONS(5846), + [anon_sym__Generic] = ACTIONS(5849), + [anon_sym_typename] = ACTIONS(5852), + [anon_sym_asm] = ACTIONS(5855), + [anon_sym___asm__] = ACTIONS(5855), + [anon_sym___asm] = ACTIONS(5855), + [sym_number_literal] = ACTIONS(5858), + [anon_sym_L_SQUOTE] = ACTIONS(5861), + [anon_sym_u_SQUOTE] = ACTIONS(5861), + [anon_sym_U_SQUOTE] = ACTIONS(5861), + [anon_sym_u8_SQUOTE] = ACTIONS(5861), + [anon_sym_SQUOTE] = ACTIONS(5861), + [anon_sym_L_DQUOTE] = ACTIONS(5864), + [anon_sym_u_DQUOTE] = ACTIONS(5864), + [anon_sym_U_DQUOTE] = ACTIONS(5864), + [anon_sym_u8_DQUOTE] = ACTIONS(5864), + [anon_sym_DQUOTE] = ACTIONS(5864), + [sym_true] = ACTIONS(5867), + [sym_false] = ACTIONS(5867), + [anon_sym_NULL] = ACTIONS(5870), + [anon_sym_nullptr] = ACTIONS(5870), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5873), + [anon_sym_template] = ACTIONS(5876), + [anon_sym_delete] = ACTIONS(5879), + [anon_sym_R_DQUOTE] = ACTIONS(5882), + [anon_sym_LR_DQUOTE] = ACTIONS(5882), + [anon_sym_uR_DQUOTE] = ACTIONS(5882), + [anon_sym_UR_DQUOTE] = ACTIONS(5882), + [anon_sym_u8R_DQUOTE] = ACTIONS(5882), + [anon_sym_co_await] = ACTIONS(5885), + [anon_sym_new] = ACTIONS(5888), + [anon_sym_requires] = ACTIONS(5891), + [anon_sym_CARET_CARET] = ACTIONS(5894), + [anon_sym_LBRACK_COLON] = ACTIONS(5897), + [sym_this] = ACTIONS(5867), }, - [STATE(1221)] = { - [sym_expression] = STATE(6916), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10712), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1209)] = { + [sym_expression_statement] = STATE(4211), + [sym_expression] = STATE(6891), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11087), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_type_requirement] = STATE(1211), + [sym_compound_requirement] = STATE(1211), + [sym__requirement] = STATE(1211), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_requirement_seq_repeat1] = STATE(1211), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5900), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -220029,7 +227874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(5744), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -220049,8 +227894,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -220061,72 +227906,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1222)] = { - [sym_expression] = STATE(6387), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(5866), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1210)] = { + [sym_expression_statement] = STATE(4211), + [sym_expression] = STATE(6891), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11087), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_type_requirement] = STATE(1219), + [sym_compound_requirement] = STATE(1219), + [sym__requirement] = STATE(1219), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_requirement_seq_repeat1] = STATE(1219), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5902), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -220139,7 +227991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(5744), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -220159,8 +228011,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -220171,292 +228023,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1223)] = { - [sym_expression] = STATE(3678), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_initializer_list] = STATE(3758), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1224)] = { - [sym_expression] = STATE(6708), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10830), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON] = ACTIONS(5691), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1225)] = { - [sym_expression] = STATE(5661), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(5840), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1211)] = { + [sym_expression_statement] = STATE(4211), + [sym_expression] = STATE(6891), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11087), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_type_requirement] = STATE(1208), + [sym_compound_requirement] = STATE(1208), + [sym__requirement] = STATE(1208), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_requirement_seq_repeat1] = STATE(1208), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -220469,7 +228108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(5744), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -220489,8 +228128,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -220501,402 +228140,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1226)] = { - [sym_expression] = STATE(6624), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11393), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON] = ACTIONS(5693), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1227)] = { - [sym_expression] = STATE(5661), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_initializer_list] = STATE(5840), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1228)] = { - [sym_expression] = STATE(5128), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_initializer_list] = STATE(5529), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), + [STATE(1212)] = { + [sym_string_literal] = STATE(4105), + [sym_decltype_auto] = STATE(4991), + [sym_template_argument_list] = STATE(2131), + [sym_raw_string_literal] = STATE(4105), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(5636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5669), + [anon_sym_TILDE] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5650), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5906), + [anon_sym___extension__] = ACTIONS(5636), + [anon_sym_virtual] = ACTIONS(5636), + [anon_sym_extern] = ACTIONS(5636), + [anon_sym___attribute__] = ACTIONS(5636), + [anon_sym___attribute] = ACTIONS(5636), + [anon_sym_COLON] = ACTIONS(5704), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5675), + [anon_sym___declspec] = ACTIONS(5636), + [anon_sym___based] = ACTIONS(5636), + [anon_sym___cdecl] = ACTIONS(5636), + [anon_sym___clrcall] = ACTIONS(5636), + [anon_sym___stdcall] = ACTIONS(5636), + [anon_sym___fastcall] = ACTIONS(5636), + [anon_sym___thiscall] = ACTIONS(5636), + [anon_sym___vectorcall] = ACTIONS(5636), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(5659), + [anon_sym_unsigned] = ACTIONS(5659), + [anon_sym_long] = ACTIONS(5659), + [anon_sym_short] = ACTIONS(5659), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_static] = ACTIONS(5636), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_register] = ACTIONS(5636), + [anon_sym_inline] = ACTIONS(5636), + [anon_sym___inline] = ACTIONS(5636), + [anon_sym___inline__] = ACTIONS(5636), + [anon_sym___forceinline] = ACTIONS(5636), + [anon_sym_thread_local] = ACTIONS(5636), + [anon_sym___thread] = ACTIONS(5636), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5636), + [anon_sym_volatile] = ACTIONS(5636), + [anon_sym_restrict] = ACTIONS(5636), + [anon_sym___restrict__] = ACTIONS(5636), + [anon_sym__Atomic] = ACTIONS(5636), + [anon_sym__Noreturn] = ACTIONS(5636), + [anon_sym_noreturn] = ACTIONS(5636), + [anon_sym__Nonnull] = ACTIONS(5636), + [anon_sym_mutable] = ACTIONS(5636), + [anon_sym_constinit] = ACTIONS(5636), + [anon_sym_consteval] = ACTIONS(5636), + [anon_sym_alignas] = ACTIONS(5636), + [anon_sym__Alignas] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5661), + [anon_sym_or_eq] = ACTIONS(5661), + [anon_sym_xor_eq] = ACTIONS(5661), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5645), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5645), + [anon_sym_not_eq] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5665), + [anon_sym_decltype] = ACTIONS(5667), + [anon_sym_template] = ACTIONS(5636), + [anon_sym_operator] = ACTIONS(5636), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_LBRACK_COLON] = ACTIONS(5643), }, - [STATE(1229)] = { - [sym_expression] = STATE(6593), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10200), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1213)] = { + [sym_expression] = STATE(6819), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10569), + [sym_initializer_pair] = STATE(10569), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5908), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -220909,10 +228341,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -220929,8 +228362,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -220941,1062 +228374,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1230)] = { - [sym_expression] = STATE(6798), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_initializer_list] = STATE(7120), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1231)] = { - [sym_expression] = STATE(6243), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_initializer_list] = STATE(5866), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1232)] = { - [sym_expression] = STATE(6656), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_initializer_list] = STATE(7151), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1233)] = { - [sym_expression] = STATE(6648), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11072), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON] = ACTIONS(5695), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1234)] = { - [sym_expression] = STATE(6707), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10715), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON] = ACTIONS(5697), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1235)] = { - [sym_expression] = STATE(6705), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON] = ACTIONS(5699), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1236)] = { - [sym_expression] = STATE(5354), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_initializer_list] = STATE(5704), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), - }, - [STATE(1237)] = { - [sym_expression] = STATE(6616), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10615), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON] = ACTIONS(5701), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1238)] = { - [sym_expression] = STATE(5661), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_initializer_list] = STATE(5840), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1239)] = { - [sym_expression] = STATE(6953), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(11205), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1214)] = { + [sym_expression] = STATE(6819), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10569), + [sym_initializer_pair] = STATE(10569), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5910), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -222009,10 +228458,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -222029,8 +228479,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -222041,402 +228491,312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1240)] = { - [sym_expression] = STATE(5795), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_initializer_list] = STATE(5991), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1241)] = { - [sym_expression] = STATE(6662), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11090), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON] = ACTIONS(5703), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [STATE(1215)] = { + [sym_identifier] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3153), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym___extension__] = ACTIONS(3155), + [anon_sym_typedef] = ACTIONS(3155), + [anon_sym_virtual] = ACTIONS(3155), + [anon_sym_extern] = ACTIONS(3155), + [anon_sym___attribute__] = ACTIONS(3155), + [anon_sym___attribute] = ACTIONS(3155), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), + [anon_sym___declspec] = ACTIONS(3155), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_static] = ACTIONS(3155), + [anon_sym_register] = ACTIONS(3155), + [anon_sym_inline] = ACTIONS(3155), + [anon_sym___inline] = ACTIONS(3155), + [anon_sym___inline__] = ACTIONS(3155), + [anon_sym___forceinline] = ACTIONS(3155), + [anon_sym_thread_local] = ACTIONS(3155), + [anon_sym___thread] = ACTIONS(3155), + [anon_sym_const] = ACTIONS(3155), + [anon_sym_constexpr] = ACTIONS(3155), + [anon_sym_volatile] = ACTIONS(3155), + [anon_sym_restrict] = ACTIONS(3155), + [anon_sym___restrict__] = ACTIONS(3155), + [anon_sym__Atomic] = ACTIONS(3155), + [anon_sym__Noreturn] = ACTIONS(3155), + [anon_sym_noreturn] = ACTIONS(3155), + [anon_sym__Nonnull] = ACTIONS(3155), + [anon_sym_mutable] = ACTIONS(3155), + [anon_sym_constinit] = ACTIONS(3155), + [anon_sym_consteval] = ACTIONS(3155), + [anon_sym_alignas] = ACTIONS(3155), + [anon_sym__Alignas] = ACTIONS(3155), + [sym_primitive_type] = ACTIONS(3155), + [anon_sym_enum] = ACTIONS(3155), + [anon_sym_class] = ACTIONS(3155), + [anon_sym_struct] = ACTIONS(3155), + [anon_sym_union] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_else] = ACTIONS(3155), + [anon_sym_switch] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_do] = ACTIONS(3155), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_break] = ACTIONS(3155), + [anon_sym_continue] = ACTIONS(3155), + [anon_sym_goto] = ACTIONS(3155), + [anon_sym___try] = ACTIONS(3155), + [anon_sym___leave] = ACTIONS(3155), + [anon_sym_not] = ACTIONS(3155), + [anon_sym_compl] = ACTIONS(3155), + [anon_sym_DASH_DASH] = ACTIONS(3153), + [anon_sym_PLUS_PLUS] = ACTIONS(3153), + [anon_sym_sizeof] = ACTIONS(3155), + [anon_sym___alignof__] = ACTIONS(3155), + [anon_sym___alignof] = ACTIONS(3155), + [anon_sym__alignof] = ACTIONS(3155), + [anon_sym_alignof] = ACTIONS(3155), + [anon_sym__Alignof] = ACTIONS(3155), + [anon_sym_offsetof] = ACTIONS(3155), + [anon_sym__Generic] = ACTIONS(3155), + [anon_sym_typename] = ACTIONS(3155), + [anon_sym_asm] = ACTIONS(3155), + [anon_sym___asm__] = ACTIONS(3155), + [anon_sym___asm] = ACTIONS(3155), + [sym_number_literal] = ACTIONS(3153), + [anon_sym_L_SQUOTE] = ACTIONS(3153), + [anon_sym_u_SQUOTE] = ACTIONS(3153), + [anon_sym_U_SQUOTE] = ACTIONS(3153), + [anon_sym_u8_SQUOTE] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3153), + [anon_sym_L_DQUOTE] = ACTIONS(3153), + [anon_sym_u_DQUOTE] = ACTIONS(3153), + [anon_sym_U_DQUOTE] = ACTIONS(3153), + [anon_sym_u8_DQUOTE] = ACTIONS(3153), + [anon_sym_DQUOTE] = ACTIONS(3153), + [sym_true] = ACTIONS(3155), + [sym_false] = ACTIONS(3155), + [anon_sym_NULL] = ACTIONS(3155), + [anon_sym_nullptr] = ACTIONS(3155), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3155), + [anon_sym_decltype] = ACTIONS(3155), + [anon_sym_template] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [anon_sym_delete] = ACTIONS(3155), + [anon_sym_throw] = ACTIONS(3155), + [anon_sym_co_return] = ACTIONS(3155), + [anon_sym_co_yield] = ACTIONS(3155), + [anon_sym_catch] = ACTIONS(3155), + [anon_sym_R_DQUOTE] = ACTIONS(3153), + [anon_sym_LR_DQUOTE] = ACTIONS(3153), + [anon_sym_uR_DQUOTE] = ACTIONS(3153), + [anon_sym_UR_DQUOTE] = ACTIONS(3153), + [anon_sym_u8R_DQUOTE] = ACTIONS(3153), + [anon_sym_co_await] = ACTIONS(3155), + [anon_sym_new] = ACTIONS(3155), + [anon_sym_requires] = ACTIONS(3155), + [anon_sym_CARET_CARET] = ACTIONS(3153), + [anon_sym_LBRACK_COLON] = ACTIONS(3153), + [sym_this] = ACTIONS(3155), }, - [STATE(1242)] = { - [sym_expression] = STATE(3678), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_initializer_list] = STATE(3758), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1216)] = { + [sym_identifier] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_extern] = ACTIONS(3163), + [anon_sym___attribute__] = ACTIONS(3163), + [anon_sym___attribute] = ACTIONS(3163), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym___inline] = ACTIONS(3163), + [anon_sym___inline__] = ACTIONS(3163), + [anon_sym___forceinline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym___thread] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym___restrict__] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym__Noreturn] = ACTIONS(3163), + [anon_sym_noreturn] = ACTIONS(3163), + [anon_sym__Nonnull] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym__Alignas] = ACTIONS(3163), + [sym_primitive_type] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_else] = ACTIONS(3163), + [anon_sym_switch] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_goto] = ACTIONS(3163), + [anon_sym___try] = ACTIONS(3163), + [anon_sym___leave] = ACTIONS(3163), + [anon_sym_not] = ACTIONS(3163), + [anon_sym_compl] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3163), + [anon_sym___alignof__] = ACTIONS(3163), + [anon_sym___alignof] = ACTIONS(3163), + [anon_sym__alignof] = ACTIONS(3163), + [anon_sym_alignof] = ACTIONS(3163), + [anon_sym__Alignof] = ACTIONS(3163), + [anon_sym_offsetof] = ACTIONS(3163), + [anon_sym__Generic] = ACTIONS(3163), + [anon_sym_typename] = ACTIONS(3163), + [anon_sym_asm] = ACTIONS(3163), + [anon_sym___asm__] = ACTIONS(3163), + [anon_sym___asm] = ACTIONS(3163), + [sym_number_literal] = ACTIONS(3161), + [anon_sym_L_SQUOTE] = ACTIONS(3161), + [anon_sym_u_SQUOTE] = ACTIONS(3161), + [anon_sym_U_SQUOTE] = ACTIONS(3161), + [anon_sym_u8_SQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_L_DQUOTE] = ACTIONS(3161), + [anon_sym_u_DQUOTE] = ACTIONS(3161), + [anon_sym_U_DQUOTE] = ACTIONS(3161), + [anon_sym_u8_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [anon_sym_NULL] = ACTIONS(3163), + [anon_sym_nullptr] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_template] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_delete] = ACTIONS(3163), + [anon_sym_throw] = ACTIONS(3163), + [anon_sym_co_return] = ACTIONS(3163), + [anon_sym_co_yield] = ACTIONS(3163), + [anon_sym_catch] = ACTIONS(3163), + [anon_sym_R_DQUOTE] = ACTIONS(3161), + [anon_sym_LR_DQUOTE] = ACTIONS(3161), + [anon_sym_uR_DQUOTE] = ACTIONS(3161), + [anon_sym_UR_DQUOTE] = ACTIONS(3161), + [anon_sym_u8R_DQUOTE] = ACTIONS(3161), + [anon_sym_co_await] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_requires] = ACTIONS(3163), + [anon_sym_CARET_CARET] = ACTIONS(3161), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), + [sym_this] = ACTIONS(3163), }, - [STATE(1243)] = { - [sym_expression] = STATE(6771), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10200), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1217)] = { + [sym_expression] = STATE(6819), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10569), + [sym_initializer_pair] = STATE(10569), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5912), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -222449,10 +228809,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -222469,8 +228830,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -222481,292 +228842,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1244)] = { - [sym_expression] = STATE(5370), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_initializer_list] = STATE(5752), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1245)] = { - [sym_expression] = STATE(6675), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11539), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON] = ACTIONS(5705), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1246)] = { - [sym_expression] = STATE(6809), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10853), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(5707), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1218)] = { + [sym_expression_statement] = STATE(4211), + [sym_expression] = STATE(6891), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11087), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_type_requirement] = STATE(1196), + [sym_compound_requirement] = STATE(1196), + [sym__requirement] = STATE(1196), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_requirement_seq_repeat1] = STATE(1196), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5914), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -222779,7 +228927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(5744), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -222799,8 +228947,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -222811,182 +228959,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1247)] = { - [sym_expression] = STATE(6668), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_initializer_list] = STATE(10079), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1248)] = { - [sym_expression] = STATE(6789), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11373), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(5709), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1219)] = { + [sym_expression_statement] = STATE(4211), + [sym_expression] = STATE(6891), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11087), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_type_requirement] = STATE(1208), + [sym_compound_requirement] = STATE(1208), + [sym__requirement] = STATE(1208), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_requirement_seq_repeat1] = STATE(1208), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(5740), + [anon_sym_RBRACE] = ACTIONS(5916), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -222999,7 +229044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(5744), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -223019,8 +229064,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -223031,182 +229076,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1249)] = { - [sym_expression] = STATE(3678), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_initializer_list] = STATE(3758), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1250)] = { - [sym_expression] = STATE(6793), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11380), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(5711), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1220)] = { + [sym_expression] = STATE(6819), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10569), + [sym_initializer_pair] = STATE(10569), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(5918), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -223219,10 +229160,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -223239,8 +229181,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -223251,402 +229193,1817 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1251)] = { - [sym_expression] = STATE(7037), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(11382), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [STATE(1221)] = { + [sym_identifier] = ACTIONS(3646), + [anon_sym_LPAREN2] = ACTIONS(3648), + [anon_sym_BANG] = ACTIONS(3648), + [anon_sym_TILDE] = ACTIONS(3648), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_STAR] = ACTIONS(3648), + [anon_sym_AMP] = ACTIONS(3648), + [anon_sym_SEMI] = ACTIONS(3648), + [anon_sym___extension__] = ACTIONS(3646), + [anon_sym_typedef] = ACTIONS(3646), + [anon_sym_virtual] = ACTIONS(3646), + [anon_sym_extern] = ACTIONS(3646), + [anon_sym___attribute__] = ACTIONS(3646), + [anon_sym___attribute] = ACTIONS(3646), + [anon_sym_COLON_COLON] = ACTIONS(3648), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3648), + [anon_sym___declspec] = ACTIONS(3646), + [anon_sym_LBRACE] = ACTIONS(3648), + [anon_sym_signed] = ACTIONS(3646), + [anon_sym_unsigned] = ACTIONS(3646), + [anon_sym_long] = ACTIONS(3646), + [anon_sym_short] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_static] = ACTIONS(3646), + [anon_sym_register] = ACTIONS(3646), + [anon_sym_inline] = ACTIONS(3646), + [anon_sym___inline] = ACTIONS(3646), + [anon_sym___inline__] = ACTIONS(3646), + [anon_sym___forceinline] = ACTIONS(3646), + [anon_sym_thread_local] = ACTIONS(3646), + [anon_sym___thread] = ACTIONS(3646), + [anon_sym_const] = ACTIONS(3646), + [anon_sym_constexpr] = ACTIONS(3646), + [anon_sym_volatile] = ACTIONS(3646), + [anon_sym_restrict] = ACTIONS(3646), + [anon_sym___restrict__] = ACTIONS(3646), + [anon_sym__Atomic] = ACTIONS(3646), + [anon_sym__Noreturn] = ACTIONS(3646), + [anon_sym_noreturn] = ACTIONS(3646), + [anon_sym__Nonnull] = ACTIONS(3646), + [anon_sym_mutable] = ACTIONS(3646), + [anon_sym_constinit] = ACTIONS(3646), + [anon_sym_consteval] = ACTIONS(3646), + [anon_sym_alignas] = ACTIONS(3646), + [anon_sym__Alignas] = ACTIONS(3646), + [sym_primitive_type] = ACTIONS(3646), + [anon_sym_enum] = ACTIONS(3646), + [anon_sym_class] = ACTIONS(3646), + [anon_sym_struct] = ACTIONS(3646), + [anon_sym_union] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_else] = ACTIONS(3646), + [anon_sym_switch] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_break] = ACTIONS(3646), + [anon_sym_continue] = ACTIONS(3646), + [anon_sym_goto] = ACTIONS(3646), + [anon_sym___try] = ACTIONS(3646), + [anon_sym___leave] = ACTIONS(3646), + [anon_sym_not] = ACTIONS(3646), + [anon_sym_compl] = ACTIONS(3646), + [anon_sym_DASH_DASH] = ACTIONS(3648), + [anon_sym_PLUS_PLUS] = ACTIONS(3648), + [anon_sym_sizeof] = ACTIONS(3646), + [anon_sym___alignof__] = ACTIONS(3646), + [anon_sym___alignof] = ACTIONS(3646), + [anon_sym__alignof] = ACTIONS(3646), + [anon_sym_alignof] = ACTIONS(3646), + [anon_sym__Alignof] = ACTIONS(3646), + [anon_sym_offsetof] = ACTIONS(3646), + [anon_sym__Generic] = ACTIONS(3646), + [anon_sym_typename] = ACTIONS(3646), + [anon_sym_asm] = ACTIONS(3646), + [anon_sym___asm__] = ACTIONS(3646), + [anon_sym___asm] = ACTIONS(3646), + [sym_number_literal] = ACTIONS(3648), + [anon_sym_L_SQUOTE] = ACTIONS(3648), + [anon_sym_u_SQUOTE] = ACTIONS(3648), + [anon_sym_U_SQUOTE] = ACTIONS(3648), + [anon_sym_u8_SQUOTE] = ACTIONS(3648), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_L_DQUOTE] = ACTIONS(3648), + [anon_sym_u_DQUOTE] = ACTIONS(3648), + [anon_sym_U_DQUOTE] = ACTIONS(3648), + [anon_sym_u8_DQUOTE] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3648), + [sym_true] = ACTIONS(3646), + [sym_false] = ACTIONS(3646), + [anon_sym_NULL] = ACTIONS(3646), + [anon_sym_nullptr] = ACTIONS(3646), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3646), + [anon_sym_decltype] = ACTIONS(3646), + [anon_sym_template] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_delete] = ACTIONS(3646), + [anon_sym_throw] = ACTIONS(3646), + [anon_sym_co_return] = ACTIONS(3646), + [anon_sym_co_yield] = ACTIONS(3646), + [anon_sym_R_DQUOTE] = ACTIONS(3648), + [anon_sym_LR_DQUOTE] = ACTIONS(3648), + [anon_sym_uR_DQUOTE] = ACTIONS(3648), + [anon_sym_UR_DQUOTE] = ACTIONS(3648), + [anon_sym_u8R_DQUOTE] = ACTIONS(3648), + [anon_sym_co_await] = ACTIONS(3646), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_requires] = ACTIONS(3646), + [anon_sym_CARET_CARET] = ACTIONS(3648), + [anon_sym_LBRACK_COLON] = ACTIONS(3648), + [sym_this] = ACTIONS(3646), }, - [STATE(1252)] = { - [sym_expression] = STATE(6761), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10928), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), + [STATE(1222)] = { + [sym_identifier] = ACTIONS(3674), + [anon_sym_LPAREN2] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3676), + [anon_sym_TILDE] = ACTIONS(3676), + [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_PLUS] = ACTIONS(3674), + [anon_sym_STAR] = ACTIONS(3676), + [anon_sym_AMP] = ACTIONS(3676), + [anon_sym_SEMI] = ACTIONS(3676), + [anon_sym___extension__] = ACTIONS(3674), + [anon_sym_typedef] = ACTIONS(3674), + [anon_sym_virtual] = ACTIONS(3674), + [anon_sym_extern] = ACTIONS(3674), + [anon_sym___attribute__] = ACTIONS(3674), + [anon_sym___attribute] = ACTIONS(3674), + [anon_sym_COLON_COLON] = ACTIONS(3676), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3676), + [anon_sym___declspec] = ACTIONS(3674), + [anon_sym_LBRACE] = ACTIONS(3676), + [anon_sym_signed] = ACTIONS(3674), + [anon_sym_unsigned] = ACTIONS(3674), + [anon_sym_long] = ACTIONS(3674), + [anon_sym_short] = ACTIONS(3674), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_static] = ACTIONS(3674), + [anon_sym_register] = ACTIONS(3674), + [anon_sym_inline] = ACTIONS(3674), + [anon_sym___inline] = ACTIONS(3674), + [anon_sym___inline__] = ACTIONS(3674), + [anon_sym___forceinline] = ACTIONS(3674), + [anon_sym_thread_local] = ACTIONS(3674), + [anon_sym___thread] = ACTIONS(3674), + [anon_sym_const] = ACTIONS(3674), + [anon_sym_constexpr] = ACTIONS(3674), + [anon_sym_volatile] = ACTIONS(3674), + [anon_sym_restrict] = ACTIONS(3674), + [anon_sym___restrict__] = ACTIONS(3674), + [anon_sym__Atomic] = ACTIONS(3674), + [anon_sym__Noreturn] = ACTIONS(3674), + [anon_sym_noreturn] = ACTIONS(3674), + [anon_sym__Nonnull] = ACTIONS(3674), + [anon_sym_mutable] = ACTIONS(3674), + [anon_sym_constinit] = ACTIONS(3674), + [anon_sym_consteval] = ACTIONS(3674), + [anon_sym_alignas] = ACTIONS(3674), + [anon_sym__Alignas] = ACTIONS(3674), + [sym_primitive_type] = ACTIONS(3674), + [anon_sym_enum] = ACTIONS(3674), + [anon_sym_class] = ACTIONS(3674), + [anon_sym_struct] = ACTIONS(3674), + [anon_sym_union] = ACTIONS(3674), + [anon_sym_if] = ACTIONS(3674), + [anon_sym_else] = ACTIONS(3674), + [anon_sym_switch] = ACTIONS(3674), + [anon_sym_while] = ACTIONS(3674), + [anon_sym_do] = ACTIONS(3674), + [anon_sym_for] = ACTIONS(3674), + [anon_sym_return] = ACTIONS(3674), + [anon_sym_break] = ACTIONS(3674), + [anon_sym_continue] = ACTIONS(3674), + [anon_sym_goto] = ACTIONS(3674), + [anon_sym___try] = ACTIONS(3674), + [anon_sym___leave] = ACTIONS(3674), + [anon_sym_not] = ACTIONS(3674), + [anon_sym_compl] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [anon_sym_PLUS_PLUS] = ACTIONS(3676), + [anon_sym_sizeof] = ACTIONS(3674), + [anon_sym___alignof__] = ACTIONS(3674), + [anon_sym___alignof] = ACTIONS(3674), + [anon_sym__alignof] = ACTIONS(3674), + [anon_sym_alignof] = ACTIONS(3674), + [anon_sym__Alignof] = ACTIONS(3674), + [anon_sym_offsetof] = ACTIONS(3674), + [anon_sym__Generic] = ACTIONS(3674), + [anon_sym_typename] = ACTIONS(3674), + [anon_sym_asm] = ACTIONS(3674), + [anon_sym___asm__] = ACTIONS(3674), + [anon_sym___asm] = ACTIONS(3674), + [sym_number_literal] = ACTIONS(3676), + [anon_sym_L_SQUOTE] = ACTIONS(3676), + [anon_sym_u_SQUOTE] = ACTIONS(3676), + [anon_sym_U_SQUOTE] = ACTIONS(3676), + [anon_sym_u8_SQUOTE] = ACTIONS(3676), + [anon_sym_SQUOTE] = ACTIONS(3676), + [anon_sym_L_DQUOTE] = ACTIONS(3676), + [anon_sym_u_DQUOTE] = ACTIONS(3676), + [anon_sym_U_DQUOTE] = ACTIONS(3676), + [anon_sym_u8_DQUOTE] = ACTIONS(3676), + [anon_sym_DQUOTE] = ACTIONS(3676), + [sym_true] = ACTIONS(3674), + [sym_false] = ACTIONS(3674), + [anon_sym_NULL] = ACTIONS(3674), + [anon_sym_nullptr] = ACTIONS(3674), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3674), + [anon_sym_decltype] = ACTIONS(3674), + [anon_sym_template] = ACTIONS(3674), + [anon_sym_try] = ACTIONS(3674), + [anon_sym_delete] = ACTIONS(3674), + [anon_sym_throw] = ACTIONS(3674), + [anon_sym_co_return] = ACTIONS(3674), + [anon_sym_co_yield] = ACTIONS(3674), + [anon_sym_R_DQUOTE] = ACTIONS(3676), + [anon_sym_LR_DQUOTE] = ACTIONS(3676), + [anon_sym_uR_DQUOTE] = ACTIONS(3676), + [anon_sym_UR_DQUOTE] = ACTIONS(3676), + [anon_sym_u8R_DQUOTE] = ACTIONS(3676), + [anon_sym_co_await] = ACTIONS(3674), + [anon_sym_new] = ACTIONS(3674), + [anon_sym_requires] = ACTIONS(3674), + [anon_sym_CARET_CARET] = ACTIONS(3676), + [anon_sym_LBRACK_COLON] = ACTIONS(3676), + [sym_this] = ACTIONS(3674), + }, + [STATE(1223)] = { + [sym_identifier] = ACTIONS(3576), + [anon_sym_LPAREN2] = ACTIONS(3578), + [anon_sym_BANG] = ACTIONS(3578), + [anon_sym_TILDE] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_STAR] = ACTIONS(3578), + [anon_sym_AMP] = ACTIONS(3578), + [anon_sym_SEMI] = ACTIONS(3578), + [anon_sym___extension__] = ACTIONS(3576), + [anon_sym_typedef] = ACTIONS(3576), + [anon_sym_virtual] = ACTIONS(3576), + [anon_sym_extern] = ACTIONS(3576), + [anon_sym___attribute__] = ACTIONS(3576), + [anon_sym___attribute] = ACTIONS(3576), + [anon_sym_COLON_COLON] = ACTIONS(3578), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3578), + [anon_sym___declspec] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_signed] = ACTIONS(3576), + [anon_sym_unsigned] = ACTIONS(3576), + [anon_sym_long] = ACTIONS(3576), + [anon_sym_short] = ACTIONS(3576), + [anon_sym_LBRACK] = ACTIONS(3576), + [anon_sym_static] = ACTIONS(3576), + [anon_sym_register] = ACTIONS(3576), + [anon_sym_inline] = ACTIONS(3576), + [anon_sym___inline] = ACTIONS(3576), + [anon_sym___inline__] = ACTIONS(3576), + [anon_sym___forceinline] = ACTIONS(3576), + [anon_sym_thread_local] = ACTIONS(3576), + [anon_sym___thread] = ACTIONS(3576), + [anon_sym_const] = ACTIONS(3576), + [anon_sym_constexpr] = ACTIONS(3576), + [anon_sym_volatile] = ACTIONS(3576), + [anon_sym_restrict] = ACTIONS(3576), + [anon_sym___restrict__] = ACTIONS(3576), + [anon_sym__Atomic] = ACTIONS(3576), + [anon_sym__Noreturn] = ACTIONS(3576), + [anon_sym_noreturn] = ACTIONS(3576), + [anon_sym__Nonnull] = ACTIONS(3576), + [anon_sym_mutable] = ACTIONS(3576), + [anon_sym_constinit] = ACTIONS(3576), + [anon_sym_consteval] = ACTIONS(3576), + [anon_sym_alignas] = ACTIONS(3576), + [anon_sym__Alignas] = ACTIONS(3576), + [sym_primitive_type] = ACTIONS(3576), + [anon_sym_enum] = ACTIONS(3576), + [anon_sym_class] = ACTIONS(3576), + [anon_sym_struct] = ACTIONS(3576), + [anon_sym_union] = ACTIONS(3576), + [anon_sym_if] = ACTIONS(3576), + [anon_sym_else] = ACTIONS(3576), + [anon_sym_switch] = ACTIONS(3576), + [anon_sym_while] = ACTIONS(3576), + [anon_sym_do] = ACTIONS(3576), + [anon_sym_for] = ACTIONS(3576), + [anon_sym_return] = ACTIONS(3576), + [anon_sym_break] = ACTIONS(3576), + [anon_sym_continue] = ACTIONS(3576), + [anon_sym_goto] = ACTIONS(3576), + [anon_sym___try] = ACTIONS(3576), + [anon_sym___leave] = ACTIONS(3576), + [anon_sym_not] = ACTIONS(3576), + [anon_sym_compl] = ACTIONS(3576), + [anon_sym_DASH_DASH] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3578), + [anon_sym_sizeof] = ACTIONS(3576), + [anon_sym___alignof__] = ACTIONS(3576), + [anon_sym___alignof] = ACTIONS(3576), + [anon_sym__alignof] = ACTIONS(3576), + [anon_sym_alignof] = ACTIONS(3576), + [anon_sym__Alignof] = ACTIONS(3576), + [anon_sym_offsetof] = ACTIONS(3576), + [anon_sym__Generic] = ACTIONS(3576), + [anon_sym_typename] = ACTIONS(3576), + [anon_sym_asm] = ACTIONS(3576), + [anon_sym___asm__] = ACTIONS(3576), + [anon_sym___asm] = ACTIONS(3576), + [sym_number_literal] = ACTIONS(3578), + [anon_sym_L_SQUOTE] = ACTIONS(3578), + [anon_sym_u_SQUOTE] = ACTIONS(3578), + [anon_sym_U_SQUOTE] = ACTIONS(3578), + [anon_sym_u8_SQUOTE] = ACTIONS(3578), + [anon_sym_SQUOTE] = ACTIONS(3578), + [anon_sym_L_DQUOTE] = ACTIONS(3578), + [anon_sym_u_DQUOTE] = ACTIONS(3578), + [anon_sym_U_DQUOTE] = ACTIONS(3578), + [anon_sym_u8_DQUOTE] = ACTIONS(3578), + [anon_sym_DQUOTE] = ACTIONS(3578), + [sym_true] = ACTIONS(3576), + [sym_false] = ACTIONS(3576), + [anon_sym_NULL] = ACTIONS(3576), + [anon_sym_nullptr] = ACTIONS(3576), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3576), + [anon_sym_decltype] = ACTIONS(3576), + [anon_sym_template] = ACTIONS(3576), + [anon_sym_try] = ACTIONS(3576), + [anon_sym_delete] = ACTIONS(3576), + [anon_sym_throw] = ACTIONS(3576), + [anon_sym_co_return] = ACTIONS(3576), + [anon_sym_co_yield] = ACTIONS(3576), + [anon_sym_R_DQUOTE] = ACTIONS(3578), + [anon_sym_LR_DQUOTE] = ACTIONS(3578), + [anon_sym_uR_DQUOTE] = ACTIONS(3578), + [anon_sym_UR_DQUOTE] = ACTIONS(3578), + [anon_sym_u8R_DQUOTE] = ACTIONS(3578), + [anon_sym_co_await] = ACTIONS(3576), + [anon_sym_new] = ACTIONS(3576), + [anon_sym_requires] = ACTIONS(3576), + [anon_sym_CARET_CARET] = ACTIONS(3578), + [anon_sym_LBRACK_COLON] = ACTIONS(3578), + [sym_this] = ACTIONS(3576), + }, + [STATE(1224)] = { + [sym_identifier] = ACTIONS(3588), + [anon_sym_LPAREN2] = ACTIONS(3590), [anon_sym_BANG] = ACTIONS(3590), [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3588), + [anon_sym_STAR] = ACTIONS(3590), + [anon_sym_AMP] = ACTIONS(3590), + [anon_sym_SEMI] = ACTIONS(3590), + [anon_sym___extension__] = ACTIONS(3588), + [anon_sym_typedef] = ACTIONS(3588), + [anon_sym_virtual] = ACTIONS(3588), + [anon_sym_extern] = ACTIONS(3588), + [anon_sym___attribute__] = ACTIONS(3588), + [anon_sym___attribute] = ACTIONS(3588), + [anon_sym_COLON_COLON] = ACTIONS(3590), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3590), + [anon_sym___declspec] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3590), + [anon_sym_signed] = ACTIONS(3588), + [anon_sym_unsigned] = ACTIONS(3588), + [anon_sym_long] = ACTIONS(3588), + [anon_sym_short] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3588), + [anon_sym_static] = ACTIONS(3588), + [anon_sym_register] = ACTIONS(3588), + [anon_sym_inline] = ACTIONS(3588), + [anon_sym___inline] = ACTIONS(3588), + [anon_sym___inline__] = ACTIONS(3588), + [anon_sym___forceinline] = ACTIONS(3588), + [anon_sym_thread_local] = ACTIONS(3588), + [anon_sym___thread] = ACTIONS(3588), + [anon_sym_const] = ACTIONS(3588), + [anon_sym_constexpr] = ACTIONS(3588), + [anon_sym_volatile] = ACTIONS(3588), + [anon_sym_restrict] = ACTIONS(3588), + [anon_sym___restrict__] = ACTIONS(3588), + [anon_sym__Atomic] = ACTIONS(3588), + [anon_sym__Noreturn] = ACTIONS(3588), + [anon_sym_noreturn] = ACTIONS(3588), + [anon_sym__Nonnull] = ACTIONS(3588), + [anon_sym_mutable] = ACTIONS(3588), + [anon_sym_constinit] = ACTIONS(3588), + [anon_sym_consteval] = ACTIONS(3588), + [anon_sym_alignas] = ACTIONS(3588), + [anon_sym__Alignas] = ACTIONS(3588), + [sym_primitive_type] = ACTIONS(3588), + [anon_sym_enum] = ACTIONS(3588), + [anon_sym_class] = ACTIONS(3588), + [anon_sym_struct] = ACTIONS(3588), + [anon_sym_union] = ACTIONS(3588), + [anon_sym_if] = ACTIONS(3588), + [anon_sym_else] = ACTIONS(3588), + [anon_sym_switch] = ACTIONS(3588), + [anon_sym_while] = ACTIONS(3588), + [anon_sym_do] = ACTIONS(3588), + [anon_sym_for] = ACTIONS(3588), + [anon_sym_return] = ACTIONS(3588), + [anon_sym_break] = ACTIONS(3588), + [anon_sym_continue] = ACTIONS(3588), + [anon_sym_goto] = ACTIONS(3588), + [anon_sym___try] = ACTIONS(3588), + [anon_sym___leave] = ACTIONS(3588), + [anon_sym_not] = ACTIONS(3588), + [anon_sym_compl] = ACTIONS(3588), + [anon_sym_DASH_DASH] = ACTIONS(3590), + [anon_sym_PLUS_PLUS] = ACTIONS(3590), + [anon_sym_sizeof] = ACTIONS(3588), + [anon_sym___alignof__] = ACTIONS(3588), + [anon_sym___alignof] = ACTIONS(3588), + [anon_sym__alignof] = ACTIONS(3588), + [anon_sym_alignof] = ACTIONS(3588), + [anon_sym__Alignof] = ACTIONS(3588), + [anon_sym_offsetof] = ACTIONS(3588), + [anon_sym__Generic] = ACTIONS(3588), + [anon_sym_typename] = ACTIONS(3588), + [anon_sym_asm] = ACTIONS(3588), + [anon_sym___asm__] = ACTIONS(3588), + [anon_sym___asm] = ACTIONS(3588), + [sym_number_literal] = ACTIONS(3590), + [anon_sym_L_SQUOTE] = ACTIONS(3590), + [anon_sym_u_SQUOTE] = ACTIONS(3590), + [anon_sym_U_SQUOTE] = ACTIONS(3590), + [anon_sym_u8_SQUOTE] = ACTIONS(3590), + [anon_sym_SQUOTE] = ACTIONS(3590), + [anon_sym_L_DQUOTE] = ACTIONS(3590), + [anon_sym_u_DQUOTE] = ACTIONS(3590), + [anon_sym_U_DQUOTE] = ACTIONS(3590), + [anon_sym_u8_DQUOTE] = ACTIONS(3590), + [anon_sym_DQUOTE] = ACTIONS(3590), + [sym_true] = ACTIONS(3588), + [sym_false] = ACTIONS(3588), + [anon_sym_NULL] = ACTIONS(3588), + [anon_sym_nullptr] = ACTIONS(3588), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3588), + [anon_sym_decltype] = ACTIONS(3588), + [anon_sym_template] = ACTIONS(3588), + [anon_sym_try] = ACTIONS(3588), + [anon_sym_delete] = ACTIONS(3588), + [anon_sym_throw] = ACTIONS(3588), + [anon_sym_co_return] = ACTIONS(3588), + [anon_sym_co_yield] = ACTIONS(3588), + [anon_sym_R_DQUOTE] = ACTIONS(3590), + [anon_sym_LR_DQUOTE] = ACTIONS(3590), + [anon_sym_uR_DQUOTE] = ACTIONS(3590), + [anon_sym_UR_DQUOTE] = ACTIONS(3590), + [anon_sym_u8R_DQUOTE] = ACTIONS(3590), + [anon_sym_co_await] = ACTIONS(3588), + [anon_sym_new] = ACTIONS(3588), + [anon_sym_requires] = ACTIONS(3588), + [anon_sym_CARET_CARET] = ACTIONS(3590), + [anon_sym_LBRACK_COLON] = ACTIONS(3590), + [sym_this] = ACTIONS(3588), + }, + [STATE(1225)] = { + [sym_identifier] = ACTIONS(3580), + [anon_sym_LPAREN2] = ACTIONS(3582), + [anon_sym_BANG] = ACTIONS(3582), + [anon_sym_TILDE] = ACTIONS(3582), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_STAR] = ACTIONS(3582), + [anon_sym_AMP] = ACTIONS(3582), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym___extension__] = ACTIONS(3580), + [anon_sym_typedef] = ACTIONS(3580), + [anon_sym_virtual] = ACTIONS(3580), + [anon_sym_extern] = ACTIONS(3580), + [anon_sym___attribute__] = ACTIONS(3580), + [anon_sym___attribute] = ACTIONS(3580), + [anon_sym_COLON_COLON] = ACTIONS(3582), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3582), + [anon_sym___declspec] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_signed] = ACTIONS(3580), + [anon_sym_unsigned] = ACTIONS(3580), + [anon_sym_long] = ACTIONS(3580), + [anon_sym_short] = ACTIONS(3580), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_register] = ACTIONS(3580), + [anon_sym_inline] = ACTIONS(3580), + [anon_sym___inline] = ACTIONS(3580), + [anon_sym___inline__] = ACTIONS(3580), + [anon_sym___forceinline] = ACTIONS(3580), + [anon_sym_thread_local] = ACTIONS(3580), + [anon_sym___thread] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_constexpr] = ACTIONS(3580), + [anon_sym_volatile] = ACTIONS(3580), + [anon_sym_restrict] = ACTIONS(3580), + [anon_sym___restrict__] = ACTIONS(3580), + [anon_sym__Atomic] = ACTIONS(3580), + [anon_sym__Noreturn] = ACTIONS(3580), + [anon_sym_noreturn] = ACTIONS(3580), + [anon_sym__Nonnull] = ACTIONS(3580), + [anon_sym_mutable] = ACTIONS(3580), + [anon_sym_constinit] = ACTIONS(3580), + [anon_sym_consteval] = ACTIONS(3580), + [anon_sym_alignas] = ACTIONS(3580), + [anon_sym__Alignas] = ACTIONS(3580), + [sym_primitive_type] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), + [anon_sym_class] = ACTIONS(3580), + [anon_sym_struct] = ACTIONS(3580), + [anon_sym_union] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_else] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_goto] = ACTIONS(3580), + [anon_sym___try] = ACTIONS(3580), + [anon_sym___leave] = ACTIONS(3580), + [anon_sym_not] = ACTIONS(3580), + [anon_sym_compl] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3582), + [anon_sym_PLUS_PLUS] = ACTIONS(3582), + [anon_sym_sizeof] = ACTIONS(3580), + [anon_sym___alignof__] = ACTIONS(3580), + [anon_sym___alignof] = ACTIONS(3580), + [anon_sym__alignof] = ACTIONS(3580), + [anon_sym_alignof] = ACTIONS(3580), + [anon_sym__Alignof] = ACTIONS(3580), + [anon_sym_offsetof] = ACTIONS(3580), + [anon_sym__Generic] = ACTIONS(3580), + [anon_sym_typename] = ACTIONS(3580), + [anon_sym_asm] = ACTIONS(3580), + [anon_sym___asm__] = ACTIONS(3580), + [anon_sym___asm] = ACTIONS(3580), + [sym_number_literal] = ACTIONS(3582), + [anon_sym_L_SQUOTE] = ACTIONS(3582), + [anon_sym_u_SQUOTE] = ACTIONS(3582), + [anon_sym_U_SQUOTE] = ACTIONS(3582), + [anon_sym_u8_SQUOTE] = ACTIONS(3582), + [anon_sym_SQUOTE] = ACTIONS(3582), + [anon_sym_L_DQUOTE] = ACTIONS(3582), + [anon_sym_u_DQUOTE] = ACTIONS(3582), + [anon_sym_U_DQUOTE] = ACTIONS(3582), + [anon_sym_u8_DQUOTE] = ACTIONS(3582), + [anon_sym_DQUOTE] = ACTIONS(3582), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [anon_sym_NULL] = ACTIONS(3580), + [anon_sym_nullptr] = ACTIONS(3580), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3580), + [anon_sym_decltype] = ACTIONS(3580), + [anon_sym_template] = ACTIONS(3580), + [anon_sym_try] = ACTIONS(3580), + [anon_sym_delete] = ACTIONS(3580), + [anon_sym_throw] = ACTIONS(3580), + [anon_sym_co_return] = ACTIONS(3580), + [anon_sym_co_yield] = ACTIONS(3580), + [anon_sym_R_DQUOTE] = ACTIONS(3582), + [anon_sym_LR_DQUOTE] = ACTIONS(3582), + [anon_sym_uR_DQUOTE] = ACTIONS(3582), + [anon_sym_UR_DQUOTE] = ACTIONS(3582), + [anon_sym_u8R_DQUOTE] = ACTIONS(3582), + [anon_sym_co_await] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3580), + [anon_sym_requires] = ACTIONS(3580), + [anon_sym_CARET_CARET] = ACTIONS(3582), + [anon_sym_LBRACK_COLON] = ACTIONS(3582), + [sym_this] = ACTIONS(3580), + }, + [STATE(1226)] = { + [sym_identifier] = ACTIONS(3592), + [anon_sym_LPAREN2] = ACTIONS(3594), + [anon_sym_BANG] = ACTIONS(3594), + [anon_sym_TILDE] = ACTIONS(3594), [anon_sym_DASH] = ACTIONS(3592), [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON] = ACTIONS(5713), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_STAR] = ACTIONS(3594), + [anon_sym_AMP] = ACTIONS(3594), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym___extension__] = ACTIONS(3592), + [anon_sym_typedef] = ACTIONS(3592), + [anon_sym_virtual] = ACTIONS(3592), + [anon_sym_extern] = ACTIONS(3592), + [anon_sym___attribute__] = ACTIONS(3592), + [anon_sym___attribute] = ACTIONS(3592), + [anon_sym_COLON_COLON] = ACTIONS(3594), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3594), + [anon_sym___declspec] = ACTIONS(3592), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_signed] = ACTIONS(3592), + [anon_sym_unsigned] = ACTIONS(3592), + [anon_sym_long] = ACTIONS(3592), + [anon_sym_short] = ACTIONS(3592), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_static] = ACTIONS(3592), + [anon_sym_register] = ACTIONS(3592), + [anon_sym_inline] = ACTIONS(3592), + [anon_sym___inline] = ACTIONS(3592), + [anon_sym___inline__] = ACTIONS(3592), + [anon_sym___forceinline] = ACTIONS(3592), + [anon_sym_thread_local] = ACTIONS(3592), + [anon_sym___thread] = ACTIONS(3592), + [anon_sym_const] = ACTIONS(3592), + [anon_sym_constexpr] = ACTIONS(3592), + [anon_sym_volatile] = ACTIONS(3592), + [anon_sym_restrict] = ACTIONS(3592), + [anon_sym___restrict__] = ACTIONS(3592), + [anon_sym__Atomic] = ACTIONS(3592), + [anon_sym__Noreturn] = ACTIONS(3592), + [anon_sym_noreturn] = ACTIONS(3592), + [anon_sym__Nonnull] = ACTIONS(3592), + [anon_sym_mutable] = ACTIONS(3592), + [anon_sym_constinit] = ACTIONS(3592), + [anon_sym_consteval] = ACTIONS(3592), + [anon_sym_alignas] = ACTIONS(3592), + [anon_sym__Alignas] = ACTIONS(3592), + [sym_primitive_type] = ACTIONS(3592), + [anon_sym_enum] = ACTIONS(3592), + [anon_sym_class] = ACTIONS(3592), + [anon_sym_struct] = ACTIONS(3592), + [anon_sym_union] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_else] = ACTIONS(3592), + [anon_sym_switch] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_break] = ACTIONS(3592), + [anon_sym_continue] = ACTIONS(3592), + [anon_sym_goto] = ACTIONS(3592), + [anon_sym___try] = ACTIONS(3592), + [anon_sym___leave] = ACTIONS(3592), [anon_sym_not] = ACTIONS(3592), [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [anon_sym_DASH_DASH] = ACTIONS(3594), + [anon_sym_PLUS_PLUS] = ACTIONS(3594), + [anon_sym_sizeof] = ACTIONS(3592), + [anon_sym___alignof__] = ACTIONS(3592), + [anon_sym___alignof] = ACTIONS(3592), + [anon_sym__alignof] = ACTIONS(3592), + [anon_sym_alignof] = ACTIONS(3592), + [anon_sym__Alignof] = ACTIONS(3592), + [anon_sym_offsetof] = ACTIONS(3592), + [anon_sym__Generic] = ACTIONS(3592), + [anon_sym_typename] = ACTIONS(3592), + [anon_sym_asm] = ACTIONS(3592), + [anon_sym___asm__] = ACTIONS(3592), + [anon_sym___asm] = ACTIONS(3592), + [sym_number_literal] = ACTIONS(3594), + [anon_sym_L_SQUOTE] = ACTIONS(3594), + [anon_sym_u_SQUOTE] = ACTIONS(3594), + [anon_sym_U_SQUOTE] = ACTIONS(3594), + [anon_sym_u8_SQUOTE] = ACTIONS(3594), + [anon_sym_SQUOTE] = ACTIONS(3594), + [anon_sym_L_DQUOTE] = ACTIONS(3594), + [anon_sym_u_DQUOTE] = ACTIONS(3594), + [anon_sym_U_DQUOTE] = ACTIONS(3594), + [anon_sym_u8_DQUOTE] = ACTIONS(3594), + [anon_sym_DQUOTE] = ACTIONS(3594), + [sym_true] = ACTIONS(3592), + [sym_false] = ACTIONS(3592), + [anon_sym_NULL] = ACTIONS(3592), + [anon_sym_nullptr] = ACTIONS(3592), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3592), + [anon_sym_decltype] = ACTIONS(3592), + [anon_sym_template] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_delete] = ACTIONS(3592), + [anon_sym_throw] = ACTIONS(3592), + [anon_sym_co_return] = ACTIONS(3592), + [anon_sym_co_yield] = ACTIONS(3592), + [anon_sym_R_DQUOTE] = ACTIONS(3594), + [anon_sym_LR_DQUOTE] = ACTIONS(3594), + [anon_sym_uR_DQUOTE] = ACTIONS(3594), + [anon_sym_UR_DQUOTE] = ACTIONS(3594), + [anon_sym_u8R_DQUOTE] = ACTIONS(3594), + [anon_sym_co_await] = ACTIONS(3592), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_requires] = ACTIONS(3592), + [anon_sym_CARET_CARET] = ACTIONS(3594), + [anon_sym_LBRACK_COLON] = ACTIONS(3594), + [sym_this] = ACTIONS(3592), }, - [STATE(1253)] = { - [sym_expression] = STATE(6795), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11384), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(5715), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [STATE(1227)] = { + [sym_identifier] = ACTIONS(3540), + [anon_sym_LPAREN2] = ACTIONS(3542), + [anon_sym_BANG] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_STAR] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_SEMI] = ACTIONS(3542), + [anon_sym___extension__] = ACTIONS(3540), + [anon_sym_typedef] = ACTIONS(3540), + [anon_sym_virtual] = ACTIONS(3540), + [anon_sym_extern] = ACTIONS(3540), + [anon_sym___attribute__] = ACTIONS(3540), + [anon_sym___attribute] = ACTIONS(3540), + [anon_sym_COLON_COLON] = ACTIONS(3542), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3542), + [anon_sym___declspec] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_signed] = ACTIONS(3540), + [anon_sym_unsigned] = ACTIONS(3540), + [anon_sym_long] = ACTIONS(3540), + [anon_sym_short] = ACTIONS(3540), + [anon_sym_LBRACK] = ACTIONS(3540), + [anon_sym_static] = ACTIONS(3540), + [anon_sym_register] = ACTIONS(3540), + [anon_sym_inline] = ACTIONS(3540), + [anon_sym___inline] = ACTIONS(3540), + [anon_sym___inline__] = ACTIONS(3540), + [anon_sym___forceinline] = ACTIONS(3540), + [anon_sym_thread_local] = ACTIONS(3540), + [anon_sym___thread] = ACTIONS(3540), + [anon_sym_const] = ACTIONS(3540), + [anon_sym_constexpr] = ACTIONS(3540), + [anon_sym_volatile] = ACTIONS(3540), + [anon_sym_restrict] = ACTIONS(3540), + [anon_sym___restrict__] = ACTIONS(3540), + [anon_sym__Atomic] = ACTIONS(3540), + [anon_sym__Noreturn] = ACTIONS(3540), + [anon_sym_noreturn] = ACTIONS(3540), + [anon_sym__Nonnull] = ACTIONS(3540), + [anon_sym_mutable] = ACTIONS(3540), + [anon_sym_constinit] = ACTIONS(3540), + [anon_sym_consteval] = ACTIONS(3540), + [anon_sym_alignas] = ACTIONS(3540), + [anon_sym__Alignas] = ACTIONS(3540), + [sym_primitive_type] = ACTIONS(3540), + [anon_sym_enum] = ACTIONS(3540), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3540), + [anon_sym_union] = ACTIONS(3540), + [anon_sym_if] = ACTIONS(3540), + [anon_sym_else] = ACTIONS(3540), + [anon_sym_switch] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3540), + [anon_sym_do] = ACTIONS(3540), + [anon_sym_for] = ACTIONS(3540), + [anon_sym_return] = ACTIONS(3540), + [anon_sym_break] = ACTIONS(3540), + [anon_sym_continue] = ACTIONS(3540), + [anon_sym_goto] = ACTIONS(3540), + [anon_sym___try] = ACTIONS(3540), + [anon_sym___leave] = ACTIONS(3540), + [anon_sym_not] = ACTIONS(3540), + [anon_sym_compl] = ACTIONS(3540), + [anon_sym_DASH_DASH] = ACTIONS(3542), + [anon_sym_PLUS_PLUS] = ACTIONS(3542), + [anon_sym_sizeof] = ACTIONS(3540), + [anon_sym___alignof__] = ACTIONS(3540), + [anon_sym___alignof] = ACTIONS(3540), + [anon_sym__alignof] = ACTIONS(3540), + [anon_sym_alignof] = ACTIONS(3540), + [anon_sym__Alignof] = ACTIONS(3540), + [anon_sym_offsetof] = ACTIONS(3540), + [anon_sym__Generic] = ACTIONS(3540), + [anon_sym_typename] = ACTIONS(3540), + [anon_sym_asm] = ACTIONS(3540), + [anon_sym___asm__] = ACTIONS(3540), + [anon_sym___asm] = ACTIONS(3540), + [sym_number_literal] = ACTIONS(3542), + [anon_sym_L_SQUOTE] = ACTIONS(3542), + [anon_sym_u_SQUOTE] = ACTIONS(3542), + [anon_sym_U_SQUOTE] = ACTIONS(3542), + [anon_sym_u8_SQUOTE] = ACTIONS(3542), + [anon_sym_SQUOTE] = ACTIONS(3542), + [anon_sym_L_DQUOTE] = ACTIONS(3542), + [anon_sym_u_DQUOTE] = ACTIONS(3542), + [anon_sym_U_DQUOTE] = ACTIONS(3542), + [anon_sym_u8_DQUOTE] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [sym_true] = ACTIONS(3540), + [sym_false] = ACTIONS(3540), + [anon_sym_NULL] = ACTIONS(3540), + [anon_sym_nullptr] = ACTIONS(3540), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3540), + [anon_sym_decltype] = ACTIONS(3540), + [anon_sym_template] = ACTIONS(3540), + [anon_sym_try] = ACTIONS(3540), + [anon_sym_delete] = ACTIONS(3540), + [anon_sym_throw] = ACTIONS(3540), + [anon_sym_co_return] = ACTIONS(3540), + [anon_sym_co_yield] = ACTIONS(3540), + [anon_sym_R_DQUOTE] = ACTIONS(3542), + [anon_sym_LR_DQUOTE] = ACTIONS(3542), + [anon_sym_uR_DQUOTE] = ACTIONS(3542), + [anon_sym_UR_DQUOTE] = ACTIONS(3542), + [anon_sym_u8R_DQUOTE] = ACTIONS(3542), + [anon_sym_co_await] = ACTIONS(3540), + [anon_sym_new] = ACTIONS(3540), + [anon_sym_requires] = ACTIONS(3540), + [anon_sym_CARET_CARET] = ACTIONS(3542), + [anon_sym_LBRACK_COLON] = ACTIONS(3542), + [sym_this] = ACTIONS(3540), }, - [STATE(1254)] = { - [sym_expression] = STATE(6815), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10331), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1228)] = { + [sym_identifier] = ACTIONS(3384), + [anon_sym_LPAREN2] = ACTIONS(3389), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3384), + [anon_sym_PLUS] = ACTIONS(3384), + [anon_sym_STAR] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3389), + [anon_sym_SEMI] = ACTIONS(3389), + [anon_sym___extension__] = ACTIONS(3384), + [anon_sym_typedef] = ACTIONS(3384), + [anon_sym_virtual] = ACTIONS(3384), + [anon_sym_extern] = ACTIONS(3384), + [anon_sym___attribute__] = ACTIONS(3384), + [anon_sym___attribute] = ACTIONS(3384), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3389), + [anon_sym___declspec] = ACTIONS(3384), + [anon_sym_LBRACE] = ACTIONS(3389), + [anon_sym_signed] = ACTIONS(3384), + [anon_sym_unsigned] = ACTIONS(3384), + [anon_sym_long] = ACTIONS(3384), + [anon_sym_short] = ACTIONS(3384), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3384), + [anon_sym_register] = ACTIONS(3384), + [anon_sym_inline] = ACTIONS(3384), + [anon_sym___inline] = ACTIONS(3384), + [anon_sym___inline__] = ACTIONS(3384), + [anon_sym___forceinline] = ACTIONS(3384), + [anon_sym_thread_local] = ACTIONS(3384), + [anon_sym___thread] = 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__Nonnull] = ACTIONS(3384), + [anon_sym_mutable] = ACTIONS(3384), + [anon_sym_constinit] = ACTIONS(3384), + [anon_sym_consteval] = ACTIONS(3384), + [anon_sym_alignas] = ACTIONS(3384), + [anon_sym__Alignas] = 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_else] = ACTIONS(3384), + [anon_sym_switch] = 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___try] = ACTIONS(3384), + [anon_sym___leave] = ACTIONS(3384), + [anon_sym_not] = ACTIONS(3384), + [anon_sym_compl] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3389), + [anon_sym_PLUS_PLUS] = ACTIONS(3389), + [anon_sym_sizeof] = ACTIONS(3384), + [anon_sym___alignof__] = ACTIONS(3384), + [anon_sym___alignof] = ACTIONS(3384), + [anon_sym__alignof] = ACTIONS(3384), + [anon_sym_alignof] = ACTIONS(3384), + [anon_sym__Alignof] = ACTIONS(3384), + [anon_sym_offsetof] = ACTIONS(3384), + [anon_sym__Generic] = ACTIONS(3384), + [anon_sym_typename] = ACTIONS(3384), + [anon_sym_asm] = ACTIONS(3384), + [anon_sym___asm__] = ACTIONS(3384), + [anon_sym___asm] = ACTIONS(3384), + [sym_number_literal] = ACTIONS(3389), + [anon_sym_L_SQUOTE] = ACTIONS(3389), + [anon_sym_u_SQUOTE] = ACTIONS(3389), + [anon_sym_U_SQUOTE] = ACTIONS(3389), + [anon_sym_u8_SQUOTE] = ACTIONS(3389), + [anon_sym_SQUOTE] = ACTIONS(3389), + [anon_sym_L_DQUOTE] = ACTIONS(3389), + [anon_sym_u_DQUOTE] = ACTIONS(3389), + [anon_sym_U_DQUOTE] = ACTIONS(3389), + [anon_sym_u8_DQUOTE] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(3389), + [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_template] = ACTIONS(3384), + [anon_sym_try] = ACTIONS(3384), + [anon_sym_delete] = ACTIONS(3384), + [anon_sym_throw] = ACTIONS(3384), + [anon_sym_co_return] = ACTIONS(3384), + [anon_sym_co_yield] = ACTIONS(3384), + [anon_sym_R_DQUOTE] = ACTIONS(3389), + [anon_sym_LR_DQUOTE] = ACTIONS(3389), + [anon_sym_uR_DQUOTE] = ACTIONS(3389), + [anon_sym_UR_DQUOTE] = ACTIONS(3389), + [anon_sym_u8R_DQUOTE] = ACTIONS(3389), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3384), + [anon_sym_requires] = ACTIONS(3384), + [anon_sym_CARET_CARET] = ACTIONS(3389), + [anon_sym_LBRACK_COLON] = ACTIONS(3389), + [sym_this] = ACTIONS(3384), + }, + [STATE(1229)] = { + [sym_identifier] = ACTIONS(3560), + [anon_sym_LPAREN2] = ACTIONS(3562), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3560), + [anon_sym_PLUS] = ACTIONS(3560), + [anon_sym_STAR] = ACTIONS(3562), + [anon_sym_AMP] = ACTIONS(3562), + [anon_sym_SEMI] = ACTIONS(3562), + [anon_sym___extension__] = ACTIONS(3560), + [anon_sym_typedef] = ACTIONS(3560), + [anon_sym_virtual] = ACTIONS(3560), + [anon_sym_extern] = ACTIONS(3560), + [anon_sym___attribute__] = ACTIONS(3560), + [anon_sym___attribute] = ACTIONS(3560), + [anon_sym_COLON_COLON] = ACTIONS(3562), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3562), + [anon_sym___declspec] = ACTIONS(3560), + [anon_sym_LBRACE] = ACTIONS(3562), + [anon_sym_signed] = ACTIONS(3560), + [anon_sym_unsigned] = ACTIONS(3560), + [anon_sym_long] = ACTIONS(3560), + [anon_sym_short] = ACTIONS(3560), + [anon_sym_LBRACK] = ACTIONS(3560), + [anon_sym_static] = ACTIONS(3560), + [anon_sym_register] = ACTIONS(3560), + [anon_sym_inline] = ACTIONS(3560), + [anon_sym___inline] = ACTIONS(3560), + [anon_sym___inline__] = ACTIONS(3560), + [anon_sym___forceinline] = ACTIONS(3560), + [anon_sym_thread_local] = ACTIONS(3560), + [anon_sym___thread] = ACTIONS(3560), + [anon_sym_const] = ACTIONS(3560), + [anon_sym_constexpr] = ACTIONS(3560), + [anon_sym_volatile] = ACTIONS(3560), + [anon_sym_restrict] = ACTIONS(3560), + [anon_sym___restrict__] = ACTIONS(3560), + [anon_sym__Atomic] = ACTIONS(3560), + [anon_sym__Noreturn] = ACTIONS(3560), + [anon_sym_noreturn] = ACTIONS(3560), + [anon_sym__Nonnull] = ACTIONS(3560), + [anon_sym_mutable] = ACTIONS(3560), + [anon_sym_constinit] = ACTIONS(3560), + [anon_sym_consteval] = ACTIONS(3560), + [anon_sym_alignas] = ACTIONS(3560), + [anon_sym__Alignas] = ACTIONS(3560), + [sym_primitive_type] = ACTIONS(3560), + [anon_sym_enum] = ACTIONS(3560), + [anon_sym_class] = ACTIONS(3560), + [anon_sym_struct] = ACTIONS(3560), + [anon_sym_union] = ACTIONS(3560), + [anon_sym_if] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(3560), + [anon_sym_switch] = ACTIONS(3560), + [anon_sym_while] = ACTIONS(3560), + [anon_sym_do] = ACTIONS(3560), + [anon_sym_for] = ACTIONS(3560), + [anon_sym_return] = ACTIONS(3560), + [anon_sym_break] = ACTIONS(3560), + [anon_sym_continue] = ACTIONS(3560), + [anon_sym_goto] = ACTIONS(3560), + [anon_sym___try] = ACTIONS(3560), + [anon_sym___leave] = ACTIONS(3560), + [anon_sym_not] = ACTIONS(3560), + [anon_sym_compl] = ACTIONS(3560), + [anon_sym_DASH_DASH] = ACTIONS(3562), + [anon_sym_PLUS_PLUS] = ACTIONS(3562), + [anon_sym_sizeof] = ACTIONS(3560), + [anon_sym___alignof__] = ACTIONS(3560), + [anon_sym___alignof] = ACTIONS(3560), + [anon_sym__alignof] = ACTIONS(3560), + [anon_sym_alignof] = ACTIONS(3560), + [anon_sym__Alignof] = ACTIONS(3560), + [anon_sym_offsetof] = ACTIONS(3560), + [anon_sym__Generic] = ACTIONS(3560), + [anon_sym_typename] = ACTIONS(3560), + [anon_sym_asm] = ACTIONS(3560), + [anon_sym___asm__] = ACTIONS(3560), + [anon_sym___asm] = ACTIONS(3560), + [sym_number_literal] = ACTIONS(3562), + [anon_sym_L_SQUOTE] = ACTIONS(3562), + [anon_sym_u_SQUOTE] = ACTIONS(3562), + [anon_sym_U_SQUOTE] = ACTIONS(3562), + [anon_sym_u8_SQUOTE] = ACTIONS(3562), + [anon_sym_SQUOTE] = ACTIONS(3562), + [anon_sym_L_DQUOTE] = ACTIONS(3562), + [anon_sym_u_DQUOTE] = ACTIONS(3562), + [anon_sym_U_DQUOTE] = ACTIONS(3562), + [anon_sym_u8_DQUOTE] = ACTIONS(3562), + [anon_sym_DQUOTE] = ACTIONS(3562), + [sym_true] = ACTIONS(3560), + [sym_false] = ACTIONS(3560), + [anon_sym_NULL] = ACTIONS(3560), + [anon_sym_nullptr] = ACTIONS(3560), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3560), + [anon_sym_decltype] = ACTIONS(3560), + [anon_sym_template] = ACTIONS(3560), + [anon_sym_try] = ACTIONS(3560), + [anon_sym_delete] = ACTIONS(3560), + [anon_sym_throw] = ACTIONS(3560), + [anon_sym_co_return] = ACTIONS(3560), + [anon_sym_co_yield] = ACTIONS(3560), + [anon_sym_R_DQUOTE] = ACTIONS(3562), + [anon_sym_LR_DQUOTE] = ACTIONS(3562), + [anon_sym_uR_DQUOTE] = ACTIONS(3562), + [anon_sym_UR_DQUOTE] = ACTIONS(3562), + [anon_sym_u8R_DQUOTE] = ACTIONS(3562), + [anon_sym_co_await] = ACTIONS(3560), + [anon_sym_new] = ACTIONS(3560), + [anon_sym_requires] = ACTIONS(3560), + [anon_sym_CARET_CARET] = ACTIONS(3562), + [anon_sym_LBRACK_COLON] = ACTIONS(3562), + [sym_this] = ACTIONS(3560), + }, + [STATE(1230)] = { + [sym_identifier] = ACTIONS(3634), + [anon_sym_LPAREN2] = ACTIONS(3636), + [anon_sym_BANG] = ACTIONS(3636), + [anon_sym_TILDE] = ACTIONS(3636), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_STAR] = ACTIONS(3636), + [anon_sym_AMP] = ACTIONS(3636), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym___extension__] = ACTIONS(3634), + [anon_sym_typedef] = ACTIONS(3634), + [anon_sym_virtual] = ACTIONS(3634), + [anon_sym_extern] = ACTIONS(3634), + [anon_sym___attribute__] = ACTIONS(3634), + [anon_sym___attribute] = ACTIONS(3634), + [anon_sym_COLON_COLON] = ACTIONS(3636), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3636), + [anon_sym___declspec] = ACTIONS(3634), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_signed] = ACTIONS(3634), + [anon_sym_unsigned] = ACTIONS(3634), + [anon_sym_long] = ACTIONS(3634), + [anon_sym_short] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3634), + [anon_sym_static] = ACTIONS(3634), + [anon_sym_register] = ACTIONS(3634), + [anon_sym_inline] = ACTIONS(3634), + [anon_sym___inline] = ACTIONS(3634), + [anon_sym___inline__] = ACTIONS(3634), + [anon_sym___forceinline] = ACTIONS(3634), + [anon_sym_thread_local] = ACTIONS(3634), + [anon_sym___thread] = ACTIONS(3634), + [anon_sym_const] = ACTIONS(3634), + [anon_sym_constexpr] = ACTIONS(3634), + [anon_sym_volatile] = ACTIONS(3634), + [anon_sym_restrict] = ACTIONS(3634), + [anon_sym___restrict__] = ACTIONS(3634), + [anon_sym__Atomic] = ACTIONS(3634), + [anon_sym__Noreturn] = ACTIONS(3634), + [anon_sym_noreturn] = ACTIONS(3634), + [anon_sym__Nonnull] = ACTIONS(3634), + [anon_sym_mutable] = ACTIONS(3634), + [anon_sym_constinit] = ACTIONS(3634), + [anon_sym_consteval] = ACTIONS(3634), + [anon_sym_alignas] = ACTIONS(3634), + [anon_sym__Alignas] = ACTIONS(3634), + [sym_primitive_type] = ACTIONS(3634), + [anon_sym_enum] = ACTIONS(3634), + [anon_sym_class] = ACTIONS(3634), + [anon_sym_struct] = ACTIONS(3634), + [anon_sym_union] = ACTIONS(3634), + [anon_sym_if] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(3634), + [anon_sym_switch] = ACTIONS(3634), + [anon_sym_while] = ACTIONS(3634), + [anon_sym_do] = ACTIONS(3634), + [anon_sym_for] = ACTIONS(3634), + [anon_sym_return] = ACTIONS(3634), + [anon_sym_break] = ACTIONS(3634), + [anon_sym_continue] = ACTIONS(3634), + [anon_sym_goto] = ACTIONS(3634), + [anon_sym___try] = ACTIONS(3634), + [anon_sym___leave] = ACTIONS(3634), + [anon_sym_not] = ACTIONS(3634), + [anon_sym_compl] = ACTIONS(3634), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_sizeof] = ACTIONS(3634), + [anon_sym___alignof__] = ACTIONS(3634), + [anon_sym___alignof] = ACTIONS(3634), + [anon_sym__alignof] = ACTIONS(3634), + [anon_sym_alignof] = ACTIONS(3634), + [anon_sym__Alignof] = ACTIONS(3634), + [anon_sym_offsetof] = ACTIONS(3634), + [anon_sym__Generic] = ACTIONS(3634), + [anon_sym_typename] = ACTIONS(3634), + [anon_sym_asm] = ACTIONS(3634), + [anon_sym___asm__] = ACTIONS(3634), + [anon_sym___asm] = ACTIONS(3634), + [sym_number_literal] = ACTIONS(3636), + [anon_sym_L_SQUOTE] = ACTIONS(3636), + [anon_sym_u_SQUOTE] = ACTIONS(3636), + [anon_sym_U_SQUOTE] = ACTIONS(3636), + [anon_sym_u8_SQUOTE] = ACTIONS(3636), + [anon_sym_SQUOTE] = ACTIONS(3636), + [anon_sym_L_DQUOTE] = ACTIONS(3636), + [anon_sym_u_DQUOTE] = ACTIONS(3636), + [anon_sym_U_DQUOTE] = ACTIONS(3636), + [anon_sym_u8_DQUOTE] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(3636), + [sym_true] = ACTIONS(3634), + [sym_false] = ACTIONS(3634), + [anon_sym_NULL] = ACTIONS(3634), + [anon_sym_nullptr] = ACTIONS(3634), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3634), + [anon_sym_decltype] = ACTIONS(3634), + [anon_sym_template] = ACTIONS(3634), + [anon_sym_try] = ACTIONS(3634), + [anon_sym_delete] = ACTIONS(3634), + [anon_sym_throw] = ACTIONS(3634), + [anon_sym_co_return] = ACTIONS(3634), + [anon_sym_co_yield] = ACTIONS(3634), + [anon_sym_R_DQUOTE] = ACTIONS(3636), + [anon_sym_LR_DQUOTE] = ACTIONS(3636), + [anon_sym_uR_DQUOTE] = ACTIONS(3636), + [anon_sym_UR_DQUOTE] = ACTIONS(3636), + [anon_sym_u8R_DQUOTE] = ACTIONS(3636), + [anon_sym_co_await] = ACTIONS(3634), + [anon_sym_new] = ACTIONS(3634), + [anon_sym_requires] = ACTIONS(3634), + [anon_sym_CARET_CARET] = ACTIONS(3636), + [anon_sym_LBRACK_COLON] = ACTIONS(3636), + [sym_this] = ACTIONS(3634), + }, + [STATE(1231)] = { + [sym_identifier] = ACTIONS(3310), + [anon_sym_LPAREN2] = ACTIONS(3315), + [anon_sym_BANG] = ACTIONS(3315), + [anon_sym_TILDE] = ACTIONS(3315), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3315), + [anon_sym_AMP] = ACTIONS(3315), + [anon_sym_SEMI] = ACTIONS(3315), + [anon_sym___extension__] = ACTIONS(3310), + [anon_sym_typedef] = ACTIONS(3310), + [anon_sym_virtual] = ACTIONS(3310), + [anon_sym_extern] = ACTIONS(3310), + [anon_sym___attribute__] = ACTIONS(3310), + [anon_sym___attribute] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(3315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3315), + [anon_sym___declspec] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3315), + [anon_sym_signed] = ACTIONS(3310), + [anon_sym_unsigned] = ACTIONS(3310), + [anon_sym_long] = ACTIONS(3310), + [anon_sym_short] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3310), + [anon_sym_static] = ACTIONS(3310), + [anon_sym_register] = ACTIONS(3310), + [anon_sym_inline] = ACTIONS(3310), + [anon_sym___inline] = ACTIONS(3310), + [anon_sym___inline__] = ACTIONS(3310), + [anon_sym___forceinline] = ACTIONS(3310), + [anon_sym_thread_local] = ACTIONS(3310), + [anon_sym___thread] = ACTIONS(3310), + [anon_sym_const] = ACTIONS(3310), + [anon_sym_constexpr] = ACTIONS(3310), + [anon_sym_volatile] = ACTIONS(3310), + [anon_sym_restrict] = ACTIONS(3310), + [anon_sym___restrict__] = ACTIONS(3310), + [anon_sym__Atomic] = ACTIONS(3310), + [anon_sym__Noreturn] = ACTIONS(3310), + [anon_sym_noreturn] = ACTIONS(3310), + [anon_sym__Nonnull] = ACTIONS(3310), + [anon_sym_mutable] = ACTIONS(3310), + [anon_sym_constinit] = ACTIONS(3310), + [anon_sym_consteval] = ACTIONS(3310), + [anon_sym_alignas] = ACTIONS(3310), + [anon_sym__Alignas] = ACTIONS(3310), + [sym_primitive_type] = ACTIONS(3310), + [anon_sym_enum] = ACTIONS(3310), + [anon_sym_class] = ACTIONS(3310), + [anon_sym_struct] = ACTIONS(3310), + [anon_sym_union] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_switch] = ACTIONS(3310), + [anon_sym_while] = ACTIONS(3310), + [anon_sym_do] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_goto] = ACTIONS(3310), + [anon_sym___try] = ACTIONS(3310), + [anon_sym___leave] = ACTIONS(3310), + [anon_sym_not] = ACTIONS(3310), + [anon_sym_compl] = ACTIONS(3310), + [anon_sym_DASH_DASH] = ACTIONS(3315), + [anon_sym_PLUS_PLUS] = ACTIONS(3315), + [anon_sym_sizeof] = ACTIONS(3310), + [anon_sym___alignof__] = ACTIONS(3310), + [anon_sym___alignof] = ACTIONS(3310), + [anon_sym__alignof] = ACTIONS(3310), + [anon_sym_alignof] = ACTIONS(3310), + [anon_sym__Alignof] = ACTIONS(3310), + [anon_sym_offsetof] = ACTIONS(3310), + [anon_sym__Generic] = ACTIONS(3310), + [anon_sym_typename] = ACTIONS(3310), + [anon_sym_asm] = ACTIONS(3310), + [anon_sym___asm__] = ACTIONS(3310), + [anon_sym___asm] = ACTIONS(3310), + [sym_number_literal] = ACTIONS(3315), + [anon_sym_L_SQUOTE] = ACTIONS(3315), + [anon_sym_u_SQUOTE] = ACTIONS(3315), + [anon_sym_U_SQUOTE] = ACTIONS(3315), + [anon_sym_u8_SQUOTE] = ACTIONS(3315), + [anon_sym_SQUOTE] = ACTIONS(3315), + [anon_sym_L_DQUOTE] = ACTIONS(3315), + [anon_sym_u_DQUOTE] = ACTIONS(3315), + [anon_sym_U_DQUOTE] = ACTIONS(3315), + [anon_sym_u8_DQUOTE] = ACTIONS(3315), + [anon_sym_DQUOTE] = ACTIONS(3315), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [anon_sym_NULL] = ACTIONS(3310), + [anon_sym_nullptr] = ACTIONS(3310), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3310), + [anon_sym_decltype] = ACTIONS(3310), + [anon_sym_template] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_delete] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_co_return] = ACTIONS(3310), + [anon_sym_co_yield] = ACTIONS(3310), + [anon_sym_R_DQUOTE] = ACTIONS(3315), + [anon_sym_LR_DQUOTE] = ACTIONS(3315), + [anon_sym_uR_DQUOTE] = ACTIONS(3315), + [anon_sym_UR_DQUOTE] = ACTIONS(3315), + [anon_sym_u8R_DQUOTE] = ACTIONS(3315), + [anon_sym_co_await] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3310), + [anon_sym_requires] = ACTIONS(3310), + [anon_sym_CARET_CARET] = ACTIONS(3315), + [anon_sym_LBRACK_COLON] = ACTIONS(3315), + [sym_this] = ACTIONS(3310), + }, + [STATE(1232)] = { + [sym_identifier] = ACTIONS(3520), + [anon_sym_LPAREN2] = ACTIONS(3522), + [anon_sym_BANG] = ACTIONS(3522), + [anon_sym_TILDE] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3520), + [anon_sym_PLUS] = ACTIONS(3520), + [anon_sym_STAR] = ACTIONS(3522), + [anon_sym_AMP] = ACTIONS(3522), + [anon_sym_SEMI] = ACTIONS(3522), + [anon_sym___extension__] = ACTIONS(3520), + [anon_sym_typedef] = ACTIONS(3520), + [anon_sym_virtual] = ACTIONS(3520), + [anon_sym_extern] = ACTIONS(3520), + [anon_sym___attribute__] = ACTIONS(3520), + [anon_sym___attribute] = ACTIONS(3520), + [anon_sym_COLON_COLON] = ACTIONS(3522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3522), + [anon_sym___declspec] = ACTIONS(3520), + [anon_sym_LBRACE] = ACTIONS(3522), + [anon_sym_signed] = ACTIONS(3520), + [anon_sym_unsigned] = ACTIONS(3520), + [anon_sym_long] = ACTIONS(3520), + [anon_sym_short] = ACTIONS(3520), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_static] = ACTIONS(3520), + [anon_sym_register] = ACTIONS(3520), + [anon_sym_inline] = ACTIONS(3520), + [anon_sym___inline] = ACTIONS(3520), + [anon_sym___inline__] = ACTIONS(3520), + [anon_sym___forceinline] = ACTIONS(3520), + [anon_sym_thread_local] = ACTIONS(3520), + [anon_sym___thread] = ACTIONS(3520), + [anon_sym_const] = ACTIONS(3520), + [anon_sym_constexpr] = ACTIONS(3520), + [anon_sym_volatile] = ACTIONS(3520), + [anon_sym_restrict] = ACTIONS(3520), + [anon_sym___restrict__] = ACTIONS(3520), + [anon_sym__Atomic] = ACTIONS(3520), + [anon_sym__Noreturn] = ACTIONS(3520), + [anon_sym_noreturn] = ACTIONS(3520), + [anon_sym__Nonnull] = ACTIONS(3520), + [anon_sym_mutable] = ACTIONS(3520), + [anon_sym_constinit] = ACTIONS(3520), + [anon_sym_consteval] = ACTIONS(3520), + [anon_sym_alignas] = ACTIONS(3520), + [anon_sym__Alignas] = ACTIONS(3520), + [sym_primitive_type] = ACTIONS(3520), + [anon_sym_enum] = ACTIONS(3520), + [anon_sym_class] = ACTIONS(3520), + [anon_sym_struct] = ACTIONS(3520), + [anon_sym_union] = ACTIONS(3520), + [anon_sym_if] = ACTIONS(3520), + [anon_sym_else] = ACTIONS(3520), + [anon_sym_switch] = ACTIONS(3520), + [anon_sym_while] = ACTIONS(3520), + [anon_sym_do] = ACTIONS(3520), + [anon_sym_for] = ACTIONS(3520), + [anon_sym_return] = ACTIONS(3520), + [anon_sym_break] = ACTIONS(3520), + [anon_sym_continue] = ACTIONS(3520), + [anon_sym_goto] = ACTIONS(3520), + [anon_sym___try] = ACTIONS(3520), + [anon_sym___leave] = ACTIONS(3520), + [anon_sym_not] = ACTIONS(3520), + [anon_sym_compl] = ACTIONS(3520), + [anon_sym_DASH_DASH] = ACTIONS(3522), + [anon_sym_PLUS_PLUS] = ACTIONS(3522), + [anon_sym_sizeof] = ACTIONS(3520), + [anon_sym___alignof__] = ACTIONS(3520), + [anon_sym___alignof] = ACTIONS(3520), + [anon_sym__alignof] = ACTIONS(3520), + [anon_sym_alignof] = ACTIONS(3520), + [anon_sym__Alignof] = ACTIONS(3520), + [anon_sym_offsetof] = ACTIONS(3520), + [anon_sym__Generic] = ACTIONS(3520), + [anon_sym_typename] = ACTIONS(3520), + [anon_sym_asm] = ACTIONS(3520), + [anon_sym___asm__] = ACTIONS(3520), + [anon_sym___asm] = ACTIONS(3520), + [sym_number_literal] = ACTIONS(3522), + [anon_sym_L_SQUOTE] = ACTIONS(3522), + [anon_sym_u_SQUOTE] = ACTIONS(3522), + [anon_sym_U_SQUOTE] = ACTIONS(3522), + [anon_sym_u8_SQUOTE] = ACTIONS(3522), + [anon_sym_SQUOTE] = ACTIONS(3522), + [anon_sym_L_DQUOTE] = ACTIONS(3522), + [anon_sym_u_DQUOTE] = ACTIONS(3522), + [anon_sym_U_DQUOTE] = ACTIONS(3522), + [anon_sym_u8_DQUOTE] = ACTIONS(3522), + [anon_sym_DQUOTE] = ACTIONS(3522), + [sym_true] = ACTIONS(3520), + [sym_false] = ACTIONS(3520), + [anon_sym_NULL] = ACTIONS(3520), + [anon_sym_nullptr] = ACTIONS(3520), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3520), + [anon_sym_decltype] = ACTIONS(3520), + [anon_sym_template] = ACTIONS(3520), + [anon_sym_try] = ACTIONS(3520), + [anon_sym_delete] = ACTIONS(3520), + [anon_sym_throw] = ACTIONS(3520), + [anon_sym_co_return] = ACTIONS(3520), + [anon_sym_co_yield] = ACTIONS(3520), + [anon_sym_R_DQUOTE] = ACTIONS(3522), + [anon_sym_LR_DQUOTE] = ACTIONS(3522), + [anon_sym_uR_DQUOTE] = ACTIONS(3522), + [anon_sym_UR_DQUOTE] = ACTIONS(3522), + [anon_sym_u8R_DQUOTE] = ACTIONS(3522), + [anon_sym_co_await] = ACTIONS(3520), + [anon_sym_new] = ACTIONS(3520), + [anon_sym_requires] = ACTIONS(3520), + [anon_sym_CARET_CARET] = ACTIONS(3522), + [anon_sym_LBRACK_COLON] = ACTIONS(3522), + [sym_this] = ACTIONS(3520), + }, + [STATE(1233)] = { + [sym_identifier] = ACTIONS(3678), + [anon_sym_LPAREN2] = ACTIONS(3680), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3680), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_AMP] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym___extension__] = ACTIONS(3678), + [anon_sym_typedef] = ACTIONS(3678), + [anon_sym_virtual] = ACTIONS(3678), + [anon_sym_extern] = ACTIONS(3678), + [anon_sym___attribute__] = ACTIONS(3678), + [anon_sym___attribute] = ACTIONS(3678), + [anon_sym_COLON_COLON] = ACTIONS(3680), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3680), + [anon_sym___declspec] = ACTIONS(3678), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_signed] = ACTIONS(3678), + [anon_sym_unsigned] = ACTIONS(3678), + [anon_sym_long] = ACTIONS(3678), + [anon_sym_short] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_static] = ACTIONS(3678), + [anon_sym_register] = ACTIONS(3678), + [anon_sym_inline] = ACTIONS(3678), + [anon_sym___inline] = ACTIONS(3678), + [anon_sym___inline__] = ACTIONS(3678), + [anon_sym___forceinline] = ACTIONS(3678), + [anon_sym_thread_local] = ACTIONS(3678), + [anon_sym___thread] = ACTIONS(3678), + [anon_sym_const] = ACTIONS(3678), + [anon_sym_constexpr] = ACTIONS(3678), + [anon_sym_volatile] = ACTIONS(3678), + [anon_sym_restrict] = ACTIONS(3678), + [anon_sym___restrict__] = ACTIONS(3678), + [anon_sym__Atomic] = ACTIONS(3678), + [anon_sym__Noreturn] = ACTIONS(3678), + [anon_sym_noreturn] = ACTIONS(3678), + [anon_sym__Nonnull] = ACTIONS(3678), + [anon_sym_mutable] = ACTIONS(3678), + [anon_sym_constinit] = ACTIONS(3678), + [anon_sym_consteval] = ACTIONS(3678), + [anon_sym_alignas] = ACTIONS(3678), + [anon_sym__Alignas] = ACTIONS(3678), + [sym_primitive_type] = ACTIONS(3678), + [anon_sym_enum] = ACTIONS(3678), + [anon_sym_class] = ACTIONS(3678), + [anon_sym_struct] = ACTIONS(3678), + [anon_sym_union] = ACTIONS(3678), + [anon_sym_if] = ACTIONS(3678), + [anon_sym_else] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_while] = ACTIONS(3678), + [anon_sym_do] = ACTIONS(3678), + [anon_sym_for] = ACTIONS(3678), + [anon_sym_return] = ACTIONS(3678), + [anon_sym_break] = ACTIONS(3678), + [anon_sym_continue] = ACTIONS(3678), + [anon_sym_goto] = ACTIONS(3678), + [anon_sym___try] = ACTIONS(3678), + [anon_sym___leave] = ACTIONS(3678), + [anon_sym_not] = ACTIONS(3678), + [anon_sym_compl] = ACTIONS(3678), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_sizeof] = ACTIONS(3678), + [anon_sym___alignof__] = ACTIONS(3678), + [anon_sym___alignof] = ACTIONS(3678), + [anon_sym__alignof] = ACTIONS(3678), + [anon_sym_alignof] = ACTIONS(3678), + [anon_sym__Alignof] = ACTIONS(3678), + [anon_sym_offsetof] = ACTIONS(3678), + [anon_sym__Generic] = ACTIONS(3678), + [anon_sym_typename] = ACTIONS(3678), + [anon_sym_asm] = ACTIONS(3678), + [anon_sym___asm__] = ACTIONS(3678), + [anon_sym___asm] = ACTIONS(3678), + [sym_number_literal] = ACTIONS(3680), + [anon_sym_L_SQUOTE] = ACTIONS(3680), + [anon_sym_u_SQUOTE] = ACTIONS(3680), + [anon_sym_U_SQUOTE] = ACTIONS(3680), + [anon_sym_u8_SQUOTE] = ACTIONS(3680), + [anon_sym_SQUOTE] = ACTIONS(3680), + [anon_sym_L_DQUOTE] = ACTIONS(3680), + [anon_sym_u_DQUOTE] = ACTIONS(3680), + [anon_sym_U_DQUOTE] = ACTIONS(3680), + [anon_sym_u8_DQUOTE] = ACTIONS(3680), + [anon_sym_DQUOTE] = ACTIONS(3680), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [anon_sym_NULL] = ACTIONS(3678), + [anon_sym_nullptr] = ACTIONS(3678), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3678), + [anon_sym_decltype] = ACTIONS(3678), + [anon_sym_template] = ACTIONS(3678), + [anon_sym_try] = ACTIONS(3678), + [anon_sym_delete] = ACTIONS(3678), + [anon_sym_throw] = ACTIONS(3678), + [anon_sym_co_return] = ACTIONS(3678), + [anon_sym_co_yield] = ACTIONS(3678), + [anon_sym_R_DQUOTE] = ACTIONS(3680), + [anon_sym_LR_DQUOTE] = ACTIONS(3680), + [anon_sym_uR_DQUOTE] = ACTIONS(3680), + [anon_sym_UR_DQUOTE] = ACTIONS(3680), + [anon_sym_u8R_DQUOTE] = ACTIONS(3680), + [anon_sym_co_await] = ACTIONS(3678), + [anon_sym_new] = ACTIONS(3678), + [anon_sym_requires] = ACTIONS(3678), + [anon_sym_CARET_CARET] = ACTIONS(3680), + [anon_sym_LBRACK_COLON] = ACTIONS(3680), + [sym_this] = ACTIONS(3678), + }, + [STATE(1234)] = { + [sym_identifier] = ACTIONS(3662), + [anon_sym_LPAREN2] = ACTIONS(3664), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_AMP] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym___extension__] = ACTIONS(3662), + [anon_sym_typedef] = ACTIONS(3662), + [anon_sym_virtual] = ACTIONS(3662), + [anon_sym_extern] = ACTIONS(3662), + [anon_sym___attribute__] = ACTIONS(3662), + [anon_sym___attribute] = ACTIONS(3662), + [anon_sym_COLON_COLON] = ACTIONS(3664), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), + [anon_sym___declspec] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_signed] = ACTIONS(3662), + [anon_sym_unsigned] = ACTIONS(3662), + [anon_sym_long] = ACTIONS(3662), + [anon_sym_short] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3662), + [anon_sym_static] = ACTIONS(3662), + [anon_sym_register] = ACTIONS(3662), + [anon_sym_inline] = ACTIONS(3662), + [anon_sym___inline] = ACTIONS(3662), + [anon_sym___inline__] = ACTIONS(3662), + [anon_sym___forceinline] = ACTIONS(3662), + [anon_sym_thread_local] = ACTIONS(3662), + [anon_sym___thread] = ACTIONS(3662), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_constexpr] = ACTIONS(3662), + [anon_sym_volatile] = ACTIONS(3662), + [anon_sym_restrict] = ACTIONS(3662), + [anon_sym___restrict__] = ACTIONS(3662), + [anon_sym__Atomic] = ACTIONS(3662), + [anon_sym__Noreturn] = ACTIONS(3662), + [anon_sym_noreturn] = ACTIONS(3662), + [anon_sym__Nonnull] = ACTIONS(3662), + [anon_sym_mutable] = ACTIONS(3662), + [anon_sym_constinit] = ACTIONS(3662), + [anon_sym_consteval] = ACTIONS(3662), + [anon_sym_alignas] = ACTIONS(3662), + [anon_sym__Alignas] = ACTIONS(3662), + [sym_primitive_type] = ACTIONS(3662), + [anon_sym_enum] = ACTIONS(3662), + [anon_sym_class] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(3662), + [anon_sym_union] = ACTIONS(3662), + [anon_sym_if] = ACTIONS(3662), + [anon_sym_else] = ACTIONS(3662), + [anon_sym_switch] = ACTIONS(3662), + [anon_sym_while] = ACTIONS(3662), + [anon_sym_do] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3662), + [anon_sym_return] = ACTIONS(3662), + [anon_sym_break] = ACTIONS(3662), + [anon_sym_continue] = ACTIONS(3662), + [anon_sym_goto] = ACTIONS(3662), + [anon_sym___try] = ACTIONS(3662), + [anon_sym___leave] = ACTIONS(3662), + [anon_sym_not] = ACTIONS(3662), + [anon_sym_compl] = ACTIONS(3662), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_sizeof] = ACTIONS(3662), + [anon_sym___alignof__] = ACTIONS(3662), + [anon_sym___alignof] = ACTIONS(3662), + [anon_sym__alignof] = ACTIONS(3662), + [anon_sym_alignof] = ACTIONS(3662), + [anon_sym__Alignof] = ACTIONS(3662), + [anon_sym_offsetof] = ACTIONS(3662), + [anon_sym__Generic] = ACTIONS(3662), + [anon_sym_typename] = ACTIONS(3662), + [anon_sym_asm] = ACTIONS(3662), + [anon_sym___asm__] = ACTIONS(3662), + [anon_sym___asm] = ACTIONS(3662), + [sym_number_literal] = ACTIONS(3664), + [anon_sym_L_SQUOTE] = ACTIONS(3664), + [anon_sym_u_SQUOTE] = ACTIONS(3664), + [anon_sym_U_SQUOTE] = ACTIONS(3664), + [anon_sym_u8_SQUOTE] = ACTIONS(3664), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_L_DQUOTE] = ACTIONS(3664), + [anon_sym_u_DQUOTE] = ACTIONS(3664), + [anon_sym_U_DQUOTE] = ACTIONS(3664), + [anon_sym_u8_DQUOTE] = ACTIONS(3664), + [anon_sym_DQUOTE] = ACTIONS(3664), + [sym_true] = ACTIONS(3662), + [sym_false] = ACTIONS(3662), + [anon_sym_NULL] = ACTIONS(3662), + [anon_sym_nullptr] = ACTIONS(3662), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3662), + [anon_sym_decltype] = ACTIONS(3662), + [anon_sym_template] = ACTIONS(3662), + [anon_sym_try] = ACTIONS(3662), + [anon_sym_delete] = ACTIONS(3662), + [anon_sym_throw] = ACTIONS(3662), + [anon_sym_co_return] = ACTIONS(3662), + [anon_sym_co_yield] = ACTIONS(3662), + [anon_sym_R_DQUOTE] = ACTIONS(3664), + [anon_sym_LR_DQUOTE] = ACTIONS(3664), + [anon_sym_uR_DQUOTE] = ACTIONS(3664), + [anon_sym_UR_DQUOTE] = ACTIONS(3664), + [anon_sym_u8R_DQUOTE] = ACTIONS(3664), + [anon_sym_co_await] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3662), + [anon_sym_requires] = ACTIONS(3662), + [anon_sym_CARET_CARET] = ACTIONS(3664), + [anon_sym_LBRACK_COLON] = ACTIONS(3664), + [sym_this] = ACTIONS(3662), + }, + [STATE(1235)] = { + [sym_identifier] = ACTIONS(3572), + [anon_sym_LPAREN2] = ACTIONS(3574), + [anon_sym_BANG] = ACTIONS(3574), + [anon_sym_TILDE] = ACTIONS(3574), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_STAR] = ACTIONS(3574), + [anon_sym_AMP] = ACTIONS(3574), + [anon_sym_SEMI] = ACTIONS(3574), + [anon_sym___extension__] = ACTIONS(3572), + [anon_sym_typedef] = ACTIONS(3572), + [anon_sym_virtual] = ACTIONS(3572), + [anon_sym_extern] = ACTIONS(3572), + [anon_sym___attribute__] = ACTIONS(3572), + [anon_sym___attribute] = ACTIONS(3572), + [anon_sym_COLON_COLON] = ACTIONS(3574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3574), + [anon_sym___declspec] = ACTIONS(3572), + [anon_sym_LBRACE] = ACTIONS(3574), + [anon_sym_signed] = ACTIONS(3572), + [anon_sym_unsigned] = ACTIONS(3572), + [anon_sym_long] = ACTIONS(3572), + [anon_sym_short] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_static] = ACTIONS(3572), + [anon_sym_register] = ACTIONS(3572), + [anon_sym_inline] = ACTIONS(3572), + [anon_sym___inline] = ACTIONS(3572), + [anon_sym___inline__] = ACTIONS(3572), + [anon_sym___forceinline] = ACTIONS(3572), + [anon_sym_thread_local] = ACTIONS(3572), + [anon_sym___thread] = ACTIONS(3572), + [anon_sym_const] = ACTIONS(3572), + [anon_sym_constexpr] = ACTIONS(3572), + [anon_sym_volatile] = ACTIONS(3572), + [anon_sym_restrict] = ACTIONS(3572), + [anon_sym___restrict__] = ACTIONS(3572), + [anon_sym__Atomic] = ACTIONS(3572), + [anon_sym__Noreturn] = ACTIONS(3572), + [anon_sym_noreturn] = ACTIONS(3572), + [anon_sym__Nonnull] = ACTIONS(3572), + [anon_sym_mutable] = ACTIONS(3572), + [anon_sym_constinit] = ACTIONS(3572), + [anon_sym_consteval] = ACTIONS(3572), + [anon_sym_alignas] = ACTIONS(3572), + [anon_sym__Alignas] = ACTIONS(3572), + [sym_primitive_type] = ACTIONS(3572), + [anon_sym_enum] = ACTIONS(3572), + [anon_sym_class] = ACTIONS(3572), + [anon_sym_struct] = ACTIONS(3572), + [anon_sym_union] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_else] = ACTIONS(3572), + [anon_sym_switch] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_break] = ACTIONS(3572), + [anon_sym_continue] = ACTIONS(3572), + [anon_sym_goto] = ACTIONS(3572), + [anon_sym___try] = ACTIONS(3572), + [anon_sym___leave] = ACTIONS(3572), + [anon_sym_not] = ACTIONS(3572), + [anon_sym_compl] = ACTIONS(3572), + [anon_sym_DASH_DASH] = ACTIONS(3574), + [anon_sym_PLUS_PLUS] = ACTIONS(3574), + [anon_sym_sizeof] = ACTIONS(3572), + [anon_sym___alignof__] = ACTIONS(3572), + [anon_sym___alignof] = ACTIONS(3572), + [anon_sym__alignof] = ACTIONS(3572), + [anon_sym_alignof] = ACTIONS(3572), + [anon_sym__Alignof] = ACTIONS(3572), + [anon_sym_offsetof] = ACTIONS(3572), + [anon_sym__Generic] = ACTIONS(3572), + [anon_sym_typename] = ACTIONS(3572), + [anon_sym_asm] = ACTIONS(3572), + [anon_sym___asm__] = ACTIONS(3572), + [anon_sym___asm] = ACTIONS(3572), + [sym_number_literal] = ACTIONS(3574), + [anon_sym_L_SQUOTE] = ACTIONS(3574), + [anon_sym_u_SQUOTE] = ACTIONS(3574), + [anon_sym_U_SQUOTE] = ACTIONS(3574), + [anon_sym_u8_SQUOTE] = ACTIONS(3574), + [anon_sym_SQUOTE] = ACTIONS(3574), + [anon_sym_L_DQUOTE] = ACTIONS(3574), + [anon_sym_u_DQUOTE] = ACTIONS(3574), + [anon_sym_U_DQUOTE] = ACTIONS(3574), + [anon_sym_u8_DQUOTE] = ACTIONS(3574), + [anon_sym_DQUOTE] = ACTIONS(3574), + [sym_true] = ACTIONS(3572), + [sym_false] = ACTIONS(3572), + [anon_sym_NULL] = ACTIONS(3572), + [anon_sym_nullptr] = ACTIONS(3572), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3572), + [anon_sym_decltype] = ACTIONS(3572), + [anon_sym_template] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_delete] = ACTIONS(3572), + [anon_sym_throw] = ACTIONS(3572), + [anon_sym_co_return] = ACTIONS(3572), + [anon_sym_co_yield] = ACTIONS(3572), + [anon_sym_R_DQUOTE] = ACTIONS(3574), + [anon_sym_LR_DQUOTE] = ACTIONS(3574), + [anon_sym_uR_DQUOTE] = ACTIONS(3574), + [anon_sym_UR_DQUOTE] = ACTIONS(3574), + [anon_sym_u8R_DQUOTE] = ACTIONS(3574), + [anon_sym_co_await] = ACTIONS(3572), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_requires] = ACTIONS(3572), + [anon_sym_CARET_CARET] = ACTIONS(3574), + [anon_sym_LBRACK_COLON] = ACTIONS(3574), + [sym_this] = ACTIONS(3572), + }, + [STATE(1236)] = { + [sym_expression] = STATE(6819), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10569), + [sym_initializer_pair] = STATE(10569), + [sym_subscript_designator] = STATE(9152), + [sym_subscript_range_designator] = STATE(9152), + [sym_field_designator] = STATE(9152), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [aux_sym_initializer_pair_repeat1] = STATE(9152), + [sym_identifier] = ACTIONS(5688), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(5694), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -223659,10 +231016,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -223679,8 +231037,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -223691,627 +231049,3672 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1255)] = { - [sym_expression] = STATE(6640), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_initializer_list] = STATE(7121), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACE] = ACTIONS(4562), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), + [STATE(1237)] = { + [sym_identifier] = ACTIONS(3666), + [anon_sym_LPAREN2] = ACTIONS(3668), + [anon_sym_BANG] = ACTIONS(3668), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym___extension__] = ACTIONS(3666), + [anon_sym_typedef] = ACTIONS(3666), + [anon_sym_virtual] = ACTIONS(3666), + [anon_sym_extern] = ACTIONS(3666), + [anon_sym___attribute__] = ACTIONS(3666), + [anon_sym___attribute] = ACTIONS(3666), + [anon_sym_COLON_COLON] = ACTIONS(3668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3668), + [anon_sym___declspec] = ACTIONS(3666), + [anon_sym_LBRACE] = ACTIONS(3668), + [anon_sym_signed] = ACTIONS(3666), + [anon_sym_unsigned] = ACTIONS(3666), + [anon_sym_long] = ACTIONS(3666), + [anon_sym_short] = ACTIONS(3666), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_static] = ACTIONS(3666), + [anon_sym_register] = ACTIONS(3666), + [anon_sym_inline] = ACTIONS(3666), + [anon_sym___inline] = ACTIONS(3666), + [anon_sym___inline__] = ACTIONS(3666), + [anon_sym___forceinline] = ACTIONS(3666), + [anon_sym_thread_local] = ACTIONS(3666), + [anon_sym___thread] = ACTIONS(3666), + [anon_sym_const] = ACTIONS(3666), + [anon_sym_constexpr] = ACTIONS(3666), + [anon_sym_volatile] = ACTIONS(3666), + [anon_sym_restrict] = ACTIONS(3666), + [anon_sym___restrict__] = ACTIONS(3666), + [anon_sym__Atomic] = ACTIONS(3666), + [anon_sym__Noreturn] = ACTIONS(3666), + [anon_sym_noreturn] = ACTIONS(3666), + [anon_sym__Nonnull] = ACTIONS(3666), + [anon_sym_mutable] = ACTIONS(3666), + [anon_sym_constinit] = ACTIONS(3666), + [anon_sym_consteval] = ACTIONS(3666), + [anon_sym_alignas] = ACTIONS(3666), + [anon_sym__Alignas] = ACTIONS(3666), + [sym_primitive_type] = ACTIONS(3666), + [anon_sym_enum] = ACTIONS(3666), + [anon_sym_class] = ACTIONS(3666), + [anon_sym_struct] = ACTIONS(3666), + [anon_sym_union] = ACTIONS(3666), + [anon_sym_if] = ACTIONS(3666), + [anon_sym_else] = ACTIONS(3666), + [anon_sym_switch] = ACTIONS(3666), + [anon_sym_while] = ACTIONS(3666), + [anon_sym_do] = ACTIONS(3666), + [anon_sym_for] = ACTIONS(3666), + [anon_sym_return] = ACTIONS(3666), + [anon_sym_break] = ACTIONS(3666), + [anon_sym_continue] = ACTIONS(3666), + [anon_sym_goto] = ACTIONS(3666), + [anon_sym___try] = ACTIONS(3666), + [anon_sym___leave] = ACTIONS(3666), + [anon_sym_not] = ACTIONS(3666), + [anon_sym_compl] = ACTIONS(3666), + [anon_sym_DASH_DASH] = ACTIONS(3668), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_sizeof] = ACTIONS(3666), + [anon_sym___alignof__] = ACTIONS(3666), + [anon_sym___alignof] = ACTIONS(3666), + [anon_sym__alignof] = ACTIONS(3666), + [anon_sym_alignof] = ACTIONS(3666), + [anon_sym__Alignof] = ACTIONS(3666), + [anon_sym_offsetof] = ACTIONS(3666), + [anon_sym__Generic] = ACTIONS(3666), + [anon_sym_typename] = ACTIONS(3666), + [anon_sym_asm] = ACTIONS(3666), + [anon_sym___asm__] = ACTIONS(3666), + [anon_sym___asm] = ACTIONS(3666), + [sym_number_literal] = ACTIONS(3668), + [anon_sym_L_SQUOTE] = ACTIONS(3668), + [anon_sym_u_SQUOTE] = ACTIONS(3668), + [anon_sym_U_SQUOTE] = ACTIONS(3668), + [anon_sym_u8_SQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3668), + [anon_sym_L_DQUOTE] = ACTIONS(3668), + [anon_sym_u_DQUOTE] = ACTIONS(3668), + [anon_sym_U_DQUOTE] = ACTIONS(3668), + [anon_sym_u8_DQUOTE] = ACTIONS(3668), + [anon_sym_DQUOTE] = ACTIONS(3668), + [sym_true] = ACTIONS(3666), + [sym_false] = ACTIONS(3666), + [anon_sym_NULL] = ACTIONS(3666), + [anon_sym_nullptr] = ACTIONS(3666), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3666), + [anon_sym_decltype] = ACTIONS(3666), + [anon_sym_template] = ACTIONS(3666), + [anon_sym_try] = ACTIONS(3666), + [anon_sym_delete] = ACTIONS(3666), + [anon_sym_throw] = ACTIONS(3666), + [anon_sym_co_return] = ACTIONS(3666), + [anon_sym_co_yield] = ACTIONS(3666), + [anon_sym_R_DQUOTE] = ACTIONS(3668), + [anon_sym_LR_DQUOTE] = ACTIONS(3668), + [anon_sym_uR_DQUOTE] = ACTIONS(3668), + [anon_sym_UR_DQUOTE] = ACTIONS(3668), + [anon_sym_u8R_DQUOTE] = ACTIONS(3668), + [anon_sym_co_await] = ACTIONS(3666), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_requires] = ACTIONS(3666), + [anon_sym_CARET_CARET] = ACTIONS(3668), + [anon_sym_LBRACK_COLON] = ACTIONS(3668), + [sym_this] = ACTIONS(3666), }, - [STATE(1256)] = { - [sym_expression] = STATE(6790), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_initializer_list] = STATE(7260), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACE] = ACTIONS(4562), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), + [STATE(1238)] = { + [sym_identifier] = ACTIONS(3614), + [anon_sym_LPAREN2] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3614), + [anon_sym_STAR] = ACTIONS(3616), + [anon_sym_AMP] = ACTIONS(3616), + [anon_sym_SEMI] = ACTIONS(3616), + [anon_sym___extension__] = ACTIONS(3614), + [anon_sym_typedef] = ACTIONS(3614), + [anon_sym_virtual] = ACTIONS(3614), + [anon_sym_extern] = ACTIONS(3614), + [anon_sym___attribute__] = ACTIONS(3614), + [anon_sym___attribute] = ACTIONS(3614), + [anon_sym_COLON_COLON] = ACTIONS(3616), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3616), + [anon_sym___declspec] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_signed] = ACTIONS(3614), + [anon_sym_unsigned] = ACTIONS(3614), + [anon_sym_long] = ACTIONS(3614), + [anon_sym_short] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3614), + [anon_sym_static] = ACTIONS(3614), + [anon_sym_register] = ACTIONS(3614), + [anon_sym_inline] = ACTIONS(3614), + [anon_sym___inline] = ACTIONS(3614), + [anon_sym___inline__] = ACTIONS(3614), + [anon_sym___forceinline] = ACTIONS(3614), + [anon_sym_thread_local] = ACTIONS(3614), + [anon_sym___thread] = ACTIONS(3614), + [anon_sym_const] = ACTIONS(3614), + [anon_sym_constexpr] = ACTIONS(3614), + [anon_sym_volatile] = ACTIONS(3614), + [anon_sym_restrict] = ACTIONS(3614), + [anon_sym___restrict__] = ACTIONS(3614), + [anon_sym__Atomic] = ACTIONS(3614), + [anon_sym__Noreturn] = ACTIONS(3614), + [anon_sym_noreturn] = ACTIONS(3614), + [anon_sym__Nonnull] = ACTIONS(3614), + [anon_sym_mutable] = ACTIONS(3614), + [anon_sym_constinit] = ACTIONS(3614), + [anon_sym_consteval] = ACTIONS(3614), + [anon_sym_alignas] = ACTIONS(3614), + [anon_sym__Alignas] = ACTIONS(3614), + [sym_primitive_type] = ACTIONS(3614), + [anon_sym_enum] = ACTIONS(3614), + [anon_sym_class] = ACTIONS(3614), + [anon_sym_struct] = ACTIONS(3614), + [anon_sym_union] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(3614), + [anon_sym_else] = ACTIONS(3614), + [anon_sym_switch] = ACTIONS(3614), + [anon_sym_while] = ACTIONS(3614), + [anon_sym_do] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3614), + [anon_sym_return] = ACTIONS(3614), + [anon_sym_break] = ACTIONS(3614), + [anon_sym_continue] = ACTIONS(3614), + [anon_sym_goto] = ACTIONS(3614), + [anon_sym___try] = ACTIONS(3614), + [anon_sym___leave] = ACTIONS(3614), + [anon_sym_not] = ACTIONS(3614), + [anon_sym_compl] = ACTIONS(3614), + [anon_sym_DASH_DASH] = ACTIONS(3616), + [anon_sym_PLUS_PLUS] = ACTIONS(3616), + [anon_sym_sizeof] = ACTIONS(3614), + [anon_sym___alignof__] = ACTIONS(3614), + [anon_sym___alignof] = ACTIONS(3614), + [anon_sym__alignof] = ACTIONS(3614), + [anon_sym_alignof] = ACTIONS(3614), + [anon_sym__Alignof] = ACTIONS(3614), + [anon_sym_offsetof] = ACTIONS(3614), + [anon_sym__Generic] = ACTIONS(3614), + [anon_sym_typename] = ACTIONS(3614), + [anon_sym_asm] = ACTIONS(3614), + [anon_sym___asm__] = ACTIONS(3614), + [anon_sym___asm] = ACTIONS(3614), + [sym_number_literal] = ACTIONS(3616), + [anon_sym_L_SQUOTE] = ACTIONS(3616), + [anon_sym_u_SQUOTE] = ACTIONS(3616), + [anon_sym_U_SQUOTE] = ACTIONS(3616), + [anon_sym_u8_SQUOTE] = ACTIONS(3616), + [anon_sym_SQUOTE] = ACTIONS(3616), + [anon_sym_L_DQUOTE] = ACTIONS(3616), + [anon_sym_u_DQUOTE] = ACTIONS(3616), + [anon_sym_U_DQUOTE] = ACTIONS(3616), + [anon_sym_u8_DQUOTE] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [sym_true] = ACTIONS(3614), + [sym_false] = ACTIONS(3614), + [anon_sym_NULL] = ACTIONS(3614), + [anon_sym_nullptr] = ACTIONS(3614), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3614), + [anon_sym_decltype] = ACTIONS(3614), + [anon_sym_template] = ACTIONS(3614), + [anon_sym_try] = ACTIONS(3614), + [anon_sym_delete] = ACTIONS(3614), + [anon_sym_throw] = ACTIONS(3614), + [anon_sym_co_return] = ACTIONS(3614), + [anon_sym_co_yield] = ACTIONS(3614), + [anon_sym_R_DQUOTE] = ACTIONS(3616), + [anon_sym_LR_DQUOTE] = ACTIONS(3616), + [anon_sym_uR_DQUOTE] = ACTIONS(3616), + [anon_sym_UR_DQUOTE] = ACTIONS(3616), + [anon_sym_u8R_DQUOTE] = ACTIONS(3616), + [anon_sym_co_await] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3614), + [anon_sym_requires] = ACTIONS(3614), + [anon_sym_CARET_CARET] = ACTIONS(3616), + [anon_sym_LBRACK_COLON] = ACTIONS(3616), + [sym_this] = ACTIONS(3614), }, - [STATE(1257)] = { - [sym_expression] = STATE(6744), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11001), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON] = ACTIONS(5717), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), + [STATE(1239)] = { + [sym_identifier] = ACTIONS(3524), + [anon_sym_LPAREN2] = ACTIONS(3526), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_TILDE] = ACTIONS(3526), + [anon_sym_DASH] = ACTIONS(3524), + [anon_sym_PLUS] = ACTIONS(3524), + [anon_sym_STAR] = ACTIONS(3526), + [anon_sym_AMP] = ACTIONS(3526), + [anon_sym_SEMI] = ACTIONS(3526), + [anon_sym___extension__] = ACTIONS(3524), + [anon_sym_typedef] = ACTIONS(3524), + [anon_sym_virtual] = ACTIONS(3524), + [anon_sym_extern] = ACTIONS(3524), + [anon_sym___attribute__] = ACTIONS(3524), + [anon_sym___attribute] = ACTIONS(3524), + [anon_sym_COLON_COLON] = ACTIONS(3526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3526), + [anon_sym___declspec] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(3526), + [anon_sym_signed] = ACTIONS(3524), + [anon_sym_unsigned] = ACTIONS(3524), + [anon_sym_long] = ACTIONS(3524), + [anon_sym_short] = ACTIONS(3524), + [anon_sym_LBRACK] = ACTIONS(3524), + [anon_sym_static] = ACTIONS(3524), + [anon_sym_register] = ACTIONS(3524), + [anon_sym_inline] = ACTIONS(3524), + [anon_sym___inline] = ACTIONS(3524), + [anon_sym___inline__] = ACTIONS(3524), + [anon_sym___forceinline] = ACTIONS(3524), + [anon_sym_thread_local] = ACTIONS(3524), + [anon_sym___thread] = ACTIONS(3524), + [anon_sym_const] = ACTIONS(3524), + [anon_sym_constexpr] = ACTIONS(3524), + [anon_sym_volatile] = ACTIONS(3524), + [anon_sym_restrict] = ACTIONS(3524), + [anon_sym___restrict__] = ACTIONS(3524), + [anon_sym__Atomic] = ACTIONS(3524), + [anon_sym__Noreturn] = ACTIONS(3524), + [anon_sym_noreturn] = ACTIONS(3524), + [anon_sym__Nonnull] = ACTIONS(3524), + [anon_sym_mutable] = ACTIONS(3524), + [anon_sym_constinit] = ACTIONS(3524), + [anon_sym_consteval] = ACTIONS(3524), + [anon_sym_alignas] = ACTIONS(3524), + [anon_sym__Alignas] = ACTIONS(3524), + [sym_primitive_type] = ACTIONS(3524), + [anon_sym_enum] = ACTIONS(3524), + [anon_sym_class] = ACTIONS(3524), + [anon_sym_struct] = ACTIONS(3524), + [anon_sym_union] = ACTIONS(3524), + [anon_sym_if] = ACTIONS(3524), + [anon_sym_else] = ACTIONS(3524), + [anon_sym_switch] = ACTIONS(3524), + [anon_sym_while] = ACTIONS(3524), + [anon_sym_do] = ACTIONS(3524), + [anon_sym_for] = ACTIONS(3524), + [anon_sym_return] = ACTIONS(3524), + [anon_sym_break] = ACTIONS(3524), + [anon_sym_continue] = ACTIONS(3524), + [anon_sym_goto] = ACTIONS(3524), + [anon_sym___try] = ACTIONS(3524), + [anon_sym___leave] = ACTIONS(3524), + [anon_sym_not] = ACTIONS(3524), + [anon_sym_compl] = ACTIONS(3524), + [anon_sym_DASH_DASH] = ACTIONS(3526), + [anon_sym_PLUS_PLUS] = ACTIONS(3526), + [anon_sym_sizeof] = ACTIONS(3524), + [anon_sym___alignof__] = ACTIONS(3524), + [anon_sym___alignof] = ACTIONS(3524), + [anon_sym__alignof] = ACTIONS(3524), + [anon_sym_alignof] = ACTIONS(3524), + [anon_sym__Alignof] = ACTIONS(3524), + [anon_sym_offsetof] = ACTIONS(3524), + [anon_sym__Generic] = ACTIONS(3524), + [anon_sym_typename] = ACTIONS(3524), + [anon_sym_asm] = ACTIONS(3524), + [anon_sym___asm__] = ACTIONS(3524), + [anon_sym___asm] = ACTIONS(3524), + [sym_number_literal] = ACTIONS(3526), + [anon_sym_L_SQUOTE] = ACTIONS(3526), + [anon_sym_u_SQUOTE] = ACTIONS(3526), + [anon_sym_U_SQUOTE] = ACTIONS(3526), + [anon_sym_u8_SQUOTE] = ACTIONS(3526), + [anon_sym_SQUOTE] = ACTIONS(3526), + [anon_sym_L_DQUOTE] = ACTIONS(3526), + [anon_sym_u_DQUOTE] = ACTIONS(3526), + [anon_sym_U_DQUOTE] = ACTIONS(3526), + [anon_sym_u8_DQUOTE] = ACTIONS(3526), + [anon_sym_DQUOTE] = ACTIONS(3526), + [sym_true] = ACTIONS(3524), + [sym_false] = ACTIONS(3524), + [anon_sym_NULL] = ACTIONS(3524), + [anon_sym_nullptr] = ACTIONS(3524), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [sym_auto] = ACTIONS(3524), + [anon_sym_decltype] = ACTIONS(3524), + [anon_sym_template] = ACTIONS(3524), + [anon_sym_try] = ACTIONS(3524), + [anon_sym_delete] = ACTIONS(3524), + [anon_sym_throw] = ACTIONS(3524), + [anon_sym_co_return] = ACTIONS(3524), + [anon_sym_co_yield] = ACTIONS(3524), + [anon_sym_R_DQUOTE] = ACTIONS(3526), + [anon_sym_LR_DQUOTE] = ACTIONS(3526), + [anon_sym_uR_DQUOTE] = ACTIONS(3526), + [anon_sym_UR_DQUOTE] = ACTIONS(3526), + [anon_sym_u8R_DQUOTE] = ACTIONS(3526), + [anon_sym_co_await] = ACTIONS(3524), + [anon_sym_new] = ACTIONS(3524), + [anon_sym_requires] = ACTIONS(3524), + [anon_sym_CARET_CARET] = ACTIONS(3526), + [anon_sym_LBRACK_COLON] = ACTIONS(3526), + [sym_this] = ACTIONS(3524), }, - [STATE(1258)] = { - [sym_expression] = STATE(6794), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_initializer_list] = STATE(5866), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACE] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [STATE(1240)] = { + [sym_identifier] = ACTIONS(3528), + [anon_sym_LPAREN2] = ACTIONS(3530), + [anon_sym_BANG] = ACTIONS(3530), + [anon_sym_TILDE] = ACTIONS(3530), + [anon_sym_DASH] = ACTIONS(3528), + [anon_sym_PLUS] = ACTIONS(3528), + [anon_sym_STAR] = ACTIONS(3530), + [anon_sym_AMP] = ACTIONS(3530), + [anon_sym_SEMI] = ACTIONS(3530), + [anon_sym___extension__] = ACTIONS(3528), + [anon_sym_typedef] = ACTIONS(3528), + [anon_sym_virtual] = ACTIONS(3528), + [anon_sym_extern] = ACTIONS(3528), + [anon_sym___attribute__] = ACTIONS(3528), + [anon_sym___attribute] = ACTIONS(3528), + [anon_sym_COLON_COLON] = ACTIONS(3530), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3530), + [anon_sym___declspec] = ACTIONS(3528), + [anon_sym_LBRACE] = ACTIONS(3530), + [anon_sym_signed] = ACTIONS(3528), + [anon_sym_unsigned] = ACTIONS(3528), + [anon_sym_long] = ACTIONS(3528), + [anon_sym_short] = ACTIONS(3528), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_static] = ACTIONS(3528), + [anon_sym_register] = ACTIONS(3528), + [anon_sym_inline] = ACTIONS(3528), + [anon_sym___inline] = ACTIONS(3528), + [anon_sym___inline__] = ACTIONS(3528), + [anon_sym___forceinline] = ACTIONS(3528), + [anon_sym_thread_local] = ACTIONS(3528), + [anon_sym___thread] = ACTIONS(3528), + [anon_sym_const] = ACTIONS(3528), + [anon_sym_constexpr] = ACTIONS(3528), + [anon_sym_volatile] = ACTIONS(3528), + [anon_sym_restrict] = ACTIONS(3528), + [anon_sym___restrict__] = ACTIONS(3528), + [anon_sym__Atomic] = ACTIONS(3528), + [anon_sym__Noreturn] = ACTIONS(3528), + [anon_sym_noreturn] = ACTIONS(3528), + [anon_sym__Nonnull] = ACTIONS(3528), + [anon_sym_mutable] = ACTIONS(3528), + [anon_sym_constinit] = ACTIONS(3528), + [anon_sym_consteval] = ACTIONS(3528), + [anon_sym_alignas] = ACTIONS(3528), + [anon_sym__Alignas] = ACTIONS(3528), + [sym_primitive_type] = ACTIONS(3528), + [anon_sym_enum] = ACTIONS(3528), + [anon_sym_class] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(3528), + [anon_sym_union] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(3528), + [anon_sym_else] = ACTIONS(3528), + [anon_sym_switch] = ACTIONS(3528), + [anon_sym_while] = ACTIONS(3528), + [anon_sym_do] = ACTIONS(3528), + [anon_sym_for] = ACTIONS(3528), + [anon_sym_return] = ACTIONS(3528), + [anon_sym_break] = ACTIONS(3528), + [anon_sym_continue] = ACTIONS(3528), + [anon_sym_goto] = ACTIONS(3528), + [anon_sym___try] = ACTIONS(3528), + [anon_sym___leave] = ACTIONS(3528), + [anon_sym_not] = ACTIONS(3528), + [anon_sym_compl] = ACTIONS(3528), + [anon_sym_DASH_DASH] = ACTIONS(3530), + [anon_sym_PLUS_PLUS] = ACTIONS(3530), + [anon_sym_sizeof] = ACTIONS(3528), + [anon_sym___alignof__] = ACTIONS(3528), + [anon_sym___alignof] = ACTIONS(3528), + [anon_sym__alignof] = ACTIONS(3528), + [anon_sym_alignof] = ACTIONS(3528), + [anon_sym__Alignof] = ACTIONS(3528), + [anon_sym_offsetof] = ACTIONS(3528), + [anon_sym__Generic] = ACTIONS(3528), + [anon_sym_typename] = ACTIONS(3528), + [anon_sym_asm] = ACTIONS(3528), + [anon_sym___asm__] = ACTIONS(3528), + [anon_sym___asm] = ACTIONS(3528), + [sym_number_literal] = ACTIONS(3530), + [anon_sym_L_SQUOTE] = ACTIONS(3530), + [anon_sym_u_SQUOTE] = ACTIONS(3530), + [anon_sym_U_SQUOTE] = ACTIONS(3530), + [anon_sym_u8_SQUOTE] = ACTIONS(3530), + [anon_sym_SQUOTE] = ACTIONS(3530), + [anon_sym_L_DQUOTE] = ACTIONS(3530), + [anon_sym_u_DQUOTE] = ACTIONS(3530), + [anon_sym_U_DQUOTE] = ACTIONS(3530), + [anon_sym_u8_DQUOTE] = ACTIONS(3530), + [anon_sym_DQUOTE] = ACTIONS(3530), + [sym_true] = ACTIONS(3528), + [sym_false] = ACTIONS(3528), + [anon_sym_NULL] = ACTIONS(3528), + [anon_sym_nullptr] = ACTIONS(3528), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3528), + [anon_sym_decltype] = ACTIONS(3528), + [anon_sym_template] = ACTIONS(3528), + [anon_sym_try] = ACTIONS(3528), + [anon_sym_delete] = ACTIONS(3528), + [anon_sym_throw] = ACTIONS(3528), + [anon_sym_co_return] = ACTIONS(3528), + [anon_sym_co_yield] = ACTIONS(3528), + [anon_sym_R_DQUOTE] = ACTIONS(3530), + [anon_sym_LR_DQUOTE] = ACTIONS(3530), + [anon_sym_uR_DQUOTE] = ACTIONS(3530), + [anon_sym_UR_DQUOTE] = ACTIONS(3530), + [anon_sym_u8R_DQUOTE] = ACTIONS(3530), + [anon_sym_co_await] = ACTIONS(3528), + [anon_sym_new] = ACTIONS(3528), + [anon_sym_requires] = ACTIONS(3528), + [anon_sym_CARET_CARET] = ACTIONS(3530), + [anon_sym_LBRACK_COLON] = ACTIONS(3530), + [sym_this] = ACTIONS(3528), }, - [STATE(1259)] = { - [sym_expression] = STATE(6733), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_initializer_list] = STATE(5866), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [STATE(1241)] = { + [sym_identifier] = ACTIONS(3544), + [anon_sym_LPAREN2] = ACTIONS(3546), + [anon_sym_BANG] = ACTIONS(3546), + [anon_sym_TILDE] = ACTIONS(3546), + [anon_sym_DASH] = ACTIONS(3544), + [anon_sym_PLUS] = ACTIONS(3544), + [anon_sym_STAR] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3546), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym___extension__] = ACTIONS(3544), + [anon_sym_typedef] = ACTIONS(3544), + [anon_sym_virtual] = ACTIONS(3544), + [anon_sym_extern] = ACTIONS(3544), + [anon_sym___attribute__] = ACTIONS(3544), + [anon_sym___attribute] = ACTIONS(3544), + [anon_sym_COLON_COLON] = ACTIONS(3546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3546), + [anon_sym___declspec] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3546), + [anon_sym_signed] = ACTIONS(3544), + [anon_sym_unsigned] = ACTIONS(3544), + [anon_sym_long] = ACTIONS(3544), + [anon_sym_short] = ACTIONS(3544), + [anon_sym_LBRACK] = ACTIONS(3544), + [anon_sym_static] = ACTIONS(3544), + [anon_sym_register] = ACTIONS(3544), + [anon_sym_inline] = ACTIONS(3544), + [anon_sym___inline] = ACTIONS(3544), + [anon_sym___inline__] = ACTIONS(3544), + [anon_sym___forceinline] = ACTIONS(3544), + [anon_sym_thread_local] = ACTIONS(3544), + [anon_sym___thread] = ACTIONS(3544), + [anon_sym_const] = ACTIONS(3544), + [anon_sym_constexpr] = ACTIONS(3544), + [anon_sym_volatile] = ACTIONS(3544), + [anon_sym_restrict] = ACTIONS(3544), + [anon_sym___restrict__] = ACTIONS(3544), + [anon_sym__Atomic] = ACTIONS(3544), + [anon_sym__Noreturn] = ACTIONS(3544), + [anon_sym_noreturn] = ACTIONS(3544), + [anon_sym__Nonnull] = ACTIONS(3544), + [anon_sym_mutable] = ACTIONS(3544), + [anon_sym_constinit] = ACTIONS(3544), + [anon_sym_consteval] = ACTIONS(3544), + [anon_sym_alignas] = ACTIONS(3544), + [anon_sym__Alignas] = ACTIONS(3544), + [sym_primitive_type] = ACTIONS(3544), + [anon_sym_enum] = ACTIONS(3544), + [anon_sym_class] = ACTIONS(3544), + [anon_sym_struct] = ACTIONS(3544), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_else] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3544), + [anon_sym_while] = ACTIONS(3544), + [anon_sym_do] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3544), + [anon_sym_return] = ACTIONS(3544), + [anon_sym_break] = ACTIONS(3544), + [anon_sym_continue] = ACTIONS(3544), + [anon_sym_goto] = ACTIONS(3544), + [anon_sym___try] = ACTIONS(3544), + [anon_sym___leave] = ACTIONS(3544), + [anon_sym_not] = ACTIONS(3544), + [anon_sym_compl] = ACTIONS(3544), + [anon_sym_DASH_DASH] = ACTIONS(3546), + [anon_sym_PLUS_PLUS] = ACTIONS(3546), + [anon_sym_sizeof] = ACTIONS(3544), + [anon_sym___alignof__] = ACTIONS(3544), + [anon_sym___alignof] = ACTIONS(3544), + [anon_sym__alignof] = ACTIONS(3544), + [anon_sym_alignof] = ACTIONS(3544), + [anon_sym__Alignof] = ACTIONS(3544), + [anon_sym_offsetof] = ACTIONS(3544), + [anon_sym__Generic] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3544), + [anon_sym_asm] = ACTIONS(3544), + [anon_sym___asm__] = ACTIONS(3544), + [anon_sym___asm] = ACTIONS(3544), + [sym_number_literal] = ACTIONS(3546), + [anon_sym_L_SQUOTE] = ACTIONS(3546), + [anon_sym_u_SQUOTE] = ACTIONS(3546), + [anon_sym_U_SQUOTE] = ACTIONS(3546), + [anon_sym_u8_SQUOTE] = ACTIONS(3546), + [anon_sym_SQUOTE] = ACTIONS(3546), + [anon_sym_L_DQUOTE] = ACTIONS(3546), + [anon_sym_u_DQUOTE] = ACTIONS(3546), + [anon_sym_U_DQUOTE] = ACTIONS(3546), + [anon_sym_u8_DQUOTE] = ACTIONS(3546), + [anon_sym_DQUOTE] = ACTIONS(3546), + [sym_true] = ACTIONS(3544), + [sym_false] = ACTIONS(3544), + [anon_sym_NULL] = ACTIONS(3544), + [anon_sym_nullptr] = ACTIONS(3544), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3544), + [anon_sym_decltype] = ACTIONS(3544), + [anon_sym_template] = ACTIONS(3544), + [anon_sym_try] = ACTIONS(3544), + [anon_sym_delete] = ACTIONS(3544), + [anon_sym_throw] = ACTIONS(3544), + [anon_sym_co_return] = ACTIONS(3544), + [anon_sym_co_yield] = ACTIONS(3544), + [anon_sym_R_DQUOTE] = ACTIONS(3546), + [anon_sym_LR_DQUOTE] = ACTIONS(3546), + [anon_sym_uR_DQUOTE] = ACTIONS(3546), + [anon_sym_UR_DQUOTE] = ACTIONS(3546), + [anon_sym_u8R_DQUOTE] = ACTIONS(3546), + [anon_sym_co_await] = ACTIONS(3544), + [anon_sym_new] = ACTIONS(3544), + [anon_sym_requires] = ACTIONS(3544), + [anon_sym_CARET_CARET] = ACTIONS(3546), + [anon_sym_LBRACK_COLON] = ACTIONS(3546), + [sym_this] = ACTIONS(3544), }, - [STATE(1260)] = { - [sym_expression] = STATE(6747), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_initializer_list] = STATE(5840), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), + [STATE(1242)] = { + [sym_identifier] = ACTIONS(3626), + [anon_sym_LPAREN2] = ACTIONS(3628), + [anon_sym_BANG] = ACTIONS(3628), + [anon_sym_TILDE] = ACTIONS(3628), + [anon_sym_DASH] = ACTIONS(3626), + [anon_sym_PLUS] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3628), + [anon_sym_AMP] = ACTIONS(3628), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym___extension__] = ACTIONS(3626), + [anon_sym_typedef] = ACTIONS(3626), + [anon_sym_virtual] = ACTIONS(3626), + [anon_sym_extern] = ACTIONS(3626), + [anon_sym___attribute__] = ACTIONS(3626), + [anon_sym___attribute] = ACTIONS(3626), + [anon_sym_COLON_COLON] = ACTIONS(3628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), + [anon_sym___declspec] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3628), + [anon_sym_signed] = ACTIONS(3626), + [anon_sym_unsigned] = ACTIONS(3626), + [anon_sym_long] = ACTIONS(3626), + [anon_sym_short] = ACTIONS(3626), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_static] = ACTIONS(3626), + [anon_sym_register] = ACTIONS(3626), + [anon_sym_inline] = ACTIONS(3626), + [anon_sym___inline] = ACTIONS(3626), + [anon_sym___inline__] = ACTIONS(3626), + [anon_sym___forceinline] = ACTIONS(3626), + [anon_sym_thread_local] = ACTIONS(3626), + [anon_sym___thread] = ACTIONS(3626), + [anon_sym_const] = ACTIONS(3626), + [anon_sym_constexpr] = ACTIONS(3626), + [anon_sym_volatile] = ACTIONS(3626), + [anon_sym_restrict] = ACTIONS(3626), + [anon_sym___restrict__] = ACTIONS(3626), + [anon_sym__Atomic] = ACTIONS(3626), + [anon_sym__Noreturn] = ACTIONS(3626), + [anon_sym_noreturn] = ACTIONS(3626), + [anon_sym__Nonnull] = ACTIONS(3626), + [anon_sym_mutable] = ACTIONS(3626), + [anon_sym_constinit] = ACTIONS(3626), + [anon_sym_consteval] = ACTIONS(3626), + [anon_sym_alignas] = ACTIONS(3626), + [anon_sym__Alignas] = ACTIONS(3626), + [sym_primitive_type] = ACTIONS(3626), + [anon_sym_enum] = ACTIONS(3626), + [anon_sym_class] = ACTIONS(3626), + [anon_sym_struct] = ACTIONS(3626), + [anon_sym_union] = ACTIONS(3626), + [anon_sym_if] = ACTIONS(3626), + [anon_sym_else] = ACTIONS(3626), + [anon_sym_switch] = ACTIONS(3626), + [anon_sym_while] = ACTIONS(3626), + [anon_sym_do] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3626), + [anon_sym_return] = ACTIONS(3626), + [anon_sym_break] = ACTIONS(3626), + [anon_sym_continue] = ACTIONS(3626), + [anon_sym_goto] = ACTIONS(3626), + [anon_sym___try] = ACTIONS(3626), + [anon_sym___leave] = ACTIONS(3626), + [anon_sym_not] = ACTIONS(3626), + [anon_sym_compl] = ACTIONS(3626), + [anon_sym_DASH_DASH] = ACTIONS(3628), + [anon_sym_PLUS_PLUS] = ACTIONS(3628), + [anon_sym_sizeof] = ACTIONS(3626), + [anon_sym___alignof__] = ACTIONS(3626), + [anon_sym___alignof] = ACTIONS(3626), + [anon_sym__alignof] = ACTIONS(3626), + [anon_sym_alignof] = ACTIONS(3626), + [anon_sym__Alignof] = ACTIONS(3626), + [anon_sym_offsetof] = ACTIONS(3626), + [anon_sym__Generic] = ACTIONS(3626), + [anon_sym_typename] = ACTIONS(3626), + [anon_sym_asm] = ACTIONS(3626), + [anon_sym___asm__] = ACTIONS(3626), + [anon_sym___asm] = ACTIONS(3626), + [sym_number_literal] = ACTIONS(3628), + [anon_sym_L_SQUOTE] = ACTIONS(3628), + [anon_sym_u_SQUOTE] = ACTIONS(3628), + [anon_sym_U_SQUOTE] = ACTIONS(3628), + [anon_sym_u8_SQUOTE] = ACTIONS(3628), + [anon_sym_SQUOTE] = ACTIONS(3628), + [anon_sym_L_DQUOTE] = ACTIONS(3628), + [anon_sym_u_DQUOTE] = ACTIONS(3628), + [anon_sym_U_DQUOTE] = ACTIONS(3628), + [anon_sym_u8_DQUOTE] = ACTIONS(3628), + [anon_sym_DQUOTE] = ACTIONS(3628), + [sym_true] = ACTIONS(3626), + [sym_false] = ACTIONS(3626), + [anon_sym_NULL] = ACTIONS(3626), + [anon_sym_nullptr] = ACTIONS(3626), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3626), + [anon_sym_decltype] = ACTIONS(3626), + [anon_sym_template] = ACTIONS(3626), + [anon_sym_try] = ACTIONS(3626), + [anon_sym_delete] = ACTIONS(3626), + [anon_sym_throw] = ACTIONS(3626), + [anon_sym_co_return] = ACTIONS(3626), + [anon_sym_co_yield] = ACTIONS(3626), + [anon_sym_R_DQUOTE] = ACTIONS(3628), + [anon_sym_LR_DQUOTE] = ACTIONS(3628), + [anon_sym_uR_DQUOTE] = ACTIONS(3628), + [anon_sym_UR_DQUOTE] = ACTIONS(3628), + [anon_sym_u8R_DQUOTE] = ACTIONS(3628), + [anon_sym_co_await] = ACTIONS(3626), + [anon_sym_new] = ACTIONS(3626), + [anon_sym_requires] = ACTIONS(3626), + [anon_sym_CARET_CARET] = ACTIONS(3628), + [anon_sym_LBRACK_COLON] = ACTIONS(3628), + [sym_this] = ACTIONS(3626), + }, + [STATE(1243)] = { + [sym_identifier] = ACTIONS(3630), + [anon_sym_LPAREN2] = ACTIONS(3632), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3630), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_AMP] = ACTIONS(3632), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym___extension__] = ACTIONS(3630), + [anon_sym_typedef] = ACTIONS(3630), + [anon_sym_virtual] = ACTIONS(3630), + [anon_sym_extern] = ACTIONS(3630), + [anon_sym___attribute__] = ACTIONS(3630), + [anon_sym___attribute] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), + [anon_sym___declspec] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3632), + [anon_sym_signed] = ACTIONS(3630), + [anon_sym_unsigned] = ACTIONS(3630), + [anon_sym_long] = ACTIONS(3630), + [anon_sym_short] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_register] = ACTIONS(3630), + [anon_sym_inline] = ACTIONS(3630), + [anon_sym___inline] = ACTIONS(3630), + [anon_sym___inline__] = ACTIONS(3630), + [anon_sym___forceinline] = ACTIONS(3630), + [anon_sym_thread_local] = ACTIONS(3630), + [anon_sym___thread] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_constexpr] = ACTIONS(3630), + [anon_sym_volatile] = ACTIONS(3630), + [anon_sym_restrict] = ACTIONS(3630), + [anon_sym___restrict__] = ACTIONS(3630), + [anon_sym__Atomic] = ACTIONS(3630), + [anon_sym__Noreturn] = ACTIONS(3630), + [anon_sym_noreturn] = ACTIONS(3630), + [anon_sym__Nonnull] = ACTIONS(3630), + [anon_sym_mutable] = ACTIONS(3630), + [anon_sym_constinit] = ACTIONS(3630), + [anon_sym_consteval] = ACTIONS(3630), + [anon_sym_alignas] = ACTIONS(3630), + [anon_sym__Alignas] = ACTIONS(3630), + [sym_primitive_type] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_struct] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3630), + [anon_sym_else] = ACTIONS(3630), + [anon_sym_switch] = ACTIONS(3630), + [anon_sym_while] = ACTIONS(3630), + [anon_sym_do] = ACTIONS(3630), + [anon_sym_for] = ACTIONS(3630), + [anon_sym_return] = ACTIONS(3630), + [anon_sym_break] = ACTIONS(3630), + [anon_sym_continue] = ACTIONS(3630), + [anon_sym_goto] = ACTIONS(3630), + [anon_sym___try] = ACTIONS(3630), + [anon_sym___leave] = ACTIONS(3630), + [anon_sym_not] = ACTIONS(3630), + [anon_sym_compl] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3632), + [anon_sym_PLUS_PLUS] = ACTIONS(3632), + [anon_sym_sizeof] = ACTIONS(3630), + [anon_sym___alignof__] = ACTIONS(3630), + [anon_sym___alignof] = ACTIONS(3630), + [anon_sym__alignof] = ACTIONS(3630), + [anon_sym_alignof] = ACTIONS(3630), + [anon_sym__Alignof] = ACTIONS(3630), + [anon_sym_offsetof] = ACTIONS(3630), + [anon_sym__Generic] = ACTIONS(3630), + [anon_sym_typename] = ACTIONS(3630), + [anon_sym_asm] = ACTIONS(3630), + [anon_sym___asm__] = ACTIONS(3630), + [anon_sym___asm] = ACTIONS(3630), + [sym_number_literal] = ACTIONS(3632), + [anon_sym_L_SQUOTE] = ACTIONS(3632), + [anon_sym_u_SQUOTE] = ACTIONS(3632), + [anon_sym_U_SQUOTE] = ACTIONS(3632), + [anon_sym_u8_SQUOTE] = ACTIONS(3632), + [anon_sym_SQUOTE] = ACTIONS(3632), + [anon_sym_L_DQUOTE] = ACTIONS(3632), + [anon_sym_u_DQUOTE] = ACTIONS(3632), + [anon_sym_U_DQUOTE] = ACTIONS(3632), + [anon_sym_u8_DQUOTE] = ACTIONS(3632), + [anon_sym_DQUOTE] = ACTIONS(3632), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [anon_sym_NULL] = ACTIONS(3630), + [anon_sym_nullptr] = ACTIONS(3630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3630), + [anon_sym_decltype] = ACTIONS(3630), + [anon_sym_template] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3630), + [anon_sym_delete] = ACTIONS(3630), + [anon_sym_throw] = ACTIONS(3630), + [anon_sym_co_return] = ACTIONS(3630), + [anon_sym_co_yield] = ACTIONS(3630), + [anon_sym_R_DQUOTE] = ACTIONS(3632), + [anon_sym_LR_DQUOTE] = ACTIONS(3632), + [anon_sym_uR_DQUOTE] = ACTIONS(3632), + [anon_sym_UR_DQUOTE] = ACTIONS(3632), + [anon_sym_u8R_DQUOTE] = ACTIONS(3632), + [anon_sym_co_await] = ACTIONS(3630), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_requires] = ACTIONS(3630), + [anon_sym_CARET_CARET] = ACTIONS(3632), + [anon_sym_LBRACK_COLON] = ACTIONS(3632), + [sym_this] = ACTIONS(3630), + }, + [STATE(1244)] = { + [sym_identifier] = ACTIONS(3568), + [anon_sym_LPAREN2] = ACTIONS(3570), + [anon_sym_BANG] = ACTIONS(3570), + [anon_sym_TILDE] = ACTIONS(3570), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_STAR] = ACTIONS(3570), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_SEMI] = ACTIONS(3570), + [anon_sym___extension__] = ACTIONS(3568), + [anon_sym_typedef] = ACTIONS(3568), + [anon_sym_virtual] = ACTIONS(3568), + [anon_sym_extern] = ACTIONS(3568), + [anon_sym___attribute__] = ACTIONS(3568), + [anon_sym___attribute] = ACTIONS(3568), + [anon_sym_COLON_COLON] = ACTIONS(3570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3570), + [anon_sym___declspec] = ACTIONS(3568), + [anon_sym_LBRACE] = ACTIONS(3570), + [anon_sym_signed] = ACTIONS(3568), + [anon_sym_unsigned] = ACTIONS(3568), + [anon_sym_long] = ACTIONS(3568), + [anon_sym_short] = ACTIONS(3568), + [anon_sym_LBRACK] = ACTIONS(3568), + [anon_sym_static] = ACTIONS(3568), + [anon_sym_register] = ACTIONS(3568), + [anon_sym_inline] = ACTIONS(3568), + [anon_sym___inline] = ACTIONS(3568), + [anon_sym___inline__] = ACTIONS(3568), + [anon_sym___forceinline] = ACTIONS(3568), + [anon_sym_thread_local] = ACTIONS(3568), + [anon_sym___thread] = ACTIONS(3568), + [anon_sym_const] = ACTIONS(3568), + [anon_sym_constexpr] = ACTIONS(3568), + [anon_sym_volatile] = ACTIONS(3568), + [anon_sym_restrict] = ACTIONS(3568), + [anon_sym___restrict__] = ACTIONS(3568), + [anon_sym__Atomic] = ACTIONS(3568), + [anon_sym__Noreturn] = ACTIONS(3568), + [anon_sym_noreturn] = ACTIONS(3568), + [anon_sym__Nonnull] = ACTIONS(3568), + [anon_sym_mutable] = ACTIONS(3568), + [anon_sym_constinit] = ACTIONS(3568), + [anon_sym_consteval] = ACTIONS(3568), + [anon_sym_alignas] = ACTIONS(3568), + [anon_sym__Alignas] = ACTIONS(3568), + [sym_primitive_type] = ACTIONS(3568), + [anon_sym_enum] = ACTIONS(3568), + [anon_sym_class] = ACTIONS(3568), + [anon_sym_struct] = ACTIONS(3568), + [anon_sym_union] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_else] = ACTIONS(3568), + [anon_sym_switch] = ACTIONS(3568), + [anon_sym_while] = ACTIONS(3568), + [anon_sym_do] = ACTIONS(3568), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_break] = ACTIONS(3568), + [anon_sym_continue] = ACTIONS(3568), + [anon_sym_goto] = ACTIONS(3568), + [anon_sym___try] = ACTIONS(3568), + [anon_sym___leave] = ACTIONS(3568), + [anon_sym_not] = ACTIONS(3568), + [anon_sym_compl] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3570), + [anon_sym_PLUS_PLUS] = ACTIONS(3570), + [anon_sym_sizeof] = ACTIONS(3568), + [anon_sym___alignof__] = ACTIONS(3568), + [anon_sym___alignof] = ACTIONS(3568), + [anon_sym__alignof] = ACTIONS(3568), + [anon_sym_alignof] = ACTIONS(3568), + [anon_sym__Alignof] = ACTIONS(3568), + [anon_sym_offsetof] = ACTIONS(3568), + [anon_sym__Generic] = ACTIONS(3568), + [anon_sym_typename] = ACTIONS(3568), + [anon_sym_asm] = ACTIONS(3568), + [anon_sym___asm__] = ACTIONS(3568), + [anon_sym___asm] = ACTIONS(3568), + [sym_number_literal] = ACTIONS(3570), + [anon_sym_L_SQUOTE] = ACTIONS(3570), + [anon_sym_u_SQUOTE] = ACTIONS(3570), + [anon_sym_U_SQUOTE] = ACTIONS(3570), + [anon_sym_u8_SQUOTE] = ACTIONS(3570), + [anon_sym_SQUOTE] = ACTIONS(3570), + [anon_sym_L_DQUOTE] = ACTIONS(3570), + [anon_sym_u_DQUOTE] = ACTIONS(3570), + [anon_sym_U_DQUOTE] = ACTIONS(3570), + [anon_sym_u8_DQUOTE] = ACTIONS(3570), + [anon_sym_DQUOTE] = ACTIONS(3570), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [anon_sym_NULL] = ACTIONS(3568), + [anon_sym_nullptr] = ACTIONS(3568), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3568), + [anon_sym_decltype] = ACTIONS(3568), + [anon_sym_template] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3568), + [anon_sym_delete] = ACTIONS(3568), + [anon_sym_throw] = ACTIONS(3568), + [anon_sym_co_return] = ACTIONS(3568), + [anon_sym_co_yield] = ACTIONS(3568), + [anon_sym_R_DQUOTE] = ACTIONS(3570), + [anon_sym_LR_DQUOTE] = ACTIONS(3570), + [anon_sym_uR_DQUOTE] = ACTIONS(3570), + [anon_sym_UR_DQUOTE] = ACTIONS(3570), + [anon_sym_u8R_DQUOTE] = ACTIONS(3570), + [anon_sym_co_await] = ACTIONS(3568), + [anon_sym_new] = ACTIONS(3568), + [anon_sym_requires] = ACTIONS(3568), + [anon_sym_CARET_CARET] = ACTIONS(3570), + [anon_sym_LBRACK_COLON] = ACTIONS(3570), + [sym_this] = ACTIONS(3568), + }, + [STATE(1245)] = { + [sym_identifier] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(3610), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(3610), + [anon_sym_AMP] = ACTIONS(3610), + [anon_sym_SEMI] = ACTIONS(3610), + [anon_sym___extension__] = ACTIONS(3608), + [anon_sym_typedef] = ACTIONS(3608), + [anon_sym_virtual] = ACTIONS(3608), + [anon_sym_extern] = ACTIONS(3608), + [anon_sym___attribute__] = ACTIONS(3608), + [anon_sym___attribute] = ACTIONS(3608), + [anon_sym_COLON_COLON] = ACTIONS(3610), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3610), + [anon_sym___declspec] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(3610), + [anon_sym_signed] = ACTIONS(3608), + [anon_sym_unsigned] = ACTIONS(3608), + [anon_sym_long] = ACTIONS(3608), + [anon_sym_short] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_static] = ACTIONS(3608), + [anon_sym_register] = ACTIONS(3608), + [anon_sym_inline] = ACTIONS(3608), + [anon_sym___inline] = ACTIONS(3608), + [anon_sym___inline__] = ACTIONS(3608), + [anon_sym___forceinline] = ACTIONS(3608), + [anon_sym_thread_local] = ACTIONS(3608), + [anon_sym___thread] = ACTIONS(3608), + [anon_sym_const] = ACTIONS(3608), + [anon_sym_constexpr] = ACTIONS(3608), + [anon_sym_volatile] = ACTIONS(3608), + [anon_sym_restrict] = ACTIONS(3608), + [anon_sym___restrict__] = ACTIONS(3608), + [anon_sym__Atomic] = ACTIONS(3608), + [anon_sym__Noreturn] = ACTIONS(3608), + [anon_sym_noreturn] = ACTIONS(3608), + [anon_sym__Nonnull] = ACTIONS(3608), + [anon_sym_mutable] = ACTIONS(3608), + [anon_sym_constinit] = ACTIONS(3608), + [anon_sym_consteval] = ACTIONS(3608), + [anon_sym_alignas] = ACTIONS(3608), + [anon_sym__Alignas] = ACTIONS(3608), + [sym_primitive_type] = ACTIONS(3608), + [anon_sym_enum] = ACTIONS(3608), + [anon_sym_class] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3608), + [anon_sym_union] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_else] = ACTIONS(3608), + [anon_sym_switch] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_break] = ACTIONS(3608), + [anon_sym_continue] = ACTIONS(3608), + [anon_sym_goto] = ACTIONS(3608), + [anon_sym___try] = ACTIONS(3608), + [anon_sym___leave] = ACTIONS(3608), + [anon_sym_not] = ACTIONS(3608), + [anon_sym_compl] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(3610), + [anon_sym_PLUS_PLUS] = ACTIONS(3610), + [anon_sym_sizeof] = ACTIONS(3608), + [anon_sym___alignof__] = ACTIONS(3608), + [anon_sym___alignof] = ACTIONS(3608), + [anon_sym__alignof] = ACTIONS(3608), + [anon_sym_alignof] = ACTIONS(3608), + [anon_sym__Alignof] = ACTIONS(3608), + [anon_sym_offsetof] = ACTIONS(3608), + [anon_sym__Generic] = ACTIONS(3608), + [anon_sym_typename] = ACTIONS(3608), + [anon_sym_asm] = ACTIONS(3608), + [anon_sym___asm__] = ACTIONS(3608), + [anon_sym___asm] = ACTIONS(3608), + [sym_number_literal] = ACTIONS(3610), + [anon_sym_L_SQUOTE] = ACTIONS(3610), + [anon_sym_u_SQUOTE] = ACTIONS(3610), + [anon_sym_U_SQUOTE] = ACTIONS(3610), + [anon_sym_u8_SQUOTE] = ACTIONS(3610), + [anon_sym_SQUOTE] = ACTIONS(3610), + [anon_sym_L_DQUOTE] = ACTIONS(3610), + [anon_sym_u_DQUOTE] = ACTIONS(3610), + [anon_sym_U_DQUOTE] = ACTIONS(3610), + [anon_sym_u8_DQUOTE] = ACTIONS(3610), + [anon_sym_DQUOTE] = ACTIONS(3610), + [sym_true] = ACTIONS(3608), + [sym_false] = ACTIONS(3608), + [anon_sym_NULL] = ACTIONS(3608), + [anon_sym_nullptr] = ACTIONS(3608), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3608), + [anon_sym_decltype] = ACTIONS(3608), + [anon_sym_template] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_delete] = ACTIONS(3608), + [anon_sym_throw] = ACTIONS(3608), + [anon_sym_co_return] = ACTIONS(3608), + [anon_sym_co_yield] = ACTIONS(3608), + [anon_sym_R_DQUOTE] = ACTIONS(3610), + [anon_sym_LR_DQUOTE] = ACTIONS(3610), + [anon_sym_uR_DQUOTE] = ACTIONS(3610), + [anon_sym_UR_DQUOTE] = ACTIONS(3610), + [anon_sym_u8R_DQUOTE] = ACTIONS(3610), + [anon_sym_co_await] = ACTIONS(3608), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_requires] = ACTIONS(3608), + [anon_sym_CARET_CARET] = ACTIONS(3610), + [anon_sym_LBRACK_COLON] = ACTIONS(3610), + [sym_this] = ACTIONS(3608), + }, + [STATE(1246)] = { + [sym_identifier] = ACTIONS(3556), + [anon_sym_LPAREN2] = ACTIONS(3558), + [anon_sym_BANG] = ACTIONS(3558), + [anon_sym_TILDE] = ACTIONS(3558), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(3558), + [anon_sym_AMP] = ACTIONS(3558), + [anon_sym_SEMI] = ACTIONS(3558), + [anon_sym___extension__] = ACTIONS(3556), + [anon_sym_typedef] = ACTIONS(3556), + [anon_sym_virtual] = ACTIONS(3556), + [anon_sym_extern] = ACTIONS(3556), + [anon_sym___attribute__] = ACTIONS(3556), + [anon_sym___attribute] = ACTIONS(3556), + [anon_sym_COLON_COLON] = ACTIONS(3558), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3558), + [anon_sym___declspec] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3558), + [anon_sym_signed] = ACTIONS(3556), + [anon_sym_unsigned] = ACTIONS(3556), + [anon_sym_long] = ACTIONS(3556), + [anon_sym_short] = ACTIONS(3556), + [anon_sym_LBRACK] = ACTIONS(3556), + [anon_sym_static] = ACTIONS(3556), + [anon_sym_register] = ACTIONS(3556), + [anon_sym_inline] = ACTIONS(3556), + [anon_sym___inline] = ACTIONS(3556), + [anon_sym___inline__] = ACTIONS(3556), + [anon_sym___forceinline] = ACTIONS(3556), + [anon_sym_thread_local] = ACTIONS(3556), + [anon_sym___thread] = ACTIONS(3556), + [anon_sym_const] = ACTIONS(3556), + [anon_sym_constexpr] = ACTIONS(3556), + [anon_sym_volatile] = ACTIONS(3556), + [anon_sym_restrict] = ACTIONS(3556), + [anon_sym___restrict__] = ACTIONS(3556), + [anon_sym__Atomic] = ACTIONS(3556), + [anon_sym__Noreturn] = ACTIONS(3556), + [anon_sym_noreturn] = ACTIONS(3556), + [anon_sym__Nonnull] = ACTIONS(3556), + [anon_sym_mutable] = ACTIONS(3556), + [anon_sym_constinit] = ACTIONS(3556), + [anon_sym_consteval] = ACTIONS(3556), + [anon_sym_alignas] = ACTIONS(3556), + [anon_sym__Alignas] = ACTIONS(3556), + [sym_primitive_type] = ACTIONS(3556), + [anon_sym_enum] = ACTIONS(3556), + [anon_sym_class] = ACTIONS(3556), + [anon_sym_struct] = ACTIONS(3556), + [anon_sym_union] = ACTIONS(3556), + [anon_sym_if] = ACTIONS(3556), + [anon_sym_else] = ACTIONS(3556), + [anon_sym_switch] = ACTIONS(3556), + [anon_sym_while] = ACTIONS(3556), + [anon_sym_do] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3556), + [anon_sym_return] = ACTIONS(3556), + [anon_sym_break] = ACTIONS(3556), + [anon_sym_continue] = ACTIONS(3556), + [anon_sym_goto] = ACTIONS(3556), + [anon_sym___try] = ACTIONS(3556), + [anon_sym___leave] = ACTIONS(3556), + [anon_sym_not] = ACTIONS(3556), + [anon_sym_compl] = ACTIONS(3556), + [anon_sym_DASH_DASH] = ACTIONS(3558), + [anon_sym_PLUS_PLUS] = ACTIONS(3558), + [anon_sym_sizeof] = ACTIONS(3556), + [anon_sym___alignof__] = ACTIONS(3556), + [anon_sym___alignof] = ACTIONS(3556), + [anon_sym__alignof] = ACTIONS(3556), + [anon_sym_alignof] = ACTIONS(3556), + [anon_sym__Alignof] = ACTIONS(3556), + [anon_sym_offsetof] = ACTIONS(3556), + [anon_sym__Generic] = ACTIONS(3556), + [anon_sym_typename] = ACTIONS(3556), + [anon_sym_asm] = ACTIONS(3556), + [anon_sym___asm__] = ACTIONS(3556), + [anon_sym___asm] = ACTIONS(3556), + [sym_number_literal] = ACTIONS(3558), + [anon_sym_L_SQUOTE] = ACTIONS(3558), + [anon_sym_u_SQUOTE] = ACTIONS(3558), + [anon_sym_U_SQUOTE] = ACTIONS(3558), + [anon_sym_u8_SQUOTE] = ACTIONS(3558), + [anon_sym_SQUOTE] = ACTIONS(3558), + [anon_sym_L_DQUOTE] = ACTIONS(3558), + [anon_sym_u_DQUOTE] = ACTIONS(3558), + [anon_sym_U_DQUOTE] = ACTIONS(3558), + [anon_sym_u8_DQUOTE] = ACTIONS(3558), + [anon_sym_DQUOTE] = ACTIONS(3558), + [sym_true] = ACTIONS(3556), + [sym_false] = ACTIONS(3556), + [anon_sym_NULL] = ACTIONS(3556), + [anon_sym_nullptr] = ACTIONS(3556), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3556), + [anon_sym_decltype] = ACTIONS(3556), + [anon_sym_template] = ACTIONS(3556), + [anon_sym_try] = ACTIONS(3556), + [anon_sym_delete] = ACTIONS(3556), + [anon_sym_throw] = ACTIONS(3556), + [anon_sym_co_return] = ACTIONS(3556), + [anon_sym_co_yield] = ACTIONS(3556), + [anon_sym_R_DQUOTE] = ACTIONS(3558), + [anon_sym_LR_DQUOTE] = ACTIONS(3558), + [anon_sym_uR_DQUOTE] = ACTIONS(3558), + [anon_sym_UR_DQUOTE] = ACTIONS(3558), + [anon_sym_u8R_DQUOTE] = ACTIONS(3558), + [anon_sym_co_await] = ACTIONS(3556), + [anon_sym_new] = ACTIONS(3556), + [anon_sym_requires] = ACTIONS(3556), + [anon_sym_CARET_CARET] = ACTIONS(3558), + [anon_sym_LBRACK_COLON] = ACTIONS(3558), + [sym_this] = ACTIONS(3556), + }, + [STATE(1247)] = { + [sym_identifier] = ACTIONS(3600), + [anon_sym_LPAREN2] = ACTIONS(3602), + [anon_sym_BANG] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3600), + [anon_sym_STAR] = ACTIONS(3602), + [anon_sym_AMP] = ACTIONS(3602), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym___extension__] = ACTIONS(3600), + [anon_sym_typedef] = ACTIONS(3600), + [anon_sym_virtual] = ACTIONS(3600), + [anon_sym_extern] = ACTIONS(3600), + [anon_sym___attribute__] = ACTIONS(3600), + [anon_sym___attribute] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), + [anon_sym___declspec] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_signed] = ACTIONS(3600), + [anon_sym_unsigned] = ACTIONS(3600), + [anon_sym_long] = ACTIONS(3600), + [anon_sym_short] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_register] = ACTIONS(3600), + [anon_sym_inline] = ACTIONS(3600), + [anon_sym___inline] = ACTIONS(3600), + [anon_sym___inline__] = ACTIONS(3600), + [anon_sym___forceinline] = ACTIONS(3600), + [anon_sym_thread_local] = ACTIONS(3600), + [anon_sym___thread] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_constexpr] = ACTIONS(3600), + [anon_sym_volatile] = ACTIONS(3600), + [anon_sym_restrict] = ACTIONS(3600), + [anon_sym___restrict__] = ACTIONS(3600), + [anon_sym__Atomic] = ACTIONS(3600), + [anon_sym__Noreturn] = ACTIONS(3600), + [anon_sym_noreturn] = ACTIONS(3600), + [anon_sym__Nonnull] = ACTIONS(3600), + [anon_sym_mutable] = ACTIONS(3600), + [anon_sym_constinit] = ACTIONS(3600), + [anon_sym_consteval] = ACTIONS(3600), + [anon_sym_alignas] = ACTIONS(3600), + [anon_sym__Alignas] = ACTIONS(3600), + [sym_primitive_type] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_struct] = ACTIONS(3600), + [anon_sym_union] = ACTIONS(3600), + [anon_sym_if] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3600), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_while] = ACTIONS(3600), + [anon_sym_do] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3600), + [anon_sym_return] = ACTIONS(3600), + [anon_sym_break] = ACTIONS(3600), + [anon_sym_continue] = ACTIONS(3600), + [anon_sym_goto] = ACTIONS(3600), + [anon_sym___try] = ACTIONS(3600), + [anon_sym___leave] = ACTIONS(3600), + [anon_sym_not] = ACTIONS(3600), + [anon_sym_compl] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3602), + [anon_sym_PLUS_PLUS] = ACTIONS(3602), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(3600), + [anon_sym___alignof] = ACTIONS(3600), + [anon_sym__alignof] = ACTIONS(3600), + [anon_sym_alignof] = ACTIONS(3600), + [anon_sym__Alignof] = ACTIONS(3600), + [anon_sym_offsetof] = ACTIONS(3600), + [anon_sym__Generic] = ACTIONS(3600), + [anon_sym_typename] = ACTIONS(3600), + [anon_sym_asm] = ACTIONS(3600), + [anon_sym___asm__] = ACTIONS(3600), + [anon_sym___asm] = ACTIONS(3600), + [sym_number_literal] = ACTIONS(3602), + [anon_sym_L_SQUOTE] = ACTIONS(3602), + [anon_sym_u_SQUOTE] = ACTIONS(3602), + [anon_sym_U_SQUOTE] = ACTIONS(3602), + [anon_sym_u8_SQUOTE] = ACTIONS(3602), + [anon_sym_SQUOTE] = ACTIONS(3602), + [anon_sym_L_DQUOTE] = ACTIONS(3602), + [anon_sym_u_DQUOTE] = ACTIONS(3602), + [anon_sym_U_DQUOTE] = ACTIONS(3602), + [anon_sym_u8_DQUOTE] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [sym_true] = ACTIONS(3600), + [sym_false] = ACTIONS(3600), + [anon_sym_NULL] = ACTIONS(3600), + [anon_sym_nullptr] = ACTIONS(3600), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3600), + [anon_sym_decltype] = ACTIONS(3600), + [anon_sym_template] = ACTIONS(3600), + [anon_sym_try] = ACTIONS(3600), + [anon_sym_delete] = ACTIONS(3600), + [anon_sym_throw] = ACTIONS(3600), + [anon_sym_co_return] = ACTIONS(3600), + [anon_sym_co_yield] = ACTIONS(3600), + [anon_sym_R_DQUOTE] = ACTIONS(3602), + [anon_sym_LR_DQUOTE] = ACTIONS(3602), + [anon_sym_uR_DQUOTE] = ACTIONS(3602), + [anon_sym_UR_DQUOTE] = ACTIONS(3602), + [anon_sym_u8R_DQUOTE] = ACTIONS(3602), + [anon_sym_co_await] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3600), + [anon_sym_requires] = ACTIONS(3600), + [anon_sym_CARET_CARET] = ACTIONS(3602), + [anon_sym_LBRACK_COLON] = ACTIONS(3602), + [sym_this] = ACTIONS(3600), + }, + [STATE(1248)] = { + [sym_expression] = STATE(7156), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_lambda_default_capture] = STATE(10396), + [sym__lambda_capture_identifier] = STATE(9680), + [sym_lambda_capture_initializer] = STATE(9680), + [sym__lambda_capture] = STATE(9680), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_identifier_parameter_pack_expansion] = STATE(9680), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5873), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(5920), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5922), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5924), + [anon_sym_AMP] = ACTIONS(5926), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(5928), + [anon_sym_EQ] = ACTIONS(5930), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(5932), + }, + [STATE(1249)] = { + [sym_identifier] = ACTIONS(3596), + [anon_sym_LPAREN2] = ACTIONS(3598), + [anon_sym_BANG] = ACTIONS(3598), + [anon_sym_TILDE] = ACTIONS(3598), + [anon_sym_DASH] = ACTIONS(3596), + [anon_sym_PLUS] = ACTIONS(3596), + [anon_sym_STAR] = ACTIONS(3598), + [anon_sym_AMP] = ACTIONS(3598), + [anon_sym_SEMI] = ACTIONS(3598), + [anon_sym___extension__] = ACTIONS(3596), + [anon_sym_typedef] = ACTIONS(3596), + [anon_sym_virtual] = ACTIONS(3596), + [anon_sym_extern] = ACTIONS(3596), + [anon_sym___attribute__] = ACTIONS(3596), + [anon_sym___attribute] = ACTIONS(3596), + [anon_sym_COLON_COLON] = ACTIONS(3598), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3598), + [anon_sym___declspec] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_signed] = ACTIONS(3596), + [anon_sym_unsigned] = ACTIONS(3596), + [anon_sym_long] = ACTIONS(3596), + [anon_sym_short] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_static] = ACTIONS(3596), + [anon_sym_register] = ACTIONS(3596), + [anon_sym_inline] = ACTIONS(3596), + [anon_sym___inline] = ACTIONS(3596), + [anon_sym___inline__] = ACTIONS(3596), + [anon_sym___forceinline] = ACTIONS(3596), + [anon_sym_thread_local] = ACTIONS(3596), + [anon_sym___thread] = ACTIONS(3596), + [anon_sym_const] = ACTIONS(3596), + [anon_sym_constexpr] = ACTIONS(3596), + [anon_sym_volatile] = ACTIONS(3596), + [anon_sym_restrict] = ACTIONS(3596), + [anon_sym___restrict__] = ACTIONS(3596), + [anon_sym__Atomic] = ACTIONS(3596), + [anon_sym__Noreturn] = ACTIONS(3596), + [anon_sym_noreturn] = ACTIONS(3596), + [anon_sym__Nonnull] = ACTIONS(3596), + [anon_sym_mutable] = ACTIONS(3596), + [anon_sym_constinit] = ACTIONS(3596), + [anon_sym_consteval] = ACTIONS(3596), + [anon_sym_alignas] = ACTIONS(3596), + [anon_sym__Alignas] = ACTIONS(3596), + [sym_primitive_type] = ACTIONS(3596), + [anon_sym_enum] = ACTIONS(3596), + [anon_sym_class] = ACTIONS(3596), + [anon_sym_struct] = ACTIONS(3596), + [anon_sym_union] = ACTIONS(3596), + [anon_sym_if] = ACTIONS(3596), + [anon_sym_else] = ACTIONS(3596), + [anon_sym_switch] = ACTIONS(3596), + [anon_sym_while] = ACTIONS(3596), + [anon_sym_do] = ACTIONS(3596), + [anon_sym_for] = ACTIONS(3596), + [anon_sym_return] = ACTIONS(3596), + [anon_sym_break] = ACTIONS(3596), + [anon_sym_continue] = ACTIONS(3596), + [anon_sym_goto] = ACTIONS(3596), + [anon_sym___try] = ACTIONS(3596), + [anon_sym___leave] = ACTIONS(3596), + [anon_sym_not] = ACTIONS(3596), + [anon_sym_compl] = ACTIONS(3596), [anon_sym_DASH_DASH] = ACTIONS(3598), [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3596), + [anon_sym___alignof__] = ACTIONS(3596), + [anon_sym___alignof] = ACTIONS(3596), + [anon_sym__alignof] = ACTIONS(3596), + [anon_sym_alignof] = ACTIONS(3596), + [anon_sym__Alignof] = ACTIONS(3596), + [anon_sym_offsetof] = ACTIONS(3596), + [anon_sym__Generic] = ACTIONS(3596), + [anon_sym_typename] = ACTIONS(3596), + [anon_sym_asm] = ACTIONS(3596), + [anon_sym___asm__] = ACTIONS(3596), + [anon_sym___asm] = ACTIONS(3596), + [sym_number_literal] = ACTIONS(3598), + [anon_sym_L_SQUOTE] = ACTIONS(3598), + [anon_sym_u_SQUOTE] = ACTIONS(3598), + [anon_sym_U_SQUOTE] = ACTIONS(3598), + [anon_sym_u8_SQUOTE] = ACTIONS(3598), + [anon_sym_SQUOTE] = ACTIONS(3598), + [anon_sym_L_DQUOTE] = ACTIONS(3598), + [anon_sym_u_DQUOTE] = ACTIONS(3598), + [anon_sym_U_DQUOTE] = ACTIONS(3598), + [anon_sym_u8_DQUOTE] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3598), + [sym_true] = ACTIONS(3596), + [sym_false] = ACTIONS(3596), + [anon_sym_NULL] = ACTIONS(3596), + [anon_sym_nullptr] = ACTIONS(3596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3596), + [anon_sym_decltype] = ACTIONS(3596), + [anon_sym_template] = ACTIONS(3596), + [anon_sym_try] = ACTIONS(3596), + [anon_sym_delete] = ACTIONS(3596), + [anon_sym_throw] = ACTIONS(3596), + [anon_sym_co_return] = ACTIONS(3596), + [anon_sym_co_yield] = ACTIONS(3596), + [anon_sym_R_DQUOTE] = ACTIONS(3598), + [anon_sym_LR_DQUOTE] = ACTIONS(3598), + [anon_sym_uR_DQUOTE] = ACTIONS(3598), + [anon_sym_UR_DQUOTE] = ACTIONS(3598), + [anon_sym_u8R_DQUOTE] = ACTIONS(3598), + [anon_sym_co_await] = ACTIONS(3596), + [anon_sym_new] = ACTIONS(3596), + [anon_sym_requires] = ACTIONS(3596), + [anon_sym_CARET_CARET] = ACTIONS(3598), + [anon_sym_LBRACK_COLON] = ACTIONS(3598), + [sym_this] = ACTIONS(3596), + }, + [STATE(1250)] = { + [sym_identifier] = ACTIONS(3618), + [anon_sym_LPAREN2] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym___extension__] = ACTIONS(3618), + [anon_sym_typedef] = ACTIONS(3618), + [anon_sym_virtual] = ACTIONS(3618), + [anon_sym_extern] = ACTIONS(3618), + [anon_sym___attribute__] = ACTIONS(3618), + [anon_sym___attribute] = ACTIONS(3618), + [anon_sym_COLON_COLON] = ACTIONS(3620), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), + [anon_sym___declspec] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_signed] = ACTIONS(3618), + [anon_sym_unsigned] = ACTIONS(3618), + [anon_sym_long] = ACTIONS(3618), + [anon_sym_short] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_register] = ACTIONS(3618), + [anon_sym_inline] = ACTIONS(3618), + [anon_sym___inline] = ACTIONS(3618), + [anon_sym___inline__] = ACTIONS(3618), + [anon_sym___forceinline] = ACTIONS(3618), + [anon_sym_thread_local] = ACTIONS(3618), + [anon_sym___thread] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_constexpr] = ACTIONS(3618), + [anon_sym_volatile] = ACTIONS(3618), + [anon_sym_restrict] = ACTIONS(3618), + [anon_sym___restrict__] = ACTIONS(3618), + [anon_sym__Atomic] = ACTIONS(3618), + [anon_sym__Noreturn] = ACTIONS(3618), + [anon_sym_noreturn] = ACTIONS(3618), + [anon_sym__Nonnull] = ACTIONS(3618), + [anon_sym_mutable] = ACTIONS(3618), + [anon_sym_constinit] = ACTIONS(3618), + [anon_sym_consteval] = ACTIONS(3618), + [anon_sym_alignas] = ACTIONS(3618), + [anon_sym__Alignas] = ACTIONS(3618), + [sym_primitive_type] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_struct] = ACTIONS(3618), + [anon_sym_union] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_else] = ACTIONS(3618), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_goto] = ACTIONS(3618), + [anon_sym___try] = ACTIONS(3618), + [anon_sym___leave] = ACTIONS(3618), + [anon_sym_not] = ACTIONS(3618), + [anon_sym_compl] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_sizeof] = ACTIONS(3618), + [anon_sym___alignof__] = ACTIONS(3618), + [anon_sym___alignof] = ACTIONS(3618), + [anon_sym__alignof] = ACTIONS(3618), + [anon_sym_alignof] = ACTIONS(3618), + [anon_sym__Alignof] = ACTIONS(3618), + [anon_sym_offsetof] = ACTIONS(3618), + [anon_sym__Generic] = ACTIONS(3618), + [anon_sym_typename] = ACTIONS(3618), + [anon_sym_asm] = ACTIONS(3618), + [anon_sym___asm__] = ACTIONS(3618), + [anon_sym___asm] = ACTIONS(3618), + [sym_number_literal] = ACTIONS(3620), + [anon_sym_L_SQUOTE] = ACTIONS(3620), + [anon_sym_u_SQUOTE] = ACTIONS(3620), + [anon_sym_U_SQUOTE] = ACTIONS(3620), + [anon_sym_u8_SQUOTE] = ACTIONS(3620), + [anon_sym_SQUOTE] = ACTIONS(3620), + [anon_sym_L_DQUOTE] = ACTIONS(3620), + [anon_sym_u_DQUOTE] = ACTIONS(3620), + [anon_sym_U_DQUOTE] = ACTIONS(3620), + [anon_sym_u8_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [anon_sym_NULL] = ACTIONS(3618), + [anon_sym_nullptr] = ACTIONS(3618), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3618), + [anon_sym_decltype] = ACTIONS(3618), + [anon_sym_template] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_co_return] = ACTIONS(3618), + [anon_sym_co_yield] = ACTIONS(3618), + [anon_sym_R_DQUOTE] = ACTIONS(3620), + [anon_sym_LR_DQUOTE] = ACTIONS(3620), + [anon_sym_uR_DQUOTE] = ACTIONS(3620), + [anon_sym_UR_DQUOTE] = ACTIONS(3620), + [anon_sym_u8R_DQUOTE] = ACTIONS(3620), + [anon_sym_co_await] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_requires] = ACTIONS(3618), + [anon_sym_CARET_CARET] = ACTIONS(3620), + [anon_sym_LBRACK_COLON] = ACTIONS(3620), + [sym_this] = ACTIONS(3618), + }, + [STATE(1251)] = { + [sym_identifier] = ACTIONS(3532), + [anon_sym_LPAREN2] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3534), + [anon_sym_TILDE] = ACTIONS(3534), + [anon_sym_DASH] = ACTIONS(3532), + [anon_sym_PLUS] = ACTIONS(3532), + [anon_sym_STAR] = ACTIONS(3534), + [anon_sym_AMP] = ACTIONS(3534), + [anon_sym_SEMI] = ACTIONS(3534), + [anon_sym___extension__] = ACTIONS(3532), + [anon_sym_typedef] = ACTIONS(3532), + [anon_sym_virtual] = ACTIONS(3532), + [anon_sym_extern] = ACTIONS(3532), + [anon_sym___attribute__] = ACTIONS(3532), + [anon_sym___attribute] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3534), + [anon_sym___declspec] = ACTIONS(3532), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_signed] = ACTIONS(3532), + [anon_sym_unsigned] = ACTIONS(3532), + [anon_sym_long] = ACTIONS(3532), + [anon_sym_short] = ACTIONS(3532), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_static] = ACTIONS(3532), + [anon_sym_register] = ACTIONS(3532), + [anon_sym_inline] = ACTIONS(3532), + [anon_sym___inline] = ACTIONS(3532), + [anon_sym___inline__] = ACTIONS(3532), + [anon_sym___forceinline] = ACTIONS(3532), + [anon_sym_thread_local] = ACTIONS(3532), + [anon_sym___thread] = ACTIONS(3532), + [anon_sym_const] = ACTIONS(3532), + [anon_sym_constexpr] = ACTIONS(3532), + [anon_sym_volatile] = ACTIONS(3532), + [anon_sym_restrict] = ACTIONS(3532), + [anon_sym___restrict__] = ACTIONS(3532), + [anon_sym__Atomic] = ACTIONS(3532), + [anon_sym__Noreturn] = ACTIONS(3532), + [anon_sym_noreturn] = ACTIONS(3532), + [anon_sym__Nonnull] = ACTIONS(3532), + [anon_sym_mutable] = ACTIONS(3532), + [anon_sym_constinit] = ACTIONS(3532), + [anon_sym_consteval] = ACTIONS(3532), + [anon_sym_alignas] = ACTIONS(3532), + [anon_sym__Alignas] = ACTIONS(3532), + [sym_primitive_type] = ACTIONS(3532), + [anon_sym_enum] = ACTIONS(3532), + [anon_sym_class] = ACTIONS(3532), + [anon_sym_struct] = ACTIONS(3532), + [anon_sym_union] = ACTIONS(3532), + [anon_sym_if] = ACTIONS(3532), + [anon_sym_else] = ACTIONS(3532), + [anon_sym_switch] = ACTIONS(3532), + [anon_sym_while] = ACTIONS(3532), + [anon_sym_do] = ACTIONS(3532), + [anon_sym_for] = ACTIONS(3532), + [anon_sym_return] = ACTIONS(3532), + [anon_sym_break] = ACTIONS(3532), + [anon_sym_continue] = ACTIONS(3532), + [anon_sym_goto] = ACTIONS(3532), + [anon_sym___try] = ACTIONS(3532), + [anon_sym___leave] = ACTIONS(3532), + [anon_sym_not] = ACTIONS(3532), + [anon_sym_compl] = ACTIONS(3532), + [anon_sym_DASH_DASH] = ACTIONS(3534), + [anon_sym_PLUS_PLUS] = ACTIONS(3534), + [anon_sym_sizeof] = ACTIONS(3532), + [anon_sym___alignof__] = ACTIONS(3532), + [anon_sym___alignof] = ACTIONS(3532), + [anon_sym__alignof] = ACTIONS(3532), + [anon_sym_alignof] = ACTIONS(3532), + [anon_sym__Alignof] = ACTIONS(3532), + [anon_sym_offsetof] = ACTIONS(3532), + [anon_sym__Generic] = ACTIONS(3532), + [anon_sym_typename] = ACTIONS(3532), + [anon_sym_asm] = ACTIONS(3532), + [anon_sym___asm__] = ACTIONS(3532), + [anon_sym___asm] = ACTIONS(3532), + [sym_number_literal] = ACTIONS(3534), + [anon_sym_L_SQUOTE] = ACTIONS(3534), + [anon_sym_u_SQUOTE] = ACTIONS(3534), + [anon_sym_U_SQUOTE] = ACTIONS(3534), + [anon_sym_u8_SQUOTE] = ACTIONS(3534), + [anon_sym_SQUOTE] = ACTIONS(3534), + [anon_sym_L_DQUOTE] = ACTIONS(3534), + [anon_sym_u_DQUOTE] = ACTIONS(3534), + [anon_sym_U_DQUOTE] = ACTIONS(3534), + [anon_sym_u8_DQUOTE] = ACTIONS(3534), + [anon_sym_DQUOTE] = ACTIONS(3534), + [sym_true] = ACTIONS(3532), + [sym_false] = ACTIONS(3532), + [anon_sym_NULL] = ACTIONS(3532), + [anon_sym_nullptr] = ACTIONS(3532), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3532), + [anon_sym_decltype] = ACTIONS(3532), + [anon_sym_template] = ACTIONS(3532), + [anon_sym_try] = ACTIONS(3532), + [anon_sym_delete] = ACTIONS(3532), + [anon_sym_throw] = ACTIONS(3532), + [anon_sym_co_return] = ACTIONS(3532), + [anon_sym_co_yield] = ACTIONS(3532), + [anon_sym_R_DQUOTE] = ACTIONS(3534), + [anon_sym_LR_DQUOTE] = ACTIONS(3534), + [anon_sym_uR_DQUOTE] = ACTIONS(3534), + [anon_sym_UR_DQUOTE] = ACTIONS(3534), + [anon_sym_u8R_DQUOTE] = ACTIONS(3534), + [anon_sym_co_await] = ACTIONS(3532), + [anon_sym_new] = ACTIONS(3532), + [anon_sym_requires] = ACTIONS(3532), + [anon_sym_CARET_CARET] = ACTIONS(3534), + [anon_sym_LBRACK_COLON] = ACTIONS(3534), + [sym_this] = ACTIONS(3532), + }, + [STATE(1252)] = { + [sym_identifier] = ACTIONS(3564), + [anon_sym_LPAREN2] = ACTIONS(3566), + [anon_sym_BANG] = ACTIONS(3566), + [anon_sym_TILDE] = ACTIONS(3566), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3566), + [anon_sym_AMP] = ACTIONS(3566), + [anon_sym_SEMI] = ACTIONS(3566), + [anon_sym___extension__] = ACTIONS(3564), + [anon_sym_typedef] = ACTIONS(3564), + [anon_sym_virtual] = ACTIONS(3564), + [anon_sym_extern] = ACTIONS(3564), + [anon_sym___attribute__] = ACTIONS(3564), + [anon_sym___attribute] = ACTIONS(3564), + [anon_sym_COLON_COLON] = ACTIONS(3566), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3566), + [anon_sym___declspec] = ACTIONS(3564), + [anon_sym_LBRACE] = ACTIONS(3566), + [anon_sym_signed] = ACTIONS(3564), + [anon_sym_unsigned] = ACTIONS(3564), + [anon_sym_long] = ACTIONS(3564), + [anon_sym_short] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3564), + [anon_sym_static] = ACTIONS(3564), + [anon_sym_register] = ACTIONS(3564), + [anon_sym_inline] = ACTIONS(3564), + [anon_sym___inline] = ACTIONS(3564), + [anon_sym___inline__] = ACTIONS(3564), + [anon_sym___forceinline] = ACTIONS(3564), + [anon_sym_thread_local] = ACTIONS(3564), + [anon_sym___thread] = ACTIONS(3564), + [anon_sym_const] = ACTIONS(3564), + [anon_sym_constexpr] = ACTIONS(3564), + [anon_sym_volatile] = ACTIONS(3564), + [anon_sym_restrict] = ACTIONS(3564), + [anon_sym___restrict__] = ACTIONS(3564), + [anon_sym__Atomic] = ACTIONS(3564), + [anon_sym__Noreturn] = ACTIONS(3564), + [anon_sym_noreturn] = ACTIONS(3564), + [anon_sym__Nonnull] = ACTIONS(3564), + [anon_sym_mutable] = ACTIONS(3564), + [anon_sym_constinit] = ACTIONS(3564), + [anon_sym_consteval] = ACTIONS(3564), + [anon_sym_alignas] = ACTIONS(3564), + [anon_sym__Alignas] = ACTIONS(3564), + [sym_primitive_type] = ACTIONS(3564), + [anon_sym_enum] = ACTIONS(3564), + [anon_sym_class] = ACTIONS(3564), + [anon_sym_struct] = ACTIONS(3564), + [anon_sym_union] = ACTIONS(3564), + [anon_sym_if] = ACTIONS(3564), + [anon_sym_else] = ACTIONS(3564), + [anon_sym_switch] = ACTIONS(3564), + [anon_sym_while] = ACTIONS(3564), + [anon_sym_do] = ACTIONS(3564), + [anon_sym_for] = ACTIONS(3564), + [anon_sym_return] = ACTIONS(3564), + [anon_sym_break] = ACTIONS(3564), + [anon_sym_continue] = ACTIONS(3564), + [anon_sym_goto] = ACTIONS(3564), + [anon_sym___try] = ACTIONS(3564), + [anon_sym___leave] = ACTIONS(3564), + [anon_sym_not] = ACTIONS(3564), + [anon_sym_compl] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3566), + [anon_sym_sizeof] = ACTIONS(3564), + [anon_sym___alignof__] = ACTIONS(3564), + [anon_sym___alignof] = ACTIONS(3564), + [anon_sym__alignof] = ACTIONS(3564), + [anon_sym_alignof] = ACTIONS(3564), + [anon_sym__Alignof] = ACTIONS(3564), + [anon_sym_offsetof] = ACTIONS(3564), + [anon_sym__Generic] = ACTIONS(3564), + [anon_sym_typename] = ACTIONS(3564), + [anon_sym_asm] = ACTIONS(3564), + [anon_sym___asm__] = ACTIONS(3564), + [anon_sym___asm] = ACTIONS(3564), + [sym_number_literal] = ACTIONS(3566), + [anon_sym_L_SQUOTE] = ACTIONS(3566), + [anon_sym_u_SQUOTE] = ACTIONS(3566), + [anon_sym_U_SQUOTE] = ACTIONS(3566), + [anon_sym_u8_SQUOTE] = ACTIONS(3566), + [anon_sym_SQUOTE] = ACTIONS(3566), + [anon_sym_L_DQUOTE] = ACTIONS(3566), + [anon_sym_u_DQUOTE] = ACTIONS(3566), + [anon_sym_U_DQUOTE] = ACTIONS(3566), + [anon_sym_u8_DQUOTE] = ACTIONS(3566), + [anon_sym_DQUOTE] = ACTIONS(3566), + [sym_true] = ACTIONS(3564), + [sym_false] = ACTIONS(3564), + [anon_sym_NULL] = ACTIONS(3564), + [anon_sym_nullptr] = ACTIONS(3564), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3564), + [anon_sym_decltype] = ACTIONS(3564), + [anon_sym_template] = ACTIONS(3564), + [anon_sym_try] = ACTIONS(3564), + [anon_sym_delete] = ACTIONS(3564), + [anon_sym_throw] = ACTIONS(3564), + [anon_sym_co_return] = ACTIONS(3564), + [anon_sym_co_yield] = ACTIONS(3564), + [anon_sym_R_DQUOTE] = ACTIONS(3566), + [anon_sym_LR_DQUOTE] = ACTIONS(3566), + [anon_sym_uR_DQUOTE] = ACTIONS(3566), + [anon_sym_UR_DQUOTE] = ACTIONS(3566), + [anon_sym_u8R_DQUOTE] = ACTIONS(3566), + [anon_sym_co_await] = ACTIONS(3564), + [anon_sym_new] = ACTIONS(3564), + [anon_sym_requires] = ACTIONS(3564), + [anon_sym_CARET_CARET] = ACTIONS(3566), + [anon_sym_LBRACK_COLON] = ACTIONS(3566), + [sym_this] = ACTIONS(3564), + }, + [STATE(1253)] = { + [sym_identifier] = ACTIONS(3618), + [anon_sym_LPAREN2] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym___extension__] = ACTIONS(3618), + [anon_sym_typedef] = ACTIONS(3618), + [anon_sym_virtual] = ACTIONS(3618), + [anon_sym_extern] = ACTIONS(3618), + [anon_sym___attribute__] = ACTIONS(3618), + [anon_sym___attribute] = ACTIONS(3618), + [anon_sym_COLON_COLON] = ACTIONS(3620), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), + [anon_sym___declspec] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_signed] = ACTIONS(3618), + [anon_sym_unsigned] = ACTIONS(3618), + [anon_sym_long] = ACTIONS(3618), + [anon_sym_short] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_register] = ACTIONS(3618), + [anon_sym_inline] = ACTIONS(3618), + [anon_sym___inline] = ACTIONS(3618), + [anon_sym___inline__] = ACTIONS(3618), + [anon_sym___forceinline] = ACTIONS(3618), + [anon_sym_thread_local] = ACTIONS(3618), + [anon_sym___thread] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_constexpr] = ACTIONS(3618), + [anon_sym_volatile] = ACTIONS(3618), + [anon_sym_restrict] = ACTIONS(3618), + [anon_sym___restrict__] = ACTIONS(3618), + [anon_sym__Atomic] = ACTIONS(3618), + [anon_sym__Noreturn] = ACTIONS(3618), + [anon_sym_noreturn] = ACTIONS(3618), + [anon_sym__Nonnull] = ACTIONS(3618), + [anon_sym_mutable] = ACTIONS(3618), + [anon_sym_constinit] = ACTIONS(3618), + [anon_sym_consteval] = ACTIONS(3618), + [anon_sym_alignas] = ACTIONS(3618), + [anon_sym__Alignas] = ACTIONS(3618), + [sym_primitive_type] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_struct] = ACTIONS(3618), + [anon_sym_union] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_else] = ACTIONS(3618), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_goto] = ACTIONS(3618), + [anon_sym___try] = ACTIONS(3618), + [anon_sym___leave] = ACTIONS(3618), + [anon_sym_not] = ACTIONS(3618), + [anon_sym_compl] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_sizeof] = ACTIONS(3618), + [anon_sym___alignof__] = ACTIONS(3618), + [anon_sym___alignof] = ACTIONS(3618), + [anon_sym__alignof] = ACTIONS(3618), + [anon_sym_alignof] = ACTIONS(3618), + [anon_sym__Alignof] = ACTIONS(3618), + [anon_sym_offsetof] = ACTIONS(3618), + [anon_sym__Generic] = ACTIONS(3618), + [anon_sym_typename] = ACTIONS(3618), + [anon_sym_asm] = ACTIONS(3618), + [anon_sym___asm__] = ACTIONS(3618), + [anon_sym___asm] = ACTIONS(3618), + [sym_number_literal] = ACTIONS(3620), + [anon_sym_L_SQUOTE] = ACTIONS(3620), + [anon_sym_u_SQUOTE] = ACTIONS(3620), + [anon_sym_U_SQUOTE] = ACTIONS(3620), + [anon_sym_u8_SQUOTE] = ACTIONS(3620), + [anon_sym_SQUOTE] = ACTIONS(3620), + [anon_sym_L_DQUOTE] = ACTIONS(3620), + [anon_sym_u_DQUOTE] = ACTIONS(3620), + [anon_sym_U_DQUOTE] = ACTIONS(3620), + [anon_sym_u8_DQUOTE] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [anon_sym_NULL] = ACTIONS(3618), + [anon_sym_nullptr] = ACTIONS(3618), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3618), + [anon_sym_decltype] = ACTIONS(3618), + [anon_sym_template] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_co_return] = ACTIONS(3618), + [anon_sym_co_yield] = ACTIONS(3618), + [anon_sym_R_DQUOTE] = ACTIONS(3620), + [anon_sym_LR_DQUOTE] = ACTIONS(3620), + [anon_sym_uR_DQUOTE] = ACTIONS(3620), + [anon_sym_UR_DQUOTE] = ACTIONS(3620), + [anon_sym_u8R_DQUOTE] = ACTIONS(3620), + [anon_sym_co_await] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_requires] = ACTIONS(3618), + [anon_sym_CARET_CARET] = ACTIONS(3620), + [anon_sym_LBRACK_COLON] = ACTIONS(3620), + [sym_this] = ACTIONS(3618), + }, + [STATE(1254)] = { + [sym_identifier] = ACTIONS(3600), + [anon_sym_LPAREN2] = ACTIONS(3602), + [anon_sym_BANG] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3600), + [anon_sym_STAR] = ACTIONS(3602), + [anon_sym_AMP] = ACTIONS(3602), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym___extension__] = ACTIONS(3600), + [anon_sym_typedef] = ACTIONS(3600), + [anon_sym_virtual] = ACTIONS(3600), + [anon_sym_extern] = ACTIONS(3600), + [anon_sym___attribute__] = ACTIONS(3600), + [anon_sym___attribute] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), + [anon_sym___declspec] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_signed] = ACTIONS(3600), + [anon_sym_unsigned] = ACTIONS(3600), + [anon_sym_long] = ACTIONS(3600), + [anon_sym_short] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_register] = ACTIONS(3600), + [anon_sym_inline] = ACTIONS(3600), + [anon_sym___inline] = ACTIONS(3600), + [anon_sym___inline__] = ACTIONS(3600), + [anon_sym___forceinline] = ACTIONS(3600), + [anon_sym_thread_local] = ACTIONS(3600), + [anon_sym___thread] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_constexpr] = ACTIONS(3600), + [anon_sym_volatile] = ACTIONS(3600), + [anon_sym_restrict] = ACTIONS(3600), + [anon_sym___restrict__] = ACTIONS(3600), + [anon_sym__Atomic] = ACTIONS(3600), + [anon_sym__Noreturn] = ACTIONS(3600), + [anon_sym_noreturn] = ACTIONS(3600), + [anon_sym__Nonnull] = ACTIONS(3600), + [anon_sym_mutable] = ACTIONS(3600), + [anon_sym_constinit] = ACTIONS(3600), + [anon_sym_consteval] = ACTIONS(3600), + [anon_sym_alignas] = ACTIONS(3600), + [anon_sym__Alignas] = ACTIONS(3600), + [sym_primitive_type] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_struct] = ACTIONS(3600), + [anon_sym_union] = ACTIONS(3600), + [anon_sym_if] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3600), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_while] = ACTIONS(3600), + [anon_sym_do] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3600), + [anon_sym_return] = ACTIONS(3600), + [anon_sym_break] = ACTIONS(3600), + [anon_sym_continue] = ACTIONS(3600), + [anon_sym_goto] = ACTIONS(3600), + [anon_sym___try] = ACTIONS(3600), + [anon_sym___leave] = ACTIONS(3600), + [anon_sym_not] = ACTIONS(3600), + [anon_sym_compl] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3602), + [anon_sym_PLUS_PLUS] = ACTIONS(3602), [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym___alignof__] = ACTIONS(3600), + [anon_sym___alignof] = ACTIONS(3600), + [anon_sym__alignof] = ACTIONS(3600), + [anon_sym_alignof] = ACTIONS(3600), + [anon_sym__Alignof] = ACTIONS(3600), + [anon_sym_offsetof] = ACTIONS(3600), + [anon_sym__Generic] = ACTIONS(3600), + [anon_sym_typename] = ACTIONS(3600), + [anon_sym_asm] = ACTIONS(3600), + [anon_sym___asm__] = ACTIONS(3600), + [anon_sym___asm] = ACTIONS(3600), + [sym_number_literal] = ACTIONS(3602), + [anon_sym_L_SQUOTE] = ACTIONS(3602), + [anon_sym_u_SQUOTE] = ACTIONS(3602), + [anon_sym_U_SQUOTE] = ACTIONS(3602), + [anon_sym_u8_SQUOTE] = ACTIONS(3602), + [anon_sym_SQUOTE] = ACTIONS(3602), + [anon_sym_L_DQUOTE] = ACTIONS(3602), + [anon_sym_u_DQUOTE] = ACTIONS(3602), + [anon_sym_U_DQUOTE] = ACTIONS(3602), + [anon_sym_u8_DQUOTE] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [sym_true] = ACTIONS(3600), + [sym_false] = ACTIONS(3600), + [anon_sym_NULL] = ACTIONS(3600), + [anon_sym_nullptr] = ACTIONS(3600), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3600), + [anon_sym_decltype] = ACTIONS(3600), + [anon_sym_template] = ACTIONS(3600), + [anon_sym_try] = ACTIONS(3600), + [anon_sym_delete] = ACTIONS(3600), + [anon_sym_throw] = ACTIONS(3600), + [anon_sym_co_return] = ACTIONS(3600), + [anon_sym_co_yield] = ACTIONS(3600), + [anon_sym_R_DQUOTE] = ACTIONS(3602), + [anon_sym_LR_DQUOTE] = ACTIONS(3602), + [anon_sym_uR_DQUOTE] = ACTIONS(3602), + [anon_sym_UR_DQUOTE] = ACTIONS(3602), + [anon_sym_u8R_DQUOTE] = ACTIONS(3602), + [anon_sym_co_await] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3600), + [anon_sym_requires] = ACTIONS(3600), + [anon_sym_CARET_CARET] = ACTIONS(3602), + [anon_sym_LBRACK_COLON] = ACTIONS(3602), + [sym_this] = ACTIONS(3600), + }, + [STATE(1255)] = { + [sym_identifier] = ACTIONS(3622), + [anon_sym_LPAREN2] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_STAR] = ACTIONS(3624), + [anon_sym_AMP] = ACTIONS(3624), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym___extension__] = ACTIONS(3622), + [anon_sym_typedef] = ACTIONS(3622), + [anon_sym_virtual] = ACTIONS(3622), + [anon_sym_extern] = ACTIONS(3622), + [anon_sym___attribute__] = ACTIONS(3622), + [anon_sym___attribute] = ACTIONS(3622), + [anon_sym_COLON_COLON] = ACTIONS(3624), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), + [anon_sym___declspec] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_signed] = ACTIONS(3622), + [anon_sym_unsigned] = ACTIONS(3622), + [anon_sym_long] = ACTIONS(3622), + [anon_sym_short] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_register] = ACTIONS(3622), + [anon_sym_inline] = ACTIONS(3622), + [anon_sym___inline] = ACTIONS(3622), + [anon_sym___inline__] = ACTIONS(3622), + [anon_sym___forceinline] = ACTIONS(3622), + [anon_sym_thread_local] = ACTIONS(3622), + [anon_sym___thread] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_constexpr] = ACTIONS(3622), + [anon_sym_volatile] = ACTIONS(3622), + [anon_sym_restrict] = ACTIONS(3622), + [anon_sym___restrict__] = ACTIONS(3622), + [anon_sym__Atomic] = ACTIONS(3622), + [anon_sym__Noreturn] = ACTIONS(3622), + [anon_sym_noreturn] = ACTIONS(3622), + [anon_sym__Nonnull] = ACTIONS(3622), + [anon_sym_mutable] = ACTIONS(3622), + [anon_sym_constinit] = ACTIONS(3622), + [anon_sym_consteval] = ACTIONS(3622), + [anon_sym_alignas] = ACTIONS(3622), + [anon_sym__Alignas] = ACTIONS(3622), + [sym_primitive_type] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_struct] = ACTIONS(3622), + [anon_sym_union] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_goto] = ACTIONS(3622), + [anon_sym___try] = ACTIONS(3622), + [anon_sym___leave] = ACTIONS(3622), + [anon_sym_not] = ACTIONS(3622), + [anon_sym_compl] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_sizeof] = ACTIONS(3622), + [anon_sym___alignof__] = ACTIONS(3622), + [anon_sym___alignof] = ACTIONS(3622), + [anon_sym__alignof] = ACTIONS(3622), + [anon_sym_alignof] = ACTIONS(3622), + [anon_sym__Alignof] = ACTIONS(3622), + [anon_sym_offsetof] = ACTIONS(3622), + [anon_sym__Generic] = ACTIONS(3622), + [anon_sym_typename] = ACTIONS(3622), + [anon_sym_asm] = ACTIONS(3622), + [anon_sym___asm__] = ACTIONS(3622), + [anon_sym___asm] = ACTIONS(3622), + [sym_number_literal] = ACTIONS(3624), + [anon_sym_L_SQUOTE] = ACTIONS(3624), + [anon_sym_u_SQUOTE] = ACTIONS(3624), + [anon_sym_U_SQUOTE] = ACTIONS(3624), + [anon_sym_u8_SQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_L_DQUOTE] = ACTIONS(3624), + [anon_sym_u_DQUOTE] = ACTIONS(3624), + [anon_sym_U_DQUOTE] = ACTIONS(3624), + [anon_sym_u8_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [anon_sym_NULL] = ACTIONS(3622), + [anon_sym_nullptr] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3622), + [anon_sym_decltype] = ACTIONS(3622), + [anon_sym_template] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_co_return] = ACTIONS(3622), + [anon_sym_co_yield] = ACTIONS(3622), + [anon_sym_R_DQUOTE] = ACTIONS(3624), + [anon_sym_LR_DQUOTE] = ACTIONS(3624), + [anon_sym_uR_DQUOTE] = ACTIONS(3624), + [anon_sym_UR_DQUOTE] = ACTIONS(3624), + [anon_sym_u8R_DQUOTE] = ACTIONS(3624), + [anon_sym_co_await] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_requires] = ACTIONS(3622), + [anon_sym_CARET_CARET] = ACTIONS(3624), + [anon_sym_LBRACK_COLON] = ACTIONS(3624), + [sym_this] = ACTIONS(3622), + }, + [STATE(1256)] = { + [sym_identifier] = ACTIONS(3654), + [anon_sym_LPAREN2] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_STAR] = ACTIONS(3656), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym___extension__] = ACTIONS(3654), + [anon_sym_typedef] = ACTIONS(3654), + [anon_sym_virtual] = ACTIONS(3654), + [anon_sym_extern] = ACTIONS(3654), + [anon_sym___attribute__] = ACTIONS(3654), + [anon_sym___attribute] = ACTIONS(3654), + [anon_sym_COLON_COLON] = ACTIONS(3656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3656), + [anon_sym___declspec] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_signed] = ACTIONS(3654), + [anon_sym_unsigned] = ACTIONS(3654), + [anon_sym_long] = ACTIONS(3654), + [anon_sym_short] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_register] = ACTIONS(3654), + [anon_sym_inline] = ACTIONS(3654), + [anon_sym___inline] = ACTIONS(3654), + [anon_sym___inline__] = ACTIONS(3654), + [anon_sym___forceinline] = ACTIONS(3654), + [anon_sym_thread_local] = ACTIONS(3654), + [anon_sym___thread] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3654), + [anon_sym_constexpr] = ACTIONS(3654), + [anon_sym_volatile] = ACTIONS(3654), + [anon_sym_restrict] = ACTIONS(3654), + [anon_sym___restrict__] = ACTIONS(3654), + [anon_sym__Atomic] = ACTIONS(3654), + [anon_sym__Noreturn] = ACTIONS(3654), + [anon_sym_noreturn] = ACTIONS(3654), + [anon_sym__Nonnull] = ACTIONS(3654), + [anon_sym_mutable] = ACTIONS(3654), + [anon_sym_constinit] = ACTIONS(3654), + [anon_sym_consteval] = ACTIONS(3654), + [anon_sym_alignas] = ACTIONS(3654), + [anon_sym__Alignas] = ACTIONS(3654), + [sym_primitive_type] = ACTIONS(3654), + [anon_sym_enum] = ACTIONS(3654), + [anon_sym_class] = ACTIONS(3654), + [anon_sym_struct] = ACTIONS(3654), + [anon_sym_union] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_goto] = ACTIONS(3654), + [anon_sym___try] = ACTIONS(3654), + [anon_sym___leave] = ACTIONS(3654), + [anon_sym_not] = ACTIONS(3654), + [anon_sym_compl] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_sizeof] = ACTIONS(3654), + [anon_sym___alignof__] = ACTIONS(3654), + [anon_sym___alignof] = ACTIONS(3654), + [anon_sym__alignof] = ACTIONS(3654), + [anon_sym_alignof] = ACTIONS(3654), + [anon_sym__Alignof] = ACTIONS(3654), + [anon_sym_offsetof] = ACTIONS(3654), + [anon_sym__Generic] = ACTIONS(3654), + [anon_sym_typename] = ACTIONS(3654), + [anon_sym_asm] = ACTIONS(3654), + [anon_sym___asm__] = ACTIONS(3654), + [anon_sym___asm] = ACTIONS(3654), + [sym_number_literal] = ACTIONS(3656), + [anon_sym_L_SQUOTE] = ACTIONS(3656), + [anon_sym_u_SQUOTE] = ACTIONS(3656), + [anon_sym_U_SQUOTE] = ACTIONS(3656), + [anon_sym_u8_SQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_L_DQUOTE] = ACTIONS(3656), + [anon_sym_u_DQUOTE] = ACTIONS(3656), + [anon_sym_U_DQUOTE] = ACTIONS(3656), + [anon_sym_u8_DQUOTE] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [sym_true] = ACTIONS(3654), + [sym_false] = ACTIONS(3654), + [anon_sym_NULL] = ACTIONS(3654), + [anon_sym_nullptr] = ACTIONS(3654), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3654), + [anon_sym_decltype] = ACTIONS(3654), + [anon_sym_template] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_delete] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_co_return] = ACTIONS(3654), + [anon_sym_co_yield] = ACTIONS(3654), + [anon_sym_R_DQUOTE] = ACTIONS(3656), + [anon_sym_LR_DQUOTE] = ACTIONS(3656), + [anon_sym_uR_DQUOTE] = ACTIONS(3656), + [anon_sym_UR_DQUOTE] = ACTIONS(3656), + [anon_sym_u8R_DQUOTE] = ACTIONS(3656), + [anon_sym_co_await] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_requires] = ACTIONS(3654), + [anon_sym_CARET_CARET] = ACTIONS(3656), + [anon_sym_LBRACK_COLON] = ACTIONS(3656), + [sym_this] = ACTIONS(3654), + }, + [STATE(1257)] = { + [sym_identifier] = ACTIONS(3670), + [anon_sym_LPAREN2] = ACTIONS(3672), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_TILDE] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_STAR] = ACTIONS(3672), + [anon_sym_AMP] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym___extension__] = ACTIONS(3670), + [anon_sym_typedef] = ACTIONS(3670), + [anon_sym_virtual] = ACTIONS(3670), + [anon_sym_extern] = ACTIONS(3670), + [anon_sym___attribute__] = ACTIONS(3670), + [anon_sym___attribute] = ACTIONS(3670), + [anon_sym_COLON_COLON] = ACTIONS(3672), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3672), + [anon_sym___declspec] = ACTIONS(3670), + [anon_sym_LBRACE] = ACTIONS(3672), + [anon_sym_signed] = ACTIONS(3670), + [anon_sym_unsigned] = ACTIONS(3670), + [anon_sym_long] = ACTIONS(3670), + [anon_sym_short] = ACTIONS(3670), + [anon_sym_LBRACK] = ACTIONS(3670), + [anon_sym_static] = ACTIONS(3670), + [anon_sym_register] = ACTIONS(3670), + [anon_sym_inline] = ACTIONS(3670), + [anon_sym___inline] = ACTIONS(3670), + [anon_sym___inline__] = ACTIONS(3670), + [anon_sym___forceinline] = ACTIONS(3670), + [anon_sym_thread_local] = ACTIONS(3670), + [anon_sym___thread] = ACTIONS(3670), + [anon_sym_const] = ACTIONS(3670), + [anon_sym_constexpr] = ACTIONS(3670), + [anon_sym_volatile] = ACTIONS(3670), + [anon_sym_restrict] = ACTIONS(3670), + [anon_sym___restrict__] = ACTIONS(3670), + [anon_sym__Atomic] = ACTIONS(3670), + [anon_sym__Noreturn] = ACTIONS(3670), + [anon_sym_noreturn] = ACTIONS(3670), + [anon_sym__Nonnull] = ACTIONS(3670), + [anon_sym_mutable] = ACTIONS(3670), + [anon_sym_constinit] = ACTIONS(3670), + [anon_sym_consteval] = ACTIONS(3670), + [anon_sym_alignas] = ACTIONS(3670), + [anon_sym__Alignas] = ACTIONS(3670), + [sym_primitive_type] = ACTIONS(3670), + [anon_sym_enum] = ACTIONS(3670), + [anon_sym_class] = ACTIONS(3670), + [anon_sym_struct] = ACTIONS(3670), + [anon_sym_union] = ACTIONS(3670), + [anon_sym_if] = ACTIONS(3670), + [anon_sym_else] = ACTIONS(3670), + [anon_sym_switch] = ACTIONS(3670), + [anon_sym_while] = ACTIONS(3670), + [anon_sym_do] = ACTIONS(3670), + [anon_sym_for] = ACTIONS(3670), + [anon_sym_return] = ACTIONS(3670), + [anon_sym_break] = ACTIONS(3670), + [anon_sym_continue] = ACTIONS(3670), + [anon_sym_goto] = ACTIONS(3670), + [anon_sym___try] = ACTIONS(3670), + [anon_sym___leave] = ACTIONS(3670), + [anon_sym_not] = ACTIONS(3670), + [anon_sym_compl] = ACTIONS(3670), + [anon_sym_DASH_DASH] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3672), + [anon_sym_sizeof] = ACTIONS(3670), + [anon_sym___alignof__] = ACTIONS(3670), + [anon_sym___alignof] = ACTIONS(3670), + [anon_sym__alignof] = ACTIONS(3670), + [anon_sym_alignof] = ACTIONS(3670), + [anon_sym__Alignof] = ACTIONS(3670), + [anon_sym_offsetof] = ACTIONS(3670), + [anon_sym__Generic] = ACTIONS(3670), + [anon_sym_typename] = ACTIONS(3670), + [anon_sym_asm] = ACTIONS(3670), + [anon_sym___asm__] = ACTIONS(3670), + [anon_sym___asm] = ACTIONS(3670), + [sym_number_literal] = ACTIONS(3672), + [anon_sym_L_SQUOTE] = ACTIONS(3672), + [anon_sym_u_SQUOTE] = ACTIONS(3672), + [anon_sym_U_SQUOTE] = ACTIONS(3672), + [anon_sym_u8_SQUOTE] = ACTIONS(3672), + [anon_sym_SQUOTE] = ACTIONS(3672), + [anon_sym_L_DQUOTE] = ACTIONS(3672), + [anon_sym_u_DQUOTE] = ACTIONS(3672), + [anon_sym_U_DQUOTE] = ACTIONS(3672), + [anon_sym_u8_DQUOTE] = ACTIONS(3672), + [anon_sym_DQUOTE] = ACTIONS(3672), + [sym_true] = ACTIONS(3670), + [sym_false] = ACTIONS(3670), + [anon_sym_NULL] = ACTIONS(3670), + [anon_sym_nullptr] = ACTIONS(3670), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3670), + [anon_sym_decltype] = ACTIONS(3670), + [anon_sym_template] = ACTIONS(3670), + [anon_sym_try] = ACTIONS(3670), + [anon_sym_delete] = ACTIONS(3670), + [anon_sym_throw] = ACTIONS(3670), + [anon_sym_co_return] = ACTIONS(3670), + [anon_sym_co_yield] = ACTIONS(3670), + [anon_sym_R_DQUOTE] = ACTIONS(3672), + [anon_sym_LR_DQUOTE] = ACTIONS(3672), + [anon_sym_uR_DQUOTE] = ACTIONS(3672), + [anon_sym_UR_DQUOTE] = ACTIONS(3672), + [anon_sym_u8R_DQUOTE] = ACTIONS(3672), + [anon_sym_co_await] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3670), + [anon_sym_requires] = ACTIONS(3670), + [anon_sym_CARET_CARET] = ACTIONS(3672), + [anon_sym_LBRACK_COLON] = ACTIONS(3672), + [sym_this] = ACTIONS(3670), + }, + [STATE(1258)] = { + [sym_identifier] = ACTIONS(3638), + [anon_sym_LPAREN2] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3640), + [anon_sym_TILDE] = ACTIONS(3640), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_AMP] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym___extension__] = ACTIONS(3638), + [anon_sym_typedef] = ACTIONS(3638), + [anon_sym_virtual] = ACTIONS(3638), + [anon_sym_extern] = ACTIONS(3638), + [anon_sym___attribute__] = ACTIONS(3638), + [anon_sym___attribute] = ACTIONS(3638), + [anon_sym_COLON_COLON] = ACTIONS(3640), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3640), + [anon_sym___declspec] = ACTIONS(3638), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_signed] = ACTIONS(3638), + [anon_sym_unsigned] = ACTIONS(3638), + [anon_sym_long] = ACTIONS(3638), + [anon_sym_short] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_static] = ACTIONS(3638), + [anon_sym_register] = ACTIONS(3638), + [anon_sym_inline] = ACTIONS(3638), + [anon_sym___inline] = ACTIONS(3638), + [anon_sym___inline__] = ACTIONS(3638), + [anon_sym___forceinline] = ACTIONS(3638), + [anon_sym_thread_local] = ACTIONS(3638), + [anon_sym___thread] = ACTIONS(3638), + [anon_sym_const] = ACTIONS(3638), + [anon_sym_constexpr] = ACTIONS(3638), + [anon_sym_volatile] = ACTIONS(3638), + [anon_sym_restrict] = ACTIONS(3638), + [anon_sym___restrict__] = ACTIONS(3638), + [anon_sym__Atomic] = ACTIONS(3638), + [anon_sym__Noreturn] = ACTIONS(3638), + [anon_sym_noreturn] = ACTIONS(3638), + [anon_sym__Nonnull] = ACTIONS(3638), + [anon_sym_mutable] = ACTIONS(3638), + [anon_sym_constinit] = ACTIONS(3638), + [anon_sym_consteval] = ACTIONS(3638), + [anon_sym_alignas] = ACTIONS(3638), + [anon_sym__Alignas] = ACTIONS(3638), + [sym_primitive_type] = ACTIONS(3638), + [anon_sym_enum] = ACTIONS(3638), + [anon_sym_class] = ACTIONS(3638), + [anon_sym_struct] = ACTIONS(3638), + [anon_sym_union] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_else] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_break] = ACTIONS(3638), + [anon_sym_continue] = ACTIONS(3638), + [anon_sym_goto] = ACTIONS(3638), + [anon_sym___try] = ACTIONS(3638), + [anon_sym___leave] = ACTIONS(3638), + [anon_sym_not] = ACTIONS(3638), + [anon_sym_compl] = ACTIONS(3638), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_sizeof] = ACTIONS(3638), + [anon_sym___alignof__] = ACTIONS(3638), + [anon_sym___alignof] = ACTIONS(3638), + [anon_sym__alignof] = ACTIONS(3638), + [anon_sym_alignof] = ACTIONS(3638), + [anon_sym__Alignof] = ACTIONS(3638), + [anon_sym_offsetof] = ACTIONS(3638), + [anon_sym__Generic] = ACTIONS(3638), + [anon_sym_typename] = ACTIONS(3638), + [anon_sym_asm] = ACTIONS(3638), + [anon_sym___asm__] = ACTIONS(3638), + [anon_sym___asm] = ACTIONS(3638), + [sym_number_literal] = ACTIONS(3640), + [anon_sym_L_SQUOTE] = ACTIONS(3640), + [anon_sym_u_SQUOTE] = ACTIONS(3640), + [anon_sym_U_SQUOTE] = ACTIONS(3640), + [anon_sym_u8_SQUOTE] = ACTIONS(3640), + [anon_sym_SQUOTE] = ACTIONS(3640), + [anon_sym_L_DQUOTE] = ACTIONS(3640), + [anon_sym_u_DQUOTE] = ACTIONS(3640), + [anon_sym_U_DQUOTE] = ACTIONS(3640), + [anon_sym_u8_DQUOTE] = ACTIONS(3640), + [anon_sym_DQUOTE] = ACTIONS(3640), + [sym_true] = ACTIONS(3638), + [sym_false] = ACTIONS(3638), + [anon_sym_NULL] = ACTIONS(3638), + [anon_sym_nullptr] = ACTIONS(3638), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3638), + [anon_sym_decltype] = ACTIONS(3638), + [anon_sym_template] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_delete] = ACTIONS(3638), + [anon_sym_throw] = ACTIONS(3638), + [anon_sym_co_return] = ACTIONS(3638), + [anon_sym_co_yield] = ACTIONS(3638), + [anon_sym_R_DQUOTE] = ACTIONS(3640), + [anon_sym_LR_DQUOTE] = ACTIONS(3640), + [anon_sym_uR_DQUOTE] = ACTIONS(3640), + [anon_sym_UR_DQUOTE] = ACTIONS(3640), + [anon_sym_u8R_DQUOTE] = ACTIONS(3640), + [anon_sym_co_await] = ACTIONS(3638), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_requires] = ACTIONS(3638), + [anon_sym_CARET_CARET] = ACTIONS(3640), + [anon_sym_LBRACK_COLON] = ACTIONS(3640), + [sym_this] = ACTIONS(3638), + }, + [STATE(1259)] = { + [sym_identifier] = ACTIONS(3622), + [anon_sym_LPAREN2] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_STAR] = ACTIONS(3624), + [anon_sym_AMP] = ACTIONS(3624), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym___extension__] = ACTIONS(3622), + [anon_sym_typedef] = ACTIONS(3622), + [anon_sym_virtual] = ACTIONS(3622), + [anon_sym_extern] = ACTIONS(3622), + [anon_sym___attribute__] = ACTIONS(3622), + [anon_sym___attribute] = ACTIONS(3622), + [anon_sym_COLON_COLON] = ACTIONS(3624), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), + [anon_sym___declspec] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_signed] = ACTIONS(3622), + [anon_sym_unsigned] = ACTIONS(3622), + [anon_sym_long] = ACTIONS(3622), + [anon_sym_short] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_register] = ACTIONS(3622), + [anon_sym_inline] = ACTIONS(3622), + [anon_sym___inline] = ACTIONS(3622), + [anon_sym___inline__] = ACTIONS(3622), + [anon_sym___forceinline] = ACTIONS(3622), + [anon_sym_thread_local] = ACTIONS(3622), + [anon_sym___thread] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_constexpr] = ACTIONS(3622), + [anon_sym_volatile] = ACTIONS(3622), + [anon_sym_restrict] = ACTIONS(3622), + [anon_sym___restrict__] = ACTIONS(3622), + [anon_sym__Atomic] = ACTIONS(3622), + [anon_sym__Noreturn] = ACTIONS(3622), + [anon_sym_noreturn] = ACTIONS(3622), + [anon_sym__Nonnull] = ACTIONS(3622), + [anon_sym_mutable] = ACTIONS(3622), + [anon_sym_constinit] = ACTIONS(3622), + [anon_sym_consteval] = ACTIONS(3622), + [anon_sym_alignas] = ACTIONS(3622), + [anon_sym__Alignas] = ACTIONS(3622), + [sym_primitive_type] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_struct] = ACTIONS(3622), + [anon_sym_union] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_goto] = ACTIONS(3622), + [anon_sym___try] = ACTIONS(3622), + [anon_sym___leave] = ACTIONS(3622), + [anon_sym_not] = ACTIONS(3622), + [anon_sym_compl] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_sizeof] = ACTIONS(3622), + [anon_sym___alignof__] = ACTIONS(3622), + [anon_sym___alignof] = ACTIONS(3622), + [anon_sym__alignof] = ACTIONS(3622), + [anon_sym_alignof] = ACTIONS(3622), + [anon_sym__Alignof] = ACTIONS(3622), + [anon_sym_offsetof] = ACTIONS(3622), + [anon_sym__Generic] = ACTIONS(3622), + [anon_sym_typename] = ACTIONS(3622), + [anon_sym_asm] = ACTIONS(3622), + [anon_sym___asm__] = ACTIONS(3622), + [anon_sym___asm] = ACTIONS(3622), + [sym_number_literal] = ACTIONS(3624), + [anon_sym_L_SQUOTE] = ACTIONS(3624), + [anon_sym_u_SQUOTE] = ACTIONS(3624), + [anon_sym_U_SQUOTE] = ACTIONS(3624), + [anon_sym_u8_SQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_L_DQUOTE] = ACTIONS(3624), + [anon_sym_u_DQUOTE] = ACTIONS(3624), + [anon_sym_U_DQUOTE] = ACTIONS(3624), + [anon_sym_u8_DQUOTE] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [anon_sym_NULL] = ACTIONS(3622), + [anon_sym_nullptr] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3622), + [anon_sym_decltype] = ACTIONS(3622), + [anon_sym_template] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_co_return] = ACTIONS(3622), + [anon_sym_co_yield] = ACTIONS(3622), + [anon_sym_R_DQUOTE] = ACTIONS(3624), + [anon_sym_LR_DQUOTE] = ACTIONS(3624), + [anon_sym_uR_DQUOTE] = ACTIONS(3624), + [anon_sym_UR_DQUOTE] = ACTIONS(3624), + [anon_sym_u8R_DQUOTE] = ACTIONS(3624), + [anon_sym_co_await] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_requires] = ACTIONS(3622), + [anon_sym_CARET_CARET] = ACTIONS(3624), + [anon_sym_LBRACK_COLON] = ACTIONS(3624), + [sym_this] = ACTIONS(3622), + }, + [STATE(1260)] = { + [sym_identifier] = ACTIONS(3642), + [anon_sym_LPAREN2] = ACTIONS(3644), + [anon_sym_BANG] = ACTIONS(3644), + [anon_sym_TILDE] = ACTIONS(3644), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(3644), + [anon_sym_AMP] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym___extension__] = ACTIONS(3642), + [anon_sym_typedef] = ACTIONS(3642), + [anon_sym_virtual] = ACTIONS(3642), + [anon_sym_extern] = ACTIONS(3642), + [anon_sym___attribute__] = ACTIONS(3642), + [anon_sym___attribute] = ACTIONS(3642), + [anon_sym_COLON_COLON] = ACTIONS(3644), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3644), + [anon_sym___declspec] = ACTIONS(3642), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_signed] = ACTIONS(3642), + [anon_sym_unsigned] = ACTIONS(3642), + [anon_sym_long] = ACTIONS(3642), + [anon_sym_short] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_static] = ACTIONS(3642), + [anon_sym_register] = ACTIONS(3642), + [anon_sym_inline] = ACTIONS(3642), + [anon_sym___inline] = ACTIONS(3642), + [anon_sym___inline__] = ACTIONS(3642), + [anon_sym___forceinline] = ACTIONS(3642), + [anon_sym_thread_local] = ACTIONS(3642), + [anon_sym___thread] = ACTIONS(3642), + [anon_sym_const] = ACTIONS(3642), + [anon_sym_constexpr] = ACTIONS(3642), + [anon_sym_volatile] = ACTIONS(3642), + [anon_sym_restrict] = ACTIONS(3642), + [anon_sym___restrict__] = ACTIONS(3642), + [anon_sym__Atomic] = ACTIONS(3642), + [anon_sym__Noreturn] = ACTIONS(3642), + [anon_sym_noreturn] = ACTIONS(3642), + [anon_sym__Nonnull] = ACTIONS(3642), + [anon_sym_mutable] = ACTIONS(3642), + [anon_sym_constinit] = ACTIONS(3642), + [anon_sym_consteval] = ACTIONS(3642), + [anon_sym_alignas] = ACTIONS(3642), + [anon_sym__Alignas] = ACTIONS(3642), + [sym_primitive_type] = ACTIONS(3642), + [anon_sym_enum] = ACTIONS(3642), + [anon_sym_class] = ACTIONS(3642), + [anon_sym_struct] = ACTIONS(3642), + [anon_sym_union] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_else] = ACTIONS(3642), + [anon_sym_switch] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_break] = ACTIONS(3642), + [anon_sym_continue] = ACTIONS(3642), + [anon_sym_goto] = ACTIONS(3642), + [anon_sym___try] = ACTIONS(3642), + [anon_sym___leave] = ACTIONS(3642), + [anon_sym_not] = ACTIONS(3642), + [anon_sym_compl] = ACTIONS(3642), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_sizeof] = ACTIONS(3642), + [anon_sym___alignof__] = ACTIONS(3642), + [anon_sym___alignof] = ACTIONS(3642), + [anon_sym__alignof] = ACTIONS(3642), + [anon_sym_alignof] = ACTIONS(3642), + [anon_sym__Alignof] = ACTIONS(3642), + [anon_sym_offsetof] = ACTIONS(3642), + [anon_sym__Generic] = ACTIONS(3642), + [anon_sym_typename] = ACTIONS(3642), + [anon_sym_asm] = ACTIONS(3642), + [anon_sym___asm__] = ACTIONS(3642), + [anon_sym___asm] = ACTIONS(3642), + [sym_number_literal] = ACTIONS(3644), + [anon_sym_L_SQUOTE] = ACTIONS(3644), + [anon_sym_u_SQUOTE] = ACTIONS(3644), + [anon_sym_U_SQUOTE] = ACTIONS(3644), + [anon_sym_u8_SQUOTE] = ACTIONS(3644), + [anon_sym_SQUOTE] = ACTIONS(3644), + [anon_sym_L_DQUOTE] = ACTIONS(3644), + [anon_sym_u_DQUOTE] = ACTIONS(3644), + [anon_sym_U_DQUOTE] = ACTIONS(3644), + [anon_sym_u8_DQUOTE] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(3644), + [sym_true] = ACTIONS(3642), + [sym_false] = ACTIONS(3642), + [anon_sym_NULL] = ACTIONS(3642), + [anon_sym_nullptr] = ACTIONS(3642), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3642), + [anon_sym_decltype] = ACTIONS(3642), + [anon_sym_template] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_delete] = ACTIONS(3642), + [anon_sym_throw] = ACTIONS(3642), + [anon_sym_co_return] = ACTIONS(3642), + [anon_sym_co_yield] = ACTIONS(3642), + [anon_sym_R_DQUOTE] = ACTIONS(3644), + [anon_sym_LR_DQUOTE] = ACTIONS(3644), + [anon_sym_uR_DQUOTE] = ACTIONS(3644), + [anon_sym_UR_DQUOTE] = ACTIONS(3644), + [anon_sym_u8R_DQUOTE] = ACTIONS(3644), + [anon_sym_co_await] = ACTIONS(3642), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_requires] = ACTIONS(3642), + [anon_sym_CARET_CARET] = ACTIONS(3644), + [anon_sym_LBRACK_COLON] = ACTIONS(3644), + [sym_this] = ACTIONS(3642), + }, + [STATE(1261)] = { + [sym_identifier] = ACTIONS(3604), + [anon_sym_LPAREN2] = ACTIONS(3606), + [anon_sym_BANG] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3606), + [anon_sym_DASH] = ACTIONS(3604), + [anon_sym_PLUS] = ACTIONS(3604), + [anon_sym_STAR] = ACTIONS(3606), + [anon_sym_AMP] = ACTIONS(3606), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym___extension__] = ACTIONS(3604), + [anon_sym_typedef] = ACTIONS(3604), + [anon_sym_virtual] = ACTIONS(3604), + [anon_sym_extern] = ACTIONS(3604), + [anon_sym___attribute__] = ACTIONS(3604), + [anon_sym___attribute] = ACTIONS(3604), + [anon_sym_COLON_COLON] = ACTIONS(3606), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3606), + [anon_sym___declspec] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3606), + [anon_sym_signed] = ACTIONS(3604), + [anon_sym_unsigned] = ACTIONS(3604), + [anon_sym_long] = ACTIONS(3604), + [anon_sym_short] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3604), + [anon_sym_static] = ACTIONS(3604), + [anon_sym_register] = ACTIONS(3604), + [anon_sym_inline] = ACTIONS(3604), + [anon_sym___inline] = ACTIONS(3604), + [anon_sym___inline__] = ACTIONS(3604), + [anon_sym___forceinline] = ACTIONS(3604), + [anon_sym_thread_local] = ACTIONS(3604), + [anon_sym___thread] = ACTIONS(3604), + [anon_sym_const] = ACTIONS(3604), + [anon_sym_constexpr] = ACTIONS(3604), + [anon_sym_volatile] = ACTIONS(3604), + [anon_sym_restrict] = ACTIONS(3604), + [anon_sym___restrict__] = ACTIONS(3604), + [anon_sym__Atomic] = ACTIONS(3604), + [anon_sym__Noreturn] = ACTIONS(3604), + [anon_sym_noreturn] = ACTIONS(3604), + [anon_sym__Nonnull] = ACTIONS(3604), + [anon_sym_mutable] = ACTIONS(3604), + [anon_sym_constinit] = ACTIONS(3604), + [anon_sym_consteval] = ACTIONS(3604), + [anon_sym_alignas] = ACTIONS(3604), + [anon_sym__Alignas] = ACTIONS(3604), + [sym_primitive_type] = ACTIONS(3604), + [anon_sym_enum] = ACTIONS(3604), + [anon_sym_class] = ACTIONS(3604), + [anon_sym_struct] = ACTIONS(3604), + [anon_sym_union] = ACTIONS(3604), + [anon_sym_if] = ACTIONS(3604), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_switch] = ACTIONS(3604), + [anon_sym_while] = ACTIONS(3604), + [anon_sym_do] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3604), + [anon_sym_return] = ACTIONS(3604), + [anon_sym_break] = ACTIONS(3604), + [anon_sym_continue] = ACTIONS(3604), + [anon_sym_goto] = ACTIONS(3604), + [anon_sym___try] = ACTIONS(3604), + [anon_sym___leave] = ACTIONS(3604), + [anon_sym_not] = ACTIONS(3604), + [anon_sym_compl] = ACTIONS(3604), + [anon_sym_DASH_DASH] = ACTIONS(3606), + [anon_sym_PLUS_PLUS] = ACTIONS(3606), + [anon_sym_sizeof] = ACTIONS(3604), + [anon_sym___alignof__] = ACTIONS(3604), + [anon_sym___alignof] = ACTIONS(3604), + [anon_sym__alignof] = ACTIONS(3604), + [anon_sym_alignof] = ACTIONS(3604), + [anon_sym__Alignof] = ACTIONS(3604), + [anon_sym_offsetof] = ACTIONS(3604), + [anon_sym__Generic] = ACTIONS(3604), + [anon_sym_typename] = ACTIONS(3604), + [anon_sym_asm] = ACTIONS(3604), + [anon_sym___asm__] = ACTIONS(3604), + [anon_sym___asm] = ACTIONS(3604), + [sym_number_literal] = ACTIONS(3606), + [anon_sym_L_SQUOTE] = ACTIONS(3606), + [anon_sym_u_SQUOTE] = ACTIONS(3606), + [anon_sym_U_SQUOTE] = ACTIONS(3606), + [anon_sym_u8_SQUOTE] = ACTIONS(3606), + [anon_sym_SQUOTE] = ACTIONS(3606), + [anon_sym_L_DQUOTE] = ACTIONS(3606), + [anon_sym_u_DQUOTE] = ACTIONS(3606), + [anon_sym_U_DQUOTE] = ACTIONS(3606), + [anon_sym_u8_DQUOTE] = ACTIONS(3606), + [anon_sym_DQUOTE] = ACTIONS(3606), + [sym_true] = ACTIONS(3604), + [sym_false] = ACTIONS(3604), + [anon_sym_NULL] = ACTIONS(3604), + [anon_sym_nullptr] = ACTIONS(3604), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3604), + [anon_sym_decltype] = ACTIONS(3604), + [anon_sym_template] = ACTIONS(3604), + [anon_sym_try] = ACTIONS(3604), + [anon_sym_delete] = ACTIONS(3604), + [anon_sym_throw] = ACTIONS(3604), + [anon_sym_co_return] = ACTIONS(3604), + [anon_sym_co_yield] = ACTIONS(3604), + [anon_sym_R_DQUOTE] = ACTIONS(3606), + [anon_sym_LR_DQUOTE] = ACTIONS(3606), + [anon_sym_uR_DQUOTE] = ACTIONS(3606), + [anon_sym_UR_DQUOTE] = ACTIONS(3606), + [anon_sym_u8R_DQUOTE] = ACTIONS(3606), + [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(3604), + [anon_sym_requires] = ACTIONS(3604), + [anon_sym_CARET_CARET] = ACTIONS(3606), + [anon_sym_LBRACK_COLON] = ACTIONS(3606), + [sym_this] = ACTIONS(3604), + }, + [STATE(1262)] = { + [sym_expression] = STATE(7156), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_lambda_default_capture] = STATE(10396), + [sym__lambda_capture_identifier] = STATE(9680), + [sym_lambda_capture_initializer] = STATE(9680), + [sym__lambda_capture] = STATE(9680), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_identifier_parameter_pack_expansion] = STATE(9680), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5873), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(5934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5922), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(5924), + [anon_sym_AMP] = ACTIONS(5926), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(5928), + [anon_sym_EQ] = ACTIONS(5930), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(5932), + }, + [STATE(1263)] = { + [sym_identifier] = ACTIONS(3662), + [anon_sym_LPAREN2] = ACTIONS(3664), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_AMP] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym___extension__] = ACTIONS(3662), + [anon_sym_typedef] = ACTIONS(3662), + [anon_sym_virtual] = ACTIONS(3662), + [anon_sym_extern] = ACTIONS(3662), + [anon_sym___attribute__] = ACTIONS(3662), + [anon_sym___attribute] = ACTIONS(3662), + [anon_sym_COLON_COLON] = ACTIONS(3664), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), + [anon_sym___declspec] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_signed] = ACTIONS(3662), + [anon_sym_unsigned] = ACTIONS(3662), + [anon_sym_long] = ACTIONS(3662), + [anon_sym_short] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3662), + [anon_sym_static] = ACTIONS(3662), + [anon_sym_register] = ACTIONS(3662), + [anon_sym_inline] = ACTIONS(3662), + [anon_sym___inline] = ACTIONS(3662), + [anon_sym___inline__] = ACTIONS(3662), + [anon_sym___forceinline] = ACTIONS(3662), + [anon_sym_thread_local] = ACTIONS(3662), + [anon_sym___thread] = ACTIONS(3662), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_constexpr] = ACTIONS(3662), + [anon_sym_volatile] = ACTIONS(3662), + [anon_sym_restrict] = ACTIONS(3662), + [anon_sym___restrict__] = ACTIONS(3662), + [anon_sym__Atomic] = ACTIONS(3662), + [anon_sym__Noreturn] = ACTIONS(3662), + [anon_sym_noreturn] = ACTIONS(3662), + [anon_sym__Nonnull] = ACTIONS(3662), + [anon_sym_mutable] = ACTIONS(3662), + [anon_sym_constinit] = ACTIONS(3662), + [anon_sym_consteval] = ACTIONS(3662), + [anon_sym_alignas] = ACTIONS(3662), + [anon_sym__Alignas] = ACTIONS(3662), + [sym_primitive_type] = ACTIONS(3662), + [anon_sym_enum] = ACTIONS(3662), + [anon_sym_class] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(3662), + [anon_sym_union] = ACTIONS(3662), + [anon_sym_if] = ACTIONS(3662), + [anon_sym_else] = ACTIONS(3662), + [anon_sym_switch] = ACTIONS(3662), + [anon_sym_while] = ACTIONS(3662), + [anon_sym_do] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3662), + [anon_sym_return] = ACTIONS(3662), + [anon_sym_break] = ACTIONS(3662), + [anon_sym_continue] = ACTIONS(3662), + [anon_sym_goto] = ACTIONS(3662), + [anon_sym___try] = ACTIONS(3662), + [anon_sym___leave] = ACTIONS(3662), + [anon_sym_not] = ACTIONS(3662), + [anon_sym_compl] = ACTIONS(3662), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_sizeof] = ACTIONS(3662), + [anon_sym___alignof__] = ACTIONS(3662), + [anon_sym___alignof] = ACTIONS(3662), + [anon_sym__alignof] = ACTIONS(3662), + [anon_sym_alignof] = ACTIONS(3662), + [anon_sym__Alignof] = ACTIONS(3662), + [anon_sym_offsetof] = ACTIONS(3662), + [anon_sym__Generic] = ACTIONS(3662), + [anon_sym_typename] = ACTIONS(3662), + [anon_sym_asm] = ACTIONS(3662), + [anon_sym___asm__] = ACTIONS(3662), + [anon_sym___asm] = ACTIONS(3662), + [sym_number_literal] = ACTIONS(3664), + [anon_sym_L_SQUOTE] = ACTIONS(3664), + [anon_sym_u_SQUOTE] = ACTIONS(3664), + [anon_sym_U_SQUOTE] = ACTIONS(3664), + [anon_sym_u8_SQUOTE] = ACTIONS(3664), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_L_DQUOTE] = ACTIONS(3664), + [anon_sym_u_DQUOTE] = ACTIONS(3664), + [anon_sym_U_DQUOTE] = ACTIONS(3664), + [anon_sym_u8_DQUOTE] = ACTIONS(3664), + [anon_sym_DQUOTE] = ACTIONS(3664), + [sym_true] = ACTIONS(3662), + [sym_false] = ACTIONS(3662), + [anon_sym_NULL] = ACTIONS(3662), + [anon_sym_nullptr] = ACTIONS(3662), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3662), + [anon_sym_decltype] = ACTIONS(3662), + [anon_sym_template] = ACTIONS(3662), + [anon_sym_try] = ACTIONS(3662), + [anon_sym_delete] = ACTIONS(3662), + [anon_sym_throw] = ACTIONS(3662), + [anon_sym_co_return] = ACTIONS(3662), + [anon_sym_co_yield] = ACTIONS(3662), + [anon_sym_R_DQUOTE] = ACTIONS(3664), + [anon_sym_LR_DQUOTE] = ACTIONS(3664), + [anon_sym_uR_DQUOTE] = ACTIONS(3664), + [anon_sym_UR_DQUOTE] = ACTIONS(3664), + [anon_sym_u8R_DQUOTE] = ACTIONS(3664), + [anon_sym_co_await] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3662), + [anon_sym_requires] = ACTIONS(3662), + [anon_sym_CARET_CARET] = ACTIONS(3664), + [anon_sym_LBRACK_COLON] = ACTIONS(3664), + [sym_this] = ACTIONS(3662), + }, + [STATE(1264)] = { + [sym_identifier] = ACTIONS(3650), + [anon_sym_LPAREN2] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3652), + [anon_sym_TILDE] = ACTIONS(3652), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_STAR] = ACTIONS(3652), + [anon_sym_AMP] = ACTIONS(3652), + [anon_sym_SEMI] = ACTIONS(3652), + [anon_sym___extension__] = ACTIONS(3650), + [anon_sym_typedef] = ACTIONS(3650), + [anon_sym_virtual] = ACTIONS(3650), + [anon_sym_extern] = ACTIONS(3650), + [anon_sym___attribute__] = ACTIONS(3650), + [anon_sym___attribute] = ACTIONS(3650), + [anon_sym_COLON_COLON] = ACTIONS(3652), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3652), + [anon_sym___declspec] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_signed] = ACTIONS(3650), + [anon_sym_unsigned] = ACTIONS(3650), + [anon_sym_long] = ACTIONS(3650), + [anon_sym_short] = ACTIONS(3650), + [anon_sym_LBRACK] = ACTIONS(3650), + [anon_sym_static] = ACTIONS(3650), + [anon_sym_register] = ACTIONS(3650), + [anon_sym_inline] = ACTIONS(3650), + [anon_sym___inline] = ACTIONS(3650), + [anon_sym___inline__] = ACTIONS(3650), + [anon_sym___forceinline] = ACTIONS(3650), + [anon_sym_thread_local] = ACTIONS(3650), + [anon_sym___thread] = ACTIONS(3650), + [anon_sym_const] = ACTIONS(3650), + [anon_sym_constexpr] = ACTIONS(3650), + [anon_sym_volatile] = ACTIONS(3650), + [anon_sym_restrict] = ACTIONS(3650), + [anon_sym___restrict__] = ACTIONS(3650), + [anon_sym__Atomic] = ACTIONS(3650), + [anon_sym__Noreturn] = ACTIONS(3650), + [anon_sym_noreturn] = ACTIONS(3650), + [anon_sym__Nonnull] = ACTIONS(3650), + [anon_sym_mutable] = ACTIONS(3650), + [anon_sym_constinit] = ACTIONS(3650), + [anon_sym_consteval] = ACTIONS(3650), + [anon_sym_alignas] = ACTIONS(3650), + [anon_sym__Alignas] = ACTIONS(3650), + [sym_primitive_type] = ACTIONS(3650), + [anon_sym_enum] = ACTIONS(3650), + [anon_sym_class] = ACTIONS(3650), + [anon_sym_struct] = ACTIONS(3650), + [anon_sym_union] = ACTIONS(3650), + [anon_sym_if] = ACTIONS(3650), + [anon_sym_else] = ACTIONS(3650), + [anon_sym_switch] = ACTIONS(3650), + [anon_sym_while] = ACTIONS(3650), + [anon_sym_do] = ACTIONS(3650), + [anon_sym_for] = ACTIONS(3650), + [anon_sym_return] = ACTIONS(3650), + [anon_sym_break] = ACTIONS(3650), + [anon_sym_continue] = ACTIONS(3650), + [anon_sym_goto] = ACTIONS(3650), + [anon_sym___try] = ACTIONS(3650), + [anon_sym___leave] = ACTIONS(3650), + [anon_sym_not] = ACTIONS(3650), + [anon_sym_compl] = ACTIONS(3650), + [anon_sym_DASH_DASH] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3652), + [anon_sym_sizeof] = ACTIONS(3650), + [anon_sym___alignof__] = ACTIONS(3650), + [anon_sym___alignof] = ACTIONS(3650), + [anon_sym__alignof] = ACTIONS(3650), + [anon_sym_alignof] = ACTIONS(3650), + [anon_sym__Alignof] = ACTIONS(3650), + [anon_sym_offsetof] = ACTIONS(3650), + [anon_sym__Generic] = ACTIONS(3650), + [anon_sym_typename] = ACTIONS(3650), + [anon_sym_asm] = ACTIONS(3650), + [anon_sym___asm__] = ACTIONS(3650), + [anon_sym___asm] = ACTIONS(3650), + [sym_number_literal] = ACTIONS(3652), + [anon_sym_L_SQUOTE] = ACTIONS(3652), + [anon_sym_u_SQUOTE] = ACTIONS(3652), + [anon_sym_U_SQUOTE] = ACTIONS(3652), + [anon_sym_u8_SQUOTE] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(3652), + [anon_sym_L_DQUOTE] = ACTIONS(3652), + [anon_sym_u_DQUOTE] = ACTIONS(3652), + [anon_sym_U_DQUOTE] = ACTIONS(3652), + [anon_sym_u8_DQUOTE] = ACTIONS(3652), + [anon_sym_DQUOTE] = ACTIONS(3652), + [sym_true] = ACTIONS(3650), + [sym_false] = ACTIONS(3650), + [anon_sym_NULL] = ACTIONS(3650), + [anon_sym_nullptr] = ACTIONS(3650), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3650), + [anon_sym_decltype] = ACTIONS(3650), + [anon_sym_template] = ACTIONS(3650), + [anon_sym_try] = ACTIONS(3650), + [anon_sym_delete] = ACTIONS(3650), + [anon_sym_throw] = ACTIONS(3650), + [anon_sym_co_return] = ACTIONS(3650), + [anon_sym_co_yield] = ACTIONS(3650), + [anon_sym_R_DQUOTE] = ACTIONS(3652), + [anon_sym_LR_DQUOTE] = ACTIONS(3652), + [anon_sym_uR_DQUOTE] = ACTIONS(3652), + [anon_sym_UR_DQUOTE] = ACTIONS(3652), + [anon_sym_u8R_DQUOTE] = ACTIONS(3652), + [anon_sym_co_await] = ACTIONS(3650), + [anon_sym_new] = ACTIONS(3650), + [anon_sym_requires] = ACTIONS(3650), + [anon_sym_CARET_CARET] = ACTIONS(3652), + [anon_sym_LBRACK_COLON] = ACTIONS(3652), + [sym_this] = ACTIONS(3650), + }, + [STATE(1265)] = { + [sym_identifier] = ACTIONS(5597), + [anon_sym_LPAREN2] = ACTIONS(5603), + [anon_sym_BANG] = ACTIONS(5603), + [anon_sym_TILDE] = ACTIONS(5603), + [anon_sym_DASH] = ACTIONS(5605), + [anon_sym_PLUS] = ACTIONS(5605), + [anon_sym_STAR] = ACTIONS(5603), + [anon_sym_AMP] = ACTIONS(5603), + [anon_sym_SEMI] = ACTIONS(5603), + [anon_sym___extension__] = ACTIONS(5597), + [anon_sym_virtual] = ACTIONS(5609), + [anon_sym_extern] = ACTIONS(5609), + [anon_sym___attribute__] = ACTIONS(5609), + [anon_sym___attribute] = ACTIONS(5609), + [anon_sym_COLON_COLON] = ACTIONS(5600), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5600), + [anon_sym___declspec] = ACTIONS(5609), + [anon_sym_LBRACE] = ACTIONS(5603), + [anon_sym_signed] = ACTIONS(5609), + [anon_sym_unsigned] = ACTIONS(5609), + [anon_sym_long] = ACTIONS(5609), + [anon_sym_short] = ACTIONS(5609), + [anon_sym_LBRACK] = ACTIONS(5605), + [anon_sym_static] = ACTIONS(5609), + [anon_sym_register] = ACTIONS(5609), + [anon_sym_inline] = ACTIONS(5609), + [anon_sym___inline] = ACTIONS(5609), + [anon_sym___inline__] = ACTIONS(5609), + [anon_sym___forceinline] = ACTIONS(5609), + [anon_sym_thread_local] = ACTIONS(5609), + [anon_sym___thread] = ACTIONS(5609), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5609), + [anon_sym_volatile] = ACTIONS(5609), + [anon_sym_restrict] = ACTIONS(5609), + [anon_sym___restrict__] = ACTIONS(5609), + [anon_sym__Atomic] = ACTIONS(5609), + [anon_sym__Noreturn] = ACTIONS(5609), + [anon_sym_noreturn] = ACTIONS(5609), + [anon_sym__Nonnull] = ACTIONS(5609), + [anon_sym_mutable] = ACTIONS(5609), + [anon_sym_constinit] = ACTIONS(5609), + [anon_sym_consteval] = ACTIONS(5609), + [anon_sym_alignas] = ACTIONS(5609), + [anon_sym__Alignas] = ACTIONS(5609), + [sym_primitive_type] = ACTIONS(5597), + [anon_sym_enum] = ACTIONS(5609), + [anon_sym_class] = ACTIONS(5609), + [anon_sym_struct] = ACTIONS(5609), + [anon_sym_union] = ACTIONS(5609), + [anon_sym_if] = ACTIONS(5605), + [anon_sym_switch] = ACTIONS(5605), + [anon_sym_case] = ACTIONS(5605), + [anon_sym_default] = ACTIONS(5605), + [anon_sym_while] = ACTIONS(5605), + [anon_sym_do] = ACTIONS(5605), + [anon_sym_for] = ACTIONS(5605), + [anon_sym_return] = ACTIONS(5605), + [anon_sym_break] = ACTIONS(5605), + [anon_sym_continue] = ACTIONS(5605), + [anon_sym_goto] = ACTIONS(5605), + [anon_sym___try] = ACTIONS(5605), + [anon_sym___leave] = ACTIONS(5605), + [anon_sym_not] = ACTIONS(5605), + [anon_sym_compl] = ACTIONS(5605), + [anon_sym_DASH_DASH] = ACTIONS(5603), + [anon_sym_PLUS_PLUS] = ACTIONS(5603), + [anon_sym_sizeof] = ACTIONS(5605), + [anon_sym___alignof__] = ACTIONS(5605), + [anon_sym___alignof] = ACTIONS(5605), + [anon_sym__alignof] = ACTIONS(5605), + [anon_sym_alignof] = ACTIONS(5605), + [anon_sym__Alignof] = ACTIONS(5605), + [anon_sym_offsetof] = ACTIONS(5605), + [anon_sym__Generic] = ACTIONS(5605), + [anon_sym_typename] = ACTIONS(5597), + [anon_sym_asm] = ACTIONS(5605), + [anon_sym___asm__] = ACTIONS(5605), + [anon_sym___asm] = ACTIONS(5605), + [sym_number_literal] = ACTIONS(5603), + [anon_sym_L_SQUOTE] = ACTIONS(5603), + [anon_sym_u_SQUOTE] = ACTIONS(5603), + [anon_sym_U_SQUOTE] = ACTIONS(5603), + [anon_sym_u8_SQUOTE] = ACTIONS(5603), + [anon_sym_SQUOTE] = ACTIONS(5603), + [anon_sym_L_DQUOTE] = ACTIONS(5603), + [anon_sym_u_DQUOTE] = ACTIONS(5603), + [anon_sym_U_DQUOTE] = ACTIONS(5603), + [anon_sym_u8_DQUOTE] = ACTIONS(5603), + [anon_sym_DQUOTE] = ACTIONS(5603), + [sym_true] = ACTIONS(5605), + [sym_false] = ACTIONS(5605), + [anon_sym_NULL] = ACTIONS(5605), + [anon_sym_nullptr] = ACTIONS(5605), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5609), + [anon_sym_decltype] = ACTIONS(5597), + [anon_sym_template] = ACTIONS(5597), + [anon_sym_try] = ACTIONS(5605), + [anon_sym_delete] = ACTIONS(5605), + [anon_sym_throw] = ACTIONS(5605), + [anon_sym_co_return] = ACTIONS(5605), + [anon_sym_co_yield] = ACTIONS(5605), + [anon_sym_R_DQUOTE] = ACTIONS(5603), + [anon_sym_LR_DQUOTE] = ACTIONS(5603), + [anon_sym_uR_DQUOTE] = ACTIONS(5603), + [anon_sym_UR_DQUOTE] = ACTIONS(5603), + [anon_sym_u8R_DQUOTE] = ACTIONS(5603), + [anon_sym_co_await] = ACTIONS(5605), + [anon_sym_new] = ACTIONS(5605), + [anon_sym_requires] = ACTIONS(5605), + [anon_sym_CARET_CARET] = ACTIONS(5603), + [anon_sym_LBRACK_COLON] = ACTIONS(5600), + [sym_this] = ACTIONS(5605), + }, + [STATE(1266)] = { + [sym_identifier] = ACTIONS(3658), + [anon_sym_LPAREN2] = ACTIONS(3660), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_STAR] = ACTIONS(3660), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym___extension__] = ACTIONS(3658), + [anon_sym_typedef] = ACTIONS(3658), + [anon_sym_virtual] = ACTIONS(3658), + [anon_sym_extern] = ACTIONS(3658), + [anon_sym___attribute__] = ACTIONS(3658), + [anon_sym___attribute] = ACTIONS(3658), + [anon_sym_COLON_COLON] = ACTIONS(3660), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3660), + [anon_sym___declspec] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_signed] = ACTIONS(3658), + [anon_sym_unsigned] = ACTIONS(3658), + [anon_sym_long] = ACTIONS(3658), + [anon_sym_short] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_register] = ACTIONS(3658), + [anon_sym_inline] = ACTIONS(3658), + [anon_sym___inline] = ACTIONS(3658), + [anon_sym___inline__] = ACTIONS(3658), + [anon_sym___forceinline] = ACTIONS(3658), + [anon_sym_thread_local] = ACTIONS(3658), + [anon_sym___thread] = ACTIONS(3658), + [anon_sym_const] = ACTIONS(3658), + [anon_sym_constexpr] = ACTIONS(3658), + [anon_sym_volatile] = ACTIONS(3658), + [anon_sym_restrict] = ACTIONS(3658), + [anon_sym___restrict__] = ACTIONS(3658), + [anon_sym__Atomic] = ACTIONS(3658), + [anon_sym__Noreturn] = ACTIONS(3658), + [anon_sym_noreturn] = ACTIONS(3658), + [anon_sym__Nonnull] = ACTIONS(3658), + [anon_sym_mutable] = ACTIONS(3658), + [anon_sym_constinit] = ACTIONS(3658), + [anon_sym_consteval] = ACTIONS(3658), + [anon_sym_alignas] = ACTIONS(3658), + [anon_sym__Alignas] = ACTIONS(3658), + [sym_primitive_type] = ACTIONS(3658), + [anon_sym_enum] = ACTIONS(3658), + [anon_sym_class] = ACTIONS(3658), + [anon_sym_struct] = ACTIONS(3658), + [anon_sym_union] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_else] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_goto] = ACTIONS(3658), + [anon_sym___try] = ACTIONS(3658), + [anon_sym___leave] = ACTIONS(3658), + [anon_sym_not] = ACTIONS(3658), + [anon_sym_compl] = ACTIONS(3658), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_sizeof] = ACTIONS(3658), + [anon_sym___alignof__] = ACTIONS(3658), + [anon_sym___alignof] = ACTIONS(3658), + [anon_sym__alignof] = ACTIONS(3658), + [anon_sym_alignof] = ACTIONS(3658), + [anon_sym__Alignof] = ACTIONS(3658), + [anon_sym_offsetof] = ACTIONS(3658), + [anon_sym__Generic] = ACTIONS(3658), + [anon_sym_typename] = ACTIONS(3658), + [anon_sym_asm] = ACTIONS(3658), + [anon_sym___asm__] = ACTIONS(3658), + [anon_sym___asm] = ACTIONS(3658), + [sym_number_literal] = ACTIONS(3660), + [anon_sym_L_SQUOTE] = ACTIONS(3660), + [anon_sym_u_SQUOTE] = ACTIONS(3660), + [anon_sym_U_SQUOTE] = ACTIONS(3660), + [anon_sym_u8_SQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [anon_sym_L_DQUOTE] = ACTIONS(3660), + [anon_sym_u_DQUOTE] = ACTIONS(3660), + [anon_sym_U_DQUOTE] = ACTIONS(3660), + [anon_sym_u8_DQUOTE] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [sym_true] = ACTIONS(3658), + [sym_false] = ACTIONS(3658), + [anon_sym_NULL] = ACTIONS(3658), + [anon_sym_nullptr] = ACTIONS(3658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3658), + [anon_sym_decltype] = ACTIONS(3658), + [anon_sym_template] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_delete] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_co_return] = ACTIONS(3658), + [anon_sym_co_yield] = ACTIONS(3658), + [anon_sym_R_DQUOTE] = ACTIONS(3660), + [anon_sym_LR_DQUOTE] = ACTIONS(3660), + [anon_sym_uR_DQUOTE] = ACTIONS(3660), + [anon_sym_UR_DQUOTE] = ACTIONS(3660), + [anon_sym_u8R_DQUOTE] = ACTIONS(3660), + [anon_sym_co_await] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_requires] = ACTIONS(3658), + [anon_sym_CARET_CARET] = ACTIONS(3660), + [anon_sym_LBRACK_COLON] = ACTIONS(3660), + [sym_this] = ACTIONS(3658), + }, + [STATE(1267)] = { + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6079), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(10413), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(5936), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_RPAREN] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5638), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5638), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5638), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5645), + [anon_sym_LT_LT] = ACTIONS(5638), + [anon_sym_GT_GT] = ACTIONS(5638), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(5645), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5645), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5645), + [anon_sym_not_eq] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_typename] = ACTIONS(5464), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(1268)] = { + [sym_compound_statement] = STATE(9819), + [sym_expression] = STATE(6683), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(9819), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(5940), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -224319,7 +234722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -224339,199 +234742,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1261)] = { - [sym_expression] = STATE(5407), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_initializer_list] = STATE(3758), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1262)] = { - [sym_expression] = STATE(6717), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11079), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON] = ACTIONS(5719), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1269)] = { + [sym_compound_statement] = STATE(10045), + [sym_expression] = STATE(6589), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10045), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(5942), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -224539,7 +234834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -224559,89 +234854,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1263)] = { - [sym_expression] = STATE(6800), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11396), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON] = ACTIONS(5721), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1270)] = { + [sym_expression] = STATE(5336), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym__unary_left_fold] = STATE(11505), + [sym__unary_right_fold] = STATE(11613), + [sym__binary_fold] = STATE(11634), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1271)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_identifier_parameter_pack_expansion] = STATE(10273), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5814), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(5944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5946), + [anon_sym_COMMA] = ACTIONS(5948), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(5948), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1272)] = { + [sym_expression] = STATE(6881), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10706), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10706), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5950), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -224649,7 +235170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -224669,84 +235190,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1264)] = { - [sym_expression] = STATE(6805), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_initializer_list] = STATE(10373), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1273)] = { + [sym_compound_statement] = STATE(9744), + [sym_expression] = STATE(6604), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(9744), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(5952), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -224759,7 +235282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -224779,8 +235302,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -224791,77 +235314,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1265)] = { - [sym_expression] = STATE(5661), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_initializer_list] = STATE(5840), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACE] = ACTIONS(4536), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), + [STATE(1274)] = { + [sym_expression] = STATE(5346), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym__unary_left_fold] = STATE(11576), + [sym__unary_right_fold] = STATE(11577), + [sym__binary_fold] = STATE(11578), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1275)] = { + [sym_expression] = STATE(6382), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_initializer_list] = STATE(9193), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_default] = ACTIONS(5954), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -224869,104 +235505,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(5956), + [aux_sym_pure_virtual_clause_token1] = ACTIONS(5958), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1266)] = { - [sym_expression] = STATE(6765), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(11065), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(5723), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1276)] = { + [sym_compound_statement] = STATE(9882), + [sym_expression] = STATE(6618), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(9882), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(5960), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -224979,7 +235618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -224999,8 +235638,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -225011,1598 +235650,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1267)] = { - [sym_expression] = STATE(3678), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_initializer_list] = STATE(3758), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1268)] = { - [sym_expression] = STATE(3668), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5725), - [anon_sym_LPAREN2] = ACTIONS(5727), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1269)] = { - [sym_expression] = STATE(5086), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5729), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1270)] = { - [sym_expression] = STATE(5701), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5732), - [anon_sym_LPAREN2] = ACTIONS(5734), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1271)] = { - [sym_expression] = STATE(5086), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5736), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1272)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5739), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1273)] = { - [sym_expression] = STATE(4924), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5741), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1274)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5744), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1275)] = { - [sym_expression] = STATE(5113), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5746), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1276)] = { - [sym_expression] = STATE(5119), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5749), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, [STATE(1277)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5752), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), + [sym_expression] = STATE(5389), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym__unary_left_fold] = STATE(11536), + [sym__unary_right_fold] = STATE(11566), + [sym__binary_fold] = STATE(11627), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), }, [STATE(1278)] = { - [sym_expression] = STATE(6653), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5754), - [anon_sym_LPAREN2] = ACTIONS(5756), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [sym_compound_statement] = STATE(10717), + [sym_expression] = STATE(5274), + [sym__string] = STATE(4580), + [sym_comma_expression] = STATE(10717), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym__assignment_expression_lhs] = STATE(11050), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, [STATE(1279)] = { - [sym_expression] = STATE(3668), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5725), - [anon_sym_LPAREN2] = ACTIONS(5758), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1280)] = { - [sym_expression] = STATE(5163), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5760), - [anon_sym_LPAREN2] = ACTIONS(5762), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1281)] = { - [sym_expression] = STATE(6883), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [sym_compound_statement] = STATE(10057), + [sym_expression] = STATE(6644), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10057), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(5962), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5764), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -226615,7 +235954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -226635,8 +235974,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -226647,621 +235986,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1282)] = { - [sym_expression] = STATE(5138), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5766), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1283)] = { - [sym_expression] = STATE(3668), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5725), - [anon_sym_LPAREN2] = ACTIONS(5769), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1284)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5771), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1285)] = { - [sym_expression] = STATE(3668), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5725), - [anon_sym_LPAREN2] = ACTIONS(5773), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1286)] = { - [sym_expression] = STATE(4960), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5775), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), + [STATE(1280)] = { + [sym_expression] = STATE(5294), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym__unary_left_fold] = STATE(10919), + [sym__unary_right_fold] = STATE(10920), + [sym__binary_fold] = STATE(10921), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), }, - [STATE(1287)] = { - [sym_expression] = STATE(6833), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5778), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1281)] = { + [sym_expression] = STATE(6394), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_initializer_list] = STATE(9188), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_default] = ACTIONS(5964), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -227269,103 +236177,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(5966), + [aux_sym_pure_virtual_clause_token1] = ACTIONS(5968), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1288)] = { - [sym_expression] = STATE(6969), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(5780), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1282)] = { + [sym_compound_statement] = STATE(9969), + [sym_expression] = STATE(6627), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(9969), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(5970), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -227378,7 +236290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -227398,8 +236310,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -227410,71 +236322,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1289)] = { - [sym_expression] = STATE(6900), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1283)] = { + [sym_expression] = STATE(6895), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11210), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(11210), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5782), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5972), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -227487,7 +236402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -227507,8 +236422,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -227519,294 +236434,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1290)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5784), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1291)] = { - [sym_expression] = STATE(5034), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5786), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1292)] = { - [sym_expression] = STATE(6818), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5789), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1284)] = { + [sym_expression] = STATE(6378), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_initializer_list] = STATE(9233), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_default] = ACTIONS(5974), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -227814,103 +236513,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(5976), + [aux_sym_pure_virtual_clause_token1] = ACTIONS(5978), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1293)] = { - [sym_expression] = STATE(6562), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10056), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1285)] = { + [sym_expression] = STATE(5361), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym__unary_left_fold] = STATE(10679), + [sym__unary_right_fold] = STATE(10699), + [sym__binary_fold] = STATE(10713), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1286)] = { + [sym_expression] = STATE(6769), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11493), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(11493), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5980), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -227923,7 +236738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -227943,8 +236758,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -227955,180 +236770,522 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1294)] = { - [sym_expression] = STATE(4976), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5791), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), + [STATE(1287)] = { + [sym_expression] = STATE(5271), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym__unary_left_fold] = STATE(10662), + [sym__unary_right_fold] = STATE(10665), + [sym__binary_fold] = STATE(10668), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), }, - [STATE(1295)] = { - [sym_expression] = STATE(5701), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5732), - [anon_sym_LPAREN2] = ACTIONS(5794), + [STATE(1288)] = { + [sym_expression] = STATE(5317), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym__unary_left_fold] = STATE(11055), + [sym__unary_right_fold] = STATE(11097), + [sym__binary_fold] = STATE(11101), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1289)] = { + [sym_expression] = STATE(5306), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym__unary_left_fold] = STATE(10917), + [sym__unary_right_fold] = STATE(10922), + [sym__binary_fold] = STATE(10924), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1290)] = { + [sym_expression] = STATE(5333), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym__unary_left_fold] = STATE(10793), + [sym__unary_right_fold] = STATE(10798), + [sym__binary_fold] = STATE(10806), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1291)] = { + [sym_expression] = STATE(6903), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10759), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10759), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5982), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -228141,7 +237298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -228161,8 +237318,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -228173,398 +237330,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1296)] = { - [sym_expression] = STATE(5034), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5796), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1297)] = { - [sym_expression] = STATE(4924), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5799), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1298)] = { - [sym_expression] = STATE(4976), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5802), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), + [STATE(1292)] = { + [sym_expression] = STATE(5357), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym__unary_left_fold] = STATE(11543), + [sym__unary_right_fold] = STATE(11546), + [sym__binary_fold] = STATE(11549), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), }, - [STATE(1299)] = { - [sym_expression] = STATE(6894), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(5805), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1293)] = { + [sym_compound_statement] = STATE(10135), + [sym_expression] = STATE(6653), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10135), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(5984), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -228577,7 +237522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -228597,8 +237542,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -228609,725 +237554,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1300)] = { - [sym_expression] = STATE(5040), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5807), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1301)] = { - [sym_expression] = STATE(5040), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5810), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1302)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5813), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1303)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5815), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1304)] = { - [sym_expression] = STATE(5040), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5817), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1305)] = { - [sym_expression] = STATE(5040), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5820), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1306)] = { - [sym_expression] = STATE(6935), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(5823), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1294)] = { + [sym_expression] = STATE(6811), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(11386), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(5986), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -229340,7 +237634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -229360,8 +237654,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -229372,76 +237666,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1307)] = { - [sym_expression] = STATE(5701), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5732), - [anon_sym_LPAREN2] = ACTIONS(5825), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), + [STATE(1295)] = { + [sym_compound_statement] = STATE(10120), + [sym_expression] = STATE(6694), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10120), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(5988), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -229449,7 +237746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -229469,519 +237766,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1308)] = { - [sym_expression] = STATE(5091), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5827), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1309)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5830), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1310)] = { - [sym_expression] = STATE(5091), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5832), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1311)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5835), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), + [STATE(1296)] = { + [sym_string_literal] = STATE(3858), + [sym_decltype_auto] = STATE(4991), + [sym_template_argument_list] = STATE(2050), + [sym_raw_string_literal] = STATE(3858), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(5636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), + [anon_sym_COMMA] = ACTIONS(5640), + [anon_sym_RPAREN] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_TILDE] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5990), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym___extension__] = ACTIONS(5636), + [anon_sym_virtual] = ACTIONS(5636), + [anon_sym_extern] = ACTIONS(5636), + [anon_sym___attribute__] = ACTIONS(5636), + [anon_sym___attribute] = ACTIONS(5636), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5643), + [anon_sym___declspec] = ACTIONS(5636), + [anon_sym___based] = ACTIONS(5636), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(5659), + [anon_sym_unsigned] = ACTIONS(5659), + [anon_sym_long] = ACTIONS(5659), + [anon_sym_short] = ACTIONS(5659), + [anon_sym_LBRACK] = ACTIONS(5647), + [anon_sym_static] = ACTIONS(5636), + [anon_sym_EQ] = ACTIONS(5647), + [anon_sym_register] = ACTIONS(5636), + [anon_sym_inline] = ACTIONS(5636), + [anon_sym___inline] = ACTIONS(5636), + [anon_sym___inline__] = ACTIONS(5636), + [anon_sym___forceinline] = ACTIONS(5636), + [anon_sym_thread_local] = ACTIONS(5636), + [anon_sym___thread] = ACTIONS(5636), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5636), + [anon_sym_volatile] = ACTIONS(5636), + [anon_sym_restrict] = ACTIONS(5636), + [anon_sym___restrict__] = ACTIONS(5636), + [anon_sym__Atomic] = ACTIONS(5636), + [anon_sym__Noreturn] = ACTIONS(5636), + [anon_sym_noreturn] = ACTIONS(5636), + [anon_sym__Nonnull] = ACTIONS(5636), + [anon_sym_mutable] = ACTIONS(5636), + [anon_sym_constinit] = ACTIONS(5636), + [anon_sym_consteval] = ACTIONS(5636), + [anon_sym_alignas] = ACTIONS(5636), + [anon_sym__Alignas] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5638), + [anon_sym_SLASH_EQ] = ACTIONS(5638), + [anon_sym_PERCENT_EQ] = ACTIONS(5638), + [anon_sym_PLUS_EQ] = ACTIONS(5638), + [anon_sym_DASH_EQ] = ACTIONS(5638), + [anon_sym_LT_LT_EQ] = ACTIONS(5638), + [anon_sym_GT_GT_EQ] = ACTIONS(5638), + [anon_sym_AMP_EQ] = ACTIONS(5638), + [anon_sym_CARET_EQ] = ACTIONS(5638), + [anon_sym_PIPE_EQ] = ACTIONS(5638), + [anon_sym_and_eq] = ACTIONS(5993), + [anon_sym_or_eq] = ACTIONS(5993), + [anon_sym_xor_eq] = ACTIONS(5993), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5645), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5645), + [anon_sym_not_eq] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5645), + [anon_sym_L_DQUOTE] = ACTIONS(5995), + [anon_sym_u_DQUOTE] = ACTIONS(5995), + [anon_sym_U_DQUOTE] = ACTIONS(5995), + [anon_sym_u8_DQUOTE] = ACTIONS(5995), + [anon_sym_DQUOTE] = ACTIONS(5995), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5665), + [anon_sym_decltype] = ACTIONS(5667), + [anon_sym_template] = ACTIONS(5636), + [anon_sym_operator] = ACTIONS(5636), + [anon_sym_R_DQUOTE] = ACTIONS(5997), + [anon_sym_LR_DQUOTE] = ACTIONS(5997), + [anon_sym_uR_DQUOTE] = ACTIONS(5997), + [anon_sym_UR_DQUOTE] = ACTIONS(5997), + [anon_sym_u8R_DQUOTE] = ACTIONS(5997), + [anon_sym_DASH_GT_STAR] = ACTIONS(5638), + [anon_sym_LBRACK_COLON] = ACTIONS(5643), }, - [STATE(1312)] = { - [sym_expression] = STATE(6948), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(5837), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1297)] = { + [sym_compound_statement] = STATE(9681), + [sym_expression] = STATE(6558), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(9681), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(5999), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -229994,7 +237970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -230014,8 +237990,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -230026,70 +238002,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1313)] = { - [sym_expression] = STATE(6837), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1298)] = { + [sym_expression] = STATE(5366), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym__unary_left_fold] = STATE(11218), + [sym__unary_right_fold] = STATE(11219), + [sym__binary_fold] = STATE(11220), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1299)] = { + [sym_compound_statement] = STATE(10461), + [sym_expression] = STATE(6809), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10461), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -230102,7 +238193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -230122,9 +238213,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5839), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -230135,1706 +238225,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1314)] = { - [sym_expression] = STATE(4960), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5841), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1315)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5844), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1316)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5846), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1317)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5848), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1318)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5850), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1319)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5852), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1320)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5854), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1321)] = { - [sym_expression] = STATE(5034), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5856), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1322)] = { - [sym_expression] = STATE(6638), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5859), - [anon_sym_LPAREN2] = ACTIONS(5861), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(1323)] = { - [sym_expression] = STATE(5113), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5863), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1324)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5866), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1325)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5868), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1326)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5870), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1327)] = { - [sym_expression] = STATE(5714), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5872), - [anon_sym_LPAREN2] = ACTIONS(5874), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1328)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5876), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1329)] = { - [sym_expression] = STATE(6865), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(5878), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1300)] = { + [sym_expression] = STATE(7072), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(11135), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6001), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -231847,7 +238304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -231867,8 +238324,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -231879,180 +238336,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1330)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5880), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), + [STATE(1301)] = { + [sym_expression] = STATE(6565), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_initializer_list] = STATE(9785), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6004), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), }, - [STATE(1331)] = { - [sym_expression] = STATE(7073), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1302)] = { + [sym_expression] = STATE(7072), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(11135), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6006), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5882), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -232065,7 +238526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -232085,8 +238546,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -232097,180 +238558,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1332)] = { - [sym_expression] = STATE(6862), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5884), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [STATE(1303)] = { + [sym_expression] = STATE(6564), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_initializer_list] = STATE(9753), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6009), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), }, - [STATE(1333)] = { - [sym_expression] = STATE(7082), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1304)] = { + [sym_expression] = STATE(7072), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(11135), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6011), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5886), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -232283,7 +238748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -232303,8 +238768,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -232315,70 +238780,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1334)] = { - [sym_expression] = STATE(6872), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1305)] = { + [sym_expression] = STATE(6689), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_initializer_list] = STATE(9928), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6014), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1306)] = { + [sym_expression] = STATE(7072), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(11135), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6016), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -232391,7 +238970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -232411,9 +238990,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5888), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -232424,398 +239002,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1335)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5890), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1336)] = { - [sym_expression] = STATE(5640), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5856), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1337)] = { - [sym_expression] = STATE(5119), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5892), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1338)] = { - [sym_expression] = STATE(7017), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(5895), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1307)] = { + [sym_expression] = STATE(7072), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(11135), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6019), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -232828,7 +239081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -232848,8 +239101,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -232860,397 +239113,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1339)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5897), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1340)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5899), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1341)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5901), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), + [STATE(1308)] = { + [sym_string_literal] = STATE(4105), + [sym_decltype_auto] = STATE(4991), + [sym_template_argument_list] = STATE(2495), + [sym_raw_string_literal] = STATE(4105), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(5636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), + [anon_sym_COMMA] = ACTIONS(5640), + [anon_sym_RPAREN] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_TILDE] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5650), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym___extension__] = ACTIONS(5636), + [anon_sym_virtual] = ACTIONS(5636), + [anon_sym_extern] = ACTIONS(5636), + [anon_sym___attribute__] = ACTIONS(5636), + [anon_sym___attribute] = ACTIONS(5636), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5643), + [anon_sym___declspec] = ACTIONS(5636), + [anon_sym___based] = ACTIONS(5636), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(5659), + [anon_sym_unsigned] = ACTIONS(5659), + [anon_sym_long] = ACTIONS(5659), + [anon_sym_short] = ACTIONS(5659), + [anon_sym_LBRACK] = ACTIONS(5647), + [anon_sym_static] = ACTIONS(5636), + [anon_sym_EQ] = ACTIONS(5636), + [anon_sym_register] = ACTIONS(5636), + [anon_sym_inline] = ACTIONS(5636), + [anon_sym___inline] = ACTIONS(5636), + [anon_sym___inline__] = ACTIONS(5636), + [anon_sym___forceinline] = ACTIONS(5636), + [anon_sym_thread_local] = ACTIONS(5636), + [anon_sym___thread] = ACTIONS(5636), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5636), + [anon_sym_volatile] = ACTIONS(5636), + [anon_sym_restrict] = ACTIONS(5636), + [anon_sym___restrict__] = ACTIONS(5636), + [anon_sym__Atomic] = ACTIONS(5636), + [anon_sym__Noreturn] = ACTIONS(5636), + [anon_sym_noreturn] = ACTIONS(5636), + [anon_sym__Nonnull] = ACTIONS(5636), + [anon_sym_mutable] = ACTIONS(5636), + [anon_sym_constinit] = ACTIONS(5636), + [anon_sym_consteval] = ACTIONS(5636), + [anon_sym_alignas] = ACTIONS(5636), + [anon_sym__Alignas] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5661), + [anon_sym_or_eq] = ACTIONS(5661), + [anon_sym_xor_eq] = ACTIONS(5661), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5645), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5645), + [anon_sym_not_eq] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5665), + [anon_sym_decltype] = ACTIONS(5667), + [anon_sym_template] = ACTIONS(5636), + [anon_sym_operator] = ACTIONS(5636), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_LBRACK_COLON] = ACTIONS(5643), }, - [STATE(1342)] = { - [sym_expression] = STATE(7029), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1309)] = { + [sym_expression] = STATE(7072), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(11135), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6022), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -233263,7 +239303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -233283,9 +239323,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5903), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -233296,180 +239335,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1343)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5905), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1344)] = { - [sym_expression] = STATE(6956), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(5907), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1310)] = { + [sym_expression] = STATE(7072), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(11135), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6025), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -233482,7 +239414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -233502,8 +239434,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -233514,70 +239446,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1345)] = { - [sym_expression] = STATE(6858), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1311)] = { + [sym_expression] = STATE(7072), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(11135), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6028), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -233590,7 +239525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -233610,9 +239545,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5909), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -233623,288 +239557,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1346)] = { - [sym_expression] = STATE(5701), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5732), - [anon_sym_LPAREN2] = ACTIONS(5911), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1347)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5913), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1348)] = { - [sym_expression] = STATE(6891), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1312)] = { + [sym_expression] = STATE(7072), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(11135), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6031), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -233917,7 +239636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -233937,9 +239656,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5915), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -233950,288 +239668,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1349)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5917), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1350)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5919), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), + [STATE(1313)] = { + [sym_expression] = STATE(6593), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_initializer_list] = STATE(10098), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6034), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), }, - [STATE(1351)] = { - [sym_expression] = STATE(6943), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1314)] = { + [sym_expression] = STATE(7072), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(11135), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6036), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -234244,7 +239858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -234264,9 +239878,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5921), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -234277,71 +239890,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1352)] = { - [sym_expression] = STATE(6879), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1315)] = { + [sym_expression] = STATE(7072), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(11135), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6039), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5923), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -234354,7 +239969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -234374,8 +239989,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -234386,184 +240001,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1353)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5925), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1354)] = { - [sym_expression] = STATE(6920), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1316)] = { + [sym_expression] = STATE(6863), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_initializer_list] = STATE(5986), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -234571,7 +240079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -234591,89 +240099,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5927), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1355)] = { - [sym_expression] = STATE(6880), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5929), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1317)] = { + [sym_expression] = STATE(6926), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11494), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON] = ACTIONS(6042), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -234681,7 +240189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -234701,191 +240209,744 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1356)] = { - [sym_expression] = STATE(5630), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5791), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), + [STATE(1318)] = { + [sym_expression] = STATE(6897), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_initializer_list] = STATE(7379), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), }, - [STATE(1357)] = { - [sym_expression] = STATE(6847), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1319)] = { + [sym_expression] = STATE(6752), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_initializer_list] = STATE(7209), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1320)] = { + [sym_expression] = STATE(3820), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_initializer_list] = STATE(3937), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1321)] = { + [sym_expression] = STATE(5302), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_initializer_list] = STATE(5799), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LPAREN2] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), + }, + [STATE(1322)] = { + [sym_expression] = STATE(5421), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_initializer_list] = STATE(5767), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1323)] = { + [sym_expression] = STATE(3820), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_initializer_list] = STATE(3937), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1324)] = { + [sym_expression] = STATE(6435), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(5992), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -234898,7 +240959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -234918,9 +240979,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5931), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -234931,293 +240991,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1358)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5933), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1359)] = { - [sym_expression] = STATE(5630), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5802), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), + [STATE(1325)] = { + [sym_expression] = STATE(6783), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_initializer_list] = STATE(5992), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4926), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(1360)] = { - [sym_expression] = STATE(6899), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1326)] = { + [sym_expression] = STATE(6773), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11015), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON] = ACTIONS(6044), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -235225,7 +241179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -235245,84 +241199,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5935), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1361)] = { - [sym_expression] = STATE(6908), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(5937), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1327)] = { + [sym_expression] = STATE(5919), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_initializer_list] = STATE(5986), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4926), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1328)] = { + [sym_expression] = STATE(5210), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_initializer_list] = STATE(5596), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(2952), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1329)] = { + [sym_expression] = STATE(6566), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(9818), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6046), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -235335,7 +241509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -235355,8 +241529,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -235367,179 +241541,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1362)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5939), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), + [STATE(1330)] = { + [sym_expression] = STATE(6904), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_initializer_list] = STATE(10592), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), }, - [STATE(1363)] = { - [sym_expression] = STATE(6942), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1331)] = { + [sym_expression] = STATE(3820), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_initializer_list] = STATE(3937), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1332)] = { + [sym_expression] = STATE(6742), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10620), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -235552,7 +241839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -235572,9 +241859,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5941), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -235585,76 +241871,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1364)] = { - [sym_expression] = STATE(6440), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_SEMI] = ACTIONS(5943), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(5945), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1333)] = { + [sym_expression] = STATE(6545), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_initializer_list] = STATE(5992), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -235662,866 +241949,434 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1365)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5947), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1366)] = { - [sym_expression] = STATE(5631), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5949), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1367)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5952), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1368)] = { - [sym_expression] = STATE(5631), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5729), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1369)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5954), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), + [STATE(1334)] = { + [sym_expression] = STATE(6767), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11674), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON] = ACTIONS(6049), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(1370)] = { - [sym_expression] = STATE(4973), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5956), - [anon_sym_LPAREN2] = ACTIONS(5958), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), + [STATE(1335)] = { + [sym_expression] = STATE(6831), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_initializer_list] = STATE(7379), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), }, - [STATE(1371)] = { - [sym_expression] = STATE(5631), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5736), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), + [STATE(1336)] = { + [sym_expression] = STATE(5919), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_initializer_list] = STATE(5986), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(1372)] = { - [sym_expression] = STATE(6958), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1337)] = { + [sym_expression] = STATE(6603), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10620), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5960), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -236534,7 +242389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -236554,8 +242409,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -236566,71 +242421,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1373)] = { - [sym_expression] = STATE(7010), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1338)] = { + [sym_expression] = STATE(6740), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10792), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(6051), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(5962), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -236643,7 +242499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -236663,8 +242519,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -236675,2365 +242531,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1374)] = { - [sym_expression] = STATE(5634), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5741), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1375)] = { - [sym_expression] = STATE(5636), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5746), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1376)] = { - [sym_expression] = STATE(5637), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5749), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1377)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5964), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1378)] = { - [sym_expression] = STATE(5638), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5766), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1379)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5966), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1380)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5968), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1381)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5970), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1382)] = { - [sym_expression] = STATE(5639), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5775), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1383)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5972), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1384)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5974), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1385)] = { - [sym_expression] = STATE(5391), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5725), - [anon_sym_LPAREN2] = ACTIONS(5976), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1386)] = { - [sym_expression] = STATE(5640), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5786), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1387)] = { - [sym_expression] = STATE(5640), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5796), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1388)] = { - [sym_expression] = STATE(5641), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5807), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1389)] = { - [sym_expression] = STATE(5641), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5810), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1390)] = { - [sym_expression] = STATE(5641), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5817), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1391)] = { - [sym_expression] = STATE(5641), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5820), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1392)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5978), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1393)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5980), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1394)] = { - [sym_expression] = STATE(5086), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5949), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1395)] = { - [sym_expression] = STATE(6440), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_SEMI] = ACTIONS(5982), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(5945), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1339)] = { + [sym_expression] = STATE(6896), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10844), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(6053), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -239041,108 +242609,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1396)] = { - [sym_expression] = STATE(6746), - [sym__string] = STATE(6317), - [sym_comma_expression] = STATE(10056), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1340)] = { + [sym_expression] = STATE(7178), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10912), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -239150,7 +242719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -239170,1173 +242739,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1397)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5984), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1398)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5986), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1399)] = { - [sym_expression] = STATE(5643), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5827), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1400)] = { - [sym_expression] = STATE(5643), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5832), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1401)] = { - [sym_expression] = STATE(5187), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5988), - [anon_sym_LPAREN2] = ACTIONS(5990), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), - }, - [STATE(1402)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5992), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1403)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5994), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1404)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5996), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1405)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(5998), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1406)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(6000), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1407)] = { - [sym_expression] = STATE(7068), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_RPAREN] = ACTIONS(6002), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1341)] = { + [sym_expression] = STATE(6731), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11669), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(6055), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -240349,7 +242829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -240369,8 +242849,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -240381,948 +242861,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1408)] = { - [sym_expression] = STATE(5634), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5799), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1409)] = { - [sym_expression] = STATE(5636), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5863), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1410)] = { - [sym_expression] = STATE(5637), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5892), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1411)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(6004), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1412)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(6006), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1413)] = { - [sym_expression] = STATE(5638), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6008), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1414)] = { - [sym_expression] = STATE(5138), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6008), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1415)] = { - [sym_expression] = STATE(5639), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5841), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), + [STATE(1342)] = { + [sym_expression] = STATE(6330), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_initializer_list] = STATE(5992), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(1416)] = { - [sym_expression] = STATE(6777), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5732), - [anon_sym_LPAREN2] = ACTIONS(6011), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1343)] = { + [sym_expression] = STATE(6757), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11178), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON] = ACTIONS(6057), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -241330,7 +243049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -241350,88 +243069,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1417)] = { - [sym_expression] = STATE(6440), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_SEMI] = ACTIONS(6013), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(5945), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1344)] = { + [sym_expression] = STATE(5919), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_initializer_list] = STATE(5986), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -241439,542 +243159,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1418)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(6015), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1419)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(6017), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1420)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(6019), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1421)] = { - [sym_expression] = STATE(5186), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), + [STATE(1345)] = { + [sym_expression] = STATE(6879), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_initializer_list] = STATE(7269), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(4910), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), }, - [STATE(1422)] = { - [sym_expression] = STATE(7080), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1346)] = { + [sym_expression] = STATE(6917), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10839), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON] = ACTIONS(6059), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -241982,7 +243379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -242002,946 +243399,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1423)] = { - [sym_expression] = STATE(6677), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(1424)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(6021), - }, - [STATE(1425)] = { - [sym_expression] = STATE(6641), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(1426)] = { - [sym_expression] = STATE(5751), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(6023), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1427)] = { - [sym_expression] = STATE(5778), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1428)] = { - [sym_expression] = STATE(6769), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(1429)] = { - [sym_expression] = STATE(5744), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(6025), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1430)] = { - [sym_expression] = STATE(6853), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(1347)] = { + [sym_expression] = STATE(6826), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_initializer_list] = STATE(7360), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(4910), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), }, - [STATE(1431)] = { - [sym_expression] = STATE(6698), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1348)] = { + [sym_expression] = STATE(7072), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(11135), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -242954,7 +243599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -242974,8 +243619,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -242986,183 +243631,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1432)] = { - [sym_expression] = STATE(5644), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1433)] = { - [sym_expression] = STATE(6633), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1349)] = { + [sym_expression] = STATE(6761), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11082), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON] = ACTIONS(6061), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -243170,7 +243709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -243190,82 +243729,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1434)] = { - [sym_expression] = STATE(6938), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1350)] = { + [sym_expression] = STATE(5919), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(5986), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -243278,7 +243819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -243298,8 +243839,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -243310,291 +243851,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1435)] = { - [sym_expression] = STATE(5011), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1436)] = { - [sym_expression] = STATE(5738), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1437)] = { - [sym_expression] = STATE(7053), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1351)] = { + [sym_expression] = STATE(6832), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10724), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON] = ACTIONS(6063), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -243602,7 +243929,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -243622,195 +243949,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1438)] = { - [sym_expression] = STATE(5693), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1439)] = { - [sym_expression] = STATE(6689), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1352)] = { + [sym_expression] = STATE(6921), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11063), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON] = ACTIONS(6065), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -243818,7 +244039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -243838,82 +244059,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1440)] = { - [sym_expression] = STATE(6693), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1353)] = { + [sym_expression] = STATE(6818), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10556), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -243926,7 +244149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -243946,8 +244169,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -243958,70 +244181,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1441)] = { - [sym_expression] = STATE(6860), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1354)] = { + [sym_expression] = STATE(6820), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(10579), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -244034,7 +244259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -244054,8 +244279,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -244066,75 +244291,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1442)] = { - [sym_expression] = STATE(6533), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1355)] = { + [sym_expression] = STATE(6735), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11356), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON] = ACTIONS(6067), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -244142,7 +244369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -244162,303 +244389,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1443)] = { - [sym_expression] = STATE(6664), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(6027), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1444)] = { - [sym_expression] = STATE(6666), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1445)] = { - [sym_expression] = STATE(6990), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1356)] = { + [sym_expression] = STATE(6744), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11643), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON] = ACTIONS(6069), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -244466,7 +244479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -244486,190 +244499,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1446)] = { - [sym_expression] = STATE(6665), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(6029), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1447)] = { - [sym_expression] = STATE(6355), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1357)] = { + [sym_expression] = STATE(6733), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11086), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(6071), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(6031), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -244682,7 +244589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -244702,8 +244609,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -244714,70 +244621,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1448)] = { - [sym_expression] = STATE(6926), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1358)] = { + [sym_expression] = STATE(6936), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_initializer_list] = STATE(11571), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -244790,7 +244699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -244810,8 +244719,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -244822,291 +244731,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1449)] = { - [sym_expression] = STATE(6619), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1450)] = { - [sym_expression] = STATE(6720), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1451)] = { - [sym_expression] = STATE(6695), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), + [STATE(1359)] = { + [sym_expression] = STATE(6794), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10845), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON] = ACTIONS(6073), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -245114,7 +244809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -245134,82 +244829,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1452)] = { - [sym_expression] = STATE(6977), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1360)] = { + [sym_expression] = STATE(3820), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_initializer_list] = STATE(3937), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1361)] = { + [sym_expression] = STATE(6531), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_initializer_list] = STATE(9590), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1362)] = { + [sym_expression] = STATE(6869), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11234), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(6075), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -245222,7 +245139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -245242,8 +245159,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -245254,2235 +245171,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1453)] = { - [sym_expression] = STATE(6626), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1454)] = { - [sym_expression] = STATE(5191), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(6033), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), - }, - [STATE(1455)] = { - [sym_expression] = STATE(5192), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), - }, - [STATE(1456)] = { - [sym_expression] = STATE(5301), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(6035), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), - }, - [STATE(1457)] = { - [sym_expression] = STATE(5347), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), - }, - [STATE(1458)] = { - [sym_expression] = STATE(5382), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), - }, - [STATE(1459)] = { - [sym_expression] = STATE(5424), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), - }, - [STATE(1460)] = { - [sym_expression] = STATE(5199), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(6037), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1461)] = { - [sym_expression] = STATE(5288), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1462)] = { - [sym_expression] = STATE(5254), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1463)] = { - [sym_expression] = STATE(5414), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1464)] = { - [sym_expression] = STATE(4879), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(6039), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1465)] = { - [sym_expression] = STATE(4841), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1466)] = { - [sym_expression] = STATE(4678), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1467)] = { - [sym_expression] = STATE(4711), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1468)] = { - [sym_expression] = STATE(4528), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(6041), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1469)] = { - [sym_expression] = STATE(5102), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1470)] = { - [sym_expression] = STATE(5102), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(6043), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1471)] = { - [sym_expression] = STATE(3695), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1472)] = { - [sym_expression] = STATE(4972), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1473)] = { - [sym_expression] = STATE(6440), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(5945), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1363)] = { + [sym_expression] = STATE(6870), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11240), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(6077), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -247490,107 +245249,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1474)] = { - [sym_expression] = STATE(5763), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1364)] = { + [sym_expression] = STATE(6806), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11491), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON] = ACTIONS(6079), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -247598,215 +245359,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1475)] = { - [sym_expression] = STATE(5287), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), - }, - [STATE(1476)] = { - [sym_expression] = STATE(6426), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1365)] = { + [sym_expression] = STATE(6817), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(10660), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON] = ACTIONS(6081), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -247814,107 +245469,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1477)] = { - [sym_expression] = STATE(6399), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(6045), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1366)] = { + [sym_expression] = STATE(6860), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11183), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON] = ACTIONS(6083), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -247922,323 +245579,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1478)] = { - [sym_expression] = STATE(5058), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1479)] = { - [sym_expression] = STATE(4553), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(6047), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1367)] = { + [sym_expression] = STATE(5810), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_initializer_list] = STATE(6027), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), }, - [STATE(1480)] = { - [sym_expression] = STATE(6832), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1368)] = { + [sym_expression] = STATE(6849), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_initializer_list] = STATE(5992), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -248246,7 +245799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -248266,87 +245819,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1481)] = { - [sym_expression] = STATE(6446), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1369)] = { + [sym_expression] = STATE(5493), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_initializer_list] = STATE(3937), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1370)] = { + [sym_expression] = STATE(6900), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11579), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON] = ACTIONS(6085), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -248354,107 +246019,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1482)] = { - [sym_expression] = STATE(5774), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1371)] = { + [sym_expression] = STATE(6919), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(11687), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON] = ACTIONS(6087), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -248462,107 +246129,1090 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1483)] = { - [sym_expression] = STATE(6437), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1372)] = { + [sym_expression] = STATE(5804), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_initializer_list] = STATE(6088), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1373)] = { + [sym_expression] = STATE(5828), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6089), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1374)] = { + [sym_expression] = STATE(5096), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6092), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1375)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6095), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1376)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6097), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1377)] = { + [sym_expression] = STATE(5886), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6099), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1378)] = { + [sym_expression] = STATE(5097), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6102), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1379)] = { + [sym_expression] = STATE(3792), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6105), + [anon_sym_LPAREN2] = ACTIONS(6107), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1380)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6109), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1381)] = { + [sym_expression] = STATE(6978), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(6111), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -248570,107 +247220,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1484)] = { - [sym_expression] = STATE(6400), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1382)] = { + [sym_expression] = STATE(6983), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(6113), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -248678,107 +247329,980 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1485)] = { - [sym_expression] = STATE(6403), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1383)] = { + [sym_expression] = STATE(5098), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6115), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1384)] = { + [sym_expression] = STATE(5914), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6118), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1385)] = { + [sym_expression] = STATE(5099), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6121), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1386)] = { + [sym_expression] = STATE(5100), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6124), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1387)] = { + [sym_expression] = STATE(5101), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6127), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1388)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6130), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1389)] = { + [sym_expression] = STATE(5101), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6132), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1390)] = { + [sym_expression] = STATE(5102), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6135), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1391)] = { + [sym_expression] = STATE(7079), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(6138), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -248786,107 +248310,1089 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1486)] = { - [sym_expression] = STATE(6407), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1392)] = { + [sym_expression] = STATE(5914), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6140), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1393)] = { + [sym_expression] = STATE(5102), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6143), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1394)] = { + [sym_expression] = STATE(5102), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6146), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1395)] = { + [sym_expression] = STATE(5102), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6149), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1396)] = { + [sym_expression] = STATE(5914), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6152), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1397)] = { + [sym_expression] = STATE(5737), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6092), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1398)] = { + [sym_expression] = STATE(5748), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6102), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1399)] = { + [sym_expression] = STATE(5104), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6155), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1400)] = { + [sym_expression] = STATE(5104), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6089), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1401)] = { + [sym_expression] = STATE(5934), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6158), + [anon_sym_LPAREN2] = ACTIONS(6160), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -248894,107 +249400,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1487)] = { - [sym_expression] = STATE(6412), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1402)] = { + [sym_expression] = STATE(7047), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(6162), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -249002,107 +249509,1307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1488)] = { - [sym_expression] = STATE(6414), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1403)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6164), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1404)] = { + [sym_expression] = STATE(5757), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6115), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1405)] = { + [sym_expression] = STATE(5765), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6121), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1406)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6166), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1407)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6168), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1408)] = { + [sym_expression] = STATE(5806), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6124), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1409)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6170), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1410)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6172), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1411)] = { + [sym_expression] = STATE(5815), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6127), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1412)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6174), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1413)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6176), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1414)] = { + [sym_expression] = STATE(6517), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym_SEMI] = ACTIONS(6178), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(6180), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -249110,107 +250817,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1489)] = { - [sym_expression] = STATE(6447), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1415)] = { + [sym_expression] = STATE(6739), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6182), + [anon_sym_LPAREN2] = ACTIONS(6184), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(1416)] = { + [sym_expression] = STATE(7110), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(6186), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -249218,107 +251035,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1490)] = { - [sym_expression] = STATE(6433), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1417)] = { + [sym_expression] = STATE(7111), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(6188), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -249326,107 +251144,435 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1491)] = { - [sym_expression] = STATE(6397), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1418)] = { + [sym_expression] = STATE(5815), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6132), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1419)] = { + [sym_expression] = STATE(5824), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6135), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1420)] = { + [sym_expression] = STATE(5172), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6190), + [anon_sym_LPAREN2] = ACTIONS(6192), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1421)] = { + [sym_expression] = STATE(7144), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(6194), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -249434,107 +251580,980 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1492)] = { - [sym_expression] = STATE(6424), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1422)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6196), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1423)] = { + [sym_expression] = STATE(5824), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6143), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1424)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6198), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1425)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6200), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1426)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6202), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1427)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6204), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1428)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6206), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1429)] = { + [sym_expression] = STATE(5793), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6208), + [anon_sym_LPAREN2] = ACTIONS(6210), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1430)] = { + [sym_expression] = STATE(7164), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(6212), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -249542,102 +252561,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1493)] = { - [sym_expression] = STATE(6867), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1431)] = { + [sym_expression] = STATE(7165), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(6214), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -249650,7 +252670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -249670,8 +252690,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -249682,70 +252702,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1494)] = { - [sym_expression] = STATE(6714), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1432)] = { + [sym_expression] = STATE(5824), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6146), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1433)] = { + [sym_expression] = STATE(7192), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(6216), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -249758,7 +252888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -249778,8 +252908,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -249790,70 +252920,506 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1495)] = { - [sym_expression] = STATE(6915), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1434)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6218), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1435)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6220), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1436)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6222), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1437)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6224), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1438)] = { + [sym_expression] = STATE(7113), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -249866,7 +253432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -249886,8 +253452,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [sym_auto] = ACTIONS(6226), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -249898,183 +253465,839 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1496)] = { - [sym_expression] = STATE(4976), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), + [STATE(1439)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6228), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1497)] = { - [sym_expression] = STATE(6199), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), + [STATE(1440)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6230), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1441)] = { + [sym_expression] = STATE(6801), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6232), + [anon_sym_LPAREN2] = ACTIONS(6234), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1442)] = { + [sym_expression] = STATE(5824), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6149), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1443)] = { + [sym_expression] = STATE(5096), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6236), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1444)] = { + [sym_expression] = STATE(5097), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6239), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1445)] = { + [sym_expression] = STATE(5828), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6155), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1446)] = { + [sym_expression] = STATE(6954), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(6242), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -250082,755 +254305,1416 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1498)] = { - [sym_expression] = STATE(5086), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), + [STATE(1447)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6244), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1499)] = { - [sym_expression] = STATE(4924), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), + [STATE(1448)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6246), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1500)] = { - [sym_expression] = STATE(5113), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), + [STATE(1449)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6248), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1501)] = { - [sym_expression] = STATE(5119), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), + [STATE(1450)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6250), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1502)] = { - [sym_expression] = STATE(5138), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), + [STATE(1451)] = { + [sym_expression] = STATE(3792), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6105), + [anon_sym_LPAREN2] = ACTIONS(6252), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [STATE(1503)] = { - [sym_expression] = STATE(4960), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), + [STATE(1452)] = { + [sym_expression] = STATE(5098), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6254), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), }, - [STATE(1504)] = { - [sym_expression] = STATE(6445), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1453)] = { + [sym_expression] = STATE(5099), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6257), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1454)] = { + [sym_expression] = STATE(5100), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1455)] = { + [sym_expression] = STATE(5101), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6263), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1456)] = { + [sym_expression] = STATE(5095), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6140), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1457)] = { + [sym_expression] = STATE(5095), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6152), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1458)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6266), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1459)] = { + [sym_expression] = STATE(6981), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(6268), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -250838,1938 +255722,757 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1505)] = { - [sym_expression] = STATE(5034), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1506)] = { - [sym_expression] = STATE(5040), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1507)] = { - [sym_expression] = STATE(5091), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1508)] = { - [sym_expression] = STATE(4586), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1509)] = { - [sym_expression] = STATE(6628), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1510)] = { - [sym_expression] = STATE(5020), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(6049), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1511)] = { - [sym_expression] = STATE(6637), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(1512)] = { - [sym_expression] = STATE(6716), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(1513)] = { - [sym_expression] = STATE(6724), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(1514)] = { - [sym_expression] = STATE(6783), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(1515)] = { - [sym_expression] = STATE(6644), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(1516)] = { - [sym_expression] = STATE(6645), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), + [STATE(1460)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6270), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1517)] = { - [sym_expression] = STATE(6646), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), + [STATE(1461)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6272), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1518)] = { - [sym_expression] = STATE(6647), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), + [STATE(1462)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6274), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1519)] = { - [sym_expression] = STATE(6650), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), + [STATE(1463)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6276), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1520)] = { - [sym_expression] = STATE(6660), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), + [STATE(1464)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6278), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1521)] = { - [sym_expression] = STATE(5038), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), + [STATE(1465)] = { + [sym_expression] = STATE(5332), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6280), + [anon_sym_LPAREN2] = ACTIONS(6282), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), }, - [STATE(1522)] = { - [sym_expression] = STATE(5699), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1466)] = { + [sym_expression] = STATE(7158), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(6284), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -252782,7 +256485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -252802,8 +256505,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -252814,286 +256517,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1523)] = { - [sym_expression] = STATE(4766), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(6051), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1524)] = { - [sym_expression] = STATE(3695), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1467)] = { + [sym_expression] = STATE(5748), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6239), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), }, - [STATE(1525)] = { - [sym_expression] = STATE(5750), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1468)] = { + [sym_expression] = STATE(7008), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(6286), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -253106,7 +256703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -253126,8 +256723,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -253138,1047 +256735,730 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1526)] = { - [sym_expression] = STATE(5367), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(6053), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1527)] = { - [sym_expression] = STATE(5413), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1528)] = { - [sym_expression] = STATE(4431), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(6055), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1529)] = { - [sym_expression] = STATE(4393), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1469)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6288), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1530)] = { - [sym_expression] = STATE(4441), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1470)] = { + [sym_expression] = STATE(5757), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6254), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), }, - [STATE(1531)] = { - [sym_expression] = STATE(4443), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1471)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6290), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1532)] = { - [sym_expression] = STATE(3689), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1472)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6292), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1533)] = { - [sym_expression] = STATE(3689), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(6057), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1473)] = { + [sym_expression] = STATE(5765), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6257), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), }, - [STATE(1534)] = { - [sym_expression] = STATE(3666), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1474)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6294), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1535)] = { - [sym_expression] = STATE(6239), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACK] = ACTIONS(6059), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), + [STATE(1475)] = { + [sym_expression] = STATE(6932), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(6296), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -254186,107 +257466,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1536)] = { - [sym_expression] = STATE(5763), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), + [STATE(1476)] = { + [sym_expression] = STATE(5510), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6298), + [anon_sym_LPAREN2] = ACTIONS(6300), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1477)] = { + [sym_expression] = STATE(5806), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1478)] = { + [sym_expression] = STATE(7026), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(6302), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -254294,215 +257793,653 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1537)] = { - [sym_expression] = STATE(5419), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), + [STATE(1479)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6304), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1538)] = { - [sym_expression] = STATE(6237), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), + [STATE(1480)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6306), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1481)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6308), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1482)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6310), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1483)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6312), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1484)] = { + [sym_expression] = STATE(5934), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6158), + [anon_sym_LPAREN2] = ACTIONS(6314), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -254510,107 +258447,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1539)] = { - [sym_expression] = STATE(6242), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACK] = ACTIONS(6061), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), + [STATE(1485)] = { + [sym_expression] = STATE(5815), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6263), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1486)] = { + [sym_expression] = STATE(6517), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym_SEMI] = ACTIONS(6316), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(6180), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -254618,539 +258665,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1540)] = { - [sym_expression] = STATE(5050), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1541)] = { - [sym_expression] = STATE(4650), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1542)] = { - [sym_expression] = STATE(5041), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(6063), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), - }, - [STATE(1543)] = { - [sym_expression] = STATE(6709), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(1544)] = { - [sym_expression] = STATE(6244), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), + [STATE(1487)] = { + [sym_expression] = STATE(6938), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(6318), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -255158,1079 +258774,544 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1545)] = { - [sym_expression] = STATE(5774), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1546)] = { - [sym_expression] = STATE(6245), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1547)] = { - [sym_expression] = STATE(6246), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1548)] = { - [sym_expression] = STATE(6247), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), - }, - [STATE(1549)] = { - [sym_expression] = STATE(6248), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1550)] = { - [sym_expression] = STATE(6249), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [STATE(1488)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6320), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1551)] = { - [sym_expression] = STATE(6250), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [STATE(1489)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6322), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1552)] = { - [sym_expression] = STATE(6251), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [STATE(1490)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6324), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1553)] = { - [sym_expression] = STATE(6252), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [STATE(1491)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6326), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1554)] = { - [sym_expression] = STATE(6253), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), + [STATE(1492)] = { + [sym_expression] = STATE(5934), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6158), + [anon_sym_LPAREN2] = ACTIONS(6328), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -256238,102 +259319,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1555)] = { - [sym_expression] = STATE(6687), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1493)] = { + [sym_expression] = STATE(6991), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(6330), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -256346,7 +259428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -256366,8 +259448,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -256378,178 +259460,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1556)] = { - [sym_expression] = STATE(6256), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), - [sym_this] = ACTIONS(237), + [STATE(1494)] = { + [sym_expression] = STATE(3792), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6105), + [anon_sym_LPAREN2] = ACTIONS(6332), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [STATE(1557)] = { - [sym_expression] = STATE(6330), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1495)] = { + [sym_expression] = STATE(3792), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6105), + [anon_sym_LPAREN2] = ACTIONS(6334), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1496)] = { + [sym_expression] = STATE(6566), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(9818), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(6065), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -256562,7 +259755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -256582,8 +259775,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -256594,183 +259787,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1558)] = { - [sym_expression] = STATE(4606), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1559)] = { - [sym_expression] = STATE(6258), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), + [STATE(1497)] = { + [sym_expression] = STATE(5934), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6158), + [anon_sym_LPAREN2] = ACTIONS(6336), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -256778,107 +259864,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(4926), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1560)] = { - [sym_expression] = STATE(7059), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1498)] = { + [sym_expression] = STATE(7100), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -256886,7 +259972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -256906,82 +259992,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [sym_auto] = ACTIONS(6338), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1561)] = { - [sym_expression] = STATE(6902), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1499)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6340), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1500)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6342), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1501)] = { + [sym_expression] = STATE(6996), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(6344), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -256994,7 +260300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -257014,8 +260320,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -257026,1906 +260332,506 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1562)] = { - [sym_expression] = STATE(6773), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(1563)] = { - [sym_expression] = STATE(6691), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1564)] = { - [sym_expression] = STATE(6699), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1565)] = { - [sym_expression] = STATE(6700), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1566)] = { - [sym_expression] = STATE(6715), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1567)] = { - [sym_expression] = STATE(6723), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1568)] = { - [sym_expression] = STATE(6757), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1569)] = { - [sym_expression] = STATE(6762), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1570)] = { - [sym_expression] = STATE(6778), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1571)] = { - [sym_expression] = STATE(6785), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1572)] = { - [sym_expression] = STATE(6792), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1573)] = { - [sym_expression] = STATE(4320), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(6067), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1574)] = { - [sym_expression] = STATE(3695), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1575)] = { - [sym_expression] = STATE(6768), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), + [STATE(1502)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6346), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1576)] = { - [sym_expression] = STATE(6718), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), + [STATE(1503)] = { + [sym_expression] = STATE(5094), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6348), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), }, - [STATE(1577)] = { - [sym_expression] = STATE(6909), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(1504)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6351), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1578)] = { - [sym_expression] = STATE(3665), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1505)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6353), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1579)] = { - [sym_expression] = STATE(6929), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1506)] = { + [sym_expression] = STATE(7003), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -258938,7 +260844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -258958,8 +260864,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [sym_auto] = ACTIONS(6355), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -258970,1258 +260877,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1580)] = { - [sym_expression] = STATE(4574), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1581)] = { - [sym_expression] = STATE(3685), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1582)] = { - [sym_expression] = STATE(4576), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1583)] = { - [sym_expression] = STATE(4578), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1584)] = { - [sym_expression] = STATE(4579), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1585)] = { - [sym_expression] = STATE(4581), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1586)] = { - [sym_expression] = STATE(4582), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1587)] = { - [sym_expression] = STATE(4583), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1588)] = { - [sym_expression] = STATE(4584), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1589)] = { - [sym_expression] = STATE(4585), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1590)] = { - [sym_expression] = STATE(4961), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), + [STATE(1507)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6357), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1591)] = { - [sym_expression] = STATE(5750), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(6069), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1508)] = { + [sym_expression] = STATE(7127), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -260234,7 +261062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -260254,8 +261082,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [sym_auto] = ACTIONS(6359), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -260266,70 +261095,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1592)] = { - [sym_expression] = STATE(6391), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1509)] = { + [sym_expression] = STATE(7177), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -260342,7 +261171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -260362,8 +261191,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [sym_auto] = ACTIONS(6361), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -260374,1690 +261204,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1593)] = { - [sym_expression] = STATE(5180), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), - }, - [STATE(1594)] = { - [sym_expression] = STATE(5334), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), - }, - [STATE(1595)] = { - [sym_expression] = STATE(5335), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), - }, - [STATE(1596)] = { - [sym_expression] = STATE(5338), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), - }, - [STATE(1597)] = { - [sym_expression] = STATE(5339), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), - }, - [STATE(1598)] = { - [sym_expression] = STATE(5340), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), - }, - [STATE(1599)] = { - [sym_expression] = STATE(5341), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), - }, - [STATE(1600)] = { - [sym_expression] = STATE(5343), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), - }, - [STATE(1601)] = { - [sym_expression] = STATE(5344), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), - }, - [STATE(1602)] = { - [sym_expression] = STATE(5345), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), - }, - [STATE(1603)] = { - [sym_expression] = STATE(5346), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), - }, - [STATE(1604)] = { - [sym_expression] = STATE(5659), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1605)] = { - [sym_expression] = STATE(4621), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1606)] = { - [sym_expression] = STATE(5712), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1607)] = { - [sym_expression] = STATE(3665), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1608)] = { - [sym_expression] = STATE(5774), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1510)] = { + [sym_expression] = STATE(6948), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -262070,7 +261280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -262090,8 +261300,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [sym_auto] = ACTIONS(6363), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -262102,70 +261313,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1609)] = { - [sym_expression] = STATE(6337), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1511)] = { + [sym_expression] = STATE(6971), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -262178,7 +261389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -262198,8 +261409,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [sym_auto] = ACTIONS(6365), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -262210,70 +261422,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1610)] = { - [sym_expression] = STATE(6339), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1512)] = { + [sym_expression] = STATE(7002), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -262286,7 +261498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -262306,8 +261518,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [sym_auto] = ACTIONS(6367), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -262318,70 +261531,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1611)] = { - [sym_expression] = STATE(6341), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1513)] = { + [sym_expression] = STATE(7021), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -262394,7 +261607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -262414,8 +261627,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [sym_auto] = ACTIONS(6369), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -262426,70 +261640,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1612)] = { - [sym_expression] = STATE(6345), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1514)] = { + [sym_expression] = STATE(7039), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -262502,7 +261716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -262522,8 +261736,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [sym_auto] = ACTIONS(6371), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -262534,70 +261749,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1613)] = { - [sym_expression] = STATE(6343), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1515)] = { + [sym_expression] = STATE(7052), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -262610,7 +261825,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -262630,8 +261845,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [sym_auto] = ACTIONS(6373), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -262642,1479 +261858,512 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1614)] = { - [sym_expression] = STATE(5418), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1615)] = { - [sym_expression] = STATE(5222), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1616)] = { - [sym_expression] = STATE(5223), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1617)] = { - [sym_expression] = STATE(5240), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1618)] = { - [sym_expression] = STATE(5243), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1619)] = { - [sym_expression] = STATE(5245), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1620)] = { - [sym_expression] = STATE(5246), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1621)] = { - [sym_expression] = STATE(5251), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1622)] = { - [sym_expression] = STATE(5253), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), + [STATE(1516)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6375), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1623)] = { - [sym_expression] = STATE(5267), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), + [STATE(1517)] = { + [sym_expression] = STATE(5476), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6105), + [anon_sym_LPAREN2] = ACTIONS(6377), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [STATE(1624)] = { + [STATE(1518)] = { [sym_expression] = STATE(5270), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), - }, - [STATE(1625)] = { - [sym_expression] = STATE(6627), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(6379), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1626)] = { - [sym_expression] = STATE(6643), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(1519)] = { + [sym_expression] = STATE(5886), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6348), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), }, - [STATE(1627)] = { - [sym_expression] = STATE(6332), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1520)] = { + [sym_expression] = STATE(6862), + [sym__string] = STATE(6386), + [sym_comma_expression] = STATE(9818), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -264122,7 +262371,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -264142,87 +262391,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1628)] = { - [sym_expression] = STATE(7081), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1521)] = { + [sym_expression] = STATE(6517), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym_SEMI] = ACTIONS(6381), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(6180), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1522)] = { + [sym_expression] = STATE(5094), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6099), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1523)] = { + [sym_expression] = STATE(6886), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6158), + [anon_sym_LPAREN2] = ACTIONS(6383), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -264230,7 +262698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -264250,82 +262718,300 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1629)] = { - [sym_expression] = STATE(6382), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1524)] = { + [sym_expression] = STATE(5095), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6118), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1525)] = { + [sym_expression] = STATE(5737), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6236), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1526)] = { + [sym_expression] = STATE(6952), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -264338,7 +263024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -264358,8 +263044,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -264370,70 +263056,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1630)] = { - [sym_expression] = STATE(6338), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1527)] = { + [sym_expression] = STATE(7191), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -264446,7 +263132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -264466,8 +263152,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -264478,70 +263164,1474 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1631)] = { - [sym_expression] = STATE(6321), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1528)] = { + [sym_expression] = STATE(6510), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1529)] = { + [sym_expression] = STATE(5094), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1530)] = { + [sym_expression] = STATE(5095), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1531)] = { + [sym_expression] = STATE(5096), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1532)] = { + [sym_expression] = STATE(6802), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(6385), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1533)] = { + [sym_expression] = STATE(6803), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1534)] = { + [sym_expression] = STATE(5097), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1535)] = { + [sym_expression] = STATE(5098), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1536)] = { + [sym_expression] = STATE(6893), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(6387), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1537)] = { + [sym_expression] = STATE(5099), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1538)] = { + [sym_expression] = STATE(6521), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1539)] = { + [sym_expression] = STATE(6924), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1540)] = { + [sym_expression] = STATE(4658), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1541)] = { + [sym_expression] = STATE(7018), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -264554,7 +264644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -264574,8 +264664,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -264586,70 +264676,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1632)] = { - [sym_expression] = STATE(6921), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1542)] = { + [sym_expression] = STATE(5837), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(6389), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -264662,7 +264752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -264682,8 +264772,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -264694,70 +264784,1042 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1633)] = { - [sym_expression] = STATE(5763), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1543)] = { + [sym_expression] = STATE(6301), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1544)] = { + [sym_expression] = STATE(6525), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1545)] = { + [sym_expression] = STATE(5100), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1546)] = { + [sym_expression] = STATE(5101), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1547)] = { + [sym_expression] = STATE(6874), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1548)] = { + [sym_expression] = STATE(5102), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1549)] = { + [sym_expression] = STATE(5104), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1550)] = { + [sym_expression] = STATE(4643), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1551)] = { + [sym_expression] = STATE(6775), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1552)] = { + [sym_expression] = STATE(6429), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -264770,7 +265832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -264790,8 +265852,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -264802,1474 +265864,1150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1634)] = { - [sym_expression] = STATE(4764), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1635)] = { - [sym_expression] = STATE(4831), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1636)] = { - [sym_expression] = STATE(3685), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1637)] = { - [sym_expression] = STATE(4716), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1553)] = { + [sym_expression] = STATE(6836), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), }, - [STATE(1638)] = { - [sym_expression] = STATE(4717), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1554)] = { + [sym_expression] = STATE(6755), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), }, - [STATE(1639)] = { - [sym_expression] = STATE(4718), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1555)] = { + [sym_expression] = STATE(6774), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), }, - [STATE(1640)] = { - [sym_expression] = STATE(4720), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1556)] = { + [sym_expression] = STATE(6753), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), }, - [STATE(1641)] = { - [sym_expression] = STATE(4724), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1557)] = { + [sym_expression] = STATE(6830), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), }, - [STATE(1642)] = { - [sym_expression] = STATE(4751), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1558)] = { + [sym_expression] = STATE(6877), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), }, - [STATE(1643)] = { - [sym_expression] = STATE(4752), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1559)] = { + [sym_expression] = STATE(6899), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), }, - [STATE(1644)] = { - [sym_expression] = STATE(4840), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1560)] = { + [sym_expression] = STATE(6905), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), }, - [STATE(1645)] = { - [sym_expression] = STATE(3689), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1561)] = { + [sym_expression] = STATE(6728), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), }, - [STATE(1646)] = { - [sym_expression] = STATE(3666), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1562)] = { + [sym_expression] = STATE(6729), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), }, - [STATE(1647)] = { - [sym_expression] = STATE(6859), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1563)] = { + [sym_expression] = STATE(6995), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -266282,7 +267020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -266302,8 +267040,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -266314,70 +267052,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1648)] = { - [sym_expression] = STATE(6363), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1564)] = { + [sym_expression] = STATE(6999), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1565)] = { + [sym_expression] = STATE(7017), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -266390,7 +267236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -266410,8 +267256,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -266422,2014 +267268,1582 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1649)] = { - [sym_expression] = STATE(4319), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1650)] = { - [sym_expression] = STATE(4391), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1651)] = { - [sym_expression] = STATE(3685), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1652)] = { - [sym_expression] = STATE(4433), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1653)] = { - [sym_expression] = STATE(4434), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1566)] = { + [sym_expression] = STATE(5001), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(6391), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [STATE(1654)] = { - [sym_expression] = STATE(4435), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1567)] = { + [sym_expression] = STATE(3794), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [STATE(1655)] = { - [sym_expression] = STATE(4436), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1568)] = { + [sym_expression] = STATE(6736), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), }, - [STATE(1656)] = { - [sym_expression] = STATE(4437), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1569)] = { + [sym_expression] = STATE(5299), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(6393), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1657)] = { - [sym_expression] = STATE(4438), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1570)] = { + [sym_expression] = STATE(5301), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), }, - [STATE(1658)] = { - [sym_expression] = STATE(4439), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1571)] = { + [sym_expression] = STATE(4400), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(6395), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [STATE(1659)] = { - [sym_expression] = STATE(4392), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1572)] = { + [sym_expression] = STATE(4500), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [STATE(1660)] = { - [sym_expression] = STATE(5176), - [sym__string] = STATE(5510), - [sym_conditional_expression] = STATE(5777), - [sym_assignment_expression] = STATE(5777), - [sym_pointer_expression] = STATE(5633), - [sym_unary_expression] = STATE(5777), - [sym_binary_expression] = STATE(5777), - [sym_update_expression] = STATE(5777), - [sym_cast_expression] = STATE(5777), - [sym_sizeof_expression] = STATE(5777), - [sym_alignof_expression] = STATE(5777), - [sym_offsetof_expression] = STATE(5777), - [sym_generic_expression] = STATE(5777), - [sym_subscript_expression] = STATE(5633), - [sym_call_expression] = STATE(5633), - [sym_gnu_asm_expression] = STATE(5777), - [sym_extension_expression] = STATE(5777), - [sym_field_expression] = STATE(5633), - [sym_compound_literal_expression] = STATE(5777), - [sym_parenthesized_expression] = STATE(5633), - [sym_char_literal] = STATE(5510), - [sym_concatenated_string] = STATE(5510), - [sym_string_literal] = STATE(3802), - [sym_null] = STATE(5777), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10382), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5777), - [sym_raw_string_literal] = STATE(3802), - [sym_co_await_expression] = STATE(5777), - [sym_new_expression] = STATE(5777), - [sym_delete_expression] = STATE(5777), - [sym_requires_clause] = STATE(5777), - [sym_requires_expression] = STATE(5777), - [sym_lambda_expression] = STATE(5777), - [sym_lambda_capture_specifier] = STATE(7908), - [sym_fold_expression] = STATE(5777), - [sym_parameter_pack_expansion] = STATE(5777), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5633), - [sym_qualified_type_identifier] = STATE(10382), - [sym_reflect_expression] = STATE(5777), - [sym_splice_specifier] = STATE(5006), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9228), - [sym_splice_expression] = STATE(5476), - [sym_user_defined_literal] = STATE(5633), - [sym_identifier] = ACTIONS(2598), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2600), - [anon_sym_compl] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(2612), - [anon_sym___alignof__] = ACTIONS(2614), - [anon_sym___alignof] = ACTIONS(2614), - [anon_sym__alignof] = ACTIONS(2614), - [anon_sym_alignof] = ACTIONS(2614), - [anon_sym__Alignof] = ACTIONS(2614), - [anon_sym_offsetof] = ACTIONS(2616), - [anon_sym__Generic] = ACTIONS(2618), - [anon_sym_typename] = ACTIONS(2620), - [anon_sym_asm] = ACTIONS(2622), - [anon_sym___asm__] = ACTIONS(2622), - [anon_sym___asm] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2626), - [anon_sym_u_SQUOTE] = ACTIONS(2626), - [anon_sym_U_SQUOTE] = ACTIONS(2626), - [anon_sym_u8_SQUOTE] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_L_DQUOTE] = ACTIONS(2628), - [anon_sym_u_DQUOTE] = ACTIONS(2628), - [anon_sym_U_DQUOTE] = ACTIONS(2628), - [anon_sym_u8_DQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [anon_sym_NULL] = ACTIONS(2632), - [anon_sym_nullptr] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2636), - [anon_sym_R_DQUOTE] = ACTIONS(2638), - [anon_sym_LR_DQUOTE] = ACTIONS(2638), - [anon_sym_uR_DQUOTE] = ACTIONS(2638), - [anon_sym_UR_DQUOTE] = ACTIONS(2638), - [anon_sym_u8R_DQUOTE] = ACTIONS(2638), - [anon_sym_co_await] = ACTIONS(2640), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2644), - [anon_sym_CARET_CARET] = ACTIONS(2646), - [anon_sym_LBRACK_COLON] = ACTIONS(2648), - [sym_this] = ACTIONS(2630), + [STATE(1573)] = { + [sym_expression] = STATE(4414), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [STATE(1661)] = { - [sym_expression] = STATE(6642), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(6071), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), + [STATE(1574)] = { + [sym_expression] = STATE(4421), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [STATE(1662)] = { - [sym_expression] = STATE(6796), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), + [STATE(1575)] = { + [sym_expression] = STATE(3782), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [STATE(1663)] = { - [sym_expression] = STATE(5218), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), + [STATE(1576)] = { + [sym_expression] = STATE(3782), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(6397), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [STATE(1664)] = { - [sym_expression] = STATE(5425), - [sym__string] = STATE(5559), - [sym_conditional_expression] = STATE(5824), - [sym_assignment_expression] = STATE(5824), - [sym_pointer_expression] = STATE(5656), - [sym_unary_expression] = STATE(5824), - [sym_binary_expression] = STATE(5824), - [sym_update_expression] = STATE(5824), - [sym_cast_expression] = STATE(5824), - [sym_sizeof_expression] = STATE(5824), - [sym_alignof_expression] = STATE(5824), - [sym_offsetof_expression] = STATE(5824), - [sym_generic_expression] = STATE(5824), - [sym_subscript_expression] = STATE(5656), - [sym_call_expression] = STATE(5656), - [sym_gnu_asm_expression] = STATE(5824), - [sym_extension_expression] = STATE(5824), - [sym_field_expression] = STATE(5656), - [sym_compound_literal_expression] = STATE(5824), - [sym_parenthesized_expression] = STATE(5656), - [sym_char_literal] = STATE(5559), - [sym_concatenated_string] = STATE(5559), - [sym_string_literal] = STATE(3724), - [sym_null] = STATE(5824), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10357), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5824), - [sym_raw_string_literal] = STATE(3724), - [sym_co_await_expression] = STATE(5824), - [sym_new_expression] = STATE(5824), - [sym_delete_expression] = STATE(5824), - [sym_requires_clause] = STATE(5824), - [sym_requires_expression] = STATE(5824), - [sym_lambda_expression] = STATE(5824), - [sym_lambda_capture_specifier] = STATE(7914), - [sym_fold_expression] = STATE(5824), - [sym_parameter_pack_expansion] = STATE(5824), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5656), - [sym_qualified_type_identifier] = STATE(10357), - [sym_reflect_expression] = STATE(5824), - [sym_splice_specifier] = STATE(5026), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9187), - [sym_splice_expression] = STATE(5515), - [sym_user_defined_literal] = STATE(5656), - [sym_identifier] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2684), - [anon_sym_compl] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_sizeof] = ACTIONS(2696), - [anon_sym___alignof__] = ACTIONS(2698), - [anon_sym___alignof] = ACTIONS(2698), - [anon_sym__alignof] = ACTIONS(2698), - [anon_sym_alignof] = ACTIONS(2698), - [anon_sym__Alignof] = ACTIONS(2698), - [anon_sym_offsetof] = ACTIONS(2700), - [anon_sym__Generic] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2706), - [anon_sym___asm__] = ACTIONS(2706), - [anon_sym___asm] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2710), - [anon_sym_u_SQUOTE] = ACTIONS(2710), - [anon_sym_U_SQUOTE] = ACTIONS(2710), - [anon_sym_u8_SQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_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(2714), - [sym_false] = ACTIONS(2714), - [anon_sym_NULL] = ACTIONS(2716), - [anon_sym_nullptr] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_R_DQUOTE] = ACTIONS(2722), - [anon_sym_LR_DQUOTE] = ACTIONS(2722), - [anon_sym_uR_DQUOTE] = ACTIONS(2722), - [anon_sym_UR_DQUOTE] = ACTIONS(2722), - [anon_sym_u8R_DQUOTE] = ACTIONS(2722), - [anon_sym_co_await] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2728), - [anon_sym_CARET_CARET] = ACTIONS(2730), - [anon_sym_LBRACK_COLON] = ACTIONS(2732), - [sym_this] = ACTIONS(2714), + [STATE(1577)] = { + [sym_expression] = STATE(4652), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [STATE(1665)] = { - [sym_expression] = STATE(5679), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), + [STATE(1578)] = { + [sym_expression] = STATE(3791), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [STATE(1666)] = { - [sym_expression] = STATE(6634), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(6073), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), + [STATE(1579)] = { + [sym_expression] = STATE(6354), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(6399), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(1667)] = { - [sym_expression] = STATE(6988), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1580)] = { + [sym_expression] = STATE(6479), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(6401), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -268442,7 +268856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -268462,8 +268876,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -268474,75 +268888,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1668)] = { - [sym_expression] = STATE(5750), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1581)] = { + [sym_expression] = STATE(6759), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -268550,107 +268964,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(4926), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), - [anon_sym_new] = ACTIONS(165), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1669)] = { - [sym_expression] = STATE(5699), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1582)] = { + [sym_expression] = STATE(5812), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -268658,107 +269072,539 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1670)] = { - [sym_expression] = STATE(5750), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), + [STATE(1583)] = { + [sym_expression] = STATE(4709), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1584)] = { + [sym_expression] = STATE(5339), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LPAREN2] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(6403), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), + }, + [STATE(1585)] = { + [sym_expression] = STATE(5341), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LPAREN2] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), + }, + [STATE(1586)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1587)] = { + [sym_expression] = STATE(6327), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -268766,107 +269612,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1671)] = { - [sym_expression] = STATE(5699), - [sym__string] = STATE(6270), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(4577), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(4577), - [sym_call_expression] = STATE(4577), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(4577), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(4577), - [sym_char_literal] = STATE(6270), - [sym_concatenated_string] = STATE(6270), - [sym_string_literal] = STATE(4919), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4919), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(4577), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(4577), - [sym_identifier] = ACTIONS(5346), - [anon_sym_LPAREN2] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(4123), - [anon_sym_COLON_COLON] = ACTIONS(4125), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3331), - [anon_sym_compl] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3351), + [STATE(1588)] = { + [sym_expression] = STATE(6328), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(6405), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -268874,1830 +269720,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3355), - [anon_sym_L_SQUOTE] = ACTIONS(3357), - [anon_sym_u_SQUOTE] = ACTIONS(3357), - [anon_sym_U_SQUOTE] = ACTIONS(3357), - [anon_sym_u8_SQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3365), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_co_await] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_requires] = ACTIONS(3375), - [anon_sym_CARET_CARET] = ACTIONS(3377), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1672)] = { - [sym_expression] = STATE(5630), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1673)] = { - [sym_expression] = STATE(5631), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1674)] = { - [sym_expression] = STATE(5634), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1675)] = { - [sym_expression] = STATE(5636), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1676)] = { - [sym_expression] = STATE(5637), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1677)] = { - [sym_expression] = STATE(5638), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1678)] = { - [sym_expression] = STATE(3689), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1679)] = { - [sym_expression] = STATE(5639), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1680)] = { - [sym_expression] = STATE(3666), - [sym__string] = STATE(5012), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(5012), - [sym_concatenated_string] = STATE(5012), - [sym_string_literal] = STATE(3609), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3609), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2503), - [anon_sym_compl] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_sizeof] = ACTIONS(2511), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2515), - [anon_sym_u_SQUOTE] = ACTIONS(2515), - [anon_sym_U_SQUOTE] = ACTIONS(2515), - [anon_sym_u8_SQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_R_DQUOTE] = ACTIONS(2521), - [anon_sym_LR_DQUOTE] = ACTIONS(2521), - [anon_sym_uR_DQUOTE] = ACTIONS(2521), - [anon_sym_UR_DQUOTE] = ACTIONS(2521), - [anon_sym_u8R_DQUOTE] = ACTIONS(2521), - [anon_sym_co_await] = ACTIONS(2523), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2525), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1681)] = { - [sym_expression] = STATE(5640), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1682)] = { - [sym_expression] = STATE(5641), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1683)] = { - [sym_expression] = STATE(5643), - [sym__string] = STATE(5912), - [sym_conditional_expression] = STATE(6001), - [sym_assignment_expression] = STATE(6001), - [sym_pointer_expression] = STATE(5613), - [sym_unary_expression] = STATE(6001), - [sym_binary_expression] = STATE(6001), - [sym_update_expression] = STATE(6001), - [sym_cast_expression] = STATE(6001), - [sym_sizeof_expression] = STATE(6001), - [sym_alignof_expression] = STATE(6001), - [sym_offsetof_expression] = STATE(6001), - [sym_generic_expression] = STATE(6001), - [sym_subscript_expression] = STATE(5613), - [sym_call_expression] = STATE(5613), - [sym_gnu_asm_expression] = STATE(6001), - [sym_extension_expression] = STATE(6001), - [sym_field_expression] = STATE(5613), - [sym_compound_literal_expression] = STATE(6001), - [sym_parenthesized_expression] = STATE(5613), - [sym_char_literal] = STATE(5912), - [sym_concatenated_string] = STATE(5912), - [sym_string_literal] = STATE(4037), - [sym_null] = STATE(6001), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10294), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(6001), - [sym_raw_string_literal] = STATE(4037), - [sym_co_await_expression] = STATE(6001), - [sym_new_expression] = STATE(6001), - [sym_delete_expression] = STATE(6001), - [sym_requires_clause] = STATE(6001), - [sym_requires_expression] = STATE(6001), - [sym_lambda_expression] = STATE(6001), - [sym_lambda_capture_specifier] = STATE(7894), - [sym_fold_expression] = STATE(6001), - [sym_parameter_pack_expansion] = STATE(6001), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5613), - [sym_qualified_type_identifier] = STATE(10294), - [sym_reflect_expression] = STATE(6001), - [sym_splice_specifier] = STATE(5545), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9235), - [sym_splice_expression] = STATE(5915), - [sym_user_defined_literal] = STATE(5613), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2736), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2740), - [anon_sym_not] = ACTIONS(1974), - [anon_sym_compl] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1986), - [anon_sym___alignof__] = ACTIONS(1988), - [anon_sym___alignof] = ACTIONS(1988), - [anon_sym__alignof] = ACTIONS(1988), - [anon_sym_alignof] = ACTIONS(1988), - [anon_sym__Alignof] = ACTIONS(1988), - [anon_sym_offsetof] = ACTIONS(1990), - [anon_sym__Generic] = ACTIONS(1992), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_asm] = ACTIONS(1996), - [anon_sym___asm__] = ACTIONS(1996), - [anon_sym___asm] = ACTIONS(1996), - [sym_number_literal] = ACTIONS(1998), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2002), - [anon_sym_u_DQUOTE] = ACTIONS(2002), - [anon_sym_U_DQUOTE] = ACTIONS(2002), - [anon_sym_u8_DQUOTE] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), - [anon_sym_NULL] = ACTIONS(2006), - [anon_sym_nullptr] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [anon_sym_R_DQUOTE] = ACTIONS(2012), - [anon_sym_LR_DQUOTE] = ACTIONS(2012), - [anon_sym_uR_DQUOTE] = ACTIONS(2012), - [anon_sym_UR_DQUOTE] = ACTIONS(2012), - [anon_sym_u8R_DQUOTE] = ACTIONS(2012), - [anon_sym_co_await] = ACTIONS(2014), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_requires] = ACTIONS(2018), - [anon_sym_CARET_CARET] = ACTIONS(2020), - [anon_sym_LBRACK_COLON] = ACTIONS(2744), - [sym_this] = ACTIONS(2004), - }, - [STATE(1684)] = { - [sym_expression] = STATE(3689), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1685)] = { - [sym_expression] = STATE(6663), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), - }, - [STATE(1686)] = { - [sym_expression] = STATE(3666), - [sym__string] = STATE(4469), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4469), - [sym_concatenated_string] = STATE(4469), - [sym_string_literal] = STATE(3166), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3166), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(2032), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_compl] = ACTIONS(2028), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_sizeof] = ACTIONS(2040), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2054), - [anon_sym_u_SQUOTE] = ACTIONS(2054), - [anon_sym_U_SQUOTE] = ACTIONS(2054), - [anon_sym_u8_SQUOTE] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2054), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_co_await] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2076), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1687)] = { - [sym_expression] = STATE(6814), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(1589)] = { + [sym_expression] = STATE(5502), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LPAREN2] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(6407), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), }, - [STATE(1688)] = { - [sym_expression] = STATE(6862), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1590)] = { + [sym_expression] = STATE(6480), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -270710,7 +269936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -270730,8 +269956,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -270742,75 +269968,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1689)] = { - [sym_expression] = STATE(5750), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), + [STATE(1591)] = { + [sym_expression] = STATE(5527), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LPAREN2] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), + }, + [STATE(1592)] = { + [sym_expression] = STATE(5837), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -270818,7 +270152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -270838,87 +270172,303 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1690)] = { - [sym_expression] = STATE(6985), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1593)] = { + [sym_expression] = STATE(5136), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1594)] = { + [sym_expression] = STATE(6828), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1595)] = { + [sym_expression] = STATE(6309), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -270926,107 +270476,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1691)] = { - [sym_expression] = STATE(5699), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), + [STATE(1596)] = { + [sym_expression] = STATE(5764), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -271034,107 +270584,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1692)] = { - [sym_expression] = STATE(6730), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(6075), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), + [STATE(1597)] = { + [sym_expression] = STATE(6307), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -271142,107 +270692,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1693)] = { - [sym_expression] = STATE(7049), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1598)] = { + [sym_expression] = STATE(6333), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -271250,107 +270800,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1694)] = { - [sym_expression] = STATE(5763), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), + [STATE(1599)] = { + [sym_expression] = STATE(6348), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -271358,102 +270908,1182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1695)] = { - [sym_expression] = STATE(6936), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1600)] = { + [sym_expression] = STATE(6364), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1601)] = { + [sym_expression] = STATE(6365), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1602)] = { + [sym_expression] = STATE(6342), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1603)] = { + [sym_expression] = STATE(6347), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1604)] = { + [sym_expression] = STATE(6298), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1605)] = { + [sym_expression] = STATE(5315), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LPAREN2] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), + }, + [STATE(1606)] = { + [sym_expression] = STATE(3815), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1607)] = { + [sym_expression] = STATE(6343), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1608)] = { + [sym_expression] = STATE(4719), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1609)] = { + [sym_expression] = STATE(4726), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1610)] = { + [sym_expression] = STATE(7087), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -271466,7 +272096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -271486,8 +272116,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -271498,183 +272128,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1696)] = { - [sym_expression] = STATE(3665), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1611)] = { + [sym_expression] = STATE(5296), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LPAREN2] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), }, - [STATE(1697)] = { - [sym_expression] = STATE(6728), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), + [STATE(1612)] = { + [sym_expression] = STATE(4631), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1613)] = { + [sym_expression] = STATE(6960), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -271682,7 +272420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -271702,87 +272440,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1698)] = { - [sym_expression] = STATE(6788), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(6077), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), + [STATE(1614)] = { + [sym_expression] = STATE(6519), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -271790,107 +272528,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1699)] = { - [sym_expression] = STATE(6799), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), + [STATE(1615)] = { + [sym_expression] = STATE(4632), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1616)] = { + [sym_expression] = STATE(6370), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -271898,107 +272744,431 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1700)] = { - [sym_expression] = STATE(5774), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), + [STATE(1617)] = { + [sym_expression] = STATE(4633), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1618)] = { + [sym_expression] = STATE(4634), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1619)] = { + [sym_expression] = STATE(4637), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1620)] = { + [sym_expression] = STATE(6338), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -272006,107 +273176,2375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1701)] = { - [sym_expression] = STATE(6801), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), + [STATE(1621)] = { + [sym_expression] = STATE(5303), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(6409), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1622)] = { + [sym_expression] = STATE(4638), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1623)] = { + [sym_expression] = STATE(5392), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1624)] = { + [sym_expression] = STATE(5930), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1625)] = { + [sym_expression] = STATE(5107), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1626)] = { + [sym_expression] = STATE(5507), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1627)] = { + [sym_expression] = STATE(6918), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(1628)] = { + [sym_expression] = STATE(6908), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1629)] = { + [sym_expression] = STATE(6910), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1630)] = { + [sym_expression] = STATE(6911), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1631)] = { + [sym_expression] = STATE(6912), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1632)] = { + [sym_expression] = STATE(6913), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1633)] = { + [sym_expression] = STATE(6724), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1634)] = { + [sym_expression] = STATE(6915), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1635)] = { + [sym_expression] = STATE(6916), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1636)] = { + [sym_expression] = STATE(6922), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1637)] = { + [sym_expression] = STATE(6923), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1638)] = { + [sym_expression] = STATE(4492), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(6411), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1639)] = { + [sym_expression] = STATE(3794), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1640)] = { + [sym_expression] = STATE(6901), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(1641)] = { + [sym_expression] = STATE(6738), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(1642)] = { + [sym_expression] = STATE(7169), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -272114,7 +275552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -272134,87 +275572,519 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1702)] = { - [sym_expression] = STATE(6802), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), + [STATE(1643)] = { + [sym_expression] = STATE(6839), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(6413), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(1644)] = { + [sym_expression] = STATE(6864), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(1645)] = { + [sym_expression] = STATE(3772), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1646)] = { + [sym_expression] = STATE(5773), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1647)] = { + [sym_expression] = STATE(5812), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -272222,7 +276092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -272242,87 +276112,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1703)] = { - [sym_expression] = STATE(6803), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), + [STATE(1648)] = { + [sym_expression] = STATE(6844), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(6415), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(1649)] = { + [sym_expression] = STATE(5851), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -272330,7 +276308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -272350,87 +276328,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1704)] = { - [sym_expression] = STATE(6807), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), + [STATE(1650)] = { + [sym_expression] = STATE(5367), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1651)] = { + [sym_expression] = STATE(6821), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -272438,7 +276524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -272458,87 +276544,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1705)] = { - [sym_expression] = STATE(6808), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), + [STATE(1652)] = { + [sym_expression] = STATE(6428), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(6417), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -272546,7 +276632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -272566,87 +276652,6351 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, + [STATE(1653)] = { + [sym_expression] = STATE(4845), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(6419), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1654)] = { + [sym_expression] = STATE(5325), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LPAREN2] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), + }, + [STATE(1655)] = { + [sym_expression] = STATE(5516), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LPAREN2] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), + }, + [STATE(1656)] = { + [sym_expression] = STATE(5517), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LPAREN2] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), + }, + [STATE(1657)] = { + [sym_expression] = STATE(5518), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LPAREN2] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), + }, + [STATE(1658)] = { + [sym_expression] = STATE(5519), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LPAREN2] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), + }, + [STATE(1659)] = { + [sym_expression] = STATE(5520), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LPAREN2] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), + }, + [STATE(1660)] = { + [sym_expression] = STATE(5521), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LPAREN2] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), + }, + [STATE(1661)] = { + [sym_expression] = STATE(5522), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LPAREN2] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), + }, + [STATE(1662)] = { + [sym_expression] = STATE(5524), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LPAREN2] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), + }, + [STATE(1663)] = { + [sym_expression] = STATE(5525), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LPAREN2] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), + }, + [STATE(1664)] = { + [sym_expression] = STATE(5526), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LPAREN2] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), + }, + [STATE(1665)] = { + [sym_expression] = STATE(5769), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1666)] = { + [sym_expression] = STATE(5792), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1667)] = { + [sym_expression] = STATE(4788), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1668)] = { + [sym_expression] = STATE(5076), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(6421), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1669)] = { + [sym_expression] = STATE(5886), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1670)] = { + [sym_expression] = STATE(3772), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1671)] = { + [sym_expression] = STATE(5914), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1672)] = { + [sym_expression] = STATE(5737), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1673)] = { + [sym_expression] = STATE(5748), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1674)] = { + [sym_expression] = STATE(5757), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1675)] = { + [sym_expression] = STATE(5765), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1676)] = { + [sym_expression] = STATE(5806), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1677)] = { + [sym_expression] = STATE(5815), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1678)] = { + [sym_expression] = STATE(5824), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1679)] = { + [sym_expression] = STATE(5828), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1680)] = { + [sym_expression] = STATE(4783), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1681)] = { + [sym_expression] = STATE(6734), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(1682)] = { + [sym_expression] = STATE(4875), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1683)] = { + [sym_expression] = STATE(6776), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(1684)] = { + [sym_expression] = STATE(6777), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(1685)] = { + [sym_expression] = STATE(5447), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1686)] = { + [sym_expression] = STATE(5373), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1687)] = { + [sym_expression] = STATE(5375), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1688)] = { + [sym_expression] = STATE(5376), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1689)] = { + [sym_expression] = STATE(5378), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1690)] = { + [sym_expression] = STATE(5379), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1691)] = { + [sym_expression] = STATE(5380), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1692)] = { + [sym_expression] = STATE(5381), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1693)] = { + [sym_expression] = STATE(5382), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1694)] = { + [sym_expression] = STATE(5383), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1695)] = { + [sym_expression] = STATE(5386), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1696)] = { + [sym_expression] = STATE(6771), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1697)] = { + [sym_expression] = STATE(6782), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1698)] = { + [sym_expression] = STATE(4996), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1699)] = { + [sym_expression] = STATE(4777), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1700)] = { + [sym_expression] = STATE(3815), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1701)] = { + [sym_expression] = STATE(4794), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1702)] = { + [sym_expression] = STATE(4809), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1703)] = { + [sym_expression] = STATE(4817), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1704)] = { + [sym_expression] = STATE(4819), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1705)] = { + [sym_expression] = STATE(4828), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, [STATE(1706)] = { - [sym_expression] = STATE(6810), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), + [sym_expression] = STATE(4839), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1707)] = { + [sym_expression] = STATE(5028), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1708)] = { + [sym_expression] = STATE(4787), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1709)] = { + [sym_expression] = STATE(3782), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1710)] = { + [sym_expression] = STATE(3791), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1711)] = { + [sym_expression] = STATE(6756), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -272654,7 +283004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -272674,87 +283024,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1707)] = { - [sym_expression] = STATE(6812), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), + [STATE(1712)] = { + [sym_expression] = STATE(7085), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -272762,7 +283112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -272782,87 +283132,2139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1708)] = { + [STATE(1713)] = { + [sym_expression] = STATE(6889), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(1714)] = { [sym_expression] = STATE(6813), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1715)] = { + [sym_expression] = STATE(4491), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1716)] = { + [sym_expression] = STATE(4498), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1717)] = { + [sym_expression] = STATE(3815), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1718)] = { + [sym_expression] = STATE(4402), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1719)] = { + [sym_expression] = STATE(4403), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1720)] = { + [sym_expression] = STATE(4404), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1721)] = { + [sym_expression] = STATE(4406), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1722)] = { + [sym_expression] = STATE(4407), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1723)] = { + [sym_expression] = STATE(4411), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1724)] = { + [sym_expression] = STATE(4412), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1725)] = { + [sym_expression] = STATE(4499), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1726)] = { + [sym_expression] = STATE(5323), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LPAREN2] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), + }, + [STATE(1727)] = { + [sym_expression] = STATE(5331), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LPAREN2] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), + }, + [STATE(1728)] = { + [sym_expression] = STATE(5242), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1729)] = { + [sym_expression] = STATE(5270), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(6423), + }, + [STATE(1730)] = { + [sym_expression] = STATE(6909), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(1731)] = { + [sym_expression] = STATE(7156), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1732)] = { + [sym_expression] = STATE(6823), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -272870,7 +285272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -272890,87 +285292,627 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1709)] = { - [sym_expression] = STATE(6617), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), + [STATE(1733)] = { + [sym_expression] = STATE(5442), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1734)] = { + [sym_expression] = STATE(5508), + [sym__string] = STATE(5665), + [sym_conditional_expression] = STATE(5782), + [sym_assignment_expression] = STATE(5782), + [sym_pointer_expression] = STATE(5823), + [sym_unary_expression] = STATE(5782), + [sym_binary_expression] = STATE(5782), + [sym_update_expression] = STATE(5782), + [sym_cast_expression] = STATE(5782), + [sym_sizeof_expression] = STATE(5782), + [sym_alignof_expression] = STATE(5782), + [sym_offsetof_expression] = STATE(5782), + [sym_generic_expression] = STATE(5782), + [sym_subscript_expression] = STATE(5823), + [sym_call_expression] = STATE(5823), + [sym_gnu_asm_expression] = STATE(5782), + [sym_extension_expression] = STATE(5782), + [sym_field_expression] = STATE(5823), + [sym_compound_literal_expression] = STATE(5782), + [sym_parenthesized_expression] = STATE(5823), + [sym_char_literal] = STATE(5665), + [sym_concatenated_string] = STATE(5665), + [sym_string_literal] = STATE(3893), + [sym_null] = STATE(5782), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10308), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5782), + [sym_raw_string_literal] = STATE(3893), + [sym_co_await_expression] = STATE(5782), + [sym_new_expression] = STATE(5782), + [sym_delete_expression] = STATE(5782), + [sym_requires_clause] = STATE(5782), + [sym_requires_expression] = STATE(5782), + [sym_lambda_expression] = STATE(5782), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(5782), + [sym_parameter_pack_expansion] = STATE(5782), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5823), + [sym_qualified_type_identifier] = STATE(10308), + [sym_reflect_expression] = STATE(5782), + [sym_splice_specifier] = STATE(5134), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9378), + [sym_splice_expression] = STATE(5669), + [sym_user_defined_literal] = STATE(5823), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN2] = ACTIONS(3825), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3054), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3845), + [anon_sym_PLUS_PLUS] = ACTIONS(3845), + [anon_sym_sizeof] = ACTIONS(3056), + [anon_sym___alignof__] = ACTIONS(3058), + [anon_sym___alignof] = ACTIONS(3058), + [anon_sym__alignof] = ACTIONS(3058), + [anon_sym_alignof] = ACTIONS(3058), + [anon_sym__Alignof] = ACTIONS(3058), + [anon_sym_offsetof] = ACTIONS(3060), + [anon_sym__Generic] = ACTIONS(3062), + [anon_sym_typename] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym___asm__] = ACTIONS(3066), + [anon_sym___asm] = ACTIONS(3066), + [sym_number_literal] = ACTIONS(3068), + [anon_sym_L_SQUOTE] = ACTIONS(3070), + [anon_sym_u_SQUOTE] = ACTIONS(3070), + [anon_sym_U_SQUOTE] = ACTIONS(3070), + [anon_sym_u8_SQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_L_DQUOTE] = ACTIONS(3072), + [anon_sym_u_DQUOTE] = ACTIONS(3072), + [anon_sym_U_DQUOTE] = ACTIONS(3072), + [anon_sym_u8_DQUOTE] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [anon_sym_NULL] = ACTIONS(3076), + [anon_sym_nullptr] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3078), + [anon_sym_delete] = ACTIONS(3080), + [anon_sym_R_DQUOTE] = ACTIONS(3082), + [anon_sym_LR_DQUOTE] = ACTIONS(3082), + [anon_sym_uR_DQUOTE] = ACTIONS(3082), + [anon_sym_UR_DQUOTE] = ACTIONS(3082), + [anon_sym_u8R_DQUOTE] = ACTIONS(3082), + [anon_sym_co_await] = ACTIONS(3084), + [anon_sym_new] = ACTIONS(3086), + [anon_sym_requires] = ACTIONS(3088), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(3092), + [sym_this] = ACTIONS(3074), + }, + [STATE(1735)] = { + [sym_expression] = STATE(5093), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1736)] = { + [sym_expression] = STATE(5093), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(6425), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1737)] = { + [sym_expression] = STATE(4687), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(6427), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1738)] = { + [sym_expression] = STATE(5837), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -272978,107 +285920,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1710)] = { - [sym_expression] = STATE(6923), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1739)] = { + [sym_expression] = STATE(5851), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -273086,102 +286028,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1711)] = { - [sym_expression] = STATE(7047), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1740)] = { + [sym_expression] = STATE(7091), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -273194,7 +286136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -273214,8 +286156,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -273226,183 +286168,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1712)] = { - [sym_expression] = STATE(7055), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(1741)] = { + [sym_expression] = STATE(3794), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [STATE(1713)] = { - [sym_expression] = STATE(6621), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), + [STATE(1742)] = { + [sym_expression] = STATE(7115), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -273410,7 +286352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -273430,82 +286372,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1714)] = { - [sym_expression] = STATE(6851), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1743)] = { + [sym_expression] = STATE(5171), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1744)] = { + [sym_expression] = STATE(7181), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -273518,7 +286568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -273538,8 +286588,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -273550,75 +286600,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1715)] = { - [sym_expression] = STATE(6625), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5676), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5676), - [sym_call_expression] = STATE(5676), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5676), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5676), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10188), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(5676), - [sym_qualified_type_identifier] = STATE(10188), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9186), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5676), - [sym_identifier] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(4532), - [anon_sym_COLON_COLON] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_sizeof] = ACTIONS(3574), + [STATE(1745)] = { + [sym_expression] = STATE(6517), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(6180), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -273626,102 +286676,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4540), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3578), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3582), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3584), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1716)] = { - [sym_expression] = STATE(6463), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1746)] = { + [sym_expression] = STATE(6502), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -273734,7 +286784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -273754,8 +286804,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -273766,1911 +286816,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1717)] = { - [sym_expression] = STATE(5306), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1718)] = { - [sym_expression] = STATE(5311), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1747)] = { + [sym_expression] = STATE(5837), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(1719)] = { - [sym_expression] = STATE(3685), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1720)] = { - [sym_expression] = STATE(5312), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1721)] = { - [sym_expression] = STATE(5313), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1722)] = { - [sym_expression] = STATE(5314), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1723)] = { - [sym_expression] = STATE(5315), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1724)] = { - [sym_expression] = STATE(5316), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1725)] = { - [sym_expression] = STATE(5317), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1726)] = { - [sym_expression] = STATE(5318), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1727)] = { - [sym_expression] = STATE(5319), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1728)] = { - [sym_expression] = STATE(5307), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK] = ACTIONS(6079), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1729)] = { - [sym_expression] = STATE(3695), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1730)] = { - [sym_expression] = STATE(5309), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK] = ACTIONS(6081), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1731)] = { - [sym_expression] = STATE(5320), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1732)] = { - [sym_expression] = STATE(5323), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1748)] = { + [sym_expression] = STATE(5851), + [sym__string] = STATE(6402), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(4733), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(4733), + [sym_call_expression] = STATE(4733), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(4733), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(4733), + [sym_char_literal] = STATE(6402), + [sym_concatenated_string] = STATE(6402), + [sym_string_literal] = STATE(4844), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4844), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(4733), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(4733), + [sym_identifier] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(3859), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(4672), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3859), + [anon_sym_compl] = ACTIONS(3859), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3881), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3885), + [anon_sym_L_SQUOTE] = ACTIONS(3887), + [anon_sym_u_SQUOTE] = ACTIONS(3887), + [anon_sym_U_SQUOTE] = ACTIONS(3887), + [anon_sym_u8_SQUOTE] = ACTIONS(3887), + [anon_sym_SQUOTE] = ACTIONS(3887), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3897), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_co_await] = ACTIONS(3901), + [anon_sym_new] = ACTIONS(3903), + [anon_sym_requires] = ACTIONS(3905), + [anon_sym_CARET_CARET] = ACTIONS(3907), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(1733)] = { - [sym_expression] = STATE(5325), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7856), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2650), - [anon_sym_compl] = ACTIONS(2650), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_sizeof] = ACTIONS(2658), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2660), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2664), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), + [STATE(1749)] = { + [sym_expression] = STATE(5812), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(1734)] = { - [sym_expression] = STATE(6824), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1750)] = { + [sym_expression] = STATE(7176), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -275678,7 +287216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -275698,82 +287236,514 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1735)] = { - [sym_expression] = STATE(6835), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1751)] = { + [sym_expression] = STATE(3782), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1752)] = { + [sym_expression] = STATE(3791), + [sym__string] = STATE(5130), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(5130), + [sym_concatenated_string] = STATE(5130), + [sym_string_literal] = STATE(3741), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3741), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2902), + [anon_sym_compl] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(3815), + [anon_sym_sizeof] = ACTIONS(2910), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2912), + [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(2916), + [anon_sym_u_DQUOTE] = ACTIONS(2916), + [anon_sym_U_DQUOTE] = ACTIONS(2916), + [anon_sym_u8_DQUOTE] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_R_DQUOTE] = ACTIONS(2920), + [anon_sym_LR_DQUOTE] = ACTIONS(2920), + [anon_sym_uR_DQUOTE] = ACTIONS(2920), + [anon_sym_UR_DQUOTE] = ACTIONS(2920), + [anon_sym_u8R_DQUOTE] = ACTIONS(2920), + [anon_sym_co_await] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1753)] = { + [sym_expression] = STATE(3782), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1754)] = { + [sym_expression] = STATE(3791), + [sym__string] = STATE(4618), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4618), + [sym_concatenated_string] = STATE(4618), + [sym_string_literal] = STATE(3331), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3331), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3980), + [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_sizeof] = ACTIONS(2400), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2412), + [anon_sym_L_SQUOTE] = ACTIONS(2414), + [anon_sym_u_SQUOTE] = ACTIONS(2414), + [anon_sym_U_SQUOTE] = ACTIONS(2414), + [anon_sym_u8_SQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_co_await] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2432), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1755)] = { + [sym_expression] = STATE(6436), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -275786,7 +287756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -275806,8 +287776,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -275818,70 +287788,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1736)] = { - [sym_expression] = STATE(6840), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1756)] = { + [sym_expression] = STATE(6578), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -275894,7 +287864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -275914,8 +287884,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -275926,70 +287896,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1737)] = { - [sym_expression] = STATE(6901), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1757)] = { + [sym_expression] = STATE(6875), + [sym__string] = STATE(7019), + [sym_conditional_expression] = STATE(7397), + [sym_assignment_expression] = STATE(7397), + [sym_pointer_expression] = STATE(5763), + [sym_unary_expression] = STATE(7397), + [sym_binary_expression] = STATE(7397), + [sym_update_expression] = STATE(7397), + [sym_cast_expression] = STATE(7397), + [sym_sizeof_expression] = STATE(7397), + [sym_alignof_expression] = STATE(7397), + [sym_offsetof_expression] = STATE(7397), + [sym_generic_expression] = STATE(7397), + [sym_subscript_expression] = STATE(5763), + [sym_call_expression] = STATE(5763), + [sym_gnu_asm_expression] = STATE(7397), + [sym_extension_expression] = STATE(7397), + [sym_field_expression] = STATE(5763), + [sym_compound_literal_expression] = STATE(7397), + [sym_parenthesized_expression] = STATE(5763), + [sym_char_literal] = STATE(7019), + [sym_concatenated_string] = STATE(7019), + [sym_string_literal] = STATE(5939), + [sym_null] = STATE(7397), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7397), + [sym_raw_string_literal] = STATE(5939), + [sym_co_await_expression] = STATE(7397), + [sym_new_expression] = STATE(7397), + [sym_delete_expression] = STATE(7397), + [sym_requires_clause] = STATE(7397), + [sym_requires_expression] = STATE(7397), + [sym_lambda_expression] = STATE(7397), + [sym_lambda_capture_specifier] = STATE(8047), + [sym_fold_expression] = STATE(7397), + [sym_parameter_pack_expansion] = STATE(7397), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5763), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(7397), + [sym_splice_specifier] = STATE(6714), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9388), + [sym_splice_expression] = STATE(7022), + [sym_user_defined_literal] = STATE(5763), + [sym_identifier] = ACTIONS(4906), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4912), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_sizeof] = ACTIONS(3214), + [anon_sym___alignof__] = ACTIONS(3216), + [anon_sym___alignof] = ACTIONS(3216), + [anon_sym__alignof] = ACTIONS(3216), + [anon_sym_alignof] = ACTIONS(3216), + [anon_sym__Alignof] = ACTIONS(3216), + [anon_sym_offsetof] = ACTIONS(3218), + [anon_sym__Generic] = ACTIONS(3220), + [anon_sym_typename] = ACTIONS(4914), + [anon_sym_asm] = ACTIONS(3224), + [anon_sym___asm__] = ACTIONS(3224), + [anon_sym___asm] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [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(3230), + [anon_sym_u_DQUOTE] = ACTIONS(3230), + [anon_sym_U_DQUOTE] = ACTIONS(3230), + [anon_sym_u8_DQUOTE] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3240), + [anon_sym_delete] = ACTIONS(3244), + [anon_sym_R_DQUOTE] = ACTIONS(3246), + [anon_sym_LR_DQUOTE] = ACTIONS(3246), + [anon_sym_uR_DQUOTE] = ACTIONS(3246), + [anon_sym_UR_DQUOTE] = ACTIONS(3246), + [anon_sym_u8R_DQUOTE] = ACTIONS(3246), + [anon_sym_co_await] = ACTIONS(3248), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_requires] = ACTIONS(3252), + [anon_sym_CARET_CARET] = ACTIONS(3254), + [anon_sym_LBRACK_COLON] = ACTIONS(3256), + [sym_this] = ACTIONS(3232), + }, + [STATE(1758)] = { + [sym_expression] = STATE(6974), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -276002,7 +288080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -276022,8 +288100,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -276034,75 +288112,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1738)] = { - [sym_expression] = STATE(6928), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1759)] = { + [sym_expression] = STATE(5268), + [sym__string] = STATE(5670), + [sym_conditional_expression] = STATE(5929), + [sym_assignment_expression] = STATE(5929), + [sym_pointer_expression] = STATE(5826), + [sym_unary_expression] = STATE(5929), + [sym_binary_expression] = STATE(5929), + [sym_update_expression] = STATE(5929), + [sym_cast_expression] = STATE(5929), + [sym_sizeof_expression] = STATE(5929), + [sym_alignof_expression] = STATE(5929), + [sym_offsetof_expression] = STATE(5929), + [sym_generic_expression] = STATE(5929), + [sym_subscript_expression] = STATE(5826), + [sym_call_expression] = STATE(5826), + [sym_gnu_asm_expression] = STATE(5929), + [sym_extension_expression] = STATE(5929), + [sym_field_expression] = STATE(5826), + [sym_compound_literal_expression] = STATE(5929), + [sym_parenthesized_expression] = STATE(5826), + [sym_char_literal] = STATE(5670), + [sym_concatenated_string] = STATE(5670), + [sym_string_literal] = STATE(3843), + [sym_null] = STATE(5929), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10468), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5929), + [sym_raw_string_literal] = STATE(3843), + [sym_co_await_expression] = STATE(5929), + [sym_new_expression] = STATE(5929), + [sym_delete_expression] = STATE(5929), + [sym_requires_clause] = STATE(5929), + [sym_requires_expression] = STATE(5929), + [sym_lambda_expression] = STATE(5929), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(5929), + [sym_parameter_pack_expansion] = STATE(5929), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7928), + [sym_qualified_identifier] = STATE(5826), + [sym_qualified_type_identifier] = STATE(10468), + [sym_reflect_expression] = STATE(5929), + [sym_splice_specifier] = STATE(5064), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9397), + [sym_splice_expression] = STATE(5540), + [sym_user_defined_literal] = STATE(5826), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LPAREN2] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym___extension__] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2960), + [anon_sym_compl] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(2972), + [anon_sym___alignof__] = ACTIONS(2974), + [anon_sym___alignof] = ACTIONS(2974), + [anon_sym__alignof] = ACTIONS(2974), + [anon_sym_alignof] = ACTIONS(2974), + [anon_sym__Alignof] = ACTIONS(2974), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2978), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym___asm__] = ACTIONS(2982), + [anon_sym___asm] = ACTIONS(2982), + [sym_number_literal] = ACTIONS(2984), + [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(2988), + [anon_sym_u_DQUOTE] = ACTIONS(2988), + [anon_sym_U_DQUOTE] = ACTIONS(2988), + [anon_sym_u8_DQUOTE] = ACTIONS(2988), + [anon_sym_DQUOTE] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2994), + [anon_sym_delete] = 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(3000), + [anon_sym_new] = ACTIONS(3002), + [anon_sym_requires] = ACTIONS(3004), + [anon_sym_CARET_CARET] = ACTIONS(3006), + [anon_sym_LBRACK_COLON] = ACTIONS(3008), + [sym_this] = ACTIONS(2990), + }, + [STATE(1760)] = { + [sym_expression] = STATE(3772), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1761)] = { + [sym_expression] = STATE(5837), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -276110,7 +288404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(4926), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -276130,195 +288424,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1739)] = { - [sym_expression] = STATE(6930), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1740)] = { - [sym_expression] = STATE(6937), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1762)] = { + [sym_expression] = STATE(6964), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -276326,7 +288512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -276346,87 +288532,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1741)] = { - [sym_expression] = STATE(6398), - [sym__string] = STATE(6535), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5428), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5428), - [sym_call_expression] = STATE(5428), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5428), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5428), - [sym_char_literal] = STATE(6535), - [sym_concatenated_string] = STATE(6535), - [sym_string_literal] = STATE(5505), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(5505), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5428), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5428), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym___extension__] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3285), - [anon_sym_compl] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_sizeof] = ACTIONS(3301), + [STATE(1763)] = { + [sym_expression] = STATE(5851), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -276434,107 +288620,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(4926), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3305), - [anon_sym_L_SQUOTE] = ACTIONS(3307), - [anon_sym_u_SQUOTE] = ACTIONS(3307), - [anon_sym_U_SQUOTE] = ACTIONS(3307), - [anon_sym_u8_SQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_L_DQUOTE] = ACTIONS(3309), - [anon_sym_u_DQUOTE] = ACTIONS(3309), - [anon_sym_U_DQUOTE] = ACTIONS(3309), - [anon_sym_u8_DQUOTE] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_R_DQUOTE] = ACTIONS(3313), - [anon_sym_LR_DQUOTE] = ACTIONS(3313), - [anon_sym_uR_DQUOTE] = ACTIONS(3313), - [anon_sym_UR_DQUOTE] = ACTIONS(3313), - [anon_sym_u8R_DQUOTE] = ACTIONS(3313), - [anon_sym_co_await] = ACTIONS(3315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1764)] = { + [sym_expression] = STATE(6516), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3317), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1742)] = { - [sym_expression] = STATE(6584), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1765)] = { + [sym_expression] = STATE(6846), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(6429), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -276542,7 +288836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(4926), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -276562,82 +288856,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1743)] = { - [sym_expression] = STATE(6826), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1766)] = { + [sym_expression] = STATE(6997), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -276650,7 +288944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -276670,8 +288964,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -276682,75 +288976,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1744)] = { - [sym_expression] = STATE(7064), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1767)] = { + [sym_expression] = STATE(5812), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -276758,7 +289052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(4926), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -276778,82 +289072,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1745)] = { - [sym_expression] = STATE(7083), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1768)] = { + [sym_expression] = STATE(7006), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -276866,7 +289160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -276886,8 +289180,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -276898,75 +289192,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1746)] = { - [sym_expression] = STATE(7072), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1769)] = { + [sym_expression] = STATE(3772), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1770)] = { + [sym_expression] = STATE(6845), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -276974,7 +289376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(4926), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -276994,87 +289396,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1747)] = { - [sym_expression] = STATE(7023), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1771)] = { + [sym_expression] = STATE(6781), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(6431), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -277082,7 +289484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(4926), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -277102,87 +289504,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1748)] = { - [sym_expression] = STATE(7007), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1772)] = { + [sym_expression] = STATE(6785), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -277190,7 +289592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(4926), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -277210,195 +289612,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1749)] = { - [sym_expression] = STATE(7014), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1750)] = { - [sym_expression] = STATE(7022), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1773)] = { + [sym_expression] = STATE(5764), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -277406,7 +289700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(4926), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -277426,87 +289720,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1751)] = { - [sym_expression] = STATE(6563), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1774)] = { + [sym_expression] = STATE(6786), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -277514,7 +289808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(4926), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -277534,87 +289828,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1752)] = { - [sym_expression] = STATE(6823), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1775)] = { + [sym_expression] = STATE(6787), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -277622,7 +289916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(4926), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -277642,87 +289936,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1753)] = { - [sym_expression] = STATE(6889), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1776)] = { + [sym_expression] = STATE(6788), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -277730,7 +290024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(4926), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -277750,87 +290044,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1754)] = { - [sym_expression] = STATE(6907), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1777)] = { + [sym_expression] = STATE(6789), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -277838,7 +290132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(4926), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -277858,87 +290152,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1755)] = { - [sym_expression] = STATE(6878), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1778)] = { + [sym_expression] = STATE(6790), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -277946,7 +290240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(4926), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -277966,87 +290260,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1756)] = { - [sym_expression] = STATE(6954), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1779)] = { + [sym_expression] = STATE(6791), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -278054,7 +290348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(4926), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -278074,195 +290368,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1757)] = { - [sym_expression] = STATE(6955), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1758)] = { - [sym_expression] = STATE(6961), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1780)] = { + [sym_expression] = STATE(6792), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -278270,7 +290456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(4926), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -278290,87 +290476,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1759)] = { - [sym_expression] = STATE(6537), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1781)] = { + [sym_expression] = STATE(6793), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -278378,7 +290564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(4926), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -278398,87 +290584,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1782)] = { + [sym_expression] = STATE(6503), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(6433), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1760)] = { - [sym_expression] = STATE(6861), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1783)] = { + [sym_expression] = STATE(6795), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -278486,7 +290780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(4926), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -278506,82 +290800,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1761)] = { - [sym_expression] = STATE(6897), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1784)] = { + [sym_expression] = STATE(7159), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -278594,7 +290888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -278614,8 +290908,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -278626,70 +290920,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1762)] = { - [sym_expression] = STATE(6932), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1785)] = { + [sym_expression] = STATE(6934), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -278702,7 +290996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -278722,8 +291016,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -278734,178 +291028,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1763)] = { - [sym_expression] = STATE(6933), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(1786)] = { + [sym_expression] = STATE(6935), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), }, - [STATE(1764)] = { - [sym_expression] = STATE(6972), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1787)] = { + [sym_expression] = STATE(6797), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4926), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1788)] = { + [sym_expression] = STATE(6941), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -278918,7 +291320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -278938,8 +291340,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -278950,70 +291352,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1765)] = { - [sym_expression] = STATE(6592), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1789)] = { + [sym_expression] = STATE(6431), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -279026,7 +291428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -279046,8 +291448,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -279058,70 +291460,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1766)] = { - [sym_expression] = STATE(7013), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1790)] = { + [sym_expression] = STATE(5764), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -279134,7 +291536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -279154,8 +291556,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -279166,70 +291568,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1767)] = { - [sym_expression] = STATE(6962), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1791)] = { + [sym_expression] = STATE(6799), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5768), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5768), + [sym_call_expression] = STATE(5768), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5768), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5768), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10422), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(5768), + [sym_qualified_type_identifier] = STATE(10422), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9312), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5768), + [sym_identifier] = ACTIONS(4916), + [anon_sym_LPAREN2] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(4918), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4924), + [anon_sym_not] = ACTIONS(4222), + [anon_sym_compl] = ACTIONS(4222), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_sizeof] = ACTIONS(4234), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4926), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4238), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(4240), + [anon_sym_new] = ACTIONS(4242), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4244), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1792)] = { + [sym_expression] = STATE(6805), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1793)] = { + [sym_expression] = STATE(6585), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -279242,7 +291860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -279262,8 +291880,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -279274,70 +291892,1474 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1768)] = { - [sym_expression] = STATE(6864), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1794)] = { + [sym_expression] = STATE(5393), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1795)] = { + [sym_expression] = STATE(5400), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1796)] = { + [sym_expression] = STATE(3815), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1797)] = { + [sym_expression] = STATE(5401), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1798)] = { + [sym_expression] = STATE(5402), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1799)] = { + [sym_expression] = STATE(5403), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1800)] = { + [sym_expression] = STATE(5404), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1801)] = { + [sym_expression] = STATE(5405), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1802)] = { + [sym_expression] = STATE(5406), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1803)] = { + [sym_expression] = STATE(5407), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1804)] = { + [sym_expression] = STATE(5408), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1805)] = { + [sym_expression] = STATE(5394), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(6435), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1806)] = { + [sym_expression] = STATE(3794), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1807)] = { + [sym_expression] = STATE(6779), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -279350,7 +293372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -279370,8 +293392,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -279382,178 +293404,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1769)] = { - [sym_expression] = STATE(6898), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(1808)] = { + [sym_expression] = STATE(5397), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(6437), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [STATE(1770)] = { - [sym_expression] = STATE(6918), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1809)] = { + [sym_expression] = STATE(5410), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1810)] = { + [sym_expression] = STATE(6437), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -279566,7 +293696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -279586,8 +293716,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -279598,70 +293728,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1771)] = { - [sym_expression] = STATE(6465), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1811)] = { + [sym_expression] = STATE(6780), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -279674,7 +293804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -279694,8 +293824,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -279706,70 +293836,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1772)] = { - [sym_expression] = STATE(6827), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1812)] = { + [sym_expression] = STATE(5412), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1813)] = { + [sym_expression] = STATE(6432), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -279782,7 +294020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -279802,8 +294040,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -279814,178 +294052,394 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1773)] = { - [sym_expression] = STATE(6968), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), + [STATE(1814)] = { + [sym_expression] = STATE(5119), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), }, - [STATE(1774)] = { - [sym_expression] = STATE(6480), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1815)] = { + [sym_expression] = STATE(5533), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7972), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4250), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3010), + [anon_sym_PLUS] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym___extension__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3010), + [anon_sym_compl] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(4256), + [anon_sym_PLUS_PLUS] = ACTIONS(4256), + [anon_sym_sizeof] = ACTIONS(3018), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3022), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1816)] = { + [sym_expression] = STATE(4742), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(6439), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1817)] = { + [sym_expression] = STATE(7040), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -279998,7 +294452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -280018,8 +294472,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -280030,70 +294484,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1775)] = { - [sym_expression] = STATE(7060), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1818)] = { + [sym_expression] = STATE(6439), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -280106,7 +294560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -280126,8 +294580,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -280138,178 +294592,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1776)] = { - [sym_expression] = STATE(6679), - [sym__string] = STATE(6994), - [sym_conditional_expression] = STATE(7215), - [sym_assignment_expression] = STATE(7215), - [sym_pointer_expression] = STATE(5788), - [sym_unary_expression] = STATE(7215), - [sym_binary_expression] = STATE(7215), - [sym_update_expression] = STATE(7215), - [sym_cast_expression] = STATE(7215), - [sym_sizeof_expression] = STATE(7215), - [sym_alignof_expression] = STATE(7215), - [sym_offsetof_expression] = STATE(7215), - [sym_generic_expression] = STATE(7215), - [sym_subscript_expression] = STATE(5788), - [sym_call_expression] = STATE(5788), - [sym_gnu_asm_expression] = STATE(7215), - [sym_extension_expression] = STATE(7215), - [sym_field_expression] = STATE(5788), - [sym_compound_literal_expression] = STATE(7215), - [sym_parenthesized_expression] = STATE(5788), - [sym_char_literal] = STATE(6994), - [sym_concatenated_string] = STATE(6994), - [sym_string_literal] = STATE(5877), - [sym_null] = STATE(7215), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10478), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7215), - [sym_raw_string_literal] = STATE(5877), - [sym_co_await_expression] = STATE(7215), - [sym_new_expression] = STATE(7215), - [sym_delete_expression] = STATE(7215), - [sym_requires_clause] = STATE(7215), - [sym_requires_expression] = STATE(7215), - [sym_lambda_expression] = STATE(7215), - [sym_lambda_capture_specifier] = STATE(7886), - [sym_fold_expression] = STATE(7215), - [sym_parameter_pack_expansion] = STATE(7215), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7839), - [sym_qualified_identifier] = STATE(5788), - [sym_qualified_type_identifier] = STATE(10478), - [sym_reflect_expression] = STATE(7215), - [sym_splice_specifier] = STATE(6518), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9157), - [sym_splice_expression] = STATE(6996), - [sym_user_defined_literal] = STATE(5788), - [sym_identifier] = ACTIONS(4558), - [anon_sym_LPAREN2] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym___extension__] = ACTIONS(4560), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4564), - [anon_sym_not] = ACTIONS(2811), - [anon_sym_compl] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_sizeof] = ACTIONS(2833), - [anon_sym___alignof__] = ACTIONS(2835), - [anon_sym___alignof] = ACTIONS(2835), - [anon_sym__alignof] = ACTIONS(2835), - [anon_sym_alignof] = ACTIONS(2835), - [anon_sym__Alignof] = ACTIONS(2835), - [anon_sym_offsetof] = ACTIONS(2837), - [anon_sym__Generic] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(4566), - [anon_sym_asm] = ACTIONS(2843), - [anon_sym___asm__] = ACTIONS(2843), - [anon_sym___asm] = ACTIONS(2843), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_L_SQUOTE] = ACTIONS(2847), - [anon_sym_u_SQUOTE] = ACTIONS(2847), - [anon_sym_U_SQUOTE] = ACTIONS(2847), - [anon_sym_u8_SQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_L_DQUOTE] = ACTIONS(2849), - [anon_sym_u_DQUOTE] = ACTIONS(2849), - [anon_sym_U_DQUOTE] = ACTIONS(2849), - [anon_sym_u8_DQUOTE] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_true] = ACTIONS(2851), - [sym_false] = ACTIONS(2851), - [anon_sym_NULL] = ACTIONS(2853), - [anon_sym_nullptr] = ACTIONS(2853), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2859), - [anon_sym_delete] = ACTIONS(2863), - [anon_sym_R_DQUOTE] = ACTIONS(2865), - [anon_sym_LR_DQUOTE] = ACTIONS(2865), - [anon_sym_uR_DQUOTE] = ACTIONS(2865), - [anon_sym_UR_DQUOTE] = ACTIONS(2865), - [anon_sym_u8R_DQUOTE] = ACTIONS(2865), - [anon_sym_co_await] = ACTIONS(2867), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_requires] = ACTIONS(2871), - [anon_sym_CARET_CARET] = ACTIONS(2873), - [anon_sym_LBRACK_COLON] = ACTIONS(2875), - [sym_this] = ACTIONS(2851), + [STATE(1819)] = { + [sym_expression] = STATE(5829), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), }, - [STATE(1777)] = { - [sym_expression] = STATE(6887), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1820)] = { + [sym_expression] = STATE(7090), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -280322,7 +294776,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -280342,8 +294796,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -280354,75 +294808,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1778)] = { - [sym_expression] = STATE(6925), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1821)] = { + [sym_expression] = STATE(6976), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -280430,7 +294884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -280450,82 +294904,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1779)] = { - [sym_expression] = STATE(6950), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1822)] = { + [sym_expression] = STATE(6986), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -280538,7 +294992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -280558,8 +295012,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -280570,70 +295024,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1780)] = { - [sym_expression] = STATE(6963), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1823)] = { + [sym_expression] = STATE(6990), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -280646,7 +295100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -280666,8 +295120,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -280678,70 +295132,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1781)] = { - [sym_expression] = STATE(6978), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1824)] = { + [sym_expression] = STATE(6837), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -280754,7 +295208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -280774,8 +295228,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -280786,70 +295240,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1782)] = { - [sym_expression] = STATE(6991), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1825)] = { + [sym_expression] = STATE(7094), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -280862,7 +295316,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -280882,8 +295336,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -280894,178 +295348,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1783)] = { - [sym_expression] = STATE(5001), - [sym__string] = STATE(5234), - [sym_conditional_expression] = STATE(5492), - [sym_assignment_expression] = STATE(5492), - [sym_pointer_expression] = STATE(5566), - [sym_unary_expression] = STATE(5492), - [sym_binary_expression] = STATE(5492), - [sym_update_expression] = STATE(5492), - [sym_cast_expression] = STATE(5492), - [sym_sizeof_expression] = STATE(5492), - [sym_alignof_expression] = STATE(5492), - [sym_offsetof_expression] = STATE(5492), - [sym_generic_expression] = STATE(5492), - [sym_subscript_expression] = STATE(5566), - [sym_call_expression] = STATE(5566), - [sym_gnu_asm_expression] = STATE(5492), - [sym_extension_expression] = STATE(5492), - [sym_field_expression] = STATE(5566), - [sym_compound_literal_expression] = STATE(5492), - [sym_parenthesized_expression] = STATE(5566), - [sym_char_literal] = STATE(5234), - [sym_concatenated_string] = STATE(5234), - [sym_string_literal] = STATE(3660), - [sym_null] = STATE(5492), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10312), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5492), - [sym_raw_string_literal] = STATE(3660), - [sym_co_await_expression] = STATE(5492), - [sym_new_expression] = STATE(5492), - [sym_delete_expression] = STATE(5492), - [sym_requires_clause] = STATE(5492), - [sym_requires_expression] = STATE(5492), - [sym_lambda_expression] = STATE(5492), - [sym_lambda_capture_specifier] = STATE(7906), - [sym_fold_expression] = STATE(5492), - [sym_parameter_pack_expansion] = STATE(5492), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7867), - [sym_qualified_identifier] = STATE(5566), - [sym_qualified_type_identifier] = STATE(10312), - [sym_reflect_expression] = STATE(5492), - [sym_splice_specifier] = STATE(4921), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9240), - [sym_splice_expression] = STATE(5295), - [sym_user_defined_literal] = STATE(5566), - [sym_identifier] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_not] = ACTIONS(1870), - [anon_sym_compl] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_sizeof] = ACTIONS(1896), - [anon_sym___alignof__] = ACTIONS(1898), - [anon_sym___alignof] = ACTIONS(1898), - [anon_sym__alignof] = ACTIONS(1898), - [anon_sym_alignof] = ACTIONS(1898), - [anon_sym__Alignof] = ACTIONS(1898), - [anon_sym_offsetof] = ACTIONS(1900), - [anon_sym__Generic] = ACTIONS(1902), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_asm] = ACTIONS(1906), - [anon_sym___asm__] = ACTIONS(1906), - [anon_sym___asm] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1910), - [anon_sym_u_SQUOTE] = ACTIONS(1910), - [anon_sym_U_SQUOTE] = ACTIONS(1910), - [anon_sym_u8_SQUOTE] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1922), - [anon_sym_delete] = ACTIONS(1926), - [anon_sym_R_DQUOTE] = ACTIONS(1928), - [anon_sym_LR_DQUOTE] = ACTIONS(1928), - [anon_sym_uR_DQUOTE] = ACTIONS(1928), - [anon_sym_UR_DQUOTE] = ACTIONS(1928), - [anon_sym_u8R_DQUOTE] = ACTIONS(1928), - [anon_sym_co_await] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_requires] = ACTIONS(1934), - [anon_sym_CARET_CARET] = ACTIONS(1936), - [anon_sym_LBRACK_COLON] = ACTIONS(1938), - [sym_this] = ACTIONS(1914), + [STATE(1826)] = { + [sym_expression] = STATE(4739), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2610), + [anon_sym_compl] = ACTIONS(2610), + [anon_sym_DASH_DASH] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_sizeof] = ACTIONS(2618), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [STATE(1784)] = { - [sym_expression] = STATE(6797), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1827)] = { + [sym_expression] = STATE(6440), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -281078,7 +295532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -281098,8 +295552,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -281110,286 +295564,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1785)] = { - [sym_expression] = STATE(5388), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1786)] = { - [sym_expression] = STATE(5390), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1787)] = { - [sym_expression] = STATE(6674), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1828)] = { + [sym_expression] = STATE(7025), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -281402,7 +295640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -281422,8 +295660,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -281434,70 +295672,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1788)] = { - [sym_expression] = STATE(6688), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1829)] = { + [sym_expression] = STATE(7042), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -281510,7 +295748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -281530,8 +295768,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -281542,70 +295780,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1789)] = { - [sym_expression] = STATE(6694), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1830)] = { + [sym_expression] = STATE(7045), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1831)] = { + [sym_expression] = STATE(7049), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -281618,7 +295964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -281638,8 +295984,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -281650,70 +295996,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1790)] = { - [sym_expression] = STATE(6704), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1832)] = { + [sym_expression] = STATE(6433), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -281726,7 +296072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -281746,8 +296092,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -281758,70 +296104,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1791)] = { - [sym_expression] = STATE(6712), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1833)] = { + [sym_expression] = STATE(6572), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -281834,7 +296180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -281854,8 +296200,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -281866,183 +296212,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1792)] = { - [sym_expression] = STATE(5420), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1793)] = { - [sym_expression] = STATE(6775), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1834)] = { + [sym_expression] = STATE(7106), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -282050,7 +296288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -282070,87 +296308,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1794)] = { - [sym_expression] = STATE(6732), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(6083), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1835)] = { + [sym_expression] = STATE(7112), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -282158,7 +296396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -282178,87 +296416,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1795)] = { - [sym_expression] = STATE(6734), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1836)] = { + [sym_expression] = STATE(7114), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -282266,7 +296504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -282286,87 +296524,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1796)] = { - [sym_expression] = STATE(6735), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1837)] = { + [sym_expression] = STATE(6487), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -282374,7 +296612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -282394,87 +296632,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1797)] = { - [sym_expression] = STATE(6736), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1838)] = { + [sym_expression] = STATE(7131), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -282482,7 +296720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -282502,87 +296740,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1798)] = { - [sym_expression] = STATE(6737), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1839)] = { + [sym_expression] = STATE(7140), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -282590,7 +296828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -282610,87 +296848,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1799)] = { - [sym_expression] = STATE(6738), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1840)] = { + [sym_expression] = STATE(7142), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1841)] = { + [sym_expression] = STATE(7146), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -282698,7 +297044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -282718,87 +297064,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1800)] = { - [sym_expression] = STATE(6739), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1842)] = { + [sym_expression] = STATE(6599), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -282806,7 +297152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -282826,87 +297172,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1801)] = { - [sym_expression] = STATE(6740), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1843)] = { + [sym_expression] = STATE(7163), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -282914,7 +297260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -282934,87 +297280,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(3720), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1802)] = { - [sym_expression] = STATE(6741), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1844)] = { + [sym_expression] = STATE(7166), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -283022,7 +297368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -283042,87 +297388,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1803)] = { - [sym_expression] = STATE(6742), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1845)] = { + [sym_expression] = STATE(7167), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -283130,7 +297476,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -283150,87 +297496,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1804)] = { - [sym_expression] = STATE(6743), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1846)] = { + [sym_expression] = STATE(5212), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(6441), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1847)] = { + [sym_expression] = STATE(7180), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -283238,7 +297692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -283258,87 +297712,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1805)] = { - [sym_expression] = STATE(6745), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1848)] = { + [sym_expression] = STATE(7185), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -283346,7 +297800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -283366,87 +297820,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1806)] = { - [sym_expression] = STATE(6749), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1849)] = { + [sym_expression] = STATE(7190), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1850)] = { + [sym_expression] = STATE(7193), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -283454,7 +298016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -283474,87 +298036,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1807)] = { - [sym_expression] = STATE(6752), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1851)] = { + [sym_expression] = STATE(6609), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -283562,7 +298124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -283582,2247 +298144,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1808)] = { - [sym_expression] = STATE(5389), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1809)] = { - [sym_expression] = STATE(5397), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1810)] = { - [sym_expression] = STATE(5398), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1811)] = { - [sym_expression] = STATE(5399), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1812)] = { - [sym_expression] = STATE(5161), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1813)] = { - [sym_expression] = STATE(5400), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1814)] = { - [sym_expression] = STATE(5401), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1815)] = { - [sym_expression] = STATE(5402), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1816)] = { - [sym_expression] = STATE(5403), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1817)] = { - [sym_expression] = STATE(5404), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1818)] = { - [sym_expression] = STATE(5405), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1819)] = { - [sym_expression] = STATE(5392), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(6085), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1820)] = { - [sym_expression] = STATE(5393), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1821)] = { - [sym_expression] = STATE(5395), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(6087), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1822)] = { - [sym_expression] = STATE(5406), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1823)] = { - [sym_expression] = STATE(5410), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1824)] = { - [sym_expression] = STATE(5412), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(2674), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2676), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2680), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1825)] = { - [sym_expression] = STATE(6631), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1826)] = { - [sym_expression] = STATE(3665), - [sym__string] = STATE(4474), - [sym_conditional_expression] = STATE(3745), - [sym_assignment_expression] = STATE(3745), - [sym_pointer_expression] = STATE(3777), - [sym_unary_expression] = STATE(3745), - [sym_binary_expression] = STATE(3745), - [sym_update_expression] = STATE(3745), - [sym_cast_expression] = STATE(3745), - [sym_sizeof_expression] = STATE(3745), - [sym_alignof_expression] = STATE(3745), - [sym_offsetof_expression] = STATE(3745), - [sym_generic_expression] = STATE(3745), - [sym_subscript_expression] = STATE(3777), - [sym_call_expression] = STATE(3777), - [sym_gnu_asm_expression] = STATE(3745), - [sym_extension_expression] = STATE(3745), - [sym_field_expression] = STATE(3777), - [sym_compound_literal_expression] = STATE(3745), - [sym_parenthesized_expression] = STATE(3777), - [sym_char_literal] = STATE(4474), - [sym_concatenated_string] = STATE(4474), - [sym_string_literal] = STATE(3204), - [sym_null] = STATE(3745), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10270), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(3745), - [sym_raw_string_literal] = STATE(3204), - [sym_co_await_expression] = STATE(3745), - [sym_new_expression] = STATE(3745), - [sym_delete_expression] = STATE(3745), - [sym_requires_clause] = STATE(3745), - [sym_requires_expression] = STATE(3745), - [sym_lambda_expression] = STATE(3745), - [sym_lambda_capture_specifier] = STATE(7936), - [sym_fold_expression] = STATE(3745), - [sym_parameter_pack_expansion] = STATE(3745), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(3777), - [sym_qualified_type_identifier] = STATE(10270), - [sym_reflect_expression] = STATE(3745), - [sym_splice_specifier] = STATE(3506), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9267), - [sym_splice_expression] = STATE(3706), - [sym_user_defined_literal] = STATE(3777), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LPAREN2] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_compl] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2321), - [anon_sym___alignof__] = ACTIONS(2042), - [anon_sym___alignof] = ACTIONS(2042), - [anon_sym__alignof] = ACTIONS(2042), - [anon_sym_alignof] = ACTIONS(2042), - [anon_sym__Alignof] = ACTIONS(2042), - [anon_sym_offsetof] = ACTIONS(2044), - [anon_sym__Generic] = ACTIONS(2046), - [anon_sym_typename] = ACTIONS(2048), - [anon_sym_asm] = ACTIONS(2050), - [anon_sym___asm__] = ACTIONS(2050), - [anon_sym___asm] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2323), - [anon_sym_L_SQUOTE] = ACTIONS(2325), - [anon_sym_u_SQUOTE] = ACTIONS(2325), - [anon_sym_U_SQUOTE] = ACTIONS(2325), - [anon_sym_u8_SQUOTE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2325), - [anon_sym_L_DQUOTE] = ACTIONS(2327), - [anon_sym_u_DQUOTE] = ACTIONS(2327), - [anon_sym_U_DQUOTE] = ACTIONS(2327), - [anon_sym_u8_DQUOTE] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [anon_sym_NULL] = ACTIONS(2060), - [anon_sym_nullptr] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2064), - [anon_sym_delete] = ACTIONS(2329), - [anon_sym_R_DQUOTE] = ACTIONS(2331), - [anon_sym_LR_DQUOTE] = ACTIONS(2331), - [anon_sym_uR_DQUOTE] = ACTIONS(2331), - [anon_sym_UR_DQUOTE] = ACTIONS(2331), - [anon_sym_u8R_DQUOTE] = ACTIONS(2331), - [anon_sym_co_await] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_requires] = ACTIONS(2074), - [anon_sym_CARET_CARET] = ACTIONS(2337), - [anon_sym_LBRACK_COLON] = ACTIONS(2078), - [sym_this] = ACTIONS(2058), - }, - [STATE(1827)] = { - [sym_expression] = STATE(6725), - [sym__string] = STATE(6965), - [sym_conditional_expression] = STATE(7155), - [sym_assignment_expression] = STATE(7155), - [sym_pointer_expression] = STATE(5635), - [sym_unary_expression] = STATE(7155), - [sym_binary_expression] = STATE(7155), - [sym_update_expression] = STATE(7155), - [sym_cast_expression] = STATE(7155), - [sym_sizeof_expression] = STATE(7155), - [sym_alignof_expression] = STATE(7155), - [sym_offsetof_expression] = STATE(7155), - [sym_generic_expression] = STATE(7155), - [sym_subscript_expression] = STATE(5635), - [sym_call_expression] = STATE(5635), - [sym_gnu_asm_expression] = STATE(7155), - [sym_extension_expression] = STATE(7155), - [sym_field_expression] = STATE(5635), - [sym_compound_literal_expression] = STATE(7155), - [sym_parenthesized_expression] = STATE(5635), - [sym_char_literal] = STATE(6965), - [sym_concatenated_string] = STATE(6965), - [sym_string_literal] = STATE(5906), - [sym_null] = STATE(7155), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10093), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(7155), - [sym_raw_string_literal] = STATE(5906), - [sym_co_await_expression] = STATE(7155), - [sym_new_expression] = STATE(7155), - [sym_delete_expression] = STATE(7155), - [sym_requires_clause] = STATE(7155), - [sym_requires_expression] = STATE(7155), - [sym_lambda_expression] = STATE(7155), - [sym_lambda_capture_specifier] = STATE(7903), - [sym_fold_expression] = STATE(7155), - [sym_parameter_pack_expansion] = STATE(7155), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7864), - [sym_qualified_identifier] = STATE(5635), - [sym_qualified_type_identifier] = STATE(10093), - [sym_reflect_expression] = STATE(7155), - [sym_splice_specifier] = STATE(6602), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9197), - [sym_splice_expression] = STATE(6906), - [sym_user_defined_literal] = STATE(5635), - [sym_identifier] = ACTIONS(4542), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(4544), - [anon_sym_COLON_COLON] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(4548), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_sizeof] = ACTIONS(3407), - [anon_sym___alignof__] = ACTIONS(3409), - [anon_sym___alignof] = ACTIONS(3409), - [anon_sym__alignof] = ACTIONS(3409), - [anon_sym_alignof] = ACTIONS(3409), - [anon_sym__Alignof] = ACTIONS(3409), - [anon_sym_offsetof] = ACTIONS(3411), - [anon_sym__Generic] = ACTIONS(3413), - [anon_sym_typename] = ACTIONS(4550), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym___asm__] = ACTIONS(3417), - [anon_sym___asm] = ACTIONS(3417), - [sym_number_literal] = ACTIONS(3419), - [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(3423), - [anon_sym_u_DQUOTE] = ACTIONS(3423), - [anon_sym_U_DQUOTE] = ACTIONS(3423), - [anon_sym_u8_DQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [anon_sym_NULL] = ACTIONS(3427), - [anon_sym_nullptr] = ACTIONS(3427), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3431), - [anon_sym_R_DQUOTE] = ACTIONS(3433), - [anon_sym_LR_DQUOTE] = ACTIONS(3433), - [anon_sym_uR_DQUOTE] = ACTIONS(3433), - [anon_sym_UR_DQUOTE] = ACTIONS(3433), - [anon_sym_u8R_DQUOTE] = ACTIONS(3433), - [anon_sym_co_await] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_requires] = ACTIONS(3439), - [anon_sym_CARET_CARET] = ACTIONS(3441), - [anon_sym_LBRACK_COLON] = ACTIONS(3443), - [sym_this] = ACTIONS(3425), - }, - [STATE(1828)] = { - [sym_expression] = STATE(6774), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1852)] = { + [sym_expression] = STATE(6944), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -285830,7 +298232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -285850,87 +298252,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1829)] = { - [sym_expression] = STATE(6776), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1853)] = { + [sym_expression] = STATE(5215), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), + }, + [STATE(1854)] = { + [sym_expression] = STATE(6949), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -285938,7 +298448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -285958,87 +298468,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1830)] = { - [sym_expression] = STATE(6779), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(6089), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1855)] = { + [sym_expression] = STATE(6953), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1856)] = { + [sym_expression] = STATE(6955), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -286046,7 +298664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -286066,87 +298684,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1831)] = { - [sym_expression] = STATE(6780), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5799), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5799), - [sym_call_expression] = STATE(5799), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5799), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5799), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5799), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5799), - [sym_identifier] = ACTIONS(4552), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(4554), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3600), + [STATE(1857)] = { + [sym_expression] = STATE(6434), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -286154,7 +298772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -286174,82 +298792,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), - [anon_sym_delete] = ACTIONS(3602), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3604), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1832)] = { - [sym_expression] = STATE(6334), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1858)] = { + [sym_expression] = STATE(6621), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -286262,7 +298880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -286282,8 +298900,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -286294,70 +298912,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1833)] = { - [sym_expression] = STATE(7074), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1859)] = { + [sym_expression] = STATE(6967), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -286370,7 +298988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -286390,8 +299008,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -286402,70 +299020,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1834)] = { - [sym_expression] = STATE(7076), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1860)] = { + [sym_expression] = STATE(6447), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -286478,7 +299096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -286498,8 +299116,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -286510,70 +299128,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1835)] = { - [sym_expression] = STATE(7077), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1861)] = { + [sym_expression] = STATE(6973), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -286586,7 +299204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -286606,8 +299224,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -286618,70 +299236,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1836)] = { - [sym_expression] = STATE(7078), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1862)] = { + [sym_expression] = STATE(6979), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -286694,7 +299312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -286714,8 +299332,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -286726,70 +299344,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1837)] = { - [sym_expression] = STATE(7079), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1863)] = { + [sym_expression] = STATE(6980), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1864)] = { + [sym_expression] = STATE(6982), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -286802,7 +299528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -286822,8 +299548,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -286834,70 +299560,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1838)] = { - [sym_expression] = STATE(6333), - [sym__string] = STATE(6317), - [sym_conditional_expression] = STATE(5900), - [sym_assignment_expression] = STATE(5900), - [sym_pointer_expression] = STATE(5064), - [sym_unary_expression] = STATE(5900), - [sym_binary_expression] = STATE(5900), - [sym_update_expression] = STATE(5900), - [sym_cast_expression] = STATE(5900), - [sym_sizeof_expression] = STATE(5900), - [sym_alignof_expression] = STATE(5900), - [sym_offsetof_expression] = STATE(5900), - [sym_generic_expression] = STATE(5900), - [sym_subscript_expression] = STATE(5064), - [sym_call_expression] = STATE(5064), - [sym_gnu_asm_expression] = STATE(5900), - [sym_extension_expression] = STATE(5900), - [sym_field_expression] = STATE(5064), - [sym_compound_literal_expression] = STATE(5900), - [sym_parenthesized_expression] = STATE(5064), - [sym_char_literal] = STATE(6317), - [sym_concatenated_string] = STATE(6317), - [sym_string_literal] = STATE(4783), - [sym_null] = STATE(5900), - [sym_decltype] = STATE(10976), - [sym__class_name] = STATE(10073), - [sym_template_type] = STATE(3712), - [sym_template_function] = STATE(5900), - [sym_raw_string_literal] = STATE(4783), - [sym_co_await_expression] = STATE(5900), - [sym_new_expression] = STATE(5900), - [sym_delete_expression] = STATE(5900), - [sym_requires_clause] = STATE(5900), - [sym_requires_expression] = STATE(5900), - [sym_lambda_expression] = STATE(5900), - [sym_lambda_capture_specifier] = STATE(7935), - [sym_fold_expression] = STATE(5900), - [sym_parameter_pack_expansion] = STATE(5900), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7797), - [sym_qualified_identifier] = STATE(5064), - [sym_qualified_type_identifier] = STATE(10073), - [sym_reflect_expression] = STATE(5900), - [sym_splice_specifier] = STATE(5259), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(9205), - [sym_splice_expression] = STATE(5783), - [sym_user_defined_literal] = STATE(5064), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(1296), + [STATE(1865)] = { + [sym_expression] = STATE(6634), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym___extension__] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -286910,7 +299636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2240), + [anon_sym_typename] = ACTIONS(2600), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -286930,8 +299656,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(1858), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -286942,15104 +299668,9016 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2242), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), [sym_this] = ACTIONS(237), }, - [STATE(1839)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_ms_call_modifier] = STATE(8690), - [sym__abstract_declarator] = STATE(9262), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_abstract_function_declarator] = STATE(8389), - [sym_abstract_array_declarator] = STATE(8389), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_list] = STATE(4601), - [sym_parameter_declaration] = STATE(9742), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_explicit_object_parameter_declaration] = STATE(9742), - [sym_optional_parameter_declaration] = STATE(9742), - [sym_variadic_parameter_declaration] = STATE(9742), - [sym_abstract_reference_declarator] = STATE(8389), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), - [anon_sym_RPAREN] = ACTIONS(5299), - [anon_sym_LPAREN2] = ACTIONS(6093), - [anon_sym_STAR] = ACTIONS(6095), - [anon_sym_AMP_AMP] = ACTIONS(6097), - [anon_sym_AMP] = ACTIONS(6099), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(6103), - [anon_sym___clrcall] = ACTIONS(6103), - [anon_sym___stdcall] = ACTIONS(6103), - [anon_sym___fastcall] = ACTIONS(6103), - [anon_sym___thiscall] = ACTIONS(6103), - [anon_sym___vectorcall] = ACTIONS(6103), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(6105), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(5313), + [STATE(1866)] = { + [sym_expression] = STATE(6994), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - [sym_this] = ACTIONS(5315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(1840)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_ms_call_modifier] = STATE(8654), - [sym__abstract_declarator] = STATE(9180), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_abstract_function_declarator] = STATE(8389), - [sym_abstract_array_declarator] = STATE(8389), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_list] = STATE(4601), - [sym_parameter_declaration] = STATE(9630), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_explicit_object_parameter_declaration] = STATE(9630), - [sym_optional_parameter_declaration] = STATE(9630), - [sym_variadic_parameter_declaration] = STATE(9630), - [sym_abstract_reference_declarator] = STATE(8389), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6107), - [anon_sym_RPAREN] = ACTIONS(6109), - [anon_sym_LPAREN2] = ACTIONS(6093), - [anon_sym_STAR] = ACTIONS(6095), - [anon_sym_AMP_AMP] = ACTIONS(6097), - [anon_sym_AMP] = ACTIONS(6099), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(6103), - [anon_sym___clrcall] = ACTIONS(6103), - [anon_sym___stdcall] = ACTIONS(6103), - [anon_sym___fastcall] = ACTIONS(6103), - [anon_sym___thiscall] = ACTIONS(6103), - [anon_sym___vectorcall] = ACTIONS(6103), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(6105), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(5313), + [STATE(1867)] = { + [sym_expression] = STATE(7007), + [sym__string] = STATE(7147), + [sym_conditional_expression] = STATE(7216), + [sym_assignment_expression] = STATE(7216), + [sym_pointer_expression] = STATE(5905), + [sym_unary_expression] = STATE(7216), + [sym_binary_expression] = STATE(7216), + [sym_update_expression] = STATE(7216), + [sym_cast_expression] = STATE(7216), + [sym_sizeof_expression] = STATE(7216), + [sym_alignof_expression] = STATE(7216), + [sym_offsetof_expression] = STATE(7216), + [sym_generic_expression] = STATE(7216), + [sym_subscript_expression] = STATE(5905), + [sym_call_expression] = STATE(5905), + [sym_gnu_asm_expression] = STATE(7216), + [sym_extension_expression] = STATE(7216), + [sym_field_expression] = STATE(5905), + [sym_compound_literal_expression] = STATE(7216), + [sym_parenthesized_expression] = STATE(5905), + [sym_char_literal] = STATE(7147), + [sym_concatenated_string] = STATE(7147), + [sym_string_literal] = STATE(5996), + [sym_null] = STATE(7216), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10587), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(7216), + [sym_raw_string_literal] = STATE(5996), + [sym_co_await_expression] = STATE(7216), + [sym_new_expression] = STATE(7216), + [sym_delete_expression] = STATE(7216), + [sym_requires_clause] = STATE(7216), + [sym_requires_expression] = STATE(7216), + [sym_lambda_expression] = STATE(7216), + [sym_lambda_capture_specifier] = STATE(8009), + [sym_fold_expression] = STATE(7216), + [sym_parameter_pack_expansion] = STATE(7216), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7925), + [sym_qualified_identifier] = STATE(5905), + [sym_qualified_type_identifier] = STATE(10587), + [sym_reflect_expression] = STATE(7216), + [sym_splice_specifier] = STATE(6579), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9383), + [sym_splice_expression] = STATE(7092), + [sym_user_defined_literal] = STATE(5905), + [sym_identifier] = ACTIONS(4890), + [anon_sym_LPAREN2] = ACTIONS(4300), + [anon_sym_BANG] = ACTIONS(4302), + [anon_sym_TILDE] = ACTIONS(4302), + [anon_sym_DASH] = ACTIONS(4304), + [anon_sym_PLUS] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3827), + [anon_sym___extension__] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(4896), + [anon_sym_not] = ACTIONS(4304), + [anon_sym_compl] = ACTIONS(4304), + [anon_sym_DASH_DASH] = ACTIONS(4322), + [anon_sym_PLUS_PLUS] = ACTIONS(4322), + [anon_sym_sizeof] = ACTIONS(4324), + [anon_sym___alignof__] = ACTIONS(4326), + [anon_sym___alignof] = ACTIONS(4326), + [anon_sym__alignof] = ACTIONS(4326), + [anon_sym_alignof] = ACTIONS(4326), + [anon_sym__Alignof] = ACTIONS(4326), + [anon_sym_offsetof] = ACTIONS(4328), + [anon_sym__Generic] = ACTIONS(4330), + [anon_sym_typename] = ACTIONS(4898), + [anon_sym_asm] = ACTIONS(4334), + [anon_sym___asm__] = ACTIONS(4334), + [anon_sym___asm] = ACTIONS(4334), + [sym_number_literal] = ACTIONS(4336), + [anon_sym_L_SQUOTE] = ACTIONS(4338), + [anon_sym_u_SQUOTE] = ACTIONS(4338), + [anon_sym_U_SQUOTE] = ACTIONS(4338), + [anon_sym_u8_SQUOTE] = ACTIONS(4338), + [anon_sym_SQUOTE] = ACTIONS(4338), + [anon_sym_L_DQUOTE] = ACTIONS(4340), + [anon_sym_u_DQUOTE] = ACTIONS(4340), + [anon_sym_U_DQUOTE] = ACTIONS(4340), + [anon_sym_u8_DQUOTE] = ACTIONS(4340), + [anon_sym_DQUOTE] = ACTIONS(4340), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [anon_sym_NULL] = ACTIONS(4344), + [anon_sym_nullptr] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4346), + [anon_sym_delete] = ACTIONS(4348), + [anon_sym_R_DQUOTE] = ACTIONS(4350), + [anon_sym_LR_DQUOTE] = ACTIONS(4350), + [anon_sym_uR_DQUOTE] = ACTIONS(4350), + [anon_sym_UR_DQUOTE] = ACTIONS(4350), + [anon_sym_u8R_DQUOTE] = ACTIONS(4350), + [anon_sym_co_await] = ACTIONS(4352), + [anon_sym_new] = ACTIONS(4354), + [anon_sym_requires] = ACTIONS(4356), + [anon_sym_CARET_CARET] = ACTIONS(4358), + [anon_sym_LBRACK_COLON] = ACTIONS(4360), + [sym_this] = ACTIONS(4342), + }, + [STATE(1868)] = { + [sym_expression] = STATE(5818), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(6443), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1869)] = { + [sym_expression] = STATE(6648), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - [sym_this] = ACTIONS(5315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(1841)] = { - [sym_attribute_specifier] = STATE(1879), - [sym_attribute_declaration] = STATE(3129), - [sym_type_qualifier] = STATE(1901), - [sym_alignas_qualifier] = STATE(1942), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym_ref_qualifier] = STATE(2205), - [sym__function_attributes_start] = STATE(2176), - [sym__function_exception_specification] = STATE(2464), - [sym__function_attributes_end] = STATE(3804), - [sym__function_postfix] = STATE(3516), - [sym_trailing_return_type] = STATE(2864), - [sym_noexcept] = STATE(2464), - [sym_throw_specifier] = STATE(2464), - [sym_requires_clause] = STATE(3516), - [aux_sym_type_definition_repeat1] = STATE(1879), - [aux_sym__type_definition_type_repeat1] = STATE(1901), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [sym_identifier] = ACTIONS(6111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [aux_sym_preproc_if_token2] = ACTIONS(6113), - [aux_sym_preproc_else_token1] = ACTIONS(6113), - [aux_sym_preproc_elif_token1] = ACTIONS(6111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6113), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6113), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6111), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(6115), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_AMP] = ACTIONS(6118), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6111), - [anon_sym_GT_GT] = ACTIONS(6111), - [anon_sym___extension__] = ACTIONS(6121), - [anon_sym___attribute__] = ACTIONS(6123), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_const] = ACTIONS(6121), - [anon_sym_constexpr] = ACTIONS(6121), - [anon_sym_volatile] = ACTIONS(6121), - [anon_sym_restrict] = ACTIONS(6121), - [anon_sym___restrict__] = ACTIONS(6121), - [anon_sym__Atomic] = ACTIONS(6121), - [anon_sym__Noreturn] = ACTIONS(6121), - [anon_sym_noreturn] = ACTIONS(6121), - [anon_sym__Nonnull] = ACTIONS(6121), - [anon_sym_mutable] = ACTIONS(6121), - [anon_sym_constinit] = ACTIONS(6121), - [anon_sym_consteval] = ACTIONS(6121), - [anon_sym_alignas] = ACTIONS(6127), - [anon_sym__Alignas] = ACTIONS(6127), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_STAR_EQ] = ACTIONS(6113), - [anon_sym_SLASH_EQ] = ACTIONS(6113), - [anon_sym_PERCENT_EQ] = ACTIONS(6113), - [anon_sym_PLUS_EQ] = ACTIONS(6113), - [anon_sym_DASH_EQ] = ACTIONS(6113), - [anon_sym_LT_LT_EQ] = ACTIONS(6113), - [anon_sym_GT_GT_EQ] = ACTIONS(6113), - [anon_sym_AMP_EQ] = ACTIONS(6113), - [anon_sym_CARET_EQ] = ACTIONS(6113), - [anon_sym_PIPE_EQ] = ACTIONS(6113), - [anon_sym_and_eq] = ACTIONS(6111), - [anon_sym_or_eq] = ACTIONS(6111), - [anon_sym_xor_eq] = ACTIONS(6111), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6111), - [anon_sym_and] = ACTIONS(6111), - [anon_sym_bitor] = ACTIONS(6111), - [anon_sym_xor] = ACTIONS(6111), - [anon_sym_bitand] = ACTIONS(6111), - [anon_sym_not_eq] = ACTIONS(6111), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_asm] = ACTIONS(6129), - [anon_sym___asm__] = ACTIONS(6129), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(6131), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6134), - [anon_sym_override] = ACTIONS(6134), - [anon_sym_noexcept] = ACTIONS(6136), - [anon_sym_throw] = ACTIONS(6138), - [anon_sym_requires] = ACTIONS(6140), + [STATE(1870)] = { + [sym_expression] = STATE(7016), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(1842)] = { - [sym_attribute_specifier] = STATE(1879), - [sym_attribute_declaration] = STATE(3129), - [sym_type_qualifier] = STATE(1901), - [sym_alignas_qualifier] = STATE(1942), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym_ref_qualifier] = STATE(2208), - [sym__function_attributes_start] = STATE(2177), - [sym__function_exception_specification] = STATE(2472), - [sym__function_attributes_end] = STATE(3828), - [sym__function_postfix] = STATE(3516), - [sym_trailing_return_type] = STATE(2932), - [sym_noexcept] = STATE(2472), - [sym_throw_specifier] = STATE(2472), - [sym_requires_clause] = STATE(3516), - [aux_sym_type_definition_repeat1] = STATE(1879), - [aux_sym__type_definition_type_repeat1] = STATE(1901), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [sym_identifier] = ACTIONS(6111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [aux_sym_preproc_if_token2] = ACTIONS(6113), - [aux_sym_preproc_else_token1] = ACTIONS(6113), - [aux_sym_preproc_elif_token1] = ACTIONS(6111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6113), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6113), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6111), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(6115), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_AMP] = ACTIONS(6118), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6111), - [anon_sym_GT_GT] = ACTIONS(6111), - [anon_sym___extension__] = ACTIONS(6121), - [anon_sym___attribute__] = ACTIONS(6123), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_const] = ACTIONS(6121), - [anon_sym_constexpr] = ACTIONS(6121), - [anon_sym_volatile] = ACTIONS(6121), - [anon_sym_restrict] = ACTIONS(6121), - [anon_sym___restrict__] = ACTIONS(6121), - [anon_sym__Atomic] = ACTIONS(6121), - [anon_sym__Noreturn] = ACTIONS(6121), - [anon_sym_noreturn] = ACTIONS(6121), - [anon_sym__Nonnull] = ACTIONS(6121), - [anon_sym_mutable] = ACTIONS(6121), - [anon_sym_constinit] = ACTIONS(6121), - [anon_sym_consteval] = ACTIONS(6121), - [anon_sym_alignas] = ACTIONS(6127), - [anon_sym__Alignas] = ACTIONS(6127), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_STAR_EQ] = ACTIONS(6113), - [anon_sym_SLASH_EQ] = ACTIONS(6113), - [anon_sym_PERCENT_EQ] = ACTIONS(6113), - [anon_sym_PLUS_EQ] = ACTIONS(6113), - [anon_sym_DASH_EQ] = ACTIONS(6113), - [anon_sym_LT_LT_EQ] = ACTIONS(6113), - [anon_sym_GT_GT_EQ] = ACTIONS(6113), - [anon_sym_AMP_EQ] = ACTIONS(6113), - [anon_sym_CARET_EQ] = ACTIONS(6113), - [anon_sym_PIPE_EQ] = ACTIONS(6113), - [anon_sym_and_eq] = ACTIONS(6111), - [anon_sym_or_eq] = ACTIONS(6111), - [anon_sym_xor_eq] = ACTIONS(6111), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6111), - [anon_sym_and] = ACTIONS(6111), - [anon_sym_bitor] = ACTIONS(6111), - [anon_sym_xor] = ACTIONS(6111), - [anon_sym_bitand] = ACTIONS(6111), - [anon_sym_not_eq] = ACTIONS(6111), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_asm] = ACTIONS(6129), - [anon_sym___asm__] = ACTIONS(6129), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(6131), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6142), - [anon_sym_override] = ACTIONS(6142), - [anon_sym_noexcept] = ACTIONS(6136), - [anon_sym_throw] = ACTIONS(6138), - [anon_sym_requires] = ACTIONS(6145), + [STATE(1871)] = { + [sym_expression] = STATE(5821), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), }, - [STATE(1843)] = { - [sym_attribute_specifier] = STATE(1879), - [sym_attribute_declaration] = STATE(3129), - [sym_type_qualifier] = STATE(1901), - [sym_alignas_qualifier] = STATE(1942), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym_ref_qualifier] = STATE(2217), - [sym__function_attributes_start] = STATE(2166), - [sym__function_exception_specification] = STATE(2489), - [sym__function_attributes_end] = STATE(3767), - [sym__function_postfix] = STATE(3516), - [sym_trailing_return_type] = STATE(2932), - [sym_noexcept] = STATE(2489), - [sym_throw_specifier] = STATE(2489), - [sym_requires_clause] = STATE(3516), - [aux_sym_type_definition_repeat1] = STATE(1879), - [aux_sym__type_definition_type_repeat1] = STATE(1901), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_RPAREN] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6113), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6111), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(6115), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_AMP] = ACTIONS(6118), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6111), - [anon_sym_GT_GT] = ACTIONS(6111), - [anon_sym_SEMI] = ACTIONS(6113), - [anon_sym___extension__] = ACTIONS(6148), - [anon_sym___attribute__] = ACTIONS(6150), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_COLON] = ACTIONS(6111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6113), - [anon_sym_RBRACE] = ACTIONS(6113), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_const] = ACTIONS(6121), - [anon_sym_constexpr] = ACTIONS(6148), - [anon_sym_volatile] = ACTIONS(6148), - [anon_sym_restrict] = ACTIONS(6148), - [anon_sym___restrict__] = ACTIONS(6148), - [anon_sym__Atomic] = ACTIONS(6148), - [anon_sym__Noreturn] = ACTIONS(6148), - [anon_sym_noreturn] = ACTIONS(6148), - [anon_sym__Nonnull] = ACTIONS(6148), - [anon_sym_mutable] = ACTIONS(6148), - [anon_sym_constinit] = ACTIONS(6148), - [anon_sym_consteval] = ACTIONS(6148), - [anon_sym_alignas] = ACTIONS(6152), - [anon_sym__Alignas] = ACTIONS(6152), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_STAR_EQ] = ACTIONS(6113), - [anon_sym_SLASH_EQ] = ACTIONS(6113), - [anon_sym_PERCENT_EQ] = ACTIONS(6113), - [anon_sym_PLUS_EQ] = ACTIONS(6113), - [anon_sym_DASH_EQ] = ACTIONS(6113), - [anon_sym_LT_LT_EQ] = ACTIONS(6113), - [anon_sym_GT_GT_EQ] = ACTIONS(6113), - [anon_sym_AMP_EQ] = ACTIONS(6113), - [anon_sym_CARET_EQ] = ACTIONS(6113), - [anon_sym_PIPE_EQ] = ACTIONS(6113), - [anon_sym_and_eq] = ACTIONS(6113), - [anon_sym_or_eq] = ACTIONS(6113), - [anon_sym_xor_eq] = ACTIONS(6113), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6111), - [anon_sym_and] = ACTIONS(6111), - [anon_sym_bitor] = ACTIONS(6113), - [anon_sym_xor] = ACTIONS(6111), - [anon_sym_bitand] = ACTIONS(6113), - [anon_sym_not_eq] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(6156), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6159), - [anon_sym_override] = ACTIONS(6159), - [anon_sym_noexcept] = ACTIONS(6162), - [anon_sym_throw] = ACTIONS(6164), - [anon_sym_requires] = ACTIONS(6166), - [anon_sym_COLON_RBRACK] = ACTIONS(6113), + [STATE(1872)] = { + [sym_expression] = STATE(6942), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(1844)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_ms_call_modifier] = STATE(8672), - [sym__abstract_declarator] = STATE(9210), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_abstract_function_declarator] = STATE(8389), - [sym_abstract_array_declarator] = STATE(8389), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_list] = STATE(4601), - [sym_parameter_declaration] = STATE(9763), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_explicit_object_parameter_declaration] = STATE(9763), - [sym_optional_parameter_declaration] = STATE(9763), - [sym_variadic_parameter_declaration] = STATE(9763), - [sym_abstract_reference_declarator] = STATE(8389), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6169), - [anon_sym_RPAREN] = ACTIONS(6171), - [anon_sym_LPAREN2] = ACTIONS(6093), - [anon_sym_STAR] = ACTIONS(6095), - [anon_sym_AMP_AMP] = ACTIONS(6097), - [anon_sym_AMP] = ACTIONS(6099), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(6103), - [anon_sym___clrcall] = ACTIONS(6103), - [anon_sym___stdcall] = ACTIONS(6103), - [anon_sym___fastcall] = ACTIONS(6103), - [anon_sym___thiscall] = ACTIONS(6103), - [anon_sym___vectorcall] = ACTIONS(6103), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(6105), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(5313), + [STATE(1873)] = { + [sym_expression] = STATE(7035), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - [sym_this] = ACTIONS(5315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(1845)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_ms_call_modifier] = STATE(8704), - [sym__abstract_declarator] = STATE(9199), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_abstract_function_declarator] = STATE(8389), - [sym_abstract_array_declarator] = STATE(8389), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_list] = STATE(4601), - [sym_parameter_declaration] = STATE(9910), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_explicit_object_parameter_declaration] = STATE(9910), - [sym_optional_parameter_declaration] = STATE(9910), - [sym_variadic_parameter_declaration] = STATE(9910), - [sym_abstract_reference_declarator] = STATE(8389), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6173), - [anon_sym_RPAREN] = ACTIONS(6175), - [anon_sym_LPAREN2] = ACTIONS(6093), - [anon_sym_STAR] = ACTIONS(6095), - [anon_sym_AMP_AMP] = ACTIONS(6097), - [anon_sym_AMP] = ACTIONS(6099), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(6103), - [anon_sym___clrcall] = ACTIONS(6103), - [anon_sym___stdcall] = ACTIONS(6103), - [anon_sym___fastcall] = ACTIONS(6103), - [anon_sym___thiscall] = ACTIONS(6103), - [anon_sym___vectorcall] = ACTIONS(6103), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(6105), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(5313), + [STATE(1874)] = { + [sym_expression] = STATE(7048), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - [sym_this] = ACTIONS(5315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(1846)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_ms_call_modifier] = STATE(8655), - [sym__abstract_declarator] = STATE(9182), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_abstract_function_declarator] = STATE(8389), - [sym_abstract_array_declarator] = STATE(8389), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_list] = STATE(4601), - [sym_parameter_declaration] = STATE(9719), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_explicit_object_parameter_declaration] = STATE(9719), - [sym_optional_parameter_declaration] = STATE(9719), - [sym_variadic_parameter_declaration] = STATE(9719), - [sym_abstract_reference_declarator] = STATE(8389), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6177), - [anon_sym_RPAREN] = ACTIONS(6179), - [anon_sym_LPAREN2] = ACTIONS(6093), - [anon_sym_STAR] = ACTIONS(6095), - [anon_sym_AMP_AMP] = ACTIONS(6097), - [anon_sym_AMP] = ACTIONS(6099), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(6103), - [anon_sym___clrcall] = ACTIONS(6103), - [anon_sym___stdcall] = ACTIONS(6103), - [anon_sym___fastcall] = ACTIONS(6103), - [anon_sym___thiscall] = ACTIONS(6103), - [anon_sym___vectorcall] = ACTIONS(6103), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(6105), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(5313), + [STATE(1875)] = { + [sym_expression] = STATE(6537), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - [sym_this] = ACTIONS(5315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(1847)] = { - [sym_attribute_specifier] = STATE(1879), - [sym_attribute_declaration] = STATE(3129), - [sym_type_qualifier] = STATE(1901), - [sym_alignas_qualifier] = STATE(1942), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym_ref_qualifier] = STATE(2193), - [sym__function_attributes_start] = STATE(2183), - [sym__function_exception_specification] = STATE(2428), - [sym__function_attributes_end] = STATE(3738), - [sym__function_postfix] = STATE(3516), - [sym_trailing_return_type] = STATE(2864), - [sym_noexcept] = STATE(2428), - [sym_throw_specifier] = STATE(2428), - [sym_requires_clause] = STATE(3516), - [aux_sym_type_definition_repeat1] = STATE(1879), - [aux_sym__type_definition_type_repeat1] = STATE(1901), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_RPAREN] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6113), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6111), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(6115), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_AMP] = ACTIONS(6118), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6111), - [anon_sym_GT_GT] = ACTIONS(6111), - [anon_sym_SEMI] = ACTIONS(6113), - [anon_sym___extension__] = ACTIONS(6148), - [anon_sym___attribute__] = ACTIONS(6150), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_COLON] = ACTIONS(6111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6113), - [anon_sym_RBRACE] = ACTIONS(6113), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_const] = ACTIONS(6121), - [anon_sym_constexpr] = ACTIONS(6148), - [anon_sym_volatile] = ACTIONS(6148), - [anon_sym_restrict] = ACTIONS(6148), - [anon_sym___restrict__] = ACTIONS(6148), - [anon_sym__Atomic] = ACTIONS(6148), - [anon_sym__Noreturn] = ACTIONS(6148), - [anon_sym_noreturn] = ACTIONS(6148), - [anon_sym__Nonnull] = ACTIONS(6148), - [anon_sym_mutable] = ACTIONS(6148), - [anon_sym_constinit] = ACTIONS(6148), - [anon_sym_consteval] = ACTIONS(6148), - [anon_sym_alignas] = ACTIONS(6152), - [anon_sym__Alignas] = ACTIONS(6152), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_STAR_EQ] = ACTIONS(6113), - [anon_sym_SLASH_EQ] = ACTIONS(6113), - [anon_sym_PERCENT_EQ] = ACTIONS(6113), - [anon_sym_PLUS_EQ] = ACTIONS(6113), - [anon_sym_DASH_EQ] = ACTIONS(6113), - [anon_sym_LT_LT_EQ] = ACTIONS(6113), - [anon_sym_GT_GT_EQ] = ACTIONS(6113), - [anon_sym_AMP_EQ] = ACTIONS(6113), - [anon_sym_CARET_EQ] = ACTIONS(6113), - [anon_sym_PIPE_EQ] = ACTIONS(6113), - [anon_sym_and_eq] = ACTIONS(6113), - [anon_sym_or_eq] = ACTIONS(6113), - [anon_sym_xor_eq] = ACTIONS(6113), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6111), - [anon_sym_and] = ACTIONS(6111), - [anon_sym_bitor] = ACTIONS(6113), - [anon_sym_xor] = ACTIONS(6111), - [anon_sym_bitand] = ACTIONS(6113), - [anon_sym_not_eq] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(6156), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6181), - [anon_sym_override] = ACTIONS(6181), - [anon_sym_noexcept] = ACTIONS(6162), - [anon_sym_throw] = ACTIONS(6164), - [anon_sym_requires] = ACTIONS(6183), - [anon_sym_COLON_RBRACK] = ACTIONS(6113), + [STATE(1876)] = { + [sym_expression] = STATE(7055), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(1848)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_ms_call_modifier] = STATE(8698), - [sym__abstract_declarator] = STATE(9247), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_abstract_function_declarator] = STATE(8389), - [sym_abstract_array_declarator] = STATE(8389), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_list] = STATE(4601), - [sym_parameter_declaration] = STATE(9860), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_explicit_object_parameter_declaration] = STATE(9860), - [sym_optional_parameter_declaration] = STATE(9860), - [sym_variadic_parameter_declaration] = STATE(9860), - [sym_abstract_reference_declarator] = STATE(8389), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6185), - [anon_sym_RPAREN] = ACTIONS(6187), - [anon_sym_LPAREN2] = ACTIONS(6093), - [anon_sym_STAR] = ACTIONS(6095), - [anon_sym_AMP_AMP] = ACTIONS(6097), - [anon_sym_AMP] = ACTIONS(6099), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(6103), - [anon_sym___clrcall] = ACTIONS(6103), - [anon_sym___stdcall] = ACTIONS(6103), - [anon_sym___fastcall] = ACTIONS(6103), - [anon_sym___thiscall] = ACTIONS(6103), - [anon_sym___vectorcall] = ACTIONS(6103), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(6105), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(5313), + [STATE(1877)] = { + [sym_expression] = STATE(7059), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - [sym_this] = ACTIONS(5315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(1849)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_ms_call_modifier] = STATE(8688), - [sym__abstract_declarator] = STATE(9271), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_abstract_function_declarator] = STATE(8389), - [sym_abstract_array_declarator] = STATE(8389), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_list] = STATE(4601), - [sym_parameter_declaration] = STATE(9742), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_explicit_object_parameter_declaration] = STATE(9742), - [sym_optional_parameter_declaration] = STATE(9742), - [sym_variadic_parameter_declaration] = STATE(9742), - [sym_abstract_reference_declarator] = STATE(8389), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), - [anon_sym_RPAREN] = ACTIONS(5299), - [anon_sym_LPAREN2] = ACTIONS(6093), - [anon_sym_STAR] = ACTIONS(6095), - [anon_sym_AMP_AMP] = ACTIONS(6097), - [anon_sym_AMP] = ACTIONS(6099), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(6103), - [anon_sym___clrcall] = ACTIONS(6103), - [anon_sym___stdcall] = ACTIONS(6103), - [anon_sym___fastcall] = ACTIONS(6103), - [anon_sym___thiscall] = ACTIONS(6103), - [anon_sym___vectorcall] = ACTIONS(6103), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(6105), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(5313), + [STATE(1878)] = { + [sym_expression] = STATE(7061), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - [sym_this] = ACTIONS(5315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(1850)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_ms_call_modifier] = STATE(8666), - [sym__abstract_declarator] = STATE(9264), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_abstract_function_declarator] = STATE(8389), - [sym_abstract_array_declarator] = STATE(8389), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_list] = STATE(4601), - [sym_parameter_declaration] = STATE(9957), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_explicit_object_parameter_declaration] = STATE(9957), - [sym_optional_parameter_declaration] = STATE(9957), - [sym_variadic_parameter_declaration] = STATE(9957), - [sym_abstract_reference_declarator] = STATE(8389), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6189), - [anon_sym_RPAREN] = ACTIONS(6191), - [anon_sym_LPAREN2] = ACTIONS(6093), - [anon_sym_STAR] = ACTIONS(6095), - [anon_sym_AMP_AMP] = ACTIONS(6097), - [anon_sym_AMP] = ACTIONS(6099), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(6103), - [anon_sym___clrcall] = ACTIONS(6103), - [anon_sym___stdcall] = ACTIONS(6103), - [anon_sym___fastcall] = ACTIONS(6103), - [anon_sym___thiscall] = ACTIONS(6103), - [anon_sym___vectorcall] = ACTIONS(6103), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(6105), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(5313), + [STATE(1879)] = { + [sym_expression] = STATE(7063), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - [sym_this] = ACTIONS(5315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(1851)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_ms_call_modifier] = STATE(8699), - [sym__abstract_declarator] = STATE(9151), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_abstract_function_declarator] = STATE(8389), - [sym_abstract_array_declarator] = STATE(8389), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_list] = STATE(4601), - [sym_parameter_declaration] = STATE(9983), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_explicit_object_parameter_declaration] = STATE(9983), - [sym_optional_parameter_declaration] = STATE(9983), - [sym_variadic_parameter_declaration] = STATE(9983), - [sym_abstract_reference_declarator] = STATE(8389), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6193), - [anon_sym_RPAREN] = ACTIONS(6195), - [anon_sym_LPAREN2] = ACTIONS(6093), - [anon_sym_STAR] = ACTIONS(6095), - [anon_sym_AMP_AMP] = ACTIONS(6097), - [anon_sym_AMP] = ACTIONS(6099), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(6103), - [anon_sym___clrcall] = ACTIONS(6103), - [anon_sym___stdcall] = ACTIONS(6103), - [anon_sym___fastcall] = ACTIONS(6103), - [anon_sym___thiscall] = ACTIONS(6103), - [anon_sym___vectorcall] = ACTIONS(6103), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(6105), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(5313), + [STATE(1880)] = { + [sym_expression] = STATE(5759), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(6445), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), + }, + [STATE(1881)] = { + [sym_expression] = STATE(6784), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - [sym_this] = ACTIONS(5315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(1852)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_ms_call_modifier] = STATE(8674), - [sym__abstract_declarator] = STATE(9211), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_abstract_function_declarator] = STATE(8389), - [sym_abstract_array_declarator] = STATE(8389), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_list] = STATE(4601), - [sym_parameter_declaration] = STATE(9832), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_explicit_object_parameter_declaration] = STATE(9832), - [sym_optional_parameter_declaration] = STATE(9832), - [sym_variadic_parameter_declaration] = STATE(9832), - [sym_abstract_reference_declarator] = STATE(8389), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6197), - [anon_sym_RPAREN] = ACTIONS(6199), - [anon_sym_LPAREN2] = ACTIONS(6093), - [anon_sym_STAR] = ACTIONS(6095), - [anon_sym_AMP_AMP] = ACTIONS(6097), - [anon_sym_AMP] = ACTIONS(6099), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(6103), - [anon_sym___clrcall] = ACTIONS(6103), - [anon_sym___stdcall] = ACTIONS(6103), - [anon_sym___fastcall] = ACTIONS(6103), - [anon_sym___thiscall] = ACTIONS(6103), - [anon_sym___vectorcall] = ACTIONS(6103), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(6105), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(5313), + [STATE(1882)] = { + [sym_expression] = STATE(5764), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - [sym_this] = ACTIONS(5315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, - [STATE(1853)] = { - [sym_template_argument_list] = STATE(1855), - [sym_identifier] = ACTIONS(6201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6203), - [anon_sym_COMMA] = ACTIONS(6203), - [anon_sym_RPAREN] = ACTIONS(6203), - [anon_sym_LPAREN2] = ACTIONS(6205), - [anon_sym_TILDE] = ACTIONS(6208), - [anon_sym_DASH] = ACTIONS(6210), - [anon_sym_PLUS] = ACTIONS(6210), - [anon_sym_STAR] = ACTIONS(6212), - [anon_sym_SLASH] = ACTIONS(6210), - [anon_sym_PERCENT] = ACTIONS(6210), - [anon_sym_PIPE_PIPE] = ACTIONS(6203), - [anon_sym_AMP_AMP] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(6210), - [anon_sym_CARET] = ACTIONS(6210), - [anon_sym_AMP] = ACTIONS(6212), - [anon_sym_EQ_EQ] = ACTIONS(6203), - [anon_sym_BANG_EQ] = ACTIONS(6203), - [anon_sym_GT] = ACTIONS(6210), - [anon_sym_GT_EQ] = ACTIONS(6203), - [anon_sym_LT_EQ] = ACTIONS(6210), - [anon_sym_LT] = ACTIONS(6215), - [anon_sym_LT_LT] = ACTIONS(6210), - [anon_sym_GT_GT] = ACTIONS(6210), - [anon_sym_SEMI] = ACTIONS(6203), - [anon_sym___extension__] = ACTIONS(6201), - [anon_sym_virtual] = ACTIONS(6201), - [anon_sym_extern] = ACTIONS(6201), - [anon_sym___attribute__] = ACTIONS(6201), - [anon_sym___attribute] = ACTIONS(6201), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6208), - [anon_sym___declspec] = ACTIONS(6201), - [anon_sym___based] = ACTIONS(6201), - [anon_sym___cdecl] = ACTIONS(6201), - [anon_sym___clrcall] = ACTIONS(6201), - [anon_sym___stdcall] = ACTIONS(6201), - [anon_sym___fastcall] = ACTIONS(6201), - [anon_sym___thiscall] = ACTIONS(6201), - [anon_sym___vectorcall] = ACTIONS(6201), - [anon_sym_LBRACE] = ACTIONS(6208), - [anon_sym_RBRACE] = ACTIONS(6203), - [anon_sym_LBRACK] = ACTIONS(6212), - [anon_sym_static] = ACTIONS(6201), - [anon_sym_EQ] = ACTIONS(6210), - [anon_sym_register] = ACTIONS(6201), - [anon_sym_inline] = ACTIONS(6201), - [anon_sym___inline] = ACTIONS(6201), - [anon_sym___inline__] = ACTIONS(6201), - [anon_sym___forceinline] = ACTIONS(6201), - [anon_sym_thread_local] = ACTIONS(6201), - [anon_sym___thread] = ACTIONS(6201), - [anon_sym_const] = ACTIONS(6201), - [anon_sym_constexpr] = ACTIONS(6201), - [anon_sym_volatile] = ACTIONS(6201), - [anon_sym_restrict] = ACTIONS(6201), - [anon_sym___restrict__] = ACTIONS(6201), - [anon_sym__Atomic] = ACTIONS(6201), - [anon_sym__Noreturn] = ACTIONS(6201), - [anon_sym_noreturn] = ACTIONS(6201), - [anon_sym__Nonnull] = ACTIONS(6201), - [anon_sym_mutable] = ACTIONS(6201), - [anon_sym_constinit] = ACTIONS(6201), - [anon_sym_consteval] = ACTIONS(6201), - [anon_sym_alignas] = ACTIONS(6201), - [anon_sym__Alignas] = ACTIONS(6201), - [anon_sym_QMARK] = ACTIONS(6203), - [anon_sym_STAR_EQ] = ACTIONS(6203), - [anon_sym_SLASH_EQ] = ACTIONS(6203), - [anon_sym_PERCENT_EQ] = ACTIONS(6203), - [anon_sym_PLUS_EQ] = ACTIONS(6203), - [anon_sym_DASH_EQ] = ACTIONS(6203), - [anon_sym_LT_LT_EQ] = ACTIONS(6203), - [anon_sym_GT_GT_EQ] = ACTIONS(6203), - [anon_sym_AMP_EQ] = ACTIONS(6203), - [anon_sym_CARET_EQ] = ACTIONS(6203), - [anon_sym_PIPE_EQ] = ACTIONS(6203), - [anon_sym_and_eq] = ACTIONS(6210), - [anon_sym_or_eq] = ACTIONS(6210), - [anon_sym_xor_eq] = ACTIONS(6210), - [anon_sym_LT_EQ_GT] = ACTIONS(6203), - [anon_sym_or] = ACTIONS(6210), - [anon_sym_and] = ACTIONS(6210), - [anon_sym_bitor] = ACTIONS(6210), - [anon_sym_xor] = ACTIONS(6210), - [anon_sym_bitand] = ACTIONS(6210), - [anon_sym_not_eq] = ACTIONS(6210), - [anon_sym_DASH_DASH] = ACTIONS(6203), - [anon_sym_PLUS_PLUS] = ACTIONS(6203), - [anon_sym_DOT] = ACTIONS(6210), - [anon_sym_DOT_STAR] = ACTIONS(6203), - [anon_sym_DASH_GT] = ACTIONS(6203), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6201), - [anon_sym_decltype] = ACTIONS(6201), - [anon_sym_template] = ACTIONS(6201), - [anon_sym_operator] = ACTIONS(6201), - [anon_sym_LBRACK_COLON] = ACTIONS(6208), + [STATE(1883)] = { + [sym_expression] = STATE(5473), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [STATE(1854)] = { - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(7390), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8904), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8469), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_template_parameter_list] = STATE(993), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(6157), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7831), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(2500), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6218), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(6220), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_for] = ACTIONS(6224), - [anon_sym_typename] = ACTIONS(5102), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [STATE(1884)] = { + [sym_expression] = STATE(5475), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [STATE(1855)] = { - [sym_identifier] = ACTIONS(6226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6228), - [anon_sym_COMMA] = ACTIONS(6228), - [anon_sym_RPAREN] = ACTIONS(6228), - [anon_sym_LPAREN2] = ACTIONS(6230), - [anon_sym_TILDE] = ACTIONS(6233), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6237), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_PERCENT] = ACTIONS(6235), - [anon_sym_PIPE_PIPE] = ACTIONS(6228), - [anon_sym_AMP_AMP] = ACTIONS(6230), - [anon_sym_PIPE] = ACTIONS(6235), - [anon_sym_CARET] = ACTIONS(6235), - [anon_sym_AMP] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6228), - [anon_sym_BANG_EQ] = ACTIONS(6228), - [anon_sym_GT] = ACTIONS(6235), - [anon_sym_GT_EQ] = ACTIONS(6228), - [anon_sym_LT_EQ] = ACTIONS(6235), - [anon_sym_LT] = ACTIONS(6235), - [anon_sym_LT_LT] = ACTIONS(6235), - [anon_sym_GT_GT] = ACTIONS(6235), - [anon_sym_SEMI] = ACTIONS(6228), - [anon_sym___extension__] = ACTIONS(6226), - [anon_sym_virtual] = ACTIONS(6226), - [anon_sym_extern] = ACTIONS(6226), - [anon_sym___attribute__] = ACTIONS(6226), - [anon_sym___attribute] = ACTIONS(6226), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6233), - [anon_sym___declspec] = ACTIONS(6226), - [anon_sym___based] = ACTIONS(6226), - [anon_sym___cdecl] = ACTIONS(6226), - [anon_sym___clrcall] = ACTIONS(6226), - [anon_sym___stdcall] = ACTIONS(6226), - [anon_sym___fastcall] = ACTIONS(6226), - [anon_sym___thiscall] = ACTIONS(6226), - [anon_sym___vectorcall] = ACTIONS(6226), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_RBRACE] = ACTIONS(6228), - [anon_sym_LBRACK] = ACTIONS(6237), - [anon_sym_static] = ACTIONS(6226), - [anon_sym_EQ] = ACTIONS(6235), - [anon_sym_register] = ACTIONS(6226), - [anon_sym_inline] = ACTIONS(6226), - [anon_sym___inline] = ACTIONS(6226), - [anon_sym___inline__] = ACTIONS(6226), - [anon_sym___forceinline] = ACTIONS(6226), - [anon_sym_thread_local] = ACTIONS(6226), - [anon_sym___thread] = ACTIONS(6226), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6226), - [anon_sym_volatile] = ACTIONS(6226), - [anon_sym_restrict] = ACTIONS(6226), - [anon_sym___restrict__] = ACTIONS(6226), - [anon_sym__Atomic] = ACTIONS(6226), - [anon_sym__Noreturn] = ACTIONS(6226), - [anon_sym_noreturn] = ACTIONS(6226), - [anon_sym__Nonnull] = ACTIONS(6226), - [anon_sym_mutable] = ACTIONS(6226), - [anon_sym_constinit] = ACTIONS(6226), - [anon_sym_consteval] = ACTIONS(6226), - [anon_sym_alignas] = ACTIONS(6226), - [anon_sym__Alignas] = ACTIONS(6226), - [anon_sym_QMARK] = ACTIONS(6228), - [anon_sym_STAR_EQ] = ACTIONS(6228), - [anon_sym_SLASH_EQ] = ACTIONS(6228), - [anon_sym_PERCENT_EQ] = ACTIONS(6228), - [anon_sym_PLUS_EQ] = ACTIONS(6228), - [anon_sym_DASH_EQ] = ACTIONS(6228), - [anon_sym_LT_LT_EQ] = ACTIONS(6228), - [anon_sym_GT_GT_EQ] = ACTIONS(6228), - [anon_sym_AMP_EQ] = ACTIONS(6228), - [anon_sym_CARET_EQ] = ACTIONS(6228), - [anon_sym_PIPE_EQ] = ACTIONS(6228), - [anon_sym_and_eq] = ACTIONS(6235), - [anon_sym_or_eq] = ACTIONS(6235), - [anon_sym_xor_eq] = ACTIONS(6235), - [anon_sym_LT_EQ_GT] = ACTIONS(6228), - [anon_sym_or] = ACTIONS(6235), - [anon_sym_and] = ACTIONS(6235), - [anon_sym_bitor] = ACTIONS(6235), - [anon_sym_xor] = ACTIONS(6235), - [anon_sym_bitand] = ACTIONS(6235), - [anon_sym_not_eq] = ACTIONS(6235), - [anon_sym_DASH_DASH] = ACTIONS(6228), - [anon_sym_PLUS_PLUS] = ACTIONS(6228), - [anon_sym_DOT] = ACTIONS(6235), - [anon_sym_DOT_STAR] = ACTIONS(6228), - [anon_sym_DASH_GT] = ACTIONS(6228), + [STATE(1885)] = { + [sym_expression] = STATE(6512), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6226), - [anon_sym_decltype] = ACTIONS(6226), - [anon_sym_template] = ACTIONS(6226), - [anon_sym_operator] = ACTIONS(6226), - [anon_sym_LBRACK_COLON] = ACTIONS(6233), - }, - [STATE(1856)] = { - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(7403), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8953), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8469), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_template_parameter_list] = STATE(992), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(6157), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7831), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(2500), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6218), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(6220), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_for] = ACTIONS(6240), - [anon_sym_typename] = ACTIONS(5102), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(1857)] = { - [sym_identifier] = ACTIONS(6242), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), - [anon_sym_COMMA] = ACTIONS(6244), - [anon_sym_RPAREN] = ACTIONS(6244), - [anon_sym_LPAREN2] = ACTIONS(6244), - [anon_sym_TILDE] = ACTIONS(6244), - [anon_sym_DASH] = ACTIONS(6242), - [anon_sym_PLUS] = ACTIONS(6242), - [anon_sym_STAR] = ACTIONS(6242), - [anon_sym_SLASH] = ACTIONS(6242), - [anon_sym_PERCENT] = ACTIONS(6242), - [anon_sym_PIPE_PIPE] = ACTIONS(6244), - [anon_sym_AMP_AMP] = ACTIONS(6244), - [anon_sym_PIPE] = ACTIONS(6242), - [anon_sym_CARET] = ACTIONS(6242), - [anon_sym_AMP] = ACTIONS(6242), - [anon_sym_EQ_EQ] = ACTIONS(6244), - [anon_sym_BANG_EQ] = ACTIONS(6244), - [anon_sym_GT] = ACTIONS(6242), - [anon_sym_GT_EQ] = ACTIONS(6244), - [anon_sym_LT_EQ] = ACTIONS(6242), - [anon_sym_LT] = ACTIONS(6242), - [anon_sym_LT_LT] = ACTIONS(6242), - [anon_sym_GT_GT] = ACTIONS(6242), - [anon_sym_SEMI] = ACTIONS(6244), - [anon_sym___extension__] = ACTIONS(6242), - [anon_sym_virtual] = ACTIONS(6242), - [anon_sym_extern] = ACTIONS(6242), - [anon_sym___attribute__] = ACTIONS(6242), - [anon_sym___attribute] = ACTIONS(6242), - [anon_sym_COLON_COLON] = ACTIONS(6244), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6244), - [anon_sym___declspec] = ACTIONS(6242), - [anon_sym___based] = ACTIONS(6242), - [anon_sym___cdecl] = ACTIONS(6242), - [anon_sym___clrcall] = ACTIONS(6242), - [anon_sym___stdcall] = ACTIONS(6242), - [anon_sym___fastcall] = ACTIONS(6242), - [anon_sym___thiscall] = ACTIONS(6242), - [anon_sym___vectorcall] = ACTIONS(6242), - [anon_sym_LBRACE] = ACTIONS(6244), - [anon_sym_RBRACE] = ACTIONS(6244), - [anon_sym_LBRACK] = ACTIONS(6242), - [anon_sym_static] = ACTIONS(6242), - [anon_sym_EQ] = ACTIONS(6242), - [anon_sym_register] = ACTIONS(6242), - [anon_sym_inline] = ACTIONS(6242), - [anon_sym___inline] = ACTIONS(6242), - [anon_sym___inline__] = ACTIONS(6242), - [anon_sym___forceinline] = ACTIONS(6242), - [anon_sym_thread_local] = ACTIONS(6242), - [anon_sym___thread] = ACTIONS(6242), - [anon_sym_const] = ACTIONS(6242), - [anon_sym_constexpr] = ACTIONS(6242), - [anon_sym_volatile] = ACTIONS(6242), - [anon_sym_restrict] = ACTIONS(6242), - [anon_sym___restrict__] = ACTIONS(6242), - [anon_sym__Atomic] = ACTIONS(6242), - [anon_sym__Noreturn] = ACTIONS(6242), - [anon_sym_noreturn] = ACTIONS(6242), - [anon_sym__Nonnull] = ACTIONS(6242), - [anon_sym_mutable] = ACTIONS(6242), - [anon_sym_constinit] = ACTIONS(6242), - [anon_sym_consteval] = ACTIONS(6242), - [anon_sym_alignas] = ACTIONS(6242), - [anon_sym__Alignas] = ACTIONS(6242), - [anon_sym_QMARK] = ACTIONS(6244), - [anon_sym_STAR_EQ] = ACTIONS(6244), - [anon_sym_SLASH_EQ] = ACTIONS(6244), - [anon_sym_PERCENT_EQ] = ACTIONS(6244), - [anon_sym_PLUS_EQ] = ACTIONS(6244), - [anon_sym_DASH_EQ] = ACTIONS(6244), - [anon_sym_LT_LT_EQ] = ACTIONS(6244), - [anon_sym_GT_GT_EQ] = ACTIONS(6244), - [anon_sym_AMP_EQ] = ACTIONS(6244), - [anon_sym_CARET_EQ] = ACTIONS(6244), - [anon_sym_PIPE_EQ] = ACTIONS(6244), - [anon_sym_and_eq] = ACTIONS(6242), - [anon_sym_or_eq] = ACTIONS(6242), - [anon_sym_xor_eq] = ACTIONS(6242), - [anon_sym_LT_EQ_GT] = ACTIONS(6244), - [anon_sym_or] = ACTIONS(6242), - [anon_sym_and] = ACTIONS(6242), - [anon_sym_bitor] = ACTIONS(6242), - [anon_sym_xor] = ACTIONS(6242), - [anon_sym_bitand] = ACTIONS(6242), - [anon_sym_not_eq] = ACTIONS(6242), - [anon_sym_DASH_DASH] = ACTIONS(6244), - [anon_sym_PLUS_PLUS] = ACTIONS(6244), - [anon_sym_DOT] = ACTIONS(6242), - [anon_sym_DOT_STAR] = ACTIONS(6244), - [anon_sym_DASH_GT] = ACTIONS(6244), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6242), - [anon_sym_decltype] = ACTIONS(6242), - [anon_sym_template] = ACTIONS(6242), - [anon_sym_operator] = ACTIONS(6242), - [anon_sym_LBRACK_COLON] = ACTIONS(6244), - }, - [STATE(1858)] = { - [sym_identifier] = ACTIONS(6246), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6248), - [anon_sym_COMMA] = ACTIONS(6248), - [anon_sym_RPAREN] = ACTIONS(6248), - [anon_sym_LPAREN2] = ACTIONS(6248), - [anon_sym_TILDE] = ACTIONS(6248), - [anon_sym_DASH] = ACTIONS(6246), - [anon_sym_PLUS] = ACTIONS(6246), - [anon_sym_STAR] = ACTIONS(6246), - [anon_sym_SLASH] = ACTIONS(6246), - [anon_sym_PERCENT] = ACTIONS(6246), - [anon_sym_PIPE_PIPE] = ACTIONS(6248), - [anon_sym_AMP_AMP] = ACTIONS(6248), - [anon_sym_PIPE] = ACTIONS(6246), - [anon_sym_CARET] = ACTIONS(6246), - [anon_sym_AMP] = ACTIONS(6246), - [anon_sym_EQ_EQ] = ACTIONS(6248), - [anon_sym_BANG_EQ] = ACTIONS(6248), - [anon_sym_GT] = ACTIONS(6246), - [anon_sym_GT_EQ] = ACTIONS(6248), - [anon_sym_LT_EQ] = ACTIONS(6246), - [anon_sym_LT] = ACTIONS(6246), - [anon_sym_LT_LT] = ACTIONS(6246), - [anon_sym_GT_GT] = ACTIONS(6246), - [anon_sym_SEMI] = ACTIONS(6248), - [anon_sym___extension__] = ACTIONS(6246), - [anon_sym_virtual] = ACTIONS(6246), - [anon_sym_extern] = ACTIONS(6246), - [anon_sym___attribute__] = ACTIONS(6246), - [anon_sym___attribute] = ACTIONS(6246), - [anon_sym_COLON_COLON] = ACTIONS(6248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6248), - [anon_sym___declspec] = ACTIONS(6246), - [anon_sym___based] = ACTIONS(6246), - [anon_sym___cdecl] = ACTIONS(6246), - [anon_sym___clrcall] = ACTIONS(6246), - [anon_sym___stdcall] = ACTIONS(6246), - [anon_sym___fastcall] = ACTIONS(6246), - [anon_sym___thiscall] = ACTIONS(6246), - [anon_sym___vectorcall] = ACTIONS(6246), - [anon_sym_LBRACE] = ACTIONS(6248), - [anon_sym_RBRACE] = ACTIONS(6248), - [anon_sym_LBRACK] = ACTIONS(6246), - [anon_sym_static] = ACTIONS(6246), - [anon_sym_EQ] = ACTIONS(6246), - [anon_sym_register] = ACTIONS(6246), - [anon_sym_inline] = ACTIONS(6246), - [anon_sym___inline] = ACTIONS(6246), - [anon_sym___inline__] = ACTIONS(6246), - [anon_sym___forceinline] = ACTIONS(6246), - [anon_sym_thread_local] = ACTIONS(6246), - [anon_sym___thread] = ACTIONS(6246), - [anon_sym_const] = ACTIONS(6246), - [anon_sym_constexpr] = ACTIONS(6246), - [anon_sym_volatile] = ACTIONS(6246), - [anon_sym_restrict] = ACTIONS(6246), - [anon_sym___restrict__] = ACTIONS(6246), - [anon_sym__Atomic] = ACTIONS(6246), - [anon_sym__Noreturn] = ACTIONS(6246), - [anon_sym_noreturn] = ACTIONS(6246), - [anon_sym__Nonnull] = ACTIONS(6246), - [anon_sym_mutable] = ACTIONS(6246), - [anon_sym_constinit] = ACTIONS(6246), - [anon_sym_consteval] = ACTIONS(6246), - [anon_sym_alignas] = ACTIONS(6246), - [anon_sym__Alignas] = ACTIONS(6246), - [anon_sym_QMARK] = ACTIONS(6248), - [anon_sym_STAR_EQ] = ACTIONS(6248), - [anon_sym_SLASH_EQ] = ACTIONS(6248), - [anon_sym_PERCENT_EQ] = ACTIONS(6248), - [anon_sym_PLUS_EQ] = ACTIONS(6248), - [anon_sym_DASH_EQ] = ACTIONS(6248), - [anon_sym_LT_LT_EQ] = ACTIONS(6248), - [anon_sym_GT_GT_EQ] = ACTIONS(6248), - [anon_sym_AMP_EQ] = ACTIONS(6248), - [anon_sym_CARET_EQ] = ACTIONS(6248), - [anon_sym_PIPE_EQ] = ACTIONS(6248), - [anon_sym_and_eq] = ACTIONS(6246), - [anon_sym_or_eq] = ACTIONS(6246), - [anon_sym_xor_eq] = ACTIONS(6246), - [anon_sym_LT_EQ_GT] = ACTIONS(6248), - [anon_sym_or] = ACTIONS(6246), - [anon_sym_and] = ACTIONS(6246), - [anon_sym_bitor] = ACTIONS(6246), - [anon_sym_xor] = ACTIONS(6246), - [anon_sym_bitand] = ACTIONS(6246), - [anon_sym_not_eq] = ACTIONS(6246), - [anon_sym_DASH_DASH] = ACTIONS(6248), - [anon_sym_PLUS_PLUS] = ACTIONS(6248), - [anon_sym_DOT] = ACTIONS(6246), - [anon_sym_DOT_STAR] = ACTIONS(6248), - [anon_sym_DASH_GT] = ACTIONS(6248), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6246), - [anon_sym_decltype] = ACTIONS(6246), - [anon_sym_template] = ACTIONS(6246), - [anon_sym_operator] = ACTIONS(6246), - [anon_sym_LBRACK_COLON] = ACTIONS(6248), - }, - [STATE(1859)] = { - [sym_identifier] = ACTIONS(6250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6252), - [anon_sym_COMMA] = ACTIONS(6252), - [anon_sym_RPAREN] = ACTIONS(6252), - [anon_sym_LPAREN2] = ACTIONS(6252), - [anon_sym_TILDE] = ACTIONS(6252), - [anon_sym_DASH] = ACTIONS(6250), - [anon_sym_PLUS] = ACTIONS(6250), - [anon_sym_STAR] = ACTIONS(6250), - [anon_sym_SLASH] = ACTIONS(6250), - [anon_sym_PERCENT] = ACTIONS(6250), - [anon_sym_PIPE_PIPE] = ACTIONS(6252), - [anon_sym_AMP_AMP] = ACTIONS(6252), - [anon_sym_PIPE] = ACTIONS(6250), - [anon_sym_CARET] = ACTIONS(6250), - [anon_sym_AMP] = ACTIONS(6250), - [anon_sym_EQ_EQ] = ACTIONS(6252), - [anon_sym_BANG_EQ] = ACTIONS(6252), - [anon_sym_GT] = ACTIONS(6250), - [anon_sym_GT_EQ] = ACTIONS(6252), - [anon_sym_LT_EQ] = ACTIONS(6250), - [anon_sym_LT] = ACTIONS(6250), - [anon_sym_LT_LT] = ACTIONS(6250), - [anon_sym_GT_GT] = ACTIONS(6250), - [anon_sym_SEMI] = ACTIONS(6252), - [anon_sym___extension__] = ACTIONS(6250), - [anon_sym_virtual] = ACTIONS(6250), - [anon_sym_extern] = ACTIONS(6250), - [anon_sym___attribute__] = ACTIONS(6250), - [anon_sym___attribute] = ACTIONS(6250), - [anon_sym_COLON_COLON] = ACTIONS(6252), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6252), - [anon_sym___declspec] = ACTIONS(6250), - [anon_sym___based] = ACTIONS(6250), - [anon_sym___cdecl] = ACTIONS(6250), - [anon_sym___clrcall] = ACTIONS(6250), - [anon_sym___stdcall] = ACTIONS(6250), - [anon_sym___fastcall] = ACTIONS(6250), - [anon_sym___thiscall] = ACTIONS(6250), - [anon_sym___vectorcall] = ACTIONS(6250), - [anon_sym_LBRACE] = ACTIONS(6252), - [anon_sym_RBRACE] = ACTIONS(6252), - [anon_sym_LBRACK] = ACTIONS(6250), - [anon_sym_static] = ACTIONS(6250), - [anon_sym_EQ] = ACTIONS(6250), - [anon_sym_register] = ACTIONS(6250), - [anon_sym_inline] = ACTIONS(6250), - [anon_sym___inline] = ACTIONS(6250), - [anon_sym___inline__] = ACTIONS(6250), - [anon_sym___forceinline] = ACTIONS(6250), - [anon_sym_thread_local] = ACTIONS(6250), - [anon_sym___thread] = ACTIONS(6250), - [anon_sym_const] = ACTIONS(6250), - [anon_sym_constexpr] = ACTIONS(6250), - [anon_sym_volatile] = ACTIONS(6250), - [anon_sym_restrict] = ACTIONS(6250), - [anon_sym___restrict__] = ACTIONS(6250), - [anon_sym__Atomic] = ACTIONS(6250), - [anon_sym__Noreturn] = ACTIONS(6250), - [anon_sym_noreturn] = ACTIONS(6250), - [anon_sym__Nonnull] = ACTIONS(6250), - [anon_sym_mutable] = ACTIONS(6250), - [anon_sym_constinit] = ACTIONS(6250), - [anon_sym_consteval] = ACTIONS(6250), - [anon_sym_alignas] = ACTIONS(6250), - [anon_sym__Alignas] = ACTIONS(6250), - [anon_sym_QMARK] = ACTIONS(6252), - [anon_sym_STAR_EQ] = ACTIONS(6252), - [anon_sym_SLASH_EQ] = ACTIONS(6252), - [anon_sym_PERCENT_EQ] = ACTIONS(6252), - [anon_sym_PLUS_EQ] = ACTIONS(6252), - [anon_sym_DASH_EQ] = ACTIONS(6252), - [anon_sym_LT_LT_EQ] = ACTIONS(6252), - [anon_sym_GT_GT_EQ] = ACTIONS(6252), - [anon_sym_AMP_EQ] = ACTIONS(6252), - [anon_sym_CARET_EQ] = ACTIONS(6252), - [anon_sym_PIPE_EQ] = ACTIONS(6252), - [anon_sym_and_eq] = ACTIONS(6250), - [anon_sym_or_eq] = ACTIONS(6250), - [anon_sym_xor_eq] = ACTIONS(6250), - [anon_sym_LT_EQ_GT] = ACTIONS(6252), - [anon_sym_or] = ACTIONS(6250), - [anon_sym_and] = ACTIONS(6250), - [anon_sym_bitor] = ACTIONS(6250), - [anon_sym_xor] = ACTIONS(6250), - [anon_sym_bitand] = ACTIONS(6250), - [anon_sym_not_eq] = ACTIONS(6250), - [anon_sym_DASH_DASH] = ACTIONS(6252), - [anon_sym_PLUS_PLUS] = ACTIONS(6252), - [anon_sym_DOT] = ACTIONS(6250), - [anon_sym_DOT_STAR] = ACTIONS(6252), - [anon_sym_DASH_GT] = ACTIONS(6252), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6250), - [anon_sym_decltype] = ACTIONS(6250), - [anon_sym_template] = ACTIONS(6250), - [anon_sym_operator] = ACTIONS(6250), - [anon_sym_LBRACK_COLON] = ACTIONS(6252), - }, - [STATE(1860)] = { - [sym_identifier] = ACTIONS(6254), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6256), - [anon_sym_COMMA] = ACTIONS(6256), - [anon_sym_RPAREN] = ACTIONS(6256), - [anon_sym_LPAREN2] = ACTIONS(6256), - [anon_sym_TILDE] = ACTIONS(6256), - [anon_sym_DASH] = ACTIONS(6254), - [anon_sym_PLUS] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(6254), - [anon_sym_SLASH] = ACTIONS(6254), - [anon_sym_PERCENT] = ACTIONS(6254), - [anon_sym_PIPE_PIPE] = ACTIONS(6256), - [anon_sym_AMP_AMP] = ACTIONS(6256), - [anon_sym_PIPE] = ACTIONS(6254), - [anon_sym_CARET] = ACTIONS(6254), - [anon_sym_AMP] = ACTIONS(6254), - [anon_sym_EQ_EQ] = ACTIONS(6256), - [anon_sym_BANG_EQ] = ACTIONS(6256), - [anon_sym_GT] = ACTIONS(6254), - [anon_sym_GT_EQ] = ACTIONS(6256), - [anon_sym_LT_EQ] = ACTIONS(6254), - [anon_sym_LT] = ACTIONS(6254), - [anon_sym_LT_LT] = ACTIONS(6254), - [anon_sym_GT_GT] = ACTIONS(6254), - [anon_sym_SEMI] = ACTIONS(6256), - [anon_sym___extension__] = ACTIONS(6254), - [anon_sym_virtual] = ACTIONS(6254), - [anon_sym_extern] = ACTIONS(6254), - [anon_sym___attribute__] = ACTIONS(6254), - [anon_sym___attribute] = ACTIONS(6254), - [anon_sym_COLON_COLON] = ACTIONS(6256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6256), - [anon_sym___declspec] = ACTIONS(6254), - [anon_sym___based] = ACTIONS(6254), - [anon_sym___cdecl] = ACTIONS(6254), - [anon_sym___clrcall] = ACTIONS(6254), - [anon_sym___stdcall] = ACTIONS(6254), - [anon_sym___fastcall] = ACTIONS(6254), - [anon_sym___thiscall] = ACTIONS(6254), - [anon_sym___vectorcall] = ACTIONS(6254), - [anon_sym_LBRACE] = ACTIONS(6256), - [anon_sym_RBRACE] = ACTIONS(6256), - [anon_sym_LBRACK] = ACTIONS(6254), - [anon_sym_static] = ACTIONS(6254), - [anon_sym_EQ] = ACTIONS(6254), - [anon_sym_register] = ACTIONS(6254), - [anon_sym_inline] = ACTIONS(6254), - [anon_sym___inline] = ACTIONS(6254), - [anon_sym___inline__] = ACTIONS(6254), - [anon_sym___forceinline] = ACTIONS(6254), - [anon_sym_thread_local] = ACTIONS(6254), - [anon_sym___thread] = ACTIONS(6254), - [anon_sym_const] = ACTIONS(6254), - [anon_sym_constexpr] = ACTIONS(6254), - [anon_sym_volatile] = ACTIONS(6254), - [anon_sym_restrict] = ACTIONS(6254), - [anon_sym___restrict__] = ACTIONS(6254), - [anon_sym__Atomic] = ACTIONS(6254), - [anon_sym__Noreturn] = ACTIONS(6254), - [anon_sym_noreturn] = ACTIONS(6254), - [anon_sym__Nonnull] = ACTIONS(6254), - [anon_sym_mutable] = ACTIONS(6254), - [anon_sym_constinit] = ACTIONS(6254), - [anon_sym_consteval] = ACTIONS(6254), - [anon_sym_alignas] = ACTIONS(6254), - [anon_sym__Alignas] = ACTIONS(6254), - [anon_sym_QMARK] = ACTIONS(6256), - [anon_sym_STAR_EQ] = ACTIONS(6256), - [anon_sym_SLASH_EQ] = ACTIONS(6256), - [anon_sym_PERCENT_EQ] = ACTIONS(6256), - [anon_sym_PLUS_EQ] = ACTIONS(6256), - [anon_sym_DASH_EQ] = ACTIONS(6256), - [anon_sym_LT_LT_EQ] = ACTIONS(6256), - [anon_sym_GT_GT_EQ] = ACTIONS(6256), - [anon_sym_AMP_EQ] = ACTIONS(6256), - [anon_sym_CARET_EQ] = ACTIONS(6256), - [anon_sym_PIPE_EQ] = ACTIONS(6256), - [anon_sym_and_eq] = ACTIONS(6254), - [anon_sym_or_eq] = ACTIONS(6254), - [anon_sym_xor_eq] = ACTIONS(6254), - [anon_sym_LT_EQ_GT] = ACTIONS(6256), - [anon_sym_or] = ACTIONS(6254), - [anon_sym_and] = ACTIONS(6254), - [anon_sym_bitor] = ACTIONS(6254), - [anon_sym_xor] = ACTIONS(6254), - [anon_sym_bitand] = ACTIONS(6254), - [anon_sym_not_eq] = ACTIONS(6254), - [anon_sym_DASH_DASH] = ACTIONS(6256), - [anon_sym_PLUS_PLUS] = ACTIONS(6256), - [anon_sym_DOT] = ACTIONS(6254), - [anon_sym_DOT_STAR] = ACTIONS(6256), - [anon_sym_DASH_GT] = ACTIONS(6256), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6254), - [anon_sym_decltype] = ACTIONS(6254), - [anon_sym_template] = ACTIONS(6254), - [anon_sym_operator] = ACTIONS(6254), - [anon_sym_LBRACK_COLON] = ACTIONS(6256), - }, - [STATE(1861)] = { - [sym_identifier] = ACTIONS(6258), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), - [anon_sym_COMMA] = ACTIONS(6260), - [anon_sym_RPAREN] = ACTIONS(6260), - [anon_sym_LPAREN2] = ACTIONS(6260), - [anon_sym_TILDE] = ACTIONS(6260), - [anon_sym_DASH] = ACTIONS(6258), - [anon_sym_PLUS] = ACTIONS(6258), - [anon_sym_STAR] = ACTIONS(6258), - [anon_sym_SLASH] = ACTIONS(6258), - [anon_sym_PERCENT] = ACTIONS(6258), - [anon_sym_PIPE_PIPE] = ACTIONS(6260), - [anon_sym_AMP_AMP] = ACTIONS(6260), - [anon_sym_PIPE] = ACTIONS(6258), - [anon_sym_CARET] = ACTIONS(6258), - [anon_sym_AMP] = ACTIONS(6258), - [anon_sym_EQ_EQ] = ACTIONS(6260), - [anon_sym_BANG_EQ] = ACTIONS(6260), - [anon_sym_GT] = ACTIONS(6258), - [anon_sym_GT_EQ] = ACTIONS(6260), - [anon_sym_LT_EQ] = ACTIONS(6258), - [anon_sym_LT] = ACTIONS(6258), - [anon_sym_LT_LT] = ACTIONS(6258), - [anon_sym_GT_GT] = ACTIONS(6258), - [anon_sym_SEMI] = ACTIONS(6260), - [anon_sym___extension__] = ACTIONS(6258), - [anon_sym_virtual] = ACTIONS(6258), - [anon_sym_extern] = ACTIONS(6258), - [anon_sym___attribute__] = ACTIONS(6258), - [anon_sym___attribute] = ACTIONS(6258), - [anon_sym_COLON_COLON] = ACTIONS(6260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6260), - [anon_sym___declspec] = ACTIONS(6258), - [anon_sym___based] = ACTIONS(6258), - [anon_sym___cdecl] = ACTIONS(6258), - [anon_sym___clrcall] = ACTIONS(6258), - [anon_sym___stdcall] = ACTIONS(6258), - [anon_sym___fastcall] = ACTIONS(6258), - [anon_sym___thiscall] = ACTIONS(6258), - [anon_sym___vectorcall] = ACTIONS(6258), - [anon_sym_LBRACE] = ACTIONS(6260), - [anon_sym_RBRACE] = ACTIONS(6260), - [anon_sym_LBRACK] = ACTIONS(6258), - [anon_sym_static] = ACTIONS(6258), - [anon_sym_EQ] = ACTIONS(6258), - [anon_sym_register] = ACTIONS(6258), - [anon_sym_inline] = ACTIONS(6258), - [anon_sym___inline] = ACTIONS(6258), - [anon_sym___inline__] = ACTIONS(6258), - [anon_sym___forceinline] = ACTIONS(6258), - [anon_sym_thread_local] = ACTIONS(6258), - [anon_sym___thread] = ACTIONS(6258), - [anon_sym_const] = ACTIONS(6258), - [anon_sym_constexpr] = ACTIONS(6258), - [anon_sym_volatile] = ACTIONS(6258), - [anon_sym_restrict] = ACTIONS(6258), - [anon_sym___restrict__] = ACTIONS(6258), - [anon_sym__Atomic] = ACTIONS(6258), - [anon_sym__Noreturn] = ACTIONS(6258), - [anon_sym_noreturn] = ACTIONS(6258), - [anon_sym__Nonnull] = ACTIONS(6258), - [anon_sym_mutable] = ACTIONS(6258), - [anon_sym_constinit] = ACTIONS(6258), - [anon_sym_consteval] = ACTIONS(6258), - [anon_sym_alignas] = ACTIONS(6258), - [anon_sym__Alignas] = ACTIONS(6258), - [anon_sym_QMARK] = ACTIONS(6260), - [anon_sym_STAR_EQ] = ACTIONS(6260), - [anon_sym_SLASH_EQ] = ACTIONS(6260), - [anon_sym_PERCENT_EQ] = ACTIONS(6260), - [anon_sym_PLUS_EQ] = ACTIONS(6260), - [anon_sym_DASH_EQ] = ACTIONS(6260), - [anon_sym_LT_LT_EQ] = ACTIONS(6260), - [anon_sym_GT_GT_EQ] = ACTIONS(6260), - [anon_sym_AMP_EQ] = ACTIONS(6260), - [anon_sym_CARET_EQ] = ACTIONS(6260), - [anon_sym_PIPE_EQ] = ACTIONS(6260), - [anon_sym_and_eq] = ACTIONS(6258), - [anon_sym_or_eq] = ACTIONS(6258), - [anon_sym_xor_eq] = ACTIONS(6258), - [anon_sym_LT_EQ_GT] = ACTIONS(6260), - [anon_sym_or] = ACTIONS(6258), - [anon_sym_and] = ACTIONS(6258), - [anon_sym_bitor] = ACTIONS(6258), - [anon_sym_xor] = ACTIONS(6258), - [anon_sym_bitand] = ACTIONS(6258), - [anon_sym_not_eq] = ACTIONS(6258), - [anon_sym_DASH_DASH] = ACTIONS(6260), - [anon_sym_PLUS_PLUS] = ACTIONS(6260), - [anon_sym_DOT] = ACTIONS(6258), - [anon_sym_DOT_STAR] = ACTIONS(6260), - [anon_sym_DASH_GT] = ACTIONS(6260), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6258), - [anon_sym_decltype] = ACTIONS(6258), - [anon_sym_template] = ACTIONS(6258), - [anon_sym_operator] = ACTIONS(6258), - [anon_sym_LBRACK_COLON] = ACTIONS(6260), - }, - [STATE(1862)] = { - [sym_identifier] = ACTIONS(6262), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), - [anon_sym_COMMA] = ACTIONS(6264), - [anon_sym_RPAREN] = ACTIONS(6264), - [anon_sym_LPAREN2] = ACTIONS(6264), - [anon_sym_TILDE] = ACTIONS(6264), - [anon_sym_DASH] = ACTIONS(6262), - [anon_sym_PLUS] = ACTIONS(6262), - [anon_sym_STAR] = ACTIONS(6262), - [anon_sym_SLASH] = ACTIONS(6262), - [anon_sym_PERCENT] = ACTIONS(6262), - [anon_sym_PIPE_PIPE] = ACTIONS(6264), - [anon_sym_AMP_AMP] = ACTIONS(6264), - [anon_sym_PIPE] = ACTIONS(6262), - [anon_sym_CARET] = ACTIONS(6262), - [anon_sym_AMP] = ACTIONS(6262), - [anon_sym_EQ_EQ] = ACTIONS(6264), - [anon_sym_BANG_EQ] = ACTIONS(6264), - [anon_sym_GT] = ACTIONS(6262), - [anon_sym_GT_EQ] = ACTIONS(6264), - [anon_sym_LT_EQ] = ACTIONS(6262), - [anon_sym_LT] = ACTIONS(6262), - [anon_sym_LT_LT] = ACTIONS(6262), - [anon_sym_GT_GT] = ACTIONS(6262), - [anon_sym_SEMI] = ACTIONS(6264), - [anon_sym___extension__] = ACTIONS(6262), - [anon_sym_virtual] = ACTIONS(6262), - [anon_sym_extern] = ACTIONS(6262), - [anon_sym___attribute__] = ACTIONS(6262), - [anon_sym___attribute] = ACTIONS(6262), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6264), - [anon_sym___declspec] = ACTIONS(6262), - [anon_sym___based] = ACTIONS(6262), - [anon_sym___cdecl] = ACTIONS(6262), - [anon_sym___clrcall] = ACTIONS(6262), - [anon_sym___stdcall] = ACTIONS(6262), - [anon_sym___fastcall] = ACTIONS(6262), - [anon_sym___thiscall] = ACTIONS(6262), - [anon_sym___vectorcall] = ACTIONS(6262), - [anon_sym_LBRACE] = ACTIONS(6264), - [anon_sym_RBRACE] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(6262), - [anon_sym_static] = ACTIONS(6262), - [anon_sym_EQ] = ACTIONS(6262), - [anon_sym_register] = ACTIONS(6262), - [anon_sym_inline] = ACTIONS(6262), - [anon_sym___inline] = ACTIONS(6262), - [anon_sym___inline__] = ACTIONS(6262), - [anon_sym___forceinline] = ACTIONS(6262), - [anon_sym_thread_local] = ACTIONS(6262), - [anon_sym___thread] = ACTIONS(6262), - [anon_sym_const] = ACTIONS(6262), - [anon_sym_constexpr] = ACTIONS(6262), - [anon_sym_volatile] = ACTIONS(6262), - [anon_sym_restrict] = ACTIONS(6262), - [anon_sym___restrict__] = ACTIONS(6262), - [anon_sym__Atomic] = ACTIONS(6262), - [anon_sym__Noreturn] = ACTIONS(6262), - [anon_sym_noreturn] = ACTIONS(6262), - [anon_sym__Nonnull] = ACTIONS(6262), - [anon_sym_mutable] = ACTIONS(6262), - [anon_sym_constinit] = ACTIONS(6262), - [anon_sym_consteval] = ACTIONS(6262), - [anon_sym_alignas] = ACTIONS(6262), - [anon_sym__Alignas] = ACTIONS(6262), - [anon_sym_QMARK] = ACTIONS(6264), - [anon_sym_STAR_EQ] = ACTIONS(6264), - [anon_sym_SLASH_EQ] = ACTIONS(6264), - [anon_sym_PERCENT_EQ] = ACTIONS(6264), - [anon_sym_PLUS_EQ] = ACTIONS(6264), - [anon_sym_DASH_EQ] = ACTIONS(6264), - [anon_sym_LT_LT_EQ] = ACTIONS(6264), - [anon_sym_GT_GT_EQ] = ACTIONS(6264), - [anon_sym_AMP_EQ] = ACTIONS(6264), - [anon_sym_CARET_EQ] = ACTIONS(6264), - [anon_sym_PIPE_EQ] = ACTIONS(6264), - [anon_sym_and_eq] = ACTIONS(6262), - [anon_sym_or_eq] = ACTIONS(6262), - [anon_sym_xor_eq] = ACTIONS(6262), - [anon_sym_LT_EQ_GT] = ACTIONS(6264), - [anon_sym_or] = ACTIONS(6262), - [anon_sym_and] = ACTIONS(6262), - [anon_sym_bitor] = ACTIONS(6262), - [anon_sym_xor] = ACTIONS(6262), - [anon_sym_bitand] = ACTIONS(6262), - [anon_sym_not_eq] = ACTIONS(6262), - [anon_sym_DASH_DASH] = ACTIONS(6264), - [anon_sym_PLUS_PLUS] = ACTIONS(6264), - [anon_sym_DOT] = ACTIONS(6262), - [anon_sym_DOT_STAR] = ACTIONS(6264), - [anon_sym_DASH_GT] = ACTIONS(6264), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6262), - [anon_sym_decltype] = ACTIONS(6262), - [anon_sym_template] = ACTIONS(6262), - [anon_sym_operator] = ACTIONS(6262), - [anon_sym_LBRACK_COLON] = ACTIONS(6264), - }, - [STATE(1863)] = { - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(7424), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8892), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8469), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_template_parameter_list] = STATE(994), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(6157), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7831), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(2500), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6218), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(6220), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_for] = ACTIONS(6266), - [anon_sym_typename] = ACTIONS(5102), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(1864)] = { - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(7400), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8916), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8469), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_template_parameter_list] = STATE(996), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(6157), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7831), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(2500), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6218), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(6220), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_for] = ACTIONS(6268), - [anon_sym_typename] = ACTIONS(5102), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(1865)] = { - [sym_template_argument_list] = STATE(1868), - [sym_identifier] = ACTIONS(6201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6203), - [anon_sym_COMMA] = ACTIONS(6203), - [anon_sym_LPAREN2] = ACTIONS(6205), - [anon_sym_TILDE] = ACTIONS(6208), - [anon_sym_DASH] = ACTIONS(6210), - [anon_sym_PLUS] = ACTIONS(6210), - [anon_sym_STAR] = ACTIONS(6212), - [anon_sym_SLASH] = ACTIONS(6210), - [anon_sym_PERCENT] = ACTIONS(6210), - [anon_sym_PIPE_PIPE] = ACTIONS(6203), - [anon_sym_AMP_AMP] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(6210), - [anon_sym_CARET] = ACTIONS(6210), - [anon_sym_AMP] = ACTIONS(6212), - [anon_sym_EQ_EQ] = ACTIONS(6203), - [anon_sym_BANG_EQ] = ACTIONS(6203), - [anon_sym_GT] = ACTIONS(6210), - [anon_sym_GT_EQ] = ACTIONS(6203), - [anon_sym_LT_EQ] = ACTIONS(6210), - [anon_sym_LT] = ACTIONS(6215), - [anon_sym_LT_LT] = ACTIONS(6210), - [anon_sym_GT_GT] = ACTIONS(6210), - [anon_sym_SEMI] = ACTIONS(6205), - [anon_sym___extension__] = ACTIONS(6201), - [anon_sym_virtual] = ACTIONS(6201), - [anon_sym_extern] = ACTIONS(6201), - [anon_sym___attribute__] = ACTIONS(6201), - [anon_sym___attribute] = ACTIONS(6201), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6205), - [anon_sym___declspec] = ACTIONS(6201), - [anon_sym___based] = ACTIONS(6201), - [anon_sym___cdecl] = ACTIONS(6201), - [anon_sym___clrcall] = ACTIONS(6201), - [anon_sym___stdcall] = ACTIONS(6201), - [anon_sym___fastcall] = ACTIONS(6201), - [anon_sym___thiscall] = ACTIONS(6201), - [anon_sym___vectorcall] = ACTIONS(6201), - [anon_sym_LBRACE] = ACTIONS(6208), - [anon_sym_RBRACE] = ACTIONS(6203), - [anon_sym_LBRACK] = ACTIONS(6212), - [anon_sym_static] = ACTIONS(6201), - [anon_sym_EQ] = ACTIONS(6210), - [anon_sym_register] = ACTIONS(6201), - [anon_sym_inline] = ACTIONS(6201), - [anon_sym___inline] = ACTIONS(6201), - [anon_sym___inline__] = ACTIONS(6201), - [anon_sym___forceinline] = ACTIONS(6201), - [anon_sym_thread_local] = ACTIONS(6201), - [anon_sym___thread] = ACTIONS(6201), - [anon_sym_const] = ACTIONS(6201), - [anon_sym_constexpr] = ACTIONS(6201), - [anon_sym_volatile] = ACTIONS(6201), - [anon_sym_restrict] = ACTIONS(6201), - [anon_sym___restrict__] = ACTIONS(6201), - [anon_sym__Atomic] = ACTIONS(6201), - [anon_sym__Noreturn] = ACTIONS(6201), - [anon_sym_noreturn] = ACTIONS(6201), - [anon_sym__Nonnull] = ACTIONS(6201), - [anon_sym_mutable] = ACTIONS(6201), - [anon_sym_constinit] = ACTIONS(6201), - [anon_sym_consteval] = ACTIONS(6201), - [anon_sym_alignas] = ACTIONS(6201), - [anon_sym__Alignas] = ACTIONS(6201), - [anon_sym_QMARK] = ACTIONS(6203), - [anon_sym_STAR_EQ] = ACTIONS(6203), - [anon_sym_SLASH_EQ] = ACTIONS(6203), - [anon_sym_PERCENT_EQ] = ACTIONS(6203), - [anon_sym_PLUS_EQ] = ACTIONS(6203), - [anon_sym_DASH_EQ] = ACTIONS(6203), - [anon_sym_LT_LT_EQ] = ACTIONS(6203), - [anon_sym_GT_GT_EQ] = ACTIONS(6203), - [anon_sym_AMP_EQ] = ACTIONS(6203), - [anon_sym_CARET_EQ] = ACTIONS(6203), - [anon_sym_PIPE_EQ] = ACTIONS(6203), - [anon_sym_and_eq] = ACTIONS(6210), - [anon_sym_or_eq] = ACTIONS(6210), - [anon_sym_xor_eq] = ACTIONS(6210), - [anon_sym_LT_EQ_GT] = ACTIONS(6203), - [anon_sym_or] = ACTIONS(6210), - [anon_sym_and] = ACTIONS(6210), - [anon_sym_bitor] = ACTIONS(6210), - [anon_sym_xor] = ACTIONS(6210), - [anon_sym_bitand] = ACTIONS(6210), - [anon_sym_not_eq] = ACTIONS(6210), - [anon_sym_DASH_DASH] = ACTIONS(6203), - [anon_sym_PLUS_PLUS] = ACTIONS(6203), - [anon_sym_DOT] = ACTIONS(6210), - [anon_sym_DOT_STAR] = ACTIONS(6203), - [anon_sym_DASH_GT] = ACTIONS(6203), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6201), - [anon_sym_decltype] = ACTIONS(6201), - [anon_sym_template] = ACTIONS(6201), - [anon_sym_operator] = ACTIONS(6201), - [anon_sym_LBRACK_COLON] = ACTIONS(6208), - }, - [STATE(1866)] = { - [sym_identifier] = ACTIONS(6270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6272), - [anon_sym_COMMA] = ACTIONS(6272), - [anon_sym_RPAREN] = ACTIONS(6272), - [anon_sym_LPAREN2] = ACTIONS(6272), - [anon_sym_TILDE] = ACTIONS(6272), - [anon_sym_DASH] = ACTIONS(6270), - [anon_sym_PLUS] = ACTIONS(6270), - [anon_sym_STAR] = ACTIONS(6270), - [anon_sym_SLASH] = ACTIONS(6270), - [anon_sym_PERCENT] = ACTIONS(6270), - [anon_sym_PIPE_PIPE] = ACTIONS(6272), - [anon_sym_AMP_AMP] = ACTIONS(6272), - [anon_sym_PIPE] = ACTIONS(6270), - [anon_sym_CARET] = ACTIONS(6270), - [anon_sym_AMP] = ACTIONS(6270), - [anon_sym_EQ_EQ] = ACTIONS(6272), - [anon_sym_BANG_EQ] = ACTIONS(6272), - [anon_sym_GT] = ACTIONS(6270), - [anon_sym_GT_EQ] = ACTIONS(6272), - [anon_sym_LT_EQ] = ACTIONS(6270), - [anon_sym_LT] = ACTIONS(6270), - [anon_sym_LT_LT] = ACTIONS(6270), - [anon_sym_GT_GT] = ACTIONS(6270), - [anon_sym_SEMI] = ACTIONS(6272), - [anon_sym___extension__] = ACTIONS(6270), - [anon_sym_virtual] = ACTIONS(6270), - [anon_sym_extern] = ACTIONS(6270), - [anon_sym___attribute__] = ACTIONS(6270), - [anon_sym___attribute] = ACTIONS(6270), - [anon_sym_COLON_COLON] = ACTIONS(6272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6272), - [anon_sym___declspec] = ACTIONS(6270), - [anon_sym___based] = ACTIONS(6270), - [anon_sym___cdecl] = ACTIONS(6270), - [anon_sym___clrcall] = ACTIONS(6270), - [anon_sym___stdcall] = ACTIONS(6270), - [anon_sym___fastcall] = ACTIONS(6270), - [anon_sym___thiscall] = ACTIONS(6270), - [anon_sym___vectorcall] = ACTIONS(6270), - [anon_sym_LBRACE] = ACTIONS(6272), - [anon_sym_RBRACE] = ACTIONS(6272), - [anon_sym_LBRACK] = ACTIONS(6270), - [anon_sym_static] = ACTIONS(6270), - [anon_sym_EQ] = ACTIONS(6270), - [anon_sym_register] = ACTIONS(6270), - [anon_sym_inline] = ACTIONS(6270), - [anon_sym___inline] = ACTIONS(6270), - [anon_sym___inline__] = ACTIONS(6270), - [anon_sym___forceinline] = ACTIONS(6270), - [anon_sym_thread_local] = ACTIONS(6270), - [anon_sym___thread] = ACTIONS(6270), - [anon_sym_const] = ACTIONS(6270), - [anon_sym_constexpr] = ACTIONS(6270), - [anon_sym_volatile] = ACTIONS(6270), - [anon_sym_restrict] = ACTIONS(6270), - [anon_sym___restrict__] = ACTIONS(6270), - [anon_sym__Atomic] = ACTIONS(6270), - [anon_sym__Noreturn] = ACTIONS(6270), - [anon_sym_noreturn] = ACTIONS(6270), - [anon_sym__Nonnull] = ACTIONS(6270), - [anon_sym_mutable] = ACTIONS(6270), - [anon_sym_constinit] = ACTIONS(6270), - [anon_sym_consteval] = ACTIONS(6270), - [anon_sym_alignas] = ACTIONS(6270), - [anon_sym__Alignas] = ACTIONS(6270), - [anon_sym_QMARK] = ACTIONS(6272), - [anon_sym_STAR_EQ] = ACTIONS(6272), - [anon_sym_SLASH_EQ] = ACTIONS(6272), - [anon_sym_PERCENT_EQ] = ACTIONS(6272), - [anon_sym_PLUS_EQ] = ACTIONS(6272), - [anon_sym_DASH_EQ] = ACTIONS(6272), - [anon_sym_LT_LT_EQ] = ACTIONS(6272), - [anon_sym_GT_GT_EQ] = ACTIONS(6272), - [anon_sym_AMP_EQ] = ACTIONS(6272), - [anon_sym_CARET_EQ] = ACTIONS(6272), - [anon_sym_PIPE_EQ] = ACTIONS(6272), - [anon_sym_and_eq] = ACTIONS(6270), - [anon_sym_or_eq] = ACTIONS(6270), - [anon_sym_xor_eq] = ACTIONS(6270), - [anon_sym_LT_EQ_GT] = ACTIONS(6272), - [anon_sym_or] = ACTIONS(6270), - [anon_sym_and] = ACTIONS(6270), - [anon_sym_bitor] = ACTIONS(6270), - [anon_sym_xor] = ACTIONS(6270), - [anon_sym_bitand] = ACTIONS(6270), - [anon_sym_not_eq] = ACTIONS(6270), - [anon_sym_DASH_DASH] = ACTIONS(6272), - [anon_sym_PLUS_PLUS] = ACTIONS(6272), - [anon_sym_DOT] = ACTIONS(6270), - [anon_sym_DOT_STAR] = ACTIONS(6272), - [anon_sym_DASH_GT] = ACTIONS(6272), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6270), - [anon_sym_decltype] = ACTIONS(6270), - [anon_sym_template] = ACTIONS(6270), - [anon_sym_operator] = ACTIONS(6270), - [anon_sym_LBRACK_COLON] = ACTIONS(6272), - }, - [STATE(1867)] = { - [sym_attribute_specifier] = STATE(2011), - [sym_attribute_declaration] = STATE(4328), - [sym_type_qualifier] = STATE(2206), - [sym_alignas_qualifier] = STATE(2300), - [sym_gnu_asm_expression] = STATE(8980), - [sym_virtual_specifier] = STATE(4455), - [sym_ref_qualifier] = STATE(2404), - [sym__function_attributes_start] = STATE(2322), - [sym__function_exception_specification] = STATE(2803), - [sym__function_attributes_end] = STATE(4212), - [sym__function_postfix] = STATE(4682), - [sym_trailing_return_type] = STATE(4222), - [sym_noexcept] = STATE(2803), - [sym_throw_specifier] = STATE(2803), - [sym_requires_clause] = STATE(4682), - [aux_sym_type_definition_repeat1] = STATE(2011), - [aux_sym__type_definition_type_repeat1] = STATE(2206), - [aux_sym_attributed_declarator_repeat1] = STATE(4328), - [aux_sym__function_postfix_repeat1] = STATE(4455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_RPAREN] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6113), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6111), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(6274), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_AMP] = ACTIONS(6277), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6111), - [anon_sym_GT_GT] = ACTIONS(6111), - [anon_sym___extension__] = ACTIONS(6280), - [anon_sym___attribute__] = ACTIONS(6282), - [anon_sym___attribute] = ACTIONS(6284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_const] = ACTIONS(6288), - [anon_sym_constexpr] = ACTIONS(6280), - [anon_sym_volatile] = ACTIONS(6280), - [anon_sym_restrict] = ACTIONS(6280), - [anon_sym___restrict__] = ACTIONS(6280), - [anon_sym__Atomic] = ACTIONS(6280), - [anon_sym__Noreturn] = ACTIONS(6280), - [anon_sym_noreturn] = ACTIONS(6280), - [anon_sym__Nonnull] = ACTIONS(6280), - [anon_sym_mutable] = ACTIONS(6280), - [anon_sym_constinit] = ACTIONS(6280), - [anon_sym_consteval] = ACTIONS(6280), - [anon_sym_alignas] = ACTIONS(6290), - [anon_sym__Alignas] = ACTIONS(6290), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_STAR_EQ] = ACTIONS(6113), - [anon_sym_SLASH_EQ] = ACTIONS(6113), - [anon_sym_PERCENT_EQ] = ACTIONS(6113), - [anon_sym_PLUS_EQ] = ACTIONS(6113), - [anon_sym_DASH_EQ] = ACTIONS(6113), - [anon_sym_LT_LT_EQ] = ACTIONS(6113), - [anon_sym_GT_GT_EQ] = ACTIONS(6113), - [anon_sym_AMP_EQ] = ACTIONS(6113), - [anon_sym_CARET_EQ] = ACTIONS(6113), - [anon_sym_PIPE_EQ] = ACTIONS(6113), - [anon_sym_and_eq] = ACTIONS(6113), - [anon_sym_or_eq] = ACTIONS(6113), - [anon_sym_xor_eq] = ACTIONS(6113), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6111), - [anon_sym_and] = ACTIONS(6111), - [anon_sym_bitor] = ACTIONS(6113), - [anon_sym_xor] = ACTIONS(6111), - [anon_sym_bitand] = ACTIONS(6113), - [anon_sym_not_eq] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(6292), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6295), - [anon_sym_override] = ACTIONS(6295), - [anon_sym_noexcept] = ACTIONS(6298), - [anon_sym_throw] = ACTIONS(6300), - [anon_sym_requires] = ACTIONS(6302), - [anon_sym_DASH_GT_STAR] = ACTIONS(6113), - }, - [STATE(1868)] = { - [sym_identifier] = ACTIONS(6226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6228), - [anon_sym_COMMA] = ACTIONS(6228), - [anon_sym_LPAREN2] = ACTIONS(6230), - [anon_sym_TILDE] = ACTIONS(6233), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6237), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_PERCENT] = ACTIONS(6235), - [anon_sym_PIPE_PIPE] = ACTIONS(6228), - [anon_sym_AMP_AMP] = ACTIONS(6230), - [anon_sym_PIPE] = ACTIONS(6235), - [anon_sym_CARET] = ACTIONS(6235), - [anon_sym_AMP] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6228), - [anon_sym_BANG_EQ] = ACTIONS(6228), - [anon_sym_GT] = ACTIONS(6235), - [anon_sym_GT_EQ] = ACTIONS(6228), - [anon_sym_LT_EQ] = ACTIONS(6235), - [anon_sym_LT] = ACTIONS(6235), - [anon_sym_LT_LT] = ACTIONS(6235), - [anon_sym_GT_GT] = ACTIONS(6235), - [anon_sym_SEMI] = ACTIONS(6230), - [anon_sym___extension__] = ACTIONS(6226), - [anon_sym_virtual] = ACTIONS(6226), - [anon_sym_extern] = ACTIONS(6226), - [anon_sym___attribute__] = ACTIONS(6226), - [anon_sym___attribute] = ACTIONS(6226), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6230), - [anon_sym___declspec] = ACTIONS(6226), - [anon_sym___based] = ACTIONS(6226), - [anon_sym___cdecl] = ACTIONS(6226), - [anon_sym___clrcall] = ACTIONS(6226), - [anon_sym___stdcall] = ACTIONS(6226), - [anon_sym___fastcall] = ACTIONS(6226), - [anon_sym___thiscall] = ACTIONS(6226), - [anon_sym___vectorcall] = ACTIONS(6226), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_RBRACE] = ACTIONS(6228), - [anon_sym_LBRACK] = ACTIONS(6237), - [anon_sym_static] = ACTIONS(6226), - [anon_sym_EQ] = ACTIONS(6235), - [anon_sym_register] = ACTIONS(6226), - [anon_sym_inline] = ACTIONS(6226), - [anon_sym___inline] = ACTIONS(6226), - [anon_sym___inline__] = ACTIONS(6226), - [anon_sym___forceinline] = ACTIONS(6226), - [anon_sym_thread_local] = ACTIONS(6226), - [anon_sym___thread] = ACTIONS(6226), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6226), - [anon_sym_volatile] = ACTIONS(6226), - [anon_sym_restrict] = ACTIONS(6226), - [anon_sym___restrict__] = ACTIONS(6226), - [anon_sym__Atomic] = ACTIONS(6226), - [anon_sym__Noreturn] = ACTIONS(6226), - [anon_sym_noreturn] = ACTIONS(6226), - [anon_sym__Nonnull] = ACTIONS(6226), - [anon_sym_mutable] = ACTIONS(6226), - [anon_sym_constinit] = ACTIONS(6226), - [anon_sym_consteval] = ACTIONS(6226), - [anon_sym_alignas] = ACTIONS(6226), - [anon_sym__Alignas] = ACTIONS(6226), - [anon_sym_QMARK] = ACTIONS(6228), - [anon_sym_STAR_EQ] = ACTIONS(6228), - [anon_sym_SLASH_EQ] = ACTIONS(6228), - [anon_sym_PERCENT_EQ] = ACTIONS(6228), - [anon_sym_PLUS_EQ] = ACTIONS(6228), - [anon_sym_DASH_EQ] = ACTIONS(6228), - [anon_sym_LT_LT_EQ] = ACTIONS(6228), - [anon_sym_GT_GT_EQ] = ACTIONS(6228), - [anon_sym_AMP_EQ] = ACTIONS(6228), - [anon_sym_CARET_EQ] = ACTIONS(6228), - [anon_sym_PIPE_EQ] = ACTIONS(6228), - [anon_sym_and_eq] = ACTIONS(6235), - [anon_sym_or_eq] = ACTIONS(6235), - [anon_sym_xor_eq] = ACTIONS(6235), - [anon_sym_LT_EQ_GT] = ACTIONS(6228), - [anon_sym_or] = ACTIONS(6235), - [anon_sym_and] = ACTIONS(6235), - [anon_sym_bitor] = ACTIONS(6235), - [anon_sym_xor] = ACTIONS(6235), - [anon_sym_bitand] = ACTIONS(6235), - [anon_sym_not_eq] = ACTIONS(6235), - [anon_sym_DASH_DASH] = ACTIONS(6228), - [anon_sym_PLUS_PLUS] = ACTIONS(6228), - [anon_sym_DOT] = ACTIONS(6235), - [anon_sym_DOT_STAR] = ACTIONS(6228), - [anon_sym_DASH_GT] = ACTIONS(6228), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6226), - [anon_sym_decltype] = ACTIONS(6226), - [anon_sym_template] = ACTIONS(6226), - [anon_sym_operator] = ACTIONS(6226), - [anon_sym_LBRACK_COLON] = ACTIONS(6233), - }, - [STATE(1869)] = { - [sym_attribute_specifier] = STATE(2011), - [sym_attribute_declaration] = STATE(4328), - [sym_type_qualifier] = STATE(2206), - [sym_alignas_qualifier] = STATE(2300), - [sym_gnu_asm_expression] = STATE(8980), - [sym_virtual_specifier] = STATE(4455), - [sym_ref_qualifier] = STATE(2398), - [sym__function_attributes_start] = STATE(2317), - [sym__function_exception_specification] = STATE(2796), - [sym__function_attributes_end] = STATE(4187), - [sym__function_postfix] = STATE(4682), - [sym_trailing_return_type] = STATE(4220), - [sym_noexcept] = STATE(2796), - [sym_throw_specifier] = STATE(2796), - [sym_requires_clause] = STATE(4682), - [aux_sym_type_definition_repeat1] = STATE(2011), - [aux_sym__type_definition_type_repeat1] = STATE(2206), - [aux_sym_attributed_declarator_repeat1] = STATE(4328), - [aux_sym__function_postfix_repeat1] = STATE(4455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_RPAREN] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6113), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6111), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(6274), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_AMP] = ACTIONS(6277), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6111), - [anon_sym_GT_GT] = ACTIONS(6111), - [anon_sym___extension__] = ACTIONS(6280), - [anon_sym___attribute__] = ACTIONS(6282), - [anon_sym___attribute] = ACTIONS(6284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_const] = ACTIONS(6288), - [anon_sym_constexpr] = ACTIONS(6280), - [anon_sym_volatile] = ACTIONS(6280), - [anon_sym_restrict] = ACTIONS(6280), - [anon_sym___restrict__] = ACTIONS(6280), - [anon_sym__Atomic] = ACTIONS(6280), - [anon_sym__Noreturn] = ACTIONS(6280), - [anon_sym_noreturn] = ACTIONS(6280), - [anon_sym__Nonnull] = ACTIONS(6280), - [anon_sym_mutable] = ACTIONS(6280), - [anon_sym_constinit] = ACTIONS(6280), - [anon_sym_consteval] = ACTIONS(6280), - [anon_sym_alignas] = ACTIONS(6290), - [anon_sym__Alignas] = ACTIONS(6290), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_STAR_EQ] = ACTIONS(6113), - [anon_sym_SLASH_EQ] = ACTIONS(6113), - [anon_sym_PERCENT_EQ] = ACTIONS(6113), - [anon_sym_PLUS_EQ] = ACTIONS(6113), - [anon_sym_DASH_EQ] = ACTIONS(6113), - [anon_sym_LT_LT_EQ] = ACTIONS(6113), - [anon_sym_GT_GT_EQ] = ACTIONS(6113), - [anon_sym_AMP_EQ] = ACTIONS(6113), - [anon_sym_CARET_EQ] = ACTIONS(6113), - [anon_sym_PIPE_EQ] = ACTIONS(6113), - [anon_sym_and_eq] = ACTIONS(6113), - [anon_sym_or_eq] = ACTIONS(6113), - [anon_sym_xor_eq] = ACTIONS(6113), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6111), - [anon_sym_and] = ACTIONS(6111), - [anon_sym_bitor] = ACTIONS(6113), - [anon_sym_xor] = ACTIONS(6111), - [anon_sym_bitand] = ACTIONS(6113), - [anon_sym_not_eq] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(6292), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6305), - [anon_sym_override] = ACTIONS(6305), - [anon_sym_noexcept] = ACTIONS(6298), - [anon_sym_throw] = ACTIONS(6300), - [anon_sym_requires] = ACTIONS(6307), - [anon_sym_DASH_GT_STAR] = ACTIONS(6113), - }, - [STATE(1870)] = { - [sym_attribute_specifier] = STATE(1879), - [sym_attribute_declaration] = STATE(3129), - [sym_type_qualifier] = STATE(1901), - [sym_alignas_qualifier] = STATE(1942), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym_ref_qualifier] = STATE(2448), - [sym__function_attributes_start] = STATE(2394), - [sym__function_exception_specification] = STATE(2844), - [sym__function_attributes_end] = STATE(4138), - [sym__function_postfix] = STATE(3516), - [sym_trailing_return_type] = STATE(2932), - [sym_noexcept] = STATE(2844), - [sym_throw_specifier] = STATE(2844), - [sym_requires_clause] = STATE(3516), - [aux_sym_type_definition_repeat1] = STATE(1879), - [aux_sym__type_definition_type_repeat1] = STATE(1901), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6113), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6111), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(6115), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_AMP] = ACTIONS(6118), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6111), - [anon_sym_GT_GT] = ACTIONS(6111), - [anon_sym_SEMI] = ACTIONS(6113), - [anon_sym___extension__] = ACTIONS(6148), - [anon_sym___attribute__] = ACTIONS(6309), - [anon_sym___attribute] = ACTIONS(6312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_const] = ACTIONS(6121), - [anon_sym_constexpr] = ACTIONS(6148), - [anon_sym_volatile] = ACTIONS(6148), - [anon_sym_restrict] = ACTIONS(6148), - [anon_sym___restrict__] = ACTIONS(6148), - [anon_sym__Atomic] = ACTIONS(6148), - [anon_sym__Noreturn] = ACTIONS(6148), - [anon_sym_noreturn] = ACTIONS(6148), - [anon_sym__Nonnull] = ACTIONS(6148), - [anon_sym_mutable] = ACTIONS(6148), - [anon_sym_constinit] = ACTIONS(6148), - [anon_sym_consteval] = ACTIONS(6148), - [anon_sym_alignas] = ACTIONS(6152), - [anon_sym__Alignas] = ACTIONS(6152), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_STAR_EQ] = ACTIONS(6113), - [anon_sym_SLASH_EQ] = ACTIONS(6113), - [anon_sym_PERCENT_EQ] = ACTIONS(6113), - [anon_sym_PLUS_EQ] = ACTIONS(6113), - [anon_sym_DASH_EQ] = ACTIONS(6113), - [anon_sym_LT_LT_EQ] = ACTIONS(6113), - [anon_sym_GT_GT_EQ] = ACTIONS(6113), - [anon_sym_AMP_EQ] = ACTIONS(6113), - [anon_sym_CARET_EQ] = ACTIONS(6113), - [anon_sym_PIPE_EQ] = ACTIONS(6113), - [anon_sym_and_eq] = ACTIONS(6113), - [anon_sym_or_eq] = ACTIONS(6113), - [anon_sym_xor_eq] = ACTIONS(6113), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6111), - [anon_sym_and] = ACTIONS(6111), - [anon_sym_bitor] = ACTIONS(6113), - [anon_sym_xor] = ACTIONS(6111), - [anon_sym_bitand] = ACTIONS(6113), - [anon_sym_not_eq] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(6315), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6159), - [anon_sym_override] = ACTIONS(6159), - [anon_sym_noexcept] = ACTIONS(6162), - [anon_sym_throw] = ACTIONS(6164), - [anon_sym_requires] = ACTIONS(6166), - }, - [STATE(1871)] = { - [sym_attribute_specifier] = STATE(1879), - [sym_attribute_declaration] = STATE(3129), - [sym_type_qualifier] = STATE(1901), - [sym_alignas_qualifier] = STATE(1942), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym_ref_qualifier] = STATE(2452), - [sym__function_attributes_start] = STATE(2364), - [sym__function_exception_specification] = STATE(2916), - [sym__function_attributes_end] = STATE(4133), - [sym__function_postfix] = STATE(3516), - [sym_trailing_return_type] = STATE(2864), - [sym_noexcept] = STATE(2916), - [sym_throw_specifier] = STATE(2916), - [sym_requires_clause] = STATE(3516), - [aux_sym_type_definition_repeat1] = STATE(1879), - [aux_sym__type_definition_type_repeat1] = STATE(1901), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6113), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6111), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(6115), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_AMP] = ACTIONS(6118), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6111), - [anon_sym_GT_GT] = ACTIONS(6111), - [anon_sym_SEMI] = ACTIONS(6113), - [anon_sym___extension__] = ACTIONS(6148), - [anon_sym___attribute__] = ACTIONS(6309), - [anon_sym___attribute] = ACTIONS(6312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_const] = ACTIONS(6121), - [anon_sym_constexpr] = ACTIONS(6148), - [anon_sym_volatile] = ACTIONS(6148), - [anon_sym_restrict] = ACTIONS(6148), - [anon_sym___restrict__] = ACTIONS(6148), - [anon_sym__Atomic] = ACTIONS(6148), - [anon_sym__Noreturn] = ACTIONS(6148), - [anon_sym_noreturn] = ACTIONS(6148), - [anon_sym__Nonnull] = ACTIONS(6148), - [anon_sym_mutable] = ACTIONS(6148), - [anon_sym_constinit] = ACTIONS(6148), - [anon_sym_consteval] = ACTIONS(6148), - [anon_sym_alignas] = ACTIONS(6152), - [anon_sym__Alignas] = ACTIONS(6152), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_STAR_EQ] = ACTIONS(6113), - [anon_sym_SLASH_EQ] = ACTIONS(6113), - [anon_sym_PERCENT_EQ] = ACTIONS(6113), - [anon_sym_PLUS_EQ] = ACTIONS(6113), - [anon_sym_DASH_EQ] = ACTIONS(6113), - [anon_sym_LT_LT_EQ] = ACTIONS(6113), - [anon_sym_GT_GT_EQ] = ACTIONS(6113), - [anon_sym_AMP_EQ] = ACTIONS(6113), - [anon_sym_CARET_EQ] = ACTIONS(6113), - [anon_sym_PIPE_EQ] = ACTIONS(6113), - [anon_sym_and_eq] = ACTIONS(6113), - [anon_sym_or_eq] = ACTIONS(6113), - [anon_sym_xor_eq] = ACTIONS(6113), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6111), - [anon_sym_and] = ACTIONS(6111), - [anon_sym_bitor] = ACTIONS(6113), - [anon_sym_xor] = ACTIONS(6111), - [anon_sym_bitand] = ACTIONS(6113), - [anon_sym_not_eq] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(6315), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6181), - [anon_sym_override] = ACTIONS(6181), - [anon_sym_noexcept] = ACTIONS(6162), - [anon_sym_throw] = ACTIONS(6164), - [anon_sym_requires] = ACTIONS(6183), - }, - [STATE(1872)] = { - [sym_attribute_specifier] = STATE(2040), - [sym_attribute_declaration] = STATE(4488), - [sym_type_qualifier] = STATE(2251), - [sym_alignas_qualifier] = STATE(2403), - [sym_gnu_asm_expression] = STATE(8997), - [sym_virtual_specifier] = STATE(4611), - [sym_ref_qualifier] = STATE(2443), - [sym__function_attributes_start] = STATE(2386), - [sym__function_exception_specification] = STATE(2934), - [sym__function_attributes_end] = STATE(4226), - [sym__function_postfix] = STATE(5093), - [sym_trailing_return_type] = STATE(4303), - [sym_noexcept] = STATE(2934), - [sym_throw_specifier] = STATE(2934), - [sym_requires_clause] = STATE(5093), - [aux_sym_type_definition_repeat1] = STATE(2040), - [aux_sym__type_definition_type_repeat1] = STATE(2251), - [aux_sym_attributed_declarator_repeat1] = STATE(4488), - [aux_sym__function_postfix_repeat1] = STATE(4611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6113), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6111), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(6318), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_AMP] = ACTIONS(6321), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6111), - [anon_sym_GT_GT] = ACTIONS(6111), - [anon_sym___extension__] = ACTIONS(6324), - [anon_sym___attribute__] = ACTIONS(6326), - [anon_sym___attribute] = ACTIONS(6328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_RBRACK] = ACTIONS(6113), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_const] = ACTIONS(6332), - [anon_sym_constexpr] = ACTIONS(6324), - [anon_sym_volatile] = ACTIONS(6324), - [anon_sym_restrict] = ACTIONS(6324), - [anon_sym___restrict__] = ACTIONS(6324), - [anon_sym__Atomic] = ACTIONS(6324), - [anon_sym__Noreturn] = ACTIONS(6324), - [anon_sym_noreturn] = ACTIONS(6324), - [anon_sym__Nonnull] = ACTIONS(6324), - [anon_sym_mutable] = ACTIONS(6324), - [anon_sym_constinit] = ACTIONS(6324), - [anon_sym_consteval] = ACTIONS(6324), - [anon_sym_alignas] = ACTIONS(6334), - [anon_sym__Alignas] = ACTIONS(6334), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_STAR_EQ] = ACTIONS(6113), - [anon_sym_SLASH_EQ] = ACTIONS(6113), - [anon_sym_PERCENT_EQ] = ACTIONS(6113), - [anon_sym_PLUS_EQ] = ACTIONS(6113), - [anon_sym_DASH_EQ] = ACTIONS(6113), - [anon_sym_LT_LT_EQ] = ACTIONS(6113), - [anon_sym_GT_GT_EQ] = ACTIONS(6113), - [anon_sym_AMP_EQ] = ACTIONS(6113), - [anon_sym_CARET_EQ] = ACTIONS(6113), - [anon_sym_PIPE_EQ] = ACTIONS(6113), - [anon_sym_and_eq] = ACTIONS(6113), - [anon_sym_or_eq] = ACTIONS(6113), - [anon_sym_xor_eq] = ACTIONS(6113), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6111), - [anon_sym_and] = ACTIONS(6111), - [anon_sym_bitor] = ACTIONS(6113), - [anon_sym_xor] = ACTIONS(6111), - [anon_sym_bitand] = ACTIONS(6113), - [anon_sym_not_eq] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(6336), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6339), - [anon_sym_override] = ACTIONS(6339), - [anon_sym_noexcept] = ACTIONS(6342), - [anon_sym_throw] = ACTIONS(6344), - [anon_sym_requires] = ACTIONS(6346), - }, - [STATE(1873)] = { - [sym_attribute_specifier] = STATE(2040), - [sym_attribute_declaration] = STATE(4488), - [sym_type_qualifier] = STATE(2251), - [sym_alignas_qualifier] = STATE(2403), - [sym_gnu_asm_expression] = STATE(8997), - [sym_virtual_specifier] = STATE(4611), - [sym_ref_qualifier] = STATE(2451), - [sym__function_attributes_start] = STATE(2395), - [sym__function_exception_specification] = STATE(2977), - [sym__function_attributes_end] = STATE(4225), - [sym__function_postfix] = STATE(5093), - [sym_trailing_return_type] = STATE(4296), - [sym_noexcept] = STATE(2977), - [sym_throw_specifier] = STATE(2977), - [sym_requires_clause] = STATE(5093), - [aux_sym_type_definition_repeat1] = STATE(2040), - [aux_sym__type_definition_type_repeat1] = STATE(2251), - [aux_sym_attributed_declarator_repeat1] = STATE(4488), - [aux_sym__function_postfix_repeat1] = STATE(4611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6113), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6111), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(6318), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_AMP] = ACTIONS(6321), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6111), - [anon_sym_GT_GT] = ACTIONS(6111), - [anon_sym___extension__] = ACTIONS(6324), - [anon_sym___attribute__] = ACTIONS(6326), - [anon_sym___attribute] = ACTIONS(6328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_RBRACK] = ACTIONS(6113), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_const] = ACTIONS(6332), - [anon_sym_constexpr] = ACTIONS(6324), - [anon_sym_volatile] = ACTIONS(6324), - [anon_sym_restrict] = ACTIONS(6324), - [anon_sym___restrict__] = ACTIONS(6324), - [anon_sym__Atomic] = ACTIONS(6324), - [anon_sym__Noreturn] = ACTIONS(6324), - [anon_sym_noreturn] = ACTIONS(6324), - [anon_sym__Nonnull] = ACTIONS(6324), - [anon_sym_mutable] = ACTIONS(6324), - [anon_sym_constinit] = ACTIONS(6324), - [anon_sym_consteval] = ACTIONS(6324), - [anon_sym_alignas] = ACTIONS(6334), - [anon_sym__Alignas] = ACTIONS(6334), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_STAR_EQ] = ACTIONS(6113), - [anon_sym_SLASH_EQ] = ACTIONS(6113), - [anon_sym_PERCENT_EQ] = ACTIONS(6113), - [anon_sym_PLUS_EQ] = ACTIONS(6113), - [anon_sym_DASH_EQ] = ACTIONS(6113), - [anon_sym_LT_LT_EQ] = ACTIONS(6113), - [anon_sym_GT_GT_EQ] = ACTIONS(6113), - [anon_sym_AMP_EQ] = ACTIONS(6113), - [anon_sym_CARET_EQ] = ACTIONS(6113), - [anon_sym_PIPE_EQ] = ACTIONS(6113), - [anon_sym_and_eq] = ACTIONS(6113), - [anon_sym_or_eq] = ACTIONS(6113), - [anon_sym_xor_eq] = ACTIONS(6113), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6111), - [anon_sym_and] = ACTIONS(6111), - [anon_sym_bitor] = ACTIONS(6113), - [anon_sym_xor] = ACTIONS(6111), - [anon_sym_bitand] = ACTIONS(6113), - [anon_sym_not_eq] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(6336), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6349), - [anon_sym_override] = ACTIONS(6349), - [anon_sym_noexcept] = ACTIONS(6342), - [anon_sym_throw] = ACTIONS(6344), - [anon_sym_requires] = ACTIONS(6351), - }, - [STATE(1874)] = { - [sym_attribute_specifier] = STATE(2032), - [sym_attribute_declaration] = STATE(4518), - [sym_type_qualifier] = STATE(2237), - [sym_alignas_qualifier] = STATE(2372), - [sym_gnu_asm_expression] = STATE(8999), - [sym_virtual_specifier] = STATE(4532), - [sym_ref_qualifier] = STATE(2427), - [sym__function_attributes_start] = STATE(2378), - [sym__function_exception_specification] = STATE(2921), - [sym__function_attributes_end] = STATE(4240), - [sym__function_postfix] = STATE(4980), - [sym_trailing_return_type] = STATE(4409), - [sym_noexcept] = STATE(2921), - [sym_throw_specifier] = STATE(2921), - [sym_requires_clause] = STATE(4980), - [aux_sym_type_definition_repeat1] = STATE(2032), - [aux_sym__type_definition_type_repeat1] = STATE(2237), - [aux_sym_attributed_declarator_repeat1] = STATE(4518), - [aux_sym__function_postfix_repeat1] = STATE(4532), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6113), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6111), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(6353), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_AMP] = ACTIONS(6356), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6111), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6111), - [anon_sym_GT_GT] = ACTIONS(6111), - [anon_sym___extension__] = ACTIONS(6359), - [anon_sym___attribute__] = ACTIONS(6361), - [anon_sym___attribute] = ACTIONS(6363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_const] = ACTIONS(6367), - [anon_sym_constexpr] = ACTIONS(6359), - [anon_sym_volatile] = ACTIONS(6359), - [anon_sym_restrict] = ACTIONS(6359), - [anon_sym___restrict__] = ACTIONS(6359), - [anon_sym__Atomic] = ACTIONS(6359), - [anon_sym__Noreturn] = ACTIONS(6359), - [anon_sym_noreturn] = ACTIONS(6359), - [anon_sym__Nonnull] = ACTIONS(6359), - [anon_sym_mutable] = ACTIONS(6359), - [anon_sym_constinit] = ACTIONS(6359), - [anon_sym_consteval] = ACTIONS(6359), - [anon_sym_alignas] = ACTIONS(6369), - [anon_sym__Alignas] = ACTIONS(6369), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_STAR_EQ] = ACTIONS(6113), - [anon_sym_SLASH_EQ] = ACTIONS(6113), - [anon_sym_PERCENT_EQ] = ACTIONS(6113), - [anon_sym_PLUS_EQ] = ACTIONS(6113), - [anon_sym_DASH_EQ] = ACTIONS(6113), - [anon_sym_LT_LT_EQ] = ACTIONS(6113), - [anon_sym_GT_GT_EQ] = ACTIONS(6111), - [anon_sym_AMP_EQ] = ACTIONS(6113), - [anon_sym_CARET_EQ] = ACTIONS(6113), - [anon_sym_PIPE_EQ] = ACTIONS(6113), - [anon_sym_and_eq] = ACTIONS(6113), - [anon_sym_or_eq] = ACTIONS(6113), - [anon_sym_xor_eq] = ACTIONS(6113), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6111), - [anon_sym_and] = ACTIONS(6111), - [anon_sym_bitor] = ACTIONS(6113), - [anon_sym_xor] = ACTIONS(6111), - [anon_sym_bitand] = ACTIONS(6113), - [anon_sym_not_eq] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(6371), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6374), - [anon_sym_override] = ACTIONS(6374), - [anon_sym_GT2] = ACTIONS(6113), - [anon_sym_noexcept] = ACTIONS(6377), - [anon_sym_throw] = ACTIONS(6379), - [anon_sym_requires] = ACTIONS(6381), - }, - [STATE(1875)] = { - [sym_attribute_specifier] = STATE(2032), - [sym_attribute_declaration] = STATE(4518), - [sym_type_qualifier] = STATE(2237), - [sym_alignas_qualifier] = STATE(2372), - [sym_gnu_asm_expression] = STATE(8999), - [sym_virtual_specifier] = STATE(4532), - [sym_ref_qualifier] = STATE(2437), - [sym__function_attributes_start] = STATE(2383), - [sym__function_exception_specification] = STATE(2888), - [sym__function_attributes_end] = STATE(4224), - [sym__function_postfix] = STATE(4980), - [sym_trailing_return_type] = STATE(4378), - [sym_noexcept] = STATE(2888), - [sym_throw_specifier] = STATE(2888), - [sym_requires_clause] = STATE(4980), - [aux_sym_type_definition_repeat1] = STATE(2032), - [aux_sym__type_definition_type_repeat1] = STATE(2237), - [aux_sym_attributed_declarator_repeat1] = STATE(4518), - [aux_sym__function_postfix_repeat1] = STATE(4532), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6113), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6111), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(6353), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_AMP] = ACTIONS(6356), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6111), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6111), - [anon_sym_GT_GT] = ACTIONS(6111), - [anon_sym___extension__] = ACTIONS(6359), - [anon_sym___attribute__] = ACTIONS(6361), - [anon_sym___attribute] = ACTIONS(6363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_const] = ACTIONS(6367), - [anon_sym_constexpr] = ACTIONS(6359), - [anon_sym_volatile] = ACTIONS(6359), - [anon_sym_restrict] = ACTIONS(6359), - [anon_sym___restrict__] = ACTIONS(6359), - [anon_sym__Atomic] = ACTIONS(6359), - [anon_sym__Noreturn] = ACTIONS(6359), - [anon_sym_noreturn] = ACTIONS(6359), - [anon_sym__Nonnull] = ACTIONS(6359), - [anon_sym_mutable] = ACTIONS(6359), - [anon_sym_constinit] = ACTIONS(6359), - [anon_sym_consteval] = ACTIONS(6359), - [anon_sym_alignas] = ACTIONS(6369), - [anon_sym__Alignas] = ACTIONS(6369), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_STAR_EQ] = ACTIONS(6113), - [anon_sym_SLASH_EQ] = ACTIONS(6113), - [anon_sym_PERCENT_EQ] = ACTIONS(6113), - [anon_sym_PLUS_EQ] = ACTIONS(6113), - [anon_sym_DASH_EQ] = ACTIONS(6113), - [anon_sym_LT_LT_EQ] = ACTIONS(6113), - [anon_sym_GT_GT_EQ] = ACTIONS(6111), - [anon_sym_AMP_EQ] = ACTIONS(6113), - [anon_sym_CARET_EQ] = ACTIONS(6113), - [anon_sym_PIPE_EQ] = ACTIONS(6113), - [anon_sym_and_eq] = ACTIONS(6113), - [anon_sym_or_eq] = ACTIONS(6113), - [anon_sym_xor_eq] = ACTIONS(6113), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6111), - [anon_sym_and] = ACTIONS(6111), - [anon_sym_bitor] = ACTIONS(6113), - [anon_sym_xor] = ACTIONS(6111), - [anon_sym_bitand] = ACTIONS(6113), - [anon_sym_not_eq] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(6371), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6384), - [anon_sym_override] = ACTIONS(6384), - [anon_sym_GT2] = ACTIONS(6113), - [anon_sym_noexcept] = ACTIONS(6377), - [anon_sym_throw] = ACTIONS(6379), - [anon_sym_requires] = ACTIONS(6386), - }, - [STATE(1876)] = { - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(7437), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8886), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8469), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7831), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6218), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(1877)] = { - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(7450), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8882), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8469), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7831), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6218), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(1878)] = { - [sym_identifier] = ACTIONS(3003), - [anon_sym_LPAREN2] = ACTIONS(3008), - [anon_sym_BANG] = ACTIONS(3008), - [anon_sym_TILDE] = ACTIONS(3008), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3003), - [anon_sym_STAR] = ACTIONS(3008), - [anon_sym_AMP] = ACTIONS(3008), - [anon_sym___extension__] = ACTIONS(3003), - [anon_sym_virtual] = ACTIONS(3003), - [anon_sym_extern] = ACTIONS(3003), - [anon_sym___attribute__] = ACTIONS(3003), - [anon_sym___attribute] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3008), - [anon_sym___declspec] = ACTIONS(3003), - [anon_sym_signed] = ACTIONS(3003), - [anon_sym_unsigned] = ACTIONS(3003), - [anon_sym_long] = ACTIONS(3003), - [anon_sym_short] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_static] = ACTIONS(3003), - [anon_sym_register] = ACTIONS(3003), - [anon_sym_inline] = ACTIONS(3003), - [anon_sym___inline] = ACTIONS(3003), - [anon_sym___inline__] = ACTIONS(3003), - [anon_sym___forceinline] = ACTIONS(3003), - [anon_sym_thread_local] = ACTIONS(3003), - [anon_sym___thread] = ACTIONS(3003), - [anon_sym_const] = ACTIONS(3003), - [anon_sym_constexpr] = ACTIONS(3003), - [anon_sym_volatile] = ACTIONS(3003), - [anon_sym_restrict] = ACTIONS(3003), - [anon_sym___restrict__] = ACTIONS(3003), - [anon_sym__Atomic] = ACTIONS(3003), - [anon_sym__Noreturn] = ACTIONS(3003), - [anon_sym_noreturn] = ACTIONS(3003), - [anon_sym__Nonnull] = ACTIONS(3003), - [anon_sym_mutable] = ACTIONS(3003), - [anon_sym_constinit] = ACTIONS(3003), - [anon_sym_consteval] = ACTIONS(3003), - [anon_sym_alignas] = ACTIONS(3003), - [anon_sym__Alignas] = ACTIONS(3003), - [sym_primitive_type] = ACTIONS(3003), - [anon_sym_enum] = ACTIONS(3003), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3003), - [anon_sym_union] = ACTIONS(3003), - [anon_sym_not] = ACTIONS(3003), - [anon_sym_compl] = ACTIONS(3003), - [anon_sym_DASH_DASH] = ACTIONS(3008), - [anon_sym_PLUS_PLUS] = ACTIONS(3008), - [anon_sym_sizeof] = ACTIONS(3003), - [anon_sym___alignof__] = ACTIONS(3003), - [anon_sym___alignof] = ACTIONS(3003), - [anon_sym__alignof] = ACTIONS(3003), - [anon_sym_alignof] = ACTIONS(3003), - [anon_sym__Alignof] = ACTIONS(3003), - [anon_sym_offsetof] = ACTIONS(3003), - [anon_sym__Generic] = ACTIONS(3003), - [anon_sym_typename] = ACTIONS(3003), - [anon_sym_asm] = ACTIONS(3003), - [anon_sym___asm__] = ACTIONS(3003), - [anon_sym___asm] = ACTIONS(3003), - [sym_number_literal] = ACTIONS(3008), - [anon_sym_L_SQUOTE] = ACTIONS(3008), - [anon_sym_u_SQUOTE] = ACTIONS(3008), - [anon_sym_U_SQUOTE] = ACTIONS(3008), - [anon_sym_u8_SQUOTE] = ACTIONS(3008), - [anon_sym_SQUOTE] = ACTIONS(3008), - [anon_sym_L_DQUOTE] = ACTIONS(3008), - [anon_sym_u_DQUOTE] = ACTIONS(3008), - [anon_sym_U_DQUOTE] = ACTIONS(3008), - [anon_sym_u8_DQUOTE] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(3008), - [sym_true] = ACTIONS(3003), - [sym_false] = ACTIONS(3003), - [anon_sym_NULL] = ACTIONS(3003), - [anon_sym_nullptr] = ACTIONS(3003), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3003), - [anon_sym_decltype] = ACTIONS(3003), - [anon_sym_template] = ACTIONS(3003), - [anon_sym_delete] = ACTIONS(3003), - [anon_sym_R_DQUOTE] = ACTIONS(3008), - [anon_sym_LR_DQUOTE] = ACTIONS(3008), - [anon_sym_uR_DQUOTE] = ACTIONS(3008), - [anon_sym_UR_DQUOTE] = ACTIONS(3008), - [anon_sym_u8R_DQUOTE] = ACTIONS(3008), - [anon_sym_co_await] = ACTIONS(3003), - [anon_sym_new] = ACTIONS(3003), - [anon_sym_requires] = ACTIONS(3003), - [anon_sym_CARET_CARET] = ACTIONS(3008), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(3003), - }, - [STATE(1879)] = { - [sym_attribute_specifier] = STATE(1918), - [sym_attribute_declaration] = STATE(3141), - [sym_type_qualifier] = STATE(1896), - [sym_alignas_qualifier] = STATE(1942), - [aux_sym_type_definition_repeat1] = STATE(1918), - [aux_sym__type_definition_type_repeat1] = STATE(1896), - [aux_sym_attributed_declarator_repeat1] = STATE(3141), - [sym_identifier] = ACTIONS(6388), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), - [anon_sym_COMMA] = ACTIONS(6390), - [anon_sym_RPAREN] = ACTIONS(6390), - [aux_sym_preproc_if_token2] = ACTIONS(6390), - [aux_sym_preproc_else_token1] = ACTIONS(6390), - [aux_sym_preproc_elif_token1] = ACTIONS(6388), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6390), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6390), - [anon_sym_LPAREN2] = ACTIONS(6390), - [anon_sym_DASH] = ACTIONS(6388), - [anon_sym_PLUS] = ACTIONS(6388), - [anon_sym_STAR] = ACTIONS(6388), - [anon_sym_SLASH] = ACTIONS(6388), - [anon_sym_PERCENT] = ACTIONS(6388), - [anon_sym_PIPE_PIPE] = ACTIONS(6390), - [anon_sym_AMP_AMP] = ACTIONS(6390), - [anon_sym_PIPE] = ACTIONS(6388), - [anon_sym_CARET] = ACTIONS(6388), - [anon_sym_AMP] = ACTIONS(6388), - [anon_sym_EQ_EQ] = ACTIONS(6390), - [anon_sym_BANG_EQ] = ACTIONS(6390), - [anon_sym_GT] = ACTIONS(6388), - [anon_sym_GT_EQ] = ACTIONS(6390), - [anon_sym_LT_EQ] = ACTIONS(6388), - [anon_sym_LT] = ACTIONS(6388), - [anon_sym_LT_LT] = ACTIONS(6388), - [anon_sym_GT_GT] = ACTIONS(6388), - [anon_sym_SEMI] = ACTIONS(6390), - [anon_sym___extension__] = ACTIONS(6121), - [anon_sym___attribute__] = ACTIONS(6388), - [anon_sym___attribute] = ACTIONS(6388), - [anon_sym_COLON] = ACTIONS(6388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6390), - [anon_sym_RBRACE] = ACTIONS(6390), - [anon_sym_LBRACK] = ACTIONS(6388), - [anon_sym_EQ] = ACTIONS(6388), - [anon_sym_const] = ACTIONS(6121), - [anon_sym_constexpr] = ACTIONS(6121), - [anon_sym_volatile] = ACTIONS(6121), - [anon_sym_restrict] = ACTIONS(6121), - [anon_sym___restrict__] = ACTIONS(6121), - [anon_sym__Atomic] = ACTIONS(6121), - [anon_sym__Noreturn] = ACTIONS(6121), - [anon_sym_noreturn] = ACTIONS(6121), - [anon_sym__Nonnull] = ACTIONS(6121), - [anon_sym_mutable] = ACTIONS(6121), - [anon_sym_constinit] = ACTIONS(6121), - [anon_sym_consteval] = ACTIONS(6121), - [anon_sym_alignas] = ACTIONS(6127), - [anon_sym__Alignas] = ACTIONS(6127), - [anon_sym_QMARK] = ACTIONS(6390), - [anon_sym_STAR_EQ] = ACTIONS(6390), - [anon_sym_SLASH_EQ] = ACTIONS(6390), - [anon_sym_PERCENT_EQ] = ACTIONS(6390), - [anon_sym_PLUS_EQ] = ACTIONS(6390), - [anon_sym_DASH_EQ] = ACTIONS(6390), - [anon_sym_LT_LT_EQ] = ACTIONS(6390), - [anon_sym_GT_GT_EQ] = ACTIONS(6390), - [anon_sym_AMP_EQ] = ACTIONS(6390), - [anon_sym_CARET_EQ] = ACTIONS(6390), - [anon_sym_PIPE_EQ] = ACTIONS(6390), - [anon_sym_and_eq] = ACTIONS(6388), - [anon_sym_or_eq] = ACTIONS(6388), - [anon_sym_xor_eq] = ACTIONS(6388), - [anon_sym_LT_EQ_GT] = ACTIONS(6390), - [anon_sym_or] = ACTIONS(6388), - [anon_sym_and] = ACTIONS(6388), - [anon_sym_bitor] = ACTIONS(6388), - [anon_sym_xor] = ACTIONS(6388), - [anon_sym_bitand] = ACTIONS(6388), - [anon_sym_not_eq] = ACTIONS(6388), - [anon_sym_DASH_DASH] = ACTIONS(6390), - [anon_sym_PLUS_PLUS] = ACTIONS(6390), - [anon_sym_asm] = ACTIONS(6388), - [anon_sym___asm__] = ACTIONS(6388), - [anon_sym___asm] = ACTIONS(6388), - [anon_sym_DOT] = ACTIONS(6388), - [anon_sym_DOT_STAR] = ACTIONS(6390), - [anon_sym_DASH_GT] = ACTIONS(6390), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6388), - [anon_sym_override] = ACTIONS(6388), - [anon_sym_noexcept] = ACTIONS(6388), - [anon_sym_throw] = ACTIONS(6388), - [anon_sym_requires] = ACTIONS(6388), - [anon_sym_COLON_RBRACK] = ACTIONS(6390), - }, - [STATE(1880)] = { - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(7405), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8950), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8469), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7831), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6218), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(1881)] = { - [sym_identifier] = ACTIONS(4042), - [anon_sym_LPAREN2] = ACTIONS(4044), - [anon_sym_BANG] = ACTIONS(4044), - [anon_sym_TILDE] = ACTIONS(4044), - [anon_sym_DASH] = ACTIONS(4042), - [anon_sym_PLUS] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4044), - [anon_sym___extension__] = ACTIONS(4042), - [anon_sym_virtual] = ACTIONS(4042), - [anon_sym_extern] = ACTIONS(4042), - [anon_sym___attribute__] = ACTIONS(4042), - [anon_sym___attribute] = ACTIONS(4042), - [anon_sym_COLON_COLON] = ACTIONS(4044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4044), - [anon_sym___declspec] = ACTIONS(4042), - [anon_sym_signed] = ACTIONS(4042), - [anon_sym_unsigned] = ACTIONS(4042), - [anon_sym_long] = ACTIONS(4042), - [anon_sym_short] = ACTIONS(4042), - [anon_sym_LBRACK] = ACTIONS(4042), - [anon_sym_static] = ACTIONS(4042), - [anon_sym_register] = ACTIONS(4042), - [anon_sym_inline] = ACTIONS(4042), - [anon_sym___inline] = ACTIONS(4042), - [anon_sym___inline__] = ACTIONS(4042), - [anon_sym___forceinline] = ACTIONS(4042), - [anon_sym_thread_local] = ACTIONS(4042), - [anon_sym___thread] = ACTIONS(4042), - [anon_sym_const] = ACTIONS(4042), - [anon_sym_constexpr] = ACTIONS(4042), - [anon_sym_volatile] = ACTIONS(4042), - [anon_sym_restrict] = ACTIONS(4042), - [anon_sym___restrict__] = ACTIONS(4042), - [anon_sym__Atomic] = ACTIONS(4042), - [anon_sym__Noreturn] = ACTIONS(4042), - [anon_sym_noreturn] = ACTIONS(4042), - [anon_sym__Nonnull] = ACTIONS(4042), - [anon_sym_mutable] = ACTIONS(4042), - [anon_sym_constinit] = ACTIONS(4042), - [anon_sym_consteval] = ACTIONS(4042), - [anon_sym_alignas] = ACTIONS(4042), - [anon_sym__Alignas] = ACTIONS(4042), - [sym_primitive_type] = ACTIONS(4042), - [anon_sym_enum] = ACTIONS(4042), - [anon_sym_class] = ACTIONS(4042), - [anon_sym_struct] = ACTIONS(4042), - [anon_sym_union] = ACTIONS(4042), - [anon_sym_not] = ACTIONS(4042), - [anon_sym_compl] = ACTIONS(4042), - [anon_sym_DASH_DASH] = ACTIONS(4044), - [anon_sym_PLUS_PLUS] = ACTIONS(4044), - [anon_sym_sizeof] = ACTIONS(4042), - [anon_sym___alignof__] = ACTIONS(4042), - [anon_sym___alignof] = ACTIONS(4042), - [anon_sym__alignof] = ACTIONS(4042), - [anon_sym_alignof] = ACTIONS(4042), - [anon_sym__Alignof] = ACTIONS(4042), - [anon_sym_offsetof] = ACTIONS(4042), - [anon_sym__Generic] = ACTIONS(4042), - [anon_sym_typename] = ACTIONS(4042), - [anon_sym_asm] = ACTIONS(4042), - [anon_sym___asm__] = ACTIONS(4042), - [anon_sym___asm] = ACTIONS(4042), - [sym_number_literal] = ACTIONS(4044), - [anon_sym_L_SQUOTE] = ACTIONS(4044), - [anon_sym_u_SQUOTE] = ACTIONS(4044), - [anon_sym_U_SQUOTE] = ACTIONS(4044), - [anon_sym_u8_SQUOTE] = ACTIONS(4044), - [anon_sym_SQUOTE] = ACTIONS(4044), - [anon_sym_L_DQUOTE] = ACTIONS(4044), - [anon_sym_u_DQUOTE] = ACTIONS(4044), - [anon_sym_U_DQUOTE] = ACTIONS(4044), - [anon_sym_u8_DQUOTE] = ACTIONS(4044), - [anon_sym_DQUOTE] = ACTIONS(4044), - [sym_true] = ACTIONS(4042), - [sym_false] = ACTIONS(4042), - [anon_sym_NULL] = ACTIONS(4042), - [anon_sym_nullptr] = ACTIONS(4042), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4042), - [anon_sym_decltype] = ACTIONS(4042), - [anon_sym_template] = ACTIONS(4042), - [anon_sym_delete] = ACTIONS(4042), - [anon_sym_R_DQUOTE] = ACTIONS(4044), - [anon_sym_LR_DQUOTE] = ACTIONS(4044), - [anon_sym_uR_DQUOTE] = ACTIONS(4044), - [anon_sym_UR_DQUOTE] = ACTIONS(4044), - [anon_sym_u8R_DQUOTE] = ACTIONS(4044), - [anon_sym_co_await] = ACTIONS(4042), - [anon_sym_new] = ACTIONS(4042), - [anon_sym_requires] = ACTIONS(4042), - [anon_sym_CARET_CARET] = ACTIONS(4044), - [anon_sym_LBRACK_COLON] = ACTIONS(4044), - [sym_this] = ACTIONS(4042), - }, - [STATE(1882)] = { - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(7389), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8920), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8469), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(4520), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7831), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6218), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6222), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(1883)] = { - [sym_identifier] = ACTIONS(4086), - [anon_sym_LPAREN2] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_TILDE] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4086), - [anon_sym_PLUS] = ACTIONS(4086), - [anon_sym_STAR] = ACTIONS(4088), - [anon_sym_AMP] = ACTIONS(4088), - [anon_sym___extension__] = ACTIONS(4086), - [anon_sym_virtual] = ACTIONS(4086), - [anon_sym_extern] = ACTIONS(4086), - [anon_sym___attribute__] = ACTIONS(4086), - [anon_sym___attribute] = ACTIONS(4086), - [anon_sym_COLON_COLON] = ACTIONS(4088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4088), - [anon_sym___declspec] = ACTIONS(4086), - [anon_sym_signed] = ACTIONS(4086), - [anon_sym_unsigned] = ACTIONS(4086), - [anon_sym_long] = ACTIONS(4086), - [anon_sym_short] = ACTIONS(4086), - [anon_sym_LBRACK] = ACTIONS(4086), - [anon_sym_static] = ACTIONS(4086), - [anon_sym_register] = ACTIONS(4086), - [anon_sym_inline] = ACTIONS(4086), - [anon_sym___inline] = ACTIONS(4086), - [anon_sym___inline__] = ACTIONS(4086), - [anon_sym___forceinline] = ACTIONS(4086), - [anon_sym_thread_local] = ACTIONS(4086), - [anon_sym___thread] = ACTIONS(4086), - [anon_sym_const] = ACTIONS(4086), - [anon_sym_constexpr] = ACTIONS(4086), - [anon_sym_volatile] = ACTIONS(4086), - [anon_sym_restrict] = ACTIONS(4086), - [anon_sym___restrict__] = ACTIONS(4086), - [anon_sym__Atomic] = ACTIONS(4086), - [anon_sym__Noreturn] = ACTIONS(4086), - [anon_sym_noreturn] = ACTIONS(4086), - [anon_sym__Nonnull] = ACTIONS(4086), - [anon_sym_mutable] = ACTIONS(4086), - [anon_sym_constinit] = ACTIONS(4086), - [anon_sym_consteval] = ACTIONS(4086), - [anon_sym_alignas] = ACTIONS(4086), - [anon_sym__Alignas] = ACTIONS(4086), - [sym_primitive_type] = ACTIONS(4086), - [anon_sym_enum] = ACTIONS(4086), - [anon_sym_class] = ACTIONS(4086), - [anon_sym_struct] = ACTIONS(4086), - [anon_sym_union] = ACTIONS(4086), - [anon_sym_not] = ACTIONS(4086), - [anon_sym_compl] = ACTIONS(4086), - [anon_sym_DASH_DASH] = ACTIONS(4088), - [anon_sym_PLUS_PLUS] = ACTIONS(4088), - [anon_sym_sizeof] = ACTIONS(4086), - [anon_sym___alignof__] = ACTIONS(4086), - [anon_sym___alignof] = ACTIONS(4086), - [anon_sym__alignof] = ACTIONS(4086), - [anon_sym_alignof] = ACTIONS(4086), - [anon_sym__Alignof] = ACTIONS(4086), - [anon_sym_offsetof] = ACTIONS(4086), - [anon_sym__Generic] = ACTIONS(4086), - [anon_sym_typename] = ACTIONS(4086), - [anon_sym_asm] = ACTIONS(4086), - [anon_sym___asm__] = ACTIONS(4086), - [anon_sym___asm] = ACTIONS(4086), - [sym_number_literal] = ACTIONS(4088), - [anon_sym_L_SQUOTE] = ACTIONS(4088), - [anon_sym_u_SQUOTE] = ACTIONS(4088), - [anon_sym_U_SQUOTE] = ACTIONS(4088), - [anon_sym_u8_SQUOTE] = ACTIONS(4088), - [anon_sym_SQUOTE] = ACTIONS(4088), - [anon_sym_L_DQUOTE] = ACTIONS(4088), - [anon_sym_u_DQUOTE] = ACTIONS(4088), - [anon_sym_U_DQUOTE] = ACTIONS(4088), - [anon_sym_u8_DQUOTE] = ACTIONS(4088), - [anon_sym_DQUOTE] = ACTIONS(4088), - [sym_true] = ACTIONS(4086), - [sym_false] = ACTIONS(4086), - [anon_sym_NULL] = ACTIONS(4086), - [anon_sym_nullptr] = ACTIONS(4086), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4086), - [anon_sym_decltype] = ACTIONS(4086), - [anon_sym_template] = ACTIONS(4086), - [anon_sym_delete] = ACTIONS(4086), - [anon_sym_R_DQUOTE] = ACTIONS(4088), - [anon_sym_LR_DQUOTE] = ACTIONS(4088), - [anon_sym_uR_DQUOTE] = ACTIONS(4088), - [anon_sym_UR_DQUOTE] = ACTIONS(4088), - [anon_sym_u8R_DQUOTE] = ACTIONS(4088), - [anon_sym_co_await] = ACTIONS(4086), - [anon_sym_new] = ACTIONS(4086), - [anon_sym_requires] = ACTIONS(4086), - [anon_sym_CARET_CARET] = ACTIONS(4088), - [anon_sym_LBRACK_COLON] = ACTIONS(4088), - [sym_this] = ACTIONS(4086), - }, - [STATE(1884)] = { - [sym_string_literal] = STATE(2486), - [sym_decltype_auto] = STATE(2086), - [sym_template_argument_list] = STATE(2081), - [sym_raw_string_literal] = STATE(2486), - [aux_sym_sized_type_specifier_repeat1] = STATE(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [anon_sym_RPAREN] = ACTIONS(5255), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5262), - [anon_sym_PLUS] = ACTIONS(5262), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5262), - [anon_sym_PERCENT] = ACTIONS(5262), - [anon_sym_PIPE_PIPE] = ACTIONS(5255), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5262), - [anon_sym_CARET] = ACTIONS(5262), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5255), - [anon_sym_BANG_EQ] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5262), - [anon_sym_GT_EQ] = ACTIONS(5255), - [anon_sym_LT_EQ] = ACTIONS(5262), - [anon_sym_LT] = ACTIONS(6392), - [anon_sym_LT_LT] = ACTIONS(5262), - [anon_sym_GT_GT] = ACTIONS(5262), - [anon_sym_SEMI] = ACTIONS(5255), - [anon_sym___extension__] = ACTIONS(5258), - [anon_sym_COLON] = ACTIONS(5262), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5255), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_RBRACE] = ACTIONS(5255), - [anon_sym_signed] = ACTIONS(6396), - [anon_sym_unsigned] = ACTIONS(6396), - [anon_sym_long] = ACTIONS(6396), - [anon_sym_short] = ACTIONS(6396), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(5262), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5258), - [anon_sym_volatile] = ACTIONS(5258), - [anon_sym_restrict] = ACTIONS(5258), - [anon_sym___restrict__] = ACTIONS(5258), - [anon_sym__Atomic] = ACTIONS(5258), - [anon_sym__Noreturn] = ACTIONS(5258), - [anon_sym_noreturn] = ACTIONS(5258), - [anon_sym__Nonnull] = ACTIONS(5258), - [anon_sym_mutable] = ACTIONS(5258), - [anon_sym_constinit] = ACTIONS(5258), - [anon_sym_consteval] = ACTIONS(5258), - [anon_sym_alignas] = ACTIONS(5258), - [anon_sym__Alignas] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5255), - [anon_sym_STAR_EQ] = ACTIONS(5255), - [anon_sym_SLASH_EQ] = ACTIONS(5255), - [anon_sym_PERCENT_EQ] = ACTIONS(5255), - [anon_sym_PLUS_EQ] = ACTIONS(5255), - [anon_sym_DASH_EQ] = ACTIONS(5255), - [anon_sym_LT_LT_EQ] = ACTIONS(5255), - [anon_sym_GT_GT_EQ] = ACTIONS(5255), - [anon_sym_AMP_EQ] = ACTIONS(5255), - [anon_sym_CARET_EQ] = ACTIONS(5255), - [anon_sym_PIPE_EQ] = ACTIONS(5255), - [anon_sym_and_eq] = ACTIONS(5255), - [anon_sym_or_eq] = ACTIONS(5255), - [anon_sym_xor_eq] = ACTIONS(5255), - [anon_sym_LT_EQ_GT] = ACTIONS(5255), - [anon_sym_or] = ACTIONS(5262), - [anon_sym_and] = ACTIONS(5262), - [anon_sym_bitor] = ACTIONS(5255), - [anon_sym_xor] = ACTIONS(5262), - [anon_sym_bitand] = ACTIONS(5255), - [anon_sym_not_eq] = ACTIONS(5255), - [anon_sym_DASH_DASH] = ACTIONS(5255), - [anon_sym_PLUS_PLUS] = ACTIONS(5255), - [anon_sym_DOT] = ACTIONS(5262), - [anon_sym_DOT_STAR] = ACTIONS(5255), - [anon_sym_DASH_GT] = ACTIONS(5255), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6398), - [anon_sym_decltype] = ACTIONS(6400), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_COLON_RBRACK] = ACTIONS(5255), - }, - [STATE(1885)] = { - [sym_attribute_specifier] = STATE(2170), - [sym_attribute_declaration] = STATE(4729), - [sym_type_qualifier] = STATE(2319), - [sym_alignas_qualifier] = STATE(2498), - [sym_gnu_asm_expression] = STATE(8972), - [sym_virtual_specifier] = STATE(4992), - [sym_ref_qualifier] = STATE(2564), - [sym__function_attributes_start] = STATE(2532), - [sym__function_exception_specification] = STATE(3328), - [sym__function_attributes_end] = STATE(4492), - [sym__function_postfix] = STATE(5462), - [sym_trailing_return_type] = STATE(4596), - [sym_noexcept] = STATE(3328), - [sym_throw_specifier] = STATE(3328), - [sym_requires_clause] = STATE(5462), - [aux_sym_type_definition_repeat1] = STATE(2170), - [aux_sym__type_definition_type_repeat1] = STATE(2319), - [aux_sym_attributed_declarator_repeat1] = STATE(4729), - [aux_sym__function_postfix_repeat1] = STATE(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_RPAREN] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6113), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6111), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(6402), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_AMP] = ACTIONS(6405), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6111), - [anon_sym_GT_GT] = ACTIONS(6111), - [anon_sym___extension__] = ACTIONS(6408), - [anon_sym___attribute__] = ACTIONS(6410), - [anon_sym___attribute] = ACTIONS(6412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_const] = ACTIONS(6416), - [anon_sym_constexpr] = ACTIONS(6408), - [anon_sym_volatile] = ACTIONS(6408), - [anon_sym_restrict] = ACTIONS(6408), - [anon_sym___restrict__] = ACTIONS(6408), - [anon_sym__Atomic] = ACTIONS(6408), - [anon_sym__Noreturn] = ACTIONS(6408), - [anon_sym_noreturn] = ACTIONS(6408), - [anon_sym__Nonnull] = ACTIONS(6408), - [anon_sym_mutable] = ACTIONS(6408), - [anon_sym_constinit] = ACTIONS(6408), - [anon_sym_consteval] = ACTIONS(6408), - [anon_sym_alignas] = ACTIONS(6418), - [anon_sym__Alignas] = ACTIONS(6418), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_STAR_EQ] = ACTIONS(6113), - [anon_sym_SLASH_EQ] = ACTIONS(6113), - [anon_sym_PERCENT_EQ] = ACTIONS(6113), - [anon_sym_PLUS_EQ] = ACTIONS(6113), - [anon_sym_DASH_EQ] = ACTIONS(6113), - [anon_sym_LT_LT_EQ] = ACTIONS(6113), - [anon_sym_GT_GT_EQ] = ACTIONS(6113), - [anon_sym_AMP_EQ] = ACTIONS(6113), - [anon_sym_CARET_EQ] = ACTIONS(6113), - [anon_sym_PIPE_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6113), - [anon_sym_and] = ACTIONS(6113), - [anon_sym_bitor] = ACTIONS(6113), - [anon_sym_xor] = ACTIONS(6113), - [anon_sym_bitand] = ACTIONS(6113), - [anon_sym_not_eq] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(6420), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6423), - [anon_sym_override] = ACTIONS(6423), - [anon_sym_noexcept] = ACTIONS(6426), - [anon_sym_throw] = ACTIONS(6428), - [anon_sym_requires] = ACTIONS(6430), - [anon_sym_DASH_GT_STAR] = ACTIONS(6113), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1886)] = { - [sym_string_literal] = STATE(2486), - [sym_decltype_auto] = STATE(2086), - [sym_template_argument_list] = STATE(2081), - [sym_raw_string_literal] = STATE(2486), - [aux_sym_sized_type_specifier_repeat1] = STATE(2124), - [sym_identifier] = ACTIONS(5262), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [aux_sym_preproc_if_token2] = ACTIONS(5255), - [aux_sym_preproc_else_token1] = ACTIONS(5255), - [aux_sym_preproc_elif_token1] = ACTIONS(5262), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5255), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5255), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5262), - [anon_sym_PLUS] = ACTIONS(5262), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5262), - [anon_sym_PERCENT] = ACTIONS(5262), - [anon_sym_PIPE_PIPE] = ACTIONS(5255), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5262), - [anon_sym_CARET] = ACTIONS(5262), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5255), - [anon_sym_BANG_EQ] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5262), - [anon_sym_GT_EQ] = ACTIONS(5255), - [anon_sym_LT_EQ] = ACTIONS(5262), - [anon_sym_LT] = ACTIONS(6392), - [anon_sym_LT_LT] = ACTIONS(5262), - [anon_sym_GT_GT] = ACTIONS(5262), - [anon_sym___extension__] = ACTIONS(5251), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(6433), - [anon_sym_unsigned] = ACTIONS(6433), - [anon_sym_long] = ACTIONS(6433), - [anon_sym_short] = ACTIONS(6433), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(5262), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5251), - [anon_sym_volatile] = ACTIONS(5251), - [anon_sym_restrict] = ACTIONS(5251), - [anon_sym___restrict__] = ACTIONS(5251), - [anon_sym__Atomic] = ACTIONS(5251), - [anon_sym__Noreturn] = ACTIONS(5251), - [anon_sym_noreturn] = ACTIONS(5251), - [anon_sym__Nonnull] = ACTIONS(5251), - [anon_sym_mutable] = ACTIONS(5251), - [anon_sym_constinit] = ACTIONS(5251), - [anon_sym_consteval] = ACTIONS(5251), - [anon_sym_alignas] = ACTIONS(5251), - [anon_sym__Alignas] = ACTIONS(5251), - [anon_sym_QMARK] = ACTIONS(5255), - [anon_sym_STAR_EQ] = ACTIONS(5255), - [anon_sym_SLASH_EQ] = ACTIONS(5255), - [anon_sym_PERCENT_EQ] = ACTIONS(5255), - [anon_sym_PLUS_EQ] = ACTIONS(5255), - [anon_sym_DASH_EQ] = ACTIONS(5255), - [anon_sym_LT_LT_EQ] = ACTIONS(5255), - [anon_sym_GT_GT_EQ] = ACTIONS(5255), - [anon_sym_AMP_EQ] = ACTIONS(5255), - [anon_sym_CARET_EQ] = ACTIONS(5255), - [anon_sym_PIPE_EQ] = ACTIONS(5255), - [anon_sym_and_eq] = ACTIONS(5262), - [anon_sym_or_eq] = ACTIONS(5262), - [anon_sym_xor_eq] = ACTIONS(5262), - [anon_sym_LT_EQ_GT] = ACTIONS(5255), - [anon_sym_or] = ACTIONS(5262), - [anon_sym_and] = ACTIONS(5262), - [anon_sym_bitor] = ACTIONS(5262), - [anon_sym_xor] = ACTIONS(5262), - [anon_sym_bitand] = ACTIONS(5262), - [anon_sym_not_eq] = ACTIONS(5262), - [anon_sym_DASH_DASH] = ACTIONS(5255), - [anon_sym_PLUS_PLUS] = ACTIONS(5255), - [anon_sym_DOT] = ACTIONS(5262), - [anon_sym_DOT_STAR] = ACTIONS(5255), - [anon_sym_DASH_GT] = ACTIONS(5255), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6435), - [anon_sym_decltype] = ACTIONS(6437), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [sym_expression] = STATE(6816), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1887)] = { - [sym_string_literal] = STATE(4004), - [sym_decltype_auto] = STATE(3956), - [sym_template_argument_list] = STATE(3170), - [sym_raw_string_literal] = STATE(4004), - [aux_sym_sized_type_specifier_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(5262), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [aux_sym_preproc_if_token2] = ACTIONS(5255), - [aux_sym_preproc_else_token1] = ACTIONS(5255), - [aux_sym_preproc_elif_token1] = ACTIONS(5262), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5255), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5255), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5262), - [anon_sym_PLUS] = ACTIONS(5262), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5262), - [anon_sym_PERCENT] = ACTIONS(5262), - [anon_sym_PIPE_PIPE] = ACTIONS(5255), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5262), - [anon_sym_CARET] = ACTIONS(5262), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5255), - [anon_sym_BANG_EQ] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5262), - [anon_sym_GT_EQ] = ACTIONS(5255), - [anon_sym_LT_EQ] = ACTIONS(5262), - [anon_sym_LT] = ACTIONS(6439), - [anon_sym_LT_LT] = ACTIONS(5262), - [anon_sym_GT_GT] = ACTIONS(5262), - [anon_sym___extension__] = ACTIONS(5251), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(6443), - [anon_sym_unsigned] = ACTIONS(6443), - [anon_sym_long] = ACTIONS(6443), - [anon_sym_short] = ACTIONS(6443), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(6445), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5251), - [anon_sym_volatile] = ACTIONS(5251), - [anon_sym_restrict] = ACTIONS(5251), - [anon_sym___restrict__] = ACTIONS(5251), - [anon_sym__Atomic] = ACTIONS(5251), - [anon_sym__Noreturn] = ACTIONS(5251), - [anon_sym_noreturn] = ACTIONS(5251), - [anon_sym__Nonnull] = ACTIONS(5251), - [anon_sym_mutable] = ACTIONS(5251), - [anon_sym_constinit] = ACTIONS(5251), - [anon_sym_consteval] = ACTIONS(5251), - [anon_sym_alignas] = ACTIONS(5251), - [anon_sym__Alignas] = ACTIONS(5251), - [anon_sym_QMARK] = ACTIONS(5255), - [anon_sym_STAR_EQ] = ACTIONS(6447), - [anon_sym_SLASH_EQ] = ACTIONS(6447), - [anon_sym_PERCENT_EQ] = ACTIONS(6447), - [anon_sym_PLUS_EQ] = ACTIONS(6447), - [anon_sym_DASH_EQ] = ACTIONS(6447), - [anon_sym_LT_LT_EQ] = ACTIONS(6447), - [anon_sym_GT_GT_EQ] = ACTIONS(6447), - [anon_sym_AMP_EQ] = ACTIONS(6447), - [anon_sym_CARET_EQ] = ACTIONS(6447), - [anon_sym_PIPE_EQ] = ACTIONS(6447), - [anon_sym_and_eq] = ACTIONS(6445), - [anon_sym_or_eq] = ACTIONS(6445), - [anon_sym_xor_eq] = ACTIONS(6445), - [anon_sym_LT_EQ_GT] = ACTIONS(5255), - [anon_sym_or] = ACTIONS(5262), - [anon_sym_and] = ACTIONS(5262), - [anon_sym_bitor] = ACTIONS(5262), - [anon_sym_xor] = ACTIONS(5262), - [anon_sym_bitand] = ACTIONS(5262), - [anon_sym_not_eq] = ACTIONS(5262), - [anon_sym_DASH_DASH] = ACTIONS(5255), - [anon_sym_PLUS_PLUS] = ACTIONS(5255), - [anon_sym_DOT] = ACTIONS(5262), - [anon_sym_DOT_STAR] = ACTIONS(5255), - [anon_sym_DASH_GT] = ACTIONS(5255), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6449), - [anon_sym_decltype] = ACTIONS(6451), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [sym_expression] = STATE(6824), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1888)] = { - [sym_attribute_specifier] = STATE(2170), - [sym_attribute_declaration] = STATE(4729), - [sym_type_qualifier] = STATE(2319), - [sym_alignas_qualifier] = STATE(2498), - [sym_gnu_asm_expression] = STATE(8972), - [sym_virtual_specifier] = STATE(4992), - [sym_ref_qualifier] = STATE(2605), - [sym__function_attributes_start] = STATE(2512), - [sym__function_exception_specification] = STATE(3250), - [sym__function_attributes_end] = STATE(4498), - [sym__function_postfix] = STATE(5462), - [sym_trailing_return_type] = STATE(4572), - [sym_noexcept] = STATE(3250), - [sym_throw_specifier] = STATE(3250), - [sym_requires_clause] = STATE(5462), - [aux_sym_type_definition_repeat1] = STATE(2170), - [aux_sym__type_definition_type_repeat1] = STATE(2319), - [aux_sym_attributed_declarator_repeat1] = STATE(4729), - [aux_sym__function_postfix_repeat1] = STATE(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_RPAREN] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6113), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6111), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(6402), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_AMP] = ACTIONS(6405), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6111), - [anon_sym_GT_GT] = ACTIONS(6111), - [anon_sym___extension__] = ACTIONS(6408), - [anon_sym___attribute__] = ACTIONS(6410), - [anon_sym___attribute] = ACTIONS(6412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_const] = ACTIONS(6416), - [anon_sym_constexpr] = ACTIONS(6408), - [anon_sym_volatile] = ACTIONS(6408), - [anon_sym_restrict] = ACTIONS(6408), - [anon_sym___restrict__] = ACTIONS(6408), - [anon_sym__Atomic] = ACTIONS(6408), - [anon_sym__Noreturn] = ACTIONS(6408), - [anon_sym_noreturn] = ACTIONS(6408), - [anon_sym__Nonnull] = ACTIONS(6408), - [anon_sym_mutable] = ACTIONS(6408), - [anon_sym_constinit] = ACTIONS(6408), - [anon_sym_consteval] = ACTIONS(6408), - [anon_sym_alignas] = ACTIONS(6418), - [anon_sym__Alignas] = ACTIONS(6418), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_STAR_EQ] = ACTIONS(6113), - [anon_sym_SLASH_EQ] = ACTIONS(6113), - [anon_sym_PERCENT_EQ] = ACTIONS(6113), - [anon_sym_PLUS_EQ] = ACTIONS(6113), - [anon_sym_DASH_EQ] = ACTIONS(6113), - [anon_sym_LT_LT_EQ] = ACTIONS(6113), - [anon_sym_GT_GT_EQ] = ACTIONS(6113), - [anon_sym_AMP_EQ] = ACTIONS(6113), - [anon_sym_CARET_EQ] = ACTIONS(6113), - [anon_sym_PIPE_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6113), - [anon_sym_and] = ACTIONS(6113), - [anon_sym_bitor] = ACTIONS(6113), - [anon_sym_xor] = ACTIONS(6113), - [anon_sym_bitand] = ACTIONS(6113), - [anon_sym_not_eq] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(6420), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6453), - [anon_sym_override] = ACTIONS(6453), - [anon_sym_noexcept] = ACTIONS(6426), - [anon_sym_throw] = ACTIONS(6428), - [anon_sym_requires] = ACTIONS(6455), - [anon_sym_DASH_GT_STAR] = ACTIONS(6113), + [sym_expression] = STATE(6833), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1889)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(1975), - [sym_ms_pointer_modifier] = STATE(1891), - [sym__abstract_declarator] = STATE(4146), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2019), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1842), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2019), - [aux_sym_pointer_declarator_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(6457), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [aux_sym_preproc_if_token2] = ACTIONS(6459), - [aux_sym_preproc_else_token1] = ACTIONS(6459), - [aux_sym_preproc_elif_token1] = ACTIONS(6457), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6459), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_PLUS] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_SLASH] = ACTIONS(6457), - [anon_sym_PERCENT] = ACTIONS(6457), - [anon_sym_PIPE_PIPE] = ACTIONS(6459), - [anon_sym_AMP_AMP] = ACTIONS(6465), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_CARET] = ACTIONS(6457), - [anon_sym_AMP] = ACTIONS(6467), - [anon_sym_EQ_EQ] = ACTIONS(6459), - [anon_sym_BANG_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_LT_EQ] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_LT_LT] = ACTIONS(6457), - [anon_sym_GT_GT] = ACTIONS(6457), - [anon_sym___extension__] = ACTIONS(6469), - [sym_ms_restrict_modifier] = ACTIONS(6471), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6471), - [sym_ms_signed_ptr_modifier] = ACTIONS(6471), - [anon_sym__unaligned] = ACTIONS(6473), - [anon_sym___unaligned] = ACTIONS(6473), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6469), - [anon_sym_volatile] = ACTIONS(6469), - [anon_sym_restrict] = ACTIONS(6469), - [anon_sym___restrict__] = ACTIONS(6469), - [anon_sym__Atomic] = ACTIONS(6469), - [anon_sym__Noreturn] = ACTIONS(6469), - [anon_sym_noreturn] = ACTIONS(6469), - [anon_sym__Nonnull] = ACTIONS(6469), - [anon_sym_mutable] = ACTIONS(6469), - [anon_sym_constinit] = ACTIONS(6469), - [anon_sym_consteval] = ACTIONS(6469), - [anon_sym_alignas] = ACTIONS(6477), - [anon_sym__Alignas] = ACTIONS(6477), - [anon_sym_QMARK] = ACTIONS(6459), - [anon_sym_STAR_EQ] = ACTIONS(6459), - [anon_sym_SLASH_EQ] = ACTIONS(6459), - [anon_sym_PERCENT_EQ] = ACTIONS(6459), - [anon_sym_PLUS_EQ] = ACTIONS(6459), - [anon_sym_DASH_EQ] = ACTIONS(6459), - [anon_sym_LT_LT_EQ] = ACTIONS(6459), - [anon_sym_GT_GT_EQ] = ACTIONS(6459), - [anon_sym_AMP_EQ] = ACTIONS(6459), - [anon_sym_CARET_EQ] = ACTIONS(6459), - [anon_sym_PIPE_EQ] = ACTIONS(6459), - [anon_sym_and_eq] = ACTIONS(6457), - [anon_sym_or_eq] = ACTIONS(6457), - [anon_sym_xor_eq] = ACTIONS(6457), - [anon_sym_LT_EQ_GT] = ACTIONS(6459), - [anon_sym_or] = ACTIONS(6457), - [anon_sym_and] = ACTIONS(6457), - [anon_sym_bitor] = ACTIONS(6457), - [anon_sym_xor] = ACTIONS(6457), - [anon_sym_bitand] = ACTIONS(6457), - [anon_sym_not_eq] = ACTIONS(6457), - [anon_sym_DASH_DASH] = ACTIONS(6459), - [anon_sym_PLUS_PLUS] = ACTIONS(6459), - [anon_sym_DOT] = ACTIONS(6457), - [anon_sym_DOT_STAR] = ACTIONS(6459), - [anon_sym_DASH_GT] = ACTIONS(6459), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6457), - [anon_sym_override] = ACTIONS(6457), - [anon_sym_requires] = ACTIONS(6457), + [sym_expression] = STATE(6838), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1890)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(1975), - [sym_ms_pointer_modifier] = STATE(1892), - [sym__abstract_declarator] = STATE(4087), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2005), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1843), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2005), - [aux_sym_pointer_declarator_repeat1] = STATE(1892), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_RPAREN] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_PLUS] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6457), - [anon_sym_PERCENT] = ACTIONS(6457), - [anon_sym_PIPE_PIPE] = ACTIONS(6459), - [anon_sym_AMP_AMP] = ACTIONS(6481), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_CARET] = ACTIONS(6457), - [anon_sym_AMP] = ACTIONS(6483), - [anon_sym_EQ_EQ] = ACTIONS(6459), - [anon_sym_BANG_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_LT_EQ] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_LT_LT] = ACTIONS(6457), - [anon_sym_GT_GT] = ACTIONS(6457), - [anon_sym_SEMI] = ACTIONS(6459), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(6457), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6459), - [sym_ms_restrict_modifier] = ACTIONS(6471), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6487), - [sym_ms_signed_ptr_modifier] = ACTIONS(6487), - [anon_sym__unaligned] = ACTIONS(6489), - [anon_sym___unaligned] = ACTIONS(6489), - [anon_sym_RBRACE] = ACTIONS(6459), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6459), - [anon_sym_STAR_EQ] = ACTIONS(6459), - [anon_sym_SLASH_EQ] = ACTIONS(6459), - [anon_sym_PERCENT_EQ] = ACTIONS(6459), - [anon_sym_PLUS_EQ] = ACTIONS(6459), - [anon_sym_DASH_EQ] = ACTIONS(6459), - [anon_sym_LT_LT_EQ] = ACTIONS(6459), - [anon_sym_GT_GT_EQ] = ACTIONS(6459), - [anon_sym_AMP_EQ] = ACTIONS(6459), - [anon_sym_CARET_EQ] = ACTIONS(6459), - [anon_sym_PIPE_EQ] = ACTIONS(6459), - [anon_sym_and_eq] = ACTIONS(6459), - [anon_sym_or_eq] = ACTIONS(6459), - [anon_sym_xor_eq] = ACTIONS(6459), - [anon_sym_LT_EQ_GT] = ACTIONS(6459), - [anon_sym_or] = ACTIONS(6457), - [anon_sym_and] = ACTIONS(6457), - [anon_sym_bitor] = ACTIONS(6459), - [anon_sym_xor] = ACTIONS(6457), - [anon_sym_bitand] = ACTIONS(6459), - [anon_sym_not_eq] = ACTIONS(6459), - [anon_sym_DASH_DASH] = ACTIONS(6459), - [anon_sym_PLUS_PLUS] = ACTIONS(6459), - [anon_sym_DOT] = ACTIONS(6457), - [anon_sym_DOT_STAR] = ACTIONS(6459), - [anon_sym_DASH_GT] = ACTIONS(6459), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6459), - [anon_sym_override] = ACTIONS(6459), - [anon_sym_requires] = ACTIONS(6459), - [anon_sym_COLON_RBRACK] = ACTIONS(6459), + [sym_expression] = STATE(6841), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1891)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(1975), - [sym_ms_pointer_modifier] = STATE(1928), - [sym__abstract_declarator] = STATE(4148), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2021), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1842), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2021), - [aux_sym_pointer_declarator_repeat1] = STATE(1928), - [sym_identifier] = ACTIONS(6495), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [aux_sym_preproc_if_token2] = ACTIONS(6497), - [aux_sym_preproc_else_token1] = ACTIONS(6497), - [aux_sym_preproc_elif_token1] = ACTIONS(6495), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6497), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(6465), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(6467), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym___extension__] = ACTIONS(6469), - [sym_ms_restrict_modifier] = ACTIONS(6471), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6471), - [sym_ms_signed_ptr_modifier] = ACTIONS(6471), - [anon_sym__unaligned] = ACTIONS(6473), - [anon_sym___unaligned] = ACTIONS(6473), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6469), - [anon_sym_volatile] = ACTIONS(6469), - [anon_sym_restrict] = ACTIONS(6469), - [anon_sym___restrict__] = ACTIONS(6469), - [anon_sym__Atomic] = ACTIONS(6469), - [anon_sym__Noreturn] = ACTIONS(6469), - [anon_sym_noreturn] = ACTIONS(6469), - [anon_sym__Nonnull] = ACTIONS(6469), - [anon_sym_mutable] = ACTIONS(6469), - [anon_sym_constinit] = ACTIONS(6469), - [anon_sym_consteval] = ACTIONS(6469), - [anon_sym_alignas] = ACTIONS(6477), - [anon_sym__Alignas] = ACTIONS(6477), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6497), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_and_eq] = ACTIONS(6495), - [anon_sym_or_eq] = ACTIONS(6495), - [anon_sym_xor_eq] = ACTIONS(6495), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6495), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6495), - [anon_sym_not_eq] = ACTIONS(6495), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6495), - [anon_sym_override] = ACTIONS(6495), - [anon_sym_requires] = ACTIONS(6495), + [sym_expression] = STATE(6530), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1892)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(1975), - [sym_ms_pointer_modifier] = STATE(1928), - [sym__abstract_declarator] = STATE(4090), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2007), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1843), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2007), - [aux_sym_pointer_declarator_repeat1] = STATE(1928), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_RPAREN] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(6481), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(6483), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym_SEMI] = ACTIONS(6497), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(6495), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6497), - [sym_ms_restrict_modifier] = ACTIONS(6471), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6487), - [sym_ms_signed_ptr_modifier] = ACTIONS(6487), - [anon_sym__unaligned] = ACTIONS(6489), - [anon_sym___unaligned] = ACTIONS(6489), - [anon_sym_RBRACE] = ACTIONS(6497), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6497), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_and_eq] = ACTIONS(6497), - [anon_sym_or_eq] = ACTIONS(6497), - [anon_sym_xor_eq] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6497), - [anon_sym_override] = ACTIONS(6497), - [anon_sym_requires] = ACTIONS(6497), - [anon_sym_COLON_RBRACK] = ACTIONS(6497), + [sym_expression] = STATE(5504), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, [STATE(1893)] = { - [sym_string_literal] = STATE(4004), - [sym_decltype_auto] = STATE(3014), - [sym_template_argument_list] = STATE(3170), - [sym_raw_string_literal] = STATE(4004), - [aux_sym_sized_type_specifier_repeat1] = STATE(3464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [anon_sym_RPAREN] = ACTIONS(5255), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5262), - [anon_sym_PLUS] = ACTIONS(5262), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5262), - [anon_sym_PERCENT] = ACTIONS(5262), - [anon_sym_PIPE_PIPE] = ACTIONS(5255), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5262), - [anon_sym_CARET] = ACTIONS(5262), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5255), - [anon_sym_BANG_EQ] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5262), - [anon_sym_GT_EQ] = ACTIONS(5255), - [anon_sym_LT_EQ] = ACTIONS(5262), - [anon_sym_LT] = ACTIONS(6499), - [anon_sym_LT_LT] = ACTIONS(5262), - [anon_sym_GT_GT] = ACTIONS(5262), - [anon_sym_SEMI] = ACTIONS(5255), - [anon_sym___extension__] = ACTIONS(5258), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_RBRACE] = ACTIONS(5255), - [anon_sym_signed] = ACTIONS(6503), - [anon_sym_unsigned] = ACTIONS(6503), - [anon_sym_long] = ACTIONS(6503), - [anon_sym_short] = ACTIONS(6503), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(5276), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5258), - [anon_sym_volatile] = ACTIONS(5258), - [anon_sym_restrict] = ACTIONS(5258), - [anon_sym___restrict__] = ACTIONS(5258), - [anon_sym__Atomic] = ACTIONS(5258), - [anon_sym__Noreturn] = ACTIONS(5258), - [anon_sym_noreturn] = ACTIONS(5258), - [anon_sym__Nonnull] = ACTIONS(5258), - [anon_sym_mutable] = ACTIONS(5258), - [anon_sym_constinit] = ACTIONS(5258), - [anon_sym_consteval] = ACTIONS(5258), - [anon_sym_alignas] = ACTIONS(5258), - [anon_sym__Alignas] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5255), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5278), - [anon_sym_or_eq] = ACTIONS(5278), - [anon_sym_xor_eq] = ACTIONS(5278), - [anon_sym_LT_EQ_GT] = ACTIONS(5255), - [anon_sym_or] = ACTIONS(5262), - [anon_sym_and] = ACTIONS(5262), - [anon_sym_bitor] = ACTIONS(5255), - [anon_sym_xor] = ACTIONS(5262), - [anon_sym_bitand] = ACTIONS(5255), - [anon_sym_not_eq] = ACTIONS(5255), - [anon_sym_DASH_DASH] = ACTIONS(5255), - [anon_sym_PLUS_PLUS] = ACTIONS(5255), - [anon_sym_DOT] = ACTIONS(5262), - [anon_sym_DOT_STAR] = ACTIONS(5255), - [anon_sym_DASH_GT] = ACTIONS(5255), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6505), - [anon_sym_decltype] = ACTIONS(6507), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_COLON_RBRACK] = ACTIONS(5255), + [sym_expression] = STATE(6884), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1894)] = { - [sym_template_argument_list] = STATE(1898), - [sym_identifier] = ACTIONS(6201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6205), - [anon_sym_COMMA] = ACTIONS(6205), - [anon_sym_RPAREN] = ACTIONS(6205), - [anon_sym_LPAREN2] = ACTIONS(6205), - [anon_sym_TILDE] = ACTIONS(6208), - [anon_sym_DASH] = ACTIONS(6210), - [anon_sym_PLUS] = ACTIONS(6210), - [anon_sym_STAR] = ACTIONS(6212), - [anon_sym_SLASH] = ACTIONS(6210), - [anon_sym_PERCENT] = ACTIONS(6210), - [anon_sym_PIPE_PIPE] = ACTIONS(6203), - [anon_sym_AMP_AMP] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(6210), - [anon_sym_CARET] = ACTIONS(6210), - [anon_sym_AMP] = ACTIONS(6212), - [anon_sym_EQ_EQ] = ACTIONS(6203), - [anon_sym_BANG_EQ] = ACTIONS(6203), - [anon_sym_GT] = ACTIONS(6210), - [anon_sym_GT_EQ] = ACTIONS(6203), - [anon_sym_LT_EQ] = ACTIONS(6210), - [anon_sym_LT] = ACTIONS(6509), - [anon_sym_LT_LT] = ACTIONS(6210), - [anon_sym_GT_GT] = ACTIONS(6210), - [anon_sym___extension__] = ACTIONS(6201), - [anon_sym_virtual] = ACTIONS(6201), - [anon_sym_extern] = ACTIONS(6201), - [anon_sym___attribute__] = ACTIONS(6201), - [anon_sym___attribute] = ACTIONS(6201), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6208), - [anon_sym___declspec] = ACTIONS(6201), - [anon_sym___based] = ACTIONS(6201), - [anon_sym_LBRACE] = ACTIONS(6208), - [anon_sym_LBRACK] = ACTIONS(6212), - [anon_sym_static] = ACTIONS(6201), - [anon_sym_EQ] = ACTIONS(6212), - [anon_sym_register] = ACTIONS(6201), - [anon_sym_inline] = ACTIONS(6201), - [anon_sym___inline] = ACTIONS(6201), - [anon_sym___inline__] = ACTIONS(6201), - [anon_sym___forceinline] = ACTIONS(6201), - [anon_sym_thread_local] = ACTIONS(6201), - [anon_sym___thread] = ACTIONS(6201), - [anon_sym_const] = ACTIONS(6201), - [anon_sym_constexpr] = ACTIONS(6201), - [anon_sym_volatile] = ACTIONS(6201), - [anon_sym_restrict] = ACTIONS(6201), - [anon_sym___restrict__] = ACTIONS(6201), - [anon_sym__Atomic] = ACTIONS(6201), - [anon_sym__Noreturn] = ACTIONS(6201), - [anon_sym_noreturn] = ACTIONS(6201), - [anon_sym__Nonnull] = ACTIONS(6201), - [anon_sym_mutable] = ACTIONS(6201), - [anon_sym_constinit] = ACTIONS(6201), - [anon_sym_consteval] = ACTIONS(6201), - [anon_sym_alignas] = ACTIONS(6201), - [anon_sym__Alignas] = ACTIONS(6201), - [anon_sym_QMARK] = ACTIONS(6203), - [anon_sym_STAR_EQ] = ACTIONS(6203), - [anon_sym_SLASH_EQ] = ACTIONS(6203), - [anon_sym_PERCENT_EQ] = ACTIONS(6203), - [anon_sym_PLUS_EQ] = ACTIONS(6203), - [anon_sym_DASH_EQ] = ACTIONS(6203), - [anon_sym_LT_LT_EQ] = ACTIONS(6203), - [anon_sym_GT_GT_EQ] = ACTIONS(6203), - [anon_sym_AMP_EQ] = ACTIONS(6203), - [anon_sym_CARET_EQ] = ACTIONS(6203), - [anon_sym_PIPE_EQ] = ACTIONS(6203), - [anon_sym_and_eq] = ACTIONS(6210), - [anon_sym_or_eq] = ACTIONS(6210), - [anon_sym_xor_eq] = ACTIONS(6210), - [anon_sym_LT_EQ_GT] = ACTIONS(6203), - [anon_sym_or] = ACTIONS(6210), - [anon_sym_and] = ACTIONS(6210), - [anon_sym_bitor] = ACTIONS(6210), - [anon_sym_xor] = ACTIONS(6210), - [anon_sym_bitand] = ACTIONS(6210), - [anon_sym_not_eq] = ACTIONS(6210), - [anon_sym_DASH_DASH] = ACTIONS(6203), - [anon_sym_PLUS_PLUS] = ACTIONS(6203), - [anon_sym_DOT] = ACTIONS(6210), - [anon_sym_DOT_STAR] = ACTIONS(6203), - [anon_sym_DASH_GT] = ACTIONS(6210), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6201), - [anon_sym_decltype] = ACTIONS(6201), - [anon_sym_template] = ACTIONS(6201), - [anon_sym_operator] = ACTIONS(6201), - [anon_sym_DASH_GT_STAR] = ACTIONS(6203), - [anon_sym_LBRACK_COLON] = ACTIONS(6208), + [sym_expression] = STATE(6848), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(6447), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1895)] = { - [sym_string_literal] = STATE(3557), - [sym_decltype_auto] = STATE(3014), - [sym_template_argument_list] = STATE(2655), - [sym_raw_string_literal] = STATE(3557), - [aux_sym_sized_type_specifier_repeat1] = STATE(3464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_RPAREN] = ACTIONS(5284), - [anon_sym_LPAREN2] = ACTIONS(5284), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(6512), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym___extension__] = ACTIONS(5258), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6515), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(6503), - [anon_sym_unsigned] = ACTIONS(6503), - [anon_sym_long] = ACTIONS(6503), - [anon_sym_short] = ACTIONS(6503), - [anon_sym_LBRACK] = ACTIONS(5293), - [anon_sym_EQ] = ACTIONS(5260), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5258), - [anon_sym_volatile] = ACTIONS(5258), - [anon_sym_restrict] = ACTIONS(5258), - [anon_sym___restrict__] = ACTIONS(5258), - [anon_sym__Atomic] = ACTIONS(5258), - [anon_sym__Noreturn] = ACTIONS(5258), - [anon_sym_noreturn] = ACTIONS(5258), - [anon_sym__Nonnull] = ACTIONS(5258), - [anon_sym_mutable] = ACTIONS(5258), - [anon_sym_constinit] = ACTIONS(5258), - [anon_sym_consteval] = ACTIONS(5258), - [anon_sym_alignas] = ACTIONS(5258), - [anon_sym__Alignas] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5253), - [anon_sym_SLASH_EQ] = ACTIONS(5253), - [anon_sym_PERCENT_EQ] = ACTIONS(5253), - [anon_sym_PLUS_EQ] = ACTIONS(5253), - [anon_sym_DASH_EQ] = ACTIONS(5253), - [anon_sym_LT_LT_EQ] = ACTIONS(5253), - [anon_sym_GT_GT_EQ] = ACTIONS(5253), - [anon_sym_AMP_EQ] = ACTIONS(5253), - [anon_sym_CARET_EQ] = ACTIONS(5253), - [anon_sym_PIPE_EQ] = ACTIONS(5253), - [anon_sym_and_eq] = ACTIONS(5253), - [anon_sym_or_eq] = ACTIONS(5253), - [anon_sym_xor_eq] = ACTIONS(5253), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5260), - [anon_sym_L_DQUOTE] = ACTIONS(6517), - [anon_sym_u_DQUOTE] = ACTIONS(6517), - [anon_sym_U_DQUOTE] = ACTIONS(6517), - [anon_sym_u8_DQUOTE] = ACTIONS(6517), - [anon_sym_DQUOTE] = ACTIONS(6517), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6505), - [anon_sym_decltype] = ACTIONS(6507), - [anon_sym_R_DQUOTE] = ACTIONS(6519), - [anon_sym_LR_DQUOTE] = ACTIONS(6519), - [anon_sym_uR_DQUOTE] = ACTIONS(6519), - [anon_sym_UR_DQUOTE] = ACTIONS(6519), - [anon_sym_u8R_DQUOTE] = ACTIONS(6519), - [anon_sym_DASH_GT_STAR] = ACTIONS(5253), + [sym_expression] = STATE(6533), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1896)] = { - [sym_type_qualifier] = STATE(1899), - [sym_alignas_qualifier] = STATE(1942), - [aux_sym__type_definition_type_repeat1] = STATE(1899), - [sym_identifier] = ACTIONS(6521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6523), - [anon_sym_COMMA] = ACTIONS(6523), - [anon_sym_RPAREN] = ACTIONS(6523), - [aux_sym_preproc_if_token2] = ACTIONS(6523), - [aux_sym_preproc_else_token1] = ACTIONS(6523), - [aux_sym_preproc_elif_token1] = ACTIONS(6521), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6523), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6523), - [anon_sym_LPAREN2] = ACTIONS(6523), - [anon_sym_DASH] = ACTIONS(6521), - [anon_sym_PLUS] = ACTIONS(6521), - [anon_sym_STAR] = ACTIONS(6521), - [anon_sym_SLASH] = ACTIONS(6521), - [anon_sym_PERCENT] = ACTIONS(6521), - [anon_sym_PIPE_PIPE] = ACTIONS(6523), - [anon_sym_AMP_AMP] = ACTIONS(6523), - [anon_sym_PIPE] = ACTIONS(6521), - [anon_sym_CARET] = ACTIONS(6521), - [anon_sym_AMP] = ACTIONS(6521), - [anon_sym_EQ_EQ] = ACTIONS(6523), - [anon_sym_BANG_EQ] = ACTIONS(6523), - [anon_sym_GT] = ACTIONS(6521), - [anon_sym_GT_EQ] = ACTIONS(6523), - [anon_sym_LT_EQ] = ACTIONS(6521), - [anon_sym_LT] = ACTIONS(6521), - [anon_sym_LT_LT] = ACTIONS(6521), - [anon_sym_GT_GT] = ACTIONS(6521), - [anon_sym_SEMI] = ACTIONS(6523), - [anon_sym___extension__] = ACTIONS(6121), - [anon_sym___attribute__] = ACTIONS(6521), - [anon_sym___attribute] = ACTIONS(6521), - [anon_sym_COLON] = ACTIONS(6521), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6523), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6523), - [anon_sym_RBRACE] = ACTIONS(6523), - [anon_sym_LBRACK] = ACTIONS(6521), - [anon_sym_EQ] = ACTIONS(6521), - [anon_sym_const] = ACTIONS(6121), - [anon_sym_constexpr] = ACTIONS(6121), - [anon_sym_volatile] = ACTIONS(6121), - [anon_sym_restrict] = ACTIONS(6121), - [anon_sym___restrict__] = ACTIONS(6121), - [anon_sym__Atomic] = ACTIONS(6121), - [anon_sym__Noreturn] = ACTIONS(6121), - [anon_sym_noreturn] = ACTIONS(6121), - [anon_sym__Nonnull] = ACTIONS(6121), - [anon_sym_mutable] = ACTIONS(6121), - [anon_sym_constinit] = ACTIONS(6121), - [anon_sym_consteval] = ACTIONS(6121), - [anon_sym_alignas] = ACTIONS(6127), - [anon_sym__Alignas] = ACTIONS(6127), - [anon_sym_QMARK] = ACTIONS(6523), - [anon_sym_STAR_EQ] = ACTIONS(6523), - [anon_sym_SLASH_EQ] = ACTIONS(6523), - [anon_sym_PERCENT_EQ] = ACTIONS(6523), - [anon_sym_PLUS_EQ] = ACTIONS(6523), - [anon_sym_DASH_EQ] = ACTIONS(6523), - [anon_sym_LT_LT_EQ] = ACTIONS(6523), - [anon_sym_GT_GT_EQ] = ACTIONS(6523), - [anon_sym_AMP_EQ] = ACTIONS(6523), - [anon_sym_CARET_EQ] = ACTIONS(6523), - [anon_sym_PIPE_EQ] = ACTIONS(6523), - [anon_sym_and_eq] = ACTIONS(6521), - [anon_sym_or_eq] = ACTIONS(6521), - [anon_sym_xor_eq] = ACTIONS(6521), - [anon_sym_LT_EQ_GT] = ACTIONS(6523), - [anon_sym_or] = ACTIONS(6521), - [anon_sym_and] = ACTIONS(6521), - [anon_sym_bitor] = ACTIONS(6521), - [anon_sym_xor] = ACTIONS(6521), - [anon_sym_bitand] = ACTIONS(6521), - [anon_sym_not_eq] = ACTIONS(6521), - [anon_sym_DASH_DASH] = ACTIONS(6523), - [anon_sym_PLUS_PLUS] = ACTIONS(6523), - [anon_sym_asm] = ACTIONS(6521), - [anon_sym___asm__] = ACTIONS(6521), - [anon_sym___asm] = ACTIONS(6521), - [anon_sym_DOT] = ACTIONS(6521), - [anon_sym_DOT_STAR] = ACTIONS(6523), - [anon_sym_DASH_GT] = ACTIONS(6523), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6521), - [anon_sym_override] = ACTIONS(6521), - [anon_sym_noexcept] = ACTIONS(6521), - [anon_sym_throw] = ACTIONS(6521), - [anon_sym_requires] = ACTIONS(6521), - [anon_sym_COLON_RBRACK] = ACTIONS(6523), + [sym_expression] = STATE(6850), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1897)] = { - [sym_identifier] = ACTIONS(6246), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6248), - [anon_sym_COMMA] = ACTIONS(6248), - [anon_sym_RPAREN] = ACTIONS(6248), - [anon_sym_LPAREN2] = ACTIONS(6248), - [anon_sym_TILDE] = ACTIONS(6248), - [anon_sym_DASH] = ACTIONS(6246), - [anon_sym_PLUS] = ACTIONS(6246), - [anon_sym_STAR] = ACTIONS(6248), - [anon_sym_SLASH] = ACTIONS(6246), - [anon_sym_PERCENT] = ACTIONS(6248), - [anon_sym_PIPE_PIPE] = ACTIONS(6248), - [anon_sym_AMP_AMP] = ACTIONS(6248), - [anon_sym_PIPE] = ACTIONS(6246), - [anon_sym_CARET] = ACTIONS(6248), - [anon_sym_AMP] = ACTIONS(6246), - [anon_sym_EQ_EQ] = ACTIONS(6248), - [anon_sym_BANG_EQ] = ACTIONS(6248), - [anon_sym_GT] = ACTIONS(6246), - [anon_sym_GT_EQ] = ACTIONS(6248), - [anon_sym_LT_EQ] = ACTIONS(6246), - [anon_sym_LT] = ACTIONS(6246), - [anon_sym_LT_LT] = ACTIONS(6248), - [anon_sym_GT_GT] = ACTIONS(6248), - [anon_sym_SEMI] = ACTIONS(6248), - [anon_sym___extension__] = ACTIONS(6246), - [anon_sym_virtual] = ACTIONS(6246), - [anon_sym_extern] = ACTIONS(6246), - [anon_sym___attribute__] = ACTIONS(6246), - [anon_sym___attribute] = ACTIONS(6246), - [anon_sym_COLON] = ACTIONS(6246), - [anon_sym_COLON_COLON] = ACTIONS(6248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6248), - [anon_sym___declspec] = ACTIONS(6246), - [anon_sym___based] = ACTIONS(6246), - [anon_sym___cdecl] = ACTIONS(6246), - [anon_sym___clrcall] = ACTIONS(6246), - [anon_sym___stdcall] = ACTIONS(6246), - [anon_sym___fastcall] = ACTIONS(6246), - [anon_sym___thiscall] = ACTIONS(6246), - [anon_sym___vectorcall] = ACTIONS(6246), - [anon_sym_LBRACE] = ACTIONS(6248), - [anon_sym_RBRACE] = ACTIONS(6248), - [anon_sym_LBRACK] = ACTIONS(6246), - [anon_sym_static] = ACTIONS(6246), - [anon_sym_RBRACK] = ACTIONS(6248), - [anon_sym_EQ] = ACTIONS(6246), - [anon_sym_register] = ACTIONS(6246), - [anon_sym_inline] = ACTIONS(6246), - [anon_sym___inline] = ACTIONS(6246), - [anon_sym___inline__] = ACTIONS(6246), - [anon_sym___forceinline] = ACTIONS(6246), - [anon_sym_thread_local] = ACTIONS(6246), - [anon_sym___thread] = ACTIONS(6246), - [anon_sym_const] = ACTIONS(6246), - [anon_sym_constexpr] = ACTIONS(6246), - [anon_sym_volatile] = ACTIONS(6246), - [anon_sym_restrict] = ACTIONS(6246), - [anon_sym___restrict__] = ACTIONS(6246), - [anon_sym__Atomic] = ACTIONS(6246), - [anon_sym__Noreturn] = ACTIONS(6246), - [anon_sym_noreturn] = ACTIONS(6246), - [anon_sym__Nonnull] = ACTIONS(6246), - [anon_sym_mutable] = ACTIONS(6246), - [anon_sym_constinit] = ACTIONS(6246), - [anon_sym_consteval] = ACTIONS(6246), - [anon_sym_alignas] = ACTIONS(6246), - [anon_sym__Alignas] = ACTIONS(6246), - [anon_sym_QMARK] = ACTIONS(6248), - [anon_sym_LT_EQ_GT] = ACTIONS(6248), - [anon_sym_or] = ACTIONS(6246), - [anon_sym_and] = ACTIONS(6246), - [anon_sym_bitor] = ACTIONS(6246), - [anon_sym_xor] = ACTIONS(6246), - [anon_sym_bitand] = ACTIONS(6246), - [anon_sym_not_eq] = ACTIONS(6246), - [anon_sym_DASH_DASH] = ACTIONS(6248), - [anon_sym_PLUS_PLUS] = ACTIONS(6248), - [anon_sym_DOT] = ACTIONS(6246), - [anon_sym_DOT_STAR] = ACTIONS(6248), - [anon_sym_DASH_GT] = ACTIONS(6248), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6246), - [anon_sym_decltype] = ACTIONS(6246), - [anon_sym_final] = ACTIONS(6246), - [anon_sym_override] = ACTIONS(6246), - [anon_sym_template] = ACTIONS(6246), - [anon_sym_operator] = ACTIONS(6246), - [anon_sym_noexcept] = ACTIONS(6246), - [anon_sym_throw] = ACTIONS(6246), - [anon_sym_LBRACK_COLON] = ACTIONS(6248), + [sym_expression] = STATE(6851), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1898)] = { - [sym_identifier] = ACTIONS(6226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), - [anon_sym_COMMA] = ACTIONS(6230), - [anon_sym_RPAREN] = ACTIONS(6230), - [anon_sym_LPAREN2] = ACTIONS(6230), - [anon_sym_TILDE] = ACTIONS(6233), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6237), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_PERCENT] = ACTIONS(6235), - [anon_sym_PIPE_PIPE] = ACTIONS(6228), - [anon_sym_AMP_AMP] = ACTIONS(6230), - [anon_sym_PIPE] = ACTIONS(6235), - [anon_sym_CARET] = ACTIONS(6235), - [anon_sym_AMP] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6228), - [anon_sym_BANG_EQ] = ACTIONS(6228), - [anon_sym_GT] = ACTIONS(6235), - [anon_sym_GT_EQ] = ACTIONS(6228), - [anon_sym_LT_EQ] = ACTIONS(6235), - [anon_sym_LT] = ACTIONS(6235), - [anon_sym_LT_LT] = ACTIONS(6235), - [anon_sym_GT_GT] = ACTIONS(6235), - [anon_sym___extension__] = ACTIONS(6226), - [anon_sym_virtual] = ACTIONS(6226), - [anon_sym_extern] = ACTIONS(6226), - [anon_sym___attribute__] = ACTIONS(6226), - [anon_sym___attribute] = ACTIONS(6226), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6233), - [anon_sym___declspec] = ACTIONS(6226), - [anon_sym___based] = ACTIONS(6226), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6237), - [anon_sym_static] = ACTIONS(6226), - [anon_sym_EQ] = ACTIONS(6237), - [anon_sym_register] = ACTIONS(6226), - [anon_sym_inline] = ACTIONS(6226), - [anon_sym___inline] = ACTIONS(6226), - [anon_sym___inline__] = ACTIONS(6226), - [anon_sym___forceinline] = ACTIONS(6226), - [anon_sym_thread_local] = ACTIONS(6226), - [anon_sym___thread] = ACTIONS(6226), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6226), - [anon_sym_volatile] = ACTIONS(6226), - [anon_sym_restrict] = ACTIONS(6226), - [anon_sym___restrict__] = ACTIONS(6226), - [anon_sym__Atomic] = ACTIONS(6226), - [anon_sym__Noreturn] = ACTIONS(6226), - [anon_sym_noreturn] = ACTIONS(6226), - [anon_sym__Nonnull] = ACTIONS(6226), - [anon_sym_mutable] = ACTIONS(6226), - [anon_sym_constinit] = ACTIONS(6226), - [anon_sym_consteval] = ACTIONS(6226), - [anon_sym_alignas] = ACTIONS(6226), - [anon_sym__Alignas] = ACTIONS(6226), - [anon_sym_QMARK] = ACTIONS(6228), - [anon_sym_STAR_EQ] = ACTIONS(6228), - [anon_sym_SLASH_EQ] = ACTIONS(6228), - [anon_sym_PERCENT_EQ] = ACTIONS(6228), - [anon_sym_PLUS_EQ] = ACTIONS(6228), - [anon_sym_DASH_EQ] = ACTIONS(6228), - [anon_sym_LT_LT_EQ] = ACTIONS(6228), - [anon_sym_GT_GT_EQ] = ACTIONS(6228), - [anon_sym_AMP_EQ] = ACTIONS(6228), - [anon_sym_CARET_EQ] = ACTIONS(6228), - [anon_sym_PIPE_EQ] = ACTIONS(6228), - [anon_sym_and_eq] = ACTIONS(6235), - [anon_sym_or_eq] = ACTIONS(6235), - [anon_sym_xor_eq] = ACTIONS(6235), - [anon_sym_LT_EQ_GT] = ACTIONS(6228), - [anon_sym_or] = ACTIONS(6235), - [anon_sym_and] = ACTIONS(6235), - [anon_sym_bitor] = ACTIONS(6235), - [anon_sym_xor] = ACTIONS(6235), - [anon_sym_bitand] = ACTIONS(6235), - [anon_sym_not_eq] = ACTIONS(6235), - [anon_sym_DASH_DASH] = ACTIONS(6228), - [anon_sym_PLUS_PLUS] = ACTIONS(6228), - [anon_sym_DOT] = ACTIONS(6235), - [anon_sym_DOT_STAR] = ACTIONS(6228), - [anon_sym_DASH_GT] = ACTIONS(6235), + [sym_expression] = STATE(6852), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6226), - [anon_sym_decltype] = ACTIONS(6226), - [anon_sym_template] = ACTIONS(6226), - [anon_sym_operator] = ACTIONS(6226), - [anon_sym_DASH_GT_STAR] = ACTIONS(6228), - [anon_sym_LBRACK_COLON] = ACTIONS(6233), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1899)] = { - [sym_type_qualifier] = STATE(1899), - [sym_alignas_qualifier] = STATE(1942), - [aux_sym__type_definition_type_repeat1] = STATE(1899), - [sym_identifier] = ACTIONS(6525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_RPAREN] = ACTIONS(6527), - [aux_sym_preproc_if_token2] = ACTIONS(6527), - [aux_sym_preproc_else_token1] = ACTIONS(6527), - [aux_sym_preproc_elif_token1] = ACTIONS(6525), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6527), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6527), - [anon_sym_LPAREN2] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6525), - [anon_sym_PLUS] = ACTIONS(6525), - [anon_sym_STAR] = ACTIONS(6525), - [anon_sym_SLASH] = ACTIONS(6525), - [anon_sym_PERCENT] = ACTIONS(6525), - [anon_sym_PIPE_PIPE] = ACTIONS(6527), - [anon_sym_AMP_AMP] = ACTIONS(6527), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_CARET] = ACTIONS(6525), - [anon_sym_AMP] = ACTIONS(6525), - [anon_sym_EQ_EQ] = ACTIONS(6527), - [anon_sym_BANG_EQ] = ACTIONS(6527), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6527), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_LT_LT] = ACTIONS(6525), - [anon_sym_GT_GT] = ACTIONS(6525), - [anon_sym_SEMI] = ACTIONS(6527), - [anon_sym___extension__] = ACTIONS(6529), - [anon_sym___attribute__] = ACTIONS(6525), - [anon_sym___attribute] = ACTIONS(6525), - [anon_sym_COLON] = ACTIONS(6525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6527), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6527), - [anon_sym_RBRACE] = ACTIONS(6527), - [anon_sym_LBRACK] = ACTIONS(6525), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_const] = ACTIONS(6529), - [anon_sym_constexpr] = ACTIONS(6529), - [anon_sym_volatile] = ACTIONS(6529), - [anon_sym_restrict] = ACTIONS(6529), - [anon_sym___restrict__] = ACTIONS(6529), - [anon_sym__Atomic] = ACTIONS(6529), - [anon_sym__Noreturn] = ACTIONS(6529), - [anon_sym_noreturn] = ACTIONS(6529), - [anon_sym__Nonnull] = ACTIONS(6529), - [anon_sym_mutable] = ACTIONS(6529), - [anon_sym_constinit] = ACTIONS(6529), - [anon_sym_consteval] = ACTIONS(6529), - [anon_sym_alignas] = ACTIONS(6532), - [anon_sym__Alignas] = ACTIONS(6532), - [anon_sym_QMARK] = ACTIONS(6527), - [anon_sym_STAR_EQ] = ACTIONS(6527), - [anon_sym_SLASH_EQ] = ACTIONS(6527), - [anon_sym_PERCENT_EQ] = ACTIONS(6527), - [anon_sym_PLUS_EQ] = ACTIONS(6527), - [anon_sym_DASH_EQ] = ACTIONS(6527), - [anon_sym_LT_LT_EQ] = ACTIONS(6527), - [anon_sym_GT_GT_EQ] = ACTIONS(6527), - [anon_sym_AMP_EQ] = ACTIONS(6527), - [anon_sym_CARET_EQ] = ACTIONS(6527), - [anon_sym_PIPE_EQ] = ACTIONS(6527), - [anon_sym_and_eq] = ACTIONS(6525), - [anon_sym_or_eq] = ACTIONS(6525), - [anon_sym_xor_eq] = ACTIONS(6525), - [anon_sym_LT_EQ_GT] = ACTIONS(6527), - [anon_sym_or] = ACTIONS(6525), - [anon_sym_and] = ACTIONS(6525), - [anon_sym_bitor] = ACTIONS(6525), - [anon_sym_xor] = ACTIONS(6525), - [anon_sym_bitand] = ACTIONS(6525), - [anon_sym_not_eq] = ACTIONS(6525), - [anon_sym_DASH_DASH] = ACTIONS(6527), - [anon_sym_PLUS_PLUS] = ACTIONS(6527), - [anon_sym_asm] = ACTIONS(6525), - [anon_sym___asm__] = ACTIONS(6525), - [anon_sym___asm] = ACTIONS(6525), - [anon_sym_DOT] = ACTIONS(6525), - [anon_sym_DOT_STAR] = ACTIONS(6527), - [anon_sym_DASH_GT] = ACTIONS(6527), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6525), - [anon_sym_override] = ACTIONS(6525), - [anon_sym_noexcept] = ACTIONS(6525), - [anon_sym_throw] = ACTIONS(6525), - [anon_sym_requires] = ACTIONS(6525), - [anon_sym_COLON_RBRACK] = ACTIONS(6527), + [sym_expression] = STATE(6853), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1900)] = { - [sym_identifier] = ACTIONS(6250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6252), - [anon_sym_COMMA] = ACTIONS(6252), - [anon_sym_RPAREN] = ACTIONS(6252), - [anon_sym_LPAREN2] = ACTIONS(6252), - [anon_sym_TILDE] = ACTIONS(6252), - [anon_sym_DASH] = ACTIONS(6250), - [anon_sym_PLUS] = ACTIONS(6250), - [anon_sym_STAR] = ACTIONS(6252), - [anon_sym_SLASH] = ACTIONS(6250), - [anon_sym_PERCENT] = ACTIONS(6252), - [anon_sym_PIPE_PIPE] = ACTIONS(6252), - [anon_sym_AMP_AMP] = ACTIONS(6252), - [anon_sym_PIPE] = ACTIONS(6250), - [anon_sym_CARET] = ACTIONS(6252), - [anon_sym_AMP] = ACTIONS(6250), - [anon_sym_EQ_EQ] = ACTIONS(6252), - [anon_sym_BANG_EQ] = ACTIONS(6252), - [anon_sym_GT] = ACTIONS(6250), - [anon_sym_GT_EQ] = ACTIONS(6252), - [anon_sym_LT_EQ] = ACTIONS(6250), - [anon_sym_LT] = ACTIONS(6250), - [anon_sym_LT_LT] = ACTIONS(6252), - [anon_sym_GT_GT] = ACTIONS(6252), - [anon_sym_SEMI] = ACTIONS(6252), - [anon_sym___extension__] = ACTIONS(6250), - [anon_sym_virtual] = ACTIONS(6250), - [anon_sym_extern] = ACTIONS(6250), - [anon_sym___attribute__] = ACTIONS(6250), - [anon_sym___attribute] = ACTIONS(6250), - [anon_sym_COLON] = ACTIONS(6250), - [anon_sym_COLON_COLON] = ACTIONS(6252), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6252), - [anon_sym___declspec] = ACTIONS(6250), - [anon_sym___based] = ACTIONS(6250), - [anon_sym___cdecl] = ACTIONS(6250), - [anon_sym___clrcall] = ACTIONS(6250), - [anon_sym___stdcall] = ACTIONS(6250), - [anon_sym___fastcall] = ACTIONS(6250), - [anon_sym___thiscall] = ACTIONS(6250), - [anon_sym___vectorcall] = ACTIONS(6250), - [anon_sym_LBRACE] = ACTIONS(6252), - [anon_sym_RBRACE] = ACTIONS(6252), - [anon_sym_LBRACK] = ACTIONS(6250), - [anon_sym_static] = ACTIONS(6250), - [anon_sym_RBRACK] = ACTIONS(6252), - [anon_sym_EQ] = ACTIONS(6250), - [anon_sym_register] = ACTIONS(6250), - [anon_sym_inline] = ACTIONS(6250), - [anon_sym___inline] = ACTIONS(6250), - [anon_sym___inline__] = ACTIONS(6250), - [anon_sym___forceinline] = ACTIONS(6250), - [anon_sym_thread_local] = ACTIONS(6250), - [anon_sym___thread] = ACTIONS(6250), - [anon_sym_const] = ACTIONS(6250), - [anon_sym_constexpr] = ACTIONS(6250), - [anon_sym_volatile] = ACTIONS(6250), - [anon_sym_restrict] = ACTIONS(6250), - [anon_sym___restrict__] = ACTIONS(6250), - [anon_sym__Atomic] = ACTIONS(6250), - [anon_sym__Noreturn] = ACTIONS(6250), - [anon_sym_noreturn] = ACTIONS(6250), - [anon_sym__Nonnull] = ACTIONS(6250), - [anon_sym_mutable] = ACTIONS(6250), - [anon_sym_constinit] = ACTIONS(6250), - [anon_sym_consteval] = ACTIONS(6250), - [anon_sym_alignas] = ACTIONS(6250), - [anon_sym__Alignas] = ACTIONS(6250), - [anon_sym_QMARK] = ACTIONS(6252), - [anon_sym_LT_EQ_GT] = ACTIONS(6252), - [anon_sym_or] = ACTIONS(6250), - [anon_sym_and] = ACTIONS(6250), - [anon_sym_bitor] = ACTIONS(6250), - [anon_sym_xor] = ACTIONS(6250), - [anon_sym_bitand] = ACTIONS(6250), - [anon_sym_not_eq] = ACTIONS(6250), - [anon_sym_DASH_DASH] = ACTIONS(6252), - [anon_sym_PLUS_PLUS] = ACTIONS(6252), - [anon_sym_DOT] = ACTIONS(6250), - [anon_sym_DOT_STAR] = ACTIONS(6252), - [anon_sym_DASH_GT] = ACTIONS(6252), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6250), - [anon_sym_decltype] = ACTIONS(6250), - [anon_sym_final] = ACTIONS(6250), - [anon_sym_override] = ACTIONS(6250), - [anon_sym_template] = ACTIONS(6250), - [anon_sym_operator] = ACTIONS(6250), - [anon_sym_noexcept] = ACTIONS(6250), - [anon_sym_throw] = ACTIONS(6250), - [anon_sym_LBRACK_COLON] = ACTIONS(6252), + [sym_expression] = STATE(6854), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1901)] = { - [sym_type_qualifier] = STATE(1899), - [sym_alignas_qualifier] = STATE(1942), - [aux_sym__type_definition_type_repeat1] = STATE(1899), - [sym_identifier] = ACTIONS(6388), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), - [anon_sym_COMMA] = ACTIONS(6390), - [anon_sym_RPAREN] = ACTIONS(6390), - [aux_sym_preproc_if_token2] = ACTIONS(6390), - [aux_sym_preproc_else_token1] = ACTIONS(6390), - [aux_sym_preproc_elif_token1] = ACTIONS(6388), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6390), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6390), - [anon_sym_LPAREN2] = ACTIONS(6390), - [anon_sym_DASH] = ACTIONS(6388), - [anon_sym_PLUS] = ACTIONS(6388), - [anon_sym_STAR] = ACTIONS(6388), - [anon_sym_SLASH] = ACTIONS(6388), - [anon_sym_PERCENT] = ACTIONS(6388), - [anon_sym_PIPE_PIPE] = ACTIONS(6390), - [anon_sym_AMP_AMP] = ACTIONS(6390), - [anon_sym_PIPE] = ACTIONS(6388), - [anon_sym_CARET] = ACTIONS(6388), - [anon_sym_AMP] = ACTIONS(6388), - [anon_sym_EQ_EQ] = ACTIONS(6390), - [anon_sym_BANG_EQ] = ACTIONS(6390), - [anon_sym_GT] = ACTIONS(6388), - [anon_sym_GT_EQ] = ACTIONS(6390), - [anon_sym_LT_EQ] = ACTIONS(6388), - [anon_sym_LT] = ACTIONS(6388), - [anon_sym_LT_LT] = ACTIONS(6388), - [anon_sym_GT_GT] = ACTIONS(6388), - [anon_sym_SEMI] = ACTIONS(6390), - [anon_sym___extension__] = ACTIONS(6121), - [anon_sym___attribute__] = ACTIONS(6388), - [anon_sym___attribute] = ACTIONS(6388), - [anon_sym_COLON] = ACTIONS(6388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6390), - [anon_sym_RBRACE] = ACTIONS(6390), - [anon_sym_LBRACK] = ACTIONS(6388), - [anon_sym_EQ] = ACTIONS(6388), - [anon_sym_const] = ACTIONS(6121), - [anon_sym_constexpr] = ACTIONS(6121), - [anon_sym_volatile] = ACTIONS(6121), - [anon_sym_restrict] = ACTIONS(6121), - [anon_sym___restrict__] = ACTIONS(6121), - [anon_sym__Atomic] = ACTIONS(6121), - [anon_sym__Noreturn] = ACTIONS(6121), - [anon_sym_noreturn] = ACTIONS(6121), - [anon_sym__Nonnull] = ACTIONS(6121), - [anon_sym_mutable] = ACTIONS(6121), - [anon_sym_constinit] = ACTIONS(6121), - [anon_sym_consteval] = ACTIONS(6121), - [anon_sym_alignas] = ACTIONS(6127), - [anon_sym__Alignas] = ACTIONS(6127), - [anon_sym_QMARK] = ACTIONS(6390), - [anon_sym_STAR_EQ] = ACTIONS(6390), - [anon_sym_SLASH_EQ] = ACTIONS(6390), - [anon_sym_PERCENT_EQ] = ACTIONS(6390), - [anon_sym_PLUS_EQ] = ACTIONS(6390), - [anon_sym_DASH_EQ] = ACTIONS(6390), - [anon_sym_LT_LT_EQ] = ACTIONS(6390), - [anon_sym_GT_GT_EQ] = ACTIONS(6390), - [anon_sym_AMP_EQ] = ACTIONS(6390), - [anon_sym_CARET_EQ] = ACTIONS(6390), - [anon_sym_PIPE_EQ] = ACTIONS(6390), - [anon_sym_and_eq] = ACTIONS(6388), - [anon_sym_or_eq] = ACTIONS(6388), - [anon_sym_xor_eq] = ACTIONS(6388), - [anon_sym_LT_EQ_GT] = ACTIONS(6390), - [anon_sym_or] = ACTIONS(6388), - [anon_sym_and] = ACTIONS(6388), - [anon_sym_bitor] = ACTIONS(6388), - [anon_sym_xor] = ACTIONS(6388), - [anon_sym_bitand] = ACTIONS(6388), - [anon_sym_not_eq] = ACTIONS(6388), - [anon_sym_DASH_DASH] = ACTIONS(6390), - [anon_sym_PLUS_PLUS] = ACTIONS(6390), - [anon_sym_asm] = ACTIONS(6388), - [anon_sym___asm__] = ACTIONS(6388), - [anon_sym___asm] = ACTIONS(6388), - [anon_sym_DOT] = ACTIONS(6388), - [anon_sym_DOT_STAR] = ACTIONS(6390), - [anon_sym_DASH_GT] = ACTIONS(6390), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6388), - [anon_sym_override] = ACTIONS(6388), - [anon_sym_noexcept] = ACTIONS(6388), - [anon_sym_throw] = ACTIONS(6388), - [anon_sym_requires] = ACTIONS(6388), - [anon_sym_COLON_RBRACK] = ACTIONS(6390), + [sym_expression] = STATE(6855), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1902)] = { - [sym_template_argument_list] = STATE(1924), - [sym_identifier] = ACTIONS(6201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6205), - [anon_sym_COMMA] = ACTIONS(6205), - [anon_sym_RPAREN] = ACTIONS(6205), - [anon_sym_LPAREN2] = ACTIONS(6205), - [anon_sym_TILDE] = ACTIONS(6208), - [anon_sym_DASH] = ACTIONS(6210), - [anon_sym_PLUS] = ACTIONS(6210), - [anon_sym_STAR] = ACTIONS(6212), - [anon_sym_SLASH] = ACTIONS(6210), - [anon_sym_PERCENT] = ACTIONS(6210), - [anon_sym_PIPE_PIPE] = ACTIONS(6203), - [anon_sym_AMP_AMP] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(6210), - [anon_sym_CARET] = ACTIONS(6210), - [anon_sym_AMP] = ACTIONS(6212), - [anon_sym_EQ_EQ] = ACTIONS(6203), - [anon_sym_BANG_EQ] = ACTIONS(6203), - [anon_sym_GT] = ACTIONS(6210), - [anon_sym_GT_EQ] = ACTIONS(6203), - [anon_sym_LT_EQ] = ACTIONS(6210), - [anon_sym_LT] = ACTIONS(6215), - [anon_sym_LT_LT] = ACTIONS(6210), - [anon_sym_GT_GT] = ACTIONS(6210), - [anon_sym___extension__] = ACTIONS(6201), - [anon_sym_virtual] = ACTIONS(6201), - [anon_sym_extern] = ACTIONS(6201), - [anon_sym___attribute__] = ACTIONS(6201), - [anon_sym___attribute] = ACTIONS(6201), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6208), - [anon_sym___declspec] = ACTIONS(6201), - [anon_sym___based] = ACTIONS(6201), - [anon_sym_LBRACE] = ACTIONS(6208), - [anon_sym_LBRACK] = ACTIONS(6212), - [anon_sym_static] = ACTIONS(6201), - [anon_sym_EQ] = ACTIONS(6212), - [anon_sym_register] = ACTIONS(6201), - [anon_sym_inline] = ACTIONS(6201), - [anon_sym___inline] = ACTIONS(6201), - [anon_sym___inline__] = ACTIONS(6201), - [anon_sym___forceinline] = ACTIONS(6201), - [anon_sym_thread_local] = ACTIONS(6201), - [anon_sym___thread] = ACTIONS(6201), - [anon_sym_const] = ACTIONS(6201), - [anon_sym_constexpr] = ACTIONS(6201), - [anon_sym_volatile] = ACTIONS(6201), - [anon_sym_restrict] = ACTIONS(6201), - [anon_sym___restrict__] = ACTIONS(6201), - [anon_sym__Atomic] = ACTIONS(6201), - [anon_sym__Noreturn] = ACTIONS(6201), - [anon_sym_noreturn] = ACTIONS(6201), - [anon_sym__Nonnull] = ACTIONS(6201), - [anon_sym_mutable] = ACTIONS(6201), - [anon_sym_constinit] = ACTIONS(6201), - [anon_sym_consteval] = ACTIONS(6201), - [anon_sym_alignas] = ACTIONS(6201), - [anon_sym__Alignas] = ACTIONS(6201), - [anon_sym_QMARK] = ACTIONS(6203), - [anon_sym_STAR_EQ] = ACTIONS(6203), - [anon_sym_SLASH_EQ] = ACTIONS(6203), - [anon_sym_PERCENT_EQ] = ACTIONS(6203), - [anon_sym_PLUS_EQ] = ACTIONS(6203), - [anon_sym_DASH_EQ] = ACTIONS(6203), - [anon_sym_LT_LT_EQ] = ACTIONS(6203), - [anon_sym_GT_GT_EQ] = ACTIONS(6203), - [anon_sym_AMP_EQ] = ACTIONS(6203), - [anon_sym_CARET_EQ] = ACTIONS(6203), - [anon_sym_PIPE_EQ] = ACTIONS(6203), - [anon_sym_and_eq] = ACTIONS(6210), - [anon_sym_or_eq] = ACTIONS(6210), - [anon_sym_xor_eq] = ACTIONS(6210), - [anon_sym_LT_EQ_GT] = ACTIONS(6203), - [anon_sym_or] = ACTIONS(6210), - [anon_sym_and] = ACTIONS(6210), - [anon_sym_bitor] = ACTIONS(6210), - [anon_sym_xor] = ACTIONS(6210), - [anon_sym_bitand] = ACTIONS(6210), - [anon_sym_not_eq] = ACTIONS(6210), - [anon_sym_DASH_DASH] = ACTIONS(6203), - [anon_sym_PLUS_PLUS] = ACTIONS(6203), - [anon_sym_DOT] = ACTIONS(6210), - [anon_sym_DOT_STAR] = ACTIONS(6203), - [anon_sym_DASH_GT] = ACTIONS(6203), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6201), - [anon_sym_decltype] = ACTIONS(6201), - [anon_sym_template] = ACTIONS(6201), - [anon_sym_operator] = ACTIONS(6201), - [anon_sym_LBRACK_COLON] = ACTIONS(6208), + [sym_expression] = STATE(6856), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1903)] = { - [sym_identifier] = ACTIONS(6270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6272), - [anon_sym_COMMA] = ACTIONS(6272), - [anon_sym_RPAREN] = ACTIONS(6272), - [anon_sym_LPAREN2] = ACTIONS(6272), - [anon_sym_TILDE] = ACTIONS(6272), - [anon_sym_DASH] = ACTIONS(6270), - [anon_sym_PLUS] = ACTIONS(6270), - [anon_sym_STAR] = ACTIONS(6270), - [anon_sym_SLASH] = ACTIONS(6270), - [anon_sym_PERCENT] = ACTIONS(6270), - [anon_sym_PIPE_PIPE] = ACTIONS(6272), - [anon_sym_AMP_AMP] = ACTIONS(6272), - [anon_sym_PIPE] = ACTIONS(6270), - [anon_sym_CARET] = ACTIONS(6270), - [anon_sym_AMP] = ACTIONS(6270), - [anon_sym_EQ_EQ] = ACTIONS(6272), - [anon_sym_BANG_EQ] = ACTIONS(6272), - [anon_sym_GT] = ACTIONS(6270), - [anon_sym_GT_EQ] = ACTIONS(6272), - [anon_sym_LT_EQ] = ACTIONS(6270), - [anon_sym_LT] = ACTIONS(6270), - [anon_sym_LT_LT] = ACTIONS(6270), - [anon_sym_GT_GT] = ACTIONS(6270), - [anon_sym___extension__] = ACTIONS(6270), - [anon_sym_virtual] = ACTIONS(6270), - [anon_sym_extern] = ACTIONS(6270), - [anon_sym___attribute__] = ACTIONS(6270), - [anon_sym___attribute] = ACTIONS(6270), - [anon_sym_COLON_COLON] = ACTIONS(6272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6272), - [anon_sym___declspec] = ACTIONS(6270), - [anon_sym___based] = ACTIONS(6270), - [anon_sym_LBRACE] = ACTIONS(6272), - [anon_sym_LBRACK] = ACTIONS(6270), - [anon_sym_static] = ACTIONS(6270), - [anon_sym_EQ] = ACTIONS(6270), - [anon_sym_register] = ACTIONS(6270), - [anon_sym_inline] = ACTIONS(6270), - [anon_sym___inline] = ACTIONS(6270), - [anon_sym___inline__] = ACTIONS(6270), - [anon_sym___forceinline] = ACTIONS(6270), - [anon_sym_thread_local] = ACTIONS(6270), - [anon_sym___thread] = ACTIONS(6270), - [anon_sym_const] = ACTIONS(6270), - [anon_sym_constexpr] = ACTIONS(6270), - [anon_sym_volatile] = ACTIONS(6270), - [anon_sym_restrict] = ACTIONS(6270), - [anon_sym___restrict__] = ACTIONS(6270), - [anon_sym__Atomic] = ACTIONS(6270), - [anon_sym__Noreturn] = ACTIONS(6270), - [anon_sym_noreturn] = ACTIONS(6270), - [anon_sym__Nonnull] = ACTIONS(6270), - [anon_sym_mutable] = ACTIONS(6270), - [anon_sym_constinit] = ACTIONS(6270), - [anon_sym_consteval] = ACTIONS(6270), - [anon_sym_alignas] = ACTIONS(6270), - [anon_sym__Alignas] = ACTIONS(6270), - [anon_sym_QMARK] = ACTIONS(6272), - [anon_sym_STAR_EQ] = ACTIONS(6272), - [anon_sym_SLASH_EQ] = ACTIONS(6272), - [anon_sym_PERCENT_EQ] = ACTIONS(6272), - [anon_sym_PLUS_EQ] = ACTIONS(6272), - [anon_sym_DASH_EQ] = ACTIONS(6272), - [anon_sym_LT_LT_EQ] = ACTIONS(6272), - [anon_sym_GT_GT_EQ] = ACTIONS(6272), - [anon_sym_AMP_EQ] = ACTIONS(6272), - [anon_sym_CARET_EQ] = ACTIONS(6272), - [anon_sym_PIPE_EQ] = ACTIONS(6272), - [anon_sym_and_eq] = ACTIONS(6270), - [anon_sym_or_eq] = ACTIONS(6270), - [anon_sym_xor_eq] = ACTIONS(6270), - [anon_sym_LT_EQ_GT] = ACTIONS(6272), - [anon_sym_or] = ACTIONS(6270), - [anon_sym_and] = ACTIONS(6270), - [anon_sym_bitor] = ACTIONS(6270), - [anon_sym_xor] = ACTIONS(6270), - [anon_sym_bitand] = ACTIONS(6270), - [anon_sym_not_eq] = ACTIONS(6270), - [anon_sym_DASH_DASH] = ACTIONS(6272), - [anon_sym_PLUS_PLUS] = ACTIONS(6272), - [anon_sym_DOT] = ACTIONS(6270), - [anon_sym_DOT_STAR] = ACTIONS(6272), - [anon_sym_DASH_GT] = ACTIONS(6270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6270), - [anon_sym_decltype] = ACTIONS(6270), - [anon_sym_template] = ACTIONS(6270), - [anon_sym_operator] = ACTIONS(6270), - [anon_sym_DASH_GT_STAR] = ACTIONS(6272), - [anon_sym_LBRACK_COLON] = ACTIONS(6272), - }, - [STATE(1904)] = { - [sym_identifier] = ACTIONS(6242), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), - [anon_sym_COMMA] = ACTIONS(6244), - [anon_sym_RPAREN] = ACTIONS(6244), - [anon_sym_LPAREN2] = ACTIONS(6244), - [anon_sym_TILDE] = ACTIONS(6244), - [anon_sym_DASH] = ACTIONS(6242), - [anon_sym_PLUS] = ACTIONS(6242), - [anon_sym_STAR] = ACTIONS(6242), - [anon_sym_SLASH] = ACTIONS(6242), - [anon_sym_PERCENT] = ACTIONS(6242), - [anon_sym_PIPE_PIPE] = ACTIONS(6244), - [anon_sym_AMP_AMP] = ACTIONS(6244), - [anon_sym_PIPE] = ACTIONS(6242), - [anon_sym_CARET] = ACTIONS(6242), - [anon_sym_AMP] = ACTIONS(6242), - [anon_sym_EQ_EQ] = ACTIONS(6244), - [anon_sym_BANG_EQ] = ACTIONS(6244), - [anon_sym_GT] = ACTIONS(6242), - [anon_sym_GT_EQ] = ACTIONS(6244), - [anon_sym_LT_EQ] = ACTIONS(6242), - [anon_sym_LT] = ACTIONS(6242), - [anon_sym_LT_LT] = ACTIONS(6242), - [anon_sym_GT_GT] = ACTIONS(6242), - [anon_sym___extension__] = ACTIONS(6242), - [anon_sym_virtual] = ACTIONS(6242), - [anon_sym_extern] = ACTIONS(6242), - [anon_sym___attribute__] = ACTIONS(6242), - [anon_sym___attribute] = ACTIONS(6242), - [anon_sym_COLON_COLON] = ACTIONS(6244), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6244), - [anon_sym___declspec] = ACTIONS(6242), - [anon_sym___based] = ACTIONS(6242), - [anon_sym_LBRACE] = ACTIONS(6244), - [anon_sym_LBRACK] = ACTIONS(6242), - [anon_sym_static] = ACTIONS(6242), - [anon_sym_EQ] = ACTIONS(6242), - [anon_sym_register] = ACTIONS(6242), - [anon_sym_inline] = ACTIONS(6242), - [anon_sym___inline] = ACTIONS(6242), - [anon_sym___inline__] = ACTIONS(6242), - [anon_sym___forceinline] = ACTIONS(6242), - [anon_sym_thread_local] = ACTIONS(6242), - [anon_sym___thread] = ACTIONS(6242), - [anon_sym_const] = ACTIONS(6242), - [anon_sym_constexpr] = ACTIONS(6242), - [anon_sym_volatile] = ACTIONS(6242), - [anon_sym_restrict] = ACTIONS(6242), - [anon_sym___restrict__] = ACTIONS(6242), - [anon_sym__Atomic] = ACTIONS(6242), - [anon_sym__Noreturn] = ACTIONS(6242), - [anon_sym_noreturn] = ACTIONS(6242), - [anon_sym__Nonnull] = ACTIONS(6242), - [anon_sym_mutable] = ACTIONS(6242), - [anon_sym_constinit] = ACTIONS(6242), - [anon_sym_consteval] = ACTIONS(6242), - [anon_sym_alignas] = ACTIONS(6242), - [anon_sym__Alignas] = ACTIONS(6242), - [anon_sym_QMARK] = ACTIONS(6244), - [anon_sym_STAR_EQ] = ACTIONS(6244), - [anon_sym_SLASH_EQ] = ACTIONS(6244), - [anon_sym_PERCENT_EQ] = ACTIONS(6244), - [anon_sym_PLUS_EQ] = ACTIONS(6244), - [anon_sym_DASH_EQ] = ACTIONS(6244), - [anon_sym_LT_LT_EQ] = ACTIONS(6244), - [anon_sym_GT_GT_EQ] = ACTIONS(6244), - [anon_sym_AMP_EQ] = ACTIONS(6244), - [anon_sym_CARET_EQ] = ACTIONS(6244), - [anon_sym_PIPE_EQ] = ACTIONS(6244), - [anon_sym_and_eq] = ACTIONS(6242), - [anon_sym_or_eq] = ACTIONS(6242), - [anon_sym_xor_eq] = ACTIONS(6242), - [anon_sym_LT_EQ_GT] = ACTIONS(6244), - [anon_sym_or] = ACTIONS(6242), - [anon_sym_and] = ACTIONS(6242), - [anon_sym_bitor] = ACTIONS(6242), - [anon_sym_xor] = ACTIONS(6242), - [anon_sym_bitand] = ACTIONS(6242), - [anon_sym_not_eq] = ACTIONS(6242), - [anon_sym_DASH_DASH] = ACTIONS(6244), - [anon_sym_PLUS_PLUS] = ACTIONS(6244), - [anon_sym_DOT] = ACTIONS(6242), - [anon_sym_DOT_STAR] = ACTIONS(6244), - [anon_sym_DASH_GT] = ACTIONS(6242), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6242), - [anon_sym_decltype] = ACTIONS(6242), - [anon_sym_template] = ACTIONS(6242), - [anon_sym_operator] = ACTIONS(6242), - [anon_sym_DASH_GT_STAR] = ACTIONS(6244), - [anon_sym_LBRACK_COLON] = ACTIONS(6244), - }, - [STATE(1905)] = { - [sym_identifier] = ACTIONS(6270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6272), - [anon_sym_COMMA] = ACTIONS(6272), - [anon_sym_RPAREN] = ACTIONS(6272), - [anon_sym_LPAREN2] = ACTIONS(6272), - [anon_sym_TILDE] = ACTIONS(6272), - [anon_sym_DASH] = ACTIONS(6270), - [anon_sym_PLUS] = ACTIONS(6270), - [anon_sym_STAR] = ACTIONS(6272), - [anon_sym_SLASH] = ACTIONS(6270), - [anon_sym_PERCENT] = ACTIONS(6272), - [anon_sym_PIPE_PIPE] = ACTIONS(6272), - [anon_sym_AMP_AMP] = ACTIONS(6272), - [anon_sym_PIPE] = ACTIONS(6270), - [anon_sym_CARET] = ACTIONS(6272), - [anon_sym_AMP] = ACTIONS(6270), - [anon_sym_EQ_EQ] = ACTIONS(6272), - [anon_sym_BANG_EQ] = ACTIONS(6272), - [anon_sym_GT] = ACTIONS(6270), - [anon_sym_GT_EQ] = ACTIONS(6272), - [anon_sym_LT_EQ] = ACTIONS(6270), - [anon_sym_LT] = ACTIONS(6270), - [anon_sym_LT_LT] = ACTIONS(6272), - [anon_sym_GT_GT] = ACTIONS(6272), - [anon_sym_SEMI] = ACTIONS(6272), - [anon_sym___extension__] = ACTIONS(6270), - [anon_sym_virtual] = ACTIONS(6270), - [anon_sym_extern] = ACTIONS(6270), - [anon_sym___attribute__] = ACTIONS(6270), - [anon_sym___attribute] = ACTIONS(6270), - [anon_sym_COLON] = ACTIONS(6270), - [anon_sym_COLON_COLON] = ACTIONS(6272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6272), - [anon_sym___declspec] = ACTIONS(6270), - [anon_sym___based] = ACTIONS(6270), - [anon_sym___cdecl] = ACTIONS(6270), - [anon_sym___clrcall] = ACTIONS(6270), - [anon_sym___stdcall] = ACTIONS(6270), - [anon_sym___fastcall] = ACTIONS(6270), - [anon_sym___thiscall] = ACTIONS(6270), - [anon_sym___vectorcall] = ACTIONS(6270), - [anon_sym_LBRACE] = ACTIONS(6272), - [anon_sym_RBRACE] = ACTIONS(6272), - [anon_sym_LBRACK] = ACTIONS(6270), - [anon_sym_static] = ACTIONS(6270), - [anon_sym_RBRACK] = ACTIONS(6272), - [anon_sym_EQ] = ACTIONS(6270), - [anon_sym_register] = ACTIONS(6270), - [anon_sym_inline] = ACTIONS(6270), - [anon_sym___inline] = ACTIONS(6270), - [anon_sym___inline__] = ACTIONS(6270), - [anon_sym___forceinline] = ACTIONS(6270), - [anon_sym_thread_local] = ACTIONS(6270), - [anon_sym___thread] = ACTIONS(6270), - [anon_sym_const] = ACTIONS(6270), - [anon_sym_constexpr] = ACTIONS(6270), - [anon_sym_volatile] = ACTIONS(6270), - [anon_sym_restrict] = ACTIONS(6270), - [anon_sym___restrict__] = ACTIONS(6270), - [anon_sym__Atomic] = ACTIONS(6270), - [anon_sym__Noreturn] = ACTIONS(6270), - [anon_sym_noreturn] = ACTIONS(6270), - [anon_sym__Nonnull] = ACTIONS(6270), - [anon_sym_mutable] = ACTIONS(6270), - [anon_sym_constinit] = ACTIONS(6270), - [anon_sym_consteval] = ACTIONS(6270), - [anon_sym_alignas] = ACTIONS(6270), - [anon_sym__Alignas] = ACTIONS(6270), - [anon_sym_QMARK] = ACTIONS(6272), - [anon_sym_LT_EQ_GT] = ACTIONS(6272), - [anon_sym_or] = ACTIONS(6270), - [anon_sym_and] = ACTIONS(6270), - [anon_sym_bitor] = ACTIONS(6270), - [anon_sym_xor] = ACTIONS(6270), - [anon_sym_bitand] = ACTIONS(6270), - [anon_sym_not_eq] = ACTIONS(6270), - [anon_sym_DASH_DASH] = ACTIONS(6272), - [anon_sym_PLUS_PLUS] = ACTIONS(6272), - [anon_sym_DOT] = ACTIONS(6270), - [anon_sym_DOT_STAR] = ACTIONS(6272), - [anon_sym_DASH_GT] = ACTIONS(6272), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6270), - [anon_sym_decltype] = ACTIONS(6270), - [anon_sym_final] = ACTIONS(6270), - [anon_sym_override] = ACTIONS(6270), - [anon_sym_template] = ACTIONS(6270), - [anon_sym_operator] = ACTIONS(6270), - [anon_sym_noexcept] = ACTIONS(6270), - [anon_sym_throw] = ACTIONS(6270), - [anon_sym_LBRACK_COLON] = ACTIONS(6272), - }, - [STATE(1906)] = { - [sym_identifier] = ACTIONS(6254), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6256), - [anon_sym_COMMA] = ACTIONS(6256), - [anon_sym_RPAREN] = ACTIONS(6256), - [anon_sym_LPAREN2] = ACTIONS(6256), - [anon_sym_TILDE] = ACTIONS(6256), - [anon_sym_DASH] = ACTIONS(6254), - [anon_sym_PLUS] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(6256), - [anon_sym_SLASH] = ACTIONS(6254), - [anon_sym_PERCENT] = ACTIONS(6256), - [anon_sym_PIPE_PIPE] = ACTIONS(6256), - [anon_sym_AMP_AMP] = ACTIONS(6256), - [anon_sym_PIPE] = ACTIONS(6254), - [anon_sym_CARET] = ACTIONS(6256), - [anon_sym_AMP] = ACTIONS(6254), - [anon_sym_EQ_EQ] = ACTIONS(6256), - [anon_sym_BANG_EQ] = ACTIONS(6256), - [anon_sym_GT] = ACTIONS(6254), - [anon_sym_GT_EQ] = ACTIONS(6256), - [anon_sym_LT_EQ] = ACTIONS(6254), - [anon_sym_LT] = ACTIONS(6254), - [anon_sym_LT_LT] = ACTIONS(6256), - [anon_sym_GT_GT] = ACTIONS(6256), - [anon_sym_SEMI] = ACTIONS(6256), - [anon_sym___extension__] = ACTIONS(6254), - [anon_sym_virtual] = ACTIONS(6254), - [anon_sym_extern] = ACTIONS(6254), - [anon_sym___attribute__] = ACTIONS(6254), - [anon_sym___attribute] = ACTIONS(6254), - [anon_sym_COLON] = ACTIONS(6254), - [anon_sym_COLON_COLON] = ACTIONS(6256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6256), - [anon_sym___declspec] = ACTIONS(6254), - [anon_sym___based] = ACTIONS(6254), - [anon_sym___cdecl] = ACTIONS(6254), - [anon_sym___clrcall] = ACTIONS(6254), - [anon_sym___stdcall] = ACTIONS(6254), - [anon_sym___fastcall] = ACTIONS(6254), - [anon_sym___thiscall] = ACTIONS(6254), - [anon_sym___vectorcall] = ACTIONS(6254), - [anon_sym_LBRACE] = ACTIONS(6256), - [anon_sym_RBRACE] = ACTIONS(6256), - [anon_sym_LBRACK] = ACTIONS(6254), - [anon_sym_static] = ACTIONS(6254), - [anon_sym_RBRACK] = ACTIONS(6256), - [anon_sym_EQ] = ACTIONS(6254), - [anon_sym_register] = ACTIONS(6254), - [anon_sym_inline] = ACTIONS(6254), - [anon_sym___inline] = ACTIONS(6254), - [anon_sym___inline__] = ACTIONS(6254), - [anon_sym___forceinline] = ACTIONS(6254), - [anon_sym_thread_local] = ACTIONS(6254), - [anon_sym___thread] = ACTIONS(6254), - [anon_sym_const] = ACTIONS(6254), - [anon_sym_constexpr] = ACTIONS(6254), - [anon_sym_volatile] = ACTIONS(6254), - [anon_sym_restrict] = ACTIONS(6254), - [anon_sym___restrict__] = ACTIONS(6254), - [anon_sym__Atomic] = ACTIONS(6254), - [anon_sym__Noreturn] = ACTIONS(6254), - [anon_sym_noreturn] = ACTIONS(6254), - [anon_sym__Nonnull] = ACTIONS(6254), - [anon_sym_mutable] = ACTIONS(6254), - [anon_sym_constinit] = ACTIONS(6254), - [anon_sym_consteval] = ACTIONS(6254), - [anon_sym_alignas] = ACTIONS(6254), - [anon_sym__Alignas] = ACTIONS(6254), - [anon_sym_QMARK] = ACTIONS(6256), - [anon_sym_LT_EQ_GT] = ACTIONS(6256), - [anon_sym_or] = ACTIONS(6254), - [anon_sym_and] = ACTIONS(6254), - [anon_sym_bitor] = ACTIONS(6254), - [anon_sym_xor] = ACTIONS(6254), - [anon_sym_bitand] = ACTIONS(6254), - [anon_sym_not_eq] = ACTIONS(6254), - [anon_sym_DASH_DASH] = ACTIONS(6256), - [anon_sym_PLUS_PLUS] = ACTIONS(6256), - [anon_sym_DOT] = ACTIONS(6254), - [anon_sym_DOT_STAR] = ACTIONS(6256), - [anon_sym_DASH_GT] = ACTIONS(6256), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6254), - [anon_sym_decltype] = ACTIONS(6254), - [anon_sym_final] = ACTIONS(6254), - [anon_sym_override] = ACTIONS(6254), - [anon_sym_template] = ACTIONS(6254), - [anon_sym_operator] = ACTIONS(6254), - [anon_sym_noexcept] = ACTIONS(6254), - [anon_sym_throw] = ACTIONS(6254), - [anon_sym_LBRACK_COLON] = ACTIONS(6256), - }, - [STATE(1907)] = { - [sym_identifier] = ACTIONS(6258), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), - [anon_sym_COMMA] = ACTIONS(6260), - [anon_sym_RPAREN] = ACTIONS(6260), - [anon_sym_LPAREN2] = ACTIONS(6260), - [anon_sym_TILDE] = ACTIONS(6260), - [anon_sym_DASH] = ACTIONS(6258), - [anon_sym_PLUS] = ACTIONS(6258), - [anon_sym_STAR] = ACTIONS(6260), - [anon_sym_SLASH] = ACTIONS(6258), - [anon_sym_PERCENT] = ACTIONS(6260), - [anon_sym_PIPE_PIPE] = ACTIONS(6260), - [anon_sym_AMP_AMP] = ACTIONS(6260), - [anon_sym_PIPE] = ACTIONS(6258), - [anon_sym_CARET] = ACTIONS(6260), - [anon_sym_AMP] = ACTIONS(6258), - [anon_sym_EQ_EQ] = ACTIONS(6260), - [anon_sym_BANG_EQ] = ACTIONS(6260), - [anon_sym_GT] = ACTIONS(6258), - [anon_sym_GT_EQ] = ACTIONS(6260), - [anon_sym_LT_EQ] = ACTIONS(6258), - [anon_sym_LT] = ACTIONS(6258), - [anon_sym_LT_LT] = ACTIONS(6260), - [anon_sym_GT_GT] = ACTIONS(6260), - [anon_sym_SEMI] = ACTIONS(6260), - [anon_sym___extension__] = ACTIONS(6258), - [anon_sym_virtual] = ACTIONS(6258), - [anon_sym_extern] = ACTIONS(6258), - [anon_sym___attribute__] = ACTIONS(6258), - [anon_sym___attribute] = ACTIONS(6258), - [anon_sym_COLON] = ACTIONS(6258), - [anon_sym_COLON_COLON] = ACTIONS(6260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6260), - [anon_sym___declspec] = ACTIONS(6258), - [anon_sym___based] = ACTIONS(6258), - [anon_sym___cdecl] = ACTIONS(6258), - [anon_sym___clrcall] = ACTIONS(6258), - [anon_sym___stdcall] = ACTIONS(6258), - [anon_sym___fastcall] = ACTIONS(6258), - [anon_sym___thiscall] = ACTIONS(6258), - [anon_sym___vectorcall] = ACTIONS(6258), - [anon_sym_LBRACE] = ACTIONS(6260), - [anon_sym_RBRACE] = ACTIONS(6260), - [anon_sym_LBRACK] = ACTIONS(6258), - [anon_sym_static] = ACTIONS(6258), - [anon_sym_RBRACK] = ACTIONS(6260), - [anon_sym_EQ] = ACTIONS(6258), - [anon_sym_register] = ACTIONS(6258), - [anon_sym_inline] = ACTIONS(6258), - [anon_sym___inline] = ACTIONS(6258), - [anon_sym___inline__] = ACTIONS(6258), - [anon_sym___forceinline] = ACTIONS(6258), - [anon_sym_thread_local] = ACTIONS(6258), - [anon_sym___thread] = ACTIONS(6258), - [anon_sym_const] = ACTIONS(6258), - [anon_sym_constexpr] = ACTIONS(6258), - [anon_sym_volatile] = ACTIONS(6258), - [anon_sym_restrict] = ACTIONS(6258), - [anon_sym___restrict__] = ACTIONS(6258), - [anon_sym__Atomic] = ACTIONS(6258), - [anon_sym__Noreturn] = ACTIONS(6258), - [anon_sym_noreturn] = ACTIONS(6258), - [anon_sym__Nonnull] = ACTIONS(6258), - [anon_sym_mutable] = ACTIONS(6258), - [anon_sym_constinit] = ACTIONS(6258), - [anon_sym_consteval] = ACTIONS(6258), - [anon_sym_alignas] = ACTIONS(6258), - [anon_sym__Alignas] = ACTIONS(6258), - [anon_sym_QMARK] = ACTIONS(6260), - [anon_sym_LT_EQ_GT] = ACTIONS(6260), - [anon_sym_or] = ACTIONS(6258), - [anon_sym_and] = ACTIONS(6258), - [anon_sym_bitor] = ACTIONS(6258), - [anon_sym_xor] = ACTIONS(6258), - [anon_sym_bitand] = ACTIONS(6258), - [anon_sym_not_eq] = ACTIONS(6258), - [anon_sym_DASH_DASH] = ACTIONS(6260), - [anon_sym_PLUS_PLUS] = ACTIONS(6260), - [anon_sym_DOT] = ACTIONS(6258), - [anon_sym_DOT_STAR] = ACTIONS(6260), - [anon_sym_DASH_GT] = ACTIONS(6260), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6258), - [anon_sym_decltype] = ACTIONS(6258), - [anon_sym_final] = ACTIONS(6258), - [anon_sym_override] = ACTIONS(6258), - [anon_sym_template] = ACTIONS(6258), - [anon_sym_operator] = ACTIONS(6258), - [anon_sym_noexcept] = ACTIONS(6258), - [anon_sym_throw] = ACTIONS(6258), - [anon_sym_LBRACK_COLON] = ACTIONS(6260), - }, - [STATE(1908)] = { - [sym_identifier] = ACTIONS(6262), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), - [anon_sym_COMMA] = ACTIONS(6264), - [anon_sym_RPAREN] = ACTIONS(6264), - [anon_sym_LPAREN2] = ACTIONS(6264), - [anon_sym_TILDE] = ACTIONS(6264), - [anon_sym_DASH] = ACTIONS(6262), - [anon_sym_PLUS] = ACTIONS(6262), - [anon_sym_STAR] = ACTIONS(6264), - [anon_sym_SLASH] = ACTIONS(6262), - [anon_sym_PERCENT] = ACTIONS(6264), - [anon_sym_PIPE_PIPE] = ACTIONS(6264), - [anon_sym_AMP_AMP] = ACTIONS(6264), - [anon_sym_PIPE] = ACTIONS(6262), - [anon_sym_CARET] = ACTIONS(6264), - [anon_sym_AMP] = ACTIONS(6262), - [anon_sym_EQ_EQ] = ACTIONS(6264), - [anon_sym_BANG_EQ] = ACTIONS(6264), - [anon_sym_GT] = ACTIONS(6262), - [anon_sym_GT_EQ] = ACTIONS(6264), - [anon_sym_LT_EQ] = ACTIONS(6262), - [anon_sym_LT] = ACTIONS(6262), - [anon_sym_LT_LT] = ACTIONS(6264), - [anon_sym_GT_GT] = ACTIONS(6264), - [anon_sym_SEMI] = ACTIONS(6264), - [anon_sym___extension__] = ACTIONS(6262), - [anon_sym_virtual] = ACTIONS(6262), - [anon_sym_extern] = ACTIONS(6262), - [anon_sym___attribute__] = ACTIONS(6262), - [anon_sym___attribute] = ACTIONS(6262), - [anon_sym_COLON] = ACTIONS(6262), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6264), - [anon_sym___declspec] = ACTIONS(6262), - [anon_sym___based] = ACTIONS(6262), - [anon_sym___cdecl] = ACTIONS(6262), - [anon_sym___clrcall] = ACTIONS(6262), - [anon_sym___stdcall] = ACTIONS(6262), - [anon_sym___fastcall] = ACTIONS(6262), - [anon_sym___thiscall] = ACTIONS(6262), - [anon_sym___vectorcall] = ACTIONS(6262), - [anon_sym_LBRACE] = ACTIONS(6264), - [anon_sym_RBRACE] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(6262), - [anon_sym_static] = ACTIONS(6262), - [anon_sym_RBRACK] = ACTIONS(6264), - [anon_sym_EQ] = ACTIONS(6262), - [anon_sym_register] = ACTIONS(6262), - [anon_sym_inline] = ACTIONS(6262), - [anon_sym___inline] = ACTIONS(6262), - [anon_sym___inline__] = ACTIONS(6262), - [anon_sym___forceinline] = ACTIONS(6262), - [anon_sym_thread_local] = ACTIONS(6262), - [anon_sym___thread] = ACTIONS(6262), - [anon_sym_const] = ACTIONS(6262), - [anon_sym_constexpr] = ACTIONS(6262), - [anon_sym_volatile] = ACTIONS(6262), - [anon_sym_restrict] = ACTIONS(6262), - [anon_sym___restrict__] = ACTIONS(6262), - [anon_sym__Atomic] = ACTIONS(6262), - [anon_sym__Noreturn] = ACTIONS(6262), - [anon_sym_noreturn] = ACTIONS(6262), - [anon_sym__Nonnull] = ACTIONS(6262), - [anon_sym_mutable] = ACTIONS(6262), - [anon_sym_constinit] = ACTIONS(6262), - [anon_sym_consteval] = ACTIONS(6262), - [anon_sym_alignas] = ACTIONS(6262), - [anon_sym__Alignas] = ACTIONS(6262), - [anon_sym_QMARK] = ACTIONS(6264), - [anon_sym_LT_EQ_GT] = ACTIONS(6264), - [anon_sym_or] = ACTIONS(6262), - [anon_sym_and] = ACTIONS(6262), - [anon_sym_bitor] = ACTIONS(6262), - [anon_sym_xor] = ACTIONS(6262), - [anon_sym_bitand] = ACTIONS(6262), - [anon_sym_not_eq] = ACTIONS(6262), - [anon_sym_DASH_DASH] = ACTIONS(6264), - [anon_sym_PLUS_PLUS] = ACTIONS(6264), - [anon_sym_DOT] = ACTIONS(6262), - [anon_sym_DOT_STAR] = ACTIONS(6264), - [anon_sym_DASH_GT] = ACTIONS(6264), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6262), - [anon_sym_decltype] = ACTIONS(6262), - [anon_sym_final] = ACTIONS(6262), - [anon_sym_override] = ACTIONS(6262), - [anon_sym_template] = ACTIONS(6262), - [anon_sym_operator] = ACTIONS(6262), - [anon_sym_noexcept] = ACTIONS(6262), - [anon_sym_throw] = ACTIONS(6262), - [anon_sym_LBRACK_COLON] = ACTIONS(6264), - }, - [STATE(1909)] = { - [sym_identifier] = ACTIONS(6242), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), - [anon_sym_COMMA] = ACTIONS(6244), - [anon_sym_RPAREN] = ACTIONS(6244), - [anon_sym_LPAREN2] = ACTIONS(6244), - [anon_sym_TILDE] = ACTIONS(6244), - [anon_sym_DASH] = ACTIONS(6242), - [anon_sym_PLUS] = ACTIONS(6242), - [anon_sym_STAR] = ACTIONS(6244), - [anon_sym_SLASH] = ACTIONS(6242), - [anon_sym_PERCENT] = ACTIONS(6244), - [anon_sym_PIPE_PIPE] = ACTIONS(6244), - [anon_sym_AMP_AMP] = ACTIONS(6244), - [anon_sym_PIPE] = ACTIONS(6242), - [anon_sym_CARET] = ACTIONS(6244), - [anon_sym_AMP] = ACTIONS(6242), - [anon_sym_EQ_EQ] = ACTIONS(6244), - [anon_sym_BANG_EQ] = ACTIONS(6244), - [anon_sym_GT] = ACTIONS(6242), - [anon_sym_GT_EQ] = ACTIONS(6244), - [anon_sym_LT_EQ] = ACTIONS(6242), - [anon_sym_LT] = ACTIONS(6242), - [anon_sym_LT_LT] = ACTIONS(6244), - [anon_sym_GT_GT] = ACTIONS(6244), - [anon_sym_SEMI] = ACTIONS(6244), - [anon_sym___extension__] = ACTIONS(6242), - [anon_sym_virtual] = ACTIONS(6242), - [anon_sym_extern] = ACTIONS(6242), - [anon_sym___attribute__] = ACTIONS(6242), - [anon_sym___attribute] = ACTIONS(6242), - [anon_sym_COLON] = ACTIONS(6242), - [anon_sym_COLON_COLON] = ACTIONS(6244), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6244), - [anon_sym___declspec] = ACTIONS(6242), - [anon_sym___based] = ACTIONS(6242), - [anon_sym___cdecl] = ACTIONS(6242), - [anon_sym___clrcall] = ACTIONS(6242), - [anon_sym___stdcall] = ACTIONS(6242), - [anon_sym___fastcall] = ACTIONS(6242), - [anon_sym___thiscall] = ACTIONS(6242), - [anon_sym___vectorcall] = ACTIONS(6242), - [anon_sym_LBRACE] = ACTIONS(6244), - [anon_sym_RBRACE] = ACTIONS(6244), - [anon_sym_LBRACK] = ACTIONS(6242), - [anon_sym_static] = ACTIONS(6242), - [anon_sym_RBRACK] = ACTIONS(6244), - [anon_sym_EQ] = ACTIONS(6242), - [anon_sym_register] = ACTIONS(6242), - [anon_sym_inline] = ACTIONS(6242), - [anon_sym___inline] = ACTIONS(6242), - [anon_sym___inline__] = ACTIONS(6242), - [anon_sym___forceinline] = ACTIONS(6242), - [anon_sym_thread_local] = ACTIONS(6242), - [anon_sym___thread] = ACTIONS(6242), - [anon_sym_const] = ACTIONS(6242), - [anon_sym_constexpr] = ACTIONS(6242), - [anon_sym_volatile] = ACTIONS(6242), - [anon_sym_restrict] = ACTIONS(6242), - [anon_sym___restrict__] = ACTIONS(6242), - [anon_sym__Atomic] = ACTIONS(6242), - [anon_sym__Noreturn] = ACTIONS(6242), - [anon_sym_noreturn] = ACTIONS(6242), - [anon_sym__Nonnull] = ACTIONS(6242), - [anon_sym_mutable] = ACTIONS(6242), - [anon_sym_constinit] = ACTIONS(6242), - [anon_sym_consteval] = ACTIONS(6242), - [anon_sym_alignas] = ACTIONS(6242), - [anon_sym__Alignas] = ACTIONS(6242), - [anon_sym_QMARK] = ACTIONS(6244), - [anon_sym_LT_EQ_GT] = ACTIONS(6244), - [anon_sym_or] = ACTIONS(6242), - [anon_sym_and] = ACTIONS(6242), - [anon_sym_bitor] = ACTIONS(6242), - [anon_sym_xor] = ACTIONS(6242), - [anon_sym_bitand] = ACTIONS(6242), - [anon_sym_not_eq] = ACTIONS(6242), - [anon_sym_DASH_DASH] = ACTIONS(6244), - [anon_sym_PLUS_PLUS] = ACTIONS(6244), - [anon_sym_DOT] = ACTIONS(6242), - [anon_sym_DOT_STAR] = ACTIONS(6244), - [anon_sym_DASH_GT] = ACTIONS(6244), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6242), - [anon_sym_decltype] = ACTIONS(6242), - [anon_sym_final] = ACTIONS(6242), - [anon_sym_override] = ACTIONS(6242), - [anon_sym_template] = ACTIONS(6242), - [anon_sym_operator] = ACTIONS(6242), - [anon_sym_noexcept] = ACTIONS(6242), - [anon_sym_throw] = ACTIONS(6242), - [anon_sym_LBRACK_COLON] = ACTIONS(6244), - }, - [STATE(1910)] = { - [sym_string_literal] = STATE(5056), - [sym_decltype_auto] = STATE(3014), - [sym_template_argument_list] = STATE(3170), - [sym_raw_string_literal] = STATE(5056), - [aux_sym_sized_type_specifier_repeat1] = STATE(3464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5262), - [anon_sym_PLUS] = ACTIONS(5262), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5262), - [anon_sym_PERCENT] = ACTIONS(5262), - [anon_sym_PIPE_PIPE] = ACTIONS(5255), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5262), - [anon_sym_CARET] = ACTIONS(5262), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5255), - [anon_sym_BANG_EQ] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5262), - [anon_sym_GT_EQ] = ACTIONS(5255), - [anon_sym_LT_EQ] = ACTIONS(5262), - [anon_sym_LT] = ACTIONS(6499), - [anon_sym_LT_LT] = ACTIONS(5262), - [anon_sym_GT_GT] = ACTIONS(5262), - [anon_sym_SEMI] = ACTIONS(5255), - [anon_sym___extension__] = ACTIONS(5258), - [anon_sym___attribute__] = ACTIONS(5255), - [anon_sym___attribute] = ACTIONS(5262), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(6503), - [anon_sym_unsigned] = ACTIONS(6503), - [anon_sym_long] = ACTIONS(6503), - [anon_sym_short] = ACTIONS(6503), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(6535), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5258), - [anon_sym_volatile] = ACTIONS(5258), - [anon_sym_restrict] = ACTIONS(5258), - [anon_sym___restrict__] = ACTIONS(5258), - [anon_sym__Atomic] = ACTIONS(5258), - [anon_sym__Noreturn] = ACTIONS(5258), - [anon_sym_noreturn] = ACTIONS(5258), - [anon_sym__Nonnull] = ACTIONS(5258), - [anon_sym_mutable] = ACTIONS(5258), - [anon_sym_constinit] = ACTIONS(5258), - [anon_sym_consteval] = ACTIONS(5258), - [anon_sym_alignas] = ACTIONS(5258), - [anon_sym__Alignas] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5255), - [anon_sym_STAR_EQ] = ACTIONS(6537), - [anon_sym_SLASH_EQ] = ACTIONS(6537), - [anon_sym_PERCENT_EQ] = ACTIONS(6537), - [anon_sym_PLUS_EQ] = ACTIONS(6537), - [anon_sym_DASH_EQ] = ACTIONS(6537), - [anon_sym_LT_LT_EQ] = ACTIONS(6537), - [anon_sym_GT_GT_EQ] = ACTIONS(6537), - [anon_sym_AMP_EQ] = ACTIONS(6537), - [anon_sym_CARET_EQ] = ACTIONS(6537), - [anon_sym_PIPE_EQ] = ACTIONS(6537), - [anon_sym_and_eq] = ACTIONS(6537), - [anon_sym_or_eq] = ACTIONS(6537), - [anon_sym_xor_eq] = ACTIONS(6537), - [anon_sym_LT_EQ_GT] = ACTIONS(5255), - [anon_sym_or] = ACTIONS(5262), - [anon_sym_and] = ACTIONS(5262), - [anon_sym_bitor] = ACTIONS(5255), - [anon_sym_xor] = ACTIONS(5262), - [anon_sym_bitand] = ACTIONS(5255), - [anon_sym_not_eq] = ACTIONS(5255), - [anon_sym_DASH_DASH] = ACTIONS(5255), - [anon_sym_PLUS_PLUS] = ACTIONS(5255), - [anon_sym_DOT] = ACTIONS(5262), - [anon_sym_DOT_STAR] = ACTIONS(5255), - [anon_sym_DASH_GT] = ACTIONS(5255), - [anon_sym_L_DQUOTE] = ACTIONS(6539), - [anon_sym_u_DQUOTE] = ACTIONS(6539), - [anon_sym_U_DQUOTE] = ACTIONS(6539), - [anon_sym_u8_DQUOTE] = ACTIONS(6539), - [anon_sym_DQUOTE] = ACTIONS(6539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6505), - [anon_sym_decltype] = ACTIONS(6507), - [anon_sym_R_DQUOTE] = ACTIONS(6541), - [anon_sym_LR_DQUOTE] = ACTIONS(6541), - [anon_sym_uR_DQUOTE] = ACTIONS(6541), - [anon_sym_UR_DQUOTE] = ACTIONS(6541), - [anon_sym_u8R_DQUOTE] = ACTIONS(6541), - }, - [STATE(1911)] = { - [sym_string_literal] = STATE(3379), - [sym_decltype_auto] = STATE(2086), - [sym_template_argument_list] = STATE(2081), - [sym_raw_string_literal] = STATE(3379), - [aux_sym_sized_type_specifier_repeat1] = STATE(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5262), - [anon_sym_PLUS] = ACTIONS(5262), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5262), - [anon_sym_PERCENT] = ACTIONS(5262), - [anon_sym_PIPE_PIPE] = ACTIONS(5255), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5262), - [anon_sym_CARET] = ACTIONS(5262), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5255), - [anon_sym_BANG_EQ] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5262), - [anon_sym_GT_EQ] = ACTIONS(5255), - [anon_sym_LT_EQ] = ACTIONS(5262), - [anon_sym_LT] = ACTIONS(6392), - [anon_sym_LT_LT] = ACTIONS(5262), - [anon_sym_GT_GT] = ACTIONS(5262), - [anon_sym_SEMI] = ACTIONS(5255), - [anon_sym___extension__] = ACTIONS(5258), - [anon_sym___attribute__] = ACTIONS(5255), - [anon_sym___attribute] = ACTIONS(5262), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(6396), - [anon_sym_unsigned] = ACTIONS(6396), - [anon_sym_long] = ACTIONS(6396), - [anon_sym_short] = ACTIONS(6396), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(5262), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5258), - [anon_sym_volatile] = ACTIONS(5258), - [anon_sym_restrict] = ACTIONS(5258), - [anon_sym___restrict__] = ACTIONS(5258), - [anon_sym__Atomic] = ACTIONS(5258), - [anon_sym__Noreturn] = ACTIONS(5258), - [anon_sym_noreturn] = ACTIONS(5258), - [anon_sym__Nonnull] = ACTIONS(5258), - [anon_sym_mutable] = ACTIONS(5258), - [anon_sym_constinit] = ACTIONS(5258), - [anon_sym_consteval] = ACTIONS(5258), - [anon_sym_alignas] = ACTIONS(5258), - [anon_sym__Alignas] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5255), - [anon_sym_STAR_EQ] = ACTIONS(5255), - [anon_sym_SLASH_EQ] = ACTIONS(5255), - [anon_sym_PERCENT_EQ] = ACTIONS(5255), - [anon_sym_PLUS_EQ] = ACTIONS(5255), - [anon_sym_DASH_EQ] = ACTIONS(5255), - [anon_sym_LT_LT_EQ] = ACTIONS(5255), - [anon_sym_GT_GT_EQ] = ACTIONS(5255), - [anon_sym_AMP_EQ] = ACTIONS(5255), - [anon_sym_CARET_EQ] = ACTIONS(5255), - [anon_sym_PIPE_EQ] = ACTIONS(5255), - [anon_sym_and_eq] = ACTIONS(5255), - [anon_sym_or_eq] = ACTIONS(5255), - [anon_sym_xor_eq] = ACTIONS(5255), - [anon_sym_LT_EQ_GT] = ACTIONS(5255), - [anon_sym_or] = ACTIONS(5262), - [anon_sym_and] = ACTIONS(5262), - [anon_sym_bitor] = ACTIONS(5255), - [anon_sym_xor] = ACTIONS(5262), - [anon_sym_bitand] = ACTIONS(5255), - [anon_sym_not_eq] = ACTIONS(5255), - [anon_sym_DASH_DASH] = ACTIONS(5255), - [anon_sym_PLUS_PLUS] = ACTIONS(5255), - [anon_sym_DOT] = ACTIONS(5262), - [anon_sym_DOT_STAR] = ACTIONS(5255), - [anon_sym_DASH_GT] = ACTIONS(5255), - [anon_sym_L_DQUOTE] = ACTIONS(6543), - [anon_sym_u_DQUOTE] = ACTIONS(6543), - [anon_sym_U_DQUOTE] = ACTIONS(6543), - [anon_sym_u8_DQUOTE] = ACTIONS(6543), - [anon_sym_DQUOTE] = ACTIONS(6543), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6398), - [anon_sym_decltype] = ACTIONS(6400), - [anon_sym_R_DQUOTE] = ACTIONS(6545), - [anon_sym_LR_DQUOTE] = ACTIONS(6545), - [anon_sym_uR_DQUOTE] = ACTIONS(6545), - [anon_sym_UR_DQUOTE] = ACTIONS(6545), - [anon_sym_u8R_DQUOTE] = ACTIONS(6545), - }, - [STATE(1912)] = { - [sym_identifier] = ACTIONS(6246), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6248), - [anon_sym_COMMA] = ACTIONS(6248), - [anon_sym_RPAREN] = ACTIONS(6248), - [anon_sym_LPAREN2] = ACTIONS(6248), - [anon_sym_TILDE] = ACTIONS(6248), - [anon_sym_DASH] = ACTIONS(6246), - [anon_sym_PLUS] = ACTIONS(6246), - [anon_sym_STAR] = ACTIONS(6246), - [anon_sym_SLASH] = ACTIONS(6246), - [anon_sym_PERCENT] = ACTIONS(6246), - [anon_sym_PIPE_PIPE] = ACTIONS(6248), - [anon_sym_AMP_AMP] = ACTIONS(6248), - [anon_sym_PIPE] = ACTIONS(6246), - [anon_sym_CARET] = ACTIONS(6246), - [anon_sym_AMP] = ACTIONS(6246), - [anon_sym_EQ_EQ] = ACTIONS(6248), - [anon_sym_BANG_EQ] = ACTIONS(6248), - [anon_sym_GT] = ACTIONS(6246), - [anon_sym_GT_EQ] = ACTIONS(6248), - [anon_sym_LT_EQ] = ACTIONS(6246), - [anon_sym_LT] = ACTIONS(6246), - [anon_sym_LT_LT] = ACTIONS(6246), - [anon_sym_GT_GT] = ACTIONS(6246), - [anon_sym___extension__] = ACTIONS(6246), - [anon_sym_virtual] = ACTIONS(6246), - [anon_sym_extern] = ACTIONS(6246), - [anon_sym___attribute__] = ACTIONS(6246), - [anon_sym___attribute] = ACTIONS(6246), - [anon_sym_COLON_COLON] = ACTIONS(6248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6248), - [anon_sym___declspec] = ACTIONS(6246), - [anon_sym___based] = ACTIONS(6246), - [anon_sym_LBRACE] = ACTIONS(6248), - [anon_sym_LBRACK] = ACTIONS(6246), - [anon_sym_static] = ACTIONS(6246), - [anon_sym_EQ] = ACTIONS(6246), - [anon_sym_register] = ACTIONS(6246), - [anon_sym_inline] = ACTIONS(6246), - [anon_sym___inline] = ACTIONS(6246), - [anon_sym___inline__] = ACTIONS(6246), - [anon_sym___forceinline] = ACTIONS(6246), - [anon_sym_thread_local] = ACTIONS(6246), - [anon_sym___thread] = ACTIONS(6246), - [anon_sym_const] = ACTIONS(6246), - [anon_sym_constexpr] = ACTIONS(6246), - [anon_sym_volatile] = ACTIONS(6246), - [anon_sym_restrict] = ACTIONS(6246), - [anon_sym___restrict__] = ACTIONS(6246), - [anon_sym__Atomic] = ACTIONS(6246), - [anon_sym__Noreturn] = ACTIONS(6246), - [anon_sym_noreturn] = ACTIONS(6246), - [anon_sym__Nonnull] = ACTIONS(6246), - [anon_sym_mutable] = ACTIONS(6246), - [anon_sym_constinit] = ACTIONS(6246), - [anon_sym_consteval] = ACTIONS(6246), - [anon_sym_alignas] = ACTIONS(6246), - [anon_sym__Alignas] = ACTIONS(6246), - [anon_sym_QMARK] = ACTIONS(6248), - [anon_sym_STAR_EQ] = ACTIONS(6248), - [anon_sym_SLASH_EQ] = ACTIONS(6248), - [anon_sym_PERCENT_EQ] = ACTIONS(6248), - [anon_sym_PLUS_EQ] = ACTIONS(6248), - [anon_sym_DASH_EQ] = ACTIONS(6248), - [anon_sym_LT_LT_EQ] = ACTIONS(6248), - [anon_sym_GT_GT_EQ] = ACTIONS(6248), - [anon_sym_AMP_EQ] = ACTIONS(6248), - [anon_sym_CARET_EQ] = ACTIONS(6248), - [anon_sym_PIPE_EQ] = ACTIONS(6248), - [anon_sym_and_eq] = ACTIONS(6246), - [anon_sym_or_eq] = ACTIONS(6246), - [anon_sym_xor_eq] = ACTIONS(6246), - [anon_sym_LT_EQ_GT] = ACTIONS(6248), - [anon_sym_or] = ACTIONS(6246), - [anon_sym_and] = ACTIONS(6246), - [anon_sym_bitor] = ACTIONS(6246), - [anon_sym_xor] = ACTIONS(6246), - [anon_sym_bitand] = ACTIONS(6246), - [anon_sym_not_eq] = ACTIONS(6246), - [anon_sym_DASH_DASH] = ACTIONS(6248), - [anon_sym_PLUS_PLUS] = ACTIONS(6248), - [anon_sym_DOT] = ACTIONS(6246), - [anon_sym_DOT_STAR] = ACTIONS(6248), - [anon_sym_DASH_GT] = ACTIONS(6246), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6246), - [anon_sym_decltype] = ACTIONS(6246), - [anon_sym_template] = ACTIONS(6246), - [anon_sym_operator] = ACTIONS(6246), - [anon_sym_DASH_GT_STAR] = ACTIONS(6248), - [anon_sym_LBRACK_COLON] = ACTIONS(6248), - }, - [STATE(1913)] = { - [sym_type_qualifier] = STATE(1913), - [sym_alignas_qualifier] = STATE(1953), - [aux_sym__type_definition_type_repeat1] = STATE(1913), - [sym_identifier] = ACTIONS(6525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_RPAREN] = ACTIONS(6527), - [aux_sym_preproc_if_token2] = ACTIONS(6527), - [aux_sym_preproc_else_token1] = ACTIONS(6527), - [aux_sym_preproc_elif_token1] = ACTIONS(6525), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6527), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6527), - [anon_sym_LPAREN2] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6525), - [anon_sym_PLUS] = ACTIONS(6525), - [anon_sym_STAR] = ACTIONS(6525), - [anon_sym_SLASH] = ACTIONS(6525), - [anon_sym_PERCENT] = ACTIONS(6525), - [anon_sym_PIPE_PIPE] = ACTIONS(6527), - [anon_sym_AMP_AMP] = ACTIONS(6527), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_CARET] = ACTIONS(6525), - [anon_sym_AMP] = ACTIONS(6525), - [anon_sym_EQ_EQ] = ACTIONS(6527), - [anon_sym_BANG_EQ] = ACTIONS(6527), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6527), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_LT_LT] = ACTIONS(6525), - [anon_sym_GT_GT] = ACTIONS(6525), - [anon_sym_SEMI] = ACTIONS(6527), - [anon_sym___extension__] = ACTIONS(6547), - [anon_sym___attribute__] = ACTIONS(6525), - [anon_sym___attribute] = ACTIONS(6525), - [anon_sym_COLON] = ACTIONS(6525), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6527), - [anon_sym_LBRACE] = ACTIONS(6527), - [anon_sym_RBRACE] = ACTIONS(6527), - [anon_sym_signed] = ACTIONS(6525), - [anon_sym_unsigned] = ACTIONS(6525), - [anon_sym_long] = ACTIONS(6525), - [anon_sym_short] = ACTIONS(6525), - [anon_sym_LBRACK] = ACTIONS(6527), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_const] = ACTIONS(6547), - [anon_sym_constexpr] = ACTIONS(6547), - [anon_sym_volatile] = ACTIONS(6547), - [anon_sym_restrict] = ACTIONS(6547), - [anon_sym___restrict__] = ACTIONS(6547), - [anon_sym__Atomic] = ACTIONS(6547), - [anon_sym__Noreturn] = ACTIONS(6547), - [anon_sym_noreturn] = ACTIONS(6547), - [anon_sym__Nonnull] = ACTIONS(6547), - [anon_sym_mutable] = ACTIONS(6547), - [anon_sym_constinit] = ACTIONS(6547), - [anon_sym_consteval] = ACTIONS(6547), - [anon_sym_alignas] = ACTIONS(6550), - [anon_sym__Alignas] = ACTIONS(6550), - [sym_primitive_type] = ACTIONS(6525), - [anon_sym_QMARK] = ACTIONS(6527), - [anon_sym_STAR_EQ] = ACTIONS(6527), - [anon_sym_SLASH_EQ] = ACTIONS(6527), - [anon_sym_PERCENT_EQ] = ACTIONS(6527), - [anon_sym_PLUS_EQ] = ACTIONS(6527), - [anon_sym_DASH_EQ] = ACTIONS(6527), - [anon_sym_LT_LT_EQ] = ACTIONS(6527), - [anon_sym_GT_GT_EQ] = ACTIONS(6527), - [anon_sym_AMP_EQ] = ACTIONS(6527), - [anon_sym_CARET_EQ] = ACTIONS(6527), - [anon_sym_PIPE_EQ] = ACTIONS(6527), - [anon_sym_and_eq] = ACTIONS(6525), - [anon_sym_or_eq] = ACTIONS(6525), - [anon_sym_xor_eq] = ACTIONS(6525), - [anon_sym_LT_EQ_GT] = ACTIONS(6527), - [anon_sym_or] = ACTIONS(6525), - [anon_sym_and] = ACTIONS(6525), - [anon_sym_bitor] = ACTIONS(6525), - [anon_sym_xor] = ACTIONS(6525), - [anon_sym_bitand] = ACTIONS(6525), - [anon_sym_not_eq] = ACTIONS(6525), - [anon_sym_DASH_DASH] = ACTIONS(6527), - [anon_sym_PLUS_PLUS] = ACTIONS(6527), - [anon_sym_DOT] = ACTIONS(6525), - [anon_sym_DOT_STAR] = ACTIONS(6527), - [anon_sym_DASH_GT] = ACTIONS(6527), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6525), - [anon_sym_override] = ACTIONS(6525), - [anon_sym_requires] = ACTIONS(6525), - [anon_sym_COLON_RBRACK] = ACTIONS(6527), - }, - [STATE(1914)] = { - [sym_identifier] = ACTIONS(6250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6252), - [anon_sym_COMMA] = ACTIONS(6252), - [anon_sym_RPAREN] = ACTIONS(6252), - [anon_sym_LPAREN2] = ACTIONS(6252), - [anon_sym_TILDE] = ACTIONS(6252), - [anon_sym_DASH] = ACTIONS(6250), - [anon_sym_PLUS] = ACTIONS(6250), - [anon_sym_STAR] = ACTIONS(6250), - [anon_sym_SLASH] = ACTIONS(6250), - [anon_sym_PERCENT] = ACTIONS(6250), - [anon_sym_PIPE_PIPE] = ACTIONS(6252), - [anon_sym_AMP_AMP] = ACTIONS(6252), - [anon_sym_PIPE] = ACTIONS(6250), - [anon_sym_CARET] = ACTIONS(6250), - [anon_sym_AMP] = ACTIONS(6250), - [anon_sym_EQ_EQ] = ACTIONS(6252), - [anon_sym_BANG_EQ] = ACTIONS(6252), - [anon_sym_GT] = ACTIONS(6250), - [anon_sym_GT_EQ] = ACTIONS(6252), - [anon_sym_LT_EQ] = ACTIONS(6250), - [anon_sym_LT] = ACTIONS(6250), - [anon_sym_LT_LT] = ACTIONS(6250), - [anon_sym_GT_GT] = ACTIONS(6250), - [anon_sym___extension__] = ACTIONS(6250), - [anon_sym_virtual] = ACTIONS(6250), - [anon_sym_extern] = ACTIONS(6250), - [anon_sym___attribute__] = ACTIONS(6250), - [anon_sym___attribute] = ACTIONS(6250), - [anon_sym_COLON_COLON] = ACTIONS(6252), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6252), - [anon_sym___declspec] = ACTIONS(6250), - [anon_sym___based] = ACTIONS(6250), - [anon_sym_LBRACE] = ACTIONS(6252), - [anon_sym_LBRACK] = ACTIONS(6250), - [anon_sym_static] = ACTIONS(6250), - [anon_sym_EQ] = ACTIONS(6250), - [anon_sym_register] = ACTIONS(6250), - [anon_sym_inline] = ACTIONS(6250), - [anon_sym___inline] = ACTIONS(6250), - [anon_sym___inline__] = ACTIONS(6250), - [anon_sym___forceinline] = ACTIONS(6250), - [anon_sym_thread_local] = ACTIONS(6250), - [anon_sym___thread] = ACTIONS(6250), - [anon_sym_const] = ACTIONS(6250), - [anon_sym_constexpr] = ACTIONS(6250), - [anon_sym_volatile] = ACTIONS(6250), - [anon_sym_restrict] = ACTIONS(6250), - [anon_sym___restrict__] = ACTIONS(6250), - [anon_sym__Atomic] = ACTIONS(6250), - [anon_sym__Noreturn] = ACTIONS(6250), - [anon_sym_noreturn] = ACTIONS(6250), - [anon_sym__Nonnull] = ACTIONS(6250), - [anon_sym_mutable] = ACTIONS(6250), - [anon_sym_constinit] = ACTIONS(6250), - [anon_sym_consteval] = ACTIONS(6250), - [anon_sym_alignas] = ACTIONS(6250), - [anon_sym__Alignas] = ACTIONS(6250), - [anon_sym_QMARK] = ACTIONS(6252), - [anon_sym_STAR_EQ] = ACTIONS(6252), - [anon_sym_SLASH_EQ] = ACTIONS(6252), - [anon_sym_PERCENT_EQ] = ACTIONS(6252), - [anon_sym_PLUS_EQ] = ACTIONS(6252), - [anon_sym_DASH_EQ] = ACTIONS(6252), - [anon_sym_LT_LT_EQ] = ACTIONS(6252), - [anon_sym_GT_GT_EQ] = ACTIONS(6252), - [anon_sym_AMP_EQ] = ACTIONS(6252), - [anon_sym_CARET_EQ] = ACTIONS(6252), - [anon_sym_PIPE_EQ] = ACTIONS(6252), - [anon_sym_and_eq] = ACTIONS(6250), - [anon_sym_or_eq] = ACTIONS(6250), - [anon_sym_xor_eq] = ACTIONS(6250), - [anon_sym_LT_EQ_GT] = ACTIONS(6252), - [anon_sym_or] = ACTIONS(6250), - [anon_sym_and] = ACTIONS(6250), - [anon_sym_bitor] = ACTIONS(6250), - [anon_sym_xor] = ACTIONS(6250), - [anon_sym_bitand] = ACTIONS(6250), - [anon_sym_not_eq] = ACTIONS(6250), - [anon_sym_DASH_DASH] = ACTIONS(6252), - [anon_sym_PLUS_PLUS] = ACTIONS(6252), - [anon_sym_DOT] = ACTIONS(6250), - [anon_sym_DOT_STAR] = ACTIONS(6252), - [anon_sym_DASH_GT] = ACTIONS(6250), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6250), - [anon_sym_decltype] = ACTIONS(6250), - [anon_sym_template] = ACTIONS(6250), - [anon_sym_operator] = ACTIONS(6250), - [anon_sym_DASH_GT_STAR] = ACTIONS(6252), - [anon_sym_LBRACK_COLON] = ACTIONS(6252), - }, - [STATE(1915)] = { - [sym_identifier] = ACTIONS(6254), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6256), - [anon_sym_COMMA] = ACTIONS(6256), - [anon_sym_RPAREN] = ACTIONS(6256), - [anon_sym_LPAREN2] = ACTIONS(6256), - [anon_sym_TILDE] = ACTIONS(6256), - [anon_sym_DASH] = ACTIONS(6254), - [anon_sym_PLUS] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(6254), - [anon_sym_SLASH] = ACTIONS(6254), - [anon_sym_PERCENT] = ACTIONS(6254), - [anon_sym_PIPE_PIPE] = ACTIONS(6256), - [anon_sym_AMP_AMP] = ACTIONS(6256), - [anon_sym_PIPE] = ACTIONS(6254), - [anon_sym_CARET] = ACTIONS(6254), - [anon_sym_AMP] = ACTIONS(6254), - [anon_sym_EQ_EQ] = ACTIONS(6256), - [anon_sym_BANG_EQ] = ACTIONS(6256), - [anon_sym_GT] = ACTIONS(6254), - [anon_sym_GT_EQ] = ACTIONS(6256), - [anon_sym_LT_EQ] = ACTIONS(6254), - [anon_sym_LT] = ACTIONS(6254), - [anon_sym_LT_LT] = ACTIONS(6254), - [anon_sym_GT_GT] = ACTIONS(6254), - [anon_sym___extension__] = ACTIONS(6254), - [anon_sym_virtual] = ACTIONS(6254), - [anon_sym_extern] = ACTIONS(6254), - [anon_sym___attribute__] = ACTIONS(6254), - [anon_sym___attribute] = ACTIONS(6254), - [anon_sym_COLON_COLON] = ACTIONS(6256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6256), - [anon_sym___declspec] = ACTIONS(6254), - [anon_sym___based] = ACTIONS(6254), - [anon_sym_LBRACE] = ACTIONS(6256), - [anon_sym_LBRACK] = ACTIONS(6254), - [anon_sym_static] = ACTIONS(6254), - [anon_sym_EQ] = ACTIONS(6254), - [anon_sym_register] = ACTIONS(6254), - [anon_sym_inline] = ACTIONS(6254), - [anon_sym___inline] = ACTIONS(6254), - [anon_sym___inline__] = ACTIONS(6254), - [anon_sym___forceinline] = ACTIONS(6254), - [anon_sym_thread_local] = ACTIONS(6254), - [anon_sym___thread] = ACTIONS(6254), - [anon_sym_const] = ACTIONS(6254), - [anon_sym_constexpr] = ACTIONS(6254), - [anon_sym_volatile] = ACTIONS(6254), - [anon_sym_restrict] = ACTIONS(6254), - [anon_sym___restrict__] = ACTIONS(6254), - [anon_sym__Atomic] = ACTIONS(6254), - [anon_sym__Noreturn] = ACTIONS(6254), - [anon_sym_noreturn] = ACTIONS(6254), - [anon_sym__Nonnull] = ACTIONS(6254), - [anon_sym_mutable] = ACTIONS(6254), - [anon_sym_constinit] = ACTIONS(6254), - [anon_sym_consteval] = ACTIONS(6254), - [anon_sym_alignas] = ACTIONS(6254), - [anon_sym__Alignas] = ACTIONS(6254), - [anon_sym_QMARK] = ACTIONS(6256), - [anon_sym_STAR_EQ] = ACTIONS(6256), - [anon_sym_SLASH_EQ] = ACTIONS(6256), - [anon_sym_PERCENT_EQ] = ACTIONS(6256), - [anon_sym_PLUS_EQ] = ACTIONS(6256), - [anon_sym_DASH_EQ] = ACTIONS(6256), - [anon_sym_LT_LT_EQ] = ACTIONS(6256), - [anon_sym_GT_GT_EQ] = ACTIONS(6256), - [anon_sym_AMP_EQ] = ACTIONS(6256), - [anon_sym_CARET_EQ] = ACTIONS(6256), - [anon_sym_PIPE_EQ] = ACTIONS(6256), - [anon_sym_and_eq] = ACTIONS(6254), - [anon_sym_or_eq] = ACTIONS(6254), - [anon_sym_xor_eq] = ACTIONS(6254), - [anon_sym_LT_EQ_GT] = ACTIONS(6256), - [anon_sym_or] = ACTIONS(6254), - [anon_sym_and] = ACTIONS(6254), - [anon_sym_bitor] = ACTIONS(6254), - [anon_sym_xor] = ACTIONS(6254), - [anon_sym_bitand] = ACTIONS(6254), - [anon_sym_not_eq] = ACTIONS(6254), - [anon_sym_DASH_DASH] = ACTIONS(6256), - [anon_sym_PLUS_PLUS] = ACTIONS(6256), - [anon_sym_DOT] = ACTIONS(6254), - [anon_sym_DOT_STAR] = ACTIONS(6256), - [anon_sym_DASH_GT] = ACTIONS(6254), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6254), - [anon_sym_decltype] = ACTIONS(6254), - [anon_sym_template] = ACTIONS(6254), - [anon_sym_operator] = ACTIONS(6254), - [anon_sym_DASH_GT_STAR] = ACTIONS(6256), - [anon_sym_LBRACK_COLON] = ACTIONS(6256), - }, - [STATE(1916)] = { - [sym_identifier] = ACTIONS(6258), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), - [anon_sym_COMMA] = ACTIONS(6260), - [anon_sym_RPAREN] = ACTIONS(6260), - [anon_sym_LPAREN2] = ACTIONS(6260), - [anon_sym_TILDE] = ACTIONS(6260), - [anon_sym_DASH] = ACTIONS(6258), - [anon_sym_PLUS] = ACTIONS(6258), - [anon_sym_STAR] = ACTIONS(6258), - [anon_sym_SLASH] = ACTIONS(6258), - [anon_sym_PERCENT] = ACTIONS(6258), - [anon_sym_PIPE_PIPE] = ACTIONS(6260), - [anon_sym_AMP_AMP] = ACTIONS(6260), - [anon_sym_PIPE] = ACTIONS(6258), - [anon_sym_CARET] = ACTIONS(6258), - [anon_sym_AMP] = ACTIONS(6258), - [anon_sym_EQ_EQ] = ACTIONS(6260), - [anon_sym_BANG_EQ] = ACTIONS(6260), - [anon_sym_GT] = ACTIONS(6258), - [anon_sym_GT_EQ] = ACTIONS(6260), - [anon_sym_LT_EQ] = ACTIONS(6258), - [anon_sym_LT] = ACTIONS(6258), - [anon_sym_LT_LT] = ACTIONS(6258), - [anon_sym_GT_GT] = ACTIONS(6258), - [anon_sym___extension__] = ACTIONS(6258), - [anon_sym_virtual] = ACTIONS(6258), - [anon_sym_extern] = ACTIONS(6258), - [anon_sym___attribute__] = ACTIONS(6258), - [anon_sym___attribute] = ACTIONS(6258), - [anon_sym_COLON_COLON] = ACTIONS(6260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6260), - [anon_sym___declspec] = ACTIONS(6258), - [anon_sym___based] = ACTIONS(6258), - [anon_sym_LBRACE] = ACTIONS(6260), - [anon_sym_LBRACK] = ACTIONS(6258), - [anon_sym_static] = ACTIONS(6258), - [anon_sym_EQ] = ACTIONS(6258), - [anon_sym_register] = ACTIONS(6258), - [anon_sym_inline] = ACTIONS(6258), - [anon_sym___inline] = ACTIONS(6258), - [anon_sym___inline__] = ACTIONS(6258), - [anon_sym___forceinline] = ACTIONS(6258), - [anon_sym_thread_local] = ACTIONS(6258), - [anon_sym___thread] = ACTIONS(6258), - [anon_sym_const] = ACTIONS(6258), - [anon_sym_constexpr] = ACTIONS(6258), - [anon_sym_volatile] = ACTIONS(6258), - [anon_sym_restrict] = ACTIONS(6258), - [anon_sym___restrict__] = ACTIONS(6258), - [anon_sym__Atomic] = ACTIONS(6258), - [anon_sym__Noreturn] = ACTIONS(6258), - [anon_sym_noreturn] = ACTIONS(6258), - [anon_sym__Nonnull] = ACTIONS(6258), - [anon_sym_mutable] = ACTIONS(6258), - [anon_sym_constinit] = ACTIONS(6258), - [anon_sym_consteval] = ACTIONS(6258), - [anon_sym_alignas] = ACTIONS(6258), - [anon_sym__Alignas] = ACTIONS(6258), - [anon_sym_QMARK] = ACTIONS(6260), - [anon_sym_STAR_EQ] = ACTIONS(6260), - [anon_sym_SLASH_EQ] = ACTIONS(6260), - [anon_sym_PERCENT_EQ] = ACTIONS(6260), - [anon_sym_PLUS_EQ] = ACTIONS(6260), - [anon_sym_DASH_EQ] = ACTIONS(6260), - [anon_sym_LT_LT_EQ] = ACTIONS(6260), - [anon_sym_GT_GT_EQ] = ACTIONS(6260), - [anon_sym_AMP_EQ] = ACTIONS(6260), - [anon_sym_CARET_EQ] = ACTIONS(6260), - [anon_sym_PIPE_EQ] = ACTIONS(6260), - [anon_sym_and_eq] = ACTIONS(6258), - [anon_sym_or_eq] = ACTIONS(6258), - [anon_sym_xor_eq] = ACTIONS(6258), - [anon_sym_LT_EQ_GT] = ACTIONS(6260), - [anon_sym_or] = ACTIONS(6258), - [anon_sym_and] = ACTIONS(6258), - [anon_sym_bitor] = ACTIONS(6258), - [anon_sym_xor] = ACTIONS(6258), - [anon_sym_bitand] = ACTIONS(6258), - [anon_sym_not_eq] = ACTIONS(6258), - [anon_sym_DASH_DASH] = ACTIONS(6260), - [anon_sym_PLUS_PLUS] = ACTIONS(6260), - [anon_sym_DOT] = ACTIONS(6258), - [anon_sym_DOT_STAR] = ACTIONS(6260), - [anon_sym_DASH_GT] = ACTIONS(6258), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6258), - [anon_sym_decltype] = ACTIONS(6258), - [anon_sym_template] = ACTIONS(6258), - [anon_sym_operator] = ACTIONS(6258), - [anon_sym_DASH_GT_STAR] = ACTIONS(6260), - [anon_sym_LBRACK_COLON] = ACTIONS(6260), + [sym_expression] = STATE(6857), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1904)] = { + [sym_expression] = STATE(6858), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1905)] = { + [sym_expression] = STATE(6859), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1906)] = { + [sym_expression] = STATE(6861), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1907)] = { + [sym_expression] = STATE(6538), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1908)] = { + [sym_expression] = STATE(6866), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1909)] = { + [sym_expression] = STATE(6868), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), + }, + [STATE(1910)] = { + [sym_expression] = STATE(5474), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1911)] = { + [sym_expression] = STATE(5482), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1912)] = { + [sym_expression] = STATE(5483), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1913)] = { + [sym_expression] = STATE(5484), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1914)] = { + [sym_expression] = STATE(5485), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1915)] = { + [sym_expression] = STATE(5486), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1916)] = { + [sym_expression] = STATE(5487), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, [STATE(1917)] = { - [sym_identifier] = ACTIONS(6262), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), - [anon_sym_COMMA] = ACTIONS(6264), - [anon_sym_RPAREN] = ACTIONS(6264), - [anon_sym_LPAREN2] = ACTIONS(6264), - [anon_sym_TILDE] = ACTIONS(6264), - [anon_sym_DASH] = ACTIONS(6262), - [anon_sym_PLUS] = ACTIONS(6262), - [anon_sym_STAR] = ACTIONS(6262), - [anon_sym_SLASH] = ACTIONS(6262), - [anon_sym_PERCENT] = ACTIONS(6262), - [anon_sym_PIPE_PIPE] = ACTIONS(6264), - [anon_sym_AMP_AMP] = ACTIONS(6264), - [anon_sym_PIPE] = ACTIONS(6262), - [anon_sym_CARET] = ACTIONS(6262), - [anon_sym_AMP] = ACTIONS(6262), - [anon_sym_EQ_EQ] = ACTIONS(6264), - [anon_sym_BANG_EQ] = ACTIONS(6264), - [anon_sym_GT] = ACTIONS(6262), - [anon_sym_GT_EQ] = ACTIONS(6264), - [anon_sym_LT_EQ] = ACTIONS(6262), - [anon_sym_LT] = ACTIONS(6262), - [anon_sym_LT_LT] = ACTIONS(6262), - [anon_sym_GT_GT] = ACTIONS(6262), - [anon_sym___extension__] = ACTIONS(6262), - [anon_sym_virtual] = ACTIONS(6262), - [anon_sym_extern] = ACTIONS(6262), - [anon_sym___attribute__] = ACTIONS(6262), - [anon_sym___attribute] = ACTIONS(6262), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6264), - [anon_sym___declspec] = ACTIONS(6262), - [anon_sym___based] = ACTIONS(6262), - [anon_sym_LBRACE] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(6262), - [anon_sym_static] = ACTIONS(6262), - [anon_sym_EQ] = ACTIONS(6262), - [anon_sym_register] = ACTIONS(6262), - [anon_sym_inline] = ACTIONS(6262), - [anon_sym___inline] = ACTIONS(6262), - [anon_sym___inline__] = ACTIONS(6262), - [anon_sym___forceinline] = ACTIONS(6262), - [anon_sym_thread_local] = ACTIONS(6262), - [anon_sym___thread] = ACTIONS(6262), - [anon_sym_const] = ACTIONS(6262), - [anon_sym_constexpr] = ACTIONS(6262), - [anon_sym_volatile] = ACTIONS(6262), - [anon_sym_restrict] = ACTIONS(6262), - [anon_sym___restrict__] = ACTIONS(6262), - [anon_sym__Atomic] = ACTIONS(6262), - [anon_sym__Noreturn] = ACTIONS(6262), - [anon_sym_noreturn] = ACTIONS(6262), - [anon_sym__Nonnull] = ACTIONS(6262), - [anon_sym_mutable] = ACTIONS(6262), - [anon_sym_constinit] = ACTIONS(6262), - [anon_sym_consteval] = ACTIONS(6262), - [anon_sym_alignas] = ACTIONS(6262), - [anon_sym__Alignas] = ACTIONS(6262), - [anon_sym_QMARK] = ACTIONS(6264), - [anon_sym_STAR_EQ] = ACTIONS(6264), - [anon_sym_SLASH_EQ] = ACTIONS(6264), - [anon_sym_PERCENT_EQ] = ACTIONS(6264), - [anon_sym_PLUS_EQ] = ACTIONS(6264), - [anon_sym_DASH_EQ] = ACTIONS(6264), - [anon_sym_LT_LT_EQ] = ACTIONS(6264), - [anon_sym_GT_GT_EQ] = ACTIONS(6264), - [anon_sym_AMP_EQ] = ACTIONS(6264), - [anon_sym_CARET_EQ] = ACTIONS(6264), - [anon_sym_PIPE_EQ] = ACTIONS(6264), - [anon_sym_and_eq] = ACTIONS(6262), - [anon_sym_or_eq] = ACTIONS(6262), - [anon_sym_xor_eq] = ACTIONS(6262), - [anon_sym_LT_EQ_GT] = ACTIONS(6264), - [anon_sym_or] = ACTIONS(6262), - [anon_sym_and] = ACTIONS(6262), - [anon_sym_bitor] = ACTIONS(6262), - [anon_sym_xor] = ACTIONS(6262), - [anon_sym_bitand] = ACTIONS(6262), - [anon_sym_not_eq] = ACTIONS(6262), - [anon_sym_DASH_DASH] = ACTIONS(6264), - [anon_sym_PLUS_PLUS] = ACTIONS(6264), - [anon_sym_DOT] = ACTIONS(6262), - [anon_sym_DOT_STAR] = ACTIONS(6264), - [anon_sym_DASH_GT] = ACTIONS(6262), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6262), - [anon_sym_decltype] = ACTIONS(6262), - [anon_sym_template] = ACTIONS(6262), - [anon_sym_operator] = ACTIONS(6262), - [anon_sym_DASH_GT_STAR] = ACTIONS(6264), - [anon_sym_LBRACK_COLON] = ACTIONS(6264), + [sym_expression] = STATE(5488), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, [STATE(1918)] = { - [sym_attribute_specifier] = STATE(1918), - [aux_sym_type_definition_repeat1] = STATE(1918), - [sym_identifier] = ACTIONS(6553), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6555), - [anon_sym_COMMA] = ACTIONS(6555), - [anon_sym_RPAREN] = ACTIONS(6555), - [aux_sym_preproc_if_token2] = ACTIONS(6555), - [aux_sym_preproc_else_token1] = ACTIONS(6555), - [aux_sym_preproc_elif_token1] = ACTIONS(6553), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6555), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6555), - [anon_sym_LPAREN2] = ACTIONS(6555), - [anon_sym_DASH] = ACTIONS(6553), - [anon_sym_PLUS] = ACTIONS(6553), - [anon_sym_STAR] = ACTIONS(6553), - [anon_sym_SLASH] = ACTIONS(6553), - [anon_sym_PERCENT] = ACTIONS(6553), - [anon_sym_PIPE_PIPE] = ACTIONS(6555), - [anon_sym_AMP_AMP] = ACTIONS(6555), - [anon_sym_PIPE] = ACTIONS(6553), - [anon_sym_CARET] = ACTIONS(6553), - [anon_sym_AMP] = ACTIONS(6553), - [anon_sym_EQ_EQ] = ACTIONS(6555), - [anon_sym_BANG_EQ] = ACTIONS(6555), - [anon_sym_GT] = ACTIONS(6553), - [anon_sym_GT_EQ] = ACTIONS(6555), - [anon_sym_LT_EQ] = ACTIONS(6553), - [anon_sym_LT] = ACTIONS(6553), - [anon_sym_LT_LT] = ACTIONS(6553), - [anon_sym_GT_GT] = ACTIONS(6553), - [anon_sym_SEMI] = ACTIONS(6555), - [anon_sym___extension__] = ACTIONS(6553), - [anon_sym___attribute__] = ACTIONS(6557), - [anon_sym___attribute] = ACTIONS(6557), - [anon_sym_COLON] = ACTIONS(6553), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6555), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6555), - [anon_sym_RBRACE] = ACTIONS(6555), - [anon_sym_LBRACK] = ACTIONS(6553), - [anon_sym_EQ] = ACTIONS(6553), - [anon_sym_const] = ACTIONS(6553), - [anon_sym_constexpr] = ACTIONS(6553), - [anon_sym_volatile] = ACTIONS(6553), - [anon_sym_restrict] = ACTIONS(6553), - [anon_sym___restrict__] = ACTIONS(6553), - [anon_sym__Atomic] = ACTIONS(6553), - [anon_sym__Noreturn] = ACTIONS(6553), - [anon_sym_noreturn] = ACTIONS(6553), - [anon_sym__Nonnull] = ACTIONS(6553), - [anon_sym_mutable] = ACTIONS(6553), - [anon_sym_constinit] = ACTIONS(6553), - [anon_sym_consteval] = ACTIONS(6553), - [anon_sym_alignas] = ACTIONS(6553), - [anon_sym__Alignas] = ACTIONS(6553), - [anon_sym_QMARK] = ACTIONS(6555), - [anon_sym_STAR_EQ] = ACTIONS(6555), - [anon_sym_SLASH_EQ] = ACTIONS(6555), - [anon_sym_PERCENT_EQ] = ACTIONS(6555), - [anon_sym_PLUS_EQ] = ACTIONS(6555), - [anon_sym_DASH_EQ] = ACTIONS(6555), - [anon_sym_LT_LT_EQ] = ACTIONS(6555), - [anon_sym_GT_GT_EQ] = ACTIONS(6555), - [anon_sym_AMP_EQ] = ACTIONS(6555), - [anon_sym_CARET_EQ] = ACTIONS(6555), - [anon_sym_PIPE_EQ] = ACTIONS(6555), - [anon_sym_and_eq] = ACTIONS(6553), - [anon_sym_or_eq] = ACTIONS(6553), - [anon_sym_xor_eq] = ACTIONS(6553), - [anon_sym_LT_EQ_GT] = ACTIONS(6555), - [anon_sym_or] = ACTIONS(6553), - [anon_sym_and] = ACTIONS(6553), - [anon_sym_bitor] = ACTIONS(6553), - [anon_sym_xor] = ACTIONS(6553), - [anon_sym_bitand] = ACTIONS(6553), - [anon_sym_not_eq] = ACTIONS(6553), - [anon_sym_DASH_DASH] = ACTIONS(6555), - [anon_sym_PLUS_PLUS] = ACTIONS(6555), - [anon_sym_asm] = ACTIONS(6553), - [anon_sym___asm__] = ACTIONS(6553), - [anon_sym___asm] = ACTIONS(6553), - [anon_sym_DOT] = ACTIONS(6553), - [anon_sym_DOT_STAR] = ACTIONS(6555), - [anon_sym_DASH_GT] = ACTIONS(6555), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6553), - [anon_sym_override] = ACTIONS(6553), - [anon_sym_noexcept] = ACTIONS(6553), - [anon_sym_throw] = ACTIONS(6553), - [anon_sym_requires] = ACTIONS(6553), - [anon_sym_COLON_RBRACK] = ACTIONS(6555), + [sym_expression] = STATE(5489), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, [STATE(1919)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(1975), - [sym_ms_pointer_modifier] = STATE(1928), - [sym__abstract_declarator] = STATE(4427), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2167), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1847), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2167), - [aux_sym_pointer_declarator_repeat1] = STATE(1928), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_RPAREN] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6560), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(6562), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(6564), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym_SEMI] = ACTIONS(6497), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(6495), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6497), - [sym_ms_restrict_modifier] = ACTIONS(6471), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6487), - [sym_ms_signed_ptr_modifier] = ACTIONS(6487), - [anon_sym__unaligned] = ACTIONS(6489), - [anon_sym___unaligned] = ACTIONS(6489), - [anon_sym_RBRACE] = ACTIONS(6497), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6497), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_and_eq] = ACTIONS(6497), - [anon_sym_or_eq] = ACTIONS(6497), - [anon_sym_xor_eq] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6497), + [sym_expression] = STATE(5490), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, [STATE(1920)] = { - [sym_string_literal] = STATE(3557), - [sym_decltype_auto] = STATE(2957), - [sym_template_argument_list] = STATE(2933), - [sym_raw_string_literal] = STATE(3557), - [aux_sym_sized_type_specifier_repeat1] = STATE(2305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [anon_sym_RPAREN] = ACTIONS(5255), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5262), - [anon_sym_PLUS] = ACTIONS(5262), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5262), - [anon_sym_PERCENT] = ACTIONS(5262), - [anon_sym_PIPE_PIPE] = ACTIONS(5255), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5262), - [anon_sym_CARET] = ACTIONS(5262), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5255), - [anon_sym_BANG_EQ] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5262), - [anon_sym_GT_EQ] = ACTIONS(5255), - [anon_sym_LT_EQ] = ACTIONS(5262), - [anon_sym_LT] = ACTIONS(6566), - [anon_sym_LT_LT] = ACTIONS(5262), - [anon_sym_GT_GT] = ACTIONS(5262), - [anon_sym___extension__] = ACTIONS(5258), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(6570), - [anon_sym_unsigned] = ACTIONS(6570), - [anon_sym_long] = ACTIONS(6570), - [anon_sym_short] = ACTIONS(6570), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(5262), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5258), - [anon_sym_volatile] = ACTIONS(5258), - [anon_sym_restrict] = ACTIONS(5258), - [anon_sym___restrict__] = ACTIONS(5258), - [anon_sym__Atomic] = ACTIONS(5258), - [anon_sym__Noreturn] = ACTIONS(5258), - [anon_sym_noreturn] = ACTIONS(5258), - [anon_sym__Nonnull] = ACTIONS(5258), - [anon_sym_mutable] = ACTIONS(5258), - [anon_sym_constinit] = ACTIONS(5258), - [anon_sym_consteval] = ACTIONS(5258), - [anon_sym_alignas] = ACTIONS(5258), - [anon_sym__Alignas] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5255), - [anon_sym_STAR_EQ] = ACTIONS(5255), - [anon_sym_SLASH_EQ] = ACTIONS(5255), - [anon_sym_PERCENT_EQ] = ACTIONS(5255), - [anon_sym_PLUS_EQ] = ACTIONS(5255), - [anon_sym_DASH_EQ] = ACTIONS(5255), - [anon_sym_LT_LT_EQ] = ACTIONS(5255), - [anon_sym_GT_GT_EQ] = ACTIONS(5255), - [anon_sym_AMP_EQ] = ACTIONS(5255), - [anon_sym_CARET_EQ] = ACTIONS(5255), - [anon_sym_PIPE_EQ] = ACTIONS(5255), - [anon_sym_and_eq] = ACTIONS(5255), - [anon_sym_or_eq] = ACTIONS(5255), - [anon_sym_xor_eq] = ACTIONS(5255), - [anon_sym_LT_EQ_GT] = ACTIONS(5255), - [anon_sym_or] = ACTIONS(5262), - [anon_sym_and] = ACTIONS(5262), - [anon_sym_bitor] = ACTIONS(5255), - [anon_sym_xor] = ACTIONS(5262), - [anon_sym_bitand] = ACTIONS(5255), - [anon_sym_not_eq] = ACTIONS(5255), - [anon_sym_DASH_DASH] = ACTIONS(5255), - [anon_sym_PLUS_PLUS] = ACTIONS(5255), - [anon_sym_DOT] = ACTIONS(5262), - [anon_sym_DOT_STAR] = ACTIONS(5255), - [anon_sym_DASH_GT] = ACTIONS(5262), - [anon_sym_L_DQUOTE] = ACTIONS(6517), - [anon_sym_u_DQUOTE] = ACTIONS(6517), - [anon_sym_U_DQUOTE] = ACTIONS(6517), - [anon_sym_u8_DQUOTE] = ACTIONS(6517), - [anon_sym_DQUOTE] = ACTIONS(6517), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6572), - [anon_sym_decltype] = ACTIONS(6574), - [anon_sym_R_DQUOTE] = ACTIONS(6519), - [anon_sym_LR_DQUOTE] = ACTIONS(6519), - [anon_sym_uR_DQUOTE] = ACTIONS(6519), - [anon_sym_UR_DQUOTE] = ACTIONS(6519), - [anon_sym_u8R_DQUOTE] = ACTIONS(6519), - [anon_sym_DASH_GT_STAR] = ACTIONS(5255), + [sym_expression] = STATE(5491), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, [STATE(1921)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(1975), - [sym_ms_pointer_modifier] = STATE(1922), - [sym__abstract_declarator] = STATE(4338), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2149), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1870), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2149), - [aux_sym_pointer_declarator_repeat1] = STATE(1922), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_PLUS] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(6576), - [anon_sym_SLASH] = ACTIONS(6457), - [anon_sym_PERCENT] = ACTIONS(6457), - [anon_sym_PIPE_PIPE] = ACTIONS(6459), - [anon_sym_AMP_AMP] = ACTIONS(6578), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_CARET] = ACTIONS(6457), - [anon_sym_AMP] = ACTIONS(6580), - [anon_sym_EQ_EQ] = ACTIONS(6459), - [anon_sym_BANG_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_LT_EQ] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_LT_LT] = ACTIONS(6457), - [anon_sym_GT_GT] = ACTIONS(6457), - [anon_sym_SEMI] = ACTIONS(6459), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym___attribute__] = ACTIONS(6459), - [anon_sym___attribute] = ACTIONS(6457), - [sym_ms_restrict_modifier] = ACTIONS(6471), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6487), - [sym_ms_signed_ptr_modifier] = ACTIONS(6487), - [anon_sym__unaligned] = ACTIONS(6489), - [anon_sym___unaligned] = ACTIONS(6489), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6459), - [anon_sym_STAR_EQ] = ACTIONS(6459), - [anon_sym_SLASH_EQ] = ACTIONS(6459), - [anon_sym_PERCENT_EQ] = ACTIONS(6459), - [anon_sym_PLUS_EQ] = ACTIONS(6459), - [anon_sym_DASH_EQ] = ACTIONS(6459), - [anon_sym_LT_LT_EQ] = ACTIONS(6459), - [anon_sym_GT_GT_EQ] = ACTIONS(6459), - [anon_sym_AMP_EQ] = ACTIONS(6459), - [anon_sym_CARET_EQ] = ACTIONS(6459), - [anon_sym_PIPE_EQ] = ACTIONS(6459), - [anon_sym_and_eq] = ACTIONS(6459), - [anon_sym_or_eq] = ACTIONS(6459), - [anon_sym_xor_eq] = ACTIONS(6459), - [anon_sym_LT_EQ_GT] = ACTIONS(6459), - [anon_sym_or] = ACTIONS(6457), - [anon_sym_and] = ACTIONS(6457), - [anon_sym_bitor] = ACTIONS(6459), - [anon_sym_xor] = ACTIONS(6457), - [anon_sym_bitand] = ACTIONS(6459), - [anon_sym_not_eq] = ACTIONS(6459), - [anon_sym_DASH_DASH] = ACTIONS(6459), - [anon_sym_PLUS_PLUS] = ACTIONS(6459), - [anon_sym_DOT] = ACTIONS(6457), - [anon_sym_DOT_STAR] = ACTIONS(6459), - [anon_sym_DASH_GT] = ACTIONS(6459), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6459), - [anon_sym_override] = ACTIONS(6459), - [anon_sym_requires] = ACTIONS(6459), + [sym_expression] = STATE(5477), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(6449), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, [STATE(1922)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(1975), - [sym_ms_pointer_modifier] = STATE(1928), - [sym__abstract_declarator] = STATE(4340), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2151), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1870), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2151), - [aux_sym_pointer_declarator_repeat1] = STATE(1928), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6576), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(6578), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(6580), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym_SEMI] = ACTIONS(6497), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym___attribute__] = ACTIONS(6497), - [anon_sym___attribute] = ACTIONS(6495), - [sym_ms_restrict_modifier] = ACTIONS(6471), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6487), - [sym_ms_signed_ptr_modifier] = ACTIONS(6487), - [anon_sym__unaligned] = ACTIONS(6489), - [anon_sym___unaligned] = ACTIONS(6489), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6497), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_and_eq] = ACTIONS(6497), - [anon_sym_or_eq] = ACTIONS(6497), - [anon_sym_xor_eq] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6497), - [anon_sym_override] = ACTIONS(6497), - [anon_sym_requires] = ACTIONS(6497), + [sym_expression] = STATE(5478), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, [STATE(1923)] = { - [sym_string_literal] = STATE(3798), - [sym_decltype_auto] = STATE(3388), - [sym_template_argument_list] = STATE(3479), - [sym_raw_string_literal] = STATE(3798), - [aux_sym_sized_type_specifier_repeat1] = STATE(2505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [anon_sym_RPAREN] = ACTIONS(5255), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5262), - [anon_sym_PLUS] = ACTIONS(5262), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5262), - [anon_sym_PERCENT] = ACTIONS(5262), - [anon_sym_PIPE_PIPE] = ACTIONS(5255), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5262), - [anon_sym_CARET] = ACTIONS(5262), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5255), - [anon_sym_BANG_EQ] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5262), - [anon_sym_GT_EQ] = ACTIONS(5255), - [anon_sym_LT_EQ] = ACTIONS(5262), - [anon_sym_LT] = ACTIONS(6582), - [anon_sym_LT_LT] = ACTIONS(5262), - [anon_sym_GT_GT] = ACTIONS(5262), - [anon_sym___extension__] = ACTIONS(5258), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(6586), - [anon_sym_unsigned] = ACTIONS(6586), - [anon_sym_long] = ACTIONS(6586), - [anon_sym_short] = ACTIONS(6586), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(5262), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5258), - [anon_sym_volatile] = ACTIONS(5258), - [anon_sym_restrict] = ACTIONS(5258), - [anon_sym___restrict__] = ACTIONS(5258), - [anon_sym__Atomic] = ACTIONS(5258), - [anon_sym__Noreturn] = ACTIONS(5258), - [anon_sym_noreturn] = ACTIONS(5258), - [anon_sym__Nonnull] = ACTIONS(5258), - [anon_sym_mutable] = ACTIONS(5258), - [anon_sym_constinit] = ACTIONS(5258), - [anon_sym_consteval] = ACTIONS(5258), - [anon_sym_alignas] = ACTIONS(5258), - [anon_sym__Alignas] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5255), - [anon_sym_STAR_EQ] = ACTIONS(5255), - [anon_sym_SLASH_EQ] = ACTIONS(5255), - [anon_sym_PERCENT_EQ] = ACTIONS(5255), - [anon_sym_PLUS_EQ] = ACTIONS(5255), - [anon_sym_DASH_EQ] = ACTIONS(5255), - [anon_sym_LT_LT_EQ] = ACTIONS(5255), - [anon_sym_GT_GT_EQ] = ACTIONS(5255), - [anon_sym_AMP_EQ] = ACTIONS(5255), - [anon_sym_CARET_EQ] = ACTIONS(5255), - [anon_sym_PIPE_EQ] = ACTIONS(5255), - [anon_sym_and_eq] = ACTIONS(6588), - [anon_sym_or_eq] = ACTIONS(6588), - [anon_sym_xor_eq] = ACTIONS(6588), - [anon_sym_LT_EQ_GT] = ACTIONS(5255), - [anon_sym_or] = ACTIONS(5262), - [anon_sym_and] = ACTIONS(5262), - [anon_sym_bitor] = ACTIONS(5255), - [anon_sym_xor] = ACTIONS(5262), - [anon_sym_bitand] = ACTIONS(5255), - [anon_sym_not_eq] = ACTIONS(5255), - [anon_sym_DASH_DASH] = ACTIONS(5255), - [anon_sym_PLUS_PLUS] = ACTIONS(5255), - [anon_sym_DOT] = ACTIONS(5262), - [anon_sym_DOT_STAR] = ACTIONS(5255), - [anon_sym_DASH_GT] = ACTIONS(5262), - [anon_sym_L_DQUOTE] = ACTIONS(5601), - [anon_sym_u_DQUOTE] = ACTIONS(5601), - [anon_sym_U_DQUOTE] = ACTIONS(5601), - [anon_sym_u8_DQUOTE] = ACTIONS(5601), - [anon_sym_DQUOTE] = ACTIONS(5601), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6590), - [anon_sym_decltype] = ACTIONS(6592), - [anon_sym_R_DQUOTE] = ACTIONS(5603), - [anon_sym_LR_DQUOTE] = ACTIONS(5603), - [anon_sym_uR_DQUOTE] = ACTIONS(5603), - [anon_sym_UR_DQUOTE] = ACTIONS(5603), - [anon_sym_u8R_DQUOTE] = ACTIONS(5603), - [anon_sym_DASH_GT_STAR] = ACTIONS(5255), + [sym_expression] = STATE(5480), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(6451), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, [STATE(1924)] = { - [sym_identifier] = ACTIONS(6226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), - [anon_sym_COMMA] = ACTIONS(6230), - [anon_sym_RPAREN] = ACTIONS(6230), - [anon_sym_LPAREN2] = ACTIONS(6230), - [anon_sym_TILDE] = ACTIONS(6233), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6237), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_PERCENT] = ACTIONS(6235), - [anon_sym_PIPE_PIPE] = ACTIONS(6228), - [anon_sym_AMP_AMP] = ACTIONS(6230), - [anon_sym_PIPE] = ACTIONS(6235), - [anon_sym_CARET] = ACTIONS(6235), - [anon_sym_AMP] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6228), - [anon_sym_BANG_EQ] = ACTIONS(6228), - [anon_sym_GT] = ACTIONS(6235), - [anon_sym_GT_EQ] = ACTIONS(6228), - [anon_sym_LT_EQ] = ACTIONS(6235), - [anon_sym_LT] = ACTIONS(6235), - [anon_sym_LT_LT] = ACTIONS(6235), - [anon_sym_GT_GT] = ACTIONS(6235), - [anon_sym___extension__] = ACTIONS(6226), - [anon_sym_virtual] = ACTIONS(6226), - [anon_sym_extern] = ACTIONS(6226), - [anon_sym___attribute__] = ACTIONS(6226), - [anon_sym___attribute] = ACTIONS(6226), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6233), - [anon_sym___declspec] = ACTIONS(6226), - [anon_sym___based] = ACTIONS(6226), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6237), - [anon_sym_static] = ACTIONS(6226), - [anon_sym_EQ] = ACTIONS(6237), - [anon_sym_register] = ACTIONS(6226), - [anon_sym_inline] = ACTIONS(6226), - [anon_sym___inline] = ACTIONS(6226), - [anon_sym___inline__] = ACTIONS(6226), - [anon_sym___forceinline] = ACTIONS(6226), - [anon_sym_thread_local] = ACTIONS(6226), - [anon_sym___thread] = ACTIONS(6226), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6226), - [anon_sym_volatile] = ACTIONS(6226), - [anon_sym_restrict] = ACTIONS(6226), - [anon_sym___restrict__] = ACTIONS(6226), - [anon_sym__Atomic] = ACTIONS(6226), - [anon_sym__Noreturn] = ACTIONS(6226), - [anon_sym_noreturn] = ACTIONS(6226), - [anon_sym__Nonnull] = ACTIONS(6226), - [anon_sym_mutable] = ACTIONS(6226), - [anon_sym_constinit] = ACTIONS(6226), - [anon_sym_consteval] = ACTIONS(6226), - [anon_sym_alignas] = ACTIONS(6226), - [anon_sym__Alignas] = ACTIONS(6226), - [anon_sym_QMARK] = ACTIONS(6228), - [anon_sym_STAR_EQ] = ACTIONS(6228), - [anon_sym_SLASH_EQ] = ACTIONS(6228), - [anon_sym_PERCENT_EQ] = ACTIONS(6228), - [anon_sym_PLUS_EQ] = ACTIONS(6228), - [anon_sym_DASH_EQ] = ACTIONS(6228), - [anon_sym_LT_LT_EQ] = ACTIONS(6228), - [anon_sym_GT_GT_EQ] = ACTIONS(6228), - [anon_sym_AMP_EQ] = ACTIONS(6228), - [anon_sym_CARET_EQ] = ACTIONS(6228), - [anon_sym_PIPE_EQ] = ACTIONS(6228), - [anon_sym_and_eq] = ACTIONS(6235), - [anon_sym_or_eq] = ACTIONS(6235), - [anon_sym_xor_eq] = ACTIONS(6235), - [anon_sym_LT_EQ_GT] = ACTIONS(6228), - [anon_sym_or] = ACTIONS(6235), - [anon_sym_and] = ACTIONS(6235), - [anon_sym_bitor] = ACTIONS(6235), - [anon_sym_xor] = ACTIONS(6235), - [anon_sym_bitand] = ACTIONS(6235), - [anon_sym_not_eq] = ACTIONS(6235), - [anon_sym_DASH_DASH] = ACTIONS(6228), - [anon_sym_PLUS_PLUS] = ACTIONS(6228), - [anon_sym_DOT] = ACTIONS(6235), - [anon_sym_DOT_STAR] = ACTIONS(6228), - [anon_sym_DASH_GT] = ACTIONS(6228), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6226), - [anon_sym_decltype] = ACTIONS(6226), - [anon_sym_template] = ACTIONS(6226), - [anon_sym_operator] = ACTIONS(6226), - [anon_sym_LBRACK_COLON] = ACTIONS(6233), + [sym_expression] = STATE(5266), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, [STATE(1925)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(1975), - [sym_ms_pointer_modifier] = STATE(1926), - [sym__abstract_declarator] = STATE(4420), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2141), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1841), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2141), - [aux_sym_pointer_declarator_repeat1] = STATE(1926), - [sym_identifier] = ACTIONS(6457), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [aux_sym_preproc_if_token2] = ACTIONS(6459), - [aux_sym_preproc_else_token1] = ACTIONS(6459), - [aux_sym_preproc_elif_token1] = ACTIONS(6457), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6459), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_PLUS] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(6594), - [anon_sym_SLASH] = ACTIONS(6457), - [anon_sym_PERCENT] = ACTIONS(6457), - [anon_sym_PIPE_PIPE] = ACTIONS(6459), - [anon_sym_AMP_AMP] = ACTIONS(6596), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_CARET] = ACTIONS(6457), - [anon_sym_AMP] = ACTIONS(6598), - [anon_sym_EQ_EQ] = ACTIONS(6459), - [anon_sym_BANG_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_LT_EQ] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_LT_LT] = ACTIONS(6457), - [anon_sym_GT_GT] = ACTIONS(6457), - [anon_sym___extension__] = ACTIONS(6469), - [sym_ms_restrict_modifier] = ACTIONS(6471), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6471), - [sym_ms_signed_ptr_modifier] = ACTIONS(6471), - [anon_sym__unaligned] = ACTIONS(6473), - [anon_sym___unaligned] = ACTIONS(6473), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6469), - [anon_sym_volatile] = ACTIONS(6469), - [anon_sym_restrict] = ACTIONS(6469), - [anon_sym___restrict__] = ACTIONS(6469), - [anon_sym__Atomic] = ACTIONS(6469), - [anon_sym__Noreturn] = ACTIONS(6469), - [anon_sym_noreturn] = ACTIONS(6469), - [anon_sym__Nonnull] = ACTIONS(6469), - [anon_sym_mutable] = ACTIONS(6469), - [anon_sym_constinit] = ACTIONS(6469), - [anon_sym_consteval] = ACTIONS(6469), - [anon_sym_alignas] = ACTIONS(6477), - [anon_sym__Alignas] = ACTIONS(6477), - [anon_sym_QMARK] = ACTIONS(6459), - [anon_sym_STAR_EQ] = ACTIONS(6459), - [anon_sym_SLASH_EQ] = ACTIONS(6459), - [anon_sym_PERCENT_EQ] = ACTIONS(6459), - [anon_sym_PLUS_EQ] = ACTIONS(6459), - [anon_sym_DASH_EQ] = ACTIONS(6459), - [anon_sym_LT_LT_EQ] = ACTIONS(6459), - [anon_sym_GT_GT_EQ] = ACTIONS(6459), - [anon_sym_AMP_EQ] = ACTIONS(6459), - [anon_sym_CARET_EQ] = ACTIONS(6459), - [anon_sym_PIPE_EQ] = ACTIONS(6459), - [anon_sym_and_eq] = ACTIONS(6457), - [anon_sym_or_eq] = ACTIONS(6457), - [anon_sym_xor_eq] = ACTIONS(6457), - [anon_sym_LT_EQ_GT] = ACTIONS(6459), - [anon_sym_or] = ACTIONS(6457), - [anon_sym_and] = ACTIONS(6457), - [anon_sym_bitor] = ACTIONS(6457), - [anon_sym_xor] = ACTIONS(6457), - [anon_sym_bitand] = ACTIONS(6457), - [anon_sym_not_eq] = ACTIONS(6457), - [anon_sym_DASH_DASH] = ACTIONS(6459), - [anon_sym_PLUS_PLUS] = ACTIONS(6459), - [anon_sym_DOT] = ACTIONS(6457), - [anon_sym_DOT_STAR] = ACTIONS(6459), - [anon_sym_DASH_GT] = ACTIONS(6459), + [sym_expression] = STATE(6541), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1926)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(1975), - [sym_ms_pointer_modifier] = STATE(1928), - [sym__abstract_declarator] = STATE(4422), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2143), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1841), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2143), - [aux_sym_pointer_declarator_repeat1] = STATE(1928), - [sym_identifier] = ACTIONS(6495), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [aux_sym_preproc_if_token2] = ACTIONS(6497), - [aux_sym_preproc_else_token1] = ACTIONS(6497), - [aux_sym_preproc_elif_token1] = ACTIONS(6495), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6497), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6594), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(6596), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(6598), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym___extension__] = ACTIONS(6469), - [sym_ms_restrict_modifier] = ACTIONS(6471), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6471), - [sym_ms_signed_ptr_modifier] = ACTIONS(6471), - [anon_sym__unaligned] = ACTIONS(6473), - [anon_sym___unaligned] = ACTIONS(6473), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6469), - [anon_sym_volatile] = ACTIONS(6469), - [anon_sym_restrict] = ACTIONS(6469), - [anon_sym___restrict__] = ACTIONS(6469), - [anon_sym__Atomic] = ACTIONS(6469), - [anon_sym__Noreturn] = ACTIONS(6469), - [anon_sym_noreturn] = ACTIONS(6469), - [anon_sym__Nonnull] = ACTIONS(6469), - [anon_sym_mutable] = ACTIONS(6469), - [anon_sym_constinit] = ACTIONS(6469), - [anon_sym_consteval] = ACTIONS(6469), - [anon_sym_alignas] = ACTIONS(6477), - [anon_sym__Alignas] = ACTIONS(6477), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6497), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_and_eq] = ACTIONS(6495), - [anon_sym_or_eq] = ACTIONS(6495), - [anon_sym_xor_eq] = ACTIONS(6495), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6495), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6495), - [anon_sym_not_eq] = ACTIONS(6495), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), + [sym_expression] = STATE(5872), + [sym__string] = STATE(5941), + [sym_conditional_expression] = STATE(6083), + [sym_assignment_expression] = STATE(6083), + [sym_pointer_expression] = STATE(5637), + [sym_unary_expression] = STATE(6083), + [sym_binary_expression] = STATE(6083), + [sym_update_expression] = STATE(6083), + [sym_cast_expression] = STATE(6083), + [sym_sizeof_expression] = STATE(6083), + [sym_alignof_expression] = STATE(6083), + [sym_offsetof_expression] = STATE(6083), + [sym_generic_expression] = STATE(6083), + [sym_subscript_expression] = STATE(5637), + [sym_call_expression] = STATE(5637), + [sym_gnu_asm_expression] = STATE(6083), + [sym_extension_expression] = STATE(6083), + [sym_field_expression] = STATE(5637), + [sym_compound_literal_expression] = STATE(6083), + [sym_parenthesized_expression] = STATE(5637), + [sym_char_literal] = STATE(5941), + [sym_concatenated_string] = STATE(5941), + [sym_string_literal] = STATE(4133), + [sym_null] = STATE(6083), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10386), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6083), + [sym_raw_string_literal] = STATE(4133), + [sym_co_await_expression] = STATE(6083), + [sym_new_expression] = STATE(6083), + [sym_delete_expression] = STATE(6083), + [sym_requires_clause] = STATE(6083), + [sym_requires_expression] = STATE(6083), + [sym_lambda_expression] = STATE(6083), + [sym_lambda_capture_specifier] = STATE(8042), + [sym_fold_expression] = STATE(6083), + [sym_parameter_pack_expansion] = STATE(6083), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5637), + [sym_qualified_type_identifier] = STATE(10386), + [sym_reflect_expression] = STATE(6083), + [sym_splice_specifier] = STATE(5653), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9332), + [sym_splice_expression] = STATE(5942), + [sym_user_defined_literal] = STATE(5637), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_not] = ACTIONS(2334), + [anon_sym_compl] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [anon_sym___alignof__] = ACTIONS(2348), + [anon_sym___alignof] = ACTIONS(2348), + [anon_sym__alignof] = ACTIONS(2348), + [anon_sym_alignof] = ACTIONS(2348), + [anon_sym__Alignof] = ACTIONS(2348), + [anon_sym_offsetof] = ACTIONS(2350), + [anon_sym__Generic] = ACTIONS(2352), + [anon_sym_typename] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [sym_number_literal] = ACTIONS(2358), + [anon_sym_L_SQUOTE] = ACTIONS(2360), + [anon_sym_u_SQUOTE] = ACTIONS(2360), + [anon_sym_U_SQUOTE] = ACTIONS(2360), + [anon_sym_u8_SQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_L_DQUOTE] = ACTIONS(2362), + [anon_sym_u_DQUOTE] = ACTIONS(2362), + [anon_sym_U_DQUOTE] = ACTIONS(2362), + [anon_sym_u8_DQUOTE] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_true] = ACTIONS(2364), + [sym_false] = ACTIONS(2364), + [anon_sym_NULL] = ACTIONS(2366), + [anon_sym_nullptr] = ACTIONS(2366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_R_DQUOTE] = ACTIONS(2372), + [anon_sym_LR_DQUOTE] = ACTIONS(2372), + [anon_sym_uR_DQUOTE] = ACTIONS(2372), + [anon_sym_UR_DQUOTE] = ACTIONS(2372), + [anon_sym_u8R_DQUOTE] = ACTIONS(2372), + [anon_sym_co_await] = ACTIONS(2374), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_requires] = ACTIONS(2378), + [anon_sym_CARET_CARET] = ACTIONS(2380), + [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [sym_this] = ACTIONS(2364), }, [STATE(1927)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(1975), - [sym_ms_pointer_modifier] = STATE(1919), - [sym__abstract_declarator] = STATE(4380), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2182), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1847), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2182), - [aux_sym_pointer_declarator_repeat1] = STATE(1919), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_RPAREN] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_PLUS] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(6560), - [anon_sym_SLASH] = ACTIONS(6457), - [anon_sym_PERCENT] = ACTIONS(6457), - [anon_sym_PIPE_PIPE] = ACTIONS(6459), - [anon_sym_AMP_AMP] = ACTIONS(6562), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_CARET] = ACTIONS(6457), - [anon_sym_AMP] = ACTIONS(6564), - [anon_sym_EQ_EQ] = ACTIONS(6459), - [anon_sym_BANG_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_LT_EQ] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_LT_LT] = ACTIONS(6457), - [anon_sym_GT_GT] = ACTIONS(6457), - [anon_sym_SEMI] = ACTIONS(6459), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(6457), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6459), - [sym_ms_restrict_modifier] = ACTIONS(6471), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6487), - [sym_ms_signed_ptr_modifier] = ACTIONS(6487), - [anon_sym__unaligned] = ACTIONS(6489), - [anon_sym___unaligned] = ACTIONS(6489), - [anon_sym_RBRACE] = ACTIONS(6459), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6459), - [anon_sym_STAR_EQ] = ACTIONS(6459), - [anon_sym_SLASH_EQ] = ACTIONS(6459), - [anon_sym_PERCENT_EQ] = ACTIONS(6459), - [anon_sym_PLUS_EQ] = ACTIONS(6459), - [anon_sym_DASH_EQ] = ACTIONS(6459), - [anon_sym_LT_LT_EQ] = ACTIONS(6459), - [anon_sym_GT_GT_EQ] = ACTIONS(6459), - [anon_sym_AMP_EQ] = ACTIONS(6459), - [anon_sym_CARET_EQ] = ACTIONS(6459), - [anon_sym_PIPE_EQ] = ACTIONS(6459), - [anon_sym_and_eq] = ACTIONS(6459), - [anon_sym_or_eq] = ACTIONS(6459), - [anon_sym_xor_eq] = ACTIONS(6459), - [anon_sym_LT_EQ_GT] = ACTIONS(6459), - [anon_sym_or] = ACTIONS(6457), - [anon_sym_and] = ACTIONS(6457), - [anon_sym_bitor] = ACTIONS(6459), - [anon_sym_xor] = ACTIONS(6457), - [anon_sym_bitand] = ACTIONS(6459), - [anon_sym_not_eq] = ACTIONS(6459), - [anon_sym_DASH_DASH] = ACTIONS(6459), - [anon_sym_PLUS_PLUS] = ACTIONS(6459), - [anon_sym_DOT] = ACTIONS(6457), - [anon_sym_DOT_STAR] = ACTIONS(6459), - [anon_sym_DASH_GT] = ACTIONS(6459), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6459), + [sym_expression] = STATE(5495), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, [STATE(1928)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(1975), - [sym_ms_pointer_modifier] = STATE(1928), - [aux_sym_pointer_declarator_repeat1] = STATE(1928), - [sym_identifier] = ACTIONS(6600), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6602), - [anon_sym_COMMA] = ACTIONS(6602), - [anon_sym_RPAREN] = ACTIONS(6602), - [aux_sym_preproc_if_token2] = ACTIONS(6602), - [aux_sym_preproc_else_token1] = ACTIONS(6602), - [aux_sym_preproc_elif_token1] = ACTIONS(6600), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6602), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6602), - [anon_sym_LPAREN2] = ACTIONS(6602), - [anon_sym_DASH] = ACTIONS(6600), - [anon_sym_PLUS] = ACTIONS(6600), - [anon_sym_STAR] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6600), - [anon_sym_PERCENT] = ACTIONS(6600), - [anon_sym_PIPE_PIPE] = ACTIONS(6602), - [anon_sym_AMP_AMP] = ACTIONS(6602), - [anon_sym_PIPE] = ACTIONS(6600), - [anon_sym_CARET] = ACTIONS(6600), - [anon_sym_AMP] = ACTIONS(6600), - [anon_sym_EQ_EQ] = ACTIONS(6602), - [anon_sym_BANG_EQ] = ACTIONS(6602), - [anon_sym_GT] = ACTIONS(6600), - [anon_sym_GT_EQ] = ACTIONS(6602), - [anon_sym_LT_EQ] = ACTIONS(6600), - [anon_sym_LT] = ACTIONS(6600), - [anon_sym_LT_LT] = ACTIONS(6600), - [anon_sym_GT_GT] = ACTIONS(6600), - [anon_sym_SEMI] = ACTIONS(6602), - [anon_sym___extension__] = ACTIONS(6600), - [anon_sym___attribute__] = ACTIONS(6600), - [anon_sym___attribute] = ACTIONS(6600), - [anon_sym_COLON] = ACTIONS(6600), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6602), - [sym_ms_restrict_modifier] = ACTIONS(6604), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6604), - [sym_ms_signed_ptr_modifier] = ACTIONS(6604), - [anon_sym__unaligned] = ACTIONS(6607), - [anon_sym___unaligned] = ACTIONS(6607), - [anon_sym_RBRACE] = ACTIONS(6602), - [anon_sym_LBRACK] = ACTIONS(6602), - [anon_sym_EQ] = ACTIONS(6600), - [anon_sym_const] = ACTIONS(6600), - [anon_sym_constexpr] = ACTIONS(6600), - [anon_sym_volatile] = ACTIONS(6600), - [anon_sym_restrict] = ACTIONS(6600), - [anon_sym___restrict__] = ACTIONS(6600), - [anon_sym__Atomic] = ACTIONS(6600), - [anon_sym__Noreturn] = ACTIONS(6600), - [anon_sym_noreturn] = ACTIONS(6600), - [anon_sym__Nonnull] = ACTIONS(6600), - [anon_sym_mutable] = ACTIONS(6600), - [anon_sym_constinit] = ACTIONS(6600), - [anon_sym_consteval] = ACTIONS(6600), - [anon_sym_alignas] = ACTIONS(6600), - [anon_sym__Alignas] = ACTIONS(6600), - [anon_sym_QMARK] = ACTIONS(6602), - [anon_sym_STAR_EQ] = ACTIONS(6602), - [anon_sym_SLASH_EQ] = ACTIONS(6602), - [anon_sym_PERCENT_EQ] = ACTIONS(6602), - [anon_sym_PLUS_EQ] = ACTIONS(6602), - [anon_sym_DASH_EQ] = ACTIONS(6602), - [anon_sym_LT_LT_EQ] = ACTIONS(6602), - [anon_sym_GT_GT_EQ] = ACTIONS(6602), - [anon_sym_AMP_EQ] = ACTIONS(6602), - [anon_sym_CARET_EQ] = ACTIONS(6602), - [anon_sym_PIPE_EQ] = ACTIONS(6602), - [anon_sym_and_eq] = ACTIONS(6600), - [anon_sym_or_eq] = ACTIONS(6600), - [anon_sym_xor_eq] = ACTIONS(6600), - [anon_sym_LT_EQ_GT] = ACTIONS(6602), - [anon_sym_or] = ACTIONS(6600), - [anon_sym_and] = ACTIONS(6600), - [anon_sym_bitor] = ACTIONS(6600), - [anon_sym_xor] = ACTIONS(6600), - [anon_sym_bitand] = ACTIONS(6600), - [anon_sym_not_eq] = ACTIONS(6600), - [anon_sym_DASH_DASH] = ACTIONS(6602), - [anon_sym_PLUS_PLUS] = ACTIONS(6602), - [anon_sym_DOT] = ACTIONS(6600), - [anon_sym_DOT_STAR] = ACTIONS(6602), - [anon_sym_DASH_GT] = ACTIONS(6602), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6600), - [anon_sym_override] = ACTIONS(6600), - [anon_sym_requires] = ACTIONS(6600), - [anon_sym_COLON_RBRACK] = ACTIONS(6602), + [sym_expression] = STATE(5497), + [sym__string] = STATE(4580), + [sym_conditional_expression] = STATE(3841), + [sym_assignment_expression] = STATE(3841), + [sym_pointer_expression] = STATE(3844), + [sym_unary_expression] = STATE(3841), + [sym_binary_expression] = STATE(3841), + [sym_update_expression] = STATE(3841), + [sym_cast_expression] = STATE(3841), + [sym_sizeof_expression] = STATE(3841), + [sym_alignof_expression] = STATE(3841), + [sym_offsetof_expression] = STATE(3841), + [sym_generic_expression] = STATE(3841), + [sym_subscript_expression] = STATE(3844), + [sym_call_expression] = STATE(3844), + [sym_gnu_asm_expression] = STATE(3841), + [sym_extension_expression] = STATE(3841), + [sym_field_expression] = STATE(3844), + [sym_compound_literal_expression] = STATE(3841), + [sym_parenthesized_expression] = STATE(3844), + [sym_char_literal] = STATE(4580), + [sym_concatenated_string] = STATE(4580), + [sym_string_literal] = STATE(3436), + [sym_null] = STATE(3841), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10271), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(3841), + [sym_raw_string_literal] = STATE(3436), + [sym_co_await_expression] = STATE(3841), + [sym_new_expression] = STATE(3841), + [sym_delete_expression] = STATE(3841), + [sym_requires_clause] = STATE(3841), + [sym_requires_expression] = STATE(3841), + [sym_lambda_expression] = STATE(3841), + [sym_lambda_capture_specifier] = STATE(8030), + [sym_fold_expression] = STATE(3841), + [sym_parameter_pack_expansion] = STATE(3841), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(3844), + [sym_qualified_type_identifier] = STATE(10271), + [sym_reflect_expression] = STATE(3841), + [sym_splice_specifier] = STATE(3602), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9284), + [sym_splice_expression] = STATE(3781), + [sym_user_defined_literal] = STATE(3844), + [sym_identifier] = ACTIONS(2608), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4413), + [anon_sym_PLUS_PLUS] = ACTIONS(4413), + [anon_sym_sizeof] = ACTIONS(3034), + [anon_sym___alignof__] = ACTIONS(2402), + [anon_sym___alignof] = ACTIONS(2402), + [anon_sym__alignof] = ACTIONS(2402), + [anon_sym_alignof] = ACTIONS(2402), + [anon_sym__Alignof] = ACTIONS(2402), + [anon_sym_offsetof] = ACTIONS(2404), + [anon_sym__Generic] = ACTIONS(2406), + [anon_sym_typename] = ACTIONS(2408), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2620), + [anon_sym_L_SQUOTE] = ACTIONS(2622), + [anon_sym_u_SQUOTE] = ACTIONS(2622), + [anon_sym_U_SQUOTE] = ACTIONS(2622), + [anon_sym_u8_SQUOTE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(2628), + [anon_sym_LR_DQUOTE] = ACTIONS(2628), + [anon_sym_uR_DQUOTE] = ACTIONS(2628), + [anon_sym_UR_DQUOTE] = ACTIONS(2628), + [anon_sym_u8R_DQUOTE] = ACTIONS(2628), + [anon_sym_co_await] = ACTIONS(3038), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3040), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, [STATE(1929)] = { - [sym_string_literal] = STATE(3557), - [sym_decltype_auto] = STATE(3014), - [sym_template_argument_list] = STATE(2859), - [sym_raw_string_literal] = STATE(3557), - [aux_sym_sized_type_specifier_repeat1] = STATE(3464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_RPAREN] = ACTIONS(5255), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(6610), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym___extension__] = ACTIONS(5258), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(6503), - [anon_sym_unsigned] = ACTIONS(6503), - [anon_sym_long] = ACTIONS(6503), - [anon_sym_short] = ACTIONS(6503), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(5260), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5258), - [anon_sym_volatile] = ACTIONS(5258), - [anon_sym_restrict] = ACTIONS(5258), - [anon_sym___restrict__] = ACTIONS(5258), - [anon_sym__Atomic] = ACTIONS(5258), - [anon_sym__Noreturn] = ACTIONS(5258), - [anon_sym_noreturn] = ACTIONS(5258), - [anon_sym__Nonnull] = ACTIONS(5258), - [anon_sym_mutable] = ACTIONS(5258), - [anon_sym_constinit] = ACTIONS(5258), - [anon_sym_consteval] = ACTIONS(5258), - [anon_sym_alignas] = ACTIONS(5258), - [anon_sym__Alignas] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5253), - [anon_sym_SLASH_EQ] = ACTIONS(5253), - [anon_sym_PERCENT_EQ] = ACTIONS(5253), - [anon_sym_PLUS_EQ] = ACTIONS(5253), - [anon_sym_DASH_EQ] = ACTIONS(5253), - [anon_sym_LT_LT_EQ] = ACTIONS(5253), - [anon_sym_GT_GT_EQ] = ACTIONS(5253), - [anon_sym_AMP_EQ] = ACTIONS(5253), - [anon_sym_CARET_EQ] = ACTIONS(5253), - [anon_sym_PIPE_EQ] = ACTIONS(5253), - [anon_sym_and_eq] = ACTIONS(5253), - [anon_sym_or_eq] = ACTIONS(5253), - [anon_sym_xor_eq] = ACTIONS(5253), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5260), - [anon_sym_L_DQUOTE] = ACTIONS(6517), - [anon_sym_u_DQUOTE] = ACTIONS(6517), - [anon_sym_U_DQUOTE] = ACTIONS(6517), - [anon_sym_u8_DQUOTE] = ACTIONS(6517), - [anon_sym_DQUOTE] = ACTIONS(6517), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6505), - [anon_sym_decltype] = ACTIONS(6507), - [anon_sym_R_DQUOTE] = ACTIONS(6519), - [anon_sym_LR_DQUOTE] = ACTIONS(6519), - [anon_sym_uR_DQUOTE] = ACTIONS(6519), - [anon_sym_UR_DQUOTE] = ACTIONS(6519), - [anon_sym_u8R_DQUOTE] = ACTIONS(6519), - [anon_sym_DASH_GT_STAR] = ACTIONS(5253), + [sym_expression] = STATE(6543), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1930)] = { - [sym_string_literal] = STATE(5466), - [sym_decltype_auto] = STATE(3956), - [sym_template_argument_list] = STATE(4643), - [sym_raw_string_literal] = STATE(5466), - [aux_sym_sized_type_specifier_repeat1] = STATE(3152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5262), - [anon_sym_PLUS] = ACTIONS(5262), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5262), - [anon_sym_PERCENT] = ACTIONS(5262), - [anon_sym_PIPE_PIPE] = ACTIONS(5255), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5262), - [anon_sym_CARET] = ACTIONS(5262), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5255), - [anon_sym_BANG_EQ] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5262), - [anon_sym_GT_EQ] = ACTIONS(5255), - [anon_sym_LT_EQ] = ACTIONS(5262), - [anon_sym_LT] = ACTIONS(6439), - [anon_sym_LT_LT] = ACTIONS(5262), - [anon_sym_GT_GT] = ACTIONS(5262), - [anon_sym___extension__] = ACTIONS(5258), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(6613), - [anon_sym_unsigned] = ACTIONS(6613), - [anon_sym_long] = ACTIONS(6613), - [anon_sym_short] = ACTIONS(6613), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_RBRACK] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(6615), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5258), - [anon_sym_volatile] = ACTIONS(5258), - [anon_sym_restrict] = ACTIONS(5258), - [anon_sym___restrict__] = ACTIONS(5258), - [anon_sym__Atomic] = ACTIONS(5258), - [anon_sym__Noreturn] = ACTIONS(5258), - [anon_sym_noreturn] = ACTIONS(5258), - [anon_sym__Nonnull] = ACTIONS(5258), - [anon_sym_mutable] = ACTIONS(5258), - [anon_sym_constinit] = ACTIONS(5258), - [anon_sym_consteval] = ACTIONS(5258), - [anon_sym_alignas] = ACTIONS(5258), - [anon_sym__Alignas] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5255), - [anon_sym_STAR_EQ] = ACTIONS(6617), - [anon_sym_SLASH_EQ] = ACTIONS(6617), - [anon_sym_PERCENT_EQ] = ACTIONS(6617), - [anon_sym_PLUS_EQ] = ACTIONS(6617), - [anon_sym_DASH_EQ] = ACTIONS(6617), - [anon_sym_LT_LT_EQ] = ACTIONS(6617), - [anon_sym_GT_GT_EQ] = ACTIONS(6617), - [anon_sym_AMP_EQ] = ACTIONS(6617), - [anon_sym_CARET_EQ] = ACTIONS(6617), - [anon_sym_PIPE_EQ] = ACTIONS(6617), - [anon_sym_and_eq] = ACTIONS(6617), - [anon_sym_or_eq] = ACTIONS(6617), - [anon_sym_xor_eq] = ACTIONS(6617), - [anon_sym_LT_EQ_GT] = ACTIONS(5255), - [anon_sym_or] = ACTIONS(5262), - [anon_sym_and] = ACTIONS(5262), - [anon_sym_bitor] = ACTIONS(5255), - [anon_sym_xor] = ACTIONS(5262), - [anon_sym_bitand] = ACTIONS(5255), - [anon_sym_not_eq] = ACTIONS(5255), - [anon_sym_DASH_DASH] = ACTIONS(5255), - [anon_sym_PLUS_PLUS] = ACTIONS(5255), - [anon_sym_DOT] = ACTIONS(5262), - [anon_sym_DOT_STAR] = ACTIONS(5255), - [anon_sym_DASH_GT] = ACTIONS(5255), - [anon_sym_L_DQUOTE] = ACTIONS(6619), - [anon_sym_u_DQUOTE] = ACTIONS(6619), - [anon_sym_U_DQUOTE] = ACTIONS(6619), - [anon_sym_u8_DQUOTE] = ACTIONS(6619), - [anon_sym_DQUOTE] = ACTIONS(6619), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6621), - [anon_sym_decltype] = ACTIONS(6623), - [anon_sym_R_DQUOTE] = ACTIONS(6625), - [anon_sym_LR_DQUOTE] = ACTIONS(6625), - [anon_sym_uR_DQUOTE] = ACTIONS(6625), - [anon_sym_UR_DQUOTE] = ACTIONS(6625), - [anon_sym_u8R_DQUOTE] = ACTIONS(6625), + [sym_expression] = STATE(6882), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1931)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1931), - [sym_identifier] = ACTIONS(6627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6629), - [anon_sym_COMMA] = ACTIONS(6629), - [anon_sym_RPAREN] = ACTIONS(6629), - [aux_sym_preproc_if_token2] = ACTIONS(6629), - [aux_sym_preproc_else_token1] = ACTIONS(6629), - [aux_sym_preproc_elif_token1] = ACTIONS(6627), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6629), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6629), - [anon_sym_LPAREN2] = ACTIONS(6629), - [anon_sym_DASH] = ACTIONS(6627), - [anon_sym_PLUS] = ACTIONS(6627), - [anon_sym_STAR] = ACTIONS(6627), - [anon_sym_SLASH] = ACTIONS(6627), - [anon_sym_PERCENT] = ACTIONS(6627), - [anon_sym_PIPE_PIPE] = ACTIONS(6629), - [anon_sym_AMP_AMP] = ACTIONS(6629), - [anon_sym_PIPE] = ACTIONS(6627), - [anon_sym_CARET] = ACTIONS(6627), - [anon_sym_AMP] = ACTIONS(6627), - [anon_sym_EQ_EQ] = ACTIONS(6629), - [anon_sym_BANG_EQ] = ACTIONS(6629), - [anon_sym_GT] = ACTIONS(6627), - [anon_sym_GT_EQ] = ACTIONS(6629), - [anon_sym_LT_EQ] = ACTIONS(6627), - [anon_sym_LT] = ACTIONS(6627), - [anon_sym_LT_LT] = ACTIONS(6627), - [anon_sym_GT_GT] = ACTIONS(6627), - [anon_sym_SEMI] = ACTIONS(6629), - [anon_sym___extension__] = ACTIONS(6627), - [anon_sym___attribute__] = ACTIONS(6627), - [anon_sym___attribute] = ACTIONS(6627), - [anon_sym_COLON] = ACTIONS(6627), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6629), - [anon_sym_LBRACE] = ACTIONS(6629), - [anon_sym_RBRACE] = ACTIONS(6629), - [anon_sym_signed] = ACTIONS(6631), - [anon_sym_unsigned] = ACTIONS(6631), - [anon_sym_long] = ACTIONS(6631), - [anon_sym_short] = ACTIONS(6631), - [anon_sym_LBRACK] = ACTIONS(6629), - [anon_sym_EQ] = ACTIONS(6627), - [anon_sym_const] = ACTIONS(6627), - [anon_sym_constexpr] = ACTIONS(6627), - [anon_sym_volatile] = ACTIONS(6627), - [anon_sym_restrict] = ACTIONS(6627), - [anon_sym___restrict__] = ACTIONS(6627), - [anon_sym__Atomic] = ACTIONS(6627), - [anon_sym__Noreturn] = ACTIONS(6627), - [anon_sym_noreturn] = ACTIONS(6627), - [anon_sym__Nonnull] = ACTIONS(6627), - [anon_sym_mutable] = ACTIONS(6627), - [anon_sym_constinit] = ACTIONS(6627), - [anon_sym_consteval] = ACTIONS(6627), - [anon_sym_alignas] = ACTIONS(6627), - [anon_sym__Alignas] = ACTIONS(6627), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(6629), - [anon_sym_STAR_EQ] = ACTIONS(6629), - [anon_sym_SLASH_EQ] = ACTIONS(6629), - [anon_sym_PERCENT_EQ] = ACTIONS(6629), - [anon_sym_PLUS_EQ] = ACTIONS(6629), - [anon_sym_DASH_EQ] = ACTIONS(6629), - [anon_sym_LT_LT_EQ] = ACTIONS(6629), - [anon_sym_GT_GT_EQ] = ACTIONS(6629), - [anon_sym_AMP_EQ] = ACTIONS(6629), - [anon_sym_CARET_EQ] = ACTIONS(6629), - [anon_sym_PIPE_EQ] = ACTIONS(6629), - [anon_sym_and_eq] = ACTIONS(6627), - [anon_sym_or_eq] = ACTIONS(6627), - [anon_sym_xor_eq] = ACTIONS(6627), - [anon_sym_LT_EQ_GT] = ACTIONS(6629), - [anon_sym_or] = ACTIONS(6627), - [anon_sym_and] = ACTIONS(6627), - [anon_sym_bitor] = ACTIONS(6627), - [anon_sym_xor] = ACTIONS(6627), - [anon_sym_bitand] = ACTIONS(6627), - [anon_sym_not_eq] = ACTIONS(6627), - [anon_sym_DASH_DASH] = ACTIONS(6629), - [anon_sym_PLUS_PLUS] = ACTIONS(6629), - [anon_sym_DOT] = ACTIONS(6627), - [anon_sym_DOT_STAR] = ACTIONS(6629), - [anon_sym_DASH_GT] = ACTIONS(6629), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6627), - [anon_sym_override] = ACTIONS(6627), - [anon_sym_requires] = ACTIONS(6627), - [anon_sym_COLON_RBRACK] = ACTIONS(6629), + [sym_expression] = STATE(6885), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1932)] = { - [sym_string_literal] = STATE(3652), - [sym_decltype_auto] = STATE(3055), - [sym_template_argument_list] = STATE(3016), - [sym_raw_string_literal] = STATE(3652), - [aux_sym_sized_type_specifier_repeat1] = STATE(2412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5262), - [anon_sym_PLUS] = ACTIONS(5262), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5262), - [anon_sym_PERCENT] = ACTIONS(5262), - [anon_sym_PIPE_PIPE] = ACTIONS(5255), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5262), - [anon_sym_CARET] = ACTIONS(5262), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5255), - [anon_sym_BANG_EQ] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5262), - [anon_sym_GT_EQ] = ACTIONS(5262), - [anon_sym_LT_EQ] = ACTIONS(5262), - [anon_sym_LT] = ACTIONS(6634), - [anon_sym_LT_LT] = ACTIONS(5262), - [anon_sym_GT_GT] = ACTIONS(5262), - [anon_sym___extension__] = ACTIONS(5258), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(6638), - [anon_sym_unsigned] = ACTIONS(6638), - [anon_sym_long] = ACTIONS(6638), - [anon_sym_short] = ACTIONS(6638), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(5262), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5258), - [anon_sym_volatile] = ACTIONS(5258), - [anon_sym_restrict] = ACTIONS(5258), - [anon_sym___restrict__] = ACTIONS(5258), - [anon_sym__Atomic] = ACTIONS(5258), - [anon_sym__Noreturn] = ACTIONS(5258), - [anon_sym_noreturn] = ACTIONS(5258), - [anon_sym__Nonnull] = ACTIONS(5258), - [anon_sym_mutable] = ACTIONS(5258), - [anon_sym_constinit] = ACTIONS(5258), - [anon_sym_consteval] = ACTIONS(5258), - [anon_sym_alignas] = ACTIONS(5258), - [anon_sym__Alignas] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5255), - [anon_sym_STAR_EQ] = ACTIONS(5255), - [anon_sym_SLASH_EQ] = ACTIONS(5255), - [anon_sym_PERCENT_EQ] = ACTIONS(5255), - [anon_sym_PLUS_EQ] = ACTIONS(5255), - [anon_sym_DASH_EQ] = ACTIONS(5255), - [anon_sym_LT_LT_EQ] = ACTIONS(5255), - [anon_sym_GT_GT_EQ] = ACTIONS(5262), - [anon_sym_AMP_EQ] = ACTIONS(5255), - [anon_sym_CARET_EQ] = ACTIONS(5255), - [anon_sym_PIPE_EQ] = ACTIONS(5255), - [anon_sym_and_eq] = ACTIONS(5255), - [anon_sym_or_eq] = ACTIONS(5255), - [anon_sym_xor_eq] = ACTIONS(5255), - [anon_sym_LT_EQ_GT] = ACTIONS(5255), - [anon_sym_or] = ACTIONS(5262), - [anon_sym_and] = ACTIONS(5262), - [anon_sym_bitor] = ACTIONS(5255), - [anon_sym_xor] = ACTIONS(5262), - [anon_sym_bitand] = ACTIONS(5255), - [anon_sym_not_eq] = ACTIONS(5255), - [anon_sym_DASH_DASH] = ACTIONS(5255), - [anon_sym_PLUS_PLUS] = ACTIONS(5255), - [anon_sym_DOT] = ACTIONS(5262), - [anon_sym_DOT_STAR] = ACTIONS(5255), - [anon_sym_DASH_GT] = ACTIONS(5255), - [anon_sym_L_DQUOTE] = ACTIONS(6640), - [anon_sym_u_DQUOTE] = ACTIONS(6640), - [anon_sym_U_DQUOTE] = ACTIONS(6640), - [anon_sym_u8_DQUOTE] = ACTIONS(6640), - [anon_sym_DQUOTE] = ACTIONS(6640), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6642), - [anon_sym_decltype] = ACTIONS(6644), - [anon_sym_GT2] = ACTIONS(5255), - [anon_sym_R_DQUOTE] = ACTIONS(6646), - [anon_sym_LR_DQUOTE] = ACTIONS(6646), - [anon_sym_uR_DQUOTE] = ACTIONS(6646), - [anon_sym_UR_DQUOTE] = ACTIONS(6646), - [anon_sym_u8R_DQUOTE] = ACTIONS(6646), + [sym_expression] = STATE(6555), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1933)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2544), - [sym_ms_pointer_modifier] = STATE(2315), - [sym__abstract_declarator] = STATE(4471), - [sym_abstract_parenthesized_declarator] = STATE(4672), - [sym_abstract_pointer_declarator] = STATE(4672), - [sym_abstract_function_declarator] = STATE(4672), - [sym_abstract_array_declarator] = STATE(4672), - [sym_type_qualifier] = STATE(2188), - [sym_alignas_qualifier] = STATE(2278), - [sym_parameter_list] = STATE(1867), - [sym_abstract_reference_declarator] = STATE(4672), - [sym__function_declarator_seq] = STATE(4681), - [aux_sym__type_definition_type_repeat1] = STATE(2188), - [aux_sym_pointer_declarator_repeat1] = STATE(2315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_RPAREN] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6648), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6650), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(6652), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(6654), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym___extension__] = ACTIONS(6656), - [sym_ms_restrict_modifier] = ACTIONS(6658), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6660), - [sym_ms_signed_ptr_modifier] = ACTIONS(6660), - [anon_sym__unaligned] = ACTIONS(6662), - [anon_sym___unaligned] = ACTIONS(6662), - [anon_sym_LBRACK] = ACTIONS(6664), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6666), - [anon_sym_constexpr] = ACTIONS(6656), - [anon_sym_volatile] = ACTIONS(6656), - [anon_sym_restrict] = ACTIONS(6656), - [anon_sym___restrict__] = ACTIONS(6656), - [anon_sym__Atomic] = ACTIONS(6656), - [anon_sym__Noreturn] = ACTIONS(6656), - [anon_sym_noreturn] = ACTIONS(6656), - [anon_sym__Nonnull] = ACTIONS(6656), - [anon_sym_mutable] = ACTIONS(6656), - [anon_sym_constinit] = ACTIONS(6656), - [anon_sym_consteval] = ACTIONS(6656), - [anon_sym_alignas] = ACTIONS(6668), - [anon_sym__Alignas] = ACTIONS(6668), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6497), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_and_eq] = ACTIONS(6497), - [anon_sym_or_eq] = ACTIONS(6497), - [anon_sym_xor_eq] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6495), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6497), - [anon_sym_override] = ACTIONS(6497), - [anon_sym_requires] = ACTIONS(6497), - [anon_sym_DASH_GT_STAR] = ACTIONS(6497), + [sym_expression] = STATE(6887), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(6453), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1934)] = { - [sym_string_literal] = STATE(3603), - [sym_decltype_auto] = STATE(3006), - [sym_template_argument_list] = STATE(3042), - [sym_raw_string_literal] = STATE(3603), - [aux_sym_sized_type_specifier_repeat1] = STATE(2124), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5262), - [anon_sym_PLUS] = ACTIONS(5262), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5262), - [anon_sym_PERCENT] = ACTIONS(5262), - [anon_sym_PIPE_PIPE] = ACTIONS(5255), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5262), - [anon_sym_CARET] = ACTIONS(5262), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5255), - [anon_sym_BANG_EQ] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5262), - [anon_sym_GT_EQ] = ACTIONS(5255), - [anon_sym_LT_EQ] = ACTIONS(5262), - [anon_sym_LT] = ACTIONS(6670), - [anon_sym_LT_LT] = ACTIONS(5262), - [anon_sym_GT_GT] = ACTIONS(5262), - [anon_sym___extension__] = ACTIONS(5258), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(6674), - [anon_sym_unsigned] = ACTIONS(6674), - [anon_sym_long] = ACTIONS(6674), - [anon_sym_short] = ACTIONS(6674), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_RBRACK] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(5262), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5258), - [anon_sym_volatile] = ACTIONS(5258), - [anon_sym_restrict] = ACTIONS(5258), - [anon_sym___restrict__] = ACTIONS(5258), - [anon_sym__Atomic] = ACTIONS(5258), - [anon_sym__Noreturn] = ACTIONS(5258), - [anon_sym_noreturn] = ACTIONS(5258), - [anon_sym__Nonnull] = ACTIONS(5258), - [anon_sym_mutable] = ACTIONS(5258), - [anon_sym_constinit] = ACTIONS(5258), - [anon_sym_consteval] = ACTIONS(5258), - [anon_sym_alignas] = ACTIONS(5258), - [anon_sym__Alignas] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5255), - [anon_sym_STAR_EQ] = ACTIONS(5255), - [anon_sym_SLASH_EQ] = ACTIONS(5255), - [anon_sym_PERCENT_EQ] = ACTIONS(5255), - [anon_sym_PLUS_EQ] = ACTIONS(5255), - [anon_sym_DASH_EQ] = ACTIONS(5255), - [anon_sym_LT_LT_EQ] = ACTIONS(5255), - [anon_sym_GT_GT_EQ] = ACTIONS(5255), - [anon_sym_AMP_EQ] = ACTIONS(5255), - [anon_sym_CARET_EQ] = ACTIONS(5255), - [anon_sym_PIPE_EQ] = ACTIONS(5255), - [anon_sym_and_eq] = ACTIONS(5255), - [anon_sym_or_eq] = ACTIONS(5255), - [anon_sym_xor_eq] = ACTIONS(5255), - [anon_sym_LT_EQ_GT] = ACTIONS(5255), - [anon_sym_or] = ACTIONS(5262), - [anon_sym_and] = ACTIONS(5262), - [anon_sym_bitor] = ACTIONS(5255), - [anon_sym_xor] = ACTIONS(5262), - [anon_sym_bitand] = ACTIONS(5255), - [anon_sym_not_eq] = ACTIONS(5255), - [anon_sym_DASH_DASH] = ACTIONS(5255), - [anon_sym_PLUS_PLUS] = ACTIONS(5255), - [anon_sym_DOT] = ACTIONS(5262), - [anon_sym_DOT_STAR] = ACTIONS(5255), - [anon_sym_DASH_GT] = ACTIONS(5255), - [anon_sym_L_DQUOTE] = ACTIONS(6676), - [anon_sym_u_DQUOTE] = ACTIONS(6676), - [anon_sym_U_DQUOTE] = ACTIONS(6676), - [anon_sym_u8_DQUOTE] = ACTIONS(6676), - [anon_sym_DQUOTE] = ACTIONS(6676), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6678), - [anon_sym_decltype] = ACTIONS(6680), - [anon_sym_R_DQUOTE] = ACTIONS(6682), - [anon_sym_LR_DQUOTE] = ACTIONS(6682), - [anon_sym_uR_DQUOTE] = ACTIONS(6682), - [anon_sym_UR_DQUOTE] = ACTIONS(6682), - [anon_sym_u8R_DQUOTE] = ACTIONS(6682), + [sym_expression] = STATE(6888), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5899), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5899), + [sym_call_expression] = STATE(5899), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5899), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5899), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5899), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5899), + [sym_identifier] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1935)] = { - [sym_string_literal] = STATE(5440), - [sym_decltype_auto] = STATE(4306), - [sym_template_argument_list] = STATE(4628), - [sym_raw_string_literal] = STATE(5440), - [aux_sym_sized_type_specifier_repeat1] = STATE(3914), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5262), - [anon_sym_PLUS] = ACTIONS(5262), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5262), - [anon_sym_PERCENT] = ACTIONS(5262), - [anon_sym_PIPE_PIPE] = ACTIONS(5255), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5262), - [anon_sym_CARET] = ACTIONS(5262), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5255), - [anon_sym_BANG_EQ] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5262), - [anon_sym_GT_EQ] = ACTIONS(5262), - [anon_sym_LT_EQ] = ACTIONS(5262), - [anon_sym_LT] = ACTIONS(6684), - [anon_sym_LT_LT] = ACTIONS(5262), - [anon_sym_GT_GT] = ACTIONS(5262), - [anon_sym___extension__] = ACTIONS(5258), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(6688), - [anon_sym_unsigned] = ACTIONS(6688), - [anon_sym_long] = ACTIONS(6688), - [anon_sym_short] = ACTIONS(6688), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(6690), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5258), - [anon_sym_volatile] = ACTIONS(5258), - [anon_sym_restrict] = ACTIONS(5258), - [anon_sym___restrict__] = ACTIONS(5258), - [anon_sym__Atomic] = ACTIONS(5258), - [anon_sym__Noreturn] = ACTIONS(5258), - [anon_sym_noreturn] = ACTIONS(5258), - [anon_sym__Nonnull] = ACTIONS(5258), - [anon_sym_mutable] = ACTIONS(5258), - [anon_sym_constinit] = ACTIONS(5258), - [anon_sym_consteval] = ACTIONS(5258), - [anon_sym_alignas] = ACTIONS(5258), - [anon_sym__Alignas] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5255), - [anon_sym_STAR_EQ] = ACTIONS(6692), - [anon_sym_SLASH_EQ] = ACTIONS(6692), - [anon_sym_PERCENT_EQ] = ACTIONS(6692), - [anon_sym_PLUS_EQ] = ACTIONS(6692), - [anon_sym_DASH_EQ] = ACTIONS(6692), - [anon_sym_LT_LT_EQ] = ACTIONS(6692), - [anon_sym_GT_GT_EQ] = ACTIONS(6690), - [anon_sym_AMP_EQ] = ACTIONS(6692), - [anon_sym_CARET_EQ] = ACTIONS(6692), - [anon_sym_PIPE_EQ] = ACTIONS(6692), - [anon_sym_and_eq] = ACTIONS(6692), - [anon_sym_or_eq] = ACTIONS(6692), - [anon_sym_xor_eq] = ACTIONS(6692), - [anon_sym_LT_EQ_GT] = ACTIONS(5255), - [anon_sym_or] = ACTIONS(5262), - [anon_sym_and] = ACTIONS(5262), - [anon_sym_bitor] = ACTIONS(5255), - [anon_sym_xor] = ACTIONS(5262), - [anon_sym_bitand] = ACTIONS(5255), - [anon_sym_not_eq] = ACTIONS(5255), - [anon_sym_DASH_DASH] = ACTIONS(5255), - [anon_sym_PLUS_PLUS] = ACTIONS(5255), - [anon_sym_DOT] = ACTIONS(5262), - [anon_sym_DOT_STAR] = ACTIONS(5255), - [anon_sym_DASH_GT] = ACTIONS(5255), - [anon_sym_L_DQUOTE] = ACTIONS(6694), - [anon_sym_u_DQUOTE] = ACTIONS(6694), - [anon_sym_U_DQUOTE] = ACTIONS(6694), - [anon_sym_u8_DQUOTE] = ACTIONS(6694), - [anon_sym_DQUOTE] = ACTIONS(6694), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6696), - [anon_sym_decltype] = ACTIONS(6698), - [anon_sym_GT2] = ACTIONS(5255), - [anon_sym_R_DQUOTE] = ACTIONS(6700), - [anon_sym_LR_DQUOTE] = ACTIONS(6700), - [anon_sym_uR_DQUOTE] = ACTIONS(6700), - [anon_sym_UR_DQUOTE] = ACTIONS(6700), - [anon_sym_u8R_DQUOTE] = ACTIONS(6700), + [sym_expression] = STATE(5117), + [sym__string] = STATE(5287), + [sym_conditional_expression] = STATE(5590), + [sym_assignment_expression] = STATE(5590), + [sym_pointer_expression] = STATE(5564), + [sym_unary_expression] = STATE(5590), + [sym_binary_expression] = STATE(5590), + [sym_update_expression] = STATE(5590), + [sym_cast_expression] = STATE(5590), + [sym_sizeof_expression] = STATE(5590), + [sym_alignof_expression] = STATE(5590), + [sym_offsetof_expression] = STATE(5590), + [sym_generic_expression] = STATE(5590), + [sym_subscript_expression] = STATE(5564), + [sym_call_expression] = STATE(5564), + [sym_gnu_asm_expression] = STATE(5590), + [sym_extension_expression] = STATE(5590), + [sym_field_expression] = STATE(5564), + [sym_compound_literal_expression] = STATE(5590), + [sym_parenthesized_expression] = STATE(5564), + [sym_char_literal] = STATE(5287), + [sym_concatenated_string] = STATE(5287), + [sym_string_literal] = STATE(3783), + [sym_null] = STATE(5590), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10583), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(5590), + [sym_raw_string_literal] = STATE(3783), + [sym_co_await_expression] = STATE(5590), + [sym_new_expression] = STATE(5590), + [sym_delete_expression] = STATE(5590), + [sym_requires_clause] = STATE(5590), + [sym_requires_expression] = STATE(5590), + [sym_lambda_expression] = STATE(5590), + [sym_lambda_capture_specifier] = STATE(8041), + [sym_fold_expression] = STATE(5590), + [sym_parameter_pack_expansion] = STATE(5590), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5564), + [sym_qualified_type_identifier] = STATE(10583), + [sym_reflect_expression] = STATE(5590), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9353), + [sym_splice_expression] = STATE(5280), + [sym_user_defined_literal] = STATE(5564), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2954), + [anon_sym_not] = ACTIONS(2232), + [anon_sym_compl] = ACTIONS(2232), + [anon_sym_DASH_DASH] = ACTIONS(2256), + [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [anon_sym_sizeof] = ACTIONS(2258), + [anon_sym___alignof__] = ACTIONS(2260), + [anon_sym___alignof] = ACTIONS(2260), + [anon_sym__alignof] = ACTIONS(2260), + [anon_sym_alignof] = ACTIONS(2260), + [anon_sym__Alignof] = ACTIONS(2260), + [anon_sym_offsetof] = ACTIONS(2262), + [anon_sym__Generic] = ACTIONS(2264), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2268), + [anon_sym___asm__] = ACTIONS(2268), + [anon_sym___asm] = ACTIONS(2268), + [sym_number_literal] = ACTIONS(2270), + [anon_sym_L_SQUOTE] = ACTIONS(2272), + [anon_sym_u_SQUOTE] = ACTIONS(2272), + [anon_sym_U_SQUOTE] = ACTIONS(2272), + [anon_sym_u8_SQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_L_DQUOTE] = ACTIONS(2274), + [anon_sym_u_DQUOTE] = ACTIONS(2274), + [anon_sym_U_DQUOTE] = ACTIONS(2274), + [anon_sym_u8_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [anon_sym_NULL] = ACTIONS(2278), + [anon_sym_nullptr] = ACTIONS(2278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_R_DQUOTE] = ACTIONS(2290), + [anon_sym_LR_DQUOTE] = ACTIONS(2290), + [anon_sym_uR_DQUOTE] = ACTIONS(2290), + [anon_sym_UR_DQUOTE] = ACTIONS(2290), + [anon_sym_u8R_DQUOTE] = ACTIONS(2290), + [anon_sym_co_await] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2294), + [anon_sym_requires] = ACTIONS(2296), + [anon_sym_CARET_CARET] = ACTIONS(2298), + [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [sym_this] = ACTIONS(2276), }, [STATE(1936)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2544), - [sym_ms_pointer_modifier] = STATE(1933), - [sym__abstract_declarator] = STATE(4458), - [sym_abstract_parenthesized_declarator] = STATE(4672), - [sym_abstract_pointer_declarator] = STATE(4672), - [sym_abstract_function_declarator] = STATE(4672), - [sym_abstract_array_declarator] = STATE(4672), - [sym_type_qualifier] = STATE(2192), - [sym_alignas_qualifier] = STATE(2278), - [sym_parameter_list] = STATE(1867), - [sym_abstract_reference_declarator] = STATE(4672), - [sym__function_declarator_seq] = STATE(4681), - [aux_sym__type_definition_type_repeat1] = STATE(2192), - [aux_sym_pointer_declarator_repeat1] = STATE(1933), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_RPAREN] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(6648), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_PLUS] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(6650), - [anon_sym_SLASH] = ACTIONS(6457), - [anon_sym_PERCENT] = ACTIONS(6457), - [anon_sym_PIPE_PIPE] = ACTIONS(6459), - [anon_sym_AMP_AMP] = ACTIONS(6652), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_CARET] = ACTIONS(6457), - [anon_sym_AMP] = ACTIONS(6654), - [anon_sym_EQ_EQ] = ACTIONS(6459), - [anon_sym_BANG_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_LT_EQ] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_LT_LT] = ACTIONS(6457), - [anon_sym_GT_GT] = ACTIONS(6457), - [anon_sym___extension__] = ACTIONS(6656), - [sym_ms_restrict_modifier] = ACTIONS(6658), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6660), - [sym_ms_signed_ptr_modifier] = ACTIONS(6660), - [anon_sym__unaligned] = ACTIONS(6662), - [anon_sym___unaligned] = ACTIONS(6662), - [anon_sym_LBRACK] = ACTIONS(6664), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_const] = ACTIONS(6666), - [anon_sym_constexpr] = ACTIONS(6656), - [anon_sym_volatile] = ACTIONS(6656), - [anon_sym_restrict] = ACTIONS(6656), - [anon_sym___restrict__] = ACTIONS(6656), - [anon_sym__Atomic] = ACTIONS(6656), - [anon_sym__Noreturn] = ACTIONS(6656), - [anon_sym_noreturn] = ACTIONS(6656), - [anon_sym__Nonnull] = ACTIONS(6656), - [anon_sym_mutable] = ACTIONS(6656), - [anon_sym_constinit] = ACTIONS(6656), - [anon_sym_consteval] = ACTIONS(6656), - [anon_sym_alignas] = ACTIONS(6668), - [anon_sym__Alignas] = ACTIONS(6668), - [anon_sym_QMARK] = ACTIONS(6459), - [anon_sym_STAR_EQ] = ACTIONS(6459), - [anon_sym_SLASH_EQ] = ACTIONS(6459), - [anon_sym_PERCENT_EQ] = ACTIONS(6459), - [anon_sym_PLUS_EQ] = ACTIONS(6459), - [anon_sym_DASH_EQ] = ACTIONS(6459), - [anon_sym_LT_LT_EQ] = ACTIONS(6459), - [anon_sym_GT_GT_EQ] = ACTIONS(6459), - [anon_sym_AMP_EQ] = ACTIONS(6459), - [anon_sym_CARET_EQ] = ACTIONS(6459), - [anon_sym_PIPE_EQ] = ACTIONS(6459), - [anon_sym_and_eq] = ACTIONS(6459), - [anon_sym_or_eq] = ACTIONS(6459), - [anon_sym_xor_eq] = ACTIONS(6459), - [anon_sym_LT_EQ_GT] = ACTIONS(6459), - [anon_sym_or] = ACTIONS(6457), - [anon_sym_and] = ACTIONS(6457), - [anon_sym_bitor] = ACTIONS(6459), - [anon_sym_xor] = ACTIONS(6457), - [anon_sym_bitand] = ACTIONS(6459), - [anon_sym_not_eq] = ACTIONS(6459), - [anon_sym_DASH_DASH] = ACTIONS(6459), - [anon_sym_PLUS_PLUS] = ACTIONS(6459), - [anon_sym_DOT] = ACTIONS(6457), - [anon_sym_DOT_STAR] = ACTIONS(6459), - [anon_sym_DASH_GT] = ACTIONS(6457), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6459), - [anon_sym_override] = ACTIONS(6459), - [anon_sym_requires] = ACTIONS(6459), - [anon_sym_DASH_GT_STAR] = ACTIONS(6459), + [sym_expression] = STATE(6504), + [sym__string] = STATE(6600), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5364), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5364), + [sym_call_expression] = STATE(5364), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5364), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5364), + [sym_char_literal] = STATE(6600), + [sym_concatenated_string] = STATE(6600), + [sym_string_literal] = STATE(5666), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(5666), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5364), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5364), + [sym_identifier] = ACTIONS(4680), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3750), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym___extension__] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4684), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(3752), + [anon_sym_compl] = ACTIONS(3752), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3766), + [anon_sym_u_SQUOTE] = ACTIONS(3766), + [anon_sym_U_SQUOTE] = ACTIONS(3766), + [anon_sym_u8_SQUOTE] = ACTIONS(3766), + [anon_sym_SQUOTE] = ACTIONS(3766), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1937)] = { - [sym_string_literal] = STATE(4004), - [sym_decltype_auto] = STATE(3014), - [sym_template_argument_list] = STATE(3170), - [sym_raw_string_literal] = STATE(4004), - [aux_sym_sized_type_specifier_repeat1] = STATE(3464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5262), - [anon_sym_PLUS] = ACTIONS(5262), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5262), - [anon_sym_PERCENT] = ACTIONS(5262), - [anon_sym_PIPE_PIPE] = ACTIONS(5255), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5262), - [anon_sym_CARET] = ACTIONS(5262), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5255), - [anon_sym_BANG_EQ] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5262), - [anon_sym_GT_EQ] = ACTIONS(5255), - [anon_sym_LT_EQ] = ACTIONS(5262), - [anon_sym_LT] = ACTIONS(6499), - [anon_sym_LT_LT] = ACTIONS(5262), - [anon_sym_GT_GT] = ACTIONS(5262), - [anon_sym___extension__] = ACTIONS(5258), - [anon_sym_COLON] = ACTIONS(5262), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(6503), - [anon_sym_unsigned] = ACTIONS(6503), - [anon_sym_long] = ACTIONS(6503), - [anon_sym_short] = ACTIONS(6503), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(6702), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5258), - [anon_sym_volatile] = ACTIONS(5258), - [anon_sym_restrict] = ACTIONS(5258), - [anon_sym___restrict__] = ACTIONS(5258), - [anon_sym__Atomic] = ACTIONS(5258), - [anon_sym__Noreturn] = ACTIONS(5258), - [anon_sym_noreturn] = ACTIONS(5258), - [anon_sym__Nonnull] = ACTIONS(5258), - [anon_sym_mutable] = ACTIONS(5258), - [anon_sym_constinit] = ACTIONS(5258), - [anon_sym_consteval] = ACTIONS(5258), - [anon_sym_alignas] = ACTIONS(5258), - [anon_sym__Alignas] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5255), - [anon_sym_STAR_EQ] = ACTIONS(6704), - [anon_sym_SLASH_EQ] = ACTIONS(6704), - [anon_sym_PERCENT_EQ] = ACTIONS(6704), - [anon_sym_PLUS_EQ] = ACTIONS(6704), - [anon_sym_DASH_EQ] = ACTIONS(6704), - [anon_sym_LT_LT_EQ] = ACTIONS(6704), - [anon_sym_GT_GT_EQ] = ACTIONS(6704), - [anon_sym_AMP_EQ] = ACTIONS(6704), - [anon_sym_CARET_EQ] = ACTIONS(6704), - [anon_sym_PIPE_EQ] = ACTIONS(6704), - [anon_sym_and_eq] = ACTIONS(6704), - [anon_sym_or_eq] = ACTIONS(6704), - [anon_sym_xor_eq] = ACTIONS(6704), - [anon_sym_LT_EQ_GT] = ACTIONS(5255), - [anon_sym_or] = ACTIONS(5262), - [anon_sym_and] = ACTIONS(5262), - [anon_sym_bitor] = ACTIONS(5255), - [anon_sym_xor] = ACTIONS(5262), - [anon_sym_bitand] = ACTIONS(5255), - [anon_sym_not_eq] = ACTIONS(5255), - [anon_sym_DASH_DASH] = ACTIONS(5255), - [anon_sym_PLUS_PLUS] = ACTIONS(5255), - [anon_sym_DOT] = ACTIONS(5262), - [anon_sym_DOT_STAR] = ACTIONS(5255), - [anon_sym_DASH_GT] = ACTIONS(5255), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6505), - [anon_sym_decltype] = ACTIONS(6507), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [sym_expression] = STATE(7184), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1938)] = { - [sym_string_literal] = STATE(5440), - [sym_decltype_auto] = STATE(4306), - [sym_template_argument_list] = STATE(4587), - [sym_raw_string_literal] = STATE(5440), - [aux_sym_sized_type_specifier_repeat1] = STATE(3914), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5260), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(6706), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym___extension__] = ACTIONS(5258), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(6688), - [anon_sym_unsigned] = ACTIONS(6688), - [anon_sym_long] = ACTIONS(6688), - [anon_sym_short] = ACTIONS(6688), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(6690), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5258), - [anon_sym_volatile] = ACTIONS(5258), - [anon_sym_restrict] = ACTIONS(5258), - [anon_sym___restrict__] = ACTIONS(5258), - [anon_sym__Atomic] = ACTIONS(5258), - [anon_sym__Noreturn] = ACTIONS(5258), - [anon_sym_noreturn] = ACTIONS(5258), - [anon_sym__Nonnull] = ACTIONS(5258), - [anon_sym_mutable] = ACTIONS(5258), - [anon_sym_constinit] = ACTIONS(5258), - [anon_sym_consteval] = ACTIONS(5258), - [anon_sym_alignas] = ACTIONS(5258), - [anon_sym__Alignas] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(6692), - [anon_sym_SLASH_EQ] = ACTIONS(6692), - [anon_sym_PERCENT_EQ] = ACTIONS(6692), - [anon_sym_PLUS_EQ] = ACTIONS(6692), - [anon_sym_DASH_EQ] = ACTIONS(6692), - [anon_sym_LT_LT_EQ] = ACTIONS(6692), - [anon_sym_GT_GT_EQ] = ACTIONS(6690), - [anon_sym_AMP_EQ] = ACTIONS(6692), - [anon_sym_CARET_EQ] = ACTIONS(6692), - [anon_sym_PIPE_EQ] = ACTIONS(6692), - [anon_sym_and_eq] = ACTIONS(6692), - [anon_sym_or_eq] = ACTIONS(6692), - [anon_sym_xor_eq] = ACTIONS(6692), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(6694), - [anon_sym_u_DQUOTE] = ACTIONS(6694), - [anon_sym_U_DQUOTE] = ACTIONS(6694), - [anon_sym_u8_DQUOTE] = ACTIONS(6694), - [anon_sym_DQUOTE] = ACTIONS(6694), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6696), - [anon_sym_decltype] = ACTIONS(6698), - [anon_sym_GT2] = ACTIONS(5255), - [anon_sym_R_DQUOTE] = ACTIONS(6700), - [anon_sym_LR_DQUOTE] = ACTIONS(6700), - [anon_sym_uR_DQUOTE] = ACTIONS(6700), - [anon_sym_UR_DQUOTE] = ACTIONS(6700), - [anon_sym_u8R_DQUOTE] = ACTIONS(6700), + [sym_expression] = STATE(7186), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1939)] = { - [sym_string_literal] = STATE(4004), - [sym_decltype_auto] = STATE(3014), - [sym_template_argument_list] = STATE(3170), - [sym_raw_string_literal] = STATE(4004), - [aux_sym_sized_type_specifier_repeat1] = STATE(3464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5255), - [anon_sym_COMMA] = ACTIONS(5255), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5262), - [anon_sym_PLUS] = ACTIONS(5262), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5262), - [anon_sym_PERCENT] = ACTIONS(5262), - [anon_sym_PIPE_PIPE] = ACTIONS(5255), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5262), - [anon_sym_CARET] = ACTIONS(5262), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5255), - [anon_sym_BANG_EQ] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5262), - [anon_sym_GT_EQ] = ACTIONS(5255), - [anon_sym_LT_EQ] = ACTIONS(5262), - [anon_sym_LT] = ACTIONS(6499), - [anon_sym_LT_LT] = ACTIONS(5262), - [anon_sym_GT_GT] = ACTIONS(5262), - [anon_sym___extension__] = ACTIONS(5258), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5255), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(6503), - [anon_sym_unsigned] = ACTIONS(6503), - [anon_sym_long] = ACTIONS(6503), - [anon_sym_short] = ACTIONS(6503), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(6709), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5258), - [anon_sym_volatile] = ACTIONS(5258), - [anon_sym_restrict] = ACTIONS(5258), - [anon_sym___restrict__] = ACTIONS(5258), - [anon_sym__Atomic] = ACTIONS(5258), - [anon_sym__Noreturn] = ACTIONS(5258), - [anon_sym_noreturn] = ACTIONS(5258), - [anon_sym__Nonnull] = ACTIONS(5258), - [anon_sym_mutable] = ACTIONS(5258), - [anon_sym_constinit] = ACTIONS(5258), - [anon_sym_consteval] = ACTIONS(5258), - [anon_sym_alignas] = ACTIONS(5258), - [anon_sym__Alignas] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5255), - [anon_sym_STAR_EQ] = ACTIONS(6711), - [anon_sym_SLASH_EQ] = ACTIONS(6711), - [anon_sym_PERCENT_EQ] = ACTIONS(6711), - [anon_sym_PLUS_EQ] = ACTIONS(6711), - [anon_sym_DASH_EQ] = ACTIONS(6711), - [anon_sym_LT_LT_EQ] = ACTIONS(6711), - [anon_sym_GT_GT_EQ] = ACTIONS(6711), - [anon_sym_AMP_EQ] = ACTIONS(6711), - [anon_sym_CARET_EQ] = ACTIONS(6711), - [anon_sym_PIPE_EQ] = ACTIONS(6711), - [anon_sym_and_eq] = ACTIONS(6711), - [anon_sym_or_eq] = ACTIONS(6711), - [anon_sym_xor_eq] = ACTIONS(6711), - [anon_sym_LT_EQ_GT] = ACTIONS(5255), - [anon_sym_or] = ACTIONS(5262), - [anon_sym_and] = ACTIONS(5262), - [anon_sym_bitor] = ACTIONS(5255), - [anon_sym_xor] = ACTIONS(5262), - [anon_sym_bitand] = ACTIONS(5255), - [anon_sym_not_eq] = ACTIONS(5255), - [anon_sym_DASH_DASH] = ACTIONS(5255), - [anon_sym_PLUS_PLUS] = ACTIONS(5255), - [anon_sym_DOT] = ACTIONS(5262), - [anon_sym_DOT_STAR] = ACTIONS(5255), - [anon_sym_DASH_GT] = ACTIONS(5255), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6505), - [anon_sym_decltype] = ACTIONS(6507), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [sym_expression] = STATE(7187), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1940)] = { - [sym_string_literal] = STATE(4004), - [sym_decltype_auto] = STATE(3014), - [sym_template_argument_list] = STATE(4876), - [sym_raw_string_literal] = STATE(4004), - [aux_sym_sized_type_specifier_repeat1] = STATE(3464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_RPAREN] = ACTIONS(5255), - [anon_sym_LPAREN2] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5262), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5262), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(6713), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym___extension__] = ACTIONS(5258), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_signed] = ACTIONS(6503), - [anon_sym_unsigned] = ACTIONS(6503), - [anon_sym_long] = ACTIONS(6503), - [anon_sym_short] = ACTIONS(6503), - [anon_sym_LBRACK] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(5276), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5258), - [anon_sym_volatile] = ACTIONS(5258), - [anon_sym_restrict] = ACTIONS(5258), - [anon_sym___restrict__] = ACTIONS(5258), - [anon_sym__Atomic] = ACTIONS(5258), - [anon_sym__Noreturn] = ACTIONS(5258), - [anon_sym_noreturn] = ACTIONS(5258), - [anon_sym__Nonnull] = ACTIONS(5258), - [anon_sym_mutable] = ACTIONS(5258), - [anon_sym_constinit] = ACTIONS(5258), - [anon_sym_consteval] = ACTIONS(5258), - [anon_sym_alignas] = ACTIONS(5258), - [anon_sym__Alignas] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5278), - [anon_sym_or_eq] = ACTIONS(5278), - [anon_sym_xor_eq] = ACTIONS(5278), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6505), - [anon_sym_decltype] = ACTIONS(6507), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [sym_expression] = STATE(7188), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1941)] = { - [sym_identifier] = ACTIONS(6716), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), - [anon_sym_COMMA] = ACTIONS(6718), - [anon_sym_RPAREN] = ACTIONS(6718), - [aux_sym_preproc_if_token2] = ACTIONS(6718), - [aux_sym_preproc_else_token1] = ACTIONS(6718), - [aux_sym_preproc_elif_token1] = ACTIONS(6716), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6718), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6718), - [anon_sym_LPAREN2] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6716), - [anon_sym_PLUS] = ACTIONS(6716), - [anon_sym_STAR] = ACTIONS(6716), - [anon_sym_SLASH] = ACTIONS(6716), - [anon_sym_PERCENT] = ACTIONS(6716), - [anon_sym_PIPE_PIPE] = ACTIONS(6718), - [anon_sym_AMP_AMP] = ACTIONS(6718), - [anon_sym_PIPE] = ACTIONS(6716), - [anon_sym_CARET] = ACTIONS(6716), - [anon_sym_AMP] = ACTIONS(6716), - [anon_sym_EQ_EQ] = ACTIONS(6718), - [anon_sym_BANG_EQ] = ACTIONS(6718), - [anon_sym_GT] = ACTIONS(6716), - [anon_sym_GT_EQ] = ACTIONS(6718), - [anon_sym_LT_EQ] = ACTIONS(6716), - [anon_sym_LT] = ACTIONS(6716), - [anon_sym_LT_LT] = ACTIONS(6716), - [anon_sym_GT_GT] = ACTIONS(6716), - [anon_sym_SEMI] = ACTIONS(6718), - [anon_sym___extension__] = ACTIONS(6716), - [anon_sym___attribute__] = ACTIONS(6716), - [anon_sym___attribute] = ACTIONS(6716), - [anon_sym_COLON] = ACTIONS(6716), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6718), - [anon_sym_LBRACE] = ACTIONS(6718), - [anon_sym_RBRACE] = ACTIONS(6718), - [anon_sym_signed] = ACTIONS(6716), - [anon_sym_unsigned] = ACTIONS(6716), - [anon_sym_long] = ACTIONS(6716), - [anon_sym_short] = ACTIONS(6716), - [anon_sym_LBRACK] = ACTIONS(6718), - [anon_sym_EQ] = ACTIONS(6716), - [anon_sym_const] = ACTIONS(6716), - [anon_sym_constexpr] = ACTIONS(6716), - [anon_sym_volatile] = ACTIONS(6716), - [anon_sym_restrict] = ACTIONS(6716), - [anon_sym___restrict__] = ACTIONS(6716), - [anon_sym__Atomic] = ACTIONS(6716), - [anon_sym__Noreturn] = ACTIONS(6716), - [anon_sym_noreturn] = ACTIONS(6716), - [anon_sym__Nonnull] = ACTIONS(6716), - [anon_sym_mutable] = ACTIONS(6716), - [anon_sym_constinit] = ACTIONS(6716), - [anon_sym_consteval] = ACTIONS(6716), - [anon_sym_alignas] = ACTIONS(6716), - [anon_sym__Alignas] = ACTIONS(6716), - [sym_primitive_type] = ACTIONS(6716), - [anon_sym_QMARK] = ACTIONS(6718), - [anon_sym_STAR_EQ] = ACTIONS(6718), - [anon_sym_SLASH_EQ] = ACTIONS(6718), - [anon_sym_PERCENT_EQ] = ACTIONS(6718), - [anon_sym_PLUS_EQ] = ACTIONS(6718), - [anon_sym_DASH_EQ] = ACTIONS(6718), - [anon_sym_LT_LT_EQ] = ACTIONS(6718), - [anon_sym_GT_GT_EQ] = ACTIONS(6718), - [anon_sym_AMP_EQ] = ACTIONS(6718), - [anon_sym_CARET_EQ] = ACTIONS(6718), - [anon_sym_PIPE_EQ] = ACTIONS(6718), - [anon_sym_and_eq] = ACTIONS(6716), - [anon_sym_or_eq] = ACTIONS(6716), - [anon_sym_xor_eq] = ACTIONS(6716), - [anon_sym_LT_EQ_GT] = ACTIONS(6718), - [anon_sym_or] = ACTIONS(6716), - [anon_sym_and] = ACTIONS(6716), - [anon_sym_bitor] = ACTIONS(6716), - [anon_sym_xor] = ACTIONS(6716), - [anon_sym_bitand] = ACTIONS(6716), - [anon_sym_not_eq] = ACTIONS(6716), - [anon_sym_DASH_DASH] = ACTIONS(6718), - [anon_sym_PLUS_PLUS] = ACTIONS(6718), - [anon_sym_DOT] = ACTIONS(6716), - [anon_sym_DOT_STAR] = ACTIONS(6718), - [anon_sym_DASH_GT] = ACTIONS(6718), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6716), - [anon_sym_override] = ACTIONS(6716), - [anon_sym_requires] = ACTIONS(6716), - [anon_sym_COLON_RBRACK] = ACTIONS(6718), + [sym_expression] = STATE(7189), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1942)] = { - [sym_identifier] = ACTIONS(2768), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), - [anon_sym_COMMA] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [aux_sym_preproc_if_token2] = ACTIONS(2758), - [aux_sym_preproc_else_token1] = ACTIONS(2758), - [aux_sym_preproc_elif_token1] = ACTIONS(2768), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2758), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2758), - [anon_sym_LPAREN2] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_SLASH] = ACTIONS(2768), - [anon_sym_PERCENT] = ACTIONS(2768), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2768), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_LT_EQ] = ACTIONS(2768), - [anon_sym_LT] = ACTIONS(2768), - [anon_sym_LT_LT] = ACTIONS(2768), - [anon_sym_GT_GT] = ACTIONS(2768), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym___extension__] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_COLON] = ACTIONS(2768), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2758), - [anon_sym_RBRACE] = ACTIONS(2758), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_EQ] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [anon_sym_QMARK] = ACTIONS(2758), - [anon_sym_STAR_EQ] = ACTIONS(2758), - [anon_sym_SLASH_EQ] = ACTIONS(2758), - [anon_sym_PERCENT_EQ] = ACTIONS(2758), - [anon_sym_PLUS_EQ] = ACTIONS(2758), - [anon_sym_DASH_EQ] = ACTIONS(2758), - [anon_sym_LT_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_GT_EQ] = ACTIONS(2758), - [anon_sym_AMP_EQ] = ACTIONS(2758), - [anon_sym_CARET_EQ] = ACTIONS(2758), - [anon_sym_PIPE_EQ] = ACTIONS(2758), - [anon_sym_and_eq] = ACTIONS(2768), - [anon_sym_or_eq] = ACTIONS(2768), - [anon_sym_xor_eq] = ACTIONS(2768), - [anon_sym_LT_EQ_GT] = ACTIONS(2758), - [anon_sym_or] = ACTIONS(2768), - [anon_sym_and] = ACTIONS(2768), - [anon_sym_bitor] = ACTIONS(2768), - [anon_sym_xor] = ACTIONS(2768), - [anon_sym_bitand] = ACTIONS(2768), - [anon_sym_not_eq] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2758), - [anon_sym_PLUS_PLUS] = ACTIONS(2758), - [anon_sym_asm] = ACTIONS(2768), - [anon_sym___asm__] = ACTIONS(2768), - [anon_sym___asm] = ACTIONS(2768), - [anon_sym_DOT] = ACTIONS(2768), - [anon_sym_DOT_STAR] = ACTIONS(2758), - [anon_sym_DASH_GT] = ACTIONS(2758), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2768), - [anon_sym_override] = ACTIONS(2768), - [anon_sym_noexcept] = ACTIONS(2768), - [anon_sym_throw] = ACTIONS(2768), - [anon_sym_requires] = ACTIONS(2768), - [anon_sym_COLON_RBRACK] = ACTIONS(2758), + [sym_expression] = STATE(6927), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1943)] = { - [sym_identifier] = ACTIONS(6720), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6722), - [anon_sym_COMMA] = ACTIONS(6722), - [anon_sym_RPAREN] = ACTIONS(6722), - [aux_sym_preproc_if_token2] = ACTIONS(6722), - [aux_sym_preproc_else_token1] = ACTIONS(6722), - [aux_sym_preproc_elif_token1] = ACTIONS(6720), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6722), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6722), - [anon_sym_LPAREN2] = ACTIONS(6722), - [anon_sym_DASH] = ACTIONS(6720), - [anon_sym_PLUS] = ACTIONS(6720), - [anon_sym_STAR] = ACTIONS(6720), - [anon_sym_SLASH] = ACTIONS(6720), - [anon_sym_PERCENT] = ACTIONS(6720), - [anon_sym_PIPE_PIPE] = ACTIONS(6722), - [anon_sym_AMP_AMP] = ACTIONS(6722), - [anon_sym_PIPE] = ACTIONS(6720), - [anon_sym_CARET] = ACTIONS(6720), - [anon_sym_AMP] = ACTIONS(6720), - [anon_sym_EQ_EQ] = ACTIONS(6722), - [anon_sym_BANG_EQ] = ACTIONS(6722), - [anon_sym_GT] = ACTIONS(6720), - [anon_sym_GT_EQ] = ACTIONS(6722), - [anon_sym_LT_EQ] = ACTIONS(6720), - [anon_sym_LT] = ACTIONS(6720), - [anon_sym_LT_LT] = ACTIONS(6720), - [anon_sym_GT_GT] = ACTIONS(6720), - [anon_sym_SEMI] = ACTIONS(6722), - [anon_sym___extension__] = ACTIONS(6720), - [anon_sym___attribute__] = ACTIONS(6720), - [anon_sym___attribute] = ACTIONS(6720), - [anon_sym_COLON] = ACTIONS(6720), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6722), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6722), - [anon_sym_RBRACE] = ACTIONS(6722), - [anon_sym_LBRACK] = ACTIONS(6720), - [anon_sym_EQ] = ACTIONS(6720), - [anon_sym_const] = ACTIONS(6720), - [anon_sym_constexpr] = ACTIONS(6720), - [anon_sym_volatile] = ACTIONS(6720), - [anon_sym_restrict] = ACTIONS(6720), - [anon_sym___restrict__] = ACTIONS(6720), - [anon_sym__Atomic] = ACTIONS(6720), - [anon_sym__Noreturn] = ACTIONS(6720), - [anon_sym_noreturn] = ACTIONS(6720), - [anon_sym__Nonnull] = ACTIONS(6720), - [anon_sym_mutable] = ACTIONS(6720), - [anon_sym_constinit] = ACTIONS(6720), - [anon_sym_consteval] = ACTIONS(6720), - [anon_sym_alignas] = ACTIONS(6720), - [anon_sym__Alignas] = ACTIONS(6720), - [anon_sym_QMARK] = ACTIONS(6722), - [anon_sym_STAR_EQ] = ACTIONS(6722), - [anon_sym_SLASH_EQ] = ACTIONS(6722), - [anon_sym_PERCENT_EQ] = ACTIONS(6722), - [anon_sym_PLUS_EQ] = ACTIONS(6722), - [anon_sym_DASH_EQ] = ACTIONS(6722), - [anon_sym_LT_LT_EQ] = ACTIONS(6722), - [anon_sym_GT_GT_EQ] = ACTIONS(6722), - [anon_sym_AMP_EQ] = ACTIONS(6722), - [anon_sym_CARET_EQ] = ACTIONS(6722), - [anon_sym_PIPE_EQ] = ACTIONS(6722), - [anon_sym_and_eq] = ACTIONS(6720), - [anon_sym_or_eq] = ACTIONS(6720), - [anon_sym_xor_eq] = ACTIONS(6720), - [anon_sym_LT_EQ_GT] = ACTIONS(6722), - [anon_sym_or] = ACTIONS(6720), - [anon_sym_and] = ACTIONS(6720), - [anon_sym_bitor] = ACTIONS(6720), - [anon_sym_xor] = ACTIONS(6720), - [anon_sym_bitand] = ACTIONS(6720), - [anon_sym_not_eq] = ACTIONS(6720), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_asm] = ACTIONS(6720), - [anon_sym___asm__] = ACTIONS(6720), - [anon_sym___asm] = ACTIONS(6720), - [anon_sym_DOT] = ACTIONS(6720), - [anon_sym_DOT_STAR] = ACTIONS(6722), - [anon_sym_DASH_GT] = ACTIONS(6722), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6720), - [anon_sym_override] = ACTIONS(6720), - [anon_sym_noexcept] = ACTIONS(6720), - [anon_sym_throw] = ACTIONS(6720), - [anon_sym_requires] = ACTIONS(6720), - [anon_sym_COLON_RBRACK] = ACTIONS(6722), + [sym_expression] = STATE(7113), + [sym__string] = STATE(6386), + [sym_conditional_expression] = STATE(6009), + [sym_assignment_expression] = STATE(6009), + [sym_pointer_expression] = STATE(5086), + [sym_unary_expression] = STATE(6009), + [sym_binary_expression] = STATE(6009), + [sym_update_expression] = STATE(6009), + [sym_cast_expression] = STATE(6009), + [sym_sizeof_expression] = STATE(6009), + [sym_alignof_expression] = STATE(6009), + [sym_offsetof_expression] = STATE(6009), + [sym_generic_expression] = STATE(6009), + [sym_subscript_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_gnu_asm_expression] = STATE(6009), + [sym_extension_expression] = STATE(6009), + [sym_field_expression] = STATE(5086), + [sym_compound_literal_expression] = STATE(6009), + [sym_parenthesized_expression] = STATE(5086), + [sym_char_literal] = STATE(6386), + [sym_concatenated_string] = STATE(6386), + [sym_string_literal] = STATE(4767), + [sym_null] = STATE(6009), + [sym_decltype] = STATE(10768), + [sym__class_name] = STATE(10231), + [sym_template_type] = STATE(3790), + [sym_template_function] = STATE(6009), + [sym_raw_string_literal] = STATE(4767), + [sym_co_await_expression] = STATE(6009), + [sym_new_expression] = STATE(6009), + [sym_delete_expression] = STATE(6009), + [sym_requires_clause] = STATE(6009), + [sym_requires_expression] = STATE(6009), + [sym_lambda_expression] = STATE(6009), + [sym_lambda_capture_specifier] = STATE(8001), + [sym_fold_expression] = STATE(6009), + [sym_parameter_pack_expansion] = STATE(6009), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7956), + [sym_qualified_identifier] = STATE(5086), + [sym_qualified_type_identifier] = STATE(10231), + [sym_reflect_expression] = STATE(6009), + [sym_splice_specifier] = STATE(5471), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(9393), + [sym_splice_expression] = STATE(5921), + [sym_user_defined_literal] = STATE(5086), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1670), + [sym_primitive_type] = ACTIONS(2598), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2600), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [sym_this] = ACTIONS(237), }, [STATE(1944)] = { - [sym_identifier] = ACTIONS(6270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6272), - [anon_sym_COMMA] = ACTIONS(6272), - [anon_sym_RPAREN] = ACTIONS(6272), - [anon_sym_LPAREN2] = ACTIONS(6272), - [anon_sym_TILDE] = ACTIONS(6272), - [anon_sym_DASH] = ACTIONS(6270), - [anon_sym_PLUS] = ACTIONS(6270), - [anon_sym_STAR] = ACTIONS(6270), - [anon_sym_SLASH] = ACTIONS(6270), - [anon_sym_PERCENT] = ACTIONS(6270), - [anon_sym_PIPE_PIPE] = ACTIONS(6272), - [anon_sym_AMP_AMP] = ACTIONS(6272), - [anon_sym_PIPE] = ACTIONS(6270), - [anon_sym_CARET] = ACTIONS(6270), - [anon_sym_AMP] = ACTIONS(6270), - [anon_sym_EQ_EQ] = ACTIONS(6272), - [anon_sym_BANG_EQ] = ACTIONS(6272), - [anon_sym_GT] = ACTIONS(6270), - [anon_sym_GT_EQ] = ACTIONS(6272), - [anon_sym_LT_EQ] = ACTIONS(6270), - [anon_sym_LT] = ACTIONS(6270), - [anon_sym_LT_LT] = ACTIONS(6270), - [anon_sym_GT_GT] = ACTIONS(6270), - [anon_sym___extension__] = ACTIONS(6270), - [anon_sym_virtual] = ACTIONS(6270), - [anon_sym_extern] = ACTIONS(6270), - [anon_sym___attribute__] = ACTIONS(6270), - [anon_sym___attribute] = ACTIONS(6270), - [anon_sym_COLON_COLON] = ACTIONS(6272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6272), - [anon_sym___declspec] = ACTIONS(6270), - [anon_sym___based] = ACTIONS(6270), - [anon_sym_LBRACE] = ACTIONS(6272), - [anon_sym_LBRACK] = ACTIONS(6270), - [anon_sym_static] = ACTIONS(6270), - [anon_sym_EQ] = ACTIONS(6270), - [anon_sym_register] = ACTIONS(6270), - [anon_sym_inline] = ACTIONS(6270), - [anon_sym___inline] = ACTIONS(6270), - [anon_sym___inline__] = ACTIONS(6270), - [anon_sym___forceinline] = ACTIONS(6270), - [anon_sym_thread_local] = ACTIONS(6270), - [anon_sym___thread] = ACTIONS(6270), - [anon_sym_const] = ACTIONS(6270), - [anon_sym_constexpr] = ACTIONS(6270), - [anon_sym_volatile] = ACTIONS(6270), - [anon_sym_restrict] = ACTIONS(6270), - [anon_sym___restrict__] = ACTIONS(6270), - [anon_sym__Atomic] = ACTIONS(6270), - [anon_sym__Noreturn] = ACTIONS(6270), - [anon_sym_noreturn] = ACTIONS(6270), - [anon_sym__Nonnull] = ACTIONS(6270), - [anon_sym_mutable] = ACTIONS(6270), - [anon_sym_constinit] = ACTIONS(6270), - [anon_sym_consteval] = ACTIONS(6270), - [anon_sym_alignas] = ACTIONS(6270), - [anon_sym__Alignas] = ACTIONS(6270), - [anon_sym_QMARK] = ACTIONS(6272), - [anon_sym_STAR_EQ] = ACTIONS(6272), - [anon_sym_SLASH_EQ] = ACTIONS(6272), - [anon_sym_PERCENT_EQ] = ACTIONS(6272), - [anon_sym_PLUS_EQ] = ACTIONS(6272), - [anon_sym_DASH_EQ] = ACTIONS(6272), - [anon_sym_LT_LT_EQ] = ACTIONS(6272), - [anon_sym_GT_GT_EQ] = ACTIONS(6272), - [anon_sym_AMP_EQ] = ACTIONS(6272), - [anon_sym_CARET_EQ] = ACTIONS(6272), - [anon_sym_PIPE_EQ] = ACTIONS(6272), - [anon_sym_LT_EQ_GT] = ACTIONS(6272), - [anon_sym_or] = ACTIONS(6270), - [anon_sym_and] = ACTIONS(6270), - [anon_sym_bitor] = ACTIONS(6270), - [anon_sym_xor] = ACTIONS(6270), - [anon_sym_bitand] = ACTIONS(6270), - [anon_sym_not_eq] = ACTIONS(6270), - [anon_sym_DASH_DASH] = ACTIONS(6272), - [anon_sym_PLUS_PLUS] = ACTIONS(6272), - [anon_sym_DOT] = ACTIONS(6270), - [anon_sym_DOT_STAR] = ACTIONS(6272), - [anon_sym_DASH_GT] = ACTIONS(6270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6270), - [anon_sym_decltype] = ACTIONS(6270), - [anon_sym_template] = ACTIONS(6270), - [anon_sym_operator] = ACTIONS(6270), - [anon_sym_DASH_GT_STAR] = ACTIONS(6272), - [anon_sym_LBRACK_COLON] = ACTIONS(6272), + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_ms_call_modifier] = STATE(8776), + [sym__abstract_declarator] = STATE(9331), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_abstract_function_declarator] = STATE(8596), + [sym_abstract_array_declarator] = STATE(8596), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_list] = STATE(4706), + [sym_parameter_declaration] = STATE(9892), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_explicit_object_parameter_declaration] = STATE(9892), + [sym_optional_parameter_declaration] = STATE(9892), + [sym_variadic_parameter_declaration] = STATE(9892), + [sym_abstract_reference_declarator] = STATE(8596), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6457), + [anon_sym_RPAREN] = ACTIONS(6459), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_STAR] = ACTIONS(6463), + [anon_sym_AMP_AMP] = ACTIONS(6465), + [anon_sym_AMP] = ACTIONS(6467), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(6471), + [anon_sym___clrcall] = ACTIONS(6471), + [anon_sym___stdcall] = ACTIONS(6471), + [anon_sym___fastcall] = ACTIONS(6471), + [anon_sym___thiscall] = ACTIONS(6471), + [anon_sym___vectorcall] = ACTIONS(6471), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6473), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5629), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_this] = ACTIONS(5631), }, [STATE(1945)] = { - [sym_identifier] = ACTIONS(6716), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), - [anon_sym_COMMA] = ACTIONS(6718), - [anon_sym_RPAREN] = ACTIONS(6718), - [aux_sym_preproc_if_token2] = ACTIONS(6718), - [aux_sym_preproc_else_token1] = ACTIONS(6718), - [aux_sym_preproc_elif_token1] = ACTIONS(6716), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6718), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6718), - [anon_sym_LPAREN2] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6716), - [anon_sym_PLUS] = ACTIONS(6716), - [anon_sym_STAR] = ACTIONS(6716), - [anon_sym_SLASH] = ACTIONS(6716), - [anon_sym_PERCENT] = ACTIONS(6716), - [anon_sym_PIPE_PIPE] = ACTIONS(6718), - [anon_sym_AMP_AMP] = ACTIONS(6718), - [anon_sym_PIPE] = ACTIONS(6716), - [anon_sym_CARET] = ACTIONS(6716), - [anon_sym_AMP] = ACTIONS(6716), - [anon_sym_EQ_EQ] = ACTIONS(6718), - [anon_sym_BANG_EQ] = ACTIONS(6718), - [anon_sym_GT] = ACTIONS(6716), - [anon_sym_GT_EQ] = ACTIONS(6718), - [anon_sym_LT_EQ] = ACTIONS(6716), - [anon_sym_LT] = ACTIONS(6716), - [anon_sym_LT_LT] = ACTIONS(6716), - [anon_sym_GT_GT] = ACTIONS(6716), - [anon_sym_SEMI] = ACTIONS(6718), - [anon_sym___extension__] = ACTIONS(6716), - [anon_sym___attribute__] = ACTIONS(6716), - [anon_sym___attribute] = ACTIONS(6716), - [anon_sym_COLON] = ACTIONS(6716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6718), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6718), - [anon_sym_RBRACE] = ACTIONS(6718), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_EQ] = ACTIONS(6716), - [anon_sym_const] = ACTIONS(6716), - [anon_sym_constexpr] = ACTIONS(6716), - [anon_sym_volatile] = ACTIONS(6716), - [anon_sym_restrict] = ACTIONS(6716), - [anon_sym___restrict__] = ACTIONS(6716), - [anon_sym__Atomic] = ACTIONS(6716), - [anon_sym__Noreturn] = ACTIONS(6716), - [anon_sym_noreturn] = ACTIONS(6716), - [anon_sym__Nonnull] = ACTIONS(6716), - [anon_sym_mutable] = ACTIONS(6716), - [anon_sym_constinit] = ACTIONS(6716), - [anon_sym_consteval] = ACTIONS(6716), - [anon_sym_alignas] = ACTIONS(6716), - [anon_sym__Alignas] = ACTIONS(6716), - [anon_sym_QMARK] = ACTIONS(6718), - [anon_sym_STAR_EQ] = ACTIONS(6718), - [anon_sym_SLASH_EQ] = ACTIONS(6718), - [anon_sym_PERCENT_EQ] = ACTIONS(6718), - [anon_sym_PLUS_EQ] = ACTIONS(6718), - [anon_sym_DASH_EQ] = ACTIONS(6718), - [anon_sym_LT_LT_EQ] = ACTIONS(6718), - [anon_sym_GT_GT_EQ] = ACTIONS(6718), - [anon_sym_AMP_EQ] = ACTIONS(6718), - [anon_sym_CARET_EQ] = ACTIONS(6718), - [anon_sym_PIPE_EQ] = ACTIONS(6718), - [anon_sym_and_eq] = ACTIONS(6716), - [anon_sym_or_eq] = ACTIONS(6716), - [anon_sym_xor_eq] = ACTIONS(6716), - [anon_sym_LT_EQ_GT] = ACTIONS(6718), - [anon_sym_or] = ACTIONS(6716), - [anon_sym_and] = ACTIONS(6716), - [anon_sym_bitor] = ACTIONS(6716), - [anon_sym_xor] = ACTIONS(6716), - [anon_sym_bitand] = ACTIONS(6716), - [anon_sym_not_eq] = ACTIONS(6716), - [anon_sym_DASH_DASH] = ACTIONS(6718), - [anon_sym_PLUS_PLUS] = ACTIONS(6718), - [anon_sym_asm] = ACTIONS(6716), - [anon_sym___asm__] = ACTIONS(6716), - [anon_sym___asm] = ACTIONS(6716), - [anon_sym_DOT] = ACTIONS(6716), - [anon_sym_DOT_STAR] = ACTIONS(6718), - [anon_sym_DASH_GT] = ACTIONS(6718), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6716), - [anon_sym_override] = ACTIONS(6716), - [anon_sym_noexcept] = ACTIONS(6716), - [anon_sym_throw] = ACTIONS(6716), - [anon_sym_requires] = ACTIONS(6716), - [anon_sym_COLON_RBRACK] = ACTIONS(6718), + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_ms_call_modifier] = STATE(8783), + [sym__abstract_declarator] = STATE(9321), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_abstract_function_declarator] = STATE(8596), + [sym_abstract_array_declarator] = STATE(8596), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_list] = STATE(4706), + [sym_parameter_declaration] = STATE(9734), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_explicit_object_parameter_declaration] = STATE(9734), + [sym_optional_parameter_declaration] = STATE(9734), + [sym_variadic_parameter_declaration] = STATE(9734), + [sym_abstract_reference_declarator] = STATE(8596), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6475), + [anon_sym_RPAREN] = ACTIONS(6477), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_STAR] = ACTIONS(6463), + [anon_sym_AMP_AMP] = ACTIONS(6465), + [anon_sym_AMP] = ACTIONS(6467), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(6471), + [anon_sym___clrcall] = ACTIONS(6471), + [anon_sym___stdcall] = ACTIONS(6471), + [anon_sym___fastcall] = ACTIONS(6471), + [anon_sym___thiscall] = ACTIONS(6471), + [anon_sym___vectorcall] = ACTIONS(6471), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6473), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5629), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_this] = ACTIONS(5631), }, [STATE(1946)] = { - [sym_identifier] = ACTIONS(6242), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), - [anon_sym_COMMA] = ACTIONS(6244), - [anon_sym_RPAREN] = ACTIONS(6244), - [anon_sym_LPAREN2] = ACTIONS(6244), - [anon_sym_TILDE] = ACTIONS(6244), - [anon_sym_DASH] = ACTIONS(6242), - [anon_sym_PLUS] = ACTIONS(6242), - [anon_sym_STAR] = ACTIONS(6242), - [anon_sym_SLASH] = ACTIONS(6242), - [anon_sym_PERCENT] = ACTIONS(6242), - [anon_sym_PIPE_PIPE] = ACTIONS(6244), - [anon_sym_AMP_AMP] = ACTIONS(6244), - [anon_sym_PIPE] = ACTIONS(6242), - [anon_sym_CARET] = ACTIONS(6242), - [anon_sym_AMP] = ACTIONS(6242), - [anon_sym_EQ_EQ] = ACTIONS(6244), - [anon_sym_BANG_EQ] = ACTIONS(6244), - [anon_sym_GT] = ACTIONS(6242), - [anon_sym_GT_EQ] = ACTIONS(6244), - [anon_sym_LT_EQ] = ACTIONS(6242), - [anon_sym_LT] = ACTIONS(6242), - [anon_sym_LT_LT] = ACTIONS(6242), - [anon_sym_GT_GT] = ACTIONS(6242), - [anon_sym___extension__] = ACTIONS(6242), - [anon_sym_virtual] = ACTIONS(6242), - [anon_sym_extern] = ACTIONS(6242), - [anon_sym___attribute__] = ACTIONS(6242), - [anon_sym___attribute] = ACTIONS(6242), - [anon_sym_COLON_COLON] = ACTIONS(6244), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6244), - [anon_sym___declspec] = ACTIONS(6242), - [anon_sym___based] = ACTIONS(6242), - [anon_sym_LBRACE] = ACTIONS(6244), - [anon_sym_LBRACK] = ACTIONS(6242), - [anon_sym_static] = ACTIONS(6242), - [anon_sym_EQ] = ACTIONS(6242), - [anon_sym_register] = ACTIONS(6242), - [anon_sym_inline] = ACTIONS(6242), - [anon_sym___inline] = ACTIONS(6242), - [anon_sym___inline__] = ACTIONS(6242), - [anon_sym___forceinline] = ACTIONS(6242), - [anon_sym_thread_local] = ACTIONS(6242), - [anon_sym___thread] = ACTIONS(6242), - [anon_sym_const] = ACTIONS(6242), - [anon_sym_constexpr] = ACTIONS(6242), - [anon_sym_volatile] = ACTIONS(6242), - [anon_sym_restrict] = ACTIONS(6242), - [anon_sym___restrict__] = ACTIONS(6242), - [anon_sym__Atomic] = ACTIONS(6242), - [anon_sym__Noreturn] = ACTIONS(6242), - [anon_sym_noreturn] = ACTIONS(6242), - [anon_sym__Nonnull] = ACTIONS(6242), - [anon_sym_mutable] = ACTIONS(6242), - [anon_sym_constinit] = ACTIONS(6242), - [anon_sym_consteval] = ACTIONS(6242), - [anon_sym_alignas] = ACTIONS(6242), - [anon_sym__Alignas] = ACTIONS(6242), - [anon_sym_QMARK] = ACTIONS(6244), - [anon_sym_STAR_EQ] = ACTIONS(6244), - [anon_sym_SLASH_EQ] = ACTIONS(6244), - [anon_sym_PERCENT_EQ] = ACTIONS(6244), - [anon_sym_PLUS_EQ] = ACTIONS(6244), - [anon_sym_DASH_EQ] = ACTIONS(6244), - [anon_sym_LT_LT_EQ] = ACTIONS(6244), - [anon_sym_GT_GT_EQ] = ACTIONS(6244), - [anon_sym_AMP_EQ] = ACTIONS(6244), - [anon_sym_CARET_EQ] = ACTIONS(6244), - [anon_sym_PIPE_EQ] = ACTIONS(6244), - [anon_sym_LT_EQ_GT] = ACTIONS(6244), - [anon_sym_or] = ACTIONS(6242), - [anon_sym_and] = ACTIONS(6242), - [anon_sym_bitor] = ACTIONS(6242), - [anon_sym_xor] = ACTIONS(6242), - [anon_sym_bitand] = ACTIONS(6242), - [anon_sym_not_eq] = ACTIONS(6242), - [anon_sym_DASH_DASH] = ACTIONS(6244), - [anon_sym_PLUS_PLUS] = ACTIONS(6244), - [anon_sym_DOT] = ACTIONS(6242), - [anon_sym_DOT_STAR] = ACTIONS(6244), - [anon_sym_DASH_GT] = ACTIONS(6242), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6242), - [anon_sym_decltype] = ACTIONS(6242), - [anon_sym_template] = ACTIONS(6242), - [anon_sym_operator] = ACTIONS(6242), - [anon_sym_DASH_GT_STAR] = ACTIONS(6244), - [anon_sym_LBRACK_COLON] = ACTIONS(6244), + [sym_attribute_specifier] = STATE(1984), + [sym_attribute_declaration] = STATE(3125), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2059), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym_ref_qualifier] = STATE(2309), + [sym__function_attributes_start] = STATE(2247), + [sym__function_exception_specification] = STATE(2566), + [sym__function_attributes_end] = STATE(3918), + [sym__function_postfix] = STATE(3601), + [sym_trailing_return_type] = STATE(2994), + [sym_noexcept] = STATE(2566), + [sym_throw_specifier] = STATE(2566), + [sym_requires_clause] = STATE(3601), + [aux_sym_type_definition_repeat1] = STATE(1984), + [aux_sym__type_definition_type_repeat1] = STATE(2001), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(6479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), + [anon_sym_COMMA] = ACTIONS(6481), + [aux_sym_preproc_if_token2] = ACTIONS(6481), + [aux_sym_preproc_else_token1] = ACTIONS(6481), + [aux_sym_preproc_elif_token1] = ACTIONS(6479), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6481), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_PLUS] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6479), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_PERCENT] = ACTIONS(6479), + [anon_sym_PIPE_PIPE] = ACTIONS(6481), + [anon_sym_AMP_AMP] = ACTIONS(6483), + [anon_sym_PIPE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6479), + [anon_sym_AMP] = ACTIONS(6486), + [anon_sym_EQ_EQ] = ACTIONS(6481), + [anon_sym_BANG_EQ] = ACTIONS(6481), + [anon_sym_GT] = ACTIONS(6479), + [anon_sym_GT_EQ] = ACTIONS(6481), + [anon_sym_LT_EQ] = ACTIONS(6479), + [anon_sym_LT] = ACTIONS(6479), + [anon_sym_LT_LT] = ACTIONS(6479), + [anon_sym_GT_GT] = ACTIONS(6479), + [anon_sym___extension__] = ACTIONS(6489), + [anon_sym___attribute__] = ACTIONS(6491), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_EQ] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(6489), + [anon_sym_constexpr] = ACTIONS(6489), + [anon_sym_volatile] = ACTIONS(6489), + [anon_sym_restrict] = ACTIONS(6489), + [anon_sym___restrict__] = ACTIONS(6489), + [anon_sym__Atomic] = ACTIONS(6489), + [anon_sym__Noreturn] = ACTIONS(6489), + [anon_sym_noreturn] = ACTIONS(6489), + [anon_sym__Nonnull] = ACTIONS(6489), + [anon_sym_mutable] = ACTIONS(6489), + [anon_sym_constinit] = ACTIONS(6489), + [anon_sym_consteval] = ACTIONS(6489), + [anon_sym_alignas] = ACTIONS(6495), + [anon_sym__Alignas] = ACTIONS(6495), + [anon_sym_QMARK] = ACTIONS(6481), + [anon_sym_STAR_EQ] = ACTIONS(6481), + [anon_sym_SLASH_EQ] = ACTIONS(6481), + [anon_sym_PERCENT_EQ] = ACTIONS(6481), + [anon_sym_PLUS_EQ] = ACTIONS(6481), + [anon_sym_DASH_EQ] = ACTIONS(6481), + [anon_sym_LT_LT_EQ] = ACTIONS(6481), + [anon_sym_GT_GT_EQ] = ACTIONS(6481), + [anon_sym_AMP_EQ] = ACTIONS(6481), + [anon_sym_CARET_EQ] = ACTIONS(6481), + [anon_sym_PIPE_EQ] = ACTIONS(6481), + [anon_sym_and_eq] = ACTIONS(6479), + [anon_sym_or_eq] = ACTIONS(6479), + [anon_sym_xor_eq] = ACTIONS(6479), + [anon_sym_LT_EQ_GT] = ACTIONS(6481), + [anon_sym_or] = ACTIONS(6479), + [anon_sym_and] = ACTIONS(6479), + [anon_sym_bitor] = ACTIONS(6479), + [anon_sym_xor] = ACTIONS(6479), + [anon_sym_bitand] = ACTIONS(6479), + [anon_sym_not_eq] = ACTIONS(6479), + [anon_sym_DASH_DASH] = ACTIONS(6481), + [anon_sym_PLUS_PLUS] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6497), + [anon_sym___asm__] = ACTIONS(6497), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6479), + [anon_sym_DOT_STAR] = ACTIONS(6481), + [anon_sym_DASH_GT] = ACTIONS(6499), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6502), + [anon_sym_override] = ACTIONS(6502), + [anon_sym_noexcept] = ACTIONS(6504), + [anon_sym_throw] = ACTIONS(6506), + [anon_sym_requires] = ACTIONS(6508), }, [STATE(1947)] = { - [sym_identifier] = ACTIONS(6246), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6248), - [anon_sym_COMMA] = ACTIONS(6248), - [anon_sym_RPAREN] = ACTIONS(6248), - [anon_sym_LPAREN2] = ACTIONS(6248), - [anon_sym_TILDE] = ACTIONS(6248), - [anon_sym_DASH] = ACTIONS(6246), - [anon_sym_PLUS] = ACTIONS(6246), - [anon_sym_STAR] = ACTIONS(6246), - [anon_sym_SLASH] = ACTIONS(6246), - [anon_sym_PERCENT] = ACTIONS(6246), - [anon_sym_PIPE_PIPE] = ACTIONS(6248), - [anon_sym_AMP_AMP] = ACTIONS(6248), - [anon_sym_PIPE] = ACTIONS(6246), - [anon_sym_CARET] = ACTIONS(6246), - [anon_sym_AMP] = ACTIONS(6246), - [anon_sym_EQ_EQ] = ACTIONS(6248), - [anon_sym_BANG_EQ] = ACTIONS(6248), - [anon_sym_GT] = ACTIONS(6246), - [anon_sym_GT_EQ] = ACTIONS(6248), - [anon_sym_LT_EQ] = ACTIONS(6246), - [anon_sym_LT] = ACTIONS(6246), - [anon_sym_LT_LT] = ACTIONS(6246), - [anon_sym_GT_GT] = ACTIONS(6246), - [anon_sym___extension__] = ACTIONS(6246), - [anon_sym_virtual] = ACTIONS(6246), - [anon_sym_extern] = ACTIONS(6246), - [anon_sym___attribute__] = ACTIONS(6246), - [anon_sym___attribute] = ACTIONS(6246), - [anon_sym_COLON_COLON] = ACTIONS(6248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6248), - [anon_sym___declspec] = ACTIONS(6246), - [anon_sym___based] = ACTIONS(6246), - [anon_sym_LBRACE] = ACTIONS(6248), - [anon_sym_LBRACK] = ACTIONS(6246), - [anon_sym_static] = ACTIONS(6246), - [anon_sym_EQ] = ACTIONS(6246), - [anon_sym_register] = ACTIONS(6246), - [anon_sym_inline] = ACTIONS(6246), - [anon_sym___inline] = ACTIONS(6246), - [anon_sym___inline__] = ACTIONS(6246), - [anon_sym___forceinline] = ACTIONS(6246), - [anon_sym_thread_local] = ACTIONS(6246), - [anon_sym___thread] = ACTIONS(6246), - [anon_sym_const] = ACTIONS(6246), - [anon_sym_constexpr] = ACTIONS(6246), - [anon_sym_volatile] = ACTIONS(6246), - [anon_sym_restrict] = ACTIONS(6246), - [anon_sym___restrict__] = ACTIONS(6246), - [anon_sym__Atomic] = ACTIONS(6246), - [anon_sym__Noreturn] = ACTIONS(6246), - [anon_sym_noreturn] = ACTIONS(6246), - [anon_sym__Nonnull] = ACTIONS(6246), - [anon_sym_mutable] = ACTIONS(6246), - [anon_sym_constinit] = ACTIONS(6246), - [anon_sym_consteval] = ACTIONS(6246), - [anon_sym_alignas] = ACTIONS(6246), - [anon_sym__Alignas] = ACTIONS(6246), - [anon_sym_QMARK] = ACTIONS(6248), - [anon_sym_STAR_EQ] = ACTIONS(6248), - [anon_sym_SLASH_EQ] = ACTIONS(6248), - [anon_sym_PERCENT_EQ] = ACTIONS(6248), - [anon_sym_PLUS_EQ] = ACTIONS(6248), - [anon_sym_DASH_EQ] = ACTIONS(6248), - [anon_sym_LT_LT_EQ] = ACTIONS(6248), - [anon_sym_GT_GT_EQ] = ACTIONS(6248), - [anon_sym_AMP_EQ] = ACTIONS(6248), - [anon_sym_CARET_EQ] = ACTIONS(6248), - [anon_sym_PIPE_EQ] = ACTIONS(6248), - [anon_sym_LT_EQ_GT] = ACTIONS(6248), - [anon_sym_or] = ACTIONS(6246), - [anon_sym_and] = ACTIONS(6246), - [anon_sym_bitor] = ACTIONS(6246), - [anon_sym_xor] = ACTIONS(6246), - [anon_sym_bitand] = ACTIONS(6246), - [anon_sym_not_eq] = ACTIONS(6246), - [anon_sym_DASH_DASH] = ACTIONS(6248), - [anon_sym_PLUS_PLUS] = ACTIONS(6248), - [anon_sym_DOT] = ACTIONS(6246), - [anon_sym_DOT_STAR] = ACTIONS(6248), - [anon_sym_DASH_GT] = ACTIONS(6246), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6246), - [anon_sym_decltype] = ACTIONS(6246), - [anon_sym_template] = ACTIONS(6246), - [anon_sym_operator] = ACTIONS(6246), - [anon_sym_DASH_GT_STAR] = ACTIONS(6248), - [anon_sym_LBRACK_COLON] = ACTIONS(6248), + [sym_attribute_specifier] = STATE(1984), + [sym_attribute_declaration] = STATE(3125), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2059), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym_ref_qualifier] = STATE(2311), + [sym__function_attributes_start] = STATE(2248), + [sym__function_exception_specification] = STATE(2573), + [sym__function_attributes_end] = STATE(3922), + [sym__function_postfix] = STATE(3601), + [sym_trailing_return_type] = STATE(3074), + [sym_noexcept] = STATE(2573), + [sym_throw_specifier] = STATE(2573), + [sym_requires_clause] = STATE(3601), + [aux_sym_type_definition_repeat1] = STATE(1984), + [aux_sym__type_definition_type_repeat1] = STATE(2001), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(6479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), + [anon_sym_COMMA] = ACTIONS(6481), + [aux_sym_preproc_if_token2] = ACTIONS(6481), + [aux_sym_preproc_else_token1] = ACTIONS(6481), + [aux_sym_preproc_elif_token1] = ACTIONS(6479), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6481), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_PLUS] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6479), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_PERCENT] = ACTIONS(6479), + [anon_sym_PIPE_PIPE] = ACTIONS(6481), + [anon_sym_AMP_AMP] = ACTIONS(6483), + [anon_sym_PIPE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6479), + [anon_sym_AMP] = ACTIONS(6486), + [anon_sym_EQ_EQ] = ACTIONS(6481), + [anon_sym_BANG_EQ] = ACTIONS(6481), + [anon_sym_GT] = ACTIONS(6479), + [anon_sym_GT_EQ] = ACTIONS(6481), + [anon_sym_LT_EQ] = ACTIONS(6479), + [anon_sym_LT] = ACTIONS(6479), + [anon_sym_LT_LT] = ACTIONS(6479), + [anon_sym_GT_GT] = ACTIONS(6479), + [anon_sym___extension__] = ACTIONS(6489), + [anon_sym___attribute__] = ACTIONS(6491), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_EQ] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(6489), + [anon_sym_constexpr] = ACTIONS(6489), + [anon_sym_volatile] = ACTIONS(6489), + [anon_sym_restrict] = ACTIONS(6489), + [anon_sym___restrict__] = ACTIONS(6489), + [anon_sym__Atomic] = ACTIONS(6489), + [anon_sym__Noreturn] = ACTIONS(6489), + [anon_sym_noreturn] = ACTIONS(6489), + [anon_sym__Nonnull] = ACTIONS(6489), + [anon_sym_mutable] = ACTIONS(6489), + [anon_sym_constinit] = ACTIONS(6489), + [anon_sym_consteval] = ACTIONS(6489), + [anon_sym_alignas] = ACTIONS(6495), + [anon_sym__Alignas] = ACTIONS(6495), + [anon_sym_QMARK] = ACTIONS(6481), + [anon_sym_STAR_EQ] = ACTIONS(6481), + [anon_sym_SLASH_EQ] = ACTIONS(6481), + [anon_sym_PERCENT_EQ] = ACTIONS(6481), + [anon_sym_PLUS_EQ] = ACTIONS(6481), + [anon_sym_DASH_EQ] = ACTIONS(6481), + [anon_sym_LT_LT_EQ] = ACTIONS(6481), + [anon_sym_GT_GT_EQ] = ACTIONS(6481), + [anon_sym_AMP_EQ] = ACTIONS(6481), + [anon_sym_CARET_EQ] = ACTIONS(6481), + [anon_sym_PIPE_EQ] = ACTIONS(6481), + [anon_sym_and_eq] = ACTIONS(6479), + [anon_sym_or_eq] = ACTIONS(6479), + [anon_sym_xor_eq] = ACTIONS(6479), + [anon_sym_LT_EQ_GT] = ACTIONS(6481), + [anon_sym_or] = ACTIONS(6479), + [anon_sym_and] = ACTIONS(6479), + [anon_sym_bitor] = ACTIONS(6479), + [anon_sym_xor] = ACTIONS(6479), + [anon_sym_bitand] = ACTIONS(6479), + [anon_sym_not_eq] = ACTIONS(6479), + [anon_sym_DASH_DASH] = ACTIONS(6481), + [anon_sym_PLUS_PLUS] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6497), + [anon_sym___asm__] = ACTIONS(6497), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6479), + [anon_sym_DOT_STAR] = ACTIONS(6481), + [anon_sym_DASH_GT] = ACTIONS(6499), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6510), + [anon_sym_override] = ACTIONS(6510), + [anon_sym_noexcept] = ACTIONS(6504), + [anon_sym_throw] = ACTIONS(6506), + [anon_sym_requires] = ACTIONS(6513), }, [STATE(1948)] = { - [sym_identifier] = ACTIONS(6250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6252), - [anon_sym_COMMA] = ACTIONS(6252), - [anon_sym_RPAREN] = ACTIONS(6252), - [anon_sym_LPAREN2] = ACTIONS(6252), - [anon_sym_TILDE] = ACTIONS(6252), - [anon_sym_DASH] = ACTIONS(6250), - [anon_sym_PLUS] = ACTIONS(6250), - [anon_sym_STAR] = ACTIONS(6250), - [anon_sym_SLASH] = ACTIONS(6250), - [anon_sym_PERCENT] = ACTIONS(6250), - [anon_sym_PIPE_PIPE] = ACTIONS(6252), - [anon_sym_AMP_AMP] = ACTIONS(6252), - [anon_sym_PIPE] = ACTIONS(6250), - [anon_sym_CARET] = ACTIONS(6250), - [anon_sym_AMP] = ACTIONS(6250), - [anon_sym_EQ_EQ] = ACTIONS(6252), - [anon_sym_BANG_EQ] = ACTIONS(6252), - [anon_sym_GT] = ACTIONS(6250), - [anon_sym_GT_EQ] = ACTIONS(6252), - [anon_sym_LT_EQ] = ACTIONS(6250), - [anon_sym_LT] = ACTIONS(6250), - [anon_sym_LT_LT] = ACTIONS(6250), - [anon_sym_GT_GT] = ACTIONS(6250), - [anon_sym___extension__] = ACTIONS(6250), - [anon_sym_virtual] = ACTIONS(6250), - [anon_sym_extern] = ACTIONS(6250), - [anon_sym___attribute__] = ACTIONS(6250), - [anon_sym___attribute] = ACTIONS(6250), - [anon_sym_COLON_COLON] = ACTIONS(6252), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6252), - [anon_sym___declspec] = ACTIONS(6250), - [anon_sym___based] = ACTIONS(6250), - [anon_sym_LBRACE] = ACTIONS(6252), - [anon_sym_LBRACK] = ACTIONS(6250), - [anon_sym_static] = ACTIONS(6250), - [anon_sym_EQ] = ACTIONS(6250), - [anon_sym_register] = ACTIONS(6250), - [anon_sym_inline] = ACTIONS(6250), - [anon_sym___inline] = ACTIONS(6250), - [anon_sym___inline__] = ACTIONS(6250), - [anon_sym___forceinline] = ACTIONS(6250), - [anon_sym_thread_local] = ACTIONS(6250), - [anon_sym___thread] = ACTIONS(6250), - [anon_sym_const] = ACTIONS(6250), - [anon_sym_constexpr] = ACTIONS(6250), - [anon_sym_volatile] = ACTIONS(6250), - [anon_sym_restrict] = ACTIONS(6250), - [anon_sym___restrict__] = ACTIONS(6250), - [anon_sym__Atomic] = ACTIONS(6250), - [anon_sym__Noreturn] = ACTIONS(6250), - [anon_sym_noreturn] = ACTIONS(6250), - [anon_sym__Nonnull] = ACTIONS(6250), - [anon_sym_mutable] = ACTIONS(6250), - [anon_sym_constinit] = ACTIONS(6250), - [anon_sym_consteval] = ACTIONS(6250), - [anon_sym_alignas] = ACTIONS(6250), - [anon_sym__Alignas] = ACTIONS(6250), - [anon_sym_QMARK] = ACTIONS(6252), - [anon_sym_STAR_EQ] = ACTIONS(6252), - [anon_sym_SLASH_EQ] = ACTIONS(6252), - [anon_sym_PERCENT_EQ] = ACTIONS(6252), - [anon_sym_PLUS_EQ] = ACTIONS(6252), - [anon_sym_DASH_EQ] = ACTIONS(6252), - [anon_sym_LT_LT_EQ] = ACTIONS(6252), - [anon_sym_GT_GT_EQ] = ACTIONS(6252), - [anon_sym_AMP_EQ] = ACTIONS(6252), - [anon_sym_CARET_EQ] = ACTIONS(6252), - [anon_sym_PIPE_EQ] = ACTIONS(6252), - [anon_sym_LT_EQ_GT] = ACTIONS(6252), - [anon_sym_or] = ACTIONS(6250), - [anon_sym_and] = ACTIONS(6250), - [anon_sym_bitor] = ACTIONS(6250), - [anon_sym_xor] = ACTIONS(6250), - [anon_sym_bitand] = ACTIONS(6250), - [anon_sym_not_eq] = ACTIONS(6250), - [anon_sym_DASH_DASH] = ACTIONS(6252), - [anon_sym_PLUS_PLUS] = ACTIONS(6252), - [anon_sym_DOT] = ACTIONS(6250), - [anon_sym_DOT_STAR] = ACTIONS(6252), - [anon_sym_DASH_GT] = ACTIONS(6250), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6250), - [anon_sym_decltype] = ACTIONS(6250), - [anon_sym_template] = ACTIONS(6250), - [anon_sym_operator] = ACTIONS(6250), - [anon_sym_DASH_GT_STAR] = ACTIONS(6252), - [anon_sym_LBRACK_COLON] = ACTIONS(6252), - }, - [STATE(1949)] = { - [sym_identifier] = ACTIONS(6254), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6256), - [anon_sym_COMMA] = ACTIONS(6256), - [anon_sym_RPAREN] = ACTIONS(6256), - [anon_sym_LPAREN2] = ACTIONS(6256), - [anon_sym_TILDE] = ACTIONS(6256), - [anon_sym_DASH] = ACTIONS(6254), - [anon_sym_PLUS] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(6254), - [anon_sym_SLASH] = ACTIONS(6254), - [anon_sym_PERCENT] = ACTIONS(6254), - [anon_sym_PIPE_PIPE] = ACTIONS(6256), - [anon_sym_AMP_AMP] = ACTIONS(6256), - [anon_sym_PIPE] = ACTIONS(6254), - [anon_sym_CARET] = ACTIONS(6254), - [anon_sym_AMP] = ACTIONS(6254), - [anon_sym_EQ_EQ] = ACTIONS(6256), - [anon_sym_BANG_EQ] = ACTIONS(6256), - [anon_sym_GT] = ACTIONS(6254), - [anon_sym_GT_EQ] = ACTIONS(6256), - [anon_sym_LT_EQ] = ACTIONS(6254), - [anon_sym_LT] = ACTIONS(6254), - [anon_sym_LT_LT] = ACTIONS(6254), - [anon_sym_GT_GT] = ACTIONS(6254), - [anon_sym___extension__] = ACTIONS(6254), - [anon_sym_virtual] = ACTIONS(6254), - [anon_sym_extern] = ACTIONS(6254), - [anon_sym___attribute__] = ACTIONS(6254), - [anon_sym___attribute] = ACTIONS(6254), - [anon_sym_COLON_COLON] = ACTIONS(6256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6256), - [anon_sym___declspec] = ACTIONS(6254), - [anon_sym___based] = ACTIONS(6254), - [anon_sym_LBRACE] = ACTIONS(6256), - [anon_sym_LBRACK] = ACTIONS(6254), - [anon_sym_static] = ACTIONS(6254), - [anon_sym_EQ] = ACTIONS(6254), - [anon_sym_register] = ACTIONS(6254), - [anon_sym_inline] = ACTIONS(6254), - [anon_sym___inline] = ACTIONS(6254), - [anon_sym___inline__] = ACTIONS(6254), - [anon_sym___forceinline] = ACTIONS(6254), - [anon_sym_thread_local] = ACTIONS(6254), - [anon_sym___thread] = ACTIONS(6254), - [anon_sym_const] = ACTIONS(6254), - [anon_sym_constexpr] = ACTIONS(6254), - [anon_sym_volatile] = ACTIONS(6254), - [anon_sym_restrict] = ACTIONS(6254), - [anon_sym___restrict__] = ACTIONS(6254), - [anon_sym__Atomic] = ACTIONS(6254), - [anon_sym__Noreturn] = ACTIONS(6254), - [anon_sym_noreturn] = ACTIONS(6254), - [anon_sym__Nonnull] = ACTIONS(6254), - [anon_sym_mutable] = ACTIONS(6254), - [anon_sym_constinit] = ACTIONS(6254), - [anon_sym_consteval] = ACTIONS(6254), - [anon_sym_alignas] = ACTIONS(6254), - [anon_sym__Alignas] = ACTIONS(6254), - [anon_sym_QMARK] = ACTIONS(6256), - [anon_sym_STAR_EQ] = ACTIONS(6256), - [anon_sym_SLASH_EQ] = ACTIONS(6256), - [anon_sym_PERCENT_EQ] = ACTIONS(6256), - [anon_sym_PLUS_EQ] = ACTIONS(6256), - [anon_sym_DASH_EQ] = ACTIONS(6256), - [anon_sym_LT_LT_EQ] = ACTIONS(6256), - [anon_sym_GT_GT_EQ] = ACTIONS(6256), - [anon_sym_AMP_EQ] = ACTIONS(6256), - [anon_sym_CARET_EQ] = ACTIONS(6256), - [anon_sym_PIPE_EQ] = ACTIONS(6256), - [anon_sym_LT_EQ_GT] = ACTIONS(6256), - [anon_sym_or] = ACTIONS(6254), - [anon_sym_and] = ACTIONS(6254), - [anon_sym_bitor] = ACTIONS(6254), - [anon_sym_xor] = ACTIONS(6254), - [anon_sym_bitand] = ACTIONS(6254), - [anon_sym_not_eq] = ACTIONS(6254), - [anon_sym_DASH_DASH] = ACTIONS(6256), - [anon_sym_PLUS_PLUS] = ACTIONS(6256), - [anon_sym_DOT] = ACTIONS(6254), - [anon_sym_DOT_STAR] = ACTIONS(6256), - [anon_sym_DASH_GT] = ACTIONS(6254), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6254), - [anon_sym_decltype] = ACTIONS(6254), - [anon_sym_template] = ACTIONS(6254), - [anon_sym_operator] = ACTIONS(6254), - [anon_sym_DASH_GT_STAR] = ACTIONS(6256), - [anon_sym_LBRACK_COLON] = ACTIONS(6256), - }, - [STATE(1950)] = { - [sym_identifier] = ACTIONS(6258), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), - [anon_sym_COMMA] = ACTIONS(6260), - [anon_sym_RPAREN] = ACTIONS(6260), - [anon_sym_LPAREN2] = ACTIONS(6260), - [anon_sym_TILDE] = ACTIONS(6260), - [anon_sym_DASH] = ACTIONS(6258), - [anon_sym_PLUS] = ACTIONS(6258), - [anon_sym_STAR] = ACTIONS(6258), - [anon_sym_SLASH] = ACTIONS(6258), - [anon_sym_PERCENT] = ACTIONS(6258), - [anon_sym_PIPE_PIPE] = ACTIONS(6260), - [anon_sym_AMP_AMP] = ACTIONS(6260), - [anon_sym_PIPE] = ACTIONS(6258), - [anon_sym_CARET] = ACTIONS(6258), - [anon_sym_AMP] = ACTIONS(6258), - [anon_sym_EQ_EQ] = ACTIONS(6260), - [anon_sym_BANG_EQ] = ACTIONS(6260), - [anon_sym_GT] = ACTIONS(6258), - [anon_sym_GT_EQ] = ACTIONS(6260), - [anon_sym_LT_EQ] = ACTIONS(6258), - [anon_sym_LT] = ACTIONS(6258), - [anon_sym_LT_LT] = ACTIONS(6258), - [anon_sym_GT_GT] = ACTIONS(6258), - [anon_sym___extension__] = ACTIONS(6258), - [anon_sym_virtual] = ACTIONS(6258), - [anon_sym_extern] = ACTIONS(6258), - [anon_sym___attribute__] = ACTIONS(6258), - [anon_sym___attribute] = ACTIONS(6258), - [anon_sym_COLON_COLON] = ACTIONS(6260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6260), - [anon_sym___declspec] = ACTIONS(6258), - [anon_sym___based] = ACTIONS(6258), - [anon_sym_LBRACE] = ACTIONS(6260), - [anon_sym_LBRACK] = ACTIONS(6258), - [anon_sym_static] = ACTIONS(6258), - [anon_sym_EQ] = ACTIONS(6258), - [anon_sym_register] = ACTIONS(6258), - [anon_sym_inline] = ACTIONS(6258), - [anon_sym___inline] = ACTIONS(6258), - [anon_sym___inline__] = ACTIONS(6258), - [anon_sym___forceinline] = ACTIONS(6258), - [anon_sym_thread_local] = ACTIONS(6258), - [anon_sym___thread] = ACTIONS(6258), - [anon_sym_const] = ACTIONS(6258), - [anon_sym_constexpr] = ACTIONS(6258), - [anon_sym_volatile] = ACTIONS(6258), - [anon_sym_restrict] = ACTIONS(6258), - [anon_sym___restrict__] = ACTIONS(6258), - [anon_sym__Atomic] = ACTIONS(6258), - [anon_sym__Noreturn] = ACTIONS(6258), - [anon_sym_noreturn] = ACTIONS(6258), - [anon_sym__Nonnull] = ACTIONS(6258), - [anon_sym_mutable] = ACTIONS(6258), - [anon_sym_constinit] = ACTIONS(6258), - [anon_sym_consteval] = ACTIONS(6258), - [anon_sym_alignas] = ACTIONS(6258), - [anon_sym__Alignas] = ACTIONS(6258), - [anon_sym_QMARK] = ACTIONS(6260), - [anon_sym_STAR_EQ] = ACTIONS(6260), - [anon_sym_SLASH_EQ] = ACTIONS(6260), - [anon_sym_PERCENT_EQ] = ACTIONS(6260), - [anon_sym_PLUS_EQ] = ACTIONS(6260), - [anon_sym_DASH_EQ] = ACTIONS(6260), - [anon_sym_LT_LT_EQ] = ACTIONS(6260), - [anon_sym_GT_GT_EQ] = ACTIONS(6260), - [anon_sym_AMP_EQ] = ACTIONS(6260), - [anon_sym_CARET_EQ] = ACTIONS(6260), - [anon_sym_PIPE_EQ] = ACTIONS(6260), - [anon_sym_LT_EQ_GT] = ACTIONS(6260), - [anon_sym_or] = ACTIONS(6258), - [anon_sym_and] = ACTIONS(6258), - [anon_sym_bitor] = ACTIONS(6258), - [anon_sym_xor] = ACTIONS(6258), - [anon_sym_bitand] = ACTIONS(6258), - [anon_sym_not_eq] = ACTIONS(6258), - [anon_sym_DASH_DASH] = ACTIONS(6260), - [anon_sym_PLUS_PLUS] = ACTIONS(6260), - [anon_sym_DOT] = ACTIONS(6258), - [anon_sym_DOT_STAR] = ACTIONS(6260), - [anon_sym_DASH_GT] = ACTIONS(6258), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6258), - [anon_sym_decltype] = ACTIONS(6258), - [anon_sym_template] = ACTIONS(6258), - [anon_sym_operator] = ACTIONS(6258), - [anon_sym_DASH_GT_STAR] = ACTIONS(6260), - [anon_sym_LBRACK_COLON] = ACTIONS(6260), - }, - [STATE(1951)] = { - [sym_identifier] = ACTIONS(6262), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), - [anon_sym_COMMA] = ACTIONS(6264), - [anon_sym_RPAREN] = ACTIONS(6264), - [anon_sym_LPAREN2] = ACTIONS(6264), - [anon_sym_TILDE] = ACTIONS(6264), - [anon_sym_DASH] = ACTIONS(6262), - [anon_sym_PLUS] = ACTIONS(6262), - [anon_sym_STAR] = ACTIONS(6262), - [anon_sym_SLASH] = ACTIONS(6262), - [anon_sym_PERCENT] = ACTIONS(6262), - [anon_sym_PIPE_PIPE] = ACTIONS(6264), - [anon_sym_AMP_AMP] = ACTIONS(6264), - [anon_sym_PIPE] = ACTIONS(6262), - [anon_sym_CARET] = ACTIONS(6262), - [anon_sym_AMP] = ACTIONS(6262), - [anon_sym_EQ_EQ] = ACTIONS(6264), - [anon_sym_BANG_EQ] = ACTIONS(6264), - [anon_sym_GT] = ACTIONS(6262), - [anon_sym_GT_EQ] = ACTIONS(6264), - [anon_sym_LT_EQ] = ACTIONS(6262), - [anon_sym_LT] = ACTIONS(6262), - [anon_sym_LT_LT] = ACTIONS(6262), - [anon_sym_GT_GT] = ACTIONS(6262), - [anon_sym___extension__] = ACTIONS(6262), - [anon_sym_virtual] = ACTIONS(6262), - [anon_sym_extern] = ACTIONS(6262), - [anon_sym___attribute__] = ACTIONS(6262), - [anon_sym___attribute] = ACTIONS(6262), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6264), - [anon_sym___declspec] = ACTIONS(6262), - [anon_sym___based] = ACTIONS(6262), - [anon_sym_LBRACE] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(6262), - [anon_sym_static] = ACTIONS(6262), - [anon_sym_EQ] = ACTIONS(6262), - [anon_sym_register] = ACTIONS(6262), - [anon_sym_inline] = ACTIONS(6262), - [anon_sym___inline] = ACTIONS(6262), - [anon_sym___inline__] = ACTIONS(6262), - [anon_sym___forceinline] = ACTIONS(6262), - [anon_sym_thread_local] = ACTIONS(6262), - [anon_sym___thread] = ACTIONS(6262), - [anon_sym_const] = ACTIONS(6262), - [anon_sym_constexpr] = ACTIONS(6262), - [anon_sym_volatile] = ACTIONS(6262), - [anon_sym_restrict] = ACTIONS(6262), - [anon_sym___restrict__] = ACTIONS(6262), - [anon_sym__Atomic] = ACTIONS(6262), - [anon_sym__Noreturn] = ACTIONS(6262), - [anon_sym_noreturn] = ACTIONS(6262), - [anon_sym__Nonnull] = ACTIONS(6262), - [anon_sym_mutable] = ACTIONS(6262), - [anon_sym_constinit] = ACTIONS(6262), - [anon_sym_consteval] = ACTIONS(6262), - [anon_sym_alignas] = ACTIONS(6262), - [anon_sym__Alignas] = ACTIONS(6262), - [anon_sym_QMARK] = ACTIONS(6264), - [anon_sym_STAR_EQ] = ACTIONS(6264), - [anon_sym_SLASH_EQ] = ACTIONS(6264), - [anon_sym_PERCENT_EQ] = ACTIONS(6264), - [anon_sym_PLUS_EQ] = ACTIONS(6264), - [anon_sym_DASH_EQ] = ACTIONS(6264), - [anon_sym_LT_LT_EQ] = ACTIONS(6264), - [anon_sym_GT_GT_EQ] = ACTIONS(6264), - [anon_sym_AMP_EQ] = ACTIONS(6264), - [anon_sym_CARET_EQ] = ACTIONS(6264), - [anon_sym_PIPE_EQ] = ACTIONS(6264), - [anon_sym_LT_EQ_GT] = ACTIONS(6264), - [anon_sym_or] = ACTIONS(6262), - [anon_sym_and] = ACTIONS(6262), - [anon_sym_bitor] = ACTIONS(6262), - [anon_sym_xor] = ACTIONS(6262), - [anon_sym_bitand] = ACTIONS(6262), - [anon_sym_not_eq] = ACTIONS(6262), - [anon_sym_DASH_DASH] = ACTIONS(6264), - [anon_sym_PLUS_PLUS] = ACTIONS(6264), - [anon_sym_DOT] = ACTIONS(6262), - [anon_sym_DOT_STAR] = ACTIONS(6264), - [anon_sym_DASH_GT] = ACTIONS(6262), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6262), - [anon_sym_decltype] = ACTIONS(6262), - [anon_sym_template] = ACTIONS(6262), - [anon_sym_operator] = ACTIONS(6262), - [anon_sym_DASH_GT_STAR] = ACTIONS(6264), - [anon_sym_LBRACK_COLON] = ACTIONS(6264), - }, - [STATE(1952)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2589), - [sym_ms_pointer_modifier] = STATE(2393), - [sym__abstract_declarator] = STATE(4539), - [sym_abstract_parenthesized_declarator] = STATE(4956), - [sym_abstract_pointer_declarator] = STATE(4956), - [sym_abstract_function_declarator] = STATE(4956), - [sym_abstract_array_declarator] = STATE(4956), - [sym_type_qualifier] = STATE(2229), - [sym_alignas_qualifier] = STATE(2295), - [sym_parameter_list] = STATE(1874), - [sym_abstract_reference_declarator] = STATE(4956), - [sym__function_declarator_seq] = STATE(4970), - [aux_sym__type_definition_type_repeat1] = STATE(2229), - [aux_sym_pointer_declarator_repeat1] = STATE(2393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6724), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6726), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(6728), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(6730), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6495), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym___extension__] = ACTIONS(6732), - [sym_ms_restrict_modifier] = ACTIONS(6734), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6736), - [sym_ms_signed_ptr_modifier] = ACTIONS(6736), - [anon_sym__unaligned] = ACTIONS(6738), - [anon_sym___unaligned] = ACTIONS(6738), - [anon_sym_LBRACK] = ACTIONS(6740), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6742), - [anon_sym_constexpr] = ACTIONS(6732), - [anon_sym_volatile] = ACTIONS(6732), - [anon_sym_restrict] = ACTIONS(6732), - [anon_sym___restrict__] = ACTIONS(6732), - [anon_sym__Atomic] = ACTIONS(6732), - [anon_sym__Noreturn] = ACTIONS(6732), - [anon_sym_noreturn] = ACTIONS(6732), - [anon_sym__Nonnull] = ACTIONS(6732), - [anon_sym_mutable] = ACTIONS(6732), - [anon_sym_constinit] = ACTIONS(6732), - [anon_sym_consteval] = ACTIONS(6732), - [anon_sym_alignas] = ACTIONS(6744), - [anon_sym__Alignas] = ACTIONS(6744), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6495), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_and_eq] = ACTIONS(6497), - [anon_sym_or_eq] = ACTIONS(6497), - [anon_sym_xor_eq] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6497), - [anon_sym_override] = ACTIONS(6497), - [anon_sym_GT2] = ACTIONS(6497), - [anon_sym_requires] = ACTIONS(6497), - }, - [STATE(1953)] = { - [sym_identifier] = ACTIONS(2768), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), - [anon_sym_COMMA] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [aux_sym_preproc_if_token2] = ACTIONS(2758), - [aux_sym_preproc_else_token1] = ACTIONS(2758), - [aux_sym_preproc_elif_token1] = ACTIONS(2768), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2758), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2758), - [anon_sym_LPAREN2] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_SLASH] = ACTIONS(2768), - [anon_sym_PERCENT] = ACTIONS(2768), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2768), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_LT_EQ] = ACTIONS(2768), - [anon_sym_LT] = ACTIONS(2768), - [anon_sym_LT_LT] = ACTIONS(2768), - [anon_sym_GT_GT] = ACTIONS(2768), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym___extension__] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_COLON] = ACTIONS(2768), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_RBRACE] = ACTIONS(2758), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2758), - [anon_sym_EQ] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2768), - [anon_sym_QMARK] = ACTIONS(2758), - [anon_sym_STAR_EQ] = ACTIONS(2758), - [anon_sym_SLASH_EQ] = ACTIONS(2758), - [anon_sym_PERCENT_EQ] = ACTIONS(2758), - [anon_sym_PLUS_EQ] = ACTIONS(2758), - [anon_sym_DASH_EQ] = ACTIONS(2758), - [anon_sym_LT_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_GT_EQ] = ACTIONS(2758), - [anon_sym_AMP_EQ] = ACTIONS(2758), - [anon_sym_CARET_EQ] = ACTIONS(2758), - [anon_sym_PIPE_EQ] = ACTIONS(2758), - [anon_sym_and_eq] = ACTIONS(2768), - [anon_sym_or_eq] = ACTIONS(2768), - [anon_sym_xor_eq] = ACTIONS(2768), - [anon_sym_LT_EQ_GT] = ACTIONS(2758), - [anon_sym_or] = ACTIONS(2768), - [anon_sym_and] = ACTIONS(2768), - [anon_sym_bitor] = ACTIONS(2768), - [anon_sym_xor] = ACTIONS(2768), - [anon_sym_bitand] = ACTIONS(2768), - [anon_sym_not_eq] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2758), - [anon_sym_PLUS_PLUS] = ACTIONS(2758), - [anon_sym_DOT] = ACTIONS(2768), - [anon_sym_DOT_STAR] = ACTIONS(2758), - [anon_sym_DASH_GT] = ACTIONS(2758), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2768), - [anon_sym_override] = ACTIONS(2768), - [anon_sym_requires] = ACTIONS(2768), - [anon_sym_COLON_RBRACK] = ACTIONS(2758), - }, - [STATE(1954)] = { - [sym_template_argument_list] = STATE(5490), - [sym_identifier] = ACTIONS(6746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), - [anon_sym_COMMA] = ACTIONS(6748), - [anon_sym_RPAREN] = ACTIONS(6748), - [anon_sym_LPAREN2] = ACTIONS(6748), - [anon_sym_TILDE] = ACTIONS(6751), - [anon_sym_DASH] = ACTIONS(6753), - [anon_sym_PLUS] = ACTIONS(6753), - [anon_sym_STAR] = ACTIONS(6755), - [anon_sym_SLASH] = ACTIONS(6753), - [anon_sym_PERCENT] = ACTIONS(6753), - [anon_sym_PIPE_PIPE] = ACTIONS(6758), - [anon_sym_AMP_AMP] = ACTIONS(6748), - [anon_sym_PIPE] = ACTIONS(6753), - [anon_sym_CARET] = ACTIONS(6753), - [anon_sym_AMP] = ACTIONS(6755), - [anon_sym_EQ_EQ] = ACTIONS(6758), - [anon_sym_BANG_EQ] = ACTIONS(6758), - [anon_sym_GT] = ACTIONS(6753), - [anon_sym_GT_EQ] = ACTIONS(6758), - [anon_sym_LT_EQ] = ACTIONS(6753), - [anon_sym_LT] = ACTIONS(6760), - [anon_sym_LT_LT] = ACTIONS(6753), - [anon_sym_GT_GT] = ACTIONS(6753), - [anon_sym___extension__] = ACTIONS(6746), - [anon_sym_virtual] = ACTIONS(6746), - [anon_sym_extern] = ACTIONS(6746), - [anon_sym___attribute__] = ACTIONS(6746), - [anon_sym___attribute] = ACTIONS(6746), - [anon_sym_COLON_COLON] = ACTIONS(6748), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6751), - [anon_sym___declspec] = ACTIONS(6746), - [anon_sym___based] = ACTIONS(6746), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_LBRACK] = ACTIONS(6755), - [anon_sym_static] = ACTIONS(6746), - [anon_sym_EQ] = ACTIONS(6755), - [anon_sym_register] = ACTIONS(6746), - [anon_sym_inline] = ACTIONS(6746), - [anon_sym___inline] = ACTIONS(6746), - [anon_sym___inline__] = ACTIONS(6746), - [anon_sym___forceinline] = ACTIONS(6746), - [anon_sym_thread_local] = ACTIONS(6746), - [anon_sym___thread] = ACTIONS(6746), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6746), - [anon_sym_volatile] = ACTIONS(6746), - [anon_sym_restrict] = ACTIONS(6746), - [anon_sym___restrict__] = ACTIONS(6746), - [anon_sym__Atomic] = ACTIONS(6746), - [anon_sym__Noreturn] = ACTIONS(6746), - [anon_sym_noreturn] = ACTIONS(6746), - [anon_sym__Nonnull] = ACTIONS(6746), - [anon_sym_mutable] = ACTIONS(6746), - [anon_sym_constinit] = ACTIONS(6746), - [anon_sym_consteval] = ACTIONS(6746), - [anon_sym_alignas] = ACTIONS(6746), - [anon_sym__Alignas] = ACTIONS(6746), - [anon_sym_QMARK] = ACTIONS(6758), - [anon_sym_STAR_EQ] = ACTIONS(6758), - [anon_sym_SLASH_EQ] = ACTIONS(6758), - [anon_sym_PERCENT_EQ] = ACTIONS(6758), - [anon_sym_PLUS_EQ] = ACTIONS(6758), - [anon_sym_DASH_EQ] = ACTIONS(6758), - [anon_sym_LT_LT_EQ] = ACTIONS(6758), - [anon_sym_GT_GT_EQ] = ACTIONS(6758), - [anon_sym_AMP_EQ] = ACTIONS(6758), - [anon_sym_CARET_EQ] = ACTIONS(6758), - [anon_sym_PIPE_EQ] = ACTIONS(6758), - [anon_sym_LT_EQ_GT] = ACTIONS(6758), - [anon_sym_or] = ACTIONS(6753), - [anon_sym_and] = ACTIONS(6753), - [anon_sym_bitor] = ACTIONS(6753), - [anon_sym_xor] = ACTIONS(6753), - [anon_sym_bitand] = ACTIONS(6753), - [anon_sym_not_eq] = ACTIONS(6753), - [anon_sym_DASH_DASH] = ACTIONS(6758), - [anon_sym_PLUS_PLUS] = ACTIONS(6758), - [anon_sym_DOT] = ACTIONS(6753), - [anon_sym_DOT_STAR] = ACTIONS(6758), - [anon_sym_DASH_GT] = ACTIONS(6753), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(6746), - [anon_sym_template] = ACTIONS(6746), - [anon_sym_operator] = ACTIONS(6746), - [anon_sym_DASH_GT_STAR] = ACTIONS(6758), - [anon_sym_LBRACK_COLON] = ACTIONS(6751), - }, - [STATE(1955)] = { - [sym_identifier] = ACTIONS(6226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), - [anon_sym_COMMA] = ACTIONS(6230), - [anon_sym_RPAREN] = ACTIONS(6230), - [anon_sym_LPAREN2] = ACTIONS(6230), - [anon_sym_TILDE] = ACTIONS(6233), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6237), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_PERCENT] = ACTIONS(6235), - [anon_sym_PIPE_PIPE] = ACTIONS(6228), - [anon_sym_AMP_AMP] = ACTIONS(6230), - [anon_sym_PIPE] = ACTIONS(6235), - [anon_sym_CARET] = ACTIONS(6235), - [anon_sym_AMP] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6228), - [anon_sym_BANG_EQ] = ACTIONS(6228), - [anon_sym_GT] = ACTIONS(6235), - [anon_sym_GT_EQ] = ACTIONS(6228), - [anon_sym_LT_EQ] = ACTIONS(6235), - [anon_sym_LT] = ACTIONS(6235), - [anon_sym_LT_LT] = ACTIONS(6235), - [anon_sym_GT_GT] = ACTIONS(6235), - [anon_sym___extension__] = ACTIONS(6226), - [anon_sym_virtual] = ACTIONS(6226), - [anon_sym_extern] = ACTIONS(6226), - [anon_sym___attribute__] = ACTIONS(6226), - [anon_sym___attribute] = ACTIONS(6226), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6233), - [anon_sym___declspec] = ACTIONS(6226), - [anon_sym___based] = ACTIONS(6226), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6237), - [anon_sym_static] = ACTIONS(6226), - [anon_sym_EQ] = ACTIONS(6237), - [anon_sym_register] = ACTIONS(6226), - [anon_sym_inline] = ACTIONS(6226), - [anon_sym___inline] = ACTIONS(6226), - [anon_sym___inline__] = ACTIONS(6226), - [anon_sym___forceinline] = ACTIONS(6226), - [anon_sym_thread_local] = ACTIONS(6226), - [anon_sym___thread] = ACTIONS(6226), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6226), - [anon_sym_volatile] = ACTIONS(6226), - [anon_sym_restrict] = ACTIONS(6226), - [anon_sym___restrict__] = ACTIONS(6226), - [anon_sym__Atomic] = ACTIONS(6226), - [anon_sym__Noreturn] = ACTIONS(6226), - [anon_sym_noreturn] = ACTIONS(6226), - [anon_sym__Nonnull] = ACTIONS(6226), - [anon_sym_mutable] = ACTIONS(6226), - [anon_sym_constinit] = ACTIONS(6226), - [anon_sym_consteval] = ACTIONS(6226), - [anon_sym_alignas] = ACTIONS(6226), - [anon_sym__Alignas] = ACTIONS(6226), - [anon_sym_QMARK] = ACTIONS(6228), - [anon_sym_STAR_EQ] = ACTIONS(6228), - [anon_sym_SLASH_EQ] = ACTIONS(6228), - [anon_sym_PERCENT_EQ] = ACTIONS(6228), - [anon_sym_PLUS_EQ] = ACTIONS(6228), - [anon_sym_DASH_EQ] = ACTIONS(6228), - [anon_sym_LT_LT_EQ] = ACTIONS(6228), - [anon_sym_GT_GT_EQ] = ACTIONS(6228), - [anon_sym_AMP_EQ] = ACTIONS(6228), - [anon_sym_CARET_EQ] = ACTIONS(6228), - [anon_sym_PIPE_EQ] = ACTIONS(6228), - [anon_sym_LT_EQ_GT] = ACTIONS(6228), - [anon_sym_or] = ACTIONS(6235), - [anon_sym_and] = ACTIONS(6235), - [anon_sym_bitor] = ACTIONS(6235), - [anon_sym_xor] = ACTIONS(6235), - [anon_sym_bitand] = ACTIONS(6235), - [anon_sym_not_eq] = ACTIONS(6235), - [anon_sym_DASH_DASH] = ACTIONS(6228), - [anon_sym_PLUS_PLUS] = ACTIONS(6228), - [anon_sym_DOT] = ACTIONS(6235), - [anon_sym_DOT_STAR] = ACTIONS(6228), - [anon_sym_DASH_GT] = ACTIONS(6235), + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_ms_call_modifier] = STATE(8774), + [sym__abstract_declarator] = STATE(9392), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_abstract_function_declarator] = STATE(8596), + [sym_abstract_array_declarator] = STATE(8596), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_list] = STATE(4706), + [sym_parameter_declaration] = STATE(10146), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_explicit_object_parameter_declaration] = STATE(10146), + [sym_optional_parameter_declaration] = STATE(10146), + [sym_variadic_parameter_declaration] = STATE(10146), + [sym_abstract_reference_declarator] = STATE(8596), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6516), + [anon_sym_RPAREN] = ACTIONS(6518), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_STAR] = ACTIONS(6463), + [anon_sym_AMP_AMP] = ACTIONS(6465), + [anon_sym_AMP] = ACTIONS(6467), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(6471), + [anon_sym___clrcall] = ACTIONS(6471), + [anon_sym___stdcall] = ACTIONS(6471), + [anon_sym___fastcall] = ACTIONS(6471), + [anon_sym___thiscall] = ACTIONS(6471), + [anon_sym___vectorcall] = ACTIONS(6471), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6473), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5629), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6226), - [anon_sym_decltype] = ACTIONS(6226), - [anon_sym_template] = ACTIONS(6226), - [anon_sym_operator] = ACTIONS(6226), - [anon_sym_DASH_GT_STAR] = ACTIONS(6228), - [anon_sym_LBRACK_COLON] = ACTIONS(6233), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_this] = ACTIONS(5631), }, - [STATE(1956)] = { - [sym_identifier] = ACTIONS(6762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6764), - [anon_sym_COMMA] = ACTIONS(6764), - [anon_sym_RPAREN] = ACTIONS(6764), - [anon_sym_LPAREN2] = ACTIONS(6764), - [anon_sym_TILDE] = ACTIONS(6764), - [anon_sym_DASH] = ACTIONS(6762), - [anon_sym_PLUS] = ACTIONS(6762), - [anon_sym_STAR] = ACTIONS(6764), - [anon_sym_SLASH] = ACTIONS(6762), - [anon_sym_PERCENT] = ACTIONS(6764), - [anon_sym_PIPE_PIPE] = ACTIONS(6764), - [anon_sym_AMP_AMP] = ACTIONS(6764), - [anon_sym_PIPE] = ACTIONS(6762), - [anon_sym_CARET] = ACTIONS(6764), - [anon_sym_AMP] = ACTIONS(6762), - [anon_sym_EQ_EQ] = ACTIONS(6764), - [anon_sym_BANG_EQ] = ACTIONS(6764), - [anon_sym_GT] = ACTIONS(6762), - [anon_sym_GT_EQ] = ACTIONS(6764), - [anon_sym_LT_EQ] = ACTIONS(6762), - [anon_sym_LT] = ACTIONS(6762), - [anon_sym_LT_LT] = ACTIONS(6764), - [anon_sym_GT_GT] = ACTIONS(6764), - [anon_sym_SEMI] = ACTIONS(6764), - [anon_sym___extension__] = ACTIONS(6762), - [anon_sym_virtual] = ACTIONS(6762), - [anon_sym_extern] = ACTIONS(6762), - [anon_sym___attribute__] = ACTIONS(6762), - [anon_sym___attribute] = ACTIONS(6762), - [anon_sym_COLON] = ACTIONS(6762), - [anon_sym_COLON_COLON] = ACTIONS(6764), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6764), - [anon_sym___declspec] = ACTIONS(6762), - [anon_sym___based] = ACTIONS(6762), - [anon_sym___cdecl] = ACTIONS(6762), - [anon_sym___clrcall] = ACTIONS(6762), - [anon_sym___stdcall] = ACTIONS(6762), - [anon_sym___fastcall] = ACTIONS(6762), - [anon_sym___thiscall] = ACTIONS(6762), - [anon_sym___vectorcall] = ACTIONS(6762), - [anon_sym_LBRACE] = ACTIONS(6764), - [anon_sym_RBRACE] = ACTIONS(6764), - [anon_sym_LBRACK] = ACTIONS(6762), - [anon_sym_static] = ACTIONS(6762), - [anon_sym_register] = ACTIONS(6762), - [anon_sym_inline] = ACTIONS(6762), - [anon_sym___inline] = ACTIONS(6762), - [anon_sym___inline__] = ACTIONS(6762), - [anon_sym___forceinline] = ACTIONS(6762), - [anon_sym_thread_local] = ACTIONS(6762), - [anon_sym___thread] = ACTIONS(6762), - [anon_sym_const] = ACTIONS(6762), - [anon_sym_constexpr] = ACTIONS(6762), - [anon_sym_volatile] = ACTIONS(6762), - [anon_sym_restrict] = ACTIONS(6762), - [anon_sym___restrict__] = ACTIONS(6762), - [anon_sym__Atomic] = ACTIONS(6762), - [anon_sym__Noreturn] = ACTIONS(6762), - [anon_sym_noreturn] = ACTIONS(6762), - [anon_sym__Nonnull] = ACTIONS(6762), - [anon_sym_mutable] = ACTIONS(6762), - [anon_sym_constinit] = ACTIONS(6762), - [anon_sym_consteval] = ACTIONS(6762), - [anon_sym_alignas] = ACTIONS(6762), - [anon_sym__Alignas] = ACTIONS(6762), - [anon_sym_QMARK] = ACTIONS(6764), - [anon_sym_LT_EQ_GT] = ACTIONS(6764), - [anon_sym_or] = ACTIONS(6762), - [anon_sym_and] = ACTIONS(6762), - [anon_sym_bitor] = ACTIONS(6762), - [anon_sym_xor] = ACTIONS(6762), - [anon_sym_bitand] = ACTIONS(6762), - [anon_sym_not_eq] = ACTIONS(6762), - [anon_sym_DASH_DASH] = ACTIONS(6764), - [anon_sym_PLUS_PLUS] = ACTIONS(6764), - [anon_sym_DOT] = ACTIONS(6762), - [anon_sym_DOT_STAR] = ACTIONS(6764), - [anon_sym_DASH_GT] = ACTIONS(6764), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(6762), - [anon_sym_final] = ACTIONS(6762), - [anon_sym_override] = ACTIONS(6762), - [anon_sym_template] = ACTIONS(6762), - [anon_sym_operator] = ACTIONS(6762), - [anon_sym_noexcept] = ACTIONS(6762), - [anon_sym_throw] = ACTIONS(6762), - [anon_sym_LBRACK_COLON] = ACTIONS(6764), - }, - [STATE(1957)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2578), - [sym_ms_pointer_modifier] = STATE(1960), - [sym__abstract_declarator] = STATE(4547), - [sym_abstract_parenthesized_declarator] = STATE(4966), - [sym_abstract_pointer_declarator] = STATE(4966), - [sym_abstract_function_declarator] = STATE(4966), - [sym_abstract_array_declarator] = STATE(4966), - [sym_type_qualifier] = STATE(2233), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1872), - [sym_abstract_reference_declarator] = STATE(4966), - [sym__function_declarator_seq] = STATE(4975), - [aux_sym__type_definition_type_repeat1] = STATE(2233), - [aux_sym_pointer_declarator_repeat1] = STATE(1960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(6766), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_PLUS] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(6768), - [anon_sym_SLASH] = ACTIONS(6457), - [anon_sym_PERCENT] = ACTIONS(6457), - [anon_sym_PIPE_PIPE] = ACTIONS(6459), - [anon_sym_AMP_AMP] = ACTIONS(6770), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_CARET] = ACTIONS(6457), - [anon_sym_AMP] = ACTIONS(6772), - [anon_sym_EQ_EQ] = ACTIONS(6459), - [anon_sym_BANG_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_LT_EQ] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_LT_LT] = ACTIONS(6457), - [anon_sym_GT_GT] = ACTIONS(6457), - [anon_sym___extension__] = ACTIONS(6774), - [sym_ms_restrict_modifier] = ACTIONS(6776), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6778), - [sym_ms_signed_ptr_modifier] = ACTIONS(6778), - [anon_sym__unaligned] = ACTIONS(6780), - [anon_sym___unaligned] = ACTIONS(6780), - [anon_sym_LBRACK] = ACTIONS(6782), - [anon_sym_RBRACK] = ACTIONS(6459), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6774), - [anon_sym_volatile] = ACTIONS(6774), - [anon_sym_restrict] = ACTIONS(6774), - [anon_sym___restrict__] = ACTIONS(6774), - [anon_sym__Atomic] = ACTIONS(6774), - [anon_sym__Noreturn] = ACTIONS(6774), - [anon_sym_noreturn] = ACTIONS(6774), - [anon_sym__Nonnull] = ACTIONS(6774), - [anon_sym_mutable] = ACTIONS(6774), - [anon_sym_constinit] = ACTIONS(6774), - [anon_sym_consteval] = ACTIONS(6774), - [anon_sym_alignas] = ACTIONS(6784), - [anon_sym__Alignas] = ACTIONS(6784), - [anon_sym_QMARK] = ACTIONS(6459), - [anon_sym_STAR_EQ] = ACTIONS(6459), - [anon_sym_SLASH_EQ] = ACTIONS(6459), - [anon_sym_PERCENT_EQ] = ACTIONS(6459), - [anon_sym_PLUS_EQ] = ACTIONS(6459), - [anon_sym_DASH_EQ] = ACTIONS(6459), - [anon_sym_LT_LT_EQ] = ACTIONS(6459), - [anon_sym_GT_GT_EQ] = ACTIONS(6459), - [anon_sym_AMP_EQ] = ACTIONS(6459), - [anon_sym_CARET_EQ] = ACTIONS(6459), - [anon_sym_PIPE_EQ] = ACTIONS(6459), - [anon_sym_and_eq] = ACTIONS(6459), - [anon_sym_or_eq] = ACTIONS(6459), - [anon_sym_xor_eq] = ACTIONS(6459), - [anon_sym_LT_EQ_GT] = ACTIONS(6459), - [anon_sym_or] = ACTIONS(6457), - [anon_sym_and] = ACTIONS(6457), - [anon_sym_bitor] = ACTIONS(6459), - [anon_sym_xor] = ACTIONS(6457), - [anon_sym_bitand] = ACTIONS(6459), - [anon_sym_not_eq] = ACTIONS(6459), - [anon_sym_DASH_DASH] = ACTIONS(6459), - [anon_sym_PLUS_PLUS] = ACTIONS(6459), - [anon_sym_DOT] = ACTIONS(6457), - [anon_sym_DOT_STAR] = ACTIONS(6459), - [anon_sym_DASH_GT] = ACTIONS(6459), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6459), - [anon_sym_override] = ACTIONS(6459), - [anon_sym_requires] = ACTIONS(6459), - }, - [STATE(1958)] = { - [sym_identifier] = ACTIONS(6786), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6788), - [anon_sym_COMMA] = ACTIONS(6788), - [anon_sym_RPAREN] = ACTIONS(6788), - [aux_sym_preproc_if_token2] = ACTIONS(6788), - [aux_sym_preproc_else_token1] = ACTIONS(6788), - [aux_sym_preproc_elif_token1] = ACTIONS(6786), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6788), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6788), - [anon_sym_LPAREN2] = ACTIONS(6788), - [anon_sym_DASH] = ACTIONS(6786), - [anon_sym_PLUS] = ACTIONS(6786), - [anon_sym_STAR] = ACTIONS(6786), - [anon_sym_SLASH] = ACTIONS(6786), - [anon_sym_PERCENT] = ACTIONS(6786), - [anon_sym_PIPE_PIPE] = ACTIONS(6788), - [anon_sym_AMP_AMP] = ACTIONS(6788), - [anon_sym_PIPE] = ACTIONS(6786), - [anon_sym_CARET] = ACTIONS(6786), - [anon_sym_AMP] = ACTIONS(6786), - [anon_sym_EQ_EQ] = ACTIONS(6788), - [anon_sym_BANG_EQ] = ACTIONS(6788), - [anon_sym_GT] = ACTIONS(6786), - [anon_sym_GT_EQ] = ACTIONS(6788), - [anon_sym_LT_EQ] = ACTIONS(6786), - [anon_sym_LT] = ACTIONS(6786), - [anon_sym_LT_LT] = ACTIONS(6786), - [anon_sym_GT_GT] = ACTIONS(6786), - [anon_sym_SEMI] = ACTIONS(6788), - [anon_sym___extension__] = ACTIONS(6786), - [anon_sym___attribute__] = ACTIONS(6786), - [anon_sym___attribute] = ACTIONS(6786), - [anon_sym_COLON] = ACTIONS(6786), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6788), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6788), - [anon_sym_RBRACE] = ACTIONS(6788), - [anon_sym_LBRACK] = ACTIONS(6786), - [anon_sym_EQ] = ACTIONS(6786), - [anon_sym_const] = ACTIONS(6786), - [anon_sym_constexpr] = ACTIONS(6786), - [anon_sym_volatile] = ACTIONS(6786), - [anon_sym_restrict] = ACTIONS(6786), - [anon_sym___restrict__] = ACTIONS(6786), - [anon_sym__Atomic] = ACTIONS(6786), - [anon_sym__Noreturn] = ACTIONS(6786), - [anon_sym_noreturn] = ACTIONS(6786), - [anon_sym__Nonnull] = ACTIONS(6786), - [anon_sym_mutable] = ACTIONS(6786), - [anon_sym_constinit] = ACTIONS(6786), - [anon_sym_consteval] = ACTIONS(6786), - [anon_sym_alignas] = ACTIONS(6786), - [anon_sym__Alignas] = ACTIONS(6786), - [anon_sym_QMARK] = ACTIONS(6788), - [anon_sym_STAR_EQ] = ACTIONS(6788), - [anon_sym_SLASH_EQ] = ACTIONS(6788), - [anon_sym_PERCENT_EQ] = ACTIONS(6788), - [anon_sym_PLUS_EQ] = ACTIONS(6788), - [anon_sym_DASH_EQ] = ACTIONS(6788), - [anon_sym_LT_LT_EQ] = ACTIONS(6788), - [anon_sym_GT_GT_EQ] = ACTIONS(6788), - [anon_sym_AMP_EQ] = ACTIONS(6788), - [anon_sym_CARET_EQ] = ACTIONS(6788), - [anon_sym_PIPE_EQ] = ACTIONS(6788), - [anon_sym_and_eq] = ACTIONS(6786), - [anon_sym_or_eq] = ACTIONS(6786), - [anon_sym_xor_eq] = ACTIONS(6786), - [anon_sym_LT_EQ_GT] = ACTIONS(6788), - [anon_sym_or] = ACTIONS(6786), - [anon_sym_and] = ACTIONS(6786), - [anon_sym_bitor] = ACTIONS(6786), - [anon_sym_xor] = ACTIONS(6786), - [anon_sym_bitand] = ACTIONS(6786), - [anon_sym_not_eq] = ACTIONS(6786), - [anon_sym_DASH_DASH] = ACTIONS(6788), - [anon_sym_PLUS_PLUS] = ACTIONS(6788), - [anon_sym_asm] = ACTIONS(6786), - [anon_sym___asm__] = ACTIONS(6786), - [anon_sym___asm] = ACTIONS(6786), - [anon_sym_DOT] = ACTIONS(6786), - [anon_sym_DOT_STAR] = ACTIONS(6788), - [anon_sym_DASH_GT] = ACTIONS(6788), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6786), - [anon_sym_override] = ACTIONS(6786), - [anon_sym_noexcept] = ACTIONS(6786), - [anon_sym_throw] = ACTIONS(6786), - [anon_sym_requires] = ACTIONS(6786), - [anon_sym_COLON_RBRACK] = ACTIONS(6788), - }, - [STATE(1959)] = { - [sym_identifier] = ACTIONS(6790), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6792), - [anon_sym_COMMA] = ACTIONS(6792), - [anon_sym_RPAREN] = ACTIONS(6792), - [aux_sym_preproc_if_token2] = ACTIONS(6792), - [aux_sym_preproc_else_token1] = ACTIONS(6792), - [aux_sym_preproc_elif_token1] = ACTIONS(6790), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6792), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6792), - [anon_sym_LPAREN2] = ACTIONS(6792), - [anon_sym_DASH] = ACTIONS(6790), - [anon_sym_PLUS] = ACTIONS(6790), - [anon_sym_STAR] = ACTIONS(6790), - [anon_sym_SLASH] = ACTIONS(6790), - [anon_sym_PERCENT] = ACTIONS(6790), - [anon_sym_PIPE_PIPE] = ACTIONS(6792), - [anon_sym_AMP_AMP] = ACTIONS(6792), - [anon_sym_PIPE] = ACTIONS(6790), - [anon_sym_CARET] = ACTIONS(6790), - [anon_sym_AMP] = ACTIONS(6790), - [anon_sym_EQ_EQ] = ACTIONS(6792), - [anon_sym_BANG_EQ] = ACTIONS(6792), - [anon_sym_GT] = ACTIONS(6790), - [anon_sym_GT_EQ] = ACTIONS(6792), - [anon_sym_LT_EQ] = ACTIONS(6790), - [anon_sym_LT] = ACTIONS(6790), - [anon_sym_LT_LT] = ACTIONS(6790), - [anon_sym_GT_GT] = ACTIONS(6790), - [anon_sym_SEMI] = ACTIONS(6792), - [anon_sym___extension__] = ACTIONS(6790), - [anon_sym___attribute__] = ACTIONS(6790), - [anon_sym___attribute] = ACTIONS(6790), - [anon_sym_COLON] = ACTIONS(6790), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6792), - [anon_sym_RBRACE] = ACTIONS(6792), - [anon_sym_LBRACK] = ACTIONS(6790), - [anon_sym_EQ] = ACTIONS(6790), - [anon_sym_const] = ACTIONS(6790), - [anon_sym_constexpr] = ACTIONS(6790), - [anon_sym_volatile] = ACTIONS(6790), - [anon_sym_restrict] = ACTIONS(6790), - [anon_sym___restrict__] = ACTIONS(6790), - [anon_sym__Atomic] = ACTIONS(6790), - [anon_sym__Noreturn] = ACTIONS(6790), - [anon_sym_noreturn] = ACTIONS(6790), - [anon_sym__Nonnull] = ACTIONS(6790), - [anon_sym_mutable] = ACTIONS(6790), - [anon_sym_constinit] = ACTIONS(6790), - [anon_sym_consteval] = ACTIONS(6790), - [anon_sym_alignas] = ACTIONS(6790), - [anon_sym__Alignas] = ACTIONS(6790), - [anon_sym_QMARK] = ACTIONS(6792), - [anon_sym_STAR_EQ] = ACTIONS(6792), - [anon_sym_SLASH_EQ] = ACTIONS(6792), - [anon_sym_PERCENT_EQ] = ACTIONS(6792), - [anon_sym_PLUS_EQ] = ACTIONS(6792), - [anon_sym_DASH_EQ] = ACTIONS(6792), - [anon_sym_LT_LT_EQ] = ACTIONS(6792), - [anon_sym_GT_GT_EQ] = ACTIONS(6792), - [anon_sym_AMP_EQ] = ACTIONS(6792), - [anon_sym_CARET_EQ] = ACTIONS(6792), - [anon_sym_PIPE_EQ] = ACTIONS(6792), - [anon_sym_and_eq] = ACTIONS(6790), - [anon_sym_or_eq] = ACTIONS(6790), - [anon_sym_xor_eq] = ACTIONS(6790), - [anon_sym_LT_EQ_GT] = ACTIONS(6792), - [anon_sym_or] = ACTIONS(6790), - [anon_sym_and] = ACTIONS(6790), - [anon_sym_bitor] = ACTIONS(6790), - [anon_sym_xor] = ACTIONS(6790), - [anon_sym_bitand] = ACTIONS(6790), - [anon_sym_not_eq] = ACTIONS(6790), - [anon_sym_DASH_DASH] = ACTIONS(6792), - [anon_sym_PLUS_PLUS] = ACTIONS(6792), - [anon_sym_asm] = ACTIONS(6790), - [anon_sym___asm__] = ACTIONS(6790), - [anon_sym___asm] = ACTIONS(6790), - [anon_sym_DOT] = ACTIONS(6790), - [anon_sym_DOT_STAR] = ACTIONS(6792), - [anon_sym_DASH_GT] = ACTIONS(6792), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6790), - [anon_sym_override] = ACTIONS(6790), - [anon_sym_noexcept] = ACTIONS(6790), - [anon_sym_throw] = ACTIONS(6790), - [anon_sym_requires] = ACTIONS(6790), - [anon_sym_COLON_RBRACK] = ACTIONS(6792), - }, - [STATE(1960)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2578), - [sym_ms_pointer_modifier] = STATE(2341), - [sym__abstract_declarator] = STATE(4549), - [sym_abstract_parenthesized_declarator] = STATE(4966), - [sym_abstract_pointer_declarator] = STATE(4966), - [sym_abstract_function_declarator] = STATE(4966), - [sym_abstract_array_declarator] = STATE(4966), - [sym_type_qualifier] = STATE(2235), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1872), - [sym_abstract_reference_declarator] = STATE(4966), - [sym__function_declarator_seq] = STATE(4975), - [aux_sym__type_definition_type_repeat1] = STATE(2235), - [aux_sym_pointer_declarator_repeat1] = STATE(2341), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6766), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6768), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(6770), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(6772), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym___extension__] = ACTIONS(6774), - [sym_ms_restrict_modifier] = ACTIONS(6776), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6778), - [sym_ms_signed_ptr_modifier] = ACTIONS(6778), - [anon_sym__unaligned] = ACTIONS(6780), - [anon_sym___unaligned] = ACTIONS(6780), - [anon_sym_LBRACK] = ACTIONS(6782), - [anon_sym_RBRACK] = ACTIONS(6497), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6774), - [anon_sym_volatile] = ACTIONS(6774), - [anon_sym_restrict] = ACTIONS(6774), - [anon_sym___restrict__] = ACTIONS(6774), - [anon_sym__Atomic] = ACTIONS(6774), - [anon_sym__Noreturn] = ACTIONS(6774), - [anon_sym_noreturn] = ACTIONS(6774), - [anon_sym__Nonnull] = ACTIONS(6774), - [anon_sym_mutable] = ACTIONS(6774), - [anon_sym_constinit] = ACTIONS(6774), - [anon_sym_consteval] = ACTIONS(6774), - [anon_sym_alignas] = ACTIONS(6784), - [anon_sym__Alignas] = ACTIONS(6784), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6497), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_and_eq] = ACTIONS(6497), - [anon_sym_or_eq] = ACTIONS(6497), - [anon_sym_xor_eq] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6497), - [anon_sym_override] = ACTIONS(6497), - [anon_sym_requires] = ACTIONS(6497), - }, - [STATE(1961)] = { - [sym_identifier] = ACTIONS(6794), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6796), - [anon_sym_COMMA] = ACTIONS(6796), - [anon_sym_RPAREN] = ACTIONS(6796), - [aux_sym_preproc_if_token2] = ACTIONS(6796), - [aux_sym_preproc_else_token1] = ACTIONS(6796), - [aux_sym_preproc_elif_token1] = ACTIONS(6794), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6796), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6796), - [anon_sym_LPAREN2] = ACTIONS(6796), - [anon_sym_DASH] = ACTIONS(6794), - [anon_sym_PLUS] = ACTIONS(6794), - [anon_sym_STAR] = ACTIONS(6794), - [anon_sym_SLASH] = ACTIONS(6794), - [anon_sym_PERCENT] = ACTIONS(6794), - [anon_sym_PIPE_PIPE] = ACTIONS(6796), - [anon_sym_AMP_AMP] = ACTIONS(6796), - [anon_sym_PIPE] = ACTIONS(6794), - [anon_sym_CARET] = ACTIONS(6794), - [anon_sym_AMP] = ACTIONS(6794), - [anon_sym_EQ_EQ] = ACTIONS(6796), - [anon_sym_BANG_EQ] = ACTIONS(6796), - [anon_sym_GT] = ACTIONS(6794), - [anon_sym_GT_EQ] = ACTIONS(6796), - [anon_sym_LT_EQ] = ACTIONS(6794), - [anon_sym_LT] = ACTIONS(6794), - [anon_sym_LT_LT] = ACTIONS(6794), - [anon_sym_GT_GT] = ACTIONS(6794), - [anon_sym_SEMI] = ACTIONS(6796), - [anon_sym___extension__] = ACTIONS(6794), - [anon_sym___attribute__] = ACTIONS(6794), - [anon_sym___attribute] = ACTIONS(6794), - [anon_sym_COLON] = ACTIONS(6794), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6796), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6796), - [anon_sym_RBRACE] = ACTIONS(6796), - [anon_sym_LBRACK] = ACTIONS(6794), - [anon_sym_EQ] = ACTIONS(6794), - [anon_sym_const] = ACTIONS(6794), - [anon_sym_constexpr] = ACTIONS(6794), - [anon_sym_volatile] = ACTIONS(6794), - [anon_sym_restrict] = ACTIONS(6794), - [anon_sym___restrict__] = ACTIONS(6794), - [anon_sym__Atomic] = ACTIONS(6794), - [anon_sym__Noreturn] = ACTIONS(6794), - [anon_sym_noreturn] = ACTIONS(6794), - [anon_sym__Nonnull] = ACTIONS(6794), - [anon_sym_mutable] = ACTIONS(6794), - [anon_sym_constinit] = ACTIONS(6794), - [anon_sym_consteval] = ACTIONS(6794), - [anon_sym_alignas] = ACTIONS(6794), - [anon_sym__Alignas] = ACTIONS(6794), - [anon_sym_QMARK] = ACTIONS(6796), - [anon_sym_STAR_EQ] = ACTIONS(6796), - [anon_sym_SLASH_EQ] = ACTIONS(6796), - [anon_sym_PERCENT_EQ] = ACTIONS(6796), - [anon_sym_PLUS_EQ] = ACTIONS(6796), - [anon_sym_DASH_EQ] = ACTIONS(6796), - [anon_sym_LT_LT_EQ] = ACTIONS(6796), - [anon_sym_GT_GT_EQ] = ACTIONS(6796), - [anon_sym_AMP_EQ] = ACTIONS(6796), - [anon_sym_CARET_EQ] = ACTIONS(6796), - [anon_sym_PIPE_EQ] = ACTIONS(6796), - [anon_sym_and_eq] = ACTIONS(6794), - [anon_sym_or_eq] = ACTIONS(6794), - [anon_sym_xor_eq] = ACTIONS(6794), - [anon_sym_LT_EQ_GT] = ACTIONS(6796), - [anon_sym_or] = ACTIONS(6794), - [anon_sym_and] = ACTIONS(6794), - [anon_sym_bitor] = ACTIONS(6794), - [anon_sym_xor] = ACTIONS(6794), - [anon_sym_bitand] = ACTIONS(6794), - [anon_sym_not_eq] = ACTIONS(6794), - [anon_sym_DASH_DASH] = ACTIONS(6796), - [anon_sym_PLUS_PLUS] = ACTIONS(6796), - [anon_sym_asm] = ACTIONS(6794), - [anon_sym___asm__] = ACTIONS(6794), - [anon_sym___asm] = ACTIONS(6794), - [anon_sym_DOT] = ACTIONS(6794), - [anon_sym_DOT_STAR] = ACTIONS(6796), - [anon_sym_DASH_GT] = ACTIONS(6796), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6794), - [anon_sym_override] = ACTIONS(6794), - [anon_sym_noexcept] = ACTIONS(6794), - [anon_sym_throw] = ACTIONS(6794), - [anon_sym_requires] = ACTIONS(6794), - [anon_sym_COLON_RBRACK] = ACTIONS(6796), - }, - [STATE(1962)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2589), - [sym_ms_pointer_modifier] = STATE(1952), - [sym__abstract_declarator] = STATE(4535), - [sym_abstract_parenthesized_declarator] = STATE(4956), - [sym_abstract_pointer_declarator] = STATE(4956), - [sym_abstract_function_declarator] = STATE(4956), - [sym_abstract_array_declarator] = STATE(4956), - [sym_type_qualifier] = STATE(2227), - [sym_alignas_qualifier] = STATE(2295), - [sym_parameter_list] = STATE(1874), - [sym_abstract_reference_declarator] = STATE(4956), - [sym__function_declarator_seq] = STATE(4970), - [aux_sym__type_definition_type_repeat1] = STATE(2227), - [aux_sym_pointer_declarator_repeat1] = STATE(1952), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(6724), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_PLUS] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(6726), - [anon_sym_SLASH] = ACTIONS(6457), - [anon_sym_PERCENT] = ACTIONS(6457), - [anon_sym_PIPE_PIPE] = ACTIONS(6459), - [anon_sym_AMP_AMP] = ACTIONS(6728), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_CARET] = ACTIONS(6457), - [anon_sym_AMP] = ACTIONS(6730), - [anon_sym_EQ_EQ] = ACTIONS(6459), - [anon_sym_BANG_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_GT_EQ] = ACTIONS(6457), - [anon_sym_LT_EQ] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_LT_LT] = ACTIONS(6457), - [anon_sym_GT_GT] = ACTIONS(6457), - [anon_sym___extension__] = ACTIONS(6732), - [sym_ms_restrict_modifier] = ACTIONS(6734), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6736), - [sym_ms_signed_ptr_modifier] = ACTIONS(6736), - [anon_sym__unaligned] = ACTIONS(6738), - [anon_sym___unaligned] = ACTIONS(6738), - [anon_sym_LBRACK] = ACTIONS(6740), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_const] = ACTIONS(6742), - [anon_sym_constexpr] = ACTIONS(6732), - [anon_sym_volatile] = ACTIONS(6732), - [anon_sym_restrict] = ACTIONS(6732), - [anon_sym___restrict__] = ACTIONS(6732), - [anon_sym__Atomic] = ACTIONS(6732), - [anon_sym__Noreturn] = ACTIONS(6732), - [anon_sym_noreturn] = ACTIONS(6732), - [anon_sym__Nonnull] = ACTIONS(6732), - [anon_sym_mutable] = ACTIONS(6732), - [anon_sym_constinit] = ACTIONS(6732), - [anon_sym_consteval] = ACTIONS(6732), - [anon_sym_alignas] = ACTIONS(6744), - [anon_sym__Alignas] = ACTIONS(6744), - [anon_sym_QMARK] = ACTIONS(6459), - [anon_sym_STAR_EQ] = ACTIONS(6459), - [anon_sym_SLASH_EQ] = ACTIONS(6459), - [anon_sym_PERCENT_EQ] = ACTIONS(6459), - [anon_sym_PLUS_EQ] = ACTIONS(6459), - [anon_sym_DASH_EQ] = ACTIONS(6459), - [anon_sym_LT_LT_EQ] = ACTIONS(6459), - [anon_sym_GT_GT_EQ] = ACTIONS(6457), - [anon_sym_AMP_EQ] = ACTIONS(6459), - [anon_sym_CARET_EQ] = ACTIONS(6459), - [anon_sym_PIPE_EQ] = ACTIONS(6459), - [anon_sym_and_eq] = ACTIONS(6459), - [anon_sym_or_eq] = ACTIONS(6459), - [anon_sym_xor_eq] = ACTIONS(6459), - [anon_sym_LT_EQ_GT] = ACTIONS(6459), - [anon_sym_or] = ACTIONS(6457), - [anon_sym_and] = ACTIONS(6457), - [anon_sym_bitor] = ACTIONS(6459), - [anon_sym_xor] = ACTIONS(6457), - [anon_sym_bitand] = ACTIONS(6459), - [anon_sym_not_eq] = ACTIONS(6459), - [anon_sym_DASH_DASH] = ACTIONS(6459), - [anon_sym_PLUS_PLUS] = ACTIONS(6459), - [anon_sym_DOT] = ACTIONS(6457), - [anon_sym_DOT_STAR] = ACTIONS(6459), - [anon_sym_DASH_GT] = ACTIONS(6459), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6459), - [anon_sym_override] = ACTIONS(6459), - [anon_sym_GT2] = ACTIONS(6459), - [anon_sym_requires] = ACTIONS(6459), - }, - [STATE(1963)] = { - [sym_decltype_auto] = STATE(2101), - [sym_identifier] = ACTIONS(6798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [aux_sym_preproc_if_token2] = ACTIONS(6800), - [aux_sym_preproc_else_token1] = ACTIONS(6800), - [aux_sym_preproc_elif_token1] = ACTIONS(6798), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym_SEMI] = ACTIONS(6800), - [anon_sym___extension__] = ACTIONS(6798), - [anon_sym___attribute__] = ACTIONS(6798), - [anon_sym___attribute] = ACTIONS(6798), - [anon_sym_COLON] = ACTIONS(6798), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_RBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6798), - [anon_sym_volatile] = ACTIONS(6798), - [anon_sym_restrict] = ACTIONS(6798), - [anon_sym___restrict__] = ACTIONS(6798), - [anon_sym__Atomic] = ACTIONS(6798), - [anon_sym__Noreturn] = ACTIONS(6798), - [anon_sym_noreturn] = ACTIONS(6798), - [anon_sym__Nonnull] = ACTIONS(6798), - [anon_sym_mutable] = ACTIONS(6798), - [anon_sym_constinit] = ACTIONS(6798), - [anon_sym_consteval] = ACTIONS(6798), - [anon_sym_alignas] = ACTIONS(6798), - [anon_sym__Alignas] = ACTIONS(6798), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6798), - [anon_sym_or_eq] = ACTIONS(6798), - [anon_sym_xor_eq] = ACTIONS(6798), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6798), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6798), - [anon_sym_not_eq] = ACTIONS(6798), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6804), - [anon_sym_decltype] = ACTIONS(6437), - [anon_sym_final] = ACTIONS(6798), - [anon_sym_override] = ACTIONS(6798), - [anon_sym_requires] = ACTIONS(6798), - [anon_sym_COLON_RBRACK] = ACTIONS(6800), - }, - [STATE(1964)] = { - [sym_identifier] = ACTIONS(6806), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6808), - [anon_sym_COMMA] = ACTIONS(6808), - [anon_sym_RPAREN] = ACTIONS(6808), - [aux_sym_preproc_if_token2] = ACTIONS(6808), - [aux_sym_preproc_else_token1] = ACTIONS(6808), - [aux_sym_preproc_elif_token1] = ACTIONS(6806), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6808), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6808), - [anon_sym_LPAREN2] = ACTIONS(6808), - [anon_sym_DASH] = ACTIONS(6806), - [anon_sym_PLUS] = ACTIONS(6806), - [anon_sym_STAR] = ACTIONS(6806), - [anon_sym_SLASH] = ACTIONS(6806), - [anon_sym_PERCENT] = ACTIONS(6806), - [anon_sym_PIPE_PIPE] = ACTIONS(6808), - [anon_sym_AMP_AMP] = ACTIONS(6808), - [anon_sym_PIPE] = ACTIONS(6806), - [anon_sym_CARET] = ACTIONS(6806), - [anon_sym_AMP] = ACTIONS(6806), - [anon_sym_EQ_EQ] = ACTIONS(6808), - [anon_sym_BANG_EQ] = ACTIONS(6808), - [anon_sym_GT] = ACTIONS(6806), - [anon_sym_GT_EQ] = ACTIONS(6808), - [anon_sym_LT_EQ] = ACTIONS(6806), - [anon_sym_LT] = ACTIONS(6806), - [anon_sym_LT_LT] = ACTIONS(6806), - [anon_sym_GT_GT] = ACTIONS(6806), - [anon_sym_SEMI] = ACTIONS(6808), - [anon_sym___extension__] = ACTIONS(6806), - [anon_sym___attribute__] = ACTIONS(6806), - [anon_sym___attribute] = ACTIONS(6806), - [anon_sym_COLON] = ACTIONS(6806), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6808), - [sym_ms_restrict_modifier] = ACTIONS(6806), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6806), - [sym_ms_signed_ptr_modifier] = ACTIONS(6806), - [anon_sym__unaligned] = ACTIONS(6806), - [anon_sym___unaligned] = ACTIONS(6806), - [anon_sym_RBRACE] = ACTIONS(6808), - [anon_sym_LBRACK] = ACTIONS(6808), - [anon_sym_EQ] = ACTIONS(6806), - [anon_sym_const] = ACTIONS(6806), - [anon_sym_constexpr] = ACTIONS(6806), - [anon_sym_volatile] = ACTIONS(6806), - [anon_sym_restrict] = ACTIONS(6806), - [anon_sym___restrict__] = ACTIONS(6806), - [anon_sym__Atomic] = ACTIONS(6806), - [anon_sym__Noreturn] = ACTIONS(6806), - [anon_sym_noreturn] = ACTIONS(6806), - [anon_sym__Nonnull] = ACTIONS(6806), - [anon_sym_mutable] = ACTIONS(6806), - [anon_sym_constinit] = ACTIONS(6806), - [anon_sym_consteval] = ACTIONS(6806), - [anon_sym_alignas] = ACTIONS(6806), - [anon_sym__Alignas] = ACTIONS(6806), - [anon_sym_QMARK] = ACTIONS(6808), - [anon_sym_STAR_EQ] = ACTIONS(6808), - [anon_sym_SLASH_EQ] = ACTIONS(6808), - [anon_sym_PERCENT_EQ] = ACTIONS(6808), - [anon_sym_PLUS_EQ] = ACTIONS(6808), - [anon_sym_DASH_EQ] = ACTIONS(6808), - [anon_sym_LT_LT_EQ] = ACTIONS(6808), - [anon_sym_GT_GT_EQ] = ACTIONS(6808), - [anon_sym_AMP_EQ] = ACTIONS(6808), - [anon_sym_CARET_EQ] = ACTIONS(6808), - [anon_sym_PIPE_EQ] = ACTIONS(6808), - [anon_sym_and_eq] = ACTIONS(6806), - [anon_sym_or_eq] = ACTIONS(6806), - [anon_sym_xor_eq] = ACTIONS(6806), - [anon_sym_LT_EQ_GT] = ACTIONS(6808), - [anon_sym_or] = ACTIONS(6806), - [anon_sym_and] = ACTIONS(6806), - [anon_sym_bitor] = ACTIONS(6806), - [anon_sym_xor] = ACTIONS(6806), - [anon_sym_bitand] = ACTIONS(6806), - [anon_sym_not_eq] = ACTIONS(6806), - [anon_sym_DASH_DASH] = ACTIONS(6808), - [anon_sym_PLUS_PLUS] = ACTIONS(6808), - [anon_sym_DOT] = ACTIONS(6806), - [anon_sym_DOT_STAR] = ACTIONS(6808), - [anon_sym_DASH_GT] = ACTIONS(6808), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6806), - [anon_sym_override] = ACTIONS(6806), - [anon_sym_requires] = ACTIONS(6806), - [anon_sym_COLON_RBRACK] = ACTIONS(6808), - }, - [STATE(1965)] = { - [sym_type_qualifier] = STATE(1972), - [sym_alignas_qualifier] = STATE(1953), - [aux_sym__type_definition_type_repeat1] = STATE(1972), - [aux_sym_sized_type_specifier_repeat1] = STATE(2039), - [sym_identifier] = ACTIONS(6810), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), - [anon_sym_COMMA] = ACTIONS(6812), - [anon_sym_RPAREN] = ACTIONS(6812), - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_STAR] = ACTIONS(6814), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_PERCENT] = ACTIONS(6814), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_CARET] = ACTIONS(6814), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_LT_LT] = ACTIONS(6814), - [anon_sym_GT_GT] = ACTIONS(6814), - [anon_sym_SEMI] = ACTIONS(6812), - [anon_sym___extension__] = ACTIONS(6816), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym_COLON] = ACTIONS(6814), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6812), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_RBRACE] = ACTIONS(6812), - [anon_sym_signed] = ACTIONS(6819), - [anon_sym_unsigned] = ACTIONS(6819), - [anon_sym_long] = ACTIONS(6819), - [anon_sym_short] = ACTIONS(6819), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_EQ] = ACTIONS(6814), - [anon_sym_const] = ACTIONS(6816), - [anon_sym_constexpr] = ACTIONS(6816), - [anon_sym_volatile] = ACTIONS(6816), - [anon_sym_restrict] = ACTIONS(6816), - [anon_sym___restrict__] = ACTIONS(6816), - [anon_sym__Atomic] = ACTIONS(6816), - [anon_sym__Noreturn] = ACTIONS(6816), - [anon_sym_noreturn] = ACTIONS(6816), - [anon_sym__Nonnull] = ACTIONS(6816), - [anon_sym_mutable] = ACTIONS(6816), - [anon_sym_constinit] = ACTIONS(6816), - [anon_sym_consteval] = ACTIONS(6816), - [anon_sym_alignas] = ACTIONS(6821), - [anon_sym__Alignas] = ACTIONS(6821), - [sym_primitive_type] = ACTIONS(6824), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_STAR_EQ] = ACTIONS(6812), - [anon_sym_SLASH_EQ] = ACTIONS(6812), - [anon_sym_PERCENT_EQ] = ACTIONS(6812), - [anon_sym_PLUS_EQ] = ACTIONS(6812), - [anon_sym_DASH_EQ] = ACTIONS(6812), - [anon_sym_LT_LT_EQ] = ACTIONS(6812), - [anon_sym_GT_GT_EQ] = ACTIONS(6812), - [anon_sym_AMP_EQ] = ACTIONS(6812), - [anon_sym_CARET_EQ] = ACTIONS(6812), - [anon_sym_PIPE_EQ] = ACTIONS(6812), - [anon_sym_and_eq] = ACTIONS(6814), - [anon_sym_or_eq] = ACTIONS(6814), - [anon_sym_xor_eq] = ACTIONS(6814), - [anon_sym_LT_EQ_GT] = ACTIONS(6812), - [anon_sym_or] = ACTIONS(6814), - [anon_sym_and] = ACTIONS(6814), - [anon_sym_bitor] = ACTIONS(6814), - [anon_sym_xor] = ACTIONS(6814), - [anon_sym_bitand] = ACTIONS(6814), - [anon_sym_not_eq] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6814), - [anon_sym_DOT_STAR] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6812), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6814), - [anon_sym_override] = ACTIONS(6814), - [anon_sym_requires] = ACTIONS(6814), - [anon_sym_COLON_RBRACK] = ACTIONS(6812), - }, - [STATE(1966)] = { - [sym_attribute_specifier] = STATE(2080), - [sym_field_declaration_list] = STATE(2035), - [sym_virtual_specifier] = STATE(9353), - [sym_base_class_clause] = STATE(10352), - [sym_identifier] = ACTIONS(6826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(6828), - [aux_sym_preproc_if_token2] = ACTIONS(6828), - [aux_sym_preproc_else_token1] = ACTIONS(6828), - [aux_sym_preproc_elif_token1] = ACTIONS(6826), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6828), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6828), - [anon_sym_LPAREN2] = ACTIONS(6828), - [anon_sym_DASH] = ACTIONS(6826), - [anon_sym_PLUS] = ACTIONS(6826), - [anon_sym_STAR] = ACTIONS(6826), - [anon_sym_SLASH] = ACTIONS(6826), - [anon_sym_PERCENT] = ACTIONS(6826), - [anon_sym_PIPE_PIPE] = ACTIONS(6828), - [anon_sym_AMP_AMP] = ACTIONS(6828), - [anon_sym_PIPE] = ACTIONS(6826), - [anon_sym_CARET] = ACTIONS(6826), - [anon_sym_AMP] = ACTIONS(6826), - [anon_sym_EQ_EQ] = ACTIONS(6828), - [anon_sym_BANG_EQ] = ACTIONS(6828), - [anon_sym_GT] = ACTIONS(6826), - [anon_sym_GT_EQ] = ACTIONS(6828), - [anon_sym_LT_EQ] = ACTIONS(6826), - [anon_sym_LT] = ACTIONS(6826), - [anon_sym_LT_LT] = ACTIONS(6826), - [anon_sym_GT_GT] = ACTIONS(6826), - [anon_sym_SEMI] = ACTIONS(6828), - [anon_sym___extension__] = ACTIONS(6826), - [anon_sym___attribute__] = ACTIONS(6830), - [anon_sym___attribute] = ACTIONS(6830), - [anon_sym_COLON] = ACTIONS(6832), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6828), - [anon_sym_LBRACE] = ACTIONS(6834), - [anon_sym_RBRACE] = ACTIONS(6828), - [anon_sym_LBRACK] = ACTIONS(6828), - [anon_sym_EQ] = ACTIONS(6826), - [anon_sym_const] = ACTIONS(6826), - [anon_sym_constexpr] = ACTIONS(6826), - [anon_sym_volatile] = ACTIONS(6826), - [anon_sym_restrict] = ACTIONS(6826), - [anon_sym___restrict__] = ACTIONS(6826), - [anon_sym__Atomic] = ACTIONS(6826), - [anon_sym__Noreturn] = ACTIONS(6826), - [anon_sym_noreturn] = ACTIONS(6826), - [anon_sym__Nonnull] = ACTIONS(6826), - [anon_sym_mutable] = ACTIONS(6826), - [anon_sym_constinit] = ACTIONS(6826), - [anon_sym_consteval] = ACTIONS(6826), - [anon_sym_alignas] = ACTIONS(6826), - [anon_sym__Alignas] = ACTIONS(6826), - [anon_sym_QMARK] = ACTIONS(6828), - [anon_sym_STAR_EQ] = ACTIONS(6828), - [anon_sym_SLASH_EQ] = ACTIONS(6828), - [anon_sym_PERCENT_EQ] = ACTIONS(6828), - [anon_sym_PLUS_EQ] = ACTIONS(6828), - [anon_sym_DASH_EQ] = ACTIONS(6828), - [anon_sym_LT_LT_EQ] = ACTIONS(6828), - [anon_sym_GT_GT_EQ] = ACTIONS(6828), - [anon_sym_AMP_EQ] = ACTIONS(6828), - [anon_sym_CARET_EQ] = ACTIONS(6828), - [anon_sym_PIPE_EQ] = ACTIONS(6828), - [anon_sym_and_eq] = ACTIONS(6826), - [anon_sym_or_eq] = ACTIONS(6826), - [anon_sym_xor_eq] = ACTIONS(6826), - [anon_sym_LT_EQ_GT] = ACTIONS(6828), - [anon_sym_or] = ACTIONS(6826), - [anon_sym_and] = ACTIONS(6826), - [anon_sym_bitor] = ACTIONS(6826), - [anon_sym_xor] = ACTIONS(6826), - [anon_sym_bitand] = ACTIONS(6826), - [anon_sym_not_eq] = ACTIONS(6826), - [anon_sym_DASH_DASH] = ACTIONS(6828), - [anon_sym_PLUS_PLUS] = ACTIONS(6828), - [anon_sym_DOT] = ACTIONS(6826), - [anon_sym_DOT_STAR] = ACTIONS(6828), - [anon_sym_DASH_GT] = ACTIONS(6828), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6836), - [anon_sym_override] = ACTIONS(6836), - [anon_sym_requires] = ACTIONS(6826), - [anon_sym_COLON_RBRACK] = ACTIONS(6828), - }, - [STATE(1967)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(1975), - [sym_ms_pointer_modifier] = STATE(1928), - [sym__abstract_declarator] = STATE(4694), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2270), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1871), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2270), - [aux_sym_pointer_declarator_repeat1] = STATE(1928), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6838), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(6840), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(6842), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym_SEMI] = ACTIONS(6497), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym___attribute__] = ACTIONS(6497), - [anon_sym___attribute] = ACTIONS(6495), - [sym_ms_restrict_modifier] = ACTIONS(6471), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6487), - [sym_ms_signed_ptr_modifier] = ACTIONS(6487), - [anon_sym__unaligned] = ACTIONS(6489), - [anon_sym___unaligned] = ACTIONS(6489), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6497), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_and_eq] = ACTIONS(6497), - [anon_sym_or_eq] = ACTIONS(6497), - [anon_sym_xor_eq] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - }, - [STATE(1968)] = { - [sym_identifier] = ACTIONS(6844), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6846), - [anon_sym_COMMA] = ACTIONS(6846), - [anon_sym_RPAREN] = ACTIONS(6846), - [anon_sym_LPAREN2] = ACTIONS(6846), - [anon_sym_TILDE] = ACTIONS(6846), - [anon_sym_DASH] = ACTIONS(6844), - [anon_sym_PLUS] = ACTIONS(6844), - [anon_sym_STAR] = ACTIONS(6844), - [anon_sym_SLASH] = ACTIONS(6844), - [anon_sym_PERCENT] = ACTIONS(6844), - [anon_sym_PIPE_PIPE] = ACTIONS(6846), - [anon_sym_AMP_AMP] = ACTIONS(6846), - [anon_sym_PIPE] = ACTIONS(6844), - [anon_sym_CARET] = ACTIONS(6844), - [anon_sym_AMP] = ACTIONS(6844), - [anon_sym_EQ_EQ] = ACTIONS(6846), - [anon_sym_BANG_EQ] = ACTIONS(6846), - [anon_sym_GT] = ACTIONS(6844), - [anon_sym_GT_EQ] = ACTIONS(6846), - [anon_sym_LT_EQ] = ACTIONS(6844), - [anon_sym_LT] = ACTIONS(6844), - [anon_sym_LT_LT] = ACTIONS(6844), - [anon_sym_GT_GT] = ACTIONS(6844), - [anon_sym___extension__] = ACTIONS(6844), - [anon_sym_virtual] = ACTIONS(6844), - [anon_sym_extern] = ACTIONS(6844), - [anon_sym___attribute__] = ACTIONS(6844), - [anon_sym___attribute] = ACTIONS(6844), - [anon_sym_COLON_COLON] = ACTIONS(6846), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6846), - [anon_sym___declspec] = ACTIONS(6844), - [anon_sym___based] = ACTIONS(6844), - [anon_sym_LBRACE] = ACTIONS(6846), - [anon_sym_LBRACK] = ACTIONS(6844), - [anon_sym_static] = ACTIONS(6844), - [anon_sym_EQ] = ACTIONS(6844), - [anon_sym_register] = ACTIONS(6844), - [anon_sym_inline] = ACTIONS(6844), - [anon_sym___inline] = ACTIONS(6844), - [anon_sym___inline__] = ACTIONS(6844), - [anon_sym___forceinline] = ACTIONS(6844), - [anon_sym_thread_local] = ACTIONS(6844), - [anon_sym___thread] = ACTIONS(6844), - [anon_sym_const] = ACTIONS(6844), - [anon_sym_constexpr] = ACTIONS(6844), - [anon_sym_volatile] = ACTIONS(6844), - [anon_sym_restrict] = ACTIONS(6844), - [anon_sym___restrict__] = ACTIONS(6844), - [anon_sym__Atomic] = ACTIONS(6844), - [anon_sym__Noreturn] = ACTIONS(6844), - [anon_sym_noreturn] = ACTIONS(6844), - [anon_sym__Nonnull] = ACTIONS(6844), - [anon_sym_mutable] = ACTIONS(6844), - [anon_sym_constinit] = ACTIONS(6844), - [anon_sym_consteval] = ACTIONS(6844), - [anon_sym_alignas] = ACTIONS(6844), - [anon_sym__Alignas] = ACTIONS(6844), - [anon_sym_QMARK] = ACTIONS(6846), - [anon_sym_STAR_EQ] = ACTIONS(6846), - [anon_sym_SLASH_EQ] = ACTIONS(6846), - [anon_sym_PERCENT_EQ] = ACTIONS(6846), - [anon_sym_PLUS_EQ] = ACTIONS(6846), - [anon_sym_DASH_EQ] = ACTIONS(6846), - [anon_sym_LT_LT_EQ] = ACTIONS(6846), - [anon_sym_GT_GT_EQ] = ACTIONS(6846), - [anon_sym_AMP_EQ] = ACTIONS(6846), - [anon_sym_CARET_EQ] = ACTIONS(6846), - [anon_sym_PIPE_EQ] = ACTIONS(6846), - [anon_sym_LT_EQ_GT] = ACTIONS(6846), - [anon_sym_or] = ACTIONS(6844), - [anon_sym_and] = ACTIONS(6844), - [anon_sym_bitor] = ACTIONS(6844), - [anon_sym_xor] = ACTIONS(6844), - [anon_sym_bitand] = ACTIONS(6844), - [anon_sym_not_eq] = ACTIONS(6844), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DOT] = ACTIONS(6844), - [anon_sym_DOT_STAR] = ACTIONS(6846), - [anon_sym_DASH_GT] = ACTIONS(6844), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(6844), - [anon_sym_template] = ACTIONS(6844), - [anon_sym_operator] = ACTIONS(6844), - [anon_sym_DASH_GT_STAR] = ACTIONS(6846), - [anon_sym_LBRACK_COLON] = ACTIONS(6846), - }, - [STATE(1969)] = { - [sym_template_argument_list] = STATE(1995), - [sym_identifier] = ACTIONS(6201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6208), - [anon_sym_COMMA] = ACTIONS(6208), - [anon_sym_RPAREN] = ACTIONS(6208), - [aux_sym_preproc_if_token2] = ACTIONS(6208), - [aux_sym_preproc_else_token1] = ACTIONS(6208), - [aux_sym_preproc_elif_token1] = ACTIONS(6201), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6208), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6208), - [anon_sym_LPAREN2] = ACTIONS(6208), - [anon_sym_DASH] = ACTIONS(6201), - [anon_sym_PLUS] = ACTIONS(6201), - [anon_sym_STAR] = ACTIONS(6201), - [anon_sym_SLASH] = ACTIONS(6201), - [anon_sym_PERCENT] = ACTIONS(6201), - [anon_sym_PIPE_PIPE] = ACTIONS(6208), - [anon_sym_AMP_AMP] = ACTIONS(6208), - [anon_sym_PIPE] = ACTIONS(6201), - [anon_sym_CARET] = ACTIONS(6201), - [anon_sym_AMP] = ACTIONS(6201), - [anon_sym_EQ_EQ] = ACTIONS(6208), - [anon_sym_BANG_EQ] = ACTIONS(6208), - [anon_sym_GT] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6208), - [anon_sym_LT_EQ] = ACTIONS(6201), - [anon_sym_LT] = ACTIONS(6848), - [anon_sym_LT_LT] = ACTIONS(6201), - [anon_sym_GT_GT] = ACTIONS(6201), - [anon_sym_SEMI] = ACTIONS(6208), - [anon_sym___extension__] = ACTIONS(6201), - [anon_sym___attribute__] = ACTIONS(6201), - [anon_sym___attribute] = ACTIONS(6201), - [anon_sym_COLON] = ACTIONS(6201), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6208), - [anon_sym_LBRACE] = ACTIONS(6208), - [anon_sym_RBRACE] = ACTIONS(6208), - [anon_sym_LBRACK] = ACTIONS(6208), - [anon_sym_EQ] = ACTIONS(6201), - [anon_sym_const] = ACTIONS(6201), - [anon_sym_constexpr] = ACTIONS(6201), - [anon_sym_volatile] = ACTIONS(6201), - [anon_sym_restrict] = ACTIONS(6201), - [anon_sym___restrict__] = ACTIONS(6201), - [anon_sym__Atomic] = ACTIONS(6201), - [anon_sym__Noreturn] = ACTIONS(6201), - [anon_sym_noreturn] = ACTIONS(6201), - [anon_sym__Nonnull] = ACTIONS(6201), - [anon_sym_mutable] = ACTIONS(6201), - [anon_sym_constinit] = ACTIONS(6201), - [anon_sym_consteval] = ACTIONS(6201), - [anon_sym_alignas] = ACTIONS(6201), - [anon_sym__Alignas] = ACTIONS(6201), - [anon_sym_QMARK] = ACTIONS(6208), - [anon_sym_STAR_EQ] = ACTIONS(6208), - [anon_sym_SLASH_EQ] = ACTIONS(6208), - [anon_sym_PERCENT_EQ] = ACTIONS(6208), - [anon_sym_PLUS_EQ] = ACTIONS(6208), - [anon_sym_DASH_EQ] = ACTIONS(6208), - [anon_sym_LT_LT_EQ] = ACTIONS(6208), - [anon_sym_GT_GT_EQ] = ACTIONS(6208), - [anon_sym_AMP_EQ] = ACTIONS(6208), - [anon_sym_CARET_EQ] = ACTIONS(6208), - [anon_sym_PIPE_EQ] = ACTIONS(6208), - [anon_sym_and_eq] = ACTIONS(6201), - [anon_sym_or_eq] = ACTIONS(6201), - [anon_sym_xor_eq] = ACTIONS(6201), - [anon_sym_LT_EQ_GT] = ACTIONS(6208), - [anon_sym_or] = ACTIONS(6201), - [anon_sym_and] = ACTIONS(6201), - [anon_sym_bitor] = ACTIONS(6201), - [anon_sym_xor] = ACTIONS(6201), - [anon_sym_bitand] = ACTIONS(6201), - [anon_sym_not_eq] = ACTIONS(6201), - [anon_sym_DASH_DASH] = ACTIONS(6208), - [anon_sym_PLUS_PLUS] = ACTIONS(6208), - [anon_sym_DOT] = ACTIONS(6201), - [anon_sym_DOT_STAR] = ACTIONS(6208), - [anon_sym_DASH_GT] = ACTIONS(6208), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6201), - [anon_sym_decltype] = ACTIONS(6201), - [anon_sym_final] = ACTIONS(6201), - [anon_sym_override] = ACTIONS(6201), - [anon_sym_requires] = ACTIONS(6201), - [anon_sym_COLON_RBRACK] = ACTIONS(6208), - }, - [STATE(1970)] = { - [sym_attribute_specifier] = STATE(2215), - [sym_attribute_declaration] = STATE(4622), - [sym_type_qualifier] = STATE(2421), - [sym_alignas_qualifier] = STATE(2559), - [sym_gnu_asm_expression] = STATE(8992), - [sym_virtual_specifier] = STATE(4709), - [sym_ref_qualifier] = STATE(3517), - [sym__function_attributes_start] = STATE(3427), - [sym__function_exception_specification] = STATE(4016), - [sym__function_attributes_end] = STATE(5848), - [sym__function_postfix] = STATE(5202), - [sym_trailing_return_type] = STATE(6018), - [sym_noexcept] = STATE(4016), - [sym_throw_specifier] = STATE(4016), - [sym_requires_clause] = STATE(5202), - [aux_sym_type_definition_repeat1] = STATE(2215), - [aux_sym__type_definition_type_repeat1] = STATE(2421), - [aux_sym_attributed_declarator_repeat1] = STATE(4622), - [aux_sym__function_postfix_repeat1] = STATE(4709), - [sym_identifier] = ACTIONS(6111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [aux_sym_preproc_if_token2] = ACTIONS(6113), - [aux_sym_preproc_else_token1] = ACTIONS(6113), - [aux_sym_preproc_elif_token1] = ACTIONS(6111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6113), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6113), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6113), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6113), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(6851), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6113), - [anon_sym_AMP] = ACTIONS(6854), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6113), - [anon_sym_GT_GT] = ACTIONS(6113), - [anon_sym___extension__] = ACTIONS(6857), - [anon_sym___attribute__] = ACTIONS(6859), - [anon_sym___attribute] = ACTIONS(6859), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_const] = ACTIONS(6857), - [anon_sym_constexpr] = ACTIONS(6857), - [anon_sym_volatile] = ACTIONS(6857), - [anon_sym_restrict] = ACTIONS(6857), - [anon_sym___restrict__] = ACTIONS(6857), - [anon_sym__Atomic] = ACTIONS(6857), - [anon_sym__Noreturn] = ACTIONS(6857), - [anon_sym_noreturn] = ACTIONS(6857), - [anon_sym__Nonnull] = ACTIONS(6857), - [anon_sym_mutable] = ACTIONS(6857), - [anon_sym_constinit] = ACTIONS(6857), - [anon_sym_consteval] = ACTIONS(6857), - [anon_sym_alignas] = ACTIONS(6863), - [anon_sym__Alignas] = ACTIONS(6863), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6111), - [anon_sym_and] = ACTIONS(6111), - [anon_sym_bitor] = ACTIONS(6111), - [anon_sym_xor] = ACTIONS(6111), - [anon_sym_bitand] = ACTIONS(6111), - [anon_sym_not_eq] = ACTIONS(6111), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_asm] = ACTIONS(6129), - [anon_sym___asm__] = ACTIONS(6129), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(6865), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6868), - [anon_sym_override] = ACTIONS(6868), - [anon_sym_noexcept] = ACTIONS(6870), - [anon_sym_throw] = ACTIONS(6872), - [anon_sym_requires] = ACTIONS(6874), - }, - [STATE(1971)] = { - [sym_attribute_specifier] = STATE(2215), - [sym_attribute_declaration] = STATE(4622), - [sym_type_qualifier] = STATE(2421), - [sym_alignas_qualifier] = STATE(2559), - [sym_gnu_asm_expression] = STATE(8992), - [sym_virtual_specifier] = STATE(4709), - [sym_ref_qualifier] = STATE(3519), - [sym__function_attributes_start] = STATE(3434), - [sym__function_exception_specification] = STATE(3985), - [sym__function_attributes_end] = STATE(5907), - [sym__function_postfix] = STATE(5202), - [sym_trailing_return_type] = STATE(6003), - [sym_noexcept] = STATE(3985), - [sym_throw_specifier] = STATE(3985), - [sym_requires_clause] = STATE(5202), - [aux_sym_type_definition_repeat1] = STATE(2215), - [aux_sym__type_definition_type_repeat1] = STATE(2421), - [aux_sym_attributed_declarator_repeat1] = STATE(4622), - [aux_sym__function_postfix_repeat1] = STATE(4709), - [sym_identifier] = ACTIONS(6111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [aux_sym_preproc_if_token2] = ACTIONS(6113), - [aux_sym_preproc_else_token1] = ACTIONS(6113), - [aux_sym_preproc_elif_token1] = ACTIONS(6111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6113), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6113), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6113), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6113), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(6851), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6113), - [anon_sym_AMP] = ACTIONS(6854), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6113), - [anon_sym_GT_GT] = ACTIONS(6113), - [anon_sym___extension__] = ACTIONS(6857), - [anon_sym___attribute__] = ACTIONS(6859), - [anon_sym___attribute] = ACTIONS(6859), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_const] = ACTIONS(6857), - [anon_sym_constexpr] = ACTIONS(6857), - [anon_sym_volatile] = ACTIONS(6857), - [anon_sym_restrict] = ACTIONS(6857), - [anon_sym___restrict__] = ACTIONS(6857), - [anon_sym__Atomic] = ACTIONS(6857), - [anon_sym__Noreturn] = ACTIONS(6857), - [anon_sym_noreturn] = ACTIONS(6857), - [anon_sym__Nonnull] = ACTIONS(6857), - [anon_sym_mutable] = ACTIONS(6857), - [anon_sym_constinit] = ACTIONS(6857), - [anon_sym_consteval] = ACTIONS(6857), - [anon_sym_alignas] = ACTIONS(6863), - [anon_sym__Alignas] = ACTIONS(6863), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6111), - [anon_sym_and] = ACTIONS(6111), - [anon_sym_bitor] = ACTIONS(6111), - [anon_sym_xor] = ACTIONS(6111), - [anon_sym_bitand] = ACTIONS(6111), - [anon_sym_not_eq] = ACTIONS(6111), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_asm] = ACTIONS(6129), - [anon_sym___asm__] = ACTIONS(6129), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(6865), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6876), - [anon_sym_override] = ACTIONS(6876), - [anon_sym_noexcept] = ACTIONS(6870), - [anon_sym_throw] = ACTIONS(6872), - [anon_sym_requires] = ACTIONS(6879), - }, - [STATE(1972)] = { - [sym_type_qualifier] = STATE(1913), - [sym_alignas_qualifier] = STATE(1953), - [aux_sym__type_definition_type_repeat1] = STATE(1913), - [aux_sym_sized_type_specifier_repeat1] = STATE(2175), - [sym_identifier] = ACTIONS(6882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), - [anon_sym_COMMA] = ACTIONS(6884), - [anon_sym_RPAREN] = ACTIONS(6884), - [anon_sym_LPAREN2] = ACTIONS(6884), - [anon_sym_DASH] = ACTIONS(6886), - [anon_sym_PLUS] = ACTIONS(6886), - [anon_sym_STAR] = ACTIONS(6886), - [anon_sym_SLASH] = ACTIONS(6886), - [anon_sym_PERCENT] = ACTIONS(6886), - [anon_sym_PIPE_PIPE] = ACTIONS(6884), - [anon_sym_AMP_AMP] = ACTIONS(6884), - [anon_sym_PIPE] = ACTIONS(6886), - [anon_sym_CARET] = ACTIONS(6886), - [anon_sym_AMP] = ACTIONS(6886), - [anon_sym_EQ_EQ] = ACTIONS(6884), - [anon_sym_BANG_EQ] = ACTIONS(6884), - [anon_sym_GT] = ACTIONS(6886), - [anon_sym_GT_EQ] = ACTIONS(6884), - [anon_sym_LT_EQ] = ACTIONS(6886), - [anon_sym_LT] = ACTIONS(6886), - [anon_sym_LT_LT] = ACTIONS(6886), - [anon_sym_GT_GT] = ACTIONS(6886), - [anon_sym_SEMI] = ACTIONS(6884), - [anon_sym___extension__] = ACTIONS(6888), - [anon_sym___attribute__] = ACTIONS(6886), - [anon_sym___attribute] = ACTIONS(6886), - [anon_sym_COLON] = ACTIONS(6886), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6884), - [anon_sym_LBRACE] = ACTIONS(6884), - [anon_sym_RBRACE] = ACTIONS(6884), - [anon_sym_signed] = ACTIONS(6891), - [anon_sym_unsigned] = ACTIONS(6891), - [anon_sym_long] = ACTIONS(6891), - [anon_sym_short] = ACTIONS(6891), - [anon_sym_LBRACK] = ACTIONS(6884), - [anon_sym_EQ] = ACTIONS(6886), - [anon_sym_const] = ACTIONS(6888), - [anon_sym_constexpr] = ACTIONS(6888), - [anon_sym_volatile] = ACTIONS(6888), - [anon_sym_restrict] = ACTIONS(6888), - [anon_sym___restrict__] = ACTIONS(6888), - [anon_sym__Atomic] = ACTIONS(6888), - [anon_sym__Noreturn] = ACTIONS(6888), - [anon_sym_noreturn] = ACTIONS(6888), - [anon_sym__Nonnull] = ACTIONS(6888), - [anon_sym_mutable] = ACTIONS(6888), - [anon_sym_constinit] = ACTIONS(6888), - [anon_sym_consteval] = ACTIONS(6888), - [anon_sym_alignas] = ACTIONS(6893), - [anon_sym__Alignas] = ACTIONS(6893), - [sym_primitive_type] = ACTIONS(6896), - [anon_sym_QMARK] = ACTIONS(6884), - [anon_sym_STAR_EQ] = ACTIONS(6884), - [anon_sym_SLASH_EQ] = ACTIONS(6884), - [anon_sym_PERCENT_EQ] = ACTIONS(6884), - [anon_sym_PLUS_EQ] = ACTIONS(6884), - [anon_sym_DASH_EQ] = ACTIONS(6884), - [anon_sym_LT_LT_EQ] = ACTIONS(6884), - [anon_sym_GT_GT_EQ] = ACTIONS(6884), - [anon_sym_AMP_EQ] = ACTIONS(6884), - [anon_sym_CARET_EQ] = ACTIONS(6884), - [anon_sym_PIPE_EQ] = ACTIONS(6884), - [anon_sym_and_eq] = ACTIONS(6886), - [anon_sym_or_eq] = ACTIONS(6886), - [anon_sym_xor_eq] = ACTIONS(6886), - [anon_sym_LT_EQ_GT] = ACTIONS(6884), - [anon_sym_or] = ACTIONS(6886), - [anon_sym_and] = ACTIONS(6886), - [anon_sym_bitor] = ACTIONS(6886), - [anon_sym_xor] = ACTIONS(6886), - [anon_sym_bitand] = ACTIONS(6886), - [anon_sym_not_eq] = ACTIONS(6886), - [anon_sym_DASH_DASH] = ACTIONS(6884), - [anon_sym_PLUS_PLUS] = ACTIONS(6884), - [anon_sym_DOT] = ACTIONS(6886), - [anon_sym_DOT_STAR] = ACTIONS(6884), - [anon_sym_DASH_GT] = ACTIONS(6884), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6886), - [anon_sym_override] = ACTIONS(6886), - [anon_sym_requires] = ACTIONS(6886), - [anon_sym_COLON_RBRACK] = ACTIONS(6884), - }, - [STATE(1973)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(1975), - [sym_ms_pointer_modifier] = STATE(1967), - [sym__abstract_declarator] = STATE(4692), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2266), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1871), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2266), - [aux_sym_pointer_declarator_repeat1] = STATE(1967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), + [STATE(1949)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_ms_call_modifier] = STATE(8781), + [sym__abstract_declarator] = STATE(9400), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_abstract_function_declarator] = STATE(8596), + [sym_abstract_array_declarator] = STATE(8596), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_list] = STATE(4706), + [sym_parameter_declaration] = STATE(9979), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_explicit_object_parameter_declaration] = STATE(9979), + [sym_optional_parameter_declaration] = STATE(9979), + [sym_variadic_parameter_declaration] = STATE(9979), + [sym_abstract_reference_declarator] = STATE(8596), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6520), + [anon_sym_RPAREN] = ACTIONS(6522), [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_PLUS] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(6838), - [anon_sym_SLASH] = ACTIONS(6457), - [anon_sym_PERCENT] = ACTIONS(6457), - [anon_sym_PIPE_PIPE] = ACTIONS(6459), - [anon_sym_AMP_AMP] = ACTIONS(6840), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_CARET] = ACTIONS(6457), - [anon_sym_AMP] = ACTIONS(6842), - [anon_sym_EQ_EQ] = ACTIONS(6459), - [anon_sym_BANG_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_LT_EQ] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_LT_LT] = ACTIONS(6457), - [anon_sym_GT_GT] = ACTIONS(6457), - [anon_sym_SEMI] = ACTIONS(6459), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym___attribute__] = ACTIONS(6459), - [anon_sym___attribute] = ACTIONS(6457), - [sym_ms_restrict_modifier] = ACTIONS(6471), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6487), - [sym_ms_signed_ptr_modifier] = ACTIONS(6487), - [anon_sym__unaligned] = ACTIONS(6489), - [anon_sym___unaligned] = ACTIONS(6489), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6459), - [anon_sym_STAR_EQ] = ACTIONS(6459), - [anon_sym_SLASH_EQ] = ACTIONS(6459), - [anon_sym_PERCENT_EQ] = ACTIONS(6459), - [anon_sym_PLUS_EQ] = ACTIONS(6459), - [anon_sym_DASH_EQ] = ACTIONS(6459), - [anon_sym_LT_LT_EQ] = ACTIONS(6459), - [anon_sym_GT_GT_EQ] = ACTIONS(6459), - [anon_sym_AMP_EQ] = ACTIONS(6459), - [anon_sym_CARET_EQ] = ACTIONS(6459), - [anon_sym_PIPE_EQ] = ACTIONS(6459), - [anon_sym_and_eq] = ACTIONS(6459), - [anon_sym_or_eq] = ACTIONS(6459), - [anon_sym_xor_eq] = ACTIONS(6459), - [anon_sym_LT_EQ_GT] = ACTIONS(6459), - [anon_sym_or] = ACTIONS(6457), - [anon_sym_and] = ACTIONS(6457), - [anon_sym_bitor] = ACTIONS(6459), - [anon_sym_xor] = ACTIONS(6457), - [anon_sym_bitand] = ACTIONS(6459), - [anon_sym_not_eq] = ACTIONS(6459), - [anon_sym_DASH_DASH] = ACTIONS(6459), - [anon_sym_PLUS_PLUS] = ACTIONS(6459), - [anon_sym_DOT] = ACTIONS(6457), - [anon_sym_DOT_STAR] = ACTIONS(6459), - [anon_sym_DASH_GT] = ACTIONS(6459), - [sym_comment] = ACTIONS(3), - }, - [STATE(1974)] = { - [sym_decltype_auto] = STATE(2086), - [sym_template_argument_list] = STATE(1995), - [aux_sym_sized_type_specifier_repeat1] = STATE(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5258), - [anon_sym_COMMA] = ACTIONS(5258), - [anon_sym_RPAREN] = ACTIONS(5258), - [anon_sym_LPAREN2] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5251), - [anon_sym_PLUS] = ACTIONS(5251), - [anon_sym_STAR] = ACTIONS(5251), - [anon_sym_SLASH] = ACTIONS(5251), - [anon_sym_PERCENT] = ACTIONS(5251), - [anon_sym_PIPE_PIPE] = ACTIONS(5258), - [anon_sym_AMP_AMP] = ACTIONS(5258), - [anon_sym_PIPE] = ACTIONS(5251), - [anon_sym_CARET] = ACTIONS(5251), - [anon_sym_AMP] = ACTIONS(5251), - [anon_sym_EQ_EQ] = ACTIONS(5258), - [anon_sym_BANG_EQ] = ACTIONS(5258), - [anon_sym_GT] = ACTIONS(5251), - [anon_sym_GT_EQ] = ACTIONS(5258), - [anon_sym_LT_EQ] = ACTIONS(5251), - [anon_sym_LT] = ACTIONS(6898), - [anon_sym_LT_LT] = ACTIONS(5251), - [anon_sym_GT_GT] = ACTIONS(5251), - [anon_sym_SEMI] = ACTIONS(5258), - [anon_sym___extension__] = ACTIONS(5258), - [anon_sym___attribute__] = ACTIONS(5258), - [anon_sym___attribute] = ACTIONS(5251), - [anon_sym_COLON] = ACTIONS(5251), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5258), - [anon_sym_LBRACE] = ACTIONS(5258), - [anon_sym_RBRACE] = ACTIONS(5258), - [anon_sym_signed] = ACTIONS(6396), - [anon_sym_unsigned] = ACTIONS(6396), - [anon_sym_long] = ACTIONS(6396), - [anon_sym_short] = ACTIONS(6396), - [anon_sym_LBRACK] = ACTIONS(5258), - [anon_sym_EQ] = ACTIONS(5251), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5258), - [anon_sym_volatile] = ACTIONS(5258), - [anon_sym_restrict] = ACTIONS(5258), - [anon_sym___restrict__] = ACTIONS(5258), - [anon_sym__Atomic] = ACTIONS(5258), - [anon_sym__Noreturn] = ACTIONS(5258), - [anon_sym_noreturn] = ACTIONS(5258), - [anon_sym__Nonnull] = ACTIONS(5258), - [anon_sym_mutable] = ACTIONS(5258), - [anon_sym_constinit] = ACTIONS(5258), - [anon_sym_consteval] = ACTIONS(5258), - [anon_sym_alignas] = ACTIONS(5258), - [anon_sym__Alignas] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5258), - [anon_sym_STAR_EQ] = ACTIONS(5258), - [anon_sym_SLASH_EQ] = ACTIONS(5258), - [anon_sym_PERCENT_EQ] = ACTIONS(5258), - [anon_sym_PLUS_EQ] = ACTIONS(5258), - [anon_sym_DASH_EQ] = ACTIONS(5258), - [anon_sym_LT_LT_EQ] = ACTIONS(5258), - [anon_sym_GT_GT_EQ] = ACTIONS(5258), - [anon_sym_AMP_EQ] = ACTIONS(5258), - [anon_sym_CARET_EQ] = ACTIONS(5258), - [anon_sym_PIPE_EQ] = ACTIONS(5258), - [anon_sym_and_eq] = ACTIONS(5258), - [anon_sym_or_eq] = ACTIONS(5258), - [anon_sym_xor_eq] = ACTIONS(5258), - [anon_sym_LT_EQ_GT] = ACTIONS(5258), - [anon_sym_or] = ACTIONS(5251), - [anon_sym_and] = ACTIONS(5251), - [anon_sym_bitor] = ACTIONS(5258), - [anon_sym_xor] = ACTIONS(5251), - [anon_sym_bitand] = ACTIONS(5258), - [anon_sym_not_eq] = ACTIONS(5258), - [anon_sym_DASH_DASH] = ACTIONS(5258), - [anon_sym_PLUS_PLUS] = ACTIONS(5258), - [anon_sym_DOT] = ACTIONS(5251), - [anon_sym_DOT_STAR] = ACTIONS(5258), - [anon_sym_DASH_GT] = ACTIONS(5258), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6398), - [anon_sym_decltype] = ACTIONS(6400), - [anon_sym_final] = ACTIONS(5258), - [anon_sym_override] = ACTIONS(5258), - [anon_sym_requires] = ACTIONS(5258), - [anon_sym_COLON_RBRACK] = ACTIONS(5258), - }, - [STATE(1975)] = { - [sym_identifier] = ACTIONS(6900), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6902), - [anon_sym_COMMA] = ACTIONS(6902), - [anon_sym_RPAREN] = ACTIONS(6902), - [aux_sym_preproc_if_token2] = ACTIONS(6902), - [aux_sym_preproc_else_token1] = ACTIONS(6902), - [aux_sym_preproc_elif_token1] = ACTIONS(6900), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6902), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6902), - [anon_sym_LPAREN2] = ACTIONS(6902), - [anon_sym_DASH] = ACTIONS(6900), - [anon_sym_PLUS] = ACTIONS(6900), - [anon_sym_STAR] = ACTIONS(6900), - [anon_sym_SLASH] = ACTIONS(6900), - [anon_sym_PERCENT] = ACTIONS(6900), - [anon_sym_PIPE_PIPE] = ACTIONS(6902), - [anon_sym_AMP_AMP] = ACTIONS(6902), - [anon_sym_PIPE] = ACTIONS(6900), - [anon_sym_CARET] = ACTIONS(6900), - [anon_sym_AMP] = ACTIONS(6900), - [anon_sym_EQ_EQ] = ACTIONS(6902), - [anon_sym_BANG_EQ] = ACTIONS(6902), - [anon_sym_GT] = ACTIONS(6900), - [anon_sym_GT_EQ] = ACTIONS(6902), - [anon_sym_LT_EQ] = ACTIONS(6900), - [anon_sym_LT] = ACTIONS(6900), - [anon_sym_LT_LT] = ACTIONS(6900), - [anon_sym_GT_GT] = ACTIONS(6900), - [anon_sym_SEMI] = ACTIONS(6902), - [anon_sym___extension__] = ACTIONS(6900), - [anon_sym___attribute__] = ACTIONS(6900), - [anon_sym___attribute] = ACTIONS(6900), - [anon_sym_COLON] = ACTIONS(6900), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6902), - [sym_ms_restrict_modifier] = ACTIONS(6900), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6900), - [sym_ms_signed_ptr_modifier] = ACTIONS(6900), - [anon_sym__unaligned] = ACTIONS(6900), - [anon_sym___unaligned] = ACTIONS(6900), - [anon_sym_RBRACE] = ACTIONS(6902), - [anon_sym_LBRACK] = ACTIONS(6902), - [anon_sym_EQ] = ACTIONS(6900), - [anon_sym_const] = ACTIONS(6900), - [anon_sym_constexpr] = ACTIONS(6900), - [anon_sym_volatile] = ACTIONS(6900), - [anon_sym_restrict] = ACTIONS(6900), - [anon_sym___restrict__] = ACTIONS(6900), - [anon_sym__Atomic] = ACTIONS(6900), - [anon_sym__Noreturn] = ACTIONS(6900), - [anon_sym_noreturn] = ACTIONS(6900), - [anon_sym__Nonnull] = ACTIONS(6900), - [anon_sym_mutable] = ACTIONS(6900), - [anon_sym_constinit] = ACTIONS(6900), - [anon_sym_consteval] = ACTIONS(6900), - [anon_sym_alignas] = ACTIONS(6900), - [anon_sym__Alignas] = ACTIONS(6900), - [anon_sym_QMARK] = ACTIONS(6902), - [anon_sym_STAR_EQ] = ACTIONS(6902), - [anon_sym_SLASH_EQ] = ACTIONS(6902), - [anon_sym_PERCENT_EQ] = ACTIONS(6902), - [anon_sym_PLUS_EQ] = ACTIONS(6902), - [anon_sym_DASH_EQ] = ACTIONS(6902), - [anon_sym_LT_LT_EQ] = ACTIONS(6902), - [anon_sym_GT_GT_EQ] = ACTIONS(6902), - [anon_sym_AMP_EQ] = ACTIONS(6902), - [anon_sym_CARET_EQ] = ACTIONS(6902), - [anon_sym_PIPE_EQ] = ACTIONS(6902), - [anon_sym_and_eq] = ACTIONS(6900), - [anon_sym_or_eq] = ACTIONS(6900), - [anon_sym_xor_eq] = ACTIONS(6900), - [anon_sym_LT_EQ_GT] = ACTIONS(6902), - [anon_sym_or] = ACTIONS(6900), - [anon_sym_and] = ACTIONS(6900), - [anon_sym_bitor] = ACTIONS(6900), - [anon_sym_xor] = ACTIONS(6900), - [anon_sym_bitand] = ACTIONS(6900), - [anon_sym_not_eq] = ACTIONS(6900), - [anon_sym_DASH_DASH] = ACTIONS(6902), - [anon_sym_PLUS_PLUS] = ACTIONS(6902), - [anon_sym_DOT] = ACTIONS(6900), - [anon_sym_DOT_STAR] = ACTIONS(6902), - [anon_sym_DASH_GT] = ACTIONS(6902), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6900), - [anon_sym_override] = ACTIONS(6900), - [anon_sym_requires] = ACTIONS(6900), - [anon_sym_COLON_RBRACK] = ACTIONS(6902), - }, - [STATE(1976)] = { - [sym_attribute_specifier] = STATE(2215), - [sym_attribute_declaration] = STATE(4622), - [sym_type_qualifier] = STATE(2421), - [sym_alignas_qualifier] = STATE(2559), - [sym_gnu_asm_expression] = STATE(8992), - [sym_virtual_specifier] = STATE(4709), - [sym_ref_qualifier] = STATE(3551), - [sym__function_attributes_start] = STATE(3457), - [sym__function_exception_specification] = STATE(3972), - [sym__function_attributes_end] = STATE(5905), - [sym__function_postfix] = STATE(5202), - [sym_trailing_return_type] = STATE(5726), - [sym_noexcept] = STATE(3972), - [sym_throw_specifier] = STATE(3972), - [sym_requires_clause] = STATE(5202), - [aux_sym_type_definition_repeat1] = STATE(2215), - [aux_sym__type_definition_type_repeat1] = STATE(2421), - [aux_sym_attributed_declarator_repeat1] = STATE(4622), - [aux_sym__function_postfix_repeat1] = STATE(4709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_RPAREN] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6113), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6113), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6113), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(6851), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6113), - [anon_sym_AMP] = ACTIONS(6854), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6113), - [anon_sym_GT_GT] = ACTIONS(6113), - [anon_sym_SEMI] = ACTIONS(6113), - [anon_sym___extension__] = ACTIONS(6904), - [anon_sym___attribute__] = ACTIONS(6906), - [anon_sym___attribute] = ACTIONS(6859), - [anon_sym_COLON] = ACTIONS(6111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6113), - [anon_sym_RBRACE] = ACTIONS(6113), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_const] = ACTIONS(6857), - [anon_sym_constexpr] = ACTIONS(6904), - [anon_sym_volatile] = ACTIONS(6904), - [anon_sym_restrict] = ACTIONS(6904), - [anon_sym___restrict__] = ACTIONS(6904), - [anon_sym__Atomic] = ACTIONS(6904), - [anon_sym__Noreturn] = ACTIONS(6904), - [anon_sym_noreturn] = ACTIONS(6904), - [anon_sym__Nonnull] = ACTIONS(6904), - [anon_sym_mutable] = ACTIONS(6904), - [anon_sym_constinit] = ACTIONS(6904), - [anon_sym_consteval] = ACTIONS(6904), - [anon_sym_alignas] = ACTIONS(6908), - [anon_sym__Alignas] = ACTIONS(6908), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6113), - [anon_sym_and] = ACTIONS(6113), - [anon_sym_bitor] = ACTIONS(6113), - [anon_sym_xor] = ACTIONS(6113), - [anon_sym_bitand] = ACTIONS(6113), - [anon_sym_not_eq] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(6910), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6913), - [anon_sym_override] = ACTIONS(6913), - [anon_sym_noexcept] = ACTIONS(6915), - [anon_sym_throw] = ACTIONS(6917), - [anon_sym_requires] = ACTIONS(6919), - [anon_sym_COLON_RBRACK] = ACTIONS(6113), - }, - [STATE(1977)] = { - [sym_attribute_specifier] = STATE(2215), - [sym_attribute_declaration] = STATE(4622), - [sym_type_qualifier] = STATE(2421), - [sym_alignas_qualifier] = STATE(2559), - [sym_gnu_asm_expression] = STATE(8992), - [sym_virtual_specifier] = STATE(4709), - [sym_ref_qualifier] = STATE(3569), - [sym__function_attributes_start] = STATE(3385), - [sym__function_exception_specification] = STATE(4039), - [sym__function_attributes_end] = STATE(5835), - [sym__function_postfix] = STATE(5202), - [sym_trailing_return_type] = STATE(5706), - [sym_noexcept] = STATE(4039), - [sym_throw_specifier] = STATE(4039), - [sym_requires_clause] = STATE(5202), - [aux_sym_type_definition_repeat1] = STATE(2215), - [aux_sym__type_definition_type_repeat1] = STATE(2421), - [aux_sym_attributed_declarator_repeat1] = STATE(4622), - [aux_sym__function_postfix_repeat1] = STATE(4709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_RPAREN] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6113), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6113), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6113), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(6851), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6113), - [anon_sym_AMP] = ACTIONS(6854), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6113), - [anon_sym_GT_GT] = ACTIONS(6113), - [anon_sym_SEMI] = ACTIONS(6113), - [anon_sym___extension__] = ACTIONS(6904), - [anon_sym___attribute__] = ACTIONS(6906), - [anon_sym___attribute] = ACTIONS(6859), - [anon_sym_COLON] = ACTIONS(6111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6113), - [anon_sym_RBRACE] = ACTIONS(6113), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_const] = ACTIONS(6857), - [anon_sym_constexpr] = ACTIONS(6904), - [anon_sym_volatile] = ACTIONS(6904), - [anon_sym_restrict] = ACTIONS(6904), - [anon_sym___restrict__] = ACTIONS(6904), - [anon_sym__Atomic] = ACTIONS(6904), - [anon_sym__Noreturn] = ACTIONS(6904), - [anon_sym_noreturn] = ACTIONS(6904), - [anon_sym__Nonnull] = ACTIONS(6904), - [anon_sym_mutable] = ACTIONS(6904), - [anon_sym_constinit] = ACTIONS(6904), - [anon_sym_consteval] = ACTIONS(6904), - [anon_sym_alignas] = ACTIONS(6908), - [anon_sym__Alignas] = ACTIONS(6908), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6113), - [anon_sym_and] = ACTIONS(6113), - [anon_sym_bitor] = ACTIONS(6113), - [anon_sym_xor] = ACTIONS(6113), - [anon_sym_bitand] = ACTIONS(6113), - [anon_sym_not_eq] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(6910), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6921), - [anon_sym_override] = ACTIONS(6921), - [anon_sym_noexcept] = ACTIONS(6915), - [anon_sym_throw] = ACTIONS(6917), - [anon_sym_requires] = ACTIONS(6924), - [anon_sym_COLON_RBRACK] = ACTIONS(6113), - }, - [STATE(1978)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2835), - [sym_ms_pointer_modifier] = STATE(1991), - [sym__abstract_declarator] = STATE(4968), - [sym_abstract_parenthesized_declarator] = STATE(5581), - [sym_abstract_pointer_declarator] = STATE(5581), - [sym_abstract_function_declarator] = STATE(5581), - [sym_abstract_array_declarator] = STATE(5581), - [sym_type_qualifier] = STATE(2298), - [sym_alignas_qualifier] = STATE(2432), - [sym_parameter_list] = STATE(1885), - [sym_abstract_reference_declarator] = STATE(5581), - [sym__function_declarator_seq] = STATE(5582), - [aux_sym__type_definition_type_repeat1] = STATE(2298), - [aux_sym_pointer_declarator_repeat1] = STATE(1991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_RPAREN] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(6927), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_PLUS] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(6929), - [anon_sym_SLASH] = ACTIONS(6457), - [anon_sym_PERCENT] = ACTIONS(6457), - [anon_sym_PIPE_PIPE] = ACTIONS(6459), - [anon_sym_AMP_AMP] = ACTIONS(6931), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_CARET] = ACTIONS(6457), - [anon_sym_AMP] = ACTIONS(6933), - [anon_sym_EQ_EQ] = ACTIONS(6459), - [anon_sym_BANG_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_LT_EQ] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_LT_LT] = ACTIONS(6457), - [anon_sym_GT_GT] = ACTIONS(6457), - [anon_sym___extension__] = ACTIONS(6935), - [sym_ms_restrict_modifier] = ACTIONS(6937), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6939), - [sym_ms_signed_ptr_modifier] = ACTIONS(6939), - [anon_sym__unaligned] = ACTIONS(6941), - [anon_sym___unaligned] = ACTIONS(6941), - [anon_sym_LBRACK] = ACTIONS(6943), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_const] = ACTIONS(6945), - [anon_sym_constexpr] = ACTIONS(6935), - [anon_sym_volatile] = ACTIONS(6935), - [anon_sym_restrict] = ACTIONS(6935), - [anon_sym___restrict__] = ACTIONS(6935), - [anon_sym__Atomic] = ACTIONS(6935), - [anon_sym__Noreturn] = ACTIONS(6935), - [anon_sym_noreturn] = ACTIONS(6935), - [anon_sym__Nonnull] = ACTIONS(6935), - [anon_sym_mutable] = ACTIONS(6935), - [anon_sym_constinit] = ACTIONS(6935), - [anon_sym_consteval] = ACTIONS(6935), - [anon_sym_alignas] = ACTIONS(6947), - [anon_sym__Alignas] = ACTIONS(6947), - [anon_sym_QMARK] = ACTIONS(6459), - [anon_sym_STAR_EQ] = ACTIONS(6459), - [anon_sym_SLASH_EQ] = ACTIONS(6459), - [anon_sym_PERCENT_EQ] = ACTIONS(6459), - [anon_sym_PLUS_EQ] = ACTIONS(6459), - [anon_sym_DASH_EQ] = ACTIONS(6459), - [anon_sym_LT_LT_EQ] = ACTIONS(6459), - [anon_sym_GT_GT_EQ] = ACTIONS(6459), - [anon_sym_AMP_EQ] = ACTIONS(6459), - [anon_sym_CARET_EQ] = ACTIONS(6459), - [anon_sym_PIPE_EQ] = ACTIONS(6459), - [anon_sym_LT_EQ_GT] = ACTIONS(6459), - [anon_sym_or] = ACTIONS(6459), - [anon_sym_and] = ACTIONS(6459), - [anon_sym_bitor] = ACTIONS(6459), - [anon_sym_xor] = ACTIONS(6459), - [anon_sym_bitand] = ACTIONS(6459), - [anon_sym_not_eq] = ACTIONS(6459), - [anon_sym_DASH_DASH] = ACTIONS(6459), - [anon_sym_PLUS_PLUS] = ACTIONS(6459), - [anon_sym_DOT] = ACTIONS(6457), - [anon_sym_DOT_STAR] = ACTIONS(6459), - [anon_sym_DASH_GT] = ACTIONS(6457), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6459), - [anon_sym_override] = ACTIONS(6459), - [anon_sym_requires] = ACTIONS(6459), - [anon_sym_DASH_GT_STAR] = ACTIONS(6459), - }, - [STATE(1979)] = { - [sym_identifier] = ACTIONS(6270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6272), - [anon_sym_COMMA] = ACTIONS(6272), - [anon_sym_RPAREN] = ACTIONS(6272), - [aux_sym_preproc_if_token2] = ACTIONS(6272), - [aux_sym_preproc_else_token1] = ACTIONS(6272), - [aux_sym_preproc_elif_token1] = ACTIONS(6270), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6272), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6272), - [anon_sym_LPAREN2] = ACTIONS(6272), - [anon_sym_DASH] = ACTIONS(6270), - [anon_sym_PLUS] = ACTIONS(6270), - [anon_sym_STAR] = ACTIONS(6270), - [anon_sym_SLASH] = ACTIONS(6270), - [anon_sym_PERCENT] = ACTIONS(6270), - [anon_sym_PIPE_PIPE] = ACTIONS(6272), - [anon_sym_AMP_AMP] = ACTIONS(6272), - [anon_sym_PIPE] = ACTIONS(6270), - [anon_sym_CARET] = ACTIONS(6270), - [anon_sym_AMP] = ACTIONS(6270), - [anon_sym_EQ_EQ] = ACTIONS(6272), - [anon_sym_BANG_EQ] = ACTIONS(6272), - [anon_sym_GT] = ACTIONS(6270), - [anon_sym_GT_EQ] = ACTIONS(6272), - [anon_sym_LT_EQ] = ACTIONS(6270), - [anon_sym_LT] = ACTIONS(6270), - [anon_sym_LT_LT] = ACTIONS(6270), - [anon_sym_GT_GT] = ACTIONS(6270), - [anon_sym_SEMI] = ACTIONS(6272), - [anon_sym___extension__] = ACTIONS(6270), - [anon_sym___attribute__] = ACTIONS(6270), - [anon_sym___attribute] = ACTIONS(6270), - [anon_sym_COLON] = ACTIONS(6270), - [anon_sym_COLON_COLON] = ACTIONS(6272), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6272), - [anon_sym_LBRACE] = ACTIONS(6272), - [anon_sym_RBRACE] = ACTIONS(6272), - [anon_sym_LBRACK] = ACTIONS(6272), - [anon_sym_EQ] = ACTIONS(6270), - [anon_sym_const] = ACTIONS(6270), - [anon_sym_constexpr] = ACTIONS(6270), - [anon_sym_volatile] = ACTIONS(6270), - [anon_sym_restrict] = ACTIONS(6270), - [anon_sym___restrict__] = ACTIONS(6270), - [anon_sym__Atomic] = ACTIONS(6270), - [anon_sym__Noreturn] = ACTIONS(6270), - [anon_sym_noreturn] = ACTIONS(6270), - [anon_sym__Nonnull] = ACTIONS(6270), - [anon_sym_mutable] = ACTIONS(6270), - [anon_sym_constinit] = ACTIONS(6270), - [anon_sym_consteval] = ACTIONS(6270), - [anon_sym_alignas] = ACTIONS(6270), - [anon_sym__Alignas] = ACTIONS(6270), - [anon_sym_QMARK] = ACTIONS(6272), - [anon_sym_STAR_EQ] = ACTIONS(6272), - [anon_sym_SLASH_EQ] = ACTIONS(6272), - [anon_sym_PERCENT_EQ] = ACTIONS(6272), - [anon_sym_PLUS_EQ] = ACTIONS(6272), - [anon_sym_DASH_EQ] = ACTIONS(6272), - [anon_sym_LT_LT_EQ] = ACTIONS(6272), - [anon_sym_GT_GT_EQ] = ACTIONS(6272), - [anon_sym_AMP_EQ] = ACTIONS(6272), - [anon_sym_CARET_EQ] = ACTIONS(6272), - [anon_sym_PIPE_EQ] = ACTIONS(6272), - [anon_sym_and_eq] = ACTIONS(6270), - [anon_sym_or_eq] = ACTIONS(6270), - [anon_sym_xor_eq] = ACTIONS(6270), - [anon_sym_LT_EQ_GT] = ACTIONS(6272), - [anon_sym_or] = ACTIONS(6270), - [anon_sym_and] = ACTIONS(6270), - [anon_sym_bitor] = ACTIONS(6270), - [anon_sym_xor] = ACTIONS(6270), - [anon_sym_bitand] = ACTIONS(6270), - [anon_sym_not_eq] = ACTIONS(6270), - [anon_sym_DASH_DASH] = ACTIONS(6272), - [anon_sym_PLUS_PLUS] = ACTIONS(6272), - [anon_sym_DOT] = ACTIONS(6270), - [anon_sym_DOT_STAR] = ACTIONS(6272), - [anon_sym_DASH_GT] = ACTIONS(6272), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6270), - [anon_sym_decltype] = ACTIONS(6270), - [anon_sym_final] = ACTIONS(6270), - [anon_sym_override] = ACTIONS(6270), - [anon_sym_requires] = ACTIONS(6270), - [anon_sym_COLON_RBRACK] = ACTIONS(6272), - }, - [STATE(1980)] = { - [sym_identifier] = ACTIONS(6242), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), - [anon_sym_COMMA] = ACTIONS(6244), - [anon_sym_RPAREN] = ACTIONS(6244), - [aux_sym_preproc_if_token2] = ACTIONS(6244), - [aux_sym_preproc_else_token1] = ACTIONS(6244), - [aux_sym_preproc_elif_token1] = ACTIONS(6242), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6244), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6244), - [anon_sym_LPAREN2] = ACTIONS(6244), - [anon_sym_DASH] = ACTIONS(6242), - [anon_sym_PLUS] = ACTIONS(6242), - [anon_sym_STAR] = ACTIONS(6242), - [anon_sym_SLASH] = ACTIONS(6242), - [anon_sym_PERCENT] = ACTIONS(6242), - [anon_sym_PIPE_PIPE] = ACTIONS(6244), - [anon_sym_AMP_AMP] = ACTIONS(6244), - [anon_sym_PIPE] = ACTIONS(6242), - [anon_sym_CARET] = ACTIONS(6242), - [anon_sym_AMP] = ACTIONS(6242), - [anon_sym_EQ_EQ] = ACTIONS(6244), - [anon_sym_BANG_EQ] = ACTIONS(6244), - [anon_sym_GT] = ACTIONS(6242), - [anon_sym_GT_EQ] = ACTIONS(6244), - [anon_sym_LT_EQ] = ACTIONS(6242), - [anon_sym_LT] = ACTIONS(6242), - [anon_sym_LT_LT] = ACTIONS(6242), - [anon_sym_GT_GT] = ACTIONS(6242), - [anon_sym_SEMI] = ACTIONS(6244), - [anon_sym___extension__] = ACTIONS(6242), - [anon_sym___attribute__] = ACTIONS(6242), - [anon_sym___attribute] = ACTIONS(6242), - [anon_sym_COLON] = ACTIONS(6242), - [anon_sym_COLON_COLON] = ACTIONS(6244), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6244), - [anon_sym_LBRACE] = ACTIONS(6244), - [anon_sym_RBRACE] = ACTIONS(6244), - [anon_sym_LBRACK] = ACTIONS(6244), - [anon_sym_EQ] = ACTIONS(6242), - [anon_sym_const] = ACTIONS(6242), - [anon_sym_constexpr] = ACTIONS(6242), - [anon_sym_volatile] = ACTIONS(6242), - [anon_sym_restrict] = ACTIONS(6242), - [anon_sym___restrict__] = ACTIONS(6242), - [anon_sym__Atomic] = ACTIONS(6242), - [anon_sym__Noreturn] = ACTIONS(6242), - [anon_sym_noreturn] = ACTIONS(6242), - [anon_sym__Nonnull] = ACTIONS(6242), - [anon_sym_mutable] = ACTIONS(6242), - [anon_sym_constinit] = ACTIONS(6242), - [anon_sym_consteval] = ACTIONS(6242), - [anon_sym_alignas] = ACTIONS(6242), - [anon_sym__Alignas] = ACTIONS(6242), - [anon_sym_QMARK] = ACTIONS(6244), - [anon_sym_STAR_EQ] = ACTIONS(6244), - [anon_sym_SLASH_EQ] = ACTIONS(6244), - [anon_sym_PERCENT_EQ] = ACTIONS(6244), - [anon_sym_PLUS_EQ] = ACTIONS(6244), - [anon_sym_DASH_EQ] = ACTIONS(6244), - [anon_sym_LT_LT_EQ] = ACTIONS(6244), - [anon_sym_GT_GT_EQ] = ACTIONS(6244), - [anon_sym_AMP_EQ] = ACTIONS(6244), - [anon_sym_CARET_EQ] = ACTIONS(6244), - [anon_sym_PIPE_EQ] = ACTIONS(6244), - [anon_sym_and_eq] = ACTIONS(6242), - [anon_sym_or_eq] = ACTIONS(6242), - [anon_sym_xor_eq] = ACTIONS(6242), - [anon_sym_LT_EQ_GT] = ACTIONS(6244), - [anon_sym_or] = ACTIONS(6242), - [anon_sym_and] = ACTIONS(6242), - [anon_sym_bitor] = ACTIONS(6242), - [anon_sym_xor] = ACTIONS(6242), - [anon_sym_bitand] = ACTIONS(6242), - [anon_sym_not_eq] = ACTIONS(6242), - [anon_sym_DASH_DASH] = ACTIONS(6244), - [anon_sym_PLUS_PLUS] = ACTIONS(6244), - [anon_sym_DOT] = ACTIONS(6242), - [anon_sym_DOT_STAR] = ACTIONS(6244), - [anon_sym_DASH_GT] = ACTIONS(6244), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6242), - [anon_sym_decltype] = ACTIONS(6242), - [anon_sym_final] = ACTIONS(6242), - [anon_sym_override] = ACTIONS(6242), - [anon_sym_requires] = ACTIONS(6242), - [anon_sym_COLON_RBRACK] = ACTIONS(6244), - }, - [STATE(1981)] = { - [sym_identifier] = ACTIONS(6246), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6248), - [anon_sym_COMMA] = ACTIONS(6248), - [anon_sym_RPAREN] = ACTIONS(6248), - [aux_sym_preproc_if_token2] = ACTIONS(6248), - [aux_sym_preproc_else_token1] = ACTIONS(6248), - [aux_sym_preproc_elif_token1] = ACTIONS(6246), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6248), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6248), - [anon_sym_LPAREN2] = ACTIONS(6248), - [anon_sym_DASH] = ACTIONS(6246), - [anon_sym_PLUS] = ACTIONS(6246), - [anon_sym_STAR] = ACTIONS(6246), - [anon_sym_SLASH] = ACTIONS(6246), - [anon_sym_PERCENT] = ACTIONS(6246), - [anon_sym_PIPE_PIPE] = ACTIONS(6248), - [anon_sym_AMP_AMP] = ACTIONS(6248), - [anon_sym_PIPE] = ACTIONS(6246), - [anon_sym_CARET] = ACTIONS(6246), - [anon_sym_AMP] = ACTIONS(6246), - [anon_sym_EQ_EQ] = ACTIONS(6248), - [anon_sym_BANG_EQ] = ACTIONS(6248), - [anon_sym_GT] = ACTIONS(6246), - [anon_sym_GT_EQ] = ACTIONS(6248), - [anon_sym_LT_EQ] = ACTIONS(6246), - [anon_sym_LT] = ACTIONS(6246), - [anon_sym_LT_LT] = ACTIONS(6246), - [anon_sym_GT_GT] = ACTIONS(6246), - [anon_sym_SEMI] = ACTIONS(6248), - [anon_sym___extension__] = ACTIONS(6246), - [anon_sym___attribute__] = ACTIONS(6246), - [anon_sym___attribute] = ACTIONS(6246), - [anon_sym_COLON] = ACTIONS(6246), - [anon_sym_COLON_COLON] = ACTIONS(6248), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6248), - [anon_sym_LBRACE] = ACTIONS(6248), - [anon_sym_RBRACE] = ACTIONS(6248), - [anon_sym_LBRACK] = ACTIONS(6248), - [anon_sym_EQ] = ACTIONS(6246), - [anon_sym_const] = ACTIONS(6246), - [anon_sym_constexpr] = ACTIONS(6246), - [anon_sym_volatile] = ACTIONS(6246), - [anon_sym_restrict] = ACTIONS(6246), - [anon_sym___restrict__] = ACTIONS(6246), - [anon_sym__Atomic] = ACTIONS(6246), - [anon_sym__Noreturn] = ACTIONS(6246), - [anon_sym_noreturn] = ACTIONS(6246), - [anon_sym__Nonnull] = ACTIONS(6246), - [anon_sym_mutable] = ACTIONS(6246), - [anon_sym_constinit] = ACTIONS(6246), - [anon_sym_consteval] = ACTIONS(6246), - [anon_sym_alignas] = ACTIONS(6246), - [anon_sym__Alignas] = ACTIONS(6246), - [anon_sym_QMARK] = ACTIONS(6248), - [anon_sym_STAR_EQ] = ACTIONS(6248), - [anon_sym_SLASH_EQ] = ACTIONS(6248), - [anon_sym_PERCENT_EQ] = ACTIONS(6248), - [anon_sym_PLUS_EQ] = ACTIONS(6248), - [anon_sym_DASH_EQ] = ACTIONS(6248), - [anon_sym_LT_LT_EQ] = ACTIONS(6248), - [anon_sym_GT_GT_EQ] = ACTIONS(6248), - [anon_sym_AMP_EQ] = ACTIONS(6248), - [anon_sym_CARET_EQ] = ACTIONS(6248), - [anon_sym_PIPE_EQ] = ACTIONS(6248), - [anon_sym_and_eq] = ACTIONS(6246), - [anon_sym_or_eq] = ACTIONS(6246), - [anon_sym_xor_eq] = ACTIONS(6246), - [anon_sym_LT_EQ_GT] = ACTIONS(6248), - [anon_sym_or] = ACTIONS(6246), - [anon_sym_and] = ACTIONS(6246), - [anon_sym_bitor] = ACTIONS(6246), - [anon_sym_xor] = ACTIONS(6246), - [anon_sym_bitand] = ACTIONS(6246), - [anon_sym_not_eq] = ACTIONS(6246), - [anon_sym_DASH_DASH] = ACTIONS(6248), - [anon_sym_PLUS_PLUS] = ACTIONS(6248), - [anon_sym_DOT] = ACTIONS(6246), - [anon_sym_DOT_STAR] = ACTIONS(6248), - [anon_sym_DASH_GT] = ACTIONS(6248), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6246), - [anon_sym_decltype] = ACTIONS(6246), - [anon_sym_final] = ACTIONS(6246), - [anon_sym_override] = ACTIONS(6246), - [anon_sym_requires] = ACTIONS(6246), - [anon_sym_COLON_RBRACK] = ACTIONS(6248), - }, - [STATE(1982)] = { - [sym_identifier] = ACTIONS(6250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6252), - [anon_sym_COMMA] = ACTIONS(6252), - [anon_sym_RPAREN] = ACTIONS(6252), - [aux_sym_preproc_if_token2] = ACTIONS(6252), - [aux_sym_preproc_else_token1] = ACTIONS(6252), - [aux_sym_preproc_elif_token1] = ACTIONS(6250), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6252), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6252), - [anon_sym_LPAREN2] = ACTIONS(6252), - [anon_sym_DASH] = ACTIONS(6250), - [anon_sym_PLUS] = ACTIONS(6250), - [anon_sym_STAR] = ACTIONS(6250), - [anon_sym_SLASH] = ACTIONS(6250), - [anon_sym_PERCENT] = ACTIONS(6250), - [anon_sym_PIPE_PIPE] = ACTIONS(6252), - [anon_sym_AMP_AMP] = ACTIONS(6252), - [anon_sym_PIPE] = ACTIONS(6250), - [anon_sym_CARET] = ACTIONS(6250), - [anon_sym_AMP] = ACTIONS(6250), - [anon_sym_EQ_EQ] = ACTIONS(6252), - [anon_sym_BANG_EQ] = ACTIONS(6252), - [anon_sym_GT] = ACTIONS(6250), - [anon_sym_GT_EQ] = ACTIONS(6252), - [anon_sym_LT_EQ] = ACTIONS(6250), - [anon_sym_LT] = ACTIONS(6250), - [anon_sym_LT_LT] = ACTIONS(6250), - [anon_sym_GT_GT] = ACTIONS(6250), - [anon_sym_SEMI] = ACTIONS(6252), - [anon_sym___extension__] = ACTIONS(6250), - [anon_sym___attribute__] = ACTIONS(6250), - [anon_sym___attribute] = ACTIONS(6250), - [anon_sym_COLON] = ACTIONS(6250), - [anon_sym_COLON_COLON] = ACTIONS(6252), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6252), - [anon_sym_LBRACE] = ACTIONS(6252), - [anon_sym_RBRACE] = ACTIONS(6252), - [anon_sym_LBRACK] = ACTIONS(6252), - [anon_sym_EQ] = ACTIONS(6250), - [anon_sym_const] = ACTIONS(6250), - [anon_sym_constexpr] = ACTIONS(6250), - [anon_sym_volatile] = ACTIONS(6250), - [anon_sym_restrict] = ACTIONS(6250), - [anon_sym___restrict__] = ACTIONS(6250), - [anon_sym__Atomic] = ACTIONS(6250), - [anon_sym__Noreturn] = ACTIONS(6250), - [anon_sym_noreturn] = ACTIONS(6250), - [anon_sym__Nonnull] = ACTIONS(6250), - [anon_sym_mutable] = ACTIONS(6250), - [anon_sym_constinit] = ACTIONS(6250), - [anon_sym_consteval] = ACTIONS(6250), - [anon_sym_alignas] = ACTIONS(6250), - [anon_sym__Alignas] = ACTIONS(6250), - [anon_sym_QMARK] = ACTIONS(6252), - [anon_sym_STAR_EQ] = ACTIONS(6252), - [anon_sym_SLASH_EQ] = ACTIONS(6252), - [anon_sym_PERCENT_EQ] = ACTIONS(6252), - [anon_sym_PLUS_EQ] = ACTIONS(6252), - [anon_sym_DASH_EQ] = ACTIONS(6252), - [anon_sym_LT_LT_EQ] = ACTIONS(6252), - [anon_sym_GT_GT_EQ] = ACTIONS(6252), - [anon_sym_AMP_EQ] = ACTIONS(6252), - [anon_sym_CARET_EQ] = ACTIONS(6252), - [anon_sym_PIPE_EQ] = ACTIONS(6252), - [anon_sym_and_eq] = ACTIONS(6250), - [anon_sym_or_eq] = ACTIONS(6250), - [anon_sym_xor_eq] = ACTIONS(6250), - [anon_sym_LT_EQ_GT] = ACTIONS(6252), - [anon_sym_or] = ACTIONS(6250), - [anon_sym_and] = ACTIONS(6250), - [anon_sym_bitor] = ACTIONS(6250), - [anon_sym_xor] = ACTIONS(6250), - [anon_sym_bitand] = ACTIONS(6250), - [anon_sym_not_eq] = ACTIONS(6250), - [anon_sym_DASH_DASH] = ACTIONS(6252), - [anon_sym_PLUS_PLUS] = ACTIONS(6252), - [anon_sym_DOT] = ACTIONS(6250), - [anon_sym_DOT_STAR] = ACTIONS(6252), - [anon_sym_DASH_GT] = ACTIONS(6252), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6250), - [anon_sym_decltype] = ACTIONS(6250), - [anon_sym_final] = ACTIONS(6250), - [anon_sym_override] = ACTIONS(6250), - [anon_sym_requires] = ACTIONS(6250), - [anon_sym_COLON_RBRACK] = ACTIONS(6252), - }, - [STATE(1983)] = { - [sym_identifier] = ACTIONS(6254), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6256), - [anon_sym_COMMA] = ACTIONS(6256), - [anon_sym_RPAREN] = ACTIONS(6256), - [aux_sym_preproc_if_token2] = ACTIONS(6256), - [aux_sym_preproc_else_token1] = ACTIONS(6256), - [aux_sym_preproc_elif_token1] = ACTIONS(6254), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6256), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6256), - [anon_sym_LPAREN2] = ACTIONS(6256), - [anon_sym_DASH] = ACTIONS(6254), - [anon_sym_PLUS] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(6254), - [anon_sym_SLASH] = ACTIONS(6254), - [anon_sym_PERCENT] = ACTIONS(6254), - [anon_sym_PIPE_PIPE] = ACTIONS(6256), - [anon_sym_AMP_AMP] = ACTIONS(6256), - [anon_sym_PIPE] = ACTIONS(6254), - [anon_sym_CARET] = ACTIONS(6254), - [anon_sym_AMP] = ACTIONS(6254), - [anon_sym_EQ_EQ] = ACTIONS(6256), - [anon_sym_BANG_EQ] = ACTIONS(6256), - [anon_sym_GT] = ACTIONS(6254), - [anon_sym_GT_EQ] = ACTIONS(6256), - [anon_sym_LT_EQ] = ACTIONS(6254), - [anon_sym_LT] = ACTIONS(6254), - [anon_sym_LT_LT] = ACTIONS(6254), - [anon_sym_GT_GT] = ACTIONS(6254), - [anon_sym_SEMI] = ACTIONS(6256), - [anon_sym___extension__] = ACTIONS(6254), - [anon_sym___attribute__] = ACTIONS(6254), - [anon_sym___attribute] = ACTIONS(6254), - [anon_sym_COLON] = ACTIONS(6254), - [anon_sym_COLON_COLON] = ACTIONS(6256), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6256), - [anon_sym_LBRACE] = ACTIONS(6256), - [anon_sym_RBRACE] = ACTIONS(6256), - [anon_sym_LBRACK] = ACTIONS(6256), - [anon_sym_EQ] = ACTIONS(6254), - [anon_sym_const] = ACTIONS(6254), - [anon_sym_constexpr] = ACTIONS(6254), - [anon_sym_volatile] = ACTIONS(6254), - [anon_sym_restrict] = ACTIONS(6254), - [anon_sym___restrict__] = ACTIONS(6254), - [anon_sym__Atomic] = ACTIONS(6254), - [anon_sym__Noreturn] = ACTIONS(6254), - [anon_sym_noreturn] = ACTIONS(6254), - [anon_sym__Nonnull] = ACTIONS(6254), - [anon_sym_mutable] = ACTIONS(6254), - [anon_sym_constinit] = ACTIONS(6254), - [anon_sym_consteval] = ACTIONS(6254), - [anon_sym_alignas] = ACTIONS(6254), - [anon_sym__Alignas] = ACTIONS(6254), - [anon_sym_QMARK] = ACTIONS(6256), - [anon_sym_STAR_EQ] = ACTIONS(6256), - [anon_sym_SLASH_EQ] = ACTIONS(6256), - [anon_sym_PERCENT_EQ] = ACTIONS(6256), - [anon_sym_PLUS_EQ] = ACTIONS(6256), - [anon_sym_DASH_EQ] = ACTIONS(6256), - [anon_sym_LT_LT_EQ] = ACTIONS(6256), - [anon_sym_GT_GT_EQ] = ACTIONS(6256), - [anon_sym_AMP_EQ] = ACTIONS(6256), - [anon_sym_CARET_EQ] = ACTIONS(6256), - [anon_sym_PIPE_EQ] = ACTIONS(6256), - [anon_sym_and_eq] = ACTIONS(6254), - [anon_sym_or_eq] = ACTIONS(6254), - [anon_sym_xor_eq] = ACTIONS(6254), - [anon_sym_LT_EQ_GT] = ACTIONS(6256), - [anon_sym_or] = ACTIONS(6254), - [anon_sym_and] = ACTIONS(6254), - [anon_sym_bitor] = ACTIONS(6254), - [anon_sym_xor] = ACTIONS(6254), - [anon_sym_bitand] = ACTIONS(6254), - [anon_sym_not_eq] = ACTIONS(6254), - [anon_sym_DASH_DASH] = ACTIONS(6256), - [anon_sym_PLUS_PLUS] = ACTIONS(6256), - [anon_sym_DOT] = ACTIONS(6254), - [anon_sym_DOT_STAR] = ACTIONS(6256), - [anon_sym_DASH_GT] = ACTIONS(6256), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6254), - [anon_sym_decltype] = ACTIONS(6254), - [anon_sym_final] = ACTIONS(6254), - [anon_sym_override] = ACTIONS(6254), - [anon_sym_requires] = ACTIONS(6254), - [anon_sym_COLON_RBRACK] = ACTIONS(6256), - }, - [STATE(1984)] = { - [sym_identifier] = ACTIONS(6258), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), - [anon_sym_COMMA] = ACTIONS(6260), - [anon_sym_RPAREN] = ACTIONS(6260), - [aux_sym_preproc_if_token2] = ACTIONS(6260), - [aux_sym_preproc_else_token1] = ACTIONS(6260), - [aux_sym_preproc_elif_token1] = ACTIONS(6258), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6260), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6260), - [anon_sym_LPAREN2] = ACTIONS(6260), - [anon_sym_DASH] = ACTIONS(6258), - [anon_sym_PLUS] = ACTIONS(6258), - [anon_sym_STAR] = ACTIONS(6258), - [anon_sym_SLASH] = ACTIONS(6258), - [anon_sym_PERCENT] = ACTIONS(6258), - [anon_sym_PIPE_PIPE] = ACTIONS(6260), - [anon_sym_AMP_AMP] = ACTIONS(6260), - [anon_sym_PIPE] = ACTIONS(6258), - [anon_sym_CARET] = ACTIONS(6258), - [anon_sym_AMP] = ACTIONS(6258), - [anon_sym_EQ_EQ] = ACTIONS(6260), - [anon_sym_BANG_EQ] = ACTIONS(6260), - [anon_sym_GT] = ACTIONS(6258), - [anon_sym_GT_EQ] = ACTIONS(6260), - [anon_sym_LT_EQ] = ACTIONS(6258), - [anon_sym_LT] = ACTIONS(6258), - [anon_sym_LT_LT] = ACTIONS(6258), - [anon_sym_GT_GT] = ACTIONS(6258), - [anon_sym_SEMI] = ACTIONS(6260), - [anon_sym___extension__] = ACTIONS(6258), - [anon_sym___attribute__] = ACTIONS(6258), - [anon_sym___attribute] = ACTIONS(6258), - [anon_sym_COLON] = ACTIONS(6258), - [anon_sym_COLON_COLON] = ACTIONS(6260), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6260), - [anon_sym_RBRACE] = ACTIONS(6260), - [anon_sym_LBRACK] = ACTIONS(6260), - [anon_sym_EQ] = ACTIONS(6258), - [anon_sym_const] = ACTIONS(6258), - [anon_sym_constexpr] = ACTIONS(6258), - [anon_sym_volatile] = ACTIONS(6258), - [anon_sym_restrict] = ACTIONS(6258), - [anon_sym___restrict__] = ACTIONS(6258), - [anon_sym__Atomic] = ACTIONS(6258), - [anon_sym__Noreturn] = ACTIONS(6258), - [anon_sym_noreturn] = ACTIONS(6258), - [anon_sym__Nonnull] = ACTIONS(6258), - [anon_sym_mutable] = ACTIONS(6258), - [anon_sym_constinit] = ACTIONS(6258), - [anon_sym_consteval] = ACTIONS(6258), - [anon_sym_alignas] = ACTIONS(6258), - [anon_sym__Alignas] = ACTIONS(6258), - [anon_sym_QMARK] = ACTIONS(6260), - [anon_sym_STAR_EQ] = ACTIONS(6260), - [anon_sym_SLASH_EQ] = ACTIONS(6260), - [anon_sym_PERCENT_EQ] = ACTIONS(6260), - [anon_sym_PLUS_EQ] = ACTIONS(6260), - [anon_sym_DASH_EQ] = ACTIONS(6260), - [anon_sym_LT_LT_EQ] = ACTIONS(6260), - [anon_sym_GT_GT_EQ] = ACTIONS(6260), - [anon_sym_AMP_EQ] = ACTIONS(6260), - [anon_sym_CARET_EQ] = ACTIONS(6260), - [anon_sym_PIPE_EQ] = ACTIONS(6260), - [anon_sym_and_eq] = ACTIONS(6258), - [anon_sym_or_eq] = ACTIONS(6258), - [anon_sym_xor_eq] = ACTIONS(6258), - [anon_sym_LT_EQ_GT] = ACTIONS(6260), - [anon_sym_or] = ACTIONS(6258), - [anon_sym_and] = ACTIONS(6258), - [anon_sym_bitor] = ACTIONS(6258), - [anon_sym_xor] = ACTIONS(6258), - [anon_sym_bitand] = ACTIONS(6258), - [anon_sym_not_eq] = ACTIONS(6258), - [anon_sym_DASH_DASH] = ACTIONS(6260), - [anon_sym_PLUS_PLUS] = ACTIONS(6260), - [anon_sym_DOT] = ACTIONS(6258), - [anon_sym_DOT_STAR] = ACTIONS(6260), - [anon_sym_DASH_GT] = ACTIONS(6260), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6258), - [anon_sym_decltype] = ACTIONS(6258), - [anon_sym_final] = ACTIONS(6258), - [anon_sym_override] = ACTIONS(6258), - [anon_sym_requires] = ACTIONS(6258), - [anon_sym_COLON_RBRACK] = ACTIONS(6260), - }, - [STATE(1985)] = { - [sym_identifier] = ACTIONS(6262), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), - [anon_sym_COMMA] = ACTIONS(6264), - [anon_sym_RPAREN] = ACTIONS(6264), - [aux_sym_preproc_if_token2] = ACTIONS(6264), - [aux_sym_preproc_else_token1] = ACTIONS(6264), - [aux_sym_preproc_elif_token1] = ACTIONS(6262), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6264), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6264), - [anon_sym_LPAREN2] = ACTIONS(6264), - [anon_sym_DASH] = ACTIONS(6262), - [anon_sym_PLUS] = ACTIONS(6262), - [anon_sym_STAR] = ACTIONS(6262), - [anon_sym_SLASH] = ACTIONS(6262), - [anon_sym_PERCENT] = ACTIONS(6262), - [anon_sym_PIPE_PIPE] = ACTIONS(6264), - [anon_sym_AMP_AMP] = ACTIONS(6264), - [anon_sym_PIPE] = ACTIONS(6262), - [anon_sym_CARET] = ACTIONS(6262), - [anon_sym_AMP] = ACTIONS(6262), - [anon_sym_EQ_EQ] = ACTIONS(6264), - [anon_sym_BANG_EQ] = ACTIONS(6264), - [anon_sym_GT] = ACTIONS(6262), - [anon_sym_GT_EQ] = ACTIONS(6264), - [anon_sym_LT_EQ] = ACTIONS(6262), - [anon_sym_LT] = ACTIONS(6262), - [anon_sym_LT_LT] = ACTIONS(6262), - [anon_sym_GT_GT] = ACTIONS(6262), - [anon_sym_SEMI] = ACTIONS(6264), - [anon_sym___extension__] = ACTIONS(6262), - [anon_sym___attribute__] = ACTIONS(6262), - [anon_sym___attribute] = ACTIONS(6262), - [anon_sym_COLON] = ACTIONS(6262), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6264), - [anon_sym_LBRACE] = ACTIONS(6264), - [anon_sym_RBRACE] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(6264), - [anon_sym_EQ] = ACTIONS(6262), - [anon_sym_const] = ACTIONS(6262), - [anon_sym_constexpr] = ACTIONS(6262), - [anon_sym_volatile] = ACTIONS(6262), - [anon_sym_restrict] = ACTIONS(6262), - [anon_sym___restrict__] = ACTIONS(6262), - [anon_sym__Atomic] = ACTIONS(6262), - [anon_sym__Noreturn] = ACTIONS(6262), - [anon_sym_noreturn] = ACTIONS(6262), - [anon_sym__Nonnull] = ACTIONS(6262), - [anon_sym_mutable] = ACTIONS(6262), - [anon_sym_constinit] = ACTIONS(6262), - [anon_sym_consteval] = ACTIONS(6262), - [anon_sym_alignas] = ACTIONS(6262), - [anon_sym__Alignas] = ACTIONS(6262), - [anon_sym_QMARK] = ACTIONS(6264), - [anon_sym_STAR_EQ] = ACTIONS(6264), - [anon_sym_SLASH_EQ] = ACTIONS(6264), - [anon_sym_PERCENT_EQ] = ACTIONS(6264), - [anon_sym_PLUS_EQ] = ACTIONS(6264), - [anon_sym_DASH_EQ] = ACTIONS(6264), - [anon_sym_LT_LT_EQ] = ACTIONS(6264), - [anon_sym_GT_GT_EQ] = ACTIONS(6264), - [anon_sym_AMP_EQ] = ACTIONS(6264), - [anon_sym_CARET_EQ] = ACTIONS(6264), - [anon_sym_PIPE_EQ] = ACTIONS(6264), - [anon_sym_and_eq] = ACTIONS(6262), - [anon_sym_or_eq] = ACTIONS(6262), - [anon_sym_xor_eq] = ACTIONS(6262), - [anon_sym_LT_EQ_GT] = ACTIONS(6264), - [anon_sym_or] = ACTIONS(6262), - [anon_sym_and] = ACTIONS(6262), - [anon_sym_bitor] = ACTIONS(6262), - [anon_sym_xor] = ACTIONS(6262), - [anon_sym_bitand] = ACTIONS(6262), - [anon_sym_not_eq] = ACTIONS(6262), - [anon_sym_DASH_DASH] = ACTIONS(6264), - [anon_sym_PLUS_PLUS] = ACTIONS(6264), - [anon_sym_DOT] = ACTIONS(6262), - [anon_sym_DOT_STAR] = ACTIONS(6264), - [anon_sym_DASH_GT] = ACTIONS(6264), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6262), - [anon_sym_decltype] = ACTIONS(6262), - [anon_sym_final] = ACTIONS(6262), - [anon_sym_override] = ACTIONS(6262), - [anon_sym_requires] = ACTIONS(6262), - [anon_sym_COLON_RBRACK] = ACTIONS(6264), - }, - [STATE(1986)] = { - [sym_identifier] = ACTIONS(6949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), - [anon_sym_COMMA] = ACTIONS(6951), - [anon_sym_RPAREN] = ACTIONS(6951), - [aux_sym_preproc_if_token2] = ACTIONS(6951), - [aux_sym_preproc_else_token1] = ACTIONS(6951), - [aux_sym_preproc_elif_token1] = ACTIONS(6949), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6951), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6951), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_DASH] = ACTIONS(6949), - [anon_sym_PLUS] = ACTIONS(6949), - [anon_sym_STAR] = ACTIONS(6949), - [anon_sym_SLASH] = ACTIONS(6949), - [anon_sym_PERCENT] = ACTIONS(6949), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_PIPE] = ACTIONS(6949), - [anon_sym_CARET] = ACTIONS(6949), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_GT] = ACTIONS(6949), - [anon_sym_GT_EQ] = ACTIONS(6951), - [anon_sym_LT_EQ] = ACTIONS(6949), - [anon_sym_LT] = ACTIONS(6949), - [anon_sym_LT_LT] = ACTIONS(6949), - [anon_sym_GT_GT] = ACTIONS(6949), - [anon_sym_SEMI] = ACTIONS(6951), - [anon_sym___extension__] = ACTIONS(6949), - [anon_sym___attribute__] = ACTIONS(6949), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_COLON] = ACTIONS(6949), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6951), - [anon_sym_LBRACE] = ACTIONS(6951), - [anon_sym_RBRACE] = ACTIONS(6951), - [anon_sym_LBRACK] = ACTIONS(6951), - [anon_sym_EQ] = ACTIONS(6949), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6949), - [anon_sym_volatile] = ACTIONS(6949), - [anon_sym_restrict] = ACTIONS(6949), - [anon_sym___restrict__] = ACTIONS(6949), - [anon_sym__Atomic] = ACTIONS(6949), - [anon_sym__Noreturn] = ACTIONS(6949), - [anon_sym_noreturn] = ACTIONS(6949), - [anon_sym__Nonnull] = ACTIONS(6949), - [anon_sym_mutable] = ACTIONS(6949), - [anon_sym_constinit] = ACTIONS(6949), - [anon_sym_consteval] = ACTIONS(6949), - [anon_sym_alignas] = ACTIONS(6949), - [anon_sym__Alignas] = ACTIONS(6949), - [anon_sym_QMARK] = ACTIONS(6951), - [anon_sym_STAR_EQ] = ACTIONS(6951), - [anon_sym_SLASH_EQ] = ACTIONS(6951), - [anon_sym_PERCENT_EQ] = ACTIONS(6951), - [anon_sym_PLUS_EQ] = ACTIONS(6951), - [anon_sym_DASH_EQ] = ACTIONS(6951), - [anon_sym_LT_LT_EQ] = ACTIONS(6951), - [anon_sym_GT_GT_EQ] = ACTIONS(6951), - [anon_sym_AMP_EQ] = ACTIONS(6951), - [anon_sym_CARET_EQ] = ACTIONS(6951), - [anon_sym_PIPE_EQ] = ACTIONS(6951), - [anon_sym_and_eq] = ACTIONS(6949), - [anon_sym_or_eq] = ACTIONS(6949), - [anon_sym_xor_eq] = ACTIONS(6949), - [anon_sym_LT_EQ_GT] = ACTIONS(6951), - [anon_sym_or] = ACTIONS(6949), - [anon_sym_and] = ACTIONS(6949), - [anon_sym_bitor] = ACTIONS(6949), - [anon_sym_xor] = ACTIONS(6949), - [anon_sym_bitand] = ACTIONS(6949), - [anon_sym_not_eq] = ACTIONS(6949), - [anon_sym_DASH_DASH] = ACTIONS(6951), - [anon_sym_PLUS_PLUS] = ACTIONS(6951), - [anon_sym_DOT] = ACTIONS(6949), - [anon_sym_DOT_STAR] = ACTIONS(6951), - [anon_sym_DASH_GT] = ACTIONS(6951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6949), - [anon_sym_decltype] = ACTIONS(6949), - [anon_sym_final] = ACTIONS(6949), - [anon_sym_override] = ACTIONS(6949), - [anon_sym_requires] = ACTIONS(6949), - [anon_sym_COLON_RBRACK] = ACTIONS(6951), - }, - [STATE(1987)] = { - [sym_identifier] = ACTIONS(6949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), - [anon_sym_COMMA] = ACTIONS(6951), - [anon_sym_RPAREN] = ACTIONS(6951), - [aux_sym_preproc_if_token2] = ACTIONS(6951), - [aux_sym_preproc_else_token1] = ACTIONS(6951), - [aux_sym_preproc_elif_token1] = ACTIONS(6949), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6951), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6951), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_DASH] = ACTIONS(6949), - [anon_sym_PLUS] = ACTIONS(6949), - [anon_sym_STAR] = ACTIONS(6949), - [anon_sym_SLASH] = ACTIONS(6949), - [anon_sym_PERCENT] = ACTIONS(6949), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_PIPE] = ACTIONS(6949), - [anon_sym_CARET] = ACTIONS(6949), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_GT] = ACTIONS(6949), - [anon_sym_GT_EQ] = ACTIONS(6951), - [anon_sym_LT_EQ] = ACTIONS(6949), - [anon_sym_LT] = ACTIONS(6949), - [anon_sym_LT_LT] = ACTIONS(6949), - [anon_sym_GT_GT] = ACTIONS(6949), - [anon_sym_SEMI] = ACTIONS(6951), - [anon_sym___extension__] = ACTIONS(6949), - [anon_sym___attribute__] = ACTIONS(6949), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_COLON] = ACTIONS(6949), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6951), - [anon_sym_LBRACE] = ACTIONS(6951), - [anon_sym_RBRACE] = ACTIONS(6951), - [anon_sym_LBRACK] = ACTIONS(6951), - [anon_sym_EQ] = ACTIONS(6949), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6949), - [anon_sym_volatile] = ACTIONS(6949), - [anon_sym_restrict] = ACTIONS(6949), - [anon_sym___restrict__] = ACTIONS(6949), - [anon_sym__Atomic] = ACTIONS(6949), - [anon_sym__Noreturn] = ACTIONS(6949), - [anon_sym_noreturn] = ACTIONS(6949), - [anon_sym__Nonnull] = ACTIONS(6949), - [anon_sym_mutable] = ACTIONS(6949), - [anon_sym_constinit] = ACTIONS(6949), - [anon_sym_consteval] = ACTIONS(6949), - [anon_sym_alignas] = ACTIONS(6949), - [anon_sym__Alignas] = ACTIONS(6949), - [anon_sym_QMARK] = ACTIONS(6951), - [anon_sym_STAR_EQ] = ACTIONS(6951), - [anon_sym_SLASH_EQ] = ACTIONS(6951), - [anon_sym_PERCENT_EQ] = ACTIONS(6951), - [anon_sym_PLUS_EQ] = ACTIONS(6951), - [anon_sym_DASH_EQ] = ACTIONS(6951), - [anon_sym_LT_LT_EQ] = ACTIONS(6951), - [anon_sym_GT_GT_EQ] = ACTIONS(6951), - [anon_sym_AMP_EQ] = ACTIONS(6951), - [anon_sym_CARET_EQ] = ACTIONS(6951), - [anon_sym_PIPE_EQ] = ACTIONS(6951), - [anon_sym_and_eq] = ACTIONS(6949), - [anon_sym_or_eq] = ACTIONS(6949), - [anon_sym_xor_eq] = ACTIONS(6949), - [anon_sym_LT_EQ_GT] = ACTIONS(6951), - [anon_sym_or] = ACTIONS(6949), - [anon_sym_and] = ACTIONS(6949), - [anon_sym_bitor] = ACTIONS(6949), - [anon_sym_xor] = ACTIONS(6949), - [anon_sym_bitand] = ACTIONS(6949), - [anon_sym_not_eq] = ACTIONS(6949), - [anon_sym_DASH_DASH] = ACTIONS(6951), - [anon_sym_PLUS_PLUS] = ACTIONS(6951), - [anon_sym_DOT] = ACTIONS(6949), - [anon_sym_DOT_STAR] = ACTIONS(6951), - [anon_sym_DASH_GT] = ACTIONS(6951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6949), - [anon_sym_decltype] = ACTIONS(6949), - [anon_sym_final] = ACTIONS(6949), - [anon_sym_override] = ACTIONS(6949), - [anon_sym_requires] = ACTIONS(6949), - [anon_sym_COLON_RBRACK] = ACTIONS(6951), - }, - [STATE(1988)] = { - [sym_type_qualifier] = STATE(1989), - [sym_alignas_qualifier] = STATE(1953), - [aux_sym__type_definition_type_repeat1] = STATE(1989), - [aux_sym_sized_type_specifier_repeat1] = STATE(2116), - [sym_identifier] = ACTIONS(6953), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), - [anon_sym_COMMA] = ACTIONS(6812), - [aux_sym_preproc_if_token2] = ACTIONS(6812), - [aux_sym_preproc_else_token1] = ACTIONS(6812), - [aux_sym_preproc_elif_token1] = ACTIONS(6814), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6812), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6812), - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_STAR] = ACTIONS(6814), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_PERCENT] = ACTIONS(6814), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_CARET] = ACTIONS(6814), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_LT_LT] = ACTIONS(6814), - [anon_sym_GT_GT] = ACTIONS(6814), - [anon_sym___extension__] = ACTIONS(6816), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_signed] = ACTIONS(6956), - [anon_sym_unsigned] = ACTIONS(6956), - [anon_sym_long] = ACTIONS(6956), - [anon_sym_short] = ACTIONS(6956), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_EQ] = ACTIONS(6814), - [anon_sym_const] = ACTIONS(6816), - [anon_sym_constexpr] = ACTIONS(6816), - [anon_sym_volatile] = ACTIONS(6816), - [anon_sym_restrict] = ACTIONS(6816), - [anon_sym___restrict__] = ACTIONS(6816), - [anon_sym__Atomic] = ACTIONS(6816), - [anon_sym__Noreturn] = ACTIONS(6816), - [anon_sym_noreturn] = ACTIONS(6816), - [anon_sym__Nonnull] = ACTIONS(6816), - [anon_sym_mutable] = ACTIONS(6816), - [anon_sym_constinit] = ACTIONS(6816), - [anon_sym_consteval] = ACTIONS(6816), - [anon_sym_alignas] = ACTIONS(6821), - [anon_sym__Alignas] = ACTIONS(6821), - [sym_primitive_type] = ACTIONS(6958), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_STAR_EQ] = ACTIONS(6812), - [anon_sym_SLASH_EQ] = ACTIONS(6812), - [anon_sym_PERCENT_EQ] = ACTIONS(6812), - [anon_sym_PLUS_EQ] = ACTIONS(6812), - [anon_sym_DASH_EQ] = ACTIONS(6812), - [anon_sym_LT_LT_EQ] = ACTIONS(6812), - [anon_sym_GT_GT_EQ] = ACTIONS(6812), - [anon_sym_AMP_EQ] = ACTIONS(6812), - [anon_sym_CARET_EQ] = ACTIONS(6812), - [anon_sym_PIPE_EQ] = ACTIONS(6812), - [anon_sym_and_eq] = ACTIONS(6814), - [anon_sym_or_eq] = ACTIONS(6814), - [anon_sym_xor_eq] = ACTIONS(6814), - [anon_sym_LT_EQ_GT] = ACTIONS(6812), - [anon_sym_or] = ACTIONS(6814), - [anon_sym_and] = ACTIONS(6814), - [anon_sym_bitor] = ACTIONS(6814), - [anon_sym_xor] = ACTIONS(6814), - [anon_sym_bitand] = ACTIONS(6814), - [anon_sym_not_eq] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6814), - [anon_sym_DOT_STAR] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6812), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6814), - [anon_sym_override] = ACTIONS(6814), - [anon_sym_requires] = ACTIONS(6814), - }, - [STATE(1989)] = { - [sym_type_qualifier] = STATE(1913), - [sym_alignas_qualifier] = STATE(1953), - [aux_sym__type_definition_type_repeat1] = STATE(1913), - [aux_sym_sized_type_specifier_repeat1] = STATE(2087), - [sym_identifier] = ACTIONS(6960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), - [anon_sym_COMMA] = ACTIONS(6884), - [aux_sym_preproc_if_token2] = ACTIONS(6884), - [aux_sym_preproc_else_token1] = ACTIONS(6884), - [aux_sym_preproc_elif_token1] = ACTIONS(6886), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6884), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6884), - [anon_sym_LPAREN2] = ACTIONS(6884), - [anon_sym_DASH] = ACTIONS(6886), - [anon_sym_PLUS] = ACTIONS(6886), - [anon_sym_STAR] = ACTIONS(6886), - [anon_sym_SLASH] = ACTIONS(6886), - [anon_sym_PERCENT] = ACTIONS(6886), - [anon_sym_PIPE_PIPE] = ACTIONS(6884), - [anon_sym_AMP_AMP] = ACTIONS(6884), - [anon_sym_PIPE] = ACTIONS(6886), - [anon_sym_CARET] = ACTIONS(6886), - [anon_sym_AMP] = ACTIONS(6886), - [anon_sym_EQ_EQ] = ACTIONS(6884), - [anon_sym_BANG_EQ] = ACTIONS(6884), - [anon_sym_GT] = ACTIONS(6886), - [anon_sym_GT_EQ] = ACTIONS(6884), - [anon_sym_LT_EQ] = ACTIONS(6886), - [anon_sym_LT] = ACTIONS(6886), - [anon_sym_LT_LT] = ACTIONS(6886), - [anon_sym_GT_GT] = ACTIONS(6886), - [anon_sym___extension__] = ACTIONS(6888), - [anon_sym___attribute__] = ACTIONS(6886), - [anon_sym___attribute] = ACTIONS(6886), - [anon_sym_LBRACE] = ACTIONS(6884), - [anon_sym_signed] = ACTIONS(6963), - [anon_sym_unsigned] = ACTIONS(6963), - [anon_sym_long] = ACTIONS(6963), - [anon_sym_short] = ACTIONS(6963), - [anon_sym_LBRACK] = ACTIONS(6884), - [anon_sym_EQ] = ACTIONS(6886), - [anon_sym_const] = ACTIONS(6888), - [anon_sym_constexpr] = ACTIONS(6888), - [anon_sym_volatile] = ACTIONS(6888), - [anon_sym_restrict] = ACTIONS(6888), - [anon_sym___restrict__] = ACTIONS(6888), - [anon_sym__Atomic] = ACTIONS(6888), - [anon_sym__Noreturn] = ACTIONS(6888), - [anon_sym_noreturn] = ACTIONS(6888), - [anon_sym__Nonnull] = ACTIONS(6888), - [anon_sym_mutable] = ACTIONS(6888), - [anon_sym_constinit] = ACTIONS(6888), - [anon_sym_consteval] = ACTIONS(6888), - [anon_sym_alignas] = ACTIONS(6893), - [anon_sym__Alignas] = ACTIONS(6893), - [sym_primitive_type] = ACTIONS(6965), - [anon_sym_QMARK] = ACTIONS(6884), - [anon_sym_STAR_EQ] = ACTIONS(6884), - [anon_sym_SLASH_EQ] = ACTIONS(6884), - [anon_sym_PERCENT_EQ] = ACTIONS(6884), - [anon_sym_PLUS_EQ] = ACTIONS(6884), - [anon_sym_DASH_EQ] = ACTIONS(6884), - [anon_sym_LT_LT_EQ] = ACTIONS(6884), - [anon_sym_GT_GT_EQ] = ACTIONS(6884), - [anon_sym_AMP_EQ] = ACTIONS(6884), - [anon_sym_CARET_EQ] = ACTIONS(6884), - [anon_sym_PIPE_EQ] = ACTIONS(6884), - [anon_sym_and_eq] = ACTIONS(6886), - [anon_sym_or_eq] = ACTIONS(6886), - [anon_sym_xor_eq] = ACTIONS(6886), - [anon_sym_LT_EQ_GT] = ACTIONS(6884), - [anon_sym_or] = ACTIONS(6886), - [anon_sym_and] = ACTIONS(6886), - [anon_sym_bitor] = ACTIONS(6886), - [anon_sym_xor] = ACTIONS(6886), - [anon_sym_bitand] = ACTIONS(6886), - [anon_sym_not_eq] = ACTIONS(6886), - [anon_sym_DASH_DASH] = ACTIONS(6884), - [anon_sym_PLUS_PLUS] = ACTIONS(6884), - [anon_sym_DOT] = ACTIONS(6886), - [anon_sym_DOT_STAR] = ACTIONS(6884), - [anon_sym_DASH_GT] = ACTIONS(6884), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6886), - [anon_sym_override] = ACTIONS(6886), - [anon_sym_requires] = ACTIONS(6886), - }, - [STATE(1990)] = { - [sym_identifier] = ACTIONS(6967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6969), - [anon_sym_COMMA] = ACTIONS(6969), - [anon_sym_RPAREN] = ACTIONS(6969), - [aux_sym_preproc_if_token2] = ACTIONS(6969), - [aux_sym_preproc_else_token1] = ACTIONS(6969), - [aux_sym_preproc_elif_token1] = ACTIONS(6967), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6969), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6969), - [anon_sym_LPAREN2] = ACTIONS(6969), - [anon_sym_DASH] = ACTIONS(6967), - [anon_sym_PLUS] = ACTIONS(6967), - [anon_sym_STAR] = ACTIONS(6967), - [anon_sym_SLASH] = ACTIONS(6967), - [anon_sym_PERCENT] = ACTIONS(6967), - [anon_sym_PIPE_PIPE] = ACTIONS(6969), - [anon_sym_AMP_AMP] = ACTIONS(6969), - [anon_sym_PIPE] = ACTIONS(6967), - [anon_sym_CARET] = ACTIONS(6967), - [anon_sym_AMP] = ACTIONS(6967), - [anon_sym_EQ_EQ] = ACTIONS(6969), - [anon_sym_BANG_EQ] = ACTIONS(6969), - [anon_sym_GT] = ACTIONS(6967), - [anon_sym_GT_EQ] = ACTIONS(6969), - [anon_sym_LT_EQ] = ACTIONS(6967), - [anon_sym_LT] = ACTIONS(6967), - [anon_sym_LT_LT] = ACTIONS(6967), - [anon_sym_GT_GT] = ACTIONS(6967), - [anon_sym_SEMI] = ACTIONS(6969), - [anon_sym___extension__] = ACTIONS(6967), - [anon_sym___attribute__] = ACTIONS(6967), - [anon_sym___attribute] = ACTIONS(6967), - [anon_sym_COLON] = ACTIONS(6967), - [anon_sym_COLON_COLON] = ACTIONS(6969), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6969), - [anon_sym_LBRACE] = ACTIONS(6969), - [anon_sym_RBRACE] = ACTIONS(6969), - [anon_sym_LBRACK] = ACTIONS(6969), - [anon_sym_EQ] = ACTIONS(6967), - [anon_sym_const] = ACTIONS(6967), - [anon_sym_constexpr] = ACTIONS(6967), - [anon_sym_volatile] = ACTIONS(6967), - [anon_sym_restrict] = ACTIONS(6967), - [anon_sym___restrict__] = ACTIONS(6967), - [anon_sym__Atomic] = ACTIONS(6967), - [anon_sym__Noreturn] = ACTIONS(6967), - [anon_sym_noreturn] = ACTIONS(6967), - [anon_sym__Nonnull] = ACTIONS(6967), - [anon_sym_mutable] = ACTIONS(6967), - [anon_sym_constinit] = ACTIONS(6967), - [anon_sym_consteval] = ACTIONS(6967), - [anon_sym_alignas] = ACTIONS(6967), - [anon_sym__Alignas] = ACTIONS(6967), - [anon_sym_QMARK] = ACTIONS(6969), - [anon_sym_STAR_EQ] = ACTIONS(6969), - [anon_sym_SLASH_EQ] = ACTIONS(6969), - [anon_sym_PERCENT_EQ] = ACTIONS(6969), - [anon_sym_PLUS_EQ] = ACTIONS(6969), - [anon_sym_DASH_EQ] = ACTIONS(6969), - [anon_sym_LT_LT_EQ] = ACTIONS(6969), - [anon_sym_GT_GT_EQ] = ACTIONS(6969), - [anon_sym_AMP_EQ] = ACTIONS(6969), - [anon_sym_CARET_EQ] = ACTIONS(6969), - [anon_sym_PIPE_EQ] = ACTIONS(6969), - [anon_sym_and_eq] = ACTIONS(6967), - [anon_sym_or_eq] = ACTIONS(6967), - [anon_sym_xor_eq] = ACTIONS(6967), - [anon_sym_LT_EQ_GT] = ACTIONS(6969), - [anon_sym_or] = ACTIONS(6967), - [anon_sym_and] = ACTIONS(6967), - [anon_sym_bitor] = ACTIONS(6967), - [anon_sym_xor] = ACTIONS(6967), - [anon_sym_bitand] = ACTIONS(6967), - [anon_sym_not_eq] = ACTIONS(6967), - [anon_sym_DASH_DASH] = ACTIONS(6969), - [anon_sym_PLUS_PLUS] = ACTIONS(6969), - [anon_sym_DOT] = ACTIONS(6967), - [anon_sym_DOT_STAR] = ACTIONS(6969), - [anon_sym_DASH_GT] = ACTIONS(6969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6967), - [anon_sym_decltype] = ACTIONS(6967), - [anon_sym_final] = ACTIONS(6967), - [anon_sym_override] = ACTIONS(6967), - [anon_sym_requires] = ACTIONS(6967), - [anon_sym_COLON_RBRACK] = ACTIONS(6969), - }, - [STATE(1991)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2835), - [sym_ms_pointer_modifier] = STATE(2536), - [sym__abstract_declarator] = STATE(5015), - [sym_abstract_parenthesized_declarator] = STATE(5581), - [sym_abstract_pointer_declarator] = STATE(5581), - [sym_abstract_function_declarator] = STATE(5581), - [sym_abstract_array_declarator] = STATE(5581), - [sym_type_qualifier] = STATE(2302), - [sym_alignas_qualifier] = STATE(2432), - [sym_parameter_list] = STATE(1885), - [sym_abstract_reference_declarator] = STATE(5581), - [sym__function_declarator_seq] = STATE(5582), - [aux_sym__type_definition_type_repeat1] = STATE(2302), - [aux_sym_pointer_declarator_repeat1] = STATE(2536), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_RPAREN] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6927), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6929), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(6931), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(6933), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym___extension__] = ACTIONS(6935), - [sym_ms_restrict_modifier] = ACTIONS(6937), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6939), - [sym_ms_signed_ptr_modifier] = ACTIONS(6939), - [anon_sym__unaligned] = ACTIONS(6941), - [anon_sym___unaligned] = ACTIONS(6941), - [anon_sym_LBRACK] = ACTIONS(6943), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6945), - [anon_sym_constexpr] = ACTIONS(6935), - [anon_sym_volatile] = ACTIONS(6935), - [anon_sym_restrict] = ACTIONS(6935), - [anon_sym___restrict__] = ACTIONS(6935), - [anon_sym__Atomic] = ACTIONS(6935), - [anon_sym__Noreturn] = ACTIONS(6935), - [anon_sym_noreturn] = ACTIONS(6935), - [anon_sym__Nonnull] = ACTIONS(6935), - [anon_sym_mutable] = ACTIONS(6935), - [anon_sym_constinit] = ACTIONS(6935), - [anon_sym_consteval] = ACTIONS(6935), - [anon_sym_alignas] = ACTIONS(6947), - [anon_sym__Alignas] = ACTIONS(6947), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6497), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6497), - [anon_sym_and] = ACTIONS(6497), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6497), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6495), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6497), - [anon_sym_override] = ACTIONS(6497), - [anon_sym_requires] = ACTIONS(6497), - [anon_sym_DASH_GT_STAR] = ACTIONS(6497), - }, - [STATE(1992)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2544), - [sym_ms_pointer_modifier] = STATE(2315), - [sym__abstract_declarator] = STATE(4958), - [sym_abstract_parenthesized_declarator] = STATE(4672), - [sym_abstract_pointer_declarator] = STATE(4672), - [sym_abstract_function_declarator] = STATE(4672), - [sym_abstract_array_declarator] = STATE(4672), - [sym_type_qualifier] = STATE(2297), - [sym_alignas_qualifier] = STATE(2278), - [sym_parameter_list] = STATE(1869), - [sym_abstract_reference_declarator] = STATE(4672), - [sym__function_declarator_seq] = STATE(4681), - [aux_sym__type_definition_type_repeat1] = STATE(2297), - [aux_sym_pointer_declarator_repeat1] = STATE(2315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_RPAREN] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6648), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6971), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(6973), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(6975), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym___extension__] = ACTIONS(6656), - [sym_ms_restrict_modifier] = ACTIONS(6658), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6660), - [sym_ms_signed_ptr_modifier] = ACTIONS(6660), - [anon_sym__unaligned] = ACTIONS(6662), - [anon_sym___unaligned] = ACTIONS(6662), - [anon_sym_LBRACK] = ACTIONS(6664), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6666), - [anon_sym_constexpr] = ACTIONS(6656), - [anon_sym_volatile] = ACTIONS(6656), - [anon_sym_restrict] = ACTIONS(6656), - [anon_sym___restrict__] = ACTIONS(6656), - [anon_sym__Atomic] = ACTIONS(6656), - [anon_sym__Noreturn] = ACTIONS(6656), - [anon_sym_noreturn] = ACTIONS(6656), - [anon_sym__Nonnull] = ACTIONS(6656), - [anon_sym_mutable] = ACTIONS(6656), - [anon_sym_constinit] = ACTIONS(6656), - [anon_sym_consteval] = ACTIONS(6656), - [anon_sym_alignas] = ACTIONS(6668), - [anon_sym__Alignas] = ACTIONS(6668), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6497), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_and_eq] = ACTIONS(6497), - [anon_sym_or_eq] = ACTIONS(6497), - [anon_sym_xor_eq] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6495), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6497), - }, - [STATE(1993)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2544), - [sym_ms_pointer_modifier] = STATE(1992), - [sym__abstract_declarator] = STATE(4962), - [sym_abstract_parenthesized_declarator] = STATE(4672), - [sym_abstract_pointer_declarator] = STATE(4672), - [sym_abstract_function_declarator] = STATE(4672), - [sym_abstract_array_declarator] = STATE(4672), - [sym_type_qualifier] = STATE(2306), - [sym_alignas_qualifier] = STATE(2278), - [sym_parameter_list] = STATE(1869), - [sym_abstract_reference_declarator] = STATE(4672), - [sym__function_declarator_seq] = STATE(4681), - [aux_sym__type_definition_type_repeat1] = STATE(2306), - [aux_sym_pointer_declarator_repeat1] = STATE(1992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_RPAREN] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(6648), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_PLUS] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(6971), - [anon_sym_SLASH] = ACTIONS(6457), - [anon_sym_PERCENT] = ACTIONS(6457), - [anon_sym_PIPE_PIPE] = ACTIONS(6459), - [anon_sym_AMP_AMP] = ACTIONS(6973), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_CARET] = ACTIONS(6457), - [anon_sym_AMP] = ACTIONS(6975), - [anon_sym_EQ_EQ] = ACTIONS(6459), - [anon_sym_BANG_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_LT_EQ] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_LT_LT] = ACTIONS(6457), - [anon_sym_GT_GT] = ACTIONS(6457), - [anon_sym___extension__] = ACTIONS(6656), - [sym_ms_restrict_modifier] = ACTIONS(6658), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6660), - [sym_ms_signed_ptr_modifier] = ACTIONS(6660), - [anon_sym__unaligned] = ACTIONS(6662), - [anon_sym___unaligned] = ACTIONS(6662), - [anon_sym_LBRACK] = ACTIONS(6664), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_const] = ACTIONS(6666), - [anon_sym_constexpr] = ACTIONS(6656), - [anon_sym_volatile] = ACTIONS(6656), - [anon_sym_restrict] = ACTIONS(6656), - [anon_sym___restrict__] = ACTIONS(6656), - [anon_sym__Atomic] = ACTIONS(6656), - [anon_sym__Noreturn] = ACTIONS(6656), - [anon_sym_noreturn] = ACTIONS(6656), - [anon_sym__Nonnull] = ACTIONS(6656), - [anon_sym_mutable] = ACTIONS(6656), - [anon_sym_constinit] = ACTIONS(6656), - [anon_sym_consteval] = ACTIONS(6656), - [anon_sym_alignas] = ACTIONS(6668), - [anon_sym__Alignas] = ACTIONS(6668), - [anon_sym_QMARK] = ACTIONS(6459), - [anon_sym_STAR_EQ] = ACTIONS(6459), - [anon_sym_SLASH_EQ] = ACTIONS(6459), - [anon_sym_PERCENT_EQ] = ACTIONS(6459), - [anon_sym_PLUS_EQ] = ACTIONS(6459), - [anon_sym_DASH_EQ] = ACTIONS(6459), - [anon_sym_LT_LT_EQ] = ACTIONS(6459), - [anon_sym_GT_GT_EQ] = ACTIONS(6459), - [anon_sym_AMP_EQ] = ACTIONS(6459), - [anon_sym_CARET_EQ] = ACTIONS(6459), - [anon_sym_PIPE_EQ] = ACTIONS(6459), - [anon_sym_and_eq] = ACTIONS(6459), - [anon_sym_or_eq] = ACTIONS(6459), - [anon_sym_xor_eq] = ACTIONS(6459), - [anon_sym_LT_EQ_GT] = ACTIONS(6459), - [anon_sym_or] = ACTIONS(6457), - [anon_sym_and] = ACTIONS(6457), - [anon_sym_bitor] = ACTIONS(6459), - [anon_sym_xor] = ACTIONS(6457), - [anon_sym_bitand] = ACTIONS(6459), - [anon_sym_not_eq] = ACTIONS(6459), - [anon_sym_DASH_DASH] = ACTIONS(6459), - [anon_sym_PLUS_PLUS] = ACTIONS(6459), - [anon_sym_DOT] = ACTIONS(6457), - [anon_sym_DOT_STAR] = ACTIONS(6459), - [anon_sym_DASH_GT] = ACTIONS(6457), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6459), - }, - [STATE(1994)] = { - [sym_decltype_auto] = STATE(2101), - [sym_identifier] = ACTIONS(6798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [aux_sym_preproc_if_token2] = ACTIONS(6800), - [aux_sym_preproc_else_token1] = ACTIONS(6800), - [aux_sym_preproc_elif_token1] = ACTIONS(6798), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym_SEMI] = ACTIONS(6800), - [anon_sym___extension__] = ACTIONS(6798), - [anon_sym___attribute__] = ACTIONS(6798), - [anon_sym___attribute] = ACTIONS(6798), - [anon_sym_COLON] = ACTIONS(6798), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_RBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6798), - [anon_sym_volatile] = ACTIONS(6798), - [anon_sym_restrict] = ACTIONS(6798), - [anon_sym___restrict__] = ACTIONS(6798), - [anon_sym__Atomic] = ACTIONS(6798), - [anon_sym__Noreturn] = ACTIONS(6798), - [anon_sym_noreturn] = ACTIONS(6798), - [anon_sym__Nonnull] = ACTIONS(6798), - [anon_sym_mutable] = ACTIONS(6798), - [anon_sym_constinit] = ACTIONS(6798), - [anon_sym_consteval] = ACTIONS(6798), - [anon_sym_alignas] = ACTIONS(6798), - [anon_sym__Alignas] = ACTIONS(6798), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6798), - [anon_sym_or_eq] = ACTIONS(6798), - [anon_sym_xor_eq] = ACTIONS(6798), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6798), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6798), - [anon_sym_not_eq] = ACTIONS(6798), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6804), - [anon_sym_decltype] = ACTIONS(6437), - [anon_sym_final] = ACTIONS(6798), - [anon_sym_override] = ACTIONS(6798), - [anon_sym_requires] = ACTIONS(6798), - [anon_sym_COLON_RBRACK] = ACTIONS(6800), - }, - [STATE(1995)] = { - [sym_identifier] = ACTIONS(6226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6233), - [anon_sym_COMMA] = ACTIONS(6233), - [anon_sym_RPAREN] = ACTIONS(6233), - [aux_sym_preproc_if_token2] = ACTIONS(6233), - [aux_sym_preproc_else_token1] = ACTIONS(6233), - [aux_sym_preproc_elif_token1] = ACTIONS(6226), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6233), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6233), - [anon_sym_LPAREN2] = ACTIONS(6233), - [anon_sym_DASH] = ACTIONS(6226), - [anon_sym_PLUS] = ACTIONS(6226), - [anon_sym_STAR] = ACTIONS(6226), - [anon_sym_SLASH] = ACTIONS(6226), - [anon_sym_PERCENT] = ACTIONS(6226), - [anon_sym_PIPE_PIPE] = ACTIONS(6233), - [anon_sym_AMP_AMP] = ACTIONS(6233), - [anon_sym_PIPE] = ACTIONS(6226), - [anon_sym_CARET] = ACTIONS(6226), - [anon_sym_AMP] = ACTIONS(6226), - [anon_sym_EQ_EQ] = ACTIONS(6233), - [anon_sym_BANG_EQ] = ACTIONS(6233), - [anon_sym_GT] = ACTIONS(6226), - [anon_sym_GT_EQ] = ACTIONS(6233), - [anon_sym_LT_EQ] = ACTIONS(6226), - [anon_sym_LT] = ACTIONS(6226), - [anon_sym_LT_LT] = ACTIONS(6226), - [anon_sym_GT_GT] = ACTIONS(6226), - [anon_sym_SEMI] = ACTIONS(6233), - [anon_sym___extension__] = ACTIONS(6226), - [anon_sym___attribute__] = ACTIONS(6226), - [anon_sym___attribute] = ACTIONS(6226), - [anon_sym_COLON] = ACTIONS(6226), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6233), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_RBRACE] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6233), - [anon_sym_EQ] = ACTIONS(6226), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6226), - [anon_sym_volatile] = ACTIONS(6226), - [anon_sym_restrict] = ACTIONS(6226), - [anon_sym___restrict__] = ACTIONS(6226), - [anon_sym__Atomic] = ACTIONS(6226), - [anon_sym__Noreturn] = ACTIONS(6226), - [anon_sym_noreturn] = ACTIONS(6226), - [anon_sym__Nonnull] = ACTIONS(6226), - [anon_sym_mutable] = ACTIONS(6226), - [anon_sym_constinit] = ACTIONS(6226), - [anon_sym_consteval] = ACTIONS(6226), - [anon_sym_alignas] = ACTIONS(6226), - [anon_sym__Alignas] = ACTIONS(6226), - [anon_sym_QMARK] = ACTIONS(6233), - [anon_sym_STAR_EQ] = ACTIONS(6233), - [anon_sym_SLASH_EQ] = ACTIONS(6233), - [anon_sym_PERCENT_EQ] = ACTIONS(6233), - [anon_sym_PLUS_EQ] = ACTIONS(6233), - [anon_sym_DASH_EQ] = ACTIONS(6233), - [anon_sym_LT_LT_EQ] = ACTIONS(6233), - [anon_sym_GT_GT_EQ] = ACTIONS(6233), - [anon_sym_AMP_EQ] = ACTIONS(6233), - [anon_sym_CARET_EQ] = ACTIONS(6233), - [anon_sym_PIPE_EQ] = ACTIONS(6233), - [anon_sym_and_eq] = ACTIONS(6226), - [anon_sym_or_eq] = ACTIONS(6226), - [anon_sym_xor_eq] = ACTIONS(6226), - [anon_sym_LT_EQ_GT] = ACTIONS(6233), - [anon_sym_or] = ACTIONS(6226), - [anon_sym_and] = ACTIONS(6226), - [anon_sym_bitor] = ACTIONS(6226), - [anon_sym_xor] = ACTIONS(6226), - [anon_sym_bitand] = ACTIONS(6226), - [anon_sym_not_eq] = ACTIONS(6226), - [anon_sym_DASH_DASH] = ACTIONS(6233), - [anon_sym_PLUS_PLUS] = ACTIONS(6233), - [anon_sym_DOT] = ACTIONS(6226), - [anon_sym_DOT_STAR] = ACTIONS(6233), - [anon_sym_DASH_GT] = ACTIONS(6233), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6226), - [anon_sym_decltype] = ACTIONS(6226), - [anon_sym_final] = ACTIONS(6226), - [anon_sym_override] = ACTIONS(6226), - [anon_sym_requires] = ACTIONS(6226), - [anon_sym_COLON_RBRACK] = ACTIONS(6233), - }, - [STATE(1996)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2578), - [sym_ms_pointer_modifier] = STATE(2341), - [sym__abstract_declarator] = STATE(5385), - [sym_abstract_parenthesized_declarator] = STATE(4966), - [sym_abstract_pointer_declarator] = STATE(4966), - [sym_abstract_function_declarator] = STATE(4966), - [sym_abstract_array_declarator] = STATE(4966), - [sym_type_qualifier] = STATE(2379), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1873), - [sym_abstract_reference_declarator] = STATE(4966), - [sym__function_declarator_seq] = STATE(4975), - [aux_sym__type_definition_type_repeat1] = STATE(2379), - [aux_sym_pointer_declarator_repeat1] = STATE(2341), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6766), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6977), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(6979), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(6981), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym___extension__] = ACTIONS(6774), - [sym_ms_restrict_modifier] = ACTIONS(6776), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6778), - [sym_ms_signed_ptr_modifier] = ACTIONS(6778), - [anon_sym__unaligned] = ACTIONS(6780), - [anon_sym___unaligned] = ACTIONS(6780), - [anon_sym_LBRACK] = ACTIONS(6782), - [anon_sym_RBRACK] = ACTIONS(6497), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6774), - [anon_sym_volatile] = ACTIONS(6774), - [anon_sym_restrict] = ACTIONS(6774), - [anon_sym___restrict__] = ACTIONS(6774), - [anon_sym__Atomic] = ACTIONS(6774), - [anon_sym__Noreturn] = ACTIONS(6774), - [anon_sym_noreturn] = ACTIONS(6774), - [anon_sym__Nonnull] = ACTIONS(6774), - [anon_sym_mutable] = ACTIONS(6774), - [anon_sym_constinit] = ACTIONS(6774), - [anon_sym_consteval] = ACTIONS(6774), - [anon_sym_alignas] = ACTIONS(6784), - [anon_sym__Alignas] = ACTIONS(6784), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6497), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_and_eq] = ACTIONS(6497), - [anon_sym_or_eq] = ACTIONS(6497), - [anon_sym_xor_eq] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - }, - [STATE(1997)] = { - [sym_template_argument_list] = STATE(2030), - [sym_identifier] = ACTIONS(6746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), - [anon_sym_COMMA] = ACTIONS(6751), - [anon_sym_RPAREN] = ACTIONS(6751), - [aux_sym_preproc_if_token2] = ACTIONS(6751), - [aux_sym_preproc_else_token1] = ACTIONS(6751), - [aux_sym_preproc_elif_token1] = ACTIONS(6746), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6751), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6751), - [anon_sym_LPAREN2] = ACTIONS(6751), - [anon_sym_DASH] = ACTIONS(6746), - [anon_sym_PLUS] = ACTIONS(6746), - [anon_sym_STAR] = ACTIONS(6746), - [anon_sym_SLASH] = ACTIONS(6746), - [anon_sym_PERCENT] = ACTIONS(6746), - [anon_sym_PIPE_PIPE] = ACTIONS(6751), - [anon_sym_AMP_AMP] = ACTIONS(6751), - [anon_sym_PIPE] = ACTIONS(6746), - [anon_sym_CARET] = ACTIONS(6746), - [anon_sym_AMP] = ACTIONS(6746), - [anon_sym_EQ_EQ] = ACTIONS(6751), - [anon_sym_BANG_EQ] = ACTIONS(6751), - [anon_sym_GT] = ACTIONS(6746), - [anon_sym_GT_EQ] = ACTIONS(6751), - [anon_sym_LT_EQ] = ACTIONS(6746), - [anon_sym_LT] = ACTIONS(6898), - [anon_sym_LT_LT] = ACTIONS(6746), - [anon_sym_GT_GT] = ACTIONS(6746), - [anon_sym_SEMI] = ACTIONS(6751), - [anon_sym___extension__] = ACTIONS(6746), - [anon_sym___attribute__] = ACTIONS(6746), - [anon_sym___attribute] = ACTIONS(6746), - [anon_sym_COLON] = ACTIONS(6746), - [anon_sym_COLON_COLON] = ACTIONS(6748), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6751), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_RBRACE] = ACTIONS(6751), - [anon_sym_LBRACK] = ACTIONS(6751), - [anon_sym_EQ] = ACTIONS(6746), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6746), - [anon_sym_volatile] = ACTIONS(6746), - [anon_sym_restrict] = ACTIONS(6746), - [anon_sym___restrict__] = ACTIONS(6746), - [anon_sym__Atomic] = ACTIONS(6746), - [anon_sym__Noreturn] = ACTIONS(6746), - [anon_sym_noreturn] = ACTIONS(6746), - [anon_sym__Nonnull] = ACTIONS(6746), - [anon_sym_mutable] = ACTIONS(6746), - [anon_sym_constinit] = ACTIONS(6746), - [anon_sym_consteval] = ACTIONS(6746), - [anon_sym_alignas] = ACTIONS(6746), - [anon_sym__Alignas] = ACTIONS(6746), - [anon_sym_QMARK] = ACTIONS(6751), - [anon_sym_STAR_EQ] = ACTIONS(6751), - [anon_sym_SLASH_EQ] = ACTIONS(6751), - [anon_sym_PERCENT_EQ] = ACTIONS(6751), - [anon_sym_PLUS_EQ] = ACTIONS(6751), - [anon_sym_DASH_EQ] = ACTIONS(6751), - [anon_sym_LT_LT_EQ] = ACTIONS(6751), - [anon_sym_GT_GT_EQ] = ACTIONS(6751), - [anon_sym_AMP_EQ] = ACTIONS(6751), - [anon_sym_CARET_EQ] = ACTIONS(6751), - [anon_sym_PIPE_EQ] = ACTIONS(6751), - [anon_sym_and_eq] = ACTIONS(6746), - [anon_sym_or_eq] = ACTIONS(6746), - [anon_sym_xor_eq] = ACTIONS(6746), - [anon_sym_LT_EQ_GT] = ACTIONS(6751), - [anon_sym_or] = ACTIONS(6746), - [anon_sym_and] = ACTIONS(6746), - [anon_sym_bitor] = ACTIONS(6746), - [anon_sym_xor] = ACTIONS(6746), - [anon_sym_bitand] = ACTIONS(6746), - [anon_sym_not_eq] = ACTIONS(6746), - [anon_sym_DASH_DASH] = ACTIONS(6751), - [anon_sym_PLUS_PLUS] = ACTIONS(6751), - [anon_sym_DOT] = ACTIONS(6746), - [anon_sym_DOT_STAR] = ACTIONS(6751), - [anon_sym_DASH_GT] = ACTIONS(6751), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6746), - [anon_sym_override] = ACTIONS(6746), - [anon_sym_requires] = ACTIONS(6746), - [anon_sym_COLON_RBRACK] = ACTIONS(6751), - }, - [STATE(1998)] = { - [sym_identifier] = ACTIONS(6949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), - [anon_sym_COMMA] = ACTIONS(6951), - [anon_sym_RPAREN] = ACTIONS(6951), - [aux_sym_preproc_if_token2] = ACTIONS(6951), - [aux_sym_preproc_else_token1] = ACTIONS(6951), - [aux_sym_preproc_elif_token1] = ACTIONS(6949), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6951), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6951), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_DASH] = ACTIONS(6949), - [anon_sym_PLUS] = ACTIONS(6949), - [anon_sym_STAR] = ACTIONS(6949), - [anon_sym_SLASH] = ACTIONS(6949), - [anon_sym_PERCENT] = ACTIONS(6949), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_PIPE] = ACTIONS(6949), - [anon_sym_CARET] = ACTIONS(6949), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_GT] = ACTIONS(6949), - [anon_sym_GT_EQ] = ACTIONS(6951), - [anon_sym_LT_EQ] = ACTIONS(6949), - [anon_sym_LT] = ACTIONS(6949), - [anon_sym_LT_LT] = ACTIONS(6949), - [anon_sym_GT_GT] = ACTIONS(6949), - [anon_sym_SEMI] = ACTIONS(6951), - [anon_sym___extension__] = ACTIONS(6949), - [anon_sym___attribute__] = ACTIONS(6949), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_COLON] = ACTIONS(6949), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6951), - [anon_sym_LBRACE] = ACTIONS(6951), - [anon_sym_RBRACE] = ACTIONS(6951), - [anon_sym_LBRACK] = ACTIONS(6951), - [anon_sym_EQ] = ACTIONS(6949), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6949), - [anon_sym_volatile] = ACTIONS(6949), - [anon_sym_restrict] = ACTIONS(6949), - [anon_sym___restrict__] = ACTIONS(6949), - [anon_sym__Atomic] = ACTIONS(6949), - [anon_sym__Noreturn] = ACTIONS(6949), - [anon_sym_noreturn] = ACTIONS(6949), - [anon_sym__Nonnull] = ACTIONS(6949), - [anon_sym_mutable] = ACTIONS(6949), - [anon_sym_constinit] = ACTIONS(6949), - [anon_sym_consteval] = ACTIONS(6949), - [anon_sym_alignas] = ACTIONS(6949), - [anon_sym__Alignas] = ACTIONS(6949), - [anon_sym_QMARK] = ACTIONS(6951), - [anon_sym_STAR_EQ] = ACTIONS(6951), - [anon_sym_SLASH_EQ] = ACTIONS(6951), - [anon_sym_PERCENT_EQ] = ACTIONS(6951), - [anon_sym_PLUS_EQ] = ACTIONS(6951), - [anon_sym_DASH_EQ] = ACTIONS(6951), - [anon_sym_LT_LT_EQ] = ACTIONS(6951), - [anon_sym_GT_GT_EQ] = ACTIONS(6951), - [anon_sym_AMP_EQ] = ACTIONS(6951), - [anon_sym_CARET_EQ] = ACTIONS(6951), - [anon_sym_PIPE_EQ] = ACTIONS(6951), - [anon_sym_and_eq] = ACTIONS(6949), - [anon_sym_or_eq] = ACTIONS(6949), - [anon_sym_xor_eq] = ACTIONS(6949), - [anon_sym_LT_EQ_GT] = ACTIONS(6951), - [anon_sym_or] = ACTIONS(6949), - [anon_sym_and] = ACTIONS(6949), - [anon_sym_bitor] = ACTIONS(6949), - [anon_sym_xor] = ACTIONS(6949), - [anon_sym_bitand] = ACTIONS(6949), - [anon_sym_not_eq] = ACTIONS(6949), - [anon_sym_DASH_DASH] = ACTIONS(6951), - [anon_sym_PLUS_PLUS] = ACTIONS(6951), - [anon_sym_DOT] = ACTIONS(6949), - [anon_sym_DOT_STAR] = ACTIONS(6951), - [anon_sym_DASH_GT] = ACTIONS(6951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6949), - [anon_sym_decltype] = ACTIONS(6949), - [anon_sym_final] = ACTIONS(6949), - [anon_sym_override] = ACTIONS(6949), - [anon_sym_requires] = ACTIONS(6949), - [anon_sym_COLON_RBRACK] = ACTIONS(6951), - }, - [STATE(1999)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2578), - [sym_ms_pointer_modifier] = STATE(1996), - [sym__abstract_declarator] = STATE(5337), - [sym_abstract_parenthesized_declarator] = STATE(4966), - [sym_abstract_pointer_declarator] = STATE(4966), - [sym_abstract_function_declarator] = STATE(4966), - [sym_abstract_array_declarator] = STATE(4966), - [sym_type_qualifier] = STATE(2349), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1873), - [sym_abstract_reference_declarator] = STATE(4966), - [sym__function_declarator_seq] = STATE(4975), - [aux_sym__type_definition_type_repeat1] = STATE(2349), - [aux_sym_pointer_declarator_repeat1] = STATE(1996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(6766), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_PLUS] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(6977), - [anon_sym_SLASH] = ACTIONS(6457), - [anon_sym_PERCENT] = ACTIONS(6457), - [anon_sym_PIPE_PIPE] = ACTIONS(6459), - [anon_sym_AMP_AMP] = ACTIONS(6979), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_CARET] = ACTIONS(6457), - [anon_sym_AMP] = ACTIONS(6981), - [anon_sym_EQ_EQ] = ACTIONS(6459), - [anon_sym_BANG_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_LT_EQ] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_LT_LT] = ACTIONS(6457), - [anon_sym_GT_GT] = ACTIONS(6457), - [anon_sym___extension__] = ACTIONS(6774), - [sym_ms_restrict_modifier] = ACTIONS(6776), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6778), - [sym_ms_signed_ptr_modifier] = ACTIONS(6778), - [anon_sym__unaligned] = ACTIONS(6780), - [anon_sym___unaligned] = ACTIONS(6780), - [anon_sym_LBRACK] = ACTIONS(6782), - [anon_sym_RBRACK] = ACTIONS(6459), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6774), - [anon_sym_volatile] = ACTIONS(6774), - [anon_sym_restrict] = ACTIONS(6774), - [anon_sym___restrict__] = ACTIONS(6774), - [anon_sym__Atomic] = ACTIONS(6774), - [anon_sym__Noreturn] = ACTIONS(6774), - [anon_sym_noreturn] = ACTIONS(6774), - [anon_sym__Nonnull] = ACTIONS(6774), - [anon_sym_mutable] = ACTIONS(6774), - [anon_sym_constinit] = ACTIONS(6774), - [anon_sym_consteval] = ACTIONS(6774), - [anon_sym_alignas] = ACTIONS(6784), - [anon_sym__Alignas] = ACTIONS(6784), - [anon_sym_QMARK] = ACTIONS(6459), - [anon_sym_STAR_EQ] = ACTIONS(6459), - [anon_sym_SLASH_EQ] = ACTIONS(6459), - [anon_sym_PERCENT_EQ] = ACTIONS(6459), - [anon_sym_PLUS_EQ] = ACTIONS(6459), - [anon_sym_DASH_EQ] = ACTIONS(6459), - [anon_sym_LT_LT_EQ] = ACTIONS(6459), - [anon_sym_GT_GT_EQ] = ACTIONS(6459), - [anon_sym_AMP_EQ] = ACTIONS(6459), - [anon_sym_CARET_EQ] = ACTIONS(6459), - [anon_sym_PIPE_EQ] = ACTIONS(6459), - [anon_sym_and_eq] = ACTIONS(6459), - [anon_sym_or_eq] = ACTIONS(6459), - [anon_sym_xor_eq] = ACTIONS(6459), - [anon_sym_LT_EQ_GT] = ACTIONS(6459), - [anon_sym_or] = ACTIONS(6457), - [anon_sym_and] = ACTIONS(6457), - [anon_sym_bitor] = ACTIONS(6459), - [anon_sym_xor] = ACTIONS(6457), - [anon_sym_bitand] = ACTIONS(6459), - [anon_sym_not_eq] = ACTIONS(6459), - [anon_sym_DASH_DASH] = ACTIONS(6459), - [anon_sym_PLUS_PLUS] = ACTIONS(6459), - [anon_sym_DOT] = ACTIONS(6457), - [anon_sym_DOT_STAR] = ACTIONS(6459), - [anon_sym_DASH_GT] = ACTIONS(6459), - [sym_comment] = ACTIONS(3), - }, - [STATE(2000)] = { - [sym_function_definition] = STATE(909), - [sym_declaration] = STATE(909), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6309), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_call_modifier] = STATE(2615), - [sym_declaration_list] = STATE(909), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(5572), + [anon_sym_STAR] = ACTIONS(6463), + [anon_sym_AMP_AMP] = ACTIONS(6465), + [anon_sym_AMP] = ACTIONS(6467), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_virtual] = ACTIONS(2310), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(6983), + [anon_sym___cdecl] = ACTIONS(6471), + [anon_sym___clrcall] = ACTIONS(6471), + [anon_sym___stdcall] = ACTIONS(6471), + [anon_sym___fastcall] = ACTIONS(6471), + [anon_sym___thiscall] = ACTIONS(6471), + [anon_sym___vectorcall] = ACTIONS(6471), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6473), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -302062,854 +308700,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5629), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(2001)] = { - [sym_attribute_specifier] = STATE(2095), - [sym_enumerator_list] = STATE(2046), - [sym_identifier] = ACTIONS(6985), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6987), - [anon_sym_COMMA] = ACTIONS(6987), - [anon_sym_RPAREN] = ACTIONS(6987), - [aux_sym_preproc_if_token2] = ACTIONS(6987), - [aux_sym_preproc_else_token1] = ACTIONS(6987), - [aux_sym_preproc_elif_token1] = ACTIONS(6985), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6987), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6987), - [anon_sym_LPAREN2] = ACTIONS(6987), - [anon_sym_DASH] = ACTIONS(6985), - [anon_sym_PLUS] = ACTIONS(6985), - [anon_sym_STAR] = ACTIONS(6985), - [anon_sym_SLASH] = ACTIONS(6985), - [anon_sym_PERCENT] = ACTIONS(6985), - [anon_sym_PIPE_PIPE] = ACTIONS(6987), - [anon_sym_AMP_AMP] = ACTIONS(6987), - [anon_sym_PIPE] = ACTIONS(6985), - [anon_sym_CARET] = ACTIONS(6985), - [anon_sym_AMP] = ACTIONS(6985), - [anon_sym_EQ_EQ] = ACTIONS(6987), - [anon_sym_BANG_EQ] = ACTIONS(6987), - [anon_sym_GT] = ACTIONS(6985), - [anon_sym_GT_EQ] = ACTIONS(6987), - [anon_sym_LT_EQ] = ACTIONS(6985), - [anon_sym_LT] = ACTIONS(6985), - [anon_sym_LT_LT] = ACTIONS(6985), - [anon_sym_GT_GT] = ACTIONS(6985), - [anon_sym_SEMI] = ACTIONS(6987), - [anon_sym___extension__] = ACTIONS(6985), - [anon_sym___attribute__] = ACTIONS(6830), - [anon_sym___attribute] = ACTIONS(6830), - [anon_sym_COLON] = ACTIONS(6985), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6987), - [anon_sym_LBRACE] = ACTIONS(6989), - [anon_sym_RBRACE] = ACTIONS(6987), - [anon_sym_LBRACK] = ACTIONS(6987), - [anon_sym_EQ] = ACTIONS(6985), - [anon_sym_const] = ACTIONS(6985), - [anon_sym_constexpr] = ACTIONS(6985), - [anon_sym_volatile] = ACTIONS(6985), - [anon_sym_restrict] = ACTIONS(6985), - [anon_sym___restrict__] = ACTIONS(6985), - [anon_sym__Atomic] = ACTIONS(6985), - [anon_sym__Noreturn] = ACTIONS(6985), - [anon_sym_noreturn] = ACTIONS(6985), - [anon_sym__Nonnull] = ACTIONS(6985), - [anon_sym_mutable] = ACTIONS(6985), - [anon_sym_constinit] = ACTIONS(6985), - [anon_sym_consteval] = ACTIONS(6985), - [anon_sym_alignas] = ACTIONS(6985), - [anon_sym__Alignas] = ACTIONS(6985), - [anon_sym_QMARK] = ACTIONS(6987), - [anon_sym_STAR_EQ] = ACTIONS(6987), - [anon_sym_SLASH_EQ] = ACTIONS(6987), - [anon_sym_PERCENT_EQ] = ACTIONS(6987), - [anon_sym_PLUS_EQ] = ACTIONS(6987), - [anon_sym_DASH_EQ] = ACTIONS(6987), - [anon_sym_LT_LT_EQ] = ACTIONS(6987), - [anon_sym_GT_GT_EQ] = ACTIONS(6987), - [anon_sym_AMP_EQ] = ACTIONS(6987), - [anon_sym_CARET_EQ] = ACTIONS(6987), - [anon_sym_PIPE_EQ] = ACTIONS(6987), - [anon_sym_and_eq] = ACTIONS(6985), - [anon_sym_or_eq] = ACTIONS(6985), - [anon_sym_xor_eq] = ACTIONS(6985), - [anon_sym_LT_EQ_GT] = ACTIONS(6987), - [anon_sym_or] = ACTIONS(6985), - [anon_sym_and] = ACTIONS(6985), - [anon_sym_bitor] = ACTIONS(6985), - [anon_sym_xor] = ACTIONS(6985), - [anon_sym_bitand] = ACTIONS(6985), - [anon_sym_not_eq] = ACTIONS(6985), - [anon_sym_DASH_DASH] = ACTIONS(6987), - [anon_sym_PLUS_PLUS] = ACTIONS(6987), - [anon_sym_DOT] = ACTIONS(6985), - [anon_sym_DOT_STAR] = ACTIONS(6987), - [anon_sym_DASH_GT] = ACTIONS(6987), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6985), - [anon_sym_override] = ACTIONS(6985), - [anon_sym_requires] = ACTIONS(6985), - [anon_sym_COLON_RBRACK] = ACTIONS(6987), - }, - [STATE(2002)] = { - [sym__abstract_declarator] = STATE(4083), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2003), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1843), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2003), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), - [anon_sym_COMMA] = ACTIONS(6991), - [anon_sym_RPAREN] = ACTIONS(6991), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6993), - [anon_sym_PLUS] = ACTIONS(6993), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6993), - [anon_sym_PERCENT] = ACTIONS(6993), - [anon_sym_PIPE_PIPE] = ACTIONS(6991), - [anon_sym_AMP_AMP] = ACTIONS(6481), - [anon_sym_PIPE] = ACTIONS(6993), - [anon_sym_CARET] = ACTIONS(6993), - [anon_sym_AMP] = ACTIONS(6483), - [anon_sym_EQ_EQ] = ACTIONS(6991), - [anon_sym_BANG_EQ] = ACTIONS(6991), - [anon_sym_GT] = ACTIONS(6993), - [anon_sym_GT_EQ] = ACTIONS(6991), - [anon_sym_LT_EQ] = ACTIONS(6993), - [anon_sym_LT] = ACTIONS(6993), - [anon_sym_LT_LT] = ACTIONS(6993), - [anon_sym_GT_GT] = ACTIONS(6993), - [anon_sym_SEMI] = ACTIONS(6991), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(6993), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6991), - [anon_sym_RBRACE] = ACTIONS(6991), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6993), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6991), - [anon_sym_STAR_EQ] = ACTIONS(6991), - [anon_sym_SLASH_EQ] = ACTIONS(6991), - [anon_sym_PERCENT_EQ] = ACTIONS(6991), - [anon_sym_PLUS_EQ] = ACTIONS(6991), - [anon_sym_DASH_EQ] = ACTIONS(6991), - [anon_sym_LT_LT_EQ] = ACTIONS(6991), - [anon_sym_GT_GT_EQ] = ACTIONS(6991), - [anon_sym_AMP_EQ] = ACTIONS(6991), - [anon_sym_CARET_EQ] = ACTIONS(6991), - [anon_sym_PIPE_EQ] = ACTIONS(6991), - [anon_sym_and_eq] = ACTIONS(6991), - [anon_sym_or_eq] = ACTIONS(6991), - [anon_sym_xor_eq] = ACTIONS(6991), - [anon_sym_LT_EQ_GT] = ACTIONS(6991), - [anon_sym_or] = ACTIONS(6993), - [anon_sym_and] = ACTIONS(6993), - [anon_sym_bitor] = ACTIONS(6991), - [anon_sym_xor] = ACTIONS(6993), - [anon_sym_bitand] = ACTIONS(6991), - [anon_sym_not_eq] = ACTIONS(6991), - [anon_sym_DASH_DASH] = ACTIONS(6991), - [anon_sym_PLUS_PLUS] = ACTIONS(6991), - [anon_sym_DOT] = ACTIONS(6993), - [anon_sym_DOT_STAR] = ACTIONS(6991), - [anon_sym_DASH_GT] = ACTIONS(6991), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6991), - [anon_sym_override] = ACTIONS(6991), - [anon_sym_requires] = ACTIONS(6991), - [anon_sym_COLON_RBRACK] = ACTIONS(6991), - }, - [STATE(2003)] = { - [sym__abstract_declarator] = STATE(4084), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(1913), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1843), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(1913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), - [anon_sym_COMMA] = ACTIONS(6995), - [anon_sym_RPAREN] = ACTIONS(6995), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6997), - [anon_sym_PLUS] = ACTIONS(6997), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6997), - [anon_sym_PERCENT] = ACTIONS(6997), - [anon_sym_PIPE_PIPE] = ACTIONS(6995), - [anon_sym_AMP_AMP] = ACTIONS(6481), - [anon_sym_PIPE] = ACTIONS(6997), - [anon_sym_CARET] = ACTIONS(6997), - [anon_sym_AMP] = ACTIONS(6483), - [anon_sym_EQ_EQ] = ACTIONS(6995), - [anon_sym_BANG_EQ] = ACTIONS(6995), - [anon_sym_GT] = ACTIONS(6997), - [anon_sym_GT_EQ] = ACTIONS(6995), - [anon_sym_LT_EQ] = ACTIONS(6997), - [anon_sym_LT] = ACTIONS(6997), - [anon_sym_LT_LT] = ACTIONS(6997), - [anon_sym_GT_GT] = ACTIONS(6997), - [anon_sym_SEMI] = ACTIONS(6995), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(6997), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6995), - [anon_sym_RBRACE] = ACTIONS(6995), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6997), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6995), - [anon_sym_STAR_EQ] = ACTIONS(6995), - [anon_sym_SLASH_EQ] = ACTIONS(6995), - [anon_sym_PERCENT_EQ] = ACTIONS(6995), - [anon_sym_PLUS_EQ] = ACTIONS(6995), - [anon_sym_DASH_EQ] = ACTIONS(6995), - [anon_sym_LT_LT_EQ] = ACTIONS(6995), - [anon_sym_GT_GT_EQ] = ACTIONS(6995), - [anon_sym_AMP_EQ] = ACTIONS(6995), - [anon_sym_CARET_EQ] = ACTIONS(6995), - [anon_sym_PIPE_EQ] = ACTIONS(6995), - [anon_sym_and_eq] = ACTIONS(6995), - [anon_sym_or_eq] = ACTIONS(6995), - [anon_sym_xor_eq] = ACTIONS(6995), - [anon_sym_LT_EQ_GT] = ACTIONS(6995), - [anon_sym_or] = ACTIONS(6997), - [anon_sym_and] = ACTIONS(6997), - [anon_sym_bitor] = ACTIONS(6995), - [anon_sym_xor] = ACTIONS(6997), - [anon_sym_bitand] = ACTIONS(6995), - [anon_sym_not_eq] = ACTIONS(6995), - [anon_sym_DASH_DASH] = ACTIONS(6995), - [anon_sym_PLUS_PLUS] = ACTIONS(6995), - [anon_sym_DOT] = ACTIONS(6997), - [anon_sym_DOT_STAR] = ACTIONS(6995), - [anon_sym_DASH_GT] = ACTIONS(6995), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6995), - [anon_sym_override] = ACTIONS(6995), - [anon_sym_requires] = ACTIONS(6995), - [anon_sym_COLON_RBRACK] = ACTIONS(6995), - }, - [STATE(2004)] = { - [sym__abstract_declarator] = STATE(4085), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2006), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1843), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2006), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), - [anon_sym_COMMA] = ACTIONS(6999), - [anon_sym_RPAREN] = ACTIONS(6999), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(7001), - [anon_sym_PLUS] = ACTIONS(7001), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(7001), - [anon_sym_PERCENT] = ACTIONS(7001), - [anon_sym_PIPE_PIPE] = ACTIONS(6999), - [anon_sym_AMP_AMP] = ACTIONS(6481), - [anon_sym_PIPE] = ACTIONS(7001), - [anon_sym_CARET] = ACTIONS(7001), - [anon_sym_AMP] = ACTIONS(6483), - [anon_sym_EQ_EQ] = ACTIONS(6999), - [anon_sym_BANG_EQ] = ACTIONS(6999), - [anon_sym_GT] = ACTIONS(7001), - [anon_sym_GT_EQ] = ACTIONS(6999), - [anon_sym_LT_EQ] = ACTIONS(7001), - [anon_sym_LT] = ACTIONS(7001), - [anon_sym_LT_LT] = ACTIONS(7001), - [anon_sym_GT_GT] = ACTIONS(7001), - [anon_sym_SEMI] = ACTIONS(6999), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(7001), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6999), - [anon_sym_RBRACE] = ACTIONS(6999), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(7001), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6999), - [anon_sym_STAR_EQ] = ACTIONS(6999), - [anon_sym_SLASH_EQ] = ACTIONS(6999), - [anon_sym_PERCENT_EQ] = ACTIONS(6999), - [anon_sym_PLUS_EQ] = ACTIONS(6999), - [anon_sym_DASH_EQ] = ACTIONS(6999), - [anon_sym_LT_LT_EQ] = ACTIONS(6999), - [anon_sym_GT_GT_EQ] = ACTIONS(6999), - [anon_sym_AMP_EQ] = ACTIONS(6999), - [anon_sym_CARET_EQ] = ACTIONS(6999), - [anon_sym_PIPE_EQ] = ACTIONS(6999), - [anon_sym_and_eq] = ACTIONS(6999), - [anon_sym_or_eq] = ACTIONS(6999), - [anon_sym_xor_eq] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(6999), - [anon_sym_or] = ACTIONS(7001), - [anon_sym_and] = ACTIONS(7001), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(7001), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(6999), - [anon_sym_PLUS_PLUS] = ACTIONS(6999), - [anon_sym_DOT] = ACTIONS(7001), - [anon_sym_DOT_STAR] = ACTIONS(6999), - [anon_sym_DASH_GT] = ACTIONS(6999), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6999), - [anon_sym_override] = ACTIONS(6999), - [anon_sym_requires] = ACTIONS(6999), - [anon_sym_COLON_RBRACK] = ACTIONS(6999), - }, - [STATE(2005)] = { - [sym__abstract_declarator] = STATE(4090), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(1913), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1843), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(1913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_RPAREN] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(6481), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(6483), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym_SEMI] = ACTIONS(6497), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(6495), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6497), - [anon_sym_RBRACE] = ACTIONS(6497), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6497), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_and_eq] = ACTIONS(6497), - [anon_sym_or_eq] = ACTIONS(6497), - [anon_sym_xor_eq] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6497), - [anon_sym_override] = ACTIONS(6497), - [anon_sym_requires] = ACTIONS(6497), - [anon_sym_COLON_RBRACK] = ACTIONS(6497), - }, - [STATE(2006)] = { - [sym__abstract_declarator] = STATE(4086), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(1913), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1843), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(1913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), - [anon_sym_COMMA] = ACTIONS(7003), - [anon_sym_RPAREN] = ACTIONS(7003), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(7005), - [anon_sym_PERCENT] = ACTIONS(7005), - [anon_sym_PIPE_PIPE] = ACTIONS(7003), - [anon_sym_AMP_AMP] = ACTIONS(6481), - [anon_sym_PIPE] = ACTIONS(7005), - [anon_sym_CARET] = ACTIONS(7005), - [anon_sym_AMP] = ACTIONS(6483), - [anon_sym_EQ_EQ] = ACTIONS(7003), - [anon_sym_BANG_EQ] = ACTIONS(7003), - [anon_sym_GT] = ACTIONS(7005), - [anon_sym_GT_EQ] = ACTIONS(7003), - [anon_sym_LT_EQ] = ACTIONS(7005), - [anon_sym_LT] = ACTIONS(7005), - [anon_sym_LT_LT] = ACTIONS(7005), - [anon_sym_GT_GT] = ACTIONS(7005), - [anon_sym_SEMI] = ACTIONS(7003), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(7005), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7003), - [anon_sym_RBRACE] = ACTIONS(7003), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(7005), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(7003), - [anon_sym_STAR_EQ] = ACTIONS(7003), - [anon_sym_SLASH_EQ] = ACTIONS(7003), - [anon_sym_PERCENT_EQ] = ACTIONS(7003), - [anon_sym_PLUS_EQ] = ACTIONS(7003), - [anon_sym_DASH_EQ] = ACTIONS(7003), - [anon_sym_LT_LT_EQ] = ACTIONS(7003), - [anon_sym_GT_GT_EQ] = ACTIONS(7003), - [anon_sym_AMP_EQ] = ACTIONS(7003), - [anon_sym_CARET_EQ] = ACTIONS(7003), - [anon_sym_PIPE_EQ] = ACTIONS(7003), - [anon_sym_and_eq] = ACTIONS(7003), - [anon_sym_or_eq] = ACTIONS(7003), - [anon_sym_xor_eq] = ACTIONS(7003), - [anon_sym_LT_EQ_GT] = ACTIONS(7003), - [anon_sym_or] = ACTIONS(7005), - [anon_sym_and] = ACTIONS(7005), - [anon_sym_bitor] = ACTIONS(7003), - [anon_sym_xor] = ACTIONS(7005), - [anon_sym_bitand] = ACTIONS(7003), - [anon_sym_not_eq] = ACTIONS(7003), - [anon_sym_DASH_DASH] = ACTIONS(7003), - [anon_sym_PLUS_PLUS] = ACTIONS(7003), - [anon_sym_DOT] = ACTIONS(7005), - [anon_sym_DOT_STAR] = ACTIONS(7003), - [anon_sym_DASH_GT] = ACTIONS(7003), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7003), - [anon_sym_override] = ACTIONS(7003), - [anon_sym_requires] = ACTIONS(7003), - [anon_sym_COLON_RBRACK] = ACTIONS(7003), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_this] = ACTIONS(5631), }, - [STATE(2007)] = { - [sym__abstract_declarator] = STATE(4092), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(1913), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1843), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(1913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), - [anon_sym_COMMA] = ACTIONS(7007), - [anon_sym_RPAREN] = ACTIONS(7007), + [STATE(1950)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_ms_call_modifier] = STATE(8775), + [sym__abstract_declarator] = STATE(9371), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_abstract_function_declarator] = STATE(8596), + [sym_abstract_array_declarator] = STATE(8596), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_list] = STATE(4706), + [sym_parameter_declaration] = STATE(10083), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_explicit_object_parameter_declaration] = STATE(10083), + [sym_optional_parameter_declaration] = STATE(10083), + [sym_variadic_parameter_declaration] = STATE(10083), + [sym_abstract_reference_declarator] = STATE(8596), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6524), + [anon_sym_RPAREN] = ACTIONS(6526), [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(7009), - [anon_sym_PLUS] = ACTIONS(7009), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(7009), - [anon_sym_PERCENT] = ACTIONS(7009), - [anon_sym_PIPE_PIPE] = ACTIONS(7007), - [anon_sym_AMP_AMP] = ACTIONS(6481), - [anon_sym_PIPE] = ACTIONS(7009), - [anon_sym_CARET] = ACTIONS(7009), - [anon_sym_AMP] = ACTIONS(6483), - [anon_sym_EQ_EQ] = ACTIONS(7007), - [anon_sym_BANG_EQ] = ACTIONS(7007), - [anon_sym_GT] = ACTIONS(7009), - [anon_sym_GT_EQ] = ACTIONS(7007), - [anon_sym_LT_EQ] = ACTIONS(7009), - [anon_sym_LT] = ACTIONS(7009), - [anon_sym_LT_LT] = ACTIONS(7009), - [anon_sym_GT_GT] = ACTIONS(7009), - [anon_sym_SEMI] = ACTIONS(7007), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(7009), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7007), - [anon_sym_RBRACE] = ACTIONS(7007), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(7009), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(7007), - [anon_sym_STAR_EQ] = ACTIONS(7007), - [anon_sym_SLASH_EQ] = ACTIONS(7007), - [anon_sym_PERCENT_EQ] = ACTIONS(7007), - [anon_sym_PLUS_EQ] = ACTIONS(7007), - [anon_sym_DASH_EQ] = ACTIONS(7007), - [anon_sym_LT_LT_EQ] = ACTIONS(7007), - [anon_sym_GT_GT_EQ] = ACTIONS(7007), - [anon_sym_AMP_EQ] = ACTIONS(7007), - [anon_sym_CARET_EQ] = ACTIONS(7007), - [anon_sym_PIPE_EQ] = ACTIONS(7007), - [anon_sym_and_eq] = ACTIONS(7007), - [anon_sym_or_eq] = ACTIONS(7007), - [anon_sym_xor_eq] = ACTIONS(7007), - [anon_sym_LT_EQ_GT] = ACTIONS(7007), - [anon_sym_or] = ACTIONS(7009), - [anon_sym_and] = ACTIONS(7009), - [anon_sym_bitor] = ACTIONS(7007), - [anon_sym_xor] = ACTIONS(7009), - [anon_sym_bitand] = ACTIONS(7007), - [anon_sym_not_eq] = ACTIONS(7007), - [anon_sym_DASH_DASH] = ACTIONS(7007), - [anon_sym_PLUS_PLUS] = ACTIONS(7007), - [anon_sym_DOT] = ACTIONS(7009), - [anon_sym_DOT_STAR] = ACTIONS(7007), - [anon_sym_DASH_GT] = ACTIONS(7007), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7007), - [anon_sym_override] = ACTIONS(7007), - [anon_sym_requires] = ACTIONS(7007), - [anon_sym_COLON_RBRACK] = ACTIONS(7007), - }, - [STATE(2008)] = { - [sym_decltype_auto] = STATE(2086), - [sym_template_argument_list] = STATE(1995), - [aux_sym_sized_type_specifier_repeat1] = STATE(2124), - [sym_identifier] = ACTIONS(5251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5258), - [anon_sym_COMMA] = ACTIONS(5258), - [aux_sym_preproc_if_token2] = ACTIONS(5258), - [aux_sym_preproc_else_token1] = ACTIONS(5258), - [aux_sym_preproc_elif_token1] = ACTIONS(5251), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5258), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5258), - [anon_sym_LPAREN2] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5251), - [anon_sym_PLUS] = ACTIONS(5251), - [anon_sym_STAR] = ACTIONS(5251), - [anon_sym_SLASH] = ACTIONS(5251), - [anon_sym_PERCENT] = ACTIONS(5251), - [anon_sym_PIPE_PIPE] = ACTIONS(5258), - [anon_sym_AMP_AMP] = ACTIONS(5258), - [anon_sym_PIPE] = ACTIONS(5251), - [anon_sym_CARET] = ACTIONS(5251), - [anon_sym_AMP] = ACTIONS(5251), - [anon_sym_EQ_EQ] = ACTIONS(5258), - [anon_sym_BANG_EQ] = ACTIONS(5258), - [anon_sym_GT] = ACTIONS(5251), - [anon_sym_GT_EQ] = ACTIONS(5258), - [anon_sym_LT_EQ] = ACTIONS(5251), - [anon_sym_LT] = ACTIONS(6898), - [anon_sym_LT_LT] = ACTIONS(5251), - [anon_sym_GT_GT] = ACTIONS(5251), - [anon_sym___extension__] = ACTIONS(5251), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5258), - [anon_sym_signed] = ACTIONS(6433), - [anon_sym_unsigned] = ACTIONS(6433), - [anon_sym_long] = ACTIONS(6433), - [anon_sym_short] = ACTIONS(6433), - [anon_sym_LBRACK] = ACTIONS(5258), - [anon_sym_EQ] = ACTIONS(5251), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5251), - [anon_sym_volatile] = ACTIONS(5251), - [anon_sym_restrict] = ACTIONS(5251), - [anon_sym___restrict__] = ACTIONS(5251), - [anon_sym__Atomic] = ACTIONS(5251), - [anon_sym__Noreturn] = ACTIONS(5251), - [anon_sym_noreturn] = ACTIONS(5251), - [anon_sym__Nonnull] = ACTIONS(5251), - [anon_sym_mutable] = ACTIONS(5251), - [anon_sym_constinit] = ACTIONS(5251), - [anon_sym_consteval] = ACTIONS(5251), - [anon_sym_alignas] = ACTIONS(5251), - [anon_sym__Alignas] = ACTIONS(5251), - [anon_sym_QMARK] = ACTIONS(5258), - [anon_sym_STAR_EQ] = ACTIONS(5258), - [anon_sym_SLASH_EQ] = ACTIONS(5258), - [anon_sym_PERCENT_EQ] = ACTIONS(5258), - [anon_sym_PLUS_EQ] = ACTIONS(5258), - [anon_sym_DASH_EQ] = ACTIONS(5258), - [anon_sym_LT_LT_EQ] = ACTIONS(5258), - [anon_sym_GT_GT_EQ] = ACTIONS(5258), - [anon_sym_AMP_EQ] = ACTIONS(5258), - [anon_sym_CARET_EQ] = ACTIONS(5258), - [anon_sym_PIPE_EQ] = ACTIONS(5258), - [anon_sym_and_eq] = ACTIONS(5251), - [anon_sym_or_eq] = ACTIONS(5251), - [anon_sym_xor_eq] = ACTIONS(5251), - [anon_sym_LT_EQ_GT] = ACTIONS(5258), - [anon_sym_or] = ACTIONS(5251), - [anon_sym_and] = ACTIONS(5251), - [anon_sym_bitor] = ACTIONS(5251), - [anon_sym_xor] = ACTIONS(5251), - [anon_sym_bitand] = ACTIONS(5251), - [anon_sym_not_eq] = ACTIONS(5251), - [anon_sym_DASH_DASH] = ACTIONS(5258), - [anon_sym_PLUS_PLUS] = ACTIONS(5258), - [anon_sym_DOT] = ACTIONS(5251), - [anon_sym_DOT_STAR] = ACTIONS(5258), - [anon_sym_DASH_GT] = ACTIONS(5258), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6435), - [anon_sym_decltype] = ACTIONS(6437), - [anon_sym_final] = ACTIONS(5251), - [anon_sym_override] = ACTIONS(5251), - [anon_sym_requires] = ACTIONS(5251), - }, - [STATE(2009)] = { - [sym_attribute_specifier] = STATE(2111), - [sym_enumerator_list] = STATE(2053), - [sym_identifier] = ACTIONS(7011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7013), - [anon_sym_COMMA] = ACTIONS(7013), - [anon_sym_RPAREN] = ACTIONS(7013), - [aux_sym_preproc_if_token2] = ACTIONS(7013), - [aux_sym_preproc_else_token1] = ACTIONS(7013), - [aux_sym_preproc_elif_token1] = ACTIONS(7011), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7013), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7013), - [anon_sym_LPAREN2] = ACTIONS(7013), - [anon_sym_DASH] = ACTIONS(7011), - [anon_sym_PLUS] = ACTIONS(7011), - [anon_sym_STAR] = ACTIONS(7011), - [anon_sym_SLASH] = ACTIONS(7011), - [anon_sym_PERCENT] = ACTIONS(7011), - [anon_sym_PIPE_PIPE] = ACTIONS(7013), - [anon_sym_AMP_AMP] = ACTIONS(7013), - [anon_sym_PIPE] = ACTIONS(7011), - [anon_sym_CARET] = ACTIONS(7011), - [anon_sym_AMP] = ACTIONS(7011), - [anon_sym_EQ_EQ] = ACTIONS(7013), - [anon_sym_BANG_EQ] = ACTIONS(7013), - [anon_sym_GT] = ACTIONS(7011), - [anon_sym_GT_EQ] = ACTIONS(7013), - [anon_sym_LT_EQ] = ACTIONS(7011), - [anon_sym_LT] = ACTIONS(7011), - [anon_sym_LT_LT] = ACTIONS(7011), - [anon_sym_GT_GT] = ACTIONS(7011), - [anon_sym_SEMI] = ACTIONS(7013), - [anon_sym___extension__] = ACTIONS(7011), - [anon_sym___attribute__] = ACTIONS(6830), - [anon_sym___attribute] = ACTIONS(6830), - [anon_sym_COLON] = ACTIONS(7011), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7013), - [anon_sym_LBRACE] = ACTIONS(6989), - [anon_sym_RBRACE] = ACTIONS(7013), - [anon_sym_LBRACK] = ACTIONS(7013), - [anon_sym_EQ] = ACTIONS(7011), - [anon_sym_const] = ACTIONS(7011), - [anon_sym_constexpr] = ACTIONS(7011), - [anon_sym_volatile] = ACTIONS(7011), - [anon_sym_restrict] = ACTIONS(7011), - [anon_sym___restrict__] = ACTIONS(7011), - [anon_sym__Atomic] = ACTIONS(7011), - [anon_sym__Noreturn] = ACTIONS(7011), - [anon_sym_noreturn] = ACTIONS(7011), - [anon_sym__Nonnull] = ACTIONS(7011), - [anon_sym_mutable] = ACTIONS(7011), - [anon_sym_constinit] = ACTIONS(7011), - [anon_sym_consteval] = ACTIONS(7011), - [anon_sym_alignas] = ACTIONS(7011), - [anon_sym__Alignas] = ACTIONS(7011), - [anon_sym_QMARK] = ACTIONS(7013), - [anon_sym_STAR_EQ] = ACTIONS(7013), - [anon_sym_SLASH_EQ] = ACTIONS(7013), - [anon_sym_PERCENT_EQ] = ACTIONS(7013), - [anon_sym_PLUS_EQ] = ACTIONS(7013), - [anon_sym_DASH_EQ] = ACTIONS(7013), - [anon_sym_LT_LT_EQ] = ACTIONS(7013), - [anon_sym_GT_GT_EQ] = ACTIONS(7013), - [anon_sym_AMP_EQ] = ACTIONS(7013), - [anon_sym_CARET_EQ] = ACTIONS(7013), - [anon_sym_PIPE_EQ] = ACTIONS(7013), - [anon_sym_and_eq] = ACTIONS(7011), - [anon_sym_or_eq] = ACTIONS(7011), - [anon_sym_xor_eq] = ACTIONS(7011), - [anon_sym_LT_EQ_GT] = ACTIONS(7013), - [anon_sym_or] = ACTIONS(7011), - [anon_sym_and] = ACTIONS(7011), - [anon_sym_bitor] = ACTIONS(7011), - [anon_sym_xor] = ACTIONS(7011), - [anon_sym_bitand] = ACTIONS(7011), - [anon_sym_not_eq] = ACTIONS(7011), - [anon_sym_DASH_DASH] = ACTIONS(7013), - [anon_sym_PLUS_PLUS] = ACTIONS(7013), - [anon_sym_DOT] = ACTIONS(7011), - [anon_sym_DOT_STAR] = ACTIONS(7013), - [anon_sym_DASH_GT] = ACTIONS(7013), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7011), - [anon_sym_override] = ACTIONS(7011), - [anon_sym_requires] = ACTIONS(7011), - [anon_sym_COLON_RBRACK] = ACTIONS(7013), - }, - [STATE(2010)] = { - [sym_function_definition] = STATE(527), - [sym_declaration] = STATE(527), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6273), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_call_modifier] = STATE(2618), - [sym_declaration_list] = STATE(527), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(5572), + [anon_sym_STAR] = ACTIONS(6463), + [anon_sym_AMP_AMP] = ACTIONS(6465), + [anon_sym_AMP] = ACTIONS(6467), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_virtual] = ACTIONS(2310), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(7015), + [anon_sym___cdecl] = ACTIONS(6471), + [anon_sym___clrcall] = ACTIONS(6471), + [anon_sym___stdcall] = ACTIONS(6471), + [anon_sym___fastcall] = ACTIONS(6471), + [anon_sym___thiscall] = ACTIONS(6471), + [anon_sym___vectorcall] = ACTIONS(6471), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6473), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -302932,245 +308803,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5629), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_this] = ACTIONS(5631), }, - [STATE(2011)] = { - [sym_attribute_specifier] = STATE(2243), - [sym_attribute_declaration] = STATE(4363), - [sym_type_qualifier] = STATE(2216), - [sym_alignas_qualifier] = STATE(2300), - [aux_sym_type_definition_repeat1] = STATE(2243), - [aux_sym__type_definition_type_repeat1] = STATE(2216), - [aux_sym_attributed_declarator_repeat1] = STATE(4363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), - [anon_sym_COMMA] = ACTIONS(6390), - [anon_sym_RPAREN] = ACTIONS(6390), - [anon_sym_LPAREN2] = ACTIONS(6390), - [anon_sym_DASH] = ACTIONS(6388), - [anon_sym_PLUS] = ACTIONS(6388), - [anon_sym_STAR] = ACTIONS(6388), - [anon_sym_SLASH] = ACTIONS(6388), - [anon_sym_PERCENT] = ACTIONS(6388), - [anon_sym_PIPE_PIPE] = ACTIONS(6390), - [anon_sym_AMP_AMP] = ACTIONS(6390), - [anon_sym_PIPE] = ACTIONS(6388), - [anon_sym_CARET] = ACTIONS(6388), - [anon_sym_AMP] = ACTIONS(6388), - [anon_sym_EQ_EQ] = ACTIONS(6390), - [anon_sym_BANG_EQ] = ACTIONS(6390), - [anon_sym_GT] = ACTIONS(6388), - [anon_sym_GT_EQ] = ACTIONS(6390), - [anon_sym_LT_EQ] = ACTIONS(6388), - [anon_sym_LT] = ACTIONS(6388), - [anon_sym_LT_LT] = ACTIONS(6388), - [anon_sym_GT_GT] = ACTIONS(6388), - [anon_sym___extension__] = ACTIONS(6280), - [anon_sym___attribute__] = ACTIONS(6390), - [anon_sym___attribute] = ACTIONS(6388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), - [anon_sym_LBRACK] = ACTIONS(6388), - [anon_sym_EQ] = ACTIONS(6388), - [anon_sym_const] = ACTIONS(6288), - [anon_sym_constexpr] = ACTIONS(6280), - [anon_sym_volatile] = ACTIONS(6280), - [anon_sym_restrict] = ACTIONS(6280), - [anon_sym___restrict__] = ACTIONS(6280), - [anon_sym__Atomic] = ACTIONS(6280), - [anon_sym__Noreturn] = ACTIONS(6280), - [anon_sym_noreturn] = ACTIONS(6280), - [anon_sym__Nonnull] = ACTIONS(6280), - [anon_sym_mutable] = ACTIONS(6280), - [anon_sym_constinit] = ACTIONS(6280), - [anon_sym_consteval] = ACTIONS(6280), - [anon_sym_alignas] = ACTIONS(6290), - [anon_sym__Alignas] = ACTIONS(6290), - [anon_sym_QMARK] = ACTIONS(6390), - [anon_sym_STAR_EQ] = ACTIONS(6390), - [anon_sym_SLASH_EQ] = ACTIONS(6390), - [anon_sym_PERCENT_EQ] = ACTIONS(6390), - [anon_sym_PLUS_EQ] = ACTIONS(6390), - [anon_sym_DASH_EQ] = ACTIONS(6390), - [anon_sym_LT_LT_EQ] = ACTIONS(6390), - [anon_sym_GT_GT_EQ] = ACTIONS(6390), - [anon_sym_AMP_EQ] = ACTIONS(6390), - [anon_sym_CARET_EQ] = ACTIONS(6390), - [anon_sym_PIPE_EQ] = ACTIONS(6390), - [anon_sym_and_eq] = ACTIONS(6390), - [anon_sym_or_eq] = ACTIONS(6390), - [anon_sym_xor_eq] = ACTIONS(6390), - [anon_sym_LT_EQ_GT] = ACTIONS(6390), - [anon_sym_or] = ACTIONS(6388), - [anon_sym_and] = ACTIONS(6388), - [anon_sym_bitor] = ACTIONS(6390), - [anon_sym_xor] = ACTIONS(6388), - [anon_sym_bitand] = ACTIONS(6390), - [anon_sym_not_eq] = ACTIONS(6390), - [anon_sym_DASH_DASH] = ACTIONS(6390), - [anon_sym_PLUS_PLUS] = ACTIONS(6390), - [anon_sym_asm] = ACTIONS(6390), - [anon_sym___asm__] = ACTIONS(6390), - [anon_sym___asm] = ACTIONS(6388), - [anon_sym_DOT] = ACTIONS(6388), - [anon_sym_DOT_STAR] = ACTIONS(6390), - [anon_sym_DASH_GT] = ACTIONS(6388), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6390), - [anon_sym_override] = ACTIONS(6390), - [anon_sym_noexcept] = ACTIONS(6390), - [anon_sym_throw] = ACTIONS(6390), - [anon_sym_requires] = ACTIONS(6390), - [anon_sym_DASH_GT_STAR] = ACTIONS(6390), - }, - [STATE(2012)] = { - [sym_template_argument_list] = STATE(3601), - [aux_sym_sized_type_specifier_repeat1] = STATE(2124), - [sym_identifier] = ACTIONS(7017), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7019), - [anon_sym_COMMA] = ACTIONS(7019), - [aux_sym_preproc_if_token2] = ACTIONS(7019), - [aux_sym_preproc_else_token1] = ACTIONS(7019), - [aux_sym_preproc_elif_token1] = ACTIONS(7017), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7019), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7019), - [anon_sym_LPAREN2] = ACTIONS(7019), - [anon_sym_DASH] = ACTIONS(7017), - [anon_sym_PLUS] = ACTIONS(7017), - [anon_sym_STAR] = ACTIONS(7017), - [anon_sym_SLASH] = ACTIONS(7017), - [anon_sym_PERCENT] = ACTIONS(7017), - [anon_sym_PIPE_PIPE] = ACTIONS(7019), - [anon_sym_AMP_AMP] = ACTIONS(7019), - [anon_sym_PIPE] = ACTIONS(7017), - [anon_sym_CARET] = ACTIONS(7017), - [anon_sym_AMP] = ACTIONS(7017), - [anon_sym_EQ_EQ] = ACTIONS(7019), - [anon_sym_BANG_EQ] = ACTIONS(7019), - [anon_sym_GT] = ACTIONS(7017), - [anon_sym_GT_EQ] = ACTIONS(7019), - [anon_sym_LT_EQ] = ACTIONS(7017), - [anon_sym_LT] = ACTIONS(7017), - [anon_sym_LT_LT] = ACTIONS(7017), - [anon_sym_GT_GT] = ACTIONS(7017), - [anon_sym___extension__] = ACTIONS(7017), - [anon_sym___attribute__] = ACTIONS(7017), - [anon_sym___attribute] = ACTIONS(7017), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(7019), - [anon_sym_signed] = ACTIONS(6433), - [anon_sym_unsigned] = ACTIONS(6433), - [anon_sym_long] = ACTIONS(6433), - [anon_sym_short] = ACTIONS(6433), - [anon_sym_LBRACK] = ACTIONS(7019), - [anon_sym_RBRACK] = ACTIONS(7019), - [anon_sym_EQ] = ACTIONS(7017), - [anon_sym_const] = ACTIONS(7017), - [anon_sym_constexpr] = ACTIONS(7017), - [anon_sym_volatile] = ACTIONS(7017), - [anon_sym_restrict] = ACTIONS(7017), - [anon_sym___restrict__] = ACTIONS(7017), - [anon_sym__Atomic] = ACTIONS(7017), - [anon_sym__Noreturn] = ACTIONS(7017), - [anon_sym_noreturn] = ACTIONS(7017), - [anon_sym__Nonnull] = ACTIONS(7017), - [anon_sym_mutable] = ACTIONS(7017), - [anon_sym_constinit] = ACTIONS(7017), - [anon_sym_consteval] = ACTIONS(7017), - [anon_sym_alignas] = ACTIONS(7017), - [anon_sym__Alignas] = ACTIONS(7017), - [anon_sym_QMARK] = ACTIONS(7019), - [anon_sym_STAR_EQ] = ACTIONS(7019), - [anon_sym_SLASH_EQ] = ACTIONS(7019), - [anon_sym_PERCENT_EQ] = ACTIONS(7019), - [anon_sym_PLUS_EQ] = ACTIONS(7019), - [anon_sym_DASH_EQ] = ACTIONS(7019), - [anon_sym_LT_LT_EQ] = ACTIONS(7019), - [anon_sym_GT_GT_EQ] = ACTIONS(7019), - [anon_sym_AMP_EQ] = ACTIONS(7019), - [anon_sym_CARET_EQ] = ACTIONS(7019), - [anon_sym_PIPE_EQ] = ACTIONS(7019), - [anon_sym_and_eq] = ACTIONS(7017), - [anon_sym_or_eq] = ACTIONS(7017), - [anon_sym_xor_eq] = ACTIONS(7017), - [anon_sym_LT_EQ_GT] = ACTIONS(7019), - [anon_sym_or] = ACTIONS(7017), - [anon_sym_and] = ACTIONS(7017), - [anon_sym_bitor] = ACTIONS(7017), - [anon_sym_xor] = ACTIONS(7017), - [anon_sym_bitand] = ACTIONS(7017), - [anon_sym_not_eq] = ACTIONS(7017), - [anon_sym_DASH_DASH] = ACTIONS(7019), - [anon_sym_PLUS_PLUS] = ACTIONS(7019), - [anon_sym_DOT] = ACTIONS(7017), - [anon_sym_DOT_STAR] = ACTIONS(7019), - [anon_sym_DASH_GT] = ACTIONS(7019), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7017), - [anon_sym_override] = ACTIONS(7017), - [anon_sym_requires] = ACTIONS(7017), - }, - [STATE(2013)] = { - [sym_function_definition] = STATE(814), - [sym_declaration] = STATE(814), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6279), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_call_modifier] = STATE(2620), - [sym_declaration_list] = STATE(814), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(5572), + [STATE(1951)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_ms_call_modifier] = STATE(8811), + [sym__abstract_declarator] = STATE(9362), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_abstract_function_declarator] = STATE(8596), + [sym_abstract_array_declarator] = STATE(8596), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_list] = STATE(4706), + [sym_parameter_declaration] = STATE(9791), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_explicit_object_parameter_declaration] = STATE(9791), + [sym_optional_parameter_declaration] = STATE(9791), + [sym_variadic_parameter_declaration] = STATE(9791), + [sym_abstract_reference_declarator] = STATE(8596), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), + [anon_sym_RPAREN] = ACTIONS(5615), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_STAR] = ACTIONS(6463), + [anon_sym_AMP_AMP] = ACTIONS(6465), + [anon_sym_AMP] = ACTIONS(6467), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_virtual] = ACTIONS(2310), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(7021), + [anon_sym___cdecl] = ACTIONS(6471), + [anon_sym___clrcall] = ACTIONS(6471), + [anon_sym___stdcall] = ACTIONS(6471), + [anon_sym___fastcall] = ACTIONS(6471), + [anon_sym___thiscall] = ACTIONS(6471), + [anon_sym___vectorcall] = ACTIONS(6471), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6473), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -303193,71 +308906,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5629), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_this] = ACTIONS(5631), }, - [STATE(2014)] = { - [sym_function_definition] = STATE(630), - [sym_declaration] = STATE(630), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6284), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_call_modifier] = STATE(2569), - [sym_declaration_list] = STATE(630), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(5572), + [STATE(1952)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_ms_call_modifier] = STATE(8771), + [sym__abstract_declarator] = STATE(9399), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_abstract_function_declarator] = STATE(8596), + [sym_abstract_array_declarator] = STATE(8596), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_list] = STATE(4706), + [sym_parameter_declaration] = STATE(10070), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_explicit_object_parameter_declaration] = STATE(10070), + [sym_optional_parameter_declaration] = STATE(10070), + [sym_variadic_parameter_declaration] = STATE(10070), + [sym_abstract_reference_declarator] = STATE(8596), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6528), + [anon_sym_RPAREN] = ACTIONS(6530), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_STAR] = ACTIONS(6463), + [anon_sym_AMP_AMP] = ACTIONS(6465), + [anon_sym_AMP] = ACTIONS(6467), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_virtual] = ACTIONS(2310), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(7023), + [anon_sym___cdecl] = ACTIONS(6471), + [anon_sym___clrcall] = ACTIONS(6471), + [anon_sym___stdcall] = ACTIONS(6471), + [anon_sym___fastcall] = ACTIONS(6471), + [anon_sym___thiscall] = ACTIONS(6471), + [anon_sym___vectorcall] = ACTIONS(6471), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6473), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -303280,1197 +309009,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5629), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(2015)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2589), - [sym_ms_pointer_modifier] = STATE(2393), - [sym__abstract_declarator] = STATE(5289), - [sym_abstract_parenthesized_declarator] = STATE(4956), - [sym_abstract_pointer_declarator] = STATE(4956), - [sym_abstract_function_declarator] = STATE(4956), - [sym_abstract_array_declarator] = STATE(4956), - [sym_type_qualifier] = STATE(2333), - [sym_alignas_qualifier] = STATE(2295), - [sym_parameter_list] = STATE(1875), - [sym_abstract_reference_declarator] = STATE(4956), - [sym__function_declarator_seq] = STATE(4970), - [aux_sym__type_definition_type_repeat1] = STATE(2333), - [aux_sym_pointer_declarator_repeat1] = STATE(2393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6724), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(7025), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(7027), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(7029), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6495), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym___extension__] = ACTIONS(6732), - [sym_ms_restrict_modifier] = ACTIONS(6734), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6736), - [sym_ms_signed_ptr_modifier] = ACTIONS(6736), - [anon_sym__unaligned] = ACTIONS(6738), - [anon_sym___unaligned] = ACTIONS(6738), - [anon_sym_LBRACK] = ACTIONS(6740), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6742), - [anon_sym_constexpr] = ACTIONS(6732), - [anon_sym_volatile] = ACTIONS(6732), - [anon_sym_restrict] = ACTIONS(6732), - [anon_sym___restrict__] = ACTIONS(6732), - [anon_sym__Atomic] = ACTIONS(6732), - [anon_sym__Noreturn] = ACTIONS(6732), - [anon_sym_noreturn] = ACTIONS(6732), - [anon_sym__Nonnull] = ACTIONS(6732), - [anon_sym_mutable] = ACTIONS(6732), - [anon_sym_constinit] = ACTIONS(6732), - [anon_sym_consteval] = ACTIONS(6732), - [anon_sym_alignas] = ACTIONS(6744), - [anon_sym__Alignas] = ACTIONS(6744), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6495), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_and_eq] = ACTIONS(6497), - [anon_sym_or_eq] = ACTIONS(6497), - [anon_sym_xor_eq] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(6497), - }, - [STATE(2016)] = { - [sym__abstract_declarator] = STATE(4142), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2017), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1842), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(6993), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), - [anon_sym_COMMA] = ACTIONS(6991), - [aux_sym_preproc_if_token2] = ACTIONS(6991), - [aux_sym_preproc_else_token1] = ACTIONS(6991), - [aux_sym_preproc_elif_token1] = ACTIONS(6993), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6991), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6991), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6993), - [anon_sym_PLUS] = ACTIONS(6993), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_SLASH] = ACTIONS(6993), - [anon_sym_PERCENT] = ACTIONS(6993), - [anon_sym_PIPE_PIPE] = ACTIONS(6991), - [anon_sym_AMP_AMP] = ACTIONS(6465), - [anon_sym_PIPE] = ACTIONS(6993), - [anon_sym_CARET] = ACTIONS(6993), - [anon_sym_AMP] = ACTIONS(6467), - [anon_sym_EQ_EQ] = ACTIONS(6991), - [anon_sym_BANG_EQ] = ACTIONS(6991), - [anon_sym_GT] = ACTIONS(6993), - [anon_sym_GT_EQ] = ACTIONS(6991), - [anon_sym_LT_EQ] = ACTIONS(6993), - [anon_sym_LT] = ACTIONS(6993), - [anon_sym_LT_LT] = ACTIONS(6993), - [anon_sym_GT_GT] = ACTIONS(6993), - [anon_sym___extension__] = ACTIONS(6469), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6993), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6469), - [anon_sym_volatile] = ACTIONS(6469), - [anon_sym_restrict] = ACTIONS(6469), - [anon_sym___restrict__] = ACTIONS(6469), - [anon_sym__Atomic] = ACTIONS(6469), - [anon_sym__Noreturn] = ACTIONS(6469), - [anon_sym_noreturn] = ACTIONS(6469), - [anon_sym__Nonnull] = ACTIONS(6469), - [anon_sym_mutable] = ACTIONS(6469), - [anon_sym_constinit] = ACTIONS(6469), - [anon_sym_consteval] = ACTIONS(6469), - [anon_sym_alignas] = ACTIONS(6477), - [anon_sym__Alignas] = ACTIONS(6477), - [anon_sym_QMARK] = ACTIONS(6991), - [anon_sym_STAR_EQ] = ACTIONS(6991), - [anon_sym_SLASH_EQ] = ACTIONS(6991), - [anon_sym_PERCENT_EQ] = ACTIONS(6991), - [anon_sym_PLUS_EQ] = ACTIONS(6991), - [anon_sym_DASH_EQ] = ACTIONS(6991), - [anon_sym_LT_LT_EQ] = ACTIONS(6991), - [anon_sym_GT_GT_EQ] = ACTIONS(6991), - [anon_sym_AMP_EQ] = ACTIONS(6991), - [anon_sym_CARET_EQ] = ACTIONS(6991), - [anon_sym_PIPE_EQ] = ACTIONS(6991), - [anon_sym_and_eq] = ACTIONS(6993), - [anon_sym_or_eq] = ACTIONS(6993), - [anon_sym_xor_eq] = ACTIONS(6993), - [anon_sym_LT_EQ_GT] = ACTIONS(6991), - [anon_sym_or] = ACTIONS(6993), - [anon_sym_and] = ACTIONS(6993), - [anon_sym_bitor] = ACTIONS(6993), - [anon_sym_xor] = ACTIONS(6993), - [anon_sym_bitand] = ACTIONS(6993), - [anon_sym_not_eq] = ACTIONS(6993), - [anon_sym_DASH_DASH] = ACTIONS(6991), - [anon_sym_PLUS_PLUS] = ACTIONS(6991), - [anon_sym_DOT] = ACTIONS(6993), - [anon_sym_DOT_STAR] = ACTIONS(6991), - [anon_sym_DASH_GT] = ACTIONS(6991), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6993), - [anon_sym_override] = ACTIONS(6993), - [anon_sym_requires] = ACTIONS(6993), - }, - [STATE(2017)] = { - [sym__abstract_declarator] = STATE(4143), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2293), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1842), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(6997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), - [anon_sym_COMMA] = ACTIONS(6995), - [aux_sym_preproc_if_token2] = ACTIONS(6995), - [aux_sym_preproc_else_token1] = ACTIONS(6995), - [aux_sym_preproc_elif_token1] = ACTIONS(6997), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6995), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6995), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6997), - [anon_sym_PLUS] = ACTIONS(6997), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_SLASH] = ACTIONS(6997), - [anon_sym_PERCENT] = ACTIONS(6997), - [anon_sym_PIPE_PIPE] = ACTIONS(6995), - [anon_sym_AMP_AMP] = ACTIONS(6465), - [anon_sym_PIPE] = ACTIONS(6997), - [anon_sym_CARET] = ACTIONS(6997), - [anon_sym_AMP] = ACTIONS(6467), - [anon_sym_EQ_EQ] = ACTIONS(6995), - [anon_sym_BANG_EQ] = ACTIONS(6995), - [anon_sym_GT] = ACTIONS(6997), - [anon_sym_GT_EQ] = ACTIONS(6995), - [anon_sym_LT_EQ] = ACTIONS(6997), - [anon_sym_LT] = ACTIONS(6997), - [anon_sym_LT_LT] = ACTIONS(6997), - [anon_sym_GT_GT] = ACTIONS(6997), - [anon_sym___extension__] = ACTIONS(6469), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6997), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6469), - [anon_sym_volatile] = ACTIONS(6469), - [anon_sym_restrict] = ACTIONS(6469), - [anon_sym___restrict__] = ACTIONS(6469), - [anon_sym__Atomic] = ACTIONS(6469), - [anon_sym__Noreturn] = ACTIONS(6469), - [anon_sym_noreturn] = ACTIONS(6469), - [anon_sym__Nonnull] = ACTIONS(6469), - [anon_sym_mutable] = ACTIONS(6469), - [anon_sym_constinit] = ACTIONS(6469), - [anon_sym_consteval] = ACTIONS(6469), - [anon_sym_alignas] = ACTIONS(6477), - [anon_sym__Alignas] = ACTIONS(6477), - [anon_sym_QMARK] = ACTIONS(6995), - [anon_sym_STAR_EQ] = ACTIONS(6995), - [anon_sym_SLASH_EQ] = ACTIONS(6995), - [anon_sym_PERCENT_EQ] = ACTIONS(6995), - [anon_sym_PLUS_EQ] = ACTIONS(6995), - [anon_sym_DASH_EQ] = ACTIONS(6995), - [anon_sym_LT_LT_EQ] = ACTIONS(6995), - [anon_sym_GT_GT_EQ] = ACTIONS(6995), - [anon_sym_AMP_EQ] = ACTIONS(6995), - [anon_sym_CARET_EQ] = ACTIONS(6995), - [anon_sym_PIPE_EQ] = ACTIONS(6995), - [anon_sym_and_eq] = ACTIONS(6997), - [anon_sym_or_eq] = ACTIONS(6997), - [anon_sym_xor_eq] = ACTIONS(6997), - [anon_sym_LT_EQ_GT] = ACTIONS(6995), - [anon_sym_or] = ACTIONS(6997), - [anon_sym_and] = ACTIONS(6997), - [anon_sym_bitor] = ACTIONS(6997), - [anon_sym_xor] = ACTIONS(6997), - [anon_sym_bitand] = ACTIONS(6997), - [anon_sym_not_eq] = ACTIONS(6997), - [anon_sym_DASH_DASH] = ACTIONS(6995), - [anon_sym_PLUS_PLUS] = ACTIONS(6995), - [anon_sym_DOT] = ACTIONS(6997), - [anon_sym_DOT_STAR] = ACTIONS(6995), - [anon_sym_DASH_GT] = ACTIONS(6995), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6997), - [anon_sym_override] = ACTIONS(6997), - [anon_sym_requires] = ACTIONS(6997), - }, - [STATE(2018)] = { - [sym__abstract_declarator] = STATE(4144), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2020), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1842), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2020), - [sym_identifier] = ACTIONS(7001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), - [anon_sym_COMMA] = ACTIONS(6999), - [aux_sym_preproc_if_token2] = ACTIONS(6999), - [aux_sym_preproc_else_token1] = ACTIONS(6999), - [aux_sym_preproc_elif_token1] = ACTIONS(7001), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6999), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6999), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(7001), - [anon_sym_PLUS] = ACTIONS(7001), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_SLASH] = ACTIONS(7001), - [anon_sym_PERCENT] = ACTIONS(7001), - [anon_sym_PIPE_PIPE] = ACTIONS(6999), - [anon_sym_AMP_AMP] = ACTIONS(6465), - [anon_sym_PIPE] = ACTIONS(7001), - [anon_sym_CARET] = ACTIONS(7001), - [anon_sym_AMP] = ACTIONS(6467), - [anon_sym_EQ_EQ] = ACTIONS(6999), - [anon_sym_BANG_EQ] = ACTIONS(6999), - [anon_sym_GT] = ACTIONS(7001), - [anon_sym_GT_EQ] = ACTIONS(6999), - [anon_sym_LT_EQ] = ACTIONS(7001), - [anon_sym_LT] = ACTIONS(7001), - [anon_sym_LT_LT] = ACTIONS(7001), - [anon_sym_GT_GT] = ACTIONS(7001), - [anon_sym___extension__] = ACTIONS(6469), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(7001), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6469), - [anon_sym_volatile] = ACTIONS(6469), - [anon_sym_restrict] = ACTIONS(6469), - [anon_sym___restrict__] = ACTIONS(6469), - [anon_sym__Atomic] = ACTIONS(6469), - [anon_sym__Noreturn] = ACTIONS(6469), - [anon_sym_noreturn] = ACTIONS(6469), - [anon_sym__Nonnull] = ACTIONS(6469), - [anon_sym_mutable] = ACTIONS(6469), - [anon_sym_constinit] = ACTIONS(6469), - [anon_sym_consteval] = ACTIONS(6469), - [anon_sym_alignas] = ACTIONS(6477), - [anon_sym__Alignas] = ACTIONS(6477), - [anon_sym_QMARK] = ACTIONS(6999), - [anon_sym_STAR_EQ] = ACTIONS(6999), - [anon_sym_SLASH_EQ] = ACTIONS(6999), - [anon_sym_PERCENT_EQ] = ACTIONS(6999), - [anon_sym_PLUS_EQ] = ACTIONS(6999), - [anon_sym_DASH_EQ] = ACTIONS(6999), - [anon_sym_LT_LT_EQ] = ACTIONS(6999), - [anon_sym_GT_GT_EQ] = ACTIONS(6999), - [anon_sym_AMP_EQ] = ACTIONS(6999), - [anon_sym_CARET_EQ] = ACTIONS(6999), - [anon_sym_PIPE_EQ] = ACTIONS(6999), - [anon_sym_and_eq] = ACTIONS(7001), - [anon_sym_or_eq] = ACTIONS(7001), - [anon_sym_xor_eq] = ACTIONS(7001), - [anon_sym_LT_EQ_GT] = ACTIONS(6999), - [anon_sym_or] = ACTIONS(7001), - [anon_sym_and] = ACTIONS(7001), - [anon_sym_bitor] = ACTIONS(7001), - [anon_sym_xor] = ACTIONS(7001), - [anon_sym_bitand] = ACTIONS(7001), - [anon_sym_not_eq] = ACTIONS(7001), - [anon_sym_DASH_DASH] = ACTIONS(6999), - [anon_sym_PLUS_PLUS] = ACTIONS(6999), - [anon_sym_DOT] = ACTIONS(7001), - [anon_sym_DOT_STAR] = ACTIONS(6999), - [anon_sym_DASH_GT] = ACTIONS(6999), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7001), - [anon_sym_override] = ACTIONS(7001), - [anon_sym_requires] = ACTIONS(7001), - }, - [STATE(2019)] = { - [sym__abstract_declarator] = STATE(4148), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2293), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1842), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(6495), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [aux_sym_preproc_if_token2] = ACTIONS(6497), - [aux_sym_preproc_else_token1] = ACTIONS(6497), - [aux_sym_preproc_elif_token1] = ACTIONS(6495), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6497), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(6465), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(6467), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym___extension__] = ACTIONS(6469), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6469), - [anon_sym_volatile] = ACTIONS(6469), - [anon_sym_restrict] = ACTIONS(6469), - [anon_sym___restrict__] = ACTIONS(6469), - [anon_sym__Atomic] = ACTIONS(6469), - [anon_sym__Noreturn] = ACTIONS(6469), - [anon_sym_noreturn] = ACTIONS(6469), - [anon_sym__Nonnull] = ACTIONS(6469), - [anon_sym_mutable] = ACTIONS(6469), - [anon_sym_constinit] = ACTIONS(6469), - [anon_sym_consteval] = ACTIONS(6469), - [anon_sym_alignas] = ACTIONS(6477), - [anon_sym__Alignas] = ACTIONS(6477), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6497), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_and_eq] = ACTIONS(6495), - [anon_sym_or_eq] = ACTIONS(6495), - [anon_sym_xor_eq] = ACTIONS(6495), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6495), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6495), - [anon_sym_not_eq] = ACTIONS(6495), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6495), - [anon_sym_override] = ACTIONS(6495), - [anon_sym_requires] = ACTIONS(6495), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_this] = ACTIONS(5631), }, - [STATE(2020)] = { - [sym__abstract_declarator] = STATE(4145), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2293), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1842), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(7005), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), - [anon_sym_COMMA] = ACTIONS(7003), - [aux_sym_preproc_if_token2] = ACTIONS(7003), - [aux_sym_preproc_else_token1] = ACTIONS(7003), - [aux_sym_preproc_elif_token1] = ACTIONS(7005), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7003), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7003), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_SLASH] = ACTIONS(7005), - [anon_sym_PERCENT] = ACTIONS(7005), - [anon_sym_PIPE_PIPE] = ACTIONS(7003), - [anon_sym_AMP_AMP] = ACTIONS(6465), - [anon_sym_PIPE] = ACTIONS(7005), - [anon_sym_CARET] = ACTIONS(7005), - [anon_sym_AMP] = ACTIONS(6467), - [anon_sym_EQ_EQ] = ACTIONS(7003), - [anon_sym_BANG_EQ] = ACTIONS(7003), - [anon_sym_GT] = ACTIONS(7005), - [anon_sym_GT_EQ] = ACTIONS(7003), - [anon_sym_LT_EQ] = ACTIONS(7005), - [anon_sym_LT] = ACTIONS(7005), - [anon_sym_LT_LT] = ACTIONS(7005), - [anon_sym_GT_GT] = ACTIONS(7005), - [anon_sym___extension__] = ACTIONS(6469), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(7005), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6469), - [anon_sym_volatile] = ACTIONS(6469), - [anon_sym_restrict] = ACTIONS(6469), - [anon_sym___restrict__] = ACTIONS(6469), - [anon_sym__Atomic] = ACTIONS(6469), - [anon_sym__Noreturn] = ACTIONS(6469), - [anon_sym_noreturn] = ACTIONS(6469), - [anon_sym__Nonnull] = ACTIONS(6469), - [anon_sym_mutable] = ACTIONS(6469), - [anon_sym_constinit] = ACTIONS(6469), - [anon_sym_consteval] = ACTIONS(6469), - [anon_sym_alignas] = ACTIONS(6477), - [anon_sym__Alignas] = ACTIONS(6477), - [anon_sym_QMARK] = ACTIONS(7003), - [anon_sym_STAR_EQ] = ACTIONS(7003), - [anon_sym_SLASH_EQ] = ACTIONS(7003), - [anon_sym_PERCENT_EQ] = ACTIONS(7003), - [anon_sym_PLUS_EQ] = ACTIONS(7003), - [anon_sym_DASH_EQ] = ACTIONS(7003), - [anon_sym_LT_LT_EQ] = ACTIONS(7003), - [anon_sym_GT_GT_EQ] = ACTIONS(7003), - [anon_sym_AMP_EQ] = ACTIONS(7003), - [anon_sym_CARET_EQ] = ACTIONS(7003), - [anon_sym_PIPE_EQ] = ACTIONS(7003), - [anon_sym_and_eq] = ACTIONS(7005), - [anon_sym_or_eq] = ACTIONS(7005), - [anon_sym_xor_eq] = ACTIONS(7005), - [anon_sym_LT_EQ_GT] = ACTIONS(7003), - [anon_sym_or] = ACTIONS(7005), - [anon_sym_and] = ACTIONS(7005), - [anon_sym_bitor] = ACTIONS(7005), - [anon_sym_xor] = ACTIONS(7005), - [anon_sym_bitand] = ACTIONS(7005), - [anon_sym_not_eq] = ACTIONS(7005), - [anon_sym_DASH_DASH] = ACTIONS(7003), - [anon_sym_PLUS_PLUS] = ACTIONS(7003), - [anon_sym_DOT] = ACTIONS(7005), - [anon_sym_DOT_STAR] = ACTIONS(7003), - [anon_sym_DASH_GT] = ACTIONS(7003), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7005), - [anon_sym_override] = ACTIONS(7005), - [anon_sym_requires] = ACTIONS(7005), + [STATE(1953)] = { + [sym_attribute_specifier] = STATE(1984), + [sym_attribute_declaration] = STATE(3125), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2059), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym_ref_qualifier] = STATE(2322), + [sym__function_attributes_start] = STATE(2264), + [sym__function_exception_specification] = STATE(2558), + [sym__function_attributes_end] = STATE(3880), + [sym__function_postfix] = STATE(3601), + [sym_trailing_return_type] = STATE(3074), + [sym_noexcept] = STATE(2558), + [sym_throw_specifier] = STATE(2558), + [sym_requires_clause] = STATE(3601), + [aux_sym_type_definition_repeat1] = STATE(1984), + [aux_sym__type_definition_type_repeat1] = STATE(2001), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), + [anon_sym_COMMA] = ACTIONS(6481), + [anon_sym_RPAREN] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_PLUS] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6479), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_PERCENT] = ACTIONS(6479), + [anon_sym_PIPE_PIPE] = ACTIONS(6481), + [anon_sym_AMP_AMP] = ACTIONS(6483), + [anon_sym_PIPE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6479), + [anon_sym_AMP] = ACTIONS(6486), + [anon_sym_EQ_EQ] = ACTIONS(6481), + [anon_sym_BANG_EQ] = ACTIONS(6481), + [anon_sym_GT] = ACTIONS(6479), + [anon_sym_GT_EQ] = ACTIONS(6481), + [anon_sym_LT_EQ] = ACTIONS(6479), + [anon_sym_LT] = ACTIONS(6479), + [anon_sym_LT_LT] = ACTIONS(6479), + [anon_sym_GT_GT] = ACTIONS(6479), + [anon_sym_SEMI] = ACTIONS(6481), + [anon_sym___extension__] = ACTIONS(6532), + [anon_sym___attribute__] = ACTIONS(6534), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_COLON] = ACTIONS(6479), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6481), + [anon_sym_RBRACE] = ACTIONS(6481), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_EQ] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(6489), + [anon_sym_constexpr] = ACTIONS(6532), + [anon_sym_volatile] = ACTIONS(6532), + [anon_sym_restrict] = ACTIONS(6532), + [anon_sym___restrict__] = ACTIONS(6532), + [anon_sym__Atomic] = ACTIONS(6532), + [anon_sym__Noreturn] = ACTIONS(6532), + [anon_sym_noreturn] = ACTIONS(6532), + [anon_sym__Nonnull] = ACTIONS(6532), + [anon_sym_mutable] = ACTIONS(6532), + [anon_sym_constinit] = ACTIONS(6532), + [anon_sym_consteval] = ACTIONS(6532), + [anon_sym_alignas] = ACTIONS(6536), + [anon_sym__Alignas] = ACTIONS(6536), + [anon_sym_QMARK] = ACTIONS(6481), + [anon_sym_STAR_EQ] = ACTIONS(6481), + [anon_sym_SLASH_EQ] = ACTIONS(6481), + [anon_sym_PERCENT_EQ] = ACTIONS(6481), + [anon_sym_PLUS_EQ] = ACTIONS(6481), + [anon_sym_DASH_EQ] = ACTIONS(6481), + [anon_sym_LT_LT_EQ] = ACTIONS(6481), + [anon_sym_GT_GT_EQ] = ACTIONS(6481), + [anon_sym_AMP_EQ] = ACTIONS(6481), + [anon_sym_CARET_EQ] = ACTIONS(6481), + [anon_sym_PIPE_EQ] = ACTIONS(6481), + [anon_sym_and_eq] = ACTIONS(6481), + [anon_sym_or_eq] = ACTIONS(6481), + [anon_sym_xor_eq] = ACTIONS(6481), + [anon_sym_LT_EQ_GT] = ACTIONS(6481), + [anon_sym_or] = ACTIONS(6479), + [anon_sym_and] = ACTIONS(6479), + [anon_sym_bitor] = ACTIONS(6481), + [anon_sym_xor] = ACTIONS(6479), + [anon_sym_bitand] = ACTIONS(6481), + [anon_sym_not_eq] = ACTIONS(6481), + [anon_sym_DASH_DASH] = ACTIONS(6481), + [anon_sym_PLUS_PLUS] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6479), + [anon_sym_DOT_STAR] = ACTIONS(6481), + [anon_sym_DASH_GT] = ACTIONS(6540), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6543), + [anon_sym_override] = ACTIONS(6543), + [anon_sym_noexcept] = ACTIONS(6546), + [anon_sym_throw] = ACTIONS(6548), + [anon_sym_requires] = ACTIONS(6550), + [anon_sym_COLON_RBRACK] = ACTIONS(6481), }, - [STATE(2021)] = { - [sym__abstract_declarator] = STATE(4149), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2293), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1842), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(7009), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), - [anon_sym_COMMA] = ACTIONS(7007), - [aux_sym_preproc_if_token2] = ACTIONS(7007), - [aux_sym_preproc_else_token1] = ACTIONS(7007), - [aux_sym_preproc_elif_token1] = ACTIONS(7009), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7007), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7007), + [STATE(1954)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_ms_call_modifier] = STATE(8801), + [sym__abstract_declarator] = STATE(9390), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_abstract_function_declarator] = STATE(8596), + [sym_abstract_array_declarator] = STATE(8596), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_list] = STATE(4706), + [sym_parameter_declaration] = STATE(9733), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_explicit_object_parameter_declaration] = STATE(9733), + [sym_optional_parameter_declaration] = STATE(9733), + [sym_variadic_parameter_declaration] = STATE(9733), + [sym_abstract_reference_declarator] = STATE(8596), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6553), + [anon_sym_RPAREN] = ACTIONS(6555), [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(7009), - [anon_sym_PLUS] = ACTIONS(7009), [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_SLASH] = ACTIONS(7009), - [anon_sym_PERCENT] = ACTIONS(7009), - [anon_sym_PIPE_PIPE] = ACTIONS(7007), [anon_sym_AMP_AMP] = ACTIONS(6465), - [anon_sym_PIPE] = ACTIONS(7009), - [anon_sym_CARET] = ACTIONS(7009), [anon_sym_AMP] = ACTIONS(6467), - [anon_sym_EQ_EQ] = ACTIONS(7007), - [anon_sym_BANG_EQ] = ACTIONS(7007), - [anon_sym_GT] = ACTIONS(7009), - [anon_sym_GT_EQ] = ACTIONS(7007), - [anon_sym_LT_EQ] = ACTIONS(7009), - [anon_sym_LT] = ACTIONS(7009), - [anon_sym_LT_LT] = ACTIONS(7009), - [anon_sym_GT_GT] = ACTIONS(7009), - [anon_sym___extension__] = ACTIONS(6469), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(7009), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6469), - [anon_sym_volatile] = ACTIONS(6469), - [anon_sym_restrict] = ACTIONS(6469), - [anon_sym___restrict__] = ACTIONS(6469), - [anon_sym__Atomic] = ACTIONS(6469), - [anon_sym__Noreturn] = ACTIONS(6469), - [anon_sym_noreturn] = ACTIONS(6469), - [anon_sym__Nonnull] = ACTIONS(6469), - [anon_sym_mutable] = ACTIONS(6469), - [anon_sym_constinit] = ACTIONS(6469), - [anon_sym_consteval] = ACTIONS(6469), - [anon_sym_alignas] = ACTIONS(6477), - [anon_sym__Alignas] = ACTIONS(6477), - [anon_sym_QMARK] = ACTIONS(7007), - [anon_sym_STAR_EQ] = ACTIONS(7007), - [anon_sym_SLASH_EQ] = ACTIONS(7007), - [anon_sym_PERCENT_EQ] = ACTIONS(7007), - [anon_sym_PLUS_EQ] = ACTIONS(7007), - [anon_sym_DASH_EQ] = ACTIONS(7007), - [anon_sym_LT_LT_EQ] = ACTIONS(7007), - [anon_sym_GT_GT_EQ] = ACTIONS(7007), - [anon_sym_AMP_EQ] = ACTIONS(7007), - [anon_sym_CARET_EQ] = ACTIONS(7007), - [anon_sym_PIPE_EQ] = ACTIONS(7007), - [anon_sym_and_eq] = ACTIONS(7009), - [anon_sym_or_eq] = ACTIONS(7009), - [anon_sym_xor_eq] = ACTIONS(7009), - [anon_sym_LT_EQ_GT] = ACTIONS(7007), - [anon_sym_or] = ACTIONS(7009), - [anon_sym_and] = ACTIONS(7009), - [anon_sym_bitor] = ACTIONS(7009), - [anon_sym_xor] = ACTIONS(7009), - [anon_sym_bitand] = ACTIONS(7009), - [anon_sym_not_eq] = ACTIONS(7009), - [anon_sym_DASH_DASH] = ACTIONS(7007), - [anon_sym_PLUS_PLUS] = ACTIONS(7007), - [anon_sym_DOT] = ACTIONS(7009), - [anon_sym_DOT_STAR] = ACTIONS(7007), - [anon_sym_DASH_GT] = ACTIONS(7007), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7009), - [anon_sym_override] = ACTIONS(7009), - [anon_sym_requires] = ACTIONS(7009), - }, - [STATE(2022)] = { - [sym_template_argument_list] = STATE(1995), - [sym_identifier] = ACTIONS(7031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5272), - [anon_sym_COMMA] = ACTIONS(5272), - [anon_sym_RPAREN] = ACTIONS(5272), - [aux_sym_preproc_if_token2] = ACTIONS(5272), - [aux_sym_preproc_else_token1] = ACTIONS(5272), - [aux_sym_preproc_elif_token1] = ACTIONS(7031), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5272), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5272), - [anon_sym_LPAREN2] = ACTIONS(5272), - [anon_sym_DASH] = ACTIONS(7031), - [anon_sym_PLUS] = ACTIONS(7031), - [anon_sym_STAR] = ACTIONS(7031), - [anon_sym_SLASH] = ACTIONS(7031), - [anon_sym_PERCENT] = ACTIONS(7031), - [anon_sym_PIPE_PIPE] = ACTIONS(5272), - [anon_sym_AMP_AMP] = ACTIONS(5272), - [anon_sym_PIPE] = ACTIONS(7031), - [anon_sym_CARET] = ACTIONS(7031), - [anon_sym_AMP] = ACTIONS(7031), - [anon_sym_EQ_EQ] = ACTIONS(5272), - [anon_sym_BANG_EQ] = ACTIONS(5272), - [anon_sym_GT] = ACTIONS(7031), - [anon_sym_GT_EQ] = ACTIONS(5272), - [anon_sym_LT_EQ] = ACTIONS(7031), - [anon_sym_LT] = ACTIONS(6898), - [anon_sym_LT_LT] = ACTIONS(7031), - [anon_sym_GT_GT] = ACTIONS(7031), - [anon_sym_SEMI] = ACTIONS(5272), - [anon_sym___extension__] = ACTIONS(7031), - [anon_sym___attribute__] = ACTIONS(7031), - [anon_sym___attribute] = ACTIONS(7031), - [anon_sym_COLON] = ACTIONS(7031), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5272), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_RBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5272), - [anon_sym_EQ] = ACTIONS(7031), - [anon_sym_const] = ACTIONS(7031), - [anon_sym_constexpr] = ACTIONS(7031), - [anon_sym_volatile] = ACTIONS(7031), - [anon_sym_restrict] = ACTIONS(7031), - [anon_sym___restrict__] = ACTIONS(7031), - [anon_sym__Atomic] = ACTIONS(7031), - [anon_sym__Noreturn] = ACTIONS(7031), - [anon_sym_noreturn] = ACTIONS(7031), - [anon_sym__Nonnull] = ACTIONS(7031), - [anon_sym_mutable] = ACTIONS(7031), - [anon_sym_constinit] = ACTIONS(7031), - [anon_sym_consteval] = ACTIONS(7031), - [anon_sym_alignas] = ACTIONS(7031), - [anon_sym__Alignas] = ACTIONS(7031), - [anon_sym_QMARK] = ACTIONS(5272), - [anon_sym_STAR_EQ] = ACTIONS(5272), - [anon_sym_SLASH_EQ] = ACTIONS(5272), - [anon_sym_PERCENT_EQ] = ACTIONS(5272), - [anon_sym_PLUS_EQ] = ACTIONS(5272), - [anon_sym_DASH_EQ] = ACTIONS(5272), - [anon_sym_LT_LT_EQ] = ACTIONS(5272), - [anon_sym_GT_GT_EQ] = ACTIONS(5272), - [anon_sym_AMP_EQ] = ACTIONS(5272), - [anon_sym_CARET_EQ] = ACTIONS(5272), - [anon_sym_PIPE_EQ] = ACTIONS(5272), - [anon_sym_and_eq] = ACTIONS(7031), - [anon_sym_or_eq] = ACTIONS(7031), - [anon_sym_xor_eq] = ACTIONS(7031), - [anon_sym_LT_EQ_GT] = ACTIONS(5272), - [anon_sym_or] = ACTIONS(7031), - [anon_sym_and] = ACTIONS(7031), - [anon_sym_bitor] = ACTIONS(7031), - [anon_sym_xor] = ACTIONS(7031), - [anon_sym_bitand] = ACTIONS(7031), - [anon_sym_not_eq] = ACTIONS(7031), - [anon_sym_DASH_DASH] = ACTIONS(5272), - [anon_sym_PLUS_PLUS] = ACTIONS(5272), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_DOT_STAR] = ACTIONS(5272), - [anon_sym_DASH_GT] = ACTIONS(5272), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7031), - [anon_sym_override] = ACTIONS(7031), - [anon_sym_requires] = ACTIONS(7031), - [anon_sym_COLON_RBRACK] = ACTIONS(5272), - }, - [STATE(2023)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2589), - [sym_ms_pointer_modifier] = STATE(2015), - [sym__abstract_declarator] = STATE(5360), - [sym_abstract_parenthesized_declarator] = STATE(4956), - [sym_abstract_pointer_declarator] = STATE(4956), - [sym_abstract_function_declarator] = STATE(4956), - [sym_abstract_array_declarator] = STATE(4956), - [sym_type_qualifier] = STATE(2422), - [sym_alignas_qualifier] = STATE(2295), - [sym_parameter_list] = STATE(1875), - [sym_abstract_reference_declarator] = STATE(4956), - [sym__function_declarator_seq] = STATE(4970), - [aux_sym__type_definition_type_repeat1] = STATE(2422), - [aux_sym_pointer_declarator_repeat1] = STATE(2015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(6724), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_PLUS] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(7025), - [anon_sym_SLASH] = ACTIONS(6457), - [anon_sym_PERCENT] = ACTIONS(6457), - [anon_sym_PIPE_PIPE] = ACTIONS(6459), - [anon_sym_AMP_AMP] = ACTIONS(7027), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_CARET] = ACTIONS(6457), - [anon_sym_AMP] = ACTIONS(7029), - [anon_sym_EQ_EQ] = ACTIONS(6459), - [anon_sym_BANG_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_GT_EQ] = ACTIONS(6457), - [anon_sym_LT_EQ] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_LT_LT] = ACTIONS(6457), - [anon_sym_GT_GT] = ACTIONS(6457), - [anon_sym___extension__] = ACTIONS(6732), - [sym_ms_restrict_modifier] = ACTIONS(6734), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6736), - [sym_ms_signed_ptr_modifier] = ACTIONS(6736), - [anon_sym__unaligned] = ACTIONS(6738), - [anon_sym___unaligned] = ACTIONS(6738), - [anon_sym_LBRACK] = ACTIONS(6740), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_const] = ACTIONS(6742), - [anon_sym_constexpr] = ACTIONS(6732), - [anon_sym_volatile] = ACTIONS(6732), - [anon_sym_restrict] = ACTIONS(6732), - [anon_sym___restrict__] = ACTIONS(6732), - [anon_sym__Atomic] = ACTIONS(6732), - [anon_sym__Noreturn] = ACTIONS(6732), - [anon_sym_noreturn] = ACTIONS(6732), - [anon_sym__Nonnull] = ACTIONS(6732), - [anon_sym_mutable] = ACTIONS(6732), - [anon_sym_constinit] = ACTIONS(6732), - [anon_sym_consteval] = ACTIONS(6732), - [anon_sym_alignas] = ACTIONS(6744), - [anon_sym__Alignas] = ACTIONS(6744), - [anon_sym_QMARK] = ACTIONS(6459), - [anon_sym_STAR_EQ] = ACTIONS(6459), - [anon_sym_SLASH_EQ] = ACTIONS(6459), - [anon_sym_PERCENT_EQ] = ACTIONS(6459), - [anon_sym_PLUS_EQ] = ACTIONS(6459), - [anon_sym_DASH_EQ] = ACTIONS(6459), - [anon_sym_LT_LT_EQ] = ACTIONS(6459), - [anon_sym_GT_GT_EQ] = ACTIONS(6457), - [anon_sym_AMP_EQ] = ACTIONS(6459), - [anon_sym_CARET_EQ] = ACTIONS(6459), - [anon_sym_PIPE_EQ] = ACTIONS(6459), - [anon_sym_and_eq] = ACTIONS(6459), - [anon_sym_or_eq] = ACTIONS(6459), - [anon_sym_xor_eq] = ACTIONS(6459), - [anon_sym_LT_EQ_GT] = ACTIONS(6459), - [anon_sym_or] = ACTIONS(6457), - [anon_sym_and] = ACTIONS(6457), - [anon_sym_bitor] = ACTIONS(6459), - [anon_sym_xor] = ACTIONS(6457), - [anon_sym_bitand] = ACTIONS(6459), - [anon_sym_not_eq] = ACTIONS(6459), - [anon_sym_DASH_DASH] = ACTIONS(6459), - [anon_sym_PLUS_PLUS] = ACTIONS(6459), - [anon_sym_DOT] = ACTIONS(6457), - [anon_sym_DOT_STAR] = ACTIONS(6459), - [anon_sym_DASH_GT] = ACTIONS(6459), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(6459), - }, - [STATE(2024)] = { - [sym_type_qualifier] = STATE(2027), - [sym_alignas_qualifier] = STATE(1953), - [aux_sym__type_definition_type_repeat1] = STATE(2027), - [aux_sym_sized_type_specifier_repeat1] = STATE(2201), - [sym_identifier] = ACTIONS(6810), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), - [anon_sym_COMMA] = ACTIONS(6812), - [anon_sym_RPAREN] = ACTIONS(6812), - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_STAR] = ACTIONS(6814), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_PERCENT] = ACTIONS(6814), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_CARET] = ACTIONS(6814), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_LT_LT] = ACTIONS(6814), - [anon_sym_GT_GT] = ACTIONS(6814), - [anon_sym_SEMI] = ACTIONS(6812), - [anon_sym___extension__] = ACTIONS(6491), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym_COLON] = ACTIONS(6814), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6812), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_RBRACE] = ACTIONS(6812), - [anon_sym_signed] = ACTIONS(7033), - [anon_sym_unsigned] = ACTIONS(7033), - [anon_sym_long] = ACTIONS(7033), - [anon_sym_short] = ACTIONS(7033), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_EQ] = ACTIONS(6814), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6491), - [anon_sym_volatile] = ACTIONS(6491), - [anon_sym_restrict] = ACTIONS(6491), - [anon_sym___restrict__] = ACTIONS(6491), - [anon_sym__Atomic] = ACTIONS(6491), - [anon_sym__Noreturn] = ACTIONS(6491), - [anon_sym_noreturn] = ACTIONS(6491), - [anon_sym__Nonnull] = ACTIONS(6491), - [anon_sym_mutable] = ACTIONS(6491), - [anon_sym_constinit] = ACTIONS(6491), - [anon_sym_consteval] = ACTIONS(6491), - [anon_sym_alignas] = ACTIONS(7035), - [anon_sym__Alignas] = ACTIONS(7035), - [sym_primitive_type] = ACTIONS(6824), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_STAR_EQ] = ACTIONS(6812), - [anon_sym_SLASH_EQ] = ACTIONS(6812), - [anon_sym_PERCENT_EQ] = ACTIONS(6812), - [anon_sym_PLUS_EQ] = ACTIONS(6812), - [anon_sym_DASH_EQ] = ACTIONS(6812), - [anon_sym_LT_LT_EQ] = ACTIONS(6812), - [anon_sym_GT_GT_EQ] = ACTIONS(6812), - [anon_sym_AMP_EQ] = ACTIONS(6812), - [anon_sym_CARET_EQ] = ACTIONS(6812), - [anon_sym_PIPE_EQ] = ACTIONS(6812), - [anon_sym_and_eq] = ACTIONS(6814), - [anon_sym_or_eq] = ACTIONS(6814), - [anon_sym_xor_eq] = ACTIONS(6814), - [anon_sym_LT_EQ_GT] = ACTIONS(6812), - [anon_sym_or] = ACTIONS(6814), - [anon_sym_and] = ACTIONS(6814), - [anon_sym_bitor] = ACTIONS(6814), - [anon_sym_xor] = ACTIONS(6814), - [anon_sym_bitand] = ACTIONS(6814), - [anon_sym_not_eq] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6814), - [anon_sym_DOT_STAR] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6812), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6812), - }, - [STATE(2025)] = { - [sym_template_argument_list] = STATE(1956), - [sym_identifier] = ACTIONS(6746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6758), - [anon_sym_COMMA] = ACTIONS(6758), - [anon_sym_RPAREN] = ACTIONS(6758), - [anon_sym_LPAREN2] = ACTIONS(6748), - [anon_sym_TILDE] = ACTIONS(6751), - [anon_sym_DASH] = ACTIONS(6753), - [anon_sym_PLUS] = ACTIONS(6753), - [anon_sym_STAR] = ACTIONS(6748), - [anon_sym_SLASH] = ACTIONS(6753), - [anon_sym_PERCENT] = ACTIONS(6758), - [anon_sym_PIPE_PIPE] = ACTIONS(6758), - [anon_sym_AMP_AMP] = ACTIONS(6748), - [anon_sym_PIPE] = ACTIONS(6753), - [anon_sym_CARET] = ACTIONS(6758), - [anon_sym_AMP] = ACTIONS(6755), - [anon_sym_EQ_EQ] = ACTIONS(6758), - [anon_sym_BANG_EQ] = ACTIONS(6758), - [anon_sym_GT] = ACTIONS(6753), - [anon_sym_GT_EQ] = ACTIONS(6758), - [anon_sym_LT_EQ] = ACTIONS(6753), - [anon_sym_LT] = ACTIONS(7037), - [anon_sym_LT_LT] = ACTIONS(6758), - [anon_sym_GT_GT] = ACTIONS(6758), - [anon_sym_SEMI] = ACTIONS(6758), - [anon_sym___extension__] = ACTIONS(6746), - [anon_sym_virtual] = ACTIONS(6746), - [anon_sym_extern] = ACTIONS(6746), - [anon_sym___attribute__] = ACTIONS(6746), - [anon_sym___attribute] = ACTIONS(6746), - [anon_sym_COLON_COLON] = ACTIONS(6748), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6751), - [anon_sym___declspec] = ACTIONS(6746), - [anon_sym___based] = ACTIONS(6746), - [anon_sym___cdecl] = ACTIONS(6746), - [anon_sym___clrcall] = ACTIONS(6746), - [anon_sym___stdcall] = ACTIONS(6746), - [anon_sym___fastcall] = ACTIONS(6746), - [anon_sym___thiscall] = ACTIONS(6746), - [anon_sym___vectorcall] = ACTIONS(6746), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_RBRACE] = ACTIONS(6758), - [anon_sym_LBRACK] = ACTIONS(6755), - [anon_sym_static] = ACTIONS(6746), - [anon_sym_register] = ACTIONS(6746), - [anon_sym_inline] = ACTIONS(6746), - [anon_sym___inline] = ACTIONS(6746), - [anon_sym___inline__] = ACTIONS(6746), - [anon_sym___forceinline] = ACTIONS(6746), - [anon_sym_thread_local] = ACTIONS(6746), - [anon_sym___thread] = ACTIONS(6746), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6746), - [anon_sym_volatile] = ACTIONS(6746), - [anon_sym_restrict] = ACTIONS(6746), - [anon_sym___restrict__] = ACTIONS(6746), - [anon_sym__Atomic] = ACTIONS(6746), - [anon_sym__Noreturn] = ACTIONS(6746), - [anon_sym_noreturn] = ACTIONS(6746), - [anon_sym__Nonnull] = ACTIONS(6746), - [anon_sym_mutable] = ACTIONS(6746), - [anon_sym_constinit] = ACTIONS(6746), - [anon_sym_consteval] = ACTIONS(6746), - [anon_sym_alignas] = ACTIONS(6746), - [anon_sym__Alignas] = ACTIONS(6746), - [anon_sym_QMARK] = ACTIONS(6758), - [anon_sym_LT_EQ_GT] = ACTIONS(6758), - [anon_sym_or] = ACTIONS(6753), - [anon_sym_and] = ACTIONS(6753), - [anon_sym_bitor] = ACTIONS(6753), - [anon_sym_xor] = ACTIONS(6753), - [anon_sym_bitand] = ACTIONS(6753), - [anon_sym_not_eq] = ACTIONS(6753), - [anon_sym_DASH_DASH] = ACTIONS(6758), - [anon_sym_PLUS_PLUS] = ACTIONS(6758), - [anon_sym_DOT] = ACTIONS(6753), - [anon_sym_DOT_STAR] = ACTIONS(6758), - [anon_sym_DASH_GT] = ACTIONS(6758), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(6746), - [anon_sym_template] = ACTIONS(6746), - [anon_sym_operator] = ACTIONS(6746), - [anon_sym_LBRACK_COLON] = ACTIONS(6751), - }, - [STATE(2026)] = { - [sym_identifier] = ACTIONS(6746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), - [anon_sym_COMMA] = ACTIONS(6751), - [anon_sym_RPAREN] = ACTIONS(6751), - [aux_sym_preproc_if_token2] = ACTIONS(6751), - [aux_sym_preproc_else_token1] = ACTIONS(6751), - [aux_sym_preproc_elif_token1] = ACTIONS(6746), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6751), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6751), - [anon_sym_LPAREN2] = ACTIONS(6751), - [anon_sym_DASH] = ACTIONS(6746), - [anon_sym_PLUS] = ACTIONS(6746), - [anon_sym_STAR] = ACTIONS(6746), - [anon_sym_SLASH] = ACTIONS(6746), - [anon_sym_PERCENT] = ACTIONS(6746), - [anon_sym_PIPE_PIPE] = ACTIONS(6751), - [anon_sym_AMP_AMP] = ACTIONS(6751), - [anon_sym_PIPE] = ACTIONS(6746), - [anon_sym_CARET] = ACTIONS(6746), - [anon_sym_AMP] = ACTIONS(6746), - [anon_sym_EQ_EQ] = ACTIONS(6751), - [anon_sym_BANG_EQ] = ACTIONS(6751), - [anon_sym_GT] = ACTIONS(6746), - [anon_sym_GT_EQ] = ACTIONS(6751), - [anon_sym_LT_EQ] = ACTIONS(6746), - [anon_sym_LT] = ACTIONS(6746), - [anon_sym_LT_LT] = ACTIONS(6746), - [anon_sym_GT_GT] = ACTIONS(6746), - [anon_sym_SEMI] = ACTIONS(6751), - [anon_sym___extension__] = ACTIONS(6746), - [anon_sym___attribute__] = ACTIONS(6746), - [anon_sym___attribute] = ACTIONS(6746), - [anon_sym_COLON] = ACTIONS(6746), - [anon_sym_COLON_COLON] = ACTIONS(6751), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6751), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_RBRACE] = ACTIONS(6751), - [anon_sym_LBRACK] = ACTIONS(6751), - [anon_sym_EQ] = ACTIONS(6746), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6746), - [anon_sym_volatile] = ACTIONS(6746), - [anon_sym_restrict] = ACTIONS(6746), - [anon_sym___restrict__] = ACTIONS(6746), - [anon_sym__Atomic] = ACTIONS(6746), - [anon_sym__Noreturn] = ACTIONS(6746), - [anon_sym_noreturn] = ACTIONS(6746), - [anon_sym__Nonnull] = ACTIONS(6746), - [anon_sym_mutable] = ACTIONS(6746), - [anon_sym_constinit] = ACTIONS(6746), - [anon_sym_consteval] = ACTIONS(6746), - [anon_sym_alignas] = ACTIONS(6746), - [anon_sym__Alignas] = ACTIONS(6746), - [anon_sym_QMARK] = ACTIONS(6751), - [anon_sym_STAR_EQ] = ACTIONS(6751), - [anon_sym_SLASH_EQ] = ACTIONS(6751), - [anon_sym_PERCENT_EQ] = ACTIONS(6751), - [anon_sym_PLUS_EQ] = ACTIONS(6751), - [anon_sym_DASH_EQ] = ACTIONS(6751), - [anon_sym_LT_LT_EQ] = ACTIONS(6751), - [anon_sym_GT_GT_EQ] = ACTIONS(6751), - [anon_sym_AMP_EQ] = ACTIONS(6751), - [anon_sym_CARET_EQ] = ACTIONS(6751), - [anon_sym_PIPE_EQ] = ACTIONS(6751), - [anon_sym_and_eq] = ACTIONS(6746), - [anon_sym_or_eq] = ACTIONS(6746), - [anon_sym_xor_eq] = ACTIONS(6746), - [anon_sym_LT_EQ_GT] = ACTIONS(6751), - [anon_sym_or] = ACTIONS(6746), - [anon_sym_and] = ACTIONS(6746), - [anon_sym_bitor] = ACTIONS(6746), - [anon_sym_xor] = ACTIONS(6746), - [anon_sym_bitand] = ACTIONS(6746), - [anon_sym_not_eq] = ACTIONS(6746), - [anon_sym_DASH_DASH] = ACTIONS(6751), - [anon_sym_PLUS_PLUS] = ACTIONS(6751), - [anon_sym_DOT] = ACTIONS(6746), - [anon_sym_DOT_STAR] = ACTIONS(6751), - [anon_sym_DASH_GT] = ACTIONS(6751), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6746), - [anon_sym_override] = ACTIONS(6746), - [anon_sym_requires] = ACTIONS(6746), - [anon_sym_COLON_RBRACK] = ACTIONS(6751), - }, - [STATE(2027)] = { - [sym_type_qualifier] = STATE(1913), - [sym_alignas_qualifier] = STATE(1953), - [aux_sym__type_definition_type_repeat1] = STATE(1913), - [aux_sym_sized_type_specifier_repeat1] = STATE(2175), - [sym_identifier] = ACTIONS(6882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), - [anon_sym_COMMA] = ACTIONS(6884), - [anon_sym_RPAREN] = ACTIONS(6884), - [anon_sym_LPAREN2] = ACTIONS(6884), - [anon_sym_DASH] = ACTIONS(6886), - [anon_sym_PLUS] = ACTIONS(6886), - [anon_sym_STAR] = ACTIONS(6886), - [anon_sym_SLASH] = ACTIONS(6886), - [anon_sym_PERCENT] = ACTIONS(6886), - [anon_sym_PIPE_PIPE] = ACTIONS(6884), - [anon_sym_AMP_AMP] = ACTIONS(6884), - [anon_sym_PIPE] = ACTIONS(6886), - [anon_sym_CARET] = ACTIONS(6886), - [anon_sym_AMP] = ACTIONS(6886), - [anon_sym_EQ_EQ] = ACTIONS(6884), - [anon_sym_BANG_EQ] = ACTIONS(6884), - [anon_sym_GT] = ACTIONS(6886), - [anon_sym_GT_EQ] = ACTIONS(6884), - [anon_sym_LT_EQ] = ACTIONS(6886), - [anon_sym_LT] = ACTIONS(6886), - [anon_sym_LT_LT] = ACTIONS(6886), - [anon_sym_GT_GT] = ACTIONS(6886), - [anon_sym_SEMI] = ACTIONS(6884), - [anon_sym___extension__] = ACTIONS(6491), - [anon_sym___attribute__] = ACTIONS(6886), - [anon_sym___attribute] = ACTIONS(6886), - [anon_sym_COLON] = ACTIONS(6886), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6884), - [anon_sym_LBRACE] = ACTIONS(6884), - [anon_sym_RBRACE] = ACTIONS(6884), - [anon_sym_signed] = ACTIONS(6891), - [anon_sym_unsigned] = ACTIONS(6891), - [anon_sym_long] = ACTIONS(6891), - [anon_sym_short] = ACTIONS(6891), - [anon_sym_LBRACK] = ACTIONS(6884), - [anon_sym_EQ] = ACTIONS(6886), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6491), - [anon_sym_volatile] = ACTIONS(6491), - [anon_sym_restrict] = ACTIONS(6491), - [anon_sym___restrict__] = ACTIONS(6491), - [anon_sym__Atomic] = ACTIONS(6491), - [anon_sym__Noreturn] = ACTIONS(6491), - [anon_sym_noreturn] = ACTIONS(6491), - [anon_sym__Nonnull] = ACTIONS(6491), - [anon_sym_mutable] = ACTIONS(6491), - [anon_sym_constinit] = ACTIONS(6491), - [anon_sym_consteval] = ACTIONS(6491), - [anon_sym_alignas] = ACTIONS(7035), - [anon_sym__Alignas] = ACTIONS(7035), - [sym_primitive_type] = ACTIONS(6896), - [anon_sym_QMARK] = ACTIONS(6884), - [anon_sym_STAR_EQ] = ACTIONS(6884), - [anon_sym_SLASH_EQ] = ACTIONS(6884), - [anon_sym_PERCENT_EQ] = ACTIONS(6884), - [anon_sym_PLUS_EQ] = ACTIONS(6884), - [anon_sym_DASH_EQ] = ACTIONS(6884), - [anon_sym_LT_LT_EQ] = ACTIONS(6884), - [anon_sym_GT_GT_EQ] = ACTIONS(6884), - [anon_sym_AMP_EQ] = ACTIONS(6884), - [anon_sym_CARET_EQ] = ACTIONS(6884), - [anon_sym_PIPE_EQ] = ACTIONS(6884), - [anon_sym_and_eq] = ACTIONS(6886), - [anon_sym_or_eq] = ACTIONS(6886), - [anon_sym_xor_eq] = ACTIONS(6886), - [anon_sym_LT_EQ_GT] = ACTIONS(6884), - [anon_sym_or] = ACTIONS(6886), - [anon_sym_and] = ACTIONS(6886), - [anon_sym_bitor] = ACTIONS(6886), - [anon_sym_xor] = ACTIONS(6886), - [anon_sym_bitand] = ACTIONS(6886), - [anon_sym_not_eq] = ACTIONS(6886), - [anon_sym_DASH_DASH] = ACTIONS(6884), - [anon_sym_PLUS_PLUS] = ACTIONS(6884), - [anon_sym_DOT] = ACTIONS(6886), - [anon_sym_DOT_STAR] = ACTIONS(6884), - [anon_sym_DASH_GT] = ACTIONS(6884), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6884), - }, - [STATE(2028)] = { - [sym_function_definition] = STATE(3187), - [sym_declaration] = STATE(3187), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6283), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_call_modifier] = STATE(2621), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(11334), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(5610), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(5611), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(5898), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(7039), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_virtual] = ACTIONS(2310), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym___cdecl] = ACTIONS(6471), + [anon_sym___clrcall] = ACTIONS(6471), + [anon_sym___stdcall] = ACTIONS(6471), + [anon_sym___fastcall] = ACTIONS(6471), + [anon_sym___thiscall] = ACTIONS(6471), + [anon_sym___vectorcall] = ACTIONS(6471), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6473), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -304493,242 +309215,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7041), - [anon_sym_struct] = ACTIONS(7043), - [anon_sym_union] = ACTIONS(7045), - [anon_sym_typename] = ACTIONS(5102), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5629), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(2029)] = { - [sym_identifier] = ACTIONS(6226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6228), - [anon_sym_COMMA] = ACTIONS(6228), - [anon_sym_RPAREN] = ACTIONS(6228), - [anon_sym_LPAREN2] = ACTIONS(6230), - [anon_sym_TILDE] = ACTIONS(6233), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6230), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_PERCENT] = ACTIONS(6228), - [anon_sym_PIPE_PIPE] = ACTIONS(6228), - [anon_sym_AMP_AMP] = ACTIONS(6230), - [anon_sym_PIPE] = ACTIONS(6235), - [anon_sym_CARET] = ACTIONS(6228), - [anon_sym_AMP] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6228), - [anon_sym_BANG_EQ] = ACTIONS(6228), - [anon_sym_GT] = ACTIONS(6235), - [anon_sym_GT_EQ] = ACTIONS(6228), - [anon_sym_LT_EQ] = ACTIONS(6235), - [anon_sym_LT] = ACTIONS(6235), - [anon_sym_LT_LT] = ACTIONS(6228), - [anon_sym_GT_GT] = ACTIONS(6228), - [anon_sym_SEMI] = ACTIONS(6228), - [anon_sym___extension__] = ACTIONS(6226), - [anon_sym_virtual] = ACTIONS(6226), - [anon_sym_extern] = ACTIONS(6226), - [anon_sym___attribute__] = ACTIONS(6226), - [anon_sym___attribute] = ACTIONS(6226), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6233), - [anon_sym___declspec] = ACTIONS(6226), - [anon_sym___based] = ACTIONS(6226), - [anon_sym___cdecl] = ACTIONS(6226), - [anon_sym___clrcall] = ACTIONS(6226), - [anon_sym___stdcall] = ACTIONS(6226), - [anon_sym___fastcall] = ACTIONS(6226), - [anon_sym___thiscall] = ACTIONS(6226), - [anon_sym___vectorcall] = ACTIONS(6226), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_RBRACE] = ACTIONS(6228), - [anon_sym_LBRACK] = ACTIONS(6237), - [anon_sym_static] = ACTIONS(6226), - [anon_sym_register] = ACTIONS(6226), - [anon_sym_inline] = ACTIONS(6226), - [anon_sym___inline] = ACTIONS(6226), - [anon_sym___inline__] = ACTIONS(6226), - [anon_sym___forceinline] = ACTIONS(6226), - [anon_sym_thread_local] = ACTIONS(6226), - [anon_sym___thread] = ACTIONS(6226), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6226), - [anon_sym_volatile] = ACTIONS(6226), - [anon_sym_restrict] = ACTIONS(6226), - [anon_sym___restrict__] = ACTIONS(6226), - [anon_sym__Atomic] = ACTIONS(6226), - [anon_sym__Noreturn] = ACTIONS(6226), - [anon_sym_noreturn] = ACTIONS(6226), - [anon_sym__Nonnull] = ACTIONS(6226), - [anon_sym_mutable] = ACTIONS(6226), - [anon_sym_constinit] = ACTIONS(6226), - [anon_sym_consteval] = ACTIONS(6226), - [anon_sym_alignas] = ACTIONS(6226), - [anon_sym__Alignas] = ACTIONS(6226), - [anon_sym_QMARK] = ACTIONS(6228), - [anon_sym_LT_EQ_GT] = ACTIONS(6228), - [anon_sym_or] = ACTIONS(6235), - [anon_sym_and] = ACTIONS(6235), - [anon_sym_bitor] = ACTIONS(6235), - [anon_sym_xor] = ACTIONS(6235), - [anon_sym_bitand] = ACTIONS(6235), - [anon_sym_not_eq] = ACTIONS(6235), - [anon_sym_DASH_DASH] = ACTIONS(6228), - [anon_sym_PLUS_PLUS] = ACTIONS(6228), - [anon_sym_DOT] = ACTIONS(6235), - [anon_sym_DOT_STAR] = ACTIONS(6228), - [anon_sym_DASH_GT] = ACTIONS(6228), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6226), - [anon_sym_decltype] = ACTIONS(6226), - [anon_sym_template] = ACTIONS(6226), - [anon_sym_operator] = ACTIONS(6226), - [anon_sym_LBRACK_COLON] = ACTIONS(6233), - }, - [STATE(2030)] = { - [sym_identifier] = ACTIONS(6762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6764), - [anon_sym_COMMA] = ACTIONS(6764), - [anon_sym_RPAREN] = ACTIONS(6764), - [aux_sym_preproc_if_token2] = ACTIONS(6764), - [aux_sym_preproc_else_token1] = ACTIONS(6764), - [aux_sym_preproc_elif_token1] = ACTIONS(6762), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6764), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6764), - [anon_sym_LPAREN2] = ACTIONS(6764), - [anon_sym_DASH] = ACTIONS(6762), - [anon_sym_PLUS] = ACTIONS(6762), - [anon_sym_STAR] = ACTIONS(6762), - [anon_sym_SLASH] = ACTIONS(6762), - [anon_sym_PERCENT] = ACTIONS(6762), - [anon_sym_PIPE_PIPE] = ACTIONS(6764), - [anon_sym_AMP_AMP] = ACTIONS(6764), - [anon_sym_PIPE] = ACTIONS(6762), - [anon_sym_CARET] = ACTIONS(6762), - [anon_sym_AMP] = ACTIONS(6762), - [anon_sym_EQ_EQ] = ACTIONS(6764), - [anon_sym_BANG_EQ] = ACTIONS(6764), - [anon_sym_GT] = ACTIONS(6762), - [anon_sym_GT_EQ] = ACTIONS(6764), - [anon_sym_LT_EQ] = ACTIONS(6762), - [anon_sym_LT] = ACTIONS(6762), - [anon_sym_LT_LT] = ACTIONS(6762), - [anon_sym_GT_GT] = ACTIONS(6762), - [anon_sym_SEMI] = ACTIONS(6764), - [anon_sym___extension__] = ACTIONS(6762), - [anon_sym___attribute__] = ACTIONS(6762), - [anon_sym___attribute] = ACTIONS(6762), - [anon_sym_COLON] = ACTIONS(6762), - [anon_sym_COLON_COLON] = ACTIONS(6764), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6764), - [anon_sym_LBRACE] = ACTIONS(6764), - [anon_sym_RBRACE] = ACTIONS(6764), - [anon_sym_LBRACK] = ACTIONS(6764), - [anon_sym_EQ] = ACTIONS(6762), - [anon_sym_const] = ACTIONS(6762), - [anon_sym_constexpr] = ACTIONS(6762), - [anon_sym_volatile] = ACTIONS(6762), - [anon_sym_restrict] = ACTIONS(6762), - [anon_sym___restrict__] = ACTIONS(6762), - [anon_sym__Atomic] = ACTIONS(6762), - [anon_sym__Noreturn] = ACTIONS(6762), - [anon_sym_noreturn] = ACTIONS(6762), - [anon_sym__Nonnull] = ACTIONS(6762), - [anon_sym_mutable] = ACTIONS(6762), - [anon_sym_constinit] = ACTIONS(6762), - [anon_sym_consteval] = ACTIONS(6762), - [anon_sym_alignas] = ACTIONS(6762), - [anon_sym__Alignas] = ACTIONS(6762), - [anon_sym_QMARK] = ACTIONS(6764), - [anon_sym_STAR_EQ] = ACTIONS(6764), - [anon_sym_SLASH_EQ] = ACTIONS(6764), - [anon_sym_PERCENT_EQ] = ACTIONS(6764), - [anon_sym_PLUS_EQ] = ACTIONS(6764), - [anon_sym_DASH_EQ] = ACTIONS(6764), - [anon_sym_LT_LT_EQ] = ACTIONS(6764), - [anon_sym_GT_GT_EQ] = ACTIONS(6764), - [anon_sym_AMP_EQ] = ACTIONS(6764), - [anon_sym_CARET_EQ] = ACTIONS(6764), - [anon_sym_PIPE_EQ] = ACTIONS(6764), - [anon_sym_and_eq] = ACTIONS(6762), - [anon_sym_or_eq] = ACTIONS(6762), - [anon_sym_xor_eq] = ACTIONS(6762), - [anon_sym_LT_EQ_GT] = ACTIONS(6764), - [anon_sym_or] = ACTIONS(6762), - [anon_sym_and] = ACTIONS(6762), - [anon_sym_bitor] = ACTIONS(6762), - [anon_sym_xor] = ACTIONS(6762), - [anon_sym_bitand] = ACTIONS(6762), - [anon_sym_not_eq] = ACTIONS(6762), - [anon_sym_DASH_DASH] = ACTIONS(6764), - [anon_sym_PLUS_PLUS] = ACTIONS(6764), - [anon_sym_DOT] = ACTIONS(6762), - [anon_sym_DOT_STAR] = ACTIONS(6764), - [anon_sym_DASH_GT] = ACTIONS(6764), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6762), - [anon_sym_override] = ACTIONS(6762), - [anon_sym_requires] = ACTIONS(6762), - [anon_sym_COLON_RBRACK] = ACTIONS(6764), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_this] = ACTIONS(5631), }, - [STATE(2031)] = { - [sym_function_definition] = STATE(3276), - [sym_declaration] = STATE(3276), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6283), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_call_modifier] = STATE(2621), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10724), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(5610), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(5611), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(5898), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(7039), + [STATE(1955)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_ms_call_modifier] = STATE(8825), + [sym__abstract_declarator] = STATE(9305), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_abstract_function_declarator] = STATE(8596), + [sym_abstract_array_declarator] = STATE(8596), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_list] = STATE(4706), + [sym_parameter_declaration] = STATE(9791), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_explicit_object_parameter_declaration] = STATE(9791), + [sym_optional_parameter_declaration] = STATE(9791), + [sym_variadic_parameter_declaration] = STATE(9791), + [sym_abstract_reference_declarator] = STATE(8596), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), + [anon_sym_RPAREN] = ACTIONS(5615), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_STAR] = ACTIONS(6463), + [anon_sym_AMP_AMP] = ACTIONS(6465), + [anon_sym_AMP] = ACTIONS(6467), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_virtual] = ACTIONS(2310), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym___cdecl] = ACTIONS(6471), + [anon_sym___clrcall] = ACTIONS(6471), + [anon_sym___stdcall] = ACTIONS(6471), + [anon_sym___fastcall] = ACTIONS(6471), + [anon_sym___thiscall] = ACTIONS(6471), + [anon_sym___vectorcall] = ACTIONS(6471), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6473), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -304751,500 +309318,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7047), - [anon_sym_struct] = ACTIONS(7049), - [anon_sym_union] = ACTIONS(7051), - [anon_sym_typename] = ACTIONS(5102), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5629), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_this] = ACTIONS(5631), }, - [STATE(2032)] = { - [sym_attribute_specifier] = STATE(2281), - [sym_attribute_declaration] = STATE(4480), - [sym_type_qualifier] = STATE(2223), - [sym_alignas_qualifier] = STATE(2372), - [aux_sym_type_definition_repeat1] = STATE(2281), - [aux_sym__type_definition_type_repeat1] = STATE(2223), - [aux_sym_attributed_declarator_repeat1] = STATE(4480), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), - [anon_sym_COMMA] = ACTIONS(6390), - [anon_sym_LPAREN2] = ACTIONS(6390), - [anon_sym_DASH] = ACTIONS(6388), - [anon_sym_PLUS] = ACTIONS(6388), - [anon_sym_STAR] = ACTIONS(6388), - [anon_sym_SLASH] = ACTIONS(6388), - [anon_sym_PERCENT] = ACTIONS(6388), - [anon_sym_PIPE_PIPE] = ACTIONS(6390), - [anon_sym_AMP_AMP] = ACTIONS(6390), - [anon_sym_PIPE] = ACTIONS(6388), - [anon_sym_CARET] = ACTIONS(6388), - [anon_sym_AMP] = ACTIONS(6388), - [anon_sym_EQ_EQ] = ACTIONS(6390), - [anon_sym_BANG_EQ] = ACTIONS(6390), - [anon_sym_GT] = ACTIONS(6388), - [anon_sym_GT_EQ] = ACTIONS(6388), - [anon_sym_LT_EQ] = ACTIONS(6388), - [anon_sym_LT] = ACTIONS(6388), - [anon_sym_LT_LT] = ACTIONS(6388), - [anon_sym_GT_GT] = ACTIONS(6388), - [anon_sym___extension__] = ACTIONS(6359), - [anon_sym___attribute__] = ACTIONS(6390), - [anon_sym___attribute] = ACTIONS(6388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), - [anon_sym_LBRACK] = ACTIONS(6388), - [anon_sym_EQ] = ACTIONS(6388), - [anon_sym_const] = ACTIONS(6367), - [anon_sym_constexpr] = ACTIONS(6359), - [anon_sym_volatile] = ACTIONS(6359), - [anon_sym_restrict] = ACTIONS(6359), - [anon_sym___restrict__] = ACTIONS(6359), - [anon_sym__Atomic] = ACTIONS(6359), - [anon_sym__Noreturn] = ACTIONS(6359), - [anon_sym_noreturn] = ACTIONS(6359), - [anon_sym__Nonnull] = ACTIONS(6359), - [anon_sym_mutable] = ACTIONS(6359), - [anon_sym_constinit] = ACTIONS(6359), - [anon_sym_consteval] = ACTIONS(6359), - [anon_sym_alignas] = ACTIONS(6369), - [anon_sym__Alignas] = ACTIONS(6369), - [anon_sym_QMARK] = ACTIONS(6390), - [anon_sym_STAR_EQ] = ACTIONS(6390), - [anon_sym_SLASH_EQ] = ACTIONS(6390), - [anon_sym_PERCENT_EQ] = ACTIONS(6390), - [anon_sym_PLUS_EQ] = ACTIONS(6390), - [anon_sym_DASH_EQ] = ACTIONS(6390), - [anon_sym_LT_LT_EQ] = ACTIONS(6390), - [anon_sym_GT_GT_EQ] = ACTIONS(6388), - [anon_sym_AMP_EQ] = ACTIONS(6390), - [anon_sym_CARET_EQ] = ACTIONS(6390), - [anon_sym_PIPE_EQ] = ACTIONS(6390), - [anon_sym_and_eq] = ACTIONS(6390), - [anon_sym_or_eq] = ACTIONS(6390), - [anon_sym_xor_eq] = ACTIONS(6390), - [anon_sym_LT_EQ_GT] = ACTIONS(6390), - [anon_sym_or] = ACTIONS(6388), - [anon_sym_and] = ACTIONS(6388), - [anon_sym_bitor] = ACTIONS(6390), - [anon_sym_xor] = ACTIONS(6388), - [anon_sym_bitand] = ACTIONS(6390), - [anon_sym_not_eq] = ACTIONS(6390), - [anon_sym_DASH_DASH] = ACTIONS(6390), - [anon_sym_PLUS_PLUS] = ACTIONS(6390), - [anon_sym_asm] = ACTIONS(6390), - [anon_sym___asm__] = ACTIONS(6390), - [anon_sym___asm] = ACTIONS(6388), - [anon_sym_DOT] = ACTIONS(6388), - [anon_sym_DOT_STAR] = ACTIONS(6390), - [anon_sym_DASH_GT] = ACTIONS(6390), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6390), - [anon_sym_override] = ACTIONS(6390), - [anon_sym_GT2] = ACTIONS(6390), - [anon_sym_noexcept] = ACTIONS(6390), - [anon_sym_throw] = ACTIONS(6390), - [anon_sym_requires] = ACTIONS(6390), - }, - [STATE(2033)] = { - [sym_attribute_specifier] = STATE(2091), - [sym_identifier] = ACTIONS(7053), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7055), - [anon_sym_COMMA] = ACTIONS(7055), - [anon_sym_RPAREN] = ACTIONS(7055), - [aux_sym_preproc_if_token2] = ACTIONS(7055), - [aux_sym_preproc_else_token1] = ACTIONS(7055), - [aux_sym_preproc_elif_token1] = ACTIONS(7053), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7055), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7055), - [anon_sym_LPAREN2] = ACTIONS(7055), - [anon_sym_DASH] = ACTIONS(7053), - [anon_sym_PLUS] = ACTIONS(7053), - [anon_sym_STAR] = ACTIONS(7053), - [anon_sym_SLASH] = ACTIONS(7053), - [anon_sym_PERCENT] = ACTIONS(7053), - [anon_sym_PIPE_PIPE] = ACTIONS(7055), - [anon_sym_AMP_AMP] = ACTIONS(7055), - [anon_sym_PIPE] = ACTIONS(7053), - [anon_sym_CARET] = ACTIONS(7053), - [anon_sym_AMP] = ACTIONS(7053), - [anon_sym_EQ_EQ] = ACTIONS(7055), - [anon_sym_BANG_EQ] = ACTIONS(7055), - [anon_sym_GT] = ACTIONS(7053), - [anon_sym_GT_EQ] = ACTIONS(7055), - [anon_sym_LT_EQ] = ACTIONS(7053), - [anon_sym_LT] = ACTIONS(7053), - [anon_sym_LT_LT] = ACTIONS(7053), - [anon_sym_GT_GT] = ACTIONS(7053), - [anon_sym_SEMI] = ACTIONS(7055), - [anon_sym___extension__] = ACTIONS(7053), - [anon_sym___attribute__] = ACTIONS(6830), - [anon_sym___attribute] = ACTIONS(6830), - [anon_sym_COLON] = ACTIONS(7053), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7055), - [anon_sym_LBRACE] = ACTIONS(7055), - [anon_sym_RBRACE] = ACTIONS(7055), - [anon_sym_LBRACK] = ACTIONS(7055), - [anon_sym_EQ] = ACTIONS(7053), - [anon_sym_const] = ACTIONS(7053), - [anon_sym_constexpr] = ACTIONS(7053), - [anon_sym_volatile] = ACTIONS(7053), - [anon_sym_restrict] = ACTIONS(7053), - [anon_sym___restrict__] = ACTIONS(7053), - [anon_sym__Atomic] = ACTIONS(7053), - [anon_sym__Noreturn] = ACTIONS(7053), - [anon_sym_noreturn] = ACTIONS(7053), - [anon_sym__Nonnull] = ACTIONS(7053), - [anon_sym_mutable] = ACTIONS(7053), - [anon_sym_constinit] = ACTIONS(7053), - [anon_sym_consteval] = ACTIONS(7053), - [anon_sym_alignas] = ACTIONS(7053), - [anon_sym__Alignas] = ACTIONS(7053), - [anon_sym_QMARK] = ACTIONS(7055), - [anon_sym_STAR_EQ] = ACTIONS(7055), - [anon_sym_SLASH_EQ] = ACTIONS(7055), - [anon_sym_PERCENT_EQ] = ACTIONS(7055), - [anon_sym_PLUS_EQ] = ACTIONS(7055), - [anon_sym_DASH_EQ] = ACTIONS(7055), - [anon_sym_LT_LT_EQ] = ACTIONS(7055), - [anon_sym_GT_GT_EQ] = ACTIONS(7055), - [anon_sym_AMP_EQ] = ACTIONS(7055), - [anon_sym_CARET_EQ] = ACTIONS(7055), - [anon_sym_PIPE_EQ] = ACTIONS(7055), - [anon_sym_and_eq] = ACTIONS(7053), - [anon_sym_or_eq] = ACTIONS(7053), - [anon_sym_xor_eq] = ACTIONS(7053), - [anon_sym_LT_EQ_GT] = ACTIONS(7055), - [anon_sym_or] = ACTIONS(7053), - [anon_sym_and] = ACTIONS(7053), - [anon_sym_bitor] = ACTIONS(7053), - [anon_sym_xor] = ACTIONS(7053), - [anon_sym_bitand] = ACTIONS(7053), - [anon_sym_not_eq] = ACTIONS(7053), - [anon_sym_DASH_DASH] = ACTIONS(7055), - [anon_sym_PLUS_PLUS] = ACTIONS(7055), - [anon_sym_DOT] = ACTIONS(7053), - [anon_sym_DOT_STAR] = ACTIONS(7055), - [anon_sym_DASH_GT] = ACTIONS(7055), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7053), - [anon_sym_override] = ACTIONS(7053), - [anon_sym_requires] = ACTIONS(7053), - [anon_sym_COLON_RBRACK] = ACTIONS(7055), - }, - [STATE(2034)] = { - [sym_attribute_specifier] = STATE(2094), - [sym_identifier] = ACTIONS(7057), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), - [anon_sym_COMMA] = ACTIONS(7059), - [anon_sym_RPAREN] = ACTIONS(7059), - [aux_sym_preproc_if_token2] = ACTIONS(7059), - [aux_sym_preproc_else_token1] = ACTIONS(7059), - [aux_sym_preproc_elif_token1] = ACTIONS(7057), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7059), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7059), - [anon_sym_LPAREN2] = ACTIONS(7059), - [anon_sym_DASH] = ACTIONS(7057), - [anon_sym_PLUS] = ACTIONS(7057), - [anon_sym_STAR] = ACTIONS(7057), - [anon_sym_SLASH] = ACTIONS(7057), - [anon_sym_PERCENT] = ACTIONS(7057), - [anon_sym_PIPE_PIPE] = ACTIONS(7059), - [anon_sym_AMP_AMP] = ACTIONS(7059), - [anon_sym_PIPE] = ACTIONS(7057), - [anon_sym_CARET] = ACTIONS(7057), - [anon_sym_AMP] = ACTIONS(7057), - [anon_sym_EQ_EQ] = ACTIONS(7059), - [anon_sym_BANG_EQ] = ACTIONS(7059), - [anon_sym_GT] = ACTIONS(7057), - [anon_sym_GT_EQ] = ACTIONS(7059), - [anon_sym_LT_EQ] = ACTIONS(7057), - [anon_sym_LT] = ACTIONS(7057), - [anon_sym_LT_LT] = ACTIONS(7057), - [anon_sym_GT_GT] = ACTIONS(7057), - [anon_sym_SEMI] = ACTIONS(7059), - [anon_sym___extension__] = ACTIONS(7057), - [anon_sym___attribute__] = ACTIONS(6830), - [anon_sym___attribute] = ACTIONS(6830), - [anon_sym_COLON] = ACTIONS(7057), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7059), - [anon_sym_LBRACE] = ACTIONS(7059), - [anon_sym_RBRACE] = ACTIONS(7059), - [anon_sym_LBRACK] = ACTIONS(7059), - [anon_sym_EQ] = ACTIONS(7057), - [anon_sym_const] = ACTIONS(7057), - [anon_sym_constexpr] = ACTIONS(7057), - [anon_sym_volatile] = ACTIONS(7057), - [anon_sym_restrict] = ACTIONS(7057), - [anon_sym___restrict__] = ACTIONS(7057), - [anon_sym__Atomic] = ACTIONS(7057), - [anon_sym__Noreturn] = ACTIONS(7057), - [anon_sym_noreturn] = ACTIONS(7057), - [anon_sym__Nonnull] = ACTIONS(7057), - [anon_sym_mutable] = ACTIONS(7057), - [anon_sym_constinit] = ACTIONS(7057), - [anon_sym_consteval] = ACTIONS(7057), - [anon_sym_alignas] = ACTIONS(7057), - [anon_sym__Alignas] = ACTIONS(7057), - [anon_sym_QMARK] = ACTIONS(7059), - [anon_sym_STAR_EQ] = ACTIONS(7059), - [anon_sym_SLASH_EQ] = ACTIONS(7059), - [anon_sym_PERCENT_EQ] = ACTIONS(7059), - [anon_sym_PLUS_EQ] = ACTIONS(7059), - [anon_sym_DASH_EQ] = ACTIONS(7059), - [anon_sym_LT_LT_EQ] = ACTIONS(7059), - [anon_sym_GT_GT_EQ] = ACTIONS(7059), - [anon_sym_AMP_EQ] = ACTIONS(7059), - [anon_sym_CARET_EQ] = ACTIONS(7059), - [anon_sym_PIPE_EQ] = ACTIONS(7059), - [anon_sym_and_eq] = ACTIONS(7057), - [anon_sym_or_eq] = ACTIONS(7057), - [anon_sym_xor_eq] = ACTIONS(7057), - [anon_sym_LT_EQ_GT] = ACTIONS(7059), - [anon_sym_or] = ACTIONS(7057), - [anon_sym_and] = ACTIONS(7057), - [anon_sym_bitor] = ACTIONS(7057), - [anon_sym_xor] = ACTIONS(7057), - [anon_sym_bitand] = ACTIONS(7057), - [anon_sym_not_eq] = ACTIONS(7057), - [anon_sym_DASH_DASH] = ACTIONS(7059), - [anon_sym_PLUS_PLUS] = ACTIONS(7059), - [anon_sym_DOT] = ACTIONS(7057), - [anon_sym_DOT_STAR] = ACTIONS(7059), - [anon_sym_DASH_GT] = ACTIONS(7059), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7057), - [anon_sym_override] = ACTIONS(7057), - [anon_sym_requires] = ACTIONS(7057), - [anon_sym_COLON_RBRACK] = ACTIONS(7059), - }, - [STATE(2035)] = { - [sym_attribute_specifier] = STATE(2100), - [sym_identifier] = ACTIONS(7061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7063), - [anon_sym_COMMA] = ACTIONS(7063), - [anon_sym_RPAREN] = ACTIONS(7063), - [aux_sym_preproc_if_token2] = ACTIONS(7063), - [aux_sym_preproc_else_token1] = ACTIONS(7063), - [aux_sym_preproc_elif_token1] = ACTIONS(7061), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7063), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7063), - [anon_sym_LPAREN2] = ACTIONS(7063), - [anon_sym_DASH] = ACTIONS(7061), - [anon_sym_PLUS] = ACTIONS(7061), - [anon_sym_STAR] = ACTIONS(7061), - [anon_sym_SLASH] = ACTIONS(7061), - [anon_sym_PERCENT] = ACTIONS(7061), - [anon_sym_PIPE_PIPE] = ACTIONS(7063), - [anon_sym_AMP_AMP] = ACTIONS(7063), - [anon_sym_PIPE] = ACTIONS(7061), - [anon_sym_CARET] = ACTIONS(7061), - [anon_sym_AMP] = ACTIONS(7061), - [anon_sym_EQ_EQ] = ACTIONS(7063), - [anon_sym_BANG_EQ] = ACTIONS(7063), - [anon_sym_GT] = ACTIONS(7061), - [anon_sym_GT_EQ] = ACTIONS(7063), - [anon_sym_LT_EQ] = ACTIONS(7061), - [anon_sym_LT] = ACTIONS(7061), - [anon_sym_LT_LT] = ACTIONS(7061), - [anon_sym_GT_GT] = ACTIONS(7061), - [anon_sym_SEMI] = ACTIONS(7063), - [anon_sym___extension__] = ACTIONS(7061), - [anon_sym___attribute__] = ACTIONS(6830), - [anon_sym___attribute] = ACTIONS(6830), - [anon_sym_COLON] = ACTIONS(7061), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7063), - [anon_sym_LBRACE] = ACTIONS(7063), - [anon_sym_RBRACE] = ACTIONS(7063), - [anon_sym_LBRACK] = ACTIONS(7063), - [anon_sym_EQ] = ACTIONS(7061), - [anon_sym_const] = ACTIONS(7061), - [anon_sym_constexpr] = ACTIONS(7061), - [anon_sym_volatile] = ACTIONS(7061), - [anon_sym_restrict] = ACTIONS(7061), - [anon_sym___restrict__] = ACTIONS(7061), - [anon_sym__Atomic] = ACTIONS(7061), - [anon_sym__Noreturn] = ACTIONS(7061), - [anon_sym_noreturn] = ACTIONS(7061), - [anon_sym__Nonnull] = ACTIONS(7061), - [anon_sym_mutable] = ACTIONS(7061), - [anon_sym_constinit] = ACTIONS(7061), - [anon_sym_consteval] = ACTIONS(7061), - [anon_sym_alignas] = ACTIONS(7061), - [anon_sym__Alignas] = ACTIONS(7061), - [anon_sym_QMARK] = ACTIONS(7063), - [anon_sym_STAR_EQ] = ACTIONS(7063), - [anon_sym_SLASH_EQ] = ACTIONS(7063), - [anon_sym_PERCENT_EQ] = ACTIONS(7063), - [anon_sym_PLUS_EQ] = ACTIONS(7063), - [anon_sym_DASH_EQ] = ACTIONS(7063), - [anon_sym_LT_LT_EQ] = ACTIONS(7063), - [anon_sym_GT_GT_EQ] = ACTIONS(7063), - [anon_sym_AMP_EQ] = ACTIONS(7063), - [anon_sym_CARET_EQ] = ACTIONS(7063), - [anon_sym_PIPE_EQ] = ACTIONS(7063), - [anon_sym_and_eq] = ACTIONS(7061), - [anon_sym_or_eq] = ACTIONS(7061), - [anon_sym_xor_eq] = ACTIONS(7061), - [anon_sym_LT_EQ_GT] = ACTIONS(7063), - [anon_sym_or] = ACTIONS(7061), - [anon_sym_and] = ACTIONS(7061), - [anon_sym_bitor] = ACTIONS(7061), - [anon_sym_xor] = ACTIONS(7061), - [anon_sym_bitand] = ACTIONS(7061), - [anon_sym_not_eq] = ACTIONS(7061), - [anon_sym_DASH_DASH] = ACTIONS(7063), - [anon_sym_PLUS_PLUS] = ACTIONS(7063), - [anon_sym_DOT] = ACTIONS(7061), - [anon_sym_DOT_STAR] = ACTIONS(7063), - [anon_sym_DASH_GT] = ACTIONS(7063), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7061), - [anon_sym_override] = ACTIONS(7061), - [anon_sym_requires] = ACTIONS(7061), - [anon_sym_COLON_RBRACK] = ACTIONS(7063), - }, - [STATE(2036)] = { - [sym_attribute_specifier] = STATE(2102), - [sym_identifier] = ACTIONS(7065), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7067), - [anon_sym_COMMA] = ACTIONS(7067), - [anon_sym_RPAREN] = ACTIONS(7067), - [aux_sym_preproc_if_token2] = ACTIONS(7067), - [aux_sym_preproc_else_token1] = ACTIONS(7067), - [aux_sym_preproc_elif_token1] = ACTIONS(7065), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7067), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7067), - [anon_sym_LPAREN2] = ACTIONS(7067), - [anon_sym_DASH] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7065), - [anon_sym_STAR] = ACTIONS(7065), - [anon_sym_SLASH] = ACTIONS(7065), - [anon_sym_PERCENT] = ACTIONS(7065), - [anon_sym_PIPE_PIPE] = ACTIONS(7067), - [anon_sym_AMP_AMP] = ACTIONS(7067), - [anon_sym_PIPE] = ACTIONS(7065), - [anon_sym_CARET] = ACTIONS(7065), - [anon_sym_AMP] = ACTIONS(7065), - [anon_sym_EQ_EQ] = ACTIONS(7067), - [anon_sym_BANG_EQ] = ACTIONS(7067), - [anon_sym_GT] = ACTIONS(7065), - [anon_sym_GT_EQ] = ACTIONS(7067), - [anon_sym_LT_EQ] = ACTIONS(7065), - [anon_sym_LT] = ACTIONS(7065), - [anon_sym_LT_LT] = ACTIONS(7065), - [anon_sym_GT_GT] = ACTIONS(7065), - [anon_sym_SEMI] = ACTIONS(7067), - [anon_sym___extension__] = ACTIONS(7065), - [anon_sym___attribute__] = ACTIONS(6830), - [anon_sym___attribute] = ACTIONS(6830), - [anon_sym_COLON] = ACTIONS(7065), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7067), - [anon_sym_LBRACE] = ACTIONS(7067), - [anon_sym_RBRACE] = ACTIONS(7067), - [anon_sym_LBRACK] = ACTIONS(7067), - [anon_sym_EQ] = ACTIONS(7065), - [anon_sym_const] = ACTIONS(7065), - [anon_sym_constexpr] = ACTIONS(7065), - [anon_sym_volatile] = ACTIONS(7065), - [anon_sym_restrict] = ACTIONS(7065), - [anon_sym___restrict__] = ACTIONS(7065), - [anon_sym__Atomic] = ACTIONS(7065), - [anon_sym__Noreturn] = ACTIONS(7065), - [anon_sym_noreturn] = ACTIONS(7065), - [anon_sym__Nonnull] = ACTIONS(7065), - [anon_sym_mutable] = ACTIONS(7065), - [anon_sym_constinit] = ACTIONS(7065), - [anon_sym_consteval] = ACTIONS(7065), - [anon_sym_alignas] = ACTIONS(7065), - [anon_sym__Alignas] = ACTIONS(7065), - [anon_sym_QMARK] = ACTIONS(7067), - [anon_sym_STAR_EQ] = ACTIONS(7067), - [anon_sym_SLASH_EQ] = ACTIONS(7067), - [anon_sym_PERCENT_EQ] = ACTIONS(7067), - [anon_sym_PLUS_EQ] = ACTIONS(7067), - [anon_sym_DASH_EQ] = ACTIONS(7067), - [anon_sym_LT_LT_EQ] = ACTIONS(7067), - [anon_sym_GT_GT_EQ] = ACTIONS(7067), - [anon_sym_AMP_EQ] = ACTIONS(7067), - [anon_sym_CARET_EQ] = ACTIONS(7067), - [anon_sym_PIPE_EQ] = ACTIONS(7067), - [anon_sym_and_eq] = ACTIONS(7065), - [anon_sym_or_eq] = ACTIONS(7065), - [anon_sym_xor_eq] = ACTIONS(7065), - [anon_sym_LT_EQ_GT] = ACTIONS(7067), - [anon_sym_or] = ACTIONS(7065), - [anon_sym_and] = ACTIONS(7065), - [anon_sym_bitor] = ACTIONS(7065), - [anon_sym_xor] = ACTIONS(7065), - [anon_sym_bitand] = ACTIONS(7065), - [anon_sym_not_eq] = ACTIONS(7065), - [anon_sym_DASH_DASH] = ACTIONS(7067), - [anon_sym_PLUS_PLUS] = ACTIONS(7067), - [anon_sym_DOT] = ACTIONS(7065), - [anon_sym_DOT_STAR] = ACTIONS(7067), - [anon_sym_DASH_GT] = ACTIONS(7067), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7065), - [anon_sym_override] = ACTIONS(7065), - [anon_sym_requires] = ACTIONS(7065), - [anon_sym_COLON_RBRACK] = ACTIONS(7067), - }, - [STATE(2037)] = { - [sym_function_definition] = STATE(695), - [sym_declaration] = STATE(695), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6284), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_call_modifier] = STATE(2569), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(11403), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(5610), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(5611), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(5898), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(7039), + [STATE(1956)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_ms_call_modifier] = STATE(8809), + [sym__abstract_declarator] = STATE(9375), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_abstract_function_declarator] = STATE(8596), + [sym_abstract_array_declarator] = STATE(8596), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_list] = STATE(4706), + [sym_parameter_declaration] = STATE(9768), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_explicit_object_parameter_declaration] = STATE(9768), + [sym_optional_parameter_declaration] = STATE(9768), + [sym_variadic_parameter_declaration] = STATE(9768), + [sym_abstract_reference_declarator] = STATE(8596), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6557), + [anon_sym_RPAREN] = ACTIONS(6559), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_STAR] = ACTIONS(6463), + [anon_sym_AMP_AMP] = ACTIONS(6465), + [anon_sym_AMP] = ACTIONS(6467), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_virtual] = ACTIONS(2310), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym___cdecl] = ACTIONS(6471), + [anon_sym___clrcall] = ACTIONS(6471), + [anon_sym___stdcall] = ACTIONS(6471), + [anon_sym___fastcall] = ACTIONS(6471), + [anon_sym___thiscall] = ACTIONS(6471), + [anon_sym___vectorcall] = ACTIONS(6471), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6473), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -305267,70 +309421,387 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7069), - [anon_sym_struct] = ACTIONS(7071), - [anon_sym_union] = ACTIONS(7073), - [anon_sym_typename] = ACTIONS(5102), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5629), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_this] = ACTIONS(5631), }, - [STATE(2038)] = { - [sym_function_definition] = STATE(719), - [sym_declaration] = STATE(719), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6284), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_call_modifier] = STATE(2569), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10635), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(5610), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(5611), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(5898), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(7039), + [STATE(1957)] = { + [sym_attribute_specifier] = STATE(1984), + [sym_attribute_declaration] = STATE(3125), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2059), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym_ref_qualifier] = STATE(2321), + [sym__function_attributes_start] = STATE(2257), + [sym__function_exception_specification] = STATE(2529), + [sym__function_attributes_end] = STATE(3883), + [sym__function_postfix] = STATE(3601), + [sym_trailing_return_type] = STATE(2994), + [sym_noexcept] = STATE(2529), + [sym_throw_specifier] = STATE(2529), + [sym_requires_clause] = STATE(3601), + [aux_sym_type_definition_repeat1] = STATE(1984), + [aux_sym__type_definition_type_repeat1] = STATE(2001), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), + [anon_sym_COMMA] = ACTIONS(6481), + [anon_sym_RPAREN] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_PLUS] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6479), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_PERCENT] = ACTIONS(6479), + [anon_sym_PIPE_PIPE] = ACTIONS(6481), + [anon_sym_AMP_AMP] = ACTIONS(6483), + [anon_sym_PIPE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6479), + [anon_sym_AMP] = ACTIONS(6486), + [anon_sym_EQ_EQ] = ACTIONS(6481), + [anon_sym_BANG_EQ] = ACTIONS(6481), + [anon_sym_GT] = ACTIONS(6479), + [anon_sym_GT_EQ] = ACTIONS(6481), + [anon_sym_LT_EQ] = ACTIONS(6479), + [anon_sym_LT] = ACTIONS(6479), + [anon_sym_LT_LT] = ACTIONS(6479), + [anon_sym_GT_GT] = ACTIONS(6479), + [anon_sym_SEMI] = ACTIONS(6481), + [anon_sym___extension__] = ACTIONS(6532), + [anon_sym___attribute__] = ACTIONS(6534), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_COLON] = ACTIONS(6479), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6481), + [anon_sym_RBRACE] = ACTIONS(6481), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_EQ] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(6489), + [anon_sym_constexpr] = ACTIONS(6532), + [anon_sym_volatile] = ACTIONS(6532), + [anon_sym_restrict] = ACTIONS(6532), + [anon_sym___restrict__] = ACTIONS(6532), + [anon_sym__Atomic] = ACTIONS(6532), + [anon_sym__Noreturn] = ACTIONS(6532), + [anon_sym_noreturn] = ACTIONS(6532), + [anon_sym__Nonnull] = ACTIONS(6532), + [anon_sym_mutable] = ACTIONS(6532), + [anon_sym_constinit] = ACTIONS(6532), + [anon_sym_consteval] = ACTIONS(6532), + [anon_sym_alignas] = ACTIONS(6536), + [anon_sym__Alignas] = ACTIONS(6536), + [anon_sym_QMARK] = ACTIONS(6481), + [anon_sym_STAR_EQ] = ACTIONS(6481), + [anon_sym_SLASH_EQ] = ACTIONS(6481), + [anon_sym_PERCENT_EQ] = ACTIONS(6481), + [anon_sym_PLUS_EQ] = ACTIONS(6481), + [anon_sym_DASH_EQ] = ACTIONS(6481), + [anon_sym_LT_LT_EQ] = ACTIONS(6481), + [anon_sym_GT_GT_EQ] = ACTIONS(6481), + [anon_sym_AMP_EQ] = ACTIONS(6481), + [anon_sym_CARET_EQ] = ACTIONS(6481), + [anon_sym_PIPE_EQ] = ACTIONS(6481), + [anon_sym_and_eq] = ACTIONS(6481), + [anon_sym_or_eq] = ACTIONS(6481), + [anon_sym_xor_eq] = ACTIONS(6481), + [anon_sym_LT_EQ_GT] = ACTIONS(6481), + [anon_sym_or] = ACTIONS(6479), + [anon_sym_and] = ACTIONS(6479), + [anon_sym_bitor] = ACTIONS(6481), + [anon_sym_xor] = ACTIONS(6479), + [anon_sym_bitand] = ACTIONS(6481), + [anon_sym_not_eq] = ACTIONS(6481), + [anon_sym_DASH_DASH] = ACTIONS(6481), + [anon_sym_PLUS_PLUS] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6479), + [anon_sym_DOT_STAR] = ACTIONS(6481), + [anon_sym_DASH_GT] = ACTIONS(6540), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6561), + [anon_sym_override] = ACTIONS(6561), + [anon_sym_noexcept] = ACTIONS(6546), + [anon_sym_throw] = ACTIONS(6548), + [anon_sym_requires] = ACTIONS(6563), + [anon_sym_COLON_RBRACK] = ACTIONS(6481), + }, + [STATE(1958)] = { + [sym_template_argument_list] = STATE(1963), + [sym_identifier] = ACTIONS(6565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6567), + [anon_sym_COMMA] = ACTIONS(6567), + [anon_sym_RPAREN] = ACTIONS(6567), + [anon_sym_LPAREN2] = ACTIONS(6569), + [anon_sym_TILDE] = ACTIONS(6572), + [anon_sym_DASH] = ACTIONS(6574), + [anon_sym_PLUS] = ACTIONS(6574), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(6574), + [anon_sym_PERCENT] = ACTIONS(6574), + [anon_sym_PIPE_PIPE] = ACTIONS(6567), + [anon_sym_AMP_AMP] = ACTIONS(6569), + [anon_sym_PIPE] = ACTIONS(6574), + [anon_sym_CARET] = ACTIONS(6574), + [anon_sym_AMP] = ACTIONS(6576), + [anon_sym_EQ_EQ] = ACTIONS(6567), + [anon_sym_BANG_EQ] = ACTIONS(6567), + [anon_sym_GT] = ACTIONS(6574), + [anon_sym_GT_EQ] = ACTIONS(6567), + [anon_sym_LT_EQ] = ACTIONS(6574), + [anon_sym_LT] = ACTIONS(6579), + [anon_sym_LT_LT] = ACTIONS(6574), + [anon_sym_GT_GT] = ACTIONS(6574), + [anon_sym_SEMI] = ACTIONS(6567), + [anon_sym___extension__] = ACTIONS(6565), + [anon_sym_virtual] = ACTIONS(6565), + [anon_sym_extern] = ACTIONS(6565), + [anon_sym___attribute__] = ACTIONS(6565), + [anon_sym___attribute] = ACTIONS(6565), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6572), + [anon_sym___declspec] = ACTIONS(6565), + [anon_sym___based] = ACTIONS(6565), + [anon_sym___cdecl] = ACTIONS(6565), + [anon_sym___clrcall] = ACTIONS(6565), + [anon_sym___stdcall] = ACTIONS(6565), + [anon_sym___fastcall] = ACTIONS(6565), + [anon_sym___thiscall] = ACTIONS(6565), + [anon_sym___vectorcall] = ACTIONS(6565), + [anon_sym_LBRACE] = ACTIONS(6572), + [anon_sym_RBRACE] = ACTIONS(6567), + [anon_sym_LBRACK] = ACTIONS(6576), + [anon_sym_static] = ACTIONS(6565), + [anon_sym_EQ] = ACTIONS(6574), + [anon_sym_register] = ACTIONS(6565), + [anon_sym_inline] = ACTIONS(6565), + [anon_sym___inline] = ACTIONS(6565), + [anon_sym___inline__] = ACTIONS(6565), + [anon_sym___forceinline] = ACTIONS(6565), + [anon_sym_thread_local] = ACTIONS(6565), + [anon_sym___thread] = ACTIONS(6565), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_constexpr] = ACTIONS(6565), + [anon_sym_volatile] = ACTIONS(6565), + [anon_sym_restrict] = ACTIONS(6565), + [anon_sym___restrict__] = ACTIONS(6565), + [anon_sym__Atomic] = ACTIONS(6565), + [anon_sym__Noreturn] = ACTIONS(6565), + [anon_sym_noreturn] = ACTIONS(6565), + [anon_sym__Nonnull] = ACTIONS(6565), + [anon_sym_mutable] = ACTIONS(6565), + [anon_sym_constinit] = ACTIONS(6565), + [anon_sym_consteval] = ACTIONS(6565), + [anon_sym_alignas] = ACTIONS(6565), + [anon_sym__Alignas] = ACTIONS(6565), + [anon_sym_QMARK] = ACTIONS(6567), + [anon_sym_STAR_EQ] = ACTIONS(6567), + [anon_sym_SLASH_EQ] = ACTIONS(6567), + [anon_sym_PERCENT_EQ] = ACTIONS(6567), + [anon_sym_PLUS_EQ] = ACTIONS(6567), + [anon_sym_DASH_EQ] = ACTIONS(6567), + [anon_sym_LT_LT_EQ] = ACTIONS(6567), + [anon_sym_GT_GT_EQ] = ACTIONS(6567), + [anon_sym_AMP_EQ] = ACTIONS(6567), + [anon_sym_CARET_EQ] = ACTIONS(6567), + [anon_sym_PIPE_EQ] = ACTIONS(6567), + [anon_sym_and_eq] = ACTIONS(6574), + [anon_sym_or_eq] = ACTIONS(6574), + [anon_sym_xor_eq] = ACTIONS(6574), + [anon_sym_LT_EQ_GT] = ACTIONS(6567), + [anon_sym_or] = ACTIONS(6574), + [anon_sym_and] = ACTIONS(6574), + [anon_sym_bitor] = ACTIONS(6574), + [anon_sym_xor] = ACTIONS(6574), + [anon_sym_bitand] = ACTIONS(6574), + [anon_sym_not_eq] = ACTIONS(6574), + [anon_sym_DASH_DASH] = ACTIONS(6567), + [anon_sym_PLUS_PLUS] = ACTIONS(6567), + [anon_sym_DOT] = ACTIONS(6574), + [anon_sym_DOT_STAR] = ACTIONS(6567), + [anon_sym_DASH_GT] = ACTIONS(6567), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6565), + [anon_sym_decltype] = ACTIONS(6565), + [anon_sym_template] = ACTIONS(6565), + [anon_sym_operator] = ACTIONS(6565), + [anon_sym_LBRACK_COLON] = ACTIONS(6572), + }, + [STATE(1959)] = { + [sym_template_argument_list] = STATE(1973), + [sym_identifier] = ACTIONS(6565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6567), + [anon_sym_COMMA] = ACTIONS(6567), + [anon_sym_LPAREN2] = ACTIONS(6569), + [anon_sym_TILDE] = ACTIONS(6572), + [anon_sym_DASH] = ACTIONS(6574), + [anon_sym_PLUS] = ACTIONS(6574), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(6574), + [anon_sym_PERCENT] = ACTIONS(6574), + [anon_sym_PIPE_PIPE] = ACTIONS(6567), + [anon_sym_AMP_AMP] = ACTIONS(6569), + [anon_sym_PIPE] = ACTIONS(6574), + [anon_sym_CARET] = ACTIONS(6574), + [anon_sym_AMP] = ACTIONS(6576), + [anon_sym_EQ_EQ] = ACTIONS(6567), + [anon_sym_BANG_EQ] = ACTIONS(6567), + [anon_sym_GT] = ACTIONS(6574), + [anon_sym_GT_EQ] = ACTIONS(6567), + [anon_sym_LT_EQ] = ACTIONS(6574), + [anon_sym_LT] = ACTIONS(6579), + [anon_sym_LT_LT] = ACTIONS(6574), + [anon_sym_GT_GT] = ACTIONS(6574), + [anon_sym_SEMI] = ACTIONS(6569), + [anon_sym___extension__] = ACTIONS(6565), + [anon_sym_virtual] = ACTIONS(6565), + [anon_sym_extern] = ACTIONS(6565), + [anon_sym___attribute__] = ACTIONS(6565), + [anon_sym___attribute] = ACTIONS(6565), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6569), + [anon_sym___declspec] = ACTIONS(6565), + [anon_sym___based] = ACTIONS(6565), + [anon_sym___cdecl] = ACTIONS(6565), + [anon_sym___clrcall] = ACTIONS(6565), + [anon_sym___stdcall] = ACTIONS(6565), + [anon_sym___fastcall] = ACTIONS(6565), + [anon_sym___thiscall] = ACTIONS(6565), + [anon_sym___vectorcall] = ACTIONS(6565), + [anon_sym_LBRACE] = ACTIONS(6572), + [anon_sym_RBRACE] = ACTIONS(6567), + [anon_sym_LBRACK] = ACTIONS(6576), + [anon_sym_static] = ACTIONS(6565), + [anon_sym_EQ] = ACTIONS(6574), + [anon_sym_register] = ACTIONS(6565), + [anon_sym_inline] = ACTIONS(6565), + [anon_sym___inline] = ACTIONS(6565), + [anon_sym___inline__] = ACTIONS(6565), + [anon_sym___forceinline] = ACTIONS(6565), + [anon_sym_thread_local] = ACTIONS(6565), + [anon_sym___thread] = ACTIONS(6565), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_constexpr] = ACTIONS(6565), + [anon_sym_volatile] = ACTIONS(6565), + [anon_sym_restrict] = ACTIONS(6565), + [anon_sym___restrict__] = ACTIONS(6565), + [anon_sym__Atomic] = ACTIONS(6565), + [anon_sym__Noreturn] = ACTIONS(6565), + [anon_sym_noreturn] = ACTIONS(6565), + [anon_sym__Nonnull] = ACTIONS(6565), + [anon_sym_mutable] = ACTIONS(6565), + [anon_sym_constinit] = ACTIONS(6565), + [anon_sym_consteval] = ACTIONS(6565), + [anon_sym_alignas] = ACTIONS(6565), + [anon_sym__Alignas] = ACTIONS(6565), + [anon_sym_QMARK] = ACTIONS(6567), + [anon_sym_STAR_EQ] = ACTIONS(6567), + [anon_sym_SLASH_EQ] = ACTIONS(6567), + [anon_sym_PERCENT_EQ] = ACTIONS(6567), + [anon_sym_PLUS_EQ] = ACTIONS(6567), + [anon_sym_DASH_EQ] = ACTIONS(6567), + [anon_sym_LT_LT_EQ] = ACTIONS(6567), + [anon_sym_GT_GT_EQ] = ACTIONS(6567), + [anon_sym_AMP_EQ] = ACTIONS(6567), + [anon_sym_CARET_EQ] = ACTIONS(6567), + [anon_sym_PIPE_EQ] = ACTIONS(6567), + [anon_sym_and_eq] = ACTIONS(6574), + [anon_sym_or_eq] = ACTIONS(6574), + [anon_sym_xor_eq] = ACTIONS(6574), + [anon_sym_LT_EQ_GT] = ACTIONS(6567), + [anon_sym_or] = ACTIONS(6574), + [anon_sym_and] = ACTIONS(6574), + [anon_sym_bitor] = ACTIONS(6574), + [anon_sym_xor] = ACTIONS(6574), + [anon_sym_bitand] = ACTIONS(6574), + [anon_sym_not_eq] = ACTIONS(6574), + [anon_sym_DASH_DASH] = ACTIONS(6567), + [anon_sym_PLUS_PLUS] = ACTIONS(6567), + [anon_sym_DOT] = ACTIONS(6574), + [anon_sym_DOT_STAR] = ACTIONS(6567), + [anon_sym_DASH_GT] = ACTIONS(6567), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6565), + [anon_sym_decltype] = ACTIONS(6565), + [anon_sym_template] = ACTIONS(6565), + [anon_sym_operator] = ACTIONS(6565), + [anon_sym_LBRACK_COLON] = ACTIONS(6572), + }, + [STATE(1960)] = { + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(7526), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9047), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8555), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_template_parameter_list] = STATE(1095), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(6284), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7966), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(2650), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6582), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(6584), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(6586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym___based] = ACTIONS(53), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -305353,1016 +309824,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), + [sym_primitive_type] = ACTIONS(3466), [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7075), - [anon_sym_struct] = ACTIONS(7077), - [anon_sym_union] = ACTIONS(7079), - [anon_sym_typename] = ACTIONS(5102), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_for] = ACTIONS(6588), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(2039)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1931), - [sym_identifier] = ACTIONS(6627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), - [anon_sym_COMMA] = ACTIONS(7081), - [anon_sym_RPAREN] = ACTIONS(7081), - [anon_sym_LPAREN2] = ACTIONS(7081), - [anon_sym_DASH] = ACTIONS(7084), - [anon_sym_PLUS] = ACTIONS(7084), - [anon_sym_STAR] = ACTIONS(7084), - [anon_sym_SLASH] = ACTIONS(7084), - [anon_sym_PERCENT] = ACTIONS(7084), - [anon_sym_PIPE_PIPE] = ACTIONS(7081), - [anon_sym_AMP_AMP] = ACTIONS(7081), - [anon_sym_PIPE] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7084), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_EQ_EQ] = ACTIONS(7081), - [anon_sym_BANG_EQ] = ACTIONS(7081), - [anon_sym_GT] = ACTIONS(7084), - [anon_sym_GT_EQ] = ACTIONS(7081), - [anon_sym_LT_EQ] = ACTIONS(7084), - [anon_sym_LT] = ACTIONS(7084), - [anon_sym_LT_LT] = ACTIONS(7084), - [anon_sym_GT_GT] = ACTIONS(7084), - [anon_sym_SEMI] = ACTIONS(7081), - [anon_sym___extension__] = ACTIONS(7084), - [anon_sym___attribute__] = ACTIONS(7084), - [anon_sym___attribute] = ACTIONS(7084), - [anon_sym_COLON] = ACTIONS(7084), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7081), - [anon_sym_LBRACE] = ACTIONS(7081), - [anon_sym_RBRACE] = ACTIONS(7081), - [anon_sym_signed] = ACTIONS(6631), - [anon_sym_unsigned] = ACTIONS(6631), - [anon_sym_long] = ACTIONS(6631), - [anon_sym_short] = ACTIONS(6631), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_EQ] = ACTIONS(7084), - [anon_sym_const] = ACTIONS(7084), - [anon_sym_constexpr] = ACTIONS(7084), - [anon_sym_volatile] = ACTIONS(7084), - [anon_sym_restrict] = ACTIONS(7084), - [anon_sym___restrict__] = ACTIONS(7084), - [anon_sym__Atomic] = ACTIONS(7084), - [anon_sym__Noreturn] = ACTIONS(7084), - [anon_sym_noreturn] = ACTIONS(7084), - [anon_sym__Nonnull] = ACTIONS(7084), - [anon_sym_mutable] = ACTIONS(7084), - [anon_sym_constinit] = ACTIONS(7084), - [anon_sym_consteval] = ACTIONS(7084), - [anon_sym_alignas] = ACTIONS(7084), - [anon_sym__Alignas] = ACTIONS(7084), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(7081), - [anon_sym_STAR_EQ] = ACTIONS(7081), - [anon_sym_SLASH_EQ] = ACTIONS(7081), - [anon_sym_PERCENT_EQ] = ACTIONS(7081), - [anon_sym_PLUS_EQ] = ACTIONS(7081), - [anon_sym_DASH_EQ] = ACTIONS(7081), - [anon_sym_LT_LT_EQ] = ACTIONS(7081), - [anon_sym_GT_GT_EQ] = ACTIONS(7081), - [anon_sym_AMP_EQ] = ACTIONS(7081), - [anon_sym_CARET_EQ] = ACTIONS(7081), - [anon_sym_PIPE_EQ] = ACTIONS(7081), - [anon_sym_and_eq] = ACTIONS(7084), - [anon_sym_or_eq] = ACTIONS(7084), - [anon_sym_xor_eq] = ACTIONS(7084), - [anon_sym_LT_EQ_GT] = ACTIONS(7081), - [anon_sym_or] = ACTIONS(7084), - [anon_sym_and] = ACTIONS(7084), - [anon_sym_bitor] = ACTIONS(7084), - [anon_sym_xor] = ACTIONS(7084), - [anon_sym_bitand] = ACTIONS(7084), - [anon_sym_not_eq] = ACTIONS(7084), - [anon_sym_DASH_DASH] = ACTIONS(7081), - [anon_sym_PLUS_PLUS] = ACTIONS(7081), - [anon_sym_DOT] = ACTIONS(7084), - [anon_sym_DOT_STAR] = ACTIONS(7081), - [anon_sym_DASH_GT] = ACTIONS(7081), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7084), - [anon_sym_override] = ACTIONS(7084), - [anon_sym_requires] = ACTIONS(7084), - [anon_sym_COLON_RBRACK] = ACTIONS(7081), - }, - [STATE(2040)] = { - [sym_attribute_specifier] = STATE(2260), - [sym_attribute_declaration] = STATE(4504), - [sym_type_qualifier] = STATE(2221), - [sym_alignas_qualifier] = STATE(2403), - [aux_sym_type_definition_repeat1] = STATE(2260), - [aux_sym__type_definition_type_repeat1] = STATE(2221), - [aux_sym_attributed_declarator_repeat1] = STATE(4504), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), - [anon_sym_COMMA] = ACTIONS(6390), - [anon_sym_LPAREN2] = ACTIONS(6390), - [anon_sym_DASH] = ACTIONS(6388), - [anon_sym_PLUS] = ACTIONS(6388), - [anon_sym_STAR] = ACTIONS(6388), - [anon_sym_SLASH] = ACTIONS(6388), - [anon_sym_PERCENT] = ACTIONS(6388), - [anon_sym_PIPE_PIPE] = ACTIONS(6390), - [anon_sym_AMP_AMP] = ACTIONS(6390), - [anon_sym_PIPE] = ACTIONS(6388), - [anon_sym_CARET] = ACTIONS(6388), - [anon_sym_AMP] = ACTIONS(6388), - [anon_sym_EQ_EQ] = ACTIONS(6390), - [anon_sym_BANG_EQ] = ACTIONS(6390), - [anon_sym_GT] = ACTIONS(6388), - [anon_sym_GT_EQ] = ACTIONS(6390), - [anon_sym_LT_EQ] = ACTIONS(6388), - [anon_sym_LT] = ACTIONS(6388), - [anon_sym_LT_LT] = ACTIONS(6388), - [anon_sym_GT_GT] = ACTIONS(6388), - [anon_sym___extension__] = ACTIONS(6324), - [anon_sym___attribute__] = ACTIONS(6390), - [anon_sym___attribute] = ACTIONS(6388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), - [anon_sym_LBRACK] = ACTIONS(6388), - [anon_sym_RBRACK] = ACTIONS(6390), - [anon_sym_EQ] = ACTIONS(6388), - [anon_sym_const] = ACTIONS(6332), - [anon_sym_constexpr] = ACTIONS(6324), - [anon_sym_volatile] = ACTIONS(6324), - [anon_sym_restrict] = ACTIONS(6324), - [anon_sym___restrict__] = ACTIONS(6324), - [anon_sym__Atomic] = ACTIONS(6324), - [anon_sym__Noreturn] = ACTIONS(6324), - [anon_sym_noreturn] = ACTIONS(6324), - [anon_sym__Nonnull] = ACTIONS(6324), - [anon_sym_mutable] = ACTIONS(6324), - [anon_sym_constinit] = ACTIONS(6324), - [anon_sym_consteval] = ACTIONS(6324), - [anon_sym_alignas] = ACTIONS(6334), - [anon_sym__Alignas] = ACTIONS(6334), - [anon_sym_QMARK] = ACTIONS(6390), - [anon_sym_STAR_EQ] = ACTIONS(6390), - [anon_sym_SLASH_EQ] = ACTIONS(6390), - [anon_sym_PERCENT_EQ] = ACTIONS(6390), - [anon_sym_PLUS_EQ] = ACTIONS(6390), - [anon_sym_DASH_EQ] = ACTIONS(6390), - [anon_sym_LT_LT_EQ] = ACTIONS(6390), - [anon_sym_GT_GT_EQ] = ACTIONS(6390), - [anon_sym_AMP_EQ] = ACTIONS(6390), - [anon_sym_CARET_EQ] = ACTIONS(6390), - [anon_sym_PIPE_EQ] = ACTIONS(6390), - [anon_sym_and_eq] = ACTIONS(6390), - [anon_sym_or_eq] = ACTIONS(6390), - [anon_sym_xor_eq] = ACTIONS(6390), - [anon_sym_LT_EQ_GT] = ACTIONS(6390), - [anon_sym_or] = ACTIONS(6388), - [anon_sym_and] = ACTIONS(6388), - [anon_sym_bitor] = ACTIONS(6390), - [anon_sym_xor] = ACTIONS(6388), - [anon_sym_bitand] = ACTIONS(6390), - [anon_sym_not_eq] = ACTIONS(6390), - [anon_sym_DASH_DASH] = ACTIONS(6390), - [anon_sym_PLUS_PLUS] = ACTIONS(6390), - [anon_sym_asm] = ACTIONS(6390), - [anon_sym___asm__] = ACTIONS(6390), - [anon_sym___asm] = ACTIONS(6388), - [anon_sym_DOT] = ACTIONS(6388), - [anon_sym_DOT_STAR] = ACTIONS(6390), - [anon_sym_DASH_GT] = ACTIONS(6390), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6390), - [anon_sym_override] = ACTIONS(6390), - [anon_sym_noexcept] = ACTIONS(6390), - [anon_sym_throw] = ACTIONS(6390), - [anon_sym_requires] = ACTIONS(6390), - }, - [STATE(2041)] = { - [sym_template_argument_list] = STATE(3601), - [aux_sym_sized_type_specifier_repeat1] = STATE(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7019), - [anon_sym_COMMA] = ACTIONS(7019), - [anon_sym_RPAREN] = ACTIONS(7019), - [anon_sym_LPAREN2] = ACTIONS(7019), - [anon_sym_DASH] = ACTIONS(7017), - [anon_sym_PLUS] = ACTIONS(7017), - [anon_sym_STAR] = ACTIONS(7017), - [anon_sym_SLASH] = ACTIONS(7017), - [anon_sym_PERCENT] = ACTIONS(7017), - [anon_sym_PIPE_PIPE] = ACTIONS(7019), - [anon_sym_AMP_AMP] = ACTIONS(7019), - [anon_sym_PIPE] = ACTIONS(7017), - [anon_sym_CARET] = ACTIONS(7017), - [anon_sym_AMP] = ACTIONS(7017), - [anon_sym_EQ_EQ] = ACTIONS(7019), - [anon_sym_BANG_EQ] = ACTIONS(7019), - [anon_sym_GT] = ACTIONS(7017), - [anon_sym_GT_EQ] = ACTIONS(7019), - [anon_sym_LT_EQ] = ACTIONS(7017), - [anon_sym_LT] = ACTIONS(7017), - [anon_sym_LT_LT] = ACTIONS(7017), - [anon_sym_GT_GT] = ACTIONS(7017), - [anon_sym_SEMI] = ACTIONS(7019), - [anon_sym___extension__] = ACTIONS(7019), - [anon_sym___attribute__] = ACTIONS(7019), - [anon_sym___attribute] = ACTIONS(7017), - [anon_sym_COLON] = ACTIONS(7017), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7019), - [anon_sym_LBRACE] = ACTIONS(7019), - [anon_sym_RBRACE] = ACTIONS(7019), - [anon_sym_signed] = ACTIONS(6396), - [anon_sym_unsigned] = ACTIONS(6396), - [anon_sym_long] = ACTIONS(6396), - [anon_sym_short] = ACTIONS(6396), - [anon_sym_LBRACK] = ACTIONS(7019), - [anon_sym_EQ] = ACTIONS(7017), - [anon_sym_const] = ACTIONS(7017), - [anon_sym_constexpr] = ACTIONS(7019), - [anon_sym_volatile] = ACTIONS(7019), - [anon_sym_restrict] = ACTIONS(7019), - [anon_sym___restrict__] = ACTIONS(7019), - [anon_sym__Atomic] = ACTIONS(7019), - [anon_sym__Noreturn] = ACTIONS(7019), - [anon_sym_noreturn] = ACTIONS(7019), - [anon_sym__Nonnull] = ACTIONS(7019), - [anon_sym_mutable] = ACTIONS(7019), - [anon_sym_constinit] = ACTIONS(7019), - [anon_sym_consteval] = ACTIONS(7019), - [anon_sym_alignas] = ACTIONS(7019), - [anon_sym__Alignas] = ACTIONS(7019), - [anon_sym_QMARK] = ACTIONS(7019), - [anon_sym_STAR_EQ] = ACTIONS(7019), - [anon_sym_SLASH_EQ] = ACTIONS(7019), - [anon_sym_PERCENT_EQ] = ACTIONS(7019), - [anon_sym_PLUS_EQ] = ACTIONS(7019), - [anon_sym_DASH_EQ] = ACTIONS(7019), - [anon_sym_LT_LT_EQ] = ACTIONS(7019), - [anon_sym_GT_GT_EQ] = ACTIONS(7019), - [anon_sym_AMP_EQ] = ACTIONS(7019), - [anon_sym_CARET_EQ] = ACTIONS(7019), - [anon_sym_PIPE_EQ] = ACTIONS(7019), - [anon_sym_and_eq] = ACTIONS(7019), - [anon_sym_or_eq] = ACTIONS(7019), - [anon_sym_xor_eq] = ACTIONS(7019), - [anon_sym_LT_EQ_GT] = ACTIONS(7019), - [anon_sym_or] = ACTIONS(7017), - [anon_sym_and] = ACTIONS(7017), - [anon_sym_bitor] = ACTIONS(7019), - [anon_sym_xor] = ACTIONS(7017), - [anon_sym_bitand] = ACTIONS(7019), - [anon_sym_not_eq] = ACTIONS(7019), - [anon_sym_DASH_DASH] = ACTIONS(7019), - [anon_sym_PLUS_PLUS] = ACTIONS(7019), - [anon_sym_DOT] = ACTIONS(7017), - [anon_sym_DOT_STAR] = ACTIONS(7019), - [anon_sym_DASH_GT] = ACTIONS(7019), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7019), - [anon_sym_override] = ACTIONS(7019), - [anon_sym_requires] = ACTIONS(7019), - [anon_sym_COLON_RBRACK] = ACTIONS(7019), - }, - [STATE(2042)] = { - [sym_attribute_specifier] = STATE(2073), - [sym_identifier] = ACTIONS(7087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7089), - [anon_sym_COMMA] = ACTIONS(7089), - [anon_sym_RPAREN] = ACTIONS(7089), - [aux_sym_preproc_if_token2] = ACTIONS(7089), - [aux_sym_preproc_else_token1] = ACTIONS(7089), - [aux_sym_preproc_elif_token1] = ACTIONS(7087), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7089), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7089), - [anon_sym_LPAREN2] = ACTIONS(7089), - [anon_sym_DASH] = ACTIONS(7087), - [anon_sym_PLUS] = ACTIONS(7087), - [anon_sym_STAR] = ACTIONS(7087), - [anon_sym_SLASH] = ACTIONS(7087), - [anon_sym_PERCENT] = ACTIONS(7087), - [anon_sym_PIPE_PIPE] = ACTIONS(7089), - [anon_sym_AMP_AMP] = ACTIONS(7089), - [anon_sym_PIPE] = ACTIONS(7087), - [anon_sym_CARET] = ACTIONS(7087), - [anon_sym_AMP] = ACTIONS(7087), - [anon_sym_EQ_EQ] = ACTIONS(7089), - [anon_sym_BANG_EQ] = ACTIONS(7089), - [anon_sym_GT] = ACTIONS(7087), - [anon_sym_GT_EQ] = ACTIONS(7089), - [anon_sym_LT_EQ] = ACTIONS(7087), - [anon_sym_LT] = ACTIONS(7087), - [anon_sym_LT_LT] = ACTIONS(7087), - [anon_sym_GT_GT] = ACTIONS(7087), - [anon_sym_SEMI] = ACTIONS(7089), - [anon_sym___extension__] = ACTIONS(7087), - [anon_sym___attribute__] = ACTIONS(6830), - [anon_sym___attribute] = ACTIONS(6830), - [anon_sym_COLON] = ACTIONS(7087), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7089), - [anon_sym_LBRACE] = ACTIONS(7089), - [anon_sym_RBRACE] = ACTIONS(7089), - [anon_sym_LBRACK] = ACTIONS(7089), - [anon_sym_EQ] = ACTIONS(7087), - [anon_sym_const] = ACTIONS(7087), - [anon_sym_constexpr] = ACTIONS(7087), - [anon_sym_volatile] = ACTIONS(7087), - [anon_sym_restrict] = ACTIONS(7087), - [anon_sym___restrict__] = ACTIONS(7087), - [anon_sym__Atomic] = ACTIONS(7087), - [anon_sym__Noreturn] = ACTIONS(7087), - [anon_sym_noreturn] = ACTIONS(7087), - [anon_sym__Nonnull] = ACTIONS(7087), - [anon_sym_mutable] = ACTIONS(7087), - [anon_sym_constinit] = ACTIONS(7087), - [anon_sym_consteval] = ACTIONS(7087), - [anon_sym_alignas] = ACTIONS(7087), - [anon_sym__Alignas] = ACTIONS(7087), - [anon_sym_QMARK] = ACTIONS(7089), - [anon_sym_STAR_EQ] = ACTIONS(7089), - [anon_sym_SLASH_EQ] = ACTIONS(7089), - [anon_sym_PERCENT_EQ] = ACTIONS(7089), - [anon_sym_PLUS_EQ] = ACTIONS(7089), - [anon_sym_DASH_EQ] = ACTIONS(7089), - [anon_sym_LT_LT_EQ] = ACTIONS(7089), - [anon_sym_GT_GT_EQ] = ACTIONS(7089), - [anon_sym_AMP_EQ] = ACTIONS(7089), - [anon_sym_CARET_EQ] = ACTIONS(7089), - [anon_sym_PIPE_EQ] = ACTIONS(7089), - [anon_sym_and_eq] = ACTIONS(7087), - [anon_sym_or_eq] = ACTIONS(7087), - [anon_sym_xor_eq] = ACTIONS(7087), - [anon_sym_LT_EQ_GT] = ACTIONS(7089), - [anon_sym_or] = ACTIONS(7087), - [anon_sym_and] = ACTIONS(7087), - [anon_sym_bitor] = ACTIONS(7087), - [anon_sym_xor] = ACTIONS(7087), - [anon_sym_bitand] = ACTIONS(7087), - [anon_sym_not_eq] = ACTIONS(7087), - [anon_sym_DASH_DASH] = ACTIONS(7089), - [anon_sym_PLUS_PLUS] = ACTIONS(7089), - [anon_sym_DOT] = ACTIONS(7087), - [anon_sym_DOT_STAR] = ACTIONS(7089), - [anon_sym_DASH_GT] = ACTIONS(7089), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7087), - [anon_sym_override] = ACTIONS(7087), - [anon_sym_requires] = ACTIONS(7087), - [anon_sym_COLON_RBRACK] = ACTIONS(7089), - }, - [STATE(2043)] = { - [sym_attribute_specifier] = STATE(2110), - [sym_identifier] = ACTIONS(7091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7093), - [anon_sym_COMMA] = ACTIONS(7093), - [anon_sym_RPAREN] = ACTIONS(7093), - [aux_sym_preproc_if_token2] = ACTIONS(7093), - [aux_sym_preproc_else_token1] = ACTIONS(7093), - [aux_sym_preproc_elif_token1] = ACTIONS(7091), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7093), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7093), - [anon_sym_LPAREN2] = ACTIONS(7093), - [anon_sym_DASH] = ACTIONS(7091), - [anon_sym_PLUS] = ACTIONS(7091), - [anon_sym_STAR] = ACTIONS(7091), - [anon_sym_SLASH] = ACTIONS(7091), - [anon_sym_PERCENT] = ACTIONS(7091), - [anon_sym_PIPE_PIPE] = ACTIONS(7093), - [anon_sym_AMP_AMP] = ACTIONS(7093), - [anon_sym_PIPE] = ACTIONS(7091), - [anon_sym_CARET] = ACTIONS(7091), - [anon_sym_AMP] = ACTIONS(7091), - [anon_sym_EQ_EQ] = ACTIONS(7093), - [anon_sym_BANG_EQ] = ACTIONS(7093), - [anon_sym_GT] = ACTIONS(7091), - [anon_sym_GT_EQ] = ACTIONS(7093), - [anon_sym_LT_EQ] = ACTIONS(7091), - [anon_sym_LT] = ACTIONS(7091), - [anon_sym_LT_LT] = ACTIONS(7091), - [anon_sym_GT_GT] = ACTIONS(7091), - [anon_sym_SEMI] = ACTIONS(7093), - [anon_sym___extension__] = ACTIONS(7091), - [anon_sym___attribute__] = ACTIONS(6830), - [anon_sym___attribute] = ACTIONS(6830), - [anon_sym_COLON] = ACTIONS(7091), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7093), - [anon_sym_LBRACE] = ACTIONS(7093), - [anon_sym_RBRACE] = ACTIONS(7093), - [anon_sym_LBRACK] = ACTIONS(7093), - [anon_sym_EQ] = ACTIONS(7091), - [anon_sym_const] = ACTIONS(7091), - [anon_sym_constexpr] = ACTIONS(7091), - [anon_sym_volatile] = ACTIONS(7091), - [anon_sym_restrict] = ACTIONS(7091), - [anon_sym___restrict__] = ACTIONS(7091), - [anon_sym__Atomic] = ACTIONS(7091), - [anon_sym__Noreturn] = ACTIONS(7091), - [anon_sym_noreturn] = ACTIONS(7091), - [anon_sym__Nonnull] = ACTIONS(7091), - [anon_sym_mutable] = ACTIONS(7091), - [anon_sym_constinit] = ACTIONS(7091), - [anon_sym_consteval] = ACTIONS(7091), - [anon_sym_alignas] = ACTIONS(7091), - [anon_sym__Alignas] = ACTIONS(7091), - [anon_sym_QMARK] = ACTIONS(7093), - [anon_sym_STAR_EQ] = ACTIONS(7093), - [anon_sym_SLASH_EQ] = ACTIONS(7093), - [anon_sym_PERCENT_EQ] = ACTIONS(7093), - [anon_sym_PLUS_EQ] = ACTIONS(7093), - [anon_sym_DASH_EQ] = ACTIONS(7093), - [anon_sym_LT_LT_EQ] = ACTIONS(7093), - [anon_sym_GT_GT_EQ] = ACTIONS(7093), - [anon_sym_AMP_EQ] = ACTIONS(7093), - [anon_sym_CARET_EQ] = ACTIONS(7093), - [anon_sym_PIPE_EQ] = ACTIONS(7093), - [anon_sym_and_eq] = ACTIONS(7091), - [anon_sym_or_eq] = ACTIONS(7091), - [anon_sym_xor_eq] = ACTIONS(7091), - [anon_sym_LT_EQ_GT] = ACTIONS(7093), - [anon_sym_or] = ACTIONS(7091), - [anon_sym_and] = ACTIONS(7091), - [anon_sym_bitor] = ACTIONS(7091), - [anon_sym_xor] = ACTIONS(7091), - [anon_sym_bitand] = ACTIONS(7091), - [anon_sym_not_eq] = ACTIONS(7091), - [anon_sym_DASH_DASH] = ACTIONS(7093), - [anon_sym_PLUS_PLUS] = ACTIONS(7093), - [anon_sym_DOT] = ACTIONS(7091), - [anon_sym_DOT_STAR] = ACTIONS(7093), - [anon_sym_DASH_GT] = ACTIONS(7093), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7091), - [anon_sym_override] = ACTIONS(7091), - [anon_sym_requires] = ACTIONS(7091), - [anon_sym_COLON_RBRACK] = ACTIONS(7093), - }, - [STATE(2044)] = { - [sym_identifier] = ACTIONS(6844), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6846), - [anon_sym_COMMA] = ACTIONS(6846), - [anon_sym_RPAREN] = ACTIONS(6846), - [aux_sym_preproc_if_token2] = ACTIONS(6846), - [aux_sym_preproc_else_token1] = ACTIONS(6846), - [aux_sym_preproc_elif_token1] = ACTIONS(6844), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6846), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6846), - [anon_sym_LPAREN2] = ACTIONS(6846), - [anon_sym_DASH] = ACTIONS(6844), - [anon_sym_PLUS] = ACTIONS(6844), - [anon_sym_STAR] = ACTIONS(6844), - [anon_sym_SLASH] = ACTIONS(6844), - [anon_sym_PERCENT] = ACTIONS(6844), - [anon_sym_PIPE_PIPE] = ACTIONS(6846), - [anon_sym_AMP_AMP] = ACTIONS(6846), - [anon_sym_PIPE] = ACTIONS(6844), - [anon_sym_CARET] = ACTIONS(6844), - [anon_sym_AMP] = ACTIONS(6844), - [anon_sym_EQ_EQ] = ACTIONS(6846), - [anon_sym_BANG_EQ] = ACTIONS(6846), - [anon_sym_GT] = ACTIONS(6844), - [anon_sym_GT_EQ] = ACTIONS(6846), - [anon_sym_LT_EQ] = ACTIONS(6844), - [anon_sym_LT] = ACTIONS(6844), - [anon_sym_LT_LT] = ACTIONS(6844), - [anon_sym_GT_GT] = ACTIONS(6844), - [anon_sym_SEMI] = ACTIONS(6846), - [anon_sym___extension__] = ACTIONS(6844), - [anon_sym___attribute__] = ACTIONS(6844), - [anon_sym___attribute] = ACTIONS(6844), - [anon_sym_COLON] = ACTIONS(6844), - [anon_sym_COLON_COLON] = ACTIONS(6846), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6846), - [anon_sym_LBRACE] = ACTIONS(6846), - [anon_sym_RBRACE] = ACTIONS(6846), - [anon_sym_LBRACK] = ACTIONS(6846), - [anon_sym_EQ] = ACTIONS(6844), - [anon_sym_const] = ACTIONS(6844), - [anon_sym_constexpr] = ACTIONS(6844), - [anon_sym_volatile] = ACTIONS(6844), - [anon_sym_restrict] = ACTIONS(6844), - [anon_sym___restrict__] = ACTIONS(6844), - [anon_sym__Atomic] = ACTIONS(6844), - [anon_sym__Noreturn] = ACTIONS(6844), - [anon_sym_noreturn] = ACTIONS(6844), - [anon_sym__Nonnull] = ACTIONS(6844), - [anon_sym_mutable] = ACTIONS(6844), - [anon_sym_constinit] = ACTIONS(6844), - [anon_sym_consteval] = ACTIONS(6844), - [anon_sym_alignas] = ACTIONS(6844), - [anon_sym__Alignas] = ACTIONS(6844), - [anon_sym_QMARK] = ACTIONS(6846), - [anon_sym_STAR_EQ] = ACTIONS(6846), - [anon_sym_SLASH_EQ] = ACTIONS(6846), - [anon_sym_PERCENT_EQ] = ACTIONS(6846), - [anon_sym_PLUS_EQ] = ACTIONS(6846), - [anon_sym_DASH_EQ] = ACTIONS(6846), - [anon_sym_LT_LT_EQ] = ACTIONS(6846), - [anon_sym_GT_GT_EQ] = ACTIONS(6846), - [anon_sym_AMP_EQ] = ACTIONS(6846), - [anon_sym_CARET_EQ] = ACTIONS(6846), - [anon_sym_PIPE_EQ] = ACTIONS(6846), - [anon_sym_and_eq] = ACTIONS(6844), - [anon_sym_or_eq] = ACTIONS(6844), - [anon_sym_xor_eq] = ACTIONS(6844), - [anon_sym_LT_EQ_GT] = ACTIONS(6846), - [anon_sym_or] = ACTIONS(6844), - [anon_sym_and] = ACTIONS(6844), - [anon_sym_bitor] = ACTIONS(6844), - [anon_sym_xor] = ACTIONS(6844), - [anon_sym_bitand] = ACTIONS(6844), - [anon_sym_not_eq] = ACTIONS(6844), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DOT] = ACTIONS(6844), - [anon_sym_DOT_STAR] = ACTIONS(6846), - [anon_sym_DASH_GT] = ACTIONS(6846), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6844), - [anon_sym_override] = ACTIONS(6844), - [anon_sym_requires] = ACTIONS(6844), - [anon_sym_COLON_RBRACK] = ACTIONS(6846), - }, - [STATE(2045)] = { - [sym_template_argument_list] = STATE(1956), - [sym_identifier] = ACTIONS(6746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6758), - [anon_sym_COMMA] = ACTIONS(6758), - [anon_sym_RPAREN] = ACTIONS(6758), - [anon_sym_LPAREN2] = ACTIONS(6748), - [anon_sym_TILDE] = ACTIONS(6751), - [anon_sym_DASH] = ACTIONS(6753), - [anon_sym_PLUS] = ACTIONS(6753), - [anon_sym_STAR] = ACTIONS(6748), - [anon_sym_SLASH] = ACTIONS(6753), - [anon_sym_PERCENT] = ACTIONS(6758), - [anon_sym_PIPE_PIPE] = ACTIONS(6758), - [anon_sym_AMP_AMP] = ACTIONS(6748), - [anon_sym_PIPE] = ACTIONS(6753), - [anon_sym_CARET] = ACTIONS(6758), - [anon_sym_AMP] = ACTIONS(6755), - [anon_sym_EQ_EQ] = ACTIONS(6758), - [anon_sym_BANG_EQ] = ACTIONS(6758), - [anon_sym_GT] = ACTIONS(6753), - [anon_sym_GT_EQ] = ACTIONS(6758), - [anon_sym_LT_EQ] = ACTIONS(6753), - [anon_sym_LT] = ACTIONS(7037), - [anon_sym_LT_LT] = ACTIONS(6758), - [anon_sym_GT_GT] = ACTIONS(6758), - [anon_sym_SEMI] = ACTIONS(6748), - [anon_sym___extension__] = ACTIONS(6746), - [anon_sym_virtual] = ACTIONS(6746), - [anon_sym_extern] = ACTIONS(6746), - [anon_sym___attribute__] = ACTIONS(6746), - [anon_sym___attribute] = ACTIONS(6746), - [anon_sym_COLON_COLON] = ACTIONS(6748), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6751), - [anon_sym___declspec] = ACTIONS(6746), - [anon_sym___based] = ACTIONS(6746), - [anon_sym___cdecl] = ACTIONS(6746), - [anon_sym___clrcall] = ACTIONS(6746), - [anon_sym___stdcall] = ACTIONS(6746), - [anon_sym___fastcall] = ACTIONS(6746), - [anon_sym___thiscall] = ACTIONS(6746), - [anon_sym___vectorcall] = ACTIONS(6746), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_RBRACE] = ACTIONS(6758), - [anon_sym_LBRACK] = ACTIONS(6755), - [anon_sym_static] = ACTIONS(6746), - [anon_sym_register] = ACTIONS(6746), - [anon_sym_inline] = ACTIONS(6746), - [anon_sym___inline] = ACTIONS(6746), - [anon_sym___inline__] = ACTIONS(6746), - [anon_sym___forceinline] = ACTIONS(6746), - [anon_sym_thread_local] = ACTIONS(6746), - [anon_sym___thread] = ACTIONS(6746), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6746), - [anon_sym_volatile] = ACTIONS(6746), - [anon_sym_restrict] = ACTIONS(6746), - [anon_sym___restrict__] = ACTIONS(6746), - [anon_sym__Atomic] = ACTIONS(6746), - [anon_sym__Noreturn] = ACTIONS(6746), - [anon_sym_noreturn] = ACTIONS(6746), - [anon_sym__Nonnull] = ACTIONS(6746), - [anon_sym_mutable] = ACTIONS(6746), - [anon_sym_constinit] = ACTIONS(6746), - [anon_sym_consteval] = ACTIONS(6746), - [anon_sym_alignas] = ACTIONS(6746), - [anon_sym__Alignas] = ACTIONS(6746), - [anon_sym_QMARK] = ACTIONS(6758), - [anon_sym_LT_EQ_GT] = ACTIONS(6758), - [anon_sym_or] = ACTIONS(6753), - [anon_sym_and] = ACTIONS(6753), - [anon_sym_bitor] = ACTIONS(6753), - [anon_sym_xor] = ACTIONS(6753), - [anon_sym_bitand] = ACTIONS(6753), - [anon_sym_not_eq] = ACTIONS(6753), - [anon_sym_DASH_DASH] = ACTIONS(6758), - [anon_sym_PLUS_PLUS] = ACTIONS(6758), - [anon_sym_DOT] = ACTIONS(6753), - [anon_sym_DOT_STAR] = ACTIONS(6758), - [anon_sym_DASH_GT] = ACTIONS(6758), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(6746), - [anon_sym_template] = ACTIONS(6746), - [anon_sym_operator] = ACTIONS(6746), - [anon_sym_LBRACK_COLON] = ACTIONS(6751), - }, - [STATE(2046)] = { - [sym_attribute_specifier] = STATE(2112), - [sym_identifier] = ACTIONS(7095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7097), - [anon_sym_COMMA] = ACTIONS(7097), - [anon_sym_RPAREN] = ACTIONS(7097), - [aux_sym_preproc_if_token2] = ACTIONS(7097), - [aux_sym_preproc_else_token1] = ACTIONS(7097), - [aux_sym_preproc_elif_token1] = ACTIONS(7095), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7097), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7097), - [anon_sym_LPAREN2] = ACTIONS(7097), - [anon_sym_DASH] = ACTIONS(7095), - [anon_sym_PLUS] = ACTIONS(7095), - [anon_sym_STAR] = ACTIONS(7095), - [anon_sym_SLASH] = ACTIONS(7095), - [anon_sym_PERCENT] = ACTIONS(7095), - [anon_sym_PIPE_PIPE] = ACTIONS(7097), - [anon_sym_AMP_AMP] = ACTIONS(7097), - [anon_sym_PIPE] = ACTIONS(7095), - [anon_sym_CARET] = ACTIONS(7095), - [anon_sym_AMP] = ACTIONS(7095), - [anon_sym_EQ_EQ] = ACTIONS(7097), - [anon_sym_BANG_EQ] = ACTIONS(7097), - [anon_sym_GT] = ACTIONS(7095), - [anon_sym_GT_EQ] = ACTIONS(7097), - [anon_sym_LT_EQ] = ACTIONS(7095), - [anon_sym_LT] = ACTIONS(7095), - [anon_sym_LT_LT] = ACTIONS(7095), - [anon_sym_GT_GT] = ACTIONS(7095), - [anon_sym_SEMI] = ACTIONS(7097), - [anon_sym___extension__] = ACTIONS(7095), - [anon_sym___attribute__] = ACTIONS(6830), - [anon_sym___attribute] = ACTIONS(6830), - [anon_sym_COLON] = ACTIONS(7095), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7097), - [anon_sym_LBRACE] = ACTIONS(7097), - [anon_sym_RBRACE] = ACTIONS(7097), - [anon_sym_LBRACK] = ACTIONS(7097), - [anon_sym_EQ] = ACTIONS(7095), - [anon_sym_const] = ACTIONS(7095), - [anon_sym_constexpr] = ACTIONS(7095), - [anon_sym_volatile] = ACTIONS(7095), - [anon_sym_restrict] = ACTIONS(7095), - [anon_sym___restrict__] = ACTIONS(7095), - [anon_sym__Atomic] = ACTIONS(7095), - [anon_sym__Noreturn] = ACTIONS(7095), - [anon_sym_noreturn] = ACTIONS(7095), - [anon_sym__Nonnull] = ACTIONS(7095), - [anon_sym_mutable] = ACTIONS(7095), - [anon_sym_constinit] = ACTIONS(7095), - [anon_sym_consteval] = ACTIONS(7095), - [anon_sym_alignas] = ACTIONS(7095), - [anon_sym__Alignas] = ACTIONS(7095), - [anon_sym_QMARK] = ACTIONS(7097), - [anon_sym_STAR_EQ] = ACTIONS(7097), - [anon_sym_SLASH_EQ] = ACTIONS(7097), - [anon_sym_PERCENT_EQ] = ACTIONS(7097), - [anon_sym_PLUS_EQ] = ACTIONS(7097), - [anon_sym_DASH_EQ] = ACTIONS(7097), - [anon_sym_LT_LT_EQ] = ACTIONS(7097), - [anon_sym_GT_GT_EQ] = ACTIONS(7097), - [anon_sym_AMP_EQ] = ACTIONS(7097), - [anon_sym_CARET_EQ] = ACTIONS(7097), - [anon_sym_PIPE_EQ] = ACTIONS(7097), - [anon_sym_and_eq] = ACTIONS(7095), - [anon_sym_or_eq] = ACTIONS(7095), - [anon_sym_xor_eq] = ACTIONS(7095), - [anon_sym_LT_EQ_GT] = ACTIONS(7097), - [anon_sym_or] = ACTIONS(7095), - [anon_sym_and] = ACTIONS(7095), - [anon_sym_bitor] = ACTIONS(7095), - [anon_sym_xor] = ACTIONS(7095), - [anon_sym_bitand] = ACTIONS(7095), - [anon_sym_not_eq] = ACTIONS(7095), - [anon_sym_DASH_DASH] = ACTIONS(7097), - [anon_sym_PLUS_PLUS] = ACTIONS(7097), - [anon_sym_DOT] = ACTIONS(7095), - [anon_sym_DOT_STAR] = ACTIONS(7097), - [anon_sym_DASH_GT] = ACTIONS(7097), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7095), - [anon_sym_override] = ACTIONS(7095), - [anon_sym_requires] = ACTIONS(7095), - [anon_sym_COLON_RBRACK] = ACTIONS(7097), - }, - [STATE(2047)] = { - [sym_attribute_specifier] = STATE(2114), - [sym_identifier] = ACTIONS(7099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7101), - [anon_sym_COMMA] = ACTIONS(7101), - [anon_sym_RPAREN] = ACTIONS(7101), - [aux_sym_preproc_if_token2] = ACTIONS(7101), - [aux_sym_preproc_else_token1] = ACTIONS(7101), - [aux_sym_preproc_elif_token1] = ACTIONS(7099), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7101), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7101), - [anon_sym_LPAREN2] = ACTIONS(7101), - [anon_sym_DASH] = ACTIONS(7099), - [anon_sym_PLUS] = ACTIONS(7099), - [anon_sym_STAR] = ACTIONS(7099), - [anon_sym_SLASH] = ACTIONS(7099), - [anon_sym_PERCENT] = ACTIONS(7099), - [anon_sym_PIPE_PIPE] = ACTIONS(7101), - [anon_sym_AMP_AMP] = ACTIONS(7101), - [anon_sym_PIPE] = ACTIONS(7099), - [anon_sym_CARET] = ACTIONS(7099), - [anon_sym_AMP] = ACTIONS(7099), - [anon_sym_EQ_EQ] = ACTIONS(7101), - [anon_sym_BANG_EQ] = ACTIONS(7101), - [anon_sym_GT] = ACTIONS(7099), - [anon_sym_GT_EQ] = ACTIONS(7101), - [anon_sym_LT_EQ] = ACTIONS(7099), - [anon_sym_LT] = ACTIONS(7099), - [anon_sym_LT_LT] = ACTIONS(7099), - [anon_sym_GT_GT] = ACTIONS(7099), - [anon_sym_SEMI] = ACTIONS(7101), - [anon_sym___extension__] = ACTIONS(7099), - [anon_sym___attribute__] = ACTIONS(6830), - [anon_sym___attribute] = ACTIONS(6830), - [anon_sym_COLON] = ACTIONS(7099), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7101), - [anon_sym_LBRACE] = ACTIONS(7101), - [anon_sym_RBRACE] = ACTIONS(7101), - [anon_sym_LBRACK] = ACTIONS(7101), - [anon_sym_EQ] = ACTIONS(7099), - [anon_sym_const] = ACTIONS(7099), - [anon_sym_constexpr] = ACTIONS(7099), - [anon_sym_volatile] = ACTIONS(7099), - [anon_sym_restrict] = ACTIONS(7099), - [anon_sym___restrict__] = ACTIONS(7099), - [anon_sym__Atomic] = ACTIONS(7099), - [anon_sym__Noreturn] = ACTIONS(7099), - [anon_sym_noreturn] = ACTIONS(7099), - [anon_sym__Nonnull] = ACTIONS(7099), - [anon_sym_mutable] = ACTIONS(7099), - [anon_sym_constinit] = ACTIONS(7099), - [anon_sym_consteval] = ACTIONS(7099), - [anon_sym_alignas] = ACTIONS(7099), - [anon_sym__Alignas] = ACTIONS(7099), - [anon_sym_QMARK] = ACTIONS(7101), - [anon_sym_STAR_EQ] = ACTIONS(7101), - [anon_sym_SLASH_EQ] = ACTIONS(7101), - [anon_sym_PERCENT_EQ] = ACTIONS(7101), - [anon_sym_PLUS_EQ] = ACTIONS(7101), - [anon_sym_DASH_EQ] = ACTIONS(7101), - [anon_sym_LT_LT_EQ] = ACTIONS(7101), - [anon_sym_GT_GT_EQ] = ACTIONS(7101), - [anon_sym_AMP_EQ] = ACTIONS(7101), - [anon_sym_CARET_EQ] = ACTIONS(7101), - [anon_sym_PIPE_EQ] = ACTIONS(7101), - [anon_sym_and_eq] = ACTIONS(7099), - [anon_sym_or_eq] = ACTIONS(7099), - [anon_sym_xor_eq] = ACTIONS(7099), - [anon_sym_LT_EQ_GT] = ACTIONS(7101), - [anon_sym_or] = ACTIONS(7099), - [anon_sym_and] = ACTIONS(7099), - [anon_sym_bitor] = ACTIONS(7099), - [anon_sym_xor] = ACTIONS(7099), - [anon_sym_bitand] = ACTIONS(7099), - [anon_sym_not_eq] = ACTIONS(7099), - [anon_sym_DASH_DASH] = ACTIONS(7101), - [anon_sym_PLUS_PLUS] = ACTIONS(7101), - [anon_sym_DOT] = ACTIONS(7099), - [anon_sym_DOT_STAR] = ACTIONS(7101), - [anon_sym_DASH_GT] = ACTIONS(7101), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7099), - [anon_sym_override] = ACTIONS(7099), - [anon_sym_requires] = ACTIONS(7099), - [anon_sym_COLON_RBRACK] = ACTIONS(7101), - }, - [STATE(2048)] = { - [sym_attribute_specifier] = STATE(2117), - [sym_identifier] = ACTIONS(7103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7105), - [anon_sym_COMMA] = ACTIONS(7105), - [anon_sym_RPAREN] = ACTIONS(7105), - [aux_sym_preproc_if_token2] = ACTIONS(7105), - [aux_sym_preproc_else_token1] = ACTIONS(7105), - [aux_sym_preproc_elif_token1] = ACTIONS(7103), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7105), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7105), - [anon_sym_LPAREN2] = ACTIONS(7105), - [anon_sym_DASH] = ACTIONS(7103), - [anon_sym_PLUS] = ACTIONS(7103), - [anon_sym_STAR] = ACTIONS(7103), - [anon_sym_SLASH] = ACTIONS(7103), - [anon_sym_PERCENT] = ACTIONS(7103), - [anon_sym_PIPE_PIPE] = ACTIONS(7105), - [anon_sym_AMP_AMP] = ACTIONS(7105), - [anon_sym_PIPE] = ACTIONS(7103), - [anon_sym_CARET] = ACTIONS(7103), - [anon_sym_AMP] = ACTIONS(7103), - [anon_sym_EQ_EQ] = ACTIONS(7105), - [anon_sym_BANG_EQ] = ACTIONS(7105), - [anon_sym_GT] = ACTIONS(7103), - [anon_sym_GT_EQ] = ACTIONS(7105), - [anon_sym_LT_EQ] = ACTIONS(7103), - [anon_sym_LT] = ACTIONS(7103), - [anon_sym_LT_LT] = ACTIONS(7103), - [anon_sym_GT_GT] = ACTIONS(7103), - [anon_sym_SEMI] = ACTIONS(7105), - [anon_sym___extension__] = ACTIONS(7103), - [anon_sym___attribute__] = ACTIONS(6830), - [anon_sym___attribute] = ACTIONS(6830), - [anon_sym_COLON] = ACTIONS(7103), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7105), - [anon_sym_LBRACE] = ACTIONS(7105), - [anon_sym_RBRACE] = ACTIONS(7105), - [anon_sym_LBRACK] = ACTIONS(7105), - [anon_sym_EQ] = ACTIONS(7103), - [anon_sym_const] = ACTIONS(7103), - [anon_sym_constexpr] = ACTIONS(7103), - [anon_sym_volatile] = ACTIONS(7103), - [anon_sym_restrict] = ACTIONS(7103), - [anon_sym___restrict__] = ACTIONS(7103), - [anon_sym__Atomic] = ACTIONS(7103), - [anon_sym__Noreturn] = ACTIONS(7103), - [anon_sym_noreturn] = ACTIONS(7103), - [anon_sym__Nonnull] = ACTIONS(7103), - [anon_sym_mutable] = ACTIONS(7103), - [anon_sym_constinit] = ACTIONS(7103), - [anon_sym_consteval] = ACTIONS(7103), - [anon_sym_alignas] = ACTIONS(7103), - [anon_sym__Alignas] = ACTIONS(7103), - [anon_sym_QMARK] = ACTIONS(7105), - [anon_sym_STAR_EQ] = ACTIONS(7105), - [anon_sym_SLASH_EQ] = ACTIONS(7105), - [anon_sym_PERCENT_EQ] = ACTIONS(7105), - [anon_sym_PLUS_EQ] = ACTIONS(7105), - [anon_sym_DASH_EQ] = ACTIONS(7105), - [anon_sym_LT_LT_EQ] = ACTIONS(7105), - [anon_sym_GT_GT_EQ] = ACTIONS(7105), - [anon_sym_AMP_EQ] = ACTIONS(7105), - [anon_sym_CARET_EQ] = ACTIONS(7105), - [anon_sym_PIPE_EQ] = ACTIONS(7105), - [anon_sym_and_eq] = ACTIONS(7103), - [anon_sym_or_eq] = ACTIONS(7103), - [anon_sym_xor_eq] = ACTIONS(7103), - [anon_sym_LT_EQ_GT] = ACTIONS(7105), - [anon_sym_or] = ACTIONS(7103), - [anon_sym_and] = ACTIONS(7103), - [anon_sym_bitor] = ACTIONS(7103), - [anon_sym_xor] = ACTIONS(7103), - [anon_sym_bitand] = ACTIONS(7103), - [anon_sym_not_eq] = ACTIONS(7103), - [anon_sym_DASH_DASH] = ACTIONS(7105), - [anon_sym_PLUS_PLUS] = ACTIONS(7105), - [anon_sym_DOT] = ACTIONS(7103), - [anon_sym_DOT_STAR] = ACTIONS(7105), - [anon_sym_DASH_GT] = ACTIONS(7105), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7103), - [anon_sym_override] = ACTIONS(7103), - [anon_sym_requires] = ACTIONS(7103), - [anon_sym_COLON_RBRACK] = ACTIONS(7105), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2049)] = { - [sym_identifier] = ACTIONS(7107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7109), - [anon_sym_COMMA] = ACTIONS(7109), - [anon_sym_RPAREN] = ACTIONS(7109), - [aux_sym_preproc_if_token2] = ACTIONS(7109), - [aux_sym_preproc_else_token1] = ACTIONS(7109), - [aux_sym_preproc_elif_token1] = ACTIONS(7107), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7109), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7109), - [anon_sym_LPAREN2] = ACTIONS(7109), - [anon_sym_DASH] = ACTIONS(7107), - [anon_sym_PLUS] = ACTIONS(7107), - [anon_sym_STAR] = ACTIONS(7107), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7107), - [anon_sym_PIPE_PIPE] = ACTIONS(7109), - [anon_sym_AMP_AMP] = ACTIONS(7109), - [anon_sym_PIPE] = ACTIONS(7107), - [anon_sym_CARET] = ACTIONS(7107), - [anon_sym_AMP] = ACTIONS(7107), - [anon_sym_EQ_EQ] = ACTIONS(7109), - [anon_sym_BANG_EQ] = ACTIONS(7109), - [anon_sym_GT] = ACTIONS(7107), - [anon_sym_GT_EQ] = ACTIONS(7109), - [anon_sym_LT_EQ] = ACTIONS(7107), - [anon_sym_LT] = ACTIONS(7107), - [anon_sym_LT_LT] = ACTIONS(7107), - [anon_sym_GT_GT] = ACTIONS(7107), - [anon_sym_SEMI] = ACTIONS(7109), - [anon_sym___extension__] = ACTIONS(7107), - [anon_sym___attribute__] = ACTIONS(7107), - [anon_sym___attribute] = ACTIONS(7107), - [anon_sym_COLON] = ACTIONS(7107), - [anon_sym_COLON_COLON] = ACTIONS(7109), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7109), - [anon_sym_LBRACE] = ACTIONS(7109), - [anon_sym_RBRACE] = ACTIONS(7109), - [anon_sym_LBRACK] = ACTIONS(7109), - [anon_sym_EQ] = ACTIONS(7107), - [anon_sym_const] = ACTIONS(7107), - [anon_sym_constexpr] = ACTIONS(7107), - [anon_sym_volatile] = ACTIONS(7107), - [anon_sym_restrict] = ACTIONS(7107), - [anon_sym___restrict__] = ACTIONS(7107), - [anon_sym__Atomic] = ACTIONS(7107), - [anon_sym__Noreturn] = ACTIONS(7107), - [anon_sym_noreturn] = ACTIONS(7107), - [anon_sym__Nonnull] = ACTIONS(7107), - [anon_sym_mutable] = ACTIONS(7107), - [anon_sym_constinit] = ACTIONS(7107), - [anon_sym_consteval] = ACTIONS(7107), - [anon_sym_alignas] = ACTIONS(7107), - [anon_sym__Alignas] = ACTIONS(7107), - [anon_sym_QMARK] = ACTIONS(7109), - [anon_sym_STAR_EQ] = ACTIONS(7109), - [anon_sym_SLASH_EQ] = ACTIONS(7109), - [anon_sym_PERCENT_EQ] = ACTIONS(7109), - [anon_sym_PLUS_EQ] = ACTIONS(7109), - [anon_sym_DASH_EQ] = ACTIONS(7109), - [anon_sym_LT_LT_EQ] = ACTIONS(7109), - [anon_sym_GT_GT_EQ] = ACTIONS(7109), - [anon_sym_AMP_EQ] = ACTIONS(7109), - [anon_sym_CARET_EQ] = ACTIONS(7109), - [anon_sym_PIPE_EQ] = ACTIONS(7109), - [anon_sym_and_eq] = ACTIONS(7107), - [anon_sym_or_eq] = ACTIONS(7107), - [anon_sym_xor_eq] = ACTIONS(7107), - [anon_sym_LT_EQ_GT] = ACTIONS(7109), - [anon_sym_or] = ACTIONS(7107), - [anon_sym_and] = ACTIONS(7107), - [anon_sym_bitor] = ACTIONS(7107), - [anon_sym_xor] = ACTIONS(7107), - [anon_sym_bitand] = ACTIONS(7107), - [anon_sym_not_eq] = ACTIONS(7107), - [anon_sym_DASH_DASH] = ACTIONS(7109), - [anon_sym_PLUS_PLUS] = ACTIONS(7109), - [anon_sym_DOT] = ACTIONS(7107), - [anon_sym_DOT_STAR] = ACTIONS(7109), - [anon_sym_DASH_GT] = ACTIONS(7109), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7107), - [anon_sym_override] = ACTIONS(7107), - [anon_sym_requires] = ACTIONS(7107), - [anon_sym_COLON_RBRACK] = ACTIONS(7109), - }, - [STATE(2050)] = { - [sym_function_definition] = STATE(860), - [sym_declaration] = STATE(860), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6309), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_call_modifier] = STATE(2615), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10967), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(5610), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(5611), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(5898), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(7039), + [STATE(1961)] = { + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(7541), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9010), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8555), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_template_parameter_list] = STATE(1097), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(6284), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7966), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(2650), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6582), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(6584), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(6586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym___based] = ACTIONS(53), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -306385,70 +309924,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), + [sym_primitive_type] = ACTIONS(3466), [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7111), - [anon_sym_struct] = ACTIONS(7113), - [anon_sym_union] = ACTIONS(7115), - [anon_sym_typename] = ACTIONS(5102), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_for] = ACTIONS(6590), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2051)] = { - [sym_function_definition] = STATE(858), - [sym_declaration] = STATE(858), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6309), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_call_modifier] = STATE(2615), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(11066), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(5610), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(5611), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(5898), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(7039), + [STATE(1962)] = { + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(7563), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9050), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8555), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_template_parameter_list] = STATE(1094), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(6284), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7966), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(2650), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6582), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(6584), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(6586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym___based] = ACTIONS(53), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -306471,242 +310024,884 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), + [sym_primitive_type] = ACTIONS(3466), [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7117), - [anon_sym_struct] = ACTIONS(7119), - [anon_sym_union] = ACTIONS(7121), - [anon_sym_typename] = ACTIONS(5102), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_for] = ACTIONS(6592), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2052)] = { - [sym_identifier] = ACTIONS(6844), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6846), - [anon_sym_COMMA] = ACTIONS(6846), - [anon_sym_RPAREN] = ACTIONS(6846), - [anon_sym_LPAREN2] = ACTIONS(6846), - [anon_sym_TILDE] = ACTIONS(6846), - [anon_sym_DASH] = ACTIONS(6844), - [anon_sym_PLUS] = ACTIONS(6844), - [anon_sym_STAR] = ACTIONS(6846), - [anon_sym_SLASH] = ACTIONS(6844), - [anon_sym_PERCENT] = ACTIONS(6846), - [anon_sym_PIPE_PIPE] = ACTIONS(6846), - [anon_sym_AMP_AMP] = ACTIONS(6846), - [anon_sym_PIPE] = ACTIONS(6844), - [anon_sym_CARET] = ACTIONS(6846), - [anon_sym_AMP] = ACTIONS(6844), - [anon_sym_EQ_EQ] = ACTIONS(6846), - [anon_sym_BANG_EQ] = ACTIONS(6846), - [anon_sym_GT] = ACTIONS(6844), - [anon_sym_GT_EQ] = ACTIONS(6846), - [anon_sym_LT_EQ] = ACTIONS(6844), - [anon_sym_LT] = ACTIONS(6844), - [anon_sym_LT_LT] = ACTIONS(6846), - [anon_sym_GT_GT] = ACTIONS(6846), - [anon_sym_SEMI] = ACTIONS(6846), - [anon_sym___extension__] = ACTIONS(6844), - [anon_sym_virtual] = ACTIONS(6844), - [anon_sym_extern] = ACTIONS(6844), - [anon_sym___attribute__] = ACTIONS(6844), - [anon_sym___attribute] = ACTIONS(6844), - [anon_sym_COLON_COLON] = ACTIONS(6846), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6846), - [anon_sym___declspec] = ACTIONS(6844), - [anon_sym___based] = ACTIONS(6844), - [anon_sym___cdecl] = ACTIONS(6844), - [anon_sym___clrcall] = ACTIONS(6844), - [anon_sym___stdcall] = ACTIONS(6844), - [anon_sym___fastcall] = ACTIONS(6844), - [anon_sym___thiscall] = ACTIONS(6844), - [anon_sym___vectorcall] = ACTIONS(6844), - [anon_sym_LBRACE] = ACTIONS(6846), - [anon_sym_RBRACE] = ACTIONS(6846), - [anon_sym_LBRACK] = ACTIONS(6844), - [anon_sym_static] = ACTIONS(6844), - [anon_sym_EQ] = ACTIONS(6844), - [anon_sym_register] = ACTIONS(6844), - [anon_sym_inline] = ACTIONS(6844), - [anon_sym___inline] = ACTIONS(6844), - [anon_sym___inline__] = ACTIONS(6844), - [anon_sym___forceinline] = ACTIONS(6844), - [anon_sym_thread_local] = ACTIONS(6844), - [anon_sym___thread] = ACTIONS(6844), - [anon_sym_const] = ACTIONS(6844), - [anon_sym_constexpr] = ACTIONS(6844), - [anon_sym_volatile] = ACTIONS(6844), - [anon_sym_restrict] = ACTIONS(6844), - [anon_sym___restrict__] = ACTIONS(6844), - [anon_sym__Atomic] = ACTIONS(6844), - [anon_sym__Noreturn] = ACTIONS(6844), - [anon_sym_noreturn] = ACTIONS(6844), - [anon_sym__Nonnull] = ACTIONS(6844), - [anon_sym_mutable] = ACTIONS(6844), - [anon_sym_constinit] = ACTIONS(6844), - [anon_sym_consteval] = ACTIONS(6844), - [anon_sym_alignas] = ACTIONS(6844), - [anon_sym__Alignas] = ACTIONS(6844), - [anon_sym_QMARK] = ACTIONS(6846), - [anon_sym_LT_EQ_GT] = ACTIONS(6846), - [anon_sym_or] = ACTIONS(6844), - [anon_sym_and] = ACTIONS(6844), - [anon_sym_bitor] = ACTIONS(6844), - [anon_sym_xor] = ACTIONS(6844), - [anon_sym_bitand] = ACTIONS(6844), - [anon_sym_not_eq] = ACTIONS(6844), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DOT] = ACTIONS(6844), - [anon_sym_DOT_STAR] = ACTIONS(6846), - [anon_sym_DASH_GT] = ACTIONS(6846), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(6844), - [anon_sym_template] = ACTIONS(6844), - [anon_sym_operator] = ACTIONS(6844), - [anon_sym_LBRACK_COLON] = ACTIONS(6846), + [STATE(1963)] = { + [sym_identifier] = ACTIONS(6594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6596), + [anon_sym_COMMA] = ACTIONS(6596), + [anon_sym_RPAREN] = ACTIONS(6596), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_TILDE] = ACTIONS(6601), + [anon_sym_DASH] = ACTIONS(6603), + [anon_sym_PLUS] = ACTIONS(6603), + [anon_sym_STAR] = ACTIONS(6605), + [anon_sym_SLASH] = ACTIONS(6603), + [anon_sym_PERCENT] = ACTIONS(6603), + [anon_sym_PIPE_PIPE] = ACTIONS(6596), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6603), + [anon_sym_CARET] = ACTIONS(6603), + [anon_sym_AMP] = ACTIONS(6605), + [anon_sym_EQ_EQ] = ACTIONS(6596), + [anon_sym_BANG_EQ] = ACTIONS(6596), + [anon_sym_GT] = ACTIONS(6603), + [anon_sym_GT_EQ] = ACTIONS(6596), + [anon_sym_LT_EQ] = ACTIONS(6603), + [anon_sym_LT] = ACTIONS(6603), + [anon_sym_LT_LT] = ACTIONS(6603), + [anon_sym_GT_GT] = ACTIONS(6603), + [anon_sym_SEMI] = ACTIONS(6596), + [anon_sym___extension__] = ACTIONS(6594), + [anon_sym_virtual] = ACTIONS(6594), + [anon_sym_extern] = ACTIONS(6594), + [anon_sym___attribute__] = ACTIONS(6594), + [anon_sym___attribute] = ACTIONS(6594), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6601), + [anon_sym___declspec] = ACTIONS(6594), + [anon_sym___based] = ACTIONS(6594), + [anon_sym___cdecl] = ACTIONS(6594), + [anon_sym___clrcall] = ACTIONS(6594), + [anon_sym___stdcall] = ACTIONS(6594), + [anon_sym___fastcall] = ACTIONS(6594), + [anon_sym___thiscall] = ACTIONS(6594), + [anon_sym___vectorcall] = ACTIONS(6594), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_RBRACE] = ACTIONS(6596), + [anon_sym_LBRACK] = ACTIONS(6605), + [anon_sym_static] = ACTIONS(6594), + [anon_sym_EQ] = ACTIONS(6603), + [anon_sym_register] = ACTIONS(6594), + [anon_sym_inline] = ACTIONS(6594), + [anon_sym___inline] = ACTIONS(6594), + [anon_sym___inline__] = ACTIONS(6594), + [anon_sym___forceinline] = ACTIONS(6594), + [anon_sym_thread_local] = ACTIONS(6594), + [anon_sym___thread] = ACTIONS(6594), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6594), + [anon_sym_volatile] = ACTIONS(6594), + [anon_sym_restrict] = ACTIONS(6594), + [anon_sym___restrict__] = ACTIONS(6594), + [anon_sym__Atomic] = ACTIONS(6594), + [anon_sym__Noreturn] = ACTIONS(6594), + [anon_sym_noreturn] = ACTIONS(6594), + [anon_sym__Nonnull] = ACTIONS(6594), + [anon_sym_mutable] = ACTIONS(6594), + [anon_sym_constinit] = ACTIONS(6594), + [anon_sym_consteval] = ACTIONS(6594), + [anon_sym_alignas] = ACTIONS(6594), + [anon_sym__Alignas] = ACTIONS(6594), + [anon_sym_QMARK] = ACTIONS(6596), + [anon_sym_STAR_EQ] = ACTIONS(6596), + [anon_sym_SLASH_EQ] = ACTIONS(6596), + [anon_sym_PERCENT_EQ] = ACTIONS(6596), + [anon_sym_PLUS_EQ] = ACTIONS(6596), + [anon_sym_DASH_EQ] = ACTIONS(6596), + [anon_sym_LT_LT_EQ] = ACTIONS(6596), + [anon_sym_GT_GT_EQ] = ACTIONS(6596), + [anon_sym_AMP_EQ] = ACTIONS(6596), + [anon_sym_CARET_EQ] = ACTIONS(6596), + [anon_sym_PIPE_EQ] = ACTIONS(6596), + [anon_sym_and_eq] = ACTIONS(6603), + [anon_sym_or_eq] = ACTIONS(6603), + [anon_sym_xor_eq] = ACTIONS(6603), + [anon_sym_LT_EQ_GT] = ACTIONS(6596), + [anon_sym_or] = ACTIONS(6603), + [anon_sym_and] = ACTIONS(6603), + [anon_sym_bitor] = ACTIONS(6603), + [anon_sym_xor] = ACTIONS(6603), + [anon_sym_bitand] = ACTIONS(6603), + [anon_sym_not_eq] = ACTIONS(6603), + [anon_sym_DASH_DASH] = ACTIONS(6596), + [anon_sym_PLUS_PLUS] = ACTIONS(6596), + [anon_sym_DOT] = ACTIONS(6603), + [anon_sym_DOT_STAR] = ACTIONS(6596), + [anon_sym_DASH_GT] = ACTIONS(6596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6594), + [anon_sym_decltype] = ACTIONS(6594), + [anon_sym_template] = ACTIONS(6594), + [anon_sym_operator] = ACTIONS(6594), + [anon_sym_LBRACK_COLON] = ACTIONS(6601), }, - [STATE(2053)] = { - [sym_attribute_specifier] = STATE(2120), - [sym_identifier] = ACTIONS(7123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7125), - [anon_sym_COMMA] = ACTIONS(7125), - [anon_sym_RPAREN] = ACTIONS(7125), - [aux_sym_preproc_if_token2] = ACTIONS(7125), - [aux_sym_preproc_else_token1] = ACTIONS(7125), - [aux_sym_preproc_elif_token1] = ACTIONS(7123), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7125), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7125), - [anon_sym_LPAREN2] = ACTIONS(7125), - [anon_sym_DASH] = ACTIONS(7123), - [anon_sym_PLUS] = ACTIONS(7123), - [anon_sym_STAR] = ACTIONS(7123), - [anon_sym_SLASH] = ACTIONS(7123), - [anon_sym_PERCENT] = ACTIONS(7123), - [anon_sym_PIPE_PIPE] = ACTIONS(7125), - [anon_sym_AMP_AMP] = ACTIONS(7125), - [anon_sym_PIPE] = ACTIONS(7123), - [anon_sym_CARET] = ACTIONS(7123), - [anon_sym_AMP] = ACTIONS(7123), - [anon_sym_EQ_EQ] = ACTIONS(7125), - [anon_sym_BANG_EQ] = ACTIONS(7125), - [anon_sym_GT] = ACTIONS(7123), - [anon_sym_GT_EQ] = ACTIONS(7125), - [anon_sym_LT_EQ] = ACTIONS(7123), - [anon_sym_LT] = ACTIONS(7123), - [anon_sym_LT_LT] = ACTIONS(7123), - [anon_sym_GT_GT] = ACTIONS(7123), - [anon_sym_SEMI] = ACTIONS(7125), - [anon_sym___extension__] = ACTIONS(7123), - [anon_sym___attribute__] = ACTIONS(6830), - [anon_sym___attribute] = ACTIONS(6830), - [anon_sym_COLON] = ACTIONS(7123), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7125), - [anon_sym_LBRACE] = ACTIONS(7125), - [anon_sym_RBRACE] = ACTIONS(7125), - [anon_sym_LBRACK] = ACTIONS(7125), - [anon_sym_EQ] = ACTIONS(7123), - [anon_sym_const] = ACTIONS(7123), - [anon_sym_constexpr] = ACTIONS(7123), - [anon_sym_volatile] = ACTIONS(7123), - [anon_sym_restrict] = ACTIONS(7123), - [anon_sym___restrict__] = ACTIONS(7123), - [anon_sym__Atomic] = ACTIONS(7123), - [anon_sym__Noreturn] = ACTIONS(7123), - [anon_sym_noreturn] = ACTIONS(7123), - [anon_sym__Nonnull] = ACTIONS(7123), - [anon_sym_mutable] = ACTIONS(7123), - [anon_sym_constinit] = ACTIONS(7123), - [anon_sym_consteval] = ACTIONS(7123), - [anon_sym_alignas] = ACTIONS(7123), - [anon_sym__Alignas] = ACTIONS(7123), - [anon_sym_QMARK] = ACTIONS(7125), - [anon_sym_STAR_EQ] = ACTIONS(7125), - [anon_sym_SLASH_EQ] = ACTIONS(7125), - [anon_sym_PERCENT_EQ] = ACTIONS(7125), - [anon_sym_PLUS_EQ] = ACTIONS(7125), - [anon_sym_DASH_EQ] = ACTIONS(7125), - [anon_sym_LT_LT_EQ] = ACTIONS(7125), - [anon_sym_GT_GT_EQ] = ACTIONS(7125), - [anon_sym_AMP_EQ] = ACTIONS(7125), - [anon_sym_CARET_EQ] = ACTIONS(7125), - [anon_sym_PIPE_EQ] = ACTIONS(7125), - [anon_sym_and_eq] = ACTIONS(7123), - [anon_sym_or_eq] = ACTIONS(7123), - [anon_sym_xor_eq] = ACTIONS(7123), - [anon_sym_LT_EQ_GT] = ACTIONS(7125), - [anon_sym_or] = ACTIONS(7123), - [anon_sym_and] = ACTIONS(7123), - [anon_sym_bitor] = ACTIONS(7123), - [anon_sym_xor] = ACTIONS(7123), - [anon_sym_bitand] = ACTIONS(7123), - [anon_sym_not_eq] = ACTIONS(7123), - [anon_sym_DASH_DASH] = ACTIONS(7125), - [anon_sym_PLUS_PLUS] = ACTIONS(7125), - [anon_sym_DOT] = ACTIONS(7123), - [anon_sym_DOT_STAR] = ACTIONS(7125), - [anon_sym_DASH_GT] = ACTIONS(7125), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7123), - [anon_sym_override] = ACTIONS(7123), - [anon_sym_requires] = ACTIONS(7123), - [anon_sym_COLON_RBRACK] = ACTIONS(7125), + [STATE(1964)] = { + [sym_identifier] = ACTIONS(6608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6610), + [anon_sym_COMMA] = ACTIONS(6610), + [anon_sym_RPAREN] = ACTIONS(6610), + [anon_sym_LPAREN2] = ACTIONS(6610), + [anon_sym_TILDE] = ACTIONS(6610), + [anon_sym_DASH] = ACTIONS(6608), + [anon_sym_PLUS] = ACTIONS(6608), + [anon_sym_STAR] = ACTIONS(6608), + [anon_sym_SLASH] = ACTIONS(6608), + [anon_sym_PERCENT] = ACTIONS(6608), + [anon_sym_PIPE_PIPE] = ACTIONS(6610), + [anon_sym_AMP_AMP] = ACTIONS(6610), + [anon_sym_PIPE] = ACTIONS(6608), + [anon_sym_CARET] = ACTIONS(6608), + [anon_sym_AMP] = ACTIONS(6608), + [anon_sym_EQ_EQ] = ACTIONS(6610), + [anon_sym_BANG_EQ] = ACTIONS(6610), + [anon_sym_GT] = ACTIONS(6608), + [anon_sym_GT_EQ] = ACTIONS(6610), + [anon_sym_LT_EQ] = ACTIONS(6608), + [anon_sym_LT] = ACTIONS(6608), + [anon_sym_LT_LT] = ACTIONS(6608), + [anon_sym_GT_GT] = ACTIONS(6608), + [anon_sym_SEMI] = ACTIONS(6610), + [anon_sym___extension__] = ACTIONS(6608), + [anon_sym_virtual] = ACTIONS(6608), + [anon_sym_extern] = ACTIONS(6608), + [anon_sym___attribute__] = ACTIONS(6608), + [anon_sym___attribute] = ACTIONS(6608), + [anon_sym_COLON_COLON] = ACTIONS(6610), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6610), + [anon_sym___declspec] = ACTIONS(6608), + [anon_sym___based] = ACTIONS(6608), + [anon_sym___cdecl] = ACTIONS(6608), + [anon_sym___clrcall] = ACTIONS(6608), + [anon_sym___stdcall] = ACTIONS(6608), + [anon_sym___fastcall] = ACTIONS(6608), + [anon_sym___thiscall] = ACTIONS(6608), + [anon_sym___vectorcall] = ACTIONS(6608), + [anon_sym_LBRACE] = ACTIONS(6610), + [anon_sym_RBRACE] = ACTIONS(6610), + [anon_sym_LBRACK] = ACTIONS(6608), + [anon_sym_static] = ACTIONS(6608), + [anon_sym_EQ] = ACTIONS(6608), + [anon_sym_register] = ACTIONS(6608), + [anon_sym_inline] = ACTIONS(6608), + [anon_sym___inline] = ACTIONS(6608), + [anon_sym___inline__] = ACTIONS(6608), + [anon_sym___forceinline] = ACTIONS(6608), + [anon_sym_thread_local] = ACTIONS(6608), + [anon_sym___thread] = ACTIONS(6608), + [anon_sym_const] = ACTIONS(6608), + [anon_sym_constexpr] = ACTIONS(6608), + [anon_sym_volatile] = ACTIONS(6608), + [anon_sym_restrict] = ACTIONS(6608), + [anon_sym___restrict__] = ACTIONS(6608), + [anon_sym__Atomic] = ACTIONS(6608), + [anon_sym__Noreturn] = ACTIONS(6608), + [anon_sym_noreturn] = ACTIONS(6608), + [anon_sym__Nonnull] = ACTIONS(6608), + [anon_sym_mutable] = ACTIONS(6608), + [anon_sym_constinit] = ACTIONS(6608), + [anon_sym_consteval] = ACTIONS(6608), + [anon_sym_alignas] = ACTIONS(6608), + [anon_sym__Alignas] = ACTIONS(6608), + [anon_sym_QMARK] = ACTIONS(6610), + [anon_sym_STAR_EQ] = ACTIONS(6610), + [anon_sym_SLASH_EQ] = ACTIONS(6610), + [anon_sym_PERCENT_EQ] = ACTIONS(6610), + [anon_sym_PLUS_EQ] = ACTIONS(6610), + [anon_sym_DASH_EQ] = ACTIONS(6610), + [anon_sym_LT_LT_EQ] = ACTIONS(6610), + [anon_sym_GT_GT_EQ] = ACTIONS(6610), + [anon_sym_AMP_EQ] = ACTIONS(6610), + [anon_sym_CARET_EQ] = ACTIONS(6610), + [anon_sym_PIPE_EQ] = ACTIONS(6610), + [anon_sym_and_eq] = ACTIONS(6608), + [anon_sym_or_eq] = ACTIONS(6608), + [anon_sym_xor_eq] = ACTIONS(6608), + [anon_sym_LT_EQ_GT] = ACTIONS(6610), + [anon_sym_or] = ACTIONS(6608), + [anon_sym_and] = ACTIONS(6608), + [anon_sym_bitor] = ACTIONS(6608), + [anon_sym_xor] = ACTIONS(6608), + [anon_sym_bitand] = ACTIONS(6608), + [anon_sym_not_eq] = ACTIONS(6608), + [anon_sym_DASH_DASH] = ACTIONS(6610), + [anon_sym_PLUS_PLUS] = ACTIONS(6610), + [anon_sym_DOT] = ACTIONS(6608), + [anon_sym_DOT_STAR] = ACTIONS(6610), + [anon_sym_DASH_GT] = ACTIONS(6610), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6608), + [anon_sym_decltype] = ACTIONS(6608), + [anon_sym_template] = ACTIONS(6608), + [anon_sym_operator] = ACTIONS(6608), + [anon_sym_LBRACK_COLON] = ACTIONS(6610), }, - [STATE(2054)] = { - [sym_function_definition] = STATE(469), - [sym_declaration] = STATE(469), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6273), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_call_modifier] = STATE(2618), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10579), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(5610), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(5611), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(5898), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(7039), + [STATE(1965)] = { + [sym_identifier] = ACTIONS(6612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6614), + [anon_sym_COMMA] = ACTIONS(6614), + [anon_sym_RPAREN] = ACTIONS(6614), + [anon_sym_LPAREN2] = ACTIONS(6614), + [anon_sym_TILDE] = ACTIONS(6614), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6612), + [anon_sym_SLASH] = ACTIONS(6612), + [anon_sym_PERCENT] = ACTIONS(6612), + [anon_sym_PIPE_PIPE] = ACTIONS(6614), + [anon_sym_AMP_AMP] = ACTIONS(6614), + [anon_sym_PIPE] = ACTIONS(6612), + [anon_sym_CARET] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(6612), + [anon_sym_EQ_EQ] = ACTIONS(6614), + [anon_sym_BANG_EQ] = ACTIONS(6614), + [anon_sym_GT] = ACTIONS(6612), + [anon_sym_GT_EQ] = ACTIONS(6614), + [anon_sym_LT_EQ] = ACTIONS(6612), + [anon_sym_LT] = ACTIONS(6612), + [anon_sym_LT_LT] = ACTIONS(6612), + [anon_sym_GT_GT] = ACTIONS(6612), + [anon_sym_SEMI] = ACTIONS(6614), + [anon_sym___extension__] = ACTIONS(6612), + [anon_sym_virtual] = ACTIONS(6612), + [anon_sym_extern] = ACTIONS(6612), + [anon_sym___attribute__] = ACTIONS(6612), + [anon_sym___attribute] = ACTIONS(6612), + [anon_sym_COLON_COLON] = ACTIONS(6614), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6614), + [anon_sym___declspec] = ACTIONS(6612), + [anon_sym___based] = ACTIONS(6612), + [anon_sym___cdecl] = ACTIONS(6612), + [anon_sym___clrcall] = ACTIONS(6612), + [anon_sym___stdcall] = ACTIONS(6612), + [anon_sym___fastcall] = ACTIONS(6612), + [anon_sym___thiscall] = ACTIONS(6612), + [anon_sym___vectorcall] = ACTIONS(6612), + [anon_sym_LBRACE] = ACTIONS(6614), + [anon_sym_RBRACE] = ACTIONS(6614), + [anon_sym_LBRACK] = ACTIONS(6612), + [anon_sym_static] = ACTIONS(6612), + [anon_sym_EQ] = ACTIONS(6612), + [anon_sym_register] = ACTIONS(6612), + [anon_sym_inline] = ACTIONS(6612), + [anon_sym___inline] = ACTIONS(6612), + [anon_sym___inline__] = ACTIONS(6612), + [anon_sym___forceinline] = ACTIONS(6612), + [anon_sym_thread_local] = ACTIONS(6612), + [anon_sym___thread] = ACTIONS(6612), + [anon_sym_const] = ACTIONS(6612), + [anon_sym_constexpr] = ACTIONS(6612), + [anon_sym_volatile] = ACTIONS(6612), + [anon_sym_restrict] = ACTIONS(6612), + [anon_sym___restrict__] = ACTIONS(6612), + [anon_sym__Atomic] = ACTIONS(6612), + [anon_sym__Noreturn] = ACTIONS(6612), + [anon_sym_noreturn] = ACTIONS(6612), + [anon_sym__Nonnull] = ACTIONS(6612), + [anon_sym_mutable] = ACTIONS(6612), + [anon_sym_constinit] = ACTIONS(6612), + [anon_sym_consteval] = ACTIONS(6612), + [anon_sym_alignas] = ACTIONS(6612), + [anon_sym__Alignas] = ACTIONS(6612), + [anon_sym_QMARK] = ACTIONS(6614), + [anon_sym_STAR_EQ] = ACTIONS(6614), + [anon_sym_SLASH_EQ] = ACTIONS(6614), + [anon_sym_PERCENT_EQ] = ACTIONS(6614), + [anon_sym_PLUS_EQ] = ACTIONS(6614), + [anon_sym_DASH_EQ] = ACTIONS(6614), + [anon_sym_LT_LT_EQ] = ACTIONS(6614), + [anon_sym_GT_GT_EQ] = ACTIONS(6614), + [anon_sym_AMP_EQ] = ACTIONS(6614), + [anon_sym_CARET_EQ] = ACTIONS(6614), + [anon_sym_PIPE_EQ] = ACTIONS(6614), + [anon_sym_and_eq] = ACTIONS(6612), + [anon_sym_or_eq] = ACTIONS(6612), + [anon_sym_xor_eq] = ACTIONS(6612), + [anon_sym_LT_EQ_GT] = ACTIONS(6614), + [anon_sym_or] = ACTIONS(6612), + [anon_sym_and] = ACTIONS(6612), + [anon_sym_bitor] = ACTIONS(6612), + [anon_sym_xor] = ACTIONS(6612), + [anon_sym_bitand] = ACTIONS(6612), + [anon_sym_not_eq] = ACTIONS(6612), + [anon_sym_DASH_DASH] = ACTIONS(6614), + [anon_sym_PLUS_PLUS] = ACTIONS(6614), + [anon_sym_DOT] = ACTIONS(6612), + [anon_sym_DOT_STAR] = ACTIONS(6614), + [anon_sym_DASH_GT] = ACTIONS(6614), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6612), + [anon_sym_decltype] = ACTIONS(6612), + [anon_sym_template] = ACTIONS(6612), + [anon_sym_operator] = ACTIONS(6612), + [anon_sym_LBRACK_COLON] = ACTIONS(6614), + }, + [STATE(1966)] = { + [sym_identifier] = ACTIONS(6616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6618), + [anon_sym_COMMA] = ACTIONS(6618), + [anon_sym_RPAREN] = ACTIONS(6618), + [anon_sym_LPAREN2] = ACTIONS(6618), + [anon_sym_TILDE] = ACTIONS(6618), + [anon_sym_DASH] = ACTIONS(6616), + [anon_sym_PLUS] = ACTIONS(6616), + [anon_sym_STAR] = ACTIONS(6616), + [anon_sym_SLASH] = ACTIONS(6616), + [anon_sym_PERCENT] = ACTIONS(6616), + [anon_sym_PIPE_PIPE] = ACTIONS(6618), + [anon_sym_AMP_AMP] = ACTIONS(6618), + [anon_sym_PIPE] = ACTIONS(6616), + [anon_sym_CARET] = ACTIONS(6616), + [anon_sym_AMP] = ACTIONS(6616), + [anon_sym_EQ_EQ] = ACTIONS(6618), + [anon_sym_BANG_EQ] = ACTIONS(6618), + [anon_sym_GT] = ACTIONS(6616), + [anon_sym_GT_EQ] = ACTIONS(6618), + [anon_sym_LT_EQ] = ACTIONS(6616), + [anon_sym_LT] = ACTIONS(6616), + [anon_sym_LT_LT] = ACTIONS(6616), + [anon_sym_GT_GT] = ACTIONS(6616), + [anon_sym_SEMI] = ACTIONS(6618), + [anon_sym___extension__] = ACTIONS(6616), + [anon_sym_virtual] = ACTIONS(6616), + [anon_sym_extern] = ACTIONS(6616), + [anon_sym___attribute__] = ACTIONS(6616), + [anon_sym___attribute] = ACTIONS(6616), + [anon_sym_COLON_COLON] = ACTIONS(6618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6618), + [anon_sym___declspec] = ACTIONS(6616), + [anon_sym___based] = ACTIONS(6616), + [anon_sym___cdecl] = ACTIONS(6616), + [anon_sym___clrcall] = ACTIONS(6616), + [anon_sym___stdcall] = ACTIONS(6616), + [anon_sym___fastcall] = ACTIONS(6616), + [anon_sym___thiscall] = ACTIONS(6616), + [anon_sym___vectorcall] = ACTIONS(6616), + [anon_sym_LBRACE] = ACTIONS(6618), + [anon_sym_RBRACE] = ACTIONS(6618), + [anon_sym_LBRACK] = ACTIONS(6616), + [anon_sym_static] = ACTIONS(6616), + [anon_sym_EQ] = ACTIONS(6616), + [anon_sym_register] = ACTIONS(6616), + [anon_sym_inline] = ACTIONS(6616), + [anon_sym___inline] = ACTIONS(6616), + [anon_sym___inline__] = ACTIONS(6616), + [anon_sym___forceinline] = ACTIONS(6616), + [anon_sym_thread_local] = ACTIONS(6616), + [anon_sym___thread] = ACTIONS(6616), + [anon_sym_const] = ACTIONS(6616), + [anon_sym_constexpr] = ACTIONS(6616), + [anon_sym_volatile] = ACTIONS(6616), + [anon_sym_restrict] = ACTIONS(6616), + [anon_sym___restrict__] = ACTIONS(6616), + [anon_sym__Atomic] = ACTIONS(6616), + [anon_sym__Noreturn] = ACTIONS(6616), + [anon_sym_noreturn] = ACTIONS(6616), + [anon_sym__Nonnull] = ACTIONS(6616), + [anon_sym_mutable] = ACTIONS(6616), + [anon_sym_constinit] = ACTIONS(6616), + [anon_sym_consteval] = ACTIONS(6616), + [anon_sym_alignas] = ACTIONS(6616), + [anon_sym__Alignas] = ACTIONS(6616), + [anon_sym_QMARK] = ACTIONS(6618), + [anon_sym_STAR_EQ] = ACTIONS(6618), + [anon_sym_SLASH_EQ] = ACTIONS(6618), + [anon_sym_PERCENT_EQ] = ACTIONS(6618), + [anon_sym_PLUS_EQ] = ACTIONS(6618), + [anon_sym_DASH_EQ] = ACTIONS(6618), + [anon_sym_LT_LT_EQ] = ACTIONS(6618), + [anon_sym_GT_GT_EQ] = ACTIONS(6618), + [anon_sym_AMP_EQ] = ACTIONS(6618), + [anon_sym_CARET_EQ] = ACTIONS(6618), + [anon_sym_PIPE_EQ] = ACTIONS(6618), + [anon_sym_and_eq] = ACTIONS(6616), + [anon_sym_or_eq] = ACTIONS(6616), + [anon_sym_xor_eq] = ACTIONS(6616), + [anon_sym_LT_EQ_GT] = ACTIONS(6618), + [anon_sym_or] = ACTIONS(6616), + [anon_sym_and] = ACTIONS(6616), + [anon_sym_bitor] = ACTIONS(6616), + [anon_sym_xor] = ACTIONS(6616), + [anon_sym_bitand] = ACTIONS(6616), + [anon_sym_not_eq] = ACTIONS(6616), + [anon_sym_DASH_DASH] = ACTIONS(6618), + [anon_sym_PLUS_PLUS] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(6616), + [anon_sym_DOT_STAR] = ACTIONS(6618), + [anon_sym_DASH_GT] = ACTIONS(6618), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6616), + [anon_sym_decltype] = ACTIONS(6616), + [anon_sym_template] = ACTIONS(6616), + [anon_sym_operator] = ACTIONS(6616), + [anon_sym_LBRACK_COLON] = ACTIONS(6618), + }, + [STATE(1967)] = { + [sym_identifier] = ACTIONS(6620), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6622), + [anon_sym_COMMA] = ACTIONS(6622), + [anon_sym_RPAREN] = ACTIONS(6622), + [anon_sym_LPAREN2] = ACTIONS(6622), + [anon_sym_TILDE] = ACTIONS(6622), + [anon_sym_DASH] = ACTIONS(6620), + [anon_sym_PLUS] = ACTIONS(6620), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_PERCENT] = ACTIONS(6620), + [anon_sym_PIPE_PIPE] = ACTIONS(6622), + [anon_sym_AMP_AMP] = ACTIONS(6622), + [anon_sym_PIPE] = ACTIONS(6620), + [anon_sym_CARET] = ACTIONS(6620), + [anon_sym_AMP] = ACTIONS(6620), + [anon_sym_EQ_EQ] = ACTIONS(6622), + [anon_sym_BANG_EQ] = ACTIONS(6622), + [anon_sym_GT] = ACTIONS(6620), + [anon_sym_GT_EQ] = ACTIONS(6622), + [anon_sym_LT_EQ] = ACTIONS(6620), + [anon_sym_LT] = ACTIONS(6620), + [anon_sym_LT_LT] = ACTIONS(6620), + [anon_sym_GT_GT] = ACTIONS(6620), + [anon_sym_SEMI] = ACTIONS(6622), + [anon_sym___extension__] = ACTIONS(6620), + [anon_sym_virtual] = ACTIONS(6620), + [anon_sym_extern] = ACTIONS(6620), + [anon_sym___attribute__] = ACTIONS(6620), + [anon_sym___attribute] = ACTIONS(6620), + [anon_sym_COLON_COLON] = ACTIONS(6622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6622), + [anon_sym___declspec] = ACTIONS(6620), + [anon_sym___based] = ACTIONS(6620), + [anon_sym___cdecl] = ACTIONS(6620), + [anon_sym___clrcall] = ACTIONS(6620), + [anon_sym___stdcall] = ACTIONS(6620), + [anon_sym___fastcall] = ACTIONS(6620), + [anon_sym___thiscall] = ACTIONS(6620), + [anon_sym___vectorcall] = ACTIONS(6620), + [anon_sym_LBRACE] = ACTIONS(6622), + [anon_sym_RBRACE] = ACTIONS(6622), + [anon_sym_LBRACK] = ACTIONS(6620), + [anon_sym_static] = ACTIONS(6620), + [anon_sym_EQ] = ACTIONS(6620), + [anon_sym_register] = ACTIONS(6620), + [anon_sym_inline] = ACTIONS(6620), + [anon_sym___inline] = ACTIONS(6620), + [anon_sym___inline__] = ACTIONS(6620), + [anon_sym___forceinline] = ACTIONS(6620), + [anon_sym_thread_local] = ACTIONS(6620), + [anon_sym___thread] = ACTIONS(6620), + [anon_sym_const] = ACTIONS(6620), + [anon_sym_constexpr] = ACTIONS(6620), + [anon_sym_volatile] = ACTIONS(6620), + [anon_sym_restrict] = ACTIONS(6620), + [anon_sym___restrict__] = ACTIONS(6620), + [anon_sym__Atomic] = ACTIONS(6620), + [anon_sym__Noreturn] = ACTIONS(6620), + [anon_sym_noreturn] = ACTIONS(6620), + [anon_sym__Nonnull] = ACTIONS(6620), + [anon_sym_mutable] = ACTIONS(6620), + [anon_sym_constinit] = ACTIONS(6620), + [anon_sym_consteval] = ACTIONS(6620), + [anon_sym_alignas] = ACTIONS(6620), + [anon_sym__Alignas] = ACTIONS(6620), + [anon_sym_QMARK] = ACTIONS(6622), + [anon_sym_STAR_EQ] = ACTIONS(6622), + [anon_sym_SLASH_EQ] = ACTIONS(6622), + [anon_sym_PERCENT_EQ] = ACTIONS(6622), + [anon_sym_PLUS_EQ] = ACTIONS(6622), + [anon_sym_DASH_EQ] = ACTIONS(6622), + [anon_sym_LT_LT_EQ] = ACTIONS(6622), + [anon_sym_GT_GT_EQ] = ACTIONS(6622), + [anon_sym_AMP_EQ] = ACTIONS(6622), + [anon_sym_CARET_EQ] = ACTIONS(6622), + [anon_sym_PIPE_EQ] = ACTIONS(6622), + [anon_sym_and_eq] = ACTIONS(6620), + [anon_sym_or_eq] = ACTIONS(6620), + [anon_sym_xor_eq] = ACTIONS(6620), + [anon_sym_LT_EQ_GT] = ACTIONS(6622), + [anon_sym_or] = ACTIONS(6620), + [anon_sym_and] = ACTIONS(6620), + [anon_sym_bitor] = ACTIONS(6620), + [anon_sym_xor] = ACTIONS(6620), + [anon_sym_bitand] = ACTIONS(6620), + [anon_sym_not_eq] = ACTIONS(6620), + [anon_sym_DASH_DASH] = ACTIONS(6622), + [anon_sym_PLUS_PLUS] = ACTIONS(6622), + [anon_sym_DOT] = ACTIONS(6620), + [anon_sym_DOT_STAR] = ACTIONS(6622), + [anon_sym_DASH_GT] = ACTIONS(6622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6620), + [anon_sym_decltype] = ACTIONS(6620), + [anon_sym_template] = ACTIONS(6620), + [anon_sym_operator] = ACTIONS(6620), + [anon_sym_LBRACK_COLON] = ACTIONS(6622), + }, + [STATE(1968)] = { + [sym_identifier] = ACTIONS(6624), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6626), + [anon_sym_COMMA] = ACTIONS(6626), + [anon_sym_RPAREN] = ACTIONS(6626), + [anon_sym_LPAREN2] = ACTIONS(6626), + [anon_sym_TILDE] = ACTIONS(6626), + [anon_sym_DASH] = ACTIONS(6624), + [anon_sym_PLUS] = ACTIONS(6624), + [anon_sym_STAR] = ACTIONS(6624), + [anon_sym_SLASH] = ACTIONS(6624), + [anon_sym_PERCENT] = ACTIONS(6624), + [anon_sym_PIPE_PIPE] = ACTIONS(6626), + [anon_sym_AMP_AMP] = ACTIONS(6626), + [anon_sym_PIPE] = ACTIONS(6624), + [anon_sym_CARET] = ACTIONS(6624), + [anon_sym_AMP] = ACTIONS(6624), + [anon_sym_EQ_EQ] = ACTIONS(6626), + [anon_sym_BANG_EQ] = ACTIONS(6626), + [anon_sym_GT] = ACTIONS(6624), + [anon_sym_GT_EQ] = ACTIONS(6626), + [anon_sym_LT_EQ] = ACTIONS(6624), + [anon_sym_LT] = ACTIONS(6624), + [anon_sym_LT_LT] = ACTIONS(6624), + [anon_sym_GT_GT] = ACTIONS(6624), + [anon_sym_SEMI] = ACTIONS(6626), + [anon_sym___extension__] = ACTIONS(6624), + [anon_sym_virtual] = ACTIONS(6624), + [anon_sym_extern] = ACTIONS(6624), + [anon_sym___attribute__] = ACTIONS(6624), + [anon_sym___attribute] = ACTIONS(6624), + [anon_sym_COLON_COLON] = ACTIONS(6626), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6626), + [anon_sym___declspec] = ACTIONS(6624), + [anon_sym___based] = ACTIONS(6624), + [anon_sym___cdecl] = ACTIONS(6624), + [anon_sym___clrcall] = ACTIONS(6624), + [anon_sym___stdcall] = ACTIONS(6624), + [anon_sym___fastcall] = ACTIONS(6624), + [anon_sym___thiscall] = ACTIONS(6624), + [anon_sym___vectorcall] = ACTIONS(6624), + [anon_sym_LBRACE] = ACTIONS(6626), + [anon_sym_RBRACE] = ACTIONS(6626), + [anon_sym_LBRACK] = ACTIONS(6624), + [anon_sym_static] = ACTIONS(6624), + [anon_sym_EQ] = ACTIONS(6624), + [anon_sym_register] = ACTIONS(6624), + [anon_sym_inline] = ACTIONS(6624), + [anon_sym___inline] = ACTIONS(6624), + [anon_sym___inline__] = ACTIONS(6624), + [anon_sym___forceinline] = ACTIONS(6624), + [anon_sym_thread_local] = ACTIONS(6624), + [anon_sym___thread] = ACTIONS(6624), + [anon_sym_const] = ACTIONS(6624), + [anon_sym_constexpr] = ACTIONS(6624), + [anon_sym_volatile] = ACTIONS(6624), + [anon_sym_restrict] = ACTIONS(6624), + [anon_sym___restrict__] = ACTIONS(6624), + [anon_sym__Atomic] = ACTIONS(6624), + [anon_sym__Noreturn] = ACTIONS(6624), + [anon_sym_noreturn] = ACTIONS(6624), + [anon_sym__Nonnull] = ACTIONS(6624), + [anon_sym_mutable] = ACTIONS(6624), + [anon_sym_constinit] = ACTIONS(6624), + [anon_sym_consteval] = ACTIONS(6624), + [anon_sym_alignas] = ACTIONS(6624), + [anon_sym__Alignas] = ACTIONS(6624), + [anon_sym_QMARK] = ACTIONS(6626), + [anon_sym_STAR_EQ] = ACTIONS(6626), + [anon_sym_SLASH_EQ] = ACTIONS(6626), + [anon_sym_PERCENT_EQ] = ACTIONS(6626), + [anon_sym_PLUS_EQ] = ACTIONS(6626), + [anon_sym_DASH_EQ] = ACTIONS(6626), + [anon_sym_LT_LT_EQ] = ACTIONS(6626), + [anon_sym_GT_GT_EQ] = ACTIONS(6626), + [anon_sym_AMP_EQ] = ACTIONS(6626), + [anon_sym_CARET_EQ] = ACTIONS(6626), + [anon_sym_PIPE_EQ] = ACTIONS(6626), + [anon_sym_and_eq] = ACTIONS(6624), + [anon_sym_or_eq] = ACTIONS(6624), + [anon_sym_xor_eq] = ACTIONS(6624), + [anon_sym_LT_EQ_GT] = ACTIONS(6626), + [anon_sym_or] = ACTIONS(6624), + [anon_sym_and] = ACTIONS(6624), + [anon_sym_bitor] = ACTIONS(6624), + [anon_sym_xor] = ACTIONS(6624), + [anon_sym_bitand] = ACTIONS(6624), + [anon_sym_not_eq] = ACTIONS(6624), + [anon_sym_DASH_DASH] = ACTIONS(6626), + [anon_sym_PLUS_PLUS] = ACTIONS(6626), + [anon_sym_DOT] = ACTIONS(6624), + [anon_sym_DOT_STAR] = ACTIONS(6626), + [anon_sym_DASH_GT] = ACTIONS(6626), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6624), + [anon_sym_decltype] = ACTIONS(6624), + [anon_sym_template] = ACTIONS(6624), + [anon_sym_operator] = ACTIONS(6624), + [anon_sym_LBRACK_COLON] = ACTIONS(6626), + }, + [STATE(1969)] = { + [sym_identifier] = ACTIONS(6628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6630), + [anon_sym_COMMA] = ACTIONS(6630), + [anon_sym_RPAREN] = ACTIONS(6630), + [anon_sym_LPAREN2] = ACTIONS(6630), + [anon_sym_TILDE] = ACTIONS(6630), + [anon_sym_DASH] = ACTIONS(6628), + [anon_sym_PLUS] = ACTIONS(6628), + [anon_sym_STAR] = ACTIONS(6628), + [anon_sym_SLASH] = ACTIONS(6628), + [anon_sym_PERCENT] = ACTIONS(6628), + [anon_sym_PIPE_PIPE] = ACTIONS(6630), + [anon_sym_AMP_AMP] = ACTIONS(6630), + [anon_sym_PIPE] = ACTIONS(6628), + [anon_sym_CARET] = ACTIONS(6628), + [anon_sym_AMP] = ACTIONS(6628), + [anon_sym_EQ_EQ] = ACTIONS(6630), + [anon_sym_BANG_EQ] = ACTIONS(6630), + [anon_sym_GT] = ACTIONS(6628), + [anon_sym_GT_EQ] = ACTIONS(6630), + [anon_sym_LT_EQ] = ACTIONS(6628), + [anon_sym_LT] = ACTIONS(6628), + [anon_sym_LT_LT] = ACTIONS(6628), + [anon_sym_GT_GT] = ACTIONS(6628), + [anon_sym_SEMI] = ACTIONS(6630), + [anon_sym___extension__] = ACTIONS(6628), + [anon_sym_virtual] = ACTIONS(6628), + [anon_sym_extern] = ACTIONS(6628), + [anon_sym___attribute__] = ACTIONS(6628), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_COLON_COLON] = ACTIONS(6630), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), + [anon_sym___declspec] = ACTIONS(6628), + [anon_sym___based] = ACTIONS(6628), + [anon_sym___cdecl] = ACTIONS(6628), + [anon_sym___clrcall] = ACTIONS(6628), + [anon_sym___stdcall] = ACTIONS(6628), + [anon_sym___fastcall] = ACTIONS(6628), + [anon_sym___thiscall] = ACTIONS(6628), + [anon_sym___vectorcall] = ACTIONS(6628), + [anon_sym_LBRACE] = ACTIONS(6630), + [anon_sym_RBRACE] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(6628), + [anon_sym_static] = ACTIONS(6628), + [anon_sym_EQ] = ACTIONS(6628), + [anon_sym_register] = ACTIONS(6628), + [anon_sym_inline] = ACTIONS(6628), + [anon_sym___inline] = ACTIONS(6628), + [anon_sym___inline__] = ACTIONS(6628), + [anon_sym___forceinline] = ACTIONS(6628), + [anon_sym_thread_local] = ACTIONS(6628), + [anon_sym___thread] = ACTIONS(6628), + [anon_sym_const] = ACTIONS(6628), + [anon_sym_constexpr] = ACTIONS(6628), + [anon_sym_volatile] = ACTIONS(6628), + [anon_sym_restrict] = ACTIONS(6628), + [anon_sym___restrict__] = ACTIONS(6628), + [anon_sym__Atomic] = ACTIONS(6628), + [anon_sym__Noreturn] = ACTIONS(6628), + [anon_sym_noreturn] = ACTIONS(6628), + [anon_sym__Nonnull] = ACTIONS(6628), + [anon_sym_mutable] = ACTIONS(6628), + [anon_sym_constinit] = ACTIONS(6628), + [anon_sym_consteval] = ACTIONS(6628), + [anon_sym_alignas] = ACTIONS(6628), + [anon_sym__Alignas] = ACTIONS(6628), + [anon_sym_QMARK] = ACTIONS(6630), + [anon_sym_STAR_EQ] = ACTIONS(6630), + [anon_sym_SLASH_EQ] = ACTIONS(6630), + [anon_sym_PERCENT_EQ] = ACTIONS(6630), + [anon_sym_PLUS_EQ] = ACTIONS(6630), + [anon_sym_DASH_EQ] = ACTIONS(6630), + [anon_sym_LT_LT_EQ] = ACTIONS(6630), + [anon_sym_GT_GT_EQ] = ACTIONS(6630), + [anon_sym_AMP_EQ] = ACTIONS(6630), + [anon_sym_CARET_EQ] = ACTIONS(6630), + [anon_sym_PIPE_EQ] = ACTIONS(6630), + [anon_sym_and_eq] = ACTIONS(6628), + [anon_sym_or_eq] = ACTIONS(6628), + [anon_sym_xor_eq] = ACTIONS(6628), + [anon_sym_LT_EQ_GT] = ACTIONS(6630), + [anon_sym_or] = ACTIONS(6628), + [anon_sym_and] = ACTIONS(6628), + [anon_sym_bitor] = ACTIONS(6628), + [anon_sym_xor] = ACTIONS(6628), + [anon_sym_bitand] = ACTIONS(6628), + [anon_sym_not_eq] = ACTIONS(6628), + [anon_sym_DASH_DASH] = ACTIONS(6630), + [anon_sym_PLUS_PLUS] = ACTIONS(6630), + [anon_sym_DOT] = ACTIONS(6628), + [anon_sym_DOT_STAR] = ACTIONS(6630), + [anon_sym_DASH_GT] = ACTIONS(6630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6628), + [anon_sym_decltype] = ACTIONS(6628), + [anon_sym_template] = ACTIONS(6628), + [anon_sym_operator] = ACTIONS(6628), + [anon_sym_LBRACK_COLON] = ACTIONS(6630), + }, + [STATE(1970)] = { + [sym_identifier] = ACTIONS(6632), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6634), + [anon_sym_COMMA] = ACTIONS(6634), + [anon_sym_RPAREN] = ACTIONS(6634), + [anon_sym_LPAREN2] = ACTIONS(6634), + [anon_sym_TILDE] = ACTIONS(6634), + [anon_sym_DASH] = ACTIONS(6632), + [anon_sym_PLUS] = ACTIONS(6632), + [anon_sym_STAR] = ACTIONS(6632), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_PERCENT] = ACTIONS(6632), + [anon_sym_PIPE_PIPE] = ACTIONS(6634), + [anon_sym_AMP_AMP] = ACTIONS(6634), + [anon_sym_PIPE] = ACTIONS(6632), + [anon_sym_CARET] = ACTIONS(6632), + [anon_sym_AMP] = ACTIONS(6632), + [anon_sym_EQ_EQ] = ACTIONS(6634), + [anon_sym_BANG_EQ] = ACTIONS(6634), + [anon_sym_GT] = ACTIONS(6632), + [anon_sym_GT_EQ] = ACTIONS(6634), + [anon_sym_LT_EQ] = ACTIONS(6632), + [anon_sym_LT] = ACTIONS(6632), + [anon_sym_LT_LT] = ACTIONS(6632), + [anon_sym_GT_GT] = ACTIONS(6632), + [anon_sym_SEMI] = ACTIONS(6634), + [anon_sym___extension__] = ACTIONS(6632), + [anon_sym_virtual] = ACTIONS(6632), + [anon_sym_extern] = ACTIONS(6632), + [anon_sym___attribute__] = ACTIONS(6632), + [anon_sym___attribute] = ACTIONS(6632), + [anon_sym_COLON_COLON] = ACTIONS(6634), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6634), + [anon_sym___declspec] = ACTIONS(6632), + [anon_sym___based] = ACTIONS(6632), + [anon_sym___cdecl] = ACTIONS(6632), + [anon_sym___clrcall] = ACTIONS(6632), + [anon_sym___stdcall] = ACTIONS(6632), + [anon_sym___fastcall] = ACTIONS(6632), + [anon_sym___thiscall] = ACTIONS(6632), + [anon_sym___vectorcall] = ACTIONS(6632), + [anon_sym_LBRACE] = ACTIONS(6634), + [anon_sym_RBRACE] = ACTIONS(6634), + [anon_sym_LBRACK] = ACTIONS(6632), + [anon_sym_static] = ACTIONS(6632), + [anon_sym_EQ] = ACTIONS(6632), + [anon_sym_register] = ACTIONS(6632), + [anon_sym_inline] = ACTIONS(6632), + [anon_sym___inline] = ACTIONS(6632), + [anon_sym___inline__] = ACTIONS(6632), + [anon_sym___forceinline] = ACTIONS(6632), + [anon_sym_thread_local] = ACTIONS(6632), + [anon_sym___thread] = ACTIONS(6632), + [anon_sym_const] = ACTIONS(6632), + [anon_sym_constexpr] = ACTIONS(6632), + [anon_sym_volatile] = ACTIONS(6632), + [anon_sym_restrict] = ACTIONS(6632), + [anon_sym___restrict__] = ACTIONS(6632), + [anon_sym__Atomic] = ACTIONS(6632), + [anon_sym__Noreturn] = ACTIONS(6632), + [anon_sym_noreturn] = ACTIONS(6632), + [anon_sym__Nonnull] = ACTIONS(6632), + [anon_sym_mutable] = ACTIONS(6632), + [anon_sym_constinit] = ACTIONS(6632), + [anon_sym_consteval] = ACTIONS(6632), + [anon_sym_alignas] = ACTIONS(6632), + [anon_sym__Alignas] = ACTIONS(6632), + [anon_sym_QMARK] = ACTIONS(6634), + [anon_sym_STAR_EQ] = ACTIONS(6634), + [anon_sym_SLASH_EQ] = ACTIONS(6634), + [anon_sym_PERCENT_EQ] = ACTIONS(6634), + [anon_sym_PLUS_EQ] = ACTIONS(6634), + [anon_sym_DASH_EQ] = ACTIONS(6634), + [anon_sym_LT_LT_EQ] = ACTIONS(6634), + [anon_sym_GT_GT_EQ] = ACTIONS(6634), + [anon_sym_AMP_EQ] = ACTIONS(6634), + [anon_sym_CARET_EQ] = ACTIONS(6634), + [anon_sym_PIPE_EQ] = ACTIONS(6634), + [anon_sym_and_eq] = ACTIONS(6632), + [anon_sym_or_eq] = ACTIONS(6632), + [anon_sym_xor_eq] = ACTIONS(6632), + [anon_sym_LT_EQ_GT] = ACTIONS(6634), + [anon_sym_or] = ACTIONS(6632), + [anon_sym_and] = ACTIONS(6632), + [anon_sym_bitor] = ACTIONS(6632), + [anon_sym_xor] = ACTIONS(6632), + [anon_sym_bitand] = ACTIONS(6632), + [anon_sym_not_eq] = ACTIONS(6632), + [anon_sym_DASH_DASH] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_DOT] = ACTIONS(6632), + [anon_sym_DOT_STAR] = ACTIONS(6634), + [anon_sym_DASH_GT] = ACTIONS(6634), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6632), + [anon_sym_decltype] = ACTIONS(6632), + [anon_sym_template] = ACTIONS(6632), + [anon_sym_operator] = ACTIONS(6632), + [anon_sym_LBRACK_COLON] = ACTIONS(6634), + }, + [STATE(1971)] = { + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(7547), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9070), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8555), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_template_parameter_list] = STATE(1100), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(6284), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7966), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(2650), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6582), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(6584), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(6586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym___based] = ACTIONS(53), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -306729,242 +310924,967 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), + [sym_primitive_type] = ACTIONS(3466), [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7127), - [anon_sym_struct] = ACTIONS(7129), - [anon_sym_union] = ACTIONS(7131), - [anon_sym_typename] = ACTIONS(5102), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_for] = ACTIONS(6636), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2055)] = { - [sym_attribute_specifier] = STATE(2121), - [sym_identifier] = ACTIONS(7133), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7135), - [anon_sym_COMMA] = ACTIONS(7135), - [anon_sym_RPAREN] = ACTIONS(7135), - [aux_sym_preproc_if_token2] = ACTIONS(7135), - [aux_sym_preproc_else_token1] = ACTIONS(7135), - [aux_sym_preproc_elif_token1] = ACTIONS(7133), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7135), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7135), - [anon_sym_LPAREN2] = ACTIONS(7135), - [anon_sym_DASH] = ACTIONS(7133), - [anon_sym_PLUS] = ACTIONS(7133), - [anon_sym_STAR] = ACTIONS(7133), - [anon_sym_SLASH] = ACTIONS(7133), - [anon_sym_PERCENT] = ACTIONS(7133), - [anon_sym_PIPE_PIPE] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7135), - [anon_sym_PIPE] = ACTIONS(7133), - [anon_sym_CARET] = ACTIONS(7133), - [anon_sym_AMP] = ACTIONS(7133), - [anon_sym_EQ_EQ] = ACTIONS(7135), - [anon_sym_BANG_EQ] = ACTIONS(7135), - [anon_sym_GT] = ACTIONS(7133), - [anon_sym_GT_EQ] = ACTIONS(7135), - [anon_sym_LT_EQ] = ACTIONS(7133), - [anon_sym_LT] = ACTIONS(7133), - [anon_sym_LT_LT] = ACTIONS(7133), - [anon_sym_GT_GT] = ACTIONS(7133), - [anon_sym_SEMI] = ACTIONS(7135), - [anon_sym___extension__] = ACTIONS(7133), - [anon_sym___attribute__] = ACTIONS(6830), - [anon_sym___attribute] = ACTIONS(6830), - [anon_sym_COLON] = ACTIONS(7133), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7135), - [anon_sym_LBRACE] = ACTIONS(7135), - [anon_sym_RBRACE] = ACTIONS(7135), - [anon_sym_LBRACK] = ACTIONS(7135), - [anon_sym_EQ] = ACTIONS(7133), - [anon_sym_const] = ACTIONS(7133), - [anon_sym_constexpr] = ACTIONS(7133), - [anon_sym_volatile] = ACTIONS(7133), - [anon_sym_restrict] = ACTIONS(7133), - [anon_sym___restrict__] = ACTIONS(7133), - [anon_sym__Atomic] = ACTIONS(7133), - [anon_sym__Noreturn] = ACTIONS(7133), - [anon_sym_noreturn] = ACTIONS(7133), - [anon_sym__Nonnull] = ACTIONS(7133), - [anon_sym_mutable] = ACTIONS(7133), - [anon_sym_constinit] = ACTIONS(7133), - [anon_sym_consteval] = ACTIONS(7133), - [anon_sym_alignas] = ACTIONS(7133), - [anon_sym__Alignas] = ACTIONS(7133), - [anon_sym_QMARK] = ACTIONS(7135), - [anon_sym_STAR_EQ] = ACTIONS(7135), - [anon_sym_SLASH_EQ] = ACTIONS(7135), - [anon_sym_PERCENT_EQ] = ACTIONS(7135), - [anon_sym_PLUS_EQ] = ACTIONS(7135), - [anon_sym_DASH_EQ] = ACTIONS(7135), - [anon_sym_LT_LT_EQ] = ACTIONS(7135), - [anon_sym_GT_GT_EQ] = ACTIONS(7135), - [anon_sym_AMP_EQ] = ACTIONS(7135), - [anon_sym_CARET_EQ] = ACTIONS(7135), - [anon_sym_PIPE_EQ] = ACTIONS(7135), - [anon_sym_and_eq] = ACTIONS(7133), - [anon_sym_or_eq] = ACTIONS(7133), - [anon_sym_xor_eq] = ACTIONS(7133), - [anon_sym_LT_EQ_GT] = ACTIONS(7135), - [anon_sym_or] = ACTIONS(7133), - [anon_sym_and] = ACTIONS(7133), - [anon_sym_bitor] = ACTIONS(7133), - [anon_sym_xor] = ACTIONS(7133), - [anon_sym_bitand] = ACTIONS(7133), - [anon_sym_not_eq] = ACTIONS(7133), - [anon_sym_DASH_DASH] = ACTIONS(7135), - [anon_sym_PLUS_PLUS] = ACTIONS(7135), - [anon_sym_DOT] = ACTIONS(7133), - [anon_sym_DOT_STAR] = ACTIONS(7135), - [anon_sym_DASH_GT] = ACTIONS(7135), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7133), - [anon_sym_override] = ACTIONS(7133), - [anon_sym_requires] = ACTIONS(7133), - [anon_sym_COLON_RBRACK] = ACTIONS(7135), + [STATE(1972)] = { + [sym_attribute_specifier] = STATE(2106), + [sym_attribute_declaration] = STATE(4490), + [sym_type_qualifier] = STATE(2308), + [sym_alignas_qualifier] = STATE(2392), + [sym_gnu_asm_expression] = STATE(9129), + [sym_virtual_specifier] = STATE(4610), + [sym_ref_qualifier] = STATE(2458), + [sym__function_attributes_start] = STATE(2399), + [sym__function_exception_specification] = STATE(2936), + [sym__function_attributes_end] = STATE(4295), + [sym__function_postfix] = STATE(4874), + [sym_trailing_return_type] = STATE(4329), + [sym_noexcept] = STATE(2936), + [sym_throw_specifier] = STATE(2936), + [sym_requires_clause] = STATE(4874), + [aux_sym_type_definition_repeat1] = STATE(2106), + [aux_sym__type_definition_type_repeat1] = STATE(2308), + [aux_sym_attributed_declarator_repeat1] = STATE(4490), + [aux_sym__function_postfix_repeat1] = STATE(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), + [anon_sym_COMMA] = ACTIONS(6481), + [anon_sym_RPAREN] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_PLUS] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6479), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_PERCENT] = ACTIONS(6479), + [anon_sym_PIPE_PIPE] = ACTIONS(6481), + [anon_sym_AMP_AMP] = ACTIONS(6638), + [anon_sym_PIPE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6479), + [anon_sym_AMP] = ACTIONS(6641), + [anon_sym_EQ_EQ] = ACTIONS(6481), + [anon_sym_BANG_EQ] = ACTIONS(6481), + [anon_sym_GT] = ACTIONS(6479), + [anon_sym_GT_EQ] = ACTIONS(6481), + [anon_sym_LT_EQ] = ACTIONS(6479), + [anon_sym_LT] = ACTIONS(6479), + [anon_sym_LT_LT] = ACTIONS(6479), + [anon_sym_GT_GT] = ACTIONS(6479), + [anon_sym___extension__] = ACTIONS(6644), + [anon_sym___attribute__] = ACTIONS(6646), + [anon_sym___attribute] = ACTIONS(6648), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_EQ] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(6652), + [anon_sym_constexpr] = ACTIONS(6644), + [anon_sym_volatile] = ACTIONS(6644), + [anon_sym_restrict] = ACTIONS(6644), + [anon_sym___restrict__] = ACTIONS(6644), + [anon_sym__Atomic] = ACTIONS(6644), + [anon_sym__Noreturn] = ACTIONS(6644), + [anon_sym_noreturn] = ACTIONS(6644), + [anon_sym__Nonnull] = ACTIONS(6644), + [anon_sym_mutable] = ACTIONS(6644), + [anon_sym_constinit] = ACTIONS(6644), + [anon_sym_consteval] = ACTIONS(6644), + [anon_sym_alignas] = ACTIONS(6654), + [anon_sym__Alignas] = ACTIONS(6654), + [anon_sym_QMARK] = ACTIONS(6481), + [anon_sym_STAR_EQ] = ACTIONS(6481), + [anon_sym_SLASH_EQ] = ACTIONS(6481), + [anon_sym_PERCENT_EQ] = ACTIONS(6481), + [anon_sym_PLUS_EQ] = ACTIONS(6481), + [anon_sym_DASH_EQ] = ACTIONS(6481), + [anon_sym_LT_LT_EQ] = ACTIONS(6481), + [anon_sym_GT_GT_EQ] = ACTIONS(6481), + [anon_sym_AMP_EQ] = ACTIONS(6481), + [anon_sym_CARET_EQ] = ACTIONS(6481), + [anon_sym_PIPE_EQ] = ACTIONS(6481), + [anon_sym_and_eq] = ACTIONS(6481), + [anon_sym_or_eq] = ACTIONS(6481), + [anon_sym_xor_eq] = ACTIONS(6481), + [anon_sym_LT_EQ_GT] = ACTIONS(6481), + [anon_sym_or] = ACTIONS(6479), + [anon_sym_and] = ACTIONS(6479), + [anon_sym_bitor] = ACTIONS(6481), + [anon_sym_xor] = ACTIONS(6479), + [anon_sym_bitand] = ACTIONS(6481), + [anon_sym_not_eq] = ACTIONS(6481), + [anon_sym_DASH_DASH] = ACTIONS(6481), + [anon_sym_PLUS_PLUS] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6479), + [anon_sym_DOT_STAR] = ACTIONS(6481), + [anon_sym_DASH_GT] = ACTIONS(6656), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6659), + [anon_sym_override] = ACTIONS(6659), + [anon_sym_noexcept] = ACTIONS(6662), + [anon_sym_throw] = ACTIONS(6664), + [anon_sym_requires] = ACTIONS(6666), + [anon_sym_DASH_GT_STAR] = ACTIONS(6481), }, - [STATE(2056)] = { - [sym_function_definition] = STATE(472), - [sym_declaration] = STATE(472), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6273), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_call_modifier] = STATE(2618), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10502), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(5610), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(5611), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(5898), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(7039), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7137), - [anon_sym_struct] = ACTIONS(7139), - [anon_sym_union] = ACTIONS(7141), - [anon_sym_typename] = ACTIONS(5102), + [STATE(1973)] = { + [sym_identifier] = ACTIONS(6594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6596), + [anon_sym_COMMA] = ACTIONS(6596), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_TILDE] = ACTIONS(6601), + [anon_sym_DASH] = ACTIONS(6603), + [anon_sym_PLUS] = ACTIONS(6603), + [anon_sym_STAR] = ACTIONS(6605), + [anon_sym_SLASH] = ACTIONS(6603), + [anon_sym_PERCENT] = ACTIONS(6603), + [anon_sym_PIPE_PIPE] = ACTIONS(6596), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6603), + [anon_sym_CARET] = ACTIONS(6603), + [anon_sym_AMP] = ACTIONS(6605), + [anon_sym_EQ_EQ] = ACTIONS(6596), + [anon_sym_BANG_EQ] = ACTIONS(6596), + [anon_sym_GT] = ACTIONS(6603), + [anon_sym_GT_EQ] = ACTIONS(6596), + [anon_sym_LT_EQ] = ACTIONS(6603), + [anon_sym_LT] = ACTIONS(6603), + [anon_sym_LT_LT] = ACTIONS(6603), + [anon_sym_GT_GT] = ACTIONS(6603), + [anon_sym_SEMI] = ACTIONS(6598), + [anon_sym___extension__] = ACTIONS(6594), + [anon_sym_virtual] = ACTIONS(6594), + [anon_sym_extern] = ACTIONS(6594), + [anon_sym___attribute__] = ACTIONS(6594), + [anon_sym___attribute] = ACTIONS(6594), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6598), + [anon_sym___declspec] = ACTIONS(6594), + [anon_sym___based] = ACTIONS(6594), + [anon_sym___cdecl] = ACTIONS(6594), + [anon_sym___clrcall] = ACTIONS(6594), + [anon_sym___stdcall] = ACTIONS(6594), + [anon_sym___fastcall] = ACTIONS(6594), + [anon_sym___thiscall] = ACTIONS(6594), + [anon_sym___vectorcall] = ACTIONS(6594), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_RBRACE] = ACTIONS(6596), + [anon_sym_LBRACK] = ACTIONS(6605), + [anon_sym_static] = ACTIONS(6594), + [anon_sym_EQ] = ACTIONS(6603), + [anon_sym_register] = ACTIONS(6594), + [anon_sym_inline] = ACTIONS(6594), + [anon_sym___inline] = ACTIONS(6594), + [anon_sym___inline__] = ACTIONS(6594), + [anon_sym___forceinline] = ACTIONS(6594), + [anon_sym_thread_local] = ACTIONS(6594), + [anon_sym___thread] = ACTIONS(6594), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6594), + [anon_sym_volatile] = ACTIONS(6594), + [anon_sym_restrict] = ACTIONS(6594), + [anon_sym___restrict__] = ACTIONS(6594), + [anon_sym__Atomic] = ACTIONS(6594), + [anon_sym__Noreturn] = ACTIONS(6594), + [anon_sym_noreturn] = ACTIONS(6594), + [anon_sym__Nonnull] = ACTIONS(6594), + [anon_sym_mutable] = ACTIONS(6594), + [anon_sym_constinit] = ACTIONS(6594), + [anon_sym_consteval] = ACTIONS(6594), + [anon_sym_alignas] = ACTIONS(6594), + [anon_sym__Alignas] = ACTIONS(6594), + [anon_sym_QMARK] = ACTIONS(6596), + [anon_sym_STAR_EQ] = ACTIONS(6596), + [anon_sym_SLASH_EQ] = ACTIONS(6596), + [anon_sym_PERCENT_EQ] = ACTIONS(6596), + [anon_sym_PLUS_EQ] = ACTIONS(6596), + [anon_sym_DASH_EQ] = ACTIONS(6596), + [anon_sym_LT_LT_EQ] = ACTIONS(6596), + [anon_sym_GT_GT_EQ] = ACTIONS(6596), + [anon_sym_AMP_EQ] = ACTIONS(6596), + [anon_sym_CARET_EQ] = ACTIONS(6596), + [anon_sym_PIPE_EQ] = ACTIONS(6596), + [anon_sym_and_eq] = ACTIONS(6603), + [anon_sym_or_eq] = ACTIONS(6603), + [anon_sym_xor_eq] = ACTIONS(6603), + [anon_sym_LT_EQ_GT] = ACTIONS(6596), + [anon_sym_or] = ACTIONS(6603), + [anon_sym_and] = ACTIONS(6603), + [anon_sym_bitor] = ACTIONS(6603), + [anon_sym_xor] = ACTIONS(6603), + [anon_sym_bitand] = ACTIONS(6603), + [anon_sym_not_eq] = ACTIONS(6603), + [anon_sym_DASH_DASH] = ACTIONS(6596), + [anon_sym_PLUS_PLUS] = ACTIONS(6596), + [anon_sym_DOT] = ACTIONS(6603), + [anon_sym_DOT_STAR] = ACTIONS(6596), + [anon_sym_DASH_GT] = ACTIONS(6596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6594), + [anon_sym_decltype] = ACTIONS(6594), + [anon_sym_template] = ACTIONS(6594), + [anon_sym_operator] = ACTIONS(6594), + [anon_sym_LBRACK_COLON] = ACTIONS(6601), + }, + [STATE(1974)] = { + [sym_attribute_specifier] = STATE(2106), + [sym_attribute_declaration] = STATE(4490), + [sym_type_qualifier] = STATE(2308), + [sym_alignas_qualifier] = STATE(2392), + [sym_gnu_asm_expression] = STATE(9129), + [sym_virtual_specifier] = STATE(4610), + [sym_ref_qualifier] = STATE(2465), + [sym__function_attributes_start] = STATE(2394), + [sym__function_exception_specification] = STATE(2900), + [sym__function_attributes_end] = STATE(4311), + [sym__function_postfix] = STATE(4874), + [sym_trailing_return_type] = STATE(4397), + [sym_noexcept] = STATE(2900), + [sym_throw_specifier] = STATE(2900), + [sym_requires_clause] = STATE(4874), + [aux_sym_type_definition_repeat1] = STATE(2106), + [aux_sym__type_definition_type_repeat1] = STATE(2308), + [aux_sym_attributed_declarator_repeat1] = STATE(4490), + [aux_sym__function_postfix_repeat1] = STATE(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), + [anon_sym_COMMA] = ACTIONS(6481), + [anon_sym_RPAREN] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_PLUS] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6479), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_PERCENT] = ACTIONS(6479), + [anon_sym_PIPE_PIPE] = ACTIONS(6481), + [anon_sym_AMP_AMP] = ACTIONS(6638), + [anon_sym_PIPE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6479), + [anon_sym_AMP] = ACTIONS(6641), + [anon_sym_EQ_EQ] = ACTIONS(6481), + [anon_sym_BANG_EQ] = ACTIONS(6481), + [anon_sym_GT] = ACTIONS(6479), + [anon_sym_GT_EQ] = ACTIONS(6481), + [anon_sym_LT_EQ] = ACTIONS(6479), + [anon_sym_LT] = ACTIONS(6479), + [anon_sym_LT_LT] = ACTIONS(6479), + [anon_sym_GT_GT] = ACTIONS(6479), + [anon_sym___extension__] = ACTIONS(6644), + [anon_sym___attribute__] = ACTIONS(6646), + [anon_sym___attribute] = ACTIONS(6648), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_EQ] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(6652), + [anon_sym_constexpr] = ACTIONS(6644), + [anon_sym_volatile] = ACTIONS(6644), + [anon_sym_restrict] = ACTIONS(6644), + [anon_sym___restrict__] = ACTIONS(6644), + [anon_sym__Atomic] = ACTIONS(6644), + [anon_sym__Noreturn] = ACTIONS(6644), + [anon_sym_noreturn] = ACTIONS(6644), + [anon_sym__Nonnull] = ACTIONS(6644), + [anon_sym_mutable] = ACTIONS(6644), + [anon_sym_constinit] = ACTIONS(6644), + [anon_sym_consteval] = ACTIONS(6644), + [anon_sym_alignas] = ACTIONS(6654), + [anon_sym__Alignas] = ACTIONS(6654), + [anon_sym_QMARK] = ACTIONS(6481), + [anon_sym_STAR_EQ] = ACTIONS(6481), + [anon_sym_SLASH_EQ] = ACTIONS(6481), + [anon_sym_PERCENT_EQ] = ACTIONS(6481), + [anon_sym_PLUS_EQ] = ACTIONS(6481), + [anon_sym_DASH_EQ] = ACTIONS(6481), + [anon_sym_LT_LT_EQ] = ACTIONS(6481), + [anon_sym_GT_GT_EQ] = ACTIONS(6481), + [anon_sym_AMP_EQ] = ACTIONS(6481), + [anon_sym_CARET_EQ] = ACTIONS(6481), + [anon_sym_PIPE_EQ] = ACTIONS(6481), + [anon_sym_and_eq] = ACTIONS(6481), + [anon_sym_or_eq] = ACTIONS(6481), + [anon_sym_xor_eq] = ACTIONS(6481), + [anon_sym_LT_EQ_GT] = ACTIONS(6481), + [anon_sym_or] = ACTIONS(6479), + [anon_sym_and] = ACTIONS(6479), + [anon_sym_bitor] = ACTIONS(6481), + [anon_sym_xor] = ACTIONS(6479), + [anon_sym_bitand] = ACTIONS(6481), + [anon_sym_not_eq] = ACTIONS(6481), + [anon_sym_DASH_DASH] = ACTIONS(6481), + [anon_sym_PLUS_PLUS] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6479), + [anon_sym_DOT_STAR] = ACTIONS(6481), + [anon_sym_DASH_GT] = ACTIONS(6656), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6669), + [anon_sym_override] = ACTIONS(6669), + [anon_sym_noexcept] = ACTIONS(6662), + [anon_sym_throw] = ACTIONS(6664), + [anon_sym_requires] = ACTIONS(6671), + [anon_sym_DASH_GT_STAR] = ACTIONS(6481), + }, + [STATE(1975)] = { + [sym_attribute_specifier] = STATE(2145), + [sym_attribute_declaration] = STATE(4617), + [sym_type_qualifier] = STATE(2325), + [sym_alignas_qualifier] = STATE(2492), + [sym_gnu_asm_expression] = STATE(9112), + [sym_virtual_specifier] = STATE(4705), + [sym_ref_qualifier] = STATE(2597), + [sym__function_attributes_start] = STATE(2513), + [sym__function_exception_specification] = STATE(3070), + [sym__function_attributes_end] = STATE(4375), + [sym__function_postfix] = STATE(5193), + [sym_trailing_return_type] = STATE(4422), + [sym_noexcept] = STATE(3070), + [sym_throw_specifier] = STATE(3070), + [sym_requires_clause] = STATE(5193), + [aux_sym_type_definition_repeat1] = STATE(2145), + [aux_sym__type_definition_type_repeat1] = STATE(2325), + [aux_sym_attributed_declarator_repeat1] = STATE(4617), + [aux_sym__function_postfix_repeat1] = STATE(4705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), + [anon_sym_COMMA] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_PLUS] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6479), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_PERCENT] = ACTIONS(6479), + [anon_sym_PIPE_PIPE] = ACTIONS(6481), + [anon_sym_AMP_AMP] = ACTIONS(6673), + [anon_sym_PIPE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6479), + [anon_sym_AMP] = ACTIONS(6676), + [anon_sym_EQ_EQ] = ACTIONS(6481), + [anon_sym_BANG_EQ] = ACTIONS(6481), + [anon_sym_GT] = ACTIONS(6479), + [anon_sym_GT_EQ] = ACTIONS(6479), + [anon_sym_LT_EQ] = ACTIONS(6479), + [anon_sym_LT] = ACTIONS(6479), + [anon_sym_LT_LT] = ACTIONS(6479), + [anon_sym_GT_GT] = ACTIONS(6479), + [anon_sym___extension__] = ACTIONS(6679), + [anon_sym___attribute__] = ACTIONS(6681), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_EQ] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(6687), + [anon_sym_constexpr] = ACTIONS(6679), + [anon_sym_volatile] = ACTIONS(6679), + [anon_sym_restrict] = ACTIONS(6679), + [anon_sym___restrict__] = ACTIONS(6679), + [anon_sym__Atomic] = ACTIONS(6679), + [anon_sym__Noreturn] = ACTIONS(6679), + [anon_sym_noreturn] = ACTIONS(6679), + [anon_sym__Nonnull] = ACTIONS(6679), + [anon_sym_mutable] = ACTIONS(6679), + [anon_sym_constinit] = ACTIONS(6679), + [anon_sym_consteval] = ACTIONS(6679), + [anon_sym_alignas] = ACTIONS(6689), + [anon_sym__Alignas] = ACTIONS(6689), + [anon_sym_QMARK] = ACTIONS(6481), + [anon_sym_STAR_EQ] = ACTIONS(6481), + [anon_sym_SLASH_EQ] = ACTIONS(6481), + [anon_sym_PERCENT_EQ] = ACTIONS(6481), + [anon_sym_PLUS_EQ] = ACTIONS(6481), + [anon_sym_DASH_EQ] = ACTIONS(6481), + [anon_sym_LT_LT_EQ] = ACTIONS(6481), + [anon_sym_GT_GT_EQ] = ACTIONS(6479), + [anon_sym_AMP_EQ] = ACTIONS(6481), + [anon_sym_CARET_EQ] = ACTIONS(6481), + [anon_sym_PIPE_EQ] = ACTIONS(6481), + [anon_sym_and_eq] = ACTIONS(6481), + [anon_sym_or_eq] = ACTIONS(6481), + [anon_sym_xor_eq] = ACTIONS(6481), + [anon_sym_LT_EQ_GT] = ACTIONS(6481), + [anon_sym_or] = ACTIONS(6479), + [anon_sym_and] = ACTIONS(6479), + [anon_sym_bitor] = ACTIONS(6481), + [anon_sym_xor] = ACTIONS(6479), + [anon_sym_bitand] = ACTIONS(6481), + [anon_sym_not_eq] = ACTIONS(6481), + [anon_sym_DASH_DASH] = ACTIONS(6481), + [anon_sym_PLUS_PLUS] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6479), + [anon_sym_DOT_STAR] = ACTIONS(6481), + [anon_sym_DASH_GT] = ACTIONS(6691), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6694), + [anon_sym_override] = ACTIONS(6694), + [anon_sym_GT2] = ACTIONS(6481), + [anon_sym_noexcept] = ACTIONS(6696), + [anon_sym_throw] = ACTIONS(6698), + [anon_sym_requires] = ACTIONS(6700), + }, + [STATE(1976)] = { + [sym_attribute_specifier] = STATE(1984), + [sym_attribute_declaration] = STATE(3125), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2059), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym_ref_qualifier] = STATE(2549), + [sym__function_attributes_start] = STATE(2486), + [sym__function_exception_specification] = STATE(3013), + [sym__function_attributes_end] = STATE(4234), + [sym__function_postfix] = STATE(3601), + [sym_trailing_return_type] = STATE(3074), + [sym_noexcept] = STATE(3013), + [sym_throw_specifier] = STATE(3013), + [sym_requires_clause] = STATE(3601), + [aux_sym_type_definition_repeat1] = STATE(1984), + [aux_sym__type_definition_type_repeat1] = STATE(2001), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), + [anon_sym_COMMA] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_PLUS] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6479), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_PERCENT] = ACTIONS(6479), + [anon_sym_PIPE_PIPE] = ACTIONS(6481), + [anon_sym_AMP_AMP] = ACTIONS(6483), + [anon_sym_PIPE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6479), + [anon_sym_AMP] = ACTIONS(6486), + [anon_sym_EQ_EQ] = ACTIONS(6481), + [anon_sym_BANG_EQ] = ACTIONS(6481), + [anon_sym_GT] = ACTIONS(6479), + [anon_sym_GT_EQ] = ACTIONS(6481), + [anon_sym_LT_EQ] = ACTIONS(6479), + [anon_sym_LT] = ACTIONS(6479), + [anon_sym_LT_LT] = ACTIONS(6479), + [anon_sym_GT_GT] = ACTIONS(6479), + [anon_sym_SEMI] = ACTIONS(6481), + [anon_sym___extension__] = ACTIONS(6532), + [anon_sym___attribute__] = ACTIONS(6702), + [anon_sym___attribute] = ACTIONS(6705), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_EQ] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(6489), + [anon_sym_constexpr] = ACTIONS(6532), + [anon_sym_volatile] = ACTIONS(6532), + [anon_sym_restrict] = ACTIONS(6532), + [anon_sym___restrict__] = ACTIONS(6532), + [anon_sym__Atomic] = ACTIONS(6532), + [anon_sym__Noreturn] = ACTIONS(6532), + [anon_sym_noreturn] = ACTIONS(6532), + [anon_sym__Nonnull] = ACTIONS(6532), + [anon_sym_mutable] = ACTIONS(6532), + [anon_sym_constinit] = ACTIONS(6532), + [anon_sym_consteval] = ACTIONS(6532), + [anon_sym_alignas] = ACTIONS(6536), + [anon_sym__Alignas] = ACTIONS(6536), + [anon_sym_QMARK] = ACTIONS(6481), + [anon_sym_STAR_EQ] = ACTIONS(6481), + [anon_sym_SLASH_EQ] = ACTIONS(6481), + [anon_sym_PERCENT_EQ] = ACTIONS(6481), + [anon_sym_PLUS_EQ] = ACTIONS(6481), + [anon_sym_DASH_EQ] = ACTIONS(6481), + [anon_sym_LT_LT_EQ] = ACTIONS(6481), + [anon_sym_GT_GT_EQ] = ACTIONS(6481), + [anon_sym_AMP_EQ] = ACTIONS(6481), + [anon_sym_CARET_EQ] = ACTIONS(6481), + [anon_sym_PIPE_EQ] = ACTIONS(6481), + [anon_sym_and_eq] = ACTIONS(6481), + [anon_sym_or_eq] = ACTIONS(6481), + [anon_sym_xor_eq] = ACTIONS(6481), + [anon_sym_LT_EQ_GT] = ACTIONS(6481), + [anon_sym_or] = ACTIONS(6479), + [anon_sym_and] = ACTIONS(6479), + [anon_sym_bitor] = ACTIONS(6481), + [anon_sym_xor] = ACTIONS(6479), + [anon_sym_bitand] = ACTIONS(6481), + [anon_sym_not_eq] = ACTIONS(6481), + [anon_sym_DASH_DASH] = ACTIONS(6481), + [anon_sym_PLUS_PLUS] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6479), + [anon_sym_DOT_STAR] = ACTIONS(6481), + [anon_sym_DASH_GT] = ACTIONS(6708), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6543), + [anon_sym_override] = ACTIONS(6543), + [anon_sym_noexcept] = ACTIONS(6546), + [anon_sym_throw] = ACTIONS(6548), + [anon_sym_requires] = ACTIONS(6550), + }, + [STATE(1977)] = { + [sym_attribute_specifier] = STATE(2164), + [sym_attribute_declaration] = STATE(4554), + [sym_type_qualifier] = STATE(2333), + [sym_alignas_qualifier] = STATE(2452), + [sym_gnu_asm_expression] = STATE(9153), + [sym_virtual_specifier] = STATE(4653), + [sym_ref_qualifier] = STATE(2544), + [sym__function_attributes_start] = STATE(2490), + [sym__function_exception_specification] = STATE(2948), + [sym__function_attributes_end] = STATE(4363), + [sym__function_postfix] = STATE(5078), + [sym_trailing_return_type] = STATE(4475), + [sym_noexcept] = STATE(2948), + [sym_throw_specifier] = STATE(2948), + [sym_requires_clause] = STATE(5078), + [aux_sym_type_definition_repeat1] = STATE(2164), + [aux_sym__type_definition_type_repeat1] = STATE(2333), + [aux_sym_attributed_declarator_repeat1] = STATE(4554), + [aux_sym__function_postfix_repeat1] = STATE(4653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), + [anon_sym_COMMA] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_PLUS] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6479), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_PERCENT] = ACTIONS(6479), + [anon_sym_PIPE_PIPE] = ACTIONS(6481), + [anon_sym_AMP_AMP] = ACTIONS(6711), + [anon_sym_PIPE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6479), + [anon_sym_AMP] = ACTIONS(6714), + [anon_sym_EQ_EQ] = ACTIONS(6481), + [anon_sym_BANG_EQ] = ACTIONS(6481), + [anon_sym_GT] = ACTIONS(6479), + [anon_sym_GT_EQ] = ACTIONS(6481), + [anon_sym_LT_EQ] = ACTIONS(6479), + [anon_sym_LT] = ACTIONS(6479), + [anon_sym_LT_LT] = ACTIONS(6479), + [anon_sym_GT_GT] = ACTIONS(6479), + [anon_sym___extension__] = ACTIONS(6717), + [anon_sym___attribute__] = ACTIONS(6719), + [anon_sym___attribute] = ACTIONS(6721), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_RBRACK] = ACTIONS(6481), + [anon_sym_EQ] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(6725), + [anon_sym_constexpr] = ACTIONS(6717), + [anon_sym_volatile] = ACTIONS(6717), + [anon_sym_restrict] = ACTIONS(6717), + [anon_sym___restrict__] = ACTIONS(6717), + [anon_sym__Atomic] = ACTIONS(6717), + [anon_sym__Noreturn] = ACTIONS(6717), + [anon_sym_noreturn] = ACTIONS(6717), + [anon_sym__Nonnull] = ACTIONS(6717), + [anon_sym_mutable] = ACTIONS(6717), + [anon_sym_constinit] = ACTIONS(6717), + [anon_sym_consteval] = ACTIONS(6717), + [anon_sym_alignas] = ACTIONS(6727), + [anon_sym__Alignas] = ACTIONS(6727), + [anon_sym_QMARK] = ACTIONS(6481), + [anon_sym_STAR_EQ] = ACTIONS(6481), + [anon_sym_SLASH_EQ] = ACTIONS(6481), + [anon_sym_PERCENT_EQ] = ACTIONS(6481), + [anon_sym_PLUS_EQ] = ACTIONS(6481), + [anon_sym_DASH_EQ] = ACTIONS(6481), + [anon_sym_LT_LT_EQ] = ACTIONS(6481), + [anon_sym_GT_GT_EQ] = ACTIONS(6481), + [anon_sym_AMP_EQ] = ACTIONS(6481), + [anon_sym_CARET_EQ] = ACTIONS(6481), + [anon_sym_PIPE_EQ] = ACTIONS(6481), + [anon_sym_and_eq] = ACTIONS(6481), + [anon_sym_or_eq] = ACTIONS(6481), + [anon_sym_xor_eq] = ACTIONS(6481), + [anon_sym_LT_EQ_GT] = ACTIONS(6481), + [anon_sym_or] = ACTIONS(6479), + [anon_sym_and] = ACTIONS(6479), + [anon_sym_bitor] = ACTIONS(6481), + [anon_sym_xor] = ACTIONS(6479), + [anon_sym_bitand] = ACTIONS(6481), + [anon_sym_not_eq] = ACTIONS(6481), + [anon_sym_DASH_DASH] = ACTIONS(6481), + [anon_sym_PLUS_PLUS] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6479), + [anon_sym_DOT_STAR] = ACTIONS(6481), + [anon_sym_DASH_GT] = ACTIONS(6729), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6732), + [anon_sym_override] = ACTIONS(6732), + [anon_sym_noexcept] = ACTIONS(6735), + [anon_sym_throw] = ACTIONS(6737), + [anon_sym_requires] = ACTIONS(6739), + }, + [STATE(1978)] = { + [sym_attribute_specifier] = STATE(2164), + [sym_attribute_declaration] = STATE(4554), + [sym_type_qualifier] = STATE(2333), + [sym_alignas_qualifier] = STATE(2452), + [sym_gnu_asm_expression] = STATE(9153), + [sym_virtual_specifier] = STATE(4653), + [sym_ref_qualifier] = STATE(2581), + [sym__function_attributes_start] = STATE(2504), + [sym__function_exception_specification] = STATE(2979), + [sym__function_attributes_end] = STATE(4357), + [sym__function_postfix] = STATE(5078), + [sym_trailing_return_type] = STATE(4515), + [sym_noexcept] = STATE(2979), + [sym_throw_specifier] = STATE(2979), + [sym_requires_clause] = STATE(5078), + [aux_sym_type_definition_repeat1] = STATE(2164), + [aux_sym__type_definition_type_repeat1] = STATE(2333), + [aux_sym_attributed_declarator_repeat1] = STATE(4554), + [aux_sym__function_postfix_repeat1] = STATE(4653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), + [anon_sym_COMMA] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_PLUS] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6479), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_PERCENT] = ACTIONS(6479), + [anon_sym_PIPE_PIPE] = ACTIONS(6481), + [anon_sym_AMP_AMP] = ACTIONS(6711), + [anon_sym_PIPE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6479), + [anon_sym_AMP] = ACTIONS(6714), + [anon_sym_EQ_EQ] = ACTIONS(6481), + [anon_sym_BANG_EQ] = ACTIONS(6481), + [anon_sym_GT] = ACTIONS(6479), + [anon_sym_GT_EQ] = ACTIONS(6481), + [anon_sym_LT_EQ] = ACTIONS(6479), + [anon_sym_LT] = ACTIONS(6479), + [anon_sym_LT_LT] = ACTIONS(6479), + [anon_sym_GT_GT] = ACTIONS(6479), + [anon_sym___extension__] = ACTIONS(6717), + [anon_sym___attribute__] = ACTIONS(6719), + [anon_sym___attribute] = ACTIONS(6721), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_RBRACK] = ACTIONS(6481), + [anon_sym_EQ] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(6725), + [anon_sym_constexpr] = ACTIONS(6717), + [anon_sym_volatile] = ACTIONS(6717), + [anon_sym_restrict] = ACTIONS(6717), + [anon_sym___restrict__] = ACTIONS(6717), + [anon_sym__Atomic] = ACTIONS(6717), + [anon_sym__Noreturn] = ACTIONS(6717), + [anon_sym_noreturn] = ACTIONS(6717), + [anon_sym__Nonnull] = ACTIONS(6717), + [anon_sym_mutable] = ACTIONS(6717), + [anon_sym_constinit] = ACTIONS(6717), + [anon_sym_consteval] = ACTIONS(6717), + [anon_sym_alignas] = ACTIONS(6727), + [anon_sym__Alignas] = ACTIONS(6727), + [anon_sym_QMARK] = ACTIONS(6481), + [anon_sym_STAR_EQ] = ACTIONS(6481), + [anon_sym_SLASH_EQ] = ACTIONS(6481), + [anon_sym_PERCENT_EQ] = ACTIONS(6481), + [anon_sym_PLUS_EQ] = ACTIONS(6481), + [anon_sym_DASH_EQ] = ACTIONS(6481), + [anon_sym_LT_LT_EQ] = ACTIONS(6481), + [anon_sym_GT_GT_EQ] = ACTIONS(6481), + [anon_sym_AMP_EQ] = ACTIONS(6481), + [anon_sym_CARET_EQ] = ACTIONS(6481), + [anon_sym_PIPE_EQ] = ACTIONS(6481), + [anon_sym_and_eq] = ACTIONS(6481), + [anon_sym_or_eq] = ACTIONS(6481), + [anon_sym_xor_eq] = ACTIONS(6481), + [anon_sym_LT_EQ_GT] = ACTIONS(6481), + [anon_sym_or] = ACTIONS(6479), + [anon_sym_and] = ACTIONS(6479), + [anon_sym_bitor] = ACTIONS(6481), + [anon_sym_xor] = ACTIONS(6479), + [anon_sym_bitand] = ACTIONS(6481), + [anon_sym_not_eq] = ACTIONS(6481), + [anon_sym_DASH_DASH] = ACTIONS(6481), + [anon_sym_PLUS_PLUS] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6479), + [anon_sym_DOT_STAR] = ACTIONS(6481), + [anon_sym_DASH_GT] = ACTIONS(6729), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6742), + [anon_sym_override] = ACTIONS(6742), + [anon_sym_noexcept] = ACTIONS(6735), + [anon_sym_throw] = ACTIONS(6737), + [anon_sym_requires] = ACTIONS(6744), + }, + [STATE(1979)] = { + [sym_attribute_specifier] = STATE(1984), + [sym_attribute_declaration] = STATE(3125), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2059), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym_ref_qualifier] = STATE(2532), + [sym__function_attributes_start] = STATE(2510), + [sym__function_exception_specification] = STATE(3043), + [sym__function_attributes_end] = STATE(4230), + [sym__function_postfix] = STATE(3601), + [sym_trailing_return_type] = STATE(2994), + [sym_noexcept] = STATE(3043), + [sym_throw_specifier] = STATE(3043), + [sym_requires_clause] = STATE(3601), + [aux_sym_type_definition_repeat1] = STATE(1984), + [aux_sym__type_definition_type_repeat1] = STATE(2001), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), + [anon_sym_COMMA] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_PLUS] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6479), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_PERCENT] = ACTIONS(6479), + [anon_sym_PIPE_PIPE] = ACTIONS(6481), + [anon_sym_AMP_AMP] = ACTIONS(6483), + [anon_sym_PIPE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6479), + [anon_sym_AMP] = ACTIONS(6486), + [anon_sym_EQ_EQ] = ACTIONS(6481), + [anon_sym_BANG_EQ] = ACTIONS(6481), + [anon_sym_GT] = ACTIONS(6479), + [anon_sym_GT_EQ] = ACTIONS(6481), + [anon_sym_LT_EQ] = ACTIONS(6479), + [anon_sym_LT] = ACTIONS(6479), + [anon_sym_LT_LT] = ACTIONS(6479), + [anon_sym_GT_GT] = ACTIONS(6479), + [anon_sym_SEMI] = ACTIONS(6481), + [anon_sym___extension__] = ACTIONS(6532), + [anon_sym___attribute__] = ACTIONS(6702), + [anon_sym___attribute] = ACTIONS(6705), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_EQ] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(6489), + [anon_sym_constexpr] = ACTIONS(6532), + [anon_sym_volatile] = ACTIONS(6532), + [anon_sym_restrict] = ACTIONS(6532), + [anon_sym___restrict__] = ACTIONS(6532), + [anon_sym__Atomic] = ACTIONS(6532), + [anon_sym__Noreturn] = ACTIONS(6532), + [anon_sym_noreturn] = ACTIONS(6532), + [anon_sym__Nonnull] = ACTIONS(6532), + [anon_sym_mutable] = ACTIONS(6532), + [anon_sym_constinit] = ACTIONS(6532), + [anon_sym_consteval] = ACTIONS(6532), + [anon_sym_alignas] = ACTIONS(6536), + [anon_sym__Alignas] = ACTIONS(6536), + [anon_sym_QMARK] = ACTIONS(6481), + [anon_sym_STAR_EQ] = ACTIONS(6481), + [anon_sym_SLASH_EQ] = ACTIONS(6481), + [anon_sym_PERCENT_EQ] = ACTIONS(6481), + [anon_sym_PLUS_EQ] = ACTIONS(6481), + [anon_sym_DASH_EQ] = ACTIONS(6481), + [anon_sym_LT_LT_EQ] = ACTIONS(6481), + [anon_sym_GT_GT_EQ] = ACTIONS(6481), + [anon_sym_AMP_EQ] = ACTIONS(6481), + [anon_sym_CARET_EQ] = ACTIONS(6481), + [anon_sym_PIPE_EQ] = ACTIONS(6481), + [anon_sym_and_eq] = ACTIONS(6481), + [anon_sym_or_eq] = ACTIONS(6481), + [anon_sym_xor_eq] = ACTIONS(6481), + [anon_sym_LT_EQ_GT] = ACTIONS(6481), + [anon_sym_or] = ACTIONS(6479), + [anon_sym_and] = ACTIONS(6479), + [anon_sym_bitor] = ACTIONS(6481), + [anon_sym_xor] = ACTIONS(6479), + [anon_sym_bitand] = ACTIONS(6481), + [anon_sym_not_eq] = ACTIONS(6481), + [anon_sym_DASH_DASH] = ACTIONS(6481), + [anon_sym_PLUS_PLUS] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6479), + [anon_sym_DOT_STAR] = ACTIONS(6481), + [anon_sym_DASH_GT] = ACTIONS(6708), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6561), + [anon_sym_override] = ACTIONS(6561), + [anon_sym_noexcept] = ACTIONS(6546), + [anon_sym_throw] = ACTIONS(6548), + [anon_sym_requires] = ACTIONS(6563), + }, + [STATE(1980)] = { + [sym_attribute_specifier] = STATE(2145), + [sym_attribute_declaration] = STATE(4617), + [sym_type_qualifier] = STATE(2325), + [sym_alignas_qualifier] = STATE(2492), + [sym_gnu_asm_expression] = STATE(9112), + [sym_virtual_specifier] = STATE(4705), + [sym_ref_qualifier] = STATE(2535), + [sym__function_attributes_start] = STATE(2484), + [sym__function_exception_specification] = STATE(2975), + [sym__function_attributes_end] = STATE(4346), + [sym__function_postfix] = STATE(5193), + [sym_trailing_return_type] = STATE(4467), + [sym_noexcept] = STATE(2975), + [sym_throw_specifier] = STATE(2975), + [sym_requires_clause] = STATE(5193), + [aux_sym_type_definition_repeat1] = STATE(2145), + [aux_sym__type_definition_type_repeat1] = STATE(2325), + [aux_sym_attributed_declarator_repeat1] = STATE(4617), + [aux_sym__function_postfix_repeat1] = STATE(4705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), + [anon_sym_COMMA] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_PLUS] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6479), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_PERCENT] = ACTIONS(6479), + [anon_sym_PIPE_PIPE] = ACTIONS(6481), + [anon_sym_AMP_AMP] = ACTIONS(6673), + [anon_sym_PIPE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6479), + [anon_sym_AMP] = ACTIONS(6676), + [anon_sym_EQ_EQ] = ACTIONS(6481), + [anon_sym_BANG_EQ] = ACTIONS(6481), + [anon_sym_GT] = ACTIONS(6479), + [anon_sym_GT_EQ] = ACTIONS(6479), + [anon_sym_LT_EQ] = ACTIONS(6479), + [anon_sym_LT] = ACTIONS(6479), + [anon_sym_LT_LT] = ACTIONS(6479), + [anon_sym_GT_GT] = ACTIONS(6479), + [anon_sym___extension__] = ACTIONS(6679), + [anon_sym___attribute__] = ACTIONS(6681), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_EQ] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(6687), + [anon_sym_constexpr] = ACTIONS(6679), + [anon_sym_volatile] = ACTIONS(6679), + [anon_sym_restrict] = ACTIONS(6679), + [anon_sym___restrict__] = ACTIONS(6679), + [anon_sym__Atomic] = ACTIONS(6679), + [anon_sym__Noreturn] = ACTIONS(6679), + [anon_sym_noreturn] = ACTIONS(6679), + [anon_sym__Nonnull] = ACTIONS(6679), + [anon_sym_mutable] = ACTIONS(6679), + [anon_sym_constinit] = ACTIONS(6679), + [anon_sym_consteval] = ACTIONS(6679), + [anon_sym_alignas] = ACTIONS(6689), + [anon_sym__Alignas] = ACTIONS(6689), + [anon_sym_QMARK] = ACTIONS(6481), + [anon_sym_STAR_EQ] = ACTIONS(6481), + [anon_sym_SLASH_EQ] = ACTIONS(6481), + [anon_sym_PERCENT_EQ] = ACTIONS(6481), + [anon_sym_PLUS_EQ] = ACTIONS(6481), + [anon_sym_DASH_EQ] = ACTIONS(6481), + [anon_sym_LT_LT_EQ] = ACTIONS(6481), + [anon_sym_GT_GT_EQ] = ACTIONS(6479), + [anon_sym_AMP_EQ] = ACTIONS(6481), + [anon_sym_CARET_EQ] = ACTIONS(6481), + [anon_sym_PIPE_EQ] = ACTIONS(6481), + [anon_sym_and_eq] = ACTIONS(6481), + [anon_sym_or_eq] = ACTIONS(6481), + [anon_sym_xor_eq] = ACTIONS(6481), + [anon_sym_LT_EQ_GT] = ACTIONS(6481), + [anon_sym_or] = ACTIONS(6479), + [anon_sym_and] = ACTIONS(6479), + [anon_sym_bitor] = ACTIONS(6481), + [anon_sym_xor] = ACTIONS(6479), + [anon_sym_bitand] = ACTIONS(6481), + [anon_sym_not_eq] = ACTIONS(6481), + [anon_sym_DASH_DASH] = ACTIONS(6481), + [anon_sym_PLUS_PLUS] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6479), + [anon_sym_DOT_STAR] = ACTIONS(6481), + [anon_sym_DASH_GT] = ACTIONS(6691), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [anon_sym_final] = ACTIONS(6746), + [anon_sym_override] = ACTIONS(6746), + [anon_sym_GT2] = ACTIONS(6481), + [anon_sym_noexcept] = ACTIONS(6696), + [anon_sym_throw] = ACTIONS(6698), + [anon_sym_requires] = ACTIONS(6749), }, - [STATE(2057)] = { - [sym_function_definition] = STATE(2636), - [sym_declaration] = STATE(2636), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6285), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_call_modifier] = STATE(2622), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10769), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(5610), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(5611), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(5898), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(7039), + [STATE(1981)] = { + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(7519), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9077), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8555), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7966), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6582), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(6586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym___based] = ACTIONS(53), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -306987,70 +311907,372 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), + [sym_primitive_type] = ACTIONS(3466), [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7143), - [anon_sym_struct] = ACTIONS(7145), - [anon_sym_union] = ACTIONS(7147), - [anon_sym_typename] = ACTIONS(5102), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2058)] = { - [sym_function_definition] = STATE(2665), - [sym_declaration] = STATE(2665), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6285), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_call_modifier] = STATE(2622), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(11053), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(5610), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(5611), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(5898), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(7039), + [STATE(1982)] = { + [sym_identifier] = ACTIONS(4282), + [anon_sym_LPAREN2] = ACTIONS(4284), + [anon_sym_BANG] = ACTIONS(4284), + [anon_sym_TILDE] = ACTIONS(4284), + [anon_sym_DASH] = ACTIONS(4282), + [anon_sym_PLUS] = ACTIONS(4282), + [anon_sym_STAR] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(4284), + [anon_sym___extension__] = ACTIONS(4282), + [anon_sym_virtual] = ACTIONS(4282), + [anon_sym_extern] = ACTIONS(4282), + [anon_sym___attribute__] = ACTIONS(4282), + [anon_sym___attribute] = ACTIONS(4282), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), + [anon_sym___declspec] = ACTIONS(4282), + [anon_sym_signed] = ACTIONS(4282), + [anon_sym_unsigned] = ACTIONS(4282), + [anon_sym_long] = ACTIONS(4282), + [anon_sym_short] = ACTIONS(4282), + [anon_sym_LBRACK] = ACTIONS(4282), + [anon_sym_static] = ACTIONS(4282), + [anon_sym_register] = ACTIONS(4282), + [anon_sym_inline] = ACTIONS(4282), + [anon_sym___inline] = ACTIONS(4282), + [anon_sym___inline__] = ACTIONS(4282), + [anon_sym___forceinline] = ACTIONS(4282), + [anon_sym_thread_local] = ACTIONS(4282), + [anon_sym___thread] = ACTIONS(4282), + [anon_sym_const] = ACTIONS(4282), + [anon_sym_constexpr] = ACTIONS(4282), + [anon_sym_volatile] = ACTIONS(4282), + [anon_sym_restrict] = ACTIONS(4282), + [anon_sym___restrict__] = ACTIONS(4282), + [anon_sym__Atomic] = ACTIONS(4282), + [anon_sym__Noreturn] = ACTIONS(4282), + [anon_sym_noreturn] = ACTIONS(4282), + [anon_sym__Nonnull] = ACTIONS(4282), + [anon_sym_mutable] = ACTIONS(4282), + [anon_sym_constinit] = ACTIONS(4282), + [anon_sym_consteval] = ACTIONS(4282), + [anon_sym_alignas] = ACTIONS(4282), + [anon_sym__Alignas] = ACTIONS(4282), + [sym_primitive_type] = ACTIONS(4282), + [anon_sym_enum] = ACTIONS(4282), + [anon_sym_class] = ACTIONS(4282), + [anon_sym_struct] = ACTIONS(4282), + [anon_sym_union] = ACTIONS(4282), + [anon_sym_not] = ACTIONS(4282), + [anon_sym_compl] = ACTIONS(4282), + [anon_sym_DASH_DASH] = ACTIONS(4284), + [anon_sym_PLUS_PLUS] = ACTIONS(4284), + [anon_sym_sizeof] = ACTIONS(4282), + [anon_sym___alignof__] = ACTIONS(4282), + [anon_sym___alignof] = ACTIONS(4282), + [anon_sym__alignof] = ACTIONS(4282), + [anon_sym_alignof] = ACTIONS(4282), + [anon_sym__Alignof] = ACTIONS(4282), + [anon_sym_offsetof] = ACTIONS(4282), + [anon_sym__Generic] = ACTIONS(4282), + [anon_sym_typename] = ACTIONS(4282), + [anon_sym_asm] = ACTIONS(4282), + [anon_sym___asm__] = ACTIONS(4282), + [anon_sym___asm] = ACTIONS(4282), + [sym_number_literal] = ACTIONS(4284), + [anon_sym_L_SQUOTE] = ACTIONS(4284), + [anon_sym_u_SQUOTE] = ACTIONS(4284), + [anon_sym_U_SQUOTE] = ACTIONS(4284), + [anon_sym_u8_SQUOTE] = ACTIONS(4284), + [anon_sym_SQUOTE] = ACTIONS(4284), + [anon_sym_L_DQUOTE] = ACTIONS(4284), + [anon_sym_u_DQUOTE] = ACTIONS(4284), + [anon_sym_U_DQUOTE] = ACTIONS(4284), + [anon_sym_u8_DQUOTE] = ACTIONS(4284), + [anon_sym_DQUOTE] = ACTIONS(4284), + [sym_true] = ACTIONS(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4282), + [anon_sym_nullptr] = ACTIONS(4282), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4282), + [anon_sym_decltype] = ACTIONS(4282), + [anon_sym_template] = ACTIONS(4282), + [anon_sym_delete] = ACTIONS(4282), + [anon_sym_R_DQUOTE] = ACTIONS(4284), + [anon_sym_LR_DQUOTE] = ACTIONS(4284), + [anon_sym_uR_DQUOTE] = ACTIONS(4284), + [anon_sym_UR_DQUOTE] = ACTIONS(4284), + [anon_sym_u8R_DQUOTE] = ACTIONS(4284), + [anon_sym_co_await] = ACTIONS(4282), + [anon_sym_new] = ACTIONS(4282), + [anon_sym_requires] = ACTIONS(4282), + [anon_sym_CARET_CARET] = ACTIONS(4284), + [anon_sym_LBRACK_COLON] = ACTIONS(4284), + [sym_this] = ACTIONS(4282), + }, + [STATE(1983)] = { + [sym_identifier] = ACTIONS(4192), + [anon_sym_LPAREN2] = ACTIONS(4194), + [anon_sym_BANG] = ACTIONS(4194), + [anon_sym_TILDE] = ACTIONS(4194), + [anon_sym_DASH] = ACTIONS(4192), + [anon_sym_PLUS] = ACTIONS(4192), + [anon_sym_STAR] = ACTIONS(4194), + [anon_sym_AMP] = ACTIONS(4194), + [anon_sym___extension__] = ACTIONS(4192), + [anon_sym_virtual] = ACTIONS(4192), + [anon_sym_extern] = ACTIONS(4192), + [anon_sym___attribute__] = ACTIONS(4192), + [anon_sym___attribute] = ACTIONS(4192), + [anon_sym_COLON_COLON] = ACTIONS(4194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), + [anon_sym___declspec] = ACTIONS(4192), + [anon_sym_signed] = ACTIONS(4192), + [anon_sym_unsigned] = ACTIONS(4192), + [anon_sym_long] = ACTIONS(4192), + [anon_sym_short] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_static] = ACTIONS(4192), + [anon_sym_register] = ACTIONS(4192), + [anon_sym_inline] = ACTIONS(4192), + [anon_sym___inline] = ACTIONS(4192), + [anon_sym___inline__] = ACTIONS(4192), + [anon_sym___forceinline] = ACTIONS(4192), + [anon_sym_thread_local] = ACTIONS(4192), + [anon_sym___thread] = ACTIONS(4192), + [anon_sym_const] = ACTIONS(4192), + [anon_sym_constexpr] = ACTIONS(4192), + [anon_sym_volatile] = ACTIONS(4192), + [anon_sym_restrict] = ACTIONS(4192), + [anon_sym___restrict__] = ACTIONS(4192), + [anon_sym__Atomic] = ACTIONS(4192), + [anon_sym__Noreturn] = ACTIONS(4192), + [anon_sym_noreturn] = ACTIONS(4192), + [anon_sym__Nonnull] = ACTIONS(4192), + [anon_sym_mutable] = ACTIONS(4192), + [anon_sym_constinit] = ACTIONS(4192), + [anon_sym_consteval] = ACTIONS(4192), + [anon_sym_alignas] = ACTIONS(4192), + [anon_sym__Alignas] = ACTIONS(4192), + [sym_primitive_type] = ACTIONS(4192), + [anon_sym_enum] = ACTIONS(4192), + [anon_sym_class] = ACTIONS(4192), + [anon_sym_struct] = ACTIONS(4192), + [anon_sym_union] = ACTIONS(4192), + [anon_sym_not] = ACTIONS(4192), + [anon_sym_compl] = ACTIONS(4192), + [anon_sym_DASH_DASH] = ACTIONS(4194), + [anon_sym_PLUS_PLUS] = ACTIONS(4194), + [anon_sym_sizeof] = ACTIONS(4192), + [anon_sym___alignof__] = ACTIONS(4192), + [anon_sym___alignof] = ACTIONS(4192), + [anon_sym__alignof] = ACTIONS(4192), + [anon_sym_alignof] = ACTIONS(4192), + [anon_sym__Alignof] = ACTIONS(4192), + [anon_sym_offsetof] = ACTIONS(4192), + [anon_sym__Generic] = ACTIONS(4192), + [anon_sym_typename] = ACTIONS(4192), + [anon_sym_asm] = ACTIONS(4192), + [anon_sym___asm__] = ACTIONS(4192), + [anon_sym___asm] = ACTIONS(4192), + [sym_number_literal] = ACTIONS(4194), + [anon_sym_L_SQUOTE] = ACTIONS(4194), + [anon_sym_u_SQUOTE] = ACTIONS(4194), + [anon_sym_U_SQUOTE] = ACTIONS(4194), + [anon_sym_u8_SQUOTE] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4194), + [anon_sym_L_DQUOTE] = ACTIONS(4194), + [anon_sym_u_DQUOTE] = ACTIONS(4194), + [anon_sym_U_DQUOTE] = ACTIONS(4194), + [anon_sym_u8_DQUOTE] = ACTIONS(4194), + [anon_sym_DQUOTE] = ACTIONS(4194), + [sym_true] = ACTIONS(4192), + [sym_false] = ACTIONS(4192), + [anon_sym_NULL] = ACTIONS(4192), + [anon_sym_nullptr] = ACTIONS(4192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4192), + [anon_sym_decltype] = ACTIONS(4192), + [anon_sym_template] = ACTIONS(4192), + [anon_sym_delete] = ACTIONS(4192), + [anon_sym_R_DQUOTE] = ACTIONS(4194), + [anon_sym_LR_DQUOTE] = ACTIONS(4194), + [anon_sym_uR_DQUOTE] = ACTIONS(4194), + [anon_sym_UR_DQUOTE] = ACTIONS(4194), + [anon_sym_u8R_DQUOTE] = ACTIONS(4194), + [anon_sym_co_await] = ACTIONS(4192), + [anon_sym_new] = ACTIONS(4192), + [anon_sym_requires] = ACTIONS(4192), + [anon_sym_CARET_CARET] = ACTIONS(4194), + [anon_sym_LBRACK_COLON] = ACTIONS(4194), + [sym_this] = ACTIONS(4192), + }, + [STATE(1984)] = { + [sym_attribute_specifier] = STATE(2026), + [sym_attribute_declaration] = STATE(3129), + [sym_type_qualifier] = STATE(2016), + [sym_alignas_qualifier] = STATE(2059), + [aux_sym_type_definition_repeat1] = STATE(2026), + [aux_sym__type_definition_type_repeat1] = STATE(2016), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [sym_identifier] = ACTIONS(6752), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), + [anon_sym_COMMA] = ACTIONS(6754), + [anon_sym_RPAREN] = ACTIONS(6754), + [aux_sym_preproc_if_token2] = ACTIONS(6754), + [aux_sym_preproc_else_token1] = ACTIONS(6754), + [aux_sym_preproc_elif_token1] = ACTIONS(6752), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6754), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6754), + [anon_sym_LPAREN2] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6752), + [anon_sym_STAR] = ACTIONS(6752), + [anon_sym_SLASH] = ACTIONS(6752), + [anon_sym_PERCENT] = ACTIONS(6752), + [anon_sym_PIPE_PIPE] = ACTIONS(6754), + [anon_sym_AMP_AMP] = ACTIONS(6754), + [anon_sym_PIPE] = ACTIONS(6752), + [anon_sym_CARET] = ACTIONS(6752), + [anon_sym_AMP] = ACTIONS(6752), + [anon_sym_EQ_EQ] = ACTIONS(6754), + [anon_sym_BANG_EQ] = ACTIONS(6754), + [anon_sym_GT] = ACTIONS(6752), + [anon_sym_GT_EQ] = ACTIONS(6754), + [anon_sym_LT_EQ] = ACTIONS(6752), + [anon_sym_LT] = ACTIONS(6752), + [anon_sym_LT_LT] = ACTIONS(6752), + [anon_sym_GT_GT] = ACTIONS(6752), + [anon_sym_SEMI] = ACTIONS(6754), + [anon_sym___extension__] = ACTIONS(6489), + [anon_sym___attribute__] = ACTIONS(6752), + [anon_sym___attribute] = ACTIONS(6752), + [anon_sym_COLON] = ACTIONS(6752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6754), + [anon_sym_RBRACE] = ACTIONS(6754), + [anon_sym_LBRACK] = ACTIONS(6752), + [anon_sym_EQ] = ACTIONS(6752), + [anon_sym_const] = ACTIONS(6489), + [anon_sym_constexpr] = ACTIONS(6489), + [anon_sym_volatile] = ACTIONS(6489), + [anon_sym_restrict] = ACTIONS(6489), + [anon_sym___restrict__] = ACTIONS(6489), + [anon_sym__Atomic] = ACTIONS(6489), + [anon_sym__Noreturn] = ACTIONS(6489), + [anon_sym_noreturn] = ACTIONS(6489), + [anon_sym__Nonnull] = ACTIONS(6489), + [anon_sym_mutable] = ACTIONS(6489), + [anon_sym_constinit] = ACTIONS(6489), + [anon_sym_consteval] = ACTIONS(6489), + [anon_sym_alignas] = ACTIONS(6495), + [anon_sym__Alignas] = ACTIONS(6495), + [anon_sym_QMARK] = ACTIONS(6754), + [anon_sym_STAR_EQ] = ACTIONS(6754), + [anon_sym_SLASH_EQ] = ACTIONS(6754), + [anon_sym_PERCENT_EQ] = ACTIONS(6754), + [anon_sym_PLUS_EQ] = ACTIONS(6754), + [anon_sym_DASH_EQ] = ACTIONS(6754), + [anon_sym_LT_LT_EQ] = ACTIONS(6754), + [anon_sym_GT_GT_EQ] = ACTIONS(6754), + [anon_sym_AMP_EQ] = ACTIONS(6754), + [anon_sym_CARET_EQ] = ACTIONS(6754), + [anon_sym_PIPE_EQ] = ACTIONS(6754), + [anon_sym_and_eq] = ACTIONS(6752), + [anon_sym_or_eq] = ACTIONS(6752), + [anon_sym_xor_eq] = ACTIONS(6752), + [anon_sym_LT_EQ_GT] = ACTIONS(6754), + [anon_sym_or] = ACTIONS(6752), + [anon_sym_and] = ACTIONS(6752), + [anon_sym_bitor] = ACTIONS(6752), + [anon_sym_xor] = ACTIONS(6752), + [anon_sym_bitand] = ACTIONS(6752), + [anon_sym_not_eq] = ACTIONS(6752), + [anon_sym_DASH_DASH] = ACTIONS(6754), + [anon_sym_PLUS_PLUS] = ACTIONS(6754), + [anon_sym_asm] = ACTIONS(6752), + [anon_sym___asm__] = ACTIONS(6752), + [anon_sym___asm] = ACTIONS(6752), + [anon_sym_DOT] = ACTIONS(6752), + [anon_sym_DOT_STAR] = ACTIONS(6754), + [anon_sym_DASH_GT] = ACTIONS(6754), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6752), + [anon_sym_override] = ACTIONS(6752), + [anon_sym_noexcept] = ACTIONS(6752), + [anon_sym_throw] = ACTIONS(6752), + [anon_sym_requires] = ACTIONS(6752), + [anon_sym_COLON_RBRACK] = ACTIONS(6754), + }, + [STATE(1985)] = { + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(7543), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9055), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8555), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7966), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6582), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(6586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym___based] = ACTIONS(53), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -307073,70 +312295,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), + [sym_primitive_type] = ACTIONS(3466), [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7149), - [anon_sym_struct] = ACTIONS(7151), - [anon_sym_union] = ACTIONS(7153), - [anon_sym_typename] = ACTIONS(5102), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2059)] = { - [sym_function_definition] = STATE(840), - [sym_declaration] = STATE(840), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6279), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_call_modifier] = STATE(2620), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(10932), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(5610), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(5611), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(5898), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(7039), + [STATE(1986)] = { + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(7528), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9075), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8555), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7966), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6582), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(6586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym___based] = ACTIONS(53), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -307159,70 +312392,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), + [sym_primitive_type] = ACTIONS(3466), [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7155), - [anon_sym_struct] = ACTIONS(7157), - [anon_sym_union] = ACTIONS(7159), - [anon_sym_typename] = ACTIONS(5102), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2060)] = { - [sym_function_definition] = STATE(853), - [sym_declaration] = STATE(853), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6279), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_call_modifier] = STATE(2620), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(11173), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(5610), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(5611), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(5898), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(7039), + [STATE(1987)] = { + [sym_identifier] = ACTIONS(3340), + [anon_sym_LPAREN2] = ACTIONS(3345), + [anon_sym_BANG] = ACTIONS(3345), + [anon_sym_TILDE] = ACTIONS(3345), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3345), + [anon_sym_AMP] = ACTIONS(3345), + [anon_sym___extension__] = ACTIONS(3340), + [anon_sym_virtual] = ACTIONS(3340), + [anon_sym_extern] = ACTIONS(3340), + [anon_sym___attribute__] = ACTIONS(3340), + [anon_sym___attribute] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3345), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3345), + [anon_sym___declspec] = ACTIONS(3340), + [anon_sym_signed] = ACTIONS(3340), + [anon_sym_unsigned] = ACTIONS(3340), + [anon_sym_long] = ACTIONS(3340), + [anon_sym_short] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_static] = ACTIONS(3340), + [anon_sym_register] = ACTIONS(3340), + [anon_sym_inline] = ACTIONS(3340), + [anon_sym___inline] = ACTIONS(3340), + [anon_sym___inline__] = ACTIONS(3340), + [anon_sym___forceinline] = ACTIONS(3340), + [anon_sym_thread_local] = ACTIONS(3340), + [anon_sym___thread] = ACTIONS(3340), + [anon_sym_const] = ACTIONS(3340), + [anon_sym_constexpr] = ACTIONS(3340), + [anon_sym_volatile] = ACTIONS(3340), + [anon_sym_restrict] = ACTIONS(3340), + [anon_sym___restrict__] = ACTIONS(3340), + [anon_sym__Atomic] = ACTIONS(3340), + [anon_sym__Noreturn] = ACTIONS(3340), + [anon_sym_noreturn] = ACTIONS(3340), + [anon_sym__Nonnull] = ACTIONS(3340), + [anon_sym_mutable] = ACTIONS(3340), + [anon_sym_constinit] = ACTIONS(3340), + [anon_sym_consteval] = ACTIONS(3340), + [anon_sym_alignas] = ACTIONS(3340), + [anon_sym__Alignas] = ACTIONS(3340), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3340), + [anon_sym_class] = ACTIONS(3340), + [anon_sym_struct] = ACTIONS(3340), + [anon_sym_union] = ACTIONS(3340), + [anon_sym_not] = ACTIONS(3340), + [anon_sym_compl] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3345), + [anon_sym_PLUS_PLUS] = ACTIONS(3345), + [anon_sym_sizeof] = ACTIONS(3340), + [anon_sym___alignof__] = ACTIONS(3340), + [anon_sym___alignof] = ACTIONS(3340), + [anon_sym__alignof] = ACTIONS(3340), + [anon_sym_alignof] = ACTIONS(3340), + [anon_sym__Alignof] = ACTIONS(3340), + [anon_sym_offsetof] = ACTIONS(3340), + [anon_sym__Generic] = ACTIONS(3340), + [anon_sym_typename] = ACTIONS(3340), + [anon_sym_asm] = ACTIONS(3340), + [anon_sym___asm__] = ACTIONS(3340), + [anon_sym___asm] = ACTIONS(3340), + [sym_number_literal] = ACTIONS(3345), + [anon_sym_L_SQUOTE] = ACTIONS(3345), + [anon_sym_u_SQUOTE] = ACTIONS(3345), + [anon_sym_U_SQUOTE] = ACTIONS(3345), + [anon_sym_u8_SQUOTE] = ACTIONS(3345), + [anon_sym_SQUOTE] = ACTIONS(3345), + [anon_sym_L_DQUOTE] = ACTIONS(3345), + [anon_sym_u_DQUOTE] = ACTIONS(3345), + [anon_sym_U_DQUOTE] = ACTIONS(3345), + [anon_sym_u8_DQUOTE] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(3345), + [sym_true] = ACTIONS(3340), + [sym_false] = ACTIONS(3340), + [anon_sym_NULL] = ACTIONS(3340), + [anon_sym_nullptr] = ACTIONS(3340), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3340), + [anon_sym_decltype] = ACTIONS(3340), + [anon_sym_template] = ACTIONS(3340), + [anon_sym_delete] = ACTIONS(3340), + [anon_sym_R_DQUOTE] = ACTIONS(3345), + [anon_sym_LR_DQUOTE] = ACTIONS(3345), + [anon_sym_uR_DQUOTE] = ACTIONS(3345), + [anon_sym_UR_DQUOTE] = ACTIONS(3345), + [anon_sym_u8R_DQUOTE] = ACTIONS(3345), + [anon_sym_co_await] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_requires] = ACTIONS(3340), + [anon_sym_CARET_CARET] = ACTIONS(3345), + [anon_sym_LBRACK_COLON] = ACTIONS(3345), + [sym_this] = ACTIONS(3340), + }, + [STATE(1988)] = { + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(7549), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9074), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8555), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(4578), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7966), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6582), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(6586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym___based] = ACTIONS(53), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3460), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -307245,1033 +312586,7542 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), + [sym_primitive_type] = ACTIONS(3466), [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7161), - [anon_sym_struct] = ACTIONS(7163), - [anon_sym_union] = ACTIONS(7165), - [anon_sym_typename] = ACTIONS(5102), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2061)] = { - [sym_identifier] = ACTIONS(6226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6228), - [anon_sym_COMMA] = ACTIONS(6228), - [anon_sym_LPAREN2] = ACTIONS(6230), - [anon_sym_TILDE] = ACTIONS(6233), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6230), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_PERCENT] = ACTIONS(6228), - [anon_sym_PIPE_PIPE] = ACTIONS(6228), - [anon_sym_AMP_AMP] = ACTIONS(6230), - [anon_sym_PIPE] = ACTIONS(6235), - [anon_sym_CARET] = ACTIONS(6228), - [anon_sym_AMP] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6228), - [anon_sym_BANG_EQ] = ACTIONS(6228), - [anon_sym_GT] = ACTIONS(6235), - [anon_sym_GT_EQ] = ACTIONS(6228), - [anon_sym_LT_EQ] = ACTIONS(6235), - [anon_sym_LT] = ACTIONS(6235), - [anon_sym_LT_LT] = ACTIONS(6228), - [anon_sym_GT_GT] = ACTIONS(6228), - [anon_sym_SEMI] = ACTIONS(6230), - [anon_sym___extension__] = ACTIONS(6226), - [anon_sym_virtual] = ACTIONS(6226), - [anon_sym_extern] = ACTIONS(6226), - [anon_sym___attribute__] = ACTIONS(6226), - [anon_sym___attribute] = ACTIONS(6226), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6230), - [anon_sym___declspec] = ACTIONS(6226), - [anon_sym___based] = ACTIONS(6226), - [anon_sym___cdecl] = ACTIONS(6226), - [anon_sym___clrcall] = ACTIONS(6226), - [anon_sym___stdcall] = ACTIONS(6226), - [anon_sym___fastcall] = ACTIONS(6226), - [anon_sym___thiscall] = ACTIONS(6226), - [anon_sym___vectorcall] = ACTIONS(6226), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_RBRACE] = ACTIONS(6228), - [anon_sym_LBRACK] = ACTIONS(6237), - [anon_sym_static] = ACTIONS(6226), - [anon_sym_RBRACK] = ACTIONS(6228), - [anon_sym_register] = ACTIONS(6226), - [anon_sym_inline] = ACTIONS(6226), - [anon_sym___inline] = ACTIONS(6226), - [anon_sym___inline__] = ACTIONS(6226), - [anon_sym___forceinline] = ACTIONS(6226), - [anon_sym_thread_local] = ACTIONS(6226), - [anon_sym___thread] = ACTIONS(6226), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6226), - [anon_sym_volatile] = ACTIONS(6226), - [anon_sym_restrict] = ACTIONS(6226), - [anon_sym___restrict__] = ACTIONS(6226), - [anon_sym__Atomic] = ACTIONS(6226), - [anon_sym__Noreturn] = ACTIONS(6226), - [anon_sym_noreturn] = ACTIONS(6226), - [anon_sym__Nonnull] = ACTIONS(6226), - [anon_sym_mutable] = ACTIONS(6226), - [anon_sym_constinit] = ACTIONS(6226), - [anon_sym_consteval] = ACTIONS(6226), - [anon_sym_alignas] = ACTIONS(6226), - [anon_sym__Alignas] = ACTIONS(6226), - [anon_sym_QMARK] = ACTIONS(6228), - [anon_sym_LT_EQ_GT] = ACTIONS(6228), - [anon_sym_or] = ACTIONS(6235), - [anon_sym_and] = ACTIONS(6235), - [anon_sym_bitor] = ACTIONS(6235), - [anon_sym_xor] = ACTIONS(6235), - [anon_sym_bitand] = ACTIONS(6235), - [anon_sym_not_eq] = ACTIONS(6235), - [anon_sym_DASH_DASH] = ACTIONS(6228), - [anon_sym_PLUS_PLUS] = ACTIONS(6228), - [anon_sym_DOT] = ACTIONS(6235), - [anon_sym_DOT_STAR] = ACTIONS(6228), - [anon_sym_DASH_GT] = ACTIONS(6228), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6226), - [anon_sym_decltype] = ACTIONS(6226), - [anon_sym_template] = ACTIONS(6226), - [anon_sym_operator] = ACTIONS(6226), - [anon_sym_LBRACK_COLON] = ACTIONS(6233), + [STATE(1989)] = { + [sym_attribute_specifier] = STATE(2255), + [sym_attribute_declaration] = STATE(4895), + [sym_type_qualifier] = STATE(2398), + [sym_alignas_qualifier] = STATE(2636), + [sym_gnu_asm_expression] = STATE(9115), + [sym_virtual_specifier] = STATE(5261), + [sym_ref_qualifier] = STATE(2673), + [sym__function_attributes_start] = STATE(2635), + [sym__function_exception_specification] = STATE(3351), + [sym__function_attributes_end] = STATE(4590), + [sym__function_postfix] = STATE(5711), + [sym_trailing_return_type] = STATE(4635), + [sym_noexcept] = STATE(3351), + [sym_throw_specifier] = STATE(3351), + [sym_requires_clause] = STATE(5711), + [aux_sym_type_definition_repeat1] = STATE(2255), + [aux_sym__type_definition_type_repeat1] = STATE(2398), + [aux_sym_attributed_declarator_repeat1] = STATE(4895), + [aux_sym__function_postfix_repeat1] = STATE(5261), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), + [anon_sym_COMMA] = ACTIONS(6481), + [anon_sym_RPAREN] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_PLUS] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6479), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_PERCENT] = ACTIONS(6479), + [anon_sym_PIPE_PIPE] = ACTIONS(6481), + [anon_sym_AMP_AMP] = ACTIONS(6756), + [anon_sym_PIPE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6479), + [anon_sym_AMP] = ACTIONS(6759), + [anon_sym_EQ_EQ] = ACTIONS(6481), + [anon_sym_BANG_EQ] = ACTIONS(6481), + [anon_sym_GT] = ACTIONS(6479), + [anon_sym_GT_EQ] = ACTIONS(6481), + [anon_sym_LT_EQ] = ACTIONS(6479), + [anon_sym_LT] = ACTIONS(6479), + [anon_sym_LT_LT] = ACTIONS(6479), + [anon_sym_GT_GT] = ACTIONS(6479), + [anon_sym___extension__] = ACTIONS(6762), + [anon_sym___attribute__] = ACTIONS(6764), + [anon_sym___attribute] = ACTIONS(6766), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_EQ] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(6770), + [anon_sym_constexpr] = ACTIONS(6762), + [anon_sym_volatile] = ACTIONS(6762), + [anon_sym_restrict] = ACTIONS(6762), + [anon_sym___restrict__] = ACTIONS(6762), + [anon_sym__Atomic] = ACTIONS(6762), + [anon_sym__Noreturn] = ACTIONS(6762), + [anon_sym_noreturn] = ACTIONS(6762), + [anon_sym__Nonnull] = ACTIONS(6762), + [anon_sym_mutable] = ACTIONS(6762), + [anon_sym_constinit] = ACTIONS(6762), + [anon_sym_consteval] = ACTIONS(6762), + [anon_sym_alignas] = ACTIONS(6772), + [anon_sym__Alignas] = ACTIONS(6772), + [anon_sym_QMARK] = ACTIONS(6481), + [anon_sym_STAR_EQ] = ACTIONS(6481), + [anon_sym_SLASH_EQ] = ACTIONS(6481), + [anon_sym_PERCENT_EQ] = ACTIONS(6481), + [anon_sym_PLUS_EQ] = ACTIONS(6481), + [anon_sym_DASH_EQ] = ACTIONS(6481), + [anon_sym_LT_LT_EQ] = ACTIONS(6481), + [anon_sym_GT_GT_EQ] = ACTIONS(6481), + [anon_sym_AMP_EQ] = ACTIONS(6481), + [anon_sym_CARET_EQ] = ACTIONS(6481), + [anon_sym_PIPE_EQ] = ACTIONS(6481), + [anon_sym_LT_EQ_GT] = ACTIONS(6481), + [anon_sym_or] = ACTIONS(6481), + [anon_sym_and] = ACTIONS(6481), + [anon_sym_bitor] = ACTIONS(6481), + [anon_sym_xor] = ACTIONS(6481), + [anon_sym_bitand] = ACTIONS(6481), + [anon_sym_not_eq] = ACTIONS(6481), + [anon_sym_DASH_DASH] = ACTIONS(6481), + [anon_sym_PLUS_PLUS] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6479), + [anon_sym_DOT_STAR] = ACTIONS(6481), + [anon_sym_DASH_GT] = ACTIONS(6774), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6777), + [anon_sym_override] = ACTIONS(6777), + [anon_sym_noexcept] = ACTIONS(6779), + [anon_sym_throw] = ACTIONS(6781), + [anon_sym_requires] = ACTIONS(6783), + [anon_sym_DASH_GT_STAR] = ACTIONS(6481), }, - [STATE(2062)] = { - [sym_template_argument_list] = STATE(2081), - [sym_identifier] = ACTIONS(6212), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6205), - [anon_sym_COMMA] = ACTIONS(6205), - [anon_sym_RPAREN] = ACTIONS(6205), - [aux_sym_preproc_if_token2] = ACTIONS(6205), - [aux_sym_preproc_else_token1] = ACTIONS(6205), - [aux_sym_preproc_elif_token1] = ACTIONS(6212), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6205), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6205), - [anon_sym_LPAREN2] = ACTIONS(6205), - [anon_sym_DASH] = ACTIONS(6212), - [anon_sym_PLUS] = ACTIONS(6212), - [anon_sym_STAR] = ACTIONS(6212), - [anon_sym_SLASH] = ACTIONS(6212), - [anon_sym_PERCENT] = ACTIONS(6212), - [anon_sym_PIPE_PIPE] = ACTIONS(6205), - [anon_sym_AMP_AMP] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(6212), - [anon_sym_CARET] = ACTIONS(6212), - [anon_sym_AMP] = ACTIONS(6212), - [anon_sym_EQ_EQ] = ACTIONS(6205), - [anon_sym_BANG_EQ] = ACTIONS(6205), - [anon_sym_GT] = ACTIONS(6212), - [anon_sym_GT_EQ] = ACTIONS(6205), - [anon_sym_LT_EQ] = ACTIONS(6212), - [anon_sym_LT] = ACTIONS(7167), - [anon_sym_LT_LT] = ACTIONS(6212), - [anon_sym_GT_GT] = ACTIONS(6212), - [anon_sym_SEMI] = ACTIONS(6205), - [anon_sym___extension__] = ACTIONS(6201), - [anon_sym___attribute__] = ACTIONS(6212), - [anon_sym___attribute] = ACTIONS(6212), - [anon_sym_COLON] = ACTIONS(6212), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6205), - [anon_sym_LBRACE] = ACTIONS(6208), - [anon_sym_RBRACE] = ACTIONS(6205), - [anon_sym_LBRACK] = ACTIONS(6205), - [anon_sym_EQ] = ACTIONS(6212), - [anon_sym_const] = ACTIONS(6201), - [anon_sym_constexpr] = ACTIONS(6201), - [anon_sym_volatile] = ACTIONS(6201), - [anon_sym_restrict] = ACTIONS(6201), - [anon_sym___restrict__] = ACTIONS(6201), - [anon_sym__Atomic] = ACTIONS(6201), - [anon_sym__Noreturn] = ACTIONS(6201), - [anon_sym_noreturn] = ACTIONS(6201), - [anon_sym__Nonnull] = ACTIONS(6201), - [anon_sym_mutable] = ACTIONS(6201), - [anon_sym_constinit] = ACTIONS(6201), - [anon_sym_consteval] = ACTIONS(6201), - [anon_sym_alignas] = ACTIONS(6201), - [anon_sym__Alignas] = ACTIONS(6201), - [anon_sym_QMARK] = ACTIONS(6205), - [anon_sym_STAR_EQ] = ACTIONS(6205), - [anon_sym_SLASH_EQ] = ACTIONS(6205), - [anon_sym_PERCENT_EQ] = ACTIONS(6205), - [anon_sym_PLUS_EQ] = ACTIONS(6205), - [anon_sym_DASH_EQ] = ACTIONS(6205), - [anon_sym_LT_LT_EQ] = ACTIONS(6205), - [anon_sym_GT_GT_EQ] = ACTIONS(6205), - [anon_sym_AMP_EQ] = ACTIONS(6205), - [anon_sym_CARET_EQ] = ACTIONS(6205), - [anon_sym_PIPE_EQ] = ACTIONS(6205), - [anon_sym_and_eq] = ACTIONS(6212), - [anon_sym_or_eq] = ACTIONS(6212), - [anon_sym_xor_eq] = ACTIONS(6212), - [anon_sym_LT_EQ_GT] = ACTIONS(6205), - [anon_sym_or] = ACTIONS(6212), - [anon_sym_and] = ACTIONS(6212), - [anon_sym_bitor] = ACTIONS(6212), - [anon_sym_xor] = ACTIONS(6212), - [anon_sym_bitand] = ACTIONS(6212), - [anon_sym_not_eq] = ACTIONS(6212), - [anon_sym_DASH_DASH] = ACTIONS(6205), - [anon_sym_PLUS_PLUS] = ACTIONS(6205), - [anon_sym_DOT] = ACTIONS(6212), - [anon_sym_DOT_STAR] = ACTIONS(6205), - [anon_sym_DASH_GT] = ACTIONS(6205), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6201), - [anon_sym_decltype] = ACTIONS(6201), - [anon_sym_COLON_RBRACK] = ACTIONS(6205), + [STATE(1990)] = { + [sym_string_literal] = STATE(2565), + [sym_decltype_auto] = STATE(2234), + [sym_template_argument_list] = STATE(2231), + [sym_raw_string_literal] = STATE(2565), + [aux_sym_sized_type_specifier_repeat1] = STATE(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), + [anon_sym_COMMA] = ACTIONS(5640), + [anon_sym_RPAREN] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(5647), + [anon_sym_PLUS] = ACTIONS(5647), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5647), + [anon_sym_PERCENT] = ACTIONS(5647), + [anon_sym_PIPE_PIPE] = ACTIONS(5640), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5647), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5640), + [anon_sym_BANG_EQ] = ACTIONS(5640), + [anon_sym_GT] = ACTIONS(5647), + [anon_sym_GT_EQ] = ACTIONS(5640), + [anon_sym_LT_EQ] = ACTIONS(5647), + [anon_sym_LT] = ACTIONS(6785), + [anon_sym_LT_LT] = ACTIONS(5647), + [anon_sym_GT_GT] = ACTIONS(5647), + [anon_sym_SEMI] = ACTIONS(5640), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym_COLON] = ACTIONS(5647), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5640), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_RBRACE] = ACTIONS(5640), + [anon_sym_signed] = ACTIONS(6789), + [anon_sym_unsigned] = ACTIONS(6789), + [anon_sym_long] = ACTIONS(6789), + [anon_sym_short] = ACTIONS(6789), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_EQ] = ACTIONS(5647), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5643), + [anon_sym_volatile] = ACTIONS(5643), + [anon_sym_restrict] = ACTIONS(5643), + [anon_sym___restrict__] = ACTIONS(5643), + [anon_sym__Atomic] = ACTIONS(5643), + [anon_sym__Noreturn] = ACTIONS(5643), + [anon_sym_noreturn] = ACTIONS(5643), + [anon_sym__Nonnull] = ACTIONS(5643), + [anon_sym_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [anon_sym_alignas] = ACTIONS(5643), + [anon_sym__Alignas] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5640), + [anon_sym_STAR_EQ] = ACTIONS(5640), + [anon_sym_SLASH_EQ] = ACTIONS(5640), + [anon_sym_PERCENT_EQ] = ACTIONS(5640), + [anon_sym_PLUS_EQ] = ACTIONS(5640), + [anon_sym_DASH_EQ] = ACTIONS(5640), + [anon_sym_LT_LT_EQ] = ACTIONS(5640), + [anon_sym_GT_GT_EQ] = ACTIONS(5640), + [anon_sym_AMP_EQ] = ACTIONS(5640), + [anon_sym_CARET_EQ] = ACTIONS(5640), + [anon_sym_PIPE_EQ] = ACTIONS(5640), + [anon_sym_and_eq] = ACTIONS(5640), + [anon_sym_or_eq] = ACTIONS(5640), + [anon_sym_xor_eq] = ACTIONS(5640), + [anon_sym_LT_EQ_GT] = ACTIONS(5640), + [anon_sym_or] = ACTIONS(5647), + [anon_sym_and] = ACTIONS(5647), + [anon_sym_bitor] = ACTIONS(5640), + [anon_sym_xor] = ACTIONS(5647), + [anon_sym_bitand] = ACTIONS(5640), + [anon_sym_not_eq] = ACTIONS(5640), + [anon_sym_DASH_DASH] = ACTIONS(5640), + [anon_sym_PLUS_PLUS] = ACTIONS(5640), + [anon_sym_DOT] = ACTIONS(5647), + [anon_sym_DOT_STAR] = ACTIONS(5640), + [anon_sym_DASH_GT] = ACTIONS(5640), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6791), + [anon_sym_decltype] = ACTIONS(6793), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_COLON_RBRACK] = ACTIONS(5640), }, - [STATE(2063)] = { - [sym_identifier] = ACTIONS(6798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [aux_sym_preproc_if_token2] = ACTIONS(6800), - [aux_sym_preproc_else_token1] = ACTIONS(6800), - [aux_sym_preproc_elif_token1] = ACTIONS(6798), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym_SEMI] = ACTIONS(6800), - [anon_sym___extension__] = ACTIONS(6798), - [anon_sym___attribute__] = ACTIONS(6798), - [anon_sym___attribute] = ACTIONS(6798), - [anon_sym_COLON] = ACTIONS(6798), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_RBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6798), - [anon_sym_volatile] = ACTIONS(6798), - [anon_sym_restrict] = ACTIONS(6798), - [anon_sym___restrict__] = ACTIONS(6798), - [anon_sym__Atomic] = ACTIONS(6798), - [anon_sym__Noreturn] = ACTIONS(6798), - [anon_sym_noreturn] = ACTIONS(6798), - [anon_sym__Nonnull] = ACTIONS(6798), - [anon_sym_mutable] = ACTIONS(6798), - [anon_sym_constinit] = ACTIONS(6798), - [anon_sym_consteval] = ACTIONS(6798), - [anon_sym_alignas] = ACTIONS(6798), - [anon_sym__Alignas] = ACTIONS(6798), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6798), - [anon_sym_or_eq] = ACTIONS(6798), - [anon_sym_xor_eq] = ACTIONS(6798), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6798), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6798), - [anon_sym_not_eq] = ACTIONS(6798), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6798), - [anon_sym_override] = ACTIONS(6798), + [STATE(1991)] = { + [sym_attribute_specifier] = STATE(2255), + [sym_attribute_declaration] = STATE(4895), + [sym_type_qualifier] = STATE(2398), + [sym_alignas_qualifier] = STATE(2636), + [sym_gnu_asm_expression] = STATE(9115), + [sym_virtual_specifier] = STATE(5261), + [sym_ref_qualifier] = STATE(2695), + [sym__function_attributes_start] = STATE(2611), + [sym__function_exception_specification] = STATE(3382), + [sym__function_attributes_end] = STATE(4568), + [sym__function_postfix] = STATE(5711), + [sym_trailing_return_type] = STATE(4677), + [sym_noexcept] = STATE(3382), + [sym_throw_specifier] = STATE(3382), + [sym_requires_clause] = STATE(5711), + [aux_sym_type_definition_repeat1] = STATE(2255), + [aux_sym__type_definition_type_repeat1] = STATE(2398), + [aux_sym_attributed_declarator_repeat1] = STATE(4895), + [aux_sym__function_postfix_repeat1] = STATE(5261), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), + [anon_sym_COMMA] = ACTIONS(6481), + [anon_sym_RPAREN] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_PLUS] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6479), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_PERCENT] = ACTIONS(6479), + [anon_sym_PIPE_PIPE] = ACTIONS(6481), + [anon_sym_AMP_AMP] = ACTIONS(6756), + [anon_sym_PIPE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6479), + [anon_sym_AMP] = ACTIONS(6759), + [anon_sym_EQ_EQ] = ACTIONS(6481), + [anon_sym_BANG_EQ] = ACTIONS(6481), + [anon_sym_GT] = ACTIONS(6479), + [anon_sym_GT_EQ] = ACTIONS(6481), + [anon_sym_LT_EQ] = ACTIONS(6479), + [anon_sym_LT] = ACTIONS(6479), + [anon_sym_LT_LT] = ACTIONS(6479), + [anon_sym_GT_GT] = ACTIONS(6479), + [anon_sym___extension__] = ACTIONS(6762), + [anon_sym___attribute__] = ACTIONS(6764), + [anon_sym___attribute] = ACTIONS(6766), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_EQ] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(6770), + [anon_sym_constexpr] = ACTIONS(6762), + [anon_sym_volatile] = ACTIONS(6762), + [anon_sym_restrict] = ACTIONS(6762), + [anon_sym___restrict__] = ACTIONS(6762), + [anon_sym__Atomic] = ACTIONS(6762), + [anon_sym__Noreturn] = ACTIONS(6762), + [anon_sym_noreturn] = ACTIONS(6762), + [anon_sym__Nonnull] = ACTIONS(6762), + [anon_sym_mutable] = ACTIONS(6762), + [anon_sym_constinit] = ACTIONS(6762), + [anon_sym_consteval] = ACTIONS(6762), + [anon_sym_alignas] = ACTIONS(6772), + [anon_sym__Alignas] = ACTIONS(6772), + [anon_sym_QMARK] = ACTIONS(6481), + [anon_sym_STAR_EQ] = ACTIONS(6481), + [anon_sym_SLASH_EQ] = ACTIONS(6481), + [anon_sym_PERCENT_EQ] = ACTIONS(6481), + [anon_sym_PLUS_EQ] = ACTIONS(6481), + [anon_sym_DASH_EQ] = ACTIONS(6481), + [anon_sym_LT_LT_EQ] = ACTIONS(6481), + [anon_sym_GT_GT_EQ] = ACTIONS(6481), + [anon_sym_AMP_EQ] = ACTIONS(6481), + [anon_sym_CARET_EQ] = ACTIONS(6481), + [anon_sym_PIPE_EQ] = ACTIONS(6481), + [anon_sym_LT_EQ_GT] = ACTIONS(6481), + [anon_sym_or] = ACTIONS(6481), + [anon_sym_and] = ACTIONS(6481), + [anon_sym_bitor] = ACTIONS(6481), + [anon_sym_xor] = ACTIONS(6481), + [anon_sym_bitand] = ACTIONS(6481), + [anon_sym_not_eq] = ACTIONS(6481), + [anon_sym_DASH_DASH] = ACTIONS(6481), + [anon_sym_PLUS_PLUS] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6479), + [anon_sym_DOT_STAR] = ACTIONS(6481), + [anon_sym_DASH_GT] = ACTIONS(6774), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6795), + [anon_sym_override] = ACTIONS(6795), + [anon_sym_noexcept] = ACTIONS(6779), + [anon_sym_throw] = ACTIONS(6781), [anon_sym_requires] = ACTIONS(6798), - [anon_sym_COLON_RBRACK] = ACTIONS(6800), + [anon_sym_DASH_GT_STAR] = ACTIONS(6481), }, - [STATE(2064)] = { - [sym_function_definition] = STATE(3243), - [sym_declaration] = STATE(3243), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6294), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_call_modifier] = STATE(2623), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(11026), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(5610), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(5611), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(5898), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(7039), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7171), - [anon_sym_struct] = ACTIONS(7173), - [anon_sym_union] = ACTIONS(7175), - [anon_sym_typename] = ACTIONS(5102), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [STATE(1992)] = { + [sym_string_literal] = STATE(4105), + [sym_decltype_auto] = STATE(4116), + [sym_template_argument_list] = STATE(3449), + [sym_raw_string_literal] = STATE(4105), + [aux_sym_sized_type_specifier_repeat1] = STATE(3285), + [sym_identifier] = ACTIONS(5647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), + [anon_sym_COMMA] = ACTIONS(5640), + [aux_sym_preproc_if_token2] = ACTIONS(5640), + [aux_sym_preproc_else_token1] = ACTIONS(5640), + [aux_sym_preproc_elif_token1] = ACTIONS(5647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5640), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(5647), + [anon_sym_PLUS] = ACTIONS(5647), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5647), + [anon_sym_PERCENT] = ACTIONS(5647), + [anon_sym_PIPE_PIPE] = ACTIONS(5640), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5647), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5640), + [anon_sym_BANG_EQ] = ACTIONS(5640), + [anon_sym_GT] = ACTIONS(5647), + [anon_sym_GT_EQ] = ACTIONS(5640), + [anon_sym_LT_EQ] = ACTIONS(5647), + [anon_sym_LT] = ACTIONS(6801), + [anon_sym_LT_LT] = ACTIONS(5647), + [anon_sym_GT_GT] = ACTIONS(5647), + [anon_sym___extension__] = ACTIONS(5636), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(6805), + [anon_sym_unsigned] = ACTIONS(6805), + [anon_sym_long] = ACTIONS(6805), + [anon_sym_short] = ACTIONS(6805), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_EQ] = ACTIONS(6807), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5636), + [anon_sym_volatile] = ACTIONS(5636), + [anon_sym_restrict] = ACTIONS(5636), + [anon_sym___restrict__] = ACTIONS(5636), + [anon_sym__Atomic] = ACTIONS(5636), + [anon_sym__Noreturn] = ACTIONS(5636), + [anon_sym_noreturn] = ACTIONS(5636), + [anon_sym__Nonnull] = ACTIONS(5636), + [anon_sym_mutable] = ACTIONS(5636), + [anon_sym_constinit] = ACTIONS(5636), + [anon_sym_consteval] = ACTIONS(5636), + [anon_sym_alignas] = ACTIONS(5636), + [anon_sym__Alignas] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5640), + [anon_sym_STAR_EQ] = ACTIONS(6809), + [anon_sym_SLASH_EQ] = ACTIONS(6809), + [anon_sym_PERCENT_EQ] = ACTIONS(6809), + [anon_sym_PLUS_EQ] = ACTIONS(6809), + [anon_sym_DASH_EQ] = ACTIONS(6809), + [anon_sym_LT_LT_EQ] = ACTIONS(6809), + [anon_sym_GT_GT_EQ] = ACTIONS(6809), + [anon_sym_AMP_EQ] = ACTIONS(6809), + [anon_sym_CARET_EQ] = ACTIONS(6809), + [anon_sym_PIPE_EQ] = ACTIONS(6809), + [anon_sym_and_eq] = ACTIONS(6807), + [anon_sym_or_eq] = ACTIONS(6807), + [anon_sym_xor_eq] = ACTIONS(6807), + [anon_sym_LT_EQ_GT] = ACTIONS(5640), + [anon_sym_or] = ACTIONS(5647), + [anon_sym_and] = ACTIONS(5647), + [anon_sym_bitor] = ACTIONS(5647), + [anon_sym_xor] = ACTIONS(5647), + [anon_sym_bitand] = ACTIONS(5647), + [anon_sym_not_eq] = ACTIONS(5647), + [anon_sym_DASH_DASH] = ACTIONS(5640), + [anon_sym_PLUS_PLUS] = ACTIONS(5640), + [anon_sym_DOT] = ACTIONS(5647), + [anon_sym_DOT_STAR] = ACTIONS(5640), + [anon_sym_DASH_GT] = ACTIONS(5640), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6811), + [anon_sym_decltype] = ACTIONS(6813), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), }, - [STATE(2065)] = { - [sym_function_definition] = STATE(3245), - [sym_declaration] = STATE(3245), - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6294), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_ms_call_modifier] = STATE(2623), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym__class_name] = STATE(11152), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(5610), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(5611), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(5898), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(7039), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7177), - [anon_sym_struct] = ACTIONS(7179), - [anon_sym_union] = ACTIONS(7181), - [anon_sym_typename] = ACTIONS(5102), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [STATE(1993)] = { + [sym_string_literal] = STATE(2565), + [sym_decltype_auto] = STATE(2234), + [sym_template_argument_list] = STATE(2231), + [sym_raw_string_literal] = STATE(2565), + [aux_sym_sized_type_specifier_repeat1] = STATE(2209), + [sym_identifier] = ACTIONS(5647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), + [anon_sym_COMMA] = ACTIONS(5640), + [aux_sym_preproc_if_token2] = ACTIONS(5640), + [aux_sym_preproc_else_token1] = ACTIONS(5640), + [aux_sym_preproc_elif_token1] = ACTIONS(5647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5640), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(5647), + [anon_sym_PLUS] = ACTIONS(5647), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5647), + [anon_sym_PERCENT] = ACTIONS(5647), + [anon_sym_PIPE_PIPE] = ACTIONS(5640), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5647), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5640), + [anon_sym_BANG_EQ] = ACTIONS(5640), + [anon_sym_GT] = ACTIONS(5647), + [anon_sym_GT_EQ] = ACTIONS(5640), + [anon_sym_LT_EQ] = ACTIONS(5647), + [anon_sym_LT] = ACTIONS(6785), + [anon_sym_LT_LT] = ACTIONS(5647), + [anon_sym_GT_GT] = ACTIONS(5647), + [anon_sym___extension__] = ACTIONS(5636), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(6815), + [anon_sym_unsigned] = ACTIONS(6815), + [anon_sym_long] = ACTIONS(6815), + [anon_sym_short] = ACTIONS(6815), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_EQ] = ACTIONS(5647), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5636), + [anon_sym_volatile] = ACTIONS(5636), + [anon_sym_restrict] = ACTIONS(5636), + [anon_sym___restrict__] = ACTIONS(5636), + [anon_sym__Atomic] = ACTIONS(5636), + [anon_sym__Noreturn] = ACTIONS(5636), + [anon_sym_noreturn] = ACTIONS(5636), + [anon_sym__Nonnull] = ACTIONS(5636), + [anon_sym_mutable] = ACTIONS(5636), + [anon_sym_constinit] = ACTIONS(5636), + [anon_sym_consteval] = ACTIONS(5636), + [anon_sym_alignas] = ACTIONS(5636), + [anon_sym__Alignas] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5640), + [anon_sym_STAR_EQ] = ACTIONS(5640), + [anon_sym_SLASH_EQ] = ACTIONS(5640), + [anon_sym_PERCENT_EQ] = ACTIONS(5640), + [anon_sym_PLUS_EQ] = ACTIONS(5640), + [anon_sym_DASH_EQ] = ACTIONS(5640), + [anon_sym_LT_LT_EQ] = ACTIONS(5640), + [anon_sym_GT_GT_EQ] = ACTIONS(5640), + [anon_sym_AMP_EQ] = ACTIONS(5640), + [anon_sym_CARET_EQ] = ACTIONS(5640), + [anon_sym_PIPE_EQ] = ACTIONS(5640), + [anon_sym_and_eq] = ACTIONS(5647), + [anon_sym_or_eq] = ACTIONS(5647), + [anon_sym_xor_eq] = ACTIONS(5647), + [anon_sym_LT_EQ_GT] = ACTIONS(5640), + [anon_sym_or] = ACTIONS(5647), + [anon_sym_and] = ACTIONS(5647), + [anon_sym_bitor] = ACTIONS(5647), + [anon_sym_xor] = ACTIONS(5647), + [anon_sym_bitand] = ACTIONS(5647), + [anon_sym_not_eq] = ACTIONS(5647), + [anon_sym_DASH_DASH] = ACTIONS(5640), + [anon_sym_PLUS_PLUS] = ACTIONS(5640), + [anon_sym_DOT] = ACTIONS(5647), + [anon_sym_DOT_STAR] = ACTIONS(5640), + [anon_sym_DASH_GT] = ACTIONS(5640), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6817), + [anon_sym_decltype] = ACTIONS(6819), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), }, - [STATE(2066)] = { - [sym_decltype_auto] = STATE(2101), - [sym_identifier] = ACTIONS(6798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [aux_sym_preproc_if_token2] = ACTIONS(6800), - [aux_sym_preproc_else_token1] = ACTIONS(6800), - [aux_sym_preproc_elif_token1] = ACTIONS(6798), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym_SEMI] = ACTIONS(6800), - [anon_sym___extension__] = ACTIONS(6798), - [anon_sym___attribute__] = ACTIONS(6798), - [anon_sym___attribute] = ACTIONS(6798), - [anon_sym_COLON] = ACTIONS(6798), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(7183), - [anon_sym_RBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6798), - [anon_sym_volatile] = ACTIONS(6798), - [anon_sym_restrict] = ACTIONS(6798), - [anon_sym___restrict__] = ACTIONS(6798), - [anon_sym__Atomic] = ACTIONS(6798), - [anon_sym__Noreturn] = ACTIONS(6798), - [anon_sym_noreturn] = ACTIONS(6798), - [anon_sym__Nonnull] = ACTIONS(6798), - [anon_sym_mutable] = ACTIONS(6798), - [anon_sym_constinit] = ACTIONS(6798), - [anon_sym_consteval] = ACTIONS(6798), - [anon_sym_alignas] = ACTIONS(6798), - [anon_sym__Alignas] = ACTIONS(6798), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6798), - [anon_sym_or_eq] = ACTIONS(6798), - [anon_sym_xor_eq] = ACTIONS(6798), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6798), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6798), - [anon_sym_not_eq] = ACTIONS(6798), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6804), - [anon_sym_decltype] = ACTIONS(6437), - [anon_sym_COLON_RBRACK] = ACTIONS(6800), + [STATE(1994)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2082), + [sym_ms_pointer_modifier] = STATE(2028), + [sym__abstract_declarator] = STATE(4244), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2107), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1947), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2107), + [aux_sym_pointer_declarator_repeat1] = STATE(2028), + [sym_identifier] = ACTIONS(6821), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [aux_sym_preproc_if_token2] = ACTIONS(6823), + [aux_sym_preproc_else_token1] = ACTIONS(6823), + [aux_sym_preproc_elif_token1] = ACTIONS(6821), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6823), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(6827), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(6829), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(6831), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(6833), + [sym_ms_restrict_modifier] = ACTIONS(6835), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6835), + [sym_ms_signed_ptr_modifier] = ACTIONS(6835), + [anon_sym__unaligned] = ACTIONS(6837), + [anon_sym___unaligned] = ACTIONS(6837), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(6833), + [anon_sym_volatile] = ACTIONS(6833), + [anon_sym_restrict] = ACTIONS(6833), + [anon_sym___restrict__] = ACTIONS(6833), + [anon_sym__Atomic] = ACTIONS(6833), + [anon_sym__Noreturn] = ACTIONS(6833), + [anon_sym_noreturn] = ACTIONS(6833), + [anon_sym__Nonnull] = ACTIONS(6833), + [anon_sym_mutable] = ACTIONS(6833), + [anon_sym_constinit] = ACTIONS(6833), + [anon_sym_consteval] = ACTIONS(6833), + [anon_sym_alignas] = ACTIONS(6841), + [anon_sym__Alignas] = ACTIONS(6841), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6821), + [anon_sym_or_eq] = ACTIONS(6821), + [anon_sym_xor_eq] = ACTIONS(6821), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6821), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6821), + [anon_sym_not_eq] = ACTIONS(6821), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6821), + [anon_sym_override] = ACTIONS(6821), + [anon_sym_requires] = ACTIONS(6821), }, - [STATE(2067)] = { - [sym_identifier] = ACTIONS(7185), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7183), - [anon_sym_COMMA] = ACTIONS(7183), - [anon_sym_RPAREN] = ACTIONS(7183), - [aux_sym_preproc_if_token2] = ACTIONS(7183), - [aux_sym_preproc_else_token1] = ACTIONS(7183), - [aux_sym_preproc_elif_token1] = ACTIONS(7185), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7183), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7183), - [anon_sym_LPAREN2] = ACTIONS(7183), - [anon_sym_DASH] = ACTIONS(7185), - [anon_sym_PLUS] = ACTIONS(7185), - [anon_sym_STAR] = ACTIONS(7185), - [anon_sym_SLASH] = ACTIONS(7185), - [anon_sym_PERCENT] = ACTIONS(7185), - [anon_sym_PIPE_PIPE] = ACTIONS(7183), - [anon_sym_AMP_AMP] = ACTIONS(7183), - [anon_sym_PIPE] = ACTIONS(7185), - [anon_sym_CARET] = ACTIONS(7185), - [anon_sym_AMP] = ACTIONS(7185), - [anon_sym_EQ_EQ] = ACTIONS(7183), - [anon_sym_BANG_EQ] = ACTIONS(7183), - [anon_sym_GT] = ACTIONS(7185), - [anon_sym_GT_EQ] = ACTIONS(7183), - [anon_sym_LT_EQ] = ACTIONS(7185), - [anon_sym_LT] = ACTIONS(7185), - [anon_sym_LT_LT] = ACTIONS(7185), - [anon_sym_GT_GT] = ACTIONS(7185), - [anon_sym_SEMI] = ACTIONS(7183), - [anon_sym___extension__] = ACTIONS(7185), - [anon_sym___attribute__] = ACTIONS(7185), - [anon_sym___attribute] = ACTIONS(7185), - [anon_sym_COLON] = ACTIONS(7185), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7183), - [anon_sym_LBRACE] = ACTIONS(7183), - [anon_sym_RBRACE] = ACTIONS(7183), - [anon_sym_LBRACK] = ACTIONS(7183), - [anon_sym_EQ] = ACTIONS(7185), - [anon_sym_const] = ACTIONS(7185), - [anon_sym_constexpr] = ACTIONS(7185), - [anon_sym_volatile] = ACTIONS(7185), - [anon_sym_restrict] = ACTIONS(7185), - [anon_sym___restrict__] = ACTIONS(7185), - [anon_sym__Atomic] = ACTIONS(7185), - [anon_sym__Noreturn] = ACTIONS(7185), - [anon_sym_noreturn] = ACTIONS(7185), - [anon_sym__Nonnull] = ACTIONS(7185), - [anon_sym_mutable] = ACTIONS(7185), - [anon_sym_constinit] = ACTIONS(7185), - [anon_sym_consteval] = ACTIONS(7185), - [anon_sym_alignas] = ACTIONS(7185), - [anon_sym__Alignas] = ACTIONS(7185), - [anon_sym_QMARK] = ACTIONS(7183), - [anon_sym_STAR_EQ] = ACTIONS(7183), - [anon_sym_SLASH_EQ] = ACTIONS(7183), - [anon_sym_PERCENT_EQ] = ACTIONS(7183), - [anon_sym_PLUS_EQ] = ACTIONS(7183), - [anon_sym_DASH_EQ] = ACTIONS(7183), - [anon_sym_LT_LT_EQ] = ACTIONS(7183), - [anon_sym_GT_GT_EQ] = ACTIONS(7183), - [anon_sym_AMP_EQ] = ACTIONS(7183), - [anon_sym_CARET_EQ] = ACTIONS(7183), - [anon_sym_PIPE_EQ] = ACTIONS(7183), - [anon_sym_and_eq] = ACTIONS(7185), - [anon_sym_or_eq] = ACTIONS(7185), - [anon_sym_xor_eq] = ACTIONS(7185), - [anon_sym_LT_EQ_GT] = ACTIONS(7183), - [anon_sym_or] = ACTIONS(7185), - [anon_sym_and] = ACTIONS(7185), - [anon_sym_bitor] = ACTIONS(7185), - [anon_sym_xor] = ACTIONS(7185), - [anon_sym_bitand] = ACTIONS(7185), - [anon_sym_not_eq] = ACTIONS(7185), - [anon_sym_DASH_DASH] = ACTIONS(7183), - [anon_sym_PLUS_PLUS] = ACTIONS(7183), - [anon_sym_DOT] = ACTIONS(7185), - [anon_sym_DOT_STAR] = ACTIONS(7183), - [anon_sym_DASH_GT] = ACTIONS(7183), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7185), - [anon_sym_override] = ACTIONS(7185), - [anon_sym_requires] = ACTIONS(7185), - [anon_sym_COLON_RBRACK] = ACTIONS(7183), + [STATE(1995)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2082), + [sym_ms_pointer_modifier] = STATE(2028), + [sym__abstract_declarator] = STATE(4165), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2102), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1953), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2102), + [aux_sym_pointer_declarator_repeat1] = STATE(2028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(6843), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(6845), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(6847), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym_SEMI] = ACTIONS(6823), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym_COLON] = ACTIONS(6821), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6823), + [sym_ms_restrict_modifier] = ACTIONS(6835), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6851), + [sym_ms_signed_ptr_modifier] = ACTIONS(6851), + [anon_sym__unaligned] = ACTIONS(6853), + [anon_sym___unaligned] = ACTIONS(6853), + [anon_sym_RBRACE] = ACTIONS(6823), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6823), + [anon_sym_or_eq] = ACTIONS(6823), + [anon_sym_xor_eq] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6823), + [anon_sym_override] = ACTIONS(6823), + [anon_sym_requires] = ACTIONS(6823), + [anon_sym_COLON_RBRACK] = ACTIONS(6823), }, - [STATE(2068)] = { - [sym_template_argument_list] = STATE(2096), - [sym_identifier] = ACTIONS(6212), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6205), - [anon_sym_COMMA] = ACTIONS(6205), - [anon_sym_RPAREN] = ACTIONS(6205), - [aux_sym_preproc_if_token2] = ACTIONS(6205), - [aux_sym_preproc_else_token1] = ACTIONS(6205), - [aux_sym_preproc_elif_token1] = ACTIONS(6212), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6205), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6205), - [anon_sym_LPAREN2] = ACTIONS(6205), - [anon_sym_DASH] = ACTIONS(6212), - [anon_sym_PLUS] = ACTIONS(6212), - [anon_sym_STAR] = ACTIONS(6212), - [anon_sym_SLASH] = ACTIONS(6212), - [anon_sym_PERCENT] = ACTIONS(6212), - [anon_sym_PIPE_PIPE] = ACTIONS(6205), - [anon_sym_AMP_AMP] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(6212), - [anon_sym_CARET] = ACTIONS(6212), - [anon_sym_AMP] = ACTIONS(6212), - [anon_sym_EQ_EQ] = ACTIONS(6205), - [anon_sym_BANG_EQ] = ACTIONS(6205), - [anon_sym_GT] = ACTIONS(6212), - [anon_sym_GT_EQ] = ACTIONS(6205), - [anon_sym_LT_EQ] = ACTIONS(6212), - [anon_sym_LT] = ACTIONS(7167), - [anon_sym_LT_LT] = ACTIONS(6212), - [anon_sym_GT_GT] = ACTIONS(6212), - [anon_sym_SEMI] = ACTIONS(6205), - [anon_sym___extension__] = ACTIONS(6201), - [anon_sym___attribute__] = ACTIONS(6212), - [anon_sym___attribute] = ACTIONS(6212), - [anon_sym_COLON] = ACTIONS(6212), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6205), - [anon_sym_LBRACE] = ACTIONS(6208), - [anon_sym_RBRACE] = ACTIONS(6205), - [anon_sym_LBRACK] = ACTIONS(6205), - [anon_sym_EQ] = ACTIONS(6210), - [anon_sym_const] = ACTIONS(6201), - [anon_sym_constexpr] = ACTIONS(6201), - [anon_sym_volatile] = ACTIONS(6201), - [anon_sym_restrict] = ACTIONS(6201), - [anon_sym___restrict__] = ACTIONS(6201), - [anon_sym__Atomic] = ACTIONS(6201), - [anon_sym__Noreturn] = ACTIONS(6201), - [anon_sym_noreturn] = ACTIONS(6201), - [anon_sym__Nonnull] = ACTIONS(6201), - [anon_sym_mutable] = ACTIONS(6201), - [anon_sym_constinit] = ACTIONS(6201), - [anon_sym_consteval] = ACTIONS(6201), - [anon_sym_alignas] = ACTIONS(6201), - [anon_sym__Alignas] = ACTIONS(6201), - [anon_sym_QMARK] = ACTIONS(6205), - [anon_sym_STAR_EQ] = ACTIONS(6203), - [anon_sym_SLASH_EQ] = ACTIONS(6203), - [anon_sym_PERCENT_EQ] = ACTIONS(6203), - [anon_sym_PLUS_EQ] = ACTIONS(6203), - [anon_sym_DASH_EQ] = ACTIONS(6203), - [anon_sym_LT_LT_EQ] = ACTIONS(6203), - [anon_sym_GT_GT_EQ] = ACTIONS(6203), - [anon_sym_AMP_EQ] = ACTIONS(6203), - [anon_sym_CARET_EQ] = ACTIONS(6203), - [anon_sym_PIPE_EQ] = ACTIONS(6203), - [anon_sym_and_eq] = ACTIONS(6210), - [anon_sym_or_eq] = ACTIONS(6210), - [anon_sym_xor_eq] = ACTIONS(6210), - [anon_sym_LT_EQ_GT] = ACTIONS(6205), - [anon_sym_or] = ACTIONS(6212), - [anon_sym_and] = ACTIONS(6212), - [anon_sym_bitor] = ACTIONS(6212), - [anon_sym_xor] = ACTIONS(6212), - [anon_sym_bitand] = ACTIONS(6212), - [anon_sym_not_eq] = ACTIONS(6212), - [anon_sym_DASH_DASH] = ACTIONS(6205), - [anon_sym_PLUS_PLUS] = ACTIONS(6205), - [anon_sym_DOT] = ACTIONS(6212), - [anon_sym_DOT_STAR] = ACTIONS(6205), - [anon_sym_DASH_GT] = ACTIONS(6205), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6201), - [anon_sym_decltype] = ACTIONS(6201), - [anon_sym_COLON_RBRACK] = ACTIONS(6205), + [STATE(1996)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2082), + [sym_ms_pointer_modifier] = STATE(1995), + [sym__abstract_declarator] = STATE(4162), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2126), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1953), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2126), + [aux_sym_pointer_declarator_repeat1] = STATE(1995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_RPAREN] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6861), + [anon_sym_STAR] = ACTIONS(6843), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_PIPE_PIPE] = ACTIONS(6859), + [anon_sym_AMP_AMP] = ACTIONS(6845), + [anon_sym_PIPE] = ACTIONS(6861), + [anon_sym_CARET] = ACTIONS(6861), + [anon_sym_AMP] = ACTIONS(6847), + [anon_sym_EQ_EQ] = ACTIONS(6859), + [anon_sym_BANG_EQ] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6861), + [anon_sym_GT_EQ] = ACTIONS(6859), + [anon_sym_LT_EQ] = ACTIONS(6861), + [anon_sym_LT] = ACTIONS(6861), + [anon_sym_LT_LT] = ACTIONS(6861), + [anon_sym_GT_GT] = ACTIONS(6861), + [anon_sym_SEMI] = ACTIONS(6859), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym_COLON] = ACTIONS(6861), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6859), + [sym_ms_restrict_modifier] = ACTIONS(6835), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6851), + [sym_ms_signed_ptr_modifier] = ACTIONS(6851), + [anon_sym__unaligned] = ACTIONS(6853), + [anon_sym___unaligned] = ACTIONS(6853), + [anon_sym_RBRACE] = ACTIONS(6859), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(6861), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(6859), + [anon_sym_STAR_EQ] = ACTIONS(6859), + [anon_sym_SLASH_EQ] = ACTIONS(6859), + [anon_sym_PERCENT_EQ] = ACTIONS(6859), + [anon_sym_PLUS_EQ] = ACTIONS(6859), + [anon_sym_DASH_EQ] = ACTIONS(6859), + [anon_sym_LT_LT_EQ] = ACTIONS(6859), + [anon_sym_GT_GT_EQ] = ACTIONS(6859), + [anon_sym_AMP_EQ] = ACTIONS(6859), + [anon_sym_CARET_EQ] = ACTIONS(6859), + [anon_sym_PIPE_EQ] = ACTIONS(6859), + [anon_sym_and_eq] = ACTIONS(6859), + [anon_sym_or_eq] = ACTIONS(6859), + [anon_sym_xor_eq] = ACTIONS(6859), + [anon_sym_LT_EQ_GT] = ACTIONS(6859), + [anon_sym_or] = ACTIONS(6861), + [anon_sym_and] = ACTIONS(6861), + [anon_sym_bitor] = ACTIONS(6859), + [anon_sym_xor] = ACTIONS(6861), + [anon_sym_bitand] = ACTIONS(6859), + [anon_sym_not_eq] = ACTIONS(6859), + [anon_sym_DASH_DASH] = ACTIONS(6859), + [anon_sym_PLUS_PLUS] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6861), + [anon_sym_DOT_STAR] = ACTIONS(6859), + [anon_sym_DASH_GT] = ACTIONS(6859), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6859), + [anon_sym_override] = ACTIONS(6859), + [anon_sym_requires] = ACTIONS(6859), + [anon_sym_COLON_RBRACK] = ACTIONS(6859), }, - [STATE(2069)] = { - [sym_attribute_specifier] = STATE(2079), - [sym_identifier] = ACTIONS(7187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7189), - [anon_sym_COMMA] = ACTIONS(7189), - [anon_sym_RPAREN] = ACTIONS(7189), - [aux_sym_preproc_if_token2] = ACTIONS(7189), - [aux_sym_preproc_else_token1] = ACTIONS(7189), - [aux_sym_preproc_elif_token1] = ACTIONS(7187), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7189), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7189), - [anon_sym_LPAREN2] = ACTIONS(7189), - [anon_sym_DASH] = ACTIONS(7187), - [anon_sym_PLUS] = ACTIONS(7187), - [anon_sym_STAR] = ACTIONS(7187), - [anon_sym_SLASH] = ACTIONS(7187), - [anon_sym_PERCENT] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_AMP_AMP] = ACTIONS(7189), - [anon_sym_PIPE] = ACTIONS(7187), - [anon_sym_CARET] = ACTIONS(7187), - [anon_sym_AMP] = ACTIONS(7187), - [anon_sym_EQ_EQ] = ACTIONS(7189), - [anon_sym_BANG_EQ] = ACTIONS(7189), - [anon_sym_GT] = ACTIONS(7187), - [anon_sym_GT_EQ] = ACTIONS(7189), - [anon_sym_LT_EQ] = ACTIONS(7187), - [anon_sym_LT] = ACTIONS(7187), - [anon_sym_LT_LT] = ACTIONS(7187), - [anon_sym_GT_GT] = ACTIONS(7187), - [anon_sym_SEMI] = ACTIONS(7189), - [anon_sym___extension__] = ACTIONS(7187), - [anon_sym___attribute__] = ACTIONS(6830), - [anon_sym___attribute] = ACTIONS(6830), - [anon_sym_COLON] = ACTIONS(7187), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7189), - [anon_sym_LBRACE] = ACTIONS(7189), - [anon_sym_RBRACE] = ACTIONS(7189), - [anon_sym_LBRACK] = ACTIONS(7189), - [anon_sym_EQ] = ACTIONS(7187), - [anon_sym_const] = ACTIONS(7187), - [anon_sym_constexpr] = ACTIONS(7187), - [anon_sym_volatile] = ACTIONS(7187), - [anon_sym_restrict] = ACTIONS(7187), - [anon_sym___restrict__] = ACTIONS(7187), - [anon_sym__Atomic] = ACTIONS(7187), - [anon_sym__Noreturn] = ACTIONS(7187), - [anon_sym_noreturn] = ACTIONS(7187), - [anon_sym__Nonnull] = ACTIONS(7187), - [anon_sym_mutable] = ACTIONS(7187), - [anon_sym_constinit] = ACTIONS(7187), - [anon_sym_consteval] = ACTIONS(7187), - [anon_sym_alignas] = ACTIONS(7187), - [anon_sym__Alignas] = ACTIONS(7187), - [anon_sym_QMARK] = ACTIONS(7189), - [anon_sym_STAR_EQ] = ACTIONS(7189), - [anon_sym_SLASH_EQ] = ACTIONS(7189), - [anon_sym_PERCENT_EQ] = ACTIONS(7189), - [anon_sym_PLUS_EQ] = ACTIONS(7189), - [anon_sym_DASH_EQ] = ACTIONS(7189), - [anon_sym_LT_LT_EQ] = ACTIONS(7189), - [anon_sym_GT_GT_EQ] = ACTIONS(7189), - [anon_sym_AMP_EQ] = ACTIONS(7189), - [anon_sym_CARET_EQ] = ACTIONS(7189), - [anon_sym_PIPE_EQ] = ACTIONS(7189), - [anon_sym_and_eq] = ACTIONS(7187), - [anon_sym_or_eq] = ACTIONS(7187), - [anon_sym_xor_eq] = ACTIONS(7187), - [anon_sym_LT_EQ_GT] = ACTIONS(7189), - [anon_sym_or] = ACTIONS(7187), - [anon_sym_and] = ACTIONS(7187), - [anon_sym_bitor] = ACTIONS(7187), - [anon_sym_xor] = ACTIONS(7187), - [anon_sym_bitand] = ACTIONS(7187), - [anon_sym_not_eq] = ACTIONS(7187), - [anon_sym_DASH_DASH] = ACTIONS(7189), - [anon_sym_PLUS_PLUS] = ACTIONS(7189), - [anon_sym_DOT] = ACTIONS(7187), - [anon_sym_DOT_STAR] = ACTIONS(7189), - [anon_sym_DASH_GT] = ACTIONS(7189), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7187), - [anon_sym_override] = ACTIONS(7187), - [anon_sym_requires] = ACTIONS(7187), - [anon_sym_COLON_RBRACK] = ACTIONS(7189), + [STATE(1997)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2082), + [sym_ms_pointer_modifier] = STATE(1994), + [sym__abstract_declarator] = STATE(4242), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2128), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1947), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2128), + [aux_sym_pointer_declarator_repeat1] = STATE(1994), + [sym_identifier] = ACTIONS(6861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), + [anon_sym_COMMA] = ACTIONS(6859), + [aux_sym_preproc_if_token2] = ACTIONS(6859), + [aux_sym_preproc_else_token1] = ACTIONS(6859), + [aux_sym_preproc_elif_token1] = ACTIONS(6861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6859), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6861), + [anon_sym_STAR] = ACTIONS(6827), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_PIPE_PIPE] = ACTIONS(6859), + [anon_sym_AMP_AMP] = ACTIONS(6829), + [anon_sym_PIPE] = ACTIONS(6861), + [anon_sym_CARET] = ACTIONS(6861), + [anon_sym_AMP] = ACTIONS(6831), + [anon_sym_EQ_EQ] = ACTIONS(6859), + [anon_sym_BANG_EQ] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6861), + [anon_sym_GT_EQ] = ACTIONS(6859), + [anon_sym_LT_EQ] = ACTIONS(6861), + [anon_sym_LT] = ACTIONS(6861), + [anon_sym_LT_LT] = ACTIONS(6861), + [anon_sym_GT_GT] = ACTIONS(6861), + [anon_sym___extension__] = ACTIONS(6833), + [sym_ms_restrict_modifier] = ACTIONS(6835), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6835), + [sym_ms_signed_ptr_modifier] = ACTIONS(6835), + [anon_sym__unaligned] = ACTIONS(6837), + [anon_sym___unaligned] = ACTIONS(6837), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(6861), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(6833), + [anon_sym_volatile] = ACTIONS(6833), + [anon_sym_restrict] = ACTIONS(6833), + [anon_sym___restrict__] = ACTIONS(6833), + [anon_sym__Atomic] = ACTIONS(6833), + [anon_sym__Noreturn] = ACTIONS(6833), + [anon_sym_noreturn] = ACTIONS(6833), + [anon_sym__Nonnull] = ACTIONS(6833), + [anon_sym_mutable] = ACTIONS(6833), + [anon_sym_constinit] = ACTIONS(6833), + [anon_sym_consteval] = ACTIONS(6833), + [anon_sym_alignas] = ACTIONS(6841), + [anon_sym__Alignas] = ACTIONS(6841), + [anon_sym_QMARK] = ACTIONS(6859), + [anon_sym_STAR_EQ] = ACTIONS(6859), + [anon_sym_SLASH_EQ] = ACTIONS(6859), + [anon_sym_PERCENT_EQ] = ACTIONS(6859), + [anon_sym_PLUS_EQ] = ACTIONS(6859), + [anon_sym_DASH_EQ] = ACTIONS(6859), + [anon_sym_LT_LT_EQ] = ACTIONS(6859), + [anon_sym_GT_GT_EQ] = ACTIONS(6859), + [anon_sym_AMP_EQ] = ACTIONS(6859), + [anon_sym_CARET_EQ] = ACTIONS(6859), + [anon_sym_PIPE_EQ] = ACTIONS(6859), + [anon_sym_and_eq] = ACTIONS(6861), + [anon_sym_or_eq] = ACTIONS(6861), + [anon_sym_xor_eq] = ACTIONS(6861), + [anon_sym_LT_EQ_GT] = ACTIONS(6859), + [anon_sym_or] = ACTIONS(6861), + [anon_sym_and] = ACTIONS(6861), + [anon_sym_bitor] = ACTIONS(6861), + [anon_sym_xor] = ACTIONS(6861), + [anon_sym_bitand] = ACTIONS(6861), + [anon_sym_not_eq] = ACTIONS(6861), + [anon_sym_DASH_DASH] = ACTIONS(6859), + [anon_sym_PLUS_PLUS] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6861), + [anon_sym_DOT_STAR] = ACTIONS(6859), + [anon_sym_DASH_GT] = ACTIONS(6859), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6861), + [anon_sym_override] = ACTIONS(6861), + [anon_sym_requires] = ACTIONS(6861), }, - [STATE(2070)] = { - [sym_identifier] = ACTIONS(7191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), - [anon_sym_COMMA] = ACTIONS(7193), - [anon_sym_RPAREN] = ACTIONS(7193), - [aux_sym_preproc_if_token2] = ACTIONS(7193), - [aux_sym_preproc_else_token1] = ACTIONS(7193), - [aux_sym_preproc_elif_token1] = ACTIONS(7191), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7193), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7193), - [anon_sym_LPAREN2] = ACTIONS(7193), - [anon_sym_DASH] = ACTIONS(7191), - [anon_sym_PLUS] = ACTIONS(7191), - [anon_sym_STAR] = ACTIONS(7191), - [anon_sym_SLASH] = ACTIONS(7191), - [anon_sym_PERCENT] = ACTIONS(7191), - [anon_sym_PIPE_PIPE] = ACTIONS(7193), - [anon_sym_AMP_AMP] = ACTIONS(7193), - [anon_sym_PIPE] = ACTIONS(7191), - [anon_sym_CARET] = ACTIONS(7191), - [anon_sym_AMP] = ACTIONS(7191), - [anon_sym_EQ_EQ] = ACTIONS(7193), - [anon_sym_BANG_EQ] = ACTIONS(7193), - [anon_sym_GT] = ACTIONS(7191), - [anon_sym_GT_EQ] = ACTIONS(7193), - [anon_sym_LT_EQ] = ACTIONS(7191), - [anon_sym_LT] = ACTIONS(7191), - [anon_sym_LT_LT] = ACTIONS(7191), - [anon_sym_GT_GT] = ACTIONS(7191), - [anon_sym_SEMI] = ACTIONS(7193), - [anon_sym___extension__] = ACTIONS(7191), - [anon_sym___attribute__] = ACTIONS(7191), - [anon_sym___attribute] = ACTIONS(7191), - [anon_sym_COLON] = ACTIONS(7191), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7193), - [anon_sym_LBRACE] = ACTIONS(7193), - [anon_sym_RBRACE] = ACTIONS(7193), - [anon_sym_LBRACK] = ACTIONS(7193), - [anon_sym_EQ] = ACTIONS(7191), - [anon_sym_const] = ACTIONS(7191), - [anon_sym_constexpr] = ACTIONS(7191), - [anon_sym_volatile] = ACTIONS(7191), - [anon_sym_restrict] = ACTIONS(7191), - [anon_sym___restrict__] = ACTIONS(7191), - [anon_sym__Atomic] = ACTIONS(7191), - [anon_sym__Noreturn] = ACTIONS(7191), - [anon_sym_noreturn] = ACTIONS(7191), - [anon_sym__Nonnull] = ACTIONS(7191), - [anon_sym_mutable] = ACTIONS(7191), - [anon_sym_constinit] = ACTIONS(7191), - [anon_sym_consteval] = ACTIONS(7191), - [anon_sym_alignas] = ACTIONS(7191), - [anon_sym__Alignas] = ACTIONS(7191), - [anon_sym_QMARK] = ACTIONS(7193), - [anon_sym_STAR_EQ] = ACTIONS(7193), - [anon_sym_SLASH_EQ] = ACTIONS(7193), - [anon_sym_PERCENT_EQ] = ACTIONS(7193), - [anon_sym_PLUS_EQ] = ACTIONS(7193), - [anon_sym_DASH_EQ] = ACTIONS(7193), - [anon_sym_LT_LT_EQ] = ACTIONS(7193), - [anon_sym_GT_GT_EQ] = ACTIONS(7193), - [anon_sym_AMP_EQ] = ACTIONS(7193), - [anon_sym_CARET_EQ] = ACTIONS(7193), - [anon_sym_PIPE_EQ] = ACTIONS(7193), - [anon_sym_and_eq] = ACTIONS(7191), - [anon_sym_or_eq] = ACTIONS(7191), - [anon_sym_xor_eq] = ACTIONS(7191), - [anon_sym_LT_EQ_GT] = ACTIONS(7193), - [anon_sym_or] = ACTIONS(7191), - [anon_sym_and] = ACTIONS(7191), - [anon_sym_bitor] = ACTIONS(7191), - [anon_sym_xor] = ACTIONS(7191), - [anon_sym_bitand] = ACTIONS(7191), - [anon_sym_not_eq] = ACTIONS(7191), - [anon_sym_DASH_DASH] = ACTIONS(7193), - [anon_sym_PLUS_PLUS] = ACTIONS(7193), - [anon_sym_DOT] = ACTIONS(7191), - [anon_sym_DOT_STAR] = ACTIONS(7193), - [anon_sym_DASH_GT] = ACTIONS(7193), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7191), - [anon_sym_override] = ACTIONS(7191), - [anon_sym_requires] = ACTIONS(7191), - [anon_sym_COLON_RBRACK] = ACTIONS(7193), + [STATE(1998)] = { + [sym_string_literal] = STATE(4105), + [sym_decltype_auto] = STATE(3203), + [sym_template_argument_list] = STATE(3449), + [sym_raw_string_literal] = STATE(4105), + [aux_sym_sized_type_specifier_repeat1] = STATE(3552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), + [anon_sym_COMMA] = ACTIONS(5640), + [anon_sym_RPAREN] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(5647), + [anon_sym_PLUS] = ACTIONS(5647), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5647), + [anon_sym_PERCENT] = ACTIONS(5647), + [anon_sym_PIPE_PIPE] = ACTIONS(5640), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5647), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5640), + [anon_sym_BANG_EQ] = ACTIONS(5640), + [anon_sym_GT] = ACTIONS(5647), + [anon_sym_GT_EQ] = ACTIONS(5640), + [anon_sym_LT_EQ] = ACTIONS(5647), + [anon_sym_LT] = ACTIONS(6863), + [anon_sym_LT_LT] = ACTIONS(5647), + [anon_sym_GT_GT] = ACTIONS(5647), + [anon_sym_SEMI] = ACTIONS(5640), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_RBRACE] = ACTIONS(5640), + [anon_sym_signed] = ACTIONS(6867), + [anon_sym_unsigned] = ACTIONS(6867), + [anon_sym_long] = ACTIONS(6867), + [anon_sym_short] = ACTIONS(6867), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5643), + [anon_sym_volatile] = ACTIONS(5643), + [anon_sym_restrict] = ACTIONS(5643), + [anon_sym___restrict__] = ACTIONS(5643), + [anon_sym__Atomic] = ACTIONS(5643), + [anon_sym__Noreturn] = ACTIONS(5643), + [anon_sym_noreturn] = ACTIONS(5643), + [anon_sym__Nonnull] = ACTIONS(5643), + [anon_sym_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [anon_sym_alignas] = ACTIONS(5643), + [anon_sym__Alignas] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5640), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5663), + [anon_sym_or_eq] = ACTIONS(5663), + [anon_sym_xor_eq] = ACTIONS(5663), + [anon_sym_LT_EQ_GT] = ACTIONS(5640), + [anon_sym_or] = ACTIONS(5647), + [anon_sym_and] = ACTIONS(5647), + [anon_sym_bitor] = ACTIONS(5640), + [anon_sym_xor] = ACTIONS(5647), + [anon_sym_bitand] = ACTIONS(5640), + [anon_sym_not_eq] = ACTIONS(5640), + [anon_sym_DASH_DASH] = ACTIONS(5640), + [anon_sym_PLUS_PLUS] = ACTIONS(5640), + [anon_sym_DOT] = ACTIONS(5647), + [anon_sym_DOT_STAR] = ACTIONS(5640), + [anon_sym_DASH_GT] = ACTIONS(5640), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6869), + [anon_sym_decltype] = ACTIONS(6871), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_COLON_RBRACK] = ACTIONS(5640), }, - [STATE(2071)] = { - [sym_identifier] = ACTIONS(7195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7197), - [anon_sym_COMMA] = ACTIONS(7197), - [anon_sym_RPAREN] = ACTIONS(7197), - [aux_sym_preproc_if_token2] = ACTIONS(7197), - [aux_sym_preproc_else_token1] = ACTIONS(7197), - [aux_sym_preproc_elif_token1] = ACTIONS(7195), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7197), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7197), - [anon_sym_LPAREN2] = ACTIONS(7197), - [anon_sym_DASH] = ACTIONS(7195), - [anon_sym_PLUS] = ACTIONS(7195), - [anon_sym_STAR] = ACTIONS(7195), - [anon_sym_SLASH] = ACTIONS(7195), - [anon_sym_PERCENT] = ACTIONS(7195), - [anon_sym_PIPE_PIPE] = ACTIONS(7197), - [anon_sym_AMP_AMP] = ACTIONS(7197), - [anon_sym_PIPE] = ACTIONS(7195), - [anon_sym_CARET] = ACTIONS(7195), - [anon_sym_AMP] = ACTIONS(7195), - [anon_sym_EQ_EQ] = ACTIONS(7197), - [anon_sym_BANG_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_LT_EQ] = ACTIONS(7195), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_LT] = ACTIONS(7195), - [anon_sym_GT_GT] = ACTIONS(7195), - [anon_sym_SEMI] = ACTIONS(7197), - [anon_sym___extension__] = ACTIONS(7195), - [anon_sym___attribute__] = ACTIONS(7195), - [anon_sym___attribute] = ACTIONS(7195), - [anon_sym_COLON] = ACTIONS(7195), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7197), - [anon_sym_LBRACE] = ACTIONS(7197), - [anon_sym_RBRACE] = ACTIONS(7197), - [anon_sym_LBRACK] = ACTIONS(7197), - [anon_sym_EQ] = ACTIONS(7195), - [anon_sym_const] = ACTIONS(7195), - [anon_sym_constexpr] = ACTIONS(7195), - [anon_sym_volatile] = ACTIONS(7195), - [anon_sym_restrict] = ACTIONS(7195), - [anon_sym___restrict__] = ACTIONS(7195), - [anon_sym__Atomic] = ACTIONS(7195), - [anon_sym__Noreturn] = ACTIONS(7195), - [anon_sym_noreturn] = ACTIONS(7195), - [anon_sym__Nonnull] = ACTIONS(7195), - [anon_sym_mutable] = ACTIONS(7195), - [anon_sym_constinit] = ACTIONS(7195), - [anon_sym_consteval] = ACTIONS(7195), - [anon_sym_alignas] = ACTIONS(7195), - [anon_sym__Alignas] = ACTIONS(7195), - [anon_sym_QMARK] = ACTIONS(7197), - [anon_sym_STAR_EQ] = ACTIONS(7197), - [anon_sym_SLASH_EQ] = ACTIONS(7197), - [anon_sym_PERCENT_EQ] = ACTIONS(7197), - [anon_sym_PLUS_EQ] = ACTIONS(7197), - [anon_sym_DASH_EQ] = ACTIONS(7197), - [anon_sym_LT_LT_EQ] = ACTIONS(7197), - [anon_sym_GT_GT_EQ] = ACTIONS(7197), - [anon_sym_AMP_EQ] = ACTIONS(7197), - [anon_sym_CARET_EQ] = ACTIONS(7197), - [anon_sym_PIPE_EQ] = ACTIONS(7197), - [anon_sym_and_eq] = ACTIONS(7195), - [anon_sym_or_eq] = ACTIONS(7195), - [anon_sym_xor_eq] = ACTIONS(7195), - [anon_sym_LT_EQ_GT] = ACTIONS(7197), - [anon_sym_or] = ACTIONS(7195), - [anon_sym_and] = ACTIONS(7195), - [anon_sym_bitor] = ACTIONS(7195), - [anon_sym_xor] = ACTIONS(7195), - [anon_sym_bitand] = ACTIONS(7195), - [anon_sym_not_eq] = ACTIONS(7195), - [anon_sym_DASH_DASH] = ACTIONS(7197), - [anon_sym_PLUS_PLUS] = ACTIONS(7197), - [anon_sym_DOT] = ACTIONS(7195), - [anon_sym_DOT_STAR] = ACTIONS(7197), - [anon_sym_DASH_GT] = ACTIONS(7197), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7195), - [anon_sym_override] = ACTIONS(7195), - [anon_sym_requires] = ACTIONS(7195), - [anon_sym_COLON_RBRACK] = ACTIONS(7197), + [STATE(1999)] = { + [sym_template_argument_list] = STATE(2003), + [sym_identifier] = ACTIONS(6565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6569), + [anon_sym_COMMA] = ACTIONS(6569), + [anon_sym_RPAREN] = ACTIONS(6569), + [anon_sym_LPAREN2] = ACTIONS(6569), + [anon_sym_TILDE] = ACTIONS(6572), + [anon_sym_DASH] = ACTIONS(6574), + [anon_sym_PLUS] = ACTIONS(6574), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(6574), + [anon_sym_PERCENT] = ACTIONS(6574), + [anon_sym_PIPE_PIPE] = ACTIONS(6567), + [anon_sym_AMP_AMP] = ACTIONS(6569), + [anon_sym_PIPE] = ACTIONS(6574), + [anon_sym_CARET] = ACTIONS(6574), + [anon_sym_AMP] = ACTIONS(6576), + [anon_sym_EQ_EQ] = ACTIONS(6567), + [anon_sym_BANG_EQ] = ACTIONS(6567), + [anon_sym_GT] = ACTIONS(6574), + [anon_sym_GT_EQ] = ACTIONS(6567), + [anon_sym_LT_EQ] = ACTIONS(6574), + [anon_sym_LT] = ACTIONS(6873), + [anon_sym_LT_LT] = ACTIONS(6574), + [anon_sym_GT_GT] = ACTIONS(6574), + [anon_sym___extension__] = ACTIONS(6565), + [anon_sym_virtual] = ACTIONS(6565), + [anon_sym_extern] = ACTIONS(6565), + [anon_sym___attribute__] = ACTIONS(6565), + [anon_sym___attribute] = ACTIONS(6565), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6572), + [anon_sym___declspec] = ACTIONS(6565), + [anon_sym___based] = ACTIONS(6565), + [anon_sym_LBRACE] = ACTIONS(6572), + [anon_sym_LBRACK] = ACTIONS(6576), + [anon_sym_static] = ACTIONS(6565), + [anon_sym_EQ] = ACTIONS(6576), + [anon_sym_register] = ACTIONS(6565), + [anon_sym_inline] = ACTIONS(6565), + [anon_sym___inline] = ACTIONS(6565), + [anon_sym___inline__] = ACTIONS(6565), + [anon_sym___forceinline] = ACTIONS(6565), + [anon_sym_thread_local] = ACTIONS(6565), + [anon_sym___thread] = ACTIONS(6565), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_constexpr] = ACTIONS(6565), + [anon_sym_volatile] = ACTIONS(6565), + [anon_sym_restrict] = ACTIONS(6565), + [anon_sym___restrict__] = ACTIONS(6565), + [anon_sym__Atomic] = ACTIONS(6565), + [anon_sym__Noreturn] = ACTIONS(6565), + [anon_sym_noreturn] = ACTIONS(6565), + [anon_sym__Nonnull] = ACTIONS(6565), + [anon_sym_mutable] = ACTIONS(6565), + [anon_sym_constinit] = ACTIONS(6565), + [anon_sym_consteval] = ACTIONS(6565), + [anon_sym_alignas] = ACTIONS(6565), + [anon_sym__Alignas] = ACTIONS(6565), + [anon_sym_QMARK] = ACTIONS(6567), + [anon_sym_STAR_EQ] = ACTIONS(6567), + [anon_sym_SLASH_EQ] = ACTIONS(6567), + [anon_sym_PERCENT_EQ] = ACTIONS(6567), + [anon_sym_PLUS_EQ] = ACTIONS(6567), + [anon_sym_DASH_EQ] = ACTIONS(6567), + [anon_sym_LT_LT_EQ] = ACTIONS(6567), + [anon_sym_GT_GT_EQ] = ACTIONS(6567), + [anon_sym_AMP_EQ] = ACTIONS(6567), + [anon_sym_CARET_EQ] = ACTIONS(6567), + [anon_sym_PIPE_EQ] = ACTIONS(6567), + [anon_sym_and_eq] = ACTIONS(6574), + [anon_sym_or_eq] = ACTIONS(6574), + [anon_sym_xor_eq] = ACTIONS(6574), + [anon_sym_LT_EQ_GT] = ACTIONS(6567), + [anon_sym_or] = ACTIONS(6574), + [anon_sym_and] = ACTIONS(6574), + [anon_sym_bitor] = ACTIONS(6574), + [anon_sym_xor] = ACTIONS(6574), + [anon_sym_bitand] = ACTIONS(6574), + [anon_sym_not_eq] = ACTIONS(6574), + [anon_sym_DASH_DASH] = ACTIONS(6567), + [anon_sym_PLUS_PLUS] = ACTIONS(6567), + [anon_sym_DOT] = ACTIONS(6574), + [anon_sym_DOT_STAR] = ACTIONS(6567), + [anon_sym_DASH_GT] = ACTIONS(6574), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6565), + [anon_sym_decltype] = ACTIONS(6565), + [anon_sym_template] = ACTIONS(6565), + [anon_sym_operator] = ACTIONS(6565), + [anon_sym_DASH_GT_STAR] = ACTIONS(6567), + [anon_sym_LBRACK_COLON] = ACTIONS(6572), }, - [STATE(2072)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2133), - [sym_identifier] = ACTIONS(7199), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), - [anon_sym_COMMA] = ACTIONS(7201), - [aux_sym_preproc_if_token2] = ACTIONS(7201), - [aux_sym_preproc_else_token1] = ACTIONS(7201), - [aux_sym_preproc_elif_token1] = ACTIONS(7199), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7201), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7201), - [anon_sym_LPAREN2] = ACTIONS(7201), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_STAR] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7199), - [anon_sym_PERCENT] = ACTIONS(7199), - [anon_sym_PIPE_PIPE] = ACTIONS(7201), - [anon_sym_AMP_AMP] = ACTIONS(7201), - [anon_sym_PIPE] = ACTIONS(7199), - [anon_sym_CARET] = ACTIONS(7199), - [anon_sym_AMP] = ACTIONS(7199), - [anon_sym_EQ_EQ] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7201), - [anon_sym_GT] = ACTIONS(7199), - [anon_sym_GT_EQ] = ACTIONS(7201), - [anon_sym_LT_EQ] = ACTIONS(7199), - [anon_sym_LT] = ACTIONS(7199), - [anon_sym_LT_LT] = ACTIONS(7199), - [anon_sym_GT_GT] = ACTIONS(7199), - [anon_sym___extension__] = ACTIONS(7199), - [anon_sym___attribute__] = ACTIONS(7199), - [anon_sym___attribute] = ACTIONS(7199), - [anon_sym_LBRACE] = ACTIONS(7201), - [anon_sym_signed] = ACTIONS(7203), - [anon_sym_unsigned] = ACTIONS(7203), - [anon_sym_long] = ACTIONS(7203), - [anon_sym_short] = ACTIONS(7203), - [anon_sym_LBRACK] = ACTIONS(7201), - [anon_sym_RBRACK] = ACTIONS(7201), - [anon_sym_EQ] = ACTIONS(7199), - [anon_sym_const] = ACTIONS(7199), - [anon_sym_constexpr] = ACTIONS(7199), - [anon_sym_volatile] = ACTIONS(7199), - [anon_sym_restrict] = ACTIONS(7199), - [anon_sym___restrict__] = ACTIONS(7199), - [anon_sym__Atomic] = ACTIONS(7199), - [anon_sym__Noreturn] = ACTIONS(7199), - [anon_sym_noreturn] = ACTIONS(7199), - [anon_sym__Nonnull] = ACTIONS(7199), - [anon_sym_mutable] = ACTIONS(7199), - [anon_sym_constinit] = ACTIONS(7199), - [anon_sym_consteval] = ACTIONS(7199), - [anon_sym_alignas] = ACTIONS(7199), - [anon_sym__Alignas] = ACTIONS(7199), - [anon_sym_QMARK] = ACTIONS(7201), - [anon_sym_STAR_EQ] = ACTIONS(7201), - [anon_sym_SLASH_EQ] = ACTIONS(7201), - [anon_sym_PERCENT_EQ] = ACTIONS(7201), - [anon_sym_PLUS_EQ] = ACTIONS(7201), - [anon_sym_DASH_EQ] = ACTIONS(7201), - [anon_sym_LT_LT_EQ] = ACTIONS(7201), - [anon_sym_GT_GT_EQ] = ACTIONS(7201), - [anon_sym_AMP_EQ] = ACTIONS(7201), - [anon_sym_CARET_EQ] = ACTIONS(7201), - [anon_sym_PIPE_EQ] = ACTIONS(7201), - [anon_sym_and_eq] = ACTIONS(7199), - [anon_sym_or_eq] = ACTIONS(7199), - [anon_sym_xor_eq] = ACTIONS(7199), - [anon_sym_LT_EQ_GT] = ACTIONS(7201), - [anon_sym_or] = ACTIONS(7199), - [anon_sym_and] = ACTIONS(7199), + [STATE(2000)] = { + [sym_string_literal] = STATE(3589), + [sym_decltype_auto] = STATE(2234), + [sym_template_argument_list] = STATE(2231), + [sym_raw_string_literal] = STATE(3589), + [aux_sym_sized_type_specifier_repeat1] = STATE(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), + [anon_sym_COMMA] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(5647), + [anon_sym_PLUS] = ACTIONS(5647), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5647), + [anon_sym_PERCENT] = ACTIONS(5647), + [anon_sym_PIPE_PIPE] = ACTIONS(5640), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5647), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5640), + [anon_sym_BANG_EQ] = ACTIONS(5640), + [anon_sym_GT] = ACTIONS(5647), + [anon_sym_GT_EQ] = ACTIONS(5640), + [anon_sym_LT_EQ] = ACTIONS(5647), + [anon_sym_LT] = ACTIONS(6785), + [anon_sym_LT_LT] = ACTIONS(5647), + [anon_sym_GT_GT] = ACTIONS(5647), + [anon_sym_SEMI] = ACTIONS(5640), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym___attribute__] = ACTIONS(5640), + [anon_sym___attribute] = ACTIONS(5647), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(6789), + [anon_sym_unsigned] = ACTIONS(6789), + [anon_sym_long] = ACTIONS(6789), + [anon_sym_short] = ACTIONS(6789), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_EQ] = ACTIONS(5647), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5643), + [anon_sym_volatile] = ACTIONS(5643), + [anon_sym_restrict] = ACTIONS(5643), + [anon_sym___restrict__] = ACTIONS(5643), + [anon_sym__Atomic] = ACTIONS(5643), + [anon_sym__Noreturn] = ACTIONS(5643), + [anon_sym_noreturn] = ACTIONS(5643), + [anon_sym__Nonnull] = ACTIONS(5643), + [anon_sym_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [anon_sym_alignas] = ACTIONS(5643), + [anon_sym__Alignas] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5640), + [anon_sym_STAR_EQ] = ACTIONS(5640), + [anon_sym_SLASH_EQ] = ACTIONS(5640), + [anon_sym_PERCENT_EQ] = ACTIONS(5640), + [anon_sym_PLUS_EQ] = ACTIONS(5640), + [anon_sym_DASH_EQ] = ACTIONS(5640), + [anon_sym_LT_LT_EQ] = ACTIONS(5640), + [anon_sym_GT_GT_EQ] = ACTIONS(5640), + [anon_sym_AMP_EQ] = ACTIONS(5640), + [anon_sym_CARET_EQ] = ACTIONS(5640), + [anon_sym_PIPE_EQ] = ACTIONS(5640), + [anon_sym_and_eq] = ACTIONS(5640), + [anon_sym_or_eq] = ACTIONS(5640), + [anon_sym_xor_eq] = ACTIONS(5640), + [anon_sym_LT_EQ_GT] = ACTIONS(5640), + [anon_sym_or] = ACTIONS(5647), + [anon_sym_and] = ACTIONS(5647), + [anon_sym_bitor] = ACTIONS(5640), + [anon_sym_xor] = ACTIONS(5647), + [anon_sym_bitand] = ACTIONS(5640), + [anon_sym_not_eq] = ACTIONS(5640), + [anon_sym_DASH_DASH] = ACTIONS(5640), + [anon_sym_PLUS_PLUS] = ACTIONS(5640), + [anon_sym_DOT] = ACTIONS(5647), + [anon_sym_DOT_STAR] = ACTIONS(5640), + [anon_sym_DASH_GT] = ACTIONS(5640), + [anon_sym_L_DQUOTE] = ACTIONS(6876), + [anon_sym_u_DQUOTE] = ACTIONS(6876), + [anon_sym_U_DQUOTE] = ACTIONS(6876), + [anon_sym_u8_DQUOTE] = ACTIONS(6876), + [anon_sym_DQUOTE] = ACTIONS(6876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6791), + [anon_sym_decltype] = ACTIONS(6793), + [anon_sym_R_DQUOTE] = ACTIONS(6878), + [anon_sym_LR_DQUOTE] = ACTIONS(6878), + [anon_sym_uR_DQUOTE] = ACTIONS(6878), + [anon_sym_UR_DQUOTE] = ACTIONS(6878), + [anon_sym_u8R_DQUOTE] = ACTIONS(6878), + }, + [STATE(2001)] = { + [sym_type_qualifier] = STATE(2017), + [sym_alignas_qualifier] = STATE(2059), + [aux_sym__type_definition_type_repeat1] = STATE(2017), + [sym_identifier] = ACTIONS(6752), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), + [anon_sym_COMMA] = ACTIONS(6754), + [anon_sym_RPAREN] = ACTIONS(6754), + [aux_sym_preproc_if_token2] = ACTIONS(6754), + [aux_sym_preproc_else_token1] = ACTIONS(6754), + [aux_sym_preproc_elif_token1] = ACTIONS(6752), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6754), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6754), + [anon_sym_LPAREN2] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6752), + [anon_sym_STAR] = ACTIONS(6752), + [anon_sym_SLASH] = ACTIONS(6752), + [anon_sym_PERCENT] = ACTIONS(6752), + [anon_sym_PIPE_PIPE] = ACTIONS(6754), + [anon_sym_AMP_AMP] = ACTIONS(6754), + [anon_sym_PIPE] = ACTIONS(6752), + [anon_sym_CARET] = ACTIONS(6752), + [anon_sym_AMP] = ACTIONS(6752), + [anon_sym_EQ_EQ] = ACTIONS(6754), + [anon_sym_BANG_EQ] = ACTIONS(6754), + [anon_sym_GT] = ACTIONS(6752), + [anon_sym_GT_EQ] = ACTIONS(6754), + [anon_sym_LT_EQ] = ACTIONS(6752), + [anon_sym_LT] = ACTIONS(6752), + [anon_sym_LT_LT] = ACTIONS(6752), + [anon_sym_GT_GT] = ACTIONS(6752), + [anon_sym_SEMI] = ACTIONS(6754), + [anon_sym___extension__] = ACTIONS(6489), + [anon_sym___attribute__] = ACTIONS(6752), + [anon_sym___attribute] = ACTIONS(6752), + [anon_sym_COLON] = ACTIONS(6752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6754), + [anon_sym_RBRACE] = ACTIONS(6754), + [anon_sym_LBRACK] = ACTIONS(6752), + [anon_sym_EQ] = ACTIONS(6752), + [anon_sym_const] = ACTIONS(6489), + [anon_sym_constexpr] = ACTIONS(6489), + [anon_sym_volatile] = ACTIONS(6489), + [anon_sym_restrict] = ACTIONS(6489), + [anon_sym___restrict__] = ACTIONS(6489), + [anon_sym__Atomic] = ACTIONS(6489), + [anon_sym__Noreturn] = ACTIONS(6489), + [anon_sym_noreturn] = ACTIONS(6489), + [anon_sym__Nonnull] = ACTIONS(6489), + [anon_sym_mutable] = ACTIONS(6489), + [anon_sym_constinit] = ACTIONS(6489), + [anon_sym_consteval] = ACTIONS(6489), + [anon_sym_alignas] = ACTIONS(6495), + [anon_sym__Alignas] = ACTIONS(6495), + [anon_sym_QMARK] = ACTIONS(6754), + [anon_sym_STAR_EQ] = ACTIONS(6754), + [anon_sym_SLASH_EQ] = ACTIONS(6754), + [anon_sym_PERCENT_EQ] = ACTIONS(6754), + [anon_sym_PLUS_EQ] = ACTIONS(6754), + [anon_sym_DASH_EQ] = ACTIONS(6754), + [anon_sym_LT_LT_EQ] = ACTIONS(6754), + [anon_sym_GT_GT_EQ] = ACTIONS(6754), + [anon_sym_AMP_EQ] = ACTIONS(6754), + [anon_sym_CARET_EQ] = ACTIONS(6754), + [anon_sym_PIPE_EQ] = ACTIONS(6754), + [anon_sym_and_eq] = ACTIONS(6752), + [anon_sym_or_eq] = ACTIONS(6752), + [anon_sym_xor_eq] = ACTIONS(6752), + [anon_sym_LT_EQ_GT] = ACTIONS(6754), + [anon_sym_or] = ACTIONS(6752), + [anon_sym_and] = ACTIONS(6752), + [anon_sym_bitor] = ACTIONS(6752), + [anon_sym_xor] = ACTIONS(6752), + [anon_sym_bitand] = ACTIONS(6752), + [anon_sym_not_eq] = ACTIONS(6752), + [anon_sym_DASH_DASH] = ACTIONS(6754), + [anon_sym_PLUS_PLUS] = ACTIONS(6754), + [anon_sym_asm] = ACTIONS(6752), + [anon_sym___asm__] = ACTIONS(6752), + [anon_sym___asm] = ACTIONS(6752), + [anon_sym_DOT] = ACTIONS(6752), + [anon_sym_DOT_STAR] = ACTIONS(6754), + [anon_sym_DASH_GT] = ACTIONS(6754), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6752), + [anon_sym_override] = ACTIONS(6752), + [anon_sym_noexcept] = ACTIONS(6752), + [anon_sym_throw] = ACTIONS(6752), + [anon_sym_requires] = ACTIONS(6752), + [anon_sym_COLON_RBRACK] = ACTIONS(6754), + }, + [STATE(2002)] = { + [sym_template_argument_list] = STATE(2031), + [sym_identifier] = ACTIONS(6565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6569), + [anon_sym_COMMA] = ACTIONS(6569), + [anon_sym_RPAREN] = ACTIONS(6569), + [anon_sym_LPAREN2] = ACTIONS(6569), + [anon_sym_TILDE] = ACTIONS(6572), + [anon_sym_DASH] = ACTIONS(6574), + [anon_sym_PLUS] = ACTIONS(6574), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(6574), + [anon_sym_PERCENT] = ACTIONS(6574), + [anon_sym_PIPE_PIPE] = ACTIONS(6567), + [anon_sym_AMP_AMP] = ACTIONS(6569), + [anon_sym_PIPE] = ACTIONS(6574), + [anon_sym_CARET] = ACTIONS(6574), + [anon_sym_AMP] = ACTIONS(6576), + [anon_sym_EQ_EQ] = ACTIONS(6567), + [anon_sym_BANG_EQ] = ACTIONS(6567), + [anon_sym_GT] = ACTIONS(6574), + [anon_sym_GT_EQ] = ACTIONS(6567), + [anon_sym_LT_EQ] = ACTIONS(6574), + [anon_sym_LT] = ACTIONS(6579), + [anon_sym_LT_LT] = ACTIONS(6574), + [anon_sym_GT_GT] = ACTIONS(6574), + [anon_sym___extension__] = ACTIONS(6565), + [anon_sym_virtual] = ACTIONS(6565), + [anon_sym_extern] = ACTIONS(6565), + [anon_sym___attribute__] = ACTIONS(6565), + [anon_sym___attribute] = ACTIONS(6565), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6572), + [anon_sym___declspec] = ACTIONS(6565), + [anon_sym___based] = ACTIONS(6565), + [anon_sym_LBRACE] = ACTIONS(6572), + [anon_sym_LBRACK] = ACTIONS(6576), + [anon_sym_static] = ACTIONS(6565), + [anon_sym_EQ] = ACTIONS(6576), + [anon_sym_register] = ACTIONS(6565), + [anon_sym_inline] = ACTIONS(6565), + [anon_sym___inline] = ACTIONS(6565), + [anon_sym___inline__] = ACTIONS(6565), + [anon_sym___forceinline] = ACTIONS(6565), + [anon_sym_thread_local] = ACTIONS(6565), + [anon_sym___thread] = ACTIONS(6565), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_constexpr] = ACTIONS(6565), + [anon_sym_volatile] = ACTIONS(6565), + [anon_sym_restrict] = ACTIONS(6565), + [anon_sym___restrict__] = ACTIONS(6565), + [anon_sym__Atomic] = ACTIONS(6565), + [anon_sym__Noreturn] = ACTIONS(6565), + [anon_sym_noreturn] = ACTIONS(6565), + [anon_sym__Nonnull] = ACTIONS(6565), + [anon_sym_mutable] = ACTIONS(6565), + [anon_sym_constinit] = ACTIONS(6565), + [anon_sym_consteval] = ACTIONS(6565), + [anon_sym_alignas] = ACTIONS(6565), + [anon_sym__Alignas] = ACTIONS(6565), + [anon_sym_QMARK] = ACTIONS(6567), + [anon_sym_STAR_EQ] = ACTIONS(6567), + [anon_sym_SLASH_EQ] = ACTIONS(6567), + [anon_sym_PERCENT_EQ] = ACTIONS(6567), + [anon_sym_PLUS_EQ] = ACTIONS(6567), + [anon_sym_DASH_EQ] = ACTIONS(6567), + [anon_sym_LT_LT_EQ] = ACTIONS(6567), + [anon_sym_GT_GT_EQ] = ACTIONS(6567), + [anon_sym_AMP_EQ] = ACTIONS(6567), + [anon_sym_CARET_EQ] = ACTIONS(6567), + [anon_sym_PIPE_EQ] = ACTIONS(6567), + [anon_sym_and_eq] = ACTIONS(6574), + [anon_sym_or_eq] = ACTIONS(6574), + [anon_sym_xor_eq] = ACTIONS(6574), + [anon_sym_LT_EQ_GT] = ACTIONS(6567), + [anon_sym_or] = ACTIONS(6574), + [anon_sym_and] = ACTIONS(6574), + [anon_sym_bitor] = ACTIONS(6574), + [anon_sym_xor] = ACTIONS(6574), + [anon_sym_bitand] = ACTIONS(6574), + [anon_sym_not_eq] = ACTIONS(6574), + [anon_sym_DASH_DASH] = ACTIONS(6567), + [anon_sym_PLUS_PLUS] = ACTIONS(6567), + [anon_sym_DOT] = ACTIONS(6574), + [anon_sym_DOT_STAR] = ACTIONS(6567), + [anon_sym_DASH_GT] = ACTIONS(6567), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6565), + [anon_sym_decltype] = ACTIONS(6565), + [anon_sym_template] = ACTIONS(6565), + [anon_sym_operator] = ACTIONS(6565), + [anon_sym_LBRACK_COLON] = ACTIONS(6572), + }, + [STATE(2003)] = { + [sym_identifier] = ACTIONS(6594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_RPAREN] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_TILDE] = ACTIONS(6601), + [anon_sym_DASH] = ACTIONS(6603), + [anon_sym_PLUS] = ACTIONS(6603), + [anon_sym_STAR] = ACTIONS(6605), + [anon_sym_SLASH] = ACTIONS(6603), + [anon_sym_PERCENT] = ACTIONS(6603), + [anon_sym_PIPE_PIPE] = ACTIONS(6596), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6603), + [anon_sym_CARET] = ACTIONS(6603), + [anon_sym_AMP] = ACTIONS(6605), + [anon_sym_EQ_EQ] = ACTIONS(6596), + [anon_sym_BANG_EQ] = ACTIONS(6596), + [anon_sym_GT] = ACTIONS(6603), + [anon_sym_GT_EQ] = ACTIONS(6596), + [anon_sym_LT_EQ] = ACTIONS(6603), + [anon_sym_LT] = ACTIONS(6603), + [anon_sym_LT_LT] = ACTIONS(6603), + [anon_sym_GT_GT] = ACTIONS(6603), + [anon_sym___extension__] = ACTIONS(6594), + [anon_sym_virtual] = ACTIONS(6594), + [anon_sym_extern] = ACTIONS(6594), + [anon_sym___attribute__] = ACTIONS(6594), + [anon_sym___attribute] = ACTIONS(6594), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6601), + [anon_sym___declspec] = ACTIONS(6594), + [anon_sym___based] = ACTIONS(6594), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_LBRACK] = ACTIONS(6605), + [anon_sym_static] = ACTIONS(6594), + [anon_sym_EQ] = ACTIONS(6605), + [anon_sym_register] = ACTIONS(6594), + [anon_sym_inline] = ACTIONS(6594), + [anon_sym___inline] = ACTIONS(6594), + [anon_sym___inline__] = ACTIONS(6594), + [anon_sym___forceinline] = ACTIONS(6594), + [anon_sym_thread_local] = ACTIONS(6594), + [anon_sym___thread] = ACTIONS(6594), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6594), + [anon_sym_volatile] = ACTIONS(6594), + [anon_sym_restrict] = ACTIONS(6594), + [anon_sym___restrict__] = ACTIONS(6594), + [anon_sym__Atomic] = ACTIONS(6594), + [anon_sym__Noreturn] = ACTIONS(6594), + [anon_sym_noreturn] = ACTIONS(6594), + [anon_sym__Nonnull] = ACTIONS(6594), + [anon_sym_mutable] = ACTIONS(6594), + [anon_sym_constinit] = ACTIONS(6594), + [anon_sym_consteval] = ACTIONS(6594), + [anon_sym_alignas] = ACTIONS(6594), + [anon_sym__Alignas] = ACTIONS(6594), + [anon_sym_QMARK] = ACTIONS(6596), + [anon_sym_STAR_EQ] = ACTIONS(6596), + [anon_sym_SLASH_EQ] = ACTIONS(6596), + [anon_sym_PERCENT_EQ] = ACTIONS(6596), + [anon_sym_PLUS_EQ] = ACTIONS(6596), + [anon_sym_DASH_EQ] = ACTIONS(6596), + [anon_sym_LT_LT_EQ] = ACTIONS(6596), + [anon_sym_GT_GT_EQ] = ACTIONS(6596), + [anon_sym_AMP_EQ] = ACTIONS(6596), + [anon_sym_CARET_EQ] = ACTIONS(6596), + [anon_sym_PIPE_EQ] = ACTIONS(6596), + [anon_sym_and_eq] = ACTIONS(6603), + [anon_sym_or_eq] = ACTIONS(6603), + [anon_sym_xor_eq] = ACTIONS(6603), + [anon_sym_LT_EQ_GT] = ACTIONS(6596), + [anon_sym_or] = ACTIONS(6603), + [anon_sym_and] = ACTIONS(6603), + [anon_sym_bitor] = ACTIONS(6603), + [anon_sym_xor] = ACTIONS(6603), + [anon_sym_bitand] = ACTIONS(6603), + [anon_sym_not_eq] = ACTIONS(6603), + [anon_sym_DASH_DASH] = ACTIONS(6596), + [anon_sym_PLUS_PLUS] = ACTIONS(6596), + [anon_sym_DOT] = ACTIONS(6603), + [anon_sym_DOT_STAR] = ACTIONS(6596), + [anon_sym_DASH_GT] = ACTIONS(6603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6594), + [anon_sym_decltype] = ACTIONS(6594), + [anon_sym_template] = ACTIONS(6594), + [anon_sym_operator] = ACTIONS(6594), + [anon_sym_DASH_GT_STAR] = ACTIONS(6596), + [anon_sym_LBRACK_COLON] = ACTIONS(6601), + }, + [STATE(2004)] = { + [sym_string_literal] = STATE(3632), + [sym_decltype_auto] = STATE(3203), + [sym_template_argument_list] = STATE(2846), + [sym_raw_string_literal] = STATE(3632), + [aux_sym_sized_type_specifier_repeat1] = STATE(3552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_RPAREN] = ACTIONS(5669), + [anon_sym_LPAREN2] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(6880), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6883), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(6867), + [anon_sym_unsigned] = ACTIONS(6867), + [anon_sym_long] = ACTIONS(6867), + [anon_sym_short] = ACTIONS(6867), + [anon_sym_LBRACK] = ACTIONS(5678), + [anon_sym_EQ] = ACTIONS(5645), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5643), + [anon_sym_volatile] = ACTIONS(5643), + [anon_sym_restrict] = ACTIONS(5643), + [anon_sym___restrict__] = ACTIONS(5643), + [anon_sym__Atomic] = ACTIONS(5643), + [anon_sym__Noreturn] = ACTIONS(5643), + [anon_sym_noreturn] = ACTIONS(5643), + [anon_sym__Nonnull] = ACTIONS(5643), + [anon_sym_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [anon_sym_alignas] = ACTIONS(5643), + [anon_sym__Alignas] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5638), + [anon_sym_SLASH_EQ] = ACTIONS(5638), + [anon_sym_PERCENT_EQ] = ACTIONS(5638), + [anon_sym_PLUS_EQ] = ACTIONS(5638), + [anon_sym_DASH_EQ] = ACTIONS(5638), + [anon_sym_LT_LT_EQ] = ACTIONS(5638), + [anon_sym_GT_GT_EQ] = ACTIONS(5638), + [anon_sym_AMP_EQ] = ACTIONS(5638), + [anon_sym_CARET_EQ] = ACTIONS(5638), + [anon_sym_PIPE_EQ] = ACTIONS(5638), + [anon_sym_and_eq] = ACTIONS(5638), + [anon_sym_or_eq] = ACTIONS(5638), + [anon_sym_xor_eq] = ACTIONS(5638), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5645), + [anon_sym_L_DQUOTE] = ACTIONS(6885), + [anon_sym_u_DQUOTE] = ACTIONS(6885), + [anon_sym_U_DQUOTE] = ACTIONS(6885), + [anon_sym_u8_DQUOTE] = ACTIONS(6885), + [anon_sym_DQUOTE] = ACTIONS(6885), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6869), + [anon_sym_decltype] = ACTIONS(6871), + [anon_sym_R_DQUOTE] = ACTIONS(6887), + [anon_sym_LR_DQUOTE] = ACTIONS(6887), + [anon_sym_uR_DQUOTE] = ACTIONS(6887), + [anon_sym_UR_DQUOTE] = ACTIONS(6887), + [anon_sym_u8R_DQUOTE] = ACTIONS(6887), + [anon_sym_DASH_GT_STAR] = ACTIONS(5638), + }, + [STATE(2005)] = { + [sym_identifier] = ACTIONS(6632), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6634), + [anon_sym_COMMA] = ACTIONS(6634), + [anon_sym_RPAREN] = ACTIONS(6634), + [anon_sym_LPAREN2] = ACTIONS(6634), + [anon_sym_TILDE] = ACTIONS(6634), + [anon_sym_DASH] = ACTIONS(6632), + [anon_sym_PLUS] = ACTIONS(6632), + [anon_sym_STAR] = ACTIONS(6632), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_PERCENT] = ACTIONS(6632), + [anon_sym_PIPE_PIPE] = ACTIONS(6634), + [anon_sym_AMP_AMP] = ACTIONS(6634), + [anon_sym_PIPE] = ACTIONS(6632), + [anon_sym_CARET] = ACTIONS(6632), + [anon_sym_AMP] = ACTIONS(6632), + [anon_sym_EQ_EQ] = ACTIONS(6634), + [anon_sym_BANG_EQ] = ACTIONS(6634), + [anon_sym_GT] = ACTIONS(6632), + [anon_sym_GT_EQ] = ACTIONS(6634), + [anon_sym_LT_EQ] = ACTIONS(6632), + [anon_sym_LT] = ACTIONS(6632), + [anon_sym_LT_LT] = ACTIONS(6632), + [anon_sym_GT_GT] = ACTIONS(6632), + [anon_sym___extension__] = ACTIONS(6632), + [anon_sym_virtual] = ACTIONS(6632), + [anon_sym_extern] = ACTIONS(6632), + [anon_sym___attribute__] = ACTIONS(6632), + [anon_sym___attribute] = ACTIONS(6632), + [anon_sym_COLON_COLON] = ACTIONS(6634), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6634), + [anon_sym___declspec] = ACTIONS(6632), + [anon_sym___based] = ACTIONS(6632), + [anon_sym_LBRACE] = ACTIONS(6634), + [anon_sym_LBRACK] = ACTIONS(6632), + [anon_sym_static] = ACTIONS(6632), + [anon_sym_EQ] = ACTIONS(6632), + [anon_sym_register] = ACTIONS(6632), + [anon_sym_inline] = ACTIONS(6632), + [anon_sym___inline] = ACTIONS(6632), + [anon_sym___inline__] = ACTIONS(6632), + [anon_sym___forceinline] = ACTIONS(6632), + [anon_sym_thread_local] = ACTIONS(6632), + [anon_sym___thread] = ACTIONS(6632), + [anon_sym_const] = ACTIONS(6632), + [anon_sym_constexpr] = ACTIONS(6632), + [anon_sym_volatile] = ACTIONS(6632), + [anon_sym_restrict] = ACTIONS(6632), + [anon_sym___restrict__] = ACTIONS(6632), + [anon_sym__Atomic] = ACTIONS(6632), + [anon_sym__Noreturn] = ACTIONS(6632), + [anon_sym_noreturn] = ACTIONS(6632), + [anon_sym__Nonnull] = ACTIONS(6632), + [anon_sym_mutable] = ACTIONS(6632), + [anon_sym_constinit] = ACTIONS(6632), + [anon_sym_consteval] = ACTIONS(6632), + [anon_sym_alignas] = ACTIONS(6632), + [anon_sym__Alignas] = ACTIONS(6632), + [anon_sym_QMARK] = ACTIONS(6634), + [anon_sym_STAR_EQ] = ACTIONS(6634), + [anon_sym_SLASH_EQ] = ACTIONS(6634), + [anon_sym_PERCENT_EQ] = ACTIONS(6634), + [anon_sym_PLUS_EQ] = ACTIONS(6634), + [anon_sym_DASH_EQ] = ACTIONS(6634), + [anon_sym_LT_LT_EQ] = ACTIONS(6634), + [anon_sym_GT_GT_EQ] = ACTIONS(6634), + [anon_sym_AMP_EQ] = ACTIONS(6634), + [anon_sym_CARET_EQ] = ACTIONS(6634), + [anon_sym_PIPE_EQ] = ACTIONS(6634), + [anon_sym_and_eq] = ACTIONS(6632), + [anon_sym_or_eq] = ACTIONS(6632), + [anon_sym_xor_eq] = ACTIONS(6632), + [anon_sym_LT_EQ_GT] = ACTIONS(6634), + [anon_sym_or] = ACTIONS(6632), + [anon_sym_and] = ACTIONS(6632), + [anon_sym_bitor] = ACTIONS(6632), + [anon_sym_xor] = ACTIONS(6632), + [anon_sym_bitand] = ACTIONS(6632), + [anon_sym_not_eq] = ACTIONS(6632), + [anon_sym_DASH_DASH] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_DOT] = ACTIONS(6632), + [anon_sym_DOT_STAR] = ACTIONS(6634), + [anon_sym_DASH_GT] = ACTIONS(6632), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6632), + [anon_sym_decltype] = ACTIONS(6632), + [anon_sym_template] = ACTIONS(6632), + [anon_sym_operator] = ACTIONS(6632), + [anon_sym_DASH_GT_STAR] = ACTIONS(6634), + [anon_sym_LBRACK_COLON] = ACTIONS(6634), + }, + [STATE(2006)] = { + [sym_type_qualifier] = STATE(2006), + [sym_alignas_qualifier] = STATE(2047), + [aux_sym__type_definition_type_repeat1] = STATE(2006), + [sym_identifier] = ACTIONS(6889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), + [anon_sym_COMMA] = ACTIONS(6891), + [anon_sym_RPAREN] = ACTIONS(6891), + [aux_sym_preproc_if_token2] = ACTIONS(6891), + [aux_sym_preproc_else_token1] = ACTIONS(6891), + [aux_sym_preproc_elif_token1] = ACTIONS(6889), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6891), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6891), + [anon_sym_LPAREN2] = ACTIONS(6891), + [anon_sym_DASH] = ACTIONS(6889), + [anon_sym_PLUS] = ACTIONS(6889), + [anon_sym_STAR] = ACTIONS(6889), + [anon_sym_SLASH] = ACTIONS(6889), + [anon_sym_PERCENT] = ACTIONS(6889), + [anon_sym_PIPE_PIPE] = ACTIONS(6891), + [anon_sym_AMP_AMP] = ACTIONS(6891), + [anon_sym_PIPE] = ACTIONS(6889), + [anon_sym_CARET] = ACTIONS(6889), + [anon_sym_AMP] = ACTIONS(6889), + [anon_sym_EQ_EQ] = ACTIONS(6891), + [anon_sym_BANG_EQ] = ACTIONS(6891), + [anon_sym_GT] = ACTIONS(6889), + [anon_sym_GT_EQ] = ACTIONS(6891), + [anon_sym_LT_EQ] = ACTIONS(6889), + [anon_sym_LT] = ACTIONS(6889), + [anon_sym_LT_LT] = ACTIONS(6889), + [anon_sym_GT_GT] = ACTIONS(6889), + [anon_sym_SEMI] = ACTIONS(6891), + [anon_sym___extension__] = ACTIONS(6893), + [anon_sym___attribute__] = ACTIONS(6889), + [anon_sym___attribute] = ACTIONS(6889), + [anon_sym_COLON] = ACTIONS(6889), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6891), + [anon_sym_LBRACE] = ACTIONS(6891), + [anon_sym_RBRACE] = ACTIONS(6891), + [anon_sym_signed] = ACTIONS(6889), + [anon_sym_unsigned] = ACTIONS(6889), + [anon_sym_long] = ACTIONS(6889), + [anon_sym_short] = ACTIONS(6889), + [anon_sym_LBRACK] = ACTIONS(6891), + [anon_sym_EQ] = ACTIONS(6889), + [anon_sym_const] = ACTIONS(6893), + [anon_sym_constexpr] = ACTIONS(6893), + [anon_sym_volatile] = ACTIONS(6893), + [anon_sym_restrict] = ACTIONS(6893), + [anon_sym___restrict__] = ACTIONS(6893), + [anon_sym__Atomic] = ACTIONS(6893), + [anon_sym__Noreturn] = ACTIONS(6893), + [anon_sym_noreturn] = ACTIONS(6893), + [anon_sym__Nonnull] = ACTIONS(6893), + [anon_sym_mutable] = ACTIONS(6893), + [anon_sym_constinit] = ACTIONS(6893), + [anon_sym_consteval] = ACTIONS(6893), + [anon_sym_alignas] = ACTIONS(6896), + [anon_sym__Alignas] = ACTIONS(6896), + [sym_primitive_type] = ACTIONS(6889), + [anon_sym_QMARK] = ACTIONS(6891), + [anon_sym_STAR_EQ] = ACTIONS(6891), + [anon_sym_SLASH_EQ] = ACTIONS(6891), + [anon_sym_PERCENT_EQ] = ACTIONS(6891), + [anon_sym_PLUS_EQ] = ACTIONS(6891), + [anon_sym_DASH_EQ] = ACTIONS(6891), + [anon_sym_LT_LT_EQ] = ACTIONS(6891), + [anon_sym_GT_GT_EQ] = ACTIONS(6891), + [anon_sym_AMP_EQ] = ACTIONS(6891), + [anon_sym_CARET_EQ] = ACTIONS(6891), + [anon_sym_PIPE_EQ] = ACTIONS(6891), + [anon_sym_and_eq] = ACTIONS(6889), + [anon_sym_or_eq] = ACTIONS(6889), + [anon_sym_xor_eq] = ACTIONS(6889), + [anon_sym_LT_EQ_GT] = ACTIONS(6891), + [anon_sym_or] = ACTIONS(6889), + [anon_sym_and] = ACTIONS(6889), + [anon_sym_bitor] = ACTIONS(6889), + [anon_sym_xor] = ACTIONS(6889), + [anon_sym_bitand] = ACTIONS(6889), + [anon_sym_not_eq] = ACTIONS(6889), + [anon_sym_DASH_DASH] = ACTIONS(6891), + [anon_sym_PLUS_PLUS] = ACTIONS(6891), + [anon_sym_DOT] = ACTIONS(6889), + [anon_sym_DOT_STAR] = ACTIONS(6891), + [anon_sym_DASH_GT] = ACTIONS(6891), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6889), + [anon_sym_override] = ACTIONS(6889), + [anon_sym_requires] = ACTIONS(6889), + [anon_sym_COLON_RBRACK] = ACTIONS(6891), + }, + [STATE(2007)] = { + [sym_identifier] = ACTIONS(6612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6614), + [anon_sym_COMMA] = ACTIONS(6614), + [anon_sym_RPAREN] = ACTIONS(6614), + [anon_sym_LPAREN2] = ACTIONS(6614), + [anon_sym_TILDE] = ACTIONS(6614), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6612), + [anon_sym_SLASH] = ACTIONS(6612), + [anon_sym_PERCENT] = ACTIONS(6612), + [anon_sym_PIPE_PIPE] = ACTIONS(6614), + [anon_sym_AMP_AMP] = ACTIONS(6614), + [anon_sym_PIPE] = ACTIONS(6612), + [anon_sym_CARET] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(6612), + [anon_sym_EQ_EQ] = ACTIONS(6614), + [anon_sym_BANG_EQ] = ACTIONS(6614), + [anon_sym_GT] = ACTIONS(6612), + [anon_sym_GT_EQ] = ACTIONS(6614), + [anon_sym_LT_EQ] = ACTIONS(6612), + [anon_sym_LT] = ACTIONS(6612), + [anon_sym_LT_LT] = ACTIONS(6612), + [anon_sym_GT_GT] = ACTIONS(6612), + [anon_sym___extension__] = ACTIONS(6612), + [anon_sym_virtual] = ACTIONS(6612), + [anon_sym_extern] = ACTIONS(6612), + [anon_sym___attribute__] = ACTIONS(6612), + [anon_sym___attribute] = ACTIONS(6612), + [anon_sym_COLON_COLON] = ACTIONS(6614), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6614), + [anon_sym___declspec] = ACTIONS(6612), + [anon_sym___based] = ACTIONS(6612), + [anon_sym_LBRACE] = ACTIONS(6614), + [anon_sym_LBRACK] = ACTIONS(6612), + [anon_sym_static] = ACTIONS(6612), + [anon_sym_EQ] = ACTIONS(6612), + [anon_sym_register] = ACTIONS(6612), + [anon_sym_inline] = ACTIONS(6612), + [anon_sym___inline] = ACTIONS(6612), + [anon_sym___inline__] = ACTIONS(6612), + [anon_sym___forceinline] = ACTIONS(6612), + [anon_sym_thread_local] = ACTIONS(6612), + [anon_sym___thread] = ACTIONS(6612), + [anon_sym_const] = ACTIONS(6612), + [anon_sym_constexpr] = ACTIONS(6612), + [anon_sym_volatile] = ACTIONS(6612), + [anon_sym_restrict] = ACTIONS(6612), + [anon_sym___restrict__] = ACTIONS(6612), + [anon_sym__Atomic] = ACTIONS(6612), + [anon_sym__Noreturn] = ACTIONS(6612), + [anon_sym_noreturn] = ACTIONS(6612), + [anon_sym__Nonnull] = ACTIONS(6612), + [anon_sym_mutable] = ACTIONS(6612), + [anon_sym_constinit] = ACTIONS(6612), + [anon_sym_consteval] = ACTIONS(6612), + [anon_sym_alignas] = ACTIONS(6612), + [anon_sym__Alignas] = ACTIONS(6612), + [anon_sym_QMARK] = ACTIONS(6614), + [anon_sym_STAR_EQ] = ACTIONS(6614), + [anon_sym_SLASH_EQ] = ACTIONS(6614), + [anon_sym_PERCENT_EQ] = ACTIONS(6614), + [anon_sym_PLUS_EQ] = ACTIONS(6614), + [anon_sym_DASH_EQ] = ACTIONS(6614), + [anon_sym_LT_LT_EQ] = ACTIONS(6614), + [anon_sym_GT_GT_EQ] = ACTIONS(6614), + [anon_sym_AMP_EQ] = ACTIONS(6614), + [anon_sym_CARET_EQ] = ACTIONS(6614), + [anon_sym_PIPE_EQ] = ACTIONS(6614), + [anon_sym_and_eq] = ACTIONS(6612), + [anon_sym_or_eq] = ACTIONS(6612), + [anon_sym_xor_eq] = ACTIONS(6612), + [anon_sym_LT_EQ_GT] = ACTIONS(6614), + [anon_sym_or] = ACTIONS(6612), + [anon_sym_and] = ACTIONS(6612), + [anon_sym_bitor] = ACTIONS(6612), + [anon_sym_xor] = ACTIONS(6612), + [anon_sym_bitand] = ACTIONS(6612), + [anon_sym_not_eq] = ACTIONS(6612), + [anon_sym_DASH_DASH] = ACTIONS(6614), + [anon_sym_PLUS_PLUS] = ACTIONS(6614), + [anon_sym_DOT] = ACTIONS(6612), + [anon_sym_DOT_STAR] = ACTIONS(6614), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6612), + [anon_sym_decltype] = ACTIONS(6612), + [anon_sym_template] = ACTIONS(6612), + [anon_sym_operator] = ACTIONS(6612), + [anon_sym_DASH_GT_STAR] = ACTIONS(6614), + [anon_sym_LBRACK_COLON] = ACTIONS(6614), + }, + [STATE(2008)] = { + [sym_identifier] = ACTIONS(6624), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6626), + [anon_sym_COMMA] = ACTIONS(6626), + [anon_sym_RPAREN] = ACTIONS(6626), + [anon_sym_LPAREN2] = ACTIONS(6626), + [anon_sym_TILDE] = ACTIONS(6626), + [anon_sym_DASH] = ACTIONS(6624), + [anon_sym_PLUS] = ACTIONS(6624), + [anon_sym_STAR] = ACTIONS(6624), + [anon_sym_SLASH] = ACTIONS(6624), + [anon_sym_PERCENT] = ACTIONS(6624), + [anon_sym_PIPE_PIPE] = ACTIONS(6626), + [anon_sym_AMP_AMP] = ACTIONS(6626), + [anon_sym_PIPE] = ACTIONS(6624), + [anon_sym_CARET] = ACTIONS(6624), + [anon_sym_AMP] = ACTIONS(6624), + [anon_sym_EQ_EQ] = ACTIONS(6626), + [anon_sym_BANG_EQ] = ACTIONS(6626), + [anon_sym_GT] = ACTIONS(6624), + [anon_sym_GT_EQ] = ACTIONS(6626), + [anon_sym_LT_EQ] = ACTIONS(6624), + [anon_sym_LT] = ACTIONS(6624), + [anon_sym_LT_LT] = ACTIONS(6624), + [anon_sym_GT_GT] = ACTIONS(6624), + [anon_sym___extension__] = ACTIONS(6624), + [anon_sym_virtual] = ACTIONS(6624), + [anon_sym_extern] = ACTIONS(6624), + [anon_sym___attribute__] = ACTIONS(6624), + [anon_sym___attribute] = ACTIONS(6624), + [anon_sym_COLON_COLON] = ACTIONS(6626), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6626), + [anon_sym___declspec] = ACTIONS(6624), + [anon_sym___based] = ACTIONS(6624), + [anon_sym_LBRACE] = ACTIONS(6626), + [anon_sym_LBRACK] = ACTIONS(6624), + [anon_sym_static] = ACTIONS(6624), + [anon_sym_EQ] = ACTIONS(6624), + [anon_sym_register] = ACTIONS(6624), + [anon_sym_inline] = ACTIONS(6624), + [anon_sym___inline] = ACTIONS(6624), + [anon_sym___inline__] = ACTIONS(6624), + [anon_sym___forceinline] = ACTIONS(6624), + [anon_sym_thread_local] = ACTIONS(6624), + [anon_sym___thread] = ACTIONS(6624), + [anon_sym_const] = ACTIONS(6624), + [anon_sym_constexpr] = ACTIONS(6624), + [anon_sym_volatile] = ACTIONS(6624), + [anon_sym_restrict] = ACTIONS(6624), + [anon_sym___restrict__] = ACTIONS(6624), + [anon_sym__Atomic] = ACTIONS(6624), + [anon_sym__Noreturn] = ACTIONS(6624), + [anon_sym_noreturn] = ACTIONS(6624), + [anon_sym__Nonnull] = ACTIONS(6624), + [anon_sym_mutable] = ACTIONS(6624), + [anon_sym_constinit] = ACTIONS(6624), + [anon_sym_consteval] = ACTIONS(6624), + [anon_sym_alignas] = ACTIONS(6624), + [anon_sym__Alignas] = ACTIONS(6624), + [anon_sym_QMARK] = ACTIONS(6626), + [anon_sym_STAR_EQ] = ACTIONS(6626), + [anon_sym_SLASH_EQ] = ACTIONS(6626), + [anon_sym_PERCENT_EQ] = ACTIONS(6626), + [anon_sym_PLUS_EQ] = ACTIONS(6626), + [anon_sym_DASH_EQ] = ACTIONS(6626), + [anon_sym_LT_LT_EQ] = ACTIONS(6626), + [anon_sym_GT_GT_EQ] = ACTIONS(6626), + [anon_sym_AMP_EQ] = ACTIONS(6626), + [anon_sym_CARET_EQ] = ACTIONS(6626), + [anon_sym_PIPE_EQ] = ACTIONS(6626), + [anon_sym_and_eq] = ACTIONS(6624), + [anon_sym_or_eq] = ACTIONS(6624), + [anon_sym_xor_eq] = ACTIONS(6624), + [anon_sym_LT_EQ_GT] = ACTIONS(6626), + [anon_sym_or] = ACTIONS(6624), + [anon_sym_and] = ACTIONS(6624), + [anon_sym_bitor] = ACTIONS(6624), + [anon_sym_xor] = ACTIONS(6624), + [anon_sym_bitand] = ACTIONS(6624), + [anon_sym_not_eq] = ACTIONS(6624), + [anon_sym_DASH_DASH] = ACTIONS(6626), + [anon_sym_PLUS_PLUS] = ACTIONS(6626), + [anon_sym_DOT] = ACTIONS(6624), + [anon_sym_DOT_STAR] = ACTIONS(6626), + [anon_sym_DASH_GT] = ACTIONS(6624), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6624), + [anon_sym_decltype] = ACTIONS(6624), + [anon_sym_template] = ACTIONS(6624), + [anon_sym_operator] = ACTIONS(6624), + [anon_sym_DASH_GT_STAR] = ACTIONS(6626), + [anon_sym_LBRACK_COLON] = ACTIONS(6626), + }, + [STATE(2009)] = { + [sym_identifier] = ACTIONS(6628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6630), + [anon_sym_COMMA] = ACTIONS(6630), + [anon_sym_RPAREN] = ACTIONS(6630), + [anon_sym_LPAREN2] = ACTIONS(6630), + [anon_sym_TILDE] = ACTIONS(6630), + [anon_sym_DASH] = ACTIONS(6628), + [anon_sym_PLUS] = ACTIONS(6628), + [anon_sym_STAR] = ACTIONS(6628), + [anon_sym_SLASH] = ACTIONS(6628), + [anon_sym_PERCENT] = ACTIONS(6628), + [anon_sym_PIPE_PIPE] = ACTIONS(6630), + [anon_sym_AMP_AMP] = ACTIONS(6630), + [anon_sym_PIPE] = ACTIONS(6628), + [anon_sym_CARET] = ACTIONS(6628), + [anon_sym_AMP] = ACTIONS(6628), + [anon_sym_EQ_EQ] = ACTIONS(6630), + [anon_sym_BANG_EQ] = ACTIONS(6630), + [anon_sym_GT] = ACTIONS(6628), + [anon_sym_GT_EQ] = ACTIONS(6630), + [anon_sym_LT_EQ] = ACTIONS(6628), + [anon_sym_LT] = ACTIONS(6628), + [anon_sym_LT_LT] = ACTIONS(6628), + [anon_sym_GT_GT] = ACTIONS(6628), + [anon_sym___extension__] = ACTIONS(6628), + [anon_sym_virtual] = ACTIONS(6628), + [anon_sym_extern] = ACTIONS(6628), + [anon_sym___attribute__] = ACTIONS(6628), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_COLON_COLON] = ACTIONS(6630), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), + [anon_sym___declspec] = ACTIONS(6628), + [anon_sym___based] = ACTIONS(6628), + [anon_sym_LBRACE] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(6628), + [anon_sym_static] = ACTIONS(6628), + [anon_sym_EQ] = ACTIONS(6628), + [anon_sym_register] = ACTIONS(6628), + [anon_sym_inline] = ACTIONS(6628), + [anon_sym___inline] = ACTIONS(6628), + [anon_sym___inline__] = ACTIONS(6628), + [anon_sym___forceinline] = ACTIONS(6628), + [anon_sym_thread_local] = ACTIONS(6628), + [anon_sym___thread] = ACTIONS(6628), + [anon_sym_const] = ACTIONS(6628), + [anon_sym_constexpr] = ACTIONS(6628), + [anon_sym_volatile] = ACTIONS(6628), + [anon_sym_restrict] = ACTIONS(6628), + [anon_sym___restrict__] = ACTIONS(6628), + [anon_sym__Atomic] = ACTIONS(6628), + [anon_sym__Noreturn] = ACTIONS(6628), + [anon_sym_noreturn] = ACTIONS(6628), + [anon_sym__Nonnull] = ACTIONS(6628), + [anon_sym_mutable] = ACTIONS(6628), + [anon_sym_constinit] = ACTIONS(6628), + [anon_sym_consteval] = ACTIONS(6628), + [anon_sym_alignas] = ACTIONS(6628), + [anon_sym__Alignas] = ACTIONS(6628), + [anon_sym_QMARK] = ACTIONS(6630), + [anon_sym_STAR_EQ] = ACTIONS(6630), + [anon_sym_SLASH_EQ] = ACTIONS(6630), + [anon_sym_PERCENT_EQ] = ACTIONS(6630), + [anon_sym_PLUS_EQ] = ACTIONS(6630), + [anon_sym_DASH_EQ] = ACTIONS(6630), + [anon_sym_LT_LT_EQ] = ACTIONS(6630), + [anon_sym_GT_GT_EQ] = ACTIONS(6630), + [anon_sym_AMP_EQ] = ACTIONS(6630), + [anon_sym_CARET_EQ] = ACTIONS(6630), + [anon_sym_PIPE_EQ] = ACTIONS(6630), + [anon_sym_and_eq] = ACTIONS(6628), + [anon_sym_or_eq] = ACTIONS(6628), + [anon_sym_xor_eq] = ACTIONS(6628), + [anon_sym_LT_EQ_GT] = ACTIONS(6630), + [anon_sym_or] = ACTIONS(6628), + [anon_sym_and] = ACTIONS(6628), + [anon_sym_bitor] = ACTIONS(6628), + [anon_sym_xor] = ACTIONS(6628), + [anon_sym_bitand] = ACTIONS(6628), + [anon_sym_not_eq] = ACTIONS(6628), + [anon_sym_DASH_DASH] = ACTIONS(6630), + [anon_sym_PLUS_PLUS] = ACTIONS(6630), + [anon_sym_DOT] = ACTIONS(6628), + [anon_sym_DOT_STAR] = ACTIONS(6630), + [anon_sym_DASH_GT] = ACTIONS(6628), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6628), + [anon_sym_decltype] = ACTIONS(6628), + [anon_sym_template] = ACTIONS(6628), + [anon_sym_operator] = ACTIONS(6628), + [anon_sym_DASH_GT_STAR] = ACTIONS(6630), + [anon_sym_LBRACK_COLON] = ACTIONS(6630), + }, + [STATE(2010)] = { + [sym_identifier] = ACTIONS(6624), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6626), + [anon_sym_COMMA] = ACTIONS(6626), + [anon_sym_RPAREN] = ACTIONS(6626), + [anon_sym_LPAREN2] = ACTIONS(6626), + [anon_sym_TILDE] = ACTIONS(6626), + [anon_sym_DASH] = ACTIONS(6624), + [anon_sym_PLUS] = ACTIONS(6624), + [anon_sym_STAR] = ACTIONS(6626), + [anon_sym_SLASH] = ACTIONS(6624), + [anon_sym_PERCENT] = ACTIONS(6626), + [anon_sym_PIPE_PIPE] = ACTIONS(6626), + [anon_sym_AMP_AMP] = ACTIONS(6626), + [anon_sym_PIPE] = ACTIONS(6624), + [anon_sym_CARET] = ACTIONS(6626), + [anon_sym_AMP] = ACTIONS(6624), + [anon_sym_EQ_EQ] = ACTIONS(6626), + [anon_sym_BANG_EQ] = ACTIONS(6626), + [anon_sym_GT] = ACTIONS(6624), + [anon_sym_GT_EQ] = ACTIONS(6626), + [anon_sym_LT_EQ] = ACTIONS(6624), + [anon_sym_LT] = ACTIONS(6624), + [anon_sym_LT_LT] = ACTIONS(6626), + [anon_sym_GT_GT] = ACTIONS(6626), + [anon_sym_SEMI] = ACTIONS(6626), + [anon_sym___extension__] = ACTIONS(6624), + [anon_sym_virtual] = ACTIONS(6624), + [anon_sym_extern] = ACTIONS(6624), + [anon_sym___attribute__] = ACTIONS(6624), + [anon_sym___attribute] = ACTIONS(6624), + [anon_sym_COLON] = ACTIONS(6624), + [anon_sym_COLON_COLON] = ACTIONS(6626), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6626), + [anon_sym___declspec] = ACTIONS(6624), + [anon_sym___based] = ACTIONS(6624), + [anon_sym___cdecl] = ACTIONS(6624), + [anon_sym___clrcall] = ACTIONS(6624), + [anon_sym___stdcall] = ACTIONS(6624), + [anon_sym___fastcall] = ACTIONS(6624), + [anon_sym___thiscall] = ACTIONS(6624), + [anon_sym___vectorcall] = ACTIONS(6624), + [anon_sym_LBRACE] = ACTIONS(6626), + [anon_sym_RBRACE] = ACTIONS(6626), + [anon_sym_LBRACK] = ACTIONS(6624), + [anon_sym_static] = ACTIONS(6624), + [anon_sym_RBRACK] = ACTIONS(6626), + [anon_sym_EQ] = ACTIONS(6624), + [anon_sym_register] = ACTIONS(6624), + [anon_sym_inline] = ACTIONS(6624), + [anon_sym___inline] = ACTIONS(6624), + [anon_sym___inline__] = ACTIONS(6624), + [anon_sym___forceinline] = ACTIONS(6624), + [anon_sym_thread_local] = ACTIONS(6624), + [anon_sym___thread] = ACTIONS(6624), + [anon_sym_const] = ACTIONS(6624), + [anon_sym_constexpr] = ACTIONS(6624), + [anon_sym_volatile] = ACTIONS(6624), + [anon_sym_restrict] = ACTIONS(6624), + [anon_sym___restrict__] = ACTIONS(6624), + [anon_sym__Atomic] = ACTIONS(6624), + [anon_sym__Noreturn] = ACTIONS(6624), + [anon_sym_noreturn] = ACTIONS(6624), + [anon_sym__Nonnull] = ACTIONS(6624), + [anon_sym_mutable] = ACTIONS(6624), + [anon_sym_constinit] = ACTIONS(6624), + [anon_sym_consteval] = ACTIONS(6624), + [anon_sym_alignas] = ACTIONS(6624), + [anon_sym__Alignas] = ACTIONS(6624), + [anon_sym_QMARK] = ACTIONS(6626), + [anon_sym_LT_EQ_GT] = ACTIONS(6626), + [anon_sym_or] = ACTIONS(6624), + [anon_sym_and] = ACTIONS(6624), + [anon_sym_bitor] = ACTIONS(6624), + [anon_sym_xor] = ACTIONS(6624), + [anon_sym_bitand] = ACTIONS(6624), + [anon_sym_not_eq] = ACTIONS(6624), + [anon_sym_DASH_DASH] = ACTIONS(6626), + [anon_sym_PLUS_PLUS] = ACTIONS(6626), + [anon_sym_DOT] = ACTIONS(6624), + [anon_sym_DOT_STAR] = ACTIONS(6626), + [anon_sym_DASH_GT] = ACTIONS(6626), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6624), + [anon_sym_decltype] = ACTIONS(6624), + [anon_sym_final] = ACTIONS(6624), + [anon_sym_override] = ACTIONS(6624), + [anon_sym_template] = ACTIONS(6624), + [anon_sym_operator] = ACTIONS(6624), + [anon_sym_noexcept] = ACTIONS(6624), + [anon_sym_throw] = ACTIONS(6624), + [anon_sym_LBRACK_COLON] = ACTIONS(6626), + }, + [STATE(2011)] = { + [sym_identifier] = ACTIONS(6628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6630), + [anon_sym_COMMA] = ACTIONS(6630), + [anon_sym_RPAREN] = ACTIONS(6630), + [anon_sym_LPAREN2] = ACTIONS(6630), + [anon_sym_TILDE] = ACTIONS(6630), + [anon_sym_DASH] = ACTIONS(6628), + [anon_sym_PLUS] = ACTIONS(6628), + [anon_sym_STAR] = ACTIONS(6630), + [anon_sym_SLASH] = ACTIONS(6628), + [anon_sym_PERCENT] = ACTIONS(6630), + [anon_sym_PIPE_PIPE] = ACTIONS(6630), + [anon_sym_AMP_AMP] = ACTIONS(6630), + [anon_sym_PIPE] = ACTIONS(6628), + [anon_sym_CARET] = ACTIONS(6630), + [anon_sym_AMP] = ACTIONS(6628), + [anon_sym_EQ_EQ] = ACTIONS(6630), + [anon_sym_BANG_EQ] = ACTIONS(6630), + [anon_sym_GT] = ACTIONS(6628), + [anon_sym_GT_EQ] = ACTIONS(6630), + [anon_sym_LT_EQ] = ACTIONS(6628), + [anon_sym_LT] = ACTIONS(6628), + [anon_sym_LT_LT] = ACTIONS(6630), + [anon_sym_GT_GT] = ACTIONS(6630), + [anon_sym_SEMI] = ACTIONS(6630), + [anon_sym___extension__] = ACTIONS(6628), + [anon_sym_virtual] = ACTIONS(6628), + [anon_sym_extern] = ACTIONS(6628), + [anon_sym___attribute__] = ACTIONS(6628), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_COLON] = ACTIONS(6628), + [anon_sym_COLON_COLON] = ACTIONS(6630), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), + [anon_sym___declspec] = ACTIONS(6628), + [anon_sym___based] = ACTIONS(6628), + [anon_sym___cdecl] = ACTIONS(6628), + [anon_sym___clrcall] = ACTIONS(6628), + [anon_sym___stdcall] = ACTIONS(6628), + [anon_sym___fastcall] = ACTIONS(6628), + [anon_sym___thiscall] = ACTIONS(6628), + [anon_sym___vectorcall] = ACTIONS(6628), + [anon_sym_LBRACE] = ACTIONS(6630), + [anon_sym_RBRACE] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(6628), + [anon_sym_static] = ACTIONS(6628), + [anon_sym_RBRACK] = ACTIONS(6630), + [anon_sym_EQ] = ACTIONS(6628), + [anon_sym_register] = ACTIONS(6628), + [anon_sym_inline] = ACTIONS(6628), + [anon_sym___inline] = ACTIONS(6628), + [anon_sym___inline__] = ACTIONS(6628), + [anon_sym___forceinline] = ACTIONS(6628), + [anon_sym_thread_local] = ACTIONS(6628), + [anon_sym___thread] = ACTIONS(6628), + [anon_sym_const] = ACTIONS(6628), + [anon_sym_constexpr] = ACTIONS(6628), + [anon_sym_volatile] = ACTIONS(6628), + [anon_sym_restrict] = ACTIONS(6628), + [anon_sym___restrict__] = ACTIONS(6628), + [anon_sym__Atomic] = ACTIONS(6628), + [anon_sym__Noreturn] = ACTIONS(6628), + [anon_sym_noreturn] = ACTIONS(6628), + [anon_sym__Nonnull] = ACTIONS(6628), + [anon_sym_mutable] = ACTIONS(6628), + [anon_sym_constinit] = ACTIONS(6628), + [anon_sym_consteval] = ACTIONS(6628), + [anon_sym_alignas] = ACTIONS(6628), + [anon_sym__Alignas] = ACTIONS(6628), + [anon_sym_QMARK] = ACTIONS(6630), + [anon_sym_LT_EQ_GT] = ACTIONS(6630), + [anon_sym_or] = ACTIONS(6628), + [anon_sym_and] = ACTIONS(6628), + [anon_sym_bitor] = ACTIONS(6628), + [anon_sym_xor] = ACTIONS(6628), + [anon_sym_bitand] = ACTIONS(6628), + [anon_sym_not_eq] = ACTIONS(6628), + [anon_sym_DASH_DASH] = ACTIONS(6630), + [anon_sym_PLUS_PLUS] = ACTIONS(6630), + [anon_sym_DOT] = ACTIONS(6628), + [anon_sym_DOT_STAR] = ACTIONS(6630), + [anon_sym_DASH_GT] = ACTIONS(6630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6628), + [anon_sym_decltype] = ACTIONS(6628), + [anon_sym_final] = ACTIONS(6628), + [anon_sym_override] = ACTIONS(6628), + [anon_sym_template] = ACTIONS(6628), + [anon_sym_operator] = ACTIONS(6628), + [anon_sym_noexcept] = ACTIONS(6628), + [anon_sym_throw] = ACTIONS(6628), + [anon_sym_LBRACK_COLON] = ACTIONS(6630), + }, + [STATE(2012)] = { + [sym_identifier] = ACTIONS(6616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6618), + [anon_sym_COMMA] = ACTIONS(6618), + [anon_sym_RPAREN] = ACTIONS(6618), + [anon_sym_LPAREN2] = ACTIONS(6618), + [anon_sym_TILDE] = ACTIONS(6618), + [anon_sym_DASH] = ACTIONS(6616), + [anon_sym_PLUS] = ACTIONS(6616), + [anon_sym_STAR] = ACTIONS(6616), + [anon_sym_SLASH] = ACTIONS(6616), + [anon_sym_PERCENT] = ACTIONS(6616), + [anon_sym_PIPE_PIPE] = ACTIONS(6618), + [anon_sym_AMP_AMP] = ACTIONS(6618), + [anon_sym_PIPE] = ACTIONS(6616), + [anon_sym_CARET] = ACTIONS(6616), + [anon_sym_AMP] = ACTIONS(6616), + [anon_sym_EQ_EQ] = ACTIONS(6618), + [anon_sym_BANG_EQ] = ACTIONS(6618), + [anon_sym_GT] = ACTIONS(6616), + [anon_sym_GT_EQ] = ACTIONS(6618), + [anon_sym_LT_EQ] = ACTIONS(6616), + [anon_sym_LT] = ACTIONS(6616), + [anon_sym_LT_LT] = ACTIONS(6616), + [anon_sym_GT_GT] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(6616), + [anon_sym_virtual] = ACTIONS(6616), + [anon_sym_extern] = ACTIONS(6616), + [anon_sym___attribute__] = ACTIONS(6616), + [anon_sym___attribute] = ACTIONS(6616), + [anon_sym_COLON_COLON] = ACTIONS(6618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6618), + [anon_sym___declspec] = ACTIONS(6616), + [anon_sym___based] = ACTIONS(6616), + [anon_sym_LBRACE] = ACTIONS(6618), + [anon_sym_LBRACK] = ACTIONS(6616), + [anon_sym_static] = ACTIONS(6616), + [anon_sym_EQ] = ACTIONS(6616), + [anon_sym_register] = ACTIONS(6616), + [anon_sym_inline] = ACTIONS(6616), + [anon_sym___inline] = ACTIONS(6616), + [anon_sym___inline__] = ACTIONS(6616), + [anon_sym___forceinline] = ACTIONS(6616), + [anon_sym_thread_local] = ACTIONS(6616), + [anon_sym___thread] = ACTIONS(6616), + [anon_sym_const] = ACTIONS(6616), + [anon_sym_constexpr] = ACTIONS(6616), + [anon_sym_volatile] = ACTIONS(6616), + [anon_sym_restrict] = ACTIONS(6616), + [anon_sym___restrict__] = ACTIONS(6616), + [anon_sym__Atomic] = ACTIONS(6616), + [anon_sym__Noreturn] = ACTIONS(6616), + [anon_sym_noreturn] = ACTIONS(6616), + [anon_sym__Nonnull] = ACTIONS(6616), + [anon_sym_mutable] = ACTIONS(6616), + [anon_sym_constinit] = ACTIONS(6616), + [anon_sym_consteval] = ACTIONS(6616), + [anon_sym_alignas] = ACTIONS(6616), + [anon_sym__Alignas] = ACTIONS(6616), + [anon_sym_QMARK] = ACTIONS(6618), + [anon_sym_STAR_EQ] = ACTIONS(6618), + [anon_sym_SLASH_EQ] = ACTIONS(6618), + [anon_sym_PERCENT_EQ] = ACTIONS(6618), + [anon_sym_PLUS_EQ] = ACTIONS(6618), + [anon_sym_DASH_EQ] = ACTIONS(6618), + [anon_sym_LT_LT_EQ] = ACTIONS(6618), + [anon_sym_GT_GT_EQ] = ACTIONS(6618), + [anon_sym_AMP_EQ] = ACTIONS(6618), + [anon_sym_CARET_EQ] = ACTIONS(6618), + [anon_sym_PIPE_EQ] = ACTIONS(6618), + [anon_sym_and_eq] = ACTIONS(6616), + [anon_sym_or_eq] = ACTIONS(6616), + [anon_sym_xor_eq] = ACTIONS(6616), + [anon_sym_LT_EQ_GT] = ACTIONS(6618), + [anon_sym_or] = ACTIONS(6616), + [anon_sym_and] = ACTIONS(6616), + [anon_sym_bitor] = ACTIONS(6616), + [anon_sym_xor] = ACTIONS(6616), + [anon_sym_bitand] = ACTIONS(6616), + [anon_sym_not_eq] = ACTIONS(6616), + [anon_sym_DASH_DASH] = ACTIONS(6618), + [anon_sym_PLUS_PLUS] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(6616), + [anon_sym_DOT_STAR] = ACTIONS(6618), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6616), + [anon_sym_decltype] = ACTIONS(6616), + [anon_sym_template] = ACTIONS(6616), + [anon_sym_operator] = ACTIONS(6616), + [anon_sym_DASH_GT_STAR] = ACTIONS(6618), + [anon_sym_LBRACK_COLON] = ACTIONS(6618), + }, + [STATE(2013)] = { + [sym_identifier] = ACTIONS(6608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6610), + [anon_sym_COMMA] = ACTIONS(6610), + [anon_sym_RPAREN] = ACTIONS(6610), + [anon_sym_LPAREN2] = ACTIONS(6610), + [anon_sym_TILDE] = ACTIONS(6610), + [anon_sym_DASH] = ACTIONS(6608), + [anon_sym_PLUS] = ACTIONS(6608), + [anon_sym_STAR] = ACTIONS(6608), + [anon_sym_SLASH] = ACTIONS(6608), + [anon_sym_PERCENT] = ACTIONS(6608), + [anon_sym_PIPE_PIPE] = ACTIONS(6610), + [anon_sym_AMP_AMP] = ACTIONS(6610), + [anon_sym_PIPE] = ACTIONS(6608), + [anon_sym_CARET] = ACTIONS(6608), + [anon_sym_AMP] = ACTIONS(6608), + [anon_sym_EQ_EQ] = ACTIONS(6610), + [anon_sym_BANG_EQ] = ACTIONS(6610), + [anon_sym_GT] = ACTIONS(6608), + [anon_sym_GT_EQ] = ACTIONS(6610), + [anon_sym_LT_EQ] = ACTIONS(6608), + [anon_sym_LT] = ACTIONS(6608), + [anon_sym_LT_LT] = ACTIONS(6608), + [anon_sym_GT_GT] = ACTIONS(6608), + [anon_sym___extension__] = ACTIONS(6608), + [anon_sym_virtual] = ACTIONS(6608), + [anon_sym_extern] = ACTIONS(6608), + [anon_sym___attribute__] = ACTIONS(6608), + [anon_sym___attribute] = ACTIONS(6608), + [anon_sym_COLON_COLON] = ACTIONS(6610), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6610), + [anon_sym___declspec] = ACTIONS(6608), + [anon_sym___based] = ACTIONS(6608), + [anon_sym_LBRACE] = ACTIONS(6610), + [anon_sym_LBRACK] = ACTIONS(6608), + [anon_sym_static] = ACTIONS(6608), + [anon_sym_EQ] = ACTIONS(6608), + [anon_sym_register] = ACTIONS(6608), + [anon_sym_inline] = ACTIONS(6608), + [anon_sym___inline] = ACTIONS(6608), + [anon_sym___inline__] = ACTIONS(6608), + [anon_sym___forceinline] = ACTIONS(6608), + [anon_sym_thread_local] = ACTIONS(6608), + [anon_sym___thread] = ACTIONS(6608), + [anon_sym_const] = ACTIONS(6608), + [anon_sym_constexpr] = ACTIONS(6608), + [anon_sym_volatile] = ACTIONS(6608), + [anon_sym_restrict] = ACTIONS(6608), + [anon_sym___restrict__] = ACTIONS(6608), + [anon_sym__Atomic] = ACTIONS(6608), + [anon_sym__Noreturn] = ACTIONS(6608), + [anon_sym_noreturn] = ACTIONS(6608), + [anon_sym__Nonnull] = ACTIONS(6608), + [anon_sym_mutable] = ACTIONS(6608), + [anon_sym_constinit] = ACTIONS(6608), + [anon_sym_consteval] = ACTIONS(6608), + [anon_sym_alignas] = ACTIONS(6608), + [anon_sym__Alignas] = ACTIONS(6608), + [anon_sym_QMARK] = ACTIONS(6610), + [anon_sym_STAR_EQ] = ACTIONS(6610), + [anon_sym_SLASH_EQ] = ACTIONS(6610), + [anon_sym_PERCENT_EQ] = ACTIONS(6610), + [anon_sym_PLUS_EQ] = ACTIONS(6610), + [anon_sym_DASH_EQ] = ACTIONS(6610), + [anon_sym_LT_LT_EQ] = ACTIONS(6610), + [anon_sym_GT_GT_EQ] = ACTIONS(6610), + [anon_sym_AMP_EQ] = ACTIONS(6610), + [anon_sym_CARET_EQ] = ACTIONS(6610), + [anon_sym_PIPE_EQ] = ACTIONS(6610), + [anon_sym_and_eq] = ACTIONS(6608), + [anon_sym_or_eq] = ACTIONS(6608), + [anon_sym_xor_eq] = ACTIONS(6608), + [anon_sym_LT_EQ_GT] = ACTIONS(6610), + [anon_sym_or] = ACTIONS(6608), + [anon_sym_and] = ACTIONS(6608), + [anon_sym_bitor] = ACTIONS(6608), + [anon_sym_xor] = ACTIONS(6608), + [anon_sym_bitand] = ACTIONS(6608), + [anon_sym_not_eq] = ACTIONS(6608), + [anon_sym_DASH_DASH] = ACTIONS(6610), + [anon_sym_PLUS_PLUS] = ACTIONS(6610), + [anon_sym_DOT] = ACTIONS(6608), + [anon_sym_DOT_STAR] = ACTIONS(6610), + [anon_sym_DASH_GT] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6608), + [anon_sym_decltype] = ACTIONS(6608), + [anon_sym_template] = ACTIONS(6608), + [anon_sym_operator] = ACTIONS(6608), + [anon_sym_DASH_GT_STAR] = ACTIONS(6610), + [anon_sym_LBRACK_COLON] = ACTIONS(6610), + }, + [STATE(2014)] = { + [sym_identifier] = ACTIONS(6620), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6622), + [anon_sym_COMMA] = ACTIONS(6622), + [anon_sym_RPAREN] = ACTIONS(6622), + [anon_sym_LPAREN2] = ACTIONS(6622), + [anon_sym_TILDE] = ACTIONS(6622), + [anon_sym_DASH] = ACTIONS(6620), + [anon_sym_PLUS] = ACTIONS(6620), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_PERCENT] = ACTIONS(6620), + [anon_sym_PIPE_PIPE] = ACTIONS(6622), + [anon_sym_AMP_AMP] = ACTIONS(6622), + [anon_sym_PIPE] = ACTIONS(6620), + [anon_sym_CARET] = ACTIONS(6620), + [anon_sym_AMP] = ACTIONS(6620), + [anon_sym_EQ_EQ] = ACTIONS(6622), + [anon_sym_BANG_EQ] = ACTIONS(6622), + [anon_sym_GT] = ACTIONS(6620), + [anon_sym_GT_EQ] = ACTIONS(6622), + [anon_sym_LT_EQ] = ACTIONS(6620), + [anon_sym_LT] = ACTIONS(6620), + [anon_sym_LT_LT] = ACTIONS(6620), + [anon_sym_GT_GT] = ACTIONS(6620), + [anon_sym___extension__] = ACTIONS(6620), + [anon_sym_virtual] = ACTIONS(6620), + [anon_sym_extern] = ACTIONS(6620), + [anon_sym___attribute__] = ACTIONS(6620), + [anon_sym___attribute] = ACTIONS(6620), + [anon_sym_COLON_COLON] = ACTIONS(6622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6622), + [anon_sym___declspec] = ACTIONS(6620), + [anon_sym___based] = ACTIONS(6620), + [anon_sym_LBRACE] = ACTIONS(6622), + [anon_sym_LBRACK] = ACTIONS(6620), + [anon_sym_static] = ACTIONS(6620), + [anon_sym_EQ] = ACTIONS(6620), + [anon_sym_register] = ACTIONS(6620), + [anon_sym_inline] = ACTIONS(6620), + [anon_sym___inline] = ACTIONS(6620), + [anon_sym___inline__] = ACTIONS(6620), + [anon_sym___forceinline] = ACTIONS(6620), + [anon_sym_thread_local] = ACTIONS(6620), + [anon_sym___thread] = ACTIONS(6620), + [anon_sym_const] = ACTIONS(6620), + [anon_sym_constexpr] = ACTIONS(6620), + [anon_sym_volatile] = ACTIONS(6620), + [anon_sym_restrict] = ACTIONS(6620), + [anon_sym___restrict__] = ACTIONS(6620), + [anon_sym__Atomic] = ACTIONS(6620), + [anon_sym__Noreturn] = ACTIONS(6620), + [anon_sym_noreturn] = ACTIONS(6620), + [anon_sym__Nonnull] = ACTIONS(6620), + [anon_sym_mutable] = ACTIONS(6620), + [anon_sym_constinit] = ACTIONS(6620), + [anon_sym_consteval] = ACTIONS(6620), + [anon_sym_alignas] = ACTIONS(6620), + [anon_sym__Alignas] = ACTIONS(6620), + [anon_sym_QMARK] = ACTIONS(6622), + [anon_sym_STAR_EQ] = ACTIONS(6622), + [anon_sym_SLASH_EQ] = ACTIONS(6622), + [anon_sym_PERCENT_EQ] = ACTIONS(6622), + [anon_sym_PLUS_EQ] = ACTIONS(6622), + [anon_sym_DASH_EQ] = ACTIONS(6622), + [anon_sym_LT_LT_EQ] = ACTIONS(6622), + [anon_sym_GT_GT_EQ] = ACTIONS(6622), + [anon_sym_AMP_EQ] = ACTIONS(6622), + [anon_sym_CARET_EQ] = ACTIONS(6622), + [anon_sym_PIPE_EQ] = ACTIONS(6622), + [anon_sym_and_eq] = ACTIONS(6620), + [anon_sym_or_eq] = ACTIONS(6620), + [anon_sym_xor_eq] = ACTIONS(6620), + [anon_sym_LT_EQ_GT] = ACTIONS(6622), + [anon_sym_or] = ACTIONS(6620), + [anon_sym_and] = ACTIONS(6620), + [anon_sym_bitor] = ACTIONS(6620), + [anon_sym_xor] = ACTIONS(6620), + [anon_sym_bitand] = ACTIONS(6620), + [anon_sym_not_eq] = ACTIONS(6620), + [anon_sym_DASH_DASH] = ACTIONS(6622), + [anon_sym_PLUS_PLUS] = ACTIONS(6622), + [anon_sym_DOT] = ACTIONS(6620), + [anon_sym_DOT_STAR] = ACTIONS(6622), + [anon_sym_DASH_GT] = ACTIONS(6620), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6620), + [anon_sym_decltype] = ACTIONS(6620), + [anon_sym_template] = ACTIONS(6620), + [anon_sym_operator] = ACTIONS(6620), + [anon_sym_DASH_GT_STAR] = ACTIONS(6622), + [anon_sym_LBRACK_COLON] = ACTIONS(6622), + }, + [STATE(2015)] = { + [sym_identifier] = ACTIONS(6632), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6634), + [anon_sym_COMMA] = ACTIONS(6634), + [anon_sym_RPAREN] = ACTIONS(6634), + [anon_sym_LPAREN2] = ACTIONS(6634), + [anon_sym_TILDE] = ACTIONS(6634), + [anon_sym_DASH] = ACTIONS(6632), + [anon_sym_PLUS] = ACTIONS(6632), + [anon_sym_STAR] = ACTIONS(6634), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_PERCENT] = ACTIONS(6634), + [anon_sym_PIPE_PIPE] = ACTIONS(6634), + [anon_sym_AMP_AMP] = ACTIONS(6634), + [anon_sym_PIPE] = ACTIONS(6632), + [anon_sym_CARET] = ACTIONS(6634), + [anon_sym_AMP] = ACTIONS(6632), + [anon_sym_EQ_EQ] = ACTIONS(6634), + [anon_sym_BANG_EQ] = ACTIONS(6634), + [anon_sym_GT] = ACTIONS(6632), + [anon_sym_GT_EQ] = ACTIONS(6634), + [anon_sym_LT_EQ] = ACTIONS(6632), + [anon_sym_LT] = ACTIONS(6632), + [anon_sym_LT_LT] = ACTIONS(6634), + [anon_sym_GT_GT] = ACTIONS(6634), + [anon_sym_SEMI] = ACTIONS(6634), + [anon_sym___extension__] = ACTIONS(6632), + [anon_sym_virtual] = ACTIONS(6632), + [anon_sym_extern] = ACTIONS(6632), + [anon_sym___attribute__] = ACTIONS(6632), + [anon_sym___attribute] = ACTIONS(6632), + [anon_sym_COLON] = ACTIONS(6632), + [anon_sym_COLON_COLON] = ACTIONS(6634), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6634), + [anon_sym___declspec] = ACTIONS(6632), + [anon_sym___based] = ACTIONS(6632), + [anon_sym___cdecl] = ACTIONS(6632), + [anon_sym___clrcall] = ACTIONS(6632), + [anon_sym___stdcall] = ACTIONS(6632), + [anon_sym___fastcall] = ACTIONS(6632), + [anon_sym___thiscall] = ACTIONS(6632), + [anon_sym___vectorcall] = ACTIONS(6632), + [anon_sym_LBRACE] = ACTIONS(6634), + [anon_sym_RBRACE] = ACTIONS(6634), + [anon_sym_LBRACK] = ACTIONS(6632), + [anon_sym_static] = ACTIONS(6632), + [anon_sym_RBRACK] = ACTIONS(6634), + [anon_sym_EQ] = ACTIONS(6632), + [anon_sym_register] = ACTIONS(6632), + [anon_sym_inline] = ACTIONS(6632), + [anon_sym___inline] = ACTIONS(6632), + [anon_sym___inline__] = ACTIONS(6632), + [anon_sym___forceinline] = ACTIONS(6632), + [anon_sym_thread_local] = ACTIONS(6632), + [anon_sym___thread] = ACTIONS(6632), + [anon_sym_const] = ACTIONS(6632), + [anon_sym_constexpr] = ACTIONS(6632), + [anon_sym_volatile] = ACTIONS(6632), + [anon_sym_restrict] = ACTIONS(6632), + [anon_sym___restrict__] = ACTIONS(6632), + [anon_sym__Atomic] = ACTIONS(6632), + [anon_sym__Noreturn] = ACTIONS(6632), + [anon_sym_noreturn] = ACTIONS(6632), + [anon_sym__Nonnull] = ACTIONS(6632), + [anon_sym_mutable] = ACTIONS(6632), + [anon_sym_constinit] = ACTIONS(6632), + [anon_sym_consteval] = ACTIONS(6632), + [anon_sym_alignas] = ACTIONS(6632), + [anon_sym__Alignas] = ACTIONS(6632), + [anon_sym_QMARK] = ACTIONS(6634), + [anon_sym_LT_EQ_GT] = ACTIONS(6634), + [anon_sym_or] = ACTIONS(6632), + [anon_sym_and] = ACTIONS(6632), + [anon_sym_bitor] = ACTIONS(6632), + [anon_sym_xor] = ACTIONS(6632), + [anon_sym_bitand] = ACTIONS(6632), + [anon_sym_not_eq] = ACTIONS(6632), + [anon_sym_DASH_DASH] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_DOT] = ACTIONS(6632), + [anon_sym_DOT_STAR] = ACTIONS(6634), + [anon_sym_DASH_GT] = ACTIONS(6634), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6632), + [anon_sym_decltype] = ACTIONS(6632), + [anon_sym_final] = ACTIONS(6632), + [anon_sym_override] = ACTIONS(6632), + [anon_sym_template] = ACTIONS(6632), + [anon_sym_operator] = ACTIONS(6632), + [anon_sym_noexcept] = ACTIONS(6632), + [anon_sym_throw] = ACTIONS(6632), + [anon_sym_LBRACK_COLON] = ACTIONS(6634), + }, + [STATE(2016)] = { + [sym_type_qualifier] = STATE(2017), + [sym_alignas_qualifier] = STATE(2059), + [aux_sym__type_definition_type_repeat1] = STATE(2017), + [sym_identifier] = ACTIONS(6899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6901), + [anon_sym_COMMA] = ACTIONS(6901), + [anon_sym_RPAREN] = ACTIONS(6901), + [aux_sym_preproc_if_token2] = ACTIONS(6901), + [aux_sym_preproc_else_token1] = ACTIONS(6901), + [aux_sym_preproc_elif_token1] = ACTIONS(6899), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6901), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6901), + [anon_sym_LPAREN2] = ACTIONS(6901), + [anon_sym_DASH] = ACTIONS(6899), + [anon_sym_PLUS] = ACTIONS(6899), + [anon_sym_STAR] = ACTIONS(6899), + [anon_sym_SLASH] = ACTIONS(6899), + [anon_sym_PERCENT] = ACTIONS(6899), + [anon_sym_PIPE_PIPE] = ACTIONS(6901), + [anon_sym_AMP_AMP] = ACTIONS(6901), + [anon_sym_PIPE] = ACTIONS(6899), + [anon_sym_CARET] = ACTIONS(6899), + [anon_sym_AMP] = ACTIONS(6899), + [anon_sym_EQ_EQ] = ACTIONS(6901), + [anon_sym_BANG_EQ] = ACTIONS(6901), + [anon_sym_GT] = ACTIONS(6899), + [anon_sym_GT_EQ] = ACTIONS(6901), + [anon_sym_LT_EQ] = ACTIONS(6899), + [anon_sym_LT] = ACTIONS(6899), + [anon_sym_LT_LT] = ACTIONS(6899), + [anon_sym_GT_GT] = ACTIONS(6899), + [anon_sym_SEMI] = ACTIONS(6901), + [anon_sym___extension__] = ACTIONS(6489), + [anon_sym___attribute__] = ACTIONS(6899), + [anon_sym___attribute] = ACTIONS(6899), + [anon_sym_COLON] = ACTIONS(6899), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6901), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6901), + [anon_sym_RBRACE] = ACTIONS(6901), + [anon_sym_LBRACK] = ACTIONS(6899), + [anon_sym_EQ] = ACTIONS(6899), + [anon_sym_const] = ACTIONS(6489), + [anon_sym_constexpr] = ACTIONS(6489), + [anon_sym_volatile] = ACTIONS(6489), + [anon_sym_restrict] = ACTIONS(6489), + [anon_sym___restrict__] = ACTIONS(6489), + [anon_sym__Atomic] = ACTIONS(6489), + [anon_sym__Noreturn] = ACTIONS(6489), + [anon_sym_noreturn] = ACTIONS(6489), + [anon_sym__Nonnull] = ACTIONS(6489), + [anon_sym_mutable] = ACTIONS(6489), + [anon_sym_constinit] = ACTIONS(6489), + [anon_sym_consteval] = ACTIONS(6489), + [anon_sym_alignas] = ACTIONS(6495), + [anon_sym__Alignas] = ACTIONS(6495), + [anon_sym_QMARK] = ACTIONS(6901), + [anon_sym_STAR_EQ] = ACTIONS(6901), + [anon_sym_SLASH_EQ] = ACTIONS(6901), + [anon_sym_PERCENT_EQ] = ACTIONS(6901), + [anon_sym_PLUS_EQ] = ACTIONS(6901), + [anon_sym_DASH_EQ] = ACTIONS(6901), + [anon_sym_LT_LT_EQ] = ACTIONS(6901), + [anon_sym_GT_GT_EQ] = ACTIONS(6901), + [anon_sym_AMP_EQ] = ACTIONS(6901), + [anon_sym_CARET_EQ] = ACTIONS(6901), + [anon_sym_PIPE_EQ] = ACTIONS(6901), + [anon_sym_and_eq] = ACTIONS(6899), + [anon_sym_or_eq] = ACTIONS(6899), + [anon_sym_xor_eq] = ACTIONS(6899), + [anon_sym_LT_EQ_GT] = ACTIONS(6901), + [anon_sym_or] = ACTIONS(6899), + [anon_sym_and] = ACTIONS(6899), + [anon_sym_bitor] = ACTIONS(6899), + [anon_sym_xor] = ACTIONS(6899), + [anon_sym_bitand] = ACTIONS(6899), + [anon_sym_not_eq] = ACTIONS(6899), + [anon_sym_DASH_DASH] = ACTIONS(6901), + [anon_sym_PLUS_PLUS] = ACTIONS(6901), + [anon_sym_asm] = ACTIONS(6899), + [anon_sym___asm__] = ACTIONS(6899), + [anon_sym___asm] = ACTIONS(6899), + [anon_sym_DOT] = ACTIONS(6899), + [anon_sym_DOT_STAR] = ACTIONS(6901), + [anon_sym_DASH_GT] = ACTIONS(6901), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6899), + [anon_sym_override] = ACTIONS(6899), + [anon_sym_noexcept] = ACTIONS(6899), + [anon_sym_throw] = ACTIONS(6899), + [anon_sym_requires] = ACTIONS(6899), + [anon_sym_COLON_RBRACK] = ACTIONS(6901), + }, + [STATE(2017)] = { + [sym_type_qualifier] = STATE(2017), + [sym_alignas_qualifier] = STATE(2059), + [aux_sym__type_definition_type_repeat1] = STATE(2017), + [sym_identifier] = ACTIONS(6889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), + [anon_sym_COMMA] = ACTIONS(6891), + [anon_sym_RPAREN] = ACTIONS(6891), + [aux_sym_preproc_if_token2] = ACTIONS(6891), + [aux_sym_preproc_else_token1] = ACTIONS(6891), + [aux_sym_preproc_elif_token1] = ACTIONS(6889), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6891), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6891), + [anon_sym_LPAREN2] = ACTIONS(6891), + [anon_sym_DASH] = ACTIONS(6889), + [anon_sym_PLUS] = ACTIONS(6889), + [anon_sym_STAR] = ACTIONS(6889), + [anon_sym_SLASH] = ACTIONS(6889), + [anon_sym_PERCENT] = ACTIONS(6889), + [anon_sym_PIPE_PIPE] = ACTIONS(6891), + [anon_sym_AMP_AMP] = ACTIONS(6891), + [anon_sym_PIPE] = ACTIONS(6889), + [anon_sym_CARET] = ACTIONS(6889), + [anon_sym_AMP] = ACTIONS(6889), + [anon_sym_EQ_EQ] = ACTIONS(6891), + [anon_sym_BANG_EQ] = ACTIONS(6891), + [anon_sym_GT] = ACTIONS(6889), + [anon_sym_GT_EQ] = ACTIONS(6891), + [anon_sym_LT_EQ] = ACTIONS(6889), + [anon_sym_LT] = ACTIONS(6889), + [anon_sym_LT_LT] = ACTIONS(6889), + [anon_sym_GT_GT] = ACTIONS(6889), + [anon_sym_SEMI] = ACTIONS(6891), + [anon_sym___extension__] = ACTIONS(6903), + [anon_sym___attribute__] = ACTIONS(6889), + [anon_sym___attribute] = ACTIONS(6889), + [anon_sym_COLON] = ACTIONS(6889), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6891), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6891), + [anon_sym_RBRACE] = ACTIONS(6891), + [anon_sym_LBRACK] = ACTIONS(6889), + [anon_sym_EQ] = ACTIONS(6889), + [anon_sym_const] = ACTIONS(6903), + [anon_sym_constexpr] = ACTIONS(6903), + [anon_sym_volatile] = ACTIONS(6903), + [anon_sym_restrict] = ACTIONS(6903), + [anon_sym___restrict__] = ACTIONS(6903), + [anon_sym__Atomic] = ACTIONS(6903), + [anon_sym__Noreturn] = ACTIONS(6903), + [anon_sym_noreturn] = ACTIONS(6903), + [anon_sym__Nonnull] = ACTIONS(6903), + [anon_sym_mutable] = ACTIONS(6903), + [anon_sym_constinit] = ACTIONS(6903), + [anon_sym_consteval] = ACTIONS(6903), + [anon_sym_alignas] = ACTIONS(6906), + [anon_sym__Alignas] = ACTIONS(6906), + [anon_sym_QMARK] = ACTIONS(6891), + [anon_sym_STAR_EQ] = ACTIONS(6891), + [anon_sym_SLASH_EQ] = ACTIONS(6891), + [anon_sym_PERCENT_EQ] = ACTIONS(6891), + [anon_sym_PLUS_EQ] = ACTIONS(6891), + [anon_sym_DASH_EQ] = ACTIONS(6891), + [anon_sym_LT_LT_EQ] = ACTIONS(6891), + [anon_sym_GT_GT_EQ] = ACTIONS(6891), + [anon_sym_AMP_EQ] = ACTIONS(6891), + [anon_sym_CARET_EQ] = ACTIONS(6891), + [anon_sym_PIPE_EQ] = ACTIONS(6891), + [anon_sym_and_eq] = ACTIONS(6889), + [anon_sym_or_eq] = ACTIONS(6889), + [anon_sym_xor_eq] = ACTIONS(6889), + [anon_sym_LT_EQ_GT] = ACTIONS(6891), + [anon_sym_or] = ACTIONS(6889), + [anon_sym_and] = ACTIONS(6889), + [anon_sym_bitor] = ACTIONS(6889), + [anon_sym_xor] = ACTIONS(6889), + [anon_sym_bitand] = ACTIONS(6889), + [anon_sym_not_eq] = ACTIONS(6889), + [anon_sym_DASH_DASH] = ACTIONS(6891), + [anon_sym_PLUS_PLUS] = ACTIONS(6891), + [anon_sym_asm] = ACTIONS(6889), + [anon_sym___asm__] = ACTIONS(6889), + [anon_sym___asm] = ACTIONS(6889), + [anon_sym_DOT] = ACTIONS(6889), + [anon_sym_DOT_STAR] = ACTIONS(6891), + [anon_sym_DASH_GT] = ACTIONS(6891), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6889), + [anon_sym_override] = ACTIONS(6889), + [anon_sym_noexcept] = ACTIONS(6889), + [anon_sym_throw] = ACTIONS(6889), + [anon_sym_requires] = ACTIONS(6889), + [anon_sym_COLON_RBRACK] = ACTIONS(6891), + }, + [STATE(2018)] = { + [sym_string_literal] = STATE(5033), + [sym_decltype_auto] = STATE(3203), + [sym_template_argument_list] = STATE(3449), + [sym_raw_string_literal] = STATE(5033), + [aux_sym_sized_type_specifier_repeat1] = STATE(3552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), + [anon_sym_COMMA] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(5647), + [anon_sym_PLUS] = ACTIONS(5647), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5647), + [anon_sym_PERCENT] = ACTIONS(5647), + [anon_sym_PIPE_PIPE] = ACTIONS(5640), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5647), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5640), + [anon_sym_BANG_EQ] = ACTIONS(5640), + [anon_sym_GT] = ACTIONS(5647), + [anon_sym_GT_EQ] = ACTIONS(5640), + [anon_sym_LT_EQ] = ACTIONS(5647), + [anon_sym_LT] = ACTIONS(6863), + [anon_sym_LT_LT] = ACTIONS(5647), + [anon_sym_GT_GT] = ACTIONS(5647), + [anon_sym_SEMI] = ACTIONS(5640), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym___attribute__] = ACTIONS(5640), + [anon_sym___attribute] = ACTIONS(5647), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(6867), + [anon_sym_unsigned] = ACTIONS(6867), + [anon_sym_long] = ACTIONS(6867), + [anon_sym_short] = ACTIONS(6867), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_EQ] = ACTIONS(6909), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5643), + [anon_sym_volatile] = ACTIONS(5643), + [anon_sym_restrict] = ACTIONS(5643), + [anon_sym___restrict__] = ACTIONS(5643), + [anon_sym__Atomic] = ACTIONS(5643), + [anon_sym__Noreturn] = ACTIONS(5643), + [anon_sym_noreturn] = ACTIONS(5643), + [anon_sym__Nonnull] = ACTIONS(5643), + [anon_sym_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [anon_sym_alignas] = ACTIONS(5643), + [anon_sym__Alignas] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5640), + [anon_sym_STAR_EQ] = ACTIONS(6911), + [anon_sym_SLASH_EQ] = ACTIONS(6911), + [anon_sym_PERCENT_EQ] = ACTIONS(6911), + [anon_sym_PLUS_EQ] = ACTIONS(6911), + [anon_sym_DASH_EQ] = ACTIONS(6911), + [anon_sym_LT_LT_EQ] = ACTIONS(6911), + [anon_sym_GT_GT_EQ] = ACTIONS(6911), + [anon_sym_AMP_EQ] = ACTIONS(6911), + [anon_sym_CARET_EQ] = ACTIONS(6911), + [anon_sym_PIPE_EQ] = ACTIONS(6911), + [anon_sym_and_eq] = ACTIONS(6911), + [anon_sym_or_eq] = ACTIONS(6911), + [anon_sym_xor_eq] = ACTIONS(6911), + [anon_sym_LT_EQ_GT] = ACTIONS(5640), + [anon_sym_or] = ACTIONS(5647), + [anon_sym_and] = ACTIONS(5647), + [anon_sym_bitor] = ACTIONS(5640), + [anon_sym_xor] = ACTIONS(5647), + [anon_sym_bitand] = ACTIONS(5640), + [anon_sym_not_eq] = ACTIONS(5640), + [anon_sym_DASH_DASH] = ACTIONS(5640), + [anon_sym_PLUS_PLUS] = ACTIONS(5640), + [anon_sym_DOT] = ACTIONS(5647), + [anon_sym_DOT_STAR] = ACTIONS(5640), + [anon_sym_DASH_GT] = ACTIONS(5640), + [anon_sym_L_DQUOTE] = ACTIONS(6913), + [anon_sym_u_DQUOTE] = ACTIONS(6913), + [anon_sym_U_DQUOTE] = ACTIONS(6913), + [anon_sym_u8_DQUOTE] = ACTIONS(6913), + [anon_sym_DQUOTE] = ACTIONS(6913), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6869), + [anon_sym_decltype] = ACTIONS(6871), + [anon_sym_R_DQUOTE] = ACTIONS(6915), + [anon_sym_LR_DQUOTE] = ACTIONS(6915), + [anon_sym_uR_DQUOTE] = ACTIONS(6915), + [anon_sym_UR_DQUOTE] = ACTIONS(6915), + [anon_sym_u8R_DQUOTE] = ACTIONS(6915), + }, + [STATE(2019)] = { + [sym_identifier] = ACTIONS(6608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6610), + [anon_sym_COMMA] = ACTIONS(6610), + [anon_sym_RPAREN] = ACTIONS(6610), + [anon_sym_LPAREN2] = ACTIONS(6610), + [anon_sym_TILDE] = ACTIONS(6610), + [anon_sym_DASH] = ACTIONS(6608), + [anon_sym_PLUS] = ACTIONS(6608), + [anon_sym_STAR] = ACTIONS(6610), + [anon_sym_SLASH] = ACTIONS(6608), + [anon_sym_PERCENT] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6610), + [anon_sym_AMP_AMP] = ACTIONS(6610), + [anon_sym_PIPE] = ACTIONS(6608), + [anon_sym_CARET] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(6608), + [anon_sym_EQ_EQ] = ACTIONS(6610), + [anon_sym_BANG_EQ] = ACTIONS(6610), + [anon_sym_GT] = ACTIONS(6608), + [anon_sym_GT_EQ] = ACTIONS(6610), + [anon_sym_LT_EQ] = ACTIONS(6608), + [anon_sym_LT] = ACTIONS(6608), + [anon_sym_LT_LT] = ACTIONS(6610), + [anon_sym_GT_GT] = ACTIONS(6610), + [anon_sym_SEMI] = ACTIONS(6610), + [anon_sym___extension__] = ACTIONS(6608), + [anon_sym_virtual] = ACTIONS(6608), + [anon_sym_extern] = ACTIONS(6608), + [anon_sym___attribute__] = ACTIONS(6608), + [anon_sym___attribute] = ACTIONS(6608), + [anon_sym_COLON] = ACTIONS(6608), + [anon_sym_COLON_COLON] = ACTIONS(6610), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6610), + [anon_sym___declspec] = ACTIONS(6608), + [anon_sym___based] = ACTIONS(6608), + [anon_sym___cdecl] = ACTIONS(6608), + [anon_sym___clrcall] = ACTIONS(6608), + [anon_sym___stdcall] = ACTIONS(6608), + [anon_sym___fastcall] = ACTIONS(6608), + [anon_sym___thiscall] = ACTIONS(6608), + [anon_sym___vectorcall] = ACTIONS(6608), + [anon_sym_LBRACE] = ACTIONS(6610), + [anon_sym_RBRACE] = ACTIONS(6610), + [anon_sym_LBRACK] = ACTIONS(6608), + [anon_sym_static] = ACTIONS(6608), + [anon_sym_RBRACK] = ACTIONS(6610), + [anon_sym_EQ] = ACTIONS(6608), + [anon_sym_register] = ACTIONS(6608), + [anon_sym_inline] = ACTIONS(6608), + [anon_sym___inline] = ACTIONS(6608), + [anon_sym___inline__] = ACTIONS(6608), + [anon_sym___forceinline] = ACTIONS(6608), + [anon_sym_thread_local] = ACTIONS(6608), + [anon_sym___thread] = ACTIONS(6608), + [anon_sym_const] = ACTIONS(6608), + [anon_sym_constexpr] = ACTIONS(6608), + [anon_sym_volatile] = ACTIONS(6608), + [anon_sym_restrict] = ACTIONS(6608), + [anon_sym___restrict__] = ACTIONS(6608), + [anon_sym__Atomic] = ACTIONS(6608), + [anon_sym__Noreturn] = ACTIONS(6608), + [anon_sym_noreturn] = ACTIONS(6608), + [anon_sym__Nonnull] = ACTIONS(6608), + [anon_sym_mutable] = ACTIONS(6608), + [anon_sym_constinit] = ACTIONS(6608), + [anon_sym_consteval] = ACTIONS(6608), + [anon_sym_alignas] = ACTIONS(6608), + [anon_sym__Alignas] = ACTIONS(6608), + [anon_sym_QMARK] = ACTIONS(6610), + [anon_sym_LT_EQ_GT] = ACTIONS(6610), + [anon_sym_or] = ACTIONS(6608), + [anon_sym_and] = ACTIONS(6608), + [anon_sym_bitor] = ACTIONS(6608), + [anon_sym_xor] = ACTIONS(6608), + [anon_sym_bitand] = ACTIONS(6608), + [anon_sym_not_eq] = ACTIONS(6608), + [anon_sym_DASH_DASH] = ACTIONS(6610), + [anon_sym_PLUS_PLUS] = ACTIONS(6610), + [anon_sym_DOT] = ACTIONS(6608), + [anon_sym_DOT_STAR] = ACTIONS(6610), + [anon_sym_DASH_GT] = ACTIONS(6610), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6608), + [anon_sym_decltype] = ACTIONS(6608), + [anon_sym_final] = ACTIONS(6608), + [anon_sym_override] = ACTIONS(6608), + [anon_sym_template] = ACTIONS(6608), + [anon_sym_operator] = ACTIONS(6608), + [anon_sym_noexcept] = ACTIONS(6608), + [anon_sym_throw] = ACTIONS(6608), + [anon_sym_LBRACK_COLON] = ACTIONS(6610), + }, + [STATE(2020)] = { + [sym_identifier] = ACTIONS(6616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6618), + [anon_sym_COMMA] = ACTIONS(6618), + [anon_sym_RPAREN] = ACTIONS(6618), + [anon_sym_LPAREN2] = ACTIONS(6618), + [anon_sym_TILDE] = ACTIONS(6618), + [anon_sym_DASH] = ACTIONS(6616), + [anon_sym_PLUS] = ACTIONS(6616), + [anon_sym_STAR] = ACTIONS(6618), + [anon_sym_SLASH] = ACTIONS(6616), + [anon_sym_PERCENT] = ACTIONS(6618), + [anon_sym_PIPE_PIPE] = ACTIONS(6618), + [anon_sym_AMP_AMP] = ACTIONS(6618), + [anon_sym_PIPE] = ACTIONS(6616), + [anon_sym_CARET] = ACTIONS(6618), + [anon_sym_AMP] = ACTIONS(6616), + [anon_sym_EQ_EQ] = ACTIONS(6618), + [anon_sym_BANG_EQ] = ACTIONS(6618), + [anon_sym_GT] = ACTIONS(6616), + [anon_sym_GT_EQ] = ACTIONS(6618), + [anon_sym_LT_EQ] = ACTIONS(6616), + [anon_sym_LT] = ACTIONS(6616), + [anon_sym_LT_LT] = ACTIONS(6618), + [anon_sym_GT_GT] = ACTIONS(6618), + [anon_sym_SEMI] = ACTIONS(6618), + [anon_sym___extension__] = ACTIONS(6616), + [anon_sym_virtual] = ACTIONS(6616), + [anon_sym_extern] = ACTIONS(6616), + [anon_sym___attribute__] = ACTIONS(6616), + [anon_sym___attribute] = ACTIONS(6616), + [anon_sym_COLON] = ACTIONS(6616), + [anon_sym_COLON_COLON] = ACTIONS(6618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6618), + [anon_sym___declspec] = ACTIONS(6616), + [anon_sym___based] = ACTIONS(6616), + [anon_sym___cdecl] = ACTIONS(6616), + [anon_sym___clrcall] = ACTIONS(6616), + [anon_sym___stdcall] = ACTIONS(6616), + [anon_sym___fastcall] = ACTIONS(6616), + [anon_sym___thiscall] = ACTIONS(6616), + [anon_sym___vectorcall] = ACTIONS(6616), + [anon_sym_LBRACE] = ACTIONS(6618), + [anon_sym_RBRACE] = ACTIONS(6618), + [anon_sym_LBRACK] = ACTIONS(6616), + [anon_sym_static] = ACTIONS(6616), + [anon_sym_RBRACK] = ACTIONS(6618), + [anon_sym_EQ] = ACTIONS(6616), + [anon_sym_register] = ACTIONS(6616), + [anon_sym_inline] = ACTIONS(6616), + [anon_sym___inline] = ACTIONS(6616), + [anon_sym___inline__] = ACTIONS(6616), + [anon_sym___forceinline] = ACTIONS(6616), + [anon_sym_thread_local] = ACTIONS(6616), + [anon_sym___thread] = ACTIONS(6616), + [anon_sym_const] = ACTIONS(6616), + [anon_sym_constexpr] = ACTIONS(6616), + [anon_sym_volatile] = ACTIONS(6616), + [anon_sym_restrict] = ACTIONS(6616), + [anon_sym___restrict__] = ACTIONS(6616), + [anon_sym__Atomic] = ACTIONS(6616), + [anon_sym__Noreturn] = ACTIONS(6616), + [anon_sym_noreturn] = ACTIONS(6616), + [anon_sym__Nonnull] = ACTIONS(6616), + [anon_sym_mutable] = ACTIONS(6616), + [anon_sym_constinit] = ACTIONS(6616), + [anon_sym_consteval] = ACTIONS(6616), + [anon_sym_alignas] = ACTIONS(6616), + [anon_sym__Alignas] = ACTIONS(6616), + [anon_sym_QMARK] = ACTIONS(6618), + [anon_sym_LT_EQ_GT] = ACTIONS(6618), + [anon_sym_or] = ACTIONS(6616), + [anon_sym_and] = ACTIONS(6616), + [anon_sym_bitor] = ACTIONS(6616), + [anon_sym_xor] = ACTIONS(6616), + [anon_sym_bitand] = ACTIONS(6616), + [anon_sym_not_eq] = ACTIONS(6616), + [anon_sym_DASH_DASH] = ACTIONS(6618), + [anon_sym_PLUS_PLUS] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(6616), + [anon_sym_DOT_STAR] = ACTIONS(6618), + [anon_sym_DASH_GT] = ACTIONS(6618), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6616), + [anon_sym_decltype] = ACTIONS(6616), + [anon_sym_final] = ACTIONS(6616), + [anon_sym_override] = ACTIONS(6616), + [anon_sym_template] = ACTIONS(6616), + [anon_sym_operator] = ACTIONS(6616), + [anon_sym_noexcept] = ACTIONS(6616), + [anon_sym_throw] = ACTIONS(6616), + [anon_sym_LBRACK_COLON] = ACTIONS(6618), + }, + [STATE(2021)] = { + [sym_identifier] = ACTIONS(6612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6614), + [anon_sym_COMMA] = ACTIONS(6614), + [anon_sym_RPAREN] = ACTIONS(6614), + [anon_sym_LPAREN2] = ACTIONS(6614), + [anon_sym_TILDE] = ACTIONS(6614), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6614), + [anon_sym_SLASH] = ACTIONS(6612), + [anon_sym_PERCENT] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6614), + [anon_sym_AMP_AMP] = ACTIONS(6614), + [anon_sym_PIPE] = ACTIONS(6612), + [anon_sym_CARET] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(6612), + [anon_sym_EQ_EQ] = ACTIONS(6614), + [anon_sym_BANG_EQ] = ACTIONS(6614), + [anon_sym_GT] = ACTIONS(6612), + [anon_sym_GT_EQ] = ACTIONS(6614), + [anon_sym_LT_EQ] = ACTIONS(6612), + [anon_sym_LT] = ACTIONS(6612), + [anon_sym_LT_LT] = ACTIONS(6614), + [anon_sym_GT_GT] = ACTIONS(6614), + [anon_sym_SEMI] = ACTIONS(6614), + [anon_sym___extension__] = ACTIONS(6612), + [anon_sym_virtual] = ACTIONS(6612), + [anon_sym_extern] = ACTIONS(6612), + [anon_sym___attribute__] = ACTIONS(6612), + [anon_sym___attribute] = ACTIONS(6612), + [anon_sym_COLON] = ACTIONS(6612), + [anon_sym_COLON_COLON] = ACTIONS(6614), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6614), + [anon_sym___declspec] = ACTIONS(6612), + [anon_sym___based] = ACTIONS(6612), + [anon_sym___cdecl] = ACTIONS(6612), + [anon_sym___clrcall] = ACTIONS(6612), + [anon_sym___stdcall] = ACTIONS(6612), + [anon_sym___fastcall] = ACTIONS(6612), + [anon_sym___thiscall] = ACTIONS(6612), + [anon_sym___vectorcall] = ACTIONS(6612), + [anon_sym_LBRACE] = ACTIONS(6614), + [anon_sym_RBRACE] = ACTIONS(6614), + [anon_sym_LBRACK] = ACTIONS(6612), + [anon_sym_static] = ACTIONS(6612), + [anon_sym_RBRACK] = ACTIONS(6614), + [anon_sym_EQ] = ACTIONS(6612), + [anon_sym_register] = ACTIONS(6612), + [anon_sym_inline] = ACTIONS(6612), + [anon_sym___inline] = ACTIONS(6612), + [anon_sym___inline__] = ACTIONS(6612), + [anon_sym___forceinline] = ACTIONS(6612), + [anon_sym_thread_local] = ACTIONS(6612), + [anon_sym___thread] = ACTIONS(6612), + [anon_sym_const] = ACTIONS(6612), + [anon_sym_constexpr] = ACTIONS(6612), + [anon_sym_volatile] = ACTIONS(6612), + [anon_sym_restrict] = ACTIONS(6612), + [anon_sym___restrict__] = ACTIONS(6612), + [anon_sym__Atomic] = ACTIONS(6612), + [anon_sym__Noreturn] = ACTIONS(6612), + [anon_sym_noreturn] = ACTIONS(6612), + [anon_sym__Nonnull] = ACTIONS(6612), + [anon_sym_mutable] = ACTIONS(6612), + [anon_sym_constinit] = ACTIONS(6612), + [anon_sym_consteval] = ACTIONS(6612), + [anon_sym_alignas] = ACTIONS(6612), + [anon_sym__Alignas] = ACTIONS(6612), + [anon_sym_QMARK] = ACTIONS(6614), + [anon_sym_LT_EQ_GT] = ACTIONS(6614), + [anon_sym_or] = ACTIONS(6612), + [anon_sym_and] = ACTIONS(6612), + [anon_sym_bitor] = ACTIONS(6612), + [anon_sym_xor] = ACTIONS(6612), + [anon_sym_bitand] = ACTIONS(6612), + [anon_sym_not_eq] = ACTIONS(6612), + [anon_sym_DASH_DASH] = ACTIONS(6614), + [anon_sym_PLUS_PLUS] = ACTIONS(6614), + [anon_sym_DOT] = ACTIONS(6612), + [anon_sym_DOT_STAR] = ACTIONS(6614), + [anon_sym_DASH_GT] = ACTIONS(6614), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6612), + [anon_sym_decltype] = ACTIONS(6612), + [anon_sym_final] = ACTIONS(6612), + [anon_sym_override] = ACTIONS(6612), + [anon_sym_template] = ACTIONS(6612), + [anon_sym_operator] = ACTIONS(6612), + [anon_sym_noexcept] = ACTIONS(6612), + [anon_sym_throw] = ACTIONS(6612), + [anon_sym_LBRACK_COLON] = ACTIONS(6614), + }, + [STATE(2022)] = { + [sym_identifier] = ACTIONS(6620), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6622), + [anon_sym_COMMA] = ACTIONS(6622), + [anon_sym_RPAREN] = ACTIONS(6622), + [anon_sym_LPAREN2] = ACTIONS(6622), + [anon_sym_TILDE] = ACTIONS(6622), + [anon_sym_DASH] = ACTIONS(6620), + [anon_sym_PLUS] = ACTIONS(6620), + [anon_sym_STAR] = ACTIONS(6622), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_PERCENT] = ACTIONS(6622), + [anon_sym_PIPE_PIPE] = ACTIONS(6622), + [anon_sym_AMP_AMP] = ACTIONS(6622), + [anon_sym_PIPE] = ACTIONS(6620), + [anon_sym_CARET] = ACTIONS(6622), + [anon_sym_AMP] = ACTIONS(6620), + [anon_sym_EQ_EQ] = ACTIONS(6622), + [anon_sym_BANG_EQ] = ACTIONS(6622), + [anon_sym_GT] = ACTIONS(6620), + [anon_sym_GT_EQ] = ACTIONS(6622), + [anon_sym_LT_EQ] = ACTIONS(6620), + [anon_sym_LT] = ACTIONS(6620), + [anon_sym_LT_LT] = ACTIONS(6622), + [anon_sym_GT_GT] = ACTIONS(6622), + [anon_sym_SEMI] = ACTIONS(6622), + [anon_sym___extension__] = ACTIONS(6620), + [anon_sym_virtual] = ACTIONS(6620), + [anon_sym_extern] = ACTIONS(6620), + [anon_sym___attribute__] = ACTIONS(6620), + [anon_sym___attribute] = ACTIONS(6620), + [anon_sym_COLON] = ACTIONS(6620), + [anon_sym_COLON_COLON] = ACTIONS(6622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6622), + [anon_sym___declspec] = ACTIONS(6620), + [anon_sym___based] = ACTIONS(6620), + [anon_sym___cdecl] = ACTIONS(6620), + [anon_sym___clrcall] = ACTIONS(6620), + [anon_sym___stdcall] = ACTIONS(6620), + [anon_sym___fastcall] = ACTIONS(6620), + [anon_sym___thiscall] = ACTIONS(6620), + [anon_sym___vectorcall] = ACTIONS(6620), + [anon_sym_LBRACE] = ACTIONS(6622), + [anon_sym_RBRACE] = ACTIONS(6622), + [anon_sym_LBRACK] = ACTIONS(6620), + [anon_sym_static] = ACTIONS(6620), + [anon_sym_RBRACK] = ACTIONS(6622), + [anon_sym_EQ] = ACTIONS(6620), + [anon_sym_register] = ACTIONS(6620), + [anon_sym_inline] = ACTIONS(6620), + [anon_sym___inline] = ACTIONS(6620), + [anon_sym___inline__] = ACTIONS(6620), + [anon_sym___forceinline] = ACTIONS(6620), + [anon_sym_thread_local] = ACTIONS(6620), + [anon_sym___thread] = ACTIONS(6620), + [anon_sym_const] = ACTIONS(6620), + [anon_sym_constexpr] = ACTIONS(6620), + [anon_sym_volatile] = ACTIONS(6620), + [anon_sym_restrict] = ACTIONS(6620), + [anon_sym___restrict__] = ACTIONS(6620), + [anon_sym__Atomic] = ACTIONS(6620), + [anon_sym__Noreturn] = ACTIONS(6620), + [anon_sym_noreturn] = ACTIONS(6620), + [anon_sym__Nonnull] = ACTIONS(6620), + [anon_sym_mutable] = ACTIONS(6620), + [anon_sym_constinit] = ACTIONS(6620), + [anon_sym_consteval] = ACTIONS(6620), + [anon_sym_alignas] = ACTIONS(6620), + [anon_sym__Alignas] = ACTIONS(6620), + [anon_sym_QMARK] = ACTIONS(6622), + [anon_sym_LT_EQ_GT] = ACTIONS(6622), + [anon_sym_or] = ACTIONS(6620), + [anon_sym_and] = ACTIONS(6620), + [anon_sym_bitor] = ACTIONS(6620), + [anon_sym_xor] = ACTIONS(6620), + [anon_sym_bitand] = ACTIONS(6620), + [anon_sym_not_eq] = ACTIONS(6620), + [anon_sym_DASH_DASH] = ACTIONS(6622), + [anon_sym_PLUS_PLUS] = ACTIONS(6622), + [anon_sym_DOT] = ACTIONS(6620), + [anon_sym_DOT_STAR] = ACTIONS(6622), + [anon_sym_DASH_GT] = ACTIONS(6622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6620), + [anon_sym_decltype] = ACTIONS(6620), + [anon_sym_final] = ACTIONS(6620), + [anon_sym_override] = ACTIONS(6620), + [anon_sym_template] = ACTIONS(6620), + [anon_sym_operator] = ACTIONS(6620), + [anon_sym_noexcept] = ACTIONS(6620), + [anon_sym_throw] = ACTIONS(6620), + [anon_sym_LBRACK_COLON] = ACTIONS(6622), + }, + [STATE(2023)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2082), + [sym_ms_pointer_modifier] = STATE(2029), + [sym__abstract_declarator] = STATE(4522), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2244), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1946), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2244), + [aux_sym_pointer_declarator_repeat1] = STATE(2029), + [sym_identifier] = ACTIONS(6861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), + [anon_sym_COMMA] = ACTIONS(6859), + [aux_sym_preproc_if_token2] = ACTIONS(6859), + [aux_sym_preproc_else_token1] = ACTIONS(6859), + [aux_sym_preproc_elif_token1] = ACTIONS(6861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6859), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6861), + [anon_sym_STAR] = ACTIONS(6917), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_PIPE_PIPE] = ACTIONS(6859), + [anon_sym_AMP_AMP] = ACTIONS(6919), + [anon_sym_PIPE] = ACTIONS(6861), + [anon_sym_CARET] = ACTIONS(6861), + [anon_sym_AMP] = ACTIONS(6921), + [anon_sym_EQ_EQ] = ACTIONS(6859), + [anon_sym_BANG_EQ] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6861), + [anon_sym_GT_EQ] = ACTIONS(6859), + [anon_sym_LT_EQ] = ACTIONS(6861), + [anon_sym_LT] = ACTIONS(6861), + [anon_sym_LT_LT] = ACTIONS(6861), + [anon_sym_GT_GT] = ACTIONS(6861), + [anon_sym___extension__] = ACTIONS(6833), + [sym_ms_restrict_modifier] = ACTIONS(6835), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6835), + [sym_ms_signed_ptr_modifier] = ACTIONS(6835), + [anon_sym__unaligned] = ACTIONS(6837), + [anon_sym___unaligned] = ACTIONS(6837), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(6861), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(6833), + [anon_sym_volatile] = ACTIONS(6833), + [anon_sym_restrict] = ACTIONS(6833), + [anon_sym___restrict__] = ACTIONS(6833), + [anon_sym__Atomic] = ACTIONS(6833), + [anon_sym__Noreturn] = ACTIONS(6833), + [anon_sym_noreturn] = ACTIONS(6833), + [anon_sym__Nonnull] = ACTIONS(6833), + [anon_sym_mutable] = ACTIONS(6833), + [anon_sym_constinit] = ACTIONS(6833), + [anon_sym_consteval] = ACTIONS(6833), + [anon_sym_alignas] = ACTIONS(6841), + [anon_sym__Alignas] = ACTIONS(6841), + [anon_sym_QMARK] = ACTIONS(6859), + [anon_sym_STAR_EQ] = ACTIONS(6859), + [anon_sym_SLASH_EQ] = ACTIONS(6859), + [anon_sym_PERCENT_EQ] = ACTIONS(6859), + [anon_sym_PLUS_EQ] = ACTIONS(6859), + [anon_sym_DASH_EQ] = ACTIONS(6859), + [anon_sym_LT_LT_EQ] = ACTIONS(6859), + [anon_sym_GT_GT_EQ] = ACTIONS(6859), + [anon_sym_AMP_EQ] = ACTIONS(6859), + [anon_sym_CARET_EQ] = ACTIONS(6859), + [anon_sym_PIPE_EQ] = ACTIONS(6859), + [anon_sym_and_eq] = ACTIONS(6861), + [anon_sym_or_eq] = ACTIONS(6861), + [anon_sym_xor_eq] = ACTIONS(6861), + [anon_sym_LT_EQ_GT] = ACTIONS(6859), + [anon_sym_or] = ACTIONS(6861), + [anon_sym_and] = ACTIONS(6861), + [anon_sym_bitor] = ACTIONS(6861), + [anon_sym_xor] = ACTIONS(6861), + [anon_sym_bitand] = ACTIONS(6861), + [anon_sym_not_eq] = ACTIONS(6861), + [anon_sym_DASH_DASH] = ACTIONS(6859), + [anon_sym_PLUS_PLUS] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6861), + [anon_sym_DOT_STAR] = ACTIONS(6859), + [anon_sym_DASH_GT] = ACTIONS(6859), + [sym_comment] = ACTIONS(3), + }, + [STATE(2024)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2082), + [sym_ms_pointer_modifier] = STATE(2030), + [sym__abstract_declarator] = STATE(4547), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2262), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1976), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2262), + [aux_sym_pointer_declarator_repeat1] = STATE(2030), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6861), + [anon_sym_STAR] = ACTIONS(6923), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_PIPE_PIPE] = ACTIONS(6859), + [anon_sym_AMP_AMP] = ACTIONS(6925), + [anon_sym_PIPE] = ACTIONS(6861), + [anon_sym_CARET] = ACTIONS(6861), + [anon_sym_AMP] = ACTIONS(6927), + [anon_sym_EQ_EQ] = ACTIONS(6859), + [anon_sym_BANG_EQ] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6861), + [anon_sym_GT_EQ] = ACTIONS(6859), + [anon_sym_LT_EQ] = ACTIONS(6861), + [anon_sym_LT] = ACTIONS(6861), + [anon_sym_LT_LT] = ACTIONS(6861), + [anon_sym_GT_GT] = ACTIONS(6861), + [anon_sym_SEMI] = ACTIONS(6859), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym___attribute__] = ACTIONS(6859), + [anon_sym___attribute] = ACTIONS(6861), + [sym_ms_restrict_modifier] = ACTIONS(6835), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6851), + [sym_ms_signed_ptr_modifier] = ACTIONS(6851), + [anon_sym__unaligned] = ACTIONS(6853), + [anon_sym___unaligned] = ACTIONS(6853), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(6861), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(6859), + [anon_sym_STAR_EQ] = ACTIONS(6859), + [anon_sym_SLASH_EQ] = ACTIONS(6859), + [anon_sym_PERCENT_EQ] = ACTIONS(6859), + [anon_sym_PLUS_EQ] = ACTIONS(6859), + [anon_sym_DASH_EQ] = ACTIONS(6859), + [anon_sym_LT_LT_EQ] = ACTIONS(6859), + [anon_sym_GT_GT_EQ] = ACTIONS(6859), + [anon_sym_AMP_EQ] = ACTIONS(6859), + [anon_sym_CARET_EQ] = ACTIONS(6859), + [anon_sym_PIPE_EQ] = ACTIONS(6859), + [anon_sym_and_eq] = ACTIONS(6859), + [anon_sym_or_eq] = ACTIONS(6859), + [anon_sym_xor_eq] = ACTIONS(6859), + [anon_sym_LT_EQ_GT] = ACTIONS(6859), + [anon_sym_or] = ACTIONS(6861), + [anon_sym_and] = ACTIONS(6861), + [anon_sym_bitor] = ACTIONS(6859), + [anon_sym_xor] = ACTIONS(6861), + [anon_sym_bitand] = ACTIONS(6859), + [anon_sym_not_eq] = ACTIONS(6859), + [anon_sym_DASH_DASH] = ACTIONS(6859), + [anon_sym_PLUS_PLUS] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6861), + [anon_sym_DOT_STAR] = ACTIONS(6859), + [anon_sym_DASH_GT] = ACTIONS(6859), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6859), + [anon_sym_override] = ACTIONS(6859), + [anon_sym_requires] = ACTIONS(6859), + }, + [STATE(2025)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2082), + [sym_ms_pointer_modifier] = STATE(2028), + [sym__abstract_declarator] = STATE(4538), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2245), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1957), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2245), + [aux_sym_pointer_declarator_repeat1] = STATE(2028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(6929), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(6931), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(6933), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym_SEMI] = ACTIONS(6823), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym_COLON] = ACTIONS(6821), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6823), + [sym_ms_restrict_modifier] = ACTIONS(6835), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6851), + [sym_ms_signed_ptr_modifier] = ACTIONS(6851), + [anon_sym__unaligned] = ACTIONS(6853), + [anon_sym___unaligned] = ACTIONS(6853), + [anon_sym_RBRACE] = ACTIONS(6823), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6823), + [anon_sym_or_eq] = ACTIONS(6823), + [anon_sym_xor_eq] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6823), + }, + [STATE(2026)] = { + [sym_attribute_specifier] = STATE(2026), + [aux_sym_type_definition_repeat1] = STATE(2026), + [sym_identifier] = ACTIONS(6935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6937), + [anon_sym_COMMA] = ACTIONS(6937), + [anon_sym_RPAREN] = ACTIONS(6937), + [aux_sym_preproc_if_token2] = ACTIONS(6937), + [aux_sym_preproc_else_token1] = ACTIONS(6937), + [aux_sym_preproc_elif_token1] = ACTIONS(6935), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6937), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6937), + [anon_sym_LPAREN2] = ACTIONS(6937), + [anon_sym_DASH] = ACTIONS(6935), + [anon_sym_PLUS] = ACTIONS(6935), + [anon_sym_STAR] = ACTIONS(6935), + [anon_sym_SLASH] = ACTIONS(6935), + [anon_sym_PERCENT] = ACTIONS(6935), + [anon_sym_PIPE_PIPE] = ACTIONS(6937), + [anon_sym_AMP_AMP] = ACTIONS(6937), + [anon_sym_PIPE] = ACTIONS(6935), + [anon_sym_CARET] = ACTIONS(6935), + [anon_sym_AMP] = ACTIONS(6935), + [anon_sym_EQ_EQ] = ACTIONS(6937), + [anon_sym_BANG_EQ] = ACTIONS(6937), + [anon_sym_GT] = ACTIONS(6935), + [anon_sym_GT_EQ] = ACTIONS(6937), + [anon_sym_LT_EQ] = ACTIONS(6935), + [anon_sym_LT] = ACTIONS(6935), + [anon_sym_LT_LT] = ACTIONS(6935), + [anon_sym_GT_GT] = ACTIONS(6935), + [anon_sym_SEMI] = ACTIONS(6937), + [anon_sym___extension__] = ACTIONS(6935), + [anon_sym___attribute__] = ACTIONS(6939), + [anon_sym___attribute] = ACTIONS(6939), + [anon_sym_COLON] = ACTIONS(6935), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6937), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6937), + [anon_sym_RBRACE] = ACTIONS(6937), + [anon_sym_LBRACK] = ACTIONS(6935), + [anon_sym_EQ] = ACTIONS(6935), + [anon_sym_const] = ACTIONS(6935), + [anon_sym_constexpr] = ACTIONS(6935), + [anon_sym_volatile] = ACTIONS(6935), + [anon_sym_restrict] = ACTIONS(6935), + [anon_sym___restrict__] = ACTIONS(6935), + [anon_sym__Atomic] = ACTIONS(6935), + [anon_sym__Noreturn] = ACTIONS(6935), + [anon_sym_noreturn] = ACTIONS(6935), + [anon_sym__Nonnull] = ACTIONS(6935), + [anon_sym_mutable] = ACTIONS(6935), + [anon_sym_constinit] = ACTIONS(6935), + [anon_sym_consteval] = ACTIONS(6935), + [anon_sym_alignas] = ACTIONS(6935), + [anon_sym__Alignas] = ACTIONS(6935), + [anon_sym_QMARK] = ACTIONS(6937), + [anon_sym_STAR_EQ] = ACTIONS(6937), + [anon_sym_SLASH_EQ] = ACTIONS(6937), + [anon_sym_PERCENT_EQ] = ACTIONS(6937), + [anon_sym_PLUS_EQ] = ACTIONS(6937), + [anon_sym_DASH_EQ] = ACTIONS(6937), + [anon_sym_LT_LT_EQ] = ACTIONS(6937), + [anon_sym_GT_GT_EQ] = ACTIONS(6937), + [anon_sym_AMP_EQ] = ACTIONS(6937), + [anon_sym_CARET_EQ] = ACTIONS(6937), + [anon_sym_PIPE_EQ] = ACTIONS(6937), + [anon_sym_and_eq] = ACTIONS(6935), + [anon_sym_or_eq] = ACTIONS(6935), + [anon_sym_xor_eq] = ACTIONS(6935), + [anon_sym_LT_EQ_GT] = ACTIONS(6937), + [anon_sym_or] = ACTIONS(6935), + [anon_sym_and] = ACTIONS(6935), + [anon_sym_bitor] = ACTIONS(6935), + [anon_sym_xor] = ACTIONS(6935), + [anon_sym_bitand] = ACTIONS(6935), + [anon_sym_not_eq] = ACTIONS(6935), + [anon_sym_DASH_DASH] = ACTIONS(6937), + [anon_sym_PLUS_PLUS] = ACTIONS(6937), + [anon_sym_asm] = ACTIONS(6935), + [anon_sym___asm__] = ACTIONS(6935), + [anon_sym___asm] = ACTIONS(6935), + [anon_sym_DOT] = ACTIONS(6935), + [anon_sym_DOT_STAR] = ACTIONS(6937), + [anon_sym_DASH_GT] = ACTIONS(6937), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6935), + [anon_sym_override] = ACTIONS(6935), + [anon_sym_noexcept] = ACTIONS(6935), + [anon_sym_throw] = ACTIONS(6935), + [anon_sym_requires] = ACTIONS(6935), + [anon_sym_COLON_RBRACK] = ACTIONS(6937), + }, + [STATE(2027)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2082), + [sym_ms_pointer_modifier] = STATE(2025), + [sym__abstract_declarator] = STATE(4482), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2286), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1957), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2286), + [aux_sym_pointer_declarator_repeat1] = STATE(2025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_RPAREN] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6861), + [anon_sym_STAR] = ACTIONS(6929), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_PIPE_PIPE] = ACTIONS(6859), + [anon_sym_AMP_AMP] = ACTIONS(6931), + [anon_sym_PIPE] = ACTIONS(6861), + [anon_sym_CARET] = ACTIONS(6861), + [anon_sym_AMP] = ACTIONS(6933), + [anon_sym_EQ_EQ] = ACTIONS(6859), + [anon_sym_BANG_EQ] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6861), + [anon_sym_GT_EQ] = ACTIONS(6859), + [anon_sym_LT_EQ] = ACTIONS(6861), + [anon_sym_LT] = ACTIONS(6861), + [anon_sym_LT_LT] = ACTIONS(6861), + [anon_sym_GT_GT] = ACTIONS(6861), + [anon_sym_SEMI] = ACTIONS(6859), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym_COLON] = ACTIONS(6861), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6859), + [sym_ms_restrict_modifier] = ACTIONS(6835), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6851), + [sym_ms_signed_ptr_modifier] = ACTIONS(6851), + [anon_sym__unaligned] = ACTIONS(6853), + [anon_sym___unaligned] = ACTIONS(6853), + [anon_sym_RBRACE] = ACTIONS(6859), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(6861), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(6859), + [anon_sym_STAR_EQ] = ACTIONS(6859), + [anon_sym_SLASH_EQ] = ACTIONS(6859), + [anon_sym_PERCENT_EQ] = ACTIONS(6859), + [anon_sym_PLUS_EQ] = ACTIONS(6859), + [anon_sym_DASH_EQ] = ACTIONS(6859), + [anon_sym_LT_LT_EQ] = ACTIONS(6859), + [anon_sym_GT_GT_EQ] = ACTIONS(6859), + [anon_sym_AMP_EQ] = ACTIONS(6859), + [anon_sym_CARET_EQ] = ACTIONS(6859), + [anon_sym_PIPE_EQ] = ACTIONS(6859), + [anon_sym_and_eq] = ACTIONS(6859), + [anon_sym_or_eq] = ACTIONS(6859), + [anon_sym_xor_eq] = ACTIONS(6859), + [anon_sym_LT_EQ_GT] = ACTIONS(6859), + [anon_sym_or] = ACTIONS(6861), + [anon_sym_and] = ACTIONS(6861), + [anon_sym_bitor] = ACTIONS(6859), + [anon_sym_xor] = ACTIONS(6861), + [anon_sym_bitand] = ACTIONS(6859), + [anon_sym_not_eq] = ACTIONS(6859), + [anon_sym_DASH_DASH] = ACTIONS(6859), + [anon_sym_PLUS_PLUS] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6861), + [anon_sym_DOT_STAR] = ACTIONS(6859), + [anon_sym_DASH_GT] = ACTIONS(6859), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6859), + }, + [STATE(2028)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2082), + [sym_ms_pointer_modifier] = STATE(2028), + [aux_sym_pointer_declarator_repeat1] = STATE(2028), + [sym_identifier] = ACTIONS(6942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6944), + [anon_sym_COMMA] = ACTIONS(6944), + [anon_sym_RPAREN] = ACTIONS(6944), + [aux_sym_preproc_if_token2] = ACTIONS(6944), + [aux_sym_preproc_else_token1] = ACTIONS(6944), + [aux_sym_preproc_elif_token1] = ACTIONS(6942), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6944), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6944), + [anon_sym_LPAREN2] = ACTIONS(6944), + [anon_sym_DASH] = ACTIONS(6942), + [anon_sym_PLUS] = ACTIONS(6942), + [anon_sym_STAR] = ACTIONS(6942), + [anon_sym_SLASH] = ACTIONS(6942), + [anon_sym_PERCENT] = ACTIONS(6942), + [anon_sym_PIPE_PIPE] = ACTIONS(6944), + [anon_sym_AMP_AMP] = ACTIONS(6944), + [anon_sym_PIPE] = ACTIONS(6942), + [anon_sym_CARET] = ACTIONS(6942), + [anon_sym_AMP] = ACTIONS(6942), + [anon_sym_EQ_EQ] = ACTIONS(6944), + [anon_sym_BANG_EQ] = ACTIONS(6944), + [anon_sym_GT] = ACTIONS(6942), + [anon_sym_GT_EQ] = ACTIONS(6944), + [anon_sym_LT_EQ] = ACTIONS(6942), + [anon_sym_LT] = ACTIONS(6942), + [anon_sym_LT_LT] = ACTIONS(6942), + [anon_sym_GT_GT] = ACTIONS(6942), + [anon_sym_SEMI] = ACTIONS(6944), + [anon_sym___extension__] = ACTIONS(6942), + [anon_sym___attribute__] = ACTIONS(6942), + [anon_sym___attribute] = ACTIONS(6942), + [anon_sym_COLON] = ACTIONS(6942), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6944), + [sym_ms_restrict_modifier] = ACTIONS(6946), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6946), + [sym_ms_signed_ptr_modifier] = ACTIONS(6946), + [anon_sym__unaligned] = ACTIONS(6949), + [anon_sym___unaligned] = ACTIONS(6949), + [anon_sym_RBRACE] = ACTIONS(6944), + [anon_sym_LBRACK] = ACTIONS(6944), + [anon_sym_EQ] = ACTIONS(6942), + [anon_sym_const] = ACTIONS(6942), + [anon_sym_constexpr] = ACTIONS(6942), + [anon_sym_volatile] = ACTIONS(6942), + [anon_sym_restrict] = ACTIONS(6942), + [anon_sym___restrict__] = ACTIONS(6942), + [anon_sym__Atomic] = ACTIONS(6942), + [anon_sym__Noreturn] = ACTIONS(6942), + [anon_sym_noreturn] = ACTIONS(6942), + [anon_sym__Nonnull] = ACTIONS(6942), + [anon_sym_mutable] = ACTIONS(6942), + [anon_sym_constinit] = ACTIONS(6942), + [anon_sym_consteval] = ACTIONS(6942), + [anon_sym_alignas] = ACTIONS(6942), + [anon_sym__Alignas] = ACTIONS(6942), + [anon_sym_QMARK] = ACTIONS(6944), + [anon_sym_STAR_EQ] = ACTIONS(6944), + [anon_sym_SLASH_EQ] = ACTIONS(6944), + [anon_sym_PERCENT_EQ] = ACTIONS(6944), + [anon_sym_PLUS_EQ] = ACTIONS(6944), + [anon_sym_DASH_EQ] = ACTIONS(6944), + [anon_sym_LT_LT_EQ] = ACTIONS(6944), + [anon_sym_GT_GT_EQ] = ACTIONS(6944), + [anon_sym_AMP_EQ] = ACTIONS(6944), + [anon_sym_CARET_EQ] = ACTIONS(6944), + [anon_sym_PIPE_EQ] = ACTIONS(6944), + [anon_sym_and_eq] = ACTIONS(6942), + [anon_sym_or_eq] = ACTIONS(6942), + [anon_sym_xor_eq] = ACTIONS(6942), + [anon_sym_LT_EQ_GT] = ACTIONS(6944), + [anon_sym_or] = ACTIONS(6942), + [anon_sym_and] = ACTIONS(6942), + [anon_sym_bitor] = ACTIONS(6942), + [anon_sym_xor] = ACTIONS(6942), + [anon_sym_bitand] = ACTIONS(6942), + [anon_sym_not_eq] = ACTIONS(6942), + [anon_sym_DASH_DASH] = ACTIONS(6944), + [anon_sym_PLUS_PLUS] = ACTIONS(6944), + [anon_sym_DOT] = ACTIONS(6942), + [anon_sym_DOT_STAR] = ACTIONS(6944), + [anon_sym_DASH_GT] = ACTIONS(6944), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6942), + [anon_sym_override] = ACTIONS(6942), + [anon_sym_requires] = ACTIONS(6942), + [anon_sym_COLON_RBRACK] = ACTIONS(6944), + }, + [STATE(2029)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2082), + [sym_ms_pointer_modifier] = STATE(2028), + [sym__abstract_declarator] = STATE(4524), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2250), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1946), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2250), + [aux_sym_pointer_declarator_repeat1] = STATE(2028), + [sym_identifier] = ACTIONS(6821), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [aux_sym_preproc_if_token2] = ACTIONS(6823), + [aux_sym_preproc_else_token1] = ACTIONS(6823), + [aux_sym_preproc_elif_token1] = ACTIONS(6821), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6823), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(6917), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(6919), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(6921), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(6833), + [sym_ms_restrict_modifier] = ACTIONS(6835), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6835), + [sym_ms_signed_ptr_modifier] = ACTIONS(6835), + [anon_sym__unaligned] = ACTIONS(6837), + [anon_sym___unaligned] = ACTIONS(6837), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(6833), + [anon_sym_volatile] = ACTIONS(6833), + [anon_sym_restrict] = ACTIONS(6833), + [anon_sym___restrict__] = ACTIONS(6833), + [anon_sym__Atomic] = ACTIONS(6833), + [anon_sym__Noreturn] = ACTIONS(6833), + [anon_sym_noreturn] = ACTIONS(6833), + [anon_sym__Nonnull] = ACTIONS(6833), + [anon_sym_mutable] = ACTIONS(6833), + [anon_sym_constinit] = ACTIONS(6833), + [anon_sym_consteval] = ACTIONS(6833), + [anon_sym_alignas] = ACTIONS(6841), + [anon_sym__Alignas] = ACTIONS(6841), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6821), + [anon_sym_or_eq] = ACTIONS(6821), + [anon_sym_xor_eq] = ACTIONS(6821), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6821), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6821), + [anon_sym_not_eq] = ACTIONS(6821), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + }, + [STATE(2030)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2082), + [sym_ms_pointer_modifier] = STATE(2028), + [sym__abstract_declarator] = STATE(4478), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2288), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1976), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2288), + [aux_sym_pointer_declarator_repeat1] = STATE(2028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(6923), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(6925), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(6927), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym_SEMI] = ACTIONS(6823), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym___attribute__] = ACTIONS(6823), + [anon_sym___attribute] = ACTIONS(6821), + [sym_ms_restrict_modifier] = ACTIONS(6835), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6851), + [sym_ms_signed_ptr_modifier] = ACTIONS(6851), + [anon_sym__unaligned] = ACTIONS(6853), + [anon_sym___unaligned] = ACTIONS(6853), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6823), + [anon_sym_or_eq] = ACTIONS(6823), + [anon_sym_xor_eq] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6823), + [anon_sym_override] = ACTIONS(6823), + [anon_sym_requires] = ACTIONS(6823), + }, + [STATE(2031)] = { + [sym_identifier] = ACTIONS(6594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_RPAREN] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_TILDE] = ACTIONS(6601), + [anon_sym_DASH] = ACTIONS(6603), + [anon_sym_PLUS] = ACTIONS(6603), + [anon_sym_STAR] = ACTIONS(6605), + [anon_sym_SLASH] = ACTIONS(6603), + [anon_sym_PERCENT] = ACTIONS(6603), + [anon_sym_PIPE_PIPE] = ACTIONS(6596), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6603), + [anon_sym_CARET] = ACTIONS(6603), + [anon_sym_AMP] = ACTIONS(6605), + [anon_sym_EQ_EQ] = ACTIONS(6596), + [anon_sym_BANG_EQ] = ACTIONS(6596), + [anon_sym_GT] = ACTIONS(6603), + [anon_sym_GT_EQ] = ACTIONS(6596), + [anon_sym_LT_EQ] = ACTIONS(6603), + [anon_sym_LT] = ACTIONS(6603), + [anon_sym_LT_LT] = ACTIONS(6603), + [anon_sym_GT_GT] = ACTIONS(6603), + [anon_sym___extension__] = ACTIONS(6594), + [anon_sym_virtual] = ACTIONS(6594), + [anon_sym_extern] = ACTIONS(6594), + [anon_sym___attribute__] = ACTIONS(6594), + [anon_sym___attribute] = ACTIONS(6594), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6601), + [anon_sym___declspec] = ACTIONS(6594), + [anon_sym___based] = ACTIONS(6594), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_LBRACK] = ACTIONS(6605), + [anon_sym_static] = ACTIONS(6594), + [anon_sym_EQ] = ACTIONS(6605), + [anon_sym_register] = ACTIONS(6594), + [anon_sym_inline] = ACTIONS(6594), + [anon_sym___inline] = ACTIONS(6594), + [anon_sym___inline__] = ACTIONS(6594), + [anon_sym___forceinline] = ACTIONS(6594), + [anon_sym_thread_local] = ACTIONS(6594), + [anon_sym___thread] = ACTIONS(6594), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6594), + [anon_sym_volatile] = ACTIONS(6594), + [anon_sym_restrict] = ACTIONS(6594), + [anon_sym___restrict__] = ACTIONS(6594), + [anon_sym__Atomic] = ACTIONS(6594), + [anon_sym__Noreturn] = ACTIONS(6594), + [anon_sym_noreturn] = ACTIONS(6594), + [anon_sym__Nonnull] = ACTIONS(6594), + [anon_sym_mutable] = ACTIONS(6594), + [anon_sym_constinit] = ACTIONS(6594), + [anon_sym_consteval] = ACTIONS(6594), + [anon_sym_alignas] = ACTIONS(6594), + [anon_sym__Alignas] = ACTIONS(6594), + [anon_sym_QMARK] = ACTIONS(6596), + [anon_sym_STAR_EQ] = ACTIONS(6596), + [anon_sym_SLASH_EQ] = ACTIONS(6596), + [anon_sym_PERCENT_EQ] = ACTIONS(6596), + [anon_sym_PLUS_EQ] = ACTIONS(6596), + [anon_sym_DASH_EQ] = ACTIONS(6596), + [anon_sym_LT_LT_EQ] = ACTIONS(6596), + [anon_sym_GT_GT_EQ] = ACTIONS(6596), + [anon_sym_AMP_EQ] = ACTIONS(6596), + [anon_sym_CARET_EQ] = ACTIONS(6596), + [anon_sym_PIPE_EQ] = ACTIONS(6596), + [anon_sym_and_eq] = ACTIONS(6603), + [anon_sym_or_eq] = ACTIONS(6603), + [anon_sym_xor_eq] = ACTIONS(6603), + [anon_sym_LT_EQ_GT] = ACTIONS(6596), + [anon_sym_or] = ACTIONS(6603), + [anon_sym_and] = ACTIONS(6603), + [anon_sym_bitor] = ACTIONS(6603), + [anon_sym_xor] = ACTIONS(6603), + [anon_sym_bitand] = ACTIONS(6603), + [anon_sym_not_eq] = ACTIONS(6603), + [anon_sym_DASH_DASH] = ACTIONS(6596), + [anon_sym_PLUS_PLUS] = ACTIONS(6596), + [anon_sym_DOT] = ACTIONS(6603), + [anon_sym_DOT_STAR] = ACTIONS(6596), + [anon_sym_DASH_GT] = ACTIONS(6596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6594), + [anon_sym_decltype] = ACTIONS(6594), + [anon_sym_template] = ACTIONS(6594), + [anon_sym_operator] = ACTIONS(6594), + [anon_sym_LBRACK_COLON] = ACTIONS(6601), + }, + [STATE(2032)] = { + [sym_string_literal] = STATE(3858), + [sym_decltype_auto] = STATE(3535), + [sym_template_argument_list] = STATE(3563), + [sym_raw_string_literal] = STATE(3858), + [aux_sym_sized_type_specifier_repeat1] = STATE(2616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), + [anon_sym_COMMA] = ACTIONS(5640), + [anon_sym_RPAREN] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(5647), + [anon_sym_PLUS] = ACTIONS(5647), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5647), + [anon_sym_PERCENT] = ACTIONS(5647), + [anon_sym_PIPE_PIPE] = ACTIONS(5640), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5647), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5640), + [anon_sym_BANG_EQ] = ACTIONS(5640), + [anon_sym_GT] = ACTIONS(5647), + [anon_sym_GT_EQ] = ACTIONS(5640), + [anon_sym_LT_EQ] = ACTIONS(5647), + [anon_sym_LT] = ACTIONS(6952), + [anon_sym_LT_LT] = ACTIONS(5647), + [anon_sym_GT_GT] = ACTIONS(5647), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(6956), + [anon_sym_unsigned] = ACTIONS(6956), + [anon_sym_long] = ACTIONS(6956), + [anon_sym_short] = ACTIONS(6956), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_EQ] = ACTIONS(5647), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5643), + [anon_sym_volatile] = ACTIONS(5643), + [anon_sym_restrict] = ACTIONS(5643), + [anon_sym___restrict__] = ACTIONS(5643), + [anon_sym__Atomic] = ACTIONS(5643), + [anon_sym__Noreturn] = ACTIONS(5643), + [anon_sym_noreturn] = ACTIONS(5643), + [anon_sym__Nonnull] = ACTIONS(5643), + [anon_sym_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [anon_sym_alignas] = ACTIONS(5643), + [anon_sym__Alignas] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5640), + [anon_sym_STAR_EQ] = ACTIONS(5640), + [anon_sym_SLASH_EQ] = ACTIONS(5640), + [anon_sym_PERCENT_EQ] = ACTIONS(5640), + [anon_sym_PLUS_EQ] = ACTIONS(5640), + [anon_sym_DASH_EQ] = ACTIONS(5640), + [anon_sym_LT_LT_EQ] = ACTIONS(5640), + [anon_sym_GT_GT_EQ] = ACTIONS(5640), + [anon_sym_AMP_EQ] = ACTIONS(5640), + [anon_sym_CARET_EQ] = ACTIONS(5640), + [anon_sym_PIPE_EQ] = ACTIONS(5640), + [anon_sym_and_eq] = ACTIONS(6958), + [anon_sym_or_eq] = ACTIONS(6958), + [anon_sym_xor_eq] = ACTIONS(6958), + [anon_sym_LT_EQ_GT] = ACTIONS(5640), + [anon_sym_or] = ACTIONS(5647), + [anon_sym_and] = ACTIONS(5647), + [anon_sym_bitor] = ACTIONS(5640), + [anon_sym_xor] = ACTIONS(5647), + [anon_sym_bitand] = ACTIONS(5640), + [anon_sym_not_eq] = ACTIONS(5640), + [anon_sym_DASH_DASH] = ACTIONS(5640), + [anon_sym_PLUS_PLUS] = ACTIONS(5640), + [anon_sym_DOT] = ACTIONS(5647), + [anon_sym_DOT_STAR] = ACTIONS(5640), + [anon_sym_DASH_GT] = ACTIONS(5647), + [anon_sym_L_DQUOTE] = ACTIONS(5995), + [anon_sym_u_DQUOTE] = ACTIONS(5995), + [anon_sym_U_DQUOTE] = ACTIONS(5995), + [anon_sym_u8_DQUOTE] = ACTIONS(5995), + [anon_sym_DQUOTE] = ACTIONS(5995), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6960), + [anon_sym_decltype] = ACTIONS(6962), + [anon_sym_R_DQUOTE] = ACTIONS(5997), + [anon_sym_LR_DQUOTE] = ACTIONS(5997), + [anon_sym_uR_DQUOTE] = ACTIONS(5997), + [anon_sym_UR_DQUOTE] = ACTIONS(5997), + [anon_sym_u8R_DQUOTE] = ACTIONS(5997), + [anon_sym_DASH_GT_STAR] = ACTIONS(5640), + }, + [STATE(2033)] = { + [sym_string_literal] = STATE(3632), + [sym_decltype_auto] = STATE(3203), + [sym_template_argument_list] = STATE(2999), + [sym_raw_string_literal] = STATE(3632), + [aux_sym_sized_type_specifier_repeat1] = STATE(3552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_RPAREN] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(6964), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(6867), + [anon_sym_unsigned] = ACTIONS(6867), + [anon_sym_long] = ACTIONS(6867), + [anon_sym_short] = ACTIONS(6867), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_EQ] = ACTIONS(5645), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5643), + [anon_sym_volatile] = ACTIONS(5643), + [anon_sym_restrict] = ACTIONS(5643), + [anon_sym___restrict__] = ACTIONS(5643), + [anon_sym__Atomic] = ACTIONS(5643), + [anon_sym__Noreturn] = ACTIONS(5643), + [anon_sym_noreturn] = ACTIONS(5643), + [anon_sym__Nonnull] = ACTIONS(5643), + [anon_sym_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [anon_sym_alignas] = ACTIONS(5643), + [anon_sym__Alignas] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5638), + [anon_sym_SLASH_EQ] = ACTIONS(5638), + [anon_sym_PERCENT_EQ] = ACTIONS(5638), + [anon_sym_PLUS_EQ] = ACTIONS(5638), + [anon_sym_DASH_EQ] = ACTIONS(5638), + [anon_sym_LT_LT_EQ] = ACTIONS(5638), + [anon_sym_GT_GT_EQ] = ACTIONS(5638), + [anon_sym_AMP_EQ] = ACTIONS(5638), + [anon_sym_CARET_EQ] = ACTIONS(5638), + [anon_sym_PIPE_EQ] = ACTIONS(5638), + [anon_sym_and_eq] = ACTIONS(5638), + [anon_sym_or_eq] = ACTIONS(5638), + [anon_sym_xor_eq] = ACTIONS(5638), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5645), + [anon_sym_L_DQUOTE] = ACTIONS(6885), + [anon_sym_u_DQUOTE] = ACTIONS(6885), + [anon_sym_U_DQUOTE] = ACTIONS(6885), + [anon_sym_u8_DQUOTE] = ACTIONS(6885), + [anon_sym_DQUOTE] = ACTIONS(6885), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6869), + [anon_sym_decltype] = ACTIONS(6871), + [anon_sym_R_DQUOTE] = ACTIONS(6887), + [anon_sym_LR_DQUOTE] = ACTIONS(6887), + [anon_sym_uR_DQUOTE] = ACTIONS(6887), + [anon_sym_UR_DQUOTE] = ACTIONS(6887), + [anon_sym_u8R_DQUOTE] = ACTIONS(6887), + [anon_sym_DASH_GT_STAR] = ACTIONS(5638), + }, + [STATE(2034)] = { + [sym_string_literal] = STATE(3632), + [sym_decltype_auto] = STATE(2952), + [sym_template_argument_list] = STATE(2985), + [sym_raw_string_literal] = STATE(3632), + [aux_sym_sized_type_specifier_repeat1] = STATE(2419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), + [anon_sym_COMMA] = ACTIONS(5640), + [anon_sym_RPAREN] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(5647), + [anon_sym_PLUS] = ACTIONS(5647), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5647), + [anon_sym_PERCENT] = ACTIONS(5647), + [anon_sym_PIPE_PIPE] = ACTIONS(5640), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5647), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5640), + [anon_sym_BANG_EQ] = ACTIONS(5640), + [anon_sym_GT] = ACTIONS(5647), + [anon_sym_GT_EQ] = ACTIONS(5640), + [anon_sym_LT_EQ] = ACTIONS(5647), + [anon_sym_LT] = ACTIONS(6967), + [anon_sym_LT_LT] = ACTIONS(5647), + [anon_sym_GT_GT] = ACTIONS(5647), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(6971), + [anon_sym_unsigned] = ACTIONS(6971), + [anon_sym_long] = ACTIONS(6971), + [anon_sym_short] = ACTIONS(6971), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_EQ] = ACTIONS(5647), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5643), + [anon_sym_volatile] = ACTIONS(5643), + [anon_sym_restrict] = ACTIONS(5643), + [anon_sym___restrict__] = ACTIONS(5643), + [anon_sym__Atomic] = ACTIONS(5643), + [anon_sym__Noreturn] = ACTIONS(5643), + [anon_sym_noreturn] = ACTIONS(5643), + [anon_sym__Nonnull] = ACTIONS(5643), + [anon_sym_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [anon_sym_alignas] = ACTIONS(5643), + [anon_sym__Alignas] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5640), + [anon_sym_STAR_EQ] = ACTIONS(5640), + [anon_sym_SLASH_EQ] = ACTIONS(5640), + [anon_sym_PERCENT_EQ] = ACTIONS(5640), + [anon_sym_PLUS_EQ] = ACTIONS(5640), + [anon_sym_DASH_EQ] = ACTIONS(5640), + [anon_sym_LT_LT_EQ] = ACTIONS(5640), + [anon_sym_GT_GT_EQ] = ACTIONS(5640), + [anon_sym_AMP_EQ] = ACTIONS(5640), + [anon_sym_CARET_EQ] = ACTIONS(5640), + [anon_sym_PIPE_EQ] = ACTIONS(5640), + [anon_sym_and_eq] = ACTIONS(5640), + [anon_sym_or_eq] = ACTIONS(5640), + [anon_sym_xor_eq] = ACTIONS(5640), + [anon_sym_LT_EQ_GT] = ACTIONS(5640), + [anon_sym_or] = ACTIONS(5647), + [anon_sym_and] = ACTIONS(5647), + [anon_sym_bitor] = ACTIONS(5640), + [anon_sym_xor] = ACTIONS(5647), + [anon_sym_bitand] = ACTIONS(5640), + [anon_sym_not_eq] = ACTIONS(5640), + [anon_sym_DASH_DASH] = ACTIONS(5640), + [anon_sym_PLUS_PLUS] = ACTIONS(5640), + [anon_sym_DOT] = ACTIONS(5647), + [anon_sym_DOT_STAR] = ACTIONS(5640), + [anon_sym_DASH_GT] = ACTIONS(5647), + [anon_sym_L_DQUOTE] = ACTIONS(6885), + [anon_sym_u_DQUOTE] = ACTIONS(6885), + [anon_sym_U_DQUOTE] = ACTIONS(6885), + [anon_sym_u8_DQUOTE] = ACTIONS(6885), + [anon_sym_DQUOTE] = ACTIONS(6885), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6973), + [anon_sym_decltype] = ACTIONS(6975), + [anon_sym_R_DQUOTE] = ACTIONS(6887), + [anon_sym_LR_DQUOTE] = ACTIONS(6887), + [anon_sym_uR_DQUOTE] = ACTIONS(6887), + [anon_sym_UR_DQUOTE] = ACTIONS(6887), + [anon_sym_u8R_DQUOTE] = ACTIONS(6887), + [anon_sym_DASH_GT_STAR] = ACTIONS(5640), + }, + [STATE(2035)] = { + [sym_string_literal] = STATE(5659), + [sym_decltype_auto] = STATE(4458), + [sym_template_argument_list] = STATE(4662), + [sym_raw_string_literal] = STATE(5659), + [aux_sym_sized_type_specifier_repeat1] = STATE(4015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), + [anon_sym_COMMA] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(5647), + [anon_sym_PLUS] = ACTIONS(5647), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5647), + [anon_sym_PERCENT] = ACTIONS(5647), + [anon_sym_PIPE_PIPE] = ACTIONS(5640), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5647), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5640), + [anon_sym_BANG_EQ] = ACTIONS(5640), + [anon_sym_GT] = ACTIONS(5647), + [anon_sym_GT_EQ] = ACTIONS(5647), + [anon_sym_LT_EQ] = ACTIONS(5647), + [anon_sym_LT] = ACTIONS(6977), + [anon_sym_LT_LT] = ACTIONS(5647), + [anon_sym_GT_GT] = ACTIONS(5647), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(6981), + [anon_sym_unsigned] = ACTIONS(6981), + [anon_sym_long] = ACTIONS(6981), + [anon_sym_short] = ACTIONS(6981), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_EQ] = ACTIONS(6983), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5643), + [anon_sym_volatile] = ACTIONS(5643), + [anon_sym_restrict] = ACTIONS(5643), + [anon_sym___restrict__] = ACTIONS(5643), + [anon_sym__Atomic] = ACTIONS(5643), + [anon_sym__Noreturn] = ACTIONS(5643), + [anon_sym_noreturn] = ACTIONS(5643), + [anon_sym__Nonnull] = ACTIONS(5643), + [anon_sym_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [anon_sym_alignas] = ACTIONS(5643), + [anon_sym__Alignas] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5640), + [anon_sym_STAR_EQ] = ACTIONS(6985), + [anon_sym_SLASH_EQ] = ACTIONS(6985), + [anon_sym_PERCENT_EQ] = ACTIONS(6985), + [anon_sym_PLUS_EQ] = ACTIONS(6985), + [anon_sym_DASH_EQ] = ACTIONS(6985), + [anon_sym_LT_LT_EQ] = ACTIONS(6985), + [anon_sym_GT_GT_EQ] = ACTIONS(6983), + [anon_sym_AMP_EQ] = ACTIONS(6985), + [anon_sym_CARET_EQ] = ACTIONS(6985), + [anon_sym_PIPE_EQ] = ACTIONS(6985), + [anon_sym_and_eq] = ACTIONS(6985), + [anon_sym_or_eq] = ACTIONS(6985), + [anon_sym_xor_eq] = ACTIONS(6985), + [anon_sym_LT_EQ_GT] = ACTIONS(5640), + [anon_sym_or] = ACTIONS(5647), + [anon_sym_and] = ACTIONS(5647), + [anon_sym_bitor] = ACTIONS(5640), + [anon_sym_xor] = ACTIONS(5647), + [anon_sym_bitand] = ACTIONS(5640), + [anon_sym_not_eq] = ACTIONS(5640), + [anon_sym_DASH_DASH] = ACTIONS(5640), + [anon_sym_PLUS_PLUS] = ACTIONS(5640), + [anon_sym_DOT] = ACTIONS(5647), + [anon_sym_DOT_STAR] = ACTIONS(5640), + [anon_sym_DASH_GT] = ACTIONS(5640), + [anon_sym_L_DQUOTE] = ACTIONS(6987), + [anon_sym_u_DQUOTE] = ACTIONS(6987), + [anon_sym_U_DQUOTE] = ACTIONS(6987), + [anon_sym_u8_DQUOTE] = ACTIONS(6987), + [anon_sym_DQUOTE] = ACTIONS(6987), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6989), + [anon_sym_decltype] = ACTIONS(6991), + [anon_sym_GT2] = ACTIONS(5640), + [anon_sym_R_DQUOTE] = ACTIONS(6993), + [anon_sym_LR_DQUOTE] = ACTIONS(6993), + [anon_sym_uR_DQUOTE] = ACTIONS(6993), + [anon_sym_UR_DQUOTE] = ACTIONS(6993), + [anon_sym_u8R_DQUOTE] = ACTIONS(6993), + }, + [STATE(2036)] = { + [sym_string_literal] = STATE(4105), + [sym_decltype_auto] = STATE(3203), + [sym_template_argument_list] = STATE(3449), + [sym_raw_string_literal] = STATE(4105), + [aux_sym_sized_type_specifier_repeat1] = STATE(3552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), + [anon_sym_COMMA] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(5647), + [anon_sym_PLUS] = ACTIONS(5647), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5647), + [anon_sym_PERCENT] = ACTIONS(5647), + [anon_sym_PIPE_PIPE] = ACTIONS(5640), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5647), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5640), + [anon_sym_BANG_EQ] = ACTIONS(5640), + [anon_sym_GT] = ACTIONS(5647), + [anon_sym_GT_EQ] = ACTIONS(5640), + [anon_sym_LT_EQ] = ACTIONS(5647), + [anon_sym_LT] = ACTIONS(6863), + [anon_sym_LT_LT] = ACTIONS(5647), + [anon_sym_GT_GT] = ACTIONS(5647), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5640), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(6867), + [anon_sym_unsigned] = ACTIONS(6867), + [anon_sym_long] = ACTIONS(6867), + [anon_sym_short] = ACTIONS(6867), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_EQ] = ACTIONS(6995), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5643), + [anon_sym_volatile] = ACTIONS(5643), + [anon_sym_restrict] = ACTIONS(5643), + [anon_sym___restrict__] = ACTIONS(5643), + [anon_sym__Atomic] = ACTIONS(5643), + [anon_sym__Noreturn] = ACTIONS(5643), + [anon_sym_noreturn] = ACTIONS(5643), + [anon_sym__Nonnull] = ACTIONS(5643), + [anon_sym_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [anon_sym_alignas] = ACTIONS(5643), + [anon_sym__Alignas] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5640), + [anon_sym_STAR_EQ] = ACTIONS(6997), + [anon_sym_SLASH_EQ] = ACTIONS(6997), + [anon_sym_PERCENT_EQ] = ACTIONS(6997), + [anon_sym_PLUS_EQ] = ACTIONS(6997), + [anon_sym_DASH_EQ] = ACTIONS(6997), + [anon_sym_LT_LT_EQ] = ACTIONS(6997), + [anon_sym_GT_GT_EQ] = ACTIONS(6997), + [anon_sym_AMP_EQ] = ACTIONS(6997), + [anon_sym_CARET_EQ] = ACTIONS(6997), + [anon_sym_PIPE_EQ] = ACTIONS(6997), + [anon_sym_and_eq] = ACTIONS(6997), + [anon_sym_or_eq] = ACTIONS(6997), + [anon_sym_xor_eq] = ACTIONS(6997), + [anon_sym_LT_EQ_GT] = ACTIONS(5640), + [anon_sym_or] = ACTIONS(5647), + [anon_sym_and] = ACTIONS(5647), + [anon_sym_bitor] = ACTIONS(5640), + [anon_sym_xor] = ACTIONS(5647), + [anon_sym_bitand] = ACTIONS(5640), + [anon_sym_not_eq] = ACTIONS(5640), + [anon_sym_DASH_DASH] = ACTIONS(5640), + [anon_sym_PLUS_PLUS] = ACTIONS(5640), + [anon_sym_DOT] = ACTIONS(5647), + [anon_sym_DOT_STAR] = ACTIONS(5640), + [anon_sym_DASH_GT] = ACTIONS(5640), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6869), + [anon_sym_decltype] = ACTIONS(6871), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + }, + [STATE(2037)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2037), + [sym_identifier] = ACTIONS(6999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7001), + [anon_sym_COMMA] = ACTIONS(7001), + [anon_sym_RPAREN] = ACTIONS(7001), + [aux_sym_preproc_if_token2] = ACTIONS(7001), + [aux_sym_preproc_else_token1] = ACTIONS(7001), + [aux_sym_preproc_elif_token1] = ACTIONS(6999), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7001), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7001), + [anon_sym_LPAREN2] = ACTIONS(7001), + [anon_sym_DASH] = ACTIONS(6999), + [anon_sym_PLUS] = ACTIONS(6999), + [anon_sym_STAR] = ACTIONS(6999), + [anon_sym_SLASH] = ACTIONS(6999), + [anon_sym_PERCENT] = ACTIONS(6999), + [anon_sym_PIPE_PIPE] = ACTIONS(7001), + [anon_sym_AMP_AMP] = ACTIONS(7001), + [anon_sym_PIPE] = ACTIONS(6999), + [anon_sym_CARET] = ACTIONS(6999), + [anon_sym_AMP] = ACTIONS(6999), + [anon_sym_EQ_EQ] = ACTIONS(7001), + [anon_sym_BANG_EQ] = ACTIONS(7001), + [anon_sym_GT] = ACTIONS(6999), + [anon_sym_GT_EQ] = ACTIONS(7001), + [anon_sym_LT_EQ] = ACTIONS(6999), + [anon_sym_LT] = ACTIONS(6999), + [anon_sym_LT_LT] = ACTIONS(6999), + [anon_sym_GT_GT] = ACTIONS(6999), + [anon_sym_SEMI] = ACTIONS(7001), + [anon_sym___extension__] = ACTIONS(6999), + [anon_sym___attribute__] = ACTIONS(6999), + [anon_sym___attribute] = ACTIONS(6999), + [anon_sym_COLON] = ACTIONS(6999), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7001), + [anon_sym_LBRACE] = ACTIONS(7001), + [anon_sym_RBRACE] = ACTIONS(7001), + [anon_sym_signed] = ACTIONS(7003), + [anon_sym_unsigned] = ACTIONS(7003), + [anon_sym_long] = ACTIONS(7003), + [anon_sym_short] = ACTIONS(7003), + [anon_sym_LBRACK] = ACTIONS(7001), + [anon_sym_EQ] = ACTIONS(6999), + [anon_sym_const] = ACTIONS(6999), + [anon_sym_constexpr] = ACTIONS(6999), + [anon_sym_volatile] = ACTIONS(6999), + [anon_sym_restrict] = ACTIONS(6999), + [anon_sym___restrict__] = ACTIONS(6999), + [anon_sym__Atomic] = ACTIONS(6999), + [anon_sym__Noreturn] = ACTIONS(6999), + [anon_sym_noreturn] = ACTIONS(6999), + [anon_sym__Nonnull] = ACTIONS(6999), + [anon_sym_mutable] = ACTIONS(6999), + [anon_sym_constinit] = ACTIONS(6999), + [anon_sym_consteval] = ACTIONS(6999), + [anon_sym_alignas] = ACTIONS(6999), + [anon_sym__Alignas] = ACTIONS(6999), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7001), + [anon_sym_STAR_EQ] = ACTIONS(7001), + [anon_sym_SLASH_EQ] = ACTIONS(7001), + [anon_sym_PERCENT_EQ] = ACTIONS(7001), + [anon_sym_PLUS_EQ] = ACTIONS(7001), + [anon_sym_DASH_EQ] = ACTIONS(7001), + [anon_sym_LT_LT_EQ] = ACTIONS(7001), + [anon_sym_GT_GT_EQ] = ACTIONS(7001), + [anon_sym_AMP_EQ] = ACTIONS(7001), + [anon_sym_CARET_EQ] = ACTIONS(7001), + [anon_sym_PIPE_EQ] = ACTIONS(7001), + [anon_sym_and_eq] = ACTIONS(6999), + [anon_sym_or_eq] = ACTIONS(6999), + [anon_sym_xor_eq] = ACTIONS(6999), + [anon_sym_LT_EQ_GT] = ACTIONS(7001), + [anon_sym_or] = ACTIONS(6999), + [anon_sym_and] = ACTIONS(6999), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(6999), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(7001), + [anon_sym_PLUS_PLUS] = ACTIONS(7001), + [anon_sym_DOT] = ACTIONS(6999), + [anon_sym_DOT_STAR] = ACTIONS(7001), + [anon_sym_DASH_GT] = ACTIONS(7001), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6999), + [anon_sym_override] = ACTIONS(6999), + [anon_sym_requires] = ACTIONS(6999), + [anon_sym_COLON_RBRACK] = ACTIONS(7001), + }, + [STATE(2038)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2618), + [sym_ms_pointer_modifier] = STATE(2041), + [sym__abstract_declarator] = STATE(4615), + [sym_abstract_parenthesized_declarator] = STATE(4825), + [sym_abstract_pointer_declarator] = STATE(4825), + [sym_abstract_function_declarator] = STATE(4825), + [sym_abstract_array_declarator] = STATE(4825), + [sym_type_qualifier] = STATE(2297), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1972), + [sym_abstract_reference_declarator] = STATE(4825), + [sym__function_declarator_seq] = STATE(4934), + [aux_sym__type_definition_type_repeat1] = STATE(2297), + [aux_sym_pointer_declarator_repeat1] = STATE(2041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_RPAREN] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(7006), + [anon_sym_DASH] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6861), + [anon_sym_STAR] = ACTIONS(7008), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_PIPE_PIPE] = ACTIONS(6859), + [anon_sym_AMP_AMP] = ACTIONS(7010), + [anon_sym_PIPE] = ACTIONS(6861), + [anon_sym_CARET] = ACTIONS(6861), + [anon_sym_AMP] = ACTIONS(7012), + [anon_sym_EQ_EQ] = ACTIONS(6859), + [anon_sym_BANG_EQ] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6861), + [anon_sym_GT_EQ] = ACTIONS(6859), + [anon_sym_LT_EQ] = ACTIONS(6861), + [anon_sym_LT] = ACTIONS(6861), + [anon_sym_LT_LT] = ACTIONS(6861), + [anon_sym_GT_GT] = ACTIONS(6861), + [anon_sym___extension__] = ACTIONS(7014), + [sym_ms_restrict_modifier] = ACTIONS(7016), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7018), + [sym_ms_signed_ptr_modifier] = ACTIONS(7018), + [anon_sym__unaligned] = ACTIONS(7020), + [anon_sym___unaligned] = ACTIONS(7020), + [anon_sym_LBRACK] = ACTIONS(7022), + [anon_sym_EQ] = ACTIONS(6861), + [anon_sym_const] = ACTIONS(7024), + [anon_sym_constexpr] = ACTIONS(7014), + [anon_sym_volatile] = ACTIONS(7014), + [anon_sym_restrict] = ACTIONS(7014), + [anon_sym___restrict__] = ACTIONS(7014), + [anon_sym__Atomic] = ACTIONS(7014), + [anon_sym__Noreturn] = ACTIONS(7014), + [anon_sym_noreturn] = ACTIONS(7014), + [anon_sym__Nonnull] = ACTIONS(7014), + [anon_sym_mutable] = ACTIONS(7014), + [anon_sym_constinit] = ACTIONS(7014), + [anon_sym_consteval] = ACTIONS(7014), + [anon_sym_alignas] = ACTIONS(7026), + [anon_sym__Alignas] = ACTIONS(7026), + [anon_sym_QMARK] = ACTIONS(6859), + [anon_sym_STAR_EQ] = ACTIONS(6859), + [anon_sym_SLASH_EQ] = ACTIONS(6859), + [anon_sym_PERCENT_EQ] = ACTIONS(6859), + [anon_sym_PLUS_EQ] = ACTIONS(6859), + [anon_sym_DASH_EQ] = ACTIONS(6859), + [anon_sym_LT_LT_EQ] = ACTIONS(6859), + [anon_sym_GT_GT_EQ] = ACTIONS(6859), + [anon_sym_AMP_EQ] = ACTIONS(6859), + [anon_sym_CARET_EQ] = ACTIONS(6859), + [anon_sym_PIPE_EQ] = ACTIONS(6859), + [anon_sym_and_eq] = ACTIONS(6859), + [anon_sym_or_eq] = ACTIONS(6859), + [anon_sym_xor_eq] = ACTIONS(6859), + [anon_sym_LT_EQ_GT] = ACTIONS(6859), + [anon_sym_or] = ACTIONS(6861), + [anon_sym_and] = ACTIONS(6861), + [anon_sym_bitor] = ACTIONS(6859), + [anon_sym_xor] = ACTIONS(6861), + [anon_sym_bitand] = ACTIONS(6859), + [anon_sym_not_eq] = ACTIONS(6859), + [anon_sym_DASH_DASH] = ACTIONS(6859), + [anon_sym_PLUS_PLUS] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6861), + [anon_sym_DOT_STAR] = ACTIONS(6859), + [anon_sym_DASH_GT] = ACTIONS(6861), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6859), + [anon_sym_override] = ACTIONS(6859), + [anon_sym_requires] = ACTIONS(6859), + [anon_sym_DASH_GT_STAR] = ACTIONS(6859), + }, + [STATE(2039)] = { + [sym_string_literal] = STATE(3760), + [sym_decltype_auto] = STATE(3090), + [sym_template_argument_list] = STATE(3193), + [sym_raw_string_literal] = STATE(3760), + [aux_sym_sized_type_specifier_repeat1] = STATE(2476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), + [anon_sym_COMMA] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(5647), + [anon_sym_PLUS] = ACTIONS(5647), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5647), + [anon_sym_PERCENT] = ACTIONS(5647), + [anon_sym_PIPE_PIPE] = ACTIONS(5640), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5647), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5640), + [anon_sym_BANG_EQ] = ACTIONS(5640), + [anon_sym_GT] = ACTIONS(5647), + [anon_sym_GT_EQ] = ACTIONS(5647), + [anon_sym_LT_EQ] = ACTIONS(5647), + [anon_sym_LT] = ACTIONS(7028), + [anon_sym_LT_LT] = ACTIONS(5647), + [anon_sym_GT_GT] = ACTIONS(5647), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(7032), + [anon_sym_unsigned] = ACTIONS(7032), + [anon_sym_long] = ACTIONS(7032), + [anon_sym_short] = ACTIONS(7032), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_EQ] = ACTIONS(5647), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5643), + [anon_sym_volatile] = ACTIONS(5643), + [anon_sym_restrict] = ACTIONS(5643), + [anon_sym___restrict__] = ACTIONS(5643), + [anon_sym__Atomic] = ACTIONS(5643), + [anon_sym__Noreturn] = ACTIONS(5643), + [anon_sym_noreturn] = ACTIONS(5643), + [anon_sym__Nonnull] = ACTIONS(5643), + [anon_sym_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [anon_sym_alignas] = ACTIONS(5643), + [anon_sym__Alignas] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5640), + [anon_sym_STAR_EQ] = ACTIONS(5640), + [anon_sym_SLASH_EQ] = ACTIONS(5640), + [anon_sym_PERCENT_EQ] = ACTIONS(5640), + [anon_sym_PLUS_EQ] = ACTIONS(5640), + [anon_sym_DASH_EQ] = ACTIONS(5640), + [anon_sym_LT_LT_EQ] = ACTIONS(5640), + [anon_sym_GT_GT_EQ] = ACTIONS(5647), + [anon_sym_AMP_EQ] = ACTIONS(5640), + [anon_sym_CARET_EQ] = ACTIONS(5640), + [anon_sym_PIPE_EQ] = ACTIONS(5640), + [anon_sym_and_eq] = ACTIONS(5640), + [anon_sym_or_eq] = ACTIONS(5640), + [anon_sym_xor_eq] = ACTIONS(5640), + [anon_sym_LT_EQ_GT] = ACTIONS(5640), + [anon_sym_or] = ACTIONS(5647), + [anon_sym_and] = ACTIONS(5647), + [anon_sym_bitor] = ACTIONS(5640), + [anon_sym_xor] = ACTIONS(5647), + [anon_sym_bitand] = ACTIONS(5640), + [anon_sym_not_eq] = ACTIONS(5640), + [anon_sym_DASH_DASH] = ACTIONS(5640), + [anon_sym_PLUS_PLUS] = ACTIONS(5640), + [anon_sym_DOT] = ACTIONS(5647), + [anon_sym_DOT_STAR] = ACTIONS(5640), + [anon_sym_DASH_GT] = ACTIONS(5640), + [anon_sym_L_DQUOTE] = ACTIONS(7034), + [anon_sym_u_DQUOTE] = ACTIONS(7034), + [anon_sym_U_DQUOTE] = ACTIONS(7034), + [anon_sym_u8_DQUOTE] = ACTIONS(7034), + [anon_sym_DQUOTE] = ACTIONS(7034), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7036), + [anon_sym_decltype] = ACTIONS(7038), + [anon_sym_GT2] = ACTIONS(5640), + [anon_sym_R_DQUOTE] = ACTIONS(7040), + [anon_sym_LR_DQUOTE] = ACTIONS(7040), + [anon_sym_uR_DQUOTE] = ACTIONS(7040), + [anon_sym_UR_DQUOTE] = ACTIONS(7040), + [anon_sym_u8R_DQUOTE] = ACTIONS(7040), + }, + [STATE(2040)] = { + [sym_string_literal] = STATE(5580), + [sym_decltype_auto] = STATE(4116), + [sym_template_argument_list] = STATE(4691), + [sym_raw_string_literal] = STATE(5580), + [aux_sym_sized_type_specifier_repeat1] = STATE(3285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), + [anon_sym_COMMA] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(5647), + [anon_sym_PLUS] = ACTIONS(5647), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5647), + [anon_sym_PERCENT] = ACTIONS(5647), + [anon_sym_PIPE_PIPE] = ACTIONS(5640), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5647), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5640), + [anon_sym_BANG_EQ] = ACTIONS(5640), + [anon_sym_GT] = ACTIONS(5647), + [anon_sym_GT_EQ] = ACTIONS(5640), + [anon_sym_LT_EQ] = ACTIONS(5647), + [anon_sym_LT] = ACTIONS(6801), + [anon_sym_LT_LT] = ACTIONS(5647), + [anon_sym_GT_GT] = ACTIONS(5647), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(7042), + [anon_sym_unsigned] = ACTIONS(7042), + [anon_sym_long] = ACTIONS(7042), + [anon_sym_short] = ACTIONS(7042), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_RBRACK] = ACTIONS(5640), + [anon_sym_EQ] = ACTIONS(7044), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5643), + [anon_sym_volatile] = ACTIONS(5643), + [anon_sym_restrict] = ACTIONS(5643), + [anon_sym___restrict__] = ACTIONS(5643), + [anon_sym__Atomic] = ACTIONS(5643), + [anon_sym__Noreturn] = ACTIONS(5643), + [anon_sym_noreturn] = ACTIONS(5643), + [anon_sym__Nonnull] = ACTIONS(5643), + [anon_sym_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [anon_sym_alignas] = ACTIONS(5643), + [anon_sym__Alignas] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5640), + [anon_sym_STAR_EQ] = ACTIONS(7046), + [anon_sym_SLASH_EQ] = ACTIONS(7046), + [anon_sym_PERCENT_EQ] = ACTIONS(7046), + [anon_sym_PLUS_EQ] = ACTIONS(7046), + [anon_sym_DASH_EQ] = ACTIONS(7046), + [anon_sym_LT_LT_EQ] = ACTIONS(7046), + [anon_sym_GT_GT_EQ] = ACTIONS(7046), + [anon_sym_AMP_EQ] = ACTIONS(7046), + [anon_sym_CARET_EQ] = ACTIONS(7046), + [anon_sym_PIPE_EQ] = ACTIONS(7046), + [anon_sym_and_eq] = ACTIONS(7046), + [anon_sym_or_eq] = ACTIONS(7046), + [anon_sym_xor_eq] = ACTIONS(7046), + [anon_sym_LT_EQ_GT] = ACTIONS(5640), + [anon_sym_or] = ACTIONS(5647), + [anon_sym_and] = ACTIONS(5647), + [anon_sym_bitor] = ACTIONS(5640), + [anon_sym_xor] = ACTIONS(5647), + [anon_sym_bitand] = ACTIONS(5640), + [anon_sym_not_eq] = ACTIONS(5640), + [anon_sym_DASH_DASH] = ACTIONS(5640), + [anon_sym_PLUS_PLUS] = ACTIONS(5640), + [anon_sym_DOT] = ACTIONS(5647), + [anon_sym_DOT_STAR] = ACTIONS(5640), + [anon_sym_DASH_GT] = ACTIONS(5640), + [anon_sym_L_DQUOTE] = ACTIONS(7048), + [anon_sym_u_DQUOTE] = ACTIONS(7048), + [anon_sym_U_DQUOTE] = ACTIONS(7048), + [anon_sym_u8_DQUOTE] = ACTIONS(7048), + [anon_sym_DQUOTE] = ACTIONS(7048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7050), + [anon_sym_decltype] = ACTIONS(7052), + [anon_sym_R_DQUOTE] = ACTIONS(7054), + [anon_sym_LR_DQUOTE] = ACTIONS(7054), + [anon_sym_uR_DQUOTE] = ACTIONS(7054), + [anon_sym_UR_DQUOTE] = ACTIONS(7054), + [anon_sym_u8R_DQUOTE] = ACTIONS(7054), + }, + [STATE(2041)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2618), + [sym_ms_pointer_modifier] = STATE(2429), + [sym__abstract_declarator] = STATE(4552), + [sym_abstract_parenthesized_declarator] = STATE(4825), + [sym_abstract_pointer_declarator] = STATE(4825), + [sym_abstract_function_declarator] = STATE(4825), + [sym_abstract_array_declarator] = STATE(4825), + [sym_type_qualifier] = STATE(2299), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1972), + [sym_abstract_reference_declarator] = STATE(4825), + [sym__function_declarator_seq] = STATE(4934), + [aux_sym__type_definition_type_repeat1] = STATE(2299), + [aux_sym_pointer_declarator_repeat1] = STATE(2429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(7006), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(7008), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(7010), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(7012), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(7014), + [sym_ms_restrict_modifier] = ACTIONS(7016), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7018), + [sym_ms_signed_ptr_modifier] = ACTIONS(7018), + [anon_sym__unaligned] = ACTIONS(7020), + [anon_sym___unaligned] = ACTIONS(7020), + [anon_sym_LBRACK] = ACTIONS(7022), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(7024), + [anon_sym_constexpr] = ACTIONS(7014), + [anon_sym_volatile] = ACTIONS(7014), + [anon_sym_restrict] = ACTIONS(7014), + [anon_sym___restrict__] = ACTIONS(7014), + [anon_sym__Atomic] = ACTIONS(7014), + [anon_sym__Noreturn] = ACTIONS(7014), + [anon_sym_noreturn] = ACTIONS(7014), + [anon_sym__Nonnull] = ACTIONS(7014), + [anon_sym_mutable] = ACTIONS(7014), + [anon_sym_constinit] = ACTIONS(7014), + [anon_sym_consteval] = ACTIONS(7014), + [anon_sym_alignas] = ACTIONS(7026), + [anon_sym__Alignas] = ACTIONS(7026), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6823), + [anon_sym_or_eq] = ACTIONS(6823), + [anon_sym_xor_eq] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6821), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6823), + [anon_sym_override] = ACTIONS(6823), + [anon_sym_requires] = ACTIONS(6823), + [anon_sym_DASH_GT_STAR] = ACTIONS(6823), + }, + [STATE(2042)] = { + [sym_string_literal] = STATE(4105), + [sym_decltype_auto] = STATE(3203), + [sym_template_argument_list] = STATE(3449), + [sym_raw_string_literal] = STATE(4105), + [aux_sym_sized_type_specifier_repeat1] = STATE(3552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), + [anon_sym_COMMA] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(5647), + [anon_sym_PLUS] = ACTIONS(5647), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5647), + [anon_sym_PERCENT] = ACTIONS(5647), + [anon_sym_PIPE_PIPE] = ACTIONS(5640), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5647), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5640), + [anon_sym_BANG_EQ] = ACTIONS(5640), + [anon_sym_GT] = ACTIONS(5647), + [anon_sym_GT_EQ] = ACTIONS(5640), + [anon_sym_LT_EQ] = ACTIONS(5647), + [anon_sym_LT] = ACTIONS(6863), + [anon_sym_LT_LT] = ACTIONS(5647), + [anon_sym_GT_GT] = ACTIONS(5647), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym_COLON] = ACTIONS(5647), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(6867), + [anon_sym_unsigned] = ACTIONS(6867), + [anon_sym_long] = ACTIONS(6867), + [anon_sym_short] = ACTIONS(6867), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_EQ] = ACTIONS(7056), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5643), + [anon_sym_volatile] = ACTIONS(5643), + [anon_sym_restrict] = ACTIONS(5643), + [anon_sym___restrict__] = ACTIONS(5643), + [anon_sym__Atomic] = ACTIONS(5643), + [anon_sym__Noreturn] = ACTIONS(5643), + [anon_sym_noreturn] = ACTIONS(5643), + [anon_sym__Nonnull] = ACTIONS(5643), + [anon_sym_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [anon_sym_alignas] = ACTIONS(5643), + [anon_sym__Alignas] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5640), + [anon_sym_STAR_EQ] = ACTIONS(7058), + [anon_sym_SLASH_EQ] = ACTIONS(7058), + [anon_sym_PERCENT_EQ] = ACTIONS(7058), + [anon_sym_PLUS_EQ] = ACTIONS(7058), + [anon_sym_DASH_EQ] = ACTIONS(7058), + [anon_sym_LT_LT_EQ] = ACTIONS(7058), + [anon_sym_GT_GT_EQ] = ACTIONS(7058), + [anon_sym_AMP_EQ] = ACTIONS(7058), + [anon_sym_CARET_EQ] = ACTIONS(7058), + [anon_sym_PIPE_EQ] = ACTIONS(7058), + [anon_sym_and_eq] = ACTIONS(7058), + [anon_sym_or_eq] = ACTIONS(7058), + [anon_sym_xor_eq] = ACTIONS(7058), + [anon_sym_LT_EQ_GT] = ACTIONS(5640), + [anon_sym_or] = ACTIONS(5647), + [anon_sym_and] = ACTIONS(5647), + [anon_sym_bitor] = ACTIONS(5640), + [anon_sym_xor] = ACTIONS(5647), + [anon_sym_bitand] = ACTIONS(5640), + [anon_sym_not_eq] = ACTIONS(5640), + [anon_sym_DASH_DASH] = ACTIONS(5640), + [anon_sym_PLUS_PLUS] = ACTIONS(5640), + [anon_sym_DOT] = ACTIONS(5647), + [anon_sym_DOT_STAR] = ACTIONS(5640), + [anon_sym_DASH_GT] = ACTIONS(5640), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6869), + [anon_sym_decltype] = ACTIONS(6871), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + }, + [STATE(2043)] = { + [sym_string_literal] = STATE(5659), + [sym_decltype_auto] = STATE(4458), + [sym_template_argument_list] = STATE(4725), + [sym_raw_string_literal] = STATE(5659), + [aux_sym_sized_type_specifier_repeat1] = STATE(4015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), + [anon_sym_COMMA] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5645), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(7060), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(6981), + [anon_sym_unsigned] = ACTIONS(6981), + [anon_sym_long] = ACTIONS(6981), + [anon_sym_short] = ACTIONS(6981), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_EQ] = ACTIONS(6983), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5643), + [anon_sym_volatile] = ACTIONS(5643), + [anon_sym_restrict] = ACTIONS(5643), + [anon_sym___restrict__] = ACTIONS(5643), + [anon_sym__Atomic] = ACTIONS(5643), + [anon_sym__Noreturn] = ACTIONS(5643), + [anon_sym_noreturn] = ACTIONS(5643), + [anon_sym__Nonnull] = ACTIONS(5643), + [anon_sym_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [anon_sym_alignas] = ACTIONS(5643), + [anon_sym__Alignas] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(6985), + [anon_sym_SLASH_EQ] = ACTIONS(6985), + [anon_sym_PERCENT_EQ] = ACTIONS(6985), + [anon_sym_PLUS_EQ] = ACTIONS(6985), + [anon_sym_DASH_EQ] = ACTIONS(6985), + [anon_sym_LT_LT_EQ] = ACTIONS(6985), + [anon_sym_GT_GT_EQ] = ACTIONS(6983), + [anon_sym_AMP_EQ] = ACTIONS(6985), + [anon_sym_CARET_EQ] = ACTIONS(6985), + [anon_sym_PIPE_EQ] = ACTIONS(6985), + [anon_sym_and_eq] = ACTIONS(6985), + [anon_sym_or_eq] = ACTIONS(6985), + [anon_sym_xor_eq] = ACTIONS(6985), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(6987), + [anon_sym_u_DQUOTE] = ACTIONS(6987), + [anon_sym_U_DQUOTE] = ACTIONS(6987), + [anon_sym_u8_DQUOTE] = ACTIONS(6987), + [anon_sym_DQUOTE] = ACTIONS(6987), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6989), + [anon_sym_decltype] = ACTIONS(6991), + [anon_sym_GT2] = ACTIONS(5640), + [anon_sym_R_DQUOTE] = ACTIONS(6993), + [anon_sym_LR_DQUOTE] = ACTIONS(6993), + [anon_sym_uR_DQUOTE] = ACTIONS(6993), + [anon_sym_UR_DQUOTE] = ACTIONS(6993), + [anon_sym_u8R_DQUOTE] = ACTIONS(6993), + }, + [STATE(2044)] = { + [sym_string_literal] = STATE(3730), + [sym_decltype_auto] = STATE(3244), + [sym_template_argument_list] = STATE(3131), + [sym_raw_string_literal] = STATE(3730), + [aux_sym_sized_type_specifier_repeat1] = STATE(2209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), + [anon_sym_COMMA] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(5647), + [anon_sym_PLUS] = ACTIONS(5647), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5647), + [anon_sym_PERCENT] = ACTIONS(5647), + [anon_sym_PIPE_PIPE] = ACTIONS(5640), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5647), + [anon_sym_CARET] = ACTIONS(5647), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5640), + [anon_sym_BANG_EQ] = ACTIONS(5640), + [anon_sym_GT] = ACTIONS(5647), + [anon_sym_GT_EQ] = ACTIONS(5640), + [anon_sym_LT_EQ] = ACTIONS(5647), + [anon_sym_LT] = ACTIONS(7063), + [anon_sym_LT_LT] = ACTIONS(5647), + [anon_sym_GT_GT] = ACTIONS(5647), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(7067), + [anon_sym_unsigned] = ACTIONS(7067), + [anon_sym_long] = ACTIONS(7067), + [anon_sym_short] = ACTIONS(7067), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_RBRACK] = ACTIONS(5640), + [anon_sym_EQ] = ACTIONS(5647), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5643), + [anon_sym_volatile] = ACTIONS(5643), + [anon_sym_restrict] = ACTIONS(5643), + [anon_sym___restrict__] = ACTIONS(5643), + [anon_sym__Atomic] = ACTIONS(5643), + [anon_sym__Noreturn] = ACTIONS(5643), + [anon_sym_noreturn] = ACTIONS(5643), + [anon_sym__Nonnull] = ACTIONS(5643), + [anon_sym_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [anon_sym_alignas] = ACTIONS(5643), + [anon_sym__Alignas] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5640), + [anon_sym_STAR_EQ] = ACTIONS(5640), + [anon_sym_SLASH_EQ] = ACTIONS(5640), + [anon_sym_PERCENT_EQ] = ACTIONS(5640), + [anon_sym_PLUS_EQ] = ACTIONS(5640), + [anon_sym_DASH_EQ] = ACTIONS(5640), + [anon_sym_LT_LT_EQ] = ACTIONS(5640), + [anon_sym_GT_GT_EQ] = ACTIONS(5640), + [anon_sym_AMP_EQ] = ACTIONS(5640), + [anon_sym_CARET_EQ] = ACTIONS(5640), + [anon_sym_PIPE_EQ] = ACTIONS(5640), + [anon_sym_and_eq] = ACTIONS(5640), + [anon_sym_or_eq] = ACTIONS(5640), + [anon_sym_xor_eq] = ACTIONS(5640), + [anon_sym_LT_EQ_GT] = ACTIONS(5640), + [anon_sym_or] = ACTIONS(5647), + [anon_sym_and] = ACTIONS(5647), + [anon_sym_bitor] = ACTIONS(5640), + [anon_sym_xor] = ACTIONS(5647), + [anon_sym_bitand] = ACTIONS(5640), + [anon_sym_not_eq] = ACTIONS(5640), + [anon_sym_DASH_DASH] = ACTIONS(5640), + [anon_sym_PLUS_PLUS] = ACTIONS(5640), + [anon_sym_DOT] = ACTIONS(5647), + [anon_sym_DOT_STAR] = ACTIONS(5640), + [anon_sym_DASH_GT] = ACTIONS(5640), + [anon_sym_L_DQUOTE] = ACTIONS(7069), + [anon_sym_u_DQUOTE] = ACTIONS(7069), + [anon_sym_U_DQUOTE] = ACTIONS(7069), + [anon_sym_u8_DQUOTE] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7071), + [anon_sym_decltype] = ACTIONS(7073), + [anon_sym_R_DQUOTE] = ACTIONS(7075), + [anon_sym_LR_DQUOTE] = ACTIONS(7075), + [anon_sym_uR_DQUOTE] = ACTIONS(7075), + [anon_sym_UR_DQUOTE] = ACTIONS(7075), + [anon_sym_u8R_DQUOTE] = ACTIONS(7075), + }, + [STATE(2045)] = { + [sym_identifier] = ACTIONS(7077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), + [anon_sym_COMMA] = ACTIONS(7079), + [anon_sym_RPAREN] = ACTIONS(7079), + [aux_sym_preproc_if_token2] = ACTIONS(7079), + [aux_sym_preproc_else_token1] = ACTIONS(7079), + [aux_sym_preproc_elif_token1] = ACTIONS(7077), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7079), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7079), + [anon_sym_LPAREN2] = ACTIONS(7079), + [anon_sym_DASH] = ACTIONS(7077), + [anon_sym_PLUS] = ACTIONS(7077), + [anon_sym_STAR] = ACTIONS(7077), + [anon_sym_SLASH] = ACTIONS(7077), + [anon_sym_PERCENT] = ACTIONS(7077), + [anon_sym_PIPE_PIPE] = ACTIONS(7079), + [anon_sym_AMP_AMP] = ACTIONS(7079), + [anon_sym_PIPE] = ACTIONS(7077), + [anon_sym_CARET] = ACTIONS(7077), + [anon_sym_AMP] = ACTIONS(7077), + [anon_sym_EQ_EQ] = ACTIONS(7079), + [anon_sym_BANG_EQ] = ACTIONS(7079), + [anon_sym_GT] = ACTIONS(7077), + [anon_sym_GT_EQ] = ACTIONS(7079), + [anon_sym_LT_EQ] = ACTIONS(7077), + [anon_sym_LT] = ACTIONS(7077), + [anon_sym_LT_LT] = ACTIONS(7077), + [anon_sym_GT_GT] = ACTIONS(7077), + [anon_sym_SEMI] = ACTIONS(7079), + [anon_sym___extension__] = ACTIONS(7077), + [anon_sym___attribute__] = ACTIONS(7077), + [anon_sym___attribute] = ACTIONS(7077), + [anon_sym_COLON] = ACTIONS(7077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7079), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7079), + [anon_sym_RBRACE] = ACTIONS(7079), + [anon_sym_LBRACK] = ACTIONS(7077), + [anon_sym_EQ] = ACTIONS(7077), + [anon_sym_const] = ACTIONS(7077), + [anon_sym_constexpr] = ACTIONS(7077), + [anon_sym_volatile] = ACTIONS(7077), + [anon_sym_restrict] = ACTIONS(7077), + [anon_sym___restrict__] = ACTIONS(7077), + [anon_sym__Atomic] = ACTIONS(7077), + [anon_sym__Noreturn] = ACTIONS(7077), + [anon_sym_noreturn] = ACTIONS(7077), + [anon_sym__Nonnull] = ACTIONS(7077), + [anon_sym_mutable] = ACTIONS(7077), + [anon_sym_constinit] = ACTIONS(7077), + [anon_sym_consteval] = ACTIONS(7077), + [anon_sym_alignas] = ACTIONS(7077), + [anon_sym__Alignas] = ACTIONS(7077), + [anon_sym_QMARK] = ACTIONS(7079), + [anon_sym_STAR_EQ] = ACTIONS(7079), + [anon_sym_SLASH_EQ] = ACTIONS(7079), + [anon_sym_PERCENT_EQ] = ACTIONS(7079), + [anon_sym_PLUS_EQ] = ACTIONS(7079), + [anon_sym_DASH_EQ] = ACTIONS(7079), + [anon_sym_LT_LT_EQ] = ACTIONS(7079), + [anon_sym_GT_GT_EQ] = ACTIONS(7079), + [anon_sym_AMP_EQ] = ACTIONS(7079), + [anon_sym_CARET_EQ] = ACTIONS(7079), + [anon_sym_PIPE_EQ] = ACTIONS(7079), + [anon_sym_and_eq] = ACTIONS(7077), + [anon_sym_or_eq] = ACTIONS(7077), + [anon_sym_xor_eq] = ACTIONS(7077), + [anon_sym_LT_EQ_GT] = ACTIONS(7079), + [anon_sym_or] = ACTIONS(7077), + [anon_sym_and] = ACTIONS(7077), + [anon_sym_bitor] = ACTIONS(7077), + [anon_sym_xor] = ACTIONS(7077), + [anon_sym_bitand] = ACTIONS(7077), + [anon_sym_not_eq] = ACTIONS(7077), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_asm] = ACTIONS(7077), + [anon_sym___asm__] = ACTIONS(7077), + [anon_sym___asm] = ACTIONS(7077), + [anon_sym_DOT] = ACTIONS(7077), + [anon_sym_DOT_STAR] = ACTIONS(7079), + [anon_sym_DASH_GT] = ACTIONS(7079), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7077), + [anon_sym_override] = ACTIONS(7077), + [anon_sym_noexcept] = ACTIONS(7077), + [anon_sym_throw] = ACTIONS(7077), + [anon_sym_requires] = ACTIONS(7077), + [anon_sym_COLON_RBRACK] = ACTIONS(7079), + }, + [STATE(2046)] = { + [sym_identifier] = ACTIONS(6628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6630), + [anon_sym_COMMA] = ACTIONS(6630), + [anon_sym_RPAREN] = ACTIONS(6630), + [anon_sym_LPAREN2] = ACTIONS(6630), + [anon_sym_TILDE] = ACTIONS(6630), + [anon_sym_DASH] = ACTIONS(6628), + [anon_sym_PLUS] = ACTIONS(6628), + [anon_sym_STAR] = ACTIONS(6628), + [anon_sym_SLASH] = ACTIONS(6628), + [anon_sym_PERCENT] = ACTIONS(6628), + [anon_sym_PIPE_PIPE] = ACTIONS(6630), + [anon_sym_AMP_AMP] = ACTIONS(6630), + [anon_sym_PIPE] = ACTIONS(6628), + [anon_sym_CARET] = ACTIONS(6628), + [anon_sym_AMP] = ACTIONS(6628), + [anon_sym_EQ_EQ] = ACTIONS(6630), + [anon_sym_BANG_EQ] = ACTIONS(6630), + [anon_sym_GT] = ACTIONS(6628), + [anon_sym_GT_EQ] = ACTIONS(6630), + [anon_sym_LT_EQ] = ACTIONS(6628), + [anon_sym_LT] = ACTIONS(6628), + [anon_sym_LT_LT] = ACTIONS(6628), + [anon_sym_GT_GT] = ACTIONS(6628), + [anon_sym___extension__] = ACTIONS(6628), + [anon_sym_virtual] = ACTIONS(6628), + [anon_sym_extern] = ACTIONS(6628), + [anon_sym___attribute__] = ACTIONS(6628), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_COLON_COLON] = ACTIONS(6630), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), + [anon_sym___declspec] = ACTIONS(6628), + [anon_sym___based] = ACTIONS(6628), + [anon_sym_LBRACE] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(6628), + [anon_sym_static] = ACTIONS(6628), + [anon_sym_EQ] = ACTIONS(6628), + [anon_sym_register] = ACTIONS(6628), + [anon_sym_inline] = ACTIONS(6628), + [anon_sym___inline] = ACTIONS(6628), + [anon_sym___inline__] = ACTIONS(6628), + [anon_sym___forceinline] = ACTIONS(6628), + [anon_sym_thread_local] = ACTIONS(6628), + [anon_sym___thread] = ACTIONS(6628), + [anon_sym_const] = ACTIONS(6628), + [anon_sym_constexpr] = ACTIONS(6628), + [anon_sym_volatile] = ACTIONS(6628), + [anon_sym_restrict] = ACTIONS(6628), + [anon_sym___restrict__] = ACTIONS(6628), + [anon_sym__Atomic] = ACTIONS(6628), + [anon_sym__Noreturn] = ACTIONS(6628), + [anon_sym_noreturn] = ACTIONS(6628), + [anon_sym__Nonnull] = ACTIONS(6628), + [anon_sym_mutable] = ACTIONS(6628), + [anon_sym_constinit] = ACTIONS(6628), + [anon_sym_consteval] = ACTIONS(6628), + [anon_sym_alignas] = ACTIONS(6628), + [anon_sym__Alignas] = ACTIONS(6628), + [anon_sym_QMARK] = ACTIONS(6630), + [anon_sym_STAR_EQ] = ACTIONS(6630), + [anon_sym_SLASH_EQ] = ACTIONS(6630), + [anon_sym_PERCENT_EQ] = ACTIONS(6630), + [anon_sym_PLUS_EQ] = ACTIONS(6630), + [anon_sym_DASH_EQ] = ACTIONS(6630), + [anon_sym_LT_LT_EQ] = ACTIONS(6630), + [anon_sym_GT_GT_EQ] = ACTIONS(6630), + [anon_sym_AMP_EQ] = ACTIONS(6630), + [anon_sym_CARET_EQ] = ACTIONS(6630), + [anon_sym_PIPE_EQ] = ACTIONS(6630), + [anon_sym_LT_EQ_GT] = ACTIONS(6630), + [anon_sym_or] = ACTIONS(6628), + [anon_sym_and] = ACTIONS(6628), + [anon_sym_bitor] = ACTIONS(6628), + [anon_sym_xor] = ACTIONS(6628), + [anon_sym_bitand] = ACTIONS(6628), + [anon_sym_not_eq] = ACTIONS(6628), + [anon_sym_DASH_DASH] = ACTIONS(6630), + [anon_sym_PLUS_PLUS] = ACTIONS(6630), + [anon_sym_DOT] = ACTIONS(6628), + [anon_sym_DOT_STAR] = ACTIONS(6630), + [anon_sym_DASH_GT] = ACTIONS(6628), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6628), + [anon_sym_decltype] = ACTIONS(6628), + [anon_sym_template] = ACTIONS(6628), + [anon_sym_operator] = ACTIONS(6628), + [anon_sym_DASH_GT_STAR] = ACTIONS(6630), + [anon_sym_LBRACK_COLON] = ACTIONS(6630), + }, + [STATE(2047)] = { + [sym_identifier] = ACTIONS(3128), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), + [anon_sym_COMMA] = ACTIONS(3118), + [anon_sym_RPAREN] = ACTIONS(3118), + [aux_sym_preproc_if_token2] = ACTIONS(3118), + [aux_sym_preproc_else_token1] = ACTIONS(3118), + [aux_sym_preproc_elif_token1] = ACTIONS(3128), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3118), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3118), + [anon_sym_LPAREN2] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_SLASH] = ACTIONS(3128), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_PIPE_PIPE] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_CARET] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3128), + [anon_sym_GT_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(3128), + [anon_sym_LT_LT] = ACTIONS(3128), + [anon_sym_GT_GT] = ACTIONS(3128), + [anon_sym_SEMI] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_COLON] = ACTIONS(3128), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_RBRACE] = ACTIONS(3118), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3128), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_STAR_EQ] = ACTIONS(3118), + [anon_sym_SLASH_EQ] = ACTIONS(3118), + [anon_sym_PERCENT_EQ] = ACTIONS(3118), + [anon_sym_PLUS_EQ] = ACTIONS(3118), + [anon_sym_DASH_EQ] = ACTIONS(3118), + [anon_sym_LT_LT_EQ] = ACTIONS(3118), + [anon_sym_GT_GT_EQ] = ACTIONS(3118), + [anon_sym_AMP_EQ] = ACTIONS(3118), + [anon_sym_CARET_EQ] = ACTIONS(3118), + [anon_sym_PIPE_EQ] = ACTIONS(3118), + [anon_sym_and_eq] = ACTIONS(3128), + [anon_sym_or_eq] = ACTIONS(3128), + [anon_sym_xor_eq] = ACTIONS(3128), + [anon_sym_LT_EQ_GT] = ACTIONS(3118), + [anon_sym_or] = ACTIONS(3128), + [anon_sym_and] = ACTIONS(3128), + [anon_sym_bitor] = ACTIONS(3128), + [anon_sym_xor] = ACTIONS(3128), + [anon_sym_bitand] = ACTIONS(3128), + [anon_sym_not_eq] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_DOT] = ACTIONS(3128), + [anon_sym_DOT_STAR] = ACTIONS(3118), + [anon_sym_DASH_GT] = ACTIONS(3118), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3128), + [anon_sym_override] = ACTIONS(3128), + [anon_sym_requires] = ACTIONS(3128), + [anon_sym_COLON_RBRACK] = ACTIONS(3118), + }, + [STATE(2048)] = { + [sym_identifier] = ACTIONS(7081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7083), + [anon_sym_COMMA] = ACTIONS(7083), + [anon_sym_RPAREN] = ACTIONS(7083), + [aux_sym_preproc_if_token2] = ACTIONS(7083), + [aux_sym_preproc_else_token1] = ACTIONS(7083), + [aux_sym_preproc_elif_token1] = ACTIONS(7081), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7083), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7083), + [anon_sym_LPAREN2] = ACTIONS(7083), + [anon_sym_DASH] = ACTIONS(7081), + [anon_sym_PLUS] = ACTIONS(7081), + [anon_sym_STAR] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7081), + [anon_sym_PERCENT] = ACTIONS(7081), + [anon_sym_PIPE_PIPE] = ACTIONS(7083), + [anon_sym_AMP_AMP] = ACTIONS(7083), + [anon_sym_PIPE] = ACTIONS(7081), + [anon_sym_CARET] = ACTIONS(7081), + [anon_sym_AMP] = ACTIONS(7081), + [anon_sym_EQ_EQ] = ACTIONS(7083), + [anon_sym_BANG_EQ] = ACTIONS(7083), + [anon_sym_GT] = ACTIONS(7081), + [anon_sym_GT_EQ] = ACTIONS(7083), + [anon_sym_LT_EQ] = ACTIONS(7081), + [anon_sym_LT] = ACTIONS(7081), + [anon_sym_LT_LT] = ACTIONS(7081), + [anon_sym_GT_GT] = ACTIONS(7081), + [anon_sym_SEMI] = ACTIONS(7083), + [anon_sym___extension__] = ACTIONS(7081), + [anon_sym___attribute__] = ACTIONS(7081), + [anon_sym___attribute] = ACTIONS(7081), + [anon_sym_COLON] = ACTIONS(7081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7083), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7083), + [anon_sym_RBRACE] = ACTIONS(7083), + [anon_sym_LBRACK] = ACTIONS(7081), + [anon_sym_EQ] = ACTIONS(7081), + [anon_sym_const] = ACTIONS(7081), + [anon_sym_constexpr] = ACTIONS(7081), + [anon_sym_volatile] = ACTIONS(7081), + [anon_sym_restrict] = ACTIONS(7081), + [anon_sym___restrict__] = ACTIONS(7081), + [anon_sym__Atomic] = ACTIONS(7081), + [anon_sym__Noreturn] = ACTIONS(7081), + [anon_sym_noreturn] = ACTIONS(7081), + [anon_sym__Nonnull] = ACTIONS(7081), + [anon_sym_mutable] = ACTIONS(7081), + [anon_sym_constinit] = ACTIONS(7081), + [anon_sym_consteval] = ACTIONS(7081), + [anon_sym_alignas] = ACTIONS(7081), + [anon_sym__Alignas] = ACTIONS(7081), + [anon_sym_QMARK] = ACTIONS(7083), + [anon_sym_STAR_EQ] = ACTIONS(7083), + [anon_sym_SLASH_EQ] = ACTIONS(7083), + [anon_sym_PERCENT_EQ] = ACTIONS(7083), + [anon_sym_PLUS_EQ] = ACTIONS(7083), + [anon_sym_DASH_EQ] = ACTIONS(7083), + [anon_sym_LT_LT_EQ] = ACTIONS(7083), + [anon_sym_GT_GT_EQ] = ACTIONS(7083), + [anon_sym_AMP_EQ] = ACTIONS(7083), + [anon_sym_CARET_EQ] = ACTIONS(7083), + [anon_sym_PIPE_EQ] = ACTIONS(7083), + [anon_sym_and_eq] = ACTIONS(7081), + [anon_sym_or_eq] = ACTIONS(7081), + [anon_sym_xor_eq] = ACTIONS(7081), + [anon_sym_LT_EQ_GT] = ACTIONS(7083), + [anon_sym_or] = ACTIONS(7081), + [anon_sym_and] = ACTIONS(7081), + [anon_sym_bitor] = ACTIONS(7081), + [anon_sym_xor] = ACTIONS(7081), + [anon_sym_bitand] = ACTIONS(7081), + [anon_sym_not_eq] = ACTIONS(7081), + [anon_sym_DASH_DASH] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7083), + [anon_sym_asm] = ACTIONS(7081), + [anon_sym___asm__] = ACTIONS(7081), + [anon_sym___asm] = ACTIONS(7081), + [anon_sym_DOT] = ACTIONS(7081), + [anon_sym_DOT_STAR] = ACTIONS(7083), + [anon_sym_DASH_GT] = ACTIONS(7083), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7081), + [anon_sym_override] = ACTIONS(7081), + [anon_sym_noexcept] = ACTIONS(7081), + [anon_sym_throw] = ACTIONS(7081), + [anon_sym_requires] = ACTIONS(7081), + [anon_sym_COLON_RBRACK] = ACTIONS(7083), + }, + [STATE(2049)] = { + [sym_template_argument_list] = STATE(5613), + [sym_identifier] = ACTIONS(7085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7087), + [anon_sym_COMMA] = ACTIONS(7087), + [anon_sym_RPAREN] = ACTIONS(7087), + [anon_sym_LPAREN2] = ACTIONS(7087), + [anon_sym_TILDE] = ACTIONS(7090), + [anon_sym_DASH] = ACTIONS(7092), + [anon_sym_PLUS] = ACTIONS(7092), + [anon_sym_STAR] = ACTIONS(7094), + [anon_sym_SLASH] = ACTIONS(7092), + [anon_sym_PERCENT] = ACTIONS(7092), + [anon_sym_PIPE_PIPE] = ACTIONS(7097), + [anon_sym_AMP_AMP] = ACTIONS(7087), + [anon_sym_PIPE] = ACTIONS(7092), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_AMP] = ACTIONS(7094), + [anon_sym_EQ_EQ] = ACTIONS(7097), + [anon_sym_BANG_EQ] = ACTIONS(7097), + [anon_sym_GT] = ACTIONS(7092), + [anon_sym_GT_EQ] = ACTIONS(7097), + [anon_sym_LT_EQ] = ACTIONS(7092), + [anon_sym_LT] = ACTIONS(7099), + [anon_sym_LT_LT] = ACTIONS(7092), + [anon_sym_GT_GT] = ACTIONS(7092), + [anon_sym___extension__] = ACTIONS(7085), + [anon_sym_virtual] = ACTIONS(7085), + [anon_sym_extern] = ACTIONS(7085), + [anon_sym___attribute__] = ACTIONS(7085), + [anon_sym___attribute] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7087), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7090), + [anon_sym___declspec] = ACTIONS(7085), + [anon_sym___based] = ACTIONS(7085), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_LBRACK] = ACTIONS(7094), + [anon_sym_static] = ACTIONS(7085), + [anon_sym_EQ] = ACTIONS(7094), + [anon_sym_register] = ACTIONS(7085), + [anon_sym_inline] = ACTIONS(7085), + [anon_sym___inline] = ACTIONS(7085), + [anon_sym___inline__] = ACTIONS(7085), + [anon_sym___forceinline] = ACTIONS(7085), + [anon_sym_thread_local] = ACTIONS(7085), + [anon_sym___thread] = ACTIONS(7085), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7085), + [anon_sym_volatile] = ACTIONS(7085), + [anon_sym_restrict] = ACTIONS(7085), + [anon_sym___restrict__] = ACTIONS(7085), + [anon_sym__Atomic] = ACTIONS(7085), + [anon_sym__Noreturn] = ACTIONS(7085), + [anon_sym_noreturn] = ACTIONS(7085), + [anon_sym__Nonnull] = ACTIONS(7085), + [anon_sym_mutable] = ACTIONS(7085), + [anon_sym_constinit] = ACTIONS(7085), + [anon_sym_consteval] = ACTIONS(7085), + [anon_sym_alignas] = ACTIONS(7085), + [anon_sym__Alignas] = ACTIONS(7085), + [anon_sym_QMARK] = ACTIONS(7097), + [anon_sym_STAR_EQ] = ACTIONS(7097), + [anon_sym_SLASH_EQ] = ACTIONS(7097), + [anon_sym_PERCENT_EQ] = ACTIONS(7097), + [anon_sym_PLUS_EQ] = ACTIONS(7097), + [anon_sym_DASH_EQ] = ACTIONS(7097), + [anon_sym_LT_LT_EQ] = ACTIONS(7097), + [anon_sym_GT_GT_EQ] = ACTIONS(7097), + [anon_sym_AMP_EQ] = ACTIONS(7097), + [anon_sym_CARET_EQ] = ACTIONS(7097), + [anon_sym_PIPE_EQ] = ACTIONS(7097), + [anon_sym_LT_EQ_GT] = ACTIONS(7097), + [anon_sym_or] = ACTIONS(7092), + [anon_sym_and] = ACTIONS(7092), + [anon_sym_bitor] = ACTIONS(7092), + [anon_sym_xor] = ACTIONS(7092), + [anon_sym_bitand] = ACTIONS(7092), + [anon_sym_not_eq] = ACTIONS(7092), + [anon_sym_DASH_DASH] = ACTIONS(7097), + [anon_sym_PLUS_PLUS] = ACTIONS(7097), + [anon_sym_DOT] = ACTIONS(7092), + [anon_sym_DOT_STAR] = ACTIONS(7097), + [anon_sym_DASH_GT] = ACTIONS(7092), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7085), + [anon_sym_template] = ACTIONS(7085), + [anon_sym_operator] = ACTIONS(7085), + [anon_sym_DASH_GT_STAR] = ACTIONS(7097), + [anon_sym_LBRACK_COLON] = ACTIONS(7090), + }, + [STATE(2050)] = { + [sym_identifier] = ACTIONS(6594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_RPAREN] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_TILDE] = ACTIONS(6601), + [anon_sym_DASH] = ACTIONS(6603), + [anon_sym_PLUS] = ACTIONS(6603), + [anon_sym_STAR] = ACTIONS(6605), + [anon_sym_SLASH] = ACTIONS(6603), + [anon_sym_PERCENT] = ACTIONS(6603), + [anon_sym_PIPE_PIPE] = ACTIONS(6596), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6603), + [anon_sym_CARET] = ACTIONS(6603), + [anon_sym_AMP] = ACTIONS(6605), + [anon_sym_EQ_EQ] = ACTIONS(6596), + [anon_sym_BANG_EQ] = ACTIONS(6596), + [anon_sym_GT] = ACTIONS(6603), + [anon_sym_GT_EQ] = ACTIONS(6596), + [anon_sym_LT_EQ] = ACTIONS(6603), + [anon_sym_LT] = ACTIONS(6603), + [anon_sym_LT_LT] = ACTIONS(6603), + [anon_sym_GT_GT] = ACTIONS(6603), + [anon_sym___extension__] = ACTIONS(6594), + [anon_sym_virtual] = ACTIONS(6594), + [anon_sym_extern] = ACTIONS(6594), + [anon_sym___attribute__] = ACTIONS(6594), + [anon_sym___attribute] = ACTIONS(6594), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6601), + [anon_sym___declspec] = ACTIONS(6594), + [anon_sym___based] = ACTIONS(6594), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_LBRACK] = ACTIONS(6605), + [anon_sym_static] = ACTIONS(6594), + [anon_sym_EQ] = ACTIONS(6605), + [anon_sym_register] = ACTIONS(6594), + [anon_sym_inline] = ACTIONS(6594), + [anon_sym___inline] = ACTIONS(6594), + [anon_sym___inline__] = ACTIONS(6594), + [anon_sym___forceinline] = ACTIONS(6594), + [anon_sym_thread_local] = ACTIONS(6594), + [anon_sym___thread] = ACTIONS(6594), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6594), + [anon_sym_volatile] = ACTIONS(6594), + [anon_sym_restrict] = ACTIONS(6594), + [anon_sym___restrict__] = ACTIONS(6594), + [anon_sym__Atomic] = ACTIONS(6594), + [anon_sym__Noreturn] = ACTIONS(6594), + [anon_sym_noreturn] = ACTIONS(6594), + [anon_sym__Nonnull] = ACTIONS(6594), + [anon_sym_mutable] = ACTIONS(6594), + [anon_sym_constinit] = ACTIONS(6594), + [anon_sym_consteval] = ACTIONS(6594), + [anon_sym_alignas] = ACTIONS(6594), + [anon_sym__Alignas] = ACTIONS(6594), + [anon_sym_QMARK] = ACTIONS(6596), + [anon_sym_STAR_EQ] = ACTIONS(6596), + [anon_sym_SLASH_EQ] = ACTIONS(6596), + [anon_sym_PERCENT_EQ] = ACTIONS(6596), + [anon_sym_PLUS_EQ] = ACTIONS(6596), + [anon_sym_DASH_EQ] = ACTIONS(6596), + [anon_sym_LT_LT_EQ] = ACTIONS(6596), + [anon_sym_GT_GT_EQ] = ACTIONS(6596), + [anon_sym_AMP_EQ] = ACTIONS(6596), + [anon_sym_CARET_EQ] = ACTIONS(6596), + [anon_sym_PIPE_EQ] = ACTIONS(6596), + [anon_sym_LT_EQ_GT] = ACTIONS(6596), + [anon_sym_or] = ACTIONS(6603), + [anon_sym_and] = ACTIONS(6603), + [anon_sym_bitor] = ACTIONS(6603), + [anon_sym_xor] = ACTIONS(6603), + [anon_sym_bitand] = ACTIONS(6603), + [anon_sym_not_eq] = ACTIONS(6603), + [anon_sym_DASH_DASH] = ACTIONS(6596), + [anon_sym_PLUS_PLUS] = ACTIONS(6596), + [anon_sym_DOT] = ACTIONS(6603), + [anon_sym_DOT_STAR] = ACTIONS(6596), + [anon_sym_DASH_GT] = ACTIONS(6603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6594), + [anon_sym_decltype] = ACTIONS(6594), + [anon_sym_template] = ACTIONS(6594), + [anon_sym_operator] = ACTIONS(6594), + [anon_sym_DASH_GT_STAR] = ACTIONS(6596), + [anon_sym_LBRACK_COLON] = ACTIONS(6601), + }, + [STATE(2051)] = { + [sym_identifier] = ACTIONS(7077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), + [anon_sym_COMMA] = ACTIONS(7079), + [anon_sym_RPAREN] = ACTIONS(7079), + [aux_sym_preproc_if_token2] = ACTIONS(7079), + [aux_sym_preproc_else_token1] = ACTIONS(7079), + [aux_sym_preproc_elif_token1] = ACTIONS(7077), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7079), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7079), + [anon_sym_LPAREN2] = ACTIONS(7079), + [anon_sym_DASH] = ACTIONS(7077), + [anon_sym_PLUS] = ACTIONS(7077), + [anon_sym_STAR] = ACTIONS(7077), + [anon_sym_SLASH] = ACTIONS(7077), + [anon_sym_PERCENT] = ACTIONS(7077), + [anon_sym_PIPE_PIPE] = ACTIONS(7079), + [anon_sym_AMP_AMP] = ACTIONS(7079), + [anon_sym_PIPE] = ACTIONS(7077), + [anon_sym_CARET] = ACTIONS(7077), + [anon_sym_AMP] = ACTIONS(7077), + [anon_sym_EQ_EQ] = ACTIONS(7079), + [anon_sym_BANG_EQ] = ACTIONS(7079), + [anon_sym_GT] = ACTIONS(7077), + [anon_sym_GT_EQ] = ACTIONS(7079), + [anon_sym_LT_EQ] = ACTIONS(7077), + [anon_sym_LT] = ACTIONS(7077), + [anon_sym_LT_LT] = ACTIONS(7077), + [anon_sym_GT_GT] = ACTIONS(7077), + [anon_sym_SEMI] = ACTIONS(7079), + [anon_sym___extension__] = ACTIONS(7077), + [anon_sym___attribute__] = ACTIONS(7077), + [anon_sym___attribute] = ACTIONS(7077), + [anon_sym_COLON] = ACTIONS(7077), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7079), + [anon_sym_LBRACE] = ACTIONS(7079), + [anon_sym_RBRACE] = ACTIONS(7079), + [anon_sym_signed] = ACTIONS(7077), + [anon_sym_unsigned] = ACTIONS(7077), + [anon_sym_long] = ACTIONS(7077), + [anon_sym_short] = ACTIONS(7077), + [anon_sym_LBRACK] = ACTIONS(7079), + [anon_sym_EQ] = ACTIONS(7077), + [anon_sym_const] = ACTIONS(7077), + [anon_sym_constexpr] = ACTIONS(7077), + [anon_sym_volatile] = ACTIONS(7077), + [anon_sym_restrict] = ACTIONS(7077), + [anon_sym___restrict__] = ACTIONS(7077), + [anon_sym__Atomic] = ACTIONS(7077), + [anon_sym__Noreturn] = ACTIONS(7077), + [anon_sym_noreturn] = ACTIONS(7077), + [anon_sym__Nonnull] = ACTIONS(7077), + [anon_sym_mutable] = ACTIONS(7077), + [anon_sym_constinit] = ACTIONS(7077), + [anon_sym_consteval] = ACTIONS(7077), + [anon_sym_alignas] = ACTIONS(7077), + [anon_sym__Alignas] = ACTIONS(7077), + [sym_primitive_type] = ACTIONS(7077), + [anon_sym_QMARK] = ACTIONS(7079), + [anon_sym_STAR_EQ] = ACTIONS(7079), + [anon_sym_SLASH_EQ] = ACTIONS(7079), + [anon_sym_PERCENT_EQ] = ACTIONS(7079), + [anon_sym_PLUS_EQ] = ACTIONS(7079), + [anon_sym_DASH_EQ] = ACTIONS(7079), + [anon_sym_LT_LT_EQ] = ACTIONS(7079), + [anon_sym_GT_GT_EQ] = ACTIONS(7079), + [anon_sym_AMP_EQ] = ACTIONS(7079), + [anon_sym_CARET_EQ] = ACTIONS(7079), + [anon_sym_PIPE_EQ] = ACTIONS(7079), + [anon_sym_and_eq] = ACTIONS(7077), + [anon_sym_or_eq] = ACTIONS(7077), + [anon_sym_xor_eq] = ACTIONS(7077), + [anon_sym_LT_EQ_GT] = ACTIONS(7079), + [anon_sym_or] = ACTIONS(7077), + [anon_sym_and] = ACTIONS(7077), + [anon_sym_bitor] = ACTIONS(7077), + [anon_sym_xor] = ACTIONS(7077), + [anon_sym_bitand] = ACTIONS(7077), + [anon_sym_not_eq] = ACTIONS(7077), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DOT] = ACTIONS(7077), + [anon_sym_DOT_STAR] = ACTIONS(7079), + [anon_sym_DASH_GT] = ACTIONS(7079), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7077), + [anon_sym_override] = ACTIONS(7077), + [anon_sym_requires] = ACTIONS(7077), + [anon_sym_COLON_RBRACK] = ACTIONS(7079), + }, + [STATE(2052)] = { + [sym_string_literal] = STATE(4105), + [sym_decltype_auto] = STATE(3203), + [sym_template_argument_list] = STATE(5021), + [sym_raw_string_literal] = STATE(4105), + [aux_sym_sized_type_specifier_repeat1] = STATE(3552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_RPAREN] = ACTIONS(5640), + [anon_sym_LPAREN2] = ACTIONS(5640), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5647), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(7101), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_signed] = ACTIONS(6867), + [anon_sym_unsigned] = ACTIONS(6867), + [anon_sym_long] = ACTIONS(6867), + [anon_sym_short] = ACTIONS(6867), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5643), + [anon_sym_volatile] = ACTIONS(5643), + [anon_sym_restrict] = ACTIONS(5643), + [anon_sym___restrict__] = ACTIONS(5643), + [anon_sym__Atomic] = ACTIONS(5643), + [anon_sym__Noreturn] = ACTIONS(5643), + [anon_sym_noreturn] = ACTIONS(5643), + [anon_sym__Nonnull] = ACTIONS(5643), + [anon_sym_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [anon_sym_alignas] = ACTIONS(5643), + [anon_sym__Alignas] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5663), + [anon_sym_or_eq] = ACTIONS(5663), + [anon_sym_xor_eq] = ACTIONS(5663), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6869), + [anon_sym_decltype] = ACTIONS(6871), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + }, + [STATE(2053)] = { + [sym_identifier] = ACTIONS(7104), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7106), + [anon_sym_COMMA] = ACTIONS(7106), + [anon_sym_RPAREN] = ACTIONS(7106), + [anon_sym_LPAREN2] = ACTIONS(7106), + [anon_sym_TILDE] = ACTIONS(7106), + [anon_sym_DASH] = ACTIONS(7104), + [anon_sym_PLUS] = ACTIONS(7104), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_SLASH] = ACTIONS(7104), + [anon_sym_PERCENT] = ACTIONS(7106), + [anon_sym_PIPE_PIPE] = ACTIONS(7106), + [anon_sym_AMP_AMP] = ACTIONS(7106), + [anon_sym_PIPE] = ACTIONS(7104), + [anon_sym_CARET] = ACTIONS(7106), + [anon_sym_AMP] = ACTIONS(7104), + [anon_sym_EQ_EQ] = ACTIONS(7106), + [anon_sym_BANG_EQ] = ACTIONS(7106), + [anon_sym_GT] = ACTIONS(7104), + [anon_sym_GT_EQ] = ACTIONS(7106), + [anon_sym_LT_EQ] = ACTIONS(7104), + [anon_sym_LT] = ACTIONS(7104), + [anon_sym_LT_LT] = ACTIONS(7106), + [anon_sym_GT_GT] = ACTIONS(7106), + [anon_sym_SEMI] = ACTIONS(7106), + [anon_sym___extension__] = ACTIONS(7104), + [anon_sym_virtual] = ACTIONS(7104), + [anon_sym_extern] = ACTIONS(7104), + [anon_sym___attribute__] = ACTIONS(7104), + [anon_sym___attribute] = ACTIONS(7104), + [anon_sym_COLON] = ACTIONS(7104), + [anon_sym_COLON_COLON] = ACTIONS(7106), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7106), + [anon_sym___declspec] = ACTIONS(7104), + [anon_sym___based] = ACTIONS(7104), + [anon_sym___cdecl] = ACTIONS(7104), + [anon_sym___clrcall] = ACTIONS(7104), + [anon_sym___stdcall] = ACTIONS(7104), + [anon_sym___fastcall] = ACTIONS(7104), + [anon_sym___thiscall] = ACTIONS(7104), + [anon_sym___vectorcall] = ACTIONS(7104), + [anon_sym_LBRACE] = ACTIONS(7106), + [anon_sym_RBRACE] = ACTIONS(7106), + [anon_sym_LBRACK] = ACTIONS(7104), + [anon_sym_static] = ACTIONS(7104), + [anon_sym_register] = ACTIONS(7104), + [anon_sym_inline] = ACTIONS(7104), + [anon_sym___inline] = ACTIONS(7104), + [anon_sym___inline__] = ACTIONS(7104), + [anon_sym___forceinline] = ACTIONS(7104), + [anon_sym_thread_local] = ACTIONS(7104), + [anon_sym___thread] = ACTIONS(7104), + [anon_sym_const] = ACTIONS(7104), + [anon_sym_constexpr] = ACTIONS(7104), + [anon_sym_volatile] = ACTIONS(7104), + [anon_sym_restrict] = ACTIONS(7104), + [anon_sym___restrict__] = ACTIONS(7104), + [anon_sym__Atomic] = ACTIONS(7104), + [anon_sym__Noreturn] = ACTIONS(7104), + [anon_sym_noreturn] = ACTIONS(7104), + [anon_sym__Nonnull] = ACTIONS(7104), + [anon_sym_mutable] = ACTIONS(7104), + [anon_sym_constinit] = ACTIONS(7104), + [anon_sym_consteval] = ACTIONS(7104), + [anon_sym_alignas] = ACTIONS(7104), + [anon_sym__Alignas] = ACTIONS(7104), + [anon_sym_QMARK] = ACTIONS(7106), + [anon_sym_LT_EQ_GT] = ACTIONS(7106), + [anon_sym_or] = ACTIONS(7104), + [anon_sym_and] = ACTIONS(7104), + [anon_sym_bitor] = ACTIONS(7104), + [anon_sym_xor] = ACTIONS(7104), + [anon_sym_bitand] = ACTIONS(7104), + [anon_sym_not_eq] = ACTIONS(7104), + [anon_sym_DASH_DASH] = ACTIONS(7106), + [anon_sym_PLUS_PLUS] = ACTIONS(7106), + [anon_sym_DOT] = ACTIONS(7104), + [anon_sym_DOT_STAR] = ACTIONS(7106), + [anon_sym_DASH_GT] = ACTIONS(7106), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7104), + [anon_sym_final] = ACTIONS(7104), + [anon_sym_override] = ACTIONS(7104), + [anon_sym_template] = ACTIONS(7104), + [anon_sym_operator] = ACTIONS(7104), + [anon_sym_noexcept] = ACTIONS(7104), + [anon_sym_throw] = ACTIONS(7104), + [anon_sym_LBRACK_COLON] = ACTIONS(7106), + }, + [STATE(2054)] = { + [sym_identifier] = ACTIONS(7108), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7110), + [anon_sym_COMMA] = ACTIONS(7110), + [anon_sym_RPAREN] = ACTIONS(7110), + [aux_sym_preproc_if_token2] = ACTIONS(7110), + [aux_sym_preproc_else_token1] = ACTIONS(7110), + [aux_sym_preproc_elif_token1] = ACTIONS(7108), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7110), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7110), + [anon_sym_LPAREN2] = ACTIONS(7110), + [anon_sym_DASH] = ACTIONS(7108), + [anon_sym_PLUS] = ACTIONS(7108), + [anon_sym_STAR] = ACTIONS(7108), + [anon_sym_SLASH] = ACTIONS(7108), + [anon_sym_PERCENT] = ACTIONS(7108), + [anon_sym_PIPE_PIPE] = ACTIONS(7110), + [anon_sym_AMP_AMP] = ACTIONS(7110), + [anon_sym_PIPE] = ACTIONS(7108), + [anon_sym_CARET] = ACTIONS(7108), + [anon_sym_AMP] = ACTIONS(7108), + [anon_sym_EQ_EQ] = ACTIONS(7110), + [anon_sym_BANG_EQ] = ACTIONS(7110), + [anon_sym_GT] = ACTIONS(7108), + [anon_sym_GT_EQ] = ACTIONS(7110), + [anon_sym_LT_EQ] = ACTIONS(7108), + [anon_sym_LT] = ACTIONS(7108), + [anon_sym_LT_LT] = ACTIONS(7108), + [anon_sym_GT_GT] = ACTIONS(7108), + [anon_sym_SEMI] = ACTIONS(7110), + [anon_sym___extension__] = ACTIONS(7108), + [anon_sym___attribute__] = ACTIONS(7108), + [anon_sym___attribute] = ACTIONS(7108), + [anon_sym_COLON] = ACTIONS(7108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7110), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7110), + [anon_sym_RBRACE] = ACTIONS(7110), + [anon_sym_LBRACK] = ACTIONS(7108), + [anon_sym_EQ] = ACTIONS(7108), + [anon_sym_const] = ACTIONS(7108), + [anon_sym_constexpr] = ACTIONS(7108), + [anon_sym_volatile] = ACTIONS(7108), + [anon_sym_restrict] = ACTIONS(7108), + [anon_sym___restrict__] = ACTIONS(7108), + [anon_sym__Atomic] = ACTIONS(7108), + [anon_sym__Noreturn] = ACTIONS(7108), + [anon_sym_noreturn] = ACTIONS(7108), + [anon_sym__Nonnull] = ACTIONS(7108), + [anon_sym_mutable] = ACTIONS(7108), + [anon_sym_constinit] = ACTIONS(7108), + [anon_sym_consteval] = ACTIONS(7108), + [anon_sym_alignas] = ACTIONS(7108), + [anon_sym__Alignas] = ACTIONS(7108), + [anon_sym_QMARK] = ACTIONS(7110), + [anon_sym_STAR_EQ] = ACTIONS(7110), + [anon_sym_SLASH_EQ] = ACTIONS(7110), + [anon_sym_PERCENT_EQ] = ACTIONS(7110), + [anon_sym_PLUS_EQ] = ACTIONS(7110), + [anon_sym_DASH_EQ] = ACTIONS(7110), + [anon_sym_LT_LT_EQ] = ACTIONS(7110), + [anon_sym_GT_GT_EQ] = ACTIONS(7110), + [anon_sym_AMP_EQ] = ACTIONS(7110), + [anon_sym_CARET_EQ] = ACTIONS(7110), + [anon_sym_PIPE_EQ] = ACTIONS(7110), + [anon_sym_and_eq] = ACTIONS(7108), + [anon_sym_or_eq] = ACTIONS(7108), + [anon_sym_xor_eq] = ACTIONS(7108), + [anon_sym_LT_EQ_GT] = ACTIONS(7110), + [anon_sym_or] = ACTIONS(7108), + [anon_sym_and] = ACTIONS(7108), + [anon_sym_bitor] = ACTIONS(7108), + [anon_sym_xor] = ACTIONS(7108), + [anon_sym_bitand] = ACTIONS(7108), + [anon_sym_not_eq] = ACTIONS(7108), + [anon_sym_DASH_DASH] = ACTIONS(7110), + [anon_sym_PLUS_PLUS] = ACTIONS(7110), + [anon_sym_asm] = ACTIONS(7108), + [anon_sym___asm__] = ACTIONS(7108), + [anon_sym___asm] = ACTIONS(7108), + [anon_sym_DOT] = ACTIONS(7108), + [anon_sym_DOT_STAR] = ACTIONS(7110), + [anon_sym_DASH_GT] = ACTIONS(7110), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7108), + [anon_sym_override] = ACTIONS(7108), + [anon_sym_noexcept] = ACTIONS(7108), + [anon_sym_throw] = ACTIONS(7108), + [anon_sym_requires] = ACTIONS(7108), + [anon_sym_COLON_RBRACK] = ACTIONS(7110), + }, + [STATE(2055)] = { + [sym_identifier] = ACTIONS(6608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6610), + [anon_sym_COMMA] = ACTIONS(6610), + [anon_sym_RPAREN] = ACTIONS(6610), + [anon_sym_LPAREN2] = ACTIONS(6610), + [anon_sym_TILDE] = ACTIONS(6610), + [anon_sym_DASH] = ACTIONS(6608), + [anon_sym_PLUS] = ACTIONS(6608), + [anon_sym_STAR] = ACTIONS(6608), + [anon_sym_SLASH] = ACTIONS(6608), + [anon_sym_PERCENT] = ACTIONS(6608), + [anon_sym_PIPE_PIPE] = ACTIONS(6610), + [anon_sym_AMP_AMP] = ACTIONS(6610), + [anon_sym_PIPE] = ACTIONS(6608), + [anon_sym_CARET] = ACTIONS(6608), + [anon_sym_AMP] = ACTIONS(6608), + [anon_sym_EQ_EQ] = ACTIONS(6610), + [anon_sym_BANG_EQ] = ACTIONS(6610), + [anon_sym_GT] = ACTIONS(6608), + [anon_sym_GT_EQ] = ACTIONS(6610), + [anon_sym_LT_EQ] = ACTIONS(6608), + [anon_sym_LT] = ACTIONS(6608), + [anon_sym_LT_LT] = ACTIONS(6608), + [anon_sym_GT_GT] = ACTIONS(6608), + [anon_sym___extension__] = ACTIONS(6608), + [anon_sym_virtual] = ACTIONS(6608), + [anon_sym_extern] = ACTIONS(6608), + [anon_sym___attribute__] = ACTIONS(6608), + [anon_sym___attribute] = ACTIONS(6608), + [anon_sym_COLON_COLON] = ACTIONS(6610), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6610), + [anon_sym___declspec] = ACTIONS(6608), + [anon_sym___based] = ACTIONS(6608), + [anon_sym_LBRACE] = ACTIONS(6610), + [anon_sym_LBRACK] = ACTIONS(6608), + [anon_sym_static] = ACTIONS(6608), + [anon_sym_EQ] = ACTIONS(6608), + [anon_sym_register] = ACTIONS(6608), + [anon_sym_inline] = ACTIONS(6608), + [anon_sym___inline] = ACTIONS(6608), + [anon_sym___inline__] = ACTIONS(6608), + [anon_sym___forceinline] = ACTIONS(6608), + [anon_sym_thread_local] = ACTIONS(6608), + [anon_sym___thread] = ACTIONS(6608), + [anon_sym_const] = ACTIONS(6608), + [anon_sym_constexpr] = ACTIONS(6608), + [anon_sym_volatile] = ACTIONS(6608), + [anon_sym_restrict] = ACTIONS(6608), + [anon_sym___restrict__] = ACTIONS(6608), + [anon_sym__Atomic] = ACTIONS(6608), + [anon_sym__Noreturn] = ACTIONS(6608), + [anon_sym_noreturn] = ACTIONS(6608), + [anon_sym__Nonnull] = ACTIONS(6608), + [anon_sym_mutable] = ACTIONS(6608), + [anon_sym_constinit] = ACTIONS(6608), + [anon_sym_consteval] = ACTIONS(6608), + [anon_sym_alignas] = ACTIONS(6608), + [anon_sym__Alignas] = ACTIONS(6608), + [anon_sym_QMARK] = ACTIONS(6610), + [anon_sym_STAR_EQ] = ACTIONS(6610), + [anon_sym_SLASH_EQ] = ACTIONS(6610), + [anon_sym_PERCENT_EQ] = ACTIONS(6610), + [anon_sym_PLUS_EQ] = ACTIONS(6610), + [anon_sym_DASH_EQ] = ACTIONS(6610), + [anon_sym_LT_LT_EQ] = ACTIONS(6610), + [anon_sym_GT_GT_EQ] = ACTIONS(6610), + [anon_sym_AMP_EQ] = ACTIONS(6610), + [anon_sym_CARET_EQ] = ACTIONS(6610), + [anon_sym_PIPE_EQ] = ACTIONS(6610), + [anon_sym_LT_EQ_GT] = ACTIONS(6610), + [anon_sym_or] = ACTIONS(6608), + [anon_sym_and] = ACTIONS(6608), + [anon_sym_bitor] = ACTIONS(6608), + [anon_sym_xor] = ACTIONS(6608), + [anon_sym_bitand] = ACTIONS(6608), + [anon_sym_not_eq] = ACTIONS(6608), + [anon_sym_DASH_DASH] = ACTIONS(6610), + [anon_sym_PLUS_PLUS] = ACTIONS(6610), + [anon_sym_DOT] = ACTIONS(6608), + [anon_sym_DOT_STAR] = ACTIONS(6610), + [anon_sym_DASH_GT] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6608), + [anon_sym_decltype] = ACTIONS(6608), + [anon_sym_template] = ACTIONS(6608), + [anon_sym_operator] = ACTIONS(6608), + [anon_sym_DASH_GT_STAR] = ACTIONS(6610), + [anon_sym_LBRACK_COLON] = ACTIONS(6610), + }, + [STATE(2056)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2683), + [sym_ms_pointer_modifier] = STATE(2487), + [sym__abstract_declarator] = STATE(4680), + [sym_abstract_parenthesized_declarator] = STATE(5063), + [sym_abstract_pointer_declarator] = STATE(5063), + [sym_abstract_function_declarator] = STATE(5063), + [sym_abstract_array_declarator] = STATE(5063), + [sym_type_qualifier] = STATE(2340), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1977), + [sym_abstract_reference_declarator] = STATE(5063), + [sym__function_declarator_seq] = STATE(5065), + [aux_sym__type_definition_type_repeat1] = STATE(2340), + [aux_sym_pointer_declarator_repeat1] = STATE(2487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(7112), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(7114), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(7116), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(7118), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(7120), + [sym_ms_restrict_modifier] = ACTIONS(7122), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7124), + [sym_ms_signed_ptr_modifier] = ACTIONS(7124), + [anon_sym__unaligned] = ACTIONS(7126), + [anon_sym___unaligned] = ACTIONS(7126), + [anon_sym_LBRACK] = ACTIONS(7128), + [anon_sym_RBRACK] = ACTIONS(6823), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(7120), + [anon_sym_volatile] = ACTIONS(7120), + [anon_sym_restrict] = ACTIONS(7120), + [anon_sym___restrict__] = ACTIONS(7120), + [anon_sym__Atomic] = ACTIONS(7120), + [anon_sym__Noreturn] = ACTIONS(7120), + [anon_sym_noreturn] = ACTIONS(7120), + [anon_sym__Nonnull] = ACTIONS(7120), + [anon_sym_mutable] = ACTIONS(7120), + [anon_sym_constinit] = ACTIONS(7120), + [anon_sym_consteval] = ACTIONS(7120), + [anon_sym_alignas] = ACTIONS(7130), + [anon_sym__Alignas] = ACTIONS(7130), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6823), + [anon_sym_or_eq] = ACTIONS(6823), + [anon_sym_xor_eq] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6823), + [anon_sym_override] = ACTIONS(6823), + [anon_sym_requires] = ACTIONS(6823), + }, + [STATE(2057)] = { + [sym_identifier] = ACTIONS(6620), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6622), + [anon_sym_COMMA] = ACTIONS(6622), + [anon_sym_RPAREN] = ACTIONS(6622), + [anon_sym_LPAREN2] = ACTIONS(6622), + [anon_sym_TILDE] = ACTIONS(6622), + [anon_sym_DASH] = ACTIONS(6620), + [anon_sym_PLUS] = ACTIONS(6620), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_PERCENT] = ACTIONS(6620), + [anon_sym_PIPE_PIPE] = ACTIONS(6622), + [anon_sym_AMP_AMP] = ACTIONS(6622), + [anon_sym_PIPE] = ACTIONS(6620), + [anon_sym_CARET] = ACTIONS(6620), + [anon_sym_AMP] = ACTIONS(6620), + [anon_sym_EQ_EQ] = ACTIONS(6622), + [anon_sym_BANG_EQ] = ACTIONS(6622), + [anon_sym_GT] = ACTIONS(6620), + [anon_sym_GT_EQ] = ACTIONS(6622), + [anon_sym_LT_EQ] = ACTIONS(6620), + [anon_sym_LT] = ACTIONS(6620), + [anon_sym_LT_LT] = ACTIONS(6620), + [anon_sym_GT_GT] = ACTIONS(6620), + [anon_sym___extension__] = ACTIONS(6620), + [anon_sym_virtual] = ACTIONS(6620), + [anon_sym_extern] = ACTIONS(6620), + [anon_sym___attribute__] = ACTIONS(6620), + [anon_sym___attribute] = ACTIONS(6620), + [anon_sym_COLON_COLON] = ACTIONS(6622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6622), + [anon_sym___declspec] = ACTIONS(6620), + [anon_sym___based] = ACTIONS(6620), + [anon_sym_LBRACE] = ACTIONS(6622), + [anon_sym_LBRACK] = ACTIONS(6620), + [anon_sym_static] = ACTIONS(6620), + [anon_sym_EQ] = ACTIONS(6620), + [anon_sym_register] = ACTIONS(6620), + [anon_sym_inline] = ACTIONS(6620), + [anon_sym___inline] = ACTIONS(6620), + [anon_sym___inline__] = ACTIONS(6620), + [anon_sym___forceinline] = ACTIONS(6620), + [anon_sym_thread_local] = ACTIONS(6620), + [anon_sym___thread] = ACTIONS(6620), + [anon_sym_const] = ACTIONS(6620), + [anon_sym_constexpr] = ACTIONS(6620), + [anon_sym_volatile] = ACTIONS(6620), + [anon_sym_restrict] = ACTIONS(6620), + [anon_sym___restrict__] = ACTIONS(6620), + [anon_sym__Atomic] = ACTIONS(6620), + [anon_sym__Noreturn] = ACTIONS(6620), + [anon_sym_noreturn] = ACTIONS(6620), + [anon_sym__Nonnull] = ACTIONS(6620), + [anon_sym_mutable] = ACTIONS(6620), + [anon_sym_constinit] = ACTIONS(6620), + [anon_sym_consteval] = ACTIONS(6620), + [anon_sym_alignas] = ACTIONS(6620), + [anon_sym__Alignas] = ACTIONS(6620), + [anon_sym_QMARK] = ACTIONS(6622), + [anon_sym_STAR_EQ] = ACTIONS(6622), + [anon_sym_SLASH_EQ] = ACTIONS(6622), + [anon_sym_PERCENT_EQ] = ACTIONS(6622), + [anon_sym_PLUS_EQ] = ACTIONS(6622), + [anon_sym_DASH_EQ] = ACTIONS(6622), + [anon_sym_LT_LT_EQ] = ACTIONS(6622), + [anon_sym_GT_GT_EQ] = ACTIONS(6622), + [anon_sym_AMP_EQ] = ACTIONS(6622), + [anon_sym_CARET_EQ] = ACTIONS(6622), + [anon_sym_PIPE_EQ] = ACTIONS(6622), + [anon_sym_LT_EQ_GT] = ACTIONS(6622), + [anon_sym_or] = ACTIONS(6620), + [anon_sym_and] = ACTIONS(6620), + [anon_sym_bitor] = ACTIONS(6620), + [anon_sym_xor] = ACTIONS(6620), + [anon_sym_bitand] = ACTIONS(6620), + [anon_sym_not_eq] = ACTIONS(6620), + [anon_sym_DASH_DASH] = ACTIONS(6622), + [anon_sym_PLUS_PLUS] = ACTIONS(6622), + [anon_sym_DOT] = ACTIONS(6620), + [anon_sym_DOT_STAR] = ACTIONS(6622), + [anon_sym_DASH_GT] = ACTIONS(6620), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6620), + [anon_sym_decltype] = ACTIONS(6620), + [anon_sym_template] = ACTIONS(6620), + [anon_sym_operator] = ACTIONS(6620), + [anon_sym_DASH_GT_STAR] = ACTIONS(6622), + [anon_sym_LBRACK_COLON] = ACTIONS(6622), + }, + [STATE(2058)] = { + [sym_identifier] = ACTIONS(7132), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7134), + [anon_sym_COMMA] = ACTIONS(7134), + [anon_sym_RPAREN] = ACTIONS(7134), + [aux_sym_preproc_if_token2] = ACTIONS(7134), + [aux_sym_preproc_else_token1] = ACTIONS(7134), + [aux_sym_preproc_elif_token1] = ACTIONS(7132), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7134), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7134), + [anon_sym_LPAREN2] = ACTIONS(7134), + [anon_sym_DASH] = ACTIONS(7132), + [anon_sym_PLUS] = ACTIONS(7132), + [anon_sym_STAR] = ACTIONS(7132), + [anon_sym_SLASH] = ACTIONS(7132), + [anon_sym_PERCENT] = ACTIONS(7132), + [anon_sym_PIPE_PIPE] = ACTIONS(7134), + [anon_sym_AMP_AMP] = ACTIONS(7134), + [anon_sym_PIPE] = ACTIONS(7132), + [anon_sym_CARET] = ACTIONS(7132), + [anon_sym_AMP] = ACTIONS(7132), + [anon_sym_EQ_EQ] = ACTIONS(7134), + [anon_sym_BANG_EQ] = ACTIONS(7134), + [anon_sym_GT] = ACTIONS(7132), + [anon_sym_GT_EQ] = ACTIONS(7134), + [anon_sym_LT_EQ] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(7132), + [anon_sym_LT_LT] = ACTIONS(7132), + [anon_sym_GT_GT] = ACTIONS(7132), + [anon_sym_SEMI] = ACTIONS(7134), + [anon_sym___extension__] = ACTIONS(7132), + [anon_sym___attribute__] = ACTIONS(7132), + [anon_sym___attribute] = ACTIONS(7132), + [anon_sym_COLON] = ACTIONS(7132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7134), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7134), + [anon_sym_RBRACE] = ACTIONS(7134), + [anon_sym_LBRACK] = ACTIONS(7132), + [anon_sym_EQ] = ACTIONS(7132), + [anon_sym_const] = ACTIONS(7132), + [anon_sym_constexpr] = ACTIONS(7132), + [anon_sym_volatile] = ACTIONS(7132), + [anon_sym_restrict] = ACTIONS(7132), + [anon_sym___restrict__] = ACTIONS(7132), + [anon_sym__Atomic] = ACTIONS(7132), + [anon_sym__Noreturn] = ACTIONS(7132), + [anon_sym_noreturn] = ACTIONS(7132), + [anon_sym__Nonnull] = ACTIONS(7132), + [anon_sym_mutable] = ACTIONS(7132), + [anon_sym_constinit] = ACTIONS(7132), + [anon_sym_consteval] = ACTIONS(7132), + [anon_sym_alignas] = ACTIONS(7132), + [anon_sym__Alignas] = ACTIONS(7132), + [anon_sym_QMARK] = ACTIONS(7134), + [anon_sym_STAR_EQ] = ACTIONS(7134), + [anon_sym_SLASH_EQ] = ACTIONS(7134), + [anon_sym_PERCENT_EQ] = ACTIONS(7134), + [anon_sym_PLUS_EQ] = ACTIONS(7134), + [anon_sym_DASH_EQ] = ACTIONS(7134), + [anon_sym_LT_LT_EQ] = ACTIONS(7134), + [anon_sym_GT_GT_EQ] = ACTIONS(7134), + [anon_sym_AMP_EQ] = ACTIONS(7134), + [anon_sym_CARET_EQ] = ACTIONS(7134), + [anon_sym_PIPE_EQ] = ACTIONS(7134), + [anon_sym_and_eq] = ACTIONS(7132), + [anon_sym_or_eq] = ACTIONS(7132), + [anon_sym_xor_eq] = ACTIONS(7132), + [anon_sym_LT_EQ_GT] = ACTIONS(7134), + [anon_sym_or] = ACTIONS(7132), + [anon_sym_and] = ACTIONS(7132), + [anon_sym_bitor] = ACTIONS(7132), + [anon_sym_xor] = ACTIONS(7132), + [anon_sym_bitand] = ACTIONS(7132), + [anon_sym_not_eq] = ACTIONS(7132), + [anon_sym_DASH_DASH] = ACTIONS(7134), + [anon_sym_PLUS_PLUS] = ACTIONS(7134), + [anon_sym_asm] = ACTIONS(7132), + [anon_sym___asm__] = ACTIONS(7132), + [anon_sym___asm] = ACTIONS(7132), + [anon_sym_DOT] = ACTIONS(7132), + [anon_sym_DOT_STAR] = ACTIONS(7134), + [anon_sym_DASH_GT] = ACTIONS(7134), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7132), + [anon_sym_override] = ACTIONS(7132), + [anon_sym_noexcept] = ACTIONS(7132), + [anon_sym_throw] = ACTIONS(7132), + [anon_sym_requires] = ACTIONS(7132), + [anon_sym_COLON_RBRACK] = ACTIONS(7134), + }, + [STATE(2059)] = { + [sym_identifier] = ACTIONS(3128), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), + [anon_sym_COMMA] = ACTIONS(3118), + [anon_sym_RPAREN] = ACTIONS(3118), + [aux_sym_preproc_if_token2] = ACTIONS(3118), + [aux_sym_preproc_else_token1] = ACTIONS(3118), + [aux_sym_preproc_elif_token1] = ACTIONS(3128), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3118), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3118), + [anon_sym_LPAREN2] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_SLASH] = ACTIONS(3128), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_PIPE_PIPE] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_CARET] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3128), + [anon_sym_GT_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(3128), + [anon_sym_LT_LT] = ACTIONS(3128), + [anon_sym_GT_GT] = ACTIONS(3128), + [anon_sym_SEMI] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_COLON] = ACTIONS(3128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3118), + [anon_sym_RBRACE] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_EQ] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_STAR_EQ] = ACTIONS(3118), + [anon_sym_SLASH_EQ] = ACTIONS(3118), + [anon_sym_PERCENT_EQ] = ACTIONS(3118), + [anon_sym_PLUS_EQ] = ACTIONS(3118), + [anon_sym_DASH_EQ] = ACTIONS(3118), + [anon_sym_LT_LT_EQ] = ACTIONS(3118), + [anon_sym_GT_GT_EQ] = ACTIONS(3118), + [anon_sym_AMP_EQ] = ACTIONS(3118), + [anon_sym_CARET_EQ] = ACTIONS(3118), + [anon_sym_PIPE_EQ] = ACTIONS(3118), + [anon_sym_and_eq] = ACTIONS(3128), + [anon_sym_or_eq] = ACTIONS(3128), + [anon_sym_xor_eq] = ACTIONS(3128), + [anon_sym_LT_EQ_GT] = ACTIONS(3118), + [anon_sym_or] = ACTIONS(3128), + [anon_sym_and] = ACTIONS(3128), + [anon_sym_bitor] = ACTIONS(3128), + [anon_sym_xor] = ACTIONS(3128), + [anon_sym_bitand] = ACTIONS(3128), + [anon_sym_not_eq] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_asm] = ACTIONS(3128), + [anon_sym___asm__] = ACTIONS(3128), + [anon_sym___asm] = ACTIONS(3128), + [anon_sym_DOT] = ACTIONS(3128), + [anon_sym_DOT_STAR] = ACTIONS(3118), + [anon_sym_DASH_GT] = ACTIONS(3118), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3128), + [anon_sym_override] = ACTIONS(3128), + [anon_sym_noexcept] = ACTIONS(3128), + [anon_sym_throw] = ACTIONS(3128), + [anon_sym_requires] = ACTIONS(3128), + [anon_sym_COLON_RBRACK] = ACTIONS(3118), + }, + [STATE(2060)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2725), + [sym_ms_pointer_modifier] = STATE(2062), + [sym__abstract_declarator] = STATE(4693), + [sym_abstract_parenthesized_declarator] = STATE(5090), + [sym_abstract_pointer_declarator] = STATE(5090), + [sym_abstract_function_declarator] = STATE(5090), + [sym_abstract_array_declarator] = STATE(5090), + [sym_type_qualifier] = STATE(2329), + [sym_alignas_qualifier] = STATE(2423), + [sym_parameter_list] = STATE(1980), + [sym_abstract_reference_declarator] = STATE(5090), + [sym__function_declarator_seq] = STATE(5091), + [aux_sym__type_definition_type_repeat1] = STATE(2329), + [aux_sym_pointer_declarator_repeat1] = STATE(2062), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6861), + [anon_sym_STAR] = ACTIONS(7138), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_PIPE_PIPE] = ACTIONS(6859), + [anon_sym_AMP_AMP] = ACTIONS(7140), + [anon_sym_PIPE] = ACTIONS(6861), + [anon_sym_CARET] = ACTIONS(6861), + [anon_sym_AMP] = ACTIONS(7142), + [anon_sym_EQ_EQ] = ACTIONS(6859), + [anon_sym_BANG_EQ] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6861), + [anon_sym_GT_EQ] = ACTIONS(6861), + [anon_sym_LT_EQ] = ACTIONS(6861), + [anon_sym_LT] = ACTIONS(6861), + [anon_sym_LT_LT] = ACTIONS(6861), + [anon_sym_GT_GT] = ACTIONS(6861), + [anon_sym___extension__] = ACTIONS(7144), + [sym_ms_restrict_modifier] = ACTIONS(7146), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7148), + [sym_ms_signed_ptr_modifier] = ACTIONS(7148), + [anon_sym__unaligned] = ACTIONS(7150), + [anon_sym___unaligned] = ACTIONS(7150), + [anon_sym_LBRACK] = ACTIONS(7152), + [anon_sym_EQ] = ACTIONS(6861), + [anon_sym_const] = ACTIONS(7154), + [anon_sym_constexpr] = ACTIONS(7144), + [anon_sym_volatile] = ACTIONS(7144), + [anon_sym_restrict] = ACTIONS(7144), + [anon_sym___restrict__] = ACTIONS(7144), + [anon_sym__Atomic] = ACTIONS(7144), + [anon_sym__Noreturn] = ACTIONS(7144), + [anon_sym_noreturn] = ACTIONS(7144), + [anon_sym__Nonnull] = ACTIONS(7144), + [anon_sym_mutable] = ACTIONS(7144), + [anon_sym_constinit] = ACTIONS(7144), + [anon_sym_consteval] = ACTIONS(7144), + [anon_sym_alignas] = ACTIONS(7156), + [anon_sym__Alignas] = ACTIONS(7156), + [anon_sym_QMARK] = ACTIONS(6859), + [anon_sym_STAR_EQ] = ACTIONS(6859), + [anon_sym_SLASH_EQ] = ACTIONS(6859), + [anon_sym_PERCENT_EQ] = ACTIONS(6859), + [anon_sym_PLUS_EQ] = ACTIONS(6859), + [anon_sym_DASH_EQ] = ACTIONS(6859), + [anon_sym_LT_LT_EQ] = ACTIONS(6859), + [anon_sym_GT_GT_EQ] = ACTIONS(6861), + [anon_sym_AMP_EQ] = ACTIONS(6859), + [anon_sym_CARET_EQ] = ACTIONS(6859), + [anon_sym_PIPE_EQ] = ACTIONS(6859), + [anon_sym_and_eq] = ACTIONS(6859), + [anon_sym_or_eq] = ACTIONS(6859), + [anon_sym_xor_eq] = ACTIONS(6859), + [anon_sym_LT_EQ_GT] = ACTIONS(6859), + [anon_sym_or] = ACTIONS(6861), + [anon_sym_and] = ACTIONS(6861), + [anon_sym_bitor] = ACTIONS(6859), + [anon_sym_xor] = ACTIONS(6861), + [anon_sym_bitand] = ACTIONS(6859), + [anon_sym_not_eq] = ACTIONS(6859), + [anon_sym_DASH_DASH] = ACTIONS(6859), + [anon_sym_PLUS_PLUS] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6861), + [anon_sym_DOT_STAR] = ACTIONS(6859), + [anon_sym_DASH_GT] = ACTIONS(6859), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6859), + [anon_sym_override] = ACTIONS(6859), + [anon_sym_GT2] = ACTIONS(6859), + [anon_sym_requires] = ACTIONS(6859), + }, + [STATE(2061)] = { + [sym_identifier] = ACTIONS(6632), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6634), + [anon_sym_COMMA] = ACTIONS(6634), + [anon_sym_RPAREN] = ACTIONS(6634), + [anon_sym_LPAREN2] = ACTIONS(6634), + [anon_sym_TILDE] = ACTIONS(6634), + [anon_sym_DASH] = ACTIONS(6632), + [anon_sym_PLUS] = ACTIONS(6632), + [anon_sym_STAR] = ACTIONS(6632), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_PERCENT] = ACTIONS(6632), + [anon_sym_PIPE_PIPE] = ACTIONS(6634), + [anon_sym_AMP_AMP] = ACTIONS(6634), + [anon_sym_PIPE] = ACTIONS(6632), + [anon_sym_CARET] = ACTIONS(6632), + [anon_sym_AMP] = ACTIONS(6632), + [anon_sym_EQ_EQ] = ACTIONS(6634), + [anon_sym_BANG_EQ] = ACTIONS(6634), + [anon_sym_GT] = ACTIONS(6632), + [anon_sym_GT_EQ] = ACTIONS(6634), + [anon_sym_LT_EQ] = ACTIONS(6632), + [anon_sym_LT] = ACTIONS(6632), + [anon_sym_LT_LT] = ACTIONS(6632), + [anon_sym_GT_GT] = ACTIONS(6632), + [anon_sym___extension__] = ACTIONS(6632), + [anon_sym_virtual] = ACTIONS(6632), + [anon_sym_extern] = ACTIONS(6632), + [anon_sym___attribute__] = ACTIONS(6632), + [anon_sym___attribute] = ACTIONS(6632), + [anon_sym_COLON_COLON] = ACTIONS(6634), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6634), + [anon_sym___declspec] = ACTIONS(6632), + [anon_sym___based] = ACTIONS(6632), + [anon_sym_LBRACE] = ACTIONS(6634), + [anon_sym_LBRACK] = ACTIONS(6632), + [anon_sym_static] = ACTIONS(6632), + [anon_sym_EQ] = ACTIONS(6632), + [anon_sym_register] = ACTIONS(6632), + [anon_sym_inline] = ACTIONS(6632), + [anon_sym___inline] = ACTIONS(6632), + [anon_sym___inline__] = ACTIONS(6632), + [anon_sym___forceinline] = ACTIONS(6632), + [anon_sym_thread_local] = ACTIONS(6632), + [anon_sym___thread] = ACTIONS(6632), + [anon_sym_const] = ACTIONS(6632), + [anon_sym_constexpr] = ACTIONS(6632), + [anon_sym_volatile] = ACTIONS(6632), + [anon_sym_restrict] = ACTIONS(6632), + [anon_sym___restrict__] = ACTIONS(6632), + [anon_sym__Atomic] = ACTIONS(6632), + [anon_sym__Noreturn] = ACTIONS(6632), + [anon_sym_noreturn] = ACTIONS(6632), + [anon_sym__Nonnull] = ACTIONS(6632), + [anon_sym_mutable] = ACTIONS(6632), + [anon_sym_constinit] = ACTIONS(6632), + [anon_sym_consteval] = ACTIONS(6632), + [anon_sym_alignas] = ACTIONS(6632), + [anon_sym__Alignas] = ACTIONS(6632), + [anon_sym_QMARK] = ACTIONS(6634), + [anon_sym_STAR_EQ] = ACTIONS(6634), + [anon_sym_SLASH_EQ] = ACTIONS(6634), + [anon_sym_PERCENT_EQ] = ACTIONS(6634), + [anon_sym_PLUS_EQ] = ACTIONS(6634), + [anon_sym_DASH_EQ] = ACTIONS(6634), + [anon_sym_LT_LT_EQ] = ACTIONS(6634), + [anon_sym_GT_GT_EQ] = ACTIONS(6634), + [anon_sym_AMP_EQ] = ACTIONS(6634), + [anon_sym_CARET_EQ] = ACTIONS(6634), + [anon_sym_PIPE_EQ] = ACTIONS(6634), + [anon_sym_LT_EQ_GT] = ACTIONS(6634), + [anon_sym_or] = ACTIONS(6632), + [anon_sym_and] = ACTIONS(6632), + [anon_sym_bitor] = ACTIONS(6632), + [anon_sym_xor] = ACTIONS(6632), + [anon_sym_bitand] = ACTIONS(6632), + [anon_sym_not_eq] = ACTIONS(6632), + [anon_sym_DASH_DASH] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_DOT] = ACTIONS(6632), + [anon_sym_DOT_STAR] = ACTIONS(6634), + [anon_sym_DASH_GT] = ACTIONS(6632), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6632), + [anon_sym_decltype] = ACTIONS(6632), + [anon_sym_template] = ACTIONS(6632), + [anon_sym_operator] = ACTIONS(6632), + [anon_sym_DASH_GT_STAR] = ACTIONS(6634), + [anon_sym_LBRACK_COLON] = ACTIONS(6634), + }, + [STATE(2062)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2725), + [sym_ms_pointer_modifier] = STATE(2438), + [sym__abstract_declarator] = STATE(4716), + [sym_abstract_parenthesized_declarator] = STATE(5090), + [sym_abstract_pointer_declarator] = STATE(5090), + [sym_abstract_function_declarator] = STATE(5090), + [sym_abstract_array_declarator] = STATE(5090), + [sym_type_qualifier] = STATE(2331), + [sym_alignas_qualifier] = STATE(2423), + [sym_parameter_list] = STATE(1980), + [sym_abstract_reference_declarator] = STATE(5090), + [sym__function_declarator_seq] = STATE(5091), + [aux_sym__type_definition_type_repeat1] = STATE(2331), + [aux_sym_pointer_declarator_repeat1] = STATE(2438), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(7138), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(7140), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(7142), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6821), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(7144), + [sym_ms_restrict_modifier] = ACTIONS(7146), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7148), + [sym_ms_signed_ptr_modifier] = ACTIONS(7148), + [anon_sym__unaligned] = ACTIONS(7150), + [anon_sym___unaligned] = ACTIONS(7150), + [anon_sym_LBRACK] = ACTIONS(7152), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(7154), + [anon_sym_constexpr] = ACTIONS(7144), + [anon_sym_volatile] = ACTIONS(7144), + [anon_sym_restrict] = ACTIONS(7144), + [anon_sym___restrict__] = ACTIONS(7144), + [anon_sym__Atomic] = ACTIONS(7144), + [anon_sym__Noreturn] = ACTIONS(7144), + [anon_sym_noreturn] = ACTIONS(7144), + [anon_sym__Nonnull] = ACTIONS(7144), + [anon_sym_mutable] = ACTIONS(7144), + [anon_sym_constinit] = ACTIONS(7144), + [anon_sym_consteval] = ACTIONS(7144), + [anon_sym_alignas] = ACTIONS(7156), + [anon_sym__Alignas] = ACTIONS(7156), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6821), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6823), + [anon_sym_or_eq] = ACTIONS(6823), + [anon_sym_xor_eq] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6823), + [anon_sym_override] = ACTIONS(6823), + [anon_sym_GT2] = ACTIONS(6823), + [anon_sym_requires] = ACTIONS(6823), + }, + [STATE(2063)] = { + [sym_identifier] = ACTIONS(7158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7160), + [anon_sym_COMMA] = ACTIONS(7160), + [anon_sym_RPAREN] = ACTIONS(7160), + [aux_sym_preproc_if_token2] = ACTIONS(7160), + [aux_sym_preproc_else_token1] = ACTIONS(7160), + [aux_sym_preproc_elif_token1] = ACTIONS(7158), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7160), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7160), + [anon_sym_LPAREN2] = ACTIONS(7160), + [anon_sym_DASH] = ACTIONS(7158), + [anon_sym_PLUS] = ACTIONS(7158), + [anon_sym_STAR] = ACTIONS(7158), + [anon_sym_SLASH] = ACTIONS(7158), + [anon_sym_PERCENT] = ACTIONS(7158), + [anon_sym_PIPE_PIPE] = ACTIONS(7160), + [anon_sym_AMP_AMP] = ACTIONS(7160), + [anon_sym_PIPE] = ACTIONS(7158), + [anon_sym_CARET] = ACTIONS(7158), + [anon_sym_AMP] = ACTIONS(7158), + [anon_sym_EQ_EQ] = ACTIONS(7160), + [anon_sym_BANG_EQ] = ACTIONS(7160), + [anon_sym_GT] = ACTIONS(7158), + [anon_sym_GT_EQ] = ACTIONS(7160), + [anon_sym_LT_EQ] = ACTIONS(7158), + [anon_sym_LT] = ACTIONS(7158), + [anon_sym_LT_LT] = ACTIONS(7158), + [anon_sym_GT_GT] = ACTIONS(7158), + [anon_sym_SEMI] = ACTIONS(7160), + [anon_sym___extension__] = ACTIONS(7158), + [anon_sym___attribute__] = ACTIONS(7158), + [anon_sym___attribute] = ACTIONS(7158), + [anon_sym_COLON] = ACTIONS(7158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7160), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7160), + [anon_sym_RBRACE] = ACTIONS(7160), + [anon_sym_LBRACK] = ACTIONS(7158), + [anon_sym_EQ] = ACTIONS(7158), + [anon_sym_const] = ACTIONS(7158), + [anon_sym_constexpr] = ACTIONS(7158), + [anon_sym_volatile] = ACTIONS(7158), + [anon_sym_restrict] = ACTIONS(7158), + [anon_sym___restrict__] = ACTIONS(7158), + [anon_sym__Atomic] = ACTIONS(7158), + [anon_sym__Noreturn] = ACTIONS(7158), + [anon_sym_noreturn] = ACTIONS(7158), + [anon_sym__Nonnull] = ACTIONS(7158), + [anon_sym_mutable] = ACTIONS(7158), + [anon_sym_constinit] = ACTIONS(7158), + [anon_sym_consteval] = ACTIONS(7158), + [anon_sym_alignas] = ACTIONS(7158), + [anon_sym__Alignas] = ACTIONS(7158), + [anon_sym_QMARK] = ACTIONS(7160), + [anon_sym_STAR_EQ] = ACTIONS(7160), + [anon_sym_SLASH_EQ] = ACTIONS(7160), + [anon_sym_PERCENT_EQ] = ACTIONS(7160), + [anon_sym_PLUS_EQ] = ACTIONS(7160), + [anon_sym_DASH_EQ] = ACTIONS(7160), + [anon_sym_LT_LT_EQ] = ACTIONS(7160), + [anon_sym_GT_GT_EQ] = ACTIONS(7160), + [anon_sym_AMP_EQ] = ACTIONS(7160), + [anon_sym_CARET_EQ] = ACTIONS(7160), + [anon_sym_PIPE_EQ] = ACTIONS(7160), + [anon_sym_and_eq] = ACTIONS(7158), + [anon_sym_or_eq] = ACTIONS(7158), + [anon_sym_xor_eq] = ACTIONS(7158), + [anon_sym_LT_EQ_GT] = ACTIONS(7160), + [anon_sym_or] = ACTIONS(7158), + [anon_sym_and] = ACTIONS(7158), + [anon_sym_bitor] = ACTIONS(7158), + [anon_sym_xor] = ACTIONS(7158), + [anon_sym_bitand] = ACTIONS(7158), + [anon_sym_not_eq] = ACTIONS(7158), + [anon_sym_DASH_DASH] = ACTIONS(7160), + [anon_sym_PLUS_PLUS] = ACTIONS(7160), + [anon_sym_asm] = ACTIONS(7158), + [anon_sym___asm__] = ACTIONS(7158), + [anon_sym___asm] = ACTIONS(7158), + [anon_sym_DOT] = ACTIONS(7158), + [anon_sym_DOT_STAR] = ACTIONS(7160), + [anon_sym_DASH_GT] = ACTIONS(7160), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7158), + [anon_sym_override] = ACTIONS(7158), + [anon_sym_noexcept] = ACTIONS(7158), + [anon_sym_throw] = ACTIONS(7158), + [anon_sym_requires] = ACTIONS(7158), + [anon_sym_COLON_RBRACK] = ACTIONS(7160), + }, + [STATE(2064)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2683), + [sym_ms_pointer_modifier] = STATE(2056), + [sym__abstract_declarator] = STATE(4710), + [sym_abstract_parenthesized_declarator] = STATE(5063), + [sym_abstract_pointer_declarator] = STATE(5063), + [sym_abstract_function_declarator] = STATE(5063), + [sym_abstract_array_declarator] = STATE(5063), + [sym_type_qualifier] = STATE(2338), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1977), + [sym_abstract_reference_declarator] = STATE(5063), + [sym__function_declarator_seq] = STATE(5065), + [aux_sym__type_definition_type_repeat1] = STATE(2338), + [aux_sym_pointer_declarator_repeat1] = STATE(2056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(7112), + [anon_sym_DASH] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6861), + [anon_sym_STAR] = ACTIONS(7114), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_PIPE_PIPE] = ACTIONS(6859), + [anon_sym_AMP_AMP] = ACTIONS(7116), + [anon_sym_PIPE] = ACTIONS(6861), + [anon_sym_CARET] = ACTIONS(6861), + [anon_sym_AMP] = ACTIONS(7118), + [anon_sym_EQ_EQ] = ACTIONS(6859), + [anon_sym_BANG_EQ] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6861), + [anon_sym_GT_EQ] = ACTIONS(6859), + [anon_sym_LT_EQ] = ACTIONS(6861), + [anon_sym_LT] = ACTIONS(6861), + [anon_sym_LT_LT] = ACTIONS(6861), + [anon_sym_GT_GT] = ACTIONS(6861), + [anon_sym___extension__] = ACTIONS(7120), + [sym_ms_restrict_modifier] = ACTIONS(7122), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7124), + [sym_ms_signed_ptr_modifier] = ACTIONS(7124), + [anon_sym__unaligned] = ACTIONS(7126), + [anon_sym___unaligned] = ACTIONS(7126), + [anon_sym_LBRACK] = ACTIONS(7128), + [anon_sym_RBRACK] = ACTIONS(6859), + [anon_sym_EQ] = ACTIONS(6861), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(7120), + [anon_sym_volatile] = ACTIONS(7120), + [anon_sym_restrict] = ACTIONS(7120), + [anon_sym___restrict__] = ACTIONS(7120), + [anon_sym__Atomic] = ACTIONS(7120), + [anon_sym__Noreturn] = ACTIONS(7120), + [anon_sym_noreturn] = ACTIONS(7120), + [anon_sym__Nonnull] = ACTIONS(7120), + [anon_sym_mutable] = ACTIONS(7120), + [anon_sym_constinit] = ACTIONS(7120), + [anon_sym_consteval] = ACTIONS(7120), + [anon_sym_alignas] = ACTIONS(7130), + [anon_sym__Alignas] = ACTIONS(7130), + [anon_sym_QMARK] = ACTIONS(6859), + [anon_sym_STAR_EQ] = ACTIONS(6859), + [anon_sym_SLASH_EQ] = ACTIONS(6859), + [anon_sym_PERCENT_EQ] = ACTIONS(6859), + [anon_sym_PLUS_EQ] = ACTIONS(6859), + [anon_sym_DASH_EQ] = ACTIONS(6859), + [anon_sym_LT_LT_EQ] = ACTIONS(6859), + [anon_sym_GT_GT_EQ] = ACTIONS(6859), + [anon_sym_AMP_EQ] = ACTIONS(6859), + [anon_sym_CARET_EQ] = ACTIONS(6859), + [anon_sym_PIPE_EQ] = ACTIONS(6859), + [anon_sym_and_eq] = ACTIONS(6859), + [anon_sym_or_eq] = ACTIONS(6859), + [anon_sym_xor_eq] = ACTIONS(6859), + [anon_sym_LT_EQ_GT] = ACTIONS(6859), + [anon_sym_or] = ACTIONS(6861), + [anon_sym_and] = ACTIONS(6861), + [anon_sym_bitor] = ACTIONS(6859), + [anon_sym_xor] = ACTIONS(6861), + [anon_sym_bitand] = ACTIONS(6859), + [anon_sym_not_eq] = ACTIONS(6859), + [anon_sym_DASH_DASH] = ACTIONS(6859), + [anon_sym_PLUS_PLUS] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6861), + [anon_sym_DOT_STAR] = ACTIONS(6859), + [anon_sym_DASH_GT] = ACTIONS(6859), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6859), + [anon_sym_override] = ACTIONS(6859), + [anon_sym_requires] = ACTIONS(6859), + }, + [STATE(2065)] = { + [sym_identifier] = ACTIONS(6612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6614), + [anon_sym_COMMA] = ACTIONS(6614), + [anon_sym_RPAREN] = ACTIONS(6614), + [anon_sym_LPAREN2] = ACTIONS(6614), + [anon_sym_TILDE] = ACTIONS(6614), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6612), + [anon_sym_SLASH] = ACTIONS(6612), + [anon_sym_PERCENT] = ACTIONS(6612), + [anon_sym_PIPE_PIPE] = ACTIONS(6614), + [anon_sym_AMP_AMP] = ACTIONS(6614), + [anon_sym_PIPE] = ACTIONS(6612), + [anon_sym_CARET] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(6612), + [anon_sym_EQ_EQ] = ACTIONS(6614), + [anon_sym_BANG_EQ] = ACTIONS(6614), + [anon_sym_GT] = ACTIONS(6612), + [anon_sym_GT_EQ] = ACTIONS(6614), + [anon_sym_LT_EQ] = ACTIONS(6612), + [anon_sym_LT] = ACTIONS(6612), + [anon_sym_LT_LT] = ACTIONS(6612), + [anon_sym_GT_GT] = ACTIONS(6612), + [anon_sym___extension__] = ACTIONS(6612), + [anon_sym_virtual] = ACTIONS(6612), + [anon_sym_extern] = ACTIONS(6612), + [anon_sym___attribute__] = ACTIONS(6612), + [anon_sym___attribute] = ACTIONS(6612), + [anon_sym_COLON_COLON] = ACTIONS(6614), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6614), + [anon_sym___declspec] = ACTIONS(6612), + [anon_sym___based] = ACTIONS(6612), + [anon_sym_LBRACE] = ACTIONS(6614), + [anon_sym_LBRACK] = ACTIONS(6612), + [anon_sym_static] = ACTIONS(6612), + [anon_sym_EQ] = ACTIONS(6612), + [anon_sym_register] = ACTIONS(6612), + [anon_sym_inline] = ACTIONS(6612), + [anon_sym___inline] = ACTIONS(6612), + [anon_sym___inline__] = ACTIONS(6612), + [anon_sym___forceinline] = ACTIONS(6612), + [anon_sym_thread_local] = ACTIONS(6612), + [anon_sym___thread] = ACTIONS(6612), + [anon_sym_const] = ACTIONS(6612), + [anon_sym_constexpr] = ACTIONS(6612), + [anon_sym_volatile] = ACTIONS(6612), + [anon_sym_restrict] = ACTIONS(6612), + [anon_sym___restrict__] = ACTIONS(6612), + [anon_sym__Atomic] = ACTIONS(6612), + [anon_sym__Noreturn] = ACTIONS(6612), + [anon_sym_noreturn] = ACTIONS(6612), + [anon_sym__Nonnull] = ACTIONS(6612), + [anon_sym_mutable] = ACTIONS(6612), + [anon_sym_constinit] = ACTIONS(6612), + [anon_sym_consteval] = ACTIONS(6612), + [anon_sym_alignas] = ACTIONS(6612), + [anon_sym__Alignas] = ACTIONS(6612), + [anon_sym_QMARK] = ACTIONS(6614), + [anon_sym_STAR_EQ] = ACTIONS(6614), + [anon_sym_SLASH_EQ] = ACTIONS(6614), + [anon_sym_PERCENT_EQ] = ACTIONS(6614), + [anon_sym_PLUS_EQ] = ACTIONS(6614), + [anon_sym_DASH_EQ] = ACTIONS(6614), + [anon_sym_LT_LT_EQ] = ACTIONS(6614), + [anon_sym_GT_GT_EQ] = ACTIONS(6614), + [anon_sym_AMP_EQ] = ACTIONS(6614), + [anon_sym_CARET_EQ] = ACTIONS(6614), + [anon_sym_PIPE_EQ] = ACTIONS(6614), + [anon_sym_LT_EQ_GT] = ACTIONS(6614), + [anon_sym_or] = ACTIONS(6612), + [anon_sym_and] = ACTIONS(6612), + [anon_sym_bitor] = ACTIONS(6612), + [anon_sym_xor] = ACTIONS(6612), + [anon_sym_bitand] = ACTIONS(6612), + [anon_sym_not_eq] = ACTIONS(6612), + [anon_sym_DASH_DASH] = ACTIONS(6614), + [anon_sym_PLUS_PLUS] = ACTIONS(6614), + [anon_sym_DOT] = ACTIONS(6612), + [anon_sym_DOT_STAR] = ACTIONS(6614), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6612), + [anon_sym_decltype] = ACTIONS(6612), + [anon_sym_template] = ACTIONS(6612), + [anon_sym_operator] = ACTIONS(6612), + [anon_sym_DASH_GT_STAR] = ACTIONS(6614), + [anon_sym_LBRACK_COLON] = ACTIONS(6614), + }, + [STATE(2066)] = { + [sym_identifier] = ACTIONS(6624), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6626), + [anon_sym_COMMA] = ACTIONS(6626), + [anon_sym_RPAREN] = ACTIONS(6626), + [anon_sym_LPAREN2] = ACTIONS(6626), + [anon_sym_TILDE] = ACTIONS(6626), + [anon_sym_DASH] = ACTIONS(6624), + [anon_sym_PLUS] = ACTIONS(6624), + [anon_sym_STAR] = ACTIONS(6624), + [anon_sym_SLASH] = ACTIONS(6624), + [anon_sym_PERCENT] = ACTIONS(6624), + [anon_sym_PIPE_PIPE] = ACTIONS(6626), + [anon_sym_AMP_AMP] = ACTIONS(6626), + [anon_sym_PIPE] = ACTIONS(6624), + [anon_sym_CARET] = ACTIONS(6624), + [anon_sym_AMP] = ACTIONS(6624), + [anon_sym_EQ_EQ] = ACTIONS(6626), + [anon_sym_BANG_EQ] = ACTIONS(6626), + [anon_sym_GT] = ACTIONS(6624), + [anon_sym_GT_EQ] = ACTIONS(6626), + [anon_sym_LT_EQ] = ACTIONS(6624), + [anon_sym_LT] = ACTIONS(6624), + [anon_sym_LT_LT] = ACTIONS(6624), + [anon_sym_GT_GT] = ACTIONS(6624), + [anon_sym___extension__] = ACTIONS(6624), + [anon_sym_virtual] = ACTIONS(6624), + [anon_sym_extern] = ACTIONS(6624), + [anon_sym___attribute__] = ACTIONS(6624), + [anon_sym___attribute] = ACTIONS(6624), + [anon_sym_COLON_COLON] = ACTIONS(6626), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6626), + [anon_sym___declspec] = ACTIONS(6624), + [anon_sym___based] = ACTIONS(6624), + [anon_sym_LBRACE] = ACTIONS(6626), + [anon_sym_LBRACK] = ACTIONS(6624), + [anon_sym_static] = ACTIONS(6624), + [anon_sym_EQ] = ACTIONS(6624), + [anon_sym_register] = ACTIONS(6624), + [anon_sym_inline] = ACTIONS(6624), + [anon_sym___inline] = ACTIONS(6624), + [anon_sym___inline__] = ACTIONS(6624), + [anon_sym___forceinline] = ACTIONS(6624), + [anon_sym_thread_local] = ACTIONS(6624), + [anon_sym___thread] = ACTIONS(6624), + [anon_sym_const] = ACTIONS(6624), + [anon_sym_constexpr] = ACTIONS(6624), + [anon_sym_volatile] = ACTIONS(6624), + [anon_sym_restrict] = ACTIONS(6624), + [anon_sym___restrict__] = ACTIONS(6624), + [anon_sym__Atomic] = ACTIONS(6624), + [anon_sym__Noreturn] = ACTIONS(6624), + [anon_sym_noreturn] = ACTIONS(6624), + [anon_sym__Nonnull] = ACTIONS(6624), + [anon_sym_mutable] = ACTIONS(6624), + [anon_sym_constinit] = ACTIONS(6624), + [anon_sym_consteval] = ACTIONS(6624), + [anon_sym_alignas] = ACTIONS(6624), + [anon_sym__Alignas] = ACTIONS(6624), + [anon_sym_QMARK] = ACTIONS(6626), + [anon_sym_STAR_EQ] = ACTIONS(6626), + [anon_sym_SLASH_EQ] = ACTIONS(6626), + [anon_sym_PERCENT_EQ] = ACTIONS(6626), + [anon_sym_PLUS_EQ] = ACTIONS(6626), + [anon_sym_DASH_EQ] = ACTIONS(6626), + [anon_sym_LT_LT_EQ] = ACTIONS(6626), + [anon_sym_GT_GT_EQ] = ACTIONS(6626), + [anon_sym_AMP_EQ] = ACTIONS(6626), + [anon_sym_CARET_EQ] = ACTIONS(6626), + [anon_sym_PIPE_EQ] = ACTIONS(6626), + [anon_sym_LT_EQ_GT] = ACTIONS(6626), + [anon_sym_or] = ACTIONS(6624), + [anon_sym_and] = ACTIONS(6624), + [anon_sym_bitor] = ACTIONS(6624), + [anon_sym_xor] = ACTIONS(6624), + [anon_sym_bitand] = ACTIONS(6624), + [anon_sym_not_eq] = ACTIONS(6624), + [anon_sym_DASH_DASH] = ACTIONS(6626), + [anon_sym_PLUS_PLUS] = ACTIONS(6626), + [anon_sym_DOT] = ACTIONS(6624), + [anon_sym_DOT_STAR] = ACTIONS(6626), + [anon_sym_DASH_GT] = ACTIONS(6624), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6624), + [anon_sym_decltype] = ACTIONS(6624), + [anon_sym_template] = ACTIONS(6624), + [anon_sym_operator] = ACTIONS(6624), + [anon_sym_DASH_GT_STAR] = ACTIONS(6626), + [anon_sym_LBRACK_COLON] = ACTIONS(6626), + }, + [STATE(2067)] = { + [sym_identifier] = ACTIONS(6616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6618), + [anon_sym_COMMA] = ACTIONS(6618), + [anon_sym_RPAREN] = ACTIONS(6618), + [anon_sym_LPAREN2] = ACTIONS(6618), + [anon_sym_TILDE] = ACTIONS(6618), + [anon_sym_DASH] = ACTIONS(6616), + [anon_sym_PLUS] = ACTIONS(6616), + [anon_sym_STAR] = ACTIONS(6616), + [anon_sym_SLASH] = ACTIONS(6616), + [anon_sym_PERCENT] = ACTIONS(6616), + [anon_sym_PIPE_PIPE] = ACTIONS(6618), + [anon_sym_AMP_AMP] = ACTIONS(6618), + [anon_sym_PIPE] = ACTIONS(6616), + [anon_sym_CARET] = ACTIONS(6616), + [anon_sym_AMP] = ACTIONS(6616), + [anon_sym_EQ_EQ] = ACTIONS(6618), + [anon_sym_BANG_EQ] = ACTIONS(6618), + [anon_sym_GT] = ACTIONS(6616), + [anon_sym_GT_EQ] = ACTIONS(6618), + [anon_sym_LT_EQ] = ACTIONS(6616), + [anon_sym_LT] = ACTIONS(6616), + [anon_sym_LT_LT] = ACTIONS(6616), + [anon_sym_GT_GT] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(6616), + [anon_sym_virtual] = ACTIONS(6616), + [anon_sym_extern] = ACTIONS(6616), + [anon_sym___attribute__] = ACTIONS(6616), + [anon_sym___attribute] = ACTIONS(6616), + [anon_sym_COLON_COLON] = ACTIONS(6618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6618), + [anon_sym___declspec] = ACTIONS(6616), + [anon_sym___based] = ACTIONS(6616), + [anon_sym_LBRACE] = ACTIONS(6618), + [anon_sym_LBRACK] = ACTIONS(6616), + [anon_sym_static] = ACTIONS(6616), + [anon_sym_EQ] = ACTIONS(6616), + [anon_sym_register] = ACTIONS(6616), + [anon_sym_inline] = ACTIONS(6616), + [anon_sym___inline] = ACTIONS(6616), + [anon_sym___inline__] = ACTIONS(6616), + [anon_sym___forceinline] = ACTIONS(6616), + [anon_sym_thread_local] = ACTIONS(6616), + [anon_sym___thread] = ACTIONS(6616), + [anon_sym_const] = ACTIONS(6616), + [anon_sym_constexpr] = ACTIONS(6616), + [anon_sym_volatile] = ACTIONS(6616), + [anon_sym_restrict] = ACTIONS(6616), + [anon_sym___restrict__] = ACTIONS(6616), + [anon_sym__Atomic] = ACTIONS(6616), + [anon_sym__Noreturn] = ACTIONS(6616), + [anon_sym_noreturn] = ACTIONS(6616), + [anon_sym__Nonnull] = ACTIONS(6616), + [anon_sym_mutable] = ACTIONS(6616), + [anon_sym_constinit] = ACTIONS(6616), + [anon_sym_consteval] = ACTIONS(6616), + [anon_sym_alignas] = ACTIONS(6616), + [anon_sym__Alignas] = ACTIONS(6616), + [anon_sym_QMARK] = ACTIONS(6618), + [anon_sym_STAR_EQ] = ACTIONS(6618), + [anon_sym_SLASH_EQ] = ACTIONS(6618), + [anon_sym_PERCENT_EQ] = ACTIONS(6618), + [anon_sym_PLUS_EQ] = ACTIONS(6618), + [anon_sym_DASH_EQ] = ACTIONS(6618), + [anon_sym_LT_LT_EQ] = ACTIONS(6618), + [anon_sym_GT_GT_EQ] = ACTIONS(6618), + [anon_sym_AMP_EQ] = ACTIONS(6618), + [anon_sym_CARET_EQ] = ACTIONS(6618), + [anon_sym_PIPE_EQ] = ACTIONS(6618), + [anon_sym_LT_EQ_GT] = ACTIONS(6618), + [anon_sym_or] = ACTIONS(6616), + [anon_sym_and] = ACTIONS(6616), + [anon_sym_bitor] = ACTIONS(6616), + [anon_sym_xor] = ACTIONS(6616), + [anon_sym_bitand] = ACTIONS(6616), + [anon_sym_not_eq] = ACTIONS(6616), + [anon_sym_DASH_DASH] = ACTIONS(6618), + [anon_sym_PLUS_PLUS] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(6616), + [anon_sym_DOT_STAR] = ACTIONS(6618), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6616), + [anon_sym_decltype] = ACTIONS(6616), + [anon_sym_template] = ACTIONS(6616), + [anon_sym_operator] = ACTIONS(6616), + [anon_sym_DASH_GT_STAR] = ACTIONS(6618), + [anon_sym_LBRACK_COLON] = ACTIONS(6618), + }, + [STATE(2068)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2082), + [sym_ms_pointer_modifier] = STATE(2028), + [sym__abstract_declarator] = STATE(4807), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2384), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1979), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2384), + [aux_sym_pointer_declarator_repeat1] = STATE(2028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(7162), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(7164), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(7166), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym_SEMI] = ACTIONS(6823), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym___attribute__] = ACTIONS(6823), + [anon_sym___attribute] = ACTIONS(6821), + [sym_ms_restrict_modifier] = ACTIONS(6835), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6851), + [sym_ms_signed_ptr_modifier] = ACTIONS(6851), + [anon_sym__unaligned] = ACTIONS(6853), + [anon_sym___unaligned] = ACTIONS(6853), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6823), + [anon_sym_or_eq] = ACTIONS(6823), + [anon_sym_xor_eq] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + }, + [STATE(2069)] = { + [sym_attribute_specifier] = STATE(2316), + [sym_attribute_declaration] = STATE(4713), + [sym_type_qualifier] = STATE(2459), + [sym_alignas_qualifier] = STATE(2727), + [sym_gnu_asm_expression] = STATE(9134), + [sym_virtual_specifier] = STATE(4778), + [sym_ref_qualifier] = STATE(3692), + [sym__function_attributes_start] = STATE(3501), + [sym__function_exception_specification] = STATE(4135), + [sym__function_attributes_end] = STATE(6001), + [sym__function_postfix] = STATE(5415), + [sym_trailing_return_type] = STATE(5893), + [sym_noexcept] = STATE(4135), + [sym_throw_specifier] = STATE(4135), + [sym_requires_clause] = STATE(5415), + [aux_sym_type_definition_repeat1] = STATE(2316), + [aux_sym__type_definition_type_repeat1] = STATE(2459), + [aux_sym_attributed_declarator_repeat1] = STATE(4713), + [aux_sym__function_postfix_repeat1] = STATE(4778), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), + [anon_sym_COMMA] = ACTIONS(6481), + [anon_sym_RPAREN] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_PLUS] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6481), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_PERCENT] = ACTIONS(6481), + [anon_sym_PIPE_PIPE] = ACTIONS(6481), + [anon_sym_AMP_AMP] = ACTIONS(7168), + [anon_sym_PIPE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6481), + [anon_sym_AMP] = ACTIONS(7171), + [anon_sym_EQ_EQ] = ACTIONS(6481), + [anon_sym_BANG_EQ] = ACTIONS(6481), + [anon_sym_GT] = ACTIONS(6479), + [anon_sym_GT_EQ] = ACTIONS(6481), + [anon_sym_LT_EQ] = ACTIONS(6479), + [anon_sym_LT] = ACTIONS(6479), + [anon_sym_LT_LT] = ACTIONS(6481), + [anon_sym_GT_GT] = ACTIONS(6481), + [anon_sym_SEMI] = ACTIONS(6481), + [anon_sym___extension__] = ACTIONS(7174), + [anon_sym___attribute__] = ACTIONS(7176), + [anon_sym___attribute] = ACTIONS(7178), + [anon_sym_COLON] = ACTIONS(6479), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6481), + [anon_sym_RBRACE] = ACTIONS(6481), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(7182), + [anon_sym_constexpr] = ACTIONS(7174), + [anon_sym_volatile] = ACTIONS(7174), + [anon_sym_restrict] = ACTIONS(7174), + [anon_sym___restrict__] = ACTIONS(7174), + [anon_sym__Atomic] = ACTIONS(7174), + [anon_sym__Noreturn] = ACTIONS(7174), + [anon_sym_noreturn] = ACTIONS(7174), + [anon_sym__Nonnull] = ACTIONS(7174), + [anon_sym_mutable] = ACTIONS(7174), + [anon_sym_constinit] = ACTIONS(7174), + [anon_sym_consteval] = ACTIONS(7174), + [anon_sym_alignas] = ACTIONS(7184), + [anon_sym__Alignas] = ACTIONS(7184), + [anon_sym_QMARK] = ACTIONS(6481), + [anon_sym_LT_EQ_GT] = ACTIONS(6481), + [anon_sym_or] = ACTIONS(6481), + [anon_sym_and] = ACTIONS(6481), + [anon_sym_bitor] = ACTIONS(6481), + [anon_sym_xor] = ACTIONS(6481), + [anon_sym_bitand] = ACTIONS(6481), + [anon_sym_not_eq] = ACTIONS(6481), + [anon_sym_DASH_DASH] = ACTIONS(6481), + [anon_sym_PLUS_PLUS] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6479), + [anon_sym_DOT_STAR] = ACTIONS(6481), + [anon_sym_DASH_GT] = ACTIONS(7186), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7189), + [anon_sym_override] = ACTIONS(7189), + [anon_sym_noexcept] = ACTIONS(7192), + [anon_sym_throw] = ACTIONS(7194), + [anon_sym_requires] = ACTIONS(7196), + [anon_sym_COLON_RBRACK] = ACTIONS(6481), + }, + [STATE(2070)] = { + [sym_identifier] = ACTIONS(7199), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), + [anon_sym_COMMA] = ACTIONS(7201), + [anon_sym_RPAREN] = ACTIONS(7201), + [aux_sym_preproc_if_token2] = ACTIONS(7201), + [aux_sym_preproc_else_token1] = ACTIONS(7201), + [aux_sym_preproc_elif_token1] = ACTIONS(7199), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7201), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7201), + [anon_sym_LPAREN2] = ACTIONS(7201), + [anon_sym_DASH] = ACTIONS(7199), + [anon_sym_PLUS] = ACTIONS(7199), + [anon_sym_STAR] = ACTIONS(7199), + [anon_sym_SLASH] = ACTIONS(7199), + [anon_sym_PERCENT] = ACTIONS(7199), + [anon_sym_PIPE_PIPE] = ACTIONS(7201), + [anon_sym_AMP_AMP] = ACTIONS(7201), + [anon_sym_PIPE] = ACTIONS(7199), + [anon_sym_CARET] = ACTIONS(7199), + [anon_sym_AMP] = ACTIONS(7199), + [anon_sym_EQ_EQ] = ACTIONS(7201), + [anon_sym_BANG_EQ] = ACTIONS(7201), + [anon_sym_GT] = ACTIONS(7199), + [anon_sym_GT_EQ] = ACTIONS(7201), + [anon_sym_LT_EQ] = ACTIONS(7199), + [anon_sym_LT] = ACTIONS(7199), + [anon_sym_LT_LT] = ACTIONS(7199), + [anon_sym_GT_GT] = ACTIONS(7199), + [anon_sym_SEMI] = ACTIONS(7201), + [anon_sym___extension__] = ACTIONS(7199), + [anon_sym___attribute__] = ACTIONS(7199), + [anon_sym___attribute] = ACTIONS(7199), + [anon_sym_COLON] = ACTIONS(7199), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7201), + [sym_ms_restrict_modifier] = ACTIONS(7199), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7199), + [sym_ms_signed_ptr_modifier] = ACTIONS(7199), + [anon_sym__unaligned] = ACTIONS(7199), + [anon_sym___unaligned] = ACTIONS(7199), + [anon_sym_RBRACE] = ACTIONS(7201), + [anon_sym_LBRACK] = ACTIONS(7201), + [anon_sym_EQ] = ACTIONS(7199), + [anon_sym_const] = ACTIONS(7199), + [anon_sym_constexpr] = ACTIONS(7199), + [anon_sym_volatile] = ACTIONS(7199), + [anon_sym_restrict] = ACTIONS(7199), + [anon_sym___restrict__] = ACTIONS(7199), + [anon_sym__Atomic] = ACTIONS(7199), + [anon_sym__Noreturn] = ACTIONS(7199), + [anon_sym_noreturn] = ACTIONS(7199), + [anon_sym__Nonnull] = ACTIONS(7199), + [anon_sym_mutable] = ACTIONS(7199), + [anon_sym_constinit] = ACTIONS(7199), + [anon_sym_consteval] = ACTIONS(7199), + [anon_sym_alignas] = ACTIONS(7199), + [anon_sym__Alignas] = ACTIONS(7199), + [anon_sym_QMARK] = ACTIONS(7201), + [anon_sym_STAR_EQ] = ACTIONS(7201), + [anon_sym_SLASH_EQ] = ACTIONS(7201), + [anon_sym_PERCENT_EQ] = ACTIONS(7201), + [anon_sym_PLUS_EQ] = ACTIONS(7201), + [anon_sym_DASH_EQ] = ACTIONS(7201), + [anon_sym_LT_LT_EQ] = ACTIONS(7201), + [anon_sym_GT_GT_EQ] = ACTIONS(7201), + [anon_sym_AMP_EQ] = ACTIONS(7201), + [anon_sym_CARET_EQ] = ACTIONS(7201), + [anon_sym_PIPE_EQ] = ACTIONS(7201), + [anon_sym_and_eq] = ACTIONS(7199), + [anon_sym_or_eq] = ACTIONS(7199), + [anon_sym_xor_eq] = ACTIONS(7199), + [anon_sym_LT_EQ_GT] = ACTIONS(7201), + [anon_sym_or] = ACTIONS(7199), + [anon_sym_and] = ACTIONS(7199), [anon_sym_bitor] = ACTIONS(7199), [anon_sym_xor] = ACTIONS(7199), [anon_sym_bitand] = ACTIONS(7199), @@ -308285,131 +320135,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(7199), [anon_sym_override] = ACTIONS(7199), [anon_sym_requires] = ACTIONS(7199), + [anon_sym_COLON_RBRACK] = ACTIONS(7201), }, - [STATE(2073)] = { - [sym_identifier] = ACTIONS(7205), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7207), - [anon_sym_COMMA] = ACTIONS(7207), - [anon_sym_RPAREN] = ACTIONS(7207), - [aux_sym_preproc_if_token2] = ACTIONS(7207), - [aux_sym_preproc_else_token1] = ACTIONS(7207), - [aux_sym_preproc_elif_token1] = ACTIONS(7205), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7207), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7207), - [anon_sym_LPAREN2] = ACTIONS(7207), - [anon_sym_DASH] = ACTIONS(7205), - [anon_sym_PLUS] = ACTIONS(7205), - [anon_sym_STAR] = ACTIONS(7205), - [anon_sym_SLASH] = ACTIONS(7205), - [anon_sym_PERCENT] = ACTIONS(7205), - [anon_sym_PIPE_PIPE] = ACTIONS(7207), - [anon_sym_AMP_AMP] = ACTIONS(7207), - [anon_sym_PIPE] = ACTIONS(7205), - [anon_sym_CARET] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7205), - [anon_sym_EQ_EQ] = ACTIONS(7207), - [anon_sym_BANG_EQ] = ACTIONS(7207), - [anon_sym_GT] = ACTIONS(7205), - [anon_sym_GT_EQ] = ACTIONS(7207), - [anon_sym_LT_EQ] = ACTIONS(7205), - [anon_sym_LT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_GT_GT] = ACTIONS(7205), - [anon_sym_SEMI] = ACTIONS(7207), - [anon_sym___extension__] = ACTIONS(7205), - [anon_sym___attribute__] = ACTIONS(7205), - [anon_sym___attribute] = ACTIONS(7205), - [anon_sym_COLON] = ACTIONS(7205), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7207), - [anon_sym_LBRACE] = ACTIONS(7207), - [anon_sym_RBRACE] = ACTIONS(7207), - [anon_sym_LBRACK] = ACTIONS(7207), - [anon_sym_EQ] = ACTIONS(7205), - [anon_sym_const] = ACTIONS(7205), - [anon_sym_constexpr] = ACTIONS(7205), - [anon_sym_volatile] = ACTIONS(7205), - [anon_sym_restrict] = ACTIONS(7205), - [anon_sym___restrict__] = ACTIONS(7205), - [anon_sym__Atomic] = ACTIONS(7205), - [anon_sym__Noreturn] = ACTIONS(7205), - [anon_sym_noreturn] = ACTIONS(7205), - [anon_sym__Nonnull] = ACTIONS(7205), - [anon_sym_mutable] = ACTIONS(7205), - [anon_sym_constinit] = ACTIONS(7205), - [anon_sym_consteval] = ACTIONS(7205), - [anon_sym_alignas] = ACTIONS(7205), - [anon_sym__Alignas] = ACTIONS(7205), - [anon_sym_QMARK] = ACTIONS(7207), - [anon_sym_STAR_EQ] = ACTIONS(7207), - [anon_sym_SLASH_EQ] = ACTIONS(7207), - [anon_sym_PERCENT_EQ] = ACTIONS(7207), - [anon_sym_PLUS_EQ] = ACTIONS(7207), - [anon_sym_DASH_EQ] = ACTIONS(7207), - [anon_sym_LT_LT_EQ] = ACTIONS(7207), - [anon_sym_GT_GT_EQ] = ACTIONS(7207), - [anon_sym_AMP_EQ] = ACTIONS(7207), - [anon_sym_CARET_EQ] = ACTIONS(7207), - [anon_sym_PIPE_EQ] = ACTIONS(7207), - [anon_sym_and_eq] = ACTIONS(7205), - [anon_sym_or_eq] = ACTIONS(7205), - [anon_sym_xor_eq] = ACTIONS(7205), - [anon_sym_LT_EQ_GT] = ACTIONS(7207), - [anon_sym_or] = ACTIONS(7205), - [anon_sym_and] = ACTIONS(7205), - [anon_sym_bitor] = ACTIONS(7205), - [anon_sym_xor] = ACTIONS(7205), - [anon_sym_bitand] = ACTIONS(7205), - [anon_sym_not_eq] = ACTIONS(7205), - [anon_sym_DASH_DASH] = ACTIONS(7207), - [anon_sym_PLUS_PLUS] = ACTIONS(7207), - [anon_sym_DOT] = ACTIONS(7205), - [anon_sym_DOT_STAR] = ACTIONS(7207), - [anon_sym_DASH_GT] = ACTIONS(7207), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7205), - [anon_sym_override] = ACTIONS(7205), - [anon_sym_requires] = ACTIONS(7205), - [anon_sym_COLON_RBRACK] = ACTIONS(7207), - }, - [STATE(2074)] = { - [sym_identifier] = ACTIONS(7209), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7211), - [anon_sym_COMMA] = ACTIONS(7211), - [anon_sym_RPAREN] = ACTIONS(7211), - [aux_sym_preproc_if_token2] = ACTIONS(7211), - [aux_sym_preproc_else_token1] = ACTIONS(7211), - [aux_sym_preproc_elif_token1] = ACTIONS(7209), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7211), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7211), - [anon_sym_LPAREN2] = ACTIONS(7211), - [anon_sym_DASH] = ACTIONS(7209), - [anon_sym_PLUS] = ACTIONS(7209), - [anon_sym_STAR] = ACTIONS(7209), - [anon_sym_SLASH] = ACTIONS(7209), - [anon_sym_PERCENT] = ACTIONS(7209), - [anon_sym_PIPE_PIPE] = ACTIONS(7211), - [anon_sym_AMP_AMP] = ACTIONS(7211), - [anon_sym_PIPE] = ACTIONS(7209), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_AMP] = ACTIONS(7209), - [anon_sym_EQ_EQ] = ACTIONS(7211), - [anon_sym_BANG_EQ] = ACTIONS(7211), - [anon_sym_GT] = ACTIONS(7209), - [anon_sym_GT_EQ] = ACTIONS(7211), - [anon_sym_LT_EQ] = ACTIONS(7209), - [anon_sym_LT] = ACTIONS(7209), - [anon_sym_LT_LT] = ACTIONS(7209), - [anon_sym_GT_GT] = ACTIONS(7209), - [anon_sym_SEMI] = ACTIONS(7211), + [STATE(2071)] = { + [sym_type_qualifier] = STATE(2006), + [sym_alignas_qualifier] = STATE(2047), + [aux_sym__type_definition_type_repeat1] = STATE(2006), + [aux_sym_sized_type_specifier_repeat1] = STATE(2273), + [sym_identifier] = ACTIONS(7203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), + [anon_sym_COMMA] = ACTIONS(7205), + [anon_sym_RPAREN] = ACTIONS(7205), + [anon_sym_LPAREN2] = ACTIONS(7205), + [anon_sym_DASH] = ACTIONS(7207), + [anon_sym_PLUS] = ACTIONS(7207), + [anon_sym_STAR] = ACTIONS(7207), + [anon_sym_SLASH] = ACTIONS(7207), + [anon_sym_PERCENT] = ACTIONS(7207), + [anon_sym_PIPE_PIPE] = ACTIONS(7205), + [anon_sym_AMP_AMP] = ACTIONS(7205), + [anon_sym_PIPE] = ACTIONS(7207), + [anon_sym_CARET] = ACTIONS(7207), + [anon_sym_AMP] = ACTIONS(7207), + [anon_sym_EQ_EQ] = ACTIONS(7205), + [anon_sym_BANG_EQ] = ACTIONS(7205), + [anon_sym_GT] = ACTIONS(7207), + [anon_sym_GT_EQ] = ACTIONS(7205), + [anon_sym_LT_EQ] = ACTIONS(7207), + [anon_sym_LT] = ACTIONS(7207), + [anon_sym_LT_LT] = ACTIONS(7207), + [anon_sym_GT_GT] = ACTIONS(7207), + [anon_sym_SEMI] = ACTIONS(7205), [anon_sym___extension__] = ACTIONS(7209), - [anon_sym___attribute__] = ACTIONS(7209), - [anon_sym___attribute] = ACTIONS(7209), - [anon_sym_COLON] = ACTIONS(7209), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7211), - [anon_sym_LBRACE] = ACTIONS(7211), - [anon_sym_RBRACE] = ACTIONS(7211), - [anon_sym_LBRACK] = ACTIONS(7211), - [anon_sym_EQ] = ACTIONS(7209), + [anon_sym___attribute__] = ACTIONS(7207), + [anon_sym___attribute] = ACTIONS(7207), + [anon_sym_COLON] = ACTIONS(7207), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7205), + [anon_sym_LBRACE] = ACTIONS(7205), + [anon_sym_RBRACE] = ACTIONS(7205), + [anon_sym_signed] = ACTIONS(7212), + [anon_sym_unsigned] = ACTIONS(7212), + [anon_sym_long] = ACTIONS(7212), + [anon_sym_short] = ACTIONS(7212), + [anon_sym_LBRACK] = ACTIONS(7205), + [anon_sym_EQ] = ACTIONS(7207), [anon_sym_const] = ACTIONS(7209), [anon_sym_constexpr] = ACTIONS(7209), [anon_sym_volatile] = ACTIONS(7209), @@ -308422,296 +320191,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(7209), [anon_sym_constinit] = ACTIONS(7209), [anon_sym_consteval] = ACTIONS(7209), - [anon_sym_alignas] = ACTIONS(7209), - [anon_sym__Alignas] = ACTIONS(7209), - [anon_sym_QMARK] = ACTIONS(7211), - [anon_sym_STAR_EQ] = ACTIONS(7211), - [anon_sym_SLASH_EQ] = ACTIONS(7211), - [anon_sym_PERCENT_EQ] = ACTIONS(7211), - [anon_sym_PLUS_EQ] = ACTIONS(7211), - [anon_sym_DASH_EQ] = ACTIONS(7211), - [anon_sym_LT_LT_EQ] = ACTIONS(7211), - [anon_sym_GT_GT_EQ] = ACTIONS(7211), - [anon_sym_AMP_EQ] = ACTIONS(7211), - [anon_sym_CARET_EQ] = ACTIONS(7211), - [anon_sym_PIPE_EQ] = ACTIONS(7211), - [anon_sym_and_eq] = ACTIONS(7209), - [anon_sym_or_eq] = ACTIONS(7209), - [anon_sym_xor_eq] = ACTIONS(7209), - [anon_sym_LT_EQ_GT] = ACTIONS(7211), - [anon_sym_or] = ACTIONS(7209), - [anon_sym_and] = ACTIONS(7209), - [anon_sym_bitor] = ACTIONS(7209), - [anon_sym_xor] = ACTIONS(7209), - [anon_sym_bitand] = ACTIONS(7209), - [anon_sym_not_eq] = ACTIONS(7209), - [anon_sym_DASH_DASH] = ACTIONS(7211), - [anon_sym_PLUS_PLUS] = ACTIONS(7211), - [anon_sym_DOT] = ACTIONS(7209), - [anon_sym_DOT_STAR] = ACTIONS(7211), - [anon_sym_DASH_GT] = ACTIONS(7211), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7209), - [anon_sym_override] = ACTIONS(7209), - [anon_sym_requires] = ACTIONS(7209), - [anon_sym_COLON_RBRACK] = ACTIONS(7211), - }, - [STATE(2075)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2122), - [sym_identifier] = ACTIONS(7213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7215), - [anon_sym_COMMA] = ACTIONS(7215), - [aux_sym_preproc_if_token2] = ACTIONS(7215), - [aux_sym_preproc_else_token1] = ACTIONS(7215), - [aux_sym_preproc_elif_token1] = ACTIONS(7213), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7215), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7215), - [anon_sym_LPAREN2] = ACTIONS(7215), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_STAR] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7213), - [anon_sym_PERCENT] = ACTIONS(7213), - [anon_sym_PIPE_PIPE] = ACTIONS(7215), - [anon_sym_AMP_AMP] = ACTIONS(7215), - [anon_sym_PIPE] = ACTIONS(7213), - [anon_sym_CARET] = ACTIONS(7213), - [anon_sym_AMP] = ACTIONS(7213), - [anon_sym_EQ_EQ] = ACTIONS(7215), - [anon_sym_BANG_EQ] = ACTIONS(7215), - [anon_sym_GT] = ACTIONS(7213), - [anon_sym_GT_EQ] = ACTIONS(7215), - [anon_sym_LT_EQ] = ACTIONS(7213), - [anon_sym_LT] = ACTIONS(7213), - [anon_sym_LT_LT] = ACTIONS(7213), - [anon_sym_GT_GT] = ACTIONS(7213), - [anon_sym___extension__] = ACTIONS(7213), - [anon_sym___attribute__] = ACTIONS(7213), - [anon_sym___attribute] = ACTIONS(7213), - [anon_sym_LBRACE] = ACTIONS(7215), - [anon_sym_signed] = ACTIONS(7217), - [anon_sym_unsigned] = ACTIONS(7217), - [anon_sym_long] = ACTIONS(7217), - [anon_sym_short] = ACTIONS(7217), - [anon_sym_LBRACK] = ACTIONS(7215), - [anon_sym_RBRACK] = ACTIONS(7215), - [anon_sym_EQ] = ACTIONS(7213), - [anon_sym_const] = ACTIONS(7213), - [anon_sym_constexpr] = ACTIONS(7213), - [anon_sym_volatile] = ACTIONS(7213), - [anon_sym_restrict] = ACTIONS(7213), - [anon_sym___restrict__] = ACTIONS(7213), - [anon_sym__Atomic] = ACTIONS(7213), - [anon_sym__Noreturn] = ACTIONS(7213), - [anon_sym_noreturn] = ACTIONS(7213), - [anon_sym__Nonnull] = ACTIONS(7213), - [anon_sym_mutable] = ACTIONS(7213), - [anon_sym_constinit] = ACTIONS(7213), - [anon_sym_consteval] = ACTIONS(7213), - [anon_sym_alignas] = ACTIONS(7213), - [anon_sym__Alignas] = ACTIONS(7213), - [anon_sym_QMARK] = ACTIONS(7215), - [anon_sym_STAR_EQ] = ACTIONS(7215), - [anon_sym_SLASH_EQ] = ACTIONS(7215), - [anon_sym_PERCENT_EQ] = ACTIONS(7215), - [anon_sym_PLUS_EQ] = ACTIONS(7215), - [anon_sym_DASH_EQ] = ACTIONS(7215), - [anon_sym_LT_LT_EQ] = ACTIONS(7215), - [anon_sym_GT_GT_EQ] = ACTIONS(7215), - [anon_sym_AMP_EQ] = ACTIONS(7215), - [anon_sym_CARET_EQ] = ACTIONS(7215), - [anon_sym_PIPE_EQ] = ACTIONS(7215), - [anon_sym_and_eq] = ACTIONS(7213), - [anon_sym_or_eq] = ACTIONS(7213), - [anon_sym_xor_eq] = ACTIONS(7213), - [anon_sym_LT_EQ_GT] = ACTIONS(7215), - [anon_sym_or] = ACTIONS(7213), - [anon_sym_and] = ACTIONS(7213), - [anon_sym_bitor] = ACTIONS(7213), - [anon_sym_xor] = ACTIONS(7213), - [anon_sym_bitand] = ACTIONS(7213), - [anon_sym_not_eq] = ACTIONS(7213), - [anon_sym_DASH_DASH] = ACTIONS(7215), - [anon_sym_PLUS_PLUS] = ACTIONS(7215), - [anon_sym_DOT] = ACTIONS(7213), - [anon_sym_DOT_STAR] = ACTIONS(7215), - [anon_sym_DASH_GT] = ACTIONS(7215), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7213), - [anon_sym_override] = ACTIONS(7213), - [anon_sym_requires] = ACTIONS(7213), - }, - [STATE(2076)] = { - [sym_identifier] = ACTIONS(6790), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6792), - [anon_sym_COMMA] = ACTIONS(6792), - [anon_sym_RPAREN] = ACTIONS(6792), - [aux_sym_preproc_if_token2] = ACTIONS(6792), - [aux_sym_preproc_else_token1] = ACTIONS(6792), - [aux_sym_preproc_elif_token1] = ACTIONS(6790), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6792), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6792), - [anon_sym_LPAREN2] = ACTIONS(6792), - [anon_sym_DASH] = ACTIONS(6790), - [anon_sym_PLUS] = ACTIONS(6790), - [anon_sym_STAR] = ACTIONS(6790), - [anon_sym_SLASH] = ACTIONS(6790), - [anon_sym_PERCENT] = ACTIONS(6790), - [anon_sym_PIPE_PIPE] = ACTIONS(6792), - [anon_sym_AMP_AMP] = ACTIONS(6792), - [anon_sym_PIPE] = ACTIONS(6790), - [anon_sym_CARET] = ACTIONS(6790), - [anon_sym_AMP] = ACTIONS(6790), - [anon_sym_EQ_EQ] = ACTIONS(6792), - [anon_sym_BANG_EQ] = ACTIONS(6792), - [anon_sym_GT] = ACTIONS(6790), - [anon_sym_GT_EQ] = ACTIONS(6792), - [anon_sym_LT_EQ] = ACTIONS(6790), - [anon_sym_LT] = ACTIONS(6790), - [anon_sym_LT_LT] = ACTIONS(6790), - [anon_sym_GT_GT] = ACTIONS(6790), - [anon_sym_SEMI] = ACTIONS(6792), - [anon_sym___extension__] = ACTIONS(6790), - [anon_sym___attribute__] = ACTIONS(6790), - [anon_sym___attribute] = ACTIONS(6790), - [anon_sym_COLON] = ACTIONS(6790), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6792), - [anon_sym_LBRACE] = ACTIONS(6792), - [anon_sym_RBRACE] = ACTIONS(6792), - [anon_sym_LBRACK] = ACTIONS(6792), - [anon_sym_EQ] = ACTIONS(6790), - [anon_sym_const] = ACTIONS(6790), - [anon_sym_constexpr] = ACTIONS(6790), - [anon_sym_volatile] = ACTIONS(6790), - [anon_sym_restrict] = ACTIONS(6790), - [anon_sym___restrict__] = ACTIONS(6790), - [anon_sym__Atomic] = ACTIONS(6790), - [anon_sym__Noreturn] = ACTIONS(6790), - [anon_sym_noreturn] = ACTIONS(6790), - [anon_sym__Nonnull] = ACTIONS(6790), - [anon_sym_mutable] = ACTIONS(6790), - [anon_sym_constinit] = ACTIONS(6790), - [anon_sym_consteval] = ACTIONS(6790), - [anon_sym_alignas] = ACTIONS(6790), - [anon_sym__Alignas] = ACTIONS(6790), - [anon_sym_QMARK] = ACTIONS(6792), - [anon_sym_STAR_EQ] = ACTIONS(6792), - [anon_sym_SLASH_EQ] = ACTIONS(6792), - [anon_sym_PERCENT_EQ] = ACTIONS(6792), - [anon_sym_PLUS_EQ] = ACTIONS(6792), - [anon_sym_DASH_EQ] = ACTIONS(6792), - [anon_sym_LT_LT_EQ] = ACTIONS(6792), - [anon_sym_GT_GT_EQ] = ACTIONS(6792), - [anon_sym_AMP_EQ] = ACTIONS(6792), - [anon_sym_CARET_EQ] = ACTIONS(6792), - [anon_sym_PIPE_EQ] = ACTIONS(6792), - [anon_sym_and_eq] = ACTIONS(6790), - [anon_sym_or_eq] = ACTIONS(6790), - [anon_sym_xor_eq] = ACTIONS(6790), - [anon_sym_LT_EQ_GT] = ACTIONS(6792), - [anon_sym_or] = ACTIONS(6790), - [anon_sym_and] = ACTIONS(6790), - [anon_sym_bitor] = ACTIONS(6790), - [anon_sym_xor] = ACTIONS(6790), - [anon_sym_bitand] = ACTIONS(6790), - [anon_sym_not_eq] = ACTIONS(6790), - [anon_sym_DASH_DASH] = ACTIONS(6792), - [anon_sym_PLUS_PLUS] = ACTIONS(6792), - [anon_sym_DOT] = ACTIONS(6790), - [anon_sym_DOT_STAR] = ACTIONS(6792), - [anon_sym_DASH_GT] = ACTIONS(6792), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6790), - [anon_sym_override] = ACTIONS(6790), - [anon_sym_requires] = ACTIONS(6790), - [anon_sym_COLON_RBRACK] = ACTIONS(6792), + [anon_sym_alignas] = ACTIONS(7214), + [anon_sym__Alignas] = ACTIONS(7214), + [sym_primitive_type] = ACTIONS(7217), + [anon_sym_QMARK] = ACTIONS(7205), + [anon_sym_STAR_EQ] = ACTIONS(7205), + [anon_sym_SLASH_EQ] = ACTIONS(7205), + [anon_sym_PERCENT_EQ] = ACTIONS(7205), + [anon_sym_PLUS_EQ] = ACTIONS(7205), + [anon_sym_DASH_EQ] = ACTIONS(7205), + [anon_sym_LT_LT_EQ] = ACTIONS(7205), + [anon_sym_GT_GT_EQ] = ACTIONS(7205), + [anon_sym_AMP_EQ] = ACTIONS(7205), + [anon_sym_CARET_EQ] = ACTIONS(7205), + [anon_sym_PIPE_EQ] = ACTIONS(7205), + [anon_sym_and_eq] = ACTIONS(7207), + [anon_sym_or_eq] = ACTIONS(7207), + [anon_sym_xor_eq] = ACTIONS(7207), + [anon_sym_LT_EQ_GT] = ACTIONS(7205), + [anon_sym_or] = ACTIONS(7207), + [anon_sym_and] = ACTIONS(7207), + [anon_sym_bitor] = ACTIONS(7207), + [anon_sym_xor] = ACTIONS(7207), + [anon_sym_bitand] = ACTIONS(7207), + [anon_sym_not_eq] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7205), + [anon_sym_PLUS_PLUS] = ACTIONS(7205), + [anon_sym_DOT] = ACTIONS(7207), + [anon_sym_DOT_STAR] = ACTIONS(7205), + [anon_sym_DASH_GT] = ACTIONS(7205), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7207), + [anon_sym_override] = ACTIONS(7207), + [anon_sym_requires] = ACTIONS(7207), + [anon_sym_COLON_RBRACK] = ACTIONS(7205), }, - [STATE(2077)] = { - [sym_identifier] = ACTIONS(7219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7221), - [anon_sym_COMMA] = ACTIONS(7221), - [anon_sym_RPAREN] = ACTIONS(7221), - [aux_sym_preproc_if_token2] = ACTIONS(7221), - [aux_sym_preproc_else_token1] = ACTIONS(7221), - [aux_sym_preproc_elif_token1] = ACTIONS(7219), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7221), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7221), - [anon_sym_LPAREN2] = ACTIONS(7221), - [anon_sym_DASH] = ACTIONS(7219), - [anon_sym_PLUS] = ACTIONS(7219), - [anon_sym_STAR] = ACTIONS(7219), - [anon_sym_SLASH] = ACTIONS(7219), - [anon_sym_PERCENT] = ACTIONS(7219), - [anon_sym_PIPE_PIPE] = ACTIONS(7221), - [anon_sym_AMP_AMP] = ACTIONS(7221), - [anon_sym_PIPE] = ACTIONS(7219), - [anon_sym_CARET] = ACTIONS(7219), - [anon_sym_AMP] = ACTIONS(7219), - [anon_sym_EQ_EQ] = ACTIONS(7221), - [anon_sym_BANG_EQ] = ACTIONS(7221), - [anon_sym_GT] = ACTIONS(7219), - [anon_sym_GT_EQ] = ACTIONS(7221), - [anon_sym_LT_EQ] = ACTIONS(7219), - [anon_sym_LT] = ACTIONS(7219), - [anon_sym_LT_LT] = ACTIONS(7219), - [anon_sym_GT_GT] = ACTIONS(7219), - [anon_sym_SEMI] = ACTIONS(7221), - [anon_sym___extension__] = ACTIONS(7219), - [anon_sym___attribute__] = ACTIONS(7219), - [anon_sym___attribute] = ACTIONS(7219), - [anon_sym_COLON] = ACTIONS(7219), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7221), - [anon_sym_LBRACE] = ACTIONS(7221), - [anon_sym_RBRACE] = ACTIONS(7221), - [anon_sym_LBRACK] = ACTIONS(7221), - [anon_sym_EQ] = ACTIONS(7219), - [anon_sym_const] = ACTIONS(7219), - [anon_sym_constexpr] = ACTIONS(7219), - [anon_sym_volatile] = ACTIONS(7219), - [anon_sym_restrict] = ACTIONS(7219), - [anon_sym___restrict__] = ACTIONS(7219), - [anon_sym__Atomic] = ACTIONS(7219), - [anon_sym__Noreturn] = ACTIONS(7219), - [anon_sym_noreturn] = ACTIONS(7219), - [anon_sym__Nonnull] = ACTIONS(7219), - [anon_sym_mutable] = ACTIONS(7219), - [anon_sym_constinit] = ACTIONS(7219), - [anon_sym_consteval] = ACTIONS(7219), - [anon_sym_alignas] = ACTIONS(7219), - [anon_sym__Alignas] = ACTIONS(7219), - [anon_sym_QMARK] = ACTIONS(7221), - [anon_sym_STAR_EQ] = ACTIONS(7221), - [anon_sym_SLASH_EQ] = ACTIONS(7221), - [anon_sym_PERCENT_EQ] = ACTIONS(7221), - [anon_sym_PLUS_EQ] = ACTIONS(7221), - [anon_sym_DASH_EQ] = ACTIONS(7221), - [anon_sym_LT_LT_EQ] = ACTIONS(7221), - [anon_sym_GT_GT_EQ] = ACTIONS(7221), - [anon_sym_AMP_EQ] = ACTIONS(7221), - [anon_sym_CARET_EQ] = ACTIONS(7221), - [anon_sym_PIPE_EQ] = ACTIONS(7221), - [anon_sym_and_eq] = ACTIONS(7219), - [anon_sym_or_eq] = ACTIONS(7219), - [anon_sym_xor_eq] = ACTIONS(7219), - [anon_sym_LT_EQ_GT] = ACTIONS(7221), - [anon_sym_or] = ACTIONS(7219), - [anon_sym_and] = ACTIONS(7219), - [anon_sym_bitor] = ACTIONS(7219), - [anon_sym_xor] = ACTIONS(7219), - [anon_sym_bitand] = ACTIONS(7219), - [anon_sym_not_eq] = ACTIONS(7219), - [anon_sym_DASH_DASH] = ACTIONS(7221), - [anon_sym_PLUS_PLUS] = ACTIONS(7221), - [anon_sym_DOT] = ACTIONS(7219), - [anon_sym_DOT_STAR] = ACTIONS(7221), - [anon_sym_DASH_GT] = ACTIONS(7221), + [STATE(2072)] = { + [sym_attribute_specifier] = STATE(2316), + [sym_attribute_declaration] = STATE(4713), + [sym_type_qualifier] = STATE(2459), + [sym_alignas_qualifier] = STATE(2727), + [sym_gnu_asm_expression] = STATE(9134), + [sym_virtual_specifier] = STATE(4778), + [sym_ref_qualifier] = STATE(3646), + [sym__function_attributes_start] = STATE(3496), + [sym__function_exception_specification] = STATE(4086), + [sym__function_attributes_end] = STATE(6015), + [sym__function_postfix] = STATE(5415), + [sym_trailing_return_type] = STATE(5912), + [sym_noexcept] = STATE(4086), + [sym_throw_specifier] = STATE(4086), + [sym_requires_clause] = STATE(5415), + [aux_sym_type_definition_repeat1] = STATE(2316), + [aux_sym__type_definition_type_repeat1] = STATE(2459), + [aux_sym_attributed_declarator_repeat1] = STATE(4713), + [aux_sym__function_postfix_repeat1] = STATE(4778), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), + [anon_sym_COMMA] = ACTIONS(6481), + [anon_sym_RPAREN] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_PLUS] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6481), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_PERCENT] = ACTIONS(6481), + [anon_sym_PIPE_PIPE] = ACTIONS(6481), + [anon_sym_AMP_AMP] = ACTIONS(7168), + [anon_sym_PIPE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6481), + [anon_sym_AMP] = ACTIONS(7171), + [anon_sym_EQ_EQ] = ACTIONS(6481), + [anon_sym_BANG_EQ] = ACTIONS(6481), + [anon_sym_GT] = ACTIONS(6479), + [anon_sym_GT_EQ] = ACTIONS(6481), + [anon_sym_LT_EQ] = ACTIONS(6479), + [anon_sym_LT] = ACTIONS(6479), + [anon_sym_LT_LT] = ACTIONS(6481), + [anon_sym_GT_GT] = ACTIONS(6481), + [anon_sym_SEMI] = ACTIONS(6481), + [anon_sym___extension__] = ACTIONS(7174), + [anon_sym___attribute__] = ACTIONS(7176), + [anon_sym___attribute] = ACTIONS(7178), + [anon_sym_COLON] = ACTIONS(6479), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6481), + [anon_sym_RBRACE] = ACTIONS(6481), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(7182), + [anon_sym_constexpr] = ACTIONS(7174), + [anon_sym_volatile] = ACTIONS(7174), + [anon_sym_restrict] = ACTIONS(7174), + [anon_sym___restrict__] = ACTIONS(7174), + [anon_sym__Atomic] = ACTIONS(7174), + [anon_sym__Noreturn] = ACTIONS(7174), + [anon_sym_noreturn] = ACTIONS(7174), + [anon_sym__Nonnull] = ACTIONS(7174), + [anon_sym_mutable] = ACTIONS(7174), + [anon_sym_constinit] = ACTIONS(7174), + [anon_sym_consteval] = ACTIONS(7174), + [anon_sym_alignas] = ACTIONS(7184), + [anon_sym__Alignas] = ACTIONS(7184), + [anon_sym_QMARK] = ACTIONS(6481), + [anon_sym_LT_EQ_GT] = ACTIONS(6481), + [anon_sym_or] = ACTIONS(6481), + [anon_sym_and] = ACTIONS(6481), + [anon_sym_bitor] = ACTIONS(6481), + [anon_sym_xor] = ACTIONS(6481), + [anon_sym_bitand] = ACTIONS(6481), + [anon_sym_not_eq] = ACTIONS(6481), + [anon_sym_DASH_DASH] = ACTIONS(6481), + [anon_sym_PLUS_PLUS] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6479), + [anon_sym_DOT_STAR] = ACTIONS(6481), + [anon_sym_DASH_GT] = ACTIONS(7186), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7219), [anon_sym_override] = ACTIONS(7219), - [anon_sym_requires] = ACTIONS(7219), - [anon_sym_COLON_RBRACK] = ACTIONS(7221), + [anon_sym_noexcept] = ACTIONS(7192), + [anon_sym_throw] = ACTIONS(7194), + [anon_sym_requires] = ACTIONS(7221), + [anon_sym_COLON_RBRACK] = ACTIONS(6481), }, - [STATE(2078)] = { + [STATE(2073)] = { + [sym_decltype_auto] = STATE(2238), [sym_identifier] = ACTIONS(7223), [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), [anon_sym_COMMA] = ACTIONS(7225), @@ -308745,6 +320350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(7223), [anon_sym___attribute] = ACTIONS(7223), [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_COLON_COLON] = ACTIONS(7227), [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), [anon_sym_LBRACE] = ACTIONS(7225), [anon_sym_RBRACE] = ACTIONS(7225), @@ -308791,107 +320397,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7225), [anon_sym_DASH_GT] = ACTIONS(7225), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7229), + [anon_sym_decltype] = ACTIONS(6819), [anon_sym_final] = ACTIONS(7223), [anon_sym_override] = ACTIONS(7223), [anon_sym_requires] = ACTIONS(7223), [anon_sym_COLON_RBRACK] = ACTIONS(7225), }, - [STATE(2079)] = { - [sym_identifier] = ACTIONS(7227), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7229), - [anon_sym_COMMA] = ACTIONS(7229), - [anon_sym_RPAREN] = ACTIONS(7229), - [aux_sym_preproc_if_token2] = ACTIONS(7229), - [aux_sym_preproc_else_token1] = ACTIONS(7229), - [aux_sym_preproc_elif_token1] = ACTIONS(7227), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7229), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7229), - [anon_sym_LPAREN2] = ACTIONS(7229), - [anon_sym_DASH] = ACTIONS(7227), - [anon_sym_PLUS] = ACTIONS(7227), - [anon_sym_STAR] = ACTIONS(7227), - [anon_sym_SLASH] = ACTIONS(7227), - [anon_sym_PERCENT] = ACTIONS(7227), - [anon_sym_PIPE_PIPE] = ACTIONS(7229), - [anon_sym_AMP_AMP] = ACTIONS(7229), - [anon_sym_PIPE] = ACTIONS(7227), - [anon_sym_CARET] = ACTIONS(7227), - [anon_sym_AMP] = ACTIONS(7227), - [anon_sym_EQ_EQ] = ACTIONS(7229), - [anon_sym_BANG_EQ] = ACTIONS(7229), - [anon_sym_GT] = ACTIONS(7227), - [anon_sym_GT_EQ] = ACTIONS(7229), - [anon_sym_LT_EQ] = ACTIONS(7227), - [anon_sym_LT] = ACTIONS(7227), - [anon_sym_LT_LT] = ACTIONS(7227), - [anon_sym_GT_GT] = ACTIONS(7227), - [anon_sym_SEMI] = ACTIONS(7229), - [anon_sym___extension__] = ACTIONS(7227), - [anon_sym___attribute__] = ACTIONS(7227), - [anon_sym___attribute] = ACTIONS(7227), - [anon_sym_COLON] = ACTIONS(7227), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7229), - [anon_sym_LBRACE] = ACTIONS(7229), - [anon_sym_RBRACE] = ACTIONS(7229), - [anon_sym_LBRACK] = ACTIONS(7229), - [anon_sym_EQ] = ACTIONS(7227), - [anon_sym_const] = ACTIONS(7227), - [anon_sym_constexpr] = ACTIONS(7227), - [anon_sym_volatile] = ACTIONS(7227), - [anon_sym_restrict] = ACTIONS(7227), - [anon_sym___restrict__] = ACTIONS(7227), - [anon_sym__Atomic] = ACTIONS(7227), - [anon_sym__Noreturn] = ACTIONS(7227), - [anon_sym_noreturn] = ACTIONS(7227), - [anon_sym__Nonnull] = ACTIONS(7227), - [anon_sym_mutable] = ACTIONS(7227), - [anon_sym_constinit] = ACTIONS(7227), - [anon_sym_consteval] = ACTIONS(7227), - [anon_sym_alignas] = ACTIONS(7227), - [anon_sym__Alignas] = ACTIONS(7227), - [anon_sym_QMARK] = ACTIONS(7229), - [anon_sym_STAR_EQ] = ACTIONS(7229), - [anon_sym_SLASH_EQ] = ACTIONS(7229), - [anon_sym_PERCENT_EQ] = ACTIONS(7229), - [anon_sym_PLUS_EQ] = ACTIONS(7229), - [anon_sym_DASH_EQ] = ACTIONS(7229), - [anon_sym_LT_LT_EQ] = ACTIONS(7229), - [anon_sym_GT_GT_EQ] = ACTIONS(7229), - [anon_sym_AMP_EQ] = ACTIONS(7229), - [anon_sym_CARET_EQ] = ACTIONS(7229), - [anon_sym_PIPE_EQ] = ACTIONS(7229), - [anon_sym_and_eq] = ACTIONS(7227), - [anon_sym_or_eq] = ACTIONS(7227), - [anon_sym_xor_eq] = ACTIONS(7227), - [anon_sym_LT_EQ_GT] = ACTIONS(7229), - [anon_sym_or] = ACTIONS(7227), - [anon_sym_and] = ACTIONS(7227), - [anon_sym_bitor] = ACTIONS(7227), - [anon_sym_xor] = ACTIONS(7227), - [anon_sym_bitand] = ACTIONS(7227), - [anon_sym_not_eq] = ACTIONS(7227), - [anon_sym_DASH_DASH] = ACTIONS(7229), - [anon_sym_PLUS_PLUS] = ACTIONS(7229), - [anon_sym_DOT] = ACTIONS(7227), - [anon_sym_DOT_STAR] = ACTIONS(7229), - [anon_sym_DASH_GT] = ACTIONS(7229), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7227), - [anon_sym_override] = ACTIONS(7227), - [anon_sym_requires] = ACTIONS(7227), - [anon_sym_COLON_RBRACK] = ACTIONS(7229), - }, - [STATE(2080)] = { + [STATE(2074)] = { [sym_identifier] = ACTIONS(7231), [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), [anon_sym_COMMA] = ACTIONS(7233), [anon_sym_RPAREN] = ACTIONS(7233), - [aux_sym_preproc_if_token2] = ACTIONS(7233), - [aux_sym_preproc_else_token1] = ACTIONS(7233), - [aux_sym_preproc_elif_token1] = ACTIONS(7231), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7233), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7233), [anon_sym_LPAREN2] = ACTIONS(7233), + [anon_sym_TILDE] = ACTIONS(7233), [anon_sym_DASH] = ACTIONS(7231), [anon_sym_PLUS] = ACTIONS(7231), [anon_sym_STAR] = ACTIONS(7231), @@ -308910,16 +320429,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(7231), [anon_sym_LT_LT] = ACTIONS(7231), [anon_sym_GT_GT] = ACTIONS(7231), - [anon_sym_SEMI] = ACTIONS(7233), [anon_sym___extension__] = ACTIONS(7231), + [anon_sym_virtual] = ACTIONS(7231), + [anon_sym_extern] = ACTIONS(7231), [anon_sym___attribute__] = ACTIONS(7231), [anon_sym___attribute] = ACTIONS(7231), - [anon_sym_COLON] = ACTIONS(7231), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7233), + [anon_sym_COLON_COLON] = ACTIONS(7233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7233), + [anon_sym___declspec] = ACTIONS(7231), + [anon_sym___based] = ACTIONS(7231), [anon_sym_LBRACE] = ACTIONS(7233), - [anon_sym_RBRACE] = ACTIONS(7233), - [anon_sym_LBRACK] = ACTIONS(7233), + [anon_sym_LBRACK] = ACTIONS(7231), + [anon_sym_static] = ACTIONS(7231), [anon_sym_EQ] = ACTIONS(7231), + [anon_sym_register] = ACTIONS(7231), + [anon_sym_inline] = ACTIONS(7231), + [anon_sym___inline] = ACTIONS(7231), + [anon_sym___inline__] = ACTIONS(7231), + [anon_sym___forceinline] = ACTIONS(7231), + [anon_sym_thread_local] = ACTIONS(7231), + [anon_sym___thread] = ACTIONS(7231), [anon_sym_const] = ACTIONS(7231), [anon_sym_constexpr] = ACTIONS(7231), [anon_sym_volatile] = ACTIONS(7231), @@ -308945,9 +320474,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(7233), [anon_sym_CARET_EQ] = ACTIONS(7233), [anon_sym_PIPE_EQ] = ACTIONS(7233), - [anon_sym_and_eq] = ACTIONS(7231), - [anon_sym_or_eq] = ACTIONS(7231), - [anon_sym_xor_eq] = ACTIONS(7231), [anon_sym_LT_EQ_GT] = ACTIONS(7233), [anon_sym_or] = ACTIONS(7231), [anon_sym_and] = ACTIONS(7231), @@ -308959,99 +320485,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(7233), [anon_sym_DOT] = ACTIONS(7231), [anon_sym_DOT_STAR] = ACTIONS(7233), - [anon_sym_DASH_GT] = ACTIONS(7233), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7231), - [anon_sym_override] = ACTIONS(7231), - [anon_sym_requires] = ACTIONS(7231), - [anon_sym_COLON_RBRACK] = ACTIONS(7233), - }, - [STATE(2081)] = { - [sym_identifier] = ACTIONS(6237), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), - [anon_sym_COMMA] = ACTIONS(6230), - [anon_sym_RPAREN] = ACTIONS(6230), - [aux_sym_preproc_if_token2] = ACTIONS(6230), - [aux_sym_preproc_else_token1] = ACTIONS(6230), - [aux_sym_preproc_elif_token1] = ACTIONS(6237), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6230), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6230), - [anon_sym_LPAREN2] = ACTIONS(6230), - [anon_sym_DASH] = ACTIONS(6237), - [anon_sym_PLUS] = ACTIONS(6237), - [anon_sym_STAR] = ACTIONS(6237), - [anon_sym_SLASH] = ACTIONS(6237), - [anon_sym_PERCENT] = ACTIONS(6237), - [anon_sym_PIPE_PIPE] = ACTIONS(6230), - [anon_sym_AMP_AMP] = ACTIONS(6230), - [anon_sym_PIPE] = ACTIONS(6237), - [anon_sym_CARET] = ACTIONS(6237), - [anon_sym_AMP] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6230), - [anon_sym_BANG_EQ] = ACTIONS(6230), - [anon_sym_GT] = ACTIONS(6237), - [anon_sym_GT_EQ] = ACTIONS(6230), - [anon_sym_LT_EQ] = ACTIONS(6237), - [anon_sym_LT] = ACTIONS(6237), - [anon_sym_LT_LT] = ACTIONS(6237), - [anon_sym_GT_GT] = ACTIONS(6237), - [anon_sym_SEMI] = ACTIONS(6230), - [anon_sym___extension__] = ACTIONS(6226), - [anon_sym___attribute__] = ACTIONS(6237), - [anon_sym___attribute] = ACTIONS(6237), - [anon_sym_COLON] = ACTIONS(6237), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6230), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_RBRACE] = ACTIONS(6230), - [anon_sym_LBRACK] = ACTIONS(6230), - [anon_sym_EQ] = ACTIONS(6237), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6226), - [anon_sym_volatile] = ACTIONS(6226), - [anon_sym_restrict] = ACTIONS(6226), - [anon_sym___restrict__] = ACTIONS(6226), - [anon_sym__Atomic] = ACTIONS(6226), - [anon_sym__Noreturn] = ACTIONS(6226), - [anon_sym_noreturn] = ACTIONS(6226), - [anon_sym__Nonnull] = ACTIONS(6226), - [anon_sym_mutable] = ACTIONS(6226), - [anon_sym_constinit] = ACTIONS(6226), - [anon_sym_consteval] = ACTIONS(6226), - [anon_sym_alignas] = ACTIONS(6226), - [anon_sym__Alignas] = ACTIONS(6226), - [anon_sym_QMARK] = ACTIONS(6230), - [anon_sym_STAR_EQ] = ACTIONS(6230), - [anon_sym_SLASH_EQ] = ACTIONS(6230), - [anon_sym_PERCENT_EQ] = ACTIONS(6230), - [anon_sym_PLUS_EQ] = ACTIONS(6230), - [anon_sym_DASH_EQ] = ACTIONS(6230), - [anon_sym_LT_LT_EQ] = ACTIONS(6230), - [anon_sym_GT_GT_EQ] = ACTIONS(6230), - [anon_sym_AMP_EQ] = ACTIONS(6230), - [anon_sym_CARET_EQ] = ACTIONS(6230), - [anon_sym_PIPE_EQ] = ACTIONS(6230), - [anon_sym_and_eq] = ACTIONS(6237), - [anon_sym_or_eq] = ACTIONS(6237), - [anon_sym_xor_eq] = ACTIONS(6237), - [anon_sym_LT_EQ_GT] = ACTIONS(6230), - [anon_sym_or] = ACTIONS(6237), - [anon_sym_and] = ACTIONS(6237), - [anon_sym_bitor] = ACTIONS(6237), - [anon_sym_xor] = ACTIONS(6237), - [anon_sym_bitand] = ACTIONS(6237), - [anon_sym_not_eq] = ACTIONS(6237), - [anon_sym_DASH_DASH] = ACTIONS(6230), - [anon_sym_PLUS_PLUS] = ACTIONS(6230), - [anon_sym_DOT] = ACTIONS(6237), - [anon_sym_DOT_STAR] = ACTIONS(6230), - [anon_sym_DASH_GT] = ACTIONS(6230), + [anon_sym_DASH_GT] = ACTIONS(7231), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6226), - [anon_sym_decltype] = ACTIONS(6226), - [anon_sym_COLON_RBRACK] = ACTIONS(6230), + [anon_sym_decltype] = ACTIONS(7231), + [anon_sym_template] = ACTIONS(7231), + [anon_sym_operator] = ACTIONS(7231), + [anon_sym_DASH_GT_STAR] = ACTIONS(7233), + [anon_sym_LBRACK_COLON] = ACTIONS(7233), }, - [STATE(2082)] = { + [STATE(2075)] = { + [sym_attribute_specifier] = STATE(2185), + [sym_field_declaration_list] = STATE(2129), + [sym_virtual_specifier] = STATE(9535), + [sym_base_class_clause] = STATE(10313), [sym_identifier] = ACTIONS(7235), [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), [anon_sym_COMMA] = ACTIONS(7237), @@ -309082,11 +320528,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(7235), [anon_sym_SEMI] = ACTIONS(7237), [anon_sym___extension__] = ACTIONS(7235), - [anon_sym___attribute__] = ACTIONS(7235), - [anon_sym___attribute] = ACTIONS(7235), - [anon_sym_COLON] = ACTIONS(7235), + [anon_sym___attribute__] = ACTIONS(7239), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_COLON] = ACTIONS(7241), [anon_sym_RBRACK_RBRACK] = ACTIONS(7237), - [anon_sym_LBRACE] = ACTIONS(7237), + [anon_sym_LBRACE] = ACTIONS(7243), [anon_sym_RBRACE] = ACTIONS(7237), [anon_sym_LBRACK] = ACTIONS(7237), [anon_sym_EQ] = ACTIONS(7235), @@ -309131,476 +320577,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7237), [anon_sym_DASH_GT] = ACTIONS(7237), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7235), - [anon_sym_override] = ACTIONS(7235), - [anon_sym_requires] = ACTIONS(7235), - [anon_sym_COLON_RBRACK] = ACTIONS(7237), - }, - [STATE(2083)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2125), - [sym_identifier] = ACTIONS(7239), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7241), - [anon_sym_COMMA] = ACTIONS(7241), - [aux_sym_preproc_if_token2] = ACTIONS(7241), - [aux_sym_preproc_else_token1] = ACTIONS(7241), - [aux_sym_preproc_elif_token1] = ACTIONS(7239), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7241), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7241), - [anon_sym_LPAREN2] = ACTIONS(7241), - [anon_sym_DASH] = ACTIONS(7239), - [anon_sym_PLUS] = ACTIONS(7239), - [anon_sym_STAR] = ACTIONS(7239), - [anon_sym_SLASH] = ACTIONS(7239), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_PIPE_PIPE] = ACTIONS(7241), - [anon_sym_AMP_AMP] = ACTIONS(7241), - [anon_sym_PIPE] = ACTIONS(7239), - [anon_sym_CARET] = ACTIONS(7239), - [anon_sym_AMP] = ACTIONS(7239), - [anon_sym_EQ_EQ] = ACTIONS(7241), - [anon_sym_BANG_EQ] = ACTIONS(7241), - [anon_sym_GT] = ACTIONS(7239), - [anon_sym_GT_EQ] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7239), - [anon_sym_LT] = ACTIONS(7239), - [anon_sym_LT_LT] = ACTIONS(7239), - [anon_sym_GT_GT] = ACTIONS(7239), - [anon_sym___extension__] = ACTIONS(7239), - [anon_sym___attribute__] = ACTIONS(7239), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_LBRACE] = ACTIONS(7241), - [anon_sym_signed] = ACTIONS(7243), - [anon_sym_unsigned] = ACTIONS(7243), - [anon_sym_long] = ACTIONS(7243), - [anon_sym_short] = ACTIONS(7243), - [anon_sym_LBRACK] = ACTIONS(7241), - [anon_sym_RBRACK] = ACTIONS(7241), - [anon_sym_EQ] = ACTIONS(7239), - [anon_sym_const] = ACTIONS(7239), - [anon_sym_constexpr] = ACTIONS(7239), - [anon_sym_volatile] = ACTIONS(7239), - [anon_sym_restrict] = ACTIONS(7239), - [anon_sym___restrict__] = ACTIONS(7239), - [anon_sym__Atomic] = ACTIONS(7239), - [anon_sym__Noreturn] = ACTIONS(7239), - [anon_sym_noreturn] = ACTIONS(7239), - [anon_sym__Nonnull] = ACTIONS(7239), - [anon_sym_mutable] = ACTIONS(7239), - [anon_sym_constinit] = ACTIONS(7239), - [anon_sym_consteval] = ACTIONS(7239), - [anon_sym_alignas] = ACTIONS(7239), - [anon_sym__Alignas] = ACTIONS(7239), - [anon_sym_QMARK] = ACTIONS(7241), - [anon_sym_STAR_EQ] = ACTIONS(7241), - [anon_sym_SLASH_EQ] = ACTIONS(7241), - [anon_sym_PERCENT_EQ] = ACTIONS(7241), - [anon_sym_PLUS_EQ] = ACTIONS(7241), - [anon_sym_DASH_EQ] = ACTIONS(7241), - [anon_sym_LT_LT_EQ] = ACTIONS(7241), - [anon_sym_GT_GT_EQ] = ACTIONS(7241), - [anon_sym_AMP_EQ] = ACTIONS(7241), - [anon_sym_CARET_EQ] = ACTIONS(7241), - [anon_sym_PIPE_EQ] = ACTIONS(7241), - [anon_sym_and_eq] = ACTIONS(7239), - [anon_sym_or_eq] = ACTIONS(7239), - [anon_sym_xor_eq] = ACTIONS(7239), - [anon_sym_LT_EQ_GT] = ACTIONS(7241), - [anon_sym_or] = ACTIONS(7239), - [anon_sym_and] = ACTIONS(7239), - [anon_sym_bitor] = ACTIONS(7239), - [anon_sym_xor] = ACTIONS(7239), - [anon_sym_bitand] = ACTIONS(7239), - [anon_sym_not_eq] = ACTIONS(7239), - [anon_sym_DASH_DASH] = ACTIONS(7241), - [anon_sym_PLUS_PLUS] = ACTIONS(7241), - [anon_sym_DOT] = ACTIONS(7239), - [anon_sym_DOT_STAR] = ACTIONS(7241), - [anon_sym_DASH_GT] = ACTIONS(7241), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7239), - [anon_sym_override] = ACTIONS(7239), - [anon_sym_requires] = ACTIONS(7239), - }, - [STATE(2084)] = { - [sym_identifier] = ACTIONS(7223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [aux_sym_preproc_if_token2] = ACTIONS(7225), - [aux_sym_preproc_else_token1] = ACTIONS(7225), - [aux_sym_preproc_elif_token1] = ACTIONS(7223), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym_SEMI] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7223), - [anon_sym___attribute__] = ACTIONS(7223), - [anon_sym___attribute] = ACTIONS(7223), - [anon_sym_COLON] = ACTIONS(7223), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_RBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7223), - [anon_sym_volatile] = ACTIONS(7223), - [anon_sym_restrict] = ACTIONS(7223), - [anon_sym___restrict__] = ACTIONS(7223), - [anon_sym__Atomic] = ACTIONS(7223), - [anon_sym__Noreturn] = ACTIONS(7223), - [anon_sym_noreturn] = ACTIONS(7223), - [anon_sym__Nonnull] = ACTIONS(7223), - [anon_sym_mutable] = ACTIONS(7223), - [anon_sym_constinit] = ACTIONS(7223), - [anon_sym_consteval] = ACTIONS(7223), - [anon_sym_alignas] = ACTIONS(7223), - [anon_sym__Alignas] = ACTIONS(7223), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7223), - [anon_sym_or_eq] = ACTIONS(7223), - [anon_sym_xor_eq] = ACTIONS(7223), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7223), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7223), - [anon_sym_not_eq] = ACTIONS(7223), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7223), - [anon_sym_override] = ACTIONS(7223), - [anon_sym_requires] = ACTIONS(7223), - [anon_sym_COLON_RBRACK] = ACTIONS(7225), - }, - [STATE(2085)] = { - [sym_identifier] = ACTIONS(7223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [aux_sym_preproc_if_token2] = ACTIONS(7225), - [aux_sym_preproc_else_token1] = ACTIONS(7225), - [aux_sym_preproc_elif_token1] = ACTIONS(7223), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym_SEMI] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7223), - [anon_sym___attribute__] = ACTIONS(7223), - [anon_sym___attribute] = ACTIONS(7223), - [anon_sym_COLON] = ACTIONS(7223), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_RBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7223), - [anon_sym_volatile] = ACTIONS(7223), - [anon_sym_restrict] = ACTIONS(7223), - [anon_sym___restrict__] = ACTIONS(7223), - [anon_sym__Atomic] = ACTIONS(7223), - [anon_sym__Noreturn] = ACTIONS(7223), - [anon_sym_noreturn] = ACTIONS(7223), - [anon_sym__Nonnull] = ACTIONS(7223), - [anon_sym_mutable] = ACTIONS(7223), - [anon_sym_constinit] = ACTIONS(7223), - [anon_sym_consteval] = ACTIONS(7223), - [anon_sym_alignas] = ACTIONS(7223), - [anon_sym__Alignas] = ACTIONS(7223), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7223), - [anon_sym_or_eq] = ACTIONS(7223), - [anon_sym_xor_eq] = ACTIONS(7223), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7223), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7223), - [anon_sym_not_eq] = ACTIONS(7223), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7223), - [anon_sym_override] = ACTIONS(7223), - [anon_sym_requires] = ACTIONS(7223), - [anon_sym_COLON_RBRACK] = ACTIONS(7225), - }, - [STATE(2086)] = { - [sym_identifier] = ACTIONS(7245), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7247), - [anon_sym_COMMA] = ACTIONS(7247), - [anon_sym_RPAREN] = ACTIONS(7247), - [aux_sym_preproc_if_token2] = ACTIONS(7247), - [aux_sym_preproc_else_token1] = ACTIONS(7247), - [aux_sym_preproc_elif_token1] = ACTIONS(7245), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7247), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7247), - [anon_sym_LPAREN2] = ACTIONS(7247), - [anon_sym_DASH] = ACTIONS(7245), - [anon_sym_PLUS] = ACTIONS(7245), - [anon_sym_STAR] = ACTIONS(7245), - [anon_sym_SLASH] = ACTIONS(7245), - [anon_sym_PERCENT] = ACTIONS(7245), - [anon_sym_PIPE_PIPE] = ACTIONS(7247), - [anon_sym_AMP_AMP] = ACTIONS(7247), - [anon_sym_PIPE] = ACTIONS(7245), - [anon_sym_CARET] = ACTIONS(7245), - [anon_sym_AMP] = ACTIONS(7245), - [anon_sym_EQ_EQ] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7247), - [anon_sym_GT] = ACTIONS(7245), - [anon_sym_GT_EQ] = ACTIONS(7247), - [anon_sym_LT_EQ] = ACTIONS(7245), - [anon_sym_LT] = ACTIONS(7245), - [anon_sym_LT_LT] = ACTIONS(7245), - [anon_sym_GT_GT] = ACTIONS(7245), - [anon_sym_SEMI] = ACTIONS(7247), - [anon_sym___extension__] = ACTIONS(7245), - [anon_sym___attribute__] = ACTIONS(7245), - [anon_sym___attribute] = ACTIONS(7245), - [anon_sym_COLON] = ACTIONS(7245), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7247), - [anon_sym_LBRACE] = ACTIONS(7247), - [anon_sym_RBRACE] = ACTIONS(7247), - [anon_sym_LBRACK] = ACTIONS(7247), - [anon_sym_EQ] = ACTIONS(7245), - [anon_sym_const] = ACTIONS(7245), - [anon_sym_constexpr] = ACTIONS(7245), - [anon_sym_volatile] = ACTIONS(7245), - [anon_sym_restrict] = ACTIONS(7245), - [anon_sym___restrict__] = ACTIONS(7245), - [anon_sym__Atomic] = ACTIONS(7245), - [anon_sym__Noreturn] = ACTIONS(7245), - [anon_sym_noreturn] = ACTIONS(7245), - [anon_sym__Nonnull] = ACTIONS(7245), - [anon_sym_mutable] = ACTIONS(7245), - [anon_sym_constinit] = ACTIONS(7245), - [anon_sym_consteval] = ACTIONS(7245), - [anon_sym_alignas] = ACTIONS(7245), - [anon_sym__Alignas] = ACTIONS(7245), - [anon_sym_QMARK] = ACTIONS(7247), - [anon_sym_STAR_EQ] = ACTIONS(7247), - [anon_sym_SLASH_EQ] = ACTIONS(7247), - [anon_sym_PERCENT_EQ] = ACTIONS(7247), - [anon_sym_PLUS_EQ] = ACTIONS(7247), - [anon_sym_DASH_EQ] = ACTIONS(7247), - [anon_sym_LT_LT_EQ] = ACTIONS(7247), - [anon_sym_GT_GT_EQ] = ACTIONS(7247), - [anon_sym_AMP_EQ] = ACTIONS(7247), - [anon_sym_CARET_EQ] = ACTIONS(7247), - [anon_sym_PIPE_EQ] = ACTIONS(7247), - [anon_sym_and_eq] = ACTIONS(7245), - [anon_sym_or_eq] = ACTIONS(7245), - [anon_sym_xor_eq] = ACTIONS(7245), - [anon_sym_LT_EQ_GT] = ACTIONS(7247), - [anon_sym_or] = ACTIONS(7245), - [anon_sym_and] = ACTIONS(7245), - [anon_sym_bitor] = ACTIONS(7245), - [anon_sym_xor] = ACTIONS(7245), - [anon_sym_bitand] = ACTIONS(7245), - [anon_sym_not_eq] = ACTIONS(7245), - [anon_sym_DASH_DASH] = ACTIONS(7247), - [anon_sym_PLUS_PLUS] = ACTIONS(7247), - [anon_sym_DOT] = ACTIONS(7245), - [anon_sym_DOT_STAR] = ACTIONS(7247), - [anon_sym_DASH_GT] = ACTIONS(7247), - [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7245), [anon_sym_override] = ACTIONS(7245), - [anon_sym_requires] = ACTIONS(7245), - [anon_sym_COLON_RBRACK] = ACTIONS(7247), - }, - [STATE(2087)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2133), - [sym_identifier] = ACTIONS(7249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7251), - [anon_sym_COMMA] = ACTIONS(7251), - [aux_sym_preproc_if_token2] = ACTIONS(7251), - [aux_sym_preproc_else_token1] = ACTIONS(7251), - [aux_sym_preproc_elif_token1] = ACTIONS(7249), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7251), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7251), - [anon_sym_LPAREN2] = ACTIONS(7251), - [anon_sym_DASH] = ACTIONS(7249), - [anon_sym_PLUS] = ACTIONS(7249), - [anon_sym_STAR] = ACTIONS(7249), - [anon_sym_SLASH] = ACTIONS(7249), - [anon_sym_PERCENT] = ACTIONS(7249), - [anon_sym_PIPE_PIPE] = ACTIONS(7251), - [anon_sym_AMP_AMP] = ACTIONS(7251), - [anon_sym_PIPE] = ACTIONS(7249), - [anon_sym_CARET] = ACTIONS(7249), - [anon_sym_AMP] = ACTIONS(7249), - [anon_sym_EQ_EQ] = ACTIONS(7251), - [anon_sym_BANG_EQ] = ACTIONS(7251), - [anon_sym_GT] = ACTIONS(7249), - [anon_sym_GT_EQ] = ACTIONS(7251), - [anon_sym_LT_EQ] = ACTIONS(7249), - [anon_sym_LT] = ACTIONS(7249), - [anon_sym_LT_LT] = ACTIONS(7249), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym___extension__] = ACTIONS(7249), - [anon_sym___attribute__] = ACTIONS(7249), - [anon_sym___attribute] = ACTIONS(7249), - [anon_sym_LBRACE] = ACTIONS(7251), - [anon_sym_signed] = ACTIONS(7203), - [anon_sym_unsigned] = ACTIONS(7203), - [anon_sym_long] = ACTIONS(7203), - [anon_sym_short] = ACTIONS(7203), - [anon_sym_LBRACK] = ACTIONS(7251), - [anon_sym_RBRACK] = ACTIONS(7251), - [anon_sym_EQ] = ACTIONS(7249), - [anon_sym_const] = ACTIONS(7249), - [anon_sym_constexpr] = ACTIONS(7249), - [anon_sym_volatile] = ACTIONS(7249), - [anon_sym_restrict] = ACTIONS(7249), - [anon_sym___restrict__] = ACTIONS(7249), - [anon_sym__Atomic] = ACTIONS(7249), - [anon_sym__Noreturn] = ACTIONS(7249), - [anon_sym_noreturn] = ACTIONS(7249), - [anon_sym__Nonnull] = ACTIONS(7249), - [anon_sym_mutable] = ACTIONS(7249), - [anon_sym_constinit] = ACTIONS(7249), - [anon_sym_consteval] = ACTIONS(7249), - [anon_sym_alignas] = ACTIONS(7249), - [anon_sym__Alignas] = ACTIONS(7249), - [anon_sym_QMARK] = ACTIONS(7251), - [anon_sym_STAR_EQ] = ACTIONS(7251), - [anon_sym_SLASH_EQ] = ACTIONS(7251), - [anon_sym_PERCENT_EQ] = ACTIONS(7251), - [anon_sym_PLUS_EQ] = ACTIONS(7251), - [anon_sym_DASH_EQ] = ACTIONS(7251), - [anon_sym_LT_LT_EQ] = ACTIONS(7251), - [anon_sym_GT_GT_EQ] = ACTIONS(7251), - [anon_sym_AMP_EQ] = ACTIONS(7251), - [anon_sym_CARET_EQ] = ACTIONS(7251), - [anon_sym_PIPE_EQ] = ACTIONS(7251), - [anon_sym_and_eq] = ACTIONS(7249), - [anon_sym_or_eq] = ACTIONS(7249), - [anon_sym_xor_eq] = ACTIONS(7249), - [anon_sym_LT_EQ_GT] = ACTIONS(7251), - [anon_sym_or] = ACTIONS(7249), - [anon_sym_and] = ACTIONS(7249), - [anon_sym_bitor] = ACTIONS(7249), - [anon_sym_xor] = ACTIONS(7249), - [anon_sym_bitand] = ACTIONS(7249), - [anon_sym_not_eq] = ACTIONS(7249), - [anon_sym_DASH_DASH] = ACTIONS(7251), - [anon_sym_PLUS_PLUS] = ACTIONS(7251), - [anon_sym_DOT] = ACTIONS(7249), - [anon_sym_DOT_STAR] = ACTIONS(7251), - [anon_sym_DASH_GT] = ACTIONS(7251), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7249), - [anon_sym_override] = ACTIONS(7249), - [anon_sym_requires] = ACTIONS(7249), + [anon_sym_requires] = ACTIONS(7235), + [anon_sym_COLON_RBRACK] = ACTIONS(7237), }, - [STATE(2088)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2123), - [sym_identifier] = ACTIONS(7253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), - [anon_sym_COMMA] = ACTIONS(7255), - [aux_sym_preproc_if_token2] = ACTIONS(7255), - [aux_sym_preproc_else_token1] = ACTIONS(7255), - [aux_sym_preproc_elif_token1] = ACTIONS(7253), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7255), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7255), - [anon_sym_LPAREN2] = ACTIONS(7255), - [anon_sym_DASH] = ACTIONS(7253), - [anon_sym_PLUS] = ACTIONS(7253), - [anon_sym_STAR] = ACTIONS(7253), - [anon_sym_SLASH] = ACTIONS(7253), - [anon_sym_PERCENT] = ACTIONS(7253), - [anon_sym_PIPE_PIPE] = ACTIONS(7255), - [anon_sym_AMP_AMP] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7253), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_EQ_EQ] = ACTIONS(7255), - [anon_sym_BANG_EQ] = ACTIONS(7255), - [anon_sym_GT] = ACTIONS(7253), - [anon_sym_GT_EQ] = ACTIONS(7255), - [anon_sym_LT_EQ] = ACTIONS(7253), - [anon_sym_LT] = ACTIONS(7253), - [anon_sym_LT_LT] = ACTIONS(7253), - [anon_sym_GT_GT] = ACTIONS(7253), + [STATE(2076)] = { + [sym_type_qualifier] = STATE(2071), + [sym_alignas_qualifier] = STATE(2047), + [aux_sym__type_definition_type_repeat1] = STATE(2071), + [aux_sym_sized_type_specifier_repeat1] = STATE(2162), + [sym_identifier] = ACTIONS(7247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), + [anon_sym_COMMA] = ACTIONS(7249), + [anon_sym_RPAREN] = ACTIONS(7249), + [anon_sym_LPAREN2] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7251), + [anon_sym_PLUS] = ACTIONS(7251), + [anon_sym_STAR] = ACTIONS(7251), + [anon_sym_SLASH] = ACTIONS(7251), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7249), + [anon_sym_PIPE] = ACTIONS(7251), + [anon_sym_CARET] = ACTIONS(7251), + [anon_sym_AMP] = ACTIONS(7251), + [anon_sym_EQ_EQ] = ACTIONS(7249), + [anon_sym_BANG_EQ] = ACTIONS(7249), + [anon_sym_GT] = ACTIONS(7251), + [anon_sym_GT_EQ] = ACTIONS(7249), + [anon_sym_LT_EQ] = ACTIONS(7251), + [anon_sym_LT] = ACTIONS(7251), + [anon_sym_LT_LT] = ACTIONS(7251), + [anon_sym_GT_GT] = ACTIONS(7251), + [anon_sym_SEMI] = ACTIONS(7249), [anon_sym___extension__] = ACTIONS(7253), - [anon_sym___attribute__] = ACTIONS(7253), - [anon_sym___attribute] = ACTIONS(7253), - [anon_sym_LBRACE] = ACTIONS(7255), - [anon_sym_signed] = ACTIONS(7257), - [anon_sym_unsigned] = ACTIONS(7257), - [anon_sym_long] = ACTIONS(7257), - [anon_sym_short] = ACTIONS(7257), - [anon_sym_LBRACK] = ACTIONS(7255), - [anon_sym_RBRACK] = ACTIONS(7255), - [anon_sym_EQ] = ACTIONS(7253), + [anon_sym___attribute__] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7251), + [anon_sym_COLON] = ACTIONS(7251), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7249), + [anon_sym_LBRACE] = ACTIONS(7249), + [anon_sym_RBRACE] = ACTIONS(7249), + [anon_sym_signed] = ACTIONS(7256), + [anon_sym_unsigned] = ACTIONS(7256), + [anon_sym_long] = ACTIONS(7256), + [anon_sym_short] = ACTIONS(7256), + [anon_sym_LBRACK] = ACTIONS(7249), + [anon_sym_EQ] = ACTIONS(7251), [anon_sym_const] = ACTIONS(7253), [anon_sym_constexpr] = ACTIONS(7253), [anon_sym_volatile] = ACTIONS(7253), @@ -309613,890 +320636,487 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(7253), [anon_sym_constinit] = ACTIONS(7253), [anon_sym_consteval] = ACTIONS(7253), - [anon_sym_alignas] = ACTIONS(7253), - [anon_sym__Alignas] = ACTIONS(7253), - [anon_sym_QMARK] = ACTIONS(7255), - [anon_sym_STAR_EQ] = ACTIONS(7255), - [anon_sym_SLASH_EQ] = ACTIONS(7255), - [anon_sym_PERCENT_EQ] = ACTIONS(7255), - [anon_sym_PLUS_EQ] = ACTIONS(7255), - [anon_sym_DASH_EQ] = ACTIONS(7255), - [anon_sym_LT_LT_EQ] = ACTIONS(7255), - [anon_sym_GT_GT_EQ] = ACTIONS(7255), - [anon_sym_AMP_EQ] = ACTIONS(7255), - [anon_sym_CARET_EQ] = ACTIONS(7255), - [anon_sym_PIPE_EQ] = ACTIONS(7255), - [anon_sym_and_eq] = ACTIONS(7253), - [anon_sym_or_eq] = ACTIONS(7253), - [anon_sym_xor_eq] = ACTIONS(7253), - [anon_sym_LT_EQ_GT] = ACTIONS(7255), - [anon_sym_or] = ACTIONS(7253), - [anon_sym_and] = ACTIONS(7253), - [anon_sym_bitor] = ACTIONS(7253), - [anon_sym_xor] = ACTIONS(7253), - [anon_sym_bitand] = ACTIONS(7253), - [anon_sym_not_eq] = ACTIONS(7253), - [anon_sym_DASH_DASH] = ACTIONS(7255), - [anon_sym_PLUS_PLUS] = ACTIONS(7255), - [anon_sym_DOT] = ACTIONS(7253), - [anon_sym_DOT_STAR] = ACTIONS(7255), - [anon_sym_DASH_GT] = ACTIONS(7255), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7253), - [anon_sym_override] = ACTIONS(7253), - [anon_sym_requires] = ACTIONS(7253), - }, - [STATE(2089)] = { - [sym_identifier] = ACTIONS(6798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [aux_sym_preproc_if_token2] = ACTIONS(6800), - [aux_sym_preproc_else_token1] = ACTIONS(6800), - [aux_sym_preproc_elif_token1] = ACTIONS(6798), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym_SEMI] = ACTIONS(6800), - [anon_sym___extension__] = ACTIONS(6798), - [anon_sym___attribute__] = ACTIONS(6798), - [anon_sym___attribute] = ACTIONS(6798), - [anon_sym_COLON] = ACTIONS(6798), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_RBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6798), - [anon_sym_volatile] = ACTIONS(6798), - [anon_sym_restrict] = ACTIONS(6798), - [anon_sym___restrict__] = ACTIONS(6798), - [anon_sym__Atomic] = ACTIONS(6798), - [anon_sym__Noreturn] = ACTIONS(6798), - [anon_sym_noreturn] = ACTIONS(6798), - [anon_sym__Nonnull] = ACTIONS(6798), - [anon_sym_mutable] = ACTIONS(6798), - [anon_sym_constinit] = ACTIONS(6798), - [anon_sym_consteval] = ACTIONS(6798), - [anon_sym_alignas] = ACTIONS(6798), - [anon_sym__Alignas] = ACTIONS(6798), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6798), - [anon_sym_or_eq] = ACTIONS(6798), - [anon_sym_xor_eq] = ACTIONS(6798), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6798), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6798), - [anon_sym_not_eq] = ACTIONS(6798), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6798), - [anon_sym_override] = ACTIONS(6798), - [anon_sym_requires] = ACTIONS(6798), - [anon_sym_COLON_RBRACK] = ACTIONS(6800), - }, - [STATE(2090)] = { - [sym_identifier] = ACTIONS(7259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), - [anon_sym_COMMA] = ACTIONS(7261), - [anon_sym_RPAREN] = ACTIONS(7261), - [aux_sym_preproc_if_token2] = ACTIONS(7261), - [aux_sym_preproc_else_token1] = ACTIONS(7261), - [aux_sym_preproc_elif_token1] = ACTIONS(7259), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7261), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7261), - [anon_sym_LPAREN2] = ACTIONS(7261), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_STAR] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7259), - [anon_sym_PERCENT] = ACTIONS(7259), - [anon_sym_PIPE_PIPE] = ACTIONS(7261), - [anon_sym_AMP_AMP] = ACTIONS(7261), - [anon_sym_PIPE] = ACTIONS(7259), - [anon_sym_CARET] = ACTIONS(7259), - [anon_sym_AMP] = ACTIONS(7259), - [anon_sym_EQ_EQ] = ACTIONS(7261), - [anon_sym_BANG_EQ] = ACTIONS(7261), - [anon_sym_GT] = ACTIONS(7259), - [anon_sym_GT_EQ] = ACTIONS(7261), - [anon_sym_LT_EQ] = ACTIONS(7259), - [anon_sym_LT] = ACTIONS(7259), - [anon_sym_LT_LT] = ACTIONS(7259), - [anon_sym_GT_GT] = ACTIONS(7259), - [anon_sym_SEMI] = ACTIONS(7261), - [anon_sym___extension__] = ACTIONS(7259), - [anon_sym___attribute__] = ACTIONS(7259), - [anon_sym___attribute] = ACTIONS(7259), - [anon_sym_COLON] = ACTIONS(7259), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7261), - [anon_sym_LBRACE] = ACTIONS(7261), - [anon_sym_RBRACE] = ACTIONS(7261), - [anon_sym_LBRACK] = ACTIONS(7261), - [anon_sym_EQ] = ACTIONS(7259), - [anon_sym_const] = ACTIONS(7259), - [anon_sym_constexpr] = ACTIONS(7259), - [anon_sym_volatile] = ACTIONS(7259), - [anon_sym_restrict] = ACTIONS(7259), - [anon_sym___restrict__] = ACTIONS(7259), - [anon_sym__Atomic] = ACTIONS(7259), - [anon_sym__Noreturn] = ACTIONS(7259), - [anon_sym_noreturn] = ACTIONS(7259), - [anon_sym__Nonnull] = ACTIONS(7259), - [anon_sym_mutable] = ACTIONS(7259), - [anon_sym_constinit] = ACTIONS(7259), - [anon_sym_consteval] = ACTIONS(7259), - [anon_sym_alignas] = ACTIONS(7259), - [anon_sym__Alignas] = ACTIONS(7259), - [anon_sym_QMARK] = ACTIONS(7261), - [anon_sym_STAR_EQ] = ACTIONS(7261), - [anon_sym_SLASH_EQ] = ACTIONS(7261), - [anon_sym_PERCENT_EQ] = ACTIONS(7261), - [anon_sym_PLUS_EQ] = ACTIONS(7261), - [anon_sym_DASH_EQ] = ACTIONS(7261), - [anon_sym_LT_LT_EQ] = ACTIONS(7261), - [anon_sym_GT_GT_EQ] = ACTIONS(7261), - [anon_sym_AMP_EQ] = ACTIONS(7261), - [anon_sym_CARET_EQ] = ACTIONS(7261), - [anon_sym_PIPE_EQ] = ACTIONS(7261), - [anon_sym_and_eq] = ACTIONS(7259), - [anon_sym_or_eq] = ACTIONS(7259), - [anon_sym_xor_eq] = ACTIONS(7259), - [anon_sym_LT_EQ_GT] = ACTIONS(7261), - [anon_sym_or] = ACTIONS(7259), - [anon_sym_and] = ACTIONS(7259), - [anon_sym_bitor] = ACTIONS(7259), - [anon_sym_xor] = ACTIONS(7259), - [anon_sym_bitand] = ACTIONS(7259), - [anon_sym_not_eq] = ACTIONS(7259), - [anon_sym_DASH_DASH] = ACTIONS(7261), - [anon_sym_PLUS_PLUS] = ACTIONS(7261), - [anon_sym_DOT] = ACTIONS(7259), - [anon_sym_DOT_STAR] = ACTIONS(7261), - [anon_sym_DASH_GT] = ACTIONS(7261), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7259), - [anon_sym_override] = ACTIONS(7259), - [anon_sym_requires] = ACTIONS(7259), - [anon_sym_COLON_RBRACK] = ACTIONS(7261), + [anon_sym_alignas] = ACTIONS(7258), + [anon_sym__Alignas] = ACTIONS(7258), + [sym_primitive_type] = ACTIONS(7261), + [anon_sym_QMARK] = ACTIONS(7249), + [anon_sym_STAR_EQ] = ACTIONS(7249), + [anon_sym_SLASH_EQ] = ACTIONS(7249), + [anon_sym_PERCENT_EQ] = ACTIONS(7249), + [anon_sym_PLUS_EQ] = ACTIONS(7249), + [anon_sym_DASH_EQ] = ACTIONS(7249), + [anon_sym_LT_LT_EQ] = ACTIONS(7249), + [anon_sym_GT_GT_EQ] = ACTIONS(7249), + [anon_sym_AMP_EQ] = ACTIONS(7249), + [anon_sym_CARET_EQ] = ACTIONS(7249), + [anon_sym_PIPE_EQ] = ACTIONS(7249), + [anon_sym_and_eq] = ACTIONS(7251), + [anon_sym_or_eq] = ACTIONS(7251), + [anon_sym_xor_eq] = ACTIONS(7251), + [anon_sym_LT_EQ_GT] = ACTIONS(7249), + [anon_sym_or] = ACTIONS(7251), + [anon_sym_and] = ACTIONS(7251), + [anon_sym_bitor] = ACTIONS(7251), + [anon_sym_xor] = ACTIONS(7251), + [anon_sym_bitand] = ACTIONS(7251), + [anon_sym_not_eq] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7249), + [anon_sym_PLUS_PLUS] = ACTIONS(7249), + [anon_sym_DOT] = ACTIONS(7251), + [anon_sym_DOT_STAR] = ACTIONS(7249), + [anon_sym_DASH_GT] = ACTIONS(7249), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7251), + [anon_sym_override] = ACTIONS(7251), + [anon_sym_requires] = ACTIONS(7251), + [anon_sym_COLON_RBRACK] = ACTIONS(7249), }, - [STATE(2091)] = { - [sym_identifier] = ACTIONS(7263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7265), - [anon_sym_COMMA] = ACTIONS(7265), - [anon_sym_RPAREN] = ACTIONS(7265), - [aux_sym_preproc_if_token2] = ACTIONS(7265), - [aux_sym_preproc_else_token1] = ACTIONS(7265), - [aux_sym_preproc_elif_token1] = ACTIONS(7263), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7265), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7265), - [anon_sym_LPAREN2] = ACTIONS(7265), - [anon_sym_DASH] = ACTIONS(7263), - [anon_sym_PLUS] = ACTIONS(7263), - [anon_sym_STAR] = ACTIONS(7263), - [anon_sym_SLASH] = ACTIONS(7263), - [anon_sym_PERCENT] = ACTIONS(7263), - [anon_sym_PIPE_PIPE] = ACTIONS(7265), - [anon_sym_AMP_AMP] = ACTIONS(7265), - [anon_sym_PIPE] = ACTIONS(7263), - [anon_sym_CARET] = ACTIONS(7263), - [anon_sym_AMP] = ACTIONS(7263), - [anon_sym_EQ_EQ] = ACTIONS(7265), - [anon_sym_BANG_EQ] = ACTIONS(7265), - [anon_sym_GT] = ACTIONS(7263), - [anon_sym_GT_EQ] = ACTIONS(7265), - [anon_sym_LT_EQ] = ACTIONS(7263), + [STATE(2077)] = { + [sym_template_argument_list] = STATE(2090), + [sym_identifier] = ACTIONS(6565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6572), + [anon_sym_COMMA] = ACTIONS(6572), + [anon_sym_RPAREN] = ACTIONS(6572), + [aux_sym_preproc_if_token2] = ACTIONS(6572), + [aux_sym_preproc_else_token1] = ACTIONS(6572), + [aux_sym_preproc_elif_token1] = ACTIONS(6565), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6572), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6572), + [anon_sym_LPAREN2] = ACTIONS(6572), + [anon_sym_DASH] = ACTIONS(6565), + [anon_sym_PLUS] = ACTIONS(6565), + [anon_sym_STAR] = ACTIONS(6565), + [anon_sym_SLASH] = ACTIONS(6565), + [anon_sym_PERCENT] = ACTIONS(6565), + [anon_sym_PIPE_PIPE] = ACTIONS(6572), + [anon_sym_AMP_AMP] = ACTIONS(6572), + [anon_sym_PIPE] = ACTIONS(6565), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym_AMP] = ACTIONS(6565), + [anon_sym_EQ_EQ] = ACTIONS(6572), + [anon_sym_BANG_EQ] = ACTIONS(6572), + [anon_sym_GT] = ACTIONS(6565), + [anon_sym_GT_EQ] = ACTIONS(6572), + [anon_sym_LT_EQ] = ACTIONS(6565), [anon_sym_LT] = ACTIONS(7263), - [anon_sym_LT_LT] = ACTIONS(7263), - [anon_sym_GT_GT] = ACTIONS(7263), - [anon_sym_SEMI] = ACTIONS(7265), - [anon_sym___extension__] = ACTIONS(7263), - [anon_sym___attribute__] = ACTIONS(7263), - [anon_sym___attribute] = ACTIONS(7263), - [anon_sym_COLON] = ACTIONS(7263), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7265), - [anon_sym_LBRACE] = ACTIONS(7265), - [anon_sym_RBRACE] = ACTIONS(7265), - [anon_sym_LBRACK] = ACTIONS(7265), - [anon_sym_EQ] = ACTIONS(7263), - [anon_sym_const] = ACTIONS(7263), - [anon_sym_constexpr] = ACTIONS(7263), - [anon_sym_volatile] = ACTIONS(7263), - [anon_sym_restrict] = ACTIONS(7263), - [anon_sym___restrict__] = ACTIONS(7263), - [anon_sym__Atomic] = ACTIONS(7263), - [anon_sym__Noreturn] = ACTIONS(7263), - [anon_sym_noreturn] = ACTIONS(7263), - [anon_sym__Nonnull] = ACTIONS(7263), - [anon_sym_mutable] = ACTIONS(7263), - [anon_sym_constinit] = ACTIONS(7263), - [anon_sym_consteval] = ACTIONS(7263), - [anon_sym_alignas] = ACTIONS(7263), - [anon_sym__Alignas] = ACTIONS(7263), - [anon_sym_QMARK] = ACTIONS(7265), - [anon_sym_STAR_EQ] = ACTIONS(7265), - [anon_sym_SLASH_EQ] = ACTIONS(7265), - [anon_sym_PERCENT_EQ] = ACTIONS(7265), - [anon_sym_PLUS_EQ] = ACTIONS(7265), - [anon_sym_DASH_EQ] = ACTIONS(7265), - [anon_sym_LT_LT_EQ] = ACTIONS(7265), - [anon_sym_GT_GT_EQ] = ACTIONS(7265), - [anon_sym_AMP_EQ] = ACTIONS(7265), - [anon_sym_CARET_EQ] = ACTIONS(7265), - [anon_sym_PIPE_EQ] = ACTIONS(7265), - [anon_sym_and_eq] = ACTIONS(7263), - [anon_sym_or_eq] = ACTIONS(7263), - [anon_sym_xor_eq] = ACTIONS(7263), - [anon_sym_LT_EQ_GT] = ACTIONS(7265), - [anon_sym_or] = ACTIONS(7263), - [anon_sym_and] = ACTIONS(7263), - [anon_sym_bitor] = ACTIONS(7263), - [anon_sym_xor] = ACTIONS(7263), - [anon_sym_bitand] = ACTIONS(7263), - [anon_sym_not_eq] = ACTIONS(7263), - [anon_sym_DASH_DASH] = ACTIONS(7265), - [anon_sym_PLUS_PLUS] = ACTIONS(7265), - [anon_sym_DOT] = ACTIONS(7263), - [anon_sym_DOT_STAR] = ACTIONS(7265), - [anon_sym_DASH_GT] = ACTIONS(7265), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7263), - [anon_sym_override] = ACTIONS(7263), - [anon_sym_requires] = ACTIONS(7263), - [anon_sym_COLON_RBRACK] = ACTIONS(7265), - }, - [STATE(2092)] = { - [sym_identifier] = ACTIONS(7267), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7269), - [anon_sym_COMMA] = ACTIONS(7269), - [anon_sym_RPAREN] = ACTIONS(7269), - [aux_sym_preproc_if_token2] = ACTIONS(7269), - [aux_sym_preproc_else_token1] = ACTIONS(7269), - [aux_sym_preproc_elif_token1] = ACTIONS(7267), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7269), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7269), - [anon_sym_LPAREN2] = ACTIONS(7269), - [anon_sym_DASH] = ACTIONS(7267), - [anon_sym_PLUS] = ACTIONS(7267), - [anon_sym_STAR] = ACTIONS(7267), - [anon_sym_SLASH] = ACTIONS(7267), - [anon_sym_PERCENT] = ACTIONS(7267), - [anon_sym_PIPE_PIPE] = ACTIONS(7269), - [anon_sym_AMP_AMP] = ACTIONS(7269), - [anon_sym_PIPE] = ACTIONS(7267), - [anon_sym_CARET] = ACTIONS(7267), - [anon_sym_AMP] = ACTIONS(7267), - [anon_sym_EQ_EQ] = ACTIONS(7269), - [anon_sym_BANG_EQ] = ACTIONS(7269), - [anon_sym_GT] = ACTIONS(7267), - [anon_sym_GT_EQ] = ACTIONS(7269), - [anon_sym_LT_EQ] = ACTIONS(7267), - [anon_sym_LT] = ACTIONS(7267), - [anon_sym_LT_LT] = ACTIONS(7267), - [anon_sym_GT_GT] = ACTIONS(7267), - [anon_sym_SEMI] = ACTIONS(7269), - [anon_sym___extension__] = ACTIONS(7267), - [anon_sym___attribute__] = ACTIONS(7267), - [anon_sym___attribute] = ACTIONS(7267), - [anon_sym_COLON] = ACTIONS(7267), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7269), - [anon_sym_LBRACE] = ACTIONS(7269), - [anon_sym_RBRACE] = ACTIONS(7269), - [anon_sym_LBRACK] = ACTIONS(7269), - [anon_sym_EQ] = ACTIONS(7267), - [anon_sym_const] = ACTIONS(7267), - [anon_sym_constexpr] = ACTIONS(7267), - [anon_sym_volatile] = ACTIONS(7267), - [anon_sym_restrict] = ACTIONS(7267), - [anon_sym___restrict__] = ACTIONS(7267), - [anon_sym__Atomic] = ACTIONS(7267), - [anon_sym__Noreturn] = ACTIONS(7267), - [anon_sym_noreturn] = ACTIONS(7267), - [anon_sym__Nonnull] = ACTIONS(7267), - [anon_sym_mutable] = ACTIONS(7267), - [anon_sym_constinit] = ACTIONS(7267), - [anon_sym_consteval] = ACTIONS(7267), - [anon_sym_alignas] = ACTIONS(7267), - [anon_sym__Alignas] = ACTIONS(7267), - [anon_sym_QMARK] = ACTIONS(7269), - [anon_sym_STAR_EQ] = ACTIONS(7269), - [anon_sym_SLASH_EQ] = ACTIONS(7269), - [anon_sym_PERCENT_EQ] = ACTIONS(7269), - [anon_sym_PLUS_EQ] = ACTIONS(7269), - [anon_sym_DASH_EQ] = ACTIONS(7269), - [anon_sym_LT_LT_EQ] = ACTIONS(7269), - [anon_sym_GT_GT_EQ] = ACTIONS(7269), - [anon_sym_AMP_EQ] = ACTIONS(7269), - [anon_sym_CARET_EQ] = ACTIONS(7269), - [anon_sym_PIPE_EQ] = ACTIONS(7269), - [anon_sym_and_eq] = ACTIONS(7267), - [anon_sym_or_eq] = ACTIONS(7267), - [anon_sym_xor_eq] = ACTIONS(7267), - [anon_sym_LT_EQ_GT] = ACTIONS(7269), - [anon_sym_or] = ACTIONS(7267), - [anon_sym_and] = ACTIONS(7267), - [anon_sym_bitor] = ACTIONS(7267), - [anon_sym_xor] = ACTIONS(7267), - [anon_sym_bitand] = ACTIONS(7267), - [anon_sym_not_eq] = ACTIONS(7267), - [anon_sym_DASH_DASH] = ACTIONS(7269), - [anon_sym_PLUS_PLUS] = ACTIONS(7269), - [anon_sym_DOT] = ACTIONS(7267), - [anon_sym_DOT_STAR] = ACTIONS(7269), - [anon_sym_DASH_GT] = ACTIONS(7269), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7267), - [anon_sym_override] = ACTIONS(7267), - [anon_sym_requires] = ACTIONS(7267), - [anon_sym_COLON_RBRACK] = ACTIONS(7269), - }, - [STATE(2093)] = { - [sym_identifier] = ACTIONS(7253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), - [anon_sym_COMMA] = ACTIONS(7255), - [anon_sym_RPAREN] = ACTIONS(7255), - [aux_sym_preproc_if_token2] = ACTIONS(7255), - [aux_sym_preproc_else_token1] = ACTIONS(7255), - [aux_sym_preproc_elif_token1] = ACTIONS(7253), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7255), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7255), - [anon_sym_LPAREN2] = ACTIONS(7255), - [anon_sym_DASH] = ACTIONS(7253), - [anon_sym_PLUS] = ACTIONS(7253), - [anon_sym_STAR] = ACTIONS(7253), - [anon_sym_SLASH] = ACTIONS(7253), - [anon_sym_PERCENT] = ACTIONS(7253), - [anon_sym_PIPE_PIPE] = ACTIONS(7255), - [anon_sym_AMP_AMP] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7253), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_EQ_EQ] = ACTIONS(7255), - [anon_sym_BANG_EQ] = ACTIONS(7255), - [anon_sym_GT] = ACTIONS(7253), - [anon_sym_GT_EQ] = ACTIONS(7255), - [anon_sym_LT_EQ] = ACTIONS(7253), - [anon_sym_LT] = ACTIONS(7253), - [anon_sym_LT_LT] = ACTIONS(7253), - [anon_sym_GT_GT] = ACTIONS(7253), - [anon_sym_SEMI] = ACTIONS(7255), - [anon_sym___extension__] = ACTIONS(7253), - [anon_sym___attribute__] = ACTIONS(7253), - [anon_sym___attribute] = ACTIONS(7253), - [anon_sym_COLON] = ACTIONS(7253), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7255), - [anon_sym_LBRACE] = ACTIONS(7255), - [anon_sym_RBRACE] = ACTIONS(7255), - [anon_sym_LBRACK] = ACTIONS(7255), - [anon_sym_EQ] = ACTIONS(7253), - [anon_sym_const] = ACTIONS(7253), - [anon_sym_constexpr] = ACTIONS(7253), - [anon_sym_volatile] = ACTIONS(7253), - [anon_sym_restrict] = ACTIONS(7253), - [anon_sym___restrict__] = ACTIONS(7253), - [anon_sym__Atomic] = ACTIONS(7253), - [anon_sym__Noreturn] = ACTIONS(7253), - [anon_sym_noreturn] = ACTIONS(7253), - [anon_sym__Nonnull] = ACTIONS(7253), - [anon_sym_mutable] = ACTIONS(7253), - [anon_sym_constinit] = ACTIONS(7253), - [anon_sym_consteval] = ACTIONS(7253), - [anon_sym_alignas] = ACTIONS(7253), - [anon_sym__Alignas] = ACTIONS(7253), - [anon_sym_QMARK] = ACTIONS(7255), - [anon_sym_STAR_EQ] = ACTIONS(7255), - [anon_sym_SLASH_EQ] = ACTIONS(7255), - [anon_sym_PERCENT_EQ] = ACTIONS(7255), - [anon_sym_PLUS_EQ] = ACTIONS(7255), - [anon_sym_DASH_EQ] = ACTIONS(7255), - [anon_sym_LT_LT_EQ] = ACTIONS(7255), - [anon_sym_GT_GT_EQ] = ACTIONS(7255), - [anon_sym_AMP_EQ] = ACTIONS(7255), - [anon_sym_CARET_EQ] = ACTIONS(7255), - [anon_sym_PIPE_EQ] = ACTIONS(7255), - [anon_sym_and_eq] = ACTIONS(7253), - [anon_sym_or_eq] = ACTIONS(7253), - [anon_sym_xor_eq] = ACTIONS(7253), - [anon_sym_LT_EQ_GT] = ACTIONS(7255), - [anon_sym_or] = ACTIONS(7253), - [anon_sym_and] = ACTIONS(7253), - [anon_sym_bitor] = ACTIONS(7253), - [anon_sym_xor] = ACTIONS(7253), - [anon_sym_bitand] = ACTIONS(7253), - [anon_sym_not_eq] = ACTIONS(7253), - [anon_sym_DASH_DASH] = ACTIONS(7255), - [anon_sym_PLUS_PLUS] = ACTIONS(7255), - [anon_sym_DOT] = ACTIONS(7253), - [anon_sym_DOT_STAR] = ACTIONS(7255), - [anon_sym_DASH_GT] = ACTIONS(7255), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7253), - [anon_sym_override] = ACTIONS(7253), - [anon_sym_requires] = ACTIONS(7253), - [anon_sym_COLON_RBRACK] = ACTIONS(7255), - }, - [STATE(2094)] = { - [sym_identifier] = ACTIONS(7271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7273), - [anon_sym_COMMA] = ACTIONS(7273), - [anon_sym_RPAREN] = ACTIONS(7273), - [aux_sym_preproc_if_token2] = ACTIONS(7273), - [aux_sym_preproc_else_token1] = ACTIONS(7273), - [aux_sym_preproc_elif_token1] = ACTIONS(7271), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7273), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7273), - [anon_sym_LPAREN2] = ACTIONS(7273), - [anon_sym_DASH] = ACTIONS(7271), - [anon_sym_PLUS] = ACTIONS(7271), - [anon_sym_STAR] = ACTIONS(7271), - [anon_sym_SLASH] = ACTIONS(7271), - [anon_sym_PERCENT] = ACTIONS(7271), - [anon_sym_PIPE_PIPE] = ACTIONS(7273), - [anon_sym_AMP_AMP] = ACTIONS(7273), - [anon_sym_PIPE] = ACTIONS(7271), - [anon_sym_CARET] = ACTIONS(7271), - [anon_sym_AMP] = ACTIONS(7271), - [anon_sym_EQ_EQ] = ACTIONS(7273), - [anon_sym_BANG_EQ] = ACTIONS(7273), - [anon_sym_GT] = ACTIONS(7271), - [anon_sym_GT_EQ] = ACTIONS(7273), - [anon_sym_LT_EQ] = ACTIONS(7271), - [anon_sym_LT] = ACTIONS(7271), - [anon_sym_LT_LT] = ACTIONS(7271), - [anon_sym_GT_GT] = ACTIONS(7271), - [anon_sym_SEMI] = ACTIONS(7273), - [anon_sym___extension__] = ACTIONS(7271), - [anon_sym___attribute__] = ACTIONS(7271), - [anon_sym___attribute] = ACTIONS(7271), - [anon_sym_COLON] = ACTIONS(7271), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7273), - [anon_sym_LBRACE] = ACTIONS(7273), - [anon_sym_RBRACE] = ACTIONS(7273), - [anon_sym_LBRACK] = ACTIONS(7273), - [anon_sym_EQ] = ACTIONS(7271), - [anon_sym_const] = ACTIONS(7271), - [anon_sym_constexpr] = ACTIONS(7271), - [anon_sym_volatile] = ACTIONS(7271), - [anon_sym_restrict] = ACTIONS(7271), - [anon_sym___restrict__] = ACTIONS(7271), - [anon_sym__Atomic] = ACTIONS(7271), - [anon_sym__Noreturn] = ACTIONS(7271), - [anon_sym_noreturn] = ACTIONS(7271), - [anon_sym__Nonnull] = ACTIONS(7271), - [anon_sym_mutable] = ACTIONS(7271), - [anon_sym_constinit] = ACTIONS(7271), - [anon_sym_consteval] = ACTIONS(7271), - [anon_sym_alignas] = ACTIONS(7271), - [anon_sym__Alignas] = ACTIONS(7271), - [anon_sym_QMARK] = ACTIONS(7273), - [anon_sym_STAR_EQ] = ACTIONS(7273), - [anon_sym_SLASH_EQ] = ACTIONS(7273), - [anon_sym_PERCENT_EQ] = ACTIONS(7273), - [anon_sym_PLUS_EQ] = ACTIONS(7273), - [anon_sym_DASH_EQ] = ACTIONS(7273), - [anon_sym_LT_LT_EQ] = ACTIONS(7273), - [anon_sym_GT_GT_EQ] = ACTIONS(7273), - [anon_sym_AMP_EQ] = ACTIONS(7273), - [anon_sym_CARET_EQ] = ACTIONS(7273), - [anon_sym_PIPE_EQ] = ACTIONS(7273), - [anon_sym_and_eq] = ACTIONS(7271), - [anon_sym_or_eq] = ACTIONS(7271), - [anon_sym_xor_eq] = ACTIONS(7271), - [anon_sym_LT_EQ_GT] = ACTIONS(7273), - [anon_sym_or] = ACTIONS(7271), - [anon_sym_and] = ACTIONS(7271), - [anon_sym_bitor] = ACTIONS(7271), - [anon_sym_xor] = ACTIONS(7271), - [anon_sym_bitand] = ACTIONS(7271), - [anon_sym_not_eq] = ACTIONS(7271), - [anon_sym_DASH_DASH] = ACTIONS(7273), - [anon_sym_PLUS_PLUS] = ACTIONS(7273), - [anon_sym_DOT] = ACTIONS(7271), - [anon_sym_DOT_STAR] = ACTIONS(7273), - [anon_sym_DASH_GT] = ACTIONS(7273), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7271), - [anon_sym_override] = ACTIONS(7271), - [anon_sym_requires] = ACTIONS(7271), - [anon_sym_COLON_RBRACK] = ACTIONS(7273), + [anon_sym_LT_LT] = ACTIONS(6565), + [anon_sym_GT_GT] = ACTIONS(6565), + [anon_sym_SEMI] = ACTIONS(6572), + [anon_sym___extension__] = ACTIONS(6565), + [anon_sym___attribute__] = ACTIONS(6565), + [anon_sym___attribute] = ACTIONS(6565), + [anon_sym_COLON] = ACTIONS(6565), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6572), + [anon_sym_LBRACE] = ACTIONS(6572), + [anon_sym_RBRACE] = ACTIONS(6572), + [anon_sym_LBRACK] = ACTIONS(6572), + [anon_sym_EQ] = ACTIONS(6565), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_constexpr] = ACTIONS(6565), + [anon_sym_volatile] = ACTIONS(6565), + [anon_sym_restrict] = ACTIONS(6565), + [anon_sym___restrict__] = ACTIONS(6565), + [anon_sym__Atomic] = ACTIONS(6565), + [anon_sym__Noreturn] = ACTIONS(6565), + [anon_sym_noreturn] = ACTIONS(6565), + [anon_sym__Nonnull] = ACTIONS(6565), + [anon_sym_mutable] = ACTIONS(6565), + [anon_sym_constinit] = ACTIONS(6565), + [anon_sym_consteval] = ACTIONS(6565), + [anon_sym_alignas] = ACTIONS(6565), + [anon_sym__Alignas] = ACTIONS(6565), + [anon_sym_QMARK] = ACTIONS(6572), + [anon_sym_STAR_EQ] = ACTIONS(6572), + [anon_sym_SLASH_EQ] = ACTIONS(6572), + [anon_sym_PERCENT_EQ] = ACTIONS(6572), + [anon_sym_PLUS_EQ] = ACTIONS(6572), + [anon_sym_DASH_EQ] = ACTIONS(6572), + [anon_sym_LT_LT_EQ] = ACTIONS(6572), + [anon_sym_GT_GT_EQ] = ACTIONS(6572), + [anon_sym_AMP_EQ] = ACTIONS(6572), + [anon_sym_CARET_EQ] = ACTIONS(6572), + [anon_sym_PIPE_EQ] = ACTIONS(6572), + [anon_sym_and_eq] = ACTIONS(6565), + [anon_sym_or_eq] = ACTIONS(6565), + [anon_sym_xor_eq] = ACTIONS(6565), + [anon_sym_LT_EQ_GT] = ACTIONS(6572), + [anon_sym_or] = ACTIONS(6565), + [anon_sym_and] = ACTIONS(6565), + [anon_sym_bitor] = ACTIONS(6565), + [anon_sym_xor] = ACTIONS(6565), + [anon_sym_bitand] = ACTIONS(6565), + [anon_sym_not_eq] = ACTIONS(6565), + [anon_sym_DASH_DASH] = ACTIONS(6572), + [anon_sym_PLUS_PLUS] = ACTIONS(6572), + [anon_sym_DOT] = ACTIONS(6565), + [anon_sym_DOT_STAR] = ACTIONS(6572), + [anon_sym_DASH_GT] = ACTIONS(6572), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6565), + [anon_sym_decltype] = ACTIONS(6565), + [anon_sym_final] = ACTIONS(6565), + [anon_sym_override] = ACTIONS(6565), + [anon_sym_requires] = ACTIONS(6565), + [anon_sym_COLON_RBRACK] = ACTIONS(6572), }, - [STATE(2095)] = { - [sym_identifier] = ACTIONS(7275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7277), - [anon_sym_COMMA] = ACTIONS(7277), - [anon_sym_RPAREN] = ACTIONS(7277), - [aux_sym_preproc_if_token2] = ACTIONS(7277), - [aux_sym_preproc_else_token1] = ACTIONS(7277), - [aux_sym_preproc_elif_token1] = ACTIONS(7275), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7277), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7277), - [anon_sym_LPAREN2] = ACTIONS(7277), - [anon_sym_DASH] = ACTIONS(7275), - [anon_sym_PLUS] = ACTIONS(7275), - [anon_sym_STAR] = ACTIONS(7275), - [anon_sym_SLASH] = ACTIONS(7275), - [anon_sym_PERCENT] = ACTIONS(7275), - [anon_sym_PIPE_PIPE] = ACTIONS(7277), - [anon_sym_AMP_AMP] = ACTIONS(7277), - [anon_sym_PIPE] = ACTIONS(7275), - [anon_sym_CARET] = ACTIONS(7275), - [anon_sym_AMP] = ACTIONS(7275), - [anon_sym_EQ_EQ] = ACTIONS(7277), - [anon_sym_BANG_EQ] = ACTIONS(7277), - [anon_sym_GT] = ACTIONS(7275), - [anon_sym_GT_EQ] = ACTIONS(7277), - [anon_sym_LT_EQ] = ACTIONS(7275), - [anon_sym_LT] = ACTIONS(7275), - [anon_sym_LT_LT] = ACTIONS(7275), - [anon_sym_GT_GT] = ACTIONS(7275), - [anon_sym_SEMI] = ACTIONS(7277), - [anon_sym___extension__] = ACTIONS(7275), - [anon_sym___attribute__] = ACTIONS(7275), - [anon_sym___attribute] = ACTIONS(7275), - [anon_sym_COLON] = ACTIONS(7275), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7277), - [anon_sym_LBRACE] = ACTIONS(7277), - [anon_sym_RBRACE] = ACTIONS(7277), - [anon_sym_LBRACK] = ACTIONS(7277), - [anon_sym_EQ] = ACTIONS(7275), - [anon_sym_const] = ACTIONS(7275), - [anon_sym_constexpr] = ACTIONS(7275), - [anon_sym_volatile] = ACTIONS(7275), - [anon_sym_restrict] = ACTIONS(7275), - [anon_sym___restrict__] = ACTIONS(7275), - [anon_sym__Atomic] = ACTIONS(7275), - [anon_sym__Noreturn] = ACTIONS(7275), - [anon_sym_noreturn] = ACTIONS(7275), - [anon_sym__Nonnull] = ACTIONS(7275), - [anon_sym_mutable] = ACTIONS(7275), - [anon_sym_constinit] = ACTIONS(7275), - [anon_sym_consteval] = ACTIONS(7275), - [anon_sym_alignas] = ACTIONS(7275), - [anon_sym__Alignas] = ACTIONS(7275), - [anon_sym_QMARK] = ACTIONS(7277), - [anon_sym_STAR_EQ] = ACTIONS(7277), - [anon_sym_SLASH_EQ] = ACTIONS(7277), - [anon_sym_PERCENT_EQ] = ACTIONS(7277), - [anon_sym_PLUS_EQ] = ACTIONS(7277), - [anon_sym_DASH_EQ] = ACTIONS(7277), - [anon_sym_LT_LT_EQ] = ACTIONS(7277), - [anon_sym_GT_GT_EQ] = ACTIONS(7277), - [anon_sym_AMP_EQ] = ACTIONS(7277), - [anon_sym_CARET_EQ] = ACTIONS(7277), - [anon_sym_PIPE_EQ] = ACTIONS(7277), - [anon_sym_and_eq] = ACTIONS(7275), - [anon_sym_or_eq] = ACTIONS(7275), - [anon_sym_xor_eq] = ACTIONS(7275), - [anon_sym_LT_EQ_GT] = ACTIONS(7277), - [anon_sym_or] = ACTIONS(7275), - [anon_sym_and] = ACTIONS(7275), - [anon_sym_bitor] = ACTIONS(7275), - [anon_sym_xor] = ACTIONS(7275), - [anon_sym_bitand] = ACTIONS(7275), - [anon_sym_not_eq] = ACTIONS(7275), - [anon_sym_DASH_DASH] = ACTIONS(7277), - [anon_sym_PLUS_PLUS] = ACTIONS(7277), - [anon_sym_DOT] = ACTIONS(7275), - [anon_sym_DOT_STAR] = ACTIONS(7277), - [anon_sym_DASH_GT] = ACTIONS(7277), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7275), - [anon_sym_override] = ACTIONS(7275), - [anon_sym_requires] = ACTIONS(7275), - [anon_sym_COLON_RBRACK] = ACTIONS(7277), + [STATE(2078)] = { + [sym_decltype_auto] = STATE(2234), + [sym_template_argument_list] = STATE(2090), + [aux_sym_sized_type_specifier_repeat1] = STATE(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), + [anon_sym_COMMA] = ACTIONS(5643), + [anon_sym_RPAREN] = ACTIONS(5643), + [anon_sym_LPAREN2] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5636), + [anon_sym_PLUS] = ACTIONS(5636), + [anon_sym_STAR] = ACTIONS(5636), + [anon_sym_SLASH] = ACTIONS(5636), + [anon_sym_PERCENT] = ACTIONS(5636), + [anon_sym_PIPE_PIPE] = ACTIONS(5643), + [anon_sym_AMP_AMP] = ACTIONS(5643), + [anon_sym_PIPE] = ACTIONS(5636), + [anon_sym_CARET] = ACTIONS(5636), + [anon_sym_AMP] = ACTIONS(5636), + [anon_sym_EQ_EQ] = ACTIONS(5643), + [anon_sym_BANG_EQ] = ACTIONS(5643), + [anon_sym_GT] = ACTIONS(5636), + [anon_sym_GT_EQ] = ACTIONS(5643), + [anon_sym_LT_EQ] = ACTIONS(5636), + [anon_sym_LT] = ACTIONS(7266), + [anon_sym_LT_LT] = ACTIONS(5636), + [anon_sym_GT_GT] = ACTIONS(5636), + [anon_sym_SEMI] = ACTIONS(5643), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym___attribute__] = ACTIONS(5643), + [anon_sym___attribute] = ACTIONS(5636), + [anon_sym_COLON] = ACTIONS(5636), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5643), + [anon_sym_LBRACE] = ACTIONS(5643), + [anon_sym_RBRACE] = ACTIONS(5643), + [anon_sym_signed] = ACTIONS(6789), + [anon_sym_unsigned] = ACTIONS(6789), + [anon_sym_long] = ACTIONS(6789), + [anon_sym_short] = ACTIONS(6789), + [anon_sym_LBRACK] = ACTIONS(5643), + [anon_sym_EQ] = ACTIONS(5636), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5643), + [anon_sym_volatile] = ACTIONS(5643), + [anon_sym_restrict] = ACTIONS(5643), + [anon_sym___restrict__] = ACTIONS(5643), + [anon_sym__Atomic] = ACTIONS(5643), + [anon_sym__Noreturn] = ACTIONS(5643), + [anon_sym_noreturn] = ACTIONS(5643), + [anon_sym__Nonnull] = ACTIONS(5643), + [anon_sym_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [anon_sym_alignas] = ACTIONS(5643), + [anon_sym__Alignas] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5643), + [anon_sym_STAR_EQ] = ACTIONS(5643), + [anon_sym_SLASH_EQ] = ACTIONS(5643), + [anon_sym_PERCENT_EQ] = ACTIONS(5643), + [anon_sym_PLUS_EQ] = ACTIONS(5643), + [anon_sym_DASH_EQ] = ACTIONS(5643), + [anon_sym_LT_LT_EQ] = ACTIONS(5643), + [anon_sym_GT_GT_EQ] = ACTIONS(5643), + [anon_sym_AMP_EQ] = ACTIONS(5643), + [anon_sym_CARET_EQ] = ACTIONS(5643), + [anon_sym_PIPE_EQ] = ACTIONS(5643), + [anon_sym_and_eq] = ACTIONS(5643), + [anon_sym_or_eq] = ACTIONS(5643), + [anon_sym_xor_eq] = ACTIONS(5643), + [anon_sym_LT_EQ_GT] = ACTIONS(5643), + [anon_sym_or] = ACTIONS(5636), + [anon_sym_and] = ACTIONS(5636), + [anon_sym_bitor] = ACTIONS(5643), + [anon_sym_xor] = ACTIONS(5636), + [anon_sym_bitand] = ACTIONS(5643), + [anon_sym_not_eq] = ACTIONS(5643), + [anon_sym_DASH_DASH] = ACTIONS(5643), + [anon_sym_PLUS_PLUS] = ACTIONS(5643), + [anon_sym_DOT] = ACTIONS(5636), + [anon_sym_DOT_STAR] = ACTIONS(5643), + [anon_sym_DASH_GT] = ACTIONS(5643), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6791), + [anon_sym_decltype] = ACTIONS(6793), + [anon_sym_final] = ACTIONS(5643), + [anon_sym_override] = ACTIONS(5643), + [anon_sym_requires] = ACTIONS(5643), + [anon_sym_COLON_RBRACK] = ACTIONS(5643), }, - [STATE(2096)] = { - [sym_identifier] = ACTIONS(6237), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), - [anon_sym_COMMA] = ACTIONS(6230), - [anon_sym_RPAREN] = ACTIONS(6230), - [aux_sym_preproc_if_token2] = ACTIONS(6230), - [aux_sym_preproc_else_token1] = ACTIONS(6230), - [aux_sym_preproc_elif_token1] = ACTIONS(6237), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6230), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6230), - [anon_sym_LPAREN2] = ACTIONS(6230), - [anon_sym_DASH] = ACTIONS(6237), - [anon_sym_PLUS] = ACTIONS(6237), - [anon_sym_STAR] = ACTIONS(6237), - [anon_sym_SLASH] = ACTIONS(6237), - [anon_sym_PERCENT] = ACTIONS(6237), - [anon_sym_PIPE_PIPE] = ACTIONS(6230), - [anon_sym_AMP_AMP] = ACTIONS(6230), - [anon_sym_PIPE] = ACTIONS(6237), - [anon_sym_CARET] = ACTIONS(6237), - [anon_sym_AMP] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6230), - [anon_sym_BANG_EQ] = ACTIONS(6230), - [anon_sym_GT] = ACTIONS(6237), - [anon_sym_GT_EQ] = ACTIONS(6230), - [anon_sym_LT_EQ] = ACTIONS(6237), - [anon_sym_LT] = ACTIONS(6237), - [anon_sym_LT_LT] = ACTIONS(6237), - [anon_sym_GT_GT] = ACTIONS(6237), - [anon_sym_SEMI] = ACTIONS(6230), - [anon_sym___extension__] = ACTIONS(6226), - [anon_sym___attribute__] = ACTIONS(6237), - [anon_sym___attribute] = ACTIONS(6237), - [anon_sym_COLON] = ACTIONS(6237), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6230), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_RBRACE] = ACTIONS(6230), - [anon_sym_LBRACK] = ACTIONS(6230), - [anon_sym_EQ] = ACTIONS(6235), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6226), - [anon_sym_volatile] = ACTIONS(6226), - [anon_sym_restrict] = ACTIONS(6226), - [anon_sym___restrict__] = ACTIONS(6226), - [anon_sym__Atomic] = ACTIONS(6226), - [anon_sym__Noreturn] = ACTIONS(6226), - [anon_sym_noreturn] = ACTIONS(6226), - [anon_sym__Nonnull] = ACTIONS(6226), - [anon_sym_mutable] = ACTIONS(6226), - [anon_sym_constinit] = ACTIONS(6226), - [anon_sym_consteval] = ACTIONS(6226), - [anon_sym_alignas] = ACTIONS(6226), - [anon_sym__Alignas] = ACTIONS(6226), - [anon_sym_QMARK] = ACTIONS(6230), - [anon_sym_STAR_EQ] = ACTIONS(6228), - [anon_sym_SLASH_EQ] = ACTIONS(6228), - [anon_sym_PERCENT_EQ] = ACTIONS(6228), - [anon_sym_PLUS_EQ] = ACTIONS(6228), - [anon_sym_DASH_EQ] = ACTIONS(6228), - [anon_sym_LT_LT_EQ] = ACTIONS(6228), - [anon_sym_GT_GT_EQ] = ACTIONS(6228), - [anon_sym_AMP_EQ] = ACTIONS(6228), - [anon_sym_CARET_EQ] = ACTIONS(6228), - [anon_sym_PIPE_EQ] = ACTIONS(6228), - [anon_sym_and_eq] = ACTIONS(6235), - [anon_sym_or_eq] = ACTIONS(6235), - [anon_sym_xor_eq] = ACTIONS(6235), - [anon_sym_LT_EQ_GT] = ACTIONS(6230), - [anon_sym_or] = ACTIONS(6237), - [anon_sym_and] = ACTIONS(6237), - [anon_sym_bitor] = ACTIONS(6237), - [anon_sym_xor] = ACTIONS(6237), - [anon_sym_bitand] = ACTIONS(6237), - [anon_sym_not_eq] = ACTIONS(6237), - [anon_sym_DASH_DASH] = ACTIONS(6230), - [anon_sym_PLUS_PLUS] = ACTIONS(6230), - [anon_sym_DOT] = ACTIONS(6237), - [anon_sym_DOT_STAR] = ACTIONS(6230), - [anon_sym_DASH_GT] = ACTIONS(6230), + [STATE(2079)] = { + [sym_attribute_specifier] = STATE(2316), + [sym_attribute_declaration] = STATE(4713), + [sym_type_qualifier] = STATE(2459), + [sym_alignas_qualifier] = STATE(2727), + [sym_gnu_asm_expression] = STATE(9134), + [sym_virtual_specifier] = STATE(4778), + [sym_ref_qualifier] = STATE(3631), + [sym__function_attributes_start] = STATE(3493), + [sym__function_exception_specification] = STATE(4102), + [sym__function_attributes_end] = STATE(6020), + [sym__function_postfix] = STATE(5415), + [sym_trailing_return_type] = STATE(6114), + [sym_noexcept] = STATE(4102), + [sym_throw_specifier] = STATE(4102), + [sym_requires_clause] = STATE(5415), + [aux_sym_type_definition_repeat1] = STATE(2316), + [aux_sym__type_definition_type_repeat1] = STATE(2459), + [aux_sym_attributed_declarator_repeat1] = STATE(4713), + [aux_sym__function_postfix_repeat1] = STATE(4778), + [sym_identifier] = ACTIONS(6479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), + [anon_sym_COMMA] = ACTIONS(6481), + [aux_sym_preproc_if_token2] = ACTIONS(6481), + [aux_sym_preproc_else_token1] = ACTIONS(6481), + [aux_sym_preproc_elif_token1] = ACTIONS(6479), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6481), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_PLUS] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6481), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_PERCENT] = ACTIONS(6481), + [anon_sym_PIPE_PIPE] = ACTIONS(6481), + [anon_sym_AMP_AMP] = ACTIONS(7168), + [anon_sym_PIPE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6481), + [anon_sym_AMP] = ACTIONS(7171), + [anon_sym_EQ_EQ] = ACTIONS(6481), + [anon_sym_BANG_EQ] = ACTIONS(6481), + [anon_sym_GT] = ACTIONS(6479), + [anon_sym_GT_EQ] = ACTIONS(6481), + [anon_sym_LT_EQ] = ACTIONS(6479), + [anon_sym_LT] = ACTIONS(6479), + [anon_sym_LT_LT] = ACTIONS(6481), + [anon_sym_GT_GT] = ACTIONS(6481), + [anon_sym___extension__] = ACTIONS(7182), + [anon_sym___attribute__] = ACTIONS(7178), + [anon_sym___attribute] = ACTIONS(7178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(7182), + [anon_sym_constexpr] = ACTIONS(7182), + [anon_sym_volatile] = ACTIONS(7182), + [anon_sym_restrict] = ACTIONS(7182), + [anon_sym___restrict__] = ACTIONS(7182), + [anon_sym__Atomic] = ACTIONS(7182), + [anon_sym__Noreturn] = ACTIONS(7182), + [anon_sym_noreturn] = ACTIONS(7182), + [anon_sym__Nonnull] = ACTIONS(7182), + [anon_sym_mutable] = ACTIONS(7182), + [anon_sym_constinit] = ACTIONS(7182), + [anon_sym_consteval] = ACTIONS(7182), + [anon_sym_alignas] = ACTIONS(7268), + [anon_sym__Alignas] = ACTIONS(7268), + [anon_sym_QMARK] = ACTIONS(6481), + [anon_sym_LT_EQ_GT] = ACTIONS(6481), + [anon_sym_or] = ACTIONS(6479), + [anon_sym_and] = ACTIONS(6479), + [anon_sym_bitor] = ACTIONS(6479), + [anon_sym_xor] = ACTIONS(6479), + [anon_sym_bitand] = ACTIONS(6479), + [anon_sym_not_eq] = ACTIONS(6479), + [anon_sym_DASH_DASH] = ACTIONS(6481), + [anon_sym_PLUS_PLUS] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6497), + [anon_sym___asm__] = ACTIONS(6497), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6479), + [anon_sym_DOT_STAR] = ACTIONS(6481), + [anon_sym_DASH_GT] = ACTIONS(7270), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6226), - [anon_sym_decltype] = ACTIONS(6226), - [anon_sym_COLON_RBRACK] = ACTIONS(6230), - }, - [STATE(2097)] = { - [sym_identifier] = ACTIONS(7279), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7281), - [anon_sym_COMMA] = ACTIONS(7281), - [anon_sym_RPAREN] = ACTIONS(7281), - [aux_sym_preproc_if_token2] = ACTIONS(7281), - [aux_sym_preproc_else_token1] = ACTIONS(7281), - [aux_sym_preproc_elif_token1] = ACTIONS(7279), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7281), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7281), - [anon_sym_LPAREN2] = ACTIONS(7281), - [anon_sym_DASH] = ACTIONS(7279), - [anon_sym_PLUS] = ACTIONS(7279), - [anon_sym_STAR] = ACTIONS(7279), - [anon_sym_SLASH] = ACTIONS(7279), - [anon_sym_PERCENT] = ACTIONS(7279), - [anon_sym_PIPE_PIPE] = ACTIONS(7281), - [anon_sym_AMP_AMP] = ACTIONS(7281), - [anon_sym_PIPE] = ACTIONS(7279), - [anon_sym_CARET] = ACTIONS(7279), - [anon_sym_AMP] = ACTIONS(7279), - [anon_sym_EQ_EQ] = ACTIONS(7281), - [anon_sym_BANG_EQ] = ACTIONS(7281), - [anon_sym_GT] = ACTIONS(7279), - [anon_sym_GT_EQ] = ACTIONS(7281), - [anon_sym_LT_EQ] = ACTIONS(7279), - [anon_sym_LT] = ACTIONS(7279), - [anon_sym_LT_LT] = ACTIONS(7279), - [anon_sym_GT_GT] = ACTIONS(7279), - [anon_sym_SEMI] = ACTIONS(7281), - [anon_sym___extension__] = ACTIONS(7279), - [anon_sym___attribute__] = ACTIONS(7279), - [anon_sym___attribute] = ACTIONS(7279), - [anon_sym_COLON] = ACTIONS(7279), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7281), - [anon_sym_LBRACE] = ACTIONS(7281), - [anon_sym_RBRACE] = ACTIONS(7281), - [anon_sym_LBRACK] = ACTIONS(7281), - [anon_sym_EQ] = ACTIONS(7279), - [anon_sym_const] = ACTIONS(7279), - [anon_sym_constexpr] = ACTIONS(7279), - [anon_sym_volatile] = ACTIONS(7279), - [anon_sym_restrict] = ACTIONS(7279), - [anon_sym___restrict__] = ACTIONS(7279), - [anon_sym__Atomic] = ACTIONS(7279), - [anon_sym__Noreturn] = ACTIONS(7279), - [anon_sym_noreturn] = ACTIONS(7279), - [anon_sym__Nonnull] = ACTIONS(7279), - [anon_sym_mutable] = ACTIONS(7279), - [anon_sym_constinit] = ACTIONS(7279), - [anon_sym_consteval] = ACTIONS(7279), - [anon_sym_alignas] = ACTIONS(7279), - [anon_sym__Alignas] = ACTIONS(7279), - [anon_sym_QMARK] = ACTIONS(7281), - [anon_sym_STAR_EQ] = ACTIONS(7281), - [anon_sym_SLASH_EQ] = ACTIONS(7281), - [anon_sym_PERCENT_EQ] = ACTIONS(7281), - [anon_sym_PLUS_EQ] = ACTIONS(7281), - [anon_sym_DASH_EQ] = ACTIONS(7281), - [anon_sym_LT_LT_EQ] = ACTIONS(7281), - [anon_sym_GT_GT_EQ] = ACTIONS(7281), - [anon_sym_AMP_EQ] = ACTIONS(7281), - [anon_sym_CARET_EQ] = ACTIONS(7281), - [anon_sym_PIPE_EQ] = ACTIONS(7281), - [anon_sym_and_eq] = ACTIONS(7279), - [anon_sym_or_eq] = ACTIONS(7279), - [anon_sym_xor_eq] = ACTIONS(7279), - [anon_sym_LT_EQ_GT] = ACTIONS(7281), - [anon_sym_or] = ACTIONS(7279), - [anon_sym_and] = ACTIONS(7279), - [anon_sym_bitor] = ACTIONS(7279), - [anon_sym_xor] = ACTIONS(7279), - [anon_sym_bitand] = ACTIONS(7279), - [anon_sym_not_eq] = ACTIONS(7279), - [anon_sym_DASH_DASH] = ACTIONS(7281), - [anon_sym_PLUS_PLUS] = ACTIONS(7281), - [anon_sym_DOT] = ACTIONS(7279), - [anon_sym_DOT_STAR] = ACTIONS(7281), - [anon_sym_DASH_GT] = ACTIONS(7281), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7279), - [anon_sym_override] = ACTIONS(7279), - [anon_sym_requires] = ACTIONS(7279), - [anon_sym_COLON_RBRACK] = ACTIONS(7281), + [anon_sym_final] = ACTIONS(7273), + [anon_sym_override] = ACTIONS(7273), + [anon_sym_noexcept] = ACTIONS(7276), + [anon_sym_throw] = ACTIONS(7278), + [anon_sym_requires] = ACTIONS(7280), }, - [STATE(2098)] = { - [sym_identifier] = ACTIONS(7283), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7285), - [anon_sym_COMMA] = ACTIONS(7285), - [anon_sym_RPAREN] = ACTIONS(7285), - [aux_sym_preproc_if_token2] = ACTIONS(7285), - [aux_sym_preproc_else_token1] = ACTIONS(7285), - [aux_sym_preproc_elif_token1] = ACTIONS(7283), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7285), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7285), - [anon_sym_LPAREN2] = ACTIONS(7285), - [anon_sym_DASH] = ACTIONS(7283), - [anon_sym_PLUS] = ACTIONS(7283), - [anon_sym_STAR] = ACTIONS(7283), - [anon_sym_SLASH] = ACTIONS(7283), - [anon_sym_PERCENT] = ACTIONS(7283), - [anon_sym_PIPE_PIPE] = ACTIONS(7285), - [anon_sym_AMP_AMP] = ACTIONS(7285), - [anon_sym_PIPE] = ACTIONS(7283), - [anon_sym_CARET] = ACTIONS(7283), - [anon_sym_AMP] = ACTIONS(7283), - [anon_sym_EQ_EQ] = ACTIONS(7285), - [anon_sym_BANG_EQ] = ACTIONS(7285), - [anon_sym_GT] = ACTIONS(7283), - [anon_sym_GT_EQ] = ACTIONS(7285), - [anon_sym_LT_EQ] = ACTIONS(7283), - [anon_sym_LT] = ACTIONS(7283), - [anon_sym_LT_LT] = ACTIONS(7283), - [anon_sym_GT_GT] = ACTIONS(7283), - [anon_sym_SEMI] = ACTIONS(7285), - [anon_sym___extension__] = ACTIONS(7283), - [anon_sym___attribute__] = ACTIONS(7283), - [anon_sym___attribute] = ACTIONS(7283), - [anon_sym_COLON] = ACTIONS(7283), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7285), - [anon_sym_LBRACE] = ACTIONS(7285), - [anon_sym_RBRACE] = ACTIONS(7285), - [anon_sym_LBRACK] = ACTIONS(7285), - [anon_sym_EQ] = ACTIONS(7283), - [anon_sym_const] = ACTIONS(7283), - [anon_sym_constexpr] = ACTIONS(7283), - [anon_sym_volatile] = ACTIONS(7283), - [anon_sym_restrict] = ACTIONS(7283), - [anon_sym___restrict__] = ACTIONS(7283), - [anon_sym__Atomic] = ACTIONS(7283), - [anon_sym__Noreturn] = ACTIONS(7283), - [anon_sym_noreturn] = ACTIONS(7283), - [anon_sym__Nonnull] = ACTIONS(7283), - [anon_sym_mutable] = ACTIONS(7283), - [anon_sym_constinit] = ACTIONS(7283), - [anon_sym_consteval] = ACTIONS(7283), - [anon_sym_alignas] = ACTIONS(7283), - [anon_sym__Alignas] = ACTIONS(7283), - [anon_sym_QMARK] = ACTIONS(7285), - [anon_sym_STAR_EQ] = ACTIONS(7285), - [anon_sym_SLASH_EQ] = ACTIONS(7285), - [anon_sym_PERCENT_EQ] = ACTIONS(7285), - [anon_sym_PLUS_EQ] = ACTIONS(7285), - [anon_sym_DASH_EQ] = ACTIONS(7285), - [anon_sym_LT_LT_EQ] = ACTIONS(7285), - [anon_sym_GT_GT_EQ] = ACTIONS(7285), - [anon_sym_AMP_EQ] = ACTIONS(7285), - [anon_sym_CARET_EQ] = ACTIONS(7285), - [anon_sym_PIPE_EQ] = ACTIONS(7285), - [anon_sym_and_eq] = ACTIONS(7283), - [anon_sym_or_eq] = ACTIONS(7283), - [anon_sym_xor_eq] = ACTIONS(7283), - [anon_sym_LT_EQ_GT] = ACTIONS(7285), - [anon_sym_or] = ACTIONS(7283), - [anon_sym_and] = ACTIONS(7283), - [anon_sym_bitor] = ACTIONS(7283), - [anon_sym_xor] = ACTIONS(7283), - [anon_sym_bitand] = ACTIONS(7283), - [anon_sym_not_eq] = ACTIONS(7283), - [anon_sym_DASH_DASH] = ACTIONS(7285), - [anon_sym_PLUS_PLUS] = ACTIONS(7285), - [anon_sym_DOT] = ACTIONS(7283), - [anon_sym_DOT_STAR] = ACTIONS(7285), - [anon_sym_DASH_GT] = ACTIONS(7285), + [STATE(2080)] = { + [sym_attribute_specifier] = STATE(2316), + [sym_attribute_declaration] = STATE(4713), + [sym_type_qualifier] = STATE(2459), + [sym_alignas_qualifier] = STATE(2727), + [sym_gnu_asm_expression] = STATE(9134), + [sym_virtual_specifier] = STATE(4778), + [sym_ref_qualifier] = STATE(3656), + [sym__function_attributes_start] = STATE(3569), + [sym__function_exception_specification] = STATE(4046), + [sym__function_attributes_end] = STATE(5949), + [sym__function_postfix] = STATE(5415), + [sym_trailing_return_type] = STATE(6111), + [sym_noexcept] = STATE(4046), + [sym_throw_specifier] = STATE(4046), + [sym_requires_clause] = STATE(5415), + [aux_sym_type_definition_repeat1] = STATE(2316), + [aux_sym__type_definition_type_repeat1] = STATE(2459), + [aux_sym_attributed_declarator_repeat1] = STATE(4713), + [aux_sym__function_postfix_repeat1] = STATE(4778), + [sym_identifier] = ACTIONS(6479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), + [anon_sym_COMMA] = ACTIONS(6481), + [aux_sym_preproc_if_token2] = ACTIONS(6481), + [aux_sym_preproc_else_token1] = ACTIONS(6481), + [aux_sym_preproc_elif_token1] = ACTIONS(6479), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6481), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_PLUS] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6481), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_PERCENT] = ACTIONS(6481), + [anon_sym_PIPE_PIPE] = ACTIONS(6481), + [anon_sym_AMP_AMP] = ACTIONS(7168), + [anon_sym_PIPE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6481), + [anon_sym_AMP] = ACTIONS(7171), + [anon_sym_EQ_EQ] = ACTIONS(6481), + [anon_sym_BANG_EQ] = ACTIONS(6481), + [anon_sym_GT] = ACTIONS(6479), + [anon_sym_GT_EQ] = ACTIONS(6481), + [anon_sym_LT_EQ] = ACTIONS(6479), + [anon_sym_LT] = ACTIONS(6479), + [anon_sym_LT_LT] = ACTIONS(6481), + [anon_sym_GT_GT] = ACTIONS(6481), + [anon_sym___extension__] = ACTIONS(7182), + [anon_sym___attribute__] = ACTIONS(7178), + [anon_sym___attribute] = ACTIONS(7178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(7182), + [anon_sym_constexpr] = ACTIONS(7182), + [anon_sym_volatile] = ACTIONS(7182), + [anon_sym_restrict] = ACTIONS(7182), + [anon_sym___restrict__] = ACTIONS(7182), + [anon_sym__Atomic] = ACTIONS(7182), + [anon_sym__Noreturn] = ACTIONS(7182), + [anon_sym_noreturn] = ACTIONS(7182), + [anon_sym__Nonnull] = ACTIONS(7182), + [anon_sym_mutable] = ACTIONS(7182), + [anon_sym_constinit] = ACTIONS(7182), + [anon_sym_consteval] = ACTIONS(7182), + [anon_sym_alignas] = ACTIONS(7268), + [anon_sym__Alignas] = ACTIONS(7268), + [anon_sym_QMARK] = ACTIONS(6481), + [anon_sym_LT_EQ_GT] = ACTIONS(6481), + [anon_sym_or] = ACTIONS(6479), + [anon_sym_and] = ACTIONS(6479), + [anon_sym_bitor] = ACTIONS(6479), + [anon_sym_xor] = ACTIONS(6479), + [anon_sym_bitand] = ACTIONS(6479), + [anon_sym_not_eq] = ACTIONS(6479), + [anon_sym_DASH_DASH] = ACTIONS(6481), + [anon_sym_PLUS_PLUS] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6497), + [anon_sym___asm__] = ACTIONS(6497), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6479), + [anon_sym_DOT_STAR] = ACTIONS(6481), + [anon_sym_DASH_GT] = ACTIONS(7270), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7283), [anon_sym_override] = ACTIONS(7283), - [anon_sym_requires] = ACTIONS(7283), - [anon_sym_COLON_RBRACK] = ACTIONS(7285), + [anon_sym_noexcept] = ACTIONS(7276), + [anon_sym_throw] = ACTIONS(7278), + [anon_sym_requires] = ACTIONS(7285), }, - [STATE(2099)] = { + [STATE(2081)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2082), + [sym_ms_pointer_modifier] = STATE(2068), + [sym__abstract_declarator] = STATE(4804), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2381), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1979), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2381), + [aux_sym_pointer_declarator_repeat1] = STATE(2068), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6861), + [anon_sym_STAR] = ACTIONS(7162), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_PIPE_PIPE] = ACTIONS(6859), + [anon_sym_AMP_AMP] = ACTIONS(7164), + [anon_sym_PIPE] = ACTIONS(6861), + [anon_sym_CARET] = ACTIONS(6861), + [anon_sym_AMP] = ACTIONS(7166), + [anon_sym_EQ_EQ] = ACTIONS(6859), + [anon_sym_BANG_EQ] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6861), + [anon_sym_GT_EQ] = ACTIONS(6859), + [anon_sym_LT_EQ] = ACTIONS(6861), + [anon_sym_LT] = ACTIONS(6861), + [anon_sym_LT_LT] = ACTIONS(6861), + [anon_sym_GT_GT] = ACTIONS(6861), + [anon_sym_SEMI] = ACTIONS(6859), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym___attribute__] = ACTIONS(6859), + [anon_sym___attribute] = ACTIONS(6861), + [sym_ms_restrict_modifier] = ACTIONS(6835), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6851), + [sym_ms_signed_ptr_modifier] = ACTIONS(6851), + [anon_sym__unaligned] = ACTIONS(6853), + [anon_sym___unaligned] = ACTIONS(6853), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(6861), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(6859), + [anon_sym_STAR_EQ] = ACTIONS(6859), + [anon_sym_SLASH_EQ] = ACTIONS(6859), + [anon_sym_PERCENT_EQ] = ACTIONS(6859), + [anon_sym_PLUS_EQ] = ACTIONS(6859), + [anon_sym_DASH_EQ] = ACTIONS(6859), + [anon_sym_LT_LT_EQ] = ACTIONS(6859), + [anon_sym_GT_GT_EQ] = ACTIONS(6859), + [anon_sym_AMP_EQ] = ACTIONS(6859), + [anon_sym_CARET_EQ] = ACTIONS(6859), + [anon_sym_PIPE_EQ] = ACTIONS(6859), + [anon_sym_and_eq] = ACTIONS(6859), + [anon_sym_or_eq] = ACTIONS(6859), + [anon_sym_xor_eq] = ACTIONS(6859), + [anon_sym_LT_EQ_GT] = ACTIONS(6859), + [anon_sym_or] = ACTIONS(6861), + [anon_sym_and] = ACTIONS(6861), + [anon_sym_bitor] = ACTIONS(6859), + [anon_sym_xor] = ACTIONS(6861), + [anon_sym_bitand] = ACTIONS(6859), + [anon_sym_not_eq] = ACTIONS(6859), + [anon_sym_DASH_DASH] = ACTIONS(6859), + [anon_sym_PLUS_PLUS] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6861), + [anon_sym_DOT_STAR] = ACTIONS(6859), + [anon_sym_DASH_GT] = ACTIONS(6859), + [sym_comment] = ACTIONS(3), + }, + [STATE(2082)] = { [sym_identifier] = ACTIONS(7287), [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), [anon_sym_COMMA] = ACTIONS(7289), @@ -310531,7 +321151,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute] = ACTIONS(7287), [anon_sym_COLON] = ACTIONS(7287), [anon_sym_RBRACK_RBRACK] = ACTIONS(7289), - [anon_sym_LBRACE] = ACTIONS(7289), + [sym_ms_restrict_modifier] = ACTIONS(7287), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7287), + [sym_ms_signed_ptr_modifier] = ACTIONS(7287), + [anon_sym__unaligned] = ACTIONS(7287), + [anon_sym___unaligned] = ACTIONS(7287), [anon_sym_RBRACE] = ACTIONS(7289), [anon_sym_LBRACK] = ACTIONS(7289), [anon_sym_EQ] = ACTIONS(7287), @@ -310581,7 +321205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(7287), [anon_sym_COLON_RBRACK] = ACTIONS(7289), }, - [STATE(2100)] = { + [STATE(2083)] = { [sym_identifier] = ACTIONS(7291), [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), [anon_sym_COMMA] = ACTIONS(7293), @@ -310615,6 +321239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(7291), [anon_sym___attribute] = ACTIONS(7291), [anon_sym_COLON] = ACTIONS(7291), + [anon_sym_COLON_COLON] = ACTIONS(7227), [anon_sym_RBRACK_RBRACK] = ACTIONS(7293), [anon_sym_LBRACE] = ACTIONS(7293), [anon_sym_RBRACE] = ACTIONS(7293), @@ -310661,918 +321286,1569 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7293), [anon_sym_DASH_GT] = ACTIONS(7293), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7291), + [anon_sym_decltype] = ACTIONS(7291), [anon_sym_final] = ACTIONS(7291), [anon_sym_override] = ACTIONS(7291), [anon_sym_requires] = ACTIONS(7291), [anon_sym_COLON_RBRACK] = ACTIONS(7293), }, - [STATE(2101)] = { - [sym_identifier] = ACTIONS(7295), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7297), - [anon_sym_COMMA] = ACTIONS(7297), - [anon_sym_RPAREN] = ACTIONS(7297), - [aux_sym_preproc_if_token2] = ACTIONS(7297), - [aux_sym_preproc_else_token1] = ACTIONS(7297), - [aux_sym_preproc_elif_token1] = ACTIONS(7295), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7297), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7297), - [anon_sym_LPAREN2] = ACTIONS(7297), - [anon_sym_DASH] = ACTIONS(7295), - [anon_sym_PLUS] = ACTIONS(7295), + [STATE(2084)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2618), + [sym_ms_pointer_modifier] = STATE(2085), + [sym__abstract_declarator] = STATE(5050), + [sym_abstract_parenthesized_declarator] = STATE(4825), + [sym_abstract_pointer_declarator] = STATE(4825), + [sym_abstract_function_declarator] = STATE(4825), + [sym_abstract_array_declarator] = STATE(4825), + [sym_type_qualifier] = STATE(2395), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1974), + [sym_abstract_reference_declarator] = STATE(4825), + [sym__function_declarator_seq] = STATE(4934), + [aux_sym__type_definition_type_repeat1] = STATE(2395), + [aux_sym_pointer_declarator_repeat1] = STATE(2085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_RPAREN] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(7006), + [anon_sym_DASH] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6861), [anon_sym_STAR] = ACTIONS(7295), - [anon_sym_SLASH] = ACTIONS(7295), - [anon_sym_PERCENT] = ACTIONS(7295), - [anon_sym_PIPE_PIPE] = ACTIONS(7297), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_PIPE_PIPE] = ACTIONS(6859), [anon_sym_AMP_AMP] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7295), - [anon_sym_CARET] = ACTIONS(7295), - [anon_sym_AMP] = ACTIONS(7295), - [anon_sym_EQ_EQ] = ACTIONS(7297), - [anon_sym_BANG_EQ] = ACTIONS(7297), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_GT_EQ] = ACTIONS(7297), - [anon_sym_LT_EQ] = ACTIONS(7295), - [anon_sym_LT] = ACTIONS(7295), - [anon_sym_LT_LT] = ACTIONS(7295), - [anon_sym_GT_GT] = ACTIONS(7295), - [anon_sym_SEMI] = ACTIONS(7297), - [anon_sym___extension__] = ACTIONS(7295), - [anon_sym___attribute__] = ACTIONS(7295), - [anon_sym___attribute] = ACTIONS(7295), - [anon_sym_COLON] = ACTIONS(7295), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7297), - [anon_sym_LBRACE] = ACTIONS(7297), - [anon_sym_RBRACE] = ACTIONS(7297), - [anon_sym_LBRACK] = ACTIONS(7297), - [anon_sym_EQ] = ACTIONS(7295), - [anon_sym_const] = ACTIONS(7295), - [anon_sym_constexpr] = ACTIONS(7295), - [anon_sym_volatile] = ACTIONS(7295), - [anon_sym_restrict] = ACTIONS(7295), - [anon_sym___restrict__] = ACTIONS(7295), - [anon_sym__Atomic] = ACTIONS(7295), - [anon_sym__Noreturn] = ACTIONS(7295), - [anon_sym_noreturn] = ACTIONS(7295), - [anon_sym__Nonnull] = ACTIONS(7295), - [anon_sym_mutable] = ACTIONS(7295), - [anon_sym_constinit] = ACTIONS(7295), - [anon_sym_consteval] = ACTIONS(7295), - [anon_sym_alignas] = ACTIONS(7295), - [anon_sym__Alignas] = ACTIONS(7295), - [anon_sym_QMARK] = ACTIONS(7297), - [anon_sym_STAR_EQ] = ACTIONS(7297), - [anon_sym_SLASH_EQ] = ACTIONS(7297), - [anon_sym_PERCENT_EQ] = ACTIONS(7297), - [anon_sym_PLUS_EQ] = ACTIONS(7297), - [anon_sym_DASH_EQ] = ACTIONS(7297), - [anon_sym_LT_LT_EQ] = ACTIONS(7297), - [anon_sym_GT_GT_EQ] = ACTIONS(7297), - [anon_sym_AMP_EQ] = ACTIONS(7297), - [anon_sym_CARET_EQ] = ACTIONS(7297), - [anon_sym_PIPE_EQ] = ACTIONS(7297), - [anon_sym_and_eq] = ACTIONS(7295), - [anon_sym_or_eq] = ACTIONS(7295), - [anon_sym_xor_eq] = ACTIONS(7295), - [anon_sym_LT_EQ_GT] = ACTIONS(7297), - [anon_sym_or] = ACTIONS(7295), - [anon_sym_and] = ACTIONS(7295), - [anon_sym_bitor] = ACTIONS(7295), - [anon_sym_xor] = ACTIONS(7295), - [anon_sym_bitand] = ACTIONS(7295), - [anon_sym_not_eq] = ACTIONS(7295), - [anon_sym_DASH_DASH] = ACTIONS(7297), - [anon_sym_PLUS_PLUS] = ACTIONS(7297), - [anon_sym_DOT] = ACTIONS(7295), - [anon_sym_DOT_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(7297), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7295), - [anon_sym_override] = ACTIONS(7295), - [anon_sym_requires] = ACTIONS(7295), - [anon_sym_COLON_RBRACK] = ACTIONS(7297), + [anon_sym_PIPE] = ACTIONS(6861), + [anon_sym_CARET] = ACTIONS(6861), + [anon_sym_AMP] = ACTIONS(7299), + [anon_sym_EQ_EQ] = ACTIONS(6859), + [anon_sym_BANG_EQ] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6861), + [anon_sym_GT_EQ] = ACTIONS(6859), + [anon_sym_LT_EQ] = ACTIONS(6861), + [anon_sym_LT] = ACTIONS(6861), + [anon_sym_LT_LT] = ACTIONS(6861), + [anon_sym_GT_GT] = ACTIONS(6861), + [anon_sym___extension__] = ACTIONS(7014), + [sym_ms_restrict_modifier] = ACTIONS(7016), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7018), + [sym_ms_signed_ptr_modifier] = ACTIONS(7018), + [anon_sym__unaligned] = ACTIONS(7020), + [anon_sym___unaligned] = ACTIONS(7020), + [anon_sym_LBRACK] = ACTIONS(7022), + [anon_sym_EQ] = ACTIONS(6861), + [anon_sym_const] = ACTIONS(7024), + [anon_sym_constexpr] = ACTIONS(7014), + [anon_sym_volatile] = ACTIONS(7014), + [anon_sym_restrict] = ACTIONS(7014), + [anon_sym___restrict__] = ACTIONS(7014), + [anon_sym__Atomic] = ACTIONS(7014), + [anon_sym__Noreturn] = ACTIONS(7014), + [anon_sym_noreturn] = ACTIONS(7014), + [anon_sym__Nonnull] = ACTIONS(7014), + [anon_sym_mutable] = ACTIONS(7014), + [anon_sym_constinit] = ACTIONS(7014), + [anon_sym_consteval] = ACTIONS(7014), + [anon_sym_alignas] = ACTIONS(7026), + [anon_sym__Alignas] = ACTIONS(7026), + [anon_sym_QMARK] = ACTIONS(6859), + [anon_sym_STAR_EQ] = ACTIONS(6859), + [anon_sym_SLASH_EQ] = ACTIONS(6859), + [anon_sym_PERCENT_EQ] = ACTIONS(6859), + [anon_sym_PLUS_EQ] = ACTIONS(6859), + [anon_sym_DASH_EQ] = ACTIONS(6859), + [anon_sym_LT_LT_EQ] = ACTIONS(6859), + [anon_sym_GT_GT_EQ] = ACTIONS(6859), + [anon_sym_AMP_EQ] = ACTIONS(6859), + [anon_sym_CARET_EQ] = ACTIONS(6859), + [anon_sym_PIPE_EQ] = ACTIONS(6859), + [anon_sym_and_eq] = ACTIONS(6859), + [anon_sym_or_eq] = ACTIONS(6859), + [anon_sym_xor_eq] = ACTIONS(6859), + [anon_sym_LT_EQ_GT] = ACTIONS(6859), + [anon_sym_or] = ACTIONS(6861), + [anon_sym_and] = ACTIONS(6861), + [anon_sym_bitor] = ACTIONS(6859), + [anon_sym_xor] = ACTIONS(6861), + [anon_sym_bitand] = ACTIONS(6859), + [anon_sym_not_eq] = ACTIONS(6859), + [anon_sym_DASH_DASH] = ACTIONS(6859), + [anon_sym_PLUS_PLUS] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6861), + [anon_sym_DOT_STAR] = ACTIONS(6859), + [anon_sym_DASH_GT] = ACTIONS(6861), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6859), }, - [STATE(2102)] = { - [sym_identifier] = ACTIONS(7299), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7301), - [anon_sym_COMMA] = ACTIONS(7301), - [anon_sym_RPAREN] = ACTIONS(7301), - [aux_sym_preproc_if_token2] = ACTIONS(7301), - [aux_sym_preproc_else_token1] = ACTIONS(7301), - [aux_sym_preproc_elif_token1] = ACTIONS(7299), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7301), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7301), - [anon_sym_LPAREN2] = ACTIONS(7301), - [anon_sym_DASH] = ACTIONS(7299), - [anon_sym_PLUS] = ACTIONS(7299), - [anon_sym_STAR] = ACTIONS(7299), - [anon_sym_SLASH] = ACTIONS(7299), - [anon_sym_PERCENT] = ACTIONS(7299), - [anon_sym_PIPE_PIPE] = ACTIONS(7301), - [anon_sym_AMP_AMP] = ACTIONS(7301), - [anon_sym_PIPE] = ACTIONS(7299), - [anon_sym_CARET] = ACTIONS(7299), + [STATE(2085)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2618), + [sym_ms_pointer_modifier] = STATE(2429), + [sym__abstract_declarator] = STATE(5151), + [sym_abstract_parenthesized_declarator] = STATE(4825), + [sym_abstract_pointer_declarator] = STATE(4825), + [sym_abstract_function_declarator] = STATE(4825), + [sym_abstract_array_declarator] = STATE(4825), + [sym_type_qualifier] = STATE(2417), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1974), + [sym_abstract_reference_declarator] = STATE(4825), + [sym__function_declarator_seq] = STATE(4934), + [aux_sym__type_definition_type_repeat1] = STATE(2417), + [aux_sym_pointer_declarator_repeat1] = STATE(2429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(7006), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(7297), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), [anon_sym_AMP] = ACTIONS(7299), - [anon_sym_EQ_EQ] = ACTIONS(7301), - [anon_sym_BANG_EQ] = ACTIONS(7301), - [anon_sym_GT] = ACTIONS(7299), - [anon_sym_GT_EQ] = ACTIONS(7301), - [anon_sym_LT_EQ] = ACTIONS(7299), - [anon_sym_LT] = ACTIONS(7299), - [anon_sym_LT_LT] = ACTIONS(7299), - [anon_sym_GT_GT] = ACTIONS(7299), - [anon_sym_SEMI] = ACTIONS(7301), - [anon_sym___extension__] = ACTIONS(7299), - [anon_sym___attribute__] = ACTIONS(7299), - [anon_sym___attribute] = ACTIONS(7299), - [anon_sym_COLON] = ACTIONS(7299), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7301), - [anon_sym_LBRACE] = ACTIONS(7301), - [anon_sym_RBRACE] = ACTIONS(7301), - [anon_sym_LBRACK] = ACTIONS(7301), - [anon_sym_EQ] = ACTIONS(7299), - [anon_sym_const] = ACTIONS(7299), - [anon_sym_constexpr] = ACTIONS(7299), - [anon_sym_volatile] = ACTIONS(7299), - [anon_sym_restrict] = ACTIONS(7299), - [anon_sym___restrict__] = ACTIONS(7299), - [anon_sym__Atomic] = ACTIONS(7299), - [anon_sym__Noreturn] = ACTIONS(7299), - [anon_sym_noreturn] = ACTIONS(7299), - [anon_sym__Nonnull] = ACTIONS(7299), - [anon_sym_mutable] = ACTIONS(7299), - [anon_sym_constinit] = ACTIONS(7299), - [anon_sym_consteval] = ACTIONS(7299), - [anon_sym_alignas] = ACTIONS(7299), - [anon_sym__Alignas] = ACTIONS(7299), - [anon_sym_QMARK] = ACTIONS(7301), - [anon_sym_STAR_EQ] = ACTIONS(7301), - [anon_sym_SLASH_EQ] = ACTIONS(7301), - [anon_sym_PERCENT_EQ] = ACTIONS(7301), - [anon_sym_PLUS_EQ] = ACTIONS(7301), - [anon_sym_DASH_EQ] = ACTIONS(7301), - [anon_sym_LT_LT_EQ] = ACTIONS(7301), - [anon_sym_GT_GT_EQ] = ACTIONS(7301), - [anon_sym_AMP_EQ] = ACTIONS(7301), - [anon_sym_CARET_EQ] = ACTIONS(7301), - [anon_sym_PIPE_EQ] = ACTIONS(7301), - [anon_sym_and_eq] = ACTIONS(7299), - [anon_sym_or_eq] = ACTIONS(7299), - [anon_sym_xor_eq] = ACTIONS(7299), - [anon_sym_LT_EQ_GT] = ACTIONS(7301), - [anon_sym_or] = ACTIONS(7299), - [anon_sym_and] = ACTIONS(7299), - [anon_sym_bitor] = ACTIONS(7299), - [anon_sym_xor] = ACTIONS(7299), - [anon_sym_bitand] = ACTIONS(7299), - [anon_sym_not_eq] = ACTIONS(7299), - [anon_sym_DASH_DASH] = ACTIONS(7301), - [anon_sym_PLUS_PLUS] = ACTIONS(7301), - [anon_sym_DOT] = ACTIONS(7299), - [anon_sym_DOT_STAR] = ACTIONS(7301), - [anon_sym_DASH_GT] = ACTIONS(7301), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7299), - [anon_sym_override] = ACTIONS(7299), - [anon_sym_requires] = ACTIONS(7299), - [anon_sym_COLON_RBRACK] = ACTIONS(7301), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(7014), + [sym_ms_restrict_modifier] = ACTIONS(7016), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7018), + [sym_ms_signed_ptr_modifier] = ACTIONS(7018), + [anon_sym__unaligned] = ACTIONS(7020), + [anon_sym___unaligned] = ACTIONS(7020), + [anon_sym_LBRACK] = ACTIONS(7022), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(7024), + [anon_sym_constexpr] = ACTIONS(7014), + [anon_sym_volatile] = ACTIONS(7014), + [anon_sym_restrict] = ACTIONS(7014), + [anon_sym___restrict__] = ACTIONS(7014), + [anon_sym__Atomic] = ACTIONS(7014), + [anon_sym__Noreturn] = ACTIONS(7014), + [anon_sym_noreturn] = ACTIONS(7014), + [anon_sym__Nonnull] = ACTIONS(7014), + [anon_sym_mutable] = ACTIONS(7014), + [anon_sym_constinit] = ACTIONS(7014), + [anon_sym_consteval] = ACTIONS(7014), + [anon_sym_alignas] = ACTIONS(7026), + [anon_sym__Alignas] = ACTIONS(7026), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6823), + [anon_sym_or_eq] = ACTIONS(6823), + [anon_sym_xor_eq] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6821), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6823), }, - [STATE(2103)] = { - [sym_identifier] = ACTIONS(7287), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), - [anon_sym_COMMA] = ACTIONS(7289), - [anon_sym_RPAREN] = ACTIONS(7289), - [aux_sym_preproc_if_token2] = ACTIONS(7289), - [aux_sym_preproc_else_token1] = ACTIONS(7289), - [aux_sym_preproc_elif_token1] = ACTIONS(7287), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7289), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7289), - [anon_sym_LPAREN2] = ACTIONS(7289), - [anon_sym_DASH] = ACTIONS(7287), - [anon_sym_PLUS] = ACTIONS(7287), - [anon_sym_STAR] = ACTIONS(7287), - [anon_sym_SLASH] = ACTIONS(7287), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_PIPE_PIPE] = ACTIONS(7289), - [anon_sym_AMP_AMP] = ACTIONS(7289), - [anon_sym_PIPE] = ACTIONS(7287), - [anon_sym_CARET] = ACTIONS(7287), - [anon_sym_AMP] = ACTIONS(7287), - [anon_sym_EQ_EQ] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7289), - [anon_sym_GT] = ACTIONS(7287), - [anon_sym_GT_EQ] = ACTIONS(7289), - [anon_sym_LT_EQ] = ACTIONS(7287), - [anon_sym_LT] = ACTIONS(7287), - [anon_sym_LT_LT] = ACTIONS(7287), - [anon_sym_GT_GT] = ACTIONS(7287), - [anon_sym_SEMI] = ACTIONS(7289), - [anon_sym___extension__] = ACTIONS(7287), - [anon_sym___attribute__] = ACTIONS(7287), - [anon_sym___attribute] = ACTIONS(7287), - [anon_sym_COLON] = ACTIONS(7287), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7289), - [anon_sym_LBRACE] = ACTIONS(7289), - [anon_sym_RBRACE] = ACTIONS(7289), - [anon_sym_LBRACK] = ACTIONS(7289), - [anon_sym_EQ] = ACTIONS(7287), - [anon_sym_const] = ACTIONS(7287), - [anon_sym_constexpr] = ACTIONS(7287), - [anon_sym_volatile] = ACTIONS(7287), - [anon_sym_restrict] = ACTIONS(7287), - [anon_sym___restrict__] = ACTIONS(7287), - [anon_sym__Atomic] = ACTIONS(7287), - [anon_sym__Noreturn] = ACTIONS(7287), - [anon_sym_noreturn] = ACTIONS(7287), - [anon_sym__Nonnull] = ACTIONS(7287), - [anon_sym_mutable] = ACTIONS(7287), - [anon_sym_constinit] = ACTIONS(7287), - [anon_sym_consteval] = ACTIONS(7287), - [anon_sym_alignas] = ACTIONS(7287), - [anon_sym__Alignas] = ACTIONS(7287), - [anon_sym_QMARK] = ACTIONS(7289), - [anon_sym_STAR_EQ] = ACTIONS(7289), - [anon_sym_SLASH_EQ] = ACTIONS(7289), - [anon_sym_PERCENT_EQ] = ACTIONS(7289), - [anon_sym_PLUS_EQ] = ACTIONS(7289), - [anon_sym_DASH_EQ] = ACTIONS(7289), - [anon_sym_LT_LT_EQ] = ACTIONS(7289), - [anon_sym_GT_GT_EQ] = ACTIONS(7289), - [anon_sym_AMP_EQ] = ACTIONS(7289), - [anon_sym_CARET_EQ] = ACTIONS(7289), - [anon_sym_PIPE_EQ] = ACTIONS(7289), - [anon_sym_and_eq] = ACTIONS(7287), - [anon_sym_or_eq] = ACTIONS(7287), - [anon_sym_xor_eq] = ACTIONS(7287), - [anon_sym_LT_EQ_GT] = ACTIONS(7289), - [anon_sym_or] = ACTIONS(7287), - [anon_sym_and] = ACTIONS(7287), - [anon_sym_bitor] = ACTIONS(7287), - [anon_sym_xor] = ACTIONS(7287), - [anon_sym_bitand] = ACTIONS(7287), - [anon_sym_not_eq] = ACTIONS(7287), - [anon_sym_DASH_DASH] = ACTIONS(7289), - [anon_sym_PLUS_PLUS] = ACTIONS(7289), - [anon_sym_DOT] = ACTIONS(7287), - [anon_sym_DOT_STAR] = ACTIONS(7289), - [anon_sym_DASH_GT] = ACTIONS(7289), + [STATE(2086)] = { + [sym_identifier] = ACTIONS(7301), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7303), + [anon_sym_COMMA] = ACTIONS(7303), + [anon_sym_RPAREN] = ACTIONS(7303), + [aux_sym_preproc_if_token2] = ACTIONS(7303), + [aux_sym_preproc_else_token1] = ACTIONS(7303), + [aux_sym_preproc_elif_token1] = ACTIONS(7301), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7303), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7303), + [anon_sym_LPAREN2] = ACTIONS(7303), + [anon_sym_DASH] = ACTIONS(7301), + [anon_sym_PLUS] = ACTIONS(7301), + [anon_sym_STAR] = ACTIONS(7301), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7301), + [anon_sym_PIPE_PIPE] = ACTIONS(7303), + [anon_sym_AMP_AMP] = ACTIONS(7303), + [anon_sym_PIPE] = ACTIONS(7301), + [anon_sym_CARET] = ACTIONS(7301), + [anon_sym_AMP] = ACTIONS(7301), + [anon_sym_EQ_EQ] = ACTIONS(7303), + [anon_sym_BANG_EQ] = ACTIONS(7303), + [anon_sym_GT] = ACTIONS(7301), + [anon_sym_GT_EQ] = ACTIONS(7303), + [anon_sym_LT_EQ] = ACTIONS(7301), + [anon_sym_LT] = ACTIONS(7301), + [anon_sym_LT_LT] = ACTIONS(7301), + [anon_sym_GT_GT] = ACTIONS(7301), + [anon_sym_SEMI] = ACTIONS(7303), + [anon_sym___extension__] = ACTIONS(7301), + [anon_sym___attribute__] = ACTIONS(7301), + [anon_sym___attribute] = ACTIONS(7301), + [anon_sym_COLON] = ACTIONS(7301), + [anon_sym_COLON_COLON] = ACTIONS(7303), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7303), + [anon_sym_LBRACE] = ACTIONS(7303), + [anon_sym_RBRACE] = ACTIONS(7303), + [anon_sym_LBRACK] = ACTIONS(7303), + [anon_sym_EQ] = ACTIONS(7301), + [anon_sym_const] = ACTIONS(7301), + [anon_sym_constexpr] = ACTIONS(7301), + [anon_sym_volatile] = ACTIONS(7301), + [anon_sym_restrict] = ACTIONS(7301), + [anon_sym___restrict__] = ACTIONS(7301), + [anon_sym__Atomic] = ACTIONS(7301), + [anon_sym__Noreturn] = ACTIONS(7301), + [anon_sym_noreturn] = ACTIONS(7301), + [anon_sym__Nonnull] = ACTIONS(7301), + [anon_sym_mutable] = ACTIONS(7301), + [anon_sym_constinit] = ACTIONS(7301), + [anon_sym_consteval] = ACTIONS(7301), + [anon_sym_alignas] = ACTIONS(7301), + [anon_sym__Alignas] = ACTIONS(7301), + [anon_sym_QMARK] = ACTIONS(7303), + [anon_sym_STAR_EQ] = ACTIONS(7303), + [anon_sym_SLASH_EQ] = ACTIONS(7303), + [anon_sym_PERCENT_EQ] = ACTIONS(7303), + [anon_sym_PLUS_EQ] = ACTIONS(7303), + [anon_sym_DASH_EQ] = ACTIONS(7303), + [anon_sym_LT_LT_EQ] = ACTIONS(7303), + [anon_sym_GT_GT_EQ] = ACTIONS(7303), + [anon_sym_AMP_EQ] = ACTIONS(7303), + [anon_sym_CARET_EQ] = ACTIONS(7303), + [anon_sym_PIPE_EQ] = ACTIONS(7303), + [anon_sym_and_eq] = ACTIONS(7301), + [anon_sym_or_eq] = ACTIONS(7301), + [anon_sym_xor_eq] = ACTIONS(7301), + [anon_sym_LT_EQ_GT] = ACTIONS(7303), + [anon_sym_or] = ACTIONS(7301), + [anon_sym_and] = ACTIONS(7301), + [anon_sym_bitor] = ACTIONS(7301), + [anon_sym_xor] = ACTIONS(7301), + [anon_sym_bitand] = ACTIONS(7301), + [anon_sym_not_eq] = ACTIONS(7301), + [anon_sym_DASH_DASH] = ACTIONS(7303), + [anon_sym_PLUS_PLUS] = ACTIONS(7303), + [anon_sym_DOT] = ACTIONS(7301), + [anon_sym_DOT_STAR] = ACTIONS(7303), + [anon_sym_DASH_GT] = ACTIONS(7303), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7287), - [anon_sym_override] = ACTIONS(7287), - [anon_sym_requires] = ACTIONS(7287), - [anon_sym_COLON_RBRACK] = ACTIONS(7289), + [sym_auto] = ACTIONS(7301), + [anon_sym_decltype] = ACTIONS(7301), + [anon_sym_final] = ACTIONS(7301), + [anon_sym_override] = ACTIONS(7301), + [anon_sym_requires] = ACTIONS(7301), + [anon_sym_COLON_RBRACK] = ACTIONS(7303), }, - [STATE(2104)] = { - [sym_identifier] = ACTIONS(7303), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7305), - [anon_sym_COMMA] = ACTIONS(7305), - [anon_sym_RPAREN] = ACTIONS(7305), - [aux_sym_preproc_if_token2] = ACTIONS(7305), - [aux_sym_preproc_else_token1] = ACTIONS(7305), - [aux_sym_preproc_elif_token1] = ACTIONS(7303), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7305), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7305), - [anon_sym_LPAREN2] = ACTIONS(7305), - [anon_sym_DASH] = ACTIONS(7303), - [anon_sym_PLUS] = ACTIONS(7303), - [anon_sym_STAR] = ACTIONS(7303), - [anon_sym_SLASH] = ACTIONS(7303), - [anon_sym_PERCENT] = ACTIONS(7303), - [anon_sym_PIPE_PIPE] = ACTIONS(7305), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE] = ACTIONS(7303), - [anon_sym_CARET] = ACTIONS(7303), - [anon_sym_AMP] = ACTIONS(7303), - [anon_sym_EQ_EQ] = ACTIONS(7305), - [anon_sym_BANG_EQ] = ACTIONS(7305), - [anon_sym_GT] = ACTIONS(7303), - [anon_sym_GT_EQ] = ACTIONS(7305), - [anon_sym_LT_EQ] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(7303), - [anon_sym_LT_LT] = ACTIONS(7303), - [anon_sym_GT_GT] = ACTIONS(7303), - [anon_sym_SEMI] = ACTIONS(7305), - [anon_sym___extension__] = ACTIONS(7303), - [anon_sym___attribute__] = ACTIONS(7303), - [anon_sym___attribute] = ACTIONS(7303), - [anon_sym_COLON] = ACTIONS(7303), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7305), - [anon_sym_LBRACE] = ACTIONS(7305), - [anon_sym_RBRACE] = ACTIONS(7305), - [anon_sym_LBRACK] = ACTIONS(7305), - [anon_sym_EQ] = ACTIONS(7303), - [anon_sym_const] = ACTIONS(7303), - [anon_sym_constexpr] = ACTIONS(7303), - [anon_sym_volatile] = ACTIONS(7303), - [anon_sym_restrict] = ACTIONS(7303), - [anon_sym___restrict__] = ACTIONS(7303), - [anon_sym__Atomic] = ACTIONS(7303), - [anon_sym__Noreturn] = ACTIONS(7303), - [anon_sym_noreturn] = ACTIONS(7303), - [anon_sym__Nonnull] = ACTIONS(7303), - [anon_sym_mutable] = ACTIONS(7303), - [anon_sym_constinit] = ACTIONS(7303), - [anon_sym_consteval] = ACTIONS(7303), - [anon_sym_alignas] = ACTIONS(7303), - [anon_sym__Alignas] = ACTIONS(7303), - [anon_sym_QMARK] = ACTIONS(7305), - [anon_sym_STAR_EQ] = ACTIONS(7305), - [anon_sym_SLASH_EQ] = ACTIONS(7305), - [anon_sym_PERCENT_EQ] = ACTIONS(7305), - [anon_sym_PLUS_EQ] = ACTIONS(7305), - [anon_sym_DASH_EQ] = ACTIONS(7305), - [anon_sym_LT_LT_EQ] = ACTIONS(7305), - [anon_sym_GT_GT_EQ] = ACTIONS(7305), - [anon_sym_AMP_EQ] = ACTIONS(7305), - [anon_sym_CARET_EQ] = ACTIONS(7305), - [anon_sym_PIPE_EQ] = ACTIONS(7305), - [anon_sym_and_eq] = ACTIONS(7303), - [anon_sym_or_eq] = ACTIONS(7303), - [anon_sym_xor_eq] = ACTIONS(7303), - [anon_sym_LT_EQ_GT] = ACTIONS(7305), - [anon_sym_or] = ACTIONS(7303), - [anon_sym_and] = ACTIONS(7303), - [anon_sym_bitor] = ACTIONS(7303), - [anon_sym_xor] = ACTIONS(7303), - [anon_sym_bitand] = ACTIONS(7303), - [anon_sym_not_eq] = ACTIONS(7303), - [anon_sym_DASH_DASH] = ACTIONS(7305), - [anon_sym_PLUS_PLUS] = ACTIONS(7305), - [anon_sym_DOT] = ACTIONS(7303), - [anon_sym_DOT_STAR] = ACTIONS(7305), - [anon_sym_DASH_GT] = ACTIONS(7305), + [STATE(2087)] = { + [sym_decltype_auto] = STATE(2238), + [sym_identifier] = ACTIONS(7223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [aux_sym_preproc_if_token2] = ACTIONS(7225), + [aux_sym_preproc_else_token1] = ACTIONS(7225), + [aux_sym_preproc_elif_token1] = ACTIONS(7223), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym_SEMI] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym___attribute__] = ACTIONS(7223), + [anon_sym___attribute] = ACTIONS(7223), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_RBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7223), + [anon_sym__Alignas] = ACTIONS(7223), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7223), + [anon_sym_or_eq] = ACTIONS(7223), + [anon_sym_xor_eq] = ACTIONS(7223), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7223), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7223), + [anon_sym_not_eq] = ACTIONS(7223), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7303), - [anon_sym_override] = ACTIONS(7303), - [anon_sym_requires] = ACTIONS(7303), - [anon_sym_COLON_RBRACK] = ACTIONS(7305), + [sym_auto] = ACTIONS(7229), + [anon_sym_decltype] = ACTIONS(6819), + [anon_sym_final] = ACTIONS(7223), + [anon_sym_override] = ACTIONS(7223), + [anon_sym_requires] = ACTIONS(7223), + [anon_sym_COLON_RBRACK] = ACTIONS(7225), }, - [STATE(2105)] = { - [sym_type_qualifier] = STATE(2163), - [sym_alignas_qualifier] = STATE(2278), - [aux_sym__type_definition_type_repeat1] = STATE(2163), - [aux_sym_sized_type_specifier_repeat1] = STATE(2326), - [sym_identifier] = ACTIONS(7307), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), - [anon_sym_COMMA] = ACTIONS(6884), - [anon_sym_RPAREN] = ACTIONS(6884), - [anon_sym_LPAREN2] = ACTIONS(6884), - [anon_sym_DASH] = ACTIONS(6886), - [anon_sym_PLUS] = ACTIONS(6886), - [anon_sym_STAR] = ACTIONS(6886), - [anon_sym_SLASH] = ACTIONS(6886), - [anon_sym_PERCENT] = ACTIONS(6886), - [anon_sym_PIPE_PIPE] = ACTIONS(6884), - [anon_sym_AMP_AMP] = ACTIONS(6884), - [anon_sym_PIPE] = ACTIONS(6886), - [anon_sym_CARET] = ACTIONS(6886), - [anon_sym_AMP] = ACTIONS(6886), - [anon_sym_EQ_EQ] = ACTIONS(6884), - [anon_sym_BANG_EQ] = ACTIONS(6884), - [anon_sym_GT] = ACTIONS(6886), - [anon_sym_GT_EQ] = ACTIONS(6884), - [anon_sym_LT_EQ] = ACTIONS(6886), - [anon_sym_LT] = ACTIONS(6886), - [anon_sym_LT_LT] = ACTIONS(6886), - [anon_sym_GT_GT] = ACTIONS(6886), - [anon_sym___extension__] = ACTIONS(7309), - [anon_sym___attribute__] = ACTIONS(6886), - [anon_sym___attribute] = ACTIONS(6886), - [anon_sym_LBRACE] = ACTIONS(6884), - [anon_sym_signed] = ACTIONS(7312), - [anon_sym_unsigned] = ACTIONS(7312), - [anon_sym_long] = ACTIONS(7312), - [anon_sym_short] = ACTIONS(7312), - [anon_sym_LBRACK] = ACTIONS(6884), - [anon_sym_EQ] = ACTIONS(6886), - [anon_sym_const] = ACTIONS(7309), - [anon_sym_constexpr] = ACTIONS(7309), - [anon_sym_volatile] = ACTIONS(7309), - [anon_sym_restrict] = ACTIONS(7309), - [anon_sym___restrict__] = ACTIONS(7309), - [anon_sym__Atomic] = ACTIONS(7309), - [anon_sym__Noreturn] = ACTIONS(7309), - [anon_sym_noreturn] = ACTIONS(7309), - [anon_sym__Nonnull] = ACTIONS(7309), - [anon_sym_mutable] = ACTIONS(7309), - [anon_sym_constinit] = ACTIONS(7309), - [anon_sym_consteval] = ACTIONS(7309), - [anon_sym_alignas] = ACTIONS(7314), - [anon_sym__Alignas] = ACTIONS(7314), - [sym_primitive_type] = ACTIONS(7317), - [anon_sym_QMARK] = ACTIONS(6884), - [anon_sym_STAR_EQ] = ACTIONS(6884), - [anon_sym_SLASH_EQ] = ACTIONS(6884), - [anon_sym_PERCENT_EQ] = ACTIONS(6884), - [anon_sym_PLUS_EQ] = ACTIONS(6884), - [anon_sym_DASH_EQ] = ACTIONS(6884), - [anon_sym_LT_LT_EQ] = ACTIONS(6884), - [anon_sym_GT_GT_EQ] = ACTIONS(6884), - [anon_sym_AMP_EQ] = ACTIONS(6884), - [anon_sym_CARET_EQ] = ACTIONS(6884), - [anon_sym_PIPE_EQ] = ACTIONS(6884), - [anon_sym_and_eq] = ACTIONS(6886), - [anon_sym_or_eq] = ACTIONS(6886), - [anon_sym_xor_eq] = ACTIONS(6886), - [anon_sym_LT_EQ_GT] = ACTIONS(6884), - [anon_sym_or] = ACTIONS(6886), - [anon_sym_and] = ACTIONS(6886), - [anon_sym_bitor] = ACTIONS(6886), - [anon_sym_xor] = ACTIONS(6886), - [anon_sym_bitand] = ACTIONS(6886), - [anon_sym_not_eq] = ACTIONS(6886), - [anon_sym_DASH_DASH] = ACTIONS(6884), - [anon_sym_PLUS_PLUS] = ACTIONS(6884), - [anon_sym_DOT] = ACTIONS(6886), - [anon_sym_DOT_STAR] = ACTIONS(6884), - [anon_sym_DASH_GT] = ACTIONS(6886), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6886), - [anon_sym_override] = ACTIONS(6886), - [anon_sym_requires] = ACTIONS(6886), - [anon_sym_DASH_GT_STAR] = ACTIONS(6884), + [STATE(2088)] = { + [sym_identifier] = ACTIONS(6632), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6634), + [anon_sym_COMMA] = ACTIONS(6634), + [anon_sym_RPAREN] = ACTIONS(6634), + [aux_sym_preproc_if_token2] = ACTIONS(6634), + [aux_sym_preproc_else_token1] = ACTIONS(6634), + [aux_sym_preproc_elif_token1] = ACTIONS(6632), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6634), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6634), + [anon_sym_LPAREN2] = ACTIONS(6634), + [anon_sym_DASH] = ACTIONS(6632), + [anon_sym_PLUS] = ACTIONS(6632), + [anon_sym_STAR] = ACTIONS(6632), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_PERCENT] = ACTIONS(6632), + [anon_sym_PIPE_PIPE] = ACTIONS(6634), + [anon_sym_AMP_AMP] = ACTIONS(6634), + [anon_sym_PIPE] = ACTIONS(6632), + [anon_sym_CARET] = ACTIONS(6632), + [anon_sym_AMP] = ACTIONS(6632), + [anon_sym_EQ_EQ] = ACTIONS(6634), + [anon_sym_BANG_EQ] = ACTIONS(6634), + [anon_sym_GT] = ACTIONS(6632), + [anon_sym_GT_EQ] = ACTIONS(6634), + [anon_sym_LT_EQ] = ACTIONS(6632), + [anon_sym_LT] = ACTIONS(6632), + [anon_sym_LT_LT] = ACTIONS(6632), + [anon_sym_GT_GT] = ACTIONS(6632), + [anon_sym_SEMI] = ACTIONS(6634), + [anon_sym___extension__] = ACTIONS(6632), + [anon_sym___attribute__] = ACTIONS(6632), + [anon_sym___attribute] = ACTIONS(6632), + [anon_sym_COLON] = ACTIONS(6632), + [anon_sym_COLON_COLON] = ACTIONS(6634), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6634), + [anon_sym_LBRACE] = ACTIONS(6634), + [anon_sym_RBRACE] = ACTIONS(6634), + [anon_sym_LBRACK] = ACTIONS(6634), + [anon_sym_EQ] = ACTIONS(6632), + [anon_sym_const] = ACTIONS(6632), + [anon_sym_constexpr] = ACTIONS(6632), + [anon_sym_volatile] = ACTIONS(6632), + [anon_sym_restrict] = ACTIONS(6632), + [anon_sym___restrict__] = ACTIONS(6632), + [anon_sym__Atomic] = ACTIONS(6632), + [anon_sym__Noreturn] = ACTIONS(6632), + [anon_sym_noreturn] = ACTIONS(6632), + [anon_sym__Nonnull] = ACTIONS(6632), + [anon_sym_mutable] = ACTIONS(6632), + [anon_sym_constinit] = ACTIONS(6632), + [anon_sym_consteval] = ACTIONS(6632), + [anon_sym_alignas] = ACTIONS(6632), + [anon_sym__Alignas] = ACTIONS(6632), + [anon_sym_QMARK] = ACTIONS(6634), + [anon_sym_STAR_EQ] = ACTIONS(6634), + [anon_sym_SLASH_EQ] = ACTIONS(6634), + [anon_sym_PERCENT_EQ] = ACTIONS(6634), + [anon_sym_PLUS_EQ] = ACTIONS(6634), + [anon_sym_DASH_EQ] = ACTIONS(6634), + [anon_sym_LT_LT_EQ] = ACTIONS(6634), + [anon_sym_GT_GT_EQ] = ACTIONS(6634), + [anon_sym_AMP_EQ] = ACTIONS(6634), + [anon_sym_CARET_EQ] = ACTIONS(6634), + [anon_sym_PIPE_EQ] = ACTIONS(6634), + [anon_sym_and_eq] = ACTIONS(6632), + [anon_sym_or_eq] = ACTIONS(6632), + [anon_sym_xor_eq] = ACTIONS(6632), + [anon_sym_LT_EQ_GT] = ACTIONS(6634), + [anon_sym_or] = ACTIONS(6632), + [anon_sym_and] = ACTIONS(6632), + [anon_sym_bitor] = ACTIONS(6632), + [anon_sym_xor] = ACTIONS(6632), + [anon_sym_bitand] = ACTIONS(6632), + [anon_sym_not_eq] = ACTIONS(6632), + [anon_sym_DASH_DASH] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_DOT] = ACTIONS(6632), + [anon_sym_DOT_STAR] = ACTIONS(6634), + [anon_sym_DASH_GT] = ACTIONS(6634), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6632), + [anon_sym_decltype] = ACTIONS(6632), + [anon_sym_final] = ACTIONS(6632), + [anon_sym_override] = ACTIONS(6632), + [anon_sym_requires] = ACTIONS(6632), + [anon_sym_COLON_RBRACK] = ACTIONS(6634), }, - [STATE(2106)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2835), - [sym_ms_pointer_modifier] = STATE(2536), - [sym__abstract_declarator] = STATE(5767), - [sym_abstract_parenthesized_declarator] = STATE(5581), - [sym_abstract_pointer_declarator] = STATE(5581), - [sym_abstract_function_declarator] = STATE(5581), - [sym_abstract_array_declarator] = STATE(5581), - [sym_type_qualifier] = STATE(2542), - [sym_alignas_qualifier] = STATE(2432), - [sym_parameter_list] = STATE(1888), - [sym_abstract_reference_declarator] = STATE(5581), - [sym__function_declarator_seq] = STATE(5582), - [aux_sym__type_definition_type_repeat1] = STATE(2542), - [aux_sym_pointer_declarator_repeat1] = STATE(2536), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_RPAREN] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6927), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(7319), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(7321), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(7323), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym___extension__] = ACTIONS(6935), - [sym_ms_restrict_modifier] = ACTIONS(6937), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6939), - [sym_ms_signed_ptr_modifier] = ACTIONS(6939), - [anon_sym__unaligned] = ACTIONS(6941), - [anon_sym___unaligned] = ACTIONS(6941), - [anon_sym_LBRACK] = ACTIONS(6943), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6945), - [anon_sym_constexpr] = ACTIONS(6935), - [anon_sym_volatile] = ACTIONS(6935), - [anon_sym_restrict] = ACTIONS(6935), - [anon_sym___restrict__] = ACTIONS(6935), - [anon_sym__Atomic] = ACTIONS(6935), - [anon_sym__Noreturn] = ACTIONS(6935), - [anon_sym_noreturn] = ACTIONS(6935), - [anon_sym__Nonnull] = ACTIONS(6935), - [anon_sym_mutable] = ACTIONS(6935), - [anon_sym_constinit] = ACTIONS(6935), - [anon_sym_consteval] = ACTIONS(6935), - [anon_sym_alignas] = ACTIONS(6947), - [anon_sym__Alignas] = ACTIONS(6947), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6497), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6497), - [anon_sym_and] = ACTIONS(6497), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6497), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6495), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6497), + [STATE(2089)] = { + [sym_identifier] = ACTIONS(6624), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6626), + [anon_sym_COMMA] = ACTIONS(6626), + [anon_sym_RPAREN] = ACTIONS(6626), + [aux_sym_preproc_if_token2] = ACTIONS(6626), + [aux_sym_preproc_else_token1] = ACTIONS(6626), + [aux_sym_preproc_elif_token1] = ACTIONS(6624), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6626), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6626), + [anon_sym_LPAREN2] = ACTIONS(6626), + [anon_sym_DASH] = ACTIONS(6624), + [anon_sym_PLUS] = ACTIONS(6624), + [anon_sym_STAR] = ACTIONS(6624), + [anon_sym_SLASH] = ACTIONS(6624), + [anon_sym_PERCENT] = ACTIONS(6624), + [anon_sym_PIPE_PIPE] = ACTIONS(6626), + [anon_sym_AMP_AMP] = ACTIONS(6626), + [anon_sym_PIPE] = ACTIONS(6624), + [anon_sym_CARET] = ACTIONS(6624), + [anon_sym_AMP] = ACTIONS(6624), + [anon_sym_EQ_EQ] = ACTIONS(6626), + [anon_sym_BANG_EQ] = ACTIONS(6626), + [anon_sym_GT] = ACTIONS(6624), + [anon_sym_GT_EQ] = ACTIONS(6626), + [anon_sym_LT_EQ] = ACTIONS(6624), + [anon_sym_LT] = ACTIONS(6624), + [anon_sym_LT_LT] = ACTIONS(6624), + [anon_sym_GT_GT] = ACTIONS(6624), + [anon_sym_SEMI] = ACTIONS(6626), + [anon_sym___extension__] = ACTIONS(6624), + [anon_sym___attribute__] = ACTIONS(6624), + [anon_sym___attribute] = ACTIONS(6624), + [anon_sym_COLON] = ACTIONS(6624), + [anon_sym_COLON_COLON] = ACTIONS(6626), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6626), + [anon_sym_LBRACE] = ACTIONS(6626), + [anon_sym_RBRACE] = ACTIONS(6626), + [anon_sym_LBRACK] = ACTIONS(6626), + [anon_sym_EQ] = ACTIONS(6624), + [anon_sym_const] = ACTIONS(6624), + [anon_sym_constexpr] = ACTIONS(6624), + [anon_sym_volatile] = ACTIONS(6624), + [anon_sym_restrict] = ACTIONS(6624), + [anon_sym___restrict__] = ACTIONS(6624), + [anon_sym__Atomic] = ACTIONS(6624), + [anon_sym__Noreturn] = ACTIONS(6624), + [anon_sym_noreturn] = ACTIONS(6624), + [anon_sym__Nonnull] = ACTIONS(6624), + [anon_sym_mutable] = ACTIONS(6624), + [anon_sym_constinit] = ACTIONS(6624), + [anon_sym_consteval] = ACTIONS(6624), + [anon_sym_alignas] = ACTIONS(6624), + [anon_sym__Alignas] = ACTIONS(6624), + [anon_sym_QMARK] = ACTIONS(6626), + [anon_sym_STAR_EQ] = ACTIONS(6626), + [anon_sym_SLASH_EQ] = ACTIONS(6626), + [anon_sym_PERCENT_EQ] = ACTIONS(6626), + [anon_sym_PLUS_EQ] = ACTIONS(6626), + [anon_sym_DASH_EQ] = ACTIONS(6626), + [anon_sym_LT_LT_EQ] = ACTIONS(6626), + [anon_sym_GT_GT_EQ] = ACTIONS(6626), + [anon_sym_AMP_EQ] = ACTIONS(6626), + [anon_sym_CARET_EQ] = ACTIONS(6626), + [anon_sym_PIPE_EQ] = ACTIONS(6626), + [anon_sym_and_eq] = ACTIONS(6624), + [anon_sym_or_eq] = ACTIONS(6624), + [anon_sym_xor_eq] = ACTIONS(6624), + [anon_sym_LT_EQ_GT] = ACTIONS(6626), + [anon_sym_or] = ACTIONS(6624), + [anon_sym_and] = ACTIONS(6624), + [anon_sym_bitor] = ACTIONS(6624), + [anon_sym_xor] = ACTIONS(6624), + [anon_sym_bitand] = ACTIONS(6624), + [anon_sym_not_eq] = ACTIONS(6624), + [anon_sym_DASH_DASH] = ACTIONS(6626), + [anon_sym_PLUS_PLUS] = ACTIONS(6626), + [anon_sym_DOT] = ACTIONS(6624), + [anon_sym_DOT_STAR] = ACTIONS(6626), + [anon_sym_DASH_GT] = ACTIONS(6626), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6624), + [anon_sym_decltype] = ACTIONS(6624), + [anon_sym_final] = ACTIONS(6624), + [anon_sym_override] = ACTIONS(6624), + [anon_sym_requires] = ACTIONS(6624), + [anon_sym_COLON_RBRACK] = ACTIONS(6626), }, - [STATE(2107)] = { - [sym_identifier] = ACTIONS(7325), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7327), - [anon_sym_COMMA] = ACTIONS(7327), - [anon_sym_RPAREN] = ACTIONS(7327), - [aux_sym_preproc_if_token2] = ACTIONS(7327), - [aux_sym_preproc_else_token1] = ACTIONS(7327), - [aux_sym_preproc_elif_token1] = ACTIONS(7325), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7327), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7327), - [anon_sym_LPAREN2] = ACTIONS(7327), - [anon_sym_DASH] = ACTIONS(7325), - [anon_sym_PLUS] = ACTIONS(7325), - [anon_sym_STAR] = ACTIONS(7325), - [anon_sym_SLASH] = ACTIONS(7325), - [anon_sym_PERCENT] = ACTIONS(7325), - [anon_sym_PIPE_PIPE] = ACTIONS(7327), - [anon_sym_AMP_AMP] = ACTIONS(7327), - [anon_sym_PIPE] = ACTIONS(7325), - [anon_sym_CARET] = ACTIONS(7325), - [anon_sym_AMP] = ACTIONS(7325), - [anon_sym_EQ_EQ] = ACTIONS(7327), - [anon_sym_BANG_EQ] = ACTIONS(7327), - [anon_sym_GT] = ACTIONS(7325), - [anon_sym_GT_EQ] = ACTIONS(7327), - [anon_sym_LT_EQ] = ACTIONS(7325), - [anon_sym_LT] = ACTIONS(7325), - [anon_sym_LT_LT] = ACTIONS(7325), - [anon_sym_GT_GT] = ACTIONS(7325), - [anon_sym_SEMI] = ACTIONS(7327), - [anon_sym___extension__] = ACTIONS(7325), - [anon_sym___attribute__] = ACTIONS(7325), - [anon_sym___attribute] = ACTIONS(7325), - [anon_sym_COLON] = ACTIONS(7325), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7327), - [anon_sym_LBRACE] = ACTIONS(7327), - [anon_sym_RBRACE] = ACTIONS(7327), - [anon_sym_LBRACK] = ACTIONS(7327), - [anon_sym_EQ] = ACTIONS(7325), - [anon_sym_const] = ACTIONS(7325), - [anon_sym_constexpr] = ACTIONS(7325), - [anon_sym_volatile] = ACTIONS(7325), - [anon_sym_restrict] = ACTIONS(7325), - [anon_sym___restrict__] = ACTIONS(7325), - [anon_sym__Atomic] = ACTIONS(7325), - [anon_sym__Noreturn] = ACTIONS(7325), - [anon_sym_noreturn] = ACTIONS(7325), - [anon_sym__Nonnull] = ACTIONS(7325), - [anon_sym_mutable] = ACTIONS(7325), - [anon_sym_constinit] = ACTIONS(7325), - [anon_sym_consteval] = ACTIONS(7325), - [anon_sym_alignas] = ACTIONS(7325), - [anon_sym__Alignas] = ACTIONS(7325), - [anon_sym_QMARK] = ACTIONS(7327), - [anon_sym_STAR_EQ] = ACTIONS(7327), - [anon_sym_SLASH_EQ] = ACTIONS(7327), - [anon_sym_PERCENT_EQ] = ACTIONS(7327), - [anon_sym_PLUS_EQ] = ACTIONS(7327), - [anon_sym_DASH_EQ] = ACTIONS(7327), - [anon_sym_LT_LT_EQ] = ACTIONS(7327), - [anon_sym_GT_GT_EQ] = ACTIONS(7327), - [anon_sym_AMP_EQ] = ACTIONS(7327), - [anon_sym_CARET_EQ] = ACTIONS(7327), - [anon_sym_PIPE_EQ] = ACTIONS(7327), - [anon_sym_and_eq] = ACTIONS(7325), - [anon_sym_or_eq] = ACTIONS(7325), - [anon_sym_xor_eq] = ACTIONS(7325), - [anon_sym_LT_EQ_GT] = ACTIONS(7327), - [anon_sym_or] = ACTIONS(7325), - [anon_sym_and] = ACTIONS(7325), - [anon_sym_bitor] = ACTIONS(7325), - [anon_sym_xor] = ACTIONS(7325), - [anon_sym_bitand] = ACTIONS(7325), - [anon_sym_not_eq] = ACTIONS(7325), - [anon_sym_DASH_DASH] = ACTIONS(7327), - [anon_sym_PLUS_PLUS] = ACTIONS(7327), - [anon_sym_DOT] = ACTIONS(7325), - [anon_sym_DOT_STAR] = ACTIONS(7327), - [anon_sym_DASH_GT] = ACTIONS(7327), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7325), - [anon_sym_override] = ACTIONS(7325), - [anon_sym_requires] = ACTIONS(7325), - [anon_sym_COLON_RBRACK] = ACTIONS(7327), + [STATE(2090)] = { + [sym_identifier] = ACTIONS(6594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6601), + [anon_sym_COMMA] = ACTIONS(6601), + [anon_sym_RPAREN] = ACTIONS(6601), + [aux_sym_preproc_if_token2] = ACTIONS(6601), + [aux_sym_preproc_else_token1] = ACTIONS(6601), + [aux_sym_preproc_elif_token1] = ACTIONS(6594), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6601), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6601), + [anon_sym_LPAREN2] = ACTIONS(6601), + [anon_sym_DASH] = ACTIONS(6594), + [anon_sym_PLUS] = ACTIONS(6594), + [anon_sym_STAR] = ACTIONS(6594), + [anon_sym_SLASH] = ACTIONS(6594), + [anon_sym_PERCENT] = ACTIONS(6594), + [anon_sym_PIPE_PIPE] = ACTIONS(6601), + [anon_sym_AMP_AMP] = ACTIONS(6601), + [anon_sym_PIPE] = ACTIONS(6594), + [anon_sym_CARET] = ACTIONS(6594), + [anon_sym_AMP] = ACTIONS(6594), + [anon_sym_EQ_EQ] = ACTIONS(6601), + [anon_sym_BANG_EQ] = ACTIONS(6601), + [anon_sym_GT] = ACTIONS(6594), + [anon_sym_GT_EQ] = ACTIONS(6601), + [anon_sym_LT_EQ] = ACTIONS(6594), + [anon_sym_LT] = ACTIONS(6594), + [anon_sym_LT_LT] = ACTIONS(6594), + [anon_sym_GT_GT] = ACTIONS(6594), + [anon_sym_SEMI] = ACTIONS(6601), + [anon_sym___extension__] = ACTIONS(6594), + [anon_sym___attribute__] = ACTIONS(6594), + [anon_sym___attribute] = ACTIONS(6594), + [anon_sym_COLON] = ACTIONS(6594), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6601), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_RBRACE] = ACTIONS(6601), + [anon_sym_LBRACK] = ACTIONS(6601), + [anon_sym_EQ] = ACTIONS(6594), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6594), + [anon_sym_volatile] = ACTIONS(6594), + [anon_sym_restrict] = ACTIONS(6594), + [anon_sym___restrict__] = ACTIONS(6594), + [anon_sym__Atomic] = ACTIONS(6594), + [anon_sym__Noreturn] = ACTIONS(6594), + [anon_sym_noreturn] = ACTIONS(6594), + [anon_sym__Nonnull] = ACTIONS(6594), + [anon_sym_mutable] = ACTIONS(6594), + [anon_sym_constinit] = ACTIONS(6594), + [anon_sym_consteval] = ACTIONS(6594), + [anon_sym_alignas] = ACTIONS(6594), + [anon_sym__Alignas] = ACTIONS(6594), + [anon_sym_QMARK] = ACTIONS(6601), + [anon_sym_STAR_EQ] = ACTIONS(6601), + [anon_sym_SLASH_EQ] = ACTIONS(6601), + [anon_sym_PERCENT_EQ] = ACTIONS(6601), + [anon_sym_PLUS_EQ] = ACTIONS(6601), + [anon_sym_DASH_EQ] = ACTIONS(6601), + [anon_sym_LT_LT_EQ] = ACTIONS(6601), + [anon_sym_GT_GT_EQ] = ACTIONS(6601), + [anon_sym_AMP_EQ] = ACTIONS(6601), + [anon_sym_CARET_EQ] = ACTIONS(6601), + [anon_sym_PIPE_EQ] = ACTIONS(6601), + [anon_sym_and_eq] = ACTIONS(6594), + [anon_sym_or_eq] = ACTIONS(6594), + [anon_sym_xor_eq] = ACTIONS(6594), + [anon_sym_LT_EQ_GT] = ACTIONS(6601), + [anon_sym_or] = ACTIONS(6594), + [anon_sym_and] = ACTIONS(6594), + [anon_sym_bitor] = ACTIONS(6594), + [anon_sym_xor] = ACTIONS(6594), + [anon_sym_bitand] = ACTIONS(6594), + [anon_sym_not_eq] = ACTIONS(6594), + [anon_sym_DASH_DASH] = ACTIONS(6601), + [anon_sym_PLUS_PLUS] = ACTIONS(6601), + [anon_sym_DOT] = ACTIONS(6594), + [anon_sym_DOT_STAR] = ACTIONS(6601), + [anon_sym_DASH_GT] = ACTIONS(6601), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6594), + [anon_sym_decltype] = ACTIONS(6594), + [anon_sym_final] = ACTIONS(6594), + [anon_sym_override] = ACTIONS(6594), + [anon_sym_requires] = ACTIONS(6594), + [anon_sym_COLON_RBRACK] = ACTIONS(6601), }, - [STATE(2108)] = { - [sym_identifier] = ACTIONS(7329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7331), - [anon_sym_COMMA] = ACTIONS(7331), - [anon_sym_RPAREN] = ACTIONS(7331), - [aux_sym_preproc_if_token2] = ACTIONS(7331), - [aux_sym_preproc_else_token1] = ACTIONS(7331), - [aux_sym_preproc_elif_token1] = ACTIONS(7329), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7331), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7331), - [anon_sym_LPAREN2] = ACTIONS(7331), - [anon_sym_DASH] = ACTIONS(7329), - [anon_sym_PLUS] = ACTIONS(7329), - [anon_sym_STAR] = ACTIONS(7329), - [anon_sym_SLASH] = ACTIONS(7329), - [anon_sym_PERCENT] = ACTIONS(7329), - [anon_sym_PIPE_PIPE] = ACTIONS(7331), - [anon_sym_AMP_AMP] = ACTIONS(7331), - [anon_sym_PIPE] = ACTIONS(7329), - [anon_sym_CARET] = ACTIONS(7329), - [anon_sym_AMP] = ACTIONS(7329), - [anon_sym_EQ_EQ] = ACTIONS(7331), - [anon_sym_BANG_EQ] = ACTIONS(7331), - [anon_sym_GT] = ACTIONS(7329), - [anon_sym_GT_EQ] = ACTIONS(7331), - [anon_sym_LT_EQ] = ACTIONS(7329), - [anon_sym_LT] = ACTIONS(7329), - [anon_sym_LT_LT] = ACTIONS(7329), - [anon_sym_GT_GT] = ACTIONS(7329), - [anon_sym_SEMI] = ACTIONS(7331), - [anon_sym___extension__] = ACTIONS(7329), - [anon_sym___attribute__] = ACTIONS(7329), - [anon_sym___attribute] = ACTIONS(7329), - [anon_sym_COLON] = ACTIONS(7329), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7331), - [anon_sym_LBRACE] = ACTIONS(7331), - [anon_sym_RBRACE] = ACTIONS(7331), - [anon_sym_LBRACK] = ACTIONS(7331), - [anon_sym_EQ] = ACTIONS(7329), - [anon_sym_const] = ACTIONS(7329), - [anon_sym_constexpr] = ACTIONS(7329), - [anon_sym_volatile] = ACTIONS(7329), - [anon_sym_restrict] = ACTIONS(7329), - [anon_sym___restrict__] = ACTIONS(7329), - [anon_sym__Atomic] = ACTIONS(7329), - [anon_sym__Noreturn] = ACTIONS(7329), - [anon_sym_noreturn] = ACTIONS(7329), - [anon_sym__Nonnull] = ACTIONS(7329), - [anon_sym_mutable] = ACTIONS(7329), - [anon_sym_constinit] = ACTIONS(7329), - [anon_sym_consteval] = ACTIONS(7329), - [anon_sym_alignas] = ACTIONS(7329), - [anon_sym__Alignas] = ACTIONS(7329), - [anon_sym_QMARK] = ACTIONS(7331), - [anon_sym_STAR_EQ] = ACTIONS(7331), - [anon_sym_SLASH_EQ] = ACTIONS(7331), - [anon_sym_PERCENT_EQ] = ACTIONS(7331), - [anon_sym_PLUS_EQ] = ACTIONS(7331), - [anon_sym_DASH_EQ] = ACTIONS(7331), - [anon_sym_LT_LT_EQ] = ACTIONS(7331), - [anon_sym_GT_GT_EQ] = ACTIONS(7331), - [anon_sym_AMP_EQ] = ACTIONS(7331), - [anon_sym_CARET_EQ] = ACTIONS(7331), - [anon_sym_PIPE_EQ] = ACTIONS(7331), - [anon_sym_and_eq] = ACTIONS(7329), - [anon_sym_or_eq] = ACTIONS(7329), - [anon_sym_xor_eq] = ACTIONS(7329), - [anon_sym_LT_EQ_GT] = ACTIONS(7331), - [anon_sym_or] = ACTIONS(7329), - [anon_sym_and] = ACTIONS(7329), - [anon_sym_bitor] = ACTIONS(7329), - [anon_sym_xor] = ACTIONS(7329), - [anon_sym_bitand] = ACTIONS(7329), - [anon_sym_not_eq] = ACTIONS(7329), - [anon_sym_DASH_DASH] = ACTIONS(7331), - [anon_sym_PLUS_PLUS] = ACTIONS(7331), - [anon_sym_DOT] = ACTIONS(7329), - [anon_sym_DOT_STAR] = ACTIONS(7331), - [anon_sym_DASH_GT] = ACTIONS(7331), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7329), - [anon_sym_override] = ACTIONS(7329), - [anon_sym_requires] = ACTIONS(7329), - [anon_sym_COLON_RBRACK] = ACTIONS(7331), + [STATE(2091)] = { + [sym_identifier] = ACTIONS(6628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6630), + [anon_sym_COMMA] = ACTIONS(6630), + [anon_sym_RPAREN] = ACTIONS(6630), + [aux_sym_preproc_if_token2] = ACTIONS(6630), + [aux_sym_preproc_else_token1] = ACTIONS(6630), + [aux_sym_preproc_elif_token1] = ACTIONS(6628), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6630), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6630), + [anon_sym_LPAREN2] = ACTIONS(6630), + [anon_sym_DASH] = ACTIONS(6628), + [anon_sym_PLUS] = ACTIONS(6628), + [anon_sym_STAR] = ACTIONS(6628), + [anon_sym_SLASH] = ACTIONS(6628), + [anon_sym_PERCENT] = ACTIONS(6628), + [anon_sym_PIPE_PIPE] = ACTIONS(6630), + [anon_sym_AMP_AMP] = ACTIONS(6630), + [anon_sym_PIPE] = ACTIONS(6628), + [anon_sym_CARET] = ACTIONS(6628), + [anon_sym_AMP] = ACTIONS(6628), + [anon_sym_EQ_EQ] = ACTIONS(6630), + [anon_sym_BANG_EQ] = ACTIONS(6630), + [anon_sym_GT] = ACTIONS(6628), + [anon_sym_GT_EQ] = ACTIONS(6630), + [anon_sym_LT_EQ] = ACTIONS(6628), + [anon_sym_LT] = ACTIONS(6628), + [anon_sym_LT_LT] = ACTIONS(6628), + [anon_sym_GT_GT] = ACTIONS(6628), + [anon_sym_SEMI] = ACTIONS(6630), + [anon_sym___extension__] = ACTIONS(6628), + [anon_sym___attribute__] = ACTIONS(6628), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_COLON] = ACTIONS(6628), + [anon_sym_COLON_COLON] = ACTIONS(6630), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6630), + [anon_sym_LBRACE] = ACTIONS(6630), + [anon_sym_RBRACE] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(6630), + [anon_sym_EQ] = ACTIONS(6628), + [anon_sym_const] = ACTIONS(6628), + [anon_sym_constexpr] = ACTIONS(6628), + [anon_sym_volatile] = ACTIONS(6628), + [anon_sym_restrict] = ACTIONS(6628), + [anon_sym___restrict__] = ACTIONS(6628), + [anon_sym__Atomic] = ACTIONS(6628), + [anon_sym__Noreturn] = ACTIONS(6628), + [anon_sym_noreturn] = ACTIONS(6628), + [anon_sym__Nonnull] = ACTIONS(6628), + [anon_sym_mutable] = ACTIONS(6628), + [anon_sym_constinit] = ACTIONS(6628), + [anon_sym_consteval] = ACTIONS(6628), + [anon_sym_alignas] = ACTIONS(6628), + [anon_sym__Alignas] = ACTIONS(6628), + [anon_sym_QMARK] = ACTIONS(6630), + [anon_sym_STAR_EQ] = ACTIONS(6630), + [anon_sym_SLASH_EQ] = ACTIONS(6630), + [anon_sym_PERCENT_EQ] = ACTIONS(6630), + [anon_sym_PLUS_EQ] = ACTIONS(6630), + [anon_sym_DASH_EQ] = ACTIONS(6630), + [anon_sym_LT_LT_EQ] = ACTIONS(6630), + [anon_sym_GT_GT_EQ] = ACTIONS(6630), + [anon_sym_AMP_EQ] = ACTIONS(6630), + [anon_sym_CARET_EQ] = ACTIONS(6630), + [anon_sym_PIPE_EQ] = ACTIONS(6630), + [anon_sym_and_eq] = ACTIONS(6628), + [anon_sym_or_eq] = ACTIONS(6628), + [anon_sym_xor_eq] = ACTIONS(6628), + [anon_sym_LT_EQ_GT] = ACTIONS(6630), + [anon_sym_or] = ACTIONS(6628), + [anon_sym_and] = ACTIONS(6628), + [anon_sym_bitor] = ACTIONS(6628), + [anon_sym_xor] = ACTIONS(6628), + [anon_sym_bitand] = ACTIONS(6628), + [anon_sym_not_eq] = ACTIONS(6628), + [anon_sym_DASH_DASH] = ACTIONS(6630), + [anon_sym_PLUS_PLUS] = ACTIONS(6630), + [anon_sym_DOT] = ACTIONS(6628), + [anon_sym_DOT_STAR] = ACTIONS(6630), + [anon_sym_DASH_GT] = ACTIONS(6630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6628), + [anon_sym_decltype] = ACTIONS(6628), + [anon_sym_final] = ACTIONS(6628), + [anon_sym_override] = ACTIONS(6628), + [anon_sym_requires] = ACTIONS(6628), + [anon_sym_COLON_RBRACK] = ACTIONS(6630), }, - [STATE(2109)] = { - [sym_identifier] = ACTIONS(7333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7335), - [anon_sym_COMMA] = ACTIONS(7335), - [anon_sym_RPAREN] = ACTIONS(7335), - [aux_sym_preproc_if_token2] = ACTIONS(7335), - [aux_sym_preproc_else_token1] = ACTIONS(7335), - [aux_sym_preproc_elif_token1] = ACTIONS(7333), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7335), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7335), - [anon_sym_LPAREN2] = ACTIONS(7335), - [anon_sym_DASH] = ACTIONS(7333), - [anon_sym_PLUS] = ACTIONS(7333), - [anon_sym_STAR] = ACTIONS(7333), - [anon_sym_SLASH] = ACTIONS(7333), - [anon_sym_PERCENT] = ACTIONS(7333), - [anon_sym_PIPE_PIPE] = ACTIONS(7335), - [anon_sym_AMP_AMP] = ACTIONS(7335), - [anon_sym_PIPE] = ACTIONS(7333), - [anon_sym_CARET] = ACTIONS(7333), - [anon_sym_AMP] = ACTIONS(7333), - [anon_sym_EQ_EQ] = ACTIONS(7335), - [anon_sym_BANG_EQ] = ACTIONS(7335), - [anon_sym_GT] = ACTIONS(7333), - [anon_sym_GT_EQ] = ACTIONS(7335), - [anon_sym_LT_EQ] = ACTIONS(7333), - [anon_sym_LT] = ACTIONS(7333), - [anon_sym_LT_LT] = ACTIONS(7333), - [anon_sym_GT_GT] = ACTIONS(7333), - [anon_sym_SEMI] = ACTIONS(7335), - [anon_sym___extension__] = ACTIONS(7333), - [anon_sym___attribute__] = ACTIONS(7333), - [anon_sym___attribute] = ACTIONS(7333), - [anon_sym_COLON] = ACTIONS(7333), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7335), - [anon_sym_LBRACE] = ACTIONS(7335), - [anon_sym_RBRACE] = ACTIONS(7335), - [anon_sym_LBRACK] = ACTIONS(7335), - [anon_sym_EQ] = ACTIONS(7333), - [anon_sym_const] = ACTIONS(7333), - [anon_sym_constexpr] = ACTIONS(7333), - [anon_sym_volatile] = ACTIONS(7333), - [anon_sym_restrict] = ACTIONS(7333), - [anon_sym___restrict__] = ACTIONS(7333), - [anon_sym__Atomic] = ACTIONS(7333), - [anon_sym__Noreturn] = ACTIONS(7333), - [anon_sym_noreturn] = ACTIONS(7333), - [anon_sym__Nonnull] = ACTIONS(7333), - [anon_sym_mutable] = ACTIONS(7333), - [anon_sym_constinit] = ACTIONS(7333), - [anon_sym_consteval] = ACTIONS(7333), - [anon_sym_alignas] = ACTIONS(7333), - [anon_sym__Alignas] = ACTIONS(7333), - [anon_sym_QMARK] = ACTIONS(7335), - [anon_sym_STAR_EQ] = ACTIONS(7335), - [anon_sym_SLASH_EQ] = ACTIONS(7335), - [anon_sym_PERCENT_EQ] = ACTIONS(7335), - [anon_sym_PLUS_EQ] = ACTIONS(7335), - [anon_sym_DASH_EQ] = ACTIONS(7335), - [anon_sym_LT_LT_EQ] = ACTIONS(7335), - [anon_sym_GT_GT_EQ] = ACTIONS(7335), - [anon_sym_AMP_EQ] = ACTIONS(7335), - [anon_sym_CARET_EQ] = ACTIONS(7335), - [anon_sym_PIPE_EQ] = ACTIONS(7335), - [anon_sym_and_eq] = ACTIONS(7333), - [anon_sym_or_eq] = ACTIONS(7333), - [anon_sym_xor_eq] = ACTIONS(7333), - [anon_sym_LT_EQ_GT] = ACTIONS(7335), - [anon_sym_or] = ACTIONS(7333), - [anon_sym_and] = ACTIONS(7333), - [anon_sym_bitor] = ACTIONS(7333), - [anon_sym_xor] = ACTIONS(7333), - [anon_sym_bitand] = ACTIONS(7333), - [anon_sym_not_eq] = ACTIONS(7333), - [anon_sym_DASH_DASH] = ACTIONS(7335), - [anon_sym_PLUS_PLUS] = ACTIONS(7335), - [anon_sym_DOT] = ACTIONS(7333), - [anon_sym_DOT_STAR] = ACTIONS(7335), - [anon_sym_DASH_GT] = ACTIONS(7335), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7333), - [anon_sym_override] = ACTIONS(7333), - [anon_sym_requires] = ACTIONS(7333), - [anon_sym_COLON_RBRACK] = ACTIONS(7335), + [STATE(2092)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2931), + [sym_ms_pointer_modifier] = STATE(2645), + [sym__abstract_declarator] = STATE(5255), + [sym_abstract_parenthesized_declarator] = STATE(5693), + [sym_abstract_pointer_declarator] = STATE(5693), + [sym_abstract_function_declarator] = STATE(5693), + [sym_abstract_array_declarator] = STATE(5693), + [sym_type_qualifier] = STATE(2431), + [sym_alignas_qualifier] = STATE(2576), + [sym_parameter_list] = STATE(1991), + [sym_abstract_reference_declarator] = STATE(5693), + [sym__function_declarator_seq] = STATE(5694), + [aux_sym__type_definition_type_repeat1] = STATE(2431), + [aux_sym_pointer_declarator_repeat1] = STATE(2645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(7309), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(7311), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(7313), + [sym_ms_restrict_modifier] = ACTIONS(7315), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7317), + [sym_ms_signed_ptr_modifier] = ACTIONS(7317), + [anon_sym__unaligned] = ACTIONS(7319), + [anon_sym___unaligned] = ACTIONS(7319), + [anon_sym_LBRACK] = ACTIONS(7321), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(7323), + [anon_sym_constexpr] = ACTIONS(7313), + [anon_sym_volatile] = ACTIONS(7313), + [anon_sym_restrict] = ACTIONS(7313), + [anon_sym___restrict__] = ACTIONS(7313), + [anon_sym__Atomic] = ACTIONS(7313), + [anon_sym__Noreturn] = ACTIONS(7313), + [anon_sym_noreturn] = ACTIONS(7313), + [anon_sym__Nonnull] = ACTIONS(7313), + [anon_sym_mutable] = ACTIONS(7313), + [anon_sym_constinit] = ACTIONS(7313), + [anon_sym_consteval] = ACTIONS(7313), + [anon_sym_alignas] = ACTIONS(7325), + [anon_sym__Alignas] = ACTIONS(7325), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6823), + [anon_sym_and] = ACTIONS(6823), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6823), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6821), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6823), + [anon_sym_override] = ACTIONS(6823), + [anon_sym_requires] = ACTIONS(6823), + [anon_sym_DASH_GT_STAR] = ACTIONS(6823), }, - [STATE(2110)] = { - [sym_identifier] = ACTIONS(7337), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7339), - [anon_sym_COMMA] = ACTIONS(7339), - [anon_sym_RPAREN] = ACTIONS(7339), - [aux_sym_preproc_if_token2] = ACTIONS(7339), - [aux_sym_preproc_else_token1] = ACTIONS(7339), - [aux_sym_preproc_elif_token1] = ACTIONS(7337), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7339), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7339), - [anon_sym_LPAREN2] = ACTIONS(7339), - [anon_sym_DASH] = ACTIONS(7337), - [anon_sym_PLUS] = ACTIONS(7337), - [anon_sym_STAR] = ACTIONS(7337), - [anon_sym_SLASH] = ACTIONS(7337), - [anon_sym_PERCENT] = ACTIONS(7337), - [anon_sym_PIPE_PIPE] = ACTIONS(7339), - [anon_sym_AMP_AMP] = ACTIONS(7339), - [anon_sym_PIPE] = ACTIONS(7337), - [anon_sym_CARET] = ACTIONS(7337), - [anon_sym_AMP] = ACTIONS(7337), - [anon_sym_EQ_EQ] = ACTIONS(7339), - [anon_sym_BANG_EQ] = ACTIONS(7339), - [anon_sym_GT] = ACTIONS(7337), - [anon_sym_GT_EQ] = ACTIONS(7339), - [anon_sym_LT_EQ] = ACTIONS(7337), - [anon_sym_LT] = ACTIONS(7337), - [anon_sym_LT_LT] = ACTIONS(7337), - [anon_sym_GT_GT] = ACTIONS(7337), - [anon_sym_SEMI] = ACTIONS(7339), - [anon_sym___extension__] = ACTIONS(7337), - [anon_sym___attribute__] = ACTIONS(7337), - [anon_sym___attribute] = ACTIONS(7337), - [anon_sym_COLON] = ACTIONS(7337), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7339), - [anon_sym_LBRACE] = ACTIONS(7339), - [anon_sym_RBRACE] = ACTIONS(7339), - [anon_sym_LBRACK] = ACTIONS(7339), - [anon_sym_EQ] = ACTIONS(7337), - [anon_sym_const] = ACTIONS(7337), - [anon_sym_constexpr] = ACTIONS(7337), - [anon_sym_volatile] = ACTIONS(7337), - [anon_sym_restrict] = ACTIONS(7337), - [anon_sym___restrict__] = ACTIONS(7337), - [anon_sym__Atomic] = ACTIONS(7337), - [anon_sym__Noreturn] = ACTIONS(7337), - [anon_sym_noreturn] = ACTIONS(7337), - [anon_sym__Nonnull] = ACTIONS(7337), - [anon_sym_mutable] = ACTIONS(7337), - [anon_sym_constinit] = ACTIONS(7337), - [anon_sym_consteval] = ACTIONS(7337), - [anon_sym_alignas] = ACTIONS(7337), - [anon_sym__Alignas] = ACTIONS(7337), - [anon_sym_QMARK] = ACTIONS(7339), - [anon_sym_STAR_EQ] = ACTIONS(7339), - [anon_sym_SLASH_EQ] = ACTIONS(7339), - [anon_sym_PERCENT_EQ] = ACTIONS(7339), - [anon_sym_PLUS_EQ] = ACTIONS(7339), - [anon_sym_DASH_EQ] = ACTIONS(7339), - [anon_sym_LT_LT_EQ] = ACTIONS(7339), - [anon_sym_GT_GT_EQ] = ACTIONS(7339), - [anon_sym_AMP_EQ] = ACTIONS(7339), - [anon_sym_CARET_EQ] = ACTIONS(7339), - [anon_sym_PIPE_EQ] = ACTIONS(7339), - [anon_sym_and_eq] = ACTIONS(7337), - [anon_sym_or_eq] = ACTIONS(7337), - [anon_sym_xor_eq] = ACTIONS(7337), - [anon_sym_LT_EQ_GT] = ACTIONS(7339), - [anon_sym_or] = ACTIONS(7337), - [anon_sym_and] = ACTIONS(7337), - [anon_sym_bitor] = ACTIONS(7337), - [anon_sym_xor] = ACTIONS(7337), - [anon_sym_bitand] = ACTIONS(7337), - [anon_sym_not_eq] = ACTIONS(7337), - [anon_sym_DASH_DASH] = ACTIONS(7339), - [anon_sym_PLUS_PLUS] = ACTIONS(7339), - [anon_sym_DOT] = ACTIONS(7337), - [anon_sym_DOT_STAR] = ACTIONS(7339), - [anon_sym_DASH_GT] = ACTIONS(7339), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7337), - [anon_sym_override] = ACTIONS(7337), - [anon_sym_requires] = ACTIONS(7337), - [anon_sym_COLON_RBRACK] = ACTIONS(7339), + [STATE(2093)] = { + [sym_type_qualifier] = STATE(2095), + [sym_alignas_qualifier] = STATE(2047), + [aux_sym__type_definition_type_repeat1] = STATE(2095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2187), + [sym_identifier] = ACTIONS(7327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), + [anon_sym_COMMA] = ACTIONS(7249), + [aux_sym_preproc_if_token2] = ACTIONS(7249), + [aux_sym_preproc_else_token1] = ACTIONS(7249), + [aux_sym_preproc_elif_token1] = ACTIONS(7251), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7249), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7249), + [anon_sym_LPAREN2] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7251), + [anon_sym_PLUS] = ACTIONS(7251), + [anon_sym_STAR] = ACTIONS(7251), + [anon_sym_SLASH] = ACTIONS(7251), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7249), + [anon_sym_PIPE] = ACTIONS(7251), + [anon_sym_CARET] = ACTIONS(7251), + [anon_sym_AMP] = ACTIONS(7251), + [anon_sym_EQ_EQ] = ACTIONS(7249), + [anon_sym_BANG_EQ] = ACTIONS(7249), + [anon_sym_GT] = ACTIONS(7251), + [anon_sym_GT_EQ] = ACTIONS(7249), + [anon_sym_LT_EQ] = ACTIONS(7251), + [anon_sym_LT] = ACTIONS(7251), + [anon_sym_LT_LT] = ACTIONS(7251), + [anon_sym_GT_GT] = ACTIONS(7251), + [anon_sym___extension__] = ACTIONS(7253), + [anon_sym___attribute__] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7251), + [anon_sym_LBRACE] = ACTIONS(7249), + [anon_sym_signed] = ACTIONS(7330), + [anon_sym_unsigned] = ACTIONS(7330), + [anon_sym_long] = ACTIONS(7330), + [anon_sym_short] = ACTIONS(7330), + [anon_sym_LBRACK] = ACTIONS(7249), + [anon_sym_EQ] = ACTIONS(7251), + [anon_sym_const] = ACTIONS(7253), + [anon_sym_constexpr] = ACTIONS(7253), + [anon_sym_volatile] = ACTIONS(7253), + [anon_sym_restrict] = ACTIONS(7253), + [anon_sym___restrict__] = ACTIONS(7253), + [anon_sym__Atomic] = ACTIONS(7253), + [anon_sym__Noreturn] = ACTIONS(7253), + [anon_sym_noreturn] = ACTIONS(7253), + [anon_sym__Nonnull] = ACTIONS(7253), + [anon_sym_mutable] = ACTIONS(7253), + [anon_sym_constinit] = ACTIONS(7253), + [anon_sym_consteval] = ACTIONS(7253), + [anon_sym_alignas] = ACTIONS(7258), + [anon_sym__Alignas] = ACTIONS(7258), + [sym_primitive_type] = ACTIONS(7332), + [anon_sym_QMARK] = ACTIONS(7249), + [anon_sym_STAR_EQ] = ACTIONS(7249), + [anon_sym_SLASH_EQ] = ACTIONS(7249), + [anon_sym_PERCENT_EQ] = ACTIONS(7249), + [anon_sym_PLUS_EQ] = ACTIONS(7249), + [anon_sym_DASH_EQ] = ACTIONS(7249), + [anon_sym_LT_LT_EQ] = ACTIONS(7249), + [anon_sym_GT_GT_EQ] = ACTIONS(7249), + [anon_sym_AMP_EQ] = ACTIONS(7249), + [anon_sym_CARET_EQ] = ACTIONS(7249), + [anon_sym_PIPE_EQ] = ACTIONS(7249), + [anon_sym_and_eq] = ACTIONS(7251), + [anon_sym_or_eq] = ACTIONS(7251), + [anon_sym_xor_eq] = ACTIONS(7251), + [anon_sym_LT_EQ_GT] = ACTIONS(7249), + [anon_sym_or] = ACTIONS(7251), + [anon_sym_and] = ACTIONS(7251), + [anon_sym_bitor] = ACTIONS(7251), + [anon_sym_xor] = ACTIONS(7251), + [anon_sym_bitand] = ACTIONS(7251), + [anon_sym_not_eq] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7249), + [anon_sym_PLUS_PLUS] = ACTIONS(7249), + [anon_sym_DOT] = ACTIONS(7251), + [anon_sym_DOT_STAR] = ACTIONS(7249), + [anon_sym_DASH_GT] = ACTIONS(7249), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7251), + [anon_sym_override] = ACTIONS(7251), + [anon_sym_requires] = ACTIONS(7251), }, - [STATE(2111)] = { - [sym_identifier] = ACTIONS(7341), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_RPAREN] = ACTIONS(7343), - [aux_sym_preproc_if_token2] = ACTIONS(7343), - [aux_sym_preproc_else_token1] = ACTIONS(7343), - [aux_sym_preproc_elif_token1] = ACTIONS(7341), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7343), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(7343), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(7341), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(7343), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7341), - [anon_sym_AMP] = ACTIONS(7341), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7341), - [anon_sym_GT_GT] = ACTIONS(7341), - [anon_sym_SEMI] = ACTIONS(7343), - [anon_sym___extension__] = ACTIONS(7341), - [anon_sym___attribute__] = ACTIONS(7341), - [anon_sym___attribute] = ACTIONS(7341), - [anon_sym_COLON] = ACTIONS(7341), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7343), - [anon_sym_LBRACE] = ACTIONS(7343), - [anon_sym_RBRACE] = ACTIONS(7343), - [anon_sym_LBRACK] = ACTIONS(7343), - [anon_sym_EQ] = ACTIONS(7341), - [anon_sym_const] = ACTIONS(7341), - [anon_sym_constexpr] = ACTIONS(7341), - [anon_sym_volatile] = ACTIONS(7341), - [anon_sym_restrict] = ACTIONS(7341), - [anon_sym___restrict__] = ACTIONS(7341), - [anon_sym__Atomic] = ACTIONS(7341), - [anon_sym__Noreturn] = ACTIONS(7341), - [anon_sym_noreturn] = ACTIONS(7341), - [anon_sym__Nonnull] = ACTIONS(7341), - [anon_sym_mutable] = ACTIONS(7341), - [anon_sym_constinit] = ACTIONS(7341), - [anon_sym_consteval] = ACTIONS(7341), - [anon_sym_alignas] = ACTIONS(7341), - [anon_sym__Alignas] = ACTIONS(7341), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_STAR_EQ] = ACTIONS(7343), - [anon_sym_SLASH_EQ] = ACTIONS(7343), - [anon_sym_PERCENT_EQ] = ACTIONS(7343), + [STATE(2094)] = { + [sym_identifier] = ACTIONS(7291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_RPAREN] = ACTIONS(7293), + [aux_sym_preproc_if_token2] = ACTIONS(7293), + [aux_sym_preproc_else_token1] = ACTIONS(7293), + [aux_sym_preproc_elif_token1] = ACTIONS(7291), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7293), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7291), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7291), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7291), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7291), + [anon_sym_GT_GT] = ACTIONS(7291), + [anon_sym_SEMI] = ACTIONS(7293), + [anon_sym___extension__] = ACTIONS(7291), + [anon_sym___attribute__] = ACTIONS(7291), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_COLON] = ACTIONS(7291), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7293), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_RBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_EQ] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7291), + [anon_sym_volatile] = ACTIONS(7291), + [anon_sym_restrict] = ACTIONS(7291), + [anon_sym___restrict__] = ACTIONS(7291), + [anon_sym__Atomic] = ACTIONS(7291), + [anon_sym__Noreturn] = ACTIONS(7291), + [anon_sym_noreturn] = ACTIONS(7291), + [anon_sym__Nonnull] = ACTIONS(7291), + [anon_sym_mutable] = ACTIONS(7291), + [anon_sym_constinit] = ACTIONS(7291), + [anon_sym_consteval] = ACTIONS(7291), + [anon_sym_alignas] = ACTIONS(7291), + [anon_sym__Alignas] = ACTIONS(7291), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_STAR_EQ] = ACTIONS(7293), + [anon_sym_SLASH_EQ] = ACTIONS(7293), + [anon_sym_PERCENT_EQ] = ACTIONS(7293), + [anon_sym_PLUS_EQ] = ACTIONS(7293), + [anon_sym_DASH_EQ] = ACTIONS(7293), + [anon_sym_LT_LT_EQ] = ACTIONS(7293), + [anon_sym_GT_GT_EQ] = ACTIONS(7293), + [anon_sym_AMP_EQ] = ACTIONS(7293), + [anon_sym_CARET_EQ] = ACTIONS(7293), + [anon_sym_PIPE_EQ] = ACTIONS(7293), + [anon_sym_and_eq] = ACTIONS(7291), + [anon_sym_or_eq] = ACTIONS(7291), + [anon_sym_xor_eq] = ACTIONS(7291), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_bitor] = ACTIONS(7291), + [anon_sym_xor] = ACTIONS(7291), + [anon_sym_bitand] = ACTIONS(7291), + [anon_sym_not_eq] = ACTIONS(7291), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7293), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7291), + [anon_sym_decltype] = ACTIONS(7291), + [anon_sym_final] = ACTIONS(7291), + [anon_sym_override] = ACTIONS(7291), + [anon_sym_requires] = ACTIONS(7291), + [anon_sym_COLON_RBRACK] = ACTIONS(7293), + }, + [STATE(2095)] = { + [sym_type_qualifier] = STATE(2006), + [sym_alignas_qualifier] = STATE(2047), + [aux_sym__type_definition_type_repeat1] = STATE(2006), + [aux_sym_sized_type_specifier_repeat1] = STATE(2217), + [sym_identifier] = ACTIONS(7334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), + [anon_sym_COMMA] = ACTIONS(7205), + [aux_sym_preproc_if_token2] = ACTIONS(7205), + [aux_sym_preproc_else_token1] = ACTIONS(7205), + [aux_sym_preproc_elif_token1] = ACTIONS(7207), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7205), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7205), + [anon_sym_LPAREN2] = ACTIONS(7205), + [anon_sym_DASH] = ACTIONS(7207), + [anon_sym_PLUS] = ACTIONS(7207), + [anon_sym_STAR] = ACTIONS(7207), + [anon_sym_SLASH] = ACTIONS(7207), + [anon_sym_PERCENT] = ACTIONS(7207), + [anon_sym_PIPE_PIPE] = ACTIONS(7205), + [anon_sym_AMP_AMP] = ACTIONS(7205), + [anon_sym_PIPE] = ACTIONS(7207), + [anon_sym_CARET] = ACTIONS(7207), + [anon_sym_AMP] = ACTIONS(7207), + [anon_sym_EQ_EQ] = ACTIONS(7205), + [anon_sym_BANG_EQ] = ACTIONS(7205), + [anon_sym_GT] = ACTIONS(7207), + [anon_sym_GT_EQ] = ACTIONS(7205), + [anon_sym_LT_EQ] = ACTIONS(7207), + [anon_sym_LT] = ACTIONS(7207), + [anon_sym_LT_LT] = ACTIONS(7207), + [anon_sym_GT_GT] = ACTIONS(7207), + [anon_sym___extension__] = ACTIONS(7209), + [anon_sym___attribute__] = ACTIONS(7207), + [anon_sym___attribute] = ACTIONS(7207), + [anon_sym_LBRACE] = ACTIONS(7205), + [anon_sym_signed] = ACTIONS(7337), + [anon_sym_unsigned] = ACTIONS(7337), + [anon_sym_long] = ACTIONS(7337), + [anon_sym_short] = ACTIONS(7337), + [anon_sym_LBRACK] = ACTIONS(7205), + [anon_sym_EQ] = ACTIONS(7207), + [anon_sym_const] = ACTIONS(7209), + [anon_sym_constexpr] = ACTIONS(7209), + [anon_sym_volatile] = ACTIONS(7209), + [anon_sym_restrict] = ACTIONS(7209), + [anon_sym___restrict__] = ACTIONS(7209), + [anon_sym__Atomic] = ACTIONS(7209), + [anon_sym__Noreturn] = ACTIONS(7209), + [anon_sym_noreturn] = ACTIONS(7209), + [anon_sym__Nonnull] = ACTIONS(7209), + [anon_sym_mutable] = ACTIONS(7209), + [anon_sym_constinit] = ACTIONS(7209), + [anon_sym_consteval] = ACTIONS(7209), + [anon_sym_alignas] = ACTIONS(7214), + [anon_sym__Alignas] = ACTIONS(7214), + [sym_primitive_type] = ACTIONS(7339), + [anon_sym_QMARK] = ACTIONS(7205), + [anon_sym_STAR_EQ] = ACTIONS(7205), + [anon_sym_SLASH_EQ] = ACTIONS(7205), + [anon_sym_PERCENT_EQ] = ACTIONS(7205), + [anon_sym_PLUS_EQ] = ACTIONS(7205), + [anon_sym_DASH_EQ] = ACTIONS(7205), + [anon_sym_LT_LT_EQ] = ACTIONS(7205), + [anon_sym_GT_GT_EQ] = ACTIONS(7205), + [anon_sym_AMP_EQ] = ACTIONS(7205), + [anon_sym_CARET_EQ] = ACTIONS(7205), + [anon_sym_PIPE_EQ] = ACTIONS(7205), + [anon_sym_and_eq] = ACTIONS(7207), + [anon_sym_or_eq] = ACTIONS(7207), + [anon_sym_xor_eq] = ACTIONS(7207), + [anon_sym_LT_EQ_GT] = ACTIONS(7205), + [anon_sym_or] = ACTIONS(7207), + [anon_sym_and] = ACTIONS(7207), + [anon_sym_bitor] = ACTIONS(7207), + [anon_sym_xor] = ACTIONS(7207), + [anon_sym_bitand] = ACTIONS(7207), + [anon_sym_not_eq] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7205), + [anon_sym_PLUS_PLUS] = ACTIONS(7205), + [anon_sym_DOT] = ACTIONS(7207), + [anon_sym_DOT_STAR] = ACTIONS(7205), + [anon_sym_DASH_GT] = ACTIONS(7205), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7207), + [anon_sym_override] = ACTIONS(7207), + [anon_sym_requires] = ACTIONS(7207), + }, + [STATE(2096)] = { + [sym_identifier] = ACTIONS(6612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6614), + [anon_sym_COMMA] = ACTIONS(6614), + [anon_sym_RPAREN] = ACTIONS(6614), + [aux_sym_preproc_if_token2] = ACTIONS(6614), + [aux_sym_preproc_else_token1] = ACTIONS(6614), + [aux_sym_preproc_elif_token1] = ACTIONS(6612), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6614), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6614), + [anon_sym_LPAREN2] = ACTIONS(6614), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6612), + [anon_sym_SLASH] = ACTIONS(6612), + [anon_sym_PERCENT] = ACTIONS(6612), + [anon_sym_PIPE_PIPE] = ACTIONS(6614), + [anon_sym_AMP_AMP] = ACTIONS(6614), + [anon_sym_PIPE] = ACTIONS(6612), + [anon_sym_CARET] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(6612), + [anon_sym_EQ_EQ] = ACTIONS(6614), + [anon_sym_BANG_EQ] = ACTIONS(6614), + [anon_sym_GT] = ACTIONS(6612), + [anon_sym_GT_EQ] = ACTIONS(6614), + [anon_sym_LT_EQ] = ACTIONS(6612), + [anon_sym_LT] = ACTIONS(6612), + [anon_sym_LT_LT] = ACTIONS(6612), + [anon_sym_GT_GT] = ACTIONS(6612), + [anon_sym_SEMI] = ACTIONS(6614), + [anon_sym___extension__] = ACTIONS(6612), + [anon_sym___attribute__] = ACTIONS(6612), + [anon_sym___attribute] = ACTIONS(6612), + [anon_sym_COLON] = ACTIONS(6612), + [anon_sym_COLON_COLON] = ACTIONS(6614), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6614), + [anon_sym_LBRACE] = ACTIONS(6614), + [anon_sym_RBRACE] = ACTIONS(6614), + [anon_sym_LBRACK] = ACTIONS(6614), + [anon_sym_EQ] = ACTIONS(6612), + [anon_sym_const] = ACTIONS(6612), + [anon_sym_constexpr] = ACTIONS(6612), + [anon_sym_volatile] = ACTIONS(6612), + [anon_sym_restrict] = ACTIONS(6612), + [anon_sym___restrict__] = ACTIONS(6612), + [anon_sym__Atomic] = ACTIONS(6612), + [anon_sym__Noreturn] = ACTIONS(6612), + [anon_sym_noreturn] = ACTIONS(6612), + [anon_sym__Nonnull] = ACTIONS(6612), + [anon_sym_mutable] = ACTIONS(6612), + [anon_sym_constinit] = ACTIONS(6612), + [anon_sym_consteval] = ACTIONS(6612), + [anon_sym_alignas] = ACTIONS(6612), + [anon_sym__Alignas] = ACTIONS(6612), + [anon_sym_QMARK] = ACTIONS(6614), + [anon_sym_STAR_EQ] = ACTIONS(6614), + [anon_sym_SLASH_EQ] = ACTIONS(6614), + [anon_sym_PERCENT_EQ] = ACTIONS(6614), + [anon_sym_PLUS_EQ] = ACTIONS(6614), + [anon_sym_DASH_EQ] = ACTIONS(6614), + [anon_sym_LT_LT_EQ] = ACTIONS(6614), + [anon_sym_GT_GT_EQ] = ACTIONS(6614), + [anon_sym_AMP_EQ] = ACTIONS(6614), + [anon_sym_CARET_EQ] = ACTIONS(6614), + [anon_sym_PIPE_EQ] = ACTIONS(6614), + [anon_sym_and_eq] = ACTIONS(6612), + [anon_sym_or_eq] = ACTIONS(6612), + [anon_sym_xor_eq] = ACTIONS(6612), + [anon_sym_LT_EQ_GT] = ACTIONS(6614), + [anon_sym_or] = ACTIONS(6612), + [anon_sym_and] = ACTIONS(6612), + [anon_sym_bitor] = ACTIONS(6612), + [anon_sym_xor] = ACTIONS(6612), + [anon_sym_bitand] = ACTIONS(6612), + [anon_sym_not_eq] = ACTIONS(6612), + [anon_sym_DASH_DASH] = ACTIONS(6614), + [anon_sym_PLUS_PLUS] = ACTIONS(6614), + [anon_sym_DOT] = ACTIONS(6612), + [anon_sym_DOT_STAR] = ACTIONS(6614), + [anon_sym_DASH_GT] = ACTIONS(6614), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6612), + [anon_sym_decltype] = ACTIONS(6612), + [anon_sym_final] = ACTIONS(6612), + [anon_sym_override] = ACTIONS(6612), + [anon_sym_requires] = ACTIONS(6612), + [anon_sym_COLON_RBRACK] = ACTIONS(6614), + }, + [STATE(2097)] = { + [sym_identifier] = ACTIONS(6608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6610), + [anon_sym_COMMA] = ACTIONS(6610), + [anon_sym_RPAREN] = ACTIONS(6610), + [aux_sym_preproc_if_token2] = ACTIONS(6610), + [aux_sym_preproc_else_token1] = ACTIONS(6610), + [aux_sym_preproc_elif_token1] = ACTIONS(6608), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6610), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6610), + [anon_sym_LPAREN2] = ACTIONS(6610), + [anon_sym_DASH] = ACTIONS(6608), + [anon_sym_PLUS] = ACTIONS(6608), + [anon_sym_STAR] = ACTIONS(6608), + [anon_sym_SLASH] = ACTIONS(6608), + [anon_sym_PERCENT] = ACTIONS(6608), + [anon_sym_PIPE_PIPE] = ACTIONS(6610), + [anon_sym_AMP_AMP] = ACTIONS(6610), + [anon_sym_PIPE] = ACTIONS(6608), + [anon_sym_CARET] = ACTIONS(6608), + [anon_sym_AMP] = ACTIONS(6608), + [anon_sym_EQ_EQ] = ACTIONS(6610), + [anon_sym_BANG_EQ] = ACTIONS(6610), + [anon_sym_GT] = ACTIONS(6608), + [anon_sym_GT_EQ] = ACTIONS(6610), + [anon_sym_LT_EQ] = ACTIONS(6608), + [anon_sym_LT] = ACTIONS(6608), + [anon_sym_LT_LT] = ACTIONS(6608), + [anon_sym_GT_GT] = ACTIONS(6608), + [anon_sym_SEMI] = ACTIONS(6610), + [anon_sym___extension__] = ACTIONS(6608), + [anon_sym___attribute__] = ACTIONS(6608), + [anon_sym___attribute] = ACTIONS(6608), + [anon_sym_COLON] = ACTIONS(6608), + [anon_sym_COLON_COLON] = ACTIONS(6610), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6610), + [anon_sym_LBRACE] = ACTIONS(6610), + [anon_sym_RBRACE] = ACTIONS(6610), + [anon_sym_LBRACK] = ACTIONS(6610), + [anon_sym_EQ] = ACTIONS(6608), + [anon_sym_const] = ACTIONS(6608), + [anon_sym_constexpr] = ACTIONS(6608), + [anon_sym_volatile] = ACTIONS(6608), + [anon_sym_restrict] = ACTIONS(6608), + [anon_sym___restrict__] = ACTIONS(6608), + [anon_sym__Atomic] = ACTIONS(6608), + [anon_sym__Noreturn] = ACTIONS(6608), + [anon_sym_noreturn] = ACTIONS(6608), + [anon_sym__Nonnull] = ACTIONS(6608), + [anon_sym_mutable] = ACTIONS(6608), + [anon_sym_constinit] = ACTIONS(6608), + [anon_sym_consteval] = ACTIONS(6608), + [anon_sym_alignas] = ACTIONS(6608), + [anon_sym__Alignas] = ACTIONS(6608), + [anon_sym_QMARK] = ACTIONS(6610), + [anon_sym_STAR_EQ] = ACTIONS(6610), + [anon_sym_SLASH_EQ] = ACTIONS(6610), + [anon_sym_PERCENT_EQ] = ACTIONS(6610), + [anon_sym_PLUS_EQ] = ACTIONS(6610), + [anon_sym_DASH_EQ] = ACTIONS(6610), + [anon_sym_LT_LT_EQ] = ACTIONS(6610), + [anon_sym_GT_GT_EQ] = ACTIONS(6610), + [anon_sym_AMP_EQ] = ACTIONS(6610), + [anon_sym_CARET_EQ] = ACTIONS(6610), + [anon_sym_PIPE_EQ] = ACTIONS(6610), + [anon_sym_and_eq] = ACTIONS(6608), + [anon_sym_or_eq] = ACTIONS(6608), + [anon_sym_xor_eq] = ACTIONS(6608), + [anon_sym_LT_EQ_GT] = ACTIONS(6610), + [anon_sym_or] = ACTIONS(6608), + [anon_sym_and] = ACTIONS(6608), + [anon_sym_bitor] = ACTIONS(6608), + [anon_sym_xor] = ACTIONS(6608), + [anon_sym_bitand] = ACTIONS(6608), + [anon_sym_not_eq] = ACTIONS(6608), + [anon_sym_DASH_DASH] = ACTIONS(6610), + [anon_sym_PLUS_PLUS] = ACTIONS(6610), + [anon_sym_DOT] = ACTIONS(6608), + [anon_sym_DOT_STAR] = ACTIONS(6610), + [anon_sym_DASH_GT] = ACTIONS(6610), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6608), + [anon_sym_decltype] = ACTIONS(6608), + [anon_sym_final] = ACTIONS(6608), + [anon_sym_override] = ACTIONS(6608), + [anon_sym_requires] = ACTIONS(6608), + [anon_sym_COLON_RBRACK] = ACTIONS(6610), + }, + [STATE(2098)] = { + [sym_identifier] = ACTIONS(6616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6618), + [anon_sym_COMMA] = ACTIONS(6618), + [anon_sym_RPAREN] = ACTIONS(6618), + [aux_sym_preproc_if_token2] = ACTIONS(6618), + [aux_sym_preproc_else_token1] = ACTIONS(6618), + [aux_sym_preproc_elif_token1] = ACTIONS(6616), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6618), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6618), + [anon_sym_LPAREN2] = ACTIONS(6618), + [anon_sym_DASH] = ACTIONS(6616), + [anon_sym_PLUS] = ACTIONS(6616), + [anon_sym_STAR] = ACTIONS(6616), + [anon_sym_SLASH] = ACTIONS(6616), + [anon_sym_PERCENT] = ACTIONS(6616), + [anon_sym_PIPE_PIPE] = ACTIONS(6618), + [anon_sym_AMP_AMP] = ACTIONS(6618), + [anon_sym_PIPE] = ACTIONS(6616), + [anon_sym_CARET] = ACTIONS(6616), + [anon_sym_AMP] = ACTIONS(6616), + [anon_sym_EQ_EQ] = ACTIONS(6618), + [anon_sym_BANG_EQ] = ACTIONS(6618), + [anon_sym_GT] = ACTIONS(6616), + [anon_sym_GT_EQ] = ACTIONS(6618), + [anon_sym_LT_EQ] = ACTIONS(6616), + [anon_sym_LT] = ACTIONS(6616), + [anon_sym_LT_LT] = ACTIONS(6616), + [anon_sym_GT_GT] = ACTIONS(6616), + [anon_sym_SEMI] = ACTIONS(6618), + [anon_sym___extension__] = ACTIONS(6616), + [anon_sym___attribute__] = ACTIONS(6616), + [anon_sym___attribute] = ACTIONS(6616), + [anon_sym_COLON] = ACTIONS(6616), + [anon_sym_COLON_COLON] = ACTIONS(6618), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6618), + [anon_sym_LBRACE] = ACTIONS(6618), + [anon_sym_RBRACE] = ACTIONS(6618), + [anon_sym_LBRACK] = ACTIONS(6618), + [anon_sym_EQ] = ACTIONS(6616), + [anon_sym_const] = ACTIONS(6616), + [anon_sym_constexpr] = ACTIONS(6616), + [anon_sym_volatile] = ACTIONS(6616), + [anon_sym_restrict] = ACTIONS(6616), + [anon_sym___restrict__] = ACTIONS(6616), + [anon_sym__Atomic] = ACTIONS(6616), + [anon_sym__Noreturn] = ACTIONS(6616), + [anon_sym_noreturn] = ACTIONS(6616), + [anon_sym__Nonnull] = ACTIONS(6616), + [anon_sym_mutable] = ACTIONS(6616), + [anon_sym_constinit] = ACTIONS(6616), + [anon_sym_consteval] = ACTIONS(6616), + [anon_sym_alignas] = ACTIONS(6616), + [anon_sym__Alignas] = ACTIONS(6616), + [anon_sym_QMARK] = ACTIONS(6618), + [anon_sym_STAR_EQ] = ACTIONS(6618), + [anon_sym_SLASH_EQ] = ACTIONS(6618), + [anon_sym_PERCENT_EQ] = ACTIONS(6618), + [anon_sym_PLUS_EQ] = ACTIONS(6618), + [anon_sym_DASH_EQ] = ACTIONS(6618), + [anon_sym_LT_LT_EQ] = ACTIONS(6618), + [anon_sym_GT_GT_EQ] = ACTIONS(6618), + [anon_sym_AMP_EQ] = ACTIONS(6618), + [anon_sym_CARET_EQ] = ACTIONS(6618), + [anon_sym_PIPE_EQ] = ACTIONS(6618), + [anon_sym_and_eq] = ACTIONS(6616), + [anon_sym_or_eq] = ACTIONS(6616), + [anon_sym_xor_eq] = ACTIONS(6616), + [anon_sym_LT_EQ_GT] = ACTIONS(6618), + [anon_sym_or] = ACTIONS(6616), + [anon_sym_and] = ACTIONS(6616), + [anon_sym_bitor] = ACTIONS(6616), + [anon_sym_xor] = ACTIONS(6616), + [anon_sym_bitand] = ACTIONS(6616), + [anon_sym_not_eq] = ACTIONS(6616), + [anon_sym_DASH_DASH] = ACTIONS(6618), + [anon_sym_PLUS_PLUS] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(6616), + [anon_sym_DOT_STAR] = ACTIONS(6618), + [anon_sym_DASH_GT] = ACTIONS(6618), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6616), + [anon_sym_decltype] = ACTIONS(6616), + [anon_sym_final] = ACTIONS(6616), + [anon_sym_override] = ACTIONS(6616), + [anon_sym_requires] = ACTIONS(6616), + [anon_sym_COLON_RBRACK] = ACTIONS(6618), + }, + [STATE(2099)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2931), + [sym_ms_pointer_modifier] = STATE(2092), + [sym__abstract_declarator] = STATE(5253), + [sym_abstract_parenthesized_declarator] = STATE(5693), + [sym_abstract_pointer_declarator] = STATE(5693), + [sym_abstract_function_declarator] = STATE(5693), + [sym_abstract_array_declarator] = STATE(5693), + [sym_type_qualifier] = STATE(2432), + [sym_alignas_qualifier] = STATE(2576), + [sym_parameter_list] = STATE(1991), + [sym_abstract_reference_declarator] = STATE(5693), + [sym__function_declarator_seq] = STATE(5694), + [aux_sym__type_definition_type_repeat1] = STATE(2432), + [aux_sym_pointer_declarator_repeat1] = STATE(2092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_RPAREN] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6861), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_PIPE_PIPE] = ACTIONS(6859), + [anon_sym_AMP_AMP] = ACTIONS(7309), + [anon_sym_PIPE] = ACTIONS(6861), + [anon_sym_CARET] = ACTIONS(6861), + [anon_sym_AMP] = ACTIONS(7311), + [anon_sym_EQ_EQ] = ACTIONS(6859), + [anon_sym_BANG_EQ] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6861), + [anon_sym_GT_EQ] = ACTIONS(6859), + [anon_sym_LT_EQ] = ACTIONS(6861), + [anon_sym_LT] = ACTIONS(6861), + [anon_sym_LT_LT] = ACTIONS(6861), + [anon_sym_GT_GT] = ACTIONS(6861), + [anon_sym___extension__] = ACTIONS(7313), + [sym_ms_restrict_modifier] = ACTIONS(7315), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7317), + [sym_ms_signed_ptr_modifier] = ACTIONS(7317), + [anon_sym__unaligned] = ACTIONS(7319), + [anon_sym___unaligned] = ACTIONS(7319), + [anon_sym_LBRACK] = ACTIONS(7321), + [anon_sym_EQ] = ACTIONS(6861), + [anon_sym_const] = ACTIONS(7323), + [anon_sym_constexpr] = ACTIONS(7313), + [anon_sym_volatile] = ACTIONS(7313), + [anon_sym_restrict] = ACTIONS(7313), + [anon_sym___restrict__] = ACTIONS(7313), + [anon_sym__Atomic] = ACTIONS(7313), + [anon_sym__Noreturn] = ACTIONS(7313), + [anon_sym_noreturn] = ACTIONS(7313), + [anon_sym__Nonnull] = ACTIONS(7313), + [anon_sym_mutable] = ACTIONS(7313), + [anon_sym_constinit] = ACTIONS(7313), + [anon_sym_consteval] = ACTIONS(7313), + [anon_sym_alignas] = ACTIONS(7325), + [anon_sym__Alignas] = ACTIONS(7325), + [anon_sym_QMARK] = ACTIONS(6859), + [anon_sym_STAR_EQ] = ACTIONS(6859), + [anon_sym_SLASH_EQ] = ACTIONS(6859), + [anon_sym_PERCENT_EQ] = ACTIONS(6859), + [anon_sym_PLUS_EQ] = ACTIONS(6859), + [anon_sym_DASH_EQ] = ACTIONS(6859), + [anon_sym_LT_LT_EQ] = ACTIONS(6859), + [anon_sym_GT_GT_EQ] = ACTIONS(6859), + [anon_sym_AMP_EQ] = ACTIONS(6859), + [anon_sym_CARET_EQ] = ACTIONS(6859), + [anon_sym_PIPE_EQ] = ACTIONS(6859), + [anon_sym_LT_EQ_GT] = ACTIONS(6859), + [anon_sym_or] = ACTIONS(6859), + [anon_sym_and] = ACTIONS(6859), + [anon_sym_bitor] = ACTIONS(6859), + [anon_sym_xor] = ACTIONS(6859), + [anon_sym_bitand] = ACTIONS(6859), + [anon_sym_not_eq] = ACTIONS(6859), + [anon_sym_DASH_DASH] = ACTIONS(6859), + [anon_sym_PLUS_PLUS] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6861), + [anon_sym_DOT_STAR] = ACTIONS(6859), + [anon_sym_DASH_GT] = ACTIONS(6861), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6859), + [anon_sym_override] = ACTIONS(6859), + [anon_sym_requires] = ACTIONS(6859), + [anon_sym_DASH_GT_STAR] = ACTIONS(6859), + }, + [STATE(2100)] = { + [sym_identifier] = ACTIONS(6620), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6622), + [anon_sym_COMMA] = ACTIONS(6622), + [anon_sym_RPAREN] = ACTIONS(6622), + [aux_sym_preproc_if_token2] = ACTIONS(6622), + [aux_sym_preproc_else_token1] = ACTIONS(6622), + [aux_sym_preproc_elif_token1] = ACTIONS(6620), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6622), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6622), + [anon_sym_LPAREN2] = ACTIONS(6622), + [anon_sym_DASH] = ACTIONS(6620), + [anon_sym_PLUS] = ACTIONS(6620), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_PERCENT] = ACTIONS(6620), + [anon_sym_PIPE_PIPE] = ACTIONS(6622), + [anon_sym_AMP_AMP] = ACTIONS(6622), + [anon_sym_PIPE] = ACTIONS(6620), + [anon_sym_CARET] = ACTIONS(6620), + [anon_sym_AMP] = ACTIONS(6620), + [anon_sym_EQ_EQ] = ACTIONS(6622), + [anon_sym_BANG_EQ] = ACTIONS(6622), + [anon_sym_GT] = ACTIONS(6620), + [anon_sym_GT_EQ] = ACTIONS(6622), + [anon_sym_LT_EQ] = ACTIONS(6620), + [anon_sym_LT] = ACTIONS(6620), + [anon_sym_LT_LT] = ACTIONS(6620), + [anon_sym_GT_GT] = ACTIONS(6620), + [anon_sym_SEMI] = ACTIONS(6622), + [anon_sym___extension__] = ACTIONS(6620), + [anon_sym___attribute__] = ACTIONS(6620), + [anon_sym___attribute] = ACTIONS(6620), + [anon_sym_COLON] = ACTIONS(6620), + [anon_sym_COLON_COLON] = ACTIONS(6622), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6622), + [anon_sym_LBRACE] = ACTIONS(6622), + [anon_sym_RBRACE] = ACTIONS(6622), + [anon_sym_LBRACK] = ACTIONS(6622), + [anon_sym_EQ] = ACTIONS(6620), + [anon_sym_const] = ACTIONS(6620), + [anon_sym_constexpr] = ACTIONS(6620), + [anon_sym_volatile] = ACTIONS(6620), + [anon_sym_restrict] = ACTIONS(6620), + [anon_sym___restrict__] = ACTIONS(6620), + [anon_sym__Atomic] = ACTIONS(6620), + [anon_sym__Noreturn] = ACTIONS(6620), + [anon_sym_noreturn] = ACTIONS(6620), + [anon_sym__Nonnull] = ACTIONS(6620), + [anon_sym_mutable] = ACTIONS(6620), + [anon_sym_constinit] = ACTIONS(6620), + [anon_sym_consteval] = ACTIONS(6620), + [anon_sym_alignas] = ACTIONS(6620), + [anon_sym__Alignas] = ACTIONS(6620), + [anon_sym_QMARK] = ACTIONS(6622), + [anon_sym_STAR_EQ] = ACTIONS(6622), + [anon_sym_SLASH_EQ] = ACTIONS(6622), + [anon_sym_PERCENT_EQ] = ACTIONS(6622), + [anon_sym_PLUS_EQ] = ACTIONS(6622), + [anon_sym_DASH_EQ] = ACTIONS(6622), + [anon_sym_LT_LT_EQ] = ACTIONS(6622), + [anon_sym_GT_GT_EQ] = ACTIONS(6622), + [anon_sym_AMP_EQ] = ACTIONS(6622), + [anon_sym_CARET_EQ] = ACTIONS(6622), + [anon_sym_PIPE_EQ] = ACTIONS(6622), + [anon_sym_and_eq] = ACTIONS(6620), + [anon_sym_or_eq] = ACTIONS(6620), + [anon_sym_xor_eq] = ACTIONS(6620), + [anon_sym_LT_EQ_GT] = ACTIONS(6622), + [anon_sym_or] = ACTIONS(6620), + [anon_sym_and] = ACTIONS(6620), + [anon_sym_bitor] = ACTIONS(6620), + [anon_sym_xor] = ACTIONS(6620), + [anon_sym_bitand] = ACTIONS(6620), + [anon_sym_not_eq] = ACTIONS(6620), + [anon_sym_DASH_DASH] = ACTIONS(6622), + [anon_sym_PLUS_PLUS] = ACTIONS(6622), + [anon_sym_DOT] = ACTIONS(6620), + [anon_sym_DOT_STAR] = ACTIONS(6622), + [anon_sym_DASH_GT] = ACTIONS(6622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6620), + [anon_sym_decltype] = ACTIONS(6620), + [anon_sym_final] = ACTIONS(6620), + [anon_sym_override] = ACTIONS(6620), + [anon_sym_requires] = ACTIONS(6620), + [anon_sym_COLON_RBRACK] = ACTIONS(6622), + }, + [STATE(2101)] = { + [sym__abstract_declarator] = STATE(4240), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2105), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1947), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2105), + [sym_identifier] = ACTIONS(7341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [aux_sym_preproc_if_token2] = ACTIONS(7343), + [aux_sym_preproc_else_token1] = ACTIONS(7343), + [aux_sym_preproc_elif_token1] = ACTIONS(7341), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7343), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(6827), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(6829), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(6831), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(6833), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7341), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(6833), + [anon_sym_volatile] = ACTIONS(6833), + [anon_sym_restrict] = ACTIONS(6833), + [anon_sym___restrict__] = ACTIONS(6833), + [anon_sym__Atomic] = ACTIONS(6833), + [anon_sym__Noreturn] = ACTIONS(6833), + [anon_sym_noreturn] = ACTIONS(6833), + [anon_sym__Nonnull] = ACTIONS(6833), + [anon_sym_mutable] = ACTIONS(6833), + [anon_sym_constinit] = ACTIONS(6833), + [anon_sym_consteval] = ACTIONS(6833), + [anon_sym_alignas] = ACTIONS(6841), + [anon_sym__Alignas] = ACTIONS(6841), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_STAR_EQ] = ACTIONS(7343), + [anon_sym_SLASH_EQ] = ACTIONS(7343), + [anon_sym_PERCENT_EQ] = ACTIONS(7343), [anon_sym_PLUS_EQ] = ACTIONS(7343), [anon_sym_DASH_EQ] = ACTIONS(7343), [anon_sym_LT_LT_EQ] = ACTIONS(7343), @@ -311599,948 +322875,1493 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(7341), [anon_sym_override] = ACTIONS(7341), [anon_sym_requires] = ACTIONS(7341), - [anon_sym_COLON_RBRACK] = ACTIONS(7343), }, - [STATE(2112)] = { - [sym_identifier] = ACTIONS(7345), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7347), - [anon_sym_COMMA] = ACTIONS(7347), - [anon_sym_RPAREN] = ACTIONS(7347), - [aux_sym_preproc_if_token2] = ACTIONS(7347), - [aux_sym_preproc_else_token1] = ACTIONS(7347), - [aux_sym_preproc_elif_token1] = ACTIONS(7345), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7347), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7347), - [anon_sym_LPAREN2] = ACTIONS(7347), - [anon_sym_DASH] = ACTIONS(7345), - [anon_sym_PLUS] = ACTIONS(7345), - [anon_sym_STAR] = ACTIONS(7345), - [anon_sym_SLASH] = ACTIONS(7345), - [anon_sym_PERCENT] = ACTIONS(7345), - [anon_sym_PIPE_PIPE] = ACTIONS(7347), - [anon_sym_AMP_AMP] = ACTIONS(7347), - [anon_sym_PIPE] = ACTIONS(7345), - [anon_sym_CARET] = ACTIONS(7345), - [anon_sym_AMP] = ACTIONS(7345), - [anon_sym_EQ_EQ] = ACTIONS(7347), - [anon_sym_BANG_EQ] = ACTIONS(7347), - [anon_sym_GT] = ACTIONS(7345), - [anon_sym_GT_EQ] = ACTIONS(7347), - [anon_sym_LT_EQ] = ACTIONS(7345), - [anon_sym_LT] = ACTIONS(7345), - [anon_sym_LT_LT] = ACTIONS(7345), - [anon_sym_GT_GT] = ACTIONS(7345), - [anon_sym_SEMI] = ACTIONS(7347), - [anon_sym___extension__] = ACTIONS(7345), - [anon_sym___attribute__] = ACTIONS(7345), - [anon_sym___attribute] = ACTIONS(7345), - [anon_sym_COLON] = ACTIONS(7345), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7347), - [anon_sym_LBRACE] = ACTIONS(7347), - [anon_sym_RBRACE] = ACTIONS(7347), - [anon_sym_LBRACK] = ACTIONS(7347), - [anon_sym_EQ] = ACTIONS(7345), - [anon_sym_const] = ACTIONS(7345), - [anon_sym_constexpr] = ACTIONS(7345), - [anon_sym_volatile] = ACTIONS(7345), - [anon_sym_restrict] = ACTIONS(7345), - [anon_sym___restrict__] = ACTIONS(7345), - [anon_sym__Atomic] = ACTIONS(7345), - [anon_sym__Noreturn] = ACTIONS(7345), - [anon_sym_noreturn] = ACTIONS(7345), - [anon_sym__Nonnull] = ACTIONS(7345), - [anon_sym_mutable] = ACTIONS(7345), - [anon_sym_constinit] = ACTIONS(7345), - [anon_sym_consteval] = ACTIONS(7345), - [anon_sym_alignas] = ACTIONS(7345), - [anon_sym__Alignas] = ACTIONS(7345), - [anon_sym_QMARK] = ACTIONS(7347), - [anon_sym_STAR_EQ] = ACTIONS(7347), - [anon_sym_SLASH_EQ] = ACTIONS(7347), - [anon_sym_PERCENT_EQ] = ACTIONS(7347), - [anon_sym_PLUS_EQ] = ACTIONS(7347), - [anon_sym_DASH_EQ] = ACTIONS(7347), - [anon_sym_LT_LT_EQ] = ACTIONS(7347), - [anon_sym_GT_GT_EQ] = ACTIONS(7347), - [anon_sym_AMP_EQ] = ACTIONS(7347), - [anon_sym_CARET_EQ] = ACTIONS(7347), - [anon_sym_PIPE_EQ] = ACTIONS(7347), + [STATE(2102)] = { + [sym__abstract_declarator] = STATE(4166), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2006), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1953), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_RPAREN] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(6843), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7347), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(6845), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7347), + [anon_sym_AMP] = ACTIONS(6847), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7347), + [anon_sym_GT_GT] = ACTIONS(7347), + [anon_sym_SEMI] = ACTIONS(7345), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym_COLON] = ACTIONS(7347), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7345), + [anon_sym_RBRACE] = ACTIONS(7345), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7347), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_STAR_EQ] = ACTIONS(7345), + [anon_sym_SLASH_EQ] = ACTIONS(7345), + [anon_sym_PERCENT_EQ] = ACTIONS(7345), + [anon_sym_PLUS_EQ] = ACTIONS(7345), + [anon_sym_DASH_EQ] = ACTIONS(7345), + [anon_sym_LT_LT_EQ] = ACTIONS(7345), + [anon_sym_GT_GT_EQ] = ACTIONS(7345), + [anon_sym_AMP_EQ] = ACTIONS(7345), + [anon_sym_CARET_EQ] = ACTIONS(7345), + [anon_sym_PIPE_EQ] = ACTIONS(7345), [anon_sym_and_eq] = ACTIONS(7345), [anon_sym_or_eq] = ACTIONS(7345), [anon_sym_xor_eq] = ACTIONS(7345), - [anon_sym_LT_EQ_GT] = ACTIONS(7347), - [anon_sym_or] = ACTIONS(7345), - [anon_sym_and] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7347), + [anon_sym_and] = ACTIONS(7347), [anon_sym_bitor] = ACTIONS(7345), - [anon_sym_xor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7347), [anon_sym_bitand] = ACTIONS(7345), [anon_sym_not_eq] = ACTIONS(7345), - [anon_sym_DASH_DASH] = ACTIONS(7347), - [anon_sym_PLUS_PLUS] = ACTIONS(7347), - [anon_sym_DOT] = ACTIONS(7345), - [anon_sym_DOT_STAR] = ACTIONS(7347), - [anon_sym_DASH_GT] = ACTIONS(7347), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7345), [anon_sym_override] = ACTIONS(7345), [anon_sym_requires] = ACTIONS(7345), - [anon_sym_COLON_RBRACK] = ACTIONS(7347), + [anon_sym_COLON_RBRACK] = ACTIONS(7345), }, - [STATE(2113)] = { - [sym_type_qualifier] = STATE(2115), - [sym_alignas_qualifier] = STATE(1953), - [aux_sym__type_definition_type_repeat1] = STATE(2115), - [aux_sym_sized_type_specifier_repeat1] = STATE(2236), - [sym_identifier] = ACTIONS(6953), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), - [anon_sym_COMMA] = ACTIONS(6812), - [aux_sym_preproc_if_token2] = ACTIONS(6812), - [aux_sym_preproc_else_token1] = ACTIONS(6812), - [aux_sym_preproc_elif_token1] = ACTIONS(6814), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6812), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6812), - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_STAR] = ACTIONS(6814), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_PERCENT] = ACTIONS(6814), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_CARET] = ACTIONS(6814), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_LT_LT] = ACTIONS(6814), - [anon_sym_GT_GT] = ACTIONS(6814), - [anon_sym___extension__] = ACTIONS(6491), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_signed] = ACTIONS(7349), - [anon_sym_unsigned] = ACTIONS(7349), - [anon_sym_long] = ACTIONS(7349), - [anon_sym_short] = ACTIONS(7349), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_EQ] = ACTIONS(6814), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6491), - [anon_sym_volatile] = ACTIONS(6491), - [anon_sym_restrict] = ACTIONS(6491), - [anon_sym___restrict__] = ACTIONS(6491), - [anon_sym__Atomic] = ACTIONS(6491), - [anon_sym__Noreturn] = ACTIONS(6491), - [anon_sym_noreturn] = ACTIONS(6491), - [anon_sym__Nonnull] = ACTIONS(6491), - [anon_sym_mutable] = ACTIONS(6491), - [anon_sym_constinit] = ACTIONS(6491), - [anon_sym_consteval] = ACTIONS(6491), - [anon_sym_alignas] = ACTIONS(7035), - [anon_sym__Alignas] = ACTIONS(7035), - [sym_primitive_type] = ACTIONS(6958), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_STAR_EQ] = ACTIONS(6812), - [anon_sym_SLASH_EQ] = ACTIONS(6812), - [anon_sym_PERCENT_EQ] = ACTIONS(6812), - [anon_sym_PLUS_EQ] = ACTIONS(6812), - [anon_sym_DASH_EQ] = ACTIONS(6812), - [anon_sym_LT_LT_EQ] = ACTIONS(6812), - [anon_sym_GT_GT_EQ] = ACTIONS(6812), - [anon_sym_AMP_EQ] = ACTIONS(6812), - [anon_sym_CARET_EQ] = ACTIONS(6812), - [anon_sym_PIPE_EQ] = ACTIONS(6812), - [anon_sym_and_eq] = ACTIONS(6814), - [anon_sym_or_eq] = ACTIONS(6814), - [anon_sym_xor_eq] = ACTIONS(6814), - [anon_sym_LT_EQ_GT] = ACTIONS(6812), - [anon_sym_or] = ACTIONS(6814), - [anon_sym_and] = ACTIONS(6814), - [anon_sym_bitor] = ACTIONS(6814), - [anon_sym_xor] = ACTIONS(6814), - [anon_sym_bitand] = ACTIONS(6814), - [anon_sym_not_eq] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6814), - [anon_sym_DOT_STAR] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6812), + [STATE(2103)] = { + [sym__abstract_declarator] = STATE(4239), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2406), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1947), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2406), + [sym_identifier] = ACTIONS(7349), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), + [anon_sym_COMMA] = ACTIONS(7351), + [aux_sym_preproc_if_token2] = ACTIONS(7351), + [aux_sym_preproc_else_token1] = ACTIONS(7351), + [aux_sym_preproc_elif_token1] = ACTIONS(7349), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7351), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7351), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_PLUS] = ACTIONS(7349), + [anon_sym_STAR] = ACTIONS(6827), + [anon_sym_SLASH] = ACTIONS(7349), + [anon_sym_PERCENT] = ACTIONS(7349), + [anon_sym_PIPE_PIPE] = ACTIONS(7351), + [anon_sym_AMP_AMP] = ACTIONS(6829), + [anon_sym_PIPE] = ACTIONS(7349), + [anon_sym_CARET] = ACTIONS(7349), + [anon_sym_AMP] = ACTIONS(6831), + [anon_sym_EQ_EQ] = ACTIONS(7351), + [anon_sym_BANG_EQ] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7349), + [anon_sym_GT_EQ] = ACTIONS(7351), + [anon_sym_LT_EQ] = ACTIONS(7349), + [anon_sym_LT] = ACTIONS(7349), + [anon_sym_LT_LT] = ACTIONS(7349), + [anon_sym_GT_GT] = ACTIONS(7349), + [anon_sym___extension__] = ACTIONS(6833), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7349), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(6833), + [anon_sym_volatile] = ACTIONS(6833), + [anon_sym_restrict] = ACTIONS(6833), + [anon_sym___restrict__] = ACTIONS(6833), + [anon_sym__Atomic] = ACTIONS(6833), + [anon_sym__Noreturn] = ACTIONS(6833), + [anon_sym_noreturn] = ACTIONS(6833), + [anon_sym__Nonnull] = ACTIONS(6833), + [anon_sym_mutable] = ACTIONS(6833), + [anon_sym_constinit] = ACTIONS(6833), + [anon_sym_consteval] = ACTIONS(6833), + [anon_sym_alignas] = ACTIONS(6841), + [anon_sym__Alignas] = ACTIONS(6841), + [anon_sym_QMARK] = ACTIONS(7351), + [anon_sym_STAR_EQ] = ACTIONS(7351), + [anon_sym_SLASH_EQ] = ACTIONS(7351), + [anon_sym_PERCENT_EQ] = ACTIONS(7351), + [anon_sym_PLUS_EQ] = ACTIONS(7351), + [anon_sym_DASH_EQ] = ACTIONS(7351), + [anon_sym_LT_LT_EQ] = ACTIONS(7351), + [anon_sym_GT_GT_EQ] = ACTIONS(7351), + [anon_sym_AMP_EQ] = ACTIONS(7351), + [anon_sym_CARET_EQ] = ACTIONS(7351), + [anon_sym_PIPE_EQ] = ACTIONS(7351), + [anon_sym_and_eq] = ACTIONS(7349), + [anon_sym_or_eq] = ACTIONS(7349), + [anon_sym_xor_eq] = ACTIONS(7349), + [anon_sym_LT_EQ_GT] = ACTIONS(7351), + [anon_sym_or] = ACTIONS(7349), + [anon_sym_and] = ACTIONS(7349), + [anon_sym_bitor] = ACTIONS(7349), + [anon_sym_xor] = ACTIONS(7349), + [anon_sym_bitand] = ACTIONS(7349), + [anon_sym_not_eq] = ACTIONS(7349), + [anon_sym_DASH_DASH] = ACTIONS(7351), + [anon_sym_PLUS_PLUS] = ACTIONS(7351), + [anon_sym_DOT] = ACTIONS(7349), + [anon_sym_DOT_STAR] = ACTIONS(7351), + [anon_sym_DASH_GT] = ACTIONS(7351), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7349), + [anon_sym_override] = ACTIONS(7349), + [anon_sym_requires] = ACTIONS(7349), }, - [STATE(2114)] = { - [sym_identifier] = ACTIONS(7351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7353), - [anon_sym_COMMA] = ACTIONS(7353), - [anon_sym_RPAREN] = ACTIONS(7353), - [aux_sym_preproc_if_token2] = ACTIONS(7353), - [aux_sym_preproc_else_token1] = ACTIONS(7353), - [aux_sym_preproc_elif_token1] = ACTIONS(7351), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7353), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7353), - [anon_sym_LPAREN2] = ACTIONS(7353), - [anon_sym_DASH] = ACTIONS(7351), - [anon_sym_PLUS] = ACTIONS(7351), - [anon_sym_STAR] = ACTIONS(7351), - [anon_sym_SLASH] = ACTIONS(7351), - [anon_sym_PERCENT] = ACTIONS(7351), - [anon_sym_PIPE_PIPE] = ACTIONS(7353), - [anon_sym_AMP_AMP] = ACTIONS(7353), - [anon_sym_PIPE] = ACTIONS(7351), - [anon_sym_CARET] = ACTIONS(7351), - [anon_sym_AMP] = ACTIONS(7351), - [anon_sym_EQ_EQ] = ACTIONS(7353), - [anon_sym_BANG_EQ] = ACTIONS(7353), - [anon_sym_GT] = ACTIONS(7351), - [anon_sym_GT_EQ] = ACTIONS(7353), - [anon_sym_LT_EQ] = ACTIONS(7351), - [anon_sym_LT] = ACTIONS(7351), - [anon_sym_LT_LT] = ACTIONS(7351), - [anon_sym_GT_GT] = ACTIONS(7351), - [anon_sym_SEMI] = ACTIONS(7353), - [anon_sym___extension__] = ACTIONS(7351), - [anon_sym___attribute__] = ACTIONS(7351), - [anon_sym___attribute] = ACTIONS(7351), - [anon_sym_COLON] = ACTIONS(7351), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7353), - [anon_sym_LBRACE] = ACTIONS(7353), - [anon_sym_RBRACE] = ACTIONS(7353), - [anon_sym_LBRACK] = ACTIONS(7353), - [anon_sym_EQ] = ACTIONS(7351), - [anon_sym_const] = ACTIONS(7351), - [anon_sym_constexpr] = ACTIONS(7351), - [anon_sym_volatile] = ACTIONS(7351), - [anon_sym_restrict] = ACTIONS(7351), - [anon_sym___restrict__] = ACTIONS(7351), - [anon_sym__Atomic] = ACTIONS(7351), - [anon_sym__Noreturn] = ACTIONS(7351), - [anon_sym_noreturn] = ACTIONS(7351), - [anon_sym__Nonnull] = ACTIONS(7351), - [anon_sym_mutable] = ACTIONS(7351), - [anon_sym_constinit] = ACTIONS(7351), - [anon_sym_consteval] = ACTIONS(7351), - [anon_sym_alignas] = ACTIONS(7351), - [anon_sym__Alignas] = ACTIONS(7351), - [anon_sym_QMARK] = ACTIONS(7353), - [anon_sym_STAR_EQ] = ACTIONS(7353), - [anon_sym_SLASH_EQ] = ACTIONS(7353), - [anon_sym_PERCENT_EQ] = ACTIONS(7353), - [anon_sym_PLUS_EQ] = ACTIONS(7353), - [anon_sym_DASH_EQ] = ACTIONS(7353), - [anon_sym_LT_LT_EQ] = ACTIONS(7353), - [anon_sym_GT_GT_EQ] = ACTIONS(7353), - [anon_sym_AMP_EQ] = ACTIONS(7353), - [anon_sym_CARET_EQ] = ACTIONS(7353), - [anon_sym_PIPE_EQ] = ACTIONS(7353), - [anon_sym_and_eq] = ACTIONS(7351), - [anon_sym_or_eq] = ACTIONS(7351), - [anon_sym_xor_eq] = ACTIONS(7351), - [anon_sym_LT_EQ_GT] = ACTIONS(7353), - [anon_sym_or] = ACTIONS(7351), - [anon_sym_and] = ACTIONS(7351), - [anon_sym_bitor] = ACTIONS(7351), - [anon_sym_xor] = ACTIONS(7351), - [anon_sym_bitand] = ACTIONS(7351), - [anon_sym_not_eq] = ACTIONS(7351), - [anon_sym_DASH_DASH] = ACTIONS(7353), - [anon_sym_PLUS_PLUS] = ACTIONS(7353), - [anon_sym_DOT] = ACTIONS(7351), - [anon_sym_DOT_STAR] = ACTIONS(7353), - [anon_sym_DASH_GT] = ACTIONS(7353), + [STATE(2104)] = { + [sym_template_argument_list] = STATE(2174), + [sym_identifier] = ACTIONS(7085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), + [anon_sym_COMMA] = ACTIONS(7090), + [anon_sym_RPAREN] = ACTIONS(7090), + [aux_sym_preproc_if_token2] = ACTIONS(7090), + [aux_sym_preproc_else_token1] = ACTIONS(7090), + [aux_sym_preproc_elif_token1] = ACTIONS(7085), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7090), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7090), + [anon_sym_LPAREN2] = ACTIONS(7090), + [anon_sym_DASH] = ACTIONS(7085), + [anon_sym_PLUS] = ACTIONS(7085), + [anon_sym_STAR] = ACTIONS(7085), + [anon_sym_SLASH] = ACTIONS(7085), + [anon_sym_PERCENT] = ACTIONS(7085), + [anon_sym_PIPE_PIPE] = ACTIONS(7090), + [anon_sym_AMP_AMP] = ACTIONS(7090), + [anon_sym_PIPE] = ACTIONS(7085), + [anon_sym_CARET] = ACTIONS(7085), + [anon_sym_AMP] = ACTIONS(7085), + [anon_sym_EQ_EQ] = ACTIONS(7090), + [anon_sym_BANG_EQ] = ACTIONS(7090), + [anon_sym_GT] = ACTIONS(7085), + [anon_sym_GT_EQ] = ACTIONS(7090), + [anon_sym_LT_EQ] = ACTIONS(7085), + [anon_sym_LT] = ACTIONS(7266), + [anon_sym_LT_LT] = ACTIONS(7085), + [anon_sym_GT_GT] = ACTIONS(7085), + [anon_sym_SEMI] = ACTIONS(7090), + [anon_sym___extension__] = ACTIONS(7085), + [anon_sym___attribute__] = ACTIONS(7085), + [anon_sym___attribute] = ACTIONS(7085), + [anon_sym_COLON] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7087), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7090), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_RBRACE] = ACTIONS(7090), + [anon_sym_LBRACK] = ACTIONS(7090), + [anon_sym_EQ] = ACTIONS(7085), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7085), + [anon_sym_volatile] = ACTIONS(7085), + [anon_sym_restrict] = ACTIONS(7085), + [anon_sym___restrict__] = ACTIONS(7085), + [anon_sym__Atomic] = ACTIONS(7085), + [anon_sym__Noreturn] = ACTIONS(7085), + [anon_sym_noreturn] = ACTIONS(7085), + [anon_sym__Nonnull] = ACTIONS(7085), + [anon_sym_mutable] = ACTIONS(7085), + [anon_sym_constinit] = ACTIONS(7085), + [anon_sym_consteval] = ACTIONS(7085), + [anon_sym_alignas] = ACTIONS(7085), + [anon_sym__Alignas] = ACTIONS(7085), + [anon_sym_QMARK] = ACTIONS(7090), + [anon_sym_STAR_EQ] = ACTIONS(7090), + [anon_sym_SLASH_EQ] = ACTIONS(7090), + [anon_sym_PERCENT_EQ] = ACTIONS(7090), + [anon_sym_PLUS_EQ] = ACTIONS(7090), + [anon_sym_DASH_EQ] = ACTIONS(7090), + [anon_sym_LT_LT_EQ] = ACTIONS(7090), + [anon_sym_GT_GT_EQ] = ACTIONS(7090), + [anon_sym_AMP_EQ] = ACTIONS(7090), + [anon_sym_CARET_EQ] = ACTIONS(7090), + [anon_sym_PIPE_EQ] = ACTIONS(7090), + [anon_sym_and_eq] = ACTIONS(7085), + [anon_sym_or_eq] = ACTIONS(7085), + [anon_sym_xor_eq] = ACTIONS(7085), + [anon_sym_LT_EQ_GT] = ACTIONS(7090), + [anon_sym_or] = ACTIONS(7085), + [anon_sym_and] = ACTIONS(7085), + [anon_sym_bitor] = ACTIONS(7085), + [anon_sym_xor] = ACTIONS(7085), + [anon_sym_bitand] = ACTIONS(7085), + [anon_sym_not_eq] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7090), + [anon_sym_PLUS_PLUS] = ACTIONS(7090), + [anon_sym_DOT] = ACTIONS(7085), + [anon_sym_DOT_STAR] = ACTIONS(7090), + [anon_sym_DASH_GT] = ACTIONS(7090), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7085), + [anon_sym_override] = ACTIONS(7085), + [anon_sym_requires] = ACTIONS(7085), + [anon_sym_COLON_RBRACK] = ACTIONS(7090), + }, + [STATE(2105)] = { + [sym__abstract_declarator] = STATE(4241), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2406), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1947), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2406), + [sym_identifier] = ACTIONS(7353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), + [anon_sym_COMMA] = ACTIONS(7355), + [aux_sym_preproc_if_token2] = ACTIONS(7355), + [aux_sym_preproc_else_token1] = ACTIONS(7355), + [aux_sym_preproc_elif_token1] = ACTIONS(7353), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7355), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7355), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7353), + [anon_sym_PLUS] = ACTIONS(7353), + [anon_sym_STAR] = ACTIONS(6827), + [anon_sym_SLASH] = ACTIONS(7353), + [anon_sym_PERCENT] = ACTIONS(7353), + [anon_sym_PIPE_PIPE] = ACTIONS(7355), + [anon_sym_AMP_AMP] = ACTIONS(6829), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_CARET] = ACTIONS(7353), + [anon_sym_AMP] = ACTIONS(6831), + [anon_sym_EQ_EQ] = ACTIONS(7355), + [anon_sym_BANG_EQ] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_EQ] = ACTIONS(7355), + [anon_sym_LT_EQ] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_LT_LT] = ACTIONS(7353), + [anon_sym_GT_GT] = ACTIONS(7353), + [anon_sym___extension__] = ACTIONS(6833), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7353), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(6833), + [anon_sym_volatile] = ACTIONS(6833), + [anon_sym_restrict] = ACTIONS(6833), + [anon_sym___restrict__] = ACTIONS(6833), + [anon_sym__Atomic] = ACTIONS(6833), + [anon_sym__Noreturn] = ACTIONS(6833), + [anon_sym_noreturn] = ACTIONS(6833), + [anon_sym__Nonnull] = ACTIONS(6833), + [anon_sym_mutable] = ACTIONS(6833), + [anon_sym_constinit] = ACTIONS(6833), + [anon_sym_consteval] = ACTIONS(6833), + [anon_sym_alignas] = ACTIONS(6841), + [anon_sym__Alignas] = ACTIONS(6841), + [anon_sym_QMARK] = ACTIONS(7355), + [anon_sym_STAR_EQ] = ACTIONS(7355), + [anon_sym_SLASH_EQ] = ACTIONS(7355), + [anon_sym_PERCENT_EQ] = ACTIONS(7355), + [anon_sym_PLUS_EQ] = ACTIONS(7355), + [anon_sym_DASH_EQ] = ACTIONS(7355), + [anon_sym_LT_LT_EQ] = ACTIONS(7355), + [anon_sym_GT_GT_EQ] = ACTIONS(7355), + [anon_sym_AMP_EQ] = ACTIONS(7355), + [anon_sym_CARET_EQ] = ACTIONS(7355), + [anon_sym_PIPE_EQ] = ACTIONS(7355), + [anon_sym_and_eq] = ACTIONS(7353), + [anon_sym_or_eq] = ACTIONS(7353), + [anon_sym_xor_eq] = ACTIONS(7353), + [anon_sym_LT_EQ_GT] = ACTIONS(7355), + [anon_sym_or] = ACTIONS(7353), + [anon_sym_and] = ACTIONS(7353), + [anon_sym_bitor] = ACTIONS(7353), + [anon_sym_xor] = ACTIONS(7353), + [anon_sym_bitand] = ACTIONS(7353), + [anon_sym_not_eq] = ACTIONS(7353), + [anon_sym_DASH_DASH] = ACTIONS(7355), + [anon_sym_PLUS_PLUS] = ACTIONS(7355), + [anon_sym_DOT] = ACTIONS(7353), + [anon_sym_DOT_STAR] = ACTIONS(7355), + [anon_sym_DASH_GT] = ACTIONS(7355), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7351), - [anon_sym_override] = ACTIONS(7351), - [anon_sym_requires] = ACTIONS(7351), - [anon_sym_COLON_RBRACK] = ACTIONS(7353), + [anon_sym_final] = ACTIONS(7353), + [anon_sym_override] = ACTIONS(7353), + [anon_sym_requires] = ACTIONS(7353), }, - [STATE(2115)] = { - [sym_type_qualifier] = STATE(1913), - [sym_alignas_qualifier] = STATE(1953), - [aux_sym__type_definition_type_repeat1] = STATE(1913), - [aux_sym_sized_type_specifier_repeat1] = STATE(2087), - [sym_identifier] = ACTIONS(6960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), - [anon_sym_COMMA] = ACTIONS(6884), - [aux_sym_preproc_if_token2] = ACTIONS(6884), - [aux_sym_preproc_else_token1] = ACTIONS(6884), - [aux_sym_preproc_elif_token1] = ACTIONS(6886), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6884), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6884), - [anon_sym_LPAREN2] = ACTIONS(6884), - [anon_sym_DASH] = ACTIONS(6886), - [anon_sym_PLUS] = ACTIONS(6886), - [anon_sym_STAR] = ACTIONS(6886), - [anon_sym_SLASH] = ACTIONS(6886), - [anon_sym_PERCENT] = ACTIONS(6886), - [anon_sym_PIPE_PIPE] = ACTIONS(6884), - [anon_sym_AMP_AMP] = ACTIONS(6884), - [anon_sym_PIPE] = ACTIONS(6886), - [anon_sym_CARET] = ACTIONS(6886), - [anon_sym_AMP] = ACTIONS(6886), - [anon_sym_EQ_EQ] = ACTIONS(6884), - [anon_sym_BANG_EQ] = ACTIONS(6884), - [anon_sym_GT] = ACTIONS(6886), - [anon_sym_GT_EQ] = ACTIONS(6884), - [anon_sym_LT_EQ] = ACTIONS(6886), - [anon_sym_LT] = ACTIONS(6886), - [anon_sym_LT_LT] = ACTIONS(6886), - [anon_sym_GT_GT] = ACTIONS(6886), - [anon_sym___extension__] = ACTIONS(6491), - [anon_sym___attribute__] = ACTIONS(6886), - [anon_sym___attribute] = ACTIONS(6886), - [anon_sym_LBRACE] = ACTIONS(6884), - [anon_sym_signed] = ACTIONS(6963), - [anon_sym_unsigned] = ACTIONS(6963), - [anon_sym_long] = ACTIONS(6963), - [anon_sym_short] = ACTIONS(6963), - [anon_sym_LBRACK] = ACTIONS(6884), - [anon_sym_EQ] = ACTIONS(6886), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6491), - [anon_sym_volatile] = ACTIONS(6491), - [anon_sym_restrict] = ACTIONS(6491), - [anon_sym___restrict__] = ACTIONS(6491), - [anon_sym__Atomic] = ACTIONS(6491), - [anon_sym__Noreturn] = ACTIONS(6491), - [anon_sym_noreturn] = ACTIONS(6491), - [anon_sym__Nonnull] = ACTIONS(6491), - [anon_sym_mutable] = ACTIONS(6491), - [anon_sym_constinit] = ACTIONS(6491), - [anon_sym_consteval] = ACTIONS(6491), - [anon_sym_alignas] = ACTIONS(7035), - [anon_sym__Alignas] = ACTIONS(7035), - [sym_primitive_type] = ACTIONS(6965), - [anon_sym_QMARK] = ACTIONS(6884), - [anon_sym_STAR_EQ] = ACTIONS(6884), - [anon_sym_SLASH_EQ] = ACTIONS(6884), - [anon_sym_PERCENT_EQ] = ACTIONS(6884), - [anon_sym_PLUS_EQ] = ACTIONS(6884), - [anon_sym_DASH_EQ] = ACTIONS(6884), - [anon_sym_LT_LT_EQ] = ACTIONS(6884), - [anon_sym_GT_GT_EQ] = ACTIONS(6884), - [anon_sym_AMP_EQ] = ACTIONS(6884), - [anon_sym_CARET_EQ] = ACTIONS(6884), - [anon_sym_PIPE_EQ] = ACTIONS(6884), - [anon_sym_and_eq] = ACTIONS(6886), - [anon_sym_or_eq] = ACTIONS(6886), - [anon_sym_xor_eq] = ACTIONS(6886), - [anon_sym_LT_EQ_GT] = ACTIONS(6884), - [anon_sym_or] = ACTIONS(6886), - [anon_sym_and] = ACTIONS(6886), - [anon_sym_bitor] = ACTIONS(6886), - [anon_sym_xor] = ACTIONS(6886), - [anon_sym_bitand] = ACTIONS(6886), - [anon_sym_not_eq] = ACTIONS(6886), - [anon_sym_DASH_DASH] = ACTIONS(6884), - [anon_sym_PLUS_PLUS] = ACTIONS(6884), - [anon_sym_DOT] = ACTIONS(6886), - [anon_sym_DOT_STAR] = ACTIONS(6884), - [anon_sym_DASH_GT] = ACTIONS(6884), + [STATE(2106)] = { + [sym_attribute_specifier] = STATE(2353), + [sym_attribute_declaration] = STATE(4488), + [sym_type_qualifier] = STATE(2301), + [sym_alignas_qualifier] = STATE(2392), + [aux_sym_type_definition_repeat1] = STATE(2353), + [aux_sym__type_definition_type_repeat1] = STATE(2301), + [aux_sym_attributed_declarator_repeat1] = STATE(4488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), + [anon_sym_COMMA] = ACTIONS(6754), + [anon_sym_RPAREN] = ACTIONS(6754), + [anon_sym_LPAREN2] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6752), + [anon_sym_STAR] = ACTIONS(6752), + [anon_sym_SLASH] = ACTIONS(6752), + [anon_sym_PERCENT] = ACTIONS(6752), + [anon_sym_PIPE_PIPE] = ACTIONS(6754), + [anon_sym_AMP_AMP] = ACTIONS(6754), + [anon_sym_PIPE] = ACTIONS(6752), + [anon_sym_CARET] = ACTIONS(6752), + [anon_sym_AMP] = ACTIONS(6752), + [anon_sym_EQ_EQ] = ACTIONS(6754), + [anon_sym_BANG_EQ] = ACTIONS(6754), + [anon_sym_GT] = ACTIONS(6752), + [anon_sym_GT_EQ] = ACTIONS(6754), + [anon_sym_LT_EQ] = ACTIONS(6752), + [anon_sym_LT] = ACTIONS(6752), + [anon_sym_LT_LT] = ACTIONS(6752), + [anon_sym_GT_GT] = ACTIONS(6752), + [anon_sym___extension__] = ACTIONS(6644), + [anon_sym___attribute__] = ACTIONS(6754), + [anon_sym___attribute] = ACTIONS(6752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), + [anon_sym_LBRACK] = ACTIONS(6752), + [anon_sym_EQ] = ACTIONS(6752), + [anon_sym_const] = ACTIONS(6652), + [anon_sym_constexpr] = ACTIONS(6644), + [anon_sym_volatile] = ACTIONS(6644), + [anon_sym_restrict] = ACTIONS(6644), + [anon_sym___restrict__] = ACTIONS(6644), + [anon_sym__Atomic] = ACTIONS(6644), + [anon_sym__Noreturn] = ACTIONS(6644), + [anon_sym_noreturn] = ACTIONS(6644), + [anon_sym__Nonnull] = ACTIONS(6644), + [anon_sym_mutable] = ACTIONS(6644), + [anon_sym_constinit] = ACTIONS(6644), + [anon_sym_consteval] = ACTIONS(6644), + [anon_sym_alignas] = ACTIONS(6654), + [anon_sym__Alignas] = ACTIONS(6654), + [anon_sym_QMARK] = ACTIONS(6754), + [anon_sym_STAR_EQ] = ACTIONS(6754), + [anon_sym_SLASH_EQ] = ACTIONS(6754), + [anon_sym_PERCENT_EQ] = ACTIONS(6754), + [anon_sym_PLUS_EQ] = ACTIONS(6754), + [anon_sym_DASH_EQ] = ACTIONS(6754), + [anon_sym_LT_LT_EQ] = ACTIONS(6754), + [anon_sym_GT_GT_EQ] = ACTIONS(6754), + [anon_sym_AMP_EQ] = ACTIONS(6754), + [anon_sym_CARET_EQ] = ACTIONS(6754), + [anon_sym_PIPE_EQ] = ACTIONS(6754), + [anon_sym_and_eq] = ACTIONS(6754), + [anon_sym_or_eq] = ACTIONS(6754), + [anon_sym_xor_eq] = ACTIONS(6754), + [anon_sym_LT_EQ_GT] = ACTIONS(6754), + [anon_sym_or] = ACTIONS(6752), + [anon_sym_and] = ACTIONS(6752), + [anon_sym_bitor] = ACTIONS(6754), + [anon_sym_xor] = ACTIONS(6752), + [anon_sym_bitand] = ACTIONS(6754), + [anon_sym_not_eq] = ACTIONS(6754), + [anon_sym_DASH_DASH] = ACTIONS(6754), + [anon_sym_PLUS_PLUS] = ACTIONS(6754), + [anon_sym_asm] = ACTIONS(6754), + [anon_sym___asm__] = ACTIONS(6754), + [anon_sym___asm] = ACTIONS(6752), + [anon_sym_DOT] = ACTIONS(6752), + [anon_sym_DOT_STAR] = ACTIONS(6754), + [anon_sym_DASH_GT] = ACTIONS(6752), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6754), + [anon_sym_override] = ACTIONS(6754), + [anon_sym_noexcept] = ACTIONS(6754), + [anon_sym_throw] = ACTIONS(6754), + [anon_sym_requires] = ACTIONS(6754), + [anon_sym_DASH_GT_STAR] = ACTIONS(6754), + }, + [STATE(2107)] = { + [sym__abstract_declarator] = STATE(4245), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2406), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1947), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2406), + [sym_identifier] = ACTIONS(7347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [aux_sym_preproc_if_token2] = ACTIONS(7345), + [aux_sym_preproc_else_token1] = ACTIONS(7345), + [aux_sym_preproc_elif_token1] = ACTIONS(7347), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7345), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(6827), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7347), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(6829), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7347), + [anon_sym_AMP] = ACTIONS(6831), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7347), + [anon_sym_GT_GT] = ACTIONS(7347), + [anon_sym___extension__] = ACTIONS(6833), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7347), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(6833), + [anon_sym_volatile] = ACTIONS(6833), + [anon_sym_restrict] = ACTIONS(6833), + [anon_sym___restrict__] = ACTIONS(6833), + [anon_sym__Atomic] = ACTIONS(6833), + [anon_sym__Noreturn] = ACTIONS(6833), + [anon_sym_noreturn] = ACTIONS(6833), + [anon_sym__Nonnull] = ACTIONS(6833), + [anon_sym_mutable] = ACTIONS(6833), + [anon_sym_constinit] = ACTIONS(6833), + [anon_sym_consteval] = ACTIONS(6833), + [anon_sym_alignas] = ACTIONS(6841), + [anon_sym__Alignas] = ACTIONS(6841), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_STAR_EQ] = ACTIONS(7345), + [anon_sym_SLASH_EQ] = ACTIONS(7345), + [anon_sym_PERCENT_EQ] = ACTIONS(7345), + [anon_sym_PLUS_EQ] = ACTIONS(7345), + [anon_sym_DASH_EQ] = ACTIONS(7345), + [anon_sym_LT_LT_EQ] = ACTIONS(7345), + [anon_sym_GT_GT_EQ] = ACTIONS(7345), + [anon_sym_AMP_EQ] = ACTIONS(7345), + [anon_sym_CARET_EQ] = ACTIONS(7345), + [anon_sym_PIPE_EQ] = ACTIONS(7345), + [anon_sym_and_eq] = ACTIONS(7347), + [anon_sym_or_eq] = ACTIONS(7347), + [anon_sym_xor_eq] = ACTIONS(7347), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7347), + [anon_sym_and] = ACTIONS(7347), + [anon_sym_bitor] = ACTIONS(7347), + [anon_sym_xor] = ACTIONS(7347), + [anon_sym_bitand] = ACTIONS(7347), + [anon_sym_not_eq] = ACTIONS(7347), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7347), + [anon_sym_override] = ACTIONS(7347), + [anon_sym_requires] = ACTIONS(7347), }, - [STATE(2116)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1931), - [sym_identifier] = ACTIONS(7084), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), - [anon_sym_COMMA] = ACTIONS(7081), - [aux_sym_preproc_if_token2] = ACTIONS(7081), - [aux_sym_preproc_else_token1] = ACTIONS(7081), - [aux_sym_preproc_elif_token1] = ACTIONS(7084), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7081), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7081), - [anon_sym_LPAREN2] = ACTIONS(7081), - [anon_sym_DASH] = ACTIONS(7084), - [anon_sym_PLUS] = ACTIONS(7084), - [anon_sym_STAR] = ACTIONS(7084), - [anon_sym_SLASH] = ACTIONS(7084), - [anon_sym_PERCENT] = ACTIONS(7084), - [anon_sym_PIPE_PIPE] = ACTIONS(7081), - [anon_sym_AMP_AMP] = ACTIONS(7081), - [anon_sym_PIPE] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7084), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_EQ_EQ] = ACTIONS(7081), - [anon_sym_BANG_EQ] = ACTIONS(7081), - [anon_sym_GT] = ACTIONS(7084), - [anon_sym_GT_EQ] = ACTIONS(7081), - [anon_sym_LT_EQ] = ACTIONS(7084), - [anon_sym_LT] = ACTIONS(7084), - [anon_sym_LT_LT] = ACTIONS(7084), - [anon_sym_GT_GT] = ACTIONS(7084), - [anon_sym___extension__] = ACTIONS(7084), - [anon_sym___attribute__] = ACTIONS(7084), - [anon_sym___attribute] = ACTIONS(7084), - [anon_sym_LBRACE] = ACTIONS(7081), - [anon_sym_signed] = ACTIONS(6631), - [anon_sym_unsigned] = ACTIONS(6631), - [anon_sym_long] = ACTIONS(6631), - [anon_sym_short] = ACTIONS(6631), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_EQ] = ACTIONS(7084), - [anon_sym_const] = ACTIONS(7084), - [anon_sym_constexpr] = ACTIONS(7084), - [anon_sym_volatile] = ACTIONS(7084), - [anon_sym_restrict] = ACTIONS(7084), - [anon_sym___restrict__] = ACTIONS(7084), - [anon_sym__Atomic] = ACTIONS(7084), - [anon_sym__Noreturn] = ACTIONS(7084), - [anon_sym_noreturn] = ACTIONS(7084), - [anon_sym__Nonnull] = ACTIONS(7084), - [anon_sym_mutable] = ACTIONS(7084), - [anon_sym_constinit] = ACTIONS(7084), - [anon_sym_consteval] = ACTIONS(7084), - [anon_sym_alignas] = ACTIONS(7084), - [anon_sym__Alignas] = ACTIONS(7084), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(7081), - [anon_sym_STAR_EQ] = ACTIONS(7081), - [anon_sym_SLASH_EQ] = ACTIONS(7081), - [anon_sym_PERCENT_EQ] = ACTIONS(7081), - [anon_sym_PLUS_EQ] = ACTIONS(7081), - [anon_sym_DASH_EQ] = ACTIONS(7081), - [anon_sym_LT_LT_EQ] = ACTIONS(7081), - [anon_sym_GT_GT_EQ] = ACTIONS(7081), - [anon_sym_AMP_EQ] = ACTIONS(7081), - [anon_sym_CARET_EQ] = ACTIONS(7081), - [anon_sym_PIPE_EQ] = ACTIONS(7081), - [anon_sym_and_eq] = ACTIONS(7084), - [anon_sym_or_eq] = ACTIONS(7084), - [anon_sym_xor_eq] = ACTIONS(7084), - [anon_sym_LT_EQ_GT] = ACTIONS(7081), - [anon_sym_or] = ACTIONS(7084), - [anon_sym_and] = ACTIONS(7084), - [anon_sym_bitor] = ACTIONS(7084), - [anon_sym_xor] = ACTIONS(7084), - [anon_sym_bitand] = ACTIONS(7084), - [anon_sym_not_eq] = ACTIONS(7084), - [anon_sym_DASH_DASH] = ACTIONS(7081), - [anon_sym_PLUS_PLUS] = ACTIONS(7081), - [anon_sym_DOT] = ACTIONS(7084), - [anon_sym_DOT_STAR] = ACTIONS(7081), - [anon_sym_DASH_GT] = ACTIONS(7081), + [STATE(2108)] = { + [sym_template_argument_list] = STATE(3735), + [aux_sym_sized_type_specifier_repeat1] = STATE(2209), + [sym_identifier] = ACTIONS(7357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7359), + [anon_sym_COMMA] = ACTIONS(7359), + [aux_sym_preproc_if_token2] = ACTIONS(7359), + [aux_sym_preproc_else_token1] = ACTIONS(7359), + [aux_sym_preproc_elif_token1] = ACTIONS(7357), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7359), + [anon_sym_LPAREN2] = ACTIONS(7359), + [anon_sym_DASH] = ACTIONS(7357), + [anon_sym_PLUS] = ACTIONS(7357), + [anon_sym_STAR] = ACTIONS(7357), + [anon_sym_SLASH] = ACTIONS(7357), + [anon_sym_PERCENT] = ACTIONS(7357), + [anon_sym_PIPE_PIPE] = ACTIONS(7359), + [anon_sym_AMP_AMP] = ACTIONS(7359), + [anon_sym_PIPE] = ACTIONS(7357), + [anon_sym_CARET] = ACTIONS(7357), + [anon_sym_AMP] = ACTIONS(7357), + [anon_sym_EQ_EQ] = ACTIONS(7359), + [anon_sym_BANG_EQ] = ACTIONS(7359), + [anon_sym_GT] = ACTIONS(7357), + [anon_sym_GT_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ] = ACTIONS(7357), + [anon_sym_LT] = ACTIONS(7357), + [anon_sym_LT_LT] = ACTIONS(7357), + [anon_sym_GT_GT] = ACTIONS(7357), + [anon_sym___extension__] = ACTIONS(7357), + [anon_sym___attribute__] = ACTIONS(7357), + [anon_sym___attribute] = ACTIONS(7357), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(7359), + [anon_sym_signed] = ACTIONS(6815), + [anon_sym_unsigned] = ACTIONS(6815), + [anon_sym_long] = ACTIONS(6815), + [anon_sym_short] = ACTIONS(6815), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_RBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7357), + [anon_sym_const] = ACTIONS(7357), + [anon_sym_constexpr] = ACTIONS(7357), + [anon_sym_volatile] = ACTIONS(7357), + [anon_sym_restrict] = ACTIONS(7357), + [anon_sym___restrict__] = ACTIONS(7357), + [anon_sym__Atomic] = ACTIONS(7357), + [anon_sym__Noreturn] = ACTIONS(7357), + [anon_sym_noreturn] = ACTIONS(7357), + [anon_sym__Nonnull] = ACTIONS(7357), + [anon_sym_mutable] = ACTIONS(7357), + [anon_sym_constinit] = ACTIONS(7357), + [anon_sym_consteval] = ACTIONS(7357), + [anon_sym_alignas] = ACTIONS(7357), + [anon_sym__Alignas] = ACTIONS(7357), + [anon_sym_QMARK] = ACTIONS(7359), + [anon_sym_STAR_EQ] = ACTIONS(7359), + [anon_sym_SLASH_EQ] = ACTIONS(7359), + [anon_sym_PERCENT_EQ] = ACTIONS(7359), + [anon_sym_PLUS_EQ] = ACTIONS(7359), + [anon_sym_DASH_EQ] = ACTIONS(7359), + [anon_sym_LT_LT_EQ] = ACTIONS(7359), + [anon_sym_GT_GT_EQ] = ACTIONS(7359), + [anon_sym_AMP_EQ] = ACTIONS(7359), + [anon_sym_CARET_EQ] = ACTIONS(7359), + [anon_sym_PIPE_EQ] = ACTIONS(7359), + [anon_sym_and_eq] = ACTIONS(7357), + [anon_sym_or_eq] = ACTIONS(7357), + [anon_sym_xor_eq] = ACTIONS(7357), + [anon_sym_LT_EQ_GT] = ACTIONS(7359), + [anon_sym_or] = ACTIONS(7357), + [anon_sym_and] = ACTIONS(7357), + [anon_sym_bitor] = ACTIONS(7357), + [anon_sym_xor] = ACTIONS(7357), + [anon_sym_bitand] = ACTIONS(7357), + [anon_sym_not_eq] = ACTIONS(7357), + [anon_sym_DASH_DASH] = ACTIONS(7359), + [anon_sym_PLUS_PLUS] = ACTIONS(7359), + [anon_sym_DOT] = ACTIONS(7357), + [anon_sym_DOT_STAR] = ACTIONS(7359), + [anon_sym_DASH_GT] = ACTIONS(7359), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7084), - [anon_sym_override] = ACTIONS(7084), - [anon_sym_requires] = ACTIONS(7084), + [anon_sym_final] = ACTIONS(7357), + [anon_sym_override] = ACTIONS(7357), + [anon_sym_requires] = ACTIONS(7357), }, - [STATE(2117)] = { - [sym_identifier] = ACTIONS(7355), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7357), - [anon_sym_COMMA] = ACTIONS(7357), - [anon_sym_RPAREN] = ACTIONS(7357), - [aux_sym_preproc_if_token2] = ACTIONS(7357), - [aux_sym_preproc_else_token1] = ACTIONS(7357), - [aux_sym_preproc_elif_token1] = ACTIONS(7355), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7357), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7357), - [anon_sym_LPAREN2] = ACTIONS(7357), - [anon_sym_DASH] = ACTIONS(7355), - [anon_sym_PLUS] = ACTIONS(7355), - [anon_sym_STAR] = ACTIONS(7355), - [anon_sym_SLASH] = ACTIONS(7355), - [anon_sym_PERCENT] = ACTIONS(7355), - [anon_sym_PIPE_PIPE] = ACTIONS(7357), - [anon_sym_AMP_AMP] = ACTIONS(7357), - [anon_sym_PIPE] = ACTIONS(7355), - [anon_sym_CARET] = ACTIONS(7355), - [anon_sym_AMP] = ACTIONS(7355), - [anon_sym_EQ_EQ] = ACTIONS(7357), - [anon_sym_BANG_EQ] = ACTIONS(7357), - [anon_sym_GT] = ACTIONS(7355), - [anon_sym_GT_EQ] = ACTIONS(7357), - [anon_sym_LT_EQ] = ACTIONS(7355), - [anon_sym_LT] = ACTIONS(7355), - [anon_sym_LT_LT] = ACTIONS(7355), - [anon_sym_GT_GT] = ACTIONS(7355), - [anon_sym_SEMI] = ACTIONS(7357), - [anon_sym___extension__] = ACTIONS(7355), - [anon_sym___attribute__] = ACTIONS(7355), - [anon_sym___attribute] = ACTIONS(7355), - [anon_sym_COLON] = ACTIONS(7355), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7357), - [anon_sym_LBRACE] = ACTIONS(7357), - [anon_sym_RBRACE] = ACTIONS(7357), - [anon_sym_LBRACK] = ACTIONS(7357), - [anon_sym_EQ] = ACTIONS(7355), - [anon_sym_const] = ACTIONS(7355), - [anon_sym_constexpr] = ACTIONS(7355), - [anon_sym_volatile] = ACTIONS(7355), - [anon_sym_restrict] = ACTIONS(7355), - [anon_sym___restrict__] = ACTIONS(7355), - [anon_sym__Atomic] = ACTIONS(7355), - [anon_sym__Noreturn] = ACTIONS(7355), - [anon_sym_noreturn] = ACTIONS(7355), - [anon_sym__Nonnull] = ACTIONS(7355), - [anon_sym_mutable] = ACTIONS(7355), - [anon_sym_constinit] = ACTIONS(7355), - [anon_sym_consteval] = ACTIONS(7355), - [anon_sym_alignas] = ACTIONS(7355), - [anon_sym__Alignas] = ACTIONS(7355), - [anon_sym_QMARK] = ACTIONS(7357), - [anon_sym_STAR_EQ] = ACTIONS(7357), - [anon_sym_SLASH_EQ] = ACTIONS(7357), - [anon_sym_PERCENT_EQ] = ACTIONS(7357), - [anon_sym_PLUS_EQ] = ACTIONS(7357), - [anon_sym_DASH_EQ] = ACTIONS(7357), - [anon_sym_LT_LT_EQ] = ACTIONS(7357), - [anon_sym_GT_GT_EQ] = ACTIONS(7357), - [anon_sym_AMP_EQ] = ACTIONS(7357), - [anon_sym_CARET_EQ] = ACTIONS(7357), - [anon_sym_PIPE_EQ] = ACTIONS(7357), + [STATE(2109)] = { + [sym_function_definition] = STATE(780), + [sym_declaration] = STATE(780), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6413), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_call_modifier] = STATE(2707), + [sym_declaration_list] = STATE(780), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(5936), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(7361), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(2110)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2683), + [sym_ms_pointer_modifier] = STATE(2115), + [sym__abstract_declarator] = STATE(5283), + [sym_abstract_parenthesized_declarator] = STATE(5063), + [sym_abstract_pointer_declarator] = STATE(5063), + [sym_abstract_function_declarator] = STATE(5063), + [sym_abstract_array_declarator] = STATE(5063), + [sym_type_qualifier] = STATE(2509), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1978), + [sym_abstract_reference_declarator] = STATE(5063), + [sym__function_declarator_seq] = STATE(5065), + [aux_sym__type_definition_type_repeat1] = STATE(2509), + [aux_sym_pointer_declarator_repeat1] = STATE(2115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(7112), + [anon_sym_DASH] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6861), + [anon_sym_STAR] = ACTIONS(7363), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_PIPE_PIPE] = ACTIONS(6859), + [anon_sym_AMP_AMP] = ACTIONS(7365), + [anon_sym_PIPE] = ACTIONS(6861), + [anon_sym_CARET] = ACTIONS(6861), + [anon_sym_AMP] = ACTIONS(7367), + [anon_sym_EQ_EQ] = ACTIONS(6859), + [anon_sym_BANG_EQ] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6861), + [anon_sym_GT_EQ] = ACTIONS(6859), + [anon_sym_LT_EQ] = ACTIONS(6861), + [anon_sym_LT] = ACTIONS(6861), + [anon_sym_LT_LT] = ACTIONS(6861), + [anon_sym_GT_GT] = ACTIONS(6861), + [anon_sym___extension__] = ACTIONS(7120), + [sym_ms_restrict_modifier] = ACTIONS(7122), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7124), + [sym_ms_signed_ptr_modifier] = ACTIONS(7124), + [anon_sym__unaligned] = ACTIONS(7126), + [anon_sym___unaligned] = ACTIONS(7126), + [anon_sym_LBRACK] = ACTIONS(7128), + [anon_sym_RBRACK] = ACTIONS(6859), + [anon_sym_EQ] = ACTIONS(6861), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(7120), + [anon_sym_volatile] = ACTIONS(7120), + [anon_sym_restrict] = ACTIONS(7120), + [anon_sym___restrict__] = ACTIONS(7120), + [anon_sym__Atomic] = ACTIONS(7120), + [anon_sym__Noreturn] = ACTIONS(7120), + [anon_sym_noreturn] = ACTIONS(7120), + [anon_sym__Nonnull] = ACTIONS(7120), + [anon_sym_mutable] = ACTIONS(7120), + [anon_sym_constinit] = ACTIONS(7120), + [anon_sym_consteval] = ACTIONS(7120), + [anon_sym_alignas] = ACTIONS(7130), + [anon_sym__Alignas] = ACTIONS(7130), + [anon_sym_QMARK] = ACTIONS(6859), + [anon_sym_STAR_EQ] = ACTIONS(6859), + [anon_sym_SLASH_EQ] = ACTIONS(6859), + [anon_sym_PERCENT_EQ] = ACTIONS(6859), + [anon_sym_PLUS_EQ] = ACTIONS(6859), + [anon_sym_DASH_EQ] = ACTIONS(6859), + [anon_sym_LT_LT_EQ] = ACTIONS(6859), + [anon_sym_GT_GT_EQ] = ACTIONS(6859), + [anon_sym_AMP_EQ] = ACTIONS(6859), + [anon_sym_CARET_EQ] = ACTIONS(6859), + [anon_sym_PIPE_EQ] = ACTIONS(6859), + [anon_sym_and_eq] = ACTIONS(6859), + [anon_sym_or_eq] = ACTIONS(6859), + [anon_sym_xor_eq] = ACTIONS(6859), + [anon_sym_LT_EQ_GT] = ACTIONS(6859), + [anon_sym_or] = ACTIONS(6861), + [anon_sym_and] = ACTIONS(6861), + [anon_sym_bitor] = ACTIONS(6859), + [anon_sym_xor] = ACTIONS(6861), + [anon_sym_bitand] = ACTIONS(6859), + [anon_sym_not_eq] = ACTIONS(6859), + [anon_sym_DASH_DASH] = ACTIONS(6859), + [anon_sym_PLUS_PLUS] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6861), + [anon_sym_DOT_STAR] = ACTIONS(6859), + [anon_sym_DASH_GT] = ACTIONS(6859), + [sym_comment] = ACTIONS(3), + }, + [STATE(2111)] = { + [sym_function_definition] = STATE(915), + [sym_declaration] = STATE(915), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6385), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_call_modifier] = STATE(2684), + [sym_declaration_list] = STATE(915), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(5936), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(7369), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(2112)] = { + [sym_template_argument_list] = STATE(2090), + [sym_identifier] = ACTIONS(7371), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5657), + [anon_sym_COMMA] = ACTIONS(5657), + [anon_sym_RPAREN] = ACTIONS(5657), + [aux_sym_preproc_if_token2] = ACTIONS(5657), + [aux_sym_preproc_else_token1] = ACTIONS(5657), + [aux_sym_preproc_elif_token1] = ACTIONS(7371), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5657), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5657), + [anon_sym_LPAREN2] = ACTIONS(5657), + [anon_sym_DASH] = ACTIONS(7371), + [anon_sym_PLUS] = ACTIONS(7371), + [anon_sym_STAR] = ACTIONS(7371), + [anon_sym_SLASH] = ACTIONS(7371), + [anon_sym_PERCENT] = ACTIONS(7371), + [anon_sym_PIPE_PIPE] = ACTIONS(5657), + [anon_sym_AMP_AMP] = ACTIONS(5657), + [anon_sym_PIPE] = ACTIONS(7371), + [anon_sym_CARET] = ACTIONS(7371), + [anon_sym_AMP] = ACTIONS(7371), + [anon_sym_EQ_EQ] = ACTIONS(5657), + [anon_sym_BANG_EQ] = ACTIONS(5657), + [anon_sym_GT] = ACTIONS(7371), + [anon_sym_GT_EQ] = ACTIONS(5657), + [anon_sym_LT_EQ] = ACTIONS(7371), + [anon_sym_LT] = ACTIONS(7266), + [anon_sym_LT_LT] = ACTIONS(7371), + [anon_sym_GT_GT] = ACTIONS(7371), + [anon_sym_SEMI] = ACTIONS(5657), + [anon_sym___extension__] = ACTIONS(7371), + [anon_sym___attribute__] = ACTIONS(7371), + [anon_sym___attribute] = ACTIONS(7371), + [anon_sym_COLON] = ACTIONS(7371), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5657), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_RBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5657), + [anon_sym_EQ] = ACTIONS(7371), + [anon_sym_const] = ACTIONS(7371), + [anon_sym_constexpr] = ACTIONS(7371), + [anon_sym_volatile] = ACTIONS(7371), + [anon_sym_restrict] = ACTIONS(7371), + [anon_sym___restrict__] = ACTIONS(7371), + [anon_sym__Atomic] = ACTIONS(7371), + [anon_sym__Noreturn] = ACTIONS(7371), + [anon_sym_noreturn] = ACTIONS(7371), + [anon_sym__Nonnull] = ACTIONS(7371), + [anon_sym_mutable] = ACTIONS(7371), + [anon_sym_constinit] = ACTIONS(7371), + [anon_sym_consteval] = ACTIONS(7371), + [anon_sym_alignas] = ACTIONS(7371), + [anon_sym__Alignas] = ACTIONS(7371), + [anon_sym_QMARK] = ACTIONS(5657), + [anon_sym_STAR_EQ] = ACTIONS(5657), + [anon_sym_SLASH_EQ] = ACTIONS(5657), + [anon_sym_PERCENT_EQ] = ACTIONS(5657), + [anon_sym_PLUS_EQ] = ACTIONS(5657), + [anon_sym_DASH_EQ] = ACTIONS(5657), + [anon_sym_LT_LT_EQ] = ACTIONS(5657), + [anon_sym_GT_GT_EQ] = ACTIONS(5657), + [anon_sym_AMP_EQ] = ACTIONS(5657), + [anon_sym_CARET_EQ] = ACTIONS(5657), + [anon_sym_PIPE_EQ] = ACTIONS(5657), + [anon_sym_and_eq] = ACTIONS(7371), + [anon_sym_or_eq] = ACTIONS(7371), + [anon_sym_xor_eq] = ACTIONS(7371), + [anon_sym_LT_EQ_GT] = ACTIONS(5657), + [anon_sym_or] = ACTIONS(7371), + [anon_sym_and] = ACTIONS(7371), + [anon_sym_bitor] = ACTIONS(7371), + [anon_sym_xor] = ACTIONS(7371), + [anon_sym_bitand] = ACTIONS(7371), + [anon_sym_not_eq] = ACTIONS(7371), + [anon_sym_DASH_DASH] = ACTIONS(5657), + [anon_sym_PLUS_PLUS] = ACTIONS(5657), + [anon_sym_DOT] = ACTIONS(7371), + [anon_sym_DOT_STAR] = ACTIONS(5657), + [anon_sym_DASH_GT] = ACTIONS(5657), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7371), + [anon_sym_override] = ACTIONS(7371), + [anon_sym_requires] = ACTIONS(7371), + [anon_sym_COLON_RBRACK] = ACTIONS(5657), + }, + [STATE(2113)] = { + [sym__abstract_declarator] = STATE(4149), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2006), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1953), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), + [anon_sym_COMMA] = ACTIONS(7355), + [anon_sym_RPAREN] = ACTIONS(7355), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7353), + [anon_sym_PLUS] = ACTIONS(7353), + [anon_sym_STAR] = ACTIONS(6843), + [anon_sym_SLASH] = ACTIONS(7353), + [anon_sym_PERCENT] = ACTIONS(7353), + [anon_sym_PIPE_PIPE] = ACTIONS(7355), + [anon_sym_AMP_AMP] = ACTIONS(6845), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_CARET] = ACTIONS(7353), + [anon_sym_AMP] = ACTIONS(6847), + [anon_sym_EQ_EQ] = ACTIONS(7355), + [anon_sym_BANG_EQ] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_EQ] = ACTIONS(7355), + [anon_sym_LT_EQ] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_LT_LT] = ACTIONS(7353), + [anon_sym_GT_GT] = ACTIONS(7353), + [anon_sym_SEMI] = ACTIONS(7355), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym_COLON] = ACTIONS(7353), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7355), + [anon_sym_RBRACE] = ACTIONS(7355), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7353), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(7355), + [anon_sym_STAR_EQ] = ACTIONS(7355), + [anon_sym_SLASH_EQ] = ACTIONS(7355), + [anon_sym_PERCENT_EQ] = ACTIONS(7355), + [anon_sym_PLUS_EQ] = ACTIONS(7355), + [anon_sym_DASH_EQ] = ACTIONS(7355), + [anon_sym_LT_LT_EQ] = ACTIONS(7355), + [anon_sym_GT_GT_EQ] = ACTIONS(7355), + [anon_sym_AMP_EQ] = ACTIONS(7355), + [anon_sym_CARET_EQ] = ACTIONS(7355), + [anon_sym_PIPE_EQ] = ACTIONS(7355), [anon_sym_and_eq] = ACTIONS(7355), [anon_sym_or_eq] = ACTIONS(7355), [anon_sym_xor_eq] = ACTIONS(7355), - [anon_sym_LT_EQ_GT] = ACTIONS(7357), - [anon_sym_or] = ACTIONS(7355), - [anon_sym_and] = ACTIONS(7355), + [anon_sym_LT_EQ_GT] = ACTIONS(7355), + [anon_sym_or] = ACTIONS(7353), + [anon_sym_and] = ACTIONS(7353), [anon_sym_bitor] = ACTIONS(7355), - [anon_sym_xor] = ACTIONS(7355), + [anon_sym_xor] = ACTIONS(7353), [anon_sym_bitand] = ACTIONS(7355), [anon_sym_not_eq] = ACTIONS(7355), - [anon_sym_DASH_DASH] = ACTIONS(7357), - [anon_sym_PLUS_PLUS] = ACTIONS(7357), - [anon_sym_DOT] = ACTIONS(7355), - [anon_sym_DOT_STAR] = ACTIONS(7357), - [anon_sym_DASH_GT] = ACTIONS(7357), + [anon_sym_DASH_DASH] = ACTIONS(7355), + [anon_sym_PLUS_PLUS] = ACTIONS(7355), + [anon_sym_DOT] = ACTIONS(7353), + [anon_sym_DOT_STAR] = ACTIONS(7355), + [anon_sym_DASH_GT] = ACTIONS(7355), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7355), [anon_sym_override] = ACTIONS(7355), [anon_sym_requires] = ACTIONS(7355), - [anon_sym_COLON_RBRACK] = ACTIONS(7357), + [anon_sym_COLON_RBRACK] = ACTIONS(7355), }, - [STATE(2118)] = { - [sym_identifier] = ACTIONS(7359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), - [anon_sym_COMMA] = ACTIONS(7361), - [anon_sym_RPAREN] = ACTIONS(7361), - [aux_sym_preproc_if_token2] = ACTIONS(7361), - [aux_sym_preproc_else_token1] = ACTIONS(7361), - [aux_sym_preproc_elif_token1] = ACTIONS(7359), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), - [anon_sym_LPAREN2] = ACTIONS(7361), - [anon_sym_DASH] = ACTIONS(7359), - [anon_sym_PLUS] = ACTIONS(7359), - [anon_sym_STAR] = ACTIONS(7359), - [anon_sym_SLASH] = ACTIONS(7359), - [anon_sym_PERCENT] = ACTIONS(7359), - [anon_sym_PIPE_PIPE] = ACTIONS(7361), - [anon_sym_AMP_AMP] = ACTIONS(7361), - [anon_sym_PIPE] = ACTIONS(7359), - [anon_sym_CARET] = ACTIONS(7359), - [anon_sym_AMP] = ACTIONS(7359), - [anon_sym_EQ_EQ] = ACTIONS(7361), - [anon_sym_BANG_EQ] = ACTIONS(7361), - [anon_sym_GT] = ACTIONS(7359), - [anon_sym_GT_EQ] = ACTIONS(7361), - [anon_sym_LT_EQ] = ACTIONS(7359), - [anon_sym_LT] = ACTIONS(7359), - [anon_sym_LT_LT] = ACTIONS(7359), - [anon_sym_GT_GT] = ACTIONS(7359), - [anon_sym_SEMI] = ACTIONS(7361), - [anon_sym___extension__] = ACTIONS(7359), - [anon_sym___attribute__] = ACTIONS(7359), - [anon_sym___attribute] = ACTIONS(7359), - [anon_sym_COLON] = ACTIONS(7359), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), - [anon_sym_LBRACE] = ACTIONS(7361), - [anon_sym_RBRACE] = ACTIONS(7361), - [anon_sym_LBRACK] = ACTIONS(7361), - [anon_sym_EQ] = ACTIONS(7359), - [anon_sym_const] = ACTIONS(7359), - [anon_sym_constexpr] = ACTIONS(7359), - [anon_sym_volatile] = ACTIONS(7359), - [anon_sym_restrict] = ACTIONS(7359), - [anon_sym___restrict__] = ACTIONS(7359), - [anon_sym__Atomic] = ACTIONS(7359), - [anon_sym__Noreturn] = ACTIONS(7359), - [anon_sym_noreturn] = ACTIONS(7359), - [anon_sym__Nonnull] = ACTIONS(7359), - [anon_sym_mutable] = ACTIONS(7359), - [anon_sym_constinit] = ACTIONS(7359), - [anon_sym_consteval] = ACTIONS(7359), - [anon_sym_alignas] = ACTIONS(7359), - [anon_sym__Alignas] = ACTIONS(7359), - [anon_sym_QMARK] = ACTIONS(7361), - [anon_sym_STAR_EQ] = ACTIONS(7361), - [anon_sym_SLASH_EQ] = ACTIONS(7361), - [anon_sym_PERCENT_EQ] = ACTIONS(7361), - [anon_sym_PLUS_EQ] = ACTIONS(7361), - [anon_sym_DASH_EQ] = ACTIONS(7361), - [anon_sym_LT_LT_EQ] = ACTIONS(7361), - [anon_sym_GT_GT_EQ] = ACTIONS(7361), - [anon_sym_AMP_EQ] = ACTIONS(7361), - [anon_sym_CARET_EQ] = ACTIONS(7361), - [anon_sym_PIPE_EQ] = ACTIONS(7361), - [anon_sym_and_eq] = ACTIONS(7359), - [anon_sym_or_eq] = ACTIONS(7359), - [anon_sym_xor_eq] = ACTIONS(7359), - [anon_sym_LT_EQ_GT] = ACTIONS(7361), - [anon_sym_or] = ACTIONS(7359), - [anon_sym_and] = ACTIONS(7359), - [anon_sym_bitor] = ACTIONS(7359), - [anon_sym_xor] = ACTIONS(7359), - [anon_sym_bitand] = ACTIONS(7359), - [anon_sym_not_eq] = ACTIONS(7359), - [anon_sym_DASH_DASH] = ACTIONS(7361), - [anon_sym_PLUS_PLUS] = ACTIONS(7361), - [anon_sym_DOT] = ACTIONS(7359), - [anon_sym_DOT_STAR] = ACTIONS(7361), - [anon_sym_DASH_GT] = ACTIONS(7361), + [STATE(2114)] = { + [sym_identifier] = ACTIONS(7291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_RPAREN] = ACTIONS(7293), + [aux_sym_preproc_if_token2] = ACTIONS(7293), + [aux_sym_preproc_else_token1] = ACTIONS(7293), + [aux_sym_preproc_elif_token1] = ACTIONS(7291), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7293), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7291), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7291), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7291), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7291), + [anon_sym_GT_GT] = ACTIONS(7291), + [anon_sym_SEMI] = ACTIONS(7293), + [anon_sym___extension__] = ACTIONS(7291), + [anon_sym___attribute__] = ACTIONS(7291), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_COLON] = ACTIONS(7291), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7293), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_RBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_EQ] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7291), + [anon_sym_volatile] = ACTIONS(7291), + [anon_sym_restrict] = ACTIONS(7291), + [anon_sym___restrict__] = ACTIONS(7291), + [anon_sym__Atomic] = ACTIONS(7291), + [anon_sym__Noreturn] = ACTIONS(7291), + [anon_sym_noreturn] = ACTIONS(7291), + [anon_sym__Nonnull] = ACTIONS(7291), + [anon_sym_mutable] = ACTIONS(7291), + [anon_sym_constinit] = ACTIONS(7291), + [anon_sym_consteval] = ACTIONS(7291), + [anon_sym_alignas] = ACTIONS(7291), + [anon_sym__Alignas] = ACTIONS(7291), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_STAR_EQ] = ACTIONS(7293), + [anon_sym_SLASH_EQ] = ACTIONS(7293), + [anon_sym_PERCENT_EQ] = ACTIONS(7293), + [anon_sym_PLUS_EQ] = ACTIONS(7293), + [anon_sym_DASH_EQ] = ACTIONS(7293), + [anon_sym_LT_LT_EQ] = ACTIONS(7293), + [anon_sym_GT_GT_EQ] = ACTIONS(7293), + [anon_sym_AMP_EQ] = ACTIONS(7293), + [anon_sym_CARET_EQ] = ACTIONS(7293), + [anon_sym_PIPE_EQ] = ACTIONS(7293), + [anon_sym_and_eq] = ACTIONS(7291), + [anon_sym_or_eq] = ACTIONS(7291), + [anon_sym_xor_eq] = ACTIONS(7291), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_bitor] = ACTIONS(7291), + [anon_sym_xor] = ACTIONS(7291), + [anon_sym_bitand] = ACTIONS(7291), + [anon_sym_not_eq] = ACTIONS(7291), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7293), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7359), - [anon_sym_override] = ACTIONS(7359), - [anon_sym_requires] = ACTIONS(7359), - [anon_sym_COLON_RBRACK] = ACTIONS(7361), + [sym_auto] = ACTIONS(7291), + [anon_sym_decltype] = ACTIONS(7291), + [anon_sym_final] = ACTIONS(7291), + [anon_sym_override] = ACTIONS(7291), + [anon_sym_requires] = ACTIONS(7291), + [anon_sym_COLON_RBRACK] = ACTIONS(7293), }, - [STATE(2119)] = { - [sym_type_qualifier] = STATE(2105), - [sym_alignas_qualifier] = STATE(2278), - [aux_sym__type_definition_type_repeat1] = STATE(2105), - [aux_sym_sized_type_specifier_repeat1] = STATE(2220), - [sym_identifier] = ACTIONS(7363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), - [anon_sym_COMMA] = ACTIONS(6812), - [anon_sym_RPAREN] = ACTIONS(6812), - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_STAR] = ACTIONS(6814), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_PERCENT] = ACTIONS(6814), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_CARET] = ACTIONS(6814), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_LT_LT] = ACTIONS(6814), - [anon_sym_GT_GT] = ACTIONS(6814), - [anon_sym___extension__] = ACTIONS(7365), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_signed] = ACTIONS(7368), - [anon_sym_unsigned] = ACTIONS(7368), - [anon_sym_long] = ACTIONS(7368), - [anon_sym_short] = ACTIONS(7368), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_EQ] = ACTIONS(6814), - [anon_sym_const] = ACTIONS(7365), - [anon_sym_constexpr] = ACTIONS(7365), - [anon_sym_volatile] = ACTIONS(7365), - [anon_sym_restrict] = ACTIONS(7365), - [anon_sym___restrict__] = ACTIONS(7365), - [anon_sym__Atomic] = ACTIONS(7365), - [anon_sym__Noreturn] = ACTIONS(7365), - [anon_sym_noreturn] = ACTIONS(7365), - [anon_sym__Nonnull] = ACTIONS(7365), - [anon_sym_mutable] = ACTIONS(7365), - [anon_sym_constinit] = ACTIONS(7365), - [anon_sym_consteval] = ACTIONS(7365), - [anon_sym_alignas] = ACTIONS(7370), - [anon_sym__Alignas] = ACTIONS(7370), - [sym_primitive_type] = ACTIONS(7373), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_STAR_EQ] = ACTIONS(6812), - [anon_sym_SLASH_EQ] = ACTIONS(6812), - [anon_sym_PERCENT_EQ] = ACTIONS(6812), - [anon_sym_PLUS_EQ] = ACTIONS(6812), - [anon_sym_DASH_EQ] = ACTIONS(6812), - [anon_sym_LT_LT_EQ] = ACTIONS(6812), - [anon_sym_GT_GT_EQ] = ACTIONS(6812), - [anon_sym_AMP_EQ] = ACTIONS(6812), - [anon_sym_CARET_EQ] = ACTIONS(6812), - [anon_sym_PIPE_EQ] = ACTIONS(6812), - [anon_sym_and_eq] = ACTIONS(6814), - [anon_sym_or_eq] = ACTIONS(6814), - [anon_sym_xor_eq] = ACTIONS(6814), - [anon_sym_LT_EQ_GT] = ACTIONS(6812), - [anon_sym_or] = ACTIONS(6814), - [anon_sym_and] = ACTIONS(6814), - [anon_sym_bitor] = ACTIONS(6814), - [anon_sym_xor] = ACTIONS(6814), - [anon_sym_bitand] = ACTIONS(6814), - [anon_sym_not_eq] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6814), - [anon_sym_DOT_STAR] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6814), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6814), - [anon_sym_override] = ACTIONS(6814), - [anon_sym_requires] = ACTIONS(6814), - [anon_sym_DASH_GT_STAR] = ACTIONS(6812), + [STATE(2115)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2683), + [sym_ms_pointer_modifier] = STATE(2487), + [sym__abstract_declarator] = STATE(5305), + [sym_abstract_parenthesized_declarator] = STATE(5063), + [sym_abstract_pointer_declarator] = STATE(5063), + [sym_abstract_function_declarator] = STATE(5063), + [sym_abstract_array_declarator] = STATE(5063), + [sym_type_qualifier] = STATE(2519), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1978), + [sym_abstract_reference_declarator] = STATE(5063), + [sym__function_declarator_seq] = STATE(5065), + [aux_sym__type_definition_type_repeat1] = STATE(2519), + [aux_sym_pointer_declarator_repeat1] = STATE(2487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(7112), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(7363), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(7365), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(7367), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(7120), + [sym_ms_restrict_modifier] = ACTIONS(7122), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7124), + [sym_ms_signed_ptr_modifier] = ACTIONS(7124), + [anon_sym__unaligned] = ACTIONS(7126), + [anon_sym___unaligned] = ACTIONS(7126), + [anon_sym_LBRACK] = ACTIONS(7128), + [anon_sym_RBRACK] = ACTIONS(6823), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(7120), + [anon_sym_volatile] = ACTIONS(7120), + [anon_sym_restrict] = ACTIONS(7120), + [anon_sym___restrict__] = ACTIONS(7120), + [anon_sym__Atomic] = ACTIONS(7120), + [anon_sym__Noreturn] = ACTIONS(7120), + [anon_sym_noreturn] = ACTIONS(7120), + [anon_sym__Nonnull] = ACTIONS(7120), + [anon_sym_mutable] = ACTIONS(7120), + [anon_sym_constinit] = ACTIONS(7120), + [anon_sym_consteval] = ACTIONS(7120), + [anon_sym_alignas] = ACTIONS(7130), + [anon_sym__Alignas] = ACTIONS(7130), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6823), + [anon_sym_or_eq] = ACTIONS(6823), + [anon_sym_xor_eq] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), }, - [STATE(2120)] = { - [sym_identifier] = ACTIONS(7375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7377), - [anon_sym_COMMA] = ACTIONS(7377), - [anon_sym_RPAREN] = ACTIONS(7377), - [aux_sym_preproc_if_token2] = ACTIONS(7377), - [aux_sym_preproc_else_token1] = ACTIONS(7377), - [aux_sym_preproc_elif_token1] = ACTIONS(7375), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7377), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7377), - [anon_sym_LPAREN2] = ACTIONS(7377), - [anon_sym_DASH] = ACTIONS(7375), - [anon_sym_PLUS] = ACTIONS(7375), + [STATE(2116)] = { + [sym_function_definition] = STATE(820), + [sym_declaration] = STATE(820), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6406), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_call_modifier] = STATE(2694), + [sym_declaration_list] = STATE(820), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(5936), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(7373), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(2117)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2725), + [sym_ms_pointer_modifier] = STATE(2127), + [sym__abstract_declarator] = STATE(5418), + [sym_abstract_parenthesized_declarator] = STATE(5090), + [sym_abstract_pointer_declarator] = STATE(5090), + [sym_abstract_function_declarator] = STATE(5090), + [sym_abstract_array_declarator] = STATE(5090), + [sym_type_qualifier] = STATE(2448), + [sym_alignas_qualifier] = STATE(2423), + [sym_parameter_list] = STATE(1975), + [sym_abstract_reference_declarator] = STATE(5090), + [sym__function_declarator_seq] = STATE(5091), + [aux_sym__type_definition_type_repeat1] = STATE(2448), + [aux_sym_pointer_declarator_repeat1] = STATE(2127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6861), [anon_sym_STAR] = ACTIONS(7375), - [anon_sym_SLASH] = ACTIONS(7375), - [anon_sym_PERCENT] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_PIPE_PIPE] = ACTIONS(6859), [anon_sym_AMP_AMP] = ACTIONS(7377), - [anon_sym_PIPE] = ACTIONS(7375), - [anon_sym_CARET] = ACTIONS(7375), - [anon_sym_AMP] = ACTIONS(7375), - [anon_sym_EQ_EQ] = ACTIONS(7377), - [anon_sym_BANG_EQ] = ACTIONS(7377), - [anon_sym_GT] = ACTIONS(7375), - [anon_sym_GT_EQ] = ACTIONS(7377), - [anon_sym_LT_EQ] = ACTIONS(7375), - [anon_sym_LT] = ACTIONS(7375), - [anon_sym_LT_LT] = ACTIONS(7375), - [anon_sym_GT_GT] = ACTIONS(7375), - [anon_sym_SEMI] = ACTIONS(7377), - [anon_sym___extension__] = ACTIONS(7375), - [anon_sym___attribute__] = ACTIONS(7375), - [anon_sym___attribute] = ACTIONS(7375), - [anon_sym_COLON] = ACTIONS(7375), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7377), - [anon_sym_LBRACE] = ACTIONS(7377), - [anon_sym_RBRACE] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(7377), - [anon_sym_EQ] = ACTIONS(7375), - [anon_sym_const] = ACTIONS(7375), - [anon_sym_constexpr] = ACTIONS(7375), - [anon_sym_volatile] = ACTIONS(7375), - [anon_sym_restrict] = ACTIONS(7375), - [anon_sym___restrict__] = ACTIONS(7375), - [anon_sym__Atomic] = ACTIONS(7375), - [anon_sym__Noreturn] = ACTIONS(7375), - [anon_sym_noreturn] = ACTIONS(7375), - [anon_sym__Nonnull] = ACTIONS(7375), - [anon_sym_mutable] = ACTIONS(7375), - [anon_sym_constinit] = ACTIONS(7375), - [anon_sym_consteval] = ACTIONS(7375), - [anon_sym_alignas] = ACTIONS(7375), - [anon_sym__Alignas] = ACTIONS(7375), - [anon_sym_QMARK] = ACTIONS(7377), - [anon_sym_STAR_EQ] = ACTIONS(7377), - [anon_sym_SLASH_EQ] = ACTIONS(7377), - [anon_sym_PERCENT_EQ] = ACTIONS(7377), - [anon_sym_PLUS_EQ] = ACTIONS(7377), - [anon_sym_DASH_EQ] = ACTIONS(7377), - [anon_sym_LT_LT_EQ] = ACTIONS(7377), - [anon_sym_GT_GT_EQ] = ACTIONS(7377), - [anon_sym_AMP_EQ] = ACTIONS(7377), - [anon_sym_CARET_EQ] = ACTIONS(7377), - [anon_sym_PIPE_EQ] = ACTIONS(7377), - [anon_sym_and_eq] = ACTIONS(7375), - [anon_sym_or_eq] = ACTIONS(7375), - [anon_sym_xor_eq] = ACTIONS(7375), - [anon_sym_LT_EQ_GT] = ACTIONS(7377), - [anon_sym_or] = ACTIONS(7375), - [anon_sym_and] = ACTIONS(7375), - [anon_sym_bitor] = ACTIONS(7375), - [anon_sym_xor] = ACTIONS(7375), - [anon_sym_bitand] = ACTIONS(7375), - [anon_sym_not_eq] = ACTIONS(7375), - [anon_sym_DASH_DASH] = ACTIONS(7377), - [anon_sym_PLUS_PLUS] = ACTIONS(7377), - [anon_sym_DOT] = ACTIONS(7375), - [anon_sym_DOT_STAR] = ACTIONS(7377), - [anon_sym_DASH_GT] = ACTIONS(7377), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7375), - [anon_sym_override] = ACTIONS(7375), - [anon_sym_requires] = ACTIONS(7375), - [anon_sym_COLON_RBRACK] = ACTIONS(7377), - }, - [STATE(2121)] = { - [sym_identifier] = ACTIONS(7379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7381), - [anon_sym_COMMA] = ACTIONS(7381), - [anon_sym_RPAREN] = ACTIONS(7381), - [aux_sym_preproc_if_token2] = ACTIONS(7381), - [aux_sym_preproc_else_token1] = ACTIONS(7381), - [aux_sym_preproc_elif_token1] = ACTIONS(7379), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7381), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7381), - [anon_sym_LPAREN2] = ACTIONS(7381), - [anon_sym_DASH] = ACTIONS(7379), - [anon_sym_PLUS] = ACTIONS(7379), - [anon_sym_STAR] = ACTIONS(7379), - [anon_sym_SLASH] = ACTIONS(7379), - [anon_sym_PERCENT] = ACTIONS(7379), - [anon_sym_PIPE_PIPE] = ACTIONS(7381), - [anon_sym_AMP_AMP] = ACTIONS(7381), - [anon_sym_PIPE] = ACTIONS(7379), - [anon_sym_CARET] = ACTIONS(7379), + [anon_sym_PIPE] = ACTIONS(6861), + [anon_sym_CARET] = ACTIONS(6861), [anon_sym_AMP] = ACTIONS(7379), - [anon_sym_EQ_EQ] = ACTIONS(7381), - [anon_sym_BANG_EQ] = ACTIONS(7381), - [anon_sym_GT] = ACTIONS(7379), - [anon_sym_GT_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7379), - [anon_sym_LT] = ACTIONS(7379), - [anon_sym_LT_LT] = ACTIONS(7379), - [anon_sym_GT_GT] = ACTIONS(7379), - [anon_sym_SEMI] = ACTIONS(7381), - [anon_sym___extension__] = ACTIONS(7379), - [anon_sym___attribute__] = ACTIONS(7379), - [anon_sym___attribute] = ACTIONS(7379), - [anon_sym_COLON] = ACTIONS(7379), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7381), - [anon_sym_LBRACE] = ACTIONS(7381), - [anon_sym_RBRACE] = ACTIONS(7381), - [anon_sym_LBRACK] = ACTIONS(7381), - [anon_sym_EQ] = ACTIONS(7379), - [anon_sym_const] = ACTIONS(7379), - [anon_sym_constexpr] = ACTIONS(7379), - [anon_sym_volatile] = ACTIONS(7379), - [anon_sym_restrict] = ACTIONS(7379), - [anon_sym___restrict__] = ACTIONS(7379), - [anon_sym__Atomic] = ACTIONS(7379), - [anon_sym__Noreturn] = ACTIONS(7379), - [anon_sym_noreturn] = ACTIONS(7379), - [anon_sym__Nonnull] = ACTIONS(7379), - [anon_sym_mutable] = ACTIONS(7379), - [anon_sym_constinit] = ACTIONS(7379), - [anon_sym_consteval] = ACTIONS(7379), - [anon_sym_alignas] = ACTIONS(7379), - [anon_sym__Alignas] = ACTIONS(7379), - [anon_sym_QMARK] = ACTIONS(7381), - [anon_sym_STAR_EQ] = ACTIONS(7381), - [anon_sym_SLASH_EQ] = ACTIONS(7381), - [anon_sym_PERCENT_EQ] = ACTIONS(7381), - [anon_sym_PLUS_EQ] = ACTIONS(7381), - [anon_sym_DASH_EQ] = ACTIONS(7381), - [anon_sym_LT_LT_EQ] = ACTIONS(7381), - [anon_sym_GT_GT_EQ] = ACTIONS(7381), - [anon_sym_AMP_EQ] = ACTIONS(7381), - [anon_sym_CARET_EQ] = ACTIONS(7381), - [anon_sym_PIPE_EQ] = ACTIONS(7381), - [anon_sym_and_eq] = ACTIONS(7379), - [anon_sym_or_eq] = ACTIONS(7379), - [anon_sym_xor_eq] = ACTIONS(7379), - [anon_sym_LT_EQ_GT] = ACTIONS(7381), - [anon_sym_or] = ACTIONS(7379), - [anon_sym_and] = ACTIONS(7379), - [anon_sym_bitor] = ACTIONS(7379), - [anon_sym_xor] = ACTIONS(7379), - [anon_sym_bitand] = ACTIONS(7379), - [anon_sym_not_eq] = ACTIONS(7379), - [anon_sym_DASH_DASH] = ACTIONS(7381), - [anon_sym_PLUS_PLUS] = ACTIONS(7381), - [anon_sym_DOT] = ACTIONS(7379), - [anon_sym_DOT_STAR] = ACTIONS(7381), - [anon_sym_DASH_GT] = ACTIONS(7381), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7379), - [anon_sym_override] = ACTIONS(7379), - [anon_sym_requires] = ACTIONS(7379), - [anon_sym_COLON_RBRACK] = ACTIONS(7381), + [anon_sym_EQ_EQ] = ACTIONS(6859), + [anon_sym_BANG_EQ] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6861), + [anon_sym_GT_EQ] = ACTIONS(6861), + [anon_sym_LT_EQ] = ACTIONS(6861), + [anon_sym_LT] = ACTIONS(6861), + [anon_sym_LT_LT] = ACTIONS(6861), + [anon_sym_GT_GT] = ACTIONS(6861), + [anon_sym___extension__] = ACTIONS(7144), + [sym_ms_restrict_modifier] = ACTIONS(7146), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7148), + [sym_ms_signed_ptr_modifier] = ACTIONS(7148), + [anon_sym__unaligned] = ACTIONS(7150), + [anon_sym___unaligned] = ACTIONS(7150), + [anon_sym_LBRACK] = ACTIONS(7152), + [anon_sym_EQ] = ACTIONS(6861), + [anon_sym_const] = ACTIONS(7154), + [anon_sym_constexpr] = ACTIONS(7144), + [anon_sym_volatile] = ACTIONS(7144), + [anon_sym_restrict] = ACTIONS(7144), + [anon_sym___restrict__] = ACTIONS(7144), + [anon_sym__Atomic] = ACTIONS(7144), + [anon_sym__Noreturn] = ACTIONS(7144), + [anon_sym_noreturn] = ACTIONS(7144), + [anon_sym__Nonnull] = ACTIONS(7144), + [anon_sym_mutable] = ACTIONS(7144), + [anon_sym_constinit] = ACTIONS(7144), + [anon_sym_consteval] = ACTIONS(7144), + [anon_sym_alignas] = ACTIONS(7156), + [anon_sym__Alignas] = ACTIONS(7156), + [anon_sym_QMARK] = ACTIONS(6859), + [anon_sym_STAR_EQ] = ACTIONS(6859), + [anon_sym_SLASH_EQ] = ACTIONS(6859), + [anon_sym_PERCENT_EQ] = ACTIONS(6859), + [anon_sym_PLUS_EQ] = ACTIONS(6859), + [anon_sym_DASH_EQ] = ACTIONS(6859), + [anon_sym_LT_LT_EQ] = ACTIONS(6859), + [anon_sym_GT_GT_EQ] = ACTIONS(6861), + [anon_sym_AMP_EQ] = ACTIONS(6859), + [anon_sym_CARET_EQ] = ACTIONS(6859), + [anon_sym_PIPE_EQ] = ACTIONS(6859), + [anon_sym_and_eq] = ACTIONS(6859), + [anon_sym_or_eq] = ACTIONS(6859), + [anon_sym_xor_eq] = ACTIONS(6859), + [anon_sym_LT_EQ_GT] = ACTIONS(6859), + [anon_sym_or] = ACTIONS(6861), + [anon_sym_and] = ACTIONS(6861), + [anon_sym_bitor] = ACTIONS(6859), + [anon_sym_xor] = ACTIONS(6861), + [anon_sym_bitand] = ACTIONS(6859), + [anon_sym_not_eq] = ACTIONS(6859), + [anon_sym_DASH_DASH] = ACTIONS(6859), + [anon_sym_PLUS_PLUS] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6861), + [anon_sym_DOT_STAR] = ACTIONS(6859), + [anon_sym_DASH_GT] = ACTIONS(6859), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6859), }, - [STATE(2122)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2133), - [sym_identifier] = ACTIONS(7383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7385), - [anon_sym_COMMA] = ACTIONS(7385), - [aux_sym_preproc_if_token2] = ACTIONS(7385), - [aux_sym_preproc_else_token1] = ACTIONS(7385), - [aux_sym_preproc_elif_token1] = ACTIONS(7383), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7385), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7385), - [anon_sym_LPAREN2] = ACTIONS(7385), - [anon_sym_DASH] = ACTIONS(7383), - [anon_sym_PLUS] = ACTIONS(7383), - [anon_sym_STAR] = ACTIONS(7383), - [anon_sym_SLASH] = ACTIONS(7383), - [anon_sym_PERCENT] = ACTIONS(7383), - [anon_sym_PIPE_PIPE] = ACTIONS(7385), - [anon_sym_AMP_AMP] = ACTIONS(7385), - [anon_sym_PIPE] = ACTIONS(7383), - [anon_sym_CARET] = ACTIONS(7383), - [anon_sym_AMP] = ACTIONS(7383), - [anon_sym_EQ_EQ] = ACTIONS(7385), - [anon_sym_BANG_EQ] = ACTIONS(7385), - [anon_sym_GT] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7385), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_LT] = ACTIONS(7383), - [anon_sym_LT_LT] = ACTIONS(7383), - [anon_sym_GT_GT] = ACTIONS(7383), - [anon_sym___extension__] = ACTIONS(7383), - [anon_sym___attribute__] = ACTIONS(7383), - [anon_sym___attribute] = ACTIONS(7383), + [STATE(2118)] = { + [sym_attribute_specifier] = STATE(2195), + [sym_enumerator_list] = STATE(2161), + [sym_identifier] = ACTIONS(7381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7383), + [anon_sym_COMMA] = ACTIONS(7383), + [anon_sym_RPAREN] = ACTIONS(7383), + [aux_sym_preproc_if_token2] = ACTIONS(7383), + [aux_sym_preproc_else_token1] = ACTIONS(7383), + [aux_sym_preproc_elif_token1] = ACTIONS(7381), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7383), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7383), + [anon_sym_LPAREN2] = ACTIONS(7383), + [anon_sym_DASH] = ACTIONS(7381), + [anon_sym_PLUS] = ACTIONS(7381), + [anon_sym_STAR] = ACTIONS(7381), + [anon_sym_SLASH] = ACTIONS(7381), + [anon_sym_PERCENT] = ACTIONS(7381), + [anon_sym_PIPE_PIPE] = ACTIONS(7383), + [anon_sym_AMP_AMP] = ACTIONS(7383), + [anon_sym_PIPE] = ACTIONS(7381), + [anon_sym_CARET] = ACTIONS(7381), + [anon_sym_AMP] = ACTIONS(7381), + [anon_sym_EQ_EQ] = ACTIONS(7383), + [anon_sym_BANG_EQ] = ACTIONS(7383), + [anon_sym_GT] = ACTIONS(7381), + [anon_sym_GT_EQ] = ACTIONS(7383), + [anon_sym_LT_EQ] = ACTIONS(7381), + [anon_sym_LT] = ACTIONS(7381), + [anon_sym_LT_LT] = ACTIONS(7381), + [anon_sym_GT_GT] = ACTIONS(7381), + [anon_sym_SEMI] = ACTIONS(7383), + [anon_sym___extension__] = ACTIONS(7381), + [anon_sym___attribute__] = ACTIONS(7239), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_COLON] = ACTIONS(7381), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7383), [anon_sym_LBRACE] = ACTIONS(7385), - [anon_sym_signed] = ACTIONS(7203), - [anon_sym_unsigned] = ACTIONS(7203), - [anon_sym_long] = ACTIONS(7203), - [anon_sym_short] = ACTIONS(7203), - [anon_sym_LBRACK] = ACTIONS(7385), - [anon_sym_RBRACK] = ACTIONS(7385), - [anon_sym_EQ] = ACTIONS(7383), - [anon_sym_const] = ACTIONS(7383), - [anon_sym_constexpr] = ACTIONS(7383), - [anon_sym_volatile] = ACTIONS(7383), - [anon_sym_restrict] = ACTIONS(7383), - [anon_sym___restrict__] = ACTIONS(7383), - [anon_sym__Atomic] = ACTIONS(7383), - [anon_sym__Noreturn] = ACTIONS(7383), - [anon_sym_noreturn] = ACTIONS(7383), - [anon_sym__Nonnull] = ACTIONS(7383), - [anon_sym_mutable] = ACTIONS(7383), - [anon_sym_constinit] = ACTIONS(7383), - [anon_sym_consteval] = ACTIONS(7383), - [anon_sym_alignas] = ACTIONS(7383), - [anon_sym__Alignas] = ACTIONS(7383), - [anon_sym_QMARK] = ACTIONS(7385), - [anon_sym_STAR_EQ] = ACTIONS(7385), - [anon_sym_SLASH_EQ] = ACTIONS(7385), - [anon_sym_PERCENT_EQ] = ACTIONS(7385), - [anon_sym_PLUS_EQ] = ACTIONS(7385), - [anon_sym_DASH_EQ] = ACTIONS(7385), - [anon_sym_LT_LT_EQ] = ACTIONS(7385), - [anon_sym_GT_GT_EQ] = ACTIONS(7385), - [anon_sym_AMP_EQ] = ACTIONS(7385), - [anon_sym_CARET_EQ] = ACTIONS(7385), - [anon_sym_PIPE_EQ] = ACTIONS(7385), - [anon_sym_and_eq] = ACTIONS(7383), - [anon_sym_or_eq] = ACTIONS(7383), - [anon_sym_xor_eq] = ACTIONS(7383), - [anon_sym_LT_EQ_GT] = ACTIONS(7385), - [anon_sym_or] = ACTIONS(7383), - [anon_sym_and] = ACTIONS(7383), - [anon_sym_bitor] = ACTIONS(7383), - [anon_sym_xor] = ACTIONS(7383), - [anon_sym_bitand] = ACTIONS(7383), - [anon_sym_not_eq] = ACTIONS(7383), - [anon_sym_DASH_DASH] = ACTIONS(7385), - [anon_sym_PLUS_PLUS] = ACTIONS(7385), - [anon_sym_DOT] = ACTIONS(7383), - [anon_sym_DOT_STAR] = ACTIONS(7385), - [anon_sym_DASH_GT] = ACTIONS(7385), + [anon_sym_RBRACE] = ACTIONS(7383), + [anon_sym_LBRACK] = ACTIONS(7383), + [anon_sym_EQ] = ACTIONS(7381), + [anon_sym_const] = ACTIONS(7381), + [anon_sym_constexpr] = ACTIONS(7381), + [anon_sym_volatile] = ACTIONS(7381), + [anon_sym_restrict] = ACTIONS(7381), + [anon_sym___restrict__] = ACTIONS(7381), + [anon_sym__Atomic] = ACTIONS(7381), + [anon_sym__Noreturn] = ACTIONS(7381), + [anon_sym_noreturn] = ACTIONS(7381), + [anon_sym__Nonnull] = ACTIONS(7381), + [anon_sym_mutable] = ACTIONS(7381), + [anon_sym_constinit] = ACTIONS(7381), + [anon_sym_consteval] = ACTIONS(7381), + [anon_sym_alignas] = ACTIONS(7381), + [anon_sym__Alignas] = ACTIONS(7381), + [anon_sym_QMARK] = ACTIONS(7383), + [anon_sym_STAR_EQ] = ACTIONS(7383), + [anon_sym_SLASH_EQ] = ACTIONS(7383), + [anon_sym_PERCENT_EQ] = ACTIONS(7383), + [anon_sym_PLUS_EQ] = ACTIONS(7383), + [anon_sym_DASH_EQ] = ACTIONS(7383), + [anon_sym_LT_LT_EQ] = ACTIONS(7383), + [anon_sym_GT_GT_EQ] = ACTIONS(7383), + [anon_sym_AMP_EQ] = ACTIONS(7383), + [anon_sym_CARET_EQ] = ACTIONS(7383), + [anon_sym_PIPE_EQ] = ACTIONS(7383), + [anon_sym_and_eq] = ACTIONS(7381), + [anon_sym_or_eq] = ACTIONS(7381), + [anon_sym_xor_eq] = ACTIONS(7381), + [anon_sym_LT_EQ_GT] = ACTIONS(7383), + [anon_sym_or] = ACTIONS(7381), + [anon_sym_and] = ACTIONS(7381), + [anon_sym_bitor] = ACTIONS(7381), + [anon_sym_xor] = ACTIONS(7381), + [anon_sym_bitand] = ACTIONS(7381), + [anon_sym_not_eq] = ACTIONS(7381), + [anon_sym_DASH_DASH] = ACTIONS(7383), + [anon_sym_PLUS_PLUS] = ACTIONS(7383), + [anon_sym_DOT] = ACTIONS(7381), + [anon_sym_DOT_STAR] = ACTIONS(7383), + [anon_sym_DASH_GT] = ACTIONS(7383), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7383), - [anon_sym_override] = ACTIONS(7383), - [anon_sym_requires] = ACTIONS(7383), + [anon_sym_final] = ACTIONS(7381), + [anon_sym_override] = ACTIONS(7381), + [anon_sym_requires] = ACTIONS(7381), + [anon_sym_COLON_RBRACK] = ACTIONS(7383), }, - [STATE(2123)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2133), + [STATE(2119)] = { + [sym_attribute_specifier] = STATE(2178), + [sym_enumerator_list] = STATE(2139), [sym_identifier] = ACTIONS(7387), [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), [anon_sym_COMMA] = ACTIONS(7389), + [anon_sym_RPAREN] = ACTIONS(7389), [aux_sym_preproc_if_token2] = ACTIONS(7389), [aux_sym_preproc_else_token1] = ACTIONS(7389), [aux_sym_preproc_elif_token1] = ACTIONS(7387), @@ -312565,16 +324386,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(7387), [anon_sym_LT_LT] = ACTIONS(7387), [anon_sym_GT_GT] = ACTIONS(7387), + [anon_sym_SEMI] = ACTIONS(7389), [anon_sym___extension__] = ACTIONS(7387), - [anon_sym___attribute__] = ACTIONS(7387), - [anon_sym___attribute] = ACTIONS(7387), - [anon_sym_LBRACE] = ACTIONS(7389), - [anon_sym_signed] = ACTIONS(7203), - [anon_sym_unsigned] = ACTIONS(7203), - [anon_sym_long] = ACTIONS(7203), - [anon_sym_short] = ACTIONS(7203), + [anon_sym___attribute__] = ACTIONS(7239), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_COLON] = ACTIONS(7387), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7389), + [anon_sym_LBRACE] = ACTIONS(7385), + [anon_sym_RBRACE] = ACTIONS(7389), [anon_sym_LBRACK] = ACTIONS(7389), - [anon_sym_RBRACK] = ACTIONS(7389), [anon_sym_EQ] = ACTIONS(7387), [anon_sym_const] = ACTIONS(7387), [anon_sym_constexpr] = ACTIONS(7387), @@ -312620,4683 +324440,1871 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(7387), [anon_sym_override] = ACTIONS(7387), [anon_sym_requires] = ACTIONS(7387), + [anon_sym_COLON_RBRACK] = ACTIONS(7389), }, - [STATE(2124)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2133), - [sym_identifier] = ACTIONS(7391), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7393), - [anon_sym_COMMA] = ACTIONS(7393), - [aux_sym_preproc_if_token2] = ACTIONS(7393), - [aux_sym_preproc_else_token1] = ACTIONS(7393), - [aux_sym_preproc_elif_token1] = ACTIONS(7391), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7393), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7393), - [anon_sym_LPAREN2] = ACTIONS(7393), - [anon_sym_DASH] = ACTIONS(7391), - [anon_sym_PLUS] = ACTIONS(7391), - [anon_sym_STAR] = ACTIONS(7391), - [anon_sym_SLASH] = ACTIONS(7391), - [anon_sym_PERCENT] = ACTIONS(7391), - [anon_sym_PIPE_PIPE] = ACTIONS(7393), - [anon_sym_AMP_AMP] = ACTIONS(7393), - [anon_sym_PIPE] = ACTIONS(7391), - [anon_sym_CARET] = ACTIONS(7391), - [anon_sym_AMP] = ACTIONS(7391), - [anon_sym_EQ_EQ] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7393), - [anon_sym_GT] = ACTIONS(7391), - [anon_sym_GT_EQ] = ACTIONS(7393), - [anon_sym_LT_EQ] = ACTIONS(7391), - [anon_sym_LT] = ACTIONS(7391), - [anon_sym_LT_LT] = ACTIONS(7391), - [anon_sym_GT_GT] = ACTIONS(7391), - [anon_sym___extension__] = ACTIONS(7391), - [anon_sym___attribute__] = ACTIONS(7391), - [anon_sym___attribute] = ACTIONS(7391), - [anon_sym_LBRACE] = ACTIONS(7393), - [anon_sym_signed] = ACTIONS(7203), - [anon_sym_unsigned] = ACTIONS(7203), - [anon_sym_long] = ACTIONS(7203), - [anon_sym_short] = ACTIONS(7203), - [anon_sym_LBRACK] = ACTIONS(7393), - [anon_sym_RBRACK] = ACTIONS(7393), - [anon_sym_EQ] = ACTIONS(7391), - [anon_sym_const] = ACTIONS(7391), - [anon_sym_constexpr] = ACTIONS(7391), - [anon_sym_volatile] = ACTIONS(7391), - [anon_sym_restrict] = ACTIONS(7391), - [anon_sym___restrict__] = ACTIONS(7391), - [anon_sym__Atomic] = ACTIONS(7391), - [anon_sym__Noreturn] = ACTIONS(7391), - [anon_sym_noreturn] = ACTIONS(7391), - [anon_sym__Nonnull] = ACTIONS(7391), - [anon_sym_mutable] = ACTIONS(7391), - [anon_sym_constinit] = ACTIONS(7391), - [anon_sym_consteval] = ACTIONS(7391), - [anon_sym_alignas] = ACTIONS(7391), - [anon_sym__Alignas] = ACTIONS(7391), - [anon_sym_QMARK] = ACTIONS(7393), - [anon_sym_STAR_EQ] = ACTIONS(7393), - [anon_sym_SLASH_EQ] = ACTIONS(7393), - [anon_sym_PERCENT_EQ] = ACTIONS(7393), - [anon_sym_PLUS_EQ] = ACTIONS(7393), - [anon_sym_DASH_EQ] = ACTIONS(7393), - [anon_sym_LT_LT_EQ] = ACTIONS(7393), - [anon_sym_GT_GT_EQ] = ACTIONS(7393), - [anon_sym_AMP_EQ] = ACTIONS(7393), - [anon_sym_CARET_EQ] = ACTIONS(7393), - [anon_sym_PIPE_EQ] = ACTIONS(7393), + [STATE(2120)] = { + [sym_decltype_auto] = STATE(2234), + [sym_template_argument_list] = STATE(2090), + [aux_sym_sized_type_specifier_repeat1] = STATE(2209), + [sym_identifier] = ACTIONS(5636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), + [anon_sym_COMMA] = ACTIONS(5643), + [aux_sym_preproc_if_token2] = ACTIONS(5643), + [aux_sym_preproc_else_token1] = ACTIONS(5643), + [aux_sym_preproc_elif_token1] = ACTIONS(5636), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5643), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5643), + [anon_sym_LPAREN2] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5636), + [anon_sym_PLUS] = ACTIONS(5636), + [anon_sym_STAR] = ACTIONS(5636), + [anon_sym_SLASH] = ACTIONS(5636), + [anon_sym_PERCENT] = ACTIONS(5636), + [anon_sym_PIPE_PIPE] = ACTIONS(5643), + [anon_sym_AMP_AMP] = ACTIONS(5643), + [anon_sym_PIPE] = ACTIONS(5636), + [anon_sym_CARET] = ACTIONS(5636), + [anon_sym_AMP] = ACTIONS(5636), + [anon_sym_EQ_EQ] = ACTIONS(5643), + [anon_sym_BANG_EQ] = ACTIONS(5643), + [anon_sym_GT] = ACTIONS(5636), + [anon_sym_GT_EQ] = ACTIONS(5643), + [anon_sym_LT_EQ] = ACTIONS(5636), + [anon_sym_LT] = ACTIONS(7266), + [anon_sym_LT_LT] = ACTIONS(5636), + [anon_sym_GT_GT] = ACTIONS(5636), + [anon_sym___extension__] = ACTIONS(5636), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5643), + [anon_sym_signed] = ACTIONS(6815), + [anon_sym_unsigned] = ACTIONS(6815), + [anon_sym_long] = ACTIONS(6815), + [anon_sym_short] = ACTIONS(6815), + [anon_sym_LBRACK] = ACTIONS(5643), + [anon_sym_EQ] = ACTIONS(5636), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5636), + [anon_sym_volatile] = ACTIONS(5636), + [anon_sym_restrict] = ACTIONS(5636), + [anon_sym___restrict__] = ACTIONS(5636), + [anon_sym__Atomic] = ACTIONS(5636), + [anon_sym__Noreturn] = ACTIONS(5636), + [anon_sym_noreturn] = ACTIONS(5636), + [anon_sym__Nonnull] = ACTIONS(5636), + [anon_sym_mutable] = ACTIONS(5636), + [anon_sym_constinit] = ACTIONS(5636), + [anon_sym_consteval] = ACTIONS(5636), + [anon_sym_alignas] = ACTIONS(5636), + [anon_sym__Alignas] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5643), + [anon_sym_STAR_EQ] = ACTIONS(5643), + [anon_sym_SLASH_EQ] = ACTIONS(5643), + [anon_sym_PERCENT_EQ] = ACTIONS(5643), + [anon_sym_PLUS_EQ] = ACTIONS(5643), + [anon_sym_DASH_EQ] = ACTIONS(5643), + [anon_sym_LT_LT_EQ] = ACTIONS(5643), + [anon_sym_GT_GT_EQ] = ACTIONS(5643), + [anon_sym_AMP_EQ] = ACTIONS(5643), + [anon_sym_CARET_EQ] = ACTIONS(5643), + [anon_sym_PIPE_EQ] = ACTIONS(5643), + [anon_sym_and_eq] = ACTIONS(5636), + [anon_sym_or_eq] = ACTIONS(5636), + [anon_sym_xor_eq] = ACTIONS(5636), + [anon_sym_LT_EQ_GT] = ACTIONS(5643), + [anon_sym_or] = ACTIONS(5636), + [anon_sym_and] = ACTIONS(5636), + [anon_sym_bitor] = ACTIONS(5636), + [anon_sym_xor] = ACTIONS(5636), + [anon_sym_bitand] = ACTIONS(5636), + [anon_sym_not_eq] = ACTIONS(5636), + [anon_sym_DASH_DASH] = ACTIONS(5643), + [anon_sym_PLUS_PLUS] = ACTIONS(5643), + [anon_sym_DOT] = ACTIONS(5636), + [anon_sym_DOT_STAR] = ACTIONS(5643), + [anon_sym_DASH_GT] = ACTIONS(5643), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6817), + [anon_sym_decltype] = ACTIONS(6819), + [anon_sym_final] = ACTIONS(5636), + [anon_sym_override] = ACTIONS(5636), + [anon_sym_requires] = ACTIONS(5636), + }, + [STATE(2121)] = { + [sym__abstract_declarator] = STATE(4157), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2124), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1953), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2124), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), + [anon_sym_COMMA] = ACTIONS(7391), + [anon_sym_RPAREN] = ACTIONS(7391), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7393), + [anon_sym_PLUS] = ACTIONS(7393), + [anon_sym_STAR] = ACTIONS(6843), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_PERCENT] = ACTIONS(7393), + [anon_sym_PIPE_PIPE] = ACTIONS(7391), + [anon_sym_AMP_AMP] = ACTIONS(6845), + [anon_sym_PIPE] = ACTIONS(7393), + [anon_sym_CARET] = ACTIONS(7393), + [anon_sym_AMP] = ACTIONS(6847), + [anon_sym_EQ_EQ] = ACTIONS(7391), + [anon_sym_BANG_EQ] = ACTIONS(7391), + [anon_sym_GT] = ACTIONS(7393), + [anon_sym_GT_EQ] = ACTIONS(7391), + [anon_sym_LT_EQ] = ACTIONS(7393), + [anon_sym_LT] = ACTIONS(7393), + [anon_sym_LT_LT] = ACTIONS(7393), + [anon_sym_GT_GT] = ACTIONS(7393), + [anon_sym_SEMI] = ACTIONS(7391), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym_COLON] = ACTIONS(7393), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7391), + [anon_sym_RBRACE] = ACTIONS(7391), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7393), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(7391), + [anon_sym_STAR_EQ] = ACTIONS(7391), + [anon_sym_SLASH_EQ] = ACTIONS(7391), + [anon_sym_PERCENT_EQ] = ACTIONS(7391), + [anon_sym_PLUS_EQ] = ACTIONS(7391), + [anon_sym_DASH_EQ] = ACTIONS(7391), + [anon_sym_LT_LT_EQ] = ACTIONS(7391), + [anon_sym_GT_GT_EQ] = ACTIONS(7391), + [anon_sym_AMP_EQ] = ACTIONS(7391), + [anon_sym_CARET_EQ] = ACTIONS(7391), + [anon_sym_PIPE_EQ] = ACTIONS(7391), [anon_sym_and_eq] = ACTIONS(7391), [anon_sym_or_eq] = ACTIONS(7391), [anon_sym_xor_eq] = ACTIONS(7391), - [anon_sym_LT_EQ_GT] = ACTIONS(7393), - [anon_sym_or] = ACTIONS(7391), - [anon_sym_and] = ACTIONS(7391), + [anon_sym_LT_EQ_GT] = ACTIONS(7391), + [anon_sym_or] = ACTIONS(7393), + [anon_sym_and] = ACTIONS(7393), [anon_sym_bitor] = ACTIONS(7391), - [anon_sym_xor] = ACTIONS(7391), + [anon_sym_xor] = ACTIONS(7393), [anon_sym_bitand] = ACTIONS(7391), [anon_sym_not_eq] = ACTIONS(7391), - [anon_sym_DASH_DASH] = ACTIONS(7393), - [anon_sym_PLUS_PLUS] = ACTIONS(7393), - [anon_sym_DOT] = ACTIONS(7391), - [anon_sym_DOT_STAR] = ACTIONS(7393), - [anon_sym_DASH_GT] = ACTIONS(7393), + [anon_sym_DASH_DASH] = ACTIONS(7391), + [anon_sym_PLUS_PLUS] = ACTIONS(7391), + [anon_sym_DOT] = ACTIONS(7393), + [anon_sym_DOT_STAR] = ACTIONS(7391), + [anon_sym_DASH_GT] = ACTIONS(7391), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7391), [anon_sym_override] = ACTIONS(7391), [anon_sym_requires] = ACTIONS(7391), + [anon_sym_COLON_RBRACK] = ACTIONS(7391), + }, + [STATE(2122)] = { + [sym__abstract_declarator] = STATE(4238), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2103), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1947), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2103), + [sym_identifier] = ACTIONS(7393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), + [anon_sym_COMMA] = ACTIONS(7391), + [aux_sym_preproc_if_token2] = ACTIONS(7391), + [aux_sym_preproc_else_token1] = ACTIONS(7391), + [aux_sym_preproc_elif_token1] = ACTIONS(7393), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7391), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7391), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7393), + [anon_sym_PLUS] = ACTIONS(7393), + [anon_sym_STAR] = ACTIONS(6827), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_PERCENT] = ACTIONS(7393), + [anon_sym_PIPE_PIPE] = ACTIONS(7391), + [anon_sym_AMP_AMP] = ACTIONS(6829), + [anon_sym_PIPE] = ACTIONS(7393), + [anon_sym_CARET] = ACTIONS(7393), + [anon_sym_AMP] = ACTIONS(6831), + [anon_sym_EQ_EQ] = ACTIONS(7391), + [anon_sym_BANG_EQ] = ACTIONS(7391), + [anon_sym_GT] = ACTIONS(7393), + [anon_sym_GT_EQ] = ACTIONS(7391), + [anon_sym_LT_EQ] = ACTIONS(7393), + [anon_sym_LT] = ACTIONS(7393), + [anon_sym_LT_LT] = ACTIONS(7393), + [anon_sym_GT_GT] = ACTIONS(7393), + [anon_sym___extension__] = ACTIONS(6833), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7393), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(6833), + [anon_sym_volatile] = ACTIONS(6833), + [anon_sym_restrict] = ACTIONS(6833), + [anon_sym___restrict__] = ACTIONS(6833), + [anon_sym__Atomic] = ACTIONS(6833), + [anon_sym__Noreturn] = ACTIONS(6833), + [anon_sym_noreturn] = ACTIONS(6833), + [anon_sym__Nonnull] = ACTIONS(6833), + [anon_sym_mutable] = ACTIONS(6833), + [anon_sym_constinit] = ACTIONS(6833), + [anon_sym_consteval] = ACTIONS(6833), + [anon_sym_alignas] = ACTIONS(6841), + [anon_sym__Alignas] = ACTIONS(6841), + [anon_sym_QMARK] = ACTIONS(7391), + [anon_sym_STAR_EQ] = ACTIONS(7391), + [anon_sym_SLASH_EQ] = ACTIONS(7391), + [anon_sym_PERCENT_EQ] = ACTIONS(7391), + [anon_sym_PLUS_EQ] = ACTIONS(7391), + [anon_sym_DASH_EQ] = ACTIONS(7391), + [anon_sym_LT_LT_EQ] = ACTIONS(7391), + [anon_sym_GT_GT_EQ] = ACTIONS(7391), + [anon_sym_AMP_EQ] = ACTIONS(7391), + [anon_sym_CARET_EQ] = ACTIONS(7391), + [anon_sym_PIPE_EQ] = ACTIONS(7391), + [anon_sym_and_eq] = ACTIONS(7393), + [anon_sym_or_eq] = ACTIONS(7393), + [anon_sym_xor_eq] = ACTIONS(7393), + [anon_sym_LT_EQ_GT] = ACTIONS(7391), + [anon_sym_or] = ACTIONS(7393), + [anon_sym_and] = ACTIONS(7393), + [anon_sym_bitor] = ACTIONS(7393), + [anon_sym_xor] = ACTIONS(7393), + [anon_sym_bitand] = ACTIONS(7393), + [anon_sym_not_eq] = ACTIONS(7393), + [anon_sym_DASH_DASH] = ACTIONS(7391), + [anon_sym_PLUS_PLUS] = ACTIONS(7391), + [anon_sym_DOT] = ACTIONS(7393), + [anon_sym_DOT_STAR] = ACTIONS(7391), + [anon_sym_DASH_GT] = ACTIONS(7391), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7393), + [anon_sym_override] = ACTIONS(7393), + [anon_sym_requires] = ACTIONS(7393), + }, + [STATE(2123)] = { + [sym_function_definition] = STATE(422), + [sym_declaration] = STATE(422), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6411), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_call_modifier] = STATE(2705), + [sym_declaration_list] = STATE(422), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(5936), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(7395), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(2124)] = { + [sym__abstract_declarator] = STATE(4159), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2006), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1953), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), + [anon_sym_COMMA] = ACTIONS(7351), + [anon_sym_RPAREN] = ACTIONS(7351), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_PLUS] = ACTIONS(7349), + [anon_sym_STAR] = ACTIONS(6843), + [anon_sym_SLASH] = ACTIONS(7349), + [anon_sym_PERCENT] = ACTIONS(7349), + [anon_sym_PIPE_PIPE] = ACTIONS(7351), + [anon_sym_AMP_AMP] = ACTIONS(6845), + [anon_sym_PIPE] = ACTIONS(7349), + [anon_sym_CARET] = ACTIONS(7349), + [anon_sym_AMP] = ACTIONS(6847), + [anon_sym_EQ_EQ] = ACTIONS(7351), + [anon_sym_BANG_EQ] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7349), + [anon_sym_GT_EQ] = ACTIONS(7351), + [anon_sym_LT_EQ] = ACTIONS(7349), + [anon_sym_LT] = ACTIONS(7349), + [anon_sym_LT_LT] = ACTIONS(7349), + [anon_sym_GT_GT] = ACTIONS(7349), + [anon_sym_SEMI] = ACTIONS(7351), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym_COLON] = ACTIONS(7349), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7351), + [anon_sym_RBRACE] = ACTIONS(7351), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7349), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(7351), + [anon_sym_STAR_EQ] = ACTIONS(7351), + [anon_sym_SLASH_EQ] = ACTIONS(7351), + [anon_sym_PERCENT_EQ] = ACTIONS(7351), + [anon_sym_PLUS_EQ] = ACTIONS(7351), + [anon_sym_DASH_EQ] = ACTIONS(7351), + [anon_sym_LT_LT_EQ] = ACTIONS(7351), + [anon_sym_GT_GT_EQ] = ACTIONS(7351), + [anon_sym_AMP_EQ] = ACTIONS(7351), + [anon_sym_CARET_EQ] = ACTIONS(7351), + [anon_sym_PIPE_EQ] = ACTIONS(7351), + [anon_sym_and_eq] = ACTIONS(7351), + [anon_sym_or_eq] = ACTIONS(7351), + [anon_sym_xor_eq] = ACTIONS(7351), + [anon_sym_LT_EQ_GT] = ACTIONS(7351), + [anon_sym_or] = ACTIONS(7349), + [anon_sym_and] = ACTIONS(7349), + [anon_sym_bitor] = ACTIONS(7351), + [anon_sym_xor] = ACTIONS(7349), + [anon_sym_bitand] = ACTIONS(7351), + [anon_sym_not_eq] = ACTIONS(7351), + [anon_sym_DASH_DASH] = ACTIONS(7351), + [anon_sym_PLUS_PLUS] = ACTIONS(7351), + [anon_sym_DOT] = ACTIONS(7349), + [anon_sym_DOT_STAR] = ACTIONS(7351), + [anon_sym_DASH_GT] = ACTIONS(7351), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7351), + [anon_sym_override] = ACTIONS(7351), + [anon_sym_requires] = ACTIONS(7351), + [anon_sym_COLON_RBRACK] = ACTIONS(7351), }, [STATE(2125)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2133), - [sym_identifier] = ACTIONS(7395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7397), - [anon_sym_COMMA] = ACTIONS(7397), - [aux_sym_preproc_if_token2] = ACTIONS(7397), - [aux_sym_preproc_else_token1] = ACTIONS(7397), - [aux_sym_preproc_elif_token1] = ACTIONS(7395), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7397), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7397), - [anon_sym_LPAREN2] = ACTIONS(7397), - [anon_sym_DASH] = ACTIONS(7395), - [anon_sym_PLUS] = ACTIONS(7395), - [anon_sym_STAR] = ACTIONS(7395), - [anon_sym_SLASH] = ACTIONS(7395), - [anon_sym_PERCENT] = ACTIONS(7395), - [anon_sym_PIPE_PIPE] = ACTIONS(7397), - [anon_sym_AMP_AMP] = ACTIONS(7397), - [anon_sym_PIPE] = ACTIONS(7395), - [anon_sym_CARET] = ACTIONS(7395), - [anon_sym_AMP] = ACTIONS(7395), - [anon_sym_EQ_EQ] = ACTIONS(7397), - [anon_sym_BANG_EQ] = ACTIONS(7397), - [anon_sym_GT] = ACTIONS(7395), - [anon_sym_GT_EQ] = ACTIONS(7397), - [anon_sym_LT_EQ] = ACTIONS(7395), - [anon_sym_LT] = ACTIONS(7395), - [anon_sym_LT_LT] = ACTIONS(7395), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym___extension__] = ACTIONS(7395), - [anon_sym___attribute__] = ACTIONS(7395), - [anon_sym___attribute] = ACTIONS(7395), - [anon_sym_LBRACE] = ACTIONS(7397), - [anon_sym_signed] = ACTIONS(7203), - [anon_sym_unsigned] = ACTIONS(7203), - [anon_sym_long] = ACTIONS(7203), - [anon_sym_short] = ACTIONS(7203), - [anon_sym_LBRACK] = ACTIONS(7397), - [anon_sym_RBRACK] = ACTIONS(7397), - [anon_sym_EQ] = ACTIONS(7395), - [anon_sym_const] = ACTIONS(7395), - [anon_sym_constexpr] = ACTIONS(7395), - [anon_sym_volatile] = ACTIONS(7395), - [anon_sym_restrict] = ACTIONS(7395), - [anon_sym___restrict__] = ACTIONS(7395), - [anon_sym__Atomic] = ACTIONS(7395), - [anon_sym__Noreturn] = ACTIONS(7395), - [anon_sym_noreturn] = ACTIONS(7395), - [anon_sym__Nonnull] = ACTIONS(7395), - [anon_sym_mutable] = ACTIONS(7395), - [anon_sym_constinit] = ACTIONS(7395), - [anon_sym_consteval] = ACTIONS(7395), - [anon_sym_alignas] = ACTIONS(7395), - [anon_sym__Alignas] = ACTIONS(7395), - [anon_sym_QMARK] = ACTIONS(7397), - [anon_sym_STAR_EQ] = ACTIONS(7397), - [anon_sym_SLASH_EQ] = ACTIONS(7397), - [anon_sym_PERCENT_EQ] = ACTIONS(7397), - [anon_sym_PLUS_EQ] = ACTIONS(7397), - [anon_sym_DASH_EQ] = ACTIONS(7397), - [anon_sym_LT_LT_EQ] = ACTIONS(7397), - [anon_sym_GT_GT_EQ] = ACTIONS(7397), - [anon_sym_AMP_EQ] = ACTIONS(7397), - [anon_sym_CARET_EQ] = ACTIONS(7397), - [anon_sym_PIPE_EQ] = ACTIONS(7397), - [anon_sym_and_eq] = ACTIONS(7395), - [anon_sym_or_eq] = ACTIONS(7395), - [anon_sym_xor_eq] = ACTIONS(7395), - [anon_sym_LT_EQ_GT] = ACTIONS(7397), - [anon_sym_or] = ACTIONS(7395), - [anon_sym_and] = ACTIONS(7395), - [anon_sym_bitor] = ACTIONS(7395), - [anon_sym_xor] = ACTIONS(7395), - [anon_sym_bitand] = ACTIONS(7395), - [anon_sym_not_eq] = ACTIONS(7395), - [anon_sym_DASH_DASH] = ACTIONS(7397), - [anon_sym_PLUS_PLUS] = ACTIONS(7397), - [anon_sym_DOT] = ACTIONS(7395), - [anon_sym_DOT_STAR] = ACTIONS(7397), - [anon_sym_DASH_GT] = ACTIONS(7397), + [sym__abstract_declarator] = STATE(4160), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2113), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1953), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_RPAREN] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(6843), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(6845), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(6847), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym_SEMI] = ACTIONS(7343), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym_COLON] = ACTIONS(7341), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7343), + [anon_sym_RBRACE] = ACTIONS(7343), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7341), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_STAR_EQ] = ACTIONS(7343), + [anon_sym_SLASH_EQ] = ACTIONS(7343), + [anon_sym_PERCENT_EQ] = ACTIONS(7343), + [anon_sym_PLUS_EQ] = ACTIONS(7343), + [anon_sym_DASH_EQ] = ACTIONS(7343), + [anon_sym_LT_LT_EQ] = ACTIONS(7343), + [anon_sym_GT_GT_EQ] = ACTIONS(7343), + [anon_sym_AMP_EQ] = ACTIONS(7343), + [anon_sym_CARET_EQ] = ACTIONS(7343), + [anon_sym_PIPE_EQ] = ACTIONS(7343), + [anon_sym_and_eq] = ACTIONS(7343), + [anon_sym_or_eq] = ACTIONS(7343), + [anon_sym_xor_eq] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7343), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7395), - [anon_sym_override] = ACTIONS(7395), - [anon_sym_requires] = ACTIONS(7395), + [anon_sym_final] = ACTIONS(7343), + [anon_sym_override] = ACTIONS(7343), + [anon_sym_requires] = ACTIONS(7343), + [anon_sym_COLON_RBRACK] = ACTIONS(7343), }, [STATE(2126)] = { - [sym_decltype_auto] = STATE(2101), - [sym_identifier] = ACTIONS(6798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [aux_sym_preproc_if_token2] = ACTIONS(6800), - [aux_sym_preproc_else_token1] = ACTIONS(6800), - [aux_sym_preproc_elif_token1] = ACTIONS(6798), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym_SEMI] = ACTIONS(6800), - [anon_sym___extension__] = ACTIONS(6798), - [anon_sym___attribute__] = ACTIONS(6798), - [anon_sym___attribute] = ACTIONS(6798), - [anon_sym_COLON] = ACTIONS(6798), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(7183), - [anon_sym_RBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6798), - [anon_sym_volatile] = ACTIONS(6798), - [anon_sym_restrict] = ACTIONS(6798), - [anon_sym___restrict__] = ACTIONS(6798), - [anon_sym__Atomic] = ACTIONS(6798), - [anon_sym__Noreturn] = ACTIONS(6798), - [anon_sym_noreturn] = ACTIONS(6798), - [anon_sym__Nonnull] = ACTIONS(6798), - [anon_sym_mutable] = ACTIONS(6798), - [anon_sym_constinit] = ACTIONS(6798), - [anon_sym_consteval] = ACTIONS(6798), - [anon_sym_alignas] = ACTIONS(6798), - [anon_sym__Alignas] = ACTIONS(6798), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6798), - [anon_sym_or_eq] = ACTIONS(6798), - [anon_sym_xor_eq] = ACTIONS(6798), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6798), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6798), - [anon_sym_not_eq] = ACTIONS(6798), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6804), - [anon_sym_decltype] = ACTIONS(6437), - [anon_sym_COLON_RBRACK] = ACTIONS(6800), + [sym__abstract_declarator] = STATE(4165), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2006), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1953), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(6843), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(6845), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(6847), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym_SEMI] = ACTIONS(6823), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym_COLON] = ACTIONS(6821), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6823), + [anon_sym_RBRACE] = ACTIONS(6823), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6823), + [anon_sym_or_eq] = ACTIONS(6823), + [anon_sym_xor_eq] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6823), + [anon_sym_override] = ACTIONS(6823), + [anon_sym_requires] = ACTIONS(6823), + [anon_sym_COLON_RBRACK] = ACTIONS(6823), }, [STATE(2127)] = { - [sym_argument_list] = STATE(3783), - [sym_initializer_list] = STATE(3811), - [sym_identifier] = ACTIONS(6798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [aux_sym_preproc_if_token2] = ACTIONS(6800), - [aux_sym_preproc_else_token1] = ACTIONS(6800), - [aux_sym_preproc_elif_token1] = ACTIONS(6798), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(7399), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym_SEMI] = ACTIONS(6800), - [anon_sym___extension__] = ACTIONS(6798), - [anon_sym___attribute__] = ACTIONS(6798), - [anon_sym___attribute] = ACTIONS(6798), - [anon_sym_COLON] = ACTIONS(6798), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_RBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6798), - [anon_sym_volatile] = ACTIONS(6798), - [anon_sym_restrict] = ACTIONS(6798), - [anon_sym___restrict__] = ACTIONS(6798), - [anon_sym__Atomic] = ACTIONS(6798), - [anon_sym__Noreturn] = ACTIONS(6798), - [anon_sym_noreturn] = ACTIONS(6798), - [anon_sym__Nonnull] = ACTIONS(6798), - [anon_sym_mutable] = ACTIONS(6798), - [anon_sym_constinit] = ACTIONS(6798), - [anon_sym_consteval] = ACTIONS(6798), - [anon_sym_alignas] = ACTIONS(6798), - [anon_sym__Alignas] = ACTIONS(6798), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6798), - [anon_sym_or_eq] = ACTIONS(6798), - [anon_sym_xor_eq] = ACTIONS(6798), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6798), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6798), - [anon_sym_not_eq] = ACTIONS(6798), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6800), + [sym_ms_unaligned_ptr_modifier] = STATE(2725), + [sym_ms_pointer_modifier] = STATE(2438), + [sym__abstract_declarator] = STATE(5512), + [sym_abstract_parenthesized_declarator] = STATE(5090), + [sym_abstract_pointer_declarator] = STATE(5090), + [sym_abstract_function_declarator] = STATE(5090), + [sym_abstract_array_declarator] = STATE(5090), + [sym_type_qualifier] = STATE(2463), + [sym_alignas_qualifier] = STATE(2423), + [sym_parameter_list] = STATE(1975), + [sym_abstract_reference_declarator] = STATE(5090), + [sym__function_declarator_seq] = STATE(5091), + [aux_sym__type_definition_type_repeat1] = STATE(2463), + [aux_sym_pointer_declarator_repeat1] = STATE(2438), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(7375), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(7377), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(7379), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6821), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(7144), + [sym_ms_restrict_modifier] = ACTIONS(7146), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7148), + [sym_ms_signed_ptr_modifier] = ACTIONS(7148), + [anon_sym__unaligned] = ACTIONS(7150), + [anon_sym___unaligned] = ACTIONS(7150), + [anon_sym_LBRACK] = ACTIONS(7152), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(7154), + [anon_sym_constexpr] = ACTIONS(7144), + [anon_sym_volatile] = ACTIONS(7144), + [anon_sym_restrict] = ACTIONS(7144), + [anon_sym___restrict__] = ACTIONS(7144), + [anon_sym__Atomic] = ACTIONS(7144), + [anon_sym__Noreturn] = ACTIONS(7144), + [anon_sym_noreturn] = ACTIONS(7144), + [anon_sym__Nonnull] = ACTIONS(7144), + [anon_sym_mutable] = ACTIONS(7144), + [anon_sym_constinit] = ACTIONS(7144), + [anon_sym_consteval] = ACTIONS(7144), + [anon_sym_alignas] = ACTIONS(7156), + [anon_sym__Alignas] = ACTIONS(7156), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6821), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6823), + [anon_sym_or_eq] = ACTIONS(6823), + [anon_sym_xor_eq] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6823), }, [STATE(2128)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2132), - [sym_identifier] = ACTIONS(7402), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7404), - [anon_sym_COMMA] = ACTIONS(7404), - [aux_sym_preproc_if_token2] = ACTIONS(7404), - [aux_sym_preproc_else_token1] = ACTIONS(7404), - [aux_sym_preproc_elif_token1] = ACTIONS(7402), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7404), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7404), - [anon_sym_LPAREN2] = ACTIONS(7404), - [anon_sym_DASH] = ACTIONS(7402), - [anon_sym_PLUS] = ACTIONS(7402), - [anon_sym_STAR] = ACTIONS(7402), - [anon_sym_SLASH] = ACTIONS(7402), - [anon_sym_PERCENT] = ACTIONS(7402), - [anon_sym_PIPE_PIPE] = ACTIONS(7404), - [anon_sym_AMP_AMP] = ACTIONS(7404), - [anon_sym_PIPE] = ACTIONS(7402), - [anon_sym_CARET] = ACTIONS(7402), - [anon_sym_AMP] = ACTIONS(7402), - [anon_sym_EQ_EQ] = ACTIONS(7404), - [anon_sym_BANG_EQ] = ACTIONS(7404), - [anon_sym_GT] = ACTIONS(7402), - [anon_sym_GT_EQ] = ACTIONS(7404), - [anon_sym_LT_EQ] = ACTIONS(7402), - [anon_sym_LT] = ACTIONS(7402), - [anon_sym_LT_LT] = ACTIONS(7402), - [anon_sym_GT_GT] = ACTIONS(7402), - [anon_sym___extension__] = ACTIONS(7402), - [anon_sym___attribute__] = ACTIONS(7402), - [anon_sym___attribute] = ACTIONS(7402), - [anon_sym_LBRACE] = ACTIONS(7404), - [anon_sym_signed] = ACTIONS(7406), - [anon_sym_unsigned] = ACTIONS(7406), - [anon_sym_long] = ACTIONS(7406), - [anon_sym_short] = ACTIONS(7406), - [anon_sym_LBRACK] = ACTIONS(7404), - [anon_sym_RBRACK] = ACTIONS(7404), - [anon_sym_EQ] = ACTIONS(7402), - [anon_sym_const] = ACTIONS(7402), - [anon_sym_constexpr] = ACTIONS(7402), - [anon_sym_volatile] = ACTIONS(7402), - [anon_sym_restrict] = ACTIONS(7402), - [anon_sym___restrict__] = ACTIONS(7402), - [anon_sym__Atomic] = ACTIONS(7402), - [anon_sym__Noreturn] = ACTIONS(7402), - [anon_sym_noreturn] = ACTIONS(7402), - [anon_sym__Nonnull] = ACTIONS(7402), - [anon_sym_mutable] = ACTIONS(7402), - [anon_sym_constinit] = ACTIONS(7402), - [anon_sym_consteval] = ACTIONS(7402), - [anon_sym_alignas] = ACTIONS(7402), - [anon_sym__Alignas] = ACTIONS(7402), - [anon_sym_QMARK] = ACTIONS(7404), - [anon_sym_STAR_EQ] = ACTIONS(7404), - [anon_sym_SLASH_EQ] = ACTIONS(7404), - [anon_sym_PERCENT_EQ] = ACTIONS(7404), - [anon_sym_PLUS_EQ] = ACTIONS(7404), - [anon_sym_DASH_EQ] = ACTIONS(7404), - [anon_sym_LT_LT_EQ] = ACTIONS(7404), - [anon_sym_GT_GT_EQ] = ACTIONS(7404), - [anon_sym_AMP_EQ] = ACTIONS(7404), - [anon_sym_CARET_EQ] = ACTIONS(7404), - [anon_sym_PIPE_EQ] = ACTIONS(7404), - [anon_sym_and_eq] = ACTIONS(7402), - [anon_sym_or_eq] = ACTIONS(7402), - [anon_sym_xor_eq] = ACTIONS(7402), - [anon_sym_LT_EQ_GT] = ACTIONS(7404), - [anon_sym_or] = ACTIONS(7402), - [anon_sym_and] = ACTIONS(7402), - [anon_sym_bitor] = ACTIONS(7402), - [anon_sym_xor] = ACTIONS(7402), - [anon_sym_bitand] = ACTIONS(7402), - [anon_sym_not_eq] = ACTIONS(7402), - [anon_sym_DASH_DASH] = ACTIONS(7404), - [anon_sym_PLUS_PLUS] = ACTIONS(7404), - [anon_sym_DOT] = ACTIONS(7402), - [anon_sym_DOT_STAR] = ACTIONS(7404), - [anon_sym_DASH_GT] = ACTIONS(7404), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7402), - [anon_sym_override] = ACTIONS(7402), - [anon_sym_requires] = ACTIONS(7402), + [sym__abstract_declarator] = STATE(4244), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2406), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1947), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2406), + [sym_identifier] = ACTIONS(6821), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [aux_sym_preproc_if_token2] = ACTIONS(6823), + [aux_sym_preproc_else_token1] = ACTIONS(6823), + [aux_sym_preproc_elif_token1] = ACTIONS(6821), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6823), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(6827), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(6829), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(6831), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(6833), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(6833), + [anon_sym_volatile] = ACTIONS(6833), + [anon_sym_restrict] = ACTIONS(6833), + [anon_sym___restrict__] = ACTIONS(6833), + [anon_sym__Atomic] = ACTIONS(6833), + [anon_sym__Noreturn] = ACTIONS(6833), + [anon_sym_noreturn] = ACTIONS(6833), + [anon_sym__Nonnull] = ACTIONS(6833), + [anon_sym_mutable] = ACTIONS(6833), + [anon_sym_constinit] = ACTIONS(6833), + [anon_sym_consteval] = ACTIONS(6833), + [anon_sym_alignas] = ACTIONS(6841), + [anon_sym__Alignas] = ACTIONS(6841), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6821), + [anon_sym_or_eq] = ACTIONS(6821), + [anon_sym_xor_eq] = ACTIONS(6821), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6821), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6821), + [anon_sym_not_eq] = ACTIONS(6821), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6821), + [anon_sym_override] = ACTIONS(6821), + [anon_sym_requires] = ACTIONS(6821), }, [STATE(2129)] = { - [sym_argument_list] = STATE(3723), - [sym_initializer_list] = STATE(3825), - [sym_identifier] = ACTIONS(6798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [aux_sym_preproc_if_token2] = ACTIONS(6800), - [aux_sym_preproc_else_token1] = ACTIONS(6800), - [aux_sym_preproc_elif_token1] = ACTIONS(6798), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), + [sym_attribute_specifier] = STATE(2186), + [sym_identifier] = ACTIONS(7397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), + [anon_sym_COMMA] = ACTIONS(7399), + [anon_sym_RPAREN] = ACTIONS(7399), + [aux_sym_preproc_if_token2] = ACTIONS(7399), + [aux_sym_preproc_else_token1] = ACTIONS(7399), + [aux_sym_preproc_elif_token1] = ACTIONS(7397), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7399), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7399), [anon_sym_LPAREN2] = ACTIONS(7399), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym_SEMI] = ACTIONS(6800), - [anon_sym___extension__] = ACTIONS(6798), - [anon_sym___attribute__] = ACTIONS(6798), - [anon_sym___attribute] = ACTIONS(6798), - [anon_sym_COLON] = ACTIONS(6798), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_RBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6798), - [anon_sym_volatile] = ACTIONS(6798), - [anon_sym_restrict] = ACTIONS(6798), - [anon_sym___restrict__] = ACTIONS(6798), - [anon_sym__Atomic] = ACTIONS(6798), - [anon_sym__Noreturn] = ACTIONS(6798), - [anon_sym_noreturn] = ACTIONS(6798), - [anon_sym__Nonnull] = ACTIONS(6798), - [anon_sym_mutable] = ACTIONS(6798), - [anon_sym_constinit] = ACTIONS(6798), - [anon_sym_consteval] = ACTIONS(6798), - [anon_sym_alignas] = ACTIONS(6798), - [anon_sym__Alignas] = ACTIONS(6798), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6798), - [anon_sym_or_eq] = ACTIONS(6798), - [anon_sym_xor_eq] = ACTIONS(6798), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6798), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6798), - [anon_sym_not_eq] = ACTIONS(6798), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6800), + [anon_sym_DASH] = ACTIONS(7397), + [anon_sym_PLUS] = ACTIONS(7397), + [anon_sym_STAR] = ACTIONS(7397), + [anon_sym_SLASH] = ACTIONS(7397), + [anon_sym_PERCENT] = ACTIONS(7397), + [anon_sym_PIPE_PIPE] = ACTIONS(7399), + [anon_sym_AMP_AMP] = ACTIONS(7399), + [anon_sym_PIPE] = ACTIONS(7397), + [anon_sym_CARET] = ACTIONS(7397), + [anon_sym_AMP] = ACTIONS(7397), + [anon_sym_EQ_EQ] = ACTIONS(7399), + [anon_sym_BANG_EQ] = ACTIONS(7399), + [anon_sym_GT] = ACTIONS(7397), + [anon_sym_GT_EQ] = ACTIONS(7399), + [anon_sym_LT_EQ] = ACTIONS(7397), + [anon_sym_LT] = ACTIONS(7397), + [anon_sym_LT_LT] = ACTIONS(7397), + [anon_sym_GT_GT] = ACTIONS(7397), + [anon_sym_SEMI] = ACTIONS(7399), + [anon_sym___extension__] = ACTIONS(7397), + [anon_sym___attribute__] = ACTIONS(7239), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_COLON] = ACTIONS(7397), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7399), + [anon_sym_LBRACE] = ACTIONS(7399), + [anon_sym_RBRACE] = ACTIONS(7399), + [anon_sym_LBRACK] = ACTIONS(7399), + [anon_sym_EQ] = ACTIONS(7397), + [anon_sym_const] = ACTIONS(7397), + [anon_sym_constexpr] = ACTIONS(7397), + [anon_sym_volatile] = ACTIONS(7397), + [anon_sym_restrict] = ACTIONS(7397), + [anon_sym___restrict__] = ACTIONS(7397), + [anon_sym__Atomic] = ACTIONS(7397), + [anon_sym__Noreturn] = ACTIONS(7397), + [anon_sym_noreturn] = ACTIONS(7397), + [anon_sym__Nonnull] = ACTIONS(7397), + [anon_sym_mutable] = ACTIONS(7397), + [anon_sym_constinit] = ACTIONS(7397), + [anon_sym_consteval] = ACTIONS(7397), + [anon_sym_alignas] = ACTIONS(7397), + [anon_sym__Alignas] = ACTIONS(7397), + [anon_sym_QMARK] = ACTIONS(7399), + [anon_sym_STAR_EQ] = ACTIONS(7399), + [anon_sym_SLASH_EQ] = ACTIONS(7399), + [anon_sym_PERCENT_EQ] = ACTIONS(7399), + [anon_sym_PLUS_EQ] = ACTIONS(7399), + [anon_sym_DASH_EQ] = ACTIONS(7399), + [anon_sym_LT_LT_EQ] = ACTIONS(7399), + [anon_sym_GT_GT_EQ] = ACTIONS(7399), + [anon_sym_AMP_EQ] = ACTIONS(7399), + [anon_sym_CARET_EQ] = ACTIONS(7399), + [anon_sym_PIPE_EQ] = ACTIONS(7399), + [anon_sym_and_eq] = ACTIONS(7397), + [anon_sym_or_eq] = ACTIONS(7397), + [anon_sym_xor_eq] = ACTIONS(7397), + [anon_sym_LT_EQ_GT] = ACTIONS(7399), + [anon_sym_or] = ACTIONS(7397), + [anon_sym_and] = ACTIONS(7397), + [anon_sym_bitor] = ACTIONS(7397), + [anon_sym_xor] = ACTIONS(7397), + [anon_sym_bitand] = ACTIONS(7397), + [anon_sym_not_eq] = ACTIONS(7397), + [anon_sym_DASH_DASH] = ACTIONS(7399), + [anon_sym_PLUS_PLUS] = ACTIONS(7399), + [anon_sym_DOT] = ACTIONS(7397), + [anon_sym_DOT_STAR] = ACTIONS(7399), + [anon_sym_DASH_GT] = ACTIONS(7399), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7397), + [anon_sym_override] = ACTIONS(7397), + [anon_sym_requires] = ACTIONS(7397), + [anon_sym_COLON_RBRACK] = ACTIONS(7399), }, [STATE(2130)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2072), - [sym_identifier] = ACTIONS(7408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7410), - [anon_sym_COMMA] = ACTIONS(7410), - [aux_sym_preproc_if_token2] = ACTIONS(7410), - [aux_sym_preproc_else_token1] = ACTIONS(7410), - [aux_sym_preproc_elif_token1] = ACTIONS(7408), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7410), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7410), - [anon_sym_LPAREN2] = ACTIONS(7410), - [anon_sym_DASH] = ACTIONS(7408), - [anon_sym_PLUS] = ACTIONS(7408), - [anon_sym_STAR] = ACTIONS(7408), - [anon_sym_SLASH] = ACTIONS(7408), - [anon_sym_PERCENT] = ACTIONS(7408), - [anon_sym_PIPE_PIPE] = ACTIONS(7410), - [anon_sym_AMP_AMP] = ACTIONS(7410), - [anon_sym_PIPE] = ACTIONS(7408), - [anon_sym_CARET] = ACTIONS(7408), - [anon_sym_AMP] = ACTIONS(7408), - [anon_sym_EQ_EQ] = ACTIONS(7410), - [anon_sym_BANG_EQ] = ACTIONS(7410), - [anon_sym_GT] = ACTIONS(7408), - [anon_sym_GT_EQ] = ACTIONS(7410), - [anon_sym_LT_EQ] = ACTIONS(7408), - [anon_sym_LT] = ACTIONS(7408), - [anon_sym_LT_LT] = ACTIONS(7408), - [anon_sym_GT_GT] = ACTIONS(7408), - [anon_sym___extension__] = ACTIONS(7408), - [anon_sym___attribute__] = ACTIONS(7408), - [anon_sym___attribute] = ACTIONS(7408), - [anon_sym_LBRACE] = ACTIONS(7410), - [anon_sym_signed] = ACTIONS(7412), - [anon_sym_unsigned] = ACTIONS(7412), - [anon_sym_long] = ACTIONS(7412), - [anon_sym_short] = ACTIONS(7412), - [anon_sym_LBRACK] = ACTIONS(7410), - [anon_sym_RBRACK] = ACTIONS(7410), - [anon_sym_EQ] = ACTIONS(7408), - [anon_sym_const] = ACTIONS(7408), - [anon_sym_constexpr] = ACTIONS(7408), - [anon_sym_volatile] = ACTIONS(7408), - [anon_sym_restrict] = ACTIONS(7408), - [anon_sym___restrict__] = ACTIONS(7408), - [anon_sym__Atomic] = ACTIONS(7408), - [anon_sym__Noreturn] = ACTIONS(7408), - [anon_sym_noreturn] = ACTIONS(7408), - [anon_sym__Nonnull] = ACTIONS(7408), - [anon_sym_mutable] = ACTIONS(7408), - [anon_sym_constinit] = ACTIONS(7408), - [anon_sym_consteval] = ACTIONS(7408), - [anon_sym_alignas] = ACTIONS(7408), - [anon_sym__Alignas] = ACTIONS(7408), - [anon_sym_QMARK] = ACTIONS(7410), - [anon_sym_STAR_EQ] = ACTIONS(7410), - [anon_sym_SLASH_EQ] = ACTIONS(7410), - [anon_sym_PERCENT_EQ] = ACTIONS(7410), - [anon_sym_PLUS_EQ] = ACTIONS(7410), - [anon_sym_DASH_EQ] = ACTIONS(7410), - [anon_sym_LT_LT_EQ] = ACTIONS(7410), - [anon_sym_GT_GT_EQ] = ACTIONS(7410), - [anon_sym_AMP_EQ] = ACTIONS(7410), - [anon_sym_CARET_EQ] = ACTIONS(7410), - [anon_sym_PIPE_EQ] = ACTIONS(7410), - [anon_sym_and_eq] = ACTIONS(7408), - [anon_sym_or_eq] = ACTIONS(7408), - [anon_sym_xor_eq] = ACTIONS(7408), - [anon_sym_LT_EQ_GT] = ACTIONS(7410), - [anon_sym_or] = ACTIONS(7408), - [anon_sym_and] = ACTIONS(7408), - [anon_sym_bitor] = ACTIONS(7408), - [anon_sym_xor] = ACTIONS(7408), - [anon_sym_bitand] = ACTIONS(7408), - [anon_sym_not_eq] = ACTIONS(7408), - [anon_sym_DASH_DASH] = ACTIONS(7410), - [anon_sym_PLUS_PLUS] = ACTIONS(7410), - [anon_sym_DOT] = ACTIONS(7408), - [anon_sym_DOT_STAR] = ACTIONS(7410), - [anon_sym_DASH_GT] = ACTIONS(7410), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7408), - [anon_sym_override] = ACTIONS(7408), - [anon_sym_requires] = ACTIONS(7408), + [sym_identifier] = ACTIONS(6594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6596), + [anon_sym_COMMA] = ACTIONS(6596), + [anon_sym_RPAREN] = ACTIONS(6596), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_TILDE] = ACTIONS(6601), + [anon_sym_DASH] = ACTIONS(6603), + [anon_sym_PLUS] = ACTIONS(6603), + [anon_sym_STAR] = ACTIONS(6598), + [anon_sym_SLASH] = ACTIONS(6603), + [anon_sym_PERCENT] = ACTIONS(6596), + [anon_sym_PIPE_PIPE] = ACTIONS(6596), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6603), + [anon_sym_CARET] = ACTIONS(6596), + [anon_sym_AMP] = ACTIONS(6605), + [anon_sym_EQ_EQ] = ACTIONS(6596), + [anon_sym_BANG_EQ] = ACTIONS(6596), + [anon_sym_GT] = ACTIONS(6603), + [anon_sym_GT_EQ] = ACTIONS(6596), + [anon_sym_LT_EQ] = ACTIONS(6603), + [anon_sym_LT] = ACTIONS(6603), + [anon_sym_LT_LT] = ACTIONS(6596), + [anon_sym_GT_GT] = ACTIONS(6596), + [anon_sym_SEMI] = ACTIONS(6596), + [anon_sym___extension__] = ACTIONS(6594), + [anon_sym_virtual] = ACTIONS(6594), + [anon_sym_extern] = ACTIONS(6594), + [anon_sym___attribute__] = ACTIONS(6594), + [anon_sym___attribute] = ACTIONS(6594), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6601), + [anon_sym___declspec] = ACTIONS(6594), + [anon_sym___based] = ACTIONS(6594), + [anon_sym___cdecl] = ACTIONS(6594), + [anon_sym___clrcall] = ACTIONS(6594), + [anon_sym___stdcall] = ACTIONS(6594), + [anon_sym___fastcall] = ACTIONS(6594), + [anon_sym___thiscall] = ACTIONS(6594), + [anon_sym___vectorcall] = ACTIONS(6594), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_RBRACE] = ACTIONS(6596), + [anon_sym_LBRACK] = ACTIONS(6605), + [anon_sym_static] = ACTIONS(6594), + [anon_sym_register] = ACTIONS(6594), + [anon_sym_inline] = ACTIONS(6594), + [anon_sym___inline] = ACTIONS(6594), + [anon_sym___inline__] = ACTIONS(6594), + [anon_sym___forceinline] = ACTIONS(6594), + [anon_sym_thread_local] = ACTIONS(6594), + [anon_sym___thread] = ACTIONS(6594), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6594), + [anon_sym_volatile] = ACTIONS(6594), + [anon_sym_restrict] = ACTIONS(6594), + [anon_sym___restrict__] = ACTIONS(6594), + [anon_sym__Atomic] = ACTIONS(6594), + [anon_sym__Noreturn] = ACTIONS(6594), + [anon_sym_noreturn] = ACTIONS(6594), + [anon_sym__Nonnull] = ACTIONS(6594), + [anon_sym_mutable] = ACTIONS(6594), + [anon_sym_constinit] = ACTIONS(6594), + [anon_sym_consteval] = ACTIONS(6594), + [anon_sym_alignas] = ACTIONS(6594), + [anon_sym__Alignas] = ACTIONS(6594), + [anon_sym_QMARK] = ACTIONS(6596), + [anon_sym_LT_EQ_GT] = ACTIONS(6596), + [anon_sym_or] = ACTIONS(6603), + [anon_sym_and] = ACTIONS(6603), + [anon_sym_bitor] = ACTIONS(6603), + [anon_sym_xor] = ACTIONS(6603), + [anon_sym_bitand] = ACTIONS(6603), + [anon_sym_not_eq] = ACTIONS(6603), + [anon_sym_DASH_DASH] = ACTIONS(6596), + [anon_sym_PLUS_PLUS] = ACTIONS(6596), + [anon_sym_DOT] = ACTIONS(6603), + [anon_sym_DOT_STAR] = ACTIONS(6596), + [anon_sym_DASH_GT] = ACTIONS(6596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6594), + [anon_sym_decltype] = ACTIONS(6594), + [anon_sym_template] = ACTIONS(6594), + [anon_sym_operator] = ACTIONS(6594), + [anon_sym_LBRACK_COLON] = ACTIONS(6601), }, [STATE(2131)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2835), - [sym_ms_pointer_modifier] = STATE(2106), - [sym__abstract_declarator] = STATE(5727), - [sym_abstract_parenthesized_declarator] = STATE(5581), - [sym_abstract_pointer_declarator] = STATE(5581), - [sym_abstract_function_declarator] = STATE(5581), - [sym_abstract_array_declarator] = STATE(5581), - [sym_type_qualifier] = STATE(2539), - [sym_alignas_qualifier] = STATE(2432), - [sym_parameter_list] = STATE(1888), - [sym_abstract_reference_declarator] = STATE(5581), - [sym__function_declarator_seq] = STATE(5582), - [aux_sym__type_definition_type_repeat1] = STATE(2539), - [aux_sym_pointer_declarator_repeat1] = STATE(2106), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_RPAREN] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(6927), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_PLUS] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(7319), - [anon_sym_SLASH] = ACTIONS(6457), - [anon_sym_PERCENT] = ACTIONS(6457), - [anon_sym_PIPE_PIPE] = ACTIONS(6459), - [anon_sym_AMP_AMP] = ACTIONS(7321), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_CARET] = ACTIONS(6457), - [anon_sym_AMP] = ACTIONS(7323), - [anon_sym_EQ_EQ] = ACTIONS(6459), - [anon_sym_BANG_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_LT_EQ] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_LT_LT] = ACTIONS(6457), - [anon_sym_GT_GT] = ACTIONS(6457), - [anon_sym___extension__] = ACTIONS(6935), - [sym_ms_restrict_modifier] = ACTIONS(6937), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6939), - [sym_ms_signed_ptr_modifier] = ACTIONS(6939), - [anon_sym__unaligned] = ACTIONS(6941), - [anon_sym___unaligned] = ACTIONS(6941), - [anon_sym_LBRACK] = ACTIONS(6943), - [anon_sym_EQ] = ACTIONS(6457), - [anon_sym_const] = ACTIONS(6945), - [anon_sym_constexpr] = ACTIONS(6935), - [anon_sym_volatile] = ACTIONS(6935), - [anon_sym_restrict] = ACTIONS(6935), - [anon_sym___restrict__] = ACTIONS(6935), - [anon_sym__Atomic] = ACTIONS(6935), - [anon_sym__Noreturn] = ACTIONS(6935), - [anon_sym_noreturn] = ACTIONS(6935), - [anon_sym__Nonnull] = ACTIONS(6935), - [anon_sym_mutable] = ACTIONS(6935), - [anon_sym_constinit] = ACTIONS(6935), - [anon_sym_consteval] = ACTIONS(6935), - [anon_sym_alignas] = ACTIONS(6947), - [anon_sym__Alignas] = ACTIONS(6947), - [anon_sym_QMARK] = ACTIONS(6459), - [anon_sym_STAR_EQ] = ACTIONS(6459), - [anon_sym_SLASH_EQ] = ACTIONS(6459), - [anon_sym_PERCENT_EQ] = ACTIONS(6459), - [anon_sym_PLUS_EQ] = ACTIONS(6459), - [anon_sym_DASH_EQ] = ACTIONS(6459), - [anon_sym_LT_LT_EQ] = ACTIONS(6459), - [anon_sym_GT_GT_EQ] = ACTIONS(6459), - [anon_sym_AMP_EQ] = ACTIONS(6459), - [anon_sym_CARET_EQ] = ACTIONS(6459), - [anon_sym_PIPE_EQ] = ACTIONS(6459), - [anon_sym_LT_EQ_GT] = ACTIONS(6459), - [anon_sym_or] = ACTIONS(6459), - [anon_sym_and] = ACTIONS(6459), - [anon_sym_bitor] = ACTIONS(6459), - [anon_sym_xor] = ACTIONS(6459), - [anon_sym_bitand] = ACTIONS(6459), - [anon_sym_not_eq] = ACTIONS(6459), - [anon_sym_DASH_DASH] = ACTIONS(6459), - [anon_sym_PLUS_PLUS] = ACTIONS(6459), - [anon_sym_DOT] = ACTIONS(6457), - [anon_sym_DOT_STAR] = ACTIONS(6459), - [anon_sym_DASH_GT] = ACTIONS(6457), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6459), + [sym_identifier] = ACTIONS(6594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6596), + [anon_sym_COMMA] = ACTIONS(6596), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_TILDE] = ACTIONS(6601), + [anon_sym_DASH] = ACTIONS(6603), + [anon_sym_PLUS] = ACTIONS(6603), + [anon_sym_STAR] = ACTIONS(6598), + [anon_sym_SLASH] = ACTIONS(6603), + [anon_sym_PERCENT] = ACTIONS(6596), + [anon_sym_PIPE_PIPE] = ACTIONS(6596), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6603), + [anon_sym_CARET] = ACTIONS(6596), + [anon_sym_AMP] = ACTIONS(6605), + [anon_sym_EQ_EQ] = ACTIONS(6596), + [anon_sym_BANG_EQ] = ACTIONS(6596), + [anon_sym_GT] = ACTIONS(6603), + [anon_sym_GT_EQ] = ACTIONS(6596), + [anon_sym_LT_EQ] = ACTIONS(6603), + [anon_sym_LT] = ACTIONS(6603), + [anon_sym_LT_LT] = ACTIONS(6596), + [anon_sym_GT_GT] = ACTIONS(6596), + [anon_sym_SEMI] = ACTIONS(6598), + [anon_sym___extension__] = ACTIONS(6594), + [anon_sym_virtual] = ACTIONS(6594), + [anon_sym_extern] = ACTIONS(6594), + [anon_sym___attribute__] = ACTIONS(6594), + [anon_sym___attribute] = ACTIONS(6594), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6598), + [anon_sym___declspec] = ACTIONS(6594), + [anon_sym___based] = ACTIONS(6594), + [anon_sym___cdecl] = ACTIONS(6594), + [anon_sym___clrcall] = ACTIONS(6594), + [anon_sym___stdcall] = ACTIONS(6594), + [anon_sym___fastcall] = ACTIONS(6594), + [anon_sym___thiscall] = ACTIONS(6594), + [anon_sym___vectorcall] = ACTIONS(6594), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_RBRACE] = ACTIONS(6596), + [anon_sym_LBRACK] = ACTIONS(6605), + [anon_sym_static] = ACTIONS(6594), + [anon_sym_RBRACK] = ACTIONS(6596), + [anon_sym_register] = ACTIONS(6594), + [anon_sym_inline] = ACTIONS(6594), + [anon_sym___inline] = ACTIONS(6594), + [anon_sym___inline__] = ACTIONS(6594), + [anon_sym___forceinline] = ACTIONS(6594), + [anon_sym_thread_local] = ACTIONS(6594), + [anon_sym___thread] = ACTIONS(6594), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6594), + [anon_sym_volatile] = ACTIONS(6594), + [anon_sym_restrict] = ACTIONS(6594), + [anon_sym___restrict__] = ACTIONS(6594), + [anon_sym__Atomic] = ACTIONS(6594), + [anon_sym__Noreturn] = ACTIONS(6594), + [anon_sym_noreturn] = ACTIONS(6594), + [anon_sym__Nonnull] = ACTIONS(6594), + [anon_sym_mutable] = ACTIONS(6594), + [anon_sym_constinit] = ACTIONS(6594), + [anon_sym_consteval] = ACTIONS(6594), + [anon_sym_alignas] = ACTIONS(6594), + [anon_sym__Alignas] = ACTIONS(6594), + [anon_sym_QMARK] = ACTIONS(6596), + [anon_sym_LT_EQ_GT] = ACTIONS(6596), + [anon_sym_or] = ACTIONS(6603), + [anon_sym_and] = ACTIONS(6603), + [anon_sym_bitor] = ACTIONS(6603), + [anon_sym_xor] = ACTIONS(6603), + [anon_sym_bitand] = ACTIONS(6603), + [anon_sym_not_eq] = ACTIONS(6603), + [anon_sym_DASH_DASH] = ACTIONS(6596), + [anon_sym_PLUS_PLUS] = ACTIONS(6596), + [anon_sym_DOT] = ACTIONS(6603), + [anon_sym_DOT_STAR] = ACTIONS(6596), + [anon_sym_DASH_GT] = ACTIONS(6596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6594), + [anon_sym_decltype] = ACTIONS(6594), + [anon_sym_template] = ACTIONS(6594), + [anon_sym_operator] = ACTIONS(6594), + [anon_sym_LBRACK_COLON] = ACTIONS(6601), }, [STATE(2132)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2133), - [sym_identifier] = ACTIONS(7414), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7416), - [anon_sym_COMMA] = ACTIONS(7416), - [aux_sym_preproc_if_token2] = ACTIONS(7416), - [aux_sym_preproc_else_token1] = ACTIONS(7416), - [aux_sym_preproc_elif_token1] = ACTIONS(7414), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7416), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7416), - [anon_sym_LPAREN2] = ACTIONS(7416), - [anon_sym_DASH] = ACTIONS(7414), - [anon_sym_PLUS] = ACTIONS(7414), - [anon_sym_STAR] = ACTIONS(7414), - [anon_sym_SLASH] = ACTIONS(7414), - [anon_sym_PERCENT] = ACTIONS(7414), - [anon_sym_PIPE_PIPE] = ACTIONS(7416), - [anon_sym_AMP_AMP] = ACTIONS(7416), - [anon_sym_PIPE] = ACTIONS(7414), - [anon_sym_CARET] = ACTIONS(7414), - [anon_sym_AMP] = ACTIONS(7414), - [anon_sym_EQ_EQ] = ACTIONS(7416), - [anon_sym_BANG_EQ] = ACTIONS(7416), - [anon_sym_GT] = ACTIONS(7414), - [anon_sym_GT_EQ] = ACTIONS(7416), - [anon_sym_LT_EQ] = ACTIONS(7414), - [anon_sym_LT] = ACTIONS(7414), - [anon_sym_LT_LT] = ACTIONS(7414), - [anon_sym_GT_GT] = ACTIONS(7414), - [anon_sym___extension__] = ACTIONS(7414), - [anon_sym___attribute__] = ACTIONS(7414), - [anon_sym___attribute] = ACTIONS(7414), - [anon_sym_LBRACE] = ACTIONS(7416), - [anon_sym_signed] = ACTIONS(7203), - [anon_sym_unsigned] = ACTIONS(7203), - [anon_sym_long] = ACTIONS(7203), - [anon_sym_short] = ACTIONS(7203), - [anon_sym_LBRACK] = ACTIONS(7416), - [anon_sym_RBRACK] = ACTIONS(7416), - [anon_sym_EQ] = ACTIONS(7414), - [anon_sym_const] = ACTIONS(7414), - [anon_sym_constexpr] = ACTIONS(7414), - [anon_sym_volatile] = ACTIONS(7414), - [anon_sym_restrict] = ACTIONS(7414), - [anon_sym___restrict__] = ACTIONS(7414), - [anon_sym__Atomic] = ACTIONS(7414), - [anon_sym__Noreturn] = ACTIONS(7414), - [anon_sym_noreturn] = ACTIONS(7414), - [anon_sym__Nonnull] = ACTIONS(7414), - [anon_sym_mutable] = ACTIONS(7414), - [anon_sym_constinit] = ACTIONS(7414), - [anon_sym_consteval] = ACTIONS(7414), - [anon_sym_alignas] = ACTIONS(7414), - [anon_sym__Alignas] = ACTIONS(7414), - [anon_sym_QMARK] = ACTIONS(7416), - [anon_sym_STAR_EQ] = ACTIONS(7416), - [anon_sym_SLASH_EQ] = ACTIONS(7416), - [anon_sym_PERCENT_EQ] = ACTIONS(7416), - [anon_sym_PLUS_EQ] = ACTIONS(7416), - [anon_sym_DASH_EQ] = ACTIONS(7416), - [anon_sym_LT_LT_EQ] = ACTIONS(7416), - [anon_sym_GT_GT_EQ] = ACTIONS(7416), - [anon_sym_AMP_EQ] = ACTIONS(7416), - [anon_sym_CARET_EQ] = ACTIONS(7416), - [anon_sym_PIPE_EQ] = ACTIONS(7416), - [anon_sym_and_eq] = ACTIONS(7414), - [anon_sym_or_eq] = ACTIONS(7414), - [anon_sym_xor_eq] = ACTIONS(7414), - [anon_sym_LT_EQ_GT] = ACTIONS(7416), - [anon_sym_or] = ACTIONS(7414), - [anon_sym_and] = ACTIONS(7414), - [anon_sym_bitor] = ACTIONS(7414), - [anon_sym_xor] = ACTIONS(7414), - [anon_sym_bitand] = ACTIONS(7414), - [anon_sym_not_eq] = ACTIONS(7414), - [anon_sym_DASH_DASH] = ACTIONS(7416), - [anon_sym_PLUS_PLUS] = ACTIONS(7416), - [anon_sym_DOT] = ACTIONS(7414), - [anon_sym_DOT_STAR] = ACTIONS(7416), - [anon_sym_DASH_GT] = ACTIONS(7416), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7414), - [anon_sym_override] = ACTIONS(7414), - [anon_sym_requires] = ACTIONS(7414), + [sym_template_argument_list] = STATE(2206), + [sym_identifier] = ACTIONS(6576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6569), + [anon_sym_COMMA] = ACTIONS(6569), + [anon_sym_RPAREN] = ACTIONS(6569), + [aux_sym_preproc_if_token2] = ACTIONS(6569), + [aux_sym_preproc_else_token1] = ACTIONS(6569), + [aux_sym_preproc_elif_token1] = ACTIONS(6576), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6569), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6569), + [anon_sym_LPAREN2] = ACTIONS(6569), + [anon_sym_DASH] = ACTIONS(6576), + [anon_sym_PLUS] = ACTIONS(6576), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(6576), + [anon_sym_PERCENT] = ACTIONS(6576), + [anon_sym_PIPE_PIPE] = ACTIONS(6569), + [anon_sym_AMP_AMP] = ACTIONS(6569), + [anon_sym_PIPE] = ACTIONS(6576), + [anon_sym_CARET] = ACTIONS(6576), + [anon_sym_AMP] = ACTIONS(6576), + [anon_sym_EQ_EQ] = ACTIONS(6569), + [anon_sym_BANG_EQ] = ACTIONS(6569), + [anon_sym_GT] = ACTIONS(6576), + [anon_sym_GT_EQ] = ACTIONS(6569), + [anon_sym_LT_EQ] = ACTIONS(6576), + [anon_sym_LT] = ACTIONS(7401), + [anon_sym_LT_LT] = ACTIONS(6576), + [anon_sym_GT_GT] = ACTIONS(6576), + [anon_sym_SEMI] = ACTIONS(6569), + [anon_sym___extension__] = ACTIONS(6565), + [anon_sym___attribute__] = ACTIONS(6576), + [anon_sym___attribute] = ACTIONS(6576), + [anon_sym_COLON] = ACTIONS(6576), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6569), + [anon_sym_LBRACE] = ACTIONS(6572), + [anon_sym_RBRACE] = ACTIONS(6569), + [anon_sym_LBRACK] = ACTIONS(6569), + [anon_sym_EQ] = ACTIONS(6574), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_constexpr] = ACTIONS(6565), + [anon_sym_volatile] = ACTIONS(6565), + [anon_sym_restrict] = ACTIONS(6565), + [anon_sym___restrict__] = ACTIONS(6565), + [anon_sym__Atomic] = ACTIONS(6565), + [anon_sym__Noreturn] = ACTIONS(6565), + [anon_sym_noreturn] = ACTIONS(6565), + [anon_sym__Nonnull] = ACTIONS(6565), + [anon_sym_mutable] = ACTIONS(6565), + [anon_sym_constinit] = ACTIONS(6565), + [anon_sym_consteval] = ACTIONS(6565), + [anon_sym_alignas] = ACTIONS(6565), + [anon_sym__Alignas] = ACTIONS(6565), + [anon_sym_QMARK] = ACTIONS(6569), + [anon_sym_STAR_EQ] = ACTIONS(6567), + [anon_sym_SLASH_EQ] = ACTIONS(6567), + [anon_sym_PERCENT_EQ] = ACTIONS(6567), + [anon_sym_PLUS_EQ] = ACTIONS(6567), + [anon_sym_DASH_EQ] = ACTIONS(6567), + [anon_sym_LT_LT_EQ] = ACTIONS(6567), + [anon_sym_GT_GT_EQ] = ACTIONS(6567), + [anon_sym_AMP_EQ] = ACTIONS(6567), + [anon_sym_CARET_EQ] = ACTIONS(6567), + [anon_sym_PIPE_EQ] = ACTIONS(6567), + [anon_sym_and_eq] = ACTIONS(6574), + [anon_sym_or_eq] = ACTIONS(6574), + [anon_sym_xor_eq] = ACTIONS(6574), + [anon_sym_LT_EQ_GT] = ACTIONS(6569), + [anon_sym_or] = ACTIONS(6576), + [anon_sym_and] = ACTIONS(6576), + [anon_sym_bitor] = ACTIONS(6576), + [anon_sym_xor] = ACTIONS(6576), + [anon_sym_bitand] = ACTIONS(6576), + [anon_sym_not_eq] = ACTIONS(6576), + [anon_sym_DASH_DASH] = ACTIONS(6569), + [anon_sym_PLUS_PLUS] = ACTIONS(6569), + [anon_sym_DOT] = ACTIONS(6576), + [anon_sym_DOT_STAR] = ACTIONS(6569), + [anon_sym_DASH_GT] = ACTIONS(6569), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6565), + [anon_sym_decltype] = ACTIONS(6565), + [anon_sym_COLON_RBRACK] = ACTIONS(6569), }, [STATE(2133)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2133), - [sym_identifier] = ACTIONS(6627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6629), - [anon_sym_COMMA] = ACTIONS(6629), - [aux_sym_preproc_if_token2] = ACTIONS(6629), - [aux_sym_preproc_else_token1] = ACTIONS(6629), - [aux_sym_preproc_elif_token1] = ACTIONS(6627), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6629), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6629), - [anon_sym_LPAREN2] = ACTIONS(6629), - [anon_sym_DASH] = ACTIONS(6627), - [anon_sym_PLUS] = ACTIONS(6627), - [anon_sym_STAR] = ACTIONS(6627), - [anon_sym_SLASH] = ACTIONS(6627), - [anon_sym_PERCENT] = ACTIONS(6627), - [anon_sym_PIPE_PIPE] = ACTIONS(6629), - [anon_sym_AMP_AMP] = ACTIONS(6629), - [anon_sym_PIPE] = ACTIONS(6627), - [anon_sym_CARET] = ACTIONS(6627), - [anon_sym_AMP] = ACTIONS(6627), - [anon_sym_EQ_EQ] = ACTIONS(6629), - [anon_sym_BANG_EQ] = ACTIONS(6629), - [anon_sym_GT] = ACTIONS(6627), - [anon_sym_GT_EQ] = ACTIONS(6629), - [anon_sym_LT_EQ] = ACTIONS(6627), - [anon_sym_LT] = ACTIONS(6627), - [anon_sym_LT_LT] = ACTIONS(6627), - [anon_sym_GT_GT] = ACTIONS(6627), - [anon_sym___extension__] = ACTIONS(6627), - [anon_sym___attribute__] = ACTIONS(6627), - [anon_sym___attribute] = ACTIONS(6627), - [anon_sym_LBRACE] = ACTIONS(6629), - [anon_sym_signed] = ACTIONS(7418), - [anon_sym_unsigned] = ACTIONS(7418), - [anon_sym_long] = ACTIONS(7418), - [anon_sym_short] = ACTIONS(7418), - [anon_sym_LBRACK] = ACTIONS(6629), - [anon_sym_RBRACK] = ACTIONS(6629), - [anon_sym_EQ] = ACTIONS(6627), - [anon_sym_const] = ACTIONS(6627), - [anon_sym_constexpr] = ACTIONS(6627), - [anon_sym_volatile] = ACTIONS(6627), - [anon_sym_restrict] = ACTIONS(6627), - [anon_sym___restrict__] = ACTIONS(6627), - [anon_sym__Atomic] = ACTIONS(6627), - [anon_sym__Noreturn] = ACTIONS(6627), - [anon_sym_noreturn] = ACTIONS(6627), - [anon_sym__Nonnull] = ACTIONS(6627), - [anon_sym_mutable] = ACTIONS(6627), - [anon_sym_constinit] = ACTIONS(6627), - [anon_sym_consteval] = ACTIONS(6627), - [anon_sym_alignas] = ACTIONS(6627), - [anon_sym__Alignas] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(6629), - [anon_sym_STAR_EQ] = ACTIONS(6629), - [anon_sym_SLASH_EQ] = ACTIONS(6629), - [anon_sym_PERCENT_EQ] = ACTIONS(6629), - [anon_sym_PLUS_EQ] = ACTIONS(6629), - [anon_sym_DASH_EQ] = ACTIONS(6629), - [anon_sym_LT_LT_EQ] = ACTIONS(6629), - [anon_sym_GT_GT_EQ] = ACTIONS(6629), - [anon_sym_AMP_EQ] = ACTIONS(6629), - [anon_sym_CARET_EQ] = ACTIONS(6629), - [anon_sym_PIPE_EQ] = ACTIONS(6629), - [anon_sym_and_eq] = ACTIONS(6627), - [anon_sym_or_eq] = ACTIONS(6627), - [anon_sym_xor_eq] = ACTIONS(6627), - [anon_sym_LT_EQ_GT] = ACTIONS(6629), - [anon_sym_or] = ACTIONS(6627), - [anon_sym_and] = ACTIONS(6627), - [anon_sym_bitor] = ACTIONS(6627), - [anon_sym_xor] = ACTIONS(6627), - [anon_sym_bitand] = ACTIONS(6627), - [anon_sym_not_eq] = ACTIONS(6627), - [anon_sym_DASH_DASH] = ACTIONS(6629), - [anon_sym_PLUS_PLUS] = ACTIONS(6629), - [anon_sym_DOT] = ACTIONS(6627), - [anon_sym_DOT_STAR] = ACTIONS(6629), - [anon_sym_DASH_GT] = ACTIONS(6629), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6627), - [anon_sym_override] = ACTIONS(6627), - [anon_sym_requires] = ACTIONS(6627), + [sym_function_definition] = STATE(933), + [sym_declaration] = STATE(933), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6385), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_call_modifier] = STATE(2684), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10871), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(5630), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(5631), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(6019), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7405), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7407), + [anon_sym_struct] = ACTIONS(7409), + [anon_sym_union] = ACTIONS(7411), + [anon_sym_typename] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, [STATE(2134)] = { - [sym_identifier] = ACTIONS(7421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7423), - [anon_sym_COMMA] = ACTIONS(7423), - [anon_sym_RPAREN] = ACTIONS(7423), - [aux_sym_preproc_if_token2] = ACTIONS(7423), - [aux_sym_preproc_else_token1] = ACTIONS(7423), - [aux_sym_preproc_elif_token1] = ACTIONS(7421), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7423), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7423), - [anon_sym_LPAREN2] = ACTIONS(7423), - [anon_sym_DASH] = ACTIONS(7421), - [anon_sym_PLUS] = ACTIONS(7421), - [anon_sym_STAR] = ACTIONS(7421), - [anon_sym_SLASH] = ACTIONS(7421), - [anon_sym_PERCENT] = ACTIONS(7421), - [anon_sym_PIPE_PIPE] = ACTIONS(7423), - [anon_sym_AMP_AMP] = ACTIONS(7423), - [anon_sym_PIPE] = ACTIONS(7421), - [anon_sym_CARET] = ACTIONS(7421), - [anon_sym_AMP] = ACTIONS(7421), - [anon_sym_EQ_EQ] = ACTIONS(7423), - [anon_sym_BANG_EQ] = ACTIONS(7423), - [anon_sym_GT] = ACTIONS(7421), - [anon_sym_GT_EQ] = ACTIONS(7423), - [anon_sym_LT_EQ] = ACTIONS(7421), - [anon_sym_LT] = ACTIONS(7421), - [anon_sym_LT_LT] = ACTIONS(7421), - [anon_sym_GT_GT] = ACTIONS(7421), - [anon_sym_SEMI] = ACTIONS(7423), - [anon_sym___extension__] = ACTIONS(7421), - [anon_sym___attribute__] = ACTIONS(7421), - [anon_sym___attribute] = ACTIONS(7421), - [anon_sym_COLON] = ACTIONS(7421), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7423), - [anon_sym_LBRACE] = ACTIONS(7423), - [anon_sym_RBRACE] = ACTIONS(7423), - [anon_sym_LBRACK] = ACTIONS(7423), - [anon_sym_EQ] = ACTIONS(7421), - [anon_sym_const] = ACTIONS(7421), - [anon_sym_constexpr] = ACTIONS(7421), - [anon_sym_volatile] = ACTIONS(7421), - [anon_sym_restrict] = ACTIONS(7421), - [anon_sym___restrict__] = ACTIONS(7421), - [anon_sym__Atomic] = ACTIONS(7421), - [anon_sym__Noreturn] = ACTIONS(7421), - [anon_sym_noreturn] = ACTIONS(7421), - [anon_sym__Nonnull] = ACTIONS(7421), - [anon_sym_mutable] = ACTIONS(7421), - [anon_sym_constinit] = ACTIONS(7421), - [anon_sym_consteval] = ACTIONS(7421), - [anon_sym_alignas] = ACTIONS(7421), - [anon_sym__Alignas] = ACTIONS(7421), - [anon_sym_QMARK] = ACTIONS(7423), - [anon_sym_STAR_EQ] = ACTIONS(7423), - [anon_sym_SLASH_EQ] = ACTIONS(7423), - [anon_sym_PERCENT_EQ] = ACTIONS(7423), - [anon_sym_PLUS_EQ] = ACTIONS(7423), - [anon_sym_DASH_EQ] = ACTIONS(7423), - [anon_sym_LT_LT_EQ] = ACTIONS(7423), - [anon_sym_GT_GT_EQ] = ACTIONS(7423), - [anon_sym_AMP_EQ] = ACTIONS(7423), - [anon_sym_CARET_EQ] = ACTIONS(7423), - [anon_sym_PIPE_EQ] = ACTIONS(7423), - [anon_sym_and_eq] = ACTIONS(7421), - [anon_sym_or_eq] = ACTIONS(7421), - [anon_sym_xor_eq] = ACTIONS(7421), - [anon_sym_LT_EQ_GT] = ACTIONS(7423), - [anon_sym_or] = ACTIONS(7421), - [anon_sym_and] = ACTIONS(7421), - [anon_sym_bitor] = ACTIONS(7421), - [anon_sym_xor] = ACTIONS(7421), - [anon_sym_bitand] = ACTIONS(7421), - [anon_sym_not_eq] = ACTIONS(7421), - [anon_sym_DASH_DASH] = ACTIONS(7423), - [anon_sym_PLUS_PLUS] = ACTIONS(7423), - [anon_sym_DOT] = ACTIONS(7421), - [anon_sym_DOT_STAR] = ACTIONS(7423), - [anon_sym_DASH_GT] = ACTIONS(7423), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7421), - [anon_sym_override] = ACTIONS(7421), - [anon_sym_requires] = ACTIONS(7421), - [anon_sym_COLON_RBRACK] = ACTIONS(7423), + [sym_attribute_specifier] = STATE(2198), + [sym_identifier] = ACTIONS(7413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7415), + [anon_sym_COMMA] = ACTIONS(7415), + [anon_sym_RPAREN] = ACTIONS(7415), + [aux_sym_preproc_if_token2] = ACTIONS(7415), + [aux_sym_preproc_else_token1] = ACTIONS(7415), + [aux_sym_preproc_elif_token1] = ACTIONS(7413), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7415), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7415), + [anon_sym_LPAREN2] = ACTIONS(7415), + [anon_sym_DASH] = ACTIONS(7413), + [anon_sym_PLUS] = ACTIONS(7413), + [anon_sym_STAR] = ACTIONS(7413), + [anon_sym_SLASH] = ACTIONS(7413), + [anon_sym_PERCENT] = ACTIONS(7413), + [anon_sym_PIPE_PIPE] = ACTIONS(7415), + [anon_sym_AMP_AMP] = ACTIONS(7415), + [anon_sym_PIPE] = ACTIONS(7413), + [anon_sym_CARET] = ACTIONS(7413), + [anon_sym_AMP] = ACTIONS(7413), + [anon_sym_EQ_EQ] = ACTIONS(7415), + [anon_sym_BANG_EQ] = ACTIONS(7415), + [anon_sym_GT] = ACTIONS(7413), + [anon_sym_GT_EQ] = ACTIONS(7415), + [anon_sym_LT_EQ] = ACTIONS(7413), + [anon_sym_LT] = ACTIONS(7413), + [anon_sym_LT_LT] = ACTIONS(7413), + [anon_sym_GT_GT] = ACTIONS(7413), + [anon_sym_SEMI] = ACTIONS(7415), + [anon_sym___extension__] = ACTIONS(7413), + [anon_sym___attribute__] = ACTIONS(7239), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_COLON] = ACTIONS(7413), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7415), + [anon_sym_LBRACE] = ACTIONS(7415), + [anon_sym_RBRACE] = ACTIONS(7415), + [anon_sym_LBRACK] = ACTIONS(7415), + [anon_sym_EQ] = ACTIONS(7413), + [anon_sym_const] = ACTIONS(7413), + [anon_sym_constexpr] = ACTIONS(7413), + [anon_sym_volatile] = ACTIONS(7413), + [anon_sym_restrict] = ACTIONS(7413), + [anon_sym___restrict__] = ACTIONS(7413), + [anon_sym__Atomic] = ACTIONS(7413), + [anon_sym__Noreturn] = ACTIONS(7413), + [anon_sym_noreturn] = ACTIONS(7413), + [anon_sym__Nonnull] = ACTIONS(7413), + [anon_sym_mutable] = ACTIONS(7413), + [anon_sym_constinit] = ACTIONS(7413), + [anon_sym_consteval] = ACTIONS(7413), + [anon_sym_alignas] = ACTIONS(7413), + [anon_sym__Alignas] = ACTIONS(7413), + [anon_sym_QMARK] = ACTIONS(7415), + [anon_sym_STAR_EQ] = ACTIONS(7415), + [anon_sym_SLASH_EQ] = ACTIONS(7415), + [anon_sym_PERCENT_EQ] = ACTIONS(7415), + [anon_sym_PLUS_EQ] = ACTIONS(7415), + [anon_sym_DASH_EQ] = ACTIONS(7415), + [anon_sym_LT_LT_EQ] = ACTIONS(7415), + [anon_sym_GT_GT_EQ] = ACTIONS(7415), + [anon_sym_AMP_EQ] = ACTIONS(7415), + [anon_sym_CARET_EQ] = ACTIONS(7415), + [anon_sym_PIPE_EQ] = ACTIONS(7415), + [anon_sym_and_eq] = ACTIONS(7413), + [anon_sym_or_eq] = ACTIONS(7413), + [anon_sym_xor_eq] = ACTIONS(7413), + [anon_sym_LT_EQ_GT] = ACTIONS(7415), + [anon_sym_or] = ACTIONS(7413), + [anon_sym_and] = ACTIONS(7413), + [anon_sym_bitor] = ACTIONS(7413), + [anon_sym_xor] = ACTIONS(7413), + [anon_sym_bitand] = ACTIONS(7413), + [anon_sym_not_eq] = ACTIONS(7413), + [anon_sym_DASH_DASH] = ACTIONS(7415), + [anon_sym_PLUS_PLUS] = ACTIONS(7415), + [anon_sym_DOT] = ACTIONS(7413), + [anon_sym_DOT_STAR] = ACTIONS(7415), + [anon_sym_DASH_GT] = ACTIONS(7415), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7413), + [anon_sym_override] = ACTIONS(7413), + [anon_sym_requires] = ACTIONS(7413), + [anon_sym_COLON_RBRACK] = ACTIONS(7415), }, [STATE(2135)] = { - [sym__abstract_declarator] = STATE(4362), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2137), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1847), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), - [anon_sym_COMMA] = ACTIONS(6999), - [anon_sym_RPAREN] = ACTIONS(6999), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(7001), - [anon_sym_PLUS] = ACTIONS(7001), - [anon_sym_STAR] = ACTIONS(6560), - [anon_sym_SLASH] = ACTIONS(7001), - [anon_sym_PERCENT] = ACTIONS(7001), - [anon_sym_PIPE_PIPE] = ACTIONS(6999), - [anon_sym_AMP_AMP] = ACTIONS(6562), - [anon_sym_PIPE] = ACTIONS(7001), - [anon_sym_CARET] = ACTIONS(7001), - [anon_sym_AMP] = ACTIONS(6564), - [anon_sym_EQ_EQ] = ACTIONS(6999), - [anon_sym_BANG_EQ] = ACTIONS(6999), - [anon_sym_GT] = ACTIONS(7001), - [anon_sym_GT_EQ] = ACTIONS(6999), - [anon_sym_LT_EQ] = ACTIONS(7001), - [anon_sym_LT] = ACTIONS(7001), - [anon_sym_LT_LT] = ACTIONS(7001), - [anon_sym_GT_GT] = ACTIONS(7001), - [anon_sym_SEMI] = ACTIONS(6999), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(7001), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6999), - [anon_sym_RBRACE] = ACTIONS(6999), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(7001), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6999), - [anon_sym_STAR_EQ] = ACTIONS(6999), - [anon_sym_SLASH_EQ] = ACTIONS(6999), - [anon_sym_PERCENT_EQ] = ACTIONS(6999), - [anon_sym_PLUS_EQ] = ACTIONS(6999), - [anon_sym_DASH_EQ] = ACTIONS(6999), - [anon_sym_LT_LT_EQ] = ACTIONS(6999), - [anon_sym_GT_GT_EQ] = ACTIONS(6999), - [anon_sym_AMP_EQ] = ACTIONS(6999), - [anon_sym_CARET_EQ] = ACTIONS(6999), - [anon_sym_PIPE_EQ] = ACTIONS(6999), - [anon_sym_and_eq] = ACTIONS(6999), - [anon_sym_or_eq] = ACTIONS(6999), - [anon_sym_xor_eq] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(6999), - [anon_sym_or] = ACTIONS(7001), - [anon_sym_and] = ACTIONS(7001), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(7001), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(6999), - [anon_sym_PLUS_PLUS] = ACTIONS(6999), - [anon_sym_DOT] = ACTIONS(7001), - [anon_sym_DOT_STAR] = ACTIONS(6999), - [anon_sym_DASH_GT] = ACTIONS(6999), + [sym_function_definition] = STATE(881), + [sym_declaration] = STATE(881), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6385), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_call_modifier] = STATE(2684), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10700), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(5630), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(5631), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(6019), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7405), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7417), + [anon_sym_struct] = ACTIONS(7419), + [anon_sym_union] = ACTIONS(7421), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6999), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, [STATE(2136)] = { - [sym_type_qualifier] = STATE(2199), - [sym_alignas_qualifier] = STATE(2312), - [aux_sym__type_definition_type_repeat1] = STATE(2199), - [aux_sym_sized_type_specifier_repeat1] = STATE(2087), - [sym_identifier] = ACTIONS(7425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), - [anon_sym_COMMA] = ACTIONS(6884), - [anon_sym_LPAREN2] = ACTIONS(6884), - [anon_sym_DASH] = ACTIONS(6886), - [anon_sym_PLUS] = ACTIONS(6886), - [anon_sym_STAR] = ACTIONS(6886), - [anon_sym_SLASH] = ACTIONS(6886), - [anon_sym_PERCENT] = ACTIONS(6886), - [anon_sym_PIPE_PIPE] = ACTIONS(6884), - [anon_sym_AMP_AMP] = ACTIONS(6884), - [anon_sym_PIPE] = ACTIONS(6886), - [anon_sym_CARET] = ACTIONS(6886), - [anon_sym_AMP] = ACTIONS(6886), - [anon_sym_EQ_EQ] = ACTIONS(6884), - [anon_sym_BANG_EQ] = ACTIONS(6884), - [anon_sym_GT] = ACTIONS(6886), - [anon_sym_GT_EQ] = ACTIONS(6884), - [anon_sym_LT_EQ] = ACTIONS(6886), - [anon_sym_LT] = ACTIONS(6886), - [anon_sym_LT_LT] = ACTIONS(6886), - [anon_sym_GT_GT] = ACTIONS(6886), - [anon_sym___extension__] = ACTIONS(7427), - [anon_sym___attribute__] = ACTIONS(6886), - [anon_sym___attribute] = ACTIONS(6886), - [anon_sym_LBRACE] = ACTIONS(6884), - [anon_sym_signed] = ACTIONS(6963), - [anon_sym_unsigned] = ACTIONS(6963), - [anon_sym_long] = ACTIONS(6963), - [anon_sym_short] = ACTIONS(6963), - [anon_sym_LBRACK] = ACTIONS(6884), - [anon_sym_RBRACK] = ACTIONS(6884), - [anon_sym_EQ] = ACTIONS(6886), - [anon_sym_const] = ACTIONS(7427), - [anon_sym_constexpr] = ACTIONS(7427), - [anon_sym_volatile] = ACTIONS(7427), - [anon_sym_restrict] = ACTIONS(7427), - [anon_sym___restrict__] = ACTIONS(7427), - [anon_sym__Atomic] = ACTIONS(7427), + [sym_attribute_specifier] = STATE(2194), + [sym_identifier] = ACTIONS(7423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7425), + [anon_sym_COMMA] = ACTIONS(7425), + [anon_sym_RPAREN] = ACTIONS(7425), + [aux_sym_preproc_if_token2] = ACTIONS(7425), + [aux_sym_preproc_else_token1] = ACTIONS(7425), + [aux_sym_preproc_elif_token1] = ACTIONS(7423), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7425), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7425), + [anon_sym_LPAREN2] = ACTIONS(7425), + [anon_sym_DASH] = ACTIONS(7423), + [anon_sym_PLUS] = ACTIONS(7423), + [anon_sym_STAR] = ACTIONS(7423), + [anon_sym_SLASH] = ACTIONS(7423), + [anon_sym_PERCENT] = ACTIONS(7423), + [anon_sym_PIPE_PIPE] = ACTIONS(7425), + [anon_sym_AMP_AMP] = ACTIONS(7425), + [anon_sym_PIPE] = ACTIONS(7423), + [anon_sym_CARET] = ACTIONS(7423), + [anon_sym_AMP] = ACTIONS(7423), + [anon_sym_EQ_EQ] = ACTIONS(7425), + [anon_sym_BANG_EQ] = ACTIONS(7425), + [anon_sym_GT] = ACTIONS(7423), + [anon_sym_GT_EQ] = ACTIONS(7425), + [anon_sym_LT_EQ] = ACTIONS(7423), + [anon_sym_LT] = ACTIONS(7423), + [anon_sym_LT_LT] = ACTIONS(7423), + [anon_sym_GT_GT] = ACTIONS(7423), + [anon_sym_SEMI] = ACTIONS(7425), + [anon_sym___extension__] = ACTIONS(7423), + [anon_sym___attribute__] = ACTIONS(7239), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_COLON] = ACTIONS(7423), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7425), + [anon_sym_LBRACE] = ACTIONS(7425), + [anon_sym_RBRACE] = ACTIONS(7425), + [anon_sym_LBRACK] = ACTIONS(7425), + [anon_sym_EQ] = ACTIONS(7423), + [anon_sym_const] = ACTIONS(7423), + [anon_sym_constexpr] = ACTIONS(7423), + [anon_sym_volatile] = ACTIONS(7423), + [anon_sym_restrict] = ACTIONS(7423), + [anon_sym___restrict__] = ACTIONS(7423), + [anon_sym__Atomic] = ACTIONS(7423), + [anon_sym__Noreturn] = ACTIONS(7423), + [anon_sym_noreturn] = ACTIONS(7423), + [anon_sym__Nonnull] = ACTIONS(7423), + [anon_sym_mutable] = ACTIONS(7423), + [anon_sym_constinit] = ACTIONS(7423), + [anon_sym_consteval] = ACTIONS(7423), + [anon_sym_alignas] = ACTIONS(7423), + [anon_sym__Alignas] = ACTIONS(7423), + [anon_sym_QMARK] = ACTIONS(7425), + [anon_sym_STAR_EQ] = ACTIONS(7425), + [anon_sym_SLASH_EQ] = ACTIONS(7425), + [anon_sym_PERCENT_EQ] = ACTIONS(7425), + [anon_sym_PLUS_EQ] = ACTIONS(7425), + [anon_sym_DASH_EQ] = ACTIONS(7425), + [anon_sym_LT_LT_EQ] = ACTIONS(7425), + [anon_sym_GT_GT_EQ] = ACTIONS(7425), + [anon_sym_AMP_EQ] = ACTIONS(7425), + [anon_sym_CARET_EQ] = ACTIONS(7425), + [anon_sym_PIPE_EQ] = ACTIONS(7425), + [anon_sym_and_eq] = ACTIONS(7423), + [anon_sym_or_eq] = ACTIONS(7423), + [anon_sym_xor_eq] = ACTIONS(7423), + [anon_sym_LT_EQ_GT] = ACTIONS(7425), + [anon_sym_or] = ACTIONS(7423), + [anon_sym_and] = ACTIONS(7423), + [anon_sym_bitor] = ACTIONS(7423), + [anon_sym_xor] = ACTIONS(7423), + [anon_sym_bitand] = ACTIONS(7423), + [anon_sym_not_eq] = ACTIONS(7423), + [anon_sym_DASH_DASH] = ACTIONS(7425), + [anon_sym_PLUS_PLUS] = ACTIONS(7425), + [anon_sym_DOT] = ACTIONS(7423), + [anon_sym_DOT_STAR] = ACTIONS(7425), + [anon_sym_DASH_GT] = ACTIONS(7425), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7423), + [anon_sym_override] = ACTIONS(7423), + [anon_sym_requires] = ACTIONS(7423), + [anon_sym_COLON_RBRACK] = ACTIONS(7425), + }, + [STATE(2137)] = { + [sym_attribute_specifier] = STATE(2237), + [sym_identifier] = ACTIONS(7427), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7429), + [anon_sym_COMMA] = ACTIONS(7429), + [anon_sym_RPAREN] = ACTIONS(7429), + [aux_sym_preproc_if_token2] = ACTIONS(7429), + [aux_sym_preproc_else_token1] = ACTIONS(7429), + [aux_sym_preproc_elif_token1] = ACTIONS(7427), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7429), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7429), + [anon_sym_LPAREN2] = ACTIONS(7429), + [anon_sym_DASH] = ACTIONS(7427), + [anon_sym_PLUS] = ACTIONS(7427), + [anon_sym_STAR] = ACTIONS(7427), + [anon_sym_SLASH] = ACTIONS(7427), + [anon_sym_PERCENT] = ACTIONS(7427), + [anon_sym_PIPE_PIPE] = ACTIONS(7429), + [anon_sym_AMP_AMP] = ACTIONS(7429), + [anon_sym_PIPE] = ACTIONS(7427), + [anon_sym_CARET] = ACTIONS(7427), + [anon_sym_AMP] = ACTIONS(7427), + [anon_sym_EQ_EQ] = ACTIONS(7429), + [anon_sym_BANG_EQ] = ACTIONS(7429), + [anon_sym_GT] = ACTIONS(7427), + [anon_sym_GT_EQ] = ACTIONS(7429), + [anon_sym_LT_EQ] = ACTIONS(7427), + [anon_sym_LT] = ACTIONS(7427), + [anon_sym_LT_LT] = ACTIONS(7427), + [anon_sym_GT_GT] = ACTIONS(7427), + [anon_sym_SEMI] = ACTIONS(7429), + [anon_sym___extension__] = ACTIONS(7427), + [anon_sym___attribute__] = ACTIONS(7239), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_COLON] = ACTIONS(7427), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7429), + [anon_sym_LBRACE] = ACTIONS(7429), + [anon_sym_RBRACE] = ACTIONS(7429), + [anon_sym_LBRACK] = ACTIONS(7429), + [anon_sym_EQ] = ACTIONS(7427), + [anon_sym_const] = ACTIONS(7427), + [anon_sym_constexpr] = ACTIONS(7427), + [anon_sym_volatile] = ACTIONS(7427), + [anon_sym_restrict] = ACTIONS(7427), + [anon_sym___restrict__] = ACTIONS(7427), + [anon_sym__Atomic] = ACTIONS(7427), [anon_sym__Noreturn] = ACTIONS(7427), [anon_sym_noreturn] = ACTIONS(7427), [anon_sym__Nonnull] = ACTIONS(7427), [anon_sym_mutable] = ACTIONS(7427), [anon_sym_constinit] = ACTIONS(7427), [anon_sym_consteval] = ACTIONS(7427), - [anon_sym_alignas] = ACTIONS(7430), - [anon_sym__Alignas] = ACTIONS(7430), - [sym_primitive_type] = ACTIONS(6965), - [anon_sym_QMARK] = ACTIONS(6884), - [anon_sym_STAR_EQ] = ACTIONS(6884), - [anon_sym_SLASH_EQ] = ACTIONS(6884), - [anon_sym_PERCENT_EQ] = ACTIONS(6884), - [anon_sym_PLUS_EQ] = ACTIONS(6884), - [anon_sym_DASH_EQ] = ACTIONS(6884), - [anon_sym_LT_LT_EQ] = ACTIONS(6884), - [anon_sym_GT_GT_EQ] = ACTIONS(6884), - [anon_sym_AMP_EQ] = ACTIONS(6884), - [anon_sym_CARET_EQ] = ACTIONS(6884), - [anon_sym_PIPE_EQ] = ACTIONS(6884), - [anon_sym_and_eq] = ACTIONS(6886), - [anon_sym_or_eq] = ACTIONS(6886), - [anon_sym_xor_eq] = ACTIONS(6886), - [anon_sym_LT_EQ_GT] = ACTIONS(6884), - [anon_sym_or] = ACTIONS(6886), - [anon_sym_and] = ACTIONS(6886), - [anon_sym_bitor] = ACTIONS(6886), - [anon_sym_xor] = ACTIONS(6886), - [anon_sym_bitand] = ACTIONS(6886), - [anon_sym_not_eq] = ACTIONS(6886), - [anon_sym_DASH_DASH] = ACTIONS(6884), - [anon_sym_PLUS_PLUS] = ACTIONS(6884), - [anon_sym_DOT] = ACTIONS(6886), - [anon_sym_DOT_STAR] = ACTIONS(6884), - [anon_sym_DASH_GT] = ACTIONS(6884), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6886), - [anon_sym_override] = ACTIONS(6886), - [anon_sym_requires] = ACTIONS(6886), - }, - [STATE(2137)] = { - [sym__abstract_declarator] = STATE(4397), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(1913), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1847), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(1913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), - [anon_sym_COMMA] = ACTIONS(7003), - [anon_sym_RPAREN] = ACTIONS(7003), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(6560), - [anon_sym_SLASH] = ACTIONS(7005), - [anon_sym_PERCENT] = ACTIONS(7005), - [anon_sym_PIPE_PIPE] = ACTIONS(7003), - [anon_sym_AMP_AMP] = ACTIONS(6562), - [anon_sym_PIPE] = ACTIONS(7005), - [anon_sym_CARET] = ACTIONS(7005), - [anon_sym_AMP] = ACTIONS(6564), - [anon_sym_EQ_EQ] = ACTIONS(7003), - [anon_sym_BANG_EQ] = ACTIONS(7003), - [anon_sym_GT] = ACTIONS(7005), - [anon_sym_GT_EQ] = ACTIONS(7003), - [anon_sym_LT_EQ] = ACTIONS(7005), - [anon_sym_LT] = ACTIONS(7005), - [anon_sym_LT_LT] = ACTIONS(7005), - [anon_sym_GT_GT] = ACTIONS(7005), - [anon_sym_SEMI] = ACTIONS(7003), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(7005), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7003), - [anon_sym_RBRACE] = ACTIONS(7003), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(7005), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(7003), - [anon_sym_STAR_EQ] = ACTIONS(7003), - [anon_sym_SLASH_EQ] = ACTIONS(7003), - [anon_sym_PERCENT_EQ] = ACTIONS(7003), - [anon_sym_PLUS_EQ] = ACTIONS(7003), - [anon_sym_DASH_EQ] = ACTIONS(7003), - [anon_sym_LT_LT_EQ] = ACTIONS(7003), - [anon_sym_GT_GT_EQ] = ACTIONS(7003), - [anon_sym_AMP_EQ] = ACTIONS(7003), - [anon_sym_CARET_EQ] = ACTIONS(7003), - [anon_sym_PIPE_EQ] = ACTIONS(7003), - [anon_sym_and_eq] = ACTIONS(7003), - [anon_sym_or_eq] = ACTIONS(7003), - [anon_sym_xor_eq] = ACTIONS(7003), - [anon_sym_LT_EQ_GT] = ACTIONS(7003), - [anon_sym_or] = ACTIONS(7005), - [anon_sym_and] = ACTIONS(7005), - [anon_sym_bitor] = ACTIONS(7003), - [anon_sym_xor] = ACTIONS(7005), - [anon_sym_bitand] = ACTIONS(7003), - [anon_sym_not_eq] = ACTIONS(7003), - [anon_sym_DASH_DASH] = ACTIONS(7003), - [anon_sym_PLUS_PLUS] = ACTIONS(7003), - [anon_sym_DOT] = ACTIONS(7005), - [anon_sym_DOT_STAR] = ACTIONS(7003), - [anon_sym_DASH_GT] = ACTIONS(7003), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7003), + [anon_sym_alignas] = ACTIONS(7427), + [anon_sym__Alignas] = ACTIONS(7427), + [anon_sym_QMARK] = ACTIONS(7429), + [anon_sym_STAR_EQ] = ACTIONS(7429), + [anon_sym_SLASH_EQ] = ACTIONS(7429), + [anon_sym_PERCENT_EQ] = ACTIONS(7429), + [anon_sym_PLUS_EQ] = ACTIONS(7429), + [anon_sym_DASH_EQ] = ACTIONS(7429), + [anon_sym_LT_LT_EQ] = ACTIONS(7429), + [anon_sym_GT_GT_EQ] = ACTIONS(7429), + [anon_sym_AMP_EQ] = ACTIONS(7429), + [anon_sym_CARET_EQ] = ACTIONS(7429), + [anon_sym_PIPE_EQ] = ACTIONS(7429), + [anon_sym_and_eq] = ACTIONS(7427), + [anon_sym_or_eq] = ACTIONS(7427), + [anon_sym_xor_eq] = ACTIONS(7427), + [anon_sym_LT_EQ_GT] = ACTIONS(7429), + [anon_sym_or] = ACTIONS(7427), + [anon_sym_and] = ACTIONS(7427), + [anon_sym_bitor] = ACTIONS(7427), + [anon_sym_xor] = ACTIONS(7427), + [anon_sym_bitand] = ACTIONS(7427), + [anon_sym_not_eq] = ACTIONS(7427), + [anon_sym_DASH_DASH] = ACTIONS(7429), + [anon_sym_PLUS_PLUS] = ACTIONS(7429), + [anon_sym_DOT] = ACTIONS(7427), + [anon_sym_DOT_STAR] = ACTIONS(7429), + [anon_sym_DASH_GT] = ACTIONS(7429), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7427), + [anon_sym_override] = ACTIONS(7427), + [anon_sym_requires] = ACTIONS(7427), + [anon_sym_COLON_RBRACK] = ACTIONS(7429), }, [STATE(2138)] = { - [sym__abstract_declarator] = STATE(4416), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2139), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1841), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2139), - [sym_identifier] = ACTIONS(6993), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), - [anon_sym_COMMA] = ACTIONS(6991), - [aux_sym_preproc_if_token2] = ACTIONS(6991), - [aux_sym_preproc_else_token1] = ACTIONS(6991), - [aux_sym_preproc_elif_token1] = ACTIONS(6993), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6991), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6991), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6993), - [anon_sym_PLUS] = ACTIONS(6993), - [anon_sym_STAR] = ACTIONS(6594), - [anon_sym_SLASH] = ACTIONS(6993), - [anon_sym_PERCENT] = ACTIONS(6993), - [anon_sym_PIPE_PIPE] = ACTIONS(6991), - [anon_sym_AMP_AMP] = ACTIONS(6596), - [anon_sym_PIPE] = ACTIONS(6993), - [anon_sym_CARET] = ACTIONS(6993), - [anon_sym_AMP] = ACTIONS(6598), - [anon_sym_EQ_EQ] = ACTIONS(6991), - [anon_sym_BANG_EQ] = ACTIONS(6991), - [anon_sym_GT] = ACTIONS(6993), - [anon_sym_GT_EQ] = ACTIONS(6991), - [anon_sym_LT_EQ] = ACTIONS(6993), - [anon_sym_LT] = ACTIONS(6993), - [anon_sym_LT_LT] = ACTIONS(6993), - [anon_sym_GT_GT] = ACTIONS(6993), - [anon_sym___extension__] = ACTIONS(6469), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6993), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6469), - [anon_sym_volatile] = ACTIONS(6469), - [anon_sym_restrict] = ACTIONS(6469), - [anon_sym___restrict__] = ACTIONS(6469), - [anon_sym__Atomic] = ACTIONS(6469), - [anon_sym__Noreturn] = ACTIONS(6469), - [anon_sym_noreturn] = ACTIONS(6469), - [anon_sym__Nonnull] = ACTIONS(6469), - [anon_sym_mutable] = ACTIONS(6469), - [anon_sym_constinit] = ACTIONS(6469), - [anon_sym_consteval] = ACTIONS(6469), - [anon_sym_alignas] = ACTIONS(6477), - [anon_sym__Alignas] = ACTIONS(6477), - [anon_sym_QMARK] = ACTIONS(6991), - [anon_sym_STAR_EQ] = ACTIONS(6991), - [anon_sym_SLASH_EQ] = ACTIONS(6991), - [anon_sym_PERCENT_EQ] = ACTIONS(6991), - [anon_sym_PLUS_EQ] = ACTIONS(6991), - [anon_sym_DASH_EQ] = ACTIONS(6991), - [anon_sym_LT_LT_EQ] = ACTIONS(6991), - [anon_sym_GT_GT_EQ] = ACTIONS(6991), - [anon_sym_AMP_EQ] = ACTIONS(6991), - [anon_sym_CARET_EQ] = ACTIONS(6991), - [anon_sym_PIPE_EQ] = ACTIONS(6991), - [anon_sym_and_eq] = ACTIONS(6993), - [anon_sym_or_eq] = ACTIONS(6993), - [anon_sym_xor_eq] = ACTIONS(6993), - [anon_sym_LT_EQ_GT] = ACTIONS(6991), - [anon_sym_or] = ACTIONS(6993), - [anon_sym_and] = ACTIONS(6993), - [anon_sym_bitor] = ACTIONS(6993), - [anon_sym_xor] = ACTIONS(6993), - [anon_sym_bitand] = ACTIONS(6993), - [anon_sym_not_eq] = ACTIONS(6993), - [anon_sym_DASH_DASH] = ACTIONS(6991), - [anon_sym_PLUS_PLUS] = ACTIONS(6991), - [anon_sym_DOT] = ACTIONS(6993), - [anon_sym_DOT_STAR] = ACTIONS(6991), - [anon_sym_DASH_GT] = ACTIONS(6991), + [sym_identifier] = ACTIONS(7231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), + [anon_sym_COMMA] = ACTIONS(7233), + [anon_sym_RPAREN] = ACTIONS(7233), + [anon_sym_LPAREN2] = ACTIONS(7233), + [anon_sym_TILDE] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7231), + [anon_sym_PLUS] = ACTIONS(7231), + [anon_sym_STAR] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7231), + [anon_sym_PERCENT] = ACTIONS(7233), + [anon_sym_PIPE_PIPE] = ACTIONS(7233), + [anon_sym_AMP_AMP] = ACTIONS(7233), + [anon_sym_PIPE] = ACTIONS(7231), + [anon_sym_CARET] = ACTIONS(7233), + [anon_sym_AMP] = ACTIONS(7231), + [anon_sym_EQ_EQ] = ACTIONS(7233), + [anon_sym_BANG_EQ] = ACTIONS(7233), + [anon_sym_GT] = ACTIONS(7231), + [anon_sym_GT_EQ] = ACTIONS(7233), + [anon_sym_LT_EQ] = ACTIONS(7231), + [anon_sym_LT] = ACTIONS(7231), + [anon_sym_LT_LT] = ACTIONS(7233), + [anon_sym_GT_GT] = ACTIONS(7233), + [anon_sym_SEMI] = ACTIONS(7233), + [anon_sym___extension__] = ACTIONS(7231), + [anon_sym_virtual] = ACTIONS(7231), + [anon_sym_extern] = ACTIONS(7231), + [anon_sym___attribute__] = ACTIONS(7231), + [anon_sym___attribute] = ACTIONS(7231), + [anon_sym_COLON_COLON] = ACTIONS(7233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7233), + [anon_sym___declspec] = ACTIONS(7231), + [anon_sym___based] = ACTIONS(7231), + [anon_sym___cdecl] = ACTIONS(7231), + [anon_sym___clrcall] = ACTIONS(7231), + [anon_sym___stdcall] = ACTIONS(7231), + [anon_sym___fastcall] = ACTIONS(7231), + [anon_sym___thiscall] = ACTIONS(7231), + [anon_sym___vectorcall] = ACTIONS(7231), + [anon_sym_LBRACE] = ACTIONS(7233), + [anon_sym_RBRACE] = ACTIONS(7233), + [anon_sym_LBRACK] = ACTIONS(7231), + [anon_sym_static] = ACTIONS(7231), + [anon_sym_EQ] = ACTIONS(7231), + [anon_sym_register] = ACTIONS(7231), + [anon_sym_inline] = ACTIONS(7231), + [anon_sym___inline] = ACTIONS(7231), + [anon_sym___inline__] = ACTIONS(7231), + [anon_sym___forceinline] = ACTIONS(7231), + [anon_sym_thread_local] = ACTIONS(7231), + [anon_sym___thread] = ACTIONS(7231), + [anon_sym_const] = ACTIONS(7231), + [anon_sym_constexpr] = ACTIONS(7231), + [anon_sym_volatile] = ACTIONS(7231), + [anon_sym_restrict] = ACTIONS(7231), + [anon_sym___restrict__] = ACTIONS(7231), + [anon_sym__Atomic] = ACTIONS(7231), + [anon_sym__Noreturn] = ACTIONS(7231), + [anon_sym_noreturn] = ACTIONS(7231), + [anon_sym__Nonnull] = ACTIONS(7231), + [anon_sym_mutable] = ACTIONS(7231), + [anon_sym_constinit] = ACTIONS(7231), + [anon_sym_consteval] = ACTIONS(7231), + [anon_sym_alignas] = ACTIONS(7231), + [anon_sym__Alignas] = ACTIONS(7231), + [anon_sym_QMARK] = ACTIONS(7233), + [anon_sym_LT_EQ_GT] = ACTIONS(7233), + [anon_sym_or] = ACTIONS(7231), + [anon_sym_and] = ACTIONS(7231), + [anon_sym_bitor] = ACTIONS(7231), + [anon_sym_xor] = ACTIONS(7231), + [anon_sym_bitand] = ACTIONS(7231), + [anon_sym_not_eq] = ACTIONS(7231), + [anon_sym_DASH_DASH] = ACTIONS(7233), + [anon_sym_PLUS_PLUS] = ACTIONS(7233), + [anon_sym_DOT] = ACTIONS(7231), + [anon_sym_DOT_STAR] = ACTIONS(7233), + [anon_sym_DASH_GT] = ACTIONS(7233), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7231), + [anon_sym_template] = ACTIONS(7231), + [anon_sym_operator] = ACTIONS(7231), + [anon_sym_LBRACK_COLON] = ACTIONS(7233), }, [STATE(2139)] = { - [sym__abstract_declarator] = STATE(4417), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2293), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1841), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(6997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), - [anon_sym_COMMA] = ACTIONS(6995), - [aux_sym_preproc_if_token2] = ACTIONS(6995), - [aux_sym_preproc_else_token1] = ACTIONS(6995), - [aux_sym_preproc_elif_token1] = ACTIONS(6997), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6995), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6995), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6997), - [anon_sym_PLUS] = ACTIONS(6997), - [anon_sym_STAR] = ACTIONS(6594), - [anon_sym_SLASH] = ACTIONS(6997), - [anon_sym_PERCENT] = ACTIONS(6997), - [anon_sym_PIPE_PIPE] = ACTIONS(6995), - [anon_sym_AMP_AMP] = ACTIONS(6596), - [anon_sym_PIPE] = ACTIONS(6997), - [anon_sym_CARET] = ACTIONS(6997), - [anon_sym_AMP] = ACTIONS(6598), - [anon_sym_EQ_EQ] = ACTIONS(6995), - [anon_sym_BANG_EQ] = ACTIONS(6995), - [anon_sym_GT] = ACTIONS(6997), - [anon_sym_GT_EQ] = ACTIONS(6995), - [anon_sym_LT_EQ] = ACTIONS(6997), - [anon_sym_LT] = ACTIONS(6997), - [anon_sym_LT_LT] = ACTIONS(6997), - [anon_sym_GT_GT] = ACTIONS(6997), - [anon_sym___extension__] = ACTIONS(6469), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6997), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6469), - [anon_sym_volatile] = ACTIONS(6469), - [anon_sym_restrict] = ACTIONS(6469), - [anon_sym___restrict__] = ACTIONS(6469), - [anon_sym__Atomic] = ACTIONS(6469), - [anon_sym__Noreturn] = ACTIONS(6469), - [anon_sym_noreturn] = ACTIONS(6469), - [anon_sym__Nonnull] = ACTIONS(6469), - [anon_sym_mutable] = ACTIONS(6469), - [anon_sym_constinit] = ACTIONS(6469), - [anon_sym_consteval] = ACTIONS(6469), - [anon_sym_alignas] = ACTIONS(6477), - [anon_sym__Alignas] = ACTIONS(6477), - [anon_sym_QMARK] = ACTIONS(6995), - [anon_sym_STAR_EQ] = ACTIONS(6995), - [anon_sym_SLASH_EQ] = ACTIONS(6995), - [anon_sym_PERCENT_EQ] = ACTIONS(6995), - [anon_sym_PLUS_EQ] = ACTIONS(6995), - [anon_sym_DASH_EQ] = ACTIONS(6995), - [anon_sym_LT_LT_EQ] = ACTIONS(6995), - [anon_sym_GT_GT_EQ] = ACTIONS(6995), - [anon_sym_AMP_EQ] = ACTIONS(6995), - [anon_sym_CARET_EQ] = ACTIONS(6995), - [anon_sym_PIPE_EQ] = ACTIONS(6995), - [anon_sym_and_eq] = ACTIONS(6997), - [anon_sym_or_eq] = ACTIONS(6997), - [anon_sym_xor_eq] = ACTIONS(6997), - [anon_sym_LT_EQ_GT] = ACTIONS(6995), - [anon_sym_or] = ACTIONS(6997), - [anon_sym_and] = ACTIONS(6997), - [anon_sym_bitor] = ACTIONS(6997), - [anon_sym_xor] = ACTIONS(6997), - [anon_sym_bitand] = ACTIONS(6997), - [anon_sym_not_eq] = ACTIONS(6997), - [anon_sym_DASH_DASH] = ACTIONS(6995), - [anon_sym_PLUS_PLUS] = ACTIONS(6995), - [anon_sym_DOT] = ACTIONS(6997), - [anon_sym_DOT_STAR] = ACTIONS(6995), - [anon_sym_DASH_GT] = ACTIONS(6995), - [sym_comment] = ACTIONS(3), - }, - [STATE(2140)] = { - [sym__abstract_declarator] = STATE(4418), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2142), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1841), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2142), - [sym_identifier] = ACTIONS(7001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), - [anon_sym_COMMA] = ACTIONS(6999), - [aux_sym_preproc_if_token2] = ACTIONS(6999), - [aux_sym_preproc_else_token1] = ACTIONS(6999), - [aux_sym_preproc_elif_token1] = ACTIONS(7001), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6999), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6999), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(7001), - [anon_sym_PLUS] = ACTIONS(7001), - [anon_sym_STAR] = ACTIONS(6594), - [anon_sym_SLASH] = ACTIONS(7001), - [anon_sym_PERCENT] = ACTIONS(7001), - [anon_sym_PIPE_PIPE] = ACTIONS(6999), - [anon_sym_AMP_AMP] = ACTIONS(6596), - [anon_sym_PIPE] = ACTIONS(7001), - [anon_sym_CARET] = ACTIONS(7001), - [anon_sym_AMP] = ACTIONS(6598), - [anon_sym_EQ_EQ] = ACTIONS(6999), - [anon_sym_BANG_EQ] = ACTIONS(6999), - [anon_sym_GT] = ACTIONS(7001), - [anon_sym_GT_EQ] = ACTIONS(6999), - [anon_sym_LT_EQ] = ACTIONS(7001), - [anon_sym_LT] = ACTIONS(7001), - [anon_sym_LT_LT] = ACTIONS(7001), - [anon_sym_GT_GT] = ACTIONS(7001), - [anon_sym___extension__] = ACTIONS(6469), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(7001), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6469), - [anon_sym_volatile] = ACTIONS(6469), - [anon_sym_restrict] = ACTIONS(6469), - [anon_sym___restrict__] = ACTIONS(6469), - [anon_sym__Atomic] = ACTIONS(6469), - [anon_sym__Noreturn] = ACTIONS(6469), - [anon_sym_noreturn] = ACTIONS(6469), - [anon_sym__Nonnull] = ACTIONS(6469), - [anon_sym_mutable] = ACTIONS(6469), - [anon_sym_constinit] = ACTIONS(6469), - [anon_sym_consteval] = ACTIONS(6469), - [anon_sym_alignas] = ACTIONS(6477), - [anon_sym__Alignas] = ACTIONS(6477), - [anon_sym_QMARK] = ACTIONS(6999), - [anon_sym_STAR_EQ] = ACTIONS(6999), - [anon_sym_SLASH_EQ] = ACTIONS(6999), - [anon_sym_PERCENT_EQ] = ACTIONS(6999), - [anon_sym_PLUS_EQ] = ACTIONS(6999), - [anon_sym_DASH_EQ] = ACTIONS(6999), - [anon_sym_LT_LT_EQ] = ACTIONS(6999), - [anon_sym_GT_GT_EQ] = ACTIONS(6999), - [anon_sym_AMP_EQ] = ACTIONS(6999), - [anon_sym_CARET_EQ] = ACTIONS(6999), - [anon_sym_PIPE_EQ] = ACTIONS(6999), - [anon_sym_and_eq] = ACTIONS(7001), - [anon_sym_or_eq] = ACTIONS(7001), - [anon_sym_xor_eq] = ACTIONS(7001), - [anon_sym_LT_EQ_GT] = ACTIONS(6999), - [anon_sym_or] = ACTIONS(7001), - [anon_sym_and] = ACTIONS(7001), - [anon_sym_bitor] = ACTIONS(7001), - [anon_sym_xor] = ACTIONS(7001), - [anon_sym_bitand] = ACTIONS(7001), - [anon_sym_not_eq] = ACTIONS(7001), - [anon_sym_DASH_DASH] = ACTIONS(6999), - [anon_sym_PLUS_PLUS] = ACTIONS(6999), - [anon_sym_DOT] = ACTIONS(7001), - [anon_sym_DOT_STAR] = ACTIONS(6999), - [anon_sym_DASH_GT] = ACTIONS(6999), - [sym_comment] = ACTIONS(3), - }, - [STATE(2141)] = { - [sym__abstract_declarator] = STATE(4422), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2293), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1841), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(6495), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [aux_sym_preproc_if_token2] = ACTIONS(6497), - [aux_sym_preproc_else_token1] = ACTIONS(6497), - [aux_sym_preproc_elif_token1] = ACTIONS(6495), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6497), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6594), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(6596), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(6598), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym___extension__] = ACTIONS(6469), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6469), - [anon_sym_volatile] = ACTIONS(6469), - [anon_sym_restrict] = ACTIONS(6469), - [anon_sym___restrict__] = ACTIONS(6469), - [anon_sym__Atomic] = ACTIONS(6469), - [anon_sym__Noreturn] = ACTIONS(6469), - [anon_sym_noreturn] = ACTIONS(6469), - [anon_sym__Nonnull] = ACTIONS(6469), - [anon_sym_mutable] = ACTIONS(6469), - [anon_sym_constinit] = ACTIONS(6469), - [anon_sym_consteval] = ACTIONS(6469), - [anon_sym_alignas] = ACTIONS(6477), - [anon_sym__Alignas] = ACTIONS(6477), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6497), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_and_eq] = ACTIONS(6495), - [anon_sym_or_eq] = ACTIONS(6495), - [anon_sym_xor_eq] = ACTIONS(6495), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6495), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6495), - [anon_sym_not_eq] = ACTIONS(6495), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - }, - [STATE(2142)] = { - [sym__abstract_declarator] = STATE(4293), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2293), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1841), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(7005), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), - [anon_sym_COMMA] = ACTIONS(7003), - [aux_sym_preproc_if_token2] = ACTIONS(7003), - [aux_sym_preproc_else_token1] = ACTIONS(7003), - [aux_sym_preproc_elif_token1] = ACTIONS(7005), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7003), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7003), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(6594), - [anon_sym_SLASH] = ACTIONS(7005), - [anon_sym_PERCENT] = ACTIONS(7005), - [anon_sym_PIPE_PIPE] = ACTIONS(7003), - [anon_sym_AMP_AMP] = ACTIONS(6596), - [anon_sym_PIPE] = ACTIONS(7005), - [anon_sym_CARET] = ACTIONS(7005), - [anon_sym_AMP] = ACTIONS(6598), - [anon_sym_EQ_EQ] = ACTIONS(7003), - [anon_sym_BANG_EQ] = ACTIONS(7003), - [anon_sym_GT] = ACTIONS(7005), - [anon_sym_GT_EQ] = ACTIONS(7003), - [anon_sym_LT_EQ] = ACTIONS(7005), - [anon_sym_LT] = ACTIONS(7005), - [anon_sym_LT_LT] = ACTIONS(7005), - [anon_sym_GT_GT] = ACTIONS(7005), - [anon_sym___extension__] = ACTIONS(6469), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(7005), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6469), - [anon_sym_volatile] = ACTIONS(6469), - [anon_sym_restrict] = ACTIONS(6469), - [anon_sym___restrict__] = ACTIONS(6469), - [anon_sym__Atomic] = ACTIONS(6469), - [anon_sym__Noreturn] = ACTIONS(6469), - [anon_sym_noreturn] = ACTIONS(6469), - [anon_sym__Nonnull] = ACTIONS(6469), - [anon_sym_mutable] = ACTIONS(6469), - [anon_sym_constinit] = ACTIONS(6469), - [anon_sym_consteval] = ACTIONS(6469), - [anon_sym_alignas] = ACTIONS(6477), - [anon_sym__Alignas] = ACTIONS(6477), - [anon_sym_QMARK] = ACTIONS(7003), - [anon_sym_STAR_EQ] = ACTIONS(7003), - [anon_sym_SLASH_EQ] = ACTIONS(7003), - [anon_sym_PERCENT_EQ] = ACTIONS(7003), - [anon_sym_PLUS_EQ] = ACTIONS(7003), - [anon_sym_DASH_EQ] = ACTIONS(7003), - [anon_sym_LT_LT_EQ] = ACTIONS(7003), - [anon_sym_GT_GT_EQ] = ACTIONS(7003), - [anon_sym_AMP_EQ] = ACTIONS(7003), - [anon_sym_CARET_EQ] = ACTIONS(7003), - [anon_sym_PIPE_EQ] = ACTIONS(7003), - [anon_sym_and_eq] = ACTIONS(7005), - [anon_sym_or_eq] = ACTIONS(7005), - [anon_sym_xor_eq] = ACTIONS(7005), - [anon_sym_LT_EQ_GT] = ACTIONS(7003), - [anon_sym_or] = ACTIONS(7005), - [anon_sym_and] = ACTIONS(7005), - [anon_sym_bitor] = ACTIONS(7005), - [anon_sym_xor] = ACTIONS(7005), - [anon_sym_bitand] = ACTIONS(7005), - [anon_sym_not_eq] = ACTIONS(7005), - [anon_sym_DASH_DASH] = ACTIONS(7003), - [anon_sym_PLUS_PLUS] = ACTIONS(7003), - [anon_sym_DOT] = ACTIONS(7005), - [anon_sym_DOT_STAR] = ACTIONS(7003), - [anon_sym_DASH_GT] = ACTIONS(7003), - [sym_comment] = ACTIONS(3), - }, - [STATE(2143)] = { - [sym__abstract_declarator] = STATE(4423), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2293), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1841), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(7009), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), - [anon_sym_COMMA] = ACTIONS(7007), - [aux_sym_preproc_if_token2] = ACTIONS(7007), - [aux_sym_preproc_else_token1] = ACTIONS(7007), - [aux_sym_preproc_elif_token1] = ACTIONS(7009), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7007), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7007), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(7009), - [anon_sym_PLUS] = ACTIONS(7009), - [anon_sym_STAR] = ACTIONS(6594), - [anon_sym_SLASH] = ACTIONS(7009), - [anon_sym_PERCENT] = ACTIONS(7009), - [anon_sym_PIPE_PIPE] = ACTIONS(7007), - [anon_sym_AMP_AMP] = ACTIONS(6596), - [anon_sym_PIPE] = ACTIONS(7009), - [anon_sym_CARET] = ACTIONS(7009), - [anon_sym_AMP] = ACTIONS(6598), - [anon_sym_EQ_EQ] = ACTIONS(7007), - [anon_sym_BANG_EQ] = ACTIONS(7007), - [anon_sym_GT] = ACTIONS(7009), - [anon_sym_GT_EQ] = ACTIONS(7007), - [anon_sym_LT_EQ] = ACTIONS(7009), - [anon_sym_LT] = ACTIONS(7009), - [anon_sym_LT_LT] = ACTIONS(7009), - [anon_sym_GT_GT] = ACTIONS(7009), - [anon_sym___extension__] = ACTIONS(6469), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(7009), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6469), - [anon_sym_volatile] = ACTIONS(6469), - [anon_sym_restrict] = ACTIONS(6469), - [anon_sym___restrict__] = ACTIONS(6469), - [anon_sym__Atomic] = ACTIONS(6469), - [anon_sym__Noreturn] = ACTIONS(6469), - [anon_sym_noreturn] = ACTIONS(6469), - [anon_sym__Nonnull] = ACTIONS(6469), - [anon_sym_mutable] = ACTIONS(6469), - [anon_sym_constinit] = ACTIONS(6469), - [anon_sym_consteval] = ACTIONS(6469), - [anon_sym_alignas] = ACTIONS(6477), - [anon_sym__Alignas] = ACTIONS(6477), - [anon_sym_QMARK] = ACTIONS(7007), - [anon_sym_STAR_EQ] = ACTIONS(7007), - [anon_sym_SLASH_EQ] = ACTIONS(7007), - [anon_sym_PERCENT_EQ] = ACTIONS(7007), - [anon_sym_PLUS_EQ] = ACTIONS(7007), - [anon_sym_DASH_EQ] = ACTIONS(7007), - [anon_sym_LT_LT_EQ] = ACTIONS(7007), - [anon_sym_GT_GT_EQ] = ACTIONS(7007), - [anon_sym_AMP_EQ] = ACTIONS(7007), - [anon_sym_CARET_EQ] = ACTIONS(7007), - [anon_sym_PIPE_EQ] = ACTIONS(7007), - [anon_sym_and_eq] = ACTIONS(7009), - [anon_sym_or_eq] = ACTIONS(7009), - [anon_sym_xor_eq] = ACTIONS(7009), - [anon_sym_LT_EQ_GT] = ACTIONS(7007), - [anon_sym_or] = ACTIONS(7009), - [anon_sym_and] = ACTIONS(7009), - [anon_sym_bitor] = ACTIONS(7009), - [anon_sym_xor] = ACTIONS(7009), - [anon_sym_bitand] = ACTIONS(7009), - [anon_sym_not_eq] = ACTIONS(7009), - [anon_sym_DASH_DASH] = ACTIONS(7007), - [anon_sym_PLUS_PLUS] = ACTIONS(7007), - [anon_sym_DOT] = ACTIONS(7009), - [anon_sym_DOT_STAR] = ACTIONS(7007), - [anon_sym_DASH_GT] = ACTIONS(7007), - [sym_comment] = ACTIONS(3), - }, - [STATE(2144)] = { - [sym_attribute_specifier] = STATE(3106), - [sym_attribute_declaration] = STATE(6276), - [sym_type_qualifier] = STATE(3653), - [sym_alignas_qualifier] = STATE(3874), - [sym_gnu_asm_expression] = STATE(8995), - [sym_virtual_specifier] = STATE(6331), - [sym_ref_qualifier] = STATE(3994), - [sym__function_attributes_start] = STATE(3863), - [sym__function_exception_specification] = STATE(4463), - [sym__function_attributes_end] = STATE(6171), - [sym__function_postfix] = STATE(6492), - [sym_trailing_return_type] = STATE(6228), - [sym_noexcept] = STATE(4463), - [sym_throw_specifier] = STATE(4463), - [sym_requires_clause] = STATE(6492), - [aux_sym_type_definition_repeat1] = STATE(3106), - [aux_sym__type_definition_type_repeat1] = STATE(3653), - [aux_sym_attributed_declarator_repeat1] = STATE(6276), - [aux_sym__function_postfix_repeat1] = STATE(6331), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6113), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6113), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6113), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(7433), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6113), - [anon_sym_AMP] = ACTIONS(7436), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6111), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6113), - [anon_sym_GT_GT] = ACTIONS(6111), - [anon_sym___extension__] = ACTIONS(7439), - [anon_sym___attribute__] = ACTIONS(7441), - [anon_sym___attribute] = ACTIONS(7443), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7445), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_const] = ACTIONS(7447), - [anon_sym_constexpr] = ACTIONS(7439), - [anon_sym_volatile] = ACTIONS(7439), - [anon_sym_restrict] = ACTIONS(7439), - [anon_sym___restrict__] = ACTIONS(7439), - [anon_sym__Atomic] = ACTIONS(7439), - [anon_sym__Noreturn] = ACTIONS(7439), - [anon_sym_noreturn] = ACTIONS(7439), - [anon_sym__Nonnull] = ACTIONS(7439), - [anon_sym_mutable] = ACTIONS(7439), - [anon_sym_constinit] = ACTIONS(7439), - [anon_sym_consteval] = ACTIONS(7439), - [anon_sym_alignas] = ACTIONS(7449), - [anon_sym__Alignas] = ACTIONS(7449), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6113), - [anon_sym_and] = ACTIONS(6113), - [anon_sym_bitor] = ACTIONS(6113), - [anon_sym_xor] = ACTIONS(6113), - [anon_sym_bitand] = ACTIONS(6113), - [anon_sym_not_eq] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(7451), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7454), - [anon_sym_override] = ACTIONS(7454), - [anon_sym_GT2] = ACTIONS(6113), - [anon_sym_noexcept] = ACTIONS(7456), - [anon_sym_throw] = ACTIONS(7458), - [anon_sym_requires] = ACTIONS(7460), - }, - [STATE(2145)] = { - [sym_type_qualifier] = STATE(2186), - [sym_alignas_qualifier] = STATE(2295), - [aux_sym__type_definition_type_repeat1] = STATE(2186), - [aux_sym_sized_type_specifier_repeat1] = STATE(2348), - [sym_identifier] = ACTIONS(7462), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), - [anon_sym_COMMA] = ACTIONS(6884), - [anon_sym_LPAREN2] = ACTIONS(6884), - [anon_sym_DASH] = ACTIONS(6886), - [anon_sym_PLUS] = ACTIONS(6886), - [anon_sym_STAR] = ACTIONS(6886), - [anon_sym_SLASH] = ACTIONS(6886), - [anon_sym_PERCENT] = ACTIONS(6886), - [anon_sym_PIPE_PIPE] = ACTIONS(6884), - [anon_sym_AMP_AMP] = ACTIONS(6884), - [anon_sym_PIPE] = ACTIONS(6886), - [anon_sym_CARET] = ACTIONS(6886), - [anon_sym_AMP] = ACTIONS(6886), - [anon_sym_EQ_EQ] = ACTIONS(6884), - [anon_sym_BANG_EQ] = ACTIONS(6884), - [anon_sym_GT] = ACTIONS(6886), - [anon_sym_GT_EQ] = ACTIONS(6886), - [anon_sym_LT_EQ] = ACTIONS(6886), - [anon_sym_LT] = ACTIONS(6886), - [anon_sym_LT_LT] = ACTIONS(6886), - [anon_sym_GT_GT] = ACTIONS(6886), - [anon_sym___extension__] = ACTIONS(7464), - [anon_sym___attribute__] = ACTIONS(6886), - [anon_sym___attribute] = ACTIONS(6886), - [anon_sym_LBRACE] = ACTIONS(6884), - [anon_sym_signed] = ACTIONS(7467), - [anon_sym_unsigned] = ACTIONS(7467), - [anon_sym_long] = ACTIONS(7467), - [anon_sym_short] = ACTIONS(7467), - [anon_sym_LBRACK] = ACTIONS(6884), - [anon_sym_EQ] = ACTIONS(6886), - [anon_sym_const] = ACTIONS(7464), - [anon_sym_constexpr] = ACTIONS(7464), - [anon_sym_volatile] = ACTIONS(7464), - [anon_sym_restrict] = ACTIONS(7464), - [anon_sym___restrict__] = ACTIONS(7464), - [anon_sym__Atomic] = ACTIONS(7464), - [anon_sym__Noreturn] = ACTIONS(7464), - [anon_sym_noreturn] = ACTIONS(7464), - [anon_sym__Nonnull] = ACTIONS(7464), - [anon_sym_mutable] = ACTIONS(7464), - [anon_sym_constinit] = ACTIONS(7464), - [anon_sym_consteval] = ACTIONS(7464), - [anon_sym_alignas] = ACTIONS(7469), - [anon_sym__Alignas] = ACTIONS(7469), - [sym_primitive_type] = ACTIONS(7472), - [anon_sym_QMARK] = ACTIONS(6884), - [anon_sym_STAR_EQ] = ACTIONS(6884), - [anon_sym_SLASH_EQ] = ACTIONS(6884), - [anon_sym_PERCENT_EQ] = ACTIONS(6884), - [anon_sym_PLUS_EQ] = ACTIONS(6884), - [anon_sym_DASH_EQ] = ACTIONS(6884), - [anon_sym_LT_LT_EQ] = ACTIONS(6884), - [anon_sym_GT_GT_EQ] = ACTIONS(6886), - [anon_sym_AMP_EQ] = ACTIONS(6884), - [anon_sym_CARET_EQ] = ACTIONS(6884), - [anon_sym_PIPE_EQ] = ACTIONS(6884), - [anon_sym_and_eq] = ACTIONS(6886), - [anon_sym_or_eq] = ACTIONS(6886), - [anon_sym_xor_eq] = ACTIONS(6886), - [anon_sym_LT_EQ_GT] = ACTIONS(6884), - [anon_sym_or] = ACTIONS(6886), - [anon_sym_and] = ACTIONS(6886), - [anon_sym_bitor] = ACTIONS(6886), - [anon_sym_xor] = ACTIONS(6886), - [anon_sym_bitand] = ACTIONS(6886), - [anon_sym_not_eq] = ACTIONS(6886), - [anon_sym_DASH_DASH] = ACTIONS(6884), - [anon_sym_PLUS_PLUS] = ACTIONS(6884), - [anon_sym_DOT] = ACTIONS(6886), - [anon_sym_DOT_STAR] = ACTIONS(6884), - [anon_sym_DASH_GT] = ACTIONS(6884), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6886), - [anon_sym_override] = ACTIONS(6886), - [anon_sym_GT2] = ACTIONS(6884), - [anon_sym_requires] = ACTIONS(6886), - }, - [STATE(2146)] = { - [sym__abstract_declarator] = STATE(4333), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2147), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1870), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), - [anon_sym_COMMA] = ACTIONS(6991), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6993), - [anon_sym_PLUS] = ACTIONS(6993), - [anon_sym_STAR] = ACTIONS(6576), - [anon_sym_SLASH] = ACTIONS(6993), - [anon_sym_PERCENT] = ACTIONS(6993), - [anon_sym_PIPE_PIPE] = ACTIONS(6991), - [anon_sym_AMP_AMP] = ACTIONS(6578), - [anon_sym_PIPE] = ACTIONS(6993), - [anon_sym_CARET] = ACTIONS(6993), - [anon_sym_AMP] = ACTIONS(6580), - [anon_sym_EQ_EQ] = ACTIONS(6991), - [anon_sym_BANG_EQ] = ACTIONS(6991), - [anon_sym_GT] = ACTIONS(6993), - [anon_sym_GT_EQ] = ACTIONS(6991), - [anon_sym_LT_EQ] = ACTIONS(6993), - [anon_sym_LT] = ACTIONS(6993), - [anon_sym_LT_LT] = ACTIONS(6993), - [anon_sym_GT_GT] = ACTIONS(6993), - [anon_sym_SEMI] = ACTIONS(6991), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym___attribute__] = ACTIONS(6991), - [anon_sym___attribute] = ACTIONS(6993), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6993), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6991), - [anon_sym_STAR_EQ] = ACTIONS(6991), - [anon_sym_SLASH_EQ] = ACTIONS(6991), - [anon_sym_PERCENT_EQ] = ACTIONS(6991), - [anon_sym_PLUS_EQ] = ACTIONS(6991), - [anon_sym_DASH_EQ] = ACTIONS(6991), - [anon_sym_LT_LT_EQ] = ACTIONS(6991), - [anon_sym_GT_GT_EQ] = ACTIONS(6991), - [anon_sym_AMP_EQ] = ACTIONS(6991), - [anon_sym_CARET_EQ] = ACTIONS(6991), - [anon_sym_PIPE_EQ] = ACTIONS(6991), - [anon_sym_and_eq] = ACTIONS(6991), - [anon_sym_or_eq] = ACTIONS(6991), - [anon_sym_xor_eq] = ACTIONS(6991), - [anon_sym_LT_EQ_GT] = ACTIONS(6991), - [anon_sym_or] = ACTIONS(6993), - [anon_sym_and] = ACTIONS(6993), - [anon_sym_bitor] = ACTIONS(6991), - [anon_sym_xor] = ACTIONS(6993), - [anon_sym_bitand] = ACTIONS(6991), - [anon_sym_not_eq] = ACTIONS(6991), - [anon_sym_DASH_DASH] = ACTIONS(6991), - [anon_sym_PLUS_PLUS] = ACTIONS(6991), - [anon_sym_DOT] = ACTIONS(6993), - [anon_sym_DOT_STAR] = ACTIONS(6991), - [anon_sym_DASH_GT] = ACTIONS(6991), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6991), - [anon_sym_override] = ACTIONS(6991), - [anon_sym_requires] = ACTIONS(6991), - }, - [STATE(2147)] = { - [sym__abstract_declarator] = STATE(4335), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(1913), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1870), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(1913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), - [anon_sym_COMMA] = ACTIONS(6995), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6997), - [anon_sym_PLUS] = ACTIONS(6997), - [anon_sym_STAR] = ACTIONS(6576), - [anon_sym_SLASH] = ACTIONS(6997), - [anon_sym_PERCENT] = ACTIONS(6997), - [anon_sym_PIPE_PIPE] = ACTIONS(6995), - [anon_sym_AMP_AMP] = ACTIONS(6578), - [anon_sym_PIPE] = ACTIONS(6997), - [anon_sym_CARET] = ACTIONS(6997), - [anon_sym_AMP] = ACTIONS(6580), - [anon_sym_EQ_EQ] = ACTIONS(6995), - [anon_sym_BANG_EQ] = ACTIONS(6995), - [anon_sym_GT] = ACTIONS(6997), - [anon_sym_GT_EQ] = ACTIONS(6995), - [anon_sym_LT_EQ] = ACTIONS(6997), - [anon_sym_LT] = ACTIONS(6997), - [anon_sym_LT_LT] = ACTIONS(6997), - [anon_sym_GT_GT] = ACTIONS(6997), - [anon_sym_SEMI] = ACTIONS(6995), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym___attribute__] = ACTIONS(6995), - [anon_sym___attribute] = ACTIONS(6997), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6997), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6995), - [anon_sym_STAR_EQ] = ACTIONS(6995), - [anon_sym_SLASH_EQ] = ACTIONS(6995), - [anon_sym_PERCENT_EQ] = ACTIONS(6995), - [anon_sym_PLUS_EQ] = ACTIONS(6995), - [anon_sym_DASH_EQ] = ACTIONS(6995), - [anon_sym_LT_LT_EQ] = ACTIONS(6995), - [anon_sym_GT_GT_EQ] = ACTIONS(6995), - [anon_sym_AMP_EQ] = ACTIONS(6995), - [anon_sym_CARET_EQ] = ACTIONS(6995), - [anon_sym_PIPE_EQ] = ACTIONS(6995), - [anon_sym_and_eq] = ACTIONS(6995), - [anon_sym_or_eq] = ACTIONS(6995), - [anon_sym_xor_eq] = ACTIONS(6995), - [anon_sym_LT_EQ_GT] = ACTIONS(6995), - [anon_sym_or] = ACTIONS(6997), - [anon_sym_and] = ACTIONS(6997), - [anon_sym_bitor] = ACTIONS(6995), - [anon_sym_xor] = ACTIONS(6997), - [anon_sym_bitand] = ACTIONS(6995), - [anon_sym_not_eq] = ACTIONS(6995), - [anon_sym_DASH_DASH] = ACTIONS(6995), - [anon_sym_PLUS_PLUS] = ACTIONS(6995), - [anon_sym_DOT] = ACTIONS(6997), - [anon_sym_DOT_STAR] = ACTIONS(6995), - [anon_sym_DASH_GT] = ACTIONS(6995), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6995), - [anon_sym_override] = ACTIONS(6995), - [anon_sym_requires] = ACTIONS(6995), - }, - [STATE(2148)] = { - [sym__abstract_declarator] = STATE(4336), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2150), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1870), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2150), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), - [anon_sym_COMMA] = ACTIONS(6999), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(7001), - [anon_sym_PLUS] = ACTIONS(7001), - [anon_sym_STAR] = ACTIONS(6576), - [anon_sym_SLASH] = ACTIONS(7001), - [anon_sym_PERCENT] = ACTIONS(7001), - [anon_sym_PIPE_PIPE] = ACTIONS(6999), - [anon_sym_AMP_AMP] = ACTIONS(6578), - [anon_sym_PIPE] = ACTIONS(7001), - [anon_sym_CARET] = ACTIONS(7001), - [anon_sym_AMP] = ACTIONS(6580), - [anon_sym_EQ_EQ] = ACTIONS(6999), - [anon_sym_BANG_EQ] = ACTIONS(6999), - [anon_sym_GT] = ACTIONS(7001), - [anon_sym_GT_EQ] = ACTIONS(6999), - [anon_sym_LT_EQ] = ACTIONS(7001), - [anon_sym_LT] = ACTIONS(7001), - [anon_sym_LT_LT] = ACTIONS(7001), - [anon_sym_GT_GT] = ACTIONS(7001), - [anon_sym_SEMI] = ACTIONS(6999), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym___attribute__] = ACTIONS(6999), - [anon_sym___attribute] = ACTIONS(7001), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(7001), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6999), - [anon_sym_STAR_EQ] = ACTIONS(6999), - [anon_sym_SLASH_EQ] = ACTIONS(6999), - [anon_sym_PERCENT_EQ] = ACTIONS(6999), - [anon_sym_PLUS_EQ] = ACTIONS(6999), - [anon_sym_DASH_EQ] = ACTIONS(6999), - [anon_sym_LT_LT_EQ] = ACTIONS(6999), - [anon_sym_GT_GT_EQ] = ACTIONS(6999), - [anon_sym_AMP_EQ] = ACTIONS(6999), - [anon_sym_CARET_EQ] = ACTIONS(6999), - [anon_sym_PIPE_EQ] = ACTIONS(6999), - [anon_sym_and_eq] = ACTIONS(6999), - [anon_sym_or_eq] = ACTIONS(6999), - [anon_sym_xor_eq] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(6999), - [anon_sym_or] = ACTIONS(7001), - [anon_sym_and] = ACTIONS(7001), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(7001), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(6999), - [anon_sym_PLUS_PLUS] = ACTIONS(6999), - [anon_sym_DOT] = ACTIONS(7001), - [anon_sym_DOT_STAR] = ACTIONS(6999), - [anon_sym_DASH_GT] = ACTIONS(6999), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6999), - [anon_sym_override] = ACTIONS(6999), - [anon_sym_requires] = ACTIONS(6999), - }, - [STATE(2149)] = { - [sym__abstract_declarator] = STATE(4340), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(1913), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1870), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(1913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6576), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(6578), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(6580), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym_SEMI] = ACTIONS(6497), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym___attribute__] = ACTIONS(6497), - [anon_sym___attribute] = ACTIONS(6495), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6497), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_and_eq] = ACTIONS(6497), - [anon_sym_or_eq] = ACTIONS(6497), - [anon_sym_xor_eq] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6497), - [anon_sym_override] = ACTIONS(6497), - [anon_sym_requires] = ACTIONS(6497), - }, - [STATE(2150)] = { - [sym__abstract_declarator] = STATE(4337), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(1913), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1870), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(1913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), - [anon_sym_COMMA] = ACTIONS(7003), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(6576), - [anon_sym_SLASH] = ACTIONS(7005), - [anon_sym_PERCENT] = ACTIONS(7005), - [anon_sym_PIPE_PIPE] = ACTIONS(7003), - [anon_sym_AMP_AMP] = ACTIONS(6578), - [anon_sym_PIPE] = ACTIONS(7005), - [anon_sym_CARET] = ACTIONS(7005), - [anon_sym_AMP] = ACTIONS(6580), - [anon_sym_EQ_EQ] = ACTIONS(7003), - [anon_sym_BANG_EQ] = ACTIONS(7003), - [anon_sym_GT] = ACTIONS(7005), - [anon_sym_GT_EQ] = ACTIONS(7003), - [anon_sym_LT_EQ] = ACTIONS(7005), - [anon_sym_LT] = ACTIONS(7005), - [anon_sym_LT_LT] = ACTIONS(7005), - [anon_sym_GT_GT] = ACTIONS(7005), - [anon_sym_SEMI] = ACTIONS(7003), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym___attribute__] = ACTIONS(7003), - [anon_sym___attribute] = ACTIONS(7005), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(7005), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(7003), - [anon_sym_STAR_EQ] = ACTIONS(7003), - [anon_sym_SLASH_EQ] = ACTIONS(7003), - [anon_sym_PERCENT_EQ] = ACTIONS(7003), - [anon_sym_PLUS_EQ] = ACTIONS(7003), - [anon_sym_DASH_EQ] = ACTIONS(7003), - [anon_sym_LT_LT_EQ] = ACTIONS(7003), - [anon_sym_GT_GT_EQ] = ACTIONS(7003), - [anon_sym_AMP_EQ] = ACTIONS(7003), - [anon_sym_CARET_EQ] = ACTIONS(7003), - [anon_sym_PIPE_EQ] = ACTIONS(7003), - [anon_sym_and_eq] = ACTIONS(7003), - [anon_sym_or_eq] = ACTIONS(7003), - [anon_sym_xor_eq] = ACTIONS(7003), - [anon_sym_LT_EQ_GT] = ACTIONS(7003), - [anon_sym_or] = ACTIONS(7005), - [anon_sym_and] = ACTIONS(7005), - [anon_sym_bitor] = ACTIONS(7003), - [anon_sym_xor] = ACTIONS(7005), - [anon_sym_bitand] = ACTIONS(7003), - [anon_sym_not_eq] = ACTIONS(7003), - [anon_sym_DASH_DASH] = ACTIONS(7003), - [anon_sym_PLUS_PLUS] = ACTIONS(7003), - [anon_sym_DOT] = ACTIONS(7005), - [anon_sym_DOT_STAR] = ACTIONS(7003), - [anon_sym_DASH_GT] = ACTIONS(7003), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7003), - [anon_sym_override] = ACTIONS(7003), - [anon_sym_requires] = ACTIONS(7003), - }, - [STATE(2151)] = { - [sym__abstract_declarator] = STATE(4341), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(1913), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1870), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(1913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), - [anon_sym_COMMA] = ACTIONS(7007), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(7009), - [anon_sym_PLUS] = ACTIONS(7009), - [anon_sym_STAR] = ACTIONS(6576), - [anon_sym_SLASH] = ACTIONS(7009), - [anon_sym_PERCENT] = ACTIONS(7009), - [anon_sym_PIPE_PIPE] = ACTIONS(7007), - [anon_sym_AMP_AMP] = ACTIONS(6578), - [anon_sym_PIPE] = ACTIONS(7009), - [anon_sym_CARET] = ACTIONS(7009), - [anon_sym_AMP] = ACTIONS(6580), - [anon_sym_EQ_EQ] = ACTIONS(7007), - [anon_sym_BANG_EQ] = ACTIONS(7007), - [anon_sym_GT] = ACTIONS(7009), - [anon_sym_GT_EQ] = ACTIONS(7007), - [anon_sym_LT_EQ] = ACTIONS(7009), - [anon_sym_LT] = ACTIONS(7009), - [anon_sym_LT_LT] = ACTIONS(7009), - [anon_sym_GT_GT] = ACTIONS(7009), - [anon_sym_SEMI] = ACTIONS(7007), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym___attribute__] = ACTIONS(7007), - [anon_sym___attribute] = ACTIONS(7009), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(7009), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(7007), - [anon_sym_STAR_EQ] = ACTIONS(7007), - [anon_sym_SLASH_EQ] = ACTIONS(7007), - [anon_sym_PERCENT_EQ] = ACTIONS(7007), - [anon_sym_PLUS_EQ] = ACTIONS(7007), - [anon_sym_DASH_EQ] = ACTIONS(7007), - [anon_sym_LT_LT_EQ] = ACTIONS(7007), - [anon_sym_GT_GT_EQ] = ACTIONS(7007), - [anon_sym_AMP_EQ] = ACTIONS(7007), - [anon_sym_CARET_EQ] = ACTIONS(7007), - [anon_sym_PIPE_EQ] = ACTIONS(7007), - [anon_sym_and_eq] = ACTIONS(7007), - [anon_sym_or_eq] = ACTIONS(7007), - [anon_sym_xor_eq] = ACTIONS(7007), - [anon_sym_LT_EQ_GT] = ACTIONS(7007), - [anon_sym_or] = ACTIONS(7009), - [anon_sym_and] = ACTIONS(7009), - [anon_sym_bitor] = ACTIONS(7007), - [anon_sym_xor] = ACTIONS(7009), - [anon_sym_bitand] = ACTIONS(7007), - [anon_sym_not_eq] = ACTIONS(7007), - [anon_sym_DASH_DASH] = ACTIONS(7007), - [anon_sym_PLUS_PLUS] = ACTIONS(7007), - [anon_sym_DOT] = ACTIONS(7009), - [anon_sym_DOT_STAR] = ACTIONS(7007), - [anon_sym_DASH_GT] = ACTIONS(7007), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7007), - [anon_sym_override] = ACTIONS(7007), - [anon_sym_requires] = ACTIONS(7007), - }, - [STATE(2152)] = { - [sym_attribute_specifier] = STATE(2215), - [sym_attribute_declaration] = STATE(4622), - [sym_type_qualifier] = STATE(2421), - [sym_alignas_qualifier] = STATE(2559), - [sym_gnu_asm_expression] = STATE(8992), - [sym_virtual_specifier] = STATE(4709), - [sym_ref_qualifier] = STATE(3955), - [sym__function_attributes_start] = STATE(3886), - [sym__function_exception_specification] = STATE(4483), - [sym__function_attributes_end] = STATE(6078), - [sym__function_postfix] = STATE(5202), - [sym_trailing_return_type] = STATE(5726), - [sym_noexcept] = STATE(4483), - [sym_throw_specifier] = STATE(4483), - [sym_requires_clause] = STATE(5202), - [aux_sym_type_definition_repeat1] = STATE(2215), - [aux_sym__type_definition_type_repeat1] = STATE(2421), - [aux_sym_attributed_declarator_repeat1] = STATE(4622), - [aux_sym__function_postfix_repeat1] = STATE(4709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6113), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6113), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6113), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(6851), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6113), - [anon_sym_AMP] = ACTIONS(6854), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6113), - [anon_sym_GT_GT] = ACTIONS(6113), - [anon_sym_SEMI] = ACTIONS(6113), - [anon_sym___extension__] = ACTIONS(6904), - [anon_sym___attribute__] = ACTIONS(7474), - [anon_sym___attribute] = ACTIONS(7477), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_const] = ACTIONS(6857), - [anon_sym_constexpr] = ACTIONS(6904), - [anon_sym_volatile] = ACTIONS(6904), - [anon_sym_restrict] = ACTIONS(6904), - [anon_sym___restrict__] = ACTIONS(6904), - [anon_sym__Atomic] = ACTIONS(6904), - [anon_sym__Noreturn] = ACTIONS(6904), - [anon_sym_noreturn] = ACTIONS(6904), - [anon_sym__Nonnull] = ACTIONS(6904), - [anon_sym_mutable] = ACTIONS(6904), - [anon_sym_constinit] = ACTIONS(6904), - [anon_sym_consteval] = ACTIONS(6904), - [anon_sym_alignas] = ACTIONS(6908), - [anon_sym__Alignas] = ACTIONS(6908), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6113), - [anon_sym_and] = ACTIONS(6113), - [anon_sym_bitor] = ACTIONS(6113), - [anon_sym_xor] = ACTIONS(6113), - [anon_sym_bitand] = ACTIONS(6113), - [anon_sym_not_eq] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(7480), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6913), - [anon_sym_override] = ACTIONS(6913), - [anon_sym_noexcept] = ACTIONS(6915), - [anon_sym_throw] = ACTIONS(6917), - [anon_sym_requires] = ACTIONS(6919), - }, - [STATE(2153)] = { - [sym_attribute_specifier] = STATE(3106), - [sym_attribute_declaration] = STATE(6276), - [sym_type_qualifier] = STATE(3653), - [sym_alignas_qualifier] = STATE(3874), - [sym_gnu_asm_expression] = STATE(8995), - [sym_virtual_specifier] = STATE(6331), - [sym_ref_qualifier] = STATE(3959), - [sym__function_attributes_start] = STATE(3888), - [sym__function_exception_specification] = STATE(4493), - [sym__function_attributes_end] = STATE(6176), - [sym__function_postfix] = STATE(6492), - [sym_trailing_return_type] = STATE(6212), - [sym_noexcept] = STATE(4493), - [sym_throw_specifier] = STATE(4493), - [sym_requires_clause] = STATE(6492), - [aux_sym_type_definition_repeat1] = STATE(3106), - [aux_sym__type_definition_type_repeat1] = STATE(3653), - [aux_sym_attributed_declarator_repeat1] = STATE(6276), - [aux_sym__function_postfix_repeat1] = STATE(6331), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6113), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6113), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6113), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), + [sym_attribute_specifier] = STATE(2199), + [sym_identifier] = ACTIONS(7431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7433), + [anon_sym_COMMA] = ACTIONS(7433), + [anon_sym_RPAREN] = ACTIONS(7433), + [aux_sym_preproc_if_token2] = ACTIONS(7433), + [aux_sym_preproc_else_token1] = ACTIONS(7433), + [aux_sym_preproc_elif_token1] = ACTIONS(7431), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7433), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7433), + [anon_sym_LPAREN2] = ACTIONS(7433), + [anon_sym_DASH] = ACTIONS(7431), + [anon_sym_PLUS] = ACTIONS(7431), + [anon_sym_STAR] = ACTIONS(7431), + [anon_sym_SLASH] = ACTIONS(7431), + [anon_sym_PERCENT] = ACTIONS(7431), + [anon_sym_PIPE_PIPE] = ACTIONS(7433), [anon_sym_AMP_AMP] = ACTIONS(7433), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6113), - [anon_sym_AMP] = ACTIONS(7436), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6111), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6113), - [anon_sym_GT_GT] = ACTIONS(6111), - [anon_sym___extension__] = ACTIONS(7439), - [anon_sym___attribute__] = ACTIONS(7441), - [anon_sym___attribute] = ACTIONS(7443), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7445), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_const] = ACTIONS(7447), - [anon_sym_constexpr] = ACTIONS(7439), - [anon_sym_volatile] = ACTIONS(7439), - [anon_sym_restrict] = ACTIONS(7439), - [anon_sym___restrict__] = ACTIONS(7439), - [anon_sym__Atomic] = ACTIONS(7439), - [anon_sym__Noreturn] = ACTIONS(7439), - [anon_sym_noreturn] = ACTIONS(7439), - [anon_sym__Nonnull] = ACTIONS(7439), - [anon_sym_mutable] = ACTIONS(7439), - [anon_sym_constinit] = ACTIONS(7439), - [anon_sym_consteval] = ACTIONS(7439), - [anon_sym_alignas] = ACTIONS(7449), - [anon_sym__Alignas] = ACTIONS(7449), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6113), - [anon_sym_and] = ACTIONS(6113), - [anon_sym_bitor] = ACTIONS(6113), - [anon_sym_xor] = ACTIONS(6113), - [anon_sym_bitand] = ACTIONS(6113), - [anon_sym_not_eq] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(7451), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7483), - [anon_sym_override] = ACTIONS(7483), - [anon_sym_GT2] = ACTIONS(6113), - [anon_sym_noexcept] = ACTIONS(7456), - [anon_sym_throw] = ACTIONS(7458), - [anon_sym_requires] = ACTIONS(7486), - }, - [STATE(2154)] = { - [sym_attribute_specifier] = STATE(3075), - [sym_attribute_declaration] = STATE(6313), - [sym_type_qualifier] = STATE(3620), - [sym_alignas_qualifier] = STATE(3884), - [sym_gnu_asm_expression] = STATE(8976), - [sym_virtual_specifier] = STATE(6389), - [sym_ref_qualifier] = STATE(3962), - [sym__function_attributes_start] = STATE(3889), - [sym__function_exception_specification] = STATE(4515), - [sym__function_attributes_end] = STATE(6160), - [sym__function_postfix] = STATE(6555), - [sym_trailing_return_type] = STATE(6233), - [sym_noexcept] = STATE(4515), - [sym_throw_specifier] = STATE(4515), - [sym_requires_clause] = STATE(6555), - [aux_sym_type_definition_repeat1] = STATE(3075), - [aux_sym__type_definition_type_repeat1] = STATE(3620), - [aux_sym_attributed_declarator_repeat1] = STATE(6313), - [aux_sym__function_postfix_repeat1] = STATE(6389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6113), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6113), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6113), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(7489), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6113), - [anon_sym_AMP] = ACTIONS(7492), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6113), - [anon_sym_GT_GT] = ACTIONS(6113), - [anon_sym___extension__] = ACTIONS(7495), - [anon_sym___attribute__] = ACTIONS(7497), - [anon_sym___attribute] = ACTIONS(7499), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7501), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_RBRACK] = ACTIONS(6113), - [anon_sym_const] = ACTIONS(7503), - [anon_sym_constexpr] = ACTIONS(7495), - [anon_sym_volatile] = ACTIONS(7495), - [anon_sym_restrict] = ACTIONS(7495), - [anon_sym___restrict__] = ACTIONS(7495), - [anon_sym__Atomic] = ACTIONS(7495), - [anon_sym__Noreturn] = ACTIONS(7495), - [anon_sym_noreturn] = ACTIONS(7495), - [anon_sym__Nonnull] = ACTIONS(7495), - [anon_sym_mutable] = ACTIONS(7495), - [anon_sym_constinit] = ACTIONS(7495), - [anon_sym_consteval] = ACTIONS(7495), - [anon_sym_alignas] = ACTIONS(7505), - [anon_sym__Alignas] = ACTIONS(7505), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6113), - [anon_sym_and] = ACTIONS(6113), - [anon_sym_bitor] = ACTIONS(6113), - [anon_sym_xor] = ACTIONS(6113), - [anon_sym_bitand] = ACTIONS(6113), - [anon_sym_not_eq] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(7507), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7510), - [anon_sym_override] = ACTIONS(7510), - [anon_sym_noexcept] = ACTIONS(7513), - [anon_sym_throw] = ACTIONS(7515), - [anon_sym_requires] = ACTIONS(7517), - }, - [STATE(2155)] = { - [sym_template_argument_list] = STATE(2030), - [sym_identifier] = ACTIONS(6755), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), - [anon_sym_COMMA] = ACTIONS(6748), - [anon_sym_RPAREN] = ACTIONS(6748), - [aux_sym_preproc_if_token2] = ACTIONS(6748), - [aux_sym_preproc_else_token1] = ACTIONS(6748), - [aux_sym_preproc_elif_token1] = ACTIONS(6755), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6748), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6748), - [anon_sym_LPAREN2] = ACTIONS(6748), - [anon_sym_DASH] = ACTIONS(6755), - [anon_sym_PLUS] = ACTIONS(6755), - [anon_sym_STAR] = ACTIONS(6755), - [anon_sym_SLASH] = ACTIONS(6755), - [anon_sym_PERCENT] = ACTIONS(6755), - [anon_sym_PIPE_PIPE] = ACTIONS(6748), - [anon_sym_AMP_AMP] = ACTIONS(6748), - [anon_sym_PIPE] = ACTIONS(6755), - [anon_sym_CARET] = ACTIONS(6755), - [anon_sym_AMP] = ACTIONS(6755), - [anon_sym_EQ_EQ] = ACTIONS(6748), - [anon_sym_BANG_EQ] = ACTIONS(6748), - [anon_sym_GT] = ACTIONS(6755), - [anon_sym_GT_EQ] = ACTIONS(6748), - [anon_sym_LT_EQ] = ACTIONS(6755), - [anon_sym_LT] = ACTIONS(6898), - [anon_sym_LT_LT] = ACTIONS(6755), - [anon_sym_GT_GT] = ACTIONS(6755), - [anon_sym_SEMI] = ACTIONS(6748), - [anon_sym___extension__] = ACTIONS(6746), - [anon_sym___attribute__] = ACTIONS(6755), - [anon_sym___attribute] = ACTIONS(6755), - [anon_sym_COLON] = ACTIONS(6755), - [anon_sym_COLON_COLON] = ACTIONS(6748), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6748), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_RBRACE] = ACTIONS(6748), - [anon_sym_LBRACK] = ACTIONS(6748), - [anon_sym_EQ] = ACTIONS(6755), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6746), - [anon_sym_volatile] = ACTIONS(6746), - [anon_sym_restrict] = ACTIONS(6746), - [anon_sym___restrict__] = ACTIONS(6746), - [anon_sym__Atomic] = ACTIONS(6746), - [anon_sym__Noreturn] = ACTIONS(6746), - [anon_sym_noreturn] = ACTIONS(6746), - [anon_sym__Nonnull] = ACTIONS(6746), - [anon_sym_mutable] = ACTIONS(6746), - [anon_sym_constinit] = ACTIONS(6746), - [anon_sym_consteval] = ACTIONS(6746), - [anon_sym_alignas] = ACTIONS(6746), - [anon_sym__Alignas] = ACTIONS(6746), - [anon_sym_QMARK] = ACTIONS(6748), - [anon_sym_STAR_EQ] = ACTIONS(6748), - [anon_sym_SLASH_EQ] = ACTIONS(6748), - [anon_sym_PERCENT_EQ] = ACTIONS(6748), - [anon_sym_PLUS_EQ] = ACTIONS(6748), - [anon_sym_DASH_EQ] = ACTIONS(6748), - [anon_sym_LT_LT_EQ] = ACTIONS(6748), - [anon_sym_GT_GT_EQ] = ACTIONS(6748), - [anon_sym_AMP_EQ] = ACTIONS(6748), - [anon_sym_CARET_EQ] = ACTIONS(6748), - [anon_sym_PIPE_EQ] = ACTIONS(6748), - [anon_sym_and_eq] = ACTIONS(6755), - [anon_sym_or_eq] = ACTIONS(6755), - [anon_sym_xor_eq] = ACTIONS(6755), - [anon_sym_LT_EQ_GT] = ACTIONS(6748), - [anon_sym_or] = ACTIONS(6755), - [anon_sym_and] = ACTIONS(6755), - [anon_sym_bitor] = ACTIONS(6755), - [anon_sym_xor] = ACTIONS(6755), - [anon_sym_bitand] = ACTIONS(6755), - [anon_sym_not_eq] = ACTIONS(6755), - [anon_sym_DASH_DASH] = ACTIONS(6748), - [anon_sym_PLUS_PLUS] = ACTIONS(6748), - [anon_sym_DOT] = ACTIONS(6755), - [anon_sym_DOT_STAR] = ACTIONS(6748), - [anon_sym_DASH_GT] = ACTIONS(6748), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6748), - }, - [STATE(2156)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym_SEMI] = ACTIONS(6800), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym___attribute__] = ACTIONS(6800), - [anon_sym___attribute] = ACTIONS(6798), - [anon_sym_COLON] = ACTIONS(6798), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_RBRACE] = ACTIONS(6800), - [anon_sym_signed] = ACTIONS(7520), - [anon_sym_unsigned] = ACTIONS(7520), - [anon_sym_long] = ACTIONS(7520), - [anon_sym_short] = ACTIONS(7520), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6800), - [anon_sym_override] = ACTIONS(6800), - [anon_sym_requires] = ACTIONS(6800), - [anon_sym_COLON_RBRACK] = ACTIONS(6800), - }, - [STATE(2157)] = { - [sym_attribute_specifier] = STATE(2215), - [sym_attribute_declaration] = STATE(4622), - [sym_type_qualifier] = STATE(2421), - [sym_alignas_qualifier] = STATE(2559), - [sym_gnu_asm_expression] = STATE(8992), - [sym_virtual_specifier] = STATE(4709), - [sym_ref_qualifier] = STATE(3969), - [sym__function_attributes_start] = STATE(3894), - [sym__function_exception_specification] = STATE(4496), - [sym__function_attributes_end] = STATE(6040), - [sym__function_postfix] = STATE(5202), - [sym_trailing_return_type] = STATE(5706), - [sym_noexcept] = STATE(4496), - [sym_throw_specifier] = STATE(4496), - [sym_requires_clause] = STATE(5202), - [aux_sym_type_definition_repeat1] = STATE(2215), - [aux_sym__type_definition_type_repeat1] = STATE(2421), - [aux_sym_attributed_declarator_repeat1] = STATE(4622), - [aux_sym__function_postfix_repeat1] = STATE(4709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6113), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6113), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6113), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(6851), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6113), - [anon_sym_AMP] = ACTIONS(6854), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6113), - [anon_sym_GT_GT] = ACTIONS(6113), - [anon_sym_SEMI] = ACTIONS(6113), - [anon_sym___extension__] = ACTIONS(6904), - [anon_sym___attribute__] = ACTIONS(7474), - [anon_sym___attribute] = ACTIONS(7477), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_const] = ACTIONS(6857), - [anon_sym_constexpr] = ACTIONS(6904), - [anon_sym_volatile] = ACTIONS(6904), - [anon_sym_restrict] = ACTIONS(6904), - [anon_sym___restrict__] = ACTIONS(6904), - [anon_sym__Atomic] = ACTIONS(6904), - [anon_sym__Noreturn] = ACTIONS(6904), - [anon_sym_noreturn] = ACTIONS(6904), - [anon_sym__Nonnull] = ACTIONS(6904), - [anon_sym_mutable] = ACTIONS(6904), - [anon_sym_constinit] = ACTIONS(6904), - [anon_sym_consteval] = ACTIONS(6904), - [anon_sym_alignas] = ACTIONS(6908), - [anon_sym__Alignas] = ACTIONS(6908), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6113), - [anon_sym_and] = ACTIONS(6113), - [anon_sym_bitor] = ACTIONS(6113), - [anon_sym_xor] = ACTIONS(6113), - [anon_sym_bitand] = ACTIONS(6113), - [anon_sym_not_eq] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(7480), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6921), - [anon_sym_override] = ACTIONS(6921), - [anon_sym_noexcept] = ACTIONS(6915), - [anon_sym_throw] = ACTIONS(6917), - [anon_sym_requires] = ACTIONS(6924), - }, - [STATE(2158)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), - [anon_sym_COMMA] = ACTIONS(7389), - [anon_sym_RPAREN] = ACTIONS(7389), - [anon_sym_LPAREN2] = ACTIONS(7389), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_STAR] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7387), - [anon_sym_PERCENT] = ACTIONS(7387), - [anon_sym_PIPE_PIPE] = ACTIONS(7389), - [anon_sym_AMP_AMP] = ACTIONS(7389), - [anon_sym_PIPE] = ACTIONS(7387), - [anon_sym_CARET] = ACTIONS(7387), - [anon_sym_AMP] = ACTIONS(7387), - [anon_sym_EQ_EQ] = ACTIONS(7389), - [anon_sym_BANG_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_LT_EQ] = ACTIONS(7387), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_LT] = ACTIONS(7387), - [anon_sym_GT_GT] = ACTIONS(7387), - [anon_sym_SEMI] = ACTIONS(7389), - [anon_sym___extension__] = ACTIONS(7389), - [anon_sym___attribute__] = ACTIONS(7389), - [anon_sym___attribute] = ACTIONS(7387), - [anon_sym_COLON] = ACTIONS(7387), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7389), - [anon_sym_LBRACE] = ACTIONS(7389), - [anon_sym_RBRACE] = ACTIONS(7389), - [anon_sym_signed] = ACTIONS(7522), - [anon_sym_unsigned] = ACTIONS(7522), - [anon_sym_long] = ACTIONS(7522), - [anon_sym_short] = ACTIONS(7522), - [anon_sym_LBRACK] = ACTIONS(7389), - [anon_sym_EQ] = ACTIONS(7387), - [anon_sym_const] = ACTIONS(7387), - [anon_sym_constexpr] = ACTIONS(7389), - [anon_sym_volatile] = ACTIONS(7389), - [anon_sym_restrict] = ACTIONS(7389), - [anon_sym___restrict__] = ACTIONS(7389), - [anon_sym__Atomic] = ACTIONS(7389), - [anon_sym__Noreturn] = ACTIONS(7389), - [anon_sym_noreturn] = ACTIONS(7389), - [anon_sym__Nonnull] = ACTIONS(7389), - [anon_sym_mutable] = ACTIONS(7389), - [anon_sym_constinit] = ACTIONS(7389), - [anon_sym_consteval] = ACTIONS(7389), - [anon_sym_alignas] = ACTIONS(7389), - [anon_sym__Alignas] = ACTIONS(7389), - [anon_sym_QMARK] = ACTIONS(7389), - [anon_sym_STAR_EQ] = ACTIONS(7389), - [anon_sym_SLASH_EQ] = ACTIONS(7389), - [anon_sym_PERCENT_EQ] = ACTIONS(7389), - [anon_sym_PLUS_EQ] = ACTIONS(7389), - [anon_sym_DASH_EQ] = ACTIONS(7389), - [anon_sym_LT_LT_EQ] = ACTIONS(7389), - [anon_sym_GT_GT_EQ] = ACTIONS(7389), - [anon_sym_AMP_EQ] = ACTIONS(7389), - [anon_sym_CARET_EQ] = ACTIONS(7389), - [anon_sym_PIPE_EQ] = ACTIONS(7389), - [anon_sym_and_eq] = ACTIONS(7389), - [anon_sym_or_eq] = ACTIONS(7389), - [anon_sym_xor_eq] = ACTIONS(7389), - [anon_sym_LT_EQ_GT] = ACTIONS(7389), - [anon_sym_or] = ACTIONS(7387), - [anon_sym_and] = ACTIONS(7387), - [anon_sym_bitor] = ACTIONS(7389), - [anon_sym_xor] = ACTIONS(7387), - [anon_sym_bitand] = ACTIONS(7389), - [anon_sym_not_eq] = ACTIONS(7389), - [anon_sym_DASH_DASH] = ACTIONS(7389), - [anon_sym_PLUS_PLUS] = ACTIONS(7389), - [anon_sym_DOT] = ACTIONS(7387), - [anon_sym_DOT_STAR] = ACTIONS(7389), - [anon_sym_DASH_GT] = ACTIONS(7389), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7389), - [anon_sym_override] = ACTIONS(7389), - [anon_sym_requires] = ACTIONS(7389), - [anon_sym_COLON_RBRACK] = ACTIONS(7389), - }, - [STATE(2159)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7397), - [anon_sym_COMMA] = ACTIONS(7397), - [anon_sym_RPAREN] = ACTIONS(7397), - [anon_sym_LPAREN2] = ACTIONS(7397), - [anon_sym_DASH] = ACTIONS(7395), - [anon_sym_PLUS] = ACTIONS(7395), - [anon_sym_STAR] = ACTIONS(7395), - [anon_sym_SLASH] = ACTIONS(7395), - [anon_sym_PERCENT] = ACTIONS(7395), - [anon_sym_PIPE_PIPE] = ACTIONS(7397), - [anon_sym_AMP_AMP] = ACTIONS(7397), - [anon_sym_PIPE] = ACTIONS(7395), - [anon_sym_CARET] = ACTIONS(7395), - [anon_sym_AMP] = ACTIONS(7395), - [anon_sym_EQ_EQ] = ACTIONS(7397), - [anon_sym_BANG_EQ] = ACTIONS(7397), - [anon_sym_GT] = ACTIONS(7395), - [anon_sym_GT_EQ] = ACTIONS(7397), - [anon_sym_LT_EQ] = ACTIONS(7395), - [anon_sym_LT] = ACTIONS(7395), - [anon_sym_LT_LT] = ACTIONS(7395), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym_SEMI] = ACTIONS(7397), - [anon_sym___extension__] = ACTIONS(7397), - [anon_sym___attribute__] = ACTIONS(7397), - [anon_sym___attribute] = ACTIONS(7395), - [anon_sym_COLON] = ACTIONS(7395), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7397), - [anon_sym_LBRACE] = ACTIONS(7397), - [anon_sym_RBRACE] = ACTIONS(7397), - [anon_sym_signed] = ACTIONS(7522), - [anon_sym_unsigned] = ACTIONS(7522), - [anon_sym_long] = ACTIONS(7522), - [anon_sym_short] = ACTIONS(7522), - [anon_sym_LBRACK] = ACTIONS(7397), - [anon_sym_EQ] = ACTIONS(7395), - [anon_sym_const] = ACTIONS(7395), - [anon_sym_constexpr] = ACTIONS(7397), - [anon_sym_volatile] = ACTIONS(7397), - [anon_sym_restrict] = ACTIONS(7397), - [anon_sym___restrict__] = ACTIONS(7397), - [anon_sym__Atomic] = ACTIONS(7397), - [anon_sym__Noreturn] = ACTIONS(7397), - [anon_sym_noreturn] = ACTIONS(7397), - [anon_sym__Nonnull] = ACTIONS(7397), - [anon_sym_mutable] = ACTIONS(7397), - [anon_sym_constinit] = ACTIONS(7397), - [anon_sym_consteval] = ACTIONS(7397), - [anon_sym_alignas] = ACTIONS(7397), - [anon_sym__Alignas] = ACTIONS(7397), - [anon_sym_QMARK] = ACTIONS(7397), - [anon_sym_STAR_EQ] = ACTIONS(7397), - [anon_sym_SLASH_EQ] = ACTIONS(7397), - [anon_sym_PERCENT_EQ] = ACTIONS(7397), - [anon_sym_PLUS_EQ] = ACTIONS(7397), - [anon_sym_DASH_EQ] = ACTIONS(7397), - [anon_sym_LT_LT_EQ] = ACTIONS(7397), - [anon_sym_GT_GT_EQ] = ACTIONS(7397), - [anon_sym_AMP_EQ] = ACTIONS(7397), - [anon_sym_CARET_EQ] = ACTIONS(7397), - [anon_sym_PIPE_EQ] = ACTIONS(7397), - [anon_sym_and_eq] = ACTIONS(7397), - [anon_sym_or_eq] = ACTIONS(7397), - [anon_sym_xor_eq] = ACTIONS(7397), - [anon_sym_LT_EQ_GT] = ACTIONS(7397), - [anon_sym_or] = ACTIONS(7395), - [anon_sym_and] = ACTIONS(7395), - [anon_sym_bitor] = ACTIONS(7397), - [anon_sym_xor] = ACTIONS(7395), - [anon_sym_bitand] = ACTIONS(7397), - [anon_sym_not_eq] = ACTIONS(7397), - [anon_sym_DASH_DASH] = ACTIONS(7397), - [anon_sym_PLUS_PLUS] = ACTIONS(7397), - [anon_sym_DOT] = ACTIONS(7395), - [anon_sym_DOT_STAR] = ACTIONS(7397), - [anon_sym_DASH_GT] = ACTIONS(7397), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7397), - [anon_sym_override] = ACTIONS(7397), - [anon_sym_requires] = ACTIONS(7397), - [anon_sym_COLON_RBRACK] = ACTIONS(7397), - }, - [STATE(2160)] = { - [sym__abstract_declarator] = STATE(4403), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2168), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1847), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2168), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), - [anon_sym_COMMA] = ACTIONS(6991), - [anon_sym_RPAREN] = ACTIONS(6991), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6993), - [anon_sym_PLUS] = ACTIONS(6993), - [anon_sym_STAR] = ACTIONS(6560), - [anon_sym_SLASH] = ACTIONS(6993), - [anon_sym_PERCENT] = ACTIONS(6993), - [anon_sym_PIPE_PIPE] = ACTIONS(6991), - [anon_sym_AMP_AMP] = ACTIONS(6562), - [anon_sym_PIPE] = ACTIONS(6993), - [anon_sym_CARET] = ACTIONS(6993), - [anon_sym_AMP] = ACTIONS(6564), - [anon_sym_EQ_EQ] = ACTIONS(6991), - [anon_sym_BANG_EQ] = ACTIONS(6991), - [anon_sym_GT] = ACTIONS(6993), - [anon_sym_GT_EQ] = ACTIONS(6991), - [anon_sym_LT_EQ] = ACTIONS(6993), - [anon_sym_LT] = ACTIONS(6993), - [anon_sym_LT_LT] = ACTIONS(6993), - [anon_sym_GT_GT] = ACTIONS(6993), - [anon_sym_SEMI] = ACTIONS(6991), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(6993), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6991), - [anon_sym_RBRACE] = ACTIONS(6991), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6993), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6991), - [anon_sym_STAR_EQ] = ACTIONS(6991), - [anon_sym_SLASH_EQ] = ACTIONS(6991), - [anon_sym_PERCENT_EQ] = ACTIONS(6991), - [anon_sym_PLUS_EQ] = ACTIONS(6991), - [anon_sym_DASH_EQ] = ACTIONS(6991), - [anon_sym_LT_LT_EQ] = ACTIONS(6991), - [anon_sym_GT_GT_EQ] = ACTIONS(6991), - [anon_sym_AMP_EQ] = ACTIONS(6991), - [anon_sym_CARET_EQ] = ACTIONS(6991), - [anon_sym_PIPE_EQ] = ACTIONS(6991), - [anon_sym_and_eq] = ACTIONS(6991), - [anon_sym_or_eq] = ACTIONS(6991), - [anon_sym_xor_eq] = ACTIONS(6991), - [anon_sym_LT_EQ_GT] = ACTIONS(6991), - [anon_sym_or] = ACTIONS(6993), - [anon_sym_and] = ACTIONS(6993), - [anon_sym_bitor] = ACTIONS(6991), - [anon_sym_xor] = ACTIONS(6993), - [anon_sym_bitand] = ACTIONS(6991), - [anon_sym_not_eq] = ACTIONS(6991), - [anon_sym_DASH_DASH] = ACTIONS(6991), - [anon_sym_PLUS_PLUS] = ACTIONS(6991), - [anon_sym_DOT] = ACTIONS(6993), - [anon_sym_DOT_STAR] = ACTIONS(6991), - [anon_sym_DASH_GT] = ACTIONS(6991), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6991), - }, - [STATE(2161)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7393), - [anon_sym_COMMA] = ACTIONS(7393), - [anon_sym_RPAREN] = ACTIONS(7393), - [anon_sym_LPAREN2] = ACTIONS(7393), - [anon_sym_DASH] = ACTIONS(7391), - [anon_sym_PLUS] = ACTIONS(7391), - [anon_sym_STAR] = ACTIONS(7391), - [anon_sym_SLASH] = ACTIONS(7391), - [anon_sym_PERCENT] = ACTIONS(7391), - [anon_sym_PIPE_PIPE] = ACTIONS(7393), - [anon_sym_AMP_AMP] = ACTIONS(7393), - [anon_sym_PIPE] = ACTIONS(7391), - [anon_sym_CARET] = ACTIONS(7391), - [anon_sym_AMP] = ACTIONS(7391), - [anon_sym_EQ_EQ] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7393), - [anon_sym_GT] = ACTIONS(7391), - [anon_sym_GT_EQ] = ACTIONS(7393), - [anon_sym_LT_EQ] = ACTIONS(7391), - [anon_sym_LT] = ACTIONS(7391), - [anon_sym_LT_LT] = ACTIONS(7391), - [anon_sym_GT_GT] = ACTIONS(7391), - [anon_sym_SEMI] = ACTIONS(7393), - [anon_sym___extension__] = ACTIONS(7393), - [anon_sym___attribute__] = ACTIONS(7393), - [anon_sym___attribute] = ACTIONS(7391), - [anon_sym_COLON] = ACTIONS(7391), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7393), - [anon_sym_LBRACE] = ACTIONS(7393), - [anon_sym_RBRACE] = ACTIONS(7393), - [anon_sym_signed] = ACTIONS(7522), - [anon_sym_unsigned] = ACTIONS(7522), - [anon_sym_long] = ACTIONS(7522), - [anon_sym_short] = ACTIONS(7522), - [anon_sym_LBRACK] = ACTIONS(7393), - [anon_sym_EQ] = ACTIONS(7391), - [anon_sym_const] = ACTIONS(7391), - [anon_sym_constexpr] = ACTIONS(7393), - [anon_sym_volatile] = ACTIONS(7393), - [anon_sym_restrict] = ACTIONS(7393), - [anon_sym___restrict__] = ACTIONS(7393), - [anon_sym__Atomic] = ACTIONS(7393), - [anon_sym__Noreturn] = ACTIONS(7393), - [anon_sym_noreturn] = ACTIONS(7393), - [anon_sym__Nonnull] = ACTIONS(7393), - [anon_sym_mutable] = ACTIONS(7393), - [anon_sym_constinit] = ACTIONS(7393), - [anon_sym_consteval] = ACTIONS(7393), - [anon_sym_alignas] = ACTIONS(7393), - [anon_sym__Alignas] = ACTIONS(7393), - [anon_sym_QMARK] = ACTIONS(7393), - [anon_sym_STAR_EQ] = ACTIONS(7393), - [anon_sym_SLASH_EQ] = ACTIONS(7393), - [anon_sym_PERCENT_EQ] = ACTIONS(7393), - [anon_sym_PLUS_EQ] = ACTIONS(7393), - [anon_sym_DASH_EQ] = ACTIONS(7393), - [anon_sym_LT_LT_EQ] = ACTIONS(7393), - [anon_sym_GT_GT_EQ] = ACTIONS(7393), - [anon_sym_AMP_EQ] = ACTIONS(7393), - [anon_sym_CARET_EQ] = ACTIONS(7393), - [anon_sym_PIPE_EQ] = ACTIONS(7393), - [anon_sym_and_eq] = ACTIONS(7393), - [anon_sym_or_eq] = ACTIONS(7393), - [anon_sym_xor_eq] = ACTIONS(7393), - [anon_sym_LT_EQ_GT] = ACTIONS(7393), - [anon_sym_or] = ACTIONS(7391), - [anon_sym_and] = ACTIONS(7391), - [anon_sym_bitor] = ACTIONS(7393), - [anon_sym_xor] = ACTIONS(7391), - [anon_sym_bitand] = ACTIONS(7393), - [anon_sym_not_eq] = ACTIONS(7393), - [anon_sym_DASH_DASH] = ACTIONS(7393), - [anon_sym_PLUS_PLUS] = ACTIONS(7393), - [anon_sym_DOT] = ACTIONS(7391), - [anon_sym_DOT_STAR] = ACTIONS(7393), - [anon_sym_DASH_GT] = ACTIONS(7393), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7393), - [anon_sym_override] = ACTIONS(7393), - [anon_sym_requires] = ACTIONS(7393), - [anon_sym_COLON_RBRACK] = ACTIONS(7393), - }, - [STATE(2162)] = { - [sym_type_qualifier] = STATE(2136), - [sym_alignas_qualifier] = STATE(2312), - [aux_sym__type_definition_type_repeat1] = STATE(2136), - [aux_sym_sized_type_specifier_repeat1] = STATE(2274), - [sym_identifier] = ACTIONS(7524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), - [anon_sym_COMMA] = ACTIONS(6812), - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_STAR] = ACTIONS(6814), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_PERCENT] = ACTIONS(6814), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_CARET] = ACTIONS(6814), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_LT_LT] = ACTIONS(6814), - [anon_sym_GT_GT] = ACTIONS(6814), - [anon_sym___extension__] = ACTIONS(7526), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_signed] = ACTIONS(7529), - [anon_sym_unsigned] = ACTIONS(7529), - [anon_sym_long] = ACTIONS(7529), - [anon_sym_short] = ACTIONS(7529), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_RBRACK] = ACTIONS(6812), - [anon_sym_EQ] = ACTIONS(6814), - [anon_sym_const] = ACTIONS(7526), - [anon_sym_constexpr] = ACTIONS(7526), - [anon_sym_volatile] = ACTIONS(7526), - [anon_sym_restrict] = ACTIONS(7526), - [anon_sym___restrict__] = ACTIONS(7526), - [anon_sym__Atomic] = ACTIONS(7526), - [anon_sym__Noreturn] = ACTIONS(7526), - [anon_sym_noreturn] = ACTIONS(7526), - [anon_sym__Nonnull] = ACTIONS(7526), - [anon_sym_mutable] = ACTIONS(7526), - [anon_sym_constinit] = ACTIONS(7526), - [anon_sym_consteval] = ACTIONS(7526), - [anon_sym_alignas] = ACTIONS(7531), - [anon_sym__Alignas] = ACTIONS(7531), - [sym_primitive_type] = ACTIONS(6958), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_STAR_EQ] = ACTIONS(6812), - [anon_sym_SLASH_EQ] = ACTIONS(6812), - [anon_sym_PERCENT_EQ] = ACTIONS(6812), - [anon_sym_PLUS_EQ] = ACTIONS(6812), - [anon_sym_DASH_EQ] = ACTIONS(6812), - [anon_sym_LT_LT_EQ] = ACTIONS(6812), - [anon_sym_GT_GT_EQ] = ACTIONS(6812), - [anon_sym_AMP_EQ] = ACTIONS(6812), - [anon_sym_CARET_EQ] = ACTIONS(6812), - [anon_sym_PIPE_EQ] = ACTIONS(6812), - [anon_sym_and_eq] = ACTIONS(6814), - [anon_sym_or_eq] = ACTIONS(6814), - [anon_sym_xor_eq] = ACTIONS(6814), - [anon_sym_LT_EQ_GT] = ACTIONS(6812), - [anon_sym_or] = ACTIONS(6814), - [anon_sym_and] = ACTIONS(6814), - [anon_sym_bitor] = ACTIONS(6814), - [anon_sym_xor] = ACTIONS(6814), - [anon_sym_bitand] = ACTIONS(6814), - [anon_sym_not_eq] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6814), - [anon_sym_DOT_STAR] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6812), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6814), - [anon_sym_override] = ACTIONS(6814), - [anon_sym_requires] = ACTIONS(6814), - }, - [STATE(2163)] = { - [sym_type_qualifier] = STATE(2163), - [sym_alignas_qualifier] = STATE(2278), - [aux_sym__type_definition_type_repeat1] = STATE(2163), - [sym_identifier] = ACTIONS(6525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_RPAREN] = ACTIONS(6527), - [anon_sym_LPAREN2] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6525), - [anon_sym_PLUS] = ACTIONS(6525), - [anon_sym_STAR] = ACTIONS(6525), - [anon_sym_SLASH] = ACTIONS(6525), - [anon_sym_PERCENT] = ACTIONS(6525), - [anon_sym_PIPE_PIPE] = ACTIONS(6527), - [anon_sym_AMP_AMP] = ACTIONS(6527), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_CARET] = ACTIONS(6525), - [anon_sym_AMP] = ACTIONS(6525), - [anon_sym_EQ_EQ] = ACTIONS(6527), - [anon_sym_BANG_EQ] = ACTIONS(6527), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6527), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_LT_LT] = ACTIONS(6525), - [anon_sym_GT_GT] = ACTIONS(6525), - [anon_sym___extension__] = ACTIONS(7534), - [anon_sym___attribute__] = ACTIONS(6525), - [anon_sym___attribute] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6527), - [anon_sym_signed] = ACTIONS(6525), - [anon_sym_unsigned] = ACTIONS(6525), - [anon_sym_long] = ACTIONS(6525), - [anon_sym_short] = ACTIONS(6525), - [anon_sym_LBRACK] = ACTIONS(6527), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_const] = ACTIONS(7534), - [anon_sym_constexpr] = ACTIONS(7534), - [anon_sym_volatile] = ACTIONS(7534), - [anon_sym_restrict] = ACTIONS(7534), - [anon_sym___restrict__] = ACTIONS(7534), - [anon_sym__Atomic] = ACTIONS(7534), - [anon_sym__Noreturn] = ACTIONS(7534), - [anon_sym_noreturn] = ACTIONS(7534), - [anon_sym__Nonnull] = ACTIONS(7534), - [anon_sym_mutable] = ACTIONS(7534), - [anon_sym_constinit] = ACTIONS(7534), - [anon_sym_consteval] = ACTIONS(7534), - [anon_sym_alignas] = ACTIONS(7537), - [anon_sym__Alignas] = ACTIONS(7537), - [sym_primitive_type] = ACTIONS(6525), - [anon_sym_QMARK] = ACTIONS(6527), - [anon_sym_STAR_EQ] = ACTIONS(6527), - [anon_sym_SLASH_EQ] = ACTIONS(6527), - [anon_sym_PERCENT_EQ] = ACTIONS(6527), - [anon_sym_PLUS_EQ] = ACTIONS(6527), - [anon_sym_DASH_EQ] = ACTIONS(6527), - [anon_sym_LT_LT_EQ] = ACTIONS(6527), - [anon_sym_GT_GT_EQ] = ACTIONS(6527), - [anon_sym_AMP_EQ] = ACTIONS(6527), - [anon_sym_CARET_EQ] = ACTIONS(6527), - [anon_sym_PIPE_EQ] = ACTIONS(6527), - [anon_sym_and_eq] = ACTIONS(6525), - [anon_sym_or_eq] = ACTIONS(6525), - [anon_sym_xor_eq] = ACTIONS(6525), - [anon_sym_LT_EQ_GT] = ACTIONS(6527), - [anon_sym_or] = ACTIONS(6525), - [anon_sym_and] = ACTIONS(6525), - [anon_sym_bitor] = ACTIONS(6525), - [anon_sym_xor] = ACTIONS(6525), - [anon_sym_bitand] = ACTIONS(6525), - [anon_sym_not_eq] = ACTIONS(6525), - [anon_sym_DASH_DASH] = ACTIONS(6527), - [anon_sym_PLUS_PLUS] = ACTIONS(6527), - [anon_sym_DOT] = ACTIONS(6525), - [anon_sym_DOT_STAR] = ACTIONS(6527), - [anon_sym_DASH_GT] = ACTIONS(6525), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6525), - [anon_sym_override] = ACTIONS(6525), - [anon_sym_requires] = ACTIONS(6525), - [anon_sym_DASH_GT_STAR] = ACTIONS(6527), - }, - [STATE(2164)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7404), - [anon_sym_COMMA] = ACTIONS(7404), - [anon_sym_RPAREN] = ACTIONS(7404), - [anon_sym_LPAREN2] = ACTIONS(7404), - [anon_sym_DASH] = ACTIONS(7402), - [anon_sym_PLUS] = ACTIONS(7402), - [anon_sym_STAR] = ACTIONS(7402), - [anon_sym_SLASH] = ACTIONS(7402), - [anon_sym_PERCENT] = ACTIONS(7402), - [anon_sym_PIPE_PIPE] = ACTIONS(7404), - [anon_sym_AMP_AMP] = ACTIONS(7404), - [anon_sym_PIPE] = ACTIONS(7402), - [anon_sym_CARET] = ACTIONS(7402), - [anon_sym_AMP] = ACTIONS(7402), - [anon_sym_EQ_EQ] = ACTIONS(7404), - [anon_sym_BANG_EQ] = ACTIONS(7404), - [anon_sym_GT] = ACTIONS(7402), - [anon_sym_GT_EQ] = ACTIONS(7404), - [anon_sym_LT_EQ] = ACTIONS(7402), - [anon_sym_LT] = ACTIONS(7402), - [anon_sym_LT_LT] = ACTIONS(7402), - [anon_sym_GT_GT] = ACTIONS(7402), - [anon_sym_SEMI] = ACTIONS(7404), - [anon_sym___extension__] = ACTIONS(7404), - [anon_sym___attribute__] = ACTIONS(7404), - [anon_sym___attribute] = ACTIONS(7402), - [anon_sym_COLON] = ACTIONS(7402), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7404), - [anon_sym_LBRACE] = ACTIONS(7404), - [anon_sym_RBRACE] = ACTIONS(7404), - [anon_sym_signed] = ACTIONS(7540), - [anon_sym_unsigned] = ACTIONS(7540), - [anon_sym_long] = ACTIONS(7540), - [anon_sym_short] = ACTIONS(7540), - [anon_sym_LBRACK] = ACTIONS(7404), - [anon_sym_EQ] = ACTIONS(7402), - [anon_sym_const] = ACTIONS(7402), - [anon_sym_constexpr] = ACTIONS(7404), - [anon_sym_volatile] = ACTIONS(7404), - [anon_sym_restrict] = ACTIONS(7404), - [anon_sym___restrict__] = ACTIONS(7404), - [anon_sym__Atomic] = ACTIONS(7404), - [anon_sym__Noreturn] = ACTIONS(7404), - [anon_sym_noreturn] = ACTIONS(7404), - [anon_sym__Nonnull] = ACTIONS(7404), - [anon_sym_mutable] = ACTIONS(7404), - [anon_sym_constinit] = ACTIONS(7404), - [anon_sym_consteval] = ACTIONS(7404), - [anon_sym_alignas] = ACTIONS(7404), - [anon_sym__Alignas] = ACTIONS(7404), - [anon_sym_QMARK] = ACTIONS(7404), - [anon_sym_STAR_EQ] = ACTIONS(7404), - [anon_sym_SLASH_EQ] = ACTIONS(7404), - [anon_sym_PERCENT_EQ] = ACTIONS(7404), - [anon_sym_PLUS_EQ] = ACTIONS(7404), - [anon_sym_DASH_EQ] = ACTIONS(7404), - [anon_sym_LT_LT_EQ] = ACTIONS(7404), - [anon_sym_GT_GT_EQ] = ACTIONS(7404), - [anon_sym_AMP_EQ] = ACTIONS(7404), - [anon_sym_CARET_EQ] = ACTIONS(7404), - [anon_sym_PIPE_EQ] = ACTIONS(7404), - [anon_sym_and_eq] = ACTIONS(7404), - [anon_sym_or_eq] = ACTIONS(7404), - [anon_sym_xor_eq] = ACTIONS(7404), - [anon_sym_LT_EQ_GT] = ACTIONS(7404), - [anon_sym_or] = ACTIONS(7402), - [anon_sym_and] = ACTIONS(7402), - [anon_sym_bitor] = ACTIONS(7404), - [anon_sym_xor] = ACTIONS(7402), - [anon_sym_bitand] = ACTIONS(7404), - [anon_sym_not_eq] = ACTIONS(7404), - [anon_sym_DASH_DASH] = ACTIONS(7404), - [anon_sym_PLUS_PLUS] = ACTIONS(7404), - [anon_sym_DOT] = ACTIONS(7402), - [anon_sym_DOT_STAR] = ACTIONS(7404), - [anon_sym_DASH_GT] = ACTIONS(7404), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7404), - [anon_sym_override] = ACTIONS(7404), - [anon_sym_requires] = ACTIONS(7404), - [anon_sym_COLON_RBRACK] = ACTIONS(7404), - }, - [STATE(2165)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2172), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7410), - [anon_sym_COMMA] = ACTIONS(7410), - [anon_sym_RPAREN] = ACTIONS(7410), - [anon_sym_LPAREN2] = ACTIONS(7410), - [anon_sym_DASH] = ACTIONS(7408), - [anon_sym_PLUS] = ACTIONS(7408), - [anon_sym_STAR] = ACTIONS(7408), - [anon_sym_SLASH] = ACTIONS(7408), - [anon_sym_PERCENT] = ACTIONS(7408), - [anon_sym_PIPE_PIPE] = ACTIONS(7410), - [anon_sym_AMP_AMP] = ACTIONS(7410), - [anon_sym_PIPE] = ACTIONS(7408), - [anon_sym_CARET] = ACTIONS(7408), - [anon_sym_AMP] = ACTIONS(7408), - [anon_sym_EQ_EQ] = ACTIONS(7410), - [anon_sym_BANG_EQ] = ACTIONS(7410), - [anon_sym_GT] = ACTIONS(7408), - [anon_sym_GT_EQ] = ACTIONS(7410), - [anon_sym_LT_EQ] = ACTIONS(7408), - [anon_sym_LT] = ACTIONS(7408), - [anon_sym_LT_LT] = ACTIONS(7408), - [anon_sym_GT_GT] = ACTIONS(7408), - [anon_sym_SEMI] = ACTIONS(7410), - [anon_sym___extension__] = ACTIONS(7410), - [anon_sym___attribute__] = ACTIONS(7410), - [anon_sym___attribute] = ACTIONS(7408), - [anon_sym_COLON] = ACTIONS(7408), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7410), - [anon_sym_LBRACE] = ACTIONS(7410), - [anon_sym_RBRACE] = ACTIONS(7410), - [anon_sym_signed] = ACTIONS(7542), - [anon_sym_unsigned] = ACTIONS(7542), - [anon_sym_long] = ACTIONS(7542), - [anon_sym_short] = ACTIONS(7542), - [anon_sym_LBRACK] = ACTIONS(7410), - [anon_sym_EQ] = ACTIONS(7408), - [anon_sym_const] = ACTIONS(7408), - [anon_sym_constexpr] = ACTIONS(7410), - [anon_sym_volatile] = ACTIONS(7410), - [anon_sym_restrict] = ACTIONS(7410), - [anon_sym___restrict__] = ACTIONS(7410), - [anon_sym__Atomic] = ACTIONS(7410), - [anon_sym__Noreturn] = ACTIONS(7410), - [anon_sym_noreturn] = ACTIONS(7410), - [anon_sym__Nonnull] = ACTIONS(7410), - [anon_sym_mutable] = ACTIONS(7410), - [anon_sym_constinit] = ACTIONS(7410), - [anon_sym_consteval] = ACTIONS(7410), - [anon_sym_alignas] = ACTIONS(7410), - [anon_sym__Alignas] = ACTIONS(7410), - [anon_sym_QMARK] = ACTIONS(7410), - [anon_sym_STAR_EQ] = ACTIONS(7410), - [anon_sym_SLASH_EQ] = ACTIONS(7410), - [anon_sym_PERCENT_EQ] = ACTIONS(7410), - [anon_sym_PLUS_EQ] = ACTIONS(7410), - [anon_sym_DASH_EQ] = ACTIONS(7410), - [anon_sym_LT_LT_EQ] = ACTIONS(7410), - [anon_sym_GT_GT_EQ] = ACTIONS(7410), - [anon_sym_AMP_EQ] = ACTIONS(7410), - [anon_sym_CARET_EQ] = ACTIONS(7410), - [anon_sym_PIPE_EQ] = ACTIONS(7410), - [anon_sym_and_eq] = ACTIONS(7410), - [anon_sym_or_eq] = ACTIONS(7410), - [anon_sym_xor_eq] = ACTIONS(7410), - [anon_sym_LT_EQ_GT] = ACTIONS(7410), - [anon_sym_or] = ACTIONS(7408), - [anon_sym_and] = ACTIONS(7408), - [anon_sym_bitor] = ACTIONS(7410), - [anon_sym_xor] = ACTIONS(7408), - [anon_sym_bitand] = ACTIONS(7410), - [anon_sym_not_eq] = ACTIONS(7410), - [anon_sym_DASH_DASH] = ACTIONS(7410), - [anon_sym_PLUS_PLUS] = ACTIONS(7410), - [anon_sym_DOT] = ACTIONS(7408), - [anon_sym_DOT_STAR] = ACTIONS(7410), - [anon_sym_DASH_GT] = ACTIONS(7410), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7410), - [anon_sym_override] = ACTIONS(7410), - [anon_sym_requires] = ACTIONS(7410), - [anon_sym_COLON_RBRACK] = ACTIONS(7410), - }, - [STATE(2166)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym_ref_qualifier] = STATE(2200), - [sym__function_exception_specification] = STATE(2490), - [sym__function_attributes_end] = STATE(3845), - [sym__function_postfix] = STATE(3513), - [sym_trailing_return_type] = STATE(2961), - [sym_noexcept] = STATE(2490), - [sym_throw_specifier] = STATE(2490), - [sym_requires_clause] = STATE(3513), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7548), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym_SEMI] = ACTIONS(7544), - [anon_sym___attribute__] = ACTIONS(6150), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_COLON] = ACTIONS(7546), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), - [anon_sym_RBRACE] = ACTIONS(7544), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7554), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7557), - [anon_sym_override] = ACTIONS(7557), - [anon_sym_noexcept] = ACTIONS(6162), - [anon_sym_throw] = ACTIONS(6164), - [anon_sym_requires] = ACTIONS(7560), - [anon_sym_COLON_RBRACK] = ACTIONS(7544), - }, - [STATE(2167)] = { - [sym__abstract_declarator] = STATE(4307), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(1913), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1847), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(1913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), - [anon_sym_COMMA] = ACTIONS(7007), - [anon_sym_RPAREN] = ACTIONS(7007), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(7009), - [anon_sym_PLUS] = ACTIONS(7009), - [anon_sym_STAR] = ACTIONS(6560), - [anon_sym_SLASH] = ACTIONS(7009), - [anon_sym_PERCENT] = ACTIONS(7009), - [anon_sym_PIPE_PIPE] = ACTIONS(7007), - [anon_sym_AMP_AMP] = ACTIONS(6562), - [anon_sym_PIPE] = ACTIONS(7009), - [anon_sym_CARET] = ACTIONS(7009), - [anon_sym_AMP] = ACTIONS(6564), - [anon_sym_EQ_EQ] = ACTIONS(7007), - [anon_sym_BANG_EQ] = ACTIONS(7007), - [anon_sym_GT] = ACTIONS(7009), - [anon_sym_GT_EQ] = ACTIONS(7007), - [anon_sym_LT_EQ] = ACTIONS(7009), - [anon_sym_LT] = ACTIONS(7009), - [anon_sym_LT_LT] = ACTIONS(7009), - [anon_sym_GT_GT] = ACTIONS(7009), - [anon_sym_SEMI] = ACTIONS(7007), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(7009), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7007), - [anon_sym_RBRACE] = ACTIONS(7007), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(7009), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(7007), - [anon_sym_STAR_EQ] = ACTIONS(7007), - [anon_sym_SLASH_EQ] = ACTIONS(7007), - [anon_sym_PERCENT_EQ] = ACTIONS(7007), - [anon_sym_PLUS_EQ] = ACTIONS(7007), - [anon_sym_DASH_EQ] = ACTIONS(7007), - [anon_sym_LT_LT_EQ] = ACTIONS(7007), - [anon_sym_GT_GT_EQ] = ACTIONS(7007), - [anon_sym_AMP_EQ] = ACTIONS(7007), - [anon_sym_CARET_EQ] = ACTIONS(7007), - [anon_sym_PIPE_EQ] = ACTIONS(7007), - [anon_sym_and_eq] = ACTIONS(7007), - [anon_sym_or_eq] = ACTIONS(7007), - [anon_sym_xor_eq] = ACTIONS(7007), - [anon_sym_LT_EQ_GT] = ACTIONS(7007), - [anon_sym_or] = ACTIONS(7009), - [anon_sym_and] = ACTIONS(7009), - [anon_sym_bitor] = ACTIONS(7007), - [anon_sym_xor] = ACTIONS(7009), - [anon_sym_bitand] = ACTIONS(7007), - [anon_sym_not_eq] = ACTIONS(7007), - [anon_sym_DASH_DASH] = ACTIONS(7007), - [anon_sym_PLUS_PLUS] = ACTIONS(7007), - [anon_sym_DOT] = ACTIONS(7009), - [anon_sym_DOT_STAR] = ACTIONS(7007), - [anon_sym_DASH_GT] = ACTIONS(7007), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7007), - }, - [STATE(2168)] = { - [sym__abstract_declarator] = STATE(4361), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(1913), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1847), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(1913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), - [anon_sym_COMMA] = ACTIONS(6995), - [anon_sym_RPAREN] = ACTIONS(6995), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6997), - [anon_sym_PLUS] = ACTIONS(6997), - [anon_sym_STAR] = ACTIONS(6560), - [anon_sym_SLASH] = ACTIONS(6997), - [anon_sym_PERCENT] = ACTIONS(6997), - [anon_sym_PIPE_PIPE] = ACTIONS(6995), - [anon_sym_AMP_AMP] = ACTIONS(6562), - [anon_sym_PIPE] = ACTIONS(6997), - [anon_sym_CARET] = ACTIONS(6997), - [anon_sym_AMP] = ACTIONS(6564), - [anon_sym_EQ_EQ] = ACTIONS(6995), - [anon_sym_BANG_EQ] = ACTIONS(6995), - [anon_sym_GT] = ACTIONS(6997), - [anon_sym_GT_EQ] = ACTIONS(6995), - [anon_sym_LT_EQ] = ACTIONS(6997), - [anon_sym_LT] = ACTIONS(6997), - [anon_sym_LT_LT] = ACTIONS(6997), - [anon_sym_GT_GT] = ACTIONS(6997), - [anon_sym_SEMI] = ACTIONS(6995), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(6997), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6995), - [anon_sym_RBRACE] = ACTIONS(6995), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6997), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6995), - [anon_sym_STAR_EQ] = ACTIONS(6995), - [anon_sym_SLASH_EQ] = ACTIONS(6995), - [anon_sym_PERCENT_EQ] = ACTIONS(6995), - [anon_sym_PLUS_EQ] = ACTIONS(6995), - [anon_sym_DASH_EQ] = ACTIONS(6995), - [anon_sym_LT_LT_EQ] = ACTIONS(6995), - [anon_sym_GT_GT_EQ] = ACTIONS(6995), - [anon_sym_AMP_EQ] = ACTIONS(6995), - [anon_sym_CARET_EQ] = ACTIONS(6995), - [anon_sym_PIPE_EQ] = ACTIONS(6995), - [anon_sym_and_eq] = ACTIONS(6995), - [anon_sym_or_eq] = ACTIONS(6995), - [anon_sym_xor_eq] = ACTIONS(6995), - [anon_sym_LT_EQ_GT] = ACTIONS(6995), - [anon_sym_or] = ACTIONS(6997), - [anon_sym_and] = ACTIONS(6997), - [anon_sym_bitor] = ACTIONS(6995), - [anon_sym_xor] = ACTIONS(6997), - [anon_sym_bitand] = ACTIONS(6995), - [anon_sym_not_eq] = ACTIONS(6995), - [anon_sym_DASH_DASH] = ACTIONS(6995), - [anon_sym_PLUS_PLUS] = ACTIONS(6995), - [anon_sym_DOT] = ACTIONS(6997), - [anon_sym_DOT_STAR] = ACTIONS(6995), - [anon_sym_DASH_GT] = ACTIONS(6995), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6995), - }, - [STATE(2169)] = { - [sym_type_qualifier] = STATE(2145), - [sym_alignas_qualifier] = STATE(2295), - [aux_sym__type_definition_type_repeat1] = STATE(2145), - [aux_sym_sized_type_specifier_repeat1] = STATE(2271), - [sym_identifier] = ACTIONS(7563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), - [anon_sym_COMMA] = ACTIONS(6812), - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_STAR] = ACTIONS(6814), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_PERCENT] = ACTIONS(6814), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_CARET] = ACTIONS(6814), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6814), - [anon_sym_LT_EQ] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_LT_LT] = ACTIONS(6814), - [anon_sym_GT_GT] = ACTIONS(6814), - [anon_sym___extension__] = ACTIONS(7565), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_signed] = ACTIONS(7568), - [anon_sym_unsigned] = ACTIONS(7568), - [anon_sym_long] = ACTIONS(7568), - [anon_sym_short] = ACTIONS(7568), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_EQ] = ACTIONS(6814), - [anon_sym_const] = ACTIONS(7565), - [anon_sym_constexpr] = ACTIONS(7565), - [anon_sym_volatile] = ACTIONS(7565), - [anon_sym_restrict] = ACTIONS(7565), - [anon_sym___restrict__] = ACTIONS(7565), - [anon_sym__Atomic] = ACTIONS(7565), - [anon_sym__Noreturn] = ACTIONS(7565), - [anon_sym_noreturn] = ACTIONS(7565), - [anon_sym__Nonnull] = ACTIONS(7565), - [anon_sym_mutable] = ACTIONS(7565), - [anon_sym_constinit] = ACTIONS(7565), - [anon_sym_consteval] = ACTIONS(7565), - [anon_sym_alignas] = ACTIONS(7570), - [anon_sym__Alignas] = ACTIONS(7570), - [sym_primitive_type] = ACTIONS(7573), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_STAR_EQ] = ACTIONS(6812), - [anon_sym_SLASH_EQ] = ACTIONS(6812), - [anon_sym_PERCENT_EQ] = ACTIONS(6812), - [anon_sym_PLUS_EQ] = ACTIONS(6812), - [anon_sym_DASH_EQ] = ACTIONS(6812), - [anon_sym_LT_LT_EQ] = ACTIONS(6812), - [anon_sym_GT_GT_EQ] = ACTIONS(6814), - [anon_sym_AMP_EQ] = ACTIONS(6812), - [anon_sym_CARET_EQ] = ACTIONS(6812), - [anon_sym_PIPE_EQ] = ACTIONS(6812), - [anon_sym_and_eq] = ACTIONS(6814), - [anon_sym_or_eq] = ACTIONS(6814), - [anon_sym_xor_eq] = ACTIONS(6814), - [anon_sym_LT_EQ_GT] = ACTIONS(6812), - [anon_sym_or] = ACTIONS(6814), - [anon_sym_and] = ACTIONS(6814), - [anon_sym_bitor] = ACTIONS(6814), - [anon_sym_xor] = ACTIONS(6814), - [anon_sym_bitand] = ACTIONS(6814), - [anon_sym_not_eq] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6814), - [anon_sym_DOT_STAR] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6812), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6814), - [anon_sym_override] = ACTIONS(6814), - [anon_sym_GT2] = ACTIONS(6812), - [anon_sym_requires] = ACTIONS(6814), - }, - [STATE(2170)] = { - [sym_attribute_specifier] = STATE(2419), - [sym_attribute_declaration] = STATE(4745), - [sym_type_qualifier] = STATE(2327), - [sym_alignas_qualifier] = STATE(2498), - [aux_sym_type_definition_repeat1] = STATE(2419), - [aux_sym__type_definition_type_repeat1] = STATE(2327), - [aux_sym_attributed_declarator_repeat1] = STATE(4745), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), - [anon_sym_COMMA] = ACTIONS(6390), - [anon_sym_RPAREN] = ACTIONS(6390), - [anon_sym_LPAREN2] = ACTIONS(6390), - [anon_sym_DASH] = ACTIONS(6388), - [anon_sym_PLUS] = ACTIONS(6388), - [anon_sym_STAR] = ACTIONS(6388), - [anon_sym_SLASH] = ACTIONS(6388), - [anon_sym_PERCENT] = ACTIONS(6388), - [anon_sym_PIPE_PIPE] = ACTIONS(6390), - [anon_sym_AMP_AMP] = ACTIONS(6390), - [anon_sym_PIPE] = ACTIONS(6388), - [anon_sym_CARET] = ACTIONS(6388), - [anon_sym_AMP] = ACTIONS(6388), - [anon_sym_EQ_EQ] = ACTIONS(6390), - [anon_sym_BANG_EQ] = ACTIONS(6390), - [anon_sym_GT] = ACTIONS(6388), - [anon_sym_GT_EQ] = ACTIONS(6390), - [anon_sym_LT_EQ] = ACTIONS(6388), - [anon_sym_LT] = ACTIONS(6388), - [anon_sym_LT_LT] = ACTIONS(6388), - [anon_sym_GT_GT] = ACTIONS(6388), - [anon_sym___extension__] = ACTIONS(6408), - [anon_sym___attribute__] = ACTIONS(6390), - [anon_sym___attribute] = ACTIONS(6388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), - [anon_sym_LBRACK] = ACTIONS(6388), - [anon_sym_EQ] = ACTIONS(6388), - [anon_sym_const] = ACTIONS(6416), - [anon_sym_constexpr] = ACTIONS(6408), - [anon_sym_volatile] = ACTIONS(6408), - [anon_sym_restrict] = ACTIONS(6408), - [anon_sym___restrict__] = ACTIONS(6408), - [anon_sym__Atomic] = ACTIONS(6408), - [anon_sym__Noreturn] = ACTIONS(6408), - [anon_sym_noreturn] = ACTIONS(6408), - [anon_sym__Nonnull] = ACTIONS(6408), - [anon_sym_mutable] = ACTIONS(6408), - [anon_sym_constinit] = ACTIONS(6408), - [anon_sym_consteval] = ACTIONS(6408), - [anon_sym_alignas] = ACTIONS(6418), - [anon_sym__Alignas] = ACTIONS(6418), - [anon_sym_QMARK] = ACTIONS(6390), - [anon_sym_STAR_EQ] = ACTIONS(6390), - [anon_sym_SLASH_EQ] = ACTIONS(6390), - [anon_sym_PERCENT_EQ] = ACTIONS(6390), - [anon_sym_PLUS_EQ] = ACTIONS(6390), - [anon_sym_DASH_EQ] = ACTIONS(6390), - [anon_sym_LT_LT_EQ] = ACTIONS(6390), - [anon_sym_GT_GT_EQ] = ACTIONS(6390), - [anon_sym_AMP_EQ] = ACTIONS(6390), - [anon_sym_CARET_EQ] = ACTIONS(6390), - [anon_sym_PIPE_EQ] = ACTIONS(6390), - [anon_sym_LT_EQ_GT] = ACTIONS(6390), - [anon_sym_or] = ACTIONS(6390), - [anon_sym_and] = ACTIONS(6390), - [anon_sym_bitor] = ACTIONS(6390), - [anon_sym_xor] = ACTIONS(6390), - [anon_sym_bitand] = ACTIONS(6390), - [anon_sym_not_eq] = ACTIONS(6390), - [anon_sym_DASH_DASH] = ACTIONS(6390), - [anon_sym_PLUS_PLUS] = ACTIONS(6390), - [anon_sym_asm] = ACTIONS(6390), - [anon_sym___asm__] = ACTIONS(6390), - [anon_sym___asm] = ACTIONS(6388), - [anon_sym_DOT] = ACTIONS(6388), - [anon_sym_DOT_STAR] = ACTIONS(6390), - [anon_sym_DASH_GT] = ACTIONS(6388), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6390), - [anon_sym_override] = ACTIONS(6390), - [anon_sym_noexcept] = ACTIONS(6390), - [anon_sym_throw] = ACTIONS(6390), - [anon_sym_requires] = ACTIONS(6390), - [anon_sym_DASH_GT_STAR] = ACTIONS(6390), - }, - [STATE(2171)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7416), - [anon_sym_COMMA] = ACTIONS(7416), - [anon_sym_RPAREN] = ACTIONS(7416), - [anon_sym_LPAREN2] = ACTIONS(7416), - [anon_sym_DASH] = ACTIONS(7414), - [anon_sym_PLUS] = ACTIONS(7414), - [anon_sym_STAR] = ACTIONS(7414), - [anon_sym_SLASH] = ACTIONS(7414), - [anon_sym_PERCENT] = ACTIONS(7414), - [anon_sym_PIPE_PIPE] = ACTIONS(7416), - [anon_sym_AMP_AMP] = ACTIONS(7416), - [anon_sym_PIPE] = ACTIONS(7414), - [anon_sym_CARET] = ACTIONS(7414), - [anon_sym_AMP] = ACTIONS(7414), - [anon_sym_EQ_EQ] = ACTIONS(7416), - [anon_sym_BANG_EQ] = ACTIONS(7416), - [anon_sym_GT] = ACTIONS(7414), - [anon_sym_GT_EQ] = ACTIONS(7416), - [anon_sym_LT_EQ] = ACTIONS(7414), - [anon_sym_LT] = ACTIONS(7414), - [anon_sym_LT_LT] = ACTIONS(7414), - [anon_sym_GT_GT] = ACTIONS(7414), - [anon_sym_SEMI] = ACTIONS(7416), - [anon_sym___extension__] = ACTIONS(7416), - [anon_sym___attribute__] = ACTIONS(7416), - [anon_sym___attribute] = ACTIONS(7414), - [anon_sym_COLON] = ACTIONS(7414), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7416), - [anon_sym_LBRACE] = ACTIONS(7416), - [anon_sym_RBRACE] = ACTIONS(7416), - [anon_sym_signed] = ACTIONS(7522), - [anon_sym_unsigned] = ACTIONS(7522), - [anon_sym_long] = ACTIONS(7522), - [anon_sym_short] = ACTIONS(7522), - [anon_sym_LBRACK] = ACTIONS(7416), - [anon_sym_EQ] = ACTIONS(7414), - [anon_sym_const] = ACTIONS(7414), - [anon_sym_constexpr] = ACTIONS(7416), - [anon_sym_volatile] = ACTIONS(7416), - [anon_sym_restrict] = ACTIONS(7416), - [anon_sym___restrict__] = ACTIONS(7416), - [anon_sym__Atomic] = ACTIONS(7416), - [anon_sym__Noreturn] = ACTIONS(7416), - [anon_sym_noreturn] = ACTIONS(7416), - [anon_sym__Nonnull] = ACTIONS(7416), - [anon_sym_mutable] = ACTIONS(7416), - [anon_sym_constinit] = ACTIONS(7416), - [anon_sym_consteval] = ACTIONS(7416), - [anon_sym_alignas] = ACTIONS(7416), - [anon_sym__Alignas] = ACTIONS(7416), - [anon_sym_QMARK] = ACTIONS(7416), - [anon_sym_STAR_EQ] = ACTIONS(7416), - [anon_sym_SLASH_EQ] = ACTIONS(7416), - [anon_sym_PERCENT_EQ] = ACTIONS(7416), - [anon_sym_PLUS_EQ] = ACTIONS(7416), - [anon_sym_DASH_EQ] = ACTIONS(7416), - [anon_sym_LT_LT_EQ] = ACTIONS(7416), - [anon_sym_GT_GT_EQ] = ACTIONS(7416), - [anon_sym_AMP_EQ] = ACTIONS(7416), - [anon_sym_CARET_EQ] = ACTIONS(7416), - [anon_sym_PIPE_EQ] = ACTIONS(7416), - [anon_sym_and_eq] = ACTIONS(7416), - [anon_sym_or_eq] = ACTIONS(7416), - [anon_sym_xor_eq] = ACTIONS(7416), - [anon_sym_LT_EQ_GT] = ACTIONS(7416), - [anon_sym_or] = ACTIONS(7414), - [anon_sym_and] = ACTIONS(7414), - [anon_sym_bitor] = ACTIONS(7416), - [anon_sym_xor] = ACTIONS(7414), - [anon_sym_bitand] = ACTIONS(7416), - [anon_sym_not_eq] = ACTIONS(7416), - [anon_sym_DASH_DASH] = ACTIONS(7416), - [anon_sym_PLUS_PLUS] = ACTIONS(7416), - [anon_sym_DOT] = ACTIONS(7414), - [anon_sym_DOT_STAR] = ACTIONS(7416), - [anon_sym_DASH_GT] = ACTIONS(7416), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7416), - [anon_sym_override] = ACTIONS(7416), - [anon_sym_requires] = ACTIONS(7416), - [anon_sym_COLON_RBRACK] = ACTIONS(7416), - }, - [STATE(2172)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), - [anon_sym_COMMA] = ACTIONS(7201), - [anon_sym_RPAREN] = ACTIONS(7201), - [anon_sym_LPAREN2] = ACTIONS(7201), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_STAR] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7199), - [anon_sym_PERCENT] = ACTIONS(7199), - [anon_sym_PIPE_PIPE] = ACTIONS(7201), - [anon_sym_AMP_AMP] = ACTIONS(7201), - [anon_sym_PIPE] = ACTIONS(7199), - [anon_sym_CARET] = ACTIONS(7199), - [anon_sym_AMP] = ACTIONS(7199), - [anon_sym_EQ_EQ] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7201), - [anon_sym_GT] = ACTIONS(7199), - [anon_sym_GT_EQ] = ACTIONS(7201), - [anon_sym_LT_EQ] = ACTIONS(7199), - [anon_sym_LT] = ACTIONS(7199), - [anon_sym_LT_LT] = ACTIONS(7199), - [anon_sym_GT_GT] = ACTIONS(7199), - [anon_sym_SEMI] = ACTIONS(7201), - [anon_sym___extension__] = ACTIONS(7201), - [anon_sym___attribute__] = ACTIONS(7201), - [anon_sym___attribute] = ACTIONS(7199), - [anon_sym_COLON] = ACTIONS(7199), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7201), - [anon_sym_LBRACE] = ACTIONS(7201), - [anon_sym_RBRACE] = ACTIONS(7201), - [anon_sym_signed] = ACTIONS(7522), - [anon_sym_unsigned] = ACTIONS(7522), - [anon_sym_long] = ACTIONS(7522), - [anon_sym_short] = ACTIONS(7522), - [anon_sym_LBRACK] = ACTIONS(7201), - [anon_sym_EQ] = ACTIONS(7199), - [anon_sym_const] = ACTIONS(7199), - [anon_sym_constexpr] = ACTIONS(7201), - [anon_sym_volatile] = ACTIONS(7201), - [anon_sym_restrict] = ACTIONS(7201), - [anon_sym___restrict__] = ACTIONS(7201), - [anon_sym__Atomic] = ACTIONS(7201), - [anon_sym__Noreturn] = ACTIONS(7201), - [anon_sym_noreturn] = ACTIONS(7201), - [anon_sym__Nonnull] = ACTIONS(7201), - [anon_sym_mutable] = ACTIONS(7201), - [anon_sym_constinit] = ACTIONS(7201), - [anon_sym_consteval] = ACTIONS(7201), - [anon_sym_alignas] = ACTIONS(7201), - [anon_sym__Alignas] = ACTIONS(7201), - [anon_sym_QMARK] = ACTIONS(7201), - [anon_sym_STAR_EQ] = ACTIONS(7201), - [anon_sym_SLASH_EQ] = ACTIONS(7201), - [anon_sym_PERCENT_EQ] = ACTIONS(7201), - [anon_sym_PLUS_EQ] = ACTIONS(7201), - [anon_sym_DASH_EQ] = ACTIONS(7201), - [anon_sym_LT_LT_EQ] = ACTIONS(7201), - [anon_sym_GT_GT_EQ] = ACTIONS(7201), - [anon_sym_AMP_EQ] = ACTIONS(7201), - [anon_sym_CARET_EQ] = ACTIONS(7201), - [anon_sym_PIPE_EQ] = ACTIONS(7201), - [anon_sym_and_eq] = ACTIONS(7201), - [anon_sym_or_eq] = ACTIONS(7201), - [anon_sym_xor_eq] = ACTIONS(7201), - [anon_sym_LT_EQ_GT] = ACTIONS(7201), - [anon_sym_or] = ACTIONS(7199), - [anon_sym_and] = ACTIONS(7199), - [anon_sym_bitor] = ACTIONS(7201), - [anon_sym_xor] = ACTIONS(7199), - [anon_sym_bitand] = ACTIONS(7201), - [anon_sym_not_eq] = ACTIONS(7201), - [anon_sym_DASH_DASH] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7201), - [anon_sym_DOT] = ACTIONS(7199), - [anon_sym_DOT_STAR] = ACTIONS(7201), - [anon_sym_DASH_GT] = ACTIONS(7201), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7201), - [anon_sym_override] = ACTIONS(7201), - [anon_sym_requires] = ACTIONS(7201), - [anon_sym_COLON_RBRACK] = ACTIONS(7201), - }, - [STATE(2173)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2181), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7215), - [anon_sym_COMMA] = ACTIONS(7215), - [anon_sym_RPAREN] = ACTIONS(7215), - [anon_sym_LPAREN2] = ACTIONS(7215), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_STAR] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7213), - [anon_sym_PERCENT] = ACTIONS(7213), - [anon_sym_PIPE_PIPE] = ACTIONS(7215), - [anon_sym_AMP_AMP] = ACTIONS(7215), - [anon_sym_PIPE] = ACTIONS(7213), - [anon_sym_CARET] = ACTIONS(7213), - [anon_sym_AMP] = ACTIONS(7213), - [anon_sym_EQ_EQ] = ACTIONS(7215), - [anon_sym_BANG_EQ] = ACTIONS(7215), - [anon_sym_GT] = ACTIONS(7213), - [anon_sym_GT_EQ] = ACTIONS(7215), - [anon_sym_LT_EQ] = ACTIONS(7213), - [anon_sym_LT] = ACTIONS(7213), - [anon_sym_LT_LT] = ACTIONS(7213), - [anon_sym_GT_GT] = ACTIONS(7213), - [anon_sym_SEMI] = ACTIONS(7215), - [anon_sym___extension__] = ACTIONS(7215), - [anon_sym___attribute__] = ACTIONS(7215), - [anon_sym___attribute] = ACTIONS(7213), - [anon_sym_COLON] = ACTIONS(7213), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7215), - [anon_sym_LBRACE] = ACTIONS(7215), - [anon_sym_RBRACE] = ACTIONS(7215), - [anon_sym_signed] = ACTIONS(7575), - [anon_sym_unsigned] = ACTIONS(7575), - [anon_sym_long] = ACTIONS(7575), - [anon_sym_short] = ACTIONS(7575), - [anon_sym_LBRACK] = ACTIONS(7215), - [anon_sym_EQ] = ACTIONS(7213), - [anon_sym_const] = ACTIONS(7213), - [anon_sym_constexpr] = ACTIONS(7215), - [anon_sym_volatile] = ACTIONS(7215), - [anon_sym_restrict] = ACTIONS(7215), - [anon_sym___restrict__] = ACTIONS(7215), - [anon_sym__Atomic] = ACTIONS(7215), - [anon_sym__Noreturn] = ACTIONS(7215), - [anon_sym_noreturn] = ACTIONS(7215), - [anon_sym__Nonnull] = ACTIONS(7215), - [anon_sym_mutable] = ACTIONS(7215), - [anon_sym_constinit] = ACTIONS(7215), - [anon_sym_consteval] = ACTIONS(7215), - [anon_sym_alignas] = ACTIONS(7215), - [anon_sym__Alignas] = ACTIONS(7215), - [anon_sym_QMARK] = ACTIONS(7215), - [anon_sym_STAR_EQ] = ACTIONS(7215), - [anon_sym_SLASH_EQ] = ACTIONS(7215), - [anon_sym_PERCENT_EQ] = ACTIONS(7215), - [anon_sym_PLUS_EQ] = ACTIONS(7215), - [anon_sym_DASH_EQ] = ACTIONS(7215), - [anon_sym_LT_LT_EQ] = ACTIONS(7215), - [anon_sym_GT_GT_EQ] = ACTIONS(7215), - [anon_sym_AMP_EQ] = ACTIONS(7215), - [anon_sym_CARET_EQ] = ACTIONS(7215), - [anon_sym_PIPE_EQ] = ACTIONS(7215), - [anon_sym_and_eq] = ACTIONS(7215), - [anon_sym_or_eq] = ACTIONS(7215), - [anon_sym_xor_eq] = ACTIONS(7215), - [anon_sym_LT_EQ_GT] = ACTIONS(7215), - [anon_sym_or] = ACTIONS(7213), - [anon_sym_and] = ACTIONS(7213), - [anon_sym_bitor] = ACTIONS(7215), - [anon_sym_xor] = ACTIONS(7213), - [anon_sym_bitand] = ACTIONS(7215), - [anon_sym_not_eq] = ACTIONS(7215), - [anon_sym_DASH_DASH] = ACTIONS(7215), - [anon_sym_PLUS_PLUS] = ACTIONS(7215), - [anon_sym_DOT] = ACTIONS(7213), - [anon_sym_DOT_STAR] = ACTIONS(7215), - [anon_sym_DASH_GT] = ACTIONS(7215), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7215), - [anon_sym_override] = ACTIONS(7215), - [anon_sym_requires] = ACTIONS(7215), - [anon_sym_COLON_RBRACK] = ACTIONS(7215), - }, - [STATE(2174)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7241), - [anon_sym_COMMA] = ACTIONS(7241), - [anon_sym_RPAREN] = ACTIONS(7241), - [anon_sym_LPAREN2] = ACTIONS(7241), - [anon_sym_DASH] = ACTIONS(7239), - [anon_sym_PLUS] = ACTIONS(7239), - [anon_sym_STAR] = ACTIONS(7239), - [anon_sym_SLASH] = ACTIONS(7239), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_PIPE_PIPE] = ACTIONS(7241), - [anon_sym_AMP_AMP] = ACTIONS(7241), - [anon_sym_PIPE] = ACTIONS(7239), - [anon_sym_CARET] = ACTIONS(7239), - [anon_sym_AMP] = ACTIONS(7239), - [anon_sym_EQ_EQ] = ACTIONS(7241), - [anon_sym_BANG_EQ] = ACTIONS(7241), - [anon_sym_GT] = ACTIONS(7239), - [anon_sym_GT_EQ] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7239), - [anon_sym_LT] = ACTIONS(7239), - [anon_sym_LT_LT] = ACTIONS(7239), - [anon_sym_GT_GT] = ACTIONS(7239), - [anon_sym_SEMI] = ACTIONS(7241), - [anon_sym___extension__] = ACTIONS(7241), - [anon_sym___attribute__] = ACTIONS(7241), + [anon_sym_PIPE] = ACTIONS(7431), + [anon_sym_CARET] = ACTIONS(7431), + [anon_sym_AMP] = ACTIONS(7431), + [anon_sym_EQ_EQ] = ACTIONS(7433), + [anon_sym_BANG_EQ] = ACTIONS(7433), + [anon_sym_GT] = ACTIONS(7431), + [anon_sym_GT_EQ] = ACTIONS(7433), + [anon_sym_LT_EQ] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7431), + [anon_sym_LT_LT] = ACTIONS(7431), + [anon_sym_GT_GT] = ACTIONS(7431), + [anon_sym_SEMI] = ACTIONS(7433), + [anon_sym___extension__] = ACTIONS(7431), + [anon_sym___attribute__] = ACTIONS(7239), [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_COLON] = ACTIONS(7239), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7241), - [anon_sym_LBRACE] = ACTIONS(7241), - [anon_sym_RBRACE] = ACTIONS(7241), - [anon_sym_signed] = ACTIONS(7577), - [anon_sym_unsigned] = ACTIONS(7577), - [anon_sym_long] = ACTIONS(7577), - [anon_sym_short] = ACTIONS(7577), - [anon_sym_LBRACK] = ACTIONS(7241), - [anon_sym_EQ] = ACTIONS(7239), - [anon_sym_const] = ACTIONS(7239), - [anon_sym_constexpr] = ACTIONS(7241), - [anon_sym_volatile] = ACTIONS(7241), - [anon_sym_restrict] = ACTIONS(7241), - [anon_sym___restrict__] = ACTIONS(7241), - [anon_sym__Atomic] = ACTIONS(7241), - [anon_sym__Noreturn] = ACTIONS(7241), - [anon_sym_noreturn] = ACTIONS(7241), - [anon_sym__Nonnull] = ACTIONS(7241), - [anon_sym_mutable] = ACTIONS(7241), - [anon_sym_constinit] = ACTIONS(7241), - [anon_sym_consteval] = ACTIONS(7241), - [anon_sym_alignas] = ACTIONS(7241), - [anon_sym__Alignas] = ACTIONS(7241), - [anon_sym_QMARK] = ACTIONS(7241), - [anon_sym_STAR_EQ] = ACTIONS(7241), - [anon_sym_SLASH_EQ] = ACTIONS(7241), - [anon_sym_PERCENT_EQ] = ACTIONS(7241), - [anon_sym_PLUS_EQ] = ACTIONS(7241), - [anon_sym_DASH_EQ] = ACTIONS(7241), - [anon_sym_LT_LT_EQ] = ACTIONS(7241), - [anon_sym_GT_GT_EQ] = ACTIONS(7241), - [anon_sym_AMP_EQ] = ACTIONS(7241), - [anon_sym_CARET_EQ] = ACTIONS(7241), - [anon_sym_PIPE_EQ] = ACTIONS(7241), - [anon_sym_and_eq] = ACTIONS(7241), - [anon_sym_or_eq] = ACTIONS(7241), - [anon_sym_xor_eq] = ACTIONS(7241), - [anon_sym_LT_EQ_GT] = ACTIONS(7241), - [anon_sym_or] = ACTIONS(7239), - [anon_sym_and] = ACTIONS(7239), - [anon_sym_bitor] = ACTIONS(7241), - [anon_sym_xor] = ACTIONS(7239), - [anon_sym_bitand] = ACTIONS(7241), - [anon_sym_not_eq] = ACTIONS(7241), - [anon_sym_DASH_DASH] = ACTIONS(7241), - [anon_sym_PLUS_PLUS] = ACTIONS(7241), - [anon_sym_DOT] = ACTIONS(7239), - [anon_sym_DOT_STAR] = ACTIONS(7241), - [anon_sym_DASH_GT] = ACTIONS(7241), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7241), - [anon_sym_override] = ACTIONS(7241), - [anon_sym_requires] = ACTIONS(7241), - [anon_sym_COLON_RBRACK] = ACTIONS(7241), - }, - [STATE(2175)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7251), - [anon_sym_COMMA] = ACTIONS(7251), - [anon_sym_RPAREN] = ACTIONS(7251), - [anon_sym_LPAREN2] = ACTIONS(7251), - [anon_sym_DASH] = ACTIONS(7249), - [anon_sym_PLUS] = ACTIONS(7249), - [anon_sym_STAR] = ACTIONS(7249), - [anon_sym_SLASH] = ACTIONS(7249), - [anon_sym_PERCENT] = ACTIONS(7249), - [anon_sym_PIPE_PIPE] = ACTIONS(7251), - [anon_sym_AMP_AMP] = ACTIONS(7251), - [anon_sym_PIPE] = ACTIONS(7249), - [anon_sym_CARET] = ACTIONS(7249), - [anon_sym_AMP] = ACTIONS(7249), - [anon_sym_EQ_EQ] = ACTIONS(7251), - [anon_sym_BANG_EQ] = ACTIONS(7251), - [anon_sym_GT] = ACTIONS(7249), - [anon_sym_GT_EQ] = ACTIONS(7251), - [anon_sym_LT_EQ] = ACTIONS(7249), - [anon_sym_LT] = ACTIONS(7249), - [anon_sym_LT_LT] = ACTIONS(7249), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_SEMI] = ACTIONS(7251), - [anon_sym___extension__] = ACTIONS(7251), - [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7249), - [anon_sym_COLON] = ACTIONS(7249), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7251), - [anon_sym_LBRACE] = ACTIONS(7251), - [anon_sym_RBRACE] = ACTIONS(7251), - [anon_sym_signed] = ACTIONS(7522), - [anon_sym_unsigned] = ACTIONS(7522), - [anon_sym_long] = ACTIONS(7522), - [anon_sym_short] = ACTIONS(7522), - [anon_sym_LBRACK] = ACTIONS(7251), - [anon_sym_EQ] = ACTIONS(7249), - [anon_sym_const] = ACTIONS(7249), - [anon_sym_constexpr] = ACTIONS(7251), - [anon_sym_volatile] = ACTIONS(7251), - [anon_sym_restrict] = ACTIONS(7251), - [anon_sym___restrict__] = ACTIONS(7251), - [anon_sym__Atomic] = ACTIONS(7251), - [anon_sym__Noreturn] = ACTIONS(7251), - [anon_sym_noreturn] = ACTIONS(7251), - [anon_sym__Nonnull] = ACTIONS(7251), - [anon_sym_mutable] = ACTIONS(7251), - [anon_sym_constinit] = ACTIONS(7251), - [anon_sym_consteval] = ACTIONS(7251), - [anon_sym_alignas] = ACTIONS(7251), - [anon_sym__Alignas] = ACTIONS(7251), - [anon_sym_QMARK] = ACTIONS(7251), - [anon_sym_STAR_EQ] = ACTIONS(7251), - [anon_sym_SLASH_EQ] = ACTIONS(7251), - [anon_sym_PERCENT_EQ] = ACTIONS(7251), - [anon_sym_PLUS_EQ] = ACTIONS(7251), - [anon_sym_DASH_EQ] = ACTIONS(7251), - [anon_sym_LT_LT_EQ] = ACTIONS(7251), - [anon_sym_GT_GT_EQ] = ACTIONS(7251), - [anon_sym_AMP_EQ] = ACTIONS(7251), - [anon_sym_CARET_EQ] = ACTIONS(7251), - [anon_sym_PIPE_EQ] = ACTIONS(7251), - [anon_sym_and_eq] = ACTIONS(7251), - [anon_sym_or_eq] = ACTIONS(7251), - [anon_sym_xor_eq] = ACTIONS(7251), - [anon_sym_LT_EQ_GT] = ACTIONS(7251), - [anon_sym_or] = ACTIONS(7249), - [anon_sym_and] = ACTIONS(7249), - [anon_sym_bitor] = ACTIONS(7251), - [anon_sym_xor] = ACTIONS(7249), - [anon_sym_bitand] = ACTIONS(7251), - [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7251), - [anon_sym_PLUS_PLUS] = ACTIONS(7251), - [anon_sym_DOT] = ACTIONS(7249), - [anon_sym_DOT_STAR] = ACTIONS(7251), - [anon_sym_DASH_GT] = ACTIONS(7251), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7251), - [anon_sym_override] = ACTIONS(7251), - [anon_sym_requires] = ACTIONS(7251), - [anon_sym_COLON_RBRACK] = ACTIONS(7251), - }, - [STATE(2176)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym_ref_qualifier] = STATE(2207), - [sym__function_exception_specification] = STATE(2465), - [sym__function_attributes_end] = STATE(3812), - [sym__function_postfix] = STATE(3513), - [sym_trailing_return_type] = STATE(2911), - [sym_noexcept] = STATE(2465), - [sym_throw_specifier] = STATE(2465), - [sym_requires_clause] = STATE(3513), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [sym_identifier] = ACTIONS(7546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [aux_sym_preproc_if_token2] = ACTIONS(7544), - [aux_sym_preproc_else_token1] = ACTIONS(7544), - [aux_sym_preproc_elif_token1] = ACTIONS(7546), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7548), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6123), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7546), - [anon_sym_or_eq] = ACTIONS(7546), - [anon_sym_xor_eq] = ACTIONS(7546), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7546), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7546), - [anon_sym_not_eq] = ACTIONS(7546), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6129), - [anon_sym___asm__] = ACTIONS(6129), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7579), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6134), - [anon_sym_override] = ACTIONS(6134), - [anon_sym_noexcept] = ACTIONS(6136), - [anon_sym_throw] = ACTIONS(6138), - [anon_sym_requires] = ACTIONS(6140), - }, - [STATE(2177)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym_ref_qualifier] = STATE(2210), - [sym__function_exception_specification] = STATE(2473), - [sym__function_attributes_end] = STATE(3831), - [sym__function_postfix] = STATE(3513), - [sym_trailing_return_type] = STATE(2961), - [sym_noexcept] = STATE(2473), - [sym_throw_specifier] = STATE(2473), - [sym_requires_clause] = STATE(3513), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [sym_identifier] = ACTIONS(7546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [aux_sym_preproc_if_token2] = ACTIONS(7544), - [aux_sym_preproc_else_token1] = ACTIONS(7544), - [aux_sym_preproc_elif_token1] = ACTIONS(7546), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7548), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6123), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7546), - [anon_sym_or_eq] = ACTIONS(7546), - [anon_sym_xor_eq] = ACTIONS(7546), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7546), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7546), - [anon_sym_not_eq] = ACTIONS(7546), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6129), - [anon_sym___asm__] = ACTIONS(6129), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7579), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7582), - [anon_sym_override] = ACTIONS(7582), - [anon_sym_noexcept] = ACTIONS(6136), - [anon_sym_throw] = ACTIONS(6138), - [anon_sym_requires] = ACTIONS(7585), + [anon_sym_COLON] = ACTIONS(7431), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7433), + [anon_sym_LBRACE] = ACTIONS(7433), + [anon_sym_RBRACE] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(7433), + [anon_sym_EQ] = ACTIONS(7431), + [anon_sym_const] = ACTIONS(7431), + [anon_sym_constexpr] = ACTIONS(7431), + [anon_sym_volatile] = ACTIONS(7431), + [anon_sym_restrict] = ACTIONS(7431), + [anon_sym___restrict__] = ACTIONS(7431), + [anon_sym__Atomic] = ACTIONS(7431), + [anon_sym__Noreturn] = ACTIONS(7431), + [anon_sym_noreturn] = ACTIONS(7431), + [anon_sym__Nonnull] = ACTIONS(7431), + [anon_sym_mutable] = ACTIONS(7431), + [anon_sym_constinit] = ACTIONS(7431), + [anon_sym_consteval] = ACTIONS(7431), + [anon_sym_alignas] = ACTIONS(7431), + [anon_sym__Alignas] = ACTIONS(7431), + [anon_sym_QMARK] = ACTIONS(7433), + [anon_sym_STAR_EQ] = ACTIONS(7433), + [anon_sym_SLASH_EQ] = ACTIONS(7433), + [anon_sym_PERCENT_EQ] = ACTIONS(7433), + [anon_sym_PLUS_EQ] = ACTIONS(7433), + [anon_sym_DASH_EQ] = ACTIONS(7433), + [anon_sym_LT_LT_EQ] = ACTIONS(7433), + [anon_sym_GT_GT_EQ] = ACTIONS(7433), + [anon_sym_AMP_EQ] = ACTIONS(7433), + [anon_sym_CARET_EQ] = ACTIONS(7433), + [anon_sym_PIPE_EQ] = ACTIONS(7433), + [anon_sym_and_eq] = ACTIONS(7431), + [anon_sym_or_eq] = ACTIONS(7431), + [anon_sym_xor_eq] = ACTIONS(7431), + [anon_sym_LT_EQ_GT] = ACTIONS(7433), + [anon_sym_or] = ACTIONS(7431), + [anon_sym_and] = ACTIONS(7431), + [anon_sym_bitor] = ACTIONS(7431), + [anon_sym_xor] = ACTIONS(7431), + [anon_sym_bitand] = ACTIONS(7431), + [anon_sym_not_eq] = ACTIONS(7431), + [anon_sym_DASH_DASH] = ACTIONS(7433), + [anon_sym_PLUS_PLUS] = ACTIONS(7433), + [anon_sym_DOT] = ACTIONS(7431), + [anon_sym_DOT_STAR] = ACTIONS(7433), + [anon_sym_DASH_GT] = ACTIONS(7433), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7431), + [anon_sym_override] = ACTIONS(7431), + [anon_sym_requires] = ACTIONS(7431), + [anon_sym_COLON_RBRACK] = ACTIONS(7433), }, - [STATE(2178)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), - [anon_sym_COMMA] = ACTIONS(7255), - [anon_sym_RPAREN] = ACTIONS(7255), - [anon_sym_LPAREN2] = ACTIONS(7255), - [anon_sym_DASH] = ACTIONS(7253), - [anon_sym_PLUS] = ACTIONS(7253), - [anon_sym_STAR] = ACTIONS(7253), - [anon_sym_SLASH] = ACTIONS(7253), - [anon_sym_PERCENT] = ACTIONS(7253), - [anon_sym_PIPE_PIPE] = ACTIONS(7255), - [anon_sym_AMP_AMP] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7253), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_EQ_EQ] = ACTIONS(7255), - [anon_sym_BANG_EQ] = ACTIONS(7255), - [anon_sym_GT] = ACTIONS(7253), - [anon_sym_GT_EQ] = ACTIONS(7255), - [anon_sym_LT_EQ] = ACTIONS(7253), - [anon_sym_LT] = ACTIONS(7253), - [anon_sym_LT_LT] = ACTIONS(7253), - [anon_sym_GT_GT] = ACTIONS(7253), - [anon_sym_SEMI] = ACTIONS(7255), - [anon_sym___extension__] = ACTIONS(7255), - [anon_sym___attribute__] = ACTIONS(7255), - [anon_sym___attribute] = ACTIONS(7253), - [anon_sym_COLON] = ACTIONS(7253), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7255), - [anon_sym_LBRACE] = ACTIONS(7255), - [anon_sym_RBRACE] = ACTIONS(7255), - [anon_sym_signed] = ACTIONS(7520), - [anon_sym_unsigned] = ACTIONS(7520), - [anon_sym_long] = ACTIONS(7520), - [anon_sym_short] = ACTIONS(7520), - [anon_sym_LBRACK] = ACTIONS(7255), - [anon_sym_EQ] = ACTIONS(7253), - [anon_sym_const] = ACTIONS(7253), - [anon_sym_constexpr] = ACTIONS(7255), - [anon_sym_volatile] = ACTIONS(7255), - [anon_sym_restrict] = ACTIONS(7255), - [anon_sym___restrict__] = ACTIONS(7255), - [anon_sym__Atomic] = ACTIONS(7255), - [anon_sym__Noreturn] = ACTIONS(7255), - [anon_sym_noreturn] = ACTIONS(7255), - [anon_sym__Nonnull] = ACTIONS(7255), - [anon_sym_mutable] = ACTIONS(7255), - [anon_sym_constinit] = ACTIONS(7255), - [anon_sym_consteval] = ACTIONS(7255), - [anon_sym_alignas] = ACTIONS(7255), - [anon_sym__Alignas] = ACTIONS(7255), - [anon_sym_QMARK] = ACTIONS(7255), - [anon_sym_STAR_EQ] = ACTIONS(7255), - [anon_sym_SLASH_EQ] = ACTIONS(7255), - [anon_sym_PERCENT_EQ] = ACTIONS(7255), - [anon_sym_PLUS_EQ] = ACTIONS(7255), - [anon_sym_DASH_EQ] = ACTIONS(7255), - [anon_sym_LT_LT_EQ] = ACTIONS(7255), - [anon_sym_GT_GT_EQ] = ACTIONS(7255), - [anon_sym_AMP_EQ] = ACTIONS(7255), - [anon_sym_CARET_EQ] = ACTIONS(7255), - [anon_sym_PIPE_EQ] = ACTIONS(7255), - [anon_sym_and_eq] = ACTIONS(7255), - [anon_sym_or_eq] = ACTIONS(7255), - [anon_sym_xor_eq] = ACTIONS(7255), - [anon_sym_LT_EQ_GT] = ACTIONS(7255), - [anon_sym_or] = ACTIONS(7253), - [anon_sym_and] = ACTIONS(7253), - [anon_sym_bitor] = ACTIONS(7255), - [anon_sym_xor] = ACTIONS(7253), - [anon_sym_bitand] = ACTIONS(7255), - [anon_sym_not_eq] = ACTIONS(7255), - [anon_sym_DASH_DASH] = ACTIONS(7255), - [anon_sym_PLUS_PLUS] = ACTIONS(7255), - [anon_sym_DOT] = ACTIONS(7253), - [anon_sym_DOT_STAR] = ACTIONS(7255), - [anon_sym_DASH_GT] = ACTIONS(7255), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7255), - [anon_sym_override] = ACTIONS(7255), - [anon_sym_requires] = ACTIONS(7255), - [anon_sym_COLON_RBRACK] = ACTIONS(7255), + [STATE(2140)] = { + [sym_attribute_specifier] = STATE(2201), + [sym_identifier] = ACTIONS(7435), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7437), + [anon_sym_COMMA] = ACTIONS(7437), + [anon_sym_RPAREN] = ACTIONS(7437), + [aux_sym_preproc_if_token2] = ACTIONS(7437), + [aux_sym_preproc_else_token1] = ACTIONS(7437), + [aux_sym_preproc_elif_token1] = ACTIONS(7435), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7437), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7437), + [anon_sym_LPAREN2] = ACTIONS(7437), + [anon_sym_DASH] = ACTIONS(7435), + [anon_sym_PLUS] = ACTIONS(7435), + [anon_sym_STAR] = ACTIONS(7435), + [anon_sym_SLASH] = ACTIONS(7435), + [anon_sym_PERCENT] = ACTIONS(7435), + [anon_sym_PIPE_PIPE] = ACTIONS(7437), + [anon_sym_AMP_AMP] = ACTIONS(7437), + [anon_sym_PIPE] = ACTIONS(7435), + [anon_sym_CARET] = ACTIONS(7435), + [anon_sym_AMP] = ACTIONS(7435), + [anon_sym_EQ_EQ] = ACTIONS(7437), + [anon_sym_BANG_EQ] = ACTIONS(7437), + [anon_sym_GT] = ACTIONS(7435), + [anon_sym_GT_EQ] = ACTIONS(7437), + [anon_sym_LT_EQ] = ACTIONS(7435), + [anon_sym_LT] = ACTIONS(7435), + [anon_sym_LT_LT] = ACTIONS(7435), + [anon_sym_GT_GT] = ACTIONS(7435), + [anon_sym_SEMI] = ACTIONS(7437), + [anon_sym___extension__] = ACTIONS(7435), + [anon_sym___attribute__] = ACTIONS(7239), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_COLON] = ACTIONS(7435), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7437), + [anon_sym_LBRACE] = ACTIONS(7437), + [anon_sym_RBRACE] = ACTIONS(7437), + [anon_sym_LBRACK] = ACTIONS(7437), + [anon_sym_EQ] = ACTIONS(7435), + [anon_sym_const] = ACTIONS(7435), + [anon_sym_constexpr] = ACTIONS(7435), + [anon_sym_volatile] = ACTIONS(7435), + [anon_sym_restrict] = ACTIONS(7435), + [anon_sym___restrict__] = ACTIONS(7435), + [anon_sym__Atomic] = ACTIONS(7435), + [anon_sym__Noreturn] = ACTIONS(7435), + [anon_sym_noreturn] = ACTIONS(7435), + [anon_sym__Nonnull] = ACTIONS(7435), + [anon_sym_mutable] = ACTIONS(7435), + [anon_sym_constinit] = ACTIONS(7435), + [anon_sym_consteval] = ACTIONS(7435), + [anon_sym_alignas] = ACTIONS(7435), + [anon_sym__Alignas] = ACTIONS(7435), + [anon_sym_QMARK] = ACTIONS(7437), + [anon_sym_STAR_EQ] = ACTIONS(7437), + [anon_sym_SLASH_EQ] = ACTIONS(7437), + [anon_sym_PERCENT_EQ] = ACTIONS(7437), + [anon_sym_PLUS_EQ] = ACTIONS(7437), + [anon_sym_DASH_EQ] = ACTIONS(7437), + [anon_sym_LT_LT_EQ] = ACTIONS(7437), + [anon_sym_GT_GT_EQ] = ACTIONS(7437), + [anon_sym_AMP_EQ] = ACTIONS(7437), + [anon_sym_CARET_EQ] = ACTIONS(7437), + [anon_sym_PIPE_EQ] = ACTIONS(7437), + [anon_sym_and_eq] = ACTIONS(7435), + [anon_sym_or_eq] = ACTIONS(7435), + [anon_sym_xor_eq] = ACTIONS(7435), + [anon_sym_LT_EQ_GT] = ACTIONS(7437), + [anon_sym_or] = ACTIONS(7435), + [anon_sym_and] = ACTIONS(7435), + [anon_sym_bitor] = ACTIONS(7435), + [anon_sym_xor] = ACTIONS(7435), + [anon_sym_bitand] = ACTIONS(7435), + [anon_sym_not_eq] = ACTIONS(7435), + [anon_sym_DASH_DASH] = ACTIONS(7437), + [anon_sym_PLUS_PLUS] = ACTIONS(7437), + [anon_sym_DOT] = ACTIONS(7435), + [anon_sym_DOT_STAR] = ACTIONS(7437), + [anon_sym_DASH_GT] = ACTIONS(7437), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7435), + [anon_sym_override] = ACTIONS(7435), + [anon_sym_requires] = ACTIONS(7435), + [anon_sym_COLON_RBRACK] = ACTIONS(7437), }, - [STATE(2179)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5212), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(9658), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_type_parameter_declaration] = STATE(9658), - [sym_variadic_type_parameter_declaration] = STATE(9658), - [sym_optional_type_parameter_declaration] = STATE(9658), - [sym_template_template_parameter_declaration] = STATE(9658), - [sym_optional_parameter_declaration] = STATE(9658), - [sym_variadic_parameter_declaration] = STATE(9658), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), + [STATE(2141)] = { + [sym_function_definition] = STATE(845), + [sym_declaration] = STATE(845), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6406), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_call_modifier] = STATE(2694), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(11355), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(5630), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(5631), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(6019), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7405), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -317323,648 +326331,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(7588), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(7590), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7439), + [anon_sym_struct] = ACTIONS(7441), + [anon_sym_union] = ACTIONS(7443), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(7592), - [anon_sym_GT2] = ACTIONS(7594), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(2180)] = { - [sym_attribute_specifier] = STATE(3075), - [sym_attribute_declaration] = STATE(6313), - [sym_type_qualifier] = STATE(3620), - [sym_alignas_qualifier] = STATE(3884), - [sym_gnu_asm_expression] = STATE(8976), - [sym_virtual_specifier] = STATE(6389), - [sym_ref_qualifier] = STATE(4009), - [sym__function_attributes_start] = STATE(3865), - [sym__function_exception_specification] = STATE(4481), - [sym__function_attributes_end] = STATE(6175), - [sym__function_postfix] = STATE(6555), - [sym_trailing_return_type] = STATE(6241), - [sym_noexcept] = STATE(4481), - [sym_throw_specifier] = STATE(4481), - [sym_requires_clause] = STATE(6555), - [aux_sym_type_definition_repeat1] = STATE(3075), - [aux_sym__type_definition_type_repeat1] = STATE(3620), - [aux_sym_attributed_declarator_repeat1] = STATE(6313), - [aux_sym__function_postfix_repeat1] = STATE(6389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_LPAREN2] = ACTIONS(6113), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6113), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_PERCENT] = ACTIONS(6113), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(7489), - [anon_sym_PIPE] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6113), - [anon_sym_AMP] = ACTIONS(7492), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6111), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6111), - [anon_sym_LT_LT] = ACTIONS(6113), - [anon_sym_GT_GT] = ACTIONS(6113), - [anon_sym___extension__] = ACTIONS(7495), - [anon_sym___attribute__] = ACTIONS(7497), - [anon_sym___attribute] = ACTIONS(7499), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7501), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_RBRACK] = ACTIONS(6113), - [anon_sym_const] = ACTIONS(7503), - [anon_sym_constexpr] = ACTIONS(7495), - [anon_sym_volatile] = ACTIONS(7495), - [anon_sym_restrict] = ACTIONS(7495), - [anon_sym___restrict__] = ACTIONS(7495), - [anon_sym__Atomic] = ACTIONS(7495), - [anon_sym__Noreturn] = ACTIONS(7495), - [anon_sym_noreturn] = ACTIONS(7495), - [anon_sym__Nonnull] = ACTIONS(7495), - [anon_sym_mutable] = ACTIONS(7495), - [anon_sym_constinit] = ACTIONS(7495), - [anon_sym_consteval] = ACTIONS(7495), - [anon_sym_alignas] = ACTIONS(7505), - [anon_sym__Alignas] = ACTIONS(7505), - [anon_sym_QMARK] = ACTIONS(6113), - [anon_sym_LT_EQ_GT] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6113), - [anon_sym_and] = ACTIONS(6113), - [anon_sym_bitor] = ACTIONS(6113), - [anon_sym_xor] = ACTIONS(6113), - [anon_sym_bitand] = ACTIONS(6113), - [anon_sym_not_eq] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6111), - [anon_sym_DOT_STAR] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(7507), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7596), - [anon_sym_override] = ACTIONS(7596), - [anon_sym_noexcept] = ACTIONS(7513), - [anon_sym_throw] = ACTIONS(7515), - [anon_sym_requires] = ACTIONS(7598), - }, - [STATE(2181)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7385), - [anon_sym_COMMA] = ACTIONS(7385), - [anon_sym_RPAREN] = ACTIONS(7385), - [anon_sym_LPAREN2] = ACTIONS(7385), - [anon_sym_DASH] = ACTIONS(7383), - [anon_sym_PLUS] = ACTIONS(7383), - [anon_sym_STAR] = ACTIONS(7383), - [anon_sym_SLASH] = ACTIONS(7383), - [anon_sym_PERCENT] = ACTIONS(7383), - [anon_sym_PIPE_PIPE] = ACTIONS(7385), - [anon_sym_AMP_AMP] = ACTIONS(7385), - [anon_sym_PIPE] = ACTIONS(7383), - [anon_sym_CARET] = ACTIONS(7383), - [anon_sym_AMP] = ACTIONS(7383), - [anon_sym_EQ_EQ] = ACTIONS(7385), - [anon_sym_BANG_EQ] = ACTIONS(7385), - [anon_sym_GT] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7385), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_LT] = ACTIONS(7383), - [anon_sym_LT_LT] = ACTIONS(7383), - [anon_sym_GT_GT] = ACTIONS(7383), - [anon_sym_SEMI] = ACTIONS(7385), - [anon_sym___extension__] = ACTIONS(7385), - [anon_sym___attribute__] = ACTIONS(7385), - [anon_sym___attribute] = ACTIONS(7383), - [anon_sym_COLON] = ACTIONS(7383), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7385), - [anon_sym_LBRACE] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7385), - [anon_sym_signed] = ACTIONS(7522), - [anon_sym_unsigned] = ACTIONS(7522), - [anon_sym_long] = ACTIONS(7522), - [anon_sym_short] = ACTIONS(7522), - [anon_sym_LBRACK] = ACTIONS(7385), - [anon_sym_EQ] = ACTIONS(7383), - [anon_sym_const] = ACTIONS(7383), - [anon_sym_constexpr] = ACTIONS(7385), - [anon_sym_volatile] = ACTIONS(7385), - [anon_sym_restrict] = ACTIONS(7385), - [anon_sym___restrict__] = ACTIONS(7385), - [anon_sym__Atomic] = ACTIONS(7385), - [anon_sym__Noreturn] = ACTIONS(7385), - [anon_sym_noreturn] = ACTIONS(7385), - [anon_sym__Nonnull] = ACTIONS(7385), - [anon_sym_mutable] = ACTIONS(7385), - [anon_sym_constinit] = ACTIONS(7385), - [anon_sym_consteval] = ACTIONS(7385), - [anon_sym_alignas] = ACTIONS(7385), - [anon_sym__Alignas] = ACTIONS(7385), - [anon_sym_QMARK] = ACTIONS(7385), - [anon_sym_STAR_EQ] = ACTIONS(7385), - [anon_sym_SLASH_EQ] = ACTIONS(7385), - [anon_sym_PERCENT_EQ] = ACTIONS(7385), - [anon_sym_PLUS_EQ] = ACTIONS(7385), - [anon_sym_DASH_EQ] = ACTIONS(7385), - [anon_sym_LT_LT_EQ] = ACTIONS(7385), - [anon_sym_GT_GT_EQ] = ACTIONS(7385), - [anon_sym_AMP_EQ] = ACTIONS(7385), - [anon_sym_CARET_EQ] = ACTIONS(7385), - [anon_sym_PIPE_EQ] = ACTIONS(7385), - [anon_sym_and_eq] = ACTIONS(7385), - [anon_sym_or_eq] = ACTIONS(7385), - [anon_sym_xor_eq] = ACTIONS(7385), - [anon_sym_LT_EQ_GT] = ACTIONS(7385), - [anon_sym_or] = ACTIONS(7383), - [anon_sym_and] = ACTIONS(7383), - [anon_sym_bitor] = ACTIONS(7385), - [anon_sym_xor] = ACTIONS(7383), - [anon_sym_bitand] = ACTIONS(7385), - [anon_sym_not_eq] = ACTIONS(7385), - [anon_sym_DASH_DASH] = ACTIONS(7385), - [anon_sym_PLUS_PLUS] = ACTIONS(7385), - [anon_sym_DOT] = ACTIONS(7383), - [anon_sym_DOT_STAR] = ACTIONS(7385), - [anon_sym_DASH_GT] = ACTIONS(7385), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7385), - [anon_sym_override] = ACTIONS(7385), - [anon_sym_requires] = ACTIONS(7385), - [anon_sym_COLON_RBRACK] = ACTIONS(7385), - }, - [STATE(2182)] = { - [sym__abstract_declarator] = STATE(4427), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(1913), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1847), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(1913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_RPAREN] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6560), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(6562), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(6564), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym_SEMI] = ACTIONS(6497), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(6495), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6497), - [anon_sym_RBRACE] = ACTIONS(6497), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6497), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_and_eq] = ACTIONS(6497), - [anon_sym_or_eq] = ACTIONS(6497), - [anon_sym_xor_eq] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6497), - }, - [STATE(2183)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym_ref_qualifier] = STATE(2204), - [sym__function_exception_specification] = STATE(2482), - [sym__function_attributes_end] = STATE(3790), - [sym__function_postfix] = STATE(3513), - [sym_trailing_return_type] = STATE(2911), - [sym_noexcept] = STATE(2482), - [sym_throw_specifier] = STATE(2482), - [sym_requires_clause] = STATE(3513), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7548), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym_SEMI] = ACTIONS(7544), - [anon_sym___attribute__] = ACTIONS(6150), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_COLON] = ACTIONS(7546), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), - [anon_sym_RBRACE] = ACTIONS(7544), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7554), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6181), - [anon_sym_override] = ACTIONS(6181), - [anon_sym_noexcept] = ACTIONS(6162), - [anon_sym_throw] = ACTIONS(6164), - [anon_sym_requires] = ACTIONS(6183), - [anon_sym_COLON_RBRACK] = ACTIONS(7544), - }, - [STATE(2184)] = { - [sym_attribute_specifier] = STATE(2074), - [sym_enumerator_list] = STATE(2034), - [sym__enum_base_clause] = STATE(2001), - [sym_identifier] = ACTIONS(7600), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7602), - [anon_sym_COMMA] = ACTIONS(7602), - [aux_sym_preproc_if_token2] = ACTIONS(7602), - [aux_sym_preproc_else_token1] = ACTIONS(7602), - [aux_sym_preproc_elif_token1] = ACTIONS(7600), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7602), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7602), - [anon_sym_LPAREN2] = ACTIONS(7602), - [anon_sym_DASH] = ACTIONS(7600), - [anon_sym_PLUS] = ACTIONS(7600), - [anon_sym_STAR] = ACTIONS(7600), - [anon_sym_SLASH] = ACTIONS(7600), - [anon_sym_PERCENT] = ACTIONS(7600), - [anon_sym_PIPE_PIPE] = ACTIONS(7602), - [anon_sym_AMP_AMP] = ACTIONS(7602), - [anon_sym_PIPE] = ACTIONS(7600), - [anon_sym_CARET] = ACTIONS(7600), - [anon_sym_AMP] = ACTIONS(7600), - [anon_sym_EQ_EQ] = ACTIONS(7602), - [anon_sym_BANG_EQ] = ACTIONS(7602), - [anon_sym_GT] = ACTIONS(7600), - [anon_sym_GT_EQ] = ACTIONS(7602), - [anon_sym_LT_EQ] = ACTIONS(7600), - [anon_sym_LT] = ACTIONS(7600), - [anon_sym_LT_LT] = ACTIONS(7600), - [anon_sym_GT_GT] = ACTIONS(7600), - [anon_sym___extension__] = ACTIONS(7600), - [anon_sym___attribute__] = ACTIONS(6830), - [anon_sym___attribute] = ACTIONS(6830), - [anon_sym_COLON] = ACTIONS(7604), - [anon_sym_LBRACE] = ACTIONS(6989), - [anon_sym_LBRACK] = ACTIONS(7602), - [anon_sym_EQ] = ACTIONS(7600), - [anon_sym_const] = ACTIONS(7600), - [anon_sym_constexpr] = ACTIONS(7600), - [anon_sym_volatile] = ACTIONS(7600), - [anon_sym_restrict] = ACTIONS(7600), - [anon_sym___restrict__] = ACTIONS(7600), - [anon_sym__Atomic] = ACTIONS(7600), - [anon_sym__Noreturn] = ACTIONS(7600), - [anon_sym_noreturn] = ACTIONS(7600), - [anon_sym__Nonnull] = ACTIONS(7600), - [anon_sym_mutable] = ACTIONS(7600), - [anon_sym_constinit] = ACTIONS(7600), - [anon_sym_consteval] = ACTIONS(7600), - [anon_sym_alignas] = ACTIONS(7600), - [anon_sym__Alignas] = ACTIONS(7600), - [anon_sym_QMARK] = ACTIONS(7602), - [anon_sym_STAR_EQ] = ACTIONS(7602), - [anon_sym_SLASH_EQ] = ACTIONS(7602), - [anon_sym_PERCENT_EQ] = ACTIONS(7602), - [anon_sym_PLUS_EQ] = ACTIONS(7602), - [anon_sym_DASH_EQ] = ACTIONS(7602), - [anon_sym_LT_LT_EQ] = ACTIONS(7602), - [anon_sym_GT_GT_EQ] = ACTIONS(7602), - [anon_sym_AMP_EQ] = ACTIONS(7602), - [anon_sym_CARET_EQ] = ACTIONS(7602), - [anon_sym_PIPE_EQ] = ACTIONS(7602), - [anon_sym_and_eq] = ACTIONS(7600), - [anon_sym_or_eq] = ACTIONS(7600), - [anon_sym_xor_eq] = ACTIONS(7600), - [anon_sym_LT_EQ_GT] = ACTIONS(7602), - [anon_sym_or] = ACTIONS(7600), - [anon_sym_and] = ACTIONS(7600), - [anon_sym_bitor] = ACTIONS(7600), - [anon_sym_xor] = ACTIONS(7600), - [anon_sym_bitand] = ACTIONS(7600), - [anon_sym_not_eq] = ACTIONS(7600), - [anon_sym_DASH_DASH] = ACTIONS(7602), - [anon_sym_PLUS_PLUS] = ACTIONS(7602), - [anon_sym_DOT] = ACTIONS(7600), - [anon_sym_DOT_STAR] = ACTIONS(7602), - [anon_sym_DASH_GT] = ACTIONS(7602), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7600), - [anon_sym_override] = ACTIONS(7600), - [anon_sym_requires] = ACTIONS(7600), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2185)] = { - [sym__abstract_declarator] = STATE(4451), - [sym_abstract_parenthesized_declarator] = STATE(4672), - [sym_abstract_pointer_declarator] = STATE(4672), - [sym_abstract_function_declarator] = STATE(4672), - [sym_abstract_array_declarator] = STATE(4672), - [sym_type_qualifier] = STATE(2219), - [sym_alignas_qualifier] = STATE(2278), - [sym_parameter_list] = STATE(1867), - [sym_abstract_reference_declarator] = STATE(4672), - [sym__function_declarator_seq] = STATE(4681), - [aux_sym__type_definition_type_repeat1] = STATE(2219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), - [anon_sym_COMMA] = ACTIONS(6999), - [anon_sym_RPAREN] = ACTIONS(6999), - [anon_sym_LPAREN2] = ACTIONS(6648), - [anon_sym_DASH] = ACTIONS(7001), - [anon_sym_PLUS] = ACTIONS(7001), - [anon_sym_STAR] = ACTIONS(6650), - [anon_sym_SLASH] = ACTIONS(7001), - [anon_sym_PERCENT] = ACTIONS(7001), - [anon_sym_PIPE_PIPE] = ACTIONS(6999), - [anon_sym_AMP_AMP] = ACTIONS(6652), - [anon_sym_PIPE] = ACTIONS(7001), - [anon_sym_CARET] = ACTIONS(7001), - [anon_sym_AMP] = ACTIONS(6654), - [anon_sym_EQ_EQ] = ACTIONS(6999), - [anon_sym_BANG_EQ] = ACTIONS(6999), - [anon_sym_GT] = ACTIONS(7001), - [anon_sym_GT_EQ] = ACTIONS(6999), - [anon_sym_LT_EQ] = ACTIONS(7001), - [anon_sym_LT] = ACTIONS(7001), - [anon_sym_LT_LT] = ACTIONS(7001), - [anon_sym_GT_GT] = ACTIONS(7001), - [anon_sym___extension__] = ACTIONS(6656), - [anon_sym_LBRACK] = ACTIONS(6664), - [anon_sym_EQ] = ACTIONS(7001), - [anon_sym_const] = ACTIONS(6666), - [anon_sym_constexpr] = ACTIONS(6656), - [anon_sym_volatile] = ACTIONS(6656), - [anon_sym_restrict] = ACTIONS(6656), - [anon_sym___restrict__] = ACTIONS(6656), - [anon_sym__Atomic] = ACTIONS(6656), - [anon_sym__Noreturn] = ACTIONS(6656), - [anon_sym_noreturn] = ACTIONS(6656), - [anon_sym__Nonnull] = ACTIONS(6656), - [anon_sym_mutable] = ACTIONS(6656), - [anon_sym_constinit] = ACTIONS(6656), - [anon_sym_consteval] = ACTIONS(6656), - [anon_sym_alignas] = ACTIONS(6668), - [anon_sym__Alignas] = ACTIONS(6668), - [anon_sym_QMARK] = ACTIONS(6999), - [anon_sym_STAR_EQ] = ACTIONS(6999), - [anon_sym_SLASH_EQ] = ACTIONS(6999), - [anon_sym_PERCENT_EQ] = ACTIONS(6999), - [anon_sym_PLUS_EQ] = ACTIONS(6999), - [anon_sym_DASH_EQ] = ACTIONS(6999), - [anon_sym_LT_LT_EQ] = ACTIONS(6999), - [anon_sym_GT_GT_EQ] = ACTIONS(6999), - [anon_sym_AMP_EQ] = ACTIONS(6999), - [anon_sym_CARET_EQ] = ACTIONS(6999), - [anon_sym_PIPE_EQ] = ACTIONS(6999), - [anon_sym_and_eq] = ACTIONS(6999), - [anon_sym_or_eq] = ACTIONS(6999), - [anon_sym_xor_eq] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(6999), - [anon_sym_or] = ACTIONS(7001), - [anon_sym_and] = ACTIONS(7001), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(7001), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(6999), - [anon_sym_PLUS_PLUS] = ACTIONS(6999), - [anon_sym_DOT] = ACTIONS(7001), - [anon_sym_DOT_STAR] = ACTIONS(6999), - [anon_sym_DASH_GT] = ACTIONS(7001), + [STATE(2142)] = { + [sym_template_argument_list] = STATE(2053), + [sym_identifier] = ACTIONS(7085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7097), + [anon_sym_COMMA] = ACTIONS(7097), + [anon_sym_RPAREN] = ACTIONS(7097), + [anon_sym_LPAREN2] = ACTIONS(7087), + [anon_sym_TILDE] = ACTIONS(7090), + [anon_sym_DASH] = ACTIONS(7092), + [anon_sym_PLUS] = ACTIONS(7092), + [anon_sym_STAR] = ACTIONS(7087), + [anon_sym_SLASH] = ACTIONS(7092), + [anon_sym_PERCENT] = ACTIONS(7097), + [anon_sym_PIPE_PIPE] = ACTIONS(7097), + [anon_sym_AMP_AMP] = ACTIONS(7087), + [anon_sym_PIPE] = ACTIONS(7092), + [anon_sym_CARET] = ACTIONS(7097), + [anon_sym_AMP] = ACTIONS(7094), + [anon_sym_EQ_EQ] = ACTIONS(7097), + [anon_sym_BANG_EQ] = ACTIONS(7097), + [anon_sym_GT] = ACTIONS(7092), + [anon_sym_GT_EQ] = ACTIONS(7097), + [anon_sym_LT_EQ] = ACTIONS(7092), + [anon_sym_LT] = ACTIONS(7445), + [anon_sym_LT_LT] = ACTIONS(7097), + [anon_sym_GT_GT] = ACTIONS(7097), + [anon_sym_SEMI] = ACTIONS(7087), + [anon_sym___extension__] = ACTIONS(7085), + [anon_sym_virtual] = ACTIONS(7085), + [anon_sym_extern] = ACTIONS(7085), + [anon_sym___attribute__] = ACTIONS(7085), + [anon_sym___attribute] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7087), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7090), + [anon_sym___declspec] = ACTIONS(7085), + [anon_sym___based] = ACTIONS(7085), + [anon_sym___cdecl] = ACTIONS(7085), + [anon_sym___clrcall] = ACTIONS(7085), + [anon_sym___stdcall] = ACTIONS(7085), + [anon_sym___fastcall] = ACTIONS(7085), + [anon_sym___thiscall] = ACTIONS(7085), + [anon_sym___vectorcall] = ACTIONS(7085), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_RBRACE] = ACTIONS(7097), + [anon_sym_LBRACK] = ACTIONS(7094), + [anon_sym_static] = ACTIONS(7085), + [anon_sym_register] = ACTIONS(7085), + [anon_sym_inline] = ACTIONS(7085), + [anon_sym___inline] = ACTIONS(7085), + [anon_sym___inline__] = ACTIONS(7085), + [anon_sym___forceinline] = ACTIONS(7085), + [anon_sym_thread_local] = ACTIONS(7085), + [anon_sym___thread] = ACTIONS(7085), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7085), + [anon_sym_volatile] = ACTIONS(7085), + [anon_sym_restrict] = ACTIONS(7085), + [anon_sym___restrict__] = ACTIONS(7085), + [anon_sym__Atomic] = ACTIONS(7085), + [anon_sym__Noreturn] = ACTIONS(7085), + [anon_sym_noreturn] = ACTIONS(7085), + [anon_sym__Nonnull] = ACTIONS(7085), + [anon_sym_mutable] = ACTIONS(7085), + [anon_sym_constinit] = ACTIONS(7085), + [anon_sym_consteval] = ACTIONS(7085), + [anon_sym_alignas] = ACTIONS(7085), + [anon_sym__Alignas] = ACTIONS(7085), + [anon_sym_QMARK] = ACTIONS(7097), + [anon_sym_LT_EQ_GT] = ACTIONS(7097), + [anon_sym_or] = ACTIONS(7092), + [anon_sym_and] = ACTIONS(7092), + [anon_sym_bitor] = ACTIONS(7092), + [anon_sym_xor] = ACTIONS(7092), + [anon_sym_bitand] = ACTIONS(7092), + [anon_sym_not_eq] = ACTIONS(7092), + [anon_sym_DASH_DASH] = ACTIONS(7097), + [anon_sym_PLUS_PLUS] = ACTIONS(7097), + [anon_sym_DOT] = ACTIONS(7092), + [anon_sym_DOT_STAR] = ACTIONS(7097), + [anon_sym_DASH_GT] = ACTIONS(7097), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6999), - [anon_sym_override] = ACTIONS(6999), - [anon_sym_requires] = ACTIONS(6999), - [anon_sym_DASH_GT_STAR] = ACTIONS(6999), - }, - [STATE(2186)] = { - [sym_type_qualifier] = STATE(2186), - [sym_alignas_qualifier] = STATE(2295), - [aux_sym__type_definition_type_repeat1] = STATE(2186), - [sym_identifier] = ACTIONS(6525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_LPAREN2] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6525), - [anon_sym_PLUS] = ACTIONS(6525), - [anon_sym_STAR] = ACTIONS(6525), - [anon_sym_SLASH] = ACTIONS(6525), - [anon_sym_PERCENT] = ACTIONS(6525), - [anon_sym_PIPE_PIPE] = ACTIONS(6527), - [anon_sym_AMP_AMP] = ACTIONS(6527), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_CARET] = ACTIONS(6525), - [anon_sym_AMP] = ACTIONS(6525), - [anon_sym_EQ_EQ] = ACTIONS(6527), - [anon_sym_BANG_EQ] = ACTIONS(6527), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6525), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_LT_LT] = ACTIONS(6525), - [anon_sym_GT_GT] = ACTIONS(6525), - [anon_sym___extension__] = ACTIONS(7606), - [anon_sym___attribute__] = ACTIONS(6525), - [anon_sym___attribute] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6527), - [anon_sym_signed] = ACTIONS(6525), - [anon_sym_unsigned] = ACTIONS(6525), - [anon_sym_long] = ACTIONS(6525), - [anon_sym_short] = ACTIONS(6525), - [anon_sym_LBRACK] = ACTIONS(6527), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_const] = ACTIONS(7606), - [anon_sym_constexpr] = ACTIONS(7606), - [anon_sym_volatile] = ACTIONS(7606), - [anon_sym_restrict] = ACTIONS(7606), - [anon_sym___restrict__] = ACTIONS(7606), - [anon_sym__Atomic] = ACTIONS(7606), - [anon_sym__Noreturn] = ACTIONS(7606), - [anon_sym_noreturn] = ACTIONS(7606), - [anon_sym__Nonnull] = ACTIONS(7606), - [anon_sym_mutable] = ACTIONS(7606), - [anon_sym_constinit] = ACTIONS(7606), - [anon_sym_consteval] = ACTIONS(7606), - [anon_sym_alignas] = ACTIONS(7609), - [anon_sym__Alignas] = ACTIONS(7609), - [sym_primitive_type] = ACTIONS(6525), - [anon_sym_QMARK] = ACTIONS(6527), - [anon_sym_STAR_EQ] = ACTIONS(6527), - [anon_sym_SLASH_EQ] = ACTIONS(6527), - [anon_sym_PERCENT_EQ] = ACTIONS(6527), - [anon_sym_PLUS_EQ] = ACTIONS(6527), - [anon_sym_DASH_EQ] = ACTIONS(6527), - [anon_sym_LT_LT_EQ] = ACTIONS(6527), - [anon_sym_GT_GT_EQ] = ACTIONS(6525), - [anon_sym_AMP_EQ] = ACTIONS(6527), - [anon_sym_CARET_EQ] = ACTIONS(6527), - [anon_sym_PIPE_EQ] = ACTIONS(6527), - [anon_sym_and_eq] = ACTIONS(6525), - [anon_sym_or_eq] = ACTIONS(6525), - [anon_sym_xor_eq] = ACTIONS(6525), - [anon_sym_LT_EQ_GT] = ACTIONS(6527), - [anon_sym_or] = ACTIONS(6525), - [anon_sym_and] = ACTIONS(6525), - [anon_sym_bitor] = ACTIONS(6525), - [anon_sym_xor] = ACTIONS(6525), - [anon_sym_bitand] = ACTIONS(6525), - [anon_sym_not_eq] = ACTIONS(6525), - [anon_sym_DASH_DASH] = ACTIONS(6527), - [anon_sym_PLUS_PLUS] = ACTIONS(6527), - [anon_sym_DOT] = ACTIONS(6525), - [anon_sym_DOT_STAR] = ACTIONS(6527), - [anon_sym_DASH_GT] = ACTIONS(6527), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6525), - [anon_sym_override] = ACTIONS(6525), - [anon_sym_GT2] = ACTIONS(6527), - [anon_sym_requires] = ACTIONS(6525), + [anon_sym_decltype] = ACTIONS(7085), + [anon_sym_template] = ACTIONS(7085), + [anon_sym_operator] = ACTIONS(7085), + [anon_sym_LBRACK_COLON] = ACTIONS(7090), }, - [STATE(2187)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(9983), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_explicit_object_parameter_declaration] = STATE(9983), - [sym_optional_parameter_declaration] = STATE(9983), - [sym_variadic_parameter_declaration] = STATE(9983), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6193), - [anon_sym_RPAREN] = ACTIONS(6195), + [STATE(2143)] = { + [sym_function_definition] = STATE(852), + [sym_declaration] = STATE(852), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6406), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_call_modifier] = STATE(2694), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10767), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(5630), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(5631), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(6019), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7405), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -317991,229 +326503,496 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(5313), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7447), + [anon_sym_struct] = ACTIONS(7449), + [anon_sym_union] = ACTIONS(7451), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - [sym_this] = ACTIONS(5315), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2188)] = { - [sym__abstract_declarator] = STATE(4476), - [sym_abstract_parenthesized_declarator] = STATE(4672), - [sym_abstract_pointer_declarator] = STATE(4672), - [sym_abstract_function_declarator] = STATE(4672), - [sym_abstract_array_declarator] = STATE(4672), - [sym_type_qualifier] = STATE(2163), - [sym_alignas_qualifier] = STATE(2278), - [sym_parameter_list] = STATE(1867), - [sym_abstract_reference_declarator] = STATE(4672), - [sym__function_declarator_seq] = STATE(4681), - [aux_sym__type_definition_type_repeat1] = STATE(2163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), - [anon_sym_COMMA] = ACTIONS(7007), - [anon_sym_RPAREN] = ACTIONS(7007), - [anon_sym_LPAREN2] = ACTIONS(6648), - [anon_sym_DASH] = ACTIONS(7009), - [anon_sym_PLUS] = ACTIONS(7009), - [anon_sym_STAR] = ACTIONS(6650), - [anon_sym_SLASH] = ACTIONS(7009), - [anon_sym_PERCENT] = ACTIONS(7009), - [anon_sym_PIPE_PIPE] = ACTIONS(7007), - [anon_sym_AMP_AMP] = ACTIONS(6652), - [anon_sym_PIPE] = ACTIONS(7009), - [anon_sym_CARET] = ACTIONS(7009), - [anon_sym_AMP] = ACTIONS(6654), - [anon_sym_EQ_EQ] = ACTIONS(7007), - [anon_sym_BANG_EQ] = ACTIONS(7007), - [anon_sym_GT] = ACTIONS(7009), - [anon_sym_GT_EQ] = ACTIONS(7007), - [anon_sym_LT_EQ] = ACTIONS(7009), - [anon_sym_LT] = ACTIONS(7009), - [anon_sym_LT_LT] = ACTIONS(7009), - [anon_sym_GT_GT] = ACTIONS(7009), - [anon_sym___extension__] = ACTIONS(6656), - [anon_sym_LBRACK] = ACTIONS(6664), - [anon_sym_EQ] = ACTIONS(7009), - [anon_sym_const] = ACTIONS(6666), - [anon_sym_constexpr] = ACTIONS(6656), - [anon_sym_volatile] = ACTIONS(6656), - [anon_sym_restrict] = ACTIONS(6656), - [anon_sym___restrict__] = ACTIONS(6656), - [anon_sym__Atomic] = ACTIONS(6656), - [anon_sym__Noreturn] = ACTIONS(6656), - [anon_sym_noreturn] = ACTIONS(6656), - [anon_sym__Nonnull] = ACTIONS(6656), - [anon_sym_mutable] = ACTIONS(6656), - [anon_sym_constinit] = ACTIONS(6656), - [anon_sym_consteval] = ACTIONS(6656), - [anon_sym_alignas] = ACTIONS(6668), - [anon_sym__Alignas] = ACTIONS(6668), - [anon_sym_QMARK] = ACTIONS(7007), - [anon_sym_STAR_EQ] = ACTIONS(7007), - [anon_sym_SLASH_EQ] = ACTIONS(7007), - [anon_sym_PERCENT_EQ] = ACTIONS(7007), - [anon_sym_PLUS_EQ] = ACTIONS(7007), - [anon_sym_DASH_EQ] = ACTIONS(7007), - [anon_sym_LT_LT_EQ] = ACTIONS(7007), - [anon_sym_GT_GT_EQ] = ACTIONS(7007), - [anon_sym_AMP_EQ] = ACTIONS(7007), - [anon_sym_CARET_EQ] = ACTIONS(7007), - [anon_sym_PIPE_EQ] = ACTIONS(7007), - [anon_sym_and_eq] = ACTIONS(7007), - [anon_sym_or_eq] = ACTIONS(7007), - [anon_sym_xor_eq] = ACTIONS(7007), - [anon_sym_LT_EQ_GT] = ACTIONS(7007), - [anon_sym_or] = ACTIONS(7009), - [anon_sym_and] = ACTIONS(7009), - [anon_sym_bitor] = ACTIONS(7007), - [anon_sym_xor] = ACTIONS(7009), - [anon_sym_bitand] = ACTIONS(7007), - [anon_sym_not_eq] = ACTIONS(7007), - [anon_sym_DASH_DASH] = ACTIONS(7007), - [anon_sym_PLUS_PLUS] = ACTIONS(7007), - [anon_sym_DOT] = ACTIONS(7009), - [anon_sym_DOT_STAR] = ACTIONS(7007), - [anon_sym_DASH_GT] = ACTIONS(7009), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7007), - [anon_sym_override] = ACTIONS(7007), - [anon_sym_requires] = ACTIONS(7007), - [anon_sym_DASH_GT_STAR] = ACTIONS(7007), + [STATE(2144)] = { + [sym_attribute_specifier] = STATE(2204), + [sym_identifier] = ACTIONS(7453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7455), + [anon_sym_COMMA] = ACTIONS(7455), + [anon_sym_RPAREN] = ACTIONS(7455), + [aux_sym_preproc_if_token2] = ACTIONS(7455), + [aux_sym_preproc_else_token1] = ACTIONS(7455), + [aux_sym_preproc_elif_token1] = ACTIONS(7453), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7455), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7455), + [anon_sym_LPAREN2] = ACTIONS(7455), + [anon_sym_DASH] = ACTIONS(7453), + [anon_sym_PLUS] = ACTIONS(7453), + [anon_sym_STAR] = ACTIONS(7453), + [anon_sym_SLASH] = ACTIONS(7453), + [anon_sym_PERCENT] = ACTIONS(7453), + [anon_sym_PIPE_PIPE] = ACTIONS(7455), + [anon_sym_AMP_AMP] = ACTIONS(7455), + [anon_sym_PIPE] = ACTIONS(7453), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_AMP] = ACTIONS(7453), + [anon_sym_EQ_EQ] = ACTIONS(7455), + [anon_sym_BANG_EQ] = ACTIONS(7455), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_GT_EQ] = ACTIONS(7455), + [anon_sym_LT_EQ] = ACTIONS(7453), + [anon_sym_LT] = ACTIONS(7453), + [anon_sym_LT_LT] = ACTIONS(7453), + [anon_sym_GT_GT] = ACTIONS(7453), + [anon_sym_SEMI] = ACTIONS(7455), + [anon_sym___extension__] = ACTIONS(7453), + [anon_sym___attribute__] = ACTIONS(7239), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_COLON] = ACTIONS(7453), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7455), + [anon_sym_LBRACE] = ACTIONS(7455), + [anon_sym_RBRACE] = ACTIONS(7455), + [anon_sym_LBRACK] = ACTIONS(7455), + [anon_sym_EQ] = ACTIONS(7453), + [anon_sym_const] = ACTIONS(7453), + [anon_sym_constexpr] = ACTIONS(7453), + [anon_sym_volatile] = ACTIONS(7453), + [anon_sym_restrict] = ACTIONS(7453), + [anon_sym___restrict__] = ACTIONS(7453), + [anon_sym__Atomic] = ACTIONS(7453), + [anon_sym__Noreturn] = ACTIONS(7453), + [anon_sym_noreturn] = ACTIONS(7453), + [anon_sym__Nonnull] = ACTIONS(7453), + [anon_sym_mutable] = ACTIONS(7453), + [anon_sym_constinit] = ACTIONS(7453), + [anon_sym_consteval] = ACTIONS(7453), + [anon_sym_alignas] = ACTIONS(7453), + [anon_sym__Alignas] = ACTIONS(7453), + [anon_sym_QMARK] = ACTIONS(7455), + [anon_sym_STAR_EQ] = ACTIONS(7455), + [anon_sym_SLASH_EQ] = ACTIONS(7455), + [anon_sym_PERCENT_EQ] = ACTIONS(7455), + [anon_sym_PLUS_EQ] = ACTIONS(7455), + [anon_sym_DASH_EQ] = ACTIONS(7455), + [anon_sym_LT_LT_EQ] = ACTIONS(7455), + [anon_sym_GT_GT_EQ] = ACTIONS(7455), + [anon_sym_AMP_EQ] = ACTIONS(7455), + [anon_sym_CARET_EQ] = ACTIONS(7455), + [anon_sym_PIPE_EQ] = ACTIONS(7455), + [anon_sym_and_eq] = ACTIONS(7453), + [anon_sym_or_eq] = ACTIONS(7453), + [anon_sym_xor_eq] = ACTIONS(7453), + [anon_sym_LT_EQ_GT] = ACTIONS(7455), + [anon_sym_or] = ACTIONS(7453), + [anon_sym_and] = ACTIONS(7453), + [anon_sym_bitor] = ACTIONS(7453), + [anon_sym_xor] = ACTIONS(7453), + [anon_sym_bitand] = ACTIONS(7453), + [anon_sym_not_eq] = ACTIONS(7453), + [anon_sym_DASH_DASH] = ACTIONS(7455), + [anon_sym_PLUS_PLUS] = ACTIONS(7455), + [anon_sym_DOT] = ACTIONS(7453), + [anon_sym_DOT_STAR] = ACTIONS(7455), + [anon_sym_DASH_GT] = ACTIONS(7455), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7453), + [anon_sym_override] = ACTIONS(7453), + [anon_sym_requires] = ACTIONS(7453), + [anon_sym_COLON_RBRACK] = ACTIONS(7455), }, - [STATE(2189)] = { - [sym__abstract_declarator] = STATE(4447), - [sym_abstract_parenthesized_declarator] = STATE(4672), - [sym_abstract_pointer_declarator] = STATE(4672), - [sym_abstract_function_declarator] = STATE(4672), - [sym_abstract_array_declarator] = STATE(4672), - [sym_type_qualifier] = STATE(2209), - [sym_alignas_qualifier] = STATE(2278), - [sym_parameter_list] = STATE(1867), - [sym_abstract_reference_declarator] = STATE(4672), - [sym__function_declarator_seq] = STATE(4681), - [aux_sym__type_definition_type_repeat1] = STATE(2209), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), - [anon_sym_COMMA] = ACTIONS(6991), - [anon_sym_RPAREN] = ACTIONS(6991), - [anon_sym_LPAREN2] = ACTIONS(6648), - [anon_sym_DASH] = ACTIONS(6993), - [anon_sym_PLUS] = ACTIONS(6993), - [anon_sym_STAR] = ACTIONS(6650), - [anon_sym_SLASH] = ACTIONS(6993), - [anon_sym_PERCENT] = ACTIONS(6993), - [anon_sym_PIPE_PIPE] = ACTIONS(6991), - [anon_sym_AMP_AMP] = ACTIONS(6652), - [anon_sym_PIPE] = ACTIONS(6993), - [anon_sym_CARET] = ACTIONS(6993), - [anon_sym_AMP] = ACTIONS(6654), - [anon_sym_EQ_EQ] = ACTIONS(6991), - [anon_sym_BANG_EQ] = ACTIONS(6991), - [anon_sym_GT] = ACTIONS(6993), - [anon_sym_GT_EQ] = ACTIONS(6991), - [anon_sym_LT_EQ] = ACTIONS(6993), - [anon_sym_LT] = ACTIONS(6993), - [anon_sym_LT_LT] = ACTIONS(6993), - [anon_sym_GT_GT] = ACTIONS(6993), - [anon_sym___extension__] = ACTIONS(6656), - [anon_sym_LBRACK] = ACTIONS(6664), - [anon_sym_EQ] = ACTIONS(6993), - [anon_sym_const] = ACTIONS(6666), - [anon_sym_constexpr] = ACTIONS(6656), - [anon_sym_volatile] = ACTIONS(6656), - [anon_sym_restrict] = ACTIONS(6656), - [anon_sym___restrict__] = ACTIONS(6656), - [anon_sym__Atomic] = ACTIONS(6656), - [anon_sym__Noreturn] = ACTIONS(6656), - [anon_sym_noreturn] = ACTIONS(6656), - [anon_sym__Nonnull] = ACTIONS(6656), - [anon_sym_mutable] = ACTIONS(6656), - [anon_sym_constinit] = ACTIONS(6656), - [anon_sym_consteval] = ACTIONS(6656), - [anon_sym_alignas] = ACTIONS(6668), - [anon_sym__Alignas] = ACTIONS(6668), - [anon_sym_QMARK] = ACTIONS(6991), - [anon_sym_STAR_EQ] = ACTIONS(6991), - [anon_sym_SLASH_EQ] = ACTIONS(6991), - [anon_sym_PERCENT_EQ] = ACTIONS(6991), - [anon_sym_PLUS_EQ] = ACTIONS(6991), - [anon_sym_DASH_EQ] = ACTIONS(6991), - [anon_sym_LT_LT_EQ] = ACTIONS(6991), - [anon_sym_GT_GT_EQ] = ACTIONS(6991), - [anon_sym_AMP_EQ] = ACTIONS(6991), - [anon_sym_CARET_EQ] = ACTIONS(6991), - [anon_sym_PIPE_EQ] = ACTIONS(6991), - [anon_sym_and_eq] = ACTIONS(6991), - [anon_sym_or_eq] = ACTIONS(6991), - [anon_sym_xor_eq] = ACTIONS(6991), - [anon_sym_LT_EQ_GT] = ACTIONS(6991), - [anon_sym_or] = ACTIONS(6993), - [anon_sym_and] = ACTIONS(6993), - [anon_sym_bitor] = ACTIONS(6991), - [anon_sym_xor] = ACTIONS(6993), - [anon_sym_bitand] = ACTIONS(6991), - [anon_sym_not_eq] = ACTIONS(6991), - [anon_sym_DASH_DASH] = ACTIONS(6991), - [anon_sym_PLUS_PLUS] = ACTIONS(6991), - [anon_sym_DOT] = ACTIONS(6993), - [anon_sym_DOT_STAR] = ACTIONS(6991), - [anon_sym_DASH_GT] = ACTIONS(6993), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6991), - [anon_sym_override] = ACTIONS(6991), - [anon_sym_requires] = ACTIONS(6991), - [anon_sym_DASH_GT_STAR] = ACTIONS(6991), + [STATE(2145)] = { + [sym_attribute_specifier] = STATE(2375), + [sym_attribute_declaration] = STATE(4587), + [sym_type_qualifier] = STATE(2326), + [sym_alignas_qualifier] = STATE(2492), + [aux_sym_type_definition_repeat1] = STATE(2375), + [aux_sym__type_definition_type_repeat1] = STATE(2326), + [aux_sym_attributed_declarator_repeat1] = STATE(4587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), + [anon_sym_COMMA] = ACTIONS(6754), + [anon_sym_LPAREN2] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6752), + [anon_sym_STAR] = ACTIONS(6752), + [anon_sym_SLASH] = ACTIONS(6752), + [anon_sym_PERCENT] = ACTIONS(6752), + [anon_sym_PIPE_PIPE] = ACTIONS(6754), + [anon_sym_AMP_AMP] = ACTIONS(6754), + [anon_sym_PIPE] = ACTIONS(6752), + [anon_sym_CARET] = ACTIONS(6752), + [anon_sym_AMP] = ACTIONS(6752), + [anon_sym_EQ_EQ] = ACTIONS(6754), + [anon_sym_BANG_EQ] = ACTIONS(6754), + [anon_sym_GT] = ACTIONS(6752), + [anon_sym_GT_EQ] = ACTIONS(6752), + [anon_sym_LT_EQ] = ACTIONS(6752), + [anon_sym_LT] = ACTIONS(6752), + [anon_sym_LT_LT] = ACTIONS(6752), + [anon_sym_GT_GT] = ACTIONS(6752), + [anon_sym___extension__] = ACTIONS(6679), + [anon_sym___attribute__] = ACTIONS(6754), + [anon_sym___attribute] = ACTIONS(6752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), + [anon_sym_LBRACK] = ACTIONS(6752), + [anon_sym_EQ] = ACTIONS(6752), + [anon_sym_const] = ACTIONS(6687), + [anon_sym_constexpr] = ACTIONS(6679), + [anon_sym_volatile] = ACTIONS(6679), + [anon_sym_restrict] = ACTIONS(6679), + [anon_sym___restrict__] = ACTIONS(6679), + [anon_sym__Atomic] = ACTIONS(6679), + [anon_sym__Noreturn] = ACTIONS(6679), + [anon_sym_noreturn] = ACTIONS(6679), + [anon_sym__Nonnull] = ACTIONS(6679), + [anon_sym_mutable] = ACTIONS(6679), + [anon_sym_constinit] = ACTIONS(6679), + [anon_sym_consteval] = ACTIONS(6679), + [anon_sym_alignas] = ACTIONS(6689), + [anon_sym__Alignas] = ACTIONS(6689), + [anon_sym_QMARK] = ACTIONS(6754), + [anon_sym_STAR_EQ] = ACTIONS(6754), + [anon_sym_SLASH_EQ] = ACTIONS(6754), + [anon_sym_PERCENT_EQ] = ACTIONS(6754), + [anon_sym_PLUS_EQ] = ACTIONS(6754), + [anon_sym_DASH_EQ] = ACTIONS(6754), + [anon_sym_LT_LT_EQ] = ACTIONS(6754), + [anon_sym_GT_GT_EQ] = ACTIONS(6752), + [anon_sym_AMP_EQ] = ACTIONS(6754), + [anon_sym_CARET_EQ] = ACTIONS(6754), + [anon_sym_PIPE_EQ] = ACTIONS(6754), + [anon_sym_and_eq] = ACTIONS(6754), + [anon_sym_or_eq] = ACTIONS(6754), + [anon_sym_xor_eq] = ACTIONS(6754), + [anon_sym_LT_EQ_GT] = ACTIONS(6754), + [anon_sym_or] = ACTIONS(6752), + [anon_sym_and] = ACTIONS(6752), + [anon_sym_bitor] = ACTIONS(6754), + [anon_sym_xor] = ACTIONS(6752), + [anon_sym_bitand] = ACTIONS(6754), + [anon_sym_not_eq] = ACTIONS(6754), + [anon_sym_DASH_DASH] = ACTIONS(6754), + [anon_sym_PLUS_PLUS] = ACTIONS(6754), + [anon_sym_asm] = ACTIONS(6754), + [anon_sym___asm__] = ACTIONS(6754), + [anon_sym___asm] = ACTIONS(6752), + [anon_sym_DOT] = ACTIONS(6752), + [anon_sym_DOT_STAR] = ACTIONS(6754), + [anon_sym_DASH_GT] = ACTIONS(6754), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6754), + [anon_sym_override] = ACTIONS(6754), + [anon_sym_GT2] = ACTIONS(6754), + [anon_sym_noexcept] = ACTIONS(6754), + [anon_sym_throw] = ACTIONS(6754), + [anon_sym_requires] = ACTIONS(6754), }, - [STATE(2190)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(9860), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_explicit_object_parameter_declaration] = STATE(9860), - [sym_optional_parameter_declaration] = STATE(9860), - [sym_variadic_parameter_declaration] = STATE(9860), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6185), - [anon_sym_RPAREN] = ACTIONS(6187), + [STATE(2146)] = { + [sym_decltype_auto] = STATE(2238), + [sym_identifier] = ACTIONS(7223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [aux_sym_preproc_if_token2] = ACTIONS(7225), + [aux_sym_preproc_else_token1] = ACTIONS(7225), + [aux_sym_preproc_elif_token1] = ACTIONS(7223), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym_SEMI] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym___attribute__] = ACTIONS(7223), + [anon_sym___attribute] = ACTIONS(7223), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7457), + [anon_sym_RBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7223), + [anon_sym__Alignas] = ACTIONS(7223), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7223), + [anon_sym_or_eq] = ACTIONS(7223), + [anon_sym_xor_eq] = ACTIONS(7223), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7223), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7223), + [anon_sym_not_eq] = ACTIONS(7223), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7229), + [anon_sym_decltype] = ACTIONS(6819), + [anon_sym_COLON_RBRACK] = ACTIONS(7225), + }, + [STATE(2147)] = { + [sym_identifier] = ACTIONS(7459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7457), + [anon_sym_COMMA] = ACTIONS(7457), + [anon_sym_RPAREN] = ACTIONS(7457), + [aux_sym_preproc_if_token2] = ACTIONS(7457), + [aux_sym_preproc_else_token1] = ACTIONS(7457), + [aux_sym_preproc_elif_token1] = ACTIONS(7459), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7457), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7457), + [anon_sym_LPAREN2] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7459), + [anon_sym_PLUS] = ACTIONS(7459), + [anon_sym_STAR] = ACTIONS(7459), + [anon_sym_SLASH] = ACTIONS(7459), + [anon_sym_PERCENT] = ACTIONS(7459), + [anon_sym_PIPE_PIPE] = ACTIONS(7457), + [anon_sym_AMP_AMP] = ACTIONS(7457), + [anon_sym_PIPE] = ACTIONS(7459), + [anon_sym_CARET] = ACTIONS(7459), + [anon_sym_AMP] = ACTIONS(7459), + [anon_sym_EQ_EQ] = ACTIONS(7457), + [anon_sym_BANG_EQ] = ACTIONS(7457), + [anon_sym_GT] = ACTIONS(7459), + [anon_sym_GT_EQ] = ACTIONS(7457), + [anon_sym_LT_EQ] = ACTIONS(7459), + [anon_sym_LT] = ACTIONS(7459), + [anon_sym_LT_LT] = ACTIONS(7459), + [anon_sym_GT_GT] = ACTIONS(7459), + [anon_sym_SEMI] = ACTIONS(7457), + [anon_sym___extension__] = ACTIONS(7459), + [anon_sym___attribute__] = ACTIONS(7459), + [anon_sym___attribute] = ACTIONS(7459), + [anon_sym_COLON] = ACTIONS(7459), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7457), + [anon_sym_LBRACE] = ACTIONS(7457), + [anon_sym_RBRACE] = ACTIONS(7457), + [anon_sym_LBRACK] = ACTIONS(7457), + [anon_sym_EQ] = ACTIONS(7459), + [anon_sym_const] = ACTIONS(7459), + [anon_sym_constexpr] = ACTIONS(7459), + [anon_sym_volatile] = ACTIONS(7459), + [anon_sym_restrict] = ACTIONS(7459), + [anon_sym___restrict__] = ACTIONS(7459), + [anon_sym__Atomic] = ACTIONS(7459), + [anon_sym__Noreturn] = ACTIONS(7459), + [anon_sym_noreturn] = ACTIONS(7459), + [anon_sym__Nonnull] = ACTIONS(7459), + [anon_sym_mutable] = ACTIONS(7459), + [anon_sym_constinit] = ACTIONS(7459), + [anon_sym_consteval] = ACTIONS(7459), + [anon_sym_alignas] = ACTIONS(7459), + [anon_sym__Alignas] = ACTIONS(7459), + [anon_sym_QMARK] = ACTIONS(7457), + [anon_sym_STAR_EQ] = ACTIONS(7457), + [anon_sym_SLASH_EQ] = ACTIONS(7457), + [anon_sym_PERCENT_EQ] = ACTIONS(7457), + [anon_sym_PLUS_EQ] = ACTIONS(7457), + [anon_sym_DASH_EQ] = ACTIONS(7457), + [anon_sym_LT_LT_EQ] = ACTIONS(7457), + [anon_sym_GT_GT_EQ] = ACTIONS(7457), + [anon_sym_AMP_EQ] = ACTIONS(7457), + [anon_sym_CARET_EQ] = ACTIONS(7457), + [anon_sym_PIPE_EQ] = ACTIONS(7457), + [anon_sym_and_eq] = ACTIONS(7459), + [anon_sym_or_eq] = ACTIONS(7459), + [anon_sym_xor_eq] = ACTIONS(7459), + [anon_sym_LT_EQ_GT] = ACTIONS(7457), + [anon_sym_or] = ACTIONS(7459), + [anon_sym_and] = ACTIONS(7459), + [anon_sym_bitor] = ACTIONS(7459), + [anon_sym_xor] = ACTIONS(7459), + [anon_sym_bitand] = ACTIONS(7459), + [anon_sym_not_eq] = ACTIONS(7459), + [anon_sym_DASH_DASH] = ACTIONS(7457), + [anon_sym_PLUS_PLUS] = ACTIONS(7457), + [anon_sym_DOT] = ACTIONS(7459), + [anon_sym_DOT_STAR] = ACTIONS(7457), + [anon_sym_DASH_GT] = ACTIONS(7457), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7459), + [anon_sym_override] = ACTIONS(7459), + [anon_sym_requires] = ACTIONS(7459), + [anon_sym_COLON_RBRACK] = ACTIONS(7457), + }, + [STATE(2148)] = { + [sym_template_argument_list] = STATE(3735), + [aux_sym_sized_type_specifier_repeat1] = STATE(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7359), + [anon_sym_COMMA] = ACTIONS(7359), + [anon_sym_RPAREN] = ACTIONS(7359), + [anon_sym_LPAREN2] = ACTIONS(7359), + [anon_sym_DASH] = ACTIONS(7357), + [anon_sym_PLUS] = ACTIONS(7357), + [anon_sym_STAR] = ACTIONS(7357), + [anon_sym_SLASH] = ACTIONS(7357), + [anon_sym_PERCENT] = ACTIONS(7357), + [anon_sym_PIPE_PIPE] = ACTIONS(7359), + [anon_sym_AMP_AMP] = ACTIONS(7359), + [anon_sym_PIPE] = ACTIONS(7357), + [anon_sym_CARET] = ACTIONS(7357), + [anon_sym_AMP] = ACTIONS(7357), + [anon_sym_EQ_EQ] = ACTIONS(7359), + [anon_sym_BANG_EQ] = ACTIONS(7359), + [anon_sym_GT] = ACTIONS(7357), + [anon_sym_GT_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ] = ACTIONS(7357), + [anon_sym_LT] = ACTIONS(7357), + [anon_sym_LT_LT] = ACTIONS(7357), + [anon_sym_GT_GT] = ACTIONS(7357), + [anon_sym_SEMI] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7357), + [anon_sym_COLON] = ACTIONS(7357), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7359), + [anon_sym_LBRACE] = ACTIONS(7359), + [anon_sym_RBRACE] = ACTIONS(7359), + [anon_sym_signed] = ACTIONS(6789), + [anon_sym_unsigned] = ACTIONS(6789), + [anon_sym_long] = ACTIONS(6789), + [anon_sym_short] = ACTIONS(6789), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7357), + [anon_sym_const] = ACTIONS(7357), + [anon_sym_constexpr] = ACTIONS(7359), + [anon_sym_volatile] = ACTIONS(7359), + [anon_sym_restrict] = ACTIONS(7359), + [anon_sym___restrict__] = ACTIONS(7359), + [anon_sym__Atomic] = ACTIONS(7359), + [anon_sym__Noreturn] = ACTIONS(7359), + [anon_sym_noreturn] = ACTIONS(7359), + [anon_sym__Nonnull] = ACTIONS(7359), + [anon_sym_mutable] = ACTIONS(7359), + [anon_sym_constinit] = ACTIONS(7359), + [anon_sym_consteval] = ACTIONS(7359), + [anon_sym_alignas] = ACTIONS(7359), + [anon_sym__Alignas] = ACTIONS(7359), + [anon_sym_QMARK] = ACTIONS(7359), + [anon_sym_STAR_EQ] = ACTIONS(7359), + [anon_sym_SLASH_EQ] = ACTIONS(7359), + [anon_sym_PERCENT_EQ] = ACTIONS(7359), + [anon_sym_PLUS_EQ] = ACTIONS(7359), + [anon_sym_DASH_EQ] = ACTIONS(7359), + [anon_sym_LT_LT_EQ] = ACTIONS(7359), + [anon_sym_GT_GT_EQ] = ACTIONS(7359), + [anon_sym_AMP_EQ] = ACTIONS(7359), + [anon_sym_CARET_EQ] = ACTIONS(7359), + [anon_sym_PIPE_EQ] = ACTIONS(7359), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7359), + [anon_sym_or] = ACTIONS(7357), + [anon_sym_and] = ACTIONS(7357), + [anon_sym_bitor] = ACTIONS(7359), + [anon_sym_xor] = ACTIONS(7357), + [anon_sym_bitand] = ACTIONS(7359), + [anon_sym_not_eq] = ACTIONS(7359), + [anon_sym_DASH_DASH] = ACTIONS(7359), + [anon_sym_PLUS_PLUS] = ACTIONS(7359), + [anon_sym_DOT] = ACTIONS(7357), + [anon_sym_DOT_STAR] = ACTIONS(7359), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_COLON_RBRACK] = ACTIONS(7359), + }, + [STATE(2149)] = { + [sym_function_definition] = STATE(404), + [sym_declaration] = STATE(404), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6411), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_call_modifier] = STATE(2705), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(11244), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(5630), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(5631), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(6019), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7405), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -318240,63 +327019,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(5313), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7461), + [anon_sym_struct] = ACTIONS(7463), + [anon_sym_union] = ACTIONS(7465), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - [sym_this] = ACTIONS(5315), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2191)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(9832), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_explicit_object_parameter_declaration] = STATE(9832), - [sym_optional_parameter_declaration] = STATE(9832), - [sym_variadic_parameter_declaration] = STATE(9832), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6197), - [anon_sym_RPAREN] = ACTIONS(6199), + [STATE(2150)] = { + [sym_function_definition] = STATE(412), + [sym_declaration] = STATE(412), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6411), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_call_modifier] = STATE(2705), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(11550), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(5630), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(5631), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(6019), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7405), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -318323,230 +327105,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(5313), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7467), + [anon_sym_struct] = ACTIONS(7469), + [anon_sym_union] = ACTIONS(7471), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - [sym_this] = ACTIONS(5315), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2192)] = { - [sym__abstract_declarator] = STATE(4471), - [sym_abstract_parenthesized_declarator] = STATE(4672), - [sym_abstract_pointer_declarator] = STATE(4672), - [sym_abstract_function_declarator] = STATE(4672), - [sym_abstract_array_declarator] = STATE(4672), - [sym_type_qualifier] = STATE(2163), - [sym_alignas_qualifier] = STATE(2278), - [sym_parameter_list] = STATE(1867), - [sym_abstract_reference_declarator] = STATE(4672), - [sym__function_declarator_seq] = STATE(4681), - [aux_sym__type_definition_type_repeat1] = STATE(2163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_RPAREN] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6648), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6650), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(6652), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(6654), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym___extension__] = ACTIONS(6656), - [anon_sym_LBRACK] = ACTIONS(6664), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6666), - [anon_sym_constexpr] = ACTIONS(6656), - [anon_sym_volatile] = ACTIONS(6656), - [anon_sym_restrict] = ACTIONS(6656), - [anon_sym___restrict__] = ACTIONS(6656), - [anon_sym__Atomic] = ACTIONS(6656), - [anon_sym__Noreturn] = ACTIONS(6656), - [anon_sym_noreturn] = ACTIONS(6656), - [anon_sym__Nonnull] = ACTIONS(6656), - [anon_sym_mutable] = ACTIONS(6656), - [anon_sym_constinit] = ACTIONS(6656), - [anon_sym_consteval] = ACTIONS(6656), - [anon_sym_alignas] = ACTIONS(6668), - [anon_sym__Alignas] = ACTIONS(6668), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6497), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_and_eq] = ACTIONS(6497), - [anon_sym_or_eq] = ACTIONS(6497), - [anon_sym_xor_eq] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6495), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6497), - [anon_sym_override] = ACTIONS(6497), - [anon_sym_requires] = ACTIONS(6497), - [anon_sym_DASH_GT_STAR] = ACTIONS(6497), - }, - [STATE(2193)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_exception_specification] = STATE(2482), - [sym__function_attributes_end] = STATE(3790), - [sym__function_postfix] = STATE(3513), - [sym_trailing_return_type] = STATE(2911), - [sym_noexcept] = STATE(2482), - [sym_throw_specifier] = STATE(2482), - [sym_requires_clause] = STATE(3513), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym_SEMI] = ACTIONS(7544), - [anon_sym___attribute__] = ACTIONS(6150), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_COLON] = ACTIONS(7546), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), - [anon_sym_RBRACE] = ACTIONS(7544), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7554), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6181), - [anon_sym_override] = ACTIONS(6181), - [anon_sym_noexcept] = ACTIONS(6162), - [anon_sym_throw] = ACTIONS(6164), - [anon_sym_requires] = ACTIONS(6183), - [anon_sym_COLON_RBRACK] = ACTIONS(7544), + [STATE(2151)] = { + [sym_identifier] = ACTIONS(7473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7475), + [anon_sym_COMMA] = ACTIONS(7475), + [anon_sym_RPAREN] = ACTIONS(7475), + [aux_sym_preproc_if_token2] = ACTIONS(7475), + [aux_sym_preproc_else_token1] = ACTIONS(7475), + [aux_sym_preproc_elif_token1] = ACTIONS(7473), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7475), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7475), + [anon_sym_LPAREN2] = ACTIONS(7475), + [anon_sym_DASH] = ACTIONS(7473), + [anon_sym_PLUS] = ACTIONS(7473), + [anon_sym_STAR] = ACTIONS(7473), + [anon_sym_SLASH] = ACTIONS(7473), + [anon_sym_PERCENT] = ACTIONS(7473), + [anon_sym_PIPE_PIPE] = ACTIONS(7475), + [anon_sym_AMP_AMP] = ACTIONS(7475), + [anon_sym_PIPE] = ACTIONS(7473), + [anon_sym_CARET] = ACTIONS(7473), + [anon_sym_AMP] = ACTIONS(7473), + [anon_sym_EQ_EQ] = ACTIONS(7475), + [anon_sym_BANG_EQ] = ACTIONS(7475), + [anon_sym_GT] = ACTIONS(7473), + [anon_sym_GT_EQ] = ACTIONS(7475), + [anon_sym_LT_EQ] = ACTIONS(7473), + [anon_sym_LT] = ACTIONS(7473), + [anon_sym_LT_LT] = ACTIONS(7473), + [anon_sym_GT_GT] = ACTIONS(7473), + [anon_sym_SEMI] = ACTIONS(7475), + [anon_sym___extension__] = ACTIONS(7473), + [anon_sym___attribute__] = ACTIONS(7473), + [anon_sym___attribute] = ACTIONS(7473), + [anon_sym_COLON] = ACTIONS(7473), + [anon_sym_COLON_COLON] = ACTIONS(7475), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7475), + [anon_sym_LBRACE] = ACTIONS(7475), + [anon_sym_RBRACE] = ACTIONS(7475), + [anon_sym_LBRACK] = ACTIONS(7475), + [anon_sym_EQ] = ACTIONS(7473), + [anon_sym_const] = ACTIONS(7473), + [anon_sym_constexpr] = ACTIONS(7473), + [anon_sym_volatile] = ACTIONS(7473), + [anon_sym_restrict] = ACTIONS(7473), + [anon_sym___restrict__] = ACTIONS(7473), + [anon_sym__Atomic] = ACTIONS(7473), + [anon_sym__Noreturn] = ACTIONS(7473), + [anon_sym_noreturn] = ACTIONS(7473), + [anon_sym__Nonnull] = ACTIONS(7473), + [anon_sym_mutable] = ACTIONS(7473), + [anon_sym_constinit] = ACTIONS(7473), + [anon_sym_consteval] = ACTIONS(7473), + [anon_sym_alignas] = ACTIONS(7473), + [anon_sym__Alignas] = ACTIONS(7473), + [anon_sym_QMARK] = ACTIONS(7475), + [anon_sym_STAR_EQ] = ACTIONS(7475), + [anon_sym_SLASH_EQ] = ACTIONS(7475), + [anon_sym_PERCENT_EQ] = ACTIONS(7475), + [anon_sym_PLUS_EQ] = ACTIONS(7475), + [anon_sym_DASH_EQ] = ACTIONS(7475), + [anon_sym_LT_LT_EQ] = ACTIONS(7475), + [anon_sym_GT_GT_EQ] = ACTIONS(7475), + [anon_sym_AMP_EQ] = ACTIONS(7475), + [anon_sym_CARET_EQ] = ACTIONS(7475), + [anon_sym_PIPE_EQ] = ACTIONS(7475), + [anon_sym_and_eq] = ACTIONS(7473), + [anon_sym_or_eq] = ACTIONS(7473), + [anon_sym_xor_eq] = ACTIONS(7473), + [anon_sym_LT_EQ_GT] = ACTIONS(7475), + [anon_sym_or] = ACTIONS(7473), + [anon_sym_and] = ACTIONS(7473), + [anon_sym_bitor] = ACTIONS(7473), + [anon_sym_xor] = ACTIONS(7473), + [anon_sym_bitand] = ACTIONS(7473), + [anon_sym_not_eq] = ACTIONS(7473), + [anon_sym_DASH_DASH] = ACTIONS(7475), + [anon_sym_PLUS_PLUS] = ACTIONS(7475), + [anon_sym_DOT] = ACTIONS(7473), + [anon_sym_DOT_STAR] = ACTIONS(7475), + [anon_sym_DASH_GT] = ACTIONS(7475), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7473), + [anon_sym_override] = ACTIONS(7473), + [anon_sym_requires] = ACTIONS(7473), + [anon_sym_COLON_RBRACK] = ACTIONS(7475), }, - [STATE(2194)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5212), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(10321), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_type_parameter_declaration] = STATE(10321), - [sym_variadic_type_parameter_declaration] = STATE(10321), - [sym_optional_type_parameter_declaration] = STATE(10321), - [sym_template_template_parameter_declaration] = STATE(10321), - [sym_optional_parameter_declaration] = STATE(10321), - [sym_variadic_parameter_declaration] = STATE(10321), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), + [STATE(2152)] = { + [sym_function_definition] = STATE(2789), + [sym_declaration] = STATE(2789), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6415), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_call_modifier] = STATE(2710), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(11124), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(5630), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(5631), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(6019), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7405), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -318573,145 +327277,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(7588), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(7590), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7477), + [anon_sym_struct] = ACTIONS(7479), + [anon_sym_union] = ACTIONS(7481), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(7592), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2195)] = { - [sym_type_qualifier] = STATE(2195), - [sym_alignas_qualifier] = STATE(2300), - [aux_sym__type_definition_type_repeat1] = STATE(2195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_RPAREN] = ACTIONS(6527), - [anon_sym_LPAREN2] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6525), - [anon_sym_PLUS] = ACTIONS(6525), - [anon_sym_STAR] = ACTIONS(6525), - [anon_sym_SLASH] = ACTIONS(6525), - [anon_sym_PERCENT] = ACTIONS(6525), - [anon_sym_PIPE_PIPE] = ACTIONS(6527), - [anon_sym_AMP_AMP] = ACTIONS(6527), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_CARET] = ACTIONS(6525), - [anon_sym_AMP] = ACTIONS(6525), - [anon_sym_EQ_EQ] = ACTIONS(6527), - [anon_sym_BANG_EQ] = ACTIONS(6527), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6527), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_LT_LT] = ACTIONS(6525), - [anon_sym_GT_GT] = ACTIONS(6525), - [anon_sym___extension__] = ACTIONS(7612), - [anon_sym___attribute__] = ACTIONS(6527), - [anon_sym___attribute] = ACTIONS(6525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6527), - [anon_sym_LBRACK] = ACTIONS(6525), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_const] = ACTIONS(7615), - [anon_sym_constexpr] = ACTIONS(7612), - [anon_sym_volatile] = ACTIONS(7612), - [anon_sym_restrict] = ACTIONS(7612), - [anon_sym___restrict__] = ACTIONS(7612), - [anon_sym__Atomic] = ACTIONS(7612), - [anon_sym__Noreturn] = ACTIONS(7612), - [anon_sym_noreturn] = ACTIONS(7612), - [anon_sym__Nonnull] = ACTIONS(7612), - [anon_sym_mutable] = ACTIONS(7612), - [anon_sym_constinit] = ACTIONS(7612), - [anon_sym_consteval] = ACTIONS(7612), - [anon_sym_alignas] = ACTIONS(7618), - [anon_sym__Alignas] = ACTIONS(7618), - [anon_sym_QMARK] = ACTIONS(6527), - [anon_sym_STAR_EQ] = ACTIONS(6527), - [anon_sym_SLASH_EQ] = ACTIONS(6527), - [anon_sym_PERCENT_EQ] = ACTIONS(6527), - [anon_sym_PLUS_EQ] = ACTIONS(6527), - [anon_sym_DASH_EQ] = ACTIONS(6527), - [anon_sym_LT_LT_EQ] = ACTIONS(6527), - [anon_sym_GT_GT_EQ] = ACTIONS(6527), - [anon_sym_AMP_EQ] = ACTIONS(6527), - [anon_sym_CARET_EQ] = ACTIONS(6527), - [anon_sym_PIPE_EQ] = ACTIONS(6527), - [anon_sym_and_eq] = ACTIONS(6527), - [anon_sym_or_eq] = ACTIONS(6527), - [anon_sym_xor_eq] = ACTIONS(6527), - [anon_sym_LT_EQ_GT] = ACTIONS(6527), - [anon_sym_or] = ACTIONS(6525), - [anon_sym_and] = ACTIONS(6525), - [anon_sym_bitor] = ACTIONS(6527), - [anon_sym_xor] = ACTIONS(6525), - [anon_sym_bitand] = ACTIONS(6527), - [anon_sym_not_eq] = ACTIONS(6527), - [anon_sym_DASH_DASH] = ACTIONS(6527), - [anon_sym_PLUS_PLUS] = ACTIONS(6527), - [anon_sym_asm] = ACTIONS(6527), - [anon_sym___asm__] = ACTIONS(6527), - [anon_sym___asm] = ACTIONS(6525), - [anon_sym_DOT] = ACTIONS(6525), - [anon_sym_DOT_STAR] = ACTIONS(6527), - [anon_sym_DASH_GT] = ACTIONS(6525), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6527), - [anon_sym_override] = ACTIONS(6527), - [anon_sym_noexcept] = ACTIONS(6527), - [anon_sym_throw] = ACTIONS(6527), - [anon_sym_requires] = ACTIONS(6527), - [anon_sym_DASH_GT_STAR] = ACTIONS(6527), + [STATE(2153)] = { + [sym_type_qualifier] = STATE(2155), + [sym_alignas_qualifier] = STATE(2047), + [aux_sym__type_definition_type_repeat1] = STATE(2155), + [aux_sym_sized_type_specifier_repeat1] = STATE(2300), + [sym_identifier] = ACTIONS(7247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), + [anon_sym_COMMA] = ACTIONS(7249), + [anon_sym_RPAREN] = ACTIONS(7249), + [anon_sym_LPAREN2] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7251), + [anon_sym_PLUS] = ACTIONS(7251), + [anon_sym_STAR] = ACTIONS(7251), + [anon_sym_SLASH] = ACTIONS(7251), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7249), + [anon_sym_PIPE] = ACTIONS(7251), + [anon_sym_CARET] = ACTIONS(7251), + [anon_sym_AMP] = ACTIONS(7251), + [anon_sym_EQ_EQ] = ACTIONS(7249), + [anon_sym_BANG_EQ] = ACTIONS(7249), + [anon_sym_GT] = ACTIONS(7251), + [anon_sym_GT_EQ] = ACTIONS(7249), + [anon_sym_LT_EQ] = ACTIONS(7251), + [anon_sym_LT] = ACTIONS(7251), + [anon_sym_LT_LT] = ACTIONS(7251), + [anon_sym_GT_GT] = ACTIONS(7251), + [anon_sym_SEMI] = ACTIONS(7249), + [anon_sym___extension__] = ACTIONS(6855), + [anon_sym___attribute__] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7251), + [anon_sym_COLON] = ACTIONS(7251), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7249), + [anon_sym_LBRACE] = ACTIONS(7249), + [anon_sym_RBRACE] = ACTIONS(7249), + [anon_sym_signed] = ACTIONS(7483), + [anon_sym_unsigned] = ACTIONS(7483), + [anon_sym_long] = ACTIONS(7483), + [anon_sym_short] = ACTIONS(7483), + [anon_sym_LBRACK] = ACTIONS(7249), + [anon_sym_EQ] = ACTIONS(7251), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6855), + [anon_sym_volatile] = ACTIONS(6855), + [anon_sym_restrict] = ACTIONS(6855), + [anon_sym___restrict__] = ACTIONS(6855), + [anon_sym__Atomic] = ACTIONS(6855), + [anon_sym__Noreturn] = ACTIONS(6855), + [anon_sym_noreturn] = ACTIONS(6855), + [anon_sym__Nonnull] = ACTIONS(6855), + [anon_sym_mutable] = ACTIONS(6855), + [anon_sym_constinit] = ACTIONS(6855), + [anon_sym_consteval] = ACTIONS(6855), + [anon_sym_alignas] = ACTIONS(7485), + [anon_sym__Alignas] = ACTIONS(7485), + [sym_primitive_type] = ACTIONS(7261), + [anon_sym_QMARK] = ACTIONS(7249), + [anon_sym_STAR_EQ] = ACTIONS(7249), + [anon_sym_SLASH_EQ] = ACTIONS(7249), + [anon_sym_PERCENT_EQ] = ACTIONS(7249), + [anon_sym_PLUS_EQ] = ACTIONS(7249), + [anon_sym_DASH_EQ] = ACTIONS(7249), + [anon_sym_LT_LT_EQ] = ACTIONS(7249), + [anon_sym_GT_GT_EQ] = ACTIONS(7249), + [anon_sym_AMP_EQ] = ACTIONS(7249), + [anon_sym_CARET_EQ] = ACTIONS(7249), + [anon_sym_PIPE_EQ] = ACTIONS(7249), + [anon_sym_and_eq] = ACTIONS(7251), + [anon_sym_or_eq] = ACTIONS(7251), + [anon_sym_xor_eq] = ACTIONS(7251), + [anon_sym_LT_EQ_GT] = ACTIONS(7249), + [anon_sym_or] = ACTIONS(7251), + [anon_sym_and] = ACTIONS(7251), + [anon_sym_bitor] = ACTIONS(7251), + [anon_sym_xor] = ACTIONS(7251), + [anon_sym_bitand] = ACTIONS(7251), + [anon_sym_not_eq] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7249), + [anon_sym_PLUS_PLUS] = ACTIONS(7249), + [anon_sym_DOT] = ACTIONS(7251), + [anon_sym_DOT_STAR] = ACTIONS(7249), + [anon_sym_DASH_GT] = ACTIONS(7249), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7249), }, - [STATE(2196)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(9957), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_explicit_object_parameter_declaration] = STATE(9957), - [sym_optional_parameter_declaration] = STATE(9957), - [sym_variadic_parameter_declaration] = STATE(9957), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6189), - [anon_sym_RPAREN] = ACTIONS(6191), + [STATE(2154)] = { + [sym_function_definition] = STATE(2806), + [sym_declaration] = STATE(2806), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6415), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_call_modifier] = STATE(2710), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(11415), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(5630), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(5631), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(6019), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7405), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -318738,63 +327449,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(5313), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7487), + [anon_sym_struct] = ACTIONS(7489), + [anon_sym_union] = ACTIONS(7491), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - [sym_this] = ACTIONS(5315), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2197)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(9910), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_explicit_object_parameter_declaration] = STATE(9910), - [sym_optional_parameter_declaration] = STATE(9910), - [sym_variadic_parameter_declaration] = STATE(9910), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6173), - [anon_sym_RPAREN] = ACTIONS(6175), + [STATE(2155)] = { + [sym_type_qualifier] = STATE(2006), + [sym_alignas_qualifier] = STATE(2047), + [aux_sym__type_definition_type_repeat1] = STATE(2006), + [aux_sym_sized_type_specifier_repeat1] = STATE(2273), + [sym_identifier] = ACTIONS(7203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), + [anon_sym_COMMA] = ACTIONS(7205), + [anon_sym_RPAREN] = ACTIONS(7205), + [anon_sym_LPAREN2] = ACTIONS(7205), + [anon_sym_DASH] = ACTIONS(7207), + [anon_sym_PLUS] = ACTIONS(7207), + [anon_sym_STAR] = ACTIONS(7207), + [anon_sym_SLASH] = ACTIONS(7207), + [anon_sym_PERCENT] = ACTIONS(7207), + [anon_sym_PIPE_PIPE] = ACTIONS(7205), + [anon_sym_AMP_AMP] = ACTIONS(7205), + [anon_sym_PIPE] = ACTIONS(7207), + [anon_sym_CARET] = ACTIONS(7207), + [anon_sym_AMP] = ACTIONS(7207), + [anon_sym_EQ_EQ] = ACTIONS(7205), + [anon_sym_BANG_EQ] = ACTIONS(7205), + [anon_sym_GT] = ACTIONS(7207), + [anon_sym_GT_EQ] = ACTIONS(7205), + [anon_sym_LT_EQ] = ACTIONS(7207), + [anon_sym_LT] = ACTIONS(7207), + [anon_sym_LT_LT] = ACTIONS(7207), + [anon_sym_GT_GT] = ACTIONS(7207), + [anon_sym_SEMI] = ACTIONS(7205), + [anon_sym___extension__] = ACTIONS(6855), + [anon_sym___attribute__] = ACTIONS(7207), + [anon_sym___attribute] = ACTIONS(7207), + [anon_sym_COLON] = ACTIONS(7207), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7205), + [anon_sym_LBRACE] = ACTIONS(7205), + [anon_sym_RBRACE] = ACTIONS(7205), + [anon_sym_signed] = ACTIONS(7212), + [anon_sym_unsigned] = ACTIONS(7212), + [anon_sym_long] = ACTIONS(7212), + [anon_sym_short] = ACTIONS(7212), + [anon_sym_LBRACK] = ACTIONS(7205), + [anon_sym_EQ] = ACTIONS(7207), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6855), + [anon_sym_volatile] = ACTIONS(6855), + [anon_sym_restrict] = ACTIONS(6855), + [anon_sym___restrict__] = ACTIONS(6855), + [anon_sym__Atomic] = ACTIONS(6855), + [anon_sym__Noreturn] = ACTIONS(6855), + [anon_sym_noreturn] = ACTIONS(6855), + [anon_sym__Nonnull] = ACTIONS(6855), + [anon_sym_mutable] = ACTIONS(6855), + [anon_sym_constinit] = ACTIONS(6855), + [anon_sym_consteval] = ACTIONS(6855), + [anon_sym_alignas] = ACTIONS(7485), + [anon_sym__Alignas] = ACTIONS(7485), + [sym_primitive_type] = ACTIONS(7217), + [anon_sym_QMARK] = ACTIONS(7205), + [anon_sym_STAR_EQ] = ACTIONS(7205), + [anon_sym_SLASH_EQ] = ACTIONS(7205), + [anon_sym_PERCENT_EQ] = ACTIONS(7205), + [anon_sym_PLUS_EQ] = ACTIONS(7205), + [anon_sym_DASH_EQ] = ACTIONS(7205), + [anon_sym_LT_LT_EQ] = ACTIONS(7205), + [anon_sym_GT_GT_EQ] = ACTIONS(7205), + [anon_sym_AMP_EQ] = ACTIONS(7205), + [anon_sym_CARET_EQ] = ACTIONS(7205), + [anon_sym_PIPE_EQ] = ACTIONS(7205), + [anon_sym_and_eq] = ACTIONS(7207), + [anon_sym_or_eq] = ACTIONS(7207), + [anon_sym_xor_eq] = ACTIONS(7207), + [anon_sym_LT_EQ_GT] = ACTIONS(7205), + [anon_sym_or] = ACTIONS(7207), + [anon_sym_and] = ACTIONS(7207), + [anon_sym_bitor] = ACTIONS(7207), + [anon_sym_xor] = ACTIONS(7207), + [anon_sym_bitand] = ACTIONS(7207), + [anon_sym_not_eq] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7205), + [anon_sym_PLUS_PLUS] = ACTIONS(7205), + [anon_sym_DOT] = ACTIONS(7207), + [anon_sym_DOT_STAR] = ACTIONS(7205), + [anon_sym_DASH_GT] = ACTIONS(7205), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7205), + }, + [STATE(2156)] = { + [sym_function_definition] = STATE(738), + [sym_declaration] = STATE(738), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6413), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_call_modifier] = STATE(2707), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(11158), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(5630), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(5631), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(6019), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7405), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -318821,395 +327621,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(5313), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7493), + [anon_sym_struct] = ACTIONS(7495), + [anon_sym_union] = ACTIONS(7497), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - [sym_this] = ACTIONS(5315), - }, - [STATE(2198)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2123), - [sym_identifier] = ACTIONS(6798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [aux_sym_preproc_if_token2] = ACTIONS(6800), - [aux_sym_preproc_else_token1] = ACTIONS(6800), - [aux_sym_preproc_elif_token1] = ACTIONS(6798), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6798), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_signed] = ACTIONS(7257), - [anon_sym_unsigned] = ACTIONS(7257), - [anon_sym_long] = ACTIONS(7257), - [anon_sym_short] = ACTIONS(7257), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_RBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6798), - [anon_sym_volatile] = ACTIONS(6798), - [anon_sym_restrict] = ACTIONS(6798), - [anon_sym___restrict__] = ACTIONS(6798), - [anon_sym__Atomic] = ACTIONS(6798), - [anon_sym__Noreturn] = ACTIONS(6798), - [anon_sym_noreturn] = ACTIONS(6798), - [anon_sym__Nonnull] = ACTIONS(6798), - [anon_sym_mutable] = ACTIONS(6798), - [anon_sym_constinit] = ACTIONS(6798), - [anon_sym_consteval] = ACTIONS(6798), - [anon_sym_alignas] = ACTIONS(6798), - [anon_sym__Alignas] = ACTIONS(6798), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6798), - [anon_sym_or_eq] = ACTIONS(6798), - [anon_sym_xor_eq] = ACTIONS(6798), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6798), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6798), - [anon_sym_not_eq] = ACTIONS(6798), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6798), - [anon_sym_override] = ACTIONS(6798), - [anon_sym_requires] = ACTIONS(6798), - }, - [STATE(2199)] = { - [sym_type_qualifier] = STATE(2199), - [sym_alignas_qualifier] = STATE(2312), - [aux_sym__type_definition_type_repeat1] = STATE(2199), - [sym_identifier] = ACTIONS(6525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_LPAREN2] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6525), - [anon_sym_PLUS] = ACTIONS(6525), - [anon_sym_STAR] = ACTIONS(6525), - [anon_sym_SLASH] = ACTIONS(6525), - [anon_sym_PERCENT] = ACTIONS(6525), - [anon_sym_PIPE_PIPE] = ACTIONS(6527), - [anon_sym_AMP_AMP] = ACTIONS(6527), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_CARET] = ACTIONS(6525), - [anon_sym_AMP] = ACTIONS(6525), - [anon_sym_EQ_EQ] = ACTIONS(6527), - [anon_sym_BANG_EQ] = ACTIONS(6527), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6527), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_LT_LT] = ACTIONS(6525), - [anon_sym_GT_GT] = ACTIONS(6525), - [anon_sym___extension__] = ACTIONS(7621), - [anon_sym___attribute__] = ACTIONS(6525), - [anon_sym___attribute] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6527), - [anon_sym_signed] = ACTIONS(6525), - [anon_sym_unsigned] = ACTIONS(6525), - [anon_sym_long] = ACTIONS(6525), - [anon_sym_short] = ACTIONS(6525), - [anon_sym_LBRACK] = ACTIONS(6527), - [anon_sym_RBRACK] = ACTIONS(6527), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_const] = ACTIONS(7621), - [anon_sym_constexpr] = ACTIONS(7621), - [anon_sym_volatile] = ACTIONS(7621), - [anon_sym_restrict] = ACTIONS(7621), - [anon_sym___restrict__] = ACTIONS(7621), - [anon_sym__Atomic] = ACTIONS(7621), - [anon_sym__Noreturn] = ACTIONS(7621), - [anon_sym_noreturn] = ACTIONS(7621), - [anon_sym__Nonnull] = ACTIONS(7621), - [anon_sym_mutable] = ACTIONS(7621), - [anon_sym_constinit] = ACTIONS(7621), - [anon_sym_consteval] = ACTIONS(7621), - [anon_sym_alignas] = ACTIONS(7624), - [anon_sym__Alignas] = ACTIONS(7624), - [sym_primitive_type] = ACTIONS(6525), - [anon_sym_QMARK] = ACTIONS(6527), - [anon_sym_STAR_EQ] = ACTIONS(6527), - [anon_sym_SLASH_EQ] = ACTIONS(6527), - [anon_sym_PERCENT_EQ] = ACTIONS(6527), - [anon_sym_PLUS_EQ] = ACTIONS(6527), - [anon_sym_DASH_EQ] = ACTIONS(6527), - [anon_sym_LT_LT_EQ] = ACTIONS(6527), - [anon_sym_GT_GT_EQ] = ACTIONS(6527), - [anon_sym_AMP_EQ] = ACTIONS(6527), - [anon_sym_CARET_EQ] = ACTIONS(6527), - [anon_sym_PIPE_EQ] = ACTIONS(6527), - [anon_sym_and_eq] = ACTIONS(6525), - [anon_sym_or_eq] = ACTIONS(6525), - [anon_sym_xor_eq] = ACTIONS(6525), - [anon_sym_LT_EQ_GT] = ACTIONS(6527), - [anon_sym_or] = ACTIONS(6525), - [anon_sym_and] = ACTIONS(6525), - [anon_sym_bitor] = ACTIONS(6525), - [anon_sym_xor] = ACTIONS(6525), - [anon_sym_bitand] = ACTIONS(6525), - [anon_sym_not_eq] = ACTIONS(6525), - [anon_sym_DASH_DASH] = ACTIONS(6527), - [anon_sym_PLUS_PLUS] = ACTIONS(6527), - [anon_sym_DOT] = ACTIONS(6525), - [anon_sym_DOT_STAR] = ACTIONS(6527), - [anon_sym_DASH_GT] = ACTIONS(6527), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6525), - [anon_sym_override] = ACTIONS(6525), - [anon_sym_requires] = ACTIONS(6525), - }, - [STATE(2200)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_exception_specification] = STATE(2492), - [sym__function_attributes_end] = STATE(3744), - [sym__function_postfix] = STATE(3497), - [sym_trailing_return_type] = STATE(2975), - [sym_noexcept] = STATE(2492), - [sym_throw_specifier] = STATE(2492), - [sym_requires_clause] = STATE(3497), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_RPAREN] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym_SEMI] = ACTIONS(7627), - [anon_sym___attribute__] = ACTIONS(6150), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_COLON] = ACTIONS(7629), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7627), - [anon_sym_RBRACE] = ACTIONS(7627), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7627), - [anon_sym_or_eq] = ACTIONS(7627), - [anon_sym_xor_eq] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(7631), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7634), - [anon_sym_override] = ACTIONS(7634), - [anon_sym_noexcept] = ACTIONS(6162), - [anon_sym_throw] = ACTIONS(6164), - [anon_sym_requires] = ACTIONS(7637), - [anon_sym_COLON_RBRACK] = ACTIONS(7627), - }, - [STATE(2201)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1931), - [sym_identifier] = ACTIONS(6627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), - [anon_sym_COMMA] = ACTIONS(7081), - [anon_sym_RPAREN] = ACTIONS(7081), - [anon_sym_LPAREN2] = ACTIONS(7081), - [anon_sym_DASH] = ACTIONS(7084), - [anon_sym_PLUS] = ACTIONS(7084), - [anon_sym_STAR] = ACTIONS(7084), - [anon_sym_SLASH] = ACTIONS(7084), - [anon_sym_PERCENT] = ACTIONS(7084), - [anon_sym_PIPE_PIPE] = ACTIONS(7081), - [anon_sym_AMP_AMP] = ACTIONS(7081), - [anon_sym_PIPE] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7084), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_EQ_EQ] = ACTIONS(7081), - [anon_sym_BANG_EQ] = ACTIONS(7081), - [anon_sym_GT] = ACTIONS(7084), - [anon_sym_GT_EQ] = ACTIONS(7081), - [anon_sym_LT_EQ] = ACTIONS(7084), - [anon_sym_LT] = ACTIONS(7084), - [anon_sym_LT_LT] = ACTIONS(7084), - [anon_sym_GT_GT] = ACTIONS(7084), - [anon_sym_SEMI] = ACTIONS(7081), - [anon_sym___extension__] = ACTIONS(6627), - [anon_sym___attribute__] = ACTIONS(7084), - [anon_sym___attribute] = ACTIONS(7084), - [anon_sym_COLON] = ACTIONS(7084), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7081), - [anon_sym_LBRACE] = ACTIONS(7081), - [anon_sym_RBRACE] = ACTIONS(7081), - [anon_sym_signed] = ACTIONS(6631), - [anon_sym_unsigned] = ACTIONS(6631), - [anon_sym_long] = ACTIONS(6631), - [anon_sym_short] = ACTIONS(6631), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_EQ] = ACTIONS(7084), - [anon_sym_const] = ACTIONS(6627), - [anon_sym_constexpr] = ACTIONS(6627), - [anon_sym_volatile] = ACTIONS(6627), - [anon_sym_restrict] = ACTIONS(6627), - [anon_sym___restrict__] = ACTIONS(6627), - [anon_sym__Atomic] = ACTIONS(6627), - [anon_sym__Noreturn] = ACTIONS(6627), - [anon_sym_noreturn] = ACTIONS(6627), - [anon_sym__Nonnull] = ACTIONS(6627), - [anon_sym_mutable] = ACTIONS(6627), - [anon_sym_constinit] = ACTIONS(6627), - [anon_sym_consteval] = ACTIONS(6627), - [anon_sym_alignas] = ACTIONS(6627), - [anon_sym__Alignas] = ACTIONS(6627), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(7081), - [anon_sym_STAR_EQ] = ACTIONS(7081), - [anon_sym_SLASH_EQ] = ACTIONS(7081), - [anon_sym_PERCENT_EQ] = ACTIONS(7081), - [anon_sym_PLUS_EQ] = ACTIONS(7081), - [anon_sym_DASH_EQ] = ACTIONS(7081), - [anon_sym_LT_LT_EQ] = ACTIONS(7081), - [anon_sym_GT_GT_EQ] = ACTIONS(7081), - [anon_sym_AMP_EQ] = ACTIONS(7081), - [anon_sym_CARET_EQ] = ACTIONS(7081), - [anon_sym_PIPE_EQ] = ACTIONS(7081), - [anon_sym_and_eq] = ACTIONS(7084), - [anon_sym_or_eq] = ACTIONS(7084), - [anon_sym_xor_eq] = ACTIONS(7084), - [anon_sym_LT_EQ_GT] = ACTIONS(7081), - [anon_sym_or] = ACTIONS(7084), - [anon_sym_and] = ACTIONS(7084), - [anon_sym_bitor] = ACTIONS(7084), - [anon_sym_xor] = ACTIONS(7084), - [anon_sym_bitand] = ACTIONS(7084), - [anon_sym_not_eq] = ACTIONS(7084), - [anon_sym_DASH_DASH] = ACTIONS(7081), - [anon_sym_PLUS_PLUS] = ACTIONS(7081), - [anon_sym_DOT] = ACTIONS(7084), - [anon_sym_DOT_STAR] = ACTIONS(7081), - [anon_sym_DASH_GT] = ACTIONS(7081), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7081), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2202)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(9630), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_explicit_object_parameter_declaration] = STATE(9630), - [sym_optional_parameter_declaration] = STATE(9630), - [sym_variadic_parameter_declaration] = STATE(9630), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6107), - [anon_sym_RPAREN] = ACTIONS(6109), + [STATE(2157)] = { + [sym_function_definition] = STATE(740), + [sym_declaration] = STATE(740), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6413), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_call_modifier] = STATE(2707), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(11250), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(5630), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(5631), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(6019), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7405), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -319236,727 +327707,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(5313), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7499), + [anon_sym_struct] = ACTIONS(7501), + [anon_sym_union] = ACTIONS(7503), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - [sym_this] = ACTIONS(5315), - }, - [STATE(2203)] = { - [sym_decltype_auto] = STATE(2957), - [sym_template_argument_list] = STATE(2405), - [aux_sym_sized_type_specifier_repeat1] = STATE(2305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5258), - [anon_sym_COMMA] = ACTIONS(5258), - [anon_sym_RPAREN] = ACTIONS(5258), - [anon_sym_LPAREN2] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5251), - [anon_sym_PLUS] = ACTIONS(5251), - [anon_sym_STAR] = ACTIONS(5251), - [anon_sym_SLASH] = ACTIONS(5251), - [anon_sym_PERCENT] = ACTIONS(5251), - [anon_sym_PIPE_PIPE] = ACTIONS(5258), - [anon_sym_AMP_AMP] = ACTIONS(5258), - [anon_sym_PIPE] = ACTIONS(5251), - [anon_sym_CARET] = ACTIONS(5251), - [anon_sym_AMP] = ACTIONS(5251), - [anon_sym_EQ_EQ] = ACTIONS(5258), - [anon_sym_BANG_EQ] = ACTIONS(5258), - [anon_sym_GT] = ACTIONS(5251), - [anon_sym_GT_EQ] = ACTIONS(5258), - [anon_sym_LT_EQ] = ACTIONS(5251), - [anon_sym_LT] = ACTIONS(7640), - [anon_sym_LT_LT] = ACTIONS(5251), - [anon_sym_GT_GT] = ACTIONS(5251), - [anon_sym___extension__] = ACTIONS(5258), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5258), - [anon_sym_signed] = ACTIONS(6570), - [anon_sym_unsigned] = ACTIONS(6570), - [anon_sym_long] = ACTIONS(6570), - [anon_sym_short] = ACTIONS(6570), - [anon_sym_LBRACK] = ACTIONS(5258), - [anon_sym_EQ] = ACTIONS(5251), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5258), - [anon_sym_volatile] = ACTIONS(5258), - [anon_sym_restrict] = ACTIONS(5258), - [anon_sym___restrict__] = ACTIONS(5258), - [anon_sym__Atomic] = ACTIONS(5258), - [anon_sym__Noreturn] = ACTIONS(5258), - [anon_sym_noreturn] = ACTIONS(5258), - [anon_sym__Nonnull] = ACTIONS(5258), - [anon_sym_mutable] = ACTIONS(5258), - [anon_sym_constinit] = ACTIONS(5258), - [anon_sym_consteval] = ACTIONS(5258), - [anon_sym_alignas] = ACTIONS(5258), - [anon_sym__Alignas] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5258), - [anon_sym_STAR_EQ] = ACTIONS(5258), - [anon_sym_SLASH_EQ] = ACTIONS(5258), - [anon_sym_PERCENT_EQ] = ACTIONS(5258), - [anon_sym_PLUS_EQ] = ACTIONS(5258), - [anon_sym_DASH_EQ] = ACTIONS(5258), - [anon_sym_LT_LT_EQ] = ACTIONS(5258), - [anon_sym_GT_GT_EQ] = ACTIONS(5258), - [anon_sym_AMP_EQ] = ACTIONS(5258), - [anon_sym_CARET_EQ] = ACTIONS(5258), - [anon_sym_PIPE_EQ] = ACTIONS(5258), - [anon_sym_and_eq] = ACTIONS(5258), - [anon_sym_or_eq] = ACTIONS(5258), - [anon_sym_xor_eq] = ACTIONS(5258), - [anon_sym_LT_EQ_GT] = ACTIONS(5258), - [anon_sym_or] = ACTIONS(5251), - [anon_sym_and] = ACTIONS(5251), - [anon_sym_bitor] = ACTIONS(5258), - [anon_sym_xor] = ACTIONS(5251), - [anon_sym_bitand] = ACTIONS(5258), - [anon_sym_not_eq] = ACTIONS(5258), - [anon_sym_DASH_DASH] = ACTIONS(5258), - [anon_sym_PLUS_PLUS] = ACTIONS(5258), - [anon_sym_DOT] = ACTIONS(5251), - [anon_sym_DOT_STAR] = ACTIONS(5258), - [anon_sym_DASH_GT] = ACTIONS(5251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6572), - [anon_sym_decltype] = ACTIONS(6574), - [anon_sym_final] = ACTIONS(5258), - [anon_sym_override] = ACTIONS(5258), - [anon_sym_requires] = ACTIONS(5258), - [anon_sym_DASH_GT_STAR] = ACTIONS(5258), - }, - [STATE(2204)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_exception_specification] = STATE(2477), - [sym__function_attributes_end] = STATE(3799), - [sym__function_postfix] = STATE(3497), - [sym_trailing_return_type] = STATE(2959), - [sym_noexcept] = STATE(2477), - [sym_throw_specifier] = STATE(2477), - [sym_requires_clause] = STATE(3497), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_RPAREN] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym_SEMI] = ACTIONS(7627), - [anon_sym___attribute__] = ACTIONS(6150), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_COLON] = ACTIONS(7629), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7627), - [anon_sym_RBRACE] = ACTIONS(7627), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7627), - [anon_sym_or_eq] = ACTIONS(7627), - [anon_sym_xor_eq] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(7631), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6181), - [anon_sym_override] = ACTIONS(6181), - [anon_sym_noexcept] = ACTIONS(6162), - [anon_sym_throw] = ACTIONS(6164), - [anon_sym_requires] = ACTIONS(6183), - [anon_sym_COLON_RBRACK] = ACTIONS(7627), - }, - [STATE(2205)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_exception_specification] = STATE(2465), - [sym__function_attributes_end] = STATE(3812), - [sym__function_postfix] = STATE(3513), - [sym_trailing_return_type] = STATE(2911), - [sym_noexcept] = STATE(2465), - [sym_throw_specifier] = STATE(2465), - [sym_requires_clause] = STATE(3513), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [sym_identifier] = ACTIONS(7546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [aux_sym_preproc_if_token2] = ACTIONS(7544), - [aux_sym_preproc_else_token1] = ACTIONS(7544), - [aux_sym_preproc_elif_token1] = ACTIONS(7546), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6123), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7546), - [anon_sym_or_eq] = ACTIONS(7546), - [anon_sym_xor_eq] = ACTIONS(7546), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7546), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7546), - [anon_sym_not_eq] = ACTIONS(7546), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6129), - [anon_sym___asm__] = ACTIONS(6129), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7579), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6134), - [anon_sym_override] = ACTIONS(6134), - [anon_sym_noexcept] = ACTIONS(6136), - [anon_sym_throw] = ACTIONS(6138), - [anon_sym_requires] = ACTIONS(6140), - }, - [STATE(2206)] = { - [sym_type_qualifier] = STATE(2195), - [sym_alignas_qualifier] = STATE(2300), - [aux_sym__type_definition_type_repeat1] = STATE(2195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), - [anon_sym_COMMA] = ACTIONS(6390), - [anon_sym_RPAREN] = ACTIONS(6390), - [anon_sym_LPAREN2] = ACTIONS(6390), - [anon_sym_DASH] = ACTIONS(6388), - [anon_sym_PLUS] = ACTIONS(6388), - [anon_sym_STAR] = ACTIONS(6388), - [anon_sym_SLASH] = ACTIONS(6388), - [anon_sym_PERCENT] = ACTIONS(6388), - [anon_sym_PIPE_PIPE] = ACTIONS(6390), - [anon_sym_AMP_AMP] = ACTIONS(6390), - [anon_sym_PIPE] = ACTIONS(6388), - [anon_sym_CARET] = ACTIONS(6388), - [anon_sym_AMP] = ACTIONS(6388), - [anon_sym_EQ_EQ] = ACTIONS(6390), - [anon_sym_BANG_EQ] = ACTIONS(6390), - [anon_sym_GT] = ACTIONS(6388), - [anon_sym_GT_EQ] = ACTIONS(6390), - [anon_sym_LT_EQ] = ACTIONS(6388), - [anon_sym_LT] = ACTIONS(6388), - [anon_sym_LT_LT] = ACTIONS(6388), - [anon_sym_GT_GT] = ACTIONS(6388), - [anon_sym___extension__] = ACTIONS(6280), - [anon_sym___attribute__] = ACTIONS(6390), - [anon_sym___attribute] = ACTIONS(6388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), - [anon_sym_LBRACK] = ACTIONS(6388), - [anon_sym_EQ] = ACTIONS(6388), - [anon_sym_const] = ACTIONS(6288), - [anon_sym_constexpr] = ACTIONS(6280), - [anon_sym_volatile] = ACTIONS(6280), - [anon_sym_restrict] = ACTIONS(6280), - [anon_sym___restrict__] = ACTIONS(6280), - [anon_sym__Atomic] = ACTIONS(6280), - [anon_sym__Noreturn] = ACTIONS(6280), - [anon_sym_noreturn] = ACTIONS(6280), - [anon_sym__Nonnull] = ACTIONS(6280), - [anon_sym_mutable] = ACTIONS(6280), - [anon_sym_constinit] = ACTIONS(6280), - [anon_sym_consteval] = ACTIONS(6280), - [anon_sym_alignas] = ACTIONS(6290), - [anon_sym__Alignas] = ACTIONS(6290), - [anon_sym_QMARK] = ACTIONS(6390), - [anon_sym_STAR_EQ] = ACTIONS(6390), - [anon_sym_SLASH_EQ] = ACTIONS(6390), - [anon_sym_PERCENT_EQ] = ACTIONS(6390), - [anon_sym_PLUS_EQ] = ACTIONS(6390), - [anon_sym_DASH_EQ] = ACTIONS(6390), - [anon_sym_LT_LT_EQ] = ACTIONS(6390), - [anon_sym_GT_GT_EQ] = ACTIONS(6390), - [anon_sym_AMP_EQ] = ACTIONS(6390), - [anon_sym_CARET_EQ] = ACTIONS(6390), - [anon_sym_PIPE_EQ] = ACTIONS(6390), - [anon_sym_and_eq] = ACTIONS(6390), - [anon_sym_or_eq] = ACTIONS(6390), - [anon_sym_xor_eq] = ACTIONS(6390), - [anon_sym_LT_EQ_GT] = ACTIONS(6390), - [anon_sym_or] = ACTIONS(6388), - [anon_sym_and] = ACTIONS(6388), - [anon_sym_bitor] = ACTIONS(6390), - [anon_sym_xor] = ACTIONS(6388), - [anon_sym_bitand] = ACTIONS(6390), - [anon_sym_not_eq] = ACTIONS(6390), - [anon_sym_DASH_DASH] = ACTIONS(6390), - [anon_sym_PLUS_PLUS] = ACTIONS(6390), - [anon_sym_asm] = ACTIONS(6390), - [anon_sym___asm__] = ACTIONS(6390), - [anon_sym___asm] = ACTIONS(6388), - [anon_sym_DOT] = ACTIONS(6388), - [anon_sym_DOT_STAR] = ACTIONS(6390), - [anon_sym_DASH_GT] = ACTIONS(6388), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6390), - [anon_sym_override] = ACTIONS(6390), - [anon_sym_noexcept] = ACTIONS(6390), - [anon_sym_throw] = ACTIONS(6390), - [anon_sym_requires] = ACTIONS(6390), - [anon_sym_DASH_GT_STAR] = ACTIONS(6390), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2207)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_exception_specification] = STATE(2466), - [sym__function_attributes_end] = STATE(3813), - [sym__function_postfix] = STATE(3497), - [sym_trailing_return_type] = STATE(2959), - [sym_noexcept] = STATE(2466), - [sym_throw_specifier] = STATE(2466), - [sym_requires_clause] = STATE(3497), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [sym_identifier] = ACTIONS(7629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [aux_sym_preproc_if_token2] = ACTIONS(7627), - [aux_sym_preproc_else_token1] = ACTIONS(7627), - [aux_sym_preproc_elif_token1] = ACTIONS(7629), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7627), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym___attribute__] = ACTIONS(6123), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7629), - [anon_sym_or_eq] = ACTIONS(7629), - [anon_sym_xor_eq] = ACTIONS(7629), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7629), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7629), - [anon_sym_not_eq] = ACTIONS(7629), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6129), - [anon_sym___asm__] = ACTIONS(6129), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(7642), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6134), - [anon_sym_override] = ACTIONS(6134), - [anon_sym_noexcept] = ACTIONS(6136), - [anon_sym_throw] = ACTIONS(6138), - [anon_sym_requires] = ACTIONS(6140), - }, - [STATE(2208)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_exception_specification] = STATE(2473), - [sym__function_attributes_end] = STATE(3831), - [sym__function_postfix] = STATE(3513), - [sym_trailing_return_type] = STATE(2961), - [sym_noexcept] = STATE(2473), - [sym_throw_specifier] = STATE(2473), - [sym_requires_clause] = STATE(3513), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [sym_identifier] = ACTIONS(7546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [aux_sym_preproc_if_token2] = ACTIONS(7544), - [aux_sym_preproc_else_token1] = ACTIONS(7544), - [aux_sym_preproc_elif_token1] = ACTIONS(7546), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6123), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7546), - [anon_sym_or_eq] = ACTIONS(7546), - [anon_sym_xor_eq] = ACTIONS(7546), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7546), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7546), - [anon_sym_not_eq] = ACTIONS(7546), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6129), - [anon_sym___asm__] = ACTIONS(6129), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7579), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7582), - [anon_sym_override] = ACTIONS(7582), - [anon_sym_noexcept] = ACTIONS(6136), - [anon_sym_throw] = ACTIONS(6138), - [anon_sym_requires] = ACTIONS(7585), - }, - [STATE(2209)] = { - [sym__abstract_declarator] = STATE(4450), - [sym_abstract_parenthesized_declarator] = STATE(4672), - [sym_abstract_pointer_declarator] = STATE(4672), - [sym_abstract_function_declarator] = STATE(4672), - [sym_abstract_array_declarator] = STATE(4672), - [sym_type_qualifier] = STATE(2163), - [sym_alignas_qualifier] = STATE(2278), - [sym_parameter_list] = STATE(1867), - [sym_abstract_reference_declarator] = STATE(4672), - [sym__function_declarator_seq] = STATE(4681), - [aux_sym__type_definition_type_repeat1] = STATE(2163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), - [anon_sym_COMMA] = ACTIONS(6995), - [anon_sym_RPAREN] = ACTIONS(6995), - [anon_sym_LPAREN2] = ACTIONS(6648), - [anon_sym_DASH] = ACTIONS(6997), - [anon_sym_PLUS] = ACTIONS(6997), - [anon_sym_STAR] = ACTIONS(6650), - [anon_sym_SLASH] = ACTIONS(6997), - [anon_sym_PERCENT] = ACTIONS(6997), - [anon_sym_PIPE_PIPE] = ACTIONS(6995), - [anon_sym_AMP_AMP] = ACTIONS(6652), - [anon_sym_PIPE] = ACTIONS(6997), - [anon_sym_CARET] = ACTIONS(6997), - [anon_sym_AMP] = ACTIONS(6654), - [anon_sym_EQ_EQ] = ACTIONS(6995), - [anon_sym_BANG_EQ] = ACTIONS(6995), - [anon_sym_GT] = ACTIONS(6997), - [anon_sym_GT_EQ] = ACTIONS(6995), - [anon_sym_LT_EQ] = ACTIONS(6997), - [anon_sym_LT] = ACTIONS(6997), - [anon_sym_LT_LT] = ACTIONS(6997), - [anon_sym_GT_GT] = ACTIONS(6997), - [anon_sym___extension__] = ACTIONS(6656), - [anon_sym_LBRACK] = ACTIONS(6664), - [anon_sym_EQ] = ACTIONS(6997), - [anon_sym_const] = ACTIONS(6666), - [anon_sym_constexpr] = ACTIONS(6656), - [anon_sym_volatile] = ACTIONS(6656), - [anon_sym_restrict] = ACTIONS(6656), - [anon_sym___restrict__] = ACTIONS(6656), - [anon_sym__Atomic] = ACTIONS(6656), - [anon_sym__Noreturn] = ACTIONS(6656), - [anon_sym_noreturn] = ACTIONS(6656), - [anon_sym__Nonnull] = ACTIONS(6656), - [anon_sym_mutable] = ACTIONS(6656), - [anon_sym_constinit] = ACTIONS(6656), - [anon_sym_consteval] = ACTIONS(6656), - [anon_sym_alignas] = ACTIONS(6668), - [anon_sym__Alignas] = ACTIONS(6668), - [anon_sym_QMARK] = ACTIONS(6995), - [anon_sym_STAR_EQ] = ACTIONS(6995), - [anon_sym_SLASH_EQ] = ACTIONS(6995), - [anon_sym_PERCENT_EQ] = ACTIONS(6995), - [anon_sym_PLUS_EQ] = ACTIONS(6995), - [anon_sym_DASH_EQ] = ACTIONS(6995), - [anon_sym_LT_LT_EQ] = ACTIONS(6995), - [anon_sym_GT_GT_EQ] = ACTIONS(6995), - [anon_sym_AMP_EQ] = ACTIONS(6995), - [anon_sym_CARET_EQ] = ACTIONS(6995), - [anon_sym_PIPE_EQ] = ACTIONS(6995), - [anon_sym_and_eq] = ACTIONS(6995), - [anon_sym_or_eq] = ACTIONS(6995), - [anon_sym_xor_eq] = ACTIONS(6995), - [anon_sym_LT_EQ_GT] = ACTIONS(6995), - [anon_sym_or] = ACTIONS(6997), - [anon_sym_and] = ACTIONS(6997), - [anon_sym_bitor] = ACTIONS(6995), - [anon_sym_xor] = ACTIONS(6997), - [anon_sym_bitand] = ACTIONS(6995), - [anon_sym_not_eq] = ACTIONS(6995), - [anon_sym_DASH_DASH] = ACTIONS(6995), - [anon_sym_PLUS_PLUS] = ACTIONS(6995), - [anon_sym_DOT] = ACTIONS(6997), - [anon_sym_DOT_STAR] = ACTIONS(6995), - [anon_sym_DASH_GT] = ACTIONS(6997), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6995), - [anon_sym_override] = ACTIONS(6995), - [anon_sym_requires] = ACTIONS(6995), - [anon_sym_DASH_GT_STAR] = ACTIONS(6995), - }, - [STATE(2210)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_exception_specification] = STATE(2474), - [sym__function_attributes_end] = STATE(3838), - [sym__function_postfix] = STATE(3497), - [sym_trailing_return_type] = STATE(2975), - [sym_noexcept] = STATE(2474), - [sym_throw_specifier] = STATE(2474), - [sym_requires_clause] = STATE(3497), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [sym_identifier] = ACTIONS(7629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [aux_sym_preproc_if_token2] = ACTIONS(7627), - [aux_sym_preproc_else_token1] = ACTIONS(7627), - [aux_sym_preproc_elif_token1] = ACTIONS(7629), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7627), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym___attribute__] = ACTIONS(6123), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7629), - [anon_sym_or_eq] = ACTIONS(7629), - [anon_sym_xor_eq] = ACTIONS(7629), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7629), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7629), - [anon_sym_not_eq] = ACTIONS(7629), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6129), - [anon_sym___asm__] = ACTIONS(6129), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(7642), + [STATE(2158)] = { + [sym_attribute_specifier] = STATE(2191), + [sym_identifier] = ACTIONS(7505), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7507), + [anon_sym_COMMA] = ACTIONS(7507), + [anon_sym_RPAREN] = ACTIONS(7507), + [aux_sym_preproc_if_token2] = ACTIONS(7507), + [aux_sym_preproc_else_token1] = ACTIONS(7507), + [aux_sym_preproc_elif_token1] = ACTIONS(7505), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7507), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7507), + [anon_sym_LPAREN2] = ACTIONS(7507), + [anon_sym_DASH] = ACTIONS(7505), + [anon_sym_PLUS] = ACTIONS(7505), + [anon_sym_STAR] = ACTIONS(7505), + [anon_sym_SLASH] = ACTIONS(7505), + [anon_sym_PERCENT] = ACTIONS(7505), + [anon_sym_PIPE_PIPE] = ACTIONS(7507), + [anon_sym_AMP_AMP] = ACTIONS(7507), + [anon_sym_PIPE] = ACTIONS(7505), + [anon_sym_CARET] = ACTIONS(7505), + [anon_sym_AMP] = ACTIONS(7505), + [anon_sym_EQ_EQ] = ACTIONS(7507), + [anon_sym_BANG_EQ] = ACTIONS(7507), + [anon_sym_GT] = ACTIONS(7505), + [anon_sym_GT_EQ] = ACTIONS(7507), + [anon_sym_LT_EQ] = ACTIONS(7505), + [anon_sym_LT] = ACTIONS(7505), + [anon_sym_LT_LT] = ACTIONS(7505), + [anon_sym_GT_GT] = ACTIONS(7505), + [anon_sym_SEMI] = ACTIONS(7507), + [anon_sym___extension__] = ACTIONS(7505), + [anon_sym___attribute__] = ACTIONS(7239), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_COLON] = ACTIONS(7505), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7507), + [anon_sym_LBRACE] = ACTIONS(7507), + [anon_sym_RBRACE] = ACTIONS(7507), + [anon_sym_LBRACK] = ACTIONS(7507), + [anon_sym_EQ] = ACTIONS(7505), + [anon_sym_const] = ACTIONS(7505), + [anon_sym_constexpr] = ACTIONS(7505), + [anon_sym_volatile] = ACTIONS(7505), + [anon_sym_restrict] = ACTIONS(7505), + [anon_sym___restrict__] = ACTIONS(7505), + [anon_sym__Atomic] = ACTIONS(7505), + [anon_sym__Noreturn] = ACTIONS(7505), + [anon_sym_noreturn] = ACTIONS(7505), + [anon_sym__Nonnull] = ACTIONS(7505), + [anon_sym_mutable] = ACTIONS(7505), + [anon_sym_constinit] = ACTIONS(7505), + [anon_sym_consteval] = ACTIONS(7505), + [anon_sym_alignas] = ACTIONS(7505), + [anon_sym__Alignas] = ACTIONS(7505), + [anon_sym_QMARK] = ACTIONS(7507), + [anon_sym_STAR_EQ] = ACTIONS(7507), + [anon_sym_SLASH_EQ] = ACTIONS(7507), + [anon_sym_PERCENT_EQ] = ACTIONS(7507), + [anon_sym_PLUS_EQ] = ACTIONS(7507), + [anon_sym_DASH_EQ] = ACTIONS(7507), + [anon_sym_LT_LT_EQ] = ACTIONS(7507), + [anon_sym_GT_GT_EQ] = ACTIONS(7507), + [anon_sym_AMP_EQ] = ACTIONS(7507), + [anon_sym_CARET_EQ] = ACTIONS(7507), + [anon_sym_PIPE_EQ] = ACTIONS(7507), + [anon_sym_and_eq] = ACTIONS(7505), + [anon_sym_or_eq] = ACTIONS(7505), + [anon_sym_xor_eq] = ACTIONS(7505), + [anon_sym_LT_EQ_GT] = ACTIONS(7507), + [anon_sym_or] = ACTIONS(7505), + [anon_sym_and] = ACTIONS(7505), + [anon_sym_bitor] = ACTIONS(7505), + [anon_sym_xor] = ACTIONS(7505), + [anon_sym_bitand] = ACTIONS(7505), + [anon_sym_not_eq] = ACTIONS(7505), + [anon_sym_DASH_DASH] = ACTIONS(7507), + [anon_sym_PLUS_PLUS] = ACTIONS(7507), + [anon_sym_DOT] = ACTIONS(7505), + [anon_sym_DOT_STAR] = ACTIONS(7507), + [anon_sym_DASH_GT] = ACTIONS(7507), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7645), - [anon_sym_override] = ACTIONS(7645), - [anon_sym_noexcept] = ACTIONS(6136), - [anon_sym_throw] = ACTIONS(6138), - [anon_sym_requires] = ACTIONS(7648), + [anon_sym_final] = ACTIONS(7505), + [anon_sym_override] = ACTIONS(7505), + [anon_sym_requires] = ACTIONS(7505), + [anon_sym_COLON_RBRACK] = ACTIONS(7507), }, - [STATE(2211)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(9719), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_explicit_object_parameter_declaration] = STATE(9719), - [sym_optional_parameter_declaration] = STATE(9719), - [sym_variadic_parameter_declaration] = STATE(9719), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6177), - [anon_sym_RPAREN] = ACTIONS(6179), + [STATE(2159)] = { + [sym_function_definition] = STATE(3251), + [sym_declaration] = STATE(3251), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6416), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_call_modifier] = STATE(2711), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10772), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(5630), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(5631), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(6019), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7405), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -319983,63 +327879,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(5313), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7509), + [anon_sym_struct] = ACTIONS(7511), + [anon_sym_union] = ACTIONS(7513), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - [sym_this] = ACTIONS(5315), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2212)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(9763), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_explicit_object_parameter_declaration] = STATE(9763), - [sym_optional_parameter_declaration] = STATE(9763), - [sym_variadic_parameter_declaration] = STATE(9763), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6169), - [anon_sym_RPAREN] = ACTIONS(6171), + [STATE(2160)] = { + [sym_function_definition] = STATE(3264), + [sym_declaration] = STATE(3264), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6416), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_call_modifier] = STATE(2711), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10835), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(5630), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(5631), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(6019), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7405), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -320066,478 +327965,496 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(5313), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7515), + [anon_sym_struct] = ACTIONS(7517), + [anon_sym_union] = ACTIONS(7519), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - [sym_this] = ACTIONS(5315), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2213)] = { - [sym_attribute_specifier] = STATE(2092), - [sym_enumerator_list] = STATE(2043), - [sym__enum_base_clause] = STATE(2009), - [sym_identifier] = ACTIONS(7651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), - [anon_sym_COMMA] = ACTIONS(7653), - [aux_sym_preproc_if_token2] = ACTIONS(7653), - [aux_sym_preproc_else_token1] = ACTIONS(7653), - [aux_sym_preproc_elif_token1] = ACTIONS(7651), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7653), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7653), - [anon_sym_LPAREN2] = ACTIONS(7653), - [anon_sym_DASH] = ACTIONS(7651), - [anon_sym_PLUS] = ACTIONS(7651), - [anon_sym_STAR] = ACTIONS(7651), - [anon_sym_SLASH] = ACTIONS(7651), - [anon_sym_PERCENT] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_AMP_AMP] = ACTIONS(7653), - [anon_sym_PIPE] = ACTIONS(7651), - [anon_sym_CARET] = ACTIONS(7651), - [anon_sym_AMP] = ACTIONS(7651), - [anon_sym_EQ_EQ] = ACTIONS(7653), - [anon_sym_BANG_EQ] = ACTIONS(7653), - [anon_sym_GT] = ACTIONS(7651), - [anon_sym_GT_EQ] = ACTIONS(7653), - [anon_sym_LT_EQ] = ACTIONS(7651), - [anon_sym_LT] = ACTIONS(7651), - [anon_sym_LT_LT] = ACTIONS(7651), - [anon_sym_GT_GT] = ACTIONS(7651), - [anon_sym___extension__] = ACTIONS(7651), - [anon_sym___attribute__] = ACTIONS(6830), - [anon_sym___attribute] = ACTIONS(6830), - [anon_sym_COLON] = ACTIONS(7604), - [anon_sym_LBRACE] = ACTIONS(6989), - [anon_sym_LBRACK] = ACTIONS(7653), - [anon_sym_EQ] = ACTIONS(7651), - [anon_sym_const] = ACTIONS(7651), - [anon_sym_constexpr] = ACTIONS(7651), - [anon_sym_volatile] = ACTIONS(7651), - [anon_sym_restrict] = ACTIONS(7651), - [anon_sym___restrict__] = ACTIONS(7651), - [anon_sym__Atomic] = ACTIONS(7651), - [anon_sym__Noreturn] = ACTIONS(7651), - [anon_sym_noreturn] = ACTIONS(7651), - [anon_sym__Nonnull] = ACTIONS(7651), - [anon_sym_mutable] = ACTIONS(7651), - [anon_sym_constinit] = ACTIONS(7651), - [anon_sym_consteval] = ACTIONS(7651), - [anon_sym_alignas] = ACTIONS(7651), - [anon_sym__Alignas] = ACTIONS(7651), - [anon_sym_QMARK] = ACTIONS(7653), - [anon_sym_STAR_EQ] = ACTIONS(7653), - [anon_sym_SLASH_EQ] = ACTIONS(7653), - [anon_sym_PERCENT_EQ] = ACTIONS(7653), - [anon_sym_PLUS_EQ] = ACTIONS(7653), - [anon_sym_DASH_EQ] = ACTIONS(7653), - [anon_sym_LT_LT_EQ] = ACTIONS(7653), - [anon_sym_GT_GT_EQ] = ACTIONS(7653), - [anon_sym_AMP_EQ] = ACTIONS(7653), - [anon_sym_CARET_EQ] = ACTIONS(7653), - [anon_sym_PIPE_EQ] = ACTIONS(7653), - [anon_sym_and_eq] = ACTIONS(7651), - [anon_sym_or_eq] = ACTIONS(7651), - [anon_sym_xor_eq] = ACTIONS(7651), - [anon_sym_LT_EQ_GT] = ACTIONS(7653), - [anon_sym_or] = ACTIONS(7651), - [anon_sym_and] = ACTIONS(7651), - [anon_sym_bitor] = ACTIONS(7651), - [anon_sym_xor] = ACTIONS(7651), - [anon_sym_bitand] = ACTIONS(7651), - [anon_sym_not_eq] = ACTIONS(7651), - [anon_sym_DASH_DASH] = ACTIONS(7653), - [anon_sym_PLUS_PLUS] = ACTIONS(7653), - [anon_sym_DOT] = ACTIONS(7651), - [anon_sym_DOT_STAR] = ACTIONS(7653), - [anon_sym_DASH_GT] = ACTIONS(7653), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7651), - [anon_sym_override] = ACTIONS(7651), - [anon_sym_requires] = ACTIONS(7651), + [STATE(2161)] = { + [sym_attribute_specifier] = STATE(2235), + [sym_identifier] = ACTIONS(7521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7523), + [anon_sym_COMMA] = ACTIONS(7523), + [anon_sym_RPAREN] = ACTIONS(7523), + [aux_sym_preproc_if_token2] = ACTIONS(7523), + [aux_sym_preproc_else_token1] = ACTIONS(7523), + [aux_sym_preproc_elif_token1] = ACTIONS(7521), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7523), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7523), + [anon_sym_LPAREN2] = ACTIONS(7523), + [anon_sym_DASH] = ACTIONS(7521), + [anon_sym_PLUS] = ACTIONS(7521), + [anon_sym_STAR] = ACTIONS(7521), + [anon_sym_SLASH] = ACTIONS(7521), + [anon_sym_PERCENT] = ACTIONS(7521), + [anon_sym_PIPE_PIPE] = ACTIONS(7523), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE] = ACTIONS(7521), + [anon_sym_CARET] = ACTIONS(7521), + [anon_sym_AMP] = ACTIONS(7521), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_GT] = ACTIONS(7521), + [anon_sym_GT_EQ] = ACTIONS(7523), + [anon_sym_LT_EQ] = ACTIONS(7521), + [anon_sym_LT] = ACTIONS(7521), + [anon_sym_LT_LT] = ACTIONS(7521), + [anon_sym_GT_GT] = ACTIONS(7521), + [anon_sym_SEMI] = ACTIONS(7523), + [anon_sym___extension__] = ACTIONS(7521), + [anon_sym___attribute__] = ACTIONS(7239), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_COLON] = ACTIONS(7521), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7523), + [anon_sym_LBRACE] = ACTIONS(7523), + [anon_sym_RBRACE] = ACTIONS(7523), + [anon_sym_LBRACK] = ACTIONS(7523), + [anon_sym_EQ] = ACTIONS(7521), + [anon_sym_const] = ACTIONS(7521), + [anon_sym_constexpr] = ACTIONS(7521), + [anon_sym_volatile] = ACTIONS(7521), + [anon_sym_restrict] = ACTIONS(7521), + [anon_sym___restrict__] = ACTIONS(7521), + [anon_sym__Atomic] = ACTIONS(7521), + [anon_sym__Noreturn] = ACTIONS(7521), + [anon_sym_noreturn] = ACTIONS(7521), + [anon_sym__Nonnull] = ACTIONS(7521), + [anon_sym_mutable] = ACTIONS(7521), + [anon_sym_constinit] = ACTIONS(7521), + [anon_sym_consteval] = ACTIONS(7521), + [anon_sym_alignas] = ACTIONS(7521), + [anon_sym__Alignas] = ACTIONS(7521), + [anon_sym_QMARK] = ACTIONS(7523), + [anon_sym_STAR_EQ] = ACTIONS(7523), + [anon_sym_SLASH_EQ] = ACTIONS(7523), + [anon_sym_PERCENT_EQ] = ACTIONS(7523), + [anon_sym_PLUS_EQ] = ACTIONS(7523), + [anon_sym_DASH_EQ] = ACTIONS(7523), + [anon_sym_LT_LT_EQ] = ACTIONS(7523), + [anon_sym_GT_GT_EQ] = ACTIONS(7523), + [anon_sym_AMP_EQ] = ACTIONS(7523), + [anon_sym_CARET_EQ] = ACTIONS(7523), + [anon_sym_PIPE_EQ] = ACTIONS(7523), + [anon_sym_and_eq] = ACTIONS(7521), + [anon_sym_or_eq] = ACTIONS(7521), + [anon_sym_xor_eq] = ACTIONS(7521), + [anon_sym_LT_EQ_GT] = ACTIONS(7523), + [anon_sym_or] = ACTIONS(7521), + [anon_sym_and] = ACTIONS(7521), + [anon_sym_bitor] = ACTIONS(7521), + [anon_sym_xor] = ACTIONS(7521), + [anon_sym_bitand] = ACTIONS(7521), + [anon_sym_not_eq] = ACTIONS(7521), + [anon_sym_DASH_DASH] = ACTIONS(7523), + [anon_sym_PLUS_PLUS] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(7521), + [anon_sym_DOT_STAR] = ACTIONS(7523), + [anon_sym_DASH_GT] = ACTIONS(7523), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7521), + [anon_sym_override] = ACTIONS(7521), + [anon_sym_requires] = ACTIONS(7521), + [anon_sym_COLON_RBRACK] = ACTIONS(7523), }, - [STATE(2214)] = { - [sym_argument_list] = STATE(3783), - [sym_initializer_list] = STATE(3811), - [aux_sym_sized_type_specifier_repeat1] = STATE(2158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(7399), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym_SEMI] = ACTIONS(6800), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym___attribute__] = ACTIONS(6800), - [anon_sym___attribute] = ACTIONS(6798), - [anon_sym_COLON] = ACTIONS(6798), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_RBRACE] = ACTIONS(6800), - [anon_sym_signed] = ACTIONS(7520), - [anon_sym_unsigned] = ACTIONS(7520), - [anon_sym_long] = ACTIONS(7520), - [anon_sym_short] = ACTIONS(7520), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6800), + [STATE(2162)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2037), + [sym_identifier] = ACTIONS(6999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), + [anon_sym_COMMA] = ACTIONS(7525), + [anon_sym_RPAREN] = ACTIONS(7525), + [anon_sym_LPAREN2] = ACTIONS(7525), + [anon_sym_DASH] = ACTIONS(7528), + [anon_sym_PLUS] = ACTIONS(7528), + [anon_sym_STAR] = ACTIONS(7528), + [anon_sym_SLASH] = ACTIONS(7528), + [anon_sym_PERCENT] = ACTIONS(7528), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_AMP_AMP] = ACTIONS(7525), + [anon_sym_PIPE] = ACTIONS(7528), + [anon_sym_CARET] = ACTIONS(7528), + [anon_sym_AMP] = ACTIONS(7528), + [anon_sym_EQ_EQ] = ACTIONS(7525), + [anon_sym_BANG_EQ] = ACTIONS(7525), + [anon_sym_GT] = ACTIONS(7528), + [anon_sym_GT_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7528), + [anon_sym_LT] = ACTIONS(7528), + [anon_sym_LT_LT] = ACTIONS(7528), + [anon_sym_GT_GT] = ACTIONS(7528), + [anon_sym_SEMI] = ACTIONS(7525), + [anon_sym___extension__] = ACTIONS(7528), + [anon_sym___attribute__] = ACTIONS(7528), + [anon_sym___attribute] = ACTIONS(7528), + [anon_sym_COLON] = ACTIONS(7528), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7525), + [anon_sym_LBRACE] = ACTIONS(7525), + [anon_sym_RBRACE] = ACTIONS(7525), + [anon_sym_signed] = ACTIONS(7003), + [anon_sym_unsigned] = ACTIONS(7003), + [anon_sym_long] = ACTIONS(7003), + [anon_sym_short] = ACTIONS(7003), + [anon_sym_LBRACK] = ACTIONS(7525), + [anon_sym_EQ] = ACTIONS(7528), + [anon_sym_const] = ACTIONS(7528), + [anon_sym_constexpr] = ACTIONS(7528), + [anon_sym_volatile] = ACTIONS(7528), + [anon_sym_restrict] = ACTIONS(7528), + [anon_sym___restrict__] = ACTIONS(7528), + [anon_sym__Atomic] = ACTIONS(7528), + [anon_sym__Noreturn] = ACTIONS(7528), + [anon_sym_noreturn] = ACTIONS(7528), + [anon_sym__Nonnull] = ACTIONS(7528), + [anon_sym_mutable] = ACTIONS(7528), + [anon_sym_constinit] = ACTIONS(7528), + [anon_sym_consteval] = ACTIONS(7528), + [anon_sym_alignas] = ACTIONS(7528), + [anon_sym__Alignas] = ACTIONS(7528), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7525), + [anon_sym_STAR_EQ] = ACTIONS(7525), + [anon_sym_SLASH_EQ] = ACTIONS(7525), + [anon_sym_PERCENT_EQ] = ACTIONS(7525), + [anon_sym_PLUS_EQ] = ACTIONS(7525), + [anon_sym_DASH_EQ] = ACTIONS(7525), + [anon_sym_LT_LT_EQ] = ACTIONS(7525), + [anon_sym_GT_GT_EQ] = ACTIONS(7525), + [anon_sym_AMP_EQ] = ACTIONS(7525), + [anon_sym_CARET_EQ] = ACTIONS(7525), + [anon_sym_PIPE_EQ] = ACTIONS(7525), + [anon_sym_and_eq] = ACTIONS(7528), + [anon_sym_or_eq] = ACTIONS(7528), + [anon_sym_xor_eq] = ACTIONS(7528), + [anon_sym_LT_EQ_GT] = ACTIONS(7525), + [anon_sym_or] = ACTIONS(7528), + [anon_sym_and] = ACTIONS(7528), + [anon_sym_bitor] = ACTIONS(7528), + [anon_sym_xor] = ACTIONS(7528), + [anon_sym_bitand] = ACTIONS(7528), + [anon_sym_not_eq] = ACTIONS(7528), + [anon_sym_DASH_DASH] = ACTIONS(7525), + [anon_sym_PLUS_PLUS] = ACTIONS(7525), + [anon_sym_DOT] = ACTIONS(7528), + [anon_sym_DOT_STAR] = ACTIONS(7525), + [anon_sym_DASH_GT] = ACTIONS(7525), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7528), + [anon_sym_override] = ACTIONS(7528), + [anon_sym_requires] = ACTIONS(7528), + [anon_sym_COLON_RBRACK] = ACTIONS(7525), }, - [STATE(2215)] = { - [sym_attribute_specifier] = STATE(2436), - [sym_attribute_declaration] = STATE(4623), - [sym_type_qualifier] = STATE(2356), - [sym_alignas_qualifier] = STATE(2559), - [aux_sym_type_definition_repeat1] = STATE(2436), - [aux_sym__type_definition_type_repeat1] = STATE(2356), - [aux_sym_attributed_declarator_repeat1] = STATE(4623), - [sym_identifier] = ACTIONS(6388), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), - [anon_sym_COMMA] = ACTIONS(6390), - [anon_sym_RPAREN] = ACTIONS(6390), - [aux_sym_preproc_if_token2] = ACTIONS(6390), - [aux_sym_preproc_else_token1] = ACTIONS(6390), - [aux_sym_preproc_elif_token1] = ACTIONS(6388), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6390), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6390), - [anon_sym_LPAREN2] = ACTIONS(6390), - [anon_sym_DASH] = ACTIONS(6388), - [anon_sym_PLUS] = ACTIONS(6388), - [anon_sym_STAR] = ACTIONS(6390), - [anon_sym_SLASH] = ACTIONS(6388), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_PIPE_PIPE] = ACTIONS(6390), - [anon_sym_AMP_AMP] = ACTIONS(6390), - [anon_sym_PIPE] = ACTIONS(6388), - [anon_sym_CARET] = ACTIONS(6390), - [anon_sym_AMP] = ACTIONS(6388), - [anon_sym_EQ_EQ] = ACTIONS(6390), - [anon_sym_BANG_EQ] = ACTIONS(6390), - [anon_sym_GT] = ACTIONS(6388), - [anon_sym_GT_EQ] = ACTIONS(6390), - [anon_sym_LT_EQ] = ACTIONS(6388), - [anon_sym_LT] = ACTIONS(6388), - [anon_sym_LT_LT] = ACTIONS(6390), - [anon_sym_GT_GT] = ACTIONS(6390), - [anon_sym_SEMI] = ACTIONS(6390), - [anon_sym___extension__] = ACTIONS(6857), - [anon_sym___attribute__] = ACTIONS(6388), - [anon_sym___attribute] = ACTIONS(6388), - [anon_sym_COLON] = ACTIONS(6388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6390), - [anon_sym_RBRACE] = ACTIONS(6390), - [anon_sym_LBRACK] = ACTIONS(6388), - [anon_sym_const] = ACTIONS(6857), - [anon_sym_constexpr] = ACTIONS(6857), - [anon_sym_volatile] = ACTIONS(6857), - [anon_sym_restrict] = ACTIONS(6857), - [anon_sym___restrict__] = ACTIONS(6857), - [anon_sym__Atomic] = ACTIONS(6857), - [anon_sym__Noreturn] = ACTIONS(6857), - [anon_sym_noreturn] = ACTIONS(6857), - [anon_sym__Nonnull] = ACTIONS(6857), - [anon_sym_mutable] = ACTIONS(6857), - [anon_sym_constinit] = ACTIONS(6857), - [anon_sym_consteval] = ACTIONS(6857), - [anon_sym_alignas] = ACTIONS(6863), - [anon_sym__Alignas] = ACTIONS(6863), - [anon_sym_QMARK] = ACTIONS(6390), - [anon_sym_LT_EQ_GT] = ACTIONS(6390), - [anon_sym_or] = ACTIONS(6388), - [anon_sym_and] = ACTIONS(6388), - [anon_sym_bitor] = ACTIONS(6388), - [anon_sym_xor] = ACTIONS(6388), - [anon_sym_bitand] = ACTIONS(6388), - [anon_sym_not_eq] = ACTIONS(6388), - [anon_sym_DASH_DASH] = ACTIONS(6390), - [anon_sym_PLUS_PLUS] = ACTIONS(6390), - [anon_sym_asm] = ACTIONS(6388), - [anon_sym___asm__] = ACTIONS(6388), - [anon_sym___asm] = ACTIONS(6388), - [anon_sym_DOT] = ACTIONS(6388), - [anon_sym_DOT_STAR] = ACTIONS(6390), - [anon_sym_DASH_GT] = ACTIONS(6390), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6388), - [anon_sym_override] = ACTIONS(6388), - [anon_sym_noexcept] = ACTIONS(6388), - [anon_sym_throw] = ACTIONS(6388), - [anon_sym_requires] = ACTIONS(6388), - [anon_sym_COLON_RBRACK] = ACTIONS(6390), + [STATE(2163)] = { + [sym_identifier] = ACTIONS(7231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), + [anon_sym_COMMA] = ACTIONS(7233), + [anon_sym_RPAREN] = ACTIONS(7233), + [aux_sym_preproc_if_token2] = ACTIONS(7233), + [aux_sym_preproc_else_token1] = ACTIONS(7233), + [aux_sym_preproc_elif_token1] = ACTIONS(7231), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7233), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7233), + [anon_sym_LPAREN2] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7231), + [anon_sym_PLUS] = ACTIONS(7231), + [anon_sym_STAR] = ACTIONS(7231), + [anon_sym_SLASH] = ACTIONS(7231), + [anon_sym_PERCENT] = ACTIONS(7231), + [anon_sym_PIPE_PIPE] = ACTIONS(7233), + [anon_sym_AMP_AMP] = ACTIONS(7233), + [anon_sym_PIPE] = ACTIONS(7231), + [anon_sym_CARET] = ACTIONS(7231), + [anon_sym_AMP] = ACTIONS(7231), + [anon_sym_EQ_EQ] = ACTIONS(7233), + [anon_sym_BANG_EQ] = ACTIONS(7233), + [anon_sym_GT] = ACTIONS(7231), + [anon_sym_GT_EQ] = ACTIONS(7233), + [anon_sym_LT_EQ] = ACTIONS(7231), + [anon_sym_LT] = ACTIONS(7231), + [anon_sym_LT_LT] = ACTIONS(7231), + [anon_sym_GT_GT] = ACTIONS(7231), + [anon_sym_SEMI] = ACTIONS(7233), + [anon_sym___extension__] = ACTIONS(7231), + [anon_sym___attribute__] = ACTIONS(7231), + [anon_sym___attribute] = ACTIONS(7231), + [anon_sym_COLON] = ACTIONS(7231), + [anon_sym_COLON_COLON] = ACTIONS(7233), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7233), + [anon_sym_LBRACE] = ACTIONS(7233), + [anon_sym_RBRACE] = ACTIONS(7233), + [anon_sym_LBRACK] = ACTIONS(7233), + [anon_sym_EQ] = ACTIONS(7231), + [anon_sym_const] = ACTIONS(7231), + [anon_sym_constexpr] = ACTIONS(7231), + [anon_sym_volatile] = ACTIONS(7231), + [anon_sym_restrict] = ACTIONS(7231), + [anon_sym___restrict__] = ACTIONS(7231), + [anon_sym__Atomic] = ACTIONS(7231), + [anon_sym__Noreturn] = ACTIONS(7231), + [anon_sym_noreturn] = ACTIONS(7231), + [anon_sym__Nonnull] = ACTIONS(7231), + [anon_sym_mutable] = ACTIONS(7231), + [anon_sym_constinit] = ACTIONS(7231), + [anon_sym_consteval] = ACTIONS(7231), + [anon_sym_alignas] = ACTIONS(7231), + [anon_sym__Alignas] = ACTIONS(7231), + [anon_sym_QMARK] = ACTIONS(7233), + [anon_sym_STAR_EQ] = ACTIONS(7233), + [anon_sym_SLASH_EQ] = ACTIONS(7233), + [anon_sym_PERCENT_EQ] = ACTIONS(7233), + [anon_sym_PLUS_EQ] = ACTIONS(7233), + [anon_sym_DASH_EQ] = ACTIONS(7233), + [anon_sym_LT_LT_EQ] = ACTIONS(7233), + [anon_sym_GT_GT_EQ] = ACTIONS(7233), + [anon_sym_AMP_EQ] = ACTIONS(7233), + [anon_sym_CARET_EQ] = ACTIONS(7233), + [anon_sym_PIPE_EQ] = ACTIONS(7233), + [anon_sym_and_eq] = ACTIONS(7231), + [anon_sym_or_eq] = ACTIONS(7231), + [anon_sym_xor_eq] = ACTIONS(7231), + [anon_sym_LT_EQ_GT] = ACTIONS(7233), + [anon_sym_or] = ACTIONS(7231), + [anon_sym_and] = ACTIONS(7231), + [anon_sym_bitor] = ACTIONS(7231), + [anon_sym_xor] = ACTIONS(7231), + [anon_sym_bitand] = ACTIONS(7231), + [anon_sym_not_eq] = ACTIONS(7231), + [anon_sym_DASH_DASH] = ACTIONS(7233), + [anon_sym_PLUS_PLUS] = ACTIONS(7233), + [anon_sym_DOT] = ACTIONS(7231), + [anon_sym_DOT_STAR] = ACTIONS(7233), + [anon_sym_DASH_GT] = ACTIONS(7233), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7231), + [anon_sym_override] = ACTIONS(7231), + [anon_sym_requires] = ACTIONS(7231), + [anon_sym_COLON_RBRACK] = ACTIONS(7233), }, - [STATE(2216)] = { - [sym_type_qualifier] = STATE(2195), - [sym_alignas_qualifier] = STATE(2300), - [aux_sym__type_definition_type_repeat1] = STATE(2195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6523), - [anon_sym_COMMA] = ACTIONS(6523), - [anon_sym_RPAREN] = ACTIONS(6523), - [anon_sym_LPAREN2] = ACTIONS(6523), - [anon_sym_DASH] = ACTIONS(6521), - [anon_sym_PLUS] = ACTIONS(6521), - [anon_sym_STAR] = ACTIONS(6521), - [anon_sym_SLASH] = ACTIONS(6521), - [anon_sym_PERCENT] = ACTIONS(6521), - [anon_sym_PIPE_PIPE] = ACTIONS(6523), - [anon_sym_AMP_AMP] = ACTIONS(6523), - [anon_sym_PIPE] = ACTIONS(6521), - [anon_sym_CARET] = ACTIONS(6521), - [anon_sym_AMP] = ACTIONS(6521), - [anon_sym_EQ_EQ] = ACTIONS(6523), - [anon_sym_BANG_EQ] = ACTIONS(6523), - [anon_sym_GT] = ACTIONS(6521), - [anon_sym_GT_EQ] = ACTIONS(6523), - [anon_sym_LT_EQ] = ACTIONS(6521), - [anon_sym_LT] = ACTIONS(6521), - [anon_sym_LT_LT] = ACTIONS(6521), - [anon_sym_GT_GT] = ACTIONS(6521), - [anon_sym___extension__] = ACTIONS(6280), - [anon_sym___attribute__] = ACTIONS(6523), - [anon_sym___attribute] = ACTIONS(6521), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6523), - [anon_sym_LBRACK] = ACTIONS(6521), - [anon_sym_EQ] = ACTIONS(6521), - [anon_sym_const] = ACTIONS(6288), - [anon_sym_constexpr] = ACTIONS(6280), - [anon_sym_volatile] = ACTIONS(6280), - [anon_sym_restrict] = ACTIONS(6280), - [anon_sym___restrict__] = ACTIONS(6280), - [anon_sym__Atomic] = ACTIONS(6280), - [anon_sym__Noreturn] = ACTIONS(6280), - [anon_sym_noreturn] = ACTIONS(6280), - [anon_sym__Nonnull] = ACTIONS(6280), - [anon_sym_mutable] = ACTIONS(6280), - [anon_sym_constinit] = ACTIONS(6280), - [anon_sym_consteval] = ACTIONS(6280), - [anon_sym_alignas] = ACTIONS(6290), - [anon_sym__Alignas] = ACTIONS(6290), - [anon_sym_QMARK] = ACTIONS(6523), - [anon_sym_STAR_EQ] = ACTIONS(6523), - [anon_sym_SLASH_EQ] = ACTIONS(6523), - [anon_sym_PERCENT_EQ] = ACTIONS(6523), - [anon_sym_PLUS_EQ] = ACTIONS(6523), - [anon_sym_DASH_EQ] = ACTIONS(6523), - [anon_sym_LT_LT_EQ] = ACTIONS(6523), - [anon_sym_GT_GT_EQ] = ACTIONS(6523), - [anon_sym_AMP_EQ] = ACTIONS(6523), - [anon_sym_CARET_EQ] = ACTIONS(6523), - [anon_sym_PIPE_EQ] = ACTIONS(6523), - [anon_sym_and_eq] = ACTIONS(6523), - [anon_sym_or_eq] = ACTIONS(6523), - [anon_sym_xor_eq] = ACTIONS(6523), - [anon_sym_LT_EQ_GT] = ACTIONS(6523), - [anon_sym_or] = ACTIONS(6521), - [anon_sym_and] = ACTIONS(6521), - [anon_sym_bitor] = ACTIONS(6523), - [anon_sym_xor] = ACTIONS(6521), - [anon_sym_bitand] = ACTIONS(6523), - [anon_sym_not_eq] = ACTIONS(6523), - [anon_sym_DASH_DASH] = ACTIONS(6523), - [anon_sym_PLUS_PLUS] = ACTIONS(6523), - [anon_sym_asm] = ACTIONS(6523), - [anon_sym___asm__] = ACTIONS(6523), - [anon_sym___asm] = ACTIONS(6521), - [anon_sym_DOT] = ACTIONS(6521), - [anon_sym_DOT_STAR] = ACTIONS(6523), - [anon_sym_DASH_GT] = ACTIONS(6521), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6523), - [anon_sym_override] = ACTIONS(6523), - [anon_sym_noexcept] = ACTIONS(6523), - [anon_sym_throw] = ACTIONS(6523), - [anon_sym_requires] = ACTIONS(6523), - [anon_sym_DASH_GT_STAR] = ACTIONS(6523), + [STATE(2164)] = { + [sym_attribute_specifier] = STATE(2388), + [sym_attribute_declaration] = STATE(4563), + [sym_type_qualifier] = STATE(2337), + [sym_alignas_qualifier] = STATE(2452), + [aux_sym_type_definition_repeat1] = STATE(2388), + [aux_sym__type_definition_type_repeat1] = STATE(2337), + [aux_sym_attributed_declarator_repeat1] = STATE(4563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), + [anon_sym_COMMA] = ACTIONS(6754), + [anon_sym_LPAREN2] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6752), + [anon_sym_STAR] = ACTIONS(6752), + [anon_sym_SLASH] = ACTIONS(6752), + [anon_sym_PERCENT] = ACTIONS(6752), + [anon_sym_PIPE_PIPE] = ACTIONS(6754), + [anon_sym_AMP_AMP] = ACTIONS(6754), + [anon_sym_PIPE] = ACTIONS(6752), + [anon_sym_CARET] = ACTIONS(6752), + [anon_sym_AMP] = ACTIONS(6752), + [anon_sym_EQ_EQ] = ACTIONS(6754), + [anon_sym_BANG_EQ] = ACTIONS(6754), + [anon_sym_GT] = ACTIONS(6752), + [anon_sym_GT_EQ] = ACTIONS(6754), + [anon_sym_LT_EQ] = ACTIONS(6752), + [anon_sym_LT] = ACTIONS(6752), + [anon_sym_LT_LT] = ACTIONS(6752), + [anon_sym_GT_GT] = ACTIONS(6752), + [anon_sym___extension__] = ACTIONS(6717), + [anon_sym___attribute__] = ACTIONS(6754), + [anon_sym___attribute] = ACTIONS(6752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), + [anon_sym_LBRACK] = ACTIONS(6752), + [anon_sym_RBRACK] = ACTIONS(6754), + [anon_sym_EQ] = ACTIONS(6752), + [anon_sym_const] = ACTIONS(6725), + [anon_sym_constexpr] = ACTIONS(6717), + [anon_sym_volatile] = ACTIONS(6717), + [anon_sym_restrict] = ACTIONS(6717), + [anon_sym___restrict__] = ACTIONS(6717), + [anon_sym__Atomic] = ACTIONS(6717), + [anon_sym__Noreturn] = ACTIONS(6717), + [anon_sym_noreturn] = ACTIONS(6717), + [anon_sym__Nonnull] = ACTIONS(6717), + [anon_sym_mutable] = ACTIONS(6717), + [anon_sym_constinit] = ACTIONS(6717), + [anon_sym_consteval] = ACTIONS(6717), + [anon_sym_alignas] = ACTIONS(6727), + [anon_sym__Alignas] = ACTIONS(6727), + [anon_sym_QMARK] = ACTIONS(6754), + [anon_sym_STAR_EQ] = ACTIONS(6754), + [anon_sym_SLASH_EQ] = ACTIONS(6754), + [anon_sym_PERCENT_EQ] = ACTIONS(6754), + [anon_sym_PLUS_EQ] = ACTIONS(6754), + [anon_sym_DASH_EQ] = ACTIONS(6754), + [anon_sym_LT_LT_EQ] = ACTIONS(6754), + [anon_sym_GT_GT_EQ] = ACTIONS(6754), + [anon_sym_AMP_EQ] = ACTIONS(6754), + [anon_sym_CARET_EQ] = ACTIONS(6754), + [anon_sym_PIPE_EQ] = ACTIONS(6754), + [anon_sym_and_eq] = ACTIONS(6754), + [anon_sym_or_eq] = ACTIONS(6754), + [anon_sym_xor_eq] = ACTIONS(6754), + [anon_sym_LT_EQ_GT] = ACTIONS(6754), + [anon_sym_or] = ACTIONS(6752), + [anon_sym_and] = ACTIONS(6752), + [anon_sym_bitor] = ACTIONS(6754), + [anon_sym_xor] = ACTIONS(6752), + [anon_sym_bitand] = ACTIONS(6754), + [anon_sym_not_eq] = ACTIONS(6754), + [anon_sym_DASH_DASH] = ACTIONS(6754), + [anon_sym_PLUS_PLUS] = ACTIONS(6754), + [anon_sym_asm] = ACTIONS(6754), + [anon_sym___asm__] = ACTIONS(6754), + [anon_sym___asm] = ACTIONS(6752), + [anon_sym_DOT] = ACTIONS(6752), + [anon_sym_DOT_STAR] = ACTIONS(6754), + [anon_sym_DASH_GT] = ACTIONS(6754), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6754), + [anon_sym_override] = ACTIONS(6754), + [anon_sym_noexcept] = ACTIONS(6754), + [anon_sym_throw] = ACTIONS(6754), + [anon_sym_requires] = ACTIONS(6754), }, - [STATE(2217)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_exception_specification] = STATE(2490), - [sym__function_attributes_end] = STATE(3845), - [sym__function_postfix] = STATE(3513), - [sym_trailing_return_type] = STATE(2961), - [sym_noexcept] = STATE(2490), - [sym_throw_specifier] = STATE(2490), - [sym_requires_clause] = STATE(3513), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym_SEMI] = ACTIONS(7544), - [anon_sym___attribute__] = ACTIONS(6150), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_COLON] = ACTIONS(7546), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), - [anon_sym_RBRACE] = ACTIONS(7544), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7554), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7557), - [anon_sym_override] = ACTIONS(7557), - [anon_sym_noexcept] = ACTIONS(6162), - [anon_sym_throw] = ACTIONS(6164), - [anon_sym_requires] = ACTIONS(7560), - [anon_sym_COLON_RBRACK] = ACTIONS(7544), + [STATE(2165)] = { + [sym_attribute_specifier] = STATE(2236), + [sym_identifier] = ACTIONS(7531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7533), + [anon_sym_COMMA] = ACTIONS(7533), + [anon_sym_RPAREN] = ACTIONS(7533), + [aux_sym_preproc_if_token2] = ACTIONS(7533), + [aux_sym_preproc_else_token1] = ACTIONS(7533), + [aux_sym_preproc_elif_token1] = ACTIONS(7531), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7533), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7533), + [anon_sym_LPAREN2] = ACTIONS(7533), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_STAR] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7531), + [anon_sym_PERCENT] = ACTIONS(7531), + [anon_sym_PIPE_PIPE] = ACTIONS(7533), + [anon_sym_AMP_AMP] = ACTIONS(7533), + [anon_sym_PIPE] = ACTIONS(7531), + [anon_sym_CARET] = ACTIONS(7531), + [anon_sym_AMP] = ACTIONS(7531), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_GT] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7533), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_LT] = ACTIONS(7531), + [anon_sym_LT_LT] = ACTIONS(7531), + [anon_sym_GT_GT] = ACTIONS(7531), + [anon_sym_SEMI] = ACTIONS(7533), + [anon_sym___extension__] = ACTIONS(7531), + [anon_sym___attribute__] = ACTIONS(7239), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_COLON] = ACTIONS(7531), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7533), + [anon_sym_LBRACE] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7533), + [anon_sym_LBRACK] = ACTIONS(7533), + [anon_sym_EQ] = ACTIONS(7531), + [anon_sym_const] = ACTIONS(7531), + [anon_sym_constexpr] = ACTIONS(7531), + [anon_sym_volatile] = ACTIONS(7531), + [anon_sym_restrict] = ACTIONS(7531), + [anon_sym___restrict__] = ACTIONS(7531), + [anon_sym__Atomic] = ACTIONS(7531), + [anon_sym__Noreturn] = ACTIONS(7531), + [anon_sym_noreturn] = ACTIONS(7531), + [anon_sym__Nonnull] = ACTIONS(7531), + [anon_sym_mutable] = ACTIONS(7531), + [anon_sym_constinit] = ACTIONS(7531), + [anon_sym_consteval] = ACTIONS(7531), + [anon_sym_alignas] = ACTIONS(7531), + [anon_sym__Alignas] = ACTIONS(7531), + [anon_sym_QMARK] = ACTIONS(7533), + [anon_sym_STAR_EQ] = ACTIONS(7533), + [anon_sym_SLASH_EQ] = ACTIONS(7533), + [anon_sym_PERCENT_EQ] = ACTIONS(7533), + [anon_sym_PLUS_EQ] = ACTIONS(7533), + [anon_sym_DASH_EQ] = ACTIONS(7533), + [anon_sym_LT_LT_EQ] = ACTIONS(7533), + [anon_sym_GT_GT_EQ] = ACTIONS(7533), + [anon_sym_AMP_EQ] = ACTIONS(7533), + [anon_sym_CARET_EQ] = ACTIONS(7533), + [anon_sym_PIPE_EQ] = ACTIONS(7533), + [anon_sym_and_eq] = ACTIONS(7531), + [anon_sym_or_eq] = ACTIONS(7531), + [anon_sym_xor_eq] = ACTIONS(7531), + [anon_sym_LT_EQ_GT] = ACTIONS(7533), + [anon_sym_or] = ACTIONS(7531), + [anon_sym_and] = ACTIONS(7531), + [anon_sym_bitor] = ACTIONS(7531), + [anon_sym_xor] = ACTIONS(7531), + [anon_sym_bitand] = ACTIONS(7531), + [anon_sym_not_eq] = ACTIONS(7531), + [anon_sym_DASH_DASH] = ACTIONS(7533), + [anon_sym_PLUS_PLUS] = ACTIONS(7533), + [anon_sym_DOT] = ACTIONS(7531), + [anon_sym_DOT_STAR] = ACTIONS(7533), + [anon_sym_DASH_GT] = ACTIONS(7533), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7531), + [anon_sym_override] = ACTIONS(7531), + [anon_sym_requires] = ACTIONS(7531), + [anon_sym_COLON_RBRACK] = ACTIONS(7533), }, - [STATE(2218)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(9742), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_explicit_object_parameter_declaration] = STATE(9742), - [sym_optional_parameter_declaration] = STATE(9742), - [sym_variadic_parameter_declaration] = STATE(9742), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1946), - [anon_sym_RPAREN] = ACTIONS(5299), + [STATE(2166)] = { + [sym_function_definition] = STATE(3355), + [sym_declaration] = STATE(3355), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6414), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_call_modifier] = STATE(2708), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(10965), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(5630), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(5631), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(6019), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7405), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -320564,1867 +328481,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(5313), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7535), + [anon_sym_struct] = ACTIONS(7537), + [anon_sym_union] = ACTIONS(7539), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - [sym_this] = ACTIONS(5315), - }, - [STATE(2219)] = { - [sym__abstract_declarator] = STATE(4452), - [sym_abstract_parenthesized_declarator] = STATE(4672), - [sym_abstract_pointer_declarator] = STATE(4672), - [sym_abstract_function_declarator] = STATE(4672), - [sym_abstract_array_declarator] = STATE(4672), - [sym_type_qualifier] = STATE(2163), - [sym_alignas_qualifier] = STATE(2278), - [sym_parameter_list] = STATE(1867), - [sym_abstract_reference_declarator] = STATE(4672), - [sym__function_declarator_seq] = STATE(4681), - [aux_sym__type_definition_type_repeat1] = STATE(2163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), - [anon_sym_COMMA] = ACTIONS(7003), - [anon_sym_RPAREN] = ACTIONS(7003), - [anon_sym_LPAREN2] = ACTIONS(6648), - [anon_sym_DASH] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(6650), - [anon_sym_SLASH] = ACTIONS(7005), - [anon_sym_PERCENT] = ACTIONS(7005), - [anon_sym_PIPE_PIPE] = ACTIONS(7003), - [anon_sym_AMP_AMP] = ACTIONS(6652), - [anon_sym_PIPE] = ACTIONS(7005), - [anon_sym_CARET] = ACTIONS(7005), - [anon_sym_AMP] = ACTIONS(6654), - [anon_sym_EQ_EQ] = ACTIONS(7003), - [anon_sym_BANG_EQ] = ACTIONS(7003), - [anon_sym_GT] = ACTIONS(7005), - [anon_sym_GT_EQ] = ACTIONS(7003), - [anon_sym_LT_EQ] = ACTIONS(7005), - [anon_sym_LT] = ACTIONS(7005), - [anon_sym_LT_LT] = ACTIONS(7005), - [anon_sym_GT_GT] = ACTIONS(7005), - [anon_sym___extension__] = ACTIONS(6656), - [anon_sym_LBRACK] = ACTIONS(6664), - [anon_sym_EQ] = ACTIONS(7005), - [anon_sym_const] = ACTIONS(6666), - [anon_sym_constexpr] = ACTIONS(6656), - [anon_sym_volatile] = ACTIONS(6656), - [anon_sym_restrict] = ACTIONS(6656), - [anon_sym___restrict__] = ACTIONS(6656), - [anon_sym__Atomic] = ACTIONS(6656), - [anon_sym__Noreturn] = ACTIONS(6656), - [anon_sym_noreturn] = ACTIONS(6656), - [anon_sym__Nonnull] = ACTIONS(6656), - [anon_sym_mutable] = ACTIONS(6656), - [anon_sym_constinit] = ACTIONS(6656), - [anon_sym_consteval] = ACTIONS(6656), - [anon_sym_alignas] = ACTIONS(6668), - [anon_sym__Alignas] = ACTIONS(6668), - [anon_sym_QMARK] = ACTIONS(7003), - [anon_sym_STAR_EQ] = ACTIONS(7003), - [anon_sym_SLASH_EQ] = ACTIONS(7003), - [anon_sym_PERCENT_EQ] = ACTIONS(7003), - [anon_sym_PLUS_EQ] = ACTIONS(7003), - [anon_sym_DASH_EQ] = ACTIONS(7003), - [anon_sym_LT_LT_EQ] = ACTIONS(7003), - [anon_sym_GT_GT_EQ] = ACTIONS(7003), - [anon_sym_AMP_EQ] = ACTIONS(7003), - [anon_sym_CARET_EQ] = ACTIONS(7003), - [anon_sym_PIPE_EQ] = ACTIONS(7003), - [anon_sym_and_eq] = ACTIONS(7003), - [anon_sym_or_eq] = ACTIONS(7003), - [anon_sym_xor_eq] = ACTIONS(7003), - [anon_sym_LT_EQ_GT] = ACTIONS(7003), - [anon_sym_or] = ACTIONS(7005), - [anon_sym_and] = ACTIONS(7005), - [anon_sym_bitor] = ACTIONS(7003), - [anon_sym_xor] = ACTIONS(7005), - [anon_sym_bitand] = ACTIONS(7003), - [anon_sym_not_eq] = ACTIONS(7003), - [anon_sym_DASH_DASH] = ACTIONS(7003), - [anon_sym_PLUS_PLUS] = ACTIONS(7003), - [anon_sym_DOT] = ACTIONS(7005), - [anon_sym_DOT_STAR] = ACTIONS(7003), - [anon_sym_DASH_GT] = ACTIONS(7005), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7003), - [anon_sym_override] = ACTIONS(7003), - [anon_sym_requires] = ACTIONS(7003), - [anon_sym_DASH_GT_STAR] = ACTIONS(7003), - }, - [STATE(2220)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(6627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), - [anon_sym_COMMA] = ACTIONS(7081), - [anon_sym_RPAREN] = ACTIONS(7081), - [anon_sym_LPAREN2] = ACTIONS(7081), - [anon_sym_DASH] = ACTIONS(7084), - [anon_sym_PLUS] = ACTIONS(7084), - [anon_sym_STAR] = ACTIONS(7084), - [anon_sym_SLASH] = ACTIONS(7084), - [anon_sym_PERCENT] = ACTIONS(7084), - [anon_sym_PIPE_PIPE] = ACTIONS(7081), - [anon_sym_AMP_AMP] = ACTIONS(7081), - [anon_sym_PIPE] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7084), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_EQ_EQ] = ACTIONS(7081), - [anon_sym_BANG_EQ] = ACTIONS(7081), - [anon_sym_GT] = ACTIONS(7084), - [anon_sym_GT_EQ] = ACTIONS(7081), - [anon_sym_LT_EQ] = ACTIONS(7084), - [anon_sym_LT] = ACTIONS(7084), - [anon_sym_LT_LT] = ACTIONS(7084), - [anon_sym_GT_GT] = ACTIONS(7084), - [anon_sym___extension__] = ACTIONS(7084), - [anon_sym___attribute__] = ACTIONS(7084), - [anon_sym___attribute] = ACTIONS(7084), - [anon_sym_LBRACE] = ACTIONS(7081), - [anon_sym_signed] = ACTIONS(7655), - [anon_sym_unsigned] = ACTIONS(7655), - [anon_sym_long] = ACTIONS(7655), - [anon_sym_short] = ACTIONS(7655), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_EQ] = ACTIONS(7084), - [anon_sym_const] = ACTIONS(7084), - [anon_sym_constexpr] = ACTIONS(7084), - [anon_sym_volatile] = ACTIONS(7084), - [anon_sym_restrict] = ACTIONS(7084), - [anon_sym___restrict__] = ACTIONS(7084), - [anon_sym__Atomic] = ACTIONS(7084), - [anon_sym__Noreturn] = ACTIONS(7084), - [anon_sym_noreturn] = ACTIONS(7084), - [anon_sym__Nonnull] = ACTIONS(7084), - [anon_sym_mutable] = ACTIONS(7084), - [anon_sym_constinit] = ACTIONS(7084), - [anon_sym_consteval] = ACTIONS(7084), - [anon_sym_alignas] = ACTIONS(7084), - [anon_sym__Alignas] = ACTIONS(7084), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(7081), - [anon_sym_STAR_EQ] = ACTIONS(7081), - [anon_sym_SLASH_EQ] = ACTIONS(7081), - [anon_sym_PERCENT_EQ] = ACTIONS(7081), - [anon_sym_PLUS_EQ] = ACTIONS(7081), - [anon_sym_DASH_EQ] = ACTIONS(7081), - [anon_sym_LT_LT_EQ] = ACTIONS(7081), - [anon_sym_GT_GT_EQ] = ACTIONS(7081), - [anon_sym_AMP_EQ] = ACTIONS(7081), - [anon_sym_CARET_EQ] = ACTIONS(7081), - [anon_sym_PIPE_EQ] = ACTIONS(7081), - [anon_sym_and_eq] = ACTIONS(7084), - [anon_sym_or_eq] = ACTIONS(7084), - [anon_sym_xor_eq] = ACTIONS(7084), - [anon_sym_LT_EQ_GT] = ACTIONS(7081), - [anon_sym_or] = ACTIONS(7084), - [anon_sym_and] = ACTIONS(7084), - [anon_sym_bitor] = ACTIONS(7084), - [anon_sym_xor] = ACTIONS(7084), - [anon_sym_bitand] = ACTIONS(7084), - [anon_sym_not_eq] = ACTIONS(7084), - [anon_sym_DASH_DASH] = ACTIONS(7081), - [anon_sym_PLUS_PLUS] = ACTIONS(7081), - [anon_sym_DOT] = ACTIONS(7084), - [anon_sym_DOT_STAR] = ACTIONS(7081), - [anon_sym_DASH_GT] = ACTIONS(7084), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7084), - [anon_sym_override] = ACTIONS(7084), - [anon_sym_requires] = ACTIONS(7084), - [anon_sym_DASH_GT_STAR] = ACTIONS(7081), - }, - [STATE(2221)] = { - [sym_type_qualifier] = STATE(2252), - [sym_alignas_qualifier] = STATE(2403), - [aux_sym__type_definition_type_repeat1] = STATE(2252), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6523), - [anon_sym_COMMA] = ACTIONS(6523), - [anon_sym_LPAREN2] = ACTIONS(6523), - [anon_sym_DASH] = ACTIONS(6521), - [anon_sym_PLUS] = ACTIONS(6521), - [anon_sym_STAR] = ACTIONS(6521), - [anon_sym_SLASH] = ACTIONS(6521), - [anon_sym_PERCENT] = ACTIONS(6521), - [anon_sym_PIPE_PIPE] = ACTIONS(6523), - [anon_sym_AMP_AMP] = ACTIONS(6523), - [anon_sym_PIPE] = ACTIONS(6521), - [anon_sym_CARET] = ACTIONS(6521), - [anon_sym_AMP] = ACTIONS(6521), - [anon_sym_EQ_EQ] = ACTIONS(6523), - [anon_sym_BANG_EQ] = ACTIONS(6523), - [anon_sym_GT] = ACTIONS(6521), - [anon_sym_GT_EQ] = ACTIONS(6523), - [anon_sym_LT_EQ] = ACTIONS(6521), - [anon_sym_LT] = ACTIONS(6521), - [anon_sym_LT_LT] = ACTIONS(6521), - [anon_sym_GT_GT] = ACTIONS(6521), - [anon_sym___extension__] = ACTIONS(6324), - [anon_sym___attribute__] = ACTIONS(6523), - [anon_sym___attribute] = ACTIONS(6521), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6523), - [anon_sym_LBRACK] = ACTIONS(6521), - [anon_sym_RBRACK] = ACTIONS(6523), - [anon_sym_EQ] = ACTIONS(6521), - [anon_sym_const] = ACTIONS(6332), - [anon_sym_constexpr] = ACTIONS(6324), - [anon_sym_volatile] = ACTIONS(6324), - [anon_sym_restrict] = ACTIONS(6324), - [anon_sym___restrict__] = ACTIONS(6324), - [anon_sym__Atomic] = ACTIONS(6324), - [anon_sym__Noreturn] = ACTIONS(6324), - [anon_sym_noreturn] = ACTIONS(6324), - [anon_sym__Nonnull] = ACTIONS(6324), - [anon_sym_mutable] = ACTIONS(6324), - [anon_sym_constinit] = ACTIONS(6324), - [anon_sym_consteval] = ACTIONS(6324), - [anon_sym_alignas] = ACTIONS(6334), - [anon_sym__Alignas] = ACTIONS(6334), - [anon_sym_QMARK] = ACTIONS(6523), - [anon_sym_STAR_EQ] = ACTIONS(6523), - [anon_sym_SLASH_EQ] = ACTIONS(6523), - [anon_sym_PERCENT_EQ] = ACTIONS(6523), - [anon_sym_PLUS_EQ] = ACTIONS(6523), - [anon_sym_DASH_EQ] = ACTIONS(6523), - [anon_sym_LT_LT_EQ] = ACTIONS(6523), - [anon_sym_GT_GT_EQ] = ACTIONS(6523), - [anon_sym_AMP_EQ] = ACTIONS(6523), - [anon_sym_CARET_EQ] = ACTIONS(6523), - [anon_sym_PIPE_EQ] = ACTIONS(6523), - [anon_sym_and_eq] = ACTIONS(6523), - [anon_sym_or_eq] = ACTIONS(6523), - [anon_sym_xor_eq] = ACTIONS(6523), - [anon_sym_LT_EQ_GT] = ACTIONS(6523), - [anon_sym_or] = ACTIONS(6521), - [anon_sym_and] = ACTIONS(6521), - [anon_sym_bitor] = ACTIONS(6523), - [anon_sym_xor] = ACTIONS(6521), - [anon_sym_bitand] = ACTIONS(6523), - [anon_sym_not_eq] = ACTIONS(6523), - [anon_sym_DASH_DASH] = ACTIONS(6523), - [anon_sym_PLUS_PLUS] = ACTIONS(6523), - [anon_sym_asm] = ACTIONS(6523), - [anon_sym___asm__] = ACTIONS(6523), - [anon_sym___asm] = ACTIONS(6521), - [anon_sym_DOT] = ACTIONS(6521), - [anon_sym_DOT_STAR] = ACTIONS(6523), - [anon_sym_DASH_GT] = ACTIONS(6523), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6523), - [anon_sym_override] = ACTIONS(6523), - [anon_sym_noexcept] = ACTIONS(6523), - [anon_sym_throw] = ACTIONS(6523), - [anon_sym_requires] = ACTIONS(6523), - }, - [STATE(2222)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(6627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6629), - [anon_sym_COMMA] = ACTIONS(6629), - [anon_sym_RPAREN] = ACTIONS(6629), - [anon_sym_LPAREN2] = ACTIONS(6629), - [anon_sym_DASH] = ACTIONS(6627), - [anon_sym_PLUS] = ACTIONS(6627), - [anon_sym_STAR] = ACTIONS(6627), - [anon_sym_SLASH] = ACTIONS(6627), - [anon_sym_PERCENT] = ACTIONS(6627), - [anon_sym_PIPE_PIPE] = ACTIONS(6629), - [anon_sym_AMP_AMP] = ACTIONS(6629), - [anon_sym_PIPE] = ACTIONS(6627), - [anon_sym_CARET] = ACTIONS(6627), - [anon_sym_AMP] = ACTIONS(6627), - [anon_sym_EQ_EQ] = ACTIONS(6629), - [anon_sym_BANG_EQ] = ACTIONS(6629), - [anon_sym_GT] = ACTIONS(6627), - [anon_sym_GT_EQ] = ACTIONS(6629), - [anon_sym_LT_EQ] = ACTIONS(6627), - [anon_sym_LT] = ACTIONS(6627), - [anon_sym_LT_LT] = ACTIONS(6627), - [anon_sym_GT_GT] = ACTIONS(6627), - [anon_sym___extension__] = ACTIONS(6627), - [anon_sym___attribute__] = ACTIONS(6627), - [anon_sym___attribute] = ACTIONS(6627), - [anon_sym_LBRACE] = ACTIONS(6629), - [anon_sym_signed] = ACTIONS(7655), - [anon_sym_unsigned] = ACTIONS(7655), - [anon_sym_long] = ACTIONS(7655), - [anon_sym_short] = ACTIONS(7655), - [anon_sym_LBRACK] = ACTIONS(6629), - [anon_sym_EQ] = ACTIONS(6627), - [anon_sym_const] = ACTIONS(6627), - [anon_sym_constexpr] = ACTIONS(6627), - [anon_sym_volatile] = ACTIONS(6627), - [anon_sym_restrict] = ACTIONS(6627), - [anon_sym___restrict__] = ACTIONS(6627), - [anon_sym__Atomic] = ACTIONS(6627), - [anon_sym__Noreturn] = ACTIONS(6627), - [anon_sym_noreturn] = ACTIONS(6627), - [anon_sym__Nonnull] = ACTIONS(6627), - [anon_sym_mutable] = ACTIONS(6627), - [anon_sym_constinit] = ACTIONS(6627), - [anon_sym_consteval] = ACTIONS(6627), - [anon_sym_alignas] = ACTIONS(6627), - [anon_sym__Alignas] = ACTIONS(6627), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(6629), - [anon_sym_STAR_EQ] = ACTIONS(6629), - [anon_sym_SLASH_EQ] = ACTIONS(6629), - [anon_sym_PERCENT_EQ] = ACTIONS(6629), - [anon_sym_PLUS_EQ] = ACTIONS(6629), - [anon_sym_DASH_EQ] = ACTIONS(6629), - [anon_sym_LT_LT_EQ] = ACTIONS(6629), - [anon_sym_GT_GT_EQ] = ACTIONS(6629), - [anon_sym_AMP_EQ] = ACTIONS(6629), - [anon_sym_CARET_EQ] = ACTIONS(6629), - [anon_sym_PIPE_EQ] = ACTIONS(6629), - [anon_sym_and_eq] = ACTIONS(6627), - [anon_sym_or_eq] = ACTIONS(6627), - [anon_sym_xor_eq] = ACTIONS(6627), - [anon_sym_LT_EQ_GT] = ACTIONS(6629), - [anon_sym_or] = ACTIONS(6627), - [anon_sym_and] = ACTIONS(6627), - [anon_sym_bitor] = ACTIONS(6627), - [anon_sym_xor] = ACTIONS(6627), - [anon_sym_bitand] = ACTIONS(6627), - [anon_sym_not_eq] = ACTIONS(6627), - [anon_sym_DASH_DASH] = ACTIONS(6629), - [anon_sym_PLUS_PLUS] = ACTIONS(6629), - [anon_sym_DOT] = ACTIONS(6627), - [anon_sym_DOT_STAR] = ACTIONS(6629), - [anon_sym_DASH_GT] = ACTIONS(6627), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6627), - [anon_sym_override] = ACTIONS(6627), - [anon_sym_requires] = ACTIONS(6627), - [anon_sym_DASH_GT_STAR] = ACTIONS(6629), - }, - [STATE(2223)] = { - [sym_type_qualifier] = STATE(2239), - [sym_alignas_qualifier] = STATE(2372), - [aux_sym__type_definition_type_repeat1] = STATE(2239), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6523), - [anon_sym_COMMA] = ACTIONS(6523), - [anon_sym_LPAREN2] = ACTIONS(6523), - [anon_sym_DASH] = ACTIONS(6521), - [anon_sym_PLUS] = ACTIONS(6521), - [anon_sym_STAR] = ACTIONS(6521), - [anon_sym_SLASH] = ACTIONS(6521), - [anon_sym_PERCENT] = ACTIONS(6521), - [anon_sym_PIPE_PIPE] = ACTIONS(6523), - [anon_sym_AMP_AMP] = ACTIONS(6523), - [anon_sym_PIPE] = ACTIONS(6521), - [anon_sym_CARET] = ACTIONS(6521), - [anon_sym_AMP] = ACTIONS(6521), - [anon_sym_EQ_EQ] = ACTIONS(6523), - [anon_sym_BANG_EQ] = ACTIONS(6523), - [anon_sym_GT] = ACTIONS(6521), - [anon_sym_GT_EQ] = ACTIONS(6521), - [anon_sym_LT_EQ] = ACTIONS(6521), - [anon_sym_LT] = ACTIONS(6521), - [anon_sym_LT_LT] = ACTIONS(6521), - [anon_sym_GT_GT] = ACTIONS(6521), - [anon_sym___extension__] = ACTIONS(6359), - [anon_sym___attribute__] = ACTIONS(6523), - [anon_sym___attribute] = ACTIONS(6521), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6523), - [anon_sym_LBRACK] = ACTIONS(6521), - [anon_sym_EQ] = ACTIONS(6521), - [anon_sym_const] = ACTIONS(6367), - [anon_sym_constexpr] = ACTIONS(6359), - [anon_sym_volatile] = ACTIONS(6359), - [anon_sym_restrict] = ACTIONS(6359), - [anon_sym___restrict__] = ACTIONS(6359), - [anon_sym__Atomic] = ACTIONS(6359), - [anon_sym__Noreturn] = ACTIONS(6359), - [anon_sym_noreturn] = ACTIONS(6359), - [anon_sym__Nonnull] = ACTIONS(6359), - [anon_sym_mutable] = ACTIONS(6359), - [anon_sym_constinit] = ACTIONS(6359), - [anon_sym_consteval] = ACTIONS(6359), - [anon_sym_alignas] = ACTIONS(6369), - [anon_sym__Alignas] = ACTIONS(6369), - [anon_sym_QMARK] = ACTIONS(6523), - [anon_sym_STAR_EQ] = ACTIONS(6523), - [anon_sym_SLASH_EQ] = ACTIONS(6523), - [anon_sym_PERCENT_EQ] = ACTIONS(6523), - [anon_sym_PLUS_EQ] = ACTIONS(6523), - [anon_sym_DASH_EQ] = ACTIONS(6523), - [anon_sym_LT_LT_EQ] = ACTIONS(6523), - [anon_sym_GT_GT_EQ] = ACTIONS(6521), - [anon_sym_AMP_EQ] = ACTIONS(6523), - [anon_sym_CARET_EQ] = ACTIONS(6523), - [anon_sym_PIPE_EQ] = ACTIONS(6523), - [anon_sym_and_eq] = ACTIONS(6523), - [anon_sym_or_eq] = ACTIONS(6523), - [anon_sym_xor_eq] = ACTIONS(6523), - [anon_sym_LT_EQ_GT] = ACTIONS(6523), - [anon_sym_or] = ACTIONS(6521), - [anon_sym_and] = ACTIONS(6521), - [anon_sym_bitor] = ACTIONS(6523), - [anon_sym_xor] = ACTIONS(6521), - [anon_sym_bitand] = ACTIONS(6523), - [anon_sym_not_eq] = ACTIONS(6523), - [anon_sym_DASH_DASH] = ACTIONS(6523), - [anon_sym_PLUS_PLUS] = ACTIONS(6523), - [anon_sym_asm] = ACTIONS(6523), - [anon_sym___asm__] = ACTIONS(6523), - [anon_sym___asm] = ACTIONS(6521), - [anon_sym_DOT] = ACTIONS(6521), - [anon_sym_DOT_STAR] = ACTIONS(6523), - [anon_sym_DASH_GT] = ACTIONS(6523), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6523), - [anon_sym_override] = ACTIONS(6523), - [anon_sym_GT2] = ACTIONS(6523), - [anon_sym_noexcept] = ACTIONS(6523), - [anon_sym_throw] = ACTIONS(6523), - [anon_sym_requires] = ACTIONS(6523), - }, - [STATE(2224)] = { - [sym__abstract_declarator] = STATE(4542), - [sym_abstract_parenthesized_declarator] = STATE(4956), - [sym_abstract_pointer_declarator] = STATE(4956), - [sym_abstract_function_declarator] = STATE(4956), - [sym_abstract_array_declarator] = STATE(4956), - [sym_type_qualifier] = STATE(2225), - [sym_alignas_qualifier] = STATE(2295), - [sym_parameter_list] = STATE(1874), - [sym_abstract_reference_declarator] = STATE(4956), - [sym__function_declarator_seq] = STATE(4970), - [aux_sym__type_definition_type_repeat1] = STATE(2225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), - [anon_sym_COMMA] = ACTIONS(6991), - [anon_sym_LPAREN2] = ACTIONS(6724), - [anon_sym_DASH] = ACTIONS(6993), - [anon_sym_PLUS] = ACTIONS(6993), - [anon_sym_STAR] = ACTIONS(6726), - [anon_sym_SLASH] = ACTIONS(6993), - [anon_sym_PERCENT] = ACTIONS(6993), - [anon_sym_PIPE_PIPE] = ACTIONS(6991), - [anon_sym_AMP_AMP] = ACTIONS(6728), - [anon_sym_PIPE] = ACTIONS(6993), - [anon_sym_CARET] = ACTIONS(6993), - [anon_sym_AMP] = ACTIONS(6730), - [anon_sym_EQ_EQ] = ACTIONS(6991), - [anon_sym_BANG_EQ] = ACTIONS(6991), - [anon_sym_GT] = ACTIONS(6993), - [anon_sym_GT_EQ] = ACTIONS(6993), - [anon_sym_LT_EQ] = ACTIONS(6993), - [anon_sym_LT] = ACTIONS(6993), - [anon_sym_LT_LT] = ACTIONS(6993), - [anon_sym_GT_GT] = ACTIONS(6993), - [anon_sym___extension__] = ACTIONS(6732), - [anon_sym_LBRACK] = ACTIONS(6740), - [anon_sym_EQ] = ACTIONS(6993), - [anon_sym_const] = ACTIONS(6742), - [anon_sym_constexpr] = ACTIONS(6732), - [anon_sym_volatile] = ACTIONS(6732), - [anon_sym_restrict] = ACTIONS(6732), - [anon_sym___restrict__] = ACTIONS(6732), - [anon_sym__Atomic] = ACTIONS(6732), - [anon_sym__Noreturn] = ACTIONS(6732), - [anon_sym_noreturn] = ACTIONS(6732), - [anon_sym__Nonnull] = ACTIONS(6732), - [anon_sym_mutable] = ACTIONS(6732), - [anon_sym_constinit] = ACTIONS(6732), - [anon_sym_consteval] = ACTIONS(6732), - [anon_sym_alignas] = ACTIONS(6744), - [anon_sym__Alignas] = ACTIONS(6744), - [anon_sym_QMARK] = ACTIONS(6991), - [anon_sym_STAR_EQ] = ACTIONS(6991), - [anon_sym_SLASH_EQ] = ACTIONS(6991), - [anon_sym_PERCENT_EQ] = ACTIONS(6991), - [anon_sym_PLUS_EQ] = ACTIONS(6991), - [anon_sym_DASH_EQ] = ACTIONS(6991), - [anon_sym_LT_LT_EQ] = ACTIONS(6991), - [anon_sym_GT_GT_EQ] = ACTIONS(6993), - [anon_sym_AMP_EQ] = ACTIONS(6991), - [anon_sym_CARET_EQ] = ACTIONS(6991), - [anon_sym_PIPE_EQ] = ACTIONS(6991), - [anon_sym_and_eq] = ACTIONS(6991), - [anon_sym_or_eq] = ACTIONS(6991), - [anon_sym_xor_eq] = ACTIONS(6991), - [anon_sym_LT_EQ_GT] = ACTIONS(6991), - [anon_sym_or] = ACTIONS(6993), - [anon_sym_and] = ACTIONS(6993), - [anon_sym_bitor] = ACTIONS(6991), - [anon_sym_xor] = ACTIONS(6993), - [anon_sym_bitand] = ACTIONS(6991), - [anon_sym_not_eq] = ACTIONS(6991), - [anon_sym_DASH_DASH] = ACTIONS(6991), - [anon_sym_PLUS_PLUS] = ACTIONS(6991), - [anon_sym_DOT] = ACTIONS(6993), - [anon_sym_DOT_STAR] = ACTIONS(6991), - [anon_sym_DASH_GT] = ACTIONS(6991), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6991), - [anon_sym_override] = ACTIONS(6991), - [anon_sym_GT2] = ACTIONS(6991), - [anon_sym_requires] = ACTIONS(6991), - }, - [STATE(2225)] = { - [sym__abstract_declarator] = STATE(4543), - [sym_abstract_parenthesized_declarator] = STATE(4956), - [sym_abstract_pointer_declarator] = STATE(4956), - [sym_abstract_function_declarator] = STATE(4956), - [sym_abstract_array_declarator] = STATE(4956), - [sym_type_qualifier] = STATE(2186), - [sym_alignas_qualifier] = STATE(2295), - [sym_parameter_list] = STATE(1874), - [sym_abstract_reference_declarator] = STATE(4956), - [sym__function_declarator_seq] = STATE(4970), - [aux_sym__type_definition_type_repeat1] = STATE(2186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), - [anon_sym_COMMA] = ACTIONS(6995), - [anon_sym_LPAREN2] = ACTIONS(6724), - [anon_sym_DASH] = ACTIONS(6997), - [anon_sym_PLUS] = ACTIONS(6997), - [anon_sym_STAR] = ACTIONS(6726), - [anon_sym_SLASH] = ACTIONS(6997), - [anon_sym_PERCENT] = ACTIONS(6997), - [anon_sym_PIPE_PIPE] = ACTIONS(6995), - [anon_sym_AMP_AMP] = ACTIONS(6728), - [anon_sym_PIPE] = ACTIONS(6997), - [anon_sym_CARET] = ACTIONS(6997), - [anon_sym_AMP] = ACTIONS(6730), - [anon_sym_EQ_EQ] = ACTIONS(6995), - [anon_sym_BANG_EQ] = ACTIONS(6995), - [anon_sym_GT] = ACTIONS(6997), - [anon_sym_GT_EQ] = ACTIONS(6997), - [anon_sym_LT_EQ] = ACTIONS(6997), - [anon_sym_LT] = ACTIONS(6997), - [anon_sym_LT_LT] = ACTIONS(6997), - [anon_sym_GT_GT] = ACTIONS(6997), - [anon_sym___extension__] = ACTIONS(6732), - [anon_sym_LBRACK] = ACTIONS(6740), - [anon_sym_EQ] = ACTIONS(6997), - [anon_sym_const] = ACTIONS(6742), - [anon_sym_constexpr] = ACTIONS(6732), - [anon_sym_volatile] = ACTIONS(6732), - [anon_sym_restrict] = ACTIONS(6732), - [anon_sym___restrict__] = ACTIONS(6732), - [anon_sym__Atomic] = ACTIONS(6732), - [anon_sym__Noreturn] = ACTIONS(6732), - [anon_sym_noreturn] = ACTIONS(6732), - [anon_sym__Nonnull] = ACTIONS(6732), - [anon_sym_mutable] = ACTIONS(6732), - [anon_sym_constinit] = ACTIONS(6732), - [anon_sym_consteval] = ACTIONS(6732), - [anon_sym_alignas] = ACTIONS(6744), - [anon_sym__Alignas] = ACTIONS(6744), - [anon_sym_QMARK] = ACTIONS(6995), - [anon_sym_STAR_EQ] = ACTIONS(6995), - [anon_sym_SLASH_EQ] = ACTIONS(6995), - [anon_sym_PERCENT_EQ] = ACTIONS(6995), - [anon_sym_PLUS_EQ] = ACTIONS(6995), - [anon_sym_DASH_EQ] = ACTIONS(6995), - [anon_sym_LT_LT_EQ] = ACTIONS(6995), - [anon_sym_GT_GT_EQ] = ACTIONS(6997), - [anon_sym_AMP_EQ] = ACTIONS(6995), - [anon_sym_CARET_EQ] = ACTIONS(6995), - [anon_sym_PIPE_EQ] = ACTIONS(6995), - [anon_sym_and_eq] = ACTIONS(6995), - [anon_sym_or_eq] = ACTIONS(6995), - [anon_sym_xor_eq] = ACTIONS(6995), - [anon_sym_LT_EQ_GT] = ACTIONS(6995), - [anon_sym_or] = ACTIONS(6997), - [anon_sym_and] = ACTIONS(6997), - [anon_sym_bitor] = ACTIONS(6995), - [anon_sym_xor] = ACTIONS(6997), - [anon_sym_bitand] = ACTIONS(6995), - [anon_sym_not_eq] = ACTIONS(6995), - [anon_sym_DASH_DASH] = ACTIONS(6995), - [anon_sym_PLUS_PLUS] = ACTIONS(6995), - [anon_sym_DOT] = ACTIONS(6997), - [anon_sym_DOT_STAR] = ACTIONS(6995), - [anon_sym_DASH_GT] = ACTIONS(6995), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6995), - [anon_sym_override] = ACTIONS(6995), - [anon_sym_GT2] = ACTIONS(6995), - [anon_sym_requires] = ACTIONS(6995), - }, - [STATE(2226)] = { - [sym__abstract_declarator] = STATE(4544), - [sym_abstract_parenthesized_declarator] = STATE(4956), - [sym_abstract_pointer_declarator] = STATE(4956), - [sym_abstract_function_declarator] = STATE(4956), - [sym_abstract_array_declarator] = STATE(4956), - [sym_type_qualifier] = STATE(2228), - [sym_alignas_qualifier] = STATE(2295), - [sym_parameter_list] = STATE(1874), - [sym_abstract_reference_declarator] = STATE(4956), - [sym__function_declarator_seq] = STATE(4970), - [aux_sym__type_definition_type_repeat1] = STATE(2228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), - [anon_sym_COMMA] = ACTIONS(6999), - [anon_sym_LPAREN2] = ACTIONS(6724), - [anon_sym_DASH] = ACTIONS(7001), - [anon_sym_PLUS] = ACTIONS(7001), - [anon_sym_STAR] = ACTIONS(6726), - [anon_sym_SLASH] = ACTIONS(7001), - [anon_sym_PERCENT] = ACTIONS(7001), - [anon_sym_PIPE_PIPE] = ACTIONS(6999), - [anon_sym_AMP_AMP] = ACTIONS(6728), - [anon_sym_PIPE] = ACTIONS(7001), - [anon_sym_CARET] = ACTIONS(7001), - [anon_sym_AMP] = ACTIONS(6730), - [anon_sym_EQ_EQ] = ACTIONS(6999), - [anon_sym_BANG_EQ] = ACTIONS(6999), - [anon_sym_GT] = ACTIONS(7001), - [anon_sym_GT_EQ] = ACTIONS(7001), - [anon_sym_LT_EQ] = ACTIONS(7001), - [anon_sym_LT] = ACTIONS(7001), - [anon_sym_LT_LT] = ACTIONS(7001), - [anon_sym_GT_GT] = ACTIONS(7001), - [anon_sym___extension__] = ACTIONS(6732), - [anon_sym_LBRACK] = ACTIONS(6740), - [anon_sym_EQ] = ACTIONS(7001), - [anon_sym_const] = ACTIONS(6742), - [anon_sym_constexpr] = ACTIONS(6732), - [anon_sym_volatile] = ACTIONS(6732), - [anon_sym_restrict] = ACTIONS(6732), - [anon_sym___restrict__] = ACTIONS(6732), - [anon_sym__Atomic] = ACTIONS(6732), - [anon_sym__Noreturn] = ACTIONS(6732), - [anon_sym_noreturn] = ACTIONS(6732), - [anon_sym__Nonnull] = ACTIONS(6732), - [anon_sym_mutable] = ACTIONS(6732), - [anon_sym_constinit] = ACTIONS(6732), - [anon_sym_consteval] = ACTIONS(6732), - [anon_sym_alignas] = ACTIONS(6744), - [anon_sym__Alignas] = ACTIONS(6744), - [anon_sym_QMARK] = ACTIONS(6999), - [anon_sym_STAR_EQ] = ACTIONS(6999), - [anon_sym_SLASH_EQ] = ACTIONS(6999), - [anon_sym_PERCENT_EQ] = ACTIONS(6999), - [anon_sym_PLUS_EQ] = ACTIONS(6999), - [anon_sym_DASH_EQ] = ACTIONS(6999), - [anon_sym_LT_LT_EQ] = ACTIONS(6999), - [anon_sym_GT_GT_EQ] = ACTIONS(7001), - [anon_sym_AMP_EQ] = ACTIONS(6999), - [anon_sym_CARET_EQ] = ACTIONS(6999), - [anon_sym_PIPE_EQ] = ACTIONS(6999), - [anon_sym_and_eq] = ACTIONS(6999), - [anon_sym_or_eq] = ACTIONS(6999), - [anon_sym_xor_eq] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(6999), - [anon_sym_or] = ACTIONS(7001), - [anon_sym_and] = ACTIONS(7001), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(7001), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(6999), - [anon_sym_PLUS_PLUS] = ACTIONS(6999), - [anon_sym_DOT] = ACTIONS(7001), - [anon_sym_DOT_STAR] = ACTIONS(6999), - [anon_sym_DASH_GT] = ACTIONS(6999), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6999), - [anon_sym_override] = ACTIONS(6999), - [anon_sym_GT2] = ACTIONS(6999), - [anon_sym_requires] = ACTIONS(6999), - }, - [STATE(2227)] = { - [sym__abstract_declarator] = STATE(4539), - [sym_abstract_parenthesized_declarator] = STATE(4956), - [sym_abstract_pointer_declarator] = STATE(4956), - [sym_abstract_function_declarator] = STATE(4956), - [sym_abstract_array_declarator] = STATE(4956), - [sym_type_qualifier] = STATE(2186), - [sym_alignas_qualifier] = STATE(2295), - [sym_parameter_list] = STATE(1874), - [sym_abstract_reference_declarator] = STATE(4956), - [sym__function_declarator_seq] = STATE(4970), - [aux_sym__type_definition_type_repeat1] = STATE(2186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6724), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6726), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(6728), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(6730), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6495), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym___extension__] = ACTIONS(6732), - [anon_sym_LBRACK] = ACTIONS(6740), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6742), - [anon_sym_constexpr] = ACTIONS(6732), - [anon_sym_volatile] = ACTIONS(6732), - [anon_sym_restrict] = ACTIONS(6732), - [anon_sym___restrict__] = ACTIONS(6732), - [anon_sym__Atomic] = ACTIONS(6732), - [anon_sym__Noreturn] = ACTIONS(6732), - [anon_sym_noreturn] = ACTIONS(6732), - [anon_sym__Nonnull] = ACTIONS(6732), - [anon_sym_mutable] = ACTIONS(6732), - [anon_sym_constinit] = ACTIONS(6732), - [anon_sym_consteval] = ACTIONS(6732), - [anon_sym_alignas] = ACTIONS(6744), - [anon_sym__Alignas] = ACTIONS(6744), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6495), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_and_eq] = ACTIONS(6497), - [anon_sym_or_eq] = ACTIONS(6497), - [anon_sym_xor_eq] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6497), - [anon_sym_override] = ACTIONS(6497), - [anon_sym_GT2] = ACTIONS(6497), - [anon_sym_requires] = ACTIONS(6497), - }, - [STATE(2228)] = { - [sym__abstract_declarator] = STATE(4545), - [sym_abstract_parenthesized_declarator] = STATE(4956), - [sym_abstract_pointer_declarator] = STATE(4956), - [sym_abstract_function_declarator] = STATE(4956), - [sym_abstract_array_declarator] = STATE(4956), - [sym_type_qualifier] = STATE(2186), - [sym_alignas_qualifier] = STATE(2295), - [sym_parameter_list] = STATE(1874), - [sym_abstract_reference_declarator] = STATE(4956), - [sym__function_declarator_seq] = STATE(4970), - [aux_sym__type_definition_type_repeat1] = STATE(2186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), - [anon_sym_COMMA] = ACTIONS(7003), - [anon_sym_LPAREN2] = ACTIONS(6724), - [anon_sym_DASH] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(6726), - [anon_sym_SLASH] = ACTIONS(7005), - [anon_sym_PERCENT] = ACTIONS(7005), - [anon_sym_PIPE_PIPE] = ACTIONS(7003), - [anon_sym_AMP_AMP] = ACTIONS(6728), - [anon_sym_PIPE] = ACTIONS(7005), - [anon_sym_CARET] = ACTIONS(7005), - [anon_sym_AMP] = ACTIONS(6730), - [anon_sym_EQ_EQ] = ACTIONS(7003), - [anon_sym_BANG_EQ] = ACTIONS(7003), - [anon_sym_GT] = ACTIONS(7005), - [anon_sym_GT_EQ] = ACTIONS(7005), - [anon_sym_LT_EQ] = ACTIONS(7005), - [anon_sym_LT] = ACTIONS(7005), - [anon_sym_LT_LT] = ACTIONS(7005), - [anon_sym_GT_GT] = ACTIONS(7005), - [anon_sym___extension__] = ACTIONS(6732), - [anon_sym_LBRACK] = ACTIONS(6740), - [anon_sym_EQ] = ACTIONS(7005), - [anon_sym_const] = ACTIONS(6742), - [anon_sym_constexpr] = ACTIONS(6732), - [anon_sym_volatile] = ACTIONS(6732), - [anon_sym_restrict] = ACTIONS(6732), - [anon_sym___restrict__] = ACTIONS(6732), - [anon_sym__Atomic] = ACTIONS(6732), - [anon_sym__Noreturn] = ACTIONS(6732), - [anon_sym_noreturn] = ACTIONS(6732), - [anon_sym__Nonnull] = ACTIONS(6732), - [anon_sym_mutable] = ACTIONS(6732), - [anon_sym_constinit] = ACTIONS(6732), - [anon_sym_consteval] = ACTIONS(6732), - [anon_sym_alignas] = ACTIONS(6744), - [anon_sym__Alignas] = ACTIONS(6744), - [anon_sym_QMARK] = ACTIONS(7003), - [anon_sym_STAR_EQ] = ACTIONS(7003), - [anon_sym_SLASH_EQ] = ACTIONS(7003), - [anon_sym_PERCENT_EQ] = ACTIONS(7003), - [anon_sym_PLUS_EQ] = ACTIONS(7003), - [anon_sym_DASH_EQ] = ACTIONS(7003), - [anon_sym_LT_LT_EQ] = ACTIONS(7003), - [anon_sym_GT_GT_EQ] = ACTIONS(7005), - [anon_sym_AMP_EQ] = ACTIONS(7003), - [anon_sym_CARET_EQ] = ACTIONS(7003), - [anon_sym_PIPE_EQ] = ACTIONS(7003), - [anon_sym_and_eq] = ACTIONS(7003), - [anon_sym_or_eq] = ACTIONS(7003), - [anon_sym_xor_eq] = ACTIONS(7003), - [anon_sym_LT_EQ_GT] = ACTIONS(7003), - [anon_sym_or] = ACTIONS(7005), - [anon_sym_and] = ACTIONS(7005), - [anon_sym_bitor] = ACTIONS(7003), - [anon_sym_xor] = ACTIONS(7005), - [anon_sym_bitand] = ACTIONS(7003), - [anon_sym_not_eq] = ACTIONS(7003), - [anon_sym_DASH_DASH] = ACTIONS(7003), - [anon_sym_PLUS_PLUS] = ACTIONS(7003), - [anon_sym_DOT] = ACTIONS(7005), - [anon_sym_DOT_STAR] = ACTIONS(7003), - [anon_sym_DASH_GT] = ACTIONS(7003), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7003), - [anon_sym_override] = ACTIONS(7003), - [anon_sym_GT2] = ACTIONS(7003), - [anon_sym_requires] = ACTIONS(7003), - }, - [STATE(2229)] = { - [sym__abstract_declarator] = STATE(4541), - [sym_abstract_parenthesized_declarator] = STATE(4956), - [sym_abstract_pointer_declarator] = STATE(4956), - [sym_abstract_function_declarator] = STATE(4956), - [sym_abstract_array_declarator] = STATE(4956), - [sym_type_qualifier] = STATE(2186), - [sym_alignas_qualifier] = STATE(2295), - [sym_parameter_list] = STATE(1874), - [sym_abstract_reference_declarator] = STATE(4956), - [sym__function_declarator_seq] = STATE(4970), - [aux_sym__type_definition_type_repeat1] = STATE(2186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), - [anon_sym_COMMA] = ACTIONS(7007), - [anon_sym_LPAREN2] = ACTIONS(6724), - [anon_sym_DASH] = ACTIONS(7009), - [anon_sym_PLUS] = ACTIONS(7009), - [anon_sym_STAR] = ACTIONS(6726), - [anon_sym_SLASH] = ACTIONS(7009), - [anon_sym_PERCENT] = ACTIONS(7009), - [anon_sym_PIPE_PIPE] = ACTIONS(7007), - [anon_sym_AMP_AMP] = ACTIONS(6728), - [anon_sym_PIPE] = ACTIONS(7009), - [anon_sym_CARET] = ACTIONS(7009), - [anon_sym_AMP] = ACTIONS(6730), - [anon_sym_EQ_EQ] = ACTIONS(7007), - [anon_sym_BANG_EQ] = ACTIONS(7007), - [anon_sym_GT] = ACTIONS(7009), - [anon_sym_GT_EQ] = ACTIONS(7009), - [anon_sym_LT_EQ] = ACTIONS(7009), - [anon_sym_LT] = ACTIONS(7009), - [anon_sym_LT_LT] = ACTIONS(7009), - [anon_sym_GT_GT] = ACTIONS(7009), - [anon_sym___extension__] = ACTIONS(6732), - [anon_sym_LBRACK] = ACTIONS(6740), - [anon_sym_EQ] = ACTIONS(7009), - [anon_sym_const] = ACTIONS(6742), - [anon_sym_constexpr] = ACTIONS(6732), - [anon_sym_volatile] = ACTIONS(6732), - [anon_sym_restrict] = ACTIONS(6732), - [anon_sym___restrict__] = ACTIONS(6732), - [anon_sym__Atomic] = ACTIONS(6732), - [anon_sym__Noreturn] = ACTIONS(6732), - [anon_sym_noreturn] = ACTIONS(6732), - [anon_sym__Nonnull] = ACTIONS(6732), - [anon_sym_mutable] = ACTIONS(6732), - [anon_sym_constinit] = ACTIONS(6732), - [anon_sym_consteval] = ACTIONS(6732), - [anon_sym_alignas] = ACTIONS(6744), - [anon_sym__Alignas] = ACTIONS(6744), - [anon_sym_QMARK] = ACTIONS(7007), - [anon_sym_STAR_EQ] = ACTIONS(7007), - [anon_sym_SLASH_EQ] = ACTIONS(7007), - [anon_sym_PERCENT_EQ] = ACTIONS(7007), - [anon_sym_PLUS_EQ] = ACTIONS(7007), - [anon_sym_DASH_EQ] = ACTIONS(7007), - [anon_sym_LT_LT_EQ] = ACTIONS(7007), - [anon_sym_GT_GT_EQ] = ACTIONS(7009), - [anon_sym_AMP_EQ] = ACTIONS(7007), - [anon_sym_CARET_EQ] = ACTIONS(7007), - [anon_sym_PIPE_EQ] = ACTIONS(7007), - [anon_sym_and_eq] = ACTIONS(7007), - [anon_sym_or_eq] = ACTIONS(7007), - [anon_sym_xor_eq] = ACTIONS(7007), - [anon_sym_LT_EQ_GT] = ACTIONS(7007), - [anon_sym_or] = ACTIONS(7009), - [anon_sym_and] = ACTIONS(7009), - [anon_sym_bitor] = ACTIONS(7007), - [anon_sym_xor] = ACTIONS(7009), - [anon_sym_bitand] = ACTIONS(7007), - [anon_sym_not_eq] = ACTIONS(7007), - [anon_sym_DASH_DASH] = ACTIONS(7007), - [anon_sym_PLUS_PLUS] = ACTIONS(7007), - [anon_sym_DOT] = ACTIONS(7009), - [anon_sym_DOT_STAR] = ACTIONS(7007), - [anon_sym_DASH_GT] = ACTIONS(7007), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7007), - [anon_sym_override] = ACTIONS(7007), - [anon_sym_GT2] = ACTIONS(7007), - [anon_sym_requires] = ACTIONS(7007), - }, - [STATE(2230)] = { - [sym__abstract_declarator] = STATE(4534), - [sym_abstract_parenthesized_declarator] = STATE(4966), - [sym_abstract_pointer_declarator] = STATE(4966), - [sym_abstract_function_declarator] = STATE(4966), - [sym_abstract_array_declarator] = STATE(4966), - [sym_type_qualifier] = STATE(2231), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1872), - [sym_abstract_reference_declarator] = STATE(4966), - [sym__function_declarator_seq] = STATE(4975), - [aux_sym__type_definition_type_repeat1] = STATE(2231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), - [anon_sym_COMMA] = ACTIONS(6991), - [anon_sym_LPAREN2] = ACTIONS(6766), - [anon_sym_DASH] = ACTIONS(6993), - [anon_sym_PLUS] = ACTIONS(6993), - [anon_sym_STAR] = ACTIONS(6768), - [anon_sym_SLASH] = ACTIONS(6993), - [anon_sym_PERCENT] = ACTIONS(6993), - [anon_sym_PIPE_PIPE] = ACTIONS(6991), - [anon_sym_AMP_AMP] = ACTIONS(6770), - [anon_sym_PIPE] = ACTIONS(6993), - [anon_sym_CARET] = ACTIONS(6993), - [anon_sym_AMP] = ACTIONS(6772), - [anon_sym_EQ_EQ] = ACTIONS(6991), - [anon_sym_BANG_EQ] = ACTIONS(6991), - [anon_sym_GT] = ACTIONS(6993), - [anon_sym_GT_EQ] = ACTIONS(6991), - [anon_sym_LT_EQ] = ACTIONS(6993), - [anon_sym_LT] = ACTIONS(6993), - [anon_sym_LT_LT] = ACTIONS(6993), - [anon_sym_GT_GT] = ACTIONS(6993), - [anon_sym___extension__] = ACTIONS(6774), - [anon_sym_LBRACK] = ACTIONS(6782), - [anon_sym_RBRACK] = ACTIONS(6991), - [anon_sym_EQ] = ACTIONS(6993), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6774), - [anon_sym_volatile] = ACTIONS(6774), - [anon_sym_restrict] = ACTIONS(6774), - [anon_sym___restrict__] = ACTIONS(6774), - [anon_sym__Atomic] = ACTIONS(6774), - [anon_sym__Noreturn] = ACTIONS(6774), - [anon_sym_noreturn] = ACTIONS(6774), - [anon_sym__Nonnull] = ACTIONS(6774), - [anon_sym_mutable] = ACTIONS(6774), - [anon_sym_constinit] = ACTIONS(6774), - [anon_sym_consteval] = ACTIONS(6774), - [anon_sym_alignas] = ACTIONS(6784), - [anon_sym__Alignas] = ACTIONS(6784), - [anon_sym_QMARK] = ACTIONS(6991), - [anon_sym_STAR_EQ] = ACTIONS(6991), - [anon_sym_SLASH_EQ] = ACTIONS(6991), - [anon_sym_PERCENT_EQ] = ACTIONS(6991), - [anon_sym_PLUS_EQ] = ACTIONS(6991), - [anon_sym_DASH_EQ] = ACTIONS(6991), - [anon_sym_LT_LT_EQ] = ACTIONS(6991), - [anon_sym_GT_GT_EQ] = ACTIONS(6991), - [anon_sym_AMP_EQ] = ACTIONS(6991), - [anon_sym_CARET_EQ] = ACTIONS(6991), - [anon_sym_PIPE_EQ] = ACTIONS(6991), - [anon_sym_and_eq] = ACTIONS(6991), - [anon_sym_or_eq] = ACTIONS(6991), - [anon_sym_xor_eq] = ACTIONS(6991), - [anon_sym_LT_EQ_GT] = ACTIONS(6991), - [anon_sym_or] = ACTIONS(6993), - [anon_sym_and] = ACTIONS(6993), - [anon_sym_bitor] = ACTIONS(6991), - [anon_sym_xor] = ACTIONS(6993), - [anon_sym_bitand] = ACTIONS(6991), - [anon_sym_not_eq] = ACTIONS(6991), - [anon_sym_DASH_DASH] = ACTIONS(6991), - [anon_sym_PLUS_PLUS] = ACTIONS(6991), - [anon_sym_DOT] = ACTIONS(6993), - [anon_sym_DOT_STAR] = ACTIONS(6991), - [anon_sym_DASH_GT] = ACTIONS(6991), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6991), - [anon_sym_override] = ACTIONS(6991), - [anon_sym_requires] = ACTIONS(6991), - }, - [STATE(2231)] = { - [sym__abstract_declarator] = STATE(4537), - [sym_abstract_parenthesized_declarator] = STATE(4966), - [sym_abstract_pointer_declarator] = STATE(4966), - [sym_abstract_function_declarator] = STATE(4966), - [sym_abstract_array_declarator] = STATE(4966), - [sym_type_qualifier] = STATE(2293), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1872), - [sym_abstract_reference_declarator] = STATE(4966), - [sym__function_declarator_seq] = STATE(4975), - [aux_sym__type_definition_type_repeat1] = STATE(2293), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), - [anon_sym_COMMA] = ACTIONS(6995), - [anon_sym_LPAREN2] = ACTIONS(6766), - [anon_sym_DASH] = ACTIONS(6997), - [anon_sym_PLUS] = ACTIONS(6997), - [anon_sym_STAR] = ACTIONS(6768), - [anon_sym_SLASH] = ACTIONS(6997), - [anon_sym_PERCENT] = ACTIONS(6997), - [anon_sym_PIPE_PIPE] = ACTIONS(6995), - [anon_sym_AMP_AMP] = ACTIONS(6770), - [anon_sym_PIPE] = ACTIONS(6997), - [anon_sym_CARET] = ACTIONS(6997), - [anon_sym_AMP] = ACTIONS(6772), - [anon_sym_EQ_EQ] = ACTIONS(6995), - [anon_sym_BANG_EQ] = ACTIONS(6995), - [anon_sym_GT] = ACTIONS(6997), - [anon_sym_GT_EQ] = ACTIONS(6995), - [anon_sym_LT_EQ] = ACTIONS(6997), - [anon_sym_LT] = ACTIONS(6997), - [anon_sym_LT_LT] = ACTIONS(6997), - [anon_sym_GT_GT] = ACTIONS(6997), - [anon_sym___extension__] = ACTIONS(6774), - [anon_sym_LBRACK] = ACTIONS(6782), - [anon_sym_RBRACK] = ACTIONS(6995), - [anon_sym_EQ] = ACTIONS(6997), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6774), - [anon_sym_volatile] = ACTIONS(6774), - [anon_sym_restrict] = ACTIONS(6774), - [anon_sym___restrict__] = ACTIONS(6774), - [anon_sym__Atomic] = ACTIONS(6774), - [anon_sym__Noreturn] = ACTIONS(6774), - [anon_sym_noreturn] = ACTIONS(6774), - [anon_sym__Nonnull] = ACTIONS(6774), - [anon_sym_mutable] = ACTIONS(6774), - [anon_sym_constinit] = ACTIONS(6774), - [anon_sym_consteval] = ACTIONS(6774), - [anon_sym_alignas] = ACTIONS(6784), - [anon_sym__Alignas] = ACTIONS(6784), - [anon_sym_QMARK] = ACTIONS(6995), - [anon_sym_STAR_EQ] = ACTIONS(6995), - [anon_sym_SLASH_EQ] = ACTIONS(6995), - [anon_sym_PERCENT_EQ] = ACTIONS(6995), - [anon_sym_PLUS_EQ] = ACTIONS(6995), - [anon_sym_DASH_EQ] = ACTIONS(6995), - [anon_sym_LT_LT_EQ] = ACTIONS(6995), - [anon_sym_GT_GT_EQ] = ACTIONS(6995), - [anon_sym_AMP_EQ] = ACTIONS(6995), - [anon_sym_CARET_EQ] = ACTIONS(6995), - [anon_sym_PIPE_EQ] = ACTIONS(6995), - [anon_sym_and_eq] = ACTIONS(6995), - [anon_sym_or_eq] = ACTIONS(6995), - [anon_sym_xor_eq] = ACTIONS(6995), - [anon_sym_LT_EQ_GT] = ACTIONS(6995), - [anon_sym_or] = ACTIONS(6997), - [anon_sym_and] = ACTIONS(6997), - [anon_sym_bitor] = ACTIONS(6995), - [anon_sym_xor] = ACTIONS(6997), - [anon_sym_bitand] = ACTIONS(6995), - [anon_sym_not_eq] = ACTIONS(6995), - [anon_sym_DASH_DASH] = ACTIONS(6995), - [anon_sym_PLUS_PLUS] = ACTIONS(6995), - [anon_sym_DOT] = ACTIONS(6997), - [anon_sym_DOT_STAR] = ACTIONS(6995), - [anon_sym_DASH_GT] = ACTIONS(6995), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6995), - [anon_sym_override] = ACTIONS(6995), - [anon_sym_requires] = ACTIONS(6995), - }, - [STATE(2232)] = { - [sym__abstract_declarator] = STATE(4538), - [sym_abstract_parenthesized_declarator] = STATE(4966), - [sym_abstract_pointer_declarator] = STATE(4966), - [sym_abstract_function_declarator] = STATE(4966), - [sym_abstract_array_declarator] = STATE(4966), - [sym_type_qualifier] = STATE(2234), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1872), - [sym_abstract_reference_declarator] = STATE(4966), - [sym__function_declarator_seq] = STATE(4975), - [aux_sym__type_definition_type_repeat1] = STATE(2234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), - [anon_sym_COMMA] = ACTIONS(6999), - [anon_sym_LPAREN2] = ACTIONS(6766), - [anon_sym_DASH] = ACTIONS(7001), - [anon_sym_PLUS] = ACTIONS(7001), - [anon_sym_STAR] = ACTIONS(6768), - [anon_sym_SLASH] = ACTIONS(7001), - [anon_sym_PERCENT] = ACTIONS(7001), - [anon_sym_PIPE_PIPE] = ACTIONS(6999), - [anon_sym_AMP_AMP] = ACTIONS(6770), - [anon_sym_PIPE] = ACTIONS(7001), - [anon_sym_CARET] = ACTIONS(7001), - [anon_sym_AMP] = ACTIONS(6772), - [anon_sym_EQ_EQ] = ACTIONS(6999), - [anon_sym_BANG_EQ] = ACTIONS(6999), - [anon_sym_GT] = ACTIONS(7001), - [anon_sym_GT_EQ] = ACTIONS(6999), - [anon_sym_LT_EQ] = ACTIONS(7001), - [anon_sym_LT] = ACTIONS(7001), - [anon_sym_LT_LT] = ACTIONS(7001), - [anon_sym_GT_GT] = ACTIONS(7001), - [anon_sym___extension__] = ACTIONS(6774), - [anon_sym_LBRACK] = ACTIONS(6782), - [anon_sym_RBRACK] = ACTIONS(6999), - [anon_sym_EQ] = ACTIONS(7001), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6774), - [anon_sym_volatile] = ACTIONS(6774), - [anon_sym_restrict] = ACTIONS(6774), - [anon_sym___restrict__] = ACTIONS(6774), - [anon_sym__Atomic] = ACTIONS(6774), - [anon_sym__Noreturn] = ACTIONS(6774), - [anon_sym_noreturn] = ACTIONS(6774), - [anon_sym__Nonnull] = ACTIONS(6774), - [anon_sym_mutable] = ACTIONS(6774), - [anon_sym_constinit] = ACTIONS(6774), - [anon_sym_consteval] = ACTIONS(6774), - [anon_sym_alignas] = ACTIONS(6784), - [anon_sym__Alignas] = ACTIONS(6784), - [anon_sym_QMARK] = ACTIONS(6999), - [anon_sym_STAR_EQ] = ACTIONS(6999), - [anon_sym_SLASH_EQ] = ACTIONS(6999), - [anon_sym_PERCENT_EQ] = ACTIONS(6999), - [anon_sym_PLUS_EQ] = ACTIONS(6999), - [anon_sym_DASH_EQ] = ACTIONS(6999), - [anon_sym_LT_LT_EQ] = ACTIONS(6999), - [anon_sym_GT_GT_EQ] = ACTIONS(6999), - [anon_sym_AMP_EQ] = ACTIONS(6999), - [anon_sym_CARET_EQ] = ACTIONS(6999), - [anon_sym_PIPE_EQ] = ACTIONS(6999), - [anon_sym_and_eq] = ACTIONS(6999), - [anon_sym_or_eq] = ACTIONS(6999), - [anon_sym_xor_eq] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(6999), - [anon_sym_or] = ACTIONS(7001), - [anon_sym_and] = ACTIONS(7001), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(7001), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(6999), - [anon_sym_PLUS_PLUS] = ACTIONS(6999), - [anon_sym_DOT] = ACTIONS(7001), - [anon_sym_DOT_STAR] = ACTIONS(6999), - [anon_sym_DASH_GT] = ACTIONS(6999), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6999), - [anon_sym_override] = ACTIONS(6999), - [anon_sym_requires] = ACTIONS(6999), - }, - [STATE(2233)] = { - [sym__abstract_declarator] = STATE(4549), - [sym_abstract_parenthesized_declarator] = STATE(4966), - [sym_abstract_pointer_declarator] = STATE(4966), - [sym_abstract_function_declarator] = STATE(4966), - [sym_abstract_array_declarator] = STATE(4966), - [sym_type_qualifier] = STATE(2293), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1872), - [sym_abstract_reference_declarator] = STATE(4966), - [sym__function_declarator_seq] = STATE(4975), - [aux_sym__type_definition_type_repeat1] = STATE(2293), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6766), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6768), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(6770), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(6772), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym___extension__] = ACTIONS(6774), - [anon_sym_LBRACK] = ACTIONS(6782), - [anon_sym_RBRACK] = ACTIONS(6497), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6774), - [anon_sym_volatile] = ACTIONS(6774), - [anon_sym_restrict] = ACTIONS(6774), - [anon_sym___restrict__] = ACTIONS(6774), - [anon_sym__Atomic] = ACTIONS(6774), - [anon_sym__Noreturn] = ACTIONS(6774), - [anon_sym_noreturn] = ACTIONS(6774), - [anon_sym__Nonnull] = ACTIONS(6774), - [anon_sym_mutable] = ACTIONS(6774), - [anon_sym_constinit] = ACTIONS(6774), - [anon_sym_consteval] = ACTIONS(6774), - [anon_sym_alignas] = ACTIONS(6784), - [anon_sym__Alignas] = ACTIONS(6784), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6497), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_and_eq] = ACTIONS(6497), - [anon_sym_or_eq] = ACTIONS(6497), - [anon_sym_xor_eq] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6497), - [anon_sym_override] = ACTIONS(6497), - [anon_sym_requires] = ACTIONS(6497), - }, - [STATE(2234)] = { - [sym__abstract_declarator] = STATE(4540), - [sym_abstract_parenthesized_declarator] = STATE(4966), - [sym_abstract_pointer_declarator] = STATE(4966), - [sym_abstract_function_declarator] = STATE(4966), - [sym_abstract_array_declarator] = STATE(4966), - [sym_type_qualifier] = STATE(2293), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1872), - [sym_abstract_reference_declarator] = STATE(4966), - [sym__function_declarator_seq] = STATE(4975), - [aux_sym__type_definition_type_repeat1] = STATE(2293), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), - [anon_sym_COMMA] = ACTIONS(7003), - [anon_sym_LPAREN2] = ACTIONS(6766), - [anon_sym_DASH] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(6768), - [anon_sym_SLASH] = ACTIONS(7005), - [anon_sym_PERCENT] = ACTIONS(7005), - [anon_sym_PIPE_PIPE] = ACTIONS(7003), - [anon_sym_AMP_AMP] = ACTIONS(6770), - [anon_sym_PIPE] = ACTIONS(7005), - [anon_sym_CARET] = ACTIONS(7005), - [anon_sym_AMP] = ACTIONS(6772), - [anon_sym_EQ_EQ] = ACTIONS(7003), - [anon_sym_BANG_EQ] = ACTIONS(7003), - [anon_sym_GT] = ACTIONS(7005), - [anon_sym_GT_EQ] = ACTIONS(7003), - [anon_sym_LT_EQ] = ACTIONS(7005), - [anon_sym_LT] = ACTIONS(7005), - [anon_sym_LT_LT] = ACTIONS(7005), - [anon_sym_GT_GT] = ACTIONS(7005), - [anon_sym___extension__] = ACTIONS(6774), - [anon_sym_LBRACK] = ACTIONS(6782), - [anon_sym_RBRACK] = ACTIONS(7003), - [anon_sym_EQ] = ACTIONS(7005), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6774), - [anon_sym_volatile] = ACTIONS(6774), - [anon_sym_restrict] = ACTIONS(6774), - [anon_sym___restrict__] = ACTIONS(6774), - [anon_sym__Atomic] = ACTIONS(6774), - [anon_sym__Noreturn] = ACTIONS(6774), - [anon_sym_noreturn] = ACTIONS(6774), - [anon_sym__Nonnull] = ACTIONS(6774), - [anon_sym_mutable] = ACTIONS(6774), - [anon_sym_constinit] = ACTIONS(6774), - [anon_sym_consteval] = ACTIONS(6774), - [anon_sym_alignas] = ACTIONS(6784), - [anon_sym__Alignas] = ACTIONS(6784), - [anon_sym_QMARK] = ACTIONS(7003), - [anon_sym_STAR_EQ] = ACTIONS(7003), - [anon_sym_SLASH_EQ] = ACTIONS(7003), - [anon_sym_PERCENT_EQ] = ACTIONS(7003), - [anon_sym_PLUS_EQ] = ACTIONS(7003), - [anon_sym_DASH_EQ] = ACTIONS(7003), - [anon_sym_LT_LT_EQ] = ACTIONS(7003), - [anon_sym_GT_GT_EQ] = ACTIONS(7003), - [anon_sym_AMP_EQ] = ACTIONS(7003), - [anon_sym_CARET_EQ] = ACTIONS(7003), - [anon_sym_PIPE_EQ] = ACTIONS(7003), - [anon_sym_and_eq] = ACTIONS(7003), - [anon_sym_or_eq] = ACTIONS(7003), - [anon_sym_xor_eq] = ACTIONS(7003), - [anon_sym_LT_EQ_GT] = ACTIONS(7003), - [anon_sym_or] = ACTIONS(7005), - [anon_sym_and] = ACTIONS(7005), - [anon_sym_bitor] = ACTIONS(7003), - [anon_sym_xor] = ACTIONS(7005), - [anon_sym_bitand] = ACTIONS(7003), - [anon_sym_not_eq] = ACTIONS(7003), - [anon_sym_DASH_DASH] = ACTIONS(7003), - [anon_sym_PLUS_PLUS] = ACTIONS(7003), - [anon_sym_DOT] = ACTIONS(7005), - [anon_sym_DOT_STAR] = ACTIONS(7003), - [anon_sym_DASH_GT] = ACTIONS(7003), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7003), - [anon_sym_override] = ACTIONS(7003), - [anon_sym_requires] = ACTIONS(7003), - }, - [STATE(2235)] = { - [sym__abstract_declarator] = STATE(4550), - [sym_abstract_parenthesized_declarator] = STATE(4966), - [sym_abstract_pointer_declarator] = STATE(4966), - [sym_abstract_function_declarator] = STATE(4966), - [sym_abstract_array_declarator] = STATE(4966), - [sym_type_qualifier] = STATE(2293), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1872), - [sym_abstract_reference_declarator] = STATE(4966), - [sym__function_declarator_seq] = STATE(4975), - [aux_sym__type_definition_type_repeat1] = STATE(2293), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), - [anon_sym_COMMA] = ACTIONS(7007), - [anon_sym_LPAREN2] = ACTIONS(6766), - [anon_sym_DASH] = ACTIONS(7009), - [anon_sym_PLUS] = ACTIONS(7009), - [anon_sym_STAR] = ACTIONS(6768), - [anon_sym_SLASH] = ACTIONS(7009), - [anon_sym_PERCENT] = ACTIONS(7009), - [anon_sym_PIPE_PIPE] = ACTIONS(7007), - [anon_sym_AMP_AMP] = ACTIONS(6770), - [anon_sym_PIPE] = ACTIONS(7009), - [anon_sym_CARET] = ACTIONS(7009), - [anon_sym_AMP] = ACTIONS(6772), - [anon_sym_EQ_EQ] = ACTIONS(7007), - [anon_sym_BANG_EQ] = ACTIONS(7007), - [anon_sym_GT] = ACTIONS(7009), - [anon_sym_GT_EQ] = ACTIONS(7007), - [anon_sym_LT_EQ] = ACTIONS(7009), - [anon_sym_LT] = ACTIONS(7009), - [anon_sym_LT_LT] = ACTIONS(7009), - [anon_sym_GT_GT] = ACTIONS(7009), - [anon_sym___extension__] = ACTIONS(6774), - [anon_sym_LBRACK] = ACTIONS(6782), - [anon_sym_RBRACK] = ACTIONS(7007), - [anon_sym_EQ] = ACTIONS(7009), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6774), - [anon_sym_volatile] = ACTIONS(6774), - [anon_sym_restrict] = ACTIONS(6774), - [anon_sym___restrict__] = ACTIONS(6774), - [anon_sym__Atomic] = ACTIONS(6774), - [anon_sym__Noreturn] = ACTIONS(6774), - [anon_sym_noreturn] = ACTIONS(6774), - [anon_sym__Nonnull] = ACTIONS(6774), - [anon_sym_mutable] = ACTIONS(6774), - [anon_sym_constinit] = ACTIONS(6774), - [anon_sym_consteval] = ACTIONS(6774), - [anon_sym_alignas] = ACTIONS(6784), - [anon_sym__Alignas] = ACTIONS(6784), - [anon_sym_QMARK] = ACTIONS(7007), - [anon_sym_STAR_EQ] = ACTIONS(7007), - [anon_sym_SLASH_EQ] = ACTIONS(7007), - [anon_sym_PERCENT_EQ] = ACTIONS(7007), - [anon_sym_PLUS_EQ] = ACTIONS(7007), - [anon_sym_DASH_EQ] = ACTIONS(7007), - [anon_sym_LT_LT_EQ] = ACTIONS(7007), - [anon_sym_GT_GT_EQ] = ACTIONS(7007), - [anon_sym_AMP_EQ] = ACTIONS(7007), - [anon_sym_CARET_EQ] = ACTIONS(7007), - [anon_sym_PIPE_EQ] = ACTIONS(7007), - [anon_sym_and_eq] = ACTIONS(7007), - [anon_sym_or_eq] = ACTIONS(7007), - [anon_sym_xor_eq] = ACTIONS(7007), - [anon_sym_LT_EQ_GT] = ACTIONS(7007), - [anon_sym_or] = ACTIONS(7009), - [anon_sym_and] = ACTIONS(7009), - [anon_sym_bitor] = ACTIONS(7007), - [anon_sym_xor] = ACTIONS(7009), - [anon_sym_bitand] = ACTIONS(7007), - [anon_sym_not_eq] = ACTIONS(7007), - [anon_sym_DASH_DASH] = ACTIONS(7007), - [anon_sym_PLUS_PLUS] = ACTIONS(7007), - [anon_sym_DOT] = ACTIONS(7009), - [anon_sym_DOT_STAR] = ACTIONS(7007), - [anon_sym_DASH_GT] = ACTIONS(7007), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7007), - [anon_sym_override] = ACTIONS(7007), - [anon_sym_requires] = ACTIONS(7007), - }, - [STATE(2236)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1931), - [sym_identifier] = ACTIONS(7084), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), - [anon_sym_COMMA] = ACTIONS(7081), - [aux_sym_preproc_if_token2] = ACTIONS(7081), - [aux_sym_preproc_else_token1] = ACTIONS(7081), - [aux_sym_preproc_elif_token1] = ACTIONS(7084), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7081), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7081), - [anon_sym_LPAREN2] = ACTIONS(7081), - [anon_sym_DASH] = ACTIONS(7084), - [anon_sym_PLUS] = ACTIONS(7084), - [anon_sym_STAR] = ACTIONS(7084), - [anon_sym_SLASH] = ACTIONS(7084), - [anon_sym_PERCENT] = ACTIONS(7084), - [anon_sym_PIPE_PIPE] = ACTIONS(7081), - [anon_sym_AMP_AMP] = ACTIONS(7081), - [anon_sym_PIPE] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7084), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_EQ_EQ] = ACTIONS(7081), - [anon_sym_BANG_EQ] = ACTIONS(7081), - [anon_sym_GT] = ACTIONS(7084), - [anon_sym_GT_EQ] = ACTIONS(7081), - [anon_sym_LT_EQ] = ACTIONS(7084), - [anon_sym_LT] = ACTIONS(7084), - [anon_sym_LT_LT] = ACTIONS(7084), - [anon_sym_GT_GT] = ACTIONS(7084), - [anon_sym___extension__] = ACTIONS(6627), - [anon_sym___attribute__] = ACTIONS(7084), - [anon_sym___attribute] = ACTIONS(7084), - [anon_sym_LBRACE] = ACTIONS(7081), - [anon_sym_signed] = ACTIONS(6631), - [anon_sym_unsigned] = ACTIONS(6631), - [anon_sym_long] = ACTIONS(6631), - [anon_sym_short] = ACTIONS(6631), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_EQ] = ACTIONS(7084), - [anon_sym_const] = ACTIONS(6627), - [anon_sym_constexpr] = ACTIONS(6627), - [anon_sym_volatile] = ACTIONS(6627), - [anon_sym_restrict] = ACTIONS(6627), - [anon_sym___restrict__] = ACTIONS(6627), - [anon_sym__Atomic] = ACTIONS(6627), - [anon_sym__Noreturn] = ACTIONS(6627), - [anon_sym_noreturn] = ACTIONS(6627), - [anon_sym__Nonnull] = ACTIONS(6627), - [anon_sym_mutable] = ACTIONS(6627), - [anon_sym_constinit] = ACTIONS(6627), - [anon_sym_consteval] = ACTIONS(6627), - [anon_sym_alignas] = ACTIONS(6627), - [anon_sym__Alignas] = ACTIONS(6627), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(7081), - [anon_sym_STAR_EQ] = ACTIONS(7081), - [anon_sym_SLASH_EQ] = ACTIONS(7081), - [anon_sym_PERCENT_EQ] = ACTIONS(7081), - [anon_sym_PLUS_EQ] = ACTIONS(7081), - [anon_sym_DASH_EQ] = ACTIONS(7081), - [anon_sym_LT_LT_EQ] = ACTIONS(7081), - [anon_sym_GT_GT_EQ] = ACTIONS(7081), - [anon_sym_AMP_EQ] = ACTIONS(7081), - [anon_sym_CARET_EQ] = ACTIONS(7081), - [anon_sym_PIPE_EQ] = ACTIONS(7081), - [anon_sym_and_eq] = ACTIONS(7084), - [anon_sym_or_eq] = ACTIONS(7084), - [anon_sym_xor_eq] = ACTIONS(7084), - [anon_sym_LT_EQ_GT] = ACTIONS(7081), - [anon_sym_or] = ACTIONS(7084), - [anon_sym_and] = ACTIONS(7084), - [anon_sym_bitor] = ACTIONS(7084), - [anon_sym_xor] = ACTIONS(7084), - [anon_sym_bitand] = ACTIONS(7084), - [anon_sym_not_eq] = ACTIONS(7084), - [anon_sym_DASH_DASH] = ACTIONS(7081), - [anon_sym_PLUS_PLUS] = ACTIONS(7081), - [anon_sym_DOT] = ACTIONS(7084), - [anon_sym_DOT_STAR] = ACTIONS(7081), - [anon_sym_DASH_GT] = ACTIONS(7081), - [sym_comment] = ACTIONS(3), - }, - [STATE(2237)] = { - [sym_type_qualifier] = STATE(2239), - [sym_alignas_qualifier] = STATE(2372), - [aux_sym__type_definition_type_repeat1] = STATE(2239), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), - [anon_sym_COMMA] = ACTIONS(6390), - [anon_sym_LPAREN2] = ACTIONS(6390), - [anon_sym_DASH] = ACTIONS(6388), - [anon_sym_PLUS] = ACTIONS(6388), - [anon_sym_STAR] = ACTIONS(6388), - [anon_sym_SLASH] = ACTIONS(6388), - [anon_sym_PERCENT] = ACTIONS(6388), - [anon_sym_PIPE_PIPE] = ACTIONS(6390), - [anon_sym_AMP_AMP] = ACTIONS(6390), - [anon_sym_PIPE] = ACTIONS(6388), - [anon_sym_CARET] = ACTIONS(6388), - [anon_sym_AMP] = ACTIONS(6388), - [anon_sym_EQ_EQ] = ACTIONS(6390), - [anon_sym_BANG_EQ] = ACTIONS(6390), - [anon_sym_GT] = ACTIONS(6388), - [anon_sym_GT_EQ] = ACTIONS(6388), - [anon_sym_LT_EQ] = ACTIONS(6388), - [anon_sym_LT] = ACTIONS(6388), - [anon_sym_LT_LT] = ACTIONS(6388), - [anon_sym_GT_GT] = ACTIONS(6388), - [anon_sym___extension__] = ACTIONS(6359), - [anon_sym___attribute__] = ACTIONS(6390), - [anon_sym___attribute] = ACTIONS(6388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), - [anon_sym_LBRACK] = ACTIONS(6388), - [anon_sym_EQ] = ACTIONS(6388), - [anon_sym_const] = ACTIONS(6367), - [anon_sym_constexpr] = ACTIONS(6359), - [anon_sym_volatile] = ACTIONS(6359), - [anon_sym_restrict] = ACTIONS(6359), - [anon_sym___restrict__] = ACTIONS(6359), - [anon_sym__Atomic] = ACTIONS(6359), - [anon_sym__Noreturn] = ACTIONS(6359), - [anon_sym_noreturn] = ACTIONS(6359), - [anon_sym__Nonnull] = ACTIONS(6359), - [anon_sym_mutable] = ACTIONS(6359), - [anon_sym_constinit] = ACTIONS(6359), - [anon_sym_consteval] = ACTIONS(6359), - [anon_sym_alignas] = ACTIONS(6369), - [anon_sym__Alignas] = ACTIONS(6369), - [anon_sym_QMARK] = ACTIONS(6390), - [anon_sym_STAR_EQ] = ACTIONS(6390), - [anon_sym_SLASH_EQ] = ACTIONS(6390), - [anon_sym_PERCENT_EQ] = ACTIONS(6390), - [anon_sym_PLUS_EQ] = ACTIONS(6390), - [anon_sym_DASH_EQ] = ACTIONS(6390), - [anon_sym_LT_LT_EQ] = ACTIONS(6390), - [anon_sym_GT_GT_EQ] = ACTIONS(6388), - [anon_sym_AMP_EQ] = ACTIONS(6390), - [anon_sym_CARET_EQ] = ACTIONS(6390), - [anon_sym_PIPE_EQ] = ACTIONS(6390), - [anon_sym_and_eq] = ACTIONS(6390), - [anon_sym_or_eq] = ACTIONS(6390), - [anon_sym_xor_eq] = ACTIONS(6390), - [anon_sym_LT_EQ_GT] = ACTIONS(6390), - [anon_sym_or] = ACTIONS(6388), - [anon_sym_and] = ACTIONS(6388), - [anon_sym_bitor] = ACTIONS(6390), - [anon_sym_xor] = ACTIONS(6388), - [anon_sym_bitand] = ACTIONS(6390), - [anon_sym_not_eq] = ACTIONS(6390), - [anon_sym_DASH_DASH] = ACTIONS(6390), - [anon_sym_PLUS_PLUS] = ACTIONS(6390), - [anon_sym_asm] = ACTIONS(6390), - [anon_sym___asm__] = ACTIONS(6390), - [anon_sym___asm] = ACTIONS(6388), - [anon_sym_DOT] = ACTIONS(6388), - [anon_sym_DOT_STAR] = ACTIONS(6390), - [anon_sym_DASH_GT] = ACTIONS(6390), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6390), - [anon_sym_override] = ACTIONS(6390), - [anon_sym_GT2] = ACTIONS(6390), - [anon_sym_noexcept] = ACTIONS(6390), - [anon_sym_throw] = ACTIONS(6390), - [anon_sym_requires] = ACTIONS(6390), - }, - [STATE(2238)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), - [anon_sym_COMMA] = ACTIONS(6244), - [anon_sym_RPAREN] = ACTIONS(6244), - [anon_sym_LPAREN2] = ACTIONS(6244), - [anon_sym_DASH] = ACTIONS(6242), - [anon_sym_PLUS] = ACTIONS(6242), - [anon_sym_STAR] = ACTIONS(6242), - [anon_sym_SLASH] = ACTIONS(6242), - [anon_sym_PERCENT] = ACTIONS(6242), - [anon_sym_PIPE_PIPE] = ACTIONS(6244), - [anon_sym_AMP_AMP] = ACTIONS(6244), - [anon_sym_PIPE] = ACTIONS(6242), - [anon_sym_CARET] = ACTIONS(6242), - [anon_sym_AMP] = ACTIONS(6242), - [anon_sym_EQ_EQ] = ACTIONS(6244), - [anon_sym_BANG_EQ] = ACTIONS(6244), - [anon_sym_GT] = ACTIONS(6242), - [anon_sym_GT_EQ] = ACTIONS(6244), - [anon_sym_LT_EQ] = ACTIONS(6242), - [anon_sym_LT] = ACTIONS(6242), - [anon_sym_LT_LT] = ACTIONS(6242), - [anon_sym_GT_GT] = ACTIONS(6242), - [anon_sym_SEMI] = ACTIONS(6244), - [anon_sym___extension__] = ACTIONS(6244), - [anon_sym___attribute__] = ACTIONS(6244), - [anon_sym___attribute] = ACTIONS(6242), - [anon_sym_COLON] = ACTIONS(6242), - [anon_sym_COLON_COLON] = ACTIONS(6244), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6244), - [anon_sym_LBRACE] = ACTIONS(6244), - [anon_sym_LBRACK] = ACTIONS(6242), - [anon_sym_EQ] = ACTIONS(6242), - [anon_sym_const] = ACTIONS(6242), - [anon_sym_constexpr] = ACTIONS(6244), - [anon_sym_volatile] = ACTIONS(6244), - [anon_sym_restrict] = ACTIONS(6244), - [anon_sym___restrict__] = ACTIONS(6244), - [anon_sym__Atomic] = ACTIONS(6244), - [anon_sym__Noreturn] = ACTIONS(6244), - [anon_sym_noreturn] = ACTIONS(6244), - [anon_sym__Nonnull] = ACTIONS(6244), - [anon_sym_mutable] = ACTIONS(6244), - [anon_sym_constinit] = ACTIONS(6244), - [anon_sym_consteval] = ACTIONS(6244), - [anon_sym_alignas] = ACTIONS(6244), - [anon_sym__Alignas] = ACTIONS(6244), - [anon_sym_QMARK] = ACTIONS(6244), - [anon_sym_STAR_EQ] = ACTIONS(6244), - [anon_sym_SLASH_EQ] = ACTIONS(6244), - [anon_sym_PERCENT_EQ] = ACTIONS(6244), - [anon_sym_PLUS_EQ] = ACTIONS(6244), - [anon_sym_DASH_EQ] = ACTIONS(6244), - [anon_sym_LT_LT_EQ] = ACTIONS(6244), - [anon_sym_GT_GT_EQ] = ACTIONS(6244), - [anon_sym_AMP_EQ] = ACTIONS(6244), - [anon_sym_CARET_EQ] = ACTIONS(6244), - [anon_sym_PIPE_EQ] = ACTIONS(6244), - [anon_sym_and_eq] = ACTIONS(6244), - [anon_sym_or_eq] = ACTIONS(6244), - [anon_sym_xor_eq] = ACTIONS(6244), - [anon_sym_LT_EQ_GT] = ACTIONS(6244), - [anon_sym_or] = ACTIONS(6242), - [anon_sym_and] = ACTIONS(6242), - [anon_sym_bitor] = ACTIONS(6244), - [anon_sym_xor] = ACTIONS(6242), - [anon_sym_bitand] = ACTIONS(6244), - [anon_sym_not_eq] = ACTIONS(6244), - [anon_sym_DASH_DASH] = ACTIONS(6244), - [anon_sym_PLUS_PLUS] = ACTIONS(6244), - [anon_sym_asm] = ACTIONS(6244), - [anon_sym___asm__] = ACTIONS(6244), - [anon_sym___asm] = ACTIONS(6242), - [anon_sym_DOT] = ACTIONS(6242), - [anon_sym_DOT_STAR] = ACTIONS(6244), - [anon_sym_DASH_GT] = ACTIONS(6242), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6244), - [anon_sym_decltype] = ACTIONS(6244), - [anon_sym_try] = ACTIONS(6244), - [anon_sym_DASH_GT_STAR] = ACTIONS(6244), - }, - [STATE(2239)] = { - [sym_type_qualifier] = STATE(2239), - [sym_alignas_qualifier] = STATE(2372), - [aux_sym__type_definition_type_repeat1] = STATE(2239), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_LPAREN2] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6525), - [anon_sym_PLUS] = ACTIONS(6525), - [anon_sym_STAR] = ACTIONS(6525), - [anon_sym_SLASH] = ACTIONS(6525), - [anon_sym_PERCENT] = ACTIONS(6525), - [anon_sym_PIPE_PIPE] = ACTIONS(6527), - [anon_sym_AMP_AMP] = ACTIONS(6527), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_CARET] = ACTIONS(6525), - [anon_sym_AMP] = ACTIONS(6525), - [anon_sym_EQ_EQ] = ACTIONS(6527), - [anon_sym_BANG_EQ] = ACTIONS(6527), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6525), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_LT_LT] = ACTIONS(6525), - [anon_sym_GT_GT] = ACTIONS(6525), - [anon_sym___extension__] = ACTIONS(7658), - [anon_sym___attribute__] = ACTIONS(6527), - [anon_sym___attribute] = ACTIONS(6525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6527), - [anon_sym_LBRACK] = ACTIONS(6525), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_const] = ACTIONS(7661), - [anon_sym_constexpr] = ACTIONS(7658), - [anon_sym_volatile] = ACTIONS(7658), - [anon_sym_restrict] = ACTIONS(7658), - [anon_sym___restrict__] = ACTIONS(7658), - [anon_sym__Atomic] = ACTIONS(7658), - [anon_sym__Noreturn] = ACTIONS(7658), - [anon_sym_noreturn] = ACTIONS(7658), - [anon_sym__Nonnull] = ACTIONS(7658), - [anon_sym_mutable] = ACTIONS(7658), - [anon_sym_constinit] = ACTIONS(7658), - [anon_sym_consteval] = ACTIONS(7658), - [anon_sym_alignas] = ACTIONS(7664), - [anon_sym__Alignas] = ACTIONS(7664), - [anon_sym_QMARK] = ACTIONS(6527), - [anon_sym_STAR_EQ] = ACTIONS(6527), - [anon_sym_SLASH_EQ] = ACTIONS(6527), - [anon_sym_PERCENT_EQ] = ACTIONS(6527), - [anon_sym_PLUS_EQ] = ACTIONS(6527), - [anon_sym_DASH_EQ] = ACTIONS(6527), - [anon_sym_LT_LT_EQ] = ACTIONS(6527), - [anon_sym_GT_GT_EQ] = ACTIONS(6525), - [anon_sym_AMP_EQ] = ACTIONS(6527), - [anon_sym_CARET_EQ] = ACTIONS(6527), - [anon_sym_PIPE_EQ] = ACTIONS(6527), - [anon_sym_and_eq] = ACTIONS(6527), - [anon_sym_or_eq] = ACTIONS(6527), - [anon_sym_xor_eq] = ACTIONS(6527), - [anon_sym_LT_EQ_GT] = ACTIONS(6527), - [anon_sym_or] = ACTIONS(6525), - [anon_sym_and] = ACTIONS(6525), - [anon_sym_bitor] = ACTIONS(6527), - [anon_sym_xor] = ACTIONS(6525), - [anon_sym_bitand] = ACTIONS(6527), - [anon_sym_not_eq] = ACTIONS(6527), - [anon_sym_DASH_DASH] = ACTIONS(6527), - [anon_sym_PLUS_PLUS] = ACTIONS(6527), - [anon_sym_asm] = ACTIONS(6527), - [anon_sym___asm__] = ACTIONS(6527), - [anon_sym___asm] = ACTIONS(6525), - [anon_sym_DOT] = ACTIONS(6525), - [anon_sym_DOT_STAR] = ACTIONS(6527), - [anon_sym_DASH_GT] = ACTIONS(6527), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6527), - [anon_sym_override] = ACTIONS(6527), - [anon_sym_GT2] = ACTIONS(6527), - [anon_sym_noexcept] = ACTIONS(6527), - [anon_sym_throw] = ACTIONS(6527), - [anon_sym_requires] = ACTIONS(6527), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2240)] = { - [sym_type_qualifier] = STATE(2245), - [sym_alignas_qualifier] = STATE(2432), - [aux_sym__type_definition_type_repeat1] = STATE(2245), - [aux_sym_sized_type_specifier_repeat1] = STATE(2365), - [sym_identifier] = ACTIONS(7667), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), - [anon_sym_COMMA] = ACTIONS(6812), - [anon_sym_RPAREN] = ACTIONS(6812), - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_STAR] = ACTIONS(6814), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_PERCENT] = ACTIONS(6814), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_CARET] = ACTIONS(6814), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_LT_LT] = ACTIONS(6814), - [anon_sym_GT_GT] = ACTIONS(6814), - [anon_sym___extension__] = ACTIONS(7669), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_signed] = ACTIONS(7672), - [anon_sym_unsigned] = ACTIONS(7672), - [anon_sym_long] = ACTIONS(7672), - [anon_sym_short] = ACTIONS(7672), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_EQ] = ACTIONS(6814), - [anon_sym_const] = ACTIONS(7669), - [anon_sym_constexpr] = ACTIONS(7669), - [anon_sym_volatile] = ACTIONS(7669), - [anon_sym_restrict] = ACTIONS(7669), - [anon_sym___restrict__] = ACTIONS(7669), - [anon_sym__Atomic] = ACTIONS(7669), - [anon_sym__Noreturn] = ACTIONS(7669), - [anon_sym_noreturn] = ACTIONS(7669), - [anon_sym__Nonnull] = ACTIONS(7669), - [anon_sym_mutable] = ACTIONS(7669), - [anon_sym_constinit] = ACTIONS(7669), - [anon_sym_consteval] = ACTIONS(7669), - [anon_sym_alignas] = ACTIONS(7674), - [anon_sym__Alignas] = ACTIONS(7674), - [sym_primitive_type] = ACTIONS(7677), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_STAR_EQ] = ACTIONS(6812), - [anon_sym_SLASH_EQ] = ACTIONS(6812), - [anon_sym_PERCENT_EQ] = ACTIONS(6812), - [anon_sym_PLUS_EQ] = ACTIONS(6812), - [anon_sym_DASH_EQ] = ACTIONS(6812), - [anon_sym_LT_LT_EQ] = ACTIONS(6812), - [anon_sym_GT_GT_EQ] = ACTIONS(6812), - [anon_sym_AMP_EQ] = ACTIONS(6812), - [anon_sym_CARET_EQ] = ACTIONS(6812), - [anon_sym_PIPE_EQ] = ACTIONS(6812), - [anon_sym_LT_EQ_GT] = ACTIONS(6812), - [anon_sym_or] = ACTIONS(6814), - [anon_sym_and] = ACTIONS(6814), - [anon_sym_bitor] = ACTIONS(6814), - [anon_sym_xor] = ACTIONS(6814), - [anon_sym_bitand] = ACTIONS(6814), - [anon_sym_not_eq] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6814), - [anon_sym_DOT_STAR] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6814), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6814), - [anon_sym_override] = ACTIONS(6814), - [anon_sym_requires] = ACTIONS(6814), - [anon_sym_DASH_GT_STAR] = ACTIONS(6812), + [STATE(2167)] = { + [sym_template_argument_list] = STATE(2231), + [sym_identifier] = ACTIONS(6576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6569), + [anon_sym_COMMA] = ACTIONS(6569), + [anon_sym_RPAREN] = ACTIONS(6569), + [aux_sym_preproc_if_token2] = ACTIONS(6569), + [aux_sym_preproc_else_token1] = ACTIONS(6569), + [aux_sym_preproc_elif_token1] = ACTIONS(6576), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6569), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6569), + [anon_sym_LPAREN2] = ACTIONS(6569), + [anon_sym_DASH] = ACTIONS(6576), + [anon_sym_PLUS] = ACTIONS(6576), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(6576), + [anon_sym_PERCENT] = ACTIONS(6576), + [anon_sym_PIPE_PIPE] = ACTIONS(6569), + [anon_sym_AMP_AMP] = ACTIONS(6569), + [anon_sym_PIPE] = ACTIONS(6576), + [anon_sym_CARET] = ACTIONS(6576), + [anon_sym_AMP] = ACTIONS(6576), + [anon_sym_EQ_EQ] = ACTIONS(6569), + [anon_sym_BANG_EQ] = ACTIONS(6569), + [anon_sym_GT] = ACTIONS(6576), + [anon_sym_GT_EQ] = ACTIONS(6569), + [anon_sym_LT_EQ] = ACTIONS(6576), + [anon_sym_LT] = ACTIONS(7401), + [anon_sym_LT_LT] = ACTIONS(6576), + [anon_sym_GT_GT] = ACTIONS(6576), + [anon_sym_SEMI] = ACTIONS(6569), + [anon_sym___extension__] = ACTIONS(6565), + [anon_sym___attribute__] = ACTIONS(6576), + [anon_sym___attribute] = ACTIONS(6576), + [anon_sym_COLON] = ACTIONS(6576), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6569), + [anon_sym_LBRACE] = ACTIONS(6572), + [anon_sym_RBRACE] = ACTIONS(6569), + [anon_sym_LBRACK] = ACTIONS(6569), + [anon_sym_EQ] = ACTIONS(6576), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_constexpr] = ACTIONS(6565), + [anon_sym_volatile] = ACTIONS(6565), + [anon_sym_restrict] = ACTIONS(6565), + [anon_sym___restrict__] = ACTIONS(6565), + [anon_sym__Atomic] = ACTIONS(6565), + [anon_sym__Noreturn] = ACTIONS(6565), + [anon_sym_noreturn] = ACTIONS(6565), + [anon_sym__Nonnull] = ACTIONS(6565), + [anon_sym_mutable] = ACTIONS(6565), + [anon_sym_constinit] = ACTIONS(6565), + [anon_sym_consteval] = ACTIONS(6565), + [anon_sym_alignas] = ACTIONS(6565), + [anon_sym__Alignas] = ACTIONS(6565), + [anon_sym_QMARK] = ACTIONS(6569), + [anon_sym_STAR_EQ] = ACTIONS(6569), + [anon_sym_SLASH_EQ] = ACTIONS(6569), + [anon_sym_PERCENT_EQ] = ACTIONS(6569), + [anon_sym_PLUS_EQ] = ACTIONS(6569), + [anon_sym_DASH_EQ] = ACTIONS(6569), + [anon_sym_LT_LT_EQ] = ACTIONS(6569), + [anon_sym_GT_GT_EQ] = ACTIONS(6569), + [anon_sym_AMP_EQ] = ACTIONS(6569), + [anon_sym_CARET_EQ] = ACTIONS(6569), + [anon_sym_PIPE_EQ] = ACTIONS(6569), + [anon_sym_and_eq] = ACTIONS(6576), + [anon_sym_or_eq] = ACTIONS(6576), + [anon_sym_xor_eq] = ACTIONS(6576), + [anon_sym_LT_EQ_GT] = ACTIONS(6569), + [anon_sym_or] = ACTIONS(6576), + [anon_sym_and] = ACTIONS(6576), + [anon_sym_bitor] = ACTIONS(6576), + [anon_sym_xor] = ACTIONS(6576), + [anon_sym_bitand] = ACTIONS(6576), + [anon_sym_not_eq] = ACTIONS(6576), + [anon_sym_DASH_DASH] = ACTIONS(6569), + [anon_sym_PLUS_PLUS] = ACTIONS(6569), + [anon_sym_DOT] = ACTIONS(6576), + [anon_sym_DOT_STAR] = ACTIONS(6569), + [anon_sym_DASH_GT] = ACTIONS(6569), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6565), + [anon_sym_decltype] = ACTIONS(6565), + [anon_sym_COLON_RBRACK] = ACTIONS(6569), }, - [STATE(2241)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(10445), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_explicit_object_parameter_declaration] = STATE(10445), - [sym_optional_parameter_declaration] = STATE(10445), - [sym_variadic_parameter_declaration] = STATE(10445), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7679), + [STATE(2168)] = { + [sym_function_definition] = STATE(3445), + [sym_declaration] = STATE(3445), + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6414), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_ms_call_modifier] = STATE(2708), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym__class_name] = STATE(11052), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(5630), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(5631), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(6019), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7405), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_virtual] = ACTIONS(1666), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -322451,1092 +328653,2499 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(5313), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7541), + [anon_sym_struct] = ACTIONS(7543), + [anon_sym_union] = ACTIONS(7545), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - [sym_this] = ACTIONS(5315), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2242)] = { - [sym_decltype_auto] = STATE(3006), - [sym_template_argument_list] = STATE(2491), - [aux_sym_sized_type_specifier_repeat1] = STATE(2124), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5258), - [anon_sym_COMMA] = ACTIONS(5258), - [anon_sym_LPAREN2] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5251), - [anon_sym_PLUS] = ACTIONS(5251), - [anon_sym_STAR] = ACTIONS(5251), - [anon_sym_SLASH] = ACTIONS(5251), - [anon_sym_PERCENT] = ACTIONS(5251), - [anon_sym_PIPE_PIPE] = ACTIONS(5258), - [anon_sym_AMP_AMP] = ACTIONS(5258), - [anon_sym_PIPE] = ACTIONS(5251), - [anon_sym_CARET] = ACTIONS(5251), - [anon_sym_AMP] = ACTIONS(5251), - [anon_sym_EQ_EQ] = ACTIONS(5258), - [anon_sym_BANG_EQ] = ACTIONS(5258), - [anon_sym_GT] = ACTIONS(5251), - [anon_sym_GT_EQ] = ACTIONS(5258), - [anon_sym_LT_EQ] = ACTIONS(5251), - [anon_sym_LT] = ACTIONS(7681), - [anon_sym_LT_LT] = ACTIONS(5251), - [anon_sym_GT_GT] = ACTIONS(5251), - [anon_sym___extension__] = ACTIONS(5258), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5258), - [anon_sym_signed] = ACTIONS(6674), - [anon_sym_unsigned] = ACTIONS(6674), - [anon_sym_long] = ACTIONS(6674), - [anon_sym_short] = ACTIONS(6674), - [anon_sym_LBRACK] = ACTIONS(5258), - [anon_sym_RBRACK] = ACTIONS(5258), - [anon_sym_EQ] = ACTIONS(5251), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5258), - [anon_sym_volatile] = ACTIONS(5258), - [anon_sym_restrict] = ACTIONS(5258), - [anon_sym___restrict__] = ACTIONS(5258), - [anon_sym__Atomic] = ACTIONS(5258), - [anon_sym__Noreturn] = ACTIONS(5258), - [anon_sym_noreturn] = ACTIONS(5258), - [anon_sym__Nonnull] = ACTIONS(5258), - [anon_sym_mutable] = ACTIONS(5258), - [anon_sym_constinit] = ACTIONS(5258), - [anon_sym_consteval] = ACTIONS(5258), - [anon_sym_alignas] = ACTIONS(5258), - [anon_sym__Alignas] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5258), - [anon_sym_STAR_EQ] = ACTIONS(5258), - [anon_sym_SLASH_EQ] = ACTIONS(5258), - [anon_sym_PERCENT_EQ] = ACTIONS(5258), - [anon_sym_PLUS_EQ] = ACTIONS(5258), - [anon_sym_DASH_EQ] = ACTIONS(5258), - [anon_sym_LT_LT_EQ] = ACTIONS(5258), - [anon_sym_GT_GT_EQ] = ACTIONS(5258), - [anon_sym_AMP_EQ] = ACTIONS(5258), - [anon_sym_CARET_EQ] = ACTIONS(5258), - [anon_sym_PIPE_EQ] = ACTIONS(5258), - [anon_sym_and_eq] = ACTIONS(5258), - [anon_sym_or_eq] = ACTIONS(5258), - [anon_sym_xor_eq] = ACTIONS(5258), - [anon_sym_LT_EQ_GT] = ACTIONS(5258), - [anon_sym_or] = ACTIONS(5251), - [anon_sym_and] = ACTIONS(5251), - [anon_sym_bitor] = ACTIONS(5258), - [anon_sym_xor] = ACTIONS(5251), - [anon_sym_bitand] = ACTIONS(5258), - [anon_sym_not_eq] = ACTIONS(5258), - [anon_sym_DASH_DASH] = ACTIONS(5258), - [anon_sym_PLUS_PLUS] = ACTIONS(5258), - [anon_sym_DOT] = ACTIONS(5251), - [anon_sym_DOT_STAR] = ACTIONS(5258), - [anon_sym_DASH_GT] = ACTIONS(5258), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6678), - [anon_sym_decltype] = ACTIONS(6680), - [anon_sym_final] = ACTIONS(5258), - [anon_sym_override] = ACTIONS(5258), - [anon_sym_requires] = ACTIONS(5258), + [STATE(2169)] = { + [sym_identifier] = ACTIONS(7223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [aux_sym_preproc_if_token2] = ACTIONS(7225), + [aux_sym_preproc_else_token1] = ACTIONS(7225), + [aux_sym_preproc_elif_token1] = ACTIONS(7223), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym_SEMI] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym___attribute__] = ACTIONS(7223), + [anon_sym___attribute] = ACTIONS(7223), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_RBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7223), + [anon_sym__Alignas] = ACTIONS(7223), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7223), + [anon_sym_or_eq] = ACTIONS(7223), + [anon_sym_xor_eq] = ACTIONS(7223), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7223), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7223), + [anon_sym_not_eq] = ACTIONS(7223), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7223), + [anon_sym_override] = ACTIONS(7223), + [anon_sym_requires] = ACTIONS(7223), + [anon_sym_COLON_RBRACK] = ACTIONS(7225), }, - [STATE(2243)] = { - [sym_attribute_specifier] = STATE(2243), - [aux_sym_type_definition_repeat1] = STATE(2243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6555), - [anon_sym_COMMA] = ACTIONS(6555), - [anon_sym_RPAREN] = ACTIONS(6555), - [anon_sym_LPAREN2] = ACTIONS(6555), - [anon_sym_DASH] = ACTIONS(6553), - [anon_sym_PLUS] = ACTIONS(6553), - [anon_sym_STAR] = ACTIONS(6553), - [anon_sym_SLASH] = ACTIONS(6553), - [anon_sym_PERCENT] = ACTIONS(6553), - [anon_sym_PIPE_PIPE] = ACTIONS(6555), - [anon_sym_AMP_AMP] = ACTIONS(6555), - [anon_sym_PIPE] = ACTIONS(6553), - [anon_sym_CARET] = ACTIONS(6553), - [anon_sym_AMP] = ACTIONS(6553), - [anon_sym_EQ_EQ] = ACTIONS(6555), - [anon_sym_BANG_EQ] = ACTIONS(6555), - [anon_sym_GT] = ACTIONS(6553), - [anon_sym_GT_EQ] = ACTIONS(6555), - [anon_sym_LT_EQ] = ACTIONS(6553), - [anon_sym_LT] = ACTIONS(6553), - [anon_sym_LT_LT] = ACTIONS(6553), - [anon_sym_GT_GT] = ACTIONS(6553), - [anon_sym___extension__] = ACTIONS(6555), - [anon_sym___attribute__] = ACTIONS(7683), - [anon_sym___attribute] = ACTIONS(7686), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6555), - [anon_sym_LBRACK] = ACTIONS(6553), - [anon_sym_EQ] = ACTIONS(6553), - [anon_sym_const] = ACTIONS(6553), - [anon_sym_constexpr] = ACTIONS(6555), - [anon_sym_volatile] = ACTIONS(6555), - [anon_sym_restrict] = ACTIONS(6555), - [anon_sym___restrict__] = ACTIONS(6555), - [anon_sym__Atomic] = ACTIONS(6555), - [anon_sym__Noreturn] = ACTIONS(6555), - [anon_sym_noreturn] = ACTIONS(6555), - [anon_sym__Nonnull] = ACTIONS(6555), - [anon_sym_mutable] = ACTIONS(6555), - [anon_sym_constinit] = ACTIONS(6555), - [anon_sym_consteval] = ACTIONS(6555), - [anon_sym_alignas] = ACTIONS(6555), - [anon_sym__Alignas] = ACTIONS(6555), - [anon_sym_QMARK] = ACTIONS(6555), - [anon_sym_STAR_EQ] = ACTIONS(6555), - [anon_sym_SLASH_EQ] = ACTIONS(6555), - [anon_sym_PERCENT_EQ] = ACTIONS(6555), - [anon_sym_PLUS_EQ] = ACTIONS(6555), - [anon_sym_DASH_EQ] = ACTIONS(6555), - [anon_sym_LT_LT_EQ] = ACTIONS(6555), - [anon_sym_GT_GT_EQ] = ACTIONS(6555), - [anon_sym_AMP_EQ] = ACTIONS(6555), - [anon_sym_CARET_EQ] = ACTIONS(6555), - [anon_sym_PIPE_EQ] = ACTIONS(6555), - [anon_sym_and_eq] = ACTIONS(6555), - [anon_sym_or_eq] = ACTIONS(6555), - [anon_sym_xor_eq] = ACTIONS(6555), - [anon_sym_LT_EQ_GT] = ACTIONS(6555), - [anon_sym_or] = ACTIONS(6553), - [anon_sym_and] = ACTIONS(6553), - [anon_sym_bitor] = ACTIONS(6555), - [anon_sym_xor] = ACTIONS(6553), - [anon_sym_bitand] = ACTIONS(6555), - [anon_sym_not_eq] = ACTIONS(6555), - [anon_sym_DASH_DASH] = ACTIONS(6555), - [anon_sym_PLUS_PLUS] = ACTIONS(6555), - [anon_sym_asm] = ACTIONS(6555), - [anon_sym___asm__] = ACTIONS(6555), - [anon_sym___asm] = ACTIONS(6553), - [anon_sym_DOT] = ACTIONS(6553), - [anon_sym_DOT_STAR] = ACTIONS(6555), - [anon_sym_DASH_GT] = ACTIONS(6553), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6555), - [anon_sym_override] = ACTIONS(6555), - [anon_sym_noexcept] = ACTIONS(6555), - [anon_sym_throw] = ACTIONS(6555), - [anon_sym_requires] = ACTIONS(6555), - [anon_sym_DASH_GT_STAR] = ACTIONS(6555), + [STATE(2170)] = { + [sym_identifier] = ACTIONS(7085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), + [anon_sym_COMMA] = ACTIONS(7090), + [anon_sym_RPAREN] = ACTIONS(7090), + [aux_sym_preproc_if_token2] = ACTIONS(7090), + [aux_sym_preproc_else_token1] = ACTIONS(7090), + [aux_sym_preproc_elif_token1] = ACTIONS(7085), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7090), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7090), + [anon_sym_LPAREN2] = ACTIONS(7090), + [anon_sym_DASH] = ACTIONS(7085), + [anon_sym_PLUS] = ACTIONS(7085), + [anon_sym_STAR] = ACTIONS(7085), + [anon_sym_SLASH] = ACTIONS(7085), + [anon_sym_PERCENT] = ACTIONS(7085), + [anon_sym_PIPE_PIPE] = ACTIONS(7090), + [anon_sym_AMP_AMP] = ACTIONS(7090), + [anon_sym_PIPE] = ACTIONS(7085), + [anon_sym_CARET] = ACTIONS(7085), + [anon_sym_AMP] = ACTIONS(7085), + [anon_sym_EQ_EQ] = ACTIONS(7090), + [anon_sym_BANG_EQ] = ACTIONS(7090), + [anon_sym_GT] = ACTIONS(7085), + [anon_sym_GT_EQ] = ACTIONS(7090), + [anon_sym_LT_EQ] = ACTIONS(7085), + [anon_sym_LT] = ACTIONS(7085), + [anon_sym_LT_LT] = ACTIONS(7085), + [anon_sym_GT_GT] = ACTIONS(7085), + [anon_sym_SEMI] = ACTIONS(7090), + [anon_sym___extension__] = ACTIONS(7085), + [anon_sym___attribute__] = ACTIONS(7085), + [anon_sym___attribute] = ACTIONS(7085), + [anon_sym_COLON] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7090), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7090), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_RBRACE] = ACTIONS(7090), + [anon_sym_LBRACK] = ACTIONS(7090), + [anon_sym_EQ] = ACTIONS(7085), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7085), + [anon_sym_volatile] = ACTIONS(7085), + [anon_sym_restrict] = ACTIONS(7085), + [anon_sym___restrict__] = ACTIONS(7085), + [anon_sym__Atomic] = ACTIONS(7085), + [anon_sym__Noreturn] = ACTIONS(7085), + [anon_sym_noreturn] = ACTIONS(7085), + [anon_sym__Nonnull] = ACTIONS(7085), + [anon_sym_mutable] = ACTIONS(7085), + [anon_sym_constinit] = ACTIONS(7085), + [anon_sym_consteval] = ACTIONS(7085), + [anon_sym_alignas] = ACTIONS(7085), + [anon_sym__Alignas] = ACTIONS(7085), + [anon_sym_QMARK] = ACTIONS(7090), + [anon_sym_STAR_EQ] = ACTIONS(7090), + [anon_sym_SLASH_EQ] = ACTIONS(7090), + [anon_sym_PERCENT_EQ] = ACTIONS(7090), + [anon_sym_PLUS_EQ] = ACTIONS(7090), + [anon_sym_DASH_EQ] = ACTIONS(7090), + [anon_sym_LT_LT_EQ] = ACTIONS(7090), + [anon_sym_GT_GT_EQ] = ACTIONS(7090), + [anon_sym_AMP_EQ] = ACTIONS(7090), + [anon_sym_CARET_EQ] = ACTIONS(7090), + [anon_sym_PIPE_EQ] = ACTIONS(7090), + [anon_sym_and_eq] = ACTIONS(7085), + [anon_sym_or_eq] = ACTIONS(7085), + [anon_sym_xor_eq] = ACTIONS(7085), + [anon_sym_LT_EQ_GT] = ACTIONS(7090), + [anon_sym_or] = ACTIONS(7085), + [anon_sym_and] = ACTIONS(7085), + [anon_sym_bitor] = ACTIONS(7085), + [anon_sym_xor] = ACTIONS(7085), + [anon_sym_bitand] = ACTIONS(7085), + [anon_sym_not_eq] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7090), + [anon_sym_PLUS_PLUS] = ACTIONS(7090), + [anon_sym_DOT] = ACTIONS(7085), + [anon_sym_DOT_STAR] = ACTIONS(7090), + [anon_sym_DASH_GT] = ACTIONS(7090), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7085), + [anon_sym_override] = ACTIONS(7085), + [anon_sym_requires] = ACTIONS(7085), + [anon_sym_COLON_RBRACK] = ACTIONS(7090), }, - [STATE(2244)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6248), - [anon_sym_COMMA] = ACTIONS(6248), - [anon_sym_RPAREN] = ACTIONS(6248), - [anon_sym_LPAREN2] = ACTIONS(6248), - [anon_sym_DASH] = ACTIONS(6246), - [anon_sym_PLUS] = ACTIONS(6246), - [anon_sym_STAR] = ACTIONS(6246), - [anon_sym_SLASH] = ACTIONS(6246), - [anon_sym_PERCENT] = ACTIONS(6246), - [anon_sym_PIPE_PIPE] = ACTIONS(6248), - [anon_sym_AMP_AMP] = ACTIONS(6248), - [anon_sym_PIPE] = ACTIONS(6246), - [anon_sym_CARET] = ACTIONS(6246), - [anon_sym_AMP] = ACTIONS(6246), - [anon_sym_EQ_EQ] = ACTIONS(6248), - [anon_sym_BANG_EQ] = ACTIONS(6248), - [anon_sym_GT] = ACTIONS(6246), - [anon_sym_GT_EQ] = ACTIONS(6248), - [anon_sym_LT_EQ] = ACTIONS(6246), - [anon_sym_LT] = ACTIONS(6246), - [anon_sym_LT_LT] = ACTIONS(6246), - [anon_sym_GT_GT] = ACTIONS(6246), - [anon_sym_SEMI] = ACTIONS(6248), - [anon_sym___extension__] = ACTIONS(6248), - [anon_sym___attribute__] = ACTIONS(6248), - [anon_sym___attribute] = ACTIONS(6246), - [anon_sym_COLON] = ACTIONS(6246), - [anon_sym_COLON_COLON] = ACTIONS(6248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6248), - [anon_sym_LBRACE] = ACTIONS(6248), - [anon_sym_LBRACK] = ACTIONS(6246), - [anon_sym_EQ] = ACTIONS(6246), - [anon_sym_const] = ACTIONS(6246), - [anon_sym_constexpr] = ACTIONS(6248), - [anon_sym_volatile] = ACTIONS(6248), - [anon_sym_restrict] = ACTIONS(6248), - [anon_sym___restrict__] = ACTIONS(6248), - [anon_sym__Atomic] = ACTIONS(6248), - [anon_sym__Noreturn] = ACTIONS(6248), - [anon_sym_noreturn] = ACTIONS(6248), - [anon_sym__Nonnull] = ACTIONS(6248), - [anon_sym_mutable] = ACTIONS(6248), - [anon_sym_constinit] = ACTIONS(6248), - [anon_sym_consteval] = ACTIONS(6248), - [anon_sym_alignas] = ACTIONS(6248), - [anon_sym__Alignas] = ACTIONS(6248), - [anon_sym_QMARK] = ACTIONS(6248), - [anon_sym_STAR_EQ] = ACTIONS(6248), - [anon_sym_SLASH_EQ] = ACTIONS(6248), - [anon_sym_PERCENT_EQ] = ACTIONS(6248), - [anon_sym_PLUS_EQ] = ACTIONS(6248), - [anon_sym_DASH_EQ] = ACTIONS(6248), - [anon_sym_LT_LT_EQ] = ACTIONS(6248), - [anon_sym_GT_GT_EQ] = ACTIONS(6248), - [anon_sym_AMP_EQ] = ACTIONS(6248), - [anon_sym_CARET_EQ] = ACTIONS(6248), - [anon_sym_PIPE_EQ] = ACTIONS(6248), - [anon_sym_and_eq] = ACTIONS(6248), - [anon_sym_or_eq] = ACTIONS(6248), - [anon_sym_xor_eq] = ACTIONS(6248), - [anon_sym_LT_EQ_GT] = ACTIONS(6248), - [anon_sym_or] = ACTIONS(6246), - [anon_sym_and] = ACTIONS(6246), - [anon_sym_bitor] = ACTIONS(6248), - [anon_sym_xor] = ACTIONS(6246), - [anon_sym_bitand] = ACTIONS(6248), - [anon_sym_not_eq] = ACTIONS(6248), - [anon_sym_DASH_DASH] = ACTIONS(6248), - [anon_sym_PLUS_PLUS] = ACTIONS(6248), - [anon_sym_asm] = ACTIONS(6248), - [anon_sym___asm__] = ACTIONS(6248), - [anon_sym___asm] = ACTIONS(6246), - [anon_sym_DOT] = ACTIONS(6246), - [anon_sym_DOT_STAR] = ACTIONS(6248), - [anon_sym_DASH_GT] = ACTIONS(6246), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6248), - [anon_sym_decltype] = ACTIONS(6248), - [anon_sym_try] = ACTIONS(6248), - [anon_sym_DASH_GT_STAR] = ACTIONS(6248), + [STATE(2171)] = { + [sym_attribute_specifier] = STATE(2192), + [sym_identifier] = ACTIONS(7547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7549), + [anon_sym_COMMA] = ACTIONS(7549), + [anon_sym_RPAREN] = ACTIONS(7549), + [aux_sym_preproc_if_token2] = ACTIONS(7549), + [aux_sym_preproc_else_token1] = ACTIONS(7549), + [aux_sym_preproc_elif_token1] = ACTIONS(7547), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7549), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7549), + [anon_sym_LPAREN2] = ACTIONS(7549), + [anon_sym_DASH] = ACTIONS(7547), + [anon_sym_PLUS] = ACTIONS(7547), + [anon_sym_STAR] = ACTIONS(7547), + [anon_sym_SLASH] = ACTIONS(7547), + [anon_sym_PERCENT] = ACTIONS(7547), + [anon_sym_PIPE_PIPE] = ACTIONS(7549), + [anon_sym_AMP_AMP] = ACTIONS(7549), + [anon_sym_PIPE] = ACTIONS(7547), + [anon_sym_CARET] = ACTIONS(7547), + [anon_sym_AMP] = ACTIONS(7547), + [anon_sym_EQ_EQ] = ACTIONS(7549), + [anon_sym_BANG_EQ] = ACTIONS(7549), + [anon_sym_GT] = ACTIONS(7547), + [anon_sym_GT_EQ] = ACTIONS(7549), + [anon_sym_LT_EQ] = ACTIONS(7547), + [anon_sym_LT] = ACTIONS(7547), + [anon_sym_LT_LT] = ACTIONS(7547), + [anon_sym_GT_GT] = ACTIONS(7547), + [anon_sym_SEMI] = ACTIONS(7549), + [anon_sym___extension__] = ACTIONS(7547), + [anon_sym___attribute__] = ACTIONS(7239), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_COLON] = ACTIONS(7547), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7549), + [anon_sym_LBRACE] = ACTIONS(7549), + [anon_sym_RBRACE] = ACTIONS(7549), + [anon_sym_LBRACK] = ACTIONS(7549), + [anon_sym_EQ] = ACTIONS(7547), + [anon_sym_const] = ACTIONS(7547), + [anon_sym_constexpr] = ACTIONS(7547), + [anon_sym_volatile] = ACTIONS(7547), + [anon_sym_restrict] = ACTIONS(7547), + [anon_sym___restrict__] = ACTIONS(7547), + [anon_sym__Atomic] = ACTIONS(7547), + [anon_sym__Noreturn] = ACTIONS(7547), + [anon_sym_noreturn] = ACTIONS(7547), + [anon_sym__Nonnull] = ACTIONS(7547), + [anon_sym_mutable] = ACTIONS(7547), + [anon_sym_constinit] = ACTIONS(7547), + [anon_sym_consteval] = ACTIONS(7547), + [anon_sym_alignas] = ACTIONS(7547), + [anon_sym__Alignas] = ACTIONS(7547), + [anon_sym_QMARK] = ACTIONS(7549), + [anon_sym_STAR_EQ] = ACTIONS(7549), + [anon_sym_SLASH_EQ] = ACTIONS(7549), + [anon_sym_PERCENT_EQ] = ACTIONS(7549), + [anon_sym_PLUS_EQ] = ACTIONS(7549), + [anon_sym_DASH_EQ] = ACTIONS(7549), + [anon_sym_LT_LT_EQ] = ACTIONS(7549), + [anon_sym_GT_GT_EQ] = ACTIONS(7549), + [anon_sym_AMP_EQ] = ACTIONS(7549), + [anon_sym_CARET_EQ] = ACTIONS(7549), + [anon_sym_PIPE_EQ] = ACTIONS(7549), + [anon_sym_and_eq] = ACTIONS(7547), + [anon_sym_or_eq] = ACTIONS(7547), + [anon_sym_xor_eq] = ACTIONS(7547), + [anon_sym_LT_EQ_GT] = ACTIONS(7549), + [anon_sym_or] = ACTIONS(7547), + [anon_sym_and] = ACTIONS(7547), + [anon_sym_bitor] = ACTIONS(7547), + [anon_sym_xor] = ACTIONS(7547), + [anon_sym_bitand] = ACTIONS(7547), + [anon_sym_not_eq] = ACTIONS(7547), + [anon_sym_DASH_DASH] = ACTIONS(7549), + [anon_sym_PLUS_PLUS] = ACTIONS(7549), + [anon_sym_DOT] = ACTIONS(7547), + [anon_sym_DOT_STAR] = ACTIONS(7549), + [anon_sym_DASH_GT] = ACTIONS(7549), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7547), + [anon_sym_override] = ACTIONS(7547), + [anon_sym_requires] = ACTIONS(7547), + [anon_sym_COLON_RBRACK] = ACTIONS(7549), }, - [STATE(2245)] = { - [sym_type_qualifier] = STATE(2277), - [sym_alignas_qualifier] = STATE(2432), - [aux_sym__type_definition_type_repeat1] = STATE(2277), - [aux_sym_sized_type_specifier_repeat1] = STATE(2496), - [sym_identifier] = ACTIONS(7689), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), - [anon_sym_COMMA] = ACTIONS(6884), - [anon_sym_RPAREN] = ACTIONS(6884), - [anon_sym_LPAREN2] = ACTIONS(6884), - [anon_sym_DASH] = ACTIONS(6886), - [anon_sym_PLUS] = ACTIONS(6886), - [anon_sym_STAR] = ACTIONS(6886), - [anon_sym_SLASH] = ACTIONS(6886), - [anon_sym_PERCENT] = ACTIONS(6886), - [anon_sym_PIPE_PIPE] = ACTIONS(6884), - [anon_sym_AMP_AMP] = ACTIONS(6884), - [anon_sym_PIPE] = ACTIONS(6886), - [anon_sym_CARET] = ACTIONS(6886), - [anon_sym_AMP] = ACTIONS(6886), - [anon_sym_EQ_EQ] = ACTIONS(6884), - [anon_sym_BANG_EQ] = ACTIONS(6884), - [anon_sym_GT] = ACTIONS(6886), - [anon_sym_GT_EQ] = ACTIONS(6884), - [anon_sym_LT_EQ] = ACTIONS(6886), - [anon_sym_LT] = ACTIONS(6886), - [anon_sym_LT_LT] = ACTIONS(6886), - [anon_sym_GT_GT] = ACTIONS(6886), - [anon_sym___extension__] = ACTIONS(7691), - [anon_sym___attribute__] = ACTIONS(6886), - [anon_sym___attribute] = ACTIONS(6886), - [anon_sym_LBRACE] = ACTIONS(6884), - [anon_sym_signed] = ACTIONS(7694), - [anon_sym_unsigned] = ACTIONS(7694), - [anon_sym_long] = ACTIONS(7694), - [anon_sym_short] = ACTIONS(7694), - [anon_sym_LBRACK] = ACTIONS(6884), - [anon_sym_EQ] = ACTIONS(6886), - [anon_sym_const] = ACTIONS(7691), - [anon_sym_constexpr] = ACTIONS(7691), - [anon_sym_volatile] = ACTIONS(7691), - [anon_sym_restrict] = ACTIONS(7691), - [anon_sym___restrict__] = ACTIONS(7691), - [anon_sym__Atomic] = ACTIONS(7691), - [anon_sym__Noreturn] = ACTIONS(7691), - [anon_sym_noreturn] = ACTIONS(7691), - [anon_sym__Nonnull] = ACTIONS(7691), - [anon_sym_mutable] = ACTIONS(7691), - [anon_sym_constinit] = ACTIONS(7691), - [anon_sym_consteval] = ACTIONS(7691), - [anon_sym_alignas] = ACTIONS(7696), - [anon_sym__Alignas] = ACTIONS(7696), - [sym_primitive_type] = ACTIONS(7699), - [anon_sym_QMARK] = ACTIONS(6884), - [anon_sym_STAR_EQ] = ACTIONS(6884), - [anon_sym_SLASH_EQ] = ACTIONS(6884), - [anon_sym_PERCENT_EQ] = ACTIONS(6884), - [anon_sym_PLUS_EQ] = ACTIONS(6884), - [anon_sym_DASH_EQ] = ACTIONS(6884), - [anon_sym_LT_LT_EQ] = ACTIONS(6884), - [anon_sym_GT_GT_EQ] = ACTIONS(6884), - [anon_sym_AMP_EQ] = ACTIONS(6884), - [anon_sym_CARET_EQ] = ACTIONS(6884), - [anon_sym_PIPE_EQ] = ACTIONS(6884), - [anon_sym_LT_EQ_GT] = ACTIONS(6884), - [anon_sym_or] = ACTIONS(6886), - [anon_sym_and] = ACTIONS(6886), - [anon_sym_bitor] = ACTIONS(6886), - [anon_sym_xor] = ACTIONS(6886), - [anon_sym_bitand] = ACTIONS(6886), - [anon_sym_not_eq] = ACTIONS(6886), - [anon_sym_DASH_DASH] = ACTIONS(6884), - [anon_sym_PLUS_PLUS] = ACTIONS(6884), - [anon_sym_DOT] = ACTIONS(6886), - [anon_sym_DOT_STAR] = ACTIONS(6884), - [anon_sym_DASH_GT] = ACTIONS(6886), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6886), - [anon_sym_override] = ACTIONS(6886), - [anon_sym_requires] = ACTIONS(6886), - [anon_sym_DASH_GT_STAR] = ACTIONS(6884), + [STATE(2172)] = { + [sym_attribute_specifier] = STATE(2184), + [sym_identifier] = ACTIONS(7551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7553), + [anon_sym_COMMA] = ACTIONS(7553), + [anon_sym_RPAREN] = ACTIONS(7553), + [aux_sym_preproc_if_token2] = ACTIONS(7553), + [aux_sym_preproc_else_token1] = ACTIONS(7553), + [aux_sym_preproc_elif_token1] = ACTIONS(7551), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7553), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7553), + [anon_sym_LPAREN2] = ACTIONS(7553), + [anon_sym_DASH] = ACTIONS(7551), + [anon_sym_PLUS] = ACTIONS(7551), + [anon_sym_STAR] = ACTIONS(7551), + [anon_sym_SLASH] = ACTIONS(7551), + [anon_sym_PERCENT] = ACTIONS(7551), + [anon_sym_PIPE_PIPE] = ACTIONS(7553), + [anon_sym_AMP_AMP] = ACTIONS(7553), + [anon_sym_PIPE] = ACTIONS(7551), + [anon_sym_CARET] = ACTIONS(7551), + [anon_sym_AMP] = ACTIONS(7551), + [anon_sym_EQ_EQ] = ACTIONS(7553), + [anon_sym_BANG_EQ] = ACTIONS(7553), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_GT_EQ] = ACTIONS(7553), + [anon_sym_LT_EQ] = ACTIONS(7551), + [anon_sym_LT] = ACTIONS(7551), + [anon_sym_LT_LT] = ACTIONS(7551), + [anon_sym_GT_GT] = ACTIONS(7551), + [anon_sym_SEMI] = ACTIONS(7553), + [anon_sym___extension__] = ACTIONS(7551), + [anon_sym___attribute__] = ACTIONS(7239), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_COLON] = ACTIONS(7551), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7553), + [anon_sym_LBRACE] = ACTIONS(7553), + [anon_sym_RBRACE] = ACTIONS(7553), + [anon_sym_LBRACK] = ACTIONS(7553), + [anon_sym_EQ] = ACTIONS(7551), + [anon_sym_const] = ACTIONS(7551), + [anon_sym_constexpr] = ACTIONS(7551), + [anon_sym_volatile] = ACTIONS(7551), + [anon_sym_restrict] = ACTIONS(7551), + [anon_sym___restrict__] = ACTIONS(7551), + [anon_sym__Atomic] = ACTIONS(7551), + [anon_sym__Noreturn] = ACTIONS(7551), + [anon_sym_noreturn] = ACTIONS(7551), + [anon_sym__Nonnull] = ACTIONS(7551), + [anon_sym_mutable] = ACTIONS(7551), + [anon_sym_constinit] = ACTIONS(7551), + [anon_sym_consteval] = ACTIONS(7551), + [anon_sym_alignas] = ACTIONS(7551), + [anon_sym__Alignas] = ACTIONS(7551), + [anon_sym_QMARK] = ACTIONS(7553), + [anon_sym_STAR_EQ] = ACTIONS(7553), + [anon_sym_SLASH_EQ] = ACTIONS(7553), + [anon_sym_PERCENT_EQ] = ACTIONS(7553), + [anon_sym_PLUS_EQ] = ACTIONS(7553), + [anon_sym_DASH_EQ] = ACTIONS(7553), + [anon_sym_LT_LT_EQ] = ACTIONS(7553), + [anon_sym_GT_GT_EQ] = ACTIONS(7553), + [anon_sym_AMP_EQ] = ACTIONS(7553), + [anon_sym_CARET_EQ] = ACTIONS(7553), + [anon_sym_PIPE_EQ] = ACTIONS(7553), + [anon_sym_and_eq] = ACTIONS(7551), + [anon_sym_or_eq] = ACTIONS(7551), + [anon_sym_xor_eq] = ACTIONS(7551), + [anon_sym_LT_EQ_GT] = ACTIONS(7553), + [anon_sym_or] = ACTIONS(7551), + [anon_sym_and] = ACTIONS(7551), + [anon_sym_bitor] = ACTIONS(7551), + [anon_sym_xor] = ACTIONS(7551), + [anon_sym_bitand] = ACTIONS(7551), + [anon_sym_not_eq] = ACTIONS(7551), + [anon_sym_DASH_DASH] = ACTIONS(7553), + [anon_sym_PLUS_PLUS] = ACTIONS(7553), + [anon_sym_DOT] = ACTIONS(7551), + [anon_sym_DOT_STAR] = ACTIONS(7553), + [anon_sym_DASH_GT] = ACTIONS(7553), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7551), + [anon_sym_requires] = ACTIONS(7551), + [anon_sym_COLON_RBRACK] = ACTIONS(7553), }, - [STATE(2246)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6256), - [anon_sym_COMMA] = ACTIONS(6256), - [anon_sym_RPAREN] = ACTIONS(6256), - [anon_sym_LPAREN2] = ACTIONS(6256), - [anon_sym_DASH] = ACTIONS(6254), - [anon_sym_PLUS] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(6254), - [anon_sym_SLASH] = ACTIONS(6254), - [anon_sym_PERCENT] = ACTIONS(6254), - [anon_sym_PIPE_PIPE] = ACTIONS(6256), - [anon_sym_AMP_AMP] = ACTIONS(6256), - [anon_sym_PIPE] = ACTIONS(6254), - [anon_sym_CARET] = ACTIONS(6254), - [anon_sym_AMP] = ACTIONS(6254), - [anon_sym_EQ_EQ] = ACTIONS(6256), - [anon_sym_BANG_EQ] = ACTIONS(6256), - [anon_sym_GT] = ACTIONS(6254), - [anon_sym_GT_EQ] = ACTIONS(6256), - [anon_sym_LT_EQ] = ACTIONS(6254), - [anon_sym_LT] = ACTIONS(6254), - [anon_sym_LT_LT] = ACTIONS(6254), - [anon_sym_GT_GT] = ACTIONS(6254), - [anon_sym_SEMI] = ACTIONS(6256), - [anon_sym___extension__] = ACTIONS(6256), - [anon_sym___attribute__] = ACTIONS(6256), - [anon_sym___attribute] = ACTIONS(6254), - [anon_sym_COLON] = ACTIONS(6254), - [anon_sym_COLON_COLON] = ACTIONS(6256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6256), - [anon_sym_LBRACE] = ACTIONS(6256), - [anon_sym_LBRACK] = ACTIONS(6254), - [anon_sym_EQ] = ACTIONS(6254), - [anon_sym_const] = ACTIONS(6254), - [anon_sym_constexpr] = ACTIONS(6256), - [anon_sym_volatile] = ACTIONS(6256), - [anon_sym_restrict] = ACTIONS(6256), - [anon_sym___restrict__] = ACTIONS(6256), - [anon_sym__Atomic] = ACTIONS(6256), - [anon_sym__Noreturn] = ACTIONS(6256), - [anon_sym_noreturn] = ACTIONS(6256), - [anon_sym__Nonnull] = ACTIONS(6256), - [anon_sym_mutable] = ACTIONS(6256), - [anon_sym_constinit] = ACTIONS(6256), - [anon_sym_consteval] = ACTIONS(6256), - [anon_sym_alignas] = ACTIONS(6256), - [anon_sym__Alignas] = ACTIONS(6256), - [anon_sym_QMARK] = ACTIONS(6256), - [anon_sym_STAR_EQ] = ACTIONS(6256), - [anon_sym_SLASH_EQ] = ACTIONS(6256), - [anon_sym_PERCENT_EQ] = ACTIONS(6256), - [anon_sym_PLUS_EQ] = ACTIONS(6256), - [anon_sym_DASH_EQ] = ACTIONS(6256), - [anon_sym_LT_LT_EQ] = ACTIONS(6256), - [anon_sym_GT_GT_EQ] = ACTIONS(6256), - [anon_sym_AMP_EQ] = ACTIONS(6256), - [anon_sym_CARET_EQ] = ACTIONS(6256), - [anon_sym_PIPE_EQ] = ACTIONS(6256), - [anon_sym_and_eq] = ACTIONS(6256), - [anon_sym_or_eq] = ACTIONS(6256), - [anon_sym_xor_eq] = ACTIONS(6256), - [anon_sym_LT_EQ_GT] = ACTIONS(6256), - [anon_sym_or] = ACTIONS(6254), - [anon_sym_and] = ACTIONS(6254), - [anon_sym_bitor] = ACTIONS(6256), - [anon_sym_xor] = ACTIONS(6254), - [anon_sym_bitand] = ACTIONS(6256), - [anon_sym_not_eq] = ACTIONS(6256), - [anon_sym_DASH_DASH] = ACTIONS(6256), - [anon_sym_PLUS_PLUS] = ACTIONS(6256), - [anon_sym_asm] = ACTIONS(6256), - [anon_sym___asm__] = ACTIONS(6256), - [anon_sym___asm] = ACTIONS(6254), - [anon_sym_DOT] = ACTIONS(6254), - [anon_sym_DOT_STAR] = ACTIONS(6256), - [anon_sym_DASH_GT] = ACTIONS(6254), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6256), - [anon_sym_decltype] = ACTIONS(6256), - [anon_sym_try] = ACTIONS(6256), - [anon_sym_DASH_GT_STAR] = ACTIONS(6256), + [STATE(2173)] = { + [sym_template_argument_list] = STATE(2053), + [sym_identifier] = ACTIONS(7085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7097), + [anon_sym_COMMA] = ACTIONS(7097), + [anon_sym_RPAREN] = ACTIONS(7097), + [anon_sym_LPAREN2] = ACTIONS(7087), + [anon_sym_TILDE] = ACTIONS(7090), + [anon_sym_DASH] = ACTIONS(7092), + [anon_sym_PLUS] = ACTIONS(7092), + [anon_sym_STAR] = ACTIONS(7087), + [anon_sym_SLASH] = ACTIONS(7092), + [anon_sym_PERCENT] = ACTIONS(7097), + [anon_sym_PIPE_PIPE] = ACTIONS(7097), + [anon_sym_AMP_AMP] = ACTIONS(7087), + [anon_sym_PIPE] = ACTIONS(7092), + [anon_sym_CARET] = ACTIONS(7097), + [anon_sym_AMP] = ACTIONS(7094), + [anon_sym_EQ_EQ] = ACTIONS(7097), + [anon_sym_BANG_EQ] = ACTIONS(7097), + [anon_sym_GT] = ACTIONS(7092), + [anon_sym_GT_EQ] = ACTIONS(7097), + [anon_sym_LT_EQ] = ACTIONS(7092), + [anon_sym_LT] = ACTIONS(7445), + [anon_sym_LT_LT] = ACTIONS(7097), + [anon_sym_GT_GT] = ACTIONS(7097), + [anon_sym_SEMI] = ACTIONS(7097), + [anon_sym___extension__] = ACTIONS(7085), + [anon_sym_virtual] = ACTIONS(7085), + [anon_sym_extern] = ACTIONS(7085), + [anon_sym___attribute__] = ACTIONS(7085), + [anon_sym___attribute] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7087), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7090), + [anon_sym___declspec] = ACTIONS(7085), + [anon_sym___based] = ACTIONS(7085), + [anon_sym___cdecl] = ACTIONS(7085), + [anon_sym___clrcall] = ACTIONS(7085), + [anon_sym___stdcall] = ACTIONS(7085), + [anon_sym___fastcall] = ACTIONS(7085), + [anon_sym___thiscall] = ACTIONS(7085), + [anon_sym___vectorcall] = ACTIONS(7085), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_RBRACE] = ACTIONS(7097), + [anon_sym_LBRACK] = ACTIONS(7094), + [anon_sym_static] = ACTIONS(7085), + [anon_sym_register] = ACTIONS(7085), + [anon_sym_inline] = ACTIONS(7085), + [anon_sym___inline] = ACTIONS(7085), + [anon_sym___inline__] = ACTIONS(7085), + [anon_sym___forceinline] = ACTIONS(7085), + [anon_sym_thread_local] = ACTIONS(7085), + [anon_sym___thread] = ACTIONS(7085), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7085), + [anon_sym_volatile] = ACTIONS(7085), + [anon_sym_restrict] = ACTIONS(7085), + [anon_sym___restrict__] = ACTIONS(7085), + [anon_sym__Atomic] = ACTIONS(7085), + [anon_sym__Noreturn] = ACTIONS(7085), + [anon_sym_noreturn] = ACTIONS(7085), + [anon_sym__Nonnull] = ACTIONS(7085), + [anon_sym_mutable] = ACTIONS(7085), + [anon_sym_constinit] = ACTIONS(7085), + [anon_sym_consteval] = ACTIONS(7085), + [anon_sym_alignas] = ACTIONS(7085), + [anon_sym__Alignas] = ACTIONS(7085), + [anon_sym_QMARK] = ACTIONS(7097), + [anon_sym_LT_EQ_GT] = ACTIONS(7097), + [anon_sym_or] = ACTIONS(7092), + [anon_sym_and] = ACTIONS(7092), + [anon_sym_bitor] = ACTIONS(7092), + [anon_sym_xor] = ACTIONS(7092), + [anon_sym_bitand] = ACTIONS(7092), + [anon_sym_not_eq] = ACTIONS(7092), + [anon_sym_DASH_DASH] = ACTIONS(7097), + [anon_sym_PLUS_PLUS] = ACTIONS(7097), + [anon_sym_DOT] = ACTIONS(7092), + [anon_sym_DOT_STAR] = ACTIONS(7097), + [anon_sym_DASH_GT] = ACTIONS(7097), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7085), + [anon_sym_template] = ACTIONS(7085), + [anon_sym_operator] = ACTIONS(7085), + [anon_sym_LBRACK_COLON] = ACTIONS(7090), }, - [STATE(2247)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), - [anon_sym_COMMA] = ACTIONS(6260), - [anon_sym_RPAREN] = ACTIONS(6260), - [anon_sym_LPAREN2] = ACTIONS(6260), - [anon_sym_DASH] = ACTIONS(6258), - [anon_sym_PLUS] = ACTIONS(6258), - [anon_sym_STAR] = ACTIONS(6258), - [anon_sym_SLASH] = ACTIONS(6258), - [anon_sym_PERCENT] = ACTIONS(6258), - [anon_sym_PIPE_PIPE] = ACTIONS(6260), - [anon_sym_AMP_AMP] = ACTIONS(6260), - [anon_sym_PIPE] = ACTIONS(6258), - [anon_sym_CARET] = ACTIONS(6258), - [anon_sym_AMP] = ACTIONS(6258), - [anon_sym_EQ_EQ] = ACTIONS(6260), - [anon_sym_BANG_EQ] = ACTIONS(6260), - [anon_sym_GT] = ACTIONS(6258), - [anon_sym_GT_EQ] = ACTIONS(6260), - [anon_sym_LT_EQ] = ACTIONS(6258), - [anon_sym_LT] = ACTIONS(6258), - [anon_sym_LT_LT] = ACTIONS(6258), - [anon_sym_GT_GT] = ACTIONS(6258), - [anon_sym_SEMI] = ACTIONS(6260), - [anon_sym___extension__] = ACTIONS(6260), - [anon_sym___attribute__] = ACTIONS(6260), - [anon_sym___attribute] = ACTIONS(6258), - [anon_sym_COLON] = ACTIONS(6258), - [anon_sym_COLON_COLON] = ACTIONS(6260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6260), - [anon_sym_LBRACK] = ACTIONS(6258), - [anon_sym_EQ] = ACTIONS(6258), - [anon_sym_const] = ACTIONS(6258), - [anon_sym_constexpr] = ACTIONS(6260), - [anon_sym_volatile] = ACTIONS(6260), - [anon_sym_restrict] = ACTIONS(6260), - [anon_sym___restrict__] = ACTIONS(6260), - [anon_sym__Atomic] = ACTIONS(6260), - [anon_sym__Noreturn] = ACTIONS(6260), - [anon_sym_noreturn] = ACTIONS(6260), - [anon_sym__Nonnull] = ACTIONS(6260), - [anon_sym_mutable] = ACTIONS(6260), - [anon_sym_constinit] = ACTIONS(6260), - [anon_sym_consteval] = ACTIONS(6260), - [anon_sym_alignas] = ACTIONS(6260), - [anon_sym__Alignas] = ACTIONS(6260), - [anon_sym_QMARK] = ACTIONS(6260), - [anon_sym_STAR_EQ] = ACTIONS(6260), - [anon_sym_SLASH_EQ] = ACTIONS(6260), - [anon_sym_PERCENT_EQ] = ACTIONS(6260), - [anon_sym_PLUS_EQ] = ACTIONS(6260), - [anon_sym_DASH_EQ] = ACTIONS(6260), - [anon_sym_LT_LT_EQ] = ACTIONS(6260), - [anon_sym_GT_GT_EQ] = ACTIONS(6260), - [anon_sym_AMP_EQ] = ACTIONS(6260), - [anon_sym_CARET_EQ] = ACTIONS(6260), - [anon_sym_PIPE_EQ] = ACTIONS(6260), - [anon_sym_and_eq] = ACTIONS(6260), - [anon_sym_or_eq] = ACTIONS(6260), - [anon_sym_xor_eq] = ACTIONS(6260), - [anon_sym_LT_EQ_GT] = ACTIONS(6260), - [anon_sym_or] = ACTIONS(6258), - [anon_sym_and] = ACTIONS(6258), - [anon_sym_bitor] = ACTIONS(6260), - [anon_sym_xor] = ACTIONS(6258), - [anon_sym_bitand] = ACTIONS(6260), - [anon_sym_not_eq] = ACTIONS(6260), - [anon_sym_DASH_DASH] = ACTIONS(6260), - [anon_sym_PLUS_PLUS] = ACTIONS(6260), - [anon_sym_asm] = ACTIONS(6260), - [anon_sym___asm__] = ACTIONS(6260), - [anon_sym___asm] = ACTIONS(6258), - [anon_sym_DOT] = ACTIONS(6258), - [anon_sym_DOT_STAR] = ACTIONS(6260), - [anon_sym_DASH_GT] = ACTIONS(6258), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6260), - [anon_sym_decltype] = ACTIONS(6260), - [anon_sym_try] = ACTIONS(6260), - [anon_sym_DASH_GT_STAR] = ACTIONS(6260), + [STATE(2174)] = { + [sym_identifier] = ACTIONS(7104), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7106), + [anon_sym_COMMA] = ACTIONS(7106), + [anon_sym_RPAREN] = ACTIONS(7106), + [aux_sym_preproc_if_token2] = ACTIONS(7106), + [aux_sym_preproc_else_token1] = ACTIONS(7106), + [aux_sym_preproc_elif_token1] = ACTIONS(7104), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7106), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7106), + [anon_sym_LPAREN2] = ACTIONS(7106), + [anon_sym_DASH] = ACTIONS(7104), + [anon_sym_PLUS] = ACTIONS(7104), + [anon_sym_STAR] = ACTIONS(7104), + [anon_sym_SLASH] = ACTIONS(7104), + [anon_sym_PERCENT] = ACTIONS(7104), + [anon_sym_PIPE_PIPE] = ACTIONS(7106), + [anon_sym_AMP_AMP] = ACTIONS(7106), + [anon_sym_PIPE] = ACTIONS(7104), + [anon_sym_CARET] = ACTIONS(7104), + [anon_sym_AMP] = ACTIONS(7104), + [anon_sym_EQ_EQ] = ACTIONS(7106), + [anon_sym_BANG_EQ] = ACTIONS(7106), + [anon_sym_GT] = ACTIONS(7104), + [anon_sym_GT_EQ] = ACTIONS(7106), + [anon_sym_LT_EQ] = ACTIONS(7104), + [anon_sym_LT] = ACTIONS(7104), + [anon_sym_LT_LT] = ACTIONS(7104), + [anon_sym_GT_GT] = ACTIONS(7104), + [anon_sym_SEMI] = ACTIONS(7106), + [anon_sym___extension__] = ACTIONS(7104), + [anon_sym___attribute__] = ACTIONS(7104), + [anon_sym___attribute] = ACTIONS(7104), + [anon_sym_COLON] = ACTIONS(7104), + [anon_sym_COLON_COLON] = ACTIONS(7106), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7106), + [anon_sym_LBRACE] = ACTIONS(7106), + [anon_sym_RBRACE] = ACTIONS(7106), + [anon_sym_LBRACK] = ACTIONS(7106), + [anon_sym_EQ] = ACTIONS(7104), + [anon_sym_const] = ACTIONS(7104), + [anon_sym_constexpr] = ACTIONS(7104), + [anon_sym_volatile] = ACTIONS(7104), + [anon_sym_restrict] = ACTIONS(7104), + [anon_sym___restrict__] = ACTIONS(7104), + [anon_sym__Atomic] = ACTIONS(7104), + [anon_sym__Noreturn] = ACTIONS(7104), + [anon_sym_noreturn] = ACTIONS(7104), + [anon_sym__Nonnull] = ACTIONS(7104), + [anon_sym_mutable] = ACTIONS(7104), + [anon_sym_constinit] = ACTIONS(7104), + [anon_sym_consteval] = ACTIONS(7104), + [anon_sym_alignas] = ACTIONS(7104), + [anon_sym__Alignas] = ACTIONS(7104), + [anon_sym_QMARK] = ACTIONS(7106), + [anon_sym_STAR_EQ] = ACTIONS(7106), + [anon_sym_SLASH_EQ] = ACTIONS(7106), + [anon_sym_PERCENT_EQ] = ACTIONS(7106), + [anon_sym_PLUS_EQ] = ACTIONS(7106), + [anon_sym_DASH_EQ] = ACTIONS(7106), + [anon_sym_LT_LT_EQ] = ACTIONS(7106), + [anon_sym_GT_GT_EQ] = ACTIONS(7106), + [anon_sym_AMP_EQ] = ACTIONS(7106), + [anon_sym_CARET_EQ] = ACTIONS(7106), + [anon_sym_PIPE_EQ] = ACTIONS(7106), + [anon_sym_and_eq] = ACTIONS(7104), + [anon_sym_or_eq] = ACTIONS(7104), + [anon_sym_xor_eq] = ACTIONS(7104), + [anon_sym_LT_EQ_GT] = ACTIONS(7106), + [anon_sym_or] = ACTIONS(7104), + [anon_sym_and] = ACTIONS(7104), + [anon_sym_bitor] = ACTIONS(7104), + [anon_sym_xor] = ACTIONS(7104), + [anon_sym_bitand] = ACTIONS(7104), + [anon_sym_not_eq] = ACTIONS(7104), + [anon_sym_DASH_DASH] = ACTIONS(7106), + [anon_sym_PLUS_PLUS] = ACTIONS(7106), + [anon_sym_DOT] = ACTIONS(7104), + [anon_sym_DOT_STAR] = ACTIONS(7106), + [anon_sym_DASH_GT] = ACTIONS(7106), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7104), + [anon_sym_override] = ACTIONS(7104), + [anon_sym_requires] = ACTIONS(7104), + [anon_sym_COLON_RBRACK] = ACTIONS(7106), }, - [STATE(2248)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), - [anon_sym_COMMA] = ACTIONS(6264), - [anon_sym_RPAREN] = ACTIONS(6264), - [anon_sym_LPAREN2] = ACTIONS(6264), - [anon_sym_DASH] = ACTIONS(6262), - [anon_sym_PLUS] = ACTIONS(6262), - [anon_sym_STAR] = ACTIONS(6262), - [anon_sym_SLASH] = ACTIONS(6262), - [anon_sym_PERCENT] = ACTIONS(6262), - [anon_sym_PIPE_PIPE] = ACTIONS(6264), - [anon_sym_AMP_AMP] = ACTIONS(6264), - [anon_sym_PIPE] = ACTIONS(6262), - [anon_sym_CARET] = ACTIONS(6262), - [anon_sym_AMP] = ACTIONS(6262), - [anon_sym_EQ_EQ] = ACTIONS(6264), - [anon_sym_BANG_EQ] = ACTIONS(6264), - [anon_sym_GT] = ACTIONS(6262), - [anon_sym_GT_EQ] = ACTIONS(6264), - [anon_sym_LT_EQ] = ACTIONS(6262), - [anon_sym_LT] = ACTIONS(6262), - [anon_sym_LT_LT] = ACTIONS(6262), - [anon_sym_GT_GT] = ACTIONS(6262), - [anon_sym_SEMI] = ACTIONS(6264), - [anon_sym___extension__] = ACTIONS(6264), - [anon_sym___attribute__] = ACTIONS(6264), - [anon_sym___attribute] = ACTIONS(6262), - [anon_sym_COLON] = ACTIONS(6262), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6264), - [anon_sym_LBRACE] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(6262), - [anon_sym_EQ] = ACTIONS(6262), - [anon_sym_const] = ACTIONS(6262), - [anon_sym_constexpr] = ACTIONS(6264), - [anon_sym_volatile] = ACTIONS(6264), - [anon_sym_restrict] = ACTIONS(6264), - [anon_sym___restrict__] = ACTIONS(6264), - [anon_sym__Atomic] = ACTIONS(6264), - [anon_sym__Noreturn] = ACTIONS(6264), - [anon_sym_noreturn] = ACTIONS(6264), - [anon_sym__Nonnull] = ACTIONS(6264), - [anon_sym_mutable] = ACTIONS(6264), - [anon_sym_constinit] = ACTIONS(6264), - [anon_sym_consteval] = ACTIONS(6264), - [anon_sym_alignas] = ACTIONS(6264), - [anon_sym__Alignas] = ACTIONS(6264), - [anon_sym_QMARK] = ACTIONS(6264), - [anon_sym_STAR_EQ] = ACTIONS(6264), - [anon_sym_SLASH_EQ] = ACTIONS(6264), - [anon_sym_PERCENT_EQ] = ACTIONS(6264), - [anon_sym_PLUS_EQ] = ACTIONS(6264), - [anon_sym_DASH_EQ] = ACTIONS(6264), - [anon_sym_LT_LT_EQ] = ACTIONS(6264), - [anon_sym_GT_GT_EQ] = ACTIONS(6264), - [anon_sym_AMP_EQ] = ACTIONS(6264), - [anon_sym_CARET_EQ] = ACTIONS(6264), - [anon_sym_PIPE_EQ] = ACTIONS(6264), - [anon_sym_and_eq] = ACTIONS(6264), - [anon_sym_or_eq] = ACTIONS(6264), - [anon_sym_xor_eq] = ACTIONS(6264), - [anon_sym_LT_EQ_GT] = ACTIONS(6264), - [anon_sym_or] = ACTIONS(6262), - [anon_sym_and] = ACTIONS(6262), - [anon_sym_bitor] = ACTIONS(6264), - [anon_sym_xor] = ACTIONS(6262), - [anon_sym_bitand] = ACTIONS(6264), - [anon_sym_not_eq] = ACTIONS(6264), - [anon_sym_DASH_DASH] = ACTIONS(6264), - [anon_sym_PLUS_PLUS] = ACTIONS(6264), - [anon_sym_asm] = ACTIONS(6264), - [anon_sym___asm__] = ACTIONS(6264), - [anon_sym___asm] = ACTIONS(6262), - [anon_sym_DOT] = ACTIONS(6262), - [anon_sym_DOT_STAR] = ACTIONS(6264), - [anon_sym_DASH_GT] = ACTIONS(6262), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6264), - [anon_sym_decltype] = ACTIONS(6264), - [anon_sym_try] = ACTIONS(6264), - [anon_sym_DASH_GT_STAR] = ACTIONS(6264), + [STATE(2175)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2213), + [sym_identifier] = ACTIONS(7555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7557), + [anon_sym_COMMA] = ACTIONS(7557), + [aux_sym_preproc_if_token2] = ACTIONS(7557), + [aux_sym_preproc_else_token1] = ACTIONS(7557), + [aux_sym_preproc_elif_token1] = ACTIONS(7555), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7557), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7557), + [anon_sym_LPAREN2] = ACTIONS(7557), + [anon_sym_DASH] = ACTIONS(7555), + [anon_sym_PLUS] = ACTIONS(7555), + [anon_sym_STAR] = ACTIONS(7555), + [anon_sym_SLASH] = ACTIONS(7555), + [anon_sym_PERCENT] = ACTIONS(7555), + [anon_sym_PIPE_PIPE] = ACTIONS(7557), + [anon_sym_AMP_AMP] = ACTIONS(7557), + [anon_sym_PIPE] = ACTIONS(7555), + [anon_sym_CARET] = ACTIONS(7555), + [anon_sym_AMP] = ACTIONS(7555), + [anon_sym_EQ_EQ] = ACTIONS(7557), + [anon_sym_BANG_EQ] = ACTIONS(7557), + [anon_sym_GT] = ACTIONS(7555), + [anon_sym_GT_EQ] = ACTIONS(7557), + [anon_sym_LT_EQ] = ACTIONS(7555), + [anon_sym_LT] = ACTIONS(7555), + [anon_sym_LT_LT] = ACTIONS(7555), + [anon_sym_GT_GT] = ACTIONS(7555), + [anon_sym___extension__] = ACTIONS(7555), + [anon_sym___attribute__] = ACTIONS(7555), + [anon_sym___attribute] = ACTIONS(7555), + [anon_sym_LBRACE] = ACTIONS(7557), + [anon_sym_signed] = ACTIONS(7559), + [anon_sym_unsigned] = ACTIONS(7559), + [anon_sym_long] = ACTIONS(7559), + [anon_sym_short] = ACTIONS(7559), + [anon_sym_LBRACK] = ACTIONS(7557), + [anon_sym_RBRACK] = ACTIONS(7557), + [anon_sym_EQ] = ACTIONS(7555), + [anon_sym_const] = ACTIONS(7555), + [anon_sym_constexpr] = ACTIONS(7555), + [anon_sym_volatile] = ACTIONS(7555), + [anon_sym_restrict] = ACTIONS(7555), + [anon_sym___restrict__] = ACTIONS(7555), + [anon_sym__Atomic] = ACTIONS(7555), + [anon_sym__Noreturn] = ACTIONS(7555), + [anon_sym_noreturn] = ACTIONS(7555), + [anon_sym__Nonnull] = ACTIONS(7555), + [anon_sym_mutable] = ACTIONS(7555), + [anon_sym_constinit] = ACTIONS(7555), + [anon_sym_consteval] = ACTIONS(7555), + [anon_sym_alignas] = ACTIONS(7555), + [anon_sym__Alignas] = ACTIONS(7555), + [anon_sym_QMARK] = ACTIONS(7557), + [anon_sym_STAR_EQ] = ACTIONS(7557), + [anon_sym_SLASH_EQ] = ACTIONS(7557), + [anon_sym_PERCENT_EQ] = ACTIONS(7557), + [anon_sym_PLUS_EQ] = ACTIONS(7557), + [anon_sym_DASH_EQ] = ACTIONS(7557), + [anon_sym_LT_LT_EQ] = ACTIONS(7557), + [anon_sym_GT_GT_EQ] = ACTIONS(7557), + [anon_sym_AMP_EQ] = ACTIONS(7557), + [anon_sym_CARET_EQ] = ACTIONS(7557), + [anon_sym_PIPE_EQ] = ACTIONS(7557), + [anon_sym_and_eq] = ACTIONS(7555), + [anon_sym_or_eq] = ACTIONS(7555), + [anon_sym_xor_eq] = ACTIONS(7555), + [anon_sym_LT_EQ_GT] = ACTIONS(7557), + [anon_sym_or] = ACTIONS(7555), + [anon_sym_and] = ACTIONS(7555), + [anon_sym_bitor] = ACTIONS(7555), + [anon_sym_xor] = ACTIONS(7555), + [anon_sym_bitand] = ACTIONS(7555), + [anon_sym_not_eq] = ACTIONS(7555), + [anon_sym_DASH_DASH] = ACTIONS(7557), + [anon_sym_PLUS_PLUS] = ACTIONS(7557), + [anon_sym_DOT] = ACTIONS(7555), + [anon_sym_DOT_STAR] = ACTIONS(7557), + [anon_sym_DASH_GT] = ACTIONS(7557), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7555), + [anon_sym_override] = ACTIONS(7555), + [anon_sym_requires] = ACTIONS(7555), }, - [STATE(2249)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6252), - [anon_sym_COMMA] = ACTIONS(6252), - [anon_sym_RPAREN] = ACTIONS(6252), - [anon_sym_LPAREN2] = ACTIONS(6252), - [anon_sym_DASH] = ACTIONS(6250), - [anon_sym_PLUS] = ACTIONS(6250), - [anon_sym_STAR] = ACTIONS(6250), - [anon_sym_SLASH] = ACTIONS(6250), - [anon_sym_PERCENT] = ACTIONS(6250), - [anon_sym_PIPE_PIPE] = ACTIONS(6252), - [anon_sym_AMP_AMP] = ACTIONS(6252), - [anon_sym_PIPE] = ACTIONS(6250), - [anon_sym_CARET] = ACTIONS(6250), - [anon_sym_AMP] = ACTIONS(6250), - [anon_sym_EQ_EQ] = ACTIONS(6252), - [anon_sym_BANG_EQ] = ACTIONS(6252), - [anon_sym_GT] = ACTIONS(6250), - [anon_sym_GT_EQ] = ACTIONS(6252), - [anon_sym_LT_EQ] = ACTIONS(6250), - [anon_sym_LT] = ACTIONS(6250), - [anon_sym_LT_LT] = ACTIONS(6250), - [anon_sym_GT_GT] = ACTIONS(6250), - [anon_sym_SEMI] = ACTIONS(6252), - [anon_sym___extension__] = ACTIONS(6252), - [anon_sym___attribute__] = ACTIONS(6252), - [anon_sym___attribute] = ACTIONS(6250), - [anon_sym_COLON] = ACTIONS(6250), - [anon_sym_COLON_COLON] = ACTIONS(6252), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6252), - [anon_sym_LBRACE] = ACTIONS(6252), - [anon_sym_LBRACK] = ACTIONS(6250), - [anon_sym_EQ] = ACTIONS(6250), - [anon_sym_const] = ACTIONS(6250), - [anon_sym_constexpr] = ACTIONS(6252), - [anon_sym_volatile] = ACTIONS(6252), - [anon_sym_restrict] = ACTIONS(6252), - [anon_sym___restrict__] = ACTIONS(6252), - [anon_sym__Atomic] = ACTIONS(6252), - [anon_sym__Noreturn] = ACTIONS(6252), - [anon_sym_noreturn] = ACTIONS(6252), - [anon_sym__Nonnull] = ACTIONS(6252), - [anon_sym_mutable] = ACTIONS(6252), - [anon_sym_constinit] = ACTIONS(6252), - [anon_sym_consteval] = ACTIONS(6252), - [anon_sym_alignas] = ACTIONS(6252), - [anon_sym__Alignas] = ACTIONS(6252), - [anon_sym_QMARK] = ACTIONS(6252), - [anon_sym_STAR_EQ] = ACTIONS(6252), - [anon_sym_SLASH_EQ] = ACTIONS(6252), - [anon_sym_PERCENT_EQ] = ACTIONS(6252), - [anon_sym_PLUS_EQ] = ACTIONS(6252), - [anon_sym_DASH_EQ] = ACTIONS(6252), - [anon_sym_LT_LT_EQ] = ACTIONS(6252), - [anon_sym_GT_GT_EQ] = ACTIONS(6252), - [anon_sym_AMP_EQ] = ACTIONS(6252), - [anon_sym_CARET_EQ] = ACTIONS(6252), - [anon_sym_PIPE_EQ] = ACTIONS(6252), - [anon_sym_and_eq] = ACTIONS(6252), - [anon_sym_or_eq] = ACTIONS(6252), - [anon_sym_xor_eq] = ACTIONS(6252), - [anon_sym_LT_EQ_GT] = ACTIONS(6252), - [anon_sym_or] = ACTIONS(6250), - [anon_sym_and] = ACTIONS(6250), - [anon_sym_bitor] = ACTIONS(6252), - [anon_sym_xor] = ACTIONS(6250), - [anon_sym_bitand] = ACTIONS(6252), - [anon_sym_not_eq] = ACTIONS(6252), - [anon_sym_DASH_DASH] = ACTIONS(6252), - [anon_sym_PLUS_PLUS] = ACTIONS(6252), - [anon_sym_asm] = ACTIONS(6252), - [anon_sym___asm__] = ACTIONS(6252), - [anon_sym___asm] = ACTIONS(6250), - [anon_sym_DOT] = ACTIONS(6250), - [anon_sym_DOT_STAR] = ACTIONS(6252), - [anon_sym_DASH_GT] = ACTIONS(6250), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6252), - [anon_sym_decltype] = ACTIONS(6252), - [anon_sym_try] = ACTIONS(6252), - [anon_sym_DASH_GT_STAR] = ACTIONS(6252), + [STATE(2176)] = { + [sym_identifier] = ACTIONS(7561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), + [anon_sym_COMMA] = ACTIONS(7563), + [anon_sym_RPAREN] = ACTIONS(7563), + [aux_sym_preproc_if_token2] = ACTIONS(7563), + [aux_sym_preproc_else_token1] = ACTIONS(7563), + [aux_sym_preproc_elif_token1] = ACTIONS(7561), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7563), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7563), + [anon_sym_LPAREN2] = ACTIONS(7563), + [anon_sym_DASH] = ACTIONS(7561), + [anon_sym_PLUS] = ACTIONS(7561), + [anon_sym_STAR] = ACTIONS(7561), + [anon_sym_SLASH] = ACTIONS(7561), + [anon_sym_PERCENT] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_AMP_AMP] = ACTIONS(7563), + [anon_sym_PIPE] = ACTIONS(7561), + [anon_sym_CARET] = ACTIONS(7561), + [anon_sym_AMP] = ACTIONS(7561), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_GT] = ACTIONS(7561), + [anon_sym_GT_EQ] = ACTIONS(7563), + [anon_sym_LT_EQ] = ACTIONS(7561), + [anon_sym_LT] = ACTIONS(7561), + [anon_sym_LT_LT] = ACTIONS(7561), + [anon_sym_GT_GT] = ACTIONS(7561), + [anon_sym_SEMI] = ACTIONS(7563), + [anon_sym___extension__] = ACTIONS(7561), + [anon_sym___attribute__] = ACTIONS(7561), + [anon_sym___attribute] = ACTIONS(7561), + [anon_sym_COLON] = ACTIONS(7561), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7563), + [anon_sym_LBRACE] = ACTIONS(7563), + [anon_sym_RBRACE] = ACTIONS(7563), + [anon_sym_LBRACK] = ACTIONS(7563), + [anon_sym_EQ] = ACTIONS(7561), + [anon_sym_const] = ACTIONS(7561), + [anon_sym_constexpr] = ACTIONS(7561), + [anon_sym_volatile] = ACTIONS(7561), + [anon_sym_restrict] = ACTIONS(7561), + [anon_sym___restrict__] = ACTIONS(7561), + [anon_sym__Atomic] = ACTIONS(7561), + [anon_sym__Noreturn] = ACTIONS(7561), + [anon_sym_noreturn] = ACTIONS(7561), + [anon_sym__Nonnull] = ACTIONS(7561), + [anon_sym_mutable] = ACTIONS(7561), + [anon_sym_constinit] = ACTIONS(7561), + [anon_sym_consteval] = ACTIONS(7561), + [anon_sym_alignas] = ACTIONS(7561), + [anon_sym__Alignas] = ACTIONS(7561), + [anon_sym_QMARK] = ACTIONS(7563), + [anon_sym_STAR_EQ] = ACTIONS(7563), + [anon_sym_SLASH_EQ] = ACTIONS(7563), + [anon_sym_PERCENT_EQ] = ACTIONS(7563), + [anon_sym_PLUS_EQ] = ACTIONS(7563), + [anon_sym_DASH_EQ] = ACTIONS(7563), + [anon_sym_LT_LT_EQ] = ACTIONS(7563), + [anon_sym_GT_GT_EQ] = ACTIONS(7563), + [anon_sym_AMP_EQ] = ACTIONS(7563), + [anon_sym_CARET_EQ] = ACTIONS(7563), + [anon_sym_PIPE_EQ] = ACTIONS(7563), + [anon_sym_and_eq] = ACTIONS(7561), + [anon_sym_or_eq] = ACTIONS(7561), + [anon_sym_xor_eq] = ACTIONS(7561), + [anon_sym_LT_EQ_GT] = ACTIONS(7563), + [anon_sym_or] = ACTIONS(7561), + [anon_sym_and] = ACTIONS(7561), + [anon_sym_bitor] = ACTIONS(7561), + [anon_sym_xor] = ACTIONS(7561), + [anon_sym_bitand] = ACTIONS(7561), + [anon_sym_not_eq] = ACTIONS(7561), + [anon_sym_DASH_DASH] = ACTIONS(7563), + [anon_sym_PLUS_PLUS] = ACTIONS(7563), + [anon_sym_DOT] = ACTIONS(7561), + [anon_sym_DOT_STAR] = ACTIONS(7563), + [anon_sym_DASH_GT] = ACTIONS(7563), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7561), + [anon_sym_override] = ACTIONS(7561), + [anon_sym_requires] = ACTIONS(7561), + [anon_sym_COLON_RBRACK] = ACTIONS(7563), }, - [STATE(2250)] = { - [sym_type_qualifier] = STATE(2253), - [sym_alignas_qualifier] = STATE(2278), - [aux_sym__type_definition_type_repeat1] = STATE(2253), - [aux_sym_sized_type_specifier_repeat1] = STATE(2389), - [sym_identifier] = ACTIONS(7363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), - [anon_sym_COMMA] = ACTIONS(6812), - [anon_sym_RPAREN] = ACTIONS(6812), - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_STAR] = ACTIONS(6814), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_PERCENT] = ACTIONS(6814), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_CARET] = ACTIONS(6814), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_LT_LT] = ACTIONS(6814), - [anon_sym_GT_GT] = ACTIONS(6814), - [anon_sym___extension__] = ACTIONS(6666), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_signed] = ACTIONS(7701), - [anon_sym_unsigned] = ACTIONS(7701), - [anon_sym_long] = ACTIONS(7701), - [anon_sym_short] = ACTIONS(7701), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_EQ] = ACTIONS(6814), - [anon_sym_const] = ACTIONS(6666), - [anon_sym_constexpr] = ACTIONS(6666), - [anon_sym_volatile] = ACTIONS(6666), - [anon_sym_restrict] = ACTIONS(6666), - [anon_sym___restrict__] = ACTIONS(6666), - [anon_sym__Atomic] = ACTIONS(6666), - [anon_sym__Noreturn] = ACTIONS(6666), - [anon_sym_noreturn] = ACTIONS(6666), - [anon_sym__Nonnull] = ACTIONS(6666), - [anon_sym_mutable] = ACTIONS(6666), - [anon_sym_constinit] = ACTIONS(6666), - [anon_sym_consteval] = ACTIONS(6666), - [anon_sym_alignas] = ACTIONS(7703), - [anon_sym__Alignas] = ACTIONS(7703), - [sym_primitive_type] = ACTIONS(7373), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_STAR_EQ] = ACTIONS(6812), - [anon_sym_SLASH_EQ] = ACTIONS(6812), - [anon_sym_PERCENT_EQ] = ACTIONS(6812), - [anon_sym_PLUS_EQ] = ACTIONS(6812), - [anon_sym_DASH_EQ] = ACTIONS(6812), - [anon_sym_LT_LT_EQ] = ACTIONS(6812), - [anon_sym_GT_GT_EQ] = ACTIONS(6812), - [anon_sym_AMP_EQ] = ACTIONS(6812), - [anon_sym_CARET_EQ] = ACTIONS(6812), - [anon_sym_PIPE_EQ] = ACTIONS(6812), - [anon_sym_and_eq] = ACTIONS(6814), - [anon_sym_or_eq] = ACTIONS(6814), - [anon_sym_xor_eq] = ACTIONS(6814), - [anon_sym_LT_EQ_GT] = ACTIONS(6812), - [anon_sym_or] = ACTIONS(6814), - [anon_sym_and] = ACTIONS(6814), - [anon_sym_bitor] = ACTIONS(6814), - [anon_sym_xor] = ACTIONS(6814), - [anon_sym_bitand] = ACTIONS(6814), - [anon_sym_not_eq] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6814), - [anon_sym_DOT_STAR] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6814), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6812), + [STATE(2177)] = { + [sym_identifier] = ACTIONS(7565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7567), + [anon_sym_COMMA] = ACTIONS(7567), + [anon_sym_RPAREN] = ACTIONS(7567), + [aux_sym_preproc_if_token2] = ACTIONS(7567), + [aux_sym_preproc_else_token1] = ACTIONS(7567), + [aux_sym_preproc_elif_token1] = ACTIONS(7565), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7567), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7567), + [anon_sym_LPAREN2] = ACTIONS(7567), + [anon_sym_DASH] = ACTIONS(7565), + [anon_sym_PLUS] = ACTIONS(7565), + [anon_sym_STAR] = ACTIONS(7565), + [anon_sym_SLASH] = ACTIONS(7565), + [anon_sym_PERCENT] = ACTIONS(7565), + [anon_sym_PIPE_PIPE] = ACTIONS(7567), + [anon_sym_AMP_AMP] = ACTIONS(7567), + [anon_sym_PIPE] = ACTIONS(7565), + [anon_sym_CARET] = ACTIONS(7565), + [anon_sym_AMP] = ACTIONS(7565), + [anon_sym_EQ_EQ] = ACTIONS(7567), + [anon_sym_BANG_EQ] = ACTIONS(7567), + [anon_sym_GT] = ACTIONS(7565), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_LT_EQ] = ACTIONS(7565), + [anon_sym_LT] = ACTIONS(7565), + [anon_sym_LT_LT] = ACTIONS(7565), + [anon_sym_GT_GT] = ACTIONS(7565), + [anon_sym_SEMI] = ACTIONS(7567), + [anon_sym___extension__] = ACTIONS(7565), + [anon_sym___attribute__] = ACTIONS(7565), + [anon_sym___attribute] = ACTIONS(7565), + [anon_sym_COLON] = ACTIONS(7565), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7567), + [anon_sym_LBRACE] = ACTIONS(7567), + [anon_sym_RBRACE] = ACTIONS(7567), + [anon_sym_LBRACK] = ACTIONS(7567), + [anon_sym_EQ] = ACTIONS(7565), + [anon_sym_const] = ACTIONS(7565), + [anon_sym_constexpr] = ACTIONS(7565), + [anon_sym_volatile] = ACTIONS(7565), + [anon_sym_restrict] = ACTIONS(7565), + [anon_sym___restrict__] = ACTIONS(7565), + [anon_sym__Atomic] = ACTIONS(7565), + [anon_sym__Noreturn] = ACTIONS(7565), + [anon_sym_noreturn] = ACTIONS(7565), + [anon_sym__Nonnull] = ACTIONS(7565), + [anon_sym_mutable] = ACTIONS(7565), + [anon_sym_constinit] = ACTIONS(7565), + [anon_sym_consteval] = ACTIONS(7565), + [anon_sym_alignas] = ACTIONS(7565), + [anon_sym__Alignas] = ACTIONS(7565), + [anon_sym_QMARK] = ACTIONS(7567), + [anon_sym_STAR_EQ] = ACTIONS(7567), + [anon_sym_SLASH_EQ] = ACTIONS(7567), + [anon_sym_PERCENT_EQ] = ACTIONS(7567), + [anon_sym_PLUS_EQ] = ACTIONS(7567), + [anon_sym_DASH_EQ] = ACTIONS(7567), + [anon_sym_LT_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_GT_EQ] = ACTIONS(7567), + [anon_sym_AMP_EQ] = ACTIONS(7567), + [anon_sym_CARET_EQ] = ACTIONS(7567), + [anon_sym_PIPE_EQ] = ACTIONS(7567), + [anon_sym_and_eq] = ACTIONS(7565), + [anon_sym_or_eq] = ACTIONS(7565), + [anon_sym_xor_eq] = ACTIONS(7565), + [anon_sym_LT_EQ_GT] = ACTIONS(7567), + [anon_sym_or] = ACTIONS(7565), + [anon_sym_and] = ACTIONS(7565), + [anon_sym_bitor] = ACTIONS(7565), + [anon_sym_xor] = ACTIONS(7565), + [anon_sym_bitand] = ACTIONS(7565), + [anon_sym_not_eq] = ACTIONS(7565), + [anon_sym_DASH_DASH] = ACTIONS(7567), + [anon_sym_PLUS_PLUS] = ACTIONS(7567), + [anon_sym_DOT] = ACTIONS(7565), + [anon_sym_DOT_STAR] = ACTIONS(7567), + [anon_sym_DASH_GT] = ACTIONS(7567), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7565), + [anon_sym_override] = ACTIONS(7565), + [anon_sym_requires] = ACTIONS(7565), + [anon_sym_COLON_RBRACK] = ACTIONS(7567), }, - [STATE(2251)] = { - [sym_type_qualifier] = STATE(2252), - [sym_alignas_qualifier] = STATE(2403), - [aux_sym__type_definition_type_repeat1] = STATE(2252), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), - [anon_sym_COMMA] = ACTIONS(6390), - [anon_sym_LPAREN2] = ACTIONS(6390), - [anon_sym_DASH] = ACTIONS(6388), - [anon_sym_PLUS] = ACTIONS(6388), - [anon_sym_STAR] = ACTIONS(6388), - [anon_sym_SLASH] = ACTIONS(6388), - [anon_sym_PERCENT] = ACTIONS(6388), - [anon_sym_PIPE_PIPE] = ACTIONS(6390), - [anon_sym_AMP_AMP] = ACTIONS(6390), - [anon_sym_PIPE] = ACTIONS(6388), - [anon_sym_CARET] = ACTIONS(6388), - [anon_sym_AMP] = ACTIONS(6388), - [anon_sym_EQ_EQ] = ACTIONS(6390), - [anon_sym_BANG_EQ] = ACTIONS(6390), - [anon_sym_GT] = ACTIONS(6388), - [anon_sym_GT_EQ] = ACTIONS(6390), - [anon_sym_LT_EQ] = ACTIONS(6388), - [anon_sym_LT] = ACTIONS(6388), - [anon_sym_LT_LT] = ACTIONS(6388), - [anon_sym_GT_GT] = ACTIONS(6388), - [anon_sym___extension__] = ACTIONS(6324), - [anon_sym___attribute__] = ACTIONS(6390), - [anon_sym___attribute] = ACTIONS(6388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), - [anon_sym_LBRACK] = ACTIONS(6388), - [anon_sym_RBRACK] = ACTIONS(6390), - [anon_sym_EQ] = ACTIONS(6388), - [anon_sym_const] = ACTIONS(6332), - [anon_sym_constexpr] = ACTIONS(6324), - [anon_sym_volatile] = ACTIONS(6324), - [anon_sym_restrict] = ACTIONS(6324), - [anon_sym___restrict__] = ACTIONS(6324), - [anon_sym__Atomic] = ACTIONS(6324), - [anon_sym__Noreturn] = ACTIONS(6324), - [anon_sym_noreturn] = ACTIONS(6324), - [anon_sym__Nonnull] = ACTIONS(6324), - [anon_sym_mutable] = ACTIONS(6324), - [anon_sym_constinit] = ACTIONS(6324), - [anon_sym_consteval] = ACTIONS(6324), - [anon_sym_alignas] = ACTIONS(6334), - [anon_sym__Alignas] = ACTIONS(6334), - [anon_sym_QMARK] = ACTIONS(6390), - [anon_sym_STAR_EQ] = ACTIONS(6390), - [anon_sym_SLASH_EQ] = ACTIONS(6390), - [anon_sym_PERCENT_EQ] = ACTIONS(6390), - [anon_sym_PLUS_EQ] = ACTIONS(6390), - [anon_sym_DASH_EQ] = ACTIONS(6390), - [anon_sym_LT_LT_EQ] = ACTIONS(6390), - [anon_sym_GT_GT_EQ] = ACTIONS(6390), - [anon_sym_AMP_EQ] = ACTIONS(6390), - [anon_sym_CARET_EQ] = ACTIONS(6390), - [anon_sym_PIPE_EQ] = ACTIONS(6390), - [anon_sym_and_eq] = ACTIONS(6390), - [anon_sym_or_eq] = ACTIONS(6390), - [anon_sym_xor_eq] = ACTIONS(6390), - [anon_sym_LT_EQ_GT] = ACTIONS(6390), - [anon_sym_or] = ACTIONS(6388), - [anon_sym_and] = ACTIONS(6388), - [anon_sym_bitor] = ACTIONS(6390), - [anon_sym_xor] = ACTIONS(6388), - [anon_sym_bitand] = ACTIONS(6390), - [anon_sym_not_eq] = ACTIONS(6390), - [anon_sym_DASH_DASH] = ACTIONS(6390), - [anon_sym_PLUS_PLUS] = ACTIONS(6390), - [anon_sym_asm] = ACTIONS(6390), - [anon_sym___asm__] = ACTIONS(6390), - [anon_sym___asm] = ACTIONS(6388), - [anon_sym_DOT] = ACTIONS(6388), - [anon_sym_DOT_STAR] = ACTIONS(6390), - [anon_sym_DASH_GT] = ACTIONS(6390), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6390), - [anon_sym_override] = ACTIONS(6390), - [anon_sym_noexcept] = ACTIONS(6390), - [anon_sym_throw] = ACTIONS(6390), - [anon_sym_requires] = ACTIONS(6390), + [STATE(2178)] = { + [sym_identifier] = ACTIONS(7569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7571), + [anon_sym_COMMA] = ACTIONS(7571), + [anon_sym_RPAREN] = ACTIONS(7571), + [aux_sym_preproc_if_token2] = ACTIONS(7571), + [aux_sym_preproc_else_token1] = ACTIONS(7571), + [aux_sym_preproc_elif_token1] = ACTIONS(7569), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7571), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7571), + [anon_sym_LPAREN2] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7569), + [anon_sym_PLUS] = ACTIONS(7569), + [anon_sym_STAR] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7569), + [anon_sym_PERCENT] = ACTIONS(7569), + [anon_sym_PIPE_PIPE] = ACTIONS(7571), + [anon_sym_AMP_AMP] = ACTIONS(7571), + [anon_sym_PIPE] = ACTIONS(7569), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_AMP] = ACTIONS(7569), + [anon_sym_EQ_EQ] = ACTIONS(7571), + [anon_sym_BANG_EQ] = ACTIONS(7571), + [anon_sym_GT] = ACTIONS(7569), + [anon_sym_GT_EQ] = ACTIONS(7571), + [anon_sym_LT_EQ] = ACTIONS(7569), + [anon_sym_LT] = ACTIONS(7569), + [anon_sym_LT_LT] = ACTIONS(7569), + [anon_sym_GT_GT] = ACTIONS(7569), + [anon_sym_SEMI] = ACTIONS(7571), + [anon_sym___extension__] = ACTIONS(7569), + [anon_sym___attribute__] = ACTIONS(7569), + [anon_sym___attribute] = ACTIONS(7569), + [anon_sym_COLON] = ACTIONS(7569), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7571), + [anon_sym_LBRACE] = ACTIONS(7571), + [anon_sym_RBRACE] = ACTIONS(7571), + [anon_sym_LBRACK] = ACTIONS(7571), + [anon_sym_EQ] = ACTIONS(7569), + [anon_sym_const] = ACTIONS(7569), + [anon_sym_constexpr] = ACTIONS(7569), + [anon_sym_volatile] = ACTIONS(7569), + [anon_sym_restrict] = ACTIONS(7569), + [anon_sym___restrict__] = ACTIONS(7569), + [anon_sym__Atomic] = ACTIONS(7569), + [anon_sym__Noreturn] = ACTIONS(7569), + [anon_sym_noreturn] = ACTIONS(7569), + [anon_sym__Nonnull] = ACTIONS(7569), + [anon_sym_mutable] = ACTIONS(7569), + [anon_sym_constinit] = ACTIONS(7569), + [anon_sym_consteval] = ACTIONS(7569), + [anon_sym_alignas] = ACTIONS(7569), + [anon_sym__Alignas] = ACTIONS(7569), + [anon_sym_QMARK] = ACTIONS(7571), + [anon_sym_STAR_EQ] = ACTIONS(7571), + [anon_sym_SLASH_EQ] = ACTIONS(7571), + [anon_sym_PERCENT_EQ] = ACTIONS(7571), + [anon_sym_PLUS_EQ] = ACTIONS(7571), + [anon_sym_DASH_EQ] = ACTIONS(7571), + [anon_sym_LT_LT_EQ] = ACTIONS(7571), + [anon_sym_GT_GT_EQ] = ACTIONS(7571), + [anon_sym_AMP_EQ] = ACTIONS(7571), + [anon_sym_CARET_EQ] = ACTIONS(7571), + [anon_sym_PIPE_EQ] = ACTIONS(7571), + [anon_sym_and_eq] = ACTIONS(7569), + [anon_sym_or_eq] = ACTIONS(7569), + [anon_sym_xor_eq] = ACTIONS(7569), + [anon_sym_LT_EQ_GT] = ACTIONS(7571), + [anon_sym_or] = ACTIONS(7569), + [anon_sym_and] = ACTIONS(7569), + [anon_sym_bitor] = ACTIONS(7569), + [anon_sym_xor] = ACTIONS(7569), + [anon_sym_bitand] = ACTIONS(7569), + [anon_sym_not_eq] = ACTIONS(7569), + [anon_sym_DASH_DASH] = ACTIONS(7571), + [anon_sym_PLUS_PLUS] = ACTIONS(7571), + [anon_sym_DOT] = ACTIONS(7569), + [anon_sym_DOT_STAR] = ACTIONS(7571), + [anon_sym_DASH_GT] = ACTIONS(7571), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7569), + [anon_sym_override] = ACTIONS(7569), + [anon_sym_requires] = ACTIONS(7569), + [anon_sym_COLON_RBRACK] = ACTIONS(7571), }, - [STATE(2252)] = { - [sym_type_qualifier] = STATE(2252), - [sym_alignas_qualifier] = STATE(2403), - [aux_sym__type_definition_type_repeat1] = STATE(2252), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_LPAREN2] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6525), - [anon_sym_PLUS] = ACTIONS(6525), - [anon_sym_STAR] = ACTIONS(6525), - [anon_sym_SLASH] = ACTIONS(6525), - [anon_sym_PERCENT] = ACTIONS(6525), - [anon_sym_PIPE_PIPE] = ACTIONS(6527), - [anon_sym_AMP_AMP] = ACTIONS(6527), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_CARET] = ACTIONS(6525), - [anon_sym_AMP] = ACTIONS(6525), - [anon_sym_EQ_EQ] = ACTIONS(6527), - [anon_sym_BANG_EQ] = ACTIONS(6527), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6527), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_LT_LT] = ACTIONS(6525), - [anon_sym_GT_GT] = ACTIONS(6525), - [anon_sym___extension__] = ACTIONS(7705), - [anon_sym___attribute__] = ACTIONS(6527), - [anon_sym___attribute] = ACTIONS(6525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6527), - [anon_sym_LBRACK] = ACTIONS(6525), - [anon_sym_RBRACK] = ACTIONS(6527), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_const] = ACTIONS(7708), - [anon_sym_constexpr] = ACTIONS(7705), - [anon_sym_volatile] = ACTIONS(7705), - [anon_sym_restrict] = ACTIONS(7705), - [anon_sym___restrict__] = ACTIONS(7705), - [anon_sym__Atomic] = ACTIONS(7705), - [anon_sym__Noreturn] = ACTIONS(7705), - [anon_sym_noreturn] = ACTIONS(7705), - [anon_sym__Nonnull] = ACTIONS(7705), - [anon_sym_mutable] = ACTIONS(7705), - [anon_sym_constinit] = ACTIONS(7705), - [anon_sym_consteval] = ACTIONS(7705), - [anon_sym_alignas] = ACTIONS(7711), - [anon_sym__Alignas] = ACTIONS(7711), - [anon_sym_QMARK] = ACTIONS(6527), - [anon_sym_STAR_EQ] = ACTIONS(6527), - [anon_sym_SLASH_EQ] = ACTIONS(6527), - [anon_sym_PERCENT_EQ] = ACTIONS(6527), - [anon_sym_PLUS_EQ] = ACTIONS(6527), - [anon_sym_DASH_EQ] = ACTIONS(6527), - [anon_sym_LT_LT_EQ] = ACTIONS(6527), - [anon_sym_GT_GT_EQ] = ACTIONS(6527), - [anon_sym_AMP_EQ] = ACTIONS(6527), - [anon_sym_CARET_EQ] = ACTIONS(6527), - [anon_sym_PIPE_EQ] = ACTIONS(6527), - [anon_sym_and_eq] = ACTIONS(6527), - [anon_sym_or_eq] = ACTIONS(6527), - [anon_sym_xor_eq] = ACTIONS(6527), - [anon_sym_LT_EQ_GT] = ACTIONS(6527), - [anon_sym_or] = ACTIONS(6525), - [anon_sym_and] = ACTIONS(6525), - [anon_sym_bitor] = ACTIONS(6527), - [anon_sym_xor] = ACTIONS(6525), - [anon_sym_bitand] = ACTIONS(6527), - [anon_sym_not_eq] = ACTIONS(6527), - [anon_sym_DASH_DASH] = ACTIONS(6527), - [anon_sym_PLUS_PLUS] = ACTIONS(6527), - [anon_sym_asm] = ACTIONS(6527), - [anon_sym___asm__] = ACTIONS(6527), - [anon_sym___asm] = ACTIONS(6525), - [anon_sym_DOT] = ACTIONS(6525), - [anon_sym_DOT_STAR] = ACTIONS(6527), - [anon_sym_DASH_GT] = ACTIONS(6527), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6527), - [anon_sym_override] = ACTIONS(6527), - [anon_sym_noexcept] = ACTIONS(6527), - [anon_sym_throw] = ACTIONS(6527), - [anon_sym_requires] = ACTIONS(6527), + [STATE(2179)] = { + [sym_type_qualifier] = STATE(2006), + [sym_alignas_qualifier] = STATE(2047), + [aux_sym__type_definition_type_repeat1] = STATE(2006), + [aux_sym_sized_type_specifier_repeat1] = STATE(2217), + [sym_identifier] = ACTIONS(7334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), + [anon_sym_COMMA] = ACTIONS(7205), + [aux_sym_preproc_if_token2] = ACTIONS(7205), + [aux_sym_preproc_else_token1] = ACTIONS(7205), + [aux_sym_preproc_elif_token1] = ACTIONS(7207), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7205), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7205), + [anon_sym_LPAREN2] = ACTIONS(7205), + [anon_sym_DASH] = ACTIONS(7207), + [anon_sym_PLUS] = ACTIONS(7207), + [anon_sym_STAR] = ACTIONS(7207), + [anon_sym_SLASH] = ACTIONS(7207), + [anon_sym_PERCENT] = ACTIONS(7207), + [anon_sym_PIPE_PIPE] = ACTIONS(7205), + [anon_sym_AMP_AMP] = ACTIONS(7205), + [anon_sym_PIPE] = ACTIONS(7207), + [anon_sym_CARET] = ACTIONS(7207), + [anon_sym_AMP] = ACTIONS(7207), + [anon_sym_EQ_EQ] = ACTIONS(7205), + [anon_sym_BANG_EQ] = ACTIONS(7205), + [anon_sym_GT] = ACTIONS(7207), + [anon_sym_GT_EQ] = ACTIONS(7205), + [anon_sym_LT_EQ] = ACTIONS(7207), + [anon_sym_LT] = ACTIONS(7207), + [anon_sym_LT_LT] = ACTIONS(7207), + [anon_sym_GT_GT] = ACTIONS(7207), + [anon_sym___extension__] = ACTIONS(6855), + [anon_sym___attribute__] = ACTIONS(7207), + [anon_sym___attribute] = ACTIONS(7207), + [anon_sym_LBRACE] = ACTIONS(7205), + [anon_sym_signed] = ACTIONS(7337), + [anon_sym_unsigned] = ACTIONS(7337), + [anon_sym_long] = ACTIONS(7337), + [anon_sym_short] = ACTIONS(7337), + [anon_sym_LBRACK] = ACTIONS(7205), + [anon_sym_EQ] = ACTIONS(7207), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6855), + [anon_sym_volatile] = ACTIONS(6855), + [anon_sym_restrict] = ACTIONS(6855), + [anon_sym___restrict__] = ACTIONS(6855), + [anon_sym__Atomic] = ACTIONS(6855), + [anon_sym__Noreturn] = ACTIONS(6855), + [anon_sym_noreturn] = ACTIONS(6855), + [anon_sym__Nonnull] = ACTIONS(6855), + [anon_sym_mutable] = ACTIONS(6855), + [anon_sym_constinit] = ACTIONS(6855), + [anon_sym_consteval] = ACTIONS(6855), + [anon_sym_alignas] = ACTIONS(7485), + [anon_sym__Alignas] = ACTIONS(7485), + [sym_primitive_type] = ACTIONS(7339), + [anon_sym_QMARK] = ACTIONS(7205), + [anon_sym_STAR_EQ] = ACTIONS(7205), + [anon_sym_SLASH_EQ] = ACTIONS(7205), + [anon_sym_PERCENT_EQ] = ACTIONS(7205), + [anon_sym_PLUS_EQ] = ACTIONS(7205), + [anon_sym_DASH_EQ] = ACTIONS(7205), + [anon_sym_LT_LT_EQ] = ACTIONS(7205), + [anon_sym_GT_GT_EQ] = ACTIONS(7205), + [anon_sym_AMP_EQ] = ACTIONS(7205), + [anon_sym_CARET_EQ] = ACTIONS(7205), + [anon_sym_PIPE_EQ] = ACTIONS(7205), + [anon_sym_and_eq] = ACTIONS(7207), + [anon_sym_or_eq] = ACTIONS(7207), + [anon_sym_xor_eq] = ACTIONS(7207), + [anon_sym_LT_EQ_GT] = ACTIONS(7205), + [anon_sym_or] = ACTIONS(7207), + [anon_sym_and] = ACTIONS(7207), + [anon_sym_bitor] = ACTIONS(7207), + [anon_sym_xor] = ACTIONS(7207), + [anon_sym_bitand] = ACTIONS(7207), + [anon_sym_not_eq] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7205), + [anon_sym_PLUS_PLUS] = ACTIONS(7205), + [anon_sym_DOT] = ACTIONS(7207), + [anon_sym_DOT_STAR] = ACTIONS(7205), + [anon_sym_DASH_GT] = ACTIONS(7205), + [sym_comment] = ACTIONS(3), }, - [STATE(2253)] = { - [sym_type_qualifier] = STATE(2163), - [sym_alignas_qualifier] = STATE(2278), - [aux_sym__type_definition_type_repeat1] = STATE(2163), - [aux_sym_sized_type_specifier_repeat1] = STATE(2326), - [sym_identifier] = ACTIONS(7307), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), - [anon_sym_COMMA] = ACTIONS(6884), - [anon_sym_RPAREN] = ACTIONS(6884), - [anon_sym_LPAREN2] = ACTIONS(6884), - [anon_sym_DASH] = ACTIONS(6886), - [anon_sym_PLUS] = ACTIONS(6886), - [anon_sym_STAR] = ACTIONS(6886), - [anon_sym_SLASH] = ACTIONS(6886), - [anon_sym_PERCENT] = ACTIONS(6886), - [anon_sym_PIPE_PIPE] = ACTIONS(6884), - [anon_sym_AMP_AMP] = ACTIONS(6884), - [anon_sym_PIPE] = ACTIONS(6886), - [anon_sym_CARET] = ACTIONS(6886), - [anon_sym_AMP] = ACTIONS(6886), - [anon_sym_EQ_EQ] = ACTIONS(6884), - [anon_sym_BANG_EQ] = ACTIONS(6884), - [anon_sym_GT] = ACTIONS(6886), - [anon_sym_GT_EQ] = ACTIONS(6884), - [anon_sym_LT_EQ] = ACTIONS(6886), - [anon_sym_LT] = ACTIONS(6886), - [anon_sym_LT_LT] = ACTIONS(6886), - [anon_sym_GT_GT] = ACTIONS(6886), - [anon_sym___extension__] = ACTIONS(6666), - [anon_sym___attribute__] = ACTIONS(6886), - [anon_sym___attribute] = ACTIONS(6886), - [anon_sym_LBRACE] = ACTIONS(6884), - [anon_sym_signed] = ACTIONS(7312), - [anon_sym_unsigned] = ACTIONS(7312), - [anon_sym_long] = ACTIONS(7312), - [anon_sym_short] = ACTIONS(7312), - [anon_sym_LBRACK] = ACTIONS(6884), - [anon_sym_EQ] = ACTIONS(6886), - [anon_sym_const] = ACTIONS(6666), - [anon_sym_constexpr] = ACTIONS(6666), - [anon_sym_volatile] = ACTIONS(6666), - [anon_sym_restrict] = ACTIONS(6666), - [anon_sym___restrict__] = ACTIONS(6666), - [anon_sym__Atomic] = ACTIONS(6666), - [anon_sym__Noreturn] = ACTIONS(6666), - [anon_sym_noreturn] = ACTIONS(6666), - [anon_sym__Nonnull] = ACTIONS(6666), - [anon_sym_mutable] = ACTIONS(6666), - [anon_sym_constinit] = ACTIONS(6666), - [anon_sym_consteval] = ACTIONS(6666), - [anon_sym_alignas] = ACTIONS(7703), - [anon_sym__Alignas] = ACTIONS(7703), - [sym_primitive_type] = ACTIONS(7317), - [anon_sym_QMARK] = ACTIONS(6884), - [anon_sym_STAR_EQ] = ACTIONS(6884), - [anon_sym_SLASH_EQ] = ACTIONS(6884), - [anon_sym_PERCENT_EQ] = ACTIONS(6884), - [anon_sym_PLUS_EQ] = ACTIONS(6884), - [anon_sym_DASH_EQ] = ACTIONS(6884), - [anon_sym_LT_LT_EQ] = ACTIONS(6884), - [anon_sym_GT_GT_EQ] = ACTIONS(6884), - [anon_sym_AMP_EQ] = ACTIONS(6884), - [anon_sym_CARET_EQ] = ACTIONS(6884), - [anon_sym_PIPE_EQ] = ACTIONS(6884), - [anon_sym_and_eq] = ACTIONS(6886), - [anon_sym_or_eq] = ACTIONS(6886), - [anon_sym_xor_eq] = ACTIONS(6886), - [anon_sym_LT_EQ_GT] = ACTIONS(6884), - [anon_sym_or] = ACTIONS(6886), - [anon_sym_and] = ACTIONS(6886), - [anon_sym_bitor] = ACTIONS(6886), - [anon_sym_xor] = ACTIONS(6886), - [anon_sym_bitand] = ACTIONS(6886), - [anon_sym_not_eq] = ACTIONS(6886), - [anon_sym_DASH_DASH] = ACTIONS(6884), - [anon_sym_PLUS_PLUS] = ACTIONS(6884), - [anon_sym_DOT] = ACTIONS(6886), - [anon_sym_DOT_STAR] = ACTIONS(6884), - [anon_sym_DASH_GT] = ACTIONS(6886), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6884), + [STATE(2180)] = { + [sym_type_qualifier] = STATE(2188), + [sym_alignas_qualifier] = STATE(2365), + [aux_sym__type_definition_type_repeat1] = STATE(2188), + [aux_sym_sized_type_specifier_repeat1] = STATE(2354), + [sym_identifier] = ACTIONS(7573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), + [anon_sym_COMMA] = ACTIONS(7249), + [anon_sym_RPAREN] = ACTIONS(7249), + [anon_sym_LPAREN2] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7251), + [anon_sym_PLUS] = ACTIONS(7251), + [anon_sym_STAR] = ACTIONS(7251), + [anon_sym_SLASH] = ACTIONS(7251), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7249), + [anon_sym_PIPE] = ACTIONS(7251), + [anon_sym_CARET] = ACTIONS(7251), + [anon_sym_AMP] = ACTIONS(7251), + [anon_sym_EQ_EQ] = ACTIONS(7249), + [anon_sym_BANG_EQ] = ACTIONS(7249), + [anon_sym_GT] = ACTIONS(7251), + [anon_sym_GT_EQ] = ACTIONS(7249), + [anon_sym_LT_EQ] = ACTIONS(7251), + [anon_sym_LT] = ACTIONS(7251), + [anon_sym_LT_LT] = ACTIONS(7251), + [anon_sym_GT_GT] = ACTIONS(7251), + [anon_sym___extension__] = ACTIONS(7575), + [anon_sym___attribute__] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7251), + [anon_sym_LBRACE] = ACTIONS(7249), + [anon_sym_signed] = ACTIONS(7578), + [anon_sym_unsigned] = ACTIONS(7578), + [anon_sym_long] = ACTIONS(7578), + [anon_sym_short] = ACTIONS(7578), + [anon_sym_LBRACK] = ACTIONS(7249), + [anon_sym_EQ] = ACTIONS(7251), + [anon_sym_const] = ACTIONS(7575), + [anon_sym_constexpr] = ACTIONS(7575), + [anon_sym_volatile] = ACTIONS(7575), + [anon_sym_restrict] = ACTIONS(7575), + [anon_sym___restrict__] = ACTIONS(7575), + [anon_sym__Atomic] = ACTIONS(7575), + [anon_sym__Noreturn] = ACTIONS(7575), + [anon_sym_noreturn] = ACTIONS(7575), + [anon_sym__Nonnull] = ACTIONS(7575), + [anon_sym_mutable] = ACTIONS(7575), + [anon_sym_constinit] = ACTIONS(7575), + [anon_sym_consteval] = ACTIONS(7575), + [anon_sym_alignas] = ACTIONS(7580), + [anon_sym__Alignas] = ACTIONS(7580), + [sym_primitive_type] = ACTIONS(7583), + [anon_sym_QMARK] = ACTIONS(7249), + [anon_sym_STAR_EQ] = ACTIONS(7249), + [anon_sym_SLASH_EQ] = ACTIONS(7249), + [anon_sym_PERCENT_EQ] = ACTIONS(7249), + [anon_sym_PLUS_EQ] = ACTIONS(7249), + [anon_sym_DASH_EQ] = ACTIONS(7249), + [anon_sym_LT_LT_EQ] = ACTIONS(7249), + [anon_sym_GT_GT_EQ] = ACTIONS(7249), + [anon_sym_AMP_EQ] = ACTIONS(7249), + [anon_sym_CARET_EQ] = ACTIONS(7249), + [anon_sym_PIPE_EQ] = ACTIONS(7249), + [anon_sym_and_eq] = ACTIONS(7251), + [anon_sym_or_eq] = ACTIONS(7251), + [anon_sym_xor_eq] = ACTIONS(7251), + [anon_sym_LT_EQ_GT] = ACTIONS(7249), + [anon_sym_or] = ACTIONS(7251), + [anon_sym_and] = ACTIONS(7251), + [anon_sym_bitor] = ACTIONS(7251), + [anon_sym_xor] = ACTIONS(7251), + [anon_sym_bitand] = ACTIONS(7251), + [anon_sym_not_eq] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7249), + [anon_sym_PLUS_PLUS] = ACTIONS(7249), + [anon_sym_DOT] = ACTIONS(7251), + [anon_sym_DOT_STAR] = ACTIONS(7249), + [anon_sym_DASH_GT] = ACTIONS(7251), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7251), + [anon_sym_override] = ACTIONS(7251), + [anon_sym_requires] = ACTIONS(7251), + [anon_sym_DASH_GT_STAR] = ACTIONS(7249), }, - [STATE(2254)] = { - [sym_attribute_specifier] = STATE(2074), - [sym_enumerator_list] = STATE(2034), - [sym__enum_base_clause] = STATE(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7602), - [anon_sym_COMMA] = ACTIONS(7602), - [anon_sym_RPAREN] = ACTIONS(7602), - [anon_sym_LPAREN2] = ACTIONS(7602), - [anon_sym_DASH] = ACTIONS(7600), - [anon_sym_PLUS] = ACTIONS(7600), - [anon_sym_STAR] = ACTIONS(7600), - [anon_sym_SLASH] = ACTIONS(7600), - [anon_sym_PERCENT] = ACTIONS(7600), - [anon_sym_PIPE_PIPE] = ACTIONS(7602), - [anon_sym_AMP_AMP] = ACTIONS(7602), - [anon_sym_PIPE] = ACTIONS(7600), - [anon_sym_CARET] = ACTIONS(7600), - [anon_sym_AMP] = ACTIONS(7600), - [anon_sym_EQ_EQ] = ACTIONS(7602), - [anon_sym_BANG_EQ] = ACTIONS(7602), - [anon_sym_GT] = ACTIONS(7600), - [anon_sym_GT_EQ] = ACTIONS(7602), - [anon_sym_LT_EQ] = ACTIONS(7600), - [anon_sym_LT] = ACTIONS(7600), - [anon_sym_LT_LT] = ACTIONS(7600), - [anon_sym_GT_GT] = ACTIONS(7600), - [anon_sym_SEMI] = ACTIONS(7602), - [anon_sym___extension__] = ACTIONS(7602), - [anon_sym___attribute__] = ACTIONS(7714), - [anon_sym___attribute] = ACTIONS(6830), - [anon_sym_COLON] = ACTIONS(7716), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7602), - [anon_sym_LBRACE] = ACTIONS(6989), - [anon_sym_RBRACE] = ACTIONS(7602), - [anon_sym_LBRACK] = ACTIONS(7602), - [anon_sym_EQ] = ACTIONS(7600), - [anon_sym_const] = ACTIONS(7600), - [anon_sym_constexpr] = ACTIONS(7602), - [anon_sym_volatile] = ACTIONS(7602), - [anon_sym_restrict] = ACTIONS(7602), - [anon_sym___restrict__] = ACTIONS(7602), - [anon_sym__Atomic] = ACTIONS(7602), - [anon_sym__Noreturn] = ACTIONS(7602), - [anon_sym_noreturn] = ACTIONS(7602), - [anon_sym__Nonnull] = ACTIONS(7602), - [anon_sym_mutable] = ACTIONS(7602), - [anon_sym_constinit] = ACTIONS(7602), - [anon_sym_consteval] = ACTIONS(7602), - [anon_sym_alignas] = ACTIONS(7602), - [anon_sym__Alignas] = ACTIONS(7602), - [anon_sym_QMARK] = ACTIONS(7602), - [anon_sym_STAR_EQ] = ACTIONS(7602), - [anon_sym_SLASH_EQ] = ACTIONS(7602), - [anon_sym_PERCENT_EQ] = ACTIONS(7602), - [anon_sym_PLUS_EQ] = ACTIONS(7602), - [anon_sym_DASH_EQ] = ACTIONS(7602), - [anon_sym_LT_LT_EQ] = ACTIONS(7602), - [anon_sym_GT_GT_EQ] = ACTIONS(7602), - [anon_sym_AMP_EQ] = ACTIONS(7602), - [anon_sym_CARET_EQ] = ACTIONS(7602), - [anon_sym_PIPE_EQ] = ACTIONS(7602), - [anon_sym_and_eq] = ACTIONS(7602), - [anon_sym_or_eq] = ACTIONS(7602), - [anon_sym_xor_eq] = ACTIONS(7602), - [anon_sym_LT_EQ_GT] = ACTIONS(7602), - [anon_sym_or] = ACTIONS(7600), - [anon_sym_and] = ACTIONS(7600), - [anon_sym_bitor] = ACTIONS(7602), - [anon_sym_xor] = ACTIONS(7600), - [anon_sym_bitand] = ACTIONS(7602), - [anon_sym_not_eq] = ACTIONS(7602), - [anon_sym_DASH_DASH] = ACTIONS(7602), - [anon_sym_PLUS_PLUS] = ACTIONS(7602), - [anon_sym_DOT] = ACTIONS(7600), - [anon_sym_DOT_STAR] = ACTIONS(7602), - [anon_sym_DASH_GT] = ACTIONS(7602), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7602), - [anon_sym_override] = ACTIONS(7602), - [anon_sym_requires] = ACTIONS(7602), - [anon_sym_COLON_RBRACK] = ACTIONS(7602), + [STATE(2181)] = { + [sym_identifier] = ACTIONS(7585), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7587), + [anon_sym_COMMA] = ACTIONS(7587), + [anon_sym_RPAREN] = ACTIONS(7587), + [aux_sym_preproc_if_token2] = ACTIONS(7587), + [aux_sym_preproc_else_token1] = ACTIONS(7587), + [aux_sym_preproc_elif_token1] = ACTIONS(7585), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7587), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7587), + [anon_sym_LPAREN2] = ACTIONS(7587), + [anon_sym_DASH] = ACTIONS(7585), + [anon_sym_PLUS] = ACTIONS(7585), + [anon_sym_STAR] = ACTIONS(7585), + [anon_sym_SLASH] = ACTIONS(7585), + [anon_sym_PERCENT] = ACTIONS(7585), + [anon_sym_PIPE_PIPE] = ACTIONS(7587), + [anon_sym_AMP_AMP] = ACTIONS(7587), + [anon_sym_PIPE] = ACTIONS(7585), + [anon_sym_CARET] = ACTIONS(7585), + [anon_sym_AMP] = ACTIONS(7585), + [anon_sym_EQ_EQ] = ACTIONS(7587), + [anon_sym_BANG_EQ] = ACTIONS(7587), + [anon_sym_GT] = ACTIONS(7585), + [anon_sym_GT_EQ] = ACTIONS(7587), + [anon_sym_LT_EQ] = ACTIONS(7585), + [anon_sym_LT] = ACTIONS(7585), + [anon_sym_LT_LT] = ACTIONS(7585), + [anon_sym_GT_GT] = ACTIONS(7585), + [anon_sym_SEMI] = ACTIONS(7587), + [anon_sym___extension__] = ACTIONS(7585), + [anon_sym___attribute__] = ACTIONS(7585), + [anon_sym___attribute] = ACTIONS(7585), + [anon_sym_COLON] = ACTIONS(7585), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7587), + [anon_sym_LBRACE] = ACTIONS(7587), + [anon_sym_RBRACE] = ACTIONS(7587), + [anon_sym_LBRACK] = ACTIONS(7587), + [anon_sym_EQ] = ACTIONS(7585), + [anon_sym_const] = ACTIONS(7585), + [anon_sym_constexpr] = ACTIONS(7585), + [anon_sym_volatile] = ACTIONS(7585), + [anon_sym_restrict] = ACTIONS(7585), + [anon_sym___restrict__] = ACTIONS(7585), + [anon_sym__Atomic] = ACTIONS(7585), + [anon_sym__Noreturn] = ACTIONS(7585), + [anon_sym_noreturn] = ACTIONS(7585), + [anon_sym__Nonnull] = ACTIONS(7585), + [anon_sym_mutable] = ACTIONS(7585), + [anon_sym_constinit] = ACTIONS(7585), + [anon_sym_consteval] = ACTIONS(7585), + [anon_sym_alignas] = ACTIONS(7585), + [anon_sym__Alignas] = ACTIONS(7585), + [anon_sym_QMARK] = ACTIONS(7587), + [anon_sym_STAR_EQ] = ACTIONS(7587), + [anon_sym_SLASH_EQ] = ACTIONS(7587), + [anon_sym_PERCENT_EQ] = ACTIONS(7587), + [anon_sym_PLUS_EQ] = ACTIONS(7587), + [anon_sym_DASH_EQ] = ACTIONS(7587), + [anon_sym_LT_LT_EQ] = ACTIONS(7587), + [anon_sym_GT_GT_EQ] = ACTIONS(7587), + [anon_sym_AMP_EQ] = ACTIONS(7587), + [anon_sym_CARET_EQ] = ACTIONS(7587), + [anon_sym_PIPE_EQ] = ACTIONS(7587), + [anon_sym_and_eq] = ACTIONS(7585), + [anon_sym_or_eq] = ACTIONS(7585), + [anon_sym_xor_eq] = ACTIONS(7585), + [anon_sym_LT_EQ_GT] = ACTIONS(7587), + [anon_sym_or] = ACTIONS(7585), + [anon_sym_and] = ACTIONS(7585), + [anon_sym_bitor] = ACTIONS(7585), + [anon_sym_xor] = ACTIONS(7585), + [anon_sym_bitand] = ACTIONS(7585), + [anon_sym_not_eq] = ACTIONS(7585), + [anon_sym_DASH_DASH] = ACTIONS(7587), + [anon_sym_PLUS_PLUS] = ACTIONS(7587), + [anon_sym_DOT] = ACTIONS(7585), + [anon_sym_DOT_STAR] = ACTIONS(7587), + [anon_sym_DASH_GT] = ACTIONS(7587), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7585), + [anon_sym_override] = ACTIONS(7585), + [anon_sym_requires] = ACTIONS(7585), + [anon_sym_COLON_RBRACK] = ACTIONS(7587), }, - [STATE(2255)] = { - [sym_attribute_specifier] = STATE(2092), - [sym_enumerator_list] = STATE(2043), - [sym__enum_base_clause] = STATE(2009), + [STATE(2182)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2931), + [sym_ms_pointer_modifier] = STATE(2224), + [sym__abstract_declarator] = STATE(5839), + [sym_abstract_parenthesized_declarator] = STATE(5693), + [sym_abstract_pointer_declarator] = STATE(5693), + [sym_abstract_function_declarator] = STATE(5693), + [sym_abstract_array_declarator] = STATE(5693), + [sym_type_qualifier] = STATE(2610), + [sym_alignas_qualifier] = STATE(2576), + [sym_parameter_list] = STATE(1989), + [sym_abstract_reference_declarator] = STATE(5693), + [sym__function_declarator_seq] = STATE(5694), + [aux_sym__type_definition_type_repeat1] = STATE(2610), + [aux_sym_pointer_declarator_repeat1] = STATE(2224), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_RPAREN] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6861), + [anon_sym_STAR] = ACTIONS(7589), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6861), + [anon_sym_PIPE_PIPE] = ACTIONS(6859), + [anon_sym_AMP_AMP] = ACTIONS(7591), + [anon_sym_PIPE] = ACTIONS(6861), + [anon_sym_CARET] = ACTIONS(6861), + [anon_sym_AMP] = ACTIONS(7593), + [anon_sym_EQ_EQ] = ACTIONS(6859), + [anon_sym_BANG_EQ] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6861), + [anon_sym_GT_EQ] = ACTIONS(6859), + [anon_sym_LT_EQ] = ACTIONS(6861), + [anon_sym_LT] = ACTIONS(6861), + [anon_sym_LT_LT] = ACTIONS(6861), + [anon_sym_GT_GT] = ACTIONS(6861), + [anon_sym___extension__] = ACTIONS(7313), + [sym_ms_restrict_modifier] = ACTIONS(7315), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7317), + [sym_ms_signed_ptr_modifier] = ACTIONS(7317), + [anon_sym__unaligned] = ACTIONS(7319), + [anon_sym___unaligned] = ACTIONS(7319), + [anon_sym_LBRACK] = ACTIONS(7321), + [anon_sym_EQ] = ACTIONS(6861), + [anon_sym_const] = ACTIONS(7323), + [anon_sym_constexpr] = ACTIONS(7313), + [anon_sym_volatile] = ACTIONS(7313), + [anon_sym_restrict] = ACTIONS(7313), + [anon_sym___restrict__] = ACTIONS(7313), + [anon_sym__Atomic] = ACTIONS(7313), + [anon_sym__Noreturn] = ACTIONS(7313), + [anon_sym_noreturn] = ACTIONS(7313), + [anon_sym__Nonnull] = ACTIONS(7313), + [anon_sym_mutable] = ACTIONS(7313), + [anon_sym_constinit] = ACTIONS(7313), + [anon_sym_consteval] = ACTIONS(7313), + [anon_sym_alignas] = ACTIONS(7325), + [anon_sym__Alignas] = ACTIONS(7325), + [anon_sym_QMARK] = ACTIONS(6859), + [anon_sym_STAR_EQ] = ACTIONS(6859), + [anon_sym_SLASH_EQ] = ACTIONS(6859), + [anon_sym_PERCENT_EQ] = ACTIONS(6859), + [anon_sym_PLUS_EQ] = ACTIONS(6859), + [anon_sym_DASH_EQ] = ACTIONS(6859), + [anon_sym_LT_LT_EQ] = ACTIONS(6859), + [anon_sym_GT_GT_EQ] = ACTIONS(6859), + [anon_sym_AMP_EQ] = ACTIONS(6859), + [anon_sym_CARET_EQ] = ACTIONS(6859), + [anon_sym_PIPE_EQ] = ACTIONS(6859), + [anon_sym_LT_EQ_GT] = ACTIONS(6859), + [anon_sym_or] = ACTIONS(6859), + [anon_sym_and] = ACTIONS(6859), + [anon_sym_bitor] = ACTIONS(6859), + [anon_sym_xor] = ACTIONS(6859), + [anon_sym_bitand] = ACTIONS(6859), + [anon_sym_not_eq] = ACTIONS(6859), + [anon_sym_DASH_DASH] = ACTIONS(6859), + [anon_sym_PLUS_PLUS] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6861), + [anon_sym_DOT_STAR] = ACTIONS(6859), + [anon_sym_DASH_GT] = ACTIONS(6861), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6859), + }, + [STATE(2183)] = { + [sym_identifier] = ACTIONS(7595), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7597), + [anon_sym_COMMA] = ACTIONS(7597), + [anon_sym_RPAREN] = ACTIONS(7597), + [aux_sym_preproc_if_token2] = ACTIONS(7597), + [aux_sym_preproc_else_token1] = ACTIONS(7597), + [aux_sym_preproc_elif_token1] = ACTIONS(7595), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7597), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7597), + [anon_sym_LPAREN2] = ACTIONS(7597), + [anon_sym_DASH] = ACTIONS(7595), + [anon_sym_PLUS] = ACTIONS(7595), + [anon_sym_STAR] = ACTIONS(7595), + [anon_sym_SLASH] = ACTIONS(7595), + [anon_sym_PERCENT] = ACTIONS(7595), + [anon_sym_PIPE_PIPE] = ACTIONS(7597), + [anon_sym_AMP_AMP] = ACTIONS(7597), + [anon_sym_PIPE] = ACTIONS(7595), + [anon_sym_CARET] = ACTIONS(7595), + [anon_sym_AMP] = ACTIONS(7595), + [anon_sym_EQ_EQ] = ACTIONS(7597), + [anon_sym_BANG_EQ] = ACTIONS(7597), + [anon_sym_GT] = ACTIONS(7595), + [anon_sym_GT_EQ] = ACTIONS(7597), + [anon_sym_LT_EQ] = ACTIONS(7595), + [anon_sym_LT] = ACTIONS(7595), + [anon_sym_LT_LT] = ACTIONS(7595), + [anon_sym_GT_GT] = ACTIONS(7595), + [anon_sym_SEMI] = ACTIONS(7597), + [anon_sym___extension__] = ACTIONS(7595), + [anon_sym___attribute__] = ACTIONS(7595), + [anon_sym___attribute] = ACTIONS(7595), + [anon_sym_COLON] = ACTIONS(7595), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7597), + [anon_sym_LBRACE] = ACTIONS(7597), + [anon_sym_RBRACE] = ACTIONS(7597), + [anon_sym_LBRACK] = ACTIONS(7597), + [anon_sym_EQ] = ACTIONS(7595), + [anon_sym_const] = ACTIONS(7595), + [anon_sym_constexpr] = ACTIONS(7595), + [anon_sym_volatile] = ACTIONS(7595), + [anon_sym_restrict] = ACTIONS(7595), + [anon_sym___restrict__] = ACTIONS(7595), + [anon_sym__Atomic] = ACTIONS(7595), + [anon_sym__Noreturn] = ACTIONS(7595), + [anon_sym_noreturn] = ACTIONS(7595), + [anon_sym__Nonnull] = ACTIONS(7595), + [anon_sym_mutable] = ACTIONS(7595), + [anon_sym_constinit] = ACTIONS(7595), + [anon_sym_consteval] = ACTIONS(7595), + [anon_sym_alignas] = ACTIONS(7595), + [anon_sym__Alignas] = ACTIONS(7595), + [anon_sym_QMARK] = ACTIONS(7597), + [anon_sym_STAR_EQ] = ACTIONS(7597), + [anon_sym_SLASH_EQ] = ACTIONS(7597), + [anon_sym_PERCENT_EQ] = ACTIONS(7597), + [anon_sym_PLUS_EQ] = ACTIONS(7597), + [anon_sym_DASH_EQ] = ACTIONS(7597), + [anon_sym_LT_LT_EQ] = ACTIONS(7597), + [anon_sym_GT_GT_EQ] = ACTIONS(7597), + [anon_sym_AMP_EQ] = ACTIONS(7597), + [anon_sym_CARET_EQ] = ACTIONS(7597), + [anon_sym_PIPE_EQ] = ACTIONS(7597), + [anon_sym_and_eq] = ACTIONS(7595), + [anon_sym_or_eq] = ACTIONS(7595), + [anon_sym_xor_eq] = ACTIONS(7595), + [anon_sym_LT_EQ_GT] = ACTIONS(7597), + [anon_sym_or] = ACTIONS(7595), + [anon_sym_and] = ACTIONS(7595), + [anon_sym_bitor] = ACTIONS(7595), + [anon_sym_xor] = ACTIONS(7595), + [anon_sym_bitand] = ACTIONS(7595), + [anon_sym_not_eq] = ACTIONS(7595), + [anon_sym_DASH_DASH] = ACTIONS(7597), + [anon_sym_PLUS_PLUS] = ACTIONS(7597), + [anon_sym_DOT] = ACTIONS(7595), + [anon_sym_DOT_STAR] = ACTIONS(7597), + [anon_sym_DASH_GT] = ACTIONS(7597), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7595), + [anon_sym_override] = ACTIONS(7595), + [anon_sym_requires] = ACTIONS(7595), + [anon_sym_COLON_RBRACK] = ACTIONS(7597), + }, + [STATE(2184)] = { + [sym_identifier] = ACTIONS(7599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7601), + [anon_sym_COMMA] = ACTIONS(7601), + [anon_sym_RPAREN] = ACTIONS(7601), + [aux_sym_preproc_if_token2] = ACTIONS(7601), + [aux_sym_preproc_else_token1] = ACTIONS(7601), + [aux_sym_preproc_elif_token1] = ACTIONS(7599), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7601), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7601), + [anon_sym_LPAREN2] = ACTIONS(7601), + [anon_sym_DASH] = ACTIONS(7599), + [anon_sym_PLUS] = ACTIONS(7599), + [anon_sym_STAR] = ACTIONS(7599), + [anon_sym_SLASH] = ACTIONS(7599), + [anon_sym_PERCENT] = ACTIONS(7599), + [anon_sym_PIPE_PIPE] = ACTIONS(7601), + [anon_sym_AMP_AMP] = ACTIONS(7601), + [anon_sym_PIPE] = ACTIONS(7599), + [anon_sym_CARET] = ACTIONS(7599), + [anon_sym_AMP] = ACTIONS(7599), + [anon_sym_EQ_EQ] = ACTIONS(7601), + [anon_sym_BANG_EQ] = ACTIONS(7601), + [anon_sym_GT] = ACTIONS(7599), + [anon_sym_GT_EQ] = ACTIONS(7601), + [anon_sym_LT_EQ] = ACTIONS(7599), + [anon_sym_LT] = ACTIONS(7599), + [anon_sym_LT_LT] = ACTIONS(7599), + [anon_sym_GT_GT] = ACTIONS(7599), + [anon_sym_SEMI] = ACTIONS(7601), + [anon_sym___extension__] = ACTIONS(7599), + [anon_sym___attribute__] = ACTIONS(7599), + [anon_sym___attribute] = ACTIONS(7599), + [anon_sym_COLON] = ACTIONS(7599), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7601), + [anon_sym_LBRACE] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7601), + [anon_sym_LBRACK] = ACTIONS(7601), + [anon_sym_EQ] = ACTIONS(7599), + [anon_sym_const] = ACTIONS(7599), + [anon_sym_constexpr] = ACTIONS(7599), + [anon_sym_volatile] = ACTIONS(7599), + [anon_sym_restrict] = ACTIONS(7599), + [anon_sym___restrict__] = ACTIONS(7599), + [anon_sym__Atomic] = ACTIONS(7599), + [anon_sym__Noreturn] = ACTIONS(7599), + [anon_sym_noreturn] = ACTIONS(7599), + [anon_sym__Nonnull] = ACTIONS(7599), + [anon_sym_mutable] = ACTIONS(7599), + [anon_sym_constinit] = ACTIONS(7599), + [anon_sym_consteval] = ACTIONS(7599), + [anon_sym_alignas] = ACTIONS(7599), + [anon_sym__Alignas] = ACTIONS(7599), + [anon_sym_QMARK] = ACTIONS(7601), + [anon_sym_STAR_EQ] = ACTIONS(7601), + [anon_sym_SLASH_EQ] = ACTIONS(7601), + [anon_sym_PERCENT_EQ] = ACTIONS(7601), + [anon_sym_PLUS_EQ] = ACTIONS(7601), + [anon_sym_DASH_EQ] = ACTIONS(7601), + [anon_sym_LT_LT_EQ] = ACTIONS(7601), + [anon_sym_GT_GT_EQ] = ACTIONS(7601), + [anon_sym_AMP_EQ] = ACTIONS(7601), + [anon_sym_CARET_EQ] = ACTIONS(7601), + [anon_sym_PIPE_EQ] = ACTIONS(7601), + [anon_sym_and_eq] = ACTIONS(7599), + [anon_sym_or_eq] = ACTIONS(7599), + [anon_sym_xor_eq] = ACTIONS(7599), + [anon_sym_LT_EQ_GT] = ACTIONS(7601), + [anon_sym_or] = ACTIONS(7599), + [anon_sym_and] = ACTIONS(7599), + [anon_sym_bitor] = ACTIONS(7599), + [anon_sym_xor] = ACTIONS(7599), + [anon_sym_bitand] = ACTIONS(7599), + [anon_sym_not_eq] = ACTIONS(7599), + [anon_sym_DASH_DASH] = ACTIONS(7601), + [anon_sym_PLUS_PLUS] = ACTIONS(7601), + [anon_sym_DOT] = ACTIONS(7599), + [anon_sym_DOT_STAR] = ACTIONS(7601), + [anon_sym_DASH_GT] = ACTIONS(7601), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7599), + [anon_sym_override] = ACTIONS(7599), + [anon_sym_requires] = ACTIONS(7599), + [anon_sym_COLON_RBRACK] = ACTIONS(7601), + }, + [STATE(2185)] = { + [sym_identifier] = ACTIONS(7603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7605), + [anon_sym_COMMA] = ACTIONS(7605), + [anon_sym_RPAREN] = ACTIONS(7605), + [aux_sym_preproc_if_token2] = ACTIONS(7605), + [aux_sym_preproc_else_token1] = ACTIONS(7605), + [aux_sym_preproc_elif_token1] = ACTIONS(7603), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7605), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7605), + [anon_sym_LPAREN2] = ACTIONS(7605), + [anon_sym_DASH] = ACTIONS(7603), + [anon_sym_PLUS] = ACTIONS(7603), + [anon_sym_STAR] = ACTIONS(7603), + [anon_sym_SLASH] = ACTIONS(7603), + [anon_sym_PERCENT] = ACTIONS(7603), + [anon_sym_PIPE_PIPE] = ACTIONS(7605), + [anon_sym_AMP_AMP] = ACTIONS(7605), + [anon_sym_PIPE] = ACTIONS(7603), + [anon_sym_CARET] = ACTIONS(7603), + [anon_sym_AMP] = ACTIONS(7603), + [anon_sym_EQ_EQ] = ACTIONS(7605), + [anon_sym_BANG_EQ] = ACTIONS(7605), + [anon_sym_GT] = ACTIONS(7603), + [anon_sym_GT_EQ] = ACTIONS(7605), + [anon_sym_LT_EQ] = ACTIONS(7603), + [anon_sym_LT] = ACTIONS(7603), + [anon_sym_LT_LT] = ACTIONS(7603), + [anon_sym_GT_GT] = ACTIONS(7603), + [anon_sym_SEMI] = ACTIONS(7605), + [anon_sym___extension__] = ACTIONS(7603), + [anon_sym___attribute__] = ACTIONS(7603), + [anon_sym___attribute] = ACTIONS(7603), + [anon_sym_COLON] = ACTIONS(7603), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7605), + [anon_sym_LBRACE] = ACTIONS(7605), + [anon_sym_RBRACE] = ACTIONS(7605), + [anon_sym_LBRACK] = ACTIONS(7605), + [anon_sym_EQ] = ACTIONS(7603), + [anon_sym_const] = ACTIONS(7603), + [anon_sym_constexpr] = ACTIONS(7603), + [anon_sym_volatile] = ACTIONS(7603), + [anon_sym_restrict] = ACTIONS(7603), + [anon_sym___restrict__] = ACTIONS(7603), + [anon_sym__Atomic] = ACTIONS(7603), + [anon_sym__Noreturn] = ACTIONS(7603), + [anon_sym_noreturn] = ACTIONS(7603), + [anon_sym__Nonnull] = ACTIONS(7603), + [anon_sym_mutable] = ACTIONS(7603), + [anon_sym_constinit] = ACTIONS(7603), + [anon_sym_consteval] = ACTIONS(7603), + [anon_sym_alignas] = ACTIONS(7603), + [anon_sym__Alignas] = ACTIONS(7603), + [anon_sym_QMARK] = ACTIONS(7605), + [anon_sym_STAR_EQ] = ACTIONS(7605), + [anon_sym_SLASH_EQ] = ACTIONS(7605), + [anon_sym_PERCENT_EQ] = ACTIONS(7605), + [anon_sym_PLUS_EQ] = ACTIONS(7605), + [anon_sym_DASH_EQ] = ACTIONS(7605), + [anon_sym_LT_LT_EQ] = ACTIONS(7605), + [anon_sym_GT_GT_EQ] = ACTIONS(7605), + [anon_sym_AMP_EQ] = ACTIONS(7605), + [anon_sym_CARET_EQ] = ACTIONS(7605), + [anon_sym_PIPE_EQ] = ACTIONS(7605), + [anon_sym_and_eq] = ACTIONS(7603), + [anon_sym_or_eq] = ACTIONS(7603), + [anon_sym_xor_eq] = ACTIONS(7603), + [anon_sym_LT_EQ_GT] = ACTIONS(7605), + [anon_sym_or] = ACTIONS(7603), + [anon_sym_and] = ACTIONS(7603), + [anon_sym_bitor] = ACTIONS(7603), + [anon_sym_xor] = ACTIONS(7603), + [anon_sym_bitand] = ACTIONS(7603), + [anon_sym_not_eq] = ACTIONS(7603), + [anon_sym_DASH_DASH] = ACTIONS(7605), + [anon_sym_PLUS_PLUS] = ACTIONS(7605), + [anon_sym_DOT] = ACTIONS(7603), + [anon_sym_DOT_STAR] = ACTIONS(7605), + [anon_sym_DASH_GT] = ACTIONS(7605), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7603), + [anon_sym_override] = ACTIONS(7603), + [anon_sym_requires] = ACTIONS(7603), + [anon_sym_COLON_RBRACK] = ACTIONS(7605), + }, + [STATE(2186)] = { + [sym_identifier] = ACTIONS(7607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7609), + [anon_sym_COMMA] = ACTIONS(7609), + [anon_sym_RPAREN] = ACTIONS(7609), + [aux_sym_preproc_if_token2] = ACTIONS(7609), + [aux_sym_preproc_else_token1] = ACTIONS(7609), + [aux_sym_preproc_elif_token1] = ACTIONS(7607), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7609), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7609), + [anon_sym_LPAREN2] = ACTIONS(7609), + [anon_sym_DASH] = ACTIONS(7607), + [anon_sym_PLUS] = ACTIONS(7607), + [anon_sym_STAR] = ACTIONS(7607), + [anon_sym_SLASH] = ACTIONS(7607), + [anon_sym_PERCENT] = ACTIONS(7607), + [anon_sym_PIPE_PIPE] = ACTIONS(7609), + [anon_sym_AMP_AMP] = ACTIONS(7609), + [anon_sym_PIPE] = ACTIONS(7607), + [anon_sym_CARET] = ACTIONS(7607), + [anon_sym_AMP] = ACTIONS(7607), + [anon_sym_EQ_EQ] = ACTIONS(7609), + [anon_sym_BANG_EQ] = ACTIONS(7609), + [anon_sym_GT] = ACTIONS(7607), + [anon_sym_GT_EQ] = ACTIONS(7609), + [anon_sym_LT_EQ] = ACTIONS(7607), + [anon_sym_LT] = ACTIONS(7607), + [anon_sym_LT_LT] = ACTIONS(7607), + [anon_sym_GT_GT] = ACTIONS(7607), + [anon_sym_SEMI] = ACTIONS(7609), + [anon_sym___extension__] = ACTIONS(7607), + [anon_sym___attribute__] = ACTIONS(7607), + [anon_sym___attribute] = ACTIONS(7607), + [anon_sym_COLON] = ACTIONS(7607), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7609), + [anon_sym_LBRACE] = ACTIONS(7609), + [anon_sym_RBRACE] = ACTIONS(7609), + [anon_sym_LBRACK] = ACTIONS(7609), + [anon_sym_EQ] = ACTIONS(7607), + [anon_sym_const] = ACTIONS(7607), + [anon_sym_constexpr] = ACTIONS(7607), + [anon_sym_volatile] = ACTIONS(7607), + [anon_sym_restrict] = ACTIONS(7607), + [anon_sym___restrict__] = ACTIONS(7607), + [anon_sym__Atomic] = ACTIONS(7607), + [anon_sym__Noreturn] = ACTIONS(7607), + [anon_sym_noreturn] = ACTIONS(7607), + [anon_sym__Nonnull] = ACTIONS(7607), + [anon_sym_mutable] = ACTIONS(7607), + [anon_sym_constinit] = ACTIONS(7607), + [anon_sym_consteval] = ACTIONS(7607), + [anon_sym_alignas] = ACTIONS(7607), + [anon_sym__Alignas] = ACTIONS(7607), + [anon_sym_QMARK] = ACTIONS(7609), + [anon_sym_STAR_EQ] = ACTIONS(7609), + [anon_sym_SLASH_EQ] = ACTIONS(7609), + [anon_sym_PERCENT_EQ] = ACTIONS(7609), + [anon_sym_PLUS_EQ] = ACTIONS(7609), + [anon_sym_DASH_EQ] = ACTIONS(7609), + [anon_sym_LT_LT_EQ] = ACTIONS(7609), + [anon_sym_GT_GT_EQ] = ACTIONS(7609), + [anon_sym_AMP_EQ] = ACTIONS(7609), + [anon_sym_CARET_EQ] = ACTIONS(7609), + [anon_sym_PIPE_EQ] = ACTIONS(7609), + [anon_sym_and_eq] = ACTIONS(7607), + [anon_sym_or_eq] = ACTIONS(7607), + [anon_sym_xor_eq] = ACTIONS(7607), + [anon_sym_LT_EQ_GT] = ACTIONS(7609), + [anon_sym_or] = ACTIONS(7607), + [anon_sym_and] = ACTIONS(7607), + [anon_sym_bitor] = ACTIONS(7607), + [anon_sym_xor] = ACTIONS(7607), + [anon_sym_bitand] = ACTIONS(7607), + [anon_sym_not_eq] = ACTIONS(7607), + [anon_sym_DASH_DASH] = ACTIONS(7609), + [anon_sym_PLUS_PLUS] = ACTIONS(7609), + [anon_sym_DOT] = ACTIONS(7607), + [anon_sym_DOT_STAR] = ACTIONS(7609), + [anon_sym_DASH_GT] = ACTIONS(7609), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7607), + [anon_sym_override] = ACTIONS(7607), + [anon_sym_requires] = ACTIONS(7607), + [anon_sym_COLON_RBRACK] = ACTIONS(7609), + }, + [STATE(2187)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2037), + [sym_identifier] = ACTIONS(7528), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), + [anon_sym_COMMA] = ACTIONS(7525), + [aux_sym_preproc_if_token2] = ACTIONS(7525), + [aux_sym_preproc_else_token1] = ACTIONS(7525), + [aux_sym_preproc_elif_token1] = ACTIONS(7528), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7525), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7525), + [anon_sym_LPAREN2] = ACTIONS(7525), + [anon_sym_DASH] = ACTIONS(7528), + [anon_sym_PLUS] = ACTIONS(7528), + [anon_sym_STAR] = ACTIONS(7528), + [anon_sym_SLASH] = ACTIONS(7528), + [anon_sym_PERCENT] = ACTIONS(7528), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_AMP_AMP] = ACTIONS(7525), + [anon_sym_PIPE] = ACTIONS(7528), + [anon_sym_CARET] = ACTIONS(7528), + [anon_sym_AMP] = ACTIONS(7528), + [anon_sym_EQ_EQ] = ACTIONS(7525), + [anon_sym_BANG_EQ] = ACTIONS(7525), + [anon_sym_GT] = ACTIONS(7528), + [anon_sym_GT_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7528), + [anon_sym_LT] = ACTIONS(7528), + [anon_sym_LT_LT] = ACTIONS(7528), + [anon_sym_GT_GT] = ACTIONS(7528), + [anon_sym___extension__] = ACTIONS(7528), + [anon_sym___attribute__] = ACTIONS(7528), + [anon_sym___attribute] = ACTIONS(7528), + [anon_sym_LBRACE] = ACTIONS(7525), + [anon_sym_signed] = ACTIONS(7003), + [anon_sym_unsigned] = ACTIONS(7003), + [anon_sym_long] = ACTIONS(7003), + [anon_sym_short] = ACTIONS(7003), + [anon_sym_LBRACK] = ACTIONS(7525), + [anon_sym_EQ] = ACTIONS(7528), + [anon_sym_const] = ACTIONS(7528), + [anon_sym_constexpr] = ACTIONS(7528), + [anon_sym_volatile] = ACTIONS(7528), + [anon_sym_restrict] = ACTIONS(7528), + [anon_sym___restrict__] = ACTIONS(7528), + [anon_sym__Atomic] = ACTIONS(7528), + [anon_sym__Noreturn] = ACTIONS(7528), + [anon_sym_noreturn] = ACTIONS(7528), + [anon_sym__Nonnull] = ACTIONS(7528), + [anon_sym_mutable] = ACTIONS(7528), + [anon_sym_constinit] = ACTIONS(7528), + [anon_sym_consteval] = ACTIONS(7528), + [anon_sym_alignas] = ACTIONS(7528), + [anon_sym__Alignas] = ACTIONS(7528), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7525), + [anon_sym_STAR_EQ] = ACTIONS(7525), + [anon_sym_SLASH_EQ] = ACTIONS(7525), + [anon_sym_PERCENT_EQ] = ACTIONS(7525), + [anon_sym_PLUS_EQ] = ACTIONS(7525), + [anon_sym_DASH_EQ] = ACTIONS(7525), + [anon_sym_LT_LT_EQ] = ACTIONS(7525), + [anon_sym_GT_GT_EQ] = ACTIONS(7525), + [anon_sym_AMP_EQ] = ACTIONS(7525), + [anon_sym_CARET_EQ] = ACTIONS(7525), + [anon_sym_PIPE_EQ] = ACTIONS(7525), + [anon_sym_and_eq] = ACTIONS(7528), + [anon_sym_or_eq] = ACTIONS(7528), + [anon_sym_xor_eq] = ACTIONS(7528), + [anon_sym_LT_EQ_GT] = ACTIONS(7525), + [anon_sym_or] = ACTIONS(7528), + [anon_sym_and] = ACTIONS(7528), + [anon_sym_bitor] = ACTIONS(7528), + [anon_sym_xor] = ACTIONS(7528), + [anon_sym_bitand] = ACTIONS(7528), + [anon_sym_not_eq] = ACTIONS(7528), + [anon_sym_DASH_DASH] = ACTIONS(7525), + [anon_sym_PLUS_PLUS] = ACTIONS(7525), + [anon_sym_DOT] = ACTIONS(7528), + [anon_sym_DOT_STAR] = ACTIONS(7525), + [anon_sym_DASH_GT] = ACTIONS(7525), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7528), + [anon_sym_override] = ACTIONS(7528), + [anon_sym_requires] = ACTIONS(7528), + }, + [STATE(2188)] = { + [sym_type_qualifier] = STATE(2270), + [sym_alignas_qualifier] = STATE(2365), + [aux_sym__type_definition_type_repeat1] = STATE(2270), + [aux_sym_sized_type_specifier_repeat1] = STATE(2418), + [sym_identifier] = ACTIONS(7611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), + [anon_sym_COMMA] = ACTIONS(7205), + [anon_sym_RPAREN] = ACTIONS(7205), + [anon_sym_LPAREN2] = ACTIONS(7205), + [anon_sym_DASH] = ACTIONS(7207), + [anon_sym_PLUS] = ACTIONS(7207), + [anon_sym_STAR] = ACTIONS(7207), + [anon_sym_SLASH] = ACTIONS(7207), + [anon_sym_PERCENT] = ACTIONS(7207), + [anon_sym_PIPE_PIPE] = ACTIONS(7205), + [anon_sym_AMP_AMP] = ACTIONS(7205), + [anon_sym_PIPE] = ACTIONS(7207), + [anon_sym_CARET] = ACTIONS(7207), + [anon_sym_AMP] = ACTIONS(7207), + [anon_sym_EQ_EQ] = ACTIONS(7205), + [anon_sym_BANG_EQ] = ACTIONS(7205), + [anon_sym_GT] = ACTIONS(7207), + [anon_sym_GT_EQ] = ACTIONS(7205), + [anon_sym_LT_EQ] = ACTIONS(7207), + [anon_sym_LT] = ACTIONS(7207), + [anon_sym_LT_LT] = ACTIONS(7207), + [anon_sym_GT_GT] = ACTIONS(7207), + [anon_sym___extension__] = ACTIONS(7613), + [anon_sym___attribute__] = ACTIONS(7207), + [anon_sym___attribute] = ACTIONS(7207), + [anon_sym_LBRACE] = ACTIONS(7205), + [anon_sym_signed] = ACTIONS(7616), + [anon_sym_unsigned] = ACTIONS(7616), + [anon_sym_long] = ACTIONS(7616), + [anon_sym_short] = ACTIONS(7616), + [anon_sym_LBRACK] = ACTIONS(7205), + [anon_sym_EQ] = ACTIONS(7207), + [anon_sym_const] = ACTIONS(7613), + [anon_sym_constexpr] = ACTIONS(7613), + [anon_sym_volatile] = ACTIONS(7613), + [anon_sym_restrict] = ACTIONS(7613), + [anon_sym___restrict__] = ACTIONS(7613), + [anon_sym__Atomic] = ACTIONS(7613), + [anon_sym__Noreturn] = ACTIONS(7613), + [anon_sym_noreturn] = ACTIONS(7613), + [anon_sym__Nonnull] = ACTIONS(7613), + [anon_sym_mutable] = ACTIONS(7613), + [anon_sym_constinit] = ACTIONS(7613), + [anon_sym_consteval] = ACTIONS(7613), + [anon_sym_alignas] = ACTIONS(7618), + [anon_sym__Alignas] = ACTIONS(7618), + [sym_primitive_type] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7205), + [anon_sym_STAR_EQ] = ACTIONS(7205), + [anon_sym_SLASH_EQ] = ACTIONS(7205), + [anon_sym_PERCENT_EQ] = ACTIONS(7205), + [anon_sym_PLUS_EQ] = ACTIONS(7205), + [anon_sym_DASH_EQ] = ACTIONS(7205), + [anon_sym_LT_LT_EQ] = ACTIONS(7205), + [anon_sym_GT_GT_EQ] = ACTIONS(7205), + [anon_sym_AMP_EQ] = ACTIONS(7205), + [anon_sym_CARET_EQ] = ACTIONS(7205), + [anon_sym_PIPE_EQ] = ACTIONS(7205), + [anon_sym_and_eq] = ACTIONS(7207), + [anon_sym_or_eq] = ACTIONS(7207), + [anon_sym_xor_eq] = ACTIONS(7207), + [anon_sym_LT_EQ_GT] = ACTIONS(7205), + [anon_sym_or] = ACTIONS(7207), + [anon_sym_and] = ACTIONS(7207), + [anon_sym_bitor] = ACTIONS(7207), + [anon_sym_xor] = ACTIONS(7207), + [anon_sym_bitand] = ACTIONS(7207), + [anon_sym_not_eq] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7205), + [anon_sym_PLUS_PLUS] = ACTIONS(7205), + [anon_sym_DOT] = ACTIONS(7207), + [anon_sym_DOT_STAR] = ACTIONS(7205), + [anon_sym_DASH_GT] = ACTIONS(7207), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7207), + [anon_sym_override] = ACTIONS(7207), + [anon_sym_requires] = ACTIONS(7207), + [anon_sym_DASH_GT_STAR] = ACTIONS(7205), + }, + [STATE(2189)] = { + [sym_identifier] = ACTIONS(7561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), + [anon_sym_COMMA] = ACTIONS(7563), + [anon_sym_RPAREN] = ACTIONS(7563), + [aux_sym_preproc_if_token2] = ACTIONS(7563), + [aux_sym_preproc_else_token1] = ACTIONS(7563), + [aux_sym_preproc_elif_token1] = ACTIONS(7561), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7563), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7563), + [anon_sym_LPAREN2] = ACTIONS(7563), + [anon_sym_DASH] = ACTIONS(7561), + [anon_sym_PLUS] = ACTIONS(7561), + [anon_sym_STAR] = ACTIONS(7561), + [anon_sym_SLASH] = ACTIONS(7561), + [anon_sym_PERCENT] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_AMP_AMP] = ACTIONS(7563), + [anon_sym_PIPE] = ACTIONS(7561), + [anon_sym_CARET] = ACTIONS(7561), + [anon_sym_AMP] = ACTIONS(7561), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_GT] = ACTIONS(7561), + [anon_sym_GT_EQ] = ACTIONS(7563), + [anon_sym_LT_EQ] = ACTIONS(7561), + [anon_sym_LT] = ACTIONS(7561), + [anon_sym_LT_LT] = ACTIONS(7561), + [anon_sym_GT_GT] = ACTIONS(7561), + [anon_sym_SEMI] = ACTIONS(7563), + [anon_sym___extension__] = ACTIONS(7561), + [anon_sym___attribute__] = ACTIONS(7561), + [anon_sym___attribute] = ACTIONS(7561), + [anon_sym_COLON] = ACTIONS(7561), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7563), + [anon_sym_LBRACE] = ACTIONS(7563), + [anon_sym_RBRACE] = ACTIONS(7563), + [anon_sym_LBRACK] = ACTIONS(7563), + [anon_sym_EQ] = ACTIONS(7561), + [anon_sym_const] = ACTIONS(7561), + [anon_sym_constexpr] = ACTIONS(7561), + [anon_sym_volatile] = ACTIONS(7561), + [anon_sym_restrict] = ACTIONS(7561), + [anon_sym___restrict__] = ACTIONS(7561), + [anon_sym__Atomic] = ACTIONS(7561), + [anon_sym__Noreturn] = ACTIONS(7561), + [anon_sym_noreturn] = ACTIONS(7561), + [anon_sym__Nonnull] = ACTIONS(7561), + [anon_sym_mutable] = ACTIONS(7561), + [anon_sym_constinit] = ACTIONS(7561), + [anon_sym_consteval] = ACTIONS(7561), + [anon_sym_alignas] = ACTIONS(7561), + [anon_sym__Alignas] = ACTIONS(7561), + [anon_sym_QMARK] = ACTIONS(7563), + [anon_sym_STAR_EQ] = ACTIONS(7563), + [anon_sym_SLASH_EQ] = ACTIONS(7563), + [anon_sym_PERCENT_EQ] = ACTIONS(7563), + [anon_sym_PLUS_EQ] = ACTIONS(7563), + [anon_sym_DASH_EQ] = ACTIONS(7563), + [anon_sym_LT_LT_EQ] = ACTIONS(7563), + [anon_sym_GT_GT_EQ] = ACTIONS(7563), + [anon_sym_AMP_EQ] = ACTIONS(7563), + [anon_sym_CARET_EQ] = ACTIONS(7563), + [anon_sym_PIPE_EQ] = ACTIONS(7563), + [anon_sym_and_eq] = ACTIONS(7561), + [anon_sym_or_eq] = ACTIONS(7561), + [anon_sym_xor_eq] = ACTIONS(7561), + [anon_sym_LT_EQ_GT] = ACTIONS(7563), + [anon_sym_or] = ACTIONS(7561), + [anon_sym_and] = ACTIONS(7561), + [anon_sym_bitor] = ACTIONS(7561), + [anon_sym_xor] = ACTIONS(7561), + [anon_sym_bitand] = ACTIONS(7561), + [anon_sym_not_eq] = ACTIONS(7561), + [anon_sym_DASH_DASH] = ACTIONS(7563), + [anon_sym_PLUS_PLUS] = ACTIONS(7563), + [anon_sym_DOT] = ACTIONS(7561), + [anon_sym_DOT_STAR] = ACTIONS(7563), + [anon_sym_DASH_GT] = ACTIONS(7563), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7561), + [anon_sym_override] = ACTIONS(7561), + [anon_sym_requires] = ACTIONS(7561), + [anon_sym_COLON_RBRACK] = ACTIONS(7563), + }, + [STATE(2190)] = { + [sym_identifier] = ACTIONS(7561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), + [anon_sym_COMMA] = ACTIONS(7563), + [anon_sym_RPAREN] = ACTIONS(7563), + [aux_sym_preproc_if_token2] = ACTIONS(7563), + [aux_sym_preproc_else_token1] = ACTIONS(7563), + [aux_sym_preproc_elif_token1] = ACTIONS(7561), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7563), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7563), + [anon_sym_LPAREN2] = ACTIONS(7563), + [anon_sym_DASH] = ACTIONS(7561), + [anon_sym_PLUS] = ACTIONS(7561), + [anon_sym_STAR] = ACTIONS(7561), + [anon_sym_SLASH] = ACTIONS(7561), + [anon_sym_PERCENT] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_AMP_AMP] = ACTIONS(7563), + [anon_sym_PIPE] = ACTIONS(7561), + [anon_sym_CARET] = ACTIONS(7561), + [anon_sym_AMP] = ACTIONS(7561), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_GT] = ACTIONS(7561), + [anon_sym_GT_EQ] = ACTIONS(7563), + [anon_sym_LT_EQ] = ACTIONS(7561), + [anon_sym_LT] = ACTIONS(7561), + [anon_sym_LT_LT] = ACTIONS(7561), + [anon_sym_GT_GT] = ACTIONS(7561), + [anon_sym_SEMI] = ACTIONS(7563), + [anon_sym___extension__] = ACTIONS(7561), + [anon_sym___attribute__] = ACTIONS(7561), + [anon_sym___attribute] = ACTIONS(7561), + [anon_sym_COLON] = ACTIONS(7561), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7563), + [anon_sym_LBRACE] = ACTIONS(7563), + [anon_sym_RBRACE] = ACTIONS(7563), + [anon_sym_LBRACK] = ACTIONS(7563), + [anon_sym_EQ] = ACTIONS(7561), + [anon_sym_const] = ACTIONS(7561), + [anon_sym_constexpr] = ACTIONS(7561), + [anon_sym_volatile] = ACTIONS(7561), + [anon_sym_restrict] = ACTIONS(7561), + [anon_sym___restrict__] = ACTIONS(7561), + [anon_sym__Atomic] = ACTIONS(7561), + [anon_sym__Noreturn] = ACTIONS(7561), + [anon_sym_noreturn] = ACTIONS(7561), + [anon_sym__Nonnull] = ACTIONS(7561), + [anon_sym_mutable] = ACTIONS(7561), + [anon_sym_constinit] = ACTIONS(7561), + [anon_sym_consteval] = ACTIONS(7561), + [anon_sym_alignas] = ACTIONS(7561), + [anon_sym__Alignas] = ACTIONS(7561), + [anon_sym_QMARK] = ACTIONS(7563), + [anon_sym_STAR_EQ] = ACTIONS(7563), + [anon_sym_SLASH_EQ] = ACTIONS(7563), + [anon_sym_PERCENT_EQ] = ACTIONS(7563), + [anon_sym_PLUS_EQ] = ACTIONS(7563), + [anon_sym_DASH_EQ] = ACTIONS(7563), + [anon_sym_LT_LT_EQ] = ACTIONS(7563), + [anon_sym_GT_GT_EQ] = ACTIONS(7563), + [anon_sym_AMP_EQ] = ACTIONS(7563), + [anon_sym_CARET_EQ] = ACTIONS(7563), + [anon_sym_PIPE_EQ] = ACTIONS(7563), + [anon_sym_and_eq] = ACTIONS(7561), + [anon_sym_or_eq] = ACTIONS(7561), + [anon_sym_xor_eq] = ACTIONS(7561), + [anon_sym_LT_EQ_GT] = ACTIONS(7563), + [anon_sym_or] = ACTIONS(7561), + [anon_sym_and] = ACTIONS(7561), + [anon_sym_bitor] = ACTIONS(7561), + [anon_sym_xor] = ACTIONS(7561), + [anon_sym_bitand] = ACTIONS(7561), + [anon_sym_not_eq] = ACTIONS(7561), + [anon_sym_DASH_DASH] = ACTIONS(7563), + [anon_sym_PLUS_PLUS] = ACTIONS(7563), + [anon_sym_DOT] = ACTIONS(7561), + [anon_sym_DOT_STAR] = ACTIONS(7563), + [anon_sym_DASH_GT] = ACTIONS(7563), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7561), + [anon_sym_override] = ACTIONS(7561), + [anon_sym_requires] = ACTIONS(7561), + [anon_sym_COLON_RBRACK] = ACTIONS(7563), + }, + [STATE(2191)] = { + [sym_identifier] = ACTIONS(7623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7625), + [anon_sym_COMMA] = ACTIONS(7625), + [anon_sym_RPAREN] = ACTIONS(7625), + [aux_sym_preproc_if_token2] = ACTIONS(7625), + [aux_sym_preproc_else_token1] = ACTIONS(7625), + [aux_sym_preproc_elif_token1] = ACTIONS(7623), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7625), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7625), + [anon_sym_LPAREN2] = ACTIONS(7625), + [anon_sym_DASH] = ACTIONS(7623), + [anon_sym_PLUS] = ACTIONS(7623), + [anon_sym_STAR] = ACTIONS(7623), + [anon_sym_SLASH] = ACTIONS(7623), + [anon_sym_PERCENT] = ACTIONS(7623), + [anon_sym_PIPE_PIPE] = ACTIONS(7625), + [anon_sym_AMP_AMP] = ACTIONS(7625), + [anon_sym_PIPE] = ACTIONS(7623), + [anon_sym_CARET] = ACTIONS(7623), + [anon_sym_AMP] = ACTIONS(7623), + [anon_sym_EQ_EQ] = ACTIONS(7625), + [anon_sym_BANG_EQ] = ACTIONS(7625), + [anon_sym_GT] = ACTIONS(7623), + [anon_sym_GT_EQ] = ACTIONS(7625), + [anon_sym_LT_EQ] = ACTIONS(7623), + [anon_sym_LT] = ACTIONS(7623), + [anon_sym_LT_LT] = ACTIONS(7623), + [anon_sym_GT_GT] = ACTIONS(7623), + [anon_sym_SEMI] = ACTIONS(7625), + [anon_sym___extension__] = ACTIONS(7623), + [anon_sym___attribute__] = ACTIONS(7623), + [anon_sym___attribute] = ACTIONS(7623), + [anon_sym_COLON] = ACTIONS(7623), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7625), + [anon_sym_LBRACE] = ACTIONS(7625), + [anon_sym_RBRACE] = ACTIONS(7625), + [anon_sym_LBRACK] = ACTIONS(7625), + [anon_sym_EQ] = ACTIONS(7623), + [anon_sym_const] = ACTIONS(7623), + [anon_sym_constexpr] = ACTIONS(7623), + [anon_sym_volatile] = ACTIONS(7623), + [anon_sym_restrict] = ACTIONS(7623), + [anon_sym___restrict__] = ACTIONS(7623), + [anon_sym__Atomic] = ACTIONS(7623), + [anon_sym__Noreturn] = ACTIONS(7623), + [anon_sym_noreturn] = ACTIONS(7623), + [anon_sym__Nonnull] = ACTIONS(7623), + [anon_sym_mutable] = ACTIONS(7623), + [anon_sym_constinit] = ACTIONS(7623), + [anon_sym_consteval] = ACTIONS(7623), + [anon_sym_alignas] = ACTIONS(7623), + [anon_sym__Alignas] = ACTIONS(7623), + [anon_sym_QMARK] = ACTIONS(7625), + [anon_sym_STAR_EQ] = ACTIONS(7625), + [anon_sym_SLASH_EQ] = ACTIONS(7625), + [anon_sym_PERCENT_EQ] = ACTIONS(7625), + [anon_sym_PLUS_EQ] = ACTIONS(7625), + [anon_sym_DASH_EQ] = ACTIONS(7625), + [anon_sym_LT_LT_EQ] = ACTIONS(7625), + [anon_sym_GT_GT_EQ] = ACTIONS(7625), + [anon_sym_AMP_EQ] = ACTIONS(7625), + [anon_sym_CARET_EQ] = ACTIONS(7625), + [anon_sym_PIPE_EQ] = ACTIONS(7625), + [anon_sym_and_eq] = ACTIONS(7623), + [anon_sym_or_eq] = ACTIONS(7623), + [anon_sym_xor_eq] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7625), + [anon_sym_or] = ACTIONS(7623), + [anon_sym_and] = ACTIONS(7623), + [anon_sym_bitor] = ACTIONS(7623), + [anon_sym_xor] = ACTIONS(7623), + [anon_sym_bitand] = ACTIONS(7623), + [anon_sym_not_eq] = ACTIONS(7623), + [anon_sym_DASH_DASH] = ACTIONS(7625), + [anon_sym_PLUS_PLUS] = ACTIONS(7625), + [anon_sym_DOT] = ACTIONS(7623), + [anon_sym_DOT_STAR] = ACTIONS(7625), + [anon_sym_DASH_GT] = ACTIONS(7625), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7623), + [anon_sym_override] = ACTIONS(7623), + [anon_sym_requires] = ACTIONS(7623), + [anon_sym_COLON_RBRACK] = ACTIONS(7625), + }, + [STATE(2192)] = { + [sym_identifier] = ACTIONS(7627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7629), + [anon_sym_COMMA] = ACTIONS(7629), + [anon_sym_RPAREN] = ACTIONS(7629), + [aux_sym_preproc_if_token2] = ACTIONS(7629), + [aux_sym_preproc_else_token1] = ACTIONS(7629), + [aux_sym_preproc_elif_token1] = ACTIONS(7627), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7629), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7629), + [anon_sym_LPAREN2] = ACTIONS(7629), + [anon_sym_DASH] = ACTIONS(7627), + [anon_sym_PLUS] = ACTIONS(7627), + [anon_sym_STAR] = ACTIONS(7627), + [anon_sym_SLASH] = ACTIONS(7627), + [anon_sym_PERCENT] = ACTIONS(7627), + [anon_sym_PIPE_PIPE] = ACTIONS(7629), + [anon_sym_AMP_AMP] = ACTIONS(7629), + [anon_sym_PIPE] = ACTIONS(7627), + [anon_sym_CARET] = ACTIONS(7627), + [anon_sym_AMP] = ACTIONS(7627), + [anon_sym_EQ_EQ] = ACTIONS(7629), + [anon_sym_BANG_EQ] = ACTIONS(7629), + [anon_sym_GT] = ACTIONS(7627), + [anon_sym_GT_EQ] = ACTIONS(7629), + [anon_sym_LT_EQ] = ACTIONS(7627), + [anon_sym_LT] = ACTIONS(7627), + [anon_sym_LT_LT] = ACTIONS(7627), + [anon_sym_GT_GT] = ACTIONS(7627), + [anon_sym_SEMI] = ACTIONS(7629), + [anon_sym___extension__] = ACTIONS(7627), + [anon_sym___attribute__] = ACTIONS(7627), + [anon_sym___attribute] = ACTIONS(7627), + [anon_sym_COLON] = ACTIONS(7627), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7629), + [anon_sym_LBRACE] = ACTIONS(7629), + [anon_sym_RBRACE] = ACTIONS(7629), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7627), + [anon_sym_const] = ACTIONS(7627), + [anon_sym_constexpr] = ACTIONS(7627), + [anon_sym_volatile] = ACTIONS(7627), + [anon_sym_restrict] = ACTIONS(7627), + [anon_sym___restrict__] = ACTIONS(7627), + [anon_sym__Atomic] = ACTIONS(7627), + [anon_sym__Noreturn] = ACTIONS(7627), + [anon_sym_noreturn] = ACTIONS(7627), + [anon_sym__Nonnull] = ACTIONS(7627), + [anon_sym_mutable] = ACTIONS(7627), + [anon_sym_constinit] = ACTIONS(7627), + [anon_sym_consteval] = ACTIONS(7627), + [anon_sym_alignas] = ACTIONS(7627), + [anon_sym__Alignas] = ACTIONS(7627), + [anon_sym_QMARK] = ACTIONS(7629), + [anon_sym_STAR_EQ] = ACTIONS(7629), + [anon_sym_SLASH_EQ] = ACTIONS(7629), + [anon_sym_PERCENT_EQ] = ACTIONS(7629), + [anon_sym_PLUS_EQ] = ACTIONS(7629), + [anon_sym_DASH_EQ] = ACTIONS(7629), + [anon_sym_LT_LT_EQ] = ACTIONS(7629), + [anon_sym_GT_GT_EQ] = ACTIONS(7629), + [anon_sym_AMP_EQ] = ACTIONS(7629), + [anon_sym_CARET_EQ] = ACTIONS(7629), + [anon_sym_PIPE_EQ] = ACTIONS(7629), + [anon_sym_and_eq] = ACTIONS(7627), + [anon_sym_or_eq] = ACTIONS(7627), + [anon_sym_xor_eq] = ACTIONS(7627), + [anon_sym_LT_EQ_GT] = ACTIONS(7629), + [anon_sym_or] = ACTIONS(7627), + [anon_sym_and] = ACTIONS(7627), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7627), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7629), + [anon_sym_PLUS_PLUS] = ACTIONS(7629), + [anon_sym_DOT] = ACTIONS(7627), + [anon_sym_DOT_STAR] = ACTIONS(7629), + [anon_sym_DASH_GT] = ACTIONS(7629), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7627), + [anon_sym_override] = ACTIONS(7627), + [anon_sym_requires] = ACTIONS(7627), + [anon_sym_COLON_RBRACK] = ACTIONS(7629), + }, + [STATE(2193)] = { + [sym_identifier] = ACTIONS(7631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7633), + [anon_sym_COMMA] = ACTIONS(7633), + [anon_sym_RPAREN] = ACTIONS(7633), + [aux_sym_preproc_if_token2] = ACTIONS(7633), + [aux_sym_preproc_else_token1] = ACTIONS(7633), + [aux_sym_preproc_elif_token1] = ACTIONS(7631), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7633), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7633), + [anon_sym_LPAREN2] = ACTIONS(7633), + [anon_sym_DASH] = ACTIONS(7631), + [anon_sym_PLUS] = ACTIONS(7631), + [anon_sym_STAR] = ACTIONS(7631), + [anon_sym_SLASH] = ACTIONS(7631), + [anon_sym_PERCENT] = ACTIONS(7631), + [anon_sym_PIPE_PIPE] = ACTIONS(7633), + [anon_sym_AMP_AMP] = ACTIONS(7633), + [anon_sym_PIPE] = ACTIONS(7631), + [anon_sym_CARET] = ACTIONS(7631), + [anon_sym_AMP] = ACTIONS(7631), + [anon_sym_EQ_EQ] = ACTIONS(7633), + [anon_sym_BANG_EQ] = ACTIONS(7633), + [anon_sym_GT] = ACTIONS(7631), + [anon_sym_GT_EQ] = ACTIONS(7633), + [anon_sym_LT_EQ] = ACTIONS(7631), + [anon_sym_LT] = ACTIONS(7631), + [anon_sym_LT_LT] = ACTIONS(7631), + [anon_sym_GT_GT] = ACTIONS(7631), + [anon_sym_SEMI] = ACTIONS(7633), + [anon_sym___extension__] = ACTIONS(7631), + [anon_sym___attribute__] = ACTIONS(7631), + [anon_sym___attribute] = ACTIONS(7631), + [anon_sym_COLON] = ACTIONS(7631), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7633), + [anon_sym_LBRACE] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7633), + [anon_sym_LBRACK] = ACTIONS(7633), + [anon_sym_EQ] = ACTIONS(7631), + [anon_sym_const] = ACTIONS(7631), + [anon_sym_constexpr] = ACTIONS(7631), + [anon_sym_volatile] = ACTIONS(7631), + [anon_sym_restrict] = ACTIONS(7631), + [anon_sym___restrict__] = ACTIONS(7631), + [anon_sym__Atomic] = ACTIONS(7631), + [anon_sym__Noreturn] = ACTIONS(7631), + [anon_sym_noreturn] = ACTIONS(7631), + [anon_sym__Nonnull] = ACTIONS(7631), + [anon_sym_mutable] = ACTIONS(7631), + [anon_sym_constinit] = ACTIONS(7631), + [anon_sym_consteval] = ACTIONS(7631), + [anon_sym_alignas] = ACTIONS(7631), + [anon_sym__Alignas] = ACTIONS(7631), + [anon_sym_QMARK] = ACTIONS(7633), + [anon_sym_STAR_EQ] = ACTIONS(7633), + [anon_sym_SLASH_EQ] = ACTIONS(7633), + [anon_sym_PERCENT_EQ] = ACTIONS(7633), + [anon_sym_PLUS_EQ] = ACTIONS(7633), + [anon_sym_DASH_EQ] = ACTIONS(7633), + [anon_sym_LT_LT_EQ] = ACTIONS(7633), + [anon_sym_GT_GT_EQ] = ACTIONS(7633), + [anon_sym_AMP_EQ] = ACTIONS(7633), + [anon_sym_CARET_EQ] = ACTIONS(7633), + [anon_sym_PIPE_EQ] = ACTIONS(7633), + [anon_sym_and_eq] = ACTIONS(7631), + [anon_sym_or_eq] = ACTIONS(7631), + [anon_sym_xor_eq] = ACTIONS(7631), + [anon_sym_LT_EQ_GT] = ACTIONS(7633), + [anon_sym_or] = ACTIONS(7631), + [anon_sym_and] = ACTIONS(7631), + [anon_sym_bitor] = ACTIONS(7631), + [anon_sym_xor] = ACTIONS(7631), + [anon_sym_bitand] = ACTIONS(7631), + [anon_sym_not_eq] = ACTIONS(7631), + [anon_sym_DASH_DASH] = ACTIONS(7633), + [anon_sym_PLUS_PLUS] = ACTIONS(7633), + [anon_sym_DOT] = ACTIONS(7631), + [anon_sym_DOT_STAR] = ACTIONS(7633), + [anon_sym_DASH_GT] = ACTIONS(7633), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7631), + [anon_sym_override] = ACTIONS(7631), + [anon_sym_requires] = ACTIONS(7631), + [anon_sym_COLON_RBRACK] = ACTIONS(7633), + }, + [STATE(2194)] = { + [sym_identifier] = ACTIONS(7635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7637), + [anon_sym_COMMA] = ACTIONS(7637), + [anon_sym_RPAREN] = ACTIONS(7637), + [aux_sym_preproc_if_token2] = ACTIONS(7637), + [aux_sym_preproc_else_token1] = ACTIONS(7637), + [aux_sym_preproc_elif_token1] = ACTIONS(7635), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7637), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7637), + [anon_sym_LPAREN2] = ACTIONS(7637), + [anon_sym_DASH] = ACTIONS(7635), + [anon_sym_PLUS] = ACTIONS(7635), + [anon_sym_STAR] = ACTIONS(7635), + [anon_sym_SLASH] = ACTIONS(7635), + [anon_sym_PERCENT] = ACTIONS(7635), + [anon_sym_PIPE_PIPE] = ACTIONS(7637), + [anon_sym_AMP_AMP] = ACTIONS(7637), + [anon_sym_PIPE] = ACTIONS(7635), + [anon_sym_CARET] = ACTIONS(7635), + [anon_sym_AMP] = ACTIONS(7635), + [anon_sym_EQ_EQ] = ACTIONS(7637), + [anon_sym_BANG_EQ] = ACTIONS(7637), + [anon_sym_GT] = ACTIONS(7635), + [anon_sym_GT_EQ] = ACTIONS(7637), + [anon_sym_LT_EQ] = ACTIONS(7635), + [anon_sym_LT] = ACTIONS(7635), + [anon_sym_LT_LT] = ACTIONS(7635), + [anon_sym_GT_GT] = ACTIONS(7635), + [anon_sym_SEMI] = ACTIONS(7637), + [anon_sym___extension__] = ACTIONS(7635), + [anon_sym___attribute__] = ACTIONS(7635), + [anon_sym___attribute] = ACTIONS(7635), + [anon_sym_COLON] = ACTIONS(7635), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7637), + [anon_sym_LBRACE] = ACTIONS(7637), + [anon_sym_RBRACE] = ACTIONS(7637), + [anon_sym_LBRACK] = ACTIONS(7637), + [anon_sym_EQ] = ACTIONS(7635), + [anon_sym_const] = ACTIONS(7635), + [anon_sym_constexpr] = ACTIONS(7635), + [anon_sym_volatile] = ACTIONS(7635), + [anon_sym_restrict] = ACTIONS(7635), + [anon_sym___restrict__] = ACTIONS(7635), + [anon_sym__Atomic] = ACTIONS(7635), + [anon_sym__Noreturn] = ACTIONS(7635), + [anon_sym_noreturn] = ACTIONS(7635), + [anon_sym__Nonnull] = ACTIONS(7635), + [anon_sym_mutable] = ACTIONS(7635), + [anon_sym_constinit] = ACTIONS(7635), + [anon_sym_consteval] = ACTIONS(7635), + [anon_sym_alignas] = ACTIONS(7635), + [anon_sym__Alignas] = ACTIONS(7635), + [anon_sym_QMARK] = ACTIONS(7637), + [anon_sym_STAR_EQ] = ACTIONS(7637), + [anon_sym_SLASH_EQ] = ACTIONS(7637), + [anon_sym_PERCENT_EQ] = ACTIONS(7637), + [anon_sym_PLUS_EQ] = ACTIONS(7637), + [anon_sym_DASH_EQ] = ACTIONS(7637), + [anon_sym_LT_LT_EQ] = ACTIONS(7637), + [anon_sym_GT_GT_EQ] = ACTIONS(7637), + [anon_sym_AMP_EQ] = ACTIONS(7637), + [anon_sym_CARET_EQ] = ACTIONS(7637), + [anon_sym_PIPE_EQ] = ACTIONS(7637), + [anon_sym_and_eq] = ACTIONS(7635), + [anon_sym_or_eq] = ACTIONS(7635), + [anon_sym_xor_eq] = ACTIONS(7635), + [anon_sym_LT_EQ_GT] = ACTIONS(7637), + [anon_sym_or] = ACTIONS(7635), + [anon_sym_and] = ACTIONS(7635), + [anon_sym_bitor] = ACTIONS(7635), + [anon_sym_xor] = ACTIONS(7635), + [anon_sym_bitand] = ACTIONS(7635), + [anon_sym_not_eq] = ACTIONS(7635), + [anon_sym_DASH_DASH] = ACTIONS(7637), + [anon_sym_PLUS_PLUS] = ACTIONS(7637), + [anon_sym_DOT] = ACTIONS(7635), + [anon_sym_DOT_STAR] = ACTIONS(7637), + [anon_sym_DASH_GT] = ACTIONS(7637), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7635), + [anon_sym_override] = ACTIONS(7635), + [anon_sym_requires] = ACTIONS(7635), + [anon_sym_COLON_RBRACK] = ACTIONS(7637), + }, + [STATE(2195)] = { + [sym_identifier] = ACTIONS(7639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7641), + [anon_sym_COMMA] = ACTIONS(7641), + [anon_sym_RPAREN] = ACTIONS(7641), + [aux_sym_preproc_if_token2] = ACTIONS(7641), + [aux_sym_preproc_else_token1] = ACTIONS(7641), + [aux_sym_preproc_elif_token1] = ACTIONS(7639), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7641), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7641), + [anon_sym_LPAREN2] = ACTIONS(7641), + [anon_sym_DASH] = ACTIONS(7639), + [anon_sym_PLUS] = ACTIONS(7639), + [anon_sym_STAR] = ACTIONS(7639), + [anon_sym_SLASH] = ACTIONS(7639), + [anon_sym_PERCENT] = ACTIONS(7639), + [anon_sym_PIPE_PIPE] = ACTIONS(7641), + [anon_sym_AMP_AMP] = ACTIONS(7641), + [anon_sym_PIPE] = ACTIONS(7639), + [anon_sym_CARET] = ACTIONS(7639), + [anon_sym_AMP] = ACTIONS(7639), + [anon_sym_EQ_EQ] = ACTIONS(7641), + [anon_sym_BANG_EQ] = ACTIONS(7641), + [anon_sym_GT] = ACTIONS(7639), + [anon_sym_GT_EQ] = ACTIONS(7641), + [anon_sym_LT_EQ] = ACTIONS(7639), + [anon_sym_LT] = ACTIONS(7639), + [anon_sym_LT_LT] = ACTIONS(7639), + [anon_sym_GT_GT] = ACTIONS(7639), + [anon_sym_SEMI] = ACTIONS(7641), + [anon_sym___extension__] = ACTIONS(7639), + [anon_sym___attribute__] = ACTIONS(7639), + [anon_sym___attribute] = ACTIONS(7639), + [anon_sym_COLON] = ACTIONS(7639), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7641), + [anon_sym_LBRACE] = ACTIONS(7641), + [anon_sym_RBRACE] = ACTIONS(7641), + [anon_sym_LBRACK] = ACTIONS(7641), + [anon_sym_EQ] = ACTIONS(7639), + [anon_sym_const] = ACTIONS(7639), + [anon_sym_constexpr] = ACTIONS(7639), + [anon_sym_volatile] = ACTIONS(7639), + [anon_sym_restrict] = ACTIONS(7639), + [anon_sym___restrict__] = ACTIONS(7639), + [anon_sym__Atomic] = ACTIONS(7639), + [anon_sym__Noreturn] = ACTIONS(7639), + [anon_sym_noreturn] = ACTIONS(7639), + [anon_sym__Nonnull] = ACTIONS(7639), + [anon_sym_mutable] = ACTIONS(7639), + [anon_sym_constinit] = ACTIONS(7639), + [anon_sym_consteval] = ACTIONS(7639), + [anon_sym_alignas] = ACTIONS(7639), + [anon_sym__Alignas] = ACTIONS(7639), + [anon_sym_QMARK] = ACTIONS(7641), + [anon_sym_STAR_EQ] = ACTIONS(7641), + [anon_sym_SLASH_EQ] = ACTIONS(7641), + [anon_sym_PERCENT_EQ] = ACTIONS(7641), + [anon_sym_PLUS_EQ] = ACTIONS(7641), + [anon_sym_DASH_EQ] = ACTIONS(7641), + [anon_sym_LT_LT_EQ] = ACTIONS(7641), + [anon_sym_GT_GT_EQ] = ACTIONS(7641), + [anon_sym_AMP_EQ] = ACTIONS(7641), + [anon_sym_CARET_EQ] = ACTIONS(7641), + [anon_sym_PIPE_EQ] = ACTIONS(7641), + [anon_sym_and_eq] = ACTIONS(7639), + [anon_sym_or_eq] = ACTIONS(7639), + [anon_sym_xor_eq] = ACTIONS(7639), + [anon_sym_LT_EQ_GT] = ACTIONS(7641), + [anon_sym_or] = ACTIONS(7639), + [anon_sym_and] = ACTIONS(7639), + [anon_sym_bitor] = ACTIONS(7639), + [anon_sym_xor] = ACTIONS(7639), + [anon_sym_bitand] = ACTIONS(7639), + [anon_sym_not_eq] = ACTIONS(7639), + [anon_sym_DASH_DASH] = ACTIONS(7641), + [anon_sym_PLUS_PLUS] = ACTIONS(7641), + [anon_sym_DOT] = ACTIONS(7639), + [anon_sym_DOT_STAR] = ACTIONS(7641), + [anon_sym_DASH_GT] = ACTIONS(7641), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7639), + [anon_sym_override] = ACTIONS(7639), + [anon_sym_requires] = ACTIONS(7639), + [anon_sym_COLON_RBRACK] = ACTIONS(7641), + }, + [STATE(2196)] = { + [sym_identifier] = ACTIONS(7643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7645), + [anon_sym_COMMA] = ACTIONS(7645), + [anon_sym_RPAREN] = ACTIONS(7645), + [aux_sym_preproc_if_token2] = ACTIONS(7645), + [aux_sym_preproc_else_token1] = ACTIONS(7645), + [aux_sym_preproc_elif_token1] = ACTIONS(7643), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7645), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7645), + [anon_sym_LPAREN2] = ACTIONS(7645), + [anon_sym_DASH] = ACTIONS(7643), + [anon_sym_PLUS] = ACTIONS(7643), + [anon_sym_STAR] = ACTIONS(7643), + [anon_sym_SLASH] = ACTIONS(7643), + [anon_sym_PERCENT] = ACTIONS(7643), + [anon_sym_PIPE_PIPE] = ACTIONS(7645), + [anon_sym_AMP_AMP] = ACTIONS(7645), + [anon_sym_PIPE] = ACTIONS(7643), + [anon_sym_CARET] = ACTIONS(7643), + [anon_sym_AMP] = ACTIONS(7643), + [anon_sym_EQ_EQ] = ACTIONS(7645), + [anon_sym_BANG_EQ] = ACTIONS(7645), + [anon_sym_GT] = ACTIONS(7643), + [anon_sym_GT_EQ] = ACTIONS(7645), + [anon_sym_LT_EQ] = ACTIONS(7643), + [anon_sym_LT] = ACTIONS(7643), + [anon_sym_LT_LT] = ACTIONS(7643), + [anon_sym_GT_GT] = ACTIONS(7643), + [anon_sym_SEMI] = ACTIONS(7645), + [anon_sym___extension__] = ACTIONS(7643), + [anon_sym___attribute__] = ACTIONS(7643), + [anon_sym___attribute] = ACTIONS(7643), + [anon_sym_COLON] = ACTIONS(7643), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7645), + [anon_sym_LBRACE] = ACTIONS(7645), + [anon_sym_RBRACE] = ACTIONS(7645), + [anon_sym_LBRACK] = ACTIONS(7645), + [anon_sym_EQ] = ACTIONS(7643), + [anon_sym_const] = ACTIONS(7643), + [anon_sym_constexpr] = ACTIONS(7643), + [anon_sym_volatile] = ACTIONS(7643), + [anon_sym_restrict] = ACTIONS(7643), + [anon_sym___restrict__] = ACTIONS(7643), + [anon_sym__Atomic] = ACTIONS(7643), + [anon_sym__Noreturn] = ACTIONS(7643), + [anon_sym_noreturn] = ACTIONS(7643), + [anon_sym__Nonnull] = ACTIONS(7643), + [anon_sym_mutable] = ACTIONS(7643), + [anon_sym_constinit] = ACTIONS(7643), + [anon_sym_consteval] = ACTIONS(7643), + [anon_sym_alignas] = ACTIONS(7643), + [anon_sym__Alignas] = ACTIONS(7643), + [anon_sym_QMARK] = ACTIONS(7645), + [anon_sym_STAR_EQ] = ACTIONS(7645), + [anon_sym_SLASH_EQ] = ACTIONS(7645), + [anon_sym_PERCENT_EQ] = ACTIONS(7645), + [anon_sym_PLUS_EQ] = ACTIONS(7645), + [anon_sym_DASH_EQ] = ACTIONS(7645), + [anon_sym_LT_LT_EQ] = ACTIONS(7645), + [anon_sym_GT_GT_EQ] = ACTIONS(7645), + [anon_sym_AMP_EQ] = ACTIONS(7645), + [anon_sym_CARET_EQ] = ACTIONS(7645), + [anon_sym_PIPE_EQ] = ACTIONS(7645), + [anon_sym_and_eq] = ACTIONS(7643), + [anon_sym_or_eq] = ACTIONS(7643), + [anon_sym_xor_eq] = ACTIONS(7643), + [anon_sym_LT_EQ_GT] = ACTIONS(7645), + [anon_sym_or] = ACTIONS(7643), + [anon_sym_and] = ACTIONS(7643), + [anon_sym_bitor] = ACTIONS(7643), + [anon_sym_xor] = ACTIONS(7643), + [anon_sym_bitand] = ACTIONS(7643), + [anon_sym_not_eq] = ACTIONS(7643), + [anon_sym_DASH_DASH] = ACTIONS(7645), + [anon_sym_PLUS_PLUS] = ACTIONS(7645), + [anon_sym_DOT] = ACTIONS(7643), + [anon_sym_DOT_STAR] = ACTIONS(7645), + [anon_sym_DASH_GT] = ACTIONS(7645), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7643), + [anon_sym_override] = ACTIONS(7643), + [anon_sym_requires] = ACTIONS(7643), + [anon_sym_COLON_RBRACK] = ACTIONS(7645), + }, + [STATE(2197)] = { + [sym_identifier] = ACTIONS(7647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7649), + [anon_sym_COMMA] = ACTIONS(7649), + [anon_sym_RPAREN] = ACTIONS(7649), + [aux_sym_preproc_if_token2] = ACTIONS(7649), + [aux_sym_preproc_else_token1] = ACTIONS(7649), + [aux_sym_preproc_elif_token1] = ACTIONS(7647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7649), + [anon_sym_LPAREN2] = ACTIONS(7649), + [anon_sym_DASH] = ACTIONS(7647), + [anon_sym_PLUS] = ACTIONS(7647), + [anon_sym_STAR] = ACTIONS(7647), + [anon_sym_SLASH] = ACTIONS(7647), + [anon_sym_PERCENT] = ACTIONS(7647), + [anon_sym_PIPE_PIPE] = ACTIONS(7649), + [anon_sym_AMP_AMP] = ACTIONS(7649), + [anon_sym_PIPE] = ACTIONS(7647), + [anon_sym_CARET] = ACTIONS(7647), + [anon_sym_AMP] = ACTIONS(7647), + [anon_sym_EQ_EQ] = ACTIONS(7649), + [anon_sym_BANG_EQ] = ACTIONS(7649), + [anon_sym_GT] = ACTIONS(7647), + [anon_sym_GT_EQ] = ACTIONS(7649), + [anon_sym_LT_EQ] = ACTIONS(7647), + [anon_sym_LT] = ACTIONS(7647), + [anon_sym_LT_LT] = ACTIONS(7647), + [anon_sym_GT_GT] = ACTIONS(7647), + [anon_sym_SEMI] = ACTIONS(7649), + [anon_sym___extension__] = ACTIONS(7647), + [anon_sym___attribute__] = ACTIONS(7647), + [anon_sym___attribute] = ACTIONS(7647), + [anon_sym_COLON] = ACTIONS(7647), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7649), + [anon_sym_LBRACE] = ACTIONS(7649), + [anon_sym_RBRACE] = ACTIONS(7649), + [anon_sym_LBRACK] = ACTIONS(7649), + [anon_sym_EQ] = ACTIONS(7647), + [anon_sym_const] = ACTIONS(7647), + [anon_sym_constexpr] = ACTIONS(7647), + [anon_sym_volatile] = ACTIONS(7647), + [anon_sym_restrict] = ACTIONS(7647), + [anon_sym___restrict__] = ACTIONS(7647), + [anon_sym__Atomic] = ACTIONS(7647), + [anon_sym__Noreturn] = ACTIONS(7647), + [anon_sym_noreturn] = ACTIONS(7647), + [anon_sym__Nonnull] = ACTIONS(7647), + [anon_sym_mutable] = ACTIONS(7647), + [anon_sym_constinit] = ACTIONS(7647), + [anon_sym_consteval] = ACTIONS(7647), + [anon_sym_alignas] = ACTIONS(7647), + [anon_sym__Alignas] = ACTIONS(7647), + [anon_sym_QMARK] = ACTIONS(7649), + [anon_sym_STAR_EQ] = ACTIONS(7649), + [anon_sym_SLASH_EQ] = ACTIONS(7649), + [anon_sym_PERCENT_EQ] = ACTIONS(7649), + [anon_sym_PLUS_EQ] = ACTIONS(7649), + [anon_sym_DASH_EQ] = ACTIONS(7649), + [anon_sym_LT_LT_EQ] = ACTIONS(7649), + [anon_sym_GT_GT_EQ] = ACTIONS(7649), + [anon_sym_AMP_EQ] = ACTIONS(7649), + [anon_sym_CARET_EQ] = ACTIONS(7649), + [anon_sym_PIPE_EQ] = ACTIONS(7649), + [anon_sym_and_eq] = ACTIONS(7647), + [anon_sym_or_eq] = ACTIONS(7647), + [anon_sym_xor_eq] = ACTIONS(7647), + [anon_sym_LT_EQ_GT] = ACTIONS(7649), + [anon_sym_or] = ACTIONS(7647), + [anon_sym_and] = ACTIONS(7647), + [anon_sym_bitor] = ACTIONS(7647), + [anon_sym_xor] = ACTIONS(7647), + [anon_sym_bitand] = ACTIONS(7647), + [anon_sym_not_eq] = ACTIONS(7647), + [anon_sym_DASH_DASH] = ACTIONS(7649), + [anon_sym_PLUS_PLUS] = ACTIONS(7649), + [anon_sym_DOT] = ACTIONS(7647), + [anon_sym_DOT_STAR] = ACTIONS(7649), + [anon_sym_DASH_GT] = ACTIONS(7649), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7647), + [anon_sym_override] = ACTIONS(7647), + [anon_sym_requires] = ACTIONS(7647), + [anon_sym_COLON_RBRACK] = ACTIONS(7649), + }, + [STATE(2198)] = { + [sym_identifier] = ACTIONS(7651), [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), [anon_sym_COMMA] = ACTIONS(7653), [anon_sym_RPAREN] = ACTIONS(7653), + [aux_sym_preproc_if_token2] = ACTIONS(7653), + [aux_sym_preproc_else_token1] = ACTIONS(7653), + [aux_sym_preproc_elif_token1] = ACTIONS(7651), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7653), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7653), [anon_sym_LPAREN2] = ACTIONS(7653), [anon_sym_DASH] = ACTIONS(7651), [anon_sym_PLUS] = ACTIONS(7651), @@ -323557,29 +331166,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(7651), [anon_sym_GT_GT] = ACTIONS(7651), [anon_sym_SEMI] = ACTIONS(7653), - [anon_sym___extension__] = ACTIONS(7653), - [anon_sym___attribute__] = ACTIONS(7714), - [anon_sym___attribute] = ACTIONS(6830), - [anon_sym_COLON] = ACTIONS(7716), + [anon_sym___extension__] = ACTIONS(7651), + [anon_sym___attribute__] = ACTIONS(7651), + [anon_sym___attribute] = ACTIONS(7651), + [anon_sym_COLON] = ACTIONS(7651), [anon_sym_RBRACK_RBRACK] = ACTIONS(7653), - [anon_sym_LBRACE] = ACTIONS(6989), + [anon_sym_LBRACE] = ACTIONS(7653), [anon_sym_RBRACE] = ACTIONS(7653), [anon_sym_LBRACK] = ACTIONS(7653), [anon_sym_EQ] = ACTIONS(7651), [anon_sym_const] = ACTIONS(7651), - [anon_sym_constexpr] = ACTIONS(7653), - [anon_sym_volatile] = ACTIONS(7653), - [anon_sym_restrict] = ACTIONS(7653), - [anon_sym___restrict__] = ACTIONS(7653), - [anon_sym__Atomic] = ACTIONS(7653), - [anon_sym__Noreturn] = ACTIONS(7653), - [anon_sym_noreturn] = ACTIONS(7653), - [anon_sym__Nonnull] = ACTIONS(7653), - [anon_sym_mutable] = ACTIONS(7653), - [anon_sym_constinit] = ACTIONS(7653), - [anon_sym_consteval] = ACTIONS(7653), - [anon_sym_alignas] = ACTIONS(7653), - [anon_sym__Alignas] = ACTIONS(7653), + [anon_sym_constexpr] = ACTIONS(7651), + [anon_sym_volatile] = ACTIONS(7651), + [anon_sym_restrict] = ACTIONS(7651), + [anon_sym___restrict__] = ACTIONS(7651), + [anon_sym__Atomic] = ACTIONS(7651), + [anon_sym__Noreturn] = ACTIONS(7651), + [anon_sym_noreturn] = ACTIONS(7651), + [anon_sym__Nonnull] = ACTIONS(7651), + [anon_sym_mutable] = ACTIONS(7651), + [anon_sym_constinit] = ACTIONS(7651), + [anon_sym_consteval] = ACTIONS(7651), + [anon_sym_alignas] = ACTIONS(7651), + [anon_sym__Alignas] = ACTIONS(7651), [anon_sym_QMARK] = ACTIONS(7653), [anon_sym_STAR_EQ] = ACTIONS(7653), [anon_sym_SLASH_EQ] = ACTIONS(7653), @@ -323591,1051 +331200,2446 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(7653), [anon_sym_CARET_EQ] = ACTIONS(7653), [anon_sym_PIPE_EQ] = ACTIONS(7653), - [anon_sym_and_eq] = ACTIONS(7653), - [anon_sym_or_eq] = ACTIONS(7653), - [anon_sym_xor_eq] = ACTIONS(7653), + [anon_sym_and_eq] = ACTIONS(7651), + [anon_sym_or_eq] = ACTIONS(7651), + [anon_sym_xor_eq] = ACTIONS(7651), [anon_sym_LT_EQ_GT] = ACTIONS(7653), [anon_sym_or] = ACTIONS(7651), [anon_sym_and] = ACTIONS(7651), - [anon_sym_bitor] = ACTIONS(7653), + [anon_sym_bitor] = ACTIONS(7651), [anon_sym_xor] = ACTIONS(7651), - [anon_sym_bitand] = ACTIONS(7653), - [anon_sym_not_eq] = ACTIONS(7653), + [anon_sym_bitand] = ACTIONS(7651), + [anon_sym_not_eq] = ACTIONS(7651), [anon_sym_DASH_DASH] = ACTIONS(7653), [anon_sym_PLUS_PLUS] = ACTIONS(7653), [anon_sym_DOT] = ACTIONS(7651), [anon_sym_DOT_STAR] = ACTIONS(7653), [anon_sym_DASH_GT] = ACTIONS(7653), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7653), - [anon_sym_override] = ACTIONS(7653), - [anon_sym_requires] = ACTIONS(7653), + [anon_sym_final] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7651), + [anon_sym_requires] = ACTIONS(7651), [anon_sym_COLON_RBRACK] = ACTIONS(7653), }, - [STATE(2256)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6272), - [anon_sym_COMMA] = ACTIONS(6272), - [anon_sym_RPAREN] = ACTIONS(6272), - [anon_sym_LPAREN2] = ACTIONS(6272), - [anon_sym_DASH] = ACTIONS(6270), - [anon_sym_PLUS] = ACTIONS(6270), - [anon_sym_STAR] = ACTIONS(6270), - [anon_sym_SLASH] = ACTIONS(6270), - [anon_sym_PERCENT] = ACTIONS(6270), - [anon_sym_PIPE_PIPE] = ACTIONS(6272), - [anon_sym_AMP_AMP] = ACTIONS(6272), - [anon_sym_PIPE] = ACTIONS(6270), - [anon_sym_CARET] = ACTIONS(6270), - [anon_sym_AMP] = ACTIONS(6270), - [anon_sym_EQ_EQ] = ACTIONS(6272), - [anon_sym_BANG_EQ] = ACTIONS(6272), - [anon_sym_GT] = ACTIONS(6270), - [anon_sym_GT_EQ] = ACTIONS(6272), - [anon_sym_LT_EQ] = ACTIONS(6270), - [anon_sym_LT] = ACTIONS(6270), - [anon_sym_LT_LT] = ACTIONS(6270), - [anon_sym_GT_GT] = ACTIONS(6270), - [anon_sym_SEMI] = ACTIONS(6272), - [anon_sym___extension__] = ACTIONS(6272), - [anon_sym___attribute__] = ACTIONS(6272), - [anon_sym___attribute] = ACTIONS(6270), - [anon_sym_COLON] = ACTIONS(6270), - [anon_sym_COLON_COLON] = ACTIONS(6272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6272), - [anon_sym_LBRACE] = ACTIONS(6272), - [anon_sym_LBRACK] = ACTIONS(6270), - [anon_sym_EQ] = ACTIONS(6270), - [anon_sym_const] = ACTIONS(6270), - [anon_sym_constexpr] = ACTIONS(6272), - [anon_sym_volatile] = ACTIONS(6272), - [anon_sym_restrict] = ACTIONS(6272), - [anon_sym___restrict__] = ACTIONS(6272), - [anon_sym__Atomic] = ACTIONS(6272), - [anon_sym__Noreturn] = ACTIONS(6272), - [anon_sym_noreturn] = ACTIONS(6272), - [anon_sym__Nonnull] = ACTIONS(6272), - [anon_sym_mutable] = ACTIONS(6272), - [anon_sym_constinit] = ACTIONS(6272), - [anon_sym_consteval] = ACTIONS(6272), - [anon_sym_alignas] = ACTIONS(6272), - [anon_sym__Alignas] = ACTIONS(6272), - [anon_sym_QMARK] = ACTIONS(6272), - [anon_sym_STAR_EQ] = ACTIONS(6272), - [anon_sym_SLASH_EQ] = ACTIONS(6272), - [anon_sym_PERCENT_EQ] = ACTIONS(6272), - [anon_sym_PLUS_EQ] = ACTIONS(6272), - [anon_sym_DASH_EQ] = ACTIONS(6272), - [anon_sym_LT_LT_EQ] = ACTIONS(6272), - [anon_sym_GT_GT_EQ] = ACTIONS(6272), - [anon_sym_AMP_EQ] = ACTIONS(6272), - [anon_sym_CARET_EQ] = ACTIONS(6272), - [anon_sym_PIPE_EQ] = ACTIONS(6272), - [anon_sym_and_eq] = ACTIONS(6272), - [anon_sym_or_eq] = ACTIONS(6272), - [anon_sym_xor_eq] = ACTIONS(6272), - [anon_sym_LT_EQ_GT] = ACTIONS(6272), - [anon_sym_or] = ACTIONS(6270), - [anon_sym_and] = ACTIONS(6270), - [anon_sym_bitor] = ACTIONS(6272), - [anon_sym_xor] = ACTIONS(6270), - [anon_sym_bitand] = ACTIONS(6272), - [anon_sym_not_eq] = ACTIONS(6272), - [anon_sym_DASH_DASH] = ACTIONS(6272), - [anon_sym_PLUS_PLUS] = ACTIONS(6272), - [anon_sym_asm] = ACTIONS(6272), - [anon_sym___asm__] = ACTIONS(6272), - [anon_sym___asm] = ACTIONS(6270), - [anon_sym_DOT] = ACTIONS(6270), - [anon_sym_DOT_STAR] = ACTIONS(6272), - [anon_sym_DASH_GT] = ACTIONS(6270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6272), - [anon_sym_decltype] = ACTIONS(6272), - [anon_sym_try] = ACTIONS(6272), - [anon_sym_DASH_GT_STAR] = ACTIONS(6272), + [STATE(2199)] = { + [sym_identifier] = ACTIONS(7655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7657), + [anon_sym_COMMA] = ACTIONS(7657), + [anon_sym_RPAREN] = ACTIONS(7657), + [aux_sym_preproc_if_token2] = ACTIONS(7657), + [aux_sym_preproc_else_token1] = ACTIONS(7657), + [aux_sym_preproc_elif_token1] = ACTIONS(7655), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7657), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7657), + [anon_sym_LPAREN2] = ACTIONS(7657), + [anon_sym_DASH] = ACTIONS(7655), + [anon_sym_PLUS] = ACTIONS(7655), + [anon_sym_STAR] = ACTIONS(7655), + [anon_sym_SLASH] = ACTIONS(7655), + [anon_sym_PERCENT] = ACTIONS(7655), + [anon_sym_PIPE_PIPE] = ACTIONS(7657), + [anon_sym_AMP_AMP] = ACTIONS(7657), + [anon_sym_PIPE] = ACTIONS(7655), + [anon_sym_CARET] = ACTIONS(7655), + [anon_sym_AMP] = ACTIONS(7655), + [anon_sym_EQ_EQ] = ACTIONS(7657), + [anon_sym_BANG_EQ] = ACTIONS(7657), + [anon_sym_GT] = ACTIONS(7655), + [anon_sym_GT_EQ] = ACTIONS(7657), + [anon_sym_LT_EQ] = ACTIONS(7655), + [anon_sym_LT] = ACTIONS(7655), + [anon_sym_LT_LT] = ACTIONS(7655), + [anon_sym_GT_GT] = ACTIONS(7655), + [anon_sym_SEMI] = ACTIONS(7657), + [anon_sym___extension__] = ACTIONS(7655), + [anon_sym___attribute__] = ACTIONS(7655), + [anon_sym___attribute] = ACTIONS(7655), + [anon_sym_COLON] = ACTIONS(7655), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7657), + [anon_sym_LBRACE] = ACTIONS(7657), + [anon_sym_RBRACE] = ACTIONS(7657), + [anon_sym_LBRACK] = ACTIONS(7657), + [anon_sym_EQ] = ACTIONS(7655), + [anon_sym_const] = ACTIONS(7655), + [anon_sym_constexpr] = ACTIONS(7655), + [anon_sym_volatile] = ACTIONS(7655), + [anon_sym_restrict] = ACTIONS(7655), + [anon_sym___restrict__] = ACTIONS(7655), + [anon_sym__Atomic] = ACTIONS(7655), + [anon_sym__Noreturn] = ACTIONS(7655), + [anon_sym_noreturn] = ACTIONS(7655), + [anon_sym__Nonnull] = ACTIONS(7655), + [anon_sym_mutable] = ACTIONS(7655), + [anon_sym_constinit] = ACTIONS(7655), + [anon_sym_consteval] = ACTIONS(7655), + [anon_sym_alignas] = ACTIONS(7655), + [anon_sym__Alignas] = ACTIONS(7655), + [anon_sym_QMARK] = ACTIONS(7657), + [anon_sym_STAR_EQ] = ACTIONS(7657), + [anon_sym_SLASH_EQ] = ACTIONS(7657), + [anon_sym_PERCENT_EQ] = ACTIONS(7657), + [anon_sym_PLUS_EQ] = ACTIONS(7657), + [anon_sym_DASH_EQ] = ACTIONS(7657), + [anon_sym_LT_LT_EQ] = ACTIONS(7657), + [anon_sym_GT_GT_EQ] = ACTIONS(7657), + [anon_sym_AMP_EQ] = ACTIONS(7657), + [anon_sym_CARET_EQ] = ACTIONS(7657), + [anon_sym_PIPE_EQ] = ACTIONS(7657), + [anon_sym_and_eq] = ACTIONS(7655), + [anon_sym_or_eq] = ACTIONS(7655), + [anon_sym_xor_eq] = ACTIONS(7655), + [anon_sym_LT_EQ_GT] = ACTIONS(7657), + [anon_sym_or] = ACTIONS(7655), + [anon_sym_and] = ACTIONS(7655), + [anon_sym_bitor] = ACTIONS(7655), + [anon_sym_xor] = ACTIONS(7655), + [anon_sym_bitand] = ACTIONS(7655), + [anon_sym_not_eq] = ACTIONS(7655), + [anon_sym_DASH_DASH] = ACTIONS(7657), + [anon_sym_PLUS_PLUS] = ACTIONS(7657), + [anon_sym_DOT] = ACTIONS(7655), + [anon_sym_DOT_STAR] = ACTIONS(7657), + [anon_sym_DASH_GT] = ACTIONS(7657), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7655), + [anon_sym_override] = ACTIONS(7655), + [anon_sym_requires] = ACTIONS(7655), + [anon_sym_COLON_RBRACK] = ACTIONS(7657), }, - [STATE(2257)] = { - [sym_template_argument_list] = STATE(3601), - [aux_sym_sized_type_specifier_repeat1] = STATE(2305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7019), - [anon_sym_COMMA] = ACTIONS(7019), - [anon_sym_RPAREN] = ACTIONS(7019), - [anon_sym_LPAREN2] = ACTIONS(7019), - [anon_sym_DASH] = ACTIONS(7017), - [anon_sym_PLUS] = ACTIONS(7017), - [anon_sym_STAR] = ACTIONS(7017), - [anon_sym_SLASH] = ACTIONS(7017), - [anon_sym_PERCENT] = ACTIONS(7017), - [anon_sym_PIPE_PIPE] = ACTIONS(7019), - [anon_sym_AMP_AMP] = ACTIONS(7019), - [anon_sym_PIPE] = ACTIONS(7017), - [anon_sym_CARET] = ACTIONS(7017), - [anon_sym_AMP] = ACTIONS(7017), - [anon_sym_EQ_EQ] = ACTIONS(7019), - [anon_sym_BANG_EQ] = ACTIONS(7019), - [anon_sym_GT] = ACTIONS(7017), - [anon_sym_GT_EQ] = ACTIONS(7019), - [anon_sym_LT_EQ] = ACTIONS(7017), - [anon_sym_LT] = ACTIONS(7017), - [anon_sym_LT_LT] = ACTIONS(7017), - [anon_sym_GT_GT] = ACTIONS(7017), - [anon_sym___extension__] = ACTIONS(7019), - [anon_sym___attribute__] = ACTIONS(7019), - [anon_sym___attribute] = ACTIONS(7017), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(7019), - [anon_sym_signed] = ACTIONS(6570), - [anon_sym_unsigned] = ACTIONS(6570), - [anon_sym_long] = ACTIONS(6570), - [anon_sym_short] = ACTIONS(6570), - [anon_sym_LBRACK] = ACTIONS(7019), - [anon_sym_EQ] = ACTIONS(7017), - [anon_sym_const] = ACTIONS(7017), - [anon_sym_constexpr] = ACTIONS(7019), - [anon_sym_volatile] = ACTIONS(7019), - [anon_sym_restrict] = ACTIONS(7019), - [anon_sym___restrict__] = ACTIONS(7019), - [anon_sym__Atomic] = ACTIONS(7019), - [anon_sym__Noreturn] = ACTIONS(7019), - [anon_sym_noreturn] = ACTIONS(7019), - [anon_sym__Nonnull] = ACTIONS(7019), - [anon_sym_mutable] = ACTIONS(7019), - [anon_sym_constinit] = ACTIONS(7019), - [anon_sym_consteval] = ACTIONS(7019), - [anon_sym_alignas] = ACTIONS(7019), - [anon_sym__Alignas] = ACTIONS(7019), - [anon_sym_QMARK] = ACTIONS(7019), - [anon_sym_STAR_EQ] = ACTIONS(7019), - [anon_sym_SLASH_EQ] = ACTIONS(7019), - [anon_sym_PERCENT_EQ] = ACTIONS(7019), - [anon_sym_PLUS_EQ] = ACTIONS(7019), - [anon_sym_DASH_EQ] = ACTIONS(7019), - [anon_sym_LT_LT_EQ] = ACTIONS(7019), - [anon_sym_GT_GT_EQ] = ACTIONS(7019), - [anon_sym_AMP_EQ] = ACTIONS(7019), - [anon_sym_CARET_EQ] = ACTIONS(7019), - [anon_sym_PIPE_EQ] = ACTIONS(7019), - [anon_sym_and_eq] = ACTIONS(7019), - [anon_sym_or_eq] = ACTIONS(7019), - [anon_sym_xor_eq] = ACTIONS(7019), - [anon_sym_LT_EQ_GT] = ACTIONS(7019), - [anon_sym_or] = ACTIONS(7017), - [anon_sym_and] = ACTIONS(7017), - [anon_sym_bitor] = ACTIONS(7019), - [anon_sym_xor] = ACTIONS(7017), - [anon_sym_bitand] = ACTIONS(7019), - [anon_sym_not_eq] = ACTIONS(7019), - [anon_sym_DASH_DASH] = ACTIONS(7019), - [anon_sym_PLUS_PLUS] = ACTIONS(7019), - [anon_sym_DOT] = ACTIONS(7017), - [anon_sym_DOT_STAR] = ACTIONS(7019), - [anon_sym_DASH_GT] = ACTIONS(7017), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7019), - [anon_sym_override] = ACTIONS(7019), - [anon_sym_requires] = ACTIONS(7019), - [anon_sym_DASH_GT_STAR] = ACTIONS(7019), + [STATE(2200)] = { + [sym_identifier] = ACTIONS(7659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7661), + [anon_sym_COMMA] = ACTIONS(7661), + [anon_sym_RPAREN] = ACTIONS(7661), + [aux_sym_preproc_if_token2] = ACTIONS(7661), + [aux_sym_preproc_else_token1] = ACTIONS(7661), + [aux_sym_preproc_elif_token1] = ACTIONS(7659), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7661), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7661), + [anon_sym_LPAREN2] = ACTIONS(7661), + [anon_sym_DASH] = ACTIONS(7659), + [anon_sym_PLUS] = ACTIONS(7659), + [anon_sym_STAR] = ACTIONS(7659), + [anon_sym_SLASH] = ACTIONS(7659), + [anon_sym_PERCENT] = ACTIONS(7659), + [anon_sym_PIPE_PIPE] = ACTIONS(7661), + [anon_sym_AMP_AMP] = ACTIONS(7661), + [anon_sym_PIPE] = ACTIONS(7659), + [anon_sym_CARET] = ACTIONS(7659), + [anon_sym_AMP] = ACTIONS(7659), + [anon_sym_EQ_EQ] = ACTIONS(7661), + [anon_sym_BANG_EQ] = ACTIONS(7661), + [anon_sym_GT] = ACTIONS(7659), + [anon_sym_GT_EQ] = ACTIONS(7661), + [anon_sym_LT_EQ] = ACTIONS(7659), + [anon_sym_LT] = ACTIONS(7659), + [anon_sym_LT_LT] = ACTIONS(7659), + [anon_sym_GT_GT] = ACTIONS(7659), + [anon_sym_SEMI] = ACTIONS(7661), + [anon_sym___extension__] = ACTIONS(7659), + [anon_sym___attribute__] = ACTIONS(7659), + [anon_sym___attribute] = ACTIONS(7659), + [anon_sym_COLON] = ACTIONS(7659), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7661), + [anon_sym_LBRACE] = ACTIONS(7661), + [anon_sym_RBRACE] = ACTIONS(7661), + [anon_sym_LBRACK] = ACTIONS(7661), + [anon_sym_EQ] = ACTIONS(7659), + [anon_sym_const] = ACTIONS(7659), + [anon_sym_constexpr] = ACTIONS(7659), + [anon_sym_volatile] = ACTIONS(7659), + [anon_sym_restrict] = ACTIONS(7659), + [anon_sym___restrict__] = ACTIONS(7659), + [anon_sym__Atomic] = ACTIONS(7659), + [anon_sym__Noreturn] = ACTIONS(7659), + [anon_sym_noreturn] = ACTIONS(7659), + [anon_sym__Nonnull] = ACTIONS(7659), + [anon_sym_mutable] = ACTIONS(7659), + [anon_sym_constinit] = ACTIONS(7659), + [anon_sym_consteval] = ACTIONS(7659), + [anon_sym_alignas] = ACTIONS(7659), + [anon_sym__Alignas] = ACTIONS(7659), + [anon_sym_QMARK] = ACTIONS(7661), + [anon_sym_STAR_EQ] = ACTIONS(7661), + [anon_sym_SLASH_EQ] = ACTIONS(7661), + [anon_sym_PERCENT_EQ] = ACTIONS(7661), + [anon_sym_PLUS_EQ] = ACTIONS(7661), + [anon_sym_DASH_EQ] = ACTIONS(7661), + [anon_sym_LT_LT_EQ] = ACTIONS(7661), + [anon_sym_GT_GT_EQ] = ACTIONS(7661), + [anon_sym_AMP_EQ] = ACTIONS(7661), + [anon_sym_CARET_EQ] = ACTIONS(7661), + [anon_sym_PIPE_EQ] = ACTIONS(7661), + [anon_sym_and_eq] = ACTIONS(7659), + [anon_sym_or_eq] = ACTIONS(7659), + [anon_sym_xor_eq] = ACTIONS(7659), + [anon_sym_LT_EQ_GT] = ACTIONS(7661), + [anon_sym_or] = ACTIONS(7659), + [anon_sym_and] = ACTIONS(7659), + [anon_sym_bitor] = ACTIONS(7659), + [anon_sym_xor] = ACTIONS(7659), + [anon_sym_bitand] = ACTIONS(7659), + [anon_sym_not_eq] = ACTIONS(7659), + [anon_sym_DASH_DASH] = ACTIONS(7661), + [anon_sym_PLUS_PLUS] = ACTIONS(7661), + [anon_sym_DOT] = ACTIONS(7659), + [anon_sym_DOT_STAR] = ACTIONS(7661), + [anon_sym_DASH_GT] = ACTIONS(7661), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7659), + [anon_sym_override] = ACTIONS(7659), + [anon_sym_requires] = ACTIONS(7659), + [anon_sym_COLON_RBRACK] = ACTIONS(7661), }, - [STATE(2258)] = { - [sym_decltype_auto] = STATE(3055), - [sym_template_argument_list] = STATE(2487), - [aux_sym_sized_type_specifier_repeat1] = STATE(2412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5258), - [anon_sym_COMMA] = ACTIONS(5258), - [anon_sym_LPAREN2] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5251), - [anon_sym_PLUS] = ACTIONS(5251), - [anon_sym_STAR] = ACTIONS(5251), - [anon_sym_SLASH] = ACTIONS(5251), - [anon_sym_PERCENT] = ACTIONS(5251), - [anon_sym_PIPE_PIPE] = ACTIONS(5258), - [anon_sym_AMP_AMP] = ACTIONS(5258), - [anon_sym_PIPE] = ACTIONS(5251), - [anon_sym_CARET] = ACTIONS(5251), - [anon_sym_AMP] = ACTIONS(5251), - [anon_sym_EQ_EQ] = ACTIONS(5258), - [anon_sym_BANG_EQ] = ACTIONS(5258), - [anon_sym_GT] = ACTIONS(5251), - [anon_sym_GT_EQ] = ACTIONS(5251), - [anon_sym_LT_EQ] = ACTIONS(5251), - [anon_sym_LT] = ACTIONS(7718), - [anon_sym_LT_LT] = ACTIONS(5251), - [anon_sym_GT_GT] = ACTIONS(5251), - [anon_sym___extension__] = ACTIONS(5258), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5258), - [anon_sym_signed] = ACTIONS(6638), - [anon_sym_unsigned] = ACTIONS(6638), - [anon_sym_long] = ACTIONS(6638), - [anon_sym_short] = ACTIONS(6638), - [anon_sym_LBRACK] = ACTIONS(5258), - [anon_sym_EQ] = ACTIONS(5251), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5258), - [anon_sym_volatile] = ACTIONS(5258), - [anon_sym_restrict] = ACTIONS(5258), - [anon_sym___restrict__] = ACTIONS(5258), - [anon_sym__Atomic] = ACTIONS(5258), - [anon_sym__Noreturn] = ACTIONS(5258), - [anon_sym_noreturn] = ACTIONS(5258), - [anon_sym__Nonnull] = ACTIONS(5258), - [anon_sym_mutable] = ACTIONS(5258), - [anon_sym_constinit] = ACTIONS(5258), - [anon_sym_consteval] = ACTIONS(5258), - [anon_sym_alignas] = ACTIONS(5258), - [anon_sym__Alignas] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5258), - [anon_sym_STAR_EQ] = ACTIONS(5258), - [anon_sym_SLASH_EQ] = ACTIONS(5258), - [anon_sym_PERCENT_EQ] = ACTIONS(5258), - [anon_sym_PLUS_EQ] = ACTIONS(5258), - [anon_sym_DASH_EQ] = ACTIONS(5258), - [anon_sym_LT_LT_EQ] = ACTIONS(5258), - [anon_sym_GT_GT_EQ] = ACTIONS(5251), - [anon_sym_AMP_EQ] = ACTIONS(5258), - [anon_sym_CARET_EQ] = ACTIONS(5258), - [anon_sym_PIPE_EQ] = ACTIONS(5258), - [anon_sym_and_eq] = ACTIONS(5258), - [anon_sym_or_eq] = ACTIONS(5258), - [anon_sym_xor_eq] = ACTIONS(5258), - [anon_sym_LT_EQ_GT] = ACTIONS(5258), - [anon_sym_or] = ACTIONS(5251), - [anon_sym_and] = ACTIONS(5251), - [anon_sym_bitor] = ACTIONS(5258), - [anon_sym_xor] = ACTIONS(5251), - [anon_sym_bitand] = ACTIONS(5258), - [anon_sym_not_eq] = ACTIONS(5258), - [anon_sym_DASH_DASH] = ACTIONS(5258), - [anon_sym_PLUS_PLUS] = ACTIONS(5258), - [anon_sym_DOT] = ACTIONS(5251), - [anon_sym_DOT_STAR] = ACTIONS(5258), - [anon_sym_DASH_GT] = ACTIONS(5258), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6642), - [anon_sym_decltype] = ACTIONS(6644), - [anon_sym_final] = ACTIONS(5258), - [anon_sym_override] = ACTIONS(5258), - [anon_sym_GT2] = ACTIONS(5258), - [anon_sym_requires] = ACTIONS(5258), + [STATE(2201)] = { + [sym_identifier] = ACTIONS(7663), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7665), + [anon_sym_COMMA] = ACTIONS(7665), + [anon_sym_RPAREN] = ACTIONS(7665), + [aux_sym_preproc_if_token2] = ACTIONS(7665), + [aux_sym_preproc_else_token1] = ACTIONS(7665), + [aux_sym_preproc_elif_token1] = ACTIONS(7663), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7665), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7665), + [anon_sym_LPAREN2] = ACTIONS(7665), + [anon_sym_DASH] = ACTIONS(7663), + [anon_sym_PLUS] = ACTIONS(7663), + [anon_sym_STAR] = ACTIONS(7663), + [anon_sym_SLASH] = ACTIONS(7663), + [anon_sym_PERCENT] = ACTIONS(7663), + [anon_sym_PIPE_PIPE] = ACTIONS(7665), + [anon_sym_AMP_AMP] = ACTIONS(7665), + [anon_sym_PIPE] = ACTIONS(7663), + [anon_sym_CARET] = ACTIONS(7663), + [anon_sym_AMP] = ACTIONS(7663), + [anon_sym_EQ_EQ] = ACTIONS(7665), + [anon_sym_BANG_EQ] = ACTIONS(7665), + [anon_sym_GT] = ACTIONS(7663), + [anon_sym_GT_EQ] = ACTIONS(7665), + [anon_sym_LT_EQ] = ACTIONS(7663), + [anon_sym_LT] = ACTIONS(7663), + [anon_sym_LT_LT] = ACTIONS(7663), + [anon_sym_GT_GT] = ACTIONS(7663), + [anon_sym_SEMI] = ACTIONS(7665), + [anon_sym___extension__] = ACTIONS(7663), + [anon_sym___attribute__] = ACTIONS(7663), + [anon_sym___attribute] = ACTIONS(7663), + [anon_sym_COLON] = ACTIONS(7663), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7665), + [anon_sym_LBRACE] = ACTIONS(7665), + [anon_sym_RBRACE] = ACTIONS(7665), + [anon_sym_LBRACK] = ACTIONS(7665), + [anon_sym_EQ] = ACTIONS(7663), + [anon_sym_const] = ACTIONS(7663), + [anon_sym_constexpr] = ACTIONS(7663), + [anon_sym_volatile] = ACTIONS(7663), + [anon_sym_restrict] = ACTIONS(7663), + [anon_sym___restrict__] = ACTIONS(7663), + [anon_sym__Atomic] = ACTIONS(7663), + [anon_sym__Noreturn] = ACTIONS(7663), + [anon_sym_noreturn] = ACTIONS(7663), + [anon_sym__Nonnull] = ACTIONS(7663), + [anon_sym_mutable] = ACTIONS(7663), + [anon_sym_constinit] = ACTIONS(7663), + [anon_sym_consteval] = ACTIONS(7663), + [anon_sym_alignas] = ACTIONS(7663), + [anon_sym__Alignas] = ACTIONS(7663), + [anon_sym_QMARK] = ACTIONS(7665), + [anon_sym_STAR_EQ] = ACTIONS(7665), + [anon_sym_SLASH_EQ] = ACTIONS(7665), + [anon_sym_PERCENT_EQ] = ACTIONS(7665), + [anon_sym_PLUS_EQ] = ACTIONS(7665), + [anon_sym_DASH_EQ] = ACTIONS(7665), + [anon_sym_LT_LT_EQ] = ACTIONS(7665), + [anon_sym_GT_GT_EQ] = ACTIONS(7665), + [anon_sym_AMP_EQ] = ACTIONS(7665), + [anon_sym_CARET_EQ] = ACTIONS(7665), + [anon_sym_PIPE_EQ] = ACTIONS(7665), + [anon_sym_and_eq] = ACTIONS(7663), + [anon_sym_or_eq] = ACTIONS(7663), + [anon_sym_xor_eq] = ACTIONS(7663), + [anon_sym_LT_EQ_GT] = ACTIONS(7665), + [anon_sym_or] = ACTIONS(7663), + [anon_sym_and] = ACTIONS(7663), + [anon_sym_bitor] = ACTIONS(7663), + [anon_sym_xor] = ACTIONS(7663), + [anon_sym_bitand] = ACTIONS(7663), + [anon_sym_not_eq] = ACTIONS(7663), + [anon_sym_DASH_DASH] = ACTIONS(7665), + [anon_sym_PLUS_PLUS] = ACTIONS(7665), + [anon_sym_DOT] = ACTIONS(7663), + [anon_sym_DOT_STAR] = ACTIONS(7665), + [anon_sym_DASH_GT] = ACTIONS(7665), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7663), + [anon_sym_override] = ACTIONS(7663), + [anon_sym_requires] = ACTIONS(7663), + [anon_sym_COLON_RBRACK] = ACTIONS(7665), }, - [STATE(2259)] = { - [sym_type_qualifier] = STATE(2186), - [sym_alignas_qualifier] = STATE(2295), - [aux_sym__type_definition_type_repeat1] = STATE(2186), - [aux_sym_sized_type_specifier_repeat1] = STATE(2348), - [sym_identifier] = ACTIONS(7462), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), - [anon_sym_COMMA] = ACTIONS(6884), - [anon_sym_LPAREN2] = ACTIONS(6884), - [anon_sym_DASH] = ACTIONS(6886), - [anon_sym_PLUS] = ACTIONS(6886), - [anon_sym_STAR] = ACTIONS(6886), - [anon_sym_SLASH] = ACTIONS(6886), - [anon_sym_PERCENT] = ACTIONS(6886), - [anon_sym_PIPE_PIPE] = ACTIONS(6884), - [anon_sym_AMP_AMP] = ACTIONS(6884), - [anon_sym_PIPE] = ACTIONS(6886), - [anon_sym_CARET] = ACTIONS(6886), - [anon_sym_AMP] = ACTIONS(6886), - [anon_sym_EQ_EQ] = ACTIONS(6884), - [anon_sym_BANG_EQ] = ACTIONS(6884), - [anon_sym_GT] = ACTIONS(6886), - [anon_sym_GT_EQ] = ACTIONS(6886), - [anon_sym_LT_EQ] = ACTIONS(6886), - [anon_sym_LT] = ACTIONS(6886), - [anon_sym_LT_LT] = ACTIONS(6886), - [anon_sym_GT_GT] = ACTIONS(6886), - [anon_sym___extension__] = ACTIONS(6742), - [anon_sym___attribute__] = ACTIONS(6886), - [anon_sym___attribute] = ACTIONS(6886), - [anon_sym_LBRACE] = ACTIONS(6884), - [anon_sym_signed] = ACTIONS(7467), - [anon_sym_unsigned] = ACTIONS(7467), - [anon_sym_long] = ACTIONS(7467), - [anon_sym_short] = ACTIONS(7467), - [anon_sym_LBRACK] = ACTIONS(6884), - [anon_sym_EQ] = ACTIONS(6886), - [anon_sym_const] = ACTIONS(6742), - [anon_sym_constexpr] = ACTIONS(6742), - [anon_sym_volatile] = ACTIONS(6742), - [anon_sym_restrict] = ACTIONS(6742), - [anon_sym___restrict__] = ACTIONS(6742), - [anon_sym__Atomic] = ACTIONS(6742), - [anon_sym__Noreturn] = ACTIONS(6742), - [anon_sym_noreturn] = ACTIONS(6742), - [anon_sym__Nonnull] = ACTIONS(6742), - [anon_sym_mutable] = ACTIONS(6742), - [anon_sym_constinit] = ACTIONS(6742), - [anon_sym_consteval] = ACTIONS(6742), - [anon_sym_alignas] = ACTIONS(7720), - [anon_sym__Alignas] = ACTIONS(7720), - [sym_primitive_type] = ACTIONS(7472), - [anon_sym_QMARK] = ACTIONS(6884), - [anon_sym_STAR_EQ] = ACTIONS(6884), - [anon_sym_SLASH_EQ] = ACTIONS(6884), - [anon_sym_PERCENT_EQ] = ACTIONS(6884), - [anon_sym_PLUS_EQ] = ACTIONS(6884), - [anon_sym_DASH_EQ] = ACTIONS(6884), - [anon_sym_LT_LT_EQ] = ACTIONS(6884), - [anon_sym_GT_GT_EQ] = ACTIONS(6886), - [anon_sym_AMP_EQ] = ACTIONS(6884), - [anon_sym_CARET_EQ] = ACTIONS(6884), - [anon_sym_PIPE_EQ] = ACTIONS(6884), - [anon_sym_and_eq] = ACTIONS(6886), - [anon_sym_or_eq] = ACTIONS(6886), - [anon_sym_xor_eq] = ACTIONS(6886), - [anon_sym_LT_EQ_GT] = ACTIONS(6884), - [anon_sym_or] = ACTIONS(6886), - [anon_sym_and] = ACTIONS(6886), - [anon_sym_bitor] = ACTIONS(6886), - [anon_sym_xor] = ACTIONS(6886), - [anon_sym_bitand] = ACTIONS(6886), - [anon_sym_not_eq] = ACTIONS(6886), - [anon_sym_DASH_DASH] = ACTIONS(6884), - [anon_sym_PLUS_PLUS] = ACTIONS(6884), - [anon_sym_DOT] = ACTIONS(6886), - [anon_sym_DOT_STAR] = ACTIONS(6884), - [anon_sym_DASH_GT] = ACTIONS(6884), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(6884), + [STATE(2202)] = { + [sym_identifier] = ACTIONS(7595), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7597), + [anon_sym_COMMA] = ACTIONS(7597), + [anon_sym_RPAREN] = ACTIONS(7597), + [aux_sym_preproc_if_token2] = ACTIONS(7597), + [aux_sym_preproc_else_token1] = ACTIONS(7597), + [aux_sym_preproc_elif_token1] = ACTIONS(7595), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7597), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7597), + [anon_sym_LPAREN2] = ACTIONS(7597), + [anon_sym_DASH] = ACTIONS(7595), + [anon_sym_PLUS] = ACTIONS(7595), + [anon_sym_STAR] = ACTIONS(7595), + [anon_sym_SLASH] = ACTIONS(7595), + [anon_sym_PERCENT] = ACTIONS(7595), + [anon_sym_PIPE_PIPE] = ACTIONS(7597), + [anon_sym_AMP_AMP] = ACTIONS(7597), + [anon_sym_PIPE] = ACTIONS(7595), + [anon_sym_CARET] = ACTIONS(7595), + [anon_sym_AMP] = ACTIONS(7595), + [anon_sym_EQ_EQ] = ACTIONS(7597), + [anon_sym_BANG_EQ] = ACTIONS(7597), + [anon_sym_GT] = ACTIONS(7595), + [anon_sym_GT_EQ] = ACTIONS(7597), + [anon_sym_LT_EQ] = ACTIONS(7595), + [anon_sym_LT] = ACTIONS(7595), + [anon_sym_LT_LT] = ACTIONS(7595), + [anon_sym_GT_GT] = ACTIONS(7595), + [anon_sym_SEMI] = ACTIONS(7597), + [anon_sym___extension__] = ACTIONS(7595), + [anon_sym___attribute__] = ACTIONS(7595), + [anon_sym___attribute] = ACTIONS(7595), + [anon_sym_COLON] = ACTIONS(7595), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7597), + [anon_sym_LBRACE] = ACTIONS(7597), + [anon_sym_RBRACE] = ACTIONS(7597), + [anon_sym_LBRACK] = ACTIONS(7597), + [anon_sym_EQ] = ACTIONS(7595), + [anon_sym_const] = ACTIONS(7595), + [anon_sym_constexpr] = ACTIONS(7595), + [anon_sym_volatile] = ACTIONS(7595), + [anon_sym_restrict] = ACTIONS(7595), + [anon_sym___restrict__] = ACTIONS(7595), + [anon_sym__Atomic] = ACTIONS(7595), + [anon_sym__Noreturn] = ACTIONS(7595), + [anon_sym_noreturn] = ACTIONS(7595), + [anon_sym__Nonnull] = ACTIONS(7595), + [anon_sym_mutable] = ACTIONS(7595), + [anon_sym_constinit] = ACTIONS(7595), + [anon_sym_consteval] = ACTIONS(7595), + [anon_sym_alignas] = ACTIONS(7595), + [anon_sym__Alignas] = ACTIONS(7595), + [anon_sym_QMARK] = ACTIONS(7597), + [anon_sym_STAR_EQ] = ACTIONS(7597), + [anon_sym_SLASH_EQ] = ACTIONS(7597), + [anon_sym_PERCENT_EQ] = ACTIONS(7597), + [anon_sym_PLUS_EQ] = ACTIONS(7597), + [anon_sym_DASH_EQ] = ACTIONS(7597), + [anon_sym_LT_LT_EQ] = ACTIONS(7597), + [anon_sym_GT_GT_EQ] = ACTIONS(7597), + [anon_sym_AMP_EQ] = ACTIONS(7597), + [anon_sym_CARET_EQ] = ACTIONS(7597), + [anon_sym_PIPE_EQ] = ACTIONS(7597), + [anon_sym_and_eq] = ACTIONS(7595), + [anon_sym_or_eq] = ACTIONS(7595), + [anon_sym_xor_eq] = ACTIONS(7595), + [anon_sym_LT_EQ_GT] = ACTIONS(7597), + [anon_sym_or] = ACTIONS(7595), + [anon_sym_and] = ACTIONS(7595), + [anon_sym_bitor] = ACTIONS(7595), + [anon_sym_xor] = ACTIONS(7595), + [anon_sym_bitand] = ACTIONS(7595), + [anon_sym_not_eq] = ACTIONS(7595), + [anon_sym_DASH_DASH] = ACTIONS(7597), + [anon_sym_PLUS_PLUS] = ACTIONS(7597), + [anon_sym_DOT] = ACTIONS(7595), + [anon_sym_DOT_STAR] = ACTIONS(7597), + [anon_sym_DASH_GT] = ACTIONS(7597), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7595), + [anon_sym_override] = ACTIONS(7595), + [anon_sym_requires] = ACTIONS(7595), + [anon_sym_COLON_RBRACK] = ACTIONS(7597), }, - [STATE(2260)] = { - [sym_attribute_specifier] = STATE(2260), - [aux_sym_type_definition_repeat1] = STATE(2260), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6555), - [anon_sym_COMMA] = ACTIONS(6555), - [anon_sym_LPAREN2] = ACTIONS(6555), - [anon_sym_DASH] = ACTIONS(6553), - [anon_sym_PLUS] = ACTIONS(6553), - [anon_sym_STAR] = ACTIONS(6553), - [anon_sym_SLASH] = ACTIONS(6553), - [anon_sym_PERCENT] = ACTIONS(6553), - [anon_sym_PIPE_PIPE] = ACTIONS(6555), - [anon_sym_AMP_AMP] = ACTIONS(6555), - [anon_sym_PIPE] = ACTIONS(6553), - [anon_sym_CARET] = ACTIONS(6553), - [anon_sym_AMP] = ACTIONS(6553), - [anon_sym_EQ_EQ] = ACTIONS(6555), - [anon_sym_BANG_EQ] = ACTIONS(6555), - [anon_sym_GT] = ACTIONS(6553), - [anon_sym_GT_EQ] = ACTIONS(6555), - [anon_sym_LT_EQ] = ACTIONS(6553), - [anon_sym_LT] = ACTIONS(6553), - [anon_sym_LT_LT] = ACTIONS(6553), - [anon_sym_GT_GT] = ACTIONS(6553), - [anon_sym___extension__] = ACTIONS(6555), - [anon_sym___attribute__] = ACTIONS(7722), - [anon_sym___attribute] = ACTIONS(7725), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6555), - [anon_sym_LBRACK] = ACTIONS(6553), - [anon_sym_RBRACK] = ACTIONS(6555), - [anon_sym_EQ] = ACTIONS(6553), - [anon_sym_const] = ACTIONS(6553), - [anon_sym_constexpr] = ACTIONS(6555), - [anon_sym_volatile] = ACTIONS(6555), - [anon_sym_restrict] = ACTIONS(6555), - [anon_sym___restrict__] = ACTIONS(6555), - [anon_sym__Atomic] = ACTIONS(6555), - [anon_sym__Noreturn] = ACTIONS(6555), - [anon_sym_noreturn] = ACTIONS(6555), - [anon_sym__Nonnull] = ACTIONS(6555), - [anon_sym_mutable] = ACTIONS(6555), - [anon_sym_constinit] = ACTIONS(6555), - [anon_sym_consteval] = ACTIONS(6555), - [anon_sym_alignas] = ACTIONS(6555), - [anon_sym__Alignas] = ACTIONS(6555), - [anon_sym_QMARK] = ACTIONS(6555), - [anon_sym_STAR_EQ] = ACTIONS(6555), - [anon_sym_SLASH_EQ] = ACTIONS(6555), - [anon_sym_PERCENT_EQ] = ACTIONS(6555), - [anon_sym_PLUS_EQ] = ACTIONS(6555), - [anon_sym_DASH_EQ] = ACTIONS(6555), - [anon_sym_LT_LT_EQ] = ACTIONS(6555), - [anon_sym_GT_GT_EQ] = ACTIONS(6555), - [anon_sym_AMP_EQ] = ACTIONS(6555), - [anon_sym_CARET_EQ] = ACTIONS(6555), - [anon_sym_PIPE_EQ] = ACTIONS(6555), - [anon_sym_and_eq] = ACTIONS(6555), - [anon_sym_or_eq] = ACTIONS(6555), - [anon_sym_xor_eq] = ACTIONS(6555), - [anon_sym_LT_EQ_GT] = ACTIONS(6555), - [anon_sym_or] = ACTIONS(6553), - [anon_sym_and] = ACTIONS(6553), - [anon_sym_bitor] = ACTIONS(6555), - [anon_sym_xor] = ACTIONS(6553), - [anon_sym_bitand] = ACTIONS(6555), - [anon_sym_not_eq] = ACTIONS(6555), - [anon_sym_DASH_DASH] = ACTIONS(6555), - [anon_sym_PLUS_PLUS] = ACTIONS(6555), - [anon_sym_asm] = ACTIONS(6555), - [anon_sym___asm__] = ACTIONS(6555), - [anon_sym___asm] = ACTIONS(6553), - [anon_sym_DOT] = ACTIONS(6553), - [anon_sym_DOT_STAR] = ACTIONS(6555), - [anon_sym_DASH_GT] = ACTIONS(6555), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6555), - [anon_sym_override] = ACTIONS(6555), - [anon_sym_noexcept] = ACTIONS(6555), - [anon_sym_throw] = ACTIONS(6555), - [anon_sym_requires] = ACTIONS(6555), + [STATE(2203)] = { + [sym_identifier] = ACTIONS(7158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7160), + [anon_sym_COMMA] = ACTIONS(7160), + [anon_sym_RPAREN] = ACTIONS(7160), + [aux_sym_preproc_if_token2] = ACTIONS(7160), + [aux_sym_preproc_else_token1] = ACTIONS(7160), + [aux_sym_preproc_elif_token1] = ACTIONS(7158), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7160), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7160), + [anon_sym_LPAREN2] = ACTIONS(7160), + [anon_sym_DASH] = ACTIONS(7158), + [anon_sym_PLUS] = ACTIONS(7158), + [anon_sym_STAR] = ACTIONS(7158), + [anon_sym_SLASH] = ACTIONS(7158), + [anon_sym_PERCENT] = ACTIONS(7158), + [anon_sym_PIPE_PIPE] = ACTIONS(7160), + [anon_sym_AMP_AMP] = ACTIONS(7160), + [anon_sym_PIPE] = ACTIONS(7158), + [anon_sym_CARET] = ACTIONS(7158), + [anon_sym_AMP] = ACTIONS(7158), + [anon_sym_EQ_EQ] = ACTIONS(7160), + [anon_sym_BANG_EQ] = ACTIONS(7160), + [anon_sym_GT] = ACTIONS(7158), + [anon_sym_GT_EQ] = ACTIONS(7160), + [anon_sym_LT_EQ] = ACTIONS(7158), + [anon_sym_LT] = ACTIONS(7158), + [anon_sym_LT_LT] = ACTIONS(7158), + [anon_sym_GT_GT] = ACTIONS(7158), + [anon_sym_SEMI] = ACTIONS(7160), + [anon_sym___extension__] = ACTIONS(7158), + [anon_sym___attribute__] = ACTIONS(7158), + [anon_sym___attribute] = ACTIONS(7158), + [anon_sym_COLON] = ACTIONS(7158), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7160), + [anon_sym_LBRACE] = ACTIONS(7160), + [anon_sym_RBRACE] = ACTIONS(7160), + [anon_sym_LBRACK] = ACTIONS(7160), + [anon_sym_EQ] = ACTIONS(7158), + [anon_sym_const] = ACTIONS(7158), + [anon_sym_constexpr] = ACTIONS(7158), + [anon_sym_volatile] = ACTIONS(7158), + [anon_sym_restrict] = ACTIONS(7158), + [anon_sym___restrict__] = ACTIONS(7158), + [anon_sym__Atomic] = ACTIONS(7158), + [anon_sym__Noreturn] = ACTIONS(7158), + [anon_sym_noreturn] = ACTIONS(7158), + [anon_sym__Nonnull] = ACTIONS(7158), + [anon_sym_mutable] = ACTIONS(7158), + [anon_sym_constinit] = ACTIONS(7158), + [anon_sym_consteval] = ACTIONS(7158), + [anon_sym_alignas] = ACTIONS(7158), + [anon_sym__Alignas] = ACTIONS(7158), + [anon_sym_QMARK] = ACTIONS(7160), + [anon_sym_STAR_EQ] = ACTIONS(7160), + [anon_sym_SLASH_EQ] = ACTIONS(7160), + [anon_sym_PERCENT_EQ] = ACTIONS(7160), + [anon_sym_PLUS_EQ] = ACTIONS(7160), + [anon_sym_DASH_EQ] = ACTIONS(7160), + [anon_sym_LT_LT_EQ] = ACTIONS(7160), + [anon_sym_GT_GT_EQ] = ACTIONS(7160), + [anon_sym_AMP_EQ] = ACTIONS(7160), + [anon_sym_CARET_EQ] = ACTIONS(7160), + [anon_sym_PIPE_EQ] = ACTIONS(7160), + [anon_sym_and_eq] = ACTIONS(7158), + [anon_sym_or_eq] = ACTIONS(7158), + [anon_sym_xor_eq] = ACTIONS(7158), + [anon_sym_LT_EQ_GT] = ACTIONS(7160), + [anon_sym_or] = ACTIONS(7158), + [anon_sym_and] = ACTIONS(7158), + [anon_sym_bitor] = ACTIONS(7158), + [anon_sym_xor] = ACTIONS(7158), + [anon_sym_bitand] = ACTIONS(7158), + [anon_sym_not_eq] = ACTIONS(7158), + [anon_sym_DASH_DASH] = ACTIONS(7160), + [anon_sym_PLUS_PLUS] = ACTIONS(7160), + [anon_sym_DOT] = ACTIONS(7158), + [anon_sym_DOT_STAR] = ACTIONS(7160), + [anon_sym_DASH_GT] = ACTIONS(7160), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7158), + [anon_sym_override] = ACTIONS(7158), + [anon_sym_requires] = ACTIONS(7158), + [anon_sym_COLON_RBRACK] = ACTIONS(7160), }, - [STATE(2261)] = { - [sym_argument_list] = STATE(3783), - [sym_initializer_list] = STATE(3811), - [aux_sym_sized_type_specifier_repeat1] = STATE(2123), - [sym_identifier] = ACTIONS(6798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [aux_sym_preproc_if_token2] = ACTIONS(6800), - [aux_sym_preproc_else_token1] = ACTIONS(6800), - [aux_sym_preproc_elif_token1] = ACTIONS(6798), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(7399), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6798), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_signed] = ACTIONS(7257), - [anon_sym_unsigned] = ACTIONS(7257), - [anon_sym_long] = ACTIONS(7257), - [anon_sym_short] = ACTIONS(7257), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6798), - [anon_sym_volatile] = ACTIONS(6798), - [anon_sym_restrict] = ACTIONS(6798), - [anon_sym___restrict__] = ACTIONS(6798), - [anon_sym__Atomic] = ACTIONS(6798), - [anon_sym__Noreturn] = ACTIONS(6798), - [anon_sym_noreturn] = ACTIONS(6798), - [anon_sym__Nonnull] = ACTIONS(6798), - [anon_sym_mutable] = ACTIONS(6798), - [anon_sym_constinit] = ACTIONS(6798), - [anon_sym_consteval] = ACTIONS(6798), - [anon_sym_alignas] = ACTIONS(6798), - [anon_sym__Alignas] = ACTIONS(6798), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6798), - [anon_sym_or_eq] = ACTIONS(6798), - [anon_sym_xor_eq] = ACTIONS(6798), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6798), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6798), - [anon_sym_not_eq] = ACTIONS(6798), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), + [STATE(2204)] = { + [sym_identifier] = ACTIONS(7667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7669), + [anon_sym_COMMA] = ACTIONS(7669), + [anon_sym_RPAREN] = ACTIONS(7669), + [aux_sym_preproc_if_token2] = ACTIONS(7669), + [aux_sym_preproc_else_token1] = ACTIONS(7669), + [aux_sym_preproc_elif_token1] = ACTIONS(7667), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7669), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7669), + [anon_sym_LPAREN2] = ACTIONS(7669), + [anon_sym_DASH] = ACTIONS(7667), + [anon_sym_PLUS] = ACTIONS(7667), + [anon_sym_STAR] = ACTIONS(7667), + [anon_sym_SLASH] = ACTIONS(7667), + [anon_sym_PERCENT] = ACTIONS(7667), + [anon_sym_PIPE_PIPE] = ACTIONS(7669), + [anon_sym_AMP_AMP] = ACTIONS(7669), + [anon_sym_PIPE] = ACTIONS(7667), + [anon_sym_CARET] = ACTIONS(7667), + [anon_sym_AMP] = ACTIONS(7667), + [anon_sym_EQ_EQ] = ACTIONS(7669), + [anon_sym_BANG_EQ] = ACTIONS(7669), + [anon_sym_GT] = ACTIONS(7667), + [anon_sym_GT_EQ] = ACTIONS(7669), + [anon_sym_LT_EQ] = ACTIONS(7667), + [anon_sym_LT] = ACTIONS(7667), + [anon_sym_LT_LT] = ACTIONS(7667), + [anon_sym_GT_GT] = ACTIONS(7667), + [anon_sym_SEMI] = ACTIONS(7669), + [anon_sym___extension__] = ACTIONS(7667), + [anon_sym___attribute__] = ACTIONS(7667), + [anon_sym___attribute] = ACTIONS(7667), + [anon_sym_COLON] = ACTIONS(7667), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7669), + [anon_sym_LBRACE] = ACTIONS(7669), + [anon_sym_RBRACE] = ACTIONS(7669), + [anon_sym_LBRACK] = ACTIONS(7669), + [anon_sym_EQ] = ACTIONS(7667), + [anon_sym_const] = ACTIONS(7667), + [anon_sym_constexpr] = ACTIONS(7667), + [anon_sym_volatile] = ACTIONS(7667), + [anon_sym_restrict] = ACTIONS(7667), + [anon_sym___restrict__] = ACTIONS(7667), + [anon_sym__Atomic] = ACTIONS(7667), + [anon_sym__Noreturn] = ACTIONS(7667), + [anon_sym_noreturn] = ACTIONS(7667), + [anon_sym__Nonnull] = ACTIONS(7667), + [anon_sym_mutable] = ACTIONS(7667), + [anon_sym_constinit] = ACTIONS(7667), + [anon_sym_consteval] = ACTIONS(7667), + [anon_sym_alignas] = ACTIONS(7667), + [anon_sym__Alignas] = ACTIONS(7667), + [anon_sym_QMARK] = ACTIONS(7669), + [anon_sym_STAR_EQ] = ACTIONS(7669), + [anon_sym_SLASH_EQ] = ACTIONS(7669), + [anon_sym_PERCENT_EQ] = ACTIONS(7669), + [anon_sym_PLUS_EQ] = ACTIONS(7669), + [anon_sym_DASH_EQ] = ACTIONS(7669), + [anon_sym_LT_LT_EQ] = ACTIONS(7669), + [anon_sym_GT_GT_EQ] = ACTIONS(7669), + [anon_sym_AMP_EQ] = ACTIONS(7669), + [anon_sym_CARET_EQ] = ACTIONS(7669), + [anon_sym_PIPE_EQ] = ACTIONS(7669), + [anon_sym_and_eq] = ACTIONS(7667), + [anon_sym_or_eq] = ACTIONS(7667), + [anon_sym_xor_eq] = ACTIONS(7667), + [anon_sym_LT_EQ_GT] = ACTIONS(7669), + [anon_sym_or] = ACTIONS(7667), + [anon_sym_and] = ACTIONS(7667), + [anon_sym_bitor] = ACTIONS(7667), + [anon_sym_xor] = ACTIONS(7667), + [anon_sym_bitand] = ACTIONS(7667), + [anon_sym_not_eq] = ACTIONS(7667), + [anon_sym_DASH_DASH] = ACTIONS(7669), + [anon_sym_PLUS_PLUS] = ACTIONS(7669), + [anon_sym_DOT] = ACTIONS(7667), + [anon_sym_DOT_STAR] = ACTIONS(7669), + [anon_sym_DASH_GT] = ACTIONS(7669), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7667), + [anon_sym_override] = ACTIONS(7667), + [anon_sym_requires] = ACTIONS(7667), + [anon_sym_COLON_RBRACK] = ACTIONS(7669), }, - [STATE(2262)] = { - [sym__abstract_declarator] = STATE(4686), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2264), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1871), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2264), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), - [anon_sym_COMMA] = ACTIONS(6991), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6993), - [anon_sym_PLUS] = ACTIONS(6993), - [anon_sym_STAR] = ACTIONS(6838), - [anon_sym_SLASH] = ACTIONS(6993), - [anon_sym_PERCENT] = ACTIONS(6993), - [anon_sym_PIPE_PIPE] = ACTIONS(6991), - [anon_sym_AMP_AMP] = ACTIONS(6840), - [anon_sym_PIPE] = ACTIONS(6993), - [anon_sym_CARET] = ACTIONS(6993), - [anon_sym_AMP] = ACTIONS(6842), - [anon_sym_EQ_EQ] = ACTIONS(6991), - [anon_sym_BANG_EQ] = ACTIONS(6991), - [anon_sym_GT] = ACTIONS(6993), - [anon_sym_GT_EQ] = ACTIONS(6991), - [anon_sym_LT_EQ] = ACTIONS(6993), - [anon_sym_LT] = ACTIONS(6993), - [anon_sym_LT_LT] = ACTIONS(6993), - [anon_sym_GT_GT] = ACTIONS(6993), - [anon_sym_SEMI] = ACTIONS(6991), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym___attribute__] = ACTIONS(6991), - [anon_sym___attribute] = ACTIONS(6993), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6993), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6991), - [anon_sym_STAR_EQ] = ACTIONS(6991), - [anon_sym_SLASH_EQ] = ACTIONS(6991), - [anon_sym_PERCENT_EQ] = ACTIONS(6991), - [anon_sym_PLUS_EQ] = ACTIONS(6991), - [anon_sym_DASH_EQ] = ACTIONS(6991), - [anon_sym_LT_LT_EQ] = ACTIONS(6991), - [anon_sym_GT_GT_EQ] = ACTIONS(6991), - [anon_sym_AMP_EQ] = ACTIONS(6991), - [anon_sym_CARET_EQ] = ACTIONS(6991), - [anon_sym_PIPE_EQ] = ACTIONS(6991), - [anon_sym_and_eq] = ACTIONS(6991), - [anon_sym_or_eq] = ACTIONS(6991), - [anon_sym_xor_eq] = ACTIONS(6991), - [anon_sym_LT_EQ_GT] = ACTIONS(6991), - [anon_sym_or] = ACTIONS(6993), - [anon_sym_and] = ACTIONS(6993), - [anon_sym_bitor] = ACTIONS(6991), - [anon_sym_xor] = ACTIONS(6993), - [anon_sym_bitand] = ACTIONS(6991), - [anon_sym_not_eq] = ACTIONS(6991), - [anon_sym_DASH_DASH] = ACTIONS(6991), - [anon_sym_PLUS_PLUS] = ACTIONS(6991), - [anon_sym_DOT] = ACTIONS(6993), - [anon_sym_DOT_STAR] = ACTIONS(6991), - [anon_sym_DASH_GT] = ACTIONS(6991), + [STATE(2205)] = { + [sym_identifier] = ACTIONS(7671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7673), + [anon_sym_COMMA] = ACTIONS(7673), + [anon_sym_RPAREN] = ACTIONS(7673), + [aux_sym_preproc_if_token2] = ACTIONS(7673), + [aux_sym_preproc_else_token1] = ACTIONS(7673), + [aux_sym_preproc_elif_token1] = ACTIONS(7671), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7673), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7673), + [anon_sym_LPAREN2] = ACTIONS(7673), + [anon_sym_DASH] = ACTIONS(7671), + [anon_sym_PLUS] = ACTIONS(7671), + [anon_sym_STAR] = ACTIONS(7671), + [anon_sym_SLASH] = ACTIONS(7671), + [anon_sym_PERCENT] = ACTIONS(7671), + [anon_sym_PIPE_PIPE] = ACTIONS(7673), + [anon_sym_AMP_AMP] = ACTIONS(7673), + [anon_sym_PIPE] = ACTIONS(7671), + [anon_sym_CARET] = ACTIONS(7671), + [anon_sym_AMP] = ACTIONS(7671), + [anon_sym_EQ_EQ] = ACTIONS(7673), + [anon_sym_BANG_EQ] = ACTIONS(7673), + [anon_sym_GT] = ACTIONS(7671), + [anon_sym_GT_EQ] = ACTIONS(7673), + [anon_sym_LT_EQ] = ACTIONS(7671), + [anon_sym_LT] = ACTIONS(7671), + [anon_sym_LT_LT] = ACTIONS(7671), + [anon_sym_GT_GT] = ACTIONS(7671), + [anon_sym_SEMI] = ACTIONS(7673), + [anon_sym___extension__] = ACTIONS(7671), + [anon_sym___attribute__] = ACTIONS(7671), + [anon_sym___attribute] = ACTIONS(7671), + [anon_sym_COLON] = ACTIONS(7671), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7673), + [anon_sym_LBRACE] = ACTIONS(7673), + [anon_sym_RBRACE] = ACTIONS(7673), + [anon_sym_LBRACK] = ACTIONS(7673), + [anon_sym_EQ] = ACTIONS(7671), + [anon_sym_const] = ACTIONS(7671), + [anon_sym_constexpr] = ACTIONS(7671), + [anon_sym_volatile] = ACTIONS(7671), + [anon_sym_restrict] = ACTIONS(7671), + [anon_sym___restrict__] = ACTIONS(7671), + [anon_sym__Atomic] = ACTIONS(7671), + [anon_sym__Noreturn] = ACTIONS(7671), + [anon_sym_noreturn] = ACTIONS(7671), + [anon_sym__Nonnull] = ACTIONS(7671), + [anon_sym_mutable] = ACTIONS(7671), + [anon_sym_constinit] = ACTIONS(7671), + [anon_sym_consteval] = ACTIONS(7671), + [anon_sym_alignas] = ACTIONS(7671), + [anon_sym__Alignas] = ACTIONS(7671), + [anon_sym_QMARK] = ACTIONS(7673), + [anon_sym_STAR_EQ] = ACTIONS(7673), + [anon_sym_SLASH_EQ] = ACTIONS(7673), + [anon_sym_PERCENT_EQ] = ACTIONS(7673), + [anon_sym_PLUS_EQ] = ACTIONS(7673), + [anon_sym_DASH_EQ] = ACTIONS(7673), + [anon_sym_LT_LT_EQ] = ACTIONS(7673), + [anon_sym_GT_GT_EQ] = ACTIONS(7673), + [anon_sym_AMP_EQ] = ACTIONS(7673), + [anon_sym_CARET_EQ] = ACTIONS(7673), + [anon_sym_PIPE_EQ] = ACTIONS(7673), + [anon_sym_and_eq] = ACTIONS(7671), + [anon_sym_or_eq] = ACTIONS(7671), + [anon_sym_xor_eq] = ACTIONS(7671), + [anon_sym_LT_EQ_GT] = ACTIONS(7673), + [anon_sym_or] = ACTIONS(7671), + [anon_sym_and] = ACTIONS(7671), + [anon_sym_bitor] = ACTIONS(7671), + [anon_sym_xor] = ACTIONS(7671), + [anon_sym_bitand] = ACTIONS(7671), + [anon_sym_not_eq] = ACTIONS(7671), + [anon_sym_DASH_DASH] = ACTIONS(7673), + [anon_sym_PLUS_PLUS] = ACTIONS(7673), + [anon_sym_DOT] = ACTIONS(7671), + [anon_sym_DOT_STAR] = ACTIONS(7673), + [anon_sym_DASH_GT] = ACTIONS(7673), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7671), + [anon_sym_override] = ACTIONS(7671), + [anon_sym_requires] = ACTIONS(7671), + [anon_sym_COLON_RBRACK] = ACTIONS(7673), + }, + [STATE(2206)] = { + [sym_identifier] = ACTIONS(6605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_RPAREN] = ACTIONS(6598), + [aux_sym_preproc_if_token2] = ACTIONS(6598), + [aux_sym_preproc_else_token1] = ACTIONS(6598), + [aux_sym_preproc_elif_token1] = ACTIONS(6605), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6598), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6605), + [anon_sym_PLUS] = ACTIONS(6605), + [anon_sym_STAR] = ACTIONS(6605), + [anon_sym_SLASH] = ACTIONS(6605), + [anon_sym_PERCENT] = ACTIONS(6605), + [anon_sym_PIPE_PIPE] = ACTIONS(6598), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6605), + [anon_sym_CARET] = ACTIONS(6605), + [anon_sym_AMP] = ACTIONS(6605), + [anon_sym_EQ_EQ] = ACTIONS(6598), + [anon_sym_BANG_EQ] = ACTIONS(6598), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6598), + [anon_sym_LT_EQ] = ACTIONS(6605), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6605), + [anon_sym_GT_GT] = ACTIONS(6605), + [anon_sym_SEMI] = ACTIONS(6598), + [anon_sym___extension__] = ACTIONS(6594), + [anon_sym___attribute__] = ACTIONS(6605), + [anon_sym___attribute] = ACTIONS(6605), + [anon_sym_COLON] = ACTIONS(6605), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6598), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_RBRACE] = ACTIONS(6598), + [anon_sym_LBRACK] = ACTIONS(6598), + [anon_sym_EQ] = ACTIONS(6603), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6594), + [anon_sym_volatile] = ACTIONS(6594), + [anon_sym_restrict] = ACTIONS(6594), + [anon_sym___restrict__] = ACTIONS(6594), + [anon_sym__Atomic] = ACTIONS(6594), + [anon_sym__Noreturn] = ACTIONS(6594), + [anon_sym_noreturn] = ACTIONS(6594), + [anon_sym__Nonnull] = ACTIONS(6594), + [anon_sym_mutable] = ACTIONS(6594), + [anon_sym_constinit] = ACTIONS(6594), + [anon_sym_consteval] = ACTIONS(6594), + [anon_sym_alignas] = ACTIONS(6594), + [anon_sym__Alignas] = ACTIONS(6594), + [anon_sym_QMARK] = ACTIONS(6598), + [anon_sym_STAR_EQ] = ACTIONS(6596), + [anon_sym_SLASH_EQ] = ACTIONS(6596), + [anon_sym_PERCENT_EQ] = ACTIONS(6596), + [anon_sym_PLUS_EQ] = ACTIONS(6596), + [anon_sym_DASH_EQ] = ACTIONS(6596), + [anon_sym_LT_LT_EQ] = ACTIONS(6596), + [anon_sym_GT_GT_EQ] = ACTIONS(6596), + [anon_sym_AMP_EQ] = ACTIONS(6596), + [anon_sym_CARET_EQ] = ACTIONS(6596), + [anon_sym_PIPE_EQ] = ACTIONS(6596), + [anon_sym_and_eq] = ACTIONS(6603), + [anon_sym_or_eq] = ACTIONS(6603), + [anon_sym_xor_eq] = ACTIONS(6603), + [anon_sym_LT_EQ_GT] = ACTIONS(6598), + [anon_sym_or] = ACTIONS(6605), + [anon_sym_and] = ACTIONS(6605), + [anon_sym_bitor] = ACTIONS(6605), + [anon_sym_xor] = ACTIONS(6605), + [anon_sym_bitand] = ACTIONS(6605), + [anon_sym_not_eq] = ACTIONS(6605), + [anon_sym_DASH_DASH] = ACTIONS(6598), + [anon_sym_PLUS_PLUS] = ACTIONS(6598), + [anon_sym_DOT] = ACTIONS(6605), + [anon_sym_DOT_STAR] = ACTIONS(6598), + [anon_sym_DASH_GT] = ACTIONS(6598), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6594), + [anon_sym_decltype] = ACTIONS(6594), + [anon_sym_COLON_RBRACK] = ACTIONS(6598), + }, + [STATE(2207)] = { + [sym_decltype_auto] = STATE(2238), + [sym_identifier] = ACTIONS(7223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [aux_sym_preproc_if_token2] = ACTIONS(7225), + [aux_sym_preproc_else_token1] = ACTIONS(7225), + [aux_sym_preproc_elif_token1] = ACTIONS(7223), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym_SEMI] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym___attribute__] = ACTIONS(7223), + [anon_sym___attribute] = ACTIONS(7223), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7457), + [anon_sym_RBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7223), + [anon_sym__Alignas] = ACTIONS(7223), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7223), + [anon_sym_or_eq] = ACTIONS(7223), + [anon_sym_xor_eq] = ACTIONS(7223), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7223), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7223), + [anon_sym_not_eq] = ACTIONS(7223), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7229), + [anon_sym_decltype] = ACTIONS(6819), + [anon_sym_COLON_RBRACK] = ACTIONS(7225), }, - [STATE(2263)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2263), - [sym_identifier] = ACTIONS(6627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6629), - [anon_sym_COMMA] = ACTIONS(6629), - [anon_sym_LPAREN2] = ACTIONS(6629), - [anon_sym_DASH] = ACTIONS(6627), - [anon_sym_PLUS] = ACTIONS(6627), - [anon_sym_STAR] = ACTIONS(6627), - [anon_sym_SLASH] = ACTIONS(6627), - [anon_sym_PERCENT] = ACTIONS(6627), - [anon_sym_PIPE_PIPE] = ACTIONS(6629), - [anon_sym_AMP_AMP] = ACTIONS(6629), - [anon_sym_PIPE] = ACTIONS(6627), - [anon_sym_CARET] = ACTIONS(6627), - [anon_sym_AMP] = ACTIONS(6627), - [anon_sym_EQ_EQ] = ACTIONS(6629), - [anon_sym_BANG_EQ] = ACTIONS(6629), - [anon_sym_GT] = ACTIONS(6627), - [anon_sym_GT_EQ] = ACTIONS(6629), - [anon_sym_LT_EQ] = ACTIONS(6627), - [anon_sym_LT] = ACTIONS(6627), - [anon_sym_LT_LT] = ACTIONS(6627), - [anon_sym_GT_GT] = ACTIONS(6627), - [anon_sym___extension__] = ACTIONS(6627), - [anon_sym___attribute__] = ACTIONS(6627), - [anon_sym___attribute] = ACTIONS(6627), - [anon_sym_LBRACE] = ACTIONS(6629), - [anon_sym_signed] = ACTIONS(7728), - [anon_sym_unsigned] = ACTIONS(7728), - [anon_sym_long] = ACTIONS(7728), - [anon_sym_short] = ACTIONS(7728), - [anon_sym_LBRACK] = ACTIONS(6629), - [anon_sym_RBRACK] = ACTIONS(6629), - [anon_sym_EQ] = ACTIONS(6627), - [anon_sym_const] = ACTIONS(6627), - [anon_sym_constexpr] = ACTIONS(6627), - [anon_sym_volatile] = ACTIONS(6627), - [anon_sym_restrict] = ACTIONS(6627), - [anon_sym___restrict__] = ACTIONS(6627), - [anon_sym__Atomic] = ACTIONS(6627), - [anon_sym__Noreturn] = ACTIONS(6627), - [anon_sym_noreturn] = ACTIONS(6627), - [anon_sym__Nonnull] = ACTIONS(6627), - [anon_sym_mutable] = ACTIONS(6627), - [anon_sym_constinit] = ACTIONS(6627), - [anon_sym_consteval] = ACTIONS(6627), - [anon_sym_alignas] = ACTIONS(6627), - [anon_sym__Alignas] = ACTIONS(6627), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(6629), - [anon_sym_STAR_EQ] = ACTIONS(6629), - [anon_sym_SLASH_EQ] = ACTIONS(6629), - [anon_sym_PERCENT_EQ] = ACTIONS(6629), - [anon_sym_PLUS_EQ] = ACTIONS(6629), - [anon_sym_DASH_EQ] = ACTIONS(6629), - [anon_sym_LT_LT_EQ] = ACTIONS(6629), - [anon_sym_GT_GT_EQ] = ACTIONS(6629), - [anon_sym_AMP_EQ] = ACTIONS(6629), - [anon_sym_CARET_EQ] = ACTIONS(6629), - [anon_sym_PIPE_EQ] = ACTIONS(6629), - [anon_sym_and_eq] = ACTIONS(6627), - [anon_sym_or_eq] = ACTIONS(6627), - [anon_sym_xor_eq] = ACTIONS(6627), - [anon_sym_LT_EQ_GT] = ACTIONS(6629), - [anon_sym_or] = ACTIONS(6627), - [anon_sym_and] = ACTIONS(6627), - [anon_sym_bitor] = ACTIONS(6627), - [anon_sym_xor] = ACTIONS(6627), - [anon_sym_bitand] = ACTIONS(6627), - [anon_sym_not_eq] = ACTIONS(6627), - [anon_sym_DASH_DASH] = ACTIONS(6629), - [anon_sym_PLUS_PLUS] = ACTIONS(6629), - [anon_sym_DOT] = ACTIONS(6627), - [anon_sym_DOT_STAR] = ACTIONS(6629), - [anon_sym_DASH_GT] = ACTIONS(6629), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6627), - [anon_sym_override] = ACTIONS(6627), - [anon_sym_requires] = ACTIONS(6627), + [STATE(2208)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2212), + [sym_identifier] = ACTIONS(7675), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7677), + [anon_sym_COMMA] = ACTIONS(7677), + [aux_sym_preproc_if_token2] = ACTIONS(7677), + [aux_sym_preproc_else_token1] = ACTIONS(7677), + [aux_sym_preproc_elif_token1] = ACTIONS(7675), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7677), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7677), + [anon_sym_LPAREN2] = ACTIONS(7677), + [anon_sym_DASH] = ACTIONS(7675), + [anon_sym_PLUS] = ACTIONS(7675), + [anon_sym_STAR] = ACTIONS(7675), + [anon_sym_SLASH] = ACTIONS(7675), + [anon_sym_PERCENT] = ACTIONS(7675), + [anon_sym_PIPE_PIPE] = ACTIONS(7677), + [anon_sym_AMP_AMP] = ACTIONS(7677), + [anon_sym_PIPE] = ACTIONS(7675), + [anon_sym_CARET] = ACTIONS(7675), + [anon_sym_AMP] = ACTIONS(7675), + [anon_sym_EQ_EQ] = ACTIONS(7677), + [anon_sym_BANG_EQ] = ACTIONS(7677), + [anon_sym_GT] = ACTIONS(7675), + [anon_sym_GT_EQ] = ACTIONS(7677), + [anon_sym_LT_EQ] = ACTIONS(7675), + [anon_sym_LT] = ACTIONS(7675), + [anon_sym_LT_LT] = ACTIONS(7675), + [anon_sym_GT_GT] = ACTIONS(7675), + [anon_sym___extension__] = ACTIONS(7675), + [anon_sym___attribute__] = ACTIONS(7675), + [anon_sym___attribute] = ACTIONS(7675), + [anon_sym_LBRACE] = ACTIONS(7677), + [anon_sym_signed] = ACTIONS(7679), + [anon_sym_unsigned] = ACTIONS(7679), + [anon_sym_long] = ACTIONS(7679), + [anon_sym_short] = ACTIONS(7679), + [anon_sym_LBRACK] = ACTIONS(7677), + [anon_sym_RBRACK] = ACTIONS(7677), + [anon_sym_EQ] = ACTIONS(7675), + [anon_sym_const] = ACTIONS(7675), + [anon_sym_constexpr] = ACTIONS(7675), + [anon_sym_volatile] = ACTIONS(7675), + [anon_sym_restrict] = ACTIONS(7675), + [anon_sym___restrict__] = ACTIONS(7675), + [anon_sym__Atomic] = ACTIONS(7675), + [anon_sym__Noreturn] = ACTIONS(7675), + [anon_sym_noreturn] = ACTIONS(7675), + [anon_sym__Nonnull] = ACTIONS(7675), + [anon_sym_mutable] = ACTIONS(7675), + [anon_sym_constinit] = ACTIONS(7675), + [anon_sym_consteval] = ACTIONS(7675), + [anon_sym_alignas] = ACTIONS(7675), + [anon_sym__Alignas] = ACTIONS(7675), + [anon_sym_QMARK] = ACTIONS(7677), + [anon_sym_STAR_EQ] = ACTIONS(7677), + [anon_sym_SLASH_EQ] = ACTIONS(7677), + [anon_sym_PERCENT_EQ] = ACTIONS(7677), + [anon_sym_PLUS_EQ] = ACTIONS(7677), + [anon_sym_DASH_EQ] = ACTIONS(7677), + [anon_sym_LT_LT_EQ] = ACTIONS(7677), + [anon_sym_GT_GT_EQ] = ACTIONS(7677), + [anon_sym_AMP_EQ] = ACTIONS(7677), + [anon_sym_CARET_EQ] = ACTIONS(7677), + [anon_sym_PIPE_EQ] = ACTIONS(7677), + [anon_sym_and_eq] = ACTIONS(7675), + [anon_sym_or_eq] = ACTIONS(7675), + [anon_sym_xor_eq] = ACTIONS(7675), + [anon_sym_LT_EQ_GT] = ACTIONS(7677), + [anon_sym_or] = ACTIONS(7675), + [anon_sym_and] = ACTIONS(7675), + [anon_sym_bitor] = ACTIONS(7675), + [anon_sym_xor] = ACTIONS(7675), + [anon_sym_bitand] = ACTIONS(7675), + [anon_sym_not_eq] = ACTIONS(7675), + [anon_sym_DASH_DASH] = ACTIONS(7677), + [anon_sym_PLUS_PLUS] = ACTIONS(7677), + [anon_sym_DOT] = ACTIONS(7675), + [anon_sym_DOT_STAR] = ACTIONS(7677), + [anon_sym_DASH_GT] = ACTIONS(7677), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7675), + [anon_sym_override] = ACTIONS(7675), + [anon_sym_requires] = ACTIONS(7675), }, - [STATE(2264)] = { - [sym__abstract_declarator] = STATE(4687), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(1913), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1871), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(1913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), - [anon_sym_COMMA] = ACTIONS(6995), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6997), - [anon_sym_PLUS] = ACTIONS(6997), - [anon_sym_STAR] = ACTIONS(6838), - [anon_sym_SLASH] = ACTIONS(6997), - [anon_sym_PERCENT] = ACTIONS(6997), - [anon_sym_PIPE_PIPE] = ACTIONS(6995), - [anon_sym_AMP_AMP] = ACTIONS(6840), - [anon_sym_PIPE] = ACTIONS(6997), - [anon_sym_CARET] = ACTIONS(6997), - [anon_sym_AMP] = ACTIONS(6842), - [anon_sym_EQ_EQ] = ACTIONS(6995), - [anon_sym_BANG_EQ] = ACTIONS(6995), - [anon_sym_GT] = ACTIONS(6997), - [anon_sym_GT_EQ] = ACTIONS(6995), - [anon_sym_LT_EQ] = ACTIONS(6997), - [anon_sym_LT] = ACTIONS(6997), - [anon_sym_LT_LT] = ACTIONS(6997), - [anon_sym_GT_GT] = ACTIONS(6997), - [anon_sym_SEMI] = ACTIONS(6995), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym___attribute__] = ACTIONS(6995), - [anon_sym___attribute] = ACTIONS(6997), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6997), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6995), - [anon_sym_STAR_EQ] = ACTIONS(6995), - [anon_sym_SLASH_EQ] = ACTIONS(6995), - [anon_sym_PERCENT_EQ] = ACTIONS(6995), - [anon_sym_PLUS_EQ] = ACTIONS(6995), - [anon_sym_DASH_EQ] = ACTIONS(6995), - [anon_sym_LT_LT_EQ] = ACTIONS(6995), - [anon_sym_GT_GT_EQ] = ACTIONS(6995), - [anon_sym_AMP_EQ] = ACTIONS(6995), - [anon_sym_CARET_EQ] = ACTIONS(6995), - [anon_sym_PIPE_EQ] = ACTIONS(6995), - [anon_sym_and_eq] = ACTIONS(6995), - [anon_sym_or_eq] = ACTIONS(6995), - [anon_sym_xor_eq] = ACTIONS(6995), - [anon_sym_LT_EQ_GT] = ACTIONS(6995), - [anon_sym_or] = ACTIONS(6997), - [anon_sym_and] = ACTIONS(6997), - [anon_sym_bitor] = ACTIONS(6995), - [anon_sym_xor] = ACTIONS(6997), - [anon_sym_bitand] = ACTIONS(6995), - [anon_sym_not_eq] = ACTIONS(6995), - [anon_sym_DASH_DASH] = ACTIONS(6995), - [anon_sym_PLUS_PLUS] = ACTIONS(6995), - [anon_sym_DOT] = ACTIONS(6997), - [anon_sym_DOT_STAR] = ACTIONS(6995), - [anon_sym_DASH_GT] = ACTIONS(6995), + [STATE(2209)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2212), + [sym_identifier] = ACTIONS(7681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7683), + [anon_sym_COMMA] = ACTIONS(7683), + [aux_sym_preproc_if_token2] = ACTIONS(7683), + [aux_sym_preproc_else_token1] = ACTIONS(7683), + [aux_sym_preproc_elif_token1] = ACTIONS(7681), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7683), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7683), + [anon_sym_LPAREN2] = ACTIONS(7683), + [anon_sym_DASH] = ACTIONS(7681), + [anon_sym_PLUS] = ACTIONS(7681), + [anon_sym_STAR] = ACTIONS(7681), + [anon_sym_SLASH] = ACTIONS(7681), + [anon_sym_PERCENT] = ACTIONS(7681), + [anon_sym_PIPE_PIPE] = ACTIONS(7683), + [anon_sym_AMP_AMP] = ACTIONS(7683), + [anon_sym_PIPE] = ACTIONS(7681), + [anon_sym_CARET] = ACTIONS(7681), + [anon_sym_AMP] = ACTIONS(7681), + [anon_sym_EQ_EQ] = ACTIONS(7683), + [anon_sym_BANG_EQ] = ACTIONS(7683), + [anon_sym_GT] = ACTIONS(7681), + [anon_sym_GT_EQ] = ACTIONS(7683), + [anon_sym_LT_EQ] = ACTIONS(7681), + [anon_sym_LT] = ACTIONS(7681), + [anon_sym_LT_LT] = ACTIONS(7681), + [anon_sym_GT_GT] = ACTIONS(7681), + [anon_sym___extension__] = ACTIONS(7681), + [anon_sym___attribute__] = ACTIONS(7681), + [anon_sym___attribute] = ACTIONS(7681), + [anon_sym_LBRACE] = ACTIONS(7683), + [anon_sym_signed] = ACTIONS(7679), + [anon_sym_unsigned] = ACTIONS(7679), + [anon_sym_long] = ACTIONS(7679), + [anon_sym_short] = ACTIONS(7679), + [anon_sym_LBRACK] = ACTIONS(7683), + [anon_sym_RBRACK] = ACTIONS(7683), + [anon_sym_EQ] = ACTIONS(7681), + [anon_sym_const] = ACTIONS(7681), + [anon_sym_constexpr] = ACTIONS(7681), + [anon_sym_volatile] = ACTIONS(7681), + [anon_sym_restrict] = ACTIONS(7681), + [anon_sym___restrict__] = ACTIONS(7681), + [anon_sym__Atomic] = ACTIONS(7681), + [anon_sym__Noreturn] = ACTIONS(7681), + [anon_sym_noreturn] = ACTIONS(7681), + [anon_sym__Nonnull] = ACTIONS(7681), + [anon_sym_mutable] = ACTIONS(7681), + [anon_sym_constinit] = ACTIONS(7681), + [anon_sym_consteval] = ACTIONS(7681), + [anon_sym_alignas] = ACTIONS(7681), + [anon_sym__Alignas] = ACTIONS(7681), + [anon_sym_QMARK] = ACTIONS(7683), + [anon_sym_STAR_EQ] = ACTIONS(7683), + [anon_sym_SLASH_EQ] = ACTIONS(7683), + [anon_sym_PERCENT_EQ] = ACTIONS(7683), + [anon_sym_PLUS_EQ] = ACTIONS(7683), + [anon_sym_DASH_EQ] = ACTIONS(7683), + [anon_sym_LT_LT_EQ] = ACTIONS(7683), + [anon_sym_GT_GT_EQ] = ACTIONS(7683), + [anon_sym_AMP_EQ] = ACTIONS(7683), + [anon_sym_CARET_EQ] = ACTIONS(7683), + [anon_sym_PIPE_EQ] = ACTIONS(7683), + [anon_sym_and_eq] = ACTIONS(7681), + [anon_sym_or_eq] = ACTIONS(7681), + [anon_sym_xor_eq] = ACTIONS(7681), + [anon_sym_LT_EQ_GT] = ACTIONS(7683), + [anon_sym_or] = ACTIONS(7681), + [anon_sym_and] = ACTIONS(7681), + [anon_sym_bitor] = ACTIONS(7681), + [anon_sym_xor] = ACTIONS(7681), + [anon_sym_bitand] = ACTIONS(7681), + [anon_sym_not_eq] = ACTIONS(7681), + [anon_sym_DASH_DASH] = ACTIONS(7683), + [anon_sym_PLUS_PLUS] = ACTIONS(7683), + [anon_sym_DOT] = ACTIONS(7681), + [anon_sym_DOT_STAR] = ACTIONS(7683), + [anon_sym_DASH_GT] = ACTIONS(7683), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7681), + [anon_sym_override] = ACTIONS(7681), + [anon_sym_requires] = ACTIONS(7681), + }, + [STATE(2210)] = { + [sym_type_qualifier] = STATE(2179), + [sym_alignas_qualifier] = STATE(2047), + [aux_sym__type_definition_type_repeat1] = STATE(2179), + [aux_sym_sized_type_specifier_repeat1] = STATE(2361), + [sym_identifier] = ACTIONS(7327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), + [anon_sym_COMMA] = ACTIONS(7249), + [aux_sym_preproc_if_token2] = ACTIONS(7249), + [aux_sym_preproc_else_token1] = ACTIONS(7249), + [aux_sym_preproc_elif_token1] = ACTIONS(7251), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7249), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7249), + [anon_sym_LPAREN2] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7251), + [anon_sym_PLUS] = ACTIONS(7251), + [anon_sym_STAR] = ACTIONS(7251), + [anon_sym_SLASH] = ACTIONS(7251), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7249), + [anon_sym_PIPE] = ACTIONS(7251), + [anon_sym_CARET] = ACTIONS(7251), + [anon_sym_AMP] = ACTIONS(7251), + [anon_sym_EQ_EQ] = ACTIONS(7249), + [anon_sym_BANG_EQ] = ACTIONS(7249), + [anon_sym_GT] = ACTIONS(7251), + [anon_sym_GT_EQ] = ACTIONS(7249), + [anon_sym_LT_EQ] = ACTIONS(7251), + [anon_sym_LT] = ACTIONS(7251), + [anon_sym_LT_LT] = ACTIONS(7251), + [anon_sym_GT_GT] = ACTIONS(7251), + [anon_sym___extension__] = ACTIONS(6855), + [anon_sym___attribute__] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7251), + [anon_sym_LBRACE] = ACTIONS(7249), + [anon_sym_signed] = ACTIONS(7685), + [anon_sym_unsigned] = ACTIONS(7685), + [anon_sym_long] = ACTIONS(7685), + [anon_sym_short] = ACTIONS(7685), + [anon_sym_LBRACK] = ACTIONS(7249), + [anon_sym_EQ] = ACTIONS(7251), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6855), + [anon_sym_volatile] = ACTIONS(6855), + [anon_sym_restrict] = ACTIONS(6855), + [anon_sym___restrict__] = ACTIONS(6855), + [anon_sym__Atomic] = ACTIONS(6855), + [anon_sym__Noreturn] = ACTIONS(6855), + [anon_sym_noreturn] = ACTIONS(6855), + [anon_sym__Nonnull] = ACTIONS(6855), + [anon_sym_mutable] = ACTIONS(6855), + [anon_sym_constinit] = ACTIONS(6855), + [anon_sym_consteval] = ACTIONS(6855), + [anon_sym_alignas] = ACTIONS(7485), + [anon_sym__Alignas] = ACTIONS(7485), + [sym_primitive_type] = ACTIONS(7332), + [anon_sym_QMARK] = ACTIONS(7249), + [anon_sym_STAR_EQ] = ACTIONS(7249), + [anon_sym_SLASH_EQ] = ACTIONS(7249), + [anon_sym_PERCENT_EQ] = ACTIONS(7249), + [anon_sym_PLUS_EQ] = ACTIONS(7249), + [anon_sym_DASH_EQ] = ACTIONS(7249), + [anon_sym_LT_LT_EQ] = ACTIONS(7249), + [anon_sym_GT_GT_EQ] = ACTIONS(7249), + [anon_sym_AMP_EQ] = ACTIONS(7249), + [anon_sym_CARET_EQ] = ACTIONS(7249), + [anon_sym_PIPE_EQ] = ACTIONS(7249), + [anon_sym_and_eq] = ACTIONS(7251), + [anon_sym_or_eq] = ACTIONS(7251), + [anon_sym_xor_eq] = ACTIONS(7251), + [anon_sym_LT_EQ_GT] = ACTIONS(7249), + [anon_sym_or] = ACTIONS(7251), + [anon_sym_and] = ACTIONS(7251), + [anon_sym_bitor] = ACTIONS(7251), + [anon_sym_xor] = ACTIONS(7251), + [anon_sym_bitand] = ACTIONS(7251), + [anon_sym_not_eq] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7249), + [anon_sym_PLUS_PLUS] = ACTIONS(7249), + [anon_sym_DOT] = ACTIONS(7251), + [anon_sym_DOT_STAR] = ACTIONS(7249), + [anon_sym_DASH_GT] = ACTIONS(7249), [sym_comment] = ACTIONS(3), }, - [STATE(2265)] = { - [sym__abstract_declarator] = STATE(4688), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(2267), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1871), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(2267), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), - [anon_sym_COMMA] = ACTIONS(6999), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(7001), - [anon_sym_PLUS] = ACTIONS(7001), - [anon_sym_STAR] = ACTIONS(6838), - [anon_sym_SLASH] = ACTIONS(7001), - [anon_sym_PERCENT] = ACTIONS(7001), - [anon_sym_PIPE_PIPE] = ACTIONS(6999), - [anon_sym_AMP_AMP] = ACTIONS(6840), - [anon_sym_PIPE] = ACTIONS(7001), - [anon_sym_CARET] = ACTIONS(7001), - [anon_sym_AMP] = ACTIONS(6842), - [anon_sym_EQ_EQ] = ACTIONS(6999), - [anon_sym_BANG_EQ] = ACTIONS(6999), - [anon_sym_GT] = ACTIONS(7001), - [anon_sym_GT_EQ] = ACTIONS(6999), - [anon_sym_LT_EQ] = ACTIONS(7001), - [anon_sym_LT] = ACTIONS(7001), - [anon_sym_LT_LT] = ACTIONS(7001), - [anon_sym_GT_GT] = ACTIONS(7001), - [anon_sym_SEMI] = ACTIONS(6999), - [anon_sym___extension__] = ACTIONS(6485), + [STATE(2211)] = { + [sym_argument_list] = STATE(3892), + [sym_initializer_list] = STATE(3887), + [sym_identifier] = ACTIONS(7223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [aux_sym_preproc_if_token2] = ACTIONS(7225), + [aux_sym_preproc_else_token1] = ACTIONS(7225), + [aux_sym_preproc_elif_token1] = ACTIONS(7223), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7687), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym_SEMI] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym___attribute__] = ACTIONS(7223), + [anon_sym___attribute] = ACTIONS(7223), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7223), + [anon_sym__Alignas] = ACTIONS(7223), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7223), + [anon_sym_or_eq] = ACTIONS(7223), + [anon_sym_xor_eq] = ACTIONS(7223), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7223), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7223), + [anon_sym_not_eq] = ACTIONS(7223), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7225), + }, + [STATE(2212)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2212), + [sym_identifier] = ACTIONS(6999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7001), + [anon_sym_COMMA] = ACTIONS(7001), + [aux_sym_preproc_if_token2] = ACTIONS(7001), + [aux_sym_preproc_else_token1] = ACTIONS(7001), + [aux_sym_preproc_elif_token1] = ACTIONS(6999), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7001), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7001), + [anon_sym_LPAREN2] = ACTIONS(7001), + [anon_sym_DASH] = ACTIONS(6999), + [anon_sym_PLUS] = ACTIONS(6999), + [anon_sym_STAR] = ACTIONS(6999), + [anon_sym_SLASH] = ACTIONS(6999), + [anon_sym_PERCENT] = ACTIONS(6999), + [anon_sym_PIPE_PIPE] = ACTIONS(7001), + [anon_sym_AMP_AMP] = ACTIONS(7001), + [anon_sym_PIPE] = ACTIONS(6999), + [anon_sym_CARET] = ACTIONS(6999), + [anon_sym_AMP] = ACTIONS(6999), + [anon_sym_EQ_EQ] = ACTIONS(7001), + [anon_sym_BANG_EQ] = ACTIONS(7001), + [anon_sym_GT] = ACTIONS(6999), + [anon_sym_GT_EQ] = ACTIONS(7001), + [anon_sym_LT_EQ] = ACTIONS(6999), + [anon_sym_LT] = ACTIONS(6999), + [anon_sym_LT_LT] = ACTIONS(6999), + [anon_sym_GT_GT] = ACTIONS(6999), + [anon_sym___extension__] = ACTIONS(6999), [anon_sym___attribute__] = ACTIONS(6999), - [anon_sym___attribute] = ACTIONS(7001), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(7001), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6999), - [anon_sym_STAR_EQ] = ACTIONS(6999), - [anon_sym_SLASH_EQ] = ACTIONS(6999), - [anon_sym_PERCENT_EQ] = ACTIONS(6999), - [anon_sym_PLUS_EQ] = ACTIONS(6999), - [anon_sym_DASH_EQ] = ACTIONS(6999), - [anon_sym_LT_LT_EQ] = ACTIONS(6999), - [anon_sym_GT_GT_EQ] = ACTIONS(6999), - [anon_sym_AMP_EQ] = ACTIONS(6999), - [anon_sym_CARET_EQ] = ACTIONS(6999), - [anon_sym_PIPE_EQ] = ACTIONS(6999), + [anon_sym___attribute] = ACTIONS(6999), + [anon_sym_LBRACE] = ACTIONS(7001), + [anon_sym_signed] = ACTIONS(7690), + [anon_sym_unsigned] = ACTIONS(7690), + [anon_sym_long] = ACTIONS(7690), + [anon_sym_short] = ACTIONS(7690), + [anon_sym_LBRACK] = ACTIONS(7001), + [anon_sym_RBRACK] = ACTIONS(7001), + [anon_sym_EQ] = ACTIONS(6999), + [anon_sym_const] = ACTIONS(6999), + [anon_sym_constexpr] = ACTIONS(6999), + [anon_sym_volatile] = ACTIONS(6999), + [anon_sym_restrict] = ACTIONS(6999), + [anon_sym___restrict__] = ACTIONS(6999), + [anon_sym__Atomic] = ACTIONS(6999), + [anon_sym__Noreturn] = ACTIONS(6999), + [anon_sym_noreturn] = ACTIONS(6999), + [anon_sym__Nonnull] = ACTIONS(6999), + [anon_sym_mutable] = ACTIONS(6999), + [anon_sym_constinit] = ACTIONS(6999), + [anon_sym_consteval] = ACTIONS(6999), + [anon_sym_alignas] = ACTIONS(6999), + [anon_sym__Alignas] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7001), + [anon_sym_STAR_EQ] = ACTIONS(7001), + [anon_sym_SLASH_EQ] = ACTIONS(7001), + [anon_sym_PERCENT_EQ] = ACTIONS(7001), + [anon_sym_PLUS_EQ] = ACTIONS(7001), + [anon_sym_DASH_EQ] = ACTIONS(7001), + [anon_sym_LT_LT_EQ] = ACTIONS(7001), + [anon_sym_GT_GT_EQ] = ACTIONS(7001), + [anon_sym_AMP_EQ] = ACTIONS(7001), + [anon_sym_CARET_EQ] = ACTIONS(7001), + [anon_sym_PIPE_EQ] = ACTIONS(7001), [anon_sym_and_eq] = ACTIONS(6999), [anon_sym_or_eq] = ACTIONS(6999), [anon_sym_xor_eq] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(6999), - [anon_sym_or] = ACTIONS(7001), - [anon_sym_and] = ACTIONS(7001), + [anon_sym_LT_EQ_GT] = ACTIONS(7001), + [anon_sym_or] = ACTIONS(6999), + [anon_sym_and] = ACTIONS(6999), [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(7001), + [anon_sym_xor] = ACTIONS(6999), [anon_sym_bitand] = ACTIONS(6999), [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(6999), - [anon_sym_PLUS_PLUS] = ACTIONS(6999), - [anon_sym_DOT] = ACTIONS(7001), - [anon_sym_DOT_STAR] = ACTIONS(6999), - [anon_sym_DASH_GT] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(7001), + [anon_sym_PLUS_PLUS] = ACTIONS(7001), + [anon_sym_DOT] = ACTIONS(6999), + [anon_sym_DOT_STAR] = ACTIONS(7001), + [anon_sym_DASH_GT] = ACTIONS(7001), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6999), + [anon_sym_override] = ACTIONS(6999), + [anon_sym_requires] = ACTIONS(6999), }, - [STATE(2266)] = { - [sym__abstract_declarator] = STATE(4694), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(1913), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1871), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(1913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6838), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(6840), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(6842), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym_SEMI] = ACTIONS(6497), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym___attribute__] = ACTIONS(6497), - [anon_sym___attribute] = ACTIONS(6495), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6497), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_and_eq] = ACTIONS(6497), - [anon_sym_or_eq] = ACTIONS(6497), - [anon_sym_xor_eq] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), + [STATE(2213)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2212), + [sym_identifier] = ACTIONS(7693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7695), + [anon_sym_COMMA] = ACTIONS(7695), + [aux_sym_preproc_if_token2] = ACTIONS(7695), + [aux_sym_preproc_else_token1] = ACTIONS(7695), + [aux_sym_preproc_elif_token1] = ACTIONS(7693), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7695), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7695), + [anon_sym_LPAREN2] = ACTIONS(7695), + [anon_sym_DASH] = ACTIONS(7693), + [anon_sym_PLUS] = ACTIONS(7693), + [anon_sym_STAR] = ACTIONS(7693), + [anon_sym_SLASH] = ACTIONS(7693), + [anon_sym_PERCENT] = ACTIONS(7693), + [anon_sym_PIPE_PIPE] = ACTIONS(7695), + [anon_sym_AMP_AMP] = ACTIONS(7695), + [anon_sym_PIPE] = ACTIONS(7693), + [anon_sym_CARET] = ACTIONS(7693), + [anon_sym_AMP] = ACTIONS(7693), + [anon_sym_EQ_EQ] = ACTIONS(7695), + [anon_sym_BANG_EQ] = ACTIONS(7695), + [anon_sym_GT] = ACTIONS(7693), + [anon_sym_GT_EQ] = ACTIONS(7695), + [anon_sym_LT_EQ] = ACTIONS(7693), + [anon_sym_LT] = ACTIONS(7693), + [anon_sym_LT_LT] = ACTIONS(7693), + [anon_sym_GT_GT] = ACTIONS(7693), + [anon_sym___extension__] = ACTIONS(7693), + [anon_sym___attribute__] = ACTIONS(7693), + [anon_sym___attribute] = ACTIONS(7693), + [anon_sym_LBRACE] = ACTIONS(7695), + [anon_sym_signed] = ACTIONS(7679), + [anon_sym_unsigned] = ACTIONS(7679), + [anon_sym_long] = ACTIONS(7679), + [anon_sym_short] = ACTIONS(7679), + [anon_sym_LBRACK] = ACTIONS(7695), + [anon_sym_RBRACK] = ACTIONS(7695), + [anon_sym_EQ] = ACTIONS(7693), + [anon_sym_const] = ACTIONS(7693), + [anon_sym_constexpr] = ACTIONS(7693), + [anon_sym_volatile] = ACTIONS(7693), + [anon_sym_restrict] = ACTIONS(7693), + [anon_sym___restrict__] = ACTIONS(7693), + [anon_sym__Atomic] = ACTIONS(7693), + [anon_sym__Noreturn] = ACTIONS(7693), + [anon_sym_noreturn] = ACTIONS(7693), + [anon_sym__Nonnull] = ACTIONS(7693), + [anon_sym_mutable] = ACTIONS(7693), + [anon_sym_constinit] = ACTIONS(7693), + [anon_sym_consteval] = ACTIONS(7693), + [anon_sym_alignas] = ACTIONS(7693), + [anon_sym__Alignas] = ACTIONS(7693), + [anon_sym_QMARK] = ACTIONS(7695), + [anon_sym_STAR_EQ] = ACTIONS(7695), + [anon_sym_SLASH_EQ] = ACTIONS(7695), + [anon_sym_PERCENT_EQ] = ACTIONS(7695), + [anon_sym_PLUS_EQ] = ACTIONS(7695), + [anon_sym_DASH_EQ] = ACTIONS(7695), + [anon_sym_LT_LT_EQ] = ACTIONS(7695), + [anon_sym_GT_GT_EQ] = ACTIONS(7695), + [anon_sym_AMP_EQ] = ACTIONS(7695), + [anon_sym_CARET_EQ] = ACTIONS(7695), + [anon_sym_PIPE_EQ] = ACTIONS(7695), + [anon_sym_and_eq] = ACTIONS(7693), + [anon_sym_or_eq] = ACTIONS(7693), + [anon_sym_xor_eq] = ACTIONS(7693), + [anon_sym_LT_EQ_GT] = ACTIONS(7695), + [anon_sym_or] = ACTIONS(7693), + [anon_sym_and] = ACTIONS(7693), + [anon_sym_bitor] = ACTIONS(7693), + [anon_sym_xor] = ACTIONS(7693), + [anon_sym_bitand] = ACTIONS(7693), + [anon_sym_not_eq] = ACTIONS(7693), + [anon_sym_DASH_DASH] = ACTIONS(7695), + [anon_sym_PLUS_PLUS] = ACTIONS(7695), + [anon_sym_DOT] = ACTIONS(7693), + [anon_sym_DOT_STAR] = ACTIONS(7695), + [anon_sym_DASH_GT] = ACTIONS(7695), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7693), + [anon_sym_override] = ACTIONS(7693), + [anon_sym_requires] = ACTIONS(7693), + }, + [STATE(2214)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2212), + [sym_identifier] = ACTIONS(7697), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7699), + [anon_sym_COMMA] = ACTIONS(7699), + [aux_sym_preproc_if_token2] = ACTIONS(7699), + [aux_sym_preproc_else_token1] = ACTIONS(7699), + [aux_sym_preproc_elif_token1] = ACTIONS(7697), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7699), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7699), + [anon_sym_LPAREN2] = ACTIONS(7699), + [anon_sym_DASH] = ACTIONS(7697), + [anon_sym_PLUS] = ACTIONS(7697), + [anon_sym_STAR] = ACTIONS(7697), + [anon_sym_SLASH] = ACTIONS(7697), + [anon_sym_PERCENT] = ACTIONS(7697), + [anon_sym_PIPE_PIPE] = ACTIONS(7699), + [anon_sym_AMP_AMP] = ACTIONS(7699), + [anon_sym_PIPE] = ACTIONS(7697), + [anon_sym_CARET] = ACTIONS(7697), + [anon_sym_AMP] = ACTIONS(7697), + [anon_sym_EQ_EQ] = ACTIONS(7699), + [anon_sym_BANG_EQ] = ACTIONS(7699), + [anon_sym_GT] = ACTIONS(7697), + [anon_sym_GT_EQ] = ACTIONS(7699), + [anon_sym_LT_EQ] = ACTIONS(7697), + [anon_sym_LT] = ACTIONS(7697), + [anon_sym_LT_LT] = ACTIONS(7697), + [anon_sym_GT_GT] = ACTIONS(7697), + [anon_sym___extension__] = ACTIONS(7697), + [anon_sym___attribute__] = ACTIONS(7697), + [anon_sym___attribute] = ACTIONS(7697), + [anon_sym_LBRACE] = ACTIONS(7699), + [anon_sym_signed] = ACTIONS(7679), + [anon_sym_unsigned] = ACTIONS(7679), + [anon_sym_long] = ACTIONS(7679), + [anon_sym_short] = ACTIONS(7679), + [anon_sym_LBRACK] = ACTIONS(7699), + [anon_sym_RBRACK] = ACTIONS(7699), + [anon_sym_EQ] = ACTIONS(7697), + [anon_sym_const] = ACTIONS(7697), + [anon_sym_constexpr] = ACTIONS(7697), + [anon_sym_volatile] = ACTIONS(7697), + [anon_sym_restrict] = ACTIONS(7697), + [anon_sym___restrict__] = ACTIONS(7697), + [anon_sym__Atomic] = ACTIONS(7697), + [anon_sym__Noreturn] = ACTIONS(7697), + [anon_sym_noreturn] = ACTIONS(7697), + [anon_sym__Nonnull] = ACTIONS(7697), + [anon_sym_mutable] = ACTIONS(7697), + [anon_sym_constinit] = ACTIONS(7697), + [anon_sym_consteval] = ACTIONS(7697), + [anon_sym_alignas] = ACTIONS(7697), + [anon_sym__Alignas] = ACTIONS(7697), + [anon_sym_QMARK] = ACTIONS(7699), + [anon_sym_STAR_EQ] = ACTIONS(7699), + [anon_sym_SLASH_EQ] = ACTIONS(7699), + [anon_sym_PERCENT_EQ] = ACTIONS(7699), + [anon_sym_PLUS_EQ] = ACTIONS(7699), + [anon_sym_DASH_EQ] = ACTIONS(7699), + [anon_sym_LT_LT_EQ] = ACTIONS(7699), + [anon_sym_GT_GT_EQ] = ACTIONS(7699), + [anon_sym_AMP_EQ] = ACTIONS(7699), + [anon_sym_CARET_EQ] = ACTIONS(7699), + [anon_sym_PIPE_EQ] = ACTIONS(7699), + [anon_sym_and_eq] = ACTIONS(7697), + [anon_sym_or_eq] = ACTIONS(7697), + [anon_sym_xor_eq] = ACTIONS(7697), + [anon_sym_LT_EQ_GT] = ACTIONS(7699), + [anon_sym_or] = ACTIONS(7697), + [anon_sym_and] = ACTIONS(7697), + [anon_sym_bitor] = ACTIONS(7697), + [anon_sym_xor] = ACTIONS(7697), + [anon_sym_bitand] = ACTIONS(7697), + [anon_sym_not_eq] = ACTIONS(7697), + [anon_sym_DASH_DASH] = ACTIONS(7699), + [anon_sym_PLUS_PLUS] = ACTIONS(7699), + [anon_sym_DOT] = ACTIONS(7697), + [anon_sym_DOT_STAR] = ACTIONS(7699), + [anon_sym_DASH_GT] = ACTIONS(7699), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7697), + [anon_sym_override] = ACTIONS(7697), + [anon_sym_requires] = ACTIONS(7697), + }, + [STATE(2215)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2219), + [sym_identifier] = ACTIONS(7701), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7703), + [anon_sym_COMMA] = ACTIONS(7703), + [aux_sym_preproc_if_token2] = ACTIONS(7703), + [aux_sym_preproc_else_token1] = ACTIONS(7703), + [aux_sym_preproc_elif_token1] = ACTIONS(7701), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7703), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7703), + [anon_sym_LPAREN2] = ACTIONS(7703), + [anon_sym_DASH] = ACTIONS(7701), + [anon_sym_PLUS] = ACTIONS(7701), + [anon_sym_STAR] = ACTIONS(7701), + [anon_sym_SLASH] = ACTIONS(7701), + [anon_sym_PERCENT] = ACTIONS(7701), + [anon_sym_PIPE_PIPE] = ACTIONS(7703), + [anon_sym_AMP_AMP] = ACTIONS(7703), + [anon_sym_PIPE] = ACTIONS(7701), + [anon_sym_CARET] = ACTIONS(7701), + [anon_sym_AMP] = ACTIONS(7701), + [anon_sym_EQ_EQ] = ACTIONS(7703), + [anon_sym_BANG_EQ] = ACTIONS(7703), + [anon_sym_GT] = ACTIONS(7701), + [anon_sym_GT_EQ] = ACTIONS(7703), + [anon_sym_LT_EQ] = ACTIONS(7701), + [anon_sym_LT] = ACTIONS(7701), + [anon_sym_LT_LT] = ACTIONS(7701), + [anon_sym_GT_GT] = ACTIONS(7701), + [anon_sym___extension__] = ACTIONS(7701), + [anon_sym___attribute__] = ACTIONS(7701), + [anon_sym___attribute] = ACTIONS(7701), + [anon_sym_LBRACE] = ACTIONS(7703), + [anon_sym_signed] = ACTIONS(7705), + [anon_sym_unsigned] = ACTIONS(7705), + [anon_sym_long] = ACTIONS(7705), + [anon_sym_short] = ACTIONS(7705), + [anon_sym_LBRACK] = ACTIONS(7703), + [anon_sym_RBRACK] = ACTIONS(7703), + [anon_sym_EQ] = ACTIONS(7701), + [anon_sym_const] = ACTIONS(7701), + [anon_sym_constexpr] = ACTIONS(7701), + [anon_sym_volatile] = ACTIONS(7701), + [anon_sym_restrict] = ACTIONS(7701), + [anon_sym___restrict__] = ACTIONS(7701), + [anon_sym__Atomic] = ACTIONS(7701), + [anon_sym__Noreturn] = ACTIONS(7701), + [anon_sym_noreturn] = ACTIONS(7701), + [anon_sym__Nonnull] = ACTIONS(7701), + [anon_sym_mutable] = ACTIONS(7701), + [anon_sym_constinit] = ACTIONS(7701), + [anon_sym_consteval] = ACTIONS(7701), + [anon_sym_alignas] = ACTIONS(7701), + [anon_sym__Alignas] = ACTIONS(7701), + [anon_sym_QMARK] = ACTIONS(7703), + [anon_sym_STAR_EQ] = ACTIONS(7703), + [anon_sym_SLASH_EQ] = ACTIONS(7703), + [anon_sym_PERCENT_EQ] = ACTIONS(7703), + [anon_sym_PLUS_EQ] = ACTIONS(7703), + [anon_sym_DASH_EQ] = ACTIONS(7703), + [anon_sym_LT_LT_EQ] = ACTIONS(7703), + [anon_sym_GT_GT_EQ] = ACTIONS(7703), + [anon_sym_AMP_EQ] = ACTIONS(7703), + [anon_sym_CARET_EQ] = ACTIONS(7703), + [anon_sym_PIPE_EQ] = ACTIONS(7703), + [anon_sym_and_eq] = ACTIONS(7701), + [anon_sym_or_eq] = ACTIONS(7701), + [anon_sym_xor_eq] = ACTIONS(7701), + [anon_sym_LT_EQ_GT] = ACTIONS(7703), + [anon_sym_or] = ACTIONS(7701), + [anon_sym_and] = ACTIONS(7701), + [anon_sym_bitor] = ACTIONS(7701), + [anon_sym_xor] = ACTIONS(7701), + [anon_sym_bitand] = ACTIONS(7701), + [anon_sym_not_eq] = ACTIONS(7701), + [anon_sym_DASH_DASH] = ACTIONS(7703), + [anon_sym_PLUS_PLUS] = ACTIONS(7703), + [anon_sym_DOT] = ACTIONS(7701), + [anon_sym_DOT_STAR] = ACTIONS(7703), + [anon_sym_DASH_GT] = ACTIONS(7703), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7701), + [anon_sym_override] = ACTIONS(7701), + [anon_sym_requires] = ACTIONS(7701), + }, + [STATE(2216)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(7707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7709), + [anon_sym_COMMA] = ACTIONS(7709), + [aux_sym_preproc_if_token2] = ACTIONS(7709), + [aux_sym_preproc_else_token1] = ACTIONS(7709), + [aux_sym_preproc_elif_token1] = ACTIONS(7707), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7709), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7709), + [anon_sym_LPAREN2] = ACTIONS(7709), + [anon_sym_DASH] = ACTIONS(7707), + [anon_sym_PLUS] = ACTIONS(7707), + [anon_sym_STAR] = ACTIONS(7707), + [anon_sym_SLASH] = ACTIONS(7707), + [anon_sym_PERCENT] = ACTIONS(7707), + [anon_sym_PIPE_PIPE] = ACTIONS(7709), + [anon_sym_AMP_AMP] = ACTIONS(7709), + [anon_sym_PIPE] = ACTIONS(7707), + [anon_sym_CARET] = ACTIONS(7707), + [anon_sym_AMP] = ACTIONS(7707), + [anon_sym_EQ_EQ] = ACTIONS(7709), + [anon_sym_BANG_EQ] = ACTIONS(7709), + [anon_sym_GT] = ACTIONS(7707), + [anon_sym_GT_EQ] = ACTIONS(7709), + [anon_sym_LT_EQ] = ACTIONS(7707), + [anon_sym_LT] = ACTIONS(7707), + [anon_sym_LT_LT] = ACTIONS(7707), + [anon_sym_GT_GT] = ACTIONS(7707), + [anon_sym___extension__] = ACTIONS(7707), + [anon_sym___attribute__] = ACTIONS(7707), + [anon_sym___attribute] = ACTIONS(7707), + [anon_sym_LBRACE] = ACTIONS(7709), + [anon_sym_signed] = ACTIONS(7711), + [anon_sym_unsigned] = ACTIONS(7711), + [anon_sym_long] = ACTIONS(7711), + [anon_sym_short] = ACTIONS(7711), + [anon_sym_LBRACK] = ACTIONS(7709), + [anon_sym_RBRACK] = ACTIONS(7709), + [anon_sym_EQ] = ACTIONS(7707), + [anon_sym_const] = ACTIONS(7707), + [anon_sym_constexpr] = ACTIONS(7707), + [anon_sym_volatile] = ACTIONS(7707), + [anon_sym_restrict] = ACTIONS(7707), + [anon_sym___restrict__] = ACTIONS(7707), + [anon_sym__Atomic] = ACTIONS(7707), + [anon_sym__Noreturn] = ACTIONS(7707), + [anon_sym_noreturn] = ACTIONS(7707), + [anon_sym__Nonnull] = ACTIONS(7707), + [anon_sym_mutable] = ACTIONS(7707), + [anon_sym_constinit] = ACTIONS(7707), + [anon_sym_consteval] = ACTIONS(7707), + [anon_sym_alignas] = ACTIONS(7707), + [anon_sym__Alignas] = ACTIONS(7707), + [anon_sym_QMARK] = ACTIONS(7709), + [anon_sym_STAR_EQ] = ACTIONS(7709), + [anon_sym_SLASH_EQ] = ACTIONS(7709), + [anon_sym_PERCENT_EQ] = ACTIONS(7709), + [anon_sym_PLUS_EQ] = ACTIONS(7709), + [anon_sym_DASH_EQ] = ACTIONS(7709), + [anon_sym_LT_LT_EQ] = ACTIONS(7709), + [anon_sym_GT_GT_EQ] = ACTIONS(7709), + [anon_sym_AMP_EQ] = ACTIONS(7709), + [anon_sym_CARET_EQ] = ACTIONS(7709), + [anon_sym_PIPE_EQ] = ACTIONS(7709), + [anon_sym_and_eq] = ACTIONS(7707), + [anon_sym_or_eq] = ACTIONS(7707), + [anon_sym_xor_eq] = ACTIONS(7707), + [anon_sym_LT_EQ_GT] = ACTIONS(7709), + [anon_sym_or] = ACTIONS(7707), + [anon_sym_and] = ACTIONS(7707), + [anon_sym_bitor] = ACTIONS(7707), + [anon_sym_xor] = ACTIONS(7707), + [anon_sym_bitand] = ACTIONS(7707), + [anon_sym_not_eq] = ACTIONS(7707), + [anon_sym_DASH_DASH] = ACTIONS(7709), + [anon_sym_PLUS_PLUS] = ACTIONS(7709), + [anon_sym_DOT] = ACTIONS(7707), + [anon_sym_DOT_STAR] = ACTIONS(7709), + [anon_sym_DASH_GT] = ACTIONS(7709), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7707), + [anon_sym_override] = ACTIONS(7707), + [anon_sym_requires] = ACTIONS(7707), + }, + [STATE(2217)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2212), + [sym_identifier] = ACTIONS(7713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7715), + [anon_sym_COMMA] = ACTIONS(7715), + [aux_sym_preproc_if_token2] = ACTIONS(7715), + [aux_sym_preproc_else_token1] = ACTIONS(7715), + [aux_sym_preproc_elif_token1] = ACTIONS(7713), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7715), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7715), + [anon_sym_LPAREN2] = ACTIONS(7715), + [anon_sym_DASH] = ACTIONS(7713), + [anon_sym_PLUS] = ACTIONS(7713), + [anon_sym_STAR] = ACTIONS(7713), + [anon_sym_SLASH] = ACTIONS(7713), + [anon_sym_PERCENT] = ACTIONS(7713), + [anon_sym_PIPE_PIPE] = ACTIONS(7715), + [anon_sym_AMP_AMP] = ACTIONS(7715), + [anon_sym_PIPE] = ACTIONS(7713), + [anon_sym_CARET] = ACTIONS(7713), + [anon_sym_AMP] = ACTIONS(7713), + [anon_sym_EQ_EQ] = ACTIONS(7715), + [anon_sym_BANG_EQ] = ACTIONS(7715), + [anon_sym_GT] = ACTIONS(7713), + [anon_sym_GT_EQ] = ACTIONS(7715), + [anon_sym_LT_EQ] = ACTIONS(7713), + [anon_sym_LT] = ACTIONS(7713), + [anon_sym_LT_LT] = ACTIONS(7713), + [anon_sym_GT_GT] = ACTIONS(7713), + [anon_sym___extension__] = ACTIONS(7713), + [anon_sym___attribute__] = ACTIONS(7713), + [anon_sym___attribute] = ACTIONS(7713), + [anon_sym_LBRACE] = ACTIONS(7715), + [anon_sym_signed] = ACTIONS(7679), + [anon_sym_unsigned] = ACTIONS(7679), + [anon_sym_long] = ACTIONS(7679), + [anon_sym_short] = ACTIONS(7679), + [anon_sym_LBRACK] = ACTIONS(7715), + [anon_sym_RBRACK] = ACTIONS(7715), + [anon_sym_EQ] = ACTIONS(7713), + [anon_sym_const] = ACTIONS(7713), + [anon_sym_constexpr] = ACTIONS(7713), + [anon_sym_volatile] = ACTIONS(7713), + [anon_sym_restrict] = ACTIONS(7713), + [anon_sym___restrict__] = ACTIONS(7713), + [anon_sym__Atomic] = ACTIONS(7713), + [anon_sym__Noreturn] = ACTIONS(7713), + [anon_sym_noreturn] = ACTIONS(7713), + [anon_sym__Nonnull] = ACTIONS(7713), + [anon_sym_mutable] = ACTIONS(7713), + [anon_sym_constinit] = ACTIONS(7713), + [anon_sym_consteval] = ACTIONS(7713), + [anon_sym_alignas] = ACTIONS(7713), + [anon_sym__Alignas] = ACTIONS(7713), + [anon_sym_QMARK] = ACTIONS(7715), + [anon_sym_STAR_EQ] = ACTIONS(7715), + [anon_sym_SLASH_EQ] = ACTIONS(7715), + [anon_sym_PERCENT_EQ] = ACTIONS(7715), + [anon_sym_PLUS_EQ] = ACTIONS(7715), + [anon_sym_DASH_EQ] = ACTIONS(7715), + [anon_sym_LT_LT_EQ] = ACTIONS(7715), + [anon_sym_GT_GT_EQ] = ACTIONS(7715), + [anon_sym_AMP_EQ] = ACTIONS(7715), + [anon_sym_CARET_EQ] = ACTIONS(7715), + [anon_sym_PIPE_EQ] = ACTIONS(7715), + [anon_sym_and_eq] = ACTIONS(7713), + [anon_sym_or_eq] = ACTIONS(7713), + [anon_sym_xor_eq] = ACTIONS(7713), + [anon_sym_LT_EQ_GT] = ACTIONS(7715), + [anon_sym_or] = ACTIONS(7713), + [anon_sym_and] = ACTIONS(7713), + [anon_sym_bitor] = ACTIONS(7713), + [anon_sym_xor] = ACTIONS(7713), + [anon_sym_bitand] = ACTIONS(7713), + [anon_sym_not_eq] = ACTIONS(7713), + [anon_sym_DASH_DASH] = ACTIONS(7715), + [anon_sym_PLUS_PLUS] = ACTIONS(7715), + [anon_sym_DOT] = ACTIONS(7713), + [anon_sym_DOT_STAR] = ACTIONS(7715), + [anon_sym_DASH_GT] = ACTIONS(7715), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7713), + [anon_sym_override] = ACTIONS(7713), + [anon_sym_requires] = ACTIONS(7713), + }, + [STATE(2218)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2208), + [sym_identifier] = ACTIONS(7717), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), + [anon_sym_COMMA] = ACTIONS(7719), + [aux_sym_preproc_if_token2] = ACTIONS(7719), + [aux_sym_preproc_else_token1] = ACTIONS(7719), + [aux_sym_preproc_elif_token1] = ACTIONS(7717), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7719), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7719), + [anon_sym_LPAREN2] = ACTIONS(7719), + [anon_sym_DASH] = ACTIONS(7717), + [anon_sym_PLUS] = ACTIONS(7717), + [anon_sym_STAR] = ACTIONS(7717), + [anon_sym_SLASH] = ACTIONS(7717), + [anon_sym_PERCENT] = ACTIONS(7717), + [anon_sym_PIPE_PIPE] = ACTIONS(7719), + [anon_sym_AMP_AMP] = ACTIONS(7719), + [anon_sym_PIPE] = ACTIONS(7717), + [anon_sym_CARET] = ACTIONS(7717), + [anon_sym_AMP] = ACTIONS(7717), + [anon_sym_EQ_EQ] = ACTIONS(7719), + [anon_sym_BANG_EQ] = ACTIONS(7719), + [anon_sym_GT] = ACTIONS(7717), + [anon_sym_GT_EQ] = ACTIONS(7719), + [anon_sym_LT_EQ] = ACTIONS(7717), + [anon_sym_LT] = ACTIONS(7717), + [anon_sym_LT_LT] = ACTIONS(7717), + [anon_sym_GT_GT] = ACTIONS(7717), + [anon_sym___extension__] = ACTIONS(7717), + [anon_sym___attribute__] = ACTIONS(7717), + [anon_sym___attribute] = ACTIONS(7717), + [anon_sym_LBRACE] = ACTIONS(7719), + [anon_sym_signed] = ACTIONS(7721), + [anon_sym_unsigned] = ACTIONS(7721), + [anon_sym_long] = ACTIONS(7721), + [anon_sym_short] = ACTIONS(7721), + [anon_sym_LBRACK] = ACTIONS(7719), + [anon_sym_RBRACK] = ACTIONS(7719), + [anon_sym_EQ] = ACTIONS(7717), + [anon_sym_const] = ACTIONS(7717), + [anon_sym_constexpr] = ACTIONS(7717), + [anon_sym_volatile] = ACTIONS(7717), + [anon_sym_restrict] = ACTIONS(7717), + [anon_sym___restrict__] = ACTIONS(7717), + [anon_sym__Atomic] = ACTIONS(7717), + [anon_sym__Noreturn] = ACTIONS(7717), + [anon_sym_noreturn] = ACTIONS(7717), + [anon_sym__Nonnull] = ACTIONS(7717), + [anon_sym_mutable] = ACTIONS(7717), + [anon_sym_constinit] = ACTIONS(7717), + [anon_sym_consteval] = ACTIONS(7717), + [anon_sym_alignas] = ACTIONS(7717), + [anon_sym__Alignas] = ACTIONS(7717), + [anon_sym_QMARK] = ACTIONS(7719), + [anon_sym_STAR_EQ] = ACTIONS(7719), + [anon_sym_SLASH_EQ] = ACTIONS(7719), + [anon_sym_PERCENT_EQ] = ACTIONS(7719), + [anon_sym_PLUS_EQ] = ACTIONS(7719), + [anon_sym_DASH_EQ] = ACTIONS(7719), + [anon_sym_LT_LT_EQ] = ACTIONS(7719), + [anon_sym_GT_GT_EQ] = ACTIONS(7719), + [anon_sym_AMP_EQ] = ACTIONS(7719), + [anon_sym_CARET_EQ] = ACTIONS(7719), + [anon_sym_PIPE_EQ] = ACTIONS(7719), + [anon_sym_and_eq] = ACTIONS(7717), + [anon_sym_or_eq] = ACTIONS(7717), + [anon_sym_xor_eq] = ACTIONS(7717), + [anon_sym_LT_EQ_GT] = ACTIONS(7719), + [anon_sym_or] = ACTIONS(7717), + [anon_sym_and] = ACTIONS(7717), + [anon_sym_bitor] = ACTIONS(7717), + [anon_sym_xor] = ACTIONS(7717), + [anon_sym_bitand] = ACTIONS(7717), + [anon_sym_not_eq] = ACTIONS(7717), + [anon_sym_DASH_DASH] = ACTIONS(7719), + [anon_sym_PLUS_PLUS] = ACTIONS(7719), + [anon_sym_DOT] = ACTIONS(7717), + [anon_sym_DOT_STAR] = ACTIONS(7719), + [anon_sym_DASH_GT] = ACTIONS(7719), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7717), + [anon_sym_override] = ACTIONS(7717), + [anon_sym_requires] = ACTIONS(7717), + }, + [STATE(2219)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2212), + [sym_identifier] = ACTIONS(7723), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), + [anon_sym_COMMA] = ACTIONS(7725), + [aux_sym_preproc_if_token2] = ACTIONS(7725), + [aux_sym_preproc_else_token1] = ACTIONS(7725), + [aux_sym_preproc_elif_token1] = ACTIONS(7723), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7725), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7725), + [anon_sym_LPAREN2] = ACTIONS(7725), + [anon_sym_DASH] = ACTIONS(7723), + [anon_sym_PLUS] = ACTIONS(7723), + [anon_sym_STAR] = ACTIONS(7723), + [anon_sym_SLASH] = ACTIONS(7723), + [anon_sym_PERCENT] = ACTIONS(7723), + [anon_sym_PIPE_PIPE] = ACTIONS(7725), + [anon_sym_AMP_AMP] = ACTIONS(7725), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_CARET] = ACTIONS(7723), + [anon_sym_AMP] = ACTIONS(7723), + [anon_sym_EQ_EQ] = ACTIONS(7725), + [anon_sym_BANG_EQ] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_EQ] = ACTIONS(7725), + [anon_sym_LT_EQ] = ACTIONS(7723), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_LT_LT] = ACTIONS(7723), + [anon_sym_GT_GT] = ACTIONS(7723), + [anon_sym___extension__] = ACTIONS(7723), + [anon_sym___attribute__] = ACTIONS(7723), + [anon_sym___attribute] = ACTIONS(7723), + [anon_sym_LBRACE] = ACTIONS(7725), + [anon_sym_signed] = ACTIONS(7679), + [anon_sym_unsigned] = ACTIONS(7679), + [anon_sym_long] = ACTIONS(7679), + [anon_sym_short] = ACTIONS(7679), + [anon_sym_LBRACK] = ACTIONS(7725), + [anon_sym_RBRACK] = ACTIONS(7725), + [anon_sym_EQ] = ACTIONS(7723), + [anon_sym_const] = ACTIONS(7723), + [anon_sym_constexpr] = ACTIONS(7723), + [anon_sym_volatile] = ACTIONS(7723), + [anon_sym_restrict] = ACTIONS(7723), + [anon_sym___restrict__] = ACTIONS(7723), + [anon_sym__Atomic] = ACTIONS(7723), + [anon_sym__Noreturn] = ACTIONS(7723), + [anon_sym_noreturn] = ACTIONS(7723), + [anon_sym__Nonnull] = ACTIONS(7723), + [anon_sym_mutable] = ACTIONS(7723), + [anon_sym_constinit] = ACTIONS(7723), + [anon_sym_consteval] = ACTIONS(7723), + [anon_sym_alignas] = ACTIONS(7723), + [anon_sym__Alignas] = ACTIONS(7723), + [anon_sym_QMARK] = ACTIONS(7725), + [anon_sym_STAR_EQ] = ACTIONS(7725), + [anon_sym_SLASH_EQ] = ACTIONS(7725), + [anon_sym_PERCENT_EQ] = ACTIONS(7725), + [anon_sym_PLUS_EQ] = ACTIONS(7725), + [anon_sym_DASH_EQ] = ACTIONS(7725), + [anon_sym_LT_LT_EQ] = ACTIONS(7725), + [anon_sym_GT_GT_EQ] = ACTIONS(7725), + [anon_sym_AMP_EQ] = ACTIONS(7725), + [anon_sym_CARET_EQ] = ACTIONS(7725), + [anon_sym_PIPE_EQ] = ACTIONS(7725), + [anon_sym_and_eq] = ACTIONS(7723), + [anon_sym_or_eq] = ACTIONS(7723), + [anon_sym_xor_eq] = ACTIONS(7723), + [anon_sym_LT_EQ_GT] = ACTIONS(7725), + [anon_sym_or] = ACTIONS(7723), + [anon_sym_and] = ACTIONS(7723), + [anon_sym_bitor] = ACTIONS(7723), + [anon_sym_xor] = ACTIONS(7723), + [anon_sym_bitand] = ACTIONS(7723), + [anon_sym_not_eq] = ACTIONS(7723), + [anon_sym_DASH_DASH] = ACTIONS(7725), + [anon_sym_PLUS_PLUS] = ACTIONS(7725), + [anon_sym_DOT] = ACTIONS(7723), + [anon_sym_DOT_STAR] = ACTIONS(7725), + [anon_sym_DASH_GT] = ACTIONS(7725), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7723), + [anon_sym_override] = ACTIONS(7723), + [anon_sym_requires] = ACTIONS(7723), + }, + [STATE(2220)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2212), + [sym_identifier] = ACTIONS(7727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7729), + [anon_sym_COMMA] = ACTIONS(7729), + [aux_sym_preproc_if_token2] = ACTIONS(7729), + [aux_sym_preproc_else_token1] = ACTIONS(7729), + [aux_sym_preproc_elif_token1] = ACTIONS(7727), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7729), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7729), + [anon_sym_LPAREN2] = ACTIONS(7729), + [anon_sym_DASH] = ACTIONS(7727), + [anon_sym_PLUS] = ACTIONS(7727), + [anon_sym_STAR] = ACTIONS(7727), + [anon_sym_SLASH] = ACTIONS(7727), + [anon_sym_PERCENT] = ACTIONS(7727), + [anon_sym_PIPE_PIPE] = ACTIONS(7729), + [anon_sym_AMP_AMP] = ACTIONS(7729), + [anon_sym_PIPE] = ACTIONS(7727), + [anon_sym_CARET] = ACTIONS(7727), + [anon_sym_AMP] = ACTIONS(7727), + [anon_sym_EQ_EQ] = ACTIONS(7729), + [anon_sym_BANG_EQ] = ACTIONS(7729), + [anon_sym_GT] = ACTIONS(7727), + [anon_sym_GT_EQ] = ACTIONS(7729), + [anon_sym_LT_EQ] = ACTIONS(7727), + [anon_sym_LT] = ACTIONS(7727), + [anon_sym_LT_LT] = ACTIONS(7727), + [anon_sym_GT_GT] = ACTIONS(7727), + [anon_sym___extension__] = ACTIONS(7727), + [anon_sym___attribute__] = ACTIONS(7727), + [anon_sym___attribute] = ACTIONS(7727), + [anon_sym_LBRACE] = ACTIONS(7729), + [anon_sym_signed] = ACTIONS(7679), + [anon_sym_unsigned] = ACTIONS(7679), + [anon_sym_long] = ACTIONS(7679), + [anon_sym_short] = ACTIONS(7679), + [anon_sym_LBRACK] = ACTIONS(7729), + [anon_sym_RBRACK] = ACTIONS(7729), + [anon_sym_EQ] = ACTIONS(7727), + [anon_sym_const] = ACTIONS(7727), + [anon_sym_constexpr] = ACTIONS(7727), + [anon_sym_volatile] = ACTIONS(7727), + [anon_sym_restrict] = ACTIONS(7727), + [anon_sym___restrict__] = ACTIONS(7727), + [anon_sym__Atomic] = ACTIONS(7727), + [anon_sym__Noreturn] = ACTIONS(7727), + [anon_sym_noreturn] = ACTIONS(7727), + [anon_sym__Nonnull] = ACTIONS(7727), + [anon_sym_mutable] = ACTIONS(7727), + [anon_sym_constinit] = ACTIONS(7727), + [anon_sym_consteval] = ACTIONS(7727), + [anon_sym_alignas] = ACTIONS(7727), + [anon_sym__Alignas] = ACTIONS(7727), + [anon_sym_QMARK] = ACTIONS(7729), + [anon_sym_STAR_EQ] = ACTIONS(7729), + [anon_sym_SLASH_EQ] = ACTIONS(7729), + [anon_sym_PERCENT_EQ] = ACTIONS(7729), + [anon_sym_PLUS_EQ] = ACTIONS(7729), + [anon_sym_DASH_EQ] = ACTIONS(7729), + [anon_sym_LT_LT_EQ] = ACTIONS(7729), + [anon_sym_GT_GT_EQ] = ACTIONS(7729), + [anon_sym_AMP_EQ] = ACTIONS(7729), + [anon_sym_CARET_EQ] = ACTIONS(7729), + [anon_sym_PIPE_EQ] = ACTIONS(7729), + [anon_sym_and_eq] = ACTIONS(7727), + [anon_sym_or_eq] = ACTIONS(7727), + [anon_sym_xor_eq] = ACTIONS(7727), + [anon_sym_LT_EQ_GT] = ACTIONS(7729), + [anon_sym_or] = ACTIONS(7727), + [anon_sym_and] = ACTIONS(7727), + [anon_sym_bitor] = ACTIONS(7727), + [anon_sym_xor] = ACTIONS(7727), + [anon_sym_bitand] = ACTIONS(7727), + [anon_sym_not_eq] = ACTIONS(7727), + [anon_sym_DASH_DASH] = ACTIONS(7729), + [anon_sym_PLUS_PLUS] = ACTIONS(7729), + [anon_sym_DOT] = ACTIONS(7727), + [anon_sym_DOT_STAR] = ACTIONS(7729), + [anon_sym_DASH_GT] = ACTIONS(7729), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7727), + [anon_sym_override] = ACTIONS(7727), + [anon_sym_requires] = ACTIONS(7727), + }, + [STATE(2221)] = { + [sym_identifier] = ACTIONS(7731), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7733), + [anon_sym_COMMA] = ACTIONS(7733), + [anon_sym_RPAREN] = ACTIONS(7733), + [aux_sym_preproc_if_token2] = ACTIONS(7733), + [aux_sym_preproc_else_token1] = ACTIONS(7733), + [aux_sym_preproc_elif_token1] = ACTIONS(7731), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7733), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7733), + [anon_sym_LPAREN2] = ACTIONS(7733), + [anon_sym_DASH] = ACTIONS(7731), + [anon_sym_PLUS] = ACTIONS(7731), + [anon_sym_STAR] = ACTIONS(7731), + [anon_sym_SLASH] = ACTIONS(7731), + [anon_sym_PERCENT] = ACTIONS(7731), + [anon_sym_PIPE_PIPE] = ACTIONS(7733), + [anon_sym_AMP_AMP] = ACTIONS(7733), + [anon_sym_PIPE] = ACTIONS(7731), + [anon_sym_CARET] = ACTIONS(7731), + [anon_sym_AMP] = ACTIONS(7731), + [anon_sym_EQ_EQ] = ACTIONS(7733), + [anon_sym_BANG_EQ] = ACTIONS(7733), + [anon_sym_GT] = ACTIONS(7731), + [anon_sym_GT_EQ] = ACTIONS(7733), + [anon_sym_LT_EQ] = ACTIONS(7731), + [anon_sym_LT] = ACTIONS(7731), + [anon_sym_LT_LT] = ACTIONS(7731), + [anon_sym_GT_GT] = ACTIONS(7731), + [anon_sym_SEMI] = ACTIONS(7733), + [anon_sym___extension__] = ACTIONS(7731), + [anon_sym___attribute__] = ACTIONS(7731), + [anon_sym___attribute] = ACTIONS(7731), + [anon_sym_COLON] = ACTIONS(7731), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7733), + [anon_sym_LBRACE] = ACTIONS(7733), + [anon_sym_RBRACE] = ACTIONS(7733), + [anon_sym_LBRACK] = ACTIONS(7733), + [anon_sym_EQ] = ACTIONS(7731), + [anon_sym_const] = ACTIONS(7731), + [anon_sym_constexpr] = ACTIONS(7731), + [anon_sym_volatile] = ACTIONS(7731), + [anon_sym_restrict] = ACTIONS(7731), + [anon_sym___restrict__] = ACTIONS(7731), + [anon_sym__Atomic] = ACTIONS(7731), + [anon_sym__Noreturn] = ACTIONS(7731), + [anon_sym_noreturn] = ACTIONS(7731), + [anon_sym__Nonnull] = ACTIONS(7731), + [anon_sym_mutable] = ACTIONS(7731), + [anon_sym_constinit] = ACTIONS(7731), + [anon_sym_consteval] = ACTIONS(7731), + [anon_sym_alignas] = ACTIONS(7731), + [anon_sym__Alignas] = ACTIONS(7731), + [anon_sym_QMARK] = ACTIONS(7733), + [anon_sym_STAR_EQ] = ACTIONS(7733), + [anon_sym_SLASH_EQ] = ACTIONS(7733), + [anon_sym_PERCENT_EQ] = ACTIONS(7733), + [anon_sym_PLUS_EQ] = ACTIONS(7733), + [anon_sym_DASH_EQ] = ACTIONS(7733), + [anon_sym_LT_LT_EQ] = ACTIONS(7733), + [anon_sym_GT_GT_EQ] = ACTIONS(7733), + [anon_sym_AMP_EQ] = ACTIONS(7733), + [anon_sym_CARET_EQ] = ACTIONS(7733), + [anon_sym_PIPE_EQ] = ACTIONS(7733), + [anon_sym_and_eq] = ACTIONS(7731), + [anon_sym_or_eq] = ACTIONS(7731), + [anon_sym_xor_eq] = ACTIONS(7731), + [anon_sym_LT_EQ_GT] = ACTIONS(7733), + [anon_sym_or] = ACTIONS(7731), + [anon_sym_and] = ACTIONS(7731), + [anon_sym_bitor] = ACTIONS(7731), + [anon_sym_xor] = ACTIONS(7731), + [anon_sym_bitand] = ACTIONS(7731), + [anon_sym_not_eq] = ACTIONS(7731), + [anon_sym_DASH_DASH] = ACTIONS(7733), + [anon_sym_PLUS_PLUS] = ACTIONS(7733), + [anon_sym_DOT] = ACTIONS(7731), + [anon_sym_DOT_STAR] = ACTIONS(7733), + [anon_sym_DASH_GT] = ACTIONS(7733), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7731), + [anon_sym_override] = ACTIONS(7731), + [anon_sym_requires] = ACTIONS(7731), + [anon_sym_COLON_RBRACK] = ACTIONS(7733), + }, + [STATE(2222)] = { + [sym_identifier] = ACTIONS(7223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [aux_sym_preproc_if_token2] = ACTIONS(7225), + [aux_sym_preproc_else_token1] = ACTIONS(7225), + [aux_sym_preproc_elif_token1] = ACTIONS(7223), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym_SEMI] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym___attribute__] = ACTIONS(7223), + [anon_sym___attribute] = ACTIONS(7223), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_RBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7223), + [anon_sym__Alignas] = ACTIONS(7223), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7223), + [anon_sym_or_eq] = ACTIONS(7223), + [anon_sym_xor_eq] = ACTIONS(7223), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7223), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7223), + [anon_sym_not_eq] = ACTIONS(7223), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7223), + [anon_sym_override] = ACTIONS(7223), + [anon_sym_requires] = ACTIONS(7223), + [anon_sym_COLON_RBRACK] = ACTIONS(7225), }, - [STATE(2267)] = { - [sym__abstract_declarator] = STATE(4690), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(1913), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1871), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(1913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), - [anon_sym_COMMA] = ACTIONS(7003), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(6838), - [anon_sym_SLASH] = ACTIONS(7005), - [anon_sym_PERCENT] = ACTIONS(7005), - [anon_sym_PIPE_PIPE] = ACTIONS(7003), - [anon_sym_AMP_AMP] = ACTIONS(6840), - [anon_sym_PIPE] = ACTIONS(7005), - [anon_sym_CARET] = ACTIONS(7005), - [anon_sym_AMP] = ACTIONS(6842), - [anon_sym_EQ_EQ] = ACTIONS(7003), - [anon_sym_BANG_EQ] = ACTIONS(7003), - [anon_sym_GT] = ACTIONS(7005), - [anon_sym_GT_EQ] = ACTIONS(7003), - [anon_sym_LT_EQ] = ACTIONS(7005), - [anon_sym_LT] = ACTIONS(7005), - [anon_sym_LT_LT] = ACTIONS(7005), - [anon_sym_GT_GT] = ACTIONS(7005), - [anon_sym_SEMI] = ACTIONS(7003), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym___attribute__] = ACTIONS(7003), - [anon_sym___attribute] = ACTIONS(7005), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(7005), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(7003), - [anon_sym_STAR_EQ] = ACTIONS(7003), - [anon_sym_SLASH_EQ] = ACTIONS(7003), - [anon_sym_PERCENT_EQ] = ACTIONS(7003), - [anon_sym_PLUS_EQ] = ACTIONS(7003), - [anon_sym_DASH_EQ] = ACTIONS(7003), - [anon_sym_LT_LT_EQ] = ACTIONS(7003), - [anon_sym_GT_GT_EQ] = ACTIONS(7003), - [anon_sym_AMP_EQ] = ACTIONS(7003), - [anon_sym_CARET_EQ] = ACTIONS(7003), - [anon_sym_PIPE_EQ] = ACTIONS(7003), - [anon_sym_and_eq] = ACTIONS(7003), - [anon_sym_or_eq] = ACTIONS(7003), - [anon_sym_xor_eq] = ACTIONS(7003), - [anon_sym_LT_EQ_GT] = ACTIONS(7003), - [anon_sym_or] = ACTIONS(7005), - [anon_sym_and] = ACTIONS(7005), - [anon_sym_bitor] = ACTIONS(7003), - [anon_sym_xor] = ACTIONS(7005), - [anon_sym_bitand] = ACTIONS(7003), - [anon_sym_not_eq] = ACTIONS(7003), - [anon_sym_DASH_DASH] = ACTIONS(7003), - [anon_sym_PLUS_PLUS] = ACTIONS(7003), - [anon_sym_DOT] = ACTIONS(7005), - [anon_sym_DOT_STAR] = ACTIONS(7003), - [anon_sym_DASH_GT] = ACTIONS(7003), + [STATE(2223)] = { + [sym_argument_list] = STATE(3894), + [sym_initializer_list] = STATE(3899), + [sym_identifier] = ACTIONS(7223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [aux_sym_preproc_if_token2] = ACTIONS(7225), + [aux_sym_preproc_else_token1] = ACTIONS(7225), + [aux_sym_preproc_elif_token1] = ACTIONS(7223), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7687), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym_SEMI] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym___attribute__] = ACTIONS(7223), + [anon_sym___attribute] = ACTIONS(7223), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7223), + [anon_sym__Alignas] = ACTIONS(7223), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7223), + [anon_sym_or_eq] = ACTIONS(7223), + [anon_sym_xor_eq] = ACTIONS(7223), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7223), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7223), + [anon_sym_not_eq] = ACTIONS(7223), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7225), }, - [STATE(2268)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2792), - [sym_ms_pointer_modifier] = STATE(2423), - [sym__abstract_declarator] = STATE(6058), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(2909), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(1971), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(2909), - [aux_sym_pointer_declarator_repeat1] = STATE(2423), - [sym_identifier] = ACTIONS(6495), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [aux_sym_preproc_if_token2] = ACTIONS(6497), - [aux_sym_preproc_else_token1] = ACTIONS(6497), - [aux_sym_preproc_elif_token1] = ACTIONS(6495), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6497), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(7733), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6497), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(7735), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6497), - [anon_sym_AMP] = ACTIONS(7737), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6497), - [anon_sym_GT_GT] = ACTIONS(6497), + [STATE(2224)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2931), + [sym_ms_pointer_modifier] = STATE(2645), + [sym__abstract_declarator] = STATE(5783), + [sym_abstract_parenthesized_declarator] = STATE(5693), + [sym_abstract_pointer_declarator] = STATE(5693), + [sym_abstract_function_declarator] = STATE(5693), + [sym_abstract_array_declarator] = STATE(5693), + [sym_type_qualifier] = STATE(2604), + [sym_alignas_qualifier] = STATE(2576), + [sym_parameter_list] = STATE(1989), + [sym_abstract_reference_declarator] = STATE(5693), + [sym__function_declarator_seq] = STATE(5694), + [aux_sym__type_definition_type_repeat1] = STATE(2604), + [aux_sym_pointer_declarator_repeat1] = STATE(2645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(7589), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(7591), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(7593), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(7313), + [sym_ms_restrict_modifier] = ACTIONS(7315), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7317), + [sym_ms_signed_ptr_modifier] = ACTIONS(7317), + [anon_sym__unaligned] = ACTIONS(7319), + [anon_sym___unaligned] = ACTIONS(7319), + [anon_sym_LBRACK] = ACTIONS(7321), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(7323), + [anon_sym_constexpr] = ACTIONS(7313), + [anon_sym_volatile] = ACTIONS(7313), + [anon_sym_restrict] = ACTIONS(7313), + [anon_sym___restrict__] = ACTIONS(7313), + [anon_sym__Atomic] = ACTIONS(7313), + [anon_sym__Noreturn] = ACTIONS(7313), + [anon_sym_noreturn] = ACTIONS(7313), + [anon_sym__Nonnull] = ACTIONS(7313), + [anon_sym_mutable] = ACTIONS(7313), + [anon_sym_constinit] = ACTIONS(7313), + [anon_sym_consteval] = ACTIONS(7313), + [anon_sym_alignas] = ACTIONS(7325), + [anon_sym__Alignas] = ACTIONS(7325), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6823), + [anon_sym_and] = ACTIONS(6823), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6823), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6821), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6823), + }, + [STATE(2225)] = { + [sym_identifier] = ACTIONS(7735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7737), + [anon_sym_COMMA] = ACTIONS(7737), + [anon_sym_RPAREN] = ACTIONS(7737), + [aux_sym_preproc_if_token2] = ACTIONS(7737), + [aux_sym_preproc_else_token1] = ACTIONS(7737), + [aux_sym_preproc_elif_token1] = ACTIONS(7735), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7737), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7737), + [anon_sym_LPAREN2] = ACTIONS(7737), + [anon_sym_DASH] = ACTIONS(7735), + [anon_sym_PLUS] = ACTIONS(7735), + [anon_sym_STAR] = ACTIONS(7735), + [anon_sym_SLASH] = ACTIONS(7735), + [anon_sym_PERCENT] = ACTIONS(7735), + [anon_sym_PIPE_PIPE] = ACTIONS(7737), + [anon_sym_AMP_AMP] = ACTIONS(7737), + [anon_sym_PIPE] = ACTIONS(7735), + [anon_sym_CARET] = ACTIONS(7735), + [anon_sym_AMP] = ACTIONS(7735), + [anon_sym_EQ_EQ] = ACTIONS(7737), + [anon_sym_BANG_EQ] = ACTIONS(7737), + [anon_sym_GT] = ACTIONS(7735), + [anon_sym_GT_EQ] = ACTIONS(7737), + [anon_sym_LT_EQ] = ACTIONS(7735), + [anon_sym_LT] = ACTIONS(7735), + [anon_sym_LT_LT] = ACTIONS(7735), + [anon_sym_GT_GT] = ACTIONS(7735), + [anon_sym_SEMI] = ACTIONS(7737), + [anon_sym___extension__] = ACTIONS(7735), + [anon_sym___attribute__] = ACTIONS(7735), + [anon_sym___attribute] = ACTIONS(7735), + [anon_sym_COLON] = ACTIONS(7735), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7737), + [anon_sym_LBRACE] = ACTIONS(7737), + [anon_sym_RBRACE] = ACTIONS(7737), + [anon_sym_LBRACK] = ACTIONS(7737), + [anon_sym_EQ] = ACTIONS(7735), + [anon_sym_const] = ACTIONS(7735), + [anon_sym_constexpr] = ACTIONS(7735), + [anon_sym_volatile] = ACTIONS(7735), + [anon_sym_restrict] = ACTIONS(7735), + [anon_sym___restrict__] = ACTIONS(7735), + [anon_sym__Atomic] = ACTIONS(7735), + [anon_sym__Noreturn] = ACTIONS(7735), + [anon_sym_noreturn] = ACTIONS(7735), + [anon_sym__Nonnull] = ACTIONS(7735), + [anon_sym_mutable] = ACTIONS(7735), + [anon_sym_constinit] = ACTIONS(7735), + [anon_sym_consteval] = ACTIONS(7735), + [anon_sym_alignas] = ACTIONS(7735), + [anon_sym__Alignas] = ACTIONS(7735), + [anon_sym_QMARK] = ACTIONS(7737), + [anon_sym_STAR_EQ] = ACTIONS(7737), + [anon_sym_SLASH_EQ] = ACTIONS(7737), + [anon_sym_PERCENT_EQ] = ACTIONS(7737), + [anon_sym_PLUS_EQ] = ACTIONS(7737), + [anon_sym_DASH_EQ] = ACTIONS(7737), + [anon_sym_LT_LT_EQ] = ACTIONS(7737), + [anon_sym_GT_GT_EQ] = ACTIONS(7737), + [anon_sym_AMP_EQ] = ACTIONS(7737), + [anon_sym_CARET_EQ] = ACTIONS(7737), + [anon_sym_PIPE_EQ] = ACTIONS(7737), + [anon_sym_and_eq] = ACTIONS(7735), + [anon_sym_or_eq] = ACTIONS(7735), + [anon_sym_xor_eq] = ACTIONS(7735), + [anon_sym_LT_EQ_GT] = ACTIONS(7737), + [anon_sym_or] = ACTIONS(7735), + [anon_sym_and] = ACTIONS(7735), + [anon_sym_bitor] = ACTIONS(7735), + [anon_sym_xor] = ACTIONS(7735), + [anon_sym_bitand] = ACTIONS(7735), + [anon_sym_not_eq] = ACTIONS(7735), + [anon_sym_DASH_DASH] = ACTIONS(7737), + [anon_sym_PLUS_PLUS] = ACTIONS(7737), + [anon_sym_DOT] = ACTIONS(7735), + [anon_sym_DOT_STAR] = ACTIONS(7737), + [anon_sym_DASH_GT] = ACTIONS(7737), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7735), + [anon_sym_override] = ACTIONS(7735), + [anon_sym_requires] = ACTIONS(7735), + [anon_sym_COLON_RBRACK] = ACTIONS(7737), + }, + [STATE(2226)] = { + [sym_identifier] = ACTIONS(7717), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), + [anon_sym_COMMA] = ACTIONS(7719), + [anon_sym_RPAREN] = ACTIONS(7719), + [aux_sym_preproc_if_token2] = ACTIONS(7719), + [aux_sym_preproc_else_token1] = ACTIONS(7719), + [aux_sym_preproc_elif_token1] = ACTIONS(7717), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7719), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7719), + [anon_sym_LPAREN2] = ACTIONS(7719), + [anon_sym_DASH] = ACTIONS(7717), + [anon_sym_PLUS] = ACTIONS(7717), + [anon_sym_STAR] = ACTIONS(7717), + [anon_sym_SLASH] = ACTIONS(7717), + [anon_sym_PERCENT] = ACTIONS(7717), + [anon_sym_PIPE_PIPE] = ACTIONS(7719), + [anon_sym_AMP_AMP] = ACTIONS(7719), + [anon_sym_PIPE] = ACTIONS(7717), + [anon_sym_CARET] = ACTIONS(7717), + [anon_sym_AMP] = ACTIONS(7717), + [anon_sym_EQ_EQ] = ACTIONS(7719), + [anon_sym_BANG_EQ] = ACTIONS(7719), + [anon_sym_GT] = ACTIONS(7717), + [anon_sym_GT_EQ] = ACTIONS(7719), + [anon_sym_LT_EQ] = ACTIONS(7717), + [anon_sym_LT] = ACTIONS(7717), + [anon_sym_LT_LT] = ACTIONS(7717), + [anon_sym_GT_GT] = ACTIONS(7717), + [anon_sym_SEMI] = ACTIONS(7719), + [anon_sym___extension__] = ACTIONS(7717), + [anon_sym___attribute__] = ACTIONS(7717), + [anon_sym___attribute] = ACTIONS(7717), + [anon_sym_COLON] = ACTIONS(7717), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7719), + [anon_sym_LBRACE] = ACTIONS(7719), + [anon_sym_RBRACE] = ACTIONS(7719), + [anon_sym_LBRACK] = ACTIONS(7719), + [anon_sym_EQ] = ACTIONS(7717), + [anon_sym_const] = ACTIONS(7717), + [anon_sym_constexpr] = ACTIONS(7717), + [anon_sym_volatile] = ACTIONS(7717), + [anon_sym_restrict] = ACTIONS(7717), + [anon_sym___restrict__] = ACTIONS(7717), + [anon_sym__Atomic] = ACTIONS(7717), + [anon_sym__Noreturn] = ACTIONS(7717), + [anon_sym_noreturn] = ACTIONS(7717), + [anon_sym__Nonnull] = ACTIONS(7717), + [anon_sym_mutable] = ACTIONS(7717), + [anon_sym_constinit] = ACTIONS(7717), + [anon_sym_consteval] = ACTIONS(7717), + [anon_sym_alignas] = ACTIONS(7717), + [anon_sym__Alignas] = ACTIONS(7717), + [anon_sym_QMARK] = ACTIONS(7719), + [anon_sym_STAR_EQ] = ACTIONS(7719), + [anon_sym_SLASH_EQ] = ACTIONS(7719), + [anon_sym_PERCENT_EQ] = ACTIONS(7719), + [anon_sym_PLUS_EQ] = ACTIONS(7719), + [anon_sym_DASH_EQ] = ACTIONS(7719), + [anon_sym_LT_LT_EQ] = ACTIONS(7719), + [anon_sym_GT_GT_EQ] = ACTIONS(7719), + [anon_sym_AMP_EQ] = ACTIONS(7719), + [anon_sym_CARET_EQ] = ACTIONS(7719), + [anon_sym_PIPE_EQ] = ACTIONS(7719), + [anon_sym_and_eq] = ACTIONS(7717), + [anon_sym_or_eq] = ACTIONS(7717), + [anon_sym_xor_eq] = ACTIONS(7717), + [anon_sym_LT_EQ_GT] = ACTIONS(7719), + [anon_sym_or] = ACTIONS(7717), + [anon_sym_and] = ACTIONS(7717), + [anon_sym_bitor] = ACTIONS(7717), + [anon_sym_xor] = ACTIONS(7717), + [anon_sym_bitand] = ACTIONS(7717), + [anon_sym_not_eq] = ACTIONS(7717), + [anon_sym_DASH_DASH] = ACTIONS(7719), + [anon_sym_PLUS_PLUS] = ACTIONS(7719), + [anon_sym_DOT] = ACTIONS(7717), + [anon_sym_DOT_STAR] = ACTIONS(7719), + [anon_sym_DASH_GT] = ACTIONS(7719), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7717), + [anon_sym_override] = ACTIONS(7717), + [anon_sym_requires] = ACTIONS(7717), + [anon_sym_COLON_RBRACK] = ACTIONS(7719), + }, + [STATE(2227)] = { + [sym_identifier] = ACTIONS(7739), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7741), + [anon_sym_COMMA] = ACTIONS(7741), + [anon_sym_RPAREN] = ACTIONS(7741), + [aux_sym_preproc_if_token2] = ACTIONS(7741), + [aux_sym_preproc_else_token1] = ACTIONS(7741), + [aux_sym_preproc_elif_token1] = ACTIONS(7739), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7741), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7741), + [anon_sym_LPAREN2] = ACTIONS(7741), + [anon_sym_DASH] = ACTIONS(7739), + [anon_sym_PLUS] = ACTIONS(7739), + [anon_sym_STAR] = ACTIONS(7739), + [anon_sym_SLASH] = ACTIONS(7739), + [anon_sym_PERCENT] = ACTIONS(7739), + [anon_sym_PIPE_PIPE] = ACTIONS(7741), + [anon_sym_AMP_AMP] = ACTIONS(7741), + [anon_sym_PIPE] = ACTIONS(7739), + [anon_sym_CARET] = ACTIONS(7739), + [anon_sym_AMP] = ACTIONS(7739), + [anon_sym_EQ_EQ] = ACTIONS(7741), + [anon_sym_BANG_EQ] = ACTIONS(7741), + [anon_sym_GT] = ACTIONS(7739), + [anon_sym_GT_EQ] = ACTIONS(7741), + [anon_sym_LT_EQ] = ACTIONS(7739), + [anon_sym_LT] = ACTIONS(7739), + [anon_sym_LT_LT] = ACTIONS(7739), + [anon_sym_GT_GT] = ACTIONS(7739), + [anon_sym_SEMI] = ACTIONS(7741), [anon_sym___extension__] = ACTIONS(7739), - [sym_ms_restrict_modifier] = ACTIONS(7741), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7741), - [sym_ms_signed_ptr_modifier] = ACTIONS(7741), - [anon_sym__unaligned] = ACTIONS(7743), - [anon_sym___unaligned] = ACTIONS(7743), - [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym___attribute__] = ACTIONS(7739), + [anon_sym___attribute] = ACTIONS(7739), + [anon_sym_COLON] = ACTIONS(7739), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7741), + [anon_sym_LBRACE] = ACTIONS(7741), + [anon_sym_RBRACE] = ACTIONS(7741), + [anon_sym_LBRACK] = ACTIONS(7741), + [anon_sym_EQ] = ACTIONS(7739), [anon_sym_const] = ACTIONS(7739), [anon_sym_constexpr] = ACTIONS(7739), [anon_sym_volatile] = ACTIONS(7739), @@ -324648,4402 +333652,2112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(7739), [anon_sym_constinit] = ACTIONS(7739), [anon_sym_consteval] = ACTIONS(7739), - [anon_sym_alignas] = ACTIONS(7747), - [anon_sym__Alignas] = ACTIONS(7747), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6495), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6495), - [anon_sym_not_eq] = ACTIONS(6495), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6495), - [anon_sym_override] = ACTIONS(6495), - [anon_sym_requires] = ACTIONS(6495), + [anon_sym_alignas] = ACTIONS(7739), + [anon_sym__Alignas] = ACTIONS(7739), + [anon_sym_QMARK] = ACTIONS(7741), + [anon_sym_STAR_EQ] = ACTIONS(7741), + [anon_sym_SLASH_EQ] = ACTIONS(7741), + [anon_sym_PERCENT_EQ] = ACTIONS(7741), + [anon_sym_PLUS_EQ] = ACTIONS(7741), + [anon_sym_DASH_EQ] = ACTIONS(7741), + [anon_sym_LT_LT_EQ] = ACTIONS(7741), + [anon_sym_GT_GT_EQ] = ACTIONS(7741), + [anon_sym_AMP_EQ] = ACTIONS(7741), + [anon_sym_CARET_EQ] = ACTIONS(7741), + [anon_sym_PIPE_EQ] = ACTIONS(7741), + [anon_sym_and_eq] = ACTIONS(7739), + [anon_sym_or_eq] = ACTIONS(7739), + [anon_sym_xor_eq] = ACTIONS(7739), + [anon_sym_LT_EQ_GT] = ACTIONS(7741), + [anon_sym_or] = ACTIONS(7739), + [anon_sym_and] = ACTIONS(7739), + [anon_sym_bitor] = ACTIONS(7739), + [anon_sym_xor] = ACTIONS(7739), + [anon_sym_bitand] = ACTIONS(7739), + [anon_sym_not_eq] = ACTIONS(7739), + [anon_sym_DASH_DASH] = ACTIONS(7741), + [anon_sym_PLUS_PLUS] = ACTIONS(7741), + [anon_sym_DOT] = ACTIONS(7739), + [anon_sym_DOT_STAR] = ACTIONS(7741), + [anon_sym_DASH_GT] = ACTIONS(7741), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7739), + [anon_sym_override] = ACTIONS(7739), + [anon_sym_requires] = ACTIONS(7739), + [anon_sym_COLON_RBRACK] = ACTIONS(7741), }, - [STATE(2269)] = { - [sym_type_qualifier] = STATE(2259), - [sym_alignas_qualifier] = STATE(2295), - [aux_sym__type_definition_type_repeat1] = STATE(2259), - [aux_sym_sized_type_specifier_repeat1] = STATE(2430), - [sym_identifier] = ACTIONS(7563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), - [anon_sym_COMMA] = ACTIONS(6812), - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_STAR] = ACTIONS(6814), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_PERCENT] = ACTIONS(6814), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_CARET] = ACTIONS(6814), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6814), - [anon_sym_LT_EQ] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_LT_LT] = ACTIONS(6814), - [anon_sym_GT_GT] = ACTIONS(6814), - [anon_sym___extension__] = ACTIONS(6742), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_signed] = ACTIONS(7749), - [anon_sym_unsigned] = ACTIONS(7749), - [anon_sym_long] = ACTIONS(7749), - [anon_sym_short] = ACTIONS(7749), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_EQ] = ACTIONS(6814), - [anon_sym_const] = ACTIONS(6742), - [anon_sym_constexpr] = ACTIONS(6742), - [anon_sym_volatile] = ACTIONS(6742), - [anon_sym_restrict] = ACTIONS(6742), - [anon_sym___restrict__] = ACTIONS(6742), - [anon_sym__Atomic] = ACTIONS(6742), - [anon_sym__Noreturn] = ACTIONS(6742), - [anon_sym_noreturn] = ACTIONS(6742), - [anon_sym__Nonnull] = ACTIONS(6742), - [anon_sym_mutable] = ACTIONS(6742), - [anon_sym_constinit] = ACTIONS(6742), - [anon_sym_consteval] = ACTIONS(6742), - [anon_sym_alignas] = ACTIONS(7720), - [anon_sym__Alignas] = ACTIONS(7720), - [sym_primitive_type] = ACTIONS(7573), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_STAR_EQ] = ACTIONS(6812), - [anon_sym_SLASH_EQ] = ACTIONS(6812), - [anon_sym_PERCENT_EQ] = ACTIONS(6812), - [anon_sym_PLUS_EQ] = ACTIONS(6812), - [anon_sym_DASH_EQ] = ACTIONS(6812), - [anon_sym_LT_LT_EQ] = ACTIONS(6812), - [anon_sym_GT_GT_EQ] = ACTIONS(6814), - [anon_sym_AMP_EQ] = ACTIONS(6812), - [anon_sym_CARET_EQ] = ACTIONS(6812), - [anon_sym_PIPE_EQ] = ACTIONS(6812), - [anon_sym_and_eq] = ACTIONS(6814), - [anon_sym_or_eq] = ACTIONS(6814), - [anon_sym_xor_eq] = ACTIONS(6814), - [anon_sym_LT_EQ_GT] = ACTIONS(6812), - [anon_sym_or] = ACTIONS(6814), - [anon_sym_and] = ACTIONS(6814), - [anon_sym_bitor] = ACTIONS(6814), - [anon_sym_xor] = ACTIONS(6814), - [anon_sym_bitand] = ACTIONS(6814), - [anon_sym_not_eq] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6814), - [anon_sym_DOT_STAR] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6812), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(6812), - }, - [STATE(2270)] = { - [sym__abstract_declarator] = STATE(4695), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_type_qualifier] = STATE(1913), - [sym_alignas_qualifier] = STATE(1953), - [sym_parameter_list] = STATE(1871), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [aux_sym__type_definition_type_repeat1] = STATE(1913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), - [anon_sym_COMMA] = ACTIONS(7007), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(7009), - [anon_sym_PLUS] = ACTIONS(7009), - [anon_sym_STAR] = ACTIONS(6838), - [anon_sym_SLASH] = ACTIONS(7009), - [anon_sym_PERCENT] = ACTIONS(7009), - [anon_sym_PIPE_PIPE] = ACTIONS(7007), - [anon_sym_AMP_AMP] = ACTIONS(6840), - [anon_sym_PIPE] = ACTIONS(7009), - [anon_sym_CARET] = ACTIONS(7009), - [anon_sym_AMP] = ACTIONS(6842), - [anon_sym_EQ_EQ] = ACTIONS(7007), - [anon_sym_BANG_EQ] = ACTIONS(7007), - [anon_sym_GT] = ACTIONS(7009), - [anon_sym_GT_EQ] = ACTIONS(7007), - [anon_sym_LT_EQ] = ACTIONS(7009), - [anon_sym_LT] = ACTIONS(7009), - [anon_sym_LT_LT] = ACTIONS(7009), - [anon_sym_GT_GT] = ACTIONS(7009), - [anon_sym_SEMI] = ACTIONS(7007), - [anon_sym___extension__] = ACTIONS(6485), - [anon_sym___attribute__] = ACTIONS(7007), - [anon_sym___attribute] = ACTIONS(7009), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(7009), - [anon_sym_const] = ACTIONS(6491), - [anon_sym_constexpr] = ACTIONS(6485), - [anon_sym_volatile] = ACTIONS(6485), - [anon_sym_restrict] = ACTIONS(6485), - [anon_sym___restrict__] = ACTIONS(6485), - [anon_sym__Atomic] = ACTIONS(6485), - [anon_sym__Noreturn] = ACTIONS(6485), - [anon_sym_noreturn] = ACTIONS(6485), - [anon_sym__Nonnull] = ACTIONS(6485), - [anon_sym_mutable] = ACTIONS(6485), - [anon_sym_constinit] = ACTIONS(6485), - [anon_sym_consteval] = ACTIONS(6485), - [anon_sym_alignas] = ACTIONS(6493), - [anon_sym__Alignas] = ACTIONS(6493), - [anon_sym_QMARK] = ACTIONS(7007), - [anon_sym_STAR_EQ] = ACTIONS(7007), - [anon_sym_SLASH_EQ] = ACTIONS(7007), - [anon_sym_PERCENT_EQ] = ACTIONS(7007), - [anon_sym_PLUS_EQ] = ACTIONS(7007), - [anon_sym_DASH_EQ] = ACTIONS(7007), - [anon_sym_LT_LT_EQ] = ACTIONS(7007), - [anon_sym_GT_GT_EQ] = ACTIONS(7007), - [anon_sym_AMP_EQ] = ACTIONS(7007), - [anon_sym_CARET_EQ] = ACTIONS(7007), - [anon_sym_PIPE_EQ] = ACTIONS(7007), - [anon_sym_and_eq] = ACTIONS(7007), - [anon_sym_or_eq] = ACTIONS(7007), - [anon_sym_xor_eq] = ACTIONS(7007), - [anon_sym_LT_EQ_GT] = ACTIONS(7007), - [anon_sym_or] = ACTIONS(7009), - [anon_sym_and] = ACTIONS(7009), - [anon_sym_bitor] = ACTIONS(7007), - [anon_sym_xor] = ACTIONS(7009), - [anon_sym_bitand] = ACTIONS(7007), - [anon_sym_not_eq] = ACTIONS(7007), - [anon_sym_DASH_DASH] = ACTIONS(7007), - [anon_sym_PLUS_PLUS] = ACTIONS(7007), - [anon_sym_DOT] = ACTIONS(7009), - [anon_sym_DOT_STAR] = ACTIONS(7007), - [anon_sym_DASH_GT] = ACTIONS(7007), - [sym_comment] = ACTIONS(3), - }, - [STATE(2271)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2280), - [sym_identifier] = ACTIONS(6627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), - [anon_sym_COMMA] = ACTIONS(7081), - [anon_sym_LPAREN2] = ACTIONS(7081), - [anon_sym_DASH] = ACTIONS(7084), - [anon_sym_PLUS] = ACTIONS(7084), - [anon_sym_STAR] = ACTIONS(7084), - [anon_sym_SLASH] = ACTIONS(7084), - [anon_sym_PERCENT] = ACTIONS(7084), - [anon_sym_PIPE_PIPE] = ACTIONS(7081), - [anon_sym_AMP_AMP] = ACTIONS(7081), - [anon_sym_PIPE] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7084), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_EQ_EQ] = ACTIONS(7081), - [anon_sym_BANG_EQ] = ACTIONS(7081), - [anon_sym_GT] = ACTIONS(7084), - [anon_sym_GT_EQ] = ACTIONS(7084), - [anon_sym_LT_EQ] = ACTIONS(7084), - [anon_sym_LT] = ACTIONS(7084), - [anon_sym_LT_LT] = ACTIONS(7084), - [anon_sym_GT_GT] = ACTIONS(7084), - [anon_sym___extension__] = ACTIONS(7084), - [anon_sym___attribute__] = ACTIONS(7084), - [anon_sym___attribute] = ACTIONS(7084), - [anon_sym_LBRACE] = ACTIONS(7081), - [anon_sym_signed] = ACTIONS(7751), - [anon_sym_unsigned] = ACTIONS(7751), - [anon_sym_long] = ACTIONS(7751), - [anon_sym_short] = ACTIONS(7751), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_EQ] = ACTIONS(7084), - [anon_sym_const] = ACTIONS(7084), - [anon_sym_constexpr] = ACTIONS(7084), - [anon_sym_volatile] = ACTIONS(7084), - [anon_sym_restrict] = ACTIONS(7084), - [anon_sym___restrict__] = ACTIONS(7084), - [anon_sym__Atomic] = ACTIONS(7084), - [anon_sym__Noreturn] = ACTIONS(7084), - [anon_sym_noreturn] = ACTIONS(7084), - [anon_sym__Nonnull] = ACTIONS(7084), - [anon_sym_mutable] = ACTIONS(7084), - [anon_sym_constinit] = ACTIONS(7084), - [anon_sym_consteval] = ACTIONS(7084), - [anon_sym_alignas] = ACTIONS(7084), - [anon_sym__Alignas] = ACTIONS(7084), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(7081), - [anon_sym_STAR_EQ] = ACTIONS(7081), - [anon_sym_SLASH_EQ] = ACTIONS(7081), - [anon_sym_PERCENT_EQ] = ACTIONS(7081), - [anon_sym_PLUS_EQ] = ACTIONS(7081), - [anon_sym_DASH_EQ] = ACTIONS(7081), - [anon_sym_LT_LT_EQ] = ACTIONS(7081), - [anon_sym_GT_GT_EQ] = ACTIONS(7084), - [anon_sym_AMP_EQ] = ACTIONS(7081), - [anon_sym_CARET_EQ] = ACTIONS(7081), - [anon_sym_PIPE_EQ] = ACTIONS(7081), - [anon_sym_and_eq] = ACTIONS(7084), - [anon_sym_or_eq] = ACTIONS(7084), - [anon_sym_xor_eq] = ACTIONS(7084), - [anon_sym_LT_EQ_GT] = ACTIONS(7081), - [anon_sym_or] = ACTIONS(7084), - [anon_sym_and] = ACTIONS(7084), - [anon_sym_bitor] = ACTIONS(7084), - [anon_sym_xor] = ACTIONS(7084), - [anon_sym_bitand] = ACTIONS(7084), - [anon_sym_not_eq] = ACTIONS(7084), - [anon_sym_DASH_DASH] = ACTIONS(7081), - [anon_sym_PLUS_PLUS] = ACTIONS(7081), - [anon_sym_DOT] = ACTIONS(7084), - [anon_sym_DOT_STAR] = ACTIONS(7081), - [anon_sym_DASH_GT] = ACTIONS(7081), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7084), - [anon_sym_override] = ACTIONS(7084), - [anon_sym_GT2] = ACTIONS(7081), - [anon_sym_requires] = ACTIONS(7084), - }, - [STATE(2272)] = { - [sym_type_qualifier] = STATE(2273), - [sym_alignas_qualifier] = STATE(2312), - [aux_sym__type_definition_type_repeat1] = STATE(2273), - [aux_sym_sized_type_specifier_repeat1] = STATE(2440), - [sym_identifier] = ACTIONS(7524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), - [anon_sym_COMMA] = ACTIONS(6812), - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_STAR] = ACTIONS(6814), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_PERCENT] = ACTIONS(6814), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_CARET] = ACTIONS(6814), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_LT_LT] = ACTIONS(6814), - [anon_sym_GT_GT] = ACTIONS(6814), - [anon_sym___extension__] = ACTIONS(7754), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_signed] = ACTIONS(7756), - [anon_sym_unsigned] = ACTIONS(7756), - [anon_sym_long] = ACTIONS(7756), - [anon_sym_short] = ACTIONS(7756), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_RBRACK] = ACTIONS(6812), - [anon_sym_EQ] = ACTIONS(6814), - [anon_sym_const] = ACTIONS(7754), - [anon_sym_constexpr] = ACTIONS(7754), - [anon_sym_volatile] = ACTIONS(7754), - [anon_sym_restrict] = ACTIONS(7754), - [anon_sym___restrict__] = ACTIONS(7754), - [anon_sym__Atomic] = ACTIONS(7754), - [anon_sym__Noreturn] = ACTIONS(7754), - [anon_sym_noreturn] = ACTIONS(7754), - [anon_sym__Nonnull] = ACTIONS(7754), - [anon_sym_mutable] = ACTIONS(7754), - [anon_sym_constinit] = ACTIONS(7754), - [anon_sym_consteval] = ACTIONS(7754), - [anon_sym_alignas] = ACTIONS(7758), - [anon_sym__Alignas] = ACTIONS(7758), - [sym_primitive_type] = ACTIONS(6958), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_STAR_EQ] = ACTIONS(6812), - [anon_sym_SLASH_EQ] = ACTIONS(6812), - [anon_sym_PERCENT_EQ] = ACTIONS(6812), - [anon_sym_PLUS_EQ] = ACTIONS(6812), - [anon_sym_DASH_EQ] = ACTIONS(6812), - [anon_sym_LT_LT_EQ] = ACTIONS(6812), - [anon_sym_GT_GT_EQ] = ACTIONS(6812), - [anon_sym_AMP_EQ] = ACTIONS(6812), - [anon_sym_CARET_EQ] = ACTIONS(6812), - [anon_sym_PIPE_EQ] = ACTIONS(6812), - [anon_sym_and_eq] = ACTIONS(6814), - [anon_sym_or_eq] = ACTIONS(6814), - [anon_sym_xor_eq] = ACTIONS(6814), - [anon_sym_LT_EQ_GT] = ACTIONS(6812), - [anon_sym_or] = ACTIONS(6814), - [anon_sym_and] = ACTIONS(6814), - [anon_sym_bitor] = ACTIONS(6814), - [anon_sym_xor] = ACTIONS(6814), - [anon_sym_bitand] = ACTIONS(6814), - [anon_sym_not_eq] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6814), - [anon_sym_DOT_STAR] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6812), - [sym_comment] = ACTIONS(3), - }, - [STATE(2273)] = { - [sym_type_qualifier] = STATE(2199), - [sym_alignas_qualifier] = STATE(2312), - [aux_sym__type_definition_type_repeat1] = STATE(2199), - [aux_sym_sized_type_specifier_repeat1] = STATE(2087), - [sym_identifier] = ACTIONS(7425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), - [anon_sym_COMMA] = ACTIONS(6884), - [anon_sym_LPAREN2] = ACTIONS(6884), - [anon_sym_DASH] = ACTIONS(6886), - [anon_sym_PLUS] = ACTIONS(6886), - [anon_sym_STAR] = ACTIONS(6886), - [anon_sym_SLASH] = ACTIONS(6886), - [anon_sym_PERCENT] = ACTIONS(6886), - [anon_sym_PIPE_PIPE] = ACTIONS(6884), - [anon_sym_AMP_AMP] = ACTIONS(6884), - [anon_sym_PIPE] = ACTIONS(6886), - [anon_sym_CARET] = ACTIONS(6886), - [anon_sym_AMP] = ACTIONS(6886), - [anon_sym_EQ_EQ] = ACTIONS(6884), - [anon_sym_BANG_EQ] = ACTIONS(6884), - [anon_sym_GT] = ACTIONS(6886), - [anon_sym_GT_EQ] = ACTIONS(6884), - [anon_sym_LT_EQ] = ACTIONS(6886), - [anon_sym_LT] = ACTIONS(6886), - [anon_sym_LT_LT] = ACTIONS(6886), - [anon_sym_GT_GT] = ACTIONS(6886), - [anon_sym___extension__] = ACTIONS(7754), - [anon_sym___attribute__] = ACTIONS(6886), - [anon_sym___attribute] = ACTIONS(6886), - [anon_sym_LBRACE] = ACTIONS(6884), - [anon_sym_signed] = ACTIONS(6963), - [anon_sym_unsigned] = ACTIONS(6963), - [anon_sym_long] = ACTIONS(6963), - [anon_sym_short] = ACTIONS(6963), - [anon_sym_LBRACK] = ACTIONS(6884), - [anon_sym_RBRACK] = ACTIONS(6884), - [anon_sym_EQ] = ACTIONS(6886), - [anon_sym_const] = ACTIONS(7754), - [anon_sym_constexpr] = ACTIONS(7754), - [anon_sym_volatile] = ACTIONS(7754), - [anon_sym_restrict] = ACTIONS(7754), - [anon_sym___restrict__] = ACTIONS(7754), - [anon_sym__Atomic] = ACTIONS(7754), - [anon_sym__Noreturn] = ACTIONS(7754), - [anon_sym_noreturn] = ACTIONS(7754), - [anon_sym__Nonnull] = ACTIONS(7754), - [anon_sym_mutable] = ACTIONS(7754), - [anon_sym_constinit] = ACTIONS(7754), - [anon_sym_consteval] = ACTIONS(7754), - [anon_sym_alignas] = ACTIONS(7758), - [anon_sym__Alignas] = ACTIONS(7758), - [sym_primitive_type] = ACTIONS(6965), - [anon_sym_QMARK] = ACTIONS(6884), - [anon_sym_STAR_EQ] = ACTIONS(6884), - [anon_sym_SLASH_EQ] = ACTIONS(6884), - [anon_sym_PERCENT_EQ] = ACTIONS(6884), - [anon_sym_PLUS_EQ] = ACTIONS(6884), - [anon_sym_DASH_EQ] = ACTIONS(6884), - [anon_sym_LT_LT_EQ] = ACTIONS(6884), - [anon_sym_GT_GT_EQ] = ACTIONS(6884), - [anon_sym_AMP_EQ] = ACTIONS(6884), - [anon_sym_CARET_EQ] = ACTIONS(6884), - [anon_sym_PIPE_EQ] = ACTIONS(6884), - [anon_sym_and_eq] = ACTIONS(6886), - [anon_sym_or_eq] = ACTIONS(6886), - [anon_sym_xor_eq] = ACTIONS(6886), - [anon_sym_LT_EQ_GT] = ACTIONS(6884), - [anon_sym_or] = ACTIONS(6886), - [anon_sym_and] = ACTIONS(6886), - [anon_sym_bitor] = ACTIONS(6886), - [anon_sym_xor] = ACTIONS(6886), - [anon_sym_bitand] = ACTIONS(6886), - [anon_sym_not_eq] = ACTIONS(6886), - [anon_sym_DASH_DASH] = ACTIONS(6884), - [anon_sym_PLUS_PLUS] = ACTIONS(6884), - [anon_sym_DOT] = ACTIONS(6886), - [anon_sym_DOT_STAR] = ACTIONS(6884), - [anon_sym_DASH_GT] = ACTIONS(6884), - [sym_comment] = ACTIONS(3), - }, - [STATE(2274)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2263), - [sym_identifier] = ACTIONS(6627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), - [anon_sym_COMMA] = ACTIONS(7081), - [anon_sym_LPAREN2] = ACTIONS(7081), - [anon_sym_DASH] = ACTIONS(7084), - [anon_sym_PLUS] = ACTIONS(7084), - [anon_sym_STAR] = ACTIONS(7084), - [anon_sym_SLASH] = ACTIONS(7084), - [anon_sym_PERCENT] = ACTIONS(7084), - [anon_sym_PIPE_PIPE] = ACTIONS(7081), - [anon_sym_AMP_AMP] = ACTIONS(7081), - [anon_sym_PIPE] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7084), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_EQ_EQ] = ACTIONS(7081), - [anon_sym_BANG_EQ] = ACTIONS(7081), - [anon_sym_GT] = ACTIONS(7084), - [anon_sym_GT_EQ] = ACTIONS(7081), - [anon_sym_LT_EQ] = ACTIONS(7084), - [anon_sym_LT] = ACTIONS(7084), - [anon_sym_LT_LT] = ACTIONS(7084), - [anon_sym_GT_GT] = ACTIONS(7084), - [anon_sym___extension__] = ACTIONS(7084), - [anon_sym___attribute__] = ACTIONS(7084), - [anon_sym___attribute] = ACTIONS(7084), - [anon_sym_LBRACE] = ACTIONS(7081), - [anon_sym_signed] = ACTIONS(7728), - [anon_sym_unsigned] = ACTIONS(7728), - [anon_sym_long] = ACTIONS(7728), - [anon_sym_short] = ACTIONS(7728), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_RBRACK] = ACTIONS(7081), - [anon_sym_EQ] = ACTIONS(7084), - [anon_sym_const] = ACTIONS(7084), - [anon_sym_constexpr] = ACTIONS(7084), - [anon_sym_volatile] = ACTIONS(7084), - [anon_sym_restrict] = ACTIONS(7084), - [anon_sym___restrict__] = ACTIONS(7084), - [anon_sym__Atomic] = ACTIONS(7084), - [anon_sym__Noreturn] = ACTIONS(7084), - [anon_sym_noreturn] = ACTIONS(7084), - [anon_sym__Nonnull] = ACTIONS(7084), - [anon_sym_mutable] = ACTIONS(7084), - [anon_sym_constinit] = ACTIONS(7084), - [anon_sym_consteval] = ACTIONS(7084), - [anon_sym_alignas] = ACTIONS(7084), - [anon_sym__Alignas] = ACTIONS(7084), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(7081), - [anon_sym_STAR_EQ] = ACTIONS(7081), - [anon_sym_SLASH_EQ] = ACTIONS(7081), - [anon_sym_PERCENT_EQ] = ACTIONS(7081), - [anon_sym_PLUS_EQ] = ACTIONS(7081), - [anon_sym_DASH_EQ] = ACTIONS(7081), - [anon_sym_LT_LT_EQ] = ACTIONS(7081), - [anon_sym_GT_GT_EQ] = ACTIONS(7081), - [anon_sym_AMP_EQ] = ACTIONS(7081), - [anon_sym_CARET_EQ] = ACTIONS(7081), - [anon_sym_PIPE_EQ] = ACTIONS(7081), - [anon_sym_and_eq] = ACTIONS(7084), - [anon_sym_or_eq] = ACTIONS(7084), - [anon_sym_xor_eq] = ACTIONS(7084), - [anon_sym_LT_EQ_GT] = ACTIONS(7081), - [anon_sym_or] = ACTIONS(7084), - [anon_sym_and] = ACTIONS(7084), - [anon_sym_bitor] = ACTIONS(7084), - [anon_sym_xor] = ACTIONS(7084), - [anon_sym_bitand] = ACTIONS(7084), - [anon_sym_not_eq] = ACTIONS(7084), - [anon_sym_DASH_DASH] = ACTIONS(7081), - [anon_sym_PLUS_PLUS] = ACTIONS(7081), - [anon_sym_DOT] = ACTIONS(7084), - [anon_sym_DOT_STAR] = ACTIONS(7081), - [anon_sym_DASH_GT] = ACTIONS(7081), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7084), - [anon_sym_override] = ACTIONS(7084), - [anon_sym_requires] = ACTIONS(7084), - }, - [STATE(2275)] = { - [sym_identifier] = ACTIONS(6716), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), - [anon_sym_COMMA] = ACTIONS(6718), - [anon_sym_RPAREN] = ACTIONS(6718), - [anon_sym_LPAREN2] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6716), - [anon_sym_PLUS] = ACTIONS(6716), - [anon_sym_STAR] = ACTIONS(6716), - [anon_sym_SLASH] = ACTIONS(6716), - [anon_sym_PERCENT] = ACTIONS(6716), - [anon_sym_PIPE_PIPE] = ACTIONS(6718), - [anon_sym_AMP_AMP] = ACTIONS(6718), - [anon_sym_PIPE] = ACTIONS(6716), - [anon_sym_CARET] = ACTIONS(6716), - [anon_sym_AMP] = ACTIONS(6716), - [anon_sym_EQ_EQ] = ACTIONS(6718), - [anon_sym_BANG_EQ] = ACTIONS(6718), - [anon_sym_GT] = ACTIONS(6716), - [anon_sym_GT_EQ] = ACTIONS(6718), - [anon_sym_LT_EQ] = ACTIONS(6716), - [anon_sym_LT] = ACTIONS(6716), - [anon_sym_LT_LT] = ACTIONS(6716), - [anon_sym_GT_GT] = ACTIONS(6716), - [anon_sym___extension__] = ACTIONS(6716), - [anon_sym___attribute__] = ACTIONS(6716), - [anon_sym___attribute] = ACTIONS(6716), - [anon_sym_LBRACE] = ACTIONS(6718), - [anon_sym_signed] = ACTIONS(6716), - [anon_sym_unsigned] = ACTIONS(6716), - [anon_sym_long] = ACTIONS(6716), - [anon_sym_short] = ACTIONS(6716), - [anon_sym_LBRACK] = ACTIONS(6718), - [anon_sym_EQ] = ACTIONS(6716), - [anon_sym_const] = ACTIONS(6716), - [anon_sym_constexpr] = ACTIONS(6716), - [anon_sym_volatile] = ACTIONS(6716), - [anon_sym_restrict] = ACTIONS(6716), - [anon_sym___restrict__] = ACTIONS(6716), - [anon_sym__Atomic] = ACTIONS(6716), - [anon_sym__Noreturn] = ACTIONS(6716), - [anon_sym_noreturn] = ACTIONS(6716), - [anon_sym__Nonnull] = ACTIONS(6716), - [anon_sym_mutable] = ACTIONS(6716), - [anon_sym_constinit] = ACTIONS(6716), - [anon_sym_consteval] = ACTIONS(6716), - [anon_sym_alignas] = ACTIONS(6716), - [anon_sym__Alignas] = ACTIONS(6716), - [sym_primitive_type] = ACTIONS(6716), - [anon_sym_QMARK] = ACTIONS(6718), - [anon_sym_STAR_EQ] = ACTIONS(6718), - [anon_sym_SLASH_EQ] = ACTIONS(6718), - [anon_sym_PERCENT_EQ] = ACTIONS(6718), - [anon_sym_PLUS_EQ] = ACTIONS(6718), - [anon_sym_DASH_EQ] = ACTIONS(6718), - [anon_sym_LT_LT_EQ] = ACTIONS(6718), - [anon_sym_GT_GT_EQ] = ACTIONS(6718), - [anon_sym_AMP_EQ] = ACTIONS(6718), - [anon_sym_CARET_EQ] = ACTIONS(6718), - [anon_sym_PIPE_EQ] = ACTIONS(6718), - [anon_sym_and_eq] = ACTIONS(6716), - [anon_sym_or_eq] = ACTIONS(6716), - [anon_sym_xor_eq] = ACTIONS(6716), - [anon_sym_LT_EQ_GT] = ACTIONS(6718), - [anon_sym_or] = ACTIONS(6716), - [anon_sym_and] = ACTIONS(6716), - [anon_sym_bitor] = ACTIONS(6716), - [anon_sym_xor] = ACTIONS(6716), - [anon_sym_bitand] = ACTIONS(6716), - [anon_sym_not_eq] = ACTIONS(6716), - [anon_sym_DASH_DASH] = ACTIONS(6718), - [anon_sym_PLUS_PLUS] = ACTIONS(6718), - [anon_sym_DOT] = ACTIONS(6716), - [anon_sym_DOT_STAR] = ACTIONS(6718), - [anon_sym_DASH_GT] = ACTIONS(6716), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6716), - [anon_sym_override] = ACTIONS(6716), - [anon_sym_requires] = ACTIONS(6716), - [anon_sym_DASH_GT_STAR] = ACTIONS(6718), - }, - [STATE(2276)] = { - [sym_template_argument_list] = STATE(3601), - [aux_sym_sized_type_specifier_repeat1] = STATE(2412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7019), - [anon_sym_COMMA] = ACTIONS(7019), - [anon_sym_LPAREN2] = ACTIONS(7019), - [anon_sym_DASH] = ACTIONS(7017), - [anon_sym_PLUS] = ACTIONS(7017), - [anon_sym_STAR] = ACTIONS(7017), - [anon_sym_SLASH] = ACTIONS(7017), - [anon_sym_PERCENT] = ACTIONS(7017), - [anon_sym_PIPE_PIPE] = ACTIONS(7019), - [anon_sym_AMP_AMP] = ACTIONS(7019), - [anon_sym_PIPE] = ACTIONS(7017), - [anon_sym_CARET] = ACTIONS(7017), - [anon_sym_AMP] = ACTIONS(7017), - [anon_sym_EQ_EQ] = ACTIONS(7019), - [anon_sym_BANG_EQ] = ACTIONS(7019), - [anon_sym_GT] = ACTIONS(7017), - [anon_sym_GT_EQ] = ACTIONS(7017), - [anon_sym_LT_EQ] = ACTIONS(7017), - [anon_sym_LT] = ACTIONS(7017), - [anon_sym_LT_LT] = ACTIONS(7017), - [anon_sym_GT_GT] = ACTIONS(7017), - [anon_sym___extension__] = ACTIONS(7019), - [anon_sym___attribute__] = ACTIONS(7019), - [anon_sym___attribute] = ACTIONS(7017), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(7019), - [anon_sym_signed] = ACTIONS(6638), - [anon_sym_unsigned] = ACTIONS(6638), - [anon_sym_long] = ACTIONS(6638), - [anon_sym_short] = ACTIONS(6638), - [anon_sym_LBRACK] = ACTIONS(7019), - [anon_sym_EQ] = ACTIONS(7017), - [anon_sym_const] = ACTIONS(7017), - [anon_sym_constexpr] = ACTIONS(7019), - [anon_sym_volatile] = ACTIONS(7019), - [anon_sym_restrict] = ACTIONS(7019), - [anon_sym___restrict__] = ACTIONS(7019), - [anon_sym__Atomic] = ACTIONS(7019), - [anon_sym__Noreturn] = ACTIONS(7019), - [anon_sym_noreturn] = ACTIONS(7019), - [anon_sym__Nonnull] = ACTIONS(7019), - [anon_sym_mutable] = ACTIONS(7019), - [anon_sym_constinit] = ACTIONS(7019), - [anon_sym_consteval] = ACTIONS(7019), - [anon_sym_alignas] = ACTIONS(7019), - [anon_sym__Alignas] = ACTIONS(7019), - [anon_sym_QMARK] = ACTIONS(7019), - [anon_sym_STAR_EQ] = ACTIONS(7019), - [anon_sym_SLASH_EQ] = ACTIONS(7019), - [anon_sym_PERCENT_EQ] = ACTIONS(7019), - [anon_sym_PLUS_EQ] = ACTIONS(7019), - [anon_sym_DASH_EQ] = ACTIONS(7019), - [anon_sym_LT_LT_EQ] = ACTIONS(7019), - [anon_sym_GT_GT_EQ] = ACTIONS(7017), - [anon_sym_AMP_EQ] = ACTIONS(7019), - [anon_sym_CARET_EQ] = ACTIONS(7019), - [anon_sym_PIPE_EQ] = ACTIONS(7019), - [anon_sym_and_eq] = ACTIONS(7019), - [anon_sym_or_eq] = ACTIONS(7019), - [anon_sym_xor_eq] = ACTIONS(7019), - [anon_sym_LT_EQ_GT] = ACTIONS(7019), - [anon_sym_or] = ACTIONS(7017), - [anon_sym_and] = ACTIONS(7017), - [anon_sym_bitor] = ACTIONS(7019), - [anon_sym_xor] = ACTIONS(7017), - [anon_sym_bitand] = ACTIONS(7019), - [anon_sym_not_eq] = ACTIONS(7019), - [anon_sym_DASH_DASH] = ACTIONS(7019), - [anon_sym_PLUS_PLUS] = ACTIONS(7019), - [anon_sym_DOT] = ACTIONS(7017), - [anon_sym_DOT_STAR] = ACTIONS(7019), - [anon_sym_DASH_GT] = ACTIONS(7019), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7019), - [anon_sym_override] = ACTIONS(7019), - [anon_sym_GT2] = ACTIONS(7019), - [anon_sym_requires] = ACTIONS(7019), - }, - [STATE(2277)] = { - [sym_type_qualifier] = STATE(2277), - [sym_alignas_qualifier] = STATE(2432), - [aux_sym__type_definition_type_repeat1] = STATE(2277), - [sym_identifier] = ACTIONS(6525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_RPAREN] = ACTIONS(6527), - [anon_sym_LPAREN2] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6525), - [anon_sym_PLUS] = ACTIONS(6525), - [anon_sym_STAR] = ACTIONS(6525), - [anon_sym_SLASH] = ACTIONS(6525), - [anon_sym_PERCENT] = ACTIONS(6525), - [anon_sym_PIPE_PIPE] = ACTIONS(6527), - [anon_sym_AMP_AMP] = ACTIONS(6527), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_CARET] = ACTIONS(6525), - [anon_sym_AMP] = ACTIONS(6525), - [anon_sym_EQ_EQ] = ACTIONS(6527), - [anon_sym_BANG_EQ] = ACTIONS(6527), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6527), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_LT_LT] = ACTIONS(6525), - [anon_sym_GT_GT] = ACTIONS(6525), - [anon_sym___extension__] = ACTIONS(7760), - [anon_sym___attribute__] = ACTIONS(6525), - [anon_sym___attribute] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6527), - [anon_sym_signed] = ACTIONS(6525), - [anon_sym_unsigned] = ACTIONS(6525), - [anon_sym_long] = ACTIONS(6525), - [anon_sym_short] = ACTIONS(6525), - [anon_sym_LBRACK] = ACTIONS(6527), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_const] = ACTIONS(7760), - [anon_sym_constexpr] = ACTIONS(7760), - [anon_sym_volatile] = ACTIONS(7760), - [anon_sym_restrict] = ACTIONS(7760), - [anon_sym___restrict__] = ACTIONS(7760), - [anon_sym__Atomic] = ACTIONS(7760), - [anon_sym__Noreturn] = ACTIONS(7760), - [anon_sym_noreturn] = ACTIONS(7760), - [anon_sym__Nonnull] = ACTIONS(7760), - [anon_sym_mutable] = ACTIONS(7760), - [anon_sym_constinit] = ACTIONS(7760), - [anon_sym_consteval] = ACTIONS(7760), - [anon_sym_alignas] = ACTIONS(7763), - [anon_sym__Alignas] = ACTIONS(7763), - [sym_primitive_type] = ACTIONS(6525), - [anon_sym_QMARK] = ACTIONS(6527), - [anon_sym_STAR_EQ] = ACTIONS(6527), - [anon_sym_SLASH_EQ] = ACTIONS(6527), - [anon_sym_PERCENT_EQ] = ACTIONS(6527), - [anon_sym_PLUS_EQ] = ACTIONS(6527), - [anon_sym_DASH_EQ] = ACTIONS(6527), - [anon_sym_LT_LT_EQ] = ACTIONS(6527), - [anon_sym_GT_GT_EQ] = ACTIONS(6527), - [anon_sym_AMP_EQ] = ACTIONS(6527), - [anon_sym_CARET_EQ] = ACTIONS(6527), - [anon_sym_PIPE_EQ] = ACTIONS(6527), - [anon_sym_LT_EQ_GT] = ACTIONS(6527), - [anon_sym_or] = ACTIONS(6525), - [anon_sym_and] = ACTIONS(6525), - [anon_sym_bitor] = ACTIONS(6525), - [anon_sym_xor] = ACTIONS(6525), - [anon_sym_bitand] = ACTIONS(6525), - [anon_sym_not_eq] = ACTIONS(6525), - [anon_sym_DASH_DASH] = ACTIONS(6527), - [anon_sym_PLUS_PLUS] = ACTIONS(6527), - [anon_sym_DOT] = ACTIONS(6525), - [anon_sym_DOT_STAR] = ACTIONS(6527), - [anon_sym_DASH_GT] = ACTIONS(6525), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6525), - [anon_sym_override] = ACTIONS(6525), - [anon_sym_requires] = ACTIONS(6525), - [anon_sym_DASH_GT_STAR] = ACTIONS(6527), - }, - [STATE(2278)] = { - [sym_identifier] = ACTIONS(2768), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), - [anon_sym_COMMA] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_LPAREN2] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_SLASH] = ACTIONS(2768), - [anon_sym_PERCENT] = ACTIONS(2768), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2768), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_LT_EQ] = ACTIONS(2768), - [anon_sym_LT] = ACTIONS(2768), - [anon_sym_LT_LT] = ACTIONS(2768), - [anon_sym_GT_GT] = ACTIONS(2768), - [anon_sym___extension__] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2758), - [anon_sym_EQ] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2768), - [anon_sym_QMARK] = ACTIONS(2758), - [anon_sym_STAR_EQ] = ACTIONS(2758), - [anon_sym_SLASH_EQ] = ACTIONS(2758), - [anon_sym_PERCENT_EQ] = ACTIONS(2758), - [anon_sym_PLUS_EQ] = ACTIONS(2758), - [anon_sym_DASH_EQ] = ACTIONS(2758), - [anon_sym_LT_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_GT_EQ] = ACTIONS(2758), - [anon_sym_AMP_EQ] = ACTIONS(2758), - [anon_sym_CARET_EQ] = ACTIONS(2758), - [anon_sym_PIPE_EQ] = ACTIONS(2758), - [anon_sym_and_eq] = ACTIONS(2768), - [anon_sym_or_eq] = ACTIONS(2768), - [anon_sym_xor_eq] = ACTIONS(2768), - [anon_sym_LT_EQ_GT] = ACTIONS(2758), - [anon_sym_or] = ACTIONS(2768), - [anon_sym_and] = ACTIONS(2768), - [anon_sym_bitor] = ACTIONS(2768), - [anon_sym_xor] = ACTIONS(2768), - [anon_sym_bitand] = ACTIONS(2768), - [anon_sym_not_eq] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2758), - [anon_sym_PLUS_PLUS] = ACTIONS(2758), - [anon_sym_DOT] = ACTIONS(2768), - [anon_sym_DOT_STAR] = ACTIONS(2758), - [anon_sym_DASH_GT] = ACTIONS(2768), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2768), - [anon_sym_override] = ACTIONS(2768), - [anon_sym_requires] = ACTIONS(2768), - [anon_sym_DASH_GT_STAR] = ACTIONS(2758), - }, - [STATE(2279)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2792), - [sym_ms_pointer_modifier] = STATE(2268), - [sym__abstract_declarator] = STATE(6068), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(2906), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(1971), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(2906), - [aux_sym_pointer_declarator_repeat1] = STATE(2268), - [sym_identifier] = ACTIONS(6457), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [aux_sym_preproc_if_token2] = ACTIONS(6459), - [aux_sym_preproc_else_token1] = ACTIONS(6459), - [aux_sym_preproc_elif_token1] = ACTIONS(6457), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6459), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_PLUS] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(7733), - [anon_sym_SLASH] = ACTIONS(6457), - [anon_sym_PERCENT] = ACTIONS(6459), - [anon_sym_PIPE_PIPE] = ACTIONS(6459), - [anon_sym_AMP_AMP] = ACTIONS(7735), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_CARET] = ACTIONS(6459), - [anon_sym_AMP] = ACTIONS(7737), - [anon_sym_EQ_EQ] = ACTIONS(6459), - [anon_sym_BANG_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_LT_EQ] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_LT_LT] = ACTIONS(6459), - [anon_sym_GT_GT] = ACTIONS(6459), - [anon_sym___extension__] = ACTIONS(7739), - [sym_ms_restrict_modifier] = ACTIONS(7741), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7741), - [sym_ms_signed_ptr_modifier] = ACTIONS(7741), - [anon_sym__unaligned] = ACTIONS(7743), - [anon_sym___unaligned] = ACTIONS(7743), + [STATE(2228)] = { + [sym_identifier] = ACTIONS(7743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7745), + [anon_sym_COMMA] = ACTIONS(7745), + [anon_sym_RPAREN] = ACTIONS(7745), + [aux_sym_preproc_if_token2] = ACTIONS(7745), + [aux_sym_preproc_else_token1] = ACTIONS(7745), + [aux_sym_preproc_elif_token1] = ACTIONS(7743), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7745), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7745), + [anon_sym_LPAREN2] = ACTIONS(7745), + [anon_sym_DASH] = ACTIONS(7743), + [anon_sym_PLUS] = ACTIONS(7743), + [anon_sym_STAR] = ACTIONS(7743), + [anon_sym_SLASH] = ACTIONS(7743), + [anon_sym_PERCENT] = ACTIONS(7743), + [anon_sym_PIPE_PIPE] = ACTIONS(7745), + [anon_sym_AMP_AMP] = ACTIONS(7745), + [anon_sym_PIPE] = ACTIONS(7743), + [anon_sym_CARET] = ACTIONS(7743), + [anon_sym_AMP] = ACTIONS(7743), + [anon_sym_EQ_EQ] = ACTIONS(7745), + [anon_sym_BANG_EQ] = ACTIONS(7745), + [anon_sym_GT] = ACTIONS(7743), + [anon_sym_GT_EQ] = ACTIONS(7745), + [anon_sym_LT_EQ] = ACTIONS(7743), + [anon_sym_LT] = ACTIONS(7743), + [anon_sym_LT_LT] = ACTIONS(7743), + [anon_sym_GT_GT] = ACTIONS(7743), + [anon_sym_SEMI] = ACTIONS(7745), + [anon_sym___extension__] = ACTIONS(7743), + [anon_sym___attribute__] = ACTIONS(7743), + [anon_sym___attribute] = ACTIONS(7743), + [anon_sym_COLON] = ACTIONS(7743), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7745), + [anon_sym_LBRACE] = ACTIONS(7745), + [anon_sym_RBRACE] = ACTIONS(7745), [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(7739), - [anon_sym_volatile] = ACTIONS(7739), - [anon_sym_restrict] = ACTIONS(7739), - [anon_sym___restrict__] = ACTIONS(7739), - [anon_sym__Atomic] = ACTIONS(7739), - [anon_sym__Noreturn] = ACTIONS(7739), - [anon_sym_noreturn] = ACTIONS(7739), - [anon_sym__Nonnull] = ACTIONS(7739), - [anon_sym_mutable] = ACTIONS(7739), - [anon_sym_constinit] = ACTIONS(7739), - [anon_sym_consteval] = ACTIONS(7739), + [anon_sym_EQ] = ACTIONS(7743), + [anon_sym_const] = ACTIONS(7743), + [anon_sym_constexpr] = ACTIONS(7743), + [anon_sym_volatile] = ACTIONS(7743), + [anon_sym_restrict] = ACTIONS(7743), + [anon_sym___restrict__] = ACTIONS(7743), + [anon_sym__Atomic] = ACTIONS(7743), + [anon_sym__Noreturn] = ACTIONS(7743), + [anon_sym_noreturn] = ACTIONS(7743), + [anon_sym__Nonnull] = ACTIONS(7743), + [anon_sym_mutable] = ACTIONS(7743), + [anon_sym_constinit] = ACTIONS(7743), + [anon_sym_consteval] = ACTIONS(7743), + [anon_sym_alignas] = ACTIONS(7743), + [anon_sym__Alignas] = ACTIONS(7743), + [anon_sym_QMARK] = ACTIONS(7745), + [anon_sym_STAR_EQ] = ACTIONS(7745), + [anon_sym_SLASH_EQ] = ACTIONS(7745), + [anon_sym_PERCENT_EQ] = ACTIONS(7745), + [anon_sym_PLUS_EQ] = ACTIONS(7745), + [anon_sym_DASH_EQ] = ACTIONS(7745), + [anon_sym_LT_LT_EQ] = ACTIONS(7745), + [anon_sym_GT_GT_EQ] = ACTIONS(7745), + [anon_sym_AMP_EQ] = ACTIONS(7745), + [anon_sym_CARET_EQ] = ACTIONS(7745), + [anon_sym_PIPE_EQ] = ACTIONS(7745), + [anon_sym_and_eq] = ACTIONS(7743), + [anon_sym_or_eq] = ACTIONS(7743), + [anon_sym_xor_eq] = ACTIONS(7743), + [anon_sym_LT_EQ_GT] = ACTIONS(7745), + [anon_sym_or] = ACTIONS(7743), + [anon_sym_and] = ACTIONS(7743), + [anon_sym_bitor] = ACTIONS(7743), + [anon_sym_xor] = ACTIONS(7743), + [anon_sym_bitand] = ACTIONS(7743), + [anon_sym_not_eq] = ACTIONS(7743), + [anon_sym_DASH_DASH] = ACTIONS(7745), + [anon_sym_PLUS_PLUS] = ACTIONS(7745), + [anon_sym_DOT] = ACTIONS(7743), + [anon_sym_DOT_STAR] = ACTIONS(7745), + [anon_sym_DASH_GT] = ACTIONS(7745), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7743), + [anon_sym_override] = ACTIONS(7743), + [anon_sym_requires] = ACTIONS(7743), + [anon_sym_COLON_RBRACK] = ACTIONS(7745), + }, + [STATE(2229)] = { + [sym_identifier] = ACTIONS(7747), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7749), + [anon_sym_COMMA] = ACTIONS(7749), + [anon_sym_RPAREN] = ACTIONS(7749), + [aux_sym_preproc_if_token2] = ACTIONS(7749), + [aux_sym_preproc_else_token1] = ACTIONS(7749), + [aux_sym_preproc_elif_token1] = ACTIONS(7747), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7749), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7749), + [anon_sym_LPAREN2] = ACTIONS(7749), + [anon_sym_DASH] = ACTIONS(7747), + [anon_sym_PLUS] = ACTIONS(7747), + [anon_sym_STAR] = ACTIONS(7747), + [anon_sym_SLASH] = ACTIONS(7747), + [anon_sym_PERCENT] = ACTIONS(7747), + [anon_sym_PIPE_PIPE] = ACTIONS(7749), + [anon_sym_AMP_AMP] = ACTIONS(7749), + [anon_sym_PIPE] = ACTIONS(7747), + [anon_sym_CARET] = ACTIONS(7747), + [anon_sym_AMP] = ACTIONS(7747), + [anon_sym_EQ_EQ] = ACTIONS(7749), + [anon_sym_BANG_EQ] = ACTIONS(7749), + [anon_sym_GT] = ACTIONS(7747), + [anon_sym_GT_EQ] = ACTIONS(7749), + [anon_sym_LT_EQ] = ACTIONS(7747), + [anon_sym_LT] = ACTIONS(7747), + [anon_sym_LT_LT] = ACTIONS(7747), + [anon_sym_GT_GT] = ACTIONS(7747), + [anon_sym_SEMI] = ACTIONS(7749), + [anon_sym___extension__] = ACTIONS(7747), + [anon_sym___attribute__] = ACTIONS(7747), + [anon_sym___attribute] = ACTIONS(7747), + [anon_sym_COLON] = ACTIONS(7747), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7749), + [anon_sym_LBRACE] = ACTIONS(7749), + [anon_sym_RBRACE] = ACTIONS(7749), + [anon_sym_LBRACK] = ACTIONS(7749), + [anon_sym_EQ] = ACTIONS(7747), + [anon_sym_const] = ACTIONS(7747), + [anon_sym_constexpr] = ACTIONS(7747), + [anon_sym_volatile] = ACTIONS(7747), + [anon_sym_restrict] = ACTIONS(7747), + [anon_sym___restrict__] = ACTIONS(7747), + [anon_sym__Atomic] = ACTIONS(7747), + [anon_sym__Noreturn] = ACTIONS(7747), + [anon_sym_noreturn] = ACTIONS(7747), + [anon_sym__Nonnull] = ACTIONS(7747), + [anon_sym_mutable] = ACTIONS(7747), + [anon_sym_constinit] = ACTIONS(7747), + [anon_sym_consteval] = ACTIONS(7747), [anon_sym_alignas] = ACTIONS(7747), [anon_sym__Alignas] = ACTIONS(7747), - [anon_sym_QMARK] = ACTIONS(6459), - [anon_sym_LT_EQ_GT] = ACTIONS(6459), - [anon_sym_or] = ACTIONS(6457), - [anon_sym_and] = ACTIONS(6457), - [anon_sym_bitor] = ACTIONS(6457), - [anon_sym_xor] = ACTIONS(6457), - [anon_sym_bitand] = ACTIONS(6457), - [anon_sym_not_eq] = ACTIONS(6457), - [anon_sym_DASH_DASH] = ACTIONS(6459), - [anon_sym_PLUS_PLUS] = ACTIONS(6459), - [anon_sym_DOT] = ACTIONS(6457), - [anon_sym_DOT_STAR] = ACTIONS(6459), - [anon_sym_DASH_GT] = ACTIONS(6459), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6457), - [anon_sym_override] = ACTIONS(6457), - [anon_sym_requires] = ACTIONS(6457), - }, - [STATE(2280)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2280), - [sym_identifier] = ACTIONS(6627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6629), - [anon_sym_COMMA] = ACTIONS(6629), - [anon_sym_LPAREN2] = ACTIONS(6629), - [anon_sym_DASH] = ACTIONS(6627), - [anon_sym_PLUS] = ACTIONS(6627), - [anon_sym_STAR] = ACTIONS(6627), - [anon_sym_SLASH] = ACTIONS(6627), - [anon_sym_PERCENT] = ACTIONS(6627), - [anon_sym_PIPE_PIPE] = ACTIONS(6629), - [anon_sym_AMP_AMP] = ACTIONS(6629), - [anon_sym_PIPE] = ACTIONS(6627), - [anon_sym_CARET] = ACTIONS(6627), - [anon_sym_AMP] = ACTIONS(6627), - [anon_sym_EQ_EQ] = ACTIONS(6629), - [anon_sym_BANG_EQ] = ACTIONS(6629), - [anon_sym_GT] = ACTIONS(6627), - [anon_sym_GT_EQ] = ACTIONS(6627), - [anon_sym_LT_EQ] = ACTIONS(6627), - [anon_sym_LT] = ACTIONS(6627), - [anon_sym_LT_LT] = ACTIONS(6627), - [anon_sym_GT_GT] = ACTIONS(6627), - [anon_sym___extension__] = ACTIONS(6627), - [anon_sym___attribute__] = ACTIONS(6627), - [anon_sym___attribute] = ACTIONS(6627), - [anon_sym_LBRACE] = ACTIONS(6629), - [anon_sym_signed] = ACTIONS(7751), - [anon_sym_unsigned] = ACTIONS(7751), - [anon_sym_long] = ACTIONS(7751), - [anon_sym_short] = ACTIONS(7751), - [anon_sym_LBRACK] = ACTIONS(6629), - [anon_sym_EQ] = ACTIONS(6627), - [anon_sym_const] = ACTIONS(6627), - [anon_sym_constexpr] = ACTIONS(6627), - [anon_sym_volatile] = ACTIONS(6627), - [anon_sym_restrict] = ACTIONS(6627), - [anon_sym___restrict__] = ACTIONS(6627), - [anon_sym__Atomic] = ACTIONS(6627), - [anon_sym__Noreturn] = ACTIONS(6627), - [anon_sym_noreturn] = ACTIONS(6627), - [anon_sym__Nonnull] = ACTIONS(6627), - [anon_sym_mutable] = ACTIONS(6627), - [anon_sym_constinit] = ACTIONS(6627), - [anon_sym_consteval] = ACTIONS(6627), - [anon_sym_alignas] = ACTIONS(6627), - [anon_sym__Alignas] = ACTIONS(6627), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(6629), - [anon_sym_STAR_EQ] = ACTIONS(6629), - [anon_sym_SLASH_EQ] = ACTIONS(6629), - [anon_sym_PERCENT_EQ] = ACTIONS(6629), - [anon_sym_PLUS_EQ] = ACTIONS(6629), - [anon_sym_DASH_EQ] = ACTIONS(6629), - [anon_sym_LT_LT_EQ] = ACTIONS(6629), - [anon_sym_GT_GT_EQ] = ACTIONS(6627), - [anon_sym_AMP_EQ] = ACTIONS(6629), - [anon_sym_CARET_EQ] = ACTIONS(6629), - [anon_sym_PIPE_EQ] = ACTIONS(6629), - [anon_sym_and_eq] = ACTIONS(6627), - [anon_sym_or_eq] = ACTIONS(6627), - [anon_sym_xor_eq] = ACTIONS(6627), - [anon_sym_LT_EQ_GT] = ACTIONS(6629), - [anon_sym_or] = ACTIONS(6627), - [anon_sym_and] = ACTIONS(6627), - [anon_sym_bitor] = ACTIONS(6627), - [anon_sym_xor] = ACTIONS(6627), - [anon_sym_bitand] = ACTIONS(6627), - [anon_sym_not_eq] = ACTIONS(6627), - [anon_sym_DASH_DASH] = ACTIONS(6629), - [anon_sym_PLUS_PLUS] = ACTIONS(6629), - [anon_sym_DOT] = ACTIONS(6627), - [anon_sym_DOT_STAR] = ACTIONS(6629), - [anon_sym_DASH_GT] = ACTIONS(6629), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6627), - [anon_sym_override] = ACTIONS(6627), - [anon_sym_GT2] = ACTIONS(6629), - [anon_sym_requires] = ACTIONS(6627), - }, - [STATE(2281)] = { - [sym_attribute_specifier] = STATE(2281), - [aux_sym_type_definition_repeat1] = STATE(2281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6555), - [anon_sym_COMMA] = ACTIONS(6555), - [anon_sym_LPAREN2] = ACTIONS(6555), - [anon_sym_DASH] = ACTIONS(6553), - [anon_sym_PLUS] = ACTIONS(6553), - [anon_sym_STAR] = ACTIONS(6553), - [anon_sym_SLASH] = ACTIONS(6553), - [anon_sym_PERCENT] = ACTIONS(6553), - [anon_sym_PIPE_PIPE] = ACTIONS(6555), - [anon_sym_AMP_AMP] = ACTIONS(6555), - [anon_sym_PIPE] = ACTIONS(6553), - [anon_sym_CARET] = ACTIONS(6553), - [anon_sym_AMP] = ACTIONS(6553), - [anon_sym_EQ_EQ] = ACTIONS(6555), - [anon_sym_BANG_EQ] = ACTIONS(6555), - [anon_sym_GT] = ACTIONS(6553), - [anon_sym_GT_EQ] = ACTIONS(6553), - [anon_sym_LT_EQ] = ACTIONS(6553), - [anon_sym_LT] = ACTIONS(6553), - [anon_sym_LT_LT] = ACTIONS(6553), - [anon_sym_GT_GT] = ACTIONS(6553), - [anon_sym___extension__] = ACTIONS(6555), - [anon_sym___attribute__] = ACTIONS(7766), - [anon_sym___attribute] = ACTIONS(7769), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6555), - [anon_sym_LBRACK] = ACTIONS(6553), - [anon_sym_EQ] = ACTIONS(6553), - [anon_sym_const] = ACTIONS(6553), - [anon_sym_constexpr] = ACTIONS(6555), - [anon_sym_volatile] = ACTIONS(6555), - [anon_sym_restrict] = ACTIONS(6555), - [anon_sym___restrict__] = ACTIONS(6555), - [anon_sym__Atomic] = ACTIONS(6555), - [anon_sym__Noreturn] = ACTIONS(6555), - [anon_sym_noreturn] = ACTIONS(6555), - [anon_sym__Nonnull] = ACTIONS(6555), - [anon_sym_mutable] = ACTIONS(6555), - [anon_sym_constinit] = ACTIONS(6555), - [anon_sym_consteval] = ACTIONS(6555), - [anon_sym_alignas] = ACTIONS(6555), - [anon_sym__Alignas] = ACTIONS(6555), - [anon_sym_QMARK] = ACTIONS(6555), - [anon_sym_STAR_EQ] = ACTIONS(6555), - [anon_sym_SLASH_EQ] = ACTIONS(6555), - [anon_sym_PERCENT_EQ] = ACTIONS(6555), - [anon_sym_PLUS_EQ] = ACTIONS(6555), - [anon_sym_DASH_EQ] = ACTIONS(6555), - [anon_sym_LT_LT_EQ] = ACTIONS(6555), - [anon_sym_GT_GT_EQ] = ACTIONS(6553), - [anon_sym_AMP_EQ] = ACTIONS(6555), - [anon_sym_CARET_EQ] = ACTIONS(6555), - [anon_sym_PIPE_EQ] = ACTIONS(6555), - [anon_sym_and_eq] = ACTIONS(6555), - [anon_sym_or_eq] = ACTIONS(6555), - [anon_sym_xor_eq] = ACTIONS(6555), - [anon_sym_LT_EQ_GT] = ACTIONS(6555), - [anon_sym_or] = ACTIONS(6553), - [anon_sym_and] = ACTIONS(6553), - [anon_sym_bitor] = ACTIONS(6555), - [anon_sym_xor] = ACTIONS(6553), - [anon_sym_bitand] = ACTIONS(6555), - [anon_sym_not_eq] = ACTIONS(6555), - [anon_sym_DASH_DASH] = ACTIONS(6555), - [anon_sym_PLUS_PLUS] = ACTIONS(6555), - [anon_sym_asm] = ACTIONS(6555), - [anon_sym___asm__] = ACTIONS(6555), - [anon_sym___asm] = ACTIONS(6553), - [anon_sym_DOT] = ACTIONS(6553), - [anon_sym_DOT_STAR] = ACTIONS(6555), - [anon_sym_DASH_GT] = ACTIONS(6555), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6555), - [anon_sym_override] = ACTIONS(6555), - [anon_sym_GT2] = ACTIONS(6555), - [anon_sym_noexcept] = ACTIONS(6555), - [anon_sym_throw] = ACTIONS(6555), - [anon_sym_requires] = ACTIONS(6555), - }, - [STATE(2282)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2792), - [sym_ms_pointer_modifier] = STATE(2283), - [sym__abstract_declarator] = STATE(6052), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(2940), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(1977), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(2940), - [aux_sym_pointer_declarator_repeat1] = STATE(2283), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_RPAREN] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_PLUS] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(7772), - [anon_sym_SLASH] = ACTIONS(6457), - [anon_sym_PERCENT] = ACTIONS(6459), - [anon_sym_PIPE_PIPE] = ACTIONS(6459), - [anon_sym_AMP_AMP] = ACTIONS(7774), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_CARET] = ACTIONS(6459), - [anon_sym_AMP] = ACTIONS(7776), - [anon_sym_EQ_EQ] = ACTIONS(6459), - [anon_sym_BANG_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_LT_EQ] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_LT_LT] = ACTIONS(6459), - [anon_sym_GT_GT] = ACTIONS(6459), - [anon_sym_SEMI] = ACTIONS(6459), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym_COLON] = ACTIONS(6457), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6459), - [sym_ms_restrict_modifier] = ACTIONS(7741), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7780), - [sym_ms_signed_ptr_modifier] = ACTIONS(7780), - [anon_sym__unaligned] = ACTIONS(7782), - [anon_sym___unaligned] = ACTIONS(7782), - [anon_sym_RBRACE] = ACTIONS(6459), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(6459), - [anon_sym_LT_EQ_GT] = ACTIONS(6459), - [anon_sym_or] = ACTIONS(6459), - [anon_sym_and] = ACTIONS(6459), - [anon_sym_bitor] = ACTIONS(6459), - [anon_sym_xor] = ACTIONS(6459), - [anon_sym_bitand] = ACTIONS(6459), - [anon_sym_not_eq] = ACTIONS(6459), - [anon_sym_DASH_DASH] = ACTIONS(6459), - [anon_sym_PLUS_PLUS] = ACTIONS(6459), - [anon_sym_DOT] = ACTIONS(6457), - [anon_sym_DOT_STAR] = ACTIONS(6459), - [anon_sym_DASH_GT] = ACTIONS(6459), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6459), - [anon_sym_override] = ACTIONS(6459), - [anon_sym_requires] = ACTIONS(6459), - [anon_sym_COLON_RBRACK] = ACTIONS(6459), - }, - [STATE(2283)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2792), - [sym_ms_pointer_modifier] = STATE(2423), - [sym__abstract_declarator] = STATE(6062), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(2944), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(1977), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(2944), - [aux_sym_pointer_declarator_repeat1] = STATE(2423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_RPAREN] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(7772), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6497), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(7774), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6497), - [anon_sym_AMP] = ACTIONS(7776), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6497), - [anon_sym_GT_GT] = ACTIONS(6497), - [anon_sym_SEMI] = ACTIONS(6497), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym_COLON] = ACTIONS(6495), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6497), - [sym_ms_restrict_modifier] = ACTIONS(7741), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7780), - [sym_ms_signed_ptr_modifier] = ACTIONS(7780), - [anon_sym__unaligned] = ACTIONS(7782), - [anon_sym___unaligned] = ACTIONS(7782), - [anon_sym_RBRACE] = ACTIONS(6497), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6497), - [anon_sym_and] = ACTIONS(6497), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6497), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6497), - [anon_sym_override] = ACTIONS(6497), - [anon_sym_requires] = ACTIONS(6497), - [anon_sym_COLON_RBRACK] = ACTIONS(6497), + [anon_sym_QMARK] = ACTIONS(7749), + [anon_sym_STAR_EQ] = ACTIONS(7749), + [anon_sym_SLASH_EQ] = ACTIONS(7749), + [anon_sym_PERCENT_EQ] = ACTIONS(7749), + [anon_sym_PLUS_EQ] = ACTIONS(7749), + [anon_sym_DASH_EQ] = ACTIONS(7749), + [anon_sym_LT_LT_EQ] = ACTIONS(7749), + [anon_sym_GT_GT_EQ] = ACTIONS(7749), + [anon_sym_AMP_EQ] = ACTIONS(7749), + [anon_sym_CARET_EQ] = ACTIONS(7749), + [anon_sym_PIPE_EQ] = ACTIONS(7749), + [anon_sym_and_eq] = ACTIONS(7747), + [anon_sym_or_eq] = ACTIONS(7747), + [anon_sym_xor_eq] = ACTIONS(7747), + [anon_sym_LT_EQ_GT] = ACTIONS(7749), + [anon_sym_or] = ACTIONS(7747), + [anon_sym_and] = ACTIONS(7747), + [anon_sym_bitor] = ACTIONS(7747), + [anon_sym_xor] = ACTIONS(7747), + [anon_sym_bitand] = ACTIONS(7747), + [anon_sym_not_eq] = ACTIONS(7747), + [anon_sym_DASH_DASH] = ACTIONS(7749), + [anon_sym_PLUS_PLUS] = ACTIONS(7749), + [anon_sym_DOT] = ACTIONS(7747), + [anon_sym_DOT_STAR] = ACTIONS(7749), + [anon_sym_DASH_GT] = ACTIONS(7749), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7747), + [anon_sym_override] = ACTIONS(7747), + [anon_sym_requires] = ACTIONS(7747), + [anon_sym_COLON_RBRACK] = ACTIONS(7749), }, - [STATE(2284)] = { - [sym_identifier] = ACTIONS(6716), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), - [anon_sym_COMMA] = ACTIONS(6718), - [anon_sym_LPAREN2] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6716), - [anon_sym_PLUS] = ACTIONS(6716), - [anon_sym_STAR] = ACTIONS(6716), - [anon_sym_SLASH] = ACTIONS(6716), - [anon_sym_PERCENT] = ACTIONS(6716), - [anon_sym_PIPE_PIPE] = ACTIONS(6718), - [anon_sym_AMP_AMP] = ACTIONS(6718), - [anon_sym_PIPE] = ACTIONS(6716), - [anon_sym_CARET] = ACTIONS(6716), - [anon_sym_AMP] = ACTIONS(6716), - [anon_sym_EQ_EQ] = ACTIONS(6718), - [anon_sym_BANG_EQ] = ACTIONS(6718), - [anon_sym_GT] = ACTIONS(6716), - [anon_sym_GT_EQ] = ACTIONS(6718), - [anon_sym_LT_EQ] = ACTIONS(6716), - [anon_sym_LT] = ACTIONS(6716), - [anon_sym_LT_LT] = ACTIONS(6716), - [anon_sym_GT_GT] = ACTIONS(6716), - [anon_sym___extension__] = ACTIONS(6716), - [anon_sym___attribute__] = ACTIONS(6716), - [anon_sym___attribute] = ACTIONS(6716), - [anon_sym_LBRACE] = ACTIONS(6718), - [anon_sym_signed] = ACTIONS(6716), - [anon_sym_unsigned] = ACTIONS(6716), - [anon_sym_long] = ACTIONS(6716), - [anon_sym_short] = ACTIONS(6716), - [anon_sym_LBRACK] = ACTIONS(6718), - [anon_sym_RBRACK] = ACTIONS(6718), - [anon_sym_EQ] = ACTIONS(6716), - [anon_sym_const] = ACTIONS(6716), - [anon_sym_constexpr] = ACTIONS(6716), - [anon_sym_volatile] = ACTIONS(6716), - [anon_sym_restrict] = ACTIONS(6716), - [anon_sym___restrict__] = ACTIONS(6716), - [anon_sym__Atomic] = ACTIONS(6716), - [anon_sym__Noreturn] = ACTIONS(6716), - [anon_sym_noreturn] = ACTIONS(6716), - [anon_sym__Nonnull] = ACTIONS(6716), - [anon_sym_mutable] = ACTIONS(6716), - [anon_sym_constinit] = ACTIONS(6716), - [anon_sym_consteval] = ACTIONS(6716), - [anon_sym_alignas] = ACTIONS(6716), - [anon_sym__Alignas] = ACTIONS(6716), - [sym_primitive_type] = ACTIONS(6716), - [anon_sym_QMARK] = ACTIONS(6718), - [anon_sym_STAR_EQ] = ACTIONS(6718), - [anon_sym_SLASH_EQ] = ACTIONS(6718), - [anon_sym_PERCENT_EQ] = ACTIONS(6718), - [anon_sym_PLUS_EQ] = ACTIONS(6718), - [anon_sym_DASH_EQ] = ACTIONS(6718), - [anon_sym_LT_LT_EQ] = ACTIONS(6718), - [anon_sym_GT_GT_EQ] = ACTIONS(6718), - [anon_sym_AMP_EQ] = ACTIONS(6718), - [anon_sym_CARET_EQ] = ACTIONS(6718), - [anon_sym_PIPE_EQ] = ACTIONS(6718), - [anon_sym_and_eq] = ACTIONS(6716), - [anon_sym_or_eq] = ACTIONS(6716), - [anon_sym_xor_eq] = ACTIONS(6716), - [anon_sym_LT_EQ_GT] = ACTIONS(6718), - [anon_sym_or] = ACTIONS(6716), - [anon_sym_and] = ACTIONS(6716), - [anon_sym_bitor] = ACTIONS(6716), - [anon_sym_xor] = ACTIONS(6716), - [anon_sym_bitand] = ACTIONS(6716), - [anon_sym_not_eq] = ACTIONS(6716), - [anon_sym_DASH_DASH] = ACTIONS(6718), - [anon_sym_PLUS_PLUS] = ACTIONS(6718), - [anon_sym_DOT] = ACTIONS(6716), - [anon_sym_DOT_STAR] = ACTIONS(6718), - [anon_sym_DASH_GT] = ACTIONS(6718), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6716), - [anon_sym_override] = ACTIONS(6716), - [anon_sym_requires] = ACTIONS(6716), + [STATE(2230)] = { + [sym_identifier] = ACTIONS(7751), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7753), + [anon_sym_COMMA] = ACTIONS(7753), + [anon_sym_RPAREN] = ACTIONS(7753), + [aux_sym_preproc_if_token2] = ACTIONS(7753), + [aux_sym_preproc_else_token1] = ACTIONS(7753), + [aux_sym_preproc_elif_token1] = ACTIONS(7751), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7753), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7753), + [anon_sym_LPAREN2] = ACTIONS(7753), + [anon_sym_DASH] = ACTIONS(7751), + [anon_sym_PLUS] = ACTIONS(7751), + [anon_sym_STAR] = ACTIONS(7751), + [anon_sym_SLASH] = ACTIONS(7751), + [anon_sym_PERCENT] = ACTIONS(7751), + [anon_sym_PIPE_PIPE] = ACTIONS(7753), + [anon_sym_AMP_AMP] = ACTIONS(7753), + [anon_sym_PIPE] = ACTIONS(7751), + [anon_sym_CARET] = ACTIONS(7751), + [anon_sym_AMP] = ACTIONS(7751), + [anon_sym_EQ_EQ] = ACTIONS(7753), + [anon_sym_BANG_EQ] = ACTIONS(7753), + [anon_sym_GT] = ACTIONS(7751), + [anon_sym_GT_EQ] = ACTIONS(7753), + [anon_sym_LT_EQ] = ACTIONS(7751), + [anon_sym_LT] = ACTIONS(7751), + [anon_sym_LT_LT] = ACTIONS(7751), + [anon_sym_GT_GT] = ACTIONS(7751), + [anon_sym_SEMI] = ACTIONS(7753), + [anon_sym___extension__] = ACTIONS(7751), + [anon_sym___attribute__] = ACTIONS(7751), + [anon_sym___attribute] = ACTIONS(7751), + [anon_sym_COLON] = ACTIONS(7751), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7753), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_RBRACE] = ACTIONS(7753), + [anon_sym_LBRACK] = ACTIONS(7753), + [anon_sym_EQ] = ACTIONS(7751), + [anon_sym_const] = ACTIONS(7751), + [anon_sym_constexpr] = ACTIONS(7751), + [anon_sym_volatile] = ACTIONS(7751), + [anon_sym_restrict] = ACTIONS(7751), + [anon_sym___restrict__] = ACTIONS(7751), + [anon_sym__Atomic] = ACTIONS(7751), + [anon_sym__Noreturn] = ACTIONS(7751), + [anon_sym_noreturn] = ACTIONS(7751), + [anon_sym__Nonnull] = ACTIONS(7751), + [anon_sym_mutable] = ACTIONS(7751), + [anon_sym_constinit] = ACTIONS(7751), + [anon_sym_consteval] = ACTIONS(7751), + [anon_sym_alignas] = ACTIONS(7751), + [anon_sym__Alignas] = ACTIONS(7751), + [anon_sym_QMARK] = ACTIONS(7753), + [anon_sym_STAR_EQ] = ACTIONS(7753), + [anon_sym_SLASH_EQ] = ACTIONS(7753), + [anon_sym_PERCENT_EQ] = ACTIONS(7753), + [anon_sym_PLUS_EQ] = ACTIONS(7753), + [anon_sym_DASH_EQ] = ACTIONS(7753), + [anon_sym_LT_LT_EQ] = ACTIONS(7753), + [anon_sym_GT_GT_EQ] = ACTIONS(7753), + [anon_sym_AMP_EQ] = ACTIONS(7753), + [anon_sym_CARET_EQ] = ACTIONS(7753), + [anon_sym_PIPE_EQ] = ACTIONS(7753), + [anon_sym_and_eq] = ACTIONS(7751), + [anon_sym_or_eq] = ACTIONS(7751), + [anon_sym_xor_eq] = ACTIONS(7751), + [anon_sym_LT_EQ_GT] = ACTIONS(7753), + [anon_sym_or] = ACTIONS(7751), + [anon_sym_and] = ACTIONS(7751), + [anon_sym_bitor] = ACTIONS(7751), + [anon_sym_xor] = ACTIONS(7751), + [anon_sym_bitand] = ACTIONS(7751), + [anon_sym_not_eq] = ACTIONS(7751), + [anon_sym_DASH_DASH] = ACTIONS(7753), + [anon_sym_PLUS_PLUS] = ACTIONS(7753), + [anon_sym_DOT] = ACTIONS(7751), + [anon_sym_DOT_STAR] = ACTIONS(7753), + [anon_sym_DASH_GT] = ACTIONS(7753), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7751), + [anon_sym_override] = ACTIONS(7751), + [anon_sym_requires] = ACTIONS(7751), + [anon_sym_COLON_RBRACK] = ACTIONS(7753), }, - [STATE(2285)] = { - [sym__abstract_declarator] = STATE(5156), - [sym_abstract_parenthesized_declarator] = STATE(4672), - [sym_abstract_pointer_declarator] = STATE(4672), - [sym_abstract_function_declarator] = STATE(4672), - [sym_abstract_array_declarator] = STATE(4672), - [sym_type_qualifier] = STATE(2163), - [sym_alignas_qualifier] = STATE(2278), - [sym_parameter_list] = STATE(1869), - [sym_abstract_reference_declarator] = STATE(4672), - [sym__function_declarator_seq] = STATE(4681), - [aux_sym__type_definition_type_repeat1] = STATE(2163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), - [anon_sym_COMMA] = ACTIONS(6995), - [anon_sym_RPAREN] = ACTIONS(6995), - [anon_sym_LPAREN2] = ACTIONS(6648), - [anon_sym_DASH] = ACTIONS(6997), - [anon_sym_PLUS] = ACTIONS(6997), - [anon_sym_STAR] = ACTIONS(6971), - [anon_sym_SLASH] = ACTIONS(6997), - [anon_sym_PERCENT] = ACTIONS(6997), - [anon_sym_PIPE_PIPE] = ACTIONS(6995), - [anon_sym_AMP_AMP] = ACTIONS(6973), - [anon_sym_PIPE] = ACTIONS(6997), - [anon_sym_CARET] = ACTIONS(6997), - [anon_sym_AMP] = ACTIONS(6975), - [anon_sym_EQ_EQ] = ACTIONS(6995), - [anon_sym_BANG_EQ] = ACTIONS(6995), - [anon_sym_GT] = ACTIONS(6997), - [anon_sym_GT_EQ] = ACTIONS(6995), - [anon_sym_LT_EQ] = ACTIONS(6997), - [anon_sym_LT] = ACTIONS(6997), - [anon_sym_LT_LT] = ACTIONS(6997), - [anon_sym_GT_GT] = ACTIONS(6997), - [anon_sym___extension__] = ACTIONS(6656), - [anon_sym_LBRACK] = ACTIONS(6664), - [anon_sym_EQ] = ACTIONS(6997), - [anon_sym_const] = ACTIONS(6666), - [anon_sym_constexpr] = ACTIONS(6656), - [anon_sym_volatile] = ACTIONS(6656), - [anon_sym_restrict] = ACTIONS(6656), - [anon_sym___restrict__] = ACTIONS(6656), - [anon_sym__Atomic] = ACTIONS(6656), - [anon_sym__Noreturn] = ACTIONS(6656), - [anon_sym_noreturn] = ACTIONS(6656), - [anon_sym__Nonnull] = ACTIONS(6656), - [anon_sym_mutable] = ACTIONS(6656), - [anon_sym_constinit] = ACTIONS(6656), - [anon_sym_consteval] = ACTIONS(6656), - [anon_sym_alignas] = ACTIONS(6668), - [anon_sym__Alignas] = ACTIONS(6668), - [anon_sym_QMARK] = ACTIONS(6995), - [anon_sym_STAR_EQ] = ACTIONS(6995), - [anon_sym_SLASH_EQ] = ACTIONS(6995), - [anon_sym_PERCENT_EQ] = ACTIONS(6995), - [anon_sym_PLUS_EQ] = ACTIONS(6995), - [anon_sym_DASH_EQ] = ACTIONS(6995), - [anon_sym_LT_LT_EQ] = ACTIONS(6995), - [anon_sym_GT_GT_EQ] = ACTIONS(6995), - [anon_sym_AMP_EQ] = ACTIONS(6995), - [anon_sym_CARET_EQ] = ACTIONS(6995), - [anon_sym_PIPE_EQ] = ACTIONS(6995), - [anon_sym_and_eq] = ACTIONS(6995), - [anon_sym_or_eq] = ACTIONS(6995), - [anon_sym_xor_eq] = ACTIONS(6995), - [anon_sym_LT_EQ_GT] = ACTIONS(6995), - [anon_sym_or] = ACTIONS(6997), - [anon_sym_and] = ACTIONS(6997), - [anon_sym_bitor] = ACTIONS(6995), - [anon_sym_xor] = ACTIONS(6997), - [anon_sym_bitand] = ACTIONS(6995), - [anon_sym_not_eq] = ACTIONS(6995), - [anon_sym_DASH_DASH] = ACTIONS(6995), - [anon_sym_PLUS_PLUS] = ACTIONS(6995), - [anon_sym_DOT] = ACTIONS(6997), - [anon_sym_DOT_STAR] = ACTIONS(6995), - [anon_sym_DASH_GT] = ACTIONS(6997), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6995), + [STATE(2231)] = { + [sym_identifier] = ACTIONS(6605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_RPAREN] = ACTIONS(6598), + [aux_sym_preproc_if_token2] = ACTIONS(6598), + [aux_sym_preproc_else_token1] = ACTIONS(6598), + [aux_sym_preproc_elif_token1] = ACTIONS(6605), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6598), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6605), + [anon_sym_PLUS] = ACTIONS(6605), + [anon_sym_STAR] = ACTIONS(6605), + [anon_sym_SLASH] = ACTIONS(6605), + [anon_sym_PERCENT] = ACTIONS(6605), + [anon_sym_PIPE_PIPE] = ACTIONS(6598), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6605), + [anon_sym_CARET] = ACTIONS(6605), + [anon_sym_AMP] = ACTIONS(6605), + [anon_sym_EQ_EQ] = ACTIONS(6598), + [anon_sym_BANG_EQ] = ACTIONS(6598), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6598), + [anon_sym_LT_EQ] = ACTIONS(6605), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6605), + [anon_sym_GT_GT] = ACTIONS(6605), + [anon_sym_SEMI] = ACTIONS(6598), + [anon_sym___extension__] = ACTIONS(6594), + [anon_sym___attribute__] = ACTIONS(6605), + [anon_sym___attribute] = ACTIONS(6605), + [anon_sym_COLON] = ACTIONS(6605), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6598), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_RBRACE] = ACTIONS(6598), + [anon_sym_LBRACK] = ACTIONS(6598), + [anon_sym_EQ] = ACTIONS(6605), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6594), + [anon_sym_volatile] = ACTIONS(6594), + [anon_sym_restrict] = ACTIONS(6594), + [anon_sym___restrict__] = ACTIONS(6594), + [anon_sym__Atomic] = ACTIONS(6594), + [anon_sym__Noreturn] = ACTIONS(6594), + [anon_sym_noreturn] = ACTIONS(6594), + [anon_sym__Nonnull] = ACTIONS(6594), + [anon_sym_mutable] = ACTIONS(6594), + [anon_sym_constinit] = ACTIONS(6594), + [anon_sym_consteval] = ACTIONS(6594), + [anon_sym_alignas] = ACTIONS(6594), + [anon_sym__Alignas] = ACTIONS(6594), + [anon_sym_QMARK] = ACTIONS(6598), + [anon_sym_STAR_EQ] = ACTIONS(6598), + [anon_sym_SLASH_EQ] = ACTIONS(6598), + [anon_sym_PERCENT_EQ] = ACTIONS(6598), + [anon_sym_PLUS_EQ] = ACTIONS(6598), + [anon_sym_DASH_EQ] = ACTIONS(6598), + [anon_sym_LT_LT_EQ] = ACTIONS(6598), + [anon_sym_GT_GT_EQ] = ACTIONS(6598), + [anon_sym_AMP_EQ] = ACTIONS(6598), + [anon_sym_CARET_EQ] = ACTIONS(6598), + [anon_sym_PIPE_EQ] = ACTIONS(6598), + [anon_sym_and_eq] = ACTIONS(6605), + [anon_sym_or_eq] = ACTIONS(6605), + [anon_sym_xor_eq] = ACTIONS(6605), + [anon_sym_LT_EQ_GT] = ACTIONS(6598), + [anon_sym_or] = ACTIONS(6605), + [anon_sym_and] = ACTIONS(6605), + [anon_sym_bitor] = ACTIONS(6605), + [anon_sym_xor] = ACTIONS(6605), + [anon_sym_bitand] = ACTIONS(6605), + [anon_sym_not_eq] = ACTIONS(6605), + [anon_sym_DASH_DASH] = ACTIONS(6598), + [anon_sym_PLUS_PLUS] = ACTIONS(6598), + [anon_sym_DOT] = ACTIONS(6605), + [anon_sym_DOT_STAR] = ACTIONS(6598), + [anon_sym_DASH_GT] = ACTIONS(6598), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6594), + [anon_sym_decltype] = ACTIONS(6594), + [anon_sym_COLON_RBRACK] = ACTIONS(6598), }, - [STATE(2286)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2222), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), - [anon_sym_COMMA] = ACTIONS(7389), - [anon_sym_RPAREN] = ACTIONS(7389), - [anon_sym_LPAREN2] = ACTIONS(7389), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_STAR] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7387), - [anon_sym_PERCENT] = ACTIONS(7387), - [anon_sym_PIPE_PIPE] = ACTIONS(7389), - [anon_sym_AMP_AMP] = ACTIONS(7389), - [anon_sym_PIPE] = ACTIONS(7387), - [anon_sym_CARET] = ACTIONS(7387), - [anon_sym_AMP] = ACTIONS(7387), - [anon_sym_EQ_EQ] = ACTIONS(7389), - [anon_sym_BANG_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_LT_EQ] = ACTIONS(7387), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_LT] = ACTIONS(7387), - [anon_sym_GT_GT] = ACTIONS(7387), - [anon_sym___extension__] = ACTIONS(7389), - [anon_sym___attribute__] = ACTIONS(7389), - [anon_sym___attribute] = ACTIONS(7387), - [anon_sym_LBRACE] = ACTIONS(7389), - [anon_sym_signed] = ACTIONS(7788), - [anon_sym_unsigned] = ACTIONS(7788), - [anon_sym_long] = ACTIONS(7788), - [anon_sym_short] = ACTIONS(7788), - [anon_sym_LBRACK] = ACTIONS(7389), - [anon_sym_EQ] = ACTIONS(7387), - [anon_sym_const] = ACTIONS(7387), - [anon_sym_constexpr] = ACTIONS(7389), - [anon_sym_volatile] = ACTIONS(7389), - [anon_sym_restrict] = ACTIONS(7389), - [anon_sym___restrict__] = ACTIONS(7389), - [anon_sym__Atomic] = ACTIONS(7389), - [anon_sym__Noreturn] = ACTIONS(7389), - [anon_sym_noreturn] = ACTIONS(7389), - [anon_sym__Nonnull] = ACTIONS(7389), - [anon_sym_mutable] = ACTIONS(7389), - [anon_sym_constinit] = ACTIONS(7389), - [anon_sym_consteval] = ACTIONS(7389), - [anon_sym_alignas] = ACTIONS(7389), - [anon_sym__Alignas] = ACTIONS(7389), - [anon_sym_QMARK] = ACTIONS(7389), - [anon_sym_STAR_EQ] = ACTIONS(7389), - [anon_sym_SLASH_EQ] = ACTIONS(7389), - [anon_sym_PERCENT_EQ] = ACTIONS(7389), - [anon_sym_PLUS_EQ] = ACTIONS(7389), - [anon_sym_DASH_EQ] = ACTIONS(7389), - [anon_sym_LT_LT_EQ] = ACTIONS(7389), - [anon_sym_GT_GT_EQ] = ACTIONS(7389), - [anon_sym_AMP_EQ] = ACTIONS(7389), - [anon_sym_CARET_EQ] = ACTIONS(7389), - [anon_sym_PIPE_EQ] = ACTIONS(7389), - [anon_sym_and_eq] = ACTIONS(7389), - [anon_sym_or_eq] = ACTIONS(7389), - [anon_sym_xor_eq] = ACTIONS(7389), - [anon_sym_LT_EQ_GT] = ACTIONS(7389), - [anon_sym_or] = ACTIONS(7387), - [anon_sym_and] = ACTIONS(7387), - [anon_sym_bitor] = ACTIONS(7389), - [anon_sym_xor] = ACTIONS(7387), - [anon_sym_bitand] = ACTIONS(7389), - [anon_sym_not_eq] = ACTIONS(7389), - [anon_sym_DASH_DASH] = ACTIONS(7389), - [anon_sym_PLUS_PLUS] = ACTIONS(7389), - [anon_sym_DOT] = ACTIONS(7387), - [anon_sym_DOT_STAR] = ACTIONS(7389), - [anon_sym_DASH_GT] = ACTIONS(7387), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7389), - [anon_sym_override] = ACTIONS(7389), - [anon_sym_requires] = ACTIONS(7389), - [anon_sym_DASH_GT_STAR] = ACTIONS(7389), + [STATE(2232)] = { + [sym_identifier] = ACTIONS(7755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7757), + [anon_sym_COMMA] = ACTIONS(7757), + [anon_sym_RPAREN] = ACTIONS(7757), + [aux_sym_preproc_if_token2] = ACTIONS(7757), + [aux_sym_preproc_else_token1] = ACTIONS(7757), + [aux_sym_preproc_elif_token1] = ACTIONS(7755), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7757), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7757), + [anon_sym_LPAREN2] = ACTIONS(7757), + [anon_sym_DASH] = ACTIONS(7755), + [anon_sym_PLUS] = ACTIONS(7755), + [anon_sym_STAR] = ACTIONS(7755), + [anon_sym_SLASH] = ACTIONS(7755), + [anon_sym_PERCENT] = ACTIONS(7755), + [anon_sym_PIPE_PIPE] = ACTIONS(7757), + [anon_sym_AMP_AMP] = ACTIONS(7757), + [anon_sym_PIPE] = ACTIONS(7755), + [anon_sym_CARET] = ACTIONS(7755), + [anon_sym_AMP] = ACTIONS(7755), + [anon_sym_EQ_EQ] = ACTIONS(7757), + [anon_sym_BANG_EQ] = ACTIONS(7757), + [anon_sym_GT] = ACTIONS(7755), + [anon_sym_GT_EQ] = ACTIONS(7757), + [anon_sym_LT_EQ] = ACTIONS(7755), + [anon_sym_LT] = ACTIONS(7755), + [anon_sym_LT_LT] = ACTIONS(7755), + [anon_sym_GT_GT] = ACTIONS(7755), + [anon_sym_SEMI] = ACTIONS(7757), + [anon_sym___extension__] = ACTIONS(7755), + [anon_sym___attribute__] = ACTIONS(7755), + [anon_sym___attribute] = ACTIONS(7755), + [anon_sym_COLON] = ACTIONS(7755), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7757), + [anon_sym_LBRACE] = ACTIONS(7757), + [anon_sym_RBRACE] = ACTIONS(7757), + [anon_sym_LBRACK] = ACTIONS(7757), + [anon_sym_EQ] = ACTIONS(7755), + [anon_sym_const] = ACTIONS(7755), + [anon_sym_constexpr] = ACTIONS(7755), + [anon_sym_volatile] = ACTIONS(7755), + [anon_sym_restrict] = ACTIONS(7755), + [anon_sym___restrict__] = ACTIONS(7755), + [anon_sym__Atomic] = ACTIONS(7755), + [anon_sym__Noreturn] = ACTIONS(7755), + [anon_sym_noreturn] = ACTIONS(7755), + [anon_sym__Nonnull] = ACTIONS(7755), + [anon_sym_mutable] = ACTIONS(7755), + [anon_sym_constinit] = ACTIONS(7755), + [anon_sym_consteval] = ACTIONS(7755), + [anon_sym_alignas] = ACTIONS(7755), + [anon_sym__Alignas] = ACTIONS(7755), + [anon_sym_QMARK] = ACTIONS(7757), + [anon_sym_STAR_EQ] = ACTIONS(7757), + [anon_sym_SLASH_EQ] = ACTIONS(7757), + [anon_sym_PERCENT_EQ] = ACTIONS(7757), + [anon_sym_PLUS_EQ] = ACTIONS(7757), + [anon_sym_DASH_EQ] = ACTIONS(7757), + [anon_sym_LT_LT_EQ] = ACTIONS(7757), + [anon_sym_GT_GT_EQ] = ACTIONS(7757), + [anon_sym_AMP_EQ] = ACTIONS(7757), + [anon_sym_CARET_EQ] = ACTIONS(7757), + [anon_sym_PIPE_EQ] = ACTIONS(7757), + [anon_sym_and_eq] = ACTIONS(7755), + [anon_sym_or_eq] = ACTIONS(7755), + [anon_sym_xor_eq] = ACTIONS(7755), + [anon_sym_LT_EQ_GT] = ACTIONS(7757), + [anon_sym_or] = ACTIONS(7755), + [anon_sym_and] = ACTIONS(7755), + [anon_sym_bitor] = ACTIONS(7755), + [anon_sym_xor] = ACTIONS(7755), + [anon_sym_bitand] = ACTIONS(7755), + [anon_sym_not_eq] = ACTIONS(7755), + [anon_sym_DASH_DASH] = ACTIONS(7757), + [anon_sym_PLUS_PLUS] = ACTIONS(7757), + [anon_sym_DOT] = ACTIONS(7755), + [anon_sym_DOT_STAR] = ACTIONS(7757), + [anon_sym_DASH_GT] = ACTIONS(7757), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7755), + [anon_sym_override] = ACTIONS(7755), + [anon_sym_requires] = ACTIONS(7755), + [anon_sym_COLON_RBRACK] = ACTIONS(7757), }, - [STATE(2287)] = { - [sym__abstract_declarator] = STATE(5024), - [sym_abstract_parenthesized_declarator] = STATE(5581), - [sym_abstract_pointer_declarator] = STATE(5581), - [sym_abstract_function_declarator] = STATE(5581), - [sym_abstract_array_declarator] = STATE(5581), - [sym_type_qualifier] = STATE(2290), - [sym_alignas_qualifier] = STATE(2432), - [sym_parameter_list] = STATE(1885), - [sym_abstract_reference_declarator] = STATE(5581), - [sym__function_declarator_seq] = STATE(5582), - [aux_sym__type_definition_type_repeat1] = STATE(2290), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), - [anon_sym_COMMA] = ACTIONS(6991), - [anon_sym_RPAREN] = ACTIONS(6991), - [anon_sym_LPAREN2] = ACTIONS(6927), - [anon_sym_DASH] = ACTIONS(6993), - [anon_sym_PLUS] = ACTIONS(6993), - [anon_sym_STAR] = ACTIONS(6929), - [anon_sym_SLASH] = ACTIONS(6993), - [anon_sym_PERCENT] = ACTIONS(6993), - [anon_sym_PIPE_PIPE] = ACTIONS(6991), - [anon_sym_AMP_AMP] = ACTIONS(6931), - [anon_sym_PIPE] = ACTIONS(6993), - [anon_sym_CARET] = ACTIONS(6993), - [anon_sym_AMP] = ACTIONS(6933), - [anon_sym_EQ_EQ] = ACTIONS(6991), - [anon_sym_BANG_EQ] = ACTIONS(6991), - [anon_sym_GT] = ACTIONS(6993), - [anon_sym_GT_EQ] = ACTIONS(6991), - [anon_sym_LT_EQ] = ACTIONS(6993), - [anon_sym_LT] = ACTIONS(6993), - [anon_sym_LT_LT] = ACTIONS(6993), - [anon_sym_GT_GT] = ACTIONS(6993), - [anon_sym___extension__] = ACTIONS(6935), - [anon_sym_LBRACK] = ACTIONS(6943), - [anon_sym_EQ] = ACTIONS(6993), - [anon_sym_const] = ACTIONS(6945), - [anon_sym_constexpr] = ACTIONS(6935), - [anon_sym_volatile] = ACTIONS(6935), - [anon_sym_restrict] = ACTIONS(6935), - [anon_sym___restrict__] = ACTIONS(6935), - [anon_sym__Atomic] = ACTIONS(6935), - [anon_sym__Noreturn] = ACTIONS(6935), - [anon_sym_noreturn] = ACTIONS(6935), - [anon_sym__Nonnull] = ACTIONS(6935), - [anon_sym_mutable] = ACTIONS(6935), - [anon_sym_constinit] = ACTIONS(6935), - [anon_sym_consteval] = ACTIONS(6935), - [anon_sym_alignas] = ACTIONS(6947), - [anon_sym__Alignas] = ACTIONS(6947), - [anon_sym_QMARK] = ACTIONS(6991), - [anon_sym_STAR_EQ] = ACTIONS(6991), - [anon_sym_SLASH_EQ] = ACTIONS(6991), - [anon_sym_PERCENT_EQ] = ACTIONS(6991), - [anon_sym_PLUS_EQ] = ACTIONS(6991), - [anon_sym_DASH_EQ] = ACTIONS(6991), - [anon_sym_LT_LT_EQ] = ACTIONS(6991), - [anon_sym_GT_GT_EQ] = ACTIONS(6991), - [anon_sym_AMP_EQ] = ACTIONS(6991), - [anon_sym_CARET_EQ] = ACTIONS(6991), - [anon_sym_PIPE_EQ] = ACTIONS(6991), - [anon_sym_LT_EQ_GT] = ACTIONS(6991), - [anon_sym_or] = ACTIONS(6991), - [anon_sym_and] = ACTIONS(6991), - [anon_sym_bitor] = ACTIONS(6991), - [anon_sym_xor] = ACTIONS(6991), - [anon_sym_bitand] = ACTIONS(6991), - [anon_sym_not_eq] = ACTIONS(6991), - [anon_sym_DASH_DASH] = ACTIONS(6991), - [anon_sym_PLUS_PLUS] = ACTIONS(6991), - [anon_sym_DOT] = ACTIONS(6993), - [anon_sym_DOT_STAR] = ACTIONS(6991), - [anon_sym_DASH_GT] = ACTIONS(6993), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6991), - [anon_sym_override] = ACTIONS(6991), - [anon_sym_requires] = ACTIONS(6991), - [anon_sym_DASH_GT_STAR] = ACTIONS(6991), + [STATE(2233)] = { + [sym_identifier] = ACTIONS(7759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7761), + [anon_sym_COMMA] = ACTIONS(7761), + [anon_sym_RPAREN] = ACTIONS(7761), + [aux_sym_preproc_if_token2] = ACTIONS(7761), + [aux_sym_preproc_else_token1] = ACTIONS(7761), + [aux_sym_preproc_elif_token1] = ACTIONS(7759), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7761), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7761), + [anon_sym_LPAREN2] = ACTIONS(7761), + [anon_sym_DASH] = ACTIONS(7759), + [anon_sym_PLUS] = ACTIONS(7759), + [anon_sym_STAR] = ACTIONS(7759), + [anon_sym_SLASH] = ACTIONS(7759), + [anon_sym_PERCENT] = ACTIONS(7759), + [anon_sym_PIPE_PIPE] = ACTIONS(7761), + [anon_sym_AMP_AMP] = ACTIONS(7761), + [anon_sym_PIPE] = ACTIONS(7759), + [anon_sym_CARET] = ACTIONS(7759), + [anon_sym_AMP] = ACTIONS(7759), + [anon_sym_EQ_EQ] = ACTIONS(7761), + [anon_sym_BANG_EQ] = ACTIONS(7761), + [anon_sym_GT] = ACTIONS(7759), + [anon_sym_GT_EQ] = ACTIONS(7761), + [anon_sym_LT_EQ] = ACTIONS(7759), + [anon_sym_LT] = ACTIONS(7759), + [anon_sym_LT_LT] = ACTIONS(7759), + [anon_sym_GT_GT] = ACTIONS(7759), + [anon_sym_SEMI] = ACTIONS(7761), + [anon_sym___extension__] = ACTIONS(7759), + [anon_sym___attribute__] = ACTIONS(7759), + [anon_sym___attribute] = ACTIONS(7759), + [anon_sym_COLON] = ACTIONS(7759), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7761), + [anon_sym_LBRACE] = ACTIONS(7761), + [anon_sym_RBRACE] = ACTIONS(7761), + [anon_sym_LBRACK] = ACTIONS(7761), + [anon_sym_EQ] = ACTIONS(7759), + [anon_sym_const] = ACTIONS(7759), + [anon_sym_constexpr] = ACTIONS(7759), + [anon_sym_volatile] = ACTIONS(7759), + [anon_sym_restrict] = ACTIONS(7759), + [anon_sym___restrict__] = ACTIONS(7759), + [anon_sym__Atomic] = ACTIONS(7759), + [anon_sym__Noreturn] = ACTIONS(7759), + [anon_sym_noreturn] = ACTIONS(7759), + [anon_sym__Nonnull] = ACTIONS(7759), + [anon_sym_mutable] = ACTIONS(7759), + [anon_sym_constinit] = ACTIONS(7759), + [anon_sym_consteval] = ACTIONS(7759), + [anon_sym_alignas] = ACTIONS(7759), + [anon_sym__Alignas] = ACTIONS(7759), + [anon_sym_QMARK] = ACTIONS(7761), + [anon_sym_STAR_EQ] = ACTIONS(7761), + [anon_sym_SLASH_EQ] = ACTIONS(7761), + [anon_sym_PERCENT_EQ] = ACTIONS(7761), + [anon_sym_PLUS_EQ] = ACTIONS(7761), + [anon_sym_DASH_EQ] = ACTIONS(7761), + [anon_sym_LT_LT_EQ] = ACTIONS(7761), + [anon_sym_GT_GT_EQ] = ACTIONS(7761), + [anon_sym_AMP_EQ] = ACTIONS(7761), + [anon_sym_CARET_EQ] = ACTIONS(7761), + [anon_sym_PIPE_EQ] = ACTIONS(7761), + [anon_sym_and_eq] = ACTIONS(7759), + [anon_sym_or_eq] = ACTIONS(7759), + [anon_sym_xor_eq] = ACTIONS(7759), + [anon_sym_LT_EQ_GT] = ACTIONS(7761), + [anon_sym_or] = ACTIONS(7759), + [anon_sym_and] = ACTIONS(7759), + [anon_sym_bitor] = ACTIONS(7759), + [anon_sym_xor] = ACTIONS(7759), + [anon_sym_bitand] = ACTIONS(7759), + [anon_sym_not_eq] = ACTIONS(7759), + [anon_sym_DASH_DASH] = ACTIONS(7761), + [anon_sym_PLUS_PLUS] = ACTIONS(7761), + [anon_sym_DOT] = ACTIONS(7759), + [anon_sym_DOT_STAR] = ACTIONS(7761), + [anon_sym_DASH_GT] = ACTIONS(7761), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7759), + [anon_sym_override] = ACTIONS(7759), + [anon_sym_requires] = ACTIONS(7759), + [anon_sym_COLON_RBRACK] = ACTIONS(7761), }, - [STATE(2288)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6796), - [anon_sym_COMMA] = ACTIONS(6796), - [anon_sym_RPAREN] = ACTIONS(6796), - [anon_sym_LPAREN2] = ACTIONS(6796), - [anon_sym_DASH] = ACTIONS(6794), - [anon_sym_PLUS] = ACTIONS(6794), - [anon_sym_STAR] = ACTIONS(6794), - [anon_sym_SLASH] = ACTIONS(6794), - [anon_sym_PERCENT] = ACTIONS(6794), - [anon_sym_PIPE_PIPE] = ACTIONS(6796), - [anon_sym_AMP_AMP] = ACTIONS(6796), - [anon_sym_PIPE] = ACTIONS(6794), - [anon_sym_CARET] = ACTIONS(6794), - [anon_sym_AMP] = ACTIONS(6794), - [anon_sym_EQ_EQ] = ACTIONS(6796), - [anon_sym_BANG_EQ] = ACTIONS(6796), - [anon_sym_GT] = ACTIONS(6794), - [anon_sym_GT_EQ] = ACTIONS(6796), - [anon_sym_LT_EQ] = ACTIONS(6794), - [anon_sym_LT] = ACTIONS(6794), - [anon_sym_LT_LT] = ACTIONS(6794), - [anon_sym_GT_GT] = ACTIONS(6794), - [anon_sym___extension__] = ACTIONS(6796), - [anon_sym___attribute__] = ACTIONS(6796), - [anon_sym___attribute] = ACTIONS(6794), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6796), - [anon_sym_LBRACK] = ACTIONS(6794), - [anon_sym_EQ] = ACTIONS(6794), - [anon_sym_const] = ACTIONS(6794), - [anon_sym_constexpr] = ACTIONS(6796), - [anon_sym_volatile] = ACTIONS(6796), - [anon_sym_restrict] = ACTIONS(6796), - [anon_sym___restrict__] = ACTIONS(6796), - [anon_sym__Atomic] = ACTIONS(6796), - [anon_sym__Noreturn] = ACTIONS(6796), - [anon_sym_noreturn] = ACTIONS(6796), - [anon_sym__Nonnull] = ACTIONS(6796), - [anon_sym_mutable] = ACTIONS(6796), - [anon_sym_constinit] = ACTIONS(6796), - [anon_sym_consteval] = ACTIONS(6796), - [anon_sym_alignas] = ACTIONS(6796), - [anon_sym__Alignas] = ACTIONS(6796), - [anon_sym_QMARK] = ACTIONS(6796), - [anon_sym_STAR_EQ] = ACTIONS(6796), - [anon_sym_SLASH_EQ] = ACTIONS(6796), - [anon_sym_PERCENT_EQ] = ACTIONS(6796), - [anon_sym_PLUS_EQ] = ACTIONS(6796), - [anon_sym_DASH_EQ] = ACTIONS(6796), - [anon_sym_LT_LT_EQ] = ACTIONS(6796), - [anon_sym_GT_GT_EQ] = ACTIONS(6796), - [anon_sym_AMP_EQ] = ACTIONS(6796), - [anon_sym_CARET_EQ] = ACTIONS(6796), - [anon_sym_PIPE_EQ] = ACTIONS(6796), - [anon_sym_and_eq] = ACTIONS(6796), - [anon_sym_or_eq] = ACTIONS(6796), - [anon_sym_xor_eq] = ACTIONS(6796), - [anon_sym_LT_EQ_GT] = ACTIONS(6796), - [anon_sym_or] = ACTIONS(6794), - [anon_sym_and] = ACTIONS(6794), - [anon_sym_bitor] = ACTIONS(6796), - [anon_sym_xor] = ACTIONS(6794), - [anon_sym_bitand] = ACTIONS(6796), - [anon_sym_not_eq] = ACTIONS(6796), - [anon_sym_DASH_DASH] = ACTIONS(6796), - [anon_sym_PLUS_PLUS] = ACTIONS(6796), - [anon_sym_asm] = ACTIONS(6796), - [anon_sym___asm__] = ACTIONS(6796), - [anon_sym___asm] = ACTIONS(6794), - [anon_sym_DOT] = ACTIONS(6794), - [anon_sym_DOT_STAR] = ACTIONS(6796), - [anon_sym_DASH_GT] = ACTIONS(6794), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6796), - [anon_sym_override] = ACTIONS(6796), - [anon_sym_noexcept] = ACTIONS(6796), - [anon_sym_throw] = ACTIONS(6796), - [anon_sym_requires] = ACTIONS(6796), - [anon_sym_DASH_GT_STAR] = ACTIONS(6796), + [STATE(2234)] = { + [sym_identifier] = ACTIONS(7763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7765), + [anon_sym_COMMA] = ACTIONS(7765), + [anon_sym_RPAREN] = ACTIONS(7765), + [aux_sym_preproc_if_token2] = ACTIONS(7765), + [aux_sym_preproc_else_token1] = ACTIONS(7765), + [aux_sym_preproc_elif_token1] = ACTIONS(7763), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7765), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7765), + [anon_sym_LPAREN2] = ACTIONS(7765), + [anon_sym_DASH] = ACTIONS(7763), + [anon_sym_PLUS] = ACTIONS(7763), + [anon_sym_STAR] = ACTIONS(7763), + [anon_sym_SLASH] = ACTIONS(7763), + [anon_sym_PERCENT] = ACTIONS(7763), + [anon_sym_PIPE_PIPE] = ACTIONS(7765), + [anon_sym_AMP_AMP] = ACTIONS(7765), + [anon_sym_PIPE] = ACTIONS(7763), + [anon_sym_CARET] = ACTIONS(7763), + [anon_sym_AMP] = ACTIONS(7763), + [anon_sym_EQ_EQ] = ACTIONS(7765), + [anon_sym_BANG_EQ] = ACTIONS(7765), + [anon_sym_GT] = ACTIONS(7763), + [anon_sym_GT_EQ] = ACTIONS(7765), + [anon_sym_LT_EQ] = ACTIONS(7763), + [anon_sym_LT] = ACTIONS(7763), + [anon_sym_LT_LT] = ACTIONS(7763), + [anon_sym_GT_GT] = ACTIONS(7763), + [anon_sym_SEMI] = ACTIONS(7765), + [anon_sym___extension__] = ACTIONS(7763), + [anon_sym___attribute__] = ACTIONS(7763), + [anon_sym___attribute] = ACTIONS(7763), + [anon_sym_COLON] = ACTIONS(7763), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7765), + [anon_sym_LBRACE] = ACTIONS(7765), + [anon_sym_RBRACE] = ACTIONS(7765), + [anon_sym_LBRACK] = ACTIONS(7765), + [anon_sym_EQ] = ACTIONS(7763), + [anon_sym_const] = ACTIONS(7763), + [anon_sym_constexpr] = ACTIONS(7763), + [anon_sym_volatile] = ACTIONS(7763), + [anon_sym_restrict] = ACTIONS(7763), + [anon_sym___restrict__] = ACTIONS(7763), + [anon_sym__Atomic] = ACTIONS(7763), + [anon_sym__Noreturn] = ACTIONS(7763), + [anon_sym_noreturn] = ACTIONS(7763), + [anon_sym__Nonnull] = ACTIONS(7763), + [anon_sym_mutable] = ACTIONS(7763), + [anon_sym_constinit] = ACTIONS(7763), + [anon_sym_consteval] = ACTIONS(7763), + [anon_sym_alignas] = ACTIONS(7763), + [anon_sym__Alignas] = ACTIONS(7763), + [anon_sym_QMARK] = ACTIONS(7765), + [anon_sym_STAR_EQ] = ACTIONS(7765), + [anon_sym_SLASH_EQ] = ACTIONS(7765), + [anon_sym_PERCENT_EQ] = ACTIONS(7765), + [anon_sym_PLUS_EQ] = ACTIONS(7765), + [anon_sym_DASH_EQ] = ACTIONS(7765), + [anon_sym_LT_LT_EQ] = ACTIONS(7765), + [anon_sym_GT_GT_EQ] = ACTIONS(7765), + [anon_sym_AMP_EQ] = ACTIONS(7765), + [anon_sym_CARET_EQ] = ACTIONS(7765), + [anon_sym_PIPE_EQ] = ACTIONS(7765), + [anon_sym_and_eq] = ACTIONS(7763), + [anon_sym_or_eq] = ACTIONS(7763), + [anon_sym_xor_eq] = ACTIONS(7763), + [anon_sym_LT_EQ_GT] = ACTIONS(7765), + [anon_sym_or] = ACTIONS(7763), + [anon_sym_and] = ACTIONS(7763), + [anon_sym_bitor] = ACTIONS(7763), + [anon_sym_xor] = ACTIONS(7763), + [anon_sym_bitand] = ACTIONS(7763), + [anon_sym_not_eq] = ACTIONS(7763), + [anon_sym_DASH_DASH] = ACTIONS(7765), + [anon_sym_PLUS_PLUS] = ACTIONS(7765), + [anon_sym_DOT] = ACTIONS(7763), + [anon_sym_DOT_STAR] = ACTIONS(7765), + [anon_sym_DASH_GT] = ACTIONS(7765), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7763), + [anon_sym_override] = ACTIONS(7763), + [anon_sym_requires] = ACTIONS(7763), + [anon_sym_COLON_RBRACK] = ACTIONS(7765), }, - [STATE(2289)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7404), - [anon_sym_COMMA] = ACTIONS(7404), - [anon_sym_RPAREN] = ACTIONS(7404), - [anon_sym_LPAREN2] = ACTIONS(7404), - [anon_sym_DASH] = ACTIONS(7402), - [anon_sym_PLUS] = ACTIONS(7402), - [anon_sym_STAR] = ACTIONS(7402), - [anon_sym_SLASH] = ACTIONS(7402), - [anon_sym_PERCENT] = ACTIONS(7402), - [anon_sym_PIPE_PIPE] = ACTIONS(7404), - [anon_sym_AMP_AMP] = ACTIONS(7404), - [anon_sym_PIPE] = ACTIONS(7402), - [anon_sym_CARET] = ACTIONS(7402), - [anon_sym_AMP] = ACTIONS(7402), - [anon_sym_EQ_EQ] = ACTIONS(7404), - [anon_sym_BANG_EQ] = ACTIONS(7404), - [anon_sym_GT] = ACTIONS(7402), - [anon_sym_GT_EQ] = ACTIONS(7404), - [anon_sym_LT_EQ] = ACTIONS(7402), - [anon_sym_LT] = ACTIONS(7402), - [anon_sym_LT_LT] = ACTIONS(7402), - [anon_sym_GT_GT] = ACTIONS(7402), - [anon_sym___extension__] = ACTIONS(7404), - [anon_sym___attribute__] = ACTIONS(7404), - [anon_sym___attribute] = ACTIONS(7402), - [anon_sym_LBRACE] = ACTIONS(7404), - [anon_sym_signed] = ACTIONS(7790), - [anon_sym_unsigned] = ACTIONS(7790), - [anon_sym_long] = ACTIONS(7790), - [anon_sym_short] = ACTIONS(7790), - [anon_sym_LBRACK] = ACTIONS(7404), - [anon_sym_EQ] = ACTIONS(7402), - [anon_sym_const] = ACTIONS(7402), - [anon_sym_constexpr] = ACTIONS(7404), - [anon_sym_volatile] = ACTIONS(7404), - [anon_sym_restrict] = ACTIONS(7404), - [anon_sym___restrict__] = ACTIONS(7404), - [anon_sym__Atomic] = ACTIONS(7404), - [anon_sym__Noreturn] = ACTIONS(7404), - [anon_sym_noreturn] = ACTIONS(7404), - [anon_sym__Nonnull] = ACTIONS(7404), - [anon_sym_mutable] = ACTIONS(7404), - [anon_sym_constinit] = ACTIONS(7404), - [anon_sym_consteval] = ACTIONS(7404), - [anon_sym_alignas] = ACTIONS(7404), - [anon_sym__Alignas] = ACTIONS(7404), - [anon_sym_QMARK] = ACTIONS(7404), - [anon_sym_STAR_EQ] = ACTIONS(7404), - [anon_sym_SLASH_EQ] = ACTIONS(7404), - [anon_sym_PERCENT_EQ] = ACTIONS(7404), - [anon_sym_PLUS_EQ] = ACTIONS(7404), - [anon_sym_DASH_EQ] = ACTIONS(7404), - [anon_sym_LT_LT_EQ] = ACTIONS(7404), - [anon_sym_GT_GT_EQ] = ACTIONS(7404), - [anon_sym_AMP_EQ] = ACTIONS(7404), - [anon_sym_CARET_EQ] = ACTIONS(7404), - [anon_sym_PIPE_EQ] = ACTIONS(7404), - [anon_sym_and_eq] = ACTIONS(7404), - [anon_sym_or_eq] = ACTIONS(7404), - [anon_sym_xor_eq] = ACTIONS(7404), - [anon_sym_LT_EQ_GT] = ACTIONS(7404), - [anon_sym_or] = ACTIONS(7402), - [anon_sym_and] = ACTIONS(7402), - [anon_sym_bitor] = ACTIONS(7404), - [anon_sym_xor] = ACTIONS(7402), - [anon_sym_bitand] = ACTIONS(7404), - [anon_sym_not_eq] = ACTIONS(7404), - [anon_sym_DASH_DASH] = ACTIONS(7404), - [anon_sym_PLUS_PLUS] = ACTIONS(7404), - [anon_sym_DOT] = ACTIONS(7402), - [anon_sym_DOT_STAR] = ACTIONS(7404), - [anon_sym_DASH_GT] = ACTIONS(7402), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7404), - [anon_sym_override] = ACTIONS(7404), - [anon_sym_requires] = ACTIONS(7404), - [anon_sym_DASH_GT_STAR] = ACTIONS(7404), + [STATE(2235)] = { + [sym_identifier] = ACTIONS(7767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7769), + [anon_sym_COMMA] = ACTIONS(7769), + [anon_sym_RPAREN] = ACTIONS(7769), + [aux_sym_preproc_if_token2] = ACTIONS(7769), + [aux_sym_preproc_else_token1] = ACTIONS(7769), + [aux_sym_preproc_elif_token1] = ACTIONS(7767), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7769), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7769), + [anon_sym_LPAREN2] = ACTIONS(7769), + [anon_sym_DASH] = ACTIONS(7767), + [anon_sym_PLUS] = ACTIONS(7767), + [anon_sym_STAR] = ACTIONS(7767), + [anon_sym_SLASH] = ACTIONS(7767), + [anon_sym_PERCENT] = ACTIONS(7767), + [anon_sym_PIPE_PIPE] = ACTIONS(7769), + [anon_sym_AMP_AMP] = ACTIONS(7769), + [anon_sym_PIPE] = ACTIONS(7767), + [anon_sym_CARET] = ACTIONS(7767), + [anon_sym_AMP] = ACTIONS(7767), + [anon_sym_EQ_EQ] = ACTIONS(7769), + [anon_sym_BANG_EQ] = ACTIONS(7769), + [anon_sym_GT] = ACTIONS(7767), + [anon_sym_GT_EQ] = ACTIONS(7769), + [anon_sym_LT_EQ] = ACTIONS(7767), + [anon_sym_LT] = ACTIONS(7767), + [anon_sym_LT_LT] = ACTIONS(7767), + [anon_sym_GT_GT] = ACTIONS(7767), + [anon_sym_SEMI] = ACTIONS(7769), + [anon_sym___extension__] = ACTIONS(7767), + [anon_sym___attribute__] = ACTIONS(7767), + [anon_sym___attribute] = ACTIONS(7767), + [anon_sym_COLON] = ACTIONS(7767), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7769), + [anon_sym_LBRACE] = ACTIONS(7769), + [anon_sym_RBRACE] = ACTIONS(7769), + [anon_sym_LBRACK] = ACTIONS(7769), + [anon_sym_EQ] = ACTIONS(7767), + [anon_sym_const] = ACTIONS(7767), + [anon_sym_constexpr] = ACTIONS(7767), + [anon_sym_volatile] = ACTIONS(7767), + [anon_sym_restrict] = ACTIONS(7767), + [anon_sym___restrict__] = ACTIONS(7767), + [anon_sym__Atomic] = ACTIONS(7767), + [anon_sym__Noreturn] = ACTIONS(7767), + [anon_sym_noreturn] = ACTIONS(7767), + [anon_sym__Nonnull] = ACTIONS(7767), + [anon_sym_mutable] = ACTIONS(7767), + [anon_sym_constinit] = ACTIONS(7767), + [anon_sym_consteval] = ACTIONS(7767), + [anon_sym_alignas] = ACTIONS(7767), + [anon_sym__Alignas] = ACTIONS(7767), + [anon_sym_QMARK] = ACTIONS(7769), + [anon_sym_STAR_EQ] = ACTIONS(7769), + [anon_sym_SLASH_EQ] = ACTIONS(7769), + [anon_sym_PERCENT_EQ] = ACTIONS(7769), + [anon_sym_PLUS_EQ] = ACTIONS(7769), + [anon_sym_DASH_EQ] = ACTIONS(7769), + [anon_sym_LT_LT_EQ] = ACTIONS(7769), + [anon_sym_GT_GT_EQ] = ACTIONS(7769), + [anon_sym_AMP_EQ] = ACTIONS(7769), + [anon_sym_CARET_EQ] = ACTIONS(7769), + [anon_sym_PIPE_EQ] = ACTIONS(7769), + [anon_sym_and_eq] = ACTIONS(7767), + [anon_sym_or_eq] = ACTIONS(7767), + [anon_sym_xor_eq] = ACTIONS(7767), + [anon_sym_LT_EQ_GT] = ACTIONS(7769), + [anon_sym_or] = ACTIONS(7767), + [anon_sym_and] = ACTIONS(7767), + [anon_sym_bitor] = ACTIONS(7767), + [anon_sym_xor] = ACTIONS(7767), + [anon_sym_bitand] = ACTIONS(7767), + [anon_sym_not_eq] = ACTIONS(7767), + [anon_sym_DASH_DASH] = ACTIONS(7769), + [anon_sym_PLUS_PLUS] = ACTIONS(7769), + [anon_sym_DOT] = ACTIONS(7767), + [anon_sym_DOT_STAR] = ACTIONS(7769), + [anon_sym_DASH_GT] = ACTIONS(7769), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7767), + [anon_sym_override] = ACTIONS(7767), + [anon_sym_requires] = ACTIONS(7767), + [anon_sym_COLON_RBRACK] = ACTIONS(7769), }, - [STATE(2290)] = { - [sym__abstract_declarator] = STATE(5035), - [sym_abstract_parenthesized_declarator] = STATE(5581), - [sym_abstract_pointer_declarator] = STATE(5581), - [sym_abstract_function_declarator] = STATE(5581), - [sym_abstract_array_declarator] = STATE(5581), - [sym_type_qualifier] = STATE(2277), - [sym_alignas_qualifier] = STATE(2432), - [sym_parameter_list] = STATE(1885), - [sym_abstract_reference_declarator] = STATE(5581), - [sym__function_declarator_seq] = STATE(5582), - [aux_sym__type_definition_type_repeat1] = STATE(2277), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), - [anon_sym_COMMA] = ACTIONS(6995), - [anon_sym_RPAREN] = ACTIONS(6995), - [anon_sym_LPAREN2] = ACTIONS(6927), - [anon_sym_DASH] = ACTIONS(6997), - [anon_sym_PLUS] = ACTIONS(6997), - [anon_sym_STAR] = ACTIONS(6929), - [anon_sym_SLASH] = ACTIONS(6997), - [anon_sym_PERCENT] = ACTIONS(6997), - [anon_sym_PIPE_PIPE] = ACTIONS(6995), - [anon_sym_AMP_AMP] = ACTIONS(6931), - [anon_sym_PIPE] = ACTIONS(6997), - [anon_sym_CARET] = ACTIONS(6997), - [anon_sym_AMP] = ACTIONS(6933), - [anon_sym_EQ_EQ] = ACTIONS(6995), - [anon_sym_BANG_EQ] = ACTIONS(6995), - [anon_sym_GT] = ACTIONS(6997), - [anon_sym_GT_EQ] = ACTIONS(6995), - [anon_sym_LT_EQ] = ACTIONS(6997), - [anon_sym_LT] = ACTIONS(6997), - [anon_sym_LT_LT] = ACTIONS(6997), - [anon_sym_GT_GT] = ACTIONS(6997), - [anon_sym___extension__] = ACTIONS(6935), - [anon_sym_LBRACK] = ACTIONS(6943), - [anon_sym_EQ] = ACTIONS(6997), - [anon_sym_const] = ACTIONS(6945), - [anon_sym_constexpr] = ACTIONS(6935), - [anon_sym_volatile] = ACTIONS(6935), - [anon_sym_restrict] = ACTIONS(6935), - [anon_sym___restrict__] = ACTIONS(6935), - [anon_sym__Atomic] = ACTIONS(6935), - [anon_sym__Noreturn] = ACTIONS(6935), - [anon_sym_noreturn] = ACTIONS(6935), - [anon_sym__Nonnull] = ACTIONS(6935), - [anon_sym_mutable] = ACTIONS(6935), - [anon_sym_constinit] = ACTIONS(6935), - [anon_sym_consteval] = ACTIONS(6935), - [anon_sym_alignas] = ACTIONS(6947), - [anon_sym__Alignas] = ACTIONS(6947), - [anon_sym_QMARK] = ACTIONS(6995), - [anon_sym_STAR_EQ] = ACTIONS(6995), - [anon_sym_SLASH_EQ] = ACTIONS(6995), - [anon_sym_PERCENT_EQ] = ACTIONS(6995), - [anon_sym_PLUS_EQ] = ACTIONS(6995), - [anon_sym_DASH_EQ] = ACTIONS(6995), - [anon_sym_LT_LT_EQ] = ACTIONS(6995), - [anon_sym_GT_GT_EQ] = ACTIONS(6995), - [anon_sym_AMP_EQ] = ACTIONS(6995), - [anon_sym_CARET_EQ] = ACTIONS(6995), - [anon_sym_PIPE_EQ] = ACTIONS(6995), - [anon_sym_LT_EQ_GT] = ACTIONS(6995), - [anon_sym_or] = ACTIONS(6995), - [anon_sym_and] = ACTIONS(6995), - [anon_sym_bitor] = ACTIONS(6995), - [anon_sym_xor] = ACTIONS(6995), - [anon_sym_bitand] = ACTIONS(6995), - [anon_sym_not_eq] = ACTIONS(6995), - [anon_sym_DASH_DASH] = ACTIONS(6995), - [anon_sym_PLUS_PLUS] = ACTIONS(6995), - [anon_sym_DOT] = ACTIONS(6997), - [anon_sym_DOT_STAR] = ACTIONS(6995), - [anon_sym_DASH_GT] = ACTIONS(6997), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6995), - [anon_sym_override] = ACTIONS(6995), - [anon_sym_requires] = ACTIONS(6995), - [anon_sym_DASH_GT_STAR] = ACTIONS(6995), + [STATE(2236)] = { + [sym_identifier] = ACTIONS(7771), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7773), + [anon_sym_COMMA] = ACTIONS(7773), + [anon_sym_RPAREN] = ACTIONS(7773), + [aux_sym_preproc_if_token2] = ACTIONS(7773), + [aux_sym_preproc_else_token1] = ACTIONS(7773), + [aux_sym_preproc_elif_token1] = ACTIONS(7771), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7773), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7773), + [anon_sym_LPAREN2] = ACTIONS(7773), + [anon_sym_DASH] = ACTIONS(7771), + [anon_sym_PLUS] = ACTIONS(7771), + [anon_sym_STAR] = ACTIONS(7771), + [anon_sym_SLASH] = ACTIONS(7771), + [anon_sym_PERCENT] = ACTIONS(7771), + [anon_sym_PIPE_PIPE] = ACTIONS(7773), + [anon_sym_AMP_AMP] = ACTIONS(7773), + [anon_sym_PIPE] = ACTIONS(7771), + [anon_sym_CARET] = ACTIONS(7771), + [anon_sym_AMP] = ACTIONS(7771), + [anon_sym_EQ_EQ] = ACTIONS(7773), + [anon_sym_BANG_EQ] = ACTIONS(7773), + [anon_sym_GT] = ACTIONS(7771), + [anon_sym_GT_EQ] = ACTIONS(7773), + [anon_sym_LT_EQ] = ACTIONS(7771), + [anon_sym_LT] = ACTIONS(7771), + [anon_sym_LT_LT] = ACTIONS(7771), + [anon_sym_GT_GT] = ACTIONS(7771), + [anon_sym_SEMI] = ACTIONS(7773), + [anon_sym___extension__] = ACTIONS(7771), + [anon_sym___attribute__] = ACTIONS(7771), + [anon_sym___attribute] = ACTIONS(7771), + [anon_sym_COLON] = ACTIONS(7771), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7773), + [anon_sym_LBRACE] = ACTIONS(7773), + [anon_sym_RBRACE] = ACTIONS(7773), + [anon_sym_LBRACK] = ACTIONS(7773), + [anon_sym_EQ] = ACTIONS(7771), + [anon_sym_const] = ACTIONS(7771), + [anon_sym_constexpr] = ACTIONS(7771), + [anon_sym_volatile] = ACTIONS(7771), + [anon_sym_restrict] = ACTIONS(7771), + [anon_sym___restrict__] = ACTIONS(7771), + [anon_sym__Atomic] = ACTIONS(7771), + [anon_sym__Noreturn] = ACTIONS(7771), + [anon_sym_noreturn] = ACTIONS(7771), + [anon_sym__Nonnull] = ACTIONS(7771), + [anon_sym_mutable] = ACTIONS(7771), + [anon_sym_constinit] = ACTIONS(7771), + [anon_sym_consteval] = ACTIONS(7771), + [anon_sym_alignas] = ACTIONS(7771), + [anon_sym__Alignas] = ACTIONS(7771), + [anon_sym_QMARK] = ACTIONS(7773), + [anon_sym_STAR_EQ] = ACTIONS(7773), + [anon_sym_SLASH_EQ] = ACTIONS(7773), + [anon_sym_PERCENT_EQ] = ACTIONS(7773), + [anon_sym_PLUS_EQ] = ACTIONS(7773), + [anon_sym_DASH_EQ] = ACTIONS(7773), + [anon_sym_LT_LT_EQ] = ACTIONS(7773), + [anon_sym_GT_GT_EQ] = ACTIONS(7773), + [anon_sym_AMP_EQ] = ACTIONS(7773), + [anon_sym_CARET_EQ] = ACTIONS(7773), + [anon_sym_PIPE_EQ] = ACTIONS(7773), + [anon_sym_and_eq] = ACTIONS(7771), + [anon_sym_or_eq] = ACTIONS(7771), + [anon_sym_xor_eq] = ACTIONS(7771), + [anon_sym_LT_EQ_GT] = ACTIONS(7773), + [anon_sym_or] = ACTIONS(7771), + [anon_sym_and] = ACTIONS(7771), + [anon_sym_bitor] = ACTIONS(7771), + [anon_sym_xor] = ACTIONS(7771), + [anon_sym_bitand] = ACTIONS(7771), + [anon_sym_not_eq] = ACTIONS(7771), + [anon_sym_DASH_DASH] = ACTIONS(7773), + [anon_sym_PLUS_PLUS] = ACTIONS(7773), + [anon_sym_DOT] = ACTIONS(7771), + [anon_sym_DOT_STAR] = ACTIONS(7773), + [anon_sym_DASH_GT] = ACTIONS(7773), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7771), + [anon_sym_override] = ACTIONS(7771), + [anon_sym_requires] = ACTIONS(7771), + [anon_sym_COLON_RBRACK] = ACTIONS(7773), }, - [STATE(2291)] = { - [sym_type_qualifier] = STATE(2291), - [sym_alignas_qualifier] = STATE(2498), - [aux_sym__type_definition_type_repeat1] = STATE(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_RPAREN] = ACTIONS(6527), - [anon_sym_LPAREN2] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6525), - [anon_sym_PLUS] = ACTIONS(6525), - [anon_sym_STAR] = ACTIONS(6525), - [anon_sym_SLASH] = ACTIONS(6525), - [anon_sym_PERCENT] = ACTIONS(6525), - [anon_sym_PIPE_PIPE] = ACTIONS(6527), - [anon_sym_AMP_AMP] = ACTIONS(6527), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_CARET] = ACTIONS(6525), - [anon_sym_AMP] = ACTIONS(6525), - [anon_sym_EQ_EQ] = ACTIONS(6527), - [anon_sym_BANG_EQ] = ACTIONS(6527), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6527), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_LT_LT] = ACTIONS(6525), - [anon_sym_GT_GT] = ACTIONS(6525), - [anon_sym___extension__] = ACTIONS(7792), - [anon_sym___attribute__] = ACTIONS(6527), - [anon_sym___attribute] = ACTIONS(6525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6527), - [anon_sym_LBRACK] = ACTIONS(6525), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_const] = ACTIONS(7795), - [anon_sym_constexpr] = ACTIONS(7792), - [anon_sym_volatile] = ACTIONS(7792), - [anon_sym_restrict] = ACTIONS(7792), - [anon_sym___restrict__] = ACTIONS(7792), - [anon_sym__Atomic] = ACTIONS(7792), - [anon_sym__Noreturn] = ACTIONS(7792), - [anon_sym_noreturn] = ACTIONS(7792), - [anon_sym__Nonnull] = ACTIONS(7792), - [anon_sym_mutable] = ACTIONS(7792), - [anon_sym_constinit] = ACTIONS(7792), - [anon_sym_consteval] = ACTIONS(7792), - [anon_sym_alignas] = ACTIONS(7798), - [anon_sym__Alignas] = ACTIONS(7798), - [anon_sym_QMARK] = ACTIONS(6527), - [anon_sym_STAR_EQ] = ACTIONS(6527), - [anon_sym_SLASH_EQ] = ACTIONS(6527), - [anon_sym_PERCENT_EQ] = ACTIONS(6527), - [anon_sym_PLUS_EQ] = ACTIONS(6527), - [anon_sym_DASH_EQ] = ACTIONS(6527), - [anon_sym_LT_LT_EQ] = ACTIONS(6527), - [anon_sym_GT_GT_EQ] = ACTIONS(6527), - [anon_sym_AMP_EQ] = ACTIONS(6527), - [anon_sym_CARET_EQ] = ACTIONS(6527), - [anon_sym_PIPE_EQ] = ACTIONS(6527), - [anon_sym_LT_EQ_GT] = ACTIONS(6527), - [anon_sym_or] = ACTIONS(6527), - [anon_sym_and] = ACTIONS(6527), - [anon_sym_bitor] = ACTIONS(6527), - [anon_sym_xor] = ACTIONS(6527), - [anon_sym_bitand] = ACTIONS(6527), - [anon_sym_not_eq] = ACTIONS(6527), - [anon_sym_DASH_DASH] = ACTIONS(6527), - [anon_sym_PLUS_PLUS] = ACTIONS(6527), - [anon_sym_asm] = ACTIONS(6527), - [anon_sym___asm__] = ACTIONS(6527), - [anon_sym___asm] = ACTIONS(6525), - [anon_sym_DOT] = ACTIONS(6525), - [anon_sym_DOT_STAR] = ACTIONS(6527), - [anon_sym_DASH_GT] = ACTIONS(6525), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6527), - [anon_sym_override] = ACTIONS(6527), - [anon_sym_noexcept] = ACTIONS(6527), - [anon_sym_throw] = ACTIONS(6527), - [anon_sym_requires] = ACTIONS(6527), - [anon_sym_DASH_GT_STAR] = ACTIONS(6527), + [STATE(2237)] = { + [sym_identifier] = ACTIONS(7775), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7777), + [anon_sym_COMMA] = ACTIONS(7777), + [anon_sym_RPAREN] = ACTIONS(7777), + [aux_sym_preproc_if_token2] = ACTIONS(7777), + [aux_sym_preproc_else_token1] = ACTIONS(7777), + [aux_sym_preproc_elif_token1] = ACTIONS(7775), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7777), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7777), + [anon_sym_LPAREN2] = ACTIONS(7777), + [anon_sym_DASH] = ACTIONS(7775), + [anon_sym_PLUS] = ACTIONS(7775), + [anon_sym_STAR] = ACTIONS(7775), + [anon_sym_SLASH] = ACTIONS(7775), + [anon_sym_PERCENT] = ACTIONS(7775), + [anon_sym_PIPE_PIPE] = ACTIONS(7777), + [anon_sym_AMP_AMP] = ACTIONS(7777), + [anon_sym_PIPE] = ACTIONS(7775), + [anon_sym_CARET] = ACTIONS(7775), + [anon_sym_AMP] = ACTIONS(7775), + [anon_sym_EQ_EQ] = ACTIONS(7777), + [anon_sym_BANG_EQ] = ACTIONS(7777), + [anon_sym_GT] = ACTIONS(7775), + [anon_sym_GT_EQ] = ACTIONS(7777), + [anon_sym_LT_EQ] = ACTIONS(7775), + [anon_sym_LT] = ACTIONS(7775), + [anon_sym_LT_LT] = ACTIONS(7775), + [anon_sym_GT_GT] = ACTIONS(7775), + [anon_sym_SEMI] = ACTIONS(7777), + [anon_sym___extension__] = ACTIONS(7775), + [anon_sym___attribute__] = ACTIONS(7775), + [anon_sym___attribute] = ACTIONS(7775), + [anon_sym_COLON] = ACTIONS(7775), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7777), + [anon_sym_LBRACE] = ACTIONS(7777), + [anon_sym_RBRACE] = ACTIONS(7777), + [anon_sym_LBRACK] = ACTIONS(7777), + [anon_sym_EQ] = ACTIONS(7775), + [anon_sym_const] = ACTIONS(7775), + [anon_sym_constexpr] = ACTIONS(7775), + [anon_sym_volatile] = ACTIONS(7775), + [anon_sym_restrict] = ACTIONS(7775), + [anon_sym___restrict__] = ACTIONS(7775), + [anon_sym__Atomic] = ACTIONS(7775), + [anon_sym__Noreturn] = ACTIONS(7775), + [anon_sym_noreturn] = ACTIONS(7775), + [anon_sym__Nonnull] = ACTIONS(7775), + [anon_sym_mutable] = ACTIONS(7775), + [anon_sym_constinit] = ACTIONS(7775), + [anon_sym_consteval] = ACTIONS(7775), + [anon_sym_alignas] = ACTIONS(7775), + [anon_sym__Alignas] = ACTIONS(7775), + [anon_sym_QMARK] = ACTIONS(7777), + [anon_sym_STAR_EQ] = ACTIONS(7777), + [anon_sym_SLASH_EQ] = ACTIONS(7777), + [anon_sym_PERCENT_EQ] = ACTIONS(7777), + [anon_sym_PLUS_EQ] = ACTIONS(7777), + [anon_sym_DASH_EQ] = ACTIONS(7777), + [anon_sym_LT_LT_EQ] = ACTIONS(7777), + [anon_sym_GT_GT_EQ] = ACTIONS(7777), + [anon_sym_AMP_EQ] = ACTIONS(7777), + [anon_sym_CARET_EQ] = ACTIONS(7777), + [anon_sym_PIPE_EQ] = ACTIONS(7777), + [anon_sym_and_eq] = ACTIONS(7775), + [anon_sym_or_eq] = ACTIONS(7775), + [anon_sym_xor_eq] = ACTIONS(7775), + [anon_sym_LT_EQ_GT] = ACTIONS(7777), + [anon_sym_or] = ACTIONS(7775), + [anon_sym_and] = ACTIONS(7775), + [anon_sym_bitor] = ACTIONS(7775), + [anon_sym_xor] = ACTIONS(7775), + [anon_sym_bitand] = ACTIONS(7775), + [anon_sym_not_eq] = ACTIONS(7775), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(7775), + [anon_sym_DOT_STAR] = ACTIONS(7777), + [anon_sym_DASH_GT] = ACTIONS(7777), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7775), + [anon_sym_override] = ACTIONS(7775), + [anon_sym_requires] = ACTIONS(7775), + [anon_sym_COLON_RBRACK] = ACTIONS(7777), }, - [STATE(2292)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2286), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), - [anon_sym_COMMA] = ACTIONS(7255), - [anon_sym_RPAREN] = ACTIONS(7255), - [anon_sym_LPAREN2] = ACTIONS(7255), - [anon_sym_DASH] = ACTIONS(7253), - [anon_sym_PLUS] = ACTIONS(7253), - [anon_sym_STAR] = ACTIONS(7253), - [anon_sym_SLASH] = ACTIONS(7253), - [anon_sym_PERCENT] = ACTIONS(7253), - [anon_sym_PIPE_PIPE] = ACTIONS(7255), - [anon_sym_AMP_AMP] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7253), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_EQ_EQ] = ACTIONS(7255), - [anon_sym_BANG_EQ] = ACTIONS(7255), - [anon_sym_GT] = ACTIONS(7253), - [anon_sym_GT_EQ] = ACTIONS(7255), - [anon_sym_LT_EQ] = ACTIONS(7253), - [anon_sym_LT] = ACTIONS(7253), - [anon_sym_LT_LT] = ACTIONS(7253), - [anon_sym_GT_GT] = ACTIONS(7253), - [anon_sym___extension__] = ACTIONS(7255), - [anon_sym___attribute__] = ACTIONS(7255), - [anon_sym___attribute] = ACTIONS(7253), - [anon_sym_LBRACE] = ACTIONS(7255), - [anon_sym_signed] = ACTIONS(7801), - [anon_sym_unsigned] = ACTIONS(7801), - [anon_sym_long] = ACTIONS(7801), - [anon_sym_short] = ACTIONS(7801), - [anon_sym_LBRACK] = ACTIONS(7255), - [anon_sym_EQ] = ACTIONS(7253), - [anon_sym_const] = ACTIONS(7253), - [anon_sym_constexpr] = ACTIONS(7255), - [anon_sym_volatile] = ACTIONS(7255), - [anon_sym_restrict] = ACTIONS(7255), - [anon_sym___restrict__] = ACTIONS(7255), - [anon_sym__Atomic] = ACTIONS(7255), - [anon_sym__Noreturn] = ACTIONS(7255), - [anon_sym_noreturn] = ACTIONS(7255), - [anon_sym__Nonnull] = ACTIONS(7255), - [anon_sym_mutable] = ACTIONS(7255), - [anon_sym_constinit] = ACTIONS(7255), - [anon_sym_consteval] = ACTIONS(7255), - [anon_sym_alignas] = ACTIONS(7255), - [anon_sym__Alignas] = ACTIONS(7255), - [anon_sym_QMARK] = ACTIONS(7255), - [anon_sym_STAR_EQ] = ACTIONS(7255), - [anon_sym_SLASH_EQ] = ACTIONS(7255), - [anon_sym_PERCENT_EQ] = ACTIONS(7255), - [anon_sym_PLUS_EQ] = ACTIONS(7255), - [anon_sym_DASH_EQ] = ACTIONS(7255), - [anon_sym_LT_LT_EQ] = ACTIONS(7255), - [anon_sym_GT_GT_EQ] = ACTIONS(7255), - [anon_sym_AMP_EQ] = ACTIONS(7255), - [anon_sym_CARET_EQ] = ACTIONS(7255), - [anon_sym_PIPE_EQ] = ACTIONS(7255), - [anon_sym_and_eq] = ACTIONS(7255), - [anon_sym_or_eq] = ACTIONS(7255), - [anon_sym_xor_eq] = ACTIONS(7255), - [anon_sym_LT_EQ_GT] = ACTIONS(7255), - [anon_sym_or] = ACTIONS(7253), - [anon_sym_and] = ACTIONS(7253), - [anon_sym_bitor] = ACTIONS(7255), - [anon_sym_xor] = ACTIONS(7253), - [anon_sym_bitand] = ACTIONS(7255), - [anon_sym_not_eq] = ACTIONS(7255), - [anon_sym_DASH_DASH] = ACTIONS(7255), - [anon_sym_PLUS_PLUS] = ACTIONS(7255), - [anon_sym_DOT] = ACTIONS(7253), - [anon_sym_DOT_STAR] = ACTIONS(7255), - [anon_sym_DASH_GT] = ACTIONS(7253), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7255), - [anon_sym_override] = ACTIONS(7255), - [anon_sym_requires] = ACTIONS(7255), - [anon_sym_DASH_GT_STAR] = ACTIONS(7255), + [STATE(2238)] = { + [sym_identifier] = ACTIONS(7779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7781), + [anon_sym_COMMA] = ACTIONS(7781), + [anon_sym_RPAREN] = ACTIONS(7781), + [aux_sym_preproc_if_token2] = ACTIONS(7781), + [aux_sym_preproc_else_token1] = ACTIONS(7781), + [aux_sym_preproc_elif_token1] = ACTIONS(7779), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7781), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7781), + [anon_sym_LPAREN2] = ACTIONS(7781), + [anon_sym_DASH] = ACTIONS(7779), + [anon_sym_PLUS] = ACTIONS(7779), + [anon_sym_STAR] = ACTIONS(7779), + [anon_sym_SLASH] = ACTIONS(7779), + [anon_sym_PERCENT] = ACTIONS(7779), + [anon_sym_PIPE_PIPE] = ACTIONS(7781), + [anon_sym_AMP_AMP] = ACTIONS(7781), + [anon_sym_PIPE] = ACTIONS(7779), + [anon_sym_CARET] = ACTIONS(7779), + [anon_sym_AMP] = ACTIONS(7779), + [anon_sym_EQ_EQ] = ACTIONS(7781), + [anon_sym_BANG_EQ] = ACTIONS(7781), + [anon_sym_GT] = ACTIONS(7779), + [anon_sym_GT_EQ] = ACTIONS(7781), + [anon_sym_LT_EQ] = ACTIONS(7779), + [anon_sym_LT] = ACTIONS(7779), + [anon_sym_LT_LT] = ACTIONS(7779), + [anon_sym_GT_GT] = ACTIONS(7779), + [anon_sym_SEMI] = ACTIONS(7781), + [anon_sym___extension__] = ACTIONS(7779), + [anon_sym___attribute__] = ACTIONS(7779), + [anon_sym___attribute] = ACTIONS(7779), + [anon_sym_COLON] = ACTIONS(7779), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7781), + [anon_sym_LBRACE] = ACTIONS(7781), + [anon_sym_RBRACE] = ACTIONS(7781), + [anon_sym_LBRACK] = ACTIONS(7781), + [anon_sym_EQ] = ACTIONS(7779), + [anon_sym_const] = ACTIONS(7779), + [anon_sym_constexpr] = ACTIONS(7779), + [anon_sym_volatile] = ACTIONS(7779), + [anon_sym_restrict] = ACTIONS(7779), + [anon_sym___restrict__] = ACTIONS(7779), + [anon_sym__Atomic] = ACTIONS(7779), + [anon_sym__Noreturn] = ACTIONS(7779), + [anon_sym_noreturn] = ACTIONS(7779), + [anon_sym__Nonnull] = ACTIONS(7779), + [anon_sym_mutable] = ACTIONS(7779), + [anon_sym_constinit] = ACTIONS(7779), + [anon_sym_consteval] = ACTIONS(7779), + [anon_sym_alignas] = ACTIONS(7779), + [anon_sym__Alignas] = ACTIONS(7779), + [anon_sym_QMARK] = ACTIONS(7781), + [anon_sym_STAR_EQ] = ACTIONS(7781), + [anon_sym_SLASH_EQ] = ACTIONS(7781), + [anon_sym_PERCENT_EQ] = ACTIONS(7781), + [anon_sym_PLUS_EQ] = ACTIONS(7781), + [anon_sym_DASH_EQ] = ACTIONS(7781), + [anon_sym_LT_LT_EQ] = ACTIONS(7781), + [anon_sym_GT_GT_EQ] = ACTIONS(7781), + [anon_sym_AMP_EQ] = ACTIONS(7781), + [anon_sym_CARET_EQ] = ACTIONS(7781), + [anon_sym_PIPE_EQ] = ACTIONS(7781), + [anon_sym_and_eq] = ACTIONS(7779), + [anon_sym_or_eq] = ACTIONS(7779), + [anon_sym_xor_eq] = ACTIONS(7779), + [anon_sym_LT_EQ_GT] = ACTIONS(7781), + [anon_sym_or] = ACTIONS(7779), + [anon_sym_and] = ACTIONS(7779), + [anon_sym_bitor] = ACTIONS(7779), + [anon_sym_xor] = ACTIONS(7779), + [anon_sym_bitand] = ACTIONS(7779), + [anon_sym_not_eq] = ACTIONS(7779), + [anon_sym_DASH_DASH] = ACTIONS(7781), + [anon_sym_PLUS_PLUS] = ACTIONS(7781), + [anon_sym_DOT] = ACTIONS(7779), + [anon_sym_DOT_STAR] = ACTIONS(7781), + [anon_sym_DASH_GT] = ACTIONS(7781), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7779), + [anon_sym_override] = ACTIONS(7779), + [anon_sym_requires] = ACTIONS(7779), + [anon_sym_COLON_RBRACK] = ACTIONS(7781), }, - [STATE(2293)] = { - [sym_type_qualifier] = STATE(2293), - [sym_alignas_qualifier] = STATE(2533), - [aux_sym__type_definition_type_repeat1] = STATE(2293), - [sym_identifier] = ACTIONS(6525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [aux_sym_preproc_if_token2] = ACTIONS(6527), - [aux_sym_preproc_else_token1] = ACTIONS(6527), - [aux_sym_preproc_elif_token1] = ACTIONS(6525), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6527), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6527), - [anon_sym_LPAREN2] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6525), - [anon_sym_PLUS] = ACTIONS(6525), - [anon_sym_STAR] = ACTIONS(6525), - [anon_sym_SLASH] = ACTIONS(6525), - [anon_sym_PERCENT] = ACTIONS(6525), - [anon_sym_PIPE_PIPE] = ACTIONS(6527), - [anon_sym_AMP_AMP] = ACTIONS(6527), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_CARET] = ACTIONS(6525), - [anon_sym_AMP] = ACTIONS(6525), - [anon_sym_EQ_EQ] = ACTIONS(6527), - [anon_sym_BANG_EQ] = ACTIONS(6527), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6527), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_LT_LT] = ACTIONS(6525), - [anon_sym_GT_GT] = ACTIONS(6525), - [anon_sym___extension__] = ACTIONS(7803), - [anon_sym_LBRACK] = ACTIONS(6527), - [anon_sym_RBRACK] = ACTIONS(6527), - [anon_sym_EQ] = ACTIONS(6525), - [anon_sym_const] = ACTIONS(7803), - [anon_sym_constexpr] = ACTIONS(7803), - [anon_sym_volatile] = ACTIONS(7803), - [anon_sym_restrict] = ACTIONS(7803), - [anon_sym___restrict__] = ACTIONS(7803), - [anon_sym__Atomic] = ACTIONS(7803), - [anon_sym__Noreturn] = ACTIONS(7803), - [anon_sym_noreturn] = ACTIONS(7803), - [anon_sym__Nonnull] = ACTIONS(7803), - [anon_sym_mutable] = ACTIONS(7803), - [anon_sym_constinit] = ACTIONS(7803), - [anon_sym_consteval] = ACTIONS(7803), - [anon_sym_alignas] = ACTIONS(7806), - [anon_sym__Alignas] = ACTIONS(7806), - [anon_sym_QMARK] = ACTIONS(6527), - [anon_sym_STAR_EQ] = ACTIONS(6527), - [anon_sym_SLASH_EQ] = ACTIONS(6527), - [anon_sym_PERCENT_EQ] = ACTIONS(6527), - [anon_sym_PLUS_EQ] = ACTIONS(6527), - [anon_sym_DASH_EQ] = ACTIONS(6527), - [anon_sym_LT_LT_EQ] = ACTIONS(6527), - [anon_sym_GT_GT_EQ] = ACTIONS(6527), - [anon_sym_AMP_EQ] = ACTIONS(6527), - [anon_sym_CARET_EQ] = ACTIONS(6527), - [anon_sym_PIPE_EQ] = ACTIONS(6527), - [anon_sym_and_eq] = ACTIONS(6525), - [anon_sym_or_eq] = ACTIONS(6525), - [anon_sym_xor_eq] = ACTIONS(6525), - [anon_sym_LT_EQ_GT] = ACTIONS(6527), - [anon_sym_or] = ACTIONS(6525), - [anon_sym_and] = ACTIONS(6525), - [anon_sym_bitor] = ACTIONS(6525), - [anon_sym_xor] = ACTIONS(6525), - [anon_sym_bitand] = ACTIONS(6525), - [anon_sym_not_eq] = ACTIONS(6525), - [anon_sym_DASH_DASH] = ACTIONS(6527), - [anon_sym_PLUS_PLUS] = ACTIONS(6527), - [anon_sym_DOT] = ACTIONS(6525), - [anon_sym_DOT_STAR] = ACTIONS(6527), - [anon_sym_DASH_GT] = ACTIONS(6527), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6525), - [anon_sym_override] = ACTIONS(6525), - [anon_sym_requires] = ACTIONS(6525), + [STATE(2239)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2214), + [sym_identifier] = ACTIONS(7783), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7785), + [anon_sym_COMMA] = ACTIONS(7785), + [aux_sym_preproc_if_token2] = ACTIONS(7785), + [aux_sym_preproc_else_token1] = ACTIONS(7785), + [aux_sym_preproc_elif_token1] = ACTIONS(7783), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7785), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7785), + [anon_sym_LPAREN2] = ACTIONS(7785), + [anon_sym_DASH] = ACTIONS(7783), + [anon_sym_PLUS] = ACTIONS(7783), + [anon_sym_STAR] = ACTIONS(7783), + [anon_sym_SLASH] = ACTIONS(7783), + [anon_sym_PERCENT] = ACTIONS(7783), + [anon_sym_PIPE_PIPE] = ACTIONS(7785), + [anon_sym_AMP_AMP] = ACTIONS(7785), + [anon_sym_PIPE] = ACTIONS(7783), + [anon_sym_CARET] = ACTIONS(7783), + [anon_sym_AMP] = ACTIONS(7783), + [anon_sym_EQ_EQ] = ACTIONS(7785), + [anon_sym_BANG_EQ] = ACTIONS(7785), + [anon_sym_GT] = ACTIONS(7783), + [anon_sym_GT_EQ] = ACTIONS(7785), + [anon_sym_LT_EQ] = ACTIONS(7783), + [anon_sym_LT] = ACTIONS(7783), + [anon_sym_LT_LT] = ACTIONS(7783), + [anon_sym_GT_GT] = ACTIONS(7783), + [anon_sym___extension__] = ACTIONS(7783), + [anon_sym___attribute__] = ACTIONS(7783), + [anon_sym___attribute] = ACTIONS(7783), + [anon_sym_LBRACE] = ACTIONS(7785), + [anon_sym_signed] = ACTIONS(7787), + [anon_sym_unsigned] = ACTIONS(7787), + [anon_sym_long] = ACTIONS(7787), + [anon_sym_short] = ACTIONS(7787), + [anon_sym_LBRACK] = ACTIONS(7785), + [anon_sym_RBRACK] = ACTIONS(7785), + [anon_sym_EQ] = ACTIONS(7783), + [anon_sym_const] = ACTIONS(7783), + [anon_sym_constexpr] = ACTIONS(7783), + [anon_sym_volatile] = ACTIONS(7783), + [anon_sym_restrict] = ACTIONS(7783), + [anon_sym___restrict__] = ACTIONS(7783), + [anon_sym__Atomic] = ACTIONS(7783), + [anon_sym__Noreturn] = ACTIONS(7783), + [anon_sym_noreturn] = ACTIONS(7783), + [anon_sym__Nonnull] = ACTIONS(7783), + [anon_sym_mutable] = ACTIONS(7783), + [anon_sym_constinit] = ACTIONS(7783), + [anon_sym_consteval] = ACTIONS(7783), + [anon_sym_alignas] = ACTIONS(7783), + [anon_sym__Alignas] = ACTIONS(7783), + [anon_sym_QMARK] = ACTIONS(7785), + [anon_sym_STAR_EQ] = ACTIONS(7785), + [anon_sym_SLASH_EQ] = ACTIONS(7785), + [anon_sym_PERCENT_EQ] = ACTIONS(7785), + [anon_sym_PLUS_EQ] = ACTIONS(7785), + [anon_sym_DASH_EQ] = ACTIONS(7785), + [anon_sym_LT_LT_EQ] = ACTIONS(7785), + [anon_sym_GT_GT_EQ] = ACTIONS(7785), + [anon_sym_AMP_EQ] = ACTIONS(7785), + [anon_sym_CARET_EQ] = ACTIONS(7785), + [anon_sym_PIPE_EQ] = ACTIONS(7785), + [anon_sym_and_eq] = ACTIONS(7783), + [anon_sym_or_eq] = ACTIONS(7783), + [anon_sym_xor_eq] = ACTIONS(7783), + [anon_sym_LT_EQ_GT] = ACTIONS(7785), + [anon_sym_or] = ACTIONS(7783), + [anon_sym_and] = ACTIONS(7783), + [anon_sym_bitor] = ACTIONS(7783), + [anon_sym_xor] = ACTIONS(7783), + [anon_sym_bitand] = ACTIONS(7783), + [anon_sym_not_eq] = ACTIONS(7783), + [anon_sym_DASH_DASH] = ACTIONS(7785), + [anon_sym_PLUS_PLUS] = ACTIONS(7785), + [anon_sym_DOT] = ACTIONS(7783), + [anon_sym_DOT_STAR] = ACTIONS(7785), + [anon_sym_DASH_GT] = ACTIONS(7785), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7783), + [anon_sym_override] = ACTIONS(7783), + [anon_sym_requires] = ACTIONS(7783), }, - [STATE(2294)] = { - [sym__abstract_declarator] = STATE(5037), - [sym_abstract_parenthesized_declarator] = STATE(5581), - [sym_abstract_pointer_declarator] = STATE(5581), - [sym_abstract_function_declarator] = STATE(5581), - [sym_abstract_array_declarator] = STATE(5581), - [sym_type_qualifier] = STATE(2301), - [sym_alignas_qualifier] = STATE(2432), - [sym_parameter_list] = STATE(1885), - [sym_abstract_reference_declarator] = STATE(5581), - [sym__function_declarator_seq] = STATE(5582), - [aux_sym__type_definition_type_repeat1] = STATE(2301), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), - [anon_sym_COMMA] = ACTIONS(6999), - [anon_sym_RPAREN] = ACTIONS(6999), - [anon_sym_LPAREN2] = ACTIONS(6927), - [anon_sym_DASH] = ACTIONS(7001), - [anon_sym_PLUS] = ACTIONS(7001), - [anon_sym_STAR] = ACTIONS(6929), - [anon_sym_SLASH] = ACTIONS(7001), - [anon_sym_PERCENT] = ACTIONS(7001), - [anon_sym_PIPE_PIPE] = ACTIONS(6999), - [anon_sym_AMP_AMP] = ACTIONS(6931), - [anon_sym_PIPE] = ACTIONS(7001), - [anon_sym_CARET] = ACTIONS(7001), - [anon_sym_AMP] = ACTIONS(6933), - [anon_sym_EQ_EQ] = ACTIONS(6999), - [anon_sym_BANG_EQ] = ACTIONS(6999), - [anon_sym_GT] = ACTIONS(7001), - [anon_sym_GT_EQ] = ACTIONS(6999), - [anon_sym_LT_EQ] = ACTIONS(7001), - [anon_sym_LT] = ACTIONS(7001), - [anon_sym_LT_LT] = ACTIONS(7001), - [anon_sym_GT_GT] = ACTIONS(7001), - [anon_sym___extension__] = ACTIONS(6935), - [anon_sym_LBRACK] = ACTIONS(6943), - [anon_sym_EQ] = ACTIONS(7001), - [anon_sym_const] = ACTIONS(6945), - [anon_sym_constexpr] = ACTIONS(6935), - [anon_sym_volatile] = ACTIONS(6935), - [anon_sym_restrict] = ACTIONS(6935), - [anon_sym___restrict__] = ACTIONS(6935), - [anon_sym__Atomic] = ACTIONS(6935), - [anon_sym__Noreturn] = ACTIONS(6935), - [anon_sym_noreturn] = ACTIONS(6935), - [anon_sym__Nonnull] = ACTIONS(6935), - [anon_sym_mutable] = ACTIONS(6935), - [anon_sym_constinit] = ACTIONS(6935), - [anon_sym_consteval] = ACTIONS(6935), - [anon_sym_alignas] = ACTIONS(6947), - [anon_sym__Alignas] = ACTIONS(6947), - [anon_sym_QMARK] = ACTIONS(6999), - [anon_sym_STAR_EQ] = ACTIONS(6999), - [anon_sym_SLASH_EQ] = ACTIONS(6999), - [anon_sym_PERCENT_EQ] = ACTIONS(6999), - [anon_sym_PLUS_EQ] = ACTIONS(6999), - [anon_sym_DASH_EQ] = ACTIONS(6999), - [anon_sym_LT_LT_EQ] = ACTIONS(6999), - [anon_sym_GT_GT_EQ] = ACTIONS(6999), - [anon_sym_AMP_EQ] = ACTIONS(6999), - [anon_sym_CARET_EQ] = ACTIONS(6999), - [anon_sym_PIPE_EQ] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(6999), - [anon_sym_or] = ACTIONS(6999), - [anon_sym_and] = ACTIONS(6999), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(6999), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(6999), - [anon_sym_PLUS_PLUS] = ACTIONS(6999), - [anon_sym_DOT] = ACTIONS(7001), - [anon_sym_DOT_STAR] = ACTIONS(6999), - [anon_sym_DASH_GT] = ACTIONS(7001), + [STATE(2240)] = { + [sym__abstract_declarator] = STATE(4546), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2006), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1976), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), + [anon_sym_COMMA] = ACTIONS(7355), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7353), + [anon_sym_PLUS] = ACTIONS(7353), + [anon_sym_STAR] = ACTIONS(6923), + [anon_sym_SLASH] = ACTIONS(7353), + [anon_sym_PERCENT] = ACTIONS(7353), + [anon_sym_PIPE_PIPE] = ACTIONS(7355), + [anon_sym_AMP_AMP] = ACTIONS(6925), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_CARET] = ACTIONS(7353), + [anon_sym_AMP] = ACTIONS(6927), + [anon_sym_EQ_EQ] = ACTIONS(7355), + [anon_sym_BANG_EQ] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_EQ] = ACTIONS(7355), + [anon_sym_LT_EQ] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_LT_LT] = ACTIONS(7353), + [anon_sym_GT_GT] = ACTIONS(7353), + [anon_sym_SEMI] = ACTIONS(7355), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym___attribute__] = ACTIONS(7355), + [anon_sym___attribute] = ACTIONS(7353), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7353), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(7355), + [anon_sym_STAR_EQ] = ACTIONS(7355), + [anon_sym_SLASH_EQ] = ACTIONS(7355), + [anon_sym_PERCENT_EQ] = ACTIONS(7355), + [anon_sym_PLUS_EQ] = ACTIONS(7355), + [anon_sym_DASH_EQ] = ACTIONS(7355), + [anon_sym_LT_LT_EQ] = ACTIONS(7355), + [anon_sym_GT_GT_EQ] = ACTIONS(7355), + [anon_sym_AMP_EQ] = ACTIONS(7355), + [anon_sym_CARET_EQ] = ACTIONS(7355), + [anon_sym_PIPE_EQ] = ACTIONS(7355), + [anon_sym_and_eq] = ACTIONS(7355), + [anon_sym_or_eq] = ACTIONS(7355), + [anon_sym_xor_eq] = ACTIONS(7355), + [anon_sym_LT_EQ_GT] = ACTIONS(7355), + [anon_sym_or] = ACTIONS(7353), + [anon_sym_and] = ACTIONS(7353), + [anon_sym_bitor] = ACTIONS(7355), + [anon_sym_xor] = ACTIONS(7353), + [anon_sym_bitand] = ACTIONS(7355), + [anon_sym_not_eq] = ACTIONS(7355), + [anon_sym_DASH_DASH] = ACTIONS(7355), + [anon_sym_PLUS_PLUS] = ACTIONS(7355), + [anon_sym_DOT] = ACTIONS(7353), + [anon_sym_DOT_STAR] = ACTIONS(7355), + [anon_sym_DASH_GT] = ACTIONS(7355), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6999), - [anon_sym_override] = ACTIONS(6999), - [anon_sym_requires] = ACTIONS(6999), - [anon_sym_DASH_GT_STAR] = ACTIONS(6999), - }, - [STATE(2295)] = { - [sym_identifier] = ACTIONS(2768), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), - [anon_sym_COMMA] = ACTIONS(2758), - [anon_sym_LPAREN2] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_SLASH] = ACTIONS(2768), - [anon_sym_PERCENT] = ACTIONS(2768), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2768), - [anon_sym_GT_EQ] = ACTIONS(2768), - [anon_sym_LT_EQ] = ACTIONS(2768), - [anon_sym_LT] = ACTIONS(2768), - [anon_sym_LT_LT] = ACTIONS(2768), - [anon_sym_GT_GT] = ACTIONS(2768), - [anon_sym___extension__] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2758), - [anon_sym_EQ] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2768), - [anon_sym_QMARK] = ACTIONS(2758), - [anon_sym_STAR_EQ] = ACTIONS(2758), - [anon_sym_SLASH_EQ] = ACTIONS(2758), - [anon_sym_PERCENT_EQ] = ACTIONS(2758), - [anon_sym_PLUS_EQ] = ACTIONS(2758), - [anon_sym_DASH_EQ] = ACTIONS(2758), - [anon_sym_LT_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_GT_EQ] = ACTIONS(2768), - [anon_sym_AMP_EQ] = ACTIONS(2758), - [anon_sym_CARET_EQ] = ACTIONS(2758), - [anon_sym_PIPE_EQ] = ACTIONS(2758), - [anon_sym_and_eq] = ACTIONS(2768), - [anon_sym_or_eq] = ACTIONS(2768), - [anon_sym_xor_eq] = ACTIONS(2768), - [anon_sym_LT_EQ_GT] = ACTIONS(2758), - [anon_sym_or] = ACTIONS(2768), - [anon_sym_and] = ACTIONS(2768), - [anon_sym_bitor] = ACTIONS(2768), - [anon_sym_xor] = ACTIONS(2768), - [anon_sym_bitand] = ACTIONS(2768), - [anon_sym_not_eq] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2758), - [anon_sym_PLUS_PLUS] = ACTIONS(2758), - [anon_sym_DOT] = ACTIONS(2768), - [anon_sym_DOT_STAR] = ACTIONS(2758), - [anon_sym_DASH_GT] = ACTIONS(2758), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2768), - [anon_sym_override] = ACTIONS(2768), - [anon_sym_GT2] = ACTIONS(2758), - [anon_sym_requires] = ACTIONS(2768), - }, - [STATE(2296)] = { - [sym__abstract_declarator] = STATE(5137), - [sym_abstract_parenthesized_declarator] = STATE(4672), - [sym_abstract_pointer_declarator] = STATE(4672), - [sym_abstract_function_declarator] = STATE(4672), - [sym_abstract_array_declarator] = STATE(4672), - [sym_type_qualifier] = STATE(2285), - [sym_alignas_qualifier] = STATE(2278), - [sym_parameter_list] = STATE(1869), - [sym_abstract_reference_declarator] = STATE(4672), - [sym__function_declarator_seq] = STATE(4681), - [aux_sym__type_definition_type_repeat1] = STATE(2285), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), - [anon_sym_COMMA] = ACTIONS(6991), - [anon_sym_RPAREN] = ACTIONS(6991), - [anon_sym_LPAREN2] = ACTIONS(6648), - [anon_sym_DASH] = ACTIONS(6993), - [anon_sym_PLUS] = ACTIONS(6993), - [anon_sym_STAR] = ACTIONS(6971), - [anon_sym_SLASH] = ACTIONS(6993), - [anon_sym_PERCENT] = ACTIONS(6993), - [anon_sym_PIPE_PIPE] = ACTIONS(6991), - [anon_sym_AMP_AMP] = ACTIONS(6973), - [anon_sym_PIPE] = ACTIONS(6993), - [anon_sym_CARET] = ACTIONS(6993), - [anon_sym_AMP] = ACTIONS(6975), - [anon_sym_EQ_EQ] = ACTIONS(6991), - [anon_sym_BANG_EQ] = ACTIONS(6991), - [anon_sym_GT] = ACTIONS(6993), - [anon_sym_GT_EQ] = ACTIONS(6991), - [anon_sym_LT_EQ] = ACTIONS(6993), - [anon_sym_LT] = ACTIONS(6993), - [anon_sym_LT_LT] = ACTIONS(6993), - [anon_sym_GT_GT] = ACTIONS(6993), - [anon_sym___extension__] = ACTIONS(6656), - [anon_sym_LBRACK] = ACTIONS(6664), - [anon_sym_EQ] = ACTIONS(6993), - [anon_sym_const] = ACTIONS(6666), - [anon_sym_constexpr] = ACTIONS(6656), - [anon_sym_volatile] = ACTIONS(6656), - [anon_sym_restrict] = ACTIONS(6656), - [anon_sym___restrict__] = ACTIONS(6656), - [anon_sym__Atomic] = ACTIONS(6656), - [anon_sym__Noreturn] = ACTIONS(6656), - [anon_sym_noreturn] = ACTIONS(6656), - [anon_sym__Nonnull] = ACTIONS(6656), - [anon_sym_mutable] = ACTIONS(6656), - [anon_sym_constinit] = ACTIONS(6656), - [anon_sym_consteval] = ACTIONS(6656), - [anon_sym_alignas] = ACTIONS(6668), - [anon_sym__Alignas] = ACTIONS(6668), - [anon_sym_QMARK] = ACTIONS(6991), - [anon_sym_STAR_EQ] = ACTIONS(6991), - [anon_sym_SLASH_EQ] = ACTIONS(6991), - [anon_sym_PERCENT_EQ] = ACTIONS(6991), - [anon_sym_PLUS_EQ] = ACTIONS(6991), - [anon_sym_DASH_EQ] = ACTIONS(6991), - [anon_sym_LT_LT_EQ] = ACTIONS(6991), - [anon_sym_GT_GT_EQ] = ACTIONS(6991), - [anon_sym_AMP_EQ] = ACTIONS(6991), - [anon_sym_CARET_EQ] = ACTIONS(6991), - [anon_sym_PIPE_EQ] = ACTIONS(6991), - [anon_sym_and_eq] = ACTIONS(6991), - [anon_sym_or_eq] = ACTIONS(6991), - [anon_sym_xor_eq] = ACTIONS(6991), - [anon_sym_LT_EQ_GT] = ACTIONS(6991), - [anon_sym_or] = ACTIONS(6993), - [anon_sym_and] = ACTIONS(6993), - [anon_sym_bitor] = ACTIONS(6991), - [anon_sym_xor] = ACTIONS(6993), - [anon_sym_bitand] = ACTIONS(6991), - [anon_sym_not_eq] = ACTIONS(6991), - [anon_sym_DASH_DASH] = ACTIONS(6991), - [anon_sym_PLUS_PLUS] = ACTIONS(6991), - [anon_sym_DOT] = ACTIONS(6993), - [anon_sym_DOT_STAR] = ACTIONS(6991), - [anon_sym_DASH_GT] = ACTIONS(6993), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6991), - }, - [STATE(2297)] = { - [sym__abstract_declarator] = STATE(5051), - [sym_abstract_parenthesized_declarator] = STATE(4672), - [sym_abstract_pointer_declarator] = STATE(4672), - [sym_abstract_function_declarator] = STATE(4672), - [sym_abstract_array_declarator] = STATE(4672), - [sym_type_qualifier] = STATE(2163), - [sym_alignas_qualifier] = STATE(2278), - [sym_parameter_list] = STATE(1869), - [sym_abstract_reference_declarator] = STATE(4672), - [sym__function_declarator_seq] = STATE(4681), - [aux_sym__type_definition_type_repeat1] = STATE(2163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), - [anon_sym_COMMA] = ACTIONS(7007), - [anon_sym_RPAREN] = ACTIONS(7007), - [anon_sym_LPAREN2] = ACTIONS(6648), - [anon_sym_DASH] = ACTIONS(7009), - [anon_sym_PLUS] = ACTIONS(7009), - [anon_sym_STAR] = ACTIONS(6971), - [anon_sym_SLASH] = ACTIONS(7009), - [anon_sym_PERCENT] = ACTIONS(7009), - [anon_sym_PIPE_PIPE] = ACTIONS(7007), - [anon_sym_AMP_AMP] = ACTIONS(6973), - [anon_sym_PIPE] = ACTIONS(7009), - [anon_sym_CARET] = ACTIONS(7009), - [anon_sym_AMP] = ACTIONS(6975), - [anon_sym_EQ_EQ] = ACTIONS(7007), - [anon_sym_BANG_EQ] = ACTIONS(7007), - [anon_sym_GT] = ACTIONS(7009), - [anon_sym_GT_EQ] = ACTIONS(7007), - [anon_sym_LT_EQ] = ACTIONS(7009), - [anon_sym_LT] = ACTIONS(7009), - [anon_sym_LT_LT] = ACTIONS(7009), - [anon_sym_GT_GT] = ACTIONS(7009), - [anon_sym___extension__] = ACTIONS(6656), - [anon_sym_LBRACK] = ACTIONS(6664), - [anon_sym_EQ] = ACTIONS(7009), - [anon_sym_const] = ACTIONS(6666), - [anon_sym_constexpr] = ACTIONS(6656), - [anon_sym_volatile] = ACTIONS(6656), - [anon_sym_restrict] = ACTIONS(6656), - [anon_sym___restrict__] = ACTIONS(6656), - [anon_sym__Atomic] = ACTIONS(6656), - [anon_sym__Noreturn] = ACTIONS(6656), - [anon_sym_noreturn] = ACTIONS(6656), - [anon_sym__Nonnull] = ACTIONS(6656), - [anon_sym_mutable] = ACTIONS(6656), - [anon_sym_constinit] = ACTIONS(6656), - [anon_sym_consteval] = ACTIONS(6656), - [anon_sym_alignas] = ACTIONS(6668), - [anon_sym__Alignas] = ACTIONS(6668), - [anon_sym_QMARK] = ACTIONS(7007), - [anon_sym_STAR_EQ] = ACTIONS(7007), - [anon_sym_SLASH_EQ] = ACTIONS(7007), - [anon_sym_PERCENT_EQ] = ACTIONS(7007), - [anon_sym_PLUS_EQ] = ACTIONS(7007), - [anon_sym_DASH_EQ] = ACTIONS(7007), - [anon_sym_LT_LT_EQ] = ACTIONS(7007), - [anon_sym_GT_GT_EQ] = ACTIONS(7007), - [anon_sym_AMP_EQ] = ACTIONS(7007), - [anon_sym_CARET_EQ] = ACTIONS(7007), - [anon_sym_PIPE_EQ] = ACTIONS(7007), - [anon_sym_and_eq] = ACTIONS(7007), - [anon_sym_or_eq] = ACTIONS(7007), - [anon_sym_xor_eq] = ACTIONS(7007), - [anon_sym_LT_EQ_GT] = ACTIONS(7007), - [anon_sym_or] = ACTIONS(7009), - [anon_sym_and] = ACTIONS(7009), - [anon_sym_bitor] = ACTIONS(7007), - [anon_sym_xor] = ACTIONS(7009), - [anon_sym_bitand] = ACTIONS(7007), - [anon_sym_not_eq] = ACTIONS(7007), - [anon_sym_DASH_DASH] = ACTIONS(7007), - [anon_sym_PLUS_PLUS] = ACTIONS(7007), - [anon_sym_DOT] = ACTIONS(7009), - [anon_sym_DOT_STAR] = ACTIONS(7007), - [anon_sym_DASH_GT] = ACTIONS(7009), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7007), - }, - [STATE(2298)] = { - [sym__abstract_declarator] = STATE(5015), - [sym_abstract_parenthesized_declarator] = STATE(5581), - [sym_abstract_pointer_declarator] = STATE(5581), - [sym_abstract_function_declarator] = STATE(5581), - [sym_abstract_array_declarator] = STATE(5581), - [sym_type_qualifier] = STATE(2277), - [sym_alignas_qualifier] = STATE(2432), - [sym_parameter_list] = STATE(1885), - [sym_abstract_reference_declarator] = STATE(5581), - [sym__function_declarator_seq] = STATE(5582), - [aux_sym__type_definition_type_repeat1] = STATE(2277), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_RPAREN] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6927), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6929), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(6931), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(6933), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym___extension__] = ACTIONS(6935), - [anon_sym_LBRACK] = ACTIONS(6943), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6945), - [anon_sym_constexpr] = ACTIONS(6935), - [anon_sym_volatile] = ACTIONS(6935), - [anon_sym_restrict] = ACTIONS(6935), - [anon_sym___restrict__] = ACTIONS(6935), - [anon_sym__Atomic] = ACTIONS(6935), - [anon_sym__Noreturn] = ACTIONS(6935), - [anon_sym_noreturn] = ACTIONS(6935), - [anon_sym__Nonnull] = ACTIONS(6935), - [anon_sym_mutable] = ACTIONS(6935), - [anon_sym_constinit] = ACTIONS(6935), - [anon_sym_consteval] = ACTIONS(6935), - [anon_sym_alignas] = ACTIONS(6947), - [anon_sym__Alignas] = ACTIONS(6947), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6497), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6497), - [anon_sym_and] = ACTIONS(6497), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6497), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6495), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6497), - [anon_sym_override] = ACTIONS(6497), - [anon_sym_requires] = ACTIONS(6497), - [anon_sym_DASH_GT_STAR] = ACTIONS(6497), - }, - [STATE(2299)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6788), - [anon_sym_COMMA] = ACTIONS(6788), - [anon_sym_RPAREN] = ACTIONS(6788), - [anon_sym_LPAREN2] = ACTIONS(6788), - [anon_sym_DASH] = ACTIONS(6786), - [anon_sym_PLUS] = ACTIONS(6786), - [anon_sym_STAR] = ACTIONS(6786), - [anon_sym_SLASH] = ACTIONS(6786), - [anon_sym_PERCENT] = ACTIONS(6786), - [anon_sym_PIPE_PIPE] = ACTIONS(6788), - [anon_sym_AMP_AMP] = ACTIONS(6788), - [anon_sym_PIPE] = ACTIONS(6786), - [anon_sym_CARET] = ACTIONS(6786), - [anon_sym_AMP] = ACTIONS(6786), - [anon_sym_EQ_EQ] = ACTIONS(6788), - [anon_sym_BANG_EQ] = ACTIONS(6788), - [anon_sym_GT] = ACTIONS(6786), - [anon_sym_GT_EQ] = ACTIONS(6788), - [anon_sym_LT_EQ] = ACTIONS(6786), - [anon_sym_LT] = ACTIONS(6786), - [anon_sym_LT_LT] = ACTIONS(6786), - [anon_sym_GT_GT] = ACTIONS(6786), - [anon_sym___extension__] = ACTIONS(6788), - [anon_sym___attribute__] = ACTIONS(6788), - [anon_sym___attribute] = ACTIONS(6786), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6788), - [anon_sym_LBRACK] = ACTIONS(6786), - [anon_sym_EQ] = ACTIONS(6786), - [anon_sym_const] = ACTIONS(6786), - [anon_sym_constexpr] = ACTIONS(6788), - [anon_sym_volatile] = ACTIONS(6788), - [anon_sym_restrict] = ACTIONS(6788), - [anon_sym___restrict__] = ACTIONS(6788), - [anon_sym__Atomic] = ACTIONS(6788), - [anon_sym__Noreturn] = ACTIONS(6788), - [anon_sym_noreturn] = ACTIONS(6788), - [anon_sym__Nonnull] = ACTIONS(6788), - [anon_sym_mutable] = ACTIONS(6788), - [anon_sym_constinit] = ACTIONS(6788), - [anon_sym_consteval] = ACTIONS(6788), - [anon_sym_alignas] = ACTIONS(6788), - [anon_sym__Alignas] = ACTIONS(6788), - [anon_sym_QMARK] = ACTIONS(6788), - [anon_sym_STAR_EQ] = ACTIONS(6788), - [anon_sym_SLASH_EQ] = ACTIONS(6788), - [anon_sym_PERCENT_EQ] = ACTIONS(6788), - [anon_sym_PLUS_EQ] = ACTIONS(6788), - [anon_sym_DASH_EQ] = ACTIONS(6788), - [anon_sym_LT_LT_EQ] = ACTIONS(6788), - [anon_sym_GT_GT_EQ] = ACTIONS(6788), - [anon_sym_AMP_EQ] = ACTIONS(6788), - [anon_sym_CARET_EQ] = ACTIONS(6788), - [anon_sym_PIPE_EQ] = ACTIONS(6788), - [anon_sym_and_eq] = ACTIONS(6788), - [anon_sym_or_eq] = ACTIONS(6788), - [anon_sym_xor_eq] = ACTIONS(6788), - [anon_sym_LT_EQ_GT] = ACTIONS(6788), - [anon_sym_or] = ACTIONS(6786), - [anon_sym_and] = ACTIONS(6786), - [anon_sym_bitor] = ACTIONS(6788), - [anon_sym_xor] = ACTIONS(6786), - [anon_sym_bitand] = ACTIONS(6788), - [anon_sym_not_eq] = ACTIONS(6788), - [anon_sym_DASH_DASH] = ACTIONS(6788), - [anon_sym_PLUS_PLUS] = ACTIONS(6788), - [anon_sym_asm] = ACTIONS(6788), - [anon_sym___asm__] = ACTIONS(6788), - [anon_sym___asm] = ACTIONS(6786), - [anon_sym_DOT] = ACTIONS(6786), - [anon_sym_DOT_STAR] = ACTIONS(6788), - [anon_sym_DASH_GT] = ACTIONS(6786), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6788), - [anon_sym_override] = ACTIONS(6788), - [anon_sym_noexcept] = ACTIONS(6788), - [anon_sym_throw] = ACTIONS(6788), - [anon_sym_requires] = ACTIONS(6788), - [anon_sym_DASH_GT_STAR] = ACTIONS(6788), - }, - [STATE(2300)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), - [anon_sym_COMMA] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_LPAREN2] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_SLASH] = ACTIONS(2768), - [anon_sym_PERCENT] = ACTIONS(2768), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2768), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_LT_EQ] = ACTIONS(2768), - [anon_sym_LT] = ACTIONS(2768), - [anon_sym_LT_LT] = ACTIONS(2768), - [anon_sym_GT_GT] = ACTIONS(2768), - [anon_sym___extension__] = ACTIONS(2758), - [anon_sym___attribute__] = ACTIONS(2758), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_EQ] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2758), - [anon_sym_volatile] = ACTIONS(2758), - [anon_sym_restrict] = ACTIONS(2758), - [anon_sym___restrict__] = ACTIONS(2758), - [anon_sym__Atomic] = ACTIONS(2758), - [anon_sym__Noreturn] = ACTIONS(2758), - [anon_sym_noreturn] = ACTIONS(2758), - [anon_sym__Nonnull] = ACTIONS(2758), - [anon_sym_mutable] = ACTIONS(2758), - [anon_sym_constinit] = ACTIONS(2758), - [anon_sym_consteval] = ACTIONS(2758), - [anon_sym_alignas] = ACTIONS(2758), - [anon_sym__Alignas] = ACTIONS(2758), - [anon_sym_QMARK] = ACTIONS(2758), - [anon_sym_STAR_EQ] = ACTIONS(2758), - [anon_sym_SLASH_EQ] = ACTIONS(2758), - [anon_sym_PERCENT_EQ] = ACTIONS(2758), - [anon_sym_PLUS_EQ] = ACTIONS(2758), - [anon_sym_DASH_EQ] = ACTIONS(2758), - [anon_sym_LT_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_GT_EQ] = ACTIONS(2758), - [anon_sym_AMP_EQ] = ACTIONS(2758), - [anon_sym_CARET_EQ] = ACTIONS(2758), - [anon_sym_PIPE_EQ] = ACTIONS(2758), - [anon_sym_and_eq] = ACTIONS(2758), - [anon_sym_or_eq] = ACTIONS(2758), - [anon_sym_xor_eq] = ACTIONS(2758), - [anon_sym_LT_EQ_GT] = ACTIONS(2758), - [anon_sym_or] = ACTIONS(2768), - [anon_sym_and] = ACTIONS(2768), - [anon_sym_bitor] = ACTIONS(2758), - [anon_sym_xor] = ACTIONS(2768), - [anon_sym_bitand] = ACTIONS(2758), - [anon_sym_not_eq] = ACTIONS(2758), - [anon_sym_DASH_DASH] = ACTIONS(2758), - [anon_sym_PLUS_PLUS] = ACTIONS(2758), - [anon_sym_asm] = ACTIONS(2758), - [anon_sym___asm__] = ACTIONS(2758), - [anon_sym___asm] = ACTIONS(2768), - [anon_sym_DOT] = ACTIONS(2768), - [anon_sym_DOT_STAR] = ACTIONS(2758), - [anon_sym_DASH_GT] = ACTIONS(2768), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2758), - [anon_sym_override] = ACTIONS(2758), - [anon_sym_noexcept] = ACTIONS(2758), - [anon_sym_throw] = ACTIONS(2758), - [anon_sym_requires] = ACTIONS(2758), - [anon_sym_DASH_GT_STAR] = ACTIONS(2758), - }, - [STATE(2301)] = { - [sym__abstract_declarator] = STATE(5049), - [sym_abstract_parenthesized_declarator] = STATE(5581), - [sym_abstract_pointer_declarator] = STATE(5581), - [sym_abstract_function_declarator] = STATE(5581), - [sym_abstract_array_declarator] = STATE(5581), - [sym_type_qualifier] = STATE(2277), - [sym_alignas_qualifier] = STATE(2432), - [sym_parameter_list] = STATE(1885), - [sym_abstract_reference_declarator] = STATE(5581), - [sym__function_declarator_seq] = STATE(5582), - [aux_sym__type_definition_type_repeat1] = STATE(2277), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), - [anon_sym_COMMA] = ACTIONS(7003), - [anon_sym_RPAREN] = ACTIONS(7003), - [anon_sym_LPAREN2] = ACTIONS(6927), - [anon_sym_DASH] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(6929), - [anon_sym_SLASH] = ACTIONS(7005), - [anon_sym_PERCENT] = ACTIONS(7005), - [anon_sym_PIPE_PIPE] = ACTIONS(7003), - [anon_sym_AMP_AMP] = ACTIONS(6931), - [anon_sym_PIPE] = ACTIONS(7005), - [anon_sym_CARET] = ACTIONS(7005), - [anon_sym_AMP] = ACTIONS(6933), - [anon_sym_EQ_EQ] = ACTIONS(7003), - [anon_sym_BANG_EQ] = ACTIONS(7003), - [anon_sym_GT] = ACTIONS(7005), - [anon_sym_GT_EQ] = ACTIONS(7003), - [anon_sym_LT_EQ] = ACTIONS(7005), - [anon_sym_LT] = ACTIONS(7005), - [anon_sym_LT_LT] = ACTIONS(7005), - [anon_sym_GT_GT] = ACTIONS(7005), - [anon_sym___extension__] = ACTIONS(6935), - [anon_sym_LBRACK] = ACTIONS(6943), - [anon_sym_EQ] = ACTIONS(7005), - [anon_sym_const] = ACTIONS(6945), - [anon_sym_constexpr] = ACTIONS(6935), - [anon_sym_volatile] = ACTIONS(6935), - [anon_sym_restrict] = ACTIONS(6935), - [anon_sym___restrict__] = ACTIONS(6935), - [anon_sym__Atomic] = ACTIONS(6935), - [anon_sym__Noreturn] = ACTIONS(6935), - [anon_sym_noreturn] = ACTIONS(6935), - [anon_sym__Nonnull] = ACTIONS(6935), - [anon_sym_mutable] = ACTIONS(6935), - [anon_sym_constinit] = ACTIONS(6935), - [anon_sym_consteval] = ACTIONS(6935), - [anon_sym_alignas] = ACTIONS(6947), - [anon_sym__Alignas] = ACTIONS(6947), - [anon_sym_QMARK] = ACTIONS(7003), - [anon_sym_STAR_EQ] = ACTIONS(7003), - [anon_sym_SLASH_EQ] = ACTIONS(7003), - [anon_sym_PERCENT_EQ] = ACTIONS(7003), - [anon_sym_PLUS_EQ] = ACTIONS(7003), - [anon_sym_DASH_EQ] = ACTIONS(7003), - [anon_sym_LT_LT_EQ] = ACTIONS(7003), - [anon_sym_GT_GT_EQ] = ACTIONS(7003), - [anon_sym_AMP_EQ] = ACTIONS(7003), - [anon_sym_CARET_EQ] = ACTIONS(7003), - [anon_sym_PIPE_EQ] = ACTIONS(7003), - [anon_sym_LT_EQ_GT] = ACTIONS(7003), - [anon_sym_or] = ACTIONS(7003), - [anon_sym_and] = ACTIONS(7003), - [anon_sym_bitor] = ACTIONS(7003), - [anon_sym_xor] = ACTIONS(7003), - [anon_sym_bitand] = ACTIONS(7003), - [anon_sym_not_eq] = ACTIONS(7003), - [anon_sym_DASH_DASH] = ACTIONS(7003), - [anon_sym_PLUS_PLUS] = ACTIONS(7003), - [anon_sym_DOT] = ACTIONS(7005), - [anon_sym_DOT_STAR] = ACTIONS(7003), - [anon_sym_DASH_GT] = ACTIONS(7005), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7003), - [anon_sym_override] = ACTIONS(7003), - [anon_sym_requires] = ACTIONS(7003), - [anon_sym_DASH_GT_STAR] = ACTIONS(7003), - }, - [STATE(2302)] = { - [sym__abstract_declarator] = STATE(5029), - [sym_abstract_parenthesized_declarator] = STATE(5581), - [sym_abstract_pointer_declarator] = STATE(5581), - [sym_abstract_function_declarator] = STATE(5581), - [sym_abstract_array_declarator] = STATE(5581), - [sym_type_qualifier] = STATE(2277), - [sym_alignas_qualifier] = STATE(2432), - [sym_parameter_list] = STATE(1885), - [sym_abstract_reference_declarator] = STATE(5581), - [sym__function_declarator_seq] = STATE(5582), - [aux_sym__type_definition_type_repeat1] = STATE(2277), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), - [anon_sym_COMMA] = ACTIONS(7007), - [anon_sym_RPAREN] = ACTIONS(7007), - [anon_sym_LPAREN2] = ACTIONS(6927), - [anon_sym_DASH] = ACTIONS(7009), - [anon_sym_PLUS] = ACTIONS(7009), - [anon_sym_STAR] = ACTIONS(6929), - [anon_sym_SLASH] = ACTIONS(7009), - [anon_sym_PERCENT] = ACTIONS(7009), - [anon_sym_PIPE_PIPE] = ACTIONS(7007), - [anon_sym_AMP_AMP] = ACTIONS(6931), - [anon_sym_PIPE] = ACTIONS(7009), - [anon_sym_CARET] = ACTIONS(7009), - [anon_sym_AMP] = ACTIONS(6933), - [anon_sym_EQ_EQ] = ACTIONS(7007), - [anon_sym_BANG_EQ] = ACTIONS(7007), - [anon_sym_GT] = ACTIONS(7009), - [anon_sym_GT_EQ] = ACTIONS(7007), - [anon_sym_LT_EQ] = ACTIONS(7009), - [anon_sym_LT] = ACTIONS(7009), - [anon_sym_LT_LT] = ACTIONS(7009), - [anon_sym_GT_GT] = ACTIONS(7009), - [anon_sym___extension__] = ACTIONS(6935), - [anon_sym_LBRACK] = ACTIONS(6943), - [anon_sym_EQ] = ACTIONS(7009), - [anon_sym_const] = ACTIONS(6945), - [anon_sym_constexpr] = ACTIONS(6935), - [anon_sym_volatile] = ACTIONS(6935), - [anon_sym_restrict] = ACTIONS(6935), - [anon_sym___restrict__] = ACTIONS(6935), - [anon_sym__Atomic] = ACTIONS(6935), - [anon_sym__Noreturn] = ACTIONS(6935), - [anon_sym_noreturn] = ACTIONS(6935), - [anon_sym__Nonnull] = ACTIONS(6935), - [anon_sym_mutable] = ACTIONS(6935), - [anon_sym_constinit] = ACTIONS(6935), - [anon_sym_consteval] = ACTIONS(6935), - [anon_sym_alignas] = ACTIONS(6947), - [anon_sym__Alignas] = ACTIONS(6947), - [anon_sym_QMARK] = ACTIONS(7007), - [anon_sym_STAR_EQ] = ACTIONS(7007), - [anon_sym_SLASH_EQ] = ACTIONS(7007), - [anon_sym_PERCENT_EQ] = ACTIONS(7007), - [anon_sym_PLUS_EQ] = ACTIONS(7007), - [anon_sym_DASH_EQ] = ACTIONS(7007), - [anon_sym_LT_LT_EQ] = ACTIONS(7007), - [anon_sym_GT_GT_EQ] = ACTIONS(7007), - [anon_sym_AMP_EQ] = ACTIONS(7007), - [anon_sym_CARET_EQ] = ACTIONS(7007), - [anon_sym_PIPE_EQ] = ACTIONS(7007), - [anon_sym_LT_EQ_GT] = ACTIONS(7007), - [anon_sym_or] = ACTIONS(7007), - [anon_sym_and] = ACTIONS(7007), - [anon_sym_bitor] = ACTIONS(7007), - [anon_sym_xor] = ACTIONS(7007), - [anon_sym_bitand] = ACTIONS(7007), - [anon_sym_not_eq] = ACTIONS(7007), - [anon_sym_DASH_DASH] = ACTIONS(7007), - [anon_sym_PLUS_PLUS] = ACTIONS(7007), - [anon_sym_DOT] = ACTIONS(7009), - [anon_sym_DOT_STAR] = ACTIONS(7007), - [anon_sym_DASH_GT] = ACTIONS(7009), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7007), - [anon_sym_override] = ACTIONS(7007), - [anon_sym_requires] = ACTIONS(7007), - [anon_sym_DASH_GT_STAR] = ACTIONS(7007), - }, - [STATE(2303)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6722), - [anon_sym_COMMA] = ACTIONS(6722), - [anon_sym_RPAREN] = ACTIONS(6722), - [anon_sym_LPAREN2] = ACTIONS(6722), - [anon_sym_DASH] = ACTIONS(6720), - [anon_sym_PLUS] = ACTIONS(6720), - [anon_sym_STAR] = ACTIONS(6720), - [anon_sym_SLASH] = ACTIONS(6720), - [anon_sym_PERCENT] = ACTIONS(6720), - [anon_sym_PIPE_PIPE] = ACTIONS(6722), - [anon_sym_AMP_AMP] = ACTIONS(6722), - [anon_sym_PIPE] = ACTIONS(6720), - [anon_sym_CARET] = ACTIONS(6720), - [anon_sym_AMP] = ACTIONS(6720), - [anon_sym_EQ_EQ] = ACTIONS(6722), - [anon_sym_BANG_EQ] = ACTIONS(6722), - [anon_sym_GT] = ACTIONS(6720), - [anon_sym_GT_EQ] = ACTIONS(6722), - [anon_sym_LT_EQ] = ACTIONS(6720), - [anon_sym_LT] = ACTIONS(6720), - [anon_sym_LT_LT] = ACTIONS(6720), - [anon_sym_GT_GT] = ACTIONS(6720), - [anon_sym___extension__] = ACTIONS(6722), - [anon_sym___attribute__] = ACTIONS(6722), - [anon_sym___attribute] = ACTIONS(6720), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6722), - [anon_sym_LBRACK] = ACTIONS(6720), - [anon_sym_EQ] = ACTIONS(6720), - [anon_sym_const] = ACTIONS(6720), - [anon_sym_constexpr] = ACTIONS(6722), - [anon_sym_volatile] = ACTIONS(6722), - [anon_sym_restrict] = ACTIONS(6722), - [anon_sym___restrict__] = ACTIONS(6722), - [anon_sym__Atomic] = ACTIONS(6722), - [anon_sym__Noreturn] = ACTIONS(6722), - [anon_sym_noreturn] = ACTIONS(6722), - [anon_sym__Nonnull] = ACTIONS(6722), - [anon_sym_mutable] = ACTIONS(6722), - [anon_sym_constinit] = ACTIONS(6722), - [anon_sym_consteval] = ACTIONS(6722), - [anon_sym_alignas] = ACTIONS(6722), - [anon_sym__Alignas] = ACTIONS(6722), - [anon_sym_QMARK] = ACTIONS(6722), - [anon_sym_STAR_EQ] = ACTIONS(6722), - [anon_sym_SLASH_EQ] = ACTIONS(6722), - [anon_sym_PERCENT_EQ] = ACTIONS(6722), - [anon_sym_PLUS_EQ] = ACTIONS(6722), - [anon_sym_DASH_EQ] = ACTIONS(6722), - [anon_sym_LT_LT_EQ] = ACTIONS(6722), - [anon_sym_GT_GT_EQ] = ACTIONS(6722), - [anon_sym_AMP_EQ] = ACTIONS(6722), - [anon_sym_CARET_EQ] = ACTIONS(6722), - [anon_sym_PIPE_EQ] = ACTIONS(6722), - [anon_sym_and_eq] = ACTIONS(6722), - [anon_sym_or_eq] = ACTIONS(6722), - [anon_sym_xor_eq] = ACTIONS(6722), - [anon_sym_LT_EQ_GT] = ACTIONS(6722), - [anon_sym_or] = ACTIONS(6720), - [anon_sym_and] = ACTIONS(6720), - [anon_sym_bitor] = ACTIONS(6722), - [anon_sym_xor] = ACTIONS(6720), - [anon_sym_bitand] = ACTIONS(6722), - [anon_sym_not_eq] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_asm] = ACTIONS(6722), - [anon_sym___asm__] = ACTIONS(6722), - [anon_sym___asm] = ACTIONS(6720), - [anon_sym_DOT] = ACTIONS(6720), - [anon_sym_DOT_STAR] = ACTIONS(6722), - [anon_sym_DASH_GT] = ACTIONS(6720), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6722), - [anon_sym_override] = ACTIONS(6722), - [anon_sym_noexcept] = ACTIONS(6722), - [anon_sym_throw] = ACTIONS(6722), - [anon_sym_requires] = ACTIONS(6722), - [anon_sym_DASH_GT_STAR] = ACTIONS(6722), - }, - [STATE(2304)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), - [anon_sym_COMMA] = ACTIONS(6718), - [anon_sym_RPAREN] = ACTIONS(6718), - [anon_sym_LPAREN2] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6716), - [anon_sym_PLUS] = ACTIONS(6716), - [anon_sym_STAR] = ACTIONS(6716), - [anon_sym_SLASH] = ACTIONS(6716), - [anon_sym_PERCENT] = ACTIONS(6716), - [anon_sym_PIPE_PIPE] = ACTIONS(6718), - [anon_sym_AMP_AMP] = ACTIONS(6718), - [anon_sym_PIPE] = ACTIONS(6716), - [anon_sym_CARET] = ACTIONS(6716), - [anon_sym_AMP] = ACTIONS(6716), - [anon_sym_EQ_EQ] = ACTIONS(6718), - [anon_sym_BANG_EQ] = ACTIONS(6718), - [anon_sym_GT] = ACTIONS(6716), - [anon_sym_GT_EQ] = ACTIONS(6718), - [anon_sym_LT_EQ] = ACTIONS(6716), - [anon_sym_LT] = ACTIONS(6716), - [anon_sym_LT_LT] = ACTIONS(6716), - [anon_sym_GT_GT] = ACTIONS(6716), - [anon_sym___extension__] = ACTIONS(6718), - [anon_sym___attribute__] = ACTIONS(6718), - [anon_sym___attribute] = ACTIONS(6716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6718), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_EQ] = ACTIONS(6716), - [anon_sym_const] = ACTIONS(6716), - [anon_sym_constexpr] = ACTIONS(6718), - [anon_sym_volatile] = ACTIONS(6718), - [anon_sym_restrict] = ACTIONS(6718), - [anon_sym___restrict__] = ACTIONS(6718), - [anon_sym__Atomic] = ACTIONS(6718), - [anon_sym__Noreturn] = ACTIONS(6718), - [anon_sym_noreturn] = ACTIONS(6718), - [anon_sym__Nonnull] = ACTIONS(6718), - [anon_sym_mutable] = ACTIONS(6718), - [anon_sym_constinit] = ACTIONS(6718), - [anon_sym_consteval] = ACTIONS(6718), - [anon_sym_alignas] = ACTIONS(6718), - [anon_sym__Alignas] = ACTIONS(6718), - [anon_sym_QMARK] = ACTIONS(6718), - [anon_sym_STAR_EQ] = ACTIONS(6718), - [anon_sym_SLASH_EQ] = ACTIONS(6718), - [anon_sym_PERCENT_EQ] = ACTIONS(6718), - [anon_sym_PLUS_EQ] = ACTIONS(6718), - [anon_sym_DASH_EQ] = ACTIONS(6718), - [anon_sym_LT_LT_EQ] = ACTIONS(6718), - [anon_sym_GT_GT_EQ] = ACTIONS(6718), - [anon_sym_AMP_EQ] = ACTIONS(6718), - [anon_sym_CARET_EQ] = ACTIONS(6718), - [anon_sym_PIPE_EQ] = ACTIONS(6718), - [anon_sym_and_eq] = ACTIONS(6718), - [anon_sym_or_eq] = ACTIONS(6718), - [anon_sym_xor_eq] = ACTIONS(6718), - [anon_sym_LT_EQ_GT] = ACTIONS(6718), - [anon_sym_or] = ACTIONS(6716), - [anon_sym_and] = ACTIONS(6716), - [anon_sym_bitor] = ACTIONS(6718), - [anon_sym_xor] = ACTIONS(6716), - [anon_sym_bitand] = ACTIONS(6718), - [anon_sym_not_eq] = ACTIONS(6718), - [anon_sym_DASH_DASH] = ACTIONS(6718), - [anon_sym_PLUS_PLUS] = ACTIONS(6718), - [anon_sym_asm] = ACTIONS(6718), - [anon_sym___asm__] = ACTIONS(6718), - [anon_sym___asm] = ACTIONS(6716), - [anon_sym_DOT] = ACTIONS(6716), - [anon_sym_DOT_STAR] = ACTIONS(6718), - [anon_sym_DASH_GT] = ACTIONS(6716), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6718), - [anon_sym_override] = ACTIONS(6718), - [anon_sym_noexcept] = ACTIONS(6718), - [anon_sym_throw] = ACTIONS(6718), - [anon_sym_requires] = ACTIONS(6718), - [anon_sym_DASH_GT_STAR] = ACTIONS(6718), + [anon_sym_final] = ACTIONS(7355), + [anon_sym_override] = ACTIONS(7355), + [anon_sym_requires] = ACTIONS(7355), }, - [STATE(2305)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2222), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7393), - [anon_sym_COMMA] = ACTIONS(7393), - [anon_sym_RPAREN] = ACTIONS(7393), - [anon_sym_LPAREN2] = ACTIONS(7393), - [anon_sym_DASH] = ACTIONS(7391), - [anon_sym_PLUS] = ACTIONS(7391), - [anon_sym_STAR] = ACTIONS(7391), - [anon_sym_SLASH] = ACTIONS(7391), - [anon_sym_PERCENT] = ACTIONS(7391), - [anon_sym_PIPE_PIPE] = ACTIONS(7393), - [anon_sym_AMP_AMP] = ACTIONS(7393), - [anon_sym_PIPE] = ACTIONS(7391), - [anon_sym_CARET] = ACTIONS(7391), - [anon_sym_AMP] = ACTIONS(7391), - [anon_sym_EQ_EQ] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7393), - [anon_sym_GT] = ACTIONS(7391), - [anon_sym_GT_EQ] = ACTIONS(7393), - [anon_sym_LT_EQ] = ACTIONS(7391), - [anon_sym_LT] = ACTIONS(7391), - [anon_sym_LT_LT] = ACTIONS(7391), - [anon_sym_GT_GT] = ACTIONS(7391), - [anon_sym___extension__] = ACTIONS(7393), - [anon_sym___attribute__] = ACTIONS(7393), - [anon_sym___attribute] = ACTIONS(7391), - [anon_sym_LBRACE] = ACTIONS(7393), - [anon_sym_signed] = ACTIONS(7788), - [anon_sym_unsigned] = ACTIONS(7788), - [anon_sym_long] = ACTIONS(7788), - [anon_sym_short] = ACTIONS(7788), - [anon_sym_LBRACK] = ACTIONS(7393), - [anon_sym_EQ] = ACTIONS(7391), - [anon_sym_const] = ACTIONS(7391), - [anon_sym_constexpr] = ACTIONS(7393), - [anon_sym_volatile] = ACTIONS(7393), - [anon_sym_restrict] = ACTIONS(7393), - [anon_sym___restrict__] = ACTIONS(7393), - [anon_sym__Atomic] = ACTIONS(7393), - [anon_sym__Noreturn] = ACTIONS(7393), - [anon_sym_noreturn] = ACTIONS(7393), - [anon_sym__Nonnull] = ACTIONS(7393), - [anon_sym_mutable] = ACTIONS(7393), - [anon_sym_constinit] = ACTIONS(7393), - [anon_sym_consteval] = ACTIONS(7393), - [anon_sym_alignas] = ACTIONS(7393), - [anon_sym__Alignas] = ACTIONS(7393), - [anon_sym_QMARK] = ACTIONS(7393), - [anon_sym_STAR_EQ] = ACTIONS(7393), - [anon_sym_SLASH_EQ] = ACTIONS(7393), - [anon_sym_PERCENT_EQ] = ACTIONS(7393), - [anon_sym_PLUS_EQ] = ACTIONS(7393), - [anon_sym_DASH_EQ] = ACTIONS(7393), - [anon_sym_LT_LT_EQ] = ACTIONS(7393), - [anon_sym_GT_GT_EQ] = ACTIONS(7393), - [anon_sym_AMP_EQ] = ACTIONS(7393), - [anon_sym_CARET_EQ] = ACTIONS(7393), - [anon_sym_PIPE_EQ] = ACTIONS(7393), + [STATE(2241)] = { + [sym__abstract_declarator] = STATE(4518), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2242), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1946), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2242), + [sym_identifier] = ACTIONS(7393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), + [anon_sym_COMMA] = ACTIONS(7391), + [aux_sym_preproc_if_token2] = ACTIONS(7391), + [aux_sym_preproc_else_token1] = ACTIONS(7391), + [aux_sym_preproc_elif_token1] = ACTIONS(7393), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7391), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7391), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7393), + [anon_sym_PLUS] = ACTIONS(7393), + [anon_sym_STAR] = ACTIONS(6917), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_PERCENT] = ACTIONS(7393), + [anon_sym_PIPE_PIPE] = ACTIONS(7391), + [anon_sym_AMP_AMP] = ACTIONS(6919), + [anon_sym_PIPE] = ACTIONS(7393), + [anon_sym_CARET] = ACTIONS(7393), + [anon_sym_AMP] = ACTIONS(6921), + [anon_sym_EQ_EQ] = ACTIONS(7391), + [anon_sym_BANG_EQ] = ACTIONS(7391), + [anon_sym_GT] = ACTIONS(7393), + [anon_sym_GT_EQ] = ACTIONS(7391), + [anon_sym_LT_EQ] = ACTIONS(7393), + [anon_sym_LT] = ACTIONS(7393), + [anon_sym_LT_LT] = ACTIONS(7393), + [anon_sym_GT_GT] = ACTIONS(7393), + [anon_sym___extension__] = ACTIONS(6833), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7393), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(6833), + [anon_sym_volatile] = ACTIONS(6833), + [anon_sym_restrict] = ACTIONS(6833), + [anon_sym___restrict__] = ACTIONS(6833), + [anon_sym__Atomic] = ACTIONS(6833), + [anon_sym__Noreturn] = ACTIONS(6833), + [anon_sym_noreturn] = ACTIONS(6833), + [anon_sym__Nonnull] = ACTIONS(6833), + [anon_sym_mutable] = ACTIONS(6833), + [anon_sym_constinit] = ACTIONS(6833), + [anon_sym_consteval] = ACTIONS(6833), + [anon_sym_alignas] = ACTIONS(6841), + [anon_sym__Alignas] = ACTIONS(6841), + [anon_sym_QMARK] = ACTIONS(7391), + [anon_sym_STAR_EQ] = ACTIONS(7391), + [anon_sym_SLASH_EQ] = ACTIONS(7391), + [anon_sym_PERCENT_EQ] = ACTIONS(7391), + [anon_sym_PLUS_EQ] = ACTIONS(7391), + [anon_sym_DASH_EQ] = ACTIONS(7391), + [anon_sym_LT_LT_EQ] = ACTIONS(7391), + [anon_sym_GT_GT_EQ] = ACTIONS(7391), + [anon_sym_AMP_EQ] = ACTIONS(7391), + [anon_sym_CARET_EQ] = ACTIONS(7391), + [anon_sym_PIPE_EQ] = ACTIONS(7391), [anon_sym_and_eq] = ACTIONS(7393), [anon_sym_or_eq] = ACTIONS(7393), [anon_sym_xor_eq] = ACTIONS(7393), - [anon_sym_LT_EQ_GT] = ACTIONS(7393), - [anon_sym_or] = ACTIONS(7391), - [anon_sym_and] = ACTIONS(7391), + [anon_sym_LT_EQ_GT] = ACTIONS(7391), + [anon_sym_or] = ACTIONS(7393), + [anon_sym_and] = ACTIONS(7393), [anon_sym_bitor] = ACTIONS(7393), - [anon_sym_xor] = ACTIONS(7391), + [anon_sym_xor] = ACTIONS(7393), [anon_sym_bitand] = ACTIONS(7393), [anon_sym_not_eq] = ACTIONS(7393), - [anon_sym_DASH_DASH] = ACTIONS(7393), - [anon_sym_PLUS_PLUS] = ACTIONS(7393), - [anon_sym_DOT] = ACTIONS(7391), - [anon_sym_DOT_STAR] = ACTIONS(7393), + [anon_sym_DASH_DASH] = ACTIONS(7391), + [anon_sym_PLUS_PLUS] = ACTIONS(7391), + [anon_sym_DOT] = ACTIONS(7393), + [anon_sym_DOT_STAR] = ACTIONS(7391), [anon_sym_DASH_GT] = ACTIONS(7391), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7393), - [anon_sym_override] = ACTIONS(7393), - [anon_sym_requires] = ACTIONS(7393), - [anon_sym_DASH_GT_STAR] = ACTIONS(7393), - }, - [STATE(2306)] = { - [sym__abstract_declarator] = STATE(4958), - [sym_abstract_parenthesized_declarator] = STATE(4672), - [sym_abstract_pointer_declarator] = STATE(4672), - [sym_abstract_function_declarator] = STATE(4672), - [sym_abstract_array_declarator] = STATE(4672), - [sym_type_qualifier] = STATE(2163), - [sym_alignas_qualifier] = STATE(2278), - [sym_parameter_list] = STATE(1869), - [sym_abstract_reference_declarator] = STATE(4672), - [sym__function_declarator_seq] = STATE(4681), - [aux_sym__type_definition_type_repeat1] = STATE(2163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_RPAREN] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6648), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6971), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(6973), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(6975), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym___extension__] = ACTIONS(6656), - [anon_sym_LBRACK] = ACTIONS(6664), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6666), - [anon_sym_constexpr] = ACTIONS(6656), - [anon_sym_volatile] = ACTIONS(6656), - [anon_sym_restrict] = ACTIONS(6656), - [anon_sym___restrict__] = ACTIONS(6656), - [anon_sym__Atomic] = ACTIONS(6656), - [anon_sym__Noreturn] = ACTIONS(6656), - [anon_sym_noreturn] = ACTIONS(6656), - [anon_sym__Nonnull] = ACTIONS(6656), - [anon_sym_mutable] = ACTIONS(6656), - [anon_sym_constinit] = ACTIONS(6656), - [anon_sym_consteval] = ACTIONS(6656), - [anon_sym_alignas] = ACTIONS(6668), - [anon_sym__Alignas] = ACTIONS(6668), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6497), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_and_eq] = ACTIONS(6497), - [anon_sym_or_eq] = ACTIONS(6497), - [anon_sym_xor_eq] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6495), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6497), - }, - [STATE(2307)] = { - [sym__abstract_declarator] = STATE(5105), - [sym_abstract_parenthesized_declarator] = STATE(4672), - [sym_abstract_pointer_declarator] = STATE(4672), - [sym_abstract_function_declarator] = STATE(4672), - [sym_abstract_array_declarator] = STATE(4672), - [sym_type_qualifier] = STATE(2163), - [sym_alignas_qualifier] = STATE(2278), - [sym_parameter_list] = STATE(1869), - [sym_abstract_reference_declarator] = STATE(4672), - [sym__function_declarator_seq] = STATE(4681), - [aux_sym__type_definition_type_repeat1] = STATE(2163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), - [anon_sym_COMMA] = ACTIONS(7003), - [anon_sym_RPAREN] = ACTIONS(7003), - [anon_sym_LPAREN2] = ACTIONS(6648), - [anon_sym_DASH] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(6971), - [anon_sym_SLASH] = ACTIONS(7005), - [anon_sym_PERCENT] = ACTIONS(7005), - [anon_sym_PIPE_PIPE] = ACTIONS(7003), - [anon_sym_AMP_AMP] = ACTIONS(6973), - [anon_sym_PIPE] = ACTIONS(7005), - [anon_sym_CARET] = ACTIONS(7005), - [anon_sym_AMP] = ACTIONS(6975), - [anon_sym_EQ_EQ] = ACTIONS(7003), - [anon_sym_BANG_EQ] = ACTIONS(7003), - [anon_sym_GT] = ACTIONS(7005), - [anon_sym_GT_EQ] = ACTIONS(7003), - [anon_sym_LT_EQ] = ACTIONS(7005), - [anon_sym_LT] = ACTIONS(7005), - [anon_sym_LT_LT] = ACTIONS(7005), - [anon_sym_GT_GT] = ACTIONS(7005), - [anon_sym___extension__] = ACTIONS(6656), - [anon_sym_LBRACK] = ACTIONS(6664), - [anon_sym_EQ] = ACTIONS(7005), - [anon_sym_const] = ACTIONS(6666), - [anon_sym_constexpr] = ACTIONS(6656), - [anon_sym_volatile] = ACTIONS(6656), - [anon_sym_restrict] = ACTIONS(6656), - [anon_sym___restrict__] = ACTIONS(6656), - [anon_sym__Atomic] = ACTIONS(6656), - [anon_sym__Noreturn] = ACTIONS(6656), - [anon_sym_noreturn] = ACTIONS(6656), - [anon_sym__Nonnull] = ACTIONS(6656), - [anon_sym_mutable] = ACTIONS(6656), - [anon_sym_constinit] = ACTIONS(6656), - [anon_sym_consteval] = ACTIONS(6656), - [anon_sym_alignas] = ACTIONS(6668), - [anon_sym__Alignas] = ACTIONS(6668), - [anon_sym_QMARK] = ACTIONS(7003), - [anon_sym_STAR_EQ] = ACTIONS(7003), - [anon_sym_SLASH_EQ] = ACTIONS(7003), - [anon_sym_PERCENT_EQ] = ACTIONS(7003), - [anon_sym_PLUS_EQ] = ACTIONS(7003), - [anon_sym_DASH_EQ] = ACTIONS(7003), - [anon_sym_LT_LT_EQ] = ACTIONS(7003), - [anon_sym_GT_GT_EQ] = ACTIONS(7003), - [anon_sym_AMP_EQ] = ACTIONS(7003), - [anon_sym_CARET_EQ] = ACTIONS(7003), - [anon_sym_PIPE_EQ] = ACTIONS(7003), - [anon_sym_and_eq] = ACTIONS(7003), - [anon_sym_or_eq] = ACTIONS(7003), - [anon_sym_xor_eq] = ACTIONS(7003), - [anon_sym_LT_EQ_GT] = ACTIONS(7003), - [anon_sym_or] = ACTIONS(7005), - [anon_sym_and] = ACTIONS(7005), - [anon_sym_bitor] = ACTIONS(7003), - [anon_sym_xor] = ACTIONS(7005), - [anon_sym_bitand] = ACTIONS(7003), - [anon_sym_not_eq] = ACTIONS(7003), - [anon_sym_DASH_DASH] = ACTIONS(7003), - [anon_sym_PLUS_PLUS] = ACTIONS(7003), - [anon_sym_DOT] = ACTIONS(7005), - [anon_sym_DOT_STAR] = ACTIONS(7003), - [anon_sym_DASH_GT] = ACTIONS(7005), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7003), }, - [STATE(2308)] = { - [sym__abstract_declarator] = STATE(5052), - [sym_abstract_parenthesized_declarator] = STATE(4672), - [sym_abstract_pointer_declarator] = STATE(4672), - [sym_abstract_function_declarator] = STATE(4672), - [sym_abstract_array_declarator] = STATE(4672), - [sym_type_qualifier] = STATE(2307), - [sym_alignas_qualifier] = STATE(2278), - [sym_parameter_list] = STATE(1869), - [sym_abstract_reference_declarator] = STATE(4672), - [sym__function_declarator_seq] = STATE(4681), - [aux_sym__type_definition_type_repeat1] = STATE(2307), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), - [anon_sym_COMMA] = ACTIONS(6999), - [anon_sym_RPAREN] = ACTIONS(6999), - [anon_sym_LPAREN2] = ACTIONS(6648), - [anon_sym_DASH] = ACTIONS(7001), - [anon_sym_PLUS] = ACTIONS(7001), - [anon_sym_STAR] = ACTIONS(6971), - [anon_sym_SLASH] = ACTIONS(7001), - [anon_sym_PERCENT] = ACTIONS(7001), - [anon_sym_PIPE_PIPE] = ACTIONS(6999), - [anon_sym_AMP_AMP] = ACTIONS(6973), - [anon_sym_PIPE] = ACTIONS(7001), - [anon_sym_CARET] = ACTIONS(7001), - [anon_sym_AMP] = ACTIONS(6975), - [anon_sym_EQ_EQ] = ACTIONS(6999), - [anon_sym_BANG_EQ] = ACTIONS(6999), - [anon_sym_GT] = ACTIONS(7001), - [anon_sym_GT_EQ] = ACTIONS(6999), - [anon_sym_LT_EQ] = ACTIONS(7001), - [anon_sym_LT] = ACTIONS(7001), - [anon_sym_LT_LT] = ACTIONS(7001), - [anon_sym_GT_GT] = ACTIONS(7001), - [anon_sym___extension__] = ACTIONS(6656), - [anon_sym_LBRACK] = ACTIONS(6664), - [anon_sym_EQ] = ACTIONS(7001), - [anon_sym_const] = ACTIONS(6666), - [anon_sym_constexpr] = ACTIONS(6656), - [anon_sym_volatile] = ACTIONS(6656), - [anon_sym_restrict] = ACTIONS(6656), - [anon_sym___restrict__] = ACTIONS(6656), - [anon_sym__Atomic] = ACTIONS(6656), - [anon_sym__Noreturn] = ACTIONS(6656), - [anon_sym_noreturn] = ACTIONS(6656), - [anon_sym__Nonnull] = ACTIONS(6656), - [anon_sym_mutable] = ACTIONS(6656), - [anon_sym_constinit] = ACTIONS(6656), - [anon_sym_consteval] = ACTIONS(6656), - [anon_sym_alignas] = ACTIONS(6668), - [anon_sym__Alignas] = ACTIONS(6668), - [anon_sym_QMARK] = ACTIONS(6999), - [anon_sym_STAR_EQ] = ACTIONS(6999), - [anon_sym_SLASH_EQ] = ACTIONS(6999), - [anon_sym_PERCENT_EQ] = ACTIONS(6999), - [anon_sym_PLUS_EQ] = ACTIONS(6999), - [anon_sym_DASH_EQ] = ACTIONS(6999), - [anon_sym_LT_LT_EQ] = ACTIONS(6999), - [anon_sym_GT_GT_EQ] = ACTIONS(6999), - [anon_sym_AMP_EQ] = ACTIONS(6999), - [anon_sym_CARET_EQ] = ACTIONS(6999), - [anon_sym_PIPE_EQ] = ACTIONS(6999), - [anon_sym_and_eq] = ACTIONS(6999), - [anon_sym_or_eq] = ACTIONS(6999), - [anon_sym_xor_eq] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(6999), - [anon_sym_or] = ACTIONS(7001), - [anon_sym_and] = ACTIONS(7001), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(7001), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(6999), - [anon_sym_PLUS_PLUS] = ACTIONS(6999), - [anon_sym_DOT] = ACTIONS(7001), - [anon_sym_DOT_STAR] = ACTIONS(6999), - [anon_sym_DASH_GT] = ACTIONS(7001), + [STATE(2242)] = { + [sym__abstract_declarator] = STATE(4519), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2406), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1946), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2406), + [sym_identifier] = ACTIONS(7349), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), + [anon_sym_COMMA] = ACTIONS(7351), + [aux_sym_preproc_if_token2] = ACTIONS(7351), + [aux_sym_preproc_else_token1] = ACTIONS(7351), + [aux_sym_preproc_elif_token1] = ACTIONS(7349), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7351), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7351), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_PLUS] = ACTIONS(7349), + [anon_sym_STAR] = ACTIONS(6917), + [anon_sym_SLASH] = ACTIONS(7349), + [anon_sym_PERCENT] = ACTIONS(7349), + [anon_sym_PIPE_PIPE] = ACTIONS(7351), + [anon_sym_AMP_AMP] = ACTIONS(6919), + [anon_sym_PIPE] = ACTIONS(7349), + [anon_sym_CARET] = ACTIONS(7349), + [anon_sym_AMP] = ACTIONS(6921), + [anon_sym_EQ_EQ] = ACTIONS(7351), + [anon_sym_BANG_EQ] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7349), + [anon_sym_GT_EQ] = ACTIONS(7351), + [anon_sym_LT_EQ] = ACTIONS(7349), + [anon_sym_LT] = ACTIONS(7349), + [anon_sym_LT_LT] = ACTIONS(7349), + [anon_sym_GT_GT] = ACTIONS(7349), + [anon_sym___extension__] = ACTIONS(6833), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7349), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(6833), + [anon_sym_volatile] = ACTIONS(6833), + [anon_sym_restrict] = ACTIONS(6833), + [anon_sym___restrict__] = ACTIONS(6833), + [anon_sym__Atomic] = ACTIONS(6833), + [anon_sym__Noreturn] = ACTIONS(6833), + [anon_sym_noreturn] = ACTIONS(6833), + [anon_sym__Nonnull] = ACTIONS(6833), + [anon_sym_mutable] = ACTIONS(6833), + [anon_sym_constinit] = ACTIONS(6833), + [anon_sym_consteval] = ACTIONS(6833), + [anon_sym_alignas] = ACTIONS(6841), + [anon_sym__Alignas] = ACTIONS(6841), + [anon_sym_QMARK] = ACTIONS(7351), + [anon_sym_STAR_EQ] = ACTIONS(7351), + [anon_sym_SLASH_EQ] = ACTIONS(7351), + [anon_sym_PERCENT_EQ] = ACTIONS(7351), + [anon_sym_PLUS_EQ] = ACTIONS(7351), + [anon_sym_DASH_EQ] = ACTIONS(7351), + [anon_sym_LT_LT_EQ] = ACTIONS(7351), + [anon_sym_GT_GT_EQ] = ACTIONS(7351), + [anon_sym_AMP_EQ] = ACTIONS(7351), + [anon_sym_CARET_EQ] = ACTIONS(7351), + [anon_sym_PIPE_EQ] = ACTIONS(7351), + [anon_sym_and_eq] = ACTIONS(7349), + [anon_sym_or_eq] = ACTIONS(7349), + [anon_sym_xor_eq] = ACTIONS(7349), + [anon_sym_LT_EQ_GT] = ACTIONS(7351), + [anon_sym_or] = ACTIONS(7349), + [anon_sym_and] = ACTIONS(7349), + [anon_sym_bitor] = ACTIONS(7349), + [anon_sym_xor] = ACTIONS(7349), + [anon_sym_bitand] = ACTIONS(7349), + [anon_sym_not_eq] = ACTIONS(7349), + [anon_sym_DASH_DASH] = ACTIONS(7351), + [anon_sym_PLUS_PLUS] = ACTIONS(7351), + [anon_sym_DOT] = ACTIONS(7349), + [anon_sym_DOT_STAR] = ACTIONS(7351), + [anon_sym_DASH_GT] = ACTIONS(7351), [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6999), - }, - [STATE(2309)] = { - [sym_identifier] = ACTIONS(7809), - [anon_sym_LPAREN2] = ACTIONS(7811), - [anon_sym_BANG] = ACTIONS(7811), - [anon_sym_TILDE] = ACTIONS(7811), - [anon_sym_DASH] = ACTIONS(7809), - [anon_sym_PLUS] = ACTIONS(7809), - [anon_sym_STAR] = ACTIONS(7811), - [anon_sym_AMP] = ACTIONS(7811), - [anon_sym_SEMI] = ACTIONS(7811), - [anon_sym___extension__] = ACTIONS(7809), - [anon_sym_COLON_COLON] = ACTIONS(7811), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7811), - [anon_sym_LBRACE] = ACTIONS(7811), - [anon_sym_LBRACK] = ACTIONS(7809), - [sym_primitive_type] = ACTIONS(7809), - [anon_sym_if] = ACTIONS(7809), - [anon_sym_switch] = ACTIONS(7809), - [anon_sym_case] = ACTIONS(7809), - [anon_sym_default] = ACTIONS(7809), - [anon_sym_while] = ACTIONS(7809), - [anon_sym_do] = ACTIONS(7809), - [anon_sym_for] = ACTIONS(7809), - [anon_sym_return] = ACTIONS(7809), - [anon_sym_break] = ACTIONS(7809), - [anon_sym_continue] = ACTIONS(7809), - [anon_sym_goto] = ACTIONS(7809), - [anon_sym___try] = ACTIONS(7809), - [anon_sym___leave] = ACTIONS(7809), - [anon_sym_not] = ACTIONS(7809), - [anon_sym_compl] = ACTIONS(7809), - [anon_sym_DASH_DASH] = ACTIONS(7811), - [anon_sym_PLUS_PLUS] = ACTIONS(7811), - [anon_sym_sizeof] = ACTIONS(7809), - [anon_sym___alignof__] = ACTIONS(7809), - [anon_sym___alignof] = ACTIONS(7809), - [anon_sym__alignof] = ACTIONS(7809), - [anon_sym_alignof] = ACTIONS(7809), - [anon_sym__Alignof] = ACTIONS(7809), - [anon_sym_offsetof] = ACTIONS(7809), - [anon_sym__Generic] = ACTIONS(7809), - [anon_sym_typename] = ACTIONS(7809), - [anon_sym_asm] = ACTIONS(7809), - [anon_sym___asm__] = ACTIONS(7809), - [anon_sym___asm] = ACTIONS(7809), - [sym_number_literal] = ACTIONS(7811), - [anon_sym_L_SQUOTE] = ACTIONS(7811), - [anon_sym_u_SQUOTE] = ACTIONS(7811), - [anon_sym_U_SQUOTE] = ACTIONS(7811), - [anon_sym_u8_SQUOTE] = ACTIONS(7811), - [anon_sym_SQUOTE] = ACTIONS(7811), - [anon_sym_L_DQUOTE] = ACTIONS(7811), - [anon_sym_u_DQUOTE] = ACTIONS(7811), - [anon_sym_U_DQUOTE] = ACTIONS(7811), - [anon_sym_u8_DQUOTE] = ACTIONS(7811), - [anon_sym_DQUOTE] = ACTIONS(7811), - [sym_true] = ACTIONS(7809), - [sym_false] = ACTIONS(7809), - [anon_sym_NULL] = ACTIONS(7809), - [anon_sym_nullptr] = ACTIONS(7809), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(7809), - [anon_sym_template] = ACTIONS(7809), - [anon_sym_try] = ACTIONS(7809), - [anon_sym_delete] = ACTIONS(7809), - [anon_sym_throw] = ACTIONS(7809), - [anon_sym_co_return] = ACTIONS(7809), - [anon_sym_co_yield] = ACTIONS(7809), - [anon_sym_R_DQUOTE] = ACTIONS(7811), - [anon_sym_LR_DQUOTE] = ACTIONS(7811), - [anon_sym_uR_DQUOTE] = ACTIONS(7811), - [anon_sym_UR_DQUOTE] = ACTIONS(7811), - [anon_sym_u8R_DQUOTE] = ACTIONS(7811), - [anon_sym_co_await] = ACTIONS(7809), - [anon_sym_new] = ACTIONS(7809), - [anon_sym_requires] = ACTIONS(7809), - [anon_sym_CARET_CARET] = ACTIONS(7811), - [anon_sym_LBRACK_COLON] = ACTIONS(7811), - [sym_this] = ACTIONS(7809), - }, - [STATE(2310)] = { - [sym_attribute_specifier] = STATE(2862), - [sym_field_declaration_list] = STATE(2602), - [sym_virtual_specifier] = STATE(9399), - [sym_base_class_clause] = STATE(10246), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(6828), - [anon_sym_LPAREN2] = ACTIONS(6828), - [anon_sym_DASH] = ACTIONS(6826), - [anon_sym_PLUS] = ACTIONS(6826), - [anon_sym_STAR] = ACTIONS(6826), - [anon_sym_SLASH] = ACTIONS(6826), - [anon_sym_PERCENT] = ACTIONS(6826), - [anon_sym_PIPE_PIPE] = ACTIONS(6828), - [anon_sym_AMP_AMP] = ACTIONS(6828), - [anon_sym_PIPE] = ACTIONS(6826), - [anon_sym_CARET] = ACTIONS(6826), - [anon_sym_AMP] = ACTIONS(6826), - [anon_sym_EQ_EQ] = ACTIONS(6828), - [anon_sym_BANG_EQ] = ACTIONS(6828), - [anon_sym_GT] = ACTIONS(6826), - [anon_sym_GT_EQ] = ACTIONS(6828), - [anon_sym_LT_EQ] = ACTIONS(6826), - [anon_sym_LT] = ACTIONS(6826), - [anon_sym_LT_LT] = ACTIONS(6826), - [anon_sym_GT_GT] = ACTIONS(6826), - [anon_sym___extension__] = ACTIONS(6828), - [anon_sym___attribute__] = ACTIONS(7813), - [anon_sym___attribute] = ACTIONS(7815), - [anon_sym_COLON] = ACTIONS(7817), - [anon_sym_LBRACE] = ACTIONS(7819), - [anon_sym_LBRACK] = ACTIONS(6828), - [anon_sym_EQ] = ACTIONS(6826), - [anon_sym_const] = ACTIONS(6826), - [anon_sym_constexpr] = ACTIONS(6828), - [anon_sym_volatile] = ACTIONS(6828), - [anon_sym_restrict] = ACTIONS(6828), - [anon_sym___restrict__] = ACTIONS(6828), - [anon_sym__Atomic] = ACTIONS(6828), - [anon_sym__Noreturn] = ACTIONS(6828), - [anon_sym_noreturn] = ACTIONS(6828), - [anon_sym__Nonnull] = ACTIONS(6828), - [anon_sym_mutable] = ACTIONS(6828), - [anon_sym_constinit] = ACTIONS(6828), - [anon_sym_consteval] = ACTIONS(6828), - [anon_sym_alignas] = ACTIONS(6828), - [anon_sym__Alignas] = ACTIONS(6828), - [anon_sym_QMARK] = ACTIONS(6828), - [anon_sym_STAR_EQ] = ACTIONS(6828), - [anon_sym_SLASH_EQ] = ACTIONS(6828), - [anon_sym_PERCENT_EQ] = ACTIONS(6828), - [anon_sym_PLUS_EQ] = ACTIONS(6828), - [anon_sym_DASH_EQ] = ACTIONS(6828), - [anon_sym_LT_LT_EQ] = ACTIONS(6828), - [anon_sym_GT_GT_EQ] = ACTIONS(6828), - [anon_sym_AMP_EQ] = ACTIONS(6828), - [anon_sym_CARET_EQ] = ACTIONS(6828), - [anon_sym_PIPE_EQ] = ACTIONS(6828), - [anon_sym_and_eq] = ACTIONS(6828), - [anon_sym_or_eq] = ACTIONS(6828), - [anon_sym_xor_eq] = ACTIONS(6828), - [anon_sym_LT_EQ_GT] = ACTIONS(6828), - [anon_sym_or] = ACTIONS(6826), - [anon_sym_and] = ACTIONS(6826), - [anon_sym_bitor] = ACTIONS(6828), - [anon_sym_xor] = ACTIONS(6826), - [anon_sym_bitand] = ACTIONS(6828), - [anon_sym_not_eq] = ACTIONS(6828), - [anon_sym_DASH_DASH] = ACTIONS(6828), - [anon_sym_PLUS_PLUS] = ACTIONS(6828), - [anon_sym_DOT] = ACTIONS(6826), - [anon_sym_DOT_STAR] = ACTIONS(6828), - [anon_sym_DASH_GT] = ACTIONS(6826), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7821), - [anon_sym_override] = ACTIONS(7821), - [anon_sym_requires] = ACTIONS(6828), - [anon_sym_DASH_GT_STAR] = ACTIONS(6828), - }, - [STATE(2311)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2222), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7416), - [anon_sym_COMMA] = ACTIONS(7416), - [anon_sym_RPAREN] = ACTIONS(7416), - [anon_sym_LPAREN2] = ACTIONS(7416), - [anon_sym_DASH] = ACTIONS(7414), - [anon_sym_PLUS] = ACTIONS(7414), - [anon_sym_STAR] = ACTIONS(7414), - [anon_sym_SLASH] = ACTIONS(7414), - [anon_sym_PERCENT] = ACTIONS(7414), - [anon_sym_PIPE_PIPE] = ACTIONS(7416), - [anon_sym_AMP_AMP] = ACTIONS(7416), - [anon_sym_PIPE] = ACTIONS(7414), - [anon_sym_CARET] = ACTIONS(7414), - [anon_sym_AMP] = ACTIONS(7414), - [anon_sym_EQ_EQ] = ACTIONS(7416), - [anon_sym_BANG_EQ] = ACTIONS(7416), - [anon_sym_GT] = ACTIONS(7414), - [anon_sym_GT_EQ] = ACTIONS(7416), - [anon_sym_LT_EQ] = ACTIONS(7414), - [anon_sym_LT] = ACTIONS(7414), - [anon_sym_LT_LT] = ACTIONS(7414), - [anon_sym_GT_GT] = ACTIONS(7414), - [anon_sym___extension__] = ACTIONS(7416), - [anon_sym___attribute__] = ACTIONS(7416), - [anon_sym___attribute] = ACTIONS(7414), - [anon_sym_LBRACE] = ACTIONS(7416), - [anon_sym_signed] = ACTIONS(7788), - [anon_sym_unsigned] = ACTIONS(7788), - [anon_sym_long] = ACTIONS(7788), - [anon_sym_short] = ACTIONS(7788), - [anon_sym_LBRACK] = ACTIONS(7416), - [anon_sym_EQ] = ACTIONS(7414), - [anon_sym_const] = ACTIONS(7414), - [anon_sym_constexpr] = ACTIONS(7416), - [anon_sym_volatile] = ACTIONS(7416), - [anon_sym_restrict] = ACTIONS(7416), - [anon_sym___restrict__] = ACTIONS(7416), - [anon_sym__Atomic] = ACTIONS(7416), - [anon_sym__Noreturn] = ACTIONS(7416), - [anon_sym_noreturn] = ACTIONS(7416), - [anon_sym__Nonnull] = ACTIONS(7416), - [anon_sym_mutable] = ACTIONS(7416), - [anon_sym_constinit] = ACTIONS(7416), - [anon_sym_consteval] = ACTIONS(7416), - [anon_sym_alignas] = ACTIONS(7416), - [anon_sym__Alignas] = ACTIONS(7416), - [anon_sym_QMARK] = ACTIONS(7416), - [anon_sym_STAR_EQ] = ACTIONS(7416), - [anon_sym_SLASH_EQ] = ACTIONS(7416), - [anon_sym_PERCENT_EQ] = ACTIONS(7416), - [anon_sym_PLUS_EQ] = ACTIONS(7416), - [anon_sym_DASH_EQ] = ACTIONS(7416), - [anon_sym_LT_LT_EQ] = ACTIONS(7416), - [anon_sym_GT_GT_EQ] = ACTIONS(7416), - [anon_sym_AMP_EQ] = ACTIONS(7416), - [anon_sym_CARET_EQ] = ACTIONS(7416), - [anon_sym_PIPE_EQ] = ACTIONS(7416), - [anon_sym_and_eq] = ACTIONS(7416), - [anon_sym_or_eq] = ACTIONS(7416), - [anon_sym_xor_eq] = ACTIONS(7416), - [anon_sym_LT_EQ_GT] = ACTIONS(7416), - [anon_sym_or] = ACTIONS(7414), - [anon_sym_and] = ACTIONS(7414), - [anon_sym_bitor] = ACTIONS(7416), - [anon_sym_xor] = ACTIONS(7414), - [anon_sym_bitand] = ACTIONS(7416), - [anon_sym_not_eq] = ACTIONS(7416), - [anon_sym_DASH_DASH] = ACTIONS(7416), - [anon_sym_PLUS_PLUS] = ACTIONS(7416), - [anon_sym_DOT] = ACTIONS(7414), - [anon_sym_DOT_STAR] = ACTIONS(7416), - [anon_sym_DASH_GT] = ACTIONS(7414), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7416), - [anon_sym_override] = ACTIONS(7416), - [anon_sym_requires] = ACTIONS(7416), - [anon_sym_DASH_GT_STAR] = ACTIONS(7416), }, - [STATE(2312)] = { - [sym_identifier] = ACTIONS(2768), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), - [anon_sym_COMMA] = ACTIONS(2758), - [anon_sym_LPAREN2] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_SLASH] = ACTIONS(2768), - [anon_sym_PERCENT] = ACTIONS(2768), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2768), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_LT_EQ] = ACTIONS(2768), - [anon_sym_LT] = ACTIONS(2768), - [anon_sym_LT_LT] = ACTIONS(2768), - [anon_sym_GT_GT] = ACTIONS(2768), - [anon_sym___extension__] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2758), - [anon_sym_RBRACK] = ACTIONS(2758), - [anon_sym_EQ] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2768), - [anon_sym_QMARK] = ACTIONS(2758), - [anon_sym_STAR_EQ] = ACTIONS(2758), - [anon_sym_SLASH_EQ] = ACTIONS(2758), - [anon_sym_PERCENT_EQ] = ACTIONS(2758), - [anon_sym_PLUS_EQ] = ACTIONS(2758), - [anon_sym_DASH_EQ] = ACTIONS(2758), - [anon_sym_LT_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_GT_EQ] = ACTIONS(2758), - [anon_sym_AMP_EQ] = ACTIONS(2758), - [anon_sym_CARET_EQ] = ACTIONS(2758), - [anon_sym_PIPE_EQ] = ACTIONS(2758), - [anon_sym_and_eq] = ACTIONS(2768), - [anon_sym_or_eq] = ACTIONS(2768), - [anon_sym_xor_eq] = ACTIONS(2768), - [anon_sym_LT_EQ_GT] = ACTIONS(2758), - [anon_sym_or] = ACTIONS(2768), - [anon_sym_and] = ACTIONS(2768), - [anon_sym_bitor] = ACTIONS(2768), - [anon_sym_xor] = ACTIONS(2768), - [anon_sym_bitand] = ACTIONS(2768), - [anon_sym_not_eq] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2758), - [anon_sym_PLUS_PLUS] = ACTIONS(2758), - [anon_sym_DOT] = ACTIONS(2768), - [anon_sym_DOT_STAR] = ACTIONS(2758), - [anon_sym_DASH_GT] = ACTIONS(2758), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2768), - [anon_sym_override] = ACTIONS(2768), - [anon_sym_requires] = ACTIONS(2768), - }, - [STATE(2313)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2222), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), - [anon_sym_COMMA] = ACTIONS(7201), - [anon_sym_RPAREN] = ACTIONS(7201), - [anon_sym_LPAREN2] = ACTIONS(7201), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_STAR] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7199), - [anon_sym_PERCENT] = ACTIONS(7199), - [anon_sym_PIPE_PIPE] = ACTIONS(7201), - [anon_sym_AMP_AMP] = ACTIONS(7201), - [anon_sym_PIPE] = ACTIONS(7199), - [anon_sym_CARET] = ACTIONS(7199), - [anon_sym_AMP] = ACTIONS(7199), - [anon_sym_EQ_EQ] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7201), - [anon_sym_GT] = ACTIONS(7199), - [anon_sym_GT_EQ] = ACTIONS(7201), - [anon_sym_LT_EQ] = ACTIONS(7199), - [anon_sym_LT] = ACTIONS(7199), - [anon_sym_LT_LT] = ACTIONS(7199), - [anon_sym_GT_GT] = ACTIONS(7199), - [anon_sym___extension__] = ACTIONS(7201), - [anon_sym___attribute__] = ACTIONS(7201), - [anon_sym___attribute] = ACTIONS(7199), - [anon_sym_LBRACE] = ACTIONS(7201), - [anon_sym_signed] = ACTIONS(7788), - [anon_sym_unsigned] = ACTIONS(7788), - [anon_sym_long] = ACTIONS(7788), - [anon_sym_short] = ACTIONS(7788), - [anon_sym_LBRACK] = ACTIONS(7201), - [anon_sym_EQ] = ACTIONS(7199), - [anon_sym_const] = ACTIONS(7199), - [anon_sym_constexpr] = ACTIONS(7201), - [anon_sym_volatile] = ACTIONS(7201), - [anon_sym_restrict] = ACTIONS(7201), - [anon_sym___restrict__] = ACTIONS(7201), - [anon_sym__Atomic] = ACTIONS(7201), - [anon_sym__Noreturn] = ACTIONS(7201), - [anon_sym_noreturn] = ACTIONS(7201), - [anon_sym__Nonnull] = ACTIONS(7201), - [anon_sym_mutable] = ACTIONS(7201), - [anon_sym_constinit] = ACTIONS(7201), - [anon_sym_consteval] = ACTIONS(7201), - [anon_sym_alignas] = ACTIONS(7201), - [anon_sym__Alignas] = ACTIONS(7201), - [anon_sym_QMARK] = ACTIONS(7201), - [anon_sym_STAR_EQ] = ACTIONS(7201), - [anon_sym_SLASH_EQ] = ACTIONS(7201), - [anon_sym_PERCENT_EQ] = ACTIONS(7201), - [anon_sym_PLUS_EQ] = ACTIONS(7201), - [anon_sym_DASH_EQ] = ACTIONS(7201), - [anon_sym_LT_LT_EQ] = ACTIONS(7201), - [anon_sym_GT_GT_EQ] = ACTIONS(7201), - [anon_sym_AMP_EQ] = ACTIONS(7201), - [anon_sym_CARET_EQ] = ACTIONS(7201), - [anon_sym_PIPE_EQ] = ACTIONS(7201), - [anon_sym_and_eq] = ACTIONS(7201), - [anon_sym_or_eq] = ACTIONS(7201), - [anon_sym_xor_eq] = ACTIONS(7201), - [anon_sym_LT_EQ_GT] = ACTIONS(7201), - [anon_sym_or] = ACTIONS(7199), - [anon_sym_and] = ACTIONS(7199), - [anon_sym_bitor] = ACTIONS(7201), - [anon_sym_xor] = ACTIONS(7199), - [anon_sym_bitand] = ACTIONS(7201), - [anon_sym_not_eq] = ACTIONS(7201), - [anon_sym_DASH_DASH] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7201), - [anon_sym_DOT] = ACTIONS(7199), - [anon_sym_DOT_STAR] = ACTIONS(7201), - [anon_sym_DASH_GT] = ACTIONS(7199), + [STATE(2243)] = { + [sym__abstract_declarator] = STATE(4520), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2246), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1946), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2246), + [sym_identifier] = ACTIONS(7341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [aux_sym_preproc_if_token2] = ACTIONS(7343), + [aux_sym_preproc_else_token1] = ACTIONS(7343), + [aux_sym_preproc_elif_token1] = ACTIONS(7341), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7343), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(6917), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(6919), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(6921), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(6833), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7341), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(6833), + [anon_sym_volatile] = ACTIONS(6833), + [anon_sym_restrict] = ACTIONS(6833), + [anon_sym___restrict__] = ACTIONS(6833), + [anon_sym__Atomic] = ACTIONS(6833), + [anon_sym__Noreturn] = ACTIONS(6833), + [anon_sym_noreturn] = ACTIONS(6833), + [anon_sym__Nonnull] = ACTIONS(6833), + [anon_sym_mutable] = ACTIONS(6833), + [anon_sym_constinit] = ACTIONS(6833), + [anon_sym_consteval] = ACTIONS(6833), + [anon_sym_alignas] = ACTIONS(6841), + [anon_sym__Alignas] = ACTIONS(6841), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_STAR_EQ] = ACTIONS(7343), + [anon_sym_SLASH_EQ] = ACTIONS(7343), + [anon_sym_PERCENT_EQ] = ACTIONS(7343), + [anon_sym_PLUS_EQ] = ACTIONS(7343), + [anon_sym_DASH_EQ] = ACTIONS(7343), + [anon_sym_LT_LT_EQ] = ACTIONS(7343), + [anon_sym_GT_GT_EQ] = ACTIONS(7343), + [anon_sym_AMP_EQ] = ACTIONS(7343), + [anon_sym_CARET_EQ] = ACTIONS(7343), + [anon_sym_PIPE_EQ] = ACTIONS(7343), + [anon_sym_and_eq] = ACTIONS(7341), + [anon_sym_or_eq] = ACTIONS(7341), + [anon_sym_xor_eq] = ACTIONS(7341), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7341), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7341), + [anon_sym_not_eq] = ACTIONS(7341), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7343), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7201), - [anon_sym_override] = ACTIONS(7201), - [anon_sym_requires] = ACTIONS(7201), - [anon_sym_DASH_GT_STAR] = ACTIONS(7201), }, - [STATE(2314)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2222), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7385), - [anon_sym_COMMA] = ACTIONS(7385), - [anon_sym_RPAREN] = ACTIONS(7385), - [anon_sym_LPAREN2] = ACTIONS(7385), - [anon_sym_DASH] = ACTIONS(7383), - [anon_sym_PLUS] = ACTIONS(7383), - [anon_sym_STAR] = ACTIONS(7383), - [anon_sym_SLASH] = ACTIONS(7383), - [anon_sym_PERCENT] = ACTIONS(7383), - [anon_sym_PIPE_PIPE] = ACTIONS(7385), - [anon_sym_AMP_AMP] = ACTIONS(7385), - [anon_sym_PIPE] = ACTIONS(7383), - [anon_sym_CARET] = ACTIONS(7383), - [anon_sym_AMP] = ACTIONS(7383), - [anon_sym_EQ_EQ] = ACTIONS(7385), - [anon_sym_BANG_EQ] = ACTIONS(7385), - [anon_sym_GT] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7385), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_LT] = ACTIONS(7383), - [anon_sym_LT_LT] = ACTIONS(7383), - [anon_sym_GT_GT] = ACTIONS(7383), - [anon_sym___extension__] = ACTIONS(7385), - [anon_sym___attribute__] = ACTIONS(7385), - [anon_sym___attribute] = ACTIONS(7383), - [anon_sym_LBRACE] = ACTIONS(7385), - [anon_sym_signed] = ACTIONS(7788), - [anon_sym_unsigned] = ACTIONS(7788), - [anon_sym_long] = ACTIONS(7788), - [anon_sym_short] = ACTIONS(7788), - [anon_sym_LBRACK] = ACTIONS(7385), - [anon_sym_EQ] = ACTIONS(7383), - [anon_sym_const] = ACTIONS(7383), - [anon_sym_constexpr] = ACTIONS(7385), - [anon_sym_volatile] = ACTIONS(7385), - [anon_sym_restrict] = ACTIONS(7385), - [anon_sym___restrict__] = ACTIONS(7385), - [anon_sym__Atomic] = ACTIONS(7385), - [anon_sym__Noreturn] = ACTIONS(7385), - [anon_sym_noreturn] = ACTIONS(7385), - [anon_sym__Nonnull] = ACTIONS(7385), - [anon_sym_mutable] = ACTIONS(7385), - [anon_sym_constinit] = ACTIONS(7385), - [anon_sym_consteval] = ACTIONS(7385), - [anon_sym_alignas] = ACTIONS(7385), - [anon_sym__Alignas] = ACTIONS(7385), - [anon_sym_QMARK] = ACTIONS(7385), - [anon_sym_STAR_EQ] = ACTIONS(7385), - [anon_sym_SLASH_EQ] = ACTIONS(7385), - [anon_sym_PERCENT_EQ] = ACTIONS(7385), - [anon_sym_PLUS_EQ] = ACTIONS(7385), - [anon_sym_DASH_EQ] = ACTIONS(7385), - [anon_sym_LT_LT_EQ] = ACTIONS(7385), - [anon_sym_GT_GT_EQ] = ACTIONS(7385), - [anon_sym_AMP_EQ] = ACTIONS(7385), - [anon_sym_CARET_EQ] = ACTIONS(7385), - [anon_sym_PIPE_EQ] = ACTIONS(7385), - [anon_sym_and_eq] = ACTIONS(7385), - [anon_sym_or_eq] = ACTIONS(7385), - [anon_sym_xor_eq] = ACTIONS(7385), - [anon_sym_LT_EQ_GT] = ACTIONS(7385), - [anon_sym_or] = ACTIONS(7383), - [anon_sym_and] = ACTIONS(7383), - [anon_sym_bitor] = ACTIONS(7385), - [anon_sym_xor] = ACTIONS(7383), - [anon_sym_bitand] = ACTIONS(7385), - [anon_sym_not_eq] = ACTIONS(7385), - [anon_sym_DASH_DASH] = ACTIONS(7385), - [anon_sym_PLUS_PLUS] = ACTIONS(7385), - [anon_sym_DOT] = ACTIONS(7383), - [anon_sym_DOT_STAR] = ACTIONS(7385), - [anon_sym_DASH_GT] = ACTIONS(7383), + [STATE(2244)] = { + [sym__abstract_declarator] = STATE(4524), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2406), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1946), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2406), + [sym_identifier] = ACTIONS(6821), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [aux_sym_preproc_if_token2] = ACTIONS(6823), + [aux_sym_preproc_else_token1] = ACTIONS(6823), + [aux_sym_preproc_elif_token1] = ACTIONS(6821), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6823), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(6917), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(6919), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(6921), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(6833), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(6833), + [anon_sym_volatile] = ACTIONS(6833), + [anon_sym_restrict] = ACTIONS(6833), + [anon_sym___restrict__] = ACTIONS(6833), + [anon_sym__Atomic] = ACTIONS(6833), + [anon_sym__Noreturn] = ACTIONS(6833), + [anon_sym_noreturn] = ACTIONS(6833), + [anon_sym__Nonnull] = ACTIONS(6833), + [anon_sym_mutable] = ACTIONS(6833), + [anon_sym_constinit] = ACTIONS(6833), + [anon_sym_consteval] = ACTIONS(6833), + [anon_sym_alignas] = ACTIONS(6841), + [anon_sym__Alignas] = ACTIONS(6841), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6821), + [anon_sym_or_eq] = ACTIONS(6821), + [anon_sym_xor_eq] = ACTIONS(6821), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6821), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6821), + [anon_sym_not_eq] = ACTIONS(6821), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7385), - [anon_sym_override] = ACTIONS(7385), - [anon_sym_requires] = ACTIONS(7385), - [anon_sym_DASH_GT_STAR] = ACTIONS(7385), }, - [STATE(2315)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2544), - [sym_ms_pointer_modifier] = STATE(2315), - [aux_sym_pointer_declarator_repeat1] = STATE(2315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6602), - [anon_sym_COMMA] = ACTIONS(6602), - [anon_sym_RPAREN] = ACTIONS(6602), - [anon_sym_LPAREN2] = ACTIONS(6602), - [anon_sym_DASH] = ACTIONS(6600), - [anon_sym_PLUS] = ACTIONS(6600), - [anon_sym_STAR] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6600), - [anon_sym_PERCENT] = ACTIONS(6600), - [anon_sym_PIPE_PIPE] = ACTIONS(6602), - [anon_sym_AMP_AMP] = ACTIONS(6602), - [anon_sym_PIPE] = ACTIONS(6600), - [anon_sym_CARET] = ACTIONS(6600), - [anon_sym_AMP] = ACTIONS(6600), - [anon_sym_EQ_EQ] = ACTIONS(6602), - [anon_sym_BANG_EQ] = ACTIONS(6602), - [anon_sym_GT] = ACTIONS(6600), - [anon_sym_GT_EQ] = ACTIONS(6602), - [anon_sym_LT_EQ] = ACTIONS(6600), - [anon_sym_LT] = ACTIONS(6600), - [anon_sym_LT_LT] = ACTIONS(6600), - [anon_sym_GT_GT] = ACTIONS(6600), - [anon_sym___extension__] = ACTIONS(6602), - [sym_ms_restrict_modifier] = ACTIONS(7823), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7826), - [sym_ms_signed_ptr_modifier] = ACTIONS(7826), - [anon_sym__unaligned] = ACTIONS(7829), - [anon_sym___unaligned] = ACTIONS(7829), - [anon_sym_LBRACK] = ACTIONS(6602), - [anon_sym_EQ] = ACTIONS(6600), - [anon_sym_const] = ACTIONS(6600), - [anon_sym_constexpr] = ACTIONS(6602), - [anon_sym_volatile] = ACTIONS(6602), - [anon_sym_restrict] = ACTIONS(6602), - [anon_sym___restrict__] = ACTIONS(6602), - [anon_sym__Atomic] = ACTIONS(6602), - [anon_sym__Noreturn] = ACTIONS(6602), - [anon_sym_noreturn] = ACTIONS(6602), - [anon_sym__Nonnull] = ACTIONS(6602), - [anon_sym_mutable] = ACTIONS(6602), - [anon_sym_constinit] = ACTIONS(6602), - [anon_sym_consteval] = ACTIONS(6602), - [anon_sym_alignas] = ACTIONS(6602), - [anon_sym__Alignas] = ACTIONS(6602), - [anon_sym_QMARK] = ACTIONS(6602), - [anon_sym_STAR_EQ] = ACTIONS(6602), - [anon_sym_SLASH_EQ] = ACTIONS(6602), - [anon_sym_PERCENT_EQ] = ACTIONS(6602), - [anon_sym_PLUS_EQ] = ACTIONS(6602), - [anon_sym_DASH_EQ] = ACTIONS(6602), - [anon_sym_LT_LT_EQ] = ACTIONS(6602), - [anon_sym_GT_GT_EQ] = ACTIONS(6602), - [anon_sym_AMP_EQ] = ACTIONS(6602), - [anon_sym_CARET_EQ] = ACTIONS(6602), - [anon_sym_PIPE_EQ] = ACTIONS(6602), - [anon_sym_and_eq] = ACTIONS(6602), - [anon_sym_or_eq] = ACTIONS(6602), - [anon_sym_xor_eq] = ACTIONS(6602), - [anon_sym_LT_EQ_GT] = ACTIONS(6602), - [anon_sym_or] = ACTIONS(6600), - [anon_sym_and] = ACTIONS(6600), - [anon_sym_bitor] = ACTIONS(6602), - [anon_sym_xor] = ACTIONS(6600), - [anon_sym_bitand] = ACTIONS(6602), - [anon_sym_not_eq] = ACTIONS(6602), - [anon_sym_DASH_DASH] = ACTIONS(6602), - [anon_sym_PLUS_PLUS] = ACTIONS(6602), - [anon_sym_DOT] = ACTIONS(6600), - [anon_sym_DOT_STAR] = ACTIONS(6602), - [anon_sym_DASH_GT] = ACTIONS(6600), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6602), - [anon_sym_override] = ACTIONS(6602), - [anon_sym_requires] = ACTIONS(6602), - [anon_sym_DASH_GT_STAR] = ACTIONS(6602), - }, - [STATE(2316)] = { - [sym_template_argument_list] = STATE(2405), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6208), - [anon_sym_COMMA] = ACTIONS(6208), - [anon_sym_RPAREN] = ACTIONS(6208), - [anon_sym_LPAREN2] = ACTIONS(6208), - [anon_sym_DASH] = ACTIONS(6201), - [anon_sym_PLUS] = ACTIONS(6201), - [anon_sym_STAR] = ACTIONS(6201), - [anon_sym_SLASH] = ACTIONS(6201), - [anon_sym_PERCENT] = ACTIONS(6201), - [anon_sym_PIPE_PIPE] = ACTIONS(6208), - [anon_sym_AMP_AMP] = ACTIONS(6208), - [anon_sym_PIPE] = ACTIONS(6201), - [anon_sym_CARET] = ACTIONS(6201), - [anon_sym_AMP] = ACTIONS(6201), - [anon_sym_EQ_EQ] = ACTIONS(6208), - [anon_sym_BANG_EQ] = ACTIONS(6208), - [anon_sym_GT] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6208), - [anon_sym_LT_EQ] = ACTIONS(6201), - [anon_sym_LT] = ACTIONS(7832), - [anon_sym_LT_LT] = ACTIONS(6201), - [anon_sym_GT_GT] = ACTIONS(6201), - [anon_sym___extension__] = ACTIONS(6208), - [anon_sym___attribute__] = ACTIONS(6208), - [anon_sym___attribute] = ACTIONS(6201), - [anon_sym_COLON] = ACTIONS(6201), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(6208), - [anon_sym_LBRACK] = ACTIONS(6208), - [anon_sym_EQ] = ACTIONS(6201), - [anon_sym_const] = ACTIONS(6201), - [anon_sym_constexpr] = ACTIONS(6208), - [anon_sym_volatile] = ACTIONS(6208), - [anon_sym_restrict] = ACTIONS(6208), - [anon_sym___restrict__] = ACTIONS(6208), - [anon_sym__Atomic] = ACTIONS(6208), - [anon_sym__Noreturn] = ACTIONS(6208), - [anon_sym_noreturn] = ACTIONS(6208), - [anon_sym__Nonnull] = ACTIONS(6208), - [anon_sym_mutable] = ACTIONS(6208), - [anon_sym_constinit] = ACTIONS(6208), - [anon_sym_consteval] = ACTIONS(6208), - [anon_sym_alignas] = ACTIONS(6208), - [anon_sym__Alignas] = ACTIONS(6208), - [anon_sym_QMARK] = ACTIONS(6208), - [anon_sym_STAR_EQ] = ACTIONS(6208), - [anon_sym_SLASH_EQ] = ACTIONS(6208), - [anon_sym_PERCENT_EQ] = ACTIONS(6208), - [anon_sym_PLUS_EQ] = ACTIONS(6208), - [anon_sym_DASH_EQ] = ACTIONS(6208), - [anon_sym_LT_LT_EQ] = ACTIONS(6208), - [anon_sym_GT_GT_EQ] = ACTIONS(6208), - [anon_sym_AMP_EQ] = ACTIONS(6208), - [anon_sym_CARET_EQ] = ACTIONS(6208), - [anon_sym_PIPE_EQ] = ACTIONS(6208), - [anon_sym_and_eq] = ACTIONS(6208), - [anon_sym_or_eq] = ACTIONS(6208), - [anon_sym_xor_eq] = ACTIONS(6208), - [anon_sym_LT_EQ_GT] = ACTIONS(6208), - [anon_sym_or] = ACTIONS(6201), - [anon_sym_and] = ACTIONS(6201), - [anon_sym_bitor] = ACTIONS(6208), - [anon_sym_xor] = ACTIONS(6201), - [anon_sym_bitand] = ACTIONS(6208), - [anon_sym_not_eq] = ACTIONS(6208), - [anon_sym_DASH_DASH] = ACTIONS(6208), - [anon_sym_PLUS_PLUS] = ACTIONS(6208), - [anon_sym_DOT] = ACTIONS(6201), - [anon_sym_DOT_STAR] = ACTIONS(6208), - [anon_sym_DASH_GT] = ACTIONS(6201), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6208), - [anon_sym_decltype] = ACTIONS(6208), - [anon_sym_final] = ACTIONS(6208), - [anon_sym_override] = ACTIONS(6208), - [anon_sym_requires] = ACTIONS(6208), - [anon_sym_DASH_GT_STAR] = ACTIONS(6208), + [STATE(2245)] = { + [sym__abstract_declarator] = STATE(4425), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2006), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1957), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_RPAREN] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(6929), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7347), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(6931), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7347), + [anon_sym_AMP] = ACTIONS(6933), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7347), + [anon_sym_GT_GT] = ACTIONS(7347), + [anon_sym_SEMI] = ACTIONS(7345), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym_COLON] = ACTIONS(7347), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7345), + [anon_sym_RBRACE] = ACTIONS(7345), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7347), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_STAR_EQ] = ACTIONS(7345), + [anon_sym_SLASH_EQ] = ACTIONS(7345), + [anon_sym_PERCENT_EQ] = ACTIONS(7345), + [anon_sym_PLUS_EQ] = ACTIONS(7345), + [anon_sym_DASH_EQ] = ACTIONS(7345), + [anon_sym_LT_LT_EQ] = ACTIONS(7345), + [anon_sym_GT_GT_EQ] = ACTIONS(7345), + [anon_sym_AMP_EQ] = ACTIONS(7345), + [anon_sym_CARET_EQ] = ACTIONS(7345), + [anon_sym_PIPE_EQ] = ACTIONS(7345), + [anon_sym_and_eq] = ACTIONS(7345), + [anon_sym_or_eq] = ACTIONS(7345), + [anon_sym_xor_eq] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7347), + [anon_sym_and] = ACTIONS(7347), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7347), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7345), }, - [STATE(2317)] = { - [sym_attribute_specifier] = STATE(4003), - [sym_attribute_declaration] = STATE(4328), - [sym_gnu_asm_expression] = STATE(8980), - [sym_virtual_specifier] = STATE(4455), - [sym_ref_qualifier] = STATE(2418), - [sym__function_exception_specification] = STATE(2817), - [sym__function_attributes_end] = STATE(4198), - [sym__function_postfix] = STATE(4844), - [sym_trailing_return_type] = STATE(4241), - [sym_noexcept] = STATE(2817), - [sym_throw_specifier] = STATE(2817), - [sym_requires_clause] = STATE(4844), - [aux_sym_type_definition_repeat1] = STATE(4003), - [aux_sym_attributed_declarator_repeat1] = STATE(4328), - [aux_sym__function_postfix_repeat1] = STATE(4455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7835), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7838), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6282), - [anon_sym___attribute] = ACTIONS(6284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7841), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6305), - [anon_sym_override] = ACTIONS(6305), - [anon_sym_noexcept] = ACTIONS(6298), - [anon_sym_throw] = ACTIONS(6300), - [anon_sym_requires] = ACTIONS(6307), - [anon_sym_DASH_GT_STAR] = ACTIONS(7544), + [STATE(2246)] = { + [sym__abstract_declarator] = STATE(4521), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2406), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1946), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2406), + [sym_identifier] = ACTIONS(7353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), + [anon_sym_COMMA] = ACTIONS(7355), + [aux_sym_preproc_if_token2] = ACTIONS(7355), + [aux_sym_preproc_else_token1] = ACTIONS(7355), + [aux_sym_preproc_elif_token1] = ACTIONS(7353), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7355), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7355), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7353), + [anon_sym_PLUS] = ACTIONS(7353), + [anon_sym_STAR] = ACTIONS(6917), + [anon_sym_SLASH] = ACTIONS(7353), + [anon_sym_PERCENT] = ACTIONS(7353), + [anon_sym_PIPE_PIPE] = ACTIONS(7355), + [anon_sym_AMP_AMP] = ACTIONS(6919), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_CARET] = ACTIONS(7353), + [anon_sym_AMP] = ACTIONS(6921), + [anon_sym_EQ_EQ] = ACTIONS(7355), + [anon_sym_BANG_EQ] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_EQ] = ACTIONS(7355), + [anon_sym_LT_EQ] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_LT_LT] = ACTIONS(7353), + [anon_sym_GT_GT] = ACTIONS(7353), + [anon_sym___extension__] = ACTIONS(6833), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7353), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(6833), + [anon_sym_volatile] = ACTIONS(6833), + [anon_sym_restrict] = ACTIONS(6833), + [anon_sym___restrict__] = ACTIONS(6833), + [anon_sym__Atomic] = ACTIONS(6833), + [anon_sym__Noreturn] = ACTIONS(6833), + [anon_sym_noreturn] = ACTIONS(6833), + [anon_sym__Nonnull] = ACTIONS(6833), + [anon_sym_mutable] = ACTIONS(6833), + [anon_sym_constinit] = ACTIONS(6833), + [anon_sym_consteval] = ACTIONS(6833), + [anon_sym_alignas] = ACTIONS(6841), + [anon_sym__Alignas] = ACTIONS(6841), + [anon_sym_QMARK] = ACTIONS(7355), + [anon_sym_STAR_EQ] = ACTIONS(7355), + [anon_sym_SLASH_EQ] = ACTIONS(7355), + [anon_sym_PERCENT_EQ] = ACTIONS(7355), + [anon_sym_PLUS_EQ] = ACTIONS(7355), + [anon_sym_DASH_EQ] = ACTIONS(7355), + [anon_sym_LT_LT_EQ] = ACTIONS(7355), + [anon_sym_GT_GT_EQ] = ACTIONS(7355), + [anon_sym_AMP_EQ] = ACTIONS(7355), + [anon_sym_CARET_EQ] = ACTIONS(7355), + [anon_sym_PIPE_EQ] = ACTIONS(7355), + [anon_sym_and_eq] = ACTIONS(7353), + [anon_sym_or_eq] = ACTIONS(7353), + [anon_sym_xor_eq] = ACTIONS(7353), + [anon_sym_LT_EQ_GT] = ACTIONS(7355), + [anon_sym_or] = ACTIONS(7353), + [anon_sym_and] = ACTIONS(7353), + [anon_sym_bitor] = ACTIONS(7353), + [anon_sym_xor] = ACTIONS(7353), + [anon_sym_bitand] = ACTIONS(7353), + [anon_sym_not_eq] = ACTIONS(7353), + [anon_sym_DASH_DASH] = ACTIONS(7355), + [anon_sym_PLUS_PLUS] = ACTIONS(7355), + [anon_sym_DOT] = ACTIONS(7353), + [anon_sym_DOT_STAR] = ACTIONS(7355), + [anon_sym_DASH_GT] = ACTIONS(7355), + [sym_comment] = ACTIONS(3), }, - [STATE(2318)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2314), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7215), - [anon_sym_COMMA] = ACTIONS(7215), - [anon_sym_RPAREN] = ACTIONS(7215), - [anon_sym_LPAREN2] = ACTIONS(7215), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_STAR] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7213), - [anon_sym_PERCENT] = ACTIONS(7213), - [anon_sym_PIPE_PIPE] = ACTIONS(7215), - [anon_sym_AMP_AMP] = ACTIONS(7215), - [anon_sym_PIPE] = ACTIONS(7213), - [anon_sym_CARET] = ACTIONS(7213), - [anon_sym_AMP] = ACTIONS(7213), - [anon_sym_EQ_EQ] = ACTIONS(7215), - [anon_sym_BANG_EQ] = ACTIONS(7215), - [anon_sym_GT] = ACTIONS(7213), - [anon_sym_GT_EQ] = ACTIONS(7215), - [anon_sym_LT_EQ] = ACTIONS(7213), - [anon_sym_LT] = ACTIONS(7213), - [anon_sym_LT_LT] = ACTIONS(7213), - [anon_sym_GT_GT] = ACTIONS(7213), - [anon_sym___extension__] = ACTIONS(7215), - [anon_sym___attribute__] = ACTIONS(7215), - [anon_sym___attribute] = ACTIONS(7213), - [anon_sym_LBRACE] = ACTIONS(7215), - [anon_sym_signed] = ACTIONS(7844), - [anon_sym_unsigned] = ACTIONS(7844), - [anon_sym_long] = ACTIONS(7844), - [anon_sym_short] = ACTIONS(7844), - [anon_sym_LBRACK] = ACTIONS(7215), - [anon_sym_EQ] = ACTIONS(7213), - [anon_sym_const] = ACTIONS(7213), - [anon_sym_constexpr] = ACTIONS(7215), - [anon_sym_volatile] = ACTIONS(7215), - [anon_sym_restrict] = ACTIONS(7215), - [anon_sym___restrict__] = ACTIONS(7215), - [anon_sym__Atomic] = ACTIONS(7215), - [anon_sym__Noreturn] = ACTIONS(7215), - [anon_sym_noreturn] = ACTIONS(7215), - [anon_sym__Nonnull] = ACTIONS(7215), - [anon_sym_mutable] = ACTIONS(7215), - [anon_sym_constinit] = ACTIONS(7215), - [anon_sym_consteval] = ACTIONS(7215), - [anon_sym_alignas] = ACTIONS(7215), - [anon_sym__Alignas] = ACTIONS(7215), - [anon_sym_QMARK] = ACTIONS(7215), - [anon_sym_STAR_EQ] = ACTIONS(7215), - [anon_sym_SLASH_EQ] = ACTIONS(7215), - [anon_sym_PERCENT_EQ] = ACTIONS(7215), - [anon_sym_PLUS_EQ] = ACTIONS(7215), - [anon_sym_DASH_EQ] = ACTIONS(7215), - [anon_sym_LT_LT_EQ] = ACTIONS(7215), - [anon_sym_GT_GT_EQ] = ACTIONS(7215), - [anon_sym_AMP_EQ] = ACTIONS(7215), - [anon_sym_CARET_EQ] = ACTIONS(7215), - [anon_sym_PIPE_EQ] = ACTIONS(7215), - [anon_sym_and_eq] = ACTIONS(7215), - [anon_sym_or_eq] = ACTIONS(7215), - [anon_sym_xor_eq] = ACTIONS(7215), - [anon_sym_LT_EQ_GT] = ACTIONS(7215), - [anon_sym_or] = ACTIONS(7213), - [anon_sym_and] = ACTIONS(7213), - [anon_sym_bitor] = ACTIONS(7215), - [anon_sym_xor] = ACTIONS(7213), - [anon_sym_bitand] = ACTIONS(7215), - [anon_sym_not_eq] = ACTIONS(7215), - [anon_sym_DASH_DASH] = ACTIONS(7215), - [anon_sym_PLUS_PLUS] = ACTIONS(7215), - [anon_sym_DOT] = ACTIONS(7213), - [anon_sym_DOT_STAR] = ACTIONS(7215), - [anon_sym_DASH_GT] = ACTIONS(7213), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7215), - [anon_sym_override] = ACTIONS(7215), - [anon_sym_requires] = ACTIONS(7215), - [anon_sym_DASH_GT_STAR] = ACTIONS(7215), + [STATE(2247)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym_ref_qualifier] = STATE(2310), + [sym__function_exception_specification] = STATE(2567), + [sym__function_attributes_end] = STATE(3919), + [sym__function_postfix] = STATE(3628), + [sym_trailing_return_type] = STATE(3071), + [sym_noexcept] = STATE(2567), + [sym_throw_specifier] = STATE(2567), + [sym_requires_clause] = STATE(3628), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(7789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [aux_sym_preproc_if_token2] = ACTIONS(7791), + [aux_sym_preproc_else_token1] = ACTIONS(7791), + [aux_sym_preproc_elif_token1] = ACTIONS(7789), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7793), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7796), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6491), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7789), + [anon_sym_or_eq] = ACTIONS(7789), + [anon_sym_xor_eq] = ACTIONS(7789), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7789), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7789), + [anon_sym_not_eq] = ACTIONS(7789), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6497), + [anon_sym___asm__] = ACTIONS(6497), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(7799), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6502), + [anon_sym_override] = ACTIONS(6502), + [anon_sym_noexcept] = ACTIONS(6504), + [anon_sym_throw] = ACTIONS(6506), + [anon_sym_requires] = ACTIONS(6508), }, - [STATE(2319)] = { - [sym_type_qualifier] = STATE(2291), - [sym_alignas_qualifier] = STATE(2498), - [aux_sym__type_definition_type_repeat1] = STATE(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), - [anon_sym_COMMA] = ACTIONS(6390), - [anon_sym_RPAREN] = ACTIONS(6390), - [anon_sym_LPAREN2] = ACTIONS(6390), - [anon_sym_DASH] = ACTIONS(6388), - [anon_sym_PLUS] = ACTIONS(6388), - [anon_sym_STAR] = ACTIONS(6388), - [anon_sym_SLASH] = ACTIONS(6388), - [anon_sym_PERCENT] = ACTIONS(6388), - [anon_sym_PIPE_PIPE] = ACTIONS(6390), - [anon_sym_AMP_AMP] = ACTIONS(6390), - [anon_sym_PIPE] = ACTIONS(6388), - [anon_sym_CARET] = ACTIONS(6388), - [anon_sym_AMP] = ACTIONS(6388), - [anon_sym_EQ_EQ] = ACTIONS(6390), - [anon_sym_BANG_EQ] = ACTIONS(6390), - [anon_sym_GT] = ACTIONS(6388), - [anon_sym_GT_EQ] = ACTIONS(6390), - [anon_sym_LT_EQ] = ACTIONS(6388), - [anon_sym_LT] = ACTIONS(6388), - [anon_sym_LT_LT] = ACTIONS(6388), - [anon_sym_GT_GT] = ACTIONS(6388), - [anon_sym___extension__] = ACTIONS(6408), - [anon_sym___attribute__] = ACTIONS(6390), - [anon_sym___attribute] = ACTIONS(6388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), - [anon_sym_LBRACK] = ACTIONS(6388), - [anon_sym_EQ] = ACTIONS(6388), - [anon_sym_const] = ACTIONS(6416), - [anon_sym_constexpr] = ACTIONS(6408), - [anon_sym_volatile] = ACTIONS(6408), - [anon_sym_restrict] = ACTIONS(6408), - [anon_sym___restrict__] = ACTIONS(6408), - [anon_sym__Atomic] = ACTIONS(6408), - [anon_sym__Noreturn] = ACTIONS(6408), - [anon_sym_noreturn] = ACTIONS(6408), - [anon_sym__Nonnull] = ACTIONS(6408), - [anon_sym_mutable] = ACTIONS(6408), - [anon_sym_constinit] = ACTIONS(6408), - [anon_sym_consteval] = ACTIONS(6408), - [anon_sym_alignas] = ACTIONS(6418), - [anon_sym__Alignas] = ACTIONS(6418), - [anon_sym_QMARK] = ACTIONS(6390), - [anon_sym_STAR_EQ] = ACTIONS(6390), - [anon_sym_SLASH_EQ] = ACTIONS(6390), - [anon_sym_PERCENT_EQ] = ACTIONS(6390), - [anon_sym_PLUS_EQ] = ACTIONS(6390), - [anon_sym_DASH_EQ] = ACTIONS(6390), - [anon_sym_LT_LT_EQ] = ACTIONS(6390), - [anon_sym_GT_GT_EQ] = ACTIONS(6390), - [anon_sym_AMP_EQ] = ACTIONS(6390), - [anon_sym_CARET_EQ] = ACTIONS(6390), - [anon_sym_PIPE_EQ] = ACTIONS(6390), - [anon_sym_LT_EQ_GT] = ACTIONS(6390), - [anon_sym_or] = ACTIONS(6390), - [anon_sym_and] = ACTIONS(6390), - [anon_sym_bitor] = ACTIONS(6390), - [anon_sym_xor] = ACTIONS(6390), - [anon_sym_bitand] = ACTIONS(6390), - [anon_sym_not_eq] = ACTIONS(6390), - [anon_sym_DASH_DASH] = ACTIONS(6390), - [anon_sym_PLUS_PLUS] = ACTIONS(6390), - [anon_sym_asm] = ACTIONS(6390), - [anon_sym___asm__] = ACTIONS(6390), - [anon_sym___asm] = ACTIONS(6388), - [anon_sym_DOT] = ACTIONS(6388), - [anon_sym_DOT_STAR] = ACTIONS(6390), - [anon_sym_DASH_GT] = ACTIONS(6388), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6390), - [anon_sym_override] = ACTIONS(6390), - [anon_sym_noexcept] = ACTIONS(6390), - [anon_sym_throw] = ACTIONS(6390), - [anon_sym_requires] = ACTIONS(6390), - [anon_sym_DASH_GT_STAR] = ACTIONS(6390), + [STATE(2248)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym_ref_qualifier] = STATE(2312), + [sym__function_exception_specification] = STATE(2574), + [sym__function_attributes_end] = STATE(3923), + [sym__function_postfix] = STATE(3628), + [sym_trailing_return_type] = STATE(3075), + [sym_noexcept] = STATE(2574), + [sym_throw_specifier] = STATE(2574), + [sym_requires_clause] = STATE(3628), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(7789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [aux_sym_preproc_if_token2] = ACTIONS(7791), + [aux_sym_preproc_else_token1] = ACTIONS(7791), + [aux_sym_preproc_elif_token1] = ACTIONS(7789), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7793), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7796), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6491), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7789), + [anon_sym_or_eq] = ACTIONS(7789), + [anon_sym_xor_eq] = ACTIONS(7789), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7789), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7789), + [anon_sym_not_eq] = ACTIONS(7789), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6497), + [anon_sym___asm__] = ACTIONS(6497), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(7799), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7802), + [anon_sym_override] = ACTIONS(7802), + [anon_sym_noexcept] = ACTIONS(6504), + [anon_sym_throw] = ACTIONS(6506), + [anon_sym_requires] = ACTIONS(7805), }, - [STATE(2320)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2321), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7241), - [anon_sym_COMMA] = ACTIONS(7241), - [anon_sym_RPAREN] = ACTIONS(7241), - [anon_sym_LPAREN2] = ACTIONS(7241), - [anon_sym_DASH] = ACTIONS(7239), - [anon_sym_PLUS] = ACTIONS(7239), - [anon_sym_STAR] = ACTIONS(7239), - [anon_sym_SLASH] = ACTIONS(7239), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_PIPE_PIPE] = ACTIONS(7241), - [anon_sym_AMP_AMP] = ACTIONS(7241), - [anon_sym_PIPE] = ACTIONS(7239), - [anon_sym_CARET] = ACTIONS(7239), - [anon_sym_AMP] = ACTIONS(7239), - [anon_sym_EQ_EQ] = ACTIONS(7241), - [anon_sym_BANG_EQ] = ACTIONS(7241), - [anon_sym_GT] = ACTIONS(7239), - [anon_sym_GT_EQ] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7239), - [anon_sym_LT] = ACTIONS(7239), - [anon_sym_LT_LT] = ACTIONS(7239), - [anon_sym_GT_GT] = ACTIONS(7239), - [anon_sym___extension__] = ACTIONS(7241), - [anon_sym___attribute__] = ACTIONS(7241), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_LBRACE] = ACTIONS(7241), - [anon_sym_signed] = ACTIONS(7846), - [anon_sym_unsigned] = ACTIONS(7846), - [anon_sym_long] = ACTIONS(7846), - [anon_sym_short] = ACTIONS(7846), - [anon_sym_LBRACK] = ACTIONS(7241), - [anon_sym_EQ] = ACTIONS(7239), - [anon_sym_const] = ACTIONS(7239), - [anon_sym_constexpr] = ACTIONS(7241), - [anon_sym_volatile] = ACTIONS(7241), - [anon_sym_restrict] = ACTIONS(7241), - [anon_sym___restrict__] = ACTIONS(7241), - [anon_sym__Atomic] = ACTIONS(7241), - [anon_sym__Noreturn] = ACTIONS(7241), - [anon_sym_noreturn] = ACTIONS(7241), - [anon_sym__Nonnull] = ACTIONS(7241), - [anon_sym_mutable] = ACTIONS(7241), - [anon_sym_constinit] = ACTIONS(7241), - [anon_sym_consteval] = ACTIONS(7241), - [anon_sym_alignas] = ACTIONS(7241), - [anon_sym__Alignas] = ACTIONS(7241), - [anon_sym_QMARK] = ACTIONS(7241), - [anon_sym_STAR_EQ] = ACTIONS(7241), - [anon_sym_SLASH_EQ] = ACTIONS(7241), - [anon_sym_PERCENT_EQ] = ACTIONS(7241), - [anon_sym_PLUS_EQ] = ACTIONS(7241), - [anon_sym_DASH_EQ] = ACTIONS(7241), - [anon_sym_LT_LT_EQ] = ACTIONS(7241), - [anon_sym_GT_GT_EQ] = ACTIONS(7241), - [anon_sym_AMP_EQ] = ACTIONS(7241), - [anon_sym_CARET_EQ] = ACTIONS(7241), - [anon_sym_PIPE_EQ] = ACTIONS(7241), - [anon_sym_and_eq] = ACTIONS(7241), - [anon_sym_or_eq] = ACTIONS(7241), - [anon_sym_xor_eq] = ACTIONS(7241), - [anon_sym_LT_EQ_GT] = ACTIONS(7241), - [anon_sym_or] = ACTIONS(7239), - [anon_sym_and] = ACTIONS(7239), - [anon_sym_bitor] = ACTIONS(7241), - [anon_sym_xor] = ACTIONS(7239), - [anon_sym_bitand] = ACTIONS(7241), - [anon_sym_not_eq] = ACTIONS(7241), - [anon_sym_DASH_DASH] = ACTIONS(7241), - [anon_sym_PLUS_PLUS] = ACTIONS(7241), - [anon_sym_DOT] = ACTIONS(7239), - [anon_sym_DOT_STAR] = ACTIONS(7241), - [anon_sym_DASH_GT] = ACTIONS(7239), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7241), - [anon_sym_override] = ACTIONS(7241), - [anon_sym_requires] = ACTIONS(7241), - [anon_sym_DASH_GT_STAR] = ACTIONS(7241), + [STATE(2249)] = { + [sym_attribute_specifier] = STATE(3154), + [sym_attribute_declaration] = STATE(6403), + [sym_type_qualifier] = STATE(3731), + [sym_alignas_qualifier] = STATE(3991), + [sym_gnu_asm_expression] = STATE(9096), + [sym_virtual_specifier] = STATE(6501), + [sym_ref_qualifier] = STATE(4044), + [sym__function_attributes_start] = STATE(3976), + [sym__function_exception_specification] = STATE(4628), + [sym__function_attributes_end] = STATE(6276), + [sym__function_postfix] = STATE(6715), + [sym_trailing_return_type] = STATE(6315), + [sym_noexcept] = STATE(4628), + [sym_throw_specifier] = STATE(4628), + [sym_requires_clause] = STATE(6715), + [aux_sym_type_definition_repeat1] = STATE(3154), + [aux_sym__type_definition_type_repeat1] = STATE(3731), + [aux_sym_attributed_declarator_repeat1] = STATE(6403), + [aux_sym__function_postfix_repeat1] = STATE(6501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), + [anon_sym_COMMA] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_PLUS] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6481), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_PERCENT] = ACTIONS(6481), + [anon_sym_PIPE_PIPE] = ACTIONS(6481), + [anon_sym_AMP_AMP] = ACTIONS(7808), + [anon_sym_PIPE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6481), + [anon_sym_AMP] = ACTIONS(7811), + [anon_sym_EQ_EQ] = ACTIONS(6481), + [anon_sym_BANG_EQ] = ACTIONS(6481), + [anon_sym_GT] = ACTIONS(6479), + [anon_sym_GT_EQ] = ACTIONS(6479), + [anon_sym_LT_EQ] = ACTIONS(6479), + [anon_sym_LT] = ACTIONS(6479), + [anon_sym_LT_LT] = ACTIONS(6481), + [anon_sym_GT_GT] = ACTIONS(6479), + [anon_sym___extension__] = ACTIONS(7814), + [anon_sym___attribute__] = ACTIONS(7816), + [anon_sym___attribute] = ACTIONS(7818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7820), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(7822), + [anon_sym_constexpr] = ACTIONS(7814), + [anon_sym_volatile] = ACTIONS(7814), + [anon_sym_restrict] = ACTIONS(7814), + [anon_sym___restrict__] = ACTIONS(7814), + [anon_sym__Atomic] = ACTIONS(7814), + [anon_sym__Noreturn] = ACTIONS(7814), + [anon_sym_noreturn] = ACTIONS(7814), + [anon_sym__Nonnull] = ACTIONS(7814), + [anon_sym_mutable] = ACTIONS(7814), + [anon_sym_constinit] = ACTIONS(7814), + [anon_sym_consteval] = ACTIONS(7814), + [anon_sym_alignas] = ACTIONS(7824), + [anon_sym__Alignas] = ACTIONS(7824), + [anon_sym_QMARK] = ACTIONS(6481), + [anon_sym_LT_EQ_GT] = ACTIONS(6481), + [anon_sym_or] = ACTIONS(6481), + [anon_sym_and] = ACTIONS(6481), + [anon_sym_bitor] = ACTIONS(6481), + [anon_sym_xor] = ACTIONS(6481), + [anon_sym_bitand] = ACTIONS(6481), + [anon_sym_not_eq] = ACTIONS(6481), + [anon_sym_DASH_DASH] = ACTIONS(6481), + [anon_sym_PLUS_PLUS] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6479), + [anon_sym_DOT_STAR] = ACTIONS(6481), + [anon_sym_DASH_GT] = ACTIONS(7826), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7829), + [anon_sym_override] = ACTIONS(7829), + [anon_sym_GT2] = ACTIONS(6481), + [anon_sym_noexcept] = ACTIONS(7831), + [anon_sym_throw] = ACTIONS(7833), + [anon_sym_requires] = ACTIONS(7835), }, - [STATE(2321)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2222), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7397), - [anon_sym_COMMA] = ACTIONS(7397), - [anon_sym_RPAREN] = ACTIONS(7397), - [anon_sym_LPAREN2] = ACTIONS(7397), - [anon_sym_DASH] = ACTIONS(7395), - [anon_sym_PLUS] = ACTIONS(7395), - [anon_sym_STAR] = ACTIONS(7395), - [anon_sym_SLASH] = ACTIONS(7395), - [anon_sym_PERCENT] = ACTIONS(7395), - [anon_sym_PIPE_PIPE] = ACTIONS(7397), - [anon_sym_AMP_AMP] = ACTIONS(7397), - [anon_sym_PIPE] = ACTIONS(7395), - [anon_sym_CARET] = ACTIONS(7395), - [anon_sym_AMP] = ACTIONS(7395), - [anon_sym_EQ_EQ] = ACTIONS(7397), - [anon_sym_BANG_EQ] = ACTIONS(7397), - [anon_sym_GT] = ACTIONS(7395), - [anon_sym_GT_EQ] = ACTIONS(7397), - [anon_sym_LT_EQ] = ACTIONS(7395), - [anon_sym_LT] = ACTIONS(7395), - [anon_sym_LT_LT] = ACTIONS(7395), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym___extension__] = ACTIONS(7397), - [anon_sym___attribute__] = ACTIONS(7397), - [anon_sym___attribute] = ACTIONS(7395), - [anon_sym_LBRACE] = ACTIONS(7397), - [anon_sym_signed] = ACTIONS(7788), - [anon_sym_unsigned] = ACTIONS(7788), - [anon_sym_long] = ACTIONS(7788), - [anon_sym_short] = ACTIONS(7788), - [anon_sym_LBRACK] = ACTIONS(7397), - [anon_sym_EQ] = ACTIONS(7395), - [anon_sym_const] = ACTIONS(7395), - [anon_sym_constexpr] = ACTIONS(7397), - [anon_sym_volatile] = ACTIONS(7397), - [anon_sym_restrict] = ACTIONS(7397), - [anon_sym___restrict__] = ACTIONS(7397), - [anon_sym__Atomic] = ACTIONS(7397), - [anon_sym__Noreturn] = ACTIONS(7397), - [anon_sym_noreturn] = ACTIONS(7397), - [anon_sym__Nonnull] = ACTIONS(7397), - [anon_sym_mutable] = ACTIONS(7397), - [anon_sym_constinit] = ACTIONS(7397), - [anon_sym_consteval] = ACTIONS(7397), - [anon_sym_alignas] = ACTIONS(7397), - [anon_sym__Alignas] = ACTIONS(7397), - [anon_sym_QMARK] = ACTIONS(7397), - [anon_sym_STAR_EQ] = ACTIONS(7397), - [anon_sym_SLASH_EQ] = ACTIONS(7397), - [anon_sym_PERCENT_EQ] = ACTIONS(7397), - [anon_sym_PLUS_EQ] = ACTIONS(7397), - [anon_sym_DASH_EQ] = ACTIONS(7397), - [anon_sym_LT_LT_EQ] = ACTIONS(7397), - [anon_sym_GT_GT_EQ] = ACTIONS(7397), - [anon_sym_AMP_EQ] = ACTIONS(7397), - [anon_sym_CARET_EQ] = ACTIONS(7397), - [anon_sym_PIPE_EQ] = ACTIONS(7397), - [anon_sym_and_eq] = ACTIONS(7397), - [anon_sym_or_eq] = ACTIONS(7397), - [anon_sym_xor_eq] = ACTIONS(7397), - [anon_sym_LT_EQ_GT] = ACTIONS(7397), - [anon_sym_or] = ACTIONS(7395), - [anon_sym_and] = ACTIONS(7395), - [anon_sym_bitor] = ACTIONS(7397), - [anon_sym_xor] = ACTIONS(7395), - [anon_sym_bitand] = ACTIONS(7397), - [anon_sym_not_eq] = ACTIONS(7397), - [anon_sym_DASH_DASH] = ACTIONS(7397), - [anon_sym_PLUS_PLUS] = ACTIONS(7397), - [anon_sym_DOT] = ACTIONS(7395), - [anon_sym_DOT_STAR] = ACTIONS(7397), - [anon_sym_DASH_GT] = ACTIONS(7395), + [STATE(2250)] = { + [sym__abstract_declarator] = STATE(4525), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2406), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1946), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2406), + [sym_identifier] = ACTIONS(7347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [aux_sym_preproc_if_token2] = ACTIONS(7345), + [aux_sym_preproc_else_token1] = ACTIONS(7345), + [aux_sym_preproc_elif_token1] = ACTIONS(7347), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7345), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(6917), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7347), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(6919), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7347), + [anon_sym_AMP] = ACTIONS(6921), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7347), + [anon_sym_GT_GT] = ACTIONS(7347), + [anon_sym___extension__] = ACTIONS(6833), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7347), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(6833), + [anon_sym_volatile] = ACTIONS(6833), + [anon_sym_restrict] = ACTIONS(6833), + [anon_sym___restrict__] = ACTIONS(6833), + [anon_sym__Atomic] = ACTIONS(6833), + [anon_sym__Noreturn] = ACTIONS(6833), + [anon_sym_noreturn] = ACTIONS(6833), + [anon_sym__Nonnull] = ACTIONS(6833), + [anon_sym_mutable] = ACTIONS(6833), + [anon_sym_constinit] = ACTIONS(6833), + [anon_sym_consteval] = ACTIONS(6833), + [anon_sym_alignas] = ACTIONS(6841), + [anon_sym__Alignas] = ACTIONS(6841), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_STAR_EQ] = ACTIONS(7345), + [anon_sym_SLASH_EQ] = ACTIONS(7345), + [anon_sym_PERCENT_EQ] = ACTIONS(7345), + [anon_sym_PLUS_EQ] = ACTIONS(7345), + [anon_sym_DASH_EQ] = ACTIONS(7345), + [anon_sym_LT_LT_EQ] = ACTIONS(7345), + [anon_sym_GT_GT_EQ] = ACTIONS(7345), + [anon_sym_AMP_EQ] = ACTIONS(7345), + [anon_sym_CARET_EQ] = ACTIONS(7345), + [anon_sym_PIPE_EQ] = ACTIONS(7345), + [anon_sym_and_eq] = ACTIONS(7347), + [anon_sym_or_eq] = ACTIONS(7347), + [anon_sym_xor_eq] = ACTIONS(7347), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7347), + [anon_sym_and] = ACTIONS(7347), + [anon_sym_bitor] = ACTIONS(7347), + [anon_sym_xor] = ACTIONS(7347), + [anon_sym_bitand] = ACTIONS(7347), + [anon_sym_not_eq] = ACTIONS(7347), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7397), - [anon_sym_override] = ACTIONS(7397), - [anon_sym_requires] = ACTIONS(7397), - [anon_sym_DASH_GT_STAR] = ACTIONS(7397), }, - [STATE(2322)] = { - [sym_attribute_specifier] = STATE(4003), - [sym_attribute_declaration] = STATE(4328), - [sym_gnu_asm_expression] = STATE(8980), - [sym_virtual_specifier] = STATE(4455), - [sym_ref_qualifier] = STATE(2407), - [sym__function_exception_specification] = STATE(2816), - [sym__function_attributes_end] = STATE(4185), - [sym__function_postfix] = STATE(4844), - [sym_trailing_return_type] = STATE(4273), - [sym_noexcept] = STATE(2816), - [sym_throw_specifier] = STATE(2816), - [sym_requires_clause] = STATE(4844), - [aux_sym_type_definition_repeat1] = STATE(4003), - [aux_sym_attributed_declarator_repeat1] = STATE(4328), - [aux_sym__function_postfix_repeat1] = STATE(4455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7835), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7838), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6282), - [anon_sym___attribute] = ACTIONS(6284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7841), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7848), - [anon_sym_override] = ACTIONS(7848), - [anon_sym_noexcept] = ACTIONS(6298), - [anon_sym_throw] = ACTIONS(6300), - [anon_sym_requires] = ACTIONS(7851), - [anon_sym_DASH_GT_STAR] = ACTIONS(7544), + [STATE(2251)] = { + [sym_template_argument_list] = STATE(2174), + [sym_identifier] = ACTIONS(7094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7087), + [anon_sym_COMMA] = ACTIONS(7087), + [anon_sym_RPAREN] = ACTIONS(7087), + [aux_sym_preproc_if_token2] = ACTIONS(7087), + [aux_sym_preproc_else_token1] = ACTIONS(7087), + [aux_sym_preproc_elif_token1] = ACTIONS(7094), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7087), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7087), + [anon_sym_LPAREN2] = ACTIONS(7087), + [anon_sym_DASH] = ACTIONS(7094), + [anon_sym_PLUS] = ACTIONS(7094), + [anon_sym_STAR] = ACTIONS(7094), + [anon_sym_SLASH] = ACTIONS(7094), + [anon_sym_PERCENT] = ACTIONS(7094), + [anon_sym_PIPE_PIPE] = ACTIONS(7087), + [anon_sym_AMP_AMP] = ACTIONS(7087), + [anon_sym_PIPE] = ACTIONS(7094), + [anon_sym_CARET] = ACTIONS(7094), + [anon_sym_AMP] = ACTIONS(7094), + [anon_sym_EQ_EQ] = ACTIONS(7087), + [anon_sym_BANG_EQ] = ACTIONS(7087), + [anon_sym_GT] = ACTIONS(7094), + [anon_sym_GT_EQ] = ACTIONS(7087), + [anon_sym_LT_EQ] = ACTIONS(7094), + [anon_sym_LT] = ACTIONS(7266), + [anon_sym_LT_LT] = ACTIONS(7094), + [anon_sym_GT_GT] = ACTIONS(7094), + [anon_sym_SEMI] = ACTIONS(7087), + [anon_sym___extension__] = ACTIONS(7085), + [anon_sym___attribute__] = ACTIONS(7094), + [anon_sym___attribute] = ACTIONS(7094), + [anon_sym_COLON] = ACTIONS(7094), + [anon_sym_COLON_COLON] = ACTIONS(7087), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7087), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_RBRACE] = ACTIONS(7087), + [anon_sym_LBRACK] = ACTIONS(7087), + [anon_sym_EQ] = ACTIONS(7094), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7085), + [anon_sym_volatile] = ACTIONS(7085), + [anon_sym_restrict] = ACTIONS(7085), + [anon_sym___restrict__] = ACTIONS(7085), + [anon_sym__Atomic] = ACTIONS(7085), + [anon_sym__Noreturn] = ACTIONS(7085), + [anon_sym_noreturn] = ACTIONS(7085), + [anon_sym__Nonnull] = ACTIONS(7085), + [anon_sym_mutable] = ACTIONS(7085), + [anon_sym_constinit] = ACTIONS(7085), + [anon_sym_consteval] = ACTIONS(7085), + [anon_sym_alignas] = ACTIONS(7085), + [anon_sym__Alignas] = ACTIONS(7085), + [anon_sym_QMARK] = ACTIONS(7087), + [anon_sym_STAR_EQ] = ACTIONS(7087), + [anon_sym_SLASH_EQ] = ACTIONS(7087), + [anon_sym_PERCENT_EQ] = ACTIONS(7087), + [anon_sym_PLUS_EQ] = ACTIONS(7087), + [anon_sym_DASH_EQ] = ACTIONS(7087), + [anon_sym_LT_LT_EQ] = ACTIONS(7087), + [anon_sym_GT_GT_EQ] = ACTIONS(7087), + [anon_sym_AMP_EQ] = ACTIONS(7087), + [anon_sym_CARET_EQ] = ACTIONS(7087), + [anon_sym_PIPE_EQ] = ACTIONS(7087), + [anon_sym_and_eq] = ACTIONS(7094), + [anon_sym_or_eq] = ACTIONS(7094), + [anon_sym_xor_eq] = ACTIONS(7094), + [anon_sym_LT_EQ_GT] = ACTIONS(7087), + [anon_sym_or] = ACTIONS(7094), + [anon_sym_and] = ACTIONS(7094), + [anon_sym_bitor] = ACTIONS(7094), + [anon_sym_xor] = ACTIONS(7094), + [anon_sym_bitand] = ACTIONS(7094), + [anon_sym_not_eq] = ACTIONS(7094), + [anon_sym_DASH_DASH] = ACTIONS(7087), + [anon_sym_PLUS_PLUS] = ACTIONS(7087), + [anon_sym_DOT] = ACTIONS(7094), + [anon_sym_DOT_STAR] = ACTIONS(7087), + [anon_sym_DASH_GT] = ACTIONS(7087), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7087), }, - [STATE(2323)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(9706), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_optional_parameter_declaration] = STATE(9706), - [sym_variadic_parameter_declaration] = STATE(9706), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), - [anon_sym_RPAREN] = ACTIONS(1968), + [STATE(2252)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5368), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(9861), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_type_parameter_declaration] = STATE(9861), + [sym_variadic_type_parameter_declaration] = STATE(9861), + [sym_optional_type_parameter_declaration] = STATE(9861), + [sym_template_template_parameter_declaration] = STATE(9861), + [sym_optional_parameter_declaration] = STATE(9861), + [sym_variadic_parameter_declaration] = STATE(9861), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), + [anon_sym_virtual] = ACTIONS(2310), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -329071,1576 +335785,3179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(5313), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(7837), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(7839), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(7841), + [anon_sym_GT2] = ACTIONS(7843), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2324)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6792), - [anon_sym_COMMA] = ACTIONS(6792), - [anon_sym_RPAREN] = ACTIONS(6792), - [anon_sym_LPAREN2] = ACTIONS(6792), - [anon_sym_DASH] = ACTIONS(6790), - [anon_sym_PLUS] = ACTIONS(6790), - [anon_sym_STAR] = ACTIONS(6790), - [anon_sym_SLASH] = ACTIONS(6790), - [anon_sym_PERCENT] = ACTIONS(6790), - [anon_sym_PIPE_PIPE] = ACTIONS(6792), - [anon_sym_AMP_AMP] = ACTIONS(6792), - [anon_sym_PIPE] = ACTIONS(6790), - [anon_sym_CARET] = ACTIONS(6790), - [anon_sym_AMP] = ACTIONS(6790), - [anon_sym_EQ_EQ] = ACTIONS(6792), - [anon_sym_BANG_EQ] = ACTIONS(6792), - [anon_sym_GT] = ACTIONS(6790), - [anon_sym_GT_EQ] = ACTIONS(6792), - [anon_sym_LT_EQ] = ACTIONS(6790), - [anon_sym_LT] = ACTIONS(6790), - [anon_sym_LT_LT] = ACTIONS(6790), - [anon_sym_GT_GT] = ACTIONS(6790), - [anon_sym___extension__] = ACTIONS(6792), - [anon_sym___attribute__] = ACTIONS(6792), - [anon_sym___attribute] = ACTIONS(6790), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), - [anon_sym_LBRACK] = ACTIONS(6790), - [anon_sym_EQ] = ACTIONS(6790), - [anon_sym_const] = ACTIONS(6790), - [anon_sym_constexpr] = ACTIONS(6792), - [anon_sym_volatile] = ACTIONS(6792), - [anon_sym_restrict] = ACTIONS(6792), - [anon_sym___restrict__] = ACTIONS(6792), - [anon_sym__Atomic] = ACTIONS(6792), - [anon_sym__Noreturn] = ACTIONS(6792), - [anon_sym_noreturn] = ACTIONS(6792), - [anon_sym__Nonnull] = ACTIONS(6792), - [anon_sym_mutable] = ACTIONS(6792), - [anon_sym_constinit] = ACTIONS(6792), - [anon_sym_consteval] = ACTIONS(6792), - [anon_sym_alignas] = ACTIONS(6792), - [anon_sym__Alignas] = ACTIONS(6792), - [anon_sym_QMARK] = ACTIONS(6792), - [anon_sym_STAR_EQ] = ACTIONS(6792), - [anon_sym_SLASH_EQ] = ACTIONS(6792), - [anon_sym_PERCENT_EQ] = ACTIONS(6792), - [anon_sym_PLUS_EQ] = ACTIONS(6792), - [anon_sym_DASH_EQ] = ACTIONS(6792), - [anon_sym_LT_LT_EQ] = ACTIONS(6792), - [anon_sym_GT_GT_EQ] = ACTIONS(6792), - [anon_sym_AMP_EQ] = ACTIONS(6792), - [anon_sym_CARET_EQ] = ACTIONS(6792), - [anon_sym_PIPE_EQ] = ACTIONS(6792), - [anon_sym_and_eq] = ACTIONS(6792), - [anon_sym_or_eq] = ACTIONS(6792), - [anon_sym_xor_eq] = ACTIONS(6792), - [anon_sym_LT_EQ_GT] = ACTIONS(6792), - [anon_sym_or] = ACTIONS(6790), - [anon_sym_and] = ACTIONS(6790), - [anon_sym_bitor] = ACTIONS(6792), - [anon_sym_xor] = ACTIONS(6790), - [anon_sym_bitand] = ACTIONS(6792), - [anon_sym_not_eq] = ACTIONS(6792), - [anon_sym_DASH_DASH] = ACTIONS(6792), - [anon_sym_PLUS_PLUS] = ACTIONS(6792), - [anon_sym_asm] = ACTIONS(6792), - [anon_sym___asm__] = ACTIONS(6792), - [anon_sym___asm] = ACTIONS(6790), - [anon_sym_DOT] = ACTIONS(6790), - [anon_sym_DOT_STAR] = ACTIONS(6792), - [anon_sym_DASH_GT] = ACTIONS(6790), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6792), - [anon_sym_override] = ACTIONS(6792), - [anon_sym_noexcept] = ACTIONS(6792), - [anon_sym_throw] = ACTIONS(6792), - [anon_sym_requires] = ACTIONS(6792), - [anon_sym_DASH_GT_STAR] = ACTIONS(6792), + [STATE(2253)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7729), + [anon_sym_COMMA] = ACTIONS(7729), + [anon_sym_RPAREN] = ACTIONS(7729), + [anon_sym_LPAREN2] = ACTIONS(7729), + [anon_sym_DASH] = ACTIONS(7727), + [anon_sym_PLUS] = ACTIONS(7727), + [anon_sym_STAR] = ACTIONS(7727), + [anon_sym_SLASH] = ACTIONS(7727), + [anon_sym_PERCENT] = ACTIONS(7727), + [anon_sym_PIPE_PIPE] = ACTIONS(7729), + [anon_sym_AMP_AMP] = ACTIONS(7729), + [anon_sym_PIPE] = ACTIONS(7727), + [anon_sym_CARET] = ACTIONS(7727), + [anon_sym_AMP] = ACTIONS(7727), + [anon_sym_EQ_EQ] = ACTIONS(7729), + [anon_sym_BANG_EQ] = ACTIONS(7729), + [anon_sym_GT] = ACTIONS(7727), + [anon_sym_GT_EQ] = ACTIONS(7729), + [anon_sym_LT_EQ] = ACTIONS(7727), + [anon_sym_LT] = ACTIONS(7727), + [anon_sym_LT_LT] = ACTIONS(7727), + [anon_sym_GT_GT] = ACTIONS(7727), + [anon_sym_SEMI] = ACTIONS(7729), + [anon_sym___extension__] = ACTIONS(7729), + [anon_sym___attribute__] = ACTIONS(7729), + [anon_sym___attribute] = ACTIONS(7727), + [anon_sym_COLON] = ACTIONS(7727), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7729), + [anon_sym_LBRACE] = ACTIONS(7729), + [anon_sym_RBRACE] = ACTIONS(7729), + [anon_sym_signed] = ACTIONS(7845), + [anon_sym_unsigned] = ACTIONS(7845), + [anon_sym_long] = ACTIONS(7845), + [anon_sym_short] = ACTIONS(7845), + [anon_sym_LBRACK] = ACTIONS(7729), + [anon_sym_EQ] = ACTIONS(7727), + [anon_sym_const] = ACTIONS(7727), + [anon_sym_constexpr] = ACTIONS(7729), + [anon_sym_volatile] = ACTIONS(7729), + [anon_sym_restrict] = ACTIONS(7729), + [anon_sym___restrict__] = ACTIONS(7729), + [anon_sym__Atomic] = ACTIONS(7729), + [anon_sym__Noreturn] = ACTIONS(7729), + [anon_sym_noreturn] = ACTIONS(7729), + [anon_sym__Nonnull] = ACTIONS(7729), + [anon_sym_mutable] = ACTIONS(7729), + [anon_sym_constinit] = ACTIONS(7729), + [anon_sym_consteval] = ACTIONS(7729), + [anon_sym_alignas] = ACTIONS(7729), + [anon_sym__Alignas] = ACTIONS(7729), + [anon_sym_QMARK] = ACTIONS(7729), + [anon_sym_STAR_EQ] = ACTIONS(7729), + [anon_sym_SLASH_EQ] = ACTIONS(7729), + [anon_sym_PERCENT_EQ] = ACTIONS(7729), + [anon_sym_PLUS_EQ] = ACTIONS(7729), + [anon_sym_DASH_EQ] = ACTIONS(7729), + [anon_sym_LT_LT_EQ] = ACTIONS(7729), + [anon_sym_GT_GT_EQ] = ACTIONS(7729), + [anon_sym_AMP_EQ] = ACTIONS(7729), + [anon_sym_CARET_EQ] = ACTIONS(7729), + [anon_sym_PIPE_EQ] = ACTIONS(7729), + [anon_sym_and_eq] = ACTIONS(7729), + [anon_sym_or_eq] = ACTIONS(7729), + [anon_sym_xor_eq] = ACTIONS(7729), + [anon_sym_LT_EQ_GT] = ACTIONS(7729), + [anon_sym_or] = ACTIONS(7727), + [anon_sym_and] = ACTIONS(7727), + [anon_sym_bitor] = ACTIONS(7729), + [anon_sym_xor] = ACTIONS(7727), + [anon_sym_bitand] = ACTIONS(7729), + [anon_sym_not_eq] = ACTIONS(7729), + [anon_sym_DASH_DASH] = ACTIONS(7729), + [anon_sym_PLUS_PLUS] = ACTIONS(7729), + [anon_sym_DOT] = ACTIONS(7727), + [anon_sym_DOT_STAR] = ACTIONS(7729), + [anon_sym_DASH_GT] = ACTIONS(7729), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7729), + [anon_sym_override] = ACTIONS(7729), + [anon_sym_requires] = ACTIONS(7729), + [anon_sym_COLON_RBRACK] = ACTIONS(7729), }, - [STATE(2325)] = { - [sym_identifier] = ACTIONS(6716), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), - [anon_sym_COMMA] = ACTIONS(6718), - [anon_sym_LPAREN2] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6716), - [anon_sym_PLUS] = ACTIONS(6716), - [anon_sym_STAR] = ACTIONS(6716), - [anon_sym_SLASH] = ACTIONS(6716), - [anon_sym_PERCENT] = ACTIONS(6716), - [anon_sym_PIPE_PIPE] = ACTIONS(6718), - [anon_sym_AMP_AMP] = ACTIONS(6718), - [anon_sym_PIPE] = ACTIONS(6716), - [anon_sym_CARET] = ACTIONS(6716), - [anon_sym_AMP] = ACTIONS(6716), - [anon_sym_EQ_EQ] = ACTIONS(6718), - [anon_sym_BANG_EQ] = ACTIONS(6718), - [anon_sym_GT] = ACTIONS(6716), - [anon_sym_GT_EQ] = ACTIONS(6716), - [anon_sym_LT_EQ] = ACTIONS(6716), - [anon_sym_LT] = ACTIONS(6716), - [anon_sym_LT_LT] = ACTIONS(6716), - [anon_sym_GT_GT] = ACTIONS(6716), - [anon_sym___extension__] = ACTIONS(6716), - [anon_sym___attribute__] = ACTIONS(6716), - [anon_sym___attribute] = ACTIONS(6716), - [anon_sym_LBRACE] = ACTIONS(6718), - [anon_sym_signed] = ACTIONS(6716), - [anon_sym_unsigned] = ACTIONS(6716), - [anon_sym_long] = ACTIONS(6716), - [anon_sym_short] = ACTIONS(6716), - [anon_sym_LBRACK] = ACTIONS(6718), - [anon_sym_EQ] = ACTIONS(6716), - [anon_sym_const] = ACTIONS(6716), - [anon_sym_constexpr] = ACTIONS(6716), - [anon_sym_volatile] = ACTIONS(6716), - [anon_sym_restrict] = ACTIONS(6716), - [anon_sym___restrict__] = ACTIONS(6716), - [anon_sym__Atomic] = ACTIONS(6716), - [anon_sym__Noreturn] = ACTIONS(6716), - [anon_sym_noreturn] = ACTIONS(6716), - [anon_sym__Nonnull] = ACTIONS(6716), - [anon_sym_mutable] = ACTIONS(6716), - [anon_sym_constinit] = ACTIONS(6716), - [anon_sym_consteval] = ACTIONS(6716), - [anon_sym_alignas] = ACTIONS(6716), - [anon_sym__Alignas] = ACTIONS(6716), - [sym_primitive_type] = ACTIONS(6716), - [anon_sym_QMARK] = ACTIONS(6718), - [anon_sym_STAR_EQ] = ACTIONS(6718), - [anon_sym_SLASH_EQ] = ACTIONS(6718), - [anon_sym_PERCENT_EQ] = ACTIONS(6718), - [anon_sym_PLUS_EQ] = ACTIONS(6718), - [anon_sym_DASH_EQ] = ACTIONS(6718), - [anon_sym_LT_LT_EQ] = ACTIONS(6718), - [anon_sym_GT_GT_EQ] = ACTIONS(6716), - [anon_sym_AMP_EQ] = ACTIONS(6718), - [anon_sym_CARET_EQ] = ACTIONS(6718), - [anon_sym_PIPE_EQ] = ACTIONS(6718), - [anon_sym_and_eq] = ACTIONS(6716), - [anon_sym_or_eq] = ACTIONS(6716), - [anon_sym_xor_eq] = ACTIONS(6716), - [anon_sym_LT_EQ_GT] = ACTIONS(6718), - [anon_sym_or] = ACTIONS(6716), - [anon_sym_and] = ACTIONS(6716), - [anon_sym_bitor] = ACTIONS(6716), - [anon_sym_xor] = ACTIONS(6716), - [anon_sym_bitand] = ACTIONS(6716), - [anon_sym_not_eq] = ACTIONS(6716), - [anon_sym_DASH_DASH] = ACTIONS(6718), - [anon_sym_PLUS_PLUS] = ACTIONS(6718), - [anon_sym_DOT] = ACTIONS(6716), - [anon_sym_DOT_STAR] = ACTIONS(6718), - [anon_sym_DASH_GT] = ACTIONS(6718), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6716), - [anon_sym_override] = ACTIONS(6716), - [anon_sym_GT2] = ACTIONS(6718), - [anon_sym_requires] = ACTIONS(6716), + [STATE(2254)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7785), + [anon_sym_COMMA] = ACTIONS(7785), + [anon_sym_RPAREN] = ACTIONS(7785), + [anon_sym_LPAREN2] = ACTIONS(7785), + [anon_sym_DASH] = ACTIONS(7783), + [anon_sym_PLUS] = ACTIONS(7783), + [anon_sym_STAR] = ACTIONS(7783), + [anon_sym_SLASH] = ACTIONS(7783), + [anon_sym_PERCENT] = ACTIONS(7783), + [anon_sym_PIPE_PIPE] = ACTIONS(7785), + [anon_sym_AMP_AMP] = ACTIONS(7785), + [anon_sym_PIPE] = ACTIONS(7783), + [anon_sym_CARET] = ACTIONS(7783), + [anon_sym_AMP] = ACTIONS(7783), + [anon_sym_EQ_EQ] = ACTIONS(7785), + [anon_sym_BANG_EQ] = ACTIONS(7785), + [anon_sym_GT] = ACTIONS(7783), + [anon_sym_GT_EQ] = ACTIONS(7785), + [anon_sym_LT_EQ] = ACTIONS(7783), + [anon_sym_LT] = ACTIONS(7783), + [anon_sym_LT_LT] = ACTIONS(7783), + [anon_sym_GT_GT] = ACTIONS(7783), + [anon_sym_SEMI] = ACTIONS(7785), + [anon_sym___extension__] = ACTIONS(7785), + [anon_sym___attribute__] = ACTIONS(7785), + [anon_sym___attribute] = ACTIONS(7783), + [anon_sym_COLON] = ACTIONS(7783), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7785), + [anon_sym_LBRACE] = ACTIONS(7785), + [anon_sym_RBRACE] = ACTIONS(7785), + [anon_sym_signed] = ACTIONS(7847), + [anon_sym_unsigned] = ACTIONS(7847), + [anon_sym_long] = ACTIONS(7847), + [anon_sym_short] = ACTIONS(7847), + [anon_sym_LBRACK] = ACTIONS(7785), + [anon_sym_EQ] = ACTIONS(7783), + [anon_sym_const] = ACTIONS(7783), + [anon_sym_constexpr] = ACTIONS(7785), + [anon_sym_volatile] = ACTIONS(7785), + [anon_sym_restrict] = ACTIONS(7785), + [anon_sym___restrict__] = ACTIONS(7785), + [anon_sym__Atomic] = ACTIONS(7785), + [anon_sym__Noreturn] = ACTIONS(7785), + [anon_sym_noreturn] = ACTIONS(7785), + [anon_sym__Nonnull] = ACTIONS(7785), + [anon_sym_mutable] = ACTIONS(7785), + [anon_sym_constinit] = ACTIONS(7785), + [anon_sym_consteval] = ACTIONS(7785), + [anon_sym_alignas] = ACTIONS(7785), + [anon_sym__Alignas] = ACTIONS(7785), + [anon_sym_QMARK] = ACTIONS(7785), + [anon_sym_STAR_EQ] = ACTIONS(7785), + [anon_sym_SLASH_EQ] = ACTIONS(7785), + [anon_sym_PERCENT_EQ] = ACTIONS(7785), + [anon_sym_PLUS_EQ] = ACTIONS(7785), + [anon_sym_DASH_EQ] = ACTIONS(7785), + [anon_sym_LT_LT_EQ] = ACTIONS(7785), + [anon_sym_GT_GT_EQ] = ACTIONS(7785), + [anon_sym_AMP_EQ] = ACTIONS(7785), + [anon_sym_CARET_EQ] = ACTIONS(7785), + [anon_sym_PIPE_EQ] = ACTIONS(7785), + [anon_sym_and_eq] = ACTIONS(7785), + [anon_sym_or_eq] = ACTIONS(7785), + [anon_sym_xor_eq] = ACTIONS(7785), + [anon_sym_LT_EQ_GT] = ACTIONS(7785), + [anon_sym_or] = ACTIONS(7783), + [anon_sym_and] = ACTIONS(7783), + [anon_sym_bitor] = ACTIONS(7785), + [anon_sym_xor] = ACTIONS(7783), + [anon_sym_bitand] = ACTIONS(7785), + [anon_sym_not_eq] = ACTIONS(7785), + [anon_sym_DASH_DASH] = ACTIONS(7785), + [anon_sym_PLUS_PLUS] = ACTIONS(7785), + [anon_sym_DOT] = ACTIONS(7783), + [anon_sym_DOT_STAR] = ACTIONS(7785), + [anon_sym_DASH_GT] = ACTIONS(7785), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7785), + [anon_sym_override] = ACTIONS(7785), + [anon_sym_requires] = ACTIONS(7785), + [anon_sym_COLON_RBRACK] = ACTIONS(7785), }, - [STATE(2326)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2222), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7251), - [anon_sym_COMMA] = ACTIONS(7251), - [anon_sym_RPAREN] = ACTIONS(7251), - [anon_sym_LPAREN2] = ACTIONS(7251), - [anon_sym_DASH] = ACTIONS(7249), - [anon_sym_PLUS] = ACTIONS(7249), - [anon_sym_STAR] = ACTIONS(7249), - [anon_sym_SLASH] = ACTIONS(7249), - [anon_sym_PERCENT] = ACTIONS(7249), - [anon_sym_PIPE_PIPE] = ACTIONS(7251), - [anon_sym_AMP_AMP] = ACTIONS(7251), - [anon_sym_PIPE] = ACTIONS(7249), - [anon_sym_CARET] = ACTIONS(7249), - [anon_sym_AMP] = ACTIONS(7249), - [anon_sym_EQ_EQ] = ACTIONS(7251), - [anon_sym_BANG_EQ] = ACTIONS(7251), - [anon_sym_GT] = ACTIONS(7249), - [anon_sym_GT_EQ] = ACTIONS(7251), - [anon_sym_LT_EQ] = ACTIONS(7249), - [anon_sym_LT] = ACTIONS(7249), - [anon_sym_LT_LT] = ACTIONS(7249), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym___extension__] = ACTIONS(7251), + [STATE(2255)] = { + [sym_attribute_specifier] = STATE(2470), + [sym_attribute_declaration] = STATE(5004), + [sym_type_qualifier] = STATE(2412), + [sym_alignas_qualifier] = STATE(2636), + [aux_sym_type_definition_repeat1] = STATE(2470), + [aux_sym__type_definition_type_repeat1] = STATE(2412), + [aux_sym_attributed_declarator_repeat1] = STATE(5004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), + [anon_sym_COMMA] = ACTIONS(6754), + [anon_sym_RPAREN] = ACTIONS(6754), + [anon_sym_LPAREN2] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6752), + [anon_sym_STAR] = ACTIONS(6752), + [anon_sym_SLASH] = ACTIONS(6752), + [anon_sym_PERCENT] = ACTIONS(6752), + [anon_sym_PIPE_PIPE] = ACTIONS(6754), + [anon_sym_AMP_AMP] = ACTIONS(6754), + [anon_sym_PIPE] = ACTIONS(6752), + [anon_sym_CARET] = ACTIONS(6752), + [anon_sym_AMP] = ACTIONS(6752), + [anon_sym_EQ_EQ] = ACTIONS(6754), + [anon_sym_BANG_EQ] = ACTIONS(6754), + [anon_sym_GT] = ACTIONS(6752), + [anon_sym_GT_EQ] = ACTIONS(6754), + [anon_sym_LT_EQ] = ACTIONS(6752), + [anon_sym_LT] = ACTIONS(6752), + [anon_sym_LT_LT] = ACTIONS(6752), + [anon_sym_GT_GT] = ACTIONS(6752), + [anon_sym___extension__] = ACTIONS(6762), + [anon_sym___attribute__] = ACTIONS(6754), + [anon_sym___attribute] = ACTIONS(6752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), + [anon_sym_LBRACK] = ACTIONS(6752), + [anon_sym_EQ] = ACTIONS(6752), + [anon_sym_const] = ACTIONS(6770), + [anon_sym_constexpr] = ACTIONS(6762), + [anon_sym_volatile] = ACTIONS(6762), + [anon_sym_restrict] = ACTIONS(6762), + [anon_sym___restrict__] = ACTIONS(6762), + [anon_sym__Atomic] = ACTIONS(6762), + [anon_sym__Noreturn] = ACTIONS(6762), + [anon_sym_noreturn] = ACTIONS(6762), + [anon_sym__Nonnull] = ACTIONS(6762), + [anon_sym_mutable] = ACTIONS(6762), + [anon_sym_constinit] = ACTIONS(6762), + [anon_sym_consteval] = ACTIONS(6762), + [anon_sym_alignas] = ACTIONS(6772), + [anon_sym__Alignas] = ACTIONS(6772), + [anon_sym_QMARK] = ACTIONS(6754), + [anon_sym_STAR_EQ] = ACTIONS(6754), + [anon_sym_SLASH_EQ] = ACTIONS(6754), + [anon_sym_PERCENT_EQ] = ACTIONS(6754), + [anon_sym_PLUS_EQ] = ACTIONS(6754), + [anon_sym_DASH_EQ] = ACTIONS(6754), + [anon_sym_LT_LT_EQ] = ACTIONS(6754), + [anon_sym_GT_GT_EQ] = ACTIONS(6754), + [anon_sym_AMP_EQ] = ACTIONS(6754), + [anon_sym_CARET_EQ] = ACTIONS(6754), + [anon_sym_PIPE_EQ] = ACTIONS(6754), + [anon_sym_LT_EQ_GT] = ACTIONS(6754), + [anon_sym_or] = ACTIONS(6754), + [anon_sym_and] = ACTIONS(6754), + [anon_sym_bitor] = ACTIONS(6754), + [anon_sym_xor] = ACTIONS(6754), + [anon_sym_bitand] = ACTIONS(6754), + [anon_sym_not_eq] = ACTIONS(6754), + [anon_sym_DASH_DASH] = ACTIONS(6754), + [anon_sym_PLUS_PLUS] = ACTIONS(6754), + [anon_sym_asm] = ACTIONS(6754), + [anon_sym___asm__] = ACTIONS(6754), + [anon_sym___asm] = ACTIONS(6752), + [anon_sym_DOT] = ACTIONS(6752), + [anon_sym_DOT_STAR] = ACTIONS(6754), + [anon_sym_DASH_GT] = ACTIONS(6752), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6754), + [anon_sym_override] = ACTIONS(6754), + [anon_sym_noexcept] = ACTIONS(6754), + [anon_sym_throw] = ACTIONS(6754), + [anon_sym_requires] = ACTIONS(6754), + [anon_sym_DASH_GT_STAR] = ACTIONS(6754), + }, + [STATE(2256)] = { + [sym__abstract_declarator] = STATE(4437), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2006), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1957), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), + [anon_sym_COMMA] = ACTIONS(7351), + [anon_sym_RPAREN] = ACTIONS(7351), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_PLUS] = ACTIONS(7349), + [anon_sym_STAR] = ACTIONS(6929), + [anon_sym_SLASH] = ACTIONS(7349), + [anon_sym_PERCENT] = ACTIONS(7349), + [anon_sym_PIPE_PIPE] = ACTIONS(7351), + [anon_sym_AMP_AMP] = ACTIONS(6931), + [anon_sym_PIPE] = ACTIONS(7349), + [anon_sym_CARET] = ACTIONS(7349), + [anon_sym_AMP] = ACTIONS(6933), + [anon_sym_EQ_EQ] = ACTIONS(7351), + [anon_sym_BANG_EQ] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7349), + [anon_sym_GT_EQ] = ACTIONS(7351), + [anon_sym_LT_EQ] = ACTIONS(7349), + [anon_sym_LT] = ACTIONS(7349), + [anon_sym_LT_LT] = ACTIONS(7349), + [anon_sym_GT_GT] = ACTIONS(7349), + [anon_sym_SEMI] = ACTIONS(7351), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym_COLON] = ACTIONS(7349), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7351), + [anon_sym_RBRACE] = ACTIONS(7351), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7349), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(7351), + [anon_sym_STAR_EQ] = ACTIONS(7351), + [anon_sym_SLASH_EQ] = ACTIONS(7351), + [anon_sym_PERCENT_EQ] = ACTIONS(7351), + [anon_sym_PLUS_EQ] = ACTIONS(7351), + [anon_sym_DASH_EQ] = ACTIONS(7351), + [anon_sym_LT_LT_EQ] = ACTIONS(7351), + [anon_sym_GT_GT_EQ] = ACTIONS(7351), + [anon_sym_AMP_EQ] = ACTIONS(7351), + [anon_sym_CARET_EQ] = ACTIONS(7351), + [anon_sym_PIPE_EQ] = ACTIONS(7351), + [anon_sym_and_eq] = ACTIONS(7351), + [anon_sym_or_eq] = ACTIONS(7351), + [anon_sym_xor_eq] = ACTIONS(7351), + [anon_sym_LT_EQ_GT] = ACTIONS(7351), + [anon_sym_or] = ACTIONS(7349), + [anon_sym_and] = ACTIONS(7349), + [anon_sym_bitor] = ACTIONS(7351), + [anon_sym_xor] = ACTIONS(7349), + [anon_sym_bitand] = ACTIONS(7351), + [anon_sym_not_eq] = ACTIONS(7351), + [anon_sym_DASH_DASH] = ACTIONS(7351), + [anon_sym_PLUS_PLUS] = ACTIONS(7351), + [anon_sym_DOT] = ACTIONS(7349), + [anon_sym_DOT_STAR] = ACTIONS(7351), + [anon_sym_DASH_GT] = ACTIONS(7351), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7351), + }, + [STATE(2257)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym_ref_qualifier] = STATE(2293), + [sym__function_exception_specification] = STATE(2537), + [sym__function_attributes_end] = STATE(3904), + [sym__function_postfix] = STATE(3628), + [sym_trailing_return_type] = STATE(3071), + [sym_noexcept] = STATE(2537), + [sym_throw_specifier] = STATE(2537), + [sym_requires_clause] = STATE(3628), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7793), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7796), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym_SEMI] = ACTIONS(7791), + [anon_sym___attribute__] = ACTIONS(6534), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_COLON] = ACTIONS(7789), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), + [anon_sym_RBRACE] = ACTIONS(7791), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(7849), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6561), + [anon_sym_override] = ACTIONS(6561), + [anon_sym_noexcept] = ACTIONS(6546), + [anon_sym_throw] = ACTIONS(6548), + [anon_sym_requires] = ACTIONS(6563), + [anon_sym_COLON_RBRACK] = ACTIONS(7791), + }, + [STATE(2258)] = { + [sym_type_qualifier] = STATE(2305), + [sym_alignas_qualifier] = STATE(2434), + [aux_sym__type_definition_type_repeat1] = STATE(2305), + [aux_sym_sized_type_specifier_repeat1] = STATE(2217), + [sym_identifier] = ACTIONS(7852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), + [anon_sym_COMMA] = ACTIONS(7205), + [anon_sym_LPAREN2] = ACTIONS(7205), + [anon_sym_DASH] = ACTIONS(7207), + [anon_sym_PLUS] = ACTIONS(7207), + [anon_sym_STAR] = ACTIONS(7207), + [anon_sym_SLASH] = ACTIONS(7207), + [anon_sym_PERCENT] = ACTIONS(7207), + [anon_sym_PIPE_PIPE] = ACTIONS(7205), + [anon_sym_AMP_AMP] = ACTIONS(7205), + [anon_sym_PIPE] = ACTIONS(7207), + [anon_sym_CARET] = ACTIONS(7207), + [anon_sym_AMP] = ACTIONS(7207), + [anon_sym_EQ_EQ] = ACTIONS(7205), + [anon_sym_BANG_EQ] = ACTIONS(7205), + [anon_sym_GT] = ACTIONS(7207), + [anon_sym_GT_EQ] = ACTIONS(7205), + [anon_sym_LT_EQ] = ACTIONS(7207), + [anon_sym_LT] = ACTIONS(7207), + [anon_sym_LT_LT] = ACTIONS(7207), + [anon_sym_GT_GT] = ACTIONS(7207), + [anon_sym___extension__] = ACTIONS(7854), + [anon_sym___attribute__] = ACTIONS(7207), + [anon_sym___attribute] = ACTIONS(7207), + [anon_sym_LBRACE] = ACTIONS(7205), + [anon_sym_signed] = ACTIONS(7337), + [anon_sym_unsigned] = ACTIONS(7337), + [anon_sym_long] = ACTIONS(7337), + [anon_sym_short] = ACTIONS(7337), + [anon_sym_LBRACK] = ACTIONS(7205), + [anon_sym_RBRACK] = ACTIONS(7205), + [anon_sym_EQ] = ACTIONS(7207), + [anon_sym_const] = ACTIONS(7854), + [anon_sym_constexpr] = ACTIONS(7854), + [anon_sym_volatile] = ACTIONS(7854), + [anon_sym_restrict] = ACTIONS(7854), + [anon_sym___restrict__] = ACTIONS(7854), + [anon_sym__Atomic] = ACTIONS(7854), + [anon_sym__Noreturn] = ACTIONS(7854), + [anon_sym_noreturn] = ACTIONS(7854), + [anon_sym__Nonnull] = ACTIONS(7854), + [anon_sym_mutable] = ACTIONS(7854), + [anon_sym_constinit] = ACTIONS(7854), + [anon_sym_consteval] = ACTIONS(7854), + [anon_sym_alignas] = ACTIONS(7857), + [anon_sym__Alignas] = ACTIONS(7857), + [sym_primitive_type] = ACTIONS(7339), + [anon_sym_QMARK] = ACTIONS(7205), + [anon_sym_STAR_EQ] = ACTIONS(7205), + [anon_sym_SLASH_EQ] = ACTIONS(7205), + [anon_sym_PERCENT_EQ] = ACTIONS(7205), + [anon_sym_PLUS_EQ] = ACTIONS(7205), + [anon_sym_DASH_EQ] = ACTIONS(7205), + [anon_sym_LT_LT_EQ] = ACTIONS(7205), + [anon_sym_GT_GT_EQ] = ACTIONS(7205), + [anon_sym_AMP_EQ] = ACTIONS(7205), + [anon_sym_CARET_EQ] = ACTIONS(7205), + [anon_sym_PIPE_EQ] = ACTIONS(7205), + [anon_sym_and_eq] = ACTIONS(7207), + [anon_sym_or_eq] = ACTIONS(7207), + [anon_sym_xor_eq] = ACTIONS(7207), + [anon_sym_LT_EQ_GT] = ACTIONS(7205), + [anon_sym_or] = ACTIONS(7207), + [anon_sym_and] = ACTIONS(7207), + [anon_sym_bitor] = ACTIONS(7207), + [anon_sym_xor] = ACTIONS(7207), + [anon_sym_bitand] = ACTIONS(7207), + [anon_sym_not_eq] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7205), + [anon_sym_PLUS_PLUS] = ACTIONS(7205), + [anon_sym_DOT] = ACTIONS(7207), + [anon_sym_DOT_STAR] = ACTIONS(7205), + [anon_sym_DASH_GT] = ACTIONS(7205), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7207), + [anon_sym_override] = ACTIONS(7207), + [anon_sym_requires] = ACTIONS(7207), + }, + [STATE(2259)] = { + [sym__abstract_declarator] = STATE(4537), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2260), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1976), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2260), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), + [anon_sym_COMMA] = ACTIONS(7391), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7393), + [anon_sym_PLUS] = ACTIONS(7393), + [anon_sym_STAR] = ACTIONS(6923), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_PERCENT] = ACTIONS(7393), + [anon_sym_PIPE_PIPE] = ACTIONS(7391), + [anon_sym_AMP_AMP] = ACTIONS(6925), + [anon_sym_PIPE] = ACTIONS(7393), + [anon_sym_CARET] = ACTIONS(7393), + [anon_sym_AMP] = ACTIONS(6927), + [anon_sym_EQ_EQ] = ACTIONS(7391), + [anon_sym_BANG_EQ] = ACTIONS(7391), + [anon_sym_GT] = ACTIONS(7393), + [anon_sym_GT_EQ] = ACTIONS(7391), + [anon_sym_LT_EQ] = ACTIONS(7393), + [anon_sym_LT] = ACTIONS(7393), + [anon_sym_LT_LT] = ACTIONS(7393), + [anon_sym_GT_GT] = ACTIONS(7393), + [anon_sym_SEMI] = ACTIONS(7391), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym___attribute__] = ACTIONS(7391), + [anon_sym___attribute] = ACTIONS(7393), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7393), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(7391), + [anon_sym_STAR_EQ] = ACTIONS(7391), + [anon_sym_SLASH_EQ] = ACTIONS(7391), + [anon_sym_PERCENT_EQ] = ACTIONS(7391), + [anon_sym_PLUS_EQ] = ACTIONS(7391), + [anon_sym_DASH_EQ] = ACTIONS(7391), + [anon_sym_LT_LT_EQ] = ACTIONS(7391), + [anon_sym_GT_GT_EQ] = ACTIONS(7391), + [anon_sym_AMP_EQ] = ACTIONS(7391), + [anon_sym_CARET_EQ] = ACTIONS(7391), + [anon_sym_PIPE_EQ] = ACTIONS(7391), + [anon_sym_and_eq] = ACTIONS(7391), + [anon_sym_or_eq] = ACTIONS(7391), + [anon_sym_xor_eq] = ACTIONS(7391), + [anon_sym_LT_EQ_GT] = ACTIONS(7391), + [anon_sym_or] = ACTIONS(7393), + [anon_sym_and] = ACTIONS(7393), + [anon_sym_bitor] = ACTIONS(7391), + [anon_sym_xor] = ACTIONS(7393), + [anon_sym_bitand] = ACTIONS(7391), + [anon_sym_not_eq] = ACTIONS(7391), + [anon_sym_DASH_DASH] = ACTIONS(7391), + [anon_sym_PLUS_PLUS] = ACTIONS(7391), + [anon_sym_DOT] = ACTIONS(7393), + [anon_sym_DOT_STAR] = ACTIONS(7391), + [anon_sym_DASH_GT] = ACTIONS(7391), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7391), + [anon_sym_override] = ACTIONS(7391), + [anon_sym_requires] = ACTIONS(7391), + }, + [STATE(2260)] = { + [sym__abstract_declarator] = STATE(4541), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2006), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1976), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), + [anon_sym_COMMA] = ACTIONS(7351), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_PLUS] = ACTIONS(7349), + [anon_sym_STAR] = ACTIONS(6923), + [anon_sym_SLASH] = ACTIONS(7349), + [anon_sym_PERCENT] = ACTIONS(7349), + [anon_sym_PIPE_PIPE] = ACTIONS(7351), + [anon_sym_AMP_AMP] = ACTIONS(6925), + [anon_sym_PIPE] = ACTIONS(7349), + [anon_sym_CARET] = ACTIONS(7349), + [anon_sym_AMP] = ACTIONS(6927), + [anon_sym_EQ_EQ] = ACTIONS(7351), + [anon_sym_BANG_EQ] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7349), + [anon_sym_GT_EQ] = ACTIONS(7351), + [anon_sym_LT_EQ] = ACTIONS(7349), + [anon_sym_LT] = ACTIONS(7349), + [anon_sym_LT_LT] = ACTIONS(7349), + [anon_sym_GT_GT] = ACTIONS(7349), + [anon_sym_SEMI] = ACTIONS(7351), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym___attribute__] = ACTIONS(7351), + [anon_sym___attribute] = ACTIONS(7349), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7349), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(7351), + [anon_sym_STAR_EQ] = ACTIONS(7351), + [anon_sym_SLASH_EQ] = ACTIONS(7351), + [anon_sym_PERCENT_EQ] = ACTIONS(7351), + [anon_sym_PLUS_EQ] = ACTIONS(7351), + [anon_sym_DASH_EQ] = ACTIONS(7351), + [anon_sym_LT_LT_EQ] = ACTIONS(7351), + [anon_sym_GT_GT_EQ] = ACTIONS(7351), + [anon_sym_AMP_EQ] = ACTIONS(7351), + [anon_sym_CARET_EQ] = ACTIONS(7351), + [anon_sym_PIPE_EQ] = ACTIONS(7351), + [anon_sym_and_eq] = ACTIONS(7351), + [anon_sym_or_eq] = ACTIONS(7351), + [anon_sym_xor_eq] = ACTIONS(7351), + [anon_sym_LT_EQ_GT] = ACTIONS(7351), + [anon_sym_or] = ACTIONS(7349), + [anon_sym_and] = ACTIONS(7349), + [anon_sym_bitor] = ACTIONS(7351), + [anon_sym_xor] = ACTIONS(7349), + [anon_sym_bitand] = ACTIONS(7351), + [anon_sym_not_eq] = ACTIONS(7351), + [anon_sym_DASH_DASH] = ACTIONS(7351), + [anon_sym_PLUS_PLUS] = ACTIONS(7351), + [anon_sym_DOT] = ACTIONS(7349), + [anon_sym_DOT_STAR] = ACTIONS(7351), + [anon_sym_DASH_GT] = ACTIONS(7351), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7351), + [anon_sym_override] = ACTIONS(7351), + [anon_sym_requires] = ACTIONS(7351), + }, + [STATE(2261)] = { + [sym__abstract_declarator] = STATE(4542), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2240), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1976), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(6923), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(6925), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(6927), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym_SEMI] = ACTIONS(7343), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym___attribute__] = ACTIONS(7343), + [anon_sym___attribute] = ACTIONS(7341), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7341), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_STAR_EQ] = ACTIONS(7343), + [anon_sym_SLASH_EQ] = ACTIONS(7343), + [anon_sym_PERCENT_EQ] = ACTIONS(7343), + [anon_sym_PLUS_EQ] = ACTIONS(7343), + [anon_sym_DASH_EQ] = ACTIONS(7343), + [anon_sym_LT_LT_EQ] = ACTIONS(7343), + [anon_sym_GT_GT_EQ] = ACTIONS(7343), + [anon_sym_AMP_EQ] = ACTIONS(7343), + [anon_sym_CARET_EQ] = ACTIONS(7343), + [anon_sym_PIPE_EQ] = ACTIONS(7343), + [anon_sym_and_eq] = ACTIONS(7343), + [anon_sym_or_eq] = ACTIONS(7343), + [anon_sym_xor_eq] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7343), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7343), + [anon_sym_override] = ACTIONS(7343), + [anon_sym_requires] = ACTIONS(7343), + }, + [STATE(2262)] = { + [sym__abstract_declarator] = STATE(4478), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2006), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1976), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(6923), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(6925), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(6927), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym_SEMI] = ACTIONS(6823), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym___attribute__] = ACTIONS(6823), + [anon_sym___attribute] = ACTIONS(6821), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6823), + [anon_sym_or_eq] = ACTIONS(6823), + [anon_sym_xor_eq] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6823), + [anon_sym_override] = ACTIONS(6823), + [anon_sym_requires] = ACTIONS(6823), + }, + [STATE(2263)] = { + [sym_type_qualifier] = STATE(2258), + [sym_alignas_qualifier] = STATE(2434), + [aux_sym__type_definition_type_repeat1] = STATE(2258), + [aux_sym_sized_type_specifier_repeat1] = STATE(2387), + [sym_identifier] = ACTIONS(7860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), + [anon_sym_COMMA] = ACTIONS(7249), + [anon_sym_LPAREN2] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7251), + [anon_sym_PLUS] = ACTIONS(7251), + [anon_sym_STAR] = ACTIONS(7251), + [anon_sym_SLASH] = ACTIONS(7251), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7249), + [anon_sym_PIPE] = ACTIONS(7251), + [anon_sym_CARET] = ACTIONS(7251), + [anon_sym_AMP] = ACTIONS(7251), + [anon_sym_EQ_EQ] = ACTIONS(7249), + [anon_sym_BANG_EQ] = ACTIONS(7249), + [anon_sym_GT] = ACTIONS(7251), + [anon_sym_GT_EQ] = ACTIONS(7249), + [anon_sym_LT_EQ] = ACTIONS(7251), + [anon_sym_LT] = ACTIONS(7251), + [anon_sym_LT_LT] = ACTIONS(7251), + [anon_sym_GT_GT] = ACTIONS(7251), + [anon_sym___extension__] = ACTIONS(7862), [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7249), - [anon_sym_LBRACE] = ACTIONS(7251), - [anon_sym_signed] = ACTIONS(7788), - [anon_sym_unsigned] = ACTIONS(7788), - [anon_sym_long] = ACTIONS(7788), - [anon_sym_short] = ACTIONS(7788), - [anon_sym_LBRACK] = ACTIONS(7251), - [anon_sym_EQ] = ACTIONS(7249), - [anon_sym_const] = ACTIONS(7249), - [anon_sym_constexpr] = ACTIONS(7251), - [anon_sym_volatile] = ACTIONS(7251), - [anon_sym_restrict] = ACTIONS(7251), - [anon_sym___restrict__] = ACTIONS(7251), - [anon_sym__Atomic] = ACTIONS(7251), - [anon_sym__Noreturn] = ACTIONS(7251), - [anon_sym_noreturn] = ACTIONS(7251), - [anon_sym__Nonnull] = ACTIONS(7251), - [anon_sym_mutable] = ACTIONS(7251), - [anon_sym_constinit] = ACTIONS(7251), - [anon_sym_consteval] = ACTIONS(7251), - [anon_sym_alignas] = ACTIONS(7251), - [anon_sym__Alignas] = ACTIONS(7251), - [anon_sym_QMARK] = ACTIONS(7251), - [anon_sym_STAR_EQ] = ACTIONS(7251), - [anon_sym_SLASH_EQ] = ACTIONS(7251), - [anon_sym_PERCENT_EQ] = ACTIONS(7251), - [anon_sym_PLUS_EQ] = ACTIONS(7251), - [anon_sym_DASH_EQ] = ACTIONS(7251), - [anon_sym_LT_LT_EQ] = ACTIONS(7251), - [anon_sym_GT_GT_EQ] = ACTIONS(7251), - [anon_sym_AMP_EQ] = ACTIONS(7251), - [anon_sym_CARET_EQ] = ACTIONS(7251), - [anon_sym_PIPE_EQ] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7251), + [anon_sym_LBRACE] = ACTIONS(7249), + [anon_sym_signed] = ACTIONS(7865), + [anon_sym_unsigned] = ACTIONS(7865), + [anon_sym_long] = ACTIONS(7865), + [anon_sym_short] = ACTIONS(7865), + [anon_sym_LBRACK] = ACTIONS(7249), + [anon_sym_RBRACK] = ACTIONS(7249), + [anon_sym_EQ] = ACTIONS(7251), + [anon_sym_const] = ACTIONS(7862), + [anon_sym_constexpr] = ACTIONS(7862), + [anon_sym_volatile] = ACTIONS(7862), + [anon_sym_restrict] = ACTIONS(7862), + [anon_sym___restrict__] = ACTIONS(7862), + [anon_sym__Atomic] = ACTIONS(7862), + [anon_sym__Noreturn] = ACTIONS(7862), + [anon_sym_noreturn] = ACTIONS(7862), + [anon_sym__Nonnull] = ACTIONS(7862), + [anon_sym_mutable] = ACTIONS(7862), + [anon_sym_constinit] = ACTIONS(7862), + [anon_sym_consteval] = ACTIONS(7862), + [anon_sym_alignas] = ACTIONS(7867), + [anon_sym__Alignas] = ACTIONS(7867), + [sym_primitive_type] = ACTIONS(7332), + [anon_sym_QMARK] = ACTIONS(7249), + [anon_sym_STAR_EQ] = ACTIONS(7249), + [anon_sym_SLASH_EQ] = ACTIONS(7249), + [anon_sym_PERCENT_EQ] = ACTIONS(7249), + [anon_sym_PLUS_EQ] = ACTIONS(7249), + [anon_sym_DASH_EQ] = ACTIONS(7249), + [anon_sym_LT_LT_EQ] = ACTIONS(7249), + [anon_sym_GT_GT_EQ] = ACTIONS(7249), + [anon_sym_AMP_EQ] = ACTIONS(7249), + [anon_sym_CARET_EQ] = ACTIONS(7249), + [anon_sym_PIPE_EQ] = ACTIONS(7249), [anon_sym_and_eq] = ACTIONS(7251), [anon_sym_or_eq] = ACTIONS(7251), [anon_sym_xor_eq] = ACTIONS(7251), - [anon_sym_LT_EQ_GT] = ACTIONS(7251), - [anon_sym_or] = ACTIONS(7249), - [anon_sym_and] = ACTIONS(7249), + [anon_sym_LT_EQ_GT] = ACTIONS(7249), + [anon_sym_or] = ACTIONS(7251), + [anon_sym_and] = ACTIONS(7251), [anon_sym_bitor] = ACTIONS(7251), - [anon_sym_xor] = ACTIONS(7249), + [anon_sym_xor] = ACTIONS(7251), [anon_sym_bitand] = ACTIONS(7251), [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7251), - [anon_sym_PLUS_PLUS] = ACTIONS(7251), - [anon_sym_DOT] = ACTIONS(7249), - [anon_sym_DOT_STAR] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7249), + [anon_sym_PLUS_PLUS] = ACTIONS(7249), + [anon_sym_DOT] = ACTIONS(7251), + [anon_sym_DOT_STAR] = ACTIONS(7249), [anon_sym_DASH_GT] = ACTIONS(7249), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7251), [anon_sym_override] = ACTIONS(7251), [anon_sym_requires] = ACTIONS(7251), - [anon_sym_DASH_GT_STAR] = ACTIONS(7251), }, - [STATE(2327)] = { - [sym_type_qualifier] = STATE(2291), - [sym_alignas_qualifier] = STATE(2498), - [aux_sym__type_definition_type_repeat1] = STATE(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6523), - [anon_sym_COMMA] = ACTIONS(6523), - [anon_sym_RPAREN] = ACTIONS(6523), - [anon_sym_LPAREN2] = ACTIONS(6523), - [anon_sym_DASH] = ACTIONS(6521), - [anon_sym_PLUS] = ACTIONS(6521), - [anon_sym_STAR] = ACTIONS(6521), - [anon_sym_SLASH] = ACTIONS(6521), - [anon_sym_PERCENT] = ACTIONS(6521), - [anon_sym_PIPE_PIPE] = ACTIONS(6523), - [anon_sym_AMP_AMP] = ACTIONS(6523), - [anon_sym_PIPE] = ACTIONS(6521), - [anon_sym_CARET] = ACTIONS(6521), - [anon_sym_AMP] = ACTIONS(6521), - [anon_sym_EQ_EQ] = ACTIONS(6523), - [anon_sym_BANG_EQ] = ACTIONS(6523), - [anon_sym_GT] = ACTIONS(6521), - [anon_sym_GT_EQ] = ACTIONS(6523), - [anon_sym_LT_EQ] = ACTIONS(6521), - [anon_sym_LT] = ACTIONS(6521), - [anon_sym_LT_LT] = ACTIONS(6521), - [anon_sym_GT_GT] = ACTIONS(6521), - [anon_sym___extension__] = ACTIONS(6408), - [anon_sym___attribute__] = ACTIONS(6523), - [anon_sym___attribute] = ACTIONS(6521), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6523), - [anon_sym_LBRACK] = ACTIONS(6521), - [anon_sym_EQ] = ACTIONS(6521), - [anon_sym_const] = ACTIONS(6416), - [anon_sym_constexpr] = ACTIONS(6408), - [anon_sym_volatile] = ACTIONS(6408), - [anon_sym_restrict] = ACTIONS(6408), - [anon_sym___restrict__] = ACTIONS(6408), - [anon_sym__Atomic] = ACTIONS(6408), - [anon_sym__Noreturn] = ACTIONS(6408), - [anon_sym_noreturn] = ACTIONS(6408), - [anon_sym__Nonnull] = ACTIONS(6408), - [anon_sym_mutable] = ACTIONS(6408), - [anon_sym_constinit] = ACTIONS(6408), - [anon_sym_consteval] = ACTIONS(6408), - [anon_sym_alignas] = ACTIONS(6418), - [anon_sym__Alignas] = ACTIONS(6418), - [anon_sym_QMARK] = ACTIONS(6523), - [anon_sym_STAR_EQ] = ACTIONS(6523), - [anon_sym_SLASH_EQ] = ACTIONS(6523), - [anon_sym_PERCENT_EQ] = ACTIONS(6523), - [anon_sym_PLUS_EQ] = ACTIONS(6523), - [anon_sym_DASH_EQ] = ACTIONS(6523), - [anon_sym_LT_LT_EQ] = ACTIONS(6523), - [anon_sym_GT_GT_EQ] = ACTIONS(6523), - [anon_sym_AMP_EQ] = ACTIONS(6523), - [anon_sym_CARET_EQ] = ACTIONS(6523), - [anon_sym_PIPE_EQ] = ACTIONS(6523), - [anon_sym_LT_EQ_GT] = ACTIONS(6523), - [anon_sym_or] = ACTIONS(6523), - [anon_sym_and] = ACTIONS(6523), - [anon_sym_bitor] = ACTIONS(6523), - [anon_sym_xor] = ACTIONS(6523), - [anon_sym_bitand] = ACTIONS(6523), - [anon_sym_not_eq] = ACTIONS(6523), - [anon_sym_DASH_DASH] = ACTIONS(6523), - [anon_sym_PLUS_PLUS] = ACTIONS(6523), - [anon_sym_asm] = ACTIONS(6523), - [anon_sym___asm__] = ACTIONS(6523), - [anon_sym___asm] = ACTIONS(6521), - [anon_sym_DOT] = ACTIONS(6521), - [anon_sym_DOT_STAR] = ACTIONS(6523), - [anon_sym_DASH_GT] = ACTIONS(6521), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6523), - [anon_sym_override] = ACTIONS(6523), - [anon_sym_noexcept] = ACTIONS(6523), - [anon_sym_throw] = ACTIONS(6523), - [anon_sym_requires] = ACTIONS(6523), - [anon_sym_DASH_GT_STAR] = ACTIONS(6523), + [STATE(2264)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym_ref_qualifier] = STATE(2291), + [sym__function_exception_specification] = STATE(2561), + [sym__function_attributes_end] = STATE(3891), + [sym__function_postfix] = STATE(3628), + [sym_trailing_return_type] = STATE(3075), + [sym_noexcept] = STATE(2561), + [sym_throw_specifier] = STATE(2561), + [sym_requires_clause] = STATE(3628), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7793), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7796), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym_SEMI] = ACTIONS(7791), + [anon_sym___attribute__] = ACTIONS(6534), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_COLON] = ACTIONS(7789), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), + [anon_sym_RBRACE] = ACTIONS(7791), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(7849), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7870), + [anon_sym_override] = ACTIONS(7870), + [anon_sym_noexcept] = ACTIONS(6546), + [anon_sym_throw] = ACTIONS(6548), + [anon_sym_requires] = ACTIONS(7873), + [anon_sym_COLON_RBRACK] = ACTIONS(7791), }, - [STATE(2328)] = { - [sym_decltype_auto] = STATE(3388), - [sym_template_argument_list] = STATE(2525), - [aux_sym_sized_type_specifier_repeat1] = STATE(2505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5258), - [anon_sym_COMMA] = ACTIONS(5258), - [anon_sym_RPAREN] = ACTIONS(5258), - [anon_sym_LPAREN2] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5251), - [anon_sym_PLUS] = ACTIONS(5251), - [anon_sym_STAR] = ACTIONS(5251), - [anon_sym_SLASH] = ACTIONS(5251), - [anon_sym_PERCENT] = ACTIONS(5251), - [anon_sym_PIPE_PIPE] = ACTIONS(5258), - [anon_sym_AMP_AMP] = ACTIONS(5258), - [anon_sym_PIPE] = ACTIONS(5251), - [anon_sym_CARET] = ACTIONS(5251), - [anon_sym_AMP] = ACTIONS(5251), - [anon_sym_EQ_EQ] = ACTIONS(5258), - [anon_sym_BANG_EQ] = ACTIONS(5258), - [anon_sym_GT] = ACTIONS(5251), - [anon_sym_GT_EQ] = ACTIONS(5258), - [anon_sym_LT_EQ] = ACTIONS(5251), - [anon_sym_LT] = ACTIONS(7854), - [anon_sym_LT_LT] = ACTIONS(5251), - [anon_sym_GT_GT] = ACTIONS(5251), - [anon_sym___extension__] = ACTIONS(5258), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5258), - [anon_sym_signed] = ACTIONS(6586), - [anon_sym_unsigned] = ACTIONS(6586), - [anon_sym_long] = ACTIONS(6586), - [anon_sym_short] = ACTIONS(6586), - [anon_sym_LBRACK] = ACTIONS(5258), - [anon_sym_EQ] = ACTIONS(5251), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5258), - [anon_sym_volatile] = ACTIONS(5258), - [anon_sym_restrict] = ACTIONS(5258), - [anon_sym___restrict__] = ACTIONS(5258), - [anon_sym__Atomic] = ACTIONS(5258), - [anon_sym__Noreturn] = ACTIONS(5258), - [anon_sym_noreturn] = ACTIONS(5258), - [anon_sym__Nonnull] = ACTIONS(5258), - [anon_sym_mutable] = ACTIONS(5258), - [anon_sym_constinit] = ACTIONS(5258), - [anon_sym_consteval] = ACTIONS(5258), - [anon_sym_alignas] = ACTIONS(5258), - [anon_sym__Alignas] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5258), - [anon_sym_STAR_EQ] = ACTIONS(5258), - [anon_sym_SLASH_EQ] = ACTIONS(5258), - [anon_sym_PERCENT_EQ] = ACTIONS(5258), - [anon_sym_PLUS_EQ] = ACTIONS(5258), - [anon_sym_DASH_EQ] = ACTIONS(5258), - [anon_sym_LT_LT_EQ] = ACTIONS(5258), - [anon_sym_GT_GT_EQ] = ACTIONS(5258), - [anon_sym_AMP_EQ] = ACTIONS(5258), - [anon_sym_CARET_EQ] = ACTIONS(5258), - [anon_sym_PIPE_EQ] = ACTIONS(5258), - [anon_sym_LT_EQ_GT] = ACTIONS(5258), - [anon_sym_or] = ACTIONS(5258), - [anon_sym_and] = ACTIONS(5258), - [anon_sym_bitor] = ACTIONS(5258), - [anon_sym_xor] = ACTIONS(5258), - [anon_sym_bitand] = ACTIONS(5258), - [anon_sym_not_eq] = ACTIONS(5258), - [anon_sym_DASH_DASH] = ACTIONS(5258), - [anon_sym_PLUS_PLUS] = ACTIONS(5258), - [anon_sym_DOT] = ACTIONS(5251), - [anon_sym_DOT_STAR] = ACTIONS(5258), - [anon_sym_DASH_GT] = ACTIONS(5251), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6590), - [anon_sym_decltype] = ACTIONS(6592), - [anon_sym_final] = ACTIONS(5258), - [anon_sym_override] = ACTIONS(5258), - [anon_sym_requires] = ACTIONS(5258), - [anon_sym_DASH_GT_STAR] = ACTIONS(5258), + [STATE(2265)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7695), + [anon_sym_COMMA] = ACTIONS(7695), + [anon_sym_RPAREN] = ACTIONS(7695), + [anon_sym_LPAREN2] = ACTIONS(7695), + [anon_sym_DASH] = ACTIONS(7693), + [anon_sym_PLUS] = ACTIONS(7693), + [anon_sym_STAR] = ACTIONS(7693), + [anon_sym_SLASH] = ACTIONS(7693), + [anon_sym_PERCENT] = ACTIONS(7693), + [anon_sym_PIPE_PIPE] = ACTIONS(7695), + [anon_sym_AMP_AMP] = ACTIONS(7695), + [anon_sym_PIPE] = ACTIONS(7693), + [anon_sym_CARET] = ACTIONS(7693), + [anon_sym_AMP] = ACTIONS(7693), + [anon_sym_EQ_EQ] = ACTIONS(7695), + [anon_sym_BANG_EQ] = ACTIONS(7695), + [anon_sym_GT] = ACTIONS(7693), + [anon_sym_GT_EQ] = ACTIONS(7695), + [anon_sym_LT_EQ] = ACTIONS(7693), + [anon_sym_LT] = ACTIONS(7693), + [anon_sym_LT_LT] = ACTIONS(7693), + [anon_sym_GT_GT] = ACTIONS(7693), + [anon_sym_SEMI] = ACTIONS(7695), + [anon_sym___extension__] = ACTIONS(7695), + [anon_sym___attribute__] = ACTIONS(7695), + [anon_sym___attribute] = ACTIONS(7693), + [anon_sym_COLON] = ACTIONS(7693), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7695), + [anon_sym_LBRACE] = ACTIONS(7695), + [anon_sym_RBRACE] = ACTIONS(7695), + [anon_sym_signed] = ACTIONS(7845), + [anon_sym_unsigned] = ACTIONS(7845), + [anon_sym_long] = ACTIONS(7845), + [anon_sym_short] = ACTIONS(7845), + [anon_sym_LBRACK] = ACTIONS(7695), + [anon_sym_EQ] = ACTIONS(7693), + [anon_sym_const] = ACTIONS(7693), + [anon_sym_constexpr] = ACTIONS(7695), + [anon_sym_volatile] = ACTIONS(7695), + [anon_sym_restrict] = ACTIONS(7695), + [anon_sym___restrict__] = ACTIONS(7695), + [anon_sym__Atomic] = ACTIONS(7695), + [anon_sym__Noreturn] = ACTIONS(7695), + [anon_sym_noreturn] = ACTIONS(7695), + [anon_sym__Nonnull] = ACTIONS(7695), + [anon_sym_mutable] = ACTIONS(7695), + [anon_sym_constinit] = ACTIONS(7695), + [anon_sym_consteval] = ACTIONS(7695), + [anon_sym_alignas] = ACTIONS(7695), + [anon_sym__Alignas] = ACTIONS(7695), + [anon_sym_QMARK] = ACTIONS(7695), + [anon_sym_STAR_EQ] = ACTIONS(7695), + [anon_sym_SLASH_EQ] = ACTIONS(7695), + [anon_sym_PERCENT_EQ] = ACTIONS(7695), + [anon_sym_PLUS_EQ] = ACTIONS(7695), + [anon_sym_DASH_EQ] = ACTIONS(7695), + [anon_sym_LT_LT_EQ] = ACTIONS(7695), + [anon_sym_GT_GT_EQ] = ACTIONS(7695), + [anon_sym_AMP_EQ] = ACTIONS(7695), + [anon_sym_CARET_EQ] = ACTIONS(7695), + [anon_sym_PIPE_EQ] = ACTIONS(7695), + [anon_sym_and_eq] = ACTIONS(7695), + [anon_sym_or_eq] = ACTIONS(7695), + [anon_sym_xor_eq] = ACTIONS(7695), + [anon_sym_LT_EQ_GT] = ACTIONS(7695), + [anon_sym_or] = ACTIONS(7693), + [anon_sym_and] = ACTIONS(7693), + [anon_sym_bitor] = ACTIONS(7695), + [anon_sym_xor] = ACTIONS(7693), + [anon_sym_bitand] = ACTIONS(7695), + [anon_sym_not_eq] = ACTIONS(7695), + [anon_sym_DASH_DASH] = ACTIONS(7695), + [anon_sym_PLUS_PLUS] = ACTIONS(7695), + [anon_sym_DOT] = ACTIONS(7693), + [anon_sym_DOT_STAR] = ACTIONS(7695), + [anon_sym_DASH_GT] = ACTIONS(7695), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7695), + [anon_sym_override] = ACTIONS(7695), + [anon_sym_requires] = ACTIONS(7695), + [anon_sym_COLON_RBRACK] = ACTIONS(7695), }, - [STATE(2329)] = { - [sym_identifier] = ACTIONS(7856), - [anon_sym_LPAREN2] = ACTIONS(7858), - [anon_sym_BANG] = ACTIONS(7858), - [anon_sym_TILDE] = ACTIONS(7858), - [anon_sym_DASH] = ACTIONS(7856), - [anon_sym_PLUS] = ACTIONS(7856), - [anon_sym_STAR] = ACTIONS(7858), - [anon_sym_AMP] = ACTIONS(7858), - [anon_sym_SEMI] = ACTIONS(7858), - [anon_sym___extension__] = ACTIONS(7856), - [anon_sym_COLON_COLON] = ACTIONS(7858), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7858), - [anon_sym_LBRACE] = ACTIONS(7858), - [anon_sym_LBRACK] = ACTIONS(7856), - [sym_primitive_type] = ACTIONS(7856), - [anon_sym_if] = ACTIONS(7856), - [anon_sym_switch] = ACTIONS(7856), - [anon_sym_case] = ACTIONS(7856), - [anon_sym_default] = ACTIONS(7856), - [anon_sym_while] = ACTIONS(7856), - [anon_sym_do] = ACTIONS(7856), - [anon_sym_for] = ACTIONS(7856), - [anon_sym_return] = ACTIONS(7856), - [anon_sym_break] = ACTIONS(7856), - [anon_sym_continue] = ACTIONS(7856), - [anon_sym_goto] = ACTIONS(7856), - [anon_sym___try] = ACTIONS(7856), - [anon_sym___leave] = ACTIONS(7856), - [anon_sym_not] = ACTIONS(7856), - [anon_sym_compl] = ACTIONS(7856), - [anon_sym_DASH_DASH] = ACTIONS(7858), - [anon_sym_PLUS_PLUS] = ACTIONS(7858), - [anon_sym_sizeof] = ACTIONS(7856), - [anon_sym___alignof__] = ACTIONS(7856), - [anon_sym___alignof] = ACTIONS(7856), - [anon_sym__alignof] = ACTIONS(7856), - [anon_sym_alignof] = ACTIONS(7856), - [anon_sym__Alignof] = ACTIONS(7856), - [anon_sym_offsetof] = ACTIONS(7856), - [anon_sym__Generic] = ACTIONS(7856), - [anon_sym_typename] = ACTIONS(7856), - [anon_sym_asm] = ACTIONS(7856), - [anon_sym___asm__] = ACTIONS(7856), - [anon_sym___asm] = ACTIONS(7856), - [sym_number_literal] = ACTIONS(7858), - [anon_sym_L_SQUOTE] = ACTIONS(7858), - [anon_sym_u_SQUOTE] = ACTIONS(7858), - [anon_sym_U_SQUOTE] = ACTIONS(7858), - [anon_sym_u8_SQUOTE] = ACTIONS(7858), - [anon_sym_SQUOTE] = ACTIONS(7858), - [anon_sym_L_DQUOTE] = ACTIONS(7858), - [anon_sym_u_DQUOTE] = ACTIONS(7858), - [anon_sym_U_DQUOTE] = ACTIONS(7858), - [anon_sym_u8_DQUOTE] = ACTIONS(7858), - [anon_sym_DQUOTE] = ACTIONS(7858), - [sym_true] = ACTIONS(7856), - [sym_false] = ACTIONS(7856), - [anon_sym_NULL] = ACTIONS(7856), - [anon_sym_nullptr] = ACTIONS(7856), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(7856), - [anon_sym_template] = ACTIONS(7856), - [anon_sym_try] = ACTIONS(7856), - [anon_sym_delete] = ACTIONS(7856), - [anon_sym_throw] = ACTIONS(7856), - [anon_sym_co_return] = ACTIONS(7856), - [anon_sym_co_yield] = ACTIONS(7856), - [anon_sym_R_DQUOTE] = ACTIONS(7858), - [anon_sym_LR_DQUOTE] = ACTIONS(7858), - [anon_sym_uR_DQUOTE] = ACTIONS(7858), - [anon_sym_UR_DQUOTE] = ACTIONS(7858), - [anon_sym_u8R_DQUOTE] = ACTIONS(7858), - [anon_sym_co_await] = ACTIONS(7856), - [anon_sym_new] = ACTIONS(7856), - [anon_sym_requires] = ACTIONS(7856), - [anon_sym_CARET_CARET] = ACTIONS(7858), - [anon_sym_LBRACK_COLON] = ACTIONS(7858), - [sym_this] = ACTIONS(7856), + [STATE(2266)] = { + [sym__abstract_declarator] = STATE(4438), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2287), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1957), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2287), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_RPAREN] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(6929), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(6931), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(6933), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym_SEMI] = ACTIONS(7343), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym_COLON] = ACTIONS(7341), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7343), + [anon_sym_RBRACE] = ACTIONS(7343), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7341), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_STAR_EQ] = ACTIONS(7343), + [anon_sym_SLASH_EQ] = ACTIONS(7343), + [anon_sym_PERCENT_EQ] = ACTIONS(7343), + [anon_sym_PLUS_EQ] = ACTIONS(7343), + [anon_sym_DASH_EQ] = ACTIONS(7343), + [anon_sym_LT_LT_EQ] = ACTIONS(7343), + [anon_sym_GT_GT_EQ] = ACTIONS(7343), + [anon_sym_AMP_EQ] = ACTIONS(7343), + [anon_sym_CARET_EQ] = ACTIONS(7343), + [anon_sym_PIPE_EQ] = ACTIONS(7343), + [anon_sym_and_eq] = ACTIONS(7343), + [anon_sym_or_eq] = ACTIONS(7343), + [anon_sym_xor_eq] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7343), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7343), }, - [STATE(2330)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2313), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7410), - [anon_sym_COMMA] = ACTIONS(7410), - [anon_sym_RPAREN] = ACTIONS(7410), - [anon_sym_LPAREN2] = ACTIONS(7410), - [anon_sym_DASH] = ACTIONS(7408), - [anon_sym_PLUS] = ACTIONS(7408), - [anon_sym_STAR] = ACTIONS(7408), - [anon_sym_SLASH] = ACTIONS(7408), - [anon_sym_PERCENT] = ACTIONS(7408), - [anon_sym_PIPE_PIPE] = ACTIONS(7410), - [anon_sym_AMP_AMP] = ACTIONS(7410), - [anon_sym_PIPE] = ACTIONS(7408), - [anon_sym_CARET] = ACTIONS(7408), - [anon_sym_AMP] = ACTIONS(7408), - [anon_sym_EQ_EQ] = ACTIONS(7410), - [anon_sym_BANG_EQ] = ACTIONS(7410), - [anon_sym_GT] = ACTIONS(7408), - [anon_sym_GT_EQ] = ACTIONS(7410), - [anon_sym_LT_EQ] = ACTIONS(7408), - [anon_sym_LT] = ACTIONS(7408), - [anon_sym_LT_LT] = ACTIONS(7408), - [anon_sym_GT_GT] = ACTIONS(7408), - [anon_sym___extension__] = ACTIONS(7410), - [anon_sym___attribute__] = ACTIONS(7410), - [anon_sym___attribute] = ACTIONS(7408), - [anon_sym_LBRACE] = ACTIONS(7410), - [anon_sym_signed] = ACTIONS(7860), - [anon_sym_unsigned] = ACTIONS(7860), - [anon_sym_long] = ACTIONS(7860), - [anon_sym_short] = ACTIONS(7860), - [anon_sym_LBRACK] = ACTIONS(7410), - [anon_sym_EQ] = ACTIONS(7408), - [anon_sym_const] = ACTIONS(7408), - [anon_sym_constexpr] = ACTIONS(7410), - [anon_sym_volatile] = ACTIONS(7410), - [anon_sym_restrict] = ACTIONS(7410), - [anon_sym___restrict__] = ACTIONS(7410), - [anon_sym__Atomic] = ACTIONS(7410), - [anon_sym__Noreturn] = ACTIONS(7410), - [anon_sym_noreturn] = ACTIONS(7410), - [anon_sym__Nonnull] = ACTIONS(7410), - [anon_sym_mutable] = ACTIONS(7410), - [anon_sym_constinit] = ACTIONS(7410), - [anon_sym_consteval] = ACTIONS(7410), - [anon_sym_alignas] = ACTIONS(7410), - [anon_sym__Alignas] = ACTIONS(7410), - [anon_sym_QMARK] = ACTIONS(7410), - [anon_sym_STAR_EQ] = ACTIONS(7410), - [anon_sym_SLASH_EQ] = ACTIONS(7410), - [anon_sym_PERCENT_EQ] = ACTIONS(7410), - [anon_sym_PLUS_EQ] = ACTIONS(7410), - [anon_sym_DASH_EQ] = ACTIONS(7410), - [anon_sym_LT_LT_EQ] = ACTIONS(7410), - [anon_sym_GT_GT_EQ] = ACTIONS(7410), - [anon_sym_AMP_EQ] = ACTIONS(7410), - [anon_sym_CARET_EQ] = ACTIONS(7410), - [anon_sym_PIPE_EQ] = ACTIONS(7410), - [anon_sym_and_eq] = ACTIONS(7410), - [anon_sym_or_eq] = ACTIONS(7410), - [anon_sym_xor_eq] = ACTIONS(7410), - [anon_sym_LT_EQ_GT] = ACTIONS(7410), - [anon_sym_or] = ACTIONS(7408), - [anon_sym_and] = ACTIONS(7408), - [anon_sym_bitor] = ACTIONS(7410), - [anon_sym_xor] = ACTIONS(7408), - [anon_sym_bitand] = ACTIONS(7410), - [anon_sym_not_eq] = ACTIONS(7410), - [anon_sym_DASH_DASH] = ACTIONS(7410), - [anon_sym_PLUS_PLUS] = ACTIONS(7410), - [anon_sym_DOT] = ACTIONS(7408), - [anon_sym_DOT_STAR] = ACTIONS(7410), - [anon_sym_DASH_GT] = ACTIONS(7408), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7410), - [anon_sym_override] = ACTIONS(7410), - [anon_sym_requires] = ACTIONS(7410), - [anon_sym_DASH_GT_STAR] = ACTIONS(7410), + [STATE(2267)] = { + [sym_attribute_specifier] = STATE(3174), + [sym_attribute_declaration] = STATE(6393), + [sym_type_qualifier] = STATE(3708), + [sym_alignas_qualifier] = STATE(4026), + [sym_gnu_asm_expression] = STATE(9133), + [sym_virtual_specifier] = STATE(6457), + [sym_ref_qualifier] = STATE(4074), + [sym__function_attributes_start] = STATE(4041), + [sym__function_exception_specification] = STATE(4569), + [sym__function_attributes_end] = STATE(6291), + [sym__function_postfix] = STATE(6613), + [sym_trailing_return_type] = STATE(6321), + [sym_noexcept] = STATE(4569), + [sym_throw_specifier] = STATE(4569), + [sym_requires_clause] = STATE(6613), + [aux_sym_type_definition_repeat1] = STATE(3174), + [aux_sym__type_definition_type_repeat1] = STATE(3708), + [aux_sym_attributed_declarator_repeat1] = STATE(6393), + [aux_sym__function_postfix_repeat1] = STATE(6457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), + [anon_sym_COMMA] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_PLUS] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6481), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_PERCENT] = ACTIONS(6481), + [anon_sym_PIPE_PIPE] = ACTIONS(6481), + [anon_sym_AMP_AMP] = ACTIONS(7876), + [anon_sym_PIPE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6481), + [anon_sym_AMP] = ACTIONS(7879), + [anon_sym_EQ_EQ] = ACTIONS(6481), + [anon_sym_BANG_EQ] = ACTIONS(6481), + [anon_sym_GT] = ACTIONS(6479), + [anon_sym_GT_EQ] = ACTIONS(6481), + [anon_sym_LT_EQ] = ACTIONS(6479), + [anon_sym_LT] = ACTIONS(6479), + [anon_sym_LT_LT] = ACTIONS(6481), + [anon_sym_GT_GT] = ACTIONS(6481), + [anon_sym___extension__] = ACTIONS(7882), + [anon_sym___attribute__] = ACTIONS(7884), + [anon_sym___attribute] = ACTIONS(7886), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7888), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_RBRACK] = ACTIONS(6481), + [anon_sym_const] = ACTIONS(7890), + [anon_sym_constexpr] = ACTIONS(7882), + [anon_sym_volatile] = ACTIONS(7882), + [anon_sym_restrict] = ACTIONS(7882), + [anon_sym___restrict__] = ACTIONS(7882), + [anon_sym__Atomic] = ACTIONS(7882), + [anon_sym__Noreturn] = ACTIONS(7882), + [anon_sym_noreturn] = ACTIONS(7882), + [anon_sym__Nonnull] = ACTIONS(7882), + [anon_sym_mutable] = ACTIONS(7882), + [anon_sym_constinit] = ACTIONS(7882), + [anon_sym_consteval] = ACTIONS(7882), + [anon_sym_alignas] = ACTIONS(7892), + [anon_sym__Alignas] = ACTIONS(7892), + [anon_sym_QMARK] = ACTIONS(6481), + [anon_sym_LT_EQ_GT] = ACTIONS(6481), + [anon_sym_or] = ACTIONS(6481), + [anon_sym_and] = ACTIONS(6481), + [anon_sym_bitor] = ACTIONS(6481), + [anon_sym_xor] = ACTIONS(6481), + [anon_sym_bitand] = ACTIONS(6481), + [anon_sym_not_eq] = ACTIONS(6481), + [anon_sym_DASH_DASH] = ACTIONS(6481), + [anon_sym_PLUS_PLUS] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6479), + [anon_sym_DOT_STAR] = ACTIONS(6481), + [anon_sym_DASH_GT] = ACTIONS(7894), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7897), + [anon_sym_override] = ACTIONS(7897), + [anon_sym_noexcept] = ACTIONS(7899), + [anon_sym_throw] = ACTIONS(7901), + [anon_sym_requires] = ACTIONS(7903), }, - [STATE(2331)] = { - [sym_attribute_specifier] = STATE(2990), - [sym_field_declaration_list] = STATE(2680), - [sym_virtual_specifier] = STATE(9335), - [sym_base_class_clause] = STATE(10303), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(6828), - [anon_sym_LPAREN2] = ACTIONS(6828), - [anon_sym_DASH] = ACTIONS(6826), - [anon_sym_PLUS] = ACTIONS(6826), - [anon_sym_STAR] = ACTIONS(6826), - [anon_sym_SLASH] = ACTIONS(6826), - [anon_sym_PERCENT] = ACTIONS(6826), - [anon_sym_PIPE_PIPE] = ACTIONS(6828), - [anon_sym_AMP_AMP] = ACTIONS(6828), - [anon_sym_PIPE] = ACTIONS(6826), - [anon_sym_CARET] = ACTIONS(6826), - [anon_sym_AMP] = ACTIONS(6826), - [anon_sym_EQ_EQ] = ACTIONS(6828), - [anon_sym_BANG_EQ] = ACTIONS(6828), - [anon_sym_GT] = ACTIONS(6826), - [anon_sym_GT_EQ] = ACTIONS(6826), - [anon_sym_LT_EQ] = ACTIONS(6826), - [anon_sym_LT] = ACTIONS(6826), - [anon_sym_LT_LT] = ACTIONS(6826), - [anon_sym_GT_GT] = ACTIONS(6826), - [anon_sym___extension__] = ACTIONS(6828), - [anon_sym___attribute__] = ACTIONS(7862), - [anon_sym___attribute] = ACTIONS(7864), - [anon_sym_COLON] = ACTIONS(7817), - [anon_sym_LBRACE] = ACTIONS(7866), - [anon_sym_LBRACK] = ACTIONS(6828), - [anon_sym_EQ] = ACTIONS(6826), - [anon_sym_const] = ACTIONS(6826), - [anon_sym_constexpr] = ACTIONS(6828), - [anon_sym_volatile] = ACTIONS(6828), - [anon_sym_restrict] = ACTIONS(6828), - [anon_sym___restrict__] = ACTIONS(6828), - [anon_sym__Atomic] = ACTIONS(6828), - [anon_sym__Noreturn] = ACTIONS(6828), - [anon_sym_noreturn] = ACTIONS(6828), - [anon_sym__Nonnull] = ACTIONS(6828), - [anon_sym_mutable] = ACTIONS(6828), - [anon_sym_constinit] = ACTIONS(6828), - [anon_sym_consteval] = ACTIONS(6828), - [anon_sym_alignas] = ACTIONS(6828), - [anon_sym__Alignas] = ACTIONS(6828), - [anon_sym_QMARK] = ACTIONS(6828), - [anon_sym_STAR_EQ] = ACTIONS(6828), - [anon_sym_SLASH_EQ] = ACTIONS(6828), - [anon_sym_PERCENT_EQ] = ACTIONS(6828), - [anon_sym_PLUS_EQ] = ACTIONS(6828), - [anon_sym_DASH_EQ] = ACTIONS(6828), - [anon_sym_LT_LT_EQ] = ACTIONS(6828), - [anon_sym_GT_GT_EQ] = ACTIONS(6826), - [anon_sym_AMP_EQ] = ACTIONS(6828), - [anon_sym_CARET_EQ] = ACTIONS(6828), - [anon_sym_PIPE_EQ] = ACTIONS(6828), - [anon_sym_and_eq] = ACTIONS(6828), - [anon_sym_or_eq] = ACTIONS(6828), - [anon_sym_xor_eq] = ACTIONS(6828), - [anon_sym_LT_EQ_GT] = ACTIONS(6828), - [anon_sym_or] = ACTIONS(6826), - [anon_sym_and] = ACTIONS(6826), - [anon_sym_bitor] = ACTIONS(6828), - [anon_sym_xor] = ACTIONS(6826), - [anon_sym_bitand] = ACTIONS(6828), - [anon_sym_not_eq] = ACTIONS(6828), - [anon_sym_DASH_DASH] = ACTIONS(6828), - [anon_sym_PLUS_PLUS] = ACTIONS(6828), - [anon_sym_DOT] = ACTIONS(6826), - [anon_sym_DOT_STAR] = ACTIONS(6828), - [anon_sym_DASH_GT] = ACTIONS(6828), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7821), - [anon_sym_override] = ACTIONS(7821), - [anon_sym_GT2] = ACTIONS(6828), - [anon_sym_requires] = ACTIONS(6828), + [STATE(2268)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2276), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym_SEMI] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym___attribute__] = ACTIONS(7225), + [anon_sym___attribute] = ACTIONS(7223), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_RBRACE] = ACTIONS(7225), + [anon_sym_signed] = ACTIONS(7905), + [anon_sym_unsigned] = ACTIONS(7905), + [anon_sym_long] = ACTIONS(7905), + [anon_sym_short] = ACTIONS(7905), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), + [anon_sym_COLON_RBRACK] = ACTIONS(7225), }, - [STATE(2332)] = { - [sym__declaration_modifiers] = STATE(5030), - [sym_attribute_specifier] = STATE(5030), - [sym_attribute_declaration] = STATE(5030), - [sym_ms_declspec_modifier] = STATE(5030), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8610), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(5030), - [sym_type_qualifier] = STATE(5030), - [sym_alignas_qualifier] = STATE(4644), - [sym_decltype] = STATE(10976), - [sym_explicit_function_specifier] = STATE(5030), - [sym_operator_cast] = STATE(9048), - [sym__constructor_specifiers] = STATE(5030), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7746), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_operator_cast_identifier] = STATE(9048), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_operator_cast_definition_repeat1] = STATE(5030), - [sym_identifier] = ACTIONS(7868), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(7870), - [anon_sym_virtual] = ACTIONS(7872), - [anon_sym_extern] = ACTIONS(7874), - [anon_sym___attribute__] = ACTIONS(7876), - [anon_sym___attribute] = ACTIONS(7876), - [anon_sym_COLON_COLON] = ACTIONS(7878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7880), - [anon_sym___declspec] = ACTIONS(7882), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(7874), - [anon_sym_register] = ACTIONS(7874), - [anon_sym_inline] = ACTIONS(7874), - [anon_sym___inline] = ACTIONS(7874), - [anon_sym___inline__] = ACTIONS(7874), - [anon_sym___forceinline] = ACTIONS(7874), - [anon_sym_thread_local] = ACTIONS(7874), - [anon_sym___thread] = ACTIONS(7874), - [anon_sym_const] = ACTIONS(7870), - [anon_sym_constexpr] = ACTIONS(7870), - [anon_sym_volatile] = ACTIONS(7870), - [anon_sym_restrict] = ACTIONS(7870), - [anon_sym___restrict__] = ACTIONS(7870), - [anon_sym__Atomic] = ACTIONS(7870), - [anon_sym__Noreturn] = ACTIONS(7870), - [anon_sym_noreturn] = ACTIONS(7870), - [anon_sym__Nonnull] = ACTIONS(7870), - [anon_sym_mutable] = ACTIONS(7870), - [anon_sym_constinit] = ACTIONS(7870), - [anon_sym_consteval] = ACTIONS(7870), - [anon_sym_alignas] = ACTIONS(7884), - [anon_sym__Alignas] = ACTIONS(7884), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), + [STATE(2269)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7699), + [anon_sym_COMMA] = ACTIONS(7699), + [anon_sym_RPAREN] = ACTIONS(7699), + [anon_sym_LPAREN2] = ACTIONS(7699), + [anon_sym_DASH] = ACTIONS(7697), + [anon_sym_PLUS] = ACTIONS(7697), + [anon_sym_STAR] = ACTIONS(7697), + [anon_sym_SLASH] = ACTIONS(7697), + [anon_sym_PERCENT] = ACTIONS(7697), + [anon_sym_PIPE_PIPE] = ACTIONS(7699), + [anon_sym_AMP_AMP] = ACTIONS(7699), + [anon_sym_PIPE] = ACTIONS(7697), + [anon_sym_CARET] = ACTIONS(7697), + [anon_sym_AMP] = ACTIONS(7697), + [anon_sym_EQ_EQ] = ACTIONS(7699), + [anon_sym_BANG_EQ] = ACTIONS(7699), + [anon_sym_GT] = ACTIONS(7697), + [anon_sym_GT_EQ] = ACTIONS(7699), + [anon_sym_LT_EQ] = ACTIONS(7697), + [anon_sym_LT] = ACTIONS(7697), + [anon_sym_LT_LT] = ACTIONS(7697), + [anon_sym_GT_GT] = ACTIONS(7697), + [anon_sym_SEMI] = ACTIONS(7699), + [anon_sym___extension__] = ACTIONS(7699), + [anon_sym___attribute__] = ACTIONS(7699), + [anon_sym___attribute] = ACTIONS(7697), + [anon_sym_COLON] = ACTIONS(7697), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7699), + [anon_sym_LBRACE] = ACTIONS(7699), + [anon_sym_RBRACE] = ACTIONS(7699), + [anon_sym_signed] = ACTIONS(7845), + [anon_sym_unsigned] = ACTIONS(7845), + [anon_sym_long] = ACTIONS(7845), + [anon_sym_short] = ACTIONS(7845), + [anon_sym_LBRACK] = ACTIONS(7699), + [anon_sym_EQ] = ACTIONS(7697), + [anon_sym_const] = ACTIONS(7697), + [anon_sym_constexpr] = ACTIONS(7699), + [anon_sym_volatile] = ACTIONS(7699), + [anon_sym_restrict] = ACTIONS(7699), + [anon_sym___restrict__] = ACTIONS(7699), + [anon_sym__Atomic] = ACTIONS(7699), + [anon_sym__Noreturn] = ACTIONS(7699), + [anon_sym_noreturn] = ACTIONS(7699), + [anon_sym__Nonnull] = ACTIONS(7699), + [anon_sym_mutable] = ACTIONS(7699), + [anon_sym_constinit] = ACTIONS(7699), + [anon_sym_consteval] = ACTIONS(7699), + [anon_sym_alignas] = ACTIONS(7699), + [anon_sym__Alignas] = ACTIONS(7699), + [anon_sym_QMARK] = ACTIONS(7699), + [anon_sym_STAR_EQ] = ACTIONS(7699), + [anon_sym_SLASH_EQ] = ACTIONS(7699), + [anon_sym_PERCENT_EQ] = ACTIONS(7699), + [anon_sym_PLUS_EQ] = ACTIONS(7699), + [anon_sym_DASH_EQ] = ACTIONS(7699), + [anon_sym_LT_LT_EQ] = ACTIONS(7699), + [anon_sym_GT_GT_EQ] = ACTIONS(7699), + [anon_sym_AMP_EQ] = ACTIONS(7699), + [anon_sym_CARET_EQ] = ACTIONS(7699), + [anon_sym_PIPE_EQ] = ACTIONS(7699), + [anon_sym_and_eq] = ACTIONS(7699), + [anon_sym_or_eq] = ACTIONS(7699), + [anon_sym_xor_eq] = ACTIONS(7699), + [anon_sym_LT_EQ_GT] = ACTIONS(7699), + [anon_sym_or] = ACTIONS(7697), + [anon_sym_and] = ACTIONS(7697), + [anon_sym_bitor] = ACTIONS(7699), + [anon_sym_xor] = ACTIONS(7697), + [anon_sym_bitand] = ACTIONS(7699), + [anon_sym_not_eq] = ACTIONS(7699), + [anon_sym_DASH_DASH] = ACTIONS(7699), + [anon_sym_PLUS_PLUS] = ACTIONS(7699), + [anon_sym_DOT] = ACTIONS(7697), + [anon_sym_DOT_STAR] = ACTIONS(7699), + [anon_sym_DASH_GT] = ACTIONS(7699), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7699), + [anon_sym_override] = ACTIONS(7699), + [anon_sym_requires] = ACTIONS(7699), + [anon_sym_COLON_RBRACK] = ACTIONS(7699), }, - [STATE(2333)] = { - [sym__abstract_declarator] = STATE(5423), - [sym_abstract_parenthesized_declarator] = STATE(4956), - [sym_abstract_pointer_declarator] = STATE(4956), - [sym_abstract_function_declarator] = STATE(4956), - [sym_abstract_array_declarator] = STATE(4956), - [sym_type_qualifier] = STATE(2186), - [sym_alignas_qualifier] = STATE(2295), - [sym_parameter_list] = STATE(1875), - [sym_abstract_reference_declarator] = STATE(4956), - [sym__function_declarator_seq] = STATE(4970), - [aux_sym__type_definition_type_repeat1] = STATE(2186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), - [anon_sym_COMMA] = ACTIONS(7007), - [anon_sym_LPAREN2] = ACTIONS(6724), - [anon_sym_DASH] = ACTIONS(7009), - [anon_sym_PLUS] = ACTIONS(7009), - [anon_sym_STAR] = ACTIONS(7025), - [anon_sym_SLASH] = ACTIONS(7009), - [anon_sym_PERCENT] = ACTIONS(7009), - [anon_sym_PIPE_PIPE] = ACTIONS(7007), - [anon_sym_AMP_AMP] = ACTIONS(7027), - [anon_sym_PIPE] = ACTIONS(7009), - [anon_sym_CARET] = ACTIONS(7009), - [anon_sym_AMP] = ACTIONS(7029), - [anon_sym_EQ_EQ] = ACTIONS(7007), - [anon_sym_BANG_EQ] = ACTIONS(7007), - [anon_sym_GT] = ACTIONS(7009), - [anon_sym_GT_EQ] = ACTIONS(7009), - [anon_sym_LT_EQ] = ACTIONS(7009), - [anon_sym_LT] = ACTIONS(7009), - [anon_sym_LT_LT] = ACTIONS(7009), - [anon_sym_GT_GT] = ACTIONS(7009), - [anon_sym___extension__] = ACTIONS(6732), - [anon_sym_LBRACK] = ACTIONS(6740), - [anon_sym_EQ] = ACTIONS(7009), - [anon_sym_const] = ACTIONS(6742), - [anon_sym_constexpr] = ACTIONS(6732), - [anon_sym_volatile] = ACTIONS(6732), - [anon_sym_restrict] = ACTIONS(6732), - [anon_sym___restrict__] = ACTIONS(6732), - [anon_sym__Atomic] = ACTIONS(6732), - [anon_sym__Noreturn] = ACTIONS(6732), - [anon_sym_noreturn] = ACTIONS(6732), - [anon_sym__Nonnull] = ACTIONS(6732), - [anon_sym_mutable] = ACTIONS(6732), - [anon_sym_constinit] = ACTIONS(6732), - [anon_sym_consteval] = ACTIONS(6732), - [anon_sym_alignas] = ACTIONS(6744), - [anon_sym__Alignas] = ACTIONS(6744), - [anon_sym_QMARK] = ACTIONS(7007), - [anon_sym_STAR_EQ] = ACTIONS(7007), - [anon_sym_SLASH_EQ] = ACTIONS(7007), - [anon_sym_PERCENT_EQ] = ACTIONS(7007), - [anon_sym_PLUS_EQ] = ACTIONS(7007), - [anon_sym_DASH_EQ] = ACTIONS(7007), - [anon_sym_LT_LT_EQ] = ACTIONS(7007), - [anon_sym_GT_GT_EQ] = ACTIONS(7009), - [anon_sym_AMP_EQ] = ACTIONS(7007), - [anon_sym_CARET_EQ] = ACTIONS(7007), - [anon_sym_PIPE_EQ] = ACTIONS(7007), - [anon_sym_and_eq] = ACTIONS(7007), - [anon_sym_or_eq] = ACTIONS(7007), - [anon_sym_xor_eq] = ACTIONS(7007), - [anon_sym_LT_EQ_GT] = ACTIONS(7007), - [anon_sym_or] = ACTIONS(7009), - [anon_sym_and] = ACTIONS(7009), - [anon_sym_bitor] = ACTIONS(7007), - [anon_sym_xor] = ACTIONS(7009), - [anon_sym_bitand] = ACTIONS(7007), - [anon_sym_not_eq] = ACTIONS(7007), - [anon_sym_DASH_DASH] = ACTIONS(7007), - [anon_sym_PLUS_PLUS] = ACTIONS(7007), - [anon_sym_DOT] = ACTIONS(7009), - [anon_sym_DOT_STAR] = ACTIONS(7007), - [anon_sym_DASH_GT] = ACTIONS(7007), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(7007), + [STATE(2270)] = { + [sym_type_qualifier] = STATE(2270), + [sym_alignas_qualifier] = STATE(2365), + [aux_sym__type_definition_type_repeat1] = STATE(2270), + [sym_identifier] = ACTIONS(6889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), + [anon_sym_COMMA] = ACTIONS(6891), + [anon_sym_RPAREN] = ACTIONS(6891), + [anon_sym_LPAREN2] = ACTIONS(6891), + [anon_sym_DASH] = ACTIONS(6889), + [anon_sym_PLUS] = ACTIONS(6889), + [anon_sym_STAR] = ACTIONS(6889), + [anon_sym_SLASH] = ACTIONS(6889), + [anon_sym_PERCENT] = ACTIONS(6889), + [anon_sym_PIPE_PIPE] = ACTIONS(6891), + [anon_sym_AMP_AMP] = ACTIONS(6891), + [anon_sym_PIPE] = ACTIONS(6889), + [anon_sym_CARET] = ACTIONS(6889), + [anon_sym_AMP] = ACTIONS(6889), + [anon_sym_EQ_EQ] = ACTIONS(6891), + [anon_sym_BANG_EQ] = ACTIONS(6891), + [anon_sym_GT] = ACTIONS(6889), + [anon_sym_GT_EQ] = ACTIONS(6891), + [anon_sym_LT_EQ] = ACTIONS(6889), + [anon_sym_LT] = ACTIONS(6889), + [anon_sym_LT_LT] = ACTIONS(6889), + [anon_sym_GT_GT] = ACTIONS(6889), + [anon_sym___extension__] = ACTIONS(7907), + [anon_sym___attribute__] = ACTIONS(6889), + [anon_sym___attribute] = ACTIONS(6889), + [anon_sym_LBRACE] = ACTIONS(6891), + [anon_sym_signed] = ACTIONS(6889), + [anon_sym_unsigned] = ACTIONS(6889), + [anon_sym_long] = ACTIONS(6889), + [anon_sym_short] = ACTIONS(6889), + [anon_sym_LBRACK] = ACTIONS(6891), + [anon_sym_EQ] = ACTIONS(6889), + [anon_sym_const] = ACTIONS(7907), + [anon_sym_constexpr] = ACTIONS(7907), + [anon_sym_volatile] = ACTIONS(7907), + [anon_sym_restrict] = ACTIONS(7907), + [anon_sym___restrict__] = ACTIONS(7907), + [anon_sym__Atomic] = ACTIONS(7907), + [anon_sym__Noreturn] = ACTIONS(7907), + [anon_sym_noreturn] = ACTIONS(7907), + [anon_sym__Nonnull] = ACTIONS(7907), + [anon_sym_mutable] = ACTIONS(7907), + [anon_sym_constinit] = ACTIONS(7907), + [anon_sym_consteval] = ACTIONS(7907), + [anon_sym_alignas] = ACTIONS(7910), + [anon_sym__Alignas] = ACTIONS(7910), + [sym_primitive_type] = ACTIONS(6889), + [anon_sym_QMARK] = ACTIONS(6891), + [anon_sym_STAR_EQ] = ACTIONS(6891), + [anon_sym_SLASH_EQ] = ACTIONS(6891), + [anon_sym_PERCENT_EQ] = ACTIONS(6891), + [anon_sym_PLUS_EQ] = ACTIONS(6891), + [anon_sym_DASH_EQ] = ACTIONS(6891), + [anon_sym_LT_LT_EQ] = ACTIONS(6891), + [anon_sym_GT_GT_EQ] = ACTIONS(6891), + [anon_sym_AMP_EQ] = ACTIONS(6891), + [anon_sym_CARET_EQ] = ACTIONS(6891), + [anon_sym_PIPE_EQ] = ACTIONS(6891), + [anon_sym_and_eq] = ACTIONS(6889), + [anon_sym_or_eq] = ACTIONS(6889), + [anon_sym_xor_eq] = ACTIONS(6889), + [anon_sym_LT_EQ_GT] = ACTIONS(6891), + [anon_sym_or] = ACTIONS(6889), + [anon_sym_and] = ACTIONS(6889), + [anon_sym_bitor] = ACTIONS(6889), + [anon_sym_xor] = ACTIONS(6889), + [anon_sym_bitand] = ACTIONS(6889), + [anon_sym_not_eq] = ACTIONS(6889), + [anon_sym_DASH_DASH] = ACTIONS(6891), + [anon_sym_PLUS_PLUS] = ACTIONS(6891), + [anon_sym_DOT] = ACTIONS(6889), + [anon_sym_DOT_STAR] = ACTIONS(6891), + [anon_sym_DASH_GT] = ACTIONS(6889), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6889), + [anon_sym_override] = ACTIONS(6889), + [anon_sym_requires] = ACTIONS(6889), + [anon_sym_DASH_GT_STAR] = ACTIONS(6891), }, - [STATE(2334)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2344), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7404), - [anon_sym_COMMA] = ACTIONS(7404), - [anon_sym_LPAREN2] = ACTIONS(7404), - [anon_sym_DASH] = ACTIONS(7402), - [anon_sym_PLUS] = ACTIONS(7402), - [anon_sym_STAR] = ACTIONS(7402), - [anon_sym_SLASH] = ACTIONS(7402), - [anon_sym_PERCENT] = ACTIONS(7402), - [anon_sym_PIPE_PIPE] = ACTIONS(7404), - [anon_sym_AMP_AMP] = ACTIONS(7404), - [anon_sym_PIPE] = ACTIONS(7402), - [anon_sym_CARET] = ACTIONS(7402), - [anon_sym_AMP] = ACTIONS(7402), - [anon_sym_EQ_EQ] = ACTIONS(7404), - [anon_sym_BANG_EQ] = ACTIONS(7404), - [anon_sym_GT] = ACTIONS(7402), - [anon_sym_GT_EQ] = ACTIONS(7402), - [anon_sym_LT_EQ] = ACTIONS(7402), - [anon_sym_LT] = ACTIONS(7402), - [anon_sym_LT_LT] = ACTIONS(7402), - [anon_sym_GT_GT] = ACTIONS(7402), - [anon_sym___extension__] = ACTIONS(7404), - [anon_sym___attribute__] = ACTIONS(7404), - [anon_sym___attribute] = ACTIONS(7402), - [anon_sym_LBRACE] = ACTIONS(7404), - [anon_sym_signed] = ACTIONS(7886), - [anon_sym_unsigned] = ACTIONS(7886), - [anon_sym_long] = ACTIONS(7886), - [anon_sym_short] = ACTIONS(7886), - [anon_sym_LBRACK] = ACTIONS(7404), - [anon_sym_EQ] = ACTIONS(7402), - [anon_sym_const] = ACTIONS(7402), - [anon_sym_constexpr] = ACTIONS(7404), - [anon_sym_volatile] = ACTIONS(7404), - [anon_sym_restrict] = ACTIONS(7404), - [anon_sym___restrict__] = ACTIONS(7404), - [anon_sym__Atomic] = ACTIONS(7404), - [anon_sym__Noreturn] = ACTIONS(7404), - [anon_sym_noreturn] = ACTIONS(7404), - [anon_sym__Nonnull] = ACTIONS(7404), - [anon_sym_mutable] = ACTIONS(7404), - [anon_sym_constinit] = ACTIONS(7404), - [anon_sym_consteval] = ACTIONS(7404), - [anon_sym_alignas] = ACTIONS(7404), - [anon_sym__Alignas] = ACTIONS(7404), - [anon_sym_QMARK] = ACTIONS(7404), - [anon_sym_STAR_EQ] = ACTIONS(7404), - [anon_sym_SLASH_EQ] = ACTIONS(7404), - [anon_sym_PERCENT_EQ] = ACTIONS(7404), - [anon_sym_PLUS_EQ] = ACTIONS(7404), - [anon_sym_DASH_EQ] = ACTIONS(7404), - [anon_sym_LT_LT_EQ] = ACTIONS(7404), - [anon_sym_GT_GT_EQ] = ACTIONS(7402), - [anon_sym_AMP_EQ] = ACTIONS(7404), - [anon_sym_CARET_EQ] = ACTIONS(7404), - [anon_sym_PIPE_EQ] = ACTIONS(7404), - [anon_sym_and_eq] = ACTIONS(7404), - [anon_sym_or_eq] = ACTIONS(7404), - [anon_sym_xor_eq] = ACTIONS(7404), - [anon_sym_LT_EQ_GT] = ACTIONS(7404), - [anon_sym_or] = ACTIONS(7402), - [anon_sym_and] = ACTIONS(7402), - [anon_sym_bitor] = ACTIONS(7404), - [anon_sym_xor] = ACTIONS(7402), - [anon_sym_bitand] = ACTIONS(7404), - [anon_sym_not_eq] = ACTIONS(7404), - [anon_sym_DASH_DASH] = ACTIONS(7404), - [anon_sym_PLUS_PLUS] = ACTIONS(7404), - [anon_sym_DOT] = ACTIONS(7402), - [anon_sym_DOT_STAR] = ACTIONS(7404), - [anon_sym_DASH_GT] = ACTIONS(7404), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7404), - [anon_sym_override] = ACTIONS(7404), - [anon_sym_GT2] = ACTIONS(7404), - [anon_sym_requires] = ACTIONS(7404), + [STATE(2271)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2284), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7703), + [anon_sym_COMMA] = ACTIONS(7703), + [anon_sym_RPAREN] = ACTIONS(7703), + [anon_sym_LPAREN2] = ACTIONS(7703), + [anon_sym_DASH] = ACTIONS(7701), + [anon_sym_PLUS] = ACTIONS(7701), + [anon_sym_STAR] = ACTIONS(7701), + [anon_sym_SLASH] = ACTIONS(7701), + [anon_sym_PERCENT] = ACTIONS(7701), + [anon_sym_PIPE_PIPE] = ACTIONS(7703), + [anon_sym_AMP_AMP] = ACTIONS(7703), + [anon_sym_PIPE] = ACTIONS(7701), + [anon_sym_CARET] = ACTIONS(7701), + [anon_sym_AMP] = ACTIONS(7701), + [anon_sym_EQ_EQ] = ACTIONS(7703), + [anon_sym_BANG_EQ] = ACTIONS(7703), + [anon_sym_GT] = ACTIONS(7701), + [anon_sym_GT_EQ] = ACTIONS(7703), + [anon_sym_LT_EQ] = ACTIONS(7701), + [anon_sym_LT] = ACTIONS(7701), + [anon_sym_LT_LT] = ACTIONS(7701), + [anon_sym_GT_GT] = ACTIONS(7701), + [anon_sym_SEMI] = ACTIONS(7703), + [anon_sym___extension__] = ACTIONS(7703), + [anon_sym___attribute__] = ACTIONS(7703), + [anon_sym___attribute] = ACTIONS(7701), + [anon_sym_COLON] = ACTIONS(7701), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7703), + [anon_sym_LBRACE] = ACTIONS(7703), + [anon_sym_RBRACE] = ACTIONS(7703), + [anon_sym_signed] = ACTIONS(7913), + [anon_sym_unsigned] = ACTIONS(7913), + [anon_sym_long] = ACTIONS(7913), + [anon_sym_short] = ACTIONS(7913), + [anon_sym_LBRACK] = ACTIONS(7703), + [anon_sym_EQ] = ACTIONS(7701), + [anon_sym_const] = ACTIONS(7701), + [anon_sym_constexpr] = ACTIONS(7703), + [anon_sym_volatile] = ACTIONS(7703), + [anon_sym_restrict] = ACTIONS(7703), + [anon_sym___restrict__] = ACTIONS(7703), + [anon_sym__Atomic] = ACTIONS(7703), + [anon_sym__Noreturn] = ACTIONS(7703), + [anon_sym_noreturn] = ACTIONS(7703), + [anon_sym__Nonnull] = ACTIONS(7703), + [anon_sym_mutable] = ACTIONS(7703), + [anon_sym_constinit] = ACTIONS(7703), + [anon_sym_consteval] = ACTIONS(7703), + [anon_sym_alignas] = ACTIONS(7703), + [anon_sym__Alignas] = ACTIONS(7703), + [anon_sym_QMARK] = ACTIONS(7703), + [anon_sym_STAR_EQ] = ACTIONS(7703), + [anon_sym_SLASH_EQ] = ACTIONS(7703), + [anon_sym_PERCENT_EQ] = ACTIONS(7703), + [anon_sym_PLUS_EQ] = ACTIONS(7703), + [anon_sym_DASH_EQ] = ACTIONS(7703), + [anon_sym_LT_LT_EQ] = ACTIONS(7703), + [anon_sym_GT_GT_EQ] = ACTIONS(7703), + [anon_sym_AMP_EQ] = ACTIONS(7703), + [anon_sym_CARET_EQ] = ACTIONS(7703), + [anon_sym_PIPE_EQ] = ACTIONS(7703), + [anon_sym_and_eq] = ACTIONS(7703), + [anon_sym_or_eq] = ACTIONS(7703), + [anon_sym_xor_eq] = ACTIONS(7703), + [anon_sym_LT_EQ_GT] = ACTIONS(7703), + [anon_sym_or] = ACTIONS(7701), + [anon_sym_and] = ACTIONS(7701), + [anon_sym_bitor] = ACTIONS(7703), + [anon_sym_xor] = ACTIONS(7701), + [anon_sym_bitand] = ACTIONS(7703), + [anon_sym_not_eq] = ACTIONS(7703), + [anon_sym_DASH_DASH] = ACTIONS(7703), + [anon_sym_PLUS_PLUS] = ACTIONS(7703), + [anon_sym_DOT] = ACTIONS(7701), + [anon_sym_DOT_STAR] = ACTIONS(7703), + [anon_sym_DASH_GT] = ACTIONS(7703), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7703), + [anon_sym_override] = ACTIONS(7703), + [anon_sym_requires] = ACTIONS(7703), + [anon_sym_COLON_RBRACK] = ACTIONS(7703), }, - [STATE(2335)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2345), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7410), - [anon_sym_COMMA] = ACTIONS(7410), - [anon_sym_LPAREN2] = ACTIONS(7410), - [anon_sym_DASH] = ACTIONS(7408), - [anon_sym_PLUS] = ACTIONS(7408), - [anon_sym_STAR] = ACTIONS(7408), - [anon_sym_SLASH] = ACTIONS(7408), - [anon_sym_PERCENT] = ACTIONS(7408), - [anon_sym_PIPE_PIPE] = ACTIONS(7410), - [anon_sym_AMP_AMP] = ACTIONS(7410), - [anon_sym_PIPE] = ACTIONS(7408), - [anon_sym_CARET] = ACTIONS(7408), - [anon_sym_AMP] = ACTIONS(7408), - [anon_sym_EQ_EQ] = ACTIONS(7410), - [anon_sym_BANG_EQ] = ACTIONS(7410), - [anon_sym_GT] = ACTIONS(7408), - [anon_sym_GT_EQ] = ACTIONS(7408), - [anon_sym_LT_EQ] = ACTIONS(7408), - [anon_sym_LT] = ACTIONS(7408), - [anon_sym_LT_LT] = ACTIONS(7408), - [anon_sym_GT_GT] = ACTIONS(7408), - [anon_sym___extension__] = ACTIONS(7410), - [anon_sym___attribute__] = ACTIONS(7410), - [anon_sym___attribute] = ACTIONS(7408), - [anon_sym_LBRACE] = ACTIONS(7410), - [anon_sym_signed] = ACTIONS(7888), - [anon_sym_unsigned] = ACTIONS(7888), - [anon_sym_long] = ACTIONS(7888), - [anon_sym_short] = ACTIONS(7888), - [anon_sym_LBRACK] = ACTIONS(7410), - [anon_sym_EQ] = ACTIONS(7408), - [anon_sym_const] = ACTIONS(7408), - [anon_sym_constexpr] = ACTIONS(7410), - [anon_sym_volatile] = ACTIONS(7410), - [anon_sym_restrict] = ACTIONS(7410), - [anon_sym___restrict__] = ACTIONS(7410), - [anon_sym__Atomic] = ACTIONS(7410), - [anon_sym__Noreturn] = ACTIONS(7410), - [anon_sym_noreturn] = ACTIONS(7410), - [anon_sym__Nonnull] = ACTIONS(7410), - [anon_sym_mutable] = ACTIONS(7410), - [anon_sym_constinit] = ACTIONS(7410), - [anon_sym_consteval] = ACTIONS(7410), - [anon_sym_alignas] = ACTIONS(7410), - [anon_sym__Alignas] = ACTIONS(7410), - [anon_sym_QMARK] = ACTIONS(7410), - [anon_sym_STAR_EQ] = ACTIONS(7410), - [anon_sym_SLASH_EQ] = ACTIONS(7410), - [anon_sym_PERCENT_EQ] = ACTIONS(7410), - [anon_sym_PLUS_EQ] = ACTIONS(7410), - [anon_sym_DASH_EQ] = ACTIONS(7410), - [anon_sym_LT_LT_EQ] = ACTIONS(7410), - [anon_sym_GT_GT_EQ] = ACTIONS(7408), - [anon_sym_AMP_EQ] = ACTIONS(7410), - [anon_sym_CARET_EQ] = ACTIONS(7410), - [anon_sym_PIPE_EQ] = ACTIONS(7410), - [anon_sym_and_eq] = ACTIONS(7410), - [anon_sym_or_eq] = ACTIONS(7410), - [anon_sym_xor_eq] = ACTIONS(7410), - [anon_sym_LT_EQ_GT] = ACTIONS(7410), - [anon_sym_or] = ACTIONS(7408), - [anon_sym_and] = ACTIONS(7408), - [anon_sym_bitor] = ACTIONS(7410), - [anon_sym_xor] = ACTIONS(7408), - [anon_sym_bitand] = ACTIONS(7410), - [anon_sym_not_eq] = ACTIONS(7410), - [anon_sym_DASH_DASH] = ACTIONS(7410), - [anon_sym_PLUS_PLUS] = ACTIONS(7410), - [anon_sym_DOT] = ACTIONS(7408), - [anon_sym_DOT_STAR] = ACTIONS(7410), - [anon_sym_DASH_GT] = ACTIONS(7410), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7410), - [anon_sym_override] = ACTIONS(7410), - [anon_sym_GT2] = ACTIONS(7410), - [anon_sym_requires] = ACTIONS(7410), + [STATE(2272)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7709), + [anon_sym_COMMA] = ACTIONS(7709), + [anon_sym_RPAREN] = ACTIONS(7709), + [anon_sym_LPAREN2] = ACTIONS(7709), + [anon_sym_DASH] = ACTIONS(7707), + [anon_sym_PLUS] = ACTIONS(7707), + [anon_sym_STAR] = ACTIONS(7707), + [anon_sym_SLASH] = ACTIONS(7707), + [anon_sym_PERCENT] = ACTIONS(7707), + [anon_sym_PIPE_PIPE] = ACTIONS(7709), + [anon_sym_AMP_AMP] = ACTIONS(7709), + [anon_sym_PIPE] = ACTIONS(7707), + [anon_sym_CARET] = ACTIONS(7707), + [anon_sym_AMP] = ACTIONS(7707), + [anon_sym_EQ_EQ] = ACTIONS(7709), + [anon_sym_BANG_EQ] = ACTIONS(7709), + [anon_sym_GT] = ACTIONS(7707), + [anon_sym_GT_EQ] = ACTIONS(7709), + [anon_sym_LT_EQ] = ACTIONS(7707), + [anon_sym_LT] = ACTIONS(7707), + [anon_sym_LT_LT] = ACTIONS(7707), + [anon_sym_GT_GT] = ACTIONS(7707), + [anon_sym_SEMI] = ACTIONS(7709), + [anon_sym___extension__] = ACTIONS(7709), + [anon_sym___attribute__] = ACTIONS(7709), + [anon_sym___attribute] = ACTIONS(7707), + [anon_sym_COLON] = ACTIONS(7707), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7709), + [anon_sym_LBRACE] = ACTIONS(7709), + [anon_sym_RBRACE] = ACTIONS(7709), + [anon_sym_signed] = ACTIONS(7915), + [anon_sym_unsigned] = ACTIONS(7915), + [anon_sym_long] = ACTIONS(7915), + [anon_sym_short] = ACTIONS(7915), + [anon_sym_LBRACK] = ACTIONS(7709), + [anon_sym_EQ] = ACTIONS(7707), + [anon_sym_const] = ACTIONS(7707), + [anon_sym_constexpr] = ACTIONS(7709), + [anon_sym_volatile] = ACTIONS(7709), + [anon_sym_restrict] = ACTIONS(7709), + [anon_sym___restrict__] = ACTIONS(7709), + [anon_sym__Atomic] = ACTIONS(7709), + [anon_sym__Noreturn] = ACTIONS(7709), + [anon_sym_noreturn] = ACTIONS(7709), + [anon_sym__Nonnull] = ACTIONS(7709), + [anon_sym_mutable] = ACTIONS(7709), + [anon_sym_constinit] = ACTIONS(7709), + [anon_sym_consteval] = ACTIONS(7709), + [anon_sym_alignas] = ACTIONS(7709), + [anon_sym__Alignas] = ACTIONS(7709), + [anon_sym_QMARK] = ACTIONS(7709), + [anon_sym_STAR_EQ] = ACTIONS(7709), + [anon_sym_SLASH_EQ] = ACTIONS(7709), + [anon_sym_PERCENT_EQ] = ACTIONS(7709), + [anon_sym_PLUS_EQ] = ACTIONS(7709), + [anon_sym_DASH_EQ] = ACTIONS(7709), + [anon_sym_LT_LT_EQ] = ACTIONS(7709), + [anon_sym_GT_GT_EQ] = ACTIONS(7709), + [anon_sym_AMP_EQ] = ACTIONS(7709), + [anon_sym_CARET_EQ] = ACTIONS(7709), + [anon_sym_PIPE_EQ] = ACTIONS(7709), + [anon_sym_and_eq] = ACTIONS(7709), + [anon_sym_or_eq] = ACTIONS(7709), + [anon_sym_xor_eq] = ACTIONS(7709), + [anon_sym_LT_EQ_GT] = ACTIONS(7709), + [anon_sym_or] = ACTIONS(7707), + [anon_sym_and] = ACTIONS(7707), + [anon_sym_bitor] = ACTIONS(7709), + [anon_sym_xor] = ACTIONS(7707), + [anon_sym_bitand] = ACTIONS(7709), + [anon_sym_not_eq] = ACTIONS(7709), + [anon_sym_DASH_DASH] = ACTIONS(7709), + [anon_sym_PLUS_PLUS] = ACTIONS(7709), + [anon_sym_DOT] = ACTIONS(7707), + [anon_sym_DOT_STAR] = ACTIONS(7709), + [anon_sym_DASH_GT] = ACTIONS(7709), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7709), + [anon_sym_override] = ACTIONS(7709), + [anon_sym_requires] = ACTIONS(7709), + [anon_sym_COLON_RBRACK] = ACTIONS(7709), }, - [STATE(2336)] = { - [sym_type_qualifier] = STATE(2340), - [sym_alignas_qualifier] = STATE(2432), - [aux_sym__type_definition_type_repeat1] = STATE(2340), - [aux_sym_sized_type_specifier_repeat1] = STATE(2604), - [sym_identifier] = ACTIONS(7667), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), - [anon_sym_COMMA] = ACTIONS(6812), - [anon_sym_RPAREN] = ACTIONS(6812), - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_STAR] = ACTIONS(6814), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_PERCENT] = ACTIONS(6814), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_CARET] = ACTIONS(6814), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_LT_LT] = ACTIONS(6814), - [anon_sym_GT_GT] = ACTIONS(6814), - [anon_sym___extension__] = ACTIONS(6945), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_signed] = ACTIONS(7890), - [anon_sym_unsigned] = ACTIONS(7890), - [anon_sym_long] = ACTIONS(7890), - [anon_sym_short] = ACTIONS(7890), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_EQ] = ACTIONS(6814), - [anon_sym_const] = ACTIONS(6945), - [anon_sym_constexpr] = ACTIONS(6945), - [anon_sym_volatile] = ACTIONS(6945), - [anon_sym_restrict] = ACTIONS(6945), - [anon_sym___restrict__] = ACTIONS(6945), - [anon_sym__Atomic] = ACTIONS(6945), - [anon_sym__Noreturn] = ACTIONS(6945), - [anon_sym_noreturn] = ACTIONS(6945), - [anon_sym__Nonnull] = ACTIONS(6945), - [anon_sym_mutable] = ACTIONS(6945), - [anon_sym_constinit] = ACTIONS(6945), - [anon_sym_consteval] = ACTIONS(6945), - [anon_sym_alignas] = ACTIONS(7892), - [anon_sym__Alignas] = ACTIONS(7892), - [sym_primitive_type] = ACTIONS(7677), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_STAR_EQ] = ACTIONS(6812), - [anon_sym_SLASH_EQ] = ACTIONS(6812), - [anon_sym_PERCENT_EQ] = ACTIONS(6812), - [anon_sym_PLUS_EQ] = ACTIONS(6812), - [anon_sym_DASH_EQ] = ACTIONS(6812), - [anon_sym_LT_LT_EQ] = ACTIONS(6812), - [anon_sym_GT_GT_EQ] = ACTIONS(6812), - [anon_sym_AMP_EQ] = ACTIONS(6812), - [anon_sym_CARET_EQ] = ACTIONS(6812), - [anon_sym_PIPE_EQ] = ACTIONS(6812), - [anon_sym_LT_EQ_GT] = ACTIONS(6812), - [anon_sym_or] = ACTIONS(6814), - [anon_sym_and] = ACTIONS(6814), - [anon_sym_bitor] = ACTIONS(6814), - [anon_sym_xor] = ACTIONS(6814), - [anon_sym_bitand] = ACTIONS(6814), - [anon_sym_not_eq] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6814), - [anon_sym_DOT_STAR] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6814), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6812), + [STATE(2273)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7715), + [anon_sym_COMMA] = ACTIONS(7715), + [anon_sym_RPAREN] = ACTIONS(7715), + [anon_sym_LPAREN2] = ACTIONS(7715), + [anon_sym_DASH] = ACTIONS(7713), + [anon_sym_PLUS] = ACTIONS(7713), + [anon_sym_STAR] = ACTIONS(7713), + [anon_sym_SLASH] = ACTIONS(7713), + [anon_sym_PERCENT] = ACTIONS(7713), + [anon_sym_PIPE_PIPE] = ACTIONS(7715), + [anon_sym_AMP_AMP] = ACTIONS(7715), + [anon_sym_PIPE] = ACTIONS(7713), + [anon_sym_CARET] = ACTIONS(7713), + [anon_sym_AMP] = ACTIONS(7713), + [anon_sym_EQ_EQ] = ACTIONS(7715), + [anon_sym_BANG_EQ] = ACTIONS(7715), + [anon_sym_GT] = ACTIONS(7713), + [anon_sym_GT_EQ] = ACTIONS(7715), + [anon_sym_LT_EQ] = ACTIONS(7713), + [anon_sym_LT] = ACTIONS(7713), + [anon_sym_LT_LT] = ACTIONS(7713), + [anon_sym_GT_GT] = ACTIONS(7713), + [anon_sym_SEMI] = ACTIONS(7715), + [anon_sym___extension__] = ACTIONS(7715), + [anon_sym___attribute__] = ACTIONS(7715), + [anon_sym___attribute] = ACTIONS(7713), + [anon_sym_COLON] = ACTIONS(7713), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7715), + [anon_sym_LBRACE] = ACTIONS(7715), + [anon_sym_RBRACE] = ACTIONS(7715), + [anon_sym_signed] = ACTIONS(7845), + [anon_sym_unsigned] = ACTIONS(7845), + [anon_sym_long] = ACTIONS(7845), + [anon_sym_short] = ACTIONS(7845), + [anon_sym_LBRACK] = ACTIONS(7715), + [anon_sym_EQ] = ACTIONS(7713), + [anon_sym_const] = ACTIONS(7713), + [anon_sym_constexpr] = ACTIONS(7715), + [anon_sym_volatile] = ACTIONS(7715), + [anon_sym_restrict] = ACTIONS(7715), + [anon_sym___restrict__] = ACTIONS(7715), + [anon_sym__Atomic] = ACTIONS(7715), + [anon_sym__Noreturn] = ACTIONS(7715), + [anon_sym_noreturn] = ACTIONS(7715), + [anon_sym__Nonnull] = ACTIONS(7715), + [anon_sym_mutable] = ACTIONS(7715), + [anon_sym_constinit] = ACTIONS(7715), + [anon_sym_consteval] = ACTIONS(7715), + [anon_sym_alignas] = ACTIONS(7715), + [anon_sym__Alignas] = ACTIONS(7715), + [anon_sym_QMARK] = ACTIONS(7715), + [anon_sym_STAR_EQ] = ACTIONS(7715), + [anon_sym_SLASH_EQ] = ACTIONS(7715), + [anon_sym_PERCENT_EQ] = ACTIONS(7715), + [anon_sym_PLUS_EQ] = ACTIONS(7715), + [anon_sym_DASH_EQ] = ACTIONS(7715), + [anon_sym_LT_LT_EQ] = ACTIONS(7715), + [anon_sym_GT_GT_EQ] = ACTIONS(7715), + [anon_sym_AMP_EQ] = ACTIONS(7715), + [anon_sym_CARET_EQ] = ACTIONS(7715), + [anon_sym_PIPE_EQ] = ACTIONS(7715), + [anon_sym_and_eq] = ACTIONS(7715), + [anon_sym_or_eq] = ACTIONS(7715), + [anon_sym_xor_eq] = ACTIONS(7715), + [anon_sym_LT_EQ_GT] = ACTIONS(7715), + [anon_sym_or] = ACTIONS(7713), + [anon_sym_and] = ACTIONS(7713), + [anon_sym_bitor] = ACTIONS(7715), + [anon_sym_xor] = ACTIONS(7713), + [anon_sym_bitand] = ACTIONS(7715), + [anon_sym_not_eq] = ACTIONS(7715), + [anon_sym_DASH_DASH] = ACTIONS(7715), + [anon_sym_PLUS_PLUS] = ACTIONS(7715), + [anon_sym_DOT] = ACTIONS(7713), + [anon_sym_DOT_STAR] = ACTIONS(7715), + [anon_sym_DASH_GT] = ACTIONS(7715), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7715), + [anon_sym_override] = ACTIONS(7715), + [anon_sym_requires] = ACTIONS(7715), + [anon_sym_COLON_RBRACK] = ACTIONS(7715), }, - [STATE(2337)] = { - [sym__abstract_declarator] = STATE(5368), - [sym_abstract_parenthesized_declarator] = STATE(4966), - [sym_abstract_pointer_declarator] = STATE(4966), - [sym_abstract_function_declarator] = STATE(4966), - [sym_abstract_array_declarator] = STATE(4966), - [sym_type_qualifier] = STATE(2293), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1873), - [sym_abstract_reference_declarator] = STATE(4966), - [sym__function_declarator_seq] = STATE(4975), - [aux_sym__type_definition_type_repeat1] = STATE(2293), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), - [anon_sym_COMMA] = ACTIONS(6995), - [anon_sym_LPAREN2] = ACTIONS(6766), - [anon_sym_DASH] = ACTIONS(6997), - [anon_sym_PLUS] = ACTIONS(6997), - [anon_sym_STAR] = ACTIONS(6977), - [anon_sym_SLASH] = ACTIONS(6997), - [anon_sym_PERCENT] = ACTIONS(6997), - [anon_sym_PIPE_PIPE] = ACTIONS(6995), - [anon_sym_AMP_AMP] = ACTIONS(6979), - [anon_sym_PIPE] = ACTIONS(6997), - [anon_sym_CARET] = ACTIONS(6997), - [anon_sym_AMP] = ACTIONS(6981), - [anon_sym_EQ_EQ] = ACTIONS(6995), - [anon_sym_BANG_EQ] = ACTIONS(6995), - [anon_sym_GT] = ACTIONS(6997), - [anon_sym_GT_EQ] = ACTIONS(6995), - [anon_sym_LT_EQ] = ACTIONS(6997), - [anon_sym_LT] = ACTIONS(6997), - [anon_sym_LT_LT] = ACTIONS(6997), - [anon_sym_GT_GT] = ACTIONS(6997), - [anon_sym___extension__] = ACTIONS(6774), - [anon_sym_LBRACK] = ACTIONS(6782), - [anon_sym_RBRACK] = ACTIONS(6995), - [anon_sym_EQ] = ACTIONS(6997), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6774), - [anon_sym_volatile] = ACTIONS(6774), - [anon_sym_restrict] = ACTIONS(6774), - [anon_sym___restrict__] = ACTIONS(6774), - [anon_sym__Atomic] = ACTIONS(6774), - [anon_sym__Noreturn] = ACTIONS(6774), - [anon_sym_noreturn] = ACTIONS(6774), - [anon_sym__Nonnull] = ACTIONS(6774), - [anon_sym_mutable] = ACTIONS(6774), - [anon_sym_constinit] = ACTIONS(6774), - [anon_sym_consteval] = ACTIONS(6774), - [anon_sym_alignas] = ACTIONS(6784), - [anon_sym__Alignas] = ACTIONS(6784), - [anon_sym_QMARK] = ACTIONS(6995), - [anon_sym_STAR_EQ] = ACTIONS(6995), - [anon_sym_SLASH_EQ] = ACTIONS(6995), - [anon_sym_PERCENT_EQ] = ACTIONS(6995), - [anon_sym_PLUS_EQ] = ACTIONS(6995), - [anon_sym_DASH_EQ] = ACTIONS(6995), - [anon_sym_LT_LT_EQ] = ACTIONS(6995), - [anon_sym_GT_GT_EQ] = ACTIONS(6995), - [anon_sym_AMP_EQ] = ACTIONS(6995), - [anon_sym_CARET_EQ] = ACTIONS(6995), - [anon_sym_PIPE_EQ] = ACTIONS(6995), - [anon_sym_and_eq] = ACTIONS(6995), - [anon_sym_or_eq] = ACTIONS(6995), - [anon_sym_xor_eq] = ACTIONS(6995), - [anon_sym_LT_EQ_GT] = ACTIONS(6995), - [anon_sym_or] = ACTIONS(6997), - [anon_sym_and] = ACTIONS(6997), - [anon_sym_bitor] = ACTIONS(6995), - [anon_sym_xor] = ACTIONS(6997), - [anon_sym_bitand] = ACTIONS(6995), - [anon_sym_not_eq] = ACTIONS(6995), - [anon_sym_DASH_DASH] = ACTIONS(6995), - [anon_sym_PLUS_PLUS] = ACTIONS(6995), - [anon_sym_DOT] = ACTIONS(6997), - [anon_sym_DOT_STAR] = ACTIONS(6995), - [anon_sym_DASH_GT] = ACTIONS(6995), + [STATE(2274)] = { + [sym_attribute_specifier] = STATE(2316), + [sym_attribute_declaration] = STATE(4713), + [sym_type_qualifier] = STATE(2459), + [sym_alignas_qualifier] = STATE(2727), + [sym_gnu_asm_expression] = STATE(9134), + [sym_virtual_specifier] = STATE(4778), + [sym_ref_qualifier] = STATE(4042), + [sym__function_attributes_start] = STATE(4040), + [sym__function_exception_specification] = STATE(4567), + [sym__function_attributes_end] = STATE(6189), + [sym__function_postfix] = STATE(5415), + [sym_trailing_return_type] = STATE(5912), + [sym_noexcept] = STATE(4567), + [sym_throw_specifier] = STATE(4567), + [sym_requires_clause] = STATE(5415), + [aux_sym_type_definition_repeat1] = STATE(2316), + [aux_sym__type_definition_type_repeat1] = STATE(2459), + [aux_sym_attributed_declarator_repeat1] = STATE(4713), + [aux_sym__function_postfix_repeat1] = STATE(4778), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), + [anon_sym_COMMA] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_PLUS] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6481), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_PERCENT] = ACTIONS(6481), + [anon_sym_PIPE_PIPE] = ACTIONS(6481), + [anon_sym_AMP_AMP] = ACTIONS(7168), + [anon_sym_PIPE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6481), + [anon_sym_AMP] = ACTIONS(7171), + [anon_sym_EQ_EQ] = ACTIONS(6481), + [anon_sym_BANG_EQ] = ACTIONS(6481), + [anon_sym_GT] = ACTIONS(6479), + [anon_sym_GT_EQ] = ACTIONS(6481), + [anon_sym_LT_EQ] = ACTIONS(6479), + [anon_sym_LT] = ACTIONS(6479), + [anon_sym_LT_LT] = ACTIONS(6481), + [anon_sym_GT_GT] = ACTIONS(6481), + [anon_sym_SEMI] = ACTIONS(6481), + [anon_sym___extension__] = ACTIONS(7174), + [anon_sym___attribute__] = ACTIONS(7917), + [anon_sym___attribute] = ACTIONS(7920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(7182), + [anon_sym_constexpr] = ACTIONS(7174), + [anon_sym_volatile] = ACTIONS(7174), + [anon_sym_restrict] = ACTIONS(7174), + [anon_sym___restrict__] = ACTIONS(7174), + [anon_sym__Atomic] = ACTIONS(7174), + [anon_sym__Noreturn] = ACTIONS(7174), + [anon_sym_noreturn] = ACTIONS(7174), + [anon_sym__Nonnull] = ACTIONS(7174), + [anon_sym_mutable] = ACTIONS(7174), + [anon_sym_constinit] = ACTIONS(7174), + [anon_sym_consteval] = ACTIONS(7174), + [anon_sym_alignas] = ACTIONS(7184), + [anon_sym__Alignas] = ACTIONS(7184), + [anon_sym_QMARK] = ACTIONS(6481), + [anon_sym_LT_EQ_GT] = ACTIONS(6481), + [anon_sym_or] = ACTIONS(6481), + [anon_sym_and] = ACTIONS(6481), + [anon_sym_bitor] = ACTIONS(6481), + [anon_sym_xor] = ACTIONS(6481), + [anon_sym_bitand] = ACTIONS(6481), + [anon_sym_not_eq] = ACTIONS(6481), + [anon_sym_DASH_DASH] = ACTIONS(6481), + [anon_sym_PLUS_PLUS] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6479), + [anon_sym_DOT_STAR] = ACTIONS(6481), + [anon_sym_DASH_GT] = ACTIONS(7923), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7219), + [anon_sym_override] = ACTIONS(7219), + [anon_sym_noexcept] = ACTIONS(7192), + [anon_sym_throw] = ACTIONS(7194), + [anon_sym_requires] = ACTIONS(7221), }, - [STATE(2338)] = { - [sym__abstract_declarator] = STATE(5377), - [sym_abstract_parenthesized_declarator] = STATE(4966), - [sym_abstract_pointer_declarator] = STATE(4966), - [sym_abstract_function_declarator] = STATE(4966), - [sym_abstract_array_declarator] = STATE(4966), - [sym_type_qualifier] = STATE(2352), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1873), - [sym_abstract_reference_declarator] = STATE(4966), - [sym__function_declarator_seq] = STATE(4975), - [aux_sym__type_definition_type_repeat1] = STATE(2352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), - [anon_sym_COMMA] = ACTIONS(6999), - [anon_sym_LPAREN2] = ACTIONS(6766), - [anon_sym_DASH] = ACTIONS(7001), - [anon_sym_PLUS] = ACTIONS(7001), - [anon_sym_STAR] = ACTIONS(6977), - [anon_sym_SLASH] = ACTIONS(7001), - [anon_sym_PERCENT] = ACTIONS(7001), - [anon_sym_PIPE_PIPE] = ACTIONS(6999), - [anon_sym_AMP_AMP] = ACTIONS(6979), - [anon_sym_PIPE] = ACTIONS(7001), - [anon_sym_CARET] = ACTIONS(7001), - [anon_sym_AMP] = ACTIONS(6981), - [anon_sym_EQ_EQ] = ACTIONS(6999), - [anon_sym_BANG_EQ] = ACTIONS(6999), - [anon_sym_GT] = ACTIONS(7001), - [anon_sym_GT_EQ] = ACTIONS(6999), - [anon_sym_LT_EQ] = ACTIONS(7001), - [anon_sym_LT] = ACTIONS(7001), - [anon_sym_LT_LT] = ACTIONS(7001), - [anon_sym_GT_GT] = ACTIONS(7001), - [anon_sym___extension__] = ACTIONS(6774), - [anon_sym_LBRACK] = ACTIONS(6782), - [anon_sym_RBRACK] = ACTIONS(6999), - [anon_sym_EQ] = ACTIONS(7001), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6774), - [anon_sym_volatile] = ACTIONS(6774), - [anon_sym_restrict] = ACTIONS(6774), - [anon_sym___restrict__] = ACTIONS(6774), - [anon_sym__Atomic] = ACTIONS(6774), - [anon_sym__Noreturn] = ACTIONS(6774), - [anon_sym_noreturn] = ACTIONS(6774), - [anon_sym__Nonnull] = ACTIONS(6774), - [anon_sym_mutable] = ACTIONS(6774), - [anon_sym_constinit] = ACTIONS(6774), - [anon_sym_consteval] = ACTIONS(6774), - [anon_sym_alignas] = ACTIONS(6784), - [anon_sym__Alignas] = ACTIONS(6784), - [anon_sym_QMARK] = ACTIONS(6999), - [anon_sym_STAR_EQ] = ACTIONS(6999), - [anon_sym_SLASH_EQ] = ACTIONS(6999), - [anon_sym_PERCENT_EQ] = ACTIONS(6999), - [anon_sym_PLUS_EQ] = ACTIONS(6999), - [anon_sym_DASH_EQ] = ACTIONS(6999), - [anon_sym_LT_LT_EQ] = ACTIONS(6999), - [anon_sym_GT_GT_EQ] = ACTIONS(6999), - [anon_sym_AMP_EQ] = ACTIONS(6999), - [anon_sym_CARET_EQ] = ACTIONS(6999), - [anon_sym_PIPE_EQ] = ACTIONS(6999), - [anon_sym_and_eq] = ACTIONS(6999), - [anon_sym_or_eq] = ACTIONS(6999), - [anon_sym_xor_eq] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(6999), - [anon_sym_or] = ACTIONS(7001), - [anon_sym_and] = ACTIONS(7001), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(7001), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(6999), - [anon_sym_PLUS_PLUS] = ACTIONS(6999), - [anon_sym_DOT] = ACTIONS(7001), - [anon_sym_DOT_STAR] = ACTIONS(6999), - [anon_sym_DASH_GT] = ACTIONS(6999), + [STATE(2275)] = { + [sym_attribute_specifier] = STATE(2316), + [sym_attribute_declaration] = STATE(4713), + [sym_type_qualifier] = STATE(2459), + [sym_alignas_qualifier] = STATE(2727), + [sym_gnu_asm_expression] = STATE(9134), + [sym_virtual_specifier] = STATE(4778), + [sym_ref_qualifier] = STATE(4069), + [sym__function_attributes_start] = STATE(3980), + [sym__function_exception_specification] = STATE(4597), + [sym__function_attributes_end] = STATE(6160), + [sym__function_postfix] = STATE(5415), + [sym_trailing_return_type] = STATE(5893), + [sym_noexcept] = STATE(4597), + [sym_throw_specifier] = STATE(4597), + [sym_requires_clause] = STATE(5415), + [aux_sym_type_definition_repeat1] = STATE(2316), + [aux_sym__type_definition_type_repeat1] = STATE(2459), + [aux_sym_attributed_declarator_repeat1] = STATE(4713), + [aux_sym__function_postfix_repeat1] = STATE(4778), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), + [anon_sym_COMMA] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_PLUS] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6481), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_PERCENT] = ACTIONS(6481), + [anon_sym_PIPE_PIPE] = ACTIONS(6481), + [anon_sym_AMP_AMP] = ACTIONS(7168), + [anon_sym_PIPE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6481), + [anon_sym_AMP] = ACTIONS(7171), + [anon_sym_EQ_EQ] = ACTIONS(6481), + [anon_sym_BANG_EQ] = ACTIONS(6481), + [anon_sym_GT] = ACTIONS(6479), + [anon_sym_GT_EQ] = ACTIONS(6481), + [anon_sym_LT_EQ] = ACTIONS(6479), + [anon_sym_LT] = ACTIONS(6479), + [anon_sym_LT_LT] = ACTIONS(6481), + [anon_sym_GT_GT] = ACTIONS(6481), + [anon_sym_SEMI] = ACTIONS(6481), + [anon_sym___extension__] = ACTIONS(7174), + [anon_sym___attribute__] = ACTIONS(7917), + [anon_sym___attribute] = ACTIONS(7920), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(7182), + [anon_sym_constexpr] = ACTIONS(7174), + [anon_sym_volatile] = ACTIONS(7174), + [anon_sym_restrict] = ACTIONS(7174), + [anon_sym___restrict__] = ACTIONS(7174), + [anon_sym__Atomic] = ACTIONS(7174), + [anon_sym__Noreturn] = ACTIONS(7174), + [anon_sym_noreturn] = ACTIONS(7174), + [anon_sym__Nonnull] = ACTIONS(7174), + [anon_sym_mutable] = ACTIONS(7174), + [anon_sym_constinit] = ACTIONS(7174), + [anon_sym_consteval] = ACTIONS(7174), + [anon_sym_alignas] = ACTIONS(7184), + [anon_sym__Alignas] = ACTIONS(7184), + [anon_sym_QMARK] = ACTIONS(6481), + [anon_sym_LT_EQ_GT] = ACTIONS(6481), + [anon_sym_or] = ACTIONS(6481), + [anon_sym_and] = ACTIONS(6481), + [anon_sym_bitor] = ACTIONS(6481), + [anon_sym_xor] = ACTIONS(6481), + [anon_sym_bitand] = ACTIONS(6481), + [anon_sym_not_eq] = ACTIONS(6481), + [anon_sym_DASH_DASH] = ACTIONS(6481), + [anon_sym_PLUS_PLUS] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6479), + [anon_sym_DOT_STAR] = ACTIONS(6481), + [anon_sym_DASH_GT] = ACTIONS(7923), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7189), + [anon_sym_override] = ACTIONS(7189), + [anon_sym_noexcept] = ACTIONS(7192), + [anon_sym_throw] = ACTIONS(7194), + [anon_sym_requires] = ACTIONS(7196), }, - [STATE(2339)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2339), - [sym_identifier] = ACTIONS(6627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6629), - [anon_sym_COMMA] = ACTIONS(6629), - [anon_sym_RPAREN] = ACTIONS(6629), - [anon_sym_LPAREN2] = ACTIONS(6629), - [anon_sym_DASH] = ACTIONS(6627), - [anon_sym_PLUS] = ACTIONS(6627), - [anon_sym_STAR] = ACTIONS(6627), - [anon_sym_SLASH] = ACTIONS(6627), - [anon_sym_PERCENT] = ACTIONS(6627), - [anon_sym_PIPE_PIPE] = ACTIONS(6629), - [anon_sym_AMP_AMP] = ACTIONS(6629), - [anon_sym_PIPE] = ACTIONS(6627), - [anon_sym_CARET] = ACTIONS(6627), - [anon_sym_AMP] = ACTIONS(6627), - [anon_sym_EQ_EQ] = ACTIONS(6629), - [anon_sym_BANG_EQ] = ACTIONS(6629), - [anon_sym_GT] = ACTIONS(6627), - [anon_sym_GT_EQ] = ACTIONS(6629), - [anon_sym_LT_EQ] = ACTIONS(6627), - [anon_sym_LT] = ACTIONS(6627), - [anon_sym_LT_LT] = ACTIONS(6627), - [anon_sym_GT_GT] = ACTIONS(6627), - [anon_sym___extension__] = ACTIONS(6627), - [anon_sym___attribute__] = ACTIONS(6627), - [anon_sym___attribute] = ACTIONS(6627), - [anon_sym_LBRACE] = ACTIONS(6629), - [anon_sym_signed] = ACTIONS(7894), - [anon_sym_unsigned] = ACTIONS(7894), - [anon_sym_long] = ACTIONS(7894), - [anon_sym_short] = ACTIONS(7894), - [anon_sym_LBRACK] = ACTIONS(6629), - [anon_sym_EQ] = ACTIONS(6627), - [anon_sym_const] = ACTIONS(6627), - [anon_sym_constexpr] = ACTIONS(6627), - [anon_sym_volatile] = ACTIONS(6627), - [anon_sym_restrict] = ACTIONS(6627), - [anon_sym___restrict__] = ACTIONS(6627), - [anon_sym__Atomic] = ACTIONS(6627), - [anon_sym__Noreturn] = ACTIONS(6627), - [anon_sym_noreturn] = ACTIONS(6627), - [anon_sym__Nonnull] = ACTIONS(6627), - [anon_sym_mutable] = ACTIONS(6627), - [anon_sym_constinit] = ACTIONS(6627), - [anon_sym_consteval] = ACTIONS(6627), - [anon_sym_alignas] = ACTIONS(6627), - [anon_sym__Alignas] = ACTIONS(6627), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(6629), - [anon_sym_STAR_EQ] = ACTIONS(6629), - [anon_sym_SLASH_EQ] = ACTIONS(6629), - [anon_sym_PERCENT_EQ] = ACTIONS(6629), - [anon_sym_PLUS_EQ] = ACTIONS(6629), - [anon_sym_DASH_EQ] = ACTIONS(6629), - [anon_sym_LT_LT_EQ] = ACTIONS(6629), - [anon_sym_GT_GT_EQ] = ACTIONS(6629), - [anon_sym_AMP_EQ] = ACTIONS(6629), - [anon_sym_CARET_EQ] = ACTIONS(6629), - [anon_sym_PIPE_EQ] = ACTIONS(6629), - [anon_sym_LT_EQ_GT] = ACTIONS(6629), - [anon_sym_or] = ACTIONS(6627), - [anon_sym_and] = ACTIONS(6627), - [anon_sym_bitor] = ACTIONS(6627), - [anon_sym_xor] = ACTIONS(6627), - [anon_sym_bitand] = ACTIONS(6627), - [anon_sym_not_eq] = ACTIONS(6627), - [anon_sym_DASH_DASH] = ACTIONS(6629), - [anon_sym_PLUS_PLUS] = ACTIONS(6629), - [anon_sym_DOT] = ACTIONS(6627), - [anon_sym_DOT_STAR] = ACTIONS(6629), - [anon_sym_DASH_GT] = ACTIONS(6627), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6627), - [anon_sym_override] = ACTIONS(6627), - [anon_sym_requires] = ACTIONS(6627), - [anon_sym_DASH_GT_STAR] = ACTIONS(6629), + [STATE(2276)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7677), + [anon_sym_COMMA] = ACTIONS(7677), + [anon_sym_RPAREN] = ACTIONS(7677), + [anon_sym_LPAREN2] = ACTIONS(7677), + [anon_sym_DASH] = ACTIONS(7675), + [anon_sym_PLUS] = ACTIONS(7675), + [anon_sym_STAR] = ACTIONS(7675), + [anon_sym_SLASH] = ACTIONS(7675), + [anon_sym_PERCENT] = ACTIONS(7675), + [anon_sym_PIPE_PIPE] = ACTIONS(7677), + [anon_sym_AMP_AMP] = ACTIONS(7677), + [anon_sym_PIPE] = ACTIONS(7675), + [anon_sym_CARET] = ACTIONS(7675), + [anon_sym_AMP] = ACTIONS(7675), + [anon_sym_EQ_EQ] = ACTIONS(7677), + [anon_sym_BANG_EQ] = ACTIONS(7677), + [anon_sym_GT] = ACTIONS(7675), + [anon_sym_GT_EQ] = ACTIONS(7677), + [anon_sym_LT_EQ] = ACTIONS(7675), + [anon_sym_LT] = ACTIONS(7675), + [anon_sym_LT_LT] = ACTIONS(7675), + [anon_sym_GT_GT] = ACTIONS(7675), + [anon_sym_SEMI] = ACTIONS(7677), + [anon_sym___extension__] = ACTIONS(7677), + [anon_sym___attribute__] = ACTIONS(7677), + [anon_sym___attribute] = ACTIONS(7675), + [anon_sym_COLON] = ACTIONS(7675), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7677), + [anon_sym_LBRACE] = ACTIONS(7677), + [anon_sym_RBRACE] = ACTIONS(7677), + [anon_sym_signed] = ACTIONS(7845), + [anon_sym_unsigned] = ACTIONS(7845), + [anon_sym_long] = ACTIONS(7845), + [anon_sym_short] = ACTIONS(7845), + [anon_sym_LBRACK] = ACTIONS(7677), + [anon_sym_EQ] = ACTIONS(7675), + [anon_sym_const] = ACTIONS(7675), + [anon_sym_constexpr] = ACTIONS(7677), + [anon_sym_volatile] = ACTIONS(7677), + [anon_sym_restrict] = ACTIONS(7677), + [anon_sym___restrict__] = ACTIONS(7677), + [anon_sym__Atomic] = ACTIONS(7677), + [anon_sym__Noreturn] = ACTIONS(7677), + [anon_sym_noreturn] = ACTIONS(7677), + [anon_sym__Nonnull] = ACTIONS(7677), + [anon_sym_mutable] = ACTIONS(7677), + [anon_sym_constinit] = ACTIONS(7677), + [anon_sym_consteval] = ACTIONS(7677), + [anon_sym_alignas] = ACTIONS(7677), + [anon_sym__Alignas] = ACTIONS(7677), + [anon_sym_QMARK] = ACTIONS(7677), + [anon_sym_STAR_EQ] = ACTIONS(7677), + [anon_sym_SLASH_EQ] = ACTIONS(7677), + [anon_sym_PERCENT_EQ] = ACTIONS(7677), + [anon_sym_PLUS_EQ] = ACTIONS(7677), + [anon_sym_DASH_EQ] = ACTIONS(7677), + [anon_sym_LT_LT_EQ] = ACTIONS(7677), + [anon_sym_GT_GT_EQ] = ACTIONS(7677), + [anon_sym_AMP_EQ] = ACTIONS(7677), + [anon_sym_CARET_EQ] = ACTIONS(7677), + [anon_sym_PIPE_EQ] = ACTIONS(7677), + [anon_sym_and_eq] = ACTIONS(7677), + [anon_sym_or_eq] = ACTIONS(7677), + [anon_sym_xor_eq] = ACTIONS(7677), + [anon_sym_LT_EQ_GT] = ACTIONS(7677), + [anon_sym_or] = ACTIONS(7675), + [anon_sym_and] = ACTIONS(7675), + [anon_sym_bitor] = ACTIONS(7677), + [anon_sym_xor] = ACTIONS(7675), + [anon_sym_bitand] = ACTIONS(7677), + [anon_sym_not_eq] = ACTIONS(7677), + [anon_sym_DASH_DASH] = ACTIONS(7677), + [anon_sym_PLUS_PLUS] = ACTIONS(7677), + [anon_sym_DOT] = ACTIONS(7675), + [anon_sym_DOT_STAR] = ACTIONS(7677), + [anon_sym_DASH_GT] = ACTIONS(7677), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7677), + [anon_sym_override] = ACTIONS(7677), + [anon_sym_requires] = ACTIONS(7677), + [anon_sym_COLON_RBRACK] = ACTIONS(7677), }, - [STATE(2340)] = { - [sym_type_qualifier] = STATE(2277), - [sym_alignas_qualifier] = STATE(2432), - [aux_sym__type_definition_type_repeat1] = STATE(2277), - [aux_sym_sized_type_specifier_repeat1] = STATE(2496), - [sym_identifier] = ACTIONS(7689), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), - [anon_sym_COMMA] = ACTIONS(6884), - [anon_sym_RPAREN] = ACTIONS(6884), - [anon_sym_LPAREN2] = ACTIONS(6884), - [anon_sym_DASH] = ACTIONS(6886), - [anon_sym_PLUS] = ACTIONS(6886), - [anon_sym_STAR] = ACTIONS(6886), - [anon_sym_SLASH] = ACTIONS(6886), - [anon_sym_PERCENT] = ACTIONS(6886), - [anon_sym_PIPE_PIPE] = ACTIONS(6884), - [anon_sym_AMP_AMP] = ACTIONS(6884), - [anon_sym_PIPE] = ACTIONS(6886), - [anon_sym_CARET] = ACTIONS(6886), - [anon_sym_AMP] = ACTIONS(6886), - [anon_sym_EQ_EQ] = ACTIONS(6884), - [anon_sym_BANG_EQ] = ACTIONS(6884), - [anon_sym_GT] = ACTIONS(6886), - [anon_sym_GT_EQ] = ACTIONS(6884), - [anon_sym_LT_EQ] = ACTIONS(6886), - [anon_sym_LT] = ACTIONS(6886), - [anon_sym_LT_LT] = ACTIONS(6886), - [anon_sym_GT_GT] = ACTIONS(6886), - [anon_sym___extension__] = ACTIONS(6945), - [anon_sym___attribute__] = ACTIONS(6886), - [anon_sym___attribute] = ACTIONS(6886), - [anon_sym_LBRACE] = ACTIONS(6884), - [anon_sym_signed] = ACTIONS(7694), - [anon_sym_unsigned] = ACTIONS(7694), - [anon_sym_long] = ACTIONS(7694), - [anon_sym_short] = ACTIONS(7694), - [anon_sym_LBRACK] = ACTIONS(6884), - [anon_sym_EQ] = ACTIONS(6886), - [anon_sym_const] = ACTIONS(6945), - [anon_sym_constexpr] = ACTIONS(6945), - [anon_sym_volatile] = ACTIONS(6945), - [anon_sym_restrict] = ACTIONS(6945), - [anon_sym___restrict__] = ACTIONS(6945), - [anon_sym__Atomic] = ACTIONS(6945), - [anon_sym__Noreturn] = ACTIONS(6945), - [anon_sym_noreturn] = ACTIONS(6945), - [anon_sym__Nonnull] = ACTIONS(6945), - [anon_sym_mutable] = ACTIONS(6945), - [anon_sym_constinit] = ACTIONS(6945), - [anon_sym_consteval] = ACTIONS(6945), - [anon_sym_alignas] = ACTIONS(7892), - [anon_sym__Alignas] = ACTIONS(7892), - [sym_primitive_type] = ACTIONS(7699), - [anon_sym_QMARK] = ACTIONS(6884), - [anon_sym_STAR_EQ] = ACTIONS(6884), - [anon_sym_SLASH_EQ] = ACTIONS(6884), - [anon_sym_PERCENT_EQ] = ACTIONS(6884), - [anon_sym_PLUS_EQ] = ACTIONS(6884), - [anon_sym_DASH_EQ] = ACTIONS(6884), - [anon_sym_LT_LT_EQ] = ACTIONS(6884), - [anon_sym_GT_GT_EQ] = ACTIONS(6884), - [anon_sym_AMP_EQ] = ACTIONS(6884), - [anon_sym_CARET_EQ] = ACTIONS(6884), - [anon_sym_PIPE_EQ] = ACTIONS(6884), - [anon_sym_LT_EQ_GT] = ACTIONS(6884), - [anon_sym_or] = ACTIONS(6886), - [anon_sym_and] = ACTIONS(6886), - [anon_sym_bitor] = ACTIONS(6886), - [anon_sym_xor] = ACTIONS(6886), - [anon_sym_bitand] = ACTIONS(6886), - [anon_sym_not_eq] = ACTIONS(6886), - [anon_sym_DASH_DASH] = ACTIONS(6884), - [anon_sym_PLUS_PLUS] = ACTIONS(6884), - [anon_sym_DOT] = ACTIONS(6886), - [anon_sym_DOT_STAR] = ACTIONS(6884), - [anon_sym_DASH_GT] = ACTIONS(6886), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6884), + [STATE(2277)] = { + [sym_attribute_specifier] = STATE(3154), + [sym_attribute_declaration] = STATE(6403), + [sym_type_qualifier] = STATE(3731), + [sym_alignas_qualifier] = STATE(3991), + [sym_gnu_asm_expression] = STATE(9096), + [sym_virtual_specifier] = STATE(6501), + [sym_ref_qualifier] = STATE(4144), + [sym__function_attributes_start] = STATE(4034), + [sym__function_exception_specification] = STATE(4574), + [sym__function_attributes_end] = STATE(6281), + [sym__function_postfix] = STATE(6715), + [sym_trailing_return_type] = STATE(6341), + [sym_noexcept] = STATE(4574), + [sym_throw_specifier] = STATE(4574), + [sym_requires_clause] = STATE(6715), + [aux_sym_type_definition_repeat1] = STATE(3154), + [aux_sym__type_definition_type_repeat1] = STATE(3731), + [aux_sym_attributed_declarator_repeat1] = STATE(6403), + [aux_sym__function_postfix_repeat1] = STATE(6501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), + [anon_sym_COMMA] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_PLUS] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6481), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_PERCENT] = ACTIONS(6481), + [anon_sym_PIPE_PIPE] = ACTIONS(6481), + [anon_sym_AMP_AMP] = ACTIONS(7808), + [anon_sym_PIPE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6481), + [anon_sym_AMP] = ACTIONS(7811), + [anon_sym_EQ_EQ] = ACTIONS(6481), + [anon_sym_BANG_EQ] = ACTIONS(6481), + [anon_sym_GT] = ACTIONS(6479), + [anon_sym_GT_EQ] = ACTIONS(6479), + [anon_sym_LT_EQ] = ACTIONS(6479), + [anon_sym_LT] = ACTIONS(6479), + [anon_sym_LT_LT] = ACTIONS(6481), + [anon_sym_GT_GT] = ACTIONS(6479), + [anon_sym___extension__] = ACTIONS(7814), + [anon_sym___attribute__] = ACTIONS(7816), + [anon_sym___attribute] = ACTIONS(7818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7820), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(7822), + [anon_sym_constexpr] = ACTIONS(7814), + [anon_sym_volatile] = ACTIONS(7814), + [anon_sym_restrict] = ACTIONS(7814), + [anon_sym___restrict__] = ACTIONS(7814), + [anon_sym__Atomic] = ACTIONS(7814), + [anon_sym__Noreturn] = ACTIONS(7814), + [anon_sym_noreturn] = ACTIONS(7814), + [anon_sym__Nonnull] = ACTIONS(7814), + [anon_sym_mutable] = ACTIONS(7814), + [anon_sym_constinit] = ACTIONS(7814), + [anon_sym_consteval] = ACTIONS(7814), + [anon_sym_alignas] = ACTIONS(7824), + [anon_sym__Alignas] = ACTIONS(7824), + [anon_sym_QMARK] = ACTIONS(6481), + [anon_sym_LT_EQ_GT] = ACTIONS(6481), + [anon_sym_or] = ACTIONS(6481), + [anon_sym_and] = ACTIONS(6481), + [anon_sym_bitor] = ACTIONS(6481), + [anon_sym_xor] = ACTIONS(6481), + [anon_sym_bitand] = ACTIONS(6481), + [anon_sym_not_eq] = ACTIONS(6481), + [anon_sym_DASH_DASH] = ACTIONS(6481), + [anon_sym_PLUS_PLUS] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6479), + [anon_sym_DOT_STAR] = ACTIONS(6481), + [anon_sym_DASH_GT] = ACTIONS(7826), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7926), + [anon_sym_override] = ACTIONS(7926), + [anon_sym_GT2] = ACTIONS(6481), + [anon_sym_noexcept] = ACTIONS(7831), + [anon_sym_throw] = ACTIONS(7833), + [anon_sym_requires] = ACTIONS(7929), }, - [STATE(2341)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2578), - [sym_ms_pointer_modifier] = STATE(2341), - [aux_sym_pointer_declarator_repeat1] = STATE(2341), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6602), - [anon_sym_COMMA] = ACTIONS(6602), - [anon_sym_LPAREN2] = ACTIONS(6602), - [anon_sym_DASH] = ACTIONS(6600), - [anon_sym_PLUS] = ACTIONS(6600), - [anon_sym_STAR] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6600), - [anon_sym_PERCENT] = ACTIONS(6600), - [anon_sym_PIPE_PIPE] = ACTIONS(6602), - [anon_sym_AMP_AMP] = ACTIONS(6602), - [anon_sym_PIPE] = ACTIONS(6600), - [anon_sym_CARET] = ACTIONS(6600), - [anon_sym_AMP] = ACTIONS(6600), - [anon_sym_EQ_EQ] = ACTIONS(6602), - [anon_sym_BANG_EQ] = ACTIONS(6602), - [anon_sym_GT] = ACTIONS(6600), - [anon_sym_GT_EQ] = ACTIONS(6602), - [anon_sym_LT_EQ] = ACTIONS(6600), - [anon_sym_LT] = ACTIONS(6600), - [anon_sym_LT_LT] = ACTIONS(6600), - [anon_sym_GT_GT] = ACTIONS(6600), - [anon_sym___extension__] = ACTIONS(6602), - [sym_ms_restrict_modifier] = ACTIONS(7897), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7900), - [sym_ms_signed_ptr_modifier] = ACTIONS(7900), - [anon_sym__unaligned] = ACTIONS(7903), - [anon_sym___unaligned] = ACTIONS(7903), - [anon_sym_LBRACK] = ACTIONS(6602), - [anon_sym_RBRACK] = ACTIONS(6602), - [anon_sym_EQ] = ACTIONS(6600), - [anon_sym_const] = ACTIONS(6600), - [anon_sym_constexpr] = ACTIONS(6602), - [anon_sym_volatile] = ACTIONS(6602), - [anon_sym_restrict] = ACTIONS(6602), - [anon_sym___restrict__] = ACTIONS(6602), - [anon_sym__Atomic] = ACTIONS(6602), - [anon_sym__Noreturn] = ACTIONS(6602), - [anon_sym_noreturn] = ACTIONS(6602), - [anon_sym__Nonnull] = ACTIONS(6602), - [anon_sym_mutable] = ACTIONS(6602), - [anon_sym_constinit] = ACTIONS(6602), - [anon_sym_consteval] = ACTIONS(6602), - [anon_sym_alignas] = ACTIONS(6602), - [anon_sym__Alignas] = ACTIONS(6602), - [anon_sym_QMARK] = ACTIONS(6602), - [anon_sym_STAR_EQ] = ACTIONS(6602), - [anon_sym_SLASH_EQ] = ACTIONS(6602), - [anon_sym_PERCENT_EQ] = ACTIONS(6602), - [anon_sym_PLUS_EQ] = ACTIONS(6602), - [anon_sym_DASH_EQ] = ACTIONS(6602), - [anon_sym_LT_LT_EQ] = ACTIONS(6602), - [anon_sym_GT_GT_EQ] = ACTIONS(6602), - [anon_sym_AMP_EQ] = ACTIONS(6602), - [anon_sym_CARET_EQ] = ACTIONS(6602), - [anon_sym_PIPE_EQ] = ACTIONS(6602), - [anon_sym_and_eq] = ACTIONS(6602), - [anon_sym_or_eq] = ACTIONS(6602), - [anon_sym_xor_eq] = ACTIONS(6602), - [anon_sym_LT_EQ_GT] = ACTIONS(6602), - [anon_sym_or] = ACTIONS(6600), - [anon_sym_and] = ACTIONS(6600), - [anon_sym_bitor] = ACTIONS(6602), - [anon_sym_xor] = ACTIONS(6600), - [anon_sym_bitand] = ACTIONS(6602), - [anon_sym_not_eq] = ACTIONS(6602), - [anon_sym_DASH_DASH] = ACTIONS(6602), - [anon_sym_PLUS_PLUS] = ACTIONS(6602), - [anon_sym_DOT] = ACTIONS(6600), - [anon_sym_DOT_STAR] = ACTIONS(6602), - [anon_sym_DASH_GT] = ACTIONS(6602), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6602), - [anon_sym_override] = ACTIONS(6602), - [anon_sym_requires] = ACTIONS(6602), + [STATE(2278)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2276), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), + [anon_sym_COMMA] = ACTIONS(7719), + [anon_sym_RPAREN] = ACTIONS(7719), + [anon_sym_LPAREN2] = ACTIONS(7719), + [anon_sym_DASH] = ACTIONS(7717), + [anon_sym_PLUS] = ACTIONS(7717), + [anon_sym_STAR] = ACTIONS(7717), + [anon_sym_SLASH] = ACTIONS(7717), + [anon_sym_PERCENT] = ACTIONS(7717), + [anon_sym_PIPE_PIPE] = ACTIONS(7719), + [anon_sym_AMP_AMP] = ACTIONS(7719), + [anon_sym_PIPE] = ACTIONS(7717), + [anon_sym_CARET] = ACTIONS(7717), + [anon_sym_AMP] = ACTIONS(7717), + [anon_sym_EQ_EQ] = ACTIONS(7719), + [anon_sym_BANG_EQ] = ACTIONS(7719), + [anon_sym_GT] = ACTIONS(7717), + [anon_sym_GT_EQ] = ACTIONS(7719), + [anon_sym_LT_EQ] = ACTIONS(7717), + [anon_sym_LT] = ACTIONS(7717), + [anon_sym_LT_LT] = ACTIONS(7717), + [anon_sym_GT_GT] = ACTIONS(7717), + [anon_sym_SEMI] = ACTIONS(7719), + [anon_sym___extension__] = ACTIONS(7719), + [anon_sym___attribute__] = ACTIONS(7719), + [anon_sym___attribute] = ACTIONS(7717), + [anon_sym_COLON] = ACTIONS(7717), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7719), + [anon_sym_LBRACE] = ACTIONS(7719), + [anon_sym_RBRACE] = ACTIONS(7719), + [anon_sym_signed] = ACTIONS(7905), + [anon_sym_unsigned] = ACTIONS(7905), + [anon_sym_long] = ACTIONS(7905), + [anon_sym_short] = ACTIONS(7905), + [anon_sym_LBRACK] = ACTIONS(7719), + [anon_sym_EQ] = ACTIONS(7717), + [anon_sym_const] = ACTIONS(7717), + [anon_sym_constexpr] = ACTIONS(7719), + [anon_sym_volatile] = ACTIONS(7719), + [anon_sym_restrict] = ACTIONS(7719), + [anon_sym___restrict__] = ACTIONS(7719), + [anon_sym__Atomic] = ACTIONS(7719), + [anon_sym__Noreturn] = ACTIONS(7719), + [anon_sym_noreturn] = ACTIONS(7719), + [anon_sym__Nonnull] = ACTIONS(7719), + [anon_sym_mutable] = ACTIONS(7719), + [anon_sym_constinit] = ACTIONS(7719), + [anon_sym_consteval] = ACTIONS(7719), + [anon_sym_alignas] = ACTIONS(7719), + [anon_sym__Alignas] = ACTIONS(7719), + [anon_sym_QMARK] = ACTIONS(7719), + [anon_sym_STAR_EQ] = ACTIONS(7719), + [anon_sym_SLASH_EQ] = ACTIONS(7719), + [anon_sym_PERCENT_EQ] = ACTIONS(7719), + [anon_sym_PLUS_EQ] = ACTIONS(7719), + [anon_sym_DASH_EQ] = ACTIONS(7719), + [anon_sym_LT_LT_EQ] = ACTIONS(7719), + [anon_sym_GT_GT_EQ] = ACTIONS(7719), + [anon_sym_AMP_EQ] = ACTIONS(7719), + [anon_sym_CARET_EQ] = ACTIONS(7719), + [anon_sym_PIPE_EQ] = ACTIONS(7719), + [anon_sym_and_eq] = ACTIONS(7719), + [anon_sym_or_eq] = ACTIONS(7719), + [anon_sym_xor_eq] = ACTIONS(7719), + [anon_sym_LT_EQ_GT] = ACTIONS(7719), + [anon_sym_or] = ACTIONS(7717), + [anon_sym_and] = ACTIONS(7717), + [anon_sym_bitor] = ACTIONS(7719), + [anon_sym_xor] = ACTIONS(7717), + [anon_sym_bitand] = ACTIONS(7719), + [anon_sym_not_eq] = ACTIONS(7719), + [anon_sym_DASH_DASH] = ACTIONS(7719), + [anon_sym_PLUS_PLUS] = ACTIONS(7719), + [anon_sym_DOT] = ACTIONS(7717), + [anon_sym_DOT_STAR] = ACTIONS(7719), + [anon_sym_DASH_GT] = ACTIONS(7719), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7719), + [anon_sym_override] = ACTIONS(7719), + [anon_sym_requires] = ACTIONS(7719), + [anon_sym_COLON_RBRACK] = ACTIONS(7719), }, - [STATE(2342)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6256), - [anon_sym_COMMA] = ACTIONS(6256), - [anon_sym_RPAREN] = ACTIONS(6256), - [anon_sym_LPAREN2] = ACTIONS(6256), - [anon_sym_DASH] = ACTIONS(6254), - [anon_sym_PLUS] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(6254), - [anon_sym_SLASH] = ACTIONS(6254), - [anon_sym_PERCENT] = ACTIONS(6254), - [anon_sym_PIPE_PIPE] = ACTIONS(6256), - [anon_sym_AMP_AMP] = ACTIONS(6256), - [anon_sym_PIPE] = ACTIONS(6254), - [anon_sym_CARET] = ACTIONS(6254), - [anon_sym_AMP] = ACTIONS(6254), - [anon_sym_EQ_EQ] = ACTIONS(6256), - [anon_sym_BANG_EQ] = ACTIONS(6256), - [anon_sym_GT] = ACTIONS(6254), - [anon_sym_GT_EQ] = ACTIONS(6256), - [anon_sym_LT_EQ] = ACTIONS(6254), - [anon_sym_LT] = ACTIONS(6254), - [anon_sym_LT_LT] = ACTIONS(6254), - [anon_sym_GT_GT] = ACTIONS(6254), - [anon_sym___extension__] = ACTIONS(6256), - [anon_sym___attribute__] = ACTIONS(6256), - [anon_sym___attribute] = ACTIONS(6254), - [anon_sym_COLON] = ACTIONS(6254), - [anon_sym_COLON_COLON] = ACTIONS(6256), - [anon_sym_LBRACE] = ACTIONS(6256), - [anon_sym_LBRACK] = ACTIONS(6256), - [anon_sym_EQ] = ACTIONS(6254), - [anon_sym_const] = ACTIONS(6254), - [anon_sym_constexpr] = ACTIONS(6256), - [anon_sym_volatile] = ACTIONS(6256), - [anon_sym_restrict] = ACTIONS(6256), - [anon_sym___restrict__] = ACTIONS(6256), - [anon_sym__Atomic] = ACTIONS(6256), - [anon_sym__Noreturn] = ACTIONS(6256), - [anon_sym_noreturn] = ACTIONS(6256), - [anon_sym__Nonnull] = ACTIONS(6256), - [anon_sym_mutable] = ACTIONS(6256), - [anon_sym_constinit] = ACTIONS(6256), - [anon_sym_consteval] = ACTIONS(6256), - [anon_sym_alignas] = ACTIONS(6256), - [anon_sym__Alignas] = ACTIONS(6256), - [anon_sym_QMARK] = ACTIONS(6256), - [anon_sym_STAR_EQ] = ACTIONS(6256), - [anon_sym_SLASH_EQ] = ACTIONS(6256), - [anon_sym_PERCENT_EQ] = ACTIONS(6256), - [anon_sym_PLUS_EQ] = ACTIONS(6256), - [anon_sym_DASH_EQ] = ACTIONS(6256), - [anon_sym_LT_LT_EQ] = ACTIONS(6256), - [anon_sym_GT_GT_EQ] = ACTIONS(6256), - [anon_sym_AMP_EQ] = ACTIONS(6256), - [anon_sym_CARET_EQ] = ACTIONS(6256), - [anon_sym_PIPE_EQ] = ACTIONS(6256), - [anon_sym_and_eq] = ACTIONS(6256), - [anon_sym_or_eq] = ACTIONS(6256), - [anon_sym_xor_eq] = ACTIONS(6256), - [anon_sym_LT_EQ_GT] = ACTIONS(6256), - [anon_sym_or] = ACTIONS(6254), - [anon_sym_and] = ACTIONS(6254), - [anon_sym_bitor] = ACTIONS(6256), - [anon_sym_xor] = ACTIONS(6254), - [anon_sym_bitand] = ACTIONS(6256), - [anon_sym_not_eq] = ACTIONS(6256), - [anon_sym_DASH_DASH] = ACTIONS(6256), - [anon_sym_PLUS_PLUS] = ACTIONS(6256), - [anon_sym_DOT] = ACTIONS(6254), - [anon_sym_DOT_STAR] = ACTIONS(6256), - [anon_sym_DASH_GT] = ACTIONS(6254), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6256), - [anon_sym_decltype] = ACTIONS(6256), - [anon_sym_final] = ACTIONS(6256), - [anon_sym_override] = ACTIONS(6256), - [anon_sym_requires] = ACTIONS(6256), - [anon_sym_DASH_GT_STAR] = ACTIONS(6256), + [STATE(2279)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7683), + [anon_sym_COMMA] = ACTIONS(7683), + [anon_sym_RPAREN] = ACTIONS(7683), + [anon_sym_LPAREN2] = ACTIONS(7683), + [anon_sym_DASH] = ACTIONS(7681), + [anon_sym_PLUS] = ACTIONS(7681), + [anon_sym_STAR] = ACTIONS(7681), + [anon_sym_SLASH] = ACTIONS(7681), + [anon_sym_PERCENT] = ACTIONS(7681), + [anon_sym_PIPE_PIPE] = ACTIONS(7683), + [anon_sym_AMP_AMP] = ACTIONS(7683), + [anon_sym_PIPE] = ACTIONS(7681), + [anon_sym_CARET] = ACTIONS(7681), + [anon_sym_AMP] = ACTIONS(7681), + [anon_sym_EQ_EQ] = ACTIONS(7683), + [anon_sym_BANG_EQ] = ACTIONS(7683), + [anon_sym_GT] = ACTIONS(7681), + [anon_sym_GT_EQ] = ACTIONS(7683), + [anon_sym_LT_EQ] = ACTIONS(7681), + [anon_sym_LT] = ACTIONS(7681), + [anon_sym_LT_LT] = ACTIONS(7681), + [anon_sym_GT_GT] = ACTIONS(7681), + [anon_sym_SEMI] = ACTIONS(7683), + [anon_sym___extension__] = ACTIONS(7683), + [anon_sym___attribute__] = ACTIONS(7683), + [anon_sym___attribute] = ACTIONS(7681), + [anon_sym_COLON] = ACTIONS(7681), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7683), + [anon_sym_LBRACE] = ACTIONS(7683), + [anon_sym_RBRACE] = ACTIONS(7683), + [anon_sym_signed] = ACTIONS(7845), + [anon_sym_unsigned] = ACTIONS(7845), + [anon_sym_long] = ACTIONS(7845), + [anon_sym_short] = ACTIONS(7845), + [anon_sym_LBRACK] = ACTIONS(7683), + [anon_sym_EQ] = ACTIONS(7681), + [anon_sym_const] = ACTIONS(7681), + [anon_sym_constexpr] = ACTIONS(7683), + [anon_sym_volatile] = ACTIONS(7683), + [anon_sym_restrict] = ACTIONS(7683), + [anon_sym___restrict__] = ACTIONS(7683), + [anon_sym__Atomic] = ACTIONS(7683), + [anon_sym__Noreturn] = ACTIONS(7683), + [anon_sym_noreturn] = ACTIONS(7683), + [anon_sym__Nonnull] = ACTIONS(7683), + [anon_sym_mutable] = ACTIONS(7683), + [anon_sym_constinit] = ACTIONS(7683), + [anon_sym_consteval] = ACTIONS(7683), + [anon_sym_alignas] = ACTIONS(7683), + [anon_sym__Alignas] = ACTIONS(7683), + [anon_sym_QMARK] = ACTIONS(7683), + [anon_sym_STAR_EQ] = ACTIONS(7683), + [anon_sym_SLASH_EQ] = ACTIONS(7683), + [anon_sym_PERCENT_EQ] = ACTIONS(7683), + [anon_sym_PLUS_EQ] = ACTIONS(7683), + [anon_sym_DASH_EQ] = ACTIONS(7683), + [anon_sym_LT_LT_EQ] = ACTIONS(7683), + [anon_sym_GT_GT_EQ] = ACTIONS(7683), + [anon_sym_AMP_EQ] = ACTIONS(7683), + [anon_sym_CARET_EQ] = ACTIONS(7683), + [anon_sym_PIPE_EQ] = ACTIONS(7683), + [anon_sym_and_eq] = ACTIONS(7683), + [anon_sym_or_eq] = ACTIONS(7683), + [anon_sym_xor_eq] = ACTIONS(7683), + [anon_sym_LT_EQ_GT] = ACTIONS(7683), + [anon_sym_or] = ACTIONS(7681), + [anon_sym_and] = ACTIONS(7681), + [anon_sym_bitor] = ACTIONS(7683), + [anon_sym_xor] = ACTIONS(7681), + [anon_sym_bitand] = ACTIONS(7683), + [anon_sym_not_eq] = ACTIONS(7683), + [anon_sym_DASH_DASH] = ACTIONS(7683), + [anon_sym_PLUS_PLUS] = ACTIONS(7683), + [anon_sym_DOT] = ACTIONS(7681), + [anon_sym_DOT_STAR] = ACTIONS(7683), + [anon_sym_DASH_GT] = ACTIONS(7683), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7683), + [anon_sym_override] = ACTIONS(7683), + [anon_sym_requires] = ACTIONS(7683), + [anon_sym_COLON_RBRACK] = ACTIONS(7683), }, - [STATE(2343)] = { - [sym__declaration_modifiers] = STATE(2722), - [sym__declaration_specifiers] = STATE(5283), - [sym_attribute_specifier] = STATE(2722), - [sym_attribute_declaration] = STATE(2722), - [sym_ms_declspec_modifier] = STATE(2722), - [sym_storage_class_specifier] = STATE(2722), - [sym_type_qualifier] = STATE(2722), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(10378), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_optional_parameter_declaration] = STATE(10378), - [sym_variadic_parameter_declaration] = STATE(10378), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2722), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1950), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), + [STATE(2280)] = { + [sym__abstract_declarator] = STATE(4431), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2256), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1957), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), + [anon_sym_COMMA] = ACTIONS(7391), + [anon_sym_RPAREN] = ACTIONS(7391), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7393), + [anon_sym_PLUS] = ACTIONS(7393), + [anon_sym_STAR] = ACTIONS(6929), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_PERCENT] = ACTIONS(7393), + [anon_sym_PIPE_PIPE] = ACTIONS(7391), + [anon_sym_AMP_AMP] = ACTIONS(6931), + [anon_sym_PIPE] = ACTIONS(7393), + [anon_sym_CARET] = ACTIONS(7393), + [anon_sym_AMP] = ACTIONS(6933), + [anon_sym_EQ_EQ] = ACTIONS(7391), + [anon_sym_BANG_EQ] = ACTIONS(7391), + [anon_sym_GT] = ACTIONS(7393), + [anon_sym_GT_EQ] = ACTIONS(7391), + [anon_sym_LT_EQ] = ACTIONS(7393), + [anon_sym_LT] = ACTIONS(7393), + [anon_sym_LT_LT] = ACTIONS(7393), + [anon_sym_GT_GT] = ACTIONS(7393), + [anon_sym_SEMI] = ACTIONS(7391), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym_COLON] = ACTIONS(7393), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7391), + [anon_sym_RBRACE] = ACTIONS(7391), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7393), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(7391), + [anon_sym_STAR_EQ] = ACTIONS(7391), + [anon_sym_SLASH_EQ] = ACTIONS(7391), + [anon_sym_PERCENT_EQ] = ACTIONS(7391), + [anon_sym_PLUS_EQ] = ACTIONS(7391), + [anon_sym_DASH_EQ] = ACTIONS(7391), + [anon_sym_LT_LT_EQ] = ACTIONS(7391), + [anon_sym_GT_GT_EQ] = ACTIONS(7391), + [anon_sym_AMP_EQ] = ACTIONS(7391), + [anon_sym_CARET_EQ] = ACTIONS(7391), + [anon_sym_PIPE_EQ] = ACTIONS(7391), + [anon_sym_and_eq] = ACTIONS(7391), + [anon_sym_or_eq] = ACTIONS(7391), + [anon_sym_xor_eq] = ACTIONS(7391), + [anon_sym_LT_EQ_GT] = ACTIONS(7391), + [anon_sym_or] = ACTIONS(7393), + [anon_sym_and] = ACTIONS(7393), + [anon_sym_bitor] = ACTIONS(7391), + [anon_sym_xor] = ACTIONS(7393), + [anon_sym_bitand] = ACTIONS(7391), + [anon_sym_not_eq] = ACTIONS(7391), + [anon_sym_DASH_DASH] = ACTIONS(7391), + [anon_sym_PLUS_PLUS] = ACTIONS(7391), + [anon_sym_DOT] = ACTIONS(7393), + [anon_sym_DOT_STAR] = ACTIONS(7391), + [anon_sym_DASH_GT] = ACTIONS(7391), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7391), + }, + [STATE(2281)] = { + [sym_attribute_specifier] = STATE(3174), + [sym_attribute_declaration] = STATE(6393), + [sym_type_qualifier] = STATE(3708), + [sym_alignas_qualifier] = STATE(4026), + [sym_gnu_asm_expression] = STATE(9133), + [sym_virtual_specifier] = STATE(6457), + [sym_ref_qualifier] = STATE(4067), + [sym__function_attributes_start] = STATE(4005), + [sym__function_exception_specification] = STATE(4583), + [sym__function_attributes_end] = STATE(6279), + [sym__function_postfix] = STATE(6613), + [sym_trailing_return_type] = STATE(6350), + [sym_noexcept] = STATE(4583), + [sym_throw_specifier] = STATE(4583), + [sym_requires_clause] = STATE(6613), + [aux_sym_type_definition_repeat1] = STATE(3174), + [aux_sym__type_definition_type_repeat1] = STATE(3708), + [aux_sym_attributed_declarator_repeat1] = STATE(6393), + [aux_sym__function_postfix_repeat1] = STATE(6457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), + [anon_sym_COMMA] = ACTIONS(6481), + [anon_sym_LPAREN2] = ACTIONS(6481), + [anon_sym_DASH] = ACTIONS(6479), + [anon_sym_PLUS] = ACTIONS(6479), + [anon_sym_STAR] = ACTIONS(6481), + [anon_sym_SLASH] = ACTIONS(6479), + [anon_sym_PERCENT] = ACTIONS(6481), + [anon_sym_PIPE_PIPE] = ACTIONS(6481), + [anon_sym_AMP_AMP] = ACTIONS(7876), + [anon_sym_PIPE] = ACTIONS(6479), + [anon_sym_CARET] = ACTIONS(6481), + [anon_sym_AMP] = ACTIONS(7879), + [anon_sym_EQ_EQ] = ACTIONS(6481), + [anon_sym_BANG_EQ] = ACTIONS(6481), + [anon_sym_GT] = ACTIONS(6479), + [anon_sym_GT_EQ] = ACTIONS(6481), + [anon_sym_LT_EQ] = ACTIONS(6479), + [anon_sym_LT] = ACTIONS(6479), + [anon_sym_LT_LT] = ACTIONS(6481), + [anon_sym_GT_GT] = ACTIONS(6481), + [anon_sym___extension__] = ACTIONS(7882), + [anon_sym___attribute__] = ACTIONS(7884), + [anon_sym___attribute] = ACTIONS(7886), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7888), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_RBRACK] = ACTIONS(6481), + [anon_sym_const] = ACTIONS(7890), + [anon_sym_constexpr] = ACTIONS(7882), + [anon_sym_volatile] = ACTIONS(7882), + [anon_sym_restrict] = ACTIONS(7882), + [anon_sym___restrict__] = ACTIONS(7882), + [anon_sym__Atomic] = ACTIONS(7882), + [anon_sym__Noreturn] = ACTIONS(7882), + [anon_sym_noreturn] = ACTIONS(7882), + [anon_sym__Nonnull] = ACTIONS(7882), + [anon_sym_mutable] = ACTIONS(7882), + [anon_sym_constinit] = ACTIONS(7882), + [anon_sym_consteval] = ACTIONS(7882), + [anon_sym_alignas] = ACTIONS(7892), + [anon_sym__Alignas] = ACTIONS(7892), + [anon_sym_QMARK] = ACTIONS(6481), + [anon_sym_LT_EQ_GT] = ACTIONS(6481), + [anon_sym_or] = ACTIONS(6481), + [anon_sym_and] = ACTIONS(6481), + [anon_sym_bitor] = ACTIONS(6481), + [anon_sym_xor] = ACTIONS(6481), + [anon_sym_bitand] = ACTIONS(6481), + [anon_sym_not_eq] = ACTIONS(6481), + [anon_sym_DASH_DASH] = ACTIONS(6481), + [anon_sym_PLUS_PLUS] = ACTIONS(6481), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(6479), + [anon_sym_DOT_STAR] = ACTIONS(6481), + [anon_sym_DASH_GT] = ACTIONS(7894), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7932), + [anon_sym_override] = ACTIONS(7932), + [anon_sym_noexcept] = ACTIONS(7899), + [anon_sym_throw] = ACTIONS(7901), + [anon_sym_requires] = ACTIONS(7935), + }, + [STATE(2282)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2265), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7557), + [anon_sym_COMMA] = ACTIONS(7557), + [anon_sym_RPAREN] = ACTIONS(7557), + [anon_sym_LPAREN2] = ACTIONS(7557), + [anon_sym_DASH] = ACTIONS(7555), + [anon_sym_PLUS] = ACTIONS(7555), + [anon_sym_STAR] = ACTIONS(7555), + [anon_sym_SLASH] = ACTIONS(7555), + [anon_sym_PERCENT] = ACTIONS(7555), + [anon_sym_PIPE_PIPE] = ACTIONS(7557), + [anon_sym_AMP_AMP] = ACTIONS(7557), + [anon_sym_PIPE] = ACTIONS(7555), + [anon_sym_CARET] = ACTIONS(7555), + [anon_sym_AMP] = ACTIONS(7555), + [anon_sym_EQ_EQ] = ACTIONS(7557), + [anon_sym_BANG_EQ] = ACTIONS(7557), + [anon_sym_GT] = ACTIONS(7555), + [anon_sym_GT_EQ] = ACTIONS(7557), + [anon_sym_LT_EQ] = ACTIONS(7555), + [anon_sym_LT] = ACTIONS(7555), + [anon_sym_LT_LT] = ACTIONS(7555), + [anon_sym_GT_GT] = ACTIONS(7555), + [anon_sym_SEMI] = ACTIONS(7557), + [anon_sym___extension__] = ACTIONS(7557), + [anon_sym___attribute__] = ACTIONS(7557), + [anon_sym___attribute] = ACTIONS(7555), + [anon_sym_COLON] = ACTIONS(7555), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7557), + [anon_sym_LBRACE] = ACTIONS(7557), + [anon_sym_RBRACE] = ACTIONS(7557), + [anon_sym_signed] = ACTIONS(7938), + [anon_sym_unsigned] = ACTIONS(7938), + [anon_sym_long] = ACTIONS(7938), + [anon_sym_short] = ACTIONS(7938), + [anon_sym_LBRACK] = ACTIONS(7557), + [anon_sym_EQ] = ACTIONS(7555), + [anon_sym_const] = ACTIONS(7555), + [anon_sym_constexpr] = ACTIONS(7557), + [anon_sym_volatile] = ACTIONS(7557), + [anon_sym_restrict] = ACTIONS(7557), + [anon_sym___restrict__] = ACTIONS(7557), + [anon_sym__Atomic] = ACTIONS(7557), + [anon_sym__Noreturn] = ACTIONS(7557), + [anon_sym_noreturn] = ACTIONS(7557), + [anon_sym__Nonnull] = ACTIONS(7557), + [anon_sym_mutable] = ACTIONS(7557), + [anon_sym_constinit] = ACTIONS(7557), + [anon_sym_consteval] = ACTIONS(7557), + [anon_sym_alignas] = ACTIONS(7557), + [anon_sym__Alignas] = ACTIONS(7557), + [anon_sym_QMARK] = ACTIONS(7557), + [anon_sym_STAR_EQ] = ACTIONS(7557), + [anon_sym_SLASH_EQ] = ACTIONS(7557), + [anon_sym_PERCENT_EQ] = ACTIONS(7557), + [anon_sym_PLUS_EQ] = ACTIONS(7557), + [anon_sym_DASH_EQ] = ACTIONS(7557), + [anon_sym_LT_LT_EQ] = ACTIONS(7557), + [anon_sym_GT_GT_EQ] = ACTIONS(7557), + [anon_sym_AMP_EQ] = ACTIONS(7557), + [anon_sym_CARET_EQ] = ACTIONS(7557), + [anon_sym_PIPE_EQ] = ACTIONS(7557), + [anon_sym_and_eq] = ACTIONS(7557), + [anon_sym_or_eq] = ACTIONS(7557), + [anon_sym_xor_eq] = ACTIONS(7557), + [anon_sym_LT_EQ_GT] = ACTIONS(7557), + [anon_sym_or] = ACTIONS(7555), + [anon_sym_and] = ACTIONS(7555), + [anon_sym_bitor] = ACTIONS(7557), + [anon_sym_xor] = ACTIONS(7555), + [anon_sym_bitand] = ACTIONS(7557), + [anon_sym_not_eq] = ACTIONS(7557), + [anon_sym_DASH_DASH] = ACTIONS(7557), + [anon_sym_PLUS_PLUS] = ACTIONS(7557), + [anon_sym_DOT] = ACTIONS(7555), + [anon_sym_DOT_STAR] = ACTIONS(7557), + [anon_sym_DASH_GT] = ACTIONS(7557), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_override] = ACTIONS(7557), + [anon_sym_requires] = ACTIONS(7557), + [anon_sym_COLON_RBRACK] = ACTIONS(7557), + }, + [STATE(2283)] = { + [sym_type_qualifier] = STATE(2285), + [sym_alignas_qualifier] = STATE(2423), + [aux_sym__type_definition_type_repeat1] = STATE(2285), + [aux_sym_sized_type_specifier_repeat1] = STATE(2383), + [sym_identifier] = ACTIONS(7940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), + [anon_sym_COMMA] = ACTIONS(7249), + [anon_sym_LPAREN2] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7251), + [anon_sym_PLUS] = ACTIONS(7251), + [anon_sym_STAR] = ACTIONS(7251), + [anon_sym_SLASH] = ACTIONS(7251), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7249), + [anon_sym_PIPE] = ACTIONS(7251), + [anon_sym_CARET] = ACTIONS(7251), + [anon_sym_AMP] = ACTIONS(7251), + [anon_sym_EQ_EQ] = ACTIONS(7249), + [anon_sym_BANG_EQ] = ACTIONS(7249), + [anon_sym_GT] = ACTIONS(7251), + [anon_sym_GT_EQ] = ACTIONS(7251), + [anon_sym_LT_EQ] = ACTIONS(7251), + [anon_sym_LT] = ACTIONS(7251), + [anon_sym_LT_LT] = ACTIONS(7251), + [anon_sym_GT_GT] = ACTIONS(7251), + [anon_sym___extension__] = ACTIONS(7942), + [anon_sym___attribute__] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7251), + [anon_sym_LBRACE] = ACTIONS(7249), + [anon_sym_signed] = ACTIONS(7945), + [anon_sym_unsigned] = ACTIONS(7945), + [anon_sym_long] = ACTIONS(7945), + [anon_sym_short] = ACTIONS(7945), + [anon_sym_LBRACK] = ACTIONS(7249), + [anon_sym_EQ] = ACTIONS(7251), + [anon_sym_const] = ACTIONS(7942), + [anon_sym_constexpr] = ACTIONS(7942), + [anon_sym_volatile] = ACTIONS(7942), + [anon_sym_restrict] = ACTIONS(7942), + [anon_sym___restrict__] = ACTIONS(7942), + [anon_sym__Atomic] = ACTIONS(7942), + [anon_sym__Noreturn] = ACTIONS(7942), + [anon_sym_noreturn] = ACTIONS(7942), + [anon_sym__Nonnull] = ACTIONS(7942), + [anon_sym_mutable] = ACTIONS(7942), + [anon_sym_constinit] = ACTIONS(7942), + [anon_sym_consteval] = ACTIONS(7942), + [anon_sym_alignas] = ACTIONS(7947), + [anon_sym__Alignas] = ACTIONS(7947), + [sym_primitive_type] = ACTIONS(7950), + [anon_sym_QMARK] = ACTIONS(7249), + [anon_sym_STAR_EQ] = ACTIONS(7249), + [anon_sym_SLASH_EQ] = ACTIONS(7249), + [anon_sym_PERCENT_EQ] = ACTIONS(7249), + [anon_sym_PLUS_EQ] = ACTIONS(7249), + [anon_sym_DASH_EQ] = ACTIONS(7249), + [anon_sym_LT_LT_EQ] = ACTIONS(7249), + [anon_sym_GT_GT_EQ] = ACTIONS(7251), + [anon_sym_AMP_EQ] = ACTIONS(7249), + [anon_sym_CARET_EQ] = ACTIONS(7249), + [anon_sym_PIPE_EQ] = ACTIONS(7249), + [anon_sym_and_eq] = ACTIONS(7251), + [anon_sym_or_eq] = ACTIONS(7251), + [anon_sym_xor_eq] = ACTIONS(7251), + [anon_sym_LT_EQ_GT] = ACTIONS(7249), + [anon_sym_or] = ACTIONS(7251), + [anon_sym_and] = ACTIONS(7251), + [anon_sym_bitor] = ACTIONS(7251), + [anon_sym_xor] = ACTIONS(7251), + [anon_sym_bitand] = ACTIONS(7251), + [anon_sym_not_eq] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7249), + [anon_sym_PLUS_PLUS] = ACTIONS(7249), + [anon_sym_DOT] = ACTIONS(7251), + [anon_sym_DOT_STAR] = ACTIONS(7249), + [anon_sym_DASH_GT] = ACTIONS(7249), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7251), + [anon_sym_override] = ACTIONS(7251), + [anon_sym_GT2] = ACTIONS(7249), + [anon_sym_requires] = ACTIONS(7251), + }, + [STATE(2284)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), + [anon_sym_COMMA] = ACTIONS(7725), + [anon_sym_RPAREN] = ACTIONS(7725), + [anon_sym_LPAREN2] = ACTIONS(7725), + [anon_sym_DASH] = ACTIONS(7723), + [anon_sym_PLUS] = ACTIONS(7723), + [anon_sym_STAR] = ACTIONS(7723), + [anon_sym_SLASH] = ACTIONS(7723), + [anon_sym_PERCENT] = ACTIONS(7723), + [anon_sym_PIPE_PIPE] = ACTIONS(7725), + [anon_sym_AMP_AMP] = ACTIONS(7725), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_CARET] = ACTIONS(7723), + [anon_sym_AMP] = ACTIONS(7723), + [anon_sym_EQ_EQ] = ACTIONS(7725), + [anon_sym_BANG_EQ] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_EQ] = ACTIONS(7725), + [anon_sym_LT_EQ] = ACTIONS(7723), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_LT_LT] = ACTIONS(7723), + [anon_sym_GT_GT] = ACTIONS(7723), + [anon_sym_SEMI] = ACTIONS(7725), + [anon_sym___extension__] = ACTIONS(7725), + [anon_sym___attribute__] = ACTIONS(7725), + [anon_sym___attribute] = ACTIONS(7723), + [anon_sym_COLON] = ACTIONS(7723), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7725), + [anon_sym_LBRACE] = ACTIONS(7725), + [anon_sym_RBRACE] = ACTIONS(7725), + [anon_sym_signed] = ACTIONS(7845), + [anon_sym_unsigned] = ACTIONS(7845), + [anon_sym_long] = ACTIONS(7845), + [anon_sym_short] = ACTIONS(7845), + [anon_sym_LBRACK] = ACTIONS(7725), + [anon_sym_EQ] = ACTIONS(7723), + [anon_sym_const] = ACTIONS(7723), + [anon_sym_constexpr] = ACTIONS(7725), + [anon_sym_volatile] = ACTIONS(7725), + [anon_sym_restrict] = ACTIONS(7725), + [anon_sym___restrict__] = ACTIONS(7725), + [anon_sym__Atomic] = ACTIONS(7725), + [anon_sym__Noreturn] = ACTIONS(7725), + [anon_sym_noreturn] = ACTIONS(7725), + [anon_sym__Nonnull] = ACTIONS(7725), + [anon_sym_mutable] = ACTIONS(7725), + [anon_sym_constinit] = ACTIONS(7725), + [anon_sym_consteval] = ACTIONS(7725), + [anon_sym_alignas] = ACTIONS(7725), + [anon_sym__Alignas] = ACTIONS(7725), + [anon_sym_QMARK] = ACTIONS(7725), + [anon_sym_STAR_EQ] = ACTIONS(7725), + [anon_sym_SLASH_EQ] = ACTIONS(7725), + [anon_sym_PERCENT_EQ] = ACTIONS(7725), + [anon_sym_PLUS_EQ] = ACTIONS(7725), + [anon_sym_DASH_EQ] = ACTIONS(7725), + [anon_sym_LT_LT_EQ] = ACTIONS(7725), + [anon_sym_GT_GT_EQ] = ACTIONS(7725), + [anon_sym_AMP_EQ] = ACTIONS(7725), + [anon_sym_CARET_EQ] = ACTIONS(7725), + [anon_sym_PIPE_EQ] = ACTIONS(7725), + [anon_sym_and_eq] = ACTIONS(7725), + [anon_sym_or_eq] = ACTIONS(7725), + [anon_sym_xor_eq] = ACTIONS(7725), + [anon_sym_LT_EQ_GT] = ACTIONS(7725), + [anon_sym_or] = ACTIONS(7723), + [anon_sym_and] = ACTIONS(7723), + [anon_sym_bitor] = ACTIONS(7725), + [anon_sym_xor] = ACTIONS(7723), + [anon_sym_bitand] = ACTIONS(7725), + [anon_sym_not_eq] = ACTIONS(7725), + [anon_sym_DASH_DASH] = ACTIONS(7725), + [anon_sym_PLUS_PLUS] = ACTIONS(7725), + [anon_sym_DOT] = ACTIONS(7723), + [anon_sym_DOT_STAR] = ACTIONS(7725), + [anon_sym_DASH_GT] = ACTIONS(7725), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7725), + [anon_sym_override] = ACTIONS(7725), + [anon_sym_requires] = ACTIONS(7725), + [anon_sym_COLON_RBRACK] = ACTIONS(7725), + }, + [STATE(2285)] = { + [sym_type_qualifier] = STATE(2307), + [sym_alignas_qualifier] = STATE(2423), + [aux_sym__type_definition_type_repeat1] = STATE(2307), + [aux_sym_sized_type_specifier_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(7952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), + [anon_sym_COMMA] = ACTIONS(7205), + [anon_sym_LPAREN2] = ACTIONS(7205), + [anon_sym_DASH] = ACTIONS(7207), + [anon_sym_PLUS] = ACTIONS(7207), + [anon_sym_STAR] = ACTIONS(7207), + [anon_sym_SLASH] = ACTIONS(7207), + [anon_sym_PERCENT] = ACTIONS(7207), + [anon_sym_PIPE_PIPE] = ACTIONS(7205), + [anon_sym_AMP_AMP] = ACTIONS(7205), + [anon_sym_PIPE] = ACTIONS(7207), + [anon_sym_CARET] = ACTIONS(7207), + [anon_sym_AMP] = ACTIONS(7207), + [anon_sym_EQ_EQ] = ACTIONS(7205), + [anon_sym_BANG_EQ] = ACTIONS(7205), + [anon_sym_GT] = ACTIONS(7207), + [anon_sym_GT_EQ] = ACTIONS(7207), + [anon_sym_LT_EQ] = ACTIONS(7207), + [anon_sym_LT] = ACTIONS(7207), + [anon_sym_LT_LT] = ACTIONS(7207), + [anon_sym_GT_GT] = ACTIONS(7207), + [anon_sym___extension__] = ACTIONS(7954), + [anon_sym___attribute__] = ACTIONS(7207), + [anon_sym___attribute] = ACTIONS(7207), + [anon_sym_LBRACE] = ACTIONS(7205), + [anon_sym_signed] = ACTIONS(7957), + [anon_sym_unsigned] = ACTIONS(7957), + [anon_sym_long] = ACTIONS(7957), + [anon_sym_short] = ACTIONS(7957), + [anon_sym_LBRACK] = ACTIONS(7205), + [anon_sym_EQ] = ACTIONS(7207), + [anon_sym_const] = ACTIONS(7954), + [anon_sym_constexpr] = ACTIONS(7954), + [anon_sym_volatile] = ACTIONS(7954), + [anon_sym_restrict] = ACTIONS(7954), + [anon_sym___restrict__] = ACTIONS(7954), + [anon_sym__Atomic] = ACTIONS(7954), + [anon_sym__Noreturn] = ACTIONS(7954), + [anon_sym_noreturn] = ACTIONS(7954), + [anon_sym__Nonnull] = ACTIONS(7954), + [anon_sym_mutable] = ACTIONS(7954), + [anon_sym_constinit] = ACTIONS(7954), + [anon_sym_consteval] = ACTIONS(7954), + [anon_sym_alignas] = ACTIONS(7959), + [anon_sym__Alignas] = ACTIONS(7959), + [sym_primitive_type] = ACTIONS(7962), + [anon_sym_QMARK] = ACTIONS(7205), + [anon_sym_STAR_EQ] = ACTIONS(7205), + [anon_sym_SLASH_EQ] = ACTIONS(7205), + [anon_sym_PERCENT_EQ] = ACTIONS(7205), + [anon_sym_PLUS_EQ] = ACTIONS(7205), + [anon_sym_DASH_EQ] = ACTIONS(7205), + [anon_sym_LT_LT_EQ] = ACTIONS(7205), + [anon_sym_GT_GT_EQ] = ACTIONS(7207), + [anon_sym_AMP_EQ] = ACTIONS(7205), + [anon_sym_CARET_EQ] = ACTIONS(7205), + [anon_sym_PIPE_EQ] = ACTIONS(7205), + [anon_sym_and_eq] = ACTIONS(7207), + [anon_sym_or_eq] = ACTIONS(7207), + [anon_sym_xor_eq] = ACTIONS(7207), + [anon_sym_LT_EQ_GT] = ACTIONS(7205), + [anon_sym_or] = ACTIONS(7207), + [anon_sym_and] = ACTIONS(7207), + [anon_sym_bitor] = ACTIONS(7207), + [anon_sym_xor] = ACTIONS(7207), + [anon_sym_bitand] = ACTIONS(7207), + [anon_sym_not_eq] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7205), + [anon_sym_PLUS_PLUS] = ACTIONS(7205), + [anon_sym_DOT] = ACTIONS(7207), + [anon_sym_DOT_STAR] = ACTIONS(7205), + [anon_sym_DASH_GT] = ACTIONS(7205), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7207), + [anon_sym_override] = ACTIONS(7207), + [anon_sym_GT2] = ACTIONS(7205), + [anon_sym_requires] = ACTIONS(7207), + }, + [STATE(2286)] = { + [sym__abstract_declarator] = STATE(4538), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2006), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1957), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(6929), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(6931), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(6933), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym_SEMI] = ACTIONS(6823), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym_COLON] = ACTIONS(6821), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6823), + [anon_sym_RBRACE] = ACTIONS(6823), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6823), + [anon_sym_or_eq] = ACTIONS(6823), + [anon_sym_xor_eq] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6823), + }, + [STATE(2287)] = { + [sym__abstract_declarator] = STATE(4516), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2006), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1957), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), + [anon_sym_COMMA] = ACTIONS(7355), + [anon_sym_RPAREN] = ACTIONS(7355), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7353), + [anon_sym_PLUS] = ACTIONS(7353), + [anon_sym_STAR] = ACTIONS(6929), + [anon_sym_SLASH] = ACTIONS(7353), + [anon_sym_PERCENT] = ACTIONS(7353), + [anon_sym_PIPE_PIPE] = ACTIONS(7355), + [anon_sym_AMP_AMP] = ACTIONS(6931), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_CARET] = ACTIONS(7353), + [anon_sym_AMP] = ACTIONS(6933), + [anon_sym_EQ_EQ] = ACTIONS(7355), + [anon_sym_BANG_EQ] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_EQ] = ACTIONS(7355), + [anon_sym_LT_EQ] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_LT_LT] = ACTIONS(7353), + [anon_sym_GT_GT] = ACTIONS(7353), + [anon_sym_SEMI] = ACTIONS(7355), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym_COLON] = ACTIONS(7353), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7355), + [anon_sym_RBRACE] = ACTIONS(7355), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7353), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(7355), + [anon_sym_STAR_EQ] = ACTIONS(7355), + [anon_sym_SLASH_EQ] = ACTIONS(7355), + [anon_sym_PERCENT_EQ] = ACTIONS(7355), + [anon_sym_PLUS_EQ] = ACTIONS(7355), + [anon_sym_DASH_EQ] = ACTIONS(7355), + [anon_sym_LT_LT_EQ] = ACTIONS(7355), + [anon_sym_GT_GT_EQ] = ACTIONS(7355), + [anon_sym_AMP_EQ] = ACTIONS(7355), + [anon_sym_CARET_EQ] = ACTIONS(7355), + [anon_sym_PIPE_EQ] = ACTIONS(7355), + [anon_sym_and_eq] = ACTIONS(7355), + [anon_sym_or_eq] = ACTIONS(7355), + [anon_sym_xor_eq] = ACTIONS(7355), + [anon_sym_LT_EQ_GT] = ACTIONS(7355), + [anon_sym_or] = ACTIONS(7353), + [anon_sym_and] = ACTIONS(7353), + [anon_sym_bitor] = ACTIONS(7355), + [anon_sym_xor] = ACTIONS(7353), + [anon_sym_bitand] = ACTIONS(7355), + [anon_sym_not_eq] = ACTIONS(7355), + [anon_sym_DASH_DASH] = ACTIONS(7355), + [anon_sym_PLUS_PLUS] = ACTIONS(7355), + [anon_sym_DOT] = ACTIONS(7353), + [anon_sym_DOT_STAR] = ACTIONS(7355), + [anon_sym_DASH_GT] = ACTIONS(7355), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7355), + }, + [STATE(2288)] = { + [sym__abstract_declarator] = STATE(4489), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2006), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1976), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(6923), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7347), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(6925), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7347), + [anon_sym_AMP] = ACTIONS(6927), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7347), + [anon_sym_GT_GT] = ACTIONS(7347), + [anon_sym_SEMI] = ACTIONS(7345), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym___attribute__] = ACTIONS(7345), + [anon_sym___attribute] = ACTIONS(7347), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7347), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_STAR_EQ] = ACTIONS(7345), + [anon_sym_SLASH_EQ] = ACTIONS(7345), + [anon_sym_PERCENT_EQ] = ACTIONS(7345), + [anon_sym_PLUS_EQ] = ACTIONS(7345), + [anon_sym_DASH_EQ] = ACTIONS(7345), + [anon_sym_LT_LT_EQ] = ACTIONS(7345), + [anon_sym_GT_GT_EQ] = ACTIONS(7345), + [anon_sym_AMP_EQ] = ACTIONS(7345), + [anon_sym_CARET_EQ] = ACTIONS(7345), + [anon_sym_PIPE_EQ] = ACTIONS(7345), + [anon_sym_and_eq] = ACTIONS(7345), + [anon_sym_or_eq] = ACTIONS(7345), + [anon_sym_xor_eq] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7347), + [anon_sym_and] = ACTIONS(7347), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7347), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7345), + [anon_sym_override] = ACTIONS(7345), + [anon_sym_requires] = ACTIONS(7345), + }, + [STATE(2289)] = { + [sym_decltype_auto] = STATE(2952), + [sym_template_argument_list] = STATE(2494), + [aux_sym_sized_type_specifier_repeat1] = STATE(2419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), + [anon_sym_COMMA] = ACTIONS(5643), + [anon_sym_RPAREN] = ACTIONS(5643), + [anon_sym_LPAREN2] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5636), + [anon_sym_PLUS] = ACTIONS(5636), + [anon_sym_STAR] = ACTIONS(5636), + [anon_sym_SLASH] = ACTIONS(5636), + [anon_sym_PERCENT] = ACTIONS(5636), + [anon_sym_PIPE_PIPE] = ACTIONS(5643), + [anon_sym_AMP_AMP] = ACTIONS(5643), + [anon_sym_PIPE] = ACTIONS(5636), + [anon_sym_CARET] = ACTIONS(5636), + [anon_sym_AMP] = ACTIONS(5636), + [anon_sym_EQ_EQ] = ACTIONS(5643), + [anon_sym_BANG_EQ] = ACTIONS(5643), + [anon_sym_GT] = ACTIONS(5636), + [anon_sym_GT_EQ] = ACTIONS(5643), + [anon_sym_LT_EQ] = ACTIONS(5636), + [anon_sym_LT] = ACTIONS(7964), + [anon_sym_LT_LT] = ACTIONS(5636), + [anon_sym_GT_GT] = ACTIONS(5636), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5643), + [anon_sym_signed] = ACTIONS(6971), + [anon_sym_unsigned] = ACTIONS(6971), + [anon_sym_long] = ACTIONS(6971), + [anon_sym_short] = ACTIONS(6971), + [anon_sym_LBRACK] = ACTIONS(5643), + [anon_sym_EQ] = ACTIONS(5636), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5643), + [anon_sym_volatile] = ACTIONS(5643), + [anon_sym_restrict] = ACTIONS(5643), + [anon_sym___restrict__] = ACTIONS(5643), + [anon_sym__Atomic] = ACTIONS(5643), + [anon_sym__Noreturn] = ACTIONS(5643), + [anon_sym_noreturn] = ACTIONS(5643), + [anon_sym__Nonnull] = ACTIONS(5643), + [anon_sym_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [anon_sym_alignas] = ACTIONS(5643), + [anon_sym__Alignas] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5643), + [anon_sym_STAR_EQ] = ACTIONS(5643), + [anon_sym_SLASH_EQ] = ACTIONS(5643), + [anon_sym_PERCENT_EQ] = ACTIONS(5643), + [anon_sym_PLUS_EQ] = ACTIONS(5643), + [anon_sym_DASH_EQ] = ACTIONS(5643), + [anon_sym_LT_LT_EQ] = ACTIONS(5643), + [anon_sym_GT_GT_EQ] = ACTIONS(5643), + [anon_sym_AMP_EQ] = ACTIONS(5643), + [anon_sym_CARET_EQ] = ACTIONS(5643), + [anon_sym_PIPE_EQ] = ACTIONS(5643), + [anon_sym_and_eq] = ACTIONS(5643), + [anon_sym_or_eq] = ACTIONS(5643), + [anon_sym_xor_eq] = ACTIONS(5643), + [anon_sym_LT_EQ_GT] = ACTIONS(5643), + [anon_sym_or] = ACTIONS(5636), + [anon_sym_and] = ACTIONS(5636), + [anon_sym_bitor] = ACTIONS(5643), + [anon_sym_xor] = ACTIONS(5636), + [anon_sym_bitand] = ACTIONS(5643), + [anon_sym_not_eq] = ACTIONS(5643), + [anon_sym_DASH_DASH] = ACTIONS(5643), + [anon_sym_PLUS_PLUS] = ACTIONS(5643), + [anon_sym_DOT] = ACTIONS(5636), + [anon_sym_DOT_STAR] = ACTIONS(5643), + [anon_sym_DASH_GT] = ACTIONS(5636), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6973), + [anon_sym_decltype] = ACTIONS(6975), + [anon_sym_final] = ACTIONS(5643), + [anon_sym_override] = ACTIONS(5643), + [anon_sym_requires] = ACTIONS(5643), + [anon_sym_DASH_GT_STAR] = ACTIONS(5643), + }, + [STATE(2290)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(9733), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_explicit_object_parameter_declaration] = STATE(9733), + [sym_optional_parameter_declaration] = STATE(9733), + [sym_variadic_parameter_declaration] = STATE(9733), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6553), + [anon_sym_RPAREN] = ACTIONS(6555), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), @@ -330658,14147 +338975,9145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(5313), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5629), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_this] = ACTIONS(5631), }, - [STATE(2344)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2280), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7416), - [anon_sym_COMMA] = ACTIONS(7416), - [anon_sym_LPAREN2] = ACTIONS(7416), - [anon_sym_DASH] = ACTIONS(7414), - [anon_sym_PLUS] = ACTIONS(7414), - [anon_sym_STAR] = ACTIONS(7414), - [anon_sym_SLASH] = ACTIONS(7414), - [anon_sym_PERCENT] = ACTIONS(7414), - [anon_sym_PIPE_PIPE] = ACTIONS(7416), - [anon_sym_AMP_AMP] = ACTIONS(7416), - [anon_sym_PIPE] = ACTIONS(7414), - [anon_sym_CARET] = ACTIONS(7414), - [anon_sym_AMP] = ACTIONS(7414), - [anon_sym_EQ_EQ] = ACTIONS(7416), - [anon_sym_BANG_EQ] = ACTIONS(7416), - [anon_sym_GT] = ACTIONS(7414), - [anon_sym_GT_EQ] = ACTIONS(7414), - [anon_sym_LT_EQ] = ACTIONS(7414), - [anon_sym_LT] = ACTIONS(7414), - [anon_sym_LT_LT] = ACTIONS(7414), - [anon_sym_GT_GT] = ACTIONS(7414), - [anon_sym___extension__] = ACTIONS(7416), - [anon_sym___attribute__] = ACTIONS(7416), - [anon_sym___attribute] = ACTIONS(7414), - [anon_sym_LBRACE] = ACTIONS(7416), - [anon_sym_signed] = ACTIONS(7906), - [anon_sym_unsigned] = ACTIONS(7906), - [anon_sym_long] = ACTIONS(7906), - [anon_sym_short] = ACTIONS(7906), - [anon_sym_LBRACK] = ACTIONS(7416), - [anon_sym_EQ] = ACTIONS(7414), - [anon_sym_const] = ACTIONS(7414), - [anon_sym_constexpr] = ACTIONS(7416), - [anon_sym_volatile] = ACTIONS(7416), - [anon_sym_restrict] = ACTIONS(7416), - [anon_sym___restrict__] = ACTIONS(7416), - [anon_sym__Atomic] = ACTIONS(7416), - [anon_sym__Noreturn] = ACTIONS(7416), - [anon_sym_noreturn] = ACTIONS(7416), - [anon_sym__Nonnull] = ACTIONS(7416), - [anon_sym_mutable] = ACTIONS(7416), - [anon_sym_constinit] = ACTIONS(7416), - [anon_sym_consteval] = ACTIONS(7416), - [anon_sym_alignas] = ACTIONS(7416), - [anon_sym__Alignas] = ACTIONS(7416), - [anon_sym_QMARK] = ACTIONS(7416), - [anon_sym_STAR_EQ] = ACTIONS(7416), - [anon_sym_SLASH_EQ] = ACTIONS(7416), - [anon_sym_PERCENT_EQ] = ACTIONS(7416), - [anon_sym_PLUS_EQ] = ACTIONS(7416), - [anon_sym_DASH_EQ] = ACTIONS(7416), - [anon_sym_LT_LT_EQ] = ACTIONS(7416), - [anon_sym_GT_GT_EQ] = ACTIONS(7414), - [anon_sym_AMP_EQ] = ACTIONS(7416), - [anon_sym_CARET_EQ] = ACTIONS(7416), - [anon_sym_PIPE_EQ] = ACTIONS(7416), - [anon_sym_and_eq] = ACTIONS(7416), - [anon_sym_or_eq] = ACTIONS(7416), - [anon_sym_xor_eq] = ACTIONS(7416), - [anon_sym_LT_EQ_GT] = ACTIONS(7416), - [anon_sym_or] = ACTIONS(7414), - [anon_sym_and] = ACTIONS(7414), - [anon_sym_bitor] = ACTIONS(7416), - [anon_sym_xor] = ACTIONS(7414), - [anon_sym_bitand] = ACTIONS(7416), - [anon_sym_not_eq] = ACTIONS(7416), - [anon_sym_DASH_DASH] = ACTIONS(7416), - [anon_sym_PLUS_PLUS] = ACTIONS(7416), - [anon_sym_DOT] = ACTIONS(7414), - [anon_sym_DOT_STAR] = ACTIONS(7416), - [anon_sym_DASH_GT] = ACTIONS(7416), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7416), - [anon_sym_override] = ACTIONS(7416), - [anon_sym_GT2] = ACTIONS(7416), - [anon_sym_requires] = ACTIONS(7416), + [STATE(2291)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_exception_specification] = STATE(2563), + [sym__function_attributes_end] = STATE(3895), + [sym__function_postfix] = STATE(3655), + [sym_trailing_return_type] = STATE(3076), + [sym_noexcept] = STATE(2563), + [sym_throw_specifier] = STATE(2563), + [sym_requires_clause] = STATE(3655), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_RPAREN] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym_SEMI] = ACTIONS(7966), + [anon_sym___attribute__] = ACTIONS(6534), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_COLON] = ACTIONS(7968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7966), + [anon_sym_RBRACE] = ACTIONS(7966), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7966), + [anon_sym_or_eq] = ACTIONS(7966), + [anon_sym_xor_eq] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(7970), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7973), + [anon_sym_override] = ACTIONS(7973), + [anon_sym_noexcept] = ACTIONS(6546), + [anon_sym_throw] = ACTIONS(6548), + [anon_sym_requires] = ACTIONS(7976), + [anon_sym_COLON_RBRACK] = ACTIONS(7966), }, - [STATE(2345)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2280), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), - [anon_sym_COMMA] = ACTIONS(7201), - [anon_sym_LPAREN2] = ACTIONS(7201), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_STAR] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7199), - [anon_sym_PERCENT] = ACTIONS(7199), - [anon_sym_PIPE_PIPE] = ACTIONS(7201), - [anon_sym_AMP_AMP] = ACTIONS(7201), - [anon_sym_PIPE] = ACTIONS(7199), - [anon_sym_CARET] = ACTIONS(7199), - [anon_sym_AMP] = ACTIONS(7199), - [anon_sym_EQ_EQ] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7201), - [anon_sym_GT] = ACTIONS(7199), - [anon_sym_GT_EQ] = ACTIONS(7199), - [anon_sym_LT_EQ] = ACTIONS(7199), - [anon_sym_LT] = ACTIONS(7199), - [anon_sym_LT_LT] = ACTIONS(7199), - [anon_sym_GT_GT] = ACTIONS(7199), - [anon_sym___extension__] = ACTIONS(7201), - [anon_sym___attribute__] = ACTIONS(7201), - [anon_sym___attribute] = ACTIONS(7199), - [anon_sym_LBRACE] = ACTIONS(7201), - [anon_sym_signed] = ACTIONS(7906), - [anon_sym_unsigned] = ACTIONS(7906), - [anon_sym_long] = ACTIONS(7906), - [anon_sym_short] = ACTIONS(7906), - [anon_sym_LBRACK] = ACTIONS(7201), - [anon_sym_EQ] = ACTIONS(7199), - [anon_sym_const] = ACTIONS(7199), - [anon_sym_constexpr] = ACTIONS(7201), - [anon_sym_volatile] = ACTIONS(7201), - [anon_sym_restrict] = ACTIONS(7201), - [anon_sym___restrict__] = ACTIONS(7201), - [anon_sym__Atomic] = ACTIONS(7201), - [anon_sym__Noreturn] = ACTIONS(7201), - [anon_sym_noreturn] = ACTIONS(7201), - [anon_sym__Nonnull] = ACTIONS(7201), - [anon_sym_mutable] = ACTIONS(7201), - [anon_sym_constinit] = ACTIONS(7201), - [anon_sym_consteval] = ACTIONS(7201), - [anon_sym_alignas] = ACTIONS(7201), - [anon_sym__Alignas] = ACTIONS(7201), - [anon_sym_QMARK] = ACTIONS(7201), - [anon_sym_STAR_EQ] = ACTIONS(7201), - [anon_sym_SLASH_EQ] = ACTIONS(7201), - [anon_sym_PERCENT_EQ] = ACTIONS(7201), - [anon_sym_PLUS_EQ] = ACTIONS(7201), - [anon_sym_DASH_EQ] = ACTIONS(7201), - [anon_sym_LT_LT_EQ] = ACTIONS(7201), - [anon_sym_GT_GT_EQ] = ACTIONS(7199), - [anon_sym_AMP_EQ] = ACTIONS(7201), - [anon_sym_CARET_EQ] = ACTIONS(7201), - [anon_sym_PIPE_EQ] = ACTIONS(7201), - [anon_sym_and_eq] = ACTIONS(7201), - [anon_sym_or_eq] = ACTIONS(7201), - [anon_sym_xor_eq] = ACTIONS(7201), - [anon_sym_LT_EQ_GT] = ACTIONS(7201), - [anon_sym_or] = ACTIONS(7199), - [anon_sym_and] = ACTIONS(7199), - [anon_sym_bitor] = ACTIONS(7201), - [anon_sym_xor] = ACTIONS(7199), - [anon_sym_bitand] = ACTIONS(7201), - [anon_sym_not_eq] = ACTIONS(7201), - [anon_sym_DASH_DASH] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7201), - [anon_sym_DOT] = ACTIONS(7199), - [anon_sym_DOT_STAR] = ACTIONS(7201), - [anon_sym_DASH_GT] = ACTIONS(7201), + [STATE(2292)] = { + [sym__abstract_declarator] = STATE(4560), + [sym_abstract_parenthesized_declarator] = STATE(4825), + [sym_abstract_pointer_declarator] = STATE(4825), + [sym_abstract_function_declarator] = STATE(4825), + [sym_abstract_array_declarator] = STATE(4825), + [sym_type_qualifier] = STATE(2295), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1972), + [sym_abstract_reference_declarator] = STATE(4825), + [sym__function_declarator_seq] = STATE(4934), + [aux_sym__type_definition_type_repeat1] = STATE(2295), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), + [anon_sym_COMMA] = ACTIONS(7391), + [anon_sym_RPAREN] = ACTIONS(7391), + [anon_sym_LPAREN2] = ACTIONS(7006), + [anon_sym_DASH] = ACTIONS(7393), + [anon_sym_PLUS] = ACTIONS(7393), + [anon_sym_STAR] = ACTIONS(7008), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_PERCENT] = ACTIONS(7393), + [anon_sym_PIPE_PIPE] = ACTIONS(7391), + [anon_sym_AMP_AMP] = ACTIONS(7010), + [anon_sym_PIPE] = ACTIONS(7393), + [anon_sym_CARET] = ACTIONS(7393), + [anon_sym_AMP] = ACTIONS(7012), + [anon_sym_EQ_EQ] = ACTIONS(7391), + [anon_sym_BANG_EQ] = ACTIONS(7391), + [anon_sym_GT] = ACTIONS(7393), + [anon_sym_GT_EQ] = ACTIONS(7391), + [anon_sym_LT_EQ] = ACTIONS(7393), + [anon_sym_LT] = ACTIONS(7393), + [anon_sym_LT_LT] = ACTIONS(7393), + [anon_sym_GT_GT] = ACTIONS(7393), + [anon_sym___extension__] = ACTIONS(7014), + [anon_sym_LBRACK] = ACTIONS(7022), + [anon_sym_EQ] = ACTIONS(7393), + [anon_sym_const] = ACTIONS(7024), + [anon_sym_constexpr] = ACTIONS(7014), + [anon_sym_volatile] = ACTIONS(7014), + [anon_sym_restrict] = ACTIONS(7014), + [anon_sym___restrict__] = ACTIONS(7014), + [anon_sym__Atomic] = ACTIONS(7014), + [anon_sym__Noreturn] = ACTIONS(7014), + [anon_sym_noreturn] = ACTIONS(7014), + [anon_sym__Nonnull] = ACTIONS(7014), + [anon_sym_mutable] = ACTIONS(7014), + [anon_sym_constinit] = ACTIONS(7014), + [anon_sym_consteval] = ACTIONS(7014), + [anon_sym_alignas] = ACTIONS(7026), + [anon_sym__Alignas] = ACTIONS(7026), + [anon_sym_QMARK] = ACTIONS(7391), + [anon_sym_STAR_EQ] = ACTIONS(7391), + [anon_sym_SLASH_EQ] = ACTIONS(7391), + [anon_sym_PERCENT_EQ] = ACTIONS(7391), + [anon_sym_PLUS_EQ] = ACTIONS(7391), + [anon_sym_DASH_EQ] = ACTIONS(7391), + [anon_sym_LT_LT_EQ] = ACTIONS(7391), + [anon_sym_GT_GT_EQ] = ACTIONS(7391), + [anon_sym_AMP_EQ] = ACTIONS(7391), + [anon_sym_CARET_EQ] = ACTIONS(7391), + [anon_sym_PIPE_EQ] = ACTIONS(7391), + [anon_sym_and_eq] = ACTIONS(7391), + [anon_sym_or_eq] = ACTIONS(7391), + [anon_sym_xor_eq] = ACTIONS(7391), + [anon_sym_LT_EQ_GT] = ACTIONS(7391), + [anon_sym_or] = ACTIONS(7393), + [anon_sym_and] = ACTIONS(7393), + [anon_sym_bitor] = ACTIONS(7391), + [anon_sym_xor] = ACTIONS(7393), + [anon_sym_bitand] = ACTIONS(7391), + [anon_sym_not_eq] = ACTIONS(7391), + [anon_sym_DASH_DASH] = ACTIONS(7391), + [anon_sym_PLUS_PLUS] = ACTIONS(7391), + [anon_sym_DOT] = ACTIONS(7393), + [anon_sym_DOT_STAR] = ACTIONS(7391), + [anon_sym_DASH_GT] = ACTIONS(7393), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7201), - [anon_sym_override] = ACTIONS(7201), - [anon_sym_GT2] = ACTIONS(7201), - [anon_sym_requires] = ACTIONS(7201), - }, - [STATE(2346)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7215), - [anon_sym_COMMA] = ACTIONS(7215), - [anon_sym_LPAREN2] = ACTIONS(7215), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_STAR] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7213), - [anon_sym_PERCENT] = ACTIONS(7213), - [anon_sym_PIPE_PIPE] = ACTIONS(7215), - [anon_sym_AMP_AMP] = ACTIONS(7215), - [anon_sym_PIPE] = ACTIONS(7213), - [anon_sym_CARET] = ACTIONS(7213), - [anon_sym_AMP] = ACTIONS(7213), - [anon_sym_EQ_EQ] = ACTIONS(7215), - [anon_sym_BANG_EQ] = ACTIONS(7215), - [anon_sym_GT] = ACTIONS(7213), - [anon_sym_GT_EQ] = ACTIONS(7213), - [anon_sym_LT_EQ] = ACTIONS(7213), - [anon_sym_LT] = ACTIONS(7213), - [anon_sym_LT_LT] = ACTIONS(7213), - [anon_sym_GT_GT] = ACTIONS(7213), - [anon_sym___extension__] = ACTIONS(7215), - [anon_sym___attribute__] = ACTIONS(7215), - [anon_sym___attribute] = ACTIONS(7213), - [anon_sym_LBRACE] = ACTIONS(7215), - [anon_sym_signed] = ACTIONS(7908), - [anon_sym_unsigned] = ACTIONS(7908), - [anon_sym_long] = ACTIONS(7908), - [anon_sym_short] = ACTIONS(7908), - [anon_sym_LBRACK] = ACTIONS(7215), - [anon_sym_EQ] = ACTIONS(7213), - [anon_sym_const] = ACTIONS(7213), - [anon_sym_constexpr] = ACTIONS(7215), - [anon_sym_volatile] = ACTIONS(7215), - [anon_sym_restrict] = ACTIONS(7215), - [anon_sym___restrict__] = ACTIONS(7215), - [anon_sym__Atomic] = ACTIONS(7215), - [anon_sym__Noreturn] = ACTIONS(7215), - [anon_sym_noreturn] = ACTIONS(7215), - [anon_sym__Nonnull] = ACTIONS(7215), - [anon_sym_mutable] = ACTIONS(7215), - [anon_sym_constinit] = ACTIONS(7215), - [anon_sym_consteval] = ACTIONS(7215), - [anon_sym_alignas] = ACTIONS(7215), - [anon_sym__Alignas] = ACTIONS(7215), - [anon_sym_QMARK] = ACTIONS(7215), - [anon_sym_STAR_EQ] = ACTIONS(7215), - [anon_sym_SLASH_EQ] = ACTIONS(7215), - [anon_sym_PERCENT_EQ] = ACTIONS(7215), - [anon_sym_PLUS_EQ] = ACTIONS(7215), - [anon_sym_DASH_EQ] = ACTIONS(7215), - [anon_sym_LT_LT_EQ] = ACTIONS(7215), - [anon_sym_GT_GT_EQ] = ACTIONS(7213), - [anon_sym_AMP_EQ] = ACTIONS(7215), - [anon_sym_CARET_EQ] = ACTIONS(7215), - [anon_sym_PIPE_EQ] = ACTIONS(7215), - [anon_sym_and_eq] = ACTIONS(7215), - [anon_sym_or_eq] = ACTIONS(7215), - [anon_sym_xor_eq] = ACTIONS(7215), - [anon_sym_LT_EQ_GT] = ACTIONS(7215), - [anon_sym_or] = ACTIONS(7213), - [anon_sym_and] = ACTIONS(7213), - [anon_sym_bitor] = ACTIONS(7215), - [anon_sym_xor] = ACTIONS(7213), - [anon_sym_bitand] = ACTIONS(7215), - [anon_sym_not_eq] = ACTIONS(7215), - [anon_sym_DASH_DASH] = ACTIONS(7215), - [anon_sym_PLUS_PLUS] = ACTIONS(7215), - [anon_sym_DOT] = ACTIONS(7213), - [anon_sym_DOT_STAR] = ACTIONS(7215), - [anon_sym_DASH_GT] = ACTIONS(7215), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7215), - [anon_sym_override] = ACTIONS(7215), - [anon_sym_GT2] = ACTIONS(7215), - [anon_sym_requires] = ACTIONS(7215), + [anon_sym_final] = ACTIONS(7391), + [anon_sym_override] = ACTIONS(7391), + [anon_sym_requires] = ACTIONS(7391), + [anon_sym_DASH_GT_STAR] = ACTIONS(7391), }, - [STATE(2347)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7241), - [anon_sym_COMMA] = ACTIONS(7241), - [anon_sym_LPAREN2] = ACTIONS(7241), - [anon_sym_DASH] = ACTIONS(7239), - [anon_sym_PLUS] = ACTIONS(7239), - [anon_sym_STAR] = ACTIONS(7239), - [anon_sym_SLASH] = ACTIONS(7239), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_PIPE_PIPE] = ACTIONS(7241), - [anon_sym_AMP_AMP] = ACTIONS(7241), - [anon_sym_PIPE] = ACTIONS(7239), - [anon_sym_CARET] = ACTIONS(7239), - [anon_sym_AMP] = ACTIONS(7239), - [anon_sym_EQ_EQ] = ACTIONS(7241), - [anon_sym_BANG_EQ] = ACTIONS(7241), - [anon_sym_GT] = ACTIONS(7239), - [anon_sym_GT_EQ] = ACTIONS(7239), - [anon_sym_LT_EQ] = ACTIONS(7239), - [anon_sym_LT] = ACTIONS(7239), - [anon_sym_LT_LT] = ACTIONS(7239), - [anon_sym_GT_GT] = ACTIONS(7239), - [anon_sym___extension__] = ACTIONS(7241), - [anon_sym___attribute__] = ACTIONS(7241), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_LBRACE] = ACTIONS(7241), - [anon_sym_signed] = ACTIONS(7910), - [anon_sym_unsigned] = ACTIONS(7910), - [anon_sym_long] = ACTIONS(7910), - [anon_sym_short] = ACTIONS(7910), - [anon_sym_LBRACK] = ACTIONS(7241), - [anon_sym_EQ] = ACTIONS(7239), - [anon_sym_const] = ACTIONS(7239), - [anon_sym_constexpr] = ACTIONS(7241), - [anon_sym_volatile] = ACTIONS(7241), - [anon_sym_restrict] = ACTIONS(7241), - [anon_sym___restrict__] = ACTIONS(7241), - [anon_sym__Atomic] = ACTIONS(7241), - [anon_sym__Noreturn] = ACTIONS(7241), - [anon_sym_noreturn] = ACTIONS(7241), - [anon_sym__Nonnull] = ACTIONS(7241), - [anon_sym_mutable] = ACTIONS(7241), - [anon_sym_constinit] = ACTIONS(7241), - [anon_sym_consteval] = ACTIONS(7241), - [anon_sym_alignas] = ACTIONS(7241), - [anon_sym__Alignas] = ACTIONS(7241), - [anon_sym_QMARK] = ACTIONS(7241), - [anon_sym_STAR_EQ] = ACTIONS(7241), - [anon_sym_SLASH_EQ] = ACTIONS(7241), - [anon_sym_PERCENT_EQ] = ACTIONS(7241), - [anon_sym_PLUS_EQ] = ACTIONS(7241), - [anon_sym_DASH_EQ] = ACTIONS(7241), - [anon_sym_LT_LT_EQ] = ACTIONS(7241), - [anon_sym_GT_GT_EQ] = ACTIONS(7239), - [anon_sym_AMP_EQ] = ACTIONS(7241), - [anon_sym_CARET_EQ] = ACTIONS(7241), - [anon_sym_PIPE_EQ] = ACTIONS(7241), - [anon_sym_and_eq] = ACTIONS(7241), - [anon_sym_or_eq] = ACTIONS(7241), - [anon_sym_xor_eq] = ACTIONS(7241), - [anon_sym_LT_EQ_GT] = ACTIONS(7241), - [anon_sym_or] = ACTIONS(7239), - [anon_sym_and] = ACTIONS(7239), - [anon_sym_bitor] = ACTIONS(7241), - [anon_sym_xor] = ACTIONS(7239), - [anon_sym_bitand] = ACTIONS(7241), - [anon_sym_not_eq] = ACTIONS(7241), - [anon_sym_DASH_DASH] = ACTIONS(7241), - [anon_sym_PLUS_PLUS] = ACTIONS(7241), - [anon_sym_DOT] = ACTIONS(7239), - [anon_sym_DOT_STAR] = ACTIONS(7241), - [anon_sym_DASH_GT] = ACTIONS(7241), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7241), - [anon_sym_override] = ACTIONS(7241), - [anon_sym_GT2] = ACTIONS(7241), - [anon_sym_requires] = ACTIONS(7241), + [STATE(2293)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_exception_specification] = STATE(2541), + [sym__function_attributes_end] = STATE(3914), + [sym__function_postfix] = STATE(3655), + [sym_trailing_return_type] = STATE(3029), + [sym_noexcept] = STATE(2541), + [sym_throw_specifier] = STATE(2541), + [sym_requires_clause] = STATE(3655), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_RPAREN] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym_SEMI] = ACTIONS(7966), + [anon_sym___attribute__] = ACTIONS(6534), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_COLON] = ACTIONS(7968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7966), + [anon_sym_RBRACE] = ACTIONS(7966), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7966), + [anon_sym_or_eq] = ACTIONS(7966), + [anon_sym_xor_eq] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(7970), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6561), + [anon_sym_override] = ACTIONS(6561), + [anon_sym_noexcept] = ACTIONS(6546), + [anon_sym_throw] = ACTIONS(6548), + [anon_sym_requires] = ACTIONS(6563), + [anon_sym_COLON_RBRACK] = ACTIONS(7966), }, - [STATE(2348)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2280), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7251), - [anon_sym_COMMA] = ACTIONS(7251), - [anon_sym_LPAREN2] = ACTIONS(7251), - [anon_sym_DASH] = ACTIONS(7249), - [anon_sym_PLUS] = ACTIONS(7249), - [anon_sym_STAR] = ACTIONS(7249), - [anon_sym_SLASH] = ACTIONS(7249), - [anon_sym_PERCENT] = ACTIONS(7249), - [anon_sym_PIPE_PIPE] = ACTIONS(7251), - [anon_sym_AMP_AMP] = ACTIONS(7251), - [anon_sym_PIPE] = ACTIONS(7249), - [anon_sym_CARET] = ACTIONS(7249), - [anon_sym_AMP] = ACTIONS(7249), - [anon_sym_EQ_EQ] = ACTIONS(7251), - [anon_sym_BANG_EQ] = ACTIONS(7251), - [anon_sym_GT] = ACTIONS(7249), - [anon_sym_GT_EQ] = ACTIONS(7249), - [anon_sym_LT_EQ] = ACTIONS(7249), - [anon_sym_LT] = ACTIONS(7249), - [anon_sym_LT_LT] = ACTIONS(7249), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym___extension__] = ACTIONS(7251), - [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7249), - [anon_sym_LBRACE] = ACTIONS(7251), - [anon_sym_signed] = ACTIONS(7906), - [anon_sym_unsigned] = ACTIONS(7906), - [anon_sym_long] = ACTIONS(7906), - [anon_sym_short] = ACTIONS(7906), - [anon_sym_LBRACK] = ACTIONS(7251), - [anon_sym_EQ] = ACTIONS(7249), - [anon_sym_const] = ACTIONS(7249), - [anon_sym_constexpr] = ACTIONS(7251), - [anon_sym_volatile] = ACTIONS(7251), - [anon_sym_restrict] = ACTIONS(7251), - [anon_sym___restrict__] = ACTIONS(7251), - [anon_sym__Atomic] = ACTIONS(7251), - [anon_sym__Noreturn] = ACTIONS(7251), - [anon_sym_noreturn] = ACTIONS(7251), - [anon_sym__Nonnull] = ACTIONS(7251), - [anon_sym_mutable] = ACTIONS(7251), - [anon_sym_constinit] = ACTIONS(7251), - [anon_sym_consteval] = ACTIONS(7251), - [anon_sym_alignas] = ACTIONS(7251), - [anon_sym__Alignas] = ACTIONS(7251), - [anon_sym_QMARK] = ACTIONS(7251), - [anon_sym_STAR_EQ] = ACTIONS(7251), - [anon_sym_SLASH_EQ] = ACTIONS(7251), - [anon_sym_PERCENT_EQ] = ACTIONS(7251), - [anon_sym_PLUS_EQ] = ACTIONS(7251), - [anon_sym_DASH_EQ] = ACTIONS(7251), - [anon_sym_LT_LT_EQ] = ACTIONS(7251), - [anon_sym_GT_GT_EQ] = ACTIONS(7249), - [anon_sym_AMP_EQ] = ACTIONS(7251), - [anon_sym_CARET_EQ] = ACTIONS(7251), - [anon_sym_PIPE_EQ] = ACTIONS(7251), - [anon_sym_and_eq] = ACTIONS(7251), - [anon_sym_or_eq] = ACTIONS(7251), - [anon_sym_xor_eq] = ACTIONS(7251), - [anon_sym_LT_EQ_GT] = ACTIONS(7251), - [anon_sym_or] = ACTIONS(7249), - [anon_sym_and] = ACTIONS(7249), - [anon_sym_bitor] = ACTIONS(7251), - [anon_sym_xor] = ACTIONS(7249), - [anon_sym_bitand] = ACTIONS(7251), - [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7251), - [anon_sym_PLUS_PLUS] = ACTIONS(7251), - [anon_sym_DOT] = ACTIONS(7249), - [anon_sym_DOT_STAR] = ACTIONS(7251), - [anon_sym_DASH_GT] = ACTIONS(7251), + [STATE(2294)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(9768), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_explicit_object_parameter_declaration] = STATE(9768), + [sym_optional_parameter_declaration] = STATE(9768), + [sym_variadic_parameter_declaration] = STATE(9768), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6557), + [anon_sym_RPAREN] = ACTIONS(6559), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5629), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7251), - [anon_sym_override] = ACTIONS(7251), - [anon_sym_GT2] = ACTIONS(7251), - [anon_sym_requires] = ACTIONS(7251), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_this] = ACTIONS(5631), }, - [STATE(2349)] = { - [sym__abstract_declarator] = STATE(5385), - [sym_abstract_parenthesized_declarator] = STATE(4966), - [sym_abstract_pointer_declarator] = STATE(4966), - [sym_abstract_function_declarator] = STATE(4966), - [sym_abstract_array_declarator] = STATE(4966), - [sym_type_qualifier] = STATE(2293), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1873), - [sym_abstract_reference_declarator] = STATE(4966), - [sym__function_declarator_seq] = STATE(4975), - [aux_sym__type_definition_type_repeat1] = STATE(2293), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6766), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6977), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(6979), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(6981), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym___extension__] = ACTIONS(6774), - [anon_sym_LBRACK] = ACTIONS(6782), - [anon_sym_RBRACK] = ACTIONS(6497), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6774), - [anon_sym_volatile] = ACTIONS(6774), - [anon_sym_restrict] = ACTIONS(6774), - [anon_sym___restrict__] = ACTIONS(6774), - [anon_sym__Atomic] = ACTIONS(6774), - [anon_sym__Noreturn] = ACTIONS(6774), - [anon_sym_noreturn] = ACTIONS(6774), - [anon_sym__Nonnull] = ACTIONS(6774), - [anon_sym_mutable] = ACTIONS(6774), - [anon_sym_constinit] = ACTIONS(6774), - [anon_sym_consteval] = ACTIONS(6774), - [anon_sym_alignas] = ACTIONS(6784), - [anon_sym__Alignas] = ACTIONS(6784), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6497), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_and_eq] = ACTIONS(6497), - [anon_sym_or_eq] = ACTIONS(6497), - [anon_sym_xor_eq] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), + [STATE(2295)] = { + [sym__abstract_declarator] = STATE(4571), + [sym_abstract_parenthesized_declarator] = STATE(4825), + [sym_abstract_pointer_declarator] = STATE(4825), + [sym_abstract_function_declarator] = STATE(4825), + [sym_abstract_array_declarator] = STATE(4825), + [sym_type_qualifier] = STATE(2270), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1972), + [sym_abstract_reference_declarator] = STATE(4825), + [sym__function_declarator_seq] = STATE(4934), + [aux_sym__type_definition_type_repeat1] = STATE(2270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), + [anon_sym_COMMA] = ACTIONS(7351), + [anon_sym_RPAREN] = ACTIONS(7351), + [anon_sym_LPAREN2] = ACTIONS(7006), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_PLUS] = ACTIONS(7349), + [anon_sym_STAR] = ACTIONS(7008), + [anon_sym_SLASH] = ACTIONS(7349), + [anon_sym_PERCENT] = ACTIONS(7349), + [anon_sym_PIPE_PIPE] = ACTIONS(7351), + [anon_sym_AMP_AMP] = ACTIONS(7010), + [anon_sym_PIPE] = ACTIONS(7349), + [anon_sym_CARET] = ACTIONS(7349), + [anon_sym_AMP] = ACTIONS(7012), + [anon_sym_EQ_EQ] = ACTIONS(7351), + [anon_sym_BANG_EQ] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7349), + [anon_sym_GT_EQ] = ACTIONS(7351), + [anon_sym_LT_EQ] = ACTIONS(7349), + [anon_sym_LT] = ACTIONS(7349), + [anon_sym_LT_LT] = ACTIONS(7349), + [anon_sym_GT_GT] = ACTIONS(7349), + [anon_sym___extension__] = ACTIONS(7014), + [anon_sym_LBRACK] = ACTIONS(7022), + [anon_sym_EQ] = ACTIONS(7349), + [anon_sym_const] = ACTIONS(7024), + [anon_sym_constexpr] = ACTIONS(7014), + [anon_sym_volatile] = ACTIONS(7014), + [anon_sym_restrict] = ACTIONS(7014), + [anon_sym___restrict__] = ACTIONS(7014), + [anon_sym__Atomic] = ACTIONS(7014), + [anon_sym__Noreturn] = ACTIONS(7014), + [anon_sym_noreturn] = ACTIONS(7014), + [anon_sym__Nonnull] = ACTIONS(7014), + [anon_sym_mutable] = ACTIONS(7014), + [anon_sym_constinit] = ACTIONS(7014), + [anon_sym_consteval] = ACTIONS(7014), + [anon_sym_alignas] = ACTIONS(7026), + [anon_sym__Alignas] = ACTIONS(7026), + [anon_sym_QMARK] = ACTIONS(7351), + [anon_sym_STAR_EQ] = ACTIONS(7351), + [anon_sym_SLASH_EQ] = ACTIONS(7351), + [anon_sym_PERCENT_EQ] = ACTIONS(7351), + [anon_sym_PLUS_EQ] = ACTIONS(7351), + [anon_sym_DASH_EQ] = ACTIONS(7351), + [anon_sym_LT_LT_EQ] = ACTIONS(7351), + [anon_sym_GT_GT_EQ] = ACTIONS(7351), + [anon_sym_AMP_EQ] = ACTIONS(7351), + [anon_sym_CARET_EQ] = ACTIONS(7351), + [anon_sym_PIPE_EQ] = ACTIONS(7351), + [anon_sym_and_eq] = ACTIONS(7351), + [anon_sym_or_eq] = ACTIONS(7351), + [anon_sym_xor_eq] = ACTIONS(7351), + [anon_sym_LT_EQ_GT] = ACTIONS(7351), + [anon_sym_or] = ACTIONS(7349), + [anon_sym_and] = ACTIONS(7349), + [anon_sym_bitor] = ACTIONS(7351), + [anon_sym_xor] = ACTIONS(7349), + [anon_sym_bitand] = ACTIONS(7351), + [anon_sym_not_eq] = ACTIONS(7351), + [anon_sym_DASH_DASH] = ACTIONS(7351), + [anon_sym_PLUS_PLUS] = ACTIONS(7351), + [anon_sym_DOT] = ACTIONS(7349), + [anon_sym_DOT_STAR] = ACTIONS(7351), + [anon_sym_DASH_GT] = ACTIONS(7349), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7351), + [anon_sym_override] = ACTIONS(7351), + [anon_sym_requires] = ACTIONS(7351), + [anon_sym_DASH_GT_STAR] = ACTIONS(7351), }, - [STATE(2350)] = { - [sym__declaration_modifiers] = STATE(5030), - [sym_attribute_specifier] = STATE(5030), - [sym_attribute_declaration] = STATE(5030), - [sym_ms_declspec_modifier] = STATE(5030), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8625), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(5030), - [sym_type_qualifier] = STATE(5030), - [sym_alignas_qualifier] = STATE(4644), - [sym_decltype] = STATE(10976), - [sym_explicit_function_specifier] = STATE(5030), - [sym_operator_cast] = STATE(9046), - [sym__constructor_specifiers] = STATE(5030), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7746), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_operator_cast_identifier] = STATE(9046), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_operator_cast_definition_repeat1] = STATE(5030), - [sym_identifier] = ACTIONS(7868), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(7870), - [anon_sym_virtual] = ACTIONS(7872), - [anon_sym_extern] = ACTIONS(7874), - [anon_sym___attribute__] = ACTIONS(7876), - [anon_sym___attribute] = ACTIONS(7876), - [anon_sym_COLON_COLON] = ACTIONS(7878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7880), - [anon_sym___declspec] = ACTIONS(7882), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(7874), - [anon_sym_register] = ACTIONS(7874), - [anon_sym_inline] = ACTIONS(7874), - [anon_sym___inline] = ACTIONS(7874), - [anon_sym___inline__] = ACTIONS(7874), - [anon_sym___forceinline] = ACTIONS(7874), - [anon_sym_thread_local] = ACTIONS(7874), - [anon_sym___thread] = ACTIONS(7874), - [anon_sym_const] = ACTIONS(7870), - [anon_sym_constexpr] = ACTIONS(7870), - [anon_sym_volatile] = ACTIONS(7870), - [anon_sym_restrict] = ACTIONS(7870), - [anon_sym___restrict__] = ACTIONS(7870), - [anon_sym__Atomic] = ACTIONS(7870), - [anon_sym__Noreturn] = ACTIONS(7870), - [anon_sym_noreturn] = ACTIONS(7870), - [anon_sym__Nonnull] = ACTIONS(7870), - [anon_sym_mutable] = ACTIONS(7870), - [anon_sym_constinit] = ACTIONS(7870), - [anon_sym_consteval] = ACTIONS(7870), - [anon_sym_alignas] = ACTIONS(7884), - [anon_sym__Alignas] = ACTIONS(7884), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), - }, - [STATE(2351)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), - [anon_sym_COMMA] = ACTIONS(6260), - [anon_sym_RPAREN] = ACTIONS(6260), - [anon_sym_LPAREN2] = ACTIONS(6260), - [anon_sym_DASH] = ACTIONS(6258), - [anon_sym_PLUS] = ACTIONS(6258), - [anon_sym_STAR] = ACTIONS(6258), - [anon_sym_SLASH] = ACTIONS(6258), - [anon_sym_PERCENT] = ACTIONS(6258), - [anon_sym_PIPE_PIPE] = ACTIONS(6260), - [anon_sym_AMP_AMP] = ACTIONS(6260), - [anon_sym_PIPE] = ACTIONS(6258), - [anon_sym_CARET] = ACTIONS(6258), - [anon_sym_AMP] = ACTIONS(6258), - [anon_sym_EQ_EQ] = ACTIONS(6260), - [anon_sym_BANG_EQ] = ACTIONS(6260), - [anon_sym_GT] = ACTIONS(6258), - [anon_sym_GT_EQ] = ACTIONS(6260), - [anon_sym_LT_EQ] = ACTIONS(6258), - [anon_sym_LT] = ACTIONS(6258), - [anon_sym_LT_LT] = ACTIONS(6258), - [anon_sym_GT_GT] = ACTIONS(6258), - [anon_sym___extension__] = ACTIONS(6260), - [anon_sym___attribute__] = ACTIONS(6260), - [anon_sym___attribute] = ACTIONS(6258), - [anon_sym_COLON] = ACTIONS(6258), - [anon_sym_COLON_COLON] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6260), - [anon_sym_LBRACK] = ACTIONS(6260), - [anon_sym_EQ] = ACTIONS(6258), - [anon_sym_const] = ACTIONS(6258), - [anon_sym_constexpr] = ACTIONS(6260), - [anon_sym_volatile] = ACTIONS(6260), - [anon_sym_restrict] = ACTIONS(6260), - [anon_sym___restrict__] = ACTIONS(6260), - [anon_sym__Atomic] = ACTIONS(6260), - [anon_sym__Noreturn] = ACTIONS(6260), - [anon_sym_noreturn] = ACTIONS(6260), - [anon_sym__Nonnull] = ACTIONS(6260), - [anon_sym_mutable] = ACTIONS(6260), - [anon_sym_constinit] = ACTIONS(6260), - [anon_sym_consteval] = ACTIONS(6260), - [anon_sym_alignas] = ACTIONS(6260), - [anon_sym__Alignas] = ACTIONS(6260), - [anon_sym_QMARK] = ACTIONS(6260), - [anon_sym_STAR_EQ] = ACTIONS(6260), - [anon_sym_SLASH_EQ] = ACTIONS(6260), - [anon_sym_PERCENT_EQ] = ACTIONS(6260), - [anon_sym_PLUS_EQ] = ACTIONS(6260), - [anon_sym_DASH_EQ] = ACTIONS(6260), - [anon_sym_LT_LT_EQ] = ACTIONS(6260), - [anon_sym_GT_GT_EQ] = ACTIONS(6260), - [anon_sym_AMP_EQ] = ACTIONS(6260), - [anon_sym_CARET_EQ] = ACTIONS(6260), - [anon_sym_PIPE_EQ] = ACTIONS(6260), - [anon_sym_and_eq] = ACTIONS(6260), - [anon_sym_or_eq] = ACTIONS(6260), - [anon_sym_xor_eq] = ACTIONS(6260), - [anon_sym_LT_EQ_GT] = ACTIONS(6260), - [anon_sym_or] = ACTIONS(6258), - [anon_sym_and] = ACTIONS(6258), - [anon_sym_bitor] = ACTIONS(6260), - [anon_sym_xor] = ACTIONS(6258), - [anon_sym_bitand] = ACTIONS(6260), - [anon_sym_not_eq] = ACTIONS(6260), - [anon_sym_DASH_DASH] = ACTIONS(6260), - [anon_sym_PLUS_PLUS] = ACTIONS(6260), - [anon_sym_DOT] = ACTIONS(6258), - [anon_sym_DOT_STAR] = ACTIONS(6260), - [anon_sym_DASH_GT] = ACTIONS(6258), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6260), - [anon_sym_decltype] = ACTIONS(6260), - [anon_sym_final] = ACTIONS(6260), - [anon_sym_override] = ACTIONS(6260), - [anon_sym_requires] = ACTIONS(6260), - [anon_sym_DASH_GT_STAR] = ACTIONS(6260), - }, - [STATE(2352)] = { - [sym__abstract_declarator] = STATE(5303), - [sym_abstract_parenthesized_declarator] = STATE(4966), - [sym_abstract_pointer_declarator] = STATE(4966), - [sym_abstract_function_declarator] = STATE(4966), - [sym_abstract_array_declarator] = STATE(4966), - [sym_type_qualifier] = STATE(2293), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1873), - [sym_abstract_reference_declarator] = STATE(4966), - [sym__function_declarator_seq] = STATE(4975), - [aux_sym__type_definition_type_repeat1] = STATE(2293), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), - [anon_sym_COMMA] = ACTIONS(7003), - [anon_sym_LPAREN2] = ACTIONS(6766), - [anon_sym_DASH] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(6977), - [anon_sym_SLASH] = ACTIONS(7005), - [anon_sym_PERCENT] = ACTIONS(7005), - [anon_sym_PIPE_PIPE] = ACTIONS(7003), - [anon_sym_AMP_AMP] = ACTIONS(6979), - [anon_sym_PIPE] = ACTIONS(7005), - [anon_sym_CARET] = ACTIONS(7005), - [anon_sym_AMP] = ACTIONS(6981), - [anon_sym_EQ_EQ] = ACTIONS(7003), - [anon_sym_BANG_EQ] = ACTIONS(7003), - [anon_sym_GT] = ACTIONS(7005), - [anon_sym_GT_EQ] = ACTIONS(7003), - [anon_sym_LT_EQ] = ACTIONS(7005), - [anon_sym_LT] = ACTIONS(7005), - [anon_sym_LT_LT] = ACTIONS(7005), - [anon_sym_GT_GT] = ACTIONS(7005), - [anon_sym___extension__] = ACTIONS(6774), - [anon_sym_LBRACK] = ACTIONS(6782), - [anon_sym_RBRACK] = ACTIONS(7003), - [anon_sym_EQ] = ACTIONS(7005), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6774), - [anon_sym_volatile] = ACTIONS(6774), - [anon_sym_restrict] = ACTIONS(6774), - [anon_sym___restrict__] = ACTIONS(6774), - [anon_sym__Atomic] = ACTIONS(6774), - [anon_sym__Noreturn] = ACTIONS(6774), - [anon_sym_noreturn] = ACTIONS(6774), - [anon_sym__Nonnull] = ACTIONS(6774), - [anon_sym_mutable] = ACTIONS(6774), - [anon_sym_constinit] = ACTIONS(6774), - [anon_sym_consteval] = ACTIONS(6774), - [anon_sym_alignas] = ACTIONS(6784), - [anon_sym__Alignas] = ACTIONS(6784), - [anon_sym_QMARK] = ACTIONS(7003), - [anon_sym_STAR_EQ] = ACTIONS(7003), - [anon_sym_SLASH_EQ] = ACTIONS(7003), - [anon_sym_PERCENT_EQ] = ACTIONS(7003), - [anon_sym_PLUS_EQ] = ACTIONS(7003), - [anon_sym_DASH_EQ] = ACTIONS(7003), - [anon_sym_LT_LT_EQ] = ACTIONS(7003), - [anon_sym_GT_GT_EQ] = ACTIONS(7003), - [anon_sym_AMP_EQ] = ACTIONS(7003), - [anon_sym_CARET_EQ] = ACTIONS(7003), - [anon_sym_PIPE_EQ] = ACTIONS(7003), - [anon_sym_and_eq] = ACTIONS(7003), - [anon_sym_or_eq] = ACTIONS(7003), - [anon_sym_xor_eq] = ACTIONS(7003), - [anon_sym_LT_EQ_GT] = ACTIONS(7003), - [anon_sym_or] = ACTIONS(7005), - [anon_sym_and] = ACTIONS(7005), - [anon_sym_bitor] = ACTIONS(7003), - [anon_sym_xor] = ACTIONS(7005), - [anon_sym_bitand] = ACTIONS(7003), - [anon_sym_not_eq] = ACTIONS(7003), - [anon_sym_DASH_DASH] = ACTIONS(7003), - [anon_sym_PLUS_PLUS] = ACTIONS(7003), - [anon_sym_DOT] = ACTIONS(7005), - [anon_sym_DOT_STAR] = ACTIONS(7003), - [anon_sym_DASH_GT] = ACTIONS(7003), + [STATE(2296)] = { + [sym__abstract_declarator] = STATE(4599), + [sym_abstract_parenthesized_declarator] = STATE(4825), + [sym_abstract_pointer_declarator] = STATE(4825), + [sym_abstract_function_declarator] = STATE(4825), + [sym_abstract_array_declarator] = STATE(4825), + [sym_type_qualifier] = STATE(2298), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1972), + [sym_abstract_reference_declarator] = STATE(4825), + [sym__function_declarator_seq] = STATE(4934), + [aux_sym__type_definition_type_repeat1] = STATE(2298), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_RPAREN] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(7006), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(7008), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(7010), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(7012), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(7014), + [anon_sym_LBRACK] = ACTIONS(7022), + [anon_sym_EQ] = ACTIONS(7341), + [anon_sym_const] = ACTIONS(7024), + [anon_sym_constexpr] = ACTIONS(7014), + [anon_sym_volatile] = ACTIONS(7014), + [anon_sym_restrict] = ACTIONS(7014), + [anon_sym___restrict__] = ACTIONS(7014), + [anon_sym__Atomic] = ACTIONS(7014), + [anon_sym__Noreturn] = ACTIONS(7014), + [anon_sym_noreturn] = ACTIONS(7014), + [anon_sym__Nonnull] = ACTIONS(7014), + [anon_sym_mutable] = ACTIONS(7014), + [anon_sym_constinit] = ACTIONS(7014), + [anon_sym_consteval] = ACTIONS(7014), + [anon_sym_alignas] = ACTIONS(7026), + [anon_sym__Alignas] = ACTIONS(7026), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_STAR_EQ] = ACTIONS(7343), + [anon_sym_SLASH_EQ] = ACTIONS(7343), + [anon_sym_PERCENT_EQ] = ACTIONS(7343), + [anon_sym_PLUS_EQ] = ACTIONS(7343), + [anon_sym_DASH_EQ] = ACTIONS(7343), + [anon_sym_LT_LT_EQ] = ACTIONS(7343), + [anon_sym_GT_GT_EQ] = ACTIONS(7343), + [anon_sym_AMP_EQ] = ACTIONS(7343), + [anon_sym_CARET_EQ] = ACTIONS(7343), + [anon_sym_PIPE_EQ] = ACTIONS(7343), + [anon_sym_and_eq] = ACTIONS(7343), + [anon_sym_or_eq] = ACTIONS(7343), + [anon_sym_xor_eq] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7341), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7343), + [anon_sym_override] = ACTIONS(7343), + [anon_sym_requires] = ACTIONS(7343), + [anon_sym_DASH_GT_STAR] = ACTIONS(7343), }, - [STATE(2353)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6788), - [anon_sym_COMMA] = ACTIONS(6788), - [anon_sym_LPAREN2] = ACTIONS(6788), - [anon_sym_DASH] = ACTIONS(6786), - [anon_sym_PLUS] = ACTIONS(6786), - [anon_sym_STAR] = ACTIONS(6786), - [anon_sym_SLASH] = ACTIONS(6786), - [anon_sym_PERCENT] = ACTIONS(6786), - [anon_sym_PIPE_PIPE] = ACTIONS(6788), - [anon_sym_AMP_AMP] = ACTIONS(6788), - [anon_sym_PIPE] = ACTIONS(6786), - [anon_sym_CARET] = ACTIONS(6786), - [anon_sym_AMP] = ACTIONS(6786), - [anon_sym_EQ_EQ] = ACTIONS(6788), - [anon_sym_BANG_EQ] = ACTIONS(6788), - [anon_sym_GT] = ACTIONS(6786), - [anon_sym_GT_EQ] = ACTIONS(6788), - [anon_sym_LT_EQ] = ACTIONS(6786), - [anon_sym_LT] = ACTIONS(6786), - [anon_sym_LT_LT] = ACTIONS(6786), - [anon_sym_GT_GT] = ACTIONS(6786), - [anon_sym___extension__] = ACTIONS(6788), - [anon_sym___attribute__] = ACTIONS(6788), - [anon_sym___attribute] = ACTIONS(6786), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6788), - [anon_sym_LBRACK] = ACTIONS(6786), - [anon_sym_RBRACK] = ACTIONS(6788), - [anon_sym_EQ] = ACTIONS(6786), - [anon_sym_const] = ACTIONS(6786), - [anon_sym_constexpr] = ACTIONS(6788), - [anon_sym_volatile] = ACTIONS(6788), - [anon_sym_restrict] = ACTIONS(6788), - [anon_sym___restrict__] = ACTIONS(6788), - [anon_sym__Atomic] = ACTIONS(6788), - [anon_sym__Noreturn] = ACTIONS(6788), - [anon_sym_noreturn] = ACTIONS(6788), - [anon_sym__Nonnull] = ACTIONS(6788), - [anon_sym_mutable] = ACTIONS(6788), - [anon_sym_constinit] = ACTIONS(6788), - [anon_sym_consteval] = ACTIONS(6788), - [anon_sym_alignas] = ACTIONS(6788), - [anon_sym__Alignas] = ACTIONS(6788), - [anon_sym_QMARK] = ACTIONS(6788), - [anon_sym_STAR_EQ] = ACTIONS(6788), - [anon_sym_SLASH_EQ] = ACTIONS(6788), - [anon_sym_PERCENT_EQ] = ACTIONS(6788), - [anon_sym_PLUS_EQ] = ACTIONS(6788), - [anon_sym_DASH_EQ] = ACTIONS(6788), - [anon_sym_LT_LT_EQ] = ACTIONS(6788), - [anon_sym_GT_GT_EQ] = ACTIONS(6788), - [anon_sym_AMP_EQ] = ACTIONS(6788), - [anon_sym_CARET_EQ] = ACTIONS(6788), - [anon_sym_PIPE_EQ] = ACTIONS(6788), - [anon_sym_and_eq] = ACTIONS(6788), - [anon_sym_or_eq] = ACTIONS(6788), - [anon_sym_xor_eq] = ACTIONS(6788), - [anon_sym_LT_EQ_GT] = ACTIONS(6788), - [anon_sym_or] = ACTIONS(6786), - [anon_sym_and] = ACTIONS(6786), - [anon_sym_bitor] = ACTIONS(6788), - [anon_sym_xor] = ACTIONS(6786), - [anon_sym_bitand] = ACTIONS(6788), - [anon_sym_not_eq] = ACTIONS(6788), - [anon_sym_DASH_DASH] = ACTIONS(6788), - [anon_sym_PLUS_PLUS] = ACTIONS(6788), - [anon_sym_asm] = ACTIONS(6788), - [anon_sym___asm__] = ACTIONS(6788), - [anon_sym___asm] = ACTIONS(6786), - [anon_sym_DOT] = ACTIONS(6786), - [anon_sym_DOT_STAR] = ACTIONS(6788), - [anon_sym_DASH_GT] = ACTIONS(6788), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6788), - [anon_sym_override] = ACTIONS(6788), - [anon_sym_noexcept] = ACTIONS(6788), - [anon_sym_throw] = ACTIONS(6788), - [anon_sym_requires] = ACTIONS(6788), - }, - [STATE(2354)] = { - [sym__declaration_modifiers] = STATE(5030), - [sym_attribute_specifier] = STATE(5030), - [sym_attribute_declaration] = STATE(5030), - [sym_ms_declspec_modifier] = STATE(5030), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8660), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(5030), - [sym_type_qualifier] = STATE(5030), - [sym_alignas_qualifier] = STATE(4644), - [sym_decltype] = STATE(10976), - [sym_explicit_function_specifier] = STATE(5030), - [sym_operator_cast] = STATE(9046), - [sym__constructor_specifiers] = STATE(5030), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7746), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_operator_cast_identifier] = STATE(9046), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_operator_cast_definition_repeat1] = STATE(5030), - [sym_identifier] = ACTIONS(7868), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(7870), - [anon_sym_virtual] = ACTIONS(7872), - [anon_sym_extern] = ACTIONS(7874), - [anon_sym___attribute__] = ACTIONS(7876), - [anon_sym___attribute] = ACTIONS(7876), - [anon_sym_COLON_COLON] = ACTIONS(7878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7880), - [anon_sym___declspec] = ACTIONS(7882), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(7874), - [anon_sym_register] = ACTIONS(7874), - [anon_sym_inline] = ACTIONS(7874), - [anon_sym___inline] = ACTIONS(7874), - [anon_sym___inline__] = ACTIONS(7874), - [anon_sym___forceinline] = ACTIONS(7874), - [anon_sym_thread_local] = ACTIONS(7874), - [anon_sym___thread] = ACTIONS(7874), - [anon_sym_const] = ACTIONS(7870), - [anon_sym_constexpr] = ACTIONS(7870), - [anon_sym_volatile] = ACTIONS(7870), - [anon_sym_restrict] = ACTIONS(7870), - [anon_sym___restrict__] = ACTIONS(7870), - [anon_sym__Atomic] = ACTIONS(7870), - [anon_sym__Noreturn] = ACTIONS(7870), - [anon_sym_noreturn] = ACTIONS(7870), - [anon_sym__Nonnull] = ACTIONS(7870), - [anon_sym_mutable] = ACTIONS(7870), - [anon_sym_constinit] = ACTIONS(7870), - [anon_sym_consteval] = ACTIONS(7870), - [anon_sym_alignas] = ACTIONS(7884), - [anon_sym__Alignas] = ACTIONS(7884), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), - }, - [STATE(2355)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6792), - [anon_sym_COMMA] = ACTIONS(6792), - [anon_sym_LPAREN2] = ACTIONS(6792), - [anon_sym_DASH] = ACTIONS(6790), - [anon_sym_PLUS] = ACTIONS(6790), - [anon_sym_STAR] = ACTIONS(6790), - [anon_sym_SLASH] = ACTIONS(6790), - [anon_sym_PERCENT] = ACTIONS(6790), - [anon_sym_PIPE_PIPE] = ACTIONS(6792), - [anon_sym_AMP_AMP] = ACTIONS(6792), - [anon_sym_PIPE] = ACTIONS(6790), - [anon_sym_CARET] = ACTIONS(6790), - [anon_sym_AMP] = ACTIONS(6790), - [anon_sym_EQ_EQ] = ACTIONS(6792), - [anon_sym_BANG_EQ] = ACTIONS(6792), - [anon_sym_GT] = ACTIONS(6790), - [anon_sym_GT_EQ] = ACTIONS(6790), - [anon_sym_LT_EQ] = ACTIONS(6790), - [anon_sym_LT] = ACTIONS(6790), - [anon_sym_LT_LT] = ACTIONS(6790), - [anon_sym_GT_GT] = ACTIONS(6790), - [anon_sym___extension__] = ACTIONS(6792), - [anon_sym___attribute__] = ACTIONS(6792), - [anon_sym___attribute] = ACTIONS(6790), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), - [anon_sym_LBRACK] = ACTIONS(6790), - [anon_sym_EQ] = ACTIONS(6790), - [anon_sym_const] = ACTIONS(6790), - [anon_sym_constexpr] = ACTIONS(6792), - [anon_sym_volatile] = ACTIONS(6792), - [anon_sym_restrict] = ACTIONS(6792), - [anon_sym___restrict__] = ACTIONS(6792), - [anon_sym__Atomic] = ACTIONS(6792), - [anon_sym__Noreturn] = ACTIONS(6792), - [anon_sym_noreturn] = ACTIONS(6792), - [anon_sym__Nonnull] = ACTIONS(6792), - [anon_sym_mutable] = ACTIONS(6792), - [anon_sym_constinit] = ACTIONS(6792), - [anon_sym_consteval] = ACTIONS(6792), - [anon_sym_alignas] = ACTIONS(6792), - [anon_sym__Alignas] = ACTIONS(6792), - [anon_sym_QMARK] = ACTIONS(6792), - [anon_sym_STAR_EQ] = ACTIONS(6792), - [anon_sym_SLASH_EQ] = ACTIONS(6792), - [anon_sym_PERCENT_EQ] = ACTIONS(6792), - [anon_sym_PLUS_EQ] = ACTIONS(6792), - [anon_sym_DASH_EQ] = ACTIONS(6792), - [anon_sym_LT_LT_EQ] = ACTIONS(6792), - [anon_sym_GT_GT_EQ] = ACTIONS(6790), - [anon_sym_AMP_EQ] = ACTIONS(6792), - [anon_sym_CARET_EQ] = ACTIONS(6792), - [anon_sym_PIPE_EQ] = ACTIONS(6792), - [anon_sym_and_eq] = ACTIONS(6792), - [anon_sym_or_eq] = ACTIONS(6792), - [anon_sym_xor_eq] = ACTIONS(6792), - [anon_sym_LT_EQ_GT] = ACTIONS(6792), - [anon_sym_or] = ACTIONS(6790), - [anon_sym_and] = ACTIONS(6790), - [anon_sym_bitor] = ACTIONS(6792), - [anon_sym_xor] = ACTIONS(6790), - [anon_sym_bitand] = ACTIONS(6792), - [anon_sym_not_eq] = ACTIONS(6792), - [anon_sym_DASH_DASH] = ACTIONS(6792), - [anon_sym_PLUS_PLUS] = ACTIONS(6792), - [anon_sym_asm] = ACTIONS(6792), - [anon_sym___asm__] = ACTIONS(6792), - [anon_sym___asm] = ACTIONS(6790), - [anon_sym_DOT] = ACTIONS(6790), - [anon_sym_DOT_STAR] = ACTIONS(6792), - [anon_sym_DASH_GT] = ACTIONS(6792), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6792), - [anon_sym_override] = ACTIONS(6792), - [anon_sym_GT2] = ACTIONS(6792), - [anon_sym_noexcept] = ACTIONS(6792), - [anon_sym_throw] = ACTIONS(6792), - [anon_sym_requires] = ACTIONS(6792), - }, - [STATE(2356)] = { - [sym_type_qualifier] = STATE(2375), - [sym_alignas_qualifier] = STATE(2559), - [aux_sym__type_definition_type_repeat1] = STATE(2375), - [sym_identifier] = ACTIONS(6521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6523), - [anon_sym_COMMA] = ACTIONS(6523), - [anon_sym_RPAREN] = ACTIONS(6523), - [aux_sym_preproc_if_token2] = ACTIONS(6523), - [aux_sym_preproc_else_token1] = ACTIONS(6523), - [aux_sym_preproc_elif_token1] = ACTIONS(6521), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6523), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6523), - [anon_sym_LPAREN2] = ACTIONS(6523), - [anon_sym_DASH] = ACTIONS(6521), - [anon_sym_PLUS] = ACTIONS(6521), - [anon_sym_STAR] = ACTIONS(6523), - [anon_sym_SLASH] = ACTIONS(6521), - [anon_sym_PERCENT] = ACTIONS(6523), - [anon_sym_PIPE_PIPE] = ACTIONS(6523), - [anon_sym_AMP_AMP] = ACTIONS(6523), - [anon_sym_PIPE] = ACTIONS(6521), - [anon_sym_CARET] = ACTIONS(6523), - [anon_sym_AMP] = ACTIONS(6521), - [anon_sym_EQ_EQ] = ACTIONS(6523), - [anon_sym_BANG_EQ] = ACTIONS(6523), - [anon_sym_GT] = ACTIONS(6521), - [anon_sym_GT_EQ] = ACTIONS(6523), - [anon_sym_LT_EQ] = ACTIONS(6521), - [anon_sym_LT] = ACTIONS(6521), - [anon_sym_LT_LT] = ACTIONS(6523), - [anon_sym_GT_GT] = ACTIONS(6523), - [anon_sym_SEMI] = ACTIONS(6523), - [anon_sym___extension__] = ACTIONS(6857), - [anon_sym___attribute__] = ACTIONS(6521), - [anon_sym___attribute] = ACTIONS(6521), - [anon_sym_COLON] = ACTIONS(6521), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6523), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6523), - [anon_sym_RBRACE] = ACTIONS(6523), - [anon_sym_LBRACK] = ACTIONS(6521), - [anon_sym_const] = ACTIONS(6857), - [anon_sym_constexpr] = ACTIONS(6857), - [anon_sym_volatile] = ACTIONS(6857), - [anon_sym_restrict] = ACTIONS(6857), - [anon_sym___restrict__] = ACTIONS(6857), - [anon_sym__Atomic] = ACTIONS(6857), - [anon_sym__Noreturn] = ACTIONS(6857), - [anon_sym_noreturn] = ACTIONS(6857), - [anon_sym__Nonnull] = ACTIONS(6857), - [anon_sym_mutable] = ACTIONS(6857), - [anon_sym_constinit] = ACTIONS(6857), - [anon_sym_consteval] = ACTIONS(6857), - [anon_sym_alignas] = ACTIONS(6863), - [anon_sym__Alignas] = ACTIONS(6863), - [anon_sym_QMARK] = ACTIONS(6523), - [anon_sym_LT_EQ_GT] = ACTIONS(6523), - [anon_sym_or] = ACTIONS(6521), - [anon_sym_and] = ACTIONS(6521), - [anon_sym_bitor] = ACTIONS(6521), - [anon_sym_xor] = ACTIONS(6521), - [anon_sym_bitand] = ACTIONS(6521), - [anon_sym_not_eq] = ACTIONS(6521), - [anon_sym_DASH_DASH] = ACTIONS(6523), - [anon_sym_PLUS_PLUS] = ACTIONS(6523), - [anon_sym_asm] = ACTIONS(6521), - [anon_sym___asm__] = ACTIONS(6521), - [anon_sym___asm] = ACTIONS(6521), - [anon_sym_DOT] = ACTIONS(6521), - [anon_sym_DOT_STAR] = ACTIONS(6523), - [anon_sym_DASH_GT] = ACTIONS(6523), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6521), - [anon_sym_override] = ACTIONS(6521), - [anon_sym_noexcept] = ACTIONS(6521), - [anon_sym_throw] = ACTIONS(6521), - [anon_sym_requires] = ACTIONS(6521), - [anon_sym_COLON_RBRACK] = ACTIONS(6523), - }, - [STATE(2357)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6272), - [anon_sym_COMMA] = ACTIONS(6272), - [anon_sym_RPAREN] = ACTIONS(6272), - [anon_sym_LPAREN2] = ACTIONS(6272), - [anon_sym_DASH] = ACTIONS(6270), - [anon_sym_PLUS] = ACTIONS(6270), - [anon_sym_STAR] = ACTIONS(6270), - [anon_sym_SLASH] = ACTIONS(6270), - [anon_sym_PERCENT] = ACTIONS(6270), - [anon_sym_PIPE_PIPE] = ACTIONS(6272), - [anon_sym_AMP_AMP] = ACTIONS(6272), - [anon_sym_PIPE] = ACTIONS(6270), - [anon_sym_CARET] = ACTIONS(6270), - [anon_sym_AMP] = ACTIONS(6270), - [anon_sym_EQ_EQ] = ACTIONS(6272), - [anon_sym_BANG_EQ] = ACTIONS(6272), - [anon_sym_GT] = ACTIONS(6270), - [anon_sym_GT_EQ] = ACTIONS(6272), - [anon_sym_LT_EQ] = ACTIONS(6270), - [anon_sym_LT] = ACTIONS(6270), - [anon_sym_LT_LT] = ACTIONS(6270), - [anon_sym_GT_GT] = ACTIONS(6270), - [anon_sym___extension__] = ACTIONS(6272), - [anon_sym___attribute__] = ACTIONS(6272), - [anon_sym___attribute] = ACTIONS(6270), - [anon_sym_COLON] = ACTIONS(6270), - [anon_sym_COLON_COLON] = ACTIONS(6272), - [anon_sym_LBRACE] = ACTIONS(6272), - [anon_sym_LBRACK] = ACTIONS(6272), - [anon_sym_EQ] = ACTIONS(6270), - [anon_sym_const] = ACTIONS(6270), - [anon_sym_constexpr] = ACTIONS(6272), - [anon_sym_volatile] = ACTIONS(6272), - [anon_sym_restrict] = ACTIONS(6272), - [anon_sym___restrict__] = ACTIONS(6272), - [anon_sym__Atomic] = ACTIONS(6272), - [anon_sym__Noreturn] = ACTIONS(6272), - [anon_sym_noreturn] = ACTIONS(6272), - [anon_sym__Nonnull] = ACTIONS(6272), - [anon_sym_mutable] = ACTIONS(6272), - [anon_sym_constinit] = ACTIONS(6272), - [anon_sym_consteval] = ACTIONS(6272), - [anon_sym_alignas] = ACTIONS(6272), - [anon_sym__Alignas] = ACTIONS(6272), - [anon_sym_QMARK] = ACTIONS(6272), - [anon_sym_STAR_EQ] = ACTIONS(6272), - [anon_sym_SLASH_EQ] = ACTIONS(6272), - [anon_sym_PERCENT_EQ] = ACTIONS(6272), - [anon_sym_PLUS_EQ] = ACTIONS(6272), - [anon_sym_DASH_EQ] = ACTIONS(6272), - [anon_sym_LT_LT_EQ] = ACTIONS(6272), - [anon_sym_GT_GT_EQ] = ACTIONS(6272), - [anon_sym_AMP_EQ] = ACTIONS(6272), - [anon_sym_CARET_EQ] = ACTIONS(6272), - [anon_sym_PIPE_EQ] = ACTIONS(6272), - [anon_sym_and_eq] = ACTIONS(6272), - [anon_sym_or_eq] = ACTIONS(6272), - [anon_sym_xor_eq] = ACTIONS(6272), - [anon_sym_LT_EQ_GT] = ACTIONS(6272), - [anon_sym_or] = ACTIONS(6270), - [anon_sym_and] = ACTIONS(6270), - [anon_sym_bitor] = ACTIONS(6272), - [anon_sym_xor] = ACTIONS(6270), - [anon_sym_bitand] = ACTIONS(6272), - [anon_sym_not_eq] = ACTIONS(6272), - [anon_sym_DASH_DASH] = ACTIONS(6272), - [anon_sym_PLUS_PLUS] = ACTIONS(6272), - [anon_sym_DOT] = ACTIONS(6270), - [anon_sym_DOT_STAR] = ACTIONS(6272), - [anon_sym_DASH_GT] = ACTIONS(6270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6272), - [anon_sym_decltype] = ACTIONS(6272), - [anon_sym_final] = ACTIONS(6272), - [anon_sym_override] = ACTIONS(6272), - [anon_sym_requires] = ACTIONS(6272), - [anon_sym_DASH_GT_STAR] = ACTIONS(6272), - }, - [STATE(2358)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), - [anon_sym_COMMA] = ACTIONS(6244), - [anon_sym_RPAREN] = ACTIONS(6244), - [anon_sym_LPAREN2] = ACTIONS(6244), - [anon_sym_DASH] = ACTIONS(6242), - [anon_sym_PLUS] = ACTIONS(6242), - [anon_sym_STAR] = ACTIONS(6242), - [anon_sym_SLASH] = ACTIONS(6242), - [anon_sym_PERCENT] = ACTIONS(6242), - [anon_sym_PIPE_PIPE] = ACTIONS(6244), - [anon_sym_AMP_AMP] = ACTIONS(6244), - [anon_sym_PIPE] = ACTIONS(6242), - [anon_sym_CARET] = ACTIONS(6242), - [anon_sym_AMP] = ACTIONS(6242), - [anon_sym_EQ_EQ] = ACTIONS(6244), - [anon_sym_BANG_EQ] = ACTIONS(6244), - [anon_sym_GT] = ACTIONS(6242), - [anon_sym_GT_EQ] = ACTIONS(6244), - [anon_sym_LT_EQ] = ACTIONS(6242), - [anon_sym_LT] = ACTIONS(6242), - [anon_sym_LT_LT] = ACTIONS(6242), - [anon_sym_GT_GT] = ACTIONS(6242), - [anon_sym___extension__] = ACTIONS(6244), - [anon_sym___attribute__] = ACTIONS(6244), - [anon_sym___attribute] = ACTIONS(6242), - [anon_sym_COLON] = ACTIONS(6242), - [anon_sym_COLON_COLON] = ACTIONS(6244), - [anon_sym_LBRACE] = ACTIONS(6244), - [anon_sym_LBRACK] = ACTIONS(6244), - [anon_sym_EQ] = ACTIONS(6242), - [anon_sym_const] = ACTIONS(6242), - [anon_sym_constexpr] = ACTIONS(6244), - [anon_sym_volatile] = ACTIONS(6244), - [anon_sym_restrict] = ACTIONS(6244), - [anon_sym___restrict__] = ACTIONS(6244), - [anon_sym__Atomic] = ACTIONS(6244), - [anon_sym__Noreturn] = ACTIONS(6244), - [anon_sym_noreturn] = ACTIONS(6244), - [anon_sym__Nonnull] = ACTIONS(6244), - [anon_sym_mutable] = ACTIONS(6244), - [anon_sym_constinit] = ACTIONS(6244), - [anon_sym_consteval] = ACTIONS(6244), - [anon_sym_alignas] = ACTIONS(6244), - [anon_sym__Alignas] = ACTIONS(6244), - [anon_sym_QMARK] = ACTIONS(6244), - [anon_sym_STAR_EQ] = ACTIONS(6244), - [anon_sym_SLASH_EQ] = ACTIONS(6244), - [anon_sym_PERCENT_EQ] = ACTIONS(6244), - [anon_sym_PLUS_EQ] = ACTIONS(6244), - [anon_sym_DASH_EQ] = ACTIONS(6244), - [anon_sym_LT_LT_EQ] = ACTIONS(6244), - [anon_sym_GT_GT_EQ] = ACTIONS(6244), - [anon_sym_AMP_EQ] = ACTIONS(6244), - [anon_sym_CARET_EQ] = ACTIONS(6244), - [anon_sym_PIPE_EQ] = ACTIONS(6244), - [anon_sym_and_eq] = ACTIONS(6244), - [anon_sym_or_eq] = ACTIONS(6244), - [anon_sym_xor_eq] = ACTIONS(6244), - [anon_sym_LT_EQ_GT] = ACTIONS(6244), - [anon_sym_or] = ACTIONS(6242), - [anon_sym_and] = ACTIONS(6242), - [anon_sym_bitor] = ACTIONS(6244), - [anon_sym_xor] = ACTIONS(6242), - [anon_sym_bitand] = ACTIONS(6244), - [anon_sym_not_eq] = ACTIONS(6244), - [anon_sym_DASH_DASH] = ACTIONS(6244), - [anon_sym_PLUS_PLUS] = ACTIONS(6244), - [anon_sym_DOT] = ACTIONS(6242), - [anon_sym_DOT_STAR] = ACTIONS(6244), - [anon_sym_DASH_GT] = ACTIONS(6242), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6244), - [anon_sym_decltype] = ACTIONS(6244), - [anon_sym_final] = ACTIONS(6244), - [anon_sym_override] = ACTIONS(6244), - [anon_sym_requires] = ACTIONS(6244), - [anon_sym_DASH_GT_STAR] = ACTIONS(6244), - }, - [STATE(2359)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2402), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), - [anon_sym_COMMA] = ACTIONS(7255), - [anon_sym_LPAREN2] = ACTIONS(7255), - [anon_sym_DASH] = ACTIONS(7253), - [anon_sym_PLUS] = ACTIONS(7253), - [anon_sym_STAR] = ACTIONS(7253), - [anon_sym_SLASH] = ACTIONS(7253), - [anon_sym_PERCENT] = ACTIONS(7253), - [anon_sym_PIPE_PIPE] = ACTIONS(7255), - [anon_sym_AMP_AMP] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7253), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_EQ_EQ] = ACTIONS(7255), - [anon_sym_BANG_EQ] = ACTIONS(7255), - [anon_sym_GT] = ACTIONS(7253), - [anon_sym_GT_EQ] = ACTIONS(7253), - [anon_sym_LT_EQ] = ACTIONS(7253), - [anon_sym_LT] = ACTIONS(7253), - [anon_sym_LT_LT] = ACTIONS(7253), - [anon_sym_GT_GT] = ACTIONS(7253), - [anon_sym___extension__] = ACTIONS(7255), - [anon_sym___attribute__] = ACTIONS(7255), - [anon_sym___attribute] = ACTIONS(7253), - [anon_sym_LBRACE] = ACTIONS(7255), - [anon_sym_signed] = ACTIONS(7912), - [anon_sym_unsigned] = ACTIONS(7912), - [anon_sym_long] = ACTIONS(7912), - [anon_sym_short] = ACTIONS(7912), - [anon_sym_LBRACK] = ACTIONS(7255), - [anon_sym_EQ] = ACTIONS(7253), - [anon_sym_const] = ACTIONS(7253), - [anon_sym_constexpr] = ACTIONS(7255), - [anon_sym_volatile] = ACTIONS(7255), - [anon_sym_restrict] = ACTIONS(7255), - [anon_sym___restrict__] = ACTIONS(7255), - [anon_sym__Atomic] = ACTIONS(7255), - [anon_sym__Noreturn] = ACTIONS(7255), - [anon_sym_noreturn] = ACTIONS(7255), - [anon_sym__Nonnull] = ACTIONS(7255), - [anon_sym_mutable] = ACTIONS(7255), - [anon_sym_constinit] = ACTIONS(7255), - [anon_sym_consteval] = ACTIONS(7255), - [anon_sym_alignas] = ACTIONS(7255), - [anon_sym__Alignas] = ACTIONS(7255), - [anon_sym_QMARK] = ACTIONS(7255), - [anon_sym_STAR_EQ] = ACTIONS(7255), - [anon_sym_SLASH_EQ] = ACTIONS(7255), - [anon_sym_PERCENT_EQ] = ACTIONS(7255), - [anon_sym_PLUS_EQ] = ACTIONS(7255), - [anon_sym_DASH_EQ] = ACTIONS(7255), - [anon_sym_LT_LT_EQ] = ACTIONS(7255), - [anon_sym_GT_GT_EQ] = ACTIONS(7253), - [anon_sym_AMP_EQ] = ACTIONS(7255), - [anon_sym_CARET_EQ] = ACTIONS(7255), - [anon_sym_PIPE_EQ] = ACTIONS(7255), - [anon_sym_and_eq] = ACTIONS(7255), - [anon_sym_or_eq] = ACTIONS(7255), - [anon_sym_xor_eq] = ACTIONS(7255), - [anon_sym_LT_EQ_GT] = ACTIONS(7255), - [anon_sym_or] = ACTIONS(7253), - [anon_sym_and] = ACTIONS(7253), - [anon_sym_bitor] = ACTIONS(7255), - [anon_sym_xor] = ACTIONS(7253), - [anon_sym_bitand] = ACTIONS(7255), - [anon_sym_not_eq] = ACTIONS(7255), - [anon_sym_DASH_DASH] = ACTIONS(7255), - [anon_sym_PLUS_PLUS] = ACTIONS(7255), - [anon_sym_DOT] = ACTIONS(7253), - [anon_sym_DOT_STAR] = ACTIONS(7255), - [anon_sym_DASH_GT] = ACTIONS(7255), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7255), - [anon_sym_override] = ACTIONS(7255), - [anon_sym_GT2] = ACTIONS(7255), - [anon_sym_requires] = ACTIONS(7255), - }, - [STATE(2360)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6796), - [anon_sym_COMMA] = ACTIONS(6796), - [anon_sym_LPAREN2] = ACTIONS(6796), - [anon_sym_DASH] = ACTIONS(6794), - [anon_sym_PLUS] = ACTIONS(6794), - [anon_sym_STAR] = ACTIONS(6794), - [anon_sym_SLASH] = ACTIONS(6794), - [anon_sym_PERCENT] = ACTIONS(6794), - [anon_sym_PIPE_PIPE] = ACTIONS(6796), - [anon_sym_AMP_AMP] = ACTIONS(6796), - [anon_sym_PIPE] = ACTIONS(6794), - [anon_sym_CARET] = ACTIONS(6794), - [anon_sym_AMP] = ACTIONS(6794), - [anon_sym_EQ_EQ] = ACTIONS(6796), - [anon_sym_BANG_EQ] = ACTIONS(6796), - [anon_sym_GT] = ACTIONS(6794), - [anon_sym_GT_EQ] = ACTIONS(6796), - [anon_sym_LT_EQ] = ACTIONS(6794), - [anon_sym_LT] = ACTIONS(6794), - [anon_sym_LT_LT] = ACTIONS(6794), - [anon_sym_GT_GT] = ACTIONS(6794), - [anon_sym___extension__] = ACTIONS(6796), - [anon_sym___attribute__] = ACTIONS(6796), - [anon_sym___attribute] = ACTIONS(6794), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6796), - [anon_sym_LBRACK] = ACTIONS(6794), - [anon_sym_RBRACK] = ACTIONS(6796), - [anon_sym_EQ] = ACTIONS(6794), - [anon_sym_const] = ACTIONS(6794), - [anon_sym_constexpr] = ACTIONS(6796), - [anon_sym_volatile] = ACTIONS(6796), - [anon_sym_restrict] = ACTIONS(6796), - [anon_sym___restrict__] = ACTIONS(6796), - [anon_sym__Atomic] = ACTIONS(6796), - [anon_sym__Noreturn] = ACTIONS(6796), - [anon_sym_noreturn] = ACTIONS(6796), - [anon_sym__Nonnull] = ACTIONS(6796), - [anon_sym_mutable] = ACTIONS(6796), - [anon_sym_constinit] = ACTIONS(6796), - [anon_sym_consteval] = ACTIONS(6796), - [anon_sym_alignas] = ACTIONS(6796), - [anon_sym__Alignas] = ACTIONS(6796), - [anon_sym_QMARK] = ACTIONS(6796), - [anon_sym_STAR_EQ] = ACTIONS(6796), - [anon_sym_SLASH_EQ] = ACTIONS(6796), - [anon_sym_PERCENT_EQ] = ACTIONS(6796), - [anon_sym_PLUS_EQ] = ACTIONS(6796), - [anon_sym_DASH_EQ] = ACTIONS(6796), - [anon_sym_LT_LT_EQ] = ACTIONS(6796), - [anon_sym_GT_GT_EQ] = ACTIONS(6796), - [anon_sym_AMP_EQ] = ACTIONS(6796), - [anon_sym_CARET_EQ] = ACTIONS(6796), - [anon_sym_PIPE_EQ] = ACTIONS(6796), - [anon_sym_and_eq] = ACTIONS(6796), - [anon_sym_or_eq] = ACTIONS(6796), - [anon_sym_xor_eq] = ACTIONS(6796), - [anon_sym_LT_EQ_GT] = ACTIONS(6796), - [anon_sym_or] = ACTIONS(6794), - [anon_sym_and] = ACTIONS(6794), - [anon_sym_bitor] = ACTIONS(6796), - [anon_sym_xor] = ACTIONS(6794), - [anon_sym_bitand] = ACTIONS(6796), - [anon_sym_not_eq] = ACTIONS(6796), - [anon_sym_DASH_DASH] = ACTIONS(6796), - [anon_sym_PLUS_PLUS] = ACTIONS(6796), - [anon_sym_asm] = ACTIONS(6796), - [anon_sym___asm__] = ACTIONS(6796), - [anon_sym___asm] = ACTIONS(6794), - [anon_sym_DOT] = ACTIONS(6794), - [anon_sym_DOT_STAR] = ACTIONS(6796), - [anon_sym_DASH_GT] = ACTIONS(6796), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6796), - [anon_sym_override] = ACTIONS(6796), - [anon_sym_noexcept] = ACTIONS(6796), - [anon_sym_throw] = ACTIONS(6796), - [anon_sym_requires] = ACTIONS(6796), + [STATE(2297)] = { + [sym__abstract_declarator] = STATE(4552), + [sym_abstract_parenthesized_declarator] = STATE(4825), + [sym_abstract_pointer_declarator] = STATE(4825), + [sym_abstract_function_declarator] = STATE(4825), + [sym_abstract_array_declarator] = STATE(4825), + [sym_type_qualifier] = STATE(2270), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1972), + [sym_abstract_reference_declarator] = STATE(4825), + [sym__function_declarator_seq] = STATE(4934), + [aux_sym__type_definition_type_repeat1] = STATE(2270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(7006), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(7008), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(7010), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(7012), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(7014), + [anon_sym_LBRACK] = ACTIONS(7022), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(7024), + [anon_sym_constexpr] = ACTIONS(7014), + [anon_sym_volatile] = ACTIONS(7014), + [anon_sym_restrict] = ACTIONS(7014), + [anon_sym___restrict__] = ACTIONS(7014), + [anon_sym__Atomic] = ACTIONS(7014), + [anon_sym__Noreturn] = ACTIONS(7014), + [anon_sym_noreturn] = ACTIONS(7014), + [anon_sym__Nonnull] = ACTIONS(7014), + [anon_sym_mutable] = ACTIONS(7014), + [anon_sym_constinit] = ACTIONS(7014), + [anon_sym_consteval] = ACTIONS(7014), + [anon_sym_alignas] = ACTIONS(7026), + [anon_sym__Alignas] = ACTIONS(7026), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6823), + [anon_sym_or_eq] = ACTIONS(6823), + [anon_sym_xor_eq] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6821), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6823), + [anon_sym_override] = ACTIONS(6823), + [anon_sym_requires] = ACTIONS(6823), + [anon_sym_DASH_GT_STAR] = ACTIONS(6823), }, - [STATE(2361)] = { - [sym_identifier] = ACTIONS(6226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), - [anon_sym_COMMA] = ACTIONS(6230), - [anon_sym_RPAREN] = ACTIONS(6230), - [anon_sym_LPAREN2] = ACTIONS(6230), - [anon_sym_TILDE] = ACTIONS(6233), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6230), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_PERCENT] = ACTIONS(6228), - [anon_sym_PIPE_PIPE] = ACTIONS(6228), - [anon_sym_AMP_AMP] = ACTIONS(6230), - [anon_sym_PIPE] = ACTIONS(6235), - [anon_sym_CARET] = ACTIONS(6228), - [anon_sym_AMP] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6228), - [anon_sym_BANG_EQ] = ACTIONS(6228), - [anon_sym_GT] = ACTIONS(6235), - [anon_sym_GT_EQ] = ACTIONS(6228), - [anon_sym_LT_EQ] = ACTIONS(6235), - [anon_sym_LT] = ACTIONS(6235), - [anon_sym_LT_LT] = ACTIONS(6228), - [anon_sym_GT_GT] = ACTIONS(6228), - [anon_sym___extension__] = ACTIONS(6226), - [anon_sym_virtual] = ACTIONS(6226), - [anon_sym_extern] = ACTIONS(6226), - [anon_sym___attribute__] = ACTIONS(6226), - [anon_sym___attribute] = ACTIONS(6226), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6233), - [anon_sym___declspec] = ACTIONS(6226), - [anon_sym___based] = ACTIONS(6226), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6237), - [anon_sym_static] = ACTIONS(6226), - [anon_sym_EQ] = ACTIONS(6226), - [anon_sym_register] = ACTIONS(6226), - [anon_sym_inline] = ACTIONS(6226), - [anon_sym___inline] = ACTIONS(6226), - [anon_sym___inline__] = ACTIONS(6226), - [anon_sym___forceinline] = ACTIONS(6226), - [anon_sym_thread_local] = ACTIONS(6226), - [anon_sym___thread] = ACTIONS(6226), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6226), - [anon_sym_volatile] = ACTIONS(6226), - [anon_sym_restrict] = ACTIONS(6226), - [anon_sym___restrict__] = ACTIONS(6226), - [anon_sym__Atomic] = ACTIONS(6226), - [anon_sym__Noreturn] = ACTIONS(6226), - [anon_sym_noreturn] = ACTIONS(6226), - [anon_sym__Nonnull] = ACTIONS(6226), - [anon_sym_mutable] = ACTIONS(6226), - [anon_sym_constinit] = ACTIONS(6226), - [anon_sym_consteval] = ACTIONS(6226), - [anon_sym_alignas] = ACTIONS(6226), - [anon_sym__Alignas] = ACTIONS(6226), - [anon_sym_QMARK] = ACTIONS(6228), - [anon_sym_LT_EQ_GT] = ACTIONS(6228), - [anon_sym_or] = ACTIONS(6235), - [anon_sym_and] = ACTIONS(6235), - [anon_sym_bitor] = ACTIONS(6235), - [anon_sym_xor] = ACTIONS(6235), - [anon_sym_bitand] = ACTIONS(6235), - [anon_sym_not_eq] = ACTIONS(6235), - [anon_sym_DASH_DASH] = ACTIONS(6228), - [anon_sym_PLUS_PLUS] = ACTIONS(6228), - [anon_sym_DOT] = ACTIONS(6235), - [anon_sym_DOT_STAR] = ACTIONS(6228), - [anon_sym_DASH_GT] = ACTIONS(6228), + [STATE(2298)] = { + [sym__abstract_declarator] = STATE(4602), + [sym_abstract_parenthesized_declarator] = STATE(4825), + [sym_abstract_pointer_declarator] = STATE(4825), + [sym_abstract_function_declarator] = STATE(4825), + [sym_abstract_array_declarator] = STATE(4825), + [sym_type_qualifier] = STATE(2270), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1972), + [sym_abstract_reference_declarator] = STATE(4825), + [sym__function_declarator_seq] = STATE(4934), + [aux_sym__type_definition_type_repeat1] = STATE(2270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), + [anon_sym_COMMA] = ACTIONS(7355), + [anon_sym_RPAREN] = ACTIONS(7355), + [anon_sym_LPAREN2] = ACTIONS(7006), + [anon_sym_DASH] = ACTIONS(7353), + [anon_sym_PLUS] = ACTIONS(7353), + [anon_sym_STAR] = ACTIONS(7008), + [anon_sym_SLASH] = ACTIONS(7353), + [anon_sym_PERCENT] = ACTIONS(7353), + [anon_sym_PIPE_PIPE] = ACTIONS(7355), + [anon_sym_AMP_AMP] = ACTIONS(7010), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_CARET] = ACTIONS(7353), + [anon_sym_AMP] = ACTIONS(7012), + [anon_sym_EQ_EQ] = ACTIONS(7355), + [anon_sym_BANG_EQ] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_EQ] = ACTIONS(7355), + [anon_sym_LT_EQ] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_LT_LT] = ACTIONS(7353), + [anon_sym_GT_GT] = ACTIONS(7353), + [anon_sym___extension__] = ACTIONS(7014), + [anon_sym_LBRACK] = ACTIONS(7022), + [anon_sym_EQ] = ACTIONS(7353), + [anon_sym_const] = ACTIONS(7024), + [anon_sym_constexpr] = ACTIONS(7014), + [anon_sym_volatile] = ACTIONS(7014), + [anon_sym_restrict] = ACTIONS(7014), + [anon_sym___restrict__] = ACTIONS(7014), + [anon_sym__Atomic] = ACTIONS(7014), + [anon_sym__Noreturn] = ACTIONS(7014), + [anon_sym_noreturn] = ACTIONS(7014), + [anon_sym__Nonnull] = ACTIONS(7014), + [anon_sym_mutable] = ACTIONS(7014), + [anon_sym_constinit] = ACTIONS(7014), + [anon_sym_consteval] = ACTIONS(7014), + [anon_sym_alignas] = ACTIONS(7026), + [anon_sym__Alignas] = ACTIONS(7026), + [anon_sym_QMARK] = ACTIONS(7355), + [anon_sym_STAR_EQ] = ACTIONS(7355), + [anon_sym_SLASH_EQ] = ACTIONS(7355), + [anon_sym_PERCENT_EQ] = ACTIONS(7355), + [anon_sym_PLUS_EQ] = ACTIONS(7355), + [anon_sym_DASH_EQ] = ACTIONS(7355), + [anon_sym_LT_LT_EQ] = ACTIONS(7355), + [anon_sym_GT_GT_EQ] = ACTIONS(7355), + [anon_sym_AMP_EQ] = ACTIONS(7355), + [anon_sym_CARET_EQ] = ACTIONS(7355), + [anon_sym_PIPE_EQ] = ACTIONS(7355), + [anon_sym_and_eq] = ACTIONS(7355), + [anon_sym_or_eq] = ACTIONS(7355), + [anon_sym_xor_eq] = ACTIONS(7355), + [anon_sym_LT_EQ_GT] = ACTIONS(7355), + [anon_sym_or] = ACTIONS(7353), + [anon_sym_and] = ACTIONS(7353), + [anon_sym_bitor] = ACTIONS(7355), + [anon_sym_xor] = ACTIONS(7353), + [anon_sym_bitand] = ACTIONS(7355), + [anon_sym_not_eq] = ACTIONS(7355), + [anon_sym_DASH_DASH] = ACTIONS(7355), + [anon_sym_PLUS_PLUS] = ACTIONS(7355), + [anon_sym_DOT] = ACTIONS(7353), + [anon_sym_DOT_STAR] = ACTIONS(7355), + [anon_sym_DASH_GT] = ACTIONS(7353), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6226), - [anon_sym_decltype] = ACTIONS(6226), - [anon_sym_template] = ACTIONS(6226), - [anon_sym_operator] = ACTIONS(6226), - [anon_sym_LBRACK_COLON] = ACTIONS(6233), + [anon_sym_final] = ACTIONS(7355), + [anon_sym_override] = ACTIONS(7355), + [anon_sym_requires] = ACTIONS(7355), + [anon_sym_DASH_GT_STAR] = ACTIONS(7355), }, - [STATE(2362)] = { - [sym__abstract_declarator] = STATE(5171), - [sym_abstract_parenthesized_declarator] = STATE(4966), - [sym_abstract_pointer_declarator] = STATE(4966), - [sym_abstract_function_declarator] = STATE(4966), - [sym_abstract_array_declarator] = STATE(4966), - [sym_type_qualifier] = STATE(2337), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1873), - [sym_abstract_reference_declarator] = STATE(4966), - [sym__function_declarator_seq] = STATE(4975), - [aux_sym__type_definition_type_repeat1] = STATE(2337), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), - [anon_sym_COMMA] = ACTIONS(6991), - [anon_sym_LPAREN2] = ACTIONS(6766), - [anon_sym_DASH] = ACTIONS(6993), - [anon_sym_PLUS] = ACTIONS(6993), - [anon_sym_STAR] = ACTIONS(6977), - [anon_sym_SLASH] = ACTIONS(6993), - [anon_sym_PERCENT] = ACTIONS(6993), - [anon_sym_PIPE_PIPE] = ACTIONS(6991), - [anon_sym_AMP_AMP] = ACTIONS(6979), - [anon_sym_PIPE] = ACTIONS(6993), - [anon_sym_CARET] = ACTIONS(6993), - [anon_sym_AMP] = ACTIONS(6981), - [anon_sym_EQ_EQ] = ACTIONS(6991), - [anon_sym_BANG_EQ] = ACTIONS(6991), - [anon_sym_GT] = ACTIONS(6993), - [anon_sym_GT_EQ] = ACTIONS(6991), - [anon_sym_LT_EQ] = ACTIONS(6993), - [anon_sym_LT] = ACTIONS(6993), - [anon_sym_LT_LT] = ACTIONS(6993), - [anon_sym_GT_GT] = ACTIONS(6993), - [anon_sym___extension__] = ACTIONS(6774), - [anon_sym_LBRACK] = ACTIONS(6782), - [anon_sym_RBRACK] = ACTIONS(6991), - [anon_sym_EQ] = ACTIONS(6993), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6774), - [anon_sym_volatile] = ACTIONS(6774), - [anon_sym_restrict] = ACTIONS(6774), - [anon_sym___restrict__] = ACTIONS(6774), - [anon_sym__Atomic] = ACTIONS(6774), - [anon_sym__Noreturn] = ACTIONS(6774), - [anon_sym_noreturn] = ACTIONS(6774), - [anon_sym__Nonnull] = ACTIONS(6774), - [anon_sym_mutable] = ACTIONS(6774), - [anon_sym_constinit] = ACTIONS(6774), - [anon_sym_consteval] = ACTIONS(6774), - [anon_sym_alignas] = ACTIONS(6784), - [anon_sym__Alignas] = ACTIONS(6784), - [anon_sym_QMARK] = ACTIONS(6991), - [anon_sym_STAR_EQ] = ACTIONS(6991), - [anon_sym_SLASH_EQ] = ACTIONS(6991), - [anon_sym_PERCENT_EQ] = ACTIONS(6991), - [anon_sym_PLUS_EQ] = ACTIONS(6991), - [anon_sym_DASH_EQ] = ACTIONS(6991), - [anon_sym_LT_LT_EQ] = ACTIONS(6991), - [anon_sym_GT_GT_EQ] = ACTIONS(6991), - [anon_sym_AMP_EQ] = ACTIONS(6991), - [anon_sym_CARET_EQ] = ACTIONS(6991), - [anon_sym_PIPE_EQ] = ACTIONS(6991), - [anon_sym_and_eq] = ACTIONS(6991), - [anon_sym_or_eq] = ACTIONS(6991), - [anon_sym_xor_eq] = ACTIONS(6991), - [anon_sym_LT_EQ_GT] = ACTIONS(6991), - [anon_sym_or] = ACTIONS(6993), - [anon_sym_and] = ACTIONS(6993), - [anon_sym_bitor] = ACTIONS(6991), - [anon_sym_xor] = ACTIONS(6993), - [anon_sym_bitand] = ACTIONS(6991), - [anon_sym_not_eq] = ACTIONS(6991), - [anon_sym_DASH_DASH] = ACTIONS(6991), - [anon_sym_PLUS_PLUS] = ACTIONS(6991), - [anon_sym_DOT] = ACTIONS(6993), - [anon_sym_DOT_STAR] = ACTIONS(6991), - [anon_sym_DASH_GT] = ACTIONS(6991), + [STATE(2299)] = { + [sym__abstract_declarator] = STATE(4553), + [sym_abstract_parenthesized_declarator] = STATE(4825), + [sym_abstract_pointer_declarator] = STATE(4825), + [sym_abstract_function_declarator] = STATE(4825), + [sym_abstract_array_declarator] = STATE(4825), + [sym_type_qualifier] = STATE(2270), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1972), + [sym_abstract_reference_declarator] = STATE(4825), + [sym__function_declarator_seq] = STATE(4934), + [aux_sym__type_definition_type_repeat1] = STATE(2270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_RPAREN] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(7006), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(7008), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7347), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(7010), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7347), + [anon_sym_AMP] = ACTIONS(7012), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7347), + [anon_sym_GT_GT] = ACTIONS(7347), + [anon_sym___extension__] = ACTIONS(7014), + [anon_sym_LBRACK] = ACTIONS(7022), + [anon_sym_EQ] = ACTIONS(7347), + [anon_sym_const] = ACTIONS(7024), + [anon_sym_constexpr] = ACTIONS(7014), + [anon_sym_volatile] = ACTIONS(7014), + [anon_sym_restrict] = ACTIONS(7014), + [anon_sym___restrict__] = ACTIONS(7014), + [anon_sym__Atomic] = ACTIONS(7014), + [anon_sym__Noreturn] = ACTIONS(7014), + [anon_sym_noreturn] = ACTIONS(7014), + [anon_sym__Nonnull] = ACTIONS(7014), + [anon_sym_mutable] = ACTIONS(7014), + [anon_sym_constinit] = ACTIONS(7014), + [anon_sym_consteval] = ACTIONS(7014), + [anon_sym_alignas] = ACTIONS(7026), + [anon_sym__Alignas] = ACTIONS(7026), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_STAR_EQ] = ACTIONS(7345), + [anon_sym_SLASH_EQ] = ACTIONS(7345), + [anon_sym_PERCENT_EQ] = ACTIONS(7345), + [anon_sym_PLUS_EQ] = ACTIONS(7345), + [anon_sym_DASH_EQ] = ACTIONS(7345), + [anon_sym_LT_LT_EQ] = ACTIONS(7345), + [anon_sym_GT_GT_EQ] = ACTIONS(7345), + [anon_sym_AMP_EQ] = ACTIONS(7345), + [anon_sym_CARET_EQ] = ACTIONS(7345), + [anon_sym_PIPE_EQ] = ACTIONS(7345), + [anon_sym_and_eq] = ACTIONS(7345), + [anon_sym_or_eq] = ACTIONS(7345), + [anon_sym_xor_eq] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7347), + [anon_sym_and] = ACTIONS(7347), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7347), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7347), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7345), + [anon_sym_override] = ACTIONS(7345), + [anon_sym_requires] = ACTIONS(7345), + [anon_sym_DASH_GT_STAR] = ACTIONS(7345), }, - [STATE(2363)] = { - [sym_type_qualifier] = STATE(2363), - [sym_alignas_qualifier] = STATE(2587), - [aux_sym_array_declarator_repeat1] = STATE(2363), - [sym_identifier] = ACTIONS(7914), - [anon_sym_LPAREN2] = ACTIONS(7916), - [anon_sym_BANG] = ACTIONS(7916), - [anon_sym_TILDE] = ACTIONS(7916), - [anon_sym_DASH] = ACTIONS(7914), - [anon_sym_PLUS] = ACTIONS(7914), - [anon_sym_STAR] = ACTIONS(7916), - [anon_sym_AMP] = ACTIONS(7916), - [anon_sym___extension__] = ACTIONS(7918), - [anon_sym_COLON_COLON] = ACTIONS(7916), - [anon_sym_LBRACK] = ACTIONS(7914), - [anon_sym_static] = ACTIONS(7921), - [anon_sym_RBRACK] = ACTIONS(7916), - [anon_sym_const] = ACTIONS(7918), - [anon_sym_constexpr] = ACTIONS(7918), - [anon_sym_volatile] = ACTIONS(7918), - [anon_sym_restrict] = ACTIONS(7918), - [anon_sym___restrict__] = ACTIONS(7918), - [anon_sym__Atomic] = ACTIONS(7918), - [anon_sym__Noreturn] = ACTIONS(7918), - [anon_sym_noreturn] = ACTIONS(7918), - [anon_sym__Nonnull] = ACTIONS(7918), - [anon_sym_mutable] = ACTIONS(7918), - [anon_sym_constinit] = ACTIONS(7918), - [anon_sym_consteval] = ACTIONS(7918), - [anon_sym_alignas] = ACTIONS(7924), - [anon_sym__Alignas] = ACTIONS(7924), - [sym_primitive_type] = ACTIONS(7914), - [anon_sym_not] = ACTIONS(7914), - [anon_sym_compl] = ACTIONS(7914), - [anon_sym_DASH_DASH] = ACTIONS(7916), - [anon_sym_PLUS_PLUS] = ACTIONS(7916), - [anon_sym_sizeof] = ACTIONS(7914), - [anon_sym___alignof__] = ACTIONS(7914), - [anon_sym___alignof] = ACTIONS(7914), - [anon_sym__alignof] = ACTIONS(7914), - [anon_sym_alignof] = ACTIONS(7914), - [anon_sym__Alignof] = ACTIONS(7914), - [anon_sym_offsetof] = ACTIONS(7914), - [anon_sym__Generic] = ACTIONS(7914), - [anon_sym_typename] = ACTIONS(7914), - [anon_sym_asm] = ACTIONS(7914), - [anon_sym___asm__] = ACTIONS(7914), - [anon_sym___asm] = ACTIONS(7914), - [sym_number_literal] = ACTIONS(7916), - [anon_sym_L_SQUOTE] = ACTIONS(7916), - [anon_sym_u_SQUOTE] = ACTIONS(7916), - [anon_sym_U_SQUOTE] = ACTIONS(7916), - [anon_sym_u8_SQUOTE] = ACTIONS(7916), - [anon_sym_SQUOTE] = ACTIONS(7916), - [anon_sym_L_DQUOTE] = ACTIONS(7916), - [anon_sym_u_DQUOTE] = ACTIONS(7916), - [anon_sym_U_DQUOTE] = ACTIONS(7916), - [anon_sym_u8_DQUOTE] = ACTIONS(7916), - [anon_sym_DQUOTE] = ACTIONS(7916), - [sym_true] = ACTIONS(7914), - [sym_false] = ACTIONS(7914), - [anon_sym_NULL] = ACTIONS(7914), - [anon_sym_nullptr] = ACTIONS(7914), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(7914), - [anon_sym_template] = ACTIONS(7914), - [anon_sym_delete] = ACTIONS(7914), - [anon_sym_R_DQUOTE] = ACTIONS(7916), - [anon_sym_LR_DQUOTE] = ACTIONS(7916), - [anon_sym_uR_DQUOTE] = ACTIONS(7916), - [anon_sym_UR_DQUOTE] = ACTIONS(7916), - [anon_sym_u8R_DQUOTE] = ACTIONS(7916), - [anon_sym_co_await] = ACTIONS(7914), - [anon_sym_new] = ACTIONS(7914), - [anon_sym_requires] = ACTIONS(7914), - [anon_sym_CARET_CARET] = ACTIONS(7916), - [anon_sym_LBRACK_COLON] = ACTIONS(7916), - [sym_this] = ACTIONS(7914), - }, - [STATE(2364)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym_ref_qualifier] = STATE(2460), - [sym__function_exception_specification] = STATE(2919), - [sym__function_attributes_end] = STATE(4134), - [sym__function_postfix] = STATE(3513), - [sym_trailing_return_type] = STATE(2911), - [sym_noexcept] = STATE(2919), - [sym_throw_specifier] = STATE(2919), - [sym_requires_clause] = STATE(3513), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7548), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym_SEMI] = ACTIONS(7544), - [anon_sym___attribute__] = ACTIONS(7927), - [anon_sym___attribute] = ACTIONS(7930), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7933), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6181), - [anon_sym_override] = ACTIONS(6181), - [anon_sym_noexcept] = ACTIONS(6162), - [anon_sym_throw] = ACTIONS(6164), - [anon_sym_requires] = ACTIONS(6183), + [STATE(2300)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2037), + [sym_identifier] = ACTIONS(6999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), + [anon_sym_COMMA] = ACTIONS(7525), + [anon_sym_RPAREN] = ACTIONS(7525), + [anon_sym_LPAREN2] = ACTIONS(7525), + [anon_sym_DASH] = ACTIONS(7528), + [anon_sym_PLUS] = ACTIONS(7528), + [anon_sym_STAR] = ACTIONS(7528), + [anon_sym_SLASH] = ACTIONS(7528), + [anon_sym_PERCENT] = ACTIONS(7528), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_AMP_AMP] = ACTIONS(7525), + [anon_sym_PIPE] = ACTIONS(7528), + [anon_sym_CARET] = ACTIONS(7528), + [anon_sym_AMP] = ACTIONS(7528), + [anon_sym_EQ_EQ] = ACTIONS(7525), + [anon_sym_BANG_EQ] = ACTIONS(7525), + [anon_sym_GT] = ACTIONS(7528), + [anon_sym_GT_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7528), + [anon_sym_LT] = ACTIONS(7528), + [anon_sym_LT_LT] = ACTIONS(7528), + [anon_sym_GT_GT] = ACTIONS(7528), + [anon_sym_SEMI] = ACTIONS(7525), + [anon_sym___extension__] = ACTIONS(6999), + [anon_sym___attribute__] = ACTIONS(7528), + [anon_sym___attribute] = ACTIONS(7528), + [anon_sym_COLON] = ACTIONS(7528), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7525), + [anon_sym_LBRACE] = ACTIONS(7525), + [anon_sym_RBRACE] = ACTIONS(7525), + [anon_sym_signed] = ACTIONS(7003), + [anon_sym_unsigned] = ACTIONS(7003), + [anon_sym_long] = ACTIONS(7003), + [anon_sym_short] = ACTIONS(7003), + [anon_sym_LBRACK] = ACTIONS(7525), + [anon_sym_EQ] = ACTIONS(7528), + [anon_sym_const] = ACTIONS(6999), + [anon_sym_constexpr] = ACTIONS(6999), + [anon_sym_volatile] = ACTIONS(6999), + [anon_sym_restrict] = ACTIONS(6999), + [anon_sym___restrict__] = ACTIONS(6999), + [anon_sym__Atomic] = ACTIONS(6999), + [anon_sym__Noreturn] = ACTIONS(6999), + [anon_sym_noreturn] = ACTIONS(6999), + [anon_sym__Nonnull] = ACTIONS(6999), + [anon_sym_mutable] = ACTIONS(6999), + [anon_sym_constinit] = ACTIONS(6999), + [anon_sym_consteval] = ACTIONS(6999), + [anon_sym_alignas] = ACTIONS(6999), + [anon_sym__Alignas] = ACTIONS(6999), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7525), + [anon_sym_STAR_EQ] = ACTIONS(7525), + [anon_sym_SLASH_EQ] = ACTIONS(7525), + [anon_sym_PERCENT_EQ] = ACTIONS(7525), + [anon_sym_PLUS_EQ] = ACTIONS(7525), + [anon_sym_DASH_EQ] = ACTIONS(7525), + [anon_sym_LT_LT_EQ] = ACTIONS(7525), + [anon_sym_GT_GT_EQ] = ACTIONS(7525), + [anon_sym_AMP_EQ] = ACTIONS(7525), + [anon_sym_CARET_EQ] = ACTIONS(7525), + [anon_sym_PIPE_EQ] = ACTIONS(7525), + [anon_sym_and_eq] = ACTIONS(7528), + [anon_sym_or_eq] = ACTIONS(7528), + [anon_sym_xor_eq] = ACTIONS(7528), + [anon_sym_LT_EQ_GT] = ACTIONS(7525), + [anon_sym_or] = ACTIONS(7528), + [anon_sym_and] = ACTIONS(7528), + [anon_sym_bitor] = ACTIONS(7528), + [anon_sym_xor] = ACTIONS(7528), + [anon_sym_bitand] = ACTIONS(7528), + [anon_sym_not_eq] = ACTIONS(7528), + [anon_sym_DASH_DASH] = ACTIONS(7525), + [anon_sym_PLUS_PLUS] = ACTIONS(7525), + [anon_sym_DOT] = ACTIONS(7528), + [anon_sym_DOT_STAR] = ACTIONS(7525), + [anon_sym_DASH_GT] = ACTIONS(7525), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7525), }, - [STATE(2365)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2339), - [sym_identifier] = ACTIONS(6627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), - [anon_sym_COMMA] = ACTIONS(7081), - [anon_sym_RPAREN] = ACTIONS(7081), - [anon_sym_LPAREN2] = ACTIONS(7081), - [anon_sym_DASH] = ACTIONS(7084), - [anon_sym_PLUS] = ACTIONS(7084), - [anon_sym_STAR] = ACTIONS(7084), - [anon_sym_SLASH] = ACTIONS(7084), - [anon_sym_PERCENT] = ACTIONS(7084), - [anon_sym_PIPE_PIPE] = ACTIONS(7081), - [anon_sym_AMP_AMP] = ACTIONS(7081), - [anon_sym_PIPE] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7084), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_EQ_EQ] = ACTIONS(7081), - [anon_sym_BANG_EQ] = ACTIONS(7081), - [anon_sym_GT] = ACTIONS(7084), - [anon_sym_GT_EQ] = ACTIONS(7081), - [anon_sym_LT_EQ] = ACTIONS(7084), - [anon_sym_LT] = ACTIONS(7084), - [anon_sym_LT_LT] = ACTIONS(7084), - [anon_sym_GT_GT] = ACTIONS(7084), - [anon_sym___extension__] = ACTIONS(7084), - [anon_sym___attribute__] = ACTIONS(7084), - [anon_sym___attribute] = ACTIONS(7084), - [anon_sym_LBRACE] = ACTIONS(7081), - [anon_sym_signed] = ACTIONS(7894), - [anon_sym_unsigned] = ACTIONS(7894), - [anon_sym_long] = ACTIONS(7894), - [anon_sym_short] = ACTIONS(7894), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_EQ] = ACTIONS(7084), - [anon_sym_const] = ACTIONS(7084), - [anon_sym_constexpr] = ACTIONS(7084), - [anon_sym_volatile] = ACTIONS(7084), - [anon_sym_restrict] = ACTIONS(7084), - [anon_sym___restrict__] = ACTIONS(7084), - [anon_sym__Atomic] = ACTIONS(7084), - [anon_sym__Noreturn] = ACTIONS(7084), - [anon_sym_noreturn] = ACTIONS(7084), - [anon_sym__Nonnull] = ACTIONS(7084), - [anon_sym_mutable] = ACTIONS(7084), - [anon_sym_constinit] = ACTIONS(7084), - [anon_sym_consteval] = ACTIONS(7084), - [anon_sym_alignas] = ACTIONS(7084), - [anon_sym__Alignas] = ACTIONS(7084), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(7081), - [anon_sym_STAR_EQ] = ACTIONS(7081), - [anon_sym_SLASH_EQ] = ACTIONS(7081), - [anon_sym_PERCENT_EQ] = ACTIONS(7081), - [anon_sym_PLUS_EQ] = ACTIONS(7081), - [anon_sym_DASH_EQ] = ACTIONS(7081), - [anon_sym_LT_LT_EQ] = ACTIONS(7081), - [anon_sym_GT_GT_EQ] = ACTIONS(7081), - [anon_sym_AMP_EQ] = ACTIONS(7081), - [anon_sym_CARET_EQ] = ACTIONS(7081), - [anon_sym_PIPE_EQ] = ACTIONS(7081), - [anon_sym_LT_EQ_GT] = ACTIONS(7081), - [anon_sym_or] = ACTIONS(7084), - [anon_sym_and] = ACTIONS(7084), - [anon_sym_bitor] = ACTIONS(7084), - [anon_sym_xor] = ACTIONS(7084), - [anon_sym_bitand] = ACTIONS(7084), - [anon_sym_not_eq] = ACTIONS(7084), - [anon_sym_DASH_DASH] = ACTIONS(7081), - [anon_sym_PLUS_PLUS] = ACTIONS(7081), - [anon_sym_DOT] = ACTIONS(7084), - [anon_sym_DOT_STAR] = ACTIONS(7081), - [anon_sym_DASH_GT] = ACTIONS(7084), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7084), - [anon_sym_override] = ACTIONS(7084), - [anon_sym_requires] = ACTIONS(7084), - [anon_sym_DASH_GT_STAR] = ACTIONS(7081), + [STATE(2301)] = { + [sym_type_qualifier] = STATE(2320), + [sym_alignas_qualifier] = STATE(2392), + [aux_sym__type_definition_type_repeat1] = STATE(2320), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6901), + [anon_sym_COMMA] = ACTIONS(6901), + [anon_sym_RPAREN] = ACTIONS(6901), + [anon_sym_LPAREN2] = ACTIONS(6901), + [anon_sym_DASH] = ACTIONS(6899), + [anon_sym_PLUS] = ACTIONS(6899), + [anon_sym_STAR] = ACTIONS(6899), + [anon_sym_SLASH] = ACTIONS(6899), + [anon_sym_PERCENT] = ACTIONS(6899), + [anon_sym_PIPE_PIPE] = ACTIONS(6901), + [anon_sym_AMP_AMP] = ACTIONS(6901), + [anon_sym_PIPE] = ACTIONS(6899), + [anon_sym_CARET] = ACTIONS(6899), + [anon_sym_AMP] = ACTIONS(6899), + [anon_sym_EQ_EQ] = ACTIONS(6901), + [anon_sym_BANG_EQ] = ACTIONS(6901), + [anon_sym_GT] = ACTIONS(6899), + [anon_sym_GT_EQ] = ACTIONS(6901), + [anon_sym_LT_EQ] = ACTIONS(6899), + [anon_sym_LT] = ACTIONS(6899), + [anon_sym_LT_LT] = ACTIONS(6899), + [anon_sym_GT_GT] = ACTIONS(6899), + [anon_sym___extension__] = ACTIONS(6644), + [anon_sym___attribute__] = ACTIONS(6901), + [anon_sym___attribute] = ACTIONS(6899), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6901), + [anon_sym_LBRACK] = ACTIONS(6899), + [anon_sym_EQ] = ACTIONS(6899), + [anon_sym_const] = ACTIONS(6652), + [anon_sym_constexpr] = ACTIONS(6644), + [anon_sym_volatile] = ACTIONS(6644), + [anon_sym_restrict] = ACTIONS(6644), + [anon_sym___restrict__] = ACTIONS(6644), + [anon_sym__Atomic] = ACTIONS(6644), + [anon_sym__Noreturn] = ACTIONS(6644), + [anon_sym_noreturn] = ACTIONS(6644), + [anon_sym__Nonnull] = ACTIONS(6644), + [anon_sym_mutable] = ACTIONS(6644), + [anon_sym_constinit] = ACTIONS(6644), + [anon_sym_consteval] = ACTIONS(6644), + [anon_sym_alignas] = ACTIONS(6654), + [anon_sym__Alignas] = ACTIONS(6654), + [anon_sym_QMARK] = ACTIONS(6901), + [anon_sym_STAR_EQ] = ACTIONS(6901), + [anon_sym_SLASH_EQ] = ACTIONS(6901), + [anon_sym_PERCENT_EQ] = ACTIONS(6901), + [anon_sym_PLUS_EQ] = ACTIONS(6901), + [anon_sym_DASH_EQ] = ACTIONS(6901), + [anon_sym_LT_LT_EQ] = ACTIONS(6901), + [anon_sym_GT_GT_EQ] = ACTIONS(6901), + [anon_sym_AMP_EQ] = ACTIONS(6901), + [anon_sym_CARET_EQ] = ACTIONS(6901), + [anon_sym_PIPE_EQ] = ACTIONS(6901), + [anon_sym_and_eq] = ACTIONS(6901), + [anon_sym_or_eq] = ACTIONS(6901), + [anon_sym_xor_eq] = ACTIONS(6901), + [anon_sym_LT_EQ_GT] = ACTIONS(6901), + [anon_sym_or] = ACTIONS(6899), + [anon_sym_and] = ACTIONS(6899), + [anon_sym_bitor] = ACTIONS(6901), + [anon_sym_xor] = ACTIONS(6899), + [anon_sym_bitand] = ACTIONS(6901), + [anon_sym_not_eq] = ACTIONS(6901), + [anon_sym_DASH_DASH] = ACTIONS(6901), + [anon_sym_PLUS_PLUS] = ACTIONS(6901), + [anon_sym_asm] = ACTIONS(6901), + [anon_sym___asm__] = ACTIONS(6901), + [anon_sym___asm] = ACTIONS(6899), + [anon_sym_DOT] = ACTIONS(6899), + [anon_sym_DOT_STAR] = ACTIONS(6901), + [anon_sym_DASH_GT] = ACTIONS(6899), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6901), + [anon_sym_override] = ACTIONS(6901), + [anon_sym_noexcept] = ACTIONS(6901), + [anon_sym_throw] = ACTIONS(6901), + [anon_sym_requires] = ACTIONS(6901), + [anon_sym_DASH_GT_STAR] = ACTIONS(6901), }, - [STATE(2366)] = { - [sym_template_argument_list] = STATE(5490), - [sym_identifier] = ACTIONS(6746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), - [anon_sym_COMMA] = ACTIONS(6748), - [anon_sym_RPAREN] = ACTIONS(6748), - [anon_sym_LPAREN2] = ACTIONS(6748), - [anon_sym_TILDE] = ACTIONS(6751), - [anon_sym_DASH] = ACTIONS(6753), - [anon_sym_PLUS] = ACTIONS(6753), - [anon_sym_STAR] = ACTIONS(6748), - [anon_sym_SLASH] = ACTIONS(6753), - [anon_sym_PERCENT] = ACTIONS(6758), - [anon_sym_PIPE_PIPE] = ACTIONS(6758), - [anon_sym_AMP_AMP] = ACTIONS(6748), - [anon_sym_PIPE] = ACTIONS(6753), - [anon_sym_CARET] = ACTIONS(6758), - [anon_sym_AMP] = ACTIONS(6755), - [anon_sym_EQ_EQ] = ACTIONS(6758), - [anon_sym_BANG_EQ] = ACTIONS(6758), - [anon_sym_GT] = ACTIONS(6753), - [anon_sym_GT_EQ] = ACTIONS(6758), - [anon_sym_LT_EQ] = ACTIONS(6753), - [anon_sym_LT] = ACTIONS(6760), - [anon_sym_LT_LT] = ACTIONS(6758), - [anon_sym_GT_GT] = ACTIONS(6758), - [anon_sym___extension__] = ACTIONS(6746), - [anon_sym_virtual] = ACTIONS(6746), - [anon_sym_extern] = ACTIONS(6746), - [anon_sym___attribute__] = ACTIONS(6746), - [anon_sym___attribute] = ACTIONS(6746), - [anon_sym_COLON_COLON] = ACTIONS(6748), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6751), - [anon_sym___declspec] = ACTIONS(6746), - [anon_sym___based] = ACTIONS(6746), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_LBRACK] = ACTIONS(6755), - [anon_sym_static] = ACTIONS(6746), - [anon_sym_EQ] = ACTIONS(6746), - [anon_sym_register] = ACTIONS(6746), - [anon_sym_inline] = ACTIONS(6746), - [anon_sym___inline] = ACTIONS(6746), - [anon_sym___inline__] = ACTIONS(6746), - [anon_sym___forceinline] = ACTIONS(6746), - [anon_sym_thread_local] = ACTIONS(6746), - [anon_sym___thread] = ACTIONS(6746), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6746), - [anon_sym_volatile] = ACTIONS(6746), - [anon_sym_restrict] = ACTIONS(6746), - [anon_sym___restrict__] = ACTIONS(6746), - [anon_sym__Atomic] = ACTIONS(6746), - [anon_sym__Noreturn] = ACTIONS(6746), - [anon_sym_noreturn] = ACTIONS(6746), - [anon_sym__Nonnull] = ACTIONS(6746), - [anon_sym_mutable] = ACTIONS(6746), - [anon_sym_constinit] = ACTIONS(6746), - [anon_sym_consteval] = ACTIONS(6746), - [anon_sym_alignas] = ACTIONS(6746), - [anon_sym__Alignas] = ACTIONS(6746), - [anon_sym_QMARK] = ACTIONS(6758), - [anon_sym_LT_EQ_GT] = ACTIONS(6758), - [anon_sym_or] = ACTIONS(6753), - [anon_sym_and] = ACTIONS(6753), - [anon_sym_bitor] = ACTIONS(6753), - [anon_sym_xor] = ACTIONS(6753), - [anon_sym_bitand] = ACTIONS(6753), - [anon_sym_not_eq] = ACTIONS(6753), - [anon_sym_DASH_DASH] = ACTIONS(6758), - [anon_sym_PLUS_PLUS] = ACTIONS(6758), - [anon_sym_DOT] = ACTIONS(6753), - [anon_sym_DOT_STAR] = ACTIONS(6758), - [anon_sym_DASH_GT] = ACTIONS(6758), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(6746), - [anon_sym_template] = ACTIONS(6746), - [anon_sym_operator] = ACTIONS(6746), - [anon_sym_LBRACK_COLON] = ACTIONS(6751), + [STATE(2302)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(10070), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_explicit_object_parameter_declaration] = STATE(10070), + [sym_optional_parameter_declaration] = STATE(10070), + [sym_variadic_parameter_declaration] = STATE(10070), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6528), + [anon_sym_RPAREN] = ACTIONS(6530), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5629), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_this] = ACTIONS(5631), }, - [STATE(2367)] = { - [sym_template_argument_list] = STATE(2491), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6208), - [anon_sym_COMMA] = ACTIONS(6208), - [anon_sym_LPAREN2] = ACTIONS(6208), - [anon_sym_DASH] = ACTIONS(6201), - [anon_sym_PLUS] = ACTIONS(6201), - [anon_sym_STAR] = ACTIONS(6201), - [anon_sym_SLASH] = ACTIONS(6201), - [anon_sym_PERCENT] = ACTIONS(6201), - [anon_sym_PIPE_PIPE] = ACTIONS(6208), - [anon_sym_AMP_AMP] = ACTIONS(6208), - [anon_sym_PIPE] = ACTIONS(6201), - [anon_sym_CARET] = ACTIONS(6201), - [anon_sym_AMP] = ACTIONS(6201), - [anon_sym_EQ_EQ] = ACTIONS(6208), - [anon_sym_BANG_EQ] = ACTIONS(6208), - [anon_sym_GT] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6208), - [anon_sym_LT_EQ] = ACTIONS(6201), - [anon_sym_LT] = ACTIONS(7936), - [anon_sym_LT_LT] = ACTIONS(6201), - [anon_sym_GT_GT] = ACTIONS(6201), - [anon_sym___extension__] = ACTIONS(6208), - [anon_sym___attribute__] = ACTIONS(6208), - [anon_sym___attribute] = ACTIONS(6201), - [anon_sym_COLON] = ACTIONS(6201), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(6208), - [anon_sym_LBRACK] = ACTIONS(6208), - [anon_sym_RBRACK] = ACTIONS(6208), - [anon_sym_EQ] = ACTIONS(6201), - [anon_sym_const] = ACTIONS(6201), - [anon_sym_constexpr] = ACTIONS(6208), - [anon_sym_volatile] = ACTIONS(6208), - [anon_sym_restrict] = ACTIONS(6208), - [anon_sym___restrict__] = ACTIONS(6208), - [anon_sym__Atomic] = ACTIONS(6208), - [anon_sym__Noreturn] = ACTIONS(6208), - [anon_sym_noreturn] = ACTIONS(6208), - [anon_sym__Nonnull] = ACTIONS(6208), - [anon_sym_mutable] = ACTIONS(6208), - [anon_sym_constinit] = ACTIONS(6208), - [anon_sym_consteval] = ACTIONS(6208), - [anon_sym_alignas] = ACTIONS(6208), - [anon_sym__Alignas] = ACTIONS(6208), - [anon_sym_QMARK] = ACTIONS(6208), - [anon_sym_STAR_EQ] = ACTIONS(6208), - [anon_sym_SLASH_EQ] = ACTIONS(6208), - [anon_sym_PERCENT_EQ] = ACTIONS(6208), - [anon_sym_PLUS_EQ] = ACTIONS(6208), - [anon_sym_DASH_EQ] = ACTIONS(6208), - [anon_sym_LT_LT_EQ] = ACTIONS(6208), - [anon_sym_GT_GT_EQ] = ACTIONS(6208), - [anon_sym_AMP_EQ] = ACTIONS(6208), - [anon_sym_CARET_EQ] = ACTIONS(6208), - [anon_sym_PIPE_EQ] = ACTIONS(6208), - [anon_sym_and_eq] = ACTIONS(6208), - [anon_sym_or_eq] = ACTIONS(6208), - [anon_sym_xor_eq] = ACTIONS(6208), - [anon_sym_LT_EQ_GT] = ACTIONS(6208), - [anon_sym_or] = ACTIONS(6201), - [anon_sym_and] = ACTIONS(6201), - [anon_sym_bitor] = ACTIONS(6208), - [anon_sym_xor] = ACTIONS(6201), - [anon_sym_bitand] = ACTIONS(6208), - [anon_sym_not_eq] = ACTIONS(6208), - [anon_sym_DASH_DASH] = ACTIONS(6208), - [anon_sym_PLUS_PLUS] = ACTIONS(6208), - [anon_sym_DOT] = ACTIONS(6201), - [anon_sym_DOT_STAR] = ACTIONS(6208), - [anon_sym_DASH_GT] = ACTIONS(6208), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6208), - [anon_sym_decltype] = ACTIONS(6208), - [anon_sym_final] = ACTIONS(6208), - [anon_sym_override] = ACTIONS(6208), - [anon_sym_requires] = ACTIONS(6208), + [STATE(2303)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(9892), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_explicit_object_parameter_declaration] = STATE(9892), + [sym_optional_parameter_declaration] = STATE(9892), + [sym_variadic_parameter_declaration] = STATE(9892), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6457), + [anon_sym_RPAREN] = ACTIONS(6459), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5629), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_this] = ACTIONS(5631), }, - [STATE(2368)] = { - [sym_template_argument_list] = STATE(3601), - [aux_sym_sized_type_specifier_repeat1] = STATE(2505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7019), - [anon_sym_COMMA] = ACTIONS(7019), - [anon_sym_RPAREN] = ACTIONS(7019), - [anon_sym_LPAREN2] = ACTIONS(7019), - [anon_sym_DASH] = ACTIONS(7017), - [anon_sym_PLUS] = ACTIONS(7017), - [anon_sym_STAR] = ACTIONS(7017), - [anon_sym_SLASH] = ACTIONS(7017), - [anon_sym_PERCENT] = ACTIONS(7017), - [anon_sym_PIPE_PIPE] = ACTIONS(7019), - [anon_sym_AMP_AMP] = ACTIONS(7019), - [anon_sym_PIPE] = ACTIONS(7017), - [anon_sym_CARET] = ACTIONS(7017), - [anon_sym_AMP] = ACTIONS(7017), - [anon_sym_EQ_EQ] = ACTIONS(7019), - [anon_sym_BANG_EQ] = ACTIONS(7019), - [anon_sym_GT] = ACTIONS(7017), - [anon_sym_GT_EQ] = ACTIONS(7019), - [anon_sym_LT_EQ] = ACTIONS(7017), - [anon_sym_LT] = ACTIONS(7017), - [anon_sym_LT_LT] = ACTIONS(7017), - [anon_sym_GT_GT] = ACTIONS(7017), - [anon_sym___extension__] = ACTIONS(7019), - [anon_sym___attribute__] = ACTIONS(7019), - [anon_sym___attribute] = ACTIONS(7017), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(7019), - [anon_sym_signed] = ACTIONS(6586), - [anon_sym_unsigned] = ACTIONS(6586), - [anon_sym_long] = ACTIONS(6586), - [anon_sym_short] = ACTIONS(6586), - [anon_sym_LBRACK] = ACTIONS(7019), - [anon_sym_EQ] = ACTIONS(7017), - [anon_sym_const] = ACTIONS(7017), - [anon_sym_constexpr] = ACTIONS(7019), - [anon_sym_volatile] = ACTIONS(7019), - [anon_sym_restrict] = ACTIONS(7019), - [anon_sym___restrict__] = ACTIONS(7019), - [anon_sym__Atomic] = ACTIONS(7019), - [anon_sym__Noreturn] = ACTIONS(7019), - [anon_sym_noreturn] = ACTIONS(7019), - [anon_sym__Nonnull] = ACTIONS(7019), - [anon_sym_mutable] = ACTIONS(7019), - [anon_sym_constinit] = ACTIONS(7019), - [anon_sym_consteval] = ACTIONS(7019), - [anon_sym_alignas] = ACTIONS(7019), - [anon_sym__Alignas] = ACTIONS(7019), - [anon_sym_QMARK] = ACTIONS(7019), - [anon_sym_STAR_EQ] = ACTIONS(7019), - [anon_sym_SLASH_EQ] = ACTIONS(7019), - [anon_sym_PERCENT_EQ] = ACTIONS(7019), - [anon_sym_PLUS_EQ] = ACTIONS(7019), - [anon_sym_DASH_EQ] = ACTIONS(7019), - [anon_sym_LT_LT_EQ] = ACTIONS(7019), - [anon_sym_GT_GT_EQ] = ACTIONS(7019), - [anon_sym_AMP_EQ] = ACTIONS(7019), - [anon_sym_CARET_EQ] = ACTIONS(7019), - [anon_sym_PIPE_EQ] = ACTIONS(7019), - [anon_sym_LT_EQ_GT] = ACTIONS(7019), - [anon_sym_or] = ACTIONS(7019), - [anon_sym_and] = ACTIONS(7019), - [anon_sym_bitor] = ACTIONS(7019), - [anon_sym_xor] = ACTIONS(7019), - [anon_sym_bitand] = ACTIONS(7019), - [anon_sym_not_eq] = ACTIONS(7019), - [anon_sym_DASH_DASH] = ACTIONS(7019), - [anon_sym_PLUS_PLUS] = ACTIONS(7019), - [anon_sym_DOT] = ACTIONS(7017), - [anon_sym_DOT_STAR] = ACTIONS(7019), - [anon_sym_DASH_GT] = ACTIONS(7017), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7019), - [anon_sym_override] = ACTIONS(7019), - [anon_sym_requires] = ACTIONS(7019), - [anon_sym_DASH_GT_STAR] = ACTIONS(7019), + [STATE(2304)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(9979), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_explicit_object_parameter_declaration] = STATE(9979), + [sym_optional_parameter_declaration] = STATE(9979), + [sym_variadic_parameter_declaration] = STATE(9979), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6520), + [anon_sym_RPAREN] = ACTIONS(6522), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5629), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_this] = ACTIONS(5631), }, - [STATE(2369)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), - [anon_sym_COMMA] = ACTIONS(6264), - [anon_sym_RPAREN] = ACTIONS(6264), - [anon_sym_LPAREN2] = ACTIONS(6264), - [anon_sym_DASH] = ACTIONS(6262), - [anon_sym_PLUS] = ACTIONS(6262), - [anon_sym_STAR] = ACTIONS(6262), - [anon_sym_SLASH] = ACTIONS(6262), - [anon_sym_PERCENT] = ACTIONS(6262), - [anon_sym_PIPE_PIPE] = ACTIONS(6264), - [anon_sym_AMP_AMP] = ACTIONS(6264), - [anon_sym_PIPE] = ACTIONS(6262), - [anon_sym_CARET] = ACTIONS(6262), - [anon_sym_AMP] = ACTIONS(6262), - [anon_sym_EQ_EQ] = ACTIONS(6264), - [anon_sym_BANG_EQ] = ACTIONS(6264), - [anon_sym_GT] = ACTIONS(6262), - [anon_sym_GT_EQ] = ACTIONS(6264), - [anon_sym_LT_EQ] = ACTIONS(6262), - [anon_sym_LT] = ACTIONS(6262), - [anon_sym_LT_LT] = ACTIONS(6262), - [anon_sym_GT_GT] = ACTIONS(6262), - [anon_sym___extension__] = ACTIONS(6264), - [anon_sym___attribute__] = ACTIONS(6264), - [anon_sym___attribute] = ACTIONS(6262), - [anon_sym_COLON] = ACTIONS(6262), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACE] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(6264), - [anon_sym_EQ] = ACTIONS(6262), - [anon_sym_const] = ACTIONS(6262), - [anon_sym_constexpr] = ACTIONS(6264), - [anon_sym_volatile] = ACTIONS(6264), - [anon_sym_restrict] = ACTIONS(6264), - [anon_sym___restrict__] = ACTIONS(6264), - [anon_sym__Atomic] = ACTIONS(6264), - [anon_sym__Noreturn] = ACTIONS(6264), - [anon_sym_noreturn] = ACTIONS(6264), - [anon_sym__Nonnull] = ACTIONS(6264), - [anon_sym_mutable] = ACTIONS(6264), - [anon_sym_constinit] = ACTIONS(6264), - [anon_sym_consteval] = ACTIONS(6264), - [anon_sym_alignas] = ACTIONS(6264), - [anon_sym__Alignas] = ACTIONS(6264), - [anon_sym_QMARK] = ACTIONS(6264), - [anon_sym_STAR_EQ] = ACTIONS(6264), - [anon_sym_SLASH_EQ] = ACTIONS(6264), - [anon_sym_PERCENT_EQ] = ACTIONS(6264), - [anon_sym_PLUS_EQ] = ACTIONS(6264), - [anon_sym_DASH_EQ] = ACTIONS(6264), - [anon_sym_LT_LT_EQ] = ACTIONS(6264), - [anon_sym_GT_GT_EQ] = ACTIONS(6264), - [anon_sym_AMP_EQ] = ACTIONS(6264), - [anon_sym_CARET_EQ] = ACTIONS(6264), - [anon_sym_PIPE_EQ] = ACTIONS(6264), - [anon_sym_and_eq] = ACTIONS(6264), - [anon_sym_or_eq] = ACTIONS(6264), - [anon_sym_xor_eq] = ACTIONS(6264), - [anon_sym_LT_EQ_GT] = ACTIONS(6264), - [anon_sym_or] = ACTIONS(6262), - [anon_sym_and] = ACTIONS(6262), - [anon_sym_bitor] = ACTIONS(6264), - [anon_sym_xor] = ACTIONS(6262), - [anon_sym_bitand] = ACTIONS(6264), - [anon_sym_not_eq] = ACTIONS(6264), - [anon_sym_DASH_DASH] = ACTIONS(6264), - [anon_sym_PLUS_PLUS] = ACTIONS(6264), - [anon_sym_DOT] = ACTIONS(6262), - [anon_sym_DOT_STAR] = ACTIONS(6264), - [anon_sym_DASH_GT] = ACTIONS(6262), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6264), - [anon_sym_decltype] = ACTIONS(6264), - [anon_sym_final] = ACTIONS(6264), - [anon_sym_override] = ACTIONS(6264), - [anon_sym_requires] = ACTIONS(6264), - [anon_sym_DASH_GT_STAR] = ACTIONS(6264), + [STATE(2305)] = { + [sym_type_qualifier] = STATE(2305), + [sym_alignas_qualifier] = STATE(2434), + [aux_sym__type_definition_type_repeat1] = STATE(2305), + [sym_identifier] = ACTIONS(6889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), + [anon_sym_COMMA] = ACTIONS(6891), + [anon_sym_LPAREN2] = ACTIONS(6891), + [anon_sym_DASH] = ACTIONS(6889), + [anon_sym_PLUS] = ACTIONS(6889), + [anon_sym_STAR] = ACTIONS(6889), + [anon_sym_SLASH] = ACTIONS(6889), + [anon_sym_PERCENT] = ACTIONS(6889), + [anon_sym_PIPE_PIPE] = ACTIONS(6891), + [anon_sym_AMP_AMP] = ACTIONS(6891), + [anon_sym_PIPE] = ACTIONS(6889), + [anon_sym_CARET] = ACTIONS(6889), + [anon_sym_AMP] = ACTIONS(6889), + [anon_sym_EQ_EQ] = ACTIONS(6891), + [anon_sym_BANG_EQ] = ACTIONS(6891), + [anon_sym_GT] = ACTIONS(6889), + [anon_sym_GT_EQ] = ACTIONS(6891), + [anon_sym_LT_EQ] = ACTIONS(6889), + [anon_sym_LT] = ACTIONS(6889), + [anon_sym_LT_LT] = ACTIONS(6889), + [anon_sym_GT_GT] = ACTIONS(6889), + [anon_sym___extension__] = ACTIONS(7979), + [anon_sym___attribute__] = ACTIONS(6889), + [anon_sym___attribute] = ACTIONS(6889), + [anon_sym_LBRACE] = ACTIONS(6891), + [anon_sym_signed] = ACTIONS(6889), + [anon_sym_unsigned] = ACTIONS(6889), + [anon_sym_long] = ACTIONS(6889), + [anon_sym_short] = ACTIONS(6889), + [anon_sym_LBRACK] = ACTIONS(6891), + [anon_sym_RBRACK] = ACTIONS(6891), + [anon_sym_EQ] = ACTIONS(6889), + [anon_sym_const] = ACTIONS(7979), + [anon_sym_constexpr] = ACTIONS(7979), + [anon_sym_volatile] = ACTIONS(7979), + [anon_sym_restrict] = ACTIONS(7979), + [anon_sym___restrict__] = ACTIONS(7979), + [anon_sym__Atomic] = ACTIONS(7979), + [anon_sym__Noreturn] = ACTIONS(7979), + [anon_sym_noreturn] = ACTIONS(7979), + [anon_sym__Nonnull] = ACTIONS(7979), + [anon_sym_mutable] = ACTIONS(7979), + [anon_sym_constinit] = ACTIONS(7979), + [anon_sym_consteval] = ACTIONS(7979), + [anon_sym_alignas] = ACTIONS(7982), + [anon_sym__Alignas] = ACTIONS(7982), + [sym_primitive_type] = ACTIONS(6889), + [anon_sym_QMARK] = ACTIONS(6891), + [anon_sym_STAR_EQ] = ACTIONS(6891), + [anon_sym_SLASH_EQ] = ACTIONS(6891), + [anon_sym_PERCENT_EQ] = ACTIONS(6891), + [anon_sym_PLUS_EQ] = ACTIONS(6891), + [anon_sym_DASH_EQ] = ACTIONS(6891), + [anon_sym_LT_LT_EQ] = ACTIONS(6891), + [anon_sym_GT_GT_EQ] = ACTIONS(6891), + [anon_sym_AMP_EQ] = ACTIONS(6891), + [anon_sym_CARET_EQ] = ACTIONS(6891), + [anon_sym_PIPE_EQ] = ACTIONS(6891), + [anon_sym_and_eq] = ACTIONS(6889), + [anon_sym_or_eq] = ACTIONS(6889), + [anon_sym_xor_eq] = ACTIONS(6889), + [anon_sym_LT_EQ_GT] = ACTIONS(6891), + [anon_sym_or] = ACTIONS(6889), + [anon_sym_and] = ACTIONS(6889), + [anon_sym_bitor] = ACTIONS(6889), + [anon_sym_xor] = ACTIONS(6889), + [anon_sym_bitand] = ACTIONS(6889), + [anon_sym_not_eq] = ACTIONS(6889), + [anon_sym_DASH_DASH] = ACTIONS(6891), + [anon_sym_PLUS_PLUS] = ACTIONS(6891), + [anon_sym_DOT] = ACTIONS(6889), + [anon_sym_DOT_STAR] = ACTIONS(6891), + [anon_sym_DASH_GT] = ACTIONS(6891), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6889), + [anon_sym_override] = ACTIONS(6889), + [anon_sym_requires] = ACTIONS(6889), }, - [STATE(2370)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6788), - [anon_sym_COMMA] = ACTIONS(6788), - [anon_sym_LPAREN2] = ACTIONS(6788), - [anon_sym_DASH] = ACTIONS(6786), - [anon_sym_PLUS] = ACTIONS(6786), - [anon_sym_STAR] = ACTIONS(6786), - [anon_sym_SLASH] = ACTIONS(6786), - [anon_sym_PERCENT] = ACTIONS(6786), - [anon_sym_PIPE_PIPE] = ACTIONS(6788), - [anon_sym_AMP_AMP] = ACTIONS(6788), - [anon_sym_PIPE] = ACTIONS(6786), - [anon_sym_CARET] = ACTIONS(6786), - [anon_sym_AMP] = ACTIONS(6786), - [anon_sym_EQ_EQ] = ACTIONS(6788), - [anon_sym_BANG_EQ] = ACTIONS(6788), - [anon_sym_GT] = ACTIONS(6786), - [anon_sym_GT_EQ] = ACTIONS(6786), - [anon_sym_LT_EQ] = ACTIONS(6786), - [anon_sym_LT] = ACTIONS(6786), - [anon_sym_LT_LT] = ACTIONS(6786), - [anon_sym_GT_GT] = ACTIONS(6786), - [anon_sym___extension__] = ACTIONS(6788), - [anon_sym___attribute__] = ACTIONS(6788), - [anon_sym___attribute] = ACTIONS(6786), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6788), - [anon_sym_LBRACK] = ACTIONS(6786), - [anon_sym_EQ] = ACTIONS(6786), - [anon_sym_const] = ACTIONS(6786), - [anon_sym_constexpr] = ACTIONS(6788), - [anon_sym_volatile] = ACTIONS(6788), - [anon_sym_restrict] = ACTIONS(6788), - [anon_sym___restrict__] = ACTIONS(6788), - [anon_sym__Atomic] = ACTIONS(6788), - [anon_sym__Noreturn] = ACTIONS(6788), - [anon_sym_noreturn] = ACTIONS(6788), - [anon_sym__Nonnull] = ACTIONS(6788), - [anon_sym_mutable] = ACTIONS(6788), - [anon_sym_constinit] = ACTIONS(6788), - [anon_sym_consteval] = ACTIONS(6788), - [anon_sym_alignas] = ACTIONS(6788), - [anon_sym__Alignas] = ACTIONS(6788), - [anon_sym_QMARK] = ACTIONS(6788), - [anon_sym_STAR_EQ] = ACTIONS(6788), - [anon_sym_SLASH_EQ] = ACTIONS(6788), - [anon_sym_PERCENT_EQ] = ACTIONS(6788), - [anon_sym_PLUS_EQ] = ACTIONS(6788), - [anon_sym_DASH_EQ] = ACTIONS(6788), - [anon_sym_LT_LT_EQ] = ACTIONS(6788), - [anon_sym_GT_GT_EQ] = ACTIONS(6786), - [anon_sym_AMP_EQ] = ACTIONS(6788), - [anon_sym_CARET_EQ] = ACTIONS(6788), - [anon_sym_PIPE_EQ] = ACTIONS(6788), - [anon_sym_and_eq] = ACTIONS(6788), - [anon_sym_or_eq] = ACTIONS(6788), - [anon_sym_xor_eq] = ACTIONS(6788), - [anon_sym_LT_EQ_GT] = ACTIONS(6788), - [anon_sym_or] = ACTIONS(6786), - [anon_sym_and] = ACTIONS(6786), - [anon_sym_bitor] = ACTIONS(6788), - [anon_sym_xor] = ACTIONS(6786), - [anon_sym_bitand] = ACTIONS(6788), - [anon_sym_not_eq] = ACTIONS(6788), - [anon_sym_DASH_DASH] = ACTIONS(6788), - [anon_sym_PLUS_PLUS] = ACTIONS(6788), - [anon_sym_asm] = ACTIONS(6788), - [anon_sym___asm__] = ACTIONS(6788), - [anon_sym___asm] = ACTIONS(6786), - [anon_sym_DOT] = ACTIONS(6786), - [anon_sym_DOT_STAR] = ACTIONS(6788), - [anon_sym_DASH_GT] = ACTIONS(6788), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6788), - [anon_sym_override] = ACTIONS(6788), - [anon_sym_GT2] = ACTIONS(6788), - [anon_sym_noexcept] = ACTIONS(6788), - [anon_sym_throw] = ACTIONS(6788), - [anon_sym_requires] = ACTIONS(6788), + [STATE(2306)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(10146), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_explicit_object_parameter_declaration] = STATE(10146), + [sym_optional_parameter_declaration] = STATE(10146), + [sym_variadic_parameter_declaration] = STATE(10146), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6516), + [anon_sym_RPAREN] = ACTIONS(6518), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5629), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_this] = ACTIONS(5631), }, - [STATE(2371)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2280), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7385), - [anon_sym_COMMA] = ACTIONS(7385), - [anon_sym_LPAREN2] = ACTIONS(7385), - [anon_sym_DASH] = ACTIONS(7383), - [anon_sym_PLUS] = ACTIONS(7383), - [anon_sym_STAR] = ACTIONS(7383), - [anon_sym_SLASH] = ACTIONS(7383), - [anon_sym_PERCENT] = ACTIONS(7383), - [anon_sym_PIPE_PIPE] = ACTIONS(7385), - [anon_sym_AMP_AMP] = ACTIONS(7385), - [anon_sym_PIPE] = ACTIONS(7383), - [anon_sym_CARET] = ACTIONS(7383), - [anon_sym_AMP] = ACTIONS(7383), - [anon_sym_EQ_EQ] = ACTIONS(7385), - [anon_sym_BANG_EQ] = ACTIONS(7385), - [anon_sym_GT] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_LT] = ACTIONS(7383), - [anon_sym_LT_LT] = ACTIONS(7383), - [anon_sym_GT_GT] = ACTIONS(7383), - [anon_sym___extension__] = ACTIONS(7385), - [anon_sym___attribute__] = ACTIONS(7385), - [anon_sym___attribute] = ACTIONS(7383), - [anon_sym_LBRACE] = ACTIONS(7385), - [anon_sym_signed] = ACTIONS(7906), - [anon_sym_unsigned] = ACTIONS(7906), - [anon_sym_long] = ACTIONS(7906), - [anon_sym_short] = ACTIONS(7906), - [anon_sym_LBRACK] = ACTIONS(7385), - [anon_sym_EQ] = ACTIONS(7383), - [anon_sym_const] = ACTIONS(7383), - [anon_sym_constexpr] = ACTIONS(7385), - [anon_sym_volatile] = ACTIONS(7385), - [anon_sym_restrict] = ACTIONS(7385), - [anon_sym___restrict__] = ACTIONS(7385), - [anon_sym__Atomic] = ACTIONS(7385), - [anon_sym__Noreturn] = ACTIONS(7385), - [anon_sym_noreturn] = ACTIONS(7385), - [anon_sym__Nonnull] = ACTIONS(7385), - [anon_sym_mutable] = ACTIONS(7385), - [anon_sym_constinit] = ACTIONS(7385), - [anon_sym_consteval] = ACTIONS(7385), - [anon_sym_alignas] = ACTIONS(7385), - [anon_sym__Alignas] = ACTIONS(7385), - [anon_sym_QMARK] = ACTIONS(7385), - [anon_sym_STAR_EQ] = ACTIONS(7385), - [anon_sym_SLASH_EQ] = ACTIONS(7385), - [anon_sym_PERCENT_EQ] = ACTIONS(7385), - [anon_sym_PLUS_EQ] = ACTIONS(7385), - [anon_sym_DASH_EQ] = ACTIONS(7385), - [anon_sym_LT_LT_EQ] = ACTIONS(7385), - [anon_sym_GT_GT_EQ] = ACTIONS(7383), - [anon_sym_AMP_EQ] = ACTIONS(7385), - [anon_sym_CARET_EQ] = ACTIONS(7385), - [anon_sym_PIPE_EQ] = ACTIONS(7385), - [anon_sym_and_eq] = ACTIONS(7385), - [anon_sym_or_eq] = ACTIONS(7385), - [anon_sym_xor_eq] = ACTIONS(7385), - [anon_sym_LT_EQ_GT] = ACTIONS(7385), - [anon_sym_or] = ACTIONS(7383), - [anon_sym_and] = ACTIONS(7383), - [anon_sym_bitor] = ACTIONS(7385), - [anon_sym_xor] = ACTIONS(7383), - [anon_sym_bitand] = ACTIONS(7385), - [anon_sym_not_eq] = ACTIONS(7385), - [anon_sym_DASH_DASH] = ACTIONS(7385), - [anon_sym_PLUS_PLUS] = ACTIONS(7385), - [anon_sym_DOT] = ACTIONS(7383), - [anon_sym_DOT_STAR] = ACTIONS(7385), - [anon_sym_DASH_GT] = ACTIONS(7385), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7385), - [anon_sym_override] = ACTIONS(7385), - [anon_sym_GT2] = ACTIONS(7385), - [anon_sym_requires] = ACTIONS(7385), + [STATE(2307)] = { + [sym_type_qualifier] = STATE(2307), + [sym_alignas_qualifier] = STATE(2423), + [aux_sym__type_definition_type_repeat1] = STATE(2307), + [sym_identifier] = ACTIONS(6889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), + [anon_sym_COMMA] = ACTIONS(6891), + [anon_sym_LPAREN2] = ACTIONS(6891), + [anon_sym_DASH] = ACTIONS(6889), + [anon_sym_PLUS] = ACTIONS(6889), + [anon_sym_STAR] = ACTIONS(6889), + [anon_sym_SLASH] = ACTIONS(6889), + [anon_sym_PERCENT] = ACTIONS(6889), + [anon_sym_PIPE_PIPE] = ACTIONS(6891), + [anon_sym_AMP_AMP] = ACTIONS(6891), + [anon_sym_PIPE] = ACTIONS(6889), + [anon_sym_CARET] = ACTIONS(6889), + [anon_sym_AMP] = ACTIONS(6889), + [anon_sym_EQ_EQ] = ACTIONS(6891), + [anon_sym_BANG_EQ] = ACTIONS(6891), + [anon_sym_GT] = ACTIONS(6889), + [anon_sym_GT_EQ] = ACTIONS(6889), + [anon_sym_LT_EQ] = ACTIONS(6889), + [anon_sym_LT] = ACTIONS(6889), + [anon_sym_LT_LT] = ACTIONS(6889), + [anon_sym_GT_GT] = ACTIONS(6889), + [anon_sym___extension__] = ACTIONS(7985), + [anon_sym___attribute__] = ACTIONS(6889), + [anon_sym___attribute] = ACTIONS(6889), + [anon_sym_LBRACE] = ACTIONS(6891), + [anon_sym_signed] = ACTIONS(6889), + [anon_sym_unsigned] = ACTIONS(6889), + [anon_sym_long] = ACTIONS(6889), + [anon_sym_short] = ACTIONS(6889), + [anon_sym_LBRACK] = ACTIONS(6891), + [anon_sym_EQ] = ACTIONS(6889), + [anon_sym_const] = ACTIONS(7985), + [anon_sym_constexpr] = ACTIONS(7985), + [anon_sym_volatile] = ACTIONS(7985), + [anon_sym_restrict] = ACTIONS(7985), + [anon_sym___restrict__] = ACTIONS(7985), + [anon_sym__Atomic] = ACTIONS(7985), + [anon_sym__Noreturn] = ACTIONS(7985), + [anon_sym_noreturn] = ACTIONS(7985), + [anon_sym__Nonnull] = ACTIONS(7985), + [anon_sym_mutable] = ACTIONS(7985), + [anon_sym_constinit] = ACTIONS(7985), + [anon_sym_consteval] = ACTIONS(7985), + [anon_sym_alignas] = ACTIONS(7988), + [anon_sym__Alignas] = ACTIONS(7988), + [sym_primitive_type] = ACTIONS(6889), + [anon_sym_QMARK] = ACTIONS(6891), + [anon_sym_STAR_EQ] = ACTIONS(6891), + [anon_sym_SLASH_EQ] = ACTIONS(6891), + [anon_sym_PERCENT_EQ] = ACTIONS(6891), + [anon_sym_PLUS_EQ] = ACTIONS(6891), + [anon_sym_DASH_EQ] = ACTIONS(6891), + [anon_sym_LT_LT_EQ] = ACTIONS(6891), + [anon_sym_GT_GT_EQ] = ACTIONS(6889), + [anon_sym_AMP_EQ] = ACTIONS(6891), + [anon_sym_CARET_EQ] = ACTIONS(6891), + [anon_sym_PIPE_EQ] = ACTIONS(6891), + [anon_sym_and_eq] = ACTIONS(6889), + [anon_sym_or_eq] = ACTIONS(6889), + [anon_sym_xor_eq] = ACTIONS(6889), + [anon_sym_LT_EQ_GT] = ACTIONS(6891), + [anon_sym_or] = ACTIONS(6889), + [anon_sym_and] = ACTIONS(6889), + [anon_sym_bitor] = ACTIONS(6889), + [anon_sym_xor] = ACTIONS(6889), + [anon_sym_bitand] = ACTIONS(6889), + [anon_sym_not_eq] = ACTIONS(6889), + [anon_sym_DASH_DASH] = ACTIONS(6891), + [anon_sym_PLUS_PLUS] = ACTIONS(6891), + [anon_sym_DOT] = ACTIONS(6889), + [anon_sym_DOT_STAR] = ACTIONS(6891), + [anon_sym_DASH_GT] = ACTIONS(6891), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6889), + [anon_sym_override] = ACTIONS(6889), + [anon_sym_GT2] = ACTIONS(6891), + [anon_sym_requires] = ACTIONS(6889), }, - [STATE(2372)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), - [anon_sym_COMMA] = ACTIONS(2758), - [anon_sym_LPAREN2] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_SLASH] = ACTIONS(2768), - [anon_sym_PERCENT] = ACTIONS(2768), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2768), - [anon_sym_GT_EQ] = ACTIONS(2768), - [anon_sym_LT_EQ] = ACTIONS(2768), - [anon_sym_LT] = ACTIONS(2768), - [anon_sym_LT_LT] = ACTIONS(2768), - [anon_sym_GT_GT] = ACTIONS(2768), - [anon_sym___extension__] = ACTIONS(2758), - [anon_sym___attribute__] = ACTIONS(2758), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_EQ] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2758), - [anon_sym_volatile] = ACTIONS(2758), - [anon_sym_restrict] = ACTIONS(2758), - [anon_sym___restrict__] = ACTIONS(2758), - [anon_sym__Atomic] = ACTIONS(2758), - [anon_sym__Noreturn] = ACTIONS(2758), - [anon_sym_noreturn] = ACTIONS(2758), - [anon_sym__Nonnull] = ACTIONS(2758), - [anon_sym_mutable] = ACTIONS(2758), - [anon_sym_constinit] = ACTIONS(2758), - [anon_sym_consteval] = ACTIONS(2758), - [anon_sym_alignas] = ACTIONS(2758), - [anon_sym__Alignas] = ACTIONS(2758), - [anon_sym_QMARK] = ACTIONS(2758), - [anon_sym_STAR_EQ] = ACTIONS(2758), - [anon_sym_SLASH_EQ] = ACTIONS(2758), - [anon_sym_PERCENT_EQ] = ACTIONS(2758), - [anon_sym_PLUS_EQ] = ACTIONS(2758), - [anon_sym_DASH_EQ] = ACTIONS(2758), - [anon_sym_LT_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_GT_EQ] = ACTIONS(2768), - [anon_sym_AMP_EQ] = ACTIONS(2758), - [anon_sym_CARET_EQ] = ACTIONS(2758), - [anon_sym_PIPE_EQ] = ACTIONS(2758), - [anon_sym_and_eq] = ACTIONS(2758), - [anon_sym_or_eq] = ACTIONS(2758), - [anon_sym_xor_eq] = ACTIONS(2758), - [anon_sym_LT_EQ_GT] = ACTIONS(2758), - [anon_sym_or] = ACTIONS(2768), - [anon_sym_and] = ACTIONS(2768), - [anon_sym_bitor] = ACTIONS(2758), - [anon_sym_xor] = ACTIONS(2768), - [anon_sym_bitand] = ACTIONS(2758), - [anon_sym_not_eq] = ACTIONS(2758), - [anon_sym_DASH_DASH] = ACTIONS(2758), - [anon_sym_PLUS_PLUS] = ACTIONS(2758), - [anon_sym_asm] = ACTIONS(2758), - [anon_sym___asm__] = ACTIONS(2758), - [anon_sym___asm] = ACTIONS(2768), - [anon_sym_DOT] = ACTIONS(2768), - [anon_sym_DOT_STAR] = ACTIONS(2758), - [anon_sym_DASH_GT] = ACTIONS(2758), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2758), - [anon_sym_override] = ACTIONS(2758), - [anon_sym_GT2] = ACTIONS(2758), - [anon_sym_noexcept] = ACTIONS(2758), - [anon_sym_throw] = ACTIONS(2758), - [anon_sym_requires] = ACTIONS(2758), + [STATE(2308)] = { + [sym_type_qualifier] = STATE(2320), + [sym_alignas_qualifier] = STATE(2392), + [aux_sym__type_definition_type_repeat1] = STATE(2320), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), + [anon_sym_COMMA] = ACTIONS(6754), + [anon_sym_RPAREN] = ACTIONS(6754), + [anon_sym_LPAREN2] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6752), + [anon_sym_STAR] = ACTIONS(6752), + [anon_sym_SLASH] = ACTIONS(6752), + [anon_sym_PERCENT] = ACTIONS(6752), + [anon_sym_PIPE_PIPE] = ACTIONS(6754), + [anon_sym_AMP_AMP] = ACTIONS(6754), + [anon_sym_PIPE] = ACTIONS(6752), + [anon_sym_CARET] = ACTIONS(6752), + [anon_sym_AMP] = ACTIONS(6752), + [anon_sym_EQ_EQ] = ACTIONS(6754), + [anon_sym_BANG_EQ] = ACTIONS(6754), + [anon_sym_GT] = ACTIONS(6752), + [anon_sym_GT_EQ] = ACTIONS(6754), + [anon_sym_LT_EQ] = ACTIONS(6752), + [anon_sym_LT] = ACTIONS(6752), + [anon_sym_LT_LT] = ACTIONS(6752), + [anon_sym_GT_GT] = ACTIONS(6752), + [anon_sym___extension__] = ACTIONS(6644), + [anon_sym___attribute__] = ACTIONS(6754), + [anon_sym___attribute] = ACTIONS(6752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), + [anon_sym_LBRACK] = ACTIONS(6752), + [anon_sym_EQ] = ACTIONS(6752), + [anon_sym_const] = ACTIONS(6652), + [anon_sym_constexpr] = ACTIONS(6644), + [anon_sym_volatile] = ACTIONS(6644), + [anon_sym_restrict] = ACTIONS(6644), + [anon_sym___restrict__] = ACTIONS(6644), + [anon_sym__Atomic] = ACTIONS(6644), + [anon_sym__Noreturn] = ACTIONS(6644), + [anon_sym_noreturn] = ACTIONS(6644), + [anon_sym__Nonnull] = ACTIONS(6644), + [anon_sym_mutable] = ACTIONS(6644), + [anon_sym_constinit] = ACTIONS(6644), + [anon_sym_consteval] = ACTIONS(6644), + [anon_sym_alignas] = ACTIONS(6654), + [anon_sym__Alignas] = ACTIONS(6654), + [anon_sym_QMARK] = ACTIONS(6754), + [anon_sym_STAR_EQ] = ACTIONS(6754), + [anon_sym_SLASH_EQ] = ACTIONS(6754), + [anon_sym_PERCENT_EQ] = ACTIONS(6754), + [anon_sym_PLUS_EQ] = ACTIONS(6754), + [anon_sym_DASH_EQ] = ACTIONS(6754), + [anon_sym_LT_LT_EQ] = ACTIONS(6754), + [anon_sym_GT_GT_EQ] = ACTIONS(6754), + [anon_sym_AMP_EQ] = ACTIONS(6754), + [anon_sym_CARET_EQ] = ACTIONS(6754), + [anon_sym_PIPE_EQ] = ACTIONS(6754), + [anon_sym_and_eq] = ACTIONS(6754), + [anon_sym_or_eq] = ACTIONS(6754), + [anon_sym_xor_eq] = ACTIONS(6754), + [anon_sym_LT_EQ_GT] = ACTIONS(6754), + [anon_sym_or] = ACTIONS(6752), + [anon_sym_and] = ACTIONS(6752), + [anon_sym_bitor] = ACTIONS(6754), + [anon_sym_xor] = ACTIONS(6752), + [anon_sym_bitand] = ACTIONS(6754), + [anon_sym_not_eq] = ACTIONS(6754), + [anon_sym_DASH_DASH] = ACTIONS(6754), + [anon_sym_PLUS_PLUS] = ACTIONS(6754), + [anon_sym_asm] = ACTIONS(6754), + [anon_sym___asm__] = ACTIONS(6754), + [anon_sym___asm] = ACTIONS(6752), + [anon_sym_DOT] = ACTIONS(6752), + [anon_sym_DOT_STAR] = ACTIONS(6754), + [anon_sym_DASH_GT] = ACTIONS(6752), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6754), + [anon_sym_override] = ACTIONS(6754), + [anon_sym_noexcept] = ACTIONS(6754), + [anon_sym_throw] = ACTIONS(6754), + [anon_sym_requires] = ACTIONS(6754), + [anon_sym_DASH_GT_STAR] = ACTIONS(6754), }, - [STATE(2373)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6248), - [anon_sym_COMMA] = ACTIONS(6248), - [anon_sym_RPAREN] = ACTIONS(6248), - [anon_sym_LPAREN2] = ACTIONS(6248), - [anon_sym_DASH] = ACTIONS(6246), - [anon_sym_PLUS] = ACTIONS(6246), - [anon_sym_STAR] = ACTIONS(6246), - [anon_sym_SLASH] = ACTIONS(6246), - [anon_sym_PERCENT] = ACTIONS(6246), - [anon_sym_PIPE_PIPE] = ACTIONS(6248), - [anon_sym_AMP_AMP] = ACTIONS(6248), - [anon_sym_PIPE] = ACTIONS(6246), - [anon_sym_CARET] = ACTIONS(6246), - [anon_sym_AMP] = ACTIONS(6246), - [anon_sym_EQ_EQ] = ACTIONS(6248), - [anon_sym_BANG_EQ] = ACTIONS(6248), - [anon_sym_GT] = ACTIONS(6246), - [anon_sym_GT_EQ] = ACTIONS(6248), - [anon_sym_LT_EQ] = ACTIONS(6246), - [anon_sym_LT] = ACTIONS(6246), - [anon_sym_LT_LT] = ACTIONS(6246), - [anon_sym_GT_GT] = ACTIONS(6246), - [anon_sym___extension__] = ACTIONS(6248), - [anon_sym___attribute__] = ACTIONS(6248), - [anon_sym___attribute] = ACTIONS(6246), - [anon_sym_COLON] = ACTIONS(6246), - [anon_sym_COLON_COLON] = ACTIONS(6248), - [anon_sym_LBRACE] = ACTIONS(6248), - [anon_sym_LBRACK] = ACTIONS(6248), - [anon_sym_EQ] = ACTIONS(6246), - [anon_sym_const] = ACTIONS(6246), - [anon_sym_constexpr] = ACTIONS(6248), - [anon_sym_volatile] = ACTIONS(6248), - [anon_sym_restrict] = ACTIONS(6248), - [anon_sym___restrict__] = ACTIONS(6248), - [anon_sym__Atomic] = ACTIONS(6248), - [anon_sym__Noreturn] = ACTIONS(6248), - [anon_sym_noreturn] = ACTIONS(6248), - [anon_sym__Nonnull] = ACTIONS(6248), - [anon_sym_mutable] = ACTIONS(6248), - [anon_sym_constinit] = ACTIONS(6248), - [anon_sym_consteval] = ACTIONS(6248), - [anon_sym_alignas] = ACTIONS(6248), - [anon_sym__Alignas] = ACTIONS(6248), - [anon_sym_QMARK] = ACTIONS(6248), - [anon_sym_STAR_EQ] = ACTIONS(6248), - [anon_sym_SLASH_EQ] = ACTIONS(6248), - [anon_sym_PERCENT_EQ] = ACTIONS(6248), - [anon_sym_PLUS_EQ] = ACTIONS(6248), - [anon_sym_DASH_EQ] = ACTIONS(6248), - [anon_sym_LT_LT_EQ] = ACTIONS(6248), - [anon_sym_GT_GT_EQ] = ACTIONS(6248), - [anon_sym_AMP_EQ] = ACTIONS(6248), - [anon_sym_CARET_EQ] = ACTIONS(6248), - [anon_sym_PIPE_EQ] = ACTIONS(6248), - [anon_sym_and_eq] = ACTIONS(6248), - [anon_sym_or_eq] = ACTIONS(6248), - [anon_sym_xor_eq] = ACTIONS(6248), - [anon_sym_LT_EQ_GT] = ACTIONS(6248), - [anon_sym_or] = ACTIONS(6246), - [anon_sym_and] = ACTIONS(6246), - [anon_sym_bitor] = ACTIONS(6248), - [anon_sym_xor] = ACTIONS(6246), - [anon_sym_bitand] = ACTIONS(6248), - [anon_sym_not_eq] = ACTIONS(6248), - [anon_sym_DASH_DASH] = ACTIONS(6248), - [anon_sym_PLUS_PLUS] = ACTIONS(6248), - [anon_sym_DOT] = ACTIONS(6246), - [anon_sym_DOT_STAR] = ACTIONS(6248), - [anon_sym_DASH_GT] = ACTIONS(6246), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6248), - [anon_sym_decltype] = ACTIONS(6248), - [anon_sym_final] = ACTIONS(6248), - [anon_sym_override] = ACTIONS(6248), - [anon_sym_requires] = ACTIONS(6248), - [anon_sym_DASH_GT_STAR] = ACTIONS(6248), + [STATE(2309)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_exception_specification] = STATE(2567), + [sym__function_attributes_end] = STATE(3919), + [sym__function_postfix] = STATE(3628), + [sym_trailing_return_type] = STATE(3071), + [sym_noexcept] = STATE(2567), + [sym_throw_specifier] = STATE(2567), + [sym_requires_clause] = STATE(3628), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(7789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [aux_sym_preproc_if_token2] = ACTIONS(7791), + [aux_sym_preproc_else_token1] = ACTIONS(7791), + [aux_sym_preproc_elif_token1] = ACTIONS(7789), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6491), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7789), + [anon_sym_or_eq] = ACTIONS(7789), + [anon_sym_xor_eq] = ACTIONS(7789), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7789), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7789), + [anon_sym_not_eq] = ACTIONS(7789), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6497), + [anon_sym___asm__] = ACTIONS(6497), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(7799), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6502), + [anon_sym_override] = ACTIONS(6502), + [anon_sym_noexcept] = ACTIONS(6504), + [anon_sym_throw] = ACTIONS(6506), + [anon_sym_requires] = ACTIONS(6508), }, - [STATE(2374)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6252), - [anon_sym_COMMA] = ACTIONS(6252), - [anon_sym_RPAREN] = ACTIONS(6252), - [anon_sym_LPAREN2] = ACTIONS(6252), - [anon_sym_DASH] = ACTIONS(6250), - [anon_sym_PLUS] = ACTIONS(6250), - [anon_sym_STAR] = ACTIONS(6250), - [anon_sym_SLASH] = ACTIONS(6250), - [anon_sym_PERCENT] = ACTIONS(6250), - [anon_sym_PIPE_PIPE] = ACTIONS(6252), - [anon_sym_AMP_AMP] = ACTIONS(6252), - [anon_sym_PIPE] = ACTIONS(6250), - [anon_sym_CARET] = ACTIONS(6250), - [anon_sym_AMP] = ACTIONS(6250), - [anon_sym_EQ_EQ] = ACTIONS(6252), - [anon_sym_BANG_EQ] = ACTIONS(6252), - [anon_sym_GT] = ACTIONS(6250), - [anon_sym_GT_EQ] = ACTIONS(6252), - [anon_sym_LT_EQ] = ACTIONS(6250), - [anon_sym_LT] = ACTIONS(6250), - [anon_sym_LT_LT] = ACTIONS(6250), - [anon_sym_GT_GT] = ACTIONS(6250), - [anon_sym___extension__] = ACTIONS(6252), - [anon_sym___attribute__] = ACTIONS(6252), - [anon_sym___attribute] = ACTIONS(6250), - [anon_sym_COLON] = ACTIONS(6250), - [anon_sym_COLON_COLON] = ACTIONS(6252), - [anon_sym_LBRACE] = ACTIONS(6252), - [anon_sym_LBRACK] = ACTIONS(6252), - [anon_sym_EQ] = ACTIONS(6250), - [anon_sym_const] = ACTIONS(6250), - [anon_sym_constexpr] = ACTIONS(6252), - [anon_sym_volatile] = ACTIONS(6252), - [anon_sym_restrict] = ACTIONS(6252), - [anon_sym___restrict__] = ACTIONS(6252), - [anon_sym__Atomic] = ACTIONS(6252), - [anon_sym__Noreturn] = ACTIONS(6252), - [anon_sym_noreturn] = ACTIONS(6252), - [anon_sym__Nonnull] = ACTIONS(6252), - [anon_sym_mutable] = ACTIONS(6252), - [anon_sym_constinit] = ACTIONS(6252), - [anon_sym_consteval] = ACTIONS(6252), - [anon_sym_alignas] = ACTIONS(6252), - [anon_sym__Alignas] = ACTIONS(6252), - [anon_sym_QMARK] = ACTIONS(6252), - [anon_sym_STAR_EQ] = ACTIONS(6252), - [anon_sym_SLASH_EQ] = ACTIONS(6252), - [anon_sym_PERCENT_EQ] = ACTIONS(6252), - [anon_sym_PLUS_EQ] = ACTIONS(6252), - [anon_sym_DASH_EQ] = ACTIONS(6252), - [anon_sym_LT_LT_EQ] = ACTIONS(6252), - [anon_sym_GT_GT_EQ] = ACTIONS(6252), - [anon_sym_AMP_EQ] = ACTIONS(6252), - [anon_sym_CARET_EQ] = ACTIONS(6252), - [anon_sym_PIPE_EQ] = ACTIONS(6252), - [anon_sym_and_eq] = ACTIONS(6252), - [anon_sym_or_eq] = ACTIONS(6252), - [anon_sym_xor_eq] = ACTIONS(6252), - [anon_sym_LT_EQ_GT] = ACTIONS(6252), - [anon_sym_or] = ACTIONS(6250), - [anon_sym_and] = ACTIONS(6250), - [anon_sym_bitor] = ACTIONS(6252), - [anon_sym_xor] = ACTIONS(6250), - [anon_sym_bitand] = ACTIONS(6252), - [anon_sym_not_eq] = ACTIONS(6252), - [anon_sym_DASH_DASH] = ACTIONS(6252), - [anon_sym_PLUS_PLUS] = ACTIONS(6252), - [anon_sym_DOT] = ACTIONS(6250), - [anon_sym_DOT_STAR] = ACTIONS(6252), - [anon_sym_DASH_GT] = ACTIONS(6250), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6252), - [anon_sym_decltype] = ACTIONS(6252), - [anon_sym_final] = ACTIONS(6252), - [anon_sym_override] = ACTIONS(6252), - [anon_sym_requires] = ACTIONS(6252), - [anon_sym_DASH_GT_STAR] = ACTIONS(6252), + [STATE(2310)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_exception_specification] = STATE(2600), + [sym__function_attributes_end] = STATE(3920), + [sym__function_postfix] = STATE(3655), + [sym_trailing_return_type] = STATE(3029), + [sym_noexcept] = STATE(2600), + [sym_throw_specifier] = STATE(2600), + [sym_requires_clause] = STATE(3655), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(7968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [aux_sym_preproc_if_token2] = ACTIONS(7966), + [aux_sym_preproc_else_token1] = ACTIONS(7966), + [aux_sym_preproc_elif_token1] = ACTIONS(7968), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7966), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym___attribute__] = ACTIONS(6491), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7968), + [anon_sym_or_eq] = ACTIONS(7968), + [anon_sym_xor_eq] = ACTIONS(7968), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7968), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7968), + [anon_sym_not_eq] = ACTIONS(7968), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6497), + [anon_sym___asm__] = ACTIONS(6497), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(7991), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6502), + [anon_sym_override] = ACTIONS(6502), + [anon_sym_noexcept] = ACTIONS(6504), + [anon_sym_throw] = ACTIONS(6506), + [anon_sym_requires] = ACTIONS(6508), }, - [STATE(2375)] = { - [sym_type_qualifier] = STATE(2375), - [sym_alignas_qualifier] = STATE(2559), - [aux_sym__type_definition_type_repeat1] = STATE(2375), - [sym_identifier] = ACTIONS(6525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_RPAREN] = ACTIONS(6527), - [aux_sym_preproc_if_token2] = ACTIONS(6527), - [aux_sym_preproc_else_token1] = ACTIONS(6527), - [aux_sym_preproc_elif_token1] = ACTIONS(6525), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6527), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6527), - [anon_sym_LPAREN2] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6525), - [anon_sym_PLUS] = ACTIONS(6525), - [anon_sym_STAR] = ACTIONS(6527), - [anon_sym_SLASH] = ACTIONS(6525), - [anon_sym_PERCENT] = ACTIONS(6527), - [anon_sym_PIPE_PIPE] = ACTIONS(6527), - [anon_sym_AMP_AMP] = ACTIONS(6527), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_CARET] = ACTIONS(6527), - [anon_sym_AMP] = ACTIONS(6525), - [anon_sym_EQ_EQ] = ACTIONS(6527), - [anon_sym_BANG_EQ] = ACTIONS(6527), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6527), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_LT_LT] = ACTIONS(6527), - [anon_sym_GT_GT] = ACTIONS(6527), - [anon_sym_SEMI] = ACTIONS(6527), - [anon_sym___extension__] = ACTIONS(7939), - [anon_sym___attribute__] = ACTIONS(6525), - [anon_sym___attribute] = ACTIONS(6525), - [anon_sym_COLON] = ACTIONS(6525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6527), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6527), - [anon_sym_RBRACE] = ACTIONS(6527), - [anon_sym_LBRACK] = ACTIONS(6525), - [anon_sym_const] = ACTIONS(7939), - [anon_sym_constexpr] = ACTIONS(7939), - [anon_sym_volatile] = ACTIONS(7939), - [anon_sym_restrict] = ACTIONS(7939), - [anon_sym___restrict__] = ACTIONS(7939), - [anon_sym__Atomic] = ACTIONS(7939), - [anon_sym__Noreturn] = ACTIONS(7939), - [anon_sym_noreturn] = ACTIONS(7939), - [anon_sym__Nonnull] = ACTIONS(7939), - [anon_sym_mutable] = ACTIONS(7939), - [anon_sym_constinit] = ACTIONS(7939), - [anon_sym_consteval] = ACTIONS(7939), - [anon_sym_alignas] = ACTIONS(7942), - [anon_sym__Alignas] = ACTIONS(7942), - [anon_sym_QMARK] = ACTIONS(6527), - [anon_sym_LT_EQ_GT] = ACTIONS(6527), - [anon_sym_or] = ACTIONS(6525), - [anon_sym_and] = ACTIONS(6525), - [anon_sym_bitor] = ACTIONS(6525), - [anon_sym_xor] = ACTIONS(6525), - [anon_sym_bitand] = ACTIONS(6525), - [anon_sym_not_eq] = ACTIONS(6525), - [anon_sym_DASH_DASH] = ACTIONS(6527), - [anon_sym_PLUS_PLUS] = ACTIONS(6527), - [anon_sym_asm] = ACTIONS(6525), - [anon_sym___asm__] = ACTIONS(6525), - [anon_sym___asm] = ACTIONS(6525), - [anon_sym_DOT] = ACTIONS(6525), - [anon_sym_DOT_STAR] = ACTIONS(6527), - [anon_sym_DASH_GT] = ACTIONS(6527), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6525), - [anon_sym_override] = ACTIONS(6525), - [anon_sym_noexcept] = ACTIONS(6525), - [anon_sym_throw] = ACTIONS(6525), - [anon_sym_requires] = ACTIONS(6525), - [anon_sym_COLON_RBRACK] = ACTIONS(6527), + [STATE(2311)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_exception_specification] = STATE(2574), + [sym__function_attributes_end] = STATE(3923), + [sym__function_postfix] = STATE(3628), + [sym_trailing_return_type] = STATE(3075), + [sym_noexcept] = STATE(2574), + [sym_throw_specifier] = STATE(2574), + [sym_requires_clause] = STATE(3628), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(7789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [aux_sym_preproc_if_token2] = ACTIONS(7791), + [aux_sym_preproc_else_token1] = ACTIONS(7791), + [aux_sym_preproc_elif_token1] = ACTIONS(7789), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6491), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7789), + [anon_sym_or_eq] = ACTIONS(7789), + [anon_sym_xor_eq] = ACTIONS(7789), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7789), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7789), + [anon_sym_not_eq] = ACTIONS(7789), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6497), + [anon_sym___asm__] = ACTIONS(6497), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(7799), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7802), + [anon_sym_override] = ACTIONS(7802), + [anon_sym_noexcept] = ACTIONS(6504), + [anon_sym_throw] = ACTIONS(6506), + [anon_sym_requires] = ACTIONS(7805), }, - [STATE(2376)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), - [anon_sym_COMMA] = ACTIONS(6718), - [anon_sym_LPAREN2] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6716), - [anon_sym_PLUS] = ACTIONS(6716), - [anon_sym_STAR] = ACTIONS(6716), - [anon_sym_SLASH] = ACTIONS(6716), - [anon_sym_PERCENT] = ACTIONS(6716), - [anon_sym_PIPE_PIPE] = ACTIONS(6718), - [anon_sym_AMP_AMP] = ACTIONS(6718), - [anon_sym_PIPE] = ACTIONS(6716), - [anon_sym_CARET] = ACTIONS(6716), - [anon_sym_AMP] = ACTIONS(6716), - [anon_sym_EQ_EQ] = ACTIONS(6718), - [anon_sym_BANG_EQ] = ACTIONS(6718), - [anon_sym_GT] = ACTIONS(6716), - [anon_sym_GT_EQ] = ACTIONS(6716), - [anon_sym_LT_EQ] = ACTIONS(6716), - [anon_sym_LT] = ACTIONS(6716), - [anon_sym_LT_LT] = ACTIONS(6716), - [anon_sym_GT_GT] = ACTIONS(6716), - [anon_sym___extension__] = ACTIONS(6718), - [anon_sym___attribute__] = ACTIONS(6718), - [anon_sym___attribute] = ACTIONS(6716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6718), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_EQ] = ACTIONS(6716), - [anon_sym_const] = ACTIONS(6716), - [anon_sym_constexpr] = ACTIONS(6718), - [anon_sym_volatile] = ACTIONS(6718), - [anon_sym_restrict] = ACTIONS(6718), - [anon_sym___restrict__] = ACTIONS(6718), - [anon_sym__Atomic] = ACTIONS(6718), - [anon_sym__Noreturn] = ACTIONS(6718), - [anon_sym_noreturn] = ACTIONS(6718), - [anon_sym__Nonnull] = ACTIONS(6718), - [anon_sym_mutable] = ACTIONS(6718), - [anon_sym_constinit] = ACTIONS(6718), - [anon_sym_consteval] = ACTIONS(6718), - [anon_sym_alignas] = ACTIONS(6718), - [anon_sym__Alignas] = ACTIONS(6718), - [anon_sym_QMARK] = ACTIONS(6718), - [anon_sym_STAR_EQ] = ACTIONS(6718), - [anon_sym_SLASH_EQ] = ACTIONS(6718), - [anon_sym_PERCENT_EQ] = ACTIONS(6718), - [anon_sym_PLUS_EQ] = ACTIONS(6718), - [anon_sym_DASH_EQ] = ACTIONS(6718), - [anon_sym_LT_LT_EQ] = ACTIONS(6718), - [anon_sym_GT_GT_EQ] = ACTIONS(6716), - [anon_sym_AMP_EQ] = ACTIONS(6718), - [anon_sym_CARET_EQ] = ACTIONS(6718), - [anon_sym_PIPE_EQ] = ACTIONS(6718), - [anon_sym_and_eq] = ACTIONS(6718), - [anon_sym_or_eq] = ACTIONS(6718), - [anon_sym_xor_eq] = ACTIONS(6718), - [anon_sym_LT_EQ_GT] = ACTIONS(6718), - [anon_sym_or] = ACTIONS(6716), - [anon_sym_and] = ACTIONS(6716), - [anon_sym_bitor] = ACTIONS(6718), - [anon_sym_xor] = ACTIONS(6716), - [anon_sym_bitand] = ACTIONS(6718), - [anon_sym_not_eq] = ACTIONS(6718), - [anon_sym_DASH_DASH] = ACTIONS(6718), - [anon_sym_PLUS_PLUS] = ACTIONS(6718), - [anon_sym_asm] = ACTIONS(6718), - [anon_sym___asm__] = ACTIONS(6718), - [anon_sym___asm] = ACTIONS(6716), - [anon_sym_DOT] = ACTIONS(6716), - [anon_sym_DOT_STAR] = ACTIONS(6718), - [anon_sym_DASH_GT] = ACTIONS(6718), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6718), - [anon_sym_override] = ACTIONS(6718), - [anon_sym_GT2] = ACTIONS(6718), - [anon_sym_noexcept] = ACTIONS(6718), - [anon_sym_throw] = ACTIONS(6718), - [anon_sym_requires] = ACTIONS(6718), + [STATE(2312)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_exception_specification] = STATE(2575), + [sym__function_attributes_end] = STATE(3924), + [sym__function_postfix] = STATE(3655), + [sym_trailing_return_type] = STATE(3076), + [sym_noexcept] = STATE(2575), + [sym_throw_specifier] = STATE(2575), + [sym_requires_clause] = STATE(3655), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(7968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [aux_sym_preproc_if_token2] = ACTIONS(7966), + [aux_sym_preproc_else_token1] = ACTIONS(7966), + [aux_sym_preproc_elif_token1] = ACTIONS(7968), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7966), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym___attribute__] = ACTIONS(6491), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7968), + [anon_sym_or_eq] = ACTIONS(7968), + [anon_sym_xor_eq] = ACTIONS(7968), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7968), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7968), + [anon_sym_not_eq] = ACTIONS(7968), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6497), + [anon_sym___asm__] = ACTIONS(6497), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(7991), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7994), + [anon_sym_override] = ACTIONS(7994), + [anon_sym_noexcept] = ACTIONS(6504), + [anon_sym_throw] = ACTIONS(6506), + [anon_sym_requires] = ACTIONS(7997), }, - [STATE(2377)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2280), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7397), - [anon_sym_COMMA] = ACTIONS(7397), - [anon_sym_LPAREN2] = ACTIONS(7397), - [anon_sym_DASH] = ACTIONS(7395), - [anon_sym_PLUS] = ACTIONS(7395), - [anon_sym_STAR] = ACTIONS(7395), - [anon_sym_SLASH] = ACTIONS(7395), - [anon_sym_PERCENT] = ACTIONS(7395), - [anon_sym_PIPE_PIPE] = ACTIONS(7397), - [anon_sym_AMP_AMP] = ACTIONS(7397), - [anon_sym_PIPE] = ACTIONS(7395), - [anon_sym_CARET] = ACTIONS(7395), - [anon_sym_AMP] = ACTIONS(7395), - [anon_sym_EQ_EQ] = ACTIONS(7397), - [anon_sym_BANG_EQ] = ACTIONS(7397), - [anon_sym_GT] = ACTIONS(7395), - [anon_sym_GT_EQ] = ACTIONS(7395), - [anon_sym_LT_EQ] = ACTIONS(7395), - [anon_sym_LT] = ACTIONS(7395), - [anon_sym_LT_LT] = ACTIONS(7395), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym___extension__] = ACTIONS(7397), - [anon_sym___attribute__] = ACTIONS(7397), - [anon_sym___attribute] = ACTIONS(7395), - [anon_sym_LBRACE] = ACTIONS(7397), - [anon_sym_signed] = ACTIONS(7906), - [anon_sym_unsigned] = ACTIONS(7906), - [anon_sym_long] = ACTIONS(7906), - [anon_sym_short] = ACTIONS(7906), - [anon_sym_LBRACK] = ACTIONS(7397), - [anon_sym_EQ] = ACTIONS(7395), - [anon_sym_const] = ACTIONS(7395), - [anon_sym_constexpr] = ACTIONS(7397), - [anon_sym_volatile] = ACTIONS(7397), - [anon_sym_restrict] = ACTIONS(7397), - [anon_sym___restrict__] = ACTIONS(7397), - [anon_sym__Atomic] = ACTIONS(7397), - [anon_sym__Noreturn] = ACTIONS(7397), - [anon_sym_noreturn] = ACTIONS(7397), - [anon_sym__Nonnull] = ACTIONS(7397), - [anon_sym_mutable] = ACTIONS(7397), - [anon_sym_constinit] = ACTIONS(7397), - [anon_sym_consteval] = ACTIONS(7397), - [anon_sym_alignas] = ACTIONS(7397), - [anon_sym__Alignas] = ACTIONS(7397), - [anon_sym_QMARK] = ACTIONS(7397), - [anon_sym_STAR_EQ] = ACTIONS(7397), - [anon_sym_SLASH_EQ] = ACTIONS(7397), - [anon_sym_PERCENT_EQ] = ACTIONS(7397), - [anon_sym_PLUS_EQ] = ACTIONS(7397), - [anon_sym_DASH_EQ] = ACTIONS(7397), - [anon_sym_LT_LT_EQ] = ACTIONS(7397), - [anon_sym_GT_GT_EQ] = ACTIONS(7395), - [anon_sym_AMP_EQ] = ACTIONS(7397), - [anon_sym_CARET_EQ] = ACTIONS(7397), - [anon_sym_PIPE_EQ] = ACTIONS(7397), - [anon_sym_and_eq] = ACTIONS(7397), - [anon_sym_or_eq] = ACTIONS(7397), - [anon_sym_xor_eq] = ACTIONS(7397), - [anon_sym_LT_EQ_GT] = ACTIONS(7397), - [anon_sym_or] = ACTIONS(7395), - [anon_sym_and] = ACTIONS(7395), - [anon_sym_bitor] = ACTIONS(7397), - [anon_sym_xor] = ACTIONS(7395), - [anon_sym_bitand] = ACTIONS(7397), - [anon_sym_not_eq] = ACTIONS(7397), - [anon_sym_DASH_DASH] = ACTIONS(7397), - [anon_sym_PLUS_PLUS] = ACTIONS(7397), - [anon_sym_DOT] = ACTIONS(7395), - [anon_sym_DOT_STAR] = ACTIONS(7397), - [anon_sym_DASH_GT] = ACTIONS(7397), + [STATE(2313)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5368), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(10537), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_type_parameter_declaration] = STATE(10537), + [sym_variadic_type_parameter_declaration] = STATE(10537), + [sym_optional_type_parameter_declaration] = STATE(10537), + [sym_template_template_parameter_declaration] = STATE(10537), + [sym_optional_parameter_declaration] = STATE(10537), + [sym_variadic_parameter_declaration] = STATE(10537), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(7837), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(7839), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7397), - [anon_sym_override] = ACTIONS(7397), - [anon_sym_GT2] = ACTIONS(7397), - [anon_sym_requires] = ACTIONS(7397), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(7841), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2378)] = { - [sym_attribute_specifier] = STATE(4161), - [sym_attribute_declaration] = STATE(4518), - [sym_gnu_asm_expression] = STATE(8999), - [sym_virtual_specifier] = STATE(4532), - [sym_ref_qualifier] = STATE(2442), - [sym__function_exception_specification] = STATE(2927), - [sym__function_attributes_end] = STATE(4253), - [sym__function_postfix] = STATE(4984), - [sym_trailing_return_type] = STATE(4410), - [sym_noexcept] = STATE(2927), - [sym_throw_specifier] = STATE(2927), - [sym_requires_clause] = STATE(4984), - [aux_sym_type_definition_repeat1] = STATE(4161), - [aux_sym_attributed_declarator_repeat1] = STATE(4518), - [aux_sym__function_postfix_repeat1] = STATE(4532), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7945), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7948), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7546), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6361), - [anon_sym___attribute] = ACTIONS(6363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7546), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7951), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7954), - [anon_sym_override] = ACTIONS(7954), - [anon_sym_GT2] = ACTIONS(7544), - [anon_sym_noexcept] = ACTIONS(6377), - [anon_sym_throw] = ACTIONS(6379), - [anon_sym_requires] = ACTIONS(7957), + [STATE(2314)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(9734), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_explicit_object_parameter_declaration] = STATE(9734), + [sym_optional_parameter_declaration] = STATE(9734), + [sym_variadic_parameter_declaration] = STATE(9734), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6475), + [anon_sym_RPAREN] = ACTIONS(6477), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5629), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_this] = ACTIONS(5631), }, - [STATE(2379)] = { - [sym__abstract_declarator] = STATE(5415), - [sym_abstract_parenthesized_declarator] = STATE(4966), - [sym_abstract_pointer_declarator] = STATE(4966), - [sym_abstract_function_declarator] = STATE(4966), - [sym_abstract_array_declarator] = STATE(4966), - [sym_type_qualifier] = STATE(2293), - [sym_alignas_qualifier] = STATE(2533), - [sym_parameter_list] = STATE(1873), - [sym_abstract_reference_declarator] = STATE(4966), - [sym__function_declarator_seq] = STATE(4975), - [aux_sym__type_definition_type_repeat1] = STATE(2293), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), - [anon_sym_COMMA] = ACTIONS(7007), - [anon_sym_LPAREN2] = ACTIONS(6766), - [anon_sym_DASH] = ACTIONS(7009), - [anon_sym_PLUS] = ACTIONS(7009), - [anon_sym_STAR] = ACTIONS(6977), - [anon_sym_SLASH] = ACTIONS(7009), - [anon_sym_PERCENT] = ACTIONS(7009), - [anon_sym_PIPE_PIPE] = ACTIONS(7007), - [anon_sym_AMP_AMP] = ACTIONS(6979), - [anon_sym_PIPE] = ACTIONS(7009), - [anon_sym_CARET] = ACTIONS(7009), - [anon_sym_AMP] = ACTIONS(6981), - [anon_sym_EQ_EQ] = ACTIONS(7007), - [anon_sym_BANG_EQ] = ACTIONS(7007), - [anon_sym_GT] = ACTIONS(7009), - [anon_sym_GT_EQ] = ACTIONS(7007), - [anon_sym_LT_EQ] = ACTIONS(7009), - [anon_sym_LT] = ACTIONS(7009), - [anon_sym_LT_LT] = ACTIONS(7009), - [anon_sym_GT_GT] = ACTIONS(7009), - [anon_sym___extension__] = ACTIONS(6774), - [anon_sym_LBRACK] = ACTIONS(6782), - [anon_sym_RBRACK] = ACTIONS(7007), - [anon_sym_EQ] = ACTIONS(7009), - [anon_sym_const] = ACTIONS(6469), - [anon_sym_constexpr] = ACTIONS(6774), - [anon_sym_volatile] = ACTIONS(6774), - [anon_sym_restrict] = ACTIONS(6774), - [anon_sym___restrict__] = ACTIONS(6774), - [anon_sym__Atomic] = ACTIONS(6774), - [anon_sym__Noreturn] = ACTIONS(6774), - [anon_sym_noreturn] = ACTIONS(6774), - [anon_sym__Nonnull] = ACTIONS(6774), - [anon_sym_mutable] = ACTIONS(6774), - [anon_sym_constinit] = ACTIONS(6774), - [anon_sym_consteval] = ACTIONS(6774), - [anon_sym_alignas] = ACTIONS(6784), - [anon_sym__Alignas] = ACTIONS(6784), - [anon_sym_QMARK] = ACTIONS(7007), - [anon_sym_STAR_EQ] = ACTIONS(7007), - [anon_sym_SLASH_EQ] = ACTIONS(7007), - [anon_sym_PERCENT_EQ] = ACTIONS(7007), - [anon_sym_PLUS_EQ] = ACTIONS(7007), - [anon_sym_DASH_EQ] = ACTIONS(7007), - [anon_sym_LT_LT_EQ] = ACTIONS(7007), - [anon_sym_GT_GT_EQ] = ACTIONS(7007), - [anon_sym_AMP_EQ] = ACTIONS(7007), - [anon_sym_CARET_EQ] = ACTIONS(7007), - [anon_sym_PIPE_EQ] = ACTIONS(7007), - [anon_sym_and_eq] = ACTIONS(7007), - [anon_sym_or_eq] = ACTIONS(7007), - [anon_sym_xor_eq] = ACTIONS(7007), - [anon_sym_LT_EQ_GT] = ACTIONS(7007), - [anon_sym_or] = ACTIONS(7009), - [anon_sym_and] = ACTIONS(7009), - [anon_sym_bitor] = ACTIONS(7007), - [anon_sym_xor] = ACTIONS(7009), - [anon_sym_bitand] = ACTIONS(7007), - [anon_sym_not_eq] = ACTIONS(7007), - [anon_sym_DASH_DASH] = ACTIONS(7007), - [anon_sym_PLUS_PLUS] = ACTIONS(7007), - [anon_sym_DOT] = ACTIONS(7009), - [anon_sym_DOT_STAR] = ACTIONS(7007), - [anon_sym_DASH_GT] = ACTIONS(7007), + [STATE(2315)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2208), + [sym_identifier] = ACTIONS(7223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [aux_sym_preproc_if_token2] = ACTIONS(7225), + [aux_sym_preproc_else_token1] = ACTIONS(7225), + [aux_sym_preproc_elif_token1] = ACTIONS(7223), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_signed] = ACTIONS(7721), + [anon_sym_unsigned] = ACTIONS(7721), + [anon_sym_long] = ACTIONS(7721), + [anon_sym_short] = ACTIONS(7721), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_RBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7223), + [anon_sym__Alignas] = ACTIONS(7223), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7223), + [anon_sym_or_eq] = ACTIONS(7223), + [anon_sym_xor_eq] = ACTIONS(7223), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7223), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7223), + [anon_sym_not_eq] = ACTIONS(7223), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7223), + [anon_sym_override] = ACTIONS(7223), + [anon_sym_requires] = ACTIONS(7223), }, - [STATE(2380)] = { - [sym__abstract_declarator] = STATE(5302), - [sym_abstract_parenthesized_declarator] = STATE(4956), - [sym_abstract_pointer_declarator] = STATE(4956), - [sym_abstract_function_declarator] = STATE(4956), - [sym_abstract_array_declarator] = STATE(4956), - [sym_type_qualifier] = STATE(2387), - [sym_alignas_qualifier] = STATE(2295), - [sym_parameter_list] = STATE(1875), - [sym_abstract_reference_declarator] = STATE(4956), - [sym__function_declarator_seq] = STATE(4970), - [aux_sym__type_definition_type_repeat1] = STATE(2387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), - [anon_sym_COMMA] = ACTIONS(6991), - [anon_sym_LPAREN2] = ACTIONS(6724), - [anon_sym_DASH] = ACTIONS(6993), - [anon_sym_PLUS] = ACTIONS(6993), - [anon_sym_STAR] = ACTIONS(7025), - [anon_sym_SLASH] = ACTIONS(6993), - [anon_sym_PERCENT] = ACTIONS(6993), - [anon_sym_PIPE_PIPE] = ACTIONS(6991), - [anon_sym_AMP_AMP] = ACTIONS(7027), - [anon_sym_PIPE] = ACTIONS(6993), - [anon_sym_CARET] = ACTIONS(6993), - [anon_sym_AMP] = ACTIONS(7029), - [anon_sym_EQ_EQ] = ACTIONS(6991), - [anon_sym_BANG_EQ] = ACTIONS(6991), - [anon_sym_GT] = ACTIONS(6993), - [anon_sym_GT_EQ] = ACTIONS(6993), - [anon_sym_LT_EQ] = ACTIONS(6993), - [anon_sym_LT] = ACTIONS(6993), - [anon_sym_LT_LT] = ACTIONS(6993), - [anon_sym_GT_GT] = ACTIONS(6993), - [anon_sym___extension__] = ACTIONS(6732), - [anon_sym_LBRACK] = ACTIONS(6740), - [anon_sym_EQ] = ACTIONS(6993), - [anon_sym_const] = ACTIONS(6742), - [anon_sym_constexpr] = ACTIONS(6732), - [anon_sym_volatile] = ACTIONS(6732), - [anon_sym_restrict] = ACTIONS(6732), - [anon_sym___restrict__] = ACTIONS(6732), - [anon_sym__Atomic] = ACTIONS(6732), - [anon_sym__Noreturn] = ACTIONS(6732), - [anon_sym_noreturn] = ACTIONS(6732), - [anon_sym__Nonnull] = ACTIONS(6732), - [anon_sym_mutable] = ACTIONS(6732), - [anon_sym_constinit] = ACTIONS(6732), - [anon_sym_consteval] = ACTIONS(6732), - [anon_sym_alignas] = ACTIONS(6744), - [anon_sym__Alignas] = ACTIONS(6744), - [anon_sym_QMARK] = ACTIONS(6991), - [anon_sym_STAR_EQ] = ACTIONS(6991), - [anon_sym_SLASH_EQ] = ACTIONS(6991), - [anon_sym_PERCENT_EQ] = ACTIONS(6991), - [anon_sym_PLUS_EQ] = ACTIONS(6991), - [anon_sym_DASH_EQ] = ACTIONS(6991), - [anon_sym_LT_LT_EQ] = ACTIONS(6991), - [anon_sym_GT_GT_EQ] = ACTIONS(6993), - [anon_sym_AMP_EQ] = ACTIONS(6991), - [anon_sym_CARET_EQ] = ACTIONS(6991), - [anon_sym_PIPE_EQ] = ACTIONS(6991), - [anon_sym_and_eq] = ACTIONS(6991), - [anon_sym_or_eq] = ACTIONS(6991), - [anon_sym_xor_eq] = ACTIONS(6991), - [anon_sym_LT_EQ_GT] = ACTIONS(6991), - [anon_sym_or] = ACTIONS(6993), - [anon_sym_and] = ACTIONS(6993), - [anon_sym_bitor] = ACTIONS(6991), - [anon_sym_xor] = ACTIONS(6993), - [anon_sym_bitand] = ACTIONS(6991), - [anon_sym_not_eq] = ACTIONS(6991), - [anon_sym_DASH_DASH] = ACTIONS(6991), - [anon_sym_PLUS_PLUS] = ACTIONS(6991), - [anon_sym_DOT] = ACTIONS(6993), - [anon_sym_DOT_STAR] = ACTIONS(6991), - [anon_sym_DASH_GT] = ACTIONS(6991), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(6991), + [STATE(2316)] = { + [sym_attribute_specifier] = STATE(2548), + [sym_attribute_declaration] = STATE(4648), + [sym_type_qualifier] = STATE(2489), + [sym_alignas_qualifier] = STATE(2727), + [aux_sym_type_definition_repeat1] = STATE(2548), + [aux_sym__type_definition_type_repeat1] = STATE(2489), + [aux_sym_attributed_declarator_repeat1] = STATE(4648), + [sym_identifier] = ACTIONS(6752), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), + [anon_sym_COMMA] = ACTIONS(6754), + [anon_sym_RPAREN] = ACTIONS(6754), + [aux_sym_preproc_if_token2] = ACTIONS(6754), + [aux_sym_preproc_else_token1] = ACTIONS(6754), + [aux_sym_preproc_elif_token1] = ACTIONS(6752), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6754), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6754), + [anon_sym_LPAREN2] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6752), + [anon_sym_STAR] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6752), + [anon_sym_PERCENT] = ACTIONS(6754), + [anon_sym_PIPE_PIPE] = ACTIONS(6754), + [anon_sym_AMP_AMP] = ACTIONS(6754), + [anon_sym_PIPE] = ACTIONS(6752), + [anon_sym_CARET] = ACTIONS(6754), + [anon_sym_AMP] = ACTIONS(6752), + [anon_sym_EQ_EQ] = ACTIONS(6754), + [anon_sym_BANG_EQ] = ACTIONS(6754), + [anon_sym_GT] = ACTIONS(6752), + [anon_sym_GT_EQ] = ACTIONS(6754), + [anon_sym_LT_EQ] = ACTIONS(6752), + [anon_sym_LT] = ACTIONS(6752), + [anon_sym_LT_LT] = ACTIONS(6754), + [anon_sym_GT_GT] = ACTIONS(6754), + [anon_sym_SEMI] = ACTIONS(6754), + [anon_sym___extension__] = ACTIONS(7182), + [anon_sym___attribute__] = ACTIONS(6752), + [anon_sym___attribute] = ACTIONS(6752), + [anon_sym_COLON] = ACTIONS(6752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6754), + [anon_sym_RBRACE] = ACTIONS(6754), + [anon_sym_LBRACK] = ACTIONS(6752), + [anon_sym_const] = ACTIONS(7182), + [anon_sym_constexpr] = ACTIONS(7182), + [anon_sym_volatile] = ACTIONS(7182), + [anon_sym_restrict] = ACTIONS(7182), + [anon_sym___restrict__] = ACTIONS(7182), + [anon_sym__Atomic] = ACTIONS(7182), + [anon_sym__Noreturn] = ACTIONS(7182), + [anon_sym_noreturn] = ACTIONS(7182), + [anon_sym__Nonnull] = ACTIONS(7182), + [anon_sym_mutable] = ACTIONS(7182), + [anon_sym_constinit] = ACTIONS(7182), + [anon_sym_consteval] = ACTIONS(7182), + [anon_sym_alignas] = ACTIONS(7268), + [anon_sym__Alignas] = ACTIONS(7268), + [anon_sym_QMARK] = ACTIONS(6754), + [anon_sym_LT_EQ_GT] = ACTIONS(6754), + [anon_sym_or] = ACTIONS(6752), + [anon_sym_and] = ACTIONS(6752), + [anon_sym_bitor] = ACTIONS(6752), + [anon_sym_xor] = ACTIONS(6752), + [anon_sym_bitand] = ACTIONS(6752), + [anon_sym_not_eq] = ACTIONS(6752), + [anon_sym_DASH_DASH] = ACTIONS(6754), + [anon_sym_PLUS_PLUS] = ACTIONS(6754), + [anon_sym_asm] = ACTIONS(6752), + [anon_sym___asm__] = ACTIONS(6752), + [anon_sym___asm] = ACTIONS(6752), + [anon_sym_DOT] = ACTIONS(6752), + [anon_sym_DOT_STAR] = ACTIONS(6754), + [anon_sym_DASH_GT] = ACTIONS(6754), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6752), + [anon_sym_override] = ACTIONS(6752), + [anon_sym_noexcept] = ACTIONS(6752), + [anon_sym_throw] = ACTIONS(6752), + [anon_sym_requires] = ACTIONS(6752), + [anon_sym_COLON_RBRACK] = ACTIONS(6754), }, - [STATE(2381)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6722), - [anon_sym_COMMA] = ACTIONS(6722), - [anon_sym_LPAREN2] = ACTIONS(6722), - [anon_sym_DASH] = ACTIONS(6720), - [anon_sym_PLUS] = ACTIONS(6720), - [anon_sym_STAR] = ACTIONS(6720), - [anon_sym_SLASH] = ACTIONS(6720), - [anon_sym_PERCENT] = ACTIONS(6720), - [anon_sym_PIPE_PIPE] = ACTIONS(6722), - [anon_sym_AMP_AMP] = ACTIONS(6722), - [anon_sym_PIPE] = ACTIONS(6720), - [anon_sym_CARET] = ACTIONS(6720), - [anon_sym_AMP] = ACTIONS(6720), - [anon_sym_EQ_EQ] = ACTIONS(6722), - [anon_sym_BANG_EQ] = ACTIONS(6722), - [anon_sym_GT] = ACTIONS(6720), - [anon_sym_GT_EQ] = ACTIONS(6720), - [anon_sym_LT_EQ] = ACTIONS(6720), - [anon_sym_LT] = ACTIONS(6720), - [anon_sym_LT_LT] = ACTIONS(6720), - [anon_sym_GT_GT] = ACTIONS(6720), - [anon_sym___extension__] = ACTIONS(6722), - [anon_sym___attribute__] = ACTIONS(6722), - [anon_sym___attribute] = ACTIONS(6720), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6722), - [anon_sym_LBRACK] = ACTIONS(6720), - [anon_sym_EQ] = ACTIONS(6720), - [anon_sym_const] = ACTIONS(6720), - [anon_sym_constexpr] = ACTIONS(6722), - [anon_sym_volatile] = ACTIONS(6722), - [anon_sym_restrict] = ACTIONS(6722), - [anon_sym___restrict__] = ACTIONS(6722), - [anon_sym__Atomic] = ACTIONS(6722), - [anon_sym__Noreturn] = ACTIONS(6722), - [anon_sym_noreturn] = ACTIONS(6722), - [anon_sym__Nonnull] = ACTIONS(6722), - [anon_sym_mutable] = ACTIONS(6722), - [anon_sym_constinit] = ACTIONS(6722), - [anon_sym_consteval] = ACTIONS(6722), - [anon_sym_alignas] = ACTIONS(6722), - [anon_sym__Alignas] = ACTIONS(6722), - [anon_sym_QMARK] = ACTIONS(6722), - [anon_sym_STAR_EQ] = ACTIONS(6722), - [anon_sym_SLASH_EQ] = ACTIONS(6722), - [anon_sym_PERCENT_EQ] = ACTIONS(6722), - [anon_sym_PLUS_EQ] = ACTIONS(6722), - [anon_sym_DASH_EQ] = ACTIONS(6722), - [anon_sym_LT_LT_EQ] = ACTIONS(6722), - [anon_sym_GT_GT_EQ] = ACTIONS(6720), - [anon_sym_AMP_EQ] = ACTIONS(6722), - [anon_sym_CARET_EQ] = ACTIONS(6722), - [anon_sym_PIPE_EQ] = ACTIONS(6722), - [anon_sym_and_eq] = ACTIONS(6722), - [anon_sym_or_eq] = ACTIONS(6722), - [anon_sym_xor_eq] = ACTIONS(6722), - [anon_sym_LT_EQ_GT] = ACTIONS(6722), - [anon_sym_or] = ACTIONS(6720), - [anon_sym_and] = ACTIONS(6720), - [anon_sym_bitor] = ACTIONS(6722), - [anon_sym_xor] = ACTIONS(6720), - [anon_sym_bitand] = ACTIONS(6722), - [anon_sym_not_eq] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_asm] = ACTIONS(6722), - [anon_sym___asm__] = ACTIONS(6722), - [anon_sym___asm] = ACTIONS(6720), - [anon_sym_DOT] = ACTIONS(6720), - [anon_sym_DOT_STAR] = ACTIONS(6722), - [anon_sym_DASH_GT] = ACTIONS(6722), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6722), - [anon_sym_override] = ACTIONS(6722), - [anon_sym_GT2] = ACTIONS(6722), - [anon_sym_noexcept] = ACTIONS(6722), - [anon_sym_throw] = ACTIONS(6722), - [anon_sym_requires] = ACTIONS(6722), + [STATE(2317)] = { + [sym_attribute_specifier] = STATE(2196), + [sym_enumerator_list] = STATE(2137), + [sym__enum_base_clause] = STATE(2119), + [sym_identifier] = ACTIONS(8000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8002), + [anon_sym_COMMA] = ACTIONS(8002), + [aux_sym_preproc_if_token2] = ACTIONS(8002), + [aux_sym_preproc_else_token1] = ACTIONS(8002), + [aux_sym_preproc_elif_token1] = ACTIONS(8000), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8002), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8002), + [anon_sym_LPAREN2] = ACTIONS(8002), + [anon_sym_DASH] = ACTIONS(8000), + [anon_sym_PLUS] = ACTIONS(8000), + [anon_sym_STAR] = ACTIONS(8000), + [anon_sym_SLASH] = ACTIONS(8000), + [anon_sym_PERCENT] = ACTIONS(8000), + [anon_sym_PIPE_PIPE] = ACTIONS(8002), + [anon_sym_AMP_AMP] = ACTIONS(8002), + [anon_sym_PIPE] = ACTIONS(8000), + [anon_sym_CARET] = ACTIONS(8000), + [anon_sym_AMP] = ACTIONS(8000), + [anon_sym_EQ_EQ] = ACTIONS(8002), + [anon_sym_BANG_EQ] = ACTIONS(8002), + [anon_sym_GT] = ACTIONS(8000), + [anon_sym_GT_EQ] = ACTIONS(8002), + [anon_sym_LT_EQ] = ACTIONS(8000), + [anon_sym_LT] = ACTIONS(8000), + [anon_sym_LT_LT] = ACTIONS(8000), + [anon_sym_GT_GT] = ACTIONS(8000), + [anon_sym___extension__] = ACTIONS(8000), + [anon_sym___attribute__] = ACTIONS(7239), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_COLON] = ACTIONS(8004), + [anon_sym_LBRACE] = ACTIONS(7385), + [anon_sym_LBRACK] = ACTIONS(8002), + [anon_sym_EQ] = ACTIONS(8000), + [anon_sym_const] = ACTIONS(8000), + [anon_sym_constexpr] = ACTIONS(8000), + [anon_sym_volatile] = ACTIONS(8000), + [anon_sym_restrict] = ACTIONS(8000), + [anon_sym___restrict__] = ACTIONS(8000), + [anon_sym__Atomic] = ACTIONS(8000), + [anon_sym__Noreturn] = ACTIONS(8000), + [anon_sym_noreturn] = ACTIONS(8000), + [anon_sym__Nonnull] = ACTIONS(8000), + [anon_sym_mutable] = ACTIONS(8000), + [anon_sym_constinit] = ACTIONS(8000), + [anon_sym_consteval] = ACTIONS(8000), + [anon_sym_alignas] = ACTIONS(8000), + [anon_sym__Alignas] = ACTIONS(8000), + [anon_sym_QMARK] = ACTIONS(8002), + [anon_sym_STAR_EQ] = ACTIONS(8002), + [anon_sym_SLASH_EQ] = ACTIONS(8002), + [anon_sym_PERCENT_EQ] = ACTIONS(8002), + [anon_sym_PLUS_EQ] = ACTIONS(8002), + [anon_sym_DASH_EQ] = ACTIONS(8002), + [anon_sym_LT_LT_EQ] = ACTIONS(8002), + [anon_sym_GT_GT_EQ] = ACTIONS(8002), + [anon_sym_AMP_EQ] = ACTIONS(8002), + [anon_sym_CARET_EQ] = ACTIONS(8002), + [anon_sym_PIPE_EQ] = ACTIONS(8002), + [anon_sym_and_eq] = ACTIONS(8000), + [anon_sym_or_eq] = ACTIONS(8000), + [anon_sym_xor_eq] = ACTIONS(8000), + [anon_sym_LT_EQ_GT] = ACTIONS(8002), + [anon_sym_or] = ACTIONS(8000), + [anon_sym_and] = ACTIONS(8000), + [anon_sym_bitor] = ACTIONS(8000), + [anon_sym_xor] = ACTIONS(8000), + [anon_sym_bitand] = ACTIONS(8000), + [anon_sym_not_eq] = ACTIONS(8000), + [anon_sym_DASH_DASH] = ACTIONS(8002), + [anon_sym_PLUS_PLUS] = ACTIONS(8002), + [anon_sym_DOT] = ACTIONS(8000), + [anon_sym_DOT_STAR] = ACTIONS(8002), + [anon_sym_DASH_GT] = ACTIONS(8002), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8000), + [anon_sym_override] = ACTIONS(8000), + [anon_sym_requires] = ACTIONS(8000), }, - [STATE(2382)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6796), - [anon_sym_COMMA] = ACTIONS(6796), - [anon_sym_LPAREN2] = ACTIONS(6796), - [anon_sym_DASH] = ACTIONS(6794), - [anon_sym_PLUS] = ACTIONS(6794), - [anon_sym_STAR] = ACTIONS(6794), - [anon_sym_SLASH] = ACTIONS(6794), - [anon_sym_PERCENT] = ACTIONS(6794), - [anon_sym_PIPE_PIPE] = ACTIONS(6796), - [anon_sym_AMP_AMP] = ACTIONS(6796), - [anon_sym_PIPE] = ACTIONS(6794), - [anon_sym_CARET] = ACTIONS(6794), - [anon_sym_AMP] = ACTIONS(6794), - [anon_sym_EQ_EQ] = ACTIONS(6796), - [anon_sym_BANG_EQ] = ACTIONS(6796), - [anon_sym_GT] = ACTIONS(6794), - [anon_sym_GT_EQ] = ACTIONS(6794), - [anon_sym_LT_EQ] = ACTIONS(6794), - [anon_sym_LT] = ACTIONS(6794), - [anon_sym_LT_LT] = ACTIONS(6794), - [anon_sym_GT_GT] = ACTIONS(6794), - [anon_sym___extension__] = ACTIONS(6796), - [anon_sym___attribute__] = ACTIONS(6796), - [anon_sym___attribute] = ACTIONS(6794), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6796), - [anon_sym_LBRACK] = ACTIONS(6794), - [anon_sym_EQ] = ACTIONS(6794), - [anon_sym_const] = ACTIONS(6794), - [anon_sym_constexpr] = ACTIONS(6796), - [anon_sym_volatile] = ACTIONS(6796), - [anon_sym_restrict] = ACTIONS(6796), - [anon_sym___restrict__] = ACTIONS(6796), - [anon_sym__Atomic] = ACTIONS(6796), - [anon_sym__Noreturn] = ACTIONS(6796), - [anon_sym_noreturn] = ACTIONS(6796), - [anon_sym__Nonnull] = ACTIONS(6796), - [anon_sym_mutable] = ACTIONS(6796), - [anon_sym_constinit] = ACTIONS(6796), - [anon_sym_consteval] = ACTIONS(6796), - [anon_sym_alignas] = ACTIONS(6796), - [anon_sym__Alignas] = ACTIONS(6796), - [anon_sym_QMARK] = ACTIONS(6796), - [anon_sym_STAR_EQ] = ACTIONS(6796), - [anon_sym_SLASH_EQ] = ACTIONS(6796), - [anon_sym_PERCENT_EQ] = ACTIONS(6796), - [anon_sym_PLUS_EQ] = ACTIONS(6796), - [anon_sym_DASH_EQ] = ACTIONS(6796), - [anon_sym_LT_LT_EQ] = ACTIONS(6796), - [anon_sym_GT_GT_EQ] = ACTIONS(6794), - [anon_sym_AMP_EQ] = ACTIONS(6796), - [anon_sym_CARET_EQ] = ACTIONS(6796), - [anon_sym_PIPE_EQ] = ACTIONS(6796), - [anon_sym_and_eq] = ACTIONS(6796), - [anon_sym_or_eq] = ACTIONS(6796), - [anon_sym_xor_eq] = ACTIONS(6796), - [anon_sym_LT_EQ_GT] = ACTIONS(6796), - [anon_sym_or] = ACTIONS(6794), - [anon_sym_and] = ACTIONS(6794), - [anon_sym_bitor] = ACTIONS(6796), - [anon_sym_xor] = ACTIONS(6794), - [anon_sym_bitand] = ACTIONS(6796), - [anon_sym_not_eq] = ACTIONS(6796), - [anon_sym_DASH_DASH] = ACTIONS(6796), - [anon_sym_PLUS_PLUS] = ACTIONS(6796), - [anon_sym_asm] = ACTIONS(6796), - [anon_sym___asm__] = ACTIONS(6796), - [anon_sym___asm] = ACTIONS(6794), - [anon_sym_DOT] = ACTIONS(6794), - [anon_sym_DOT_STAR] = ACTIONS(6796), - [anon_sym_DASH_GT] = ACTIONS(6796), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6796), - [anon_sym_override] = ACTIONS(6796), - [anon_sym_GT2] = ACTIONS(6796), - [anon_sym_noexcept] = ACTIONS(6796), - [anon_sym_throw] = ACTIONS(6796), - [anon_sym_requires] = ACTIONS(6796), + [STATE(2318)] = { + [sym_attribute_specifier] = STATE(2200), + [sym_enumerator_list] = STATE(2136), + [sym__enum_base_clause] = STATE(2118), + [sym_identifier] = ACTIONS(8006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8008), + [anon_sym_COMMA] = ACTIONS(8008), + [aux_sym_preproc_if_token2] = ACTIONS(8008), + [aux_sym_preproc_else_token1] = ACTIONS(8008), + [aux_sym_preproc_elif_token1] = ACTIONS(8006), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8008), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8008), + [anon_sym_LPAREN2] = ACTIONS(8008), + [anon_sym_DASH] = ACTIONS(8006), + [anon_sym_PLUS] = ACTIONS(8006), + [anon_sym_STAR] = ACTIONS(8006), + [anon_sym_SLASH] = ACTIONS(8006), + [anon_sym_PERCENT] = ACTIONS(8006), + [anon_sym_PIPE_PIPE] = ACTIONS(8008), + [anon_sym_AMP_AMP] = ACTIONS(8008), + [anon_sym_PIPE] = ACTIONS(8006), + [anon_sym_CARET] = ACTIONS(8006), + [anon_sym_AMP] = ACTIONS(8006), + [anon_sym_EQ_EQ] = ACTIONS(8008), + [anon_sym_BANG_EQ] = ACTIONS(8008), + [anon_sym_GT] = ACTIONS(8006), + [anon_sym_GT_EQ] = ACTIONS(8008), + [anon_sym_LT_EQ] = ACTIONS(8006), + [anon_sym_LT] = ACTIONS(8006), + [anon_sym_LT_LT] = ACTIONS(8006), + [anon_sym_GT_GT] = ACTIONS(8006), + [anon_sym___extension__] = ACTIONS(8006), + [anon_sym___attribute__] = ACTIONS(7239), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_COLON] = ACTIONS(8004), + [anon_sym_LBRACE] = ACTIONS(7385), + [anon_sym_LBRACK] = ACTIONS(8008), + [anon_sym_EQ] = ACTIONS(8006), + [anon_sym_const] = ACTIONS(8006), + [anon_sym_constexpr] = ACTIONS(8006), + [anon_sym_volatile] = ACTIONS(8006), + [anon_sym_restrict] = ACTIONS(8006), + [anon_sym___restrict__] = ACTIONS(8006), + [anon_sym__Atomic] = ACTIONS(8006), + [anon_sym__Noreturn] = ACTIONS(8006), + [anon_sym_noreturn] = ACTIONS(8006), + [anon_sym__Nonnull] = ACTIONS(8006), + [anon_sym_mutable] = ACTIONS(8006), + [anon_sym_constinit] = ACTIONS(8006), + [anon_sym_consteval] = ACTIONS(8006), + [anon_sym_alignas] = ACTIONS(8006), + [anon_sym__Alignas] = ACTIONS(8006), + [anon_sym_QMARK] = ACTIONS(8008), + [anon_sym_STAR_EQ] = ACTIONS(8008), + [anon_sym_SLASH_EQ] = ACTIONS(8008), + [anon_sym_PERCENT_EQ] = ACTIONS(8008), + [anon_sym_PLUS_EQ] = ACTIONS(8008), + [anon_sym_DASH_EQ] = ACTIONS(8008), + [anon_sym_LT_LT_EQ] = ACTIONS(8008), + [anon_sym_GT_GT_EQ] = ACTIONS(8008), + [anon_sym_AMP_EQ] = ACTIONS(8008), + [anon_sym_CARET_EQ] = ACTIONS(8008), + [anon_sym_PIPE_EQ] = ACTIONS(8008), + [anon_sym_and_eq] = ACTIONS(8006), + [anon_sym_or_eq] = ACTIONS(8006), + [anon_sym_xor_eq] = ACTIONS(8006), + [anon_sym_LT_EQ_GT] = ACTIONS(8008), + [anon_sym_or] = ACTIONS(8006), + [anon_sym_and] = ACTIONS(8006), + [anon_sym_bitor] = ACTIONS(8006), + [anon_sym_xor] = ACTIONS(8006), + [anon_sym_bitand] = ACTIONS(8006), + [anon_sym_not_eq] = ACTIONS(8006), + [anon_sym_DASH_DASH] = ACTIONS(8008), + [anon_sym_PLUS_PLUS] = ACTIONS(8008), + [anon_sym_DOT] = ACTIONS(8006), + [anon_sym_DOT_STAR] = ACTIONS(8008), + [anon_sym_DASH_GT] = ACTIONS(8008), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8006), + [anon_sym_override] = ACTIONS(8006), + [anon_sym_requires] = ACTIONS(8006), }, - [STATE(2383)] = { - [sym_attribute_specifier] = STATE(4161), - [sym_attribute_declaration] = STATE(4518), - [sym_gnu_asm_expression] = STATE(8999), - [sym_virtual_specifier] = STATE(4532), - [sym_ref_qualifier] = STATE(2438), - [sym__function_exception_specification] = STATE(2907), - [sym__function_attributes_end] = STATE(4242), - [sym__function_postfix] = STATE(4984), - [sym_trailing_return_type] = STATE(4424), - [sym_noexcept] = STATE(2907), - [sym_throw_specifier] = STATE(2907), - [sym_requires_clause] = STATE(4984), - [aux_sym_type_definition_repeat1] = STATE(4161), - [aux_sym_attributed_declarator_repeat1] = STATE(4518), - [aux_sym__function_postfix_repeat1] = STATE(4532), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7945), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7948), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7546), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6361), - [anon_sym___attribute] = ACTIONS(6363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7546), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7951), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6384), - [anon_sym_override] = ACTIONS(6384), - [anon_sym_GT2] = ACTIONS(7544), - [anon_sym_noexcept] = ACTIONS(6377), - [anon_sym_throw] = ACTIONS(6379), - [anon_sym_requires] = ACTIONS(6386), + [STATE(2319)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(10083), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_explicit_object_parameter_declaration] = STATE(10083), + [sym_optional_parameter_declaration] = STATE(10083), + [sym_variadic_parameter_declaration] = STATE(10083), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6524), + [anon_sym_RPAREN] = ACTIONS(6526), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5629), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_this] = ACTIONS(5631), }, - [STATE(2384)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6792), - [anon_sym_COMMA] = ACTIONS(6792), - [anon_sym_LPAREN2] = ACTIONS(6792), - [anon_sym_DASH] = ACTIONS(6790), - [anon_sym_PLUS] = ACTIONS(6790), - [anon_sym_STAR] = ACTIONS(6790), - [anon_sym_SLASH] = ACTIONS(6790), - [anon_sym_PERCENT] = ACTIONS(6790), - [anon_sym_PIPE_PIPE] = ACTIONS(6792), - [anon_sym_AMP_AMP] = ACTIONS(6792), - [anon_sym_PIPE] = ACTIONS(6790), - [anon_sym_CARET] = ACTIONS(6790), - [anon_sym_AMP] = ACTIONS(6790), - [anon_sym_EQ_EQ] = ACTIONS(6792), - [anon_sym_BANG_EQ] = ACTIONS(6792), - [anon_sym_GT] = ACTIONS(6790), - [anon_sym_GT_EQ] = ACTIONS(6792), - [anon_sym_LT_EQ] = ACTIONS(6790), - [anon_sym_LT] = ACTIONS(6790), - [anon_sym_LT_LT] = ACTIONS(6790), - [anon_sym_GT_GT] = ACTIONS(6790), - [anon_sym___extension__] = ACTIONS(6792), - [anon_sym___attribute__] = ACTIONS(6792), - [anon_sym___attribute] = ACTIONS(6790), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), - [anon_sym_LBRACK] = ACTIONS(6790), - [anon_sym_RBRACK] = ACTIONS(6792), - [anon_sym_EQ] = ACTIONS(6790), - [anon_sym_const] = ACTIONS(6790), - [anon_sym_constexpr] = ACTIONS(6792), - [anon_sym_volatile] = ACTIONS(6792), - [anon_sym_restrict] = ACTIONS(6792), - [anon_sym___restrict__] = ACTIONS(6792), - [anon_sym__Atomic] = ACTIONS(6792), - [anon_sym__Noreturn] = ACTIONS(6792), - [anon_sym_noreturn] = ACTIONS(6792), - [anon_sym__Nonnull] = ACTIONS(6792), - [anon_sym_mutable] = ACTIONS(6792), - [anon_sym_constinit] = ACTIONS(6792), - [anon_sym_consteval] = ACTIONS(6792), - [anon_sym_alignas] = ACTIONS(6792), - [anon_sym__Alignas] = ACTIONS(6792), - [anon_sym_QMARK] = ACTIONS(6792), - [anon_sym_STAR_EQ] = ACTIONS(6792), - [anon_sym_SLASH_EQ] = ACTIONS(6792), - [anon_sym_PERCENT_EQ] = ACTIONS(6792), - [anon_sym_PLUS_EQ] = ACTIONS(6792), - [anon_sym_DASH_EQ] = ACTIONS(6792), - [anon_sym_LT_LT_EQ] = ACTIONS(6792), - [anon_sym_GT_GT_EQ] = ACTIONS(6792), - [anon_sym_AMP_EQ] = ACTIONS(6792), - [anon_sym_CARET_EQ] = ACTIONS(6792), - [anon_sym_PIPE_EQ] = ACTIONS(6792), - [anon_sym_and_eq] = ACTIONS(6792), - [anon_sym_or_eq] = ACTIONS(6792), - [anon_sym_xor_eq] = ACTIONS(6792), - [anon_sym_LT_EQ_GT] = ACTIONS(6792), - [anon_sym_or] = ACTIONS(6790), - [anon_sym_and] = ACTIONS(6790), - [anon_sym_bitor] = ACTIONS(6792), - [anon_sym_xor] = ACTIONS(6790), - [anon_sym_bitand] = ACTIONS(6792), - [anon_sym_not_eq] = ACTIONS(6792), - [anon_sym_DASH_DASH] = ACTIONS(6792), - [anon_sym_PLUS_PLUS] = ACTIONS(6792), - [anon_sym_asm] = ACTIONS(6792), - [anon_sym___asm__] = ACTIONS(6792), - [anon_sym___asm] = ACTIONS(6790), - [anon_sym_DOT] = ACTIONS(6790), - [anon_sym_DOT_STAR] = ACTIONS(6792), - [anon_sym_DASH_GT] = ACTIONS(6792), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6792), - [anon_sym_override] = ACTIONS(6792), - [anon_sym_noexcept] = ACTIONS(6792), - [anon_sym_throw] = ACTIONS(6792), - [anon_sym_requires] = ACTIONS(6792), + [STATE(2320)] = { + [sym_type_qualifier] = STATE(2320), + [sym_alignas_qualifier] = STATE(2392), + [aux_sym__type_definition_type_repeat1] = STATE(2320), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), + [anon_sym_COMMA] = ACTIONS(6891), + [anon_sym_RPAREN] = ACTIONS(6891), + [anon_sym_LPAREN2] = ACTIONS(6891), + [anon_sym_DASH] = ACTIONS(6889), + [anon_sym_PLUS] = ACTIONS(6889), + [anon_sym_STAR] = ACTIONS(6889), + [anon_sym_SLASH] = ACTIONS(6889), + [anon_sym_PERCENT] = ACTIONS(6889), + [anon_sym_PIPE_PIPE] = ACTIONS(6891), + [anon_sym_AMP_AMP] = ACTIONS(6891), + [anon_sym_PIPE] = ACTIONS(6889), + [anon_sym_CARET] = ACTIONS(6889), + [anon_sym_AMP] = ACTIONS(6889), + [anon_sym_EQ_EQ] = ACTIONS(6891), + [anon_sym_BANG_EQ] = ACTIONS(6891), + [anon_sym_GT] = ACTIONS(6889), + [anon_sym_GT_EQ] = ACTIONS(6891), + [anon_sym_LT_EQ] = ACTIONS(6889), + [anon_sym_LT] = ACTIONS(6889), + [anon_sym_LT_LT] = ACTIONS(6889), + [anon_sym_GT_GT] = ACTIONS(6889), + [anon_sym___extension__] = ACTIONS(8010), + [anon_sym___attribute__] = ACTIONS(6891), + [anon_sym___attribute] = ACTIONS(6889), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6891), + [anon_sym_LBRACK] = ACTIONS(6889), + [anon_sym_EQ] = ACTIONS(6889), + [anon_sym_const] = ACTIONS(8013), + [anon_sym_constexpr] = ACTIONS(8010), + [anon_sym_volatile] = ACTIONS(8010), + [anon_sym_restrict] = ACTIONS(8010), + [anon_sym___restrict__] = ACTIONS(8010), + [anon_sym__Atomic] = ACTIONS(8010), + [anon_sym__Noreturn] = ACTIONS(8010), + [anon_sym_noreturn] = ACTIONS(8010), + [anon_sym__Nonnull] = ACTIONS(8010), + [anon_sym_mutable] = ACTIONS(8010), + [anon_sym_constinit] = ACTIONS(8010), + [anon_sym_consteval] = ACTIONS(8010), + [anon_sym_alignas] = ACTIONS(8016), + [anon_sym__Alignas] = ACTIONS(8016), + [anon_sym_QMARK] = ACTIONS(6891), + [anon_sym_STAR_EQ] = ACTIONS(6891), + [anon_sym_SLASH_EQ] = ACTIONS(6891), + [anon_sym_PERCENT_EQ] = ACTIONS(6891), + [anon_sym_PLUS_EQ] = ACTIONS(6891), + [anon_sym_DASH_EQ] = ACTIONS(6891), + [anon_sym_LT_LT_EQ] = ACTIONS(6891), + [anon_sym_GT_GT_EQ] = ACTIONS(6891), + [anon_sym_AMP_EQ] = ACTIONS(6891), + [anon_sym_CARET_EQ] = ACTIONS(6891), + [anon_sym_PIPE_EQ] = ACTIONS(6891), + [anon_sym_and_eq] = ACTIONS(6891), + [anon_sym_or_eq] = ACTIONS(6891), + [anon_sym_xor_eq] = ACTIONS(6891), + [anon_sym_LT_EQ_GT] = ACTIONS(6891), + [anon_sym_or] = ACTIONS(6889), + [anon_sym_and] = ACTIONS(6889), + [anon_sym_bitor] = ACTIONS(6891), + [anon_sym_xor] = ACTIONS(6889), + [anon_sym_bitand] = ACTIONS(6891), + [anon_sym_not_eq] = ACTIONS(6891), + [anon_sym_DASH_DASH] = ACTIONS(6891), + [anon_sym_PLUS_PLUS] = ACTIONS(6891), + [anon_sym_asm] = ACTIONS(6891), + [anon_sym___asm__] = ACTIONS(6891), + [anon_sym___asm] = ACTIONS(6889), + [anon_sym_DOT] = ACTIONS(6889), + [anon_sym_DOT_STAR] = ACTIONS(6891), + [anon_sym_DASH_GT] = ACTIONS(6889), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6891), + [anon_sym_override] = ACTIONS(6891), + [anon_sym_noexcept] = ACTIONS(6891), + [anon_sym_throw] = ACTIONS(6891), + [anon_sym_requires] = ACTIONS(6891), + [anon_sym_DASH_GT_STAR] = ACTIONS(6891), }, - [STATE(2385)] = { - [sym__abstract_declarator] = STATE(5189), - [sym_abstract_parenthesized_declarator] = STATE(4956), - [sym_abstract_pointer_declarator] = STATE(4956), - [sym_abstract_function_declarator] = STATE(4956), - [sym_abstract_array_declarator] = STATE(4956), - [sym_type_qualifier] = STATE(2186), - [sym_alignas_qualifier] = STATE(2295), - [sym_parameter_list] = STATE(1875), - [sym_abstract_reference_declarator] = STATE(4956), - [sym__function_declarator_seq] = STATE(4970), - [aux_sym__type_definition_type_repeat1] = STATE(2186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), - [anon_sym_COMMA] = ACTIONS(7003), - [anon_sym_LPAREN2] = ACTIONS(6724), - [anon_sym_DASH] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(7025), - [anon_sym_SLASH] = ACTIONS(7005), - [anon_sym_PERCENT] = ACTIONS(7005), - [anon_sym_PIPE_PIPE] = ACTIONS(7003), - [anon_sym_AMP_AMP] = ACTIONS(7027), - [anon_sym_PIPE] = ACTIONS(7005), - [anon_sym_CARET] = ACTIONS(7005), - [anon_sym_AMP] = ACTIONS(7029), - [anon_sym_EQ_EQ] = ACTIONS(7003), - [anon_sym_BANG_EQ] = ACTIONS(7003), - [anon_sym_GT] = ACTIONS(7005), - [anon_sym_GT_EQ] = ACTIONS(7005), - [anon_sym_LT_EQ] = ACTIONS(7005), - [anon_sym_LT] = ACTIONS(7005), - [anon_sym_LT_LT] = ACTIONS(7005), - [anon_sym_GT_GT] = ACTIONS(7005), - [anon_sym___extension__] = ACTIONS(6732), - [anon_sym_LBRACK] = ACTIONS(6740), - [anon_sym_EQ] = ACTIONS(7005), - [anon_sym_const] = ACTIONS(6742), - [anon_sym_constexpr] = ACTIONS(6732), - [anon_sym_volatile] = ACTIONS(6732), - [anon_sym_restrict] = ACTIONS(6732), - [anon_sym___restrict__] = ACTIONS(6732), - [anon_sym__Atomic] = ACTIONS(6732), - [anon_sym__Noreturn] = ACTIONS(6732), - [anon_sym_noreturn] = ACTIONS(6732), - [anon_sym__Nonnull] = ACTIONS(6732), - [anon_sym_mutable] = ACTIONS(6732), - [anon_sym_constinit] = ACTIONS(6732), - [anon_sym_consteval] = ACTIONS(6732), - [anon_sym_alignas] = ACTIONS(6744), - [anon_sym__Alignas] = ACTIONS(6744), - [anon_sym_QMARK] = ACTIONS(7003), - [anon_sym_STAR_EQ] = ACTIONS(7003), - [anon_sym_SLASH_EQ] = ACTIONS(7003), - [anon_sym_PERCENT_EQ] = ACTIONS(7003), - [anon_sym_PLUS_EQ] = ACTIONS(7003), - [anon_sym_DASH_EQ] = ACTIONS(7003), - [anon_sym_LT_LT_EQ] = ACTIONS(7003), - [anon_sym_GT_GT_EQ] = ACTIONS(7005), - [anon_sym_AMP_EQ] = ACTIONS(7003), - [anon_sym_CARET_EQ] = ACTIONS(7003), - [anon_sym_PIPE_EQ] = ACTIONS(7003), - [anon_sym_and_eq] = ACTIONS(7003), - [anon_sym_or_eq] = ACTIONS(7003), - [anon_sym_xor_eq] = ACTIONS(7003), - [anon_sym_LT_EQ_GT] = ACTIONS(7003), - [anon_sym_or] = ACTIONS(7005), - [anon_sym_and] = ACTIONS(7005), - [anon_sym_bitor] = ACTIONS(7003), - [anon_sym_xor] = ACTIONS(7005), - [anon_sym_bitand] = ACTIONS(7003), - [anon_sym_not_eq] = ACTIONS(7003), - [anon_sym_DASH_DASH] = ACTIONS(7003), - [anon_sym_PLUS_PLUS] = ACTIONS(7003), - [anon_sym_DOT] = ACTIONS(7005), - [anon_sym_DOT_STAR] = ACTIONS(7003), - [anon_sym_DASH_GT] = ACTIONS(7003), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(7003), + [STATE(2321)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_exception_specification] = STATE(2537), + [sym__function_attributes_end] = STATE(3904), + [sym__function_postfix] = STATE(3628), + [sym_trailing_return_type] = STATE(3071), + [sym_noexcept] = STATE(2537), + [sym_throw_specifier] = STATE(2537), + [sym_requires_clause] = STATE(3628), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym_SEMI] = ACTIONS(7791), + [anon_sym___attribute__] = ACTIONS(6534), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_COLON] = ACTIONS(7789), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), + [anon_sym_RBRACE] = ACTIONS(7791), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(7849), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6561), + [anon_sym_override] = ACTIONS(6561), + [anon_sym_noexcept] = ACTIONS(6546), + [anon_sym_throw] = ACTIONS(6548), + [anon_sym_requires] = ACTIONS(6563), + [anon_sym_COLON_RBRACK] = ACTIONS(7791), }, - [STATE(2386)] = { - [sym_attribute_specifier] = STATE(4079), - [sym_attribute_declaration] = STATE(4488), - [sym_gnu_asm_expression] = STATE(8997), - [sym_virtual_specifier] = STATE(4611), - [sym_ref_qualifier] = STATE(2446), - [sym__function_exception_specification] = STATE(2943), - [sym__function_attributes_end] = STATE(4227), - [sym__function_postfix] = STATE(4983), - [sym_trailing_return_type] = STATE(4305), - [sym_noexcept] = STATE(2943), - [sym_throw_specifier] = STATE(2943), - [sym_requires_clause] = STATE(4983), - [aux_sym_type_definition_repeat1] = STATE(4079), - [aux_sym_attributed_declarator_repeat1] = STATE(4488), - [aux_sym__function_postfix_repeat1] = STATE(4611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7960), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7963), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6326), - [anon_sym___attribute] = ACTIONS(6328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_RBRACK] = ACTIONS(7544), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7966), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7969), - [anon_sym_override] = ACTIONS(7969), - [anon_sym_noexcept] = ACTIONS(6342), - [anon_sym_throw] = ACTIONS(6344), - [anon_sym_requires] = ACTIONS(7972), + [STATE(2322)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_exception_specification] = STATE(2561), + [sym__function_attributes_end] = STATE(3891), + [sym__function_postfix] = STATE(3628), + [sym_trailing_return_type] = STATE(3075), + [sym_noexcept] = STATE(2561), + [sym_throw_specifier] = STATE(2561), + [sym_requires_clause] = STATE(3628), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym_SEMI] = ACTIONS(7791), + [anon_sym___attribute__] = ACTIONS(6534), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_COLON] = ACTIONS(7789), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), + [anon_sym_RBRACE] = ACTIONS(7791), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(7849), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7870), + [anon_sym_override] = ACTIONS(7870), + [anon_sym_noexcept] = ACTIONS(6546), + [anon_sym_throw] = ACTIONS(6548), + [anon_sym_requires] = ACTIONS(7873), + [anon_sym_COLON_RBRACK] = ACTIONS(7791), }, - [STATE(2387)] = { - [sym__abstract_declarator] = STATE(5416), - [sym_abstract_parenthesized_declarator] = STATE(4956), - [sym_abstract_pointer_declarator] = STATE(4956), - [sym_abstract_function_declarator] = STATE(4956), - [sym_abstract_array_declarator] = STATE(4956), - [sym_type_qualifier] = STATE(2186), - [sym_alignas_qualifier] = STATE(2295), - [sym_parameter_list] = STATE(1875), - [sym_abstract_reference_declarator] = STATE(4956), - [sym__function_declarator_seq] = STATE(4970), - [aux_sym__type_definition_type_repeat1] = STATE(2186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), - [anon_sym_COMMA] = ACTIONS(6995), - [anon_sym_LPAREN2] = ACTIONS(6724), - [anon_sym_DASH] = ACTIONS(6997), - [anon_sym_PLUS] = ACTIONS(6997), - [anon_sym_STAR] = ACTIONS(7025), - [anon_sym_SLASH] = ACTIONS(6997), - [anon_sym_PERCENT] = ACTIONS(6997), - [anon_sym_PIPE_PIPE] = ACTIONS(6995), - [anon_sym_AMP_AMP] = ACTIONS(7027), - [anon_sym_PIPE] = ACTIONS(6997), - [anon_sym_CARET] = ACTIONS(6997), - [anon_sym_AMP] = ACTIONS(7029), - [anon_sym_EQ_EQ] = ACTIONS(6995), - [anon_sym_BANG_EQ] = ACTIONS(6995), - [anon_sym_GT] = ACTIONS(6997), - [anon_sym_GT_EQ] = ACTIONS(6997), - [anon_sym_LT_EQ] = ACTIONS(6997), - [anon_sym_LT] = ACTIONS(6997), - [anon_sym_LT_LT] = ACTIONS(6997), - [anon_sym_GT_GT] = ACTIONS(6997), - [anon_sym___extension__] = ACTIONS(6732), - [anon_sym_LBRACK] = ACTIONS(6740), - [anon_sym_EQ] = ACTIONS(6997), - [anon_sym_const] = ACTIONS(6742), - [anon_sym_constexpr] = ACTIONS(6732), - [anon_sym_volatile] = ACTIONS(6732), - [anon_sym_restrict] = ACTIONS(6732), - [anon_sym___restrict__] = ACTIONS(6732), - [anon_sym__Atomic] = ACTIONS(6732), - [anon_sym__Noreturn] = ACTIONS(6732), - [anon_sym_noreturn] = ACTIONS(6732), - [anon_sym__Nonnull] = ACTIONS(6732), - [anon_sym_mutable] = ACTIONS(6732), - [anon_sym_constinit] = ACTIONS(6732), - [anon_sym_consteval] = ACTIONS(6732), - [anon_sym_alignas] = ACTIONS(6744), - [anon_sym__Alignas] = ACTIONS(6744), - [anon_sym_QMARK] = ACTIONS(6995), - [anon_sym_STAR_EQ] = ACTIONS(6995), - [anon_sym_SLASH_EQ] = ACTIONS(6995), - [anon_sym_PERCENT_EQ] = ACTIONS(6995), - [anon_sym_PLUS_EQ] = ACTIONS(6995), - [anon_sym_DASH_EQ] = ACTIONS(6995), - [anon_sym_LT_LT_EQ] = ACTIONS(6995), - [anon_sym_GT_GT_EQ] = ACTIONS(6997), - [anon_sym_AMP_EQ] = ACTIONS(6995), - [anon_sym_CARET_EQ] = ACTIONS(6995), - [anon_sym_PIPE_EQ] = ACTIONS(6995), - [anon_sym_and_eq] = ACTIONS(6995), - [anon_sym_or_eq] = ACTIONS(6995), - [anon_sym_xor_eq] = ACTIONS(6995), - [anon_sym_LT_EQ_GT] = ACTIONS(6995), - [anon_sym_or] = ACTIONS(6997), - [anon_sym_and] = ACTIONS(6997), - [anon_sym_bitor] = ACTIONS(6995), - [anon_sym_xor] = ACTIONS(6997), - [anon_sym_bitand] = ACTIONS(6995), - [anon_sym_not_eq] = ACTIONS(6995), - [anon_sym_DASH_DASH] = ACTIONS(6995), - [anon_sym_PLUS_PLUS] = ACTIONS(6995), - [anon_sym_DOT] = ACTIONS(6997), - [anon_sym_DOT_STAR] = ACTIONS(6995), - [anon_sym_DASH_GT] = ACTIONS(6995), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(6995), + [STATE(2323)] = { + [sym_argument_list] = STATE(3894), + [sym_initializer_list] = STATE(3899), + [aux_sym_sized_type_specifier_repeat1] = STATE(2276), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7687), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym_SEMI] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym___attribute__] = ACTIONS(7225), + [anon_sym___attribute] = ACTIONS(7223), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(7225), + [anon_sym_signed] = ACTIONS(7905), + [anon_sym_unsigned] = ACTIONS(7905), + [anon_sym_long] = ACTIONS(7905), + [anon_sym_short] = ACTIONS(7905), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7225), }, - [STATE(2388)] = { - [sym__abstract_declarator] = STATE(5417), - [sym_abstract_parenthesized_declarator] = STATE(4956), - [sym_abstract_pointer_declarator] = STATE(4956), - [sym_abstract_function_declarator] = STATE(4956), - [sym_abstract_array_declarator] = STATE(4956), - [sym_type_qualifier] = STATE(2385), - [sym_alignas_qualifier] = STATE(2295), - [sym_parameter_list] = STATE(1875), - [sym_abstract_reference_declarator] = STATE(4956), - [sym__function_declarator_seq] = STATE(4970), - [aux_sym__type_definition_type_repeat1] = STATE(2385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), - [anon_sym_COMMA] = ACTIONS(6999), - [anon_sym_LPAREN2] = ACTIONS(6724), - [anon_sym_DASH] = ACTIONS(7001), - [anon_sym_PLUS] = ACTIONS(7001), - [anon_sym_STAR] = ACTIONS(7025), - [anon_sym_SLASH] = ACTIONS(7001), - [anon_sym_PERCENT] = ACTIONS(7001), - [anon_sym_PIPE_PIPE] = ACTIONS(6999), - [anon_sym_AMP_AMP] = ACTIONS(7027), - [anon_sym_PIPE] = ACTIONS(7001), - [anon_sym_CARET] = ACTIONS(7001), - [anon_sym_AMP] = ACTIONS(7029), - [anon_sym_EQ_EQ] = ACTIONS(6999), - [anon_sym_BANG_EQ] = ACTIONS(6999), - [anon_sym_GT] = ACTIONS(7001), - [anon_sym_GT_EQ] = ACTIONS(7001), - [anon_sym_LT_EQ] = ACTIONS(7001), - [anon_sym_LT] = ACTIONS(7001), - [anon_sym_LT_LT] = ACTIONS(7001), - [anon_sym_GT_GT] = ACTIONS(7001), - [anon_sym___extension__] = ACTIONS(6732), - [anon_sym_LBRACK] = ACTIONS(6740), - [anon_sym_EQ] = ACTIONS(7001), - [anon_sym_const] = ACTIONS(6742), - [anon_sym_constexpr] = ACTIONS(6732), - [anon_sym_volatile] = ACTIONS(6732), - [anon_sym_restrict] = ACTIONS(6732), - [anon_sym___restrict__] = ACTIONS(6732), - [anon_sym__Atomic] = ACTIONS(6732), - [anon_sym__Noreturn] = ACTIONS(6732), - [anon_sym_noreturn] = ACTIONS(6732), - [anon_sym__Nonnull] = ACTIONS(6732), - [anon_sym_mutable] = ACTIONS(6732), - [anon_sym_constinit] = ACTIONS(6732), - [anon_sym_consteval] = ACTIONS(6732), - [anon_sym_alignas] = ACTIONS(6744), - [anon_sym__Alignas] = ACTIONS(6744), - [anon_sym_QMARK] = ACTIONS(6999), - [anon_sym_STAR_EQ] = ACTIONS(6999), - [anon_sym_SLASH_EQ] = ACTIONS(6999), - [anon_sym_PERCENT_EQ] = ACTIONS(6999), - [anon_sym_PLUS_EQ] = ACTIONS(6999), - [anon_sym_DASH_EQ] = ACTIONS(6999), - [anon_sym_LT_LT_EQ] = ACTIONS(6999), - [anon_sym_GT_GT_EQ] = ACTIONS(7001), - [anon_sym_AMP_EQ] = ACTIONS(6999), - [anon_sym_CARET_EQ] = ACTIONS(6999), - [anon_sym_PIPE_EQ] = ACTIONS(6999), - [anon_sym_and_eq] = ACTIONS(6999), - [anon_sym_or_eq] = ACTIONS(6999), - [anon_sym_xor_eq] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(6999), - [anon_sym_or] = ACTIONS(7001), - [anon_sym_and] = ACTIONS(7001), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(7001), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(6999), - [anon_sym_PLUS_PLUS] = ACTIONS(6999), - [anon_sym_DOT] = ACTIONS(7001), - [anon_sym_DOT_STAR] = ACTIONS(6999), - [anon_sym_DASH_GT] = ACTIONS(6999), + [STATE(2324)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(9791), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_explicit_object_parameter_declaration] = STATE(9791), + [sym_optional_parameter_declaration] = STATE(9791), + [sym_variadic_parameter_declaration] = STATE(9791), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), + [anon_sym_RPAREN] = ACTIONS(5615), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5629), [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(6999), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_this] = ACTIONS(5631), }, - [STATE(2389)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(6627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), - [anon_sym_COMMA] = ACTIONS(7081), - [anon_sym_RPAREN] = ACTIONS(7081), - [anon_sym_LPAREN2] = ACTIONS(7081), - [anon_sym_DASH] = ACTIONS(7084), - [anon_sym_PLUS] = ACTIONS(7084), - [anon_sym_STAR] = ACTIONS(7084), - [anon_sym_SLASH] = ACTIONS(7084), - [anon_sym_PERCENT] = ACTIONS(7084), - [anon_sym_PIPE_PIPE] = ACTIONS(7081), - [anon_sym_AMP_AMP] = ACTIONS(7081), - [anon_sym_PIPE] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7084), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_EQ_EQ] = ACTIONS(7081), - [anon_sym_BANG_EQ] = ACTIONS(7081), - [anon_sym_GT] = ACTIONS(7084), - [anon_sym_GT_EQ] = ACTIONS(7081), - [anon_sym_LT_EQ] = ACTIONS(7084), - [anon_sym_LT] = ACTIONS(7084), - [anon_sym_LT_LT] = ACTIONS(7084), - [anon_sym_GT_GT] = ACTIONS(7084), - [anon_sym___extension__] = ACTIONS(6627), - [anon_sym___attribute__] = ACTIONS(7084), - [anon_sym___attribute] = ACTIONS(7084), - [anon_sym_LBRACE] = ACTIONS(7081), - [anon_sym_signed] = ACTIONS(7655), - [anon_sym_unsigned] = ACTIONS(7655), - [anon_sym_long] = ACTIONS(7655), - [anon_sym_short] = ACTIONS(7655), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_EQ] = ACTIONS(7084), - [anon_sym_const] = ACTIONS(6627), - [anon_sym_constexpr] = ACTIONS(6627), - [anon_sym_volatile] = ACTIONS(6627), - [anon_sym_restrict] = ACTIONS(6627), - [anon_sym___restrict__] = ACTIONS(6627), - [anon_sym__Atomic] = ACTIONS(6627), - [anon_sym__Noreturn] = ACTIONS(6627), - [anon_sym_noreturn] = ACTIONS(6627), - [anon_sym__Nonnull] = ACTIONS(6627), - [anon_sym_mutable] = ACTIONS(6627), - [anon_sym_constinit] = ACTIONS(6627), - [anon_sym_consteval] = ACTIONS(6627), - [anon_sym_alignas] = ACTIONS(6627), - [anon_sym__Alignas] = ACTIONS(6627), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(7081), - [anon_sym_STAR_EQ] = ACTIONS(7081), - [anon_sym_SLASH_EQ] = ACTIONS(7081), - [anon_sym_PERCENT_EQ] = ACTIONS(7081), - [anon_sym_PLUS_EQ] = ACTIONS(7081), - [anon_sym_DASH_EQ] = ACTIONS(7081), - [anon_sym_LT_LT_EQ] = ACTIONS(7081), - [anon_sym_GT_GT_EQ] = ACTIONS(7081), - [anon_sym_AMP_EQ] = ACTIONS(7081), - [anon_sym_CARET_EQ] = ACTIONS(7081), - [anon_sym_PIPE_EQ] = ACTIONS(7081), - [anon_sym_and_eq] = ACTIONS(7084), - [anon_sym_or_eq] = ACTIONS(7084), - [anon_sym_xor_eq] = ACTIONS(7084), - [anon_sym_LT_EQ_GT] = ACTIONS(7081), - [anon_sym_or] = ACTIONS(7084), - [anon_sym_and] = ACTIONS(7084), - [anon_sym_bitor] = ACTIONS(7084), - [anon_sym_xor] = ACTIONS(7084), - [anon_sym_bitand] = ACTIONS(7084), - [anon_sym_not_eq] = ACTIONS(7084), - [anon_sym_DASH_DASH] = ACTIONS(7081), - [anon_sym_PLUS_PLUS] = ACTIONS(7081), - [anon_sym_DOT] = ACTIONS(7084), - [anon_sym_DOT_STAR] = ACTIONS(7081), - [anon_sym_DASH_GT] = ACTIONS(7084), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7081), + [STATE(2325)] = { + [sym_type_qualifier] = STATE(2352), + [sym_alignas_qualifier] = STATE(2492), + [aux_sym__type_definition_type_repeat1] = STATE(2352), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), + [anon_sym_COMMA] = ACTIONS(6754), + [anon_sym_LPAREN2] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6752), + [anon_sym_STAR] = ACTIONS(6752), + [anon_sym_SLASH] = ACTIONS(6752), + [anon_sym_PERCENT] = ACTIONS(6752), + [anon_sym_PIPE_PIPE] = ACTIONS(6754), + [anon_sym_AMP_AMP] = ACTIONS(6754), + [anon_sym_PIPE] = ACTIONS(6752), + [anon_sym_CARET] = ACTIONS(6752), + [anon_sym_AMP] = ACTIONS(6752), + [anon_sym_EQ_EQ] = ACTIONS(6754), + [anon_sym_BANG_EQ] = ACTIONS(6754), + [anon_sym_GT] = ACTIONS(6752), + [anon_sym_GT_EQ] = ACTIONS(6752), + [anon_sym_LT_EQ] = ACTIONS(6752), + [anon_sym_LT] = ACTIONS(6752), + [anon_sym_LT_LT] = ACTIONS(6752), + [anon_sym_GT_GT] = ACTIONS(6752), + [anon_sym___extension__] = ACTIONS(6679), + [anon_sym___attribute__] = ACTIONS(6754), + [anon_sym___attribute] = ACTIONS(6752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), + [anon_sym_LBRACK] = ACTIONS(6752), + [anon_sym_EQ] = ACTIONS(6752), + [anon_sym_const] = ACTIONS(6687), + [anon_sym_constexpr] = ACTIONS(6679), + [anon_sym_volatile] = ACTIONS(6679), + [anon_sym_restrict] = ACTIONS(6679), + [anon_sym___restrict__] = ACTIONS(6679), + [anon_sym__Atomic] = ACTIONS(6679), + [anon_sym__Noreturn] = ACTIONS(6679), + [anon_sym_noreturn] = ACTIONS(6679), + [anon_sym__Nonnull] = ACTIONS(6679), + [anon_sym_mutable] = ACTIONS(6679), + [anon_sym_constinit] = ACTIONS(6679), + [anon_sym_consteval] = ACTIONS(6679), + [anon_sym_alignas] = ACTIONS(6689), + [anon_sym__Alignas] = ACTIONS(6689), + [anon_sym_QMARK] = ACTIONS(6754), + [anon_sym_STAR_EQ] = ACTIONS(6754), + [anon_sym_SLASH_EQ] = ACTIONS(6754), + [anon_sym_PERCENT_EQ] = ACTIONS(6754), + [anon_sym_PLUS_EQ] = ACTIONS(6754), + [anon_sym_DASH_EQ] = ACTIONS(6754), + [anon_sym_LT_LT_EQ] = ACTIONS(6754), + [anon_sym_GT_GT_EQ] = ACTIONS(6752), + [anon_sym_AMP_EQ] = ACTIONS(6754), + [anon_sym_CARET_EQ] = ACTIONS(6754), + [anon_sym_PIPE_EQ] = ACTIONS(6754), + [anon_sym_and_eq] = ACTIONS(6754), + [anon_sym_or_eq] = ACTIONS(6754), + [anon_sym_xor_eq] = ACTIONS(6754), + [anon_sym_LT_EQ_GT] = ACTIONS(6754), + [anon_sym_or] = ACTIONS(6752), + [anon_sym_and] = ACTIONS(6752), + [anon_sym_bitor] = ACTIONS(6754), + [anon_sym_xor] = ACTIONS(6752), + [anon_sym_bitand] = ACTIONS(6754), + [anon_sym_not_eq] = ACTIONS(6754), + [anon_sym_DASH_DASH] = ACTIONS(6754), + [anon_sym_PLUS_PLUS] = ACTIONS(6754), + [anon_sym_asm] = ACTIONS(6754), + [anon_sym___asm__] = ACTIONS(6754), + [anon_sym___asm] = ACTIONS(6752), + [anon_sym_DOT] = ACTIONS(6752), + [anon_sym_DOT_STAR] = ACTIONS(6754), + [anon_sym_DASH_GT] = ACTIONS(6754), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6754), + [anon_sym_override] = ACTIONS(6754), + [anon_sym_GT2] = ACTIONS(6754), + [anon_sym_noexcept] = ACTIONS(6754), + [anon_sym_throw] = ACTIONS(6754), + [anon_sym_requires] = ACTIONS(6754), }, - [STATE(2390)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), - [anon_sym_COMMA] = ACTIONS(6951), - [anon_sym_RPAREN] = ACTIONS(6951), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_DASH] = ACTIONS(6949), - [anon_sym_PLUS] = ACTIONS(6949), - [anon_sym_STAR] = ACTIONS(6949), - [anon_sym_SLASH] = ACTIONS(6949), - [anon_sym_PERCENT] = ACTIONS(6949), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_PIPE] = ACTIONS(6949), - [anon_sym_CARET] = ACTIONS(6949), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_GT] = ACTIONS(6949), - [anon_sym_GT_EQ] = ACTIONS(6951), - [anon_sym_LT_EQ] = ACTIONS(6949), - [anon_sym_LT] = ACTIONS(6949), - [anon_sym_LT_LT] = ACTIONS(6949), - [anon_sym_GT_GT] = ACTIONS(6949), - [anon_sym___extension__] = ACTIONS(6951), - [anon_sym___attribute__] = ACTIONS(6951), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_COLON] = ACTIONS(6949), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(6951), - [anon_sym_LBRACK] = ACTIONS(6951), - [anon_sym_EQ] = ACTIONS(6949), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6951), - [anon_sym_volatile] = ACTIONS(6951), - [anon_sym_restrict] = ACTIONS(6951), - [anon_sym___restrict__] = ACTIONS(6951), - [anon_sym__Atomic] = ACTIONS(6951), - [anon_sym__Noreturn] = ACTIONS(6951), - [anon_sym_noreturn] = ACTIONS(6951), - [anon_sym__Nonnull] = ACTIONS(6951), - [anon_sym_mutable] = ACTIONS(6951), - [anon_sym_constinit] = ACTIONS(6951), - [anon_sym_consteval] = ACTIONS(6951), - [anon_sym_alignas] = ACTIONS(6951), - [anon_sym__Alignas] = ACTIONS(6951), - [anon_sym_QMARK] = ACTIONS(6951), - [anon_sym_STAR_EQ] = ACTIONS(6951), - [anon_sym_SLASH_EQ] = ACTIONS(6951), - [anon_sym_PERCENT_EQ] = ACTIONS(6951), - [anon_sym_PLUS_EQ] = ACTIONS(6951), - [anon_sym_DASH_EQ] = ACTIONS(6951), - [anon_sym_LT_LT_EQ] = ACTIONS(6951), - [anon_sym_GT_GT_EQ] = ACTIONS(6951), - [anon_sym_AMP_EQ] = ACTIONS(6951), - [anon_sym_CARET_EQ] = ACTIONS(6951), - [anon_sym_PIPE_EQ] = ACTIONS(6951), - [anon_sym_and_eq] = ACTIONS(6951), - [anon_sym_or_eq] = ACTIONS(6951), - [anon_sym_xor_eq] = ACTIONS(6951), - [anon_sym_LT_EQ_GT] = ACTIONS(6951), - [anon_sym_or] = ACTIONS(6949), - [anon_sym_and] = ACTIONS(6949), - [anon_sym_bitor] = ACTIONS(6951), - [anon_sym_xor] = ACTIONS(6949), - [anon_sym_bitand] = ACTIONS(6951), - [anon_sym_not_eq] = ACTIONS(6951), - [anon_sym_DASH_DASH] = ACTIONS(6951), - [anon_sym_PLUS_PLUS] = ACTIONS(6951), - [anon_sym_DOT] = ACTIONS(6949), - [anon_sym_DOT_STAR] = ACTIONS(6951), - [anon_sym_DASH_GT] = ACTIONS(6949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6951), - [anon_sym_decltype] = ACTIONS(6951), - [anon_sym_final] = ACTIONS(6951), - [anon_sym_override] = ACTIONS(6951), - [anon_sym_requires] = ACTIONS(6951), - [anon_sym_DASH_GT_STAR] = ACTIONS(6951), + [STATE(2326)] = { + [sym_type_qualifier] = STATE(2352), + [sym_alignas_qualifier] = STATE(2492), + [aux_sym__type_definition_type_repeat1] = STATE(2352), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6901), + [anon_sym_COMMA] = ACTIONS(6901), + [anon_sym_LPAREN2] = ACTIONS(6901), + [anon_sym_DASH] = ACTIONS(6899), + [anon_sym_PLUS] = ACTIONS(6899), + [anon_sym_STAR] = ACTIONS(6899), + [anon_sym_SLASH] = ACTIONS(6899), + [anon_sym_PERCENT] = ACTIONS(6899), + [anon_sym_PIPE_PIPE] = ACTIONS(6901), + [anon_sym_AMP_AMP] = ACTIONS(6901), + [anon_sym_PIPE] = ACTIONS(6899), + [anon_sym_CARET] = ACTIONS(6899), + [anon_sym_AMP] = ACTIONS(6899), + [anon_sym_EQ_EQ] = ACTIONS(6901), + [anon_sym_BANG_EQ] = ACTIONS(6901), + [anon_sym_GT] = ACTIONS(6899), + [anon_sym_GT_EQ] = ACTIONS(6899), + [anon_sym_LT_EQ] = ACTIONS(6899), + [anon_sym_LT] = ACTIONS(6899), + [anon_sym_LT_LT] = ACTIONS(6899), + [anon_sym_GT_GT] = ACTIONS(6899), + [anon_sym___extension__] = ACTIONS(6679), + [anon_sym___attribute__] = ACTIONS(6901), + [anon_sym___attribute] = ACTIONS(6899), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6901), + [anon_sym_LBRACK] = ACTIONS(6899), + [anon_sym_EQ] = ACTIONS(6899), + [anon_sym_const] = ACTIONS(6687), + [anon_sym_constexpr] = ACTIONS(6679), + [anon_sym_volatile] = ACTIONS(6679), + [anon_sym_restrict] = ACTIONS(6679), + [anon_sym___restrict__] = ACTIONS(6679), + [anon_sym__Atomic] = ACTIONS(6679), + [anon_sym__Noreturn] = ACTIONS(6679), + [anon_sym_noreturn] = ACTIONS(6679), + [anon_sym__Nonnull] = ACTIONS(6679), + [anon_sym_mutable] = ACTIONS(6679), + [anon_sym_constinit] = ACTIONS(6679), + [anon_sym_consteval] = ACTIONS(6679), + [anon_sym_alignas] = ACTIONS(6689), + [anon_sym__Alignas] = ACTIONS(6689), + [anon_sym_QMARK] = ACTIONS(6901), + [anon_sym_STAR_EQ] = ACTIONS(6901), + [anon_sym_SLASH_EQ] = ACTIONS(6901), + [anon_sym_PERCENT_EQ] = ACTIONS(6901), + [anon_sym_PLUS_EQ] = ACTIONS(6901), + [anon_sym_DASH_EQ] = ACTIONS(6901), + [anon_sym_LT_LT_EQ] = ACTIONS(6901), + [anon_sym_GT_GT_EQ] = ACTIONS(6899), + [anon_sym_AMP_EQ] = ACTIONS(6901), + [anon_sym_CARET_EQ] = ACTIONS(6901), + [anon_sym_PIPE_EQ] = ACTIONS(6901), + [anon_sym_and_eq] = ACTIONS(6901), + [anon_sym_or_eq] = ACTIONS(6901), + [anon_sym_xor_eq] = ACTIONS(6901), + [anon_sym_LT_EQ_GT] = ACTIONS(6901), + [anon_sym_or] = ACTIONS(6899), + [anon_sym_and] = ACTIONS(6899), + [anon_sym_bitor] = ACTIONS(6901), + [anon_sym_xor] = ACTIONS(6899), + [anon_sym_bitand] = ACTIONS(6901), + [anon_sym_not_eq] = ACTIONS(6901), + [anon_sym_DASH_DASH] = ACTIONS(6901), + [anon_sym_PLUS_PLUS] = ACTIONS(6901), + [anon_sym_asm] = ACTIONS(6901), + [anon_sym___asm__] = ACTIONS(6901), + [anon_sym___asm] = ACTIONS(6899), + [anon_sym_DOT] = ACTIONS(6899), + [anon_sym_DOT_STAR] = ACTIONS(6901), + [anon_sym_DASH_GT] = ACTIONS(6901), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6901), + [anon_sym_override] = ACTIONS(6901), + [anon_sym_GT2] = ACTIONS(6901), + [anon_sym_noexcept] = ACTIONS(6901), + [anon_sym_throw] = ACTIONS(6901), + [anon_sym_requires] = ACTIONS(6901), }, - [STATE(2391)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), - [anon_sym_COMMA] = ACTIONS(6951), - [anon_sym_RPAREN] = ACTIONS(6951), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_DASH] = ACTIONS(6949), - [anon_sym_PLUS] = ACTIONS(6949), - [anon_sym_STAR] = ACTIONS(6949), - [anon_sym_SLASH] = ACTIONS(6949), - [anon_sym_PERCENT] = ACTIONS(6949), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_PIPE] = ACTIONS(6949), - [anon_sym_CARET] = ACTIONS(6949), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_GT] = ACTIONS(6949), - [anon_sym_GT_EQ] = ACTIONS(6951), - [anon_sym_LT_EQ] = ACTIONS(6949), - [anon_sym_LT] = ACTIONS(6949), - [anon_sym_LT_LT] = ACTIONS(6949), - [anon_sym_GT_GT] = ACTIONS(6949), - [anon_sym___extension__] = ACTIONS(6951), - [anon_sym___attribute__] = ACTIONS(6951), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_COLON] = ACTIONS(6949), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(6951), - [anon_sym_LBRACK] = ACTIONS(6951), - [anon_sym_EQ] = ACTIONS(6949), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6951), - [anon_sym_volatile] = ACTIONS(6951), - [anon_sym_restrict] = ACTIONS(6951), - [anon_sym___restrict__] = ACTIONS(6951), - [anon_sym__Atomic] = ACTIONS(6951), - [anon_sym__Noreturn] = ACTIONS(6951), - [anon_sym_noreturn] = ACTIONS(6951), - [anon_sym__Nonnull] = ACTIONS(6951), - [anon_sym_mutable] = ACTIONS(6951), - [anon_sym_constinit] = ACTIONS(6951), - [anon_sym_consteval] = ACTIONS(6951), - [anon_sym_alignas] = ACTIONS(6951), - [anon_sym__Alignas] = ACTIONS(6951), - [anon_sym_QMARK] = ACTIONS(6951), - [anon_sym_STAR_EQ] = ACTIONS(6951), - [anon_sym_SLASH_EQ] = ACTIONS(6951), - [anon_sym_PERCENT_EQ] = ACTIONS(6951), - [anon_sym_PLUS_EQ] = ACTIONS(6951), - [anon_sym_DASH_EQ] = ACTIONS(6951), - [anon_sym_LT_LT_EQ] = ACTIONS(6951), - [anon_sym_GT_GT_EQ] = ACTIONS(6951), - [anon_sym_AMP_EQ] = ACTIONS(6951), - [anon_sym_CARET_EQ] = ACTIONS(6951), - [anon_sym_PIPE_EQ] = ACTIONS(6951), - [anon_sym_and_eq] = ACTIONS(6951), - [anon_sym_or_eq] = ACTIONS(6951), - [anon_sym_xor_eq] = ACTIONS(6951), - [anon_sym_LT_EQ_GT] = ACTIONS(6951), - [anon_sym_or] = ACTIONS(6949), - [anon_sym_and] = ACTIONS(6949), - [anon_sym_bitor] = ACTIONS(6951), - [anon_sym_xor] = ACTIONS(6949), - [anon_sym_bitand] = ACTIONS(6951), - [anon_sym_not_eq] = ACTIONS(6951), - [anon_sym_DASH_DASH] = ACTIONS(6951), - [anon_sym_PLUS_PLUS] = ACTIONS(6951), - [anon_sym_DOT] = ACTIONS(6949), - [anon_sym_DOT_STAR] = ACTIONS(6951), - [anon_sym_DASH_GT] = ACTIONS(6949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6951), - [anon_sym_decltype] = ACTIONS(6951), - [anon_sym_final] = ACTIONS(6951), - [anon_sym_override] = ACTIONS(6951), - [anon_sym_requires] = ACTIONS(6951), - [anon_sym_DASH_GT_STAR] = ACTIONS(6951), - }, - [STATE(2392)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6969), - [anon_sym_COMMA] = ACTIONS(6969), - [anon_sym_RPAREN] = ACTIONS(6969), - [anon_sym_LPAREN2] = ACTIONS(6969), - [anon_sym_DASH] = ACTIONS(6967), - [anon_sym_PLUS] = ACTIONS(6967), - [anon_sym_STAR] = ACTIONS(6967), - [anon_sym_SLASH] = ACTIONS(6967), - [anon_sym_PERCENT] = ACTIONS(6967), - [anon_sym_PIPE_PIPE] = ACTIONS(6969), - [anon_sym_AMP_AMP] = ACTIONS(6969), - [anon_sym_PIPE] = ACTIONS(6967), - [anon_sym_CARET] = ACTIONS(6967), - [anon_sym_AMP] = ACTIONS(6967), - [anon_sym_EQ_EQ] = ACTIONS(6969), - [anon_sym_BANG_EQ] = ACTIONS(6969), - [anon_sym_GT] = ACTIONS(6967), - [anon_sym_GT_EQ] = ACTIONS(6969), - [anon_sym_LT_EQ] = ACTIONS(6967), - [anon_sym_LT] = ACTIONS(6967), - [anon_sym_LT_LT] = ACTIONS(6967), - [anon_sym_GT_GT] = ACTIONS(6967), - [anon_sym___extension__] = ACTIONS(6969), - [anon_sym___attribute__] = ACTIONS(6969), - [anon_sym___attribute] = ACTIONS(6967), - [anon_sym_COLON] = ACTIONS(6967), - [anon_sym_COLON_COLON] = ACTIONS(6969), - [anon_sym_LBRACE] = ACTIONS(6969), - [anon_sym_LBRACK] = ACTIONS(6969), - [anon_sym_EQ] = ACTIONS(6967), - [anon_sym_const] = ACTIONS(6967), - [anon_sym_constexpr] = ACTIONS(6969), - [anon_sym_volatile] = ACTIONS(6969), - [anon_sym_restrict] = ACTIONS(6969), - [anon_sym___restrict__] = ACTIONS(6969), - [anon_sym__Atomic] = ACTIONS(6969), - [anon_sym__Noreturn] = ACTIONS(6969), - [anon_sym_noreturn] = ACTIONS(6969), - [anon_sym__Nonnull] = ACTIONS(6969), - [anon_sym_mutable] = ACTIONS(6969), - [anon_sym_constinit] = ACTIONS(6969), - [anon_sym_consteval] = ACTIONS(6969), - [anon_sym_alignas] = ACTIONS(6969), - [anon_sym__Alignas] = ACTIONS(6969), - [anon_sym_QMARK] = ACTIONS(6969), - [anon_sym_STAR_EQ] = ACTIONS(6969), - [anon_sym_SLASH_EQ] = ACTIONS(6969), - [anon_sym_PERCENT_EQ] = ACTIONS(6969), - [anon_sym_PLUS_EQ] = ACTIONS(6969), - [anon_sym_DASH_EQ] = ACTIONS(6969), - [anon_sym_LT_LT_EQ] = ACTIONS(6969), - [anon_sym_GT_GT_EQ] = ACTIONS(6969), - [anon_sym_AMP_EQ] = ACTIONS(6969), - [anon_sym_CARET_EQ] = ACTIONS(6969), - [anon_sym_PIPE_EQ] = ACTIONS(6969), - [anon_sym_and_eq] = ACTIONS(6969), - [anon_sym_or_eq] = ACTIONS(6969), - [anon_sym_xor_eq] = ACTIONS(6969), - [anon_sym_LT_EQ_GT] = ACTIONS(6969), - [anon_sym_or] = ACTIONS(6967), - [anon_sym_and] = ACTIONS(6967), - [anon_sym_bitor] = ACTIONS(6969), - [anon_sym_xor] = ACTIONS(6967), - [anon_sym_bitand] = ACTIONS(6969), - [anon_sym_not_eq] = ACTIONS(6969), - [anon_sym_DASH_DASH] = ACTIONS(6969), - [anon_sym_PLUS_PLUS] = ACTIONS(6969), - [anon_sym_DOT] = ACTIONS(6967), - [anon_sym_DOT_STAR] = ACTIONS(6969), - [anon_sym_DASH_GT] = ACTIONS(6967), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6969), - [anon_sym_decltype] = ACTIONS(6969), - [anon_sym_final] = ACTIONS(6969), - [anon_sym_override] = ACTIONS(6969), - [anon_sym_requires] = ACTIONS(6969), - [anon_sym_DASH_GT_STAR] = ACTIONS(6969), - }, - [STATE(2393)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2589), - [sym_ms_pointer_modifier] = STATE(2393), - [aux_sym_pointer_declarator_repeat1] = STATE(2393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6602), - [anon_sym_COMMA] = ACTIONS(6602), - [anon_sym_LPAREN2] = ACTIONS(6602), - [anon_sym_DASH] = ACTIONS(6600), - [anon_sym_PLUS] = ACTIONS(6600), - [anon_sym_STAR] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6600), - [anon_sym_PERCENT] = ACTIONS(6600), - [anon_sym_PIPE_PIPE] = ACTIONS(6602), - [anon_sym_AMP_AMP] = ACTIONS(6602), - [anon_sym_PIPE] = ACTIONS(6600), - [anon_sym_CARET] = ACTIONS(6600), - [anon_sym_AMP] = ACTIONS(6600), - [anon_sym_EQ_EQ] = ACTIONS(6602), - [anon_sym_BANG_EQ] = ACTIONS(6602), - [anon_sym_GT] = ACTIONS(6600), - [anon_sym_GT_EQ] = ACTIONS(6600), - [anon_sym_LT_EQ] = ACTIONS(6600), - [anon_sym_LT] = ACTIONS(6600), - [anon_sym_LT_LT] = ACTIONS(6600), - [anon_sym_GT_GT] = ACTIONS(6600), - [anon_sym___extension__] = ACTIONS(6602), - [sym_ms_restrict_modifier] = ACTIONS(7975), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7978), - [sym_ms_signed_ptr_modifier] = ACTIONS(7978), - [anon_sym__unaligned] = ACTIONS(7981), - [anon_sym___unaligned] = ACTIONS(7981), - [anon_sym_LBRACK] = ACTIONS(6602), - [anon_sym_EQ] = ACTIONS(6600), - [anon_sym_const] = ACTIONS(6600), - [anon_sym_constexpr] = ACTIONS(6602), - [anon_sym_volatile] = ACTIONS(6602), - [anon_sym_restrict] = ACTIONS(6602), - [anon_sym___restrict__] = ACTIONS(6602), - [anon_sym__Atomic] = ACTIONS(6602), - [anon_sym__Noreturn] = ACTIONS(6602), - [anon_sym_noreturn] = ACTIONS(6602), - [anon_sym__Nonnull] = ACTIONS(6602), - [anon_sym_mutable] = ACTIONS(6602), - [anon_sym_constinit] = ACTIONS(6602), - [anon_sym_consteval] = ACTIONS(6602), - [anon_sym_alignas] = ACTIONS(6602), - [anon_sym__Alignas] = ACTIONS(6602), - [anon_sym_QMARK] = ACTIONS(6602), - [anon_sym_STAR_EQ] = ACTIONS(6602), - [anon_sym_SLASH_EQ] = ACTIONS(6602), - [anon_sym_PERCENT_EQ] = ACTIONS(6602), - [anon_sym_PLUS_EQ] = ACTIONS(6602), - [anon_sym_DASH_EQ] = ACTIONS(6602), - [anon_sym_LT_LT_EQ] = ACTIONS(6602), - [anon_sym_GT_GT_EQ] = ACTIONS(6600), - [anon_sym_AMP_EQ] = ACTIONS(6602), - [anon_sym_CARET_EQ] = ACTIONS(6602), - [anon_sym_PIPE_EQ] = ACTIONS(6602), - [anon_sym_and_eq] = ACTIONS(6602), - [anon_sym_or_eq] = ACTIONS(6602), - [anon_sym_xor_eq] = ACTIONS(6602), - [anon_sym_LT_EQ_GT] = ACTIONS(6602), - [anon_sym_or] = ACTIONS(6600), - [anon_sym_and] = ACTIONS(6600), - [anon_sym_bitor] = ACTIONS(6602), - [anon_sym_xor] = ACTIONS(6600), - [anon_sym_bitand] = ACTIONS(6602), - [anon_sym_not_eq] = ACTIONS(6602), - [anon_sym_DASH_DASH] = ACTIONS(6602), - [anon_sym_PLUS_PLUS] = ACTIONS(6602), - [anon_sym_DOT] = ACTIONS(6600), - [anon_sym_DOT_STAR] = ACTIONS(6602), - [anon_sym_DASH_GT] = ACTIONS(6602), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6602), - [anon_sym_override] = ACTIONS(6602), - [anon_sym_GT2] = ACTIONS(6602), - [anon_sym_requires] = ACTIONS(6602), - }, - [STATE(2394)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym_ref_qualifier] = STATE(2453), - [sym__function_exception_specification] = STATE(2849), - [sym__function_attributes_end] = STATE(4044), - [sym__function_postfix] = STATE(3513), - [sym_trailing_return_type] = STATE(2961), - [sym_noexcept] = STATE(2849), - [sym_throw_specifier] = STATE(2849), - [sym_requires_clause] = STATE(3513), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7548), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym_SEMI] = ACTIONS(7544), - [anon_sym___attribute__] = ACTIONS(7927), - [anon_sym___attribute] = ACTIONS(7930), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7933), + [STATE(2327)] = { + [sym__abstract_declarator] = STATE(4724), + [sym_abstract_parenthesized_declarator] = STATE(5090), + [sym_abstract_pointer_declarator] = STATE(5090), + [sym_abstract_function_declarator] = STATE(5090), + [sym_abstract_array_declarator] = STATE(5090), + [sym_type_qualifier] = STATE(2307), + [sym_alignas_qualifier] = STATE(2423), + [sym_parameter_list] = STATE(1980), + [sym_abstract_reference_declarator] = STATE(5090), + [sym__function_declarator_seq] = STATE(5091), + [aux_sym__type_definition_type_repeat1] = STATE(2307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), + [anon_sym_COMMA] = ACTIONS(7351), + [anon_sym_LPAREN2] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_PLUS] = ACTIONS(7349), + [anon_sym_STAR] = ACTIONS(7138), + [anon_sym_SLASH] = ACTIONS(7349), + [anon_sym_PERCENT] = ACTIONS(7349), + [anon_sym_PIPE_PIPE] = ACTIONS(7351), + [anon_sym_AMP_AMP] = ACTIONS(7140), + [anon_sym_PIPE] = ACTIONS(7349), + [anon_sym_CARET] = ACTIONS(7349), + [anon_sym_AMP] = ACTIONS(7142), + [anon_sym_EQ_EQ] = ACTIONS(7351), + [anon_sym_BANG_EQ] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7349), + [anon_sym_GT_EQ] = ACTIONS(7349), + [anon_sym_LT_EQ] = ACTIONS(7349), + [anon_sym_LT] = ACTIONS(7349), + [anon_sym_LT_LT] = ACTIONS(7349), + [anon_sym_GT_GT] = ACTIONS(7349), + [anon_sym___extension__] = ACTIONS(7144), + [anon_sym_LBRACK] = ACTIONS(7152), + [anon_sym_EQ] = ACTIONS(7349), + [anon_sym_const] = ACTIONS(7154), + [anon_sym_constexpr] = ACTIONS(7144), + [anon_sym_volatile] = ACTIONS(7144), + [anon_sym_restrict] = ACTIONS(7144), + [anon_sym___restrict__] = ACTIONS(7144), + [anon_sym__Atomic] = ACTIONS(7144), + [anon_sym__Noreturn] = ACTIONS(7144), + [anon_sym_noreturn] = ACTIONS(7144), + [anon_sym__Nonnull] = ACTIONS(7144), + [anon_sym_mutable] = ACTIONS(7144), + [anon_sym_constinit] = ACTIONS(7144), + [anon_sym_consteval] = ACTIONS(7144), + [anon_sym_alignas] = ACTIONS(7156), + [anon_sym__Alignas] = ACTIONS(7156), + [anon_sym_QMARK] = ACTIONS(7351), + [anon_sym_STAR_EQ] = ACTIONS(7351), + [anon_sym_SLASH_EQ] = ACTIONS(7351), + [anon_sym_PERCENT_EQ] = ACTIONS(7351), + [anon_sym_PLUS_EQ] = ACTIONS(7351), + [anon_sym_DASH_EQ] = ACTIONS(7351), + [anon_sym_LT_LT_EQ] = ACTIONS(7351), + [anon_sym_GT_GT_EQ] = ACTIONS(7349), + [anon_sym_AMP_EQ] = ACTIONS(7351), + [anon_sym_CARET_EQ] = ACTIONS(7351), + [anon_sym_PIPE_EQ] = ACTIONS(7351), + [anon_sym_and_eq] = ACTIONS(7351), + [anon_sym_or_eq] = ACTIONS(7351), + [anon_sym_xor_eq] = ACTIONS(7351), + [anon_sym_LT_EQ_GT] = ACTIONS(7351), + [anon_sym_or] = ACTIONS(7349), + [anon_sym_and] = ACTIONS(7349), + [anon_sym_bitor] = ACTIONS(7351), + [anon_sym_xor] = ACTIONS(7349), + [anon_sym_bitand] = ACTIONS(7351), + [anon_sym_not_eq] = ACTIONS(7351), + [anon_sym_DASH_DASH] = ACTIONS(7351), + [anon_sym_PLUS_PLUS] = ACTIONS(7351), + [anon_sym_DOT] = ACTIONS(7349), + [anon_sym_DOT_STAR] = ACTIONS(7351), + [anon_sym_DASH_GT] = ACTIONS(7351), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7557), - [anon_sym_override] = ACTIONS(7557), - [anon_sym_noexcept] = ACTIONS(6162), - [anon_sym_throw] = ACTIONS(6164), - [anon_sym_requires] = ACTIONS(7560), + [anon_sym_final] = ACTIONS(7351), + [anon_sym_override] = ACTIONS(7351), + [anon_sym_GT2] = ACTIONS(7351), + [anon_sym_requires] = ACTIONS(7351), }, - [STATE(2395)] = { - [sym_attribute_specifier] = STATE(4079), - [sym_attribute_declaration] = STATE(4488), - [sym_gnu_asm_expression] = STATE(8997), - [sym_virtual_specifier] = STATE(4611), - [sym_ref_qualifier] = STATE(2458), - [sym__function_exception_specification] = STATE(2857), - [sym__function_attributes_end] = STATE(4245), - [sym__function_postfix] = STATE(4983), - [sym_trailing_return_type] = STATE(4310), - [sym_noexcept] = STATE(2857), - [sym_throw_specifier] = STATE(2857), - [sym_requires_clause] = STATE(4983), - [aux_sym_type_definition_repeat1] = STATE(4079), - [aux_sym_attributed_declarator_repeat1] = STATE(4488), - [aux_sym__function_postfix_repeat1] = STATE(4611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7960), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7963), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6326), - [anon_sym___attribute] = ACTIONS(6328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_RBRACK] = ACTIONS(7544), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7966), + [STATE(2328)] = { + [sym__abstract_declarator] = STATE(4743), + [sym_abstract_parenthesized_declarator] = STATE(5090), + [sym_abstract_pointer_declarator] = STATE(5090), + [sym_abstract_function_declarator] = STATE(5090), + [sym_abstract_array_declarator] = STATE(5090), + [sym_type_qualifier] = STATE(2330), + [sym_alignas_qualifier] = STATE(2423), + [sym_parameter_list] = STATE(1980), + [sym_abstract_reference_declarator] = STATE(5090), + [sym__function_declarator_seq] = STATE(5091), + [aux_sym__type_definition_type_repeat1] = STATE(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(7138), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(7140), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(7142), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7341), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(7144), + [anon_sym_LBRACK] = ACTIONS(7152), + [anon_sym_EQ] = ACTIONS(7341), + [anon_sym_const] = ACTIONS(7154), + [anon_sym_constexpr] = ACTIONS(7144), + [anon_sym_volatile] = ACTIONS(7144), + [anon_sym_restrict] = ACTIONS(7144), + [anon_sym___restrict__] = ACTIONS(7144), + [anon_sym__Atomic] = ACTIONS(7144), + [anon_sym__Noreturn] = ACTIONS(7144), + [anon_sym_noreturn] = ACTIONS(7144), + [anon_sym__Nonnull] = ACTIONS(7144), + [anon_sym_mutable] = ACTIONS(7144), + [anon_sym_constinit] = ACTIONS(7144), + [anon_sym_consteval] = ACTIONS(7144), + [anon_sym_alignas] = ACTIONS(7156), + [anon_sym__Alignas] = ACTIONS(7156), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_STAR_EQ] = ACTIONS(7343), + [anon_sym_SLASH_EQ] = ACTIONS(7343), + [anon_sym_PERCENT_EQ] = ACTIONS(7343), + [anon_sym_PLUS_EQ] = ACTIONS(7343), + [anon_sym_DASH_EQ] = ACTIONS(7343), + [anon_sym_LT_LT_EQ] = ACTIONS(7343), + [anon_sym_GT_GT_EQ] = ACTIONS(7341), + [anon_sym_AMP_EQ] = ACTIONS(7343), + [anon_sym_CARET_EQ] = ACTIONS(7343), + [anon_sym_PIPE_EQ] = ACTIONS(7343), + [anon_sym_and_eq] = ACTIONS(7343), + [anon_sym_or_eq] = ACTIONS(7343), + [anon_sym_xor_eq] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7343), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6349), - [anon_sym_override] = ACTIONS(6349), - [anon_sym_noexcept] = ACTIONS(6342), - [anon_sym_throw] = ACTIONS(6344), - [anon_sym_requires] = ACTIONS(6351), - }, - [STATE(2396)] = { - [sym__declaration_modifiers] = STATE(5030), - [sym_attribute_specifier] = STATE(5030), - [sym_attribute_declaration] = STATE(5030), - [sym_ms_declspec_modifier] = STATE(5030), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8645), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(5030), - [sym_type_qualifier] = STATE(5030), - [sym_alignas_qualifier] = STATE(4644), - [sym_decltype] = STATE(10976), - [sym_explicit_function_specifier] = STATE(5030), - [sym_operator_cast] = STATE(9118), - [sym__constructor_specifiers] = STATE(5030), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7746), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_operator_cast_identifier] = STATE(9118), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_operator_cast_definition_repeat1] = STATE(5030), - [sym_identifier] = ACTIONS(7868), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(7870), - [anon_sym_virtual] = ACTIONS(7872), - [anon_sym_extern] = ACTIONS(7874), - [anon_sym___attribute__] = ACTIONS(7876), - [anon_sym___attribute] = ACTIONS(7876), - [anon_sym_COLON_COLON] = ACTIONS(7878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7880), - [anon_sym___declspec] = ACTIONS(7882), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(7874), - [anon_sym_register] = ACTIONS(7874), - [anon_sym_inline] = ACTIONS(7874), - [anon_sym___inline] = ACTIONS(7874), - [anon_sym___inline__] = ACTIONS(7874), - [anon_sym___forceinline] = ACTIONS(7874), - [anon_sym_thread_local] = ACTIONS(7874), - [anon_sym___thread] = ACTIONS(7874), - [anon_sym_const] = ACTIONS(7870), - [anon_sym_constexpr] = ACTIONS(7870), - [anon_sym_volatile] = ACTIONS(7870), - [anon_sym_restrict] = ACTIONS(7870), - [anon_sym___restrict__] = ACTIONS(7870), - [anon_sym__Atomic] = ACTIONS(7870), - [anon_sym__Noreturn] = ACTIONS(7870), - [anon_sym_noreturn] = ACTIONS(7870), - [anon_sym__Nonnull] = ACTIONS(7870), - [anon_sym_mutable] = ACTIONS(7870), - [anon_sym_constinit] = ACTIONS(7870), - [anon_sym_consteval] = ACTIONS(7870), - [anon_sym_alignas] = ACTIONS(7884), - [anon_sym__Alignas] = ACTIONS(7884), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), - }, - [STATE(2397)] = { - [sym__declaration_modifiers] = STATE(5030), - [sym_attribute_specifier] = STATE(5030), - [sym_attribute_declaration] = STATE(5030), - [sym_ms_declspec_modifier] = STATE(5030), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8587), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(5030), - [sym_type_qualifier] = STATE(5030), - [sym_alignas_qualifier] = STATE(4644), - [sym_decltype] = STATE(10976), - [sym_explicit_function_specifier] = STATE(5030), - [sym_operator_cast] = STATE(9118), - [sym__constructor_specifiers] = STATE(5030), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7746), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_operator_cast_identifier] = STATE(9118), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_operator_cast_definition_repeat1] = STATE(5030), - [sym_identifier] = ACTIONS(7868), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(7870), - [anon_sym_virtual] = ACTIONS(7872), - [anon_sym_extern] = ACTIONS(7874), - [anon_sym___attribute__] = ACTIONS(7876), - [anon_sym___attribute] = ACTIONS(7876), - [anon_sym_COLON_COLON] = ACTIONS(7878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7880), - [anon_sym___declspec] = ACTIONS(7882), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(7874), - [anon_sym_register] = ACTIONS(7874), - [anon_sym_inline] = ACTIONS(7874), - [anon_sym___inline] = ACTIONS(7874), - [anon_sym___inline__] = ACTIONS(7874), - [anon_sym___forceinline] = ACTIONS(7874), - [anon_sym_thread_local] = ACTIONS(7874), - [anon_sym___thread] = ACTIONS(7874), - [anon_sym_const] = ACTIONS(7870), - [anon_sym_constexpr] = ACTIONS(7870), - [anon_sym_volatile] = ACTIONS(7870), - [anon_sym_restrict] = ACTIONS(7870), - [anon_sym___restrict__] = ACTIONS(7870), - [anon_sym__Atomic] = ACTIONS(7870), - [anon_sym__Noreturn] = ACTIONS(7870), - [anon_sym_noreturn] = ACTIONS(7870), - [anon_sym__Nonnull] = ACTIONS(7870), - [anon_sym_mutable] = ACTIONS(7870), - [anon_sym_constinit] = ACTIONS(7870), - [anon_sym_consteval] = ACTIONS(7870), - [anon_sym_alignas] = ACTIONS(7884), - [anon_sym__Alignas] = ACTIONS(7884), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), - }, - [STATE(2398)] = { - [sym_attribute_specifier] = STATE(4003), - [sym_attribute_declaration] = STATE(4328), - [sym_gnu_asm_expression] = STATE(8980), - [sym_virtual_specifier] = STATE(4455), - [sym__function_exception_specification] = STATE(2817), - [sym__function_attributes_end] = STATE(4198), - [sym__function_postfix] = STATE(4844), - [sym_trailing_return_type] = STATE(4241), - [sym_noexcept] = STATE(2817), - [sym_throw_specifier] = STATE(2817), - [sym_requires_clause] = STATE(4844), - [aux_sym_type_definition_repeat1] = STATE(4003), - [aux_sym_attributed_declarator_repeat1] = STATE(4328), - [aux_sym__function_postfix_repeat1] = STATE(4455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6282), - [anon_sym___attribute] = ACTIONS(6284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7841), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6305), - [anon_sym_override] = ACTIONS(6305), - [anon_sym_noexcept] = ACTIONS(6298), - [anon_sym_throw] = ACTIONS(6300), - [anon_sym_requires] = ACTIONS(6307), - [anon_sym_DASH_GT_STAR] = ACTIONS(7544), - }, - [STATE(2399)] = { - [sym_type_qualifier] = STATE(2399), - [sym_alignas_qualifier] = STATE(2592), - [aux_sym__type_definition_type_repeat1] = STATE(2399), - [sym_identifier] = ACTIONS(6525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_RPAREN] = ACTIONS(6527), - [aux_sym_preproc_if_token2] = ACTIONS(6527), - [aux_sym_preproc_else_token1] = ACTIONS(6527), - [aux_sym_preproc_elif_token1] = ACTIONS(6525), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6527), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6527), - [anon_sym_LPAREN2] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6525), - [anon_sym_PLUS] = ACTIONS(6525), - [anon_sym_STAR] = ACTIONS(6527), - [anon_sym_SLASH] = ACTIONS(6525), - [anon_sym_PERCENT] = ACTIONS(6527), - [anon_sym_PIPE_PIPE] = ACTIONS(6527), - [anon_sym_AMP_AMP] = ACTIONS(6527), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_CARET] = ACTIONS(6527), - [anon_sym_AMP] = ACTIONS(6525), - [anon_sym_EQ_EQ] = ACTIONS(6527), - [anon_sym_BANG_EQ] = ACTIONS(6527), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6527), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_LT_LT] = ACTIONS(6527), - [anon_sym_GT_GT] = ACTIONS(6527), - [anon_sym_SEMI] = ACTIONS(6527), - [anon_sym___extension__] = ACTIONS(7984), - [anon_sym___attribute__] = ACTIONS(6525), - [anon_sym___attribute] = ACTIONS(6525), - [anon_sym_COLON] = ACTIONS(6525), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6527), - [anon_sym_LBRACE] = ACTIONS(6527), - [anon_sym_RBRACE] = ACTIONS(6527), - [anon_sym_signed] = ACTIONS(6525), - [anon_sym_unsigned] = ACTIONS(6525), - [anon_sym_long] = ACTIONS(6525), - [anon_sym_short] = ACTIONS(6525), - [anon_sym_LBRACK] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7984), - [anon_sym_constexpr] = ACTIONS(7984), - [anon_sym_volatile] = ACTIONS(7984), - [anon_sym_restrict] = ACTIONS(7984), - [anon_sym___restrict__] = ACTIONS(7984), - [anon_sym__Atomic] = ACTIONS(7984), - [anon_sym__Noreturn] = ACTIONS(7984), - [anon_sym_noreturn] = ACTIONS(7984), - [anon_sym__Nonnull] = ACTIONS(7984), - [anon_sym_mutable] = ACTIONS(7984), - [anon_sym_constinit] = ACTIONS(7984), - [anon_sym_consteval] = ACTIONS(7984), - [anon_sym_alignas] = ACTIONS(7987), - [anon_sym__Alignas] = ACTIONS(7987), - [sym_primitive_type] = ACTIONS(6525), - [anon_sym_QMARK] = ACTIONS(6527), - [anon_sym_LT_EQ_GT] = ACTIONS(6527), - [anon_sym_or] = ACTIONS(6525), - [anon_sym_and] = ACTIONS(6525), - [anon_sym_bitor] = ACTIONS(6525), - [anon_sym_xor] = ACTIONS(6525), - [anon_sym_bitand] = ACTIONS(6525), - [anon_sym_not_eq] = ACTIONS(6525), - [anon_sym_DASH_DASH] = ACTIONS(6527), - [anon_sym_PLUS_PLUS] = ACTIONS(6527), - [anon_sym_DOT] = ACTIONS(6525), - [anon_sym_DOT_STAR] = ACTIONS(6527), - [anon_sym_DASH_GT] = ACTIONS(6527), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6525), - [anon_sym_override] = ACTIONS(6525), - [anon_sym_requires] = ACTIONS(6525), - [anon_sym_COLON_RBRACK] = ACTIONS(6527), + [anon_sym_final] = ACTIONS(7343), + [anon_sym_override] = ACTIONS(7343), + [anon_sym_GT2] = ACTIONS(7343), + [anon_sym_requires] = ACTIONS(7343), }, - [STATE(2400)] = { - [sym_attribute_specifier] = STATE(2851), - [sym_enumerator_list] = STATE(2601), - [sym__enum_base_clause] = STATE(2522), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7602), - [anon_sym_COMMA] = ACTIONS(7602), - [anon_sym_RPAREN] = ACTIONS(7602), - [anon_sym_LPAREN2] = ACTIONS(7602), - [anon_sym_DASH] = ACTIONS(7600), - [anon_sym_PLUS] = ACTIONS(7600), - [anon_sym_STAR] = ACTIONS(7600), - [anon_sym_SLASH] = ACTIONS(7600), - [anon_sym_PERCENT] = ACTIONS(7600), - [anon_sym_PIPE_PIPE] = ACTIONS(7602), - [anon_sym_AMP_AMP] = ACTIONS(7602), - [anon_sym_PIPE] = ACTIONS(7600), - [anon_sym_CARET] = ACTIONS(7600), - [anon_sym_AMP] = ACTIONS(7600), - [anon_sym_EQ_EQ] = ACTIONS(7602), - [anon_sym_BANG_EQ] = ACTIONS(7602), - [anon_sym_GT] = ACTIONS(7600), - [anon_sym_GT_EQ] = ACTIONS(7602), - [anon_sym_LT_EQ] = ACTIONS(7600), - [anon_sym_LT] = ACTIONS(7600), - [anon_sym_LT_LT] = ACTIONS(7600), - [anon_sym_GT_GT] = ACTIONS(7600), - [anon_sym___extension__] = ACTIONS(7602), - [anon_sym___attribute__] = ACTIONS(7813), - [anon_sym___attribute] = ACTIONS(7815), - [anon_sym_COLON] = ACTIONS(7990), - [anon_sym_LBRACE] = ACTIONS(7992), - [anon_sym_LBRACK] = ACTIONS(7602), - [anon_sym_EQ] = ACTIONS(7600), - [anon_sym_const] = ACTIONS(7600), - [anon_sym_constexpr] = ACTIONS(7602), - [anon_sym_volatile] = ACTIONS(7602), - [anon_sym_restrict] = ACTIONS(7602), - [anon_sym___restrict__] = ACTIONS(7602), - [anon_sym__Atomic] = ACTIONS(7602), - [anon_sym__Noreturn] = ACTIONS(7602), - [anon_sym_noreturn] = ACTIONS(7602), - [anon_sym__Nonnull] = ACTIONS(7602), - [anon_sym_mutable] = ACTIONS(7602), - [anon_sym_constinit] = ACTIONS(7602), - [anon_sym_consteval] = ACTIONS(7602), - [anon_sym_alignas] = ACTIONS(7602), - [anon_sym__Alignas] = ACTIONS(7602), - [anon_sym_QMARK] = ACTIONS(7602), - [anon_sym_STAR_EQ] = ACTIONS(7602), - [anon_sym_SLASH_EQ] = ACTIONS(7602), - [anon_sym_PERCENT_EQ] = ACTIONS(7602), - [anon_sym_PLUS_EQ] = ACTIONS(7602), - [anon_sym_DASH_EQ] = ACTIONS(7602), - [anon_sym_LT_LT_EQ] = ACTIONS(7602), - [anon_sym_GT_GT_EQ] = ACTIONS(7602), - [anon_sym_AMP_EQ] = ACTIONS(7602), - [anon_sym_CARET_EQ] = ACTIONS(7602), - [anon_sym_PIPE_EQ] = ACTIONS(7602), - [anon_sym_and_eq] = ACTIONS(7602), - [anon_sym_or_eq] = ACTIONS(7602), - [anon_sym_xor_eq] = ACTIONS(7602), - [anon_sym_LT_EQ_GT] = ACTIONS(7602), - [anon_sym_or] = ACTIONS(7600), - [anon_sym_and] = ACTIONS(7600), - [anon_sym_bitor] = ACTIONS(7602), - [anon_sym_xor] = ACTIONS(7600), - [anon_sym_bitand] = ACTIONS(7602), - [anon_sym_not_eq] = ACTIONS(7602), - [anon_sym_DASH_DASH] = ACTIONS(7602), - [anon_sym_PLUS_PLUS] = ACTIONS(7602), - [anon_sym_DOT] = ACTIONS(7600), - [anon_sym_DOT_STAR] = ACTIONS(7602), - [anon_sym_DASH_GT] = ACTIONS(7600), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7602), - [anon_sym_override] = ACTIONS(7602), - [anon_sym_requires] = ACTIONS(7602), - [anon_sym_DASH_GT_STAR] = ACTIONS(7602), + [STATE(2329)] = { + [sym__abstract_declarator] = STATE(4716), + [sym_abstract_parenthesized_declarator] = STATE(5090), + [sym_abstract_pointer_declarator] = STATE(5090), + [sym_abstract_function_declarator] = STATE(5090), + [sym_abstract_array_declarator] = STATE(5090), + [sym_type_qualifier] = STATE(2307), + [sym_alignas_qualifier] = STATE(2423), + [sym_parameter_list] = STATE(1980), + [sym_abstract_reference_declarator] = STATE(5090), + [sym__function_declarator_seq] = STATE(5091), + [aux_sym__type_definition_type_repeat1] = STATE(2307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(7138), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(7140), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(7142), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6821), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(7144), + [anon_sym_LBRACK] = ACTIONS(7152), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(7154), + [anon_sym_constexpr] = ACTIONS(7144), + [anon_sym_volatile] = ACTIONS(7144), + [anon_sym_restrict] = ACTIONS(7144), + [anon_sym___restrict__] = ACTIONS(7144), + [anon_sym__Atomic] = ACTIONS(7144), + [anon_sym__Noreturn] = ACTIONS(7144), + [anon_sym_noreturn] = ACTIONS(7144), + [anon_sym__Nonnull] = ACTIONS(7144), + [anon_sym_mutable] = ACTIONS(7144), + [anon_sym_constinit] = ACTIONS(7144), + [anon_sym_consteval] = ACTIONS(7144), + [anon_sym_alignas] = ACTIONS(7156), + [anon_sym__Alignas] = ACTIONS(7156), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6821), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6823), + [anon_sym_or_eq] = ACTIONS(6823), + [anon_sym_xor_eq] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6823), + [anon_sym_override] = ACTIONS(6823), + [anon_sym_GT2] = ACTIONS(6823), + [anon_sym_requires] = ACTIONS(6823), }, - [STATE(2401)] = { - [sym_attribute_specifier] = STATE(2931), - [sym_enumerator_list] = STATE(2617), - [sym__enum_base_clause] = STATE(2543), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), - [anon_sym_COMMA] = ACTIONS(7653), - [anon_sym_RPAREN] = ACTIONS(7653), - [anon_sym_LPAREN2] = ACTIONS(7653), - [anon_sym_DASH] = ACTIONS(7651), - [anon_sym_PLUS] = ACTIONS(7651), - [anon_sym_STAR] = ACTIONS(7651), - [anon_sym_SLASH] = ACTIONS(7651), - [anon_sym_PERCENT] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_AMP_AMP] = ACTIONS(7653), - [anon_sym_PIPE] = ACTIONS(7651), - [anon_sym_CARET] = ACTIONS(7651), - [anon_sym_AMP] = ACTIONS(7651), - [anon_sym_EQ_EQ] = ACTIONS(7653), - [anon_sym_BANG_EQ] = ACTIONS(7653), - [anon_sym_GT] = ACTIONS(7651), - [anon_sym_GT_EQ] = ACTIONS(7653), - [anon_sym_LT_EQ] = ACTIONS(7651), - [anon_sym_LT] = ACTIONS(7651), - [anon_sym_LT_LT] = ACTIONS(7651), - [anon_sym_GT_GT] = ACTIONS(7651), - [anon_sym___extension__] = ACTIONS(7653), - [anon_sym___attribute__] = ACTIONS(7813), - [anon_sym___attribute] = ACTIONS(7815), - [anon_sym_COLON] = ACTIONS(7990), - [anon_sym_LBRACE] = ACTIONS(7992), - [anon_sym_LBRACK] = ACTIONS(7653), - [anon_sym_EQ] = ACTIONS(7651), - [anon_sym_const] = ACTIONS(7651), - [anon_sym_constexpr] = ACTIONS(7653), - [anon_sym_volatile] = ACTIONS(7653), - [anon_sym_restrict] = ACTIONS(7653), - [anon_sym___restrict__] = ACTIONS(7653), - [anon_sym__Atomic] = ACTIONS(7653), - [anon_sym__Noreturn] = ACTIONS(7653), - [anon_sym_noreturn] = ACTIONS(7653), - [anon_sym__Nonnull] = ACTIONS(7653), - [anon_sym_mutable] = ACTIONS(7653), - [anon_sym_constinit] = ACTIONS(7653), - [anon_sym_consteval] = ACTIONS(7653), - [anon_sym_alignas] = ACTIONS(7653), - [anon_sym__Alignas] = ACTIONS(7653), - [anon_sym_QMARK] = ACTIONS(7653), - [anon_sym_STAR_EQ] = ACTIONS(7653), - [anon_sym_SLASH_EQ] = ACTIONS(7653), - [anon_sym_PERCENT_EQ] = ACTIONS(7653), - [anon_sym_PLUS_EQ] = ACTIONS(7653), - [anon_sym_DASH_EQ] = ACTIONS(7653), - [anon_sym_LT_LT_EQ] = ACTIONS(7653), - [anon_sym_GT_GT_EQ] = ACTIONS(7653), - [anon_sym_AMP_EQ] = ACTIONS(7653), - [anon_sym_CARET_EQ] = ACTIONS(7653), - [anon_sym_PIPE_EQ] = ACTIONS(7653), - [anon_sym_and_eq] = ACTIONS(7653), - [anon_sym_or_eq] = ACTIONS(7653), - [anon_sym_xor_eq] = ACTIONS(7653), - [anon_sym_LT_EQ_GT] = ACTIONS(7653), - [anon_sym_or] = ACTIONS(7651), - [anon_sym_and] = ACTIONS(7651), - [anon_sym_bitor] = ACTIONS(7653), - [anon_sym_xor] = ACTIONS(7651), - [anon_sym_bitand] = ACTIONS(7653), - [anon_sym_not_eq] = ACTIONS(7653), - [anon_sym_DASH_DASH] = ACTIONS(7653), - [anon_sym_PLUS_PLUS] = ACTIONS(7653), - [anon_sym_DOT] = ACTIONS(7651), - [anon_sym_DOT_STAR] = ACTIONS(7653), - [anon_sym_DASH_GT] = ACTIONS(7651), + [STATE(2330)] = { + [sym__abstract_declarator] = STATE(4744), + [sym_abstract_parenthesized_declarator] = STATE(5090), + [sym_abstract_pointer_declarator] = STATE(5090), + [sym_abstract_function_declarator] = STATE(5090), + [sym_abstract_array_declarator] = STATE(5090), + [sym_type_qualifier] = STATE(2307), + [sym_alignas_qualifier] = STATE(2423), + [sym_parameter_list] = STATE(1980), + [sym_abstract_reference_declarator] = STATE(5090), + [sym__function_declarator_seq] = STATE(5091), + [aux_sym__type_definition_type_repeat1] = STATE(2307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), + [anon_sym_COMMA] = ACTIONS(7355), + [anon_sym_LPAREN2] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(7353), + [anon_sym_PLUS] = ACTIONS(7353), + [anon_sym_STAR] = ACTIONS(7138), + [anon_sym_SLASH] = ACTIONS(7353), + [anon_sym_PERCENT] = ACTIONS(7353), + [anon_sym_PIPE_PIPE] = ACTIONS(7355), + [anon_sym_AMP_AMP] = ACTIONS(7140), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_CARET] = ACTIONS(7353), + [anon_sym_AMP] = ACTIONS(7142), + [anon_sym_EQ_EQ] = ACTIONS(7355), + [anon_sym_BANG_EQ] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_EQ] = ACTIONS(7353), + [anon_sym_LT_EQ] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_LT_LT] = ACTIONS(7353), + [anon_sym_GT_GT] = ACTIONS(7353), + [anon_sym___extension__] = ACTIONS(7144), + [anon_sym_LBRACK] = ACTIONS(7152), + [anon_sym_EQ] = ACTIONS(7353), + [anon_sym_const] = ACTIONS(7154), + [anon_sym_constexpr] = ACTIONS(7144), + [anon_sym_volatile] = ACTIONS(7144), + [anon_sym_restrict] = ACTIONS(7144), + [anon_sym___restrict__] = ACTIONS(7144), + [anon_sym__Atomic] = ACTIONS(7144), + [anon_sym__Noreturn] = ACTIONS(7144), + [anon_sym_noreturn] = ACTIONS(7144), + [anon_sym__Nonnull] = ACTIONS(7144), + [anon_sym_mutable] = ACTIONS(7144), + [anon_sym_constinit] = ACTIONS(7144), + [anon_sym_consteval] = ACTIONS(7144), + [anon_sym_alignas] = ACTIONS(7156), + [anon_sym__Alignas] = ACTIONS(7156), + [anon_sym_QMARK] = ACTIONS(7355), + [anon_sym_STAR_EQ] = ACTIONS(7355), + [anon_sym_SLASH_EQ] = ACTIONS(7355), + [anon_sym_PERCENT_EQ] = ACTIONS(7355), + [anon_sym_PLUS_EQ] = ACTIONS(7355), + [anon_sym_DASH_EQ] = ACTIONS(7355), + [anon_sym_LT_LT_EQ] = ACTIONS(7355), + [anon_sym_GT_GT_EQ] = ACTIONS(7353), + [anon_sym_AMP_EQ] = ACTIONS(7355), + [anon_sym_CARET_EQ] = ACTIONS(7355), + [anon_sym_PIPE_EQ] = ACTIONS(7355), + [anon_sym_and_eq] = ACTIONS(7355), + [anon_sym_or_eq] = ACTIONS(7355), + [anon_sym_xor_eq] = ACTIONS(7355), + [anon_sym_LT_EQ_GT] = ACTIONS(7355), + [anon_sym_or] = ACTIONS(7353), + [anon_sym_and] = ACTIONS(7353), + [anon_sym_bitor] = ACTIONS(7355), + [anon_sym_xor] = ACTIONS(7353), + [anon_sym_bitand] = ACTIONS(7355), + [anon_sym_not_eq] = ACTIONS(7355), + [anon_sym_DASH_DASH] = ACTIONS(7355), + [anon_sym_PLUS_PLUS] = ACTIONS(7355), + [anon_sym_DOT] = ACTIONS(7353), + [anon_sym_DOT_STAR] = ACTIONS(7355), + [anon_sym_DASH_GT] = ACTIONS(7355), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7653), - [anon_sym_override] = ACTIONS(7653), - [anon_sym_requires] = ACTIONS(7653), - [anon_sym_DASH_GT_STAR] = ACTIONS(7653), + [anon_sym_final] = ACTIONS(7355), + [anon_sym_override] = ACTIONS(7355), + [anon_sym_GT2] = ACTIONS(7355), + [anon_sym_requires] = ACTIONS(7355), }, - [STATE(2402)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2280), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), - [anon_sym_COMMA] = ACTIONS(7389), - [anon_sym_LPAREN2] = ACTIONS(7389), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_STAR] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7387), - [anon_sym_PERCENT] = ACTIONS(7387), - [anon_sym_PIPE_PIPE] = ACTIONS(7389), - [anon_sym_AMP_AMP] = ACTIONS(7389), - [anon_sym_PIPE] = ACTIONS(7387), - [anon_sym_CARET] = ACTIONS(7387), - [anon_sym_AMP] = ACTIONS(7387), - [anon_sym_EQ_EQ] = ACTIONS(7389), - [anon_sym_BANG_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [anon_sym_GT_EQ] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7387), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_LT] = ACTIONS(7387), - [anon_sym_GT_GT] = ACTIONS(7387), - [anon_sym___extension__] = ACTIONS(7389), - [anon_sym___attribute__] = ACTIONS(7389), - [anon_sym___attribute] = ACTIONS(7387), - [anon_sym_LBRACE] = ACTIONS(7389), - [anon_sym_signed] = ACTIONS(7906), - [anon_sym_unsigned] = ACTIONS(7906), - [anon_sym_long] = ACTIONS(7906), - [anon_sym_short] = ACTIONS(7906), - [anon_sym_LBRACK] = ACTIONS(7389), - [anon_sym_EQ] = ACTIONS(7387), - [anon_sym_const] = ACTIONS(7387), - [anon_sym_constexpr] = ACTIONS(7389), - [anon_sym_volatile] = ACTIONS(7389), - [anon_sym_restrict] = ACTIONS(7389), - [anon_sym___restrict__] = ACTIONS(7389), - [anon_sym__Atomic] = ACTIONS(7389), - [anon_sym__Noreturn] = ACTIONS(7389), - [anon_sym_noreturn] = ACTIONS(7389), - [anon_sym__Nonnull] = ACTIONS(7389), - [anon_sym_mutable] = ACTIONS(7389), - [anon_sym_constinit] = ACTIONS(7389), - [anon_sym_consteval] = ACTIONS(7389), - [anon_sym_alignas] = ACTIONS(7389), - [anon_sym__Alignas] = ACTIONS(7389), - [anon_sym_QMARK] = ACTIONS(7389), - [anon_sym_STAR_EQ] = ACTIONS(7389), - [anon_sym_SLASH_EQ] = ACTIONS(7389), - [anon_sym_PERCENT_EQ] = ACTIONS(7389), - [anon_sym_PLUS_EQ] = ACTIONS(7389), - [anon_sym_DASH_EQ] = ACTIONS(7389), - [anon_sym_LT_LT_EQ] = ACTIONS(7389), - [anon_sym_GT_GT_EQ] = ACTIONS(7387), - [anon_sym_AMP_EQ] = ACTIONS(7389), - [anon_sym_CARET_EQ] = ACTIONS(7389), - [anon_sym_PIPE_EQ] = ACTIONS(7389), - [anon_sym_and_eq] = ACTIONS(7389), - [anon_sym_or_eq] = ACTIONS(7389), - [anon_sym_xor_eq] = ACTIONS(7389), - [anon_sym_LT_EQ_GT] = ACTIONS(7389), - [anon_sym_or] = ACTIONS(7387), - [anon_sym_and] = ACTIONS(7387), - [anon_sym_bitor] = ACTIONS(7389), - [anon_sym_xor] = ACTIONS(7387), - [anon_sym_bitand] = ACTIONS(7389), - [anon_sym_not_eq] = ACTIONS(7389), - [anon_sym_DASH_DASH] = ACTIONS(7389), - [anon_sym_PLUS_PLUS] = ACTIONS(7389), - [anon_sym_DOT] = ACTIONS(7387), - [anon_sym_DOT_STAR] = ACTIONS(7389), - [anon_sym_DASH_GT] = ACTIONS(7389), + [STATE(2331)] = { + [sym__abstract_declarator] = STATE(4738), + [sym_abstract_parenthesized_declarator] = STATE(5090), + [sym_abstract_pointer_declarator] = STATE(5090), + [sym_abstract_function_declarator] = STATE(5090), + [sym_abstract_array_declarator] = STATE(5090), + [sym_type_qualifier] = STATE(2307), + [sym_alignas_qualifier] = STATE(2423), + [sym_parameter_list] = STATE(1980), + [sym_abstract_reference_declarator] = STATE(5090), + [sym__function_declarator_seq] = STATE(5091), + [aux_sym__type_definition_type_repeat1] = STATE(2307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(7138), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7347), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(7140), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7347), + [anon_sym_AMP] = ACTIONS(7142), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7347), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7347), + [anon_sym_GT_GT] = ACTIONS(7347), + [anon_sym___extension__] = ACTIONS(7144), + [anon_sym_LBRACK] = ACTIONS(7152), + [anon_sym_EQ] = ACTIONS(7347), + [anon_sym_const] = ACTIONS(7154), + [anon_sym_constexpr] = ACTIONS(7144), + [anon_sym_volatile] = ACTIONS(7144), + [anon_sym_restrict] = ACTIONS(7144), + [anon_sym___restrict__] = ACTIONS(7144), + [anon_sym__Atomic] = ACTIONS(7144), + [anon_sym__Noreturn] = ACTIONS(7144), + [anon_sym_noreturn] = ACTIONS(7144), + [anon_sym__Nonnull] = ACTIONS(7144), + [anon_sym_mutable] = ACTIONS(7144), + [anon_sym_constinit] = ACTIONS(7144), + [anon_sym_consteval] = ACTIONS(7144), + [anon_sym_alignas] = ACTIONS(7156), + [anon_sym__Alignas] = ACTIONS(7156), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_STAR_EQ] = ACTIONS(7345), + [anon_sym_SLASH_EQ] = ACTIONS(7345), + [anon_sym_PERCENT_EQ] = ACTIONS(7345), + [anon_sym_PLUS_EQ] = ACTIONS(7345), + [anon_sym_DASH_EQ] = ACTIONS(7345), + [anon_sym_LT_LT_EQ] = ACTIONS(7345), + [anon_sym_GT_GT_EQ] = ACTIONS(7347), + [anon_sym_AMP_EQ] = ACTIONS(7345), + [anon_sym_CARET_EQ] = ACTIONS(7345), + [anon_sym_PIPE_EQ] = ACTIONS(7345), + [anon_sym_and_eq] = ACTIONS(7345), + [anon_sym_or_eq] = ACTIONS(7345), + [anon_sym_xor_eq] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7347), + [anon_sym_and] = ACTIONS(7347), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7347), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7389), - [anon_sym_override] = ACTIONS(7389), - [anon_sym_GT2] = ACTIONS(7389), - [anon_sym_requires] = ACTIONS(7389), - }, - [STATE(2403)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), - [anon_sym_COMMA] = ACTIONS(2758), - [anon_sym_LPAREN2] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_SLASH] = ACTIONS(2768), - [anon_sym_PERCENT] = ACTIONS(2768), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2768), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_LT_EQ] = ACTIONS(2768), - [anon_sym_LT] = ACTIONS(2768), - [anon_sym_LT_LT] = ACTIONS(2768), - [anon_sym_GT_GT] = ACTIONS(2768), - [anon_sym___extension__] = ACTIONS(2758), - [anon_sym___attribute__] = ACTIONS(2758), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_RBRACK] = ACTIONS(2758), - [anon_sym_EQ] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2758), - [anon_sym_volatile] = ACTIONS(2758), - [anon_sym_restrict] = ACTIONS(2758), - [anon_sym___restrict__] = ACTIONS(2758), - [anon_sym__Atomic] = ACTIONS(2758), - [anon_sym__Noreturn] = ACTIONS(2758), - [anon_sym_noreturn] = ACTIONS(2758), - [anon_sym__Nonnull] = ACTIONS(2758), - [anon_sym_mutable] = ACTIONS(2758), - [anon_sym_constinit] = ACTIONS(2758), - [anon_sym_consteval] = ACTIONS(2758), - [anon_sym_alignas] = ACTIONS(2758), - [anon_sym__Alignas] = ACTIONS(2758), - [anon_sym_QMARK] = ACTIONS(2758), - [anon_sym_STAR_EQ] = ACTIONS(2758), - [anon_sym_SLASH_EQ] = ACTIONS(2758), - [anon_sym_PERCENT_EQ] = ACTIONS(2758), - [anon_sym_PLUS_EQ] = ACTIONS(2758), - [anon_sym_DASH_EQ] = ACTIONS(2758), - [anon_sym_LT_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_GT_EQ] = ACTIONS(2758), - [anon_sym_AMP_EQ] = ACTIONS(2758), - [anon_sym_CARET_EQ] = ACTIONS(2758), - [anon_sym_PIPE_EQ] = ACTIONS(2758), - [anon_sym_and_eq] = ACTIONS(2758), - [anon_sym_or_eq] = ACTIONS(2758), - [anon_sym_xor_eq] = ACTIONS(2758), - [anon_sym_LT_EQ_GT] = ACTIONS(2758), - [anon_sym_or] = ACTIONS(2768), - [anon_sym_and] = ACTIONS(2768), - [anon_sym_bitor] = ACTIONS(2758), - [anon_sym_xor] = ACTIONS(2768), - [anon_sym_bitand] = ACTIONS(2758), - [anon_sym_not_eq] = ACTIONS(2758), - [anon_sym_DASH_DASH] = ACTIONS(2758), - [anon_sym_PLUS_PLUS] = ACTIONS(2758), - [anon_sym_asm] = ACTIONS(2758), - [anon_sym___asm__] = ACTIONS(2758), - [anon_sym___asm] = ACTIONS(2768), - [anon_sym_DOT] = ACTIONS(2768), - [anon_sym_DOT_STAR] = ACTIONS(2758), - [anon_sym_DASH_GT] = ACTIONS(2758), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2758), - [anon_sym_override] = ACTIONS(2758), - [anon_sym_noexcept] = ACTIONS(2758), - [anon_sym_throw] = ACTIONS(2758), - [anon_sym_requires] = ACTIONS(2758), - }, - [STATE(2404)] = { - [sym_attribute_specifier] = STATE(4003), - [sym_attribute_declaration] = STATE(4328), - [sym_gnu_asm_expression] = STATE(8980), - [sym_virtual_specifier] = STATE(4455), - [sym__function_exception_specification] = STATE(2816), - [sym__function_attributes_end] = STATE(4185), - [sym__function_postfix] = STATE(4844), - [sym_trailing_return_type] = STATE(4273), - [sym_noexcept] = STATE(2816), - [sym_throw_specifier] = STATE(2816), - [sym_requires_clause] = STATE(4844), - [aux_sym_type_definition_repeat1] = STATE(4003), - [aux_sym_attributed_declarator_repeat1] = STATE(4328), - [aux_sym__function_postfix_repeat1] = STATE(4455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6282), - [anon_sym___attribute] = ACTIONS(6284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7841), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7848), - [anon_sym_override] = ACTIONS(7848), - [anon_sym_noexcept] = ACTIONS(6298), - [anon_sym_throw] = ACTIONS(6300), - [anon_sym_requires] = ACTIONS(7851), - [anon_sym_DASH_GT_STAR] = ACTIONS(7544), - }, - [STATE(2405)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6233), - [anon_sym_COMMA] = ACTIONS(6233), - [anon_sym_RPAREN] = ACTIONS(6233), - [anon_sym_LPAREN2] = ACTIONS(6233), - [anon_sym_DASH] = ACTIONS(6226), - [anon_sym_PLUS] = ACTIONS(6226), - [anon_sym_STAR] = ACTIONS(6226), - [anon_sym_SLASH] = ACTIONS(6226), - [anon_sym_PERCENT] = ACTIONS(6226), - [anon_sym_PIPE_PIPE] = ACTIONS(6233), - [anon_sym_AMP_AMP] = ACTIONS(6233), - [anon_sym_PIPE] = ACTIONS(6226), - [anon_sym_CARET] = ACTIONS(6226), - [anon_sym_AMP] = ACTIONS(6226), - [anon_sym_EQ_EQ] = ACTIONS(6233), - [anon_sym_BANG_EQ] = ACTIONS(6233), - [anon_sym_GT] = ACTIONS(6226), - [anon_sym_GT_EQ] = ACTIONS(6233), - [anon_sym_LT_EQ] = ACTIONS(6226), - [anon_sym_LT] = ACTIONS(6226), - [anon_sym_LT_LT] = ACTIONS(6226), - [anon_sym_GT_GT] = ACTIONS(6226), - [anon_sym___extension__] = ACTIONS(6233), - [anon_sym___attribute__] = ACTIONS(6233), - [anon_sym___attribute] = ACTIONS(6226), - [anon_sym_COLON] = ACTIONS(6226), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6233), - [anon_sym_EQ] = ACTIONS(6226), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6233), - [anon_sym_volatile] = ACTIONS(6233), - [anon_sym_restrict] = ACTIONS(6233), - [anon_sym___restrict__] = ACTIONS(6233), - [anon_sym__Atomic] = ACTIONS(6233), - [anon_sym__Noreturn] = ACTIONS(6233), - [anon_sym_noreturn] = ACTIONS(6233), - [anon_sym__Nonnull] = ACTIONS(6233), - [anon_sym_mutable] = ACTIONS(6233), - [anon_sym_constinit] = ACTIONS(6233), - [anon_sym_consteval] = ACTIONS(6233), - [anon_sym_alignas] = ACTIONS(6233), - [anon_sym__Alignas] = ACTIONS(6233), - [anon_sym_QMARK] = ACTIONS(6233), - [anon_sym_STAR_EQ] = ACTIONS(6233), - [anon_sym_SLASH_EQ] = ACTIONS(6233), - [anon_sym_PERCENT_EQ] = ACTIONS(6233), - [anon_sym_PLUS_EQ] = ACTIONS(6233), - [anon_sym_DASH_EQ] = ACTIONS(6233), - [anon_sym_LT_LT_EQ] = ACTIONS(6233), - [anon_sym_GT_GT_EQ] = ACTIONS(6233), - [anon_sym_AMP_EQ] = ACTIONS(6233), - [anon_sym_CARET_EQ] = ACTIONS(6233), - [anon_sym_PIPE_EQ] = ACTIONS(6233), - [anon_sym_and_eq] = ACTIONS(6233), - [anon_sym_or_eq] = ACTIONS(6233), - [anon_sym_xor_eq] = ACTIONS(6233), - [anon_sym_LT_EQ_GT] = ACTIONS(6233), - [anon_sym_or] = ACTIONS(6226), - [anon_sym_and] = ACTIONS(6226), - [anon_sym_bitor] = ACTIONS(6233), - [anon_sym_xor] = ACTIONS(6226), - [anon_sym_bitand] = ACTIONS(6233), - [anon_sym_not_eq] = ACTIONS(6233), - [anon_sym_DASH_DASH] = ACTIONS(6233), - [anon_sym_PLUS_PLUS] = ACTIONS(6233), - [anon_sym_DOT] = ACTIONS(6226), - [anon_sym_DOT_STAR] = ACTIONS(6233), - [anon_sym_DASH_GT] = ACTIONS(6226), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6233), - [anon_sym_decltype] = ACTIONS(6233), - [anon_sym_final] = ACTIONS(6233), - [anon_sym_override] = ACTIONS(6233), - [anon_sym_requires] = ACTIONS(6233), - [anon_sym_DASH_GT_STAR] = ACTIONS(6233), - }, - [STATE(2406)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), - [anon_sym_COMMA] = ACTIONS(6718), - [anon_sym_LPAREN2] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6716), - [anon_sym_PLUS] = ACTIONS(6716), - [anon_sym_STAR] = ACTIONS(6716), - [anon_sym_SLASH] = ACTIONS(6716), - [anon_sym_PERCENT] = ACTIONS(6716), - [anon_sym_PIPE_PIPE] = ACTIONS(6718), - [anon_sym_AMP_AMP] = ACTIONS(6718), - [anon_sym_PIPE] = ACTIONS(6716), - [anon_sym_CARET] = ACTIONS(6716), - [anon_sym_AMP] = ACTIONS(6716), - [anon_sym_EQ_EQ] = ACTIONS(6718), - [anon_sym_BANG_EQ] = ACTIONS(6718), - [anon_sym_GT] = ACTIONS(6716), - [anon_sym_GT_EQ] = ACTIONS(6718), - [anon_sym_LT_EQ] = ACTIONS(6716), - [anon_sym_LT] = ACTIONS(6716), - [anon_sym_LT_LT] = ACTIONS(6716), - [anon_sym_GT_GT] = ACTIONS(6716), - [anon_sym___extension__] = ACTIONS(6718), - [anon_sym___attribute__] = ACTIONS(6718), - [anon_sym___attribute] = ACTIONS(6716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6718), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_RBRACK] = ACTIONS(6718), - [anon_sym_EQ] = ACTIONS(6716), - [anon_sym_const] = ACTIONS(6716), - [anon_sym_constexpr] = ACTIONS(6718), - [anon_sym_volatile] = ACTIONS(6718), - [anon_sym_restrict] = ACTIONS(6718), - [anon_sym___restrict__] = ACTIONS(6718), - [anon_sym__Atomic] = ACTIONS(6718), - [anon_sym__Noreturn] = ACTIONS(6718), - [anon_sym_noreturn] = ACTIONS(6718), - [anon_sym__Nonnull] = ACTIONS(6718), - [anon_sym_mutable] = ACTIONS(6718), - [anon_sym_constinit] = ACTIONS(6718), - [anon_sym_consteval] = ACTIONS(6718), - [anon_sym_alignas] = ACTIONS(6718), - [anon_sym__Alignas] = ACTIONS(6718), - [anon_sym_QMARK] = ACTIONS(6718), - [anon_sym_STAR_EQ] = ACTIONS(6718), - [anon_sym_SLASH_EQ] = ACTIONS(6718), - [anon_sym_PERCENT_EQ] = ACTIONS(6718), - [anon_sym_PLUS_EQ] = ACTIONS(6718), - [anon_sym_DASH_EQ] = ACTIONS(6718), - [anon_sym_LT_LT_EQ] = ACTIONS(6718), - [anon_sym_GT_GT_EQ] = ACTIONS(6718), - [anon_sym_AMP_EQ] = ACTIONS(6718), - [anon_sym_CARET_EQ] = ACTIONS(6718), - [anon_sym_PIPE_EQ] = ACTIONS(6718), - [anon_sym_and_eq] = ACTIONS(6718), - [anon_sym_or_eq] = ACTIONS(6718), - [anon_sym_xor_eq] = ACTIONS(6718), - [anon_sym_LT_EQ_GT] = ACTIONS(6718), - [anon_sym_or] = ACTIONS(6716), - [anon_sym_and] = ACTIONS(6716), - [anon_sym_bitor] = ACTIONS(6718), - [anon_sym_xor] = ACTIONS(6716), - [anon_sym_bitand] = ACTIONS(6718), - [anon_sym_not_eq] = ACTIONS(6718), - [anon_sym_DASH_DASH] = ACTIONS(6718), - [anon_sym_PLUS_PLUS] = ACTIONS(6718), - [anon_sym_asm] = ACTIONS(6718), - [anon_sym___asm__] = ACTIONS(6718), - [anon_sym___asm] = ACTIONS(6716), - [anon_sym_DOT] = ACTIONS(6716), - [anon_sym_DOT_STAR] = ACTIONS(6718), - [anon_sym_DASH_GT] = ACTIONS(6718), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6718), - [anon_sym_override] = ACTIONS(6718), - [anon_sym_noexcept] = ACTIONS(6718), - [anon_sym_throw] = ACTIONS(6718), - [anon_sym_requires] = ACTIONS(6718), - }, - [STATE(2407)] = { - [sym_attribute_specifier] = STATE(4003), - [sym_attribute_declaration] = STATE(4328), - [sym_gnu_asm_expression] = STATE(8980), - [sym_virtual_specifier] = STATE(4455), - [sym__function_exception_specification] = STATE(2798), - [sym__function_attributes_end] = STATE(4190), - [sym__function_postfix] = STATE(4846), - [sym_trailing_return_type] = STATE(4230), - [sym_noexcept] = STATE(2798), - [sym_throw_specifier] = STATE(2798), - [sym_requires_clause] = STATE(4846), - [aux_sym_type_definition_repeat1] = STATE(4003), - [aux_sym_attributed_declarator_repeat1] = STATE(4328), - [aux_sym__function_postfix_repeat1] = STATE(4455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_RPAREN] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym___attribute__] = ACTIONS(6282), - [anon_sym___attribute] = ACTIONS(6284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7627), - [anon_sym_or_eq] = ACTIONS(7627), - [anon_sym_xor_eq] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(7994), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7997), - [anon_sym_override] = ACTIONS(7997), - [anon_sym_noexcept] = ACTIONS(6298), - [anon_sym_throw] = ACTIONS(6300), - [anon_sym_requires] = ACTIONS(8000), - [anon_sym_DASH_GT_STAR] = ACTIONS(7627), - }, - [STATE(2408)] = { - [sym_attribute_specifier] = STATE(3029), - [sym_field_declaration_list] = STATE(2667), - [sym_virtual_specifier] = STATE(9470), - [sym_base_class_clause] = STATE(10309), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(6828), - [anon_sym_LPAREN2] = ACTIONS(6828), - [anon_sym_DASH] = ACTIONS(6826), - [anon_sym_PLUS] = ACTIONS(6826), - [anon_sym_STAR] = ACTIONS(6826), - [anon_sym_SLASH] = ACTIONS(6826), - [anon_sym_PERCENT] = ACTIONS(6826), - [anon_sym_PIPE_PIPE] = ACTIONS(6828), - [anon_sym_AMP_AMP] = ACTIONS(6828), - [anon_sym_PIPE] = ACTIONS(6826), - [anon_sym_CARET] = ACTIONS(6826), - [anon_sym_AMP] = ACTIONS(6826), - [anon_sym_EQ_EQ] = ACTIONS(6828), - [anon_sym_BANG_EQ] = ACTIONS(6828), - [anon_sym_GT] = ACTIONS(6826), - [anon_sym_GT_EQ] = ACTIONS(6828), - [anon_sym_LT_EQ] = ACTIONS(6826), - [anon_sym_LT] = ACTIONS(6826), - [anon_sym_LT_LT] = ACTIONS(6826), - [anon_sym_GT_GT] = ACTIONS(6826), - [anon_sym___extension__] = ACTIONS(6828), - [anon_sym___attribute__] = ACTIONS(8003), - [anon_sym___attribute] = ACTIONS(8005), - [anon_sym_COLON] = ACTIONS(7817), - [anon_sym_LBRACE] = ACTIONS(8007), - [anon_sym_LBRACK] = ACTIONS(6828), - [anon_sym_RBRACK] = ACTIONS(6828), - [anon_sym_EQ] = ACTIONS(6826), - [anon_sym_const] = ACTIONS(6826), - [anon_sym_constexpr] = ACTIONS(6828), - [anon_sym_volatile] = ACTIONS(6828), - [anon_sym_restrict] = ACTIONS(6828), - [anon_sym___restrict__] = ACTIONS(6828), - [anon_sym__Atomic] = ACTIONS(6828), - [anon_sym__Noreturn] = ACTIONS(6828), - [anon_sym_noreturn] = ACTIONS(6828), - [anon_sym__Nonnull] = ACTIONS(6828), - [anon_sym_mutable] = ACTIONS(6828), - [anon_sym_constinit] = ACTIONS(6828), - [anon_sym_consteval] = ACTIONS(6828), - [anon_sym_alignas] = ACTIONS(6828), - [anon_sym__Alignas] = ACTIONS(6828), - [anon_sym_QMARK] = ACTIONS(6828), - [anon_sym_STAR_EQ] = ACTIONS(6828), - [anon_sym_SLASH_EQ] = ACTIONS(6828), - [anon_sym_PERCENT_EQ] = ACTIONS(6828), - [anon_sym_PLUS_EQ] = ACTIONS(6828), - [anon_sym_DASH_EQ] = ACTIONS(6828), - [anon_sym_LT_LT_EQ] = ACTIONS(6828), - [anon_sym_GT_GT_EQ] = ACTIONS(6828), - [anon_sym_AMP_EQ] = ACTIONS(6828), - [anon_sym_CARET_EQ] = ACTIONS(6828), - [anon_sym_PIPE_EQ] = ACTIONS(6828), - [anon_sym_and_eq] = ACTIONS(6828), - [anon_sym_or_eq] = ACTIONS(6828), - [anon_sym_xor_eq] = ACTIONS(6828), - [anon_sym_LT_EQ_GT] = ACTIONS(6828), - [anon_sym_or] = ACTIONS(6826), - [anon_sym_and] = ACTIONS(6826), - [anon_sym_bitor] = ACTIONS(6828), - [anon_sym_xor] = ACTIONS(6826), - [anon_sym_bitand] = ACTIONS(6828), - [anon_sym_not_eq] = ACTIONS(6828), - [anon_sym_DASH_DASH] = ACTIONS(6828), - [anon_sym_PLUS_PLUS] = ACTIONS(6828), - [anon_sym_DOT] = ACTIONS(6826), - [anon_sym_DOT_STAR] = ACTIONS(6828), - [anon_sym_DASH_GT] = ACTIONS(6828), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7821), - [anon_sym_override] = ACTIONS(7821), - [anon_sym_requires] = ACTIONS(6828), - }, - [STATE(2409)] = { - [sym__declaration_modifiers] = STATE(5030), - [sym_attribute_specifier] = STATE(5030), - [sym_attribute_declaration] = STATE(5030), - [sym_ms_declspec_modifier] = STATE(5030), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8707), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(5030), - [sym_type_qualifier] = STATE(5030), - [sym_alignas_qualifier] = STATE(4644), - [sym_decltype] = STATE(10976), - [sym_explicit_function_specifier] = STATE(5030), - [sym_operator_cast] = STATE(9042), - [sym__constructor_specifiers] = STATE(5030), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7746), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_operator_cast_identifier] = STATE(9042), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_operator_cast_definition_repeat1] = STATE(5030), - [sym_identifier] = ACTIONS(7868), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(7870), - [anon_sym_virtual] = ACTIONS(7872), - [anon_sym_extern] = ACTIONS(7874), - [anon_sym___attribute__] = ACTIONS(7876), - [anon_sym___attribute] = ACTIONS(7876), - [anon_sym_COLON_COLON] = ACTIONS(7878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7880), - [anon_sym___declspec] = ACTIONS(7882), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(7874), - [anon_sym_register] = ACTIONS(7874), - [anon_sym_inline] = ACTIONS(7874), - [anon_sym___inline] = ACTIONS(7874), - [anon_sym___inline__] = ACTIONS(7874), - [anon_sym___forceinline] = ACTIONS(7874), - [anon_sym_thread_local] = ACTIONS(7874), - [anon_sym___thread] = ACTIONS(7874), - [anon_sym_const] = ACTIONS(7870), - [anon_sym_constexpr] = ACTIONS(7870), - [anon_sym_volatile] = ACTIONS(7870), - [anon_sym_restrict] = ACTIONS(7870), - [anon_sym___restrict__] = ACTIONS(7870), - [anon_sym__Atomic] = ACTIONS(7870), - [anon_sym__Noreturn] = ACTIONS(7870), - [anon_sym_noreturn] = ACTIONS(7870), - [anon_sym__Nonnull] = ACTIONS(7870), - [anon_sym_mutable] = ACTIONS(7870), - [anon_sym_constinit] = ACTIONS(7870), - [anon_sym_consteval] = ACTIONS(7870), - [anon_sym_alignas] = ACTIONS(7884), - [anon_sym__Alignas] = ACTIONS(7884), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), - }, - [STATE(2410)] = { - [sym__declaration_modifiers] = STATE(5030), - [sym_attribute_specifier] = STATE(5030), - [sym_attribute_declaration] = STATE(5030), - [sym_ms_declspec_modifier] = STATE(5030), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8627), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(5030), - [sym_type_qualifier] = STATE(5030), - [sym_alignas_qualifier] = STATE(4644), - [sym_decltype] = STATE(10976), - [sym_explicit_function_specifier] = STATE(5030), - [sym_operator_cast] = STATE(9042), - [sym__constructor_specifiers] = STATE(5030), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7746), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_operator_cast_identifier] = STATE(9042), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_operator_cast_definition_repeat1] = STATE(5030), - [sym_identifier] = ACTIONS(7868), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(7870), - [anon_sym_virtual] = ACTIONS(7872), - [anon_sym_extern] = ACTIONS(7874), - [anon_sym___attribute__] = ACTIONS(7876), - [anon_sym___attribute] = ACTIONS(7876), - [anon_sym_COLON_COLON] = ACTIONS(7878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7880), - [anon_sym___declspec] = ACTIONS(7882), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(7874), - [anon_sym_register] = ACTIONS(7874), - [anon_sym_inline] = ACTIONS(7874), - [anon_sym___inline] = ACTIONS(7874), - [anon_sym___inline__] = ACTIONS(7874), - [anon_sym___forceinline] = ACTIONS(7874), - [anon_sym_thread_local] = ACTIONS(7874), - [anon_sym___thread] = ACTIONS(7874), - [anon_sym_const] = ACTIONS(7870), - [anon_sym_constexpr] = ACTIONS(7870), - [anon_sym_volatile] = ACTIONS(7870), - [anon_sym_restrict] = ACTIONS(7870), - [anon_sym___restrict__] = ACTIONS(7870), - [anon_sym__Atomic] = ACTIONS(7870), - [anon_sym__Noreturn] = ACTIONS(7870), - [anon_sym_noreturn] = ACTIONS(7870), - [anon_sym__Nonnull] = ACTIONS(7870), - [anon_sym_mutable] = ACTIONS(7870), - [anon_sym_constinit] = ACTIONS(7870), - [anon_sym_consteval] = ACTIONS(7870), - [anon_sym_alignas] = ACTIONS(7884), - [anon_sym__Alignas] = ACTIONS(7884), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), - }, - [STATE(2411)] = { - [sym_template_argument_list] = STATE(2487), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6208), - [anon_sym_COMMA] = ACTIONS(6208), - [anon_sym_LPAREN2] = ACTIONS(6208), - [anon_sym_DASH] = ACTIONS(6201), - [anon_sym_PLUS] = ACTIONS(6201), - [anon_sym_STAR] = ACTIONS(6201), - [anon_sym_SLASH] = ACTIONS(6201), - [anon_sym_PERCENT] = ACTIONS(6201), - [anon_sym_PIPE_PIPE] = ACTIONS(6208), - [anon_sym_AMP_AMP] = ACTIONS(6208), - [anon_sym_PIPE] = ACTIONS(6201), - [anon_sym_CARET] = ACTIONS(6201), - [anon_sym_AMP] = ACTIONS(6201), - [anon_sym_EQ_EQ] = ACTIONS(6208), - [anon_sym_BANG_EQ] = ACTIONS(6208), - [anon_sym_GT] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6201), - [anon_sym_LT_EQ] = ACTIONS(6201), - [anon_sym_LT] = ACTIONS(8009), - [anon_sym_LT_LT] = ACTIONS(6201), - [anon_sym_GT_GT] = ACTIONS(6201), - [anon_sym___extension__] = ACTIONS(6208), - [anon_sym___attribute__] = ACTIONS(6208), - [anon_sym___attribute] = ACTIONS(6201), - [anon_sym_COLON] = ACTIONS(6201), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(6208), - [anon_sym_LBRACK] = ACTIONS(6208), - [anon_sym_EQ] = ACTIONS(6201), - [anon_sym_const] = ACTIONS(6201), - [anon_sym_constexpr] = ACTIONS(6208), - [anon_sym_volatile] = ACTIONS(6208), - [anon_sym_restrict] = ACTIONS(6208), - [anon_sym___restrict__] = ACTIONS(6208), - [anon_sym__Atomic] = ACTIONS(6208), - [anon_sym__Noreturn] = ACTIONS(6208), - [anon_sym_noreturn] = ACTIONS(6208), - [anon_sym__Nonnull] = ACTIONS(6208), - [anon_sym_mutable] = ACTIONS(6208), - [anon_sym_constinit] = ACTIONS(6208), - [anon_sym_consteval] = ACTIONS(6208), - [anon_sym_alignas] = ACTIONS(6208), - [anon_sym__Alignas] = ACTIONS(6208), - [anon_sym_QMARK] = ACTIONS(6208), - [anon_sym_STAR_EQ] = ACTIONS(6208), - [anon_sym_SLASH_EQ] = ACTIONS(6208), - [anon_sym_PERCENT_EQ] = ACTIONS(6208), - [anon_sym_PLUS_EQ] = ACTIONS(6208), - [anon_sym_DASH_EQ] = ACTIONS(6208), - [anon_sym_LT_LT_EQ] = ACTIONS(6208), - [anon_sym_GT_GT_EQ] = ACTIONS(6201), - [anon_sym_AMP_EQ] = ACTIONS(6208), - [anon_sym_CARET_EQ] = ACTIONS(6208), - [anon_sym_PIPE_EQ] = ACTIONS(6208), - [anon_sym_and_eq] = ACTIONS(6208), - [anon_sym_or_eq] = ACTIONS(6208), - [anon_sym_xor_eq] = ACTIONS(6208), - [anon_sym_LT_EQ_GT] = ACTIONS(6208), - [anon_sym_or] = ACTIONS(6201), - [anon_sym_and] = ACTIONS(6201), - [anon_sym_bitor] = ACTIONS(6208), - [anon_sym_xor] = ACTIONS(6201), - [anon_sym_bitand] = ACTIONS(6208), - [anon_sym_not_eq] = ACTIONS(6208), - [anon_sym_DASH_DASH] = ACTIONS(6208), - [anon_sym_PLUS_PLUS] = ACTIONS(6208), - [anon_sym_DOT] = ACTIONS(6201), - [anon_sym_DOT_STAR] = ACTIONS(6208), - [anon_sym_DASH_GT] = ACTIONS(6208), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6208), - [anon_sym_decltype] = ACTIONS(6208), - [anon_sym_final] = ACTIONS(6208), - [anon_sym_override] = ACTIONS(6208), - [anon_sym_GT2] = ACTIONS(6208), - [anon_sym_requires] = ACTIONS(6208), + [anon_sym_final] = ACTIONS(7345), + [anon_sym_override] = ACTIONS(7345), + [anon_sym_GT2] = ACTIONS(7345), + [anon_sym_requires] = ACTIONS(7345), }, - [STATE(2412)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2280), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7393), - [anon_sym_COMMA] = ACTIONS(7393), - [anon_sym_LPAREN2] = ACTIONS(7393), - [anon_sym_DASH] = ACTIONS(7391), - [anon_sym_PLUS] = ACTIONS(7391), - [anon_sym_STAR] = ACTIONS(7391), - [anon_sym_SLASH] = ACTIONS(7391), - [anon_sym_PERCENT] = ACTIONS(7391), - [anon_sym_PIPE_PIPE] = ACTIONS(7393), - [anon_sym_AMP_AMP] = ACTIONS(7393), - [anon_sym_PIPE] = ACTIONS(7391), - [anon_sym_CARET] = ACTIONS(7391), - [anon_sym_AMP] = ACTIONS(7391), - [anon_sym_EQ_EQ] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7393), - [anon_sym_GT] = ACTIONS(7391), + [STATE(2332)] = { + [sym__abstract_declarator] = STATE(4686), + [sym_abstract_parenthesized_declarator] = STATE(5063), + [sym_abstract_pointer_declarator] = STATE(5063), + [sym_abstract_function_declarator] = STATE(5063), + [sym_abstract_array_declarator] = STATE(5063), + [sym_type_qualifier] = STATE(2334), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1977), + [sym_abstract_reference_declarator] = STATE(5063), + [sym__function_declarator_seq] = STATE(5065), + [aux_sym__type_definition_type_repeat1] = STATE(2334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), + [anon_sym_COMMA] = ACTIONS(7391), + [anon_sym_LPAREN2] = ACTIONS(7112), + [anon_sym_DASH] = ACTIONS(7393), + [anon_sym_PLUS] = ACTIONS(7393), + [anon_sym_STAR] = ACTIONS(7114), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_PERCENT] = ACTIONS(7393), + [anon_sym_PIPE_PIPE] = ACTIONS(7391), + [anon_sym_AMP_AMP] = ACTIONS(7116), + [anon_sym_PIPE] = ACTIONS(7393), + [anon_sym_CARET] = ACTIONS(7393), + [anon_sym_AMP] = ACTIONS(7118), + [anon_sym_EQ_EQ] = ACTIONS(7391), + [anon_sym_BANG_EQ] = ACTIONS(7391), + [anon_sym_GT] = ACTIONS(7393), [anon_sym_GT_EQ] = ACTIONS(7391), - [anon_sym_LT_EQ] = ACTIONS(7391), - [anon_sym_LT] = ACTIONS(7391), - [anon_sym_LT_LT] = ACTIONS(7391), - [anon_sym_GT_GT] = ACTIONS(7391), - [anon_sym___extension__] = ACTIONS(7393), - [anon_sym___attribute__] = ACTIONS(7393), - [anon_sym___attribute] = ACTIONS(7391), - [anon_sym_LBRACE] = ACTIONS(7393), - [anon_sym_signed] = ACTIONS(7906), - [anon_sym_unsigned] = ACTIONS(7906), - [anon_sym_long] = ACTIONS(7906), - [anon_sym_short] = ACTIONS(7906), - [anon_sym_LBRACK] = ACTIONS(7393), - [anon_sym_EQ] = ACTIONS(7391), - [anon_sym_const] = ACTIONS(7391), - [anon_sym_constexpr] = ACTIONS(7393), - [anon_sym_volatile] = ACTIONS(7393), - [anon_sym_restrict] = ACTIONS(7393), - [anon_sym___restrict__] = ACTIONS(7393), - [anon_sym__Atomic] = ACTIONS(7393), - [anon_sym__Noreturn] = ACTIONS(7393), - [anon_sym_noreturn] = ACTIONS(7393), - [anon_sym__Nonnull] = ACTIONS(7393), - [anon_sym_mutable] = ACTIONS(7393), - [anon_sym_constinit] = ACTIONS(7393), - [anon_sym_consteval] = ACTIONS(7393), - [anon_sym_alignas] = ACTIONS(7393), - [anon_sym__Alignas] = ACTIONS(7393), - [anon_sym_QMARK] = ACTIONS(7393), - [anon_sym_STAR_EQ] = ACTIONS(7393), - [anon_sym_SLASH_EQ] = ACTIONS(7393), - [anon_sym_PERCENT_EQ] = ACTIONS(7393), - [anon_sym_PLUS_EQ] = ACTIONS(7393), - [anon_sym_DASH_EQ] = ACTIONS(7393), - [anon_sym_LT_LT_EQ] = ACTIONS(7393), + [anon_sym_LT_EQ] = ACTIONS(7393), + [anon_sym_LT] = ACTIONS(7393), + [anon_sym_LT_LT] = ACTIONS(7393), + [anon_sym_GT_GT] = ACTIONS(7393), + [anon_sym___extension__] = ACTIONS(7120), + [anon_sym_LBRACK] = ACTIONS(7128), + [anon_sym_RBRACK] = ACTIONS(7391), + [anon_sym_EQ] = ACTIONS(7393), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(7120), + [anon_sym_volatile] = ACTIONS(7120), + [anon_sym_restrict] = ACTIONS(7120), + [anon_sym___restrict__] = ACTIONS(7120), + [anon_sym__Atomic] = ACTIONS(7120), + [anon_sym__Noreturn] = ACTIONS(7120), + [anon_sym_noreturn] = ACTIONS(7120), + [anon_sym__Nonnull] = ACTIONS(7120), + [anon_sym_mutable] = ACTIONS(7120), + [anon_sym_constinit] = ACTIONS(7120), + [anon_sym_consteval] = ACTIONS(7120), + [anon_sym_alignas] = ACTIONS(7130), + [anon_sym__Alignas] = ACTIONS(7130), + [anon_sym_QMARK] = ACTIONS(7391), + [anon_sym_STAR_EQ] = ACTIONS(7391), + [anon_sym_SLASH_EQ] = ACTIONS(7391), + [anon_sym_PERCENT_EQ] = ACTIONS(7391), + [anon_sym_PLUS_EQ] = ACTIONS(7391), + [anon_sym_DASH_EQ] = ACTIONS(7391), + [anon_sym_LT_LT_EQ] = ACTIONS(7391), [anon_sym_GT_GT_EQ] = ACTIONS(7391), - [anon_sym_AMP_EQ] = ACTIONS(7393), - [anon_sym_CARET_EQ] = ACTIONS(7393), - [anon_sym_PIPE_EQ] = ACTIONS(7393), - [anon_sym_and_eq] = ACTIONS(7393), - [anon_sym_or_eq] = ACTIONS(7393), - [anon_sym_xor_eq] = ACTIONS(7393), - [anon_sym_LT_EQ_GT] = ACTIONS(7393), - [anon_sym_or] = ACTIONS(7391), - [anon_sym_and] = ACTIONS(7391), - [anon_sym_bitor] = ACTIONS(7393), - [anon_sym_xor] = ACTIONS(7391), - [anon_sym_bitand] = ACTIONS(7393), - [anon_sym_not_eq] = ACTIONS(7393), - [anon_sym_DASH_DASH] = ACTIONS(7393), - [anon_sym_PLUS_PLUS] = ACTIONS(7393), - [anon_sym_DOT] = ACTIONS(7391), - [anon_sym_DOT_STAR] = ACTIONS(7393), - [anon_sym_DASH_GT] = ACTIONS(7393), + [anon_sym_AMP_EQ] = ACTIONS(7391), + [anon_sym_CARET_EQ] = ACTIONS(7391), + [anon_sym_PIPE_EQ] = ACTIONS(7391), + [anon_sym_and_eq] = ACTIONS(7391), + [anon_sym_or_eq] = ACTIONS(7391), + [anon_sym_xor_eq] = ACTIONS(7391), + [anon_sym_LT_EQ_GT] = ACTIONS(7391), + [anon_sym_or] = ACTIONS(7393), + [anon_sym_and] = ACTIONS(7393), + [anon_sym_bitor] = ACTIONS(7391), + [anon_sym_xor] = ACTIONS(7393), + [anon_sym_bitand] = ACTIONS(7391), + [anon_sym_not_eq] = ACTIONS(7391), + [anon_sym_DASH_DASH] = ACTIONS(7391), + [anon_sym_PLUS_PLUS] = ACTIONS(7391), + [anon_sym_DOT] = ACTIONS(7393), + [anon_sym_DOT_STAR] = ACTIONS(7391), + [anon_sym_DASH_GT] = ACTIONS(7391), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7393), - [anon_sym_override] = ACTIONS(7393), - [anon_sym_GT2] = ACTIONS(7393), - [anon_sym_requires] = ACTIONS(7393), - }, - [STATE(2413)] = { - [sym__declaration_modifiers] = STATE(5030), - [sym_attribute_specifier] = STATE(5030), - [sym_attribute_declaration] = STATE(5030), - [sym_ms_declspec_modifier] = STATE(5030), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8650), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(5030), - [sym_type_qualifier] = STATE(5030), - [sym_alignas_qualifier] = STATE(4644), - [sym_decltype] = STATE(10976), - [sym_explicit_function_specifier] = STATE(5030), - [sym_operator_cast] = STATE(9094), - [sym__constructor_specifiers] = STATE(5030), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7746), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_operator_cast_identifier] = STATE(9094), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_operator_cast_definition_repeat1] = STATE(5030), - [sym_identifier] = ACTIONS(7868), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(7870), - [anon_sym_virtual] = ACTIONS(7872), - [anon_sym_extern] = ACTIONS(7874), - [anon_sym___attribute__] = ACTIONS(7876), - [anon_sym___attribute] = ACTIONS(7876), - [anon_sym_COLON_COLON] = ACTIONS(7878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7880), - [anon_sym___declspec] = ACTIONS(7882), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(7874), - [anon_sym_register] = ACTIONS(7874), - [anon_sym_inline] = ACTIONS(7874), - [anon_sym___inline] = ACTIONS(7874), - [anon_sym___inline__] = ACTIONS(7874), - [anon_sym___forceinline] = ACTIONS(7874), - [anon_sym_thread_local] = ACTIONS(7874), - [anon_sym___thread] = ACTIONS(7874), - [anon_sym_const] = ACTIONS(7870), - [anon_sym_constexpr] = ACTIONS(7870), - [anon_sym_volatile] = ACTIONS(7870), - [anon_sym_restrict] = ACTIONS(7870), - [anon_sym___restrict__] = ACTIONS(7870), - [anon_sym__Atomic] = ACTIONS(7870), - [anon_sym__Noreturn] = ACTIONS(7870), - [anon_sym_noreturn] = ACTIONS(7870), - [anon_sym__Nonnull] = ACTIONS(7870), - [anon_sym_mutable] = ACTIONS(7870), - [anon_sym_constinit] = ACTIONS(7870), - [anon_sym_consteval] = ACTIONS(7870), - [anon_sym_alignas] = ACTIONS(7884), - [anon_sym__Alignas] = ACTIONS(7884), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), - }, - [STATE(2414)] = { - [sym__declaration_modifiers] = STATE(5030), - [sym_attribute_specifier] = STATE(5030), - [sym_attribute_declaration] = STATE(5030), - [sym_ms_declspec_modifier] = STATE(5030), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8629), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(5030), - [sym_type_qualifier] = STATE(5030), - [sym_alignas_qualifier] = STATE(4644), - [sym_decltype] = STATE(10976), - [sym_explicit_function_specifier] = STATE(5030), - [sym_operator_cast] = STATE(9105), - [sym__constructor_specifiers] = STATE(5030), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7746), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_operator_cast_identifier] = STATE(9105), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_operator_cast_definition_repeat1] = STATE(5030), - [sym_identifier] = ACTIONS(7868), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(7870), - [anon_sym_virtual] = ACTIONS(7872), - [anon_sym_extern] = ACTIONS(7874), - [anon_sym___attribute__] = ACTIONS(7876), - [anon_sym___attribute] = ACTIONS(7876), - [anon_sym_COLON_COLON] = ACTIONS(7878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7880), - [anon_sym___declspec] = ACTIONS(7882), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(7874), - [anon_sym_register] = ACTIONS(7874), - [anon_sym_inline] = ACTIONS(7874), - [anon_sym___inline] = ACTIONS(7874), - [anon_sym___inline__] = ACTIONS(7874), - [anon_sym___forceinline] = ACTIONS(7874), - [anon_sym_thread_local] = ACTIONS(7874), - [anon_sym___thread] = ACTIONS(7874), - [anon_sym_const] = ACTIONS(7870), - [anon_sym_constexpr] = ACTIONS(7870), - [anon_sym_volatile] = ACTIONS(7870), - [anon_sym_restrict] = ACTIONS(7870), - [anon_sym___restrict__] = ACTIONS(7870), - [anon_sym__Atomic] = ACTIONS(7870), - [anon_sym__Noreturn] = ACTIONS(7870), - [anon_sym_noreturn] = ACTIONS(7870), - [anon_sym__Nonnull] = ACTIONS(7870), - [anon_sym_mutable] = ACTIONS(7870), - [anon_sym_constinit] = ACTIONS(7870), - [anon_sym_consteval] = ACTIONS(7870), - [anon_sym_alignas] = ACTIONS(7884), - [anon_sym__Alignas] = ACTIONS(7884), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), - }, - [STATE(2415)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6722), - [anon_sym_COMMA] = ACTIONS(6722), - [anon_sym_LPAREN2] = ACTIONS(6722), - [anon_sym_DASH] = ACTIONS(6720), - [anon_sym_PLUS] = ACTIONS(6720), - [anon_sym_STAR] = ACTIONS(6720), - [anon_sym_SLASH] = ACTIONS(6720), - [anon_sym_PERCENT] = ACTIONS(6720), - [anon_sym_PIPE_PIPE] = ACTIONS(6722), - [anon_sym_AMP_AMP] = ACTIONS(6722), - [anon_sym_PIPE] = ACTIONS(6720), - [anon_sym_CARET] = ACTIONS(6720), - [anon_sym_AMP] = ACTIONS(6720), - [anon_sym_EQ_EQ] = ACTIONS(6722), - [anon_sym_BANG_EQ] = ACTIONS(6722), - [anon_sym_GT] = ACTIONS(6720), - [anon_sym_GT_EQ] = ACTIONS(6722), - [anon_sym_LT_EQ] = ACTIONS(6720), - [anon_sym_LT] = ACTIONS(6720), - [anon_sym_LT_LT] = ACTIONS(6720), - [anon_sym_GT_GT] = ACTIONS(6720), - [anon_sym___extension__] = ACTIONS(6722), - [anon_sym___attribute__] = ACTIONS(6722), - [anon_sym___attribute] = ACTIONS(6720), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6722), - [anon_sym_LBRACK] = ACTIONS(6720), - [anon_sym_RBRACK] = ACTIONS(6722), - [anon_sym_EQ] = ACTIONS(6720), - [anon_sym_const] = ACTIONS(6720), - [anon_sym_constexpr] = ACTIONS(6722), - [anon_sym_volatile] = ACTIONS(6722), - [anon_sym_restrict] = ACTIONS(6722), - [anon_sym___restrict__] = ACTIONS(6722), - [anon_sym__Atomic] = ACTIONS(6722), - [anon_sym__Noreturn] = ACTIONS(6722), - [anon_sym_noreturn] = ACTIONS(6722), - [anon_sym__Nonnull] = ACTIONS(6722), - [anon_sym_mutable] = ACTIONS(6722), - [anon_sym_constinit] = ACTIONS(6722), - [anon_sym_consteval] = ACTIONS(6722), - [anon_sym_alignas] = ACTIONS(6722), - [anon_sym__Alignas] = ACTIONS(6722), - [anon_sym_QMARK] = ACTIONS(6722), - [anon_sym_STAR_EQ] = ACTIONS(6722), - [anon_sym_SLASH_EQ] = ACTIONS(6722), - [anon_sym_PERCENT_EQ] = ACTIONS(6722), - [anon_sym_PLUS_EQ] = ACTIONS(6722), - [anon_sym_DASH_EQ] = ACTIONS(6722), - [anon_sym_LT_LT_EQ] = ACTIONS(6722), - [anon_sym_GT_GT_EQ] = ACTIONS(6722), - [anon_sym_AMP_EQ] = ACTIONS(6722), - [anon_sym_CARET_EQ] = ACTIONS(6722), - [anon_sym_PIPE_EQ] = ACTIONS(6722), - [anon_sym_and_eq] = ACTIONS(6722), - [anon_sym_or_eq] = ACTIONS(6722), - [anon_sym_xor_eq] = ACTIONS(6722), - [anon_sym_LT_EQ_GT] = ACTIONS(6722), - [anon_sym_or] = ACTIONS(6720), - [anon_sym_and] = ACTIONS(6720), - [anon_sym_bitor] = ACTIONS(6722), - [anon_sym_xor] = ACTIONS(6720), - [anon_sym_bitand] = ACTIONS(6722), - [anon_sym_not_eq] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_asm] = ACTIONS(6722), - [anon_sym___asm__] = ACTIONS(6722), - [anon_sym___asm] = ACTIONS(6720), - [anon_sym_DOT] = ACTIONS(6720), - [anon_sym_DOT_STAR] = ACTIONS(6722), - [anon_sym_DASH_GT] = ACTIONS(6722), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6722), - [anon_sym_override] = ACTIONS(6722), - [anon_sym_noexcept] = ACTIONS(6722), - [anon_sym_throw] = ACTIONS(6722), - [anon_sym_requires] = ACTIONS(6722), + [anon_sym_final] = ACTIONS(7391), + [anon_sym_override] = ACTIONS(7391), + [anon_sym_requires] = ACTIONS(7391), }, - [STATE(2416)] = { - [sym__declaration_modifiers] = STATE(5030), - [sym_attribute_specifier] = STATE(5030), - [sym_attribute_declaration] = STATE(5030), - [sym_ms_declspec_modifier] = STATE(5030), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8598), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(5030), - [sym_type_qualifier] = STATE(5030), - [sym_alignas_qualifier] = STATE(4644), - [sym_decltype] = STATE(10976), - [sym_explicit_function_specifier] = STATE(5030), - [sym_operator_cast] = STATE(9094), - [sym__constructor_specifiers] = STATE(5030), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7746), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_operator_cast_identifier] = STATE(9094), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_operator_cast_definition_repeat1] = STATE(5030), - [sym_identifier] = ACTIONS(7868), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(7870), - [anon_sym_virtual] = ACTIONS(7872), - [anon_sym_extern] = ACTIONS(7874), - [anon_sym___attribute__] = ACTIONS(7876), - [anon_sym___attribute] = ACTIONS(7876), - [anon_sym_COLON_COLON] = ACTIONS(7878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7880), - [anon_sym___declspec] = ACTIONS(7882), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(7874), - [anon_sym_register] = ACTIONS(7874), - [anon_sym_inline] = ACTIONS(7874), - [anon_sym___inline] = ACTIONS(7874), - [anon_sym___inline__] = ACTIONS(7874), - [anon_sym___forceinline] = ACTIONS(7874), - [anon_sym_thread_local] = ACTIONS(7874), - [anon_sym___thread] = ACTIONS(7874), - [anon_sym_const] = ACTIONS(7870), - [anon_sym_constexpr] = ACTIONS(7870), - [anon_sym_volatile] = ACTIONS(7870), - [anon_sym_restrict] = ACTIONS(7870), - [anon_sym___restrict__] = ACTIONS(7870), - [anon_sym__Atomic] = ACTIONS(7870), - [anon_sym__Noreturn] = ACTIONS(7870), - [anon_sym_noreturn] = ACTIONS(7870), - [anon_sym__Nonnull] = ACTIONS(7870), - [anon_sym_mutable] = ACTIONS(7870), - [anon_sym_constinit] = ACTIONS(7870), - [anon_sym_consteval] = ACTIONS(7870), - [anon_sym_alignas] = ACTIONS(7884), - [anon_sym__Alignas] = ACTIONS(7884), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), + [STATE(2333)] = { + [sym_type_qualifier] = STATE(2341), + [sym_alignas_qualifier] = STATE(2452), + [aux_sym__type_definition_type_repeat1] = STATE(2341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), + [anon_sym_COMMA] = ACTIONS(6754), + [anon_sym_LPAREN2] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6752), + [anon_sym_STAR] = ACTIONS(6752), + [anon_sym_SLASH] = ACTIONS(6752), + [anon_sym_PERCENT] = ACTIONS(6752), + [anon_sym_PIPE_PIPE] = ACTIONS(6754), + [anon_sym_AMP_AMP] = ACTIONS(6754), + [anon_sym_PIPE] = ACTIONS(6752), + [anon_sym_CARET] = ACTIONS(6752), + [anon_sym_AMP] = ACTIONS(6752), + [anon_sym_EQ_EQ] = ACTIONS(6754), + [anon_sym_BANG_EQ] = ACTIONS(6754), + [anon_sym_GT] = ACTIONS(6752), + [anon_sym_GT_EQ] = ACTIONS(6754), + [anon_sym_LT_EQ] = ACTIONS(6752), + [anon_sym_LT] = ACTIONS(6752), + [anon_sym_LT_LT] = ACTIONS(6752), + [anon_sym_GT_GT] = ACTIONS(6752), + [anon_sym___extension__] = ACTIONS(6717), + [anon_sym___attribute__] = ACTIONS(6754), + [anon_sym___attribute] = ACTIONS(6752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), + [anon_sym_LBRACK] = ACTIONS(6752), + [anon_sym_RBRACK] = ACTIONS(6754), + [anon_sym_EQ] = ACTIONS(6752), + [anon_sym_const] = ACTIONS(6725), + [anon_sym_constexpr] = ACTIONS(6717), + [anon_sym_volatile] = ACTIONS(6717), + [anon_sym_restrict] = ACTIONS(6717), + [anon_sym___restrict__] = ACTIONS(6717), + [anon_sym__Atomic] = ACTIONS(6717), + [anon_sym__Noreturn] = ACTIONS(6717), + [anon_sym_noreturn] = ACTIONS(6717), + [anon_sym__Nonnull] = ACTIONS(6717), + [anon_sym_mutable] = ACTIONS(6717), + [anon_sym_constinit] = ACTIONS(6717), + [anon_sym_consteval] = ACTIONS(6717), + [anon_sym_alignas] = ACTIONS(6727), + [anon_sym__Alignas] = ACTIONS(6727), + [anon_sym_QMARK] = ACTIONS(6754), + [anon_sym_STAR_EQ] = ACTIONS(6754), + [anon_sym_SLASH_EQ] = ACTIONS(6754), + [anon_sym_PERCENT_EQ] = ACTIONS(6754), + [anon_sym_PLUS_EQ] = ACTIONS(6754), + [anon_sym_DASH_EQ] = ACTIONS(6754), + [anon_sym_LT_LT_EQ] = ACTIONS(6754), + [anon_sym_GT_GT_EQ] = ACTIONS(6754), + [anon_sym_AMP_EQ] = ACTIONS(6754), + [anon_sym_CARET_EQ] = ACTIONS(6754), + [anon_sym_PIPE_EQ] = ACTIONS(6754), + [anon_sym_and_eq] = ACTIONS(6754), + [anon_sym_or_eq] = ACTIONS(6754), + [anon_sym_xor_eq] = ACTIONS(6754), + [anon_sym_LT_EQ_GT] = ACTIONS(6754), + [anon_sym_or] = ACTIONS(6752), + [anon_sym_and] = ACTIONS(6752), + [anon_sym_bitor] = ACTIONS(6754), + [anon_sym_xor] = ACTIONS(6752), + [anon_sym_bitand] = ACTIONS(6754), + [anon_sym_not_eq] = ACTIONS(6754), + [anon_sym_DASH_DASH] = ACTIONS(6754), + [anon_sym_PLUS_PLUS] = ACTIONS(6754), + [anon_sym_asm] = ACTIONS(6754), + [anon_sym___asm__] = ACTIONS(6754), + [anon_sym___asm] = ACTIONS(6752), + [anon_sym_DOT] = ACTIONS(6752), + [anon_sym_DOT_STAR] = ACTIONS(6754), + [anon_sym_DASH_GT] = ACTIONS(6754), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6754), + [anon_sym_override] = ACTIONS(6754), + [anon_sym_noexcept] = ACTIONS(6754), + [anon_sym_throw] = ACTIONS(6754), + [anon_sym_requires] = ACTIONS(6754), }, - [STATE(2417)] = { - [sym__declaration_modifiers] = STATE(5030), - [sym_attribute_specifier] = STATE(5030), - [sym_attribute_declaration] = STATE(5030), - [sym_ms_declspec_modifier] = STATE(5030), - [sym_ms_based_modifier] = STATE(11063), - [sym__declarator] = STATE(8957), - [sym_parenthesized_declarator] = STATE(8469), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_function_declarator] = STATE(8607), - [sym_array_declarator] = STATE(8469), - [sym_storage_class_specifier] = STATE(5030), - [sym_type_qualifier] = STATE(5030), - [sym_alignas_qualifier] = STATE(4644), - [sym_decltype] = STATE(10976), - [sym_explicit_function_specifier] = STATE(5030), - [sym_operator_cast] = STATE(9115), - [sym__constructor_specifiers] = STATE(5030), - [sym_reference_declarator] = STATE(8469), - [sym_structured_binding_declarator] = STATE(8469), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7746), - [sym_qualified_identifier] = STATE(8469), - [sym_qualified_operator_cast_identifier] = STATE(9115), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym_operator_cast_definition_repeat1] = STATE(5030), - [sym_identifier] = ACTIONS(7868), - [anon_sym_LPAREN2] = ACTIONS(3047), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym___extension__] = ACTIONS(7870), - [anon_sym_virtual] = ACTIONS(7872), - [anon_sym_extern] = ACTIONS(7874), - [anon_sym___attribute__] = ACTIONS(7876), - [anon_sym___attribute] = ACTIONS(7876), - [anon_sym_COLON_COLON] = ACTIONS(7878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7880), - [anon_sym___declspec] = ACTIONS(7882), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(7874), - [anon_sym_register] = ACTIONS(7874), - [anon_sym_inline] = ACTIONS(7874), - [anon_sym___inline] = ACTIONS(7874), - [anon_sym___inline__] = ACTIONS(7874), - [anon_sym___forceinline] = ACTIONS(7874), - [anon_sym_thread_local] = ACTIONS(7874), - [anon_sym___thread] = ACTIONS(7874), - [anon_sym_const] = ACTIONS(7870), - [anon_sym_constexpr] = ACTIONS(7870), - [anon_sym_volatile] = ACTIONS(7870), - [anon_sym_restrict] = ACTIONS(7870), - [anon_sym___restrict__] = ACTIONS(7870), - [anon_sym__Atomic] = ACTIONS(7870), - [anon_sym__Noreturn] = ACTIONS(7870), - [anon_sym_noreturn] = ACTIONS(7870), - [anon_sym__Nonnull] = ACTIONS(7870), - [anon_sym_mutable] = ACTIONS(7870), - [anon_sym_constinit] = ACTIONS(7870), - [anon_sym_consteval] = ACTIONS(7870), - [anon_sym_alignas] = ACTIONS(7884), - [anon_sym__Alignas] = ACTIONS(7884), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), + [STATE(2334)] = { + [sym__abstract_declarator] = STATE(4761), + [sym_abstract_parenthesized_declarator] = STATE(5063), + [sym_abstract_pointer_declarator] = STATE(5063), + [sym_abstract_function_declarator] = STATE(5063), + [sym_abstract_array_declarator] = STATE(5063), + [sym_type_qualifier] = STATE(2406), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1977), + [sym_abstract_reference_declarator] = STATE(5063), + [sym__function_declarator_seq] = STATE(5065), + [aux_sym__type_definition_type_repeat1] = STATE(2406), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), + [anon_sym_COMMA] = ACTIONS(7351), + [anon_sym_LPAREN2] = ACTIONS(7112), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_PLUS] = ACTIONS(7349), + [anon_sym_STAR] = ACTIONS(7114), + [anon_sym_SLASH] = ACTIONS(7349), + [anon_sym_PERCENT] = ACTIONS(7349), + [anon_sym_PIPE_PIPE] = ACTIONS(7351), + [anon_sym_AMP_AMP] = ACTIONS(7116), + [anon_sym_PIPE] = ACTIONS(7349), + [anon_sym_CARET] = ACTIONS(7349), + [anon_sym_AMP] = ACTIONS(7118), + [anon_sym_EQ_EQ] = ACTIONS(7351), + [anon_sym_BANG_EQ] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7349), + [anon_sym_GT_EQ] = ACTIONS(7351), + [anon_sym_LT_EQ] = ACTIONS(7349), + [anon_sym_LT] = ACTIONS(7349), + [anon_sym_LT_LT] = ACTIONS(7349), + [anon_sym_GT_GT] = ACTIONS(7349), + [anon_sym___extension__] = ACTIONS(7120), + [anon_sym_LBRACK] = ACTIONS(7128), + [anon_sym_RBRACK] = ACTIONS(7351), + [anon_sym_EQ] = ACTIONS(7349), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(7120), + [anon_sym_volatile] = ACTIONS(7120), + [anon_sym_restrict] = ACTIONS(7120), + [anon_sym___restrict__] = ACTIONS(7120), + [anon_sym__Atomic] = ACTIONS(7120), + [anon_sym__Noreturn] = ACTIONS(7120), + [anon_sym_noreturn] = ACTIONS(7120), + [anon_sym__Nonnull] = ACTIONS(7120), + [anon_sym_mutable] = ACTIONS(7120), + [anon_sym_constinit] = ACTIONS(7120), + [anon_sym_consteval] = ACTIONS(7120), + [anon_sym_alignas] = ACTIONS(7130), + [anon_sym__Alignas] = ACTIONS(7130), + [anon_sym_QMARK] = ACTIONS(7351), + [anon_sym_STAR_EQ] = ACTIONS(7351), + [anon_sym_SLASH_EQ] = ACTIONS(7351), + [anon_sym_PERCENT_EQ] = ACTIONS(7351), + [anon_sym_PLUS_EQ] = ACTIONS(7351), + [anon_sym_DASH_EQ] = ACTIONS(7351), + [anon_sym_LT_LT_EQ] = ACTIONS(7351), + [anon_sym_GT_GT_EQ] = ACTIONS(7351), + [anon_sym_AMP_EQ] = ACTIONS(7351), + [anon_sym_CARET_EQ] = ACTIONS(7351), + [anon_sym_PIPE_EQ] = ACTIONS(7351), + [anon_sym_and_eq] = ACTIONS(7351), + [anon_sym_or_eq] = ACTIONS(7351), + [anon_sym_xor_eq] = ACTIONS(7351), + [anon_sym_LT_EQ_GT] = ACTIONS(7351), + [anon_sym_or] = ACTIONS(7349), + [anon_sym_and] = ACTIONS(7349), + [anon_sym_bitor] = ACTIONS(7351), + [anon_sym_xor] = ACTIONS(7349), + [anon_sym_bitand] = ACTIONS(7351), + [anon_sym_not_eq] = ACTIONS(7351), + [anon_sym_DASH_DASH] = ACTIONS(7351), + [anon_sym_PLUS_PLUS] = ACTIONS(7351), + [anon_sym_DOT] = ACTIONS(7349), + [anon_sym_DOT_STAR] = ACTIONS(7351), + [anon_sym_DASH_GT] = ACTIONS(7351), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7351), + [anon_sym_override] = ACTIONS(7351), + [anon_sym_requires] = ACTIONS(7351), }, - [STATE(2418)] = { - [sym_attribute_specifier] = STATE(4003), - [sym_attribute_declaration] = STATE(4328), - [sym_gnu_asm_expression] = STATE(8980), - [sym_virtual_specifier] = STATE(4455), - [sym__function_exception_specification] = STATE(2828), - [sym__function_attributes_end] = STATE(4207), - [sym__function_postfix] = STATE(4846), - [sym_trailing_return_type] = STATE(4274), - [sym_noexcept] = STATE(2828), - [sym_throw_specifier] = STATE(2828), - [sym_requires_clause] = STATE(4846), - [aux_sym_type_definition_repeat1] = STATE(4003), - [aux_sym_attributed_declarator_repeat1] = STATE(4328), - [aux_sym__function_postfix_repeat1] = STATE(4455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_RPAREN] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym___attribute__] = ACTIONS(6282), - [anon_sym___attribute] = ACTIONS(6284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7627), - [anon_sym_or_eq] = ACTIONS(7627), - [anon_sym_xor_eq] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(7994), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6305), - [anon_sym_override] = ACTIONS(6305), - [anon_sym_noexcept] = ACTIONS(6298), - [anon_sym_throw] = ACTIONS(6300), - [anon_sym_requires] = ACTIONS(6307), - [anon_sym_DASH_GT_STAR] = ACTIONS(7627), + [STATE(2335)] = { + [sym__abstract_declarator] = STATE(4703), + [sym_abstract_parenthesized_declarator] = STATE(5063), + [sym_abstract_pointer_declarator] = STATE(5063), + [sym_abstract_function_declarator] = STATE(5063), + [sym_abstract_array_declarator] = STATE(5063), + [sym_type_qualifier] = STATE(2339), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1977), + [sym_abstract_reference_declarator] = STATE(5063), + [sym__function_declarator_seq] = STATE(5065), + [aux_sym__type_definition_type_repeat1] = STATE(2339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(7112), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(7114), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(7116), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(7118), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(7120), + [anon_sym_LBRACK] = ACTIONS(7128), + [anon_sym_RBRACK] = ACTIONS(7343), + [anon_sym_EQ] = ACTIONS(7341), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(7120), + [anon_sym_volatile] = ACTIONS(7120), + [anon_sym_restrict] = ACTIONS(7120), + [anon_sym___restrict__] = ACTIONS(7120), + [anon_sym__Atomic] = ACTIONS(7120), + [anon_sym__Noreturn] = ACTIONS(7120), + [anon_sym_noreturn] = ACTIONS(7120), + [anon_sym__Nonnull] = ACTIONS(7120), + [anon_sym_mutable] = ACTIONS(7120), + [anon_sym_constinit] = ACTIONS(7120), + [anon_sym_consteval] = ACTIONS(7120), + [anon_sym_alignas] = ACTIONS(7130), + [anon_sym__Alignas] = ACTIONS(7130), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_STAR_EQ] = ACTIONS(7343), + [anon_sym_SLASH_EQ] = ACTIONS(7343), + [anon_sym_PERCENT_EQ] = ACTIONS(7343), + [anon_sym_PLUS_EQ] = ACTIONS(7343), + [anon_sym_DASH_EQ] = ACTIONS(7343), + [anon_sym_LT_LT_EQ] = ACTIONS(7343), + [anon_sym_GT_GT_EQ] = ACTIONS(7343), + [anon_sym_AMP_EQ] = ACTIONS(7343), + [anon_sym_CARET_EQ] = ACTIONS(7343), + [anon_sym_PIPE_EQ] = ACTIONS(7343), + [anon_sym_and_eq] = ACTIONS(7343), + [anon_sym_or_eq] = ACTIONS(7343), + [anon_sym_xor_eq] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7343), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7343), + [anon_sym_override] = ACTIONS(7343), + [anon_sym_requires] = ACTIONS(7343), }, - [STATE(2419)] = { - [sym_attribute_specifier] = STATE(2419), - [aux_sym_type_definition_repeat1] = STATE(2419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6555), - [anon_sym_COMMA] = ACTIONS(6555), - [anon_sym_RPAREN] = ACTIONS(6555), - [anon_sym_LPAREN2] = ACTIONS(6555), - [anon_sym_DASH] = ACTIONS(6553), - [anon_sym_PLUS] = ACTIONS(6553), - [anon_sym_STAR] = ACTIONS(6553), - [anon_sym_SLASH] = ACTIONS(6553), - [anon_sym_PERCENT] = ACTIONS(6553), - [anon_sym_PIPE_PIPE] = ACTIONS(6555), - [anon_sym_AMP_AMP] = ACTIONS(6555), - [anon_sym_PIPE] = ACTIONS(6553), - [anon_sym_CARET] = ACTIONS(6553), - [anon_sym_AMP] = ACTIONS(6553), - [anon_sym_EQ_EQ] = ACTIONS(6555), - [anon_sym_BANG_EQ] = ACTIONS(6555), - [anon_sym_GT] = ACTIONS(6553), - [anon_sym_GT_EQ] = ACTIONS(6555), - [anon_sym_LT_EQ] = ACTIONS(6553), - [anon_sym_LT] = ACTIONS(6553), - [anon_sym_LT_LT] = ACTIONS(6553), - [anon_sym_GT_GT] = ACTIONS(6553), - [anon_sym___extension__] = ACTIONS(6555), - [anon_sym___attribute__] = ACTIONS(8012), - [anon_sym___attribute] = ACTIONS(8015), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6555), - [anon_sym_LBRACK] = ACTIONS(6553), - [anon_sym_EQ] = ACTIONS(6553), - [anon_sym_const] = ACTIONS(6553), - [anon_sym_constexpr] = ACTIONS(6555), - [anon_sym_volatile] = ACTIONS(6555), - [anon_sym_restrict] = ACTIONS(6555), - [anon_sym___restrict__] = ACTIONS(6555), - [anon_sym__Atomic] = ACTIONS(6555), - [anon_sym__Noreturn] = ACTIONS(6555), - [anon_sym_noreturn] = ACTIONS(6555), - [anon_sym__Nonnull] = ACTIONS(6555), - [anon_sym_mutable] = ACTIONS(6555), - [anon_sym_constinit] = ACTIONS(6555), - [anon_sym_consteval] = ACTIONS(6555), - [anon_sym_alignas] = ACTIONS(6555), - [anon_sym__Alignas] = ACTIONS(6555), - [anon_sym_QMARK] = ACTIONS(6555), - [anon_sym_STAR_EQ] = ACTIONS(6555), - [anon_sym_SLASH_EQ] = ACTIONS(6555), - [anon_sym_PERCENT_EQ] = ACTIONS(6555), - [anon_sym_PLUS_EQ] = ACTIONS(6555), - [anon_sym_DASH_EQ] = ACTIONS(6555), - [anon_sym_LT_LT_EQ] = ACTIONS(6555), - [anon_sym_GT_GT_EQ] = ACTIONS(6555), - [anon_sym_AMP_EQ] = ACTIONS(6555), - [anon_sym_CARET_EQ] = ACTIONS(6555), - [anon_sym_PIPE_EQ] = ACTIONS(6555), - [anon_sym_LT_EQ_GT] = ACTIONS(6555), - [anon_sym_or] = ACTIONS(6555), - [anon_sym_and] = ACTIONS(6555), - [anon_sym_bitor] = ACTIONS(6555), - [anon_sym_xor] = ACTIONS(6555), - [anon_sym_bitand] = ACTIONS(6555), - [anon_sym_not_eq] = ACTIONS(6555), - [anon_sym_DASH_DASH] = ACTIONS(6555), - [anon_sym_PLUS_PLUS] = ACTIONS(6555), - [anon_sym_asm] = ACTIONS(6555), - [anon_sym___asm__] = ACTIONS(6555), - [anon_sym___asm] = ACTIONS(6553), - [anon_sym_DOT] = ACTIONS(6553), - [anon_sym_DOT_STAR] = ACTIONS(6555), - [anon_sym_DASH_GT] = ACTIONS(6553), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6555), - [anon_sym_override] = ACTIONS(6555), - [anon_sym_noexcept] = ACTIONS(6555), - [anon_sym_throw] = ACTIONS(6555), - [anon_sym_requires] = ACTIONS(6555), - [anon_sym_DASH_GT_STAR] = ACTIONS(6555), + [STATE(2336)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6634), + [anon_sym_COMMA] = ACTIONS(6634), + [anon_sym_RPAREN] = ACTIONS(6634), + [anon_sym_LPAREN2] = ACTIONS(6634), + [anon_sym_DASH] = ACTIONS(6632), + [anon_sym_PLUS] = ACTIONS(6632), + [anon_sym_STAR] = ACTIONS(6632), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_PERCENT] = ACTIONS(6632), + [anon_sym_PIPE_PIPE] = ACTIONS(6634), + [anon_sym_AMP_AMP] = ACTIONS(6634), + [anon_sym_PIPE] = ACTIONS(6632), + [anon_sym_CARET] = ACTIONS(6632), + [anon_sym_AMP] = ACTIONS(6632), + [anon_sym_EQ_EQ] = ACTIONS(6634), + [anon_sym_BANG_EQ] = ACTIONS(6634), + [anon_sym_GT] = ACTIONS(6632), + [anon_sym_GT_EQ] = ACTIONS(6634), + [anon_sym_LT_EQ] = ACTIONS(6632), + [anon_sym_LT] = ACTIONS(6632), + [anon_sym_LT_LT] = ACTIONS(6632), + [anon_sym_GT_GT] = ACTIONS(6632), + [anon_sym_SEMI] = ACTIONS(6634), + [anon_sym___extension__] = ACTIONS(6634), + [anon_sym___attribute__] = ACTIONS(6634), + [anon_sym___attribute] = ACTIONS(6632), + [anon_sym_COLON] = ACTIONS(6632), + [anon_sym_COLON_COLON] = ACTIONS(6634), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6634), + [anon_sym_LBRACE] = ACTIONS(6634), + [anon_sym_LBRACK] = ACTIONS(6632), + [anon_sym_EQ] = ACTIONS(6632), + [anon_sym_const] = ACTIONS(6632), + [anon_sym_constexpr] = ACTIONS(6634), + [anon_sym_volatile] = ACTIONS(6634), + [anon_sym_restrict] = ACTIONS(6634), + [anon_sym___restrict__] = ACTIONS(6634), + [anon_sym__Atomic] = ACTIONS(6634), + [anon_sym__Noreturn] = ACTIONS(6634), + [anon_sym_noreturn] = ACTIONS(6634), + [anon_sym__Nonnull] = ACTIONS(6634), + [anon_sym_mutable] = ACTIONS(6634), + [anon_sym_constinit] = ACTIONS(6634), + [anon_sym_consteval] = ACTIONS(6634), + [anon_sym_alignas] = ACTIONS(6634), + [anon_sym__Alignas] = ACTIONS(6634), + [anon_sym_QMARK] = ACTIONS(6634), + [anon_sym_STAR_EQ] = ACTIONS(6634), + [anon_sym_SLASH_EQ] = ACTIONS(6634), + [anon_sym_PERCENT_EQ] = ACTIONS(6634), + [anon_sym_PLUS_EQ] = ACTIONS(6634), + [anon_sym_DASH_EQ] = ACTIONS(6634), + [anon_sym_LT_LT_EQ] = ACTIONS(6634), + [anon_sym_GT_GT_EQ] = ACTIONS(6634), + [anon_sym_AMP_EQ] = ACTIONS(6634), + [anon_sym_CARET_EQ] = ACTIONS(6634), + [anon_sym_PIPE_EQ] = ACTIONS(6634), + [anon_sym_and_eq] = ACTIONS(6634), + [anon_sym_or_eq] = ACTIONS(6634), + [anon_sym_xor_eq] = ACTIONS(6634), + [anon_sym_LT_EQ_GT] = ACTIONS(6634), + [anon_sym_or] = ACTIONS(6632), + [anon_sym_and] = ACTIONS(6632), + [anon_sym_bitor] = ACTIONS(6634), + [anon_sym_xor] = ACTIONS(6632), + [anon_sym_bitand] = ACTIONS(6634), + [anon_sym_not_eq] = ACTIONS(6634), + [anon_sym_DASH_DASH] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_asm] = ACTIONS(6634), + [anon_sym___asm__] = ACTIONS(6634), + [anon_sym___asm] = ACTIONS(6632), + [anon_sym_DOT] = ACTIONS(6632), + [anon_sym_DOT_STAR] = ACTIONS(6634), + [anon_sym_DASH_GT] = ACTIONS(6632), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6634), + [anon_sym_decltype] = ACTIONS(6634), + [anon_sym_try] = ACTIONS(6634), + [anon_sym_DASH_GT_STAR] = ACTIONS(6634), }, - [STATE(2420)] = { - [sym_string_literal] = STATE(2486), - [sym_template_argument_list] = STATE(3611), - [sym_raw_string_literal] = STATE(2486), - [sym_identifier] = ACTIONS(5260), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_RPAREN] = ACTIONS(5253), - [aux_sym_preproc_if_token2] = ACTIONS(5253), - [aux_sym_preproc_else_token1] = ACTIONS(5253), - [aux_sym_preproc_elif_token1] = ACTIONS(5260), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5253), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(8018), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym_COLON] = ACTIONS(5260), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5253), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_RBRACE] = ACTIONS(5253), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(5260), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5253), - [anon_sym_SLASH_EQ] = ACTIONS(5253), - [anon_sym_PERCENT_EQ] = ACTIONS(5253), - [anon_sym_PLUS_EQ] = ACTIONS(5253), - [anon_sym_DASH_EQ] = ACTIONS(5253), - [anon_sym_LT_LT_EQ] = ACTIONS(5253), - [anon_sym_GT_GT_EQ] = ACTIONS(5253), - [anon_sym_AMP_EQ] = ACTIONS(5253), - [anon_sym_CARET_EQ] = ACTIONS(5253), - [anon_sym_PIPE_EQ] = ACTIONS(5253), - [anon_sym_and_eq] = ACTIONS(5260), - [anon_sym_or_eq] = ACTIONS(5260), - [anon_sym_xor_eq] = ACTIONS(5260), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5260), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5260), - [anon_sym_not_eq] = ACTIONS(5260), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_COLON_RBRACK] = ACTIONS(5253), + [STATE(2337)] = { + [sym_type_qualifier] = STATE(2341), + [sym_alignas_qualifier] = STATE(2452), + [aux_sym__type_definition_type_repeat1] = STATE(2341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6901), + [anon_sym_COMMA] = ACTIONS(6901), + [anon_sym_LPAREN2] = ACTIONS(6901), + [anon_sym_DASH] = ACTIONS(6899), + [anon_sym_PLUS] = ACTIONS(6899), + [anon_sym_STAR] = ACTIONS(6899), + [anon_sym_SLASH] = ACTIONS(6899), + [anon_sym_PERCENT] = ACTIONS(6899), + [anon_sym_PIPE_PIPE] = ACTIONS(6901), + [anon_sym_AMP_AMP] = ACTIONS(6901), + [anon_sym_PIPE] = ACTIONS(6899), + [anon_sym_CARET] = ACTIONS(6899), + [anon_sym_AMP] = ACTIONS(6899), + [anon_sym_EQ_EQ] = ACTIONS(6901), + [anon_sym_BANG_EQ] = ACTIONS(6901), + [anon_sym_GT] = ACTIONS(6899), + [anon_sym_GT_EQ] = ACTIONS(6901), + [anon_sym_LT_EQ] = ACTIONS(6899), + [anon_sym_LT] = ACTIONS(6899), + [anon_sym_LT_LT] = ACTIONS(6899), + [anon_sym_GT_GT] = ACTIONS(6899), + [anon_sym___extension__] = ACTIONS(6717), + [anon_sym___attribute__] = ACTIONS(6901), + [anon_sym___attribute] = ACTIONS(6899), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6901), + [anon_sym_LBRACK] = ACTIONS(6899), + [anon_sym_RBRACK] = ACTIONS(6901), + [anon_sym_EQ] = ACTIONS(6899), + [anon_sym_const] = ACTIONS(6725), + [anon_sym_constexpr] = ACTIONS(6717), + [anon_sym_volatile] = ACTIONS(6717), + [anon_sym_restrict] = ACTIONS(6717), + [anon_sym___restrict__] = ACTIONS(6717), + [anon_sym__Atomic] = ACTIONS(6717), + [anon_sym__Noreturn] = ACTIONS(6717), + [anon_sym_noreturn] = ACTIONS(6717), + [anon_sym__Nonnull] = ACTIONS(6717), + [anon_sym_mutable] = ACTIONS(6717), + [anon_sym_constinit] = ACTIONS(6717), + [anon_sym_consteval] = ACTIONS(6717), + [anon_sym_alignas] = ACTIONS(6727), + [anon_sym__Alignas] = ACTIONS(6727), + [anon_sym_QMARK] = ACTIONS(6901), + [anon_sym_STAR_EQ] = ACTIONS(6901), + [anon_sym_SLASH_EQ] = ACTIONS(6901), + [anon_sym_PERCENT_EQ] = ACTIONS(6901), + [anon_sym_PLUS_EQ] = ACTIONS(6901), + [anon_sym_DASH_EQ] = ACTIONS(6901), + [anon_sym_LT_LT_EQ] = ACTIONS(6901), + [anon_sym_GT_GT_EQ] = ACTIONS(6901), + [anon_sym_AMP_EQ] = ACTIONS(6901), + [anon_sym_CARET_EQ] = ACTIONS(6901), + [anon_sym_PIPE_EQ] = ACTIONS(6901), + [anon_sym_and_eq] = ACTIONS(6901), + [anon_sym_or_eq] = ACTIONS(6901), + [anon_sym_xor_eq] = ACTIONS(6901), + [anon_sym_LT_EQ_GT] = ACTIONS(6901), + [anon_sym_or] = ACTIONS(6899), + [anon_sym_and] = ACTIONS(6899), + [anon_sym_bitor] = ACTIONS(6901), + [anon_sym_xor] = ACTIONS(6899), + [anon_sym_bitand] = ACTIONS(6901), + [anon_sym_not_eq] = ACTIONS(6901), + [anon_sym_DASH_DASH] = ACTIONS(6901), + [anon_sym_PLUS_PLUS] = ACTIONS(6901), + [anon_sym_asm] = ACTIONS(6901), + [anon_sym___asm__] = ACTIONS(6901), + [anon_sym___asm] = ACTIONS(6899), + [anon_sym_DOT] = ACTIONS(6899), + [anon_sym_DOT_STAR] = ACTIONS(6901), + [anon_sym_DASH_GT] = ACTIONS(6901), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6901), + [anon_sym_override] = ACTIONS(6901), + [anon_sym_noexcept] = ACTIONS(6901), + [anon_sym_throw] = ACTIONS(6901), + [anon_sym_requires] = ACTIONS(6901), }, - [STATE(2421)] = { - [sym_type_qualifier] = STATE(2375), - [sym_alignas_qualifier] = STATE(2559), - [aux_sym__type_definition_type_repeat1] = STATE(2375), - [sym_identifier] = ACTIONS(6388), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), - [anon_sym_COMMA] = ACTIONS(6390), - [anon_sym_RPAREN] = ACTIONS(6390), - [aux_sym_preproc_if_token2] = ACTIONS(6390), - [aux_sym_preproc_else_token1] = ACTIONS(6390), - [aux_sym_preproc_elif_token1] = ACTIONS(6388), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6390), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6390), - [anon_sym_LPAREN2] = ACTIONS(6390), - [anon_sym_DASH] = ACTIONS(6388), - [anon_sym_PLUS] = ACTIONS(6388), - [anon_sym_STAR] = ACTIONS(6390), - [anon_sym_SLASH] = ACTIONS(6388), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_PIPE_PIPE] = ACTIONS(6390), - [anon_sym_AMP_AMP] = ACTIONS(6390), - [anon_sym_PIPE] = ACTIONS(6388), - [anon_sym_CARET] = ACTIONS(6390), - [anon_sym_AMP] = ACTIONS(6388), - [anon_sym_EQ_EQ] = ACTIONS(6390), - [anon_sym_BANG_EQ] = ACTIONS(6390), - [anon_sym_GT] = ACTIONS(6388), - [anon_sym_GT_EQ] = ACTIONS(6390), - [anon_sym_LT_EQ] = ACTIONS(6388), - [anon_sym_LT] = ACTIONS(6388), - [anon_sym_LT_LT] = ACTIONS(6390), - [anon_sym_GT_GT] = ACTIONS(6390), - [anon_sym_SEMI] = ACTIONS(6390), - [anon_sym___extension__] = ACTIONS(6857), - [anon_sym___attribute__] = ACTIONS(6388), - [anon_sym___attribute] = ACTIONS(6388), - [anon_sym_COLON] = ACTIONS(6388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6390), - [anon_sym_RBRACE] = ACTIONS(6390), - [anon_sym_LBRACK] = ACTIONS(6388), - [anon_sym_const] = ACTIONS(6857), - [anon_sym_constexpr] = ACTIONS(6857), - [anon_sym_volatile] = ACTIONS(6857), - [anon_sym_restrict] = ACTIONS(6857), - [anon_sym___restrict__] = ACTIONS(6857), - [anon_sym__Atomic] = ACTIONS(6857), - [anon_sym__Noreturn] = ACTIONS(6857), - [anon_sym_noreturn] = ACTIONS(6857), - [anon_sym__Nonnull] = ACTIONS(6857), - [anon_sym_mutable] = ACTIONS(6857), - [anon_sym_constinit] = ACTIONS(6857), - [anon_sym_consteval] = ACTIONS(6857), - [anon_sym_alignas] = ACTIONS(6863), - [anon_sym__Alignas] = ACTIONS(6863), - [anon_sym_QMARK] = ACTIONS(6390), - [anon_sym_LT_EQ_GT] = ACTIONS(6390), - [anon_sym_or] = ACTIONS(6388), - [anon_sym_and] = ACTIONS(6388), - [anon_sym_bitor] = ACTIONS(6388), - [anon_sym_xor] = ACTIONS(6388), - [anon_sym_bitand] = ACTIONS(6388), - [anon_sym_not_eq] = ACTIONS(6388), - [anon_sym_DASH_DASH] = ACTIONS(6390), - [anon_sym_PLUS_PLUS] = ACTIONS(6390), - [anon_sym_asm] = ACTIONS(6388), - [anon_sym___asm__] = ACTIONS(6388), - [anon_sym___asm] = ACTIONS(6388), - [anon_sym_DOT] = ACTIONS(6388), - [anon_sym_DOT_STAR] = ACTIONS(6390), - [anon_sym_DASH_GT] = ACTIONS(6390), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6388), - [anon_sym_override] = ACTIONS(6388), - [anon_sym_noexcept] = ACTIONS(6388), - [anon_sym_throw] = ACTIONS(6388), - [anon_sym_requires] = ACTIONS(6388), - [anon_sym_COLON_RBRACK] = ACTIONS(6390), + [STATE(2338)] = { + [sym__abstract_declarator] = STATE(4680), + [sym_abstract_parenthesized_declarator] = STATE(5063), + [sym_abstract_pointer_declarator] = STATE(5063), + [sym_abstract_function_declarator] = STATE(5063), + [sym_abstract_array_declarator] = STATE(5063), + [sym_type_qualifier] = STATE(2406), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1977), + [sym_abstract_reference_declarator] = STATE(5063), + [sym__function_declarator_seq] = STATE(5065), + [aux_sym__type_definition_type_repeat1] = STATE(2406), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(7112), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(7114), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(7116), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(7118), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(7120), + [anon_sym_LBRACK] = ACTIONS(7128), + [anon_sym_RBRACK] = ACTIONS(6823), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(7120), + [anon_sym_volatile] = ACTIONS(7120), + [anon_sym_restrict] = ACTIONS(7120), + [anon_sym___restrict__] = ACTIONS(7120), + [anon_sym__Atomic] = ACTIONS(7120), + [anon_sym__Noreturn] = ACTIONS(7120), + [anon_sym_noreturn] = ACTIONS(7120), + [anon_sym__Nonnull] = ACTIONS(7120), + [anon_sym_mutable] = ACTIONS(7120), + [anon_sym_constinit] = ACTIONS(7120), + [anon_sym_consteval] = ACTIONS(7120), + [anon_sym_alignas] = ACTIONS(7130), + [anon_sym__Alignas] = ACTIONS(7130), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6823), + [anon_sym_or_eq] = ACTIONS(6823), + [anon_sym_xor_eq] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6823), + [anon_sym_override] = ACTIONS(6823), + [anon_sym_requires] = ACTIONS(6823), }, - [STATE(2422)] = { - [sym__abstract_declarator] = STATE(5289), - [sym_abstract_parenthesized_declarator] = STATE(4956), - [sym_abstract_pointer_declarator] = STATE(4956), - [sym_abstract_function_declarator] = STATE(4956), - [sym_abstract_array_declarator] = STATE(4956), - [sym_type_qualifier] = STATE(2186), - [sym_alignas_qualifier] = STATE(2295), - [sym_parameter_list] = STATE(1875), - [sym_abstract_reference_declarator] = STATE(4956), - [sym__function_declarator_seq] = STATE(4970), - [aux_sym__type_definition_type_repeat1] = STATE(2186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6724), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(7025), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(7027), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(7029), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6495), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym___extension__] = ACTIONS(6732), - [anon_sym_LBRACK] = ACTIONS(6740), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6742), - [anon_sym_constexpr] = ACTIONS(6732), - [anon_sym_volatile] = ACTIONS(6732), - [anon_sym_restrict] = ACTIONS(6732), - [anon_sym___restrict__] = ACTIONS(6732), - [anon_sym__Atomic] = ACTIONS(6732), - [anon_sym__Noreturn] = ACTIONS(6732), - [anon_sym_noreturn] = ACTIONS(6732), - [anon_sym__Nonnull] = ACTIONS(6732), - [anon_sym_mutable] = ACTIONS(6732), - [anon_sym_constinit] = ACTIONS(6732), - [anon_sym_consteval] = ACTIONS(6732), - [anon_sym_alignas] = ACTIONS(6744), - [anon_sym__Alignas] = ACTIONS(6744), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6495), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_and_eq] = ACTIONS(6497), - [anon_sym_or_eq] = ACTIONS(6497), - [anon_sym_xor_eq] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(6497), + [STATE(2339)] = { + [sym__abstract_declarator] = STATE(4732), + [sym_abstract_parenthesized_declarator] = STATE(5063), + [sym_abstract_pointer_declarator] = STATE(5063), + [sym_abstract_function_declarator] = STATE(5063), + [sym_abstract_array_declarator] = STATE(5063), + [sym_type_qualifier] = STATE(2406), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1977), + [sym_abstract_reference_declarator] = STATE(5063), + [sym__function_declarator_seq] = STATE(5065), + [aux_sym__type_definition_type_repeat1] = STATE(2406), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), + [anon_sym_COMMA] = ACTIONS(7355), + [anon_sym_LPAREN2] = ACTIONS(7112), + [anon_sym_DASH] = ACTIONS(7353), + [anon_sym_PLUS] = ACTIONS(7353), + [anon_sym_STAR] = ACTIONS(7114), + [anon_sym_SLASH] = ACTIONS(7353), + [anon_sym_PERCENT] = ACTIONS(7353), + [anon_sym_PIPE_PIPE] = ACTIONS(7355), + [anon_sym_AMP_AMP] = ACTIONS(7116), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_CARET] = ACTIONS(7353), + [anon_sym_AMP] = ACTIONS(7118), + [anon_sym_EQ_EQ] = ACTIONS(7355), + [anon_sym_BANG_EQ] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_EQ] = ACTIONS(7355), + [anon_sym_LT_EQ] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_LT_LT] = ACTIONS(7353), + [anon_sym_GT_GT] = ACTIONS(7353), + [anon_sym___extension__] = ACTIONS(7120), + [anon_sym_LBRACK] = ACTIONS(7128), + [anon_sym_RBRACK] = ACTIONS(7355), + [anon_sym_EQ] = ACTIONS(7353), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(7120), + [anon_sym_volatile] = ACTIONS(7120), + [anon_sym_restrict] = ACTIONS(7120), + [anon_sym___restrict__] = ACTIONS(7120), + [anon_sym__Atomic] = ACTIONS(7120), + [anon_sym__Noreturn] = ACTIONS(7120), + [anon_sym_noreturn] = ACTIONS(7120), + [anon_sym__Nonnull] = ACTIONS(7120), + [anon_sym_mutable] = ACTIONS(7120), + [anon_sym_constinit] = ACTIONS(7120), + [anon_sym_consteval] = ACTIONS(7120), + [anon_sym_alignas] = ACTIONS(7130), + [anon_sym__Alignas] = ACTIONS(7130), + [anon_sym_QMARK] = ACTIONS(7355), + [anon_sym_STAR_EQ] = ACTIONS(7355), + [anon_sym_SLASH_EQ] = ACTIONS(7355), + [anon_sym_PERCENT_EQ] = ACTIONS(7355), + [anon_sym_PLUS_EQ] = ACTIONS(7355), + [anon_sym_DASH_EQ] = ACTIONS(7355), + [anon_sym_LT_LT_EQ] = ACTIONS(7355), + [anon_sym_GT_GT_EQ] = ACTIONS(7355), + [anon_sym_AMP_EQ] = ACTIONS(7355), + [anon_sym_CARET_EQ] = ACTIONS(7355), + [anon_sym_PIPE_EQ] = ACTIONS(7355), + [anon_sym_and_eq] = ACTIONS(7355), + [anon_sym_or_eq] = ACTIONS(7355), + [anon_sym_xor_eq] = ACTIONS(7355), + [anon_sym_LT_EQ_GT] = ACTIONS(7355), + [anon_sym_or] = ACTIONS(7353), + [anon_sym_and] = ACTIONS(7353), + [anon_sym_bitor] = ACTIONS(7355), + [anon_sym_xor] = ACTIONS(7353), + [anon_sym_bitand] = ACTIONS(7355), + [anon_sym_not_eq] = ACTIONS(7355), + [anon_sym_DASH_DASH] = ACTIONS(7355), + [anon_sym_PLUS_PLUS] = ACTIONS(7355), + [anon_sym_DOT] = ACTIONS(7353), + [anon_sym_DOT_STAR] = ACTIONS(7355), + [anon_sym_DASH_GT] = ACTIONS(7355), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7355), + [anon_sym_override] = ACTIONS(7355), + [anon_sym_requires] = ACTIONS(7355), }, - [STATE(2423)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2792), - [sym_ms_pointer_modifier] = STATE(2423), - [aux_sym_pointer_declarator_repeat1] = STATE(2423), - [sym_identifier] = ACTIONS(6600), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6602), - [anon_sym_COMMA] = ACTIONS(6602), - [anon_sym_RPAREN] = ACTIONS(6602), - [aux_sym_preproc_if_token2] = ACTIONS(6602), - [aux_sym_preproc_else_token1] = ACTIONS(6602), - [aux_sym_preproc_elif_token1] = ACTIONS(6600), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6602), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6602), - [anon_sym_LPAREN2] = ACTIONS(6602), - [anon_sym_DASH] = ACTIONS(6600), - [anon_sym_PLUS] = ACTIONS(6600), - [anon_sym_STAR] = ACTIONS(6602), - [anon_sym_SLASH] = ACTIONS(6600), - [anon_sym_PERCENT] = ACTIONS(6602), - [anon_sym_PIPE_PIPE] = ACTIONS(6602), - [anon_sym_AMP_AMP] = ACTIONS(6602), - [anon_sym_PIPE] = ACTIONS(6600), - [anon_sym_CARET] = ACTIONS(6602), - [anon_sym_AMP] = ACTIONS(6600), - [anon_sym_EQ_EQ] = ACTIONS(6602), - [anon_sym_BANG_EQ] = ACTIONS(6602), - [anon_sym_GT] = ACTIONS(6600), - [anon_sym_GT_EQ] = ACTIONS(6602), - [anon_sym_LT_EQ] = ACTIONS(6600), - [anon_sym_LT] = ACTIONS(6600), - [anon_sym_LT_LT] = ACTIONS(6602), - [anon_sym_GT_GT] = ACTIONS(6602), - [anon_sym_SEMI] = ACTIONS(6602), - [anon_sym___extension__] = ACTIONS(6600), - [anon_sym___attribute__] = ACTIONS(6600), - [anon_sym___attribute] = ACTIONS(6600), - [anon_sym_COLON] = ACTIONS(6600), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6602), - [sym_ms_restrict_modifier] = ACTIONS(8021), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8021), - [sym_ms_signed_ptr_modifier] = ACTIONS(8021), - [anon_sym__unaligned] = ACTIONS(8024), - [anon_sym___unaligned] = ACTIONS(8024), - [anon_sym_RBRACE] = ACTIONS(6602), - [anon_sym_LBRACK] = ACTIONS(6602), - [anon_sym_const] = ACTIONS(6600), - [anon_sym_constexpr] = ACTIONS(6600), - [anon_sym_volatile] = ACTIONS(6600), - [anon_sym_restrict] = ACTIONS(6600), - [anon_sym___restrict__] = ACTIONS(6600), - [anon_sym__Atomic] = ACTIONS(6600), - [anon_sym__Noreturn] = ACTIONS(6600), - [anon_sym_noreturn] = ACTIONS(6600), - [anon_sym__Nonnull] = ACTIONS(6600), - [anon_sym_mutable] = ACTIONS(6600), - [anon_sym_constinit] = ACTIONS(6600), - [anon_sym_consteval] = ACTIONS(6600), - [anon_sym_alignas] = ACTIONS(6600), - [anon_sym__Alignas] = ACTIONS(6600), - [anon_sym_QMARK] = ACTIONS(6602), - [anon_sym_LT_EQ_GT] = ACTIONS(6602), - [anon_sym_or] = ACTIONS(6600), - [anon_sym_and] = ACTIONS(6600), - [anon_sym_bitor] = ACTIONS(6600), - [anon_sym_xor] = ACTIONS(6600), - [anon_sym_bitand] = ACTIONS(6600), - [anon_sym_not_eq] = ACTIONS(6600), - [anon_sym_DASH_DASH] = ACTIONS(6602), - [anon_sym_PLUS_PLUS] = ACTIONS(6602), - [anon_sym_DOT] = ACTIONS(6600), - [anon_sym_DOT_STAR] = ACTIONS(6602), - [anon_sym_DASH_GT] = ACTIONS(6602), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6600), - [anon_sym_override] = ACTIONS(6600), - [anon_sym_requires] = ACTIONS(6600), - [anon_sym_COLON_RBRACK] = ACTIONS(6602), + [STATE(2340)] = { + [sym__abstract_declarator] = STATE(4682), + [sym_abstract_parenthesized_declarator] = STATE(5063), + [sym_abstract_pointer_declarator] = STATE(5063), + [sym_abstract_function_declarator] = STATE(5063), + [sym_abstract_array_declarator] = STATE(5063), + [sym_type_qualifier] = STATE(2406), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1977), + [sym_abstract_reference_declarator] = STATE(5063), + [sym__function_declarator_seq] = STATE(5065), + [aux_sym__type_definition_type_repeat1] = STATE(2406), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(7112), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(7114), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7347), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(7116), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7347), + [anon_sym_AMP] = ACTIONS(7118), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7347), + [anon_sym_GT_GT] = ACTIONS(7347), + [anon_sym___extension__] = ACTIONS(7120), + [anon_sym_LBRACK] = ACTIONS(7128), + [anon_sym_RBRACK] = ACTIONS(7345), + [anon_sym_EQ] = ACTIONS(7347), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(7120), + [anon_sym_volatile] = ACTIONS(7120), + [anon_sym_restrict] = ACTIONS(7120), + [anon_sym___restrict__] = ACTIONS(7120), + [anon_sym__Atomic] = ACTIONS(7120), + [anon_sym__Noreturn] = ACTIONS(7120), + [anon_sym_noreturn] = ACTIONS(7120), + [anon_sym__Nonnull] = ACTIONS(7120), + [anon_sym_mutable] = ACTIONS(7120), + [anon_sym_constinit] = ACTIONS(7120), + [anon_sym_consteval] = ACTIONS(7120), + [anon_sym_alignas] = ACTIONS(7130), + [anon_sym__Alignas] = ACTIONS(7130), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_STAR_EQ] = ACTIONS(7345), + [anon_sym_SLASH_EQ] = ACTIONS(7345), + [anon_sym_PERCENT_EQ] = ACTIONS(7345), + [anon_sym_PLUS_EQ] = ACTIONS(7345), + [anon_sym_DASH_EQ] = ACTIONS(7345), + [anon_sym_LT_LT_EQ] = ACTIONS(7345), + [anon_sym_GT_GT_EQ] = ACTIONS(7345), + [anon_sym_AMP_EQ] = ACTIONS(7345), + [anon_sym_CARET_EQ] = ACTIONS(7345), + [anon_sym_PIPE_EQ] = ACTIONS(7345), + [anon_sym_and_eq] = ACTIONS(7345), + [anon_sym_or_eq] = ACTIONS(7345), + [anon_sym_xor_eq] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7347), + [anon_sym_and] = ACTIONS(7347), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7347), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7345), + [anon_sym_override] = ACTIONS(7345), + [anon_sym_requires] = ACTIONS(7345), }, - [STATE(2424)] = { - [sym_catch_clause] = STATE(2424), - [aux_sym_constructor_try_statement_repeat1] = STATE(2424), - [sym_identifier] = ACTIONS(3137), - [aux_sym_preproc_def_token1] = ACTIONS(3137), - [aux_sym_preproc_if_token1] = ACTIONS(3137), - [aux_sym_preproc_if_token2] = ACTIONS(3137), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3137), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3137), - [aux_sym_preproc_else_token1] = ACTIONS(3137), - [aux_sym_preproc_elif_token1] = ACTIONS(3137), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3137), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3137), - [sym_preproc_directive] = ACTIONS(3137), - [anon_sym_LPAREN2] = ACTIONS(3139), - [anon_sym_TILDE] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3139), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym___extension__] = ACTIONS(3137), - [anon_sym_typedef] = ACTIONS(3137), - [anon_sym_virtual] = ACTIONS(3137), - [anon_sym_extern] = ACTIONS(3137), - [anon_sym___attribute__] = ACTIONS(3137), - [anon_sym___attribute] = ACTIONS(3137), - [anon_sym_using] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3139), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3139), - [anon_sym___declspec] = ACTIONS(3137), - [anon_sym___based] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3137), - [anon_sym_unsigned] = ACTIONS(3137), - [anon_sym_long] = ACTIONS(3137), - [anon_sym_short] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_static] = ACTIONS(3137), - [anon_sym_register] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym___inline] = ACTIONS(3137), - [anon_sym___inline__] = ACTIONS(3137), - [anon_sym___forceinline] = ACTIONS(3137), - [anon_sym_thread_local] = ACTIONS(3137), - [anon_sym___thread] = ACTIONS(3137), - [anon_sym_const] = ACTIONS(3137), - [anon_sym_constexpr] = ACTIONS(3137), - [anon_sym_volatile] = ACTIONS(3137), - [anon_sym_restrict] = ACTIONS(3137), - [anon_sym___restrict__] = ACTIONS(3137), - [anon_sym__Atomic] = ACTIONS(3137), - [anon_sym__Noreturn] = ACTIONS(3137), - [anon_sym_noreturn] = ACTIONS(3137), - [anon_sym__Nonnull] = ACTIONS(3137), - [anon_sym_mutable] = ACTIONS(3137), - [anon_sym_constinit] = ACTIONS(3137), - [anon_sym_consteval] = ACTIONS(3137), - [anon_sym_alignas] = ACTIONS(3137), - [anon_sym__Alignas] = ACTIONS(3137), - [sym_primitive_type] = ACTIONS(3137), - [anon_sym_enum] = ACTIONS(3137), - [anon_sym_class] = ACTIONS(3137), - [anon_sym_struct] = ACTIONS(3137), - [anon_sym_union] = ACTIONS(3137), - [anon_sym_typename] = ACTIONS(3137), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3137), - [anon_sym_decltype] = ACTIONS(3137), - [anon_sym_explicit] = ACTIONS(3137), - [anon_sym_private] = ACTIONS(3137), - [anon_sym_template] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_friend] = ACTIONS(3137), - [anon_sym_public] = ACTIONS(3137), - [anon_sym_protected] = ACTIONS(3137), - [anon_sym_static_assert] = ACTIONS(3137), - [anon_sym_catch] = ACTIONS(8027), - [anon_sym_LBRACK_COLON] = ACTIONS(3139), + [STATE(2341)] = { + [sym_type_qualifier] = STATE(2341), + [sym_alignas_qualifier] = STATE(2452), + [aux_sym__type_definition_type_repeat1] = STATE(2341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), + [anon_sym_COMMA] = ACTIONS(6891), + [anon_sym_LPAREN2] = ACTIONS(6891), + [anon_sym_DASH] = ACTIONS(6889), + [anon_sym_PLUS] = ACTIONS(6889), + [anon_sym_STAR] = ACTIONS(6889), + [anon_sym_SLASH] = ACTIONS(6889), + [anon_sym_PERCENT] = ACTIONS(6889), + [anon_sym_PIPE_PIPE] = ACTIONS(6891), + [anon_sym_AMP_AMP] = ACTIONS(6891), + [anon_sym_PIPE] = ACTIONS(6889), + [anon_sym_CARET] = ACTIONS(6889), + [anon_sym_AMP] = ACTIONS(6889), + [anon_sym_EQ_EQ] = ACTIONS(6891), + [anon_sym_BANG_EQ] = ACTIONS(6891), + [anon_sym_GT] = ACTIONS(6889), + [anon_sym_GT_EQ] = ACTIONS(6891), + [anon_sym_LT_EQ] = ACTIONS(6889), + [anon_sym_LT] = ACTIONS(6889), + [anon_sym_LT_LT] = ACTIONS(6889), + [anon_sym_GT_GT] = ACTIONS(6889), + [anon_sym___extension__] = ACTIONS(8019), + [anon_sym___attribute__] = ACTIONS(6891), + [anon_sym___attribute] = ACTIONS(6889), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6891), + [anon_sym_LBRACK] = ACTIONS(6889), + [anon_sym_RBRACK] = ACTIONS(6891), + [anon_sym_EQ] = ACTIONS(6889), + [anon_sym_const] = ACTIONS(8022), + [anon_sym_constexpr] = ACTIONS(8019), + [anon_sym_volatile] = ACTIONS(8019), + [anon_sym_restrict] = ACTIONS(8019), + [anon_sym___restrict__] = ACTIONS(8019), + [anon_sym__Atomic] = ACTIONS(8019), + [anon_sym__Noreturn] = ACTIONS(8019), + [anon_sym_noreturn] = ACTIONS(8019), + [anon_sym__Nonnull] = ACTIONS(8019), + [anon_sym_mutable] = ACTIONS(8019), + [anon_sym_constinit] = ACTIONS(8019), + [anon_sym_consteval] = ACTIONS(8019), + [anon_sym_alignas] = ACTIONS(8025), + [anon_sym__Alignas] = ACTIONS(8025), + [anon_sym_QMARK] = ACTIONS(6891), + [anon_sym_STAR_EQ] = ACTIONS(6891), + [anon_sym_SLASH_EQ] = ACTIONS(6891), + [anon_sym_PERCENT_EQ] = ACTIONS(6891), + [anon_sym_PLUS_EQ] = ACTIONS(6891), + [anon_sym_DASH_EQ] = ACTIONS(6891), + [anon_sym_LT_LT_EQ] = ACTIONS(6891), + [anon_sym_GT_GT_EQ] = ACTIONS(6891), + [anon_sym_AMP_EQ] = ACTIONS(6891), + [anon_sym_CARET_EQ] = ACTIONS(6891), + [anon_sym_PIPE_EQ] = ACTIONS(6891), + [anon_sym_and_eq] = ACTIONS(6891), + [anon_sym_or_eq] = ACTIONS(6891), + [anon_sym_xor_eq] = ACTIONS(6891), + [anon_sym_LT_EQ_GT] = ACTIONS(6891), + [anon_sym_or] = ACTIONS(6889), + [anon_sym_and] = ACTIONS(6889), + [anon_sym_bitor] = ACTIONS(6891), + [anon_sym_xor] = ACTIONS(6889), + [anon_sym_bitand] = ACTIONS(6891), + [anon_sym_not_eq] = ACTIONS(6891), + [anon_sym_DASH_DASH] = ACTIONS(6891), + [anon_sym_PLUS_PLUS] = ACTIONS(6891), + [anon_sym_asm] = ACTIONS(6891), + [anon_sym___asm__] = ACTIONS(6891), + [anon_sym___asm] = ACTIONS(6889), + [anon_sym_DOT] = ACTIONS(6889), + [anon_sym_DOT_STAR] = ACTIONS(6891), + [anon_sym_DASH_GT] = ACTIONS(6891), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6891), + [anon_sym_override] = ACTIONS(6891), + [anon_sym_noexcept] = ACTIONS(6891), + [anon_sym_throw] = ACTIONS(6891), + [anon_sym_requires] = ACTIONS(6891), }, - [STATE(2425)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), - [anon_sym_COMMA] = ACTIONS(6951), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_DASH] = ACTIONS(6949), - [anon_sym_PLUS] = ACTIONS(6949), - [anon_sym_STAR] = ACTIONS(6949), - [anon_sym_SLASH] = ACTIONS(6949), - [anon_sym_PERCENT] = ACTIONS(6949), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_PIPE] = ACTIONS(6949), - [anon_sym_CARET] = ACTIONS(6949), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_GT] = ACTIONS(6949), - [anon_sym_GT_EQ] = ACTIONS(6951), - [anon_sym_LT_EQ] = ACTIONS(6949), - [anon_sym_LT] = ACTIONS(6949), - [anon_sym_LT_LT] = ACTIONS(6949), - [anon_sym_GT_GT] = ACTIONS(6949), - [anon_sym___extension__] = ACTIONS(6951), - [anon_sym___attribute__] = ACTIONS(6951), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_COLON] = ACTIONS(6949), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(6951), - [anon_sym_LBRACK] = ACTIONS(6951), - [anon_sym_RBRACK] = ACTIONS(6951), - [anon_sym_EQ] = ACTIONS(6949), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6951), - [anon_sym_volatile] = ACTIONS(6951), - [anon_sym_restrict] = ACTIONS(6951), - [anon_sym___restrict__] = ACTIONS(6951), - [anon_sym__Atomic] = ACTIONS(6951), - [anon_sym__Noreturn] = ACTIONS(6951), - [anon_sym_noreturn] = ACTIONS(6951), - [anon_sym__Nonnull] = ACTIONS(6951), - [anon_sym_mutable] = ACTIONS(6951), - [anon_sym_constinit] = ACTIONS(6951), - [anon_sym_consteval] = ACTIONS(6951), - [anon_sym_alignas] = ACTIONS(6951), - [anon_sym__Alignas] = ACTIONS(6951), - [anon_sym_QMARK] = ACTIONS(6951), - [anon_sym_STAR_EQ] = ACTIONS(6951), - [anon_sym_SLASH_EQ] = ACTIONS(6951), - [anon_sym_PERCENT_EQ] = ACTIONS(6951), - [anon_sym_PLUS_EQ] = ACTIONS(6951), - [anon_sym_DASH_EQ] = ACTIONS(6951), - [anon_sym_LT_LT_EQ] = ACTIONS(6951), - [anon_sym_GT_GT_EQ] = ACTIONS(6951), - [anon_sym_AMP_EQ] = ACTIONS(6951), - [anon_sym_CARET_EQ] = ACTIONS(6951), - [anon_sym_PIPE_EQ] = ACTIONS(6951), - [anon_sym_and_eq] = ACTIONS(6951), - [anon_sym_or_eq] = ACTIONS(6951), - [anon_sym_xor_eq] = ACTIONS(6951), - [anon_sym_LT_EQ_GT] = ACTIONS(6951), - [anon_sym_or] = ACTIONS(6949), - [anon_sym_and] = ACTIONS(6949), - [anon_sym_bitor] = ACTIONS(6951), - [anon_sym_xor] = ACTIONS(6949), - [anon_sym_bitand] = ACTIONS(6951), - [anon_sym_not_eq] = ACTIONS(6951), - [anon_sym_DASH_DASH] = ACTIONS(6951), - [anon_sym_PLUS_PLUS] = ACTIONS(6951), - [anon_sym_DOT] = ACTIONS(6949), - [anon_sym_DOT_STAR] = ACTIONS(6951), - [anon_sym_DASH_GT] = ACTIONS(6951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6951), - [anon_sym_decltype] = ACTIONS(6951), - [anon_sym_final] = ACTIONS(6951), - [anon_sym_override] = ACTIONS(6951), - [anon_sym_requires] = ACTIONS(6951), + [STATE(2342)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6610), + [anon_sym_COMMA] = ACTIONS(6610), + [anon_sym_RPAREN] = ACTIONS(6610), + [anon_sym_LPAREN2] = ACTIONS(6610), + [anon_sym_DASH] = ACTIONS(6608), + [anon_sym_PLUS] = ACTIONS(6608), + [anon_sym_STAR] = ACTIONS(6608), + [anon_sym_SLASH] = ACTIONS(6608), + [anon_sym_PERCENT] = ACTIONS(6608), + [anon_sym_PIPE_PIPE] = ACTIONS(6610), + [anon_sym_AMP_AMP] = ACTIONS(6610), + [anon_sym_PIPE] = ACTIONS(6608), + [anon_sym_CARET] = ACTIONS(6608), + [anon_sym_AMP] = ACTIONS(6608), + [anon_sym_EQ_EQ] = ACTIONS(6610), + [anon_sym_BANG_EQ] = ACTIONS(6610), + [anon_sym_GT] = ACTIONS(6608), + [anon_sym_GT_EQ] = ACTIONS(6610), + [anon_sym_LT_EQ] = ACTIONS(6608), + [anon_sym_LT] = ACTIONS(6608), + [anon_sym_LT_LT] = ACTIONS(6608), + [anon_sym_GT_GT] = ACTIONS(6608), + [anon_sym_SEMI] = ACTIONS(6610), + [anon_sym___extension__] = ACTIONS(6610), + [anon_sym___attribute__] = ACTIONS(6610), + [anon_sym___attribute] = ACTIONS(6608), + [anon_sym_COLON] = ACTIONS(6608), + [anon_sym_COLON_COLON] = ACTIONS(6610), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6610), + [anon_sym_LBRACE] = ACTIONS(6610), + [anon_sym_LBRACK] = ACTIONS(6608), + [anon_sym_EQ] = ACTIONS(6608), + [anon_sym_const] = ACTIONS(6608), + [anon_sym_constexpr] = ACTIONS(6610), + [anon_sym_volatile] = ACTIONS(6610), + [anon_sym_restrict] = ACTIONS(6610), + [anon_sym___restrict__] = ACTIONS(6610), + [anon_sym__Atomic] = ACTIONS(6610), + [anon_sym__Noreturn] = ACTIONS(6610), + [anon_sym_noreturn] = ACTIONS(6610), + [anon_sym__Nonnull] = ACTIONS(6610), + [anon_sym_mutable] = ACTIONS(6610), + [anon_sym_constinit] = ACTIONS(6610), + [anon_sym_consteval] = ACTIONS(6610), + [anon_sym_alignas] = ACTIONS(6610), + [anon_sym__Alignas] = ACTIONS(6610), + [anon_sym_QMARK] = ACTIONS(6610), + [anon_sym_STAR_EQ] = ACTIONS(6610), + [anon_sym_SLASH_EQ] = ACTIONS(6610), + [anon_sym_PERCENT_EQ] = ACTIONS(6610), + [anon_sym_PLUS_EQ] = ACTIONS(6610), + [anon_sym_DASH_EQ] = ACTIONS(6610), + [anon_sym_LT_LT_EQ] = ACTIONS(6610), + [anon_sym_GT_GT_EQ] = ACTIONS(6610), + [anon_sym_AMP_EQ] = ACTIONS(6610), + [anon_sym_CARET_EQ] = ACTIONS(6610), + [anon_sym_PIPE_EQ] = ACTIONS(6610), + [anon_sym_and_eq] = ACTIONS(6610), + [anon_sym_or_eq] = ACTIONS(6610), + [anon_sym_xor_eq] = ACTIONS(6610), + [anon_sym_LT_EQ_GT] = ACTIONS(6610), + [anon_sym_or] = ACTIONS(6608), + [anon_sym_and] = ACTIONS(6608), + [anon_sym_bitor] = ACTIONS(6610), + [anon_sym_xor] = ACTIONS(6608), + [anon_sym_bitand] = ACTIONS(6610), + [anon_sym_not_eq] = ACTIONS(6610), + [anon_sym_DASH_DASH] = ACTIONS(6610), + [anon_sym_PLUS_PLUS] = ACTIONS(6610), + [anon_sym_asm] = ACTIONS(6610), + [anon_sym___asm__] = ACTIONS(6610), + [anon_sym___asm] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6608), + [anon_sym_DOT_STAR] = ACTIONS(6610), + [anon_sym_DASH_GT] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6610), + [anon_sym_decltype] = ACTIONS(6610), + [anon_sym_try] = ACTIONS(6610), + [anon_sym_DASH_GT_STAR] = ACTIONS(6610), }, - [STATE(2426)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), - [anon_sym_COMMA] = ACTIONS(6951), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_DASH] = ACTIONS(6949), - [anon_sym_PLUS] = ACTIONS(6949), - [anon_sym_STAR] = ACTIONS(6949), - [anon_sym_SLASH] = ACTIONS(6949), - [anon_sym_PERCENT] = ACTIONS(6949), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_PIPE] = ACTIONS(6949), - [anon_sym_CARET] = ACTIONS(6949), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_GT] = ACTIONS(6949), - [anon_sym_GT_EQ] = ACTIONS(6951), - [anon_sym_LT_EQ] = ACTIONS(6949), - [anon_sym_LT] = ACTIONS(6949), - [anon_sym_LT_LT] = ACTIONS(6949), - [anon_sym_GT_GT] = ACTIONS(6949), - [anon_sym___extension__] = ACTIONS(6951), - [anon_sym___attribute__] = ACTIONS(6951), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_COLON] = ACTIONS(6949), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(6951), - [anon_sym_LBRACK] = ACTIONS(6951), - [anon_sym_RBRACK] = ACTIONS(6951), - [anon_sym_EQ] = ACTIONS(6949), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6951), - [anon_sym_volatile] = ACTIONS(6951), - [anon_sym_restrict] = ACTIONS(6951), - [anon_sym___restrict__] = ACTIONS(6951), - [anon_sym__Atomic] = ACTIONS(6951), - [anon_sym__Noreturn] = ACTIONS(6951), - [anon_sym_noreturn] = ACTIONS(6951), - [anon_sym__Nonnull] = ACTIONS(6951), - [anon_sym_mutable] = ACTIONS(6951), - [anon_sym_constinit] = ACTIONS(6951), - [anon_sym_consteval] = ACTIONS(6951), - [anon_sym_alignas] = ACTIONS(6951), - [anon_sym__Alignas] = ACTIONS(6951), - [anon_sym_QMARK] = ACTIONS(6951), - [anon_sym_STAR_EQ] = ACTIONS(6951), - [anon_sym_SLASH_EQ] = ACTIONS(6951), - [anon_sym_PERCENT_EQ] = ACTIONS(6951), - [anon_sym_PLUS_EQ] = ACTIONS(6951), - [anon_sym_DASH_EQ] = ACTIONS(6951), - [anon_sym_LT_LT_EQ] = ACTIONS(6951), - [anon_sym_GT_GT_EQ] = ACTIONS(6951), - [anon_sym_AMP_EQ] = ACTIONS(6951), - [anon_sym_CARET_EQ] = ACTIONS(6951), - [anon_sym_PIPE_EQ] = ACTIONS(6951), - [anon_sym_and_eq] = ACTIONS(6951), - [anon_sym_or_eq] = ACTIONS(6951), - [anon_sym_xor_eq] = ACTIONS(6951), - [anon_sym_LT_EQ_GT] = ACTIONS(6951), - [anon_sym_or] = ACTIONS(6949), - [anon_sym_and] = ACTIONS(6949), - [anon_sym_bitor] = ACTIONS(6951), - [anon_sym_xor] = ACTIONS(6949), - [anon_sym_bitand] = ACTIONS(6951), - [anon_sym_not_eq] = ACTIONS(6951), - [anon_sym_DASH_DASH] = ACTIONS(6951), - [anon_sym_PLUS_PLUS] = ACTIONS(6951), - [anon_sym_DOT] = ACTIONS(6949), - [anon_sym_DOT_STAR] = ACTIONS(6951), - [anon_sym_DASH_GT] = ACTIONS(6951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6951), - [anon_sym_decltype] = ACTIONS(6951), - [anon_sym_final] = ACTIONS(6951), - [anon_sym_override] = ACTIONS(6951), - [anon_sym_requires] = ACTIONS(6951), + [STATE(2343)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6618), + [anon_sym_COMMA] = ACTIONS(6618), + [anon_sym_RPAREN] = ACTIONS(6618), + [anon_sym_LPAREN2] = ACTIONS(6618), + [anon_sym_DASH] = ACTIONS(6616), + [anon_sym_PLUS] = ACTIONS(6616), + [anon_sym_STAR] = ACTIONS(6616), + [anon_sym_SLASH] = ACTIONS(6616), + [anon_sym_PERCENT] = ACTIONS(6616), + [anon_sym_PIPE_PIPE] = ACTIONS(6618), + [anon_sym_AMP_AMP] = ACTIONS(6618), + [anon_sym_PIPE] = ACTIONS(6616), + [anon_sym_CARET] = ACTIONS(6616), + [anon_sym_AMP] = ACTIONS(6616), + [anon_sym_EQ_EQ] = ACTIONS(6618), + [anon_sym_BANG_EQ] = ACTIONS(6618), + [anon_sym_GT] = ACTIONS(6616), + [anon_sym_GT_EQ] = ACTIONS(6618), + [anon_sym_LT_EQ] = ACTIONS(6616), + [anon_sym_LT] = ACTIONS(6616), + [anon_sym_LT_LT] = ACTIONS(6616), + [anon_sym_GT_GT] = ACTIONS(6616), + [anon_sym_SEMI] = ACTIONS(6618), + [anon_sym___extension__] = ACTIONS(6618), + [anon_sym___attribute__] = ACTIONS(6618), + [anon_sym___attribute] = ACTIONS(6616), + [anon_sym_COLON] = ACTIONS(6616), + [anon_sym_COLON_COLON] = ACTIONS(6618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6618), + [anon_sym_LBRACE] = ACTIONS(6618), + [anon_sym_LBRACK] = ACTIONS(6616), + [anon_sym_EQ] = ACTIONS(6616), + [anon_sym_const] = ACTIONS(6616), + [anon_sym_constexpr] = ACTIONS(6618), + [anon_sym_volatile] = ACTIONS(6618), + [anon_sym_restrict] = ACTIONS(6618), + [anon_sym___restrict__] = ACTIONS(6618), + [anon_sym__Atomic] = ACTIONS(6618), + [anon_sym__Noreturn] = ACTIONS(6618), + [anon_sym_noreturn] = ACTIONS(6618), + [anon_sym__Nonnull] = ACTIONS(6618), + [anon_sym_mutable] = ACTIONS(6618), + [anon_sym_constinit] = ACTIONS(6618), + [anon_sym_consteval] = ACTIONS(6618), + [anon_sym_alignas] = ACTIONS(6618), + [anon_sym__Alignas] = ACTIONS(6618), + [anon_sym_QMARK] = ACTIONS(6618), + [anon_sym_STAR_EQ] = ACTIONS(6618), + [anon_sym_SLASH_EQ] = ACTIONS(6618), + [anon_sym_PERCENT_EQ] = ACTIONS(6618), + [anon_sym_PLUS_EQ] = ACTIONS(6618), + [anon_sym_DASH_EQ] = ACTIONS(6618), + [anon_sym_LT_LT_EQ] = ACTIONS(6618), + [anon_sym_GT_GT_EQ] = ACTIONS(6618), + [anon_sym_AMP_EQ] = ACTIONS(6618), + [anon_sym_CARET_EQ] = ACTIONS(6618), + [anon_sym_PIPE_EQ] = ACTIONS(6618), + [anon_sym_and_eq] = ACTIONS(6618), + [anon_sym_or_eq] = ACTIONS(6618), + [anon_sym_xor_eq] = ACTIONS(6618), + [anon_sym_LT_EQ_GT] = ACTIONS(6618), + [anon_sym_or] = ACTIONS(6616), + [anon_sym_and] = ACTIONS(6616), + [anon_sym_bitor] = ACTIONS(6618), + [anon_sym_xor] = ACTIONS(6616), + [anon_sym_bitand] = ACTIONS(6618), + [anon_sym_not_eq] = ACTIONS(6618), + [anon_sym_DASH_DASH] = ACTIONS(6618), + [anon_sym_PLUS_PLUS] = ACTIONS(6618), + [anon_sym_asm] = ACTIONS(6618), + [anon_sym___asm__] = ACTIONS(6618), + [anon_sym___asm] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6616), + [anon_sym_DOT_STAR] = ACTIONS(6618), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6618), + [anon_sym_decltype] = ACTIONS(6618), + [anon_sym_try] = ACTIONS(6618), + [anon_sym_DASH_GT_STAR] = ACTIONS(6618), }, - [STATE(2427)] = { - [sym_attribute_specifier] = STATE(4161), - [sym_attribute_declaration] = STATE(4518), - [sym_gnu_asm_expression] = STATE(8999), - [sym_virtual_specifier] = STATE(4532), - [sym__function_exception_specification] = STATE(2927), - [sym__function_attributes_end] = STATE(4253), - [sym__function_postfix] = STATE(4984), - [sym_trailing_return_type] = STATE(4410), - [sym_noexcept] = STATE(2927), - [sym_throw_specifier] = STATE(2927), - [sym_requires_clause] = STATE(4984), - [aux_sym_type_definition_repeat1] = STATE(4161), - [aux_sym_attributed_declarator_repeat1] = STATE(4518), - [aux_sym__function_postfix_repeat1] = STATE(4532), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7546), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6361), - [anon_sym___attribute] = ACTIONS(6363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7546), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7951), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7954), - [anon_sym_override] = ACTIONS(7954), - [anon_sym_GT2] = ACTIONS(7544), - [anon_sym_noexcept] = ACTIONS(6377), - [anon_sym_throw] = ACTIONS(6379), - [anon_sym_requires] = ACTIONS(7957), + [STATE(2344)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6622), + [anon_sym_COMMA] = ACTIONS(6622), + [anon_sym_RPAREN] = ACTIONS(6622), + [anon_sym_LPAREN2] = ACTIONS(6622), + [anon_sym_DASH] = ACTIONS(6620), + [anon_sym_PLUS] = ACTIONS(6620), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_PERCENT] = ACTIONS(6620), + [anon_sym_PIPE_PIPE] = ACTIONS(6622), + [anon_sym_AMP_AMP] = ACTIONS(6622), + [anon_sym_PIPE] = ACTIONS(6620), + [anon_sym_CARET] = ACTIONS(6620), + [anon_sym_AMP] = ACTIONS(6620), + [anon_sym_EQ_EQ] = ACTIONS(6622), + [anon_sym_BANG_EQ] = ACTIONS(6622), + [anon_sym_GT] = ACTIONS(6620), + [anon_sym_GT_EQ] = ACTIONS(6622), + [anon_sym_LT_EQ] = ACTIONS(6620), + [anon_sym_LT] = ACTIONS(6620), + [anon_sym_LT_LT] = ACTIONS(6620), + [anon_sym_GT_GT] = ACTIONS(6620), + [anon_sym_SEMI] = ACTIONS(6622), + [anon_sym___extension__] = ACTIONS(6622), + [anon_sym___attribute__] = ACTIONS(6622), + [anon_sym___attribute] = ACTIONS(6620), + [anon_sym_COLON] = ACTIONS(6620), + [anon_sym_COLON_COLON] = ACTIONS(6622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6622), + [anon_sym_LBRACE] = ACTIONS(6622), + [anon_sym_LBRACK] = ACTIONS(6620), + [anon_sym_EQ] = ACTIONS(6620), + [anon_sym_const] = ACTIONS(6620), + [anon_sym_constexpr] = ACTIONS(6622), + [anon_sym_volatile] = ACTIONS(6622), + [anon_sym_restrict] = ACTIONS(6622), + [anon_sym___restrict__] = ACTIONS(6622), + [anon_sym__Atomic] = ACTIONS(6622), + [anon_sym__Noreturn] = ACTIONS(6622), + [anon_sym_noreturn] = ACTIONS(6622), + [anon_sym__Nonnull] = ACTIONS(6622), + [anon_sym_mutable] = ACTIONS(6622), + [anon_sym_constinit] = ACTIONS(6622), + [anon_sym_consteval] = ACTIONS(6622), + [anon_sym_alignas] = ACTIONS(6622), + [anon_sym__Alignas] = ACTIONS(6622), + [anon_sym_QMARK] = ACTIONS(6622), + [anon_sym_STAR_EQ] = ACTIONS(6622), + [anon_sym_SLASH_EQ] = ACTIONS(6622), + [anon_sym_PERCENT_EQ] = ACTIONS(6622), + [anon_sym_PLUS_EQ] = ACTIONS(6622), + [anon_sym_DASH_EQ] = ACTIONS(6622), + [anon_sym_LT_LT_EQ] = ACTIONS(6622), + [anon_sym_GT_GT_EQ] = ACTIONS(6622), + [anon_sym_AMP_EQ] = ACTIONS(6622), + [anon_sym_CARET_EQ] = ACTIONS(6622), + [anon_sym_PIPE_EQ] = ACTIONS(6622), + [anon_sym_and_eq] = ACTIONS(6622), + [anon_sym_or_eq] = ACTIONS(6622), + [anon_sym_xor_eq] = ACTIONS(6622), + [anon_sym_LT_EQ_GT] = ACTIONS(6622), + [anon_sym_or] = ACTIONS(6620), + [anon_sym_and] = ACTIONS(6620), + [anon_sym_bitor] = ACTIONS(6622), + [anon_sym_xor] = ACTIONS(6620), + [anon_sym_bitand] = ACTIONS(6622), + [anon_sym_not_eq] = ACTIONS(6622), + [anon_sym_DASH_DASH] = ACTIONS(6622), + [anon_sym_PLUS_PLUS] = ACTIONS(6622), + [anon_sym_asm] = ACTIONS(6622), + [anon_sym___asm__] = ACTIONS(6622), + [anon_sym___asm] = ACTIONS(6620), + [anon_sym_DOT] = ACTIONS(6620), + [anon_sym_DOT_STAR] = ACTIONS(6622), + [anon_sym_DASH_GT] = ACTIONS(6620), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6622), + [anon_sym_decltype] = ACTIONS(6622), + [anon_sym_try] = ACTIONS(6622), + [anon_sym_DASH_GT_STAR] = ACTIONS(6622), }, - [STATE(2428)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_attributes_end] = STATE(3790), - [sym__function_postfix] = STATE(3513), - [sym_trailing_return_type] = STATE(2911), - [sym_requires_clause] = STATE(3513), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym_SEMI] = ACTIONS(7544), - [anon_sym___attribute__] = ACTIONS(6150), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_COLON] = ACTIONS(7546), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), - [anon_sym_RBRACE] = ACTIONS(7544), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7554), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6181), - [anon_sym_override] = ACTIONS(6181), - [anon_sym_requires] = ACTIONS(6183), - [anon_sym_COLON_RBRACK] = ACTIONS(7544), + [STATE(2345)] = { + [sym_attribute_specifier] = STATE(2196), + [sym_enumerator_list] = STATE(2137), + [sym__enum_base_clause] = STATE(2119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8002), + [anon_sym_COMMA] = ACTIONS(8002), + [anon_sym_RPAREN] = ACTIONS(8002), + [anon_sym_LPAREN2] = ACTIONS(8002), + [anon_sym_DASH] = ACTIONS(8000), + [anon_sym_PLUS] = ACTIONS(8000), + [anon_sym_STAR] = ACTIONS(8000), + [anon_sym_SLASH] = ACTIONS(8000), + [anon_sym_PERCENT] = ACTIONS(8000), + [anon_sym_PIPE_PIPE] = ACTIONS(8002), + [anon_sym_AMP_AMP] = ACTIONS(8002), + [anon_sym_PIPE] = ACTIONS(8000), + [anon_sym_CARET] = ACTIONS(8000), + [anon_sym_AMP] = ACTIONS(8000), + [anon_sym_EQ_EQ] = ACTIONS(8002), + [anon_sym_BANG_EQ] = ACTIONS(8002), + [anon_sym_GT] = ACTIONS(8000), + [anon_sym_GT_EQ] = ACTIONS(8002), + [anon_sym_LT_EQ] = ACTIONS(8000), + [anon_sym_LT] = ACTIONS(8000), + [anon_sym_LT_LT] = ACTIONS(8000), + [anon_sym_GT_GT] = ACTIONS(8000), + [anon_sym_SEMI] = ACTIONS(8002), + [anon_sym___extension__] = ACTIONS(8002), + [anon_sym___attribute__] = ACTIONS(8028), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_COLON] = ACTIONS(8030), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8002), + [anon_sym_LBRACE] = ACTIONS(7385), + [anon_sym_RBRACE] = ACTIONS(8002), + [anon_sym_LBRACK] = ACTIONS(8002), + [anon_sym_EQ] = ACTIONS(8000), + [anon_sym_const] = ACTIONS(8000), + [anon_sym_constexpr] = ACTIONS(8002), + [anon_sym_volatile] = ACTIONS(8002), + [anon_sym_restrict] = ACTIONS(8002), + [anon_sym___restrict__] = ACTIONS(8002), + [anon_sym__Atomic] = ACTIONS(8002), + [anon_sym__Noreturn] = ACTIONS(8002), + [anon_sym_noreturn] = ACTIONS(8002), + [anon_sym__Nonnull] = ACTIONS(8002), + [anon_sym_mutable] = ACTIONS(8002), + [anon_sym_constinit] = ACTIONS(8002), + [anon_sym_consteval] = ACTIONS(8002), + [anon_sym_alignas] = ACTIONS(8002), + [anon_sym__Alignas] = ACTIONS(8002), + [anon_sym_QMARK] = ACTIONS(8002), + [anon_sym_STAR_EQ] = ACTIONS(8002), + [anon_sym_SLASH_EQ] = ACTIONS(8002), + [anon_sym_PERCENT_EQ] = ACTIONS(8002), + [anon_sym_PLUS_EQ] = ACTIONS(8002), + [anon_sym_DASH_EQ] = ACTIONS(8002), + [anon_sym_LT_LT_EQ] = ACTIONS(8002), + [anon_sym_GT_GT_EQ] = ACTIONS(8002), + [anon_sym_AMP_EQ] = ACTIONS(8002), + [anon_sym_CARET_EQ] = ACTIONS(8002), + [anon_sym_PIPE_EQ] = ACTIONS(8002), + [anon_sym_and_eq] = ACTIONS(8002), + [anon_sym_or_eq] = ACTIONS(8002), + [anon_sym_xor_eq] = ACTIONS(8002), + [anon_sym_LT_EQ_GT] = ACTIONS(8002), + [anon_sym_or] = ACTIONS(8000), + [anon_sym_and] = ACTIONS(8000), + [anon_sym_bitor] = ACTIONS(8002), + [anon_sym_xor] = ACTIONS(8000), + [anon_sym_bitand] = ACTIONS(8002), + [anon_sym_not_eq] = ACTIONS(8002), + [anon_sym_DASH_DASH] = ACTIONS(8002), + [anon_sym_PLUS_PLUS] = ACTIONS(8002), + [anon_sym_DOT] = ACTIONS(8000), + [anon_sym_DOT_STAR] = ACTIONS(8002), + [anon_sym_DASH_GT] = ACTIONS(8002), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8002), + [anon_sym_override] = ACTIONS(8002), + [anon_sym_requires] = ACTIONS(8002), + [anon_sym_COLON_RBRACK] = ACTIONS(8002), }, - [STATE(2429)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2792), - [sym_ms_pointer_modifier] = STATE(2494), - [sym__abstract_declarator] = STATE(6190), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(3484), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(1976), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(3484), - [aux_sym_pointer_declarator_repeat1] = STATE(2494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_RPAREN] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_PLUS] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(8030), - [anon_sym_SLASH] = ACTIONS(6457), - [anon_sym_PERCENT] = ACTIONS(6459), - [anon_sym_PIPE_PIPE] = ACTIONS(6459), - [anon_sym_AMP_AMP] = ACTIONS(8032), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_CARET] = ACTIONS(6459), - [anon_sym_AMP] = ACTIONS(8034), - [anon_sym_EQ_EQ] = ACTIONS(6459), - [anon_sym_BANG_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_LT_EQ] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_LT_LT] = ACTIONS(6459), - [anon_sym_GT_GT] = ACTIONS(6459), - [anon_sym_SEMI] = ACTIONS(6459), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym_COLON] = ACTIONS(6457), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6459), - [sym_ms_restrict_modifier] = ACTIONS(7741), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7780), - [sym_ms_signed_ptr_modifier] = ACTIONS(7780), - [anon_sym__unaligned] = ACTIONS(7782), - [anon_sym___unaligned] = ACTIONS(7782), - [anon_sym_RBRACE] = ACTIONS(6459), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(6459), - [anon_sym_LT_EQ_GT] = ACTIONS(6459), - [anon_sym_or] = ACTIONS(6459), - [anon_sym_and] = ACTIONS(6459), - [anon_sym_bitor] = ACTIONS(6459), - [anon_sym_xor] = ACTIONS(6459), - [anon_sym_bitand] = ACTIONS(6459), - [anon_sym_not_eq] = ACTIONS(6459), - [anon_sym_DASH_DASH] = ACTIONS(6459), - [anon_sym_PLUS_PLUS] = ACTIONS(6459), - [anon_sym_DOT] = ACTIONS(6457), - [anon_sym_DOT_STAR] = ACTIONS(6459), - [anon_sym_DASH_GT] = ACTIONS(6459), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6459), + [STATE(2346)] = { + [sym_attribute_specifier] = STATE(2200), + [sym_enumerator_list] = STATE(2136), + [sym__enum_base_clause] = STATE(2118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8008), + [anon_sym_COMMA] = ACTIONS(8008), + [anon_sym_RPAREN] = ACTIONS(8008), + [anon_sym_LPAREN2] = ACTIONS(8008), + [anon_sym_DASH] = ACTIONS(8006), + [anon_sym_PLUS] = ACTIONS(8006), + [anon_sym_STAR] = ACTIONS(8006), + [anon_sym_SLASH] = ACTIONS(8006), + [anon_sym_PERCENT] = ACTIONS(8006), + [anon_sym_PIPE_PIPE] = ACTIONS(8008), + [anon_sym_AMP_AMP] = ACTIONS(8008), + [anon_sym_PIPE] = ACTIONS(8006), + [anon_sym_CARET] = ACTIONS(8006), + [anon_sym_AMP] = ACTIONS(8006), + [anon_sym_EQ_EQ] = ACTIONS(8008), + [anon_sym_BANG_EQ] = ACTIONS(8008), + [anon_sym_GT] = ACTIONS(8006), + [anon_sym_GT_EQ] = ACTIONS(8008), + [anon_sym_LT_EQ] = ACTIONS(8006), + [anon_sym_LT] = ACTIONS(8006), + [anon_sym_LT_LT] = ACTIONS(8006), + [anon_sym_GT_GT] = ACTIONS(8006), + [anon_sym_SEMI] = ACTIONS(8008), + [anon_sym___extension__] = ACTIONS(8008), + [anon_sym___attribute__] = ACTIONS(8028), + [anon_sym___attribute] = ACTIONS(7239), + [anon_sym_COLON] = ACTIONS(8030), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8008), + [anon_sym_LBRACE] = ACTIONS(7385), + [anon_sym_RBRACE] = ACTIONS(8008), + [anon_sym_LBRACK] = ACTIONS(8008), + [anon_sym_EQ] = ACTIONS(8006), + [anon_sym_const] = ACTIONS(8006), + [anon_sym_constexpr] = ACTIONS(8008), + [anon_sym_volatile] = ACTIONS(8008), + [anon_sym_restrict] = ACTIONS(8008), + [anon_sym___restrict__] = ACTIONS(8008), + [anon_sym__Atomic] = ACTIONS(8008), + [anon_sym__Noreturn] = ACTIONS(8008), + [anon_sym_noreturn] = ACTIONS(8008), + [anon_sym__Nonnull] = ACTIONS(8008), + [anon_sym_mutable] = ACTIONS(8008), + [anon_sym_constinit] = ACTIONS(8008), + [anon_sym_consteval] = ACTIONS(8008), + [anon_sym_alignas] = ACTIONS(8008), + [anon_sym__Alignas] = ACTIONS(8008), + [anon_sym_QMARK] = ACTIONS(8008), + [anon_sym_STAR_EQ] = ACTIONS(8008), + [anon_sym_SLASH_EQ] = ACTIONS(8008), + [anon_sym_PERCENT_EQ] = ACTIONS(8008), + [anon_sym_PLUS_EQ] = ACTIONS(8008), + [anon_sym_DASH_EQ] = ACTIONS(8008), + [anon_sym_LT_LT_EQ] = ACTIONS(8008), + [anon_sym_GT_GT_EQ] = ACTIONS(8008), + [anon_sym_AMP_EQ] = ACTIONS(8008), + [anon_sym_CARET_EQ] = ACTIONS(8008), + [anon_sym_PIPE_EQ] = ACTIONS(8008), + [anon_sym_and_eq] = ACTIONS(8008), + [anon_sym_or_eq] = ACTIONS(8008), + [anon_sym_xor_eq] = ACTIONS(8008), + [anon_sym_LT_EQ_GT] = ACTIONS(8008), + [anon_sym_or] = ACTIONS(8006), + [anon_sym_and] = ACTIONS(8006), + [anon_sym_bitor] = ACTIONS(8008), + [anon_sym_xor] = ACTIONS(8006), + [anon_sym_bitand] = ACTIONS(8008), + [anon_sym_not_eq] = ACTIONS(8008), + [anon_sym_DASH_DASH] = ACTIONS(8008), + [anon_sym_PLUS_PLUS] = ACTIONS(8008), + [anon_sym_DOT] = ACTIONS(8006), + [anon_sym_DOT_STAR] = ACTIONS(8008), + [anon_sym_DASH_GT] = ACTIONS(8008), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8008), + [anon_sym_override] = ACTIONS(8008), + [anon_sym_requires] = ACTIONS(8008), + [anon_sym_COLON_RBRACK] = ACTIONS(8008), }, - [STATE(2430)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2280), - [sym_identifier] = ACTIONS(6627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), - [anon_sym_COMMA] = ACTIONS(7081), - [anon_sym_LPAREN2] = ACTIONS(7081), - [anon_sym_DASH] = ACTIONS(7084), - [anon_sym_PLUS] = ACTIONS(7084), - [anon_sym_STAR] = ACTIONS(7084), - [anon_sym_SLASH] = ACTIONS(7084), - [anon_sym_PERCENT] = ACTIONS(7084), - [anon_sym_PIPE_PIPE] = ACTIONS(7081), - [anon_sym_AMP_AMP] = ACTIONS(7081), - [anon_sym_PIPE] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7084), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_EQ_EQ] = ACTIONS(7081), - [anon_sym_BANG_EQ] = ACTIONS(7081), - [anon_sym_GT] = ACTIONS(7084), - [anon_sym_GT_EQ] = ACTIONS(7084), - [anon_sym_LT_EQ] = ACTIONS(7084), - [anon_sym_LT] = ACTIONS(7084), - [anon_sym_LT_LT] = ACTIONS(7084), - [anon_sym_GT_GT] = ACTIONS(7084), - [anon_sym___extension__] = ACTIONS(6627), - [anon_sym___attribute__] = ACTIONS(7084), - [anon_sym___attribute] = ACTIONS(7084), - [anon_sym_LBRACE] = ACTIONS(7081), - [anon_sym_signed] = ACTIONS(7751), - [anon_sym_unsigned] = ACTIONS(7751), - [anon_sym_long] = ACTIONS(7751), - [anon_sym_short] = ACTIONS(7751), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_EQ] = ACTIONS(7084), - [anon_sym_const] = ACTIONS(6627), - [anon_sym_constexpr] = ACTIONS(6627), - [anon_sym_volatile] = ACTIONS(6627), - [anon_sym_restrict] = ACTIONS(6627), - [anon_sym___restrict__] = ACTIONS(6627), - [anon_sym__Atomic] = ACTIONS(6627), - [anon_sym__Noreturn] = ACTIONS(6627), - [anon_sym_noreturn] = ACTIONS(6627), - [anon_sym__Nonnull] = ACTIONS(6627), - [anon_sym_mutable] = ACTIONS(6627), - [anon_sym_constinit] = ACTIONS(6627), - [anon_sym_consteval] = ACTIONS(6627), - [anon_sym_alignas] = ACTIONS(6627), - [anon_sym__Alignas] = ACTIONS(6627), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(7081), - [anon_sym_STAR_EQ] = ACTIONS(7081), - [anon_sym_SLASH_EQ] = ACTIONS(7081), - [anon_sym_PERCENT_EQ] = ACTIONS(7081), - [anon_sym_PLUS_EQ] = ACTIONS(7081), - [anon_sym_DASH_EQ] = ACTIONS(7081), - [anon_sym_LT_LT_EQ] = ACTIONS(7081), - [anon_sym_GT_GT_EQ] = ACTIONS(7084), - [anon_sym_AMP_EQ] = ACTIONS(7081), - [anon_sym_CARET_EQ] = ACTIONS(7081), - [anon_sym_PIPE_EQ] = ACTIONS(7081), - [anon_sym_and_eq] = ACTIONS(7084), - [anon_sym_or_eq] = ACTIONS(7084), - [anon_sym_xor_eq] = ACTIONS(7084), - [anon_sym_LT_EQ_GT] = ACTIONS(7081), - [anon_sym_or] = ACTIONS(7084), - [anon_sym_and] = ACTIONS(7084), - [anon_sym_bitor] = ACTIONS(7084), - [anon_sym_xor] = ACTIONS(7084), - [anon_sym_bitand] = ACTIONS(7084), - [anon_sym_not_eq] = ACTIONS(7084), - [anon_sym_DASH_DASH] = ACTIONS(7081), - [anon_sym_PLUS_PLUS] = ACTIONS(7081), - [anon_sym_DOT] = ACTIONS(7084), - [anon_sym_DOT_STAR] = ACTIONS(7081), - [anon_sym_DASH_GT] = ACTIONS(7081), + [STATE(2347)] = { + [sym_template_argument_list] = STATE(3735), + [aux_sym_sized_type_specifier_repeat1] = STATE(2419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7359), + [anon_sym_COMMA] = ACTIONS(7359), + [anon_sym_RPAREN] = ACTIONS(7359), + [anon_sym_LPAREN2] = ACTIONS(7359), + [anon_sym_DASH] = ACTIONS(7357), + [anon_sym_PLUS] = ACTIONS(7357), + [anon_sym_STAR] = ACTIONS(7357), + [anon_sym_SLASH] = ACTIONS(7357), + [anon_sym_PERCENT] = ACTIONS(7357), + [anon_sym_PIPE_PIPE] = ACTIONS(7359), + [anon_sym_AMP_AMP] = ACTIONS(7359), + [anon_sym_PIPE] = ACTIONS(7357), + [anon_sym_CARET] = ACTIONS(7357), + [anon_sym_AMP] = ACTIONS(7357), + [anon_sym_EQ_EQ] = ACTIONS(7359), + [anon_sym_BANG_EQ] = ACTIONS(7359), + [anon_sym_GT] = ACTIONS(7357), + [anon_sym_GT_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ] = ACTIONS(7357), + [anon_sym_LT] = ACTIONS(7357), + [anon_sym_LT_LT] = ACTIONS(7357), + [anon_sym_GT_GT] = ACTIONS(7357), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7357), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(7359), + [anon_sym_signed] = ACTIONS(6971), + [anon_sym_unsigned] = ACTIONS(6971), + [anon_sym_long] = ACTIONS(6971), + [anon_sym_short] = ACTIONS(6971), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7357), + [anon_sym_const] = ACTIONS(7357), + [anon_sym_constexpr] = ACTIONS(7359), + [anon_sym_volatile] = ACTIONS(7359), + [anon_sym_restrict] = ACTIONS(7359), + [anon_sym___restrict__] = ACTIONS(7359), + [anon_sym__Atomic] = ACTIONS(7359), + [anon_sym__Noreturn] = ACTIONS(7359), + [anon_sym_noreturn] = ACTIONS(7359), + [anon_sym__Nonnull] = ACTIONS(7359), + [anon_sym_mutable] = ACTIONS(7359), + [anon_sym_constinit] = ACTIONS(7359), + [anon_sym_consteval] = ACTIONS(7359), + [anon_sym_alignas] = ACTIONS(7359), + [anon_sym__Alignas] = ACTIONS(7359), + [anon_sym_QMARK] = ACTIONS(7359), + [anon_sym_STAR_EQ] = ACTIONS(7359), + [anon_sym_SLASH_EQ] = ACTIONS(7359), + [anon_sym_PERCENT_EQ] = ACTIONS(7359), + [anon_sym_PLUS_EQ] = ACTIONS(7359), + [anon_sym_DASH_EQ] = ACTIONS(7359), + [anon_sym_LT_LT_EQ] = ACTIONS(7359), + [anon_sym_GT_GT_EQ] = ACTIONS(7359), + [anon_sym_AMP_EQ] = ACTIONS(7359), + [anon_sym_CARET_EQ] = ACTIONS(7359), + [anon_sym_PIPE_EQ] = ACTIONS(7359), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7359), + [anon_sym_or] = ACTIONS(7357), + [anon_sym_and] = ACTIONS(7357), + [anon_sym_bitor] = ACTIONS(7359), + [anon_sym_xor] = ACTIONS(7357), + [anon_sym_bitand] = ACTIONS(7359), + [anon_sym_not_eq] = ACTIONS(7359), + [anon_sym_DASH_DASH] = ACTIONS(7359), + [anon_sym_PLUS_PLUS] = ACTIONS(7359), + [anon_sym_DOT] = ACTIONS(7357), + [anon_sym_DOT_STAR] = ACTIONS(7359), + [anon_sym_DASH_GT] = ACTIONS(7357), [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(7081), - }, - [STATE(2431)] = { - [sym_template_argument_list] = STATE(2510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), - [anon_sym_COMMA] = ACTIONS(6751), - [anon_sym_RPAREN] = ACTIONS(6751), - [anon_sym_LPAREN2] = ACTIONS(6751), - [anon_sym_DASH] = ACTIONS(6746), - [anon_sym_PLUS] = ACTIONS(6746), - [anon_sym_STAR] = ACTIONS(6746), - [anon_sym_SLASH] = ACTIONS(6746), - [anon_sym_PERCENT] = ACTIONS(6746), - [anon_sym_PIPE_PIPE] = ACTIONS(6751), - [anon_sym_AMP_AMP] = ACTIONS(6751), - [anon_sym_PIPE] = ACTIONS(6746), - [anon_sym_CARET] = ACTIONS(6746), - [anon_sym_AMP] = ACTIONS(6746), - [anon_sym_EQ_EQ] = ACTIONS(6751), - [anon_sym_BANG_EQ] = ACTIONS(6751), - [anon_sym_GT] = ACTIONS(6746), - [anon_sym_GT_EQ] = ACTIONS(6751), - [anon_sym_LT_EQ] = ACTIONS(6746), - [anon_sym_LT] = ACTIONS(7640), - [anon_sym_LT_LT] = ACTIONS(6746), - [anon_sym_GT_GT] = ACTIONS(6746), - [anon_sym___extension__] = ACTIONS(6751), - [anon_sym___attribute__] = ACTIONS(6751), - [anon_sym___attribute] = ACTIONS(6746), - [anon_sym_COLON] = ACTIONS(6746), - [anon_sym_COLON_COLON] = ACTIONS(6748), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_LBRACK] = ACTIONS(6751), - [anon_sym_EQ] = ACTIONS(6746), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6751), - [anon_sym_volatile] = ACTIONS(6751), - [anon_sym_restrict] = ACTIONS(6751), - [anon_sym___restrict__] = ACTIONS(6751), - [anon_sym__Atomic] = ACTIONS(6751), - [anon_sym__Noreturn] = ACTIONS(6751), - [anon_sym_noreturn] = ACTIONS(6751), - [anon_sym__Nonnull] = ACTIONS(6751), - [anon_sym_mutable] = ACTIONS(6751), - [anon_sym_constinit] = ACTIONS(6751), - [anon_sym_consteval] = ACTIONS(6751), - [anon_sym_alignas] = ACTIONS(6751), - [anon_sym__Alignas] = ACTIONS(6751), - [anon_sym_QMARK] = ACTIONS(6751), - [anon_sym_STAR_EQ] = ACTIONS(6751), - [anon_sym_SLASH_EQ] = ACTIONS(6751), - [anon_sym_PERCENT_EQ] = ACTIONS(6751), - [anon_sym_PLUS_EQ] = ACTIONS(6751), - [anon_sym_DASH_EQ] = ACTIONS(6751), - [anon_sym_LT_LT_EQ] = ACTIONS(6751), - [anon_sym_GT_GT_EQ] = ACTIONS(6751), - [anon_sym_AMP_EQ] = ACTIONS(6751), - [anon_sym_CARET_EQ] = ACTIONS(6751), - [anon_sym_PIPE_EQ] = ACTIONS(6751), - [anon_sym_and_eq] = ACTIONS(6751), - [anon_sym_or_eq] = ACTIONS(6751), - [anon_sym_xor_eq] = ACTIONS(6751), - [anon_sym_LT_EQ_GT] = ACTIONS(6751), - [anon_sym_or] = ACTIONS(6746), - [anon_sym_and] = ACTIONS(6746), - [anon_sym_bitor] = ACTIONS(6751), - [anon_sym_xor] = ACTIONS(6746), - [anon_sym_bitand] = ACTIONS(6751), - [anon_sym_not_eq] = ACTIONS(6751), - [anon_sym_DASH_DASH] = ACTIONS(6751), - [anon_sym_PLUS_PLUS] = ACTIONS(6751), - [anon_sym_DOT] = ACTIONS(6746), - [anon_sym_DOT_STAR] = ACTIONS(6751), - [anon_sym_DASH_GT] = ACTIONS(6746), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6751), - [anon_sym_override] = ACTIONS(6751), - [anon_sym_requires] = ACTIONS(6751), - [anon_sym_DASH_GT_STAR] = ACTIONS(6751), - }, - [STATE(2432)] = { - [sym_identifier] = ACTIONS(2768), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), - [anon_sym_COMMA] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_LPAREN2] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_SLASH] = ACTIONS(2768), - [anon_sym_PERCENT] = ACTIONS(2768), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2768), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_LT_EQ] = ACTIONS(2768), - [anon_sym_LT] = ACTIONS(2768), - [anon_sym_LT_LT] = ACTIONS(2768), - [anon_sym_GT_GT] = ACTIONS(2768), - [anon_sym___extension__] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2758), - [anon_sym_EQ] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2768), - [anon_sym_QMARK] = ACTIONS(2758), - [anon_sym_STAR_EQ] = ACTIONS(2758), - [anon_sym_SLASH_EQ] = ACTIONS(2758), - [anon_sym_PERCENT_EQ] = ACTIONS(2758), - [anon_sym_PLUS_EQ] = ACTIONS(2758), - [anon_sym_DASH_EQ] = ACTIONS(2758), - [anon_sym_LT_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_GT_EQ] = ACTIONS(2758), - [anon_sym_AMP_EQ] = ACTIONS(2758), - [anon_sym_CARET_EQ] = ACTIONS(2758), - [anon_sym_PIPE_EQ] = ACTIONS(2758), - [anon_sym_LT_EQ_GT] = ACTIONS(2758), - [anon_sym_or] = ACTIONS(2768), - [anon_sym_and] = ACTIONS(2768), - [anon_sym_bitor] = ACTIONS(2768), - [anon_sym_xor] = ACTIONS(2768), - [anon_sym_bitand] = ACTIONS(2768), - [anon_sym_not_eq] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2758), - [anon_sym_PLUS_PLUS] = ACTIONS(2758), - [anon_sym_DOT] = ACTIONS(2768), - [anon_sym_DOT_STAR] = ACTIONS(2758), - [anon_sym_DASH_GT] = ACTIONS(2768), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2768), - [anon_sym_override] = ACTIONS(2768), - [anon_sym_requires] = ACTIONS(2768), - [anon_sym_DASH_GT_STAR] = ACTIONS(2758), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_DASH_GT_STAR] = ACTIONS(7359), }, - [STATE(2433)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2286), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_signed] = ACTIONS(7801), - [anon_sym_unsigned] = ACTIONS(7801), - [anon_sym_long] = ACTIONS(7801), - [anon_sym_short] = ACTIONS(7801), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6798), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6800), - [anon_sym_override] = ACTIONS(6800), - [anon_sym_requires] = ACTIONS(6800), - [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + [STATE(2348)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6614), + [anon_sym_COMMA] = ACTIONS(6614), + [anon_sym_RPAREN] = ACTIONS(6614), + [anon_sym_LPAREN2] = ACTIONS(6614), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6612), + [anon_sym_SLASH] = ACTIONS(6612), + [anon_sym_PERCENT] = ACTIONS(6612), + [anon_sym_PIPE_PIPE] = ACTIONS(6614), + [anon_sym_AMP_AMP] = ACTIONS(6614), + [anon_sym_PIPE] = ACTIONS(6612), + [anon_sym_CARET] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(6612), + [anon_sym_EQ_EQ] = ACTIONS(6614), + [anon_sym_BANG_EQ] = ACTIONS(6614), + [anon_sym_GT] = ACTIONS(6612), + [anon_sym_GT_EQ] = ACTIONS(6614), + [anon_sym_LT_EQ] = ACTIONS(6612), + [anon_sym_LT] = ACTIONS(6612), + [anon_sym_LT_LT] = ACTIONS(6612), + [anon_sym_GT_GT] = ACTIONS(6612), + [anon_sym_SEMI] = ACTIONS(6614), + [anon_sym___extension__] = ACTIONS(6614), + [anon_sym___attribute__] = ACTIONS(6614), + [anon_sym___attribute] = ACTIONS(6612), + [anon_sym_COLON] = ACTIONS(6612), + [anon_sym_COLON_COLON] = ACTIONS(6614), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6614), + [anon_sym_LBRACE] = ACTIONS(6614), + [anon_sym_LBRACK] = ACTIONS(6612), + [anon_sym_EQ] = ACTIONS(6612), + [anon_sym_const] = ACTIONS(6612), + [anon_sym_constexpr] = ACTIONS(6614), + [anon_sym_volatile] = ACTIONS(6614), + [anon_sym_restrict] = ACTIONS(6614), + [anon_sym___restrict__] = ACTIONS(6614), + [anon_sym__Atomic] = ACTIONS(6614), + [anon_sym__Noreturn] = ACTIONS(6614), + [anon_sym_noreturn] = ACTIONS(6614), + [anon_sym__Nonnull] = ACTIONS(6614), + [anon_sym_mutable] = ACTIONS(6614), + [anon_sym_constinit] = ACTIONS(6614), + [anon_sym_consteval] = ACTIONS(6614), + [anon_sym_alignas] = ACTIONS(6614), + [anon_sym__Alignas] = ACTIONS(6614), + [anon_sym_QMARK] = ACTIONS(6614), + [anon_sym_STAR_EQ] = ACTIONS(6614), + [anon_sym_SLASH_EQ] = ACTIONS(6614), + [anon_sym_PERCENT_EQ] = ACTIONS(6614), + [anon_sym_PLUS_EQ] = ACTIONS(6614), + [anon_sym_DASH_EQ] = ACTIONS(6614), + [anon_sym_LT_LT_EQ] = ACTIONS(6614), + [anon_sym_GT_GT_EQ] = ACTIONS(6614), + [anon_sym_AMP_EQ] = ACTIONS(6614), + [anon_sym_CARET_EQ] = ACTIONS(6614), + [anon_sym_PIPE_EQ] = ACTIONS(6614), + [anon_sym_and_eq] = ACTIONS(6614), + [anon_sym_or_eq] = ACTIONS(6614), + [anon_sym_xor_eq] = ACTIONS(6614), + [anon_sym_LT_EQ_GT] = ACTIONS(6614), + [anon_sym_or] = ACTIONS(6612), + [anon_sym_and] = ACTIONS(6612), + [anon_sym_bitor] = ACTIONS(6614), + [anon_sym_xor] = ACTIONS(6612), + [anon_sym_bitand] = ACTIONS(6614), + [anon_sym_not_eq] = ACTIONS(6614), + [anon_sym_DASH_DASH] = ACTIONS(6614), + [anon_sym_PLUS_PLUS] = ACTIONS(6614), + [anon_sym_asm] = ACTIONS(6614), + [anon_sym___asm__] = ACTIONS(6614), + [anon_sym___asm] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6612), + [anon_sym_DOT_STAR] = ACTIONS(6614), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6614), + [anon_sym_decltype] = ACTIONS(6614), + [anon_sym_try] = ACTIONS(6614), + [anon_sym_DASH_GT_STAR] = ACTIONS(6614), }, - [STATE(2434)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), - [anon_sym_COMMA] = ACTIONS(6951), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_DASH] = ACTIONS(6949), - [anon_sym_PLUS] = ACTIONS(6949), - [anon_sym_STAR] = ACTIONS(6949), - [anon_sym_SLASH] = ACTIONS(6949), - [anon_sym_PERCENT] = ACTIONS(6949), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_PIPE] = ACTIONS(6949), - [anon_sym_CARET] = ACTIONS(6949), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_GT] = ACTIONS(6949), - [anon_sym_GT_EQ] = ACTIONS(6949), - [anon_sym_LT_EQ] = ACTIONS(6949), - [anon_sym_LT] = ACTIONS(6949), - [anon_sym_LT_LT] = ACTIONS(6949), - [anon_sym_GT_GT] = ACTIONS(6949), - [anon_sym___extension__] = ACTIONS(6951), - [anon_sym___attribute__] = ACTIONS(6951), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_COLON] = ACTIONS(6949), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(6951), - [anon_sym_LBRACK] = ACTIONS(6951), - [anon_sym_EQ] = ACTIONS(6949), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6951), - [anon_sym_volatile] = ACTIONS(6951), - [anon_sym_restrict] = ACTIONS(6951), - [anon_sym___restrict__] = ACTIONS(6951), - [anon_sym__Atomic] = ACTIONS(6951), - [anon_sym__Noreturn] = ACTIONS(6951), - [anon_sym_noreturn] = ACTIONS(6951), - [anon_sym__Nonnull] = ACTIONS(6951), - [anon_sym_mutable] = ACTIONS(6951), - [anon_sym_constinit] = ACTIONS(6951), - [anon_sym_consteval] = ACTIONS(6951), - [anon_sym_alignas] = ACTIONS(6951), - [anon_sym__Alignas] = ACTIONS(6951), - [anon_sym_QMARK] = ACTIONS(6951), - [anon_sym_STAR_EQ] = ACTIONS(6951), - [anon_sym_SLASH_EQ] = ACTIONS(6951), - [anon_sym_PERCENT_EQ] = ACTIONS(6951), - [anon_sym_PLUS_EQ] = ACTIONS(6951), - [anon_sym_DASH_EQ] = ACTIONS(6951), - [anon_sym_LT_LT_EQ] = ACTIONS(6951), - [anon_sym_GT_GT_EQ] = ACTIONS(6949), - [anon_sym_AMP_EQ] = ACTIONS(6951), - [anon_sym_CARET_EQ] = ACTIONS(6951), - [anon_sym_PIPE_EQ] = ACTIONS(6951), - [anon_sym_and_eq] = ACTIONS(6951), - [anon_sym_or_eq] = ACTIONS(6951), - [anon_sym_xor_eq] = ACTIONS(6951), - [anon_sym_LT_EQ_GT] = ACTIONS(6951), - [anon_sym_or] = ACTIONS(6949), - [anon_sym_and] = ACTIONS(6949), - [anon_sym_bitor] = ACTIONS(6951), - [anon_sym_xor] = ACTIONS(6949), - [anon_sym_bitand] = ACTIONS(6951), - [anon_sym_not_eq] = ACTIONS(6951), - [anon_sym_DASH_DASH] = ACTIONS(6951), - [anon_sym_PLUS_PLUS] = ACTIONS(6951), - [anon_sym_DOT] = ACTIONS(6949), - [anon_sym_DOT_STAR] = ACTIONS(6951), - [anon_sym_DASH_GT] = ACTIONS(6951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6951), - [anon_sym_decltype] = ACTIONS(6951), - [anon_sym_final] = ACTIONS(6951), - [anon_sym_override] = ACTIONS(6951), - [anon_sym_GT2] = ACTIONS(6951), - [anon_sym_requires] = ACTIONS(6951), + [STATE(2349)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6626), + [anon_sym_COMMA] = ACTIONS(6626), + [anon_sym_RPAREN] = ACTIONS(6626), + [anon_sym_LPAREN2] = ACTIONS(6626), + [anon_sym_DASH] = ACTIONS(6624), + [anon_sym_PLUS] = ACTIONS(6624), + [anon_sym_STAR] = ACTIONS(6624), + [anon_sym_SLASH] = ACTIONS(6624), + [anon_sym_PERCENT] = ACTIONS(6624), + [anon_sym_PIPE_PIPE] = ACTIONS(6626), + [anon_sym_AMP_AMP] = ACTIONS(6626), + [anon_sym_PIPE] = ACTIONS(6624), + [anon_sym_CARET] = ACTIONS(6624), + [anon_sym_AMP] = ACTIONS(6624), + [anon_sym_EQ_EQ] = ACTIONS(6626), + [anon_sym_BANG_EQ] = ACTIONS(6626), + [anon_sym_GT] = ACTIONS(6624), + [anon_sym_GT_EQ] = ACTIONS(6626), + [anon_sym_LT_EQ] = ACTIONS(6624), + [anon_sym_LT] = ACTIONS(6624), + [anon_sym_LT_LT] = ACTIONS(6624), + [anon_sym_GT_GT] = ACTIONS(6624), + [anon_sym_SEMI] = ACTIONS(6626), + [anon_sym___extension__] = ACTIONS(6626), + [anon_sym___attribute__] = ACTIONS(6626), + [anon_sym___attribute] = ACTIONS(6624), + [anon_sym_COLON] = ACTIONS(6624), + [anon_sym_COLON_COLON] = ACTIONS(6626), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6626), + [anon_sym_LBRACE] = ACTIONS(6626), + [anon_sym_LBRACK] = ACTIONS(6624), + [anon_sym_EQ] = ACTIONS(6624), + [anon_sym_const] = ACTIONS(6624), + [anon_sym_constexpr] = ACTIONS(6626), + [anon_sym_volatile] = ACTIONS(6626), + [anon_sym_restrict] = ACTIONS(6626), + [anon_sym___restrict__] = ACTIONS(6626), + [anon_sym__Atomic] = ACTIONS(6626), + [anon_sym__Noreturn] = ACTIONS(6626), + [anon_sym_noreturn] = ACTIONS(6626), + [anon_sym__Nonnull] = ACTIONS(6626), + [anon_sym_mutable] = ACTIONS(6626), + [anon_sym_constinit] = ACTIONS(6626), + [anon_sym_consteval] = ACTIONS(6626), + [anon_sym_alignas] = ACTIONS(6626), + [anon_sym__Alignas] = ACTIONS(6626), + [anon_sym_QMARK] = ACTIONS(6626), + [anon_sym_STAR_EQ] = ACTIONS(6626), + [anon_sym_SLASH_EQ] = ACTIONS(6626), + [anon_sym_PERCENT_EQ] = ACTIONS(6626), + [anon_sym_PLUS_EQ] = ACTIONS(6626), + [anon_sym_DASH_EQ] = ACTIONS(6626), + [anon_sym_LT_LT_EQ] = ACTIONS(6626), + [anon_sym_GT_GT_EQ] = ACTIONS(6626), + [anon_sym_AMP_EQ] = ACTIONS(6626), + [anon_sym_CARET_EQ] = ACTIONS(6626), + [anon_sym_PIPE_EQ] = ACTIONS(6626), + [anon_sym_and_eq] = ACTIONS(6626), + [anon_sym_or_eq] = ACTIONS(6626), + [anon_sym_xor_eq] = ACTIONS(6626), + [anon_sym_LT_EQ_GT] = ACTIONS(6626), + [anon_sym_or] = ACTIONS(6624), + [anon_sym_and] = ACTIONS(6624), + [anon_sym_bitor] = ACTIONS(6626), + [anon_sym_xor] = ACTIONS(6624), + [anon_sym_bitand] = ACTIONS(6626), + [anon_sym_not_eq] = ACTIONS(6626), + [anon_sym_DASH_DASH] = ACTIONS(6626), + [anon_sym_PLUS_PLUS] = ACTIONS(6626), + [anon_sym_asm] = ACTIONS(6626), + [anon_sym___asm__] = ACTIONS(6626), + [anon_sym___asm] = ACTIONS(6624), + [anon_sym_DOT] = ACTIONS(6624), + [anon_sym_DOT_STAR] = ACTIONS(6626), + [anon_sym_DASH_GT] = ACTIONS(6624), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6626), + [anon_sym_decltype] = ACTIONS(6626), + [anon_sym_try] = ACTIONS(6626), + [anon_sym_DASH_GT_STAR] = ACTIONS(6626), }, - [STATE(2435)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), - [anon_sym_COMMA] = ACTIONS(6951), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_DASH] = ACTIONS(6949), - [anon_sym_PLUS] = ACTIONS(6949), - [anon_sym_STAR] = ACTIONS(6949), - [anon_sym_SLASH] = ACTIONS(6949), - [anon_sym_PERCENT] = ACTIONS(6949), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_PIPE] = ACTIONS(6949), - [anon_sym_CARET] = ACTIONS(6949), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_GT] = ACTIONS(6949), - [anon_sym_GT_EQ] = ACTIONS(6949), - [anon_sym_LT_EQ] = ACTIONS(6949), - [anon_sym_LT] = ACTIONS(6949), - [anon_sym_LT_LT] = ACTIONS(6949), - [anon_sym_GT_GT] = ACTIONS(6949), - [anon_sym___extension__] = ACTIONS(6951), - [anon_sym___attribute__] = ACTIONS(6951), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_COLON] = ACTIONS(6949), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(6951), - [anon_sym_LBRACK] = ACTIONS(6951), - [anon_sym_EQ] = ACTIONS(6949), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6951), - [anon_sym_volatile] = ACTIONS(6951), - [anon_sym_restrict] = ACTIONS(6951), - [anon_sym___restrict__] = ACTIONS(6951), - [anon_sym__Atomic] = ACTIONS(6951), - [anon_sym__Noreturn] = ACTIONS(6951), - [anon_sym_noreturn] = ACTIONS(6951), - [anon_sym__Nonnull] = ACTIONS(6951), - [anon_sym_mutable] = ACTIONS(6951), - [anon_sym_constinit] = ACTIONS(6951), - [anon_sym_consteval] = ACTIONS(6951), - [anon_sym_alignas] = ACTIONS(6951), - [anon_sym__Alignas] = ACTIONS(6951), - [anon_sym_QMARK] = ACTIONS(6951), - [anon_sym_STAR_EQ] = ACTIONS(6951), - [anon_sym_SLASH_EQ] = ACTIONS(6951), - [anon_sym_PERCENT_EQ] = ACTIONS(6951), - [anon_sym_PLUS_EQ] = ACTIONS(6951), - [anon_sym_DASH_EQ] = ACTIONS(6951), - [anon_sym_LT_LT_EQ] = ACTIONS(6951), - [anon_sym_GT_GT_EQ] = ACTIONS(6949), - [anon_sym_AMP_EQ] = ACTIONS(6951), - [anon_sym_CARET_EQ] = ACTIONS(6951), - [anon_sym_PIPE_EQ] = ACTIONS(6951), - [anon_sym_and_eq] = ACTIONS(6951), - [anon_sym_or_eq] = ACTIONS(6951), - [anon_sym_xor_eq] = ACTIONS(6951), - [anon_sym_LT_EQ_GT] = ACTIONS(6951), - [anon_sym_or] = ACTIONS(6949), - [anon_sym_and] = ACTIONS(6949), - [anon_sym_bitor] = ACTIONS(6951), - [anon_sym_xor] = ACTIONS(6949), - [anon_sym_bitand] = ACTIONS(6951), - [anon_sym_not_eq] = ACTIONS(6951), - [anon_sym_DASH_DASH] = ACTIONS(6951), - [anon_sym_PLUS_PLUS] = ACTIONS(6951), - [anon_sym_DOT] = ACTIONS(6949), - [anon_sym_DOT_STAR] = ACTIONS(6951), - [anon_sym_DASH_GT] = ACTIONS(6951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6951), - [anon_sym_decltype] = ACTIONS(6951), - [anon_sym_final] = ACTIONS(6951), - [anon_sym_override] = ACTIONS(6951), - [anon_sym_GT2] = ACTIONS(6951), - [anon_sym_requires] = ACTIONS(6951), + [STATE(2350)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6630), + [anon_sym_COMMA] = ACTIONS(6630), + [anon_sym_RPAREN] = ACTIONS(6630), + [anon_sym_LPAREN2] = ACTIONS(6630), + [anon_sym_DASH] = ACTIONS(6628), + [anon_sym_PLUS] = ACTIONS(6628), + [anon_sym_STAR] = ACTIONS(6628), + [anon_sym_SLASH] = ACTIONS(6628), + [anon_sym_PERCENT] = ACTIONS(6628), + [anon_sym_PIPE_PIPE] = ACTIONS(6630), + [anon_sym_AMP_AMP] = ACTIONS(6630), + [anon_sym_PIPE] = ACTIONS(6628), + [anon_sym_CARET] = ACTIONS(6628), + [anon_sym_AMP] = ACTIONS(6628), + [anon_sym_EQ_EQ] = ACTIONS(6630), + [anon_sym_BANG_EQ] = ACTIONS(6630), + [anon_sym_GT] = ACTIONS(6628), + [anon_sym_GT_EQ] = ACTIONS(6630), + [anon_sym_LT_EQ] = ACTIONS(6628), + [anon_sym_LT] = ACTIONS(6628), + [anon_sym_LT_LT] = ACTIONS(6628), + [anon_sym_GT_GT] = ACTIONS(6628), + [anon_sym_SEMI] = ACTIONS(6630), + [anon_sym___extension__] = ACTIONS(6630), + [anon_sym___attribute__] = ACTIONS(6630), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_COLON] = ACTIONS(6628), + [anon_sym_COLON_COLON] = ACTIONS(6630), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), + [anon_sym_LBRACE] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(6628), + [anon_sym_EQ] = ACTIONS(6628), + [anon_sym_const] = ACTIONS(6628), + [anon_sym_constexpr] = ACTIONS(6630), + [anon_sym_volatile] = ACTIONS(6630), + [anon_sym_restrict] = ACTIONS(6630), + [anon_sym___restrict__] = ACTIONS(6630), + [anon_sym__Atomic] = ACTIONS(6630), + [anon_sym__Noreturn] = ACTIONS(6630), + [anon_sym_noreturn] = ACTIONS(6630), + [anon_sym__Nonnull] = ACTIONS(6630), + [anon_sym_mutable] = ACTIONS(6630), + [anon_sym_constinit] = ACTIONS(6630), + [anon_sym_consteval] = ACTIONS(6630), + [anon_sym_alignas] = ACTIONS(6630), + [anon_sym__Alignas] = ACTIONS(6630), + [anon_sym_QMARK] = ACTIONS(6630), + [anon_sym_STAR_EQ] = ACTIONS(6630), + [anon_sym_SLASH_EQ] = ACTIONS(6630), + [anon_sym_PERCENT_EQ] = ACTIONS(6630), + [anon_sym_PLUS_EQ] = ACTIONS(6630), + [anon_sym_DASH_EQ] = ACTIONS(6630), + [anon_sym_LT_LT_EQ] = ACTIONS(6630), + [anon_sym_GT_GT_EQ] = ACTIONS(6630), + [anon_sym_AMP_EQ] = ACTIONS(6630), + [anon_sym_CARET_EQ] = ACTIONS(6630), + [anon_sym_PIPE_EQ] = ACTIONS(6630), + [anon_sym_and_eq] = ACTIONS(6630), + [anon_sym_or_eq] = ACTIONS(6630), + [anon_sym_xor_eq] = ACTIONS(6630), + [anon_sym_LT_EQ_GT] = ACTIONS(6630), + [anon_sym_or] = ACTIONS(6628), + [anon_sym_and] = ACTIONS(6628), + [anon_sym_bitor] = ACTIONS(6630), + [anon_sym_xor] = ACTIONS(6628), + [anon_sym_bitand] = ACTIONS(6630), + [anon_sym_not_eq] = ACTIONS(6630), + [anon_sym_DASH_DASH] = ACTIONS(6630), + [anon_sym_PLUS_PLUS] = ACTIONS(6630), + [anon_sym_asm] = ACTIONS(6630), + [anon_sym___asm__] = ACTIONS(6630), + [anon_sym___asm] = ACTIONS(6628), + [anon_sym_DOT] = ACTIONS(6628), + [anon_sym_DOT_STAR] = ACTIONS(6630), + [anon_sym_DASH_GT] = ACTIONS(6628), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6630), + [anon_sym_decltype] = ACTIONS(6630), + [anon_sym_try] = ACTIONS(6630), + [anon_sym_DASH_GT_STAR] = ACTIONS(6630), }, - [STATE(2436)] = { - [sym_attribute_specifier] = STATE(2436), - [aux_sym_type_definition_repeat1] = STATE(2436), - [sym_identifier] = ACTIONS(6553), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6555), - [anon_sym_COMMA] = ACTIONS(6555), - [anon_sym_RPAREN] = ACTIONS(6555), - [aux_sym_preproc_if_token2] = ACTIONS(6555), - [aux_sym_preproc_else_token1] = ACTIONS(6555), - [aux_sym_preproc_elif_token1] = ACTIONS(6553), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6555), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6555), - [anon_sym_LPAREN2] = ACTIONS(6555), - [anon_sym_DASH] = ACTIONS(6553), - [anon_sym_PLUS] = ACTIONS(6553), - [anon_sym_STAR] = ACTIONS(6555), - [anon_sym_SLASH] = ACTIONS(6553), - [anon_sym_PERCENT] = ACTIONS(6555), - [anon_sym_PIPE_PIPE] = ACTIONS(6555), - [anon_sym_AMP_AMP] = ACTIONS(6555), - [anon_sym_PIPE] = ACTIONS(6553), - [anon_sym_CARET] = ACTIONS(6555), - [anon_sym_AMP] = ACTIONS(6553), - [anon_sym_EQ_EQ] = ACTIONS(6555), - [anon_sym_BANG_EQ] = ACTIONS(6555), - [anon_sym_GT] = ACTIONS(6553), - [anon_sym_GT_EQ] = ACTIONS(6555), - [anon_sym_LT_EQ] = ACTIONS(6553), - [anon_sym_LT] = ACTIONS(6553), - [anon_sym_LT_LT] = ACTIONS(6555), - [anon_sym_GT_GT] = ACTIONS(6555), - [anon_sym_SEMI] = ACTIONS(6555), - [anon_sym___extension__] = ACTIONS(6553), - [anon_sym___attribute__] = ACTIONS(8036), - [anon_sym___attribute] = ACTIONS(8036), - [anon_sym_COLON] = ACTIONS(6553), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6555), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6555), - [anon_sym_RBRACE] = ACTIONS(6555), - [anon_sym_LBRACK] = ACTIONS(6553), - [anon_sym_const] = ACTIONS(6553), - [anon_sym_constexpr] = ACTIONS(6553), - [anon_sym_volatile] = ACTIONS(6553), - [anon_sym_restrict] = ACTIONS(6553), - [anon_sym___restrict__] = ACTIONS(6553), - [anon_sym__Atomic] = ACTIONS(6553), - [anon_sym__Noreturn] = ACTIONS(6553), - [anon_sym_noreturn] = ACTIONS(6553), - [anon_sym__Nonnull] = ACTIONS(6553), - [anon_sym_mutable] = ACTIONS(6553), - [anon_sym_constinit] = ACTIONS(6553), - [anon_sym_consteval] = ACTIONS(6553), - [anon_sym_alignas] = ACTIONS(6553), - [anon_sym__Alignas] = ACTIONS(6553), - [anon_sym_QMARK] = ACTIONS(6555), - [anon_sym_LT_EQ_GT] = ACTIONS(6555), - [anon_sym_or] = ACTIONS(6553), - [anon_sym_and] = ACTIONS(6553), - [anon_sym_bitor] = ACTIONS(6553), - [anon_sym_xor] = ACTIONS(6553), - [anon_sym_bitand] = ACTIONS(6553), - [anon_sym_not_eq] = ACTIONS(6553), - [anon_sym_DASH_DASH] = ACTIONS(6555), - [anon_sym_PLUS_PLUS] = ACTIONS(6555), - [anon_sym_asm] = ACTIONS(6553), - [anon_sym___asm__] = ACTIONS(6553), - [anon_sym___asm] = ACTIONS(6553), - [anon_sym_DOT] = ACTIONS(6553), - [anon_sym_DOT_STAR] = ACTIONS(6555), - [anon_sym_DASH_GT] = ACTIONS(6555), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6553), - [anon_sym_override] = ACTIONS(6553), - [anon_sym_noexcept] = ACTIONS(6553), - [anon_sym_throw] = ACTIONS(6553), - [anon_sym_requires] = ACTIONS(6553), - [anon_sym_COLON_RBRACK] = ACTIONS(6555), + [STATE(2351)] = { + [sym_decltype_auto] = STATE(3090), + [sym_template_argument_list] = STATE(2594), + [aux_sym_sized_type_specifier_repeat1] = STATE(2476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), + [anon_sym_COMMA] = ACTIONS(5643), + [anon_sym_LPAREN2] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5636), + [anon_sym_PLUS] = ACTIONS(5636), + [anon_sym_STAR] = ACTIONS(5636), + [anon_sym_SLASH] = ACTIONS(5636), + [anon_sym_PERCENT] = ACTIONS(5636), + [anon_sym_PIPE_PIPE] = ACTIONS(5643), + [anon_sym_AMP_AMP] = ACTIONS(5643), + [anon_sym_PIPE] = ACTIONS(5636), + [anon_sym_CARET] = ACTIONS(5636), + [anon_sym_AMP] = ACTIONS(5636), + [anon_sym_EQ_EQ] = ACTIONS(5643), + [anon_sym_BANG_EQ] = ACTIONS(5643), + [anon_sym_GT] = ACTIONS(5636), + [anon_sym_GT_EQ] = ACTIONS(5636), + [anon_sym_LT_EQ] = ACTIONS(5636), + [anon_sym_LT] = ACTIONS(8032), + [anon_sym_LT_LT] = ACTIONS(5636), + [anon_sym_GT_GT] = ACTIONS(5636), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5643), + [anon_sym_signed] = ACTIONS(7032), + [anon_sym_unsigned] = ACTIONS(7032), + [anon_sym_long] = ACTIONS(7032), + [anon_sym_short] = ACTIONS(7032), + [anon_sym_LBRACK] = ACTIONS(5643), + [anon_sym_EQ] = ACTIONS(5636), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5643), + [anon_sym_volatile] = ACTIONS(5643), + [anon_sym_restrict] = ACTIONS(5643), + [anon_sym___restrict__] = ACTIONS(5643), + [anon_sym__Atomic] = ACTIONS(5643), + [anon_sym__Noreturn] = ACTIONS(5643), + [anon_sym_noreturn] = ACTIONS(5643), + [anon_sym__Nonnull] = ACTIONS(5643), + [anon_sym_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [anon_sym_alignas] = ACTIONS(5643), + [anon_sym__Alignas] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5643), + [anon_sym_STAR_EQ] = ACTIONS(5643), + [anon_sym_SLASH_EQ] = ACTIONS(5643), + [anon_sym_PERCENT_EQ] = ACTIONS(5643), + [anon_sym_PLUS_EQ] = ACTIONS(5643), + [anon_sym_DASH_EQ] = ACTIONS(5643), + [anon_sym_LT_LT_EQ] = ACTIONS(5643), + [anon_sym_GT_GT_EQ] = ACTIONS(5636), + [anon_sym_AMP_EQ] = ACTIONS(5643), + [anon_sym_CARET_EQ] = ACTIONS(5643), + [anon_sym_PIPE_EQ] = ACTIONS(5643), + [anon_sym_and_eq] = ACTIONS(5643), + [anon_sym_or_eq] = ACTIONS(5643), + [anon_sym_xor_eq] = ACTIONS(5643), + [anon_sym_LT_EQ_GT] = ACTIONS(5643), + [anon_sym_or] = ACTIONS(5636), + [anon_sym_and] = ACTIONS(5636), + [anon_sym_bitor] = ACTIONS(5643), + [anon_sym_xor] = ACTIONS(5636), + [anon_sym_bitand] = ACTIONS(5643), + [anon_sym_not_eq] = ACTIONS(5643), + [anon_sym_DASH_DASH] = ACTIONS(5643), + [anon_sym_PLUS_PLUS] = ACTIONS(5643), + [anon_sym_DOT] = ACTIONS(5636), + [anon_sym_DOT_STAR] = ACTIONS(5643), + [anon_sym_DASH_GT] = ACTIONS(5643), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7036), + [anon_sym_decltype] = ACTIONS(7038), + [anon_sym_final] = ACTIONS(5643), + [anon_sym_override] = ACTIONS(5643), + [anon_sym_GT2] = ACTIONS(5643), + [anon_sym_requires] = ACTIONS(5643), }, - [STATE(2437)] = { - [sym_attribute_specifier] = STATE(4161), - [sym_attribute_declaration] = STATE(4518), - [sym_gnu_asm_expression] = STATE(8999), - [sym_virtual_specifier] = STATE(4532), - [sym__function_exception_specification] = STATE(2907), - [sym__function_attributes_end] = STATE(4242), - [sym__function_postfix] = STATE(4984), - [sym_trailing_return_type] = STATE(4424), - [sym_noexcept] = STATE(2907), - [sym_throw_specifier] = STATE(2907), - [sym_requires_clause] = STATE(4984), - [aux_sym_type_definition_repeat1] = STATE(4161), - [aux_sym_attributed_declarator_repeat1] = STATE(4518), - [aux_sym__function_postfix_repeat1] = STATE(4532), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7546), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6361), - [anon_sym___attribute] = ACTIONS(6363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7546), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7951), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6384), - [anon_sym_override] = ACTIONS(6384), - [anon_sym_GT2] = ACTIONS(7544), - [anon_sym_noexcept] = ACTIONS(6377), - [anon_sym_throw] = ACTIONS(6379), - [anon_sym_requires] = ACTIONS(6386), + [STATE(2352)] = { + [sym_type_qualifier] = STATE(2352), + [sym_alignas_qualifier] = STATE(2492), + [aux_sym__type_definition_type_repeat1] = STATE(2352), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), + [anon_sym_COMMA] = ACTIONS(6891), + [anon_sym_LPAREN2] = ACTIONS(6891), + [anon_sym_DASH] = ACTIONS(6889), + [anon_sym_PLUS] = ACTIONS(6889), + [anon_sym_STAR] = ACTIONS(6889), + [anon_sym_SLASH] = ACTIONS(6889), + [anon_sym_PERCENT] = ACTIONS(6889), + [anon_sym_PIPE_PIPE] = ACTIONS(6891), + [anon_sym_AMP_AMP] = ACTIONS(6891), + [anon_sym_PIPE] = ACTIONS(6889), + [anon_sym_CARET] = ACTIONS(6889), + [anon_sym_AMP] = ACTIONS(6889), + [anon_sym_EQ_EQ] = ACTIONS(6891), + [anon_sym_BANG_EQ] = ACTIONS(6891), + [anon_sym_GT] = ACTIONS(6889), + [anon_sym_GT_EQ] = ACTIONS(6889), + [anon_sym_LT_EQ] = ACTIONS(6889), + [anon_sym_LT] = ACTIONS(6889), + [anon_sym_LT_LT] = ACTIONS(6889), + [anon_sym_GT_GT] = ACTIONS(6889), + [anon_sym___extension__] = ACTIONS(8034), + [anon_sym___attribute__] = ACTIONS(6891), + [anon_sym___attribute] = ACTIONS(6889), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6891), + [anon_sym_LBRACK] = ACTIONS(6889), + [anon_sym_EQ] = ACTIONS(6889), + [anon_sym_const] = ACTIONS(8037), + [anon_sym_constexpr] = ACTIONS(8034), + [anon_sym_volatile] = ACTIONS(8034), + [anon_sym_restrict] = ACTIONS(8034), + [anon_sym___restrict__] = ACTIONS(8034), + [anon_sym__Atomic] = ACTIONS(8034), + [anon_sym__Noreturn] = ACTIONS(8034), + [anon_sym_noreturn] = ACTIONS(8034), + [anon_sym__Nonnull] = ACTIONS(8034), + [anon_sym_mutable] = ACTIONS(8034), + [anon_sym_constinit] = ACTIONS(8034), + [anon_sym_consteval] = ACTIONS(8034), + [anon_sym_alignas] = ACTIONS(8040), + [anon_sym__Alignas] = ACTIONS(8040), + [anon_sym_QMARK] = ACTIONS(6891), + [anon_sym_STAR_EQ] = ACTIONS(6891), + [anon_sym_SLASH_EQ] = ACTIONS(6891), + [anon_sym_PERCENT_EQ] = ACTIONS(6891), + [anon_sym_PLUS_EQ] = ACTIONS(6891), + [anon_sym_DASH_EQ] = ACTIONS(6891), + [anon_sym_LT_LT_EQ] = ACTIONS(6891), + [anon_sym_GT_GT_EQ] = ACTIONS(6889), + [anon_sym_AMP_EQ] = ACTIONS(6891), + [anon_sym_CARET_EQ] = ACTIONS(6891), + [anon_sym_PIPE_EQ] = ACTIONS(6891), + [anon_sym_and_eq] = ACTIONS(6891), + [anon_sym_or_eq] = ACTIONS(6891), + [anon_sym_xor_eq] = ACTIONS(6891), + [anon_sym_LT_EQ_GT] = ACTIONS(6891), + [anon_sym_or] = ACTIONS(6889), + [anon_sym_and] = ACTIONS(6889), + [anon_sym_bitor] = ACTIONS(6891), + [anon_sym_xor] = ACTIONS(6889), + [anon_sym_bitand] = ACTIONS(6891), + [anon_sym_not_eq] = ACTIONS(6891), + [anon_sym_DASH_DASH] = ACTIONS(6891), + [anon_sym_PLUS_PLUS] = ACTIONS(6891), + [anon_sym_asm] = ACTIONS(6891), + [anon_sym___asm__] = ACTIONS(6891), + [anon_sym___asm] = ACTIONS(6889), + [anon_sym_DOT] = ACTIONS(6889), + [anon_sym_DOT_STAR] = ACTIONS(6891), + [anon_sym_DASH_GT] = ACTIONS(6891), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6891), + [anon_sym_override] = ACTIONS(6891), + [anon_sym_GT2] = ACTIONS(6891), + [anon_sym_noexcept] = ACTIONS(6891), + [anon_sym_throw] = ACTIONS(6891), + [anon_sym_requires] = ACTIONS(6891), }, - [STATE(2438)] = { - [sym_attribute_specifier] = STATE(4161), - [sym_attribute_declaration] = STATE(4518), - [sym_gnu_asm_expression] = STATE(8999), - [sym_virtual_specifier] = STATE(4532), - [sym__function_exception_specification] = STATE(2912), - [sym__function_attributes_end] = STATE(4292), - [sym__function_postfix] = STATE(5047), - [sym_trailing_return_type] = STATE(4325), - [sym_noexcept] = STATE(2912), - [sym_throw_specifier] = STATE(2912), - [sym_requires_clause] = STATE(5047), - [aux_sym_type_definition_repeat1] = STATE(4161), - [aux_sym_attributed_declarator_repeat1] = STATE(4518), - [aux_sym__function_postfix_repeat1] = STATE(4532), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7629), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym___attribute__] = ACTIONS(6361), - [anon_sym___attribute] = ACTIONS(6363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7629), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7627), - [anon_sym_or_eq] = ACTIONS(7627), - [anon_sym_xor_eq] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(8039), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6384), - [anon_sym_override] = ACTIONS(6384), - [anon_sym_GT2] = ACTIONS(7627), - [anon_sym_noexcept] = ACTIONS(6377), - [anon_sym_throw] = ACTIONS(6379), - [anon_sym_requires] = ACTIONS(6386), + [STATE(2353)] = { + [sym_attribute_specifier] = STATE(2353), + [aux_sym_type_definition_repeat1] = STATE(2353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6937), + [anon_sym_COMMA] = ACTIONS(6937), + [anon_sym_RPAREN] = ACTIONS(6937), + [anon_sym_LPAREN2] = ACTIONS(6937), + [anon_sym_DASH] = ACTIONS(6935), + [anon_sym_PLUS] = ACTIONS(6935), + [anon_sym_STAR] = ACTIONS(6935), + [anon_sym_SLASH] = ACTIONS(6935), + [anon_sym_PERCENT] = ACTIONS(6935), + [anon_sym_PIPE_PIPE] = ACTIONS(6937), + [anon_sym_AMP_AMP] = ACTIONS(6937), + [anon_sym_PIPE] = ACTIONS(6935), + [anon_sym_CARET] = ACTIONS(6935), + [anon_sym_AMP] = ACTIONS(6935), + [anon_sym_EQ_EQ] = ACTIONS(6937), + [anon_sym_BANG_EQ] = ACTIONS(6937), + [anon_sym_GT] = ACTIONS(6935), + [anon_sym_GT_EQ] = ACTIONS(6937), + [anon_sym_LT_EQ] = ACTIONS(6935), + [anon_sym_LT] = ACTIONS(6935), + [anon_sym_LT_LT] = ACTIONS(6935), + [anon_sym_GT_GT] = ACTIONS(6935), + [anon_sym___extension__] = ACTIONS(6937), + [anon_sym___attribute__] = ACTIONS(8043), + [anon_sym___attribute] = ACTIONS(8046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6937), + [anon_sym_LBRACK] = ACTIONS(6935), + [anon_sym_EQ] = ACTIONS(6935), + [anon_sym_const] = ACTIONS(6935), + [anon_sym_constexpr] = ACTIONS(6937), + [anon_sym_volatile] = ACTIONS(6937), + [anon_sym_restrict] = ACTIONS(6937), + [anon_sym___restrict__] = ACTIONS(6937), + [anon_sym__Atomic] = ACTIONS(6937), + [anon_sym__Noreturn] = ACTIONS(6937), + [anon_sym_noreturn] = ACTIONS(6937), + [anon_sym__Nonnull] = ACTIONS(6937), + [anon_sym_mutable] = ACTIONS(6937), + [anon_sym_constinit] = ACTIONS(6937), + [anon_sym_consteval] = ACTIONS(6937), + [anon_sym_alignas] = ACTIONS(6937), + [anon_sym__Alignas] = ACTIONS(6937), + [anon_sym_QMARK] = ACTIONS(6937), + [anon_sym_STAR_EQ] = ACTIONS(6937), + [anon_sym_SLASH_EQ] = ACTIONS(6937), + [anon_sym_PERCENT_EQ] = ACTIONS(6937), + [anon_sym_PLUS_EQ] = ACTIONS(6937), + [anon_sym_DASH_EQ] = ACTIONS(6937), + [anon_sym_LT_LT_EQ] = ACTIONS(6937), + [anon_sym_GT_GT_EQ] = ACTIONS(6937), + [anon_sym_AMP_EQ] = ACTIONS(6937), + [anon_sym_CARET_EQ] = ACTIONS(6937), + [anon_sym_PIPE_EQ] = ACTIONS(6937), + [anon_sym_and_eq] = ACTIONS(6937), + [anon_sym_or_eq] = ACTIONS(6937), + [anon_sym_xor_eq] = ACTIONS(6937), + [anon_sym_LT_EQ_GT] = ACTIONS(6937), + [anon_sym_or] = ACTIONS(6935), + [anon_sym_and] = ACTIONS(6935), + [anon_sym_bitor] = ACTIONS(6937), + [anon_sym_xor] = ACTIONS(6935), + [anon_sym_bitand] = ACTIONS(6937), + [anon_sym_not_eq] = ACTIONS(6937), + [anon_sym_DASH_DASH] = ACTIONS(6937), + [anon_sym_PLUS_PLUS] = ACTIONS(6937), + [anon_sym_asm] = ACTIONS(6937), + [anon_sym___asm__] = ACTIONS(6937), + [anon_sym___asm] = ACTIONS(6935), + [anon_sym_DOT] = ACTIONS(6935), + [anon_sym_DOT_STAR] = ACTIONS(6937), + [anon_sym_DASH_GT] = ACTIONS(6935), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6937), + [anon_sym_override] = ACTIONS(6937), + [anon_sym_noexcept] = ACTIONS(6937), + [anon_sym_throw] = ACTIONS(6937), + [anon_sym_requires] = ACTIONS(6937), + [anon_sym_DASH_GT_STAR] = ACTIONS(6937), }, - [STATE(2439)] = { - [sym_string_literal] = STATE(2439), - [sym_raw_string_literal] = STATE(2439), - [aux_sym_concatenated_string_repeat1] = STATE(2439), - [sym_identifier] = ACTIONS(8042), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8045), - [anon_sym_COMMA] = ACTIONS(8045), - [anon_sym_RPAREN] = ACTIONS(8045), - [aux_sym_preproc_if_token2] = ACTIONS(8045), - [aux_sym_preproc_else_token1] = ACTIONS(8045), - [aux_sym_preproc_elif_token1] = ACTIONS(8047), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8045), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8045), - [anon_sym_LPAREN2] = ACTIONS(8045), - [anon_sym_DASH] = ACTIONS(8047), - [anon_sym_PLUS] = ACTIONS(8047), - [anon_sym_STAR] = ACTIONS(8047), - [anon_sym_SLASH] = ACTIONS(8047), - [anon_sym_PERCENT] = ACTIONS(8047), - [anon_sym_PIPE_PIPE] = ACTIONS(8045), - [anon_sym_AMP_AMP] = ACTIONS(8045), - [anon_sym_PIPE] = ACTIONS(8047), - [anon_sym_CARET] = ACTIONS(8047), - [anon_sym_AMP] = ACTIONS(8047), - [anon_sym_EQ_EQ] = ACTIONS(8045), - [anon_sym_BANG_EQ] = ACTIONS(8045), - [anon_sym_GT] = ACTIONS(8047), - [anon_sym_GT_EQ] = ACTIONS(8045), - [anon_sym_LT_EQ] = ACTIONS(8047), - [anon_sym_LT] = ACTIONS(8047), - [anon_sym_LT_LT] = ACTIONS(8047), - [anon_sym_GT_GT] = ACTIONS(8047), - [anon_sym_SEMI] = ACTIONS(8045), - [anon_sym_COLON] = ACTIONS(8047), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8045), - [anon_sym_RBRACE] = ACTIONS(8045), - [anon_sym_LBRACK] = ACTIONS(8045), - [anon_sym_EQ] = ACTIONS(8047), - [anon_sym_QMARK] = ACTIONS(8045), - [anon_sym_STAR_EQ] = ACTIONS(8045), - [anon_sym_SLASH_EQ] = ACTIONS(8045), - [anon_sym_PERCENT_EQ] = ACTIONS(8045), - [anon_sym_PLUS_EQ] = ACTIONS(8045), - [anon_sym_DASH_EQ] = ACTIONS(8045), - [anon_sym_LT_LT_EQ] = ACTIONS(8045), - [anon_sym_GT_GT_EQ] = ACTIONS(8045), - [anon_sym_AMP_EQ] = ACTIONS(8045), - [anon_sym_CARET_EQ] = ACTIONS(8045), - [anon_sym_PIPE_EQ] = ACTIONS(8045), - [anon_sym_and_eq] = ACTIONS(8047), - [anon_sym_or_eq] = ACTIONS(8047), - [anon_sym_xor_eq] = ACTIONS(8047), - [anon_sym_LT_EQ_GT] = ACTIONS(8045), - [anon_sym_or] = ACTIONS(8047), - [anon_sym_and] = ACTIONS(8047), - [anon_sym_bitor] = ACTIONS(8047), - [anon_sym_xor] = ACTIONS(8047), - [anon_sym_bitand] = ACTIONS(8047), - [anon_sym_not_eq] = ACTIONS(8047), - [anon_sym_DASH_DASH] = ACTIONS(8045), - [anon_sym_PLUS_PLUS] = ACTIONS(8045), - [anon_sym_DOT] = ACTIONS(8047), - [anon_sym_DOT_STAR] = ACTIONS(8045), - [anon_sym_DASH_GT] = ACTIONS(8045), - [anon_sym_L_DQUOTE] = ACTIONS(8049), - [anon_sym_u_DQUOTE] = ACTIONS(8049), - [anon_sym_U_DQUOTE] = ACTIONS(8049), - [anon_sym_u8_DQUOTE] = ACTIONS(8049), - [anon_sym_DQUOTE] = ACTIONS(8049), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8052), - [anon_sym_LR_DQUOTE] = ACTIONS(8052), - [anon_sym_uR_DQUOTE] = ACTIONS(8052), - [anon_sym_UR_DQUOTE] = ACTIONS(8052), - [anon_sym_u8R_DQUOTE] = ACTIONS(8052), - [anon_sym_COLON_RBRACK] = ACTIONS(8045), - [sym_literal_suffix] = ACTIONS(8047), + [STATE(2354)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2355), + [sym_identifier] = ACTIONS(6999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), + [anon_sym_COMMA] = ACTIONS(7525), + [anon_sym_RPAREN] = ACTIONS(7525), + [anon_sym_LPAREN2] = ACTIONS(7525), + [anon_sym_DASH] = ACTIONS(7528), + [anon_sym_PLUS] = ACTIONS(7528), + [anon_sym_STAR] = ACTIONS(7528), + [anon_sym_SLASH] = ACTIONS(7528), + [anon_sym_PERCENT] = ACTIONS(7528), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_AMP_AMP] = ACTIONS(7525), + [anon_sym_PIPE] = ACTIONS(7528), + [anon_sym_CARET] = ACTIONS(7528), + [anon_sym_AMP] = ACTIONS(7528), + [anon_sym_EQ_EQ] = ACTIONS(7525), + [anon_sym_BANG_EQ] = ACTIONS(7525), + [anon_sym_GT] = ACTIONS(7528), + [anon_sym_GT_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7528), + [anon_sym_LT] = ACTIONS(7528), + [anon_sym_LT_LT] = ACTIONS(7528), + [anon_sym_GT_GT] = ACTIONS(7528), + [anon_sym___extension__] = ACTIONS(7528), + [anon_sym___attribute__] = ACTIONS(7528), + [anon_sym___attribute] = ACTIONS(7528), + [anon_sym_LBRACE] = ACTIONS(7525), + [anon_sym_signed] = ACTIONS(8049), + [anon_sym_unsigned] = ACTIONS(8049), + [anon_sym_long] = ACTIONS(8049), + [anon_sym_short] = ACTIONS(8049), + [anon_sym_LBRACK] = ACTIONS(7525), + [anon_sym_EQ] = ACTIONS(7528), + [anon_sym_const] = ACTIONS(7528), + [anon_sym_constexpr] = ACTIONS(7528), + [anon_sym_volatile] = ACTIONS(7528), + [anon_sym_restrict] = ACTIONS(7528), + [anon_sym___restrict__] = ACTIONS(7528), + [anon_sym__Atomic] = ACTIONS(7528), + [anon_sym__Noreturn] = ACTIONS(7528), + [anon_sym_noreturn] = ACTIONS(7528), + [anon_sym__Nonnull] = ACTIONS(7528), + [anon_sym_mutable] = ACTIONS(7528), + [anon_sym_constinit] = ACTIONS(7528), + [anon_sym_consteval] = ACTIONS(7528), + [anon_sym_alignas] = ACTIONS(7528), + [anon_sym__Alignas] = ACTIONS(7528), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7525), + [anon_sym_STAR_EQ] = ACTIONS(7525), + [anon_sym_SLASH_EQ] = ACTIONS(7525), + [anon_sym_PERCENT_EQ] = ACTIONS(7525), + [anon_sym_PLUS_EQ] = ACTIONS(7525), + [anon_sym_DASH_EQ] = ACTIONS(7525), + [anon_sym_LT_LT_EQ] = ACTIONS(7525), + [anon_sym_GT_GT_EQ] = ACTIONS(7525), + [anon_sym_AMP_EQ] = ACTIONS(7525), + [anon_sym_CARET_EQ] = ACTIONS(7525), + [anon_sym_PIPE_EQ] = ACTIONS(7525), + [anon_sym_and_eq] = ACTIONS(7528), + [anon_sym_or_eq] = ACTIONS(7528), + [anon_sym_xor_eq] = ACTIONS(7528), + [anon_sym_LT_EQ_GT] = ACTIONS(7525), + [anon_sym_or] = ACTIONS(7528), + [anon_sym_and] = ACTIONS(7528), + [anon_sym_bitor] = ACTIONS(7528), + [anon_sym_xor] = ACTIONS(7528), + [anon_sym_bitand] = ACTIONS(7528), + [anon_sym_not_eq] = ACTIONS(7528), + [anon_sym_DASH_DASH] = ACTIONS(7525), + [anon_sym_PLUS_PLUS] = ACTIONS(7525), + [anon_sym_DOT] = ACTIONS(7528), + [anon_sym_DOT_STAR] = ACTIONS(7525), + [anon_sym_DASH_GT] = ACTIONS(7528), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7528), + [anon_sym_override] = ACTIONS(7528), + [anon_sym_requires] = ACTIONS(7528), + [anon_sym_DASH_GT_STAR] = ACTIONS(7525), }, - [STATE(2440)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2263), - [sym_identifier] = ACTIONS(6627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), - [anon_sym_COMMA] = ACTIONS(7081), - [anon_sym_LPAREN2] = ACTIONS(7081), - [anon_sym_DASH] = ACTIONS(7084), - [anon_sym_PLUS] = ACTIONS(7084), - [anon_sym_STAR] = ACTIONS(7084), - [anon_sym_SLASH] = ACTIONS(7084), - [anon_sym_PERCENT] = ACTIONS(7084), - [anon_sym_PIPE_PIPE] = ACTIONS(7081), - [anon_sym_AMP_AMP] = ACTIONS(7081), - [anon_sym_PIPE] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7084), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_EQ_EQ] = ACTIONS(7081), - [anon_sym_BANG_EQ] = ACTIONS(7081), - [anon_sym_GT] = ACTIONS(7084), - [anon_sym_GT_EQ] = ACTIONS(7081), - [anon_sym_LT_EQ] = ACTIONS(7084), - [anon_sym_LT] = ACTIONS(7084), - [anon_sym_LT_LT] = ACTIONS(7084), - [anon_sym_GT_GT] = ACTIONS(7084), - [anon_sym___extension__] = ACTIONS(6627), - [anon_sym___attribute__] = ACTIONS(7084), - [anon_sym___attribute] = ACTIONS(7084), - [anon_sym_LBRACE] = ACTIONS(7081), - [anon_sym_signed] = ACTIONS(7728), - [anon_sym_unsigned] = ACTIONS(7728), - [anon_sym_long] = ACTIONS(7728), - [anon_sym_short] = ACTIONS(7728), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_RBRACK] = ACTIONS(7081), - [anon_sym_EQ] = ACTIONS(7084), - [anon_sym_const] = ACTIONS(6627), - [anon_sym_constexpr] = ACTIONS(6627), - [anon_sym_volatile] = ACTIONS(6627), - [anon_sym_restrict] = ACTIONS(6627), - [anon_sym___restrict__] = ACTIONS(6627), - [anon_sym__Atomic] = ACTIONS(6627), - [anon_sym__Noreturn] = ACTIONS(6627), - [anon_sym_noreturn] = ACTIONS(6627), - [anon_sym__Nonnull] = ACTIONS(6627), - [anon_sym_mutable] = ACTIONS(6627), - [anon_sym_constinit] = ACTIONS(6627), - [anon_sym_consteval] = ACTIONS(6627), - [anon_sym_alignas] = ACTIONS(6627), - [anon_sym__Alignas] = ACTIONS(6627), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(7081), - [anon_sym_STAR_EQ] = ACTIONS(7081), - [anon_sym_SLASH_EQ] = ACTIONS(7081), - [anon_sym_PERCENT_EQ] = ACTIONS(7081), - [anon_sym_PLUS_EQ] = ACTIONS(7081), - [anon_sym_DASH_EQ] = ACTIONS(7081), - [anon_sym_LT_LT_EQ] = ACTIONS(7081), - [anon_sym_GT_GT_EQ] = ACTIONS(7081), - [anon_sym_AMP_EQ] = ACTIONS(7081), - [anon_sym_CARET_EQ] = ACTIONS(7081), - [anon_sym_PIPE_EQ] = ACTIONS(7081), - [anon_sym_and_eq] = ACTIONS(7084), - [anon_sym_or_eq] = ACTIONS(7084), - [anon_sym_xor_eq] = ACTIONS(7084), - [anon_sym_LT_EQ_GT] = ACTIONS(7081), - [anon_sym_or] = ACTIONS(7084), - [anon_sym_and] = ACTIONS(7084), - [anon_sym_bitor] = ACTIONS(7084), - [anon_sym_xor] = ACTIONS(7084), - [anon_sym_bitand] = ACTIONS(7084), - [anon_sym_not_eq] = ACTIONS(7084), - [anon_sym_DASH_DASH] = ACTIONS(7081), - [anon_sym_PLUS_PLUS] = ACTIONS(7081), - [anon_sym_DOT] = ACTIONS(7084), - [anon_sym_DOT_STAR] = ACTIONS(7081), - [anon_sym_DASH_GT] = ACTIONS(7081), + [STATE(2355)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2355), + [sym_identifier] = ACTIONS(6999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7001), + [anon_sym_COMMA] = ACTIONS(7001), + [anon_sym_RPAREN] = ACTIONS(7001), + [anon_sym_LPAREN2] = ACTIONS(7001), + [anon_sym_DASH] = ACTIONS(6999), + [anon_sym_PLUS] = ACTIONS(6999), + [anon_sym_STAR] = ACTIONS(6999), + [anon_sym_SLASH] = ACTIONS(6999), + [anon_sym_PERCENT] = ACTIONS(6999), + [anon_sym_PIPE_PIPE] = ACTIONS(7001), + [anon_sym_AMP_AMP] = ACTIONS(7001), + [anon_sym_PIPE] = ACTIONS(6999), + [anon_sym_CARET] = ACTIONS(6999), + [anon_sym_AMP] = ACTIONS(6999), + [anon_sym_EQ_EQ] = ACTIONS(7001), + [anon_sym_BANG_EQ] = ACTIONS(7001), + [anon_sym_GT] = ACTIONS(6999), + [anon_sym_GT_EQ] = ACTIONS(7001), + [anon_sym_LT_EQ] = ACTIONS(6999), + [anon_sym_LT] = ACTIONS(6999), + [anon_sym_LT_LT] = ACTIONS(6999), + [anon_sym_GT_GT] = ACTIONS(6999), + [anon_sym___extension__] = ACTIONS(6999), + [anon_sym___attribute__] = ACTIONS(6999), + [anon_sym___attribute] = ACTIONS(6999), + [anon_sym_LBRACE] = ACTIONS(7001), + [anon_sym_signed] = ACTIONS(8049), + [anon_sym_unsigned] = ACTIONS(8049), + [anon_sym_long] = ACTIONS(8049), + [anon_sym_short] = ACTIONS(8049), + [anon_sym_LBRACK] = ACTIONS(7001), + [anon_sym_EQ] = ACTIONS(6999), + [anon_sym_const] = ACTIONS(6999), + [anon_sym_constexpr] = ACTIONS(6999), + [anon_sym_volatile] = ACTIONS(6999), + [anon_sym_restrict] = ACTIONS(6999), + [anon_sym___restrict__] = ACTIONS(6999), + [anon_sym__Atomic] = ACTIONS(6999), + [anon_sym__Noreturn] = ACTIONS(6999), + [anon_sym_noreturn] = ACTIONS(6999), + [anon_sym__Nonnull] = ACTIONS(6999), + [anon_sym_mutable] = ACTIONS(6999), + [anon_sym_constinit] = ACTIONS(6999), + [anon_sym_consteval] = ACTIONS(6999), + [anon_sym_alignas] = ACTIONS(6999), + [anon_sym__Alignas] = ACTIONS(6999), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7001), + [anon_sym_STAR_EQ] = ACTIONS(7001), + [anon_sym_SLASH_EQ] = ACTIONS(7001), + [anon_sym_PERCENT_EQ] = ACTIONS(7001), + [anon_sym_PLUS_EQ] = ACTIONS(7001), + [anon_sym_DASH_EQ] = ACTIONS(7001), + [anon_sym_LT_LT_EQ] = ACTIONS(7001), + [anon_sym_GT_GT_EQ] = ACTIONS(7001), + [anon_sym_AMP_EQ] = ACTIONS(7001), + [anon_sym_CARET_EQ] = ACTIONS(7001), + [anon_sym_PIPE_EQ] = ACTIONS(7001), + [anon_sym_and_eq] = ACTIONS(6999), + [anon_sym_or_eq] = ACTIONS(6999), + [anon_sym_xor_eq] = ACTIONS(6999), + [anon_sym_LT_EQ_GT] = ACTIONS(7001), + [anon_sym_or] = ACTIONS(6999), + [anon_sym_and] = ACTIONS(6999), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(6999), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(7001), + [anon_sym_PLUS_PLUS] = ACTIONS(7001), + [anon_sym_DOT] = ACTIONS(6999), + [anon_sym_DOT_STAR] = ACTIONS(7001), + [anon_sym_DASH_GT] = ACTIONS(6999), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6999), + [anon_sym_override] = ACTIONS(6999), + [anon_sym_requires] = ACTIONS(6999), + [anon_sym_DASH_GT_STAR] = ACTIONS(7001), }, - [STATE(2441)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6969), - [anon_sym_COMMA] = ACTIONS(6969), - [anon_sym_LPAREN2] = ACTIONS(6969), - [anon_sym_DASH] = ACTIONS(6967), - [anon_sym_PLUS] = ACTIONS(6967), - [anon_sym_STAR] = ACTIONS(6967), - [anon_sym_SLASH] = ACTIONS(6967), - [anon_sym_PERCENT] = ACTIONS(6967), - [anon_sym_PIPE_PIPE] = ACTIONS(6969), - [anon_sym_AMP_AMP] = ACTIONS(6969), - [anon_sym_PIPE] = ACTIONS(6967), - [anon_sym_CARET] = ACTIONS(6967), - [anon_sym_AMP] = ACTIONS(6967), - [anon_sym_EQ_EQ] = ACTIONS(6969), - [anon_sym_BANG_EQ] = ACTIONS(6969), - [anon_sym_GT] = ACTIONS(6967), - [anon_sym_GT_EQ] = ACTIONS(6967), - [anon_sym_LT_EQ] = ACTIONS(6967), - [anon_sym_LT] = ACTIONS(6967), - [anon_sym_LT_LT] = ACTIONS(6967), - [anon_sym_GT_GT] = ACTIONS(6967), - [anon_sym___extension__] = ACTIONS(6969), - [anon_sym___attribute__] = ACTIONS(6969), - [anon_sym___attribute] = ACTIONS(6967), - [anon_sym_COLON] = ACTIONS(6967), - [anon_sym_COLON_COLON] = ACTIONS(6969), - [anon_sym_LBRACE] = ACTIONS(6969), - [anon_sym_LBRACK] = ACTIONS(6969), - [anon_sym_EQ] = ACTIONS(6967), - [anon_sym_const] = ACTIONS(6967), - [anon_sym_constexpr] = ACTIONS(6969), - [anon_sym_volatile] = ACTIONS(6969), - [anon_sym_restrict] = ACTIONS(6969), - [anon_sym___restrict__] = ACTIONS(6969), - [anon_sym__Atomic] = ACTIONS(6969), - [anon_sym__Noreturn] = ACTIONS(6969), - [anon_sym_noreturn] = ACTIONS(6969), - [anon_sym__Nonnull] = ACTIONS(6969), - [anon_sym_mutable] = ACTIONS(6969), - [anon_sym_constinit] = ACTIONS(6969), - [anon_sym_consteval] = ACTIONS(6969), - [anon_sym_alignas] = ACTIONS(6969), - [anon_sym__Alignas] = ACTIONS(6969), - [anon_sym_QMARK] = ACTIONS(6969), - [anon_sym_STAR_EQ] = ACTIONS(6969), - [anon_sym_SLASH_EQ] = ACTIONS(6969), - [anon_sym_PERCENT_EQ] = ACTIONS(6969), - [anon_sym_PLUS_EQ] = ACTIONS(6969), - [anon_sym_DASH_EQ] = ACTIONS(6969), - [anon_sym_LT_LT_EQ] = ACTIONS(6969), - [anon_sym_GT_GT_EQ] = ACTIONS(6967), - [anon_sym_AMP_EQ] = ACTIONS(6969), - [anon_sym_CARET_EQ] = ACTIONS(6969), - [anon_sym_PIPE_EQ] = ACTIONS(6969), - [anon_sym_and_eq] = ACTIONS(6969), - [anon_sym_or_eq] = ACTIONS(6969), - [anon_sym_xor_eq] = ACTIONS(6969), - [anon_sym_LT_EQ_GT] = ACTIONS(6969), - [anon_sym_or] = ACTIONS(6967), - [anon_sym_and] = ACTIONS(6967), - [anon_sym_bitor] = ACTIONS(6969), - [anon_sym_xor] = ACTIONS(6967), - [anon_sym_bitand] = ACTIONS(6969), - [anon_sym_not_eq] = ACTIONS(6969), - [anon_sym_DASH_DASH] = ACTIONS(6969), - [anon_sym_PLUS_PLUS] = ACTIONS(6969), - [anon_sym_DOT] = ACTIONS(6967), - [anon_sym_DOT_STAR] = ACTIONS(6969), - [anon_sym_DASH_GT] = ACTIONS(6969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6969), - [anon_sym_decltype] = ACTIONS(6969), - [anon_sym_final] = ACTIONS(6969), - [anon_sym_override] = ACTIONS(6969), - [anon_sym_GT2] = ACTIONS(6969), - [anon_sym_requires] = ACTIONS(6969), - }, - [STATE(2442)] = { - [sym_attribute_specifier] = STATE(4161), - [sym_attribute_declaration] = STATE(4518), - [sym_gnu_asm_expression] = STATE(8999), - [sym_virtual_specifier] = STATE(4532), - [sym__function_exception_specification] = STATE(2928), - [sym__function_attributes_end] = STATE(4265), - [sym__function_postfix] = STATE(5047), - [sym_trailing_return_type] = STATE(4412), - [sym_noexcept] = STATE(2928), - [sym_throw_specifier] = STATE(2928), - [sym_requires_clause] = STATE(5047), - [aux_sym_type_definition_repeat1] = STATE(4161), - [aux_sym_attributed_declarator_repeat1] = STATE(4518), - [aux_sym__function_postfix_repeat1] = STATE(4532), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7629), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym___attribute__] = ACTIONS(6361), - [anon_sym___attribute] = ACTIONS(6363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7629), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7627), - [anon_sym_or_eq] = ACTIONS(7627), - [anon_sym_xor_eq] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(8039), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8055), - [anon_sym_override] = ACTIONS(8055), - [anon_sym_GT2] = ACTIONS(7627), - [anon_sym_noexcept] = ACTIONS(6377), - [anon_sym_throw] = ACTIONS(6379), - [anon_sym_requires] = ACTIONS(8058), - }, - [STATE(2443)] = { - [sym_attribute_specifier] = STATE(4079), - [sym_attribute_declaration] = STATE(4488), - [sym_gnu_asm_expression] = STATE(8997), - [sym_virtual_specifier] = STATE(4611), - [sym__function_exception_specification] = STATE(2943), - [sym__function_attributes_end] = STATE(4227), - [sym__function_postfix] = STATE(4983), - [sym_trailing_return_type] = STATE(4305), - [sym_noexcept] = STATE(2943), - [sym_throw_specifier] = STATE(2943), - [sym_requires_clause] = STATE(4983), - [aux_sym_type_definition_repeat1] = STATE(4079), - [aux_sym_attributed_declarator_repeat1] = STATE(4488), - [aux_sym__function_postfix_repeat1] = STATE(4611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6326), - [anon_sym___attribute] = ACTIONS(6328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_RBRACK] = ACTIONS(7544), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7966), + [STATE(2356)] = { + [sym_type_qualifier] = STATE(2359), + [sym_alignas_qualifier] = STATE(2576), + [aux_sym__type_definition_type_repeat1] = STATE(2359), + [aux_sym_sized_type_specifier_repeat1] = STATE(2483), + [sym_identifier] = ACTIONS(8052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), + [anon_sym_COMMA] = ACTIONS(7249), + [anon_sym_RPAREN] = ACTIONS(7249), + [anon_sym_LPAREN2] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7251), + [anon_sym_PLUS] = ACTIONS(7251), + [anon_sym_STAR] = ACTIONS(7251), + [anon_sym_SLASH] = ACTIONS(7251), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7249), + [anon_sym_PIPE] = ACTIONS(7251), + [anon_sym_CARET] = ACTIONS(7251), + [anon_sym_AMP] = ACTIONS(7251), + [anon_sym_EQ_EQ] = ACTIONS(7249), + [anon_sym_BANG_EQ] = ACTIONS(7249), + [anon_sym_GT] = ACTIONS(7251), + [anon_sym_GT_EQ] = ACTIONS(7249), + [anon_sym_LT_EQ] = ACTIONS(7251), + [anon_sym_LT] = ACTIONS(7251), + [anon_sym_LT_LT] = ACTIONS(7251), + [anon_sym_GT_GT] = ACTIONS(7251), + [anon_sym___extension__] = ACTIONS(8054), + [anon_sym___attribute__] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7251), + [anon_sym_LBRACE] = ACTIONS(7249), + [anon_sym_signed] = ACTIONS(8057), + [anon_sym_unsigned] = ACTIONS(8057), + [anon_sym_long] = ACTIONS(8057), + [anon_sym_short] = ACTIONS(8057), + [anon_sym_LBRACK] = ACTIONS(7249), + [anon_sym_EQ] = ACTIONS(7251), + [anon_sym_const] = ACTIONS(8054), + [anon_sym_constexpr] = ACTIONS(8054), + [anon_sym_volatile] = ACTIONS(8054), + [anon_sym_restrict] = ACTIONS(8054), + [anon_sym___restrict__] = ACTIONS(8054), + [anon_sym__Atomic] = ACTIONS(8054), + [anon_sym__Noreturn] = ACTIONS(8054), + [anon_sym_noreturn] = ACTIONS(8054), + [anon_sym__Nonnull] = ACTIONS(8054), + [anon_sym_mutable] = ACTIONS(8054), + [anon_sym_constinit] = ACTIONS(8054), + [anon_sym_consteval] = ACTIONS(8054), + [anon_sym_alignas] = ACTIONS(8059), + [anon_sym__Alignas] = ACTIONS(8059), + [sym_primitive_type] = ACTIONS(8062), + [anon_sym_QMARK] = ACTIONS(7249), + [anon_sym_STAR_EQ] = ACTIONS(7249), + [anon_sym_SLASH_EQ] = ACTIONS(7249), + [anon_sym_PERCENT_EQ] = ACTIONS(7249), + [anon_sym_PLUS_EQ] = ACTIONS(7249), + [anon_sym_DASH_EQ] = ACTIONS(7249), + [anon_sym_LT_LT_EQ] = ACTIONS(7249), + [anon_sym_GT_GT_EQ] = ACTIONS(7249), + [anon_sym_AMP_EQ] = ACTIONS(7249), + [anon_sym_CARET_EQ] = ACTIONS(7249), + [anon_sym_PIPE_EQ] = ACTIONS(7249), + [anon_sym_LT_EQ_GT] = ACTIONS(7249), + [anon_sym_or] = ACTIONS(7251), + [anon_sym_and] = ACTIONS(7251), + [anon_sym_bitor] = ACTIONS(7251), + [anon_sym_xor] = ACTIONS(7251), + [anon_sym_bitand] = ACTIONS(7251), + [anon_sym_not_eq] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7249), + [anon_sym_PLUS_PLUS] = ACTIONS(7249), + [anon_sym_DOT] = ACTIONS(7251), + [anon_sym_DOT_STAR] = ACTIONS(7249), + [anon_sym_DASH_GT] = ACTIONS(7251), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7969), - [anon_sym_override] = ACTIONS(7969), - [anon_sym_noexcept] = ACTIONS(6342), - [anon_sym_throw] = ACTIONS(6344), - [anon_sym_requires] = ACTIONS(7972), - }, - [STATE(2444)] = { - [sym_template_argument_list] = STATE(2405), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5272), - [anon_sym_COMMA] = ACTIONS(5272), - [anon_sym_RPAREN] = ACTIONS(5272), - [anon_sym_LPAREN2] = ACTIONS(5272), - [anon_sym_DASH] = ACTIONS(7031), - [anon_sym_PLUS] = ACTIONS(7031), - [anon_sym_STAR] = ACTIONS(7031), - [anon_sym_SLASH] = ACTIONS(7031), - [anon_sym_PERCENT] = ACTIONS(7031), - [anon_sym_PIPE_PIPE] = ACTIONS(5272), - [anon_sym_AMP_AMP] = ACTIONS(5272), - [anon_sym_PIPE] = ACTIONS(7031), - [anon_sym_CARET] = ACTIONS(7031), - [anon_sym_AMP] = ACTIONS(7031), - [anon_sym_EQ_EQ] = ACTIONS(5272), - [anon_sym_BANG_EQ] = ACTIONS(5272), - [anon_sym_GT] = ACTIONS(7031), - [anon_sym_GT_EQ] = ACTIONS(5272), - [anon_sym_LT_EQ] = ACTIONS(7031), - [anon_sym_LT] = ACTIONS(7640), - [anon_sym_LT_LT] = ACTIONS(7031), - [anon_sym_GT_GT] = ACTIONS(7031), - [anon_sym___extension__] = ACTIONS(5272), - [anon_sym___attribute__] = ACTIONS(5272), - [anon_sym___attribute] = ACTIONS(7031), - [anon_sym_COLON] = ACTIONS(7031), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5272), - [anon_sym_EQ] = ACTIONS(7031), - [anon_sym_const] = ACTIONS(7031), - [anon_sym_constexpr] = ACTIONS(5272), - [anon_sym_volatile] = ACTIONS(5272), - [anon_sym_restrict] = ACTIONS(5272), - [anon_sym___restrict__] = ACTIONS(5272), - [anon_sym__Atomic] = ACTIONS(5272), - [anon_sym__Noreturn] = ACTIONS(5272), - [anon_sym_noreturn] = ACTIONS(5272), - [anon_sym__Nonnull] = ACTIONS(5272), - [anon_sym_mutable] = ACTIONS(5272), - [anon_sym_constinit] = ACTIONS(5272), - [anon_sym_consteval] = ACTIONS(5272), - [anon_sym_alignas] = ACTIONS(5272), - [anon_sym__Alignas] = ACTIONS(5272), - [anon_sym_QMARK] = ACTIONS(5272), - [anon_sym_STAR_EQ] = ACTIONS(5272), - [anon_sym_SLASH_EQ] = ACTIONS(5272), - [anon_sym_PERCENT_EQ] = ACTIONS(5272), - [anon_sym_PLUS_EQ] = ACTIONS(5272), - [anon_sym_DASH_EQ] = ACTIONS(5272), - [anon_sym_LT_LT_EQ] = ACTIONS(5272), - [anon_sym_GT_GT_EQ] = ACTIONS(5272), - [anon_sym_AMP_EQ] = ACTIONS(5272), - [anon_sym_CARET_EQ] = ACTIONS(5272), - [anon_sym_PIPE_EQ] = ACTIONS(5272), - [anon_sym_and_eq] = ACTIONS(5272), - [anon_sym_or_eq] = ACTIONS(5272), - [anon_sym_xor_eq] = ACTIONS(5272), - [anon_sym_LT_EQ_GT] = ACTIONS(5272), - [anon_sym_or] = ACTIONS(7031), - [anon_sym_and] = ACTIONS(7031), - [anon_sym_bitor] = ACTIONS(5272), - [anon_sym_xor] = ACTIONS(7031), - [anon_sym_bitand] = ACTIONS(5272), - [anon_sym_not_eq] = ACTIONS(5272), - [anon_sym_DASH_DASH] = ACTIONS(5272), - [anon_sym_PLUS_PLUS] = ACTIONS(5272), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_DOT_STAR] = ACTIONS(5272), - [anon_sym_DASH_GT] = ACTIONS(7031), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5272), - [anon_sym_override] = ACTIONS(5272), - [anon_sym_requires] = ACTIONS(5272), - [anon_sym_DASH_GT_STAR] = ACTIONS(5272), - }, - [STATE(2445)] = { - [sym_identifier] = ACTIONS(6716), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), - [anon_sym_COMMA] = ACTIONS(6718), - [anon_sym_RPAREN] = ACTIONS(6718), - [anon_sym_LPAREN2] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6716), - [anon_sym_PLUS] = ACTIONS(6716), - [anon_sym_STAR] = ACTIONS(6716), - [anon_sym_SLASH] = ACTIONS(6716), - [anon_sym_PERCENT] = ACTIONS(6716), - [anon_sym_PIPE_PIPE] = ACTIONS(6718), - [anon_sym_AMP_AMP] = ACTIONS(6718), - [anon_sym_PIPE] = ACTIONS(6716), - [anon_sym_CARET] = ACTIONS(6716), - [anon_sym_AMP] = ACTIONS(6716), - [anon_sym_EQ_EQ] = ACTIONS(6718), - [anon_sym_BANG_EQ] = ACTIONS(6718), - [anon_sym_GT] = ACTIONS(6716), - [anon_sym_GT_EQ] = ACTIONS(6718), - [anon_sym_LT_EQ] = ACTIONS(6716), - [anon_sym_LT] = ACTIONS(6716), - [anon_sym_LT_LT] = ACTIONS(6716), - [anon_sym_GT_GT] = ACTIONS(6716), - [anon_sym___extension__] = ACTIONS(6716), - [anon_sym___attribute__] = ACTIONS(6716), - [anon_sym___attribute] = ACTIONS(6716), - [anon_sym_LBRACE] = ACTIONS(6718), - [anon_sym_signed] = ACTIONS(6716), - [anon_sym_unsigned] = ACTIONS(6716), - [anon_sym_long] = ACTIONS(6716), - [anon_sym_short] = ACTIONS(6716), - [anon_sym_LBRACK] = ACTIONS(6718), - [anon_sym_EQ] = ACTIONS(6716), - [anon_sym_const] = ACTIONS(6716), - [anon_sym_constexpr] = ACTIONS(6716), - [anon_sym_volatile] = ACTIONS(6716), - [anon_sym_restrict] = ACTIONS(6716), - [anon_sym___restrict__] = ACTIONS(6716), - [anon_sym__Atomic] = ACTIONS(6716), - [anon_sym__Noreturn] = ACTIONS(6716), - [anon_sym_noreturn] = ACTIONS(6716), - [anon_sym__Nonnull] = ACTIONS(6716), - [anon_sym_mutable] = ACTIONS(6716), - [anon_sym_constinit] = ACTIONS(6716), - [anon_sym_consteval] = ACTIONS(6716), - [anon_sym_alignas] = ACTIONS(6716), - [anon_sym__Alignas] = ACTIONS(6716), - [sym_primitive_type] = ACTIONS(6716), - [anon_sym_QMARK] = ACTIONS(6718), - [anon_sym_STAR_EQ] = ACTIONS(6718), - [anon_sym_SLASH_EQ] = ACTIONS(6718), - [anon_sym_PERCENT_EQ] = ACTIONS(6718), - [anon_sym_PLUS_EQ] = ACTIONS(6718), - [anon_sym_DASH_EQ] = ACTIONS(6718), - [anon_sym_LT_LT_EQ] = ACTIONS(6718), - [anon_sym_GT_GT_EQ] = ACTIONS(6718), - [anon_sym_AMP_EQ] = ACTIONS(6718), - [anon_sym_CARET_EQ] = ACTIONS(6718), - [anon_sym_PIPE_EQ] = ACTIONS(6718), - [anon_sym_LT_EQ_GT] = ACTIONS(6718), - [anon_sym_or] = ACTIONS(6716), - [anon_sym_and] = ACTIONS(6716), - [anon_sym_bitor] = ACTIONS(6716), - [anon_sym_xor] = ACTIONS(6716), - [anon_sym_bitand] = ACTIONS(6716), - [anon_sym_not_eq] = ACTIONS(6716), - [anon_sym_DASH_DASH] = ACTIONS(6718), - [anon_sym_PLUS_PLUS] = ACTIONS(6718), - [anon_sym_DOT] = ACTIONS(6716), - [anon_sym_DOT_STAR] = ACTIONS(6718), - [anon_sym_DASH_GT] = ACTIONS(6716), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6716), - [anon_sym_override] = ACTIONS(6716), - [anon_sym_requires] = ACTIONS(6716), - [anon_sym_DASH_GT_STAR] = ACTIONS(6718), - }, - [STATE(2446)] = { - [sym_attribute_specifier] = STATE(4079), - [sym_attribute_declaration] = STATE(4488), - [sym_gnu_asm_expression] = STATE(8997), - [sym_virtual_specifier] = STATE(4611), - [sym__function_exception_specification] = STATE(2965), - [sym__function_attributes_end] = STATE(4233), - [sym__function_postfix] = STATE(4995), - [sym_trailing_return_type] = STATE(4308), - [sym_noexcept] = STATE(2965), - [sym_throw_specifier] = STATE(2965), - [sym_requires_clause] = STATE(4995), - [aux_sym_type_definition_repeat1] = STATE(4079), - [aux_sym_attributed_declarator_repeat1] = STATE(4488), - [aux_sym__function_postfix_repeat1] = STATE(4611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym___attribute__] = ACTIONS(6326), - [anon_sym___attribute] = ACTIONS(6328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_RBRACK] = ACTIONS(7627), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7627), - [anon_sym_or_eq] = ACTIONS(7627), - [anon_sym_xor_eq] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(8061), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8064), - [anon_sym_override] = ACTIONS(8064), - [anon_sym_noexcept] = ACTIONS(6342), - [anon_sym_throw] = ACTIONS(6344), - [anon_sym_requires] = ACTIONS(8067), + [anon_sym_final] = ACTIONS(7251), + [anon_sym_override] = ACTIONS(7251), + [anon_sym_requires] = ACTIONS(7251), + [anon_sym_DASH_GT_STAR] = ACTIONS(7249), }, - [STATE(2447)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6969), - [anon_sym_COMMA] = ACTIONS(6969), - [anon_sym_LPAREN2] = ACTIONS(6969), - [anon_sym_DASH] = ACTIONS(6967), - [anon_sym_PLUS] = ACTIONS(6967), - [anon_sym_STAR] = ACTIONS(6967), - [anon_sym_SLASH] = ACTIONS(6967), - [anon_sym_PERCENT] = ACTIONS(6967), - [anon_sym_PIPE_PIPE] = ACTIONS(6969), - [anon_sym_AMP_AMP] = ACTIONS(6969), - [anon_sym_PIPE] = ACTIONS(6967), - [anon_sym_CARET] = ACTIONS(6967), - [anon_sym_AMP] = ACTIONS(6967), - [anon_sym_EQ_EQ] = ACTIONS(6969), - [anon_sym_BANG_EQ] = ACTIONS(6969), - [anon_sym_GT] = ACTIONS(6967), - [anon_sym_GT_EQ] = ACTIONS(6969), - [anon_sym_LT_EQ] = ACTIONS(6967), - [anon_sym_LT] = ACTIONS(6967), - [anon_sym_LT_LT] = ACTIONS(6967), - [anon_sym_GT_GT] = ACTIONS(6967), - [anon_sym___extension__] = ACTIONS(6969), - [anon_sym___attribute__] = ACTIONS(6969), - [anon_sym___attribute] = ACTIONS(6967), - [anon_sym_COLON] = ACTIONS(6967), - [anon_sym_COLON_COLON] = ACTIONS(6969), - [anon_sym_LBRACE] = ACTIONS(6969), - [anon_sym_LBRACK] = ACTIONS(6969), - [anon_sym_RBRACK] = ACTIONS(6969), - [anon_sym_EQ] = ACTIONS(6967), - [anon_sym_const] = ACTIONS(6967), - [anon_sym_constexpr] = ACTIONS(6969), - [anon_sym_volatile] = ACTIONS(6969), - [anon_sym_restrict] = ACTIONS(6969), - [anon_sym___restrict__] = ACTIONS(6969), - [anon_sym__Atomic] = ACTIONS(6969), - [anon_sym__Noreturn] = ACTIONS(6969), - [anon_sym_noreturn] = ACTIONS(6969), - [anon_sym__Nonnull] = ACTIONS(6969), - [anon_sym_mutable] = ACTIONS(6969), - [anon_sym_constinit] = ACTIONS(6969), - [anon_sym_consteval] = ACTIONS(6969), - [anon_sym_alignas] = ACTIONS(6969), - [anon_sym__Alignas] = ACTIONS(6969), - [anon_sym_QMARK] = ACTIONS(6969), - [anon_sym_STAR_EQ] = ACTIONS(6969), - [anon_sym_SLASH_EQ] = ACTIONS(6969), - [anon_sym_PERCENT_EQ] = ACTIONS(6969), - [anon_sym_PLUS_EQ] = ACTIONS(6969), - [anon_sym_DASH_EQ] = ACTIONS(6969), - [anon_sym_LT_LT_EQ] = ACTIONS(6969), - [anon_sym_GT_GT_EQ] = ACTIONS(6969), - [anon_sym_AMP_EQ] = ACTIONS(6969), - [anon_sym_CARET_EQ] = ACTIONS(6969), - [anon_sym_PIPE_EQ] = ACTIONS(6969), - [anon_sym_and_eq] = ACTIONS(6969), - [anon_sym_or_eq] = ACTIONS(6969), - [anon_sym_xor_eq] = ACTIONS(6969), - [anon_sym_LT_EQ_GT] = ACTIONS(6969), - [anon_sym_or] = ACTIONS(6967), - [anon_sym_and] = ACTIONS(6967), - [anon_sym_bitor] = ACTIONS(6969), - [anon_sym_xor] = ACTIONS(6967), - [anon_sym_bitand] = ACTIONS(6969), - [anon_sym_not_eq] = ACTIONS(6969), - [anon_sym_DASH_DASH] = ACTIONS(6969), - [anon_sym_PLUS_PLUS] = ACTIONS(6969), - [anon_sym_DOT] = ACTIONS(6967), - [anon_sym_DOT_STAR] = ACTIONS(6969), - [anon_sym_DASH_GT] = ACTIONS(6969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6969), - [anon_sym_decltype] = ACTIONS(6969), - [anon_sym_final] = ACTIONS(6969), - [anon_sym_override] = ACTIONS(6969), - [anon_sym_requires] = ACTIONS(6969), + [STATE(2357)] = { + [sym_decltype_auto] = STATE(3244), + [sym_template_argument_list] = STATE(2577), + [aux_sym_sized_type_specifier_repeat1] = STATE(2209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), + [anon_sym_COMMA] = ACTIONS(5643), + [anon_sym_LPAREN2] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5636), + [anon_sym_PLUS] = ACTIONS(5636), + [anon_sym_STAR] = ACTIONS(5636), + [anon_sym_SLASH] = ACTIONS(5636), + [anon_sym_PERCENT] = ACTIONS(5636), + [anon_sym_PIPE_PIPE] = ACTIONS(5643), + [anon_sym_AMP_AMP] = ACTIONS(5643), + [anon_sym_PIPE] = ACTIONS(5636), + [anon_sym_CARET] = ACTIONS(5636), + [anon_sym_AMP] = ACTIONS(5636), + [anon_sym_EQ_EQ] = ACTIONS(5643), + [anon_sym_BANG_EQ] = ACTIONS(5643), + [anon_sym_GT] = ACTIONS(5636), + [anon_sym_GT_EQ] = ACTIONS(5643), + [anon_sym_LT_EQ] = ACTIONS(5636), + [anon_sym_LT] = ACTIONS(8064), + [anon_sym_LT_LT] = ACTIONS(5636), + [anon_sym_GT_GT] = ACTIONS(5636), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5643), + [anon_sym_signed] = ACTIONS(7067), + [anon_sym_unsigned] = ACTIONS(7067), + [anon_sym_long] = ACTIONS(7067), + [anon_sym_short] = ACTIONS(7067), + [anon_sym_LBRACK] = ACTIONS(5643), + [anon_sym_RBRACK] = ACTIONS(5643), + [anon_sym_EQ] = ACTIONS(5636), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5643), + [anon_sym_volatile] = ACTIONS(5643), + [anon_sym_restrict] = ACTIONS(5643), + [anon_sym___restrict__] = ACTIONS(5643), + [anon_sym__Atomic] = ACTIONS(5643), + [anon_sym__Noreturn] = ACTIONS(5643), + [anon_sym_noreturn] = ACTIONS(5643), + [anon_sym__Nonnull] = ACTIONS(5643), + [anon_sym_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [anon_sym_alignas] = ACTIONS(5643), + [anon_sym__Alignas] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5643), + [anon_sym_STAR_EQ] = ACTIONS(5643), + [anon_sym_SLASH_EQ] = ACTIONS(5643), + [anon_sym_PERCENT_EQ] = ACTIONS(5643), + [anon_sym_PLUS_EQ] = ACTIONS(5643), + [anon_sym_DASH_EQ] = ACTIONS(5643), + [anon_sym_LT_LT_EQ] = ACTIONS(5643), + [anon_sym_GT_GT_EQ] = ACTIONS(5643), + [anon_sym_AMP_EQ] = ACTIONS(5643), + [anon_sym_CARET_EQ] = ACTIONS(5643), + [anon_sym_PIPE_EQ] = ACTIONS(5643), + [anon_sym_and_eq] = ACTIONS(5643), + [anon_sym_or_eq] = ACTIONS(5643), + [anon_sym_xor_eq] = ACTIONS(5643), + [anon_sym_LT_EQ_GT] = ACTIONS(5643), + [anon_sym_or] = ACTIONS(5636), + [anon_sym_and] = ACTIONS(5636), + [anon_sym_bitor] = ACTIONS(5643), + [anon_sym_xor] = ACTIONS(5636), + [anon_sym_bitand] = ACTIONS(5643), + [anon_sym_not_eq] = ACTIONS(5643), + [anon_sym_DASH_DASH] = ACTIONS(5643), + [anon_sym_PLUS_PLUS] = ACTIONS(5643), + [anon_sym_DOT] = ACTIONS(5636), + [anon_sym_DOT_STAR] = ACTIONS(5643), + [anon_sym_DASH_GT] = ACTIONS(5643), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7071), + [anon_sym_decltype] = ACTIONS(7073), + [anon_sym_final] = ACTIONS(5643), + [anon_sym_override] = ACTIONS(5643), + [anon_sym_requires] = ACTIONS(5643), }, - [STATE(2448)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_exception_specification] = STATE(2849), - [sym__function_attributes_end] = STATE(4044), - [sym__function_postfix] = STATE(3513), - [sym_trailing_return_type] = STATE(2961), - [sym_noexcept] = STATE(2849), - [sym_throw_specifier] = STATE(2849), - [sym_requires_clause] = STATE(3513), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym_SEMI] = ACTIONS(7544), - [anon_sym___attribute__] = ACTIONS(7927), - [anon_sym___attribute] = ACTIONS(7930), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7933), + [STATE(2358)] = { + [sym_type_qualifier] = STATE(2270), + [sym_alignas_qualifier] = STATE(2365), + [aux_sym__type_definition_type_repeat1] = STATE(2270), + [aux_sym_sized_type_specifier_repeat1] = STATE(2418), + [sym_identifier] = ACTIONS(7611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), + [anon_sym_COMMA] = ACTIONS(7205), + [anon_sym_RPAREN] = ACTIONS(7205), + [anon_sym_LPAREN2] = ACTIONS(7205), + [anon_sym_DASH] = ACTIONS(7207), + [anon_sym_PLUS] = ACTIONS(7207), + [anon_sym_STAR] = ACTIONS(7207), + [anon_sym_SLASH] = ACTIONS(7207), + [anon_sym_PERCENT] = ACTIONS(7207), + [anon_sym_PIPE_PIPE] = ACTIONS(7205), + [anon_sym_AMP_AMP] = ACTIONS(7205), + [anon_sym_PIPE] = ACTIONS(7207), + [anon_sym_CARET] = ACTIONS(7207), + [anon_sym_AMP] = ACTIONS(7207), + [anon_sym_EQ_EQ] = ACTIONS(7205), + [anon_sym_BANG_EQ] = ACTIONS(7205), + [anon_sym_GT] = ACTIONS(7207), + [anon_sym_GT_EQ] = ACTIONS(7205), + [anon_sym_LT_EQ] = ACTIONS(7207), + [anon_sym_LT] = ACTIONS(7207), + [anon_sym_LT_LT] = ACTIONS(7207), + [anon_sym_GT_GT] = ACTIONS(7207), + [anon_sym___extension__] = ACTIONS(7024), + [anon_sym___attribute__] = ACTIONS(7207), + [anon_sym___attribute] = ACTIONS(7207), + [anon_sym_LBRACE] = ACTIONS(7205), + [anon_sym_signed] = ACTIONS(7616), + [anon_sym_unsigned] = ACTIONS(7616), + [anon_sym_long] = ACTIONS(7616), + [anon_sym_short] = ACTIONS(7616), + [anon_sym_LBRACK] = ACTIONS(7205), + [anon_sym_EQ] = ACTIONS(7207), + [anon_sym_const] = ACTIONS(7024), + [anon_sym_constexpr] = ACTIONS(7024), + [anon_sym_volatile] = ACTIONS(7024), + [anon_sym_restrict] = ACTIONS(7024), + [anon_sym___restrict__] = ACTIONS(7024), + [anon_sym__Atomic] = ACTIONS(7024), + [anon_sym__Noreturn] = ACTIONS(7024), + [anon_sym_noreturn] = ACTIONS(7024), + [anon_sym__Nonnull] = ACTIONS(7024), + [anon_sym_mutable] = ACTIONS(7024), + [anon_sym_constinit] = ACTIONS(7024), + [anon_sym_consteval] = ACTIONS(7024), + [anon_sym_alignas] = ACTIONS(8066), + [anon_sym__Alignas] = ACTIONS(8066), + [sym_primitive_type] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7205), + [anon_sym_STAR_EQ] = ACTIONS(7205), + [anon_sym_SLASH_EQ] = ACTIONS(7205), + [anon_sym_PERCENT_EQ] = ACTIONS(7205), + [anon_sym_PLUS_EQ] = ACTIONS(7205), + [anon_sym_DASH_EQ] = ACTIONS(7205), + [anon_sym_LT_LT_EQ] = ACTIONS(7205), + [anon_sym_GT_GT_EQ] = ACTIONS(7205), + [anon_sym_AMP_EQ] = ACTIONS(7205), + [anon_sym_CARET_EQ] = ACTIONS(7205), + [anon_sym_PIPE_EQ] = ACTIONS(7205), + [anon_sym_and_eq] = ACTIONS(7207), + [anon_sym_or_eq] = ACTIONS(7207), + [anon_sym_xor_eq] = ACTIONS(7207), + [anon_sym_LT_EQ_GT] = ACTIONS(7205), + [anon_sym_or] = ACTIONS(7207), + [anon_sym_and] = ACTIONS(7207), + [anon_sym_bitor] = ACTIONS(7207), + [anon_sym_xor] = ACTIONS(7207), + [anon_sym_bitand] = ACTIONS(7207), + [anon_sym_not_eq] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7205), + [anon_sym_PLUS_PLUS] = ACTIONS(7205), + [anon_sym_DOT] = ACTIONS(7207), + [anon_sym_DOT_STAR] = ACTIONS(7205), + [anon_sym_DASH_GT] = ACTIONS(7207), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7557), - [anon_sym_override] = ACTIONS(7557), - [anon_sym_noexcept] = ACTIONS(6162), - [anon_sym_throw] = ACTIONS(6164), - [anon_sym_requires] = ACTIONS(7560), + [anon_sym_DASH_GT_STAR] = ACTIONS(7205), }, - [STATE(2449)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), - [anon_sym_COMMA] = ACTIONS(6951), - [anon_sym_RPAREN] = ACTIONS(6951), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_DASH] = ACTIONS(6949), - [anon_sym_PLUS] = ACTIONS(6949), - [anon_sym_STAR] = ACTIONS(6949), - [anon_sym_SLASH] = ACTIONS(6949), - [anon_sym_PERCENT] = ACTIONS(6949), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_PIPE] = ACTIONS(6949), - [anon_sym_CARET] = ACTIONS(6949), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_GT] = ACTIONS(6949), - [anon_sym_GT_EQ] = ACTIONS(6951), - [anon_sym_LT_EQ] = ACTIONS(6949), - [anon_sym_LT] = ACTIONS(6949), - [anon_sym_LT_LT] = ACTIONS(6949), - [anon_sym_GT_GT] = ACTIONS(6949), - [anon_sym___extension__] = ACTIONS(6951), - [anon_sym___attribute__] = ACTIONS(6951), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_COLON] = ACTIONS(6951), - [anon_sym_LBRACE] = ACTIONS(6951), - [anon_sym_LBRACK] = ACTIONS(6951), - [anon_sym_EQ] = ACTIONS(6949), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6951), - [anon_sym_volatile] = ACTIONS(6951), - [anon_sym_restrict] = ACTIONS(6951), - [anon_sym___restrict__] = ACTIONS(6951), - [anon_sym__Atomic] = ACTIONS(6951), - [anon_sym__Noreturn] = ACTIONS(6951), - [anon_sym_noreturn] = ACTIONS(6951), - [anon_sym__Nonnull] = ACTIONS(6951), - [anon_sym_mutable] = ACTIONS(6951), - [anon_sym_constinit] = ACTIONS(6951), - [anon_sym_consteval] = ACTIONS(6951), - [anon_sym_alignas] = ACTIONS(6951), - [anon_sym__Alignas] = ACTIONS(6951), - [anon_sym_QMARK] = ACTIONS(6951), - [anon_sym_STAR_EQ] = ACTIONS(6951), - [anon_sym_SLASH_EQ] = ACTIONS(6951), - [anon_sym_PERCENT_EQ] = ACTIONS(6951), - [anon_sym_PLUS_EQ] = ACTIONS(6951), - [anon_sym_DASH_EQ] = ACTIONS(6951), - [anon_sym_LT_LT_EQ] = ACTIONS(6951), - [anon_sym_GT_GT_EQ] = ACTIONS(6951), - [anon_sym_AMP_EQ] = ACTIONS(6951), - [anon_sym_CARET_EQ] = ACTIONS(6951), - [anon_sym_PIPE_EQ] = ACTIONS(6951), - [anon_sym_and_eq] = ACTIONS(6951), - [anon_sym_or_eq] = ACTIONS(6951), - [anon_sym_xor_eq] = ACTIONS(6951), - [anon_sym_LT_EQ_GT] = ACTIONS(6951), - [anon_sym_or] = ACTIONS(6949), - [anon_sym_and] = ACTIONS(6949), - [anon_sym_bitor] = ACTIONS(6951), - [anon_sym_xor] = ACTIONS(6949), - [anon_sym_bitand] = ACTIONS(6951), - [anon_sym_not_eq] = ACTIONS(6951), - [anon_sym_DASH_DASH] = ACTIONS(6951), - [anon_sym_PLUS_PLUS] = ACTIONS(6951), - [anon_sym_DOT] = ACTIONS(6949), - [anon_sym_DOT_STAR] = ACTIONS(6951), - [anon_sym_DASH_GT] = ACTIONS(6949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6951), - [anon_sym_decltype] = ACTIONS(6951), - [anon_sym_final] = ACTIONS(6951), - [anon_sym_override] = ACTIONS(6951), - [anon_sym_requires] = ACTIONS(6951), - [anon_sym_DASH_GT_STAR] = ACTIONS(6951), - }, - [STATE(2450)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6272), - [anon_sym_COMMA] = ACTIONS(6272), - [anon_sym_LPAREN2] = ACTIONS(6272), - [anon_sym_DASH] = ACTIONS(6270), - [anon_sym_PLUS] = ACTIONS(6270), - [anon_sym_STAR] = ACTIONS(6270), - [anon_sym_SLASH] = ACTIONS(6270), - [anon_sym_PERCENT] = ACTIONS(6270), - [anon_sym_PIPE_PIPE] = ACTIONS(6272), - [anon_sym_AMP_AMP] = ACTIONS(6272), - [anon_sym_PIPE] = ACTIONS(6270), - [anon_sym_CARET] = ACTIONS(6270), - [anon_sym_AMP] = ACTIONS(6270), - [anon_sym_EQ_EQ] = ACTIONS(6272), - [anon_sym_BANG_EQ] = ACTIONS(6272), - [anon_sym_GT] = ACTIONS(6270), - [anon_sym_GT_EQ] = ACTIONS(6272), - [anon_sym_LT_EQ] = ACTIONS(6270), - [anon_sym_LT] = ACTIONS(6270), - [anon_sym_LT_LT] = ACTIONS(6270), - [anon_sym_GT_GT] = ACTIONS(6270), - [anon_sym___extension__] = ACTIONS(6272), - [anon_sym___attribute__] = ACTIONS(6272), - [anon_sym___attribute] = ACTIONS(6270), - [anon_sym_COLON] = ACTIONS(6270), - [anon_sym_COLON_COLON] = ACTIONS(6272), - [anon_sym_LBRACE] = ACTIONS(6272), - [anon_sym_LBRACK] = ACTIONS(6272), - [anon_sym_RBRACK] = ACTIONS(6272), - [anon_sym_EQ] = ACTIONS(6270), - [anon_sym_const] = ACTIONS(6270), - [anon_sym_constexpr] = ACTIONS(6272), - [anon_sym_volatile] = ACTIONS(6272), - [anon_sym_restrict] = ACTIONS(6272), - [anon_sym___restrict__] = ACTIONS(6272), - [anon_sym__Atomic] = ACTIONS(6272), - [anon_sym__Noreturn] = ACTIONS(6272), - [anon_sym_noreturn] = ACTIONS(6272), - [anon_sym__Nonnull] = ACTIONS(6272), - [anon_sym_mutable] = ACTIONS(6272), - [anon_sym_constinit] = ACTIONS(6272), - [anon_sym_consteval] = ACTIONS(6272), - [anon_sym_alignas] = ACTIONS(6272), - [anon_sym__Alignas] = ACTIONS(6272), - [anon_sym_QMARK] = ACTIONS(6272), - [anon_sym_STAR_EQ] = ACTIONS(6272), - [anon_sym_SLASH_EQ] = ACTIONS(6272), - [anon_sym_PERCENT_EQ] = ACTIONS(6272), - [anon_sym_PLUS_EQ] = ACTIONS(6272), - [anon_sym_DASH_EQ] = ACTIONS(6272), - [anon_sym_LT_LT_EQ] = ACTIONS(6272), - [anon_sym_GT_GT_EQ] = ACTIONS(6272), - [anon_sym_AMP_EQ] = ACTIONS(6272), - [anon_sym_CARET_EQ] = ACTIONS(6272), - [anon_sym_PIPE_EQ] = ACTIONS(6272), - [anon_sym_and_eq] = ACTIONS(6272), - [anon_sym_or_eq] = ACTIONS(6272), - [anon_sym_xor_eq] = ACTIONS(6272), - [anon_sym_LT_EQ_GT] = ACTIONS(6272), - [anon_sym_or] = ACTIONS(6270), - [anon_sym_and] = ACTIONS(6270), - [anon_sym_bitor] = ACTIONS(6272), - [anon_sym_xor] = ACTIONS(6270), - [anon_sym_bitand] = ACTIONS(6272), - [anon_sym_not_eq] = ACTIONS(6272), - [anon_sym_DASH_DASH] = ACTIONS(6272), - [anon_sym_PLUS_PLUS] = ACTIONS(6272), - [anon_sym_DOT] = ACTIONS(6270), - [anon_sym_DOT_STAR] = ACTIONS(6272), - [anon_sym_DASH_GT] = ACTIONS(6272), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6272), - [anon_sym_decltype] = ACTIONS(6272), - [anon_sym_final] = ACTIONS(6272), - [anon_sym_override] = ACTIONS(6272), - [anon_sym_requires] = ACTIONS(6272), - }, - [STATE(2451)] = { - [sym_attribute_specifier] = STATE(4079), - [sym_attribute_declaration] = STATE(4488), - [sym_gnu_asm_expression] = STATE(8997), - [sym_virtual_specifier] = STATE(4611), - [sym__function_exception_specification] = STATE(2857), - [sym__function_attributes_end] = STATE(4245), - [sym__function_postfix] = STATE(4983), - [sym_trailing_return_type] = STATE(4310), - [sym_noexcept] = STATE(2857), - [sym_throw_specifier] = STATE(2857), - [sym_requires_clause] = STATE(4983), - [aux_sym_type_definition_repeat1] = STATE(4079), - [aux_sym_attributed_declarator_repeat1] = STATE(4488), - [aux_sym__function_postfix_repeat1] = STATE(4611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6326), - [anon_sym___attribute] = ACTIONS(6328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_RBRACK] = ACTIONS(7544), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7966), + [STATE(2359)] = { + [sym_type_qualifier] = STATE(2367), + [sym_alignas_qualifier] = STATE(2576), + [aux_sym__type_definition_type_repeat1] = STATE(2367), + [aux_sym_sized_type_specifier_repeat1] = STATE(2639), + [sym_identifier] = ACTIONS(8068), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), + [anon_sym_COMMA] = ACTIONS(7205), + [anon_sym_RPAREN] = ACTIONS(7205), + [anon_sym_LPAREN2] = ACTIONS(7205), + [anon_sym_DASH] = ACTIONS(7207), + [anon_sym_PLUS] = ACTIONS(7207), + [anon_sym_STAR] = ACTIONS(7207), + [anon_sym_SLASH] = ACTIONS(7207), + [anon_sym_PERCENT] = ACTIONS(7207), + [anon_sym_PIPE_PIPE] = ACTIONS(7205), + [anon_sym_AMP_AMP] = ACTIONS(7205), + [anon_sym_PIPE] = ACTIONS(7207), + [anon_sym_CARET] = ACTIONS(7207), + [anon_sym_AMP] = ACTIONS(7207), + [anon_sym_EQ_EQ] = ACTIONS(7205), + [anon_sym_BANG_EQ] = ACTIONS(7205), + [anon_sym_GT] = ACTIONS(7207), + [anon_sym_GT_EQ] = ACTIONS(7205), + [anon_sym_LT_EQ] = ACTIONS(7207), + [anon_sym_LT] = ACTIONS(7207), + [anon_sym_LT_LT] = ACTIONS(7207), + [anon_sym_GT_GT] = ACTIONS(7207), + [anon_sym___extension__] = ACTIONS(8070), + [anon_sym___attribute__] = ACTIONS(7207), + [anon_sym___attribute] = ACTIONS(7207), + [anon_sym_LBRACE] = ACTIONS(7205), + [anon_sym_signed] = ACTIONS(8073), + [anon_sym_unsigned] = ACTIONS(8073), + [anon_sym_long] = ACTIONS(8073), + [anon_sym_short] = ACTIONS(8073), + [anon_sym_LBRACK] = ACTIONS(7205), + [anon_sym_EQ] = ACTIONS(7207), + [anon_sym_const] = ACTIONS(8070), + [anon_sym_constexpr] = ACTIONS(8070), + [anon_sym_volatile] = ACTIONS(8070), + [anon_sym_restrict] = ACTIONS(8070), + [anon_sym___restrict__] = ACTIONS(8070), + [anon_sym__Atomic] = ACTIONS(8070), + [anon_sym__Noreturn] = ACTIONS(8070), + [anon_sym_noreturn] = ACTIONS(8070), + [anon_sym__Nonnull] = ACTIONS(8070), + [anon_sym_mutable] = ACTIONS(8070), + [anon_sym_constinit] = ACTIONS(8070), + [anon_sym_consteval] = ACTIONS(8070), + [anon_sym_alignas] = ACTIONS(8075), + [anon_sym__Alignas] = ACTIONS(8075), + [sym_primitive_type] = ACTIONS(8078), + [anon_sym_QMARK] = ACTIONS(7205), + [anon_sym_STAR_EQ] = ACTIONS(7205), + [anon_sym_SLASH_EQ] = ACTIONS(7205), + [anon_sym_PERCENT_EQ] = ACTIONS(7205), + [anon_sym_PLUS_EQ] = ACTIONS(7205), + [anon_sym_DASH_EQ] = ACTIONS(7205), + [anon_sym_LT_LT_EQ] = ACTIONS(7205), + [anon_sym_GT_GT_EQ] = ACTIONS(7205), + [anon_sym_AMP_EQ] = ACTIONS(7205), + [anon_sym_CARET_EQ] = ACTIONS(7205), + [anon_sym_PIPE_EQ] = ACTIONS(7205), + [anon_sym_LT_EQ_GT] = ACTIONS(7205), + [anon_sym_or] = ACTIONS(7207), + [anon_sym_and] = ACTIONS(7207), + [anon_sym_bitor] = ACTIONS(7207), + [anon_sym_xor] = ACTIONS(7207), + [anon_sym_bitand] = ACTIONS(7207), + [anon_sym_not_eq] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7205), + [anon_sym_PLUS_PLUS] = ACTIONS(7205), + [anon_sym_DOT] = ACTIONS(7207), + [anon_sym_DOT_STAR] = ACTIONS(7205), + [anon_sym_DASH_GT] = ACTIONS(7207), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6349), - [anon_sym_override] = ACTIONS(6349), - [anon_sym_noexcept] = ACTIONS(6342), - [anon_sym_throw] = ACTIONS(6344), - [anon_sym_requires] = ACTIONS(6351), - }, - [STATE(2452)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_exception_specification] = STATE(2919), - [sym__function_attributes_end] = STATE(4134), - [sym__function_postfix] = STATE(3513), - [sym_trailing_return_type] = STATE(2911), - [sym_noexcept] = STATE(2919), - [sym_throw_specifier] = STATE(2919), - [sym_requires_clause] = STATE(3513), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym_SEMI] = ACTIONS(7544), - [anon_sym___attribute__] = ACTIONS(7927), - [anon_sym___attribute] = ACTIONS(7930), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7933), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6181), - [anon_sym_override] = ACTIONS(6181), - [anon_sym_noexcept] = ACTIONS(6162), - [anon_sym_throw] = ACTIONS(6164), - [anon_sym_requires] = ACTIONS(6183), - }, - [STATE(2453)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_exception_specification] = STATE(2858), - [sym__function_attributes_end] = STATE(4140), - [sym__function_postfix] = STATE(3497), - [sym_trailing_return_type] = STATE(2975), - [sym_noexcept] = STATE(2858), - [sym_throw_specifier] = STATE(2858), - [sym_requires_clause] = STATE(3497), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym_SEMI] = ACTIONS(7627), - [anon_sym___attribute__] = ACTIONS(8070), - [anon_sym___attribute] = ACTIONS(8073), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7627), - [anon_sym_or_eq] = ACTIONS(7627), - [anon_sym_xor_eq] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(8076), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7634), - [anon_sym_override] = ACTIONS(7634), - [anon_sym_noexcept] = ACTIONS(6162), - [anon_sym_throw] = ACTIONS(6164), - [anon_sym_requires] = ACTIONS(7637), + [anon_sym_final] = ACTIONS(7207), + [anon_sym_override] = ACTIONS(7207), + [anon_sym_requires] = ACTIONS(7207), + [anon_sym_DASH_GT_STAR] = ACTIONS(7205), }, - [STATE(2454)] = { - [sym_catch_clause] = STATE(2424), - [aux_sym_constructor_try_statement_repeat1] = STATE(2424), - [sym_identifier] = ACTIONS(3148), - [aux_sym_preproc_def_token1] = ACTIONS(3148), - [aux_sym_preproc_if_token1] = ACTIONS(3148), - [aux_sym_preproc_if_token2] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3148), - [aux_sym_preproc_else_token1] = ACTIONS(3148), - [aux_sym_preproc_elif_token1] = ACTIONS(3148), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3148), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3148), - [sym_preproc_directive] = ACTIONS(3148), - [anon_sym_LPAREN2] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym___extension__] = ACTIONS(3148), - [anon_sym_typedef] = ACTIONS(3148), - [anon_sym_virtual] = ACTIONS(3148), - [anon_sym_extern] = ACTIONS(3148), - [anon_sym___attribute__] = ACTIONS(3148), - [anon_sym___attribute] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3150), - [anon_sym___declspec] = ACTIONS(3148), - [anon_sym___based] = ACTIONS(3148), - [anon_sym_signed] = ACTIONS(3148), - [anon_sym_unsigned] = ACTIONS(3148), - [anon_sym_long] = ACTIONS(3148), - [anon_sym_short] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_register] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym___inline] = ACTIONS(3148), - [anon_sym___inline__] = ACTIONS(3148), - [anon_sym___forceinline] = ACTIONS(3148), - [anon_sym_thread_local] = ACTIONS(3148), - [anon_sym___thread] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_constexpr] = ACTIONS(3148), - [anon_sym_volatile] = ACTIONS(3148), - [anon_sym_restrict] = ACTIONS(3148), - [anon_sym___restrict__] = ACTIONS(3148), - [anon_sym__Atomic] = ACTIONS(3148), - [anon_sym__Noreturn] = ACTIONS(3148), - [anon_sym_noreturn] = ACTIONS(3148), - [anon_sym__Nonnull] = ACTIONS(3148), - [anon_sym_mutable] = ACTIONS(3148), - [anon_sym_constinit] = ACTIONS(3148), - [anon_sym_consteval] = ACTIONS(3148), - [anon_sym_alignas] = ACTIONS(3148), - [anon_sym__Alignas] = ACTIONS(3148), - [sym_primitive_type] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(3148), - [anon_sym_union] = ACTIONS(3148), - [anon_sym_typename] = ACTIONS(3148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3148), - [anon_sym_decltype] = ACTIONS(3148), - [anon_sym_explicit] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_template] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_friend] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_static_assert] = ACTIONS(3148), - [anon_sym_catch] = ACTIONS(8079), - [anon_sym_LBRACK_COLON] = ACTIONS(3150), + [STATE(2360)] = { + [sym_type_qualifier] = STATE(2358), + [sym_alignas_qualifier] = STATE(2365), + [aux_sym__type_definition_type_repeat1] = STATE(2358), + [aux_sym_sized_type_specifier_repeat1] = STATE(2525), + [sym_identifier] = ACTIONS(7573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), + [anon_sym_COMMA] = ACTIONS(7249), + [anon_sym_RPAREN] = ACTIONS(7249), + [anon_sym_LPAREN2] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7251), + [anon_sym_PLUS] = ACTIONS(7251), + [anon_sym_STAR] = ACTIONS(7251), + [anon_sym_SLASH] = ACTIONS(7251), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7249), + [anon_sym_PIPE] = ACTIONS(7251), + [anon_sym_CARET] = ACTIONS(7251), + [anon_sym_AMP] = ACTIONS(7251), + [anon_sym_EQ_EQ] = ACTIONS(7249), + [anon_sym_BANG_EQ] = ACTIONS(7249), + [anon_sym_GT] = ACTIONS(7251), + [anon_sym_GT_EQ] = ACTIONS(7249), + [anon_sym_LT_EQ] = ACTIONS(7251), + [anon_sym_LT] = ACTIONS(7251), + [anon_sym_LT_LT] = ACTIONS(7251), + [anon_sym_GT_GT] = ACTIONS(7251), + [anon_sym___extension__] = ACTIONS(7024), + [anon_sym___attribute__] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7251), + [anon_sym_LBRACE] = ACTIONS(7249), + [anon_sym_signed] = ACTIONS(8080), + [anon_sym_unsigned] = ACTIONS(8080), + [anon_sym_long] = ACTIONS(8080), + [anon_sym_short] = ACTIONS(8080), + [anon_sym_LBRACK] = ACTIONS(7249), + [anon_sym_EQ] = ACTIONS(7251), + [anon_sym_const] = ACTIONS(7024), + [anon_sym_constexpr] = ACTIONS(7024), + [anon_sym_volatile] = ACTIONS(7024), + [anon_sym_restrict] = ACTIONS(7024), + [anon_sym___restrict__] = ACTIONS(7024), + [anon_sym__Atomic] = ACTIONS(7024), + [anon_sym__Noreturn] = ACTIONS(7024), + [anon_sym_noreturn] = ACTIONS(7024), + [anon_sym__Nonnull] = ACTIONS(7024), + [anon_sym_mutable] = ACTIONS(7024), + [anon_sym_constinit] = ACTIONS(7024), + [anon_sym_consteval] = ACTIONS(7024), + [anon_sym_alignas] = ACTIONS(8066), + [anon_sym__Alignas] = ACTIONS(8066), + [sym_primitive_type] = ACTIONS(7583), + [anon_sym_QMARK] = ACTIONS(7249), + [anon_sym_STAR_EQ] = ACTIONS(7249), + [anon_sym_SLASH_EQ] = ACTIONS(7249), + [anon_sym_PERCENT_EQ] = ACTIONS(7249), + [anon_sym_PLUS_EQ] = ACTIONS(7249), + [anon_sym_DASH_EQ] = ACTIONS(7249), + [anon_sym_LT_LT_EQ] = ACTIONS(7249), + [anon_sym_GT_GT_EQ] = ACTIONS(7249), + [anon_sym_AMP_EQ] = ACTIONS(7249), + [anon_sym_CARET_EQ] = ACTIONS(7249), + [anon_sym_PIPE_EQ] = ACTIONS(7249), + [anon_sym_and_eq] = ACTIONS(7251), + [anon_sym_or_eq] = ACTIONS(7251), + [anon_sym_xor_eq] = ACTIONS(7251), + [anon_sym_LT_EQ_GT] = ACTIONS(7249), + [anon_sym_or] = ACTIONS(7251), + [anon_sym_and] = ACTIONS(7251), + [anon_sym_bitor] = ACTIONS(7251), + [anon_sym_xor] = ACTIONS(7251), + [anon_sym_bitand] = ACTIONS(7251), + [anon_sym_not_eq] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7249), + [anon_sym_PLUS_PLUS] = ACTIONS(7249), + [anon_sym_DOT] = ACTIONS(7251), + [anon_sym_DOT_STAR] = ACTIONS(7249), + [anon_sym_DASH_GT] = ACTIONS(7251), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7249), }, - [STATE(2455)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2792), - [sym_ms_pointer_modifier] = STATE(2423), - [sym__abstract_declarator] = STATE(6261), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(3402), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(1970), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(3402), - [aux_sym_pointer_declarator_repeat1] = STATE(2423), - [sym_identifier] = ACTIONS(6495), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [aux_sym_preproc_if_token2] = ACTIONS(6497), - [aux_sym_preproc_else_token1] = ACTIONS(6497), - [aux_sym_preproc_elif_token1] = ACTIONS(6495), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6497), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(8081), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6497), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(8083), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6497), - [anon_sym_AMP] = ACTIONS(8085), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6497), - [anon_sym_GT_GT] = ACTIONS(6497), - [anon_sym___extension__] = ACTIONS(7739), - [sym_ms_restrict_modifier] = ACTIONS(7741), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7741), - [sym_ms_signed_ptr_modifier] = ACTIONS(7741), - [anon_sym__unaligned] = ACTIONS(7743), - [anon_sym___unaligned] = ACTIONS(7743), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(7739), - [anon_sym_volatile] = ACTIONS(7739), - [anon_sym_restrict] = ACTIONS(7739), - [anon_sym___restrict__] = ACTIONS(7739), - [anon_sym__Atomic] = ACTIONS(7739), - [anon_sym__Noreturn] = ACTIONS(7739), - [anon_sym_noreturn] = ACTIONS(7739), - [anon_sym__Nonnull] = ACTIONS(7739), - [anon_sym_mutable] = ACTIONS(7739), - [anon_sym_constinit] = ACTIONS(7739), - [anon_sym_consteval] = ACTIONS(7739), - [anon_sym_alignas] = ACTIONS(7747), - [anon_sym__Alignas] = ACTIONS(7747), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6495), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6495), - [anon_sym_not_eq] = ACTIONS(6495), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), + [STATE(2361)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2037), + [sym_identifier] = ACTIONS(7528), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), + [anon_sym_COMMA] = ACTIONS(7525), + [aux_sym_preproc_if_token2] = ACTIONS(7525), + [aux_sym_preproc_else_token1] = ACTIONS(7525), + [aux_sym_preproc_elif_token1] = ACTIONS(7528), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7525), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7525), + [anon_sym_LPAREN2] = ACTIONS(7525), + [anon_sym_DASH] = ACTIONS(7528), + [anon_sym_PLUS] = ACTIONS(7528), + [anon_sym_STAR] = ACTIONS(7528), + [anon_sym_SLASH] = ACTIONS(7528), + [anon_sym_PERCENT] = ACTIONS(7528), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_AMP_AMP] = ACTIONS(7525), + [anon_sym_PIPE] = ACTIONS(7528), + [anon_sym_CARET] = ACTIONS(7528), + [anon_sym_AMP] = ACTIONS(7528), + [anon_sym_EQ_EQ] = ACTIONS(7525), + [anon_sym_BANG_EQ] = ACTIONS(7525), + [anon_sym_GT] = ACTIONS(7528), + [anon_sym_GT_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7528), + [anon_sym_LT] = ACTIONS(7528), + [anon_sym_LT_LT] = ACTIONS(7528), + [anon_sym_GT_GT] = ACTIONS(7528), + [anon_sym___extension__] = ACTIONS(6999), + [anon_sym___attribute__] = ACTIONS(7528), + [anon_sym___attribute] = ACTIONS(7528), + [anon_sym_LBRACE] = ACTIONS(7525), + [anon_sym_signed] = ACTIONS(7003), + [anon_sym_unsigned] = ACTIONS(7003), + [anon_sym_long] = ACTIONS(7003), + [anon_sym_short] = ACTIONS(7003), + [anon_sym_LBRACK] = ACTIONS(7525), + [anon_sym_EQ] = ACTIONS(7528), + [anon_sym_const] = ACTIONS(6999), + [anon_sym_constexpr] = ACTIONS(6999), + [anon_sym_volatile] = ACTIONS(6999), + [anon_sym_restrict] = ACTIONS(6999), + [anon_sym___restrict__] = ACTIONS(6999), + [anon_sym__Atomic] = ACTIONS(6999), + [anon_sym__Noreturn] = ACTIONS(6999), + [anon_sym_noreturn] = ACTIONS(6999), + [anon_sym__Nonnull] = ACTIONS(6999), + [anon_sym_mutable] = ACTIONS(6999), + [anon_sym_constinit] = ACTIONS(6999), + [anon_sym_consteval] = ACTIONS(6999), + [anon_sym_alignas] = ACTIONS(6999), + [anon_sym__Alignas] = ACTIONS(6999), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7525), + [anon_sym_STAR_EQ] = ACTIONS(7525), + [anon_sym_SLASH_EQ] = ACTIONS(7525), + [anon_sym_PERCENT_EQ] = ACTIONS(7525), + [anon_sym_PLUS_EQ] = ACTIONS(7525), + [anon_sym_DASH_EQ] = ACTIONS(7525), + [anon_sym_LT_LT_EQ] = ACTIONS(7525), + [anon_sym_GT_GT_EQ] = ACTIONS(7525), + [anon_sym_AMP_EQ] = ACTIONS(7525), + [anon_sym_CARET_EQ] = ACTIONS(7525), + [anon_sym_PIPE_EQ] = ACTIONS(7525), + [anon_sym_and_eq] = ACTIONS(7528), + [anon_sym_or_eq] = ACTIONS(7528), + [anon_sym_xor_eq] = ACTIONS(7528), + [anon_sym_LT_EQ_GT] = ACTIONS(7525), + [anon_sym_or] = ACTIONS(7528), + [anon_sym_and] = ACTIONS(7528), + [anon_sym_bitor] = ACTIONS(7528), + [anon_sym_xor] = ACTIONS(7528), + [anon_sym_bitand] = ACTIONS(7528), + [anon_sym_not_eq] = ACTIONS(7528), + [anon_sym_DASH_DASH] = ACTIONS(7525), + [anon_sym_PLUS_PLUS] = ACTIONS(7525), + [anon_sym_DOT] = ACTIONS(7528), + [anon_sym_DOT_STAR] = ACTIONS(7525), + [anon_sym_DASH_GT] = ACTIONS(7525), [sym_comment] = ACTIONS(3), }, - [STATE(2456)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6248), - [anon_sym_COMMA] = ACTIONS(6248), - [anon_sym_LPAREN2] = ACTIONS(6248), - [anon_sym_DASH] = ACTIONS(6246), - [anon_sym_PLUS] = ACTIONS(6246), - [anon_sym_STAR] = ACTIONS(6246), - [anon_sym_SLASH] = ACTIONS(6246), - [anon_sym_PERCENT] = ACTIONS(6246), - [anon_sym_PIPE_PIPE] = ACTIONS(6248), - [anon_sym_AMP_AMP] = ACTIONS(6248), - [anon_sym_PIPE] = ACTIONS(6246), - [anon_sym_CARET] = ACTIONS(6246), - [anon_sym_AMP] = ACTIONS(6246), - [anon_sym_EQ_EQ] = ACTIONS(6248), - [anon_sym_BANG_EQ] = ACTIONS(6248), - [anon_sym_GT] = ACTIONS(6246), - [anon_sym_GT_EQ] = ACTIONS(6248), - [anon_sym_LT_EQ] = ACTIONS(6246), - [anon_sym_LT] = ACTIONS(6246), - [anon_sym_LT_LT] = ACTIONS(6246), - [anon_sym_GT_GT] = ACTIONS(6246), - [anon_sym___extension__] = ACTIONS(6248), - [anon_sym___attribute__] = ACTIONS(6248), - [anon_sym___attribute] = ACTIONS(6246), - [anon_sym_COLON] = ACTIONS(6246), - [anon_sym_COLON_COLON] = ACTIONS(6248), - [anon_sym_LBRACE] = ACTIONS(6248), - [anon_sym_LBRACK] = ACTIONS(6248), - [anon_sym_RBRACK] = ACTIONS(6248), - [anon_sym_EQ] = ACTIONS(6246), - [anon_sym_const] = ACTIONS(6246), - [anon_sym_constexpr] = ACTIONS(6248), - [anon_sym_volatile] = ACTIONS(6248), - [anon_sym_restrict] = ACTIONS(6248), - [anon_sym___restrict__] = ACTIONS(6248), - [anon_sym__Atomic] = ACTIONS(6248), - [anon_sym__Noreturn] = ACTIONS(6248), - [anon_sym_noreturn] = ACTIONS(6248), - [anon_sym__Nonnull] = ACTIONS(6248), - [anon_sym_mutable] = ACTIONS(6248), - [anon_sym_constinit] = ACTIONS(6248), - [anon_sym_consteval] = ACTIONS(6248), - [anon_sym_alignas] = ACTIONS(6248), - [anon_sym__Alignas] = ACTIONS(6248), - [anon_sym_QMARK] = ACTIONS(6248), - [anon_sym_STAR_EQ] = ACTIONS(6248), - [anon_sym_SLASH_EQ] = ACTIONS(6248), - [anon_sym_PERCENT_EQ] = ACTIONS(6248), - [anon_sym_PLUS_EQ] = ACTIONS(6248), - [anon_sym_DASH_EQ] = ACTIONS(6248), - [anon_sym_LT_LT_EQ] = ACTIONS(6248), - [anon_sym_GT_GT_EQ] = ACTIONS(6248), - [anon_sym_AMP_EQ] = ACTIONS(6248), - [anon_sym_CARET_EQ] = ACTIONS(6248), - [anon_sym_PIPE_EQ] = ACTIONS(6248), - [anon_sym_and_eq] = ACTIONS(6248), - [anon_sym_or_eq] = ACTIONS(6248), - [anon_sym_xor_eq] = ACTIONS(6248), - [anon_sym_LT_EQ_GT] = ACTIONS(6248), - [anon_sym_or] = ACTIONS(6246), - [anon_sym_and] = ACTIONS(6246), - [anon_sym_bitor] = ACTIONS(6248), - [anon_sym_xor] = ACTIONS(6246), - [anon_sym_bitand] = ACTIONS(6248), - [anon_sym_not_eq] = ACTIONS(6248), - [anon_sym_DASH_DASH] = ACTIONS(6248), - [anon_sym_PLUS_PLUS] = ACTIONS(6248), - [anon_sym_DOT] = ACTIONS(6246), - [anon_sym_DOT_STAR] = ACTIONS(6248), - [anon_sym_DASH_GT] = ACTIONS(6248), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6248), - [anon_sym_decltype] = ACTIONS(6248), - [anon_sym_final] = ACTIONS(6248), - [anon_sym_override] = ACTIONS(6248), - [anon_sym_requires] = ACTIONS(6248), + [STATE(2362)] = { + [sym__abstract_declarator] = STATE(4734), + [sym_abstract_parenthesized_declarator] = STATE(5090), + [sym_abstract_pointer_declarator] = STATE(5090), + [sym_abstract_function_declarator] = STATE(5090), + [sym_abstract_array_declarator] = STATE(5090), + [sym_type_qualifier] = STATE(2327), + [sym_alignas_qualifier] = STATE(2423), + [sym_parameter_list] = STATE(1980), + [sym_abstract_reference_declarator] = STATE(5090), + [sym__function_declarator_seq] = STATE(5091), + [aux_sym__type_definition_type_repeat1] = STATE(2327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), + [anon_sym_COMMA] = ACTIONS(7391), + [anon_sym_LPAREN2] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(7393), + [anon_sym_PLUS] = ACTIONS(7393), + [anon_sym_STAR] = ACTIONS(7138), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_PERCENT] = ACTIONS(7393), + [anon_sym_PIPE_PIPE] = ACTIONS(7391), + [anon_sym_AMP_AMP] = ACTIONS(7140), + [anon_sym_PIPE] = ACTIONS(7393), + [anon_sym_CARET] = ACTIONS(7393), + [anon_sym_AMP] = ACTIONS(7142), + [anon_sym_EQ_EQ] = ACTIONS(7391), + [anon_sym_BANG_EQ] = ACTIONS(7391), + [anon_sym_GT] = ACTIONS(7393), + [anon_sym_GT_EQ] = ACTIONS(7393), + [anon_sym_LT_EQ] = ACTIONS(7393), + [anon_sym_LT] = ACTIONS(7393), + [anon_sym_LT_LT] = ACTIONS(7393), + [anon_sym_GT_GT] = ACTIONS(7393), + [anon_sym___extension__] = ACTIONS(7144), + [anon_sym_LBRACK] = ACTIONS(7152), + [anon_sym_EQ] = ACTIONS(7393), + [anon_sym_const] = ACTIONS(7154), + [anon_sym_constexpr] = ACTIONS(7144), + [anon_sym_volatile] = ACTIONS(7144), + [anon_sym_restrict] = ACTIONS(7144), + [anon_sym___restrict__] = ACTIONS(7144), + [anon_sym__Atomic] = ACTIONS(7144), + [anon_sym__Noreturn] = ACTIONS(7144), + [anon_sym_noreturn] = ACTIONS(7144), + [anon_sym__Nonnull] = ACTIONS(7144), + [anon_sym_mutable] = ACTIONS(7144), + [anon_sym_constinit] = ACTIONS(7144), + [anon_sym_consteval] = ACTIONS(7144), + [anon_sym_alignas] = ACTIONS(7156), + [anon_sym__Alignas] = ACTIONS(7156), + [anon_sym_QMARK] = ACTIONS(7391), + [anon_sym_STAR_EQ] = ACTIONS(7391), + [anon_sym_SLASH_EQ] = ACTIONS(7391), + [anon_sym_PERCENT_EQ] = ACTIONS(7391), + [anon_sym_PLUS_EQ] = ACTIONS(7391), + [anon_sym_DASH_EQ] = ACTIONS(7391), + [anon_sym_LT_LT_EQ] = ACTIONS(7391), + [anon_sym_GT_GT_EQ] = ACTIONS(7393), + [anon_sym_AMP_EQ] = ACTIONS(7391), + [anon_sym_CARET_EQ] = ACTIONS(7391), + [anon_sym_PIPE_EQ] = ACTIONS(7391), + [anon_sym_and_eq] = ACTIONS(7391), + [anon_sym_or_eq] = ACTIONS(7391), + [anon_sym_xor_eq] = ACTIONS(7391), + [anon_sym_LT_EQ_GT] = ACTIONS(7391), + [anon_sym_or] = ACTIONS(7393), + [anon_sym_and] = ACTIONS(7393), + [anon_sym_bitor] = ACTIONS(7391), + [anon_sym_xor] = ACTIONS(7393), + [anon_sym_bitand] = ACTIONS(7391), + [anon_sym_not_eq] = ACTIONS(7391), + [anon_sym_DASH_DASH] = ACTIONS(7391), + [anon_sym_PLUS_PLUS] = ACTIONS(7391), + [anon_sym_DOT] = ACTIONS(7393), + [anon_sym_DOT_STAR] = ACTIONS(7391), + [anon_sym_DASH_GT] = ACTIONS(7391), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7391), + [anon_sym_override] = ACTIONS(7391), + [anon_sym_GT2] = ACTIONS(7391), + [anon_sym_requires] = ACTIONS(7391), }, - [STATE(2457)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6252), - [anon_sym_COMMA] = ACTIONS(6252), - [anon_sym_LPAREN2] = ACTIONS(6252), - [anon_sym_DASH] = ACTIONS(6250), - [anon_sym_PLUS] = ACTIONS(6250), - [anon_sym_STAR] = ACTIONS(6250), - [anon_sym_SLASH] = ACTIONS(6250), - [anon_sym_PERCENT] = ACTIONS(6250), - [anon_sym_PIPE_PIPE] = ACTIONS(6252), - [anon_sym_AMP_AMP] = ACTIONS(6252), - [anon_sym_PIPE] = ACTIONS(6250), - [anon_sym_CARET] = ACTIONS(6250), - [anon_sym_AMP] = ACTIONS(6250), - [anon_sym_EQ_EQ] = ACTIONS(6252), - [anon_sym_BANG_EQ] = ACTIONS(6252), - [anon_sym_GT] = ACTIONS(6250), - [anon_sym_GT_EQ] = ACTIONS(6252), - [anon_sym_LT_EQ] = ACTIONS(6250), - [anon_sym_LT] = ACTIONS(6250), - [anon_sym_LT_LT] = ACTIONS(6250), - [anon_sym_GT_GT] = ACTIONS(6250), - [anon_sym___extension__] = ACTIONS(6252), - [anon_sym___attribute__] = ACTIONS(6252), - [anon_sym___attribute] = ACTIONS(6250), - [anon_sym_COLON] = ACTIONS(6250), - [anon_sym_COLON_COLON] = ACTIONS(6252), - [anon_sym_LBRACE] = ACTIONS(6252), - [anon_sym_LBRACK] = ACTIONS(6252), - [anon_sym_RBRACK] = ACTIONS(6252), - [anon_sym_EQ] = ACTIONS(6250), - [anon_sym_const] = ACTIONS(6250), - [anon_sym_constexpr] = ACTIONS(6252), - [anon_sym_volatile] = ACTIONS(6252), - [anon_sym_restrict] = ACTIONS(6252), - [anon_sym___restrict__] = ACTIONS(6252), - [anon_sym__Atomic] = ACTIONS(6252), - [anon_sym__Noreturn] = ACTIONS(6252), - [anon_sym_noreturn] = ACTIONS(6252), - [anon_sym__Nonnull] = ACTIONS(6252), - [anon_sym_mutable] = ACTIONS(6252), - [anon_sym_constinit] = ACTIONS(6252), - [anon_sym_consteval] = ACTIONS(6252), - [anon_sym_alignas] = ACTIONS(6252), - [anon_sym__Alignas] = ACTIONS(6252), - [anon_sym_QMARK] = ACTIONS(6252), - [anon_sym_STAR_EQ] = ACTIONS(6252), - [anon_sym_SLASH_EQ] = ACTIONS(6252), - [anon_sym_PERCENT_EQ] = ACTIONS(6252), - [anon_sym_PLUS_EQ] = ACTIONS(6252), - [anon_sym_DASH_EQ] = ACTIONS(6252), - [anon_sym_LT_LT_EQ] = ACTIONS(6252), - [anon_sym_GT_GT_EQ] = ACTIONS(6252), - [anon_sym_AMP_EQ] = ACTIONS(6252), - [anon_sym_CARET_EQ] = ACTIONS(6252), - [anon_sym_PIPE_EQ] = ACTIONS(6252), - [anon_sym_and_eq] = ACTIONS(6252), - [anon_sym_or_eq] = ACTIONS(6252), - [anon_sym_xor_eq] = ACTIONS(6252), - [anon_sym_LT_EQ_GT] = ACTIONS(6252), - [anon_sym_or] = ACTIONS(6250), - [anon_sym_and] = ACTIONS(6250), - [anon_sym_bitor] = ACTIONS(6252), - [anon_sym_xor] = ACTIONS(6250), - [anon_sym_bitand] = ACTIONS(6252), - [anon_sym_not_eq] = ACTIONS(6252), - [anon_sym_DASH_DASH] = ACTIONS(6252), - [anon_sym_PLUS_PLUS] = ACTIONS(6252), - [anon_sym_DOT] = ACTIONS(6250), - [anon_sym_DOT_STAR] = ACTIONS(6252), - [anon_sym_DASH_GT] = ACTIONS(6252), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6252), - [anon_sym_decltype] = ACTIONS(6252), - [anon_sym_final] = ACTIONS(6252), - [anon_sym_override] = ACTIONS(6252), - [anon_sym_requires] = ACTIONS(6252), + [STATE(2363)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(10560), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_explicit_object_parameter_declaration] = STATE(10560), + [sym_optional_parameter_declaration] = STATE(10560), + [sym_variadic_parameter_declaration] = STATE(10560), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8082), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5629), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_this] = ACTIONS(5631), }, - [STATE(2458)] = { - [sym_attribute_specifier] = STATE(4079), - [sym_attribute_declaration] = STATE(4488), - [sym_gnu_asm_expression] = STATE(8997), - [sym_virtual_specifier] = STATE(4611), - [sym__function_exception_specification] = STATE(2881), - [sym__function_attributes_end] = STATE(4246), - [sym__function_postfix] = STATE(4995), - [sym_trailing_return_type] = STATE(4326), - [sym_noexcept] = STATE(2881), - [sym_throw_specifier] = STATE(2881), - [sym_requires_clause] = STATE(4995), - [aux_sym_type_definition_repeat1] = STATE(4079), - [aux_sym_attributed_declarator_repeat1] = STATE(4488), - [aux_sym__function_postfix_repeat1] = STATE(4611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym___attribute__] = ACTIONS(6326), - [anon_sym___attribute] = ACTIONS(6328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_RBRACK] = ACTIONS(7627), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7627), - [anon_sym_or_eq] = ACTIONS(7627), - [anon_sym_xor_eq] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(8061), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6349), - [anon_sym_override] = ACTIONS(6349), - [anon_sym_noexcept] = ACTIONS(6342), - [anon_sym_throw] = ACTIONS(6344), - [anon_sym_requires] = ACTIONS(6351), + [STATE(2364)] = { + [sym_identifier] = ACTIONS(7077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), + [anon_sym_COMMA] = ACTIONS(7079), + [anon_sym_RPAREN] = ACTIONS(7079), + [anon_sym_LPAREN2] = ACTIONS(7079), + [anon_sym_DASH] = ACTIONS(7077), + [anon_sym_PLUS] = ACTIONS(7077), + [anon_sym_STAR] = ACTIONS(7077), + [anon_sym_SLASH] = ACTIONS(7077), + [anon_sym_PERCENT] = ACTIONS(7077), + [anon_sym_PIPE_PIPE] = ACTIONS(7079), + [anon_sym_AMP_AMP] = ACTIONS(7079), + [anon_sym_PIPE] = ACTIONS(7077), + [anon_sym_CARET] = ACTIONS(7077), + [anon_sym_AMP] = ACTIONS(7077), + [anon_sym_EQ_EQ] = ACTIONS(7079), + [anon_sym_BANG_EQ] = ACTIONS(7079), + [anon_sym_GT] = ACTIONS(7077), + [anon_sym_GT_EQ] = ACTIONS(7079), + [anon_sym_LT_EQ] = ACTIONS(7077), + [anon_sym_LT] = ACTIONS(7077), + [anon_sym_LT_LT] = ACTIONS(7077), + [anon_sym_GT_GT] = ACTIONS(7077), + [anon_sym___extension__] = ACTIONS(7077), + [anon_sym___attribute__] = ACTIONS(7077), + [anon_sym___attribute] = ACTIONS(7077), + [anon_sym_LBRACE] = ACTIONS(7079), + [anon_sym_signed] = ACTIONS(7077), + [anon_sym_unsigned] = ACTIONS(7077), + [anon_sym_long] = ACTIONS(7077), + [anon_sym_short] = ACTIONS(7077), + [anon_sym_LBRACK] = ACTIONS(7079), + [anon_sym_EQ] = ACTIONS(7077), + [anon_sym_const] = ACTIONS(7077), + [anon_sym_constexpr] = ACTIONS(7077), + [anon_sym_volatile] = ACTIONS(7077), + [anon_sym_restrict] = ACTIONS(7077), + [anon_sym___restrict__] = ACTIONS(7077), + [anon_sym__Atomic] = ACTIONS(7077), + [anon_sym__Noreturn] = ACTIONS(7077), + [anon_sym_noreturn] = ACTIONS(7077), + [anon_sym__Nonnull] = ACTIONS(7077), + [anon_sym_mutable] = ACTIONS(7077), + [anon_sym_constinit] = ACTIONS(7077), + [anon_sym_consteval] = ACTIONS(7077), + [anon_sym_alignas] = ACTIONS(7077), + [anon_sym__Alignas] = ACTIONS(7077), + [sym_primitive_type] = ACTIONS(7077), + [anon_sym_QMARK] = ACTIONS(7079), + [anon_sym_STAR_EQ] = ACTIONS(7079), + [anon_sym_SLASH_EQ] = ACTIONS(7079), + [anon_sym_PERCENT_EQ] = ACTIONS(7079), + [anon_sym_PLUS_EQ] = ACTIONS(7079), + [anon_sym_DASH_EQ] = ACTIONS(7079), + [anon_sym_LT_LT_EQ] = ACTIONS(7079), + [anon_sym_GT_GT_EQ] = ACTIONS(7079), + [anon_sym_AMP_EQ] = ACTIONS(7079), + [anon_sym_CARET_EQ] = ACTIONS(7079), + [anon_sym_PIPE_EQ] = ACTIONS(7079), + [anon_sym_and_eq] = ACTIONS(7077), + [anon_sym_or_eq] = ACTIONS(7077), + [anon_sym_xor_eq] = ACTIONS(7077), + [anon_sym_LT_EQ_GT] = ACTIONS(7079), + [anon_sym_or] = ACTIONS(7077), + [anon_sym_and] = ACTIONS(7077), + [anon_sym_bitor] = ACTIONS(7077), + [anon_sym_xor] = ACTIONS(7077), + [anon_sym_bitand] = ACTIONS(7077), + [anon_sym_not_eq] = ACTIONS(7077), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DOT] = ACTIONS(7077), + [anon_sym_DOT_STAR] = ACTIONS(7079), + [anon_sym_DASH_GT] = ACTIONS(7077), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7077), + [anon_sym_override] = ACTIONS(7077), + [anon_sym_requires] = ACTIONS(7077), + [anon_sym_DASH_GT_STAR] = ACTIONS(7079), }, - [STATE(2459)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6256), - [anon_sym_COMMA] = ACTIONS(6256), - [anon_sym_LPAREN2] = ACTIONS(6256), - [anon_sym_DASH] = ACTIONS(6254), - [anon_sym_PLUS] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(6254), - [anon_sym_SLASH] = ACTIONS(6254), - [anon_sym_PERCENT] = ACTIONS(6254), - [anon_sym_PIPE_PIPE] = ACTIONS(6256), - [anon_sym_AMP_AMP] = ACTIONS(6256), - [anon_sym_PIPE] = ACTIONS(6254), - [anon_sym_CARET] = ACTIONS(6254), - [anon_sym_AMP] = ACTIONS(6254), - [anon_sym_EQ_EQ] = ACTIONS(6256), - [anon_sym_BANG_EQ] = ACTIONS(6256), - [anon_sym_GT] = ACTIONS(6254), - [anon_sym_GT_EQ] = ACTIONS(6256), - [anon_sym_LT_EQ] = ACTIONS(6254), - [anon_sym_LT] = ACTIONS(6254), - [anon_sym_LT_LT] = ACTIONS(6254), - [anon_sym_GT_GT] = ACTIONS(6254), - [anon_sym___extension__] = ACTIONS(6256), - [anon_sym___attribute__] = ACTIONS(6256), - [anon_sym___attribute] = ACTIONS(6254), - [anon_sym_COLON] = ACTIONS(6254), - [anon_sym_COLON_COLON] = ACTIONS(6256), - [anon_sym_LBRACE] = ACTIONS(6256), - [anon_sym_LBRACK] = ACTIONS(6256), - [anon_sym_RBRACK] = ACTIONS(6256), - [anon_sym_EQ] = ACTIONS(6254), - [anon_sym_const] = ACTIONS(6254), - [anon_sym_constexpr] = ACTIONS(6256), - [anon_sym_volatile] = ACTIONS(6256), - [anon_sym_restrict] = ACTIONS(6256), - [anon_sym___restrict__] = ACTIONS(6256), - [anon_sym__Atomic] = ACTIONS(6256), - [anon_sym__Noreturn] = ACTIONS(6256), - [anon_sym_noreturn] = ACTIONS(6256), - [anon_sym__Nonnull] = ACTIONS(6256), - [anon_sym_mutable] = ACTIONS(6256), - [anon_sym_constinit] = ACTIONS(6256), - [anon_sym_consteval] = ACTIONS(6256), - [anon_sym_alignas] = ACTIONS(6256), - [anon_sym__Alignas] = ACTIONS(6256), - [anon_sym_QMARK] = ACTIONS(6256), - [anon_sym_STAR_EQ] = ACTIONS(6256), - [anon_sym_SLASH_EQ] = ACTIONS(6256), - [anon_sym_PERCENT_EQ] = ACTIONS(6256), - [anon_sym_PLUS_EQ] = ACTIONS(6256), - [anon_sym_DASH_EQ] = ACTIONS(6256), - [anon_sym_LT_LT_EQ] = ACTIONS(6256), - [anon_sym_GT_GT_EQ] = ACTIONS(6256), - [anon_sym_AMP_EQ] = ACTIONS(6256), - [anon_sym_CARET_EQ] = ACTIONS(6256), - [anon_sym_PIPE_EQ] = ACTIONS(6256), - [anon_sym_and_eq] = ACTIONS(6256), - [anon_sym_or_eq] = ACTIONS(6256), - [anon_sym_xor_eq] = ACTIONS(6256), - [anon_sym_LT_EQ_GT] = ACTIONS(6256), - [anon_sym_or] = ACTIONS(6254), - [anon_sym_and] = ACTIONS(6254), - [anon_sym_bitor] = ACTIONS(6256), - [anon_sym_xor] = ACTIONS(6254), - [anon_sym_bitand] = ACTIONS(6256), - [anon_sym_not_eq] = ACTIONS(6256), - [anon_sym_DASH_DASH] = ACTIONS(6256), - [anon_sym_PLUS_PLUS] = ACTIONS(6256), - [anon_sym_DOT] = ACTIONS(6254), - [anon_sym_DOT_STAR] = ACTIONS(6256), - [anon_sym_DASH_GT] = ACTIONS(6256), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6256), - [anon_sym_decltype] = ACTIONS(6256), - [anon_sym_final] = ACTIONS(6256), - [anon_sym_override] = ACTIONS(6256), - [anon_sym_requires] = ACTIONS(6256), + [STATE(2365)] = { + [sym_identifier] = ACTIONS(3128), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), + [anon_sym_COMMA] = ACTIONS(3118), + [anon_sym_RPAREN] = ACTIONS(3118), + [anon_sym_LPAREN2] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_SLASH] = ACTIONS(3128), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_PIPE_PIPE] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_CARET] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3128), + [anon_sym_GT_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(3128), + [anon_sym_LT_LT] = ACTIONS(3128), + [anon_sym_GT_GT] = ACTIONS(3128), + [anon_sym___extension__] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3128), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_STAR_EQ] = ACTIONS(3118), + [anon_sym_SLASH_EQ] = ACTIONS(3118), + [anon_sym_PERCENT_EQ] = ACTIONS(3118), + [anon_sym_PLUS_EQ] = ACTIONS(3118), + [anon_sym_DASH_EQ] = ACTIONS(3118), + [anon_sym_LT_LT_EQ] = ACTIONS(3118), + [anon_sym_GT_GT_EQ] = ACTIONS(3118), + [anon_sym_AMP_EQ] = ACTIONS(3118), + [anon_sym_CARET_EQ] = ACTIONS(3118), + [anon_sym_PIPE_EQ] = ACTIONS(3118), + [anon_sym_and_eq] = ACTIONS(3128), + [anon_sym_or_eq] = ACTIONS(3128), + [anon_sym_xor_eq] = ACTIONS(3128), + [anon_sym_LT_EQ_GT] = ACTIONS(3118), + [anon_sym_or] = ACTIONS(3128), + [anon_sym_and] = ACTIONS(3128), + [anon_sym_bitor] = ACTIONS(3128), + [anon_sym_xor] = ACTIONS(3128), + [anon_sym_bitand] = ACTIONS(3128), + [anon_sym_not_eq] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_DOT] = ACTIONS(3128), + [anon_sym_DOT_STAR] = ACTIONS(3118), + [anon_sym_DASH_GT] = ACTIONS(3128), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3128), + [anon_sym_override] = ACTIONS(3128), + [anon_sym_requires] = ACTIONS(3128), + [anon_sym_DASH_GT_STAR] = ACTIONS(3118), }, - [STATE(2460)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_exception_specification] = STATE(2920), - [sym__function_attributes_end] = STATE(4135), - [sym__function_postfix] = STATE(3497), - [sym_trailing_return_type] = STATE(2959), - [sym_noexcept] = STATE(2920), - [sym_throw_specifier] = STATE(2920), - [sym_requires_clause] = STATE(3497), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym_SEMI] = ACTIONS(7627), - [anon_sym___attribute__] = ACTIONS(8070), - [anon_sym___attribute] = ACTIONS(8073), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7627), - [anon_sym_or_eq] = ACTIONS(7627), - [anon_sym_xor_eq] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(8076), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6181), - [anon_sym_override] = ACTIONS(6181), - [anon_sym_noexcept] = ACTIONS(6162), - [anon_sym_throw] = ACTIONS(6164), - [anon_sym_requires] = ACTIONS(6183), + [STATE(2366)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2784), + [sym_ms_pointer_modifier] = STATE(2595), + [sym__abstract_declarator] = STATE(6150), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(2974), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2079), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(2974), + [aux_sym_pointer_declarator_repeat1] = STATE(2595), + [sym_identifier] = ACTIONS(6821), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [aux_sym_preproc_if_token2] = ACTIONS(6823), + [aux_sym_preproc_else_token1] = ACTIONS(6823), + [aux_sym_preproc_elif_token1] = ACTIONS(6821), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6823), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(8086), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6823), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(8088), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6823), + [anon_sym_AMP] = ACTIONS(8090), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6823), + [anon_sym_GT_GT] = ACTIONS(6823), + [anon_sym___extension__] = ACTIONS(8092), + [sym_ms_restrict_modifier] = ACTIONS(8094), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8094), + [sym_ms_signed_ptr_modifier] = ACTIONS(8094), + [anon_sym__unaligned] = ACTIONS(8096), + [anon_sym___unaligned] = ACTIONS(8096), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8092), + [anon_sym_volatile] = ACTIONS(8092), + [anon_sym_restrict] = ACTIONS(8092), + [anon_sym___restrict__] = ACTIONS(8092), + [anon_sym__Atomic] = ACTIONS(8092), + [anon_sym__Noreturn] = ACTIONS(8092), + [anon_sym_noreturn] = ACTIONS(8092), + [anon_sym__Nonnull] = ACTIONS(8092), + [anon_sym_mutable] = ACTIONS(8092), + [anon_sym_constinit] = ACTIONS(8092), + [anon_sym_consteval] = ACTIONS(8092), + [anon_sym_alignas] = ACTIONS(8100), + [anon_sym__Alignas] = ACTIONS(8100), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6821), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6821), + [anon_sym_not_eq] = ACTIONS(6821), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6821), + [anon_sym_override] = ACTIONS(6821), + [anon_sym_requires] = ACTIONS(6821), }, - [STATE(2461)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), - [anon_sym_COMMA] = ACTIONS(6260), - [anon_sym_LPAREN2] = ACTIONS(6260), - [anon_sym_DASH] = ACTIONS(6258), - [anon_sym_PLUS] = ACTIONS(6258), - [anon_sym_STAR] = ACTIONS(6258), - [anon_sym_SLASH] = ACTIONS(6258), - [anon_sym_PERCENT] = ACTIONS(6258), - [anon_sym_PIPE_PIPE] = ACTIONS(6260), - [anon_sym_AMP_AMP] = ACTIONS(6260), - [anon_sym_PIPE] = ACTIONS(6258), - [anon_sym_CARET] = ACTIONS(6258), - [anon_sym_AMP] = ACTIONS(6258), - [anon_sym_EQ_EQ] = ACTIONS(6260), - [anon_sym_BANG_EQ] = ACTIONS(6260), - [anon_sym_GT] = ACTIONS(6258), - [anon_sym_GT_EQ] = ACTIONS(6260), - [anon_sym_LT_EQ] = ACTIONS(6258), - [anon_sym_LT] = ACTIONS(6258), - [anon_sym_LT_LT] = ACTIONS(6258), - [anon_sym_GT_GT] = ACTIONS(6258), - [anon_sym___extension__] = ACTIONS(6260), - [anon_sym___attribute__] = ACTIONS(6260), - [anon_sym___attribute] = ACTIONS(6258), - [anon_sym_COLON] = ACTIONS(6258), - [anon_sym_COLON_COLON] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6260), - [anon_sym_LBRACK] = ACTIONS(6260), - [anon_sym_RBRACK] = ACTIONS(6260), - [anon_sym_EQ] = ACTIONS(6258), - [anon_sym_const] = ACTIONS(6258), - [anon_sym_constexpr] = ACTIONS(6260), - [anon_sym_volatile] = ACTIONS(6260), - [anon_sym_restrict] = ACTIONS(6260), - [anon_sym___restrict__] = ACTIONS(6260), - [anon_sym__Atomic] = ACTIONS(6260), - [anon_sym__Noreturn] = ACTIONS(6260), - [anon_sym_noreturn] = ACTIONS(6260), - [anon_sym__Nonnull] = ACTIONS(6260), - [anon_sym_mutable] = ACTIONS(6260), - [anon_sym_constinit] = ACTIONS(6260), - [anon_sym_consteval] = ACTIONS(6260), - [anon_sym_alignas] = ACTIONS(6260), - [anon_sym__Alignas] = ACTIONS(6260), - [anon_sym_QMARK] = ACTIONS(6260), - [anon_sym_STAR_EQ] = ACTIONS(6260), - [anon_sym_SLASH_EQ] = ACTIONS(6260), - [anon_sym_PERCENT_EQ] = ACTIONS(6260), - [anon_sym_PLUS_EQ] = ACTIONS(6260), - [anon_sym_DASH_EQ] = ACTIONS(6260), - [anon_sym_LT_LT_EQ] = ACTIONS(6260), - [anon_sym_GT_GT_EQ] = ACTIONS(6260), - [anon_sym_AMP_EQ] = ACTIONS(6260), - [anon_sym_CARET_EQ] = ACTIONS(6260), - [anon_sym_PIPE_EQ] = ACTIONS(6260), - [anon_sym_and_eq] = ACTIONS(6260), - [anon_sym_or_eq] = ACTIONS(6260), - [anon_sym_xor_eq] = ACTIONS(6260), - [anon_sym_LT_EQ_GT] = ACTIONS(6260), - [anon_sym_or] = ACTIONS(6258), - [anon_sym_and] = ACTIONS(6258), - [anon_sym_bitor] = ACTIONS(6260), - [anon_sym_xor] = ACTIONS(6258), - [anon_sym_bitand] = ACTIONS(6260), - [anon_sym_not_eq] = ACTIONS(6260), - [anon_sym_DASH_DASH] = ACTIONS(6260), - [anon_sym_PLUS_PLUS] = ACTIONS(6260), - [anon_sym_DOT] = ACTIONS(6258), - [anon_sym_DOT_STAR] = ACTIONS(6260), - [anon_sym_DASH_GT] = ACTIONS(6260), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6260), - [anon_sym_decltype] = ACTIONS(6260), - [anon_sym_final] = ACTIONS(6260), - [anon_sym_override] = ACTIONS(6260), - [anon_sym_requires] = ACTIONS(6260), + [STATE(2367)] = { + [sym_type_qualifier] = STATE(2367), + [sym_alignas_qualifier] = STATE(2576), + [aux_sym__type_definition_type_repeat1] = STATE(2367), + [sym_identifier] = ACTIONS(6889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), + [anon_sym_COMMA] = ACTIONS(6891), + [anon_sym_RPAREN] = ACTIONS(6891), + [anon_sym_LPAREN2] = ACTIONS(6891), + [anon_sym_DASH] = ACTIONS(6889), + [anon_sym_PLUS] = ACTIONS(6889), + [anon_sym_STAR] = ACTIONS(6889), + [anon_sym_SLASH] = ACTIONS(6889), + [anon_sym_PERCENT] = ACTIONS(6889), + [anon_sym_PIPE_PIPE] = ACTIONS(6891), + [anon_sym_AMP_AMP] = ACTIONS(6891), + [anon_sym_PIPE] = ACTIONS(6889), + [anon_sym_CARET] = ACTIONS(6889), + [anon_sym_AMP] = ACTIONS(6889), + [anon_sym_EQ_EQ] = ACTIONS(6891), + [anon_sym_BANG_EQ] = ACTIONS(6891), + [anon_sym_GT] = ACTIONS(6889), + [anon_sym_GT_EQ] = ACTIONS(6891), + [anon_sym_LT_EQ] = ACTIONS(6889), + [anon_sym_LT] = ACTIONS(6889), + [anon_sym_LT_LT] = ACTIONS(6889), + [anon_sym_GT_GT] = ACTIONS(6889), + [anon_sym___extension__] = ACTIONS(8102), + [anon_sym___attribute__] = ACTIONS(6889), + [anon_sym___attribute] = ACTIONS(6889), + [anon_sym_LBRACE] = ACTIONS(6891), + [anon_sym_signed] = ACTIONS(6889), + [anon_sym_unsigned] = ACTIONS(6889), + [anon_sym_long] = ACTIONS(6889), + [anon_sym_short] = ACTIONS(6889), + [anon_sym_LBRACK] = ACTIONS(6891), + [anon_sym_EQ] = ACTIONS(6889), + [anon_sym_const] = ACTIONS(8102), + [anon_sym_constexpr] = ACTIONS(8102), + [anon_sym_volatile] = ACTIONS(8102), + [anon_sym_restrict] = ACTIONS(8102), + [anon_sym___restrict__] = ACTIONS(8102), + [anon_sym__Atomic] = ACTIONS(8102), + [anon_sym__Noreturn] = ACTIONS(8102), + [anon_sym_noreturn] = ACTIONS(8102), + [anon_sym__Nonnull] = ACTIONS(8102), + [anon_sym_mutable] = ACTIONS(8102), + [anon_sym_constinit] = ACTIONS(8102), + [anon_sym_consteval] = ACTIONS(8102), + [anon_sym_alignas] = ACTIONS(8105), + [anon_sym__Alignas] = ACTIONS(8105), + [sym_primitive_type] = ACTIONS(6889), + [anon_sym_QMARK] = ACTIONS(6891), + [anon_sym_STAR_EQ] = ACTIONS(6891), + [anon_sym_SLASH_EQ] = ACTIONS(6891), + [anon_sym_PERCENT_EQ] = ACTIONS(6891), + [anon_sym_PLUS_EQ] = ACTIONS(6891), + [anon_sym_DASH_EQ] = ACTIONS(6891), + [anon_sym_LT_LT_EQ] = ACTIONS(6891), + [anon_sym_GT_GT_EQ] = ACTIONS(6891), + [anon_sym_AMP_EQ] = ACTIONS(6891), + [anon_sym_CARET_EQ] = ACTIONS(6891), + [anon_sym_PIPE_EQ] = ACTIONS(6891), + [anon_sym_LT_EQ_GT] = ACTIONS(6891), + [anon_sym_or] = ACTIONS(6889), + [anon_sym_and] = ACTIONS(6889), + [anon_sym_bitor] = ACTIONS(6889), + [anon_sym_xor] = ACTIONS(6889), + [anon_sym_bitand] = ACTIONS(6889), + [anon_sym_not_eq] = ACTIONS(6889), + [anon_sym_DASH_DASH] = ACTIONS(6891), + [anon_sym_PLUS_PLUS] = ACTIONS(6891), + [anon_sym_DOT] = ACTIONS(6889), + [anon_sym_DOT_STAR] = ACTIONS(6891), + [anon_sym_DASH_GT] = ACTIONS(6889), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6889), + [anon_sym_override] = ACTIONS(6889), + [anon_sym_requires] = ACTIONS(6889), + [anon_sym_DASH_GT_STAR] = ACTIONS(6891), }, - [STATE(2462)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), - [anon_sym_COMMA] = ACTIONS(6264), - [anon_sym_LPAREN2] = ACTIONS(6264), - [anon_sym_DASH] = ACTIONS(6262), - [anon_sym_PLUS] = ACTIONS(6262), - [anon_sym_STAR] = ACTIONS(6262), - [anon_sym_SLASH] = ACTIONS(6262), - [anon_sym_PERCENT] = ACTIONS(6262), - [anon_sym_PIPE_PIPE] = ACTIONS(6264), - [anon_sym_AMP_AMP] = ACTIONS(6264), - [anon_sym_PIPE] = ACTIONS(6262), - [anon_sym_CARET] = ACTIONS(6262), - [anon_sym_AMP] = ACTIONS(6262), - [anon_sym_EQ_EQ] = ACTIONS(6264), - [anon_sym_BANG_EQ] = ACTIONS(6264), - [anon_sym_GT] = ACTIONS(6262), - [anon_sym_GT_EQ] = ACTIONS(6264), - [anon_sym_LT_EQ] = ACTIONS(6262), - [anon_sym_LT] = ACTIONS(6262), - [anon_sym_LT_LT] = ACTIONS(6262), - [anon_sym_GT_GT] = ACTIONS(6262), - [anon_sym___extension__] = ACTIONS(6264), - [anon_sym___attribute__] = ACTIONS(6264), - [anon_sym___attribute] = ACTIONS(6262), - [anon_sym_COLON] = ACTIONS(6262), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACE] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(6264), - [anon_sym_RBRACK] = ACTIONS(6264), - [anon_sym_EQ] = ACTIONS(6262), - [anon_sym_const] = ACTIONS(6262), - [anon_sym_constexpr] = ACTIONS(6264), - [anon_sym_volatile] = ACTIONS(6264), - [anon_sym_restrict] = ACTIONS(6264), - [anon_sym___restrict__] = ACTIONS(6264), - [anon_sym__Atomic] = ACTIONS(6264), - [anon_sym__Noreturn] = ACTIONS(6264), - [anon_sym_noreturn] = ACTIONS(6264), - [anon_sym__Nonnull] = ACTIONS(6264), - [anon_sym_mutable] = ACTIONS(6264), - [anon_sym_constinit] = ACTIONS(6264), - [anon_sym_consteval] = ACTIONS(6264), - [anon_sym_alignas] = ACTIONS(6264), - [anon_sym__Alignas] = ACTIONS(6264), - [anon_sym_QMARK] = ACTIONS(6264), - [anon_sym_STAR_EQ] = ACTIONS(6264), - [anon_sym_SLASH_EQ] = ACTIONS(6264), - [anon_sym_PERCENT_EQ] = ACTIONS(6264), - [anon_sym_PLUS_EQ] = ACTIONS(6264), - [anon_sym_DASH_EQ] = ACTIONS(6264), - [anon_sym_LT_LT_EQ] = ACTIONS(6264), - [anon_sym_GT_GT_EQ] = ACTIONS(6264), - [anon_sym_AMP_EQ] = ACTIONS(6264), - [anon_sym_CARET_EQ] = ACTIONS(6264), - [anon_sym_PIPE_EQ] = ACTIONS(6264), - [anon_sym_and_eq] = ACTIONS(6264), - [anon_sym_or_eq] = ACTIONS(6264), - [anon_sym_xor_eq] = ACTIONS(6264), - [anon_sym_LT_EQ_GT] = ACTIONS(6264), - [anon_sym_or] = ACTIONS(6262), - [anon_sym_and] = ACTIONS(6262), - [anon_sym_bitor] = ACTIONS(6264), - [anon_sym_xor] = ACTIONS(6262), - [anon_sym_bitand] = ACTIONS(6264), - [anon_sym_not_eq] = ACTIONS(6264), - [anon_sym_DASH_DASH] = ACTIONS(6264), - [anon_sym_PLUS_PLUS] = ACTIONS(6264), - [anon_sym_DOT] = ACTIONS(6262), - [anon_sym_DOT_STAR] = ACTIONS(6264), - [anon_sym_DASH_GT] = ACTIONS(6264), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6264), - [anon_sym_decltype] = ACTIONS(6264), - [anon_sym_final] = ACTIONS(6264), - [anon_sym_override] = ACTIONS(6264), - [anon_sym_requires] = ACTIONS(6264), + [STATE(2368)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2784), + [sym_ms_pointer_modifier] = STATE(2366), + [sym__abstract_declarator] = STATE(6148), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(2968), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2079), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(2968), + [aux_sym_pointer_declarator_repeat1] = STATE(2366), + [sym_identifier] = ACTIONS(6861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), + [anon_sym_COMMA] = ACTIONS(6859), + [aux_sym_preproc_if_token2] = ACTIONS(6859), + [aux_sym_preproc_else_token1] = ACTIONS(6859), + [aux_sym_preproc_elif_token1] = ACTIONS(6861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6859), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6861), + [anon_sym_STAR] = ACTIONS(8086), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6859), + [anon_sym_PIPE_PIPE] = ACTIONS(6859), + [anon_sym_AMP_AMP] = ACTIONS(8088), + [anon_sym_PIPE] = ACTIONS(6861), + [anon_sym_CARET] = ACTIONS(6859), + [anon_sym_AMP] = ACTIONS(8090), + [anon_sym_EQ_EQ] = ACTIONS(6859), + [anon_sym_BANG_EQ] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6861), + [anon_sym_GT_EQ] = ACTIONS(6859), + [anon_sym_LT_EQ] = ACTIONS(6861), + [anon_sym_LT] = ACTIONS(6861), + [anon_sym_LT_LT] = ACTIONS(6859), + [anon_sym_GT_GT] = ACTIONS(6859), + [anon_sym___extension__] = ACTIONS(8092), + [sym_ms_restrict_modifier] = ACTIONS(8094), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8094), + [sym_ms_signed_ptr_modifier] = ACTIONS(8094), + [anon_sym__unaligned] = ACTIONS(8096), + [anon_sym___unaligned] = ACTIONS(8096), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8092), + [anon_sym_volatile] = ACTIONS(8092), + [anon_sym_restrict] = ACTIONS(8092), + [anon_sym___restrict__] = ACTIONS(8092), + [anon_sym__Atomic] = ACTIONS(8092), + [anon_sym__Noreturn] = ACTIONS(8092), + [anon_sym_noreturn] = ACTIONS(8092), + [anon_sym__Nonnull] = ACTIONS(8092), + [anon_sym_mutable] = ACTIONS(8092), + [anon_sym_constinit] = ACTIONS(8092), + [anon_sym_consteval] = ACTIONS(8092), + [anon_sym_alignas] = ACTIONS(8100), + [anon_sym__Alignas] = ACTIONS(8100), + [anon_sym_QMARK] = ACTIONS(6859), + [anon_sym_LT_EQ_GT] = ACTIONS(6859), + [anon_sym_or] = ACTIONS(6861), + [anon_sym_and] = ACTIONS(6861), + [anon_sym_bitor] = ACTIONS(6861), + [anon_sym_xor] = ACTIONS(6861), + [anon_sym_bitand] = ACTIONS(6861), + [anon_sym_not_eq] = ACTIONS(6861), + [anon_sym_DASH_DASH] = ACTIONS(6859), + [anon_sym_PLUS_PLUS] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6861), + [anon_sym_DOT_STAR] = ACTIONS(6859), + [anon_sym_DASH_GT] = ACTIONS(6859), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6861), + [anon_sym_override] = ACTIONS(6861), + [anon_sym_requires] = ACTIONS(6861), }, - [STATE(2463)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2792), - [sym_ms_pointer_modifier] = STATE(2455), - [sym__abstract_declarator] = STATE(6259), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(3399), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(1970), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(3399), - [aux_sym_pointer_declarator_repeat1] = STATE(2455), - [sym_identifier] = ACTIONS(6457), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [aux_sym_preproc_if_token2] = ACTIONS(6459), - [aux_sym_preproc_else_token1] = ACTIONS(6459), - [aux_sym_preproc_elif_token1] = ACTIONS(6457), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6459), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_PLUS] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(8081), - [anon_sym_SLASH] = ACTIONS(6457), - [anon_sym_PERCENT] = ACTIONS(6459), - [anon_sym_PIPE_PIPE] = ACTIONS(6459), - [anon_sym_AMP_AMP] = ACTIONS(8083), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_CARET] = ACTIONS(6459), - [anon_sym_AMP] = ACTIONS(8085), - [anon_sym_EQ_EQ] = ACTIONS(6459), - [anon_sym_BANG_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_LT_EQ] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_LT_LT] = ACTIONS(6459), - [anon_sym_GT_GT] = ACTIONS(6459), - [anon_sym___extension__] = ACTIONS(7739), - [sym_ms_restrict_modifier] = ACTIONS(7741), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7741), - [sym_ms_signed_ptr_modifier] = ACTIONS(7741), - [anon_sym__unaligned] = ACTIONS(7743), - [anon_sym___unaligned] = ACTIONS(7743), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(7739), - [anon_sym_volatile] = ACTIONS(7739), - [anon_sym_restrict] = ACTIONS(7739), - [anon_sym___restrict__] = ACTIONS(7739), - [anon_sym__Atomic] = ACTIONS(7739), - [anon_sym__Noreturn] = ACTIONS(7739), - [anon_sym_noreturn] = ACTIONS(7739), - [anon_sym__Nonnull] = ACTIONS(7739), - [anon_sym_mutable] = ACTIONS(7739), - [anon_sym_constinit] = ACTIONS(7739), - [anon_sym_consteval] = ACTIONS(7739), - [anon_sym_alignas] = ACTIONS(7747), - [anon_sym__Alignas] = ACTIONS(7747), - [anon_sym_QMARK] = ACTIONS(6459), - [anon_sym_LT_EQ_GT] = ACTIONS(6459), - [anon_sym_or] = ACTIONS(6457), - [anon_sym_and] = ACTIONS(6457), - [anon_sym_bitor] = ACTIONS(6457), - [anon_sym_xor] = ACTIONS(6457), - [anon_sym_bitand] = ACTIONS(6457), - [anon_sym_not_eq] = ACTIONS(6457), - [anon_sym_DASH_DASH] = ACTIONS(6459), - [anon_sym_PLUS_PLUS] = ACTIONS(6459), - [anon_sym_DOT] = ACTIONS(6457), - [anon_sym_DOT_STAR] = ACTIONS(6459), - [anon_sym_DASH_GT] = ACTIONS(6459), + [STATE(2369)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(6999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7001), + [anon_sym_COMMA] = ACTIONS(7001), + [anon_sym_LPAREN2] = ACTIONS(7001), + [anon_sym_DASH] = ACTIONS(6999), + [anon_sym_PLUS] = ACTIONS(6999), + [anon_sym_STAR] = ACTIONS(6999), + [anon_sym_SLASH] = ACTIONS(6999), + [anon_sym_PERCENT] = ACTIONS(6999), + [anon_sym_PIPE_PIPE] = ACTIONS(7001), + [anon_sym_AMP_AMP] = ACTIONS(7001), + [anon_sym_PIPE] = ACTIONS(6999), + [anon_sym_CARET] = ACTIONS(6999), + [anon_sym_AMP] = ACTIONS(6999), + [anon_sym_EQ_EQ] = ACTIONS(7001), + [anon_sym_BANG_EQ] = ACTIONS(7001), + [anon_sym_GT] = ACTIONS(6999), + [anon_sym_GT_EQ] = ACTIONS(6999), + [anon_sym_LT_EQ] = ACTIONS(6999), + [anon_sym_LT] = ACTIONS(6999), + [anon_sym_LT_LT] = ACTIONS(6999), + [anon_sym_GT_GT] = ACTIONS(6999), + [anon_sym___extension__] = ACTIONS(6999), + [anon_sym___attribute__] = ACTIONS(6999), + [anon_sym___attribute] = ACTIONS(6999), + [anon_sym_LBRACE] = ACTIONS(7001), + [anon_sym_signed] = ACTIONS(8108), + [anon_sym_unsigned] = ACTIONS(8108), + [anon_sym_long] = ACTIONS(8108), + [anon_sym_short] = ACTIONS(8108), + [anon_sym_LBRACK] = ACTIONS(7001), + [anon_sym_EQ] = ACTIONS(6999), + [anon_sym_const] = ACTIONS(6999), + [anon_sym_constexpr] = ACTIONS(6999), + [anon_sym_volatile] = ACTIONS(6999), + [anon_sym_restrict] = ACTIONS(6999), + [anon_sym___restrict__] = ACTIONS(6999), + [anon_sym__Atomic] = ACTIONS(6999), + [anon_sym__Noreturn] = ACTIONS(6999), + [anon_sym_noreturn] = ACTIONS(6999), + [anon_sym__Nonnull] = ACTIONS(6999), + [anon_sym_mutable] = ACTIONS(6999), + [anon_sym_constinit] = ACTIONS(6999), + [anon_sym_consteval] = ACTIONS(6999), + [anon_sym_alignas] = ACTIONS(6999), + [anon_sym__Alignas] = ACTIONS(6999), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7001), + [anon_sym_STAR_EQ] = ACTIONS(7001), + [anon_sym_SLASH_EQ] = ACTIONS(7001), + [anon_sym_PERCENT_EQ] = ACTIONS(7001), + [anon_sym_PLUS_EQ] = ACTIONS(7001), + [anon_sym_DASH_EQ] = ACTIONS(7001), + [anon_sym_LT_LT_EQ] = ACTIONS(7001), + [anon_sym_GT_GT_EQ] = ACTIONS(6999), + [anon_sym_AMP_EQ] = ACTIONS(7001), + [anon_sym_CARET_EQ] = ACTIONS(7001), + [anon_sym_PIPE_EQ] = ACTIONS(7001), + [anon_sym_and_eq] = ACTIONS(6999), + [anon_sym_or_eq] = ACTIONS(6999), + [anon_sym_xor_eq] = ACTIONS(6999), + [anon_sym_LT_EQ_GT] = ACTIONS(7001), + [anon_sym_or] = ACTIONS(6999), + [anon_sym_and] = ACTIONS(6999), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(6999), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(7001), + [anon_sym_PLUS_PLUS] = ACTIONS(7001), + [anon_sym_DOT] = ACTIONS(6999), + [anon_sym_DOT_STAR] = ACTIONS(7001), + [anon_sym_DASH_GT] = ACTIONS(7001), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6999), + [anon_sym_override] = ACTIONS(6999), + [anon_sym_GT2] = ACTIONS(7001), + [anon_sym_requires] = ACTIONS(6999), }, - [STATE(2464)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_attributes_end] = STATE(3812), - [sym__function_postfix] = STATE(3513), - [sym_trailing_return_type] = STATE(2911), - [sym_requires_clause] = STATE(3513), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [sym_identifier] = ACTIONS(7546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [aux_sym_preproc_if_token2] = ACTIONS(7544), - [aux_sym_preproc_else_token1] = ACTIONS(7544), - [aux_sym_preproc_elif_token1] = ACTIONS(7546), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6123), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7546), - [anon_sym_or_eq] = ACTIONS(7546), - [anon_sym_xor_eq] = ACTIONS(7546), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7546), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7546), - [anon_sym_not_eq] = ACTIONS(7546), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6129), - [anon_sym___asm__] = ACTIONS(6129), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7579), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6134), - [anon_sym_override] = ACTIONS(6134), - [anon_sym_requires] = ACTIONS(6140), + [STATE(2370)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2784), + [sym_ms_pointer_modifier] = STATE(2595), + [sym__abstract_declarator] = STATE(6179), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(2970), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2069), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(2970), + [aux_sym_pointer_declarator_repeat1] = STATE(2595), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(8111), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6823), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(8113), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6823), + [anon_sym_AMP] = ACTIONS(8115), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6823), + [anon_sym_GT_GT] = ACTIONS(6823), + [anon_sym_SEMI] = ACTIONS(6823), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym_COLON] = ACTIONS(6821), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6823), + [sym_ms_restrict_modifier] = ACTIONS(8094), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8119), + [sym_ms_signed_ptr_modifier] = ACTIONS(8119), + [anon_sym__unaligned] = ACTIONS(8121), + [anon_sym___unaligned] = ACTIONS(8121), + [anon_sym_RBRACE] = ACTIONS(6823), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6823), + [anon_sym_and] = ACTIONS(6823), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6823), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6823), + [anon_sym_override] = ACTIONS(6823), + [anon_sym_requires] = ACTIONS(6823), + [anon_sym_COLON_RBRACK] = ACTIONS(6823), }, - [STATE(2465)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_attributes_end] = STATE(3813), - [sym__function_postfix] = STATE(3497), - [sym_trailing_return_type] = STATE(2959), - [sym_requires_clause] = STATE(3497), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [sym_identifier] = ACTIONS(7629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [aux_sym_preproc_if_token2] = ACTIONS(7627), - [aux_sym_preproc_else_token1] = ACTIONS(7627), - [aux_sym_preproc_elif_token1] = ACTIONS(7629), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7627), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym___attribute__] = ACTIONS(6123), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7629), - [anon_sym_or_eq] = ACTIONS(7629), - [anon_sym_xor_eq] = ACTIONS(7629), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7629), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7629), - [anon_sym_not_eq] = ACTIONS(7629), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6129), - [anon_sym___asm__] = ACTIONS(6129), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(7642), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6134), - [anon_sym_override] = ACTIONS(6134), - [anon_sym_requires] = ACTIONS(6140), - }, - [STATE(2466)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_attributes_end] = STATE(3820), - [sym__function_postfix] = STATE(3528), - [sym_trailing_return_type] = STATE(2964), - [sym_requires_clause] = STATE(3528), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [sym_identifier] = ACTIONS(8087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), - [anon_sym_COMMA] = ACTIONS(8089), - [aux_sym_preproc_if_token2] = ACTIONS(8089), - [aux_sym_preproc_else_token1] = ACTIONS(8089), - [aux_sym_preproc_elif_token1] = ACTIONS(8087), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8089), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8089), - [anon_sym_LPAREN2] = ACTIONS(8089), - [anon_sym_DASH] = ACTIONS(8087), - [anon_sym_PLUS] = ACTIONS(8087), - [anon_sym_STAR] = ACTIONS(8087), - [anon_sym_SLASH] = ACTIONS(8087), - [anon_sym_PERCENT] = ACTIONS(8087), - [anon_sym_PIPE_PIPE] = ACTIONS(8089), - [anon_sym_AMP_AMP] = ACTIONS(8089), - [anon_sym_PIPE] = ACTIONS(8087), - [anon_sym_CARET] = ACTIONS(8087), - [anon_sym_AMP] = ACTIONS(8087), - [anon_sym_EQ_EQ] = ACTIONS(8089), - [anon_sym_BANG_EQ] = ACTIONS(8089), - [anon_sym_GT] = ACTIONS(8087), - [anon_sym_GT_EQ] = ACTIONS(8089), - [anon_sym_LT_EQ] = ACTIONS(8087), - [anon_sym_LT] = ACTIONS(8087), - [anon_sym_LT_LT] = ACTIONS(8087), - [anon_sym_GT_GT] = ACTIONS(8087), - [anon_sym___attribute__] = ACTIONS(6123), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(8087), - [anon_sym_EQ] = ACTIONS(8087), - [anon_sym_QMARK] = ACTIONS(8089), - [anon_sym_STAR_EQ] = ACTIONS(8089), - [anon_sym_SLASH_EQ] = ACTIONS(8089), - [anon_sym_PERCENT_EQ] = ACTIONS(8089), - [anon_sym_PLUS_EQ] = ACTIONS(8089), - [anon_sym_DASH_EQ] = ACTIONS(8089), - [anon_sym_LT_LT_EQ] = ACTIONS(8089), - [anon_sym_GT_GT_EQ] = ACTIONS(8089), - [anon_sym_AMP_EQ] = ACTIONS(8089), - [anon_sym_CARET_EQ] = ACTIONS(8089), - [anon_sym_PIPE_EQ] = ACTIONS(8089), - [anon_sym_and_eq] = ACTIONS(8087), - [anon_sym_or_eq] = ACTIONS(8087), - [anon_sym_xor_eq] = ACTIONS(8087), - [anon_sym_LT_EQ_GT] = ACTIONS(8089), - [anon_sym_or] = ACTIONS(8087), - [anon_sym_and] = ACTIONS(8087), - [anon_sym_bitor] = ACTIONS(8087), - [anon_sym_xor] = ACTIONS(8087), - [anon_sym_bitand] = ACTIONS(8087), - [anon_sym_not_eq] = ACTIONS(8087), - [anon_sym_DASH_DASH] = ACTIONS(8089), - [anon_sym_PLUS_PLUS] = ACTIONS(8089), - [anon_sym_asm] = ACTIONS(6129), - [anon_sym___asm__] = ACTIONS(6129), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(8087), - [anon_sym_DOT_STAR] = ACTIONS(8089), - [anon_sym_DASH_GT] = ACTIONS(8091), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6134), - [anon_sym_override] = ACTIONS(6134), - [anon_sym_requires] = ACTIONS(6140), - }, - [STATE(2467)] = { - [sym_attribute_specifier] = STATE(3091), - [sym_enumerator_list] = STATE(2717), - [sym__enum_base_clause] = STATE(2562), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7602), - [anon_sym_COMMA] = ACTIONS(7602), - [anon_sym_LPAREN2] = ACTIONS(7602), - [anon_sym_DASH] = ACTIONS(7600), - [anon_sym_PLUS] = ACTIONS(7600), - [anon_sym_STAR] = ACTIONS(7600), - [anon_sym_SLASH] = ACTIONS(7600), - [anon_sym_PERCENT] = ACTIONS(7600), - [anon_sym_PIPE_PIPE] = ACTIONS(7602), - [anon_sym_AMP_AMP] = ACTIONS(7602), - [anon_sym_PIPE] = ACTIONS(7600), - [anon_sym_CARET] = ACTIONS(7600), - [anon_sym_AMP] = ACTIONS(7600), - [anon_sym_EQ_EQ] = ACTIONS(7602), - [anon_sym_BANG_EQ] = ACTIONS(7602), - [anon_sym_GT] = ACTIONS(7600), - [anon_sym_GT_EQ] = ACTIONS(7600), - [anon_sym_LT_EQ] = ACTIONS(7600), - [anon_sym_LT] = ACTIONS(7600), - [anon_sym_LT_LT] = ACTIONS(7600), - [anon_sym_GT_GT] = ACTIONS(7600), - [anon_sym___extension__] = ACTIONS(7602), - [anon_sym___attribute__] = ACTIONS(7862), - [anon_sym___attribute] = ACTIONS(7864), - [anon_sym_COLON] = ACTIONS(8094), - [anon_sym_LBRACE] = ACTIONS(8096), - [anon_sym_LBRACK] = ACTIONS(7602), - [anon_sym_EQ] = ACTIONS(7600), - [anon_sym_const] = ACTIONS(7600), - [anon_sym_constexpr] = ACTIONS(7602), - [anon_sym_volatile] = ACTIONS(7602), - [anon_sym_restrict] = ACTIONS(7602), - [anon_sym___restrict__] = ACTIONS(7602), - [anon_sym__Atomic] = ACTIONS(7602), - [anon_sym__Noreturn] = ACTIONS(7602), - [anon_sym_noreturn] = ACTIONS(7602), - [anon_sym__Nonnull] = ACTIONS(7602), - [anon_sym_mutable] = ACTIONS(7602), - [anon_sym_constinit] = ACTIONS(7602), - [anon_sym_consteval] = ACTIONS(7602), - [anon_sym_alignas] = ACTIONS(7602), - [anon_sym__Alignas] = ACTIONS(7602), - [anon_sym_QMARK] = ACTIONS(7602), - [anon_sym_STAR_EQ] = ACTIONS(7602), - [anon_sym_SLASH_EQ] = ACTIONS(7602), - [anon_sym_PERCENT_EQ] = ACTIONS(7602), - [anon_sym_PLUS_EQ] = ACTIONS(7602), - [anon_sym_DASH_EQ] = ACTIONS(7602), - [anon_sym_LT_LT_EQ] = ACTIONS(7602), - [anon_sym_GT_GT_EQ] = ACTIONS(7600), - [anon_sym_AMP_EQ] = ACTIONS(7602), - [anon_sym_CARET_EQ] = ACTIONS(7602), - [anon_sym_PIPE_EQ] = ACTIONS(7602), - [anon_sym_and_eq] = ACTIONS(7602), - [anon_sym_or_eq] = ACTIONS(7602), - [anon_sym_xor_eq] = ACTIONS(7602), - [anon_sym_LT_EQ_GT] = ACTIONS(7602), - [anon_sym_or] = ACTIONS(7600), - [anon_sym_and] = ACTIONS(7600), - [anon_sym_bitor] = ACTIONS(7602), - [anon_sym_xor] = ACTIONS(7600), - [anon_sym_bitand] = ACTIONS(7602), - [anon_sym_not_eq] = ACTIONS(7602), - [anon_sym_DASH_DASH] = ACTIONS(7602), - [anon_sym_PLUS_PLUS] = ACTIONS(7602), - [anon_sym_DOT] = ACTIONS(7600), - [anon_sym_DOT_STAR] = ACTIONS(7602), - [anon_sym_DASH_GT] = ACTIONS(7602), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7602), - [anon_sym_override] = ACTIONS(7602), - [anon_sym_GT2] = ACTIONS(7602), - [anon_sym_requires] = ACTIONS(7602), - }, - [STATE(2468)] = { - [sym_attribute_specifier] = STATE(3010), - [sym_enumerator_list] = STATE(2653), - [sym__enum_base_clause] = STATE(2582), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), - [anon_sym_COMMA] = ACTIONS(7653), - [anon_sym_LPAREN2] = ACTIONS(7653), - [anon_sym_DASH] = ACTIONS(7651), - [anon_sym_PLUS] = ACTIONS(7651), - [anon_sym_STAR] = ACTIONS(7651), - [anon_sym_SLASH] = ACTIONS(7651), - [anon_sym_PERCENT] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_AMP_AMP] = ACTIONS(7653), - [anon_sym_PIPE] = ACTIONS(7651), - [anon_sym_CARET] = ACTIONS(7651), - [anon_sym_AMP] = ACTIONS(7651), - [anon_sym_EQ_EQ] = ACTIONS(7653), - [anon_sym_BANG_EQ] = ACTIONS(7653), - [anon_sym_GT] = ACTIONS(7651), - [anon_sym_GT_EQ] = ACTIONS(7651), - [anon_sym_LT_EQ] = ACTIONS(7651), - [anon_sym_LT] = ACTIONS(7651), - [anon_sym_LT_LT] = ACTIONS(7651), - [anon_sym_GT_GT] = ACTIONS(7651), - [anon_sym___extension__] = ACTIONS(7653), - [anon_sym___attribute__] = ACTIONS(7862), - [anon_sym___attribute] = ACTIONS(7864), - [anon_sym_COLON] = ACTIONS(8094), - [anon_sym_LBRACE] = ACTIONS(8096), - [anon_sym_LBRACK] = ACTIONS(7653), - [anon_sym_EQ] = ACTIONS(7651), - [anon_sym_const] = ACTIONS(7651), - [anon_sym_constexpr] = ACTIONS(7653), - [anon_sym_volatile] = ACTIONS(7653), - [anon_sym_restrict] = ACTIONS(7653), - [anon_sym___restrict__] = ACTIONS(7653), - [anon_sym__Atomic] = ACTIONS(7653), - [anon_sym__Noreturn] = ACTIONS(7653), - [anon_sym_noreturn] = ACTIONS(7653), - [anon_sym__Nonnull] = ACTIONS(7653), - [anon_sym_mutable] = ACTIONS(7653), - [anon_sym_constinit] = ACTIONS(7653), - [anon_sym_consteval] = ACTIONS(7653), - [anon_sym_alignas] = ACTIONS(7653), - [anon_sym__Alignas] = ACTIONS(7653), - [anon_sym_QMARK] = ACTIONS(7653), - [anon_sym_STAR_EQ] = ACTIONS(7653), - [anon_sym_SLASH_EQ] = ACTIONS(7653), - [anon_sym_PERCENT_EQ] = ACTIONS(7653), - [anon_sym_PLUS_EQ] = ACTIONS(7653), - [anon_sym_DASH_EQ] = ACTIONS(7653), - [anon_sym_LT_LT_EQ] = ACTIONS(7653), - [anon_sym_GT_GT_EQ] = ACTIONS(7651), - [anon_sym_AMP_EQ] = ACTIONS(7653), - [anon_sym_CARET_EQ] = ACTIONS(7653), - [anon_sym_PIPE_EQ] = ACTIONS(7653), - [anon_sym_and_eq] = ACTIONS(7653), - [anon_sym_or_eq] = ACTIONS(7653), - [anon_sym_xor_eq] = ACTIONS(7653), - [anon_sym_LT_EQ_GT] = ACTIONS(7653), - [anon_sym_or] = ACTIONS(7651), - [anon_sym_and] = ACTIONS(7651), - [anon_sym_bitor] = ACTIONS(7653), - [anon_sym_xor] = ACTIONS(7651), - [anon_sym_bitand] = ACTIONS(7653), - [anon_sym_not_eq] = ACTIONS(7653), - [anon_sym_DASH_DASH] = ACTIONS(7653), - [anon_sym_PLUS_PLUS] = ACTIONS(7653), - [anon_sym_DOT] = ACTIONS(7651), - [anon_sym_DOT_STAR] = ACTIONS(7653), - [anon_sym_DASH_GT] = ACTIONS(7653), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7653), - [anon_sym_override] = ACTIONS(7653), - [anon_sym_GT2] = ACTIONS(7653), - [anon_sym_requires] = ACTIONS(7653), - }, - [STATE(2469)] = { - [sym_attribute_specifier] = STATE(3026), - [sym_enumerator_list] = STATE(2663), - [sym__enum_base_clause] = STATE(2583), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7602), - [anon_sym_COMMA] = ACTIONS(7602), - [anon_sym_LPAREN2] = ACTIONS(7602), - [anon_sym_DASH] = ACTIONS(7600), - [anon_sym_PLUS] = ACTIONS(7600), - [anon_sym_STAR] = ACTIONS(7600), - [anon_sym_SLASH] = ACTIONS(7600), - [anon_sym_PERCENT] = ACTIONS(7600), - [anon_sym_PIPE_PIPE] = ACTIONS(7602), - [anon_sym_AMP_AMP] = ACTIONS(7602), - [anon_sym_PIPE] = ACTIONS(7600), - [anon_sym_CARET] = ACTIONS(7600), - [anon_sym_AMP] = ACTIONS(7600), - [anon_sym_EQ_EQ] = ACTIONS(7602), - [anon_sym_BANG_EQ] = ACTIONS(7602), - [anon_sym_GT] = ACTIONS(7600), - [anon_sym_GT_EQ] = ACTIONS(7602), - [anon_sym_LT_EQ] = ACTIONS(7600), - [anon_sym_LT] = ACTIONS(7600), - [anon_sym_LT_LT] = ACTIONS(7600), - [anon_sym_GT_GT] = ACTIONS(7600), - [anon_sym___extension__] = ACTIONS(7602), - [anon_sym___attribute__] = ACTIONS(8003), - [anon_sym___attribute] = ACTIONS(8005), - [anon_sym_COLON] = ACTIONS(8098), - [anon_sym_LBRACE] = ACTIONS(8100), - [anon_sym_LBRACK] = ACTIONS(7602), - [anon_sym_RBRACK] = ACTIONS(7602), - [anon_sym_EQ] = ACTIONS(7600), - [anon_sym_const] = ACTIONS(7600), - [anon_sym_constexpr] = ACTIONS(7602), - [anon_sym_volatile] = ACTIONS(7602), - [anon_sym_restrict] = ACTIONS(7602), - [anon_sym___restrict__] = ACTIONS(7602), - [anon_sym__Atomic] = ACTIONS(7602), - [anon_sym__Noreturn] = ACTIONS(7602), - [anon_sym_noreturn] = ACTIONS(7602), - [anon_sym__Nonnull] = ACTIONS(7602), - [anon_sym_mutable] = ACTIONS(7602), - [anon_sym_constinit] = ACTIONS(7602), - [anon_sym_consteval] = ACTIONS(7602), - [anon_sym_alignas] = ACTIONS(7602), - [anon_sym__Alignas] = ACTIONS(7602), - [anon_sym_QMARK] = ACTIONS(7602), - [anon_sym_STAR_EQ] = ACTIONS(7602), - [anon_sym_SLASH_EQ] = ACTIONS(7602), - [anon_sym_PERCENT_EQ] = ACTIONS(7602), - [anon_sym_PLUS_EQ] = ACTIONS(7602), - [anon_sym_DASH_EQ] = ACTIONS(7602), - [anon_sym_LT_LT_EQ] = ACTIONS(7602), - [anon_sym_GT_GT_EQ] = ACTIONS(7602), - [anon_sym_AMP_EQ] = ACTIONS(7602), - [anon_sym_CARET_EQ] = ACTIONS(7602), - [anon_sym_PIPE_EQ] = ACTIONS(7602), - [anon_sym_and_eq] = ACTIONS(7602), - [anon_sym_or_eq] = ACTIONS(7602), - [anon_sym_xor_eq] = ACTIONS(7602), - [anon_sym_LT_EQ_GT] = ACTIONS(7602), - [anon_sym_or] = ACTIONS(7600), - [anon_sym_and] = ACTIONS(7600), - [anon_sym_bitor] = ACTIONS(7602), - [anon_sym_xor] = ACTIONS(7600), - [anon_sym_bitand] = ACTIONS(7602), - [anon_sym_not_eq] = ACTIONS(7602), - [anon_sym_DASH_DASH] = ACTIONS(7602), - [anon_sym_PLUS_PLUS] = ACTIONS(7602), - [anon_sym_DOT] = ACTIONS(7600), - [anon_sym_DOT_STAR] = ACTIONS(7602), - [anon_sym_DASH_GT] = ACTIONS(7602), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7602), - [anon_sym_override] = ACTIONS(7602), - [anon_sym_requires] = ACTIONS(7602), - }, - [STATE(2470)] = { - [sym_attribute_specifier] = STATE(3045), - [sym_enumerator_list] = STATE(2679), - [sym__enum_base_clause] = STATE(2585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), - [anon_sym_COMMA] = ACTIONS(7653), - [anon_sym_LPAREN2] = ACTIONS(7653), - [anon_sym_DASH] = ACTIONS(7651), - [anon_sym_PLUS] = ACTIONS(7651), - [anon_sym_STAR] = ACTIONS(7651), - [anon_sym_SLASH] = ACTIONS(7651), - [anon_sym_PERCENT] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_AMP_AMP] = ACTIONS(7653), - [anon_sym_PIPE] = ACTIONS(7651), - [anon_sym_CARET] = ACTIONS(7651), - [anon_sym_AMP] = ACTIONS(7651), - [anon_sym_EQ_EQ] = ACTIONS(7653), - [anon_sym_BANG_EQ] = ACTIONS(7653), - [anon_sym_GT] = ACTIONS(7651), - [anon_sym_GT_EQ] = ACTIONS(7653), - [anon_sym_LT_EQ] = ACTIONS(7651), - [anon_sym_LT] = ACTIONS(7651), - [anon_sym_LT_LT] = ACTIONS(7651), - [anon_sym_GT_GT] = ACTIONS(7651), - [anon_sym___extension__] = ACTIONS(7653), - [anon_sym___attribute__] = ACTIONS(8003), - [anon_sym___attribute] = ACTIONS(8005), - [anon_sym_COLON] = ACTIONS(8098), - [anon_sym_LBRACE] = ACTIONS(8100), - [anon_sym_LBRACK] = ACTIONS(7653), - [anon_sym_RBRACK] = ACTIONS(7653), - [anon_sym_EQ] = ACTIONS(7651), - [anon_sym_const] = ACTIONS(7651), - [anon_sym_constexpr] = ACTIONS(7653), - [anon_sym_volatile] = ACTIONS(7653), - [anon_sym_restrict] = ACTIONS(7653), - [anon_sym___restrict__] = ACTIONS(7653), - [anon_sym__Atomic] = ACTIONS(7653), - [anon_sym__Noreturn] = ACTIONS(7653), - [anon_sym_noreturn] = ACTIONS(7653), - [anon_sym__Nonnull] = ACTIONS(7653), - [anon_sym_mutable] = ACTIONS(7653), - [anon_sym_constinit] = ACTIONS(7653), - [anon_sym_consteval] = ACTIONS(7653), - [anon_sym_alignas] = ACTIONS(7653), - [anon_sym__Alignas] = ACTIONS(7653), - [anon_sym_QMARK] = ACTIONS(7653), - [anon_sym_STAR_EQ] = ACTIONS(7653), - [anon_sym_SLASH_EQ] = ACTIONS(7653), - [anon_sym_PERCENT_EQ] = ACTIONS(7653), - [anon_sym_PLUS_EQ] = ACTIONS(7653), - [anon_sym_DASH_EQ] = ACTIONS(7653), - [anon_sym_LT_LT_EQ] = ACTIONS(7653), - [anon_sym_GT_GT_EQ] = ACTIONS(7653), - [anon_sym_AMP_EQ] = ACTIONS(7653), - [anon_sym_CARET_EQ] = ACTIONS(7653), - [anon_sym_PIPE_EQ] = ACTIONS(7653), - [anon_sym_and_eq] = ACTIONS(7653), - [anon_sym_or_eq] = ACTIONS(7653), - [anon_sym_xor_eq] = ACTIONS(7653), - [anon_sym_LT_EQ_GT] = ACTIONS(7653), - [anon_sym_or] = ACTIONS(7651), - [anon_sym_and] = ACTIONS(7651), - [anon_sym_bitor] = ACTIONS(7653), - [anon_sym_xor] = ACTIONS(7651), - [anon_sym_bitand] = ACTIONS(7653), - [anon_sym_not_eq] = ACTIONS(7653), - [anon_sym_DASH_DASH] = ACTIONS(7653), - [anon_sym_PLUS_PLUS] = ACTIONS(7653), - [anon_sym_DOT] = ACTIONS(7651), - [anon_sym_DOT_STAR] = ACTIONS(7653), - [anon_sym_DASH_GT] = ACTIONS(7653), + [STATE(2371)] = { + [sym_argument_list] = STATE(3894), + [sym_initializer_list] = STATE(3899), + [aux_sym_sized_type_specifier_repeat1] = STATE(2208), + [sym_identifier] = ACTIONS(7223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [aux_sym_preproc_if_token2] = ACTIONS(7225), + [aux_sym_preproc_else_token1] = ACTIONS(7225), + [aux_sym_preproc_elif_token1] = ACTIONS(7223), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7687), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_signed] = ACTIONS(7721), + [anon_sym_unsigned] = ACTIONS(7721), + [anon_sym_long] = ACTIONS(7721), + [anon_sym_short] = ACTIONS(7721), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7223), + [anon_sym__Alignas] = ACTIONS(7223), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7223), + [anon_sym_or_eq] = ACTIONS(7223), + [anon_sym_xor_eq] = ACTIONS(7223), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7223), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7223), + [anon_sym_not_eq] = ACTIONS(7223), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7653), - [anon_sym_override] = ACTIONS(7653), - [anon_sym_requires] = ACTIONS(7653), - }, - [STATE(2471)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6272), - [anon_sym_COMMA] = ACTIONS(6272), - [anon_sym_LPAREN2] = ACTIONS(6272), - [anon_sym_DASH] = ACTIONS(6270), - [anon_sym_PLUS] = ACTIONS(6270), - [anon_sym_STAR] = ACTIONS(6270), - [anon_sym_SLASH] = ACTIONS(6270), - [anon_sym_PERCENT] = ACTIONS(6270), - [anon_sym_PIPE_PIPE] = ACTIONS(6272), - [anon_sym_AMP_AMP] = ACTIONS(6272), - [anon_sym_PIPE] = ACTIONS(6270), - [anon_sym_CARET] = ACTIONS(6270), - [anon_sym_AMP] = ACTIONS(6270), - [anon_sym_EQ_EQ] = ACTIONS(6272), - [anon_sym_BANG_EQ] = ACTIONS(6272), - [anon_sym_GT] = ACTIONS(6270), - [anon_sym_GT_EQ] = ACTIONS(6270), - [anon_sym_LT_EQ] = ACTIONS(6270), - [anon_sym_LT] = ACTIONS(6270), - [anon_sym_LT_LT] = ACTIONS(6270), - [anon_sym_GT_GT] = ACTIONS(6270), - [anon_sym___extension__] = ACTIONS(6272), - [anon_sym___attribute__] = ACTIONS(6272), - [anon_sym___attribute] = ACTIONS(6270), - [anon_sym_COLON] = ACTIONS(6270), - [anon_sym_COLON_COLON] = ACTIONS(6272), - [anon_sym_LBRACE] = ACTIONS(6272), - [anon_sym_LBRACK] = ACTIONS(6272), - [anon_sym_EQ] = ACTIONS(6270), - [anon_sym_const] = ACTIONS(6270), - [anon_sym_constexpr] = ACTIONS(6272), - [anon_sym_volatile] = ACTIONS(6272), - [anon_sym_restrict] = ACTIONS(6272), - [anon_sym___restrict__] = ACTIONS(6272), - [anon_sym__Atomic] = ACTIONS(6272), - [anon_sym__Noreturn] = ACTIONS(6272), - [anon_sym_noreturn] = ACTIONS(6272), - [anon_sym__Nonnull] = ACTIONS(6272), - [anon_sym_mutable] = ACTIONS(6272), - [anon_sym_constinit] = ACTIONS(6272), - [anon_sym_consteval] = ACTIONS(6272), - [anon_sym_alignas] = ACTIONS(6272), - [anon_sym__Alignas] = ACTIONS(6272), - [anon_sym_QMARK] = ACTIONS(6272), - [anon_sym_STAR_EQ] = ACTIONS(6272), - [anon_sym_SLASH_EQ] = ACTIONS(6272), - [anon_sym_PERCENT_EQ] = ACTIONS(6272), - [anon_sym_PLUS_EQ] = ACTIONS(6272), - [anon_sym_DASH_EQ] = ACTIONS(6272), - [anon_sym_LT_LT_EQ] = ACTIONS(6272), - [anon_sym_GT_GT_EQ] = ACTIONS(6270), - [anon_sym_AMP_EQ] = ACTIONS(6272), - [anon_sym_CARET_EQ] = ACTIONS(6272), - [anon_sym_PIPE_EQ] = ACTIONS(6272), - [anon_sym_and_eq] = ACTIONS(6272), - [anon_sym_or_eq] = ACTIONS(6272), - [anon_sym_xor_eq] = ACTIONS(6272), - [anon_sym_LT_EQ_GT] = ACTIONS(6272), - [anon_sym_or] = ACTIONS(6270), - [anon_sym_and] = ACTIONS(6270), - [anon_sym_bitor] = ACTIONS(6272), - [anon_sym_xor] = ACTIONS(6270), - [anon_sym_bitand] = ACTIONS(6272), - [anon_sym_not_eq] = ACTIONS(6272), - [anon_sym_DASH_DASH] = ACTIONS(6272), - [anon_sym_PLUS_PLUS] = ACTIONS(6272), - [anon_sym_DOT] = ACTIONS(6270), - [anon_sym_DOT_STAR] = ACTIONS(6272), - [anon_sym_DASH_GT] = ACTIONS(6272), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6272), - [anon_sym_decltype] = ACTIONS(6272), - [anon_sym_final] = ACTIONS(6272), - [anon_sym_override] = ACTIONS(6272), - [anon_sym_GT2] = ACTIONS(6272), - [anon_sym_requires] = ACTIONS(6272), - }, - [STATE(2472)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_attributes_end] = STATE(3831), - [sym__function_postfix] = STATE(3513), - [sym_trailing_return_type] = STATE(2961), - [sym_requires_clause] = STATE(3513), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [sym_identifier] = ACTIONS(7546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [aux_sym_preproc_if_token2] = ACTIONS(7544), - [aux_sym_preproc_else_token1] = ACTIONS(7544), - [aux_sym_preproc_elif_token1] = ACTIONS(7546), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6123), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7546), - [anon_sym_or_eq] = ACTIONS(7546), - [anon_sym_xor_eq] = ACTIONS(7546), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7546), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7546), - [anon_sym_not_eq] = ACTIONS(7546), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6129), - [anon_sym___asm__] = ACTIONS(6129), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7579), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7582), - [anon_sym_override] = ACTIONS(7582), - [anon_sym_requires] = ACTIONS(7585), }, - [STATE(2473)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_attributes_end] = STATE(3838), - [sym__function_postfix] = STATE(3497), - [sym_trailing_return_type] = STATE(2975), - [sym_requires_clause] = STATE(3497), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [sym_identifier] = ACTIONS(7629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [aux_sym_preproc_if_token2] = ACTIONS(7627), - [aux_sym_preproc_else_token1] = ACTIONS(7627), - [aux_sym_preproc_elif_token1] = ACTIONS(7629), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7627), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym___attribute__] = ACTIONS(6123), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7629), - [anon_sym_or_eq] = ACTIONS(7629), - [anon_sym_xor_eq] = ACTIONS(7629), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7629), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7629), - [anon_sym_not_eq] = ACTIONS(7629), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6129), - [anon_sym___asm__] = ACTIONS(6129), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(7642), + [STATE(2372)] = { + [sym_template_argument_list] = STATE(3735), + [aux_sym_sized_type_specifier_repeat1] = STATE(2476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7359), + [anon_sym_COMMA] = ACTIONS(7359), + [anon_sym_LPAREN2] = ACTIONS(7359), + [anon_sym_DASH] = ACTIONS(7357), + [anon_sym_PLUS] = ACTIONS(7357), + [anon_sym_STAR] = ACTIONS(7357), + [anon_sym_SLASH] = ACTIONS(7357), + [anon_sym_PERCENT] = ACTIONS(7357), + [anon_sym_PIPE_PIPE] = ACTIONS(7359), + [anon_sym_AMP_AMP] = ACTIONS(7359), + [anon_sym_PIPE] = ACTIONS(7357), + [anon_sym_CARET] = ACTIONS(7357), + [anon_sym_AMP] = ACTIONS(7357), + [anon_sym_EQ_EQ] = ACTIONS(7359), + [anon_sym_BANG_EQ] = ACTIONS(7359), + [anon_sym_GT] = ACTIONS(7357), + [anon_sym_GT_EQ] = ACTIONS(7357), + [anon_sym_LT_EQ] = ACTIONS(7357), + [anon_sym_LT] = ACTIONS(7357), + [anon_sym_LT_LT] = ACTIONS(7357), + [anon_sym_GT_GT] = ACTIONS(7357), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7357), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(7359), + [anon_sym_signed] = ACTIONS(7032), + [anon_sym_unsigned] = ACTIONS(7032), + [anon_sym_long] = ACTIONS(7032), + [anon_sym_short] = ACTIONS(7032), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7357), + [anon_sym_const] = ACTIONS(7357), + [anon_sym_constexpr] = ACTIONS(7359), + [anon_sym_volatile] = ACTIONS(7359), + [anon_sym_restrict] = ACTIONS(7359), + [anon_sym___restrict__] = ACTIONS(7359), + [anon_sym__Atomic] = ACTIONS(7359), + [anon_sym__Noreturn] = ACTIONS(7359), + [anon_sym_noreturn] = ACTIONS(7359), + [anon_sym__Nonnull] = ACTIONS(7359), + [anon_sym_mutable] = ACTIONS(7359), + [anon_sym_constinit] = ACTIONS(7359), + [anon_sym_consteval] = ACTIONS(7359), + [anon_sym_alignas] = ACTIONS(7359), + [anon_sym__Alignas] = ACTIONS(7359), + [anon_sym_QMARK] = ACTIONS(7359), + [anon_sym_STAR_EQ] = ACTIONS(7359), + [anon_sym_SLASH_EQ] = ACTIONS(7359), + [anon_sym_PERCENT_EQ] = ACTIONS(7359), + [anon_sym_PLUS_EQ] = ACTIONS(7359), + [anon_sym_DASH_EQ] = ACTIONS(7359), + [anon_sym_LT_LT_EQ] = ACTIONS(7359), + [anon_sym_GT_GT_EQ] = ACTIONS(7357), + [anon_sym_AMP_EQ] = ACTIONS(7359), + [anon_sym_CARET_EQ] = ACTIONS(7359), + [anon_sym_PIPE_EQ] = ACTIONS(7359), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7359), + [anon_sym_or] = ACTIONS(7357), + [anon_sym_and] = ACTIONS(7357), + [anon_sym_bitor] = ACTIONS(7359), + [anon_sym_xor] = ACTIONS(7357), + [anon_sym_bitand] = ACTIONS(7359), + [anon_sym_not_eq] = ACTIONS(7359), + [anon_sym_DASH_DASH] = ACTIONS(7359), + [anon_sym_PLUS_PLUS] = ACTIONS(7359), + [anon_sym_DOT] = ACTIONS(7357), + [anon_sym_DOT_STAR] = ACTIONS(7359), + [anon_sym_DASH_GT] = ACTIONS(7359), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7645), - [anon_sym_override] = ACTIONS(7645), - [anon_sym_requires] = ACTIONS(7648), - }, - [STATE(2474)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_attributes_end] = STATE(3842), - [sym__function_postfix] = STATE(3528), - [sym_trailing_return_type] = STATE(2867), - [sym_requires_clause] = STATE(3528), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [sym_identifier] = ACTIONS(8087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), - [anon_sym_COMMA] = ACTIONS(8089), - [aux_sym_preproc_if_token2] = ACTIONS(8089), - [aux_sym_preproc_else_token1] = ACTIONS(8089), - [aux_sym_preproc_elif_token1] = ACTIONS(8087), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8089), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8089), - [anon_sym_LPAREN2] = ACTIONS(8089), - [anon_sym_DASH] = ACTIONS(8087), - [anon_sym_PLUS] = ACTIONS(8087), - [anon_sym_STAR] = ACTIONS(8087), - [anon_sym_SLASH] = ACTIONS(8087), - [anon_sym_PERCENT] = ACTIONS(8087), - [anon_sym_PIPE_PIPE] = ACTIONS(8089), - [anon_sym_AMP_AMP] = ACTIONS(8089), - [anon_sym_PIPE] = ACTIONS(8087), - [anon_sym_CARET] = ACTIONS(8087), - [anon_sym_AMP] = ACTIONS(8087), - [anon_sym_EQ_EQ] = ACTIONS(8089), - [anon_sym_BANG_EQ] = ACTIONS(8089), - [anon_sym_GT] = ACTIONS(8087), - [anon_sym_GT_EQ] = ACTIONS(8089), - [anon_sym_LT_EQ] = ACTIONS(8087), - [anon_sym_LT] = ACTIONS(8087), - [anon_sym_LT_LT] = ACTIONS(8087), - [anon_sym_GT_GT] = ACTIONS(8087), - [anon_sym___attribute__] = ACTIONS(6123), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(8087), - [anon_sym_EQ] = ACTIONS(8087), - [anon_sym_QMARK] = ACTIONS(8089), - [anon_sym_STAR_EQ] = ACTIONS(8089), - [anon_sym_SLASH_EQ] = ACTIONS(8089), - [anon_sym_PERCENT_EQ] = ACTIONS(8089), - [anon_sym_PLUS_EQ] = ACTIONS(8089), - [anon_sym_DASH_EQ] = ACTIONS(8089), - [anon_sym_LT_LT_EQ] = ACTIONS(8089), - [anon_sym_GT_GT_EQ] = ACTIONS(8089), - [anon_sym_AMP_EQ] = ACTIONS(8089), - [anon_sym_CARET_EQ] = ACTIONS(8089), - [anon_sym_PIPE_EQ] = ACTIONS(8089), - [anon_sym_and_eq] = ACTIONS(8087), - [anon_sym_or_eq] = ACTIONS(8087), - [anon_sym_xor_eq] = ACTIONS(8087), - [anon_sym_LT_EQ_GT] = ACTIONS(8089), - [anon_sym_or] = ACTIONS(8087), - [anon_sym_and] = ACTIONS(8087), - [anon_sym_bitor] = ACTIONS(8087), - [anon_sym_xor] = ACTIONS(8087), - [anon_sym_bitand] = ACTIONS(8087), - [anon_sym_not_eq] = ACTIONS(8087), - [anon_sym_DASH_DASH] = ACTIONS(8089), - [anon_sym_PLUS_PLUS] = ACTIONS(8089), - [anon_sym_asm] = ACTIONS(6129), - [anon_sym___asm__] = ACTIONS(6129), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(8087), - [anon_sym_DOT_STAR] = ACTIONS(8089), - [anon_sym_DASH_GT] = ACTIONS(8091), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8102), - [anon_sym_override] = ACTIONS(8102), - [anon_sym_requires] = ACTIONS(8105), - }, - [STATE(2475)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2792), - [sym_ms_pointer_modifier] = STATE(2485), - [sym__abstract_declarator] = STATE(6186), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(3488), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(2157), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(3488), - [aux_sym_pointer_declarator_repeat1] = STATE(2485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_PLUS] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(8108), - [anon_sym_SLASH] = ACTIONS(6457), - [anon_sym_PERCENT] = ACTIONS(6459), - [anon_sym_PIPE_PIPE] = ACTIONS(6459), - [anon_sym_AMP_AMP] = ACTIONS(8110), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_CARET] = ACTIONS(6459), - [anon_sym_AMP] = ACTIONS(8112), - [anon_sym_EQ_EQ] = ACTIONS(6459), - [anon_sym_BANG_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_LT_EQ] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_LT_LT] = ACTIONS(6459), - [anon_sym_GT_GT] = ACTIONS(6459), - [anon_sym_SEMI] = ACTIONS(6459), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym___attribute__] = ACTIONS(6459), - [anon_sym___attribute] = ACTIONS(6457), - [sym_ms_restrict_modifier] = ACTIONS(7741), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7780), - [sym_ms_signed_ptr_modifier] = ACTIONS(7780), - [anon_sym__unaligned] = ACTIONS(7782), - [anon_sym___unaligned] = ACTIONS(7782), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(6459), - [anon_sym_LT_EQ_GT] = ACTIONS(6459), - [anon_sym_or] = ACTIONS(6459), - [anon_sym_and] = ACTIONS(6459), - [anon_sym_bitor] = ACTIONS(6459), - [anon_sym_xor] = ACTIONS(6459), - [anon_sym_bitand] = ACTIONS(6459), - [anon_sym_not_eq] = ACTIONS(6459), - [anon_sym_DASH_DASH] = ACTIONS(6459), - [anon_sym_PLUS_PLUS] = ACTIONS(6459), - [anon_sym_DOT] = ACTIONS(6457), - [anon_sym_DOT_STAR] = ACTIONS(6459), - [anon_sym_DASH_GT] = ACTIONS(6459), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6459), - [anon_sym_override] = ACTIONS(6459), - [anon_sym_requires] = ACTIONS(6459), - }, - [STATE(2476)] = { - [sym_string_literal] = STATE(2439), - [sym_raw_string_literal] = STATE(2439), - [aux_sym_concatenated_string_repeat1] = STATE(2439), - [sym_identifier] = ACTIONS(8114), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8116), - [anon_sym_COMMA] = ACTIONS(8116), - [anon_sym_RPAREN] = ACTIONS(8116), - [aux_sym_preproc_if_token2] = ACTIONS(8116), - [aux_sym_preproc_else_token1] = ACTIONS(8116), - [aux_sym_preproc_elif_token1] = ACTIONS(8118), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8116), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8116), - [anon_sym_LPAREN2] = ACTIONS(8116), - [anon_sym_DASH] = ACTIONS(8118), - [anon_sym_PLUS] = ACTIONS(8118), - [anon_sym_STAR] = ACTIONS(8118), - [anon_sym_SLASH] = ACTIONS(8118), - [anon_sym_PERCENT] = ACTIONS(8118), - [anon_sym_PIPE_PIPE] = ACTIONS(8116), - [anon_sym_AMP_AMP] = ACTIONS(8116), - [anon_sym_PIPE] = ACTIONS(8118), - [anon_sym_CARET] = ACTIONS(8118), - [anon_sym_AMP] = ACTIONS(8118), - [anon_sym_EQ_EQ] = ACTIONS(8116), - [anon_sym_BANG_EQ] = ACTIONS(8116), - [anon_sym_GT] = ACTIONS(8118), - [anon_sym_GT_EQ] = ACTIONS(8116), - [anon_sym_LT_EQ] = ACTIONS(8118), - [anon_sym_LT] = ACTIONS(8118), - [anon_sym_LT_LT] = ACTIONS(8118), - [anon_sym_GT_GT] = ACTIONS(8118), - [anon_sym_SEMI] = ACTIONS(8116), - [anon_sym_COLON] = ACTIONS(8118), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8116), - [anon_sym_RBRACE] = ACTIONS(8116), - [anon_sym_LBRACK] = ACTIONS(8116), - [anon_sym_EQ] = ACTIONS(8118), - [anon_sym_QMARK] = ACTIONS(8116), - [anon_sym_STAR_EQ] = ACTIONS(8116), - [anon_sym_SLASH_EQ] = ACTIONS(8116), - [anon_sym_PERCENT_EQ] = ACTIONS(8116), - [anon_sym_PLUS_EQ] = ACTIONS(8116), - [anon_sym_DASH_EQ] = ACTIONS(8116), - [anon_sym_LT_LT_EQ] = ACTIONS(8116), - [anon_sym_GT_GT_EQ] = ACTIONS(8116), - [anon_sym_AMP_EQ] = ACTIONS(8116), - [anon_sym_CARET_EQ] = ACTIONS(8116), - [anon_sym_PIPE_EQ] = ACTIONS(8116), - [anon_sym_and_eq] = ACTIONS(8118), - [anon_sym_or_eq] = ACTIONS(8118), - [anon_sym_xor_eq] = ACTIONS(8118), - [anon_sym_LT_EQ_GT] = ACTIONS(8116), - [anon_sym_or] = ACTIONS(8118), - [anon_sym_and] = ACTIONS(8118), - [anon_sym_bitor] = ACTIONS(8118), - [anon_sym_xor] = ACTIONS(8118), - [anon_sym_bitand] = ACTIONS(8118), - [anon_sym_not_eq] = ACTIONS(8118), - [anon_sym_DASH_DASH] = ACTIONS(8116), - [anon_sym_PLUS_PLUS] = ACTIONS(8116), - [anon_sym_DOT] = ACTIONS(8118), - [anon_sym_DOT_STAR] = ACTIONS(8116), - [anon_sym_DASH_GT] = ACTIONS(8116), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_COLON_RBRACK] = ACTIONS(8116), - [sym_literal_suffix] = ACTIONS(8118), - }, - [STATE(2477)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_attributes_end] = STATE(3810), - [sym__function_postfix] = STATE(3528), - [sym_trailing_return_type] = STATE(2964), - [sym_requires_clause] = STATE(3528), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), - [anon_sym_COMMA] = ACTIONS(8089), - [anon_sym_RPAREN] = ACTIONS(8089), - [anon_sym_LPAREN2] = ACTIONS(8089), - [anon_sym_DASH] = ACTIONS(8087), - [anon_sym_PLUS] = ACTIONS(8087), - [anon_sym_STAR] = ACTIONS(8087), - [anon_sym_SLASH] = ACTIONS(8087), - [anon_sym_PERCENT] = ACTIONS(8087), - [anon_sym_PIPE_PIPE] = ACTIONS(8089), - [anon_sym_AMP_AMP] = ACTIONS(8089), - [anon_sym_PIPE] = ACTIONS(8087), - [anon_sym_CARET] = ACTIONS(8087), - [anon_sym_AMP] = ACTIONS(8087), - [anon_sym_EQ_EQ] = ACTIONS(8089), - [anon_sym_BANG_EQ] = ACTIONS(8089), - [anon_sym_GT] = ACTIONS(8087), - [anon_sym_GT_EQ] = ACTIONS(8089), - [anon_sym_LT_EQ] = ACTIONS(8087), - [anon_sym_LT] = ACTIONS(8087), - [anon_sym_LT_LT] = ACTIONS(8087), - [anon_sym_GT_GT] = ACTIONS(8087), - [anon_sym_SEMI] = ACTIONS(8089), - [anon_sym___attribute__] = ACTIONS(6150), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_COLON] = ACTIONS(8087), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8089), - [anon_sym_RBRACE] = ACTIONS(8089), - [anon_sym_LBRACK] = ACTIONS(8087), - [anon_sym_EQ] = ACTIONS(8087), - [anon_sym_QMARK] = ACTIONS(8089), - [anon_sym_STAR_EQ] = ACTIONS(8089), - [anon_sym_SLASH_EQ] = ACTIONS(8089), - [anon_sym_PERCENT_EQ] = ACTIONS(8089), - [anon_sym_PLUS_EQ] = ACTIONS(8089), - [anon_sym_DASH_EQ] = ACTIONS(8089), - [anon_sym_LT_LT_EQ] = ACTIONS(8089), - [anon_sym_GT_GT_EQ] = ACTIONS(8089), - [anon_sym_AMP_EQ] = ACTIONS(8089), - [anon_sym_CARET_EQ] = ACTIONS(8089), - [anon_sym_PIPE_EQ] = ACTIONS(8089), - [anon_sym_and_eq] = ACTIONS(8089), - [anon_sym_or_eq] = ACTIONS(8089), - [anon_sym_xor_eq] = ACTIONS(8089), - [anon_sym_LT_EQ_GT] = ACTIONS(8089), - [anon_sym_or] = ACTIONS(8087), - [anon_sym_and] = ACTIONS(8087), - [anon_sym_bitor] = ACTIONS(8089), - [anon_sym_xor] = ACTIONS(8087), - [anon_sym_bitand] = ACTIONS(8089), - [anon_sym_not_eq] = ACTIONS(8089), - [anon_sym_DASH_DASH] = ACTIONS(8089), - [anon_sym_PLUS_PLUS] = ACTIONS(8089), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(8087), - [anon_sym_DOT_STAR] = ACTIONS(8089), - [anon_sym_DASH_GT] = ACTIONS(8120), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6181), - [anon_sym_override] = ACTIONS(6181), - [anon_sym_requires] = ACTIONS(6183), - [anon_sym_COLON_RBRACK] = ACTIONS(8089), - }, - [STATE(2478)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), - [anon_sym_COMMA] = ACTIONS(6244), - [anon_sym_LPAREN2] = ACTIONS(6244), - [anon_sym_DASH] = ACTIONS(6242), - [anon_sym_PLUS] = ACTIONS(6242), - [anon_sym_STAR] = ACTIONS(6242), - [anon_sym_SLASH] = ACTIONS(6242), - [anon_sym_PERCENT] = ACTIONS(6242), - [anon_sym_PIPE_PIPE] = ACTIONS(6244), - [anon_sym_AMP_AMP] = ACTIONS(6244), - [anon_sym_PIPE] = ACTIONS(6242), - [anon_sym_CARET] = ACTIONS(6242), - [anon_sym_AMP] = ACTIONS(6242), - [anon_sym_EQ_EQ] = ACTIONS(6244), - [anon_sym_BANG_EQ] = ACTIONS(6244), - [anon_sym_GT] = ACTIONS(6242), - [anon_sym_GT_EQ] = ACTIONS(6242), - [anon_sym_LT_EQ] = ACTIONS(6242), - [anon_sym_LT] = ACTIONS(6242), - [anon_sym_LT_LT] = ACTIONS(6242), - [anon_sym_GT_GT] = ACTIONS(6242), - [anon_sym___extension__] = ACTIONS(6244), - [anon_sym___attribute__] = ACTIONS(6244), - [anon_sym___attribute] = ACTIONS(6242), - [anon_sym_COLON] = ACTIONS(6242), - [anon_sym_COLON_COLON] = ACTIONS(6244), - [anon_sym_LBRACE] = ACTIONS(6244), - [anon_sym_LBRACK] = ACTIONS(6244), - [anon_sym_EQ] = ACTIONS(6242), - [anon_sym_const] = ACTIONS(6242), - [anon_sym_constexpr] = ACTIONS(6244), - [anon_sym_volatile] = ACTIONS(6244), - [anon_sym_restrict] = ACTIONS(6244), - [anon_sym___restrict__] = ACTIONS(6244), - [anon_sym__Atomic] = ACTIONS(6244), - [anon_sym__Noreturn] = ACTIONS(6244), - [anon_sym_noreturn] = ACTIONS(6244), - [anon_sym__Nonnull] = ACTIONS(6244), - [anon_sym_mutable] = ACTIONS(6244), - [anon_sym_constinit] = ACTIONS(6244), - [anon_sym_consteval] = ACTIONS(6244), - [anon_sym_alignas] = ACTIONS(6244), - [anon_sym__Alignas] = ACTIONS(6244), - [anon_sym_QMARK] = ACTIONS(6244), - [anon_sym_STAR_EQ] = ACTIONS(6244), - [anon_sym_SLASH_EQ] = ACTIONS(6244), - [anon_sym_PERCENT_EQ] = ACTIONS(6244), - [anon_sym_PLUS_EQ] = ACTIONS(6244), - [anon_sym_DASH_EQ] = ACTIONS(6244), - [anon_sym_LT_LT_EQ] = ACTIONS(6244), - [anon_sym_GT_GT_EQ] = ACTIONS(6242), - [anon_sym_AMP_EQ] = ACTIONS(6244), - [anon_sym_CARET_EQ] = ACTIONS(6244), - [anon_sym_PIPE_EQ] = ACTIONS(6244), - [anon_sym_and_eq] = ACTIONS(6244), - [anon_sym_or_eq] = ACTIONS(6244), - [anon_sym_xor_eq] = ACTIONS(6244), - [anon_sym_LT_EQ_GT] = ACTIONS(6244), - [anon_sym_or] = ACTIONS(6242), - [anon_sym_and] = ACTIONS(6242), - [anon_sym_bitor] = ACTIONS(6244), - [anon_sym_xor] = ACTIONS(6242), - [anon_sym_bitand] = ACTIONS(6244), - [anon_sym_not_eq] = ACTIONS(6244), - [anon_sym_DASH_DASH] = ACTIONS(6244), - [anon_sym_PLUS_PLUS] = ACTIONS(6244), - [anon_sym_DOT] = ACTIONS(6242), - [anon_sym_DOT_STAR] = ACTIONS(6244), - [anon_sym_DASH_GT] = ACTIONS(6244), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6244), - [anon_sym_decltype] = ACTIONS(6244), - [anon_sym_final] = ACTIONS(6244), - [anon_sym_override] = ACTIONS(6244), - [anon_sym_GT2] = ACTIONS(6244), - [anon_sym_requires] = ACTIONS(6244), - }, - [STATE(2479)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6248), - [anon_sym_COMMA] = ACTIONS(6248), - [anon_sym_LPAREN2] = ACTIONS(6248), - [anon_sym_DASH] = ACTIONS(6246), - [anon_sym_PLUS] = ACTIONS(6246), - [anon_sym_STAR] = ACTIONS(6246), - [anon_sym_SLASH] = ACTIONS(6246), - [anon_sym_PERCENT] = ACTIONS(6246), - [anon_sym_PIPE_PIPE] = ACTIONS(6248), - [anon_sym_AMP_AMP] = ACTIONS(6248), - [anon_sym_PIPE] = ACTIONS(6246), - [anon_sym_CARET] = ACTIONS(6246), - [anon_sym_AMP] = ACTIONS(6246), - [anon_sym_EQ_EQ] = ACTIONS(6248), - [anon_sym_BANG_EQ] = ACTIONS(6248), - [anon_sym_GT] = ACTIONS(6246), - [anon_sym_GT_EQ] = ACTIONS(6246), - [anon_sym_LT_EQ] = ACTIONS(6246), - [anon_sym_LT] = ACTIONS(6246), - [anon_sym_LT_LT] = ACTIONS(6246), - [anon_sym_GT_GT] = ACTIONS(6246), - [anon_sym___extension__] = ACTIONS(6248), - [anon_sym___attribute__] = ACTIONS(6248), - [anon_sym___attribute] = ACTIONS(6246), - [anon_sym_COLON] = ACTIONS(6246), - [anon_sym_COLON_COLON] = ACTIONS(6248), - [anon_sym_LBRACE] = ACTIONS(6248), - [anon_sym_LBRACK] = ACTIONS(6248), - [anon_sym_EQ] = ACTIONS(6246), - [anon_sym_const] = ACTIONS(6246), - [anon_sym_constexpr] = ACTIONS(6248), - [anon_sym_volatile] = ACTIONS(6248), - [anon_sym_restrict] = ACTIONS(6248), - [anon_sym___restrict__] = ACTIONS(6248), - [anon_sym__Atomic] = ACTIONS(6248), - [anon_sym__Noreturn] = ACTIONS(6248), - [anon_sym_noreturn] = ACTIONS(6248), - [anon_sym__Nonnull] = ACTIONS(6248), - [anon_sym_mutable] = ACTIONS(6248), - [anon_sym_constinit] = ACTIONS(6248), - [anon_sym_consteval] = ACTIONS(6248), - [anon_sym_alignas] = ACTIONS(6248), - [anon_sym__Alignas] = ACTIONS(6248), - [anon_sym_QMARK] = ACTIONS(6248), - [anon_sym_STAR_EQ] = ACTIONS(6248), - [anon_sym_SLASH_EQ] = ACTIONS(6248), - [anon_sym_PERCENT_EQ] = ACTIONS(6248), - [anon_sym_PLUS_EQ] = ACTIONS(6248), - [anon_sym_DASH_EQ] = ACTIONS(6248), - [anon_sym_LT_LT_EQ] = ACTIONS(6248), - [anon_sym_GT_GT_EQ] = ACTIONS(6246), - [anon_sym_AMP_EQ] = ACTIONS(6248), - [anon_sym_CARET_EQ] = ACTIONS(6248), - [anon_sym_PIPE_EQ] = ACTIONS(6248), - [anon_sym_and_eq] = ACTIONS(6248), - [anon_sym_or_eq] = ACTIONS(6248), - [anon_sym_xor_eq] = ACTIONS(6248), - [anon_sym_LT_EQ_GT] = ACTIONS(6248), - [anon_sym_or] = ACTIONS(6246), - [anon_sym_and] = ACTIONS(6246), - [anon_sym_bitor] = ACTIONS(6248), - [anon_sym_xor] = ACTIONS(6246), - [anon_sym_bitand] = ACTIONS(6248), - [anon_sym_not_eq] = ACTIONS(6248), - [anon_sym_DASH_DASH] = ACTIONS(6248), - [anon_sym_PLUS_PLUS] = ACTIONS(6248), - [anon_sym_DOT] = ACTIONS(6246), - [anon_sym_DOT_STAR] = ACTIONS(6248), - [anon_sym_DASH_GT] = ACTIONS(6248), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6248), - [anon_sym_decltype] = ACTIONS(6248), - [anon_sym_final] = ACTIONS(6248), - [anon_sym_override] = ACTIONS(6248), - [anon_sym_GT2] = ACTIONS(6248), - [anon_sym_requires] = ACTIONS(6248), - }, - [STATE(2480)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6252), - [anon_sym_COMMA] = ACTIONS(6252), - [anon_sym_LPAREN2] = ACTIONS(6252), - [anon_sym_DASH] = ACTIONS(6250), - [anon_sym_PLUS] = ACTIONS(6250), - [anon_sym_STAR] = ACTIONS(6250), - [anon_sym_SLASH] = ACTIONS(6250), - [anon_sym_PERCENT] = ACTIONS(6250), - [anon_sym_PIPE_PIPE] = ACTIONS(6252), - [anon_sym_AMP_AMP] = ACTIONS(6252), - [anon_sym_PIPE] = ACTIONS(6250), - [anon_sym_CARET] = ACTIONS(6250), - [anon_sym_AMP] = ACTIONS(6250), - [anon_sym_EQ_EQ] = ACTIONS(6252), - [anon_sym_BANG_EQ] = ACTIONS(6252), - [anon_sym_GT] = ACTIONS(6250), - [anon_sym_GT_EQ] = ACTIONS(6250), - [anon_sym_LT_EQ] = ACTIONS(6250), - [anon_sym_LT] = ACTIONS(6250), - [anon_sym_LT_LT] = ACTIONS(6250), - [anon_sym_GT_GT] = ACTIONS(6250), - [anon_sym___extension__] = ACTIONS(6252), - [anon_sym___attribute__] = ACTIONS(6252), - [anon_sym___attribute] = ACTIONS(6250), - [anon_sym_COLON] = ACTIONS(6250), - [anon_sym_COLON_COLON] = ACTIONS(6252), - [anon_sym_LBRACE] = ACTIONS(6252), - [anon_sym_LBRACK] = ACTIONS(6252), - [anon_sym_EQ] = ACTIONS(6250), - [anon_sym_const] = ACTIONS(6250), - [anon_sym_constexpr] = ACTIONS(6252), - [anon_sym_volatile] = ACTIONS(6252), - [anon_sym_restrict] = ACTIONS(6252), - [anon_sym___restrict__] = ACTIONS(6252), - [anon_sym__Atomic] = ACTIONS(6252), - [anon_sym__Noreturn] = ACTIONS(6252), - [anon_sym_noreturn] = ACTIONS(6252), - [anon_sym__Nonnull] = ACTIONS(6252), - [anon_sym_mutable] = ACTIONS(6252), - [anon_sym_constinit] = ACTIONS(6252), - [anon_sym_consteval] = ACTIONS(6252), - [anon_sym_alignas] = ACTIONS(6252), - [anon_sym__Alignas] = ACTIONS(6252), - [anon_sym_QMARK] = ACTIONS(6252), - [anon_sym_STAR_EQ] = ACTIONS(6252), - [anon_sym_SLASH_EQ] = ACTIONS(6252), - [anon_sym_PERCENT_EQ] = ACTIONS(6252), - [anon_sym_PLUS_EQ] = ACTIONS(6252), - [anon_sym_DASH_EQ] = ACTIONS(6252), - [anon_sym_LT_LT_EQ] = ACTIONS(6252), - [anon_sym_GT_GT_EQ] = ACTIONS(6250), - [anon_sym_AMP_EQ] = ACTIONS(6252), - [anon_sym_CARET_EQ] = ACTIONS(6252), - [anon_sym_PIPE_EQ] = ACTIONS(6252), - [anon_sym_and_eq] = ACTIONS(6252), - [anon_sym_or_eq] = ACTIONS(6252), - [anon_sym_xor_eq] = ACTIONS(6252), - [anon_sym_LT_EQ_GT] = ACTIONS(6252), - [anon_sym_or] = ACTIONS(6250), - [anon_sym_and] = ACTIONS(6250), - [anon_sym_bitor] = ACTIONS(6252), - [anon_sym_xor] = ACTIONS(6250), - [anon_sym_bitand] = ACTIONS(6252), - [anon_sym_not_eq] = ACTIONS(6252), - [anon_sym_DASH_DASH] = ACTIONS(6252), - [anon_sym_PLUS_PLUS] = ACTIONS(6252), - [anon_sym_DOT] = ACTIONS(6250), - [anon_sym_DOT_STAR] = ACTIONS(6252), - [anon_sym_DASH_GT] = ACTIONS(6252), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6252), - [anon_sym_decltype] = ACTIONS(6252), - [anon_sym_final] = ACTIONS(6252), - [anon_sym_override] = ACTIONS(6252), - [anon_sym_GT2] = ACTIONS(6252), - [anon_sym_requires] = ACTIONS(6252), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_GT2] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), }, - [STATE(2481)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6256), - [anon_sym_COMMA] = ACTIONS(6256), - [anon_sym_LPAREN2] = ACTIONS(6256), - [anon_sym_DASH] = ACTIONS(6254), - [anon_sym_PLUS] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(6254), - [anon_sym_SLASH] = ACTIONS(6254), - [anon_sym_PERCENT] = ACTIONS(6254), - [anon_sym_PIPE_PIPE] = ACTIONS(6256), - [anon_sym_AMP_AMP] = ACTIONS(6256), - [anon_sym_PIPE] = ACTIONS(6254), - [anon_sym_CARET] = ACTIONS(6254), - [anon_sym_AMP] = ACTIONS(6254), - [anon_sym_EQ_EQ] = ACTIONS(6256), - [anon_sym_BANG_EQ] = ACTIONS(6256), - [anon_sym_GT] = ACTIONS(6254), - [anon_sym_GT_EQ] = ACTIONS(6254), - [anon_sym_LT_EQ] = ACTIONS(6254), - [anon_sym_LT] = ACTIONS(6254), - [anon_sym_LT_LT] = ACTIONS(6254), - [anon_sym_GT_GT] = ACTIONS(6254), - [anon_sym___extension__] = ACTIONS(6256), - [anon_sym___attribute__] = ACTIONS(6256), - [anon_sym___attribute] = ACTIONS(6254), - [anon_sym_COLON] = ACTIONS(6254), - [anon_sym_COLON_COLON] = ACTIONS(6256), - [anon_sym_LBRACE] = ACTIONS(6256), - [anon_sym_LBRACK] = ACTIONS(6256), - [anon_sym_EQ] = ACTIONS(6254), - [anon_sym_const] = ACTIONS(6254), - [anon_sym_constexpr] = ACTIONS(6256), - [anon_sym_volatile] = ACTIONS(6256), - [anon_sym_restrict] = ACTIONS(6256), - [anon_sym___restrict__] = ACTIONS(6256), - [anon_sym__Atomic] = ACTIONS(6256), - [anon_sym__Noreturn] = ACTIONS(6256), - [anon_sym_noreturn] = ACTIONS(6256), - [anon_sym__Nonnull] = ACTIONS(6256), - [anon_sym_mutable] = ACTIONS(6256), - [anon_sym_constinit] = ACTIONS(6256), - [anon_sym_consteval] = ACTIONS(6256), - [anon_sym_alignas] = ACTIONS(6256), - [anon_sym__Alignas] = ACTIONS(6256), - [anon_sym_QMARK] = ACTIONS(6256), - [anon_sym_STAR_EQ] = ACTIONS(6256), - [anon_sym_SLASH_EQ] = ACTIONS(6256), - [anon_sym_PERCENT_EQ] = ACTIONS(6256), - [anon_sym_PLUS_EQ] = ACTIONS(6256), - [anon_sym_DASH_EQ] = ACTIONS(6256), - [anon_sym_LT_LT_EQ] = ACTIONS(6256), - [anon_sym_GT_GT_EQ] = ACTIONS(6254), - [anon_sym_AMP_EQ] = ACTIONS(6256), - [anon_sym_CARET_EQ] = ACTIONS(6256), - [anon_sym_PIPE_EQ] = ACTIONS(6256), - [anon_sym_and_eq] = ACTIONS(6256), - [anon_sym_or_eq] = ACTIONS(6256), - [anon_sym_xor_eq] = ACTIONS(6256), - [anon_sym_LT_EQ_GT] = ACTIONS(6256), - [anon_sym_or] = ACTIONS(6254), - [anon_sym_and] = ACTIONS(6254), - [anon_sym_bitor] = ACTIONS(6256), - [anon_sym_xor] = ACTIONS(6254), - [anon_sym_bitand] = ACTIONS(6256), - [anon_sym_not_eq] = ACTIONS(6256), - [anon_sym_DASH_DASH] = ACTIONS(6256), - [anon_sym_PLUS_PLUS] = ACTIONS(6256), - [anon_sym_DOT] = ACTIONS(6254), - [anon_sym_DOT_STAR] = ACTIONS(6256), - [anon_sym_DASH_GT] = ACTIONS(6256), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6256), - [anon_sym_decltype] = ACTIONS(6256), - [anon_sym_final] = ACTIONS(6256), - [anon_sym_override] = ACTIONS(6256), - [anon_sym_GT2] = ACTIONS(6256), - [anon_sym_requires] = ACTIONS(6256), + [STATE(2373)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2784), + [sym_ms_pointer_modifier] = STATE(2370), + [sym__abstract_declarator] = STATE(6170), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(2980), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2069), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(2980), + [aux_sym_pointer_declarator_repeat1] = STATE(2370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_RPAREN] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6861), + [anon_sym_STAR] = ACTIONS(8111), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6859), + [anon_sym_PIPE_PIPE] = ACTIONS(6859), + [anon_sym_AMP_AMP] = ACTIONS(8113), + [anon_sym_PIPE] = ACTIONS(6861), + [anon_sym_CARET] = ACTIONS(6859), + [anon_sym_AMP] = ACTIONS(8115), + [anon_sym_EQ_EQ] = ACTIONS(6859), + [anon_sym_BANG_EQ] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6861), + [anon_sym_GT_EQ] = ACTIONS(6859), + [anon_sym_LT_EQ] = ACTIONS(6861), + [anon_sym_LT] = ACTIONS(6861), + [anon_sym_LT_LT] = ACTIONS(6859), + [anon_sym_GT_GT] = ACTIONS(6859), + [anon_sym_SEMI] = ACTIONS(6859), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym_COLON] = ACTIONS(6861), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6859), + [sym_ms_restrict_modifier] = ACTIONS(8094), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8119), + [sym_ms_signed_ptr_modifier] = ACTIONS(8119), + [anon_sym__unaligned] = ACTIONS(8121), + [anon_sym___unaligned] = ACTIONS(8121), + [anon_sym_RBRACE] = ACTIONS(6859), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(6859), + [anon_sym_LT_EQ_GT] = ACTIONS(6859), + [anon_sym_or] = ACTIONS(6859), + [anon_sym_and] = ACTIONS(6859), + [anon_sym_bitor] = ACTIONS(6859), + [anon_sym_xor] = ACTIONS(6859), + [anon_sym_bitand] = ACTIONS(6859), + [anon_sym_not_eq] = ACTIONS(6859), + [anon_sym_DASH_DASH] = ACTIONS(6859), + [anon_sym_PLUS_PLUS] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6861), + [anon_sym_DOT_STAR] = ACTIONS(6859), + [anon_sym_DASH_GT] = ACTIONS(6859), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6859), + [anon_sym_override] = ACTIONS(6859), + [anon_sym_requires] = ACTIONS(6859), + [anon_sym_COLON_RBRACK] = ACTIONS(6859), }, - [STATE(2482)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_attributes_end] = STATE(3799), - [sym__function_postfix] = STATE(3497), - [sym_trailing_return_type] = STATE(2959), - [sym_requires_clause] = STATE(3497), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_RPAREN] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym_SEMI] = ACTIONS(7627), - [anon_sym___attribute__] = ACTIONS(6150), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_COLON] = ACTIONS(7629), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7627), - [anon_sym_RBRACE] = ACTIONS(7627), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7627), - [anon_sym_or_eq] = ACTIONS(7627), - [anon_sym_xor_eq] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(7631), + [STATE(2374)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2374), + [sym_identifier] = ACTIONS(6999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7001), + [anon_sym_COMMA] = ACTIONS(7001), + [anon_sym_LPAREN2] = ACTIONS(7001), + [anon_sym_DASH] = ACTIONS(6999), + [anon_sym_PLUS] = ACTIONS(6999), + [anon_sym_STAR] = ACTIONS(6999), + [anon_sym_SLASH] = ACTIONS(6999), + [anon_sym_PERCENT] = ACTIONS(6999), + [anon_sym_PIPE_PIPE] = ACTIONS(7001), + [anon_sym_AMP_AMP] = ACTIONS(7001), + [anon_sym_PIPE] = ACTIONS(6999), + [anon_sym_CARET] = ACTIONS(6999), + [anon_sym_AMP] = ACTIONS(6999), + [anon_sym_EQ_EQ] = ACTIONS(7001), + [anon_sym_BANG_EQ] = ACTIONS(7001), + [anon_sym_GT] = ACTIONS(6999), + [anon_sym_GT_EQ] = ACTIONS(7001), + [anon_sym_LT_EQ] = ACTIONS(6999), + [anon_sym_LT] = ACTIONS(6999), + [anon_sym_LT_LT] = ACTIONS(6999), + [anon_sym_GT_GT] = ACTIONS(6999), + [anon_sym___extension__] = ACTIONS(6999), + [anon_sym___attribute__] = ACTIONS(6999), + [anon_sym___attribute] = ACTIONS(6999), + [anon_sym_LBRACE] = ACTIONS(7001), + [anon_sym_signed] = ACTIONS(8127), + [anon_sym_unsigned] = ACTIONS(8127), + [anon_sym_long] = ACTIONS(8127), + [anon_sym_short] = ACTIONS(8127), + [anon_sym_LBRACK] = ACTIONS(7001), + [anon_sym_RBRACK] = ACTIONS(7001), + [anon_sym_EQ] = ACTIONS(6999), + [anon_sym_const] = ACTIONS(6999), + [anon_sym_constexpr] = ACTIONS(6999), + [anon_sym_volatile] = ACTIONS(6999), + [anon_sym_restrict] = ACTIONS(6999), + [anon_sym___restrict__] = ACTIONS(6999), + [anon_sym__Atomic] = ACTIONS(6999), + [anon_sym__Noreturn] = ACTIONS(6999), + [anon_sym_noreturn] = ACTIONS(6999), + [anon_sym__Nonnull] = ACTIONS(6999), + [anon_sym_mutable] = ACTIONS(6999), + [anon_sym_constinit] = ACTIONS(6999), + [anon_sym_consteval] = ACTIONS(6999), + [anon_sym_alignas] = ACTIONS(6999), + [anon_sym__Alignas] = ACTIONS(6999), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7001), + [anon_sym_STAR_EQ] = ACTIONS(7001), + [anon_sym_SLASH_EQ] = ACTIONS(7001), + [anon_sym_PERCENT_EQ] = ACTIONS(7001), + [anon_sym_PLUS_EQ] = ACTIONS(7001), + [anon_sym_DASH_EQ] = ACTIONS(7001), + [anon_sym_LT_LT_EQ] = ACTIONS(7001), + [anon_sym_GT_GT_EQ] = ACTIONS(7001), + [anon_sym_AMP_EQ] = ACTIONS(7001), + [anon_sym_CARET_EQ] = ACTIONS(7001), + [anon_sym_PIPE_EQ] = ACTIONS(7001), + [anon_sym_and_eq] = ACTIONS(6999), + [anon_sym_or_eq] = ACTIONS(6999), + [anon_sym_xor_eq] = ACTIONS(6999), + [anon_sym_LT_EQ_GT] = ACTIONS(7001), + [anon_sym_or] = ACTIONS(6999), + [anon_sym_and] = ACTIONS(6999), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(6999), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(7001), + [anon_sym_PLUS_PLUS] = ACTIONS(7001), + [anon_sym_DOT] = ACTIONS(6999), + [anon_sym_DOT_STAR] = ACTIONS(7001), + [anon_sym_DASH_GT] = ACTIONS(7001), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6181), - [anon_sym_override] = ACTIONS(6181), - [anon_sym_requires] = ACTIONS(6183), - [anon_sym_COLON_RBRACK] = ACTIONS(7627), - }, - [STATE(2483)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), - [anon_sym_COMMA] = ACTIONS(6260), - [anon_sym_LPAREN2] = ACTIONS(6260), - [anon_sym_DASH] = ACTIONS(6258), - [anon_sym_PLUS] = ACTIONS(6258), - [anon_sym_STAR] = ACTIONS(6258), - [anon_sym_SLASH] = ACTIONS(6258), - [anon_sym_PERCENT] = ACTIONS(6258), - [anon_sym_PIPE_PIPE] = ACTIONS(6260), - [anon_sym_AMP_AMP] = ACTIONS(6260), - [anon_sym_PIPE] = ACTIONS(6258), - [anon_sym_CARET] = ACTIONS(6258), - [anon_sym_AMP] = ACTIONS(6258), - [anon_sym_EQ_EQ] = ACTIONS(6260), - [anon_sym_BANG_EQ] = ACTIONS(6260), - [anon_sym_GT] = ACTIONS(6258), - [anon_sym_GT_EQ] = ACTIONS(6258), - [anon_sym_LT_EQ] = ACTIONS(6258), - [anon_sym_LT] = ACTIONS(6258), - [anon_sym_LT_LT] = ACTIONS(6258), - [anon_sym_GT_GT] = ACTIONS(6258), - [anon_sym___extension__] = ACTIONS(6260), - [anon_sym___attribute__] = ACTIONS(6260), - [anon_sym___attribute] = ACTIONS(6258), - [anon_sym_COLON] = ACTIONS(6258), - [anon_sym_COLON_COLON] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6260), - [anon_sym_LBRACK] = ACTIONS(6260), - [anon_sym_EQ] = ACTIONS(6258), - [anon_sym_const] = ACTIONS(6258), - [anon_sym_constexpr] = ACTIONS(6260), - [anon_sym_volatile] = ACTIONS(6260), - [anon_sym_restrict] = ACTIONS(6260), - [anon_sym___restrict__] = ACTIONS(6260), - [anon_sym__Atomic] = ACTIONS(6260), - [anon_sym__Noreturn] = ACTIONS(6260), - [anon_sym_noreturn] = ACTIONS(6260), - [anon_sym__Nonnull] = ACTIONS(6260), - [anon_sym_mutable] = ACTIONS(6260), - [anon_sym_constinit] = ACTIONS(6260), - [anon_sym_consteval] = ACTIONS(6260), - [anon_sym_alignas] = ACTIONS(6260), - [anon_sym__Alignas] = ACTIONS(6260), - [anon_sym_QMARK] = ACTIONS(6260), - [anon_sym_STAR_EQ] = ACTIONS(6260), - [anon_sym_SLASH_EQ] = ACTIONS(6260), - [anon_sym_PERCENT_EQ] = ACTIONS(6260), - [anon_sym_PLUS_EQ] = ACTIONS(6260), - [anon_sym_DASH_EQ] = ACTIONS(6260), - [anon_sym_LT_LT_EQ] = ACTIONS(6260), - [anon_sym_GT_GT_EQ] = ACTIONS(6258), - [anon_sym_AMP_EQ] = ACTIONS(6260), - [anon_sym_CARET_EQ] = ACTIONS(6260), - [anon_sym_PIPE_EQ] = ACTIONS(6260), - [anon_sym_and_eq] = ACTIONS(6260), - [anon_sym_or_eq] = ACTIONS(6260), - [anon_sym_xor_eq] = ACTIONS(6260), - [anon_sym_LT_EQ_GT] = ACTIONS(6260), - [anon_sym_or] = ACTIONS(6258), - [anon_sym_and] = ACTIONS(6258), - [anon_sym_bitor] = ACTIONS(6260), - [anon_sym_xor] = ACTIONS(6258), - [anon_sym_bitand] = ACTIONS(6260), - [anon_sym_not_eq] = ACTIONS(6260), - [anon_sym_DASH_DASH] = ACTIONS(6260), - [anon_sym_PLUS_PLUS] = ACTIONS(6260), - [anon_sym_DOT] = ACTIONS(6258), - [anon_sym_DOT_STAR] = ACTIONS(6260), - [anon_sym_DASH_GT] = ACTIONS(6260), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6260), - [anon_sym_decltype] = ACTIONS(6260), - [anon_sym_final] = ACTIONS(6260), - [anon_sym_override] = ACTIONS(6260), - [anon_sym_GT2] = ACTIONS(6260), - [anon_sym_requires] = ACTIONS(6260), - }, - [STATE(2484)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), - [anon_sym_COMMA] = ACTIONS(6264), - [anon_sym_LPAREN2] = ACTIONS(6264), - [anon_sym_DASH] = ACTIONS(6262), - [anon_sym_PLUS] = ACTIONS(6262), - [anon_sym_STAR] = ACTIONS(6262), - [anon_sym_SLASH] = ACTIONS(6262), - [anon_sym_PERCENT] = ACTIONS(6262), - [anon_sym_PIPE_PIPE] = ACTIONS(6264), - [anon_sym_AMP_AMP] = ACTIONS(6264), - [anon_sym_PIPE] = ACTIONS(6262), - [anon_sym_CARET] = ACTIONS(6262), - [anon_sym_AMP] = ACTIONS(6262), - [anon_sym_EQ_EQ] = ACTIONS(6264), - [anon_sym_BANG_EQ] = ACTIONS(6264), - [anon_sym_GT] = ACTIONS(6262), - [anon_sym_GT_EQ] = ACTIONS(6262), - [anon_sym_LT_EQ] = ACTIONS(6262), - [anon_sym_LT] = ACTIONS(6262), - [anon_sym_LT_LT] = ACTIONS(6262), - [anon_sym_GT_GT] = ACTIONS(6262), - [anon_sym___extension__] = ACTIONS(6264), - [anon_sym___attribute__] = ACTIONS(6264), - [anon_sym___attribute] = ACTIONS(6262), - [anon_sym_COLON] = ACTIONS(6262), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACE] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(6264), - [anon_sym_EQ] = ACTIONS(6262), - [anon_sym_const] = ACTIONS(6262), - [anon_sym_constexpr] = ACTIONS(6264), - [anon_sym_volatile] = ACTIONS(6264), - [anon_sym_restrict] = ACTIONS(6264), - [anon_sym___restrict__] = ACTIONS(6264), - [anon_sym__Atomic] = ACTIONS(6264), - [anon_sym__Noreturn] = ACTIONS(6264), - [anon_sym_noreturn] = ACTIONS(6264), - [anon_sym__Nonnull] = ACTIONS(6264), - [anon_sym_mutable] = ACTIONS(6264), - [anon_sym_constinit] = ACTIONS(6264), - [anon_sym_consteval] = ACTIONS(6264), - [anon_sym_alignas] = ACTIONS(6264), - [anon_sym__Alignas] = ACTIONS(6264), - [anon_sym_QMARK] = ACTIONS(6264), - [anon_sym_STAR_EQ] = ACTIONS(6264), - [anon_sym_SLASH_EQ] = ACTIONS(6264), - [anon_sym_PERCENT_EQ] = ACTIONS(6264), - [anon_sym_PLUS_EQ] = ACTIONS(6264), - [anon_sym_DASH_EQ] = ACTIONS(6264), - [anon_sym_LT_LT_EQ] = ACTIONS(6264), - [anon_sym_GT_GT_EQ] = ACTIONS(6262), - [anon_sym_AMP_EQ] = ACTIONS(6264), - [anon_sym_CARET_EQ] = ACTIONS(6264), - [anon_sym_PIPE_EQ] = ACTIONS(6264), - [anon_sym_and_eq] = ACTIONS(6264), - [anon_sym_or_eq] = ACTIONS(6264), - [anon_sym_xor_eq] = ACTIONS(6264), - [anon_sym_LT_EQ_GT] = ACTIONS(6264), - [anon_sym_or] = ACTIONS(6262), - [anon_sym_and] = ACTIONS(6262), - [anon_sym_bitor] = ACTIONS(6264), - [anon_sym_xor] = ACTIONS(6262), - [anon_sym_bitand] = ACTIONS(6264), - [anon_sym_not_eq] = ACTIONS(6264), - [anon_sym_DASH_DASH] = ACTIONS(6264), - [anon_sym_PLUS_PLUS] = ACTIONS(6264), - [anon_sym_DOT] = ACTIONS(6262), - [anon_sym_DOT_STAR] = ACTIONS(6264), - [anon_sym_DASH_GT] = ACTIONS(6264), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6264), - [anon_sym_decltype] = ACTIONS(6264), - [anon_sym_final] = ACTIONS(6264), - [anon_sym_override] = ACTIONS(6264), - [anon_sym_GT2] = ACTIONS(6264), - [anon_sym_requires] = ACTIONS(6264), - }, - [STATE(2485)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2792), - [sym_ms_pointer_modifier] = STATE(2423), - [sym__abstract_declarator] = STATE(6183), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(3437), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(2157), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(3437), - [aux_sym_pointer_declarator_repeat1] = STATE(2423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(8108), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6497), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(8110), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6497), - [anon_sym_AMP] = ACTIONS(8112), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6497), - [anon_sym_GT_GT] = ACTIONS(6497), - [anon_sym_SEMI] = ACTIONS(6497), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym___attribute__] = ACTIONS(6497), - [anon_sym___attribute] = ACTIONS(6495), - [sym_ms_restrict_modifier] = ACTIONS(7741), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7780), - [sym_ms_signed_ptr_modifier] = ACTIONS(7780), - [anon_sym__unaligned] = ACTIONS(7782), - [anon_sym___unaligned] = ACTIONS(7782), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6497), - [anon_sym_and] = ACTIONS(6497), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6497), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6497), - [anon_sym_override] = ACTIONS(6497), - [anon_sym_requires] = ACTIONS(6497), - }, - [STATE(2486)] = { - [sym_string_literal] = STATE(2476), - [sym_raw_string_literal] = STATE(2476), - [aux_sym_concatenated_string_repeat1] = STATE(2476), - [sym_identifier] = ACTIONS(8123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8125), - [anon_sym_COMMA] = ACTIONS(8125), - [anon_sym_RPAREN] = ACTIONS(8125), - [aux_sym_preproc_if_token2] = ACTIONS(8125), - [aux_sym_preproc_else_token1] = ACTIONS(8125), - [aux_sym_preproc_elif_token1] = ACTIONS(8127), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8125), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8125), - [anon_sym_LPAREN2] = ACTIONS(8125), - [anon_sym_DASH] = ACTIONS(8127), - [anon_sym_PLUS] = ACTIONS(8127), - [anon_sym_STAR] = ACTIONS(8127), - [anon_sym_SLASH] = ACTIONS(8127), - [anon_sym_PERCENT] = ACTIONS(8127), - [anon_sym_PIPE_PIPE] = ACTIONS(8125), - [anon_sym_AMP_AMP] = ACTIONS(8125), - [anon_sym_PIPE] = ACTIONS(8127), - [anon_sym_CARET] = ACTIONS(8127), - [anon_sym_AMP] = ACTIONS(8127), - [anon_sym_EQ_EQ] = ACTIONS(8125), - [anon_sym_BANG_EQ] = ACTIONS(8125), - [anon_sym_GT] = ACTIONS(8127), - [anon_sym_GT_EQ] = ACTIONS(8125), - [anon_sym_LT_EQ] = ACTIONS(8127), - [anon_sym_LT] = ACTIONS(8127), - [anon_sym_LT_LT] = ACTIONS(8127), - [anon_sym_GT_GT] = ACTIONS(8127), - [anon_sym_SEMI] = ACTIONS(8125), - [anon_sym_COLON] = ACTIONS(8127), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8125), - [anon_sym_RBRACE] = ACTIONS(8125), - [anon_sym_LBRACK] = ACTIONS(8125), - [anon_sym_EQ] = ACTIONS(8127), - [anon_sym_QMARK] = ACTIONS(8125), - [anon_sym_STAR_EQ] = ACTIONS(8125), - [anon_sym_SLASH_EQ] = ACTIONS(8125), - [anon_sym_PERCENT_EQ] = ACTIONS(8125), - [anon_sym_PLUS_EQ] = ACTIONS(8125), - [anon_sym_DASH_EQ] = ACTIONS(8125), - [anon_sym_LT_LT_EQ] = ACTIONS(8125), - [anon_sym_GT_GT_EQ] = ACTIONS(8125), - [anon_sym_AMP_EQ] = ACTIONS(8125), - [anon_sym_CARET_EQ] = ACTIONS(8125), - [anon_sym_PIPE_EQ] = ACTIONS(8125), - [anon_sym_and_eq] = ACTIONS(8127), - [anon_sym_or_eq] = ACTIONS(8127), - [anon_sym_xor_eq] = ACTIONS(8127), - [anon_sym_LT_EQ_GT] = ACTIONS(8125), - [anon_sym_or] = ACTIONS(8127), - [anon_sym_and] = ACTIONS(8127), - [anon_sym_bitor] = ACTIONS(8127), - [anon_sym_xor] = ACTIONS(8127), - [anon_sym_bitand] = ACTIONS(8127), - [anon_sym_not_eq] = ACTIONS(8127), - [anon_sym_DASH_DASH] = ACTIONS(8125), - [anon_sym_PLUS_PLUS] = ACTIONS(8125), - [anon_sym_DOT] = ACTIONS(8127), - [anon_sym_DOT_STAR] = ACTIONS(8125), - [anon_sym_DASH_GT] = ACTIONS(8125), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_COLON_RBRACK] = ACTIONS(8125), - [sym_literal_suffix] = ACTIONS(8127), - }, - [STATE(2487)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6233), - [anon_sym_COMMA] = ACTIONS(6233), - [anon_sym_LPAREN2] = ACTIONS(6233), - [anon_sym_DASH] = ACTIONS(6226), - [anon_sym_PLUS] = ACTIONS(6226), - [anon_sym_STAR] = ACTIONS(6226), - [anon_sym_SLASH] = ACTIONS(6226), - [anon_sym_PERCENT] = ACTIONS(6226), - [anon_sym_PIPE_PIPE] = ACTIONS(6233), - [anon_sym_AMP_AMP] = ACTIONS(6233), - [anon_sym_PIPE] = ACTIONS(6226), - [anon_sym_CARET] = ACTIONS(6226), - [anon_sym_AMP] = ACTIONS(6226), - [anon_sym_EQ_EQ] = ACTIONS(6233), - [anon_sym_BANG_EQ] = ACTIONS(6233), - [anon_sym_GT] = ACTIONS(6226), - [anon_sym_GT_EQ] = ACTIONS(6226), - [anon_sym_LT_EQ] = ACTIONS(6226), - [anon_sym_LT] = ACTIONS(6226), - [anon_sym_LT_LT] = ACTIONS(6226), - [anon_sym_GT_GT] = ACTIONS(6226), - [anon_sym___extension__] = ACTIONS(6233), - [anon_sym___attribute__] = ACTIONS(6233), - [anon_sym___attribute] = ACTIONS(6226), - [anon_sym_COLON] = ACTIONS(6226), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6233), - [anon_sym_EQ] = ACTIONS(6226), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6233), - [anon_sym_volatile] = ACTIONS(6233), - [anon_sym_restrict] = ACTIONS(6233), - [anon_sym___restrict__] = ACTIONS(6233), - [anon_sym__Atomic] = ACTIONS(6233), - [anon_sym__Noreturn] = ACTIONS(6233), - [anon_sym_noreturn] = ACTIONS(6233), - [anon_sym__Nonnull] = ACTIONS(6233), - [anon_sym_mutable] = ACTIONS(6233), - [anon_sym_constinit] = ACTIONS(6233), - [anon_sym_consteval] = ACTIONS(6233), - [anon_sym_alignas] = ACTIONS(6233), - [anon_sym__Alignas] = ACTIONS(6233), - [anon_sym_QMARK] = ACTIONS(6233), - [anon_sym_STAR_EQ] = ACTIONS(6233), - [anon_sym_SLASH_EQ] = ACTIONS(6233), - [anon_sym_PERCENT_EQ] = ACTIONS(6233), - [anon_sym_PLUS_EQ] = ACTIONS(6233), - [anon_sym_DASH_EQ] = ACTIONS(6233), - [anon_sym_LT_LT_EQ] = ACTIONS(6233), - [anon_sym_GT_GT_EQ] = ACTIONS(6226), - [anon_sym_AMP_EQ] = ACTIONS(6233), - [anon_sym_CARET_EQ] = ACTIONS(6233), - [anon_sym_PIPE_EQ] = ACTIONS(6233), - [anon_sym_and_eq] = ACTIONS(6233), - [anon_sym_or_eq] = ACTIONS(6233), - [anon_sym_xor_eq] = ACTIONS(6233), - [anon_sym_LT_EQ_GT] = ACTIONS(6233), - [anon_sym_or] = ACTIONS(6226), - [anon_sym_and] = ACTIONS(6226), - [anon_sym_bitor] = ACTIONS(6233), - [anon_sym_xor] = ACTIONS(6226), - [anon_sym_bitand] = ACTIONS(6233), - [anon_sym_not_eq] = ACTIONS(6233), - [anon_sym_DASH_DASH] = ACTIONS(6233), - [anon_sym_PLUS_PLUS] = ACTIONS(6233), - [anon_sym_DOT] = ACTIONS(6226), - [anon_sym_DOT_STAR] = ACTIONS(6233), - [anon_sym_DASH_GT] = ACTIONS(6233), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6233), - [anon_sym_decltype] = ACTIONS(6233), - [anon_sym_final] = ACTIONS(6233), - [anon_sym_override] = ACTIONS(6233), - [anon_sym_GT2] = ACTIONS(6233), - [anon_sym_requires] = ACTIONS(6233), - }, - [STATE(2488)] = { - [sym_catch_clause] = STATE(2424), - [aux_sym_constructor_try_statement_repeat1] = STATE(2424), - [sym_identifier] = ACTIONS(3554), - [aux_sym_preproc_def_token1] = ACTIONS(3554), - [aux_sym_preproc_if_token1] = ACTIONS(3554), - [aux_sym_preproc_if_token2] = ACTIONS(3554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3554), - [aux_sym_preproc_else_token1] = ACTIONS(3554), - [aux_sym_preproc_elif_token1] = ACTIONS(3554), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3554), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3554), - [sym_preproc_directive] = ACTIONS(3554), - [anon_sym_LPAREN2] = ACTIONS(3556), - [anon_sym_TILDE] = ACTIONS(3556), - [anon_sym_STAR] = ACTIONS(3556), - [anon_sym_AMP_AMP] = ACTIONS(3556), - [anon_sym_AMP] = ACTIONS(3554), - [anon_sym_SEMI] = ACTIONS(3556), - [anon_sym___extension__] = ACTIONS(3554), - [anon_sym_typedef] = ACTIONS(3554), - [anon_sym_virtual] = ACTIONS(3554), - [anon_sym_extern] = ACTIONS(3554), - [anon_sym___attribute__] = ACTIONS(3554), - [anon_sym___attribute] = ACTIONS(3554), - [anon_sym_using] = ACTIONS(3554), - [anon_sym_COLON_COLON] = ACTIONS(3556), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3556), - [anon_sym___declspec] = ACTIONS(3554), - [anon_sym___based] = ACTIONS(3554), - [anon_sym_signed] = ACTIONS(3554), - [anon_sym_unsigned] = ACTIONS(3554), - [anon_sym_long] = ACTIONS(3554), - [anon_sym_short] = ACTIONS(3554), - [anon_sym_LBRACK] = ACTIONS(3554), - [anon_sym_static] = ACTIONS(3554), - [anon_sym_register] = ACTIONS(3554), - [anon_sym_inline] = ACTIONS(3554), - [anon_sym___inline] = ACTIONS(3554), - [anon_sym___inline__] = ACTIONS(3554), - [anon_sym___forceinline] = ACTIONS(3554), - [anon_sym_thread_local] = ACTIONS(3554), - [anon_sym___thread] = ACTIONS(3554), - [anon_sym_const] = ACTIONS(3554), - [anon_sym_constexpr] = ACTIONS(3554), - [anon_sym_volatile] = ACTIONS(3554), - [anon_sym_restrict] = ACTIONS(3554), - [anon_sym___restrict__] = ACTIONS(3554), - [anon_sym__Atomic] = ACTIONS(3554), - [anon_sym__Noreturn] = ACTIONS(3554), - [anon_sym_noreturn] = ACTIONS(3554), - [anon_sym__Nonnull] = ACTIONS(3554), - [anon_sym_mutable] = ACTIONS(3554), - [anon_sym_constinit] = ACTIONS(3554), - [anon_sym_consteval] = ACTIONS(3554), - [anon_sym_alignas] = ACTIONS(3554), - [anon_sym__Alignas] = ACTIONS(3554), - [sym_primitive_type] = ACTIONS(3554), - [anon_sym_enum] = ACTIONS(3554), - [anon_sym_class] = ACTIONS(3554), - [anon_sym_struct] = ACTIONS(3554), - [anon_sym_union] = ACTIONS(3554), - [anon_sym_typename] = ACTIONS(3554), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3554), - [anon_sym_decltype] = ACTIONS(3554), - [anon_sym_explicit] = ACTIONS(3554), - [anon_sym_private] = ACTIONS(3554), - [anon_sym_template] = ACTIONS(3554), - [anon_sym_operator] = ACTIONS(3554), - [anon_sym_friend] = ACTIONS(3554), - [anon_sym_public] = ACTIONS(3554), - [anon_sym_protected] = ACTIONS(3554), - [anon_sym_static_assert] = ACTIONS(3554), - [anon_sym_catch] = ACTIONS(8079), - [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [anon_sym_final] = ACTIONS(6999), + [anon_sym_override] = ACTIONS(6999), + [anon_sym_requires] = ACTIONS(6999), }, - [STATE(2489)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_attributes_end] = STATE(3845), - [sym__function_postfix] = STATE(3513), - [sym_trailing_return_type] = STATE(2961), - [sym_requires_clause] = STATE(3513), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym_SEMI] = ACTIONS(7544), - [anon_sym___attribute__] = ACTIONS(6150), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_COLON] = ACTIONS(7546), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), - [anon_sym_RBRACE] = ACTIONS(7544), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7554), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7557), - [anon_sym_override] = ACTIONS(7557), - [anon_sym_requires] = ACTIONS(7560), - [anon_sym_COLON_RBRACK] = ACTIONS(7544), + [STATE(2375)] = { + [sym_attribute_specifier] = STATE(2375), + [aux_sym_type_definition_repeat1] = STATE(2375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6937), + [anon_sym_COMMA] = ACTIONS(6937), + [anon_sym_LPAREN2] = ACTIONS(6937), + [anon_sym_DASH] = ACTIONS(6935), + [anon_sym_PLUS] = ACTIONS(6935), + [anon_sym_STAR] = ACTIONS(6935), + [anon_sym_SLASH] = ACTIONS(6935), + [anon_sym_PERCENT] = ACTIONS(6935), + [anon_sym_PIPE_PIPE] = ACTIONS(6937), + [anon_sym_AMP_AMP] = ACTIONS(6937), + [anon_sym_PIPE] = ACTIONS(6935), + [anon_sym_CARET] = ACTIONS(6935), + [anon_sym_AMP] = ACTIONS(6935), + [anon_sym_EQ_EQ] = ACTIONS(6937), + [anon_sym_BANG_EQ] = ACTIONS(6937), + [anon_sym_GT] = ACTIONS(6935), + [anon_sym_GT_EQ] = ACTIONS(6935), + [anon_sym_LT_EQ] = ACTIONS(6935), + [anon_sym_LT] = ACTIONS(6935), + [anon_sym_LT_LT] = ACTIONS(6935), + [anon_sym_GT_GT] = ACTIONS(6935), + [anon_sym___extension__] = ACTIONS(6937), + [anon_sym___attribute__] = ACTIONS(8130), + [anon_sym___attribute] = ACTIONS(8133), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6937), + [anon_sym_LBRACK] = ACTIONS(6935), + [anon_sym_EQ] = ACTIONS(6935), + [anon_sym_const] = ACTIONS(6935), + [anon_sym_constexpr] = ACTIONS(6937), + [anon_sym_volatile] = ACTIONS(6937), + [anon_sym_restrict] = ACTIONS(6937), + [anon_sym___restrict__] = ACTIONS(6937), + [anon_sym__Atomic] = ACTIONS(6937), + [anon_sym__Noreturn] = ACTIONS(6937), + [anon_sym_noreturn] = ACTIONS(6937), + [anon_sym__Nonnull] = ACTIONS(6937), + [anon_sym_mutable] = ACTIONS(6937), + [anon_sym_constinit] = ACTIONS(6937), + [anon_sym_consteval] = ACTIONS(6937), + [anon_sym_alignas] = ACTIONS(6937), + [anon_sym__Alignas] = ACTIONS(6937), + [anon_sym_QMARK] = ACTIONS(6937), + [anon_sym_STAR_EQ] = ACTIONS(6937), + [anon_sym_SLASH_EQ] = ACTIONS(6937), + [anon_sym_PERCENT_EQ] = ACTIONS(6937), + [anon_sym_PLUS_EQ] = ACTIONS(6937), + [anon_sym_DASH_EQ] = ACTIONS(6937), + [anon_sym_LT_LT_EQ] = ACTIONS(6937), + [anon_sym_GT_GT_EQ] = ACTIONS(6935), + [anon_sym_AMP_EQ] = ACTIONS(6937), + [anon_sym_CARET_EQ] = ACTIONS(6937), + [anon_sym_PIPE_EQ] = ACTIONS(6937), + [anon_sym_and_eq] = ACTIONS(6937), + [anon_sym_or_eq] = ACTIONS(6937), + [anon_sym_xor_eq] = ACTIONS(6937), + [anon_sym_LT_EQ_GT] = ACTIONS(6937), + [anon_sym_or] = ACTIONS(6935), + [anon_sym_and] = ACTIONS(6935), + [anon_sym_bitor] = ACTIONS(6937), + [anon_sym_xor] = ACTIONS(6935), + [anon_sym_bitand] = ACTIONS(6937), + [anon_sym_not_eq] = ACTIONS(6937), + [anon_sym_DASH_DASH] = ACTIONS(6937), + [anon_sym_PLUS_PLUS] = ACTIONS(6937), + [anon_sym_asm] = ACTIONS(6937), + [anon_sym___asm__] = ACTIONS(6937), + [anon_sym___asm] = ACTIONS(6935), + [anon_sym_DOT] = ACTIONS(6935), + [anon_sym_DOT_STAR] = ACTIONS(6937), + [anon_sym_DASH_GT] = ACTIONS(6937), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6937), + [anon_sym_override] = ACTIONS(6937), + [anon_sym_GT2] = ACTIONS(6937), + [anon_sym_noexcept] = ACTIONS(6937), + [anon_sym_throw] = ACTIONS(6937), + [anon_sym_requires] = ACTIONS(6937), }, - [STATE(2490)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_attributes_end] = STATE(3744), - [sym__function_postfix] = STATE(3497), - [sym_trailing_return_type] = STATE(2975), - [sym_requires_clause] = STATE(3497), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_RPAREN] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym_SEMI] = ACTIONS(7627), - [anon_sym___attribute__] = ACTIONS(6150), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_COLON] = ACTIONS(7629), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7627), - [anon_sym_RBRACE] = ACTIONS(7627), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7627), - [anon_sym_or_eq] = ACTIONS(7627), - [anon_sym_xor_eq] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(7631), + [STATE(2376)] = { + [sym__abstract_declarator] = STATE(4792), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2379), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1979), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), + [anon_sym_COMMA] = ACTIONS(7391), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7393), + [anon_sym_PLUS] = ACTIONS(7393), + [anon_sym_STAR] = ACTIONS(7162), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_PERCENT] = ACTIONS(7393), + [anon_sym_PIPE_PIPE] = ACTIONS(7391), + [anon_sym_AMP_AMP] = ACTIONS(7164), + [anon_sym_PIPE] = ACTIONS(7393), + [anon_sym_CARET] = ACTIONS(7393), + [anon_sym_AMP] = ACTIONS(7166), + [anon_sym_EQ_EQ] = ACTIONS(7391), + [anon_sym_BANG_EQ] = ACTIONS(7391), + [anon_sym_GT] = ACTIONS(7393), + [anon_sym_GT_EQ] = ACTIONS(7391), + [anon_sym_LT_EQ] = ACTIONS(7393), + [anon_sym_LT] = ACTIONS(7393), + [anon_sym_LT_LT] = ACTIONS(7393), + [anon_sym_GT_GT] = ACTIONS(7393), + [anon_sym_SEMI] = ACTIONS(7391), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym___attribute__] = ACTIONS(7391), + [anon_sym___attribute] = ACTIONS(7393), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7393), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(7391), + [anon_sym_STAR_EQ] = ACTIONS(7391), + [anon_sym_SLASH_EQ] = ACTIONS(7391), + [anon_sym_PERCENT_EQ] = ACTIONS(7391), + [anon_sym_PLUS_EQ] = ACTIONS(7391), + [anon_sym_DASH_EQ] = ACTIONS(7391), + [anon_sym_LT_LT_EQ] = ACTIONS(7391), + [anon_sym_GT_GT_EQ] = ACTIONS(7391), + [anon_sym_AMP_EQ] = ACTIONS(7391), + [anon_sym_CARET_EQ] = ACTIONS(7391), + [anon_sym_PIPE_EQ] = ACTIONS(7391), + [anon_sym_and_eq] = ACTIONS(7391), + [anon_sym_or_eq] = ACTIONS(7391), + [anon_sym_xor_eq] = ACTIONS(7391), + [anon_sym_LT_EQ_GT] = ACTIONS(7391), + [anon_sym_or] = ACTIONS(7393), + [anon_sym_and] = ACTIONS(7393), + [anon_sym_bitor] = ACTIONS(7391), + [anon_sym_xor] = ACTIONS(7393), + [anon_sym_bitand] = ACTIONS(7391), + [anon_sym_not_eq] = ACTIONS(7391), + [anon_sym_DASH_DASH] = ACTIONS(7391), + [anon_sym_PLUS_PLUS] = ACTIONS(7391), + [anon_sym_DOT] = ACTIONS(7393), + [anon_sym_DOT_STAR] = ACTIONS(7391), + [anon_sym_DASH_GT] = ACTIONS(7391), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7634), - [anon_sym_override] = ACTIONS(7634), - [anon_sym_requires] = ACTIONS(7637), - [anon_sym_COLON_RBRACK] = ACTIONS(7627), - }, - [STATE(2491)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6233), - [anon_sym_COMMA] = ACTIONS(6233), - [anon_sym_LPAREN2] = ACTIONS(6233), - [anon_sym_DASH] = ACTIONS(6226), - [anon_sym_PLUS] = ACTIONS(6226), - [anon_sym_STAR] = ACTIONS(6226), - [anon_sym_SLASH] = ACTIONS(6226), - [anon_sym_PERCENT] = ACTIONS(6226), - [anon_sym_PIPE_PIPE] = ACTIONS(6233), - [anon_sym_AMP_AMP] = ACTIONS(6233), - [anon_sym_PIPE] = ACTIONS(6226), - [anon_sym_CARET] = ACTIONS(6226), - [anon_sym_AMP] = ACTIONS(6226), - [anon_sym_EQ_EQ] = ACTIONS(6233), - [anon_sym_BANG_EQ] = ACTIONS(6233), - [anon_sym_GT] = ACTIONS(6226), - [anon_sym_GT_EQ] = ACTIONS(6233), - [anon_sym_LT_EQ] = ACTIONS(6226), - [anon_sym_LT] = ACTIONS(6226), - [anon_sym_LT_LT] = ACTIONS(6226), - [anon_sym_GT_GT] = ACTIONS(6226), - [anon_sym___extension__] = ACTIONS(6233), - [anon_sym___attribute__] = ACTIONS(6233), - [anon_sym___attribute] = ACTIONS(6226), - [anon_sym_COLON] = ACTIONS(6226), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6233), - [anon_sym_RBRACK] = ACTIONS(6233), - [anon_sym_EQ] = ACTIONS(6226), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6233), - [anon_sym_volatile] = ACTIONS(6233), - [anon_sym_restrict] = ACTIONS(6233), - [anon_sym___restrict__] = ACTIONS(6233), - [anon_sym__Atomic] = ACTIONS(6233), - [anon_sym__Noreturn] = ACTIONS(6233), - [anon_sym_noreturn] = ACTIONS(6233), - [anon_sym__Nonnull] = ACTIONS(6233), - [anon_sym_mutable] = ACTIONS(6233), - [anon_sym_constinit] = ACTIONS(6233), - [anon_sym_consteval] = ACTIONS(6233), - [anon_sym_alignas] = ACTIONS(6233), - [anon_sym__Alignas] = ACTIONS(6233), - [anon_sym_QMARK] = ACTIONS(6233), - [anon_sym_STAR_EQ] = ACTIONS(6233), - [anon_sym_SLASH_EQ] = ACTIONS(6233), - [anon_sym_PERCENT_EQ] = ACTIONS(6233), - [anon_sym_PLUS_EQ] = ACTIONS(6233), - [anon_sym_DASH_EQ] = ACTIONS(6233), - [anon_sym_LT_LT_EQ] = ACTIONS(6233), - [anon_sym_GT_GT_EQ] = ACTIONS(6233), - [anon_sym_AMP_EQ] = ACTIONS(6233), - [anon_sym_CARET_EQ] = ACTIONS(6233), - [anon_sym_PIPE_EQ] = ACTIONS(6233), - [anon_sym_and_eq] = ACTIONS(6233), - [anon_sym_or_eq] = ACTIONS(6233), - [anon_sym_xor_eq] = ACTIONS(6233), - [anon_sym_LT_EQ_GT] = ACTIONS(6233), - [anon_sym_or] = ACTIONS(6226), - [anon_sym_and] = ACTIONS(6226), - [anon_sym_bitor] = ACTIONS(6233), - [anon_sym_xor] = ACTIONS(6226), - [anon_sym_bitand] = ACTIONS(6233), - [anon_sym_not_eq] = ACTIONS(6233), - [anon_sym_DASH_DASH] = ACTIONS(6233), - [anon_sym_PLUS_PLUS] = ACTIONS(6233), - [anon_sym_DOT] = ACTIONS(6226), - [anon_sym_DOT_STAR] = ACTIONS(6233), - [anon_sym_DASH_GT] = ACTIONS(6233), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6233), - [anon_sym_decltype] = ACTIONS(6233), - [anon_sym_final] = ACTIONS(6233), - [anon_sym_override] = ACTIONS(6233), - [anon_sym_requires] = ACTIONS(6233), - }, - [STATE(2492)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_attributes_end] = STATE(3740), - [sym__function_postfix] = STATE(3528), - [sym_trailing_return_type] = STATE(2867), - [sym_requires_clause] = STATE(3528), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), - [anon_sym_COMMA] = ACTIONS(8089), - [anon_sym_RPAREN] = ACTIONS(8089), - [anon_sym_LPAREN2] = ACTIONS(8089), - [anon_sym_DASH] = ACTIONS(8087), - [anon_sym_PLUS] = ACTIONS(8087), - [anon_sym_STAR] = ACTIONS(8087), - [anon_sym_SLASH] = ACTIONS(8087), - [anon_sym_PERCENT] = ACTIONS(8087), - [anon_sym_PIPE_PIPE] = ACTIONS(8089), - [anon_sym_AMP_AMP] = ACTIONS(8089), - [anon_sym_PIPE] = ACTIONS(8087), - [anon_sym_CARET] = ACTIONS(8087), - [anon_sym_AMP] = ACTIONS(8087), - [anon_sym_EQ_EQ] = ACTIONS(8089), - [anon_sym_BANG_EQ] = ACTIONS(8089), - [anon_sym_GT] = ACTIONS(8087), - [anon_sym_GT_EQ] = ACTIONS(8089), - [anon_sym_LT_EQ] = ACTIONS(8087), - [anon_sym_LT] = ACTIONS(8087), - [anon_sym_LT_LT] = ACTIONS(8087), - [anon_sym_GT_GT] = ACTIONS(8087), - [anon_sym_SEMI] = ACTIONS(8089), - [anon_sym___attribute__] = ACTIONS(6150), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_COLON] = ACTIONS(8087), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8089), - [anon_sym_RBRACE] = ACTIONS(8089), - [anon_sym_LBRACK] = ACTIONS(8087), - [anon_sym_EQ] = ACTIONS(8087), - [anon_sym_QMARK] = ACTIONS(8089), - [anon_sym_STAR_EQ] = ACTIONS(8089), - [anon_sym_SLASH_EQ] = ACTIONS(8089), - [anon_sym_PERCENT_EQ] = ACTIONS(8089), - [anon_sym_PLUS_EQ] = ACTIONS(8089), - [anon_sym_DASH_EQ] = ACTIONS(8089), - [anon_sym_LT_LT_EQ] = ACTIONS(8089), - [anon_sym_GT_GT_EQ] = ACTIONS(8089), - [anon_sym_AMP_EQ] = ACTIONS(8089), - [anon_sym_CARET_EQ] = ACTIONS(8089), - [anon_sym_PIPE_EQ] = ACTIONS(8089), - [anon_sym_and_eq] = ACTIONS(8089), - [anon_sym_or_eq] = ACTIONS(8089), - [anon_sym_xor_eq] = ACTIONS(8089), - [anon_sym_LT_EQ_GT] = ACTIONS(8089), - [anon_sym_or] = ACTIONS(8087), - [anon_sym_and] = ACTIONS(8087), - [anon_sym_bitor] = ACTIONS(8089), - [anon_sym_xor] = ACTIONS(8087), - [anon_sym_bitand] = ACTIONS(8089), - [anon_sym_not_eq] = ACTIONS(8089), - [anon_sym_DASH_DASH] = ACTIONS(8089), - [anon_sym_PLUS_PLUS] = ACTIONS(8089), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(8087), - [anon_sym_DOT_STAR] = ACTIONS(8089), - [anon_sym_DASH_GT] = ACTIONS(8120), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8129), - [anon_sym_override] = ACTIONS(8129), - [anon_sym_requires] = ACTIONS(8132), - [anon_sym_COLON_RBRACK] = ACTIONS(8089), - }, - [STATE(2493)] = { - [sym_catch_clause] = STATE(2424), - [aux_sym_constructor_try_statement_repeat1] = STATE(2424), - [sym_identifier] = ACTIONS(3534), - [aux_sym_preproc_def_token1] = ACTIONS(3534), - [aux_sym_preproc_if_token1] = ACTIONS(3534), - [aux_sym_preproc_if_token2] = ACTIONS(3534), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3534), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3534), - [aux_sym_preproc_else_token1] = ACTIONS(3534), - [aux_sym_preproc_elif_token1] = ACTIONS(3534), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3534), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3534), - [sym_preproc_directive] = ACTIONS(3534), - [anon_sym_LPAREN2] = ACTIONS(3536), - [anon_sym_TILDE] = ACTIONS(3536), - [anon_sym_STAR] = ACTIONS(3536), - [anon_sym_AMP_AMP] = ACTIONS(3536), - [anon_sym_AMP] = ACTIONS(3534), - [anon_sym_SEMI] = ACTIONS(3536), - [anon_sym___extension__] = ACTIONS(3534), - [anon_sym_typedef] = ACTIONS(3534), - [anon_sym_virtual] = ACTIONS(3534), - [anon_sym_extern] = ACTIONS(3534), - [anon_sym___attribute__] = ACTIONS(3534), - [anon_sym___attribute] = ACTIONS(3534), - [anon_sym_using] = ACTIONS(3534), - [anon_sym_COLON_COLON] = ACTIONS(3536), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3536), - [anon_sym___declspec] = ACTIONS(3534), - [anon_sym___based] = ACTIONS(3534), - [anon_sym_signed] = ACTIONS(3534), - [anon_sym_unsigned] = ACTIONS(3534), - [anon_sym_long] = ACTIONS(3534), - [anon_sym_short] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_static] = ACTIONS(3534), - [anon_sym_register] = ACTIONS(3534), - [anon_sym_inline] = ACTIONS(3534), - [anon_sym___inline] = ACTIONS(3534), - [anon_sym___inline__] = ACTIONS(3534), - [anon_sym___forceinline] = ACTIONS(3534), - [anon_sym_thread_local] = ACTIONS(3534), - [anon_sym___thread] = ACTIONS(3534), - [anon_sym_const] = ACTIONS(3534), - [anon_sym_constexpr] = ACTIONS(3534), - [anon_sym_volatile] = ACTIONS(3534), - [anon_sym_restrict] = ACTIONS(3534), - [anon_sym___restrict__] = ACTIONS(3534), - [anon_sym__Atomic] = ACTIONS(3534), - [anon_sym__Noreturn] = ACTIONS(3534), - [anon_sym_noreturn] = ACTIONS(3534), - [anon_sym__Nonnull] = ACTIONS(3534), - [anon_sym_mutable] = ACTIONS(3534), - [anon_sym_constinit] = ACTIONS(3534), - [anon_sym_consteval] = ACTIONS(3534), - [anon_sym_alignas] = ACTIONS(3534), - [anon_sym__Alignas] = ACTIONS(3534), - [sym_primitive_type] = ACTIONS(3534), - [anon_sym_enum] = ACTIONS(3534), - [anon_sym_class] = ACTIONS(3534), - [anon_sym_struct] = ACTIONS(3534), - [anon_sym_union] = ACTIONS(3534), - [anon_sym_typename] = ACTIONS(3534), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3534), - [anon_sym_decltype] = ACTIONS(3534), - [anon_sym_explicit] = ACTIONS(3534), - [anon_sym_private] = ACTIONS(3534), - [anon_sym_template] = ACTIONS(3534), - [anon_sym_operator] = ACTIONS(3534), - [anon_sym_friend] = ACTIONS(3534), - [anon_sym_public] = ACTIONS(3534), - [anon_sym_protected] = ACTIONS(3534), - [anon_sym_static_assert] = ACTIONS(3534), - [anon_sym_catch] = ACTIONS(8079), - [anon_sym_LBRACK_COLON] = ACTIONS(3536), - }, - [STATE(2494)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2792), - [sym_ms_pointer_modifier] = STATE(2423), - [sym__abstract_declarator] = STATE(6206), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(3459), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(1976), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(3459), - [aux_sym_pointer_declarator_repeat1] = STATE(2423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_RPAREN] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(8030), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6497), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(8032), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6497), - [anon_sym_AMP] = ACTIONS(8034), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6497), - [anon_sym_GT_GT] = ACTIONS(6497), - [anon_sym_SEMI] = ACTIONS(6497), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym_COLON] = ACTIONS(6495), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6497), - [sym_ms_restrict_modifier] = ACTIONS(7741), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7780), - [sym_ms_signed_ptr_modifier] = ACTIONS(7780), - [anon_sym__unaligned] = ACTIONS(7782), - [anon_sym___unaligned] = ACTIONS(7782), - [anon_sym_RBRACE] = ACTIONS(6497), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6497), - [anon_sym_and] = ACTIONS(6497), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6497), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6497), - }, - [STATE(2495)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), - [anon_sym_COMMA] = ACTIONS(6244), - [anon_sym_LPAREN2] = ACTIONS(6244), - [anon_sym_DASH] = ACTIONS(6242), - [anon_sym_PLUS] = ACTIONS(6242), - [anon_sym_STAR] = ACTIONS(6242), - [anon_sym_SLASH] = ACTIONS(6242), - [anon_sym_PERCENT] = ACTIONS(6242), - [anon_sym_PIPE_PIPE] = ACTIONS(6244), - [anon_sym_AMP_AMP] = ACTIONS(6244), - [anon_sym_PIPE] = ACTIONS(6242), - [anon_sym_CARET] = ACTIONS(6242), - [anon_sym_AMP] = ACTIONS(6242), - [anon_sym_EQ_EQ] = ACTIONS(6244), - [anon_sym_BANG_EQ] = ACTIONS(6244), - [anon_sym_GT] = ACTIONS(6242), - [anon_sym_GT_EQ] = ACTIONS(6244), - [anon_sym_LT_EQ] = ACTIONS(6242), - [anon_sym_LT] = ACTIONS(6242), - [anon_sym_LT_LT] = ACTIONS(6242), - [anon_sym_GT_GT] = ACTIONS(6242), - [anon_sym___extension__] = ACTIONS(6244), - [anon_sym___attribute__] = ACTIONS(6244), - [anon_sym___attribute] = ACTIONS(6242), - [anon_sym_COLON] = ACTIONS(6242), - [anon_sym_COLON_COLON] = ACTIONS(6244), - [anon_sym_LBRACE] = ACTIONS(6244), - [anon_sym_LBRACK] = ACTIONS(6244), - [anon_sym_RBRACK] = ACTIONS(6244), - [anon_sym_EQ] = ACTIONS(6242), - [anon_sym_const] = ACTIONS(6242), - [anon_sym_constexpr] = ACTIONS(6244), - [anon_sym_volatile] = ACTIONS(6244), - [anon_sym_restrict] = ACTIONS(6244), - [anon_sym___restrict__] = ACTIONS(6244), - [anon_sym__Atomic] = ACTIONS(6244), - [anon_sym__Noreturn] = ACTIONS(6244), - [anon_sym_noreturn] = ACTIONS(6244), - [anon_sym__Nonnull] = ACTIONS(6244), - [anon_sym_mutable] = ACTIONS(6244), - [anon_sym_constinit] = ACTIONS(6244), - [anon_sym_consteval] = ACTIONS(6244), - [anon_sym_alignas] = ACTIONS(6244), - [anon_sym__Alignas] = ACTIONS(6244), - [anon_sym_QMARK] = ACTIONS(6244), - [anon_sym_STAR_EQ] = ACTIONS(6244), - [anon_sym_SLASH_EQ] = ACTIONS(6244), - [anon_sym_PERCENT_EQ] = ACTIONS(6244), - [anon_sym_PLUS_EQ] = ACTIONS(6244), - [anon_sym_DASH_EQ] = ACTIONS(6244), - [anon_sym_LT_LT_EQ] = ACTIONS(6244), - [anon_sym_GT_GT_EQ] = ACTIONS(6244), - [anon_sym_AMP_EQ] = ACTIONS(6244), - [anon_sym_CARET_EQ] = ACTIONS(6244), - [anon_sym_PIPE_EQ] = ACTIONS(6244), - [anon_sym_and_eq] = ACTIONS(6244), - [anon_sym_or_eq] = ACTIONS(6244), - [anon_sym_xor_eq] = ACTIONS(6244), - [anon_sym_LT_EQ_GT] = ACTIONS(6244), - [anon_sym_or] = ACTIONS(6242), - [anon_sym_and] = ACTIONS(6242), - [anon_sym_bitor] = ACTIONS(6244), - [anon_sym_xor] = ACTIONS(6242), - [anon_sym_bitand] = ACTIONS(6244), - [anon_sym_not_eq] = ACTIONS(6244), - [anon_sym_DASH_DASH] = ACTIONS(6244), - [anon_sym_PLUS_PLUS] = ACTIONS(6244), - [anon_sym_DOT] = ACTIONS(6242), - [anon_sym_DOT_STAR] = ACTIONS(6244), - [anon_sym_DASH_GT] = ACTIONS(6244), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6244), - [anon_sym_decltype] = ACTIONS(6244), - [anon_sym_final] = ACTIONS(6244), - [anon_sym_override] = ACTIONS(6244), - [anon_sym_requires] = ACTIONS(6244), }, - [STATE(2496)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2339), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7251), - [anon_sym_COMMA] = ACTIONS(7251), - [anon_sym_RPAREN] = ACTIONS(7251), - [anon_sym_LPAREN2] = ACTIONS(7251), - [anon_sym_DASH] = ACTIONS(7249), - [anon_sym_PLUS] = ACTIONS(7249), - [anon_sym_STAR] = ACTIONS(7249), - [anon_sym_SLASH] = ACTIONS(7249), - [anon_sym_PERCENT] = ACTIONS(7249), - [anon_sym_PIPE_PIPE] = ACTIONS(7251), - [anon_sym_AMP_AMP] = ACTIONS(7251), - [anon_sym_PIPE] = ACTIONS(7249), - [anon_sym_CARET] = ACTIONS(7249), - [anon_sym_AMP] = ACTIONS(7249), - [anon_sym_EQ_EQ] = ACTIONS(7251), - [anon_sym_BANG_EQ] = ACTIONS(7251), - [anon_sym_GT] = ACTIONS(7249), + [STATE(2377)] = { + [sym_type_qualifier] = STATE(2378), + [sym_alignas_qualifier] = STATE(2423), + [aux_sym__type_definition_type_repeat1] = STATE(2378), + [aux_sym_sized_type_specifier_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(7940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), + [anon_sym_COMMA] = ACTIONS(7249), + [anon_sym_LPAREN2] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7251), + [anon_sym_PLUS] = ACTIONS(7251), + [anon_sym_STAR] = ACTIONS(7251), + [anon_sym_SLASH] = ACTIONS(7251), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7249), + [anon_sym_PIPE] = ACTIONS(7251), + [anon_sym_CARET] = ACTIONS(7251), + [anon_sym_AMP] = ACTIONS(7251), + [anon_sym_EQ_EQ] = ACTIONS(7249), + [anon_sym_BANG_EQ] = ACTIONS(7249), + [anon_sym_GT] = ACTIONS(7251), [anon_sym_GT_EQ] = ACTIONS(7251), - [anon_sym_LT_EQ] = ACTIONS(7249), - [anon_sym_LT] = ACTIONS(7249), - [anon_sym_LT_LT] = ACTIONS(7249), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym___extension__] = ACTIONS(7251), + [anon_sym_LT_EQ] = ACTIONS(7251), + [anon_sym_LT] = ACTIONS(7251), + [anon_sym_LT_LT] = ACTIONS(7251), + [anon_sym_GT_GT] = ACTIONS(7251), + [anon_sym___extension__] = ACTIONS(7154), [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7249), - [anon_sym_LBRACE] = ACTIONS(7251), - [anon_sym_signed] = ACTIONS(8135), - [anon_sym_unsigned] = ACTIONS(8135), - [anon_sym_long] = ACTIONS(8135), - [anon_sym_short] = ACTIONS(8135), - [anon_sym_LBRACK] = ACTIONS(7251), - [anon_sym_EQ] = ACTIONS(7249), - [anon_sym_const] = ACTIONS(7249), - [anon_sym_constexpr] = ACTIONS(7251), - [anon_sym_volatile] = ACTIONS(7251), - [anon_sym_restrict] = ACTIONS(7251), - [anon_sym___restrict__] = ACTIONS(7251), - [anon_sym__Atomic] = ACTIONS(7251), - [anon_sym__Noreturn] = ACTIONS(7251), - [anon_sym_noreturn] = ACTIONS(7251), - [anon_sym__Nonnull] = ACTIONS(7251), - [anon_sym_mutable] = ACTIONS(7251), - [anon_sym_constinit] = ACTIONS(7251), - [anon_sym_consteval] = ACTIONS(7251), - [anon_sym_alignas] = ACTIONS(7251), - [anon_sym__Alignas] = ACTIONS(7251), - [anon_sym_QMARK] = ACTIONS(7251), - [anon_sym_STAR_EQ] = ACTIONS(7251), - [anon_sym_SLASH_EQ] = ACTIONS(7251), - [anon_sym_PERCENT_EQ] = ACTIONS(7251), - [anon_sym_PLUS_EQ] = ACTIONS(7251), - [anon_sym_DASH_EQ] = ACTIONS(7251), - [anon_sym_LT_LT_EQ] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7251), + [anon_sym_LBRACE] = ACTIONS(7249), + [anon_sym_signed] = ACTIONS(8136), + [anon_sym_unsigned] = ACTIONS(8136), + [anon_sym_long] = ACTIONS(8136), + [anon_sym_short] = ACTIONS(8136), + [anon_sym_LBRACK] = ACTIONS(7249), + [anon_sym_EQ] = ACTIONS(7251), + [anon_sym_const] = ACTIONS(7154), + [anon_sym_constexpr] = ACTIONS(7154), + [anon_sym_volatile] = ACTIONS(7154), + [anon_sym_restrict] = ACTIONS(7154), + [anon_sym___restrict__] = ACTIONS(7154), + [anon_sym__Atomic] = ACTIONS(7154), + [anon_sym__Noreturn] = ACTIONS(7154), + [anon_sym_noreturn] = ACTIONS(7154), + [anon_sym__Nonnull] = ACTIONS(7154), + [anon_sym_mutable] = ACTIONS(7154), + [anon_sym_constinit] = ACTIONS(7154), + [anon_sym_consteval] = ACTIONS(7154), + [anon_sym_alignas] = ACTIONS(8138), + [anon_sym__Alignas] = ACTIONS(8138), + [sym_primitive_type] = ACTIONS(7950), + [anon_sym_QMARK] = ACTIONS(7249), + [anon_sym_STAR_EQ] = ACTIONS(7249), + [anon_sym_SLASH_EQ] = ACTIONS(7249), + [anon_sym_PERCENT_EQ] = ACTIONS(7249), + [anon_sym_PLUS_EQ] = ACTIONS(7249), + [anon_sym_DASH_EQ] = ACTIONS(7249), + [anon_sym_LT_LT_EQ] = ACTIONS(7249), [anon_sym_GT_GT_EQ] = ACTIONS(7251), - [anon_sym_AMP_EQ] = ACTIONS(7251), - [anon_sym_CARET_EQ] = ACTIONS(7251), - [anon_sym_PIPE_EQ] = ACTIONS(7251), - [anon_sym_LT_EQ_GT] = ACTIONS(7251), + [anon_sym_AMP_EQ] = ACTIONS(7249), + [anon_sym_CARET_EQ] = ACTIONS(7249), + [anon_sym_PIPE_EQ] = ACTIONS(7249), + [anon_sym_and_eq] = ACTIONS(7251), + [anon_sym_or_eq] = ACTIONS(7251), + [anon_sym_xor_eq] = ACTIONS(7251), + [anon_sym_LT_EQ_GT] = ACTIONS(7249), [anon_sym_or] = ACTIONS(7251), [anon_sym_and] = ACTIONS(7251), [anon_sym_bitor] = ACTIONS(7251), [anon_sym_xor] = ACTIONS(7251), [anon_sym_bitand] = ACTIONS(7251), [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7251), - [anon_sym_PLUS_PLUS] = ACTIONS(7251), - [anon_sym_DOT] = ACTIONS(7249), - [anon_sym_DOT_STAR] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7249), + [anon_sym_PLUS_PLUS] = ACTIONS(7249), + [anon_sym_DOT] = ACTIONS(7251), + [anon_sym_DOT_STAR] = ACTIONS(7249), [anon_sym_DASH_GT] = ACTIONS(7249), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7251), - [anon_sym_override] = ACTIONS(7251), - [anon_sym_requires] = ACTIONS(7251), - [anon_sym_DASH_GT_STAR] = ACTIONS(7251), - }, - [STATE(2497)] = { - [sym_template_argument_list] = STATE(2525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6208), - [anon_sym_COMMA] = ACTIONS(6208), - [anon_sym_RPAREN] = ACTIONS(6208), - [anon_sym_LPAREN2] = ACTIONS(6208), - [anon_sym_DASH] = ACTIONS(6201), - [anon_sym_PLUS] = ACTIONS(6201), - [anon_sym_STAR] = ACTIONS(6201), - [anon_sym_SLASH] = ACTIONS(6201), - [anon_sym_PERCENT] = ACTIONS(6201), - [anon_sym_PIPE_PIPE] = ACTIONS(6208), - [anon_sym_AMP_AMP] = ACTIONS(6208), - [anon_sym_PIPE] = ACTIONS(6201), - [anon_sym_CARET] = ACTIONS(6201), - [anon_sym_AMP] = ACTIONS(6201), - [anon_sym_EQ_EQ] = ACTIONS(6208), - [anon_sym_BANG_EQ] = ACTIONS(6208), - [anon_sym_GT] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6208), - [anon_sym_LT_EQ] = ACTIONS(6201), - [anon_sym_LT] = ACTIONS(8137), - [anon_sym_LT_LT] = ACTIONS(6201), - [anon_sym_GT_GT] = ACTIONS(6201), - [anon_sym___extension__] = ACTIONS(6208), - [anon_sym___attribute__] = ACTIONS(6208), - [anon_sym___attribute] = ACTIONS(6201), - [anon_sym_COLON] = ACTIONS(6201), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(6208), - [anon_sym_LBRACK] = ACTIONS(6208), - [anon_sym_EQ] = ACTIONS(6201), - [anon_sym_const] = ACTIONS(6201), - [anon_sym_constexpr] = ACTIONS(6208), - [anon_sym_volatile] = ACTIONS(6208), - [anon_sym_restrict] = ACTIONS(6208), - [anon_sym___restrict__] = ACTIONS(6208), - [anon_sym__Atomic] = ACTIONS(6208), - [anon_sym__Noreturn] = ACTIONS(6208), - [anon_sym_noreturn] = ACTIONS(6208), - [anon_sym__Nonnull] = ACTIONS(6208), - [anon_sym_mutable] = ACTIONS(6208), - [anon_sym_constinit] = ACTIONS(6208), - [anon_sym_consteval] = ACTIONS(6208), - [anon_sym_alignas] = ACTIONS(6208), - [anon_sym__Alignas] = ACTIONS(6208), - [anon_sym_QMARK] = ACTIONS(6208), - [anon_sym_STAR_EQ] = ACTIONS(6208), - [anon_sym_SLASH_EQ] = ACTIONS(6208), - [anon_sym_PERCENT_EQ] = ACTIONS(6208), - [anon_sym_PLUS_EQ] = ACTIONS(6208), - [anon_sym_DASH_EQ] = ACTIONS(6208), - [anon_sym_LT_LT_EQ] = ACTIONS(6208), - [anon_sym_GT_GT_EQ] = ACTIONS(6208), - [anon_sym_AMP_EQ] = ACTIONS(6208), - [anon_sym_CARET_EQ] = ACTIONS(6208), - [anon_sym_PIPE_EQ] = ACTIONS(6208), - [anon_sym_LT_EQ_GT] = ACTIONS(6208), - [anon_sym_or] = ACTIONS(6208), - [anon_sym_and] = ACTIONS(6208), - [anon_sym_bitor] = ACTIONS(6208), - [anon_sym_xor] = ACTIONS(6208), - [anon_sym_bitand] = ACTIONS(6208), - [anon_sym_not_eq] = ACTIONS(6208), - [anon_sym_DASH_DASH] = ACTIONS(6208), - [anon_sym_PLUS_PLUS] = ACTIONS(6208), - [anon_sym_DOT] = ACTIONS(6201), - [anon_sym_DOT_STAR] = ACTIONS(6208), - [anon_sym_DASH_GT] = ACTIONS(6201), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6208), - [anon_sym_decltype] = ACTIONS(6208), - [anon_sym_final] = ACTIONS(6208), - [anon_sym_override] = ACTIONS(6208), - [anon_sym_requires] = ACTIONS(6208), - [anon_sym_DASH_GT_STAR] = ACTIONS(6208), + [anon_sym_GT2] = ACTIONS(7249), }, - [STATE(2498)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), - [anon_sym_COMMA] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_LPAREN2] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_SLASH] = ACTIONS(2768), - [anon_sym_PERCENT] = ACTIONS(2768), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2768), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_LT_EQ] = ACTIONS(2768), - [anon_sym_LT] = ACTIONS(2768), - [anon_sym_LT_LT] = ACTIONS(2768), - [anon_sym_GT_GT] = ACTIONS(2768), - [anon_sym___extension__] = ACTIONS(2758), - [anon_sym___attribute__] = ACTIONS(2758), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_EQ] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2758), - [anon_sym_volatile] = ACTIONS(2758), - [anon_sym_restrict] = ACTIONS(2758), - [anon_sym___restrict__] = ACTIONS(2758), - [anon_sym__Atomic] = ACTIONS(2758), - [anon_sym__Noreturn] = ACTIONS(2758), - [anon_sym_noreturn] = ACTIONS(2758), - [anon_sym__Nonnull] = ACTIONS(2758), - [anon_sym_mutable] = ACTIONS(2758), - [anon_sym_constinit] = ACTIONS(2758), - [anon_sym_consteval] = ACTIONS(2758), - [anon_sym_alignas] = ACTIONS(2758), - [anon_sym__Alignas] = ACTIONS(2758), - [anon_sym_QMARK] = ACTIONS(2758), - [anon_sym_STAR_EQ] = ACTIONS(2758), - [anon_sym_SLASH_EQ] = ACTIONS(2758), - [anon_sym_PERCENT_EQ] = ACTIONS(2758), - [anon_sym_PLUS_EQ] = ACTIONS(2758), - [anon_sym_DASH_EQ] = ACTIONS(2758), - [anon_sym_LT_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_GT_EQ] = ACTIONS(2758), - [anon_sym_AMP_EQ] = ACTIONS(2758), - [anon_sym_CARET_EQ] = ACTIONS(2758), - [anon_sym_PIPE_EQ] = ACTIONS(2758), - [anon_sym_LT_EQ_GT] = ACTIONS(2758), - [anon_sym_or] = ACTIONS(2758), - [anon_sym_and] = ACTIONS(2758), - [anon_sym_bitor] = ACTIONS(2758), - [anon_sym_xor] = ACTIONS(2758), - [anon_sym_bitand] = ACTIONS(2758), - [anon_sym_not_eq] = ACTIONS(2758), - [anon_sym_DASH_DASH] = ACTIONS(2758), - [anon_sym_PLUS_PLUS] = ACTIONS(2758), - [anon_sym_asm] = ACTIONS(2758), - [anon_sym___asm__] = ACTIONS(2758), - [anon_sym___asm] = ACTIONS(2768), - [anon_sym_DOT] = ACTIONS(2768), - [anon_sym_DOT_STAR] = ACTIONS(2758), - [anon_sym_DASH_GT] = ACTIONS(2768), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2758), - [anon_sym_override] = ACTIONS(2758), - [anon_sym_noexcept] = ACTIONS(2758), - [anon_sym_throw] = ACTIONS(2758), - [anon_sym_requires] = ACTIONS(2758), - [anon_sym_DASH_GT_STAR] = ACTIONS(2758), + [STATE(2378)] = { + [sym_type_qualifier] = STATE(2307), + [sym_alignas_qualifier] = STATE(2423), + [aux_sym__type_definition_type_repeat1] = STATE(2307), + [aux_sym_sized_type_specifier_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(7952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), + [anon_sym_COMMA] = ACTIONS(7205), + [anon_sym_LPAREN2] = ACTIONS(7205), + [anon_sym_DASH] = ACTIONS(7207), + [anon_sym_PLUS] = ACTIONS(7207), + [anon_sym_STAR] = ACTIONS(7207), + [anon_sym_SLASH] = ACTIONS(7207), + [anon_sym_PERCENT] = ACTIONS(7207), + [anon_sym_PIPE_PIPE] = ACTIONS(7205), + [anon_sym_AMP_AMP] = ACTIONS(7205), + [anon_sym_PIPE] = ACTIONS(7207), + [anon_sym_CARET] = ACTIONS(7207), + [anon_sym_AMP] = ACTIONS(7207), + [anon_sym_EQ_EQ] = ACTIONS(7205), + [anon_sym_BANG_EQ] = ACTIONS(7205), + [anon_sym_GT] = ACTIONS(7207), + [anon_sym_GT_EQ] = ACTIONS(7207), + [anon_sym_LT_EQ] = ACTIONS(7207), + [anon_sym_LT] = ACTIONS(7207), + [anon_sym_LT_LT] = ACTIONS(7207), + [anon_sym_GT_GT] = ACTIONS(7207), + [anon_sym___extension__] = ACTIONS(7154), + [anon_sym___attribute__] = ACTIONS(7207), + [anon_sym___attribute] = ACTIONS(7207), + [anon_sym_LBRACE] = ACTIONS(7205), + [anon_sym_signed] = ACTIONS(7957), + [anon_sym_unsigned] = ACTIONS(7957), + [anon_sym_long] = ACTIONS(7957), + [anon_sym_short] = ACTIONS(7957), + [anon_sym_LBRACK] = ACTIONS(7205), + [anon_sym_EQ] = ACTIONS(7207), + [anon_sym_const] = ACTIONS(7154), + [anon_sym_constexpr] = ACTIONS(7154), + [anon_sym_volatile] = ACTIONS(7154), + [anon_sym_restrict] = ACTIONS(7154), + [anon_sym___restrict__] = ACTIONS(7154), + [anon_sym__Atomic] = ACTIONS(7154), + [anon_sym__Noreturn] = ACTIONS(7154), + [anon_sym_noreturn] = ACTIONS(7154), + [anon_sym__Nonnull] = ACTIONS(7154), + [anon_sym_mutable] = ACTIONS(7154), + [anon_sym_constinit] = ACTIONS(7154), + [anon_sym_consteval] = ACTIONS(7154), + [anon_sym_alignas] = ACTIONS(8138), + [anon_sym__Alignas] = ACTIONS(8138), + [sym_primitive_type] = ACTIONS(7962), + [anon_sym_QMARK] = ACTIONS(7205), + [anon_sym_STAR_EQ] = ACTIONS(7205), + [anon_sym_SLASH_EQ] = ACTIONS(7205), + [anon_sym_PERCENT_EQ] = ACTIONS(7205), + [anon_sym_PLUS_EQ] = ACTIONS(7205), + [anon_sym_DASH_EQ] = ACTIONS(7205), + [anon_sym_LT_LT_EQ] = ACTIONS(7205), + [anon_sym_GT_GT_EQ] = ACTIONS(7207), + [anon_sym_AMP_EQ] = ACTIONS(7205), + [anon_sym_CARET_EQ] = ACTIONS(7205), + [anon_sym_PIPE_EQ] = ACTIONS(7205), + [anon_sym_and_eq] = ACTIONS(7207), + [anon_sym_or_eq] = ACTIONS(7207), + [anon_sym_xor_eq] = ACTIONS(7207), + [anon_sym_LT_EQ_GT] = ACTIONS(7205), + [anon_sym_or] = ACTIONS(7207), + [anon_sym_and] = ACTIONS(7207), + [anon_sym_bitor] = ACTIONS(7207), + [anon_sym_xor] = ACTIONS(7207), + [anon_sym_bitand] = ACTIONS(7207), + [anon_sym_not_eq] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7205), + [anon_sym_PLUS_PLUS] = ACTIONS(7205), + [anon_sym_DOT] = ACTIONS(7207), + [anon_sym_DOT_STAR] = ACTIONS(7205), + [anon_sym_DASH_GT] = ACTIONS(7205), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7205), }, - [STATE(2499)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2402), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6798), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_signed] = ACTIONS(7912), - [anon_sym_unsigned] = ACTIONS(7912), - [anon_sym_long] = ACTIONS(7912), - [anon_sym_short] = ACTIONS(7912), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6798), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6800), - [anon_sym_override] = ACTIONS(6800), - [anon_sym_GT2] = ACTIONS(6800), - [anon_sym_requires] = ACTIONS(6800), + [STATE(2379)] = { + [sym__abstract_declarator] = STATE(4797), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2006), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1979), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), + [anon_sym_COMMA] = ACTIONS(7351), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_PLUS] = ACTIONS(7349), + [anon_sym_STAR] = ACTIONS(7162), + [anon_sym_SLASH] = ACTIONS(7349), + [anon_sym_PERCENT] = ACTIONS(7349), + [anon_sym_PIPE_PIPE] = ACTIONS(7351), + [anon_sym_AMP_AMP] = ACTIONS(7164), + [anon_sym_PIPE] = ACTIONS(7349), + [anon_sym_CARET] = ACTIONS(7349), + [anon_sym_AMP] = ACTIONS(7166), + [anon_sym_EQ_EQ] = ACTIONS(7351), + [anon_sym_BANG_EQ] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7349), + [anon_sym_GT_EQ] = ACTIONS(7351), + [anon_sym_LT_EQ] = ACTIONS(7349), + [anon_sym_LT] = ACTIONS(7349), + [anon_sym_LT_LT] = ACTIONS(7349), + [anon_sym_GT_GT] = ACTIONS(7349), + [anon_sym_SEMI] = ACTIONS(7351), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym___attribute__] = ACTIONS(7351), + [anon_sym___attribute] = ACTIONS(7349), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7349), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(7351), + [anon_sym_STAR_EQ] = ACTIONS(7351), + [anon_sym_SLASH_EQ] = ACTIONS(7351), + [anon_sym_PERCENT_EQ] = ACTIONS(7351), + [anon_sym_PLUS_EQ] = ACTIONS(7351), + [anon_sym_DASH_EQ] = ACTIONS(7351), + [anon_sym_LT_LT_EQ] = ACTIONS(7351), + [anon_sym_GT_GT_EQ] = ACTIONS(7351), + [anon_sym_AMP_EQ] = ACTIONS(7351), + [anon_sym_CARET_EQ] = ACTIONS(7351), + [anon_sym_PIPE_EQ] = ACTIONS(7351), + [anon_sym_and_eq] = ACTIONS(7351), + [anon_sym_or_eq] = ACTIONS(7351), + [anon_sym_xor_eq] = ACTIONS(7351), + [anon_sym_LT_EQ_GT] = ACTIONS(7351), + [anon_sym_or] = ACTIONS(7349), + [anon_sym_and] = ACTIONS(7349), + [anon_sym_bitor] = ACTIONS(7351), + [anon_sym_xor] = ACTIONS(7349), + [anon_sym_bitand] = ACTIONS(7351), + [anon_sym_not_eq] = ACTIONS(7351), + [anon_sym_DASH_DASH] = ACTIONS(7351), + [anon_sym_PLUS_PLUS] = ACTIONS(7351), + [anon_sym_DOT] = ACTIONS(7349), + [anon_sym_DOT_STAR] = ACTIONS(7351), + [anon_sym_DASH_GT] = ACTIONS(7351), + [sym_comment] = ACTIONS(3), }, - [STATE(2500)] = { - [sym_identifier] = ACTIONS(6746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8140), - [anon_sym_COMMA] = ACTIONS(8140), - [anon_sym_LPAREN2] = ACTIONS(8142), - [anon_sym_TILDE] = ACTIONS(6751), - [anon_sym_DASH] = ACTIONS(8145), - [anon_sym_PLUS] = ACTIONS(8145), - [anon_sym_STAR] = ACTIONS(8142), - [anon_sym_SLASH] = ACTIONS(8145), - [anon_sym_PERCENT] = ACTIONS(8140), - [anon_sym_PIPE_PIPE] = ACTIONS(8140), - [anon_sym_AMP_AMP] = ACTIONS(8142), - [anon_sym_PIPE] = ACTIONS(8145), - [anon_sym_CARET] = ACTIONS(8140), - [anon_sym_AMP] = ACTIONS(8147), - [anon_sym_EQ_EQ] = ACTIONS(8140), - [anon_sym_BANG_EQ] = ACTIONS(8140), - [anon_sym_GT] = ACTIONS(8145), - [anon_sym_GT_EQ] = ACTIONS(8140), - [anon_sym_LT_EQ] = ACTIONS(8145), - [anon_sym_LT] = ACTIONS(8145), - [anon_sym_LT_LT] = ACTIONS(8140), - [anon_sym_GT_GT] = ACTIONS(8140), - [anon_sym_SEMI] = ACTIONS(8140), - [anon_sym___extension__] = ACTIONS(6746), - [anon_sym_virtual] = ACTIONS(6746), - [anon_sym_extern] = ACTIONS(6746), - [anon_sym___attribute__] = ACTIONS(6746), - [anon_sym___attribute] = ACTIONS(6746), - [anon_sym_COLON_COLON] = ACTIONS(8142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6751), - [anon_sym___declspec] = ACTIONS(6746), - [anon_sym___based] = ACTIONS(6746), - [anon_sym_RBRACE] = ACTIONS(8140), - [anon_sym_LBRACK] = ACTIONS(8147), - [anon_sym_static] = ACTIONS(6746), - [anon_sym_register] = ACTIONS(6746), - [anon_sym_inline] = ACTIONS(6746), - [anon_sym___inline] = ACTIONS(6746), - [anon_sym___inline__] = ACTIONS(6746), - [anon_sym___forceinline] = ACTIONS(6746), - [anon_sym_thread_local] = ACTIONS(6746), - [anon_sym___thread] = ACTIONS(6746), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6746), - [anon_sym_volatile] = ACTIONS(6746), - [anon_sym_restrict] = ACTIONS(6746), - [anon_sym___restrict__] = ACTIONS(6746), - [anon_sym__Atomic] = ACTIONS(6746), - [anon_sym__Noreturn] = ACTIONS(6746), - [anon_sym_noreturn] = ACTIONS(6746), - [anon_sym__Nonnull] = ACTIONS(6746), - [anon_sym_mutable] = ACTIONS(6746), - [anon_sym_constinit] = ACTIONS(6746), - [anon_sym_consteval] = ACTIONS(6746), - [anon_sym_alignas] = ACTIONS(6746), - [anon_sym__Alignas] = ACTIONS(6746), - [anon_sym_QMARK] = ACTIONS(8140), - [anon_sym_LT_EQ_GT] = ACTIONS(8140), - [anon_sym_or] = ACTIONS(8145), - [anon_sym_and] = ACTIONS(8145), - [anon_sym_bitor] = ACTIONS(8145), - [anon_sym_xor] = ACTIONS(8145), - [anon_sym_bitand] = ACTIONS(8145), - [anon_sym_not_eq] = ACTIONS(8145), - [anon_sym_DASH_DASH] = ACTIONS(8140), - [anon_sym_PLUS_PLUS] = ACTIONS(8140), - [anon_sym_DOT] = ACTIONS(8145), - [anon_sym_DOT_STAR] = ACTIONS(8140), - [anon_sym_DASH_GT] = ACTIONS(8140), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(6746), - [anon_sym_template] = ACTIONS(6746), - [anon_sym_operator] = ACTIONS(6746), - [anon_sym_LBRACK_COLON] = ACTIONS(6751), + [STATE(2380)] = { + [sym__abstract_declarator] = STATE(4798), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2382), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1979), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(7162), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(7164), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(7166), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym_SEMI] = ACTIONS(7343), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym___attribute__] = ACTIONS(7343), + [anon_sym___attribute] = ACTIONS(7341), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7341), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_STAR_EQ] = ACTIONS(7343), + [anon_sym_SLASH_EQ] = ACTIONS(7343), + [anon_sym_PERCENT_EQ] = ACTIONS(7343), + [anon_sym_PLUS_EQ] = ACTIONS(7343), + [anon_sym_DASH_EQ] = ACTIONS(7343), + [anon_sym_LT_LT_EQ] = ACTIONS(7343), + [anon_sym_GT_GT_EQ] = ACTIONS(7343), + [anon_sym_AMP_EQ] = ACTIONS(7343), + [anon_sym_CARET_EQ] = ACTIONS(7343), + [anon_sym_PIPE_EQ] = ACTIONS(7343), + [anon_sym_and_eq] = ACTIONS(7343), + [anon_sym_or_eq] = ACTIONS(7343), + [anon_sym_xor_eq] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7343), + [sym_comment] = ACTIONS(3), }, - [STATE(2501)] = { - [sym_identifier] = ACTIONS(6716), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), - [anon_sym_COMMA] = ACTIONS(6718), - [aux_sym_preproc_if_token2] = ACTIONS(6718), - [aux_sym_preproc_else_token1] = ACTIONS(6718), - [aux_sym_preproc_elif_token1] = ACTIONS(6716), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6718), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6718), - [anon_sym_LPAREN2] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6716), - [anon_sym_PLUS] = ACTIONS(6716), - [anon_sym_STAR] = ACTIONS(6716), - [anon_sym_SLASH] = ACTIONS(6716), - [anon_sym_PERCENT] = ACTIONS(6716), - [anon_sym_PIPE_PIPE] = ACTIONS(6718), - [anon_sym_AMP_AMP] = ACTIONS(6718), - [anon_sym_PIPE] = ACTIONS(6716), - [anon_sym_CARET] = ACTIONS(6716), - [anon_sym_AMP] = ACTIONS(6716), - [anon_sym_EQ_EQ] = ACTIONS(6718), - [anon_sym_BANG_EQ] = ACTIONS(6718), - [anon_sym_GT] = ACTIONS(6716), - [anon_sym_GT_EQ] = ACTIONS(6718), - [anon_sym_LT_EQ] = ACTIONS(6716), - [anon_sym_LT] = ACTIONS(6716), - [anon_sym_LT_LT] = ACTIONS(6716), - [anon_sym_GT_GT] = ACTIONS(6716), - [anon_sym___extension__] = ACTIONS(6716), - [anon_sym_LBRACK] = ACTIONS(6718), - [anon_sym_RBRACK] = ACTIONS(6718), - [anon_sym_EQ] = ACTIONS(6716), - [anon_sym_const] = ACTIONS(6716), - [anon_sym_constexpr] = ACTIONS(6716), - [anon_sym_volatile] = ACTIONS(6716), - [anon_sym_restrict] = ACTIONS(6716), - [anon_sym___restrict__] = ACTIONS(6716), - [anon_sym__Atomic] = ACTIONS(6716), - [anon_sym__Noreturn] = ACTIONS(6716), - [anon_sym_noreturn] = ACTIONS(6716), - [anon_sym__Nonnull] = ACTIONS(6716), - [anon_sym_mutable] = ACTIONS(6716), - [anon_sym_constinit] = ACTIONS(6716), - [anon_sym_consteval] = ACTIONS(6716), - [anon_sym_alignas] = ACTIONS(6716), - [anon_sym__Alignas] = ACTIONS(6716), - [anon_sym_QMARK] = ACTIONS(6718), - [anon_sym_STAR_EQ] = ACTIONS(6718), - [anon_sym_SLASH_EQ] = ACTIONS(6718), - [anon_sym_PERCENT_EQ] = ACTIONS(6718), - [anon_sym_PLUS_EQ] = ACTIONS(6718), - [anon_sym_DASH_EQ] = ACTIONS(6718), - [anon_sym_LT_LT_EQ] = ACTIONS(6718), - [anon_sym_GT_GT_EQ] = ACTIONS(6718), - [anon_sym_AMP_EQ] = ACTIONS(6718), - [anon_sym_CARET_EQ] = ACTIONS(6718), - [anon_sym_PIPE_EQ] = ACTIONS(6718), - [anon_sym_and_eq] = ACTIONS(6716), - [anon_sym_or_eq] = ACTIONS(6716), - [anon_sym_xor_eq] = ACTIONS(6716), - [anon_sym_LT_EQ_GT] = ACTIONS(6718), - [anon_sym_or] = ACTIONS(6716), - [anon_sym_and] = ACTIONS(6716), - [anon_sym_bitor] = ACTIONS(6716), - [anon_sym_xor] = ACTIONS(6716), - [anon_sym_bitand] = ACTIONS(6716), - [anon_sym_not_eq] = ACTIONS(6716), - [anon_sym_DASH_DASH] = ACTIONS(6718), - [anon_sym_PLUS_PLUS] = ACTIONS(6718), - [anon_sym_DOT] = ACTIONS(6716), - [anon_sym_DOT_STAR] = ACTIONS(6718), - [anon_sym_DASH_GT] = ACTIONS(6718), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6716), - [anon_sym_override] = ACTIONS(6716), - [anon_sym_requires] = ACTIONS(6716), + [STATE(2381)] = { + [sym__abstract_declarator] = STATE(4807), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2006), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1979), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(7162), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(7164), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(7166), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym_SEMI] = ACTIONS(6823), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym___attribute__] = ACTIONS(6823), + [anon_sym___attribute] = ACTIONS(6821), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6823), + [anon_sym_or_eq] = ACTIONS(6823), + [anon_sym_xor_eq] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), }, - [STATE(2502)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7410), - [anon_sym_COMMA] = ACTIONS(7410), - [anon_sym_RPAREN] = ACTIONS(7410), - [anon_sym_LPAREN2] = ACTIONS(7410), - [anon_sym_DASH] = ACTIONS(7408), - [anon_sym_PLUS] = ACTIONS(7408), - [anon_sym_STAR] = ACTIONS(7408), - [anon_sym_SLASH] = ACTIONS(7408), - [anon_sym_PERCENT] = ACTIONS(7408), - [anon_sym_PIPE_PIPE] = ACTIONS(7410), - [anon_sym_AMP_AMP] = ACTIONS(7410), - [anon_sym_PIPE] = ACTIONS(7408), - [anon_sym_CARET] = ACTIONS(7408), - [anon_sym_AMP] = ACTIONS(7408), - [anon_sym_EQ_EQ] = ACTIONS(7410), - [anon_sym_BANG_EQ] = ACTIONS(7410), - [anon_sym_GT] = ACTIONS(7408), - [anon_sym_GT_EQ] = ACTIONS(7410), - [anon_sym_LT_EQ] = ACTIONS(7408), - [anon_sym_LT] = ACTIONS(7408), - [anon_sym_LT_LT] = ACTIONS(7408), - [anon_sym_GT_GT] = ACTIONS(7408), - [anon_sym___extension__] = ACTIONS(7410), - [anon_sym___attribute__] = ACTIONS(7410), - [anon_sym___attribute] = ACTIONS(7408), - [anon_sym_LBRACE] = ACTIONS(7410), - [anon_sym_signed] = ACTIONS(8150), - [anon_sym_unsigned] = ACTIONS(8150), - [anon_sym_long] = ACTIONS(8150), - [anon_sym_short] = ACTIONS(8150), - [anon_sym_LBRACK] = ACTIONS(7410), - [anon_sym_EQ] = ACTIONS(7408), - [anon_sym_const] = ACTIONS(7408), - [anon_sym_constexpr] = ACTIONS(7410), - [anon_sym_volatile] = ACTIONS(7410), - [anon_sym_restrict] = ACTIONS(7410), - [anon_sym___restrict__] = ACTIONS(7410), - [anon_sym__Atomic] = ACTIONS(7410), - [anon_sym__Noreturn] = ACTIONS(7410), - [anon_sym_noreturn] = ACTIONS(7410), - [anon_sym__Nonnull] = ACTIONS(7410), - [anon_sym_mutable] = ACTIONS(7410), - [anon_sym_constinit] = ACTIONS(7410), - [anon_sym_consteval] = ACTIONS(7410), - [anon_sym_alignas] = ACTIONS(7410), - [anon_sym__Alignas] = ACTIONS(7410), - [anon_sym_QMARK] = ACTIONS(7410), - [anon_sym_STAR_EQ] = ACTIONS(7410), - [anon_sym_SLASH_EQ] = ACTIONS(7410), - [anon_sym_PERCENT_EQ] = ACTIONS(7410), - [anon_sym_PLUS_EQ] = ACTIONS(7410), - [anon_sym_DASH_EQ] = ACTIONS(7410), - [anon_sym_LT_LT_EQ] = ACTIONS(7410), - [anon_sym_GT_GT_EQ] = ACTIONS(7410), - [anon_sym_AMP_EQ] = ACTIONS(7410), - [anon_sym_CARET_EQ] = ACTIONS(7410), - [anon_sym_PIPE_EQ] = ACTIONS(7410), - [anon_sym_LT_EQ_GT] = ACTIONS(7410), - [anon_sym_or] = ACTIONS(7410), - [anon_sym_and] = ACTIONS(7410), - [anon_sym_bitor] = ACTIONS(7410), - [anon_sym_xor] = ACTIONS(7410), - [anon_sym_bitand] = ACTIONS(7410), - [anon_sym_not_eq] = ACTIONS(7410), - [anon_sym_DASH_DASH] = ACTIONS(7410), - [anon_sym_PLUS_PLUS] = ACTIONS(7410), - [anon_sym_DOT] = ACTIONS(7408), - [anon_sym_DOT_STAR] = ACTIONS(7410), - [anon_sym_DASH_GT] = ACTIONS(7408), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7410), - [anon_sym_override] = ACTIONS(7410), - [anon_sym_requires] = ACTIONS(7410), - [anon_sym_DASH_GT_STAR] = ACTIONS(7410), + [STATE(2382)] = { + [sym__abstract_declarator] = STATE(4801), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2006), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1979), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), + [anon_sym_COMMA] = ACTIONS(7355), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7353), + [anon_sym_PLUS] = ACTIONS(7353), + [anon_sym_STAR] = ACTIONS(7162), + [anon_sym_SLASH] = ACTIONS(7353), + [anon_sym_PERCENT] = ACTIONS(7353), + [anon_sym_PIPE_PIPE] = ACTIONS(7355), + [anon_sym_AMP_AMP] = ACTIONS(7164), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_CARET] = ACTIONS(7353), + [anon_sym_AMP] = ACTIONS(7166), + [anon_sym_EQ_EQ] = ACTIONS(7355), + [anon_sym_BANG_EQ] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_EQ] = ACTIONS(7355), + [anon_sym_LT_EQ] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_LT_LT] = ACTIONS(7353), + [anon_sym_GT_GT] = ACTIONS(7353), + [anon_sym_SEMI] = ACTIONS(7355), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym___attribute__] = ACTIONS(7355), + [anon_sym___attribute] = ACTIONS(7353), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7353), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(7355), + [anon_sym_STAR_EQ] = ACTIONS(7355), + [anon_sym_SLASH_EQ] = ACTIONS(7355), + [anon_sym_PERCENT_EQ] = ACTIONS(7355), + [anon_sym_PLUS_EQ] = ACTIONS(7355), + [anon_sym_DASH_EQ] = ACTIONS(7355), + [anon_sym_LT_LT_EQ] = ACTIONS(7355), + [anon_sym_GT_GT_EQ] = ACTIONS(7355), + [anon_sym_AMP_EQ] = ACTIONS(7355), + [anon_sym_CARET_EQ] = ACTIONS(7355), + [anon_sym_PIPE_EQ] = ACTIONS(7355), + [anon_sym_and_eq] = ACTIONS(7355), + [anon_sym_or_eq] = ACTIONS(7355), + [anon_sym_xor_eq] = ACTIONS(7355), + [anon_sym_LT_EQ_GT] = ACTIONS(7355), + [anon_sym_or] = ACTIONS(7353), + [anon_sym_and] = ACTIONS(7353), + [anon_sym_bitor] = ACTIONS(7355), + [anon_sym_xor] = ACTIONS(7353), + [anon_sym_bitand] = ACTIONS(7355), + [anon_sym_not_eq] = ACTIONS(7355), + [anon_sym_DASH_DASH] = ACTIONS(7355), + [anon_sym_PLUS_PLUS] = ACTIONS(7355), + [anon_sym_DOT] = ACTIONS(7353), + [anon_sym_DOT_STAR] = ACTIONS(7355), + [anon_sym_DASH_GT] = ACTIONS(7355), + [sym_comment] = ACTIONS(3), }, - [STATE(2503)] = { - [sym__abstract_declarator] = STATE(5703), - [sym_abstract_parenthesized_declarator] = STATE(5581), - [sym_abstract_pointer_declarator] = STATE(5581), - [sym_abstract_function_declarator] = STATE(5581), - [sym_abstract_array_declarator] = STATE(5581), - [sym_type_qualifier] = STATE(2277), - [sym_alignas_qualifier] = STATE(2432), - [sym_parameter_list] = STATE(1888), - [sym_abstract_reference_declarator] = STATE(5581), - [sym__function_declarator_seq] = STATE(5582), - [aux_sym__type_definition_type_repeat1] = STATE(2277), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), - [anon_sym_COMMA] = ACTIONS(6995), - [anon_sym_RPAREN] = ACTIONS(6995), - [anon_sym_LPAREN2] = ACTIONS(6927), - [anon_sym_DASH] = ACTIONS(6997), - [anon_sym_PLUS] = ACTIONS(6997), - [anon_sym_STAR] = ACTIONS(7319), - [anon_sym_SLASH] = ACTIONS(6997), - [anon_sym_PERCENT] = ACTIONS(6997), - [anon_sym_PIPE_PIPE] = ACTIONS(6995), - [anon_sym_AMP_AMP] = ACTIONS(7321), - [anon_sym_PIPE] = ACTIONS(6997), - [anon_sym_CARET] = ACTIONS(6997), - [anon_sym_AMP] = ACTIONS(7323), - [anon_sym_EQ_EQ] = ACTIONS(6995), - [anon_sym_BANG_EQ] = ACTIONS(6995), - [anon_sym_GT] = ACTIONS(6997), - [anon_sym_GT_EQ] = ACTIONS(6995), - [anon_sym_LT_EQ] = ACTIONS(6997), - [anon_sym_LT] = ACTIONS(6997), - [anon_sym_LT_LT] = ACTIONS(6997), - [anon_sym_GT_GT] = ACTIONS(6997), - [anon_sym___extension__] = ACTIONS(6935), - [anon_sym_LBRACK] = ACTIONS(6943), - [anon_sym_EQ] = ACTIONS(6997), - [anon_sym_const] = ACTIONS(6945), - [anon_sym_constexpr] = ACTIONS(6935), - [anon_sym_volatile] = ACTIONS(6935), - [anon_sym_restrict] = ACTIONS(6935), - [anon_sym___restrict__] = ACTIONS(6935), - [anon_sym__Atomic] = ACTIONS(6935), - [anon_sym__Noreturn] = ACTIONS(6935), - [anon_sym_noreturn] = ACTIONS(6935), - [anon_sym__Nonnull] = ACTIONS(6935), - [anon_sym_mutable] = ACTIONS(6935), - [anon_sym_constinit] = ACTIONS(6935), - [anon_sym_consteval] = ACTIONS(6935), - [anon_sym_alignas] = ACTIONS(6947), - [anon_sym__Alignas] = ACTIONS(6947), - [anon_sym_QMARK] = ACTIONS(6995), - [anon_sym_STAR_EQ] = ACTIONS(6995), - [anon_sym_SLASH_EQ] = ACTIONS(6995), - [anon_sym_PERCENT_EQ] = ACTIONS(6995), - [anon_sym_PLUS_EQ] = ACTIONS(6995), - [anon_sym_DASH_EQ] = ACTIONS(6995), - [anon_sym_LT_LT_EQ] = ACTIONS(6995), - [anon_sym_GT_GT_EQ] = ACTIONS(6995), - [anon_sym_AMP_EQ] = ACTIONS(6995), - [anon_sym_CARET_EQ] = ACTIONS(6995), - [anon_sym_PIPE_EQ] = ACTIONS(6995), - [anon_sym_LT_EQ_GT] = ACTIONS(6995), - [anon_sym_or] = ACTIONS(6995), - [anon_sym_and] = ACTIONS(6995), - [anon_sym_bitor] = ACTIONS(6995), - [anon_sym_xor] = ACTIONS(6995), - [anon_sym_bitand] = ACTIONS(6995), - [anon_sym_not_eq] = ACTIONS(6995), - [anon_sym_DASH_DASH] = ACTIONS(6995), - [anon_sym_PLUS_PLUS] = ACTIONS(6995), - [anon_sym_DOT] = ACTIONS(6997), - [anon_sym_DOT_STAR] = ACTIONS(6995), - [anon_sym_DASH_GT] = ACTIONS(6997), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6995), + [STATE(2383)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(6999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), + [anon_sym_COMMA] = ACTIONS(7525), + [anon_sym_LPAREN2] = ACTIONS(7525), + [anon_sym_DASH] = ACTIONS(7528), + [anon_sym_PLUS] = ACTIONS(7528), + [anon_sym_STAR] = ACTIONS(7528), + [anon_sym_SLASH] = ACTIONS(7528), + [anon_sym_PERCENT] = ACTIONS(7528), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_AMP_AMP] = ACTIONS(7525), + [anon_sym_PIPE] = ACTIONS(7528), + [anon_sym_CARET] = ACTIONS(7528), + [anon_sym_AMP] = ACTIONS(7528), + [anon_sym_EQ_EQ] = ACTIONS(7525), + [anon_sym_BANG_EQ] = ACTIONS(7525), + [anon_sym_GT] = ACTIONS(7528), + [anon_sym_GT_EQ] = ACTIONS(7528), + [anon_sym_LT_EQ] = ACTIONS(7528), + [anon_sym_LT] = ACTIONS(7528), + [anon_sym_LT_LT] = ACTIONS(7528), + [anon_sym_GT_GT] = ACTIONS(7528), + [anon_sym___extension__] = ACTIONS(7528), + [anon_sym___attribute__] = ACTIONS(7528), + [anon_sym___attribute] = ACTIONS(7528), + [anon_sym_LBRACE] = ACTIONS(7525), + [anon_sym_signed] = ACTIONS(8108), + [anon_sym_unsigned] = ACTIONS(8108), + [anon_sym_long] = ACTIONS(8108), + [anon_sym_short] = ACTIONS(8108), + [anon_sym_LBRACK] = ACTIONS(7525), + [anon_sym_EQ] = ACTIONS(7528), + [anon_sym_const] = ACTIONS(7528), + [anon_sym_constexpr] = ACTIONS(7528), + [anon_sym_volatile] = ACTIONS(7528), + [anon_sym_restrict] = ACTIONS(7528), + [anon_sym___restrict__] = ACTIONS(7528), + [anon_sym__Atomic] = ACTIONS(7528), + [anon_sym__Noreturn] = ACTIONS(7528), + [anon_sym_noreturn] = ACTIONS(7528), + [anon_sym__Nonnull] = ACTIONS(7528), + [anon_sym_mutable] = ACTIONS(7528), + [anon_sym_constinit] = ACTIONS(7528), + [anon_sym_consteval] = ACTIONS(7528), + [anon_sym_alignas] = ACTIONS(7528), + [anon_sym__Alignas] = ACTIONS(7528), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7525), + [anon_sym_STAR_EQ] = ACTIONS(7525), + [anon_sym_SLASH_EQ] = ACTIONS(7525), + [anon_sym_PERCENT_EQ] = ACTIONS(7525), + [anon_sym_PLUS_EQ] = ACTIONS(7525), + [anon_sym_DASH_EQ] = ACTIONS(7525), + [anon_sym_LT_LT_EQ] = ACTIONS(7525), + [anon_sym_GT_GT_EQ] = ACTIONS(7528), + [anon_sym_AMP_EQ] = ACTIONS(7525), + [anon_sym_CARET_EQ] = ACTIONS(7525), + [anon_sym_PIPE_EQ] = ACTIONS(7525), + [anon_sym_and_eq] = ACTIONS(7528), + [anon_sym_or_eq] = ACTIONS(7528), + [anon_sym_xor_eq] = ACTIONS(7528), + [anon_sym_LT_EQ_GT] = ACTIONS(7525), + [anon_sym_or] = ACTIONS(7528), + [anon_sym_and] = ACTIONS(7528), + [anon_sym_bitor] = ACTIONS(7528), + [anon_sym_xor] = ACTIONS(7528), + [anon_sym_bitand] = ACTIONS(7528), + [anon_sym_not_eq] = ACTIONS(7528), + [anon_sym_DASH_DASH] = ACTIONS(7525), + [anon_sym_PLUS_PLUS] = ACTIONS(7525), + [anon_sym_DOT] = ACTIONS(7528), + [anon_sym_DOT_STAR] = ACTIONS(7525), + [anon_sym_DASH_GT] = ACTIONS(7525), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7528), + [anon_sym_override] = ACTIONS(7528), + [anon_sym_GT2] = ACTIONS(7525), + [anon_sym_requires] = ACTIONS(7528), }, - [STATE(2504)] = { - [sym__abstract_declarator] = STATE(5705), - [sym_abstract_parenthesized_declarator] = STATE(5581), - [sym_abstract_pointer_declarator] = STATE(5581), - [sym_abstract_function_declarator] = STATE(5581), - [sym_abstract_array_declarator] = STATE(5581), - [sym_type_qualifier] = STATE(2508), - [sym_alignas_qualifier] = STATE(2432), - [sym_parameter_list] = STATE(1888), - [sym_abstract_reference_declarator] = STATE(5581), - [sym__function_declarator_seq] = STATE(5582), - [aux_sym__type_definition_type_repeat1] = STATE(2508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), - [anon_sym_COMMA] = ACTIONS(6999), - [anon_sym_RPAREN] = ACTIONS(6999), - [anon_sym_LPAREN2] = ACTIONS(6927), - [anon_sym_DASH] = ACTIONS(7001), - [anon_sym_PLUS] = ACTIONS(7001), - [anon_sym_STAR] = ACTIONS(7319), - [anon_sym_SLASH] = ACTIONS(7001), - [anon_sym_PERCENT] = ACTIONS(7001), - [anon_sym_PIPE_PIPE] = ACTIONS(6999), - [anon_sym_AMP_AMP] = ACTIONS(7321), - [anon_sym_PIPE] = ACTIONS(7001), - [anon_sym_CARET] = ACTIONS(7001), - [anon_sym_AMP] = ACTIONS(7323), - [anon_sym_EQ_EQ] = ACTIONS(6999), - [anon_sym_BANG_EQ] = ACTIONS(6999), - [anon_sym_GT] = ACTIONS(7001), - [anon_sym_GT_EQ] = ACTIONS(6999), - [anon_sym_LT_EQ] = ACTIONS(7001), - [anon_sym_LT] = ACTIONS(7001), - [anon_sym_LT_LT] = ACTIONS(7001), - [anon_sym_GT_GT] = ACTIONS(7001), - [anon_sym___extension__] = ACTIONS(6935), - [anon_sym_LBRACK] = ACTIONS(6943), - [anon_sym_EQ] = ACTIONS(7001), - [anon_sym_const] = ACTIONS(6945), - [anon_sym_constexpr] = ACTIONS(6935), - [anon_sym_volatile] = ACTIONS(6935), - [anon_sym_restrict] = ACTIONS(6935), - [anon_sym___restrict__] = ACTIONS(6935), - [anon_sym__Atomic] = ACTIONS(6935), - [anon_sym__Noreturn] = ACTIONS(6935), - [anon_sym_noreturn] = ACTIONS(6935), - [anon_sym__Nonnull] = ACTIONS(6935), - [anon_sym_mutable] = ACTIONS(6935), - [anon_sym_constinit] = ACTIONS(6935), - [anon_sym_consteval] = ACTIONS(6935), - [anon_sym_alignas] = ACTIONS(6947), - [anon_sym__Alignas] = ACTIONS(6947), - [anon_sym_QMARK] = ACTIONS(6999), - [anon_sym_STAR_EQ] = ACTIONS(6999), - [anon_sym_SLASH_EQ] = ACTIONS(6999), - [anon_sym_PERCENT_EQ] = ACTIONS(6999), - [anon_sym_PLUS_EQ] = ACTIONS(6999), - [anon_sym_DASH_EQ] = ACTIONS(6999), - [anon_sym_LT_LT_EQ] = ACTIONS(6999), - [anon_sym_GT_GT_EQ] = ACTIONS(6999), - [anon_sym_AMP_EQ] = ACTIONS(6999), - [anon_sym_CARET_EQ] = ACTIONS(6999), - [anon_sym_PIPE_EQ] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(6999), - [anon_sym_or] = ACTIONS(6999), - [anon_sym_and] = ACTIONS(6999), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(6999), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(6999), - [anon_sym_PLUS_PLUS] = ACTIONS(6999), - [anon_sym_DOT] = ACTIONS(7001), - [anon_sym_DOT_STAR] = ACTIONS(6999), - [anon_sym_DASH_GT] = ACTIONS(7001), + [STATE(2384)] = { + [sym__abstract_declarator] = STATE(4808), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_type_qualifier] = STATE(2006), + [sym_alignas_qualifier] = STATE(2047), + [sym_parameter_list] = STATE(1979), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [aux_sym__type_definition_type_repeat1] = STATE(2006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(7162), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7347), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(7164), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7347), + [anon_sym_AMP] = ACTIONS(7166), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7347), + [anon_sym_GT_GT] = ACTIONS(7347), + [anon_sym_SEMI] = ACTIONS(7345), + [anon_sym___extension__] = ACTIONS(6849), + [anon_sym___attribute__] = ACTIONS(7345), + [anon_sym___attribute] = ACTIONS(7347), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(7347), + [anon_sym_const] = ACTIONS(6855), + [anon_sym_constexpr] = ACTIONS(6849), + [anon_sym_volatile] = ACTIONS(6849), + [anon_sym_restrict] = ACTIONS(6849), + [anon_sym___restrict__] = ACTIONS(6849), + [anon_sym__Atomic] = ACTIONS(6849), + [anon_sym__Noreturn] = ACTIONS(6849), + [anon_sym_noreturn] = ACTIONS(6849), + [anon_sym__Nonnull] = ACTIONS(6849), + [anon_sym_mutable] = ACTIONS(6849), + [anon_sym_constinit] = ACTIONS(6849), + [anon_sym_consteval] = ACTIONS(6849), + [anon_sym_alignas] = ACTIONS(6857), + [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_STAR_EQ] = ACTIONS(7345), + [anon_sym_SLASH_EQ] = ACTIONS(7345), + [anon_sym_PERCENT_EQ] = ACTIONS(7345), + [anon_sym_PLUS_EQ] = ACTIONS(7345), + [anon_sym_DASH_EQ] = ACTIONS(7345), + [anon_sym_LT_LT_EQ] = ACTIONS(7345), + [anon_sym_GT_GT_EQ] = ACTIONS(7345), + [anon_sym_AMP_EQ] = ACTIONS(7345), + [anon_sym_CARET_EQ] = ACTIONS(7345), + [anon_sym_PIPE_EQ] = ACTIONS(7345), + [anon_sym_and_eq] = ACTIONS(7345), + [anon_sym_or_eq] = ACTIONS(7345), + [anon_sym_xor_eq] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7347), + [anon_sym_and] = ACTIONS(7347), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7347), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6999), }, - [STATE(2505)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2339), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7393), - [anon_sym_COMMA] = ACTIONS(7393), - [anon_sym_RPAREN] = ACTIONS(7393), - [anon_sym_LPAREN2] = ACTIONS(7393), - [anon_sym_DASH] = ACTIONS(7391), - [anon_sym_PLUS] = ACTIONS(7391), - [anon_sym_STAR] = ACTIONS(7391), - [anon_sym_SLASH] = ACTIONS(7391), - [anon_sym_PERCENT] = ACTIONS(7391), - [anon_sym_PIPE_PIPE] = ACTIONS(7393), - [anon_sym_AMP_AMP] = ACTIONS(7393), - [anon_sym_PIPE] = ACTIONS(7391), - [anon_sym_CARET] = ACTIONS(7391), - [anon_sym_AMP] = ACTIONS(7391), - [anon_sym_EQ_EQ] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7393), - [anon_sym_GT] = ACTIONS(7391), - [anon_sym_GT_EQ] = ACTIONS(7393), - [anon_sym_LT_EQ] = ACTIONS(7391), - [anon_sym_LT] = ACTIONS(7391), - [anon_sym_LT_LT] = ACTIONS(7391), - [anon_sym_GT_GT] = ACTIONS(7391), - [anon_sym___extension__] = ACTIONS(7393), - [anon_sym___attribute__] = ACTIONS(7393), - [anon_sym___attribute] = ACTIONS(7391), - [anon_sym_LBRACE] = ACTIONS(7393), - [anon_sym_signed] = ACTIONS(8135), - [anon_sym_unsigned] = ACTIONS(8135), - [anon_sym_long] = ACTIONS(8135), - [anon_sym_short] = ACTIONS(8135), - [anon_sym_LBRACK] = ACTIONS(7393), - [anon_sym_EQ] = ACTIONS(7391), - [anon_sym_const] = ACTIONS(7391), - [anon_sym_constexpr] = ACTIONS(7393), - [anon_sym_volatile] = ACTIONS(7393), - [anon_sym_restrict] = ACTIONS(7393), - [anon_sym___restrict__] = ACTIONS(7393), - [anon_sym__Atomic] = ACTIONS(7393), - [anon_sym__Noreturn] = ACTIONS(7393), - [anon_sym_noreturn] = ACTIONS(7393), - [anon_sym__Nonnull] = ACTIONS(7393), - [anon_sym_mutable] = ACTIONS(7393), - [anon_sym_constinit] = ACTIONS(7393), - [anon_sym_consteval] = ACTIONS(7393), - [anon_sym_alignas] = ACTIONS(7393), - [anon_sym__Alignas] = ACTIONS(7393), - [anon_sym_QMARK] = ACTIONS(7393), - [anon_sym_STAR_EQ] = ACTIONS(7393), - [anon_sym_SLASH_EQ] = ACTIONS(7393), - [anon_sym_PERCENT_EQ] = ACTIONS(7393), - [anon_sym_PLUS_EQ] = ACTIONS(7393), - [anon_sym_DASH_EQ] = ACTIONS(7393), - [anon_sym_LT_LT_EQ] = ACTIONS(7393), - [anon_sym_GT_GT_EQ] = ACTIONS(7393), - [anon_sym_AMP_EQ] = ACTIONS(7393), - [anon_sym_CARET_EQ] = ACTIONS(7393), - [anon_sym_PIPE_EQ] = ACTIONS(7393), - [anon_sym_LT_EQ_GT] = ACTIONS(7393), - [anon_sym_or] = ACTIONS(7393), - [anon_sym_and] = ACTIONS(7393), - [anon_sym_bitor] = ACTIONS(7393), - [anon_sym_xor] = ACTIONS(7393), - [anon_sym_bitand] = ACTIONS(7393), - [anon_sym_not_eq] = ACTIONS(7393), - [anon_sym_DASH_DASH] = ACTIONS(7393), - [anon_sym_PLUS_PLUS] = ACTIONS(7393), - [anon_sym_DOT] = ACTIONS(7391), - [anon_sym_DOT_STAR] = ACTIONS(7393), - [anon_sym_DASH_GT] = ACTIONS(7391), + [STATE(2385)] = { + [sym_type_qualifier] = STATE(2386), + [sym_alignas_qualifier] = STATE(2434), + [aux_sym__type_definition_type_repeat1] = STATE(2386), + [aux_sym_sized_type_specifier_repeat1] = STATE(2599), + [sym_identifier] = ACTIONS(7860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), + [anon_sym_COMMA] = ACTIONS(7249), + [anon_sym_LPAREN2] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7251), + [anon_sym_PLUS] = ACTIONS(7251), + [anon_sym_STAR] = ACTIONS(7251), + [anon_sym_SLASH] = ACTIONS(7251), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7249), + [anon_sym_PIPE] = ACTIONS(7251), + [anon_sym_CARET] = ACTIONS(7251), + [anon_sym_AMP] = ACTIONS(7251), + [anon_sym_EQ_EQ] = ACTIONS(7249), + [anon_sym_BANG_EQ] = ACTIONS(7249), + [anon_sym_GT] = ACTIONS(7251), + [anon_sym_GT_EQ] = ACTIONS(7249), + [anon_sym_LT_EQ] = ACTIONS(7251), + [anon_sym_LT] = ACTIONS(7251), + [anon_sym_LT_LT] = ACTIONS(7251), + [anon_sym_GT_GT] = ACTIONS(7251), + [anon_sym___extension__] = ACTIONS(8140), + [anon_sym___attribute__] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7251), + [anon_sym_LBRACE] = ACTIONS(7249), + [anon_sym_signed] = ACTIONS(8142), + [anon_sym_unsigned] = ACTIONS(8142), + [anon_sym_long] = ACTIONS(8142), + [anon_sym_short] = ACTIONS(8142), + [anon_sym_LBRACK] = ACTIONS(7249), + [anon_sym_RBRACK] = ACTIONS(7249), + [anon_sym_EQ] = ACTIONS(7251), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8140), + [anon_sym_volatile] = ACTIONS(8140), + [anon_sym_restrict] = ACTIONS(8140), + [anon_sym___restrict__] = ACTIONS(8140), + [anon_sym__Atomic] = ACTIONS(8140), + [anon_sym__Noreturn] = ACTIONS(8140), + [anon_sym_noreturn] = ACTIONS(8140), + [anon_sym__Nonnull] = ACTIONS(8140), + [anon_sym_mutable] = ACTIONS(8140), + [anon_sym_constinit] = ACTIONS(8140), + [anon_sym_consteval] = ACTIONS(8140), + [anon_sym_alignas] = ACTIONS(8144), + [anon_sym__Alignas] = ACTIONS(8144), + [sym_primitive_type] = ACTIONS(7332), + [anon_sym_QMARK] = ACTIONS(7249), + [anon_sym_STAR_EQ] = ACTIONS(7249), + [anon_sym_SLASH_EQ] = ACTIONS(7249), + [anon_sym_PERCENT_EQ] = ACTIONS(7249), + [anon_sym_PLUS_EQ] = ACTIONS(7249), + [anon_sym_DASH_EQ] = ACTIONS(7249), + [anon_sym_LT_LT_EQ] = ACTIONS(7249), + [anon_sym_GT_GT_EQ] = ACTIONS(7249), + [anon_sym_AMP_EQ] = ACTIONS(7249), + [anon_sym_CARET_EQ] = ACTIONS(7249), + [anon_sym_PIPE_EQ] = ACTIONS(7249), + [anon_sym_and_eq] = ACTIONS(7251), + [anon_sym_or_eq] = ACTIONS(7251), + [anon_sym_xor_eq] = ACTIONS(7251), + [anon_sym_LT_EQ_GT] = ACTIONS(7249), + [anon_sym_or] = ACTIONS(7251), + [anon_sym_and] = ACTIONS(7251), + [anon_sym_bitor] = ACTIONS(7251), + [anon_sym_xor] = ACTIONS(7251), + [anon_sym_bitand] = ACTIONS(7251), + [anon_sym_not_eq] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7249), + [anon_sym_PLUS_PLUS] = ACTIONS(7249), + [anon_sym_DOT] = ACTIONS(7251), + [anon_sym_DOT_STAR] = ACTIONS(7249), + [anon_sym_DASH_GT] = ACTIONS(7249), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7393), - [anon_sym_override] = ACTIONS(7393), - [anon_sym_requires] = ACTIONS(7393), - [anon_sym_DASH_GT_STAR] = ACTIONS(7393), - }, - [STATE(2506)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2511), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7404), - [anon_sym_COMMA] = ACTIONS(7404), - [anon_sym_RPAREN] = ACTIONS(7404), - [anon_sym_LPAREN2] = ACTIONS(7404), - [anon_sym_DASH] = ACTIONS(7402), - [anon_sym_PLUS] = ACTIONS(7402), - [anon_sym_STAR] = ACTIONS(7402), - [anon_sym_SLASH] = ACTIONS(7402), - [anon_sym_PERCENT] = ACTIONS(7402), - [anon_sym_PIPE_PIPE] = ACTIONS(7404), - [anon_sym_AMP_AMP] = ACTIONS(7404), - [anon_sym_PIPE] = ACTIONS(7402), - [anon_sym_CARET] = ACTIONS(7402), - [anon_sym_AMP] = ACTIONS(7402), - [anon_sym_EQ_EQ] = ACTIONS(7404), - [anon_sym_BANG_EQ] = ACTIONS(7404), - [anon_sym_GT] = ACTIONS(7402), - [anon_sym_GT_EQ] = ACTIONS(7404), - [anon_sym_LT_EQ] = ACTIONS(7402), - [anon_sym_LT] = ACTIONS(7402), - [anon_sym_LT_LT] = ACTIONS(7402), - [anon_sym_GT_GT] = ACTIONS(7402), - [anon_sym___extension__] = ACTIONS(7404), - [anon_sym___attribute__] = ACTIONS(7404), - [anon_sym___attribute] = ACTIONS(7402), - [anon_sym_LBRACE] = ACTIONS(7404), - [anon_sym_signed] = ACTIONS(8152), - [anon_sym_unsigned] = ACTIONS(8152), - [anon_sym_long] = ACTIONS(8152), - [anon_sym_short] = ACTIONS(8152), - [anon_sym_LBRACK] = ACTIONS(7404), - [anon_sym_EQ] = ACTIONS(7402), - [anon_sym_const] = ACTIONS(7402), - [anon_sym_constexpr] = ACTIONS(7404), - [anon_sym_volatile] = ACTIONS(7404), - [anon_sym_restrict] = ACTIONS(7404), - [anon_sym___restrict__] = ACTIONS(7404), - [anon_sym__Atomic] = ACTIONS(7404), - [anon_sym__Noreturn] = ACTIONS(7404), - [anon_sym_noreturn] = ACTIONS(7404), - [anon_sym__Nonnull] = ACTIONS(7404), - [anon_sym_mutable] = ACTIONS(7404), - [anon_sym_constinit] = ACTIONS(7404), - [anon_sym_consteval] = ACTIONS(7404), - [anon_sym_alignas] = ACTIONS(7404), - [anon_sym__Alignas] = ACTIONS(7404), - [anon_sym_QMARK] = ACTIONS(7404), - [anon_sym_STAR_EQ] = ACTIONS(7404), - [anon_sym_SLASH_EQ] = ACTIONS(7404), - [anon_sym_PERCENT_EQ] = ACTIONS(7404), - [anon_sym_PLUS_EQ] = ACTIONS(7404), - [anon_sym_DASH_EQ] = ACTIONS(7404), - [anon_sym_LT_LT_EQ] = ACTIONS(7404), - [anon_sym_GT_GT_EQ] = ACTIONS(7404), - [anon_sym_AMP_EQ] = ACTIONS(7404), - [anon_sym_CARET_EQ] = ACTIONS(7404), - [anon_sym_PIPE_EQ] = ACTIONS(7404), - [anon_sym_LT_EQ_GT] = ACTIONS(7404), - [anon_sym_or] = ACTIONS(7404), - [anon_sym_and] = ACTIONS(7404), - [anon_sym_bitor] = ACTIONS(7404), - [anon_sym_xor] = ACTIONS(7404), - [anon_sym_bitand] = ACTIONS(7404), - [anon_sym_not_eq] = ACTIONS(7404), - [anon_sym_DASH_DASH] = ACTIONS(7404), - [anon_sym_PLUS_PLUS] = ACTIONS(7404), - [anon_sym_DOT] = ACTIONS(7402), - [anon_sym_DOT_STAR] = ACTIONS(7404), - [anon_sym_DASH_GT] = ACTIONS(7402), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7404), - [anon_sym_override] = ACTIONS(7404), - [anon_sym_requires] = ACTIONS(7404), - [anon_sym_DASH_GT_STAR] = ACTIONS(7404), - }, - [STATE(2507)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2547), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), - [anon_sym_COMMA] = ACTIONS(7255), - [anon_sym_RPAREN] = ACTIONS(7255), - [anon_sym_LPAREN2] = ACTIONS(7255), - [anon_sym_DASH] = ACTIONS(7253), - [anon_sym_PLUS] = ACTIONS(7253), - [anon_sym_STAR] = ACTIONS(7253), - [anon_sym_SLASH] = ACTIONS(7253), - [anon_sym_PERCENT] = ACTIONS(7253), - [anon_sym_PIPE_PIPE] = ACTIONS(7255), - [anon_sym_AMP_AMP] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7253), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_EQ_EQ] = ACTIONS(7255), - [anon_sym_BANG_EQ] = ACTIONS(7255), - [anon_sym_GT] = ACTIONS(7253), - [anon_sym_GT_EQ] = ACTIONS(7255), - [anon_sym_LT_EQ] = ACTIONS(7253), - [anon_sym_LT] = ACTIONS(7253), - [anon_sym_LT_LT] = ACTIONS(7253), - [anon_sym_GT_GT] = ACTIONS(7253), - [anon_sym___extension__] = ACTIONS(7255), - [anon_sym___attribute__] = ACTIONS(7255), - [anon_sym___attribute] = ACTIONS(7253), - [anon_sym_LBRACE] = ACTIONS(7255), - [anon_sym_signed] = ACTIONS(8154), - [anon_sym_unsigned] = ACTIONS(8154), - [anon_sym_long] = ACTIONS(8154), - [anon_sym_short] = ACTIONS(8154), - [anon_sym_LBRACK] = ACTIONS(7255), - [anon_sym_EQ] = ACTIONS(7253), - [anon_sym_const] = ACTIONS(7253), - [anon_sym_constexpr] = ACTIONS(7255), - [anon_sym_volatile] = ACTIONS(7255), - [anon_sym_restrict] = ACTIONS(7255), - [anon_sym___restrict__] = ACTIONS(7255), - [anon_sym__Atomic] = ACTIONS(7255), - [anon_sym__Noreturn] = ACTIONS(7255), - [anon_sym_noreturn] = ACTIONS(7255), - [anon_sym__Nonnull] = ACTIONS(7255), - [anon_sym_mutable] = ACTIONS(7255), - [anon_sym_constinit] = ACTIONS(7255), - [anon_sym_consteval] = ACTIONS(7255), - [anon_sym_alignas] = ACTIONS(7255), - [anon_sym__Alignas] = ACTIONS(7255), - [anon_sym_QMARK] = ACTIONS(7255), - [anon_sym_STAR_EQ] = ACTIONS(7255), - [anon_sym_SLASH_EQ] = ACTIONS(7255), - [anon_sym_PERCENT_EQ] = ACTIONS(7255), - [anon_sym_PLUS_EQ] = ACTIONS(7255), - [anon_sym_DASH_EQ] = ACTIONS(7255), - [anon_sym_LT_LT_EQ] = ACTIONS(7255), - [anon_sym_GT_GT_EQ] = ACTIONS(7255), - [anon_sym_AMP_EQ] = ACTIONS(7255), - [anon_sym_CARET_EQ] = ACTIONS(7255), - [anon_sym_PIPE_EQ] = ACTIONS(7255), - [anon_sym_LT_EQ_GT] = ACTIONS(7255), - [anon_sym_or] = ACTIONS(7255), - [anon_sym_and] = ACTIONS(7255), - [anon_sym_bitor] = ACTIONS(7255), - [anon_sym_xor] = ACTIONS(7255), - [anon_sym_bitand] = ACTIONS(7255), - [anon_sym_not_eq] = ACTIONS(7255), - [anon_sym_DASH_DASH] = ACTIONS(7255), - [anon_sym_PLUS_PLUS] = ACTIONS(7255), - [anon_sym_DOT] = ACTIONS(7253), - [anon_sym_DOT_STAR] = ACTIONS(7255), - [anon_sym_DASH_GT] = ACTIONS(7253), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7255), - [anon_sym_override] = ACTIONS(7255), - [anon_sym_requires] = ACTIONS(7255), - [anon_sym_DASH_GT_STAR] = ACTIONS(7255), }, - [STATE(2508)] = { - [sym__abstract_declarator] = STATE(5776), - [sym_abstract_parenthesized_declarator] = STATE(5581), - [sym_abstract_pointer_declarator] = STATE(5581), - [sym_abstract_function_declarator] = STATE(5581), - [sym_abstract_array_declarator] = STATE(5581), - [sym_type_qualifier] = STATE(2277), - [sym_alignas_qualifier] = STATE(2432), - [sym_parameter_list] = STATE(1888), - [sym_abstract_reference_declarator] = STATE(5581), - [sym__function_declarator_seq] = STATE(5582), - [aux_sym__type_definition_type_repeat1] = STATE(2277), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), - [anon_sym_COMMA] = ACTIONS(7003), - [anon_sym_RPAREN] = ACTIONS(7003), - [anon_sym_LPAREN2] = ACTIONS(6927), - [anon_sym_DASH] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(7319), - [anon_sym_SLASH] = ACTIONS(7005), - [anon_sym_PERCENT] = ACTIONS(7005), - [anon_sym_PIPE_PIPE] = ACTIONS(7003), - [anon_sym_AMP_AMP] = ACTIONS(7321), - [anon_sym_PIPE] = ACTIONS(7005), - [anon_sym_CARET] = ACTIONS(7005), - [anon_sym_AMP] = ACTIONS(7323), - [anon_sym_EQ_EQ] = ACTIONS(7003), - [anon_sym_BANG_EQ] = ACTIONS(7003), - [anon_sym_GT] = ACTIONS(7005), - [anon_sym_GT_EQ] = ACTIONS(7003), - [anon_sym_LT_EQ] = ACTIONS(7005), - [anon_sym_LT] = ACTIONS(7005), - [anon_sym_LT_LT] = ACTIONS(7005), - [anon_sym_GT_GT] = ACTIONS(7005), - [anon_sym___extension__] = ACTIONS(6935), - [anon_sym_LBRACK] = ACTIONS(6943), - [anon_sym_EQ] = ACTIONS(7005), - [anon_sym_const] = ACTIONS(6945), - [anon_sym_constexpr] = ACTIONS(6935), - [anon_sym_volatile] = ACTIONS(6935), - [anon_sym_restrict] = ACTIONS(6935), - [anon_sym___restrict__] = ACTIONS(6935), - [anon_sym__Atomic] = ACTIONS(6935), - [anon_sym__Noreturn] = ACTIONS(6935), - [anon_sym_noreturn] = ACTIONS(6935), - [anon_sym__Nonnull] = ACTIONS(6935), - [anon_sym_mutable] = ACTIONS(6935), - [anon_sym_constinit] = ACTIONS(6935), - [anon_sym_consteval] = ACTIONS(6935), - [anon_sym_alignas] = ACTIONS(6947), - [anon_sym__Alignas] = ACTIONS(6947), - [anon_sym_QMARK] = ACTIONS(7003), - [anon_sym_STAR_EQ] = ACTIONS(7003), - [anon_sym_SLASH_EQ] = ACTIONS(7003), - [anon_sym_PERCENT_EQ] = ACTIONS(7003), - [anon_sym_PLUS_EQ] = ACTIONS(7003), - [anon_sym_DASH_EQ] = ACTIONS(7003), - [anon_sym_LT_LT_EQ] = ACTIONS(7003), - [anon_sym_GT_GT_EQ] = ACTIONS(7003), - [anon_sym_AMP_EQ] = ACTIONS(7003), - [anon_sym_CARET_EQ] = ACTIONS(7003), - [anon_sym_PIPE_EQ] = ACTIONS(7003), - [anon_sym_LT_EQ_GT] = ACTIONS(7003), - [anon_sym_or] = ACTIONS(7003), - [anon_sym_and] = ACTIONS(7003), - [anon_sym_bitor] = ACTIONS(7003), - [anon_sym_xor] = ACTIONS(7003), - [anon_sym_bitand] = ACTIONS(7003), - [anon_sym_not_eq] = ACTIONS(7003), - [anon_sym_DASH_DASH] = ACTIONS(7003), - [anon_sym_PLUS_PLUS] = ACTIONS(7003), - [anon_sym_DOT] = ACTIONS(7005), - [anon_sym_DOT_STAR] = ACTIONS(7003), - [anon_sym_DASH_GT] = ACTIONS(7005), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7003), + [STATE(2386)] = { + [sym_type_qualifier] = STATE(2305), + [sym_alignas_qualifier] = STATE(2434), + [aux_sym__type_definition_type_repeat1] = STATE(2305), + [aux_sym_sized_type_specifier_repeat1] = STATE(2217), + [sym_identifier] = ACTIONS(7852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), + [anon_sym_COMMA] = ACTIONS(7205), + [anon_sym_LPAREN2] = ACTIONS(7205), + [anon_sym_DASH] = ACTIONS(7207), + [anon_sym_PLUS] = ACTIONS(7207), + [anon_sym_STAR] = ACTIONS(7207), + [anon_sym_SLASH] = ACTIONS(7207), + [anon_sym_PERCENT] = ACTIONS(7207), + [anon_sym_PIPE_PIPE] = ACTIONS(7205), + [anon_sym_AMP_AMP] = ACTIONS(7205), + [anon_sym_PIPE] = ACTIONS(7207), + [anon_sym_CARET] = ACTIONS(7207), + [anon_sym_AMP] = ACTIONS(7207), + [anon_sym_EQ_EQ] = ACTIONS(7205), + [anon_sym_BANG_EQ] = ACTIONS(7205), + [anon_sym_GT] = ACTIONS(7207), + [anon_sym_GT_EQ] = ACTIONS(7205), + [anon_sym_LT_EQ] = ACTIONS(7207), + [anon_sym_LT] = ACTIONS(7207), + [anon_sym_LT_LT] = ACTIONS(7207), + [anon_sym_GT_GT] = ACTIONS(7207), + [anon_sym___extension__] = ACTIONS(8140), + [anon_sym___attribute__] = ACTIONS(7207), + [anon_sym___attribute] = ACTIONS(7207), + [anon_sym_LBRACE] = ACTIONS(7205), + [anon_sym_signed] = ACTIONS(7337), + [anon_sym_unsigned] = ACTIONS(7337), + [anon_sym_long] = ACTIONS(7337), + [anon_sym_short] = ACTIONS(7337), + [anon_sym_LBRACK] = ACTIONS(7205), + [anon_sym_RBRACK] = ACTIONS(7205), + [anon_sym_EQ] = ACTIONS(7207), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8140), + [anon_sym_volatile] = ACTIONS(8140), + [anon_sym_restrict] = ACTIONS(8140), + [anon_sym___restrict__] = ACTIONS(8140), + [anon_sym__Atomic] = ACTIONS(8140), + [anon_sym__Noreturn] = ACTIONS(8140), + [anon_sym_noreturn] = ACTIONS(8140), + [anon_sym__Nonnull] = ACTIONS(8140), + [anon_sym_mutable] = ACTIONS(8140), + [anon_sym_constinit] = ACTIONS(8140), + [anon_sym_consteval] = ACTIONS(8140), + [anon_sym_alignas] = ACTIONS(8144), + [anon_sym__Alignas] = ACTIONS(8144), + [sym_primitive_type] = ACTIONS(7339), + [anon_sym_QMARK] = ACTIONS(7205), + [anon_sym_STAR_EQ] = ACTIONS(7205), + [anon_sym_SLASH_EQ] = ACTIONS(7205), + [anon_sym_PERCENT_EQ] = ACTIONS(7205), + [anon_sym_PLUS_EQ] = ACTIONS(7205), + [anon_sym_DASH_EQ] = ACTIONS(7205), + [anon_sym_LT_LT_EQ] = ACTIONS(7205), + [anon_sym_GT_GT_EQ] = ACTIONS(7205), + [anon_sym_AMP_EQ] = ACTIONS(7205), + [anon_sym_CARET_EQ] = ACTIONS(7205), + [anon_sym_PIPE_EQ] = ACTIONS(7205), + [anon_sym_and_eq] = ACTIONS(7207), + [anon_sym_or_eq] = ACTIONS(7207), + [anon_sym_xor_eq] = ACTIONS(7207), + [anon_sym_LT_EQ_GT] = ACTIONS(7205), + [anon_sym_or] = ACTIONS(7207), + [anon_sym_and] = ACTIONS(7207), + [anon_sym_bitor] = ACTIONS(7207), + [anon_sym_xor] = ACTIONS(7207), + [anon_sym_bitand] = ACTIONS(7207), + [anon_sym_not_eq] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7205), + [anon_sym_PLUS_PLUS] = ACTIONS(7205), + [anon_sym_DOT] = ACTIONS(7207), + [anon_sym_DOT_STAR] = ACTIONS(7205), + [anon_sym_DASH_GT] = ACTIONS(7205), + [sym_comment] = ACTIONS(3), }, - [STATE(2509)] = { - [sym_decltype_auto] = STATE(2967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6798), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8156), - [anon_sym_decltype] = ACTIONS(6574), - [anon_sym_final] = ACTIONS(6800), - [anon_sym_override] = ACTIONS(6800), - [anon_sym_requires] = ACTIONS(6800), - [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + [STATE(2387)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2374), + [sym_identifier] = ACTIONS(6999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), + [anon_sym_COMMA] = ACTIONS(7525), + [anon_sym_LPAREN2] = ACTIONS(7525), + [anon_sym_DASH] = ACTIONS(7528), + [anon_sym_PLUS] = ACTIONS(7528), + [anon_sym_STAR] = ACTIONS(7528), + [anon_sym_SLASH] = ACTIONS(7528), + [anon_sym_PERCENT] = ACTIONS(7528), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_AMP_AMP] = ACTIONS(7525), + [anon_sym_PIPE] = ACTIONS(7528), + [anon_sym_CARET] = ACTIONS(7528), + [anon_sym_AMP] = ACTIONS(7528), + [anon_sym_EQ_EQ] = ACTIONS(7525), + [anon_sym_BANG_EQ] = ACTIONS(7525), + [anon_sym_GT] = ACTIONS(7528), + [anon_sym_GT_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7528), + [anon_sym_LT] = ACTIONS(7528), + [anon_sym_LT_LT] = ACTIONS(7528), + [anon_sym_GT_GT] = ACTIONS(7528), + [anon_sym___extension__] = ACTIONS(7528), + [anon_sym___attribute__] = ACTIONS(7528), + [anon_sym___attribute] = ACTIONS(7528), + [anon_sym_LBRACE] = ACTIONS(7525), + [anon_sym_signed] = ACTIONS(8127), + [anon_sym_unsigned] = ACTIONS(8127), + [anon_sym_long] = ACTIONS(8127), + [anon_sym_short] = ACTIONS(8127), + [anon_sym_LBRACK] = ACTIONS(7525), + [anon_sym_RBRACK] = ACTIONS(7525), + [anon_sym_EQ] = ACTIONS(7528), + [anon_sym_const] = ACTIONS(7528), + [anon_sym_constexpr] = ACTIONS(7528), + [anon_sym_volatile] = ACTIONS(7528), + [anon_sym_restrict] = ACTIONS(7528), + [anon_sym___restrict__] = ACTIONS(7528), + [anon_sym__Atomic] = ACTIONS(7528), + [anon_sym__Noreturn] = ACTIONS(7528), + [anon_sym_noreturn] = ACTIONS(7528), + [anon_sym__Nonnull] = ACTIONS(7528), + [anon_sym_mutable] = ACTIONS(7528), + [anon_sym_constinit] = ACTIONS(7528), + [anon_sym_consteval] = ACTIONS(7528), + [anon_sym_alignas] = ACTIONS(7528), + [anon_sym__Alignas] = ACTIONS(7528), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7525), + [anon_sym_STAR_EQ] = ACTIONS(7525), + [anon_sym_SLASH_EQ] = ACTIONS(7525), + [anon_sym_PERCENT_EQ] = ACTIONS(7525), + [anon_sym_PLUS_EQ] = ACTIONS(7525), + [anon_sym_DASH_EQ] = ACTIONS(7525), + [anon_sym_LT_LT_EQ] = ACTIONS(7525), + [anon_sym_GT_GT_EQ] = ACTIONS(7525), + [anon_sym_AMP_EQ] = ACTIONS(7525), + [anon_sym_CARET_EQ] = ACTIONS(7525), + [anon_sym_PIPE_EQ] = ACTIONS(7525), + [anon_sym_and_eq] = ACTIONS(7528), + [anon_sym_or_eq] = ACTIONS(7528), + [anon_sym_xor_eq] = ACTIONS(7528), + [anon_sym_LT_EQ_GT] = ACTIONS(7525), + [anon_sym_or] = ACTIONS(7528), + [anon_sym_and] = ACTIONS(7528), + [anon_sym_bitor] = ACTIONS(7528), + [anon_sym_xor] = ACTIONS(7528), + [anon_sym_bitand] = ACTIONS(7528), + [anon_sym_not_eq] = ACTIONS(7528), + [anon_sym_DASH_DASH] = ACTIONS(7525), + [anon_sym_PLUS_PLUS] = ACTIONS(7525), + [anon_sym_DOT] = ACTIONS(7528), + [anon_sym_DOT_STAR] = ACTIONS(7525), + [anon_sym_DASH_GT] = ACTIONS(7525), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7528), + [anon_sym_override] = ACTIONS(7528), + [anon_sym_requires] = ACTIONS(7528), }, - [STATE(2510)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6764), - [anon_sym_COMMA] = ACTIONS(6764), - [anon_sym_RPAREN] = ACTIONS(6764), - [anon_sym_LPAREN2] = ACTIONS(6764), - [anon_sym_DASH] = ACTIONS(6762), - [anon_sym_PLUS] = ACTIONS(6762), - [anon_sym_STAR] = ACTIONS(6762), - [anon_sym_SLASH] = ACTIONS(6762), - [anon_sym_PERCENT] = ACTIONS(6762), - [anon_sym_PIPE_PIPE] = ACTIONS(6764), - [anon_sym_AMP_AMP] = ACTIONS(6764), - [anon_sym_PIPE] = ACTIONS(6762), - [anon_sym_CARET] = ACTIONS(6762), - [anon_sym_AMP] = ACTIONS(6762), - [anon_sym_EQ_EQ] = ACTIONS(6764), - [anon_sym_BANG_EQ] = ACTIONS(6764), - [anon_sym_GT] = ACTIONS(6762), - [anon_sym_GT_EQ] = ACTIONS(6764), - [anon_sym_LT_EQ] = ACTIONS(6762), - [anon_sym_LT] = ACTIONS(6762), - [anon_sym_LT_LT] = ACTIONS(6762), - [anon_sym_GT_GT] = ACTIONS(6762), - [anon_sym___extension__] = ACTIONS(6764), - [anon_sym___attribute__] = ACTIONS(6764), - [anon_sym___attribute] = ACTIONS(6762), - [anon_sym_COLON] = ACTIONS(6762), - [anon_sym_COLON_COLON] = ACTIONS(6764), - [anon_sym_LBRACE] = ACTIONS(6764), - [anon_sym_LBRACK] = ACTIONS(6764), - [anon_sym_EQ] = ACTIONS(6762), - [anon_sym_const] = ACTIONS(6762), - [anon_sym_constexpr] = ACTIONS(6764), - [anon_sym_volatile] = ACTIONS(6764), - [anon_sym_restrict] = ACTIONS(6764), - [anon_sym___restrict__] = ACTIONS(6764), - [anon_sym__Atomic] = ACTIONS(6764), - [anon_sym__Noreturn] = ACTIONS(6764), - [anon_sym_noreturn] = ACTIONS(6764), - [anon_sym__Nonnull] = ACTIONS(6764), - [anon_sym_mutable] = ACTIONS(6764), - [anon_sym_constinit] = ACTIONS(6764), - [anon_sym_consteval] = ACTIONS(6764), - [anon_sym_alignas] = ACTIONS(6764), - [anon_sym__Alignas] = ACTIONS(6764), - [anon_sym_QMARK] = ACTIONS(6764), - [anon_sym_STAR_EQ] = ACTIONS(6764), - [anon_sym_SLASH_EQ] = ACTIONS(6764), - [anon_sym_PERCENT_EQ] = ACTIONS(6764), - [anon_sym_PLUS_EQ] = ACTIONS(6764), - [anon_sym_DASH_EQ] = ACTIONS(6764), - [anon_sym_LT_LT_EQ] = ACTIONS(6764), - [anon_sym_GT_GT_EQ] = ACTIONS(6764), - [anon_sym_AMP_EQ] = ACTIONS(6764), - [anon_sym_CARET_EQ] = ACTIONS(6764), - [anon_sym_PIPE_EQ] = ACTIONS(6764), - [anon_sym_and_eq] = ACTIONS(6764), - [anon_sym_or_eq] = ACTIONS(6764), - [anon_sym_xor_eq] = ACTIONS(6764), - [anon_sym_LT_EQ_GT] = ACTIONS(6764), - [anon_sym_or] = ACTIONS(6762), - [anon_sym_and] = ACTIONS(6762), - [anon_sym_bitor] = ACTIONS(6764), - [anon_sym_xor] = ACTIONS(6762), - [anon_sym_bitand] = ACTIONS(6764), - [anon_sym_not_eq] = ACTIONS(6764), - [anon_sym_DASH_DASH] = ACTIONS(6764), - [anon_sym_PLUS_PLUS] = ACTIONS(6764), - [anon_sym_DOT] = ACTIONS(6762), - [anon_sym_DOT_STAR] = ACTIONS(6764), - [anon_sym_DASH_GT] = ACTIONS(6762), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6764), - [anon_sym_override] = ACTIONS(6764), - [anon_sym_requires] = ACTIONS(6764), - [anon_sym_DASH_GT_STAR] = ACTIONS(6764), + [STATE(2388)] = { + [sym_attribute_specifier] = STATE(2388), + [aux_sym_type_definition_repeat1] = STATE(2388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6937), + [anon_sym_COMMA] = ACTIONS(6937), + [anon_sym_LPAREN2] = ACTIONS(6937), + [anon_sym_DASH] = ACTIONS(6935), + [anon_sym_PLUS] = ACTIONS(6935), + [anon_sym_STAR] = ACTIONS(6935), + [anon_sym_SLASH] = ACTIONS(6935), + [anon_sym_PERCENT] = ACTIONS(6935), + [anon_sym_PIPE_PIPE] = ACTIONS(6937), + [anon_sym_AMP_AMP] = ACTIONS(6937), + [anon_sym_PIPE] = ACTIONS(6935), + [anon_sym_CARET] = ACTIONS(6935), + [anon_sym_AMP] = ACTIONS(6935), + [anon_sym_EQ_EQ] = ACTIONS(6937), + [anon_sym_BANG_EQ] = ACTIONS(6937), + [anon_sym_GT] = ACTIONS(6935), + [anon_sym_GT_EQ] = ACTIONS(6937), + [anon_sym_LT_EQ] = ACTIONS(6935), + [anon_sym_LT] = ACTIONS(6935), + [anon_sym_LT_LT] = ACTIONS(6935), + [anon_sym_GT_GT] = ACTIONS(6935), + [anon_sym___extension__] = ACTIONS(6937), + [anon_sym___attribute__] = ACTIONS(8146), + [anon_sym___attribute] = ACTIONS(8149), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6937), + [anon_sym_LBRACK] = ACTIONS(6935), + [anon_sym_RBRACK] = ACTIONS(6937), + [anon_sym_EQ] = ACTIONS(6935), + [anon_sym_const] = ACTIONS(6935), + [anon_sym_constexpr] = ACTIONS(6937), + [anon_sym_volatile] = ACTIONS(6937), + [anon_sym_restrict] = ACTIONS(6937), + [anon_sym___restrict__] = ACTIONS(6937), + [anon_sym__Atomic] = ACTIONS(6937), + [anon_sym__Noreturn] = ACTIONS(6937), + [anon_sym_noreturn] = ACTIONS(6937), + [anon_sym__Nonnull] = ACTIONS(6937), + [anon_sym_mutable] = ACTIONS(6937), + [anon_sym_constinit] = ACTIONS(6937), + [anon_sym_consteval] = ACTIONS(6937), + [anon_sym_alignas] = ACTIONS(6937), + [anon_sym__Alignas] = ACTIONS(6937), + [anon_sym_QMARK] = ACTIONS(6937), + [anon_sym_STAR_EQ] = ACTIONS(6937), + [anon_sym_SLASH_EQ] = ACTIONS(6937), + [anon_sym_PERCENT_EQ] = ACTIONS(6937), + [anon_sym_PLUS_EQ] = ACTIONS(6937), + [anon_sym_DASH_EQ] = ACTIONS(6937), + [anon_sym_LT_LT_EQ] = ACTIONS(6937), + [anon_sym_GT_GT_EQ] = ACTIONS(6937), + [anon_sym_AMP_EQ] = ACTIONS(6937), + [anon_sym_CARET_EQ] = ACTIONS(6937), + [anon_sym_PIPE_EQ] = ACTIONS(6937), + [anon_sym_and_eq] = ACTIONS(6937), + [anon_sym_or_eq] = ACTIONS(6937), + [anon_sym_xor_eq] = ACTIONS(6937), + [anon_sym_LT_EQ_GT] = ACTIONS(6937), + [anon_sym_or] = ACTIONS(6935), + [anon_sym_and] = ACTIONS(6935), + [anon_sym_bitor] = ACTIONS(6937), + [anon_sym_xor] = ACTIONS(6935), + [anon_sym_bitand] = ACTIONS(6937), + [anon_sym_not_eq] = ACTIONS(6937), + [anon_sym_DASH_DASH] = ACTIONS(6937), + [anon_sym_PLUS_PLUS] = ACTIONS(6937), + [anon_sym_asm] = ACTIONS(6937), + [anon_sym___asm__] = ACTIONS(6937), + [anon_sym___asm] = ACTIONS(6935), + [anon_sym_DOT] = ACTIONS(6935), + [anon_sym_DOT_STAR] = ACTIONS(6937), + [anon_sym_DASH_GT] = ACTIONS(6937), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6937), + [anon_sym_override] = ACTIONS(6937), + [anon_sym_noexcept] = ACTIONS(6937), + [anon_sym_throw] = ACTIONS(6937), + [anon_sym_requires] = ACTIONS(6937), }, - [STATE(2511)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2339), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7416), - [anon_sym_COMMA] = ACTIONS(7416), - [anon_sym_RPAREN] = ACTIONS(7416), - [anon_sym_LPAREN2] = ACTIONS(7416), - [anon_sym_DASH] = ACTIONS(7414), - [anon_sym_PLUS] = ACTIONS(7414), - [anon_sym_STAR] = ACTIONS(7414), - [anon_sym_SLASH] = ACTIONS(7414), - [anon_sym_PERCENT] = ACTIONS(7414), - [anon_sym_PIPE_PIPE] = ACTIONS(7416), - [anon_sym_AMP_AMP] = ACTIONS(7416), - [anon_sym_PIPE] = ACTIONS(7414), - [anon_sym_CARET] = ACTIONS(7414), - [anon_sym_AMP] = ACTIONS(7414), - [anon_sym_EQ_EQ] = ACTIONS(7416), - [anon_sym_BANG_EQ] = ACTIONS(7416), - [anon_sym_GT] = ACTIONS(7414), - [anon_sym_GT_EQ] = ACTIONS(7416), - [anon_sym_LT_EQ] = ACTIONS(7414), - [anon_sym_LT] = ACTIONS(7414), - [anon_sym_LT_LT] = ACTIONS(7414), - [anon_sym_GT_GT] = ACTIONS(7414), - [anon_sym___extension__] = ACTIONS(7416), - [anon_sym___attribute__] = ACTIONS(7416), - [anon_sym___attribute] = ACTIONS(7414), - [anon_sym_LBRACE] = ACTIONS(7416), - [anon_sym_signed] = ACTIONS(8135), - [anon_sym_unsigned] = ACTIONS(8135), - [anon_sym_long] = ACTIONS(8135), - [anon_sym_short] = ACTIONS(8135), - [anon_sym_LBRACK] = ACTIONS(7416), - [anon_sym_EQ] = ACTIONS(7414), - [anon_sym_const] = ACTIONS(7414), - [anon_sym_constexpr] = ACTIONS(7416), - [anon_sym_volatile] = ACTIONS(7416), - [anon_sym_restrict] = ACTIONS(7416), - [anon_sym___restrict__] = ACTIONS(7416), - [anon_sym__Atomic] = ACTIONS(7416), - [anon_sym__Noreturn] = ACTIONS(7416), - [anon_sym_noreturn] = ACTIONS(7416), - [anon_sym__Nonnull] = ACTIONS(7416), - [anon_sym_mutable] = ACTIONS(7416), - [anon_sym_constinit] = ACTIONS(7416), - [anon_sym_consteval] = ACTIONS(7416), - [anon_sym_alignas] = ACTIONS(7416), - [anon_sym__Alignas] = ACTIONS(7416), - [anon_sym_QMARK] = ACTIONS(7416), - [anon_sym_STAR_EQ] = ACTIONS(7416), - [anon_sym_SLASH_EQ] = ACTIONS(7416), - [anon_sym_PERCENT_EQ] = ACTIONS(7416), - [anon_sym_PLUS_EQ] = ACTIONS(7416), - [anon_sym_DASH_EQ] = ACTIONS(7416), - [anon_sym_LT_LT_EQ] = ACTIONS(7416), - [anon_sym_GT_GT_EQ] = ACTIONS(7416), - [anon_sym_AMP_EQ] = ACTIONS(7416), - [anon_sym_CARET_EQ] = ACTIONS(7416), - [anon_sym_PIPE_EQ] = ACTIONS(7416), - [anon_sym_LT_EQ_GT] = ACTIONS(7416), - [anon_sym_or] = ACTIONS(7416), - [anon_sym_and] = ACTIONS(7416), - [anon_sym_bitor] = ACTIONS(7416), - [anon_sym_xor] = ACTIONS(7416), - [anon_sym_bitand] = ACTIONS(7416), - [anon_sym_not_eq] = ACTIONS(7416), - [anon_sym_DASH_DASH] = ACTIONS(7416), - [anon_sym_PLUS_PLUS] = ACTIONS(7416), - [anon_sym_DOT] = ACTIONS(7414), - [anon_sym_DOT_STAR] = ACTIONS(7416), - [anon_sym_DASH_GT] = ACTIONS(7414), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7416), - [anon_sym_override] = ACTIONS(7416), - [anon_sym_requires] = ACTIONS(7416), - [anon_sym_DASH_GT_STAR] = ACTIONS(7416), + [STATE(2389)] = { + [sym_attribute_specifier] = STATE(3069), + [sym_field_declaration_list] = STATE(2668), + [sym_virtual_specifier] = STATE(9463), + [sym_base_class_clause] = STATE(10350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), + [anon_sym_COMMA] = ACTIONS(7237), + [anon_sym_RPAREN] = ACTIONS(7237), + [anon_sym_LPAREN2] = ACTIONS(7237), + [anon_sym_DASH] = ACTIONS(7235), + [anon_sym_PLUS] = ACTIONS(7235), + [anon_sym_STAR] = ACTIONS(7235), + [anon_sym_SLASH] = ACTIONS(7235), + [anon_sym_PERCENT] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_AMP_AMP] = ACTIONS(7237), + [anon_sym_PIPE] = ACTIONS(7235), + [anon_sym_CARET] = ACTIONS(7235), + [anon_sym_AMP] = ACTIONS(7235), + [anon_sym_EQ_EQ] = ACTIONS(7237), + [anon_sym_BANG_EQ] = ACTIONS(7237), + [anon_sym_GT] = ACTIONS(7235), + [anon_sym_GT_EQ] = ACTIONS(7237), + [anon_sym_LT_EQ] = ACTIONS(7235), + [anon_sym_LT] = ACTIONS(7235), + [anon_sym_LT_LT] = ACTIONS(7235), + [anon_sym_GT_GT] = ACTIONS(7235), + [anon_sym___extension__] = ACTIONS(7237), + [anon_sym___attribute__] = ACTIONS(8152), + [anon_sym___attribute] = ACTIONS(8154), + [anon_sym_COLON] = ACTIONS(8156), + [anon_sym_LBRACE] = ACTIONS(8158), + [anon_sym_LBRACK] = ACTIONS(7237), + [anon_sym_EQ] = ACTIONS(7235), + [anon_sym_const] = ACTIONS(7235), + [anon_sym_constexpr] = ACTIONS(7237), + [anon_sym_volatile] = ACTIONS(7237), + [anon_sym_restrict] = ACTIONS(7237), + [anon_sym___restrict__] = ACTIONS(7237), + [anon_sym__Atomic] = ACTIONS(7237), + [anon_sym__Noreturn] = ACTIONS(7237), + [anon_sym_noreturn] = ACTIONS(7237), + [anon_sym__Nonnull] = ACTIONS(7237), + [anon_sym_mutable] = ACTIONS(7237), + [anon_sym_constinit] = ACTIONS(7237), + [anon_sym_consteval] = ACTIONS(7237), + [anon_sym_alignas] = ACTIONS(7237), + [anon_sym__Alignas] = ACTIONS(7237), + [anon_sym_QMARK] = ACTIONS(7237), + [anon_sym_STAR_EQ] = ACTIONS(7237), + [anon_sym_SLASH_EQ] = ACTIONS(7237), + [anon_sym_PERCENT_EQ] = ACTIONS(7237), + [anon_sym_PLUS_EQ] = ACTIONS(7237), + [anon_sym_DASH_EQ] = ACTIONS(7237), + [anon_sym_LT_LT_EQ] = ACTIONS(7237), + [anon_sym_GT_GT_EQ] = ACTIONS(7237), + [anon_sym_AMP_EQ] = ACTIONS(7237), + [anon_sym_CARET_EQ] = ACTIONS(7237), + [anon_sym_PIPE_EQ] = ACTIONS(7237), + [anon_sym_and_eq] = ACTIONS(7237), + [anon_sym_or_eq] = ACTIONS(7237), + [anon_sym_xor_eq] = ACTIONS(7237), + [anon_sym_LT_EQ_GT] = ACTIONS(7237), + [anon_sym_or] = ACTIONS(7235), + [anon_sym_and] = ACTIONS(7235), + [anon_sym_bitor] = ACTIONS(7237), + [anon_sym_xor] = ACTIONS(7235), + [anon_sym_bitand] = ACTIONS(7237), + [anon_sym_not_eq] = ACTIONS(7237), + [anon_sym_DASH_DASH] = ACTIONS(7237), + [anon_sym_PLUS_PLUS] = ACTIONS(7237), + [anon_sym_DOT] = ACTIONS(7235), + [anon_sym_DOT_STAR] = ACTIONS(7237), + [anon_sym_DASH_GT] = ACTIONS(7235), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8160), + [anon_sym_override] = ACTIONS(8160), + [anon_sym_requires] = ACTIONS(7237), + [anon_sym_DASH_GT_STAR] = ACTIONS(7237), }, - [STATE(2512)] = { - [sym_attribute_specifier] = STATE(4247), - [sym_attribute_declaration] = STATE(4729), - [sym_gnu_asm_expression] = STATE(8972), - [sym_virtual_specifier] = STATE(4992), - [sym_ref_qualifier] = STATE(2610), - [sym__function_exception_specification] = STATE(3259), - [sym__function_attributes_end] = STATE(4448), - [sym__function_postfix] = STATE(5531), - [sym_trailing_return_type] = STATE(4529), - [sym_noexcept] = STATE(3259), - [sym_throw_specifier] = STATE(3259), - [sym_requires_clause] = STATE(5531), - [aux_sym_type_definition_repeat1] = STATE(4247), - [aux_sym_attributed_declarator_repeat1] = STATE(4729), - [aux_sym__function_postfix_repeat1] = STATE(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(8158), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(8161), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6410), - [anon_sym___attribute] = ACTIONS(6412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7544), - [anon_sym_and] = ACTIONS(7544), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7544), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(8164), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6453), - [anon_sym_override] = ACTIONS(6453), - [anon_sym_noexcept] = ACTIONS(6426), - [anon_sym_throw] = ACTIONS(6428), - [anon_sym_requires] = ACTIONS(6455), - [anon_sym_DASH_GT_STAR] = ACTIONS(7544), + [STATE(2390)] = { + [sym_identifier] = ACTIONS(7077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), + [anon_sym_COMMA] = ACTIONS(7079), + [anon_sym_LPAREN2] = ACTIONS(7079), + [anon_sym_DASH] = ACTIONS(7077), + [anon_sym_PLUS] = ACTIONS(7077), + [anon_sym_STAR] = ACTIONS(7077), + [anon_sym_SLASH] = ACTIONS(7077), + [anon_sym_PERCENT] = ACTIONS(7077), + [anon_sym_PIPE_PIPE] = ACTIONS(7079), + [anon_sym_AMP_AMP] = ACTIONS(7079), + [anon_sym_PIPE] = ACTIONS(7077), + [anon_sym_CARET] = ACTIONS(7077), + [anon_sym_AMP] = ACTIONS(7077), + [anon_sym_EQ_EQ] = ACTIONS(7079), + [anon_sym_BANG_EQ] = ACTIONS(7079), + [anon_sym_GT] = ACTIONS(7077), + [anon_sym_GT_EQ] = ACTIONS(7079), + [anon_sym_LT_EQ] = ACTIONS(7077), + [anon_sym_LT] = ACTIONS(7077), + [anon_sym_LT_LT] = ACTIONS(7077), + [anon_sym_GT_GT] = ACTIONS(7077), + [anon_sym___extension__] = ACTIONS(7077), + [anon_sym___attribute__] = ACTIONS(7077), + [anon_sym___attribute] = ACTIONS(7077), + [anon_sym_LBRACE] = ACTIONS(7079), + [anon_sym_signed] = ACTIONS(7077), + [anon_sym_unsigned] = ACTIONS(7077), + [anon_sym_long] = ACTIONS(7077), + [anon_sym_short] = ACTIONS(7077), + [anon_sym_LBRACK] = ACTIONS(7079), + [anon_sym_RBRACK] = ACTIONS(7079), + [anon_sym_EQ] = ACTIONS(7077), + [anon_sym_const] = ACTIONS(7077), + [anon_sym_constexpr] = ACTIONS(7077), + [anon_sym_volatile] = ACTIONS(7077), + [anon_sym_restrict] = ACTIONS(7077), + [anon_sym___restrict__] = ACTIONS(7077), + [anon_sym__Atomic] = ACTIONS(7077), + [anon_sym__Noreturn] = ACTIONS(7077), + [anon_sym_noreturn] = ACTIONS(7077), + [anon_sym__Nonnull] = ACTIONS(7077), + [anon_sym_mutable] = ACTIONS(7077), + [anon_sym_constinit] = ACTIONS(7077), + [anon_sym_consteval] = ACTIONS(7077), + [anon_sym_alignas] = ACTIONS(7077), + [anon_sym__Alignas] = ACTIONS(7077), + [sym_primitive_type] = ACTIONS(7077), + [anon_sym_QMARK] = ACTIONS(7079), + [anon_sym_STAR_EQ] = ACTIONS(7079), + [anon_sym_SLASH_EQ] = ACTIONS(7079), + [anon_sym_PERCENT_EQ] = ACTIONS(7079), + [anon_sym_PLUS_EQ] = ACTIONS(7079), + [anon_sym_DASH_EQ] = ACTIONS(7079), + [anon_sym_LT_LT_EQ] = ACTIONS(7079), + [anon_sym_GT_GT_EQ] = ACTIONS(7079), + [anon_sym_AMP_EQ] = ACTIONS(7079), + [anon_sym_CARET_EQ] = ACTIONS(7079), + [anon_sym_PIPE_EQ] = ACTIONS(7079), + [anon_sym_and_eq] = ACTIONS(7077), + [anon_sym_or_eq] = ACTIONS(7077), + [anon_sym_xor_eq] = ACTIONS(7077), + [anon_sym_LT_EQ_GT] = ACTIONS(7079), + [anon_sym_or] = ACTIONS(7077), + [anon_sym_and] = ACTIONS(7077), + [anon_sym_bitor] = ACTIONS(7077), + [anon_sym_xor] = ACTIONS(7077), + [anon_sym_bitand] = ACTIONS(7077), + [anon_sym_not_eq] = ACTIONS(7077), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DOT] = ACTIONS(7077), + [anon_sym_DOT_STAR] = ACTIONS(7079), + [anon_sym_DASH_GT] = ACTIONS(7079), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7077), + [anon_sym_override] = ACTIONS(7077), + [anon_sym_requires] = ACTIONS(7077), }, - [STATE(2513)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), - [anon_sym_COMMA] = ACTIONS(6718), - [anon_sym_RPAREN] = ACTIONS(6718), - [anon_sym_LPAREN2] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6716), - [anon_sym_PLUS] = ACTIONS(6716), - [anon_sym_STAR] = ACTIONS(6716), - [anon_sym_SLASH] = ACTIONS(6716), - [anon_sym_PERCENT] = ACTIONS(6716), - [anon_sym_PIPE_PIPE] = ACTIONS(6718), - [anon_sym_AMP_AMP] = ACTIONS(6718), - [anon_sym_PIPE] = ACTIONS(6716), - [anon_sym_CARET] = ACTIONS(6716), - [anon_sym_AMP] = ACTIONS(6716), - [anon_sym_EQ_EQ] = ACTIONS(6718), - [anon_sym_BANG_EQ] = ACTIONS(6718), - [anon_sym_GT] = ACTIONS(6716), - [anon_sym_GT_EQ] = ACTIONS(6718), - [anon_sym_LT_EQ] = ACTIONS(6716), - [anon_sym_LT] = ACTIONS(6716), - [anon_sym_LT_LT] = ACTIONS(6716), - [anon_sym_GT_GT] = ACTIONS(6716), - [anon_sym___extension__] = ACTIONS(6718), - [anon_sym___attribute__] = ACTIONS(6718), - [anon_sym___attribute] = ACTIONS(6716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6718), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_EQ] = ACTIONS(6716), - [anon_sym_const] = ACTIONS(6716), - [anon_sym_constexpr] = ACTIONS(6718), - [anon_sym_volatile] = ACTIONS(6718), - [anon_sym_restrict] = ACTIONS(6718), - [anon_sym___restrict__] = ACTIONS(6718), - [anon_sym__Atomic] = ACTIONS(6718), - [anon_sym__Noreturn] = ACTIONS(6718), - [anon_sym_noreturn] = ACTIONS(6718), - [anon_sym__Nonnull] = ACTIONS(6718), - [anon_sym_mutable] = ACTIONS(6718), - [anon_sym_constinit] = ACTIONS(6718), - [anon_sym_consteval] = ACTIONS(6718), - [anon_sym_alignas] = ACTIONS(6718), - [anon_sym__Alignas] = ACTIONS(6718), - [anon_sym_QMARK] = ACTIONS(6718), - [anon_sym_STAR_EQ] = ACTIONS(6718), - [anon_sym_SLASH_EQ] = ACTIONS(6718), - [anon_sym_PERCENT_EQ] = ACTIONS(6718), - [anon_sym_PLUS_EQ] = ACTIONS(6718), - [anon_sym_DASH_EQ] = ACTIONS(6718), - [anon_sym_LT_LT_EQ] = ACTIONS(6718), - [anon_sym_GT_GT_EQ] = ACTIONS(6718), - [anon_sym_AMP_EQ] = ACTIONS(6718), - [anon_sym_CARET_EQ] = ACTIONS(6718), - [anon_sym_PIPE_EQ] = ACTIONS(6718), - [anon_sym_LT_EQ_GT] = ACTIONS(6718), - [anon_sym_or] = ACTIONS(6718), - [anon_sym_and] = ACTIONS(6718), - [anon_sym_bitor] = ACTIONS(6718), - [anon_sym_xor] = ACTIONS(6718), - [anon_sym_bitand] = ACTIONS(6718), - [anon_sym_not_eq] = ACTIONS(6718), - [anon_sym_DASH_DASH] = ACTIONS(6718), - [anon_sym_PLUS_PLUS] = ACTIONS(6718), - [anon_sym_asm] = ACTIONS(6718), - [anon_sym___asm__] = ACTIONS(6718), - [anon_sym___asm] = ACTIONS(6716), - [anon_sym_DOT] = ACTIONS(6716), - [anon_sym_DOT_STAR] = ACTIONS(6718), - [anon_sym_DASH_GT] = ACTIONS(6716), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6718), - [anon_sym_override] = ACTIONS(6718), - [anon_sym_noexcept] = ACTIONS(6718), - [anon_sym_throw] = ACTIONS(6718), - [anon_sym_requires] = ACTIONS(6718), - [anon_sym_DASH_GT_STAR] = ACTIONS(6718), + [STATE(2391)] = { + [sym__abstract_declarator] = STATE(5246), + [sym_abstract_parenthesized_declarator] = STATE(5693), + [sym_abstract_pointer_declarator] = STATE(5693), + [sym_abstract_function_declarator] = STATE(5693), + [sym_abstract_array_declarator] = STATE(5693), + [sym_type_qualifier] = STATE(2403), + [sym_alignas_qualifier] = STATE(2576), + [sym_parameter_list] = STATE(1991), + [sym_abstract_reference_declarator] = STATE(5693), + [sym__function_declarator_seq] = STATE(5694), + [aux_sym__type_definition_type_repeat1] = STATE(2403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), + [anon_sym_COMMA] = ACTIONS(7391), + [anon_sym_RPAREN] = ACTIONS(7391), + [anon_sym_LPAREN2] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7393), + [anon_sym_PLUS] = ACTIONS(7393), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_PERCENT] = ACTIONS(7393), + [anon_sym_PIPE_PIPE] = ACTIONS(7391), + [anon_sym_AMP_AMP] = ACTIONS(7309), + [anon_sym_PIPE] = ACTIONS(7393), + [anon_sym_CARET] = ACTIONS(7393), + [anon_sym_AMP] = ACTIONS(7311), + [anon_sym_EQ_EQ] = ACTIONS(7391), + [anon_sym_BANG_EQ] = ACTIONS(7391), + [anon_sym_GT] = ACTIONS(7393), + [anon_sym_GT_EQ] = ACTIONS(7391), + [anon_sym_LT_EQ] = ACTIONS(7393), + [anon_sym_LT] = ACTIONS(7393), + [anon_sym_LT_LT] = ACTIONS(7393), + [anon_sym_GT_GT] = ACTIONS(7393), + [anon_sym___extension__] = ACTIONS(7313), + [anon_sym_LBRACK] = ACTIONS(7321), + [anon_sym_EQ] = ACTIONS(7393), + [anon_sym_const] = ACTIONS(7323), + [anon_sym_constexpr] = ACTIONS(7313), + [anon_sym_volatile] = ACTIONS(7313), + [anon_sym_restrict] = ACTIONS(7313), + [anon_sym___restrict__] = ACTIONS(7313), + [anon_sym__Atomic] = ACTIONS(7313), + [anon_sym__Noreturn] = ACTIONS(7313), + [anon_sym_noreturn] = ACTIONS(7313), + [anon_sym__Nonnull] = ACTIONS(7313), + [anon_sym_mutable] = ACTIONS(7313), + [anon_sym_constinit] = ACTIONS(7313), + [anon_sym_consteval] = ACTIONS(7313), + [anon_sym_alignas] = ACTIONS(7325), + [anon_sym__Alignas] = ACTIONS(7325), + [anon_sym_QMARK] = ACTIONS(7391), + [anon_sym_STAR_EQ] = ACTIONS(7391), + [anon_sym_SLASH_EQ] = ACTIONS(7391), + [anon_sym_PERCENT_EQ] = ACTIONS(7391), + [anon_sym_PLUS_EQ] = ACTIONS(7391), + [anon_sym_DASH_EQ] = ACTIONS(7391), + [anon_sym_LT_LT_EQ] = ACTIONS(7391), + [anon_sym_GT_GT_EQ] = ACTIONS(7391), + [anon_sym_AMP_EQ] = ACTIONS(7391), + [anon_sym_CARET_EQ] = ACTIONS(7391), + [anon_sym_PIPE_EQ] = ACTIONS(7391), + [anon_sym_LT_EQ_GT] = ACTIONS(7391), + [anon_sym_or] = ACTIONS(7391), + [anon_sym_and] = ACTIONS(7391), + [anon_sym_bitor] = ACTIONS(7391), + [anon_sym_xor] = ACTIONS(7391), + [anon_sym_bitand] = ACTIONS(7391), + [anon_sym_not_eq] = ACTIONS(7391), + [anon_sym_DASH_DASH] = ACTIONS(7391), + [anon_sym_PLUS_PLUS] = ACTIONS(7391), + [anon_sym_DOT] = ACTIONS(7393), + [anon_sym_DOT_STAR] = ACTIONS(7391), + [anon_sym_DASH_GT] = ACTIONS(7393), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7391), + [anon_sym_override] = ACTIONS(7391), + [anon_sym_requires] = ACTIONS(7391), + [anon_sym_DASH_GT_STAR] = ACTIONS(7391), }, - [STATE(2514)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), - [anon_sym_COMMA] = ACTIONS(6751), - [anon_sym_RPAREN] = ACTIONS(6751), - [anon_sym_LPAREN2] = ACTIONS(6751), - [anon_sym_DASH] = ACTIONS(6746), - [anon_sym_PLUS] = ACTIONS(6746), - [anon_sym_STAR] = ACTIONS(6746), - [anon_sym_SLASH] = ACTIONS(6746), - [anon_sym_PERCENT] = ACTIONS(6746), - [anon_sym_PIPE_PIPE] = ACTIONS(6751), - [anon_sym_AMP_AMP] = ACTIONS(6751), - [anon_sym_PIPE] = ACTIONS(6746), - [anon_sym_CARET] = ACTIONS(6746), - [anon_sym_AMP] = ACTIONS(6746), - [anon_sym_EQ_EQ] = ACTIONS(6751), - [anon_sym_BANG_EQ] = ACTIONS(6751), - [anon_sym_GT] = ACTIONS(6746), - [anon_sym_GT_EQ] = ACTIONS(6751), - [anon_sym_LT_EQ] = ACTIONS(6746), - [anon_sym_LT] = ACTIONS(6746), - [anon_sym_LT_LT] = ACTIONS(6746), - [anon_sym_GT_GT] = ACTIONS(6746), - [anon_sym___extension__] = ACTIONS(6751), - [anon_sym___attribute__] = ACTIONS(6751), - [anon_sym___attribute] = ACTIONS(6746), - [anon_sym_COLON] = ACTIONS(6746), - [anon_sym_COLON_COLON] = ACTIONS(6751), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_LBRACK] = ACTIONS(6751), - [anon_sym_EQ] = ACTIONS(6746), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6751), - [anon_sym_volatile] = ACTIONS(6751), - [anon_sym_restrict] = ACTIONS(6751), - [anon_sym___restrict__] = ACTIONS(6751), - [anon_sym__Atomic] = ACTIONS(6751), - [anon_sym__Noreturn] = ACTIONS(6751), - [anon_sym_noreturn] = ACTIONS(6751), - [anon_sym__Nonnull] = ACTIONS(6751), - [anon_sym_mutable] = ACTIONS(6751), - [anon_sym_constinit] = ACTIONS(6751), - [anon_sym_consteval] = ACTIONS(6751), - [anon_sym_alignas] = ACTIONS(6751), - [anon_sym__Alignas] = ACTIONS(6751), - [anon_sym_QMARK] = ACTIONS(6751), - [anon_sym_STAR_EQ] = ACTIONS(6751), - [anon_sym_SLASH_EQ] = ACTIONS(6751), - [anon_sym_PERCENT_EQ] = ACTIONS(6751), - [anon_sym_PLUS_EQ] = ACTIONS(6751), - [anon_sym_DASH_EQ] = ACTIONS(6751), - [anon_sym_LT_LT_EQ] = ACTIONS(6751), - [anon_sym_GT_GT_EQ] = ACTIONS(6751), - [anon_sym_AMP_EQ] = ACTIONS(6751), - [anon_sym_CARET_EQ] = ACTIONS(6751), - [anon_sym_PIPE_EQ] = ACTIONS(6751), - [anon_sym_and_eq] = ACTIONS(6751), - [anon_sym_or_eq] = ACTIONS(6751), - [anon_sym_xor_eq] = ACTIONS(6751), - [anon_sym_LT_EQ_GT] = ACTIONS(6751), - [anon_sym_or] = ACTIONS(6746), - [anon_sym_and] = ACTIONS(6746), - [anon_sym_bitor] = ACTIONS(6751), - [anon_sym_xor] = ACTIONS(6746), - [anon_sym_bitand] = ACTIONS(6751), - [anon_sym_not_eq] = ACTIONS(6751), - [anon_sym_DASH_DASH] = ACTIONS(6751), - [anon_sym_PLUS_PLUS] = ACTIONS(6751), - [anon_sym_DOT] = ACTIONS(6746), - [anon_sym_DOT_STAR] = ACTIONS(6751), - [anon_sym_DASH_GT] = ACTIONS(6746), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6751), - [anon_sym_override] = ACTIONS(6751), - [anon_sym_requires] = ACTIONS(6751), - [anon_sym_DASH_GT_STAR] = ACTIONS(6751), + [STATE(2392)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), + [anon_sym_COMMA] = ACTIONS(3118), + [anon_sym_RPAREN] = ACTIONS(3118), + [anon_sym_LPAREN2] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_SLASH] = ACTIONS(3128), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_PIPE_PIPE] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_CARET] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3128), + [anon_sym_GT_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(3128), + [anon_sym_LT_LT] = ACTIONS(3128), + [anon_sym_GT_GT] = ACTIONS(3128), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_EQ] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3118), + [anon_sym_volatile] = ACTIONS(3118), + [anon_sym_restrict] = ACTIONS(3118), + [anon_sym___restrict__] = ACTIONS(3118), + [anon_sym__Atomic] = ACTIONS(3118), + [anon_sym__Noreturn] = ACTIONS(3118), + [anon_sym_noreturn] = ACTIONS(3118), + [anon_sym__Nonnull] = ACTIONS(3118), + [anon_sym_mutable] = ACTIONS(3118), + [anon_sym_constinit] = ACTIONS(3118), + [anon_sym_consteval] = ACTIONS(3118), + [anon_sym_alignas] = ACTIONS(3118), + [anon_sym__Alignas] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_STAR_EQ] = ACTIONS(3118), + [anon_sym_SLASH_EQ] = ACTIONS(3118), + [anon_sym_PERCENT_EQ] = ACTIONS(3118), + [anon_sym_PLUS_EQ] = ACTIONS(3118), + [anon_sym_DASH_EQ] = ACTIONS(3118), + [anon_sym_LT_LT_EQ] = ACTIONS(3118), + [anon_sym_GT_GT_EQ] = ACTIONS(3118), + [anon_sym_AMP_EQ] = ACTIONS(3118), + [anon_sym_CARET_EQ] = ACTIONS(3118), + [anon_sym_PIPE_EQ] = ACTIONS(3118), + [anon_sym_and_eq] = ACTIONS(3118), + [anon_sym_or_eq] = ACTIONS(3118), + [anon_sym_xor_eq] = ACTIONS(3118), + [anon_sym_LT_EQ_GT] = ACTIONS(3118), + [anon_sym_or] = ACTIONS(3128), + [anon_sym_and] = ACTIONS(3128), + [anon_sym_bitor] = ACTIONS(3118), + [anon_sym_xor] = ACTIONS(3128), + [anon_sym_bitand] = ACTIONS(3118), + [anon_sym_not_eq] = ACTIONS(3118), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_asm] = ACTIONS(3118), + [anon_sym___asm__] = ACTIONS(3118), + [anon_sym___asm] = ACTIONS(3128), + [anon_sym_DOT] = ACTIONS(3128), + [anon_sym_DOT_STAR] = ACTIONS(3118), + [anon_sym_DASH_GT] = ACTIONS(3128), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_noexcept] = ACTIONS(3118), + [anon_sym_throw] = ACTIONS(3118), + [anon_sym_requires] = ACTIONS(3118), + [anon_sym_DASH_GT_STAR] = ACTIONS(3118), }, - [STATE(2515)] = { - [sym_argument_list] = STATE(5523), - [sym_initializer_list] = STATE(5524), - [aux_sym_sized_type_specifier_repeat1] = STATE(2286), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(8167), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_signed] = ACTIONS(7801), - [anon_sym_unsigned] = ACTIONS(7801), - [anon_sym_long] = ACTIONS(7801), - [anon_sym_short] = ACTIONS(7801), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6798), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + [STATE(2393)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), + [anon_sym_COMMA] = ACTIONS(7079), + [anon_sym_RPAREN] = ACTIONS(7079), + [anon_sym_LPAREN2] = ACTIONS(7079), + [anon_sym_DASH] = ACTIONS(7077), + [anon_sym_PLUS] = ACTIONS(7077), + [anon_sym_STAR] = ACTIONS(7077), + [anon_sym_SLASH] = ACTIONS(7077), + [anon_sym_PERCENT] = ACTIONS(7077), + [anon_sym_PIPE_PIPE] = ACTIONS(7079), + [anon_sym_AMP_AMP] = ACTIONS(7079), + [anon_sym_PIPE] = ACTIONS(7077), + [anon_sym_CARET] = ACTIONS(7077), + [anon_sym_AMP] = ACTIONS(7077), + [anon_sym_EQ_EQ] = ACTIONS(7079), + [anon_sym_BANG_EQ] = ACTIONS(7079), + [anon_sym_GT] = ACTIONS(7077), + [anon_sym_GT_EQ] = ACTIONS(7079), + [anon_sym_LT_EQ] = ACTIONS(7077), + [anon_sym_LT] = ACTIONS(7077), + [anon_sym_LT_LT] = ACTIONS(7077), + [anon_sym_GT_GT] = ACTIONS(7077), + [anon_sym___extension__] = ACTIONS(7079), + [anon_sym___attribute__] = ACTIONS(7079), + [anon_sym___attribute] = ACTIONS(7077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7079), + [anon_sym_LBRACK] = ACTIONS(7077), + [anon_sym_EQ] = ACTIONS(7077), + [anon_sym_const] = ACTIONS(7077), + [anon_sym_constexpr] = ACTIONS(7079), + [anon_sym_volatile] = ACTIONS(7079), + [anon_sym_restrict] = ACTIONS(7079), + [anon_sym___restrict__] = ACTIONS(7079), + [anon_sym__Atomic] = ACTIONS(7079), + [anon_sym__Noreturn] = ACTIONS(7079), + [anon_sym_noreturn] = ACTIONS(7079), + [anon_sym__Nonnull] = ACTIONS(7079), + [anon_sym_mutable] = ACTIONS(7079), + [anon_sym_constinit] = ACTIONS(7079), + [anon_sym_consteval] = ACTIONS(7079), + [anon_sym_alignas] = ACTIONS(7079), + [anon_sym__Alignas] = ACTIONS(7079), + [anon_sym_QMARK] = ACTIONS(7079), + [anon_sym_STAR_EQ] = ACTIONS(7079), + [anon_sym_SLASH_EQ] = ACTIONS(7079), + [anon_sym_PERCENT_EQ] = ACTIONS(7079), + [anon_sym_PLUS_EQ] = ACTIONS(7079), + [anon_sym_DASH_EQ] = ACTIONS(7079), + [anon_sym_LT_LT_EQ] = ACTIONS(7079), + [anon_sym_GT_GT_EQ] = ACTIONS(7079), + [anon_sym_AMP_EQ] = ACTIONS(7079), + [anon_sym_CARET_EQ] = ACTIONS(7079), + [anon_sym_PIPE_EQ] = ACTIONS(7079), + [anon_sym_and_eq] = ACTIONS(7079), + [anon_sym_or_eq] = ACTIONS(7079), + [anon_sym_xor_eq] = ACTIONS(7079), + [anon_sym_LT_EQ_GT] = ACTIONS(7079), + [anon_sym_or] = ACTIONS(7077), + [anon_sym_and] = ACTIONS(7077), + [anon_sym_bitor] = ACTIONS(7079), + [anon_sym_xor] = ACTIONS(7077), + [anon_sym_bitand] = ACTIONS(7079), + [anon_sym_not_eq] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_asm] = ACTIONS(7079), + [anon_sym___asm__] = ACTIONS(7079), + [anon_sym___asm] = ACTIONS(7077), + [anon_sym_DOT] = ACTIONS(7077), + [anon_sym_DOT_STAR] = ACTIONS(7079), + [anon_sym_DASH_GT] = ACTIONS(7077), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7079), + [anon_sym_override] = ACTIONS(7079), + [anon_sym_noexcept] = ACTIONS(7079), + [anon_sym_throw] = ACTIONS(7079), + [anon_sym_requires] = ACTIONS(7079), + [anon_sym_DASH_GT_STAR] = ACTIONS(7079), }, - [STATE(2516)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2535), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7241), - [anon_sym_COMMA] = ACTIONS(7241), - [anon_sym_RPAREN] = ACTIONS(7241), - [anon_sym_LPAREN2] = ACTIONS(7241), - [anon_sym_DASH] = ACTIONS(7239), - [anon_sym_PLUS] = ACTIONS(7239), - [anon_sym_STAR] = ACTIONS(7239), - [anon_sym_SLASH] = ACTIONS(7239), - [anon_sym_PERCENT] = ACTIONS(7239), - [anon_sym_PIPE_PIPE] = ACTIONS(7241), - [anon_sym_AMP_AMP] = ACTIONS(7241), - [anon_sym_PIPE] = ACTIONS(7239), - [anon_sym_CARET] = ACTIONS(7239), - [anon_sym_AMP] = ACTIONS(7239), - [anon_sym_EQ_EQ] = ACTIONS(7241), - [anon_sym_BANG_EQ] = ACTIONS(7241), - [anon_sym_GT] = ACTIONS(7239), - [anon_sym_GT_EQ] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7239), - [anon_sym_LT] = ACTIONS(7239), - [anon_sym_LT_LT] = ACTIONS(7239), - [anon_sym_GT_GT] = ACTIONS(7239), - [anon_sym___extension__] = ACTIONS(7241), - [anon_sym___attribute__] = ACTIONS(7241), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_LBRACE] = ACTIONS(7241), - [anon_sym_signed] = ACTIONS(8170), - [anon_sym_unsigned] = ACTIONS(8170), - [anon_sym_long] = ACTIONS(8170), - [anon_sym_short] = ACTIONS(8170), - [anon_sym_LBRACK] = ACTIONS(7241), - [anon_sym_EQ] = ACTIONS(7239), - [anon_sym_const] = ACTIONS(7239), - [anon_sym_constexpr] = ACTIONS(7241), - [anon_sym_volatile] = ACTIONS(7241), - [anon_sym_restrict] = ACTIONS(7241), - [anon_sym___restrict__] = ACTIONS(7241), - [anon_sym__Atomic] = ACTIONS(7241), - [anon_sym__Noreturn] = ACTIONS(7241), - [anon_sym_noreturn] = ACTIONS(7241), - [anon_sym__Nonnull] = ACTIONS(7241), - [anon_sym_mutable] = ACTIONS(7241), - [anon_sym_constinit] = ACTIONS(7241), - [anon_sym_consteval] = ACTIONS(7241), - [anon_sym_alignas] = ACTIONS(7241), - [anon_sym__Alignas] = ACTIONS(7241), - [anon_sym_QMARK] = ACTIONS(7241), - [anon_sym_STAR_EQ] = ACTIONS(7241), - [anon_sym_SLASH_EQ] = ACTIONS(7241), - [anon_sym_PERCENT_EQ] = ACTIONS(7241), - [anon_sym_PLUS_EQ] = ACTIONS(7241), - [anon_sym_DASH_EQ] = ACTIONS(7241), - [anon_sym_LT_LT_EQ] = ACTIONS(7241), - [anon_sym_GT_GT_EQ] = ACTIONS(7241), - [anon_sym_AMP_EQ] = ACTIONS(7241), - [anon_sym_CARET_EQ] = ACTIONS(7241), - [anon_sym_PIPE_EQ] = ACTIONS(7241), - [anon_sym_LT_EQ_GT] = ACTIONS(7241), - [anon_sym_or] = ACTIONS(7241), - [anon_sym_and] = ACTIONS(7241), - [anon_sym_bitor] = ACTIONS(7241), - [anon_sym_xor] = ACTIONS(7241), - [anon_sym_bitand] = ACTIONS(7241), - [anon_sym_not_eq] = ACTIONS(7241), - [anon_sym_DASH_DASH] = ACTIONS(7241), - [anon_sym_PLUS_PLUS] = ACTIONS(7241), - [anon_sym_DOT] = ACTIONS(7239), - [anon_sym_DOT_STAR] = ACTIONS(7241), - [anon_sym_DASH_GT] = ACTIONS(7239), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7241), - [anon_sym_override] = ACTIONS(7241), - [anon_sym_requires] = ACTIONS(7241), - [anon_sym_DASH_GT_STAR] = ACTIONS(7241), + [STATE(2394)] = { + [sym_attribute_specifier] = STATE(4124), + [sym_attribute_declaration] = STATE(4490), + [sym_gnu_asm_expression] = STATE(9129), + [sym_virtual_specifier] = STATE(4610), + [sym_ref_qualifier] = STATE(2468), + [sym__function_exception_specification] = STATE(2943), + [sym__function_attributes_end] = STATE(4292), + [sym__function_postfix] = STATE(4840), + [sym_trailing_return_type] = STATE(4383), + [sym_noexcept] = STATE(2943), + [sym_throw_specifier] = STATE(2943), + [sym_requires_clause] = STATE(4840), + [aux_sym_type_definition_repeat1] = STATE(4124), + [aux_sym_attributed_declarator_repeat1] = STATE(4490), + [aux_sym__function_postfix_repeat1] = STATE(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(8162), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(8165), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6646), + [anon_sym___attribute] = ACTIONS(6648), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8168), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6669), + [anon_sym_override] = ACTIONS(6669), + [anon_sym_noexcept] = ACTIONS(6662), + [anon_sym_throw] = ACTIONS(6664), + [anon_sym_requires] = ACTIONS(6671), + [anon_sym_DASH_GT_STAR] = ACTIONS(7791), }, - [STATE(2517)] = { - [sym_template_argument_list] = STATE(2491), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5272), - [anon_sym_COMMA] = ACTIONS(5272), - [anon_sym_LPAREN2] = ACTIONS(5272), - [anon_sym_DASH] = ACTIONS(7031), - [anon_sym_PLUS] = ACTIONS(7031), - [anon_sym_STAR] = ACTIONS(7031), - [anon_sym_SLASH] = ACTIONS(7031), - [anon_sym_PERCENT] = ACTIONS(7031), - [anon_sym_PIPE_PIPE] = ACTIONS(5272), - [anon_sym_AMP_AMP] = ACTIONS(5272), - [anon_sym_PIPE] = ACTIONS(7031), - [anon_sym_CARET] = ACTIONS(7031), - [anon_sym_AMP] = ACTIONS(7031), - [anon_sym_EQ_EQ] = ACTIONS(5272), - [anon_sym_BANG_EQ] = ACTIONS(5272), - [anon_sym_GT] = ACTIONS(7031), - [anon_sym_GT_EQ] = ACTIONS(5272), - [anon_sym_LT_EQ] = ACTIONS(7031), - [anon_sym_LT] = ACTIONS(7681), - [anon_sym_LT_LT] = ACTIONS(7031), - [anon_sym_GT_GT] = ACTIONS(7031), - [anon_sym___extension__] = ACTIONS(5272), - [anon_sym___attribute__] = ACTIONS(5272), - [anon_sym___attribute] = ACTIONS(7031), - [anon_sym_COLON] = ACTIONS(7031), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5272), - [anon_sym_RBRACK] = ACTIONS(5272), - [anon_sym_EQ] = ACTIONS(7031), - [anon_sym_const] = ACTIONS(7031), - [anon_sym_constexpr] = ACTIONS(5272), - [anon_sym_volatile] = ACTIONS(5272), - [anon_sym_restrict] = ACTIONS(5272), - [anon_sym___restrict__] = ACTIONS(5272), - [anon_sym__Atomic] = ACTIONS(5272), - [anon_sym__Noreturn] = ACTIONS(5272), - [anon_sym_noreturn] = ACTIONS(5272), - [anon_sym__Nonnull] = ACTIONS(5272), - [anon_sym_mutable] = ACTIONS(5272), - [anon_sym_constinit] = ACTIONS(5272), - [anon_sym_consteval] = ACTIONS(5272), - [anon_sym_alignas] = ACTIONS(5272), - [anon_sym__Alignas] = ACTIONS(5272), - [anon_sym_QMARK] = ACTIONS(5272), - [anon_sym_STAR_EQ] = ACTIONS(5272), - [anon_sym_SLASH_EQ] = ACTIONS(5272), - [anon_sym_PERCENT_EQ] = ACTIONS(5272), - [anon_sym_PLUS_EQ] = ACTIONS(5272), - [anon_sym_DASH_EQ] = ACTIONS(5272), - [anon_sym_LT_LT_EQ] = ACTIONS(5272), - [anon_sym_GT_GT_EQ] = ACTIONS(5272), - [anon_sym_AMP_EQ] = ACTIONS(5272), - [anon_sym_CARET_EQ] = ACTIONS(5272), - [anon_sym_PIPE_EQ] = ACTIONS(5272), - [anon_sym_and_eq] = ACTIONS(5272), - [anon_sym_or_eq] = ACTIONS(5272), - [anon_sym_xor_eq] = ACTIONS(5272), - [anon_sym_LT_EQ_GT] = ACTIONS(5272), - [anon_sym_or] = ACTIONS(7031), - [anon_sym_and] = ACTIONS(7031), - [anon_sym_bitor] = ACTIONS(5272), - [anon_sym_xor] = ACTIONS(7031), - [anon_sym_bitand] = ACTIONS(5272), - [anon_sym_not_eq] = ACTIONS(5272), - [anon_sym_DASH_DASH] = ACTIONS(5272), - [anon_sym_PLUS_PLUS] = ACTIONS(5272), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_DOT_STAR] = ACTIONS(5272), - [anon_sym_DASH_GT] = ACTIONS(5272), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5272), - [anon_sym_override] = ACTIONS(5272), - [anon_sym_requires] = ACTIONS(5272), + [STATE(2395)] = { + [sym__abstract_declarator] = STATE(5151), + [sym_abstract_parenthesized_declarator] = STATE(4825), + [sym_abstract_pointer_declarator] = STATE(4825), + [sym_abstract_function_declarator] = STATE(4825), + [sym_abstract_array_declarator] = STATE(4825), + [sym_type_qualifier] = STATE(2270), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1974), + [sym_abstract_reference_declarator] = STATE(4825), + [sym__function_declarator_seq] = STATE(4934), + [aux_sym__type_definition_type_repeat1] = STATE(2270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(7006), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(7297), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(7299), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(7014), + [anon_sym_LBRACK] = ACTIONS(7022), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(7024), + [anon_sym_constexpr] = ACTIONS(7014), + [anon_sym_volatile] = ACTIONS(7014), + [anon_sym_restrict] = ACTIONS(7014), + [anon_sym___restrict__] = ACTIONS(7014), + [anon_sym__Atomic] = ACTIONS(7014), + [anon_sym__Noreturn] = ACTIONS(7014), + [anon_sym_noreturn] = ACTIONS(7014), + [anon_sym__Nonnull] = ACTIONS(7014), + [anon_sym_mutable] = ACTIONS(7014), + [anon_sym_constinit] = ACTIONS(7014), + [anon_sym_consteval] = ACTIONS(7014), + [anon_sym_alignas] = ACTIONS(7026), + [anon_sym__Alignas] = ACTIONS(7026), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6823), + [anon_sym_or_eq] = ACTIONS(6823), + [anon_sym_xor_eq] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6821), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6823), }, - [STATE(2518)] = { - [sym__abstract_declarator] = STATE(5806), - [sym_abstract_parenthesized_declarator] = STATE(5581), - [sym_abstract_pointer_declarator] = STATE(5581), - [sym_abstract_function_declarator] = STATE(5581), - [sym_abstract_array_declarator] = STATE(5581), - [sym_type_qualifier] = STATE(2503), - [sym_alignas_qualifier] = STATE(2432), - [sym_parameter_list] = STATE(1888), - [sym_abstract_reference_declarator] = STATE(5581), - [sym__function_declarator_seq] = STATE(5582), - [aux_sym__type_definition_type_repeat1] = STATE(2503), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), - [anon_sym_COMMA] = ACTIONS(6991), - [anon_sym_RPAREN] = ACTIONS(6991), - [anon_sym_LPAREN2] = ACTIONS(6927), - [anon_sym_DASH] = ACTIONS(6993), - [anon_sym_PLUS] = ACTIONS(6993), - [anon_sym_STAR] = ACTIONS(7319), - [anon_sym_SLASH] = ACTIONS(6993), - [anon_sym_PERCENT] = ACTIONS(6993), - [anon_sym_PIPE_PIPE] = ACTIONS(6991), - [anon_sym_AMP_AMP] = ACTIONS(7321), - [anon_sym_PIPE] = ACTIONS(6993), - [anon_sym_CARET] = ACTIONS(6993), - [anon_sym_AMP] = ACTIONS(7323), - [anon_sym_EQ_EQ] = ACTIONS(6991), - [anon_sym_BANG_EQ] = ACTIONS(6991), - [anon_sym_GT] = ACTIONS(6993), - [anon_sym_GT_EQ] = ACTIONS(6991), - [anon_sym_LT_EQ] = ACTIONS(6993), - [anon_sym_LT] = ACTIONS(6993), - [anon_sym_LT_LT] = ACTIONS(6993), - [anon_sym_GT_GT] = ACTIONS(6993), - [anon_sym___extension__] = ACTIONS(6935), - [anon_sym_LBRACK] = ACTIONS(6943), - [anon_sym_EQ] = ACTIONS(6993), - [anon_sym_const] = ACTIONS(6945), - [anon_sym_constexpr] = ACTIONS(6935), - [anon_sym_volatile] = ACTIONS(6935), - [anon_sym_restrict] = ACTIONS(6935), - [anon_sym___restrict__] = ACTIONS(6935), - [anon_sym__Atomic] = ACTIONS(6935), - [anon_sym__Noreturn] = ACTIONS(6935), - [anon_sym_noreturn] = ACTIONS(6935), - [anon_sym__Nonnull] = ACTIONS(6935), - [anon_sym_mutable] = ACTIONS(6935), - [anon_sym_constinit] = ACTIONS(6935), - [anon_sym_consteval] = ACTIONS(6935), - [anon_sym_alignas] = ACTIONS(6947), - [anon_sym__Alignas] = ACTIONS(6947), - [anon_sym_QMARK] = ACTIONS(6991), - [anon_sym_STAR_EQ] = ACTIONS(6991), - [anon_sym_SLASH_EQ] = ACTIONS(6991), - [anon_sym_PERCENT_EQ] = ACTIONS(6991), - [anon_sym_PLUS_EQ] = ACTIONS(6991), - [anon_sym_DASH_EQ] = ACTIONS(6991), - [anon_sym_LT_LT_EQ] = ACTIONS(6991), - [anon_sym_GT_GT_EQ] = ACTIONS(6991), - [anon_sym_AMP_EQ] = ACTIONS(6991), - [anon_sym_CARET_EQ] = ACTIONS(6991), - [anon_sym_PIPE_EQ] = ACTIONS(6991), - [anon_sym_LT_EQ_GT] = ACTIONS(6991), - [anon_sym_or] = ACTIONS(6991), - [anon_sym_and] = ACTIONS(6991), - [anon_sym_bitor] = ACTIONS(6991), - [anon_sym_xor] = ACTIONS(6991), - [anon_sym_bitand] = ACTIONS(6991), - [anon_sym_not_eq] = ACTIONS(6991), - [anon_sym_DASH_DASH] = ACTIONS(6991), - [anon_sym_PLUS_PLUS] = ACTIONS(6991), - [anon_sym_DOT] = ACTIONS(6993), - [anon_sym_DOT_STAR] = ACTIONS(6991), - [anon_sym_DASH_GT] = ACTIONS(6993), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6991), + [STATE(2396)] = { + [sym_template_argument_list] = STATE(2494), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6572), + [anon_sym_COMMA] = ACTIONS(6572), + [anon_sym_RPAREN] = ACTIONS(6572), + [anon_sym_LPAREN2] = ACTIONS(6572), + [anon_sym_DASH] = ACTIONS(6565), + [anon_sym_PLUS] = ACTIONS(6565), + [anon_sym_STAR] = ACTIONS(6565), + [anon_sym_SLASH] = ACTIONS(6565), + [anon_sym_PERCENT] = ACTIONS(6565), + [anon_sym_PIPE_PIPE] = ACTIONS(6572), + [anon_sym_AMP_AMP] = ACTIONS(6572), + [anon_sym_PIPE] = ACTIONS(6565), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym_AMP] = ACTIONS(6565), + [anon_sym_EQ_EQ] = ACTIONS(6572), + [anon_sym_BANG_EQ] = ACTIONS(6572), + [anon_sym_GT] = ACTIONS(6565), + [anon_sym_GT_EQ] = ACTIONS(6572), + [anon_sym_LT_EQ] = ACTIONS(6565), + [anon_sym_LT] = ACTIONS(8171), + [anon_sym_LT_LT] = ACTIONS(6565), + [anon_sym_GT_GT] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(6572), + [anon_sym___attribute__] = ACTIONS(6572), + [anon_sym___attribute] = ACTIONS(6565), + [anon_sym_COLON] = ACTIONS(6565), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(6572), + [anon_sym_LBRACK] = ACTIONS(6572), + [anon_sym_EQ] = ACTIONS(6565), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_constexpr] = ACTIONS(6572), + [anon_sym_volatile] = ACTIONS(6572), + [anon_sym_restrict] = ACTIONS(6572), + [anon_sym___restrict__] = ACTIONS(6572), + [anon_sym__Atomic] = ACTIONS(6572), + [anon_sym__Noreturn] = ACTIONS(6572), + [anon_sym_noreturn] = ACTIONS(6572), + [anon_sym__Nonnull] = ACTIONS(6572), + [anon_sym_mutable] = ACTIONS(6572), + [anon_sym_constinit] = ACTIONS(6572), + [anon_sym_consteval] = ACTIONS(6572), + [anon_sym_alignas] = ACTIONS(6572), + [anon_sym__Alignas] = ACTIONS(6572), + [anon_sym_QMARK] = ACTIONS(6572), + [anon_sym_STAR_EQ] = ACTIONS(6572), + [anon_sym_SLASH_EQ] = ACTIONS(6572), + [anon_sym_PERCENT_EQ] = ACTIONS(6572), + [anon_sym_PLUS_EQ] = ACTIONS(6572), + [anon_sym_DASH_EQ] = ACTIONS(6572), + [anon_sym_LT_LT_EQ] = ACTIONS(6572), + [anon_sym_GT_GT_EQ] = ACTIONS(6572), + [anon_sym_AMP_EQ] = ACTIONS(6572), + [anon_sym_CARET_EQ] = ACTIONS(6572), + [anon_sym_PIPE_EQ] = ACTIONS(6572), + [anon_sym_and_eq] = ACTIONS(6572), + [anon_sym_or_eq] = ACTIONS(6572), + [anon_sym_xor_eq] = ACTIONS(6572), + [anon_sym_LT_EQ_GT] = ACTIONS(6572), + [anon_sym_or] = ACTIONS(6565), + [anon_sym_and] = ACTIONS(6565), + [anon_sym_bitor] = ACTIONS(6572), + [anon_sym_xor] = ACTIONS(6565), + [anon_sym_bitand] = ACTIONS(6572), + [anon_sym_not_eq] = ACTIONS(6572), + [anon_sym_DASH_DASH] = ACTIONS(6572), + [anon_sym_PLUS_PLUS] = ACTIONS(6572), + [anon_sym_DOT] = ACTIONS(6565), + [anon_sym_DOT_STAR] = ACTIONS(6572), + [anon_sym_DASH_GT] = ACTIONS(6565), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6572), + [anon_sym_decltype] = ACTIONS(6572), + [anon_sym_final] = ACTIONS(6572), + [anon_sym_override] = ACTIONS(6572), + [anon_sym_requires] = ACTIONS(6572), + [anon_sym_DASH_GT_STAR] = ACTIONS(6572), }, - [STATE(2519)] = { - [sym_template_argument_list] = STATE(2570), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), - [anon_sym_COMMA] = ACTIONS(6751), - [anon_sym_LPAREN2] = ACTIONS(6751), - [anon_sym_DASH] = ACTIONS(6746), - [anon_sym_PLUS] = ACTIONS(6746), - [anon_sym_STAR] = ACTIONS(6746), - [anon_sym_SLASH] = ACTIONS(6746), - [anon_sym_PERCENT] = ACTIONS(6746), - [anon_sym_PIPE_PIPE] = ACTIONS(6751), - [anon_sym_AMP_AMP] = ACTIONS(6751), - [anon_sym_PIPE] = ACTIONS(6746), - [anon_sym_CARET] = ACTIONS(6746), - [anon_sym_AMP] = ACTIONS(6746), - [anon_sym_EQ_EQ] = ACTIONS(6751), - [anon_sym_BANG_EQ] = ACTIONS(6751), - [anon_sym_GT] = ACTIONS(6746), - [anon_sym_GT_EQ] = ACTIONS(6746), - [anon_sym_LT_EQ] = ACTIONS(6746), - [anon_sym_LT] = ACTIONS(7718), - [anon_sym_LT_LT] = ACTIONS(6746), - [anon_sym_GT_GT] = ACTIONS(6746), - [anon_sym___extension__] = ACTIONS(6751), - [anon_sym___attribute__] = ACTIONS(6751), - [anon_sym___attribute] = ACTIONS(6746), - [anon_sym_COLON] = ACTIONS(6746), - [anon_sym_COLON_COLON] = ACTIONS(6748), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_LBRACK] = ACTIONS(6751), - [anon_sym_EQ] = ACTIONS(6746), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6751), - [anon_sym_volatile] = ACTIONS(6751), - [anon_sym_restrict] = ACTIONS(6751), - [anon_sym___restrict__] = ACTIONS(6751), - [anon_sym__Atomic] = ACTIONS(6751), - [anon_sym__Noreturn] = ACTIONS(6751), - [anon_sym_noreturn] = ACTIONS(6751), - [anon_sym__Nonnull] = ACTIONS(6751), - [anon_sym_mutable] = ACTIONS(6751), - [anon_sym_constinit] = ACTIONS(6751), - [anon_sym_consteval] = ACTIONS(6751), - [anon_sym_alignas] = ACTIONS(6751), - [anon_sym__Alignas] = ACTIONS(6751), - [anon_sym_QMARK] = ACTIONS(6751), - [anon_sym_STAR_EQ] = ACTIONS(6751), - [anon_sym_SLASH_EQ] = ACTIONS(6751), - [anon_sym_PERCENT_EQ] = ACTIONS(6751), - [anon_sym_PLUS_EQ] = ACTIONS(6751), - [anon_sym_DASH_EQ] = ACTIONS(6751), - [anon_sym_LT_LT_EQ] = ACTIONS(6751), - [anon_sym_GT_GT_EQ] = ACTIONS(6746), - [anon_sym_AMP_EQ] = ACTIONS(6751), - [anon_sym_CARET_EQ] = ACTIONS(6751), - [anon_sym_PIPE_EQ] = ACTIONS(6751), - [anon_sym_and_eq] = ACTIONS(6751), - [anon_sym_or_eq] = ACTIONS(6751), - [anon_sym_xor_eq] = ACTIONS(6751), - [anon_sym_LT_EQ_GT] = ACTIONS(6751), - [anon_sym_or] = ACTIONS(6746), - [anon_sym_and] = ACTIONS(6746), - [anon_sym_bitor] = ACTIONS(6751), - [anon_sym_xor] = ACTIONS(6746), - [anon_sym_bitand] = ACTIONS(6751), - [anon_sym_not_eq] = ACTIONS(6751), - [anon_sym_DASH_DASH] = ACTIONS(6751), - [anon_sym_PLUS_PLUS] = ACTIONS(6751), - [anon_sym_DOT] = ACTIONS(6746), - [anon_sym_DOT_STAR] = ACTIONS(6751), - [anon_sym_DASH_GT] = ACTIONS(6751), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6751), - [anon_sym_override] = ACTIONS(6751), - [anon_sym_GT2] = ACTIONS(6751), - [anon_sym_requires] = ACTIONS(6751), + [STATE(2397)] = { + [sym_identifier] = ACTIONS(7077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), + [anon_sym_COMMA] = ACTIONS(7079), + [anon_sym_LPAREN2] = ACTIONS(7079), + [anon_sym_DASH] = ACTIONS(7077), + [anon_sym_PLUS] = ACTIONS(7077), + [anon_sym_STAR] = ACTIONS(7077), + [anon_sym_SLASH] = ACTIONS(7077), + [anon_sym_PERCENT] = ACTIONS(7077), + [anon_sym_PIPE_PIPE] = ACTIONS(7079), + [anon_sym_AMP_AMP] = ACTIONS(7079), + [anon_sym_PIPE] = ACTIONS(7077), + [anon_sym_CARET] = ACTIONS(7077), + [anon_sym_AMP] = ACTIONS(7077), + [anon_sym_EQ_EQ] = ACTIONS(7079), + [anon_sym_BANG_EQ] = ACTIONS(7079), + [anon_sym_GT] = ACTIONS(7077), + [anon_sym_GT_EQ] = ACTIONS(7077), + [anon_sym_LT_EQ] = ACTIONS(7077), + [anon_sym_LT] = ACTIONS(7077), + [anon_sym_LT_LT] = ACTIONS(7077), + [anon_sym_GT_GT] = ACTIONS(7077), + [anon_sym___extension__] = ACTIONS(7077), + [anon_sym___attribute__] = ACTIONS(7077), + [anon_sym___attribute] = ACTIONS(7077), + [anon_sym_LBRACE] = ACTIONS(7079), + [anon_sym_signed] = ACTIONS(7077), + [anon_sym_unsigned] = ACTIONS(7077), + [anon_sym_long] = ACTIONS(7077), + [anon_sym_short] = ACTIONS(7077), + [anon_sym_LBRACK] = ACTIONS(7079), + [anon_sym_EQ] = ACTIONS(7077), + [anon_sym_const] = ACTIONS(7077), + [anon_sym_constexpr] = ACTIONS(7077), + [anon_sym_volatile] = ACTIONS(7077), + [anon_sym_restrict] = ACTIONS(7077), + [anon_sym___restrict__] = ACTIONS(7077), + [anon_sym__Atomic] = ACTIONS(7077), + [anon_sym__Noreturn] = ACTIONS(7077), + [anon_sym_noreturn] = ACTIONS(7077), + [anon_sym__Nonnull] = ACTIONS(7077), + [anon_sym_mutable] = ACTIONS(7077), + [anon_sym_constinit] = ACTIONS(7077), + [anon_sym_consteval] = ACTIONS(7077), + [anon_sym_alignas] = ACTIONS(7077), + [anon_sym__Alignas] = ACTIONS(7077), + [sym_primitive_type] = ACTIONS(7077), + [anon_sym_QMARK] = ACTIONS(7079), + [anon_sym_STAR_EQ] = ACTIONS(7079), + [anon_sym_SLASH_EQ] = ACTIONS(7079), + [anon_sym_PERCENT_EQ] = ACTIONS(7079), + [anon_sym_PLUS_EQ] = ACTIONS(7079), + [anon_sym_DASH_EQ] = ACTIONS(7079), + [anon_sym_LT_LT_EQ] = ACTIONS(7079), + [anon_sym_GT_GT_EQ] = ACTIONS(7077), + [anon_sym_AMP_EQ] = ACTIONS(7079), + [anon_sym_CARET_EQ] = ACTIONS(7079), + [anon_sym_PIPE_EQ] = ACTIONS(7079), + [anon_sym_and_eq] = ACTIONS(7077), + [anon_sym_or_eq] = ACTIONS(7077), + [anon_sym_xor_eq] = ACTIONS(7077), + [anon_sym_LT_EQ_GT] = ACTIONS(7079), + [anon_sym_or] = ACTIONS(7077), + [anon_sym_and] = ACTIONS(7077), + [anon_sym_bitor] = ACTIONS(7077), + [anon_sym_xor] = ACTIONS(7077), + [anon_sym_bitand] = ACTIONS(7077), + [anon_sym_not_eq] = ACTIONS(7077), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DOT] = ACTIONS(7077), + [anon_sym_DOT_STAR] = ACTIONS(7079), + [anon_sym_DASH_GT] = ACTIONS(7079), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7077), + [anon_sym_override] = ACTIONS(7077), + [anon_sym_GT2] = ACTIONS(7079), + [anon_sym_requires] = ACTIONS(7077), }, - [STATE(2520)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7215), - [anon_sym_COMMA] = ACTIONS(7215), - [anon_sym_RPAREN] = ACTIONS(7215), - [anon_sym_LPAREN2] = ACTIONS(7215), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_STAR] = ACTIONS(7213), - [anon_sym_SLASH] = ACTIONS(7213), - [anon_sym_PERCENT] = ACTIONS(7213), - [anon_sym_PIPE_PIPE] = ACTIONS(7215), - [anon_sym_AMP_AMP] = ACTIONS(7215), - [anon_sym_PIPE] = ACTIONS(7213), - [anon_sym_CARET] = ACTIONS(7213), - [anon_sym_AMP] = ACTIONS(7213), - [anon_sym_EQ_EQ] = ACTIONS(7215), - [anon_sym_BANG_EQ] = ACTIONS(7215), - [anon_sym_GT] = ACTIONS(7213), - [anon_sym_GT_EQ] = ACTIONS(7215), - [anon_sym_LT_EQ] = ACTIONS(7213), - [anon_sym_LT] = ACTIONS(7213), - [anon_sym_LT_LT] = ACTIONS(7213), - [anon_sym_GT_GT] = ACTIONS(7213), - [anon_sym___extension__] = ACTIONS(7215), - [anon_sym___attribute__] = ACTIONS(7215), - [anon_sym___attribute] = ACTIONS(7213), - [anon_sym_LBRACE] = ACTIONS(7215), - [anon_sym_signed] = ACTIONS(8172), - [anon_sym_unsigned] = ACTIONS(8172), - [anon_sym_long] = ACTIONS(8172), - [anon_sym_short] = ACTIONS(8172), - [anon_sym_LBRACK] = ACTIONS(7215), - [anon_sym_EQ] = ACTIONS(7213), - [anon_sym_const] = ACTIONS(7213), - [anon_sym_constexpr] = ACTIONS(7215), - [anon_sym_volatile] = ACTIONS(7215), - [anon_sym_restrict] = ACTIONS(7215), - [anon_sym___restrict__] = ACTIONS(7215), - [anon_sym__Atomic] = ACTIONS(7215), - [anon_sym__Noreturn] = ACTIONS(7215), - [anon_sym_noreturn] = ACTIONS(7215), - [anon_sym__Nonnull] = ACTIONS(7215), - [anon_sym_mutable] = ACTIONS(7215), - [anon_sym_constinit] = ACTIONS(7215), - [anon_sym_consteval] = ACTIONS(7215), - [anon_sym_alignas] = ACTIONS(7215), - [anon_sym__Alignas] = ACTIONS(7215), - [anon_sym_QMARK] = ACTIONS(7215), - [anon_sym_STAR_EQ] = ACTIONS(7215), - [anon_sym_SLASH_EQ] = ACTIONS(7215), - [anon_sym_PERCENT_EQ] = ACTIONS(7215), - [anon_sym_PLUS_EQ] = ACTIONS(7215), - [anon_sym_DASH_EQ] = ACTIONS(7215), - [anon_sym_LT_LT_EQ] = ACTIONS(7215), - [anon_sym_GT_GT_EQ] = ACTIONS(7215), - [anon_sym_AMP_EQ] = ACTIONS(7215), - [anon_sym_CARET_EQ] = ACTIONS(7215), - [anon_sym_PIPE_EQ] = ACTIONS(7215), - [anon_sym_LT_EQ_GT] = ACTIONS(7215), - [anon_sym_or] = ACTIONS(7215), - [anon_sym_and] = ACTIONS(7215), - [anon_sym_bitor] = ACTIONS(7215), - [anon_sym_xor] = ACTIONS(7215), - [anon_sym_bitand] = ACTIONS(7215), - [anon_sym_not_eq] = ACTIONS(7215), - [anon_sym_DASH_DASH] = ACTIONS(7215), - [anon_sym_PLUS_PLUS] = ACTIONS(7215), - [anon_sym_DOT] = ACTIONS(7213), - [anon_sym_DOT_STAR] = ACTIONS(7215), - [anon_sym_DASH_GT] = ACTIONS(7213), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7215), - [anon_sym_override] = ACTIONS(7215), - [anon_sym_requires] = ACTIONS(7215), - [anon_sym_DASH_GT_STAR] = ACTIONS(7215), + [STATE(2398)] = { + [sym_type_qualifier] = STATE(2421), + [sym_alignas_qualifier] = STATE(2636), + [aux_sym__type_definition_type_repeat1] = STATE(2421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), + [anon_sym_COMMA] = ACTIONS(6754), + [anon_sym_RPAREN] = ACTIONS(6754), + [anon_sym_LPAREN2] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6752), + [anon_sym_STAR] = ACTIONS(6752), + [anon_sym_SLASH] = ACTIONS(6752), + [anon_sym_PERCENT] = ACTIONS(6752), + [anon_sym_PIPE_PIPE] = ACTIONS(6754), + [anon_sym_AMP_AMP] = ACTIONS(6754), + [anon_sym_PIPE] = ACTIONS(6752), + [anon_sym_CARET] = ACTIONS(6752), + [anon_sym_AMP] = ACTIONS(6752), + [anon_sym_EQ_EQ] = ACTIONS(6754), + [anon_sym_BANG_EQ] = ACTIONS(6754), + [anon_sym_GT] = ACTIONS(6752), + [anon_sym_GT_EQ] = ACTIONS(6754), + [anon_sym_LT_EQ] = ACTIONS(6752), + [anon_sym_LT] = ACTIONS(6752), + [anon_sym_LT_LT] = ACTIONS(6752), + [anon_sym_GT_GT] = ACTIONS(6752), + [anon_sym___extension__] = ACTIONS(6762), + [anon_sym___attribute__] = ACTIONS(6754), + [anon_sym___attribute] = ACTIONS(6752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), + [anon_sym_LBRACK] = ACTIONS(6752), + [anon_sym_EQ] = ACTIONS(6752), + [anon_sym_const] = ACTIONS(6770), + [anon_sym_constexpr] = ACTIONS(6762), + [anon_sym_volatile] = ACTIONS(6762), + [anon_sym_restrict] = ACTIONS(6762), + [anon_sym___restrict__] = ACTIONS(6762), + [anon_sym__Atomic] = ACTIONS(6762), + [anon_sym__Noreturn] = ACTIONS(6762), + [anon_sym_noreturn] = ACTIONS(6762), + [anon_sym__Nonnull] = ACTIONS(6762), + [anon_sym_mutable] = ACTIONS(6762), + [anon_sym_constinit] = ACTIONS(6762), + [anon_sym_consteval] = ACTIONS(6762), + [anon_sym_alignas] = ACTIONS(6772), + [anon_sym__Alignas] = ACTIONS(6772), + [anon_sym_QMARK] = ACTIONS(6754), + [anon_sym_STAR_EQ] = ACTIONS(6754), + [anon_sym_SLASH_EQ] = ACTIONS(6754), + [anon_sym_PERCENT_EQ] = ACTIONS(6754), + [anon_sym_PLUS_EQ] = ACTIONS(6754), + [anon_sym_DASH_EQ] = ACTIONS(6754), + [anon_sym_LT_LT_EQ] = ACTIONS(6754), + [anon_sym_GT_GT_EQ] = ACTIONS(6754), + [anon_sym_AMP_EQ] = ACTIONS(6754), + [anon_sym_CARET_EQ] = ACTIONS(6754), + [anon_sym_PIPE_EQ] = ACTIONS(6754), + [anon_sym_LT_EQ_GT] = ACTIONS(6754), + [anon_sym_or] = ACTIONS(6754), + [anon_sym_and] = ACTIONS(6754), + [anon_sym_bitor] = ACTIONS(6754), + [anon_sym_xor] = ACTIONS(6754), + [anon_sym_bitand] = ACTIONS(6754), + [anon_sym_not_eq] = ACTIONS(6754), + [anon_sym_DASH_DASH] = ACTIONS(6754), + [anon_sym_PLUS_PLUS] = ACTIONS(6754), + [anon_sym_asm] = ACTIONS(6754), + [anon_sym___asm__] = ACTIONS(6754), + [anon_sym___asm] = ACTIONS(6752), + [anon_sym_DOT] = ACTIONS(6752), + [anon_sym_DOT_STAR] = ACTIONS(6754), + [anon_sym_DASH_GT] = ACTIONS(6752), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6754), + [anon_sym_override] = ACTIONS(6754), + [anon_sym_noexcept] = ACTIONS(6754), + [anon_sym_throw] = ACTIONS(6754), + [anon_sym_requires] = ACTIONS(6754), + [anon_sym_DASH_GT_STAR] = ACTIONS(6754), }, - [STATE(2521)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2339), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7385), - [anon_sym_COMMA] = ACTIONS(7385), - [anon_sym_RPAREN] = ACTIONS(7385), - [anon_sym_LPAREN2] = ACTIONS(7385), - [anon_sym_DASH] = ACTIONS(7383), - [anon_sym_PLUS] = ACTIONS(7383), - [anon_sym_STAR] = ACTIONS(7383), - [anon_sym_SLASH] = ACTIONS(7383), - [anon_sym_PERCENT] = ACTIONS(7383), - [anon_sym_PIPE_PIPE] = ACTIONS(7385), - [anon_sym_AMP_AMP] = ACTIONS(7385), - [anon_sym_PIPE] = ACTIONS(7383), - [anon_sym_CARET] = ACTIONS(7383), - [anon_sym_AMP] = ACTIONS(7383), - [anon_sym_EQ_EQ] = ACTIONS(7385), - [anon_sym_BANG_EQ] = ACTIONS(7385), - [anon_sym_GT] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7385), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_LT] = ACTIONS(7383), - [anon_sym_LT_LT] = ACTIONS(7383), - [anon_sym_GT_GT] = ACTIONS(7383), - [anon_sym___extension__] = ACTIONS(7385), - [anon_sym___attribute__] = ACTIONS(7385), - [anon_sym___attribute] = ACTIONS(7383), - [anon_sym_LBRACE] = ACTIONS(7385), - [anon_sym_signed] = ACTIONS(8135), - [anon_sym_unsigned] = ACTIONS(8135), - [anon_sym_long] = ACTIONS(8135), - [anon_sym_short] = ACTIONS(8135), - [anon_sym_LBRACK] = ACTIONS(7385), - [anon_sym_EQ] = ACTIONS(7383), - [anon_sym_const] = ACTIONS(7383), - [anon_sym_constexpr] = ACTIONS(7385), - [anon_sym_volatile] = ACTIONS(7385), - [anon_sym_restrict] = ACTIONS(7385), - [anon_sym___restrict__] = ACTIONS(7385), - [anon_sym__Atomic] = ACTIONS(7385), - [anon_sym__Noreturn] = ACTIONS(7385), - [anon_sym_noreturn] = ACTIONS(7385), - [anon_sym__Nonnull] = ACTIONS(7385), - [anon_sym_mutable] = ACTIONS(7385), - [anon_sym_constinit] = ACTIONS(7385), - [anon_sym_consteval] = ACTIONS(7385), - [anon_sym_alignas] = ACTIONS(7385), - [anon_sym__Alignas] = ACTIONS(7385), - [anon_sym_QMARK] = ACTIONS(7385), - [anon_sym_STAR_EQ] = ACTIONS(7385), - [anon_sym_SLASH_EQ] = ACTIONS(7385), - [anon_sym_PERCENT_EQ] = ACTIONS(7385), - [anon_sym_PLUS_EQ] = ACTIONS(7385), - [anon_sym_DASH_EQ] = ACTIONS(7385), - [anon_sym_LT_LT_EQ] = ACTIONS(7385), - [anon_sym_GT_GT_EQ] = ACTIONS(7385), - [anon_sym_AMP_EQ] = ACTIONS(7385), - [anon_sym_CARET_EQ] = ACTIONS(7385), - [anon_sym_PIPE_EQ] = ACTIONS(7385), - [anon_sym_LT_EQ_GT] = ACTIONS(7385), - [anon_sym_or] = ACTIONS(7385), - [anon_sym_and] = ACTIONS(7385), - [anon_sym_bitor] = ACTIONS(7385), - [anon_sym_xor] = ACTIONS(7385), - [anon_sym_bitand] = ACTIONS(7385), - [anon_sym_not_eq] = ACTIONS(7385), - [anon_sym_DASH_DASH] = ACTIONS(7385), - [anon_sym_PLUS_PLUS] = ACTIONS(7385), - [anon_sym_DOT] = ACTIONS(7383), - [anon_sym_DOT_STAR] = ACTIONS(7385), - [anon_sym_DASH_GT] = ACTIONS(7383), + [STATE(2399)] = { + [sym_attribute_specifier] = STATE(4124), + [sym_attribute_declaration] = STATE(4490), + [sym_gnu_asm_expression] = STATE(9129), + [sym_virtual_specifier] = STATE(4610), + [sym_ref_qualifier] = STATE(2480), + [sym__function_exception_specification] = STATE(2908), + [sym__function_attributes_end] = STATE(4298), + [sym__function_postfix] = STATE(4840), + [sym_trailing_return_type] = STATE(4339), + [sym_noexcept] = STATE(2908), + [sym_throw_specifier] = STATE(2908), + [sym_requires_clause] = STATE(4840), + [aux_sym_type_definition_repeat1] = STATE(4124), + [aux_sym_attributed_declarator_repeat1] = STATE(4490), + [aux_sym__function_postfix_repeat1] = STATE(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(8162), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(8165), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6646), + [anon_sym___attribute] = ACTIONS(6648), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8168), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7385), - [anon_sym_override] = ACTIONS(7385), - [anon_sym_requires] = ACTIONS(7385), - [anon_sym_DASH_GT_STAR] = ACTIONS(7385), + [anon_sym_final] = ACTIONS(8174), + [anon_sym_override] = ACTIONS(8174), + [anon_sym_noexcept] = ACTIONS(6662), + [anon_sym_throw] = ACTIONS(6664), + [anon_sym_requires] = ACTIONS(8177), + [anon_sym_DASH_GT_STAR] = ACTIONS(7791), }, - [STATE(2522)] = { - [sym_attribute_specifier] = STATE(2936), - [sym_enumerator_list] = STATE(2619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6987), - [anon_sym_COMMA] = ACTIONS(6987), - [anon_sym_RPAREN] = ACTIONS(6987), - [anon_sym_LPAREN2] = ACTIONS(6987), - [anon_sym_DASH] = ACTIONS(6985), - [anon_sym_PLUS] = ACTIONS(6985), - [anon_sym_STAR] = ACTIONS(6985), - [anon_sym_SLASH] = ACTIONS(6985), - [anon_sym_PERCENT] = ACTIONS(6985), - [anon_sym_PIPE_PIPE] = ACTIONS(6987), - [anon_sym_AMP_AMP] = ACTIONS(6987), - [anon_sym_PIPE] = ACTIONS(6985), - [anon_sym_CARET] = ACTIONS(6985), - [anon_sym_AMP] = ACTIONS(6985), - [anon_sym_EQ_EQ] = ACTIONS(6987), - [anon_sym_BANG_EQ] = ACTIONS(6987), - [anon_sym_GT] = ACTIONS(6985), - [anon_sym_GT_EQ] = ACTIONS(6987), - [anon_sym_LT_EQ] = ACTIONS(6985), - [anon_sym_LT] = ACTIONS(6985), - [anon_sym_LT_LT] = ACTIONS(6985), - [anon_sym_GT_GT] = ACTIONS(6985), - [anon_sym___extension__] = ACTIONS(6987), - [anon_sym___attribute__] = ACTIONS(7813), - [anon_sym___attribute] = ACTIONS(7815), - [anon_sym_LBRACE] = ACTIONS(7992), - [anon_sym_LBRACK] = ACTIONS(6987), - [anon_sym_EQ] = ACTIONS(6985), - [anon_sym_const] = ACTIONS(6985), - [anon_sym_constexpr] = ACTIONS(6987), - [anon_sym_volatile] = ACTIONS(6987), - [anon_sym_restrict] = ACTIONS(6987), - [anon_sym___restrict__] = ACTIONS(6987), - [anon_sym__Atomic] = ACTIONS(6987), - [anon_sym__Noreturn] = ACTIONS(6987), - [anon_sym_noreturn] = ACTIONS(6987), - [anon_sym__Nonnull] = ACTIONS(6987), - [anon_sym_mutable] = ACTIONS(6987), - [anon_sym_constinit] = ACTIONS(6987), - [anon_sym_consteval] = ACTIONS(6987), - [anon_sym_alignas] = ACTIONS(6987), - [anon_sym__Alignas] = ACTIONS(6987), - [anon_sym_QMARK] = ACTIONS(6987), - [anon_sym_STAR_EQ] = ACTIONS(6987), - [anon_sym_SLASH_EQ] = ACTIONS(6987), - [anon_sym_PERCENT_EQ] = ACTIONS(6987), - [anon_sym_PLUS_EQ] = ACTIONS(6987), - [anon_sym_DASH_EQ] = ACTIONS(6987), - [anon_sym_LT_LT_EQ] = ACTIONS(6987), - [anon_sym_GT_GT_EQ] = ACTIONS(6987), - [anon_sym_AMP_EQ] = ACTIONS(6987), - [anon_sym_CARET_EQ] = ACTIONS(6987), - [anon_sym_PIPE_EQ] = ACTIONS(6987), - [anon_sym_and_eq] = ACTIONS(6987), - [anon_sym_or_eq] = ACTIONS(6987), - [anon_sym_xor_eq] = ACTIONS(6987), - [anon_sym_LT_EQ_GT] = ACTIONS(6987), - [anon_sym_or] = ACTIONS(6985), - [anon_sym_and] = ACTIONS(6985), - [anon_sym_bitor] = ACTIONS(6987), - [anon_sym_xor] = ACTIONS(6985), - [anon_sym_bitand] = ACTIONS(6987), - [anon_sym_not_eq] = ACTIONS(6987), - [anon_sym_DASH_DASH] = ACTIONS(6987), - [anon_sym_PLUS_PLUS] = ACTIONS(6987), - [anon_sym_DOT] = ACTIONS(6985), - [anon_sym_DOT_STAR] = ACTIONS(6987), - [anon_sym_DASH_GT] = ACTIONS(6985), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6987), - [anon_sym_override] = ACTIONS(6987), - [anon_sym_requires] = ACTIONS(6987), - [anon_sym_DASH_GT_STAR] = ACTIONS(6987), + [STATE(2400)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2422), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7703), + [anon_sym_COMMA] = ACTIONS(7703), + [anon_sym_RPAREN] = ACTIONS(7703), + [anon_sym_LPAREN2] = ACTIONS(7703), + [anon_sym_DASH] = ACTIONS(7701), + [anon_sym_PLUS] = ACTIONS(7701), + [anon_sym_STAR] = ACTIONS(7701), + [anon_sym_SLASH] = ACTIONS(7701), + [anon_sym_PERCENT] = ACTIONS(7701), + [anon_sym_PIPE_PIPE] = ACTIONS(7703), + [anon_sym_AMP_AMP] = ACTIONS(7703), + [anon_sym_PIPE] = ACTIONS(7701), + [anon_sym_CARET] = ACTIONS(7701), + [anon_sym_AMP] = ACTIONS(7701), + [anon_sym_EQ_EQ] = ACTIONS(7703), + [anon_sym_BANG_EQ] = ACTIONS(7703), + [anon_sym_GT] = ACTIONS(7701), + [anon_sym_GT_EQ] = ACTIONS(7703), + [anon_sym_LT_EQ] = ACTIONS(7701), + [anon_sym_LT] = ACTIONS(7701), + [anon_sym_LT_LT] = ACTIONS(7701), + [anon_sym_GT_GT] = ACTIONS(7701), + [anon_sym___extension__] = ACTIONS(7703), + [anon_sym___attribute__] = ACTIONS(7703), + [anon_sym___attribute] = ACTIONS(7701), + [anon_sym_LBRACE] = ACTIONS(7703), + [anon_sym_signed] = ACTIONS(8180), + [anon_sym_unsigned] = ACTIONS(8180), + [anon_sym_long] = ACTIONS(8180), + [anon_sym_short] = ACTIONS(8180), + [anon_sym_LBRACK] = ACTIONS(7703), + [anon_sym_EQ] = ACTIONS(7701), + [anon_sym_const] = ACTIONS(7701), + [anon_sym_constexpr] = ACTIONS(7703), + [anon_sym_volatile] = ACTIONS(7703), + [anon_sym_restrict] = ACTIONS(7703), + [anon_sym___restrict__] = ACTIONS(7703), + [anon_sym__Atomic] = ACTIONS(7703), + [anon_sym__Noreturn] = ACTIONS(7703), + [anon_sym_noreturn] = ACTIONS(7703), + [anon_sym__Nonnull] = ACTIONS(7703), + [anon_sym_mutable] = ACTIONS(7703), + [anon_sym_constinit] = ACTIONS(7703), + [anon_sym_consteval] = ACTIONS(7703), + [anon_sym_alignas] = ACTIONS(7703), + [anon_sym__Alignas] = ACTIONS(7703), + [anon_sym_QMARK] = ACTIONS(7703), + [anon_sym_STAR_EQ] = ACTIONS(7703), + [anon_sym_SLASH_EQ] = ACTIONS(7703), + [anon_sym_PERCENT_EQ] = ACTIONS(7703), + [anon_sym_PLUS_EQ] = ACTIONS(7703), + [anon_sym_DASH_EQ] = ACTIONS(7703), + [anon_sym_LT_LT_EQ] = ACTIONS(7703), + [anon_sym_GT_GT_EQ] = ACTIONS(7703), + [anon_sym_AMP_EQ] = ACTIONS(7703), + [anon_sym_CARET_EQ] = ACTIONS(7703), + [anon_sym_PIPE_EQ] = ACTIONS(7703), + [anon_sym_and_eq] = ACTIONS(7703), + [anon_sym_or_eq] = ACTIONS(7703), + [anon_sym_xor_eq] = ACTIONS(7703), + [anon_sym_LT_EQ_GT] = ACTIONS(7703), + [anon_sym_or] = ACTIONS(7701), + [anon_sym_and] = ACTIONS(7701), + [anon_sym_bitor] = ACTIONS(7703), + [anon_sym_xor] = ACTIONS(7701), + [anon_sym_bitand] = ACTIONS(7703), + [anon_sym_not_eq] = ACTIONS(7703), + [anon_sym_DASH_DASH] = ACTIONS(7703), + [anon_sym_PLUS_PLUS] = ACTIONS(7703), + [anon_sym_DOT] = ACTIONS(7701), + [anon_sym_DOT_STAR] = ACTIONS(7703), + [anon_sym_DASH_GT] = ACTIONS(7701), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7703), + [anon_sym_override] = ACTIONS(7703), + [anon_sym_requires] = ACTIONS(7703), + [anon_sym_DASH_GT_STAR] = ACTIONS(7703), }, - [STATE(2523)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6846), - [anon_sym_COMMA] = ACTIONS(6846), - [anon_sym_RPAREN] = ACTIONS(6846), - [anon_sym_LPAREN2] = ACTIONS(6846), - [anon_sym_DASH] = ACTIONS(6844), - [anon_sym_PLUS] = ACTIONS(6844), - [anon_sym_STAR] = ACTIONS(6844), - [anon_sym_SLASH] = ACTIONS(6844), - [anon_sym_PERCENT] = ACTIONS(6844), - [anon_sym_PIPE_PIPE] = ACTIONS(6846), - [anon_sym_AMP_AMP] = ACTIONS(6846), - [anon_sym_PIPE] = ACTIONS(6844), - [anon_sym_CARET] = ACTIONS(6844), - [anon_sym_AMP] = ACTIONS(6844), - [anon_sym_EQ_EQ] = ACTIONS(6846), - [anon_sym_BANG_EQ] = ACTIONS(6846), - [anon_sym_GT] = ACTIONS(6844), - [anon_sym_GT_EQ] = ACTIONS(6846), - [anon_sym_LT_EQ] = ACTIONS(6844), - [anon_sym_LT] = ACTIONS(6844), - [anon_sym_LT_LT] = ACTIONS(6844), - [anon_sym_GT_GT] = ACTIONS(6844), - [anon_sym___extension__] = ACTIONS(6846), - [anon_sym___attribute__] = ACTIONS(6846), - [anon_sym___attribute] = ACTIONS(6844), - [anon_sym_COLON] = ACTIONS(6844), - [anon_sym_COLON_COLON] = ACTIONS(6846), - [anon_sym_LBRACE] = ACTIONS(6846), - [anon_sym_LBRACK] = ACTIONS(6846), - [anon_sym_EQ] = ACTIONS(6844), - [anon_sym_const] = ACTIONS(6844), - [anon_sym_constexpr] = ACTIONS(6846), - [anon_sym_volatile] = ACTIONS(6846), - [anon_sym_restrict] = ACTIONS(6846), - [anon_sym___restrict__] = ACTIONS(6846), - [anon_sym__Atomic] = ACTIONS(6846), - [anon_sym__Noreturn] = ACTIONS(6846), - [anon_sym_noreturn] = ACTIONS(6846), - [anon_sym__Nonnull] = ACTIONS(6846), - [anon_sym_mutable] = ACTIONS(6846), - [anon_sym_constinit] = ACTIONS(6846), - [anon_sym_consteval] = ACTIONS(6846), - [anon_sym_alignas] = ACTIONS(6846), - [anon_sym__Alignas] = ACTIONS(6846), - [anon_sym_QMARK] = ACTIONS(6846), - [anon_sym_STAR_EQ] = ACTIONS(6846), - [anon_sym_SLASH_EQ] = ACTIONS(6846), - [anon_sym_PERCENT_EQ] = ACTIONS(6846), - [anon_sym_PLUS_EQ] = ACTIONS(6846), - [anon_sym_DASH_EQ] = ACTIONS(6846), - [anon_sym_LT_LT_EQ] = ACTIONS(6846), - [anon_sym_GT_GT_EQ] = ACTIONS(6846), - [anon_sym_AMP_EQ] = ACTIONS(6846), - [anon_sym_CARET_EQ] = ACTIONS(6846), - [anon_sym_PIPE_EQ] = ACTIONS(6846), - [anon_sym_and_eq] = ACTIONS(6846), - [anon_sym_or_eq] = ACTIONS(6846), - [anon_sym_xor_eq] = ACTIONS(6846), - [anon_sym_LT_EQ_GT] = ACTIONS(6846), - [anon_sym_or] = ACTIONS(6844), - [anon_sym_and] = ACTIONS(6844), - [anon_sym_bitor] = ACTIONS(6846), - [anon_sym_xor] = ACTIONS(6844), - [anon_sym_bitand] = ACTIONS(6846), - [anon_sym_not_eq] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DOT] = ACTIONS(6844), - [anon_sym_DOT_STAR] = ACTIONS(6846), - [anon_sym_DASH_GT] = ACTIONS(6844), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6846), - [anon_sym_override] = ACTIONS(6846), - [anon_sym_requires] = ACTIONS(6846), - [anon_sym_DASH_GT_STAR] = ACTIONS(6846), + [STATE(2401)] = { + [sym__abstract_declarator] = STATE(5080), + [sym_abstract_parenthesized_declarator] = STATE(4825), + [sym_abstract_pointer_declarator] = STATE(4825), + [sym_abstract_function_declarator] = STATE(4825), + [sym_abstract_array_declarator] = STATE(4825), + [sym_type_qualifier] = STATE(2270), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1974), + [sym_abstract_reference_declarator] = STATE(4825), + [sym__function_declarator_seq] = STATE(4934), + [aux_sym__type_definition_type_repeat1] = STATE(2270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), + [anon_sym_COMMA] = ACTIONS(7355), + [anon_sym_RPAREN] = ACTIONS(7355), + [anon_sym_LPAREN2] = ACTIONS(7006), + [anon_sym_DASH] = ACTIONS(7353), + [anon_sym_PLUS] = ACTIONS(7353), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_SLASH] = ACTIONS(7353), + [anon_sym_PERCENT] = ACTIONS(7353), + [anon_sym_PIPE_PIPE] = ACTIONS(7355), + [anon_sym_AMP_AMP] = ACTIONS(7297), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_CARET] = ACTIONS(7353), + [anon_sym_AMP] = ACTIONS(7299), + [anon_sym_EQ_EQ] = ACTIONS(7355), + [anon_sym_BANG_EQ] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_EQ] = ACTIONS(7355), + [anon_sym_LT_EQ] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_LT_LT] = ACTIONS(7353), + [anon_sym_GT_GT] = ACTIONS(7353), + [anon_sym___extension__] = ACTIONS(7014), + [anon_sym_LBRACK] = ACTIONS(7022), + [anon_sym_EQ] = ACTIONS(7353), + [anon_sym_const] = ACTIONS(7024), + [anon_sym_constexpr] = ACTIONS(7014), + [anon_sym_volatile] = ACTIONS(7014), + [anon_sym_restrict] = ACTIONS(7014), + [anon_sym___restrict__] = ACTIONS(7014), + [anon_sym__Atomic] = ACTIONS(7014), + [anon_sym__Noreturn] = ACTIONS(7014), + [anon_sym_noreturn] = ACTIONS(7014), + [anon_sym__Nonnull] = ACTIONS(7014), + [anon_sym_mutable] = ACTIONS(7014), + [anon_sym_constinit] = ACTIONS(7014), + [anon_sym_consteval] = ACTIONS(7014), + [anon_sym_alignas] = ACTIONS(7026), + [anon_sym__Alignas] = ACTIONS(7026), + [anon_sym_QMARK] = ACTIONS(7355), + [anon_sym_STAR_EQ] = ACTIONS(7355), + [anon_sym_SLASH_EQ] = ACTIONS(7355), + [anon_sym_PERCENT_EQ] = ACTIONS(7355), + [anon_sym_PLUS_EQ] = ACTIONS(7355), + [anon_sym_DASH_EQ] = ACTIONS(7355), + [anon_sym_LT_LT_EQ] = ACTIONS(7355), + [anon_sym_GT_GT_EQ] = ACTIONS(7355), + [anon_sym_AMP_EQ] = ACTIONS(7355), + [anon_sym_CARET_EQ] = ACTIONS(7355), + [anon_sym_PIPE_EQ] = ACTIONS(7355), + [anon_sym_and_eq] = ACTIONS(7355), + [anon_sym_or_eq] = ACTIONS(7355), + [anon_sym_xor_eq] = ACTIONS(7355), + [anon_sym_LT_EQ_GT] = ACTIONS(7355), + [anon_sym_or] = ACTIONS(7353), + [anon_sym_and] = ACTIONS(7353), + [anon_sym_bitor] = ACTIONS(7355), + [anon_sym_xor] = ACTIONS(7353), + [anon_sym_bitand] = ACTIONS(7355), + [anon_sym_not_eq] = ACTIONS(7355), + [anon_sym_DASH_DASH] = ACTIONS(7355), + [anon_sym_PLUS_PLUS] = ACTIONS(7355), + [anon_sym_DOT] = ACTIONS(7353), + [anon_sym_DOT_STAR] = ACTIONS(7355), + [anon_sym_DASH_GT] = ACTIONS(7353), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7355), }, - [STATE(2524)] = { - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(5999), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_parameter_declaration] = STATE(10257), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(5572), + [STATE(2402)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(9862), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_optional_parameter_declaration] = STATE(9862), + [sym_variadic_parameter_declaration] = STATE(9862), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), + [anon_sym_RPAREN] = ACTIONS(2328), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), + [anon_sym_virtual] = ACTIONS(2310), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -344826,9181 +348141,8149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5629), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(2525)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6233), - [anon_sym_COMMA] = ACTIONS(6233), - [anon_sym_RPAREN] = ACTIONS(6233), - [anon_sym_LPAREN2] = ACTIONS(6233), - [anon_sym_DASH] = ACTIONS(6226), - [anon_sym_PLUS] = ACTIONS(6226), - [anon_sym_STAR] = ACTIONS(6226), - [anon_sym_SLASH] = ACTIONS(6226), - [anon_sym_PERCENT] = ACTIONS(6226), - [anon_sym_PIPE_PIPE] = ACTIONS(6233), - [anon_sym_AMP_AMP] = ACTIONS(6233), - [anon_sym_PIPE] = ACTIONS(6226), - [anon_sym_CARET] = ACTIONS(6226), - [anon_sym_AMP] = ACTIONS(6226), - [anon_sym_EQ_EQ] = ACTIONS(6233), - [anon_sym_BANG_EQ] = ACTIONS(6233), - [anon_sym_GT] = ACTIONS(6226), - [anon_sym_GT_EQ] = ACTIONS(6233), - [anon_sym_LT_EQ] = ACTIONS(6226), - [anon_sym_LT] = ACTIONS(6226), - [anon_sym_LT_LT] = ACTIONS(6226), - [anon_sym_GT_GT] = ACTIONS(6226), - [anon_sym_SEMI] = ACTIONS(6233), - [anon_sym___extension__] = ACTIONS(6233), - [anon_sym___attribute__] = ACTIONS(6233), - [anon_sym___attribute] = ACTIONS(6226), - [anon_sym_COLON] = ACTIONS(6226), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6233), - [anon_sym_EQ] = ACTIONS(6226), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6233), - [anon_sym_volatile] = ACTIONS(6233), - [anon_sym_restrict] = ACTIONS(6233), - [anon_sym___restrict__] = ACTIONS(6233), - [anon_sym__Atomic] = ACTIONS(6233), - [anon_sym__Noreturn] = ACTIONS(6233), - [anon_sym_noreturn] = ACTIONS(6233), - [anon_sym__Nonnull] = ACTIONS(6233), - [anon_sym_mutable] = ACTIONS(6233), - [anon_sym_constinit] = ACTIONS(6233), - [anon_sym_consteval] = ACTIONS(6233), - [anon_sym_alignas] = ACTIONS(6233), - [anon_sym__Alignas] = ACTIONS(6233), - [anon_sym_QMARK] = ACTIONS(6233), - [anon_sym_STAR_EQ] = ACTIONS(6233), - [anon_sym_SLASH_EQ] = ACTIONS(6233), - [anon_sym_PERCENT_EQ] = ACTIONS(6233), - [anon_sym_PLUS_EQ] = ACTIONS(6233), - [anon_sym_DASH_EQ] = ACTIONS(6233), - [anon_sym_LT_LT_EQ] = ACTIONS(6233), - [anon_sym_GT_GT_EQ] = ACTIONS(6233), - [anon_sym_AMP_EQ] = ACTIONS(6233), - [anon_sym_CARET_EQ] = ACTIONS(6233), - [anon_sym_PIPE_EQ] = ACTIONS(6233), - [anon_sym_LT_EQ_GT] = ACTIONS(6233), - [anon_sym_or] = ACTIONS(6233), - [anon_sym_and] = ACTIONS(6233), - [anon_sym_bitor] = ACTIONS(6233), - [anon_sym_xor] = ACTIONS(6233), - [anon_sym_bitand] = ACTIONS(6233), - [anon_sym_not_eq] = ACTIONS(6233), - [anon_sym_DASH_DASH] = ACTIONS(6233), - [anon_sym_PLUS_PLUS] = ACTIONS(6233), - [anon_sym_DOT] = ACTIONS(6226), - [anon_sym_DOT_STAR] = ACTIONS(6233), - [anon_sym_DASH_GT] = ACTIONS(6226), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6233), - [anon_sym_decltype] = ACTIONS(6233), - [anon_sym_final] = ACTIONS(6233), - [anon_sym_override] = ACTIONS(6233), - [anon_sym_requires] = ACTIONS(6233), - [anon_sym_DASH_GT_STAR] = ACTIONS(6233), - }, - [STATE(2526)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6722), - [anon_sym_COMMA] = ACTIONS(6722), - [anon_sym_RPAREN] = ACTIONS(6722), - [anon_sym_LPAREN2] = ACTIONS(6722), - [anon_sym_DASH] = ACTIONS(6720), - [anon_sym_PLUS] = ACTIONS(6720), - [anon_sym_STAR] = ACTIONS(6720), - [anon_sym_SLASH] = ACTIONS(6720), - [anon_sym_PERCENT] = ACTIONS(6720), - [anon_sym_PIPE_PIPE] = ACTIONS(6722), - [anon_sym_AMP_AMP] = ACTIONS(6722), - [anon_sym_PIPE] = ACTIONS(6720), - [anon_sym_CARET] = ACTIONS(6720), - [anon_sym_AMP] = ACTIONS(6720), - [anon_sym_EQ_EQ] = ACTIONS(6722), - [anon_sym_BANG_EQ] = ACTIONS(6722), - [anon_sym_GT] = ACTIONS(6720), - [anon_sym_GT_EQ] = ACTIONS(6722), - [anon_sym_LT_EQ] = ACTIONS(6720), - [anon_sym_LT] = ACTIONS(6720), - [anon_sym_LT_LT] = ACTIONS(6720), - [anon_sym_GT_GT] = ACTIONS(6720), - [anon_sym___extension__] = ACTIONS(6722), - [anon_sym___attribute__] = ACTIONS(6722), - [anon_sym___attribute] = ACTIONS(6720), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6722), - [anon_sym_LBRACK] = ACTIONS(6720), - [anon_sym_EQ] = ACTIONS(6720), - [anon_sym_const] = ACTIONS(6720), - [anon_sym_constexpr] = ACTIONS(6722), - [anon_sym_volatile] = ACTIONS(6722), - [anon_sym_restrict] = ACTIONS(6722), - [anon_sym___restrict__] = ACTIONS(6722), - [anon_sym__Atomic] = ACTIONS(6722), - [anon_sym__Noreturn] = ACTIONS(6722), - [anon_sym_noreturn] = ACTIONS(6722), - [anon_sym__Nonnull] = ACTIONS(6722), - [anon_sym_mutable] = ACTIONS(6722), - [anon_sym_constinit] = ACTIONS(6722), - [anon_sym_consteval] = ACTIONS(6722), - [anon_sym_alignas] = ACTIONS(6722), - [anon_sym__Alignas] = ACTIONS(6722), - [anon_sym_QMARK] = ACTIONS(6722), - [anon_sym_STAR_EQ] = ACTIONS(6722), - [anon_sym_SLASH_EQ] = ACTIONS(6722), - [anon_sym_PERCENT_EQ] = ACTIONS(6722), - [anon_sym_PLUS_EQ] = ACTIONS(6722), - [anon_sym_DASH_EQ] = ACTIONS(6722), - [anon_sym_LT_LT_EQ] = ACTIONS(6722), - [anon_sym_GT_GT_EQ] = ACTIONS(6722), - [anon_sym_AMP_EQ] = ACTIONS(6722), - [anon_sym_CARET_EQ] = ACTIONS(6722), - [anon_sym_PIPE_EQ] = ACTIONS(6722), - [anon_sym_LT_EQ_GT] = ACTIONS(6722), - [anon_sym_or] = ACTIONS(6722), - [anon_sym_and] = ACTIONS(6722), - [anon_sym_bitor] = ACTIONS(6722), - [anon_sym_xor] = ACTIONS(6722), - [anon_sym_bitand] = ACTIONS(6722), - [anon_sym_not_eq] = ACTIONS(6722), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_asm] = ACTIONS(6722), - [anon_sym___asm__] = ACTIONS(6722), - [anon_sym___asm] = ACTIONS(6720), - [anon_sym_DOT] = ACTIONS(6720), - [anon_sym_DOT_STAR] = ACTIONS(6722), - [anon_sym_DASH_GT] = ACTIONS(6720), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6722), - [anon_sym_override] = ACTIONS(6722), - [anon_sym_noexcept] = ACTIONS(6722), - [anon_sym_throw] = ACTIONS(6722), - [anon_sym_requires] = ACTIONS(6722), - [anon_sym_DASH_GT_STAR] = ACTIONS(6722), - }, - [STATE(2527)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2339), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), - [anon_sym_COMMA] = ACTIONS(7201), - [anon_sym_RPAREN] = ACTIONS(7201), - [anon_sym_LPAREN2] = ACTIONS(7201), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_STAR] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7199), - [anon_sym_PERCENT] = ACTIONS(7199), - [anon_sym_PIPE_PIPE] = ACTIONS(7201), - [anon_sym_AMP_AMP] = ACTIONS(7201), - [anon_sym_PIPE] = ACTIONS(7199), - [anon_sym_CARET] = ACTIONS(7199), - [anon_sym_AMP] = ACTIONS(7199), - [anon_sym_EQ_EQ] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7201), - [anon_sym_GT] = ACTIONS(7199), - [anon_sym_GT_EQ] = ACTIONS(7201), - [anon_sym_LT_EQ] = ACTIONS(7199), - [anon_sym_LT] = ACTIONS(7199), - [anon_sym_LT_LT] = ACTIONS(7199), - [anon_sym_GT_GT] = ACTIONS(7199), - [anon_sym___extension__] = ACTIONS(7201), - [anon_sym___attribute__] = ACTIONS(7201), - [anon_sym___attribute] = ACTIONS(7199), - [anon_sym_LBRACE] = ACTIONS(7201), - [anon_sym_signed] = ACTIONS(8135), - [anon_sym_unsigned] = ACTIONS(8135), - [anon_sym_long] = ACTIONS(8135), - [anon_sym_short] = ACTIONS(8135), - [anon_sym_LBRACK] = ACTIONS(7201), - [anon_sym_EQ] = ACTIONS(7199), - [anon_sym_const] = ACTIONS(7199), - [anon_sym_constexpr] = ACTIONS(7201), - [anon_sym_volatile] = ACTIONS(7201), - [anon_sym_restrict] = ACTIONS(7201), - [anon_sym___restrict__] = ACTIONS(7201), - [anon_sym__Atomic] = ACTIONS(7201), - [anon_sym__Noreturn] = ACTIONS(7201), - [anon_sym_noreturn] = ACTIONS(7201), - [anon_sym__Nonnull] = ACTIONS(7201), - [anon_sym_mutable] = ACTIONS(7201), - [anon_sym_constinit] = ACTIONS(7201), - [anon_sym_consteval] = ACTIONS(7201), - [anon_sym_alignas] = ACTIONS(7201), - [anon_sym__Alignas] = ACTIONS(7201), - [anon_sym_QMARK] = ACTIONS(7201), - [anon_sym_STAR_EQ] = ACTIONS(7201), - [anon_sym_SLASH_EQ] = ACTIONS(7201), - [anon_sym_PERCENT_EQ] = ACTIONS(7201), - [anon_sym_PLUS_EQ] = ACTIONS(7201), - [anon_sym_DASH_EQ] = ACTIONS(7201), - [anon_sym_LT_LT_EQ] = ACTIONS(7201), - [anon_sym_GT_GT_EQ] = ACTIONS(7201), - [anon_sym_AMP_EQ] = ACTIONS(7201), - [anon_sym_CARET_EQ] = ACTIONS(7201), - [anon_sym_PIPE_EQ] = ACTIONS(7201), - [anon_sym_LT_EQ_GT] = ACTIONS(7201), - [anon_sym_or] = ACTIONS(7201), - [anon_sym_and] = ACTIONS(7201), - [anon_sym_bitor] = ACTIONS(7201), - [anon_sym_xor] = ACTIONS(7201), - [anon_sym_bitand] = ACTIONS(7201), - [anon_sym_not_eq] = ACTIONS(7201), - [anon_sym_DASH_DASH] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7201), - [anon_sym_DOT] = ACTIONS(7199), - [anon_sym_DOT_STAR] = ACTIONS(7201), - [anon_sym_DASH_GT] = ACTIONS(7199), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7201), - [anon_sym_override] = ACTIONS(7201), - [anon_sym_requires] = ACTIONS(7201), - [anon_sym_DASH_GT_STAR] = ACTIONS(7201), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2528)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6792), - [anon_sym_COMMA] = ACTIONS(6792), - [anon_sym_RPAREN] = ACTIONS(6792), - [anon_sym_LPAREN2] = ACTIONS(6792), - [anon_sym_DASH] = ACTIONS(6790), - [anon_sym_PLUS] = ACTIONS(6790), - [anon_sym_STAR] = ACTIONS(6790), - [anon_sym_SLASH] = ACTIONS(6790), - [anon_sym_PERCENT] = ACTIONS(6790), - [anon_sym_PIPE_PIPE] = ACTIONS(6792), - [anon_sym_AMP_AMP] = ACTIONS(6792), - [anon_sym_PIPE] = ACTIONS(6790), - [anon_sym_CARET] = ACTIONS(6790), - [anon_sym_AMP] = ACTIONS(6790), - [anon_sym_EQ_EQ] = ACTIONS(6792), - [anon_sym_BANG_EQ] = ACTIONS(6792), - [anon_sym_GT] = ACTIONS(6790), - [anon_sym_GT_EQ] = ACTIONS(6792), - [anon_sym_LT_EQ] = ACTIONS(6790), - [anon_sym_LT] = ACTIONS(6790), - [anon_sym_LT_LT] = ACTIONS(6790), - [anon_sym_GT_GT] = ACTIONS(6790), - [anon_sym___extension__] = ACTIONS(6792), - [anon_sym___attribute__] = ACTIONS(6792), - [anon_sym___attribute] = ACTIONS(6790), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), - [anon_sym_LBRACK] = ACTIONS(6790), - [anon_sym_EQ] = ACTIONS(6790), - [anon_sym_const] = ACTIONS(6790), - [anon_sym_constexpr] = ACTIONS(6792), - [anon_sym_volatile] = ACTIONS(6792), - [anon_sym_restrict] = ACTIONS(6792), - [anon_sym___restrict__] = ACTIONS(6792), - [anon_sym__Atomic] = ACTIONS(6792), - [anon_sym__Noreturn] = ACTIONS(6792), - [anon_sym_noreturn] = ACTIONS(6792), - [anon_sym__Nonnull] = ACTIONS(6792), - [anon_sym_mutable] = ACTIONS(6792), - [anon_sym_constinit] = ACTIONS(6792), - [anon_sym_consteval] = ACTIONS(6792), - [anon_sym_alignas] = ACTIONS(6792), - [anon_sym__Alignas] = ACTIONS(6792), - [anon_sym_QMARK] = ACTIONS(6792), - [anon_sym_STAR_EQ] = ACTIONS(6792), - [anon_sym_SLASH_EQ] = ACTIONS(6792), - [anon_sym_PERCENT_EQ] = ACTIONS(6792), - [anon_sym_PLUS_EQ] = ACTIONS(6792), - [anon_sym_DASH_EQ] = ACTIONS(6792), - [anon_sym_LT_LT_EQ] = ACTIONS(6792), - [anon_sym_GT_GT_EQ] = ACTIONS(6792), - [anon_sym_AMP_EQ] = ACTIONS(6792), - [anon_sym_CARET_EQ] = ACTIONS(6792), - [anon_sym_PIPE_EQ] = ACTIONS(6792), - [anon_sym_LT_EQ_GT] = ACTIONS(6792), - [anon_sym_or] = ACTIONS(6792), - [anon_sym_and] = ACTIONS(6792), - [anon_sym_bitor] = ACTIONS(6792), - [anon_sym_xor] = ACTIONS(6792), - [anon_sym_bitand] = ACTIONS(6792), - [anon_sym_not_eq] = ACTIONS(6792), - [anon_sym_DASH_DASH] = ACTIONS(6792), - [anon_sym_PLUS_PLUS] = ACTIONS(6792), - [anon_sym_asm] = ACTIONS(6792), - [anon_sym___asm__] = ACTIONS(6792), - [anon_sym___asm] = ACTIONS(6790), - [anon_sym_DOT] = ACTIONS(6790), - [anon_sym_DOT_STAR] = ACTIONS(6792), - [anon_sym_DASH_GT] = ACTIONS(6790), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6792), - [anon_sym_override] = ACTIONS(6792), - [anon_sym_noexcept] = ACTIONS(6792), - [anon_sym_throw] = ACTIONS(6792), - [anon_sym_requires] = ACTIONS(6792), - [anon_sym_DASH_GT_STAR] = ACTIONS(6792), - }, - [STATE(2529)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6796), - [anon_sym_COMMA] = ACTIONS(6796), - [anon_sym_RPAREN] = ACTIONS(6796), - [anon_sym_LPAREN2] = ACTIONS(6796), - [anon_sym_DASH] = ACTIONS(6794), - [anon_sym_PLUS] = ACTIONS(6794), - [anon_sym_STAR] = ACTIONS(6794), - [anon_sym_SLASH] = ACTIONS(6794), - [anon_sym_PERCENT] = ACTIONS(6794), - [anon_sym_PIPE_PIPE] = ACTIONS(6796), - [anon_sym_AMP_AMP] = ACTIONS(6796), - [anon_sym_PIPE] = ACTIONS(6794), - [anon_sym_CARET] = ACTIONS(6794), - [anon_sym_AMP] = ACTIONS(6794), - [anon_sym_EQ_EQ] = ACTIONS(6796), - [anon_sym_BANG_EQ] = ACTIONS(6796), - [anon_sym_GT] = ACTIONS(6794), - [anon_sym_GT_EQ] = ACTIONS(6796), - [anon_sym_LT_EQ] = ACTIONS(6794), - [anon_sym_LT] = ACTIONS(6794), - [anon_sym_LT_LT] = ACTIONS(6794), - [anon_sym_GT_GT] = ACTIONS(6794), - [anon_sym___extension__] = ACTIONS(6796), - [anon_sym___attribute__] = ACTIONS(6796), - [anon_sym___attribute] = ACTIONS(6794), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6796), - [anon_sym_LBRACK] = ACTIONS(6794), - [anon_sym_EQ] = ACTIONS(6794), - [anon_sym_const] = ACTIONS(6794), - [anon_sym_constexpr] = ACTIONS(6796), - [anon_sym_volatile] = ACTIONS(6796), - [anon_sym_restrict] = ACTIONS(6796), - [anon_sym___restrict__] = ACTIONS(6796), - [anon_sym__Atomic] = ACTIONS(6796), - [anon_sym__Noreturn] = ACTIONS(6796), - [anon_sym_noreturn] = ACTIONS(6796), - [anon_sym__Nonnull] = ACTIONS(6796), - [anon_sym_mutable] = ACTIONS(6796), - [anon_sym_constinit] = ACTIONS(6796), - [anon_sym_consteval] = ACTIONS(6796), - [anon_sym_alignas] = ACTIONS(6796), - [anon_sym__Alignas] = ACTIONS(6796), - [anon_sym_QMARK] = ACTIONS(6796), - [anon_sym_STAR_EQ] = ACTIONS(6796), - [anon_sym_SLASH_EQ] = ACTIONS(6796), - [anon_sym_PERCENT_EQ] = ACTIONS(6796), - [anon_sym_PLUS_EQ] = ACTIONS(6796), - [anon_sym_DASH_EQ] = ACTIONS(6796), - [anon_sym_LT_LT_EQ] = ACTIONS(6796), - [anon_sym_GT_GT_EQ] = ACTIONS(6796), - [anon_sym_AMP_EQ] = ACTIONS(6796), - [anon_sym_CARET_EQ] = ACTIONS(6796), - [anon_sym_PIPE_EQ] = ACTIONS(6796), - [anon_sym_LT_EQ_GT] = ACTIONS(6796), - [anon_sym_or] = ACTIONS(6796), - [anon_sym_and] = ACTIONS(6796), - [anon_sym_bitor] = ACTIONS(6796), - [anon_sym_xor] = ACTIONS(6796), - [anon_sym_bitand] = ACTIONS(6796), - [anon_sym_not_eq] = ACTIONS(6796), - [anon_sym_DASH_DASH] = ACTIONS(6796), - [anon_sym_PLUS_PLUS] = ACTIONS(6796), - [anon_sym_asm] = ACTIONS(6796), - [anon_sym___asm__] = ACTIONS(6796), - [anon_sym___asm] = ACTIONS(6794), - [anon_sym_DOT] = ACTIONS(6794), - [anon_sym_DOT_STAR] = ACTIONS(6796), - [anon_sym_DASH_GT] = ACTIONS(6794), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6796), - [anon_sym_override] = ACTIONS(6796), - [anon_sym_noexcept] = ACTIONS(6796), - [anon_sym_throw] = ACTIONS(6796), - [anon_sym_requires] = ACTIONS(6796), - [anon_sym_DASH_GT_STAR] = ACTIONS(6796), - }, - [STATE(2530)] = { - [sym_template_argument_list] = STATE(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), - [anon_sym_COMMA] = ACTIONS(6751), - [anon_sym_LPAREN2] = ACTIONS(6751), - [anon_sym_DASH] = ACTIONS(6746), - [anon_sym_PLUS] = ACTIONS(6746), - [anon_sym_STAR] = ACTIONS(6746), - [anon_sym_SLASH] = ACTIONS(6746), - [anon_sym_PERCENT] = ACTIONS(6746), - [anon_sym_PIPE_PIPE] = ACTIONS(6751), - [anon_sym_AMP_AMP] = ACTIONS(6751), - [anon_sym_PIPE] = ACTIONS(6746), - [anon_sym_CARET] = ACTIONS(6746), - [anon_sym_AMP] = ACTIONS(6746), - [anon_sym_EQ_EQ] = ACTIONS(6751), - [anon_sym_BANG_EQ] = ACTIONS(6751), - [anon_sym_GT] = ACTIONS(6746), - [anon_sym_GT_EQ] = ACTIONS(6751), - [anon_sym_LT_EQ] = ACTIONS(6746), - [anon_sym_LT] = ACTIONS(7681), - [anon_sym_LT_LT] = ACTIONS(6746), - [anon_sym_GT_GT] = ACTIONS(6746), - [anon_sym___extension__] = ACTIONS(6751), - [anon_sym___attribute__] = ACTIONS(6751), - [anon_sym___attribute] = ACTIONS(6746), - [anon_sym_COLON] = ACTIONS(6746), - [anon_sym_COLON_COLON] = ACTIONS(6748), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_LBRACK] = ACTIONS(6751), - [anon_sym_RBRACK] = ACTIONS(6751), - [anon_sym_EQ] = ACTIONS(6746), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6751), - [anon_sym_volatile] = ACTIONS(6751), - [anon_sym_restrict] = ACTIONS(6751), - [anon_sym___restrict__] = ACTIONS(6751), - [anon_sym__Atomic] = ACTIONS(6751), - [anon_sym__Noreturn] = ACTIONS(6751), - [anon_sym_noreturn] = ACTIONS(6751), - [anon_sym__Nonnull] = ACTIONS(6751), - [anon_sym_mutable] = ACTIONS(6751), - [anon_sym_constinit] = ACTIONS(6751), - [anon_sym_consteval] = ACTIONS(6751), - [anon_sym_alignas] = ACTIONS(6751), - [anon_sym__Alignas] = ACTIONS(6751), - [anon_sym_QMARK] = ACTIONS(6751), - [anon_sym_STAR_EQ] = ACTIONS(6751), - [anon_sym_SLASH_EQ] = ACTIONS(6751), - [anon_sym_PERCENT_EQ] = ACTIONS(6751), - [anon_sym_PLUS_EQ] = ACTIONS(6751), - [anon_sym_DASH_EQ] = ACTIONS(6751), - [anon_sym_LT_LT_EQ] = ACTIONS(6751), - [anon_sym_GT_GT_EQ] = ACTIONS(6751), - [anon_sym_AMP_EQ] = ACTIONS(6751), - [anon_sym_CARET_EQ] = ACTIONS(6751), - [anon_sym_PIPE_EQ] = ACTIONS(6751), - [anon_sym_and_eq] = ACTIONS(6751), - [anon_sym_or_eq] = ACTIONS(6751), - [anon_sym_xor_eq] = ACTIONS(6751), - [anon_sym_LT_EQ_GT] = ACTIONS(6751), - [anon_sym_or] = ACTIONS(6746), - [anon_sym_and] = ACTIONS(6746), - [anon_sym_bitor] = ACTIONS(6751), - [anon_sym_xor] = ACTIONS(6746), - [anon_sym_bitand] = ACTIONS(6751), - [anon_sym_not_eq] = ACTIONS(6751), - [anon_sym_DASH_DASH] = ACTIONS(6751), - [anon_sym_PLUS_PLUS] = ACTIONS(6751), - [anon_sym_DOT] = ACTIONS(6746), - [anon_sym_DOT_STAR] = ACTIONS(6751), - [anon_sym_DASH_GT] = ACTIONS(6751), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6751), - [anon_sym_override] = ACTIONS(6751), - [anon_sym_requires] = ACTIONS(6751), - }, - [STATE(2531)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6808), - [anon_sym_COMMA] = ACTIONS(6808), - [anon_sym_RPAREN] = ACTIONS(6808), - [anon_sym_LPAREN2] = ACTIONS(6808), - [anon_sym_DASH] = ACTIONS(6806), - [anon_sym_PLUS] = ACTIONS(6806), - [anon_sym_STAR] = ACTIONS(6806), - [anon_sym_SLASH] = ACTIONS(6806), - [anon_sym_PERCENT] = ACTIONS(6806), - [anon_sym_PIPE_PIPE] = ACTIONS(6808), - [anon_sym_AMP_AMP] = ACTIONS(6808), - [anon_sym_PIPE] = ACTIONS(6806), - [anon_sym_CARET] = ACTIONS(6806), - [anon_sym_AMP] = ACTIONS(6806), - [anon_sym_EQ_EQ] = ACTIONS(6808), - [anon_sym_BANG_EQ] = ACTIONS(6808), - [anon_sym_GT] = ACTIONS(6806), - [anon_sym_GT_EQ] = ACTIONS(6808), - [anon_sym_LT_EQ] = ACTIONS(6806), - [anon_sym_LT] = ACTIONS(6806), - [anon_sym_LT_LT] = ACTIONS(6806), - [anon_sym_GT_GT] = ACTIONS(6806), - [anon_sym___extension__] = ACTIONS(6808), - [sym_ms_restrict_modifier] = ACTIONS(6806), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6808), - [sym_ms_signed_ptr_modifier] = ACTIONS(6808), - [anon_sym__unaligned] = ACTIONS(6808), - [anon_sym___unaligned] = ACTIONS(6808), - [anon_sym_LBRACK] = ACTIONS(6808), - [anon_sym_EQ] = ACTIONS(6806), - [anon_sym_const] = ACTIONS(6806), - [anon_sym_constexpr] = ACTIONS(6808), - [anon_sym_volatile] = ACTIONS(6808), - [anon_sym_restrict] = ACTIONS(6808), - [anon_sym___restrict__] = ACTIONS(6808), - [anon_sym__Atomic] = ACTIONS(6808), - [anon_sym__Noreturn] = ACTIONS(6808), - [anon_sym_noreturn] = ACTIONS(6808), - [anon_sym__Nonnull] = ACTIONS(6808), - [anon_sym_mutable] = ACTIONS(6808), - [anon_sym_constinit] = ACTIONS(6808), - [anon_sym_consteval] = ACTIONS(6808), - [anon_sym_alignas] = ACTIONS(6808), - [anon_sym__Alignas] = ACTIONS(6808), - [anon_sym_QMARK] = ACTIONS(6808), - [anon_sym_STAR_EQ] = ACTIONS(6808), - [anon_sym_SLASH_EQ] = ACTIONS(6808), - [anon_sym_PERCENT_EQ] = ACTIONS(6808), - [anon_sym_PLUS_EQ] = ACTIONS(6808), - [anon_sym_DASH_EQ] = ACTIONS(6808), - [anon_sym_LT_LT_EQ] = ACTIONS(6808), - [anon_sym_GT_GT_EQ] = ACTIONS(6808), - [anon_sym_AMP_EQ] = ACTIONS(6808), - [anon_sym_CARET_EQ] = ACTIONS(6808), - [anon_sym_PIPE_EQ] = ACTIONS(6808), - [anon_sym_and_eq] = ACTIONS(6808), - [anon_sym_or_eq] = ACTIONS(6808), - [anon_sym_xor_eq] = ACTIONS(6808), - [anon_sym_LT_EQ_GT] = ACTIONS(6808), - [anon_sym_or] = ACTIONS(6806), - [anon_sym_and] = ACTIONS(6806), - [anon_sym_bitor] = ACTIONS(6808), - [anon_sym_xor] = ACTIONS(6806), - [anon_sym_bitand] = ACTIONS(6808), - [anon_sym_not_eq] = ACTIONS(6808), - [anon_sym_DASH_DASH] = ACTIONS(6808), - [anon_sym_PLUS_PLUS] = ACTIONS(6808), - [anon_sym_DOT] = ACTIONS(6806), - [anon_sym_DOT_STAR] = ACTIONS(6808), - [anon_sym_DASH_GT] = ACTIONS(6806), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6808), - [anon_sym_override] = ACTIONS(6808), - [anon_sym_requires] = ACTIONS(6808), - [anon_sym_DASH_GT_STAR] = ACTIONS(6808), - }, - [STATE(2532)] = { - [sym_attribute_specifier] = STATE(4247), - [sym_attribute_declaration] = STATE(4729), - [sym_gnu_asm_expression] = STATE(8972), - [sym_virtual_specifier] = STATE(4992), - [sym_ref_qualifier] = STATE(2565), - [sym__function_exception_specification] = STATE(3171), - [sym__function_attributes_end] = STATE(4507), - [sym__function_postfix] = STATE(5531), - [sym_trailing_return_type] = STATE(4602), - [sym_noexcept] = STATE(3171), - [sym_throw_specifier] = STATE(3171), - [sym_requires_clause] = STATE(5531), - [aux_sym_type_definition_repeat1] = STATE(4247), - [aux_sym_attributed_declarator_repeat1] = STATE(4729), - [aux_sym__function_postfix_repeat1] = STATE(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(8158), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(8161), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6410), - [anon_sym___attribute] = ACTIONS(6412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7544), - [anon_sym_and] = ACTIONS(7544), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7544), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(8164), + [STATE(2403)] = { + [sym__abstract_declarator] = STATE(5247), + [sym_abstract_parenthesized_declarator] = STATE(5693), + [sym_abstract_pointer_declarator] = STATE(5693), + [sym_abstract_function_declarator] = STATE(5693), + [sym_abstract_array_declarator] = STATE(5693), + [sym_type_qualifier] = STATE(2367), + [sym_alignas_qualifier] = STATE(2576), + [sym_parameter_list] = STATE(1991), + [sym_abstract_reference_declarator] = STATE(5693), + [sym__function_declarator_seq] = STATE(5694), + [aux_sym__type_definition_type_repeat1] = STATE(2367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), + [anon_sym_COMMA] = ACTIONS(7351), + [anon_sym_RPAREN] = ACTIONS(7351), + [anon_sym_LPAREN2] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_PLUS] = ACTIONS(7349), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_SLASH] = ACTIONS(7349), + [anon_sym_PERCENT] = ACTIONS(7349), + [anon_sym_PIPE_PIPE] = ACTIONS(7351), + [anon_sym_AMP_AMP] = ACTIONS(7309), + [anon_sym_PIPE] = ACTIONS(7349), + [anon_sym_CARET] = ACTIONS(7349), + [anon_sym_AMP] = ACTIONS(7311), + [anon_sym_EQ_EQ] = ACTIONS(7351), + [anon_sym_BANG_EQ] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7349), + [anon_sym_GT_EQ] = ACTIONS(7351), + [anon_sym_LT_EQ] = ACTIONS(7349), + [anon_sym_LT] = ACTIONS(7349), + [anon_sym_LT_LT] = ACTIONS(7349), + [anon_sym_GT_GT] = ACTIONS(7349), + [anon_sym___extension__] = ACTIONS(7313), + [anon_sym_LBRACK] = ACTIONS(7321), + [anon_sym_EQ] = ACTIONS(7349), + [anon_sym_const] = ACTIONS(7323), + [anon_sym_constexpr] = ACTIONS(7313), + [anon_sym_volatile] = ACTIONS(7313), + [anon_sym_restrict] = ACTIONS(7313), + [anon_sym___restrict__] = ACTIONS(7313), + [anon_sym__Atomic] = ACTIONS(7313), + [anon_sym__Noreturn] = ACTIONS(7313), + [anon_sym_noreturn] = ACTIONS(7313), + [anon_sym__Nonnull] = ACTIONS(7313), + [anon_sym_mutable] = ACTIONS(7313), + [anon_sym_constinit] = ACTIONS(7313), + [anon_sym_consteval] = ACTIONS(7313), + [anon_sym_alignas] = ACTIONS(7325), + [anon_sym__Alignas] = ACTIONS(7325), + [anon_sym_QMARK] = ACTIONS(7351), + [anon_sym_STAR_EQ] = ACTIONS(7351), + [anon_sym_SLASH_EQ] = ACTIONS(7351), + [anon_sym_PERCENT_EQ] = ACTIONS(7351), + [anon_sym_PLUS_EQ] = ACTIONS(7351), + [anon_sym_DASH_EQ] = ACTIONS(7351), + [anon_sym_LT_LT_EQ] = ACTIONS(7351), + [anon_sym_GT_GT_EQ] = ACTIONS(7351), + [anon_sym_AMP_EQ] = ACTIONS(7351), + [anon_sym_CARET_EQ] = ACTIONS(7351), + [anon_sym_PIPE_EQ] = ACTIONS(7351), + [anon_sym_LT_EQ_GT] = ACTIONS(7351), + [anon_sym_or] = ACTIONS(7351), + [anon_sym_and] = ACTIONS(7351), + [anon_sym_bitor] = ACTIONS(7351), + [anon_sym_xor] = ACTIONS(7351), + [anon_sym_bitand] = ACTIONS(7351), + [anon_sym_not_eq] = ACTIONS(7351), + [anon_sym_DASH_DASH] = ACTIONS(7351), + [anon_sym_PLUS_PLUS] = ACTIONS(7351), + [anon_sym_DOT] = ACTIONS(7349), + [anon_sym_DOT_STAR] = ACTIONS(7351), + [anon_sym_DASH_GT] = ACTIONS(7349), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8174), - [anon_sym_override] = ACTIONS(8174), - [anon_sym_noexcept] = ACTIONS(6426), - [anon_sym_throw] = ACTIONS(6428), - [anon_sym_requires] = ACTIONS(8177), - [anon_sym_DASH_GT_STAR] = ACTIONS(7544), - }, - [STATE(2533)] = { - [sym_identifier] = ACTIONS(2768), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), - [anon_sym_COMMA] = ACTIONS(2758), - [aux_sym_preproc_if_token2] = ACTIONS(2758), - [aux_sym_preproc_else_token1] = ACTIONS(2758), - [aux_sym_preproc_elif_token1] = ACTIONS(2768), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2758), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2758), - [anon_sym_LPAREN2] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_SLASH] = ACTIONS(2768), - [anon_sym_PERCENT] = ACTIONS(2768), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2768), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_LT_EQ] = ACTIONS(2768), - [anon_sym_LT] = ACTIONS(2768), - [anon_sym_LT_LT] = ACTIONS(2768), - [anon_sym_GT_GT] = ACTIONS(2768), - [anon_sym___extension__] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2758), - [anon_sym_RBRACK] = ACTIONS(2758), - [anon_sym_EQ] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [anon_sym_QMARK] = ACTIONS(2758), - [anon_sym_STAR_EQ] = ACTIONS(2758), - [anon_sym_SLASH_EQ] = ACTIONS(2758), - [anon_sym_PERCENT_EQ] = ACTIONS(2758), - [anon_sym_PLUS_EQ] = ACTIONS(2758), - [anon_sym_DASH_EQ] = ACTIONS(2758), - [anon_sym_LT_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_GT_EQ] = ACTIONS(2758), - [anon_sym_AMP_EQ] = ACTIONS(2758), - [anon_sym_CARET_EQ] = ACTIONS(2758), - [anon_sym_PIPE_EQ] = ACTIONS(2758), - [anon_sym_and_eq] = ACTIONS(2768), - [anon_sym_or_eq] = ACTIONS(2768), - [anon_sym_xor_eq] = ACTIONS(2768), - [anon_sym_LT_EQ_GT] = ACTIONS(2758), - [anon_sym_or] = ACTIONS(2768), - [anon_sym_and] = ACTIONS(2768), - [anon_sym_bitor] = ACTIONS(2768), - [anon_sym_xor] = ACTIONS(2768), - [anon_sym_bitand] = ACTIONS(2768), - [anon_sym_not_eq] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2758), - [anon_sym_PLUS_PLUS] = ACTIONS(2758), - [anon_sym_DOT] = ACTIONS(2768), - [anon_sym_DOT_STAR] = ACTIONS(2758), - [anon_sym_DASH_GT] = ACTIONS(2758), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2768), - [anon_sym_override] = ACTIONS(2768), - [anon_sym_requires] = ACTIONS(2768), - }, - [STATE(2534)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7183), - [anon_sym_COMMA] = ACTIONS(7183), - [anon_sym_RPAREN] = ACTIONS(7183), - [anon_sym_LPAREN2] = ACTIONS(7183), - [anon_sym_DASH] = ACTIONS(7185), - [anon_sym_PLUS] = ACTIONS(7185), - [anon_sym_STAR] = ACTIONS(7185), - [anon_sym_SLASH] = ACTIONS(7185), - [anon_sym_PERCENT] = ACTIONS(7185), - [anon_sym_PIPE_PIPE] = ACTIONS(7183), - [anon_sym_AMP_AMP] = ACTIONS(7183), - [anon_sym_PIPE] = ACTIONS(7185), - [anon_sym_CARET] = ACTIONS(7185), - [anon_sym_AMP] = ACTIONS(7185), - [anon_sym_EQ_EQ] = ACTIONS(7183), - [anon_sym_BANG_EQ] = ACTIONS(7183), - [anon_sym_GT] = ACTIONS(7185), - [anon_sym_GT_EQ] = ACTIONS(7183), - [anon_sym_LT_EQ] = ACTIONS(7185), - [anon_sym_LT] = ACTIONS(7185), - [anon_sym_LT_LT] = ACTIONS(7185), - [anon_sym_GT_GT] = ACTIONS(7185), - [anon_sym___extension__] = ACTIONS(7183), - [anon_sym___attribute__] = ACTIONS(7183), - [anon_sym___attribute] = ACTIONS(7185), - [anon_sym_COLON] = ACTIONS(7185), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(7183), - [anon_sym_LBRACK] = ACTIONS(7183), - [anon_sym_EQ] = ACTIONS(7185), - [anon_sym_const] = ACTIONS(7185), - [anon_sym_constexpr] = ACTIONS(7183), - [anon_sym_volatile] = ACTIONS(7183), - [anon_sym_restrict] = ACTIONS(7183), - [anon_sym___restrict__] = ACTIONS(7183), - [anon_sym__Atomic] = ACTIONS(7183), - [anon_sym__Noreturn] = ACTIONS(7183), - [anon_sym_noreturn] = ACTIONS(7183), - [anon_sym__Nonnull] = ACTIONS(7183), - [anon_sym_mutable] = ACTIONS(7183), - [anon_sym_constinit] = ACTIONS(7183), - [anon_sym_consteval] = ACTIONS(7183), - [anon_sym_alignas] = ACTIONS(7183), - [anon_sym__Alignas] = ACTIONS(7183), - [anon_sym_QMARK] = ACTIONS(7183), - [anon_sym_STAR_EQ] = ACTIONS(7183), - [anon_sym_SLASH_EQ] = ACTIONS(7183), - [anon_sym_PERCENT_EQ] = ACTIONS(7183), - [anon_sym_PLUS_EQ] = ACTIONS(7183), - [anon_sym_DASH_EQ] = ACTIONS(7183), - [anon_sym_LT_LT_EQ] = ACTIONS(7183), - [anon_sym_GT_GT_EQ] = ACTIONS(7183), - [anon_sym_AMP_EQ] = ACTIONS(7183), - [anon_sym_CARET_EQ] = ACTIONS(7183), - [anon_sym_PIPE_EQ] = ACTIONS(7183), - [anon_sym_and_eq] = ACTIONS(7183), - [anon_sym_or_eq] = ACTIONS(7183), - [anon_sym_xor_eq] = ACTIONS(7183), - [anon_sym_LT_EQ_GT] = ACTIONS(7183), - [anon_sym_or] = ACTIONS(7185), - [anon_sym_and] = ACTIONS(7185), - [anon_sym_bitor] = ACTIONS(7183), - [anon_sym_xor] = ACTIONS(7185), - [anon_sym_bitand] = ACTIONS(7183), - [anon_sym_not_eq] = ACTIONS(7183), - [anon_sym_DASH_DASH] = ACTIONS(7183), - [anon_sym_PLUS_PLUS] = ACTIONS(7183), - [anon_sym_DOT] = ACTIONS(7185), - [anon_sym_DOT_STAR] = ACTIONS(7183), - [anon_sym_DASH_GT] = ACTIONS(7185), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7183), - [anon_sym_override] = ACTIONS(7183), - [anon_sym_requires] = ACTIONS(7183), - [anon_sym_DASH_GT_STAR] = ACTIONS(7183), + [anon_sym_final] = ACTIONS(7351), + [anon_sym_override] = ACTIONS(7351), + [anon_sym_requires] = ACTIONS(7351), + [anon_sym_DASH_GT_STAR] = ACTIONS(7351), }, - [STATE(2535)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2339), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7397), - [anon_sym_COMMA] = ACTIONS(7397), - [anon_sym_RPAREN] = ACTIONS(7397), - [anon_sym_LPAREN2] = ACTIONS(7397), - [anon_sym_DASH] = ACTIONS(7395), - [anon_sym_PLUS] = ACTIONS(7395), - [anon_sym_STAR] = ACTIONS(7395), - [anon_sym_SLASH] = ACTIONS(7395), - [anon_sym_PERCENT] = ACTIONS(7395), - [anon_sym_PIPE_PIPE] = ACTIONS(7397), - [anon_sym_AMP_AMP] = ACTIONS(7397), - [anon_sym_PIPE] = ACTIONS(7395), - [anon_sym_CARET] = ACTIONS(7395), - [anon_sym_AMP] = ACTIONS(7395), - [anon_sym_EQ_EQ] = ACTIONS(7397), - [anon_sym_BANG_EQ] = ACTIONS(7397), - [anon_sym_GT] = ACTIONS(7395), - [anon_sym_GT_EQ] = ACTIONS(7397), - [anon_sym_LT_EQ] = ACTIONS(7395), - [anon_sym_LT] = ACTIONS(7395), - [anon_sym_LT_LT] = ACTIONS(7395), - [anon_sym_GT_GT] = ACTIONS(7395), - [anon_sym___extension__] = ACTIONS(7397), - [anon_sym___attribute__] = ACTIONS(7397), - [anon_sym___attribute] = ACTIONS(7395), - [anon_sym_LBRACE] = ACTIONS(7397), - [anon_sym_signed] = ACTIONS(8135), - [anon_sym_unsigned] = ACTIONS(8135), - [anon_sym_long] = ACTIONS(8135), - [anon_sym_short] = ACTIONS(8135), - [anon_sym_LBRACK] = ACTIONS(7397), - [anon_sym_EQ] = ACTIONS(7395), - [anon_sym_const] = ACTIONS(7395), - [anon_sym_constexpr] = ACTIONS(7397), - [anon_sym_volatile] = ACTIONS(7397), - [anon_sym_restrict] = ACTIONS(7397), - [anon_sym___restrict__] = ACTIONS(7397), - [anon_sym__Atomic] = ACTIONS(7397), - [anon_sym__Noreturn] = ACTIONS(7397), - [anon_sym_noreturn] = ACTIONS(7397), - [anon_sym__Nonnull] = ACTIONS(7397), - [anon_sym_mutable] = ACTIONS(7397), - [anon_sym_constinit] = ACTIONS(7397), - [anon_sym_consteval] = ACTIONS(7397), - [anon_sym_alignas] = ACTIONS(7397), - [anon_sym__Alignas] = ACTIONS(7397), - [anon_sym_QMARK] = ACTIONS(7397), - [anon_sym_STAR_EQ] = ACTIONS(7397), - [anon_sym_SLASH_EQ] = ACTIONS(7397), - [anon_sym_PERCENT_EQ] = ACTIONS(7397), - [anon_sym_PLUS_EQ] = ACTIONS(7397), - [anon_sym_DASH_EQ] = ACTIONS(7397), - [anon_sym_LT_LT_EQ] = ACTIONS(7397), - [anon_sym_GT_GT_EQ] = ACTIONS(7397), - [anon_sym_AMP_EQ] = ACTIONS(7397), - [anon_sym_CARET_EQ] = ACTIONS(7397), - [anon_sym_PIPE_EQ] = ACTIONS(7397), - [anon_sym_LT_EQ_GT] = ACTIONS(7397), - [anon_sym_or] = ACTIONS(7397), - [anon_sym_and] = ACTIONS(7397), - [anon_sym_bitor] = ACTIONS(7397), - [anon_sym_xor] = ACTIONS(7397), - [anon_sym_bitand] = ACTIONS(7397), - [anon_sym_not_eq] = ACTIONS(7397), - [anon_sym_DASH_DASH] = ACTIONS(7397), - [anon_sym_PLUS_PLUS] = ACTIONS(7397), - [anon_sym_DOT] = ACTIONS(7395), - [anon_sym_DOT_STAR] = ACTIONS(7397), - [anon_sym_DASH_GT] = ACTIONS(7395), + [STATE(2404)] = { + [sym__abstract_declarator] = STATE(5248), + [sym_abstract_parenthesized_declarator] = STATE(5693), + [sym_abstract_pointer_declarator] = STATE(5693), + [sym_abstract_function_declarator] = STATE(5693), + [sym_abstract_array_declarator] = STATE(5693), + [sym_type_qualifier] = STATE(2430), + [sym_alignas_qualifier] = STATE(2576), + [sym_parameter_list] = STATE(1991), + [sym_abstract_reference_declarator] = STATE(5693), + [sym__function_declarator_seq] = STATE(5694), + [aux_sym__type_definition_type_repeat1] = STATE(2430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_RPAREN] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(7309), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(7311), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(7313), + [anon_sym_LBRACK] = ACTIONS(7321), + [anon_sym_EQ] = ACTIONS(7341), + [anon_sym_const] = ACTIONS(7323), + [anon_sym_constexpr] = ACTIONS(7313), + [anon_sym_volatile] = ACTIONS(7313), + [anon_sym_restrict] = ACTIONS(7313), + [anon_sym___restrict__] = ACTIONS(7313), + [anon_sym__Atomic] = ACTIONS(7313), + [anon_sym__Noreturn] = ACTIONS(7313), + [anon_sym_noreturn] = ACTIONS(7313), + [anon_sym__Nonnull] = ACTIONS(7313), + [anon_sym_mutable] = ACTIONS(7313), + [anon_sym_constinit] = ACTIONS(7313), + [anon_sym_consteval] = ACTIONS(7313), + [anon_sym_alignas] = ACTIONS(7325), + [anon_sym__Alignas] = ACTIONS(7325), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_STAR_EQ] = ACTIONS(7343), + [anon_sym_SLASH_EQ] = ACTIONS(7343), + [anon_sym_PERCENT_EQ] = ACTIONS(7343), + [anon_sym_PLUS_EQ] = ACTIONS(7343), + [anon_sym_DASH_EQ] = ACTIONS(7343), + [anon_sym_LT_LT_EQ] = ACTIONS(7343), + [anon_sym_GT_GT_EQ] = ACTIONS(7343), + [anon_sym_AMP_EQ] = ACTIONS(7343), + [anon_sym_CARET_EQ] = ACTIONS(7343), + [anon_sym_PIPE_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7343), + [anon_sym_and] = ACTIONS(7343), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7343), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7341), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7397), - [anon_sym_override] = ACTIONS(7397), - [anon_sym_requires] = ACTIONS(7397), - [anon_sym_DASH_GT_STAR] = ACTIONS(7397), + [anon_sym_final] = ACTIONS(7343), + [anon_sym_override] = ACTIONS(7343), + [anon_sym_requires] = ACTIONS(7343), + [anon_sym_DASH_GT_STAR] = ACTIONS(7343), }, - [STATE(2536)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2835), - [sym_ms_pointer_modifier] = STATE(2536), - [aux_sym_pointer_declarator_repeat1] = STATE(2536), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6602), - [anon_sym_COMMA] = ACTIONS(6602), - [anon_sym_RPAREN] = ACTIONS(6602), - [anon_sym_LPAREN2] = ACTIONS(6602), - [anon_sym_DASH] = ACTIONS(6600), - [anon_sym_PLUS] = ACTIONS(6600), - [anon_sym_STAR] = ACTIONS(6600), - [anon_sym_SLASH] = ACTIONS(6600), - [anon_sym_PERCENT] = ACTIONS(6600), - [anon_sym_PIPE_PIPE] = ACTIONS(6602), - [anon_sym_AMP_AMP] = ACTIONS(6602), - [anon_sym_PIPE] = ACTIONS(6600), - [anon_sym_CARET] = ACTIONS(6600), - [anon_sym_AMP] = ACTIONS(6600), - [anon_sym_EQ_EQ] = ACTIONS(6602), - [anon_sym_BANG_EQ] = ACTIONS(6602), - [anon_sym_GT] = ACTIONS(6600), - [anon_sym_GT_EQ] = ACTIONS(6602), - [anon_sym_LT_EQ] = ACTIONS(6600), - [anon_sym_LT] = ACTIONS(6600), - [anon_sym_LT_LT] = ACTIONS(6600), - [anon_sym_GT_GT] = ACTIONS(6600), - [anon_sym___extension__] = ACTIONS(6602), - [sym_ms_restrict_modifier] = ACTIONS(8180), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8183), - [sym_ms_signed_ptr_modifier] = ACTIONS(8183), - [anon_sym__unaligned] = ACTIONS(8186), - [anon_sym___unaligned] = ACTIONS(8186), - [anon_sym_LBRACK] = ACTIONS(6602), - [anon_sym_EQ] = ACTIONS(6600), - [anon_sym_const] = ACTIONS(6600), - [anon_sym_constexpr] = ACTIONS(6602), - [anon_sym_volatile] = ACTIONS(6602), - [anon_sym_restrict] = ACTIONS(6602), - [anon_sym___restrict__] = ACTIONS(6602), - [anon_sym__Atomic] = ACTIONS(6602), - [anon_sym__Noreturn] = ACTIONS(6602), - [anon_sym_noreturn] = ACTIONS(6602), - [anon_sym__Nonnull] = ACTIONS(6602), - [anon_sym_mutable] = ACTIONS(6602), - [anon_sym_constinit] = ACTIONS(6602), - [anon_sym_consteval] = ACTIONS(6602), - [anon_sym_alignas] = ACTIONS(6602), - [anon_sym__Alignas] = ACTIONS(6602), - [anon_sym_QMARK] = ACTIONS(6602), - [anon_sym_STAR_EQ] = ACTIONS(6602), - [anon_sym_SLASH_EQ] = ACTIONS(6602), - [anon_sym_PERCENT_EQ] = ACTIONS(6602), - [anon_sym_PLUS_EQ] = ACTIONS(6602), - [anon_sym_DASH_EQ] = ACTIONS(6602), - [anon_sym_LT_LT_EQ] = ACTIONS(6602), - [anon_sym_GT_GT_EQ] = ACTIONS(6602), - [anon_sym_AMP_EQ] = ACTIONS(6602), - [anon_sym_CARET_EQ] = ACTIONS(6602), - [anon_sym_PIPE_EQ] = ACTIONS(6602), - [anon_sym_LT_EQ_GT] = ACTIONS(6602), - [anon_sym_or] = ACTIONS(6602), - [anon_sym_and] = ACTIONS(6602), - [anon_sym_bitor] = ACTIONS(6602), - [anon_sym_xor] = ACTIONS(6602), - [anon_sym_bitand] = ACTIONS(6602), - [anon_sym_not_eq] = ACTIONS(6602), - [anon_sym_DASH_DASH] = ACTIONS(6602), - [anon_sym_PLUS_PLUS] = ACTIONS(6602), - [anon_sym_DOT] = ACTIONS(6600), - [anon_sym_DOT_STAR] = ACTIONS(6602), - [anon_sym_DASH_GT] = ACTIONS(6600), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6602), - [anon_sym_override] = ACTIONS(6602), - [anon_sym_requires] = ACTIONS(6602), - [anon_sym_DASH_GT_STAR] = ACTIONS(6602), + [STATE(2405)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7134), + [anon_sym_COMMA] = ACTIONS(7134), + [anon_sym_RPAREN] = ACTIONS(7134), + [anon_sym_LPAREN2] = ACTIONS(7134), + [anon_sym_DASH] = ACTIONS(7132), + [anon_sym_PLUS] = ACTIONS(7132), + [anon_sym_STAR] = ACTIONS(7132), + [anon_sym_SLASH] = ACTIONS(7132), + [anon_sym_PERCENT] = ACTIONS(7132), + [anon_sym_PIPE_PIPE] = ACTIONS(7134), + [anon_sym_AMP_AMP] = ACTIONS(7134), + [anon_sym_PIPE] = ACTIONS(7132), + [anon_sym_CARET] = ACTIONS(7132), + [anon_sym_AMP] = ACTIONS(7132), + [anon_sym_EQ_EQ] = ACTIONS(7134), + [anon_sym_BANG_EQ] = ACTIONS(7134), + [anon_sym_GT] = ACTIONS(7132), + [anon_sym_GT_EQ] = ACTIONS(7134), + [anon_sym_LT_EQ] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(7132), + [anon_sym_LT_LT] = ACTIONS(7132), + [anon_sym_GT_GT] = ACTIONS(7132), + [anon_sym___extension__] = ACTIONS(7134), + [anon_sym___attribute__] = ACTIONS(7134), + [anon_sym___attribute] = ACTIONS(7132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7134), + [anon_sym_LBRACK] = ACTIONS(7132), + [anon_sym_EQ] = ACTIONS(7132), + [anon_sym_const] = ACTIONS(7132), + [anon_sym_constexpr] = ACTIONS(7134), + [anon_sym_volatile] = ACTIONS(7134), + [anon_sym_restrict] = ACTIONS(7134), + [anon_sym___restrict__] = ACTIONS(7134), + [anon_sym__Atomic] = ACTIONS(7134), + [anon_sym__Noreturn] = ACTIONS(7134), + [anon_sym_noreturn] = ACTIONS(7134), + [anon_sym__Nonnull] = ACTIONS(7134), + [anon_sym_mutable] = ACTIONS(7134), + [anon_sym_constinit] = ACTIONS(7134), + [anon_sym_consteval] = ACTIONS(7134), + [anon_sym_alignas] = ACTIONS(7134), + [anon_sym__Alignas] = ACTIONS(7134), + [anon_sym_QMARK] = ACTIONS(7134), + [anon_sym_STAR_EQ] = ACTIONS(7134), + [anon_sym_SLASH_EQ] = ACTIONS(7134), + [anon_sym_PERCENT_EQ] = ACTIONS(7134), + [anon_sym_PLUS_EQ] = ACTIONS(7134), + [anon_sym_DASH_EQ] = ACTIONS(7134), + [anon_sym_LT_LT_EQ] = ACTIONS(7134), + [anon_sym_GT_GT_EQ] = ACTIONS(7134), + [anon_sym_AMP_EQ] = ACTIONS(7134), + [anon_sym_CARET_EQ] = ACTIONS(7134), + [anon_sym_PIPE_EQ] = ACTIONS(7134), + [anon_sym_and_eq] = ACTIONS(7134), + [anon_sym_or_eq] = ACTIONS(7134), + [anon_sym_xor_eq] = ACTIONS(7134), + [anon_sym_LT_EQ_GT] = ACTIONS(7134), + [anon_sym_or] = ACTIONS(7132), + [anon_sym_and] = ACTIONS(7132), + [anon_sym_bitor] = ACTIONS(7134), + [anon_sym_xor] = ACTIONS(7132), + [anon_sym_bitand] = ACTIONS(7134), + [anon_sym_not_eq] = ACTIONS(7134), + [anon_sym_DASH_DASH] = ACTIONS(7134), + [anon_sym_PLUS_PLUS] = ACTIONS(7134), + [anon_sym_asm] = ACTIONS(7134), + [anon_sym___asm__] = ACTIONS(7134), + [anon_sym___asm] = ACTIONS(7132), + [anon_sym_DOT] = ACTIONS(7132), + [anon_sym_DOT_STAR] = ACTIONS(7134), + [anon_sym_DASH_GT] = ACTIONS(7132), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7134), + [anon_sym_override] = ACTIONS(7134), + [anon_sym_noexcept] = ACTIONS(7134), + [anon_sym_throw] = ACTIONS(7134), + [anon_sym_requires] = ACTIONS(7134), + [anon_sym_DASH_GT_STAR] = ACTIONS(7134), }, - [STATE(2537)] = { - [sym_attribute_specifier] = STATE(3416), - [sym_field_declaration_list] = STATE(2852), - [sym_virtual_specifier] = STATE(9450), - [sym_base_class_clause] = STATE(10173), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(6828), - [anon_sym_LPAREN2] = ACTIONS(6828), - [anon_sym_DASH] = ACTIONS(6826), - [anon_sym_PLUS] = ACTIONS(6826), - [anon_sym_STAR] = ACTIONS(6826), - [anon_sym_SLASH] = ACTIONS(6826), - [anon_sym_PERCENT] = ACTIONS(6826), - [anon_sym_PIPE_PIPE] = ACTIONS(6828), - [anon_sym_AMP_AMP] = ACTIONS(6828), - [anon_sym_PIPE] = ACTIONS(6826), - [anon_sym_CARET] = ACTIONS(6826), - [anon_sym_AMP] = ACTIONS(6826), - [anon_sym_EQ_EQ] = ACTIONS(6828), - [anon_sym_BANG_EQ] = ACTIONS(6828), - [anon_sym_GT] = ACTIONS(6826), - [anon_sym_GT_EQ] = ACTIONS(6828), - [anon_sym_LT_EQ] = ACTIONS(6826), - [anon_sym_LT] = ACTIONS(6826), - [anon_sym_LT_LT] = ACTIONS(6826), - [anon_sym_GT_GT] = ACTIONS(6826), - [anon_sym___extension__] = ACTIONS(6828), - [anon_sym___attribute__] = ACTIONS(8189), - [anon_sym___attribute] = ACTIONS(8191), - [anon_sym_COLON] = ACTIONS(7817), - [anon_sym_LBRACE] = ACTIONS(8193), - [anon_sym_LBRACK] = ACTIONS(6828), - [anon_sym_EQ] = ACTIONS(6826), - [anon_sym_const] = ACTIONS(6826), - [anon_sym_constexpr] = ACTIONS(6828), - [anon_sym_volatile] = ACTIONS(6828), - [anon_sym_restrict] = ACTIONS(6828), - [anon_sym___restrict__] = ACTIONS(6828), - [anon_sym__Atomic] = ACTIONS(6828), - [anon_sym__Noreturn] = ACTIONS(6828), - [anon_sym_noreturn] = ACTIONS(6828), - [anon_sym__Nonnull] = ACTIONS(6828), - [anon_sym_mutable] = ACTIONS(6828), - [anon_sym_constinit] = ACTIONS(6828), - [anon_sym_consteval] = ACTIONS(6828), - [anon_sym_alignas] = ACTIONS(6828), - [anon_sym__Alignas] = ACTIONS(6828), - [anon_sym_QMARK] = ACTIONS(6828), - [anon_sym_STAR_EQ] = ACTIONS(6828), - [anon_sym_SLASH_EQ] = ACTIONS(6828), - [anon_sym_PERCENT_EQ] = ACTIONS(6828), - [anon_sym_PLUS_EQ] = ACTIONS(6828), - [anon_sym_DASH_EQ] = ACTIONS(6828), - [anon_sym_LT_LT_EQ] = ACTIONS(6828), - [anon_sym_GT_GT_EQ] = ACTIONS(6828), - [anon_sym_AMP_EQ] = ACTIONS(6828), - [anon_sym_CARET_EQ] = ACTIONS(6828), - [anon_sym_PIPE_EQ] = ACTIONS(6828), - [anon_sym_LT_EQ_GT] = ACTIONS(6828), - [anon_sym_or] = ACTIONS(6828), - [anon_sym_and] = ACTIONS(6828), - [anon_sym_bitor] = ACTIONS(6828), - [anon_sym_xor] = ACTIONS(6828), - [anon_sym_bitand] = ACTIONS(6828), - [anon_sym_not_eq] = ACTIONS(6828), - [anon_sym_DASH_DASH] = ACTIONS(6828), - [anon_sym_PLUS_PLUS] = ACTIONS(6828), - [anon_sym_DOT] = ACTIONS(6826), - [anon_sym_DOT_STAR] = ACTIONS(6828), - [anon_sym_DASH_GT] = ACTIONS(6826), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7821), - [anon_sym_override] = ACTIONS(7821), - [anon_sym_requires] = ACTIONS(6828), - [anon_sym_DASH_GT_STAR] = ACTIONS(6828), + [STATE(2406)] = { + [sym_type_qualifier] = STATE(2406), + [sym_alignas_qualifier] = STATE(2652), + [aux_sym__type_definition_type_repeat1] = STATE(2406), + [sym_identifier] = ACTIONS(6889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), + [anon_sym_COMMA] = ACTIONS(6891), + [aux_sym_preproc_if_token2] = ACTIONS(6891), + [aux_sym_preproc_else_token1] = ACTIONS(6891), + [aux_sym_preproc_elif_token1] = ACTIONS(6889), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6891), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6891), + [anon_sym_LPAREN2] = ACTIONS(6891), + [anon_sym_DASH] = ACTIONS(6889), + [anon_sym_PLUS] = ACTIONS(6889), + [anon_sym_STAR] = ACTIONS(6889), + [anon_sym_SLASH] = ACTIONS(6889), + [anon_sym_PERCENT] = ACTIONS(6889), + [anon_sym_PIPE_PIPE] = ACTIONS(6891), + [anon_sym_AMP_AMP] = ACTIONS(6891), + [anon_sym_PIPE] = ACTIONS(6889), + [anon_sym_CARET] = ACTIONS(6889), + [anon_sym_AMP] = ACTIONS(6889), + [anon_sym_EQ_EQ] = ACTIONS(6891), + [anon_sym_BANG_EQ] = ACTIONS(6891), + [anon_sym_GT] = ACTIONS(6889), + [anon_sym_GT_EQ] = ACTIONS(6891), + [anon_sym_LT_EQ] = ACTIONS(6889), + [anon_sym_LT] = ACTIONS(6889), + [anon_sym_LT_LT] = ACTIONS(6889), + [anon_sym_GT_GT] = ACTIONS(6889), + [anon_sym___extension__] = ACTIONS(8182), + [anon_sym_LBRACK] = ACTIONS(6891), + [anon_sym_RBRACK] = ACTIONS(6891), + [anon_sym_EQ] = ACTIONS(6889), + [anon_sym_const] = ACTIONS(8182), + [anon_sym_constexpr] = ACTIONS(8182), + [anon_sym_volatile] = ACTIONS(8182), + [anon_sym_restrict] = ACTIONS(8182), + [anon_sym___restrict__] = ACTIONS(8182), + [anon_sym__Atomic] = ACTIONS(8182), + [anon_sym__Noreturn] = ACTIONS(8182), + [anon_sym_noreturn] = ACTIONS(8182), + [anon_sym__Nonnull] = ACTIONS(8182), + [anon_sym_mutable] = ACTIONS(8182), + [anon_sym_constinit] = ACTIONS(8182), + [anon_sym_consteval] = ACTIONS(8182), + [anon_sym_alignas] = ACTIONS(8185), + [anon_sym__Alignas] = ACTIONS(8185), + [anon_sym_QMARK] = ACTIONS(6891), + [anon_sym_STAR_EQ] = ACTIONS(6891), + [anon_sym_SLASH_EQ] = ACTIONS(6891), + [anon_sym_PERCENT_EQ] = ACTIONS(6891), + [anon_sym_PLUS_EQ] = ACTIONS(6891), + [anon_sym_DASH_EQ] = ACTIONS(6891), + [anon_sym_LT_LT_EQ] = ACTIONS(6891), + [anon_sym_GT_GT_EQ] = ACTIONS(6891), + [anon_sym_AMP_EQ] = ACTIONS(6891), + [anon_sym_CARET_EQ] = ACTIONS(6891), + [anon_sym_PIPE_EQ] = ACTIONS(6891), + [anon_sym_and_eq] = ACTIONS(6889), + [anon_sym_or_eq] = ACTIONS(6889), + [anon_sym_xor_eq] = ACTIONS(6889), + [anon_sym_LT_EQ_GT] = ACTIONS(6891), + [anon_sym_or] = ACTIONS(6889), + [anon_sym_and] = ACTIONS(6889), + [anon_sym_bitor] = ACTIONS(6889), + [anon_sym_xor] = ACTIONS(6889), + [anon_sym_bitand] = ACTIONS(6889), + [anon_sym_not_eq] = ACTIONS(6889), + [anon_sym_DASH_DASH] = ACTIONS(6891), + [anon_sym_PLUS_PLUS] = ACTIONS(6891), + [anon_sym_DOT] = ACTIONS(6889), + [anon_sym_DOT_STAR] = ACTIONS(6891), + [anon_sym_DASH_GT] = ACTIONS(6891), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6889), + [anon_sym_override] = ACTIONS(6889), + [anon_sym_requires] = ACTIONS(6889), }, - [STATE(2538)] = { - [sym_template_argument_list] = STATE(2487), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5272), - [anon_sym_COMMA] = ACTIONS(5272), - [anon_sym_LPAREN2] = ACTIONS(5272), - [anon_sym_DASH] = ACTIONS(7031), - [anon_sym_PLUS] = ACTIONS(7031), - [anon_sym_STAR] = ACTIONS(7031), - [anon_sym_SLASH] = ACTIONS(7031), - [anon_sym_PERCENT] = ACTIONS(7031), - [anon_sym_PIPE_PIPE] = ACTIONS(5272), - [anon_sym_AMP_AMP] = ACTIONS(5272), - [anon_sym_PIPE] = ACTIONS(7031), - [anon_sym_CARET] = ACTIONS(7031), - [anon_sym_AMP] = ACTIONS(7031), - [anon_sym_EQ_EQ] = ACTIONS(5272), - [anon_sym_BANG_EQ] = ACTIONS(5272), - [anon_sym_GT] = ACTIONS(7031), - [anon_sym_GT_EQ] = ACTIONS(7031), - [anon_sym_LT_EQ] = ACTIONS(7031), - [anon_sym_LT] = ACTIONS(7718), - [anon_sym_LT_LT] = ACTIONS(7031), - [anon_sym_GT_GT] = ACTIONS(7031), - [anon_sym___extension__] = ACTIONS(5272), - [anon_sym___attribute__] = ACTIONS(5272), - [anon_sym___attribute] = ACTIONS(7031), - [anon_sym_COLON] = ACTIONS(7031), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5272), - [anon_sym_EQ] = ACTIONS(7031), - [anon_sym_const] = ACTIONS(7031), - [anon_sym_constexpr] = ACTIONS(5272), - [anon_sym_volatile] = ACTIONS(5272), - [anon_sym_restrict] = ACTIONS(5272), - [anon_sym___restrict__] = ACTIONS(5272), - [anon_sym__Atomic] = ACTIONS(5272), - [anon_sym__Noreturn] = ACTIONS(5272), - [anon_sym_noreturn] = ACTIONS(5272), - [anon_sym__Nonnull] = ACTIONS(5272), - [anon_sym_mutable] = ACTIONS(5272), - [anon_sym_constinit] = ACTIONS(5272), - [anon_sym_consteval] = ACTIONS(5272), - [anon_sym_alignas] = ACTIONS(5272), - [anon_sym__Alignas] = ACTIONS(5272), - [anon_sym_QMARK] = ACTIONS(5272), - [anon_sym_STAR_EQ] = ACTIONS(5272), - [anon_sym_SLASH_EQ] = ACTIONS(5272), - [anon_sym_PERCENT_EQ] = ACTIONS(5272), - [anon_sym_PLUS_EQ] = ACTIONS(5272), - [anon_sym_DASH_EQ] = ACTIONS(5272), - [anon_sym_LT_LT_EQ] = ACTIONS(5272), - [anon_sym_GT_GT_EQ] = ACTIONS(7031), - [anon_sym_AMP_EQ] = ACTIONS(5272), - [anon_sym_CARET_EQ] = ACTIONS(5272), - [anon_sym_PIPE_EQ] = ACTIONS(5272), - [anon_sym_and_eq] = ACTIONS(5272), - [anon_sym_or_eq] = ACTIONS(5272), - [anon_sym_xor_eq] = ACTIONS(5272), - [anon_sym_LT_EQ_GT] = ACTIONS(5272), - [anon_sym_or] = ACTIONS(7031), - [anon_sym_and] = ACTIONS(7031), - [anon_sym_bitor] = ACTIONS(5272), - [anon_sym_xor] = ACTIONS(7031), - [anon_sym_bitand] = ACTIONS(5272), - [anon_sym_not_eq] = ACTIONS(5272), - [anon_sym_DASH_DASH] = ACTIONS(5272), - [anon_sym_PLUS_PLUS] = ACTIONS(5272), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_DOT_STAR] = ACTIONS(5272), - [anon_sym_DASH_GT] = ACTIONS(5272), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5272), - [anon_sym_override] = ACTIONS(5272), - [anon_sym_GT2] = ACTIONS(5272), - [anon_sym_requires] = ACTIONS(5272), + [STATE(2407)] = { + [sym_identifier] = ACTIONS(8188), + [anon_sym_LPAREN2] = ACTIONS(8190), + [anon_sym_BANG] = ACTIONS(8190), + [anon_sym_TILDE] = ACTIONS(8190), + [anon_sym_DASH] = ACTIONS(8188), + [anon_sym_PLUS] = ACTIONS(8188), + [anon_sym_STAR] = ACTIONS(8190), + [anon_sym_AMP] = ACTIONS(8190), + [anon_sym_SEMI] = ACTIONS(8190), + [anon_sym___extension__] = ACTIONS(8188), + [anon_sym_COLON_COLON] = ACTIONS(8190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8190), + [anon_sym_LBRACE] = ACTIONS(8190), + [anon_sym_LBRACK] = ACTIONS(8188), + [sym_primitive_type] = ACTIONS(8188), + [anon_sym_if] = ACTIONS(8188), + [anon_sym_switch] = ACTIONS(8188), + [anon_sym_case] = ACTIONS(8188), + [anon_sym_default] = ACTIONS(8188), + [anon_sym_while] = ACTIONS(8188), + [anon_sym_do] = ACTIONS(8188), + [anon_sym_for] = ACTIONS(8188), + [anon_sym_return] = ACTIONS(8188), + [anon_sym_break] = ACTIONS(8188), + [anon_sym_continue] = ACTIONS(8188), + [anon_sym_goto] = ACTIONS(8188), + [anon_sym___try] = ACTIONS(8188), + [anon_sym___leave] = ACTIONS(8188), + [anon_sym_not] = ACTIONS(8188), + [anon_sym_compl] = ACTIONS(8188), + [anon_sym_DASH_DASH] = ACTIONS(8190), + [anon_sym_PLUS_PLUS] = ACTIONS(8190), + [anon_sym_sizeof] = ACTIONS(8188), + [anon_sym___alignof__] = ACTIONS(8188), + [anon_sym___alignof] = ACTIONS(8188), + [anon_sym__alignof] = ACTIONS(8188), + [anon_sym_alignof] = ACTIONS(8188), + [anon_sym__Alignof] = ACTIONS(8188), + [anon_sym_offsetof] = ACTIONS(8188), + [anon_sym__Generic] = ACTIONS(8188), + [anon_sym_typename] = ACTIONS(8188), + [anon_sym_asm] = ACTIONS(8188), + [anon_sym___asm__] = ACTIONS(8188), + [anon_sym___asm] = ACTIONS(8188), + [sym_number_literal] = ACTIONS(8190), + [anon_sym_L_SQUOTE] = ACTIONS(8190), + [anon_sym_u_SQUOTE] = ACTIONS(8190), + [anon_sym_U_SQUOTE] = ACTIONS(8190), + [anon_sym_u8_SQUOTE] = ACTIONS(8190), + [anon_sym_SQUOTE] = ACTIONS(8190), + [anon_sym_L_DQUOTE] = ACTIONS(8190), + [anon_sym_u_DQUOTE] = ACTIONS(8190), + [anon_sym_U_DQUOTE] = ACTIONS(8190), + [anon_sym_u8_DQUOTE] = ACTIONS(8190), + [anon_sym_DQUOTE] = ACTIONS(8190), + [sym_true] = ACTIONS(8188), + [sym_false] = ACTIONS(8188), + [anon_sym_NULL] = ACTIONS(8188), + [anon_sym_nullptr] = ACTIONS(8188), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(8188), + [anon_sym_template] = ACTIONS(8188), + [anon_sym_try] = ACTIONS(8188), + [anon_sym_delete] = ACTIONS(8188), + [anon_sym_throw] = ACTIONS(8188), + [anon_sym_co_return] = ACTIONS(8188), + [anon_sym_co_yield] = ACTIONS(8188), + [anon_sym_R_DQUOTE] = ACTIONS(8190), + [anon_sym_LR_DQUOTE] = ACTIONS(8190), + [anon_sym_uR_DQUOTE] = ACTIONS(8190), + [anon_sym_UR_DQUOTE] = ACTIONS(8190), + [anon_sym_u8R_DQUOTE] = ACTIONS(8190), + [anon_sym_co_await] = ACTIONS(8188), + [anon_sym_new] = ACTIONS(8188), + [anon_sym_requires] = ACTIONS(8188), + [anon_sym_CARET_CARET] = ACTIONS(8190), + [anon_sym_LBRACK_COLON] = ACTIONS(8190), + [sym_this] = ACTIONS(8188), }, - [STATE(2539)] = { - [sym__abstract_declarator] = STATE(5767), - [sym_abstract_parenthesized_declarator] = STATE(5581), - [sym_abstract_pointer_declarator] = STATE(5581), - [sym_abstract_function_declarator] = STATE(5581), - [sym_abstract_array_declarator] = STATE(5581), - [sym_type_qualifier] = STATE(2277), - [sym_alignas_qualifier] = STATE(2432), - [sym_parameter_list] = STATE(1888), - [sym_abstract_reference_declarator] = STATE(5581), - [sym__function_declarator_seq] = STATE(5582), - [aux_sym__type_definition_type_repeat1] = STATE(2277), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_RPAREN] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(6927), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(7319), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6495), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(7321), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_AMP] = ACTIONS(7323), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6495), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym___extension__] = ACTIONS(6935), - [anon_sym_LBRACK] = ACTIONS(6943), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_const] = ACTIONS(6945), - [anon_sym_constexpr] = ACTIONS(6935), - [anon_sym_volatile] = ACTIONS(6935), - [anon_sym_restrict] = ACTIONS(6935), - [anon_sym___restrict__] = ACTIONS(6935), - [anon_sym__Atomic] = ACTIONS(6935), - [anon_sym__Noreturn] = ACTIONS(6935), - [anon_sym_noreturn] = ACTIONS(6935), - [anon_sym__Nonnull] = ACTIONS(6935), - [anon_sym_mutable] = ACTIONS(6935), - [anon_sym_constinit] = ACTIONS(6935), - [anon_sym_consteval] = ACTIONS(6935), - [anon_sym_alignas] = ACTIONS(6947), - [anon_sym__Alignas] = ACTIONS(6947), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_STAR_EQ] = ACTIONS(6497), - [anon_sym_SLASH_EQ] = ACTIONS(6497), - [anon_sym_PERCENT_EQ] = ACTIONS(6497), - [anon_sym_PLUS_EQ] = ACTIONS(6497), - [anon_sym_DASH_EQ] = ACTIONS(6497), - [anon_sym_LT_LT_EQ] = ACTIONS(6497), - [anon_sym_GT_GT_EQ] = ACTIONS(6497), - [anon_sym_AMP_EQ] = ACTIONS(6497), - [anon_sym_CARET_EQ] = ACTIONS(6497), - [anon_sym_PIPE_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6497), - [anon_sym_and] = ACTIONS(6497), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6497), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6495), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6497), + [STATE(2408)] = { + [sym_identifier] = ACTIONS(8192), + [anon_sym_LPAREN2] = ACTIONS(8194), + [anon_sym_BANG] = ACTIONS(8194), + [anon_sym_TILDE] = ACTIONS(8194), + [anon_sym_DASH] = ACTIONS(8192), + [anon_sym_PLUS] = ACTIONS(8192), + [anon_sym_STAR] = ACTIONS(8194), + [anon_sym_AMP] = ACTIONS(8194), + [anon_sym_SEMI] = ACTIONS(8194), + [anon_sym___extension__] = ACTIONS(8192), + [anon_sym_COLON_COLON] = ACTIONS(8194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8194), + [anon_sym_LBRACE] = ACTIONS(8194), + [anon_sym_LBRACK] = ACTIONS(8192), + [sym_primitive_type] = ACTIONS(8192), + [anon_sym_if] = ACTIONS(8192), + [anon_sym_switch] = ACTIONS(8192), + [anon_sym_case] = ACTIONS(8192), + [anon_sym_default] = ACTIONS(8192), + [anon_sym_while] = ACTIONS(8192), + [anon_sym_do] = ACTIONS(8192), + [anon_sym_for] = ACTIONS(8192), + [anon_sym_return] = ACTIONS(8192), + [anon_sym_break] = ACTIONS(8192), + [anon_sym_continue] = ACTIONS(8192), + [anon_sym_goto] = ACTIONS(8192), + [anon_sym___try] = ACTIONS(8192), + [anon_sym___leave] = ACTIONS(8192), + [anon_sym_not] = ACTIONS(8192), + [anon_sym_compl] = ACTIONS(8192), + [anon_sym_DASH_DASH] = ACTIONS(8194), + [anon_sym_PLUS_PLUS] = ACTIONS(8194), + [anon_sym_sizeof] = ACTIONS(8192), + [anon_sym___alignof__] = ACTIONS(8192), + [anon_sym___alignof] = ACTIONS(8192), + [anon_sym__alignof] = ACTIONS(8192), + [anon_sym_alignof] = ACTIONS(8192), + [anon_sym__Alignof] = ACTIONS(8192), + [anon_sym_offsetof] = ACTIONS(8192), + [anon_sym__Generic] = ACTIONS(8192), + [anon_sym_typename] = ACTIONS(8192), + [anon_sym_asm] = ACTIONS(8192), + [anon_sym___asm__] = ACTIONS(8192), + [anon_sym___asm] = ACTIONS(8192), + [sym_number_literal] = ACTIONS(8194), + [anon_sym_L_SQUOTE] = ACTIONS(8194), + [anon_sym_u_SQUOTE] = ACTIONS(8194), + [anon_sym_U_SQUOTE] = ACTIONS(8194), + [anon_sym_u8_SQUOTE] = ACTIONS(8194), + [anon_sym_SQUOTE] = ACTIONS(8194), + [anon_sym_L_DQUOTE] = ACTIONS(8194), + [anon_sym_u_DQUOTE] = ACTIONS(8194), + [anon_sym_U_DQUOTE] = ACTIONS(8194), + [anon_sym_u8_DQUOTE] = ACTIONS(8194), + [anon_sym_DQUOTE] = ACTIONS(8194), + [sym_true] = ACTIONS(8192), + [sym_false] = ACTIONS(8192), + [anon_sym_NULL] = ACTIONS(8192), + [anon_sym_nullptr] = ACTIONS(8192), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(8192), + [anon_sym_template] = ACTIONS(8192), + [anon_sym_try] = ACTIONS(8192), + [anon_sym_delete] = ACTIONS(8192), + [anon_sym_throw] = ACTIONS(8192), + [anon_sym_co_return] = ACTIONS(8192), + [anon_sym_co_yield] = ACTIONS(8192), + [anon_sym_R_DQUOTE] = ACTIONS(8194), + [anon_sym_LR_DQUOTE] = ACTIONS(8194), + [anon_sym_uR_DQUOTE] = ACTIONS(8194), + [anon_sym_UR_DQUOTE] = ACTIONS(8194), + [anon_sym_u8R_DQUOTE] = ACTIONS(8194), + [anon_sym_co_await] = ACTIONS(8192), + [anon_sym_new] = ACTIONS(8192), + [anon_sym_requires] = ACTIONS(8192), + [anon_sym_CARET_CARET] = ACTIONS(8194), + [anon_sym_LBRACK_COLON] = ACTIONS(8194), + [sym_this] = ACTIONS(8192), }, - [STATE(2540)] = { - [sym_ms_based_modifier] = STATE(10656), - [sym_ms_unaligned_ptr_modifier] = STATE(6570), - [sym_ms_pointer_modifier] = STATE(2541), - [sym__declarator] = STATE(8686), - [sym__abstract_declarator] = STATE(8831), - [sym_parenthesized_declarator] = STATE(8469), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_function_declarator] = STATE(8469), - [sym_abstract_function_declarator] = STATE(8389), - [sym_array_declarator] = STATE(8469), - [sym_abstract_array_declarator] = STATE(8389), - [sym_type_qualifier] = STATE(3570), - [sym_alignas_qualifier] = STATE(7436), - [sym_parameter_list] = STATE(4820), - [sym_decltype] = STATE(10976), - [sym_reference_declarator] = STATE(8469), - [sym_abstract_reference_declarator] = STATE(8389), - [sym_structured_binding_declarator] = STATE(8469), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7878), - [sym_qualified_identifier] = STATE(8469), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__type_definition_type_repeat1] = STATE(3570), - [aux_sym_pointer_declarator_repeat1] = STATE(2541), - [sym_identifier] = ACTIONS(8195), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_RPAREN] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(5301), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(8197), - [anon_sym_AMP_AMP] = ACTIONS(8199), - [anon_sym_AMP] = ACTIONS(8201), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(6457), - [anon_sym___attribute] = ACTIONS(6457), - [anon_sym_COLON_COLON] = ACTIONS(8203), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(2933), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(2933), - [sym_ms_signed_ptr_modifier] = ACTIONS(2933), - [anon_sym__unaligned] = ACTIONS(2935), - [anon_sym___unaligned] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(5311), - [anon_sym_EQ] = ACTIONS(6459), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym__Nonnull] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2939), - [anon_sym__Alignas] = ACTIONS(2939), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_GT2] = ACTIONS(6459), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), + [STATE(2409)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7729), + [anon_sym_COMMA] = ACTIONS(7729), + [anon_sym_RPAREN] = ACTIONS(7729), + [anon_sym_LPAREN2] = ACTIONS(7729), + [anon_sym_DASH] = ACTIONS(7727), + [anon_sym_PLUS] = ACTIONS(7727), + [anon_sym_STAR] = ACTIONS(7727), + [anon_sym_SLASH] = ACTIONS(7727), + [anon_sym_PERCENT] = ACTIONS(7727), + [anon_sym_PIPE_PIPE] = ACTIONS(7729), + [anon_sym_AMP_AMP] = ACTIONS(7729), + [anon_sym_PIPE] = ACTIONS(7727), + [anon_sym_CARET] = ACTIONS(7727), + [anon_sym_AMP] = ACTIONS(7727), + [anon_sym_EQ_EQ] = ACTIONS(7729), + [anon_sym_BANG_EQ] = ACTIONS(7729), + [anon_sym_GT] = ACTIONS(7727), + [anon_sym_GT_EQ] = ACTIONS(7729), + [anon_sym_LT_EQ] = ACTIONS(7727), + [anon_sym_LT] = ACTIONS(7727), + [anon_sym_LT_LT] = ACTIONS(7727), + [anon_sym_GT_GT] = ACTIONS(7727), + [anon_sym___extension__] = ACTIONS(7729), + [anon_sym___attribute__] = ACTIONS(7729), + [anon_sym___attribute] = ACTIONS(7727), + [anon_sym_LBRACE] = ACTIONS(7729), + [anon_sym_signed] = ACTIONS(8196), + [anon_sym_unsigned] = ACTIONS(8196), + [anon_sym_long] = ACTIONS(8196), + [anon_sym_short] = ACTIONS(8196), + [anon_sym_LBRACK] = ACTIONS(7729), + [anon_sym_EQ] = ACTIONS(7727), + [anon_sym_const] = ACTIONS(7727), + [anon_sym_constexpr] = ACTIONS(7729), + [anon_sym_volatile] = ACTIONS(7729), + [anon_sym_restrict] = ACTIONS(7729), + [anon_sym___restrict__] = ACTIONS(7729), + [anon_sym__Atomic] = ACTIONS(7729), + [anon_sym__Noreturn] = ACTIONS(7729), + [anon_sym_noreturn] = ACTIONS(7729), + [anon_sym__Nonnull] = ACTIONS(7729), + [anon_sym_mutable] = ACTIONS(7729), + [anon_sym_constinit] = ACTIONS(7729), + [anon_sym_consteval] = ACTIONS(7729), + [anon_sym_alignas] = ACTIONS(7729), + [anon_sym__Alignas] = ACTIONS(7729), + [anon_sym_QMARK] = ACTIONS(7729), + [anon_sym_STAR_EQ] = ACTIONS(7729), + [anon_sym_SLASH_EQ] = ACTIONS(7729), + [anon_sym_PERCENT_EQ] = ACTIONS(7729), + [anon_sym_PLUS_EQ] = ACTIONS(7729), + [anon_sym_DASH_EQ] = ACTIONS(7729), + [anon_sym_LT_LT_EQ] = ACTIONS(7729), + [anon_sym_GT_GT_EQ] = ACTIONS(7729), + [anon_sym_AMP_EQ] = ACTIONS(7729), + [anon_sym_CARET_EQ] = ACTIONS(7729), + [anon_sym_PIPE_EQ] = ACTIONS(7729), + [anon_sym_and_eq] = ACTIONS(7729), + [anon_sym_or_eq] = ACTIONS(7729), + [anon_sym_xor_eq] = ACTIONS(7729), + [anon_sym_LT_EQ_GT] = ACTIONS(7729), + [anon_sym_or] = ACTIONS(7727), + [anon_sym_and] = ACTIONS(7727), + [anon_sym_bitor] = ACTIONS(7729), + [anon_sym_xor] = ACTIONS(7727), + [anon_sym_bitand] = ACTIONS(7729), + [anon_sym_not_eq] = ACTIONS(7729), + [anon_sym_DASH_DASH] = ACTIONS(7729), + [anon_sym_PLUS_PLUS] = ACTIONS(7729), + [anon_sym_DOT] = ACTIONS(7727), + [anon_sym_DOT_STAR] = ACTIONS(7729), + [anon_sym_DASH_GT] = ACTIONS(7727), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7729), + [anon_sym_override] = ACTIONS(7729), + [anon_sym_requires] = ACTIONS(7729), + [anon_sym_DASH_GT_STAR] = ACTIONS(7729), }, - [STATE(2541)] = { - [sym_ms_based_modifier] = STATE(10656), - [sym_ms_unaligned_ptr_modifier] = STATE(6570), - [sym_ms_pointer_modifier] = STATE(6287), - [sym__declarator] = STATE(8646), - [sym__abstract_declarator] = STATE(8832), - [sym_parenthesized_declarator] = STATE(8469), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_function_declarator] = STATE(8469), - [sym_abstract_function_declarator] = STATE(8389), - [sym_array_declarator] = STATE(8469), - [sym_abstract_array_declarator] = STATE(8389), - [sym_type_qualifier] = STATE(3571), - [sym_alignas_qualifier] = STATE(7436), - [sym_parameter_list] = STATE(4820), - [sym_decltype] = STATE(10976), - [sym_reference_declarator] = STATE(8469), - [sym_abstract_reference_declarator] = STATE(8389), - [sym_structured_binding_declarator] = STATE(8469), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7878), - [sym_qualified_identifier] = STATE(8469), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__type_definition_type_repeat1] = STATE(3571), - [aux_sym_pointer_declarator_repeat1] = STATE(6287), - [sym_identifier] = ACTIONS(8195), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_RPAREN] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(5301), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(8197), - [anon_sym_AMP_AMP] = ACTIONS(8199), - [anon_sym_AMP] = ACTIONS(8201), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(6495), - [anon_sym___attribute] = ACTIONS(6495), - [anon_sym_COLON_COLON] = ACTIONS(8203), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(2933), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(2933), - [sym_ms_signed_ptr_modifier] = ACTIONS(2933), - [anon_sym__unaligned] = ACTIONS(2935), - [anon_sym___unaligned] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(5311), - [anon_sym_EQ] = ACTIONS(6497), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym__Nonnull] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2939), - [anon_sym__Alignas] = ACTIONS(2939), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_GT2] = ACTIONS(6497), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), + [STATE(2410)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7677), + [anon_sym_COMMA] = ACTIONS(7677), + [anon_sym_RPAREN] = ACTIONS(7677), + [anon_sym_LPAREN2] = ACTIONS(7677), + [anon_sym_DASH] = ACTIONS(7675), + [anon_sym_PLUS] = ACTIONS(7675), + [anon_sym_STAR] = ACTIONS(7675), + [anon_sym_SLASH] = ACTIONS(7675), + [anon_sym_PERCENT] = ACTIONS(7675), + [anon_sym_PIPE_PIPE] = ACTIONS(7677), + [anon_sym_AMP_AMP] = ACTIONS(7677), + [anon_sym_PIPE] = ACTIONS(7675), + [anon_sym_CARET] = ACTIONS(7675), + [anon_sym_AMP] = ACTIONS(7675), + [anon_sym_EQ_EQ] = ACTIONS(7677), + [anon_sym_BANG_EQ] = ACTIONS(7677), + [anon_sym_GT] = ACTIONS(7675), + [anon_sym_GT_EQ] = ACTIONS(7677), + [anon_sym_LT_EQ] = ACTIONS(7675), + [anon_sym_LT] = ACTIONS(7675), + [anon_sym_LT_LT] = ACTIONS(7675), + [anon_sym_GT_GT] = ACTIONS(7675), + [anon_sym___extension__] = ACTIONS(7677), + [anon_sym___attribute__] = ACTIONS(7677), + [anon_sym___attribute] = ACTIONS(7675), + [anon_sym_LBRACE] = ACTIONS(7677), + [anon_sym_signed] = ACTIONS(8196), + [anon_sym_unsigned] = ACTIONS(8196), + [anon_sym_long] = ACTIONS(8196), + [anon_sym_short] = ACTIONS(8196), + [anon_sym_LBRACK] = ACTIONS(7677), + [anon_sym_EQ] = ACTIONS(7675), + [anon_sym_const] = ACTIONS(7675), + [anon_sym_constexpr] = ACTIONS(7677), + [anon_sym_volatile] = ACTIONS(7677), + [anon_sym_restrict] = ACTIONS(7677), + [anon_sym___restrict__] = ACTIONS(7677), + [anon_sym__Atomic] = ACTIONS(7677), + [anon_sym__Noreturn] = ACTIONS(7677), + [anon_sym_noreturn] = ACTIONS(7677), + [anon_sym__Nonnull] = ACTIONS(7677), + [anon_sym_mutable] = ACTIONS(7677), + [anon_sym_constinit] = ACTIONS(7677), + [anon_sym_consteval] = ACTIONS(7677), + [anon_sym_alignas] = ACTIONS(7677), + [anon_sym__Alignas] = ACTIONS(7677), + [anon_sym_QMARK] = ACTIONS(7677), + [anon_sym_STAR_EQ] = ACTIONS(7677), + [anon_sym_SLASH_EQ] = ACTIONS(7677), + [anon_sym_PERCENT_EQ] = ACTIONS(7677), + [anon_sym_PLUS_EQ] = ACTIONS(7677), + [anon_sym_DASH_EQ] = ACTIONS(7677), + [anon_sym_LT_LT_EQ] = ACTIONS(7677), + [anon_sym_GT_GT_EQ] = ACTIONS(7677), + [anon_sym_AMP_EQ] = ACTIONS(7677), + [anon_sym_CARET_EQ] = ACTIONS(7677), + [anon_sym_PIPE_EQ] = ACTIONS(7677), + [anon_sym_and_eq] = ACTIONS(7677), + [anon_sym_or_eq] = ACTIONS(7677), + [anon_sym_xor_eq] = ACTIONS(7677), + [anon_sym_LT_EQ_GT] = ACTIONS(7677), + [anon_sym_or] = ACTIONS(7675), + [anon_sym_and] = ACTIONS(7675), + [anon_sym_bitor] = ACTIONS(7677), + [anon_sym_xor] = ACTIONS(7675), + [anon_sym_bitand] = ACTIONS(7677), + [anon_sym_not_eq] = ACTIONS(7677), + [anon_sym_DASH_DASH] = ACTIONS(7677), + [anon_sym_PLUS_PLUS] = ACTIONS(7677), + [anon_sym_DOT] = ACTIONS(7675), + [anon_sym_DOT_STAR] = ACTIONS(7677), + [anon_sym_DASH_GT] = ACTIONS(7675), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7677), + [anon_sym_override] = ACTIONS(7677), + [anon_sym_requires] = ACTIONS(7677), + [anon_sym_DASH_GT_STAR] = ACTIONS(7677), }, - [STATE(2542)] = { - [sym__abstract_declarator] = STATE(5800), - [sym_abstract_parenthesized_declarator] = STATE(5581), - [sym_abstract_pointer_declarator] = STATE(5581), - [sym_abstract_function_declarator] = STATE(5581), - [sym_abstract_array_declarator] = STATE(5581), - [sym_type_qualifier] = STATE(2277), - [sym_alignas_qualifier] = STATE(2432), - [sym_parameter_list] = STATE(1888), - [sym_abstract_reference_declarator] = STATE(5581), - [sym__function_declarator_seq] = STATE(5582), - [aux_sym__type_definition_type_repeat1] = STATE(2277), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), - [anon_sym_COMMA] = ACTIONS(7007), - [anon_sym_RPAREN] = ACTIONS(7007), - [anon_sym_LPAREN2] = ACTIONS(6927), - [anon_sym_DASH] = ACTIONS(7009), - [anon_sym_PLUS] = ACTIONS(7009), - [anon_sym_STAR] = ACTIONS(7319), - [anon_sym_SLASH] = ACTIONS(7009), - [anon_sym_PERCENT] = ACTIONS(7009), - [anon_sym_PIPE_PIPE] = ACTIONS(7007), - [anon_sym_AMP_AMP] = ACTIONS(7321), - [anon_sym_PIPE] = ACTIONS(7009), - [anon_sym_CARET] = ACTIONS(7009), - [anon_sym_AMP] = ACTIONS(7323), - [anon_sym_EQ_EQ] = ACTIONS(7007), - [anon_sym_BANG_EQ] = ACTIONS(7007), - [anon_sym_GT] = ACTIONS(7009), - [anon_sym_GT_EQ] = ACTIONS(7007), - [anon_sym_LT_EQ] = ACTIONS(7009), - [anon_sym_LT] = ACTIONS(7009), - [anon_sym_LT_LT] = ACTIONS(7009), - [anon_sym_GT_GT] = ACTIONS(7009), - [anon_sym___extension__] = ACTIONS(6935), - [anon_sym_LBRACK] = ACTIONS(6943), - [anon_sym_EQ] = ACTIONS(7009), - [anon_sym_const] = ACTIONS(6945), - [anon_sym_constexpr] = ACTIONS(6935), - [anon_sym_volatile] = ACTIONS(6935), - [anon_sym_restrict] = ACTIONS(6935), - [anon_sym___restrict__] = ACTIONS(6935), - [anon_sym__Atomic] = ACTIONS(6935), - [anon_sym__Noreturn] = ACTIONS(6935), - [anon_sym_noreturn] = ACTIONS(6935), - [anon_sym__Nonnull] = ACTIONS(6935), - [anon_sym_mutable] = ACTIONS(6935), - [anon_sym_constinit] = ACTIONS(6935), - [anon_sym_consteval] = ACTIONS(6935), - [anon_sym_alignas] = ACTIONS(6947), - [anon_sym__Alignas] = ACTIONS(6947), - [anon_sym_QMARK] = ACTIONS(7007), - [anon_sym_STAR_EQ] = ACTIONS(7007), - [anon_sym_SLASH_EQ] = ACTIONS(7007), - [anon_sym_PERCENT_EQ] = ACTIONS(7007), - [anon_sym_PLUS_EQ] = ACTIONS(7007), - [anon_sym_DASH_EQ] = ACTIONS(7007), - [anon_sym_LT_LT_EQ] = ACTIONS(7007), - [anon_sym_GT_GT_EQ] = ACTIONS(7007), - [anon_sym_AMP_EQ] = ACTIONS(7007), - [anon_sym_CARET_EQ] = ACTIONS(7007), - [anon_sym_PIPE_EQ] = ACTIONS(7007), - [anon_sym_LT_EQ_GT] = ACTIONS(7007), - [anon_sym_or] = ACTIONS(7007), - [anon_sym_and] = ACTIONS(7007), - [anon_sym_bitor] = ACTIONS(7007), - [anon_sym_xor] = ACTIONS(7007), - [anon_sym_bitand] = ACTIONS(7007), - [anon_sym_not_eq] = ACTIONS(7007), - [anon_sym_DASH_DASH] = ACTIONS(7007), - [anon_sym_PLUS_PLUS] = ACTIONS(7007), - [anon_sym_DOT] = ACTIONS(7009), - [anon_sym_DOT_STAR] = ACTIONS(7007), - [anon_sym_DASH_GT] = ACTIONS(7009), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7007), + [STATE(2411)] = { + [sym_decltype_auto] = STATE(3535), + [sym_template_argument_list] = STATE(2648), + [aux_sym_sized_type_specifier_repeat1] = STATE(2616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), + [anon_sym_COMMA] = ACTIONS(5643), + [anon_sym_RPAREN] = ACTIONS(5643), + [anon_sym_LPAREN2] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5636), + [anon_sym_PLUS] = ACTIONS(5636), + [anon_sym_STAR] = ACTIONS(5636), + [anon_sym_SLASH] = ACTIONS(5636), + [anon_sym_PERCENT] = ACTIONS(5636), + [anon_sym_PIPE_PIPE] = ACTIONS(5643), + [anon_sym_AMP_AMP] = ACTIONS(5643), + [anon_sym_PIPE] = ACTIONS(5636), + [anon_sym_CARET] = ACTIONS(5636), + [anon_sym_AMP] = ACTIONS(5636), + [anon_sym_EQ_EQ] = ACTIONS(5643), + [anon_sym_BANG_EQ] = ACTIONS(5643), + [anon_sym_GT] = ACTIONS(5636), + [anon_sym_GT_EQ] = ACTIONS(5643), + [anon_sym_LT_EQ] = ACTIONS(5636), + [anon_sym_LT] = ACTIONS(8198), + [anon_sym_LT_LT] = ACTIONS(5636), + [anon_sym_GT_GT] = ACTIONS(5636), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5643), + [anon_sym_signed] = ACTIONS(6956), + [anon_sym_unsigned] = ACTIONS(6956), + [anon_sym_long] = ACTIONS(6956), + [anon_sym_short] = ACTIONS(6956), + [anon_sym_LBRACK] = ACTIONS(5643), + [anon_sym_EQ] = ACTIONS(5636), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5643), + [anon_sym_volatile] = ACTIONS(5643), + [anon_sym_restrict] = ACTIONS(5643), + [anon_sym___restrict__] = ACTIONS(5643), + [anon_sym__Atomic] = ACTIONS(5643), + [anon_sym__Noreturn] = ACTIONS(5643), + [anon_sym_noreturn] = ACTIONS(5643), + [anon_sym__Nonnull] = ACTIONS(5643), + [anon_sym_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [anon_sym_alignas] = ACTIONS(5643), + [anon_sym__Alignas] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5643), + [anon_sym_STAR_EQ] = ACTIONS(5643), + [anon_sym_SLASH_EQ] = ACTIONS(5643), + [anon_sym_PERCENT_EQ] = ACTIONS(5643), + [anon_sym_PLUS_EQ] = ACTIONS(5643), + [anon_sym_DASH_EQ] = ACTIONS(5643), + [anon_sym_LT_LT_EQ] = ACTIONS(5643), + [anon_sym_GT_GT_EQ] = ACTIONS(5643), + [anon_sym_AMP_EQ] = ACTIONS(5643), + [anon_sym_CARET_EQ] = ACTIONS(5643), + [anon_sym_PIPE_EQ] = ACTIONS(5643), + [anon_sym_LT_EQ_GT] = ACTIONS(5643), + [anon_sym_or] = ACTIONS(5643), + [anon_sym_and] = ACTIONS(5643), + [anon_sym_bitor] = ACTIONS(5643), + [anon_sym_xor] = ACTIONS(5643), + [anon_sym_bitand] = ACTIONS(5643), + [anon_sym_not_eq] = ACTIONS(5643), + [anon_sym_DASH_DASH] = ACTIONS(5643), + [anon_sym_PLUS_PLUS] = ACTIONS(5643), + [anon_sym_DOT] = ACTIONS(5636), + [anon_sym_DOT_STAR] = ACTIONS(5643), + [anon_sym_DASH_GT] = ACTIONS(5636), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6960), + [anon_sym_decltype] = ACTIONS(6962), + [anon_sym_final] = ACTIONS(5643), + [anon_sym_override] = ACTIONS(5643), + [anon_sym_requires] = ACTIONS(5643), + [anon_sym_DASH_GT_STAR] = ACTIONS(5643), }, - [STATE(2543)] = { - [sym_attribute_specifier] = STATE(2918), - [sym_enumerator_list] = STATE(2581), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7013), - [anon_sym_COMMA] = ACTIONS(7013), - [anon_sym_RPAREN] = ACTIONS(7013), - [anon_sym_LPAREN2] = ACTIONS(7013), - [anon_sym_DASH] = ACTIONS(7011), - [anon_sym_PLUS] = ACTIONS(7011), - [anon_sym_STAR] = ACTIONS(7011), - [anon_sym_SLASH] = ACTIONS(7011), - [anon_sym_PERCENT] = ACTIONS(7011), - [anon_sym_PIPE_PIPE] = ACTIONS(7013), - [anon_sym_AMP_AMP] = ACTIONS(7013), - [anon_sym_PIPE] = ACTIONS(7011), - [anon_sym_CARET] = ACTIONS(7011), - [anon_sym_AMP] = ACTIONS(7011), - [anon_sym_EQ_EQ] = ACTIONS(7013), - [anon_sym_BANG_EQ] = ACTIONS(7013), - [anon_sym_GT] = ACTIONS(7011), - [anon_sym_GT_EQ] = ACTIONS(7013), - [anon_sym_LT_EQ] = ACTIONS(7011), - [anon_sym_LT] = ACTIONS(7011), - [anon_sym_LT_LT] = ACTIONS(7011), - [anon_sym_GT_GT] = ACTIONS(7011), - [anon_sym___extension__] = ACTIONS(7013), - [anon_sym___attribute__] = ACTIONS(7813), - [anon_sym___attribute] = ACTIONS(7815), - [anon_sym_LBRACE] = ACTIONS(7992), - [anon_sym_LBRACK] = ACTIONS(7013), - [anon_sym_EQ] = ACTIONS(7011), - [anon_sym_const] = ACTIONS(7011), - [anon_sym_constexpr] = ACTIONS(7013), - [anon_sym_volatile] = ACTIONS(7013), - [anon_sym_restrict] = ACTIONS(7013), - [anon_sym___restrict__] = ACTIONS(7013), - [anon_sym__Atomic] = ACTIONS(7013), - [anon_sym__Noreturn] = ACTIONS(7013), - [anon_sym_noreturn] = ACTIONS(7013), - [anon_sym__Nonnull] = ACTIONS(7013), - [anon_sym_mutable] = ACTIONS(7013), - [anon_sym_constinit] = ACTIONS(7013), - [anon_sym_consteval] = ACTIONS(7013), - [anon_sym_alignas] = ACTIONS(7013), - [anon_sym__Alignas] = ACTIONS(7013), - [anon_sym_QMARK] = ACTIONS(7013), - [anon_sym_STAR_EQ] = ACTIONS(7013), - [anon_sym_SLASH_EQ] = ACTIONS(7013), - [anon_sym_PERCENT_EQ] = ACTIONS(7013), - [anon_sym_PLUS_EQ] = ACTIONS(7013), - [anon_sym_DASH_EQ] = ACTIONS(7013), - [anon_sym_LT_LT_EQ] = ACTIONS(7013), - [anon_sym_GT_GT_EQ] = ACTIONS(7013), - [anon_sym_AMP_EQ] = ACTIONS(7013), - [anon_sym_CARET_EQ] = ACTIONS(7013), - [anon_sym_PIPE_EQ] = ACTIONS(7013), - [anon_sym_and_eq] = ACTIONS(7013), - [anon_sym_or_eq] = ACTIONS(7013), - [anon_sym_xor_eq] = ACTIONS(7013), - [anon_sym_LT_EQ_GT] = ACTIONS(7013), - [anon_sym_or] = ACTIONS(7011), - [anon_sym_and] = ACTIONS(7011), - [anon_sym_bitor] = ACTIONS(7013), - [anon_sym_xor] = ACTIONS(7011), - [anon_sym_bitand] = ACTIONS(7013), - [anon_sym_not_eq] = ACTIONS(7013), - [anon_sym_DASH_DASH] = ACTIONS(7013), - [anon_sym_PLUS_PLUS] = ACTIONS(7013), - [anon_sym_DOT] = ACTIONS(7011), - [anon_sym_DOT_STAR] = ACTIONS(7013), - [anon_sym_DASH_GT] = ACTIONS(7011), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7013), - [anon_sym_override] = ACTIONS(7013), - [anon_sym_requires] = ACTIONS(7013), - [anon_sym_DASH_GT_STAR] = ACTIONS(7013), + [STATE(2412)] = { + [sym_type_qualifier] = STATE(2421), + [sym_alignas_qualifier] = STATE(2636), + [aux_sym__type_definition_type_repeat1] = STATE(2421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6901), + [anon_sym_COMMA] = ACTIONS(6901), + [anon_sym_RPAREN] = ACTIONS(6901), + [anon_sym_LPAREN2] = ACTIONS(6901), + [anon_sym_DASH] = ACTIONS(6899), + [anon_sym_PLUS] = ACTIONS(6899), + [anon_sym_STAR] = ACTIONS(6899), + [anon_sym_SLASH] = ACTIONS(6899), + [anon_sym_PERCENT] = ACTIONS(6899), + [anon_sym_PIPE_PIPE] = ACTIONS(6901), + [anon_sym_AMP_AMP] = ACTIONS(6901), + [anon_sym_PIPE] = ACTIONS(6899), + [anon_sym_CARET] = ACTIONS(6899), + [anon_sym_AMP] = ACTIONS(6899), + [anon_sym_EQ_EQ] = ACTIONS(6901), + [anon_sym_BANG_EQ] = ACTIONS(6901), + [anon_sym_GT] = ACTIONS(6899), + [anon_sym_GT_EQ] = ACTIONS(6901), + [anon_sym_LT_EQ] = ACTIONS(6899), + [anon_sym_LT] = ACTIONS(6899), + [anon_sym_LT_LT] = ACTIONS(6899), + [anon_sym_GT_GT] = ACTIONS(6899), + [anon_sym___extension__] = ACTIONS(6762), + [anon_sym___attribute__] = ACTIONS(6901), + [anon_sym___attribute] = ACTIONS(6899), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6901), + [anon_sym_LBRACK] = ACTIONS(6899), + [anon_sym_EQ] = ACTIONS(6899), + [anon_sym_const] = ACTIONS(6770), + [anon_sym_constexpr] = ACTIONS(6762), + [anon_sym_volatile] = ACTIONS(6762), + [anon_sym_restrict] = ACTIONS(6762), + [anon_sym___restrict__] = ACTIONS(6762), + [anon_sym__Atomic] = ACTIONS(6762), + [anon_sym__Noreturn] = ACTIONS(6762), + [anon_sym_noreturn] = ACTIONS(6762), + [anon_sym__Nonnull] = ACTIONS(6762), + [anon_sym_mutable] = ACTIONS(6762), + [anon_sym_constinit] = ACTIONS(6762), + [anon_sym_consteval] = ACTIONS(6762), + [anon_sym_alignas] = ACTIONS(6772), + [anon_sym__Alignas] = ACTIONS(6772), + [anon_sym_QMARK] = ACTIONS(6901), + [anon_sym_STAR_EQ] = ACTIONS(6901), + [anon_sym_SLASH_EQ] = ACTIONS(6901), + [anon_sym_PERCENT_EQ] = ACTIONS(6901), + [anon_sym_PLUS_EQ] = ACTIONS(6901), + [anon_sym_DASH_EQ] = ACTIONS(6901), + [anon_sym_LT_LT_EQ] = ACTIONS(6901), + [anon_sym_GT_GT_EQ] = ACTIONS(6901), + [anon_sym_AMP_EQ] = ACTIONS(6901), + [anon_sym_CARET_EQ] = ACTIONS(6901), + [anon_sym_PIPE_EQ] = ACTIONS(6901), + [anon_sym_LT_EQ_GT] = ACTIONS(6901), + [anon_sym_or] = ACTIONS(6901), + [anon_sym_and] = ACTIONS(6901), + [anon_sym_bitor] = ACTIONS(6901), + [anon_sym_xor] = ACTIONS(6901), + [anon_sym_bitand] = ACTIONS(6901), + [anon_sym_not_eq] = ACTIONS(6901), + [anon_sym_DASH_DASH] = ACTIONS(6901), + [anon_sym_PLUS_PLUS] = ACTIONS(6901), + [anon_sym_asm] = ACTIONS(6901), + [anon_sym___asm__] = ACTIONS(6901), + [anon_sym___asm] = ACTIONS(6899), + [anon_sym_DOT] = ACTIONS(6899), + [anon_sym_DOT_STAR] = ACTIONS(6901), + [anon_sym_DASH_GT] = ACTIONS(6899), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6901), + [anon_sym_override] = ACTIONS(6901), + [anon_sym_noexcept] = ACTIONS(6901), + [anon_sym_throw] = ACTIONS(6901), + [anon_sym_requires] = ACTIONS(6901), + [anon_sym_DASH_GT_STAR] = ACTIONS(6901), }, - [STATE(2544)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6902), - [anon_sym_COMMA] = ACTIONS(6902), - [anon_sym_RPAREN] = ACTIONS(6902), - [anon_sym_LPAREN2] = ACTIONS(6902), - [anon_sym_DASH] = ACTIONS(6900), - [anon_sym_PLUS] = ACTIONS(6900), - [anon_sym_STAR] = ACTIONS(6900), - [anon_sym_SLASH] = ACTIONS(6900), - [anon_sym_PERCENT] = ACTIONS(6900), - [anon_sym_PIPE_PIPE] = ACTIONS(6902), - [anon_sym_AMP_AMP] = ACTIONS(6902), - [anon_sym_PIPE] = ACTIONS(6900), - [anon_sym_CARET] = ACTIONS(6900), - [anon_sym_AMP] = ACTIONS(6900), - [anon_sym_EQ_EQ] = ACTIONS(6902), - [anon_sym_BANG_EQ] = ACTIONS(6902), - [anon_sym_GT] = ACTIONS(6900), - [anon_sym_GT_EQ] = ACTIONS(6902), - [anon_sym_LT_EQ] = ACTIONS(6900), - [anon_sym_LT] = ACTIONS(6900), - [anon_sym_LT_LT] = ACTIONS(6900), - [anon_sym_GT_GT] = ACTIONS(6900), - [anon_sym___extension__] = ACTIONS(6902), - [sym_ms_restrict_modifier] = ACTIONS(6900), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6902), - [sym_ms_signed_ptr_modifier] = ACTIONS(6902), - [anon_sym__unaligned] = ACTIONS(6902), - [anon_sym___unaligned] = ACTIONS(6902), - [anon_sym_LBRACK] = ACTIONS(6902), - [anon_sym_EQ] = ACTIONS(6900), - [anon_sym_const] = ACTIONS(6900), - [anon_sym_constexpr] = ACTIONS(6902), - [anon_sym_volatile] = ACTIONS(6902), - [anon_sym_restrict] = ACTIONS(6902), - [anon_sym___restrict__] = ACTIONS(6902), - [anon_sym__Atomic] = ACTIONS(6902), - [anon_sym__Noreturn] = ACTIONS(6902), - [anon_sym_noreturn] = ACTIONS(6902), - [anon_sym__Nonnull] = ACTIONS(6902), - [anon_sym_mutable] = ACTIONS(6902), - [anon_sym_constinit] = ACTIONS(6902), - [anon_sym_consteval] = ACTIONS(6902), - [anon_sym_alignas] = ACTIONS(6902), - [anon_sym__Alignas] = ACTIONS(6902), - [anon_sym_QMARK] = ACTIONS(6902), - [anon_sym_STAR_EQ] = ACTIONS(6902), - [anon_sym_SLASH_EQ] = ACTIONS(6902), - [anon_sym_PERCENT_EQ] = ACTIONS(6902), - [anon_sym_PLUS_EQ] = ACTIONS(6902), - [anon_sym_DASH_EQ] = ACTIONS(6902), - [anon_sym_LT_LT_EQ] = ACTIONS(6902), - [anon_sym_GT_GT_EQ] = ACTIONS(6902), - [anon_sym_AMP_EQ] = ACTIONS(6902), - [anon_sym_CARET_EQ] = ACTIONS(6902), - [anon_sym_PIPE_EQ] = ACTIONS(6902), - [anon_sym_and_eq] = ACTIONS(6902), - [anon_sym_or_eq] = ACTIONS(6902), - [anon_sym_xor_eq] = ACTIONS(6902), - [anon_sym_LT_EQ_GT] = ACTIONS(6902), - [anon_sym_or] = ACTIONS(6900), - [anon_sym_and] = ACTIONS(6900), - [anon_sym_bitor] = ACTIONS(6902), - [anon_sym_xor] = ACTIONS(6900), - [anon_sym_bitand] = ACTIONS(6902), - [anon_sym_not_eq] = ACTIONS(6902), - [anon_sym_DASH_DASH] = ACTIONS(6902), - [anon_sym_PLUS_PLUS] = ACTIONS(6902), - [anon_sym_DOT] = ACTIONS(6900), - [anon_sym_DOT_STAR] = ACTIONS(6902), - [anon_sym_DASH_GT] = ACTIONS(6900), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6902), - [anon_sym_override] = ACTIONS(6902), - [anon_sym_requires] = ACTIONS(6902), - [anon_sym_DASH_GT_STAR] = ACTIONS(6902), + [STATE(2413)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7709), + [anon_sym_COMMA] = ACTIONS(7709), + [anon_sym_RPAREN] = ACTIONS(7709), + [anon_sym_LPAREN2] = ACTIONS(7709), + [anon_sym_DASH] = ACTIONS(7707), + [anon_sym_PLUS] = ACTIONS(7707), + [anon_sym_STAR] = ACTIONS(7707), + [anon_sym_SLASH] = ACTIONS(7707), + [anon_sym_PERCENT] = ACTIONS(7707), + [anon_sym_PIPE_PIPE] = ACTIONS(7709), + [anon_sym_AMP_AMP] = ACTIONS(7709), + [anon_sym_PIPE] = ACTIONS(7707), + [anon_sym_CARET] = ACTIONS(7707), + [anon_sym_AMP] = ACTIONS(7707), + [anon_sym_EQ_EQ] = ACTIONS(7709), + [anon_sym_BANG_EQ] = ACTIONS(7709), + [anon_sym_GT] = ACTIONS(7707), + [anon_sym_GT_EQ] = ACTIONS(7709), + [anon_sym_LT_EQ] = ACTIONS(7707), + [anon_sym_LT] = ACTIONS(7707), + [anon_sym_LT_LT] = ACTIONS(7707), + [anon_sym_GT_GT] = ACTIONS(7707), + [anon_sym___extension__] = ACTIONS(7709), + [anon_sym___attribute__] = ACTIONS(7709), + [anon_sym___attribute] = ACTIONS(7707), + [anon_sym_LBRACE] = ACTIONS(7709), + [anon_sym_signed] = ACTIONS(8200), + [anon_sym_unsigned] = ACTIONS(8200), + [anon_sym_long] = ACTIONS(8200), + [anon_sym_short] = ACTIONS(8200), + [anon_sym_LBRACK] = ACTIONS(7709), + [anon_sym_EQ] = ACTIONS(7707), + [anon_sym_const] = ACTIONS(7707), + [anon_sym_constexpr] = ACTIONS(7709), + [anon_sym_volatile] = ACTIONS(7709), + [anon_sym_restrict] = ACTIONS(7709), + [anon_sym___restrict__] = ACTIONS(7709), + [anon_sym__Atomic] = ACTIONS(7709), + [anon_sym__Noreturn] = ACTIONS(7709), + [anon_sym_noreturn] = ACTIONS(7709), + [anon_sym__Nonnull] = ACTIONS(7709), + [anon_sym_mutable] = ACTIONS(7709), + [anon_sym_constinit] = ACTIONS(7709), + [anon_sym_consteval] = ACTIONS(7709), + [anon_sym_alignas] = ACTIONS(7709), + [anon_sym__Alignas] = ACTIONS(7709), + [anon_sym_QMARK] = ACTIONS(7709), + [anon_sym_STAR_EQ] = ACTIONS(7709), + [anon_sym_SLASH_EQ] = ACTIONS(7709), + [anon_sym_PERCENT_EQ] = ACTIONS(7709), + [anon_sym_PLUS_EQ] = ACTIONS(7709), + [anon_sym_DASH_EQ] = ACTIONS(7709), + [anon_sym_LT_LT_EQ] = ACTIONS(7709), + [anon_sym_GT_GT_EQ] = ACTIONS(7709), + [anon_sym_AMP_EQ] = ACTIONS(7709), + [anon_sym_CARET_EQ] = ACTIONS(7709), + [anon_sym_PIPE_EQ] = ACTIONS(7709), + [anon_sym_and_eq] = ACTIONS(7709), + [anon_sym_or_eq] = ACTIONS(7709), + [anon_sym_xor_eq] = ACTIONS(7709), + [anon_sym_LT_EQ_GT] = ACTIONS(7709), + [anon_sym_or] = ACTIONS(7707), + [anon_sym_and] = ACTIONS(7707), + [anon_sym_bitor] = ACTIONS(7709), + [anon_sym_xor] = ACTIONS(7707), + [anon_sym_bitand] = ACTIONS(7709), + [anon_sym_not_eq] = ACTIONS(7709), + [anon_sym_DASH_DASH] = ACTIONS(7709), + [anon_sym_PLUS_PLUS] = ACTIONS(7709), + [anon_sym_DOT] = ACTIONS(7707), + [anon_sym_DOT_STAR] = ACTIONS(7709), + [anon_sym_DASH_GT] = ACTIONS(7707), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7709), + [anon_sym_override] = ACTIONS(7709), + [anon_sym_requires] = ACTIONS(7709), + [anon_sym_DASH_GT_STAR] = ACTIONS(7709), }, - [STATE(2545)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6788), - [anon_sym_COMMA] = ACTIONS(6788), - [anon_sym_RPAREN] = ACTIONS(6788), - [anon_sym_LPAREN2] = ACTIONS(6788), - [anon_sym_DASH] = ACTIONS(6786), - [anon_sym_PLUS] = ACTIONS(6786), - [anon_sym_STAR] = ACTIONS(6786), - [anon_sym_SLASH] = ACTIONS(6786), - [anon_sym_PERCENT] = ACTIONS(6786), - [anon_sym_PIPE_PIPE] = ACTIONS(6788), - [anon_sym_AMP_AMP] = ACTIONS(6788), - [anon_sym_PIPE] = ACTIONS(6786), - [anon_sym_CARET] = ACTIONS(6786), - [anon_sym_AMP] = ACTIONS(6786), - [anon_sym_EQ_EQ] = ACTIONS(6788), - [anon_sym_BANG_EQ] = ACTIONS(6788), - [anon_sym_GT] = ACTIONS(6786), - [anon_sym_GT_EQ] = ACTIONS(6788), - [anon_sym_LT_EQ] = ACTIONS(6786), - [anon_sym_LT] = ACTIONS(6786), - [anon_sym_LT_LT] = ACTIONS(6786), - [anon_sym_GT_GT] = ACTIONS(6786), - [anon_sym___extension__] = ACTIONS(6788), - [anon_sym___attribute__] = ACTIONS(6788), - [anon_sym___attribute] = ACTIONS(6786), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6788), - [anon_sym_LBRACK] = ACTIONS(6786), - [anon_sym_EQ] = ACTIONS(6786), - [anon_sym_const] = ACTIONS(6786), - [anon_sym_constexpr] = ACTIONS(6788), - [anon_sym_volatile] = ACTIONS(6788), - [anon_sym_restrict] = ACTIONS(6788), - [anon_sym___restrict__] = ACTIONS(6788), - [anon_sym__Atomic] = ACTIONS(6788), - [anon_sym__Noreturn] = ACTIONS(6788), - [anon_sym_noreturn] = ACTIONS(6788), - [anon_sym__Nonnull] = ACTIONS(6788), - [anon_sym_mutable] = ACTIONS(6788), - [anon_sym_constinit] = ACTIONS(6788), - [anon_sym_consteval] = ACTIONS(6788), - [anon_sym_alignas] = ACTIONS(6788), - [anon_sym__Alignas] = ACTIONS(6788), - [anon_sym_QMARK] = ACTIONS(6788), - [anon_sym_STAR_EQ] = ACTIONS(6788), - [anon_sym_SLASH_EQ] = ACTIONS(6788), - [anon_sym_PERCENT_EQ] = ACTIONS(6788), - [anon_sym_PLUS_EQ] = ACTIONS(6788), - [anon_sym_DASH_EQ] = ACTIONS(6788), - [anon_sym_LT_LT_EQ] = ACTIONS(6788), - [anon_sym_GT_GT_EQ] = ACTIONS(6788), - [anon_sym_AMP_EQ] = ACTIONS(6788), - [anon_sym_CARET_EQ] = ACTIONS(6788), - [anon_sym_PIPE_EQ] = ACTIONS(6788), - [anon_sym_LT_EQ_GT] = ACTIONS(6788), - [anon_sym_or] = ACTIONS(6788), - [anon_sym_and] = ACTIONS(6788), - [anon_sym_bitor] = ACTIONS(6788), - [anon_sym_xor] = ACTIONS(6788), - [anon_sym_bitand] = ACTIONS(6788), - [anon_sym_not_eq] = ACTIONS(6788), - [anon_sym_DASH_DASH] = ACTIONS(6788), - [anon_sym_PLUS_PLUS] = ACTIONS(6788), - [anon_sym_asm] = ACTIONS(6788), - [anon_sym___asm__] = ACTIONS(6788), - [anon_sym___asm] = ACTIONS(6786), - [anon_sym_DOT] = ACTIONS(6786), - [anon_sym_DOT_STAR] = ACTIONS(6788), - [anon_sym_DASH_GT] = ACTIONS(6786), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6788), - [anon_sym_override] = ACTIONS(6788), - [anon_sym_noexcept] = ACTIONS(6788), - [anon_sym_throw] = ACTIONS(6788), - [anon_sym_requires] = ACTIONS(6788), - [anon_sym_DASH_GT_STAR] = ACTIONS(6788), + [STATE(2414)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7699), + [anon_sym_COMMA] = ACTIONS(7699), + [anon_sym_RPAREN] = ACTIONS(7699), + [anon_sym_LPAREN2] = ACTIONS(7699), + [anon_sym_DASH] = ACTIONS(7697), + [anon_sym_PLUS] = ACTIONS(7697), + [anon_sym_STAR] = ACTIONS(7697), + [anon_sym_SLASH] = ACTIONS(7697), + [anon_sym_PERCENT] = ACTIONS(7697), + [anon_sym_PIPE_PIPE] = ACTIONS(7699), + [anon_sym_AMP_AMP] = ACTIONS(7699), + [anon_sym_PIPE] = ACTIONS(7697), + [anon_sym_CARET] = ACTIONS(7697), + [anon_sym_AMP] = ACTIONS(7697), + [anon_sym_EQ_EQ] = ACTIONS(7699), + [anon_sym_BANG_EQ] = ACTIONS(7699), + [anon_sym_GT] = ACTIONS(7697), + [anon_sym_GT_EQ] = ACTIONS(7699), + [anon_sym_LT_EQ] = ACTIONS(7697), + [anon_sym_LT] = ACTIONS(7697), + [anon_sym_LT_LT] = ACTIONS(7697), + [anon_sym_GT_GT] = ACTIONS(7697), + [anon_sym___extension__] = ACTIONS(7699), + [anon_sym___attribute__] = ACTIONS(7699), + [anon_sym___attribute] = ACTIONS(7697), + [anon_sym_LBRACE] = ACTIONS(7699), + [anon_sym_signed] = ACTIONS(8196), + [anon_sym_unsigned] = ACTIONS(8196), + [anon_sym_long] = ACTIONS(8196), + [anon_sym_short] = ACTIONS(8196), + [anon_sym_LBRACK] = ACTIONS(7699), + [anon_sym_EQ] = ACTIONS(7697), + [anon_sym_const] = ACTIONS(7697), + [anon_sym_constexpr] = ACTIONS(7699), + [anon_sym_volatile] = ACTIONS(7699), + [anon_sym_restrict] = ACTIONS(7699), + [anon_sym___restrict__] = ACTIONS(7699), + [anon_sym__Atomic] = ACTIONS(7699), + [anon_sym__Noreturn] = ACTIONS(7699), + [anon_sym_noreturn] = ACTIONS(7699), + [anon_sym__Nonnull] = ACTIONS(7699), + [anon_sym_mutable] = ACTIONS(7699), + [anon_sym_constinit] = ACTIONS(7699), + [anon_sym_consteval] = ACTIONS(7699), + [anon_sym_alignas] = ACTIONS(7699), + [anon_sym__Alignas] = ACTIONS(7699), + [anon_sym_QMARK] = ACTIONS(7699), + [anon_sym_STAR_EQ] = ACTIONS(7699), + [anon_sym_SLASH_EQ] = ACTIONS(7699), + [anon_sym_PERCENT_EQ] = ACTIONS(7699), + [anon_sym_PLUS_EQ] = ACTIONS(7699), + [anon_sym_DASH_EQ] = ACTIONS(7699), + [anon_sym_LT_LT_EQ] = ACTIONS(7699), + [anon_sym_GT_GT_EQ] = ACTIONS(7699), + [anon_sym_AMP_EQ] = ACTIONS(7699), + [anon_sym_CARET_EQ] = ACTIONS(7699), + [anon_sym_PIPE_EQ] = ACTIONS(7699), + [anon_sym_and_eq] = ACTIONS(7699), + [anon_sym_or_eq] = ACTIONS(7699), + [anon_sym_xor_eq] = ACTIONS(7699), + [anon_sym_LT_EQ_GT] = ACTIONS(7699), + [anon_sym_or] = ACTIONS(7697), + [anon_sym_and] = ACTIONS(7697), + [anon_sym_bitor] = ACTIONS(7699), + [anon_sym_xor] = ACTIONS(7697), + [anon_sym_bitand] = ACTIONS(7699), + [anon_sym_not_eq] = ACTIONS(7699), + [anon_sym_DASH_DASH] = ACTIONS(7699), + [anon_sym_PLUS_PLUS] = ACTIONS(7699), + [anon_sym_DOT] = ACTIONS(7697), + [anon_sym_DOT_STAR] = ACTIONS(7699), + [anon_sym_DASH_GT] = ACTIONS(7697), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7699), + [anon_sym_override] = ACTIONS(7699), + [anon_sym_requires] = ACTIONS(7699), + [anon_sym_DASH_GT_STAR] = ACTIONS(7699), }, - [STATE(2546)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2546), - [sym_identifier] = ACTIONS(6627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6629), - [anon_sym_COMMA] = ACTIONS(6629), - [anon_sym_RPAREN] = ACTIONS(6629), - [aux_sym_preproc_if_token2] = ACTIONS(6629), - [aux_sym_preproc_else_token1] = ACTIONS(6629), - [aux_sym_preproc_elif_token1] = ACTIONS(6627), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6629), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6629), - [anon_sym_LPAREN2] = ACTIONS(6629), - [anon_sym_DASH] = ACTIONS(6627), - [anon_sym_PLUS] = ACTIONS(6627), - [anon_sym_STAR] = ACTIONS(6629), - [anon_sym_SLASH] = ACTIONS(6627), - [anon_sym_PERCENT] = ACTIONS(6629), - [anon_sym_PIPE_PIPE] = ACTIONS(6629), - [anon_sym_AMP_AMP] = ACTIONS(6629), - [anon_sym_PIPE] = ACTIONS(6627), - [anon_sym_CARET] = ACTIONS(6629), - [anon_sym_AMP] = ACTIONS(6627), - [anon_sym_EQ_EQ] = ACTIONS(6629), - [anon_sym_BANG_EQ] = ACTIONS(6629), - [anon_sym_GT] = ACTIONS(6627), - [anon_sym_GT_EQ] = ACTIONS(6629), - [anon_sym_LT_EQ] = ACTIONS(6627), - [anon_sym_LT] = ACTIONS(6627), - [anon_sym_LT_LT] = ACTIONS(6629), - [anon_sym_GT_GT] = ACTIONS(6629), - [anon_sym_SEMI] = ACTIONS(6629), - [anon_sym___extension__] = ACTIONS(6627), - [anon_sym___attribute__] = ACTIONS(6627), - [anon_sym___attribute] = ACTIONS(6627), - [anon_sym_COLON] = ACTIONS(6627), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6629), - [anon_sym_LBRACE] = ACTIONS(6629), - [anon_sym_RBRACE] = ACTIONS(6629), - [anon_sym_signed] = ACTIONS(8205), - [anon_sym_unsigned] = ACTIONS(8205), - [anon_sym_long] = ACTIONS(8205), - [anon_sym_short] = ACTIONS(8205), - [anon_sym_LBRACK] = ACTIONS(6629), - [anon_sym_const] = ACTIONS(6627), - [anon_sym_constexpr] = ACTIONS(6627), - [anon_sym_volatile] = ACTIONS(6627), - [anon_sym_restrict] = ACTIONS(6627), - [anon_sym___restrict__] = ACTIONS(6627), - [anon_sym__Atomic] = ACTIONS(6627), - [anon_sym__Noreturn] = ACTIONS(6627), - [anon_sym_noreturn] = ACTIONS(6627), - [anon_sym__Nonnull] = ACTIONS(6627), - [anon_sym_mutable] = ACTIONS(6627), - [anon_sym_constinit] = ACTIONS(6627), - [anon_sym_consteval] = ACTIONS(6627), - [anon_sym_alignas] = ACTIONS(6627), - [anon_sym__Alignas] = ACTIONS(6627), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(6629), - [anon_sym_LT_EQ_GT] = ACTIONS(6629), - [anon_sym_or] = ACTIONS(6627), - [anon_sym_and] = ACTIONS(6627), - [anon_sym_bitor] = ACTIONS(6627), - [anon_sym_xor] = ACTIONS(6627), - [anon_sym_bitand] = ACTIONS(6627), - [anon_sym_not_eq] = ACTIONS(6627), - [anon_sym_DASH_DASH] = ACTIONS(6629), - [anon_sym_PLUS_PLUS] = ACTIONS(6629), - [anon_sym_DOT] = ACTIONS(6627), - [anon_sym_DOT_STAR] = ACTIONS(6629), - [anon_sym_DASH_GT] = ACTIONS(6629), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6627), - [anon_sym_override] = ACTIONS(6627), - [anon_sym_requires] = ACTIONS(6627), - [anon_sym_COLON_RBRACK] = ACTIONS(6629), + [STATE(2415)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7695), + [anon_sym_COMMA] = ACTIONS(7695), + [anon_sym_RPAREN] = ACTIONS(7695), + [anon_sym_LPAREN2] = ACTIONS(7695), + [anon_sym_DASH] = ACTIONS(7693), + [anon_sym_PLUS] = ACTIONS(7693), + [anon_sym_STAR] = ACTIONS(7693), + [anon_sym_SLASH] = ACTIONS(7693), + [anon_sym_PERCENT] = ACTIONS(7693), + [anon_sym_PIPE_PIPE] = ACTIONS(7695), + [anon_sym_AMP_AMP] = ACTIONS(7695), + [anon_sym_PIPE] = ACTIONS(7693), + [anon_sym_CARET] = ACTIONS(7693), + [anon_sym_AMP] = ACTIONS(7693), + [anon_sym_EQ_EQ] = ACTIONS(7695), + [anon_sym_BANG_EQ] = ACTIONS(7695), + [anon_sym_GT] = ACTIONS(7693), + [anon_sym_GT_EQ] = ACTIONS(7695), + [anon_sym_LT_EQ] = ACTIONS(7693), + [anon_sym_LT] = ACTIONS(7693), + [anon_sym_LT_LT] = ACTIONS(7693), + [anon_sym_GT_GT] = ACTIONS(7693), + [anon_sym___extension__] = ACTIONS(7695), + [anon_sym___attribute__] = ACTIONS(7695), + [anon_sym___attribute] = ACTIONS(7693), + [anon_sym_LBRACE] = ACTIONS(7695), + [anon_sym_signed] = ACTIONS(8196), + [anon_sym_unsigned] = ACTIONS(8196), + [anon_sym_long] = ACTIONS(8196), + [anon_sym_short] = ACTIONS(8196), + [anon_sym_LBRACK] = ACTIONS(7695), + [anon_sym_EQ] = ACTIONS(7693), + [anon_sym_const] = ACTIONS(7693), + [anon_sym_constexpr] = ACTIONS(7695), + [anon_sym_volatile] = ACTIONS(7695), + [anon_sym_restrict] = ACTIONS(7695), + [anon_sym___restrict__] = ACTIONS(7695), + [anon_sym__Atomic] = ACTIONS(7695), + [anon_sym__Noreturn] = ACTIONS(7695), + [anon_sym_noreturn] = ACTIONS(7695), + [anon_sym__Nonnull] = ACTIONS(7695), + [anon_sym_mutable] = ACTIONS(7695), + [anon_sym_constinit] = ACTIONS(7695), + [anon_sym_consteval] = ACTIONS(7695), + [anon_sym_alignas] = ACTIONS(7695), + [anon_sym__Alignas] = ACTIONS(7695), + [anon_sym_QMARK] = ACTIONS(7695), + [anon_sym_STAR_EQ] = ACTIONS(7695), + [anon_sym_SLASH_EQ] = ACTIONS(7695), + [anon_sym_PERCENT_EQ] = ACTIONS(7695), + [anon_sym_PLUS_EQ] = ACTIONS(7695), + [anon_sym_DASH_EQ] = ACTIONS(7695), + [anon_sym_LT_LT_EQ] = ACTIONS(7695), + [anon_sym_GT_GT_EQ] = ACTIONS(7695), + [anon_sym_AMP_EQ] = ACTIONS(7695), + [anon_sym_CARET_EQ] = ACTIONS(7695), + [anon_sym_PIPE_EQ] = ACTIONS(7695), + [anon_sym_and_eq] = ACTIONS(7695), + [anon_sym_or_eq] = ACTIONS(7695), + [anon_sym_xor_eq] = ACTIONS(7695), + [anon_sym_LT_EQ_GT] = ACTIONS(7695), + [anon_sym_or] = ACTIONS(7693), + [anon_sym_and] = ACTIONS(7693), + [anon_sym_bitor] = ACTIONS(7695), + [anon_sym_xor] = ACTIONS(7693), + [anon_sym_bitand] = ACTIONS(7695), + [anon_sym_not_eq] = ACTIONS(7695), + [anon_sym_DASH_DASH] = ACTIONS(7695), + [anon_sym_PLUS_PLUS] = ACTIONS(7695), + [anon_sym_DOT] = ACTIONS(7693), + [anon_sym_DOT_STAR] = ACTIONS(7695), + [anon_sym_DASH_GT] = ACTIONS(7693), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7695), + [anon_sym_override] = ACTIONS(7695), + [anon_sym_requires] = ACTIONS(7695), + [anon_sym_DASH_GT_STAR] = ACTIONS(7695), }, - [STATE(2547)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2339), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), - [anon_sym_COMMA] = ACTIONS(7389), - [anon_sym_RPAREN] = ACTIONS(7389), - [anon_sym_LPAREN2] = ACTIONS(7389), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_STAR] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7387), - [anon_sym_PERCENT] = ACTIONS(7387), - [anon_sym_PIPE_PIPE] = ACTIONS(7389), - [anon_sym_AMP_AMP] = ACTIONS(7389), - [anon_sym_PIPE] = ACTIONS(7387), - [anon_sym_CARET] = ACTIONS(7387), - [anon_sym_AMP] = ACTIONS(7387), - [anon_sym_EQ_EQ] = ACTIONS(7389), - [anon_sym_BANG_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_LT_EQ] = ACTIONS(7387), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_LT] = ACTIONS(7387), - [anon_sym_GT_GT] = ACTIONS(7387), - [anon_sym___extension__] = ACTIONS(7389), - [anon_sym___attribute__] = ACTIONS(7389), - [anon_sym___attribute] = ACTIONS(7387), - [anon_sym_LBRACE] = ACTIONS(7389), - [anon_sym_signed] = ACTIONS(8135), - [anon_sym_unsigned] = ACTIONS(8135), - [anon_sym_long] = ACTIONS(8135), - [anon_sym_short] = ACTIONS(8135), - [anon_sym_LBRACK] = ACTIONS(7389), - [anon_sym_EQ] = ACTIONS(7387), - [anon_sym_const] = ACTIONS(7387), - [anon_sym_constexpr] = ACTIONS(7389), - [anon_sym_volatile] = ACTIONS(7389), - [anon_sym_restrict] = ACTIONS(7389), - [anon_sym___restrict__] = ACTIONS(7389), - [anon_sym__Atomic] = ACTIONS(7389), - [anon_sym__Noreturn] = ACTIONS(7389), - [anon_sym_noreturn] = ACTIONS(7389), - [anon_sym__Nonnull] = ACTIONS(7389), - [anon_sym_mutable] = ACTIONS(7389), - [anon_sym_constinit] = ACTIONS(7389), - [anon_sym_consteval] = ACTIONS(7389), - [anon_sym_alignas] = ACTIONS(7389), - [anon_sym__Alignas] = ACTIONS(7389), - [anon_sym_QMARK] = ACTIONS(7389), - [anon_sym_STAR_EQ] = ACTIONS(7389), - [anon_sym_SLASH_EQ] = ACTIONS(7389), - [anon_sym_PERCENT_EQ] = ACTIONS(7389), - [anon_sym_PLUS_EQ] = ACTIONS(7389), - [anon_sym_DASH_EQ] = ACTIONS(7389), - [anon_sym_LT_LT_EQ] = ACTIONS(7389), - [anon_sym_GT_GT_EQ] = ACTIONS(7389), - [anon_sym_AMP_EQ] = ACTIONS(7389), - [anon_sym_CARET_EQ] = ACTIONS(7389), - [anon_sym_PIPE_EQ] = ACTIONS(7389), - [anon_sym_LT_EQ_GT] = ACTIONS(7389), - [anon_sym_or] = ACTIONS(7389), - [anon_sym_and] = ACTIONS(7389), - [anon_sym_bitor] = ACTIONS(7389), - [anon_sym_xor] = ACTIONS(7389), - [anon_sym_bitand] = ACTIONS(7389), - [anon_sym_not_eq] = ACTIONS(7389), - [anon_sym_DASH_DASH] = ACTIONS(7389), - [anon_sym_PLUS_PLUS] = ACTIONS(7389), - [anon_sym_DOT] = ACTIONS(7387), - [anon_sym_DOT_STAR] = ACTIONS(7389), - [anon_sym_DASH_GT] = ACTIONS(7387), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7389), - [anon_sym_override] = ACTIONS(7389), - [anon_sym_requires] = ACTIONS(7389), - [anon_sym_DASH_GT_STAR] = ACTIONS(7389), + [STATE(2416)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7160), + [anon_sym_COMMA] = ACTIONS(7160), + [anon_sym_RPAREN] = ACTIONS(7160), + [anon_sym_LPAREN2] = ACTIONS(7160), + [anon_sym_DASH] = ACTIONS(7158), + [anon_sym_PLUS] = ACTIONS(7158), + [anon_sym_STAR] = ACTIONS(7158), + [anon_sym_SLASH] = ACTIONS(7158), + [anon_sym_PERCENT] = ACTIONS(7158), + [anon_sym_PIPE_PIPE] = ACTIONS(7160), + [anon_sym_AMP_AMP] = ACTIONS(7160), + [anon_sym_PIPE] = ACTIONS(7158), + [anon_sym_CARET] = ACTIONS(7158), + [anon_sym_AMP] = ACTIONS(7158), + [anon_sym_EQ_EQ] = ACTIONS(7160), + [anon_sym_BANG_EQ] = ACTIONS(7160), + [anon_sym_GT] = ACTIONS(7158), + [anon_sym_GT_EQ] = ACTIONS(7160), + [anon_sym_LT_EQ] = ACTIONS(7158), + [anon_sym_LT] = ACTIONS(7158), + [anon_sym_LT_LT] = ACTIONS(7158), + [anon_sym_GT_GT] = ACTIONS(7158), + [anon_sym___extension__] = ACTIONS(7160), + [anon_sym___attribute__] = ACTIONS(7160), + [anon_sym___attribute] = ACTIONS(7158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7160), + [anon_sym_LBRACK] = ACTIONS(7158), + [anon_sym_EQ] = ACTIONS(7158), + [anon_sym_const] = ACTIONS(7158), + [anon_sym_constexpr] = ACTIONS(7160), + [anon_sym_volatile] = ACTIONS(7160), + [anon_sym_restrict] = ACTIONS(7160), + [anon_sym___restrict__] = ACTIONS(7160), + [anon_sym__Atomic] = ACTIONS(7160), + [anon_sym__Noreturn] = ACTIONS(7160), + [anon_sym_noreturn] = ACTIONS(7160), + [anon_sym__Nonnull] = ACTIONS(7160), + [anon_sym_mutable] = ACTIONS(7160), + [anon_sym_constinit] = ACTIONS(7160), + [anon_sym_consteval] = ACTIONS(7160), + [anon_sym_alignas] = ACTIONS(7160), + [anon_sym__Alignas] = ACTIONS(7160), + [anon_sym_QMARK] = ACTIONS(7160), + [anon_sym_STAR_EQ] = ACTIONS(7160), + [anon_sym_SLASH_EQ] = ACTIONS(7160), + [anon_sym_PERCENT_EQ] = ACTIONS(7160), + [anon_sym_PLUS_EQ] = ACTIONS(7160), + [anon_sym_DASH_EQ] = ACTIONS(7160), + [anon_sym_LT_LT_EQ] = ACTIONS(7160), + [anon_sym_GT_GT_EQ] = ACTIONS(7160), + [anon_sym_AMP_EQ] = ACTIONS(7160), + [anon_sym_CARET_EQ] = ACTIONS(7160), + [anon_sym_PIPE_EQ] = ACTIONS(7160), + [anon_sym_and_eq] = ACTIONS(7160), + [anon_sym_or_eq] = ACTIONS(7160), + [anon_sym_xor_eq] = ACTIONS(7160), + [anon_sym_LT_EQ_GT] = ACTIONS(7160), + [anon_sym_or] = ACTIONS(7158), + [anon_sym_and] = ACTIONS(7158), + [anon_sym_bitor] = ACTIONS(7160), + [anon_sym_xor] = ACTIONS(7158), + [anon_sym_bitand] = ACTIONS(7160), + [anon_sym_not_eq] = ACTIONS(7160), + [anon_sym_DASH_DASH] = ACTIONS(7160), + [anon_sym_PLUS_PLUS] = ACTIONS(7160), + [anon_sym_asm] = ACTIONS(7160), + [anon_sym___asm__] = ACTIONS(7160), + [anon_sym___asm] = ACTIONS(7158), + [anon_sym_DOT] = ACTIONS(7158), + [anon_sym_DOT_STAR] = ACTIONS(7160), + [anon_sym_DASH_GT] = ACTIONS(7158), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7160), + [anon_sym_override] = ACTIONS(7160), + [anon_sym_noexcept] = ACTIONS(7160), + [anon_sym_throw] = ACTIONS(7160), + [anon_sym_requires] = ACTIONS(7160), + [anon_sym_DASH_GT_STAR] = ACTIONS(7160), }, - [STATE(2548)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), - [anon_sym_COMMA] = ACTIONS(6951), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_DASH] = ACTIONS(6949), - [anon_sym_PLUS] = ACTIONS(6949), - [anon_sym_STAR] = ACTIONS(6949), - [anon_sym_SLASH] = ACTIONS(6949), - [anon_sym_PERCENT] = ACTIONS(6949), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_PIPE] = ACTIONS(6949), - [anon_sym_CARET] = ACTIONS(6949), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_GT] = ACTIONS(6949), - [anon_sym_GT_EQ] = ACTIONS(6951), - [anon_sym_LT_EQ] = ACTIONS(6949), - [anon_sym_LT] = ACTIONS(6949), - [anon_sym_LT_LT] = ACTIONS(6949), - [anon_sym_GT_GT] = ACTIONS(6949), - [anon_sym___extension__] = ACTIONS(6951), - [anon_sym___attribute__] = ACTIONS(6951), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_COLON] = ACTIONS(6951), - [anon_sym_LBRACE] = ACTIONS(6951), - [anon_sym_LBRACK] = ACTIONS(6951), - [anon_sym_RBRACK] = ACTIONS(6951), - [anon_sym_EQ] = ACTIONS(6949), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6951), - [anon_sym_volatile] = ACTIONS(6951), - [anon_sym_restrict] = ACTIONS(6951), - [anon_sym___restrict__] = ACTIONS(6951), - [anon_sym__Atomic] = ACTIONS(6951), - [anon_sym__Noreturn] = ACTIONS(6951), - [anon_sym_noreturn] = ACTIONS(6951), - [anon_sym__Nonnull] = ACTIONS(6951), - [anon_sym_mutable] = ACTIONS(6951), - [anon_sym_constinit] = ACTIONS(6951), - [anon_sym_consteval] = ACTIONS(6951), - [anon_sym_alignas] = ACTIONS(6951), - [anon_sym__Alignas] = ACTIONS(6951), - [anon_sym_QMARK] = ACTIONS(6951), - [anon_sym_STAR_EQ] = ACTIONS(6951), - [anon_sym_SLASH_EQ] = ACTIONS(6951), - [anon_sym_PERCENT_EQ] = ACTIONS(6951), - [anon_sym_PLUS_EQ] = ACTIONS(6951), - [anon_sym_DASH_EQ] = ACTIONS(6951), - [anon_sym_LT_LT_EQ] = ACTIONS(6951), - [anon_sym_GT_GT_EQ] = ACTIONS(6951), - [anon_sym_AMP_EQ] = ACTIONS(6951), - [anon_sym_CARET_EQ] = ACTIONS(6951), - [anon_sym_PIPE_EQ] = ACTIONS(6951), - [anon_sym_and_eq] = ACTIONS(6951), - [anon_sym_or_eq] = ACTIONS(6951), - [anon_sym_xor_eq] = ACTIONS(6951), - [anon_sym_LT_EQ_GT] = ACTIONS(6951), - [anon_sym_or] = ACTIONS(6949), - [anon_sym_and] = ACTIONS(6949), - [anon_sym_bitor] = ACTIONS(6951), - [anon_sym_xor] = ACTIONS(6949), - [anon_sym_bitand] = ACTIONS(6951), - [anon_sym_not_eq] = ACTIONS(6951), - [anon_sym_DASH_DASH] = ACTIONS(6951), - [anon_sym_PLUS_PLUS] = ACTIONS(6951), - [anon_sym_DOT] = ACTIONS(6949), - [anon_sym_DOT_STAR] = ACTIONS(6951), - [anon_sym_DASH_GT] = ACTIONS(6951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6951), - [anon_sym_decltype] = ACTIONS(6951), - [anon_sym_final] = ACTIONS(6951), - [anon_sym_override] = ACTIONS(6951), - [anon_sym_requires] = ACTIONS(6951), + [STATE(2417)] = { + [sym__abstract_declarator] = STATE(5214), + [sym_abstract_parenthesized_declarator] = STATE(4825), + [sym_abstract_pointer_declarator] = STATE(4825), + [sym_abstract_function_declarator] = STATE(4825), + [sym_abstract_array_declarator] = STATE(4825), + [sym_type_qualifier] = STATE(2270), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1974), + [sym_abstract_reference_declarator] = STATE(4825), + [sym__function_declarator_seq] = STATE(4934), + [aux_sym__type_definition_type_repeat1] = STATE(2270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_RPAREN] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(7006), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7347), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(7297), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7347), + [anon_sym_AMP] = ACTIONS(7299), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7347), + [anon_sym_GT_GT] = ACTIONS(7347), + [anon_sym___extension__] = ACTIONS(7014), + [anon_sym_LBRACK] = ACTIONS(7022), + [anon_sym_EQ] = ACTIONS(7347), + [anon_sym_const] = ACTIONS(7024), + [anon_sym_constexpr] = ACTIONS(7014), + [anon_sym_volatile] = ACTIONS(7014), + [anon_sym_restrict] = ACTIONS(7014), + [anon_sym___restrict__] = ACTIONS(7014), + [anon_sym__Atomic] = ACTIONS(7014), + [anon_sym__Noreturn] = ACTIONS(7014), + [anon_sym_noreturn] = ACTIONS(7014), + [anon_sym__Nonnull] = ACTIONS(7014), + [anon_sym_mutable] = ACTIONS(7014), + [anon_sym_constinit] = ACTIONS(7014), + [anon_sym_consteval] = ACTIONS(7014), + [anon_sym_alignas] = ACTIONS(7026), + [anon_sym__Alignas] = ACTIONS(7026), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_STAR_EQ] = ACTIONS(7345), + [anon_sym_SLASH_EQ] = ACTIONS(7345), + [anon_sym_PERCENT_EQ] = ACTIONS(7345), + [anon_sym_PLUS_EQ] = ACTIONS(7345), + [anon_sym_DASH_EQ] = ACTIONS(7345), + [anon_sym_LT_LT_EQ] = ACTIONS(7345), + [anon_sym_GT_GT_EQ] = ACTIONS(7345), + [anon_sym_AMP_EQ] = ACTIONS(7345), + [anon_sym_CARET_EQ] = ACTIONS(7345), + [anon_sym_PIPE_EQ] = ACTIONS(7345), + [anon_sym_and_eq] = ACTIONS(7345), + [anon_sym_or_eq] = ACTIONS(7345), + [anon_sym_xor_eq] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7347), + [anon_sym_and] = ACTIONS(7347), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7347), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7347), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7345), }, - [STATE(2549)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), - [anon_sym_COMMA] = ACTIONS(6951), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_DASH] = ACTIONS(6949), - [anon_sym_PLUS] = ACTIONS(6949), - [anon_sym_STAR] = ACTIONS(6949), - [anon_sym_SLASH] = ACTIONS(6949), - [anon_sym_PERCENT] = ACTIONS(6949), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_PIPE] = ACTIONS(6949), - [anon_sym_CARET] = ACTIONS(6949), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_GT] = ACTIONS(6949), - [anon_sym_GT_EQ] = ACTIONS(6949), - [anon_sym_LT_EQ] = ACTIONS(6949), - [anon_sym_LT] = ACTIONS(6949), - [anon_sym_LT_LT] = ACTIONS(6949), - [anon_sym_GT_GT] = ACTIONS(6949), - [anon_sym___extension__] = ACTIONS(6951), - [anon_sym___attribute__] = ACTIONS(6951), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_COLON] = ACTIONS(6951), - [anon_sym_LBRACE] = ACTIONS(6951), - [anon_sym_LBRACK] = ACTIONS(6951), - [anon_sym_EQ] = ACTIONS(6949), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6951), - [anon_sym_volatile] = ACTIONS(6951), - [anon_sym_restrict] = ACTIONS(6951), - [anon_sym___restrict__] = ACTIONS(6951), - [anon_sym__Atomic] = ACTIONS(6951), - [anon_sym__Noreturn] = ACTIONS(6951), - [anon_sym_noreturn] = ACTIONS(6951), - [anon_sym__Nonnull] = ACTIONS(6951), - [anon_sym_mutable] = ACTIONS(6951), - [anon_sym_constinit] = ACTIONS(6951), - [anon_sym_consteval] = ACTIONS(6951), - [anon_sym_alignas] = ACTIONS(6951), - [anon_sym__Alignas] = ACTIONS(6951), - [anon_sym_QMARK] = ACTIONS(6951), - [anon_sym_STAR_EQ] = ACTIONS(6951), - [anon_sym_SLASH_EQ] = ACTIONS(6951), - [anon_sym_PERCENT_EQ] = ACTIONS(6951), - [anon_sym_PLUS_EQ] = ACTIONS(6951), - [anon_sym_DASH_EQ] = ACTIONS(6951), - [anon_sym_LT_LT_EQ] = ACTIONS(6951), - [anon_sym_GT_GT_EQ] = ACTIONS(6949), - [anon_sym_AMP_EQ] = ACTIONS(6951), - [anon_sym_CARET_EQ] = ACTIONS(6951), - [anon_sym_PIPE_EQ] = ACTIONS(6951), - [anon_sym_and_eq] = ACTIONS(6951), - [anon_sym_or_eq] = ACTIONS(6951), - [anon_sym_xor_eq] = ACTIONS(6951), - [anon_sym_LT_EQ_GT] = ACTIONS(6951), - [anon_sym_or] = ACTIONS(6949), - [anon_sym_and] = ACTIONS(6949), - [anon_sym_bitor] = ACTIONS(6951), - [anon_sym_xor] = ACTIONS(6949), - [anon_sym_bitand] = ACTIONS(6951), - [anon_sym_not_eq] = ACTIONS(6951), - [anon_sym_DASH_DASH] = ACTIONS(6951), - [anon_sym_PLUS_PLUS] = ACTIONS(6951), - [anon_sym_DOT] = ACTIONS(6949), - [anon_sym_DOT_STAR] = ACTIONS(6951), - [anon_sym_DASH_GT] = ACTIONS(6951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6951), - [anon_sym_decltype] = ACTIONS(6951), - [anon_sym_final] = ACTIONS(6951), - [anon_sym_override] = ACTIONS(6951), - [anon_sym_GT2] = ACTIONS(6951), - [anon_sym_requires] = ACTIONS(6951), + [STATE(2418)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7715), + [anon_sym_COMMA] = ACTIONS(7715), + [anon_sym_RPAREN] = ACTIONS(7715), + [anon_sym_LPAREN2] = ACTIONS(7715), + [anon_sym_DASH] = ACTIONS(7713), + [anon_sym_PLUS] = ACTIONS(7713), + [anon_sym_STAR] = ACTIONS(7713), + [anon_sym_SLASH] = ACTIONS(7713), + [anon_sym_PERCENT] = ACTIONS(7713), + [anon_sym_PIPE_PIPE] = ACTIONS(7715), + [anon_sym_AMP_AMP] = ACTIONS(7715), + [anon_sym_PIPE] = ACTIONS(7713), + [anon_sym_CARET] = ACTIONS(7713), + [anon_sym_AMP] = ACTIONS(7713), + [anon_sym_EQ_EQ] = ACTIONS(7715), + [anon_sym_BANG_EQ] = ACTIONS(7715), + [anon_sym_GT] = ACTIONS(7713), + [anon_sym_GT_EQ] = ACTIONS(7715), + [anon_sym_LT_EQ] = ACTIONS(7713), + [anon_sym_LT] = ACTIONS(7713), + [anon_sym_LT_LT] = ACTIONS(7713), + [anon_sym_GT_GT] = ACTIONS(7713), + [anon_sym___extension__] = ACTIONS(7715), + [anon_sym___attribute__] = ACTIONS(7715), + [anon_sym___attribute] = ACTIONS(7713), + [anon_sym_LBRACE] = ACTIONS(7715), + [anon_sym_signed] = ACTIONS(8196), + [anon_sym_unsigned] = ACTIONS(8196), + [anon_sym_long] = ACTIONS(8196), + [anon_sym_short] = ACTIONS(8196), + [anon_sym_LBRACK] = ACTIONS(7715), + [anon_sym_EQ] = ACTIONS(7713), + [anon_sym_const] = ACTIONS(7713), + [anon_sym_constexpr] = ACTIONS(7715), + [anon_sym_volatile] = ACTIONS(7715), + [anon_sym_restrict] = ACTIONS(7715), + [anon_sym___restrict__] = ACTIONS(7715), + [anon_sym__Atomic] = ACTIONS(7715), + [anon_sym__Noreturn] = ACTIONS(7715), + [anon_sym_noreturn] = ACTIONS(7715), + [anon_sym__Nonnull] = ACTIONS(7715), + [anon_sym_mutable] = ACTIONS(7715), + [anon_sym_constinit] = ACTIONS(7715), + [anon_sym_consteval] = ACTIONS(7715), + [anon_sym_alignas] = ACTIONS(7715), + [anon_sym__Alignas] = ACTIONS(7715), + [anon_sym_QMARK] = ACTIONS(7715), + [anon_sym_STAR_EQ] = ACTIONS(7715), + [anon_sym_SLASH_EQ] = ACTIONS(7715), + [anon_sym_PERCENT_EQ] = ACTIONS(7715), + [anon_sym_PLUS_EQ] = ACTIONS(7715), + [anon_sym_DASH_EQ] = ACTIONS(7715), + [anon_sym_LT_LT_EQ] = ACTIONS(7715), + [anon_sym_GT_GT_EQ] = ACTIONS(7715), + [anon_sym_AMP_EQ] = ACTIONS(7715), + [anon_sym_CARET_EQ] = ACTIONS(7715), + [anon_sym_PIPE_EQ] = ACTIONS(7715), + [anon_sym_and_eq] = ACTIONS(7715), + [anon_sym_or_eq] = ACTIONS(7715), + [anon_sym_xor_eq] = ACTIONS(7715), + [anon_sym_LT_EQ_GT] = ACTIONS(7715), + [anon_sym_or] = ACTIONS(7713), + [anon_sym_and] = ACTIONS(7713), + [anon_sym_bitor] = ACTIONS(7715), + [anon_sym_xor] = ACTIONS(7713), + [anon_sym_bitand] = ACTIONS(7715), + [anon_sym_not_eq] = ACTIONS(7715), + [anon_sym_DASH_DASH] = ACTIONS(7715), + [anon_sym_PLUS_PLUS] = ACTIONS(7715), + [anon_sym_DOT] = ACTIONS(7713), + [anon_sym_DOT_STAR] = ACTIONS(7715), + [anon_sym_DASH_GT] = ACTIONS(7713), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7715), + [anon_sym_override] = ACTIONS(7715), + [anon_sym_requires] = ACTIONS(7715), + [anon_sym_DASH_GT_STAR] = ACTIONS(7715), }, - [STATE(2550)] = { - [sym_identifier] = ACTIONS(6720), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6722), - [anon_sym_COMMA] = ACTIONS(6722), - [anon_sym_RPAREN] = ACTIONS(6722), - [aux_sym_preproc_if_token2] = ACTIONS(6722), - [aux_sym_preproc_else_token1] = ACTIONS(6722), - [aux_sym_preproc_elif_token1] = ACTIONS(6720), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6722), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6722), - [anon_sym_LPAREN2] = ACTIONS(6722), - [anon_sym_DASH] = ACTIONS(6720), - [anon_sym_PLUS] = ACTIONS(6720), - [anon_sym_STAR] = ACTIONS(6722), - [anon_sym_SLASH] = ACTIONS(6720), - [anon_sym_PERCENT] = ACTIONS(6722), - [anon_sym_PIPE_PIPE] = ACTIONS(6722), - [anon_sym_AMP_AMP] = ACTIONS(6722), - [anon_sym_PIPE] = ACTIONS(6720), - [anon_sym_CARET] = ACTIONS(6722), - [anon_sym_AMP] = ACTIONS(6720), - [anon_sym_EQ_EQ] = ACTIONS(6722), - [anon_sym_BANG_EQ] = ACTIONS(6722), - [anon_sym_GT] = ACTIONS(6720), - [anon_sym_GT_EQ] = ACTIONS(6722), - [anon_sym_LT_EQ] = ACTIONS(6720), - [anon_sym_LT] = ACTIONS(6720), - [anon_sym_LT_LT] = ACTIONS(6722), - [anon_sym_GT_GT] = ACTIONS(6722), - [anon_sym_SEMI] = ACTIONS(6722), - [anon_sym___extension__] = ACTIONS(6720), - [anon_sym___attribute__] = ACTIONS(6720), - [anon_sym___attribute] = ACTIONS(6720), - [anon_sym_COLON] = ACTIONS(6720), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6722), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6722), - [anon_sym_RBRACE] = ACTIONS(6722), - [anon_sym_LBRACK] = ACTIONS(6720), - [anon_sym_const] = ACTIONS(6720), - [anon_sym_constexpr] = ACTIONS(6720), - [anon_sym_volatile] = ACTIONS(6720), - [anon_sym_restrict] = ACTIONS(6720), - [anon_sym___restrict__] = ACTIONS(6720), - [anon_sym__Atomic] = ACTIONS(6720), - [anon_sym__Noreturn] = ACTIONS(6720), - [anon_sym_noreturn] = ACTIONS(6720), - [anon_sym__Nonnull] = ACTIONS(6720), - [anon_sym_mutable] = ACTIONS(6720), - [anon_sym_constinit] = ACTIONS(6720), - [anon_sym_consteval] = ACTIONS(6720), - [anon_sym_alignas] = ACTIONS(6720), - [anon_sym__Alignas] = ACTIONS(6720), - [anon_sym_QMARK] = ACTIONS(6722), - [anon_sym_LT_EQ_GT] = ACTIONS(6722), - [anon_sym_or] = ACTIONS(6720), - [anon_sym_and] = ACTIONS(6720), - [anon_sym_bitor] = ACTIONS(6720), - [anon_sym_xor] = ACTIONS(6720), - [anon_sym_bitand] = ACTIONS(6720), - [anon_sym_not_eq] = ACTIONS(6720), - [anon_sym_DASH_DASH] = ACTIONS(6722), - [anon_sym_PLUS_PLUS] = ACTIONS(6722), - [anon_sym_asm] = ACTIONS(6720), - [anon_sym___asm__] = ACTIONS(6720), - [anon_sym___asm] = ACTIONS(6720), - [anon_sym_DOT] = ACTIONS(6720), - [anon_sym_DOT_STAR] = ACTIONS(6722), - [anon_sym_DASH_GT] = ACTIONS(6722), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6720), - [anon_sym_override] = ACTIONS(6720), - [anon_sym_noexcept] = ACTIONS(6720), - [anon_sym_throw] = ACTIONS(6720), - [anon_sym_requires] = ACTIONS(6720), - [anon_sym_COLON_RBRACK] = ACTIONS(6722), + [STATE(2419)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7683), + [anon_sym_COMMA] = ACTIONS(7683), + [anon_sym_RPAREN] = ACTIONS(7683), + [anon_sym_LPAREN2] = ACTIONS(7683), + [anon_sym_DASH] = ACTIONS(7681), + [anon_sym_PLUS] = ACTIONS(7681), + [anon_sym_STAR] = ACTIONS(7681), + [anon_sym_SLASH] = ACTIONS(7681), + [anon_sym_PERCENT] = ACTIONS(7681), + [anon_sym_PIPE_PIPE] = ACTIONS(7683), + [anon_sym_AMP_AMP] = ACTIONS(7683), + [anon_sym_PIPE] = ACTIONS(7681), + [anon_sym_CARET] = ACTIONS(7681), + [anon_sym_AMP] = ACTIONS(7681), + [anon_sym_EQ_EQ] = ACTIONS(7683), + [anon_sym_BANG_EQ] = ACTIONS(7683), + [anon_sym_GT] = ACTIONS(7681), + [anon_sym_GT_EQ] = ACTIONS(7683), + [anon_sym_LT_EQ] = ACTIONS(7681), + [anon_sym_LT] = ACTIONS(7681), + [anon_sym_LT_LT] = ACTIONS(7681), + [anon_sym_GT_GT] = ACTIONS(7681), + [anon_sym___extension__] = ACTIONS(7683), + [anon_sym___attribute__] = ACTIONS(7683), + [anon_sym___attribute] = ACTIONS(7681), + [anon_sym_LBRACE] = ACTIONS(7683), + [anon_sym_signed] = ACTIONS(8196), + [anon_sym_unsigned] = ACTIONS(8196), + [anon_sym_long] = ACTIONS(8196), + [anon_sym_short] = ACTIONS(8196), + [anon_sym_LBRACK] = ACTIONS(7683), + [anon_sym_EQ] = ACTIONS(7681), + [anon_sym_const] = ACTIONS(7681), + [anon_sym_constexpr] = ACTIONS(7683), + [anon_sym_volatile] = ACTIONS(7683), + [anon_sym_restrict] = ACTIONS(7683), + [anon_sym___restrict__] = ACTIONS(7683), + [anon_sym__Atomic] = ACTIONS(7683), + [anon_sym__Noreturn] = ACTIONS(7683), + [anon_sym_noreturn] = ACTIONS(7683), + [anon_sym__Nonnull] = ACTIONS(7683), + [anon_sym_mutable] = ACTIONS(7683), + [anon_sym_constinit] = ACTIONS(7683), + [anon_sym_consteval] = ACTIONS(7683), + [anon_sym_alignas] = ACTIONS(7683), + [anon_sym__Alignas] = ACTIONS(7683), + [anon_sym_QMARK] = ACTIONS(7683), + [anon_sym_STAR_EQ] = ACTIONS(7683), + [anon_sym_SLASH_EQ] = ACTIONS(7683), + [anon_sym_PERCENT_EQ] = ACTIONS(7683), + [anon_sym_PLUS_EQ] = ACTIONS(7683), + [anon_sym_DASH_EQ] = ACTIONS(7683), + [anon_sym_LT_LT_EQ] = ACTIONS(7683), + [anon_sym_GT_GT_EQ] = ACTIONS(7683), + [anon_sym_AMP_EQ] = ACTIONS(7683), + [anon_sym_CARET_EQ] = ACTIONS(7683), + [anon_sym_PIPE_EQ] = ACTIONS(7683), + [anon_sym_and_eq] = ACTIONS(7683), + [anon_sym_or_eq] = ACTIONS(7683), + [anon_sym_xor_eq] = ACTIONS(7683), + [anon_sym_LT_EQ_GT] = ACTIONS(7683), + [anon_sym_or] = ACTIONS(7681), + [anon_sym_and] = ACTIONS(7681), + [anon_sym_bitor] = ACTIONS(7683), + [anon_sym_xor] = ACTIONS(7681), + [anon_sym_bitand] = ACTIONS(7683), + [anon_sym_not_eq] = ACTIONS(7683), + [anon_sym_DASH_DASH] = ACTIONS(7683), + [anon_sym_PLUS_PLUS] = ACTIONS(7683), + [anon_sym_DOT] = ACTIONS(7681), + [anon_sym_DOT_STAR] = ACTIONS(7683), + [anon_sym_DASH_GT] = ACTIONS(7681), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7683), + [anon_sym_override] = ACTIONS(7683), + [anon_sym_requires] = ACTIONS(7683), + [anon_sym_DASH_GT_STAR] = ACTIONS(7683), }, - [STATE(2551)] = { - [sym_identifier] = ACTIONS(2795), - [aux_sym_preproc_def_token1] = ACTIONS(2795), - [aux_sym_preproc_if_token1] = ACTIONS(2795), - [aux_sym_preproc_if_token2] = ACTIONS(2795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), - [aux_sym_preproc_else_token1] = ACTIONS(2795), - [aux_sym_preproc_elif_token1] = ACTIONS(2795), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2795), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2795), - [sym_preproc_directive] = ACTIONS(2795), - [anon_sym_LPAREN2] = ACTIONS(2793), - [anon_sym_TILDE] = ACTIONS(2793), - [anon_sym_STAR] = ACTIONS(2793), - [anon_sym_AMP_AMP] = ACTIONS(2793), - [anon_sym_AMP] = ACTIONS(2795), - [anon_sym_SEMI] = ACTIONS(2793), - [anon_sym___extension__] = ACTIONS(2795), - [anon_sym_typedef] = ACTIONS(2795), - [anon_sym_virtual] = ACTIONS(2795), - [anon_sym_extern] = ACTIONS(2795), - [anon_sym___attribute__] = ACTIONS(2795), - [anon_sym___attribute] = ACTIONS(2795), - [anon_sym_using] = ACTIONS(2795), - [anon_sym_COLON_COLON] = ACTIONS(2793), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), - [anon_sym___declspec] = ACTIONS(2795), - [anon_sym___based] = ACTIONS(2795), - [anon_sym_signed] = ACTIONS(2795), - [anon_sym_unsigned] = ACTIONS(2795), - [anon_sym_long] = ACTIONS(2795), - [anon_sym_short] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2795), - [anon_sym_static] = ACTIONS(2795), - [anon_sym_register] = ACTIONS(2795), - [anon_sym_inline] = ACTIONS(2795), - [anon_sym___inline] = ACTIONS(2795), - [anon_sym___inline__] = ACTIONS(2795), - [anon_sym___forceinline] = ACTIONS(2795), - [anon_sym_thread_local] = ACTIONS(2795), - [anon_sym___thread] = ACTIONS(2795), - [anon_sym_const] = ACTIONS(2795), - [anon_sym_constexpr] = ACTIONS(2795), - [anon_sym_volatile] = ACTIONS(2795), - [anon_sym_restrict] = ACTIONS(2795), - [anon_sym___restrict__] = ACTIONS(2795), - [anon_sym__Atomic] = ACTIONS(2795), - [anon_sym__Noreturn] = ACTIONS(2795), - [anon_sym_noreturn] = ACTIONS(2795), - [anon_sym__Nonnull] = ACTIONS(2795), - [anon_sym_mutable] = ACTIONS(2795), - [anon_sym_constinit] = ACTIONS(2795), - [anon_sym_consteval] = ACTIONS(2795), - [anon_sym_alignas] = ACTIONS(2795), - [anon_sym__Alignas] = ACTIONS(2795), - [sym_primitive_type] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2795), - [anon_sym_class] = ACTIONS(2795), - [anon_sym_struct] = ACTIONS(2795), - [anon_sym_union] = ACTIONS(2795), - [anon_sym_typename] = ACTIONS(2795), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2795), - [anon_sym_decltype] = ACTIONS(2795), - [anon_sym_explicit] = ACTIONS(2795), - [anon_sym_private] = ACTIONS(2795), - [anon_sym_template] = ACTIONS(2795), - [anon_sym_operator] = ACTIONS(2795), - [anon_sym_friend] = ACTIONS(2795), - [anon_sym_public] = ACTIONS(2795), - [anon_sym_protected] = ACTIONS(2795), - [anon_sym_static_assert] = ACTIONS(2795), - [anon_sym_catch] = ACTIONS(2795), - [anon_sym_LBRACK_COLON] = ACTIONS(2793), + [STATE(2420)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7110), + [anon_sym_COMMA] = ACTIONS(7110), + [anon_sym_RPAREN] = ACTIONS(7110), + [anon_sym_LPAREN2] = ACTIONS(7110), + [anon_sym_DASH] = ACTIONS(7108), + [anon_sym_PLUS] = ACTIONS(7108), + [anon_sym_STAR] = ACTIONS(7108), + [anon_sym_SLASH] = ACTIONS(7108), + [anon_sym_PERCENT] = ACTIONS(7108), + [anon_sym_PIPE_PIPE] = ACTIONS(7110), + [anon_sym_AMP_AMP] = ACTIONS(7110), + [anon_sym_PIPE] = ACTIONS(7108), + [anon_sym_CARET] = ACTIONS(7108), + [anon_sym_AMP] = ACTIONS(7108), + [anon_sym_EQ_EQ] = ACTIONS(7110), + [anon_sym_BANG_EQ] = ACTIONS(7110), + [anon_sym_GT] = ACTIONS(7108), + [anon_sym_GT_EQ] = ACTIONS(7110), + [anon_sym_LT_EQ] = ACTIONS(7108), + [anon_sym_LT] = ACTIONS(7108), + [anon_sym_LT_LT] = ACTIONS(7108), + [anon_sym_GT_GT] = ACTIONS(7108), + [anon_sym___extension__] = ACTIONS(7110), + [anon_sym___attribute__] = ACTIONS(7110), + [anon_sym___attribute] = ACTIONS(7108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7110), + [anon_sym_LBRACK] = ACTIONS(7108), + [anon_sym_EQ] = ACTIONS(7108), + [anon_sym_const] = ACTIONS(7108), + [anon_sym_constexpr] = ACTIONS(7110), + [anon_sym_volatile] = ACTIONS(7110), + [anon_sym_restrict] = ACTIONS(7110), + [anon_sym___restrict__] = ACTIONS(7110), + [anon_sym__Atomic] = ACTIONS(7110), + [anon_sym__Noreturn] = ACTIONS(7110), + [anon_sym_noreturn] = ACTIONS(7110), + [anon_sym__Nonnull] = ACTIONS(7110), + [anon_sym_mutable] = ACTIONS(7110), + [anon_sym_constinit] = ACTIONS(7110), + [anon_sym_consteval] = ACTIONS(7110), + [anon_sym_alignas] = ACTIONS(7110), + [anon_sym__Alignas] = ACTIONS(7110), + [anon_sym_QMARK] = ACTIONS(7110), + [anon_sym_STAR_EQ] = ACTIONS(7110), + [anon_sym_SLASH_EQ] = ACTIONS(7110), + [anon_sym_PERCENT_EQ] = ACTIONS(7110), + [anon_sym_PLUS_EQ] = ACTIONS(7110), + [anon_sym_DASH_EQ] = ACTIONS(7110), + [anon_sym_LT_LT_EQ] = ACTIONS(7110), + [anon_sym_GT_GT_EQ] = ACTIONS(7110), + [anon_sym_AMP_EQ] = ACTIONS(7110), + [anon_sym_CARET_EQ] = ACTIONS(7110), + [anon_sym_PIPE_EQ] = ACTIONS(7110), + [anon_sym_and_eq] = ACTIONS(7110), + [anon_sym_or_eq] = ACTIONS(7110), + [anon_sym_xor_eq] = ACTIONS(7110), + [anon_sym_LT_EQ_GT] = ACTIONS(7110), + [anon_sym_or] = ACTIONS(7108), + [anon_sym_and] = ACTIONS(7108), + [anon_sym_bitor] = ACTIONS(7110), + [anon_sym_xor] = ACTIONS(7108), + [anon_sym_bitand] = ACTIONS(7110), + [anon_sym_not_eq] = ACTIONS(7110), + [anon_sym_DASH_DASH] = ACTIONS(7110), + [anon_sym_PLUS_PLUS] = ACTIONS(7110), + [anon_sym_asm] = ACTIONS(7110), + [anon_sym___asm__] = ACTIONS(7110), + [anon_sym___asm] = ACTIONS(7108), + [anon_sym_DOT] = ACTIONS(7108), + [anon_sym_DOT_STAR] = ACTIONS(7110), + [anon_sym_DASH_GT] = ACTIONS(7108), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7110), + [anon_sym_override] = ACTIONS(7110), + [anon_sym_noexcept] = ACTIONS(7110), + [anon_sym_throw] = ACTIONS(7110), + [anon_sym_requires] = ACTIONS(7110), + [anon_sym_DASH_GT_STAR] = ACTIONS(7110), }, - [STATE(2552)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6272), - [anon_sym_COMMA] = ACTIONS(6272), - [anon_sym_RPAREN] = ACTIONS(6272), - [anon_sym_LPAREN2] = ACTIONS(6272), - [anon_sym_DASH] = ACTIONS(6270), - [anon_sym_PLUS] = ACTIONS(6270), - [anon_sym_STAR] = ACTIONS(6270), - [anon_sym_SLASH] = ACTIONS(6270), - [anon_sym_PERCENT] = ACTIONS(6270), - [anon_sym_PIPE_PIPE] = ACTIONS(6272), - [anon_sym_AMP_AMP] = ACTIONS(6272), - [anon_sym_PIPE] = ACTIONS(6270), - [anon_sym_CARET] = ACTIONS(6270), - [anon_sym_AMP] = ACTIONS(6270), - [anon_sym_EQ_EQ] = ACTIONS(6272), - [anon_sym_BANG_EQ] = ACTIONS(6272), - [anon_sym_GT] = ACTIONS(6270), - [anon_sym_GT_EQ] = ACTIONS(6272), - [anon_sym_LT_EQ] = ACTIONS(6270), - [anon_sym_LT] = ACTIONS(6270), - [anon_sym_LT_LT] = ACTIONS(6270), - [anon_sym_GT_GT] = ACTIONS(6270), - [anon_sym___extension__] = ACTIONS(6272), - [anon_sym___attribute__] = ACTIONS(6272), - [anon_sym___attribute] = ACTIONS(6270), - [anon_sym_COLON] = ACTIONS(6270), - [anon_sym_COLON_COLON] = ACTIONS(6272), - [anon_sym_LBRACE] = ACTIONS(6272), - [anon_sym_LBRACK] = ACTIONS(6272), - [anon_sym_EQ] = ACTIONS(6270), - [anon_sym_const] = ACTIONS(6270), - [anon_sym_constexpr] = ACTIONS(6272), - [anon_sym_volatile] = ACTIONS(6272), - [anon_sym_restrict] = ACTIONS(6272), - [anon_sym___restrict__] = ACTIONS(6272), - [anon_sym__Atomic] = ACTIONS(6272), - [anon_sym__Noreturn] = ACTIONS(6272), - [anon_sym_noreturn] = ACTIONS(6272), - [anon_sym__Nonnull] = ACTIONS(6272), - [anon_sym_mutable] = ACTIONS(6272), - [anon_sym_constinit] = ACTIONS(6272), - [anon_sym_consteval] = ACTIONS(6272), - [anon_sym_alignas] = ACTIONS(6272), - [anon_sym__Alignas] = ACTIONS(6272), - [anon_sym_QMARK] = ACTIONS(6272), - [anon_sym_STAR_EQ] = ACTIONS(6272), - [anon_sym_SLASH_EQ] = ACTIONS(6272), - [anon_sym_PERCENT_EQ] = ACTIONS(6272), - [anon_sym_PLUS_EQ] = ACTIONS(6272), - [anon_sym_DASH_EQ] = ACTIONS(6272), - [anon_sym_LT_LT_EQ] = ACTIONS(6272), - [anon_sym_GT_GT_EQ] = ACTIONS(6272), - [anon_sym_AMP_EQ] = ACTIONS(6272), - [anon_sym_CARET_EQ] = ACTIONS(6272), - [anon_sym_PIPE_EQ] = ACTIONS(6272), - [anon_sym_LT_EQ_GT] = ACTIONS(6272), - [anon_sym_or] = ACTIONS(6272), - [anon_sym_and] = ACTIONS(6272), - [anon_sym_bitor] = ACTIONS(6272), - [anon_sym_xor] = ACTIONS(6272), - [anon_sym_bitand] = ACTIONS(6272), - [anon_sym_not_eq] = ACTIONS(6272), - [anon_sym_DASH_DASH] = ACTIONS(6272), - [anon_sym_PLUS_PLUS] = ACTIONS(6272), - [anon_sym_DOT] = ACTIONS(6270), - [anon_sym_DOT_STAR] = ACTIONS(6272), - [anon_sym_DASH_GT] = ACTIONS(6270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6272), - [anon_sym_decltype] = ACTIONS(6272), - [anon_sym_final] = ACTIONS(6272), - [anon_sym_override] = ACTIONS(6272), - [anon_sym_requires] = ACTIONS(6272), - [anon_sym_DASH_GT_STAR] = ACTIONS(6272), + [STATE(2421)] = { + [sym_type_qualifier] = STATE(2421), + [sym_alignas_qualifier] = STATE(2636), + [aux_sym__type_definition_type_repeat1] = STATE(2421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), + [anon_sym_COMMA] = ACTIONS(6891), + [anon_sym_RPAREN] = ACTIONS(6891), + [anon_sym_LPAREN2] = ACTIONS(6891), + [anon_sym_DASH] = ACTIONS(6889), + [anon_sym_PLUS] = ACTIONS(6889), + [anon_sym_STAR] = ACTIONS(6889), + [anon_sym_SLASH] = ACTIONS(6889), + [anon_sym_PERCENT] = ACTIONS(6889), + [anon_sym_PIPE_PIPE] = ACTIONS(6891), + [anon_sym_AMP_AMP] = ACTIONS(6891), + [anon_sym_PIPE] = ACTIONS(6889), + [anon_sym_CARET] = ACTIONS(6889), + [anon_sym_AMP] = ACTIONS(6889), + [anon_sym_EQ_EQ] = ACTIONS(6891), + [anon_sym_BANG_EQ] = ACTIONS(6891), + [anon_sym_GT] = ACTIONS(6889), + [anon_sym_GT_EQ] = ACTIONS(6891), + [anon_sym_LT_EQ] = ACTIONS(6889), + [anon_sym_LT] = ACTIONS(6889), + [anon_sym_LT_LT] = ACTIONS(6889), + [anon_sym_GT_GT] = ACTIONS(6889), + [anon_sym___extension__] = ACTIONS(8202), + [anon_sym___attribute__] = ACTIONS(6891), + [anon_sym___attribute] = ACTIONS(6889), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6891), + [anon_sym_LBRACK] = ACTIONS(6889), + [anon_sym_EQ] = ACTIONS(6889), + [anon_sym_const] = ACTIONS(8205), + [anon_sym_constexpr] = ACTIONS(8202), + [anon_sym_volatile] = ACTIONS(8202), + [anon_sym_restrict] = ACTIONS(8202), + [anon_sym___restrict__] = ACTIONS(8202), + [anon_sym__Atomic] = ACTIONS(8202), + [anon_sym__Noreturn] = ACTIONS(8202), + [anon_sym_noreturn] = ACTIONS(8202), + [anon_sym__Nonnull] = ACTIONS(8202), + [anon_sym_mutable] = ACTIONS(8202), + [anon_sym_constinit] = ACTIONS(8202), + [anon_sym_consteval] = ACTIONS(8202), + [anon_sym_alignas] = ACTIONS(8208), + [anon_sym__Alignas] = ACTIONS(8208), + [anon_sym_QMARK] = ACTIONS(6891), + [anon_sym_STAR_EQ] = ACTIONS(6891), + [anon_sym_SLASH_EQ] = ACTIONS(6891), + [anon_sym_PERCENT_EQ] = ACTIONS(6891), + [anon_sym_PLUS_EQ] = ACTIONS(6891), + [anon_sym_DASH_EQ] = ACTIONS(6891), + [anon_sym_LT_LT_EQ] = ACTIONS(6891), + [anon_sym_GT_GT_EQ] = ACTIONS(6891), + [anon_sym_AMP_EQ] = ACTIONS(6891), + [anon_sym_CARET_EQ] = ACTIONS(6891), + [anon_sym_PIPE_EQ] = ACTIONS(6891), + [anon_sym_LT_EQ_GT] = ACTIONS(6891), + [anon_sym_or] = ACTIONS(6891), + [anon_sym_and] = ACTIONS(6891), + [anon_sym_bitor] = ACTIONS(6891), + [anon_sym_xor] = ACTIONS(6891), + [anon_sym_bitand] = ACTIONS(6891), + [anon_sym_not_eq] = ACTIONS(6891), + [anon_sym_DASH_DASH] = ACTIONS(6891), + [anon_sym_PLUS_PLUS] = ACTIONS(6891), + [anon_sym_asm] = ACTIONS(6891), + [anon_sym___asm__] = ACTIONS(6891), + [anon_sym___asm] = ACTIONS(6889), + [anon_sym_DOT] = ACTIONS(6889), + [anon_sym_DOT_STAR] = ACTIONS(6891), + [anon_sym_DASH_GT] = ACTIONS(6889), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6891), + [anon_sym_override] = ACTIONS(6891), + [anon_sym_noexcept] = ACTIONS(6891), + [anon_sym_throw] = ACTIONS(6891), + [anon_sym_requires] = ACTIONS(6891), + [anon_sym_DASH_GT_STAR] = ACTIONS(6891), }, - [STATE(2553)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), - [anon_sym_COMMA] = ACTIONS(6244), - [anon_sym_RPAREN] = ACTIONS(6244), - [anon_sym_LPAREN2] = ACTIONS(6244), - [anon_sym_DASH] = ACTIONS(6242), - [anon_sym_PLUS] = ACTIONS(6242), - [anon_sym_STAR] = ACTIONS(6242), - [anon_sym_SLASH] = ACTIONS(6242), - [anon_sym_PERCENT] = ACTIONS(6242), - [anon_sym_PIPE_PIPE] = ACTIONS(6244), - [anon_sym_AMP_AMP] = ACTIONS(6244), - [anon_sym_PIPE] = ACTIONS(6242), - [anon_sym_CARET] = ACTIONS(6242), - [anon_sym_AMP] = ACTIONS(6242), - [anon_sym_EQ_EQ] = ACTIONS(6244), - [anon_sym_BANG_EQ] = ACTIONS(6244), - [anon_sym_GT] = ACTIONS(6242), - [anon_sym_GT_EQ] = ACTIONS(6244), - [anon_sym_LT_EQ] = ACTIONS(6242), - [anon_sym_LT] = ACTIONS(6242), - [anon_sym_LT_LT] = ACTIONS(6242), - [anon_sym_GT_GT] = ACTIONS(6242), - [anon_sym___extension__] = ACTIONS(6244), - [anon_sym___attribute__] = ACTIONS(6244), - [anon_sym___attribute] = ACTIONS(6242), - [anon_sym_COLON] = ACTIONS(6242), - [anon_sym_COLON_COLON] = ACTIONS(6244), - [anon_sym_LBRACE] = ACTIONS(6244), - [anon_sym_LBRACK] = ACTIONS(6244), - [anon_sym_EQ] = ACTIONS(6242), - [anon_sym_const] = ACTIONS(6242), - [anon_sym_constexpr] = ACTIONS(6244), - [anon_sym_volatile] = ACTIONS(6244), - [anon_sym_restrict] = ACTIONS(6244), - [anon_sym___restrict__] = ACTIONS(6244), - [anon_sym__Atomic] = ACTIONS(6244), - [anon_sym__Noreturn] = ACTIONS(6244), - [anon_sym_noreturn] = ACTIONS(6244), - [anon_sym__Nonnull] = ACTIONS(6244), - [anon_sym_mutable] = ACTIONS(6244), - [anon_sym_constinit] = ACTIONS(6244), - [anon_sym_consteval] = ACTIONS(6244), - [anon_sym_alignas] = ACTIONS(6244), - [anon_sym__Alignas] = ACTIONS(6244), - [anon_sym_QMARK] = ACTIONS(6244), - [anon_sym_STAR_EQ] = ACTIONS(6244), - [anon_sym_SLASH_EQ] = ACTIONS(6244), - [anon_sym_PERCENT_EQ] = ACTIONS(6244), - [anon_sym_PLUS_EQ] = ACTIONS(6244), - [anon_sym_DASH_EQ] = ACTIONS(6244), - [anon_sym_LT_LT_EQ] = ACTIONS(6244), - [anon_sym_GT_GT_EQ] = ACTIONS(6244), - [anon_sym_AMP_EQ] = ACTIONS(6244), - [anon_sym_CARET_EQ] = ACTIONS(6244), - [anon_sym_PIPE_EQ] = ACTIONS(6244), - [anon_sym_LT_EQ_GT] = ACTIONS(6244), - [anon_sym_or] = ACTIONS(6244), - [anon_sym_and] = ACTIONS(6244), - [anon_sym_bitor] = ACTIONS(6244), - [anon_sym_xor] = ACTIONS(6244), - [anon_sym_bitand] = ACTIONS(6244), - [anon_sym_not_eq] = ACTIONS(6244), - [anon_sym_DASH_DASH] = ACTIONS(6244), - [anon_sym_PLUS_PLUS] = ACTIONS(6244), - [anon_sym_DOT] = ACTIONS(6242), - [anon_sym_DOT_STAR] = ACTIONS(6244), - [anon_sym_DASH_GT] = ACTIONS(6242), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6244), - [anon_sym_decltype] = ACTIONS(6244), - [anon_sym_final] = ACTIONS(6244), - [anon_sym_override] = ACTIONS(6244), - [anon_sym_requires] = ACTIONS(6244), - [anon_sym_DASH_GT_STAR] = ACTIONS(6244), + [STATE(2422)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), + [anon_sym_COMMA] = ACTIONS(7725), + [anon_sym_RPAREN] = ACTIONS(7725), + [anon_sym_LPAREN2] = ACTIONS(7725), + [anon_sym_DASH] = ACTIONS(7723), + [anon_sym_PLUS] = ACTIONS(7723), + [anon_sym_STAR] = ACTIONS(7723), + [anon_sym_SLASH] = ACTIONS(7723), + [anon_sym_PERCENT] = ACTIONS(7723), + [anon_sym_PIPE_PIPE] = ACTIONS(7725), + [anon_sym_AMP_AMP] = ACTIONS(7725), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_CARET] = ACTIONS(7723), + [anon_sym_AMP] = ACTIONS(7723), + [anon_sym_EQ_EQ] = ACTIONS(7725), + [anon_sym_BANG_EQ] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_EQ] = ACTIONS(7725), + [anon_sym_LT_EQ] = ACTIONS(7723), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_LT_LT] = ACTIONS(7723), + [anon_sym_GT_GT] = ACTIONS(7723), + [anon_sym___extension__] = ACTIONS(7725), + [anon_sym___attribute__] = ACTIONS(7725), + [anon_sym___attribute] = ACTIONS(7723), + [anon_sym_LBRACE] = ACTIONS(7725), + [anon_sym_signed] = ACTIONS(8196), + [anon_sym_unsigned] = ACTIONS(8196), + [anon_sym_long] = ACTIONS(8196), + [anon_sym_short] = ACTIONS(8196), + [anon_sym_LBRACK] = ACTIONS(7725), + [anon_sym_EQ] = ACTIONS(7723), + [anon_sym_const] = ACTIONS(7723), + [anon_sym_constexpr] = ACTIONS(7725), + [anon_sym_volatile] = ACTIONS(7725), + [anon_sym_restrict] = ACTIONS(7725), + [anon_sym___restrict__] = ACTIONS(7725), + [anon_sym__Atomic] = ACTIONS(7725), + [anon_sym__Noreturn] = ACTIONS(7725), + [anon_sym_noreturn] = ACTIONS(7725), + [anon_sym__Nonnull] = ACTIONS(7725), + [anon_sym_mutable] = ACTIONS(7725), + [anon_sym_constinit] = ACTIONS(7725), + [anon_sym_consteval] = ACTIONS(7725), + [anon_sym_alignas] = ACTIONS(7725), + [anon_sym__Alignas] = ACTIONS(7725), + [anon_sym_QMARK] = ACTIONS(7725), + [anon_sym_STAR_EQ] = ACTIONS(7725), + [anon_sym_SLASH_EQ] = ACTIONS(7725), + [anon_sym_PERCENT_EQ] = ACTIONS(7725), + [anon_sym_PLUS_EQ] = ACTIONS(7725), + [anon_sym_DASH_EQ] = ACTIONS(7725), + [anon_sym_LT_LT_EQ] = ACTIONS(7725), + [anon_sym_GT_GT_EQ] = ACTIONS(7725), + [anon_sym_AMP_EQ] = ACTIONS(7725), + [anon_sym_CARET_EQ] = ACTIONS(7725), + [anon_sym_PIPE_EQ] = ACTIONS(7725), + [anon_sym_and_eq] = ACTIONS(7725), + [anon_sym_or_eq] = ACTIONS(7725), + [anon_sym_xor_eq] = ACTIONS(7725), + [anon_sym_LT_EQ_GT] = ACTIONS(7725), + [anon_sym_or] = ACTIONS(7723), + [anon_sym_and] = ACTIONS(7723), + [anon_sym_bitor] = ACTIONS(7725), + [anon_sym_xor] = ACTIONS(7723), + [anon_sym_bitand] = ACTIONS(7725), + [anon_sym_not_eq] = ACTIONS(7725), + [anon_sym_DASH_DASH] = ACTIONS(7725), + [anon_sym_PLUS_PLUS] = ACTIONS(7725), + [anon_sym_DOT] = ACTIONS(7723), + [anon_sym_DOT_STAR] = ACTIONS(7725), + [anon_sym_DASH_GT] = ACTIONS(7723), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7725), + [anon_sym_override] = ACTIONS(7725), + [anon_sym_requires] = ACTIONS(7725), + [anon_sym_DASH_GT_STAR] = ACTIONS(7725), }, - [STATE(2554)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6248), - [anon_sym_COMMA] = ACTIONS(6248), - [anon_sym_RPAREN] = ACTIONS(6248), - [anon_sym_LPAREN2] = ACTIONS(6248), - [anon_sym_DASH] = ACTIONS(6246), - [anon_sym_PLUS] = ACTIONS(6246), - [anon_sym_STAR] = ACTIONS(6246), - [anon_sym_SLASH] = ACTIONS(6246), - [anon_sym_PERCENT] = ACTIONS(6246), - [anon_sym_PIPE_PIPE] = ACTIONS(6248), - [anon_sym_AMP_AMP] = ACTIONS(6248), - [anon_sym_PIPE] = ACTIONS(6246), - [anon_sym_CARET] = ACTIONS(6246), - [anon_sym_AMP] = ACTIONS(6246), - [anon_sym_EQ_EQ] = ACTIONS(6248), - [anon_sym_BANG_EQ] = ACTIONS(6248), - [anon_sym_GT] = ACTIONS(6246), - [anon_sym_GT_EQ] = ACTIONS(6248), - [anon_sym_LT_EQ] = ACTIONS(6246), - [anon_sym_LT] = ACTIONS(6246), - [anon_sym_LT_LT] = ACTIONS(6246), - [anon_sym_GT_GT] = ACTIONS(6246), - [anon_sym___extension__] = ACTIONS(6248), - [anon_sym___attribute__] = ACTIONS(6248), - [anon_sym___attribute] = ACTIONS(6246), - [anon_sym_COLON] = ACTIONS(6246), - [anon_sym_COLON_COLON] = ACTIONS(6248), - [anon_sym_LBRACE] = ACTIONS(6248), - [anon_sym_LBRACK] = ACTIONS(6248), - [anon_sym_EQ] = ACTIONS(6246), - [anon_sym_const] = ACTIONS(6246), - [anon_sym_constexpr] = ACTIONS(6248), - [anon_sym_volatile] = ACTIONS(6248), - [anon_sym_restrict] = ACTIONS(6248), - [anon_sym___restrict__] = ACTIONS(6248), - [anon_sym__Atomic] = ACTIONS(6248), - [anon_sym__Noreturn] = ACTIONS(6248), - [anon_sym_noreturn] = ACTIONS(6248), - [anon_sym__Nonnull] = ACTIONS(6248), - [anon_sym_mutable] = ACTIONS(6248), - [anon_sym_constinit] = ACTIONS(6248), - [anon_sym_consteval] = ACTIONS(6248), - [anon_sym_alignas] = ACTIONS(6248), - [anon_sym__Alignas] = ACTIONS(6248), - [anon_sym_QMARK] = ACTIONS(6248), - [anon_sym_STAR_EQ] = ACTIONS(6248), - [anon_sym_SLASH_EQ] = ACTIONS(6248), - [anon_sym_PERCENT_EQ] = ACTIONS(6248), - [anon_sym_PLUS_EQ] = ACTIONS(6248), - [anon_sym_DASH_EQ] = ACTIONS(6248), - [anon_sym_LT_LT_EQ] = ACTIONS(6248), - [anon_sym_GT_GT_EQ] = ACTIONS(6248), - [anon_sym_AMP_EQ] = ACTIONS(6248), - [anon_sym_CARET_EQ] = ACTIONS(6248), - [anon_sym_PIPE_EQ] = ACTIONS(6248), - [anon_sym_LT_EQ_GT] = ACTIONS(6248), - [anon_sym_or] = ACTIONS(6248), - [anon_sym_and] = ACTIONS(6248), - [anon_sym_bitor] = ACTIONS(6248), - [anon_sym_xor] = ACTIONS(6248), - [anon_sym_bitand] = ACTIONS(6248), - [anon_sym_not_eq] = ACTIONS(6248), - [anon_sym_DASH_DASH] = ACTIONS(6248), - [anon_sym_PLUS_PLUS] = ACTIONS(6248), - [anon_sym_DOT] = ACTIONS(6246), - [anon_sym_DOT_STAR] = ACTIONS(6248), - [anon_sym_DASH_GT] = ACTIONS(6246), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6248), - [anon_sym_decltype] = ACTIONS(6248), - [anon_sym_final] = ACTIONS(6248), - [anon_sym_override] = ACTIONS(6248), - [anon_sym_requires] = ACTIONS(6248), - [anon_sym_DASH_GT_STAR] = ACTIONS(6248), + [STATE(2423)] = { + [sym_identifier] = ACTIONS(3128), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), + [anon_sym_COMMA] = ACTIONS(3118), + [anon_sym_LPAREN2] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_SLASH] = ACTIONS(3128), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_PIPE_PIPE] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_CARET] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3128), + [anon_sym_GT_EQ] = ACTIONS(3128), + [anon_sym_LT_EQ] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(3128), + [anon_sym_LT_LT] = ACTIONS(3128), + [anon_sym_GT_GT] = ACTIONS(3128), + [anon_sym___extension__] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3128), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_STAR_EQ] = ACTIONS(3118), + [anon_sym_SLASH_EQ] = ACTIONS(3118), + [anon_sym_PERCENT_EQ] = ACTIONS(3118), + [anon_sym_PLUS_EQ] = ACTIONS(3118), + [anon_sym_DASH_EQ] = ACTIONS(3118), + [anon_sym_LT_LT_EQ] = ACTIONS(3118), + [anon_sym_GT_GT_EQ] = ACTIONS(3128), + [anon_sym_AMP_EQ] = ACTIONS(3118), + [anon_sym_CARET_EQ] = ACTIONS(3118), + [anon_sym_PIPE_EQ] = ACTIONS(3118), + [anon_sym_and_eq] = ACTIONS(3128), + [anon_sym_or_eq] = ACTIONS(3128), + [anon_sym_xor_eq] = ACTIONS(3128), + [anon_sym_LT_EQ_GT] = ACTIONS(3118), + [anon_sym_or] = ACTIONS(3128), + [anon_sym_and] = ACTIONS(3128), + [anon_sym_bitor] = ACTIONS(3128), + [anon_sym_xor] = ACTIONS(3128), + [anon_sym_bitand] = ACTIONS(3128), + [anon_sym_not_eq] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_DOT] = ACTIONS(3128), + [anon_sym_DOT_STAR] = ACTIONS(3118), + [anon_sym_DASH_GT] = ACTIONS(3118), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3128), + [anon_sym_override] = ACTIONS(3128), + [anon_sym_GT2] = ACTIONS(3118), + [anon_sym_requires] = ACTIONS(3128), }, - [STATE(2555)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6252), - [anon_sym_COMMA] = ACTIONS(6252), - [anon_sym_RPAREN] = ACTIONS(6252), - [anon_sym_LPAREN2] = ACTIONS(6252), - [anon_sym_DASH] = ACTIONS(6250), - [anon_sym_PLUS] = ACTIONS(6250), - [anon_sym_STAR] = ACTIONS(6250), - [anon_sym_SLASH] = ACTIONS(6250), - [anon_sym_PERCENT] = ACTIONS(6250), - [anon_sym_PIPE_PIPE] = ACTIONS(6252), - [anon_sym_AMP_AMP] = ACTIONS(6252), - [anon_sym_PIPE] = ACTIONS(6250), - [anon_sym_CARET] = ACTIONS(6250), - [anon_sym_AMP] = ACTIONS(6250), - [anon_sym_EQ_EQ] = ACTIONS(6252), - [anon_sym_BANG_EQ] = ACTIONS(6252), - [anon_sym_GT] = ACTIONS(6250), - [anon_sym_GT_EQ] = ACTIONS(6252), - [anon_sym_LT_EQ] = ACTIONS(6250), - [anon_sym_LT] = ACTIONS(6250), - [anon_sym_LT_LT] = ACTIONS(6250), - [anon_sym_GT_GT] = ACTIONS(6250), - [anon_sym___extension__] = ACTIONS(6252), - [anon_sym___attribute__] = ACTIONS(6252), - [anon_sym___attribute] = ACTIONS(6250), - [anon_sym_COLON] = ACTIONS(6250), - [anon_sym_COLON_COLON] = ACTIONS(6252), - [anon_sym_LBRACE] = ACTIONS(6252), - [anon_sym_LBRACK] = ACTIONS(6252), - [anon_sym_EQ] = ACTIONS(6250), - [anon_sym_const] = ACTIONS(6250), - [anon_sym_constexpr] = ACTIONS(6252), - [anon_sym_volatile] = ACTIONS(6252), - [anon_sym_restrict] = ACTIONS(6252), - [anon_sym___restrict__] = ACTIONS(6252), - [anon_sym__Atomic] = ACTIONS(6252), - [anon_sym__Noreturn] = ACTIONS(6252), - [anon_sym_noreturn] = ACTIONS(6252), - [anon_sym__Nonnull] = ACTIONS(6252), - [anon_sym_mutable] = ACTIONS(6252), - [anon_sym_constinit] = ACTIONS(6252), - [anon_sym_consteval] = ACTIONS(6252), - [anon_sym_alignas] = ACTIONS(6252), - [anon_sym__Alignas] = ACTIONS(6252), - [anon_sym_QMARK] = ACTIONS(6252), - [anon_sym_STAR_EQ] = ACTIONS(6252), - [anon_sym_SLASH_EQ] = ACTIONS(6252), - [anon_sym_PERCENT_EQ] = ACTIONS(6252), - [anon_sym_PLUS_EQ] = ACTIONS(6252), - [anon_sym_DASH_EQ] = ACTIONS(6252), - [anon_sym_LT_LT_EQ] = ACTIONS(6252), - [anon_sym_GT_GT_EQ] = ACTIONS(6252), - [anon_sym_AMP_EQ] = ACTIONS(6252), - [anon_sym_CARET_EQ] = ACTIONS(6252), - [anon_sym_PIPE_EQ] = ACTIONS(6252), - [anon_sym_LT_EQ_GT] = ACTIONS(6252), - [anon_sym_or] = ACTIONS(6252), - [anon_sym_and] = ACTIONS(6252), - [anon_sym_bitor] = ACTIONS(6252), - [anon_sym_xor] = ACTIONS(6252), - [anon_sym_bitand] = ACTIONS(6252), - [anon_sym_not_eq] = ACTIONS(6252), - [anon_sym_DASH_DASH] = ACTIONS(6252), - [anon_sym_PLUS_PLUS] = ACTIONS(6252), - [anon_sym_DOT] = ACTIONS(6250), - [anon_sym_DOT_STAR] = ACTIONS(6252), - [anon_sym_DASH_GT] = ACTIONS(6250), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6252), - [anon_sym_decltype] = ACTIONS(6252), - [anon_sym_final] = ACTIONS(6252), - [anon_sym_override] = ACTIONS(6252), - [anon_sym_requires] = ACTIONS(6252), - [anon_sym_DASH_GT_STAR] = ACTIONS(6252), + [STATE(2424)] = { + [sym__abstract_declarator] = STATE(5243), + [sym_abstract_parenthesized_declarator] = STATE(4825), + [sym_abstract_pointer_declarator] = STATE(4825), + [sym_abstract_function_declarator] = STATE(4825), + [sym_abstract_array_declarator] = STATE(4825), + [sym_type_qualifier] = STATE(2270), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1974), + [sym_abstract_reference_declarator] = STATE(4825), + [sym__function_declarator_seq] = STATE(4934), + [aux_sym__type_definition_type_repeat1] = STATE(2270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), + [anon_sym_COMMA] = ACTIONS(7351), + [anon_sym_RPAREN] = ACTIONS(7351), + [anon_sym_LPAREN2] = ACTIONS(7006), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_PLUS] = ACTIONS(7349), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_SLASH] = ACTIONS(7349), + [anon_sym_PERCENT] = ACTIONS(7349), + [anon_sym_PIPE_PIPE] = ACTIONS(7351), + [anon_sym_AMP_AMP] = ACTIONS(7297), + [anon_sym_PIPE] = ACTIONS(7349), + [anon_sym_CARET] = ACTIONS(7349), + [anon_sym_AMP] = ACTIONS(7299), + [anon_sym_EQ_EQ] = ACTIONS(7351), + [anon_sym_BANG_EQ] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7349), + [anon_sym_GT_EQ] = ACTIONS(7351), + [anon_sym_LT_EQ] = ACTIONS(7349), + [anon_sym_LT] = ACTIONS(7349), + [anon_sym_LT_LT] = ACTIONS(7349), + [anon_sym_GT_GT] = ACTIONS(7349), + [anon_sym___extension__] = ACTIONS(7014), + [anon_sym_LBRACK] = ACTIONS(7022), + [anon_sym_EQ] = ACTIONS(7349), + [anon_sym_const] = ACTIONS(7024), + [anon_sym_constexpr] = ACTIONS(7014), + [anon_sym_volatile] = ACTIONS(7014), + [anon_sym_restrict] = ACTIONS(7014), + [anon_sym___restrict__] = ACTIONS(7014), + [anon_sym__Atomic] = ACTIONS(7014), + [anon_sym__Noreturn] = ACTIONS(7014), + [anon_sym_noreturn] = ACTIONS(7014), + [anon_sym__Nonnull] = ACTIONS(7014), + [anon_sym_mutable] = ACTIONS(7014), + [anon_sym_constinit] = ACTIONS(7014), + [anon_sym_consteval] = ACTIONS(7014), + [anon_sym_alignas] = ACTIONS(7026), + [anon_sym__Alignas] = ACTIONS(7026), + [anon_sym_QMARK] = ACTIONS(7351), + [anon_sym_STAR_EQ] = ACTIONS(7351), + [anon_sym_SLASH_EQ] = ACTIONS(7351), + [anon_sym_PERCENT_EQ] = ACTIONS(7351), + [anon_sym_PLUS_EQ] = ACTIONS(7351), + [anon_sym_DASH_EQ] = ACTIONS(7351), + [anon_sym_LT_LT_EQ] = ACTIONS(7351), + [anon_sym_GT_GT_EQ] = ACTIONS(7351), + [anon_sym_AMP_EQ] = ACTIONS(7351), + [anon_sym_CARET_EQ] = ACTIONS(7351), + [anon_sym_PIPE_EQ] = ACTIONS(7351), + [anon_sym_and_eq] = ACTIONS(7351), + [anon_sym_or_eq] = ACTIONS(7351), + [anon_sym_xor_eq] = ACTIONS(7351), + [anon_sym_LT_EQ_GT] = ACTIONS(7351), + [anon_sym_or] = ACTIONS(7349), + [anon_sym_and] = ACTIONS(7349), + [anon_sym_bitor] = ACTIONS(7351), + [anon_sym_xor] = ACTIONS(7349), + [anon_sym_bitand] = ACTIONS(7351), + [anon_sym_not_eq] = ACTIONS(7351), + [anon_sym_DASH_DASH] = ACTIONS(7351), + [anon_sym_PLUS_PLUS] = ACTIONS(7351), + [anon_sym_DOT] = ACTIONS(7349), + [anon_sym_DOT_STAR] = ACTIONS(7351), + [anon_sym_DASH_GT] = ACTIONS(7349), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7351), }, - [STATE(2556)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6256), - [anon_sym_COMMA] = ACTIONS(6256), - [anon_sym_RPAREN] = ACTIONS(6256), - [anon_sym_LPAREN2] = ACTIONS(6256), - [anon_sym_DASH] = ACTIONS(6254), - [anon_sym_PLUS] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(6254), - [anon_sym_SLASH] = ACTIONS(6254), - [anon_sym_PERCENT] = ACTIONS(6254), - [anon_sym_PIPE_PIPE] = ACTIONS(6256), - [anon_sym_AMP_AMP] = ACTIONS(6256), - [anon_sym_PIPE] = ACTIONS(6254), - [anon_sym_CARET] = ACTIONS(6254), - [anon_sym_AMP] = ACTIONS(6254), - [anon_sym_EQ_EQ] = ACTIONS(6256), - [anon_sym_BANG_EQ] = ACTIONS(6256), - [anon_sym_GT] = ACTIONS(6254), - [anon_sym_GT_EQ] = ACTIONS(6256), - [anon_sym_LT_EQ] = ACTIONS(6254), - [anon_sym_LT] = ACTIONS(6254), - [anon_sym_LT_LT] = ACTIONS(6254), - [anon_sym_GT_GT] = ACTIONS(6254), - [anon_sym___extension__] = ACTIONS(6256), - [anon_sym___attribute__] = ACTIONS(6256), - [anon_sym___attribute] = ACTIONS(6254), - [anon_sym_COLON] = ACTIONS(6254), - [anon_sym_COLON_COLON] = ACTIONS(6256), - [anon_sym_LBRACE] = ACTIONS(6256), - [anon_sym_LBRACK] = ACTIONS(6256), - [anon_sym_EQ] = ACTIONS(6254), - [anon_sym_const] = ACTIONS(6254), - [anon_sym_constexpr] = ACTIONS(6256), - [anon_sym_volatile] = ACTIONS(6256), - [anon_sym_restrict] = ACTIONS(6256), - [anon_sym___restrict__] = ACTIONS(6256), - [anon_sym__Atomic] = ACTIONS(6256), - [anon_sym__Noreturn] = ACTIONS(6256), - [anon_sym_noreturn] = ACTIONS(6256), - [anon_sym__Nonnull] = ACTIONS(6256), - [anon_sym_mutable] = ACTIONS(6256), - [anon_sym_constinit] = ACTIONS(6256), - [anon_sym_consteval] = ACTIONS(6256), - [anon_sym_alignas] = ACTIONS(6256), - [anon_sym__Alignas] = ACTIONS(6256), - [anon_sym_QMARK] = ACTIONS(6256), - [anon_sym_STAR_EQ] = ACTIONS(6256), - [anon_sym_SLASH_EQ] = ACTIONS(6256), - [anon_sym_PERCENT_EQ] = ACTIONS(6256), - [anon_sym_PLUS_EQ] = ACTIONS(6256), - [anon_sym_DASH_EQ] = ACTIONS(6256), - [anon_sym_LT_LT_EQ] = ACTIONS(6256), - [anon_sym_GT_GT_EQ] = ACTIONS(6256), - [anon_sym_AMP_EQ] = ACTIONS(6256), - [anon_sym_CARET_EQ] = ACTIONS(6256), - [anon_sym_PIPE_EQ] = ACTIONS(6256), - [anon_sym_LT_EQ_GT] = ACTIONS(6256), - [anon_sym_or] = ACTIONS(6256), - [anon_sym_and] = ACTIONS(6256), - [anon_sym_bitor] = ACTIONS(6256), - [anon_sym_xor] = ACTIONS(6256), - [anon_sym_bitand] = ACTIONS(6256), - [anon_sym_not_eq] = ACTIONS(6256), - [anon_sym_DASH_DASH] = ACTIONS(6256), - [anon_sym_PLUS_PLUS] = ACTIONS(6256), - [anon_sym_DOT] = ACTIONS(6254), - [anon_sym_DOT_STAR] = ACTIONS(6256), - [anon_sym_DASH_GT] = ACTIONS(6254), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6256), - [anon_sym_decltype] = ACTIONS(6256), - [anon_sym_final] = ACTIONS(6256), - [anon_sym_override] = ACTIONS(6256), - [anon_sym_requires] = ACTIONS(6256), - [anon_sym_DASH_GT_STAR] = ACTIONS(6256), + [STATE(2425)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), + [anon_sym_COMMA] = ACTIONS(7719), + [anon_sym_RPAREN] = ACTIONS(7719), + [anon_sym_LPAREN2] = ACTIONS(7719), + [anon_sym_DASH] = ACTIONS(7717), + [anon_sym_PLUS] = ACTIONS(7717), + [anon_sym_STAR] = ACTIONS(7717), + [anon_sym_SLASH] = ACTIONS(7717), + [anon_sym_PERCENT] = ACTIONS(7717), + [anon_sym_PIPE_PIPE] = ACTIONS(7719), + [anon_sym_AMP_AMP] = ACTIONS(7719), + [anon_sym_PIPE] = ACTIONS(7717), + [anon_sym_CARET] = ACTIONS(7717), + [anon_sym_AMP] = ACTIONS(7717), + [anon_sym_EQ_EQ] = ACTIONS(7719), + [anon_sym_BANG_EQ] = ACTIONS(7719), + [anon_sym_GT] = ACTIONS(7717), + [anon_sym_GT_EQ] = ACTIONS(7719), + [anon_sym_LT_EQ] = ACTIONS(7717), + [anon_sym_LT] = ACTIONS(7717), + [anon_sym_LT_LT] = ACTIONS(7717), + [anon_sym_GT_GT] = ACTIONS(7717), + [anon_sym___extension__] = ACTIONS(7719), + [anon_sym___attribute__] = ACTIONS(7719), + [anon_sym___attribute] = ACTIONS(7717), + [anon_sym_LBRACE] = ACTIONS(7719), + [anon_sym_signed] = ACTIONS(8211), + [anon_sym_unsigned] = ACTIONS(8211), + [anon_sym_long] = ACTIONS(8211), + [anon_sym_short] = ACTIONS(8211), + [anon_sym_LBRACK] = ACTIONS(7719), + [anon_sym_EQ] = ACTIONS(7717), + [anon_sym_const] = ACTIONS(7717), + [anon_sym_constexpr] = ACTIONS(7719), + [anon_sym_volatile] = ACTIONS(7719), + [anon_sym_restrict] = ACTIONS(7719), + [anon_sym___restrict__] = ACTIONS(7719), + [anon_sym__Atomic] = ACTIONS(7719), + [anon_sym__Noreturn] = ACTIONS(7719), + [anon_sym_noreturn] = ACTIONS(7719), + [anon_sym__Nonnull] = ACTIONS(7719), + [anon_sym_mutable] = ACTIONS(7719), + [anon_sym_constinit] = ACTIONS(7719), + [anon_sym_consteval] = ACTIONS(7719), + [anon_sym_alignas] = ACTIONS(7719), + [anon_sym__Alignas] = ACTIONS(7719), + [anon_sym_QMARK] = ACTIONS(7719), + [anon_sym_STAR_EQ] = ACTIONS(7719), + [anon_sym_SLASH_EQ] = ACTIONS(7719), + [anon_sym_PERCENT_EQ] = ACTIONS(7719), + [anon_sym_PLUS_EQ] = ACTIONS(7719), + [anon_sym_DASH_EQ] = ACTIONS(7719), + [anon_sym_LT_LT_EQ] = ACTIONS(7719), + [anon_sym_GT_GT_EQ] = ACTIONS(7719), + [anon_sym_AMP_EQ] = ACTIONS(7719), + [anon_sym_CARET_EQ] = ACTIONS(7719), + [anon_sym_PIPE_EQ] = ACTIONS(7719), + [anon_sym_and_eq] = ACTIONS(7719), + [anon_sym_or_eq] = ACTIONS(7719), + [anon_sym_xor_eq] = ACTIONS(7719), + [anon_sym_LT_EQ_GT] = ACTIONS(7719), + [anon_sym_or] = ACTIONS(7717), + [anon_sym_and] = ACTIONS(7717), + [anon_sym_bitor] = ACTIONS(7719), + [anon_sym_xor] = ACTIONS(7717), + [anon_sym_bitand] = ACTIONS(7719), + [anon_sym_not_eq] = ACTIONS(7719), + [anon_sym_DASH_DASH] = ACTIONS(7719), + [anon_sym_PLUS_PLUS] = ACTIONS(7719), + [anon_sym_DOT] = ACTIONS(7717), + [anon_sym_DOT_STAR] = ACTIONS(7719), + [anon_sym_DASH_GT] = ACTIONS(7717), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7719), + [anon_sym_override] = ACTIONS(7719), + [anon_sym_requires] = ACTIONS(7719), + [anon_sym_DASH_GT_STAR] = ACTIONS(7719), }, - [STATE(2557)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), - [anon_sym_COMMA] = ACTIONS(6260), - [anon_sym_RPAREN] = ACTIONS(6260), - [anon_sym_LPAREN2] = ACTIONS(6260), - [anon_sym_DASH] = ACTIONS(6258), - [anon_sym_PLUS] = ACTIONS(6258), - [anon_sym_STAR] = ACTIONS(6258), - [anon_sym_SLASH] = ACTIONS(6258), - [anon_sym_PERCENT] = ACTIONS(6258), - [anon_sym_PIPE_PIPE] = ACTIONS(6260), - [anon_sym_AMP_AMP] = ACTIONS(6260), - [anon_sym_PIPE] = ACTIONS(6258), - [anon_sym_CARET] = ACTIONS(6258), - [anon_sym_AMP] = ACTIONS(6258), - [anon_sym_EQ_EQ] = ACTIONS(6260), - [anon_sym_BANG_EQ] = ACTIONS(6260), - [anon_sym_GT] = ACTIONS(6258), - [anon_sym_GT_EQ] = ACTIONS(6260), - [anon_sym_LT_EQ] = ACTIONS(6258), - [anon_sym_LT] = ACTIONS(6258), - [anon_sym_LT_LT] = ACTIONS(6258), - [anon_sym_GT_GT] = ACTIONS(6258), - [anon_sym___extension__] = ACTIONS(6260), - [anon_sym___attribute__] = ACTIONS(6260), - [anon_sym___attribute] = ACTIONS(6258), - [anon_sym_COLON] = ACTIONS(6258), - [anon_sym_COLON_COLON] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6260), - [anon_sym_LBRACK] = ACTIONS(6260), - [anon_sym_EQ] = ACTIONS(6258), - [anon_sym_const] = ACTIONS(6258), - [anon_sym_constexpr] = ACTIONS(6260), - [anon_sym_volatile] = ACTIONS(6260), - [anon_sym_restrict] = ACTIONS(6260), - [anon_sym___restrict__] = ACTIONS(6260), - [anon_sym__Atomic] = ACTIONS(6260), - [anon_sym__Noreturn] = ACTIONS(6260), - [anon_sym_noreturn] = ACTIONS(6260), - [anon_sym__Nonnull] = ACTIONS(6260), - [anon_sym_mutable] = ACTIONS(6260), - [anon_sym_constinit] = ACTIONS(6260), - [anon_sym_consteval] = ACTIONS(6260), - [anon_sym_alignas] = ACTIONS(6260), - [anon_sym__Alignas] = ACTIONS(6260), - [anon_sym_QMARK] = ACTIONS(6260), - [anon_sym_STAR_EQ] = ACTIONS(6260), - [anon_sym_SLASH_EQ] = ACTIONS(6260), - [anon_sym_PERCENT_EQ] = ACTIONS(6260), - [anon_sym_PLUS_EQ] = ACTIONS(6260), - [anon_sym_DASH_EQ] = ACTIONS(6260), - [anon_sym_LT_LT_EQ] = ACTIONS(6260), - [anon_sym_GT_GT_EQ] = ACTIONS(6260), - [anon_sym_AMP_EQ] = ACTIONS(6260), - [anon_sym_CARET_EQ] = ACTIONS(6260), - [anon_sym_PIPE_EQ] = ACTIONS(6260), - [anon_sym_LT_EQ_GT] = ACTIONS(6260), - [anon_sym_or] = ACTIONS(6260), - [anon_sym_and] = ACTIONS(6260), - [anon_sym_bitor] = ACTIONS(6260), - [anon_sym_xor] = ACTIONS(6260), - [anon_sym_bitand] = ACTIONS(6260), - [anon_sym_not_eq] = ACTIONS(6260), - [anon_sym_DASH_DASH] = ACTIONS(6260), - [anon_sym_PLUS_PLUS] = ACTIONS(6260), - [anon_sym_DOT] = ACTIONS(6258), - [anon_sym_DOT_STAR] = ACTIONS(6260), - [anon_sym_DASH_GT] = ACTIONS(6258), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6260), - [anon_sym_decltype] = ACTIONS(6260), - [anon_sym_final] = ACTIONS(6260), - [anon_sym_override] = ACTIONS(6260), - [anon_sym_requires] = ACTIONS(6260), - [anon_sym_DASH_GT_STAR] = ACTIONS(6260), + [STATE(2426)] = { + [sym__abstract_declarator] = STATE(5152), + [sym_abstract_parenthesized_declarator] = STATE(4825), + [sym_abstract_pointer_declarator] = STATE(4825), + [sym_abstract_function_declarator] = STATE(4825), + [sym_abstract_array_declarator] = STATE(4825), + [sym_type_qualifier] = STATE(2424), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1974), + [sym_abstract_reference_declarator] = STATE(4825), + [sym__function_declarator_seq] = STATE(4934), + [aux_sym__type_definition_type_repeat1] = STATE(2424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), + [anon_sym_COMMA] = ACTIONS(7391), + [anon_sym_RPAREN] = ACTIONS(7391), + [anon_sym_LPAREN2] = ACTIONS(7006), + [anon_sym_DASH] = ACTIONS(7393), + [anon_sym_PLUS] = ACTIONS(7393), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_PERCENT] = ACTIONS(7393), + [anon_sym_PIPE_PIPE] = ACTIONS(7391), + [anon_sym_AMP_AMP] = ACTIONS(7297), + [anon_sym_PIPE] = ACTIONS(7393), + [anon_sym_CARET] = ACTIONS(7393), + [anon_sym_AMP] = ACTIONS(7299), + [anon_sym_EQ_EQ] = ACTIONS(7391), + [anon_sym_BANG_EQ] = ACTIONS(7391), + [anon_sym_GT] = ACTIONS(7393), + [anon_sym_GT_EQ] = ACTIONS(7391), + [anon_sym_LT_EQ] = ACTIONS(7393), + [anon_sym_LT] = ACTIONS(7393), + [anon_sym_LT_LT] = ACTIONS(7393), + [anon_sym_GT_GT] = ACTIONS(7393), + [anon_sym___extension__] = ACTIONS(7014), + [anon_sym_LBRACK] = ACTIONS(7022), + [anon_sym_EQ] = ACTIONS(7393), + [anon_sym_const] = ACTIONS(7024), + [anon_sym_constexpr] = ACTIONS(7014), + [anon_sym_volatile] = ACTIONS(7014), + [anon_sym_restrict] = ACTIONS(7014), + [anon_sym___restrict__] = ACTIONS(7014), + [anon_sym__Atomic] = ACTIONS(7014), + [anon_sym__Noreturn] = ACTIONS(7014), + [anon_sym_noreturn] = ACTIONS(7014), + [anon_sym__Nonnull] = ACTIONS(7014), + [anon_sym_mutable] = ACTIONS(7014), + [anon_sym_constinit] = ACTIONS(7014), + [anon_sym_consteval] = ACTIONS(7014), + [anon_sym_alignas] = ACTIONS(7026), + [anon_sym__Alignas] = ACTIONS(7026), + [anon_sym_QMARK] = ACTIONS(7391), + [anon_sym_STAR_EQ] = ACTIONS(7391), + [anon_sym_SLASH_EQ] = ACTIONS(7391), + [anon_sym_PERCENT_EQ] = ACTIONS(7391), + [anon_sym_PLUS_EQ] = ACTIONS(7391), + [anon_sym_DASH_EQ] = ACTIONS(7391), + [anon_sym_LT_LT_EQ] = ACTIONS(7391), + [anon_sym_GT_GT_EQ] = ACTIONS(7391), + [anon_sym_AMP_EQ] = ACTIONS(7391), + [anon_sym_CARET_EQ] = ACTIONS(7391), + [anon_sym_PIPE_EQ] = ACTIONS(7391), + [anon_sym_and_eq] = ACTIONS(7391), + [anon_sym_or_eq] = ACTIONS(7391), + [anon_sym_xor_eq] = ACTIONS(7391), + [anon_sym_LT_EQ_GT] = ACTIONS(7391), + [anon_sym_or] = ACTIONS(7393), + [anon_sym_and] = ACTIONS(7393), + [anon_sym_bitor] = ACTIONS(7391), + [anon_sym_xor] = ACTIONS(7393), + [anon_sym_bitand] = ACTIONS(7391), + [anon_sym_not_eq] = ACTIONS(7391), + [anon_sym_DASH_DASH] = ACTIONS(7391), + [anon_sym_PLUS_PLUS] = ACTIONS(7391), + [anon_sym_DOT] = ACTIONS(7393), + [anon_sym_DOT_STAR] = ACTIONS(7391), + [anon_sym_DASH_GT] = ACTIONS(7393), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7391), }, - [STATE(2558)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), - [anon_sym_COMMA] = ACTIONS(6264), - [anon_sym_RPAREN] = ACTIONS(6264), - [anon_sym_LPAREN2] = ACTIONS(6264), - [anon_sym_DASH] = ACTIONS(6262), - [anon_sym_PLUS] = ACTIONS(6262), - [anon_sym_STAR] = ACTIONS(6262), - [anon_sym_SLASH] = ACTIONS(6262), - [anon_sym_PERCENT] = ACTIONS(6262), - [anon_sym_PIPE_PIPE] = ACTIONS(6264), - [anon_sym_AMP_AMP] = ACTIONS(6264), - [anon_sym_PIPE] = ACTIONS(6262), - [anon_sym_CARET] = ACTIONS(6262), - [anon_sym_AMP] = ACTIONS(6262), - [anon_sym_EQ_EQ] = ACTIONS(6264), - [anon_sym_BANG_EQ] = ACTIONS(6264), - [anon_sym_GT] = ACTIONS(6262), - [anon_sym_GT_EQ] = ACTIONS(6264), - [anon_sym_LT_EQ] = ACTIONS(6262), - [anon_sym_LT] = ACTIONS(6262), - [anon_sym_LT_LT] = ACTIONS(6262), - [anon_sym_GT_GT] = ACTIONS(6262), - [anon_sym___extension__] = ACTIONS(6264), - [anon_sym___attribute__] = ACTIONS(6264), - [anon_sym___attribute] = ACTIONS(6262), - [anon_sym_COLON] = ACTIONS(6262), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACE] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(6264), - [anon_sym_EQ] = ACTIONS(6262), - [anon_sym_const] = ACTIONS(6262), - [anon_sym_constexpr] = ACTIONS(6264), - [anon_sym_volatile] = ACTIONS(6264), - [anon_sym_restrict] = ACTIONS(6264), - [anon_sym___restrict__] = ACTIONS(6264), - [anon_sym__Atomic] = ACTIONS(6264), - [anon_sym__Noreturn] = ACTIONS(6264), - [anon_sym_noreturn] = ACTIONS(6264), - [anon_sym__Nonnull] = ACTIONS(6264), - [anon_sym_mutable] = ACTIONS(6264), - [anon_sym_constinit] = ACTIONS(6264), - [anon_sym_consteval] = ACTIONS(6264), - [anon_sym_alignas] = ACTIONS(6264), - [anon_sym__Alignas] = ACTIONS(6264), - [anon_sym_QMARK] = ACTIONS(6264), - [anon_sym_STAR_EQ] = ACTIONS(6264), - [anon_sym_SLASH_EQ] = ACTIONS(6264), - [anon_sym_PERCENT_EQ] = ACTIONS(6264), - [anon_sym_PLUS_EQ] = ACTIONS(6264), - [anon_sym_DASH_EQ] = ACTIONS(6264), - [anon_sym_LT_LT_EQ] = ACTIONS(6264), - [anon_sym_GT_GT_EQ] = ACTIONS(6264), - [anon_sym_AMP_EQ] = ACTIONS(6264), - [anon_sym_CARET_EQ] = ACTIONS(6264), - [anon_sym_PIPE_EQ] = ACTIONS(6264), - [anon_sym_LT_EQ_GT] = ACTIONS(6264), - [anon_sym_or] = ACTIONS(6264), - [anon_sym_and] = ACTIONS(6264), - [anon_sym_bitor] = ACTIONS(6264), - [anon_sym_xor] = ACTIONS(6264), - [anon_sym_bitand] = ACTIONS(6264), - [anon_sym_not_eq] = ACTIONS(6264), - [anon_sym_DASH_DASH] = ACTIONS(6264), - [anon_sym_PLUS_PLUS] = ACTIONS(6264), - [anon_sym_DOT] = ACTIONS(6262), - [anon_sym_DOT_STAR] = ACTIONS(6264), - [anon_sym_DASH_GT] = ACTIONS(6262), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6264), - [anon_sym_decltype] = ACTIONS(6264), - [anon_sym_final] = ACTIONS(6264), - [anon_sym_override] = ACTIONS(6264), - [anon_sym_requires] = ACTIONS(6264), - [anon_sym_DASH_GT_STAR] = ACTIONS(6264), + [STATE(2427)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2415), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7557), + [anon_sym_COMMA] = ACTIONS(7557), + [anon_sym_RPAREN] = ACTIONS(7557), + [anon_sym_LPAREN2] = ACTIONS(7557), + [anon_sym_DASH] = ACTIONS(7555), + [anon_sym_PLUS] = ACTIONS(7555), + [anon_sym_STAR] = ACTIONS(7555), + [anon_sym_SLASH] = ACTIONS(7555), + [anon_sym_PERCENT] = ACTIONS(7555), + [anon_sym_PIPE_PIPE] = ACTIONS(7557), + [anon_sym_AMP_AMP] = ACTIONS(7557), + [anon_sym_PIPE] = ACTIONS(7555), + [anon_sym_CARET] = ACTIONS(7555), + [anon_sym_AMP] = ACTIONS(7555), + [anon_sym_EQ_EQ] = ACTIONS(7557), + [anon_sym_BANG_EQ] = ACTIONS(7557), + [anon_sym_GT] = ACTIONS(7555), + [anon_sym_GT_EQ] = ACTIONS(7557), + [anon_sym_LT_EQ] = ACTIONS(7555), + [anon_sym_LT] = ACTIONS(7555), + [anon_sym_LT_LT] = ACTIONS(7555), + [anon_sym_GT_GT] = ACTIONS(7555), + [anon_sym___extension__] = ACTIONS(7557), + [anon_sym___attribute__] = ACTIONS(7557), + [anon_sym___attribute] = ACTIONS(7555), + [anon_sym_LBRACE] = ACTIONS(7557), + [anon_sym_signed] = ACTIONS(8213), + [anon_sym_unsigned] = ACTIONS(8213), + [anon_sym_long] = ACTIONS(8213), + [anon_sym_short] = ACTIONS(8213), + [anon_sym_LBRACK] = ACTIONS(7557), + [anon_sym_EQ] = ACTIONS(7555), + [anon_sym_const] = ACTIONS(7555), + [anon_sym_constexpr] = ACTIONS(7557), + [anon_sym_volatile] = ACTIONS(7557), + [anon_sym_restrict] = ACTIONS(7557), + [anon_sym___restrict__] = ACTIONS(7557), + [anon_sym__Atomic] = ACTIONS(7557), + [anon_sym__Noreturn] = ACTIONS(7557), + [anon_sym_noreturn] = ACTIONS(7557), + [anon_sym__Nonnull] = ACTIONS(7557), + [anon_sym_mutable] = ACTIONS(7557), + [anon_sym_constinit] = ACTIONS(7557), + [anon_sym_consteval] = ACTIONS(7557), + [anon_sym_alignas] = ACTIONS(7557), + [anon_sym__Alignas] = ACTIONS(7557), + [anon_sym_QMARK] = ACTIONS(7557), + [anon_sym_STAR_EQ] = ACTIONS(7557), + [anon_sym_SLASH_EQ] = ACTIONS(7557), + [anon_sym_PERCENT_EQ] = ACTIONS(7557), + [anon_sym_PLUS_EQ] = ACTIONS(7557), + [anon_sym_DASH_EQ] = ACTIONS(7557), + [anon_sym_LT_LT_EQ] = ACTIONS(7557), + [anon_sym_GT_GT_EQ] = ACTIONS(7557), + [anon_sym_AMP_EQ] = ACTIONS(7557), + [anon_sym_CARET_EQ] = ACTIONS(7557), + [anon_sym_PIPE_EQ] = ACTIONS(7557), + [anon_sym_and_eq] = ACTIONS(7557), + [anon_sym_or_eq] = ACTIONS(7557), + [anon_sym_xor_eq] = ACTIONS(7557), + [anon_sym_LT_EQ_GT] = ACTIONS(7557), + [anon_sym_or] = ACTIONS(7555), + [anon_sym_and] = ACTIONS(7555), + [anon_sym_bitor] = ACTIONS(7557), + [anon_sym_xor] = ACTIONS(7555), + [anon_sym_bitand] = ACTIONS(7557), + [anon_sym_not_eq] = ACTIONS(7557), + [anon_sym_DASH_DASH] = ACTIONS(7557), + [anon_sym_PLUS_PLUS] = ACTIONS(7557), + [anon_sym_DOT] = ACTIONS(7555), + [anon_sym_DOT_STAR] = ACTIONS(7557), + [anon_sym_DASH_GT] = ACTIONS(7555), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_override] = ACTIONS(7557), + [anon_sym_requires] = ACTIONS(7557), + [anon_sym_DASH_GT_STAR] = ACTIONS(7557), }, - [STATE(2559)] = { - [sym_identifier] = ACTIONS(2768), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), - [anon_sym_COMMA] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [aux_sym_preproc_if_token2] = ACTIONS(2758), - [aux_sym_preproc_else_token1] = ACTIONS(2758), - [aux_sym_preproc_elif_token1] = ACTIONS(2768), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2758), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2758), - [anon_sym_LPAREN2] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2758), - [anon_sym_SLASH] = ACTIONS(2768), - [anon_sym_PERCENT] = ACTIONS(2758), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2758), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2768), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_LT_EQ] = ACTIONS(2768), - [anon_sym_LT] = ACTIONS(2768), - [anon_sym_LT_LT] = ACTIONS(2758), - [anon_sym_GT_GT] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym___extension__] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_COLON] = ACTIONS(2768), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2758), - [anon_sym_RBRACE] = ACTIONS(2758), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [anon_sym_QMARK] = ACTIONS(2758), - [anon_sym_LT_EQ_GT] = ACTIONS(2758), - [anon_sym_or] = ACTIONS(2768), - [anon_sym_and] = ACTIONS(2768), - [anon_sym_bitor] = ACTIONS(2768), - [anon_sym_xor] = ACTIONS(2768), - [anon_sym_bitand] = ACTIONS(2768), - [anon_sym_not_eq] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2758), - [anon_sym_PLUS_PLUS] = ACTIONS(2758), - [anon_sym_asm] = ACTIONS(2768), - [anon_sym___asm__] = ACTIONS(2768), - [anon_sym___asm] = ACTIONS(2768), - [anon_sym_DOT] = ACTIONS(2768), - [anon_sym_DOT_STAR] = ACTIONS(2758), - [anon_sym_DASH_GT] = ACTIONS(2758), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2768), - [anon_sym_override] = ACTIONS(2768), - [anon_sym_noexcept] = ACTIONS(2768), - [anon_sym_throw] = ACTIONS(2768), - [anon_sym_requires] = ACTIONS(2768), - [anon_sym_COLON_RBRACK] = ACTIONS(2758), + [STATE(2428)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2414), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7785), + [anon_sym_COMMA] = ACTIONS(7785), + [anon_sym_RPAREN] = ACTIONS(7785), + [anon_sym_LPAREN2] = ACTIONS(7785), + [anon_sym_DASH] = ACTIONS(7783), + [anon_sym_PLUS] = ACTIONS(7783), + [anon_sym_STAR] = ACTIONS(7783), + [anon_sym_SLASH] = ACTIONS(7783), + [anon_sym_PERCENT] = ACTIONS(7783), + [anon_sym_PIPE_PIPE] = ACTIONS(7785), + [anon_sym_AMP_AMP] = ACTIONS(7785), + [anon_sym_PIPE] = ACTIONS(7783), + [anon_sym_CARET] = ACTIONS(7783), + [anon_sym_AMP] = ACTIONS(7783), + [anon_sym_EQ_EQ] = ACTIONS(7785), + [anon_sym_BANG_EQ] = ACTIONS(7785), + [anon_sym_GT] = ACTIONS(7783), + [anon_sym_GT_EQ] = ACTIONS(7785), + [anon_sym_LT_EQ] = ACTIONS(7783), + [anon_sym_LT] = ACTIONS(7783), + [anon_sym_LT_LT] = ACTIONS(7783), + [anon_sym_GT_GT] = ACTIONS(7783), + [anon_sym___extension__] = ACTIONS(7785), + [anon_sym___attribute__] = ACTIONS(7785), + [anon_sym___attribute] = ACTIONS(7783), + [anon_sym_LBRACE] = ACTIONS(7785), + [anon_sym_signed] = ACTIONS(8215), + [anon_sym_unsigned] = ACTIONS(8215), + [anon_sym_long] = ACTIONS(8215), + [anon_sym_short] = ACTIONS(8215), + [anon_sym_LBRACK] = ACTIONS(7785), + [anon_sym_EQ] = ACTIONS(7783), + [anon_sym_const] = ACTIONS(7783), + [anon_sym_constexpr] = ACTIONS(7785), + [anon_sym_volatile] = ACTIONS(7785), + [anon_sym_restrict] = ACTIONS(7785), + [anon_sym___restrict__] = ACTIONS(7785), + [anon_sym__Atomic] = ACTIONS(7785), + [anon_sym__Noreturn] = ACTIONS(7785), + [anon_sym_noreturn] = ACTIONS(7785), + [anon_sym__Nonnull] = ACTIONS(7785), + [anon_sym_mutable] = ACTIONS(7785), + [anon_sym_constinit] = ACTIONS(7785), + [anon_sym_consteval] = ACTIONS(7785), + [anon_sym_alignas] = ACTIONS(7785), + [anon_sym__Alignas] = ACTIONS(7785), + [anon_sym_QMARK] = ACTIONS(7785), + [anon_sym_STAR_EQ] = ACTIONS(7785), + [anon_sym_SLASH_EQ] = ACTIONS(7785), + [anon_sym_PERCENT_EQ] = ACTIONS(7785), + [anon_sym_PLUS_EQ] = ACTIONS(7785), + [anon_sym_DASH_EQ] = ACTIONS(7785), + [anon_sym_LT_LT_EQ] = ACTIONS(7785), + [anon_sym_GT_GT_EQ] = ACTIONS(7785), + [anon_sym_AMP_EQ] = ACTIONS(7785), + [anon_sym_CARET_EQ] = ACTIONS(7785), + [anon_sym_PIPE_EQ] = ACTIONS(7785), + [anon_sym_and_eq] = ACTIONS(7785), + [anon_sym_or_eq] = ACTIONS(7785), + [anon_sym_xor_eq] = ACTIONS(7785), + [anon_sym_LT_EQ_GT] = ACTIONS(7785), + [anon_sym_or] = ACTIONS(7783), + [anon_sym_and] = ACTIONS(7783), + [anon_sym_bitor] = ACTIONS(7785), + [anon_sym_xor] = ACTIONS(7783), + [anon_sym_bitand] = ACTIONS(7785), + [anon_sym_not_eq] = ACTIONS(7785), + [anon_sym_DASH_DASH] = ACTIONS(7785), + [anon_sym_PLUS_PLUS] = ACTIONS(7785), + [anon_sym_DOT] = ACTIONS(7783), + [anon_sym_DOT_STAR] = ACTIONS(7785), + [anon_sym_DASH_GT] = ACTIONS(7783), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7785), + [anon_sym_override] = ACTIONS(7785), + [anon_sym_requires] = ACTIONS(7785), + [anon_sym_DASH_GT_STAR] = ACTIONS(7785), }, - [STATE(2560)] = { - [sym_identifier] = ACTIONS(6716), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), - [anon_sym_COMMA] = ACTIONS(6718), - [anon_sym_RPAREN] = ACTIONS(6718), - [aux_sym_preproc_if_token2] = ACTIONS(6718), - [aux_sym_preproc_else_token1] = ACTIONS(6718), - [aux_sym_preproc_elif_token1] = ACTIONS(6716), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6718), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6718), - [anon_sym_LPAREN2] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6716), - [anon_sym_PLUS] = ACTIONS(6716), - [anon_sym_STAR] = ACTIONS(6718), - [anon_sym_SLASH] = ACTIONS(6716), - [anon_sym_PERCENT] = ACTIONS(6718), - [anon_sym_PIPE_PIPE] = ACTIONS(6718), - [anon_sym_AMP_AMP] = ACTIONS(6718), - [anon_sym_PIPE] = ACTIONS(6716), - [anon_sym_CARET] = ACTIONS(6718), - [anon_sym_AMP] = ACTIONS(6716), - [anon_sym_EQ_EQ] = ACTIONS(6718), - [anon_sym_BANG_EQ] = ACTIONS(6718), - [anon_sym_GT] = ACTIONS(6716), - [anon_sym_GT_EQ] = ACTIONS(6718), - [anon_sym_LT_EQ] = ACTIONS(6716), - [anon_sym_LT] = ACTIONS(6716), - [anon_sym_LT_LT] = ACTIONS(6718), - [anon_sym_GT_GT] = ACTIONS(6718), - [anon_sym_SEMI] = ACTIONS(6718), - [anon_sym___extension__] = ACTIONS(6716), - [anon_sym___attribute__] = ACTIONS(6716), - [anon_sym___attribute] = ACTIONS(6716), - [anon_sym_COLON] = ACTIONS(6716), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6718), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6718), - [anon_sym_RBRACE] = ACTIONS(6718), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_const] = ACTIONS(6716), - [anon_sym_constexpr] = ACTIONS(6716), - [anon_sym_volatile] = ACTIONS(6716), - [anon_sym_restrict] = ACTIONS(6716), - [anon_sym___restrict__] = ACTIONS(6716), - [anon_sym__Atomic] = ACTIONS(6716), - [anon_sym__Noreturn] = ACTIONS(6716), - [anon_sym_noreturn] = ACTIONS(6716), - [anon_sym__Nonnull] = ACTIONS(6716), - [anon_sym_mutable] = ACTIONS(6716), - [anon_sym_constinit] = ACTIONS(6716), - [anon_sym_consteval] = ACTIONS(6716), - [anon_sym_alignas] = ACTIONS(6716), - [anon_sym__Alignas] = ACTIONS(6716), - [anon_sym_QMARK] = ACTIONS(6718), - [anon_sym_LT_EQ_GT] = ACTIONS(6718), - [anon_sym_or] = ACTIONS(6716), - [anon_sym_and] = ACTIONS(6716), - [anon_sym_bitor] = ACTIONS(6716), - [anon_sym_xor] = ACTIONS(6716), - [anon_sym_bitand] = ACTIONS(6716), - [anon_sym_not_eq] = ACTIONS(6716), - [anon_sym_DASH_DASH] = ACTIONS(6718), - [anon_sym_PLUS_PLUS] = ACTIONS(6718), - [anon_sym_asm] = ACTIONS(6716), - [anon_sym___asm__] = ACTIONS(6716), - [anon_sym___asm] = ACTIONS(6716), - [anon_sym_DOT] = ACTIONS(6716), - [anon_sym_DOT_STAR] = ACTIONS(6718), - [anon_sym_DASH_GT] = ACTIONS(6718), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6716), - [anon_sym_override] = ACTIONS(6716), - [anon_sym_noexcept] = ACTIONS(6716), - [anon_sym_throw] = ACTIONS(6716), - [anon_sym_requires] = ACTIONS(6716), - [anon_sym_COLON_RBRACK] = ACTIONS(6718), + [STATE(2429)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2618), + [sym_ms_pointer_modifier] = STATE(2429), + [aux_sym_pointer_declarator_repeat1] = STATE(2429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6944), + [anon_sym_COMMA] = ACTIONS(6944), + [anon_sym_RPAREN] = ACTIONS(6944), + [anon_sym_LPAREN2] = ACTIONS(6944), + [anon_sym_DASH] = ACTIONS(6942), + [anon_sym_PLUS] = ACTIONS(6942), + [anon_sym_STAR] = ACTIONS(6942), + [anon_sym_SLASH] = ACTIONS(6942), + [anon_sym_PERCENT] = ACTIONS(6942), + [anon_sym_PIPE_PIPE] = ACTIONS(6944), + [anon_sym_AMP_AMP] = ACTIONS(6944), + [anon_sym_PIPE] = ACTIONS(6942), + [anon_sym_CARET] = ACTIONS(6942), + [anon_sym_AMP] = ACTIONS(6942), + [anon_sym_EQ_EQ] = ACTIONS(6944), + [anon_sym_BANG_EQ] = ACTIONS(6944), + [anon_sym_GT] = ACTIONS(6942), + [anon_sym_GT_EQ] = ACTIONS(6944), + [anon_sym_LT_EQ] = ACTIONS(6942), + [anon_sym_LT] = ACTIONS(6942), + [anon_sym_LT_LT] = ACTIONS(6942), + [anon_sym_GT_GT] = ACTIONS(6942), + [anon_sym___extension__] = ACTIONS(6944), + [sym_ms_restrict_modifier] = ACTIONS(8217), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8220), + [sym_ms_signed_ptr_modifier] = ACTIONS(8220), + [anon_sym__unaligned] = ACTIONS(8223), + [anon_sym___unaligned] = ACTIONS(8223), + [anon_sym_LBRACK] = ACTIONS(6944), + [anon_sym_EQ] = ACTIONS(6942), + [anon_sym_const] = ACTIONS(6942), + [anon_sym_constexpr] = ACTIONS(6944), + [anon_sym_volatile] = ACTIONS(6944), + [anon_sym_restrict] = ACTIONS(6944), + [anon_sym___restrict__] = ACTIONS(6944), + [anon_sym__Atomic] = ACTIONS(6944), + [anon_sym__Noreturn] = ACTIONS(6944), + [anon_sym_noreturn] = ACTIONS(6944), + [anon_sym__Nonnull] = ACTIONS(6944), + [anon_sym_mutable] = ACTIONS(6944), + [anon_sym_constinit] = ACTIONS(6944), + [anon_sym_consteval] = ACTIONS(6944), + [anon_sym_alignas] = ACTIONS(6944), + [anon_sym__Alignas] = ACTIONS(6944), + [anon_sym_QMARK] = ACTIONS(6944), + [anon_sym_STAR_EQ] = ACTIONS(6944), + [anon_sym_SLASH_EQ] = ACTIONS(6944), + [anon_sym_PERCENT_EQ] = ACTIONS(6944), + [anon_sym_PLUS_EQ] = ACTIONS(6944), + [anon_sym_DASH_EQ] = ACTIONS(6944), + [anon_sym_LT_LT_EQ] = ACTIONS(6944), + [anon_sym_GT_GT_EQ] = ACTIONS(6944), + [anon_sym_AMP_EQ] = ACTIONS(6944), + [anon_sym_CARET_EQ] = ACTIONS(6944), + [anon_sym_PIPE_EQ] = ACTIONS(6944), + [anon_sym_and_eq] = ACTIONS(6944), + [anon_sym_or_eq] = ACTIONS(6944), + [anon_sym_xor_eq] = ACTIONS(6944), + [anon_sym_LT_EQ_GT] = ACTIONS(6944), + [anon_sym_or] = ACTIONS(6942), + [anon_sym_and] = ACTIONS(6942), + [anon_sym_bitor] = ACTIONS(6944), + [anon_sym_xor] = ACTIONS(6942), + [anon_sym_bitand] = ACTIONS(6944), + [anon_sym_not_eq] = ACTIONS(6944), + [anon_sym_DASH_DASH] = ACTIONS(6944), + [anon_sym_PLUS_PLUS] = ACTIONS(6944), + [anon_sym_DOT] = ACTIONS(6942), + [anon_sym_DOT_STAR] = ACTIONS(6944), + [anon_sym_DASH_GT] = ACTIONS(6942), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6944), + [anon_sym_override] = ACTIONS(6944), + [anon_sym_requires] = ACTIONS(6944), + [anon_sym_DASH_GT_STAR] = ACTIONS(6944), }, - [STATE(2561)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6846), - [anon_sym_COMMA] = ACTIONS(6846), - [anon_sym_LPAREN2] = ACTIONS(6846), - [anon_sym_DASH] = ACTIONS(6844), - [anon_sym_PLUS] = ACTIONS(6844), - [anon_sym_STAR] = ACTIONS(6844), - [anon_sym_SLASH] = ACTIONS(6844), - [anon_sym_PERCENT] = ACTIONS(6844), - [anon_sym_PIPE_PIPE] = ACTIONS(6846), - [anon_sym_AMP_AMP] = ACTIONS(6846), - [anon_sym_PIPE] = ACTIONS(6844), - [anon_sym_CARET] = ACTIONS(6844), - [anon_sym_AMP] = ACTIONS(6844), - [anon_sym_EQ_EQ] = ACTIONS(6846), - [anon_sym_BANG_EQ] = ACTIONS(6846), - [anon_sym_GT] = ACTIONS(6844), - [anon_sym_GT_EQ] = ACTIONS(6844), - [anon_sym_LT_EQ] = ACTIONS(6844), - [anon_sym_LT] = ACTIONS(6844), - [anon_sym_LT_LT] = ACTIONS(6844), - [anon_sym_GT_GT] = ACTIONS(6844), - [anon_sym___extension__] = ACTIONS(6846), - [anon_sym___attribute__] = ACTIONS(6846), - [anon_sym___attribute] = ACTIONS(6844), - [anon_sym_COLON] = ACTIONS(6844), - [anon_sym_COLON_COLON] = ACTIONS(6846), - [anon_sym_LBRACE] = ACTIONS(6846), - [anon_sym_LBRACK] = ACTIONS(6846), - [anon_sym_EQ] = ACTIONS(6844), - [anon_sym_const] = ACTIONS(6844), - [anon_sym_constexpr] = ACTIONS(6846), - [anon_sym_volatile] = ACTIONS(6846), - [anon_sym_restrict] = ACTIONS(6846), - [anon_sym___restrict__] = ACTIONS(6846), - [anon_sym__Atomic] = ACTIONS(6846), - [anon_sym__Noreturn] = ACTIONS(6846), - [anon_sym_noreturn] = ACTIONS(6846), - [anon_sym__Nonnull] = ACTIONS(6846), - [anon_sym_mutable] = ACTIONS(6846), - [anon_sym_constinit] = ACTIONS(6846), - [anon_sym_consteval] = ACTIONS(6846), - [anon_sym_alignas] = ACTIONS(6846), - [anon_sym__Alignas] = ACTIONS(6846), - [anon_sym_QMARK] = ACTIONS(6846), - [anon_sym_STAR_EQ] = ACTIONS(6846), - [anon_sym_SLASH_EQ] = ACTIONS(6846), - [anon_sym_PERCENT_EQ] = ACTIONS(6846), - [anon_sym_PLUS_EQ] = ACTIONS(6846), - [anon_sym_DASH_EQ] = ACTIONS(6846), - [anon_sym_LT_LT_EQ] = ACTIONS(6846), - [anon_sym_GT_GT_EQ] = ACTIONS(6844), - [anon_sym_AMP_EQ] = ACTIONS(6846), - [anon_sym_CARET_EQ] = ACTIONS(6846), - [anon_sym_PIPE_EQ] = ACTIONS(6846), - [anon_sym_and_eq] = ACTIONS(6846), - [anon_sym_or_eq] = ACTIONS(6846), - [anon_sym_xor_eq] = ACTIONS(6846), - [anon_sym_LT_EQ_GT] = ACTIONS(6846), - [anon_sym_or] = ACTIONS(6844), - [anon_sym_and] = ACTIONS(6844), - [anon_sym_bitor] = ACTIONS(6846), - [anon_sym_xor] = ACTIONS(6844), - [anon_sym_bitand] = ACTIONS(6846), - [anon_sym_not_eq] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DOT] = ACTIONS(6844), - [anon_sym_DOT_STAR] = ACTIONS(6846), - [anon_sym_DASH_GT] = ACTIONS(6846), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6846), - [anon_sym_override] = ACTIONS(6846), - [anon_sym_GT2] = ACTIONS(6846), - [anon_sym_requires] = ACTIONS(6846), + [STATE(2430)] = { + [sym__abstract_declarator] = STATE(5250), + [sym_abstract_parenthesized_declarator] = STATE(5693), + [sym_abstract_pointer_declarator] = STATE(5693), + [sym_abstract_function_declarator] = STATE(5693), + [sym_abstract_array_declarator] = STATE(5693), + [sym_type_qualifier] = STATE(2367), + [sym_alignas_qualifier] = STATE(2576), + [sym_parameter_list] = STATE(1991), + [sym_abstract_reference_declarator] = STATE(5693), + [sym__function_declarator_seq] = STATE(5694), + [aux_sym__type_definition_type_repeat1] = STATE(2367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), + [anon_sym_COMMA] = ACTIONS(7355), + [anon_sym_RPAREN] = ACTIONS(7355), + [anon_sym_LPAREN2] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7353), + [anon_sym_PLUS] = ACTIONS(7353), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_SLASH] = ACTIONS(7353), + [anon_sym_PERCENT] = ACTIONS(7353), + [anon_sym_PIPE_PIPE] = ACTIONS(7355), + [anon_sym_AMP_AMP] = ACTIONS(7309), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_CARET] = ACTIONS(7353), + [anon_sym_AMP] = ACTIONS(7311), + [anon_sym_EQ_EQ] = ACTIONS(7355), + [anon_sym_BANG_EQ] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_EQ] = ACTIONS(7355), + [anon_sym_LT_EQ] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_LT_LT] = ACTIONS(7353), + [anon_sym_GT_GT] = ACTIONS(7353), + [anon_sym___extension__] = ACTIONS(7313), + [anon_sym_LBRACK] = ACTIONS(7321), + [anon_sym_EQ] = ACTIONS(7353), + [anon_sym_const] = ACTIONS(7323), + [anon_sym_constexpr] = ACTIONS(7313), + [anon_sym_volatile] = ACTIONS(7313), + [anon_sym_restrict] = ACTIONS(7313), + [anon_sym___restrict__] = ACTIONS(7313), + [anon_sym__Atomic] = ACTIONS(7313), + [anon_sym__Noreturn] = ACTIONS(7313), + [anon_sym_noreturn] = ACTIONS(7313), + [anon_sym__Nonnull] = ACTIONS(7313), + [anon_sym_mutable] = ACTIONS(7313), + [anon_sym_constinit] = ACTIONS(7313), + [anon_sym_consteval] = ACTIONS(7313), + [anon_sym_alignas] = ACTIONS(7325), + [anon_sym__Alignas] = ACTIONS(7325), + [anon_sym_QMARK] = ACTIONS(7355), + [anon_sym_STAR_EQ] = ACTIONS(7355), + [anon_sym_SLASH_EQ] = ACTIONS(7355), + [anon_sym_PERCENT_EQ] = ACTIONS(7355), + [anon_sym_PLUS_EQ] = ACTIONS(7355), + [anon_sym_DASH_EQ] = ACTIONS(7355), + [anon_sym_LT_LT_EQ] = ACTIONS(7355), + [anon_sym_GT_GT_EQ] = ACTIONS(7355), + [anon_sym_AMP_EQ] = ACTIONS(7355), + [anon_sym_CARET_EQ] = ACTIONS(7355), + [anon_sym_PIPE_EQ] = ACTIONS(7355), + [anon_sym_LT_EQ_GT] = ACTIONS(7355), + [anon_sym_or] = ACTIONS(7355), + [anon_sym_and] = ACTIONS(7355), + [anon_sym_bitor] = ACTIONS(7355), + [anon_sym_xor] = ACTIONS(7355), + [anon_sym_bitand] = ACTIONS(7355), + [anon_sym_not_eq] = ACTIONS(7355), + [anon_sym_DASH_DASH] = ACTIONS(7355), + [anon_sym_PLUS_PLUS] = ACTIONS(7355), + [anon_sym_DOT] = ACTIONS(7353), + [anon_sym_DOT_STAR] = ACTIONS(7355), + [anon_sym_DASH_GT] = ACTIONS(7353), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7355), + [anon_sym_override] = ACTIONS(7355), + [anon_sym_requires] = ACTIONS(7355), + [anon_sym_DASH_GT_STAR] = ACTIONS(7355), }, - [STATE(2562)] = { - [sym_attribute_specifier] = STATE(3019), - [sym_enumerator_list] = STATE(2658), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6987), - [anon_sym_COMMA] = ACTIONS(6987), - [anon_sym_LPAREN2] = ACTIONS(6987), - [anon_sym_DASH] = ACTIONS(6985), - [anon_sym_PLUS] = ACTIONS(6985), - [anon_sym_STAR] = ACTIONS(6985), - [anon_sym_SLASH] = ACTIONS(6985), - [anon_sym_PERCENT] = ACTIONS(6985), - [anon_sym_PIPE_PIPE] = ACTIONS(6987), - [anon_sym_AMP_AMP] = ACTIONS(6987), - [anon_sym_PIPE] = ACTIONS(6985), - [anon_sym_CARET] = ACTIONS(6985), - [anon_sym_AMP] = ACTIONS(6985), - [anon_sym_EQ_EQ] = ACTIONS(6987), - [anon_sym_BANG_EQ] = ACTIONS(6987), - [anon_sym_GT] = ACTIONS(6985), - [anon_sym_GT_EQ] = ACTIONS(6985), - [anon_sym_LT_EQ] = ACTIONS(6985), - [anon_sym_LT] = ACTIONS(6985), - [anon_sym_LT_LT] = ACTIONS(6985), - [anon_sym_GT_GT] = ACTIONS(6985), - [anon_sym___extension__] = ACTIONS(6987), - [anon_sym___attribute__] = ACTIONS(7862), - [anon_sym___attribute] = ACTIONS(7864), - [anon_sym_LBRACE] = ACTIONS(8096), - [anon_sym_LBRACK] = ACTIONS(6987), - [anon_sym_EQ] = ACTIONS(6985), - [anon_sym_const] = ACTIONS(6985), - [anon_sym_constexpr] = ACTIONS(6987), - [anon_sym_volatile] = ACTIONS(6987), - [anon_sym_restrict] = ACTIONS(6987), - [anon_sym___restrict__] = ACTIONS(6987), - [anon_sym__Atomic] = ACTIONS(6987), - [anon_sym__Noreturn] = ACTIONS(6987), - [anon_sym_noreturn] = ACTIONS(6987), - [anon_sym__Nonnull] = ACTIONS(6987), - [anon_sym_mutable] = ACTIONS(6987), - [anon_sym_constinit] = ACTIONS(6987), - [anon_sym_consteval] = ACTIONS(6987), - [anon_sym_alignas] = ACTIONS(6987), - [anon_sym__Alignas] = ACTIONS(6987), - [anon_sym_QMARK] = ACTIONS(6987), - [anon_sym_STAR_EQ] = ACTIONS(6987), - [anon_sym_SLASH_EQ] = ACTIONS(6987), - [anon_sym_PERCENT_EQ] = ACTIONS(6987), - [anon_sym_PLUS_EQ] = ACTIONS(6987), - [anon_sym_DASH_EQ] = ACTIONS(6987), - [anon_sym_LT_LT_EQ] = ACTIONS(6987), - [anon_sym_GT_GT_EQ] = ACTIONS(6985), - [anon_sym_AMP_EQ] = ACTIONS(6987), - [anon_sym_CARET_EQ] = ACTIONS(6987), - [anon_sym_PIPE_EQ] = ACTIONS(6987), - [anon_sym_and_eq] = ACTIONS(6987), - [anon_sym_or_eq] = ACTIONS(6987), - [anon_sym_xor_eq] = ACTIONS(6987), - [anon_sym_LT_EQ_GT] = ACTIONS(6987), - [anon_sym_or] = ACTIONS(6985), - [anon_sym_and] = ACTIONS(6985), - [anon_sym_bitor] = ACTIONS(6987), - [anon_sym_xor] = ACTIONS(6985), - [anon_sym_bitand] = ACTIONS(6987), - [anon_sym_not_eq] = ACTIONS(6987), - [anon_sym_DASH_DASH] = ACTIONS(6987), - [anon_sym_PLUS_PLUS] = ACTIONS(6987), - [anon_sym_DOT] = ACTIONS(6985), - [anon_sym_DOT_STAR] = ACTIONS(6987), - [anon_sym_DASH_GT] = ACTIONS(6987), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6987), - [anon_sym_override] = ACTIONS(6987), - [anon_sym_GT2] = ACTIONS(6987), - [anon_sym_requires] = ACTIONS(6987), + [STATE(2431)] = { + [sym__abstract_declarator] = STATE(5256), + [sym_abstract_parenthesized_declarator] = STATE(5693), + [sym_abstract_pointer_declarator] = STATE(5693), + [sym_abstract_function_declarator] = STATE(5693), + [sym_abstract_array_declarator] = STATE(5693), + [sym_type_qualifier] = STATE(2367), + [sym_alignas_qualifier] = STATE(2576), + [sym_parameter_list] = STATE(1991), + [sym_abstract_reference_declarator] = STATE(5693), + [sym__function_declarator_seq] = STATE(5694), + [aux_sym__type_definition_type_repeat1] = STATE(2367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_RPAREN] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7347), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(7309), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7347), + [anon_sym_AMP] = ACTIONS(7311), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7347), + [anon_sym_GT_GT] = ACTIONS(7347), + [anon_sym___extension__] = ACTIONS(7313), + [anon_sym_LBRACK] = ACTIONS(7321), + [anon_sym_EQ] = ACTIONS(7347), + [anon_sym_const] = ACTIONS(7323), + [anon_sym_constexpr] = ACTIONS(7313), + [anon_sym_volatile] = ACTIONS(7313), + [anon_sym_restrict] = ACTIONS(7313), + [anon_sym___restrict__] = ACTIONS(7313), + [anon_sym__Atomic] = ACTIONS(7313), + [anon_sym__Noreturn] = ACTIONS(7313), + [anon_sym_noreturn] = ACTIONS(7313), + [anon_sym__Nonnull] = ACTIONS(7313), + [anon_sym_mutable] = ACTIONS(7313), + [anon_sym_constinit] = ACTIONS(7313), + [anon_sym_consteval] = ACTIONS(7313), + [anon_sym_alignas] = ACTIONS(7325), + [anon_sym__Alignas] = ACTIONS(7325), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_STAR_EQ] = ACTIONS(7345), + [anon_sym_SLASH_EQ] = ACTIONS(7345), + [anon_sym_PERCENT_EQ] = ACTIONS(7345), + [anon_sym_PLUS_EQ] = ACTIONS(7345), + [anon_sym_DASH_EQ] = ACTIONS(7345), + [anon_sym_LT_LT_EQ] = ACTIONS(7345), + [anon_sym_GT_GT_EQ] = ACTIONS(7345), + [anon_sym_AMP_EQ] = ACTIONS(7345), + [anon_sym_CARET_EQ] = ACTIONS(7345), + [anon_sym_PIPE_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7345), + [anon_sym_and] = ACTIONS(7345), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7345), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7347), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7345), + [anon_sym_override] = ACTIONS(7345), + [anon_sym_requires] = ACTIONS(7345), + [anon_sym_DASH_GT_STAR] = ACTIONS(7345), }, - [STATE(2563)] = { - [sym_identifier] = ACTIONS(2803), - [aux_sym_preproc_def_token1] = ACTIONS(2803), - [anon_sym_COMMA] = ACTIONS(3888), - [aux_sym_preproc_if_token1] = ACTIONS(2803), - [aux_sym_preproc_if_token2] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), - [aux_sym_preproc_else_token1] = ACTIONS(2803), - [aux_sym_preproc_elif_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2803), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(3888), - [anon_sym___extension__] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2803), - [anon_sym_virtual] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym___attribute__] = ACTIONS(8208), - [anon_sym___attribute] = ACTIONS(8208), - [anon_sym_using] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2803), - [anon_sym___based] = ACTIONS(2803), - [anon_sym_signed] = ACTIONS(2803), - [anon_sym_unsigned] = ACTIONS(2803), - [anon_sym_long] = ACTIONS(2803), - [anon_sym_short] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_register] = ACTIONS(2803), - [anon_sym_inline] = ACTIONS(2803), - [anon_sym___inline] = ACTIONS(2803), - [anon_sym___inline__] = ACTIONS(2803), - [anon_sym___forceinline] = ACTIONS(2803), - [anon_sym_thread_local] = ACTIONS(2803), - [anon_sym___thread] = ACTIONS(2803), - [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__Nonnull] = ACTIONS(2803), - [anon_sym_mutable] = ACTIONS(2803), - [anon_sym_constinit] = ACTIONS(2803), - [anon_sym_consteval] = ACTIONS(2803), - [anon_sym_alignas] = ACTIONS(2803), - [anon_sym__Alignas] = ACTIONS(2803), - [sym_primitive_type] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_typename] = ACTIONS(2803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2803), - [anon_sym_decltype] = ACTIONS(2803), - [anon_sym_explicit] = ACTIONS(2803), - [anon_sym_private] = ACTIONS(2803), - [anon_sym_template] = ACTIONS(2803), - [anon_sym_operator] = ACTIONS(2803), - [anon_sym_friend] = ACTIONS(2803), - [anon_sym_public] = ACTIONS(2803), - [anon_sym_protected] = ACTIONS(2803), - [anon_sym_static_assert] = ACTIONS(2803), - [anon_sym_LBRACK_COLON] = ACTIONS(2801), + [STATE(2432)] = { + [sym__abstract_declarator] = STATE(5255), + [sym_abstract_parenthesized_declarator] = STATE(5693), + [sym_abstract_pointer_declarator] = STATE(5693), + [sym_abstract_function_declarator] = STATE(5693), + [sym_abstract_array_declarator] = STATE(5693), + [sym_type_qualifier] = STATE(2367), + [sym_alignas_qualifier] = STATE(2576), + [sym_parameter_list] = STATE(1991), + [sym_abstract_reference_declarator] = STATE(5693), + [sym__function_declarator_seq] = STATE(5694), + [aux_sym__type_definition_type_repeat1] = STATE(2367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(7309), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(7311), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(7313), + [anon_sym_LBRACK] = ACTIONS(7321), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(7323), + [anon_sym_constexpr] = ACTIONS(7313), + [anon_sym_volatile] = ACTIONS(7313), + [anon_sym_restrict] = ACTIONS(7313), + [anon_sym___restrict__] = ACTIONS(7313), + [anon_sym__Atomic] = ACTIONS(7313), + [anon_sym__Noreturn] = ACTIONS(7313), + [anon_sym_noreturn] = ACTIONS(7313), + [anon_sym__Nonnull] = ACTIONS(7313), + [anon_sym_mutable] = ACTIONS(7313), + [anon_sym_constinit] = ACTIONS(7313), + [anon_sym_consteval] = ACTIONS(7313), + [anon_sym_alignas] = ACTIONS(7325), + [anon_sym__Alignas] = ACTIONS(7325), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6823), + [anon_sym_and] = ACTIONS(6823), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6823), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6821), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6823), + [anon_sym_override] = ACTIONS(6823), + [anon_sym_requires] = ACTIONS(6823), + [anon_sym_DASH_GT_STAR] = ACTIONS(6823), }, - [STATE(2564)] = { - [sym_attribute_specifier] = STATE(4247), - [sym_attribute_declaration] = STATE(4729), - [sym_gnu_asm_expression] = STATE(8972), - [sym_virtual_specifier] = STATE(4992), - [sym__function_exception_specification] = STATE(3171), - [sym__function_attributes_end] = STATE(4507), - [sym__function_postfix] = STATE(5531), - [sym_trailing_return_type] = STATE(4602), - [sym_noexcept] = STATE(3171), - [sym_throw_specifier] = STATE(3171), - [sym_requires_clause] = STATE(5531), - [aux_sym_type_definition_repeat1] = STATE(4247), - [aux_sym_attributed_declarator_repeat1] = STATE(4729), - [aux_sym__function_postfix_repeat1] = STATE(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6410), - [anon_sym___attribute] = ACTIONS(6412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7544), - [anon_sym_and] = ACTIONS(7544), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7544), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(8164), + [STATE(2433)] = { + [sym__abstract_declarator] = STATE(5244), + [sym_abstract_parenthesized_declarator] = STATE(4825), + [sym_abstract_pointer_declarator] = STATE(4825), + [sym_abstract_function_declarator] = STATE(4825), + [sym_abstract_array_declarator] = STATE(4825), + [sym_type_qualifier] = STATE(2401), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1974), + [sym_abstract_reference_declarator] = STATE(4825), + [sym__function_declarator_seq] = STATE(4934), + [aux_sym__type_definition_type_repeat1] = STATE(2401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_RPAREN] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(7006), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(7295), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(7297), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(7299), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(7014), + [anon_sym_LBRACK] = ACTIONS(7022), + [anon_sym_EQ] = ACTIONS(7341), + [anon_sym_const] = ACTIONS(7024), + [anon_sym_constexpr] = ACTIONS(7014), + [anon_sym_volatile] = ACTIONS(7014), + [anon_sym_restrict] = ACTIONS(7014), + [anon_sym___restrict__] = ACTIONS(7014), + [anon_sym__Atomic] = ACTIONS(7014), + [anon_sym__Noreturn] = ACTIONS(7014), + [anon_sym_noreturn] = ACTIONS(7014), + [anon_sym__Nonnull] = ACTIONS(7014), + [anon_sym_mutable] = ACTIONS(7014), + [anon_sym_constinit] = ACTIONS(7014), + [anon_sym_consteval] = ACTIONS(7014), + [anon_sym_alignas] = ACTIONS(7026), + [anon_sym__Alignas] = ACTIONS(7026), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_STAR_EQ] = ACTIONS(7343), + [anon_sym_SLASH_EQ] = ACTIONS(7343), + [anon_sym_PERCENT_EQ] = ACTIONS(7343), + [anon_sym_PLUS_EQ] = ACTIONS(7343), + [anon_sym_DASH_EQ] = ACTIONS(7343), + [anon_sym_LT_LT_EQ] = ACTIONS(7343), + [anon_sym_GT_GT_EQ] = ACTIONS(7343), + [anon_sym_AMP_EQ] = ACTIONS(7343), + [anon_sym_CARET_EQ] = ACTIONS(7343), + [anon_sym_PIPE_EQ] = ACTIONS(7343), + [anon_sym_and_eq] = ACTIONS(7343), + [anon_sym_or_eq] = ACTIONS(7343), + [anon_sym_xor_eq] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7341), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8174), - [anon_sym_override] = ACTIONS(8174), - [anon_sym_noexcept] = ACTIONS(6426), - [anon_sym_throw] = ACTIONS(6428), - [anon_sym_requires] = ACTIONS(8177), - [anon_sym_DASH_GT_STAR] = ACTIONS(7544), + [anon_sym_DASH_GT_STAR] = ACTIONS(7343), }, - [STATE(2565)] = { - [sym_attribute_specifier] = STATE(4247), - [sym_attribute_declaration] = STATE(4729), - [sym_gnu_asm_expression] = STATE(8972), - [sym_virtual_specifier] = STATE(4992), - [sym__function_exception_specification] = STATE(3233), - [sym__function_attributes_end] = STATE(4510), - [sym__function_postfix] = STATE(5590), - [sym_trailing_return_type] = STATE(4603), - [sym_noexcept] = STATE(3233), - [sym_throw_specifier] = STATE(3233), - [sym_requires_clause] = STATE(5590), - [aux_sym_type_definition_repeat1] = STATE(4247), - [aux_sym_attributed_declarator_repeat1] = STATE(4729), - [aux_sym__function_postfix_repeat1] = STATE(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_RPAREN] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym___attribute__] = ACTIONS(6410), - [anon_sym___attribute] = ACTIONS(6412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7627), - [anon_sym_and] = ACTIONS(7627), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7627), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(8210), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8213), - [anon_sym_override] = ACTIONS(8213), - [anon_sym_noexcept] = ACTIONS(6426), - [anon_sym_throw] = ACTIONS(6428), - [anon_sym_requires] = ACTIONS(8216), - [anon_sym_DASH_GT_STAR] = ACTIONS(7627), + [STATE(2434)] = { + [sym_identifier] = ACTIONS(3128), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), + [anon_sym_COMMA] = ACTIONS(3118), + [anon_sym_LPAREN2] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_SLASH] = ACTIONS(3128), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_PIPE_PIPE] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_CARET] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3128), + [anon_sym_GT_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(3128), + [anon_sym_LT_LT] = ACTIONS(3128), + [anon_sym_GT_GT] = ACTIONS(3128), + [anon_sym___extension__] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_RBRACK] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3128), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_STAR_EQ] = ACTIONS(3118), + [anon_sym_SLASH_EQ] = ACTIONS(3118), + [anon_sym_PERCENT_EQ] = ACTIONS(3118), + [anon_sym_PLUS_EQ] = ACTIONS(3118), + [anon_sym_DASH_EQ] = ACTIONS(3118), + [anon_sym_LT_LT_EQ] = ACTIONS(3118), + [anon_sym_GT_GT_EQ] = ACTIONS(3118), + [anon_sym_AMP_EQ] = ACTIONS(3118), + [anon_sym_CARET_EQ] = ACTIONS(3118), + [anon_sym_PIPE_EQ] = ACTIONS(3118), + [anon_sym_and_eq] = ACTIONS(3128), + [anon_sym_or_eq] = ACTIONS(3128), + [anon_sym_xor_eq] = ACTIONS(3128), + [anon_sym_LT_EQ_GT] = ACTIONS(3118), + [anon_sym_or] = ACTIONS(3128), + [anon_sym_and] = ACTIONS(3128), + [anon_sym_bitor] = ACTIONS(3128), + [anon_sym_xor] = ACTIONS(3128), + [anon_sym_bitand] = ACTIONS(3128), + [anon_sym_not_eq] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_DOT] = ACTIONS(3128), + [anon_sym_DOT_STAR] = ACTIONS(3118), + [anon_sym_DASH_GT] = ACTIONS(3118), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3128), + [anon_sym_override] = ACTIONS(3128), + [anon_sym_requires] = ACTIONS(3128), }, - [STATE(2566)] = { - [sym_argument_list] = STATE(5801), - [sym_initializer_list] = STATE(5650), - [aux_sym_sized_type_specifier_repeat1] = STATE(2123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(8219), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_signed] = ACTIONS(8222), - [anon_sym_unsigned] = ACTIONS(8222), - [anon_sym_long] = ACTIONS(8222), - [anon_sym_short] = ACTIONS(8222), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_RBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), + [STATE(2435)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7083), + [anon_sym_COMMA] = ACTIONS(7083), + [anon_sym_RPAREN] = ACTIONS(7083), + [anon_sym_LPAREN2] = ACTIONS(7083), + [anon_sym_DASH] = ACTIONS(7081), + [anon_sym_PLUS] = ACTIONS(7081), + [anon_sym_STAR] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7081), + [anon_sym_PERCENT] = ACTIONS(7081), + [anon_sym_PIPE_PIPE] = ACTIONS(7083), + [anon_sym_AMP_AMP] = ACTIONS(7083), + [anon_sym_PIPE] = ACTIONS(7081), + [anon_sym_CARET] = ACTIONS(7081), + [anon_sym_AMP] = ACTIONS(7081), + [anon_sym_EQ_EQ] = ACTIONS(7083), + [anon_sym_BANG_EQ] = ACTIONS(7083), + [anon_sym_GT] = ACTIONS(7081), + [anon_sym_GT_EQ] = ACTIONS(7083), + [anon_sym_LT_EQ] = ACTIONS(7081), + [anon_sym_LT] = ACTIONS(7081), + [anon_sym_LT_LT] = ACTIONS(7081), + [anon_sym_GT_GT] = ACTIONS(7081), + [anon_sym___extension__] = ACTIONS(7083), + [anon_sym___attribute__] = ACTIONS(7083), + [anon_sym___attribute] = ACTIONS(7081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7083), + [anon_sym_LBRACK] = ACTIONS(7081), + [anon_sym_EQ] = ACTIONS(7081), + [anon_sym_const] = ACTIONS(7081), + [anon_sym_constexpr] = ACTIONS(7083), + [anon_sym_volatile] = ACTIONS(7083), + [anon_sym_restrict] = ACTIONS(7083), + [anon_sym___restrict__] = ACTIONS(7083), + [anon_sym__Atomic] = ACTIONS(7083), + [anon_sym__Noreturn] = ACTIONS(7083), + [anon_sym_noreturn] = ACTIONS(7083), + [anon_sym__Nonnull] = ACTIONS(7083), + [anon_sym_mutable] = ACTIONS(7083), + [anon_sym_constinit] = ACTIONS(7083), + [anon_sym_consteval] = ACTIONS(7083), + [anon_sym_alignas] = ACTIONS(7083), + [anon_sym__Alignas] = ACTIONS(7083), + [anon_sym_QMARK] = ACTIONS(7083), + [anon_sym_STAR_EQ] = ACTIONS(7083), + [anon_sym_SLASH_EQ] = ACTIONS(7083), + [anon_sym_PERCENT_EQ] = ACTIONS(7083), + [anon_sym_PLUS_EQ] = ACTIONS(7083), + [anon_sym_DASH_EQ] = ACTIONS(7083), + [anon_sym_LT_LT_EQ] = ACTIONS(7083), + [anon_sym_GT_GT_EQ] = ACTIONS(7083), + [anon_sym_AMP_EQ] = ACTIONS(7083), + [anon_sym_CARET_EQ] = ACTIONS(7083), + [anon_sym_PIPE_EQ] = ACTIONS(7083), + [anon_sym_and_eq] = ACTIONS(7083), + [anon_sym_or_eq] = ACTIONS(7083), + [anon_sym_xor_eq] = ACTIONS(7083), + [anon_sym_LT_EQ_GT] = ACTIONS(7083), + [anon_sym_or] = ACTIONS(7081), + [anon_sym_and] = ACTIONS(7081), + [anon_sym_bitor] = ACTIONS(7083), + [anon_sym_xor] = ACTIONS(7081), + [anon_sym_bitand] = ACTIONS(7083), + [anon_sym_not_eq] = ACTIONS(7083), + [anon_sym_DASH_DASH] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7083), + [anon_sym_asm] = ACTIONS(7083), + [anon_sym___asm__] = ACTIONS(7083), + [anon_sym___asm] = ACTIONS(7081), + [anon_sym_DOT] = ACTIONS(7081), + [anon_sym_DOT_STAR] = ACTIONS(7083), + [anon_sym_DASH_GT] = ACTIONS(7081), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7083), + [anon_sym_override] = ACTIONS(7083), + [anon_sym_noexcept] = ACTIONS(7083), + [anon_sym_throw] = ACTIONS(7083), + [anon_sym_requires] = ACTIONS(7083), + [anon_sym_DASH_GT_STAR] = ACTIONS(7083), }, - [STATE(2567)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), - [anon_sym_COMMA] = ACTIONS(6751), - [anon_sym_LPAREN2] = ACTIONS(6751), - [anon_sym_DASH] = ACTIONS(6746), - [anon_sym_PLUS] = ACTIONS(6746), - [anon_sym_STAR] = ACTIONS(6746), - [anon_sym_SLASH] = ACTIONS(6746), - [anon_sym_PERCENT] = ACTIONS(6746), - [anon_sym_PIPE_PIPE] = ACTIONS(6751), - [anon_sym_AMP_AMP] = ACTIONS(6751), - [anon_sym_PIPE] = ACTIONS(6746), - [anon_sym_CARET] = ACTIONS(6746), - [anon_sym_AMP] = ACTIONS(6746), - [anon_sym_EQ_EQ] = ACTIONS(6751), - [anon_sym_BANG_EQ] = ACTIONS(6751), - [anon_sym_GT] = ACTIONS(6746), - [anon_sym_GT_EQ] = ACTIONS(6746), - [anon_sym_LT_EQ] = ACTIONS(6746), - [anon_sym_LT] = ACTIONS(6746), - [anon_sym_LT_LT] = ACTIONS(6746), - [anon_sym_GT_GT] = ACTIONS(6746), - [anon_sym___extension__] = ACTIONS(6751), - [anon_sym___attribute__] = ACTIONS(6751), - [anon_sym___attribute] = ACTIONS(6746), - [anon_sym_COLON] = ACTIONS(6746), - [anon_sym_COLON_COLON] = ACTIONS(6751), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_LBRACK] = ACTIONS(6751), - [anon_sym_EQ] = ACTIONS(6746), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6751), - [anon_sym_volatile] = ACTIONS(6751), - [anon_sym_restrict] = ACTIONS(6751), - [anon_sym___restrict__] = ACTIONS(6751), - [anon_sym__Atomic] = ACTIONS(6751), - [anon_sym__Noreturn] = ACTIONS(6751), - [anon_sym_noreturn] = ACTIONS(6751), - [anon_sym__Nonnull] = ACTIONS(6751), - [anon_sym_mutable] = ACTIONS(6751), - [anon_sym_constinit] = ACTIONS(6751), - [anon_sym_consteval] = ACTIONS(6751), - [anon_sym_alignas] = ACTIONS(6751), - [anon_sym__Alignas] = ACTIONS(6751), - [anon_sym_QMARK] = ACTIONS(6751), - [anon_sym_STAR_EQ] = ACTIONS(6751), - [anon_sym_SLASH_EQ] = ACTIONS(6751), - [anon_sym_PERCENT_EQ] = ACTIONS(6751), - [anon_sym_PLUS_EQ] = ACTIONS(6751), - [anon_sym_DASH_EQ] = ACTIONS(6751), - [anon_sym_LT_LT_EQ] = ACTIONS(6751), - [anon_sym_GT_GT_EQ] = ACTIONS(6746), - [anon_sym_AMP_EQ] = ACTIONS(6751), - [anon_sym_CARET_EQ] = ACTIONS(6751), - [anon_sym_PIPE_EQ] = ACTIONS(6751), - [anon_sym_and_eq] = ACTIONS(6751), - [anon_sym_or_eq] = ACTIONS(6751), - [anon_sym_xor_eq] = ACTIONS(6751), - [anon_sym_LT_EQ_GT] = ACTIONS(6751), - [anon_sym_or] = ACTIONS(6746), - [anon_sym_and] = ACTIONS(6746), - [anon_sym_bitor] = ACTIONS(6751), - [anon_sym_xor] = ACTIONS(6746), - [anon_sym_bitand] = ACTIONS(6751), - [anon_sym_not_eq] = ACTIONS(6751), - [anon_sym_DASH_DASH] = ACTIONS(6751), - [anon_sym_PLUS_PLUS] = ACTIONS(6751), - [anon_sym_DOT] = ACTIONS(6746), - [anon_sym_DOT_STAR] = ACTIONS(6751), - [anon_sym_DASH_GT] = ACTIONS(6751), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6751), - [anon_sym_override] = ACTIONS(6751), - [anon_sym_GT2] = ACTIONS(6751), - [anon_sym_requires] = ACTIONS(6751), + [STATE(2436)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7699), + [anon_sym_COMMA] = ACTIONS(7699), + [anon_sym_LPAREN2] = ACTIONS(7699), + [anon_sym_DASH] = ACTIONS(7697), + [anon_sym_PLUS] = ACTIONS(7697), + [anon_sym_STAR] = ACTIONS(7697), + [anon_sym_SLASH] = ACTIONS(7697), + [anon_sym_PERCENT] = ACTIONS(7697), + [anon_sym_PIPE_PIPE] = ACTIONS(7699), + [anon_sym_AMP_AMP] = ACTIONS(7699), + [anon_sym_PIPE] = ACTIONS(7697), + [anon_sym_CARET] = ACTIONS(7697), + [anon_sym_AMP] = ACTIONS(7697), + [anon_sym_EQ_EQ] = ACTIONS(7699), + [anon_sym_BANG_EQ] = ACTIONS(7699), + [anon_sym_GT] = ACTIONS(7697), + [anon_sym_GT_EQ] = ACTIONS(7697), + [anon_sym_LT_EQ] = ACTIONS(7697), + [anon_sym_LT] = ACTIONS(7697), + [anon_sym_LT_LT] = ACTIONS(7697), + [anon_sym_GT_GT] = ACTIONS(7697), + [anon_sym___extension__] = ACTIONS(7699), + [anon_sym___attribute__] = ACTIONS(7699), + [anon_sym___attribute] = ACTIONS(7697), + [anon_sym_LBRACE] = ACTIONS(7699), + [anon_sym_signed] = ACTIONS(8226), + [anon_sym_unsigned] = ACTIONS(8226), + [anon_sym_long] = ACTIONS(8226), + [anon_sym_short] = ACTIONS(8226), + [anon_sym_LBRACK] = ACTIONS(7699), + [anon_sym_EQ] = ACTIONS(7697), + [anon_sym_const] = ACTIONS(7697), + [anon_sym_constexpr] = ACTIONS(7699), + [anon_sym_volatile] = ACTIONS(7699), + [anon_sym_restrict] = ACTIONS(7699), + [anon_sym___restrict__] = ACTIONS(7699), + [anon_sym__Atomic] = ACTIONS(7699), + [anon_sym__Noreturn] = ACTIONS(7699), + [anon_sym_noreturn] = ACTIONS(7699), + [anon_sym__Nonnull] = ACTIONS(7699), + [anon_sym_mutable] = ACTIONS(7699), + [anon_sym_constinit] = ACTIONS(7699), + [anon_sym_consteval] = ACTIONS(7699), + [anon_sym_alignas] = ACTIONS(7699), + [anon_sym__Alignas] = ACTIONS(7699), + [anon_sym_QMARK] = ACTIONS(7699), + [anon_sym_STAR_EQ] = ACTIONS(7699), + [anon_sym_SLASH_EQ] = ACTIONS(7699), + [anon_sym_PERCENT_EQ] = ACTIONS(7699), + [anon_sym_PLUS_EQ] = ACTIONS(7699), + [anon_sym_DASH_EQ] = ACTIONS(7699), + [anon_sym_LT_LT_EQ] = ACTIONS(7699), + [anon_sym_GT_GT_EQ] = ACTIONS(7697), + [anon_sym_AMP_EQ] = ACTIONS(7699), + [anon_sym_CARET_EQ] = ACTIONS(7699), + [anon_sym_PIPE_EQ] = ACTIONS(7699), + [anon_sym_and_eq] = ACTIONS(7699), + [anon_sym_or_eq] = ACTIONS(7699), + [anon_sym_xor_eq] = ACTIONS(7699), + [anon_sym_LT_EQ_GT] = ACTIONS(7699), + [anon_sym_or] = ACTIONS(7697), + [anon_sym_and] = ACTIONS(7697), + [anon_sym_bitor] = ACTIONS(7699), + [anon_sym_xor] = ACTIONS(7697), + [anon_sym_bitand] = ACTIONS(7699), + [anon_sym_not_eq] = ACTIONS(7699), + [anon_sym_DASH_DASH] = ACTIONS(7699), + [anon_sym_PLUS_PLUS] = ACTIONS(7699), + [anon_sym_DOT] = ACTIONS(7697), + [anon_sym_DOT_STAR] = ACTIONS(7699), + [anon_sym_DASH_GT] = ACTIONS(7699), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7699), + [anon_sym_override] = ACTIONS(7699), + [anon_sym_GT2] = ACTIONS(7699), + [anon_sym_requires] = ACTIONS(7699), }, - [STATE(2568)] = { - [sym_decltype_auto] = STATE(2967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6798), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8156), - [anon_sym_decltype] = ACTIONS(6574), - [anon_sym_final] = ACTIONS(6800), - [anon_sym_override] = ACTIONS(6800), - [anon_sym_requires] = ACTIONS(6800), - [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + [STATE(2437)] = { + [sym__declaration_modifiers] = STATE(5072), + [sym_attribute_specifier] = STATE(5072), + [sym_attribute_declaration] = STATE(5072), + [sym_ms_declspec_modifier] = STATE(5072), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8790), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(5072), + [sym_type_qualifier] = STATE(5072), + [sym_alignas_qualifier] = STATE(4722), + [sym_decltype] = STATE(10768), + [sym_explicit_function_specifier] = STATE(5072), + [sym_operator_cast] = STATE(9243), + [sym__constructor_specifiers] = STATE(5072), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7901), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_operator_cast_identifier] = STATE(9243), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_operator_cast_definition_repeat1] = STATE(5072), + [sym_identifier] = ACTIONS(8228), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(8230), + [anon_sym_virtual] = ACTIONS(8232), + [anon_sym_extern] = ACTIONS(8234), + [anon_sym___attribute__] = ACTIONS(8236), + [anon_sym___attribute] = ACTIONS(8236), + [anon_sym_COLON_COLON] = ACTIONS(8238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8240), + [anon_sym___declspec] = ACTIONS(8242), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(8234), + [anon_sym_register] = ACTIONS(8234), + [anon_sym_inline] = ACTIONS(8234), + [anon_sym___inline] = ACTIONS(8234), + [anon_sym___inline__] = ACTIONS(8234), + [anon_sym___forceinline] = ACTIONS(8234), + [anon_sym_thread_local] = ACTIONS(8234), + [anon_sym___thread] = ACTIONS(8234), + [anon_sym_const] = ACTIONS(8230), + [anon_sym_constexpr] = ACTIONS(8230), + [anon_sym_volatile] = ACTIONS(8230), + [anon_sym_restrict] = ACTIONS(8230), + [anon_sym___restrict__] = ACTIONS(8230), + [anon_sym__Atomic] = ACTIONS(8230), + [anon_sym__Noreturn] = ACTIONS(8230), + [anon_sym_noreturn] = ACTIONS(8230), + [anon_sym__Nonnull] = ACTIONS(8230), + [anon_sym_mutable] = ACTIONS(8230), + [anon_sym_constinit] = ACTIONS(8230), + [anon_sym_consteval] = ACTIONS(8230), + [anon_sym_alignas] = ACTIONS(8244), + [anon_sym__Alignas] = ACTIONS(8244), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), }, - [STATE(2569)] = { - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6340), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(5572), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), + [STATE(2438)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2725), + [sym_ms_pointer_modifier] = STATE(2438), + [aux_sym_pointer_declarator_repeat1] = STATE(2438), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6944), + [anon_sym_COMMA] = ACTIONS(6944), + [anon_sym_LPAREN2] = ACTIONS(6944), + [anon_sym_DASH] = ACTIONS(6942), + [anon_sym_PLUS] = ACTIONS(6942), + [anon_sym_STAR] = ACTIONS(6942), + [anon_sym_SLASH] = ACTIONS(6942), + [anon_sym_PERCENT] = ACTIONS(6942), + [anon_sym_PIPE_PIPE] = ACTIONS(6944), + [anon_sym_AMP_AMP] = ACTIONS(6944), + [anon_sym_PIPE] = ACTIONS(6942), + [anon_sym_CARET] = ACTIONS(6942), + [anon_sym_AMP] = ACTIONS(6942), + [anon_sym_EQ_EQ] = ACTIONS(6944), + [anon_sym_BANG_EQ] = ACTIONS(6944), + [anon_sym_GT] = ACTIONS(6942), + [anon_sym_GT_EQ] = ACTIONS(6942), + [anon_sym_LT_EQ] = ACTIONS(6942), + [anon_sym_LT] = ACTIONS(6942), + [anon_sym_LT_LT] = ACTIONS(6942), + [anon_sym_GT_GT] = ACTIONS(6942), + [anon_sym___extension__] = ACTIONS(6944), + [sym_ms_restrict_modifier] = ACTIONS(8246), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8249), + [sym_ms_signed_ptr_modifier] = ACTIONS(8249), + [anon_sym__unaligned] = ACTIONS(8252), + [anon_sym___unaligned] = ACTIONS(8252), + [anon_sym_LBRACK] = ACTIONS(6944), + [anon_sym_EQ] = ACTIONS(6942), + [anon_sym_const] = ACTIONS(6942), + [anon_sym_constexpr] = ACTIONS(6944), + [anon_sym_volatile] = ACTIONS(6944), + [anon_sym_restrict] = ACTIONS(6944), + [anon_sym___restrict__] = ACTIONS(6944), + [anon_sym__Atomic] = ACTIONS(6944), + [anon_sym__Noreturn] = ACTIONS(6944), + [anon_sym_noreturn] = ACTIONS(6944), + [anon_sym__Nonnull] = ACTIONS(6944), + [anon_sym_mutable] = ACTIONS(6944), + [anon_sym_constinit] = ACTIONS(6944), + [anon_sym_consteval] = ACTIONS(6944), + [anon_sym_alignas] = ACTIONS(6944), + [anon_sym__Alignas] = ACTIONS(6944), + [anon_sym_QMARK] = ACTIONS(6944), + [anon_sym_STAR_EQ] = ACTIONS(6944), + [anon_sym_SLASH_EQ] = ACTIONS(6944), + [anon_sym_PERCENT_EQ] = ACTIONS(6944), + [anon_sym_PLUS_EQ] = ACTIONS(6944), + [anon_sym_DASH_EQ] = ACTIONS(6944), + [anon_sym_LT_LT_EQ] = ACTIONS(6944), + [anon_sym_GT_GT_EQ] = ACTIONS(6942), + [anon_sym_AMP_EQ] = ACTIONS(6944), + [anon_sym_CARET_EQ] = ACTIONS(6944), + [anon_sym_PIPE_EQ] = ACTIONS(6944), + [anon_sym_and_eq] = ACTIONS(6944), + [anon_sym_or_eq] = ACTIONS(6944), + [anon_sym_xor_eq] = ACTIONS(6944), + [anon_sym_LT_EQ_GT] = ACTIONS(6944), + [anon_sym_or] = ACTIONS(6942), + [anon_sym_and] = ACTIONS(6942), + [anon_sym_bitor] = ACTIONS(6944), + [anon_sym_xor] = ACTIONS(6942), + [anon_sym_bitand] = ACTIONS(6944), + [anon_sym_not_eq] = ACTIONS(6944), + [anon_sym_DASH_DASH] = ACTIONS(6944), + [anon_sym_PLUS_PLUS] = ACTIONS(6944), + [anon_sym_DOT] = ACTIONS(6942), + [anon_sym_DOT_STAR] = ACTIONS(6944), + [anon_sym_DASH_GT] = ACTIONS(6944), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6944), + [anon_sym_override] = ACTIONS(6944), + [anon_sym_GT2] = ACTIONS(6944), + [anon_sym_requires] = ACTIONS(6944), + }, + [STATE(2439)] = { + [sym_template_argument_list] = STATE(2594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6572), + [anon_sym_COMMA] = ACTIONS(6572), + [anon_sym_LPAREN2] = ACTIONS(6572), + [anon_sym_DASH] = ACTIONS(6565), + [anon_sym_PLUS] = ACTIONS(6565), + [anon_sym_STAR] = ACTIONS(6565), + [anon_sym_SLASH] = ACTIONS(6565), + [anon_sym_PERCENT] = ACTIONS(6565), + [anon_sym_PIPE_PIPE] = ACTIONS(6572), + [anon_sym_AMP_AMP] = ACTIONS(6572), + [anon_sym_PIPE] = ACTIONS(6565), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym_AMP] = ACTIONS(6565), + [anon_sym_EQ_EQ] = ACTIONS(6572), + [anon_sym_BANG_EQ] = ACTIONS(6572), + [anon_sym_GT] = ACTIONS(6565), + [anon_sym_GT_EQ] = ACTIONS(6565), + [anon_sym_LT_EQ] = ACTIONS(6565), + [anon_sym_LT] = ACTIONS(8255), + [anon_sym_LT_LT] = ACTIONS(6565), + [anon_sym_GT_GT] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(6572), + [anon_sym___attribute__] = ACTIONS(6572), + [anon_sym___attribute] = ACTIONS(6565), + [anon_sym_COLON] = ACTIONS(6565), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(6572), + [anon_sym_LBRACK] = ACTIONS(6572), + [anon_sym_EQ] = ACTIONS(6565), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_constexpr] = ACTIONS(6572), + [anon_sym_volatile] = ACTIONS(6572), + [anon_sym_restrict] = ACTIONS(6572), + [anon_sym___restrict__] = ACTIONS(6572), + [anon_sym__Atomic] = ACTIONS(6572), + [anon_sym__Noreturn] = ACTIONS(6572), + [anon_sym_noreturn] = ACTIONS(6572), + [anon_sym__Nonnull] = ACTIONS(6572), + [anon_sym_mutable] = ACTIONS(6572), + [anon_sym_constinit] = ACTIONS(6572), + [anon_sym_consteval] = ACTIONS(6572), + [anon_sym_alignas] = ACTIONS(6572), + [anon_sym__Alignas] = ACTIONS(6572), + [anon_sym_QMARK] = ACTIONS(6572), + [anon_sym_STAR_EQ] = ACTIONS(6572), + [anon_sym_SLASH_EQ] = ACTIONS(6572), + [anon_sym_PERCENT_EQ] = ACTIONS(6572), + [anon_sym_PLUS_EQ] = ACTIONS(6572), + [anon_sym_DASH_EQ] = ACTIONS(6572), + [anon_sym_LT_LT_EQ] = ACTIONS(6572), + [anon_sym_GT_GT_EQ] = ACTIONS(6565), + [anon_sym_AMP_EQ] = ACTIONS(6572), + [anon_sym_CARET_EQ] = ACTIONS(6572), + [anon_sym_PIPE_EQ] = ACTIONS(6572), + [anon_sym_and_eq] = ACTIONS(6572), + [anon_sym_or_eq] = ACTIONS(6572), + [anon_sym_xor_eq] = ACTIONS(6572), + [anon_sym_LT_EQ_GT] = ACTIONS(6572), + [anon_sym_or] = ACTIONS(6565), + [anon_sym_and] = ACTIONS(6565), + [anon_sym_bitor] = ACTIONS(6572), + [anon_sym_xor] = ACTIONS(6565), + [anon_sym_bitand] = ACTIONS(6572), + [anon_sym_not_eq] = ACTIONS(6572), + [anon_sym_DASH_DASH] = ACTIONS(6572), + [anon_sym_PLUS_PLUS] = ACTIONS(6572), + [anon_sym_DOT] = ACTIONS(6565), + [anon_sym_DOT_STAR] = ACTIONS(6572), + [anon_sym_DASH_GT] = ACTIONS(6572), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_auto] = ACTIONS(6572), + [anon_sym_decltype] = ACTIONS(6572), + [anon_sym_final] = ACTIONS(6572), + [anon_sym_override] = ACTIONS(6572), + [anon_sym_GT2] = ACTIONS(6572), + [anon_sym_requires] = ACTIONS(6572), }, - [STATE(2570)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6764), - [anon_sym_COMMA] = ACTIONS(6764), - [anon_sym_LPAREN2] = ACTIONS(6764), - [anon_sym_DASH] = ACTIONS(6762), - [anon_sym_PLUS] = ACTIONS(6762), - [anon_sym_STAR] = ACTIONS(6762), - [anon_sym_SLASH] = ACTIONS(6762), - [anon_sym_PERCENT] = ACTIONS(6762), - [anon_sym_PIPE_PIPE] = ACTIONS(6764), - [anon_sym_AMP_AMP] = ACTIONS(6764), - [anon_sym_PIPE] = ACTIONS(6762), - [anon_sym_CARET] = ACTIONS(6762), - [anon_sym_AMP] = ACTIONS(6762), - [anon_sym_EQ_EQ] = ACTIONS(6764), - [anon_sym_BANG_EQ] = ACTIONS(6764), - [anon_sym_GT] = ACTIONS(6762), - [anon_sym_GT_EQ] = ACTIONS(6762), - [anon_sym_LT_EQ] = ACTIONS(6762), - [anon_sym_LT] = ACTIONS(6762), - [anon_sym_LT_LT] = ACTIONS(6762), - [anon_sym_GT_GT] = ACTIONS(6762), - [anon_sym___extension__] = ACTIONS(6764), - [anon_sym___attribute__] = ACTIONS(6764), - [anon_sym___attribute] = ACTIONS(6762), - [anon_sym_COLON] = ACTIONS(6762), - [anon_sym_COLON_COLON] = ACTIONS(6764), - [anon_sym_LBRACE] = ACTIONS(6764), - [anon_sym_LBRACK] = ACTIONS(6764), - [anon_sym_EQ] = ACTIONS(6762), - [anon_sym_const] = ACTIONS(6762), - [anon_sym_constexpr] = ACTIONS(6764), - [anon_sym_volatile] = ACTIONS(6764), - [anon_sym_restrict] = ACTIONS(6764), - [anon_sym___restrict__] = ACTIONS(6764), - [anon_sym__Atomic] = ACTIONS(6764), - [anon_sym__Noreturn] = ACTIONS(6764), - [anon_sym_noreturn] = ACTIONS(6764), - [anon_sym__Nonnull] = ACTIONS(6764), - [anon_sym_mutable] = ACTIONS(6764), - [anon_sym_constinit] = ACTIONS(6764), - [anon_sym_consteval] = ACTIONS(6764), - [anon_sym_alignas] = ACTIONS(6764), - [anon_sym__Alignas] = ACTIONS(6764), - [anon_sym_QMARK] = ACTIONS(6764), - [anon_sym_STAR_EQ] = ACTIONS(6764), - [anon_sym_SLASH_EQ] = ACTIONS(6764), - [anon_sym_PERCENT_EQ] = ACTIONS(6764), - [anon_sym_PLUS_EQ] = ACTIONS(6764), - [anon_sym_DASH_EQ] = ACTIONS(6764), - [anon_sym_LT_LT_EQ] = ACTIONS(6764), - [anon_sym_GT_GT_EQ] = ACTIONS(6762), - [anon_sym_AMP_EQ] = ACTIONS(6764), - [anon_sym_CARET_EQ] = ACTIONS(6764), - [anon_sym_PIPE_EQ] = ACTIONS(6764), - [anon_sym_and_eq] = ACTIONS(6764), - [anon_sym_or_eq] = ACTIONS(6764), - [anon_sym_xor_eq] = ACTIONS(6764), - [anon_sym_LT_EQ_GT] = ACTIONS(6764), - [anon_sym_or] = ACTIONS(6762), - [anon_sym_and] = ACTIONS(6762), - [anon_sym_bitor] = ACTIONS(6764), - [anon_sym_xor] = ACTIONS(6762), - [anon_sym_bitand] = ACTIONS(6764), - [anon_sym_not_eq] = ACTIONS(6764), - [anon_sym_DASH_DASH] = ACTIONS(6764), - [anon_sym_PLUS_PLUS] = ACTIONS(6764), - [anon_sym_DOT] = ACTIONS(6762), - [anon_sym_DOT_STAR] = ACTIONS(6764), - [anon_sym_DASH_GT] = ACTIONS(6764), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6764), - [anon_sym_override] = ACTIONS(6764), - [anon_sym_GT2] = ACTIONS(6764), - [anon_sym_requires] = ACTIONS(6764), + [STATE(2440)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7134), + [anon_sym_COMMA] = ACTIONS(7134), + [anon_sym_LPAREN2] = ACTIONS(7134), + [anon_sym_DASH] = ACTIONS(7132), + [anon_sym_PLUS] = ACTIONS(7132), + [anon_sym_STAR] = ACTIONS(7132), + [anon_sym_SLASH] = ACTIONS(7132), + [anon_sym_PERCENT] = ACTIONS(7132), + [anon_sym_PIPE_PIPE] = ACTIONS(7134), + [anon_sym_AMP_AMP] = ACTIONS(7134), + [anon_sym_PIPE] = ACTIONS(7132), + [anon_sym_CARET] = ACTIONS(7132), + [anon_sym_AMP] = ACTIONS(7132), + [anon_sym_EQ_EQ] = ACTIONS(7134), + [anon_sym_BANG_EQ] = ACTIONS(7134), + [anon_sym_GT] = ACTIONS(7132), + [anon_sym_GT_EQ] = ACTIONS(7134), + [anon_sym_LT_EQ] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(7132), + [anon_sym_LT_LT] = ACTIONS(7132), + [anon_sym_GT_GT] = ACTIONS(7132), + [anon_sym___extension__] = ACTIONS(7134), + [anon_sym___attribute__] = ACTIONS(7134), + [anon_sym___attribute] = ACTIONS(7132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7134), + [anon_sym_LBRACK] = ACTIONS(7132), + [anon_sym_RBRACK] = ACTIONS(7134), + [anon_sym_EQ] = ACTIONS(7132), + [anon_sym_const] = ACTIONS(7132), + [anon_sym_constexpr] = ACTIONS(7134), + [anon_sym_volatile] = ACTIONS(7134), + [anon_sym_restrict] = ACTIONS(7134), + [anon_sym___restrict__] = ACTIONS(7134), + [anon_sym__Atomic] = ACTIONS(7134), + [anon_sym__Noreturn] = ACTIONS(7134), + [anon_sym_noreturn] = ACTIONS(7134), + [anon_sym__Nonnull] = ACTIONS(7134), + [anon_sym_mutable] = ACTIONS(7134), + [anon_sym_constinit] = ACTIONS(7134), + [anon_sym_consteval] = ACTIONS(7134), + [anon_sym_alignas] = ACTIONS(7134), + [anon_sym__Alignas] = ACTIONS(7134), + [anon_sym_QMARK] = ACTIONS(7134), + [anon_sym_STAR_EQ] = ACTIONS(7134), + [anon_sym_SLASH_EQ] = ACTIONS(7134), + [anon_sym_PERCENT_EQ] = ACTIONS(7134), + [anon_sym_PLUS_EQ] = ACTIONS(7134), + [anon_sym_DASH_EQ] = ACTIONS(7134), + [anon_sym_LT_LT_EQ] = ACTIONS(7134), + [anon_sym_GT_GT_EQ] = ACTIONS(7134), + [anon_sym_AMP_EQ] = ACTIONS(7134), + [anon_sym_CARET_EQ] = ACTIONS(7134), + [anon_sym_PIPE_EQ] = ACTIONS(7134), + [anon_sym_and_eq] = ACTIONS(7134), + [anon_sym_or_eq] = ACTIONS(7134), + [anon_sym_xor_eq] = ACTIONS(7134), + [anon_sym_LT_EQ_GT] = ACTIONS(7134), + [anon_sym_or] = ACTIONS(7132), + [anon_sym_and] = ACTIONS(7132), + [anon_sym_bitor] = ACTIONS(7134), + [anon_sym_xor] = ACTIONS(7132), + [anon_sym_bitand] = ACTIONS(7134), + [anon_sym_not_eq] = ACTIONS(7134), + [anon_sym_DASH_DASH] = ACTIONS(7134), + [anon_sym_PLUS_PLUS] = ACTIONS(7134), + [anon_sym_asm] = ACTIONS(7134), + [anon_sym___asm__] = ACTIONS(7134), + [anon_sym___asm] = ACTIONS(7132), + [anon_sym_DOT] = ACTIONS(7132), + [anon_sym_DOT_STAR] = ACTIONS(7134), + [anon_sym_DASH_GT] = ACTIONS(7134), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7134), + [anon_sym_override] = ACTIONS(7134), + [anon_sym_noexcept] = ACTIONS(7134), + [anon_sym_throw] = ACTIONS(7134), + [anon_sym_requires] = ACTIONS(7134), }, - [STATE(2571)] = { - [sym_identifier] = ACTIONS(6794), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6796), - [anon_sym_COMMA] = ACTIONS(6796), - [anon_sym_RPAREN] = ACTIONS(6796), - [aux_sym_preproc_if_token2] = ACTIONS(6796), - [aux_sym_preproc_else_token1] = ACTIONS(6796), - [aux_sym_preproc_elif_token1] = ACTIONS(6794), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6796), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6796), - [anon_sym_LPAREN2] = ACTIONS(6796), - [anon_sym_DASH] = ACTIONS(6794), - [anon_sym_PLUS] = ACTIONS(6794), - [anon_sym_STAR] = ACTIONS(6796), - [anon_sym_SLASH] = ACTIONS(6794), - [anon_sym_PERCENT] = ACTIONS(6796), - [anon_sym_PIPE_PIPE] = ACTIONS(6796), - [anon_sym_AMP_AMP] = ACTIONS(6796), - [anon_sym_PIPE] = ACTIONS(6794), - [anon_sym_CARET] = ACTIONS(6796), - [anon_sym_AMP] = ACTIONS(6794), - [anon_sym_EQ_EQ] = ACTIONS(6796), - [anon_sym_BANG_EQ] = ACTIONS(6796), - [anon_sym_GT] = ACTIONS(6794), - [anon_sym_GT_EQ] = ACTIONS(6796), - [anon_sym_LT_EQ] = ACTIONS(6794), - [anon_sym_LT] = ACTIONS(6794), - [anon_sym_LT_LT] = ACTIONS(6796), - [anon_sym_GT_GT] = ACTIONS(6796), - [anon_sym_SEMI] = ACTIONS(6796), - [anon_sym___extension__] = ACTIONS(6794), - [anon_sym___attribute__] = ACTIONS(6794), - [anon_sym___attribute] = ACTIONS(6794), - [anon_sym_COLON] = ACTIONS(6794), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6796), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6796), - [anon_sym_RBRACE] = ACTIONS(6796), - [anon_sym_LBRACK] = ACTIONS(6794), - [anon_sym_const] = ACTIONS(6794), - [anon_sym_constexpr] = ACTIONS(6794), - [anon_sym_volatile] = ACTIONS(6794), - [anon_sym_restrict] = ACTIONS(6794), - [anon_sym___restrict__] = ACTIONS(6794), - [anon_sym__Atomic] = ACTIONS(6794), - [anon_sym__Noreturn] = ACTIONS(6794), - [anon_sym_noreturn] = ACTIONS(6794), - [anon_sym__Nonnull] = ACTIONS(6794), - [anon_sym_mutable] = ACTIONS(6794), - [anon_sym_constinit] = ACTIONS(6794), - [anon_sym_consteval] = ACTIONS(6794), - [anon_sym_alignas] = ACTIONS(6794), - [anon_sym__Alignas] = ACTIONS(6794), - [anon_sym_QMARK] = ACTIONS(6796), - [anon_sym_LT_EQ_GT] = ACTIONS(6796), - [anon_sym_or] = ACTIONS(6794), - [anon_sym_and] = ACTIONS(6794), - [anon_sym_bitor] = ACTIONS(6794), - [anon_sym_xor] = ACTIONS(6794), - [anon_sym_bitand] = ACTIONS(6794), - [anon_sym_not_eq] = ACTIONS(6794), - [anon_sym_DASH_DASH] = ACTIONS(6796), - [anon_sym_PLUS_PLUS] = ACTIONS(6796), - [anon_sym_asm] = ACTIONS(6794), - [anon_sym___asm__] = ACTIONS(6794), - [anon_sym___asm] = ACTIONS(6794), - [anon_sym_DOT] = ACTIONS(6794), - [anon_sym_DOT_STAR] = ACTIONS(6796), - [anon_sym_DASH_GT] = ACTIONS(6796), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6794), - [anon_sym_override] = ACTIONS(6794), - [anon_sym_noexcept] = ACTIONS(6794), - [anon_sym_throw] = ACTIONS(6794), - [anon_sym_requires] = ACTIONS(6794), - [anon_sym_COLON_RBRACK] = ACTIONS(6796), + [STATE(2441)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6610), + [anon_sym_COMMA] = ACTIONS(6610), + [anon_sym_RPAREN] = ACTIONS(6610), + [anon_sym_LPAREN2] = ACTIONS(6610), + [anon_sym_DASH] = ACTIONS(6608), + [anon_sym_PLUS] = ACTIONS(6608), + [anon_sym_STAR] = ACTIONS(6608), + [anon_sym_SLASH] = ACTIONS(6608), + [anon_sym_PERCENT] = ACTIONS(6608), + [anon_sym_PIPE_PIPE] = ACTIONS(6610), + [anon_sym_AMP_AMP] = ACTIONS(6610), + [anon_sym_PIPE] = ACTIONS(6608), + [anon_sym_CARET] = ACTIONS(6608), + [anon_sym_AMP] = ACTIONS(6608), + [anon_sym_EQ_EQ] = ACTIONS(6610), + [anon_sym_BANG_EQ] = ACTIONS(6610), + [anon_sym_GT] = ACTIONS(6608), + [anon_sym_GT_EQ] = ACTIONS(6610), + [anon_sym_LT_EQ] = ACTIONS(6608), + [anon_sym_LT] = ACTIONS(6608), + [anon_sym_LT_LT] = ACTIONS(6608), + [anon_sym_GT_GT] = ACTIONS(6608), + [anon_sym___extension__] = ACTIONS(6610), + [anon_sym___attribute__] = ACTIONS(6610), + [anon_sym___attribute] = ACTIONS(6608), + [anon_sym_COLON] = ACTIONS(6608), + [anon_sym_COLON_COLON] = ACTIONS(6610), + [anon_sym_LBRACE] = ACTIONS(6610), + [anon_sym_LBRACK] = ACTIONS(6610), + [anon_sym_EQ] = ACTIONS(6608), + [anon_sym_const] = ACTIONS(6608), + [anon_sym_constexpr] = ACTIONS(6610), + [anon_sym_volatile] = ACTIONS(6610), + [anon_sym_restrict] = ACTIONS(6610), + [anon_sym___restrict__] = ACTIONS(6610), + [anon_sym__Atomic] = ACTIONS(6610), + [anon_sym__Noreturn] = ACTIONS(6610), + [anon_sym_noreturn] = ACTIONS(6610), + [anon_sym__Nonnull] = ACTIONS(6610), + [anon_sym_mutable] = ACTIONS(6610), + [anon_sym_constinit] = ACTIONS(6610), + [anon_sym_consteval] = ACTIONS(6610), + [anon_sym_alignas] = ACTIONS(6610), + [anon_sym__Alignas] = ACTIONS(6610), + [anon_sym_QMARK] = ACTIONS(6610), + [anon_sym_STAR_EQ] = ACTIONS(6610), + [anon_sym_SLASH_EQ] = ACTIONS(6610), + [anon_sym_PERCENT_EQ] = ACTIONS(6610), + [anon_sym_PLUS_EQ] = ACTIONS(6610), + [anon_sym_DASH_EQ] = ACTIONS(6610), + [anon_sym_LT_LT_EQ] = ACTIONS(6610), + [anon_sym_GT_GT_EQ] = ACTIONS(6610), + [anon_sym_AMP_EQ] = ACTIONS(6610), + [anon_sym_CARET_EQ] = ACTIONS(6610), + [anon_sym_PIPE_EQ] = ACTIONS(6610), + [anon_sym_and_eq] = ACTIONS(6610), + [anon_sym_or_eq] = ACTIONS(6610), + [anon_sym_xor_eq] = ACTIONS(6610), + [anon_sym_LT_EQ_GT] = ACTIONS(6610), + [anon_sym_or] = ACTIONS(6608), + [anon_sym_and] = ACTIONS(6608), + [anon_sym_bitor] = ACTIONS(6610), + [anon_sym_xor] = ACTIONS(6608), + [anon_sym_bitand] = ACTIONS(6610), + [anon_sym_not_eq] = ACTIONS(6610), + [anon_sym_DASH_DASH] = ACTIONS(6610), + [anon_sym_PLUS_PLUS] = ACTIONS(6610), + [anon_sym_DOT] = ACTIONS(6608), + [anon_sym_DOT_STAR] = ACTIONS(6610), + [anon_sym_DASH_GT] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6610), + [anon_sym_decltype] = ACTIONS(6610), + [anon_sym_final] = ACTIONS(6610), + [anon_sym_override] = ACTIONS(6610), + [anon_sym_requires] = ACTIONS(6610), + [anon_sym_DASH_GT_STAR] = ACTIONS(6610), }, - [STATE(2572)] = { - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(7426), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(5572), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [STATE(2442)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6618), + [anon_sym_COMMA] = ACTIONS(6618), + [anon_sym_RPAREN] = ACTIONS(6618), + [anon_sym_LPAREN2] = ACTIONS(6618), + [anon_sym_DASH] = ACTIONS(6616), + [anon_sym_PLUS] = ACTIONS(6616), + [anon_sym_STAR] = ACTIONS(6616), + [anon_sym_SLASH] = ACTIONS(6616), + [anon_sym_PERCENT] = ACTIONS(6616), + [anon_sym_PIPE_PIPE] = ACTIONS(6618), + [anon_sym_AMP_AMP] = ACTIONS(6618), + [anon_sym_PIPE] = ACTIONS(6616), + [anon_sym_CARET] = ACTIONS(6616), + [anon_sym_AMP] = ACTIONS(6616), + [anon_sym_EQ_EQ] = ACTIONS(6618), + [anon_sym_BANG_EQ] = ACTIONS(6618), + [anon_sym_GT] = ACTIONS(6616), + [anon_sym_GT_EQ] = ACTIONS(6618), + [anon_sym_LT_EQ] = ACTIONS(6616), + [anon_sym_LT] = ACTIONS(6616), + [anon_sym_LT_LT] = ACTIONS(6616), + [anon_sym_GT_GT] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(6618), + [anon_sym___attribute__] = ACTIONS(6618), + [anon_sym___attribute] = ACTIONS(6616), + [anon_sym_COLON] = ACTIONS(6616), + [anon_sym_COLON_COLON] = ACTIONS(6618), + [anon_sym_LBRACE] = ACTIONS(6618), + [anon_sym_LBRACK] = ACTIONS(6618), + [anon_sym_EQ] = ACTIONS(6616), + [anon_sym_const] = ACTIONS(6616), + [anon_sym_constexpr] = ACTIONS(6618), + [anon_sym_volatile] = ACTIONS(6618), + [anon_sym_restrict] = ACTIONS(6618), + [anon_sym___restrict__] = ACTIONS(6618), + [anon_sym__Atomic] = ACTIONS(6618), + [anon_sym__Noreturn] = ACTIONS(6618), + [anon_sym_noreturn] = ACTIONS(6618), + [anon_sym__Nonnull] = ACTIONS(6618), + [anon_sym_mutable] = ACTIONS(6618), + [anon_sym_constinit] = ACTIONS(6618), + [anon_sym_consteval] = ACTIONS(6618), + [anon_sym_alignas] = ACTIONS(6618), + [anon_sym__Alignas] = ACTIONS(6618), + [anon_sym_QMARK] = ACTIONS(6618), + [anon_sym_STAR_EQ] = ACTIONS(6618), + [anon_sym_SLASH_EQ] = ACTIONS(6618), + [anon_sym_PERCENT_EQ] = ACTIONS(6618), + [anon_sym_PLUS_EQ] = ACTIONS(6618), + [anon_sym_DASH_EQ] = ACTIONS(6618), + [anon_sym_LT_LT_EQ] = ACTIONS(6618), + [anon_sym_GT_GT_EQ] = ACTIONS(6618), + [anon_sym_AMP_EQ] = ACTIONS(6618), + [anon_sym_CARET_EQ] = ACTIONS(6618), + [anon_sym_PIPE_EQ] = ACTIONS(6618), + [anon_sym_and_eq] = ACTIONS(6618), + [anon_sym_or_eq] = ACTIONS(6618), + [anon_sym_xor_eq] = ACTIONS(6618), + [anon_sym_LT_EQ_GT] = ACTIONS(6618), + [anon_sym_or] = ACTIONS(6616), + [anon_sym_and] = ACTIONS(6616), + [anon_sym_bitor] = ACTIONS(6618), + [anon_sym_xor] = ACTIONS(6616), + [anon_sym_bitand] = ACTIONS(6618), + [anon_sym_not_eq] = ACTIONS(6618), + [anon_sym_DASH_DASH] = ACTIONS(6618), + [anon_sym_PLUS_PLUS] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(6616), + [anon_sym_DOT_STAR] = ACTIONS(6618), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6618), + [anon_sym_decltype] = ACTIONS(6618), + [anon_sym_final] = ACTIONS(6618), + [anon_sym_override] = ACTIONS(6618), + [anon_sym_requires] = ACTIONS(6618), + [anon_sym_DASH_GT_STAR] = ACTIONS(6618), }, - [STATE(2573)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(4192), - [sym_ms_pointer_modifier] = STATE(3909), - [sym__abstract_declarator] = STATE(6378), - [sym_abstract_parenthesized_declarator] = STATE(6488), - [sym_abstract_pointer_declarator] = STATE(6488), - [sym_abstract_function_declarator] = STATE(6488), - [sym_abstract_array_declarator] = STATE(6488), - [sym_type_qualifier] = STATE(3632), - [sym_alignas_qualifier] = STATE(3785), - [sym_parameter_list] = STATE(2153), - [sym_abstract_reference_declarator] = STATE(6488), - [sym__function_declarator_seq] = STATE(6497), - [aux_sym__type_definition_type_repeat1] = STATE(3632), - [aux_sym_pointer_declarator_repeat1] = STATE(3909), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(8224), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(8226), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6497), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(8228), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6497), - [anon_sym_AMP] = ACTIONS(8230), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6495), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6497), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym___extension__] = ACTIONS(8232), - [sym_ms_restrict_modifier] = ACTIONS(8234), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8236), - [sym_ms_signed_ptr_modifier] = ACTIONS(8236), - [anon_sym__unaligned] = ACTIONS(8238), - [anon_sym___unaligned] = ACTIONS(8238), - [anon_sym_LBRACK] = ACTIONS(8240), - [anon_sym_const] = ACTIONS(8242), - [anon_sym_constexpr] = ACTIONS(8232), - [anon_sym_volatile] = ACTIONS(8232), - [anon_sym_restrict] = ACTIONS(8232), - [anon_sym___restrict__] = ACTIONS(8232), - [anon_sym__Atomic] = ACTIONS(8232), - [anon_sym__Noreturn] = ACTIONS(8232), - [anon_sym_noreturn] = ACTIONS(8232), - [anon_sym__Nonnull] = ACTIONS(8232), - [anon_sym_mutable] = ACTIONS(8232), - [anon_sym_constinit] = ACTIONS(8232), - [anon_sym_consteval] = ACTIONS(8232), + [STATE(2443)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6622), + [anon_sym_COMMA] = ACTIONS(6622), + [anon_sym_RPAREN] = ACTIONS(6622), + [anon_sym_LPAREN2] = ACTIONS(6622), + [anon_sym_DASH] = ACTIONS(6620), + [anon_sym_PLUS] = ACTIONS(6620), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_PERCENT] = ACTIONS(6620), + [anon_sym_PIPE_PIPE] = ACTIONS(6622), + [anon_sym_AMP_AMP] = ACTIONS(6622), + [anon_sym_PIPE] = ACTIONS(6620), + [anon_sym_CARET] = ACTIONS(6620), + [anon_sym_AMP] = ACTIONS(6620), + [anon_sym_EQ_EQ] = ACTIONS(6622), + [anon_sym_BANG_EQ] = ACTIONS(6622), + [anon_sym_GT] = ACTIONS(6620), + [anon_sym_GT_EQ] = ACTIONS(6622), + [anon_sym_LT_EQ] = ACTIONS(6620), + [anon_sym_LT] = ACTIONS(6620), + [anon_sym_LT_LT] = ACTIONS(6620), + [anon_sym_GT_GT] = ACTIONS(6620), + [anon_sym___extension__] = ACTIONS(6622), + [anon_sym___attribute__] = ACTIONS(6622), + [anon_sym___attribute] = ACTIONS(6620), + [anon_sym_COLON] = ACTIONS(6620), + [anon_sym_COLON_COLON] = ACTIONS(6622), + [anon_sym_LBRACE] = ACTIONS(6622), + [anon_sym_LBRACK] = ACTIONS(6622), + [anon_sym_EQ] = ACTIONS(6620), + [anon_sym_const] = ACTIONS(6620), + [anon_sym_constexpr] = ACTIONS(6622), + [anon_sym_volatile] = ACTIONS(6622), + [anon_sym_restrict] = ACTIONS(6622), + [anon_sym___restrict__] = ACTIONS(6622), + [anon_sym__Atomic] = ACTIONS(6622), + [anon_sym__Noreturn] = ACTIONS(6622), + [anon_sym_noreturn] = ACTIONS(6622), + [anon_sym__Nonnull] = ACTIONS(6622), + [anon_sym_mutable] = ACTIONS(6622), + [anon_sym_constinit] = ACTIONS(6622), + [anon_sym_consteval] = ACTIONS(6622), + [anon_sym_alignas] = ACTIONS(6622), + [anon_sym__Alignas] = ACTIONS(6622), + [anon_sym_QMARK] = ACTIONS(6622), + [anon_sym_STAR_EQ] = ACTIONS(6622), + [anon_sym_SLASH_EQ] = ACTIONS(6622), + [anon_sym_PERCENT_EQ] = ACTIONS(6622), + [anon_sym_PLUS_EQ] = ACTIONS(6622), + [anon_sym_DASH_EQ] = ACTIONS(6622), + [anon_sym_LT_LT_EQ] = ACTIONS(6622), + [anon_sym_GT_GT_EQ] = ACTIONS(6622), + [anon_sym_AMP_EQ] = ACTIONS(6622), + [anon_sym_CARET_EQ] = ACTIONS(6622), + [anon_sym_PIPE_EQ] = ACTIONS(6622), + [anon_sym_and_eq] = ACTIONS(6622), + [anon_sym_or_eq] = ACTIONS(6622), + [anon_sym_xor_eq] = ACTIONS(6622), + [anon_sym_LT_EQ_GT] = ACTIONS(6622), + [anon_sym_or] = ACTIONS(6620), + [anon_sym_and] = ACTIONS(6620), + [anon_sym_bitor] = ACTIONS(6622), + [anon_sym_xor] = ACTIONS(6620), + [anon_sym_bitand] = ACTIONS(6622), + [anon_sym_not_eq] = ACTIONS(6622), + [anon_sym_DASH_DASH] = ACTIONS(6622), + [anon_sym_PLUS_PLUS] = ACTIONS(6622), + [anon_sym_DOT] = ACTIONS(6620), + [anon_sym_DOT_STAR] = ACTIONS(6622), + [anon_sym_DASH_GT] = ACTIONS(6620), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6622), + [anon_sym_decltype] = ACTIONS(6622), + [anon_sym_final] = ACTIONS(6622), + [anon_sym_override] = ACTIONS(6622), + [anon_sym_requires] = ACTIONS(6622), + [anon_sym_DASH_GT_STAR] = ACTIONS(6622), + }, + [STATE(2444)] = { + [sym__declaration_modifiers] = STATE(5072), + [sym_attribute_specifier] = STATE(5072), + [sym_attribute_declaration] = STATE(5072), + [sym_ms_declspec_modifier] = STATE(5072), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8827), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(5072), + [sym_type_qualifier] = STATE(5072), + [sym_alignas_qualifier] = STATE(4722), + [sym_decltype] = STATE(10768), + [sym_explicit_function_specifier] = STATE(5072), + [sym_operator_cast] = STATE(9229), + [sym__constructor_specifiers] = STATE(5072), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7901), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_operator_cast_identifier] = STATE(9229), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_operator_cast_definition_repeat1] = STATE(5072), + [sym_identifier] = ACTIONS(8228), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(8230), + [anon_sym_virtual] = ACTIONS(8232), + [anon_sym_extern] = ACTIONS(8234), + [anon_sym___attribute__] = ACTIONS(8236), + [anon_sym___attribute] = ACTIONS(8236), + [anon_sym_COLON_COLON] = ACTIONS(8238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8240), + [anon_sym___declspec] = ACTIONS(8242), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(8234), + [anon_sym_register] = ACTIONS(8234), + [anon_sym_inline] = ACTIONS(8234), + [anon_sym___inline] = ACTIONS(8234), + [anon_sym___inline__] = ACTIONS(8234), + [anon_sym___forceinline] = ACTIONS(8234), + [anon_sym_thread_local] = ACTIONS(8234), + [anon_sym___thread] = ACTIONS(8234), + [anon_sym_const] = ACTIONS(8230), + [anon_sym_constexpr] = ACTIONS(8230), + [anon_sym_volatile] = ACTIONS(8230), + [anon_sym_restrict] = ACTIONS(8230), + [anon_sym___restrict__] = ACTIONS(8230), + [anon_sym__Atomic] = ACTIONS(8230), + [anon_sym__Noreturn] = ACTIONS(8230), + [anon_sym_noreturn] = ACTIONS(8230), + [anon_sym__Nonnull] = ACTIONS(8230), + [anon_sym_mutable] = ACTIONS(8230), + [anon_sym_constinit] = ACTIONS(8230), + [anon_sym_consteval] = ACTIONS(8230), [anon_sym_alignas] = ACTIONS(8244), [anon_sym__Alignas] = ACTIONS(8244), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6497), - [anon_sym_and] = ACTIONS(6497), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6497), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6497), - [anon_sym_override] = ACTIONS(6497), - [anon_sym_GT2] = ACTIONS(6497), - [anon_sym_requires] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), }, - [STATE(2574)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(4191), - [sym_ms_pointer_modifier] = STATE(3862), - [sym__abstract_declarator] = STATE(6327), - [sym_abstract_parenthesized_declarator] = STATE(6612), - [sym_abstract_pointer_declarator] = STATE(6612), - [sym_abstract_function_declarator] = STATE(6612), - [sym_abstract_array_declarator] = STATE(6612), - [sym_type_qualifier] = STATE(3643), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(2154), - [sym_abstract_reference_declarator] = STATE(6612), - [sym__function_declarator_seq] = STATE(6536), - [aux_sym__type_definition_type_repeat1] = STATE(3643), - [aux_sym_pointer_declarator_repeat1] = STATE(3862), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(8246), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(8248), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6497), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(8250), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6497), - [anon_sym_AMP] = ACTIONS(8252), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6497), - [anon_sym_GT_GT] = ACTIONS(6497), - [anon_sym___extension__] = ACTIONS(8254), - [sym_ms_restrict_modifier] = ACTIONS(8256), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8258), - [sym_ms_signed_ptr_modifier] = ACTIONS(8258), - [anon_sym__unaligned] = ACTIONS(8260), - [anon_sym___unaligned] = ACTIONS(8260), - [anon_sym_LBRACK] = ACTIONS(8262), - [anon_sym_RBRACK] = ACTIONS(6497), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(8254), - [anon_sym_volatile] = ACTIONS(8254), - [anon_sym_restrict] = ACTIONS(8254), - [anon_sym___restrict__] = ACTIONS(8254), - [anon_sym__Atomic] = ACTIONS(8254), - [anon_sym__Noreturn] = ACTIONS(8254), - [anon_sym_noreturn] = ACTIONS(8254), - [anon_sym__Nonnull] = ACTIONS(8254), - [anon_sym_mutable] = ACTIONS(8254), - [anon_sym_constinit] = ACTIONS(8254), - [anon_sym_consteval] = ACTIONS(8254), - [anon_sym_alignas] = ACTIONS(8264), - [anon_sym__Alignas] = ACTIONS(8264), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6497), - [anon_sym_and] = ACTIONS(6497), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6497), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6497), - [anon_sym_override] = ACTIONS(6497), - [anon_sym_requires] = ACTIONS(6497), + [STATE(2445)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7083), + [anon_sym_COMMA] = ACTIONS(7083), + [anon_sym_LPAREN2] = ACTIONS(7083), + [anon_sym_DASH] = ACTIONS(7081), + [anon_sym_PLUS] = ACTIONS(7081), + [anon_sym_STAR] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7081), + [anon_sym_PERCENT] = ACTIONS(7081), + [anon_sym_PIPE_PIPE] = ACTIONS(7083), + [anon_sym_AMP_AMP] = ACTIONS(7083), + [anon_sym_PIPE] = ACTIONS(7081), + [anon_sym_CARET] = ACTIONS(7081), + [anon_sym_AMP] = ACTIONS(7081), + [anon_sym_EQ_EQ] = ACTIONS(7083), + [anon_sym_BANG_EQ] = ACTIONS(7083), + [anon_sym_GT] = ACTIONS(7081), + [anon_sym_GT_EQ] = ACTIONS(7081), + [anon_sym_LT_EQ] = ACTIONS(7081), + [anon_sym_LT] = ACTIONS(7081), + [anon_sym_LT_LT] = ACTIONS(7081), + [anon_sym_GT_GT] = ACTIONS(7081), + [anon_sym___extension__] = ACTIONS(7083), + [anon_sym___attribute__] = ACTIONS(7083), + [anon_sym___attribute] = ACTIONS(7081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7083), + [anon_sym_LBRACK] = ACTIONS(7081), + [anon_sym_EQ] = ACTIONS(7081), + [anon_sym_const] = ACTIONS(7081), + [anon_sym_constexpr] = ACTIONS(7083), + [anon_sym_volatile] = ACTIONS(7083), + [anon_sym_restrict] = ACTIONS(7083), + [anon_sym___restrict__] = ACTIONS(7083), + [anon_sym__Atomic] = ACTIONS(7083), + [anon_sym__Noreturn] = ACTIONS(7083), + [anon_sym_noreturn] = ACTIONS(7083), + [anon_sym__Nonnull] = ACTIONS(7083), + [anon_sym_mutable] = ACTIONS(7083), + [anon_sym_constinit] = ACTIONS(7083), + [anon_sym_consteval] = ACTIONS(7083), + [anon_sym_alignas] = ACTIONS(7083), + [anon_sym__Alignas] = ACTIONS(7083), + [anon_sym_QMARK] = ACTIONS(7083), + [anon_sym_STAR_EQ] = ACTIONS(7083), + [anon_sym_SLASH_EQ] = ACTIONS(7083), + [anon_sym_PERCENT_EQ] = ACTIONS(7083), + [anon_sym_PLUS_EQ] = ACTIONS(7083), + [anon_sym_DASH_EQ] = ACTIONS(7083), + [anon_sym_LT_LT_EQ] = ACTIONS(7083), + [anon_sym_GT_GT_EQ] = ACTIONS(7081), + [anon_sym_AMP_EQ] = ACTIONS(7083), + [anon_sym_CARET_EQ] = ACTIONS(7083), + [anon_sym_PIPE_EQ] = ACTIONS(7083), + [anon_sym_and_eq] = ACTIONS(7083), + [anon_sym_or_eq] = ACTIONS(7083), + [anon_sym_xor_eq] = ACTIONS(7083), + [anon_sym_LT_EQ_GT] = ACTIONS(7083), + [anon_sym_or] = ACTIONS(7081), + [anon_sym_and] = ACTIONS(7081), + [anon_sym_bitor] = ACTIONS(7083), + [anon_sym_xor] = ACTIONS(7081), + [anon_sym_bitand] = ACTIONS(7083), + [anon_sym_not_eq] = ACTIONS(7083), + [anon_sym_DASH_DASH] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7083), + [anon_sym_asm] = ACTIONS(7083), + [anon_sym___asm__] = ACTIONS(7083), + [anon_sym___asm] = ACTIONS(7081), + [anon_sym_DOT] = ACTIONS(7081), + [anon_sym_DOT_STAR] = ACTIONS(7083), + [anon_sym_DASH_GT] = ACTIONS(7083), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7083), + [anon_sym_override] = ACTIONS(7083), + [anon_sym_GT2] = ACTIONS(7083), + [anon_sym_noexcept] = ACTIONS(7083), + [anon_sym_throw] = ACTIONS(7083), + [anon_sym_requires] = ACTIONS(7083), }, - [STATE(2575)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(4192), - [sym_ms_pointer_modifier] = STATE(2573), - [sym__abstract_declarator] = STATE(6376), - [sym_abstract_parenthesized_declarator] = STATE(6488), - [sym_abstract_pointer_declarator] = STATE(6488), - [sym_abstract_function_declarator] = STATE(6488), - [sym_abstract_array_declarator] = STATE(6488), - [sym_type_qualifier] = STATE(3630), - [sym_alignas_qualifier] = STATE(3785), - [sym_parameter_list] = STATE(2153), - [sym_abstract_reference_declarator] = STATE(6488), - [sym__function_declarator_seq] = STATE(6497), - [aux_sym__type_definition_type_repeat1] = STATE(3630), - [aux_sym_pointer_declarator_repeat1] = STATE(2573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(8224), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_PLUS] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(8226), - [anon_sym_SLASH] = ACTIONS(6457), - [anon_sym_PERCENT] = ACTIONS(6459), - [anon_sym_PIPE_PIPE] = ACTIONS(6459), - [anon_sym_AMP_AMP] = ACTIONS(8228), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_CARET] = ACTIONS(6459), - [anon_sym_AMP] = ACTIONS(8230), - [anon_sym_EQ_EQ] = ACTIONS(6459), - [anon_sym_BANG_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_GT_EQ] = ACTIONS(6457), - [anon_sym_LT_EQ] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_LT_LT] = ACTIONS(6459), - [anon_sym_GT_GT] = ACTIONS(6457), - [anon_sym___extension__] = ACTIONS(8232), - [sym_ms_restrict_modifier] = ACTIONS(8234), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8236), - [sym_ms_signed_ptr_modifier] = ACTIONS(8236), - [anon_sym__unaligned] = ACTIONS(8238), - [anon_sym___unaligned] = ACTIONS(8238), - [anon_sym_LBRACK] = ACTIONS(8240), - [anon_sym_const] = ACTIONS(8242), - [anon_sym_constexpr] = ACTIONS(8232), - [anon_sym_volatile] = ACTIONS(8232), - [anon_sym_restrict] = ACTIONS(8232), - [anon_sym___restrict__] = ACTIONS(8232), - [anon_sym__Atomic] = ACTIONS(8232), - [anon_sym__Noreturn] = ACTIONS(8232), - [anon_sym_noreturn] = ACTIONS(8232), - [anon_sym__Nonnull] = ACTIONS(8232), - [anon_sym_mutable] = ACTIONS(8232), - [anon_sym_constinit] = ACTIONS(8232), - [anon_sym_consteval] = ACTIONS(8232), + [STATE(2446)] = { + [sym__declaration_modifiers] = STATE(5072), + [sym_attribute_specifier] = STATE(5072), + [sym_attribute_declaration] = STATE(5072), + [sym_ms_declspec_modifier] = STATE(5072), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8696), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(5072), + [sym_type_qualifier] = STATE(5072), + [sym_alignas_qualifier] = STATE(4722), + [sym_decltype] = STATE(10768), + [sym_explicit_function_specifier] = STATE(5072), + [sym_operator_cast] = STATE(9229), + [sym__constructor_specifiers] = STATE(5072), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7901), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_operator_cast_identifier] = STATE(9229), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_operator_cast_definition_repeat1] = STATE(5072), + [sym_identifier] = ACTIONS(8228), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(8230), + [anon_sym_virtual] = ACTIONS(8232), + [anon_sym_extern] = ACTIONS(8234), + [anon_sym___attribute__] = ACTIONS(8236), + [anon_sym___attribute] = ACTIONS(8236), + [anon_sym_COLON_COLON] = ACTIONS(8238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8240), + [anon_sym___declspec] = ACTIONS(8242), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(8234), + [anon_sym_register] = ACTIONS(8234), + [anon_sym_inline] = ACTIONS(8234), + [anon_sym___inline] = ACTIONS(8234), + [anon_sym___inline__] = ACTIONS(8234), + [anon_sym___forceinline] = ACTIONS(8234), + [anon_sym_thread_local] = ACTIONS(8234), + [anon_sym___thread] = ACTIONS(8234), + [anon_sym_const] = ACTIONS(8230), + [anon_sym_constexpr] = ACTIONS(8230), + [anon_sym_volatile] = ACTIONS(8230), + [anon_sym_restrict] = ACTIONS(8230), + [anon_sym___restrict__] = ACTIONS(8230), + [anon_sym__Atomic] = ACTIONS(8230), + [anon_sym__Noreturn] = ACTIONS(8230), + [anon_sym_noreturn] = ACTIONS(8230), + [anon_sym__Nonnull] = ACTIONS(8230), + [anon_sym_mutable] = ACTIONS(8230), + [anon_sym_constinit] = ACTIONS(8230), + [anon_sym_consteval] = ACTIONS(8230), [anon_sym_alignas] = ACTIONS(8244), [anon_sym__Alignas] = ACTIONS(8244), - [anon_sym_QMARK] = ACTIONS(6459), - [anon_sym_LT_EQ_GT] = ACTIONS(6459), - [anon_sym_or] = ACTIONS(6459), - [anon_sym_and] = ACTIONS(6459), - [anon_sym_bitor] = ACTIONS(6459), - [anon_sym_xor] = ACTIONS(6459), - [anon_sym_bitand] = ACTIONS(6459), - [anon_sym_not_eq] = ACTIONS(6459), - [anon_sym_DASH_DASH] = ACTIONS(6459), - [anon_sym_PLUS_PLUS] = ACTIONS(6459), - [anon_sym_DOT] = ACTIONS(6457), - [anon_sym_DOT_STAR] = ACTIONS(6459), - [anon_sym_DASH_GT] = ACTIONS(6459), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6459), - [anon_sym_override] = ACTIONS(6459), - [anon_sym_GT2] = ACTIONS(6459), - [anon_sym_requires] = ACTIONS(6459), - }, - [STATE(2576)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(4191), - [sym_ms_pointer_modifier] = STATE(2574), - [sym__abstract_declarator] = STATE(6325), - [sym_abstract_parenthesized_declarator] = STATE(6612), - [sym_abstract_pointer_declarator] = STATE(6612), - [sym_abstract_function_declarator] = STATE(6612), - [sym_abstract_array_declarator] = STATE(6612), - [sym_type_qualifier] = STATE(3641), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(2154), - [sym_abstract_reference_declarator] = STATE(6612), - [sym__function_declarator_seq] = STATE(6536), - [aux_sym__type_definition_type_repeat1] = STATE(3641), - [aux_sym_pointer_declarator_repeat1] = STATE(2574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(8246), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_PLUS] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(8248), - [anon_sym_SLASH] = ACTIONS(6457), - [anon_sym_PERCENT] = ACTIONS(6459), - [anon_sym_PIPE_PIPE] = ACTIONS(6459), - [anon_sym_AMP_AMP] = ACTIONS(8250), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_CARET] = ACTIONS(6459), - [anon_sym_AMP] = ACTIONS(8252), - [anon_sym_EQ_EQ] = ACTIONS(6459), - [anon_sym_BANG_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_LT_EQ] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_LT_LT] = ACTIONS(6459), - [anon_sym_GT_GT] = ACTIONS(6459), - [anon_sym___extension__] = ACTIONS(8254), - [sym_ms_restrict_modifier] = ACTIONS(8256), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8258), - [sym_ms_signed_ptr_modifier] = ACTIONS(8258), - [anon_sym__unaligned] = ACTIONS(8260), - [anon_sym___unaligned] = ACTIONS(8260), - [anon_sym_LBRACK] = ACTIONS(8262), - [anon_sym_RBRACK] = ACTIONS(6459), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(8254), - [anon_sym_volatile] = ACTIONS(8254), - [anon_sym_restrict] = ACTIONS(8254), - [anon_sym___restrict__] = ACTIONS(8254), - [anon_sym__Atomic] = ACTIONS(8254), - [anon_sym__Noreturn] = ACTIONS(8254), - [anon_sym_noreturn] = ACTIONS(8254), - [anon_sym__Nonnull] = ACTIONS(8254), - [anon_sym_mutable] = ACTIONS(8254), - [anon_sym_constinit] = ACTIONS(8254), - [anon_sym_consteval] = ACTIONS(8254), - [anon_sym_alignas] = ACTIONS(8264), - [anon_sym__Alignas] = ACTIONS(8264), - [anon_sym_QMARK] = ACTIONS(6459), - [anon_sym_LT_EQ_GT] = ACTIONS(6459), - [anon_sym_or] = ACTIONS(6459), - [anon_sym_and] = ACTIONS(6459), - [anon_sym_bitor] = ACTIONS(6459), - [anon_sym_xor] = ACTIONS(6459), - [anon_sym_bitand] = ACTIONS(6459), - [anon_sym_not_eq] = ACTIONS(6459), - [anon_sym_DASH_DASH] = ACTIONS(6459), - [anon_sym_PLUS_PLUS] = ACTIONS(6459), - [anon_sym_DOT] = ACTIONS(6457), - [anon_sym_DOT_STAR] = ACTIONS(6459), - [anon_sym_DASH_GT] = ACTIONS(6459), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6459), - [anon_sym_override] = ACTIONS(6459), - [anon_sym_requires] = ACTIONS(6459), - }, - [STATE(2577)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7183), - [anon_sym_COMMA] = ACTIONS(7183), - [anon_sym_LPAREN2] = ACTIONS(7183), - [anon_sym_DASH] = ACTIONS(7185), - [anon_sym_PLUS] = ACTIONS(7185), - [anon_sym_STAR] = ACTIONS(7185), - [anon_sym_SLASH] = ACTIONS(7185), - [anon_sym_PERCENT] = ACTIONS(7185), - [anon_sym_PIPE_PIPE] = ACTIONS(7183), - [anon_sym_AMP_AMP] = ACTIONS(7183), - [anon_sym_PIPE] = ACTIONS(7185), - [anon_sym_CARET] = ACTIONS(7185), - [anon_sym_AMP] = ACTIONS(7185), - [anon_sym_EQ_EQ] = ACTIONS(7183), - [anon_sym_BANG_EQ] = ACTIONS(7183), - [anon_sym_GT] = ACTIONS(7185), - [anon_sym_GT_EQ] = ACTIONS(7185), - [anon_sym_LT_EQ] = ACTIONS(7185), - [anon_sym_LT] = ACTIONS(7185), - [anon_sym_LT_LT] = ACTIONS(7185), - [anon_sym_GT_GT] = ACTIONS(7185), - [anon_sym___extension__] = ACTIONS(7183), - [anon_sym___attribute__] = ACTIONS(7183), - [anon_sym___attribute] = ACTIONS(7185), - [anon_sym_COLON] = ACTIONS(7185), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(7183), - [anon_sym_LBRACK] = ACTIONS(7183), - [anon_sym_EQ] = ACTIONS(7185), - [anon_sym_const] = ACTIONS(7185), - [anon_sym_constexpr] = ACTIONS(7183), - [anon_sym_volatile] = ACTIONS(7183), - [anon_sym_restrict] = ACTIONS(7183), - [anon_sym___restrict__] = ACTIONS(7183), - [anon_sym__Atomic] = ACTIONS(7183), - [anon_sym__Noreturn] = ACTIONS(7183), - [anon_sym_noreturn] = ACTIONS(7183), - [anon_sym__Nonnull] = ACTIONS(7183), - [anon_sym_mutable] = ACTIONS(7183), - [anon_sym_constinit] = ACTIONS(7183), - [anon_sym_consteval] = ACTIONS(7183), - [anon_sym_alignas] = ACTIONS(7183), - [anon_sym__Alignas] = ACTIONS(7183), - [anon_sym_QMARK] = ACTIONS(7183), - [anon_sym_STAR_EQ] = ACTIONS(7183), - [anon_sym_SLASH_EQ] = ACTIONS(7183), - [anon_sym_PERCENT_EQ] = ACTIONS(7183), - [anon_sym_PLUS_EQ] = ACTIONS(7183), - [anon_sym_DASH_EQ] = ACTIONS(7183), - [anon_sym_LT_LT_EQ] = ACTIONS(7183), - [anon_sym_GT_GT_EQ] = ACTIONS(7185), - [anon_sym_AMP_EQ] = ACTIONS(7183), - [anon_sym_CARET_EQ] = ACTIONS(7183), - [anon_sym_PIPE_EQ] = ACTIONS(7183), - [anon_sym_and_eq] = ACTIONS(7183), - [anon_sym_or_eq] = ACTIONS(7183), - [anon_sym_xor_eq] = ACTIONS(7183), - [anon_sym_LT_EQ_GT] = ACTIONS(7183), - [anon_sym_or] = ACTIONS(7185), - [anon_sym_and] = ACTIONS(7185), - [anon_sym_bitor] = ACTIONS(7183), - [anon_sym_xor] = ACTIONS(7185), - [anon_sym_bitand] = ACTIONS(7183), - [anon_sym_not_eq] = ACTIONS(7183), - [anon_sym_DASH_DASH] = ACTIONS(7183), - [anon_sym_PLUS_PLUS] = ACTIONS(7183), - [anon_sym_DOT] = ACTIONS(7185), - [anon_sym_DOT_STAR] = ACTIONS(7183), - [anon_sym_DASH_GT] = ACTIONS(7183), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7183), - [anon_sym_override] = ACTIONS(7183), - [anon_sym_GT2] = ACTIONS(7183), - [anon_sym_requires] = ACTIONS(7183), - }, - [STATE(2578)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6902), - [anon_sym_COMMA] = ACTIONS(6902), - [anon_sym_LPAREN2] = ACTIONS(6902), - [anon_sym_DASH] = ACTIONS(6900), - [anon_sym_PLUS] = ACTIONS(6900), - [anon_sym_STAR] = ACTIONS(6900), - [anon_sym_SLASH] = ACTIONS(6900), - [anon_sym_PERCENT] = ACTIONS(6900), - [anon_sym_PIPE_PIPE] = ACTIONS(6902), - [anon_sym_AMP_AMP] = ACTIONS(6902), - [anon_sym_PIPE] = ACTIONS(6900), - [anon_sym_CARET] = ACTIONS(6900), - [anon_sym_AMP] = ACTIONS(6900), - [anon_sym_EQ_EQ] = ACTIONS(6902), - [anon_sym_BANG_EQ] = ACTIONS(6902), - [anon_sym_GT] = ACTIONS(6900), - [anon_sym_GT_EQ] = ACTIONS(6902), - [anon_sym_LT_EQ] = ACTIONS(6900), - [anon_sym_LT] = ACTIONS(6900), - [anon_sym_LT_LT] = ACTIONS(6900), - [anon_sym_GT_GT] = ACTIONS(6900), - [anon_sym___extension__] = ACTIONS(6902), - [sym_ms_restrict_modifier] = ACTIONS(6900), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6902), - [sym_ms_signed_ptr_modifier] = ACTIONS(6902), - [anon_sym__unaligned] = ACTIONS(6902), - [anon_sym___unaligned] = ACTIONS(6902), - [anon_sym_LBRACK] = ACTIONS(6902), - [anon_sym_RBRACK] = ACTIONS(6902), - [anon_sym_EQ] = ACTIONS(6900), - [anon_sym_const] = ACTIONS(6900), - [anon_sym_constexpr] = ACTIONS(6902), - [anon_sym_volatile] = ACTIONS(6902), - [anon_sym_restrict] = ACTIONS(6902), - [anon_sym___restrict__] = ACTIONS(6902), - [anon_sym__Atomic] = ACTIONS(6902), - [anon_sym__Noreturn] = ACTIONS(6902), - [anon_sym_noreturn] = ACTIONS(6902), - [anon_sym__Nonnull] = ACTIONS(6902), - [anon_sym_mutable] = ACTIONS(6902), - [anon_sym_constinit] = ACTIONS(6902), - [anon_sym_consteval] = ACTIONS(6902), - [anon_sym_alignas] = ACTIONS(6902), - [anon_sym__Alignas] = ACTIONS(6902), - [anon_sym_QMARK] = ACTIONS(6902), - [anon_sym_STAR_EQ] = ACTIONS(6902), - [anon_sym_SLASH_EQ] = ACTIONS(6902), - [anon_sym_PERCENT_EQ] = ACTIONS(6902), - [anon_sym_PLUS_EQ] = ACTIONS(6902), - [anon_sym_DASH_EQ] = ACTIONS(6902), - [anon_sym_LT_LT_EQ] = ACTIONS(6902), - [anon_sym_GT_GT_EQ] = ACTIONS(6902), - [anon_sym_AMP_EQ] = ACTIONS(6902), - [anon_sym_CARET_EQ] = ACTIONS(6902), - [anon_sym_PIPE_EQ] = ACTIONS(6902), - [anon_sym_and_eq] = ACTIONS(6902), - [anon_sym_or_eq] = ACTIONS(6902), - [anon_sym_xor_eq] = ACTIONS(6902), - [anon_sym_LT_EQ_GT] = ACTIONS(6902), - [anon_sym_or] = ACTIONS(6900), - [anon_sym_and] = ACTIONS(6900), - [anon_sym_bitor] = ACTIONS(6902), - [anon_sym_xor] = ACTIONS(6900), - [anon_sym_bitand] = ACTIONS(6902), - [anon_sym_not_eq] = ACTIONS(6902), - [anon_sym_DASH_DASH] = ACTIONS(6902), - [anon_sym_PLUS_PLUS] = ACTIONS(6902), - [anon_sym_DOT] = ACTIONS(6900), - [anon_sym_DOT_STAR] = ACTIONS(6902), - [anon_sym_DASH_GT] = ACTIONS(6902), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6902), - [anon_sym_override] = ACTIONS(6902), - [anon_sym_requires] = ACTIONS(6902), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), }, - [STATE(2579)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6808), - [anon_sym_COMMA] = ACTIONS(6808), - [anon_sym_LPAREN2] = ACTIONS(6808), - [anon_sym_DASH] = ACTIONS(6806), - [anon_sym_PLUS] = ACTIONS(6806), - [anon_sym_STAR] = ACTIONS(6806), - [anon_sym_SLASH] = ACTIONS(6806), - [anon_sym_PERCENT] = ACTIONS(6806), - [anon_sym_PIPE_PIPE] = ACTIONS(6808), - [anon_sym_AMP_AMP] = ACTIONS(6808), - [anon_sym_PIPE] = ACTIONS(6806), - [anon_sym_CARET] = ACTIONS(6806), - [anon_sym_AMP] = ACTIONS(6806), - [anon_sym_EQ_EQ] = ACTIONS(6808), - [anon_sym_BANG_EQ] = ACTIONS(6808), - [anon_sym_GT] = ACTIONS(6806), - [anon_sym_GT_EQ] = ACTIONS(6808), - [anon_sym_LT_EQ] = ACTIONS(6806), - [anon_sym_LT] = ACTIONS(6806), - [anon_sym_LT_LT] = ACTIONS(6806), - [anon_sym_GT_GT] = ACTIONS(6806), - [anon_sym___extension__] = ACTIONS(6808), - [sym_ms_restrict_modifier] = ACTIONS(6806), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6808), - [sym_ms_signed_ptr_modifier] = ACTIONS(6808), - [anon_sym__unaligned] = ACTIONS(6808), - [anon_sym___unaligned] = ACTIONS(6808), - [anon_sym_LBRACK] = ACTIONS(6808), - [anon_sym_RBRACK] = ACTIONS(6808), - [anon_sym_EQ] = ACTIONS(6806), - [anon_sym_const] = ACTIONS(6806), - [anon_sym_constexpr] = ACTIONS(6808), - [anon_sym_volatile] = ACTIONS(6808), - [anon_sym_restrict] = ACTIONS(6808), - [anon_sym___restrict__] = ACTIONS(6808), - [anon_sym__Atomic] = ACTIONS(6808), - [anon_sym__Noreturn] = ACTIONS(6808), - [anon_sym_noreturn] = ACTIONS(6808), - [anon_sym__Nonnull] = ACTIONS(6808), - [anon_sym_mutable] = ACTIONS(6808), - [anon_sym_constinit] = ACTIONS(6808), - [anon_sym_consteval] = ACTIONS(6808), - [anon_sym_alignas] = ACTIONS(6808), - [anon_sym__Alignas] = ACTIONS(6808), - [anon_sym_QMARK] = ACTIONS(6808), - [anon_sym_STAR_EQ] = ACTIONS(6808), - [anon_sym_SLASH_EQ] = ACTIONS(6808), - [anon_sym_PERCENT_EQ] = ACTIONS(6808), - [anon_sym_PLUS_EQ] = ACTIONS(6808), - [anon_sym_DASH_EQ] = ACTIONS(6808), - [anon_sym_LT_LT_EQ] = ACTIONS(6808), - [anon_sym_GT_GT_EQ] = ACTIONS(6808), - [anon_sym_AMP_EQ] = ACTIONS(6808), - [anon_sym_CARET_EQ] = ACTIONS(6808), - [anon_sym_PIPE_EQ] = ACTIONS(6808), - [anon_sym_and_eq] = ACTIONS(6808), - [anon_sym_or_eq] = ACTIONS(6808), - [anon_sym_xor_eq] = ACTIONS(6808), - [anon_sym_LT_EQ_GT] = ACTIONS(6808), - [anon_sym_or] = ACTIONS(6806), - [anon_sym_and] = ACTIONS(6806), - [anon_sym_bitor] = ACTIONS(6808), - [anon_sym_xor] = ACTIONS(6806), - [anon_sym_bitand] = ACTIONS(6808), - [anon_sym_not_eq] = ACTIONS(6808), - [anon_sym_DASH_DASH] = ACTIONS(6808), - [anon_sym_PLUS_PLUS] = ACTIONS(6808), - [anon_sym_DOT] = ACTIONS(6806), - [anon_sym_DOT_STAR] = ACTIONS(6808), - [anon_sym_DASH_GT] = ACTIONS(6808), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6808), - [anon_sym_override] = ACTIONS(6808), - [anon_sym_requires] = ACTIONS(6808), + [STATE(2447)] = { + [sym_string_literal] = STATE(2565), + [sym_template_argument_list] = STATE(3740), + [sym_raw_string_literal] = STATE(2565), + [sym_identifier] = ACTIONS(5645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_RPAREN] = ACTIONS(5638), + [aux_sym_preproc_if_token2] = ACTIONS(5638), + [aux_sym_preproc_else_token1] = ACTIONS(5638), + [aux_sym_preproc_elif_token1] = ACTIONS(5645), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5638), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(8258), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5638), + [anon_sym_COLON] = ACTIONS(5645), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5638), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_RBRACE] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5638), + [anon_sym_SLASH_EQ] = ACTIONS(5638), + [anon_sym_PERCENT_EQ] = ACTIONS(5638), + [anon_sym_PLUS_EQ] = ACTIONS(5638), + [anon_sym_DASH_EQ] = ACTIONS(5638), + [anon_sym_LT_LT_EQ] = ACTIONS(5638), + [anon_sym_GT_GT_EQ] = ACTIONS(5638), + [anon_sym_AMP_EQ] = ACTIONS(5638), + [anon_sym_CARET_EQ] = ACTIONS(5638), + [anon_sym_PIPE_EQ] = ACTIONS(5638), + [anon_sym_and_eq] = ACTIONS(5645), + [anon_sym_or_eq] = ACTIONS(5645), + [anon_sym_xor_eq] = ACTIONS(5645), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5645), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5645), + [anon_sym_not_eq] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_COLON_RBRACK] = ACTIONS(5638), }, - [STATE(2580)] = { - [sym_decltype_auto] = STATE(3011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_RBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8266), - [anon_sym_decltype] = ACTIONS(6680), - [anon_sym_final] = ACTIONS(6800), - [anon_sym_override] = ACTIONS(6800), - [anon_sym_requires] = ACTIONS(6800), + [STATE(2448)] = { + [sym__abstract_declarator] = STATE(5512), + [sym_abstract_parenthesized_declarator] = STATE(5090), + [sym_abstract_pointer_declarator] = STATE(5090), + [sym_abstract_function_declarator] = STATE(5090), + [sym_abstract_array_declarator] = STATE(5090), + [sym_type_qualifier] = STATE(2307), + [sym_alignas_qualifier] = STATE(2423), + [sym_parameter_list] = STATE(1975), + [sym_abstract_reference_declarator] = STATE(5090), + [sym__function_declarator_seq] = STATE(5091), + [aux_sym__type_definition_type_repeat1] = STATE(2307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(7375), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(7377), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(7379), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6821), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(7144), + [anon_sym_LBRACK] = ACTIONS(7152), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(7154), + [anon_sym_constexpr] = ACTIONS(7144), + [anon_sym_volatile] = ACTIONS(7144), + [anon_sym_restrict] = ACTIONS(7144), + [anon_sym___restrict__] = ACTIONS(7144), + [anon_sym__Atomic] = ACTIONS(7144), + [anon_sym__Noreturn] = ACTIONS(7144), + [anon_sym_noreturn] = ACTIONS(7144), + [anon_sym__Nonnull] = ACTIONS(7144), + [anon_sym_mutable] = ACTIONS(7144), + [anon_sym_constinit] = ACTIONS(7144), + [anon_sym_consteval] = ACTIONS(7144), + [anon_sym_alignas] = ACTIONS(7156), + [anon_sym__Alignas] = ACTIONS(7156), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6821), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6823), + [anon_sym_or_eq] = ACTIONS(6823), + [anon_sym_xor_eq] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6823), }, - [STATE(2581)] = { - [sym_attribute_specifier] = STATE(2963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7125), - [anon_sym_COMMA] = ACTIONS(7125), - [anon_sym_RPAREN] = ACTIONS(7125), - [anon_sym_LPAREN2] = ACTIONS(7125), - [anon_sym_DASH] = ACTIONS(7123), - [anon_sym_PLUS] = ACTIONS(7123), - [anon_sym_STAR] = ACTIONS(7123), - [anon_sym_SLASH] = ACTIONS(7123), - [anon_sym_PERCENT] = ACTIONS(7123), - [anon_sym_PIPE_PIPE] = ACTIONS(7125), - [anon_sym_AMP_AMP] = ACTIONS(7125), - [anon_sym_PIPE] = ACTIONS(7123), - [anon_sym_CARET] = ACTIONS(7123), - [anon_sym_AMP] = ACTIONS(7123), - [anon_sym_EQ_EQ] = ACTIONS(7125), - [anon_sym_BANG_EQ] = ACTIONS(7125), - [anon_sym_GT] = ACTIONS(7123), - [anon_sym_GT_EQ] = ACTIONS(7125), - [anon_sym_LT_EQ] = ACTIONS(7123), - [anon_sym_LT] = ACTIONS(7123), - [anon_sym_LT_LT] = ACTIONS(7123), - [anon_sym_GT_GT] = ACTIONS(7123), - [anon_sym___extension__] = ACTIONS(7125), - [anon_sym___attribute__] = ACTIONS(7813), - [anon_sym___attribute] = ACTIONS(7815), - [anon_sym_LBRACE] = ACTIONS(7125), - [anon_sym_LBRACK] = ACTIONS(7125), - [anon_sym_EQ] = ACTIONS(7123), - [anon_sym_const] = ACTIONS(7123), - [anon_sym_constexpr] = ACTIONS(7125), - [anon_sym_volatile] = ACTIONS(7125), - [anon_sym_restrict] = ACTIONS(7125), - [anon_sym___restrict__] = ACTIONS(7125), - [anon_sym__Atomic] = ACTIONS(7125), - [anon_sym__Noreturn] = ACTIONS(7125), - [anon_sym_noreturn] = ACTIONS(7125), - [anon_sym__Nonnull] = ACTIONS(7125), - [anon_sym_mutable] = ACTIONS(7125), - [anon_sym_constinit] = ACTIONS(7125), - [anon_sym_consteval] = ACTIONS(7125), - [anon_sym_alignas] = ACTIONS(7125), - [anon_sym__Alignas] = ACTIONS(7125), - [anon_sym_QMARK] = ACTIONS(7125), - [anon_sym_STAR_EQ] = ACTIONS(7125), - [anon_sym_SLASH_EQ] = ACTIONS(7125), - [anon_sym_PERCENT_EQ] = ACTIONS(7125), - [anon_sym_PLUS_EQ] = ACTIONS(7125), - [anon_sym_DASH_EQ] = ACTIONS(7125), - [anon_sym_LT_LT_EQ] = ACTIONS(7125), - [anon_sym_GT_GT_EQ] = ACTIONS(7125), - [anon_sym_AMP_EQ] = ACTIONS(7125), - [anon_sym_CARET_EQ] = ACTIONS(7125), - [anon_sym_PIPE_EQ] = ACTIONS(7125), - [anon_sym_and_eq] = ACTIONS(7125), - [anon_sym_or_eq] = ACTIONS(7125), - [anon_sym_xor_eq] = ACTIONS(7125), - [anon_sym_LT_EQ_GT] = ACTIONS(7125), - [anon_sym_or] = ACTIONS(7123), - [anon_sym_and] = ACTIONS(7123), - [anon_sym_bitor] = ACTIONS(7125), - [anon_sym_xor] = ACTIONS(7123), - [anon_sym_bitand] = ACTIONS(7125), - [anon_sym_not_eq] = ACTIONS(7125), - [anon_sym_DASH_DASH] = ACTIONS(7125), - [anon_sym_PLUS_PLUS] = ACTIONS(7125), - [anon_sym_DOT] = ACTIONS(7123), - [anon_sym_DOT_STAR] = ACTIONS(7125), - [anon_sym_DASH_GT] = ACTIONS(7123), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7125), - [anon_sym_override] = ACTIONS(7125), - [anon_sym_requires] = ACTIONS(7125), - [anon_sym_DASH_GT_STAR] = ACTIONS(7125), + [STATE(2449)] = { + [sym_type_qualifier] = STATE(2461), + [sym_alignas_qualifier] = STATE(2576), + [aux_sym__type_definition_type_repeat1] = STATE(2461), + [aux_sym_sized_type_specifier_repeat1] = STATE(2670), + [sym_identifier] = ACTIONS(8052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), + [anon_sym_COMMA] = ACTIONS(7249), + [anon_sym_RPAREN] = ACTIONS(7249), + [anon_sym_LPAREN2] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7251), + [anon_sym_PLUS] = ACTIONS(7251), + [anon_sym_STAR] = ACTIONS(7251), + [anon_sym_SLASH] = ACTIONS(7251), + [anon_sym_PERCENT] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7249), + [anon_sym_PIPE] = ACTIONS(7251), + [anon_sym_CARET] = ACTIONS(7251), + [anon_sym_AMP] = ACTIONS(7251), + [anon_sym_EQ_EQ] = ACTIONS(7249), + [anon_sym_BANG_EQ] = ACTIONS(7249), + [anon_sym_GT] = ACTIONS(7251), + [anon_sym_GT_EQ] = ACTIONS(7249), + [anon_sym_LT_EQ] = ACTIONS(7251), + [anon_sym_LT] = ACTIONS(7251), + [anon_sym_LT_LT] = ACTIONS(7251), + [anon_sym_GT_GT] = ACTIONS(7251), + [anon_sym___extension__] = ACTIONS(7323), + [anon_sym___attribute__] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7251), + [anon_sym_LBRACE] = ACTIONS(7249), + [anon_sym_signed] = ACTIONS(8261), + [anon_sym_unsigned] = ACTIONS(8261), + [anon_sym_long] = ACTIONS(8261), + [anon_sym_short] = ACTIONS(8261), + [anon_sym_LBRACK] = ACTIONS(7249), + [anon_sym_EQ] = ACTIONS(7251), + [anon_sym_const] = ACTIONS(7323), + [anon_sym_constexpr] = ACTIONS(7323), + [anon_sym_volatile] = ACTIONS(7323), + [anon_sym_restrict] = ACTIONS(7323), + [anon_sym___restrict__] = ACTIONS(7323), + [anon_sym__Atomic] = ACTIONS(7323), + [anon_sym__Noreturn] = ACTIONS(7323), + [anon_sym_noreturn] = ACTIONS(7323), + [anon_sym__Nonnull] = ACTIONS(7323), + [anon_sym_mutable] = ACTIONS(7323), + [anon_sym_constinit] = ACTIONS(7323), + [anon_sym_consteval] = ACTIONS(7323), + [anon_sym_alignas] = ACTIONS(8263), + [anon_sym__Alignas] = ACTIONS(8263), + [sym_primitive_type] = ACTIONS(8062), + [anon_sym_QMARK] = ACTIONS(7249), + [anon_sym_STAR_EQ] = ACTIONS(7249), + [anon_sym_SLASH_EQ] = ACTIONS(7249), + [anon_sym_PERCENT_EQ] = ACTIONS(7249), + [anon_sym_PLUS_EQ] = ACTIONS(7249), + [anon_sym_DASH_EQ] = ACTIONS(7249), + [anon_sym_LT_LT_EQ] = ACTIONS(7249), + [anon_sym_GT_GT_EQ] = ACTIONS(7249), + [anon_sym_AMP_EQ] = ACTIONS(7249), + [anon_sym_CARET_EQ] = ACTIONS(7249), + [anon_sym_PIPE_EQ] = ACTIONS(7249), + [anon_sym_LT_EQ_GT] = ACTIONS(7249), + [anon_sym_or] = ACTIONS(7251), + [anon_sym_and] = ACTIONS(7251), + [anon_sym_bitor] = ACTIONS(7251), + [anon_sym_xor] = ACTIONS(7251), + [anon_sym_bitand] = ACTIONS(7251), + [anon_sym_not_eq] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7249), + [anon_sym_PLUS_PLUS] = ACTIONS(7249), + [anon_sym_DOT] = ACTIONS(7251), + [anon_sym_DOT_STAR] = ACTIONS(7249), + [anon_sym_DASH_GT] = ACTIONS(7251), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7249), }, - [STATE(2582)] = { - [sym_attribute_specifier] = STATE(3104), - [sym_enumerator_list] = STATE(2733), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7013), - [anon_sym_COMMA] = ACTIONS(7013), - [anon_sym_LPAREN2] = ACTIONS(7013), - [anon_sym_DASH] = ACTIONS(7011), - [anon_sym_PLUS] = ACTIONS(7011), - [anon_sym_STAR] = ACTIONS(7011), - [anon_sym_SLASH] = ACTIONS(7011), - [anon_sym_PERCENT] = ACTIONS(7011), - [anon_sym_PIPE_PIPE] = ACTIONS(7013), - [anon_sym_AMP_AMP] = ACTIONS(7013), - [anon_sym_PIPE] = ACTIONS(7011), - [anon_sym_CARET] = ACTIONS(7011), - [anon_sym_AMP] = ACTIONS(7011), - [anon_sym_EQ_EQ] = ACTIONS(7013), - [anon_sym_BANG_EQ] = ACTIONS(7013), - [anon_sym_GT] = ACTIONS(7011), - [anon_sym_GT_EQ] = ACTIONS(7011), - [anon_sym_LT_EQ] = ACTIONS(7011), - [anon_sym_LT] = ACTIONS(7011), - [anon_sym_LT_LT] = ACTIONS(7011), - [anon_sym_GT_GT] = ACTIONS(7011), - [anon_sym___extension__] = ACTIONS(7013), - [anon_sym___attribute__] = ACTIONS(7862), - [anon_sym___attribute] = ACTIONS(7864), - [anon_sym_LBRACE] = ACTIONS(8096), - [anon_sym_LBRACK] = ACTIONS(7013), - [anon_sym_EQ] = ACTIONS(7011), - [anon_sym_const] = ACTIONS(7011), - [anon_sym_constexpr] = ACTIONS(7013), - [anon_sym_volatile] = ACTIONS(7013), - [anon_sym_restrict] = ACTIONS(7013), - [anon_sym___restrict__] = ACTIONS(7013), - [anon_sym__Atomic] = ACTIONS(7013), - [anon_sym__Noreturn] = ACTIONS(7013), - [anon_sym_noreturn] = ACTIONS(7013), - [anon_sym__Nonnull] = ACTIONS(7013), - [anon_sym_mutable] = ACTIONS(7013), - [anon_sym_constinit] = ACTIONS(7013), - [anon_sym_consteval] = ACTIONS(7013), - [anon_sym_alignas] = ACTIONS(7013), - [anon_sym__Alignas] = ACTIONS(7013), - [anon_sym_QMARK] = ACTIONS(7013), - [anon_sym_STAR_EQ] = ACTIONS(7013), - [anon_sym_SLASH_EQ] = ACTIONS(7013), - [anon_sym_PERCENT_EQ] = ACTIONS(7013), - [anon_sym_PLUS_EQ] = ACTIONS(7013), - [anon_sym_DASH_EQ] = ACTIONS(7013), - [anon_sym_LT_LT_EQ] = ACTIONS(7013), - [anon_sym_GT_GT_EQ] = ACTIONS(7011), - [anon_sym_AMP_EQ] = ACTIONS(7013), - [anon_sym_CARET_EQ] = ACTIONS(7013), - [anon_sym_PIPE_EQ] = ACTIONS(7013), - [anon_sym_and_eq] = ACTIONS(7013), - [anon_sym_or_eq] = ACTIONS(7013), - [anon_sym_xor_eq] = ACTIONS(7013), - [anon_sym_LT_EQ_GT] = ACTIONS(7013), - [anon_sym_or] = ACTIONS(7011), - [anon_sym_and] = ACTIONS(7011), - [anon_sym_bitor] = ACTIONS(7013), - [anon_sym_xor] = ACTIONS(7011), - [anon_sym_bitand] = ACTIONS(7013), - [anon_sym_not_eq] = ACTIONS(7013), - [anon_sym_DASH_DASH] = ACTIONS(7013), - [anon_sym_PLUS_PLUS] = ACTIONS(7013), - [anon_sym_DOT] = ACTIONS(7011), - [anon_sym_DOT_STAR] = ACTIONS(7013), - [anon_sym_DASH_GT] = ACTIONS(7013), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7013), - [anon_sym_override] = ACTIONS(7013), - [anon_sym_GT2] = ACTIONS(7013), - [anon_sym_requires] = ACTIONS(7013), + [STATE(2450)] = { + [sym__abstract_declarator] = STATE(5503), + [sym_abstract_parenthesized_declarator] = STATE(5090), + [sym_abstract_pointer_declarator] = STATE(5090), + [sym_abstract_function_declarator] = STATE(5090), + [sym_abstract_array_declarator] = STATE(5090), + [sym_type_qualifier] = STATE(2307), + [sym_alignas_qualifier] = STATE(2423), + [sym_parameter_list] = STATE(1975), + [sym_abstract_reference_declarator] = STATE(5090), + [sym__function_declarator_seq] = STATE(5091), + [aux_sym__type_definition_type_repeat1] = STATE(2307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), + [anon_sym_COMMA] = ACTIONS(7355), + [anon_sym_LPAREN2] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(7353), + [anon_sym_PLUS] = ACTIONS(7353), + [anon_sym_STAR] = ACTIONS(7375), + [anon_sym_SLASH] = ACTIONS(7353), + [anon_sym_PERCENT] = ACTIONS(7353), + [anon_sym_PIPE_PIPE] = ACTIONS(7355), + [anon_sym_AMP_AMP] = ACTIONS(7377), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_CARET] = ACTIONS(7353), + [anon_sym_AMP] = ACTIONS(7379), + [anon_sym_EQ_EQ] = ACTIONS(7355), + [anon_sym_BANG_EQ] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_EQ] = ACTIONS(7353), + [anon_sym_LT_EQ] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_LT_LT] = ACTIONS(7353), + [anon_sym_GT_GT] = ACTIONS(7353), + [anon_sym___extension__] = ACTIONS(7144), + [anon_sym_LBRACK] = ACTIONS(7152), + [anon_sym_EQ] = ACTIONS(7353), + [anon_sym_const] = ACTIONS(7154), + [anon_sym_constexpr] = ACTIONS(7144), + [anon_sym_volatile] = ACTIONS(7144), + [anon_sym_restrict] = ACTIONS(7144), + [anon_sym___restrict__] = ACTIONS(7144), + [anon_sym__Atomic] = ACTIONS(7144), + [anon_sym__Noreturn] = ACTIONS(7144), + [anon_sym_noreturn] = ACTIONS(7144), + [anon_sym__Nonnull] = ACTIONS(7144), + [anon_sym_mutable] = ACTIONS(7144), + [anon_sym_constinit] = ACTIONS(7144), + [anon_sym_consteval] = ACTIONS(7144), + [anon_sym_alignas] = ACTIONS(7156), + [anon_sym__Alignas] = ACTIONS(7156), + [anon_sym_QMARK] = ACTIONS(7355), + [anon_sym_STAR_EQ] = ACTIONS(7355), + [anon_sym_SLASH_EQ] = ACTIONS(7355), + [anon_sym_PERCENT_EQ] = ACTIONS(7355), + [anon_sym_PLUS_EQ] = ACTIONS(7355), + [anon_sym_DASH_EQ] = ACTIONS(7355), + [anon_sym_LT_LT_EQ] = ACTIONS(7355), + [anon_sym_GT_GT_EQ] = ACTIONS(7353), + [anon_sym_AMP_EQ] = ACTIONS(7355), + [anon_sym_CARET_EQ] = ACTIONS(7355), + [anon_sym_PIPE_EQ] = ACTIONS(7355), + [anon_sym_and_eq] = ACTIONS(7355), + [anon_sym_or_eq] = ACTIONS(7355), + [anon_sym_xor_eq] = ACTIONS(7355), + [anon_sym_LT_EQ_GT] = ACTIONS(7355), + [anon_sym_or] = ACTIONS(7353), + [anon_sym_and] = ACTIONS(7353), + [anon_sym_bitor] = ACTIONS(7355), + [anon_sym_xor] = ACTIONS(7353), + [anon_sym_bitand] = ACTIONS(7355), + [anon_sym_not_eq] = ACTIONS(7355), + [anon_sym_DASH_DASH] = ACTIONS(7355), + [anon_sym_PLUS_PLUS] = ACTIONS(7355), + [anon_sym_DOT] = ACTIONS(7353), + [anon_sym_DOT_STAR] = ACTIONS(7355), + [anon_sym_DASH_GT] = ACTIONS(7355), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7355), }, - [STATE(2583)] = { - [sym_attribute_specifier] = STATE(3049), - [sym_enumerator_list] = STATE(2682), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6987), - [anon_sym_COMMA] = ACTIONS(6987), - [anon_sym_LPAREN2] = ACTIONS(6987), - [anon_sym_DASH] = ACTIONS(6985), - [anon_sym_PLUS] = ACTIONS(6985), - [anon_sym_STAR] = ACTIONS(6985), - [anon_sym_SLASH] = ACTIONS(6985), - [anon_sym_PERCENT] = ACTIONS(6985), - [anon_sym_PIPE_PIPE] = ACTIONS(6987), - [anon_sym_AMP_AMP] = ACTIONS(6987), - [anon_sym_PIPE] = ACTIONS(6985), - [anon_sym_CARET] = ACTIONS(6985), - [anon_sym_AMP] = ACTIONS(6985), - [anon_sym_EQ_EQ] = ACTIONS(6987), - [anon_sym_BANG_EQ] = ACTIONS(6987), - [anon_sym_GT] = ACTIONS(6985), - [anon_sym_GT_EQ] = ACTIONS(6987), - [anon_sym_LT_EQ] = ACTIONS(6985), - [anon_sym_LT] = ACTIONS(6985), - [anon_sym_LT_LT] = ACTIONS(6985), - [anon_sym_GT_GT] = ACTIONS(6985), - [anon_sym___extension__] = ACTIONS(6987), - [anon_sym___attribute__] = ACTIONS(8003), - [anon_sym___attribute] = ACTIONS(8005), - [anon_sym_LBRACE] = ACTIONS(8100), - [anon_sym_LBRACK] = ACTIONS(6987), - [anon_sym_RBRACK] = ACTIONS(6987), - [anon_sym_EQ] = ACTIONS(6985), - [anon_sym_const] = ACTIONS(6985), - [anon_sym_constexpr] = ACTIONS(6987), - [anon_sym_volatile] = ACTIONS(6987), - [anon_sym_restrict] = ACTIONS(6987), - [anon_sym___restrict__] = ACTIONS(6987), - [anon_sym__Atomic] = ACTIONS(6987), - [anon_sym__Noreturn] = ACTIONS(6987), - [anon_sym_noreturn] = ACTIONS(6987), - [anon_sym__Nonnull] = ACTIONS(6987), - [anon_sym_mutable] = ACTIONS(6987), - [anon_sym_constinit] = ACTIONS(6987), - [anon_sym_consteval] = ACTIONS(6987), - [anon_sym_alignas] = ACTIONS(6987), - [anon_sym__Alignas] = ACTIONS(6987), - [anon_sym_QMARK] = ACTIONS(6987), - [anon_sym_STAR_EQ] = ACTIONS(6987), - [anon_sym_SLASH_EQ] = ACTIONS(6987), - [anon_sym_PERCENT_EQ] = ACTIONS(6987), - [anon_sym_PLUS_EQ] = ACTIONS(6987), - [anon_sym_DASH_EQ] = ACTIONS(6987), - [anon_sym_LT_LT_EQ] = ACTIONS(6987), - [anon_sym_GT_GT_EQ] = ACTIONS(6987), - [anon_sym_AMP_EQ] = ACTIONS(6987), - [anon_sym_CARET_EQ] = ACTIONS(6987), - [anon_sym_PIPE_EQ] = ACTIONS(6987), - [anon_sym_and_eq] = ACTIONS(6987), - [anon_sym_or_eq] = ACTIONS(6987), - [anon_sym_xor_eq] = ACTIONS(6987), - [anon_sym_LT_EQ_GT] = ACTIONS(6987), - [anon_sym_or] = ACTIONS(6985), - [anon_sym_and] = ACTIONS(6985), - [anon_sym_bitor] = ACTIONS(6987), - [anon_sym_xor] = ACTIONS(6985), - [anon_sym_bitand] = ACTIONS(6987), - [anon_sym_not_eq] = ACTIONS(6987), - [anon_sym_DASH_DASH] = ACTIONS(6987), - [anon_sym_PLUS_PLUS] = ACTIONS(6987), - [anon_sym_DOT] = ACTIONS(6985), - [anon_sym_DOT_STAR] = ACTIONS(6987), - [anon_sym_DASH_GT] = ACTIONS(6987), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6987), - [anon_sym_override] = ACTIONS(6987), - [anon_sym_requires] = ACTIONS(6987), + [STATE(2451)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6626), + [anon_sym_COMMA] = ACTIONS(6626), + [anon_sym_RPAREN] = ACTIONS(6626), + [anon_sym_LPAREN2] = ACTIONS(6626), + [anon_sym_DASH] = ACTIONS(6624), + [anon_sym_PLUS] = ACTIONS(6624), + [anon_sym_STAR] = ACTIONS(6624), + [anon_sym_SLASH] = ACTIONS(6624), + [anon_sym_PERCENT] = ACTIONS(6624), + [anon_sym_PIPE_PIPE] = ACTIONS(6626), + [anon_sym_AMP_AMP] = ACTIONS(6626), + [anon_sym_PIPE] = ACTIONS(6624), + [anon_sym_CARET] = ACTIONS(6624), + [anon_sym_AMP] = ACTIONS(6624), + [anon_sym_EQ_EQ] = ACTIONS(6626), + [anon_sym_BANG_EQ] = ACTIONS(6626), + [anon_sym_GT] = ACTIONS(6624), + [anon_sym_GT_EQ] = ACTIONS(6626), + [anon_sym_LT_EQ] = ACTIONS(6624), + [anon_sym_LT] = ACTIONS(6624), + [anon_sym_LT_LT] = ACTIONS(6624), + [anon_sym_GT_GT] = ACTIONS(6624), + [anon_sym___extension__] = ACTIONS(6626), + [anon_sym___attribute__] = ACTIONS(6626), + [anon_sym___attribute] = ACTIONS(6624), + [anon_sym_COLON] = ACTIONS(6624), + [anon_sym_COLON_COLON] = ACTIONS(6626), + [anon_sym_LBRACE] = ACTIONS(6626), + [anon_sym_LBRACK] = ACTIONS(6626), + [anon_sym_EQ] = ACTIONS(6624), + [anon_sym_const] = ACTIONS(6624), + [anon_sym_constexpr] = ACTIONS(6626), + [anon_sym_volatile] = ACTIONS(6626), + [anon_sym_restrict] = ACTIONS(6626), + [anon_sym___restrict__] = ACTIONS(6626), + [anon_sym__Atomic] = ACTIONS(6626), + [anon_sym__Noreturn] = ACTIONS(6626), + [anon_sym_noreturn] = ACTIONS(6626), + [anon_sym__Nonnull] = ACTIONS(6626), + [anon_sym_mutable] = ACTIONS(6626), + [anon_sym_constinit] = ACTIONS(6626), + [anon_sym_consteval] = ACTIONS(6626), + [anon_sym_alignas] = ACTIONS(6626), + [anon_sym__Alignas] = ACTIONS(6626), + [anon_sym_QMARK] = ACTIONS(6626), + [anon_sym_STAR_EQ] = ACTIONS(6626), + [anon_sym_SLASH_EQ] = ACTIONS(6626), + [anon_sym_PERCENT_EQ] = ACTIONS(6626), + [anon_sym_PLUS_EQ] = ACTIONS(6626), + [anon_sym_DASH_EQ] = ACTIONS(6626), + [anon_sym_LT_LT_EQ] = ACTIONS(6626), + [anon_sym_GT_GT_EQ] = ACTIONS(6626), + [anon_sym_AMP_EQ] = ACTIONS(6626), + [anon_sym_CARET_EQ] = ACTIONS(6626), + [anon_sym_PIPE_EQ] = ACTIONS(6626), + [anon_sym_and_eq] = ACTIONS(6626), + [anon_sym_or_eq] = ACTIONS(6626), + [anon_sym_xor_eq] = ACTIONS(6626), + [anon_sym_LT_EQ_GT] = ACTIONS(6626), + [anon_sym_or] = ACTIONS(6624), + [anon_sym_and] = ACTIONS(6624), + [anon_sym_bitor] = ACTIONS(6626), + [anon_sym_xor] = ACTIONS(6624), + [anon_sym_bitand] = ACTIONS(6626), + [anon_sym_not_eq] = ACTIONS(6626), + [anon_sym_DASH_DASH] = ACTIONS(6626), + [anon_sym_PLUS_PLUS] = ACTIONS(6626), + [anon_sym_DOT] = ACTIONS(6624), + [anon_sym_DOT_STAR] = ACTIONS(6626), + [anon_sym_DASH_GT] = ACTIONS(6624), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6626), + [anon_sym_decltype] = ACTIONS(6626), + [anon_sym_final] = ACTIONS(6626), + [anon_sym_override] = ACTIONS(6626), + [anon_sym_requires] = ACTIONS(6626), + [anon_sym_DASH_GT_STAR] = ACTIONS(6626), }, - [STATE(2584)] = { - [sym_identifier] = ACTIONS(2803), - [aux_sym_preproc_def_token1] = ACTIONS(2803), - [anon_sym_COMMA] = ACTIONS(3888), - [aux_sym_preproc_if_token1] = ACTIONS(2803), - [aux_sym_preproc_if_token2] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), - [aux_sym_preproc_else_token1] = ACTIONS(2803), - [aux_sym_preproc_elif_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2803), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(3888), - [anon_sym___extension__] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2803), - [anon_sym_virtual] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym___attribute__] = ACTIONS(2803), - [anon_sym___attribute] = ACTIONS(2803), - [anon_sym_using] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2803), - [anon_sym___based] = ACTIONS(2803), - [anon_sym_signed] = ACTIONS(2803), - [anon_sym_unsigned] = ACTIONS(2803), - [anon_sym_long] = ACTIONS(2803), - [anon_sym_short] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_register] = ACTIONS(2803), - [anon_sym_inline] = ACTIONS(2803), - [anon_sym___inline] = ACTIONS(2803), - [anon_sym___inline__] = ACTIONS(2803), - [anon_sym___forceinline] = ACTIONS(2803), - [anon_sym_thread_local] = ACTIONS(2803), - [anon_sym___thread] = ACTIONS(2803), - [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__Nonnull] = ACTIONS(2803), - [anon_sym_mutable] = ACTIONS(2803), - [anon_sym_constinit] = ACTIONS(2803), - [anon_sym_consteval] = ACTIONS(2803), - [anon_sym_alignas] = ACTIONS(2803), - [anon_sym__Alignas] = ACTIONS(2803), - [sym_primitive_type] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_typename] = ACTIONS(2803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2803), - [anon_sym_decltype] = ACTIONS(2803), - [anon_sym_explicit] = ACTIONS(2803), - [anon_sym_private] = ACTIONS(2803), - [anon_sym_template] = ACTIONS(2803), - [anon_sym_operator] = ACTIONS(2803), - [anon_sym_friend] = ACTIONS(2803), - [anon_sym_public] = ACTIONS(2803), - [anon_sym_protected] = ACTIONS(2803), - [anon_sym_static_assert] = ACTIONS(2803), - [anon_sym_LBRACK_COLON] = ACTIONS(2801), + [STATE(2452)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), + [anon_sym_COMMA] = ACTIONS(3118), + [anon_sym_LPAREN2] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_SLASH] = ACTIONS(3128), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_PIPE_PIPE] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_CARET] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3128), + [anon_sym_GT_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(3128), + [anon_sym_LT_LT] = ACTIONS(3128), + [anon_sym_GT_GT] = ACTIONS(3128), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_RBRACK] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3118), + [anon_sym_volatile] = ACTIONS(3118), + [anon_sym_restrict] = ACTIONS(3118), + [anon_sym___restrict__] = ACTIONS(3118), + [anon_sym__Atomic] = ACTIONS(3118), + [anon_sym__Noreturn] = ACTIONS(3118), + [anon_sym_noreturn] = ACTIONS(3118), + [anon_sym__Nonnull] = ACTIONS(3118), + [anon_sym_mutable] = ACTIONS(3118), + [anon_sym_constinit] = ACTIONS(3118), + [anon_sym_consteval] = ACTIONS(3118), + [anon_sym_alignas] = ACTIONS(3118), + [anon_sym__Alignas] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_STAR_EQ] = ACTIONS(3118), + [anon_sym_SLASH_EQ] = ACTIONS(3118), + [anon_sym_PERCENT_EQ] = ACTIONS(3118), + [anon_sym_PLUS_EQ] = ACTIONS(3118), + [anon_sym_DASH_EQ] = ACTIONS(3118), + [anon_sym_LT_LT_EQ] = ACTIONS(3118), + [anon_sym_GT_GT_EQ] = ACTIONS(3118), + [anon_sym_AMP_EQ] = ACTIONS(3118), + [anon_sym_CARET_EQ] = ACTIONS(3118), + [anon_sym_PIPE_EQ] = ACTIONS(3118), + [anon_sym_and_eq] = ACTIONS(3118), + [anon_sym_or_eq] = ACTIONS(3118), + [anon_sym_xor_eq] = ACTIONS(3118), + [anon_sym_LT_EQ_GT] = ACTIONS(3118), + [anon_sym_or] = ACTIONS(3128), + [anon_sym_and] = ACTIONS(3128), + [anon_sym_bitor] = ACTIONS(3118), + [anon_sym_xor] = ACTIONS(3128), + [anon_sym_bitand] = ACTIONS(3118), + [anon_sym_not_eq] = ACTIONS(3118), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_asm] = ACTIONS(3118), + [anon_sym___asm__] = ACTIONS(3118), + [anon_sym___asm] = ACTIONS(3128), + [anon_sym_DOT] = ACTIONS(3128), + [anon_sym_DOT_STAR] = ACTIONS(3118), + [anon_sym_DASH_GT] = ACTIONS(3118), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_noexcept] = ACTIONS(3118), + [anon_sym_throw] = ACTIONS(3118), + [anon_sym_requires] = ACTIONS(3118), }, - [STATE(2585)] = { - [sym_attribute_specifier] = STATE(3064), - [sym_enumerator_list] = STATE(2694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7013), - [anon_sym_COMMA] = ACTIONS(7013), - [anon_sym_LPAREN2] = ACTIONS(7013), - [anon_sym_DASH] = ACTIONS(7011), - [anon_sym_PLUS] = ACTIONS(7011), - [anon_sym_STAR] = ACTIONS(7011), - [anon_sym_SLASH] = ACTIONS(7011), - [anon_sym_PERCENT] = ACTIONS(7011), - [anon_sym_PIPE_PIPE] = ACTIONS(7013), - [anon_sym_AMP_AMP] = ACTIONS(7013), - [anon_sym_PIPE] = ACTIONS(7011), - [anon_sym_CARET] = ACTIONS(7011), - [anon_sym_AMP] = ACTIONS(7011), - [anon_sym_EQ_EQ] = ACTIONS(7013), - [anon_sym_BANG_EQ] = ACTIONS(7013), - [anon_sym_GT] = ACTIONS(7011), - [anon_sym_GT_EQ] = ACTIONS(7013), - [anon_sym_LT_EQ] = ACTIONS(7011), - [anon_sym_LT] = ACTIONS(7011), - [anon_sym_LT_LT] = ACTIONS(7011), - [anon_sym_GT_GT] = ACTIONS(7011), - [anon_sym___extension__] = ACTIONS(7013), - [anon_sym___attribute__] = ACTIONS(8003), - [anon_sym___attribute] = ACTIONS(8005), - [anon_sym_LBRACE] = ACTIONS(8100), - [anon_sym_LBRACK] = ACTIONS(7013), - [anon_sym_RBRACK] = ACTIONS(7013), - [anon_sym_EQ] = ACTIONS(7011), - [anon_sym_const] = ACTIONS(7011), - [anon_sym_constexpr] = ACTIONS(7013), - [anon_sym_volatile] = ACTIONS(7013), - [anon_sym_restrict] = ACTIONS(7013), - [anon_sym___restrict__] = ACTIONS(7013), - [anon_sym__Atomic] = ACTIONS(7013), - [anon_sym__Noreturn] = ACTIONS(7013), - [anon_sym_noreturn] = ACTIONS(7013), - [anon_sym__Nonnull] = ACTIONS(7013), - [anon_sym_mutable] = ACTIONS(7013), - [anon_sym_constinit] = ACTIONS(7013), - [anon_sym_consteval] = ACTIONS(7013), - [anon_sym_alignas] = ACTIONS(7013), - [anon_sym__Alignas] = ACTIONS(7013), - [anon_sym_QMARK] = ACTIONS(7013), - [anon_sym_STAR_EQ] = ACTIONS(7013), - [anon_sym_SLASH_EQ] = ACTIONS(7013), - [anon_sym_PERCENT_EQ] = ACTIONS(7013), - [anon_sym_PLUS_EQ] = ACTIONS(7013), - [anon_sym_DASH_EQ] = ACTIONS(7013), - [anon_sym_LT_LT_EQ] = ACTIONS(7013), - [anon_sym_GT_GT_EQ] = ACTIONS(7013), - [anon_sym_AMP_EQ] = ACTIONS(7013), - [anon_sym_CARET_EQ] = ACTIONS(7013), - [anon_sym_PIPE_EQ] = ACTIONS(7013), - [anon_sym_and_eq] = ACTIONS(7013), - [anon_sym_or_eq] = ACTIONS(7013), - [anon_sym_xor_eq] = ACTIONS(7013), - [anon_sym_LT_EQ_GT] = ACTIONS(7013), - [anon_sym_or] = ACTIONS(7011), - [anon_sym_and] = ACTIONS(7011), - [anon_sym_bitor] = ACTIONS(7013), - [anon_sym_xor] = ACTIONS(7011), - [anon_sym_bitand] = ACTIONS(7013), - [anon_sym_not_eq] = ACTIONS(7013), - [anon_sym_DASH_DASH] = ACTIONS(7013), - [anon_sym_PLUS_PLUS] = ACTIONS(7013), - [anon_sym_DOT] = ACTIONS(7011), - [anon_sym_DOT_STAR] = ACTIONS(7013), - [anon_sym_DASH_GT] = ACTIONS(7013), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7013), - [anon_sym_override] = ACTIONS(7013), - [anon_sym_requires] = ACTIONS(7013), + [STATE(2453)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7110), + [anon_sym_COMMA] = ACTIONS(7110), + [anon_sym_LPAREN2] = ACTIONS(7110), + [anon_sym_DASH] = ACTIONS(7108), + [anon_sym_PLUS] = ACTIONS(7108), + [anon_sym_STAR] = ACTIONS(7108), + [anon_sym_SLASH] = ACTIONS(7108), + [anon_sym_PERCENT] = ACTIONS(7108), + [anon_sym_PIPE_PIPE] = ACTIONS(7110), + [anon_sym_AMP_AMP] = ACTIONS(7110), + [anon_sym_PIPE] = ACTIONS(7108), + [anon_sym_CARET] = ACTIONS(7108), + [anon_sym_AMP] = ACTIONS(7108), + [anon_sym_EQ_EQ] = ACTIONS(7110), + [anon_sym_BANG_EQ] = ACTIONS(7110), + [anon_sym_GT] = ACTIONS(7108), + [anon_sym_GT_EQ] = ACTIONS(7110), + [anon_sym_LT_EQ] = ACTIONS(7108), + [anon_sym_LT] = ACTIONS(7108), + [anon_sym_LT_LT] = ACTIONS(7108), + [anon_sym_GT_GT] = ACTIONS(7108), + [anon_sym___extension__] = ACTIONS(7110), + [anon_sym___attribute__] = ACTIONS(7110), + [anon_sym___attribute] = ACTIONS(7108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7110), + [anon_sym_LBRACK] = ACTIONS(7108), + [anon_sym_RBRACK] = ACTIONS(7110), + [anon_sym_EQ] = ACTIONS(7108), + [anon_sym_const] = ACTIONS(7108), + [anon_sym_constexpr] = ACTIONS(7110), + [anon_sym_volatile] = ACTIONS(7110), + [anon_sym_restrict] = ACTIONS(7110), + [anon_sym___restrict__] = ACTIONS(7110), + [anon_sym__Atomic] = ACTIONS(7110), + [anon_sym__Noreturn] = ACTIONS(7110), + [anon_sym_noreturn] = ACTIONS(7110), + [anon_sym__Nonnull] = ACTIONS(7110), + [anon_sym_mutable] = ACTIONS(7110), + [anon_sym_constinit] = ACTIONS(7110), + [anon_sym_consteval] = ACTIONS(7110), + [anon_sym_alignas] = ACTIONS(7110), + [anon_sym__Alignas] = ACTIONS(7110), + [anon_sym_QMARK] = ACTIONS(7110), + [anon_sym_STAR_EQ] = ACTIONS(7110), + [anon_sym_SLASH_EQ] = ACTIONS(7110), + [anon_sym_PERCENT_EQ] = ACTIONS(7110), + [anon_sym_PLUS_EQ] = ACTIONS(7110), + [anon_sym_DASH_EQ] = ACTIONS(7110), + [anon_sym_LT_LT_EQ] = ACTIONS(7110), + [anon_sym_GT_GT_EQ] = ACTIONS(7110), + [anon_sym_AMP_EQ] = ACTIONS(7110), + [anon_sym_CARET_EQ] = ACTIONS(7110), + [anon_sym_PIPE_EQ] = ACTIONS(7110), + [anon_sym_and_eq] = ACTIONS(7110), + [anon_sym_or_eq] = ACTIONS(7110), + [anon_sym_xor_eq] = ACTIONS(7110), + [anon_sym_LT_EQ_GT] = ACTIONS(7110), + [anon_sym_or] = ACTIONS(7108), + [anon_sym_and] = ACTIONS(7108), + [anon_sym_bitor] = ACTIONS(7110), + [anon_sym_xor] = ACTIONS(7108), + [anon_sym_bitand] = ACTIONS(7110), + [anon_sym_not_eq] = ACTIONS(7110), + [anon_sym_DASH_DASH] = ACTIONS(7110), + [anon_sym_PLUS_PLUS] = ACTIONS(7110), + [anon_sym_asm] = ACTIONS(7110), + [anon_sym___asm__] = ACTIONS(7110), + [anon_sym___asm] = ACTIONS(7108), + [anon_sym_DOT] = ACTIONS(7108), + [anon_sym_DOT_STAR] = ACTIONS(7110), + [anon_sym_DASH_GT] = ACTIONS(7110), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7110), + [anon_sym_override] = ACTIONS(7110), + [anon_sym_noexcept] = ACTIONS(7110), + [anon_sym_throw] = ACTIONS(7110), + [anon_sym_requires] = ACTIONS(7110), }, - [STATE(2586)] = { - [sym_attribute_specifier] = STATE(2971), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7135), - [anon_sym_COMMA] = ACTIONS(7135), - [anon_sym_RPAREN] = ACTIONS(7135), - [anon_sym_LPAREN2] = ACTIONS(7135), - [anon_sym_DASH] = ACTIONS(7133), - [anon_sym_PLUS] = ACTIONS(7133), - [anon_sym_STAR] = ACTIONS(7133), - [anon_sym_SLASH] = ACTIONS(7133), - [anon_sym_PERCENT] = ACTIONS(7133), - [anon_sym_PIPE_PIPE] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7135), - [anon_sym_PIPE] = ACTIONS(7133), - [anon_sym_CARET] = ACTIONS(7133), - [anon_sym_AMP] = ACTIONS(7133), - [anon_sym_EQ_EQ] = ACTIONS(7135), - [anon_sym_BANG_EQ] = ACTIONS(7135), - [anon_sym_GT] = ACTIONS(7133), - [anon_sym_GT_EQ] = ACTIONS(7135), - [anon_sym_LT_EQ] = ACTIONS(7133), - [anon_sym_LT] = ACTIONS(7133), - [anon_sym_LT_LT] = ACTIONS(7133), - [anon_sym_GT_GT] = ACTIONS(7133), - [anon_sym___extension__] = ACTIONS(7135), - [anon_sym___attribute__] = ACTIONS(7813), - [anon_sym___attribute] = ACTIONS(7815), - [anon_sym_LBRACE] = ACTIONS(7135), - [anon_sym_LBRACK] = ACTIONS(7135), - [anon_sym_EQ] = ACTIONS(7133), - [anon_sym_const] = ACTIONS(7133), - [anon_sym_constexpr] = ACTIONS(7135), - [anon_sym_volatile] = ACTIONS(7135), - [anon_sym_restrict] = ACTIONS(7135), - [anon_sym___restrict__] = ACTIONS(7135), - [anon_sym__Atomic] = ACTIONS(7135), - [anon_sym__Noreturn] = ACTIONS(7135), - [anon_sym_noreturn] = ACTIONS(7135), - [anon_sym__Nonnull] = ACTIONS(7135), - [anon_sym_mutable] = ACTIONS(7135), - [anon_sym_constinit] = ACTIONS(7135), - [anon_sym_consteval] = ACTIONS(7135), - [anon_sym_alignas] = ACTIONS(7135), - [anon_sym__Alignas] = ACTIONS(7135), - [anon_sym_QMARK] = ACTIONS(7135), - [anon_sym_STAR_EQ] = ACTIONS(7135), - [anon_sym_SLASH_EQ] = ACTIONS(7135), - [anon_sym_PERCENT_EQ] = ACTIONS(7135), - [anon_sym_PLUS_EQ] = ACTIONS(7135), - [anon_sym_DASH_EQ] = ACTIONS(7135), - [anon_sym_LT_LT_EQ] = ACTIONS(7135), - [anon_sym_GT_GT_EQ] = ACTIONS(7135), - [anon_sym_AMP_EQ] = ACTIONS(7135), - [anon_sym_CARET_EQ] = ACTIONS(7135), - [anon_sym_PIPE_EQ] = ACTIONS(7135), - [anon_sym_and_eq] = ACTIONS(7135), - [anon_sym_or_eq] = ACTIONS(7135), - [anon_sym_xor_eq] = ACTIONS(7135), - [anon_sym_LT_EQ_GT] = ACTIONS(7135), - [anon_sym_or] = ACTIONS(7133), - [anon_sym_and] = ACTIONS(7133), - [anon_sym_bitor] = ACTIONS(7135), - [anon_sym_xor] = ACTIONS(7133), - [anon_sym_bitand] = ACTIONS(7135), - [anon_sym_not_eq] = ACTIONS(7135), - [anon_sym_DASH_DASH] = ACTIONS(7135), - [anon_sym_PLUS_PLUS] = ACTIONS(7135), - [anon_sym_DOT] = ACTIONS(7133), - [anon_sym_DOT_STAR] = ACTIONS(7135), - [anon_sym_DASH_GT] = ACTIONS(7133), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7135), - [anon_sym_override] = ACTIONS(7135), - [anon_sym_requires] = ACTIONS(7135), - [anon_sym_DASH_GT_STAR] = ACTIONS(7135), + [STATE(2454)] = { + [sym__declaration_modifiers] = STATE(5072), + [sym_attribute_specifier] = STATE(5072), + [sym_attribute_declaration] = STATE(5072), + [sym_ms_declspec_modifier] = STATE(5072), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8830), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(5072), + [sym_type_qualifier] = STATE(5072), + [sym_alignas_qualifier] = STATE(4722), + [sym_decltype] = STATE(10768), + [sym_explicit_function_specifier] = STATE(5072), + [sym_operator_cast] = STATE(9266), + [sym__constructor_specifiers] = STATE(5072), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7901), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_operator_cast_identifier] = STATE(9266), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_operator_cast_definition_repeat1] = STATE(5072), + [sym_identifier] = ACTIONS(8228), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(8230), + [anon_sym_virtual] = ACTIONS(8232), + [anon_sym_extern] = ACTIONS(8234), + [anon_sym___attribute__] = ACTIONS(8236), + [anon_sym___attribute] = ACTIONS(8236), + [anon_sym_COLON_COLON] = ACTIONS(8238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8240), + [anon_sym___declspec] = ACTIONS(8242), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(8234), + [anon_sym_register] = ACTIONS(8234), + [anon_sym_inline] = ACTIONS(8234), + [anon_sym___inline] = ACTIONS(8234), + [anon_sym___inline__] = ACTIONS(8234), + [anon_sym___forceinline] = ACTIONS(8234), + [anon_sym_thread_local] = ACTIONS(8234), + [anon_sym___thread] = ACTIONS(8234), + [anon_sym_const] = ACTIONS(8230), + [anon_sym_constexpr] = ACTIONS(8230), + [anon_sym_volatile] = ACTIONS(8230), + [anon_sym_restrict] = ACTIONS(8230), + [anon_sym___restrict__] = ACTIONS(8230), + [anon_sym__Atomic] = ACTIONS(8230), + [anon_sym__Noreturn] = ACTIONS(8230), + [anon_sym_noreturn] = ACTIONS(8230), + [anon_sym__Nonnull] = ACTIONS(8230), + [anon_sym_mutable] = ACTIONS(8230), + [anon_sym_constinit] = ACTIONS(8230), + [anon_sym_consteval] = ACTIONS(8230), + [anon_sym_alignas] = ACTIONS(8244), + [anon_sym__Alignas] = ACTIONS(8244), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), }, - [STATE(2587)] = { - [sym_identifier] = ACTIONS(2768), - [anon_sym_LPAREN2] = ACTIONS(2758), - [anon_sym_BANG] = ACTIONS(2758), - [anon_sym_TILDE] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2758), - [anon_sym_AMP] = ACTIONS(2758), - [anon_sym___extension__] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2758), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_RBRACK] = ACTIONS(2758), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2768), - [anon_sym_not] = ACTIONS(2768), - [anon_sym_compl] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2758), - [anon_sym_PLUS_PLUS] = ACTIONS(2758), - [anon_sym_sizeof] = ACTIONS(2768), - [anon_sym___alignof__] = ACTIONS(2768), - [anon_sym___alignof] = ACTIONS(2768), - [anon_sym__alignof] = ACTIONS(2768), - [anon_sym_alignof] = ACTIONS(2768), - [anon_sym__Alignof] = ACTIONS(2768), - [anon_sym_offsetof] = ACTIONS(2768), - [anon_sym__Generic] = ACTIONS(2768), - [anon_sym_typename] = ACTIONS(2768), - [anon_sym_asm] = ACTIONS(2768), - [anon_sym___asm__] = ACTIONS(2768), - [anon_sym___asm] = ACTIONS(2768), - [sym_number_literal] = ACTIONS(2758), - [anon_sym_L_SQUOTE] = ACTIONS(2758), - [anon_sym_u_SQUOTE] = ACTIONS(2758), - [anon_sym_U_SQUOTE] = ACTIONS(2758), - [anon_sym_u8_SQUOTE] = ACTIONS(2758), - [anon_sym_SQUOTE] = ACTIONS(2758), - [anon_sym_L_DQUOTE] = ACTIONS(2758), - [anon_sym_u_DQUOTE] = ACTIONS(2758), - [anon_sym_U_DQUOTE] = ACTIONS(2758), - [anon_sym_u8_DQUOTE] = ACTIONS(2758), - [anon_sym_DQUOTE] = ACTIONS(2758), - [sym_true] = ACTIONS(2768), - [sym_false] = ACTIONS(2768), - [anon_sym_NULL] = ACTIONS(2768), - [anon_sym_nullptr] = ACTIONS(2768), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2768), - [anon_sym_template] = ACTIONS(2768), - [anon_sym_delete] = ACTIONS(2768), - [anon_sym_R_DQUOTE] = ACTIONS(2758), - [anon_sym_LR_DQUOTE] = ACTIONS(2758), - [anon_sym_uR_DQUOTE] = ACTIONS(2758), - [anon_sym_UR_DQUOTE] = ACTIONS(2758), - [anon_sym_u8R_DQUOTE] = ACTIONS(2758), - [anon_sym_co_await] = ACTIONS(2768), - [anon_sym_new] = ACTIONS(2768), - [anon_sym_requires] = ACTIONS(2768), - [anon_sym_CARET_CARET] = ACTIONS(2758), - [anon_sym_LBRACK_COLON] = ACTIONS(2758), - [sym_this] = ACTIONS(2768), + [STATE(2455)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_RPAREN] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7291), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7291), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7291), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7291), + [anon_sym_GT_GT] = ACTIONS(7291), + [anon_sym___extension__] = ACTIONS(7293), + [anon_sym___attribute__] = ACTIONS(7293), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_COLON] = ACTIONS(7291), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_EQ] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7293), + [anon_sym_volatile] = ACTIONS(7293), + [anon_sym_restrict] = ACTIONS(7293), + [anon_sym___restrict__] = ACTIONS(7293), + [anon_sym__Atomic] = ACTIONS(7293), + [anon_sym__Noreturn] = ACTIONS(7293), + [anon_sym_noreturn] = ACTIONS(7293), + [anon_sym__Nonnull] = ACTIONS(7293), + [anon_sym_mutable] = ACTIONS(7293), + [anon_sym_constinit] = ACTIONS(7293), + [anon_sym_consteval] = ACTIONS(7293), + [anon_sym_alignas] = ACTIONS(7293), + [anon_sym__Alignas] = ACTIONS(7293), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_STAR_EQ] = ACTIONS(7293), + [anon_sym_SLASH_EQ] = ACTIONS(7293), + [anon_sym_PERCENT_EQ] = ACTIONS(7293), + [anon_sym_PLUS_EQ] = ACTIONS(7293), + [anon_sym_DASH_EQ] = ACTIONS(7293), + [anon_sym_LT_LT_EQ] = ACTIONS(7293), + [anon_sym_GT_GT_EQ] = ACTIONS(7293), + [anon_sym_AMP_EQ] = ACTIONS(7293), + [anon_sym_CARET_EQ] = ACTIONS(7293), + [anon_sym_PIPE_EQ] = ACTIONS(7293), + [anon_sym_and_eq] = ACTIONS(7293), + [anon_sym_or_eq] = ACTIONS(7293), + [anon_sym_xor_eq] = ACTIONS(7293), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_bitor] = ACTIONS(7293), + [anon_sym_xor] = ACTIONS(7291), + [anon_sym_bitand] = ACTIONS(7293), + [anon_sym_not_eq] = ACTIONS(7293), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7291), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7293), + [anon_sym_decltype] = ACTIONS(7293), + [anon_sym_final] = ACTIONS(7293), + [anon_sym_override] = ACTIONS(7293), + [anon_sym_requires] = ACTIONS(7293), + [anon_sym_DASH_GT_STAR] = ACTIONS(7293), }, - [STATE(2588)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), - [anon_sym_COMMA] = ACTIONS(6951), - [anon_sym_RPAREN] = ACTIONS(6951), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_DASH] = ACTIONS(6949), - [anon_sym_PLUS] = ACTIONS(6949), - [anon_sym_STAR] = ACTIONS(6949), - [anon_sym_SLASH] = ACTIONS(6949), - [anon_sym_PERCENT] = ACTIONS(6949), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_PIPE] = ACTIONS(6949), - [anon_sym_CARET] = ACTIONS(6949), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_GT] = ACTIONS(6949), - [anon_sym_GT_EQ] = ACTIONS(6951), - [anon_sym_LT_EQ] = ACTIONS(6949), - [anon_sym_LT] = ACTIONS(6949), - [anon_sym_LT_LT] = ACTIONS(6949), - [anon_sym_GT_GT] = ACTIONS(6949), - [anon_sym___extension__] = ACTIONS(6951), - [anon_sym___attribute__] = ACTIONS(6951), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_COLON] = ACTIONS(6949), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(6951), - [anon_sym_LBRACK] = ACTIONS(6951), - [anon_sym_EQ] = ACTIONS(6949), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6951), - [anon_sym_volatile] = ACTIONS(6951), - [anon_sym_restrict] = ACTIONS(6951), - [anon_sym___restrict__] = ACTIONS(6951), - [anon_sym__Atomic] = ACTIONS(6951), - [anon_sym__Noreturn] = ACTIONS(6951), - [anon_sym_noreturn] = ACTIONS(6951), - [anon_sym__Nonnull] = ACTIONS(6951), - [anon_sym_mutable] = ACTIONS(6951), - [anon_sym_constinit] = ACTIONS(6951), - [anon_sym_consteval] = ACTIONS(6951), - [anon_sym_alignas] = ACTIONS(6951), - [anon_sym__Alignas] = ACTIONS(6951), - [anon_sym_QMARK] = ACTIONS(6951), - [anon_sym_STAR_EQ] = ACTIONS(6951), - [anon_sym_SLASH_EQ] = ACTIONS(6951), - [anon_sym_PERCENT_EQ] = ACTIONS(6951), - [anon_sym_PLUS_EQ] = ACTIONS(6951), - [anon_sym_DASH_EQ] = ACTIONS(6951), - [anon_sym_LT_LT_EQ] = ACTIONS(6951), - [anon_sym_GT_GT_EQ] = ACTIONS(6951), - [anon_sym_AMP_EQ] = ACTIONS(6951), - [anon_sym_CARET_EQ] = ACTIONS(6951), - [anon_sym_PIPE_EQ] = ACTIONS(6951), - [anon_sym_LT_EQ_GT] = ACTIONS(6951), - [anon_sym_or] = ACTIONS(6951), - [anon_sym_and] = ACTIONS(6951), - [anon_sym_bitor] = ACTIONS(6951), - [anon_sym_xor] = ACTIONS(6951), - [anon_sym_bitand] = ACTIONS(6951), - [anon_sym_not_eq] = ACTIONS(6951), - [anon_sym_DASH_DASH] = ACTIONS(6951), - [anon_sym_PLUS_PLUS] = ACTIONS(6951), - [anon_sym_DOT] = ACTIONS(6949), - [anon_sym_DOT_STAR] = ACTIONS(6951), - [anon_sym_DASH_GT] = ACTIONS(6949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6951), - [anon_sym_decltype] = ACTIONS(6951), - [anon_sym_final] = ACTIONS(6951), - [anon_sym_override] = ACTIONS(6951), - [anon_sym_requires] = ACTIONS(6951), - [anon_sym_DASH_GT_STAR] = ACTIONS(6951), + [STATE(2456)] = { + [sym__declaration_modifiers] = STATE(5072), + [sym_attribute_specifier] = STATE(5072), + [sym_attribute_declaration] = STATE(5072), + [sym_ms_declspec_modifier] = STATE(5072), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8759), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(5072), + [sym_type_qualifier] = STATE(5072), + [sym_alignas_qualifier] = STATE(4722), + [sym_decltype] = STATE(10768), + [sym_explicit_function_specifier] = STATE(5072), + [sym_operator_cast] = STATE(9214), + [sym__constructor_specifiers] = STATE(5072), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7901), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_operator_cast_definition_repeat1] = STATE(5072), + [sym_identifier] = ACTIONS(8228), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(8230), + [anon_sym_virtual] = ACTIONS(8232), + [anon_sym_extern] = ACTIONS(8234), + [anon_sym___attribute__] = ACTIONS(8236), + [anon_sym___attribute] = ACTIONS(8236), + [anon_sym_COLON_COLON] = ACTIONS(8238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8240), + [anon_sym___declspec] = ACTIONS(8242), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(8234), + [anon_sym_register] = ACTIONS(8234), + [anon_sym_inline] = ACTIONS(8234), + [anon_sym___inline] = ACTIONS(8234), + [anon_sym___inline__] = ACTIONS(8234), + [anon_sym___forceinline] = ACTIONS(8234), + [anon_sym_thread_local] = ACTIONS(8234), + [anon_sym___thread] = ACTIONS(8234), + [anon_sym_const] = ACTIONS(8230), + [anon_sym_constexpr] = ACTIONS(8230), + [anon_sym_volatile] = ACTIONS(8230), + [anon_sym_restrict] = ACTIONS(8230), + [anon_sym___restrict__] = ACTIONS(8230), + [anon_sym__Atomic] = ACTIONS(8230), + [anon_sym__Noreturn] = ACTIONS(8230), + [anon_sym_noreturn] = ACTIONS(8230), + [anon_sym__Nonnull] = ACTIONS(8230), + [anon_sym_mutable] = ACTIONS(8230), + [anon_sym_constinit] = ACTIONS(8230), + [anon_sym_consteval] = ACTIONS(8230), + [anon_sym_alignas] = ACTIONS(8244), + [anon_sym__Alignas] = ACTIONS(8244), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), }, - [STATE(2589)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6902), - [anon_sym_COMMA] = ACTIONS(6902), - [anon_sym_LPAREN2] = ACTIONS(6902), - [anon_sym_DASH] = ACTIONS(6900), - [anon_sym_PLUS] = ACTIONS(6900), - [anon_sym_STAR] = ACTIONS(6900), - [anon_sym_SLASH] = ACTIONS(6900), - [anon_sym_PERCENT] = ACTIONS(6900), - [anon_sym_PIPE_PIPE] = ACTIONS(6902), - [anon_sym_AMP_AMP] = ACTIONS(6902), - [anon_sym_PIPE] = ACTIONS(6900), - [anon_sym_CARET] = ACTIONS(6900), - [anon_sym_AMP] = ACTIONS(6900), - [anon_sym_EQ_EQ] = ACTIONS(6902), - [anon_sym_BANG_EQ] = ACTIONS(6902), - [anon_sym_GT] = ACTIONS(6900), - [anon_sym_GT_EQ] = ACTIONS(6900), - [anon_sym_LT_EQ] = ACTIONS(6900), - [anon_sym_LT] = ACTIONS(6900), - [anon_sym_LT_LT] = ACTIONS(6900), - [anon_sym_GT_GT] = ACTIONS(6900), - [anon_sym___extension__] = ACTIONS(6902), - [sym_ms_restrict_modifier] = ACTIONS(6900), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6902), - [sym_ms_signed_ptr_modifier] = ACTIONS(6902), - [anon_sym__unaligned] = ACTIONS(6902), - [anon_sym___unaligned] = ACTIONS(6902), - [anon_sym_LBRACK] = ACTIONS(6902), - [anon_sym_EQ] = ACTIONS(6900), - [anon_sym_const] = ACTIONS(6900), - [anon_sym_constexpr] = ACTIONS(6902), - [anon_sym_volatile] = ACTIONS(6902), - [anon_sym_restrict] = ACTIONS(6902), - [anon_sym___restrict__] = ACTIONS(6902), - [anon_sym__Atomic] = ACTIONS(6902), - [anon_sym__Noreturn] = ACTIONS(6902), - [anon_sym_noreturn] = ACTIONS(6902), - [anon_sym__Nonnull] = ACTIONS(6902), - [anon_sym_mutable] = ACTIONS(6902), - [anon_sym_constinit] = ACTIONS(6902), - [anon_sym_consteval] = ACTIONS(6902), - [anon_sym_alignas] = ACTIONS(6902), - [anon_sym__Alignas] = ACTIONS(6902), - [anon_sym_QMARK] = ACTIONS(6902), - [anon_sym_STAR_EQ] = ACTIONS(6902), - [anon_sym_SLASH_EQ] = ACTIONS(6902), - [anon_sym_PERCENT_EQ] = ACTIONS(6902), - [anon_sym_PLUS_EQ] = ACTIONS(6902), - [anon_sym_DASH_EQ] = ACTIONS(6902), - [anon_sym_LT_LT_EQ] = ACTIONS(6902), - [anon_sym_GT_GT_EQ] = ACTIONS(6900), - [anon_sym_AMP_EQ] = ACTIONS(6902), - [anon_sym_CARET_EQ] = ACTIONS(6902), - [anon_sym_PIPE_EQ] = ACTIONS(6902), - [anon_sym_and_eq] = ACTIONS(6902), - [anon_sym_or_eq] = ACTIONS(6902), - [anon_sym_xor_eq] = ACTIONS(6902), - [anon_sym_LT_EQ_GT] = ACTIONS(6902), - [anon_sym_or] = ACTIONS(6900), - [anon_sym_and] = ACTIONS(6900), - [anon_sym_bitor] = ACTIONS(6902), - [anon_sym_xor] = ACTIONS(6900), - [anon_sym_bitand] = ACTIONS(6902), - [anon_sym_not_eq] = ACTIONS(6902), - [anon_sym_DASH_DASH] = ACTIONS(6902), - [anon_sym_PLUS_PLUS] = ACTIONS(6902), - [anon_sym_DOT] = ACTIONS(6900), - [anon_sym_DOT_STAR] = ACTIONS(6902), - [anon_sym_DASH_GT] = ACTIONS(6902), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6902), - [anon_sym_override] = ACTIONS(6902), - [anon_sym_GT2] = ACTIONS(6902), - [anon_sym_requires] = ACTIONS(6902), + [STATE(2457)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_RPAREN] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7291), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7291), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7291), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7291), + [anon_sym_GT_GT] = ACTIONS(7291), + [anon_sym___extension__] = ACTIONS(7293), + [anon_sym___attribute__] = ACTIONS(7293), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_COLON] = ACTIONS(7291), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_EQ] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7293), + [anon_sym_volatile] = ACTIONS(7293), + [anon_sym_restrict] = ACTIONS(7293), + [anon_sym___restrict__] = ACTIONS(7293), + [anon_sym__Atomic] = ACTIONS(7293), + [anon_sym__Noreturn] = ACTIONS(7293), + [anon_sym_noreturn] = ACTIONS(7293), + [anon_sym__Nonnull] = ACTIONS(7293), + [anon_sym_mutable] = ACTIONS(7293), + [anon_sym_constinit] = ACTIONS(7293), + [anon_sym_consteval] = ACTIONS(7293), + [anon_sym_alignas] = ACTIONS(7293), + [anon_sym__Alignas] = ACTIONS(7293), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_STAR_EQ] = ACTIONS(7293), + [anon_sym_SLASH_EQ] = ACTIONS(7293), + [anon_sym_PERCENT_EQ] = ACTIONS(7293), + [anon_sym_PLUS_EQ] = ACTIONS(7293), + [anon_sym_DASH_EQ] = ACTIONS(7293), + [anon_sym_LT_LT_EQ] = ACTIONS(7293), + [anon_sym_GT_GT_EQ] = ACTIONS(7293), + [anon_sym_AMP_EQ] = ACTIONS(7293), + [anon_sym_CARET_EQ] = ACTIONS(7293), + [anon_sym_PIPE_EQ] = ACTIONS(7293), + [anon_sym_and_eq] = ACTIONS(7293), + [anon_sym_or_eq] = ACTIONS(7293), + [anon_sym_xor_eq] = ACTIONS(7293), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_bitor] = ACTIONS(7293), + [anon_sym_xor] = ACTIONS(7291), + [anon_sym_bitand] = ACTIONS(7293), + [anon_sym_not_eq] = ACTIONS(7293), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7291), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7293), + [anon_sym_decltype] = ACTIONS(7293), + [anon_sym_final] = ACTIONS(7293), + [anon_sym_override] = ACTIONS(7293), + [anon_sym_requires] = ACTIONS(7293), + [anon_sym_DASH_GT_STAR] = ACTIONS(7293), }, - [STATE(2590)] = { - [sym_identifier] = ACTIONS(2803), - [aux_sym_preproc_def_token1] = ACTIONS(2803), - [aux_sym_preproc_if_token1] = ACTIONS(2803), - [aux_sym_preproc_if_token2] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), - [aux_sym_preproc_else_token1] = ACTIONS(2803), - [aux_sym_preproc_elif_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2803), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym___extension__] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2803), - [anon_sym_virtual] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym___attribute__] = ACTIONS(2803), - [anon_sym___attribute] = ACTIONS(2803), - [anon_sym_using] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2803), - [anon_sym___based] = ACTIONS(2803), - [anon_sym_signed] = ACTIONS(2803), - [anon_sym_unsigned] = ACTIONS(2803), - [anon_sym_long] = ACTIONS(2803), - [anon_sym_short] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_register] = ACTIONS(2803), - [anon_sym_inline] = ACTIONS(2803), - [anon_sym___inline] = ACTIONS(2803), - [anon_sym___inline__] = ACTIONS(2803), - [anon_sym___forceinline] = ACTIONS(2803), - [anon_sym_thread_local] = ACTIONS(2803), - [anon_sym___thread] = ACTIONS(2803), - [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__Nonnull] = ACTIONS(2803), - [anon_sym_mutable] = ACTIONS(2803), - [anon_sym_constinit] = ACTIONS(2803), - [anon_sym_consteval] = ACTIONS(2803), - [anon_sym_alignas] = ACTIONS(2803), - [anon_sym__Alignas] = ACTIONS(2803), - [sym_primitive_type] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_typename] = ACTIONS(2803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2803), - [anon_sym_decltype] = ACTIONS(2803), - [anon_sym_explicit] = ACTIONS(2803), - [anon_sym_private] = ACTIONS(2803), - [anon_sym_template] = ACTIONS(2803), - [anon_sym_operator] = ACTIONS(2803), - [anon_sym_friend] = ACTIONS(2803), - [anon_sym_public] = ACTIONS(2803), - [anon_sym_protected] = ACTIONS(2803), - [anon_sym_static_assert] = ACTIONS(2803), - [anon_sym_catch] = ACTIONS(2803), - [anon_sym_LBRACK_COLON] = ACTIONS(2801), + [STATE(2458)] = { + [sym_attribute_specifier] = STATE(4124), + [sym_attribute_declaration] = STATE(4490), + [sym_gnu_asm_expression] = STATE(9129), + [sym_virtual_specifier] = STATE(4610), + [sym__function_exception_specification] = STATE(2908), + [sym__function_attributes_end] = STATE(4298), + [sym__function_postfix] = STATE(4840), + [sym_trailing_return_type] = STATE(4339), + [sym_noexcept] = STATE(2908), + [sym_throw_specifier] = STATE(2908), + [sym_requires_clause] = STATE(4840), + [aux_sym_type_definition_repeat1] = STATE(4124), + [aux_sym_attributed_declarator_repeat1] = STATE(4490), + [aux_sym__function_postfix_repeat1] = STATE(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6646), + [anon_sym___attribute] = ACTIONS(6648), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8168), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8174), + [anon_sym_override] = ACTIONS(8174), + [anon_sym_noexcept] = ACTIONS(6662), + [anon_sym_throw] = ACTIONS(6664), + [anon_sym_requires] = ACTIONS(8177), + [anon_sym_DASH_GT_STAR] = ACTIONS(7791), }, - [STATE(2591)] = { - [sym_decltype_auto] = STATE(3047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6798), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6798), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8268), - [anon_sym_decltype] = ACTIONS(6644), - [anon_sym_final] = ACTIONS(6800), - [anon_sym_override] = ACTIONS(6800), - [anon_sym_GT2] = ACTIONS(6800), - [anon_sym_requires] = ACTIONS(6800), + [STATE(2459)] = { + [sym_type_qualifier] = STATE(2500), + [sym_alignas_qualifier] = STATE(2727), + [aux_sym__type_definition_type_repeat1] = STATE(2500), + [sym_identifier] = ACTIONS(6752), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), + [anon_sym_COMMA] = ACTIONS(6754), + [anon_sym_RPAREN] = ACTIONS(6754), + [aux_sym_preproc_if_token2] = ACTIONS(6754), + [aux_sym_preproc_else_token1] = ACTIONS(6754), + [aux_sym_preproc_elif_token1] = ACTIONS(6752), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6754), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6754), + [anon_sym_LPAREN2] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6752), + [anon_sym_STAR] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6752), + [anon_sym_PERCENT] = ACTIONS(6754), + [anon_sym_PIPE_PIPE] = ACTIONS(6754), + [anon_sym_AMP_AMP] = ACTIONS(6754), + [anon_sym_PIPE] = ACTIONS(6752), + [anon_sym_CARET] = ACTIONS(6754), + [anon_sym_AMP] = ACTIONS(6752), + [anon_sym_EQ_EQ] = ACTIONS(6754), + [anon_sym_BANG_EQ] = ACTIONS(6754), + [anon_sym_GT] = ACTIONS(6752), + [anon_sym_GT_EQ] = ACTIONS(6754), + [anon_sym_LT_EQ] = ACTIONS(6752), + [anon_sym_LT] = ACTIONS(6752), + [anon_sym_LT_LT] = ACTIONS(6754), + [anon_sym_GT_GT] = ACTIONS(6754), + [anon_sym_SEMI] = ACTIONS(6754), + [anon_sym___extension__] = ACTIONS(7182), + [anon_sym___attribute__] = ACTIONS(6752), + [anon_sym___attribute] = ACTIONS(6752), + [anon_sym_COLON] = ACTIONS(6752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6754), + [anon_sym_RBRACE] = ACTIONS(6754), + [anon_sym_LBRACK] = ACTIONS(6752), + [anon_sym_const] = ACTIONS(7182), + [anon_sym_constexpr] = ACTIONS(7182), + [anon_sym_volatile] = ACTIONS(7182), + [anon_sym_restrict] = ACTIONS(7182), + [anon_sym___restrict__] = ACTIONS(7182), + [anon_sym__Atomic] = ACTIONS(7182), + [anon_sym__Noreturn] = ACTIONS(7182), + [anon_sym_noreturn] = ACTIONS(7182), + [anon_sym__Nonnull] = ACTIONS(7182), + [anon_sym_mutable] = ACTIONS(7182), + [anon_sym_constinit] = ACTIONS(7182), + [anon_sym_consteval] = ACTIONS(7182), + [anon_sym_alignas] = ACTIONS(7268), + [anon_sym__Alignas] = ACTIONS(7268), + [anon_sym_QMARK] = ACTIONS(6754), + [anon_sym_LT_EQ_GT] = ACTIONS(6754), + [anon_sym_or] = ACTIONS(6752), + [anon_sym_and] = ACTIONS(6752), + [anon_sym_bitor] = ACTIONS(6752), + [anon_sym_xor] = ACTIONS(6752), + [anon_sym_bitand] = ACTIONS(6752), + [anon_sym_not_eq] = ACTIONS(6752), + [anon_sym_DASH_DASH] = ACTIONS(6754), + [anon_sym_PLUS_PLUS] = ACTIONS(6754), + [anon_sym_asm] = ACTIONS(6752), + [anon_sym___asm__] = ACTIONS(6752), + [anon_sym___asm] = ACTIONS(6752), + [anon_sym_DOT] = ACTIONS(6752), + [anon_sym_DOT_STAR] = ACTIONS(6754), + [anon_sym_DASH_GT] = ACTIONS(6754), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6752), + [anon_sym_override] = ACTIONS(6752), + [anon_sym_noexcept] = ACTIONS(6752), + [anon_sym_throw] = ACTIONS(6752), + [anon_sym_requires] = ACTIONS(6752), + [anon_sym_COLON_RBRACK] = ACTIONS(6754), }, - [STATE(2592)] = { - [sym_identifier] = ACTIONS(2768), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), - [anon_sym_COMMA] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [aux_sym_preproc_if_token2] = ACTIONS(2758), - [aux_sym_preproc_else_token1] = ACTIONS(2758), - [aux_sym_preproc_elif_token1] = ACTIONS(2768), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2758), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2758), - [anon_sym_LPAREN2] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2758), - [anon_sym_SLASH] = ACTIONS(2768), - [anon_sym_PERCENT] = ACTIONS(2758), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2758), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2768), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_LT_EQ] = ACTIONS(2768), - [anon_sym_LT] = ACTIONS(2768), - [anon_sym_LT_LT] = ACTIONS(2758), - [anon_sym_GT_GT] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym___extension__] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_COLON] = ACTIONS(2768), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_RBRACE] = ACTIONS(2758), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2758), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2768), - [anon_sym_QMARK] = ACTIONS(2758), - [anon_sym_LT_EQ_GT] = ACTIONS(2758), - [anon_sym_or] = ACTIONS(2768), - [anon_sym_and] = ACTIONS(2768), - [anon_sym_bitor] = ACTIONS(2768), - [anon_sym_xor] = ACTIONS(2768), - [anon_sym_bitand] = ACTIONS(2768), - [anon_sym_not_eq] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2758), - [anon_sym_PLUS_PLUS] = ACTIONS(2758), - [anon_sym_DOT] = ACTIONS(2768), - [anon_sym_DOT_STAR] = ACTIONS(2758), - [anon_sym_DASH_GT] = ACTIONS(2758), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2768), - [anon_sym_override] = ACTIONS(2768), - [anon_sym_requires] = ACTIONS(2768), - [anon_sym_COLON_RBRACK] = ACTIONS(2758), + [STATE(2460)] = { + [sym_attribute_specifier] = STATE(3242), + [sym_field_declaration_list] = STATE(2895), + [sym_virtual_specifier] = STATE(9570), + [sym_base_class_clause] = STATE(10484), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), + [anon_sym_COMMA] = ACTIONS(7237), + [anon_sym_LPAREN2] = ACTIONS(7237), + [anon_sym_DASH] = ACTIONS(7235), + [anon_sym_PLUS] = ACTIONS(7235), + [anon_sym_STAR] = ACTIONS(7235), + [anon_sym_SLASH] = ACTIONS(7235), + [anon_sym_PERCENT] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_AMP_AMP] = ACTIONS(7237), + [anon_sym_PIPE] = ACTIONS(7235), + [anon_sym_CARET] = ACTIONS(7235), + [anon_sym_AMP] = ACTIONS(7235), + [anon_sym_EQ_EQ] = ACTIONS(7237), + [anon_sym_BANG_EQ] = ACTIONS(7237), + [anon_sym_GT] = ACTIONS(7235), + [anon_sym_GT_EQ] = ACTIONS(7235), + [anon_sym_LT_EQ] = ACTIONS(7235), + [anon_sym_LT] = ACTIONS(7235), + [anon_sym_LT_LT] = ACTIONS(7235), + [anon_sym_GT_GT] = ACTIONS(7235), + [anon_sym___extension__] = ACTIONS(7237), + [anon_sym___attribute__] = ACTIONS(8265), + [anon_sym___attribute] = ACTIONS(8267), + [anon_sym_COLON] = ACTIONS(8156), + [anon_sym_LBRACE] = ACTIONS(8269), + [anon_sym_LBRACK] = ACTIONS(7237), + [anon_sym_EQ] = ACTIONS(7235), + [anon_sym_const] = ACTIONS(7235), + [anon_sym_constexpr] = ACTIONS(7237), + [anon_sym_volatile] = ACTIONS(7237), + [anon_sym_restrict] = ACTIONS(7237), + [anon_sym___restrict__] = ACTIONS(7237), + [anon_sym__Atomic] = ACTIONS(7237), + [anon_sym__Noreturn] = ACTIONS(7237), + [anon_sym_noreturn] = ACTIONS(7237), + [anon_sym__Nonnull] = ACTIONS(7237), + [anon_sym_mutable] = ACTIONS(7237), + [anon_sym_constinit] = ACTIONS(7237), + [anon_sym_consteval] = ACTIONS(7237), + [anon_sym_alignas] = ACTIONS(7237), + [anon_sym__Alignas] = ACTIONS(7237), + [anon_sym_QMARK] = ACTIONS(7237), + [anon_sym_STAR_EQ] = ACTIONS(7237), + [anon_sym_SLASH_EQ] = ACTIONS(7237), + [anon_sym_PERCENT_EQ] = ACTIONS(7237), + [anon_sym_PLUS_EQ] = ACTIONS(7237), + [anon_sym_DASH_EQ] = ACTIONS(7237), + [anon_sym_LT_LT_EQ] = ACTIONS(7237), + [anon_sym_GT_GT_EQ] = ACTIONS(7235), + [anon_sym_AMP_EQ] = ACTIONS(7237), + [anon_sym_CARET_EQ] = ACTIONS(7237), + [anon_sym_PIPE_EQ] = ACTIONS(7237), + [anon_sym_and_eq] = ACTIONS(7237), + [anon_sym_or_eq] = ACTIONS(7237), + [anon_sym_xor_eq] = ACTIONS(7237), + [anon_sym_LT_EQ_GT] = ACTIONS(7237), + [anon_sym_or] = ACTIONS(7235), + [anon_sym_and] = ACTIONS(7235), + [anon_sym_bitor] = ACTIONS(7237), + [anon_sym_xor] = ACTIONS(7235), + [anon_sym_bitand] = ACTIONS(7237), + [anon_sym_not_eq] = ACTIONS(7237), + [anon_sym_DASH_DASH] = ACTIONS(7237), + [anon_sym_PLUS_PLUS] = ACTIONS(7237), + [anon_sym_DOT] = ACTIONS(7235), + [anon_sym_DOT_STAR] = ACTIONS(7237), + [anon_sym_DASH_GT] = ACTIONS(7237), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8160), + [anon_sym_override] = ACTIONS(8160), + [anon_sym_GT2] = ACTIONS(7237), + [anon_sym_requires] = ACTIONS(7237), }, - [STATE(2593)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), - [anon_sym_COMMA] = ACTIONS(6951), - [anon_sym_RPAREN] = ACTIONS(6951), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_DASH] = ACTIONS(6949), - [anon_sym_PLUS] = ACTIONS(6949), - [anon_sym_STAR] = ACTIONS(6949), - [anon_sym_SLASH] = ACTIONS(6949), - [anon_sym_PERCENT] = ACTIONS(6949), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_PIPE] = ACTIONS(6949), - [anon_sym_CARET] = ACTIONS(6949), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_GT] = ACTIONS(6949), - [anon_sym_GT_EQ] = ACTIONS(6951), - [anon_sym_LT_EQ] = ACTIONS(6949), - [anon_sym_LT] = ACTIONS(6949), - [anon_sym_LT_LT] = ACTIONS(6949), - [anon_sym_GT_GT] = ACTIONS(6949), - [anon_sym___extension__] = ACTIONS(6951), - [anon_sym___attribute__] = ACTIONS(6951), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_COLON] = ACTIONS(6949), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(6951), - [anon_sym_LBRACK] = ACTIONS(6951), - [anon_sym_EQ] = ACTIONS(6949), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6951), - [anon_sym_volatile] = ACTIONS(6951), - [anon_sym_restrict] = ACTIONS(6951), - [anon_sym___restrict__] = ACTIONS(6951), - [anon_sym__Atomic] = ACTIONS(6951), - [anon_sym__Noreturn] = ACTIONS(6951), - [anon_sym_noreturn] = ACTIONS(6951), - [anon_sym__Nonnull] = ACTIONS(6951), - [anon_sym_mutable] = ACTIONS(6951), - [anon_sym_constinit] = ACTIONS(6951), - [anon_sym_consteval] = ACTIONS(6951), - [anon_sym_alignas] = ACTIONS(6951), - [anon_sym__Alignas] = ACTIONS(6951), - [anon_sym_QMARK] = ACTIONS(6951), - [anon_sym_STAR_EQ] = ACTIONS(6951), - [anon_sym_SLASH_EQ] = ACTIONS(6951), - [anon_sym_PERCENT_EQ] = ACTIONS(6951), - [anon_sym_PLUS_EQ] = ACTIONS(6951), - [anon_sym_DASH_EQ] = ACTIONS(6951), - [anon_sym_LT_LT_EQ] = ACTIONS(6951), - [anon_sym_GT_GT_EQ] = ACTIONS(6951), - [anon_sym_AMP_EQ] = ACTIONS(6951), - [anon_sym_CARET_EQ] = ACTIONS(6951), - [anon_sym_PIPE_EQ] = ACTIONS(6951), - [anon_sym_LT_EQ_GT] = ACTIONS(6951), - [anon_sym_or] = ACTIONS(6951), - [anon_sym_and] = ACTIONS(6951), - [anon_sym_bitor] = ACTIONS(6951), - [anon_sym_xor] = ACTIONS(6951), - [anon_sym_bitand] = ACTIONS(6951), - [anon_sym_not_eq] = ACTIONS(6951), - [anon_sym_DASH_DASH] = ACTIONS(6951), - [anon_sym_PLUS_PLUS] = ACTIONS(6951), - [anon_sym_DOT] = ACTIONS(6949), - [anon_sym_DOT_STAR] = ACTIONS(6951), - [anon_sym_DASH_GT] = ACTIONS(6949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6951), - [anon_sym_decltype] = ACTIONS(6951), - [anon_sym_final] = ACTIONS(6951), - [anon_sym_override] = ACTIONS(6951), - [anon_sym_requires] = ACTIONS(6951), - [anon_sym_DASH_GT_STAR] = ACTIONS(6951), + [STATE(2461)] = { + [sym_type_qualifier] = STATE(2367), + [sym_alignas_qualifier] = STATE(2576), + [aux_sym__type_definition_type_repeat1] = STATE(2367), + [aux_sym_sized_type_specifier_repeat1] = STATE(2639), + [sym_identifier] = ACTIONS(8068), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), + [anon_sym_COMMA] = ACTIONS(7205), + [anon_sym_RPAREN] = ACTIONS(7205), + [anon_sym_LPAREN2] = ACTIONS(7205), + [anon_sym_DASH] = ACTIONS(7207), + [anon_sym_PLUS] = ACTIONS(7207), + [anon_sym_STAR] = ACTIONS(7207), + [anon_sym_SLASH] = ACTIONS(7207), + [anon_sym_PERCENT] = ACTIONS(7207), + [anon_sym_PIPE_PIPE] = ACTIONS(7205), + [anon_sym_AMP_AMP] = ACTIONS(7205), + [anon_sym_PIPE] = ACTIONS(7207), + [anon_sym_CARET] = ACTIONS(7207), + [anon_sym_AMP] = ACTIONS(7207), + [anon_sym_EQ_EQ] = ACTIONS(7205), + [anon_sym_BANG_EQ] = ACTIONS(7205), + [anon_sym_GT] = ACTIONS(7207), + [anon_sym_GT_EQ] = ACTIONS(7205), + [anon_sym_LT_EQ] = ACTIONS(7207), + [anon_sym_LT] = ACTIONS(7207), + [anon_sym_LT_LT] = ACTIONS(7207), + [anon_sym_GT_GT] = ACTIONS(7207), + [anon_sym___extension__] = ACTIONS(7323), + [anon_sym___attribute__] = ACTIONS(7207), + [anon_sym___attribute] = ACTIONS(7207), + [anon_sym_LBRACE] = ACTIONS(7205), + [anon_sym_signed] = ACTIONS(8073), + [anon_sym_unsigned] = ACTIONS(8073), + [anon_sym_long] = ACTIONS(8073), + [anon_sym_short] = ACTIONS(8073), + [anon_sym_LBRACK] = ACTIONS(7205), + [anon_sym_EQ] = ACTIONS(7207), + [anon_sym_const] = ACTIONS(7323), + [anon_sym_constexpr] = ACTIONS(7323), + [anon_sym_volatile] = ACTIONS(7323), + [anon_sym_restrict] = ACTIONS(7323), + [anon_sym___restrict__] = ACTIONS(7323), + [anon_sym__Atomic] = ACTIONS(7323), + [anon_sym__Noreturn] = ACTIONS(7323), + [anon_sym_noreturn] = ACTIONS(7323), + [anon_sym__Nonnull] = ACTIONS(7323), + [anon_sym_mutable] = ACTIONS(7323), + [anon_sym_constinit] = ACTIONS(7323), + [anon_sym_consteval] = ACTIONS(7323), + [anon_sym_alignas] = ACTIONS(8263), + [anon_sym__Alignas] = ACTIONS(8263), + [sym_primitive_type] = ACTIONS(8078), + [anon_sym_QMARK] = ACTIONS(7205), + [anon_sym_STAR_EQ] = ACTIONS(7205), + [anon_sym_SLASH_EQ] = ACTIONS(7205), + [anon_sym_PERCENT_EQ] = ACTIONS(7205), + [anon_sym_PLUS_EQ] = ACTIONS(7205), + [anon_sym_DASH_EQ] = ACTIONS(7205), + [anon_sym_LT_LT_EQ] = ACTIONS(7205), + [anon_sym_GT_GT_EQ] = ACTIONS(7205), + [anon_sym_AMP_EQ] = ACTIONS(7205), + [anon_sym_CARET_EQ] = ACTIONS(7205), + [anon_sym_PIPE_EQ] = ACTIONS(7205), + [anon_sym_LT_EQ_GT] = ACTIONS(7205), + [anon_sym_or] = ACTIONS(7207), + [anon_sym_and] = ACTIONS(7207), + [anon_sym_bitor] = ACTIONS(7207), + [anon_sym_xor] = ACTIONS(7207), + [anon_sym_bitand] = ACTIONS(7207), + [anon_sym_not_eq] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7205), + [anon_sym_PLUS_PLUS] = ACTIONS(7205), + [anon_sym_DOT] = ACTIONS(7207), + [anon_sym_DOT_STAR] = ACTIONS(7205), + [anon_sym_DASH_GT] = ACTIONS(7207), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7205), }, - [STATE(2594)] = { - [sym_attribute_specifier] = STATE(2850), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7089), - [anon_sym_COMMA] = ACTIONS(7089), - [anon_sym_RPAREN] = ACTIONS(7089), - [anon_sym_LPAREN2] = ACTIONS(7089), - [anon_sym_DASH] = ACTIONS(7087), - [anon_sym_PLUS] = ACTIONS(7087), - [anon_sym_STAR] = ACTIONS(7087), - [anon_sym_SLASH] = ACTIONS(7087), - [anon_sym_PERCENT] = ACTIONS(7087), - [anon_sym_PIPE_PIPE] = ACTIONS(7089), - [anon_sym_AMP_AMP] = ACTIONS(7089), - [anon_sym_PIPE] = ACTIONS(7087), - [anon_sym_CARET] = ACTIONS(7087), - [anon_sym_AMP] = ACTIONS(7087), - [anon_sym_EQ_EQ] = ACTIONS(7089), - [anon_sym_BANG_EQ] = ACTIONS(7089), - [anon_sym_GT] = ACTIONS(7087), - [anon_sym_GT_EQ] = ACTIONS(7089), - [anon_sym_LT_EQ] = ACTIONS(7087), - [anon_sym_LT] = ACTIONS(7087), - [anon_sym_LT_LT] = ACTIONS(7087), - [anon_sym_GT_GT] = ACTIONS(7087), - [anon_sym___extension__] = ACTIONS(7089), - [anon_sym___attribute__] = ACTIONS(7813), - [anon_sym___attribute] = ACTIONS(7815), - [anon_sym_LBRACE] = ACTIONS(7089), - [anon_sym_LBRACK] = ACTIONS(7089), - [anon_sym_EQ] = ACTIONS(7087), - [anon_sym_const] = ACTIONS(7087), - [anon_sym_constexpr] = ACTIONS(7089), - [anon_sym_volatile] = ACTIONS(7089), - [anon_sym_restrict] = ACTIONS(7089), - [anon_sym___restrict__] = ACTIONS(7089), - [anon_sym__Atomic] = ACTIONS(7089), - [anon_sym__Noreturn] = ACTIONS(7089), - [anon_sym_noreturn] = ACTIONS(7089), - [anon_sym__Nonnull] = ACTIONS(7089), - [anon_sym_mutable] = ACTIONS(7089), - [anon_sym_constinit] = ACTIONS(7089), - [anon_sym_consteval] = ACTIONS(7089), - [anon_sym_alignas] = ACTIONS(7089), - [anon_sym__Alignas] = ACTIONS(7089), - [anon_sym_QMARK] = ACTIONS(7089), - [anon_sym_STAR_EQ] = ACTIONS(7089), - [anon_sym_SLASH_EQ] = ACTIONS(7089), - [anon_sym_PERCENT_EQ] = ACTIONS(7089), - [anon_sym_PLUS_EQ] = ACTIONS(7089), - [anon_sym_DASH_EQ] = ACTIONS(7089), - [anon_sym_LT_LT_EQ] = ACTIONS(7089), - [anon_sym_GT_GT_EQ] = ACTIONS(7089), - [anon_sym_AMP_EQ] = ACTIONS(7089), - [anon_sym_CARET_EQ] = ACTIONS(7089), - [anon_sym_PIPE_EQ] = ACTIONS(7089), - [anon_sym_and_eq] = ACTIONS(7089), - [anon_sym_or_eq] = ACTIONS(7089), - [anon_sym_xor_eq] = ACTIONS(7089), - [anon_sym_LT_EQ_GT] = ACTIONS(7089), - [anon_sym_or] = ACTIONS(7087), - [anon_sym_and] = ACTIONS(7087), - [anon_sym_bitor] = ACTIONS(7089), - [anon_sym_xor] = ACTIONS(7087), - [anon_sym_bitand] = ACTIONS(7089), - [anon_sym_not_eq] = ACTIONS(7089), - [anon_sym_DASH_DASH] = ACTIONS(7089), - [anon_sym_PLUS_PLUS] = ACTIONS(7089), - [anon_sym_DOT] = ACTIONS(7087), - [anon_sym_DOT_STAR] = ACTIONS(7089), - [anon_sym_DASH_GT] = ACTIONS(7087), + [STATE(2462)] = { + [sym__declaration_modifiers] = STATE(5072), + [sym_attribute_specifier] = STATE(5072), + [sym_attribute_declaration] = STATE(5072), + [sym_ms_declspec_modifier] = STATE(5072), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8720), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(5072), + [sym_type_qualifier] = STATE(5072), + [sym_alignas_qualifier] = STATE(4722), + [sym_decltype] = STATE(10768), + [sym_explicit_function_specifier] = STATE(5072), + [sym_operator_cast] = STATE(9266), + [sym__constructor_specifiers] = STATE(5072), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7901), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_operator_cast_identifier] = STATE(9266), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_operator_cast_definition_repeat1] = STATE(5072), + [sym_identifier] = ACTIONS(8228), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(8230), + [anon_sym_virtual] = ACTIONS(8232), + [anon_sym_extern] = ACTIONS(8234), + [anon_sym___attribute__] = ACTIONS(8236), + [anon_sym___attribute] = ACTIONS(8236), + [anon_sym_COLON_COLON] = ACTIONS(8238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8240), + [anon_sym___declspec] = ACTIONS(8242), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(8234), + [anon_sym_register] = ACTIONS(8234), + [anon_sym_inline] = ACTIONS(8234), + [anon_sym___inline] = ACTIONS(8234), + [anon_sym___inline__] = ACTIONS(8234), + [anon_sym___forceinline] = ACTIONS(8234), + [anon_sym_thread_local] = ACTIONS(8234), + [anon_sym___thread] = ACTIONS(8234), + [anon_sym_const] = ACTIONS(8230), + [anon_sym_constexpr] = ACTIONS(8230), + [anon_sym_volatile] = ACTIONS(8230), + [anon_sym_restrict] = ACTIONS(8230), + [anon_sym___restrict__] = ACTIONS(8230), + [anon_sym__Atomic] = ACTIONS(8230), + [anon_sym__Noreturn] = ACTIONS(8230), + [anon_sym_noreturn] = ACTIONS(8230), + [anon_sym__Nonnull] = ACTIONS(8230), + [anon_sym_mutable] = ACTIONS(8230), + [anon_sym_constinit] = ACTIONS(8230), + [anon_sym_consteval] = ACTIONS(8230), + [anon_sym_alignas] = ACTIONS(8244), + [anon_sym__Alignas] = ACTIONS(8244), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7089), - [anon_sym_override] = ACTIONS(7089), - [anon_sym_requires] = ACTIONS(7089), - [anon_sym_DASH_GT_STAR] = ACTIONS(7089), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), }, - [STATE(2595)] = { - [sym_attribute_specifier] = STATE(2861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7189), - [anon_sym_COMMA] = ACTIONS(7189), - [anon_sym_RPAREN] = ACTIONS(7189), - [anon_sym_LPAREN2] = ACTIONS(7189), - [anon_sym_DASH] = ACTIONS(7187), - [anon_sym_PLUS] = ACTIONS(7187), - [anon_sym_STAR] = ACTIONS(7187), - [anon_sym_SLASH] = ACTIONS(7187), - [anon_sym_PERCENT] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_AMP_AMP] = ACTIONS(7189), - [anon_sym_PIPE] = ACTIONS(7187), - [anon_sym_CARET] = ACTIONS(7187), - [anon_sym_AMP] = ACTIONS(7187), - [anon_sym_EQ_EQ] = ACTIONS(7189), - [anon_sym_BANG_EQ] = ACTIONS(7189), - [anon_sym_GT] = ACTIONS(7187), - [anon_sym_GT_EQ] = ACTIONS(7189), - [anon_sym_LT_EQ] = ACTIONS(7187), - [anon_sym_LT] = ACTIONS(7187), - [anon_sym_LT_LT] = ACTIONS(7187), - [anon_sym_GT_GT] = ACTIONS(7187), - [anon_sym___extension__] = ACTIONS(7189), - [anon_sym___attribute__] = ACTIONS(7813), - [anon_sym___attribute] = ACTIONS(7815), - [anon_sym_LBRACE] = ACTIONS(7189), - [anon_sym_LBRACK] = ACTIONS(7189), - [anon_sym_EQ] = ACTIONS(7187), - [anon_sym_const] = ACTIONS(7187), - [anon_sym_constexpr] = ACTIONS(7189), - [anon_sym_volatile] = ACTIONS(7189), - [anon_sym_restrict] = ACTIONS(7189), - [anon_sym___restrict__] = ACTIONS(7189), - [anon_sym__Atomic] = ACTIONS(7189), - [anon_sym__Noreturn] = ACTIONS(7189), - [anon_sym_noreturn] = ACTIONS(7189), - [anon_sym__Nonnull] = ACTIONS(7189), - [anon_sym_mutable] = ACTIONS(7189), - [anon_sym_constinit] = ACTIONS(7189), - [anon_sym_consteval] = ACTIONS(7189), - [anon_sym_alignas] = ACTIONS(7189), - [anon_sym__Alignas] = ACTIONS(7189), - [anon_sym_QMARK] = ACTIONS(7189), - [anon_sym_STAR_EQ] = ACTIONS(7189), - [anon_sym_SLASH_EQ] = ACTIONS(7189), - [anon_sym_PERCENT_EQ] = ACTIONS(7189), - [anon_sym_PLUS_EQ] = ACTIONS(7189), - [anon_sym_DASH_EQ] = ACTIONS(7189), - [anon_sym_LT_LT_EQ] = ACTIONS(7189), - [anon_sym_GT_GT_EQ] = ACTIONS(7189), - [anon_sym_AMP_EQ] = ACTIONS(7189), - [anon_sym_CARET_EQ] = ACTIONS(7189), - [anon_sym_PIPE_EQ] = ACTIONS(7189), - [anon_sym_and_eq] = ACTIONS(7189), - [anon_sym_or_eq] = ACTIONS(7189), - [anon_sym_xor_eq] = ACTIONS(7189), - [anon_sym_LT_EQ_GT] = ACTIONS(7189), - [anon_sym_or] = ACTIONS(7187), - [anon_sym_and] = ACTIONS(7187), - [anon_sym_bitor] = ACTIONS(7189), - [anon_sym_xor] = ACTIONS(7187), - [anon_sym_bitand] = ACTIONS(7189), - [anon_sym_not_eq] = ACTIONS(7189), - [anon_sym_DASH_DASH] = ACTIONS(7189), - [anon_sym_PLUS_PLUS] = ACTIONS(7189), - [anon_sym_DOT] = ACTIONS(7187), - [anon_sym_DOT_STAR] = ACTIONS(7189), - [anon_sym_DASH_GT] = ACTIONS(7187), + [STATE(2463)] = { + [sym__abstract_declarator] = STATE(5372), + [sym_abstract_parenthesized_declarator] = STATE(5090), + [sym_abstract_pointer_declarator] = STATE(5090), + [sym_abstract_function_declarator] = STATE(5090), + [sym_abstract_array_declarator] = STATE(5090), + [sym_type_qualifier] = STATE(2307), + [sym_alignas_qualifier] = STATE(2423), + [sym_parameter_list] = STATE(1975), + [sym_abstract_reference_declarator] = STATE(5090), + [sym__function_declarator_seq] = STATE(5091), + [aux_sym__type_definition_type_repeat1] = STATE(2307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(7375), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7347), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(7377), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7347), + [anon_sym_AMP] = ACTIONS(7379), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7347), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7347), + [anon_sym_GT_GT] = ACTIONS(7347), + [anon_sym___extension__] = ACTIONS(7144), + [anon_sym_LBRACK] = ACTIONS(7152), + [anon_sym_EQ] = ACTIONS(7347), + [anon_sym_const] = ACTIONS(7154), + [anon_sym_constexpr] = ACTIONS(7144), + [anon_sym_volatile] = ACTIONS(7144), + [anon_sym_restrict] = ACTIONS(7144), + [anon_sym___restrict__] = ACTIONS(7144), + [anon_sym__Atomic] = ACTIONS(7144), + [anon_sym__Noreturn] = ACTIONS(7144), + [anon_sym_noreturn] = ACTIONS(7144), + [anon_sym__Nonnull] = ACTIONS(7144), + [anon_sym_mutable] = ACTIONS(7144), + [anon_sym_constinit] = ACTIONS(7144), + [anon_sym_consteval] = ACTIONS(7144), + [anon_sym_alignas] = ACTIONS(7156), + [anon_sym__Alignas] = ACTIONS(7156), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_STAR_EQ] = ACTIONS(7345), + [anon_sym_SLASH_EQ] = ACTIONS(7345), + [anon_sym_PERCENT_EQ] = ACTIONS(7345), + [anon_sym_PLUS_EQ] = ACTIONS(7345), + [anon_sym_DASH_EQ] = ACTIONS(7345), + [anon_sym_LT_LT_EQ] = ACTIONS(7345), + [anon_sym_GT_GT_EQ] = ACTIONS(7347), + [anon_sym_AMP_EQ] = ACTIONS(7345), + [anon_sym_CARET_EQ] = ACTIONS(7345), + [anon_sym_PIPE_EQ] = ACTIONS(7345), + [anon_sym_and_eq] = ACTIONS(7345), + [anon_sym_or_eq] = ACTIONS(7345), + [anon_sym_xor_eq] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7347), + [anon_sym_and] = ACTIONS(7347), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7347), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7189), - [anon_sym_override] = ACTIONS(7189), - [anon_sym_requires] = ACTIONS(7189), - [anon_sym_DASH_GT_STAR] = ACTIONS(7189), + [anon_sym_GT2] = ACTIONS(7345), }, - [STATE(2596)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6846), - [anon_sym_COMMA] = ACTIONS(6846), - [anon_sym_LPAREN2] = ACTIONS(6846), - [anon_sym_DASH] = ACTIONS(6844), - [anon_sym_PLUS] = ACTIONS(6844), - [anon_sym_STAR] = ACTIONS(6844), - [anon_sym_SLASH] = ACTIONS(6844), - [anon_sym_PERCENT] = ACTIONS(6844), - [anon_sym_PIPE_PIPE] = ACTIONS(6846), - [anon_sym_AMP_AMP] = ACTIONS(6846), - [anon_sym_PIPE] = ACTIONS(6844), - [anon_sym_CARET] = ACTIONS(6844), - [anon_sym_AMP] = ACTIONS(6844), - [anon_sym_EQ_EQ] = ACTIONS(6846), - [anon_sym_BANG_EQ] = ACTIONS(6846), - [anon_sym_GT] = ACTIONS(6844), - [anon_sym_GT_EQ] = ACTIONS(6846), - [anon_sym_LT_EQ] = ACTIONS(6844), - [anon_sym_LT] = ACTIONS(6844), - [anon_sym_LT_LT] = ACTIONS(6844), - [anon_sym_GT_GT] = ACTIONS(6844), - [anon_sym___extension__] = ACTIONS(6846), - [anon_sym___attribute__] = ACTIONS(6846), - [anon_sym___attribute] = ACTIONS(6844), - [anon_sym_COLON] = ACTIONS(6844), - [anon_sym_COLON_COLON] = ACTIONS(6846), - [anon_sym_LBRACE] = ACTIONS(6846), - [anon_sym_LBRACK] = ACTIONS(6846), - [anon_sym_RBRACK] = ACTIONS(6846), - [anon_sym_EQ] = ACTIONS(6844), - [anon_sym_const] = ACTIONS(6844), - [anon_sym_constexpr] = ACTIONS(6846), - [anon_sym_volatile] = ACTIONS(6846), - [anon_sym_restrict] = ACTIONS(6846), - [anon_sym___restrict__] = ACTIONS(6846), - [anon_sym__Atomic] = ACTIONS(6846), - [anon_sym__Noreturn] = ACTIONS(6846), - [anon_sym_noreturn] = ACTIONS(6846), - [anon_sym__Nonnull] = ACTIONS(6846), - [anon_sym_mutable] = ACTIONS(6846), - [anon_sym_constinit] = ACTIONS(6846), - [anon_sym_consteval] = ACTIONS(6846), - [anon_sym_alignas] = ACTIONS(6846), - [anon_sym__Alignas] = ACTIONS(6846), - [anon_sym_QMARK] = ACTIONS(6846), - [anon_sym_STAR_EQ] = ACTIONS(6846), - [anon_sym_SLASH_EQ] = ACTIONS(6846), - [anon_sym_PERCENT_EQ] = ACTIONS(6846), - [anon_sym_PLUS_EQ] = ACTIONS(6846), - [anon_sym_DASH_EQ] = ACTIONS(6846), - [anon_sym_LT_LT_EQ] = ACTIONS(6846), - [anon_sym_GT_GT_EQ] = ACTIONS(6846), - [anon_sym_AMP_EQ] = ACTIONS(6846), - [anon_sym_CARET_EQ] = ACTIONS(6846), - [anon_sym_PIPE_EQ] = ACTIONS(6846), - [anon_sym_and_eq] = ACTIONS(6846), - [anon_sym_or_eq] = ACTIONS(6846), - [anon_sym_xor_eq] = ACTIONS(6846), - [anon_sym_LT_EQ_GT] = ACTIONS(6846), - [anon_sym_or] = ACTIONS(6844), - [anon_sym_and] = ACTIONS(6844), - [anon_sym_bitor] = ACTIONS(6846), - [anon_sym_xor] = ACTIONS(6844), - [anon_sym_bitand] = ACTIONS(6846), - [anon_sym_not_eq] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DOT] = ACTIONS(6844), - [anon_sym_DOT_STAR] = ACTIONS(6846), - [anon_sym_DASH_GT] = ACTIONS(6846), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6846), - [anon_sym_override] = ACTIONS(6846), - [anon_sym_requires] = ACTIONS(6846), + [STATE(2464)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7083), + [anon_sym_COMMA] = ACTIONS(7083), + [anon_sym_LPAREN2] = ACTIONS(7083), + [anon_sym_DASH] = ACTIONS(7081), + [anon_sym_PLUS] = ACTIONS(7081), + [anon_sym_STAR] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7081), + [anon_sym_PERCENT] = ACTIONS(7081), + [anon_sym_PIPE_PIPE] = ACTIONS(7083), + [anon_sym_AMP_AMP] = ACTIONS(7083), + [anon_sym_PIPE] = ACTIONS(7081), + [anon_sym_CARET] = ACTIONS(7081), + [anon_sym_AMP] = ACTIONS(7081), + [anon_sym_EQ_EQ] = ACTIONS(7083), + [anon_sym_BANG_EQ] = ACTIONS(7083), + [anon_sym_GT] = ACTIONS(7081), + [anon_sym_GT_EQ] = ACTIONS(7083), + [anon_sym_LT_EQ] = ACTIONS(7081), + [anon_sym_LT] = ACTIONS(7081), + [anon_sym_LT_LT] = ACTIONS(7081), + [anon_sym_GT_GT] = ACTIONS(7081), + [anon_sym___extension__] = ACTIONS(7083), + [anon_sym___attribute__] = ACTIONS(7083), + [anon_sym___attribute] = ACTIONS(7081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7083), + [anon_sym_LBRACK] = ACTIONS(7081), + [anon_sym_RBRACK] = ACTIONS(7083), + [anon_sym_EQ] = ACTIONS(7081), + [anon_sym_const] = ACTIONS(7081), + [anon_sym_constexpr] = ACTIONS(7083), + [anon_sym_volatile] = ACTIONS(7083), + [anon_sym_restrict] = ACTIONS(7083), + [anon_sym___restrict__] = ACTIONS(7083), + [anon_sym__Atomic] = ACTIONS(7083), + [anon_sym__Noreturn] = ACTIONS(7083), + [anon_sym_noreturn] = ACTIONS(7083), + [anon_sym__Nonnull] = ACTIONS(7083), + [anon_sym_mutable] = ACTIONS(7083), + [anon_sym_constinit] = ACTIONS(7083), + [anon_sym_consteval] = ACTIONS(7083), + [anon_sym_alignas] = ACTIONS(7083), + [anon_sym__Alignas] = ACTIONS(7083), + [anon_sym_QMARK] = ACTIONS(7083), + [anon_sym_STAR_EQ] = ACTIONS(7083), + [anon_sym_SLASH_EQ] = ACTIONS(7083), + [anon_sym_PERCENT_EQ] = ACTIONS(7083), + [anon_sym_PLUS_EQ] = ACTIONS(7083), + [anon_sym_DASH_EQ] = ACTIONS(7083), + [anon_sym_LT_LT_EQ] = ACTIONS(7083), + [anon_sym_GT_GT_EQ] = ACTIONS(7083), + [anon_sym_AMP_EQ] = ACTIONS(7083), + [anon_sym_CARET_EQ] = ACTIONS(7083), + [anon_sym_PIPE_EQ] = ACTIONS(7083), + [anon_sym_and_eq] = ACTIONS(7083), + [anon_sym_or_eq] = ACTIONS(7083), + [anon_sym_xor_eq] = ACTIONS(7083), + [anon_sym_LT_EQ_GT] = ACTIONS(7083), + [anon_sym_or] = ACTIONS(7081), + [anon_sym_and] = ACTIONS(7081), + [anon_sym_bitor] = ACTIONS(7083), + [anon_sym_xor] = ACTIONS(7081), + [anon_sym_bitand] = ACTIONS(7083), + [anon_sym_not_eq] = ACTIONS(7083), + [anon_sym_DASH_DASH] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7083), + [anon_sym_asm] = ACTIONS(7083), + [anon_sym___asm__] = ACTIONS(7083), + [anon_sym___asm] = ACTIONS(7081), + [anon_sym_DOT] = ACTIONS(7081), + [anon_sym_DOT_STAR] = ACTIONS(7083), + [anon_sym_DASH_GT] = ACTIONS(7083), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7083), + [anon_sym_override] = ACTIONS(7083), + [anon_sym_noexcept] = ACTIONS(7083), + [anon_sym_throw] = ACTIONS(7083), + [anon_sym_requires] = ACTIONS(7083), }, - [STATE(2597)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), - [anon_sym_COMMA] = ACTIONS(6751), - [anon_sym_LPAREN2] = ACTIONS(6751), - [anon_sym_DASH] = ACTIONS(6746), - [anon_sym_PLUS] = ACTIONS(6746), - [anon_sym_STAR] = ACTIONS(6746), - [anon_sym_SLASH] = ACTIONS(6746), - [anon_sym_PERCENT] = ACTIONS(6746), - [anon_sym_PIPE_PIPE] = ACTIONS(6751), - [anon_sym_AMP_AMP] = ACTIONS(6751), - [anon_sym_PIPE] = ACTIONS(6746), - [anon_sym_CARET] = ACTIONS(6746), - [anon_sym_AMP] = ACTIONS(6746), - [anon_sym_EQ_EQ] = ACTIONS(6751), - [anon_sym_BANG_EQ] = ACTIONS(6751), - [anon_sym_GT] = ACTIONS(6746), - [anon_sym_GT_EQ] = ACTIONS(6751), - [anon_sym_LT_EQ] = ACTIONS(6746), - [anon_sym_LT] = ACTIONS(6746), - [anon_sym_LT_LT] = ACTIONS(6746), - [anon_sym_GT_GT] = ACTIONS(6746), - [anon_sym___extension__] = ACTIONS(6751), - [anon_sym___attribute__] = ACTIONS(6751), - [anon_sym___attribute] = ACTIONS(6746), - [anon_sym_COLON] = ACTIONS(6746), - [anon_sym_COLON_COLON] = ACTIONS(6751), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_LBRACK] = ACTIONS(6751), - [anon_sym_RBRACK] = ACTIONS(6751), - [anon_sym_EQ] = ACTIONS(6746), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6751), - [anon_sym_volatile] = ACTIONS(6751), - [anon_sym_restrict] = ACTIONS(6751), - [anon_sym___restrict__] = ACTIONS(6751), - [anon_sym__Atomic] = ACTIONS(6751), - [anon_sym__Noreturn] = ACTIONS(6751), - [anon_sym_noreturn] = ACTIONS(6751), - [anon_sym__Nonnull] = ACTIONS(6751), - [anon_sym_mutable] = ACTIONS(6751), - [anon_sym_constinit] = ACTIONS(6751), - [anon_sym_consteval] = ACTIONS(6751), - [anon_sym_alignas] = ACTIONS(6751), - [anon_sym__Alignas] = ACTIONS(6751), - [anon_sym_QMARK] = ACTIONS(6751), - [anon_sym_STAR_EQ] = ACTIONS(6751), - [anon_sym_SLASH_EQ] = ACTIONS(6751), - [anon_sym_PERCENT_EQ] = ACTIONS(6751), - [anon_sym_PLUS_EQ] = ACTIONS(6751), - [anon_sym_DASH_EQ] = ACTIONS(6751), - [anon_sym_LT_LT_EQ] = ACTIONS(6751), - [anon_sym_GT_GT_EQ] = ACTIONS(6751), - [anon_sym_AMP_EQ] = ACTIONS(6751), - [anon_sym_CARET_EQ] = ACTIONS(6751), - [anon_sym_PIPE_EQ] = ACTIONS(6751), - [anon_sym_and_eq] = ACTIONS(6751), - [anon_sym_or_eq] = ACTIONS(6751), - [anon_sym_xor_eq] = ACTIONS(6751), - [anon_sym_LT_EQ_GT] = ACTIONS(6751), - [anon_sym_or] = ACTIONS(6746), - [anon_sym_and] = ACTIONS(6746), - [anon_sym_bitor] = ACTIONS(6751), - [anon_sym_xor] = ACTIONS(6746), - [anon_sym_bitand] = ACTIONS(6751), - [anon_sym_not_eq] = ACTIONS(6751), - [anon_sym_DASH_DASH] = ACTIONS(6751), - [anon_sym_PLUS_PLUS] = ACTIONS(6751), - [anon_sym_DOT] = ACTIONS(6746), - [anon_sym_DOT_STAR] = ACTIONS(6751), - [anon_sym_DASH_GT] = ACTIONS(6751), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6751), - [anon_sym_override] = ACTIONS(6751), - [anon_sym_requires] = ACTIONS(6751), + [STATE(2465)] = { + [sym_attribute_specifier] = STATE(4124), + [sym_attribute_declaration] = STATE(4490), + [sym_gnu_asm_expression] = STATE(9129), + [sym_virtual_specifier] = STATE(4610), + [sym__function_exception_specification] = STATE(2943), + [sym__function_attributes_end] = STATE(4292), + [sym__function_postfix] = STATE(4840), + [sym_trailing_return_type] = STATE(4383), + [sym_noexcept] = STATE(2943), + [sym_throw_specifier] = STATE(2943), + [sym_requires_clause] = STATE(4840), + [aux_sym_type_definition_repeat1] = STATE(4124), + [aux_sym_attributed_declarator_repeat1] = STATE(4490), + [aux_sym__function_postfix_repeat1] = STATE(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6646), + [anon_sym___attribute] = ACTIONS(6648), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8168), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6669), + [anon_sym_override] = ACTIONS(6669), + [anon_sym_noexcept] = ACTIONS(6662), + [anon_sym_throw] = ACTIONS(6664), + [anon_sym_requires] = ACTIONS(6671), + [anon_sym_DASH_GT_STAR] = ACTIONS(7791), }, - [STATE(2598)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7183), - [anon_sym_COMMA] = ACTIONS(7183), - [anon_sym_LPAREN2] = ACTIONS(7183), - [anon_sym_DASH] = ACTIONS(7185), - [anon_sym_PLUS] = ACTIONS(7185), - [anon_sym_STAR] = ACTIONS(7185), - [anon_sym_SLASH] = ACTIONS(7185), - [anon_sym_PERCENT] = ACTIONS(7185), - [anon_sym_PIPE_PIPE] = ACTIONS(7183), - [anon_sym_AMP_AMP] = ACTIONS(7183), - [anon_sym_PIPE] = ACTIONS(7185), - [anon_sym_CARET] = ACTIONS(7185), - [anon_sym_AMP] = ACTIONS(7185), - [anon_sym_EQ_EQ] = ACTIONS(7183), - [anon_sym_BANG_EQ] = ACTIONS(7183), - [anon_sym_GT] = ACTIONS(7185), - [anon_sym_GT_EQ] = ACTIONS(7183), - [anon_sym_LT_EQ] = ACTIONS(7185), - [anon_sym_LT] = ACTIONS(7185), - [anon_sym_LT_LT] = ACTIONS(7185), - [anon_sym_GT_GT] = ACTIONS(7185), - [anon_sym___extension__] = ACTIONS(7183), - [anon_sym___attribute__] = ACTIONS(7183), - [anon_sym___attribute] = ACTIONS(7185), - [anon_sym_COLON] = ACTIONS(7185), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(7183), - [anon_sym_LBRACK] = ACTIONS(7183), - [anon_sym_RBRACK] = ACTIONS(7183), - [anon_sym_EQ] = ACTIONS(7185), - [anon_sym_const] = ACTIONS(7185), - [anon_sym_constexpr] = ACTIONS(7183), - [anon_sym_volatile] = ACTIONS(7183), - [anon_sym_restrict] = ACTIONS(7183), - [anon_sym___restrict__] = ACTIONS(7183), - [anon_sym__Atomic] = ACTIONS(7183), - [anon_sym__Noreturn] = ACTIONS(7183), - [anon_sym_noreturn] = ACTIONS(7183), - [anon_sym__Nonnull] = ACTIONS(7183), - [anon_sym_mutable] = ACTIONS(7183), - [anon_sym_constinit] = ACTIONS(7183), - [anon_sym_consteval] = ACTIONS(7183), - [anon_sym_alignas] = ACTIONS(7183), - [anon_sym__Alignas] = ACTIONS(7183), - [anon_sym_QMARK] = ACTIONS(7183), - [anon_sym_STAR_EQ] = ACTIONS(7183), - [anon_sym_SLASH_EQ] = ACTIONS(7183), - [anon_sym_PERCENT_EQ] = ACTIONS(7183), - [anon_sym_PLUS_EQ] = ACTIONS(7183), - [anon_sym_DASH_EQ] = ACTIONS(7183), - [anon_sym_LT_LT_EQ] = ACTIONS(7183), - [anon_sym_GT_GT_EQ] = ACTIONS(7183), - [anon_sym_AMP_EQ] = ACTIONS(7183), - [anon_sym_CARET_EQ] = ACTIONS(7183), - [anon_sym_PIPE_EQ] = ACTIONS(7183), - [anon_sym_and_eq] = ACTIONS(7183), - [anon_sym_or_eq] = ACTIONS(7183), - [anon_sym_xor_eq] = ACTIONS(7183), - [anon_sym_LT_EQ_GT] = ACTIONS(7183), - [anon_sym_or] = ACTIONS(7185), - [anon_sym_and] = ACTIONS(7185), - [anon_sym_bitor] = ACTIONS(7183), - [anon_sym_xor] = ACTIONS(7185), - [anon_sym_bitand] = ACTIONS(7183), - [anon_sym_not_eq] = ACTIONS(7183), - [anon_sym_DASH_DASH] = ACTIONS(7183), - [anon_sym_PLUS_PLUS] = ACTIONS(7183), - [anon_sym_DOT] = ACTIONS(7185), - [anon_sym_DOT_STAR] = ACTIONS(7183), - [anon_sym_DASH_GT] = ACTIONS(7183), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7183), - [anon_sym_override] = ACTIONS(7183), - [anon_sym_requires] = ACTIONS(7183), + [STATE(2466)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7303), + [anon_sym_COMMA] = ACTIONS(7303), + [anon_sym_RPAREN] = ACTIONS(7303), + [anon_sym_LPAREN2] = ACTIONS(7303), + [anon_sym_DASH] = ACTIONS(7301), + [anon_sym_PLUS] = ACTIONS(7301), + [anon_sym_STAR] = ACTIONS(7301), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7301), + [anon_sym_PIPE_PIPE] = ACTIONS(7303), + [anon_sym_AMP_AMP] = ACTIONS(7303), + [anon_sym_PIPE] = ACTIONS(7301), + [anon_sym_CARET] = ACTIONS(7301), + [anon_sym_AMP] = ACTIONS(7301), + [anon_sym_EQ_EQ] = ACTIONS(7303), + [anon_sym_BANG_EQ] = ACTIONS(7303), + [anon_sym_GT] = ACTIONS(7301), + [anon_sym_GT_EQ] = ACTIONS(7303), + [anon_sym_LT_EQ] = ACTIONS(7301), + [anon_sym_LT] = ACTIONS(7301), + [anon_sym_LT_LT] = ACTIONS(7301), + [anon_sym_GT_GT] = ACTIONS(7301), + [anon_sym___extension__] = ACTIONS(7303), + [anon_sym___attribute__] = ACTIONS(7303), + [anon_sym___attribute] = ACTIONS(7301), + [anon_sym_COLON] = ACTIONS(7301), + [anon_sym_COLON_COLON] = ACTIONS(7303), + [anon_sym_LBRACE] = ACTIONS(7303), + [anon_sym_LBRACK] = ACTIONS(7303), + [anon_sym_EQ] = ACTIONS(7301), + [anon_sym_const] = ACTIONS(7301), + [anon_sym_constexpr] = ACTIONS(7303), + [anon_sym_volatile] = ACTIONS(7303), + [anon_sym_restrict] = ACTIONS(7303), + [anon_sym___restrict__] = ACTIONS(7303), + [anon_sym__Atomic] = ACTIONS(7303), + [anon_sym__Noreturn] = ACTIONS(7303), + [anon_sym_noreturn] = ACTIONS(7303), + [anon_sym__Nonnull] = ACTIONS(7303), + [anon_sym_mutable] = ACTIONS(7303), + [anon_sym_constinit] = ACTIONS(7303), + [anon_sym_consteval] = ACTIONS(7303), + [anon_sym_alignas] = ACTIONS(7303), + [anon_sym__Alignas] = ACTIONS(7303), + [anon_sym_QMARK] = ACTIONS(7303), + [anon_sym_STAR_EQ] = ACTIONS(7303), + [anon_sym_SLASH_EQ] = ACTIONS(7303), + [anon_sym_PERCENT_EQ] = ACTIONS(7303), + [anon_sym_PLUS_EQ] = ACTIONS(7303), + [anon_sym_DASH_EQ] = ACTIONS(7303), + [anon_sym_LT_LT_EQ] = ACTIONS(7303), + [anon_sym_GT_GT_EQ] = ACTIONS(7303), + [anon_sym_AMP_EQ] = ACTIONS(7303), + [anon_sym_CARET_EQ] = ACTIONS(7303), + [anon_sym_PIPE_EQ] = ACTIONS(7303), + [anon_sym_and_eq] = ACTIONS(7303), + [anon_sym_or_eq] = ACTIONS(7303), + [anon_sym_xor_eq] = ACTIONS(7303), + [anon_sym_LT_EQ_GT] = ACTIONS(7303), + [anon_sym_or] = ACTIONS(7301), + [anon_sym_and] = ACTIONS(7301), + [anon_sym_bitor] = ACTIONS(7303), + [anon_sym_xor] = ACTIONS(7301), + [anon_sym_bitand] = ACTIONS(7303), + [anon_sym_not_eq] = ACTIONS(7303), + [anon_sym_DASH_DASH] = ACTIONS(7303), + [anon_sym_PLUS_PLUS] = ACTIONS(7303), + [anon_sym_DOT] = ACTIONS(7301), + [anon_sym_DOT_STAR] = ACTIONS(7303), + [anon_sym_DASH_GT] = ACTIONS(7301), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7303), + [anon_sym_decltype] = ACTIONS(7303), + [anon_sym_final] = ACTIONS(7303), + [anon_sym_override] = ACTIONS(7303), + [anon_sym_requires] = ACTIONS(7303), + [anon_sym_DASH_GT_STAR] = ACTIONS(7303), }, - [STATE(2599)] = { - [sym_identifier] = ACTIONS(6786), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6788), - [anon_sym_COMMA] = ACTIONS(6788), - [anon_sym_RPAREN] = ACTIONS(6788), - [aux_sym_preproc_if_token2] = ACTIONS(6788), - [aux_sym_preproc_else_token1] = ACTIONS(6788), - [aux_sym_preproc_elif_token1] = ACTIONS(6786), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6788), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6788), - [anon_sym_LPAREN2] = ACTIONS(6788), - [anon_sym_DASH] = ACTIONS(6786), - [anon_sym_PLUS] = ACTIONS(6786), - [anon_sym_STAR] = ACTIONS(6788), - [anon_sym_SLASH] = ACTIONS(6786), - [anon_sym_PERCENT] = ACTIONS(6788), - [anon_sym_PIPE_PIPE] = ACTIONS(6788), - [anon_sym_AMP_AMP] = ACTIONS(6788), - [anon_sym_PIPE] = ACTIONS(6786), - [anon_sym_CARET] = ACTIONS(6788), - [anon_sym_AMP] = ACTIONS(6786), - [anon_sym_EQ_EQ] = ACTIONS(6788), - [anon_sym_BANG_EQ] = ACTIONS(6788), - [anon_sym_GT] = ACTIONS(6786), - [anon_sym_GT_EQ] = ACTIONS(6788), - [anon_sym_LT_EQ] = ACTIONS(6786), - [anon_sym_LT] = ACTIONS(6786), - [anon_sym_LT_LT] = ACTIONS(6788), - [anon_sym_GT_GT] = ACTIONS(6788), - [anon_sym_SEMI] = ACTIONS(6788), - [anon_sym___extension__] = ACTIONS(6786), - [anon_sym___attribute__] = ACTIONS(6786), - [anon_sym___attribute] = ACTIONS(6786), - [anon_sym_COLON] = ACTIONS(6786), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6788), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6788), - [anon_sym_RBRACE] = ACTIONS(6788), - [anon_sym_LBRACK] = ACTIONS(6786), - [anon_sym_const] = ACTIONS(6786), - [anon_sym_constexpr] = ACTIONS(6786), - [anon_sym_volatile] = ACTIONS(6786), - [anon_sym_restrict] = ACTIONS(6786), - [anon_sym___restrict__] = ACTIONS(6786), - [anon_sym__Atomic] = ACTIONS(6786), - [anon_sym__Noreturn] = ACTIONS(6786), - [anon_sym_noreturn] = ACTIONS(6786), - [anon_sym__Nonnull] = ACTIONS(6786), - [anon_sym_mutable] = ACTIONS(6786), - [anon_sym_constinit] = ACTIONS(6786), - [anon_sym_consteval] = ACTIONS(6786), - [anon_sym_alignas] = ACTIONS(6786), - [anon_sym__Alignas] = ACTIONS(6786), - [anon_sym_QMARK] = ACTIONS(6788), - [anon_sym_LT_EQ_GT] = ACTIONS(6788), - [anon_sym_or] = ACTIONS(6786), - [anon_sym_and] = ACTIONS(6786), - [anon_sym_bitor] = ACTIONS(6786), - [anon_sym_xor] = ACTIONS(6786), - [anon_sym_bitand] = ACTIONS(6786), - [anon_sym_not_eq] = ACTIONS(6786), - [anon_sym_DASH_DASH] = ACTIONS(6788), - [anon_sym_PLUS_PLUS] = ACTIONS(6788), - [anon_sym_asm] = ACTIONS(6786), - [anon_sym___asm__] = ACTIONS(6786), - [anon_sym___asm] = ACTIONS(6786), - [anon_sym_DOT] = ACTIONS(6786), - [anon_sym_DOT_STAR] = ACTIONS(6788), - [anon_sym_DASH_GT] = ACTIONS(6788), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6786), - [anon_sym_override] = ACTIONS(6786), - [anon_sym_noexcept] = ACTIONS(6786), - [anon_sym_throw] = ACTIONS(6786), - [anon_sym_requires] = ACTIONS(6786), - [anon_sym_COLON_RBRACK] = ACTIONS(6788), + [STATE(2467)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), + [anon_sym_COMMA] = ACTIONS(7079), + [anon_sym_LPAREN2] = ACTIONS(7079), + [anon_sym_DASH] = ACTIONS(7077), + [anon_sym_PLUS] = ACTIONS(7077), + [anon_sym_STAR] = ACTIONS(7077), + [anon_sym_SLASH] = ACTIONS(7077), + [anon_sym_PERCENT] = ACTIONS(7077), + [anon_sym_PIPE_PIPE] = ACTIONS(7079), + [anon_sym_AMP_AMP] = ACTIONS(7079), + [anon_sym_PIPE] = ACTIONS(7077), + [anon_sym_CARET] = ACTIONS(7077), + [anon_sym_AMP] = ACTIONS(7077), + [anon_sym_EQ_EQ] = ACTIONS(7079), + [anon_sym_BANG_EQ] = ACTIONS(7079), + [anon_sym_GT] = ACTIONS(7077), + [anon_sym_GT_EQ] = ACTIONS(7079), + [anon_sym_LT_EQ] = ACTIONS(7077), + [anon_sym_LT] = ACTIONS(7077), + [anon_sym_LT_LT] = ACTIONS(7077), + [anon_sym_GT_GT] = ACTIONS(7077), + [anon_sym___extension__] = ACTIONS(7079), + [anon_sym___attribute__] = ACTIONS(7079), + [anon_sym___attribute] = ACTIONS(7077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7079), + [anon_sym_LBRACK] = ACTIONS(7077), + [anon_sym_RBRACK] = ACTIONS(7079), + [anon_sym_EQ] = ACTIONS(7077), + [anon_sym_const] = ACTIONS(7077), + [anon_sym_constexpr] = ACTIONS(7079), + [anon_sym_volatile] = ACTIONS(7079), + [anon_sym_restrict] = ACTIONS(7079), + [anon_sym___restrict__] = ACTIONS(7079), + [anon_sym__Atomic] = ACTIONS(7079), + [anon_sym__Noreturn] = ACTIONS(7079), + [anon_sym_noreturn] = ACTIONS(7079), + [anon_sym__Nonnull] = ACTIONS(7079), + [anon_sym_mutable] = ACTIONS(7079), + [anon_sym_constinit] = ACTIONS(7079), + [anon_sym_consteval] = ACTIONS(7079), + [anon_sym_alignas] = ACTIONS(7079), + [anon_sym__Alignas] = ACTIONS(7079), + [anon_sym_QMARK] = ACTIONS(7079), + [anon_sym_STAR_EQ] = ACTIONS(7079), + [anon_sym_SLASH_EQ] = ACTIONS(7079), + [anon_sym_PERCENT_EQ] = ACTIONS(7079), + [anon_sym_PLUS_EQ] = ACTIONS(7079), + [anon_sym_DASH_EQ] = ACTIONS(7079), + [anon_sym_LT_LT_EQ] = ACTIONS(7079), + [anon_sym_GT_GT_EQ] = ACTIONS(7079), + [anon_sym_AMP_EQ] = ACTIONS(7079), + [anon_sym_CARET_EQ] = ACTIONS(7079), + [anon_sym_PIPE_EQ] = ACTIONS(7079), + [anon_sym_and_eq] = ACTIONS(7079), + [anon_sym_or_eq] = ACTIONS(7079), + [anon_sym_xor_eq] = ACTIONS(7079), + [anon_sym_LT_EQ_GT] = ACTIONS(7079), + [anon_sym_or] = ACTIONS(7077), + [anon_sym_and] = ACTIONS(7077), + [anon_sym_bitor] = ACTIONS(7079), + [anon_sym_xor] = ACTIONS(7077), + [anon_sym_bitand] = ACTIONS(7079), + [anon_sym_not_eq] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_asm] = ACTIONS(7079), + [anon_sym___asm__] = ACTIONS(7079), + [anon_sym___asm] = ACTIONS(7077), + [anon_sym_DOT] = ACTIONS(7077), + [anon_sym_DOT_STAR] = ACTIONS(7079), + [anon_sym_DASH_GT] = ACTIONS(7079), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7079), + [anon_sym_override] = ACTIONS(7079), + [anon_sym_noexcept] = ACTIONS(7079), + [anon_sym_throw] = ACTIONS(7079), + [anon_sym_requires] = ACTIONS(7079), }, - [STATE(2600)] = { - [sym_attribute_specifier] = STATE(2930), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7055), - [anon_sym_COMMA] = ACTIONS(7055), - [anon_sym_RPAREN] = ACTIONS(7055), - [anon_sym_LPAREN2] = ACTIONS(7055), - [anon_sym_DASH] = ACTIONS(7053), - [anon_sym_PLUS] = ACTIONS(7053), - [anon_sym_STAR] = ACTIONS(7053), - [anon_sym_SLASH] = ACTIONS(7053), - [anon_sym_PERCENT] = ACTIONS(7053), - [anon_sym_PIPE_PIPE] = ACTIONS(7055), - [anon_sym_AMP_AMP] = ACTIONS(7055), - [anon_sym_PIPE] = ACTIONS(7053), - [anon_sym_CARET] = ACTIONS(7053), - [anon_sym_AMP] = ACTIONS(7053), - [anon_sym_EQ_EQ] = ACTIONS(7055), - [anon_sym_BANG_EQ] = ACTIONS(7055), - [anon_sym_GT] = ACTIONS(7053), - [anon_sym_GT_EQ] = ACTIONS(7055), - [anon_sym_LT_EQ] = ACTIONS(7053), - [anon_sym_LT] = ACTIONS(7053), - [anon_sym_LT_LT] = ACTIONS(7053), - [anon_sym_GT_GT] = ACTIONS(7053), - [anon_sym___extension__] = ACTIONS(7055), - [anon_sym___attribute__] = ACTIONS(7813), - [anon_sym___attribute] = ACTIONS(7815), - [anon_sym_LBRACE] = ACTIONS(7055), - [anon_sym_LBRACK] = ACTIONS(7055), - [anon_sym_EQ] = ACTIONS(7053), - [anon_sym_const] = ACTIONS(7053), - [anon_sym_constexpr] = ACTIONS(7055), - [anon_sym_volatile] = ACTIONS(7055), - [anon_sym_restrict] = ACTIONS(7055), - [anon_sym___restrict__] = ACTIONS(7055), - [anon_sym__Atomic] = ACTIONS(7055), - [anon_sym__Noreturn] = ACTIONS(7055), - [anon_sym_noreturn] = ACTIONS(7055), - [anon_sym__Nonnull] = ACTIONS(7055), - [anon_sym_mutable] = ACTIONS(7055), - [anon_sym_constinit] = ACTIONS(7055), - [anon_sym_consteval] = ACTIONS(7055), - [anon_sym_alignas] = ACTIONS(7055), - [anon_sym__Alignas] = ACTIONS(7055), - [anon_sym_QMARK] = ACTIONS(7055), - [anon_sym_STAR_EQ] = ACTIONS(7055), - [anon_sym_SLASH_EQ] = ACTIONS(7055), - [anon_sym_PERCENT_EQ] = ACTIONS(7055), - [anon_sym_PLUS_EQ] = ACTIONS(7055), - [anon_sym_DASH_EQ] = ACTIONS(7055), - [anon_sym_LT_LT_EQ] = ACTIONS(7055), - [anon_sym_GT_GT_EQ] = ACTIONS(7055), - [anon_sym_AMP_EQ] = ACTIONS(7055), - [anon_sym_CARET_EQ] = ACTIONS(7055), - [anon_sym_PIPE_EQ] = ACTIONS(7055), - [anon_sym_and_eq] = ACTIONS(7055), - [anon_sym_or_eq] = ACTIONS(7055), - [anon_sym_xor_eq] = ACTIONS(7055), - [anon_sym_LT_EQ_GT] = ACTIONS(7055), - [anon_sym_or] = ACTIONS(7053), - [anon_sym_and] = ACTIONS(7053), - [anon_sym_bitor] = ACTIONS(7055), - [anon_sym_xor] = ACTIONS(7053), - [anon_sym_bitand] = ACTIONS(7055), - [anon_sym_not_eq] = ACTIONS(7055), - [anon_sym_DASH_DASH] = ACTIONS(7055), - [anon_sym_PLUS_PLUS] = ACTIONS(7055), - [anon_sym_DOT] = ACTIONS(7053), - [anon_sym_DOT_STAR] = ACTIONS(7055), - [anon_sym_DASH_GT] = ACTIONS(7053), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7055), - [anon_sym_override] = ACTIONS(7055), - [anon_sym_requires] = ACTIONS(7055), - [anon_sym_DASH_GT_STAR] = ACTIONS(7055), + [STATE(2468)] = { + [sym_attribute_specifier] = STATE(4124), + [sym_attribute_declaration] = STATE(4490), + [sym_gnu_asm_expression] = STATE(9129), + [sym_virtual_specifier] = STATE(4610), + [sym__function_exception_specification] = STATE(2909), + [sym__function_attributes_end] = STATE(4300), + [sym__function_postfix] = STATE(4890), + [sym_trailing_return_type] = STATE(4347), + [sym_noexcept] = STATE(2909), + [sym_throw_specifier] = STATE(2909), + [sym_requires_clause] = STATE(4890), + [aux_sym_type_definition_repeat1] = STATE(4124), + [aux_sym_attributed_declarator_repeat1] = STATE(4490), + [aux_sym__function_postfix_repeat1] = STATE(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_RPAREN] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym___attribute__] = ACTIONS(6646), + [anon_sym___attribute] = ACTIONS(6648), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7966), + [anon_sym_or_eq] = ACTIONS(7966), + [anon_sym_xor_eq] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(8271), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6669), + [anon_sym_override] = ACTIONS(6669), + [anon_sym_noexcept] = ACTIONS(6662), + [anon_sym_throw] = ACTIONS(6664), + [anon_sym_requires] = ACTIONS(6671), + [anon_sym_DASH_GT_STAR] = ACTIONS(7966), }, - [STATE(2601)] = { - [sym_attribute_specifier] = STATE(2935), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), - [anon_sym_COMMA] = ACTIONS(7059), - [anon_sym_RPAREN] = ACTIONS(7059), - [anon_sym_LPAREN2] = ACTIONS(7059), - [anon_sym_DASH] = ACTIONS(7057), - [anon_sym_PLUS] = ACTIONS(7057), - [anon_sym_STAR] = ACTIONS(7057), - [anon_sym_SLASH] = ACTIONS(7057), - [anon_sym_PERCENT] = ACTIONS(7057), - [anon_sym_PIPE_PIPE] = ACTIONS(7059), - [anon_sym_AMP_AMP] = ACTIONS(7059), - [anon_sym_PIPE] = ACTIONS(7057), - [anon_sym_CARET] = ACTIONS(7057), - [anon_sym_AMP] = ACTIONS(7057), - [anon_sym_EQ_EQ] = ACTIONS(7059), - [anon_sym_BANG_EQ] = ACTIONS(7059), - [anon_sym_GT] = ACTIONS(7057), - [anon_sym_GT_EQ] = ACTIONS(7059), - [anon_sym_LT_EQ] = ACTIONS(7057), - [anon_sym_LT] = ACTIONS(7057), - [anon_sym_LT_LT] = ACTIONS(7057), - [anon_sym_GT_GT] = ACTIONS(7057), - [anon_sym___extension__] = ACTIONS(7059), - [anon_sym___attribute__] = ACTIONS(7813), - [anon_sym___attribute] = ACTIONS(7815), - [anon_sym_LBRACE] = ACTIONS(7059), - [anon_sym_LBRACK] = ACTIONS(7059), - [anon_sym_EQ] = ACTIONS(7057), - [anon_sym_const] = ACTIONS(7057), - [anon_sym_constexpr] = ACTIONS(7059), - [anon_sym_volatile] = ACTIONS(7059), - [anon_sym_restrict] = ACTIONS(7059), - [anon_sym___restrict__] = ACTIONS(7059), - [anon_sym__Atomic] = ACTIONS(7059), - [anon_sym__Noreturn] = ACTIONS(7059), - [anon_sym_noreturn] = ACTIONS(7059), - [anon_sym__Nonnull] = ACTIONS(7059), - [anon_sym_mutable] = ACTIONS(7059), - [anon_sym_constinit] = ACTIONS(7059), - [anon_sym_consteval] = ACTIONS(7059), - [anon_sym_alignas] = ACTIONS(7059), - [anon_sym__Alignas] = ACTIONS(7059), - [anon_sym_QMARK] = ACTIONS(7059), - [anon_sym_STAR_EQ] = ACTIONS(7059), - [anon_sym_SLASH_EQ] = ACTIONS(7059), - [anon_sym_PERCENT_EQ] = ACTIONS(7059), - [anon_sym_PLUS_EQ] = ACTIONS(7059), - [anon_sym_DASH_EQ] = ACTIONS(7059), - [anon_sym_LT_LT_EQ] = ACTIONS(7059), - [anon_sym_GT_GT_EQ] = ACTIONS(7059), - [anon_sym_AMP_EQ] = ACTIONS(7059), - [anon_sym_CARET_EQ] = ACTIONS(7059), - [anon_sym_PIPE_EQ] = ACTIONS(7059), - [anon_sym_and_eq] = ACTIONS(7059), - [anon_sym_or_eq] = ACTIONS(7059), - [anon_sym_xor_eq] = ACTIONS(7059), - [anon_sym_LT_EQ_GT] = ACTIONS(7059), - [anon_sym_or] = ACTIONS(7057), - [anon_sym_and] = ACTIONS(7057), - [anon_sym_bitor] = ACTIONS(7059), - [anon_sym_xor] = ACTIONS(7057), - [anon_sym_bitand] = ACTIONS(7059), - [anon_sym_not_eq] = ACTIONS(7059), - [anon_sym_DASH_DASH] = ACTIONS(7059), - [anon_sym_PLUS_PLUS] = ACTIONS(7059), - [anon_sym_DOT] = ACTIONS(7057), - [anon_sym_DOT_STAR] = ACTIONS(7059), - [anon_sym_DASH_GT] = ACTIONS(7057), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7059), - [anon_sym_override] = ACTIONS(7059), - [anon_sym_requires] = ACTIONS(7059), - [anon_sym_DASH_GT_STAR] = ACTIONS(7059), + [STATE(2469)] = { + [sym__declaration_modifiers] = STATE(5072), + [sym_attribute_specifier] = STATE(5072), + [sym_attribute_declaration] = STATE(5072), + [sym_ms_declspec_modifier] = STATE(5072), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8708), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(5072), + [sym_type_qualifier] = STATE(5072), + [sym_alignas_qualifier] = STATE(4722), + [sym_decltype] = STATE(10768), + [sym_explicit_function_specifier] = STATE(5072), + [sym_operator_cast] = STATE(9186), + [sym__constructor_specifiers] = STATE(5072), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7901), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_operator_cast_identifier] = STATE(9186), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_operator_cast_definition_repeat1] = STATE(5072), + [sym_identifier] = ACTIONS(8228), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(8230), + [anon_sym_virtual] = ACTIONS(8232), + [anon_sym_extern] = ACTIONS(8234), + [anon_sym___attribute__] = ACTIONS(8236), + [anon_sym___attribute] = ACTIONS(8236), + [anon_sym_COLON_COLON] = ACTIONS(8238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8240), + [anon_sym___declspec] = ACTIONS(8242), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(8234), + [anon_sym_register] = ACTIONS(8234), + [anon_sym_inline] = ACTIONS(8234), + [anon_sym___inline] = ACTIONS(8234), + [anon_sym___inline__] = ACTIONS(8234), + [anon_sym___forceinline] = ACTIONS(8234), + [anon_sym_thread_local] = ACTIONS(8234), + [anon_sym___thread] = ACTIONS(8234), + [anon_sym_const] = ACTIONS(8230), + [anon_sym_constexpr] = ACTIONS(8230), + [anon_sym_volatile] = ACTIONS(8230), + [anon_sym_restrict] = ACTIONS(8230), + [anon_sym___restrict__] = ACTIONS(8230), + [anon_sym__Atomic] = ACTIONS(8230), + [anon_sym__Noreturn] = ACTIONS(8230), + [anon_sym_noreturn] = ACTIONS(8230), + [anon_sym__Nonnull] = ACTIONS(8230), + [anon_sym_mutable] = ACTIONS(8230), + [anon_sym_constinit] = ACTIONS(8230), + [anon_sym_consteval] = ACTIONS(8230), + [anon_sym_alignas] = ACTIONS(8244), + [anon_sym__Alignas] = ACTIONS(8244), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), }, - [STATE(2602)] = { - [sym_attribute_specifier] = STATE(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7063), - [anon_sym_COMMA] = ACTIONS(7063), - [anon_sym_RPAREN] = ACTIONS(7063), - [anon_sym_LPAREN2] = ACTIONS(7063), - [anon_sym_DASH] = ACTIONS(7061), - [anon_sym_PLUS] = ACTIONS(7061), - [anon_sym_STAR] = ACTIONS(7061), - [anon_sym_SLASH] = ACTIONS(7061), - [anon_sym_PERCENT] = ACTIONS(7061), - [anon_sym_PIPE_PIPE] = ACTIONS(7063), - [anon_sym_AMP_AMP] = ACTIONS(7063), - [anon_sym_PIPE] = ACTIONS(7061), - [anon_sym_CARET] = ACTIONS(7061), - [anon_sym_AMP] = ACTIONS(7061), - [anon_sym_EQ_EQ] = ACTIONS(7063), - [anon_sym_BANG_EQ] = ACTIONS(7063), - [anon_sym_GT] = ACTIONS(7061), - [anon_sym_GT_EQ] = ACTIONS(7063), - [anon_sym_LT_EQ] = ACTIONS(7061), - [anon_sym_LT] = ACTIONS(7061), - [anon_sym_LT_LT] = ACTIONS(7061), - [anon_sym_GT_GT] = ACTIONS(7061), - [anon_sym___extension__] = ACTIONS(7063), - [anon_sym___attribute__] = ACTIONS(7813), - [anon_sym___attribute] = ACTIONS(7815), - [anon_sym_LBRACE] = ACTIONS(7063), - [anon_sym_LBRACK] = ACTIONS(7063), - [anon_sym_EQ] = ACTIONS(7061), - [anon_sym_const] = ACTIONS(7061), - [anon_sym_constexpr] = ACTIONS(7063), - [anon_sym_volatile] = ACTIONS(7063), - [anon_sym_restrict] = ACTIONS(7063), - [anon_sym___restrict__] = ACTIONS(7063), - [anon_sym__Atomic] = ACTIONS(7063), - [anon_sym__Noreturn] = ACTIONS(7063), - [anon_sym_noreturn] = ACTIONS(7063), - [anon_sym__Nonnull] = ACTIONS(7063), - [anon_sym_mutable] = ACTIONS(7063), - [anon_sym_constinit] = ACTIONS(7063), - [anon_sym_consteval] = ACTIONS(7063), - [anon_sym_alignas] = ACTIONS(7063), - [anon_sym__Alignas] = ACTIONS(7063), - [anon_sym_QMARK] = ACTIONS(7063), - [anon_sym_STAR_EQ] = ACTIONS(7063), - [anon_sym_SLASH_EQ] = ACTIONS(7063), - [anon_sym_PERCENT_EQ] = ACTIONS(7063), - [anon_sym_PLUS_EQ] = ACTIONS(7063), - [anon_sym_DASH_EQ] = ACTIONS(7063), - [anon_sym_LT_LT_EQ] = ACTIONS(7063), - [anon_sym_GT_GT_EQ] = ACTIONS(7063), - [anon_sym_AMP_EQ] = ACTIONS(7063), - [anon_sym_CARET_EQ] = ACTIONS(7063), - [anon_sym_PIPE_EQ] = ACTIONS(7063), - [anon_sym_and_eq] = ACTIONS(7063), - [anon_sym_or_eq] = ACTIONS(7063), - [anon_sym_xor_eq] = ACTIONS(7063), - [anon_sym_LT_EQ_GT] = ACTIONS(7063), - [anon_sym_or] = ACTIONS(7061), - [anon_sym_and] = ACTIONS(7061), - [anon_sym_bitor] = ACTIONS(7063), - [anon_sym_xor] = ACTIONS(7061), - [anon_sym_bitand] = ACTIONS(7063), - [anon_sym_not_eq] = ACTIONS(7063), - [anon_sym_DASH_DASH] = ACTIONS(7063), - [anon_sym_PLUS_PLUS] = ACTIONS(7063), - [anon_sym_DOT] = ACTIONS(7061), - [anon_sym_DOT_STAR] = ACTIONS(7063), - [anon_sym_DASH_GT] = ACTIONS(7061), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7063), - [anon_sym_override] = ACTIONS(7063), - [anon_sym_requires] = ACTIONS(7063), - [anon_sym_DASH_GT_STAR] = ACTIONS(7063), + [STATE(2470)] = { + [sym_attribute_specifier] = STATE(2470), + [aux_sym_type_definition_repeat1] = STATE(2470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6937), + [anon_sym_COMMA] = ACTIONS(6937), + [anon_sym_RPAREN] = ACTIONS(6937), + [anon_sym_LPAREN2] = ACTIONS(6937), + [anon_sym_DASH] = ACTIONS(6935), + [anon_sym_PLUS] = ACTIONS(6935), + [anon_sym_STAR] = ACTIONS(6935), + [anon_sym_SLASH] = ACTIONS(6935), + [anon_sym_PERCENT] = ACTIONS(6935), + [anon_sym_PIPE_PIPE] = ACTIONS(6937), + [anon_sym_AMP_AMP] = ACTIONS(6937), + [anon_sym_PIPE] = ACTIONS(6935), + [anon_sym_CARET] = ACTIONS(6935), + [anon_sym_AMP] = ACTIONS(6935), + [anon_sym_EQ_EQ] = ACTIONS(6937), + [anon_sym_BANG_EQ] = ACTIONS(6937), + [anon_sym_GT] = ACTIONS(6935), + [anon_sym_GT_EQ] = ACTIONS(6937), + [anon_sym_LT_EQ] = ACTIONS(6935), + [anon_sym_LT] = ACTIONS(6935), + [anon_sym_LT_LT] = ACTIONS(6935), + [anon_sym_GT_GT] = ACTIONS(6935), + [anon_sym___extension__] = ACTIONS(6937), + [anon_sym___attribute__] = ACTIONS(8274), + [anon_sym___attribute] = ACTIONS(8277), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6937), + [anon_sym_LBRACK] = ACTIONS(6935), + [anon_sym_EQ] = ACTIONS(6935), + [anon_sym_const] = ACTIONS(6935), + [anon_sym_constexpr] = ACTIONS(6937), + [anon_sym_volatile] = ACTIONS(6937), + [anon_sym_restrict] = ACTIONS(6937), + [anon_sym___restrict__] = ACTIONS(6937), + [anon_sym__Atomic] = ACTIONS(6937), + [anon_sym__Noreturn] = ACTIONS(6937), + [anon_sym_noreturn] = ACTIONS(6937), + [anon_sym__Nonnull] = ACTIONS(6937), + [anon_sym_mutable] = ACTIONS(6937), + [anon_sym_constinit] = ACTIONS(6937), + [anon_sym_consteval] = ACTIONS(6937), + [anon_sym_alignas] = ACTIONS(6937), + [anon_sym__Alignas] = ACTIONS(6937), + [anon_sym_QMARK] = ACTIONS(6937), + [anon_sym_STAR_EQ] = ACTIONS(6937), + [anon_sym_SLASH_EQ] = ACTIONS(6937), + [anon_sym_PERCENT_EQ] = ACTIONS(6937), + [anon_sym_PLUS_EQ] = ACTIONS(6937), + [anon_sym_DASH_EQ] = ACTIONS(6937), + [anon_sym_LT_LT_EQ] = ACTIONS(6937), + [anon_sym_GT_GT_EQ] = ACTIONS(6937), + [anon_sym_AMP_EQ] = ACTIONS(6937), + [anon_sym_CARET_EQ] = ACTIONS(6937), + [anon_sym_PIPE_EQ] = ACTIONS(6937), + [anon_sym_LT_EQ_GT] = ACTIONS(6937), + [anon_sym_or] = ACTIONS(6937), + [anon_sym_and] = ACTIONS(6937), + [anon_sym_bitor] = ACTIONS(6937), + [anon_sym_xor] = ACTIONS(6937), + [anon_sym_bitand] = ACTIONS(6937), + [anon_sym_not_eq] = ACTIONS(6937), + [anon_sym_DASH_DASH] = ACTIONS(6937), + [anon_sym_PLUS_PLUS] = ACTIONS(6937), + [anon_sym_asm] = ACTIONS(6937), + [anon_sym___asm__] = ACTIONS(6937), + [anon_sym___asm] = ACTIONS(6935), + [anon_sym_DOT] = ACTIONS(6935), + [anon_sym_DOT_STAR] = ACTIONS(6937), + [anon_sym_DASH_GT] = ACTIONS(6935), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6937), + [anon_sym_override] = ACTIONS(6937), + [anon_sym_noexcept] = ACTIONS(6937), + [anon_sym_throw] = ACTIONS(6937), + [anon_sym_requires] = ACTIONS(6937), + [anon_sym_DASH_GT_STAR] = ACTIONS(6937), }, - [STATE(2603)] = { - [sym_attribute_specifier] = STATE(2955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7067), - [anon_sym_COMMA] = ACTIONS(7067), - [anon_sym_RPAREN] = ACTIONS(7067), - [anon_sym_LPAREN2] = ACTIONS(7067), - [anon_sym_DASH] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7065), - [anon_sym_STAR] = ACTIONS(7065), - [anon_sym_SLASH] = ACTIONS(7065), - [anon_sym_PERCENT] = ACTIONS(7065), - [anon_sym_PIPE_PIPE] = ACTIONS(7067), - [anon_sym_AMP_AMP] = ACTIONS(7067), - [anon_sym_PIPE] = ACTIONS(7065), - [anon_sym_CARET] = ACTIONS(7065), - [anon_sym_AMP] = ACTIONS(7065), - [anon_sym_EQ_EQ] = ACTIONS(7067), - [anon_sym_BANG_EQ] = ACTIONS(7067), - [anon_sym_GT] = ACTIONS(7065), - [anon_sym_GT_EQ] = ACTIONS(7067), - [anon_sym_LT_EQ] = ACTIONS(7065), - [anon_sym_LT] = ACTIONS(7065), - [anon_sym_LT_LT] = ACTIONS(7065), - [anon_sym_GT_GT] = ACTIONS(7065), - [anon_sym___extension__] = ACTIONS(7067), - [anon_sym___attribute__] = ACTIONS(7813), - [anon_sym___attribute] = ACTIONS(7815), - [anon_sym_LBRACE] = ACTIONS(7067), - [anon_sym_LBRACK] = ACTIONS(7067), - [anon_sym_EQ] = ACTIONS(7065), - [anon_sym_const] = ACTIONS(7065), - [anon_sym_constexpr] = ACTIONS(7067), - [anon_sym_volatile] = ACTIONS(7067), - [anon_sym_restrict] = ACTIONS(7067), - [anon_sym___restrict__] = ACTIONS(7067), - [anon_sym__Atomic] = ACTIONS(7067), - [anon_sym__Noreturn] = ACTIONS(7067), - [anon_sym_noreturn] = ACTIONS(7067), - [anon_sym__Nonnull] = ACTIONS(7067), - [anon_sym_mutable] = ACTIONS(7067), - [anon_sym_constinit] = ACTIONS(7067), - [anon_sym_consteval] = ACTIONS(7067), - [anon_sym_alignas] = ACTIONS(7067), - [anon_sym__Alignas] = ACTIONS(7067), - [anon_sym_QMARK] = ACTIONS(7067), - [anon_sym_STAR_EQ] = ACTIONS(7067), - [anon_sym_SLASH_EQ] = ACTIONS(7067), - [anon_sym_PERCENT_EQ] = ACTIONS(7067), - [anon_sym_PLUS_EQ] = ACTIONS(7067), - [anon_sym_DASH_EQ] = ACTIONS(7067), - [anon_sym_LT_LT_EQ] = ACTIONS(7067), - [anon_sym_GT_GT_EQ] = ACTIONS(7067), - [anon_sym_AMP_EQ] = ACTIONS(7067), - [anon_sym_CARET_EQ] = ACTIONS(7067), - [anon_sym_PIPE_EQ] = ACTIONS(7067), - [anon_sym_and_eq] = ACTIONS(7067), - [anon_sym_or_eq] = ACTIONS(7067), - [anon_sym_xor_eq] = ACTIONS(7067), - [anon_sym_LT_EQ_GT] = ACTIONS(7067), - [anon_sym_or] = ACTIONS(7065), - [anon_sym_and] = ACTIONS(7065), - [anon_sym_bitor] = ACTIONS(7067), - [anon_sym_xor] = ACTIONS(7065), - [anon_sym_bitand] = ACTIONS(7067), - [anon_sym_not_eq] = ACTIONS(7067), - [anon_sym_DASH_DASH] = ACTIONS(7067), - [anon_sym_PLUS_PLUS] = ACTIONS(7067), - [anon_sym_DOT] = ACTIONS(7065), - [anon_sym_DOT_STAR] = ACTIONS(7067), - [anon_sym_DASH_GT] = ACTIONS(7065), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7067), - [anon_sym_override] = ACTIONS(7067), - [anon_sym_requires] = ACTIONS(7067), - [anon_sym_DASH_GT_STAR] = ACTIONS(7067), + [STATE(2471)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7160), + [anon_sym_COMMA] = ACTIONS(7160), + [anon_sym_LPAREN2] = ACTIONS(7160), + [anon_sym_DASH] = ACTIONS(7158), + [anon_sym_PLUS] = ACTIONS(7158), + [anon_sym_STAR] = ACTIONS(7158), + [anon_sym_SLASH] = ACTIONS(7158), + [anon_sym_PERCENT] = ACTIONS(7158), + [anon_sym_PIPE_PIPE] = ACTIONS(7160), + [anon_sym_AMP_AMP] = ACTIONS(7160), + [anon_sym_PIPE] = ACTIONS(7158), + [anon_sym_CARET] = ACTIONS(7158), + [anon_sym_AMP] = ACTIONS(7158), + [anon_sym_EQ_EQ] = ACTIONS(7160), + [anon_sym_BANG_EQ] = ACTIONS(7160), + [anon_sym_GT] = ACTIONS(7158), + [anon_sym_GT_EQ] = ACTIONS(7158), + [anon_sym_LT_EQ] = ACTIONS(7158), + [anon_sym_LT] = ACTIONS(7158), + [anon_sym_LT_LT] = ACTIONS(7158), + [anon_sym_GT_GT] = ACTIONS(7158), + [anon_sym___extension__] = ACTIONS(7160), + [anon_sym___attribute__] = ACTIONS(7160), + [anon_sym___attribute] = ACTIONS(7158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7160), + [anon_sym_LBRACK] = ACTIONS(7158), + [anon_sym_EQ] = ACTIONS(7158), + [anon_sym_const] = ACTIONS(7158), + [anon_sym_constexpr] = ACTIONS(7160), + [anon_sym_volatile] = ACTIONS(7160), + [anon_sym_restrict] = ACTIONS(7160), + [anon_sym___restrict__] = ACTIONS(7160), + [anon_sym__Atomic] = ACTIONS(7160), + [anon_sym__Noreturn] = ACTIONS(7160), + [anon_sym_noreturn] = ACTIONS(7160), + [anon_sym__Nonnull] = ACTIONS(7160), + [anon_sym_mutable] = ACTIONS(7160), + [anon_sym_constinit] = ACTIONS(7160), + [anon_sym_consteval] = ACTIONS(7160), + [anon_sym_alignas] = ACTIONS(7160), + [anon_sym__Alignas] = ACTIONS(7160), + [anon_sym_QMARK] = ACTIONS(7160), + [anon_sym_STAR_EQ] = ACTIONS(7160), + [anon_sym_SLASH_EQ] = ACTIONS(7160), + [anon_sym_PERCENT_EQ] = ACTIONS(7160), + [anon_sym_PLUS_EQ] = ACTIONS(7160), + [anon_sym_DASH_EQ] = ACTIONS(7160), + [anon_sym_LT_LT_EQ] = ACTIONS(7160), + [anon_sym_GT_GT_EQ] = ACTIONS(7158), + [anon_sym_AMP_EQ] = ACTIONS(7160), + [anon_sym_CARET_EQ] = ACTIONS(7160), + [anon_sym_PIPE_EQ] = ACTIONS(7160), + [anon_sym_and_eq] = ACTIONS(7160), + [anon_sym_or_eq] = ACTIONS(7160), + [anon_sym_xor_eq] = ACTIONS(7160), + [anon_sym_LT_EQ_GT] = ACTIONS(7160), + [anon_sym_or] = ACTIONS(7158), + [anon_sym_and] = ACTIONS(7158), + [anon_sym_bitor] = ACTIONS(7160), + [anon_sym_xor] = ACTIONS(7158), + [anon_sym_bitand] = ACTIONS(7160), + [anon_sym_not_eq] = ACTIONS(7160), + [anon_sym_DASH_DASH] = ACTIONS(7160), + [anon_sym_PLUS_PLUS] = ACTIONS(7160), + [anon_sym_asm] = ACTIONS(7160), + [anon_sym___asm__] = ACTIONS(7160), + [anon_sym___asm] = ACTIONS(7158), + [anon_sym_DOT] = ACTIONS(7158), + [anon_sym_DOT_STAR] = ACTIONS(7160), + [anon_sym_DASH_GT] = ACTIONS(7160), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7160), + [anon_sym_override] = ACTIONS(7160), + [anon_sym_GT2] = ACTIONS(7160), + [anon_sym_noexcept] = ACTIONS(7160), + [anon_sym_throw] = ACTIONS(7160), + [anon_sym_requires] = ACTIONS(7160), }, - [STATE(2604)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2339), - [sym_identifier] = ACTIONS(6627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), - [anon_sym_COMMA] = ACTIONS(7081), - [anon_sym_RPAREN] = ACTIONS(7081), - [anon_sym_LPAREN2] = ACTIONS(7081), - [anon_sym_DASH] = ACTIONS(7084), - [anon_sym_PLUS] = ACTIONS(7084), - [anon_sym_STAR] = ACTIONS(7084), - [anon_sym_SLASH] = ACTIONS(7084), - [anon_sym_PERCENT] = ACTIONS(7084), - [anon_sym_PIPE_PIPE] = ACTIONS(7081), - [anon_sym_AMP_AMP] = ACTIONS(7081), - [anon_sym_PIPE] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7084), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_EQ_EQ] = ACTIONS(7081), - [anon_sym_BANG_EQ] = ACTIONS(7081), - [anon_sym_GT] = ACTIONS(7084), - [anon_sym_GT_EQ] = ACTIONS(7081), - [anon_sym_LT_EQ] = ACTIONS(7084), - [anon_sym_LT] = ACTIONS(7084), - [anon_sym_LT_LT] = ACTIONS(7084), - [anon_sym_GT_GT] = ACTIONS(7084), - [anon_sym___extension__] = ACTIONS(6627), - [anon_sym___attribute__] = ACTIONS(7084), - [anon_sym___attribute] = ACTIONS(7084), - [anon_sym_LBRACE] = ACTIONS(7081), - [anon_sym_signed] = ACTIONS(7894), - [anon_sym_unsigned] = ACTIONS(7894), - [anon_sym_long] = ACTIONS(7894), - [anon_sym_short] = ACTIONS(7894), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_EQ] = ACTIONS(7084), - [anon_sym_const] = ACTIONS(6627), - [anon_sym_constexpr] = ACTIONS(6627), - [anon_sym_volatile] = ACTIONS(6627), - [anon_sym_restrict] = ACTIONS(6627), - [anon_sym___restrict__] = ACTIONS(6627), - [anon_sym__Atomic] = ACTIONS(6627), - [anon_sym__Noreturn] = ACTIONS(6627), - [anon_sym_noreturn] = ACTIONS(6627), - [anon_sym__Nonnull] = ACTIONS(6627), - [anon_sym_mutable] = ACTIONS(6627), - [anon_sym_constinit] = ACTIONS(6627), - [anon_sym_consteval] = ACTIONS(6627), - [anon_sym_alignas] = ACTIONS(6627), - [anon_sym__Alignas] = ACTIONS(6627), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(7081), - [anon_sym_STAR_EQ] = ACTIONS(7081), - [anon_sym_SLASH_EQ] = ACTIONS(7081), - [anon_sym_PERCENT_EQ] = ACTIONS(7081), - [anon_sym_PLUS_EQ] = ACTIONS(7081), - [anon_sym_DASH_EQ] = ACTIONS(7081), - [anon_sym_LT_LT_EQ] = ACTIONS(7081), - [anon_sym_GT_GT_EQ] = ACTIONS(7081), - [anon_sym_AMP_EQ] = ACTIONS(7081), - [anon_sym_CARET_EQ] = ACTIONS(7081), - [anon_sym_PIPE_EQ] = ACTIONS(7081), - [anon_sym_LT_EQ_GT] = ACTIONS(7081), - [anon_sym_or] = ACTIONS(7084), - [anon_sym_and] = ACTIONS(7084), - [anon_sym_bitor] = ACTIONS(7084), - [anon_sym_xor] = ACTIONS(7084), - [anon_sym_bitand] = ACTIONS(7084), - [anon_sym_not_eq] = ACTIONS(7084), - [anon_sym_DASH_DASH] = ACTIONS(7081), - [anon_sym_PLUS_PLUS] = ACTIONS(7081), - [anon_sym_DOT] = ACTIONS(7084), - [anon_sym_DOT_STAR] = ACTIONS(7081), - [anon_sym_DASH_GT] = ACTIONS(7084), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7081), + [STATE(2472)] = { + [sym__abstract_declarator] = STATE(5289), + [sym_abstract_parenthesized_declarator] = STATE(5063), + [sym_abstract_pointer_declarator] = STATE(5063), + [sym_abstract_function_declarator] = STATE(5063), + [sym_abstract_array_declarator] = STATE(5063), + [sym_type_qualifier] = STATE(2482), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1978), + [sym_abstract_reference_declarator] = STATE(5063), + [sym__function_declarator_seq] = STATE(5065), + [aux_sym__type_definition_type_repeat1] = STATE(2482), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), + [anon_sym_COMMA] = ACTIONS(7391), + [anon_sym_LPAREN2] = ACTIONS(7112), + [anon_sym_DASH] = ACTIONS(7393), + [anon_sym_PLUS] = ACTIONS(7393), + [anon_sym_STAR] = ACTIONS(7363), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_PERCENT] = ACTIONS(7393), + [anon_sym_PIPE_PIPE] = ACTIONS(7391), + [anon_sym_AMP_AMP] = ACTIONS(7365), + [anon_sym_PIPE] = ACTIONS(7393), + [anon_sym_CARET] = ACTIONS(7393), + [anon_sym_AMP] = ACTIONS(7367), + [anon_sym_EQ_EQ] = ACTIONS(7391), + [anon_sym_BANG_EQ] = ACTIONS(7391), + [anon_sym_GT] = ACTIONS(7393), + [anon_sym_GT_EQ] = ACTIONS(7391), + [anon_sym_LT_EQ] = ACTIONS(7393), + [anon_sym_LT] = ACTIONS(7393), + [anon_sym_LT_LT] = ACTIONS(7393), + [anon_sym_GT_GT] = ACTIONS(7393), + [anon_sym___extension__] = ACTIONS(7120), + [anon_sym_LBRACK] = ACTIONS(7128), + [anon_sym_RBRACK] = ACTIONS(7391), + [anon_sym_EQ] = ACTIONS(7393), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(7120), + [anon_sym_volatile] = ACTIONS(7120), + [anon_sym_restrict] = ACTIONS(7120), + [anon_sym___restrict__] = ACTIONS(7120), + [anon_sym__Atomic] = ACTIONS(7120), + [anon_sym__Noreturn] = ACTIONS(7120), + [anon_sym_noreturn] = ACTIONS(7120), + [anon_sym__Nonnull] = ACTIONS(7120), + [anon_sym_mutable] = ACTIONS(7120), + [anon_sym_constinit] = ACTIONS(7120), + [anon_sym_consteval] = ACTIONS(7120), + [anon_sym_alignas] = ACTIONS(7130), + [anon_sym__Alignas] = ACTIONS(7130), + [anon_sym_QMARK] = ACTIONS(7391), + [anon_sym_STAR_EQ] = ACTIONS(7391), + [anon_sym_SLASH_EQ] = ACTIONS(7391), + [anon_sym_PERCENT_EQ] = ACTIONS(7391), + [anon_sym_PLUS_EQ] = ACTIONS(7391), + [anon_sym_DASH_EQ] = ACTIONS(7391), + [anon_sym_LT_LT_EQ] = ACTIONS(7391), + [anon_sym_GT_GT_EQ] = ACTIONS(7391), + [anon_sym_AMP_EQ] = ACTIONS(7391), + [anon_sym_CARET_EQ] = ACTIONS(7391), + [anon_sym_PIPE_EQ] = ACTIONS(7391), + [anon_sym_and_eq] = ACTIONS(7391), + [anon_sym_or_eq] = ACTIONS(7391), + [anon_sym_xor_eq] = ACTIONS(7391), + [anon_sym_LT_EQ_GT] = ACTIONS(7391), + [anon_sym_or] = ACTIONS(7393), + [anon_sym_and] = ACTIONS(7393), + [anon_sym_bitor] = ACTIONS(7391), + [anon_sym_xor] = ACTIONS(7393), + [anon_sym_bitand] = ACTIONS(7391), + [anon_sym_not_eq] = ACTIONS(7391), + [anon_sym_DASH_DASH] = ACTIONS(7391), + [anon_sym_PLUS_PLUS] = ACTIONS(7391), + [anon_sym_DOT] = ACTIONS(7393), + [anon_sym_DOT_STAR] = ACTIONS(7391), + [anon_sym_DASH_GT] = ACTIONS(7391), + [sym_comment] = ACTIONS(3), }, - [STATE(2605)] = { - [sym_attribute_specifier] = STATE(4247), - [sym_attribute_declaration] = STATE(4729), - [sym_gnu_asm_expression] = STATE(8972), - [sym_virtual_specifier] = STATE(4992), - [sym__function_exception_specification] = STATE(3259), - [sym__function_attributes_end] = STATE(4448), - [sym__function_postfix] = STATE(5531), - [sym_trailing_return_type] = STATE(4529), - [sym_noexcept] = STATE(3259), - [sym_throw_specifier] = STATE(3259), - [sym_requires_clause] = STATE(5531), - [aux_sym_type_definition_repeat1] = STATE(4247), - [aux_sym_attributed_declarator_repeat1] = STATE(4729), - [aux_sym__function_postfix_repeat1] = STATE(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6410), - [anon_sym___attribute] = ACTIONS(6412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7544), - [anon_sym_and] = ACTIONS(7544), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7544), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(8164), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6453), - [anon_sym_override] = ACTIONS(6453), - [anon_sym_noexcept] = ACTIONS(6426), - [anon_sym_throw] = ACTIONS(6428), - [anon_sym_requires] = ACTIONS(6455), - [anon_sym_DASH_GT_STAR] = ACTIONS(7544), + [STATE(2473)] = { + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2724), + [aux_sym_array_declarator_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(8280), + [anon_sym_LPAREN2] = ACTIONS(8282), + [anon_sym_BANG] = ACTIONS(8282), + [anon_sym_TILDE] = ACTIONS(8282), + [anon_sym_DASH] = ACTIONS(8280), + [anon_sym_PLUS] = ACTIONS(8280), + [anon_sym_STAR] = ACTIONS(8282), + [anon_sym_AMP] = ACTIONS(8282), + [anon_sym___extension__] = ACTIONS(8284), + [anon_sym_COLON_COLON] = ACTIONS(8282), + [anon_sym_LBRACK] = ACTIONS(8280), + [anon_sym_static] = ACTIONS(8287), + [anon_sym_RBRACK] = ACTIONS(8282), + [anon_sym_const] = ACTIONS(8284), + [anon_sym_constexpr] = ACTIONS(8284), + [anon_sym_volatile] = ACTIONS(8284), + [anon_sym_restrict] = ACTIONS(8284), + [anon_sym___restrict__] = ACTIONS(8284), + [anon_sym__Atomic] = ACTIONS(8284), + [anon_sym__Noreturn] = ACTIONS(8284), + [anon_sym_noreturn] = ACTIONS(8284), + [anon_sym__Nonnull] = ACTIONS(8284), + [anon_sym_mutable] = ACTIONS(8284), + [anon_sym_constinit] = ACTIONS(8284), + [anon_sym_consteval] = ACTIONS(8284), + [anon_sym_alignas] = ACTIONS(8290), + [anon_sym__Alignas] = ACTIONS(8290), + [sym_primitive_type] = ACTIONS(8280), + [anon_sym_not] = ACTIONS(8280), + [anon_sym_compl] = ACTIONS(8280), + [anon_sym_DASH_DASH] = ACTIONS(8282), + [anon_sym_PLUS_PLUS] = ACTIONS(8282), + [anon_sym_sizeof] = ACTIONS(8280), + [anon_sym___alignof__] = ACTIONS(8280), + [anon_sym___alignof] = ACTIONS(8280), + [anon_sym__alignof] = ACTIONS(8280), + [anon_sym_alignof] = ACTIONS(8280), + [anon_sym__Alignof] = ACTIONS(8280), + [anon_sym_offsetof] = ACTIONS(8280), + [anon_sym__Generic] = ACTIONS(8280), + [anon_sym_typename] = ACTIONS(8280), + [anon_sym_asm] = ACTIONS(8280), + [anon_sym___asm__] = ACTIONS(8280), + [anon_sym___asm] = ACTIONS(8280), + [sym_number_literal] = ACTIONS(8282), + [anon_sym_L_SQUOTE] = ACTIONS(8282), + [anon_sym_u_SQUOTE] = ACTIONS(8282), + [anon_sym_U_SQUOTE] = ACTIONS(8282), + [anon_sym_u8_SQUOTE] = ACTIONS(8282), + [anon_sym_SQUOTE] = ACTIONS(8282), + [anon_sym_L_DQUOTE] = ACTIONS(8282), + [anon_sym_u_DQUOTE] = ACTIONS(8282), + [anon_sym_U_DQUOTE] = ACTIONS(8282), + [anon_sym_u8_DQUOTE] = ACTIONS(8282), + [anon_sym_DQUOTE] = ACTIONS(8282), + [sym_true] = ACTIONS(8280), + [sym_false] = ACTIONS(8280), + [anon_sym_NULL] = ACTIONS(8280), + [anon_sym_nullptr] = ACTIONS(8280), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(8280), + [anon_sym_template] = ACTIONS(8280), + [anon_sym_delete] = ACTIONS(8280), + [anon_sym_R_DQUOTE] = ACTIONS(8282), + [anon_sym_LR_DQUOTE] = ACTIONS(8282), + [anon_sym_uR_DQUOTE] = ACTIONS(8282), + [anon_sym_UR_DQUOTE] = ACTIONS(8282), + [anon_sym_u8R_DQUOTE] = ACTIONS(8282), + [anon_sym_co_await] = ACTIONS(8280), + [anon_sym_new] = ACTIONS(8280), + [anon_sym_requires] = ACTIONS(8280), + [anon_sym_CARET_CARET] = ACTIONS(8282), + [anon_sym_LBRACK_COLON] = ACTIONS(8282), + [sym_this] = ACTIONS(8280), }, - [STATE(2606)] = { - [sym_attribute_specifier] = STATE(3410), - [sym_enumerator_list] = STATE(2846), - [sym__enum_base_clause] = STATE(2829), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7602), - [anon_sym_COMMA] = ACTIONS(7602), - [anon_sym_RPAREN] = ACTIONS(7602), - [anon_sym_LPAREN2] = ACTIONS(7602), - [anon_sym_DASH] = ACTIONS(7600), - [anon_sym_PLUS] = ACTIONS(7600), - [anon_sym_STAR] = ACTIONS(7600), - [anon_sym_SLASH] = ACTIONS(7600), - [anon_sym_PERCENT] = ACTIONS(7600), - [anon_sym_PIPE_PIPE] = ACTIONS(7602), - [anon_sym_AMP_AMP] = ACTIONS(7602), - [anon_sym_PIPE] = ACTIONS(7600), - [anon_sym_CARET] = ACTIONS(7600), - [anon_sym_AMP] = ACTIONS(7600), - [anon_sym_EQ_EQ] = ACTIONS(7602), - [anon_sym_BANG_EQ] = ACTIONS(7602), - [anon_sym_GT] = ACTIONS(7600), - [anon_sym_GT_EQ] = ACTIONS(7602), - [anon_sym_LT_EQ] = ACTIONS(7600), - [anon_sym_LT] = ACTIONS(7600), - [anon_sym_LT_LT] = ACTIONS(7600), - [anon_sym_GT_GT] = ACTIONS(7600), - [anon_sym___extension__] = ACTIONS(7602), - [anon_sym___attribute__] = ACTIONS(8189), - [anon_sym___attribute] = ACTIONS(8191), - [anon_sym_COLON] = ACTIONS(8270), - [anon_sym_LBRACE] = ACTIONS(8272), - [anon_sym_LBRACK] = ACTIONS(7602), - [anon_sym_EQ] = ACTIONS(7600), - [anon_sym_const] = ACTIONS(7600), - [anon_sym_constexpr] = ACTIONS(7602), - [anon_sym_volatile] = ACTIONS(7602), - [anon_sym_restrict] = ACTIONS(7602), - [anon_sym___restrict__] = ACTIONS(7602), - [anon_sym__Atomic] = ACTIONS(7602), - [anon_sym__Noreturn] = ACTIONS(7602), - [anon_sym_noreturn] = ACTIONS(7602), - [anon_sym__Nonnull] = ACTIONS(7602), - [anon_sym_mutable] = ACTIONS(7602), - [anon_sym_constinit] = ACTIONS(7602), - [anon_sym_consteval] = ACTIONS(7602), - [anon_sym_alignas] = ACTIONS(7602), - [anon_sym__Alignas] = ACTIONS(7602), - [anon_sym_QMARK] = ACTIONS(7602), - [anon_sym_STAR_EQ] = ACTIONS(7602), - [anon_sym_SLASH_EQ] = ACTIONS(7602), - [anon_sym_PERCENT_EQ] = ACTIONS(7602), - [anon_sym_PLUS_EQ] = ACTIONS(7602), - [anon_sym_DASH_EQ] = ACTIONS(7602), - [anon_sym_LT_LT_EQ] = ACTIONS(7602), - [anon_sym_GT_GT_EQ] = ACTIONS(7602), - [anon_sym_AMP_EQ] = ACTIONS(7602), - [anon_sym_CARET_EQ] = ACTIONS(7602), - [anon_sym_PIPE_EQ] = ACTIONS(7602), - [anon_sym_LT_EQ_GT] = ACTIONS(7602), - [anon_sym_or] = ACTIONS(7602), - [anon_sym_and] = ACTIONS(7602), - [anon_sym_bitor] = ACTIONS(7602), - [anon_sym_xor] = ACTIONS(7602), - [anon_sym_bitand] = ACTIONS(7602), - [anon_sym_not_eq] = ACTIONS(7602), - [anon_sym_DASH_DASH] = ACTIONS(7602), - [anon_sym_PLUS_PLUS] = ACTIONS(7602), - [anon_sym_DOT] = ACTIONS(7600), - [anon_sym_DOT_STAR] = ACTIONS(7602), - [anon_sym_DASH_GT] = ACTIONS(7600), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7602), - [anon_sym_override] = ACTIONS(7602), - [anon_sym_requires] = ACTIONS(7602), - [anon_sym_DASH_GT_STAR] = ACTIONS(7602), - }, - [STATE(2607)] = { - [sym_attribute_specifier] = STATE(3442), - [sym_enumerator_list] = STATE(2894), - [sym__enum_base_clause] = STATE(2826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), - [anon_sym_COMMA] = ACTIONS(7653), - [anon_sym_RPAREN] = ACTIONS(7653), - [anon_sym_LPAREN2] = ACTIONS(7653), - [anon_sym_DASH] = ACTIONS(7651), - [anon_sym_PLUS] = ACTIONS(7651), - [anon_sym_STAR] = ACTIONS(7651), - [anon_sym_SLASH] = ACTIONS(7651), - [anon_sym_PERCENT] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_AMP_AMP] = ACTIONS(7653), - [anon_sym_PIPE] = ACTIONS(7651), - [anon_sym_CARET] = ACTIONS(7651), - [anon_sym_AMP] = ACTIONS(7651), - [anon_sym_EQ_EQ] = ACTIONS(7653), - [anon_sym_BANG_EQ] = ACTIONS(7653), - [anon_sym_GT] = ACTIONS(7651), - [anon_sym_GT_EQ] = ACTIONS(7653), - [anon_sym_LT_EQ] = ACTIONS(7651), - [anon_sym_LT] = ACTIONS(7651), - [anon_sym_LT_LT] = ACTIONS(7651), - [anon_sym_GT_GT] = ACTIONS(7651), - [anon_sym___extension__] = ACTIONS(7653), - [anon_sym___attribute__] = ACTIONS(8189), - [anon_sym___attribute] = ACTIONS(8191), - [anon_sym_COLON] = ACTIONS(8270), - [anon_sym_LBRACE] = ACTIONS(8272), - [anon_sym_LBRACK] = ACTIONS(7653), - [anon_sym_EQ] = ACTIONS(7651), - [anon_sym_const] = ACTIONS(7651), - [anon_sym_constexpr] = ACTIONS(7653), - [anon_sym_volatile] = ACTIONS(7653), - [anon_sym_restrict] = ACTIONS(7653), - [anon_sym___restrict__] = ACTIONS(7653), - [anon_sym__Atomic] = ACTIONS(7653), - [anon_sym__Noreturn] = ACTIONS(7653), - [anon_sym_noreturn] = ACTIONS(7653), - [anon_sym__Nonnull] = ACTIONS(7653), - [anon_sym_mutable] = ACTIONS(7653), - [anon_sym_constinit] = ACTIONS(7653), - [anon_sym_consteval] = ACTIONS(7653), - [anon_sym_alignas] = ACTIONS(7653), - [anon_sym__Alignas] = ACTIONS(7653), - [anon_sym_QMARK] = ACTIONS(7653), - [anon_sym_STAR_EQ] = ACTIONS(7653), - [anon_sym_SLASH_EQ] = ACTIONS(7653), - [anon_sym_PERCENT_EQ] = ACTIONS(7653), - [anon_sym_PLUS_EQ] = ACTIONS(7653), - [anon_sym_DASH_EQ] = ACTIONS(7653), - [anon_sym_LT_LT_EQ] = ACTIONS(7653), - [anon_sym_GT_GT_EQ] = ACTIONS(7653), - [anon_sym_AMP_EQ] = ACTIONS(7653), - [anon_sym_CARET_EQ] = ACTIONS(7653), - [anon_sym_PIPE_EQ] = ACTIONS(7653), - [anon_sym_LT_EQ_GT] = ACTIONS(7653), - [anon_sym_or] = ACTIONS(7653), - [anon_sym_and] = ACTIONS(7653), - [anon_sym_bitor] = ACTIONS(7653), - [anon_sym_xor] = ACTIONS(7653), - [anon_sym_bitand] = ACTIONS(7653), - [anon_sym_not_eq] = ACTIONS(7653), - [anon_sym_DASH_DASH] = ACTIONS(7653), - [anon_sym_PLUS_PLUS] = ACTIONS(7653), - [anon_sym_DOT] = ACTIONS(7651), - [anon_sym_DOT_STAR] = ACTIONS(7653), - [anon_sym_DASH_GT] = ACTIONS(7651), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7653), - [anon_sym_override] = ACTIONS(7653), - [anon_sym_requires] = ACTIONS(7653), - [anon_sym_DASH_GT_STAR] = ACTIONS(7653), - }, - [STATE(2608)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6969), - [anon_sym_COMMA] = ACTIONS(6969), - [anon_sym_RPAREN] = ACTIONS(6969), - [anon_sym_LPAREN2] = ACTIONS(6969), - [anon_sym_DASH] = ACTIONS(6967), - [anon_sym_PLUS] = ACTIONS(6967), - [anon_sym_STAR] = ACTIONS(6967), - [anon_sym_SLASH] = ACTIONS(6967), - [anon_sym_PERCENT] = ACTIONS(6967), - [anon_sym_PIPE_PIPE] = ACTIONS(6969), - [anon_sym_AMP_AMP] = ACTIONS(6969), - [anon_sym_PIPE] = ACTIONS(6967), - [anon_sym_CARET] = ACTIONS(6967), - [anon_sym_AMP] = ACTIONS(6967), - [anon_sym_EQ_EQ] = ACTIONS(6969), - [anon_sym_BANG_EQ] = ACTIONS(6969), - [anon_sym_GT] = ACTIONS(6967), - [anon_sym_GT_EQ] = ACTIONS(6969), - [anon_sym_LT_EQ] = ACTIONS(6967), - [anon_sym_LT] = ACTIONS(6967), - [anon_sym_LT_LT] = ACTIONS(6967), - [anon_sym_GT_GT] = ACTIONS(6967), - [anon_sym___extension__] = ACTIONS(6969), - [anon_sym___attribute__] = ACTIONS(6969), - [anon_sym___attribute] = ACTIONS(6967), - [anon_sym_COLON] = ACTIONS(6967), - [anon_sym_COLON_COLON] = ACTIONS(6969), - [anon_sym_LBRACE] = ACTIONS(6969), - [anon_sym_LBRACK] = ACTIONS(6969), - [anon_sym_EQ] = ACTIONS(6967), - [anon_sym_const] = ACTIONS(6967), - [anon_sym_constexpr] = ACTIONS(6969), - [anon_sym_volatile] = ACTIONS(6969), - [anon_sym_restrict] = ACTIONS(6969), - [anon_sym___restrict__] = ACTIONS(6969), - [anon_sym__Atomic] = ACTIONS(6969), - [anon_sym__Noreturn] = ACTIONS(6969), - [anon_sym_noreturn] = ACTIONS(6969), - [anon_sym__Nonnull] = ACTIONS(6969), - [anon_sym_mutable] = ACTIONS(6969), - [anon_sym_constinit] = ACTIONS(6969), - [anon_sym_consteval] = ACTIONS(6969), - [anon_sym_alignas] = ACTIONS(6969), - [anon_sym__Alignas] = ACTIONS(6969), - [anon_sym_QMARK] = ACTIONS(6969), - [anon_sym_STAR_EQ] = ACTIONS(6969), - [anon_sym_SLASH_EQ] = ACTIONS(6969), - [anon_sym_PERCENT_EQ] = ACTIONS(6969), - [anon_sym_PLUS_EQ] = ACTIONS(6969), - [anon_sym_DASH_EQ] = ACTIONS(6969), - [anon_sym_LT_LT_EQ] = ACTIONS(6969), - [anon_sym_GT_GT_EQ] = ACTIONS(6969), - [anon_sym_AMP_EQ] = ACTIONS(6969), - [anon_sym_CARET_EQ] = ACTIONS(6969), - [anon_sym_PIPE_EQ] = ACTIONS(6969), - [anon_sym_LT_EQ_GT] = ACTIONS(6969), - [anon_sym_or] = ACTIONS(6969), - [anon_sym_and] = ACTIONS(6969), - [anon_sym_bitor] = ACTIONS(6969), - [anon_sym_xor] = ACTIONS(6969), - [anon_sym_bitand] = ACTIONS(6969), - [anon_sym_not_eq] = ACTIONS(6969), - [anon_sym_DASH_DASH] = ACTIONS(6969), - [anon_sym_PLUS_PLUS] = ACTIONS(6969), - [anon_sym_DOT] = ACTIONS(6967), - [anon_sym_DOT_STAR] = ACTIONS(6969), - [anon_sym_DASH_GT] = ACTIONS(6967), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6969), - [anon_sym_decltype] = ACTIONS(6969), - [anon_sym_final] = ACTIONS(6969), - [anon_sym_override] = ACTIONS(6969), - [anon_sym_requires] = ACTIONS(6969), - [anon_sym_DASH_GT_STAR] = ACTIONS(6969), + [STATE(2474)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7677), + [anon_sym_COMMA] = ACTIONS(7677), + [anon_sym_LPAREN2] = ACTIONS(7677), + [anon_sym_DASH] = ACTIONS(7675), + [anon_sym_PLUS] = ACTIONS(7675), + [anon_sym_STAR] = ACTIONS(7675), + [anon_sym_SLASH] = ACTIONS(7675), + [anon_sym_PERCENT] = ACTIONS(7675), + [anon_sym_PIPE_PIPE] = ACTIONS(7677), + [anon_sym_AMP_AMP] = ACTIONS(7677), + [anon_sym_PIPE] = ACTIONS(7675), + [anon_sym_CARET] = ACTIONS(7675), + [anon_sym_AMP] = ACTIONS(7675), + [anon_sym_EQ_EQ] = ACTIONS(7677), + [anon_sym_BANG_EQ] = ACTIONS(7677), + [anon_sym_GT] = ACTIONS(7675), + [anon_sym_GT_EQ] = ACTIONS(7675), + [anon_sym_LT_EQ] = ACTIONS(7675), + [anon_sym_LT] = ACTIONS(7675), + [anon_sym_LT_LT] = ACTIONS(7675), + [anon_sym_GT_GT] = ACTIONS(7675), + [anon_sym___extension__] = ACTIONS(7677), + [anon_sym___attribute__] = ACTIONS(7677), + [anon_sym___attribute] = ACTIONS(7675), + [anon_sym_LBRACE] = ACTIONS(7677), + [anon_sym_signed] = ACTIONS(8226), + [anon_sym_unsigned] = ACTIONS(8226), + [anon_sym_long] = ACTIONS(8226), + [anon_sym_short] = ACTIONS(8226), + [anon_sym_LBRACK] = ACTIONS(7677), + [anon_sym_EQ] = ACTIONS(7675), + [anon_sym_const] = ACTIONS(7675), + [anon_sym_constexpr] = ACTIONS(7677), + [anon_sym_volatile] = ACTIONS(7677), + [anon_sym_restrict] = ACTIONS(7677), + [anon_sym___restrict__] = ACTIONS(7677), + [anon_sym__Atomic] = ACTIONS(7677), + [anon_sym__Noreturn] = ACTIONS(7677), + [anon_sym_noreturn] = ACTIONS(7677), + [anon_sym__Nonnull] = ACTIONS(7677), + [anon_sym_mutable] = ACTIONS(7677), + [anon_sym_constinit] = ACTIONS(7677), + [anon_sym_consteval] = ACTIONS(7677), + [anon_sym_alignas] = ACTIONS(7677), + [anon_sym__Alignas] = ACTIONS(7677), + [anon_sym_QMARK] = ACTIONS(7677), + [anon_sym_STAR_EQ] = ACTIONS(7677), + [anon_sym_SLASH_EQ] = ACTIONS(7677), + [anon_sym_PERCENT_EQ] = ACTIONS(7677), + [anon_sym_PLUS_EQ] = ACTIONS(7677), + [anon_sym_DASH_EQ] = ACTIONS(7677), + [anon_sym_LT_LT_EQ] = ACTIONS(7677), + [anon_sym_GT_GT_EQ] = ACTIONS(7675), + [anon_sym_AMP_EQ] = ACTIONS(7677), + [anon_sym_CARET_EQ] = ACTIONS(7677), + [anon_sym_PIPE_EQ] = ACTIONS(7677), + [anon_sym_and_eq] = ACTIONS(7677), + [anon_sym_or_eq] = ACTIONS(7677), + [anon_sym_xor_eq] = ACTIONS(7677), + [anon_sym_LT_EQ_GT] = ACTIONS(7677), + [anon_sym_or] = ACTIONS(7675), + [anon_sym_and] = ACTIONS(7675), + [anon_sym_bitor] = ACTIONS(7677), + [anon_sym_xor] = ACTIONS(7675), + [anon_sym_bitand] = ACTIONS(7677), + [anon_sym_not_eq] = ACTIONS(7677), + [anon_sym_DASH_DASH] = ACTIONS(7677), + [anon_sym_PLUS_PLUS] = ACTIONS(7677), + [anon_sym_DOT] = ACTIONS(7675), + [anon_sym_DOT_STAR] = ACTIONS(7677), + [anon_sym_DASH_GT] = ACTIONS(7677), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7677), + [anon_sym_override] = ACTIONS(7677), + [anon_sym_GT2] = ACTIONS(7677), + [anon_sym_requires] = ACTIONS(7677), }, - [STATE(2609)] = { - [sym_identifier] = ACTIONS(3608), - [aux_sym_preproc_def_token1] = ACTIONS(3608), - [aux_sym_preproc_if_token1] = ACTIONS(3608), - [aux_sym_preproc_if_token2] = ACTIONS(3608), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3608), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3608), - [aux_sym_preproc_else_token1] = ACTIONS(3608), - [aux_sym_preproc_elif_token1] = ACTIONS(3608), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3608), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3608), - [sym_preproc_directive] = ACTIONS(3608), - [anon_sym_LPAREN2] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3610), - [anon_sym_STAR] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3608), - [anon_sym_SEMI] = ACTIONS(3610), - [anon_sym___extension__] = ACTIONS(3608), - [anon_sym_typedef] = ACTIONS(3608), - [anon_sym_virtual] = ACTIONS(3608), - [anon_sym_extern] = ACTIONS(3608), - [anon_sym___attribute__] = ACTIONS(3608), - [anon_sym___attribute] = ACTIONS(3608), - [anon_sym_using] = ACTIONS(3608), - [anon_sym_COLON_COLON] = ACTIONS(3610), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3610), - [anon_sym___declspec] = ACTIONS(3608), - [anon_sym___based] = ACTIONS(3608), - [anon_sym_signed] = ACTIONS(3608), - [anon_sym_unsigned] = ACTIONS(3608), - [anon_sym_long] = ACTIONS(3608), - [anon_sym_short] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_static] = ACTIONS(3608), - [anon_sym_register] = ACTIONS(3608), - [anon_sym_inline] = ACTIONS(3608), - [anon_sym___inline] = ACTIONS(3608), - [anon_sym___inline__] = ACTIONS(3608), - [anon_sym___forceinline] = ACTIONS(3608), - [anon_sym_thread_local] = ACTIONS(3608), - [anon_sym___thread] = ACTIONS(3608), - [anon_sym_const] = ACTIONS(3608), - [anon_sym_constexpr] = ACTIONS(3608), - [anon_sym_volatile] = ACTIONS(3608), - [anon_sym_restrict] = ACTIONS(3608), - [anon_sym___restrict__] = ACTIONS(3608), - [anon_sym__Atomic] = ACTIONS(3608), - [anon_sym__Noreturn] = ACTIONS(3608), - [anon_sym_noreturn] = ACTIONS(3608), - [anon_sym__Nonnull] = ACTIONS(3608), - [anon_sym_mutable] = ACTIONS(3608), - [anon_sym_constinit] = ACTIONS(3608), - [anon_sym_consteval] = ACTIONS(3608), - [anon_sym_alignas] = ACTIONS(3608), - [anon_sym__Alignas] = ACTIONS(3608), - [sym_primitive_type] = ACTIONS(3608), - [anon_sym_enum] = ACTIONS(3608), - [anon_sym_class] = ACTIONS(3608), - [anon_sym_struct] = ACTIONS(3608), - [anon_sym_union] = ACTIONS(3608), - [anon_sym_typename] = ACTIONS(3608), + [STATE(2475)] = { + [sym_attribute_specifier] = STATE(3202), + [sym_field_declaration_list] = STATE(2732), + [sym_virtual_specifier] = STATE(9437), + [sym_base_class_clause] = STATE(10280), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), + [anon_sym_COMMA] = ACTIONS(7237), + [anon_sym_LPAREN2] = ACTIONS(7237), + [anon_sym_DASH] = ACTIONS(7235), + [anon_sym_PLUS] = ACTIONS(7235), + [anon_sym_STAR] = ACTIONS(7235), + [anon_sym_SLASH] = ACTIONS(7235), + [anon_sym_PERCENT] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_AMP_AMP] = ACTIONS(7237), + [anon_sym_PIPE] = ACTIONS(7235), + [anon_sym_CARET] = ACTIONS(7235), + [anon_sym_AMP] = ACTIONS(7235), + [anon_sym_EQ_EQ] = ACTIONS(7237), + [anon_sym_BANG_EQ] = ACTIONS(7237), + [anon_sym_GT] = ACTIONS(7235), + [anon_sym_GT_EQ] = ACTIONS(7237), + [anon_sym_LT_EQ] = ACTIONS(7235), + [anon_sym_LT] = ACTIONS(7235), + [anon_sym_LT_LT] = ACTIONS(7235), + [anon_sym_GT_GT] = ACTIONS(7235), + [anon_sym___extension__] = ACTIONS(7237), + [anon_sym___attribute__] = ACTIONS(8293), + [anon_sym___attribute] = ACTIONS(8295), + [anon_sym_COLON] = ACTIONS(8156), + [anon_sym_LBRACE] = ACTIONS(8297), + [anon_sym_LBRACK] = ACTIONS(7237), + [anon_sym_RBRACK] = ACTIONS(7237), + [anon_sym_EQ] = ACTIONS(7235), + [anon_sym_const] = ACTIONS(7235), + [anon_sym_constexpr] = ACTIONS(7237), + [anon_sym_volatile] = ACTIONS(7237), + [anon_sym_restrict] = ACTIONS(7237), + [anon_sym___restrict__] = ACTIONS(7237), + [anon_sym__Atomic] = ACTIONS(7237), + [anon_sym__Noreturn] = ACTIONS(7237), + [anon_sym_noreturn] = ACTIONS(7237), + [anon_sym__Nonnull] = ACTIONS(7237), + [anon_sym_mutable] = ACTIONS(7237), + [anon_sym_constinit] = ACTIONS(7237), + [anon_sym_consteval] = ACTIONS(7237), + [anon_sym_alignas] = ACTIONS(7237), + [anon_sym__Alignas] = ACTIONS(7237), + [anon_sym_QMARK] = ACTIONS(7237), + [anon_sym_STAR_EQ] = ACTIONS(7237), + [anon_sym_SLASH_EQ] = ACTIONS(7237), + [anon_sym_PERCENT_EQ] = ACTIONS(7237), + [anon_sym_PLUS_EQ] = ACTIONS(7237), + [anon_sym_DASH_EQ] = ACTIONS(7237), + [anon_sym_LT_LT_EQ] = ACTIONS(7237), + [anon_sym_GT_GT_EQ] = ACTIONS(7237), + [anon_sym_AMP_EQ] = ACTIONS(7237), + [anon_sym_CARET_EQ] = ACTIONS(7237), + [anon_sym_PIPE_EQ] = ACTIONS(7237), + [anon_sym_and_eq] = ACTIONS(7237), + [anon_sym_or_eq] = ACTIONS(7237), + [anon_sym_xor_eq] = ACTIONS(7237), + [anon_sym_LT_EQ_GT] = ACTIONS(7237), + [anon_sym_or] = ACTIONS(7235), + [anon_sym_and] = ACTIONS(7235), + [anon_sym_bitor] = ACTIONS(7237), + [anon_sym_xor] = ACTIONS(7235), + [anon_sym_bitand] = ACTIONS(7237), + [anon_sym_not_eq] = ACTIONS(7237), + [anon_sym_DASH_DASH] = ACTIONS(7237), + [anon_sym_PLUS_PLUS] = ACTIONS(7237), + [anon_sym_DOT] = ACTIONS(7235), + [anon_sym_DOT_STAR] = ACTIONS(7237), + [anon_sym_DASH_GT] = ACTIONS(7237), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3608), - [anon_sym_decltype] = ACTIONS(3608), - [anon_sym_explicit] = ACTIONS(3608), - [anon_sym_private] = ACTIONS(3608), - [anon_sym_template] = ACTIONS(3608), - [anon_sym_operator] = ACTIONS(3608), - [anon_sym_friend] = ACTIONS(3608), - [anon_sym_public] = ACTIONS(3608), - [anon_sym_protected] = ACTIONS(3608), - [anon_sym_static_assert] = ACTIONS(3608), - [anon_sym_catch] = ACTIONS(3608), - [anon_sym_LBRACK_COLON] = ACTIONS(3610), - }, - [STATE(2610)] = { - [sym_attribute_specifier] = STATE(4247), - [sym_attribute_declaration] = STATE(4729), - [sym_gnu_asm_expression] = STATE(8972), - [sym_virtual_specifier] = STATE(4992), - [sym__function_exception_specification] = STATE(3263), - [sym__function_attributes_end] = STATE(4511), - [sym__function_postfix] = STATE(5590), - [sym_trailing_return_type] = STATE(4551), - [sym_noexcept] = STATE(3263), - [sym_throw_specifier] = STATE(3263), - [sym_requires_clause] = STATE(5590), - [aux_sym_type_definition_repeat1] = STATE(4247), - [aux_sym_attributed_declarator_repeat1] = STATE(4729), - [aux_sym__function_postfix_repeat1] = STATE(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_RPAREN] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym___attribute__] = ACTIONS(6410), - [anon_sym___attribute] = ACTIONS(6412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7627), - [anon_sym_and] = ACTIONS(7627), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7627), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(8210), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6453), - [anon_sym_override] = ACTIONS(6453), - [anon_sym_noexcept] = ACTIONS(6426), - [anon_sym_throw] = ACTIONS(6428), - [anon_sym_requires] = ACTIONS(6455), - [anon_sym_DASH_GT_STAR] = ACTIONS(7627), - }, - [STATE(2611)] = { - [sym_identifier] = ACTIONS(6716), - [anon_sym_LPAREN2] = ACTIONS(6718), - [anon_sym_BANG] = ACTIONS(6718), - [anon_sym_TILDE] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6716), - [anon_sym_PLUS] = ACTIONS(6716), - [anon_sym_STAR] = ACTIONS(6718), - [anon_sym_AMP] = ACTIONS(6718), - [anon_sym___extension__] = ACTIONS(6716), - [anon_sym_COLON_COLON] = ACTIONS(6718), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_static] = ACTIONS(6716), - [anon_sym_RBRACK] = ACTIONS(6718), - [anon_sym_const] = ACTIONS(6716), - [anon_sym_constexpr] = ACTIONS(6716), - [anon_sym_volatile] = ACTIONS(6716), - [anon_sym_restrict] = ACTIONS(6716), - [anon_sym___restrict__] = ACTIONS(6716), - [anon_sym__Atomic] = ACTIONS(6716), - [anon_sym__Noreturn] = ACTIONS(6716), - [anon_sym_noreturn] = ACTIONS(6716), - [anon_sym__Nonnull] = ACTIONS(6716), - [anon_sym_mutable] = ACTIONS(6716), - [anon_sym_constinit] = ACTIONS(6716), - [anon_sym_consteval] = ACTIONS(6716), - [anon_sym_alignas] = ACTIONS(6716), - [anon_sym__Alignas] = ACTIONS(6716), - [sym_primitive_type] = ACTIONS(6716), - [anon_sym_not] = ACTIONS(6716), - [anon_sym_compl] = ACTIONS(6716), - [anon_sym_DASH_DASH] = ACTIONS(6718), - [anon_sym_PLUS_PLUS] = ACTIONS(6718), - [anon_sym_sizeof] = ACTIONS(6716), - [anon_sym___alignof__] = ACTIONS(6716), - [anon_sym___alignof] = ACTIONS(6716), - [anon_sym__alignof] = ACTIONS(6716), - [anon_sym_alignof] = ACTIONS(6716), - [anon_sym__Alignof] = ACTIONS(6716), - [anon_sym_offsetof] = ACTIONS(6716), - [anon_sym__Generic] = ACTIONS(6716), - [anon_sym_typename] = ACTIONS(6716), - [anon_sym_asm] = ACTIONS(6716), - [anon_sym___asm__] = ACTIONS(6716), - [anon_sym___asm] = ACTIONS(6716), - [sym_number_literal] = ACTIONS(6718), - [anon_sym_L_SQUOTE] = ACTIONS(6718), - [anon_sym_u_SQUOTE] = ACTIONS(6718), - [anon_sym_U_SQUOTE] = ACTIONS(6718), - [anon_sym_u8_SQUOTE] = ACTIONS(6718), - [anon_sym_SQUOTE] = ACTIONS(6718), - [anon_sym_L_DQUOTE] = ACTIONS(6718), - [anon_sym_u_DQUOTE] = ACTIONS(6718), - [anon_sym_U_DQUOTE] = ACTIONS(6718), - [anon_sym_u8_DQUOTE] = ACTIONS(6718), - [anon_sym_DQUOTE] = ACTIONS(6718), - [sym_true] = ACTIONS(6716), - [sym_false] = ACTIONS(6716), - [anon_sym_NULL] = ACTIONS(6716), - [anon_sym_nullptr] = ACTIONS(6716), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(6716), - [anon_sym_template] = ACTIONS(6716), - [anon_sym_delete] = ACTIONS(6716), - [anon_sym_R_DQUOTE] = ACTIONS(6718), - [anon_sym_LR_DQUOTE] = ACTIONS(6718), - [anon_sym_uR_DQUOTE] = ACTIONS(6718), - [anon_sym_UR_DQUOTE] = ACTIONS(6718), - [anon_sym_u8R_DQUOTE] = ACTIONS(6718), - [anon_sym_co_await] = ACTIONS(6716), - [anon_sym_new] = ACTIONS(6716), - [anon_sym_requires] = ACTIONS(6716), - [anon_sym_CARET_CARET] = ACTIONS(6718), - [anon_sym_LBRACK_COLON] = ACTIONS(6718), - [sym_this] = ACTIONS(6716), - }, - [STATE(2612)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6764), - [anon_sym_COMMA] = ACTIONS(6764), - [anon_sym_LPAREN2] = ACTIONS(6764), - [anon_sym_DASH] = ACTIONS(6762), - [anon_sym_PLUS] = ACTIONS(6762), - [anon_sym_STAR] = ACTIONS(6762), - [anon_sym_SLASH] = ACTIONS(6762), - [anon_sym_PERCENT] = ACTIONS(6762), - [anon_sym_PIPE_PIPE] = ACTIONS(6764), - [anon_sym_AMP_AMP] = ACTIONS(6764), - [anon_sym_PIPE] = ACTIONS(6762), - [anon_sym_CARET] = ACTIONS(6762), - [anon_sym_AMP] = ACTIONS(6762), - [anon_sym_EQ_EQ] = ACTIONS(6764), - [anon_sym_BANG_EQ] = ACTIONS(6764), - [anon_sym_GT] = ACTIONS(6762), - [anon_sym_GT_EQ] = ACTIONS(6764), - [anon_sym_LT_EQ] = ACTIONS(6762), - [anon_sym_LT] = ACTIONS(6762), - [anon_sym_LT_LT] = ACTIONS(6762), - [anon_sym_GT_GT] = ACTIONS(6762), - [anon_sym___extension__] = ACTIONS(6764), - [anon_sym___attribute__] = ACTIONS(6764), - [anon_sym___attribute] = ACTIONS(6762), - [anon_sym_COLON] = ACTIONS(6762), - [anon_sym_COLON_COLON] = ACTIONS(6764), - [anon_sym_LBRACE] = ACTIONS(6764), - [anon_sym_LBRACK] = ACTIONS(6764), - [anon_sym_RBRACK] = ACTIONS(6764), - [anon_sym_EQ] = ACTIONS(6762), - [anon_sym_const] = ACTIONS(6762), - [anon_sym_constexpr] = ACTIONS(6764), - [anon_sym_volatile] = ACTIONS(6764), - [anon_sym_restrict] = ACTIONS(6764), - [anon_sym___restrict__] = ACTIONS(6764), - [anon_sym__Atomic] = ACTIONS(6764), - [anon_sym__Noreturn] = ACTIONS(6764), - [anon_sym_noreturn] = ACTIONS(6764), - [anon_sym__Nonnull] = ACTIONS(6764), - [anon_sym_mutable] = ACTIONS(6764), - [anon_sym_constinit] = ACTIONS(6764), - [anon_sym_consteval] = ACTIONS(6764), - [anon_sym_alignas] = ACTIONS(6764), - [anon_sym__Alignas] = ACTIONS(6764), - [anon_sym_QMARK] = ACTIONS(6764), - [anon_sym_STAR_EQ] = ACTIONS(6764), - [anon_sym_SLASH_EQ] = ACTIONS(6764), - [anon_sym_PERCENT_EQ] = ACTIONS(6764), - [anon_sym_PLUS_EQ] = ACTIONS(6764), - [anon_sym_DASH_EQ] = ACTIONS(6764), - [anon_sym_LT_LT_EQ] = ACTIONS(6764), - [anon_sym_GT_GT_EQ] = ACTIONS(6764), - [anon_sym_AMP_EQ] = ACTIONS(6764), - [anon_sym_CARET_EQ] = ACTIONS(6764), - [anon_sym_PIPE_EQ] = ACTIONS(6764), - [anon_sym_and_eq] = ACTIONS(6764), - [anon_sym_or_eq] = ACTIONS(6764), - [anon_sym_xor_eq] = ACTIONS(6764), - [anon_sym_LT_EQ_GT] = ACTIONS(6764), - [anon_sym_or] = ACTIONS(6762), - [anon_sym_and] = ACTIONS(6762), - [anon_sym_bitor] = ACTIONS(6764), - [anon_sym_xor] = ACTIONS(6762), - [anon_sym_bitand] = ACTIONS(6764), - [anon_sym_not_eq] = ACTIONS(6764), - [anon_sym_DASH_DASH] = ACTIONS(6764), - [anon_sym_PLUS_PLUS] = ACTIONS(6764), - [anon_sym_DOT] = ACTIONS(6762), - [anon_sym_DOT_STAR] = ACTIONS(6764), - [anon_sym_DASH_GT] = ACTIONS(6764), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6764), - [anon_sym_override] = ACTIONS(6764), - [anon_sym_requires] = ACTIONS(6764), + [anon_sym_final] = ACTIONS(8160), + [anon_sym_override] = ACTIONS(8160), + [anon_sym_requires] = ACTIONS(7237), }, - [STATE(2613)] = { - [sym_identifier] = ACTIONS(6790), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6792), - [anon_sym_COMMA] = ACTIONS(6792), - [anon_sym_RPAREN] = ACTIONS(6792), - [aux_sym_preproc_if_token2] = ACTIONS(6792), - [aux_sym_preproc_else_token1] = ACTIONS(6792), - [aux_sym_preproc_elif_token1] = ACTIONS(6790), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6792), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6792), - [anon_sym_LPAREN2] = ACTIONS(6792), - [anon_sym_DASH] = ACTIONS(6790), - [anon_sym_PLUS] = ACTIONS(6790), - [anon_sym_STAR] = ACTIONS(6792), - [anon_sym_SLASH] = ACTIONS(6790), - [anon_sym_PERCENT] = ACTIONS(6792), - [anon_sym_PIPE_PIPE] = ACTIONS(6792), - [anon_sym_AMP_AMP] = ACTIONS(6792), - [anon_sym_PIPE] = ACTIONS(6790), - [anon_sym_CARET] = ACTIONS(6792), - [anon_sym_AMP] = ACTIONS(6790), - [anon_sym_EQ_EQ] = ACTIONS(6792), - [anon_sym_BANG_EQ] = ACTIONS(6792), - [anon_sym_GT] = ACTIONS(6790), - [anon_sym_GT_EQ] = ACTIONS(6792), - [anon_sym_LT_EQ] = ACTIONS(6790), - [anon_sym_LT] = ACTIONS(6790), - [anon_sym_LT_LT] = ACTIONS(6792), - [anon_sym_GT_GT] = ACTIONS(6792), - [anon_sym_SEMI] = ACTIONS(6792), - [anon_sym___extension__] = ACTIONS(6790), - [anon_sym___attribute__] = ACTIONS(6790), - [anon_sym___attribute] = ACTIONS(6790), - [anon_sym_COLON] = ACTIONS(6790), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6792), - [anon_sym_RBRACE] = ACTIONS(6792), - [anon_sym_LBRACK] = ACTIONS(6790), - [anon_sym_const] = ACTIONS(6790), - [anon_sym_constexpr] = ACTIONS(6790), - [anon_sym_volatile] = ACTIONS(6790), - [anon_sym_restrict] = ACTIONS(6790), - [anon_sym___restrict__] = ACTIONS(6790), - [anon_sym__Atomic] = ACTIONS(6790), - [anon_sym__Noreturn] = ACTIONS(6790), - [anon_sym_noreturn] = ACTIONS(6790), - [anon_sym__Nonnull] = ACTIONS(6790), - [anon_sym_mutable] = ACTIONS(6790), - [anon_sym_constinit] = ACTIONS(6790), - [anon_sym_consteval] = ACTIONS(6790), - [anon_sym_alignas] = ACTIONS(6790), - [anon_sym__Alignas] = ACTIONS(6790), - [anon_sym_QMARK] = ACTIONS(6792), - [anon_sym_LT_EQ_GT] = ACTIONS(6792), - [anon_sym_or] = ACTIONS(6790), - [anon_sym_and] = ACTIONS(6790), - [anon_sym_bitor] = ACTIONS(6790), - [anon_sym_xor] = ACTIONS(6790), - [anon_sym_bitand] = ACTIONS(6790), - [anon_sym_not_eq] = ACTIONS(6790), - [anon_sym_DASH_DASH] = ACTIONS(6792), - [anon_sym_PLUS_PLUS] = ACTIONS(6792), - [anon_sym_asm] = ACTIONS(6790), - [anon_sym___asm__] = ACTIONS(6790), - [anon_sym___asm] = ACTIONS(6790), - [anon_sym_DOT] = ACTIONS(6790), - [anon_sym_DOT_STAR] = ACTIONS(6792), - [anon_sym_DASH_GT] = ACTIONS(6792), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6790), - [anon_sym_override] = ACTIONS(6790), - [anon_sym_noexcept] = ACTIONS(6790), - [anon_sym_throw] = ACTIONS(6790), - [anon_sym_requires] = ACTIONS(6790), - [anon_sym_COLON_RBRACK] = ACTIONS(6792), + [STATE(2476)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7683), + [anon_sym_COMMA] = ACTIONS(7683), + [anon_sym_LPAREN2] = ACTIONS(7683), + [anon_sym_DASH] = ACTIONS(7681), + [anon_sym_PLUS] = ACTIONS(7681), + [anon_sym_STAR] = ACTIONS(7681), + [anon_sym_SLASH] = ACTIONS(7681), + [anon_sym_PERCENT] = ACTIONS(7681), + [anon_sym_PIPE_PIPE] = ACTIONS(7683), + [anon_sym_AMP_AMP] = ACTIONS(7683), + [anon_sym_PIPE] = ACTIONS(7681), + [anon_sym_CARET] = ACTIONS(7681), + [anon_sym_AMP] = ACTIONS(7681), + [anon_sym_EQ_EQ] = ACTIONS(7683), + [anon_sym_BANG_EQ] = ACTIONS(7683), + [anon_sym_GT] = ACTIONS(7681), + [anon_sym_GT_EQ] = ACTIONS(7681), + [anon_sym_LT_EQ] = ACTIONS(7681), + [anon_sym_LT] = ACTIONS(7681), + [anon_sym_LT_LT] = ACTIONS(7681), + [anon_sym_GT_GT] = ACTIONS(7681), + [anon_sym___extension__] = ACTIONS(7683), + [anon_sym___attribute__] = ACTIONS(7683), + [anon_sym___attribute] = ACTIONS(7681), + [anon_sym_LBRACE] = ACTIONS(7683), + [anon_sym_signed] = ACTIONS(8226), + [anon_sym_unsigned] = ACTIONS(8226), + [anon_sym_long] = ACTIONS(8226), + [anon_sym_short] = ACTIONS(8226), + [anon_sym_LBRACK] = ACTIONS(7683), + [anon_sym_EQ] = ACTIONS(7681), + [anon_sym_const] = ACTIONS(7681), + [anon_sym_constexpr] = ACTIONS(7683), + [anon_sym_volatile] = ACTIONS(7683), + [anon_sym_restrict] = ACTIONS(7683), + [anon_sym___restrict__] = ACTIONS(7683), + [anon_sym__Atomic] = ACTIONS(7683), + [anon_sym__Noreturn] = ACTIONS(7683), + [anon_sym_noreturn] = ACTIONS(7683), + [anon_sym__Nonnull] = ACTIONS(7683), + [anon_sym_mutable] = ACTIONS(7683), + [anon_sym_constinit] = ACTIONS(7683), + [anon_sym_consteval] = ACTIONS(7683), + [anon_sym_alignas] = ACTIONS(7683), + [anon_sym__Alignas] = ACTIONS(7683), + [anon_sym_QMARK] = ACTIONS(7683), + [anon_sym_STAR_EQ] = ACTIONS(7683), + [anon_sym_SLASH_EQ] = ACTIONS(7683), + [anon_sym_PERCENT_EQ] = ACTIONS(7683), + [anon_sym_PLUS_EQ] = ACTIONS(7683), + [anon_sym_DASH_EQ] = ACTIONS(7683), + [anon_sym_LT_LT_EQ] = ACTIONS(7683), + [anon_sym_GT_GT_EQ] = ACTIONS(7681), + [anon_sym_AMP_EQ] = ACTIONS(7683), + [anon_sym_CARET_EQ] = ACTIONS(7683), + [anon_sym_PIPE_EQ] = ACTIONS(7683), + [anon_sym_and_eq] = ACTIONS(7683), + [anon_sym_or_eq] = ACTIONS(7683), + [anon_sym_xor_eq] = ACTIONS(7683), + [anon_sym_LT_EQ_GT] = ACTIONS(7683), + [anon_sym_or] = ACTIONS(7681), + [anon_sym_and] = ACTIONS(7681), + [anon_sym_bitor] = ACTIONS(7683), + [anon_sym_xor] = ACTIONS(7681), + [anon_sym_bitand] = ACTIONS(7683), + [anon_sym_not_eq] = ACTIONS(7683), + [anon_sym_DASH_DASH] = ACTIONS(7683), + [anon_sym_PLUS_PLUS] = ACTIONS(7683), + [anon_sym_DOT] = ACTIONS(7681), + [anon_sym_DOT_STAR] = ACTIONS(7683), + [anon_sym_DASH_GT] = ACTIONS(7683), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7683), + [anon_sym_override] = ACTIONS(7683), + [anon_sym_GT2] = ACTIONS(7683), + [anon_sym_requires] = ACTIONS(7683), }, - [STATE(2614)] = { - [sym_argument_list] = STATE(5660), - [sym_initializer_list] = STATE(5664), - [aux_sym_sized_type_specifier_repeat1] = STATE(2402), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(8274), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6798), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_signed] = ACTIONS(7912), - [anon_sym_unsigned] = ACTIONS(7912), - [anon_sym_long] = ACTIONS(7912), - [anon_sym_short] = ACTIONS(7912), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6798), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(6800), + [STATE(2477)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6630), + [anon_sym_COMMA] = ACTIONS(6630), + [anon_sym_RPAREN] = ACTIONS(6630), + [anon_sym_LPAREN2] = ACTIONS(6630), + [anon_sym_DASH] = ACTIONS(6628), + [anon_sym_PLUS] = ACTIONS(6628), + [anon_sym_STAR] = ACTIONS(6628), + [anon_sym_SLASH] = ACTIONS(6628), + [anon_sym_PERCENT] = ACTIONS(6628), + [anon_sym_PIPE_PIPE] = ACTIONS(6630), + [anon_sym_AMP_AMP] = ACTIONS(6630), + [anon_sym_PIPE] = ACTIONS(6628), + [anon_sym_CARET] = ACTIONS(6628), + [anon_sym_AMP] = ACTIONS(6628), + [anon_sym_EQ_EQ] = ACTIONS(6630), + [anon_sym_BANG_EQ] = ACTIONS(6630), + [anon_sym_GT] = ACTIONS(6628), + [anon_sym_GT_EQ] = ACTIONS(6630), + [anon_sym_LT_EQ] = ACTIONS(6628), + [anon_sym_LT] = ACTIONS(6628), + [anon_sym_LT_LT] = ACTIONS(6628), + [anon_sym_GT_GT] = ACTIONS(6628), + [anon_sym___extension__] = ACTIONS(6630), + [anon_sym___attribute__] = ACTIONS(6630), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_COLON] = ACTIONS(6628), + [anon_sym_COLON_COLON] = ACTIONS(6630), + [anon_sym_LBRACE] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(6630), + [anon_sym_EQ] = ACTIONS(6628), + [anon_sym_const] = ACTIONS(6628), + [anon_sym_constexpr] = ACTIONS(6630), + [anon_sym_volatile] = ACTIONS(6630), + [anon_sym_restrict] = ACTIONS(6630), + [anon_sym___restrict__] = ACTIONS(6630), + [anon_sym__Atomic] = ACTIONS(6630), + [anon_sym__Noreturn] = ACTIONS(6630), + [anon_sym_noreturn] = ACTIONS(6630), + [anon_sym__Nonnull] = ACTIONS(6630), + [anon_sym_mutable] = ACTIONS(6630), + [anon_sym_constinit] = ACTIONS(6630), + [anon_sym_consteval] = ACTIONS(6630), + [anon_sym_alignas] = ACTIONS(6630), + [anon_sym__Alignas] = ACTIONS(6630), + [anon_sym_QMARK] = ACTIONS(6630), + [anon_sym_STAR_EQ] = ACTIONS(6630), + [anon_sym_SLASH_EQ] = ACTIONS(6630), + [anon_sym_PERCENT_EQ] = ACTIONS(6630), + [anon_sym_PLUS_EQ] = ACTIONS(6630), + [anon_sym_DASH_EQ] = ACTIONS(6630), + [anon_sym_LT_LT_EQ] = ACTIONS(6630), + [anon_sym_GT_GT_EQ] = ACTIONS(6630), + [anon_sym_AMP_EQ] = ACTIONS(6630), + [anon_sym_CARET_EQ] = ACTIONS(6630), + [anon_sym_PIPE_EQ] = ACTIONS(6630), + [anon_sym_and_eq] = ACTIONS(6630), + [anon_sym_or_eq] = ACTIONS(6630), + [anon_sym_xor_eq] = ACTIONS(6630), + [anon_sym_LT_EQ_GT] = ACTIONS(6630), + [anon_sym_or] = ACTIONS(6628), + [anon_sym_and] = ACTIONS(6628), + [anon_sym_bitor] = ACTIONS(6630), + [anon_sym_xor] = ACTIONS(6628), + [anon_sym_bitand] = ACTIONS(6630), + [anon_sym_not_eq] = ACTIONS(6630), + [anon_sym_DASH_DASH] = ACTIONS(6630), + [anon_sym_PLUS_PLUS] = ACTIONS(6630), + [anon_sym_DOT] = ACTIONS(6628), + [anon_sym_DOT_STAR] = ACTIONS(6630), + [anon_sym_DASH_GT] = ACTIONS(6628), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6630), + [anon_sym_decltype] = ACTIONS(6630), + [anon_sym_final] = ACTIONS(6630), + [anon_sym_override] = ACTIONS(6630), + [anon_sym_requires] = ACTIONS(6630), + [anon_sym_DASH_GT_STAR] = ACTIONS(6630), }, - [STATE(2615)] = { - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6390), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(5572), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), + [STATE(2478)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7557), + [anon_sym_COMMA] = ACTIONS(7557), + [anon_sym_LPAREN2] = ACTIONS(7557), + [anon_sym_DASH] = ACTIONS(7555), + [anon_sym_PLUS] = ACTIONS(7555), + [anon_sym_STAR] = ACTIONS(7555), + [anon_sym_SLASH] = ACTIONS(7555), + [anon_sym_PERCENT] = ACTIONS(7555), + [anon_sym_PIPE_PIPE] = ACTIONS(7557), + [anon_sym_AMP_AMP] = ACTIONS(7557), + [anon_sym_PIPE] = ACTIONS(7555), + [anon_sym_CARET] = ACTIONS(7555), + [anon_sym_AMP] = ACTIONS(7555), + [anon_sym_EQ_EQ] = ACTIONS(7557), + [anon_sym_BANG_EQ] = ACTIONS(7557), + [anon_sym_GT] = ACTIONS(7555), + [anon_sym_GT_EQ] = ACTIONS(7555), + [anon_sym_LT_EQ] = ACTIONS(7555), + [anon_sym_LT] = ACTIONS(7555), + [anon_sym_LT_LT] = ACTIONS(7555), + [anon_sym_GT_GT] = ACTIONS(7555), + [anon_sym___extension__] = ACTIONS(7557), + [anon_sym___attribute__] = ACTIONS(7557), + [anon_sym___attribute] = ACTIONS(7555), + [anon_sym_LBRACE] = ACTIONS(7557), + [anon_sym_signed] = ACTIONS(8299), + [anon_sym_unsigned] = ACTIONS(8299), + [anon_sym_long] = ACTIONS(8299), + [anon_sym_short] = ACTIONS(8299), + [anon_sym_LBRACK] = ACTIONS(7557), + [anon_sym_EQ] = ACTIONS(7555), + [anon_sym_const] = ACTIONS(7555), + [anon_sym_constexpr] = ACTIONS(7557), + [anon_sym_volatile] = ACTIONS(7557), + [anon_sym_restrict] = ACTIONS(7557), + [anon_sym___restrict__] = ACTIONS(7557), + [anon_sym__Atomic] = ACTIONS(7557), + [anon_sym__Noreturn] = ACTIONS(7557), + [anon_sym_noreturn] = ACTIONS(7557), + [anon_sym__Nonnull] = ACTIONS(7557), + [anon_sym_mutable] = ACTIONS(7557), + [anon_sym_constinit] = ACTIONS(7557), + [anon_sym_consteval] = ACTIONS(7557), + [anon_sym_alignas] = ACTIONS(7557), + [anon_sym__Alignas] = ACTIONS(7557), + [anon_sym_QMARK] = ACTIONS(7557), + [anon_sym_STAR_EQ] = ACTIONS(7557), + [anon_sym_SLASH_EQ] = ACTIONS(7557), + [anon_sym_PERCENT_EQ] = ACTIONS(7557), + [anon_sym_PLUS_EQ] = ACTIONS(7557), + [anon_sym_DASH_EQ] = ACTIONS(7557), + [anon_sym_LT_LT_EQ] = ACTIONS(7557), + [anon_sym_GT_GT_EQ] = ACTIONS(7555), + [anon_sym_AMP_EQ] = ACTIONS(7557), + [anon_sym_CARET_EQ] = ACTIONS(7557), + [anon_sym_PIPE_EQ] = ACTIONS(7557), + [anon_sym_and_eq] = ACTIONS(7557), + [anon_sym_or_eq] = ACTIONS(7557), + [anon_sym_xor_eq] = ACTIONS(7557), + [anon_sym_LT_EQ_GT] = ACTIONS(7557), + [anon_sym_or] = ACTIONS(7555), + [anon_sym_and] = ACTIONS(7555), + [anon_sym_bitor] = ACTIONS(7557), + [anon_sym_xor] = ACTIONS(7555), + [anon_sym_bitand] = ACTIONS(7557), + [anon_sym_not_eq] = ACTIONS(7557), + [anon_sym_DASH_DASH] = ACTIONS(7557), + [anon_sym_PLUS_PLUS] = ACTIONS(7557), + [anon_sym_DOT] = ACTIONS(7555), + [anon_sym_DOT_STAR] = ACTIONS(7557), + [anon_sym_DASH_GT] = ACTIONS(7557), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(2616)] = { - [sym_identifier] = ACTIONS(6716), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), - [anon_sym_COMMA] = ACTIONS(6718), - [anon_sym_RPAREN] = ACTIONS(6718), - [aux_sym_preproc_if_token2] = ACTIONS(6718), - [aux_sym_preproc_else_token1] = ACTIONS(6718), - [aux_sym_preproc_elif_token1] = ACTIONS(6716), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6718), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6718), - [anon_sym_LPAREN2] = ACTIONS(6718), - [anon_sym_DASH] = ACTIONS(6716), - [anon_sym_PLUS] = ACTIONS(6716), - [anon_sym_STAR] = ACTIONS(6718), - [anon_sym_SLASH] = ACTIONS(6716), - [anon_sym_PERCENT] = ACTIONS(6718), - [anon_sym_PIPE_PIPE] = ACTIONS(6718), - [anon_sym_AMP_AMP] = ACTIONS(6718), - [anon_sym_PIPE] = ACTIONS(6716), - [anon_sym_CARET] = ACTIONS(6718), - [anon_sym_AMP] = ACTIONS(6716), - [anon_sym_EQ_EQ] = ACTIONS(6718), - [anon_sym_BANG_EQ] = ACTIONS(6718), - [anon_sym_GT] = ACTIONS(6716), - [anon_sym_GT_EQ] = ACTIONS(6718), - [anon_sym_LT_EQ] = ACTIONS(6716), - [anon_sym_LT] = ACTIONS(6716), - [anon_sym_LT_LT] = ACTIONS(6718), - [anon_sym_GT_GT] = ACTIONS(6718), - [anon_sym_SEMI] = ACTIONS(6718), - [anon_sym___extension__] = ACTIONS(6716), - [anon_sym___attribute__] = ACTIONS(6716), - [anon_sym___attribute] = ACTIONS(6716), - [anon_sym_COLON] = ACTIONS(6716), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6718), - [anon_sym_LBRACE] = ACTIONS(6718), - [anon_sym_RBRACE] = ACTIONS(6718), - [anon_sym_signed] = ACTIONS(6716), - [anon_sym_unsigned] = ACTIONS(6716), - [anon_sym_long] = ACTIONS(6716), - [anon_sym_short] = ACTIONS(6716), - [anon_sym_LBRACK] = ACTIONS(6718), - [anon_sym_const] = ACTIONS(6716), - [anon_sym_constexpr] = ACTIONS(6716), - [anon_sym_volatile] = ACTIONS(6716), - [anon_sym_restrict] = ACTIONS(6716), - [anon_sym___restrict__] = ACTIONS(6716), - [anon_sym__Atomic] = ACTIONS(6716), - [anon_sym__Noreturn] = ACTIONS(6716), - [anon_sym_noreturn] = ACTIONS(6716), - [anon_sym__Nonnull] = ACTIONS(6716), - [anon_sym_mutable] = ACTIONS(6716), - [anon_sym_constinit] = ACTIONS(6716), - [anon_sym_consteval] = ACTIONS(6716), - [anon_sym_alignas] = ACTIONS(6716), - [anon_sym__Alignas] = ACTIONS(6716), - [sym_primitive_type] = ACTIONS(6716), - [anon_sym_QMARK] = ACTIONS(6718), - [anon_sym_LT_EQ_GT] = ACTIONS(6718), - [anon_sym_or] = ACTIONS(6716), - [anon_sym_and] = ACTIONS(6716), - [anon_sym_bitor] = ACTIONS(6716), - [anon_sym_xor] = ACTIONS(6716), - [anon_sym_bitand] = ACTIONS(6716), - [anon_sym_not_eq] = ACTIONS(6716), - [anon_sym_DASH_DASH] = ACTIONS(6718), - [anon_sym_PLUS_PLUS] = ACTIONS(6718), - [anon_sym_DOT] = ACTIONS(6716), - [anon_sym_DOT_STAR] = ACTIONS(6718), - [anon_sym_DASH_GT] = ACTIONS(6718), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6716), - [anon_sym_override] = ACTIONS(6716), - [anon_sym_requires] = ACTIONS(6716), - [anon_sym_COLON_RBRACK] = ACTIONS(6718), - }, - [STATE(2617)] = { - [sym_attribute_specifier] = STATE(2979), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7093), - [anon_sym_COMMA] = ACTIONS(7093), - [anon_sym_RPAREN] = ACTIONS(7093), - [anon_sym_LPAREN2] = ACTIONS(7093), - [anon_sym_DASH] = ACTIONS(7091), - [anon_sym_PLUS] = ACTIONS(7091), - [anon_sym_STAR] = ACTIONS(7091), - [anon_sym_SLASH] = ACTIONS(7091), - [anon_sym_PERCENT] = ACTIONS(7091), - [anon_sym_PIPE_PIPE] = ACTIONS(7093), - [anon_sym_AMP_AMP] = ACTIONS(7093), - [anon_sym_PIPE] = ACTIONS(7091), - [anon_sym_CARET] = ACTIONS(7091), - [anon_sym_AMP] = ACTIONS(7091), - [anon_sym_EQ_EQ] = ACTIONS(7093), - [anon_sym_BANG_EQ] = ACTIONS(7093), - [anon_sym_GT] = ACTIONS(7091), - [anon_sym_GT_EQ] = ACTIONS(7093), - [anon_sym_LT_EQ] = ACTIONS(7091), - [anon_sym_LT] = ACTIONS(7091), - [anon_sym_LT_LT] = ACTIONS(7091), - [anon_sym_GT_GT] = ACTIONS(7091), - [anon_sym___extension__] = ACTIONS(7093), - [anon_sym___attribute__] = ACTIONS(7813), - [anon_sym___attribute] = ACTIONS(7815), - [anon_sym_LBRACE] = ACTIONS(7093), - [anon_sym_LBRACK] = ACTIONS(7093), - [anon_sym_EQ] = ACTIONS(7091), - [anon_sym_const] = ACTIONS(7091), - [anon_sym_constexpr] = ACTIONS(7093), - [anon_sym_volatile] = ACTIONS(7093), - [anon_sym_restrict] = ACTIONS(7093), - [anon_sym___restrict__] = ACTIONS(7093), - [anon_sym__Atomic] = ACTIONS(7093), - [anon_sym__Noreturn] = ACTIONS(7093), - [anon_sym_noreturn] = ACTIONS(7093), - [anon_sym__Nonnull] = ACTIONS(7093), - [anon_sym_mutable] = ACTIONS(7093), - [anon_sym_constinit] = ACTIONS(7093), - [anon_sym_consteval] = ACTIONS(7093), - [anon_sym_alignas] = ACTIONS(7093), - [anon_sym__Alignas] = ACTIONS(7093), - [anon_sym_QMARK] = ACTIONS(7093), - [anon_sym_STAR_EQ] = ACTIONS(7093), - [anon_sym_SLASH_EQ] = ACTIONS(7093), - [anon_sym_PERCENT_EQ] = ACTIONS(7093), - [anon_sym_PLUS_EQ] = ACTIONS(7093), - [anon_sym_DASH_EQ] = ACTIONS(7093), - [anon_sym_LT_LT_EQ] = ACTIONS(7093), - [anon_sym_GT_GT_EQ] = ACTIONS(7093), - [anon_sym_AMP_EQ] = ACTIONS(7093), - [anon_sym_CARET_EQ] = ACTIONS(7093), - [anon_sym_PIPE_EQ] = ACTIONS(7093), - [anon_sym_and_eq] = ACTIONS(7093), - [anon_sym_or_eq] = ACTIONS(7093), - [anon_sym_xor_eq] = ACTIONS(7093), - [anon_sym_LT_EQ_GT] = ACTIONS(7093), - [anon_sym_or] = ACTIONS(7091), - [anon_sym_and] = ACTIONS(7091), - [anon_sym_bitor] = ACTIONS(7093), - [anon_sym_xor] = ACTIONS(7091), - [anon_sym_bitand] = ACTIONS(7093), - [anon_sym_not_eq] = ACTIONS(7093), - [anon_sym_DASH_DASH] = ACTIONS(7093), - [anon_sym_PLUS_PLUS] = ACTIONS(7093), - [anon_sym_DOT] = ACTIONS(7091), - [anon_sym_DOT_STAR] = ACTIONS(7093), - [anon_sym_DASH_GT] = ACTIONS(7091), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7093), - [anon_sym_override] = ACTIONS(7093), - [anon_sym_requires] = ACTIONS(7093), - [anon_sym_DASH_GT_STAR] = ACTIONS(7093), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_override] = ACTIONS(7557), + [anon_sym_GT2] = ACTIONS(7557), + [anon_sym_requires] = ACTIONS(7557), }, - [STATE(2618)] = { - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6344), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(5572), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), + [STATE(2479)] = { + [sym__declaration_modifiers] = STATE(5072), + [sym_attribute_specifier] = STATE(5072), + [sym_attribute_declaration] = STATE(5072), + [sym_ms_declspec_modifier] = STATE(5072), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8677), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(5072), + [sym_type_qualifier] = STATE(5072), + [sym_alignas_qualifier] = STATE(4722), + [sym_decltype] = STATE(10768), + [sym_explicit_function_specifier] = STATE(5072), + [sym_operator_cast] = STATE(9268), + [sym__constructor_specifiers] = STATE(5072), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7901), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_operator_cast_identifier] = STATE(9268), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_operator_cast_definition_repeat1] = STATE(5072), + [sym_identifier] = ACTIONS(8228), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(8230), + [anon_sym_virtual] = ACTIONS(8232), + [anon_sym_extern] = ACTIONS(8234), + [anon_sym___attribute__] = ACTIONS(8236), + [anon_sym___attribute] = ACTIONS(8236), + [anon_sym_COLON_COLON] = ACTIONS(8238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8240), + [anon_sym___declspec] = ACTIONS(8242), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(8234), + [anon_sym_register] = ACTIONS(8234), + [anon_sym_inline] = ACTIONS(8234), + [anon_sym___inline] = ACTIONS(8234), + [anon_sym___inline__] = ACTIONS(8234), + [anon_sym___forceinline] = ACTIONS(8234), + [anon_sym_thread_local] = ACTIONS(8234), + [anon_sym___thread] = ACTIONS(8234), + [anon_sym_const] = ACTIONS(8230), + [anon_sym_constexpr] = ACTIONS(8230), + [anon_sym_volatile] = ACTIONS(8230), + [anon_sym_restrict] = ACTIONS(8230), + [anon_sym___restrict__] = ACTIONS(8230), + [anon_sym__Atomic] = ACTIONS(8230), + [anon_sym__Noreturn] = ACTIONS(8230), + [anon_sym_noreturn] = ACTIONS(8230), + [anon_sym__Nonnull] = ACTIONS(8230), + [anon_sym_mutable] = ACTIONS(8230), + [anon_sym_constinit] = ACTIONS(8230), + [anon_sym_consteval] = ACTIONS(8230), + [anon_sym_alignas] = ACTIONS(8244), + [anon_sym__Alignas] = ACTIONS(8244), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), }, - [STATE(2619)] = { - [sym_attribute_specifier] = STATE(2942), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7097), - [anon_sym_COMMA] = ACTIONS(7097), - [anon_sym_RPAREN] = ACTIONS(7097), - [anon_sym_LPAREN2] = ACTIONS(7097), - [anon_sym_DASH] = ACTIONS(7095), - [anon_sym_PLUS] = ACTIONS(7095), - [anon_sym_STAR] = ACTIONS(7095), - [anon_sym_SLASH] = ACTIONS(7095), - [anon_sym_PERCENT] = ACTIONS(7095), - [anon_sym_PIPE_PIPE] = ACTIONS(7097), - [anon_sym_AMP_AMP] = ACTIONS(7097), - [anon_sym_PIPE] = ACTIONS(7095), - [anon_sym_CARET] = ACTIONS(7095), - [anon_sym_AMP] = ACTIONS(7095), - [anon_sym_EQ_EQ] = ACTIONS(7097), - [anon_sym_BANG_EQ] = ACTIONS(7097), - [anon_sym_GT] = ACTIONS(7095), - [anon_sym_GT_EQ] = ACTIONS(7097), - [anon_sym_LT_EQ] = ACTIONS(7095), - [anon_sym_LT] = ACTIONS(7095), - [anon_sym_LT_LT] = ACTIONS(7095), - [anon_sym_GT_GT] = ACTIONS(7095), - [anon_sym___extension__] = ACTIONS(7097), - [anon_sym___attribute__] = ACTIONS(7813), - [anon_sym___attribute] = ACTIONS(7815), - [anon_sym_LBRACE] = ACTIONS(7097), - [anon_sym_LBRACK] = ACTIONS(7097), - [anon_sym_EQ] = ACTIONS(7095), - [anon_sym_const] = ACTIONS(7095), - [anon_sym_constexpr] = ACTIONS(7097), - [anon_sym_volatile] = ACTIONS(7097), - [anon_sym_restrict] = ACTIONS(7097), - [anon_sym___restrict__] = ACTIONS(7097), - [anon_sym__Atomic] = ACTIONS(7097), - [anon_sym__Noreturn] = ACTIONS(7097), - [anon_sym_noreturn] = ACTIONS(7097), - [anon_sym__Nonnull] = ACTIONS(7097), - [anon_sym_mutable] = ACTIONS(7097), - [anon_sym_constinit] = ACTIONS(7097), - [anon_sym_consteval] = ACTIONS(7097), - [anon_sym_alignas] = ACTIONS(7097), - [anon_sym__Alignas] = ACTIONS(7097), - [anon_sym_QMARK] = ACTIONS(7097), - [anon_sym_STAR_EQ] = ACTIONS(7097), - [anon_sym_SLASH_EQ] = ACTIONS(7097), - [anon_sym_PERCENT_EQ] = ACTIONS(7097), - [anon_sym_PLUS_EQ] = ACTIONS(7097), - [anon_sym_DASH_EQ] = ACTIONS(7097), - [anon_sym_LT_LT_EQ] = ACTIONS(7097), - [anon_sym_GT_GT_EQ] = ACTIONS(7097), - [anon_sym_AMP_EQ] = ACTIONS(7097), - [anon_sym_CARET_EQ] = ACTIONS(7097), - [anon_sym_PIPE_EQ] = ACTIONS(7097), - [anon_sym_and_eq] = ACTIONS(7097), - [anon_sym_or_eq] = ACTIONS(7097), - [anon_sym_xor_eq] = ACTIONS(7097), - [anon_sym_LT_EQ_GT] = ACTIONS(7097), - [anon_sym_or] = ACTIONS(7095), - [anon_sym_and] = ACTIONS(7095), - [anon_sym_bitor] = ACTIONS(7097), - [anon_sym_xor] = ACTIONS(7095), - [anon_sym_bitand] = ACTIONS(7097), - [anon_sym_not_eq] = ACTIONS(7097), - [anon_sym_DASH_DASH] = ACTIONS(7097), - [anon_sym_PLUS_PLUS] = ACTIONS(7097), - [anon_sym_DOT] = ACTIONS(7095), - [anon_sym_DOT_STAR] = ACTIONS(7097), - [anon_sym_DASH_GT] = ACTIONS(7095), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7097), - [anon_sym_override] = ACTIONS(7097), - [anon_sym_requires] = ACTIONS(7097), - [anon_sym_DASH_GT_STAR] = ACTIONS(7097), + [STATE(2480)] = { + [sym_attribute_specifier] = STATE(4124), + [sym_attribute_declaration] = STATE(4490), + [sym_gnu_asm_expression] = STATE(9129), + [sym_virtual_specifier] = STATE(4610), + [sym__function_exception_specification] = STATE(2918), + [sym__function_attributes_end] = STATE(4299), + [sym__function_postfix] = STATE(4890), + [sym_trailing_return_type] = STATE(4345), + [sym_noexcept] = STATE(2918), + [sym_throw_specifier] = STATE(2918), + [sym_requires_clause] = STATE(4890), + [aux_sym_type_definition_repeat1] = STATE(4124), + [aux_sym_attributed_declarator_repeat1] = STATE(4490), + [aux_sym__function_postfix_repeat1] = STATE(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_RPAREN] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym___attribute__] = ACTIONS(6646), + [anon_sym___attribute] = ACTIONS(6648), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7966), + [anon_sym_or_eq] = ACTIONS(7966), + [anon_sym_xor_eq] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(8271), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8301), + [anon_sym_override] = ACTIONS(8301), + [anon_sym_noexcept] = ACTIONS(6662), + [anon_sym_throw] = ACTIONS(6664), + [anon_sym_requires] = ACTIONS(8304), + [anon_sym_DASH_GT_STAR] = ACTIONS(7966), }, - [STATE(2620)] = { - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6354), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(5572), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [STATE(2481)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7785), + [anon_sym_COMMA] = ACTIONS(7785), + [anon_sym_LPAREN2] = ACTIONS(7785), + [anon_sym_DASH] = ACTIONS(7783), + [anon_sym_PLUS] = ACTIONS(7783), + [anon_sym_STAR] = ACTIONS(7783), + [anon_sym_SLASH] = ACTIONS(7783), + [anon_sym_PERCENT] = ACTIONS(7783), + [anon_sym_PIPE_PIPE] = ACTIONS(7785), + [anon_sym_AMP_AMP] = ACTIONS(7785), + [anon_sym_PIPE] = ACTIONS(7783), + [anon_sym_CARET] = ACTIONS(7783), + [anon_sym_AMP] = ACTIONS(7783), + [anon_sym_EQ_EQ] = ACTIONS(7785), + [anon_sym_BANG_EQ] = ACTIONS(7785), + [anon_sym_GT] = ACTIONS(7783), + [anon_sym_GT_EQ] = ACTIONS(7783), + [anon_sym_LT_EQ] = ACTIONS(7783), + [anon_sym_LT] = ACTIONS(7783), + [anon_sym_LT_LT] = ACTIONS(7783), + [anon_sym_GT_GT] = ACTIONS(7783), + [anon_sym___extension__] = ACTIONS(7785), + [anon_sym___attribute__] = ACTIONS(7785), + [anon_sym___attribute] = ACTIONS(7783), + [anon_sym_LBRACE] = ACTIONS(7785), + [anon_sym_signed] = ACTIONS(8307), + [anon_sym_unsigned] = ACTIONS(8307), + [anon_sym_long] = ACTIONS(8307), + [anon_sym_short] = ACTIONS(8307), + [anon_sym_LBRACK] = ACTIONS(7785), + [anon_sym_EQ] = ACTIONS(7783), + [anon_sym_const] = ACTIONS(7783), + [anon_sym_constexpr] = ACTIONS(7785), + [anon_sym_volatile] = ACTIONS(7785), + [anon_sym_restrict] = ACTIONS(7785), + [anon_sym___restrict__] = ACTIONS(7785), + [anon_sym__Atomic] = ACTIONS(7785), + [anon_sym__Noreturn] = ACTIONS(7785), + [anon_sym_noreturn] = ACTIONS(7785), + [anon_sym__Nonnull] = ACTIONS(7785), + [anon_sym_mutable] = ACTIONS(7785), + [anon_sym_constinit] = ACTIONS(7785), + [anon_sym_consteval] = ACTIONS(7785), + [anon_sym_alignas] = ACTIONS(7785), + [anon_sym__Alignas] = ACTIONS(7785), + [anon_sym_QMARK] = ACTIONS(7785), + [anon_sym_STAR_EQ] = ACTIONS(7785), + [anon_sym_SLASH_EQ] = ACTIONS(7785), + [anon_sym_PERCENT_EQ] = ACTIONS(7785), + [anon_sym_PLUS_EQ] = ACTIONS(7785), + [anon_sym_DASH_EQ] = ACTIONS(7785), + [anon_sym_LT_LT_EQ] = ACTIONS(7785), + [anon_sym_GT_GT_EQ] = ACTIONS(7783), + [anon_sym_AMP_EQ] = ACTIONS(7785), + [anon_sym_CARET_EQ] = ACTIONS(7785), + [anon_sym_PIPE_EQ] = ACTIONS(7785), + [anon_sym_and_eq] = ACTIONS(7785), + [anon_sym_or_eq] = ACTIONS(7785), + [anon_sym_xor_eq] = ACTIONS(7785), + [anon_sym_LT_EQ_GT] = ACTIONS(7785), + [anon_sym_or] = ACTIONS(7783), + [anon_sym_and] = ACTIONS(7783), + [anon_sym_bitor] = ACTIONS(7785), + [anon_sym_xor] = ACTIONS(7783), + [anon_sym_bitand] = ACTIONS(7785), + [anon_sym_not_eq] = ACTIONS(7785), + [anon_sym_DASH_DASH] = ACTIONS(7785), + [anon_sym_PLUS_PLUS] = ACTIONS(7785), + [anon_sym_DOT] = ACTIONS(7783), + [anon_sym_DOT_STAR] = ACTIONS(7785), + [anon_sym_DASH_GT] = ACTIONS(7785), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7785), + [anon_sym_override] = ACTIONS(7785), + [anon_sym_GT2] = ACTIONS(7785), + [anon_sym_requires] = ACTIONS(7785), }, - [STATE(2621)] = { - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6356), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(5572), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), + [STATE(2482)] = { + [sym__abstract_declarator] = STATE(5420), + [sym_abstract_parenthesized_declarator] = STATE(5063), + [sym_abstract_pointer_declarator] = STATE(5063), + [sym_abstract_function_declarator] = STATE(5063), + [sym_abstract_array_declarator] = STATE(5063), + [sym_type_qualifier] = STATE(2406), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1978), + [sym_abstract_reference_declarator] = STATE(5063), + [sym__function_declarator_seq] = STATE(5065), + [aux_sym__type_definition_type_repeat1] = STATE(2406), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), + [anon_sym_COMMA] = ACTIONS(7351), + [anon_sym_LPAREN2] = ACTIONS(7112), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_PLUS] = ACTIONS(7349), + [anon_sym_STAR] = ACTIONS(7363), + [anon_sym_SLASH] = ACTIONS(7349), + [anon_sym_PERCENT] = ACTIONS(7349), + [anon_sym_PIPE_PIPE] = ACTIONS(7351), + [anon_sym_AMP_AMP] = ACTIONS(7365), + [anon_sym_PIPE] = ACTIONS(7349), + [anon_sym_CARET] = ACTIONS(7349), + [anon_sym_AMP] = ACTIONS(7367), + [anon_sym_EQ_EQ] = ACTIONS(7351), + [anon_sym_BANG_EQ] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7349), + [anon_sym_GT_EQ] = ACTIONS(7351), + [anon_sym_LT_EQ] = ACTIONS(7349), + [anon_sym_LT] = ACTIONS(7349), + [anon_sym_LT_LT] = ACTIONS(7349), + [anon_sym_GT_GT] = ACTIONS(7349), + [anon_sym___extension__] = ACTIONS(7120), + [anon_sym_LBRACK] = ACTIONS(7128), + [anon_sym_RBRACK] = ACTIONS(7351), + [anon_sym_EQ] = ACTIONS(7349), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(7120), + [anon_sym_volatile] = ACTIONS(7120), + [anon_sym_restrict] = ACTIONS(7120), + [anon_sym___restrict__] = ACTIONS(7120), + [anon_sym__Atomic] = ACTIONS(7120), + [anon_sym__Noreturn] = ACTIONS(7120), + [anon_sym_noreturn] = ACTIONS(7120), + [anon_sym__Nonnull] = ACTIONS(7120), + [anon_sym_mutable] = ACTIONS(7120), + [anon_sym_constinit] = ACTIONS(7120), + [anon_sym_consteval] = ACTIONS(7120), + [anon_sym_alignas] = ACTIONS(7130), + [anon_sym__Alignas] = ACTIONS(7130), + [anon_sym_QMARK] = ACTIONS(7351), + [anon_sym_STAR_EQ] = ACTIONS(7351), + [anon_sym_SLASH_EQ] = ACTIONS(7351), + [anon_sym_PERCENT_EQ] = ACTIONS(7351), + [anon_sym_PLUS_EQ] = ACTIONS(7351), + [anon_sym_DASH_EQ] = ACTIONS(7351), + [anon_sym_LT_LT_EQ] = ACTIONS(7351), + [anon_sym_GT_GT_EQ] = ACTIONS(7351), + [anon_sym_AMP_EQ] = ACTIONS(7351), + [anon_sym_CARET_EQ] = ACTIONS(7351), + [anon_sym_PIPE_EQ] = ACTIONS(7351), + [anon_sym_and_eq] = ACTIONS(7351), + [anon_sym_or_eq] = ACTIONS(7351), + [anon_sym_xor_eq] = ACTIONS(7351), + [anon_sym_LT_EQ_GT] = ACTIONS(7351), + [anon_sym_or] = ACTIONS(7349), + [anon_sym_and] = ACTIONS(7349), + [anon_sym_bitor] = ACTIONS(7351), + [anon_sym_xor] = ACTIONS(7349), + [anon_sym_bitand] = ACTIONS(7351), + [anon_sym_not_eq] = ACTIONS(7351), + [anon_sym_DASH_DASH] = ACTIONS(7351), + [anon_sym_PLUS_PLUS] = ACTIONS(7351), + [anon_sym_DOT] = ACTIONS(7349), + [anon_sym_DOT_STAR] = ACTIONS(7351), + [anon_sym_DASH_GT] = ACTIONS(7351), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), }, - [STATE(2622)] = { - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6361), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(5572), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [STATE(2483)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2499), + [sym_identifier] = ACTIONS(6999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), + [anon_sym_COMMA] = ACTIONS(7525), + [anon_sym_RPAREN] = ACTIONS(7525), + [anon_sym_LPAREN2] = ACTIONS(7525), + [anon_sym_DASH] = ACTIONS(7528), + [anon_sym_PLUS] = ACTIONS(7528), + [anon_sym_STAR] = ACTIONS(7528), + [anon_sym_SLASH] = ACTIONS(7528), + [anon_sym_PERCENT] = ACTIONS(7528), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_AMP_AMP] = ACTIONS(7525), + [anon_sym_PIPE] = ACTIONS(7528), + [anon_sym_CARET] = ACTIONS(7528), + [anon_sym_AMP] = ACTIONS(7528), + [anon_sym_EQ_EQ] = ACTIONS(7525), + [anon_sym_BANG_EQ] = ACTIONS(7525), + [anon_sym_GT] = ACTIONS(7528), + [anon_sym_GT_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7528), + [anon_sym_LT] = ACTIONS(7528), + [anon_sym_LT_LT] = ACTIONS(7528), + [anon_sym_GT_GT] = ACTIONS(7528), + [anon_sym___extension__] = ACTIONS(7528), + [anon_sym___attribute__] = ACTIONS(7528), + [anon_sym___attribute] = ACTIONS(7528), + [anon_sym_LBRACE] = ACTIONS(7525), + [anon_sym_signed] = ACTIONS(8309), + [anon_sym_unsigned] = ACTIONS(8309), + [anon_sym_long] = ACTIONS(8309), + [anon_sym_short] = ACTIONS(8309), + [anon_sym_LBRACK] = ACTIONS(7525), + [anon_sym_EQ] = ACTIONS(7528), + [anon_sym_const] = ACTIONS(7528), + [anon_sym_constexpr] = ACTIONS(7528), + [anon_sym_volatile] = ACTIONS(7528), + [anon_sym_restrict] = ACTIONS(7528), + [anon_sym___restrict__] = ACTIONS(7528), + [anon_sym__Atomic] = ACTIONS(7528), + [anon_sym__Noreturn] = ACTIONS(7528), + [anon_sym_noreturn] = ACTIONS(7528), + [anon_sym__Nonnull] = ACTIONS(7528), + [anon_sym_mutable] = ACTIONS(7528), + [anon_sym_constinit] = ACTIONS(7528), + [anon_sym_consteval] = ACTIONS(7528), + [anon_sym_alignas] = ACTIONS(7528), + [anon_sym__Alignas] = ACTIONS(7528), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7525), + [anon_sym_STAR_EQ] = ACTIONS(7525), + [anon_sym_SLASH_EQ] = ACTIONS(7525), + [anon_sym_PERCENT_EQ] = ACTIONS(7525), + [anon_sym_PLUS_EQ] = ACTIONS(7525), + [anon_sym_DASH_EQ] = ACTIONS(7525), + [anon_sym_LT_LT_EQ] = ACTIONS(7525), + [anon_sym_GT_GT_EQ] = ACTIONS(7525), + [anon_sym_AMP_EQ] = ACTIONS(7525), + [anon_sym_CARET_EQ] = ACTIONS(7525), + [anon_sym_PIPE_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ_GT] = ACTIONS(7525), + [anon_sym_or] = ACTIONS(7528), + [anon_sym_and] = ACTIONS(7528), + [anon_sym_bitor] = ACTIONS(7528), + [anon_sym_xor] = ACTIONS(7528), + [anon_sym_bitand] = ACTIONS(7528), + [anon_sym_not_eq] = ACTIONS(7528), + [anon_sym_DASH_DASH] = ACTIONS(7525), + [anon_sym_PLUS_PLUS] = ACTIONS(7525), + [anon_sym_DOT] = ACTIONS(7528), + [anon_sym_DOT_STAR] = ACTIONS(7525), + [anon_sym_DASH_GT] = ACTIONS(7528), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7528), + [anon_sym_override] = ACTIONS(7528), + [anon_sym_requires] = ACTIONS(7528), + [anon_sym_DASH_GT_STAR] = ACTIONS(7525), }, - [STATE(2623)] = { - [sym__declaration_modifiers] = STATE(2645), - [sym__declaration_specifiers] = STATE(6369), - [sym_attribute_specifier] = STATE(2645), - [sym_attribute_declaration] = STATE(2645), - [sym_ms_declspec_modifier] = STATE(2645), - [sym_storage_class_specifier] = STATE(2645), - [sym_type_qualifier] = STATE(2645), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3920), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(2645), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(5572), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), + [STATE(2484)] = { + [sym_attribute_specifier] = STATE(4161), + [sym_attribute_declaration] = STATE(4617), + [sym_gnu_asm_expression] = STATE(9112), + [sym_virtual_specifier] = STATE(4705), + [sym_ref_qualifier] = STATE(2542), + [sym__function_exception_specification] = STATE(2981), + [sym__function_attributes_end] = STATE(4353), + [sym__function_postfix] = STATE(5258), + [sym_trailing_return_type] = STATE(4468), + [sym_noexcept] = STATE(2981), + [sym_throw_specifier] = STATE(2981), + [sym_requires_clause] = STATE(5258), + [aux_sym_type_definition_repeat1] = STATE(4161), + [aux_sym_attributed_declarator_repeat1] = STATE(4617), + [aux_sym__function_postfix_repeat1] = STATE(4705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(8312), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(8315), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7789), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6681), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7789), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8318), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8321), + [anon_sym_override] = ACTIONS(8321), + [anon_sym_GT2] = ACTIONS(7791), + [anon_sym_noexcept] = ACTIONS(6696), + [anon_sym_throw] = ACTIONS(6698), + [anon_sym_requires] = ACTIONS(8324), + }, + [STATE(2485)] = { + [sym_template_argument_list] = STATE(2577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6572), + [anon_sym_COMMA] = ACTIONS(6572), + [anon_sym_LPAREN2] = ACTIONS(6572), + [anon_sym_DASH] = ACTIONS(6565), + [anon_sym_PLUS] = ACTIONS(6565), + [anon_sym_STAR] = ACTIONS(6565), + [anon_sym_SLASH] = ACTIONS(6565), + [anon_sym_PERCENT] = ACTIONS(6565), + [anon_sym_PIPE_PIPE] = ACTIONS(6572), + [anon_sym_AMP_AMP] = ACTIONS(6572), + [anon_sym_PIPE] = ACTIONS(6565), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym_AMP] = ACTIONS(6565), + [anon_sym_EQ_EQ] = ACTIONS(6572), + [anon_sym_BANG_EQ] = ACTIONS(6572), + [anon_sym_GT] = ACTIONS(6565), + [anon_sym_GT_EQ] = ACTIONS(6572), + [anon_sym_LT_EQ] = ACTIONS(6565), + [anon_sym_LT] = ACTIONS(8327), + [anon_sym_LT_LT] = ACTIONS(6565), + [anon_sym_GT_GT] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(6572), + [anon_sym___attribute__] = ACTIONS(6572), + [anon_sym___attribute] = ACTIONS(6565), + [anon_sym_COLON] = ACTIONS(6565), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(6572), + [anon_sym_LBRACK] = ACTIONS(6572), + [anon_sym_RBRACK] = ACTIONS(6572), + [anon_sym_EQ] = ACTIONS(6565), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_constexpr] = ACTIONS(6572), + [anon_sym_volatile] = ACTIONS(6572), + [anon_sym_restrict] = ACTIONS(6572), + [anon_sym___restrict__] = ACTIONS(6572), + [anon_sym__Atomic] = ACTIONS(6572), + [anon_sym__Noreturn] = ACTIONS(6572), + [anon_sym_noreturn] = ACTIONS(6572), + [anon_sym__Nonnull] = ACTIONS(6572), + [anon_sym_mutable] = ACTIONS(6572), + [anon_sym_constinit] = ACTIONS(6572), + [anon_sym_consteval] = ACTIONS(6572), + [anon_sym_alignas] = ACTIONS(6572), + [anon_sym__Alignas] = ACTIONS(6572), + [anon_sym_QMARK] = ACTIONS(6572), + [anon_sym_STAR_EQ] = ACTIONS(6572), + [anon_sym_SLASH_EQ] = ACTIONS(6572), + [anon_sym_PERCENT_EQ] = ACTIONS(6572), + [anon_sym_PLUS_EQ] = ACTIONS(6572), + [anon_sym_DASH_EQ] = ACTIONS(6572), + [anon_sym_LT_LT_EQ] = ACTIONS(6572), + [anon_sym_GT_GT_EQ] = ACTIONS(6572), + [anon_sym_AMP_EQ] = ACTIONS(6572), + [anon_sym_CARET_EQ] = ACTIONS(6572), + [anon_sym_PIPE_EQ] = ACTIONS(6572), + [anon_sym_and_eq] = ACTIONS(6572), + [anon_sym_or_eq] = ACTIONS(6572), + [anon_sym_xor_eq] = ACTIONS(6572), + [anon_sym_LT_EQ_GT] = ACTIONS(6572), + [anon_sym_or] = ACTIONS(6565), + [anon_sym_and] = ACTIONS(6565), + [anon_sym_bitor] = ACTIONS(6572), + [anon_sym_xor] = ACTIONS(6565), + [anon_sym_bitand] = ACTIONS(6572), + [anon_sym_not_eq] = ACTIONS(6572), + [anon_sym_DASH_DASH] = ACTIONS(6572), + [anon_sym_PLUS_PLUS] = ACTIONS(6572), + [anon_sym_DOT] = ACTIONS(6565), + [anon_sym_DOT_STAR] = ACTIONS(6572), + [anon_sym_DASH_GT] = ACTIONS(6572), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [sym_auto] = ACTIONS(6572), + [anon_sym_decltype] = ACTIONS(6572), + [anon_sym_final] = ACTIONS(6572), + [anon_sym_override] = ACTIONS(6572), + [anon_sym_requires] = ACTIONS(6572), }, - [STATE(2624)] = { - [sym_attribute_specifier] = STATE(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7101), - [anon_sym_COMMA] = ACTIONS(7101), - [anon_sym_RPAREN] = ACTIONS(7101), - [anon_sym_LPAREN2] = ACTIONS(7101), - [anon_sym_DASH] = ACTIONS(7099), - [anon_sym_PLUS] = ACTIONS(7099), - [anon_sym_STAR] = ACTIONS(7099), - [anon_sym_SLASH] = ACTIONS(7099), - [anon_sym_PERCENT] = ACTIONS(7099), - [anon_sym_PIPE_PIPE] = ACTIONS(7101), - [anon_sym_AMP_AMP] = ACTIONS(7101), - [anon_sym_PIPE] = ACTIONS(7099), - [anon_sym_CARET] = ACTIONS(7099), - [anon_sym_AMP] = ACTIONS(7099), - [anon_sym_EQ_EQ] = ACTIONS(7101), - [anon_sym_BANG_EQ] = ACTIONS(7101), - [anon_sym_GT] = ACTIONS(7099), - [anon_sym_GT_EQ] = ACTIONS(7101), - [anon_sym_LT_EQ] = ACTIONS(7099), - [anon_sym_LT] = ACTIONS(7099), - [anon_sym_LT_LT] = ACTIONS(7099), - [anon_sym_GT_GT] = ACTIONS(7099), - [anon_sym___extension__] = ACTIONS(7101), - [anon_sym___attribute__] = ACTIONS(7813), - [anon_sym___attribute] = ACTIONS(7815), - [anon_sym_LBRACE] = ACTIONS(7101), - [anon_sym_LBRACK] = ACTIONS(7101), - [anon_sym_EQ] = ACTIONS(7099), - [anon_sym_const] = ACTIONS(7099), - [anon_sym_constexpr] = ACTIONS(7101), - [anon_sym_volatile] = ACTIONS(7101), - [anon_sym_restrict] = ACTIONS(7101), - [anon_sym___restrict__] = ACTIONS(7101), - [anon_sym__Atomic] = ACTIONS(7101), - [anon_sym__Noreturn] = ACTIONS(7101), - [anon_sym_noreturn] = ACTIONS(7101), - [anon_sym__Nonnull] = ACTIONS(7101), - [anon_sym_mutable] = ACTIONS(7101), - [anon_sym_constinit] = ACTIONS(7101), - [anon_sym_consteval] = ACTIONS(7101), - [anon_sym_alignas] = ACTIONS(7101), - [anon_sym__Alignas] = ACTIONS(7101), - [anon_sym_QMARK] = ACTIONS(7101), - [anon_sym_STAR_EQ] = ACTIONS(7101), - [anon_sym_SLASH_EQ] = ACTIONS(7101), - [anon_sym_PERCENT_EQ] = ACTIONS(7101), - [anon_sym_PLUS_EQ] = ACTIONS(7101), - [anon_sym_DASH_EQ] = ACTIONS(7101), - [anon_sym_LT_LT_EQ] = ACTIONS(7101), - [anon_sym_GT_GT_EQ] = ACTIONS(7101), - [anon_sym_AMP_EQ] = ACTIONS(7101), - [anon_sym_CARET_EQ] = ACTIONS(7101), - [anon_sym_PIPE_EQ] = ACTIONS(7101), - [anon_sym_and_eq] = ACTIONS(7101), - [anon_sym_or_eq] = ACTIONS(7101), - [anon_sym_xor_eq] = ACTIONS(7101), - [anon_sym_LT_EQ_GT] = ACTIONS(7101), - [anon_sym_or] = ACTIONS(7099), - [anon_sym_and] = ACTIONS(7099), - [anon_sym_bitor] = ACTIONS(7101), - [anon_sym_xor] = ACTIONS(7099), - [anon_sym_bitand] = ACTIONS(7101), - [anon_sym_not_eq] = ACTIONS(7101), - [anon_sym_DASH_DASH] = ACTIONS(7101), - [anon_sym_PLUS_PLUS] = ACTIONS(7101), - [anon_sym_DOT] = ACTIONS(7099), - [anon_sym_DOT_STAR] = ACTIONS(7101), - [anon_sym_DASH_GT] = ACTIONS(7099), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7101), - [anon_sym_override] = ACTIONS(7101), - [anon_sym_requires] = ACTIONS(7101), - [anon_sym_DASH_GT_STAR] = ACTIONS(7101), + [STATE(2486)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym_ref_qualifier] = STATE(2554), + [sym__function_exception_specification] = STATE(3014), + [sym__function_attributes_end] = STATE(4235), + [sym__function_postfix] = STATE(3628), + [sym_trailing_return_type] = STATE(3075), + [sym_noexcept] = STATE(3014), + [sym_throw_specifier] = STATE(3014), + [sym_requires_clause] = STATE(3628), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7793), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7796), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym_SEMI] = ACTIONS(7791), + [anon_sym___attribute__] = ACTIONS(8330), + [anon_sym___attribute] = ACTIONS(8333), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8336), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7870), + [anon_sym_override] = ACTIONS(7870), + [anon_sym_noexcept] = ACTIONS(6546), + [anon_sym_throw] = ACTIONS(6548), + [anon_sym_requires] = ACTIONS(7873), }, - [STATE(2625)] = { - [sym_attribute_specifier] = STATE(2875), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7105), - [anon_sym_COMMA] = ACTIONS(7105), - [anon_sym_RPAREN] = ACTIONS(7105), - [anon_sym_LPAREN2] = ACTIONS(7105), - [anon_sym_DASH] = ACTIONS(7103), - [anon_sym_PLUS] = ACTIONS(7103), - [anon_sym_STAR] = ACTIONS(7103), - [anon_sym_SLASH] = ACTIONS(7103), - [anon_sym_PERCENT] = ACTIONS(7103), - [anon_sym_PIPE_PIPE] = ACTIONS(7105), - [anon_sym_AMP_AMP] = ACTIONS(7105), - [anon_sym_PIPE] = ACTIONS(7103), - [anon_sym_CARET] = ACTIONS(7103), - [anon_sym_AMP] = ACTIONS(7103), - [anon_sym_EQ_EQ] = ACTIONS(7105), - [anon_sym_BANG_EQ] = ACTIONS(7105), - [anon_sym_GT] = ACTIONS(7103), - [anon_sym_GT_EQ] = ACTIONS(7105), - [anon_sym_LT_EQ] = ACTIONS(7103), - [anon_sym_LT] = ACTIONS(7103), - [anon_sym_LT_LT] = ACTIONS(7103), - [anon_sym_GT_GT] = ACTIONS(7103), - [anon_sym___extension__] = ACTIONS(7105), - [anon_sym___attribute__] = ACTIONS(7813), - [anon_sym___attribute] = ACTIONS(7815), - [anon_sym_LBRACE] = ACTIONS(7105), - [anon_sym_LBRACK] = ACTIONS(7105), - [anon_sym_EQ] = ACTIONS(7103), - [anon_sym_const] = ACTIONS(7103), - [anon_sym_constexpr] = ACTIONS(7105), - [anon_sym_volatile] = ACTIONS(7105), - [anon_sym_restrict] = ACTIONS(7105), - [anon_sym___restrict__] = ACTIONS(7105), - [anon_sym__Atomic] = ACTIONS(7105), - [anon_sym__Noreturn] = ACTIONS(7105), - [anon_sym_noreturn] = ACTIONS(7105), - [anon_sym__Nonnull] = ACTIONS(7105), - [anon_sym_mutable] = ACTIONS(7105), - [anon_sym_constinit] = ACTIONS(7105), - [anon_sym_consteval] = ACTIONS(7105), - [anon_sym_alignas] = ACTIONS(7105), - [anon_sym__Alignas] = ACTIONS(7105), - [anon_sym_QMARK] = ACTIONS(7105), - [anon_sym_STAR_EQ] = ACTIONS(7105), - [anon_sym_SLASH_EQ] = ACTIONS(7105), - [anon_sym_PERCENT_EQ] = ACTIONS(7105), - [anon_sym_PLUS_EQ] = ACTIONS(7105), - [anon_sym_DASH_EQ] = ACTIONS(7105), - [anon_sym_LT_LT_EQ] = ACTIONS(7105), - [anon_sym_GT_GT_EQ] = ACTIONS(7105), - [anon_sym_AMP_EQ] = ACTIONS(7105), - [anon_sym_CARET_EQ] = ACTIONS(7105), - [anon_sym_PIPE_EQ] = ACTIONS(7105), - [anon_sym_and_eq] = ACTIONS(7105), - [anon_sym_or_eq] = ACTIONS(7105), - [anon_sym_xor_eq] = ACTIONS(7105), - [anon_sym_LT_EQ_GT] = ACTIONS(7105), - [anon_sym_or] = ACTIONS(7103), - [anon_sym_and] = ACTIONS(7103), - [anon_sym_bitor] = ACTIONS(7105), - [anon_sym_xor] = ACTIONS(7103), - [anon_sym_bitand] = ACTIONS(7105), - [anon_sym_not_eq] = ACTIONS(7105), - [anon_sym_DASH_DASH] = ACTIONS(7105), - [anon_sym_PLUS_PLUS] = ACTIONS(7105), - [anon_sym_DOT] = ACTIONS(7103), - [anon_sym_DOT_STAR] = ACTIONS(7105), - [anon_sym_DASH_GT] = ACTIONS(7103), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7105), - [anon_sym_override] = ACTIONS(7105), - [anon_sym_requires] = ACTIONS(7105), - [anon_sym_DASH_GT_STAR] = ACTIONS(7105), + [STATE(2487)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2683), + [sym_ms_pointer_modifier] = STATE(2487), + [aux_sym_pointer_declarator_repeat1] = STATE(2487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6944), + [anon_sym_COMMA] = ACTIONS(6944), + [anon_sym_LPAREN2] = ACTIONS(6944), + [anon_sym_DASH] = ACTIONS(6942), + [anon_sym_PLUS] = ACTIONS(6942), + [anon_sym_STAR] = ACTIONS(6942), + [anon_sym_SLASH] = ACTIONS(6942), + [anon_sym_PERCENT] = ACTIONS(6942), + [anon_sym_PIPE_PIPE] = ACTIONS(6944), + [anon_sym_AMP_AMP] = ACTIONS(6944), + [anon_sym_PIPE] = ACTIONS(6942), + [anon_sym_CARET] = ACTIONS(6942), + [anon_sym_AMP] = ACTIONS(6942), + [anon_sym_EQ_EQ] = ACTIONS(6944), + [anon_sym_BANG_EQ] = ACTIONS(6944), + [anon_sym_GT] = ACTIONS(6942), + [anon_sym_GT_EQ] = ACTIONS(6944), + [anon_sym_LT_EQ] = ACTIONS(6942), + [anon_sym_LT] = ACTIONS(6942), + [anon_sym_LT_LT] = ACTIONS(6942), + [anon_sym_GT_GT] = ACTIONS(6942), + [anon_sym___extension__] = ACTIONS(6944), + [sym_ms_restrict_modifier] = ACTIONS(8339), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8342), + [sym_ms_signed_ptr_modifier] = ACTIONS(8342), + [anon_sym__unaligned] = ACTIONS(8345), + [anon_sym___unaligned] = ACTIONS(8345), + [anon_sym_LBRACK] = ACTIONS(6944), + [anon_sym_RBRACK] = ACTIONS(6944), + [anon_sym_EQ] = ACTIONS(6942), + [anon_sym_const] = ACTIONS(6942), + [anon_sym_constexpr] = ACTIONS(6944), + [anon_sym_volatile] = ACTIONS(6944), + [anon_sym_restrict] = ACTIONS(6944), + [anon_sym___restrict__] = ACTIONS(6944), + [anon_sym__Atomic] = ACTIONS(6944), + [anon_sym__Noreturn] = ACTIONS(6944), + [anon_sym_noreturn] = ACTIONS(6944), + [anon_sym__Nonnull] = ACTIONS(6944), + [anon_sym_mutable] = ACTIONS(6944), + [anon_sym_constinit] = ACTIONS(6944), + [anon_sym_consteval] = ACTIONS(6944), + [anon_sym_alignas] = ACTIONS(6944), + [anon_sym__Alignas] = ACTIONS(6944), + [anon_sym_QMARK] = ACTIONS(6944), + [anon_sym_STAR_EQ] = ACTIONS(6944), + [anon_sym_SLASH_EQ] = ACTIONS(6944), + [anon_sym_PERCENT_EQ] = ACTIONS(6944), + [anon_sym_PLUS_EQ] = ACTIONS(6944), + [anon_sym_DASH_EQ] = ACTIONS(6944), + [anon_sym_LT_LT_EQ] = ACTIONS(6944), + [anon_sym_GT_GT_EQ] = ACTIONS(6944), + [anon_sym_AMP_EQ] = ACTIONS(6944), + [anon_sym_CARET_EQ] = ACTIONS(6944), + [anon_sym_PIPE_EQ] = ACTIONS(6944), + [anon_sym_and_eq] = ACTIONS(6944), + [anon_sym_or_eq] = ACTIONS(6944), + [anon_sym_xor_eq] = ACTIONS(6944), + [anon_sym_LT_EQ_GT] = ACTIONS(6944), + [anon_sym_or] = ACTIONS(6942), + [anon_sym_and] = ACTIONS(6942), + [anon_sym_bitor] = ACTIONS(6944), + [anon_sym_xor] = ACTIONS(6942), + [anon_sym_bitand] = ACTIONS(6944), + [anon_sym_not_eq] = ACTIONS(6944), + [anon_sym_DASH_DASH] = ACTIONS(6944), + [anon_sym_PLUS_PLUS] = ACTIONS(6944), + [anon_sym_DOT] = ACTIONS(6942), + [anon_sym_DOT_STAR] = ACTIONS(6944), + [anon_sym_DASH_GT] = ACTIONS(6944), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6944), + [anon_sym_override] = ACTIONS(6944), + [anon_sym_requires] = ACTIONS(6944), }, - [STATE(2626)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6808), - [anon_sym_COMMA] = ACTIONS(6808), - [anon_sym_LPAREN2] = ACTIONS(6808), - [anon_sym_DASH] = ACTIONS(6806), - [anon_sym_PLUS] = ACTIONS(6806), - [anon_sym_STAR] = ACTIONS(6806), - [anon_sym_SLASH] = ACTIONS(6806), - [anon_sym_PERCENT] = ACTIONS(6806), - [anon_sym_PIPE_PIPE] = ACTIONS(6808), - [anon_sym_AMP_AMP] = ACTIONS(6808), - [anon_sym_PIPE] = ACTIONS(6806), - [anon_sym_CARET] = ACTIONS(6806), - [anon_sym_AMP] = ACTIONS(6806), - [anon_sym_EQ_EQ] = ACTIONS(6808), - [anon_sym_BANG_EQ] = ACTIONS(6808), - [anon_sym_GT] = ACTIONS(6806), - [anon_sym_GT_EQ] = ACTIONS(6806), - [anon_sym_LT_EQ] = ACTIONS(6806), - [anon_sym_LT] = ACTIONS(6806), - [anon_sym_LT_LT] = ACTIONS(6806), - [anon_sym_GT_GT] = ACTIONS(6806), - [anon_sym___extension__] = ACTIONS(6808), - [sym_ms_restrict_modifier] = ACTIONS(6806), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6808), - [sym_ms_signed_ptr_modifier] = ACTIONS(6808), - [anon_sym__unaligned] = ACTIONS(6808), - [anon_sym___unaligned] = ACTIONS(6808), - [anon_sym_LBRACK] = ACTIONS(6808), - [anon_sym_EQ] = ACTIONS(6806), - [anon_sym_const] = ACTIONS(6806), - [anon_sym_constexpr] = ACTIONS(6808), - [anon_sym_volatile] = ACTIONS(6808), - [anon_sym_restrict] = ACTIONS(6808), - [anon_sym___restrict__] = ACTIONS(6808), - [anon_sym__Atomic] = ACTIONS(6808), - [anon_sym__Noreturn] = ACTIONS(6808), - [anon_sym_noreturn] = ACTIONS(6808), - [anon_sym__Nonnull] = ACTIONS(6808), - [anon_sym_mutable] = ACTIONS(6808), - [anon_sym_constinit] = ACTIONS(6808), - [anon_sym_consteval] = ACTIONS(6808), - [anon_sym_alignas] = ACTIONS(6808), - [anon_sym__Alignas] = ACTIONS(6808), - [anon_sym_QMARK] = ACTIONS(6808), - [anon_sym_STAR_EQ] = ACTIONS(6808), - [anon_sym_SLASH_EQ] = ACTIONS(6808), - [anon_sym_PERCENT_EQ] = ACTIONS(6808), - [anon_sym_PLUS_EQ] = ACTIONS(6808), - [anon_sym_DASH_EQ] = ACTIONS(6808), - [anon_sym_LT_LT_EQ] = ACTIONS(6808), - [anon_sym_GT_GT_EQ] = ACTIONS(6806), - [anon_sym_AMP_EQ] = ACTIONS(6808), - [anon_sym_CARET_EQ] = ACTIONS(6808), - [anon_sym_PIPE_EQ] = ACTIONS(6808), - [anon_sym_and_eq] = ACTIONS(6808), - [anon_sym_or_eq] = ACTIONS(6808), - [anon_sym_xor_eq] = ACTIONS(6808), - [anon_sym_LT_EQ_GT] = ACTIONS(6808), - [anon_sym_or] = ACTIONS(6806), - [anon_sym_and] = ACTIONS(6806), - [anon_sym_bitor] = ACTIONS(6808), - [anon_sym_xor] = ACTIONS(6806), - [anon_sym_bitand] = ACTIONS(6808), - [anon_sym_not_eq] = ACTIONS(6808), - [anon_sym_DASH_DASH] = ACTIONS(6808), - [anon_sym_PLUS_PLUS] = ACTIONS(6808), - [anon_sym_DOT] = ACTIONS(6806), - [anon_sym_DOT_STAR] = ACTIONS(6808), - [anon_sym_DASH_GT] = ACTIONS(6808), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6808), - [anon_sym_override] = ACTIONS(6808), - [anon_sym_GT2] = ACTIONS(6808), - [anon_sym_requires] = ACTIONS(6808), + [STATE(2488)] = { + [sym_type_qualifier] = STATE(2488), + [sym_alignas_qualifier] = STATE(2726), + [aux_sym__type_definition_type_repeat1] = STATE(2488), + [sym_identifier] = ACTIONS(6889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), + [anon_sym_COMMA] = ACTIONS(6891), + [anon_sym_RPAREN] = ACTIONS(6891), + [aux_sym_preproc_if_token2] = ACTIONS(6891), + [aux_sym_preproc_else_token1] = ACTIONS(6891), + [aux_sym_preproc_elif_token1] = ACTIONS(6889), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6891), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6891), + [anon_sym_LPAREN2] = ACTIONS(6891), + [anon_sym_DASH] = ACTIONS(6889), + [anon_sym_PLUS] = ACTIONS(6889), + [anon_sym_STAR] = ACTIONS(6891), + [anon_sym_SLASH] = ACTIONS(6889), + [anon_sym_PERCENT] = ACTIONS(6891), + [anon_sym_PIPE_PIPE] = ACTIONS(6891), + [anon_sym_AMP_AMP] = ACTIONS(6891), + [anon_sym_PIPE] = ACTIONS(6889), + [anon_sym_CARET] = ACTIONS(6891), + [anon_sym_AMP] = ACTIONS(6889), + [anon_sym_EQ_EQ] = ACTIONS(6891), + [anon_sym_BANG_EQ] = ACTIONS(6891), + [anon_sym_GT] = ACTIONS(6889), + [anon_sym_GT_EQ] = ACTIONS(6891), + [anon_sym_LT_EQ] = ACTIONS(6889), + [anon_sym_LT] = ACTIONS(6889), + [anon_sym_LT_LT] = ACTIONS(6891), + [anon_sym_GT_GT] = ACTIONS(6891), + [anon_sym_SEMI] = ACTIONS(6891), + [anon_sym___extension__] = ACTIONS(8348), + [anon_sym___attribute__] = ACTIONS(6889), + [anon_sym___attribute] = ACTIONS(6889), + [anon_sym_COLON] = ACTIONS(6889), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6891), + [anon_sym_LBRACE] = ACTIONS(6891), + [anon_sym_RBRACE] = ACTIONS(6891), + [anon_sym_signed] = ACTIONS(6889), + [anon_sym_unsigned] = ACTIONS(6889), + [anon_sym_long] = ACTIONS(6889), + [anon_sym_short] = ACTIONS(6889), + [anon_sym_LBRACK] = ACTIONS(6891), + [anon_sym_const] = ACTIONS(8348), + [anon_sym_constexpr] = ACTIONS(8348), + [anon_sym_volatile] = ACTIONS(8348), + [anon_sym_restrict] = ACTIONS(8348), + [anon_sym___restrict__] = ACTIONS(8348), + [anon_sym__Atomic] = ACTIONS(8348), + [anon_sym__Noreturn] = ACTIONS(8348), + [anon_sym_noreturn] = ACTIONS(8348), + [anon_sym__Nonnull] = ACTIONS(8348), + [anon_sym_mutable] = ACTIONS(8348), + [anon_sym_constinit] = ACTIONS(8348), + [anon_sym_consteval] = ACTIONS(8348), + [anon_sym_alignas] = ACTIONS(8351), + [anon_sym__Alignas] = ACTIONS(8351), + [sym_primitive_type] = ACTIONS(6889), + [anon_sym_QMARK] = ACTIONS(6891), + [anon_sym_LT_EQ_GT] = ACTIONS(6891), + [anon_sym_or] = ACTIONS(6889), + [anon_sym_and] = ACTIONS(6889), + [anon_sym_bitor] = ACTIONS(6889), + [anon_sym_xor] = ACTIONS(6889), + [anon_sym_bitand] = ACTIONS(6889), + [anon_sym_not_eq] = ACTIONS(6889), + [anon_sym_DASH_DASH] = ACTIONS(6891), + [anon_sym_PLUS_PLUS] = ACTIONS(6891), + [anon_sym_DOT] = ACTIONS(6889), + [anon_sym_DOT_STAR] = ACTIONS(6891), + [anon_sym_DASH_GT] = ACTIONS(6891), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6889), + [anon_sym_override] = ACTIONS(6889), + [anon_sym_requires] = ACTIONS(6889), + [anon_sym_COLON_RBRACK] = ACTIONS(6891), }, - [STATE(2627)] = { - [sym_identifier] = ACTIONS(6806), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6808), - [anon_sym_COMMA] = ACTIONS(6808), - [anon_sym_RPAREN] = ACTIONS(6808), - [aux_sym_preproc_if_token2] = ACTIONS(6808), - [aux_sym_preproc_else_token1] = ACTIONS(6808), - [aux_sym_preproc_elif_token1] = ACTIONS(6806), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6808), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6808), - [anon_sym_LPAREN2] = ACTIONS(6808), - [anon_sym_DASH] = ACTIONS(6806), - [anon_sym_PLUS] = ACTIONS(6806), - [anon_sym_STAR] = ACTIONS(6808), - [anon_sym_SLASH] = ACTIONS(6806), - [anon_sym_PERCENT] = ACTIONS(6808), - [anon_sym_PIPE_PIPE] = ACTIONS(6808), - [anon_sym_AMP_AMP] = ACTIONS(6808), - [anon_sym_PIPE] = ACTIONS(6806), - [anon_sym_CARET] = ACTIONS(6808), - [anon_sym_AMP] = ACTIONS(6806), - [anon_sym_EQ_EQ] = ACTIONS(6808), - [anon_sym_BANG_EQ] = ACTIONS(6808), - [anon_sym_GT] = ACTIONS(6806), - [anon_sym_GT_EQ] = ACTIONS(6808), - [anon_sym_LT_EQ] = ACTIONS(6806), - [anon_sym_LT] = ACTIONS(6806), - [anon_sym_LT_LT] = ACTIONS(6808), - [anon_sym_GT_GT] = ACTIONS(6808), - [anon_sym_SEMI] = ACTIONS(6808), - [anon_sym___extension__] = ACTIONS(6806), - [anon_sym___attribute__] = ACTIONS(6806), - [anon_sym___attribute] = ACTIONS(6806), - [anon_sym_COLON] = ACTIONS(6806), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6808), - [sym_ms_restrict_modifier] = ACTIONS(6806), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6806), - [sym_ms_signed_ptr_modifier] = ACTIONS(6806), - [anon_sym__unaligned] = ACTIONS(6806), - [anon_sym___unaligned] = ACTIONS(6806), - [anon_sym_RBRACE] = ACTIONS(6808), - [anon_sym_LBRACK] = ACTIONS(6808), - [anon_sym_const] = ACTIONS(6806), - [anon_sym_constexpr] = ACTIONS(6806), - [anon_sym_volatile] = ACTIONS(6806), - [anon_sym_restrict] = ACTIONS(6806), - [anon_sym___restrict__] = ACTIONS(6806), - [anon_sym__Atomic] = ACTIONS(6806), - [anon_sym__Noreturn] = ACTIONS(6806), - [anon_sym_noreturn] = ACTIONS(6806), - [anon_sym__Nonnull] = ACTIONS(6806), - [anon_sym_mutable] = ACTIONS(6806), - [anon_sym_constinit] = ACTIONS(6806), - [anon_sym_consteval] = ACTIONS(6806), - [anon_sym_alignas] = ACTIONS(6806), - [anon_sym__Alignas] = ACTIONS(6806), - [anon_sym_QMARK] = ACTIONS(6808), - [anon_sym_LT_EQ_GT] = ACTIONS(6808), - [anon_sym_or] = ACTIONS(6806), - [anon_sym_and] = ACTIONS(6806), - [anon_sym_bitor] = ACTIONS(6806), - [anon_sym_xor] = ACTIONS(6806), - [anon_sym_bitand] = ACTIONS(6806), - [anon_sym_not_eq] = ACTIONS(6806), - [anon_sym_DASH_DASH] = ACTIONS(6808), - [anon_sym_PLUS_PLUS] = ACTIONS(6808), - [anon_sym_DOT] = ACTIONS(6806), - [anon_sym_DOT_STAR] = ACTIONS(6808), - [anon_sym_DASH_GT] = ACTIONS(6808), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6806), - [anon_sym_override] = ACTIONS(6806), - [anon_sym_requires] = ACTIONS(6806), - [anon_sym_COLON_RBRACK] = ACTIONS(6808), + [STATE(2489)] = { + [sym_type_qualifier] = STATE(2500), + [sym_alignas_qualifier] = STATE(2727), + [aux_sym__type_definition_type_repeat1] = STATE(2500), + [sym_identifier] = ACTIONS(6899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6901), + [anon_sym_COMMA] = ACTIONS(6901), + [anon_sym_RPAREN] = ACTIONS(6901), + [aux_sym_preproc_if_token2] = ACTIONS(6901), + [aux_sym_preproc_else_token1] = ACTIONS(6901), + [aux_sym_preproc_elif_token1] = ACTIONS(6899), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6901), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6901), + [anon_sym_LPAREN2] = ACTIONS(6901), + [anon_sym_DASH] = ACTIONS(6899), + [anon_sym_PLUS] = ACTIONS(6899), + [anon_sym_STAR] = ACTIONS(6901), + [anon_sym_SLASH] = ACTIONS(6899), + [anon_sym_PERCENT] = ACTIONS(6901), + [anon_sym_PIPE_PIPE] = ACTIONS(6901), + [anon_sym_AMP_AMP] = ACTIONS(6901), + [anon_sym_PIPE] = ACTIONS(6899), + [anon_sym_CARET] = ACTIONS(6901), + [anon_sym_AMP] = ACTIONS(6899), + [anon_sym_EQ_EQ] = ACTIONS(6901), + [anon_sym_BANG_EQ] = ACTIONS(6901), + [anon_sym_GT] = ACTIONS(6899), + [anon_sym_GT_EQ] = ACTIONS(6901), + [anon_sym_LT_EQ] = ACTIONS(6899), + [anon_sym_LT] = ACTIONS(6899), + [anon_sym_LT_LT] = ACTIONS(6901), + [anon_sym_GT_GT] = ACTIONS(6901), + [anon_sym_SEMI] = ACTIONS(6901), + [anon_sym___extension__] = ACTIONS(7182), + [anon_sym___attribute__] = ACTIONS(6899), + [anon_sym___attribute] = ACTIONS(6899), + [anon_sym_COLON] = ACTIONS(6899), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6901), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6901), + [anon_sym_RBRACE] = ACTIONS(6901), + [anon_sym_LBRACK] = ACTIONS(6899), + [anon_sym_const] = ACTIONS(7182), + [anon_sym_constexpr] = ACTIONS(7182), + [anon_sym_volatile] = ACTIONS(7182), + [anon_sym_restrict] = ACTIONS(7182), + [anon_sym___restrict__] = ACTIONS(7182), + [anon_sym__Atomic] = ACTIONS(7182), + [anon_sym__Noreturn] = ACTIONS(7182), + [anon_sym_noreturn] = ACTIONS(7182), + [anon_sym__Nonnull] = ACTIONS(7182), + [anon_sym_mutable] = ACTIONS(7182), + [anon_sym_constinit] = ACTIONS(7182), + [anon_sym_consteval] = ACTIONS(7182), + [anon_sym_alignas] = ACTIONS(7268), + [anon_sym__Alignas] = ACTIONS(7268), + [anon_sym_QMARK] = ACTIONS(6901), + [anon_sym_LT_EQ_GT] = ACTIONS(6901), + [anon_sym_or] = ACTIONS(6899), + [anon_sym_and] = ACTIONS(6899), + [anon_sym_bitor] = ACTIONS(6899), + [anon_sym_xor] = ACTIONS(6899), + [anon_sym_bitand] = ACTIONS(6899), + [anon_sym_not_eq] = ACTIONS(6899), + [anon_sym_DASH_DASH] = ACTIONS(6901), + [anon_sym_PLUS_PLUS] = ACTIONS(6901), + [anon_sym_asm] = ACTIONS(6899), + [anon_sym___asm__] = ACTIONS(6899), + [anon_sym___asm] = ACTIONS(6899), + [anon_sym_DOT] = ACTIONS(6899), + [anon_sym_DOT_STAR] = ACTIONS(6901), + [anon_sym_DASH_GT] = ACTIONS(6901), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6899), + [anon_sym_override] = ACTIONS(6899), + [anon_sym_noexcept] = ACTIONS(6899), + [anon_sym_throw] = ACTIONS(6899), + [anon_sym_requires] = ACTIONS(6899), + [anon_sym_COLON_RBRACK] = ACTIONS(6901), }, - [STATE(2628)] = { - [sym_identifier] = ACTIONS(8277), - [aux_sym_preproc_def_token1] = ACTIONS(8277), - [aux_sym_preproc_if_token1] = ACTIONS(8277), - [aux_sym_preproc_if_token2] = ACTIONS(8277), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8277), - [aux_sym_preproc_else_token1] = ACTIONS(8277), - [aux_sym_preproc_elif_token1] = ACTIONS(8277), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8277), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8277), - [sym_preproc_directive] = ACTIONS(8277), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_TILDE] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8279), - [anon_sym_AMP_AMP] = ACTIONS(8279), - [anon_sym_AMP] = ACTIONS(8277), - [anon_sym_SEMI] = ACTIONS(8279), - [anon_sym___extension__] = ACTIONS(8277), - [anon_sym_typedef] = ACTIONS(8277), - [anon_sym_virtual] = ACTIONS(8277), - [anon_sym_extern] = ACTIONS(8277), - [anon_sym___attribute__] = ACTIONS(8277), - [anon_sym___attribute] = ACTIONS(8277), - [anon_sym_using] = ACTIONS(8277), - [anon_sym_COLON_COLON] = ACTIONS(8279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8279), - [anon_sym___declspec] = ACTIONS(8277), - [anon_sym___based] = ACTIONS(8277), - [anon_sym_signed] = ACTIONS(8277), - [anon_sym_unsigned] = ACTIONS(8277), - [anon_sym_long] = ACTIONS(8277), - [anon_sym_short] = ACTIONS(8277), - [anon_sym_LBRACK] = ACTIONS(8277), - [anon_sym_static] = ACTIONS(8277), - [anon_sym_register] = ACTIONS(8277), - [anon_sym_inline] = ACTIONS(8277), - [anon_sym___inline] = ACTIONS(8277), - [anon_sym___inline__] = ACTIONS(8277), - [anon_sym___forceinline] = ACTIONS(8277), - [anon_sym_thread_local] = ACTIONS(8277), - [anon_sym___thread] = ACTIONS(8277), - [anon_sym_const] = ACTIONS(8277), - [anon_sym_constexpr] = ACTIONS(8277), - [anon_sym_volatile] = ACTIONS(8277), - [anon_sym_restrict] = ACTIONS(8277), - [anon_sym___restrict__] = ACTIONS(8277), - [anon_sym__Atomic] = ACTIONS(8277), - [anon_sym__Noreturn] = ACTIONS(8277), - [anon_sym_noreturn] = ACTIONS(8277), - [anon_sym__Nonnull] = ACTIONS(8277), - [anon_sym_mutable] = ACTIONS(8277), - [anon_sym_constinit] = ACTIONS(8277), - [anon_sym_consteval] = ACTIONS(8277), - [anon_sym_alignas] = ACTIONS(8277), - [anon_sym__Alignas] = ACTIONS(8277), - [sym_primitive_type] = ACTIONS(8277), - [anon_sym_enum] = ACTIONS(8277), - [anon_sym_class] = ACTIONS(8277), - [anon_sym_struct] = ACTIONS(8277), - [anon_sym_union] = ACTIONS(8277), - [anon_sym_typename] = ACTIONS(8277), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8277), - [anon_sym_decltype] = ACTIONS(8277), - [anon_sym_explicit] = ACTIONS(8277), - [anon_sym_private] = ACTIONS(8277), - [anon_sym_template] = ACTIONS(8277), - [anon_sym_operator] = ACTIONS(8277), - [anon_sym_friend] = ACTIONS(8277), - [anon_sym_public] = ACTIONS(8277), - [anon_sym_protected] = ACTIONS(8277), - [anon_sym_static_assert] = ACTIONS(8277), - [anon_sym_LBRACK_COLON] = ACTIONS(8279), + [STATE(2490)] = { + [sym_attribute_specifier] = STATE(4179), + [sym_attribute_declaration] = STATE(4554), + [sym_gnu_asm_expression] = STATE(9153), + [sym_virtual_specifier] = STATE(4653), + [sym_ref_qualifier] = STATE(2546), + [sym__function_exception_specification] = STATE(2961), + [sym__function_attributes_end] = STATE(4366), + [sym__function_postfix] = STATE(5110), + [sym_trailing_return_type] = STATE(4476), + [sym_noexcept] = STATE(2961), + [sym_throw_specifier] = STATE(2961), + [sym_requires_clause] = STATE(5110), + [aux_sym_type_definition_repeat1] = STATE(4179), + [aux_sym_attributed_declarator_repeat1] = STATE(4554), + [aux_sym__function_postfix_repeat1] = STATE(4653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(8354), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(8357), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6719), + [anon_sym___attribute] = ACTIONS(6721), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_RBRACK] = ACTIONS(7791), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8360), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8363), + [anon_sym_override] = ACTIONS(8363), + [anon_sym_noexcept] = ACTIONS(6735), + [anon_sym_throw] = ACTIONS(6737), + [anon_sym_requires] = ACTIONS(8366), }, - [STATE(2629)] = { - [sym_identifier] = ACTIONS(8281), - [aux_sym_preproc_def_token1] = ACTIONS(8281), - [aux_sym_preproc_if_token1] = ACTIONS(8281), - [aux_sym_preproc_if_token2] = ACTIONS(8281), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8281), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8281), - [aux_sym_preproc_else_token1] = ACTIONS(8281), - [aux_sym_preproc_elif_token1] = ACTIONS(8281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8281), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8281), - [sym_preproc_directive] = ACTIONS(8281), - [anon_sym_LPAREN2] = ACTIONS(8283), - [anon_sym_TILDE] = ACTIONS(8283), - [anon_sym_STAR] = ACTIONS(8283), - [anon_sym_AMP_AMP] = ACTIONS(8283), - [anon_sym_AMP] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8283), - [anon_sym___extension__] = ACTIONS(8281), - [anon_sym_typedef] = ACTIONS(8281), - [anon_sym_virtual] = ACTIONS(8281), - [anon_sym_extern] = ACTIONS(8281), - [anon_sym___attribute__] = ACTIONS(8281), - [anon_sym___attribute] = ACTIONS(8281), - [anon_sym_using] = ACTIONS(8281), - [anon_sym_COLON_COLON] = ACTIONS(8283), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8283), - [anon_sym___declspec] = ACTIONS(8281), - [anon_sym___based] = ACTIONS(8281), - [anon_sym_signed] = ACTIONS(8281), - [anon_sym_unsigned] = ACTIONS(8281), - [anon_sym_long] = ACTIONS(8281), - [anon_sym_short] = ACTIONS(8281), - [anon_sym_LBRACK] = ACTIONS(8281), - [anon_sym_static] = ACTIONS(8281), - [anon_sym_register] = ACTIONS(8281), - [anon_sym_inline] = ACTIONS(8281), - [anon_sym___inline] = ACTIONS(8281), - [anon_sym___inline__] = ACTIONS(8281), - [anon_sym___forceinline] = ACTIONS(8281), - [anon_sym_thread_local] = ACTIONS(8281), - [anon_sym___thread] = ACTIONS(8281), - [anon_sym_const] = ACTIONS(8281), - [anon_sym_constexpr] = ACTIONS(8281), - [anon_sym_volatile] = ACTIONS(8281), - [anon_sym_restrict] = ACTIONS(8281), - [anon_sym___restrict__] = ACTIONS(8281), - [anon_sym__Atomic] = ACTIONS(8281), - [anon_sym__Noreturn] = ACTIONS(8281), - [anon_sym_noreturn] = ACTIONS(8281), - [anon_sym__Nonnull] = ACTIONS(8281), - [anon_sym_mutable] = ACTIONS(8281), - [anon_sym_constinit] = ACTIONS(8281), - [anon_sym_consteval] = ACTIONS(8281), - [anon_sym_alignas] = ACTIONS(8281), - [anon_sym__Alignas] = ACTIONS(8281), - [sym_primitive_type] = ACTIONS(8281), - [anon_sym_enum] = ACTIONS(8281), - [anon_sym_class] = ACTIONS(8281), - [anon_sym_struct] = ACTIONS(8281), - [anon_sym_union] = ACTIONS(8281), - [anon_sym_typename] = ACTIONS(8281), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8281), - [anon_sym_decltype] = ACTIONS(8281), - [anon_sym_explicit] = ACTIONS(8281), - [anon_sym_private] = ACTIONS(8281), - [anon_sym_template] = ACTIONS(8281), - [anon_sym_operator] = ACTIONS(8281), - [anon_sym_friend] = ACTIONS(8281), - [anon_sym_public] = ACTIONS(8281), - [anon_sym_protected] = ACTIONS(8281), - [anon_sym_static_assert] = ACTIONS(8281), - [anon_sym_LBRACK_COLON] = ACTIONS(8283), + [STATE(2491)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6614), + [anon_sym_COMMA] = ACTIONS(6614), + [anon_sym_RPAREN] = ACTIONS(6614), + [anon_sym_LPAREN2] = ACTIONS(6614), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6612), + [anon_sym_SLASH] = ACTIONS(6612), + [anon_sym_PERCENT] = ACTIONS(6612), + [anon_sym_PIPE_PIPE] = ACTIONS(6614), + [anon_sym_AMP_AMP] = ACTIONS(6614), + [anon_sym_PIPE] = ACTIONS(6612), + [anon_sym_CARET] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(6612), + [anon_sym_EQ_EQ] = ACTIONS(6614), + [anon_sym_BANG_EQ] = ACTIONS(6614), + [anon_sym_GT] = ACTIONS(6612), + [anon_sym_GT_EQ] = ACTIONS(6614), + [anon_sym_LT_EQ] = ACTIONS(6612), + [anon_sym_LT] = ACTIONS(6612), + [anon_sym_LT_LT] = ACTIONS(6612), + [anon_sym_GT_GT] = ACTIONS(6612), + [anon_sym___extension__] = ACTIONS(6614), + [anon_sym___attribute__] = ACTIONS(6614), + [anon_sym___attribute] = ACTIONS(6612), + [anon_sym_COLON] = ACTIONS(6612), + [anon_sym_COLON_COLON] = ACTIONS(6614), + [anon_sym_LBRACE] = ACTIONS(6614), + [anon_sym_LBRACK] = ACTIONS(6614), + [anon_sym_EQ] = ACTIONS(6612), + [anon_sym_const] = ACTIONS(6612), + [anon_sym_constexpr] = ACTIONS(6614), + [anon_sym_volatile] = ACTIONS(6614), + [anon_sym_restrict] = ACTIONS(6614), + [anon_sym___restrict__] = ACTIONS(6614), + [anon_sym__Atomic] = ACTIONS(6614), + [anon_sym__Noreturn] = ACTIONS(6614), + [anon_sym_noreturn] = ACTIONS(6614), + [anon_sym__Nonnull] = ACTIONS(6614), + [anon_sym_mutable] = ACTIONS(6614), + [anon_sym_constinit] = ACTIONS(6614), + [anon_sym_consteval] = ACTIONS(6614), + [anon_sym_alignas] = ACTIONS(6614), + [anon_sym__Alignas] = ACTIONS(6614), + [anon_sym_QMARK] = ACTIONS(6614), + [anon_sym_STAR_EQ] = ACTIONS(6614), + [anon_sym_SLASH_EQ] = ACTIONS(6614), + [anon_sym_PERCENT_EQ] = ACTIONS(6614), + [anon_sym_PLUS_EQ] = ACTIONS(6614), + [anon_sym_DASH_EQ] = ACTIONS(6614), + [anon_sym_LT_LT_EQ] = ACTIONS(6614), + [anon_sym_GT_GT_EQ] = ACTIONS(6614), + [anon_sym_AMP_EQ] = ACTIONS(6614), + [anon_sym_CARET_EQ] = ACTIONS(6614), + [anon_sym_PIPE_EQ] = ACTIONS(6614), + [anon_sym_and_eq] = ACTIONS(6614), + [anon_sym_or_eq] = ACTIONS(6614), + [anon_sym_xor_eq] = ACTIONS(6614), + [anon_sym_LT_EQ_GT] = ACTIONS(6614), + [anon_sym_or] = ACTIONS(6612), + [anon_sym_and] = ACTIONS(6612), + [anon_sym_bitor] = ACTIONS(6614), + [anon_sym_xor] = ACTIONS(6612), + [anon_sym_bitand] = ACTIONS(6614), + [anon_sym_not_eq] = ACTIONS(6614), + [anon_sym_DASH_DASH] = ACTIONS(6614), + [anon_sym_PLUS_PLUS] = ACTIONS(6614), + [anon_sym_DOT] = ACTIONS(6612), + [anon_sym_DOT_STAR] = ACTIONS(6614), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6614), + [anon_sym_decltype] = ACTIONS(6614), + [anon_sym_final] = ACTIONS(6614), + [anon_sym_override] = ACTIONS(6614), + [anon_sym_requires] = ACTIONS(6614), + [anon_sym_DASH_GT_STAR] = ACTIONS(6614), }, - [STATE(2630)] = { - [sym_identifier] = ACTIONS(3884), - [aux_sym_preproc_def_token1] = ACTIONS(3884), - [aux_sym_preproc_if_token1] = ACTIONS(3884), - [aux_sym_preproc_if_token2] = ACTIONS(3884), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3884), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3884), - [aux_sym_preproc_else_token1] = ACTIONS(3884), - [aux_sym_preproc_elif_token1] = ACTIONS(3884), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3884), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3884), - [sym_preproc_directive] = ACTIONS(3884), - [anon_sym_LPAREN2] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_STAR] = ACTIONS(3886), - [anon_sym_AMP_AMP] = ACTIONS(3886), - [anon_sym_AMP] = ACTIONS(3884), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym___extension__] = ACTIONS(3884), - [anon_sym_typedef] = ACTIONS(3884), - [anon_sym_virtual] = ACTIONS(3884), - [anon_sym_extern] = ACTIONS(3884), - [anon_sym___attribute__] = ACTIONS(3884), - [anon_sym___attribute] = ACTIONS(3884), - [anon_sym_using] = 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_signed] = ACTIONS(3884), - [anon_sym_unsigned] = ACTIONS(3884), - [anon_sym_long] = ACTIONS(3884), - [anon_sym_short] = ACTIONS(3884), - [anon_sym_LBRACK] = ACTIONS(3884), - [anon_sym_static] = ACTIONS(3884), - [anon_sym_register] = ACTIONS(3884), - [anon_sym_inline] = ACTIONS(3884), - [anon_sym___inline] = ACTIONS(3884), - [anon_sym___inline__] = ACTIONS(3884), - [anon_sym___forceinline] = ACTIONS(3884), - [anon_sym_thread_local] = ACTIONS(3884), - [anon_sym___thread] = ACTIONS(3884), - [anon_sym_const] = ACTIONS(3884), - [anon_sym_constexpr] = ACTIONS(3884), - [anon_sym_volatile] = ACTIONS(3884), - [anon_sym_restrict] = ACTIONS(3884), - [anon_sym___restrict__] = ACTIONS(3884), - [anon_sym__Atomic] = ACTIONS(3884), - [anon_sym__Noreturn] = ACTIONS(3884), - [anon_sym_noreturn] = ACTIONS(3884), - [anon_sym__Nonnull] = ACTIONS(3884), - [anon_sym_mutable] = ACTIONS(3884), - [anon_sym_constinit] = ACTIONS(3884), - [anon_sym_consteval] = ACTIONS(3884), - [anon_sym_alignas] = ACTIONS(3884), - [anon_sym__Alignas] = ACTIONS(3884), - [sym_primitive_type] = ACTIONS(3884), - [anon_sym_enum] = ACTIONS(3884), - [anon_sym_class] = ACTIONS(3884), - [anon_sym_struct] = ACTIONS(3884), - [anon_sym_union] = ACTIONS(3884), - [anon_sym_typename] = ACTIONS(3884), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3884), - [anon_sym_decltype] = ACTIONS(3884), - [anon_sym_explicit] = ACTIONS(3884), - [anon_sym_private] = ACTIONS(3884), - [anon_sym_template] = ACTIONS(3884), - [anon_sym_operator] = ACTIONS(3884), - [anon_sym_friend] = ACTIONS(3884), - [anon_sym_public] = ACTIONS(3884), - [anon_sym_protected] = ACTIONS(3884), - [anon_sym_static_assert] = ACTIONS(3884), - [anon_sym_LBRACK_COLON] = ACTIONS(3886), + [STATE(2492)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), + [anon_sym_COMMA] = ACTIONS(3118), + [anon_sym_LPAREN2] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_SLASH] = ACTIONS(3128), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_PIPE_PIPE] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_CARET] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3128), + [anon_sym_GT_EQ] = ACTIONS(3128), + [anon_sym_LT_EQ] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(3128), + [anon_sym_LT_LT] = ACTIONS(3128), + [anon_sym_GT_GT] = ACTIONS(3128), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_EQ] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3118), + [anon_sym_volatile] = ACTIONS(3118), + [anon_sym_restrict] = ACTIONS(3118), + [anon_sym___restrict__] = ACTIONS(3118), + [anon_sym__Atomic] = ACTIONS(3118), + [anon_sym__Noreturn] = ACTIONS(3118), + [anon_sym_noreturn] = ACTIONS(3118), + [anon_sym__Nonnull] = ACTIONS(3118), + [anon_sym_mutable] = ACTIONS(3118), + [anon_sym_constinit] = ACTIONS(3118), + [anon_sym_consteval] = ACTIONS(3118), + [anon_sym_alignas] = ACTIONS(3118), + [anon_sym__Alignas] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_STAR_EQ] = ACTIONS(3118), + [anon_sym_SLASH_EQ] = ACTIONS(3118), + [anon_sym_PERCENT_EQ] = ACTIONS(3118), + [anon_sym_PLUS_EQ] = ACTIONS(3118), + [anon_sym_DASH_EQ] = ACTIONS(3118), + [anon_sym_LT_LT_EQ] = ACTIONS(3118), + [anon_sym_GT_GT_EQ] = ACTIONS(3128), + [anon_sym_AMP_EQ] = ACTIONS(3118), + [anon_sym_CARET_EQ] = ACTIONS(3118), + [anon_sym_PIPE_EQ] = ACTIONS(3118), + [anon_sym_and_eq] = ACTIONS(3118), + [anon_sym_or_eq] = ACTIONS(3118), + [anon_sym_xor_eq] = ACTIONS(3118), + [anon_sym_LT_EQ_GT] = ACTIONS(3118), + [anon_sym_or] = ACTIONS(3128), + [anon_sym_and] = ACTIONS(3128), + [anon_sym_bitor] = ACTIONS(3118), + [anon_sym_xor] = ACTIONS(3128), + [anon_sym_bitand] = ACTIONS(3118), + [anon_sym_not_eq] = ACTIONS(3118), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_asm] = ACTIONS(3118), + [anon_sym___asm__] = ACTIONS(3118), + [anon_sym___asm] = ACTIONS(3128), + [anon_sym_DOT] = ACTIONS(3128), + [anon_sym_DOT_STAR] = ACTIONS(3118), + [anon_sym_DASH_GT] = ACTIONS(3118), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_GT2] = ACTIONS(3118), + [anon_sym_noexcept] = ACTIONS(3118), + [anon_sym_throw] = ACTIONS(3118), + [anon_sym_requires] = ACTIONS(3118), }, - [STATE(2631)] = { - [sym_identifier] = ACTIONS(8285), - [aux_sym_preproc_def_token1] = ACTIONS(8285), - [aux_sym_preproc_if_token1] = ACTIONS(8285), - [aux_sym_preproc_if_token2] = ACTIONS(8285), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8285), - [aux_sym_preproc_else_token1] = ACTIONS(8285), - [aux_sym_preproc_elif_token1] = ACTIONS(8285), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8285), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8285), - [sym_preproc_directive] = ACTIONS(8285), - [anon_sym_LPAREN2] = ACTIONS(8287), - [anon_sym_TILDE] = ACTIONS(8287), - [anon_sym_STAR] = ACTIONS(8287), - [anon_sym_AMP_AMP] = ACTIONS(8287), - [anon_sym_AMP] = ACTIONS(8285), - [anon_sym_SEMI] = ACTIONS(8287), - [anon_sym___extension__] = ACTIONS(8285), - [anon_sym_typedef] = ACTIONS(8285), - [anon_sym_virtual] = ACTIONS(8285), - [anon_sym_extern] = ACTIONS(8285), - [anon_sym___attribute__] = ACTIONS(8285), - [anon_sym___attribute] = ACTIONS(8285), - [anon_sym_using] = ACTIONS(8285), - [anon_sym_COLON_COLON] = ACTIONS(8287), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8287), - [anon_sym___declspec] = ACTIONS(8285), - [anon_sym___based] = ACTIONS(8285), - [anon_sym_signed] = ACTIONS(8285), - [anon_sym_unsigned] = ACTIONS(8285), - [anon_sym_long] = ACTIONS(8285), - [anon_sym_short] = ACTIONS(8285), - [anon_sym_LBRACK] = ACTIONS(8285), - [anon_sym_static] = ACTIONS(8285), - [anon_sym_register] = ACTIONS(8285), - [anon_sym_inline] = ACTIONS(8285), - [anon_sym___inline] = ACTIONS(8285), - [anon_sym___inline__] = ACTIONS(8285), - [anon_sym___forceinline] = ACTIONS(8285), - [anon_sym_thread_local] = ACTIONS(8285), - [anon_sym___thread] = ACTIONS(8285), - [anon_sym_const] = ACTIONS(8285), - [anon_sym_constexpr] = ACTIONS(8285), - [anon_sym_volatile] = ACTIONS(8285), - [anon_sym_restrict] = ACTIONS(8285), - [anon_sym___restrict__] = ACTIONS(8285), - [anon_sym__Atomic] = ACTIONS(8285), - [anon_sym__Noreturn] = ACTIONS(8285), - [anon_sym_noreturn] = ACTIONS(8285), - [anon_sym__Nonnull] = ACTIONS(8285), - [anon_sym_mutable] = ACTIONS(8285), - [anon_sym_constinit] = ACTIONS(8285), - [anon_sym_consteval] = ACTIONS(8285), - [anon_sym_alignas] = ACTIONS(8285), - [anon_sym__Alignas] = ACTIONS(8285), - [sym_primitive_type] = ACTIONS(8285), - [anon_sym_enum] = ACTIONS(8285), - [anon_sym_class] = ACTIONS(8285), - [anon_sym_struct] = ACTIONS(8285), - [anon_sym_union] = ACTIONS(8285), - [anon_sym_typename] = ACTIONS(8285), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8285), - [anon_sym_decltype] = ACTIONS(8285), - [anon_sym_explicit] = ACTIONS(8285), - [anon_sym_private] = ACTIONS(8285), - [anon_sym_template] = ACTIONS(8285), - [anon_sym_operator] = ACTIONS(8285), - [anon_sym_friend] = ACTIONS(8285), - [anon_sym_public] = ACTIONS(8285), - [anon_sym_protected] = ACTIONS(8285), - [anon_sym_static_assert] = ACTIONS(8285), - [anon_sym_LBRACK_COLON] = ACTIONS(8287), + [STATE(2493)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6634), + [anon_sym_COMMA] = ACTIONS(6634), + [anon_sym_RPAREN] = ACTIONS(6634), + [anon_sym_LPAREN2] = ACTIONS(6634), + [anon_sym_DASH] = ACTIONS(6632), + [anon_sym_PLUS] = ACTIONS(6632), + [anon_sym_STAR] = ACTIONS(6632), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_PERCENT] = ACTIONS(6632), + [anon_sym_PIPE_PIPE] = ACTIONS(6634), + [anon_sym_AMP_AMP] = ACTIONS(6634), + [anon_sym_PIPE] = ACTIONS(6632), + [anon_sym_CARET] = ACTIONS(6632), + [anon_sym_AMP] = ACTIONS(6632), + [anon_sym_EQ_EQ] = ACTIONS(6634), + [anon_sym_BANG_EQ] = ACTIONS(6634), + [anon_sym_GT] = ACTIONS(6632), + [anon_sym_GT_EQ] = ACTIONS(6634), + [anon_sym_LT_EQ] = ACTIONS(6632), + [anon_sym_LT] = ACTIONS(6632), + [anon_sym_LT_LT] = ACTIONS(6632), + [anon_sym_GT_GT] = ACTIONS(6632), + [anon_sym___extension__] = ACTIONS(6634), + [anon_sym___attribute__] = ACTIONS(6634), + [anon_sym___attribute] = ACTIONS(6632), + [anon_sym_COLON] = ACTIONS(6632), + [anon_sym_COLON_COLON] = ACTIONS(6634), + [anon_sym_LBRACE] = ACTIONS(6634), + [anon_sym_LBRACK] = ACTIONS(6634), + [anon_sym_EQ] = ACTIONS(6632), + [anon_sym_const] = ACTIONS(6632), + [anon_sym_constexpr] = ACTIONS(6634), + [anon_sym_volatile] = ACTIONS(6634), + [anon_sym_restrict] = ACTIONS(6634), + [anon_sym___restrict__] = ACTIONS(6634), + [anon_sym__Atomic] = ACTIONS(6634), + [anon_sym__Noreturn] = ACTIONS(6634), + [anon_sym_noreturn] = ACTIONS(6634), + [anon_sym__Nonnull] = ACTIONS(6634), + [anon_sym_mutable] = ACTIONS(6634), + [anon_sym_constinit] = ACTIONS(6634), + [anon_sym_consteval] = ACTIONS(6634), + [anon_sym_alignas] = ACTIONS(6634), + [anon_sym__Alignas] = ACTIONS(6634), + [anon_sym_QMARK] = ACTIONS(6634), + [anon_sym_STAR_EQ] = ACTIONS(6634), + [anon_sym_SLASH_EQ] = ACTIONS(6634), + [anon_sym_PERCENT_EQ] = ACTIONS(6634), + [anon_sym_PLUS_EQ] = ACTIONS(6634), + [anon_sym_DASH_EQ] = ACTIONS(6634), + [anon_sym_LT_LT_EQ] = ACTIONS(6634), + [anon_sym_GT_GT_EQ] = ACTIONS(6634), + [anon_sym_AMP_EQ] = ACTIONS(6634), + [anon_sym_CARET_EQ] = ACTIONS(6634), + [anon_sym_PIPE_EQ] = ACTIONS(6634), + [anon_sym_and_eq] = ACTIONS(6634), + [anon_sym_or_eq] = ACTIONS(6634), + [anon_sym_xor_eq] = ACTIONS(6634), + [anon_sym_LT_EQ_GT] = ACTIONS(6634), + [anon_sym_or] = ACTIONS(6632), + [anon_sym_and] = ACTIONS(6632), + [anon_sym_bitor] = ACTIONS(6634), + [anon_sym_xor] = ACTIONS(6632), + [anon_sym_bitand] = ACTIONS(6634), + [anon_sym_not_eq] = ACTIONS(6634), + [anon_sym_DASH_DASH] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_DOT] = ACTIONS(6632), + [anon_sym_DOT_STAR] = ACTIONS(6634), + [anon_sym_DASH_GT] = ACTIONS(6632), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6634), + [anon_sym_decltype] = ACTIONS(6634), + [anon_sym_final] = ACTIONS(6634), + [anon_sym_override] = ACTIONS(6634), + [anon_sym_requires] = ACTIONS(6634), + [anon_sym_DASH_GT_STAR] = ACTIONS(6634), }, - [STATE(2632)] = { - [sym_identifier] = ACTIONS(8289), - [aux_sym_preproc_def_token1] = ACTIONS(8289), - [aux_sym_preproc_if_token1] = ACTIONS(8289), - [aux_sym_preproc_if_token2] = ACTIONS(8289), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8289), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8289), - [aux_sym_preproc_else_token1] = ACTIONS(8289), - [aux_sym_preproc_elif_token1] = ACTIONS(8289), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8289), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8289), - [sym_preproc_directive] = ACTIONS(8289), - [anon_sym_LPAREN2] = ACTIONS(8291), - [anon_sym_TILDE] = ACTIONS(8291), - [anon_sym_STAR] = ACTIONS(8291), - [anon_sym_AMP_AMP] = ACTIONS(8291), - [anon_sym_AMP] = ACTIONS(8289), - [anon_sym_SEMI] = ACTIONS(8291), - [anon_sym___extension__] = ACTIONS(8289), - [anon_sym_typedef] = ACTIONS(8289), - [anon_sym_virtual] = ACTIONS(8289), - [anon_sym_extern] = ACTIONS(8289), - [anon_sym___attribute__] = ACTIONS(8289), - [anon_sym___attribute] = ACTIONS(8289), - [anon_sym_using] = ACTIONS(8289), - [anon_sym_COLON_COLON] = ACTIONS(8291), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8291), - [anon_sym___declspec] = ACTIONS(8289), - [anon_sym___based] = ACTIONS(8289), - [anon_sym_signed] = ACTIONS(8289), - [anon_sym_unsigned] = ACTIONS(8289), - [anon_sym_long] = ACTIONS(8289), - [anon_sym_short] = ACTIONS(8289), - [anon_sym_LBRACK] = ACTIONS(8289), - [anon_sym_static] = ACTIONS(8289), - [anon_sym_register] = ACTIONS(8289), - [anon_sym_inline] = ACTIONS(8289), - [anon_sym___inline] = ACTIONS(8289), - [anon_sym___inline__] = ACTIONS(8289), - [anon_sym___forceinline] = ACTIONS(8289), - [anon_sym_thread_local] = ACTIONS(8289), - [anon_sym___thread] = ACTIONS(8289), - [anon_sym_const] = ACTIONS(8289), - [anon_sym_constexpr] = ACTIONS(8289), - [anon_sym_volatile] = ACTIONS(8289), - [anon_sym_restrict] = ACTIONS(8289), - [anon_sym___restrict__] = ACTIONS(8289), - [anon_sym__Atomic] = ACTIONS(8289), - [anon_sym__Noreturn] = ACTIONS(8289), - [anon_sym_noreturn] = ACTIONS(8289), - [anon_sym__Nonnull] = ACTIONS(8289), - [anon_sym_mutable] = ACTIONS(8289), - [anon_sym_constinit] = ACTIONS(8289), - [anon_sym_consteval] = ACTIONS(8289), - [anon_sym_alignas] = ACTIONS(8289), - [anon_sym__Alignas] = ACTIONS(8289), - [sym_primitive_type] = ACTIONS(8289), - [anon_sym_enum] = ACTIONS(8289), - [anon_sym_class] = ACTIONS(8289), - [anon_sym_struct] = ACTIONS(8289), - [anon_sym_union] = ACTIONS(8289), - [anon_sym_typename] = ACTIONS(8289), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8289), - [anon_sym_decltype] = ACTIONS(8289), - [anon_sym_explicit] = ACTIONS(8289), - [anon_sym_private] = ACTIONS(8289), - [anon_sym_template] = ACTIONS(8289), - [anon_sym_operator] = ACTIONS(8289), - [anon_sym_friend] = ACTIONS(8289), - [anon_sym_public] = ACTIONS(8289), - [anon_sym_protected] = ACTIONS(8289), - [anon_sym_static_assert] = ACTIONS(8289), - [anon_sym_LBRACK_COLON] = ACTIONS(8291), + [STATE(2494)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6601), + [anon_sym_COMMA] = ACTIONS(6601), + [anon_sym_RPAREN] = ACTIONS(6601), + [anon_sym_LPAREN2] = ACTIONS(6601), + [anon_sym_DASH] = ACTIONS(6594), + [anon_sym_PLUS] = ACTIONS(6594), + [anon_sym_STAR] = ACTIONS(6594), + [anon_sym_SLASH] = ACTIONS(6594), + [anon_sym_PERCENT] = ACTIONS(6594), + [anon_sym_PIPE_PIPE] = ACTIONS(6601), + [anon_sym_AMP_AMP] = ACTIONS(6601), + [anon_sym_PIPE] = ACTIONS(6594), + [anon_sym_CARET] = ACTIONS(6594), + [anon_sym_AMP] = ACTIONS(6594), + [anon_sym_EQ_EQ] = ACTIONS(6601), + [anon_sym_BANG_EQ] = ACTIONS(6601), + [anon_sym_GT] = ACTIONS(6594), + [anon_sym_GT_EQ] = ACTIONS(6601), + [anon_sym_LT_EQ] = ACTIONS(6594), + [anon_sym_LT] = ACTIONS(6594), + [anon_sym_LT_LT] = ACTIONS(6594), + [anon_sym_GT_GT] = ACTIONS(6594), + [anon_sym___extension__] = ACTIONS(6601), + [anon_sym___attribute__] = ACTIONS(6601), + [anon_sym___attribute] = ACTIONS(6594), + [anon_sym_COLON] = ACTIONS(6594), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_LBRACK] = ACTIONS(6601), + [anon_sym_EQ] = ACTIONS(6594), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6601), + [anon_sym_volatile] = ACTIONS(6601), + [anon_sym_restrict] = ACTIONS(6601), + [anon_sym___restrict__] = ACTIONS(6601), + [anon_sym__Atomic] = ACTIONS(6601), + [anon_sym__Noreturn] = ACTIONS(6601), + [anon_sym_noreturn] = ACTIONS(6601), + [anon_sym__Nonnull] = ACTIONS(6601), + [anon_sym_mutable] = ACTIONS(6601), + [anon_sym_constinit] = ACTIONS(6601), + [anon_sym_consteval] = ACTIONS(6601), + [anon_sym_alignas] = ACTIONS(6601), + [anon_sym__Alignas] = ACTIONS(6601), + [anon_sym_QMARK] = ACTIONS(6601), + [anon_sym_STAR_EQ] = ACTIONS(6601), + [anon_sym_SLASH_EQ] = ACTIONS(6601), + [anon_sym_PERCENT_EQ] = ACTIONS(6601), + [anon_sym_PLUS_EQ] = ACTIONS(6601), + [anon_sym_DASH_EQ] = ACTIONS(6601), + [anon_sym_LT_LT_EQ] = ACTIONS(6601), + [anon_sym_GT_GT_EQ] = ACTIONS(6601), + [anon_sym_AMP_EQ] = ACTIONS(6601), + [anon_sym_CARET_EQ] = ACTIONS(6601), + [anon_sym_PIPE_EQ] = ACTIONS(6601), + [anon_sym_and_eq] = ACTIONS(6601), + [anon_sym_or_eq] = ACTIONS(6601), + [anon_sym_xor_eq] = ACTIONS(6601), + [anon_sym_LT_EQ_GT] = ACTIONS(6601), + [anon_sym_or] = ACTIONS(6594), + [anon_sym_and] = ACTIONS(6594), + [anon_sym_bitor] = ACTIONS(6601), + [anon_sym_xor] = ACTIONS(6594), + [anon_sym_bitand] = ACTIONS(6601), + [anon_sym_not_eq] = ACTIONS(6601), + [anon_sym_DASH_DASH] = ACTIONS(6601), + [anon_sym_PLUS_PLUS] = ACTIONS(6601), + [anon_sym_DOT] = ACTIONS(6594), + [anon_sym_DOT_STAR] = ACTIONS(6601), + [anon_sym_DASH_GT] = ACTIONS(6594), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6601), + [anon_sym_decltype] = ACTIONS(6601), + [anon_sym_final] = ACTIONS(6601), + [anon_sym_override] = ACTIONS(6601), + [anon_sym_requires] = ACTIONS(6601), + [anon_sym_DASH_GT_STAR] = ACTIONS(6601), }, - [STATE(2633)] = { - [sym__declaration_modifiers] = STATE(5027), - [sym_attribute_specifier] = STATE(5027), - [sym_attribute_declaration] = STATE(5027), - [sym_ms_declspec_modifier] = STATE(5027), - [sym_storage_class_specifier] = STATE(5027), - [sym_type_qualifier] = STATE(5027), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(6305), - [sym_sized_type_specifier] = STATE(5975), - [sym_enum_specifier] = STATE(5975), - [sym_struct_specifier] = STATE(5975), - [sym_union_specifier] = STATE(5975), - [sym_placeholder_type_specifier] = STATE(5975), - [sym_decltype_auto] = STATE(6020), - [sym_decltype] = STATE(5891), - [sym_class_specifier] = STATE(5975), - [sym_dependent_type] = STATE(5975), - [sym_template_type] = STATE(5264), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8584), - [sym_qualified_type_identifier] = STATE(5495), - [sym_splice_specifier] = STATE(4691), - [sym__splice_specialization_specifier] = STATE(5263), - [sym_splice_type_specifier] = STATE(5891), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(5027), - [aux_sym_sized_type_specifier_repeat1] = STATE(4270), - [sym_identifier] = ACTIONS(4772), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(8293), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(4780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(4782), - [anon_sym_unsigned] = ACTIONS(4782), - [anon_sym_long] = ACTIONS(4782), - [anon_sym_short] = ACTIONS(4782), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(4784), - [anon_sym_enum] = ACTIONS(4786), - [anon_sym_class] = ACTIONS(4788), - [anon_sym_struct] = ACTIONS(4790), - [anon_sym_union] = ACTIONS(4792), - [anon_sym_typename] = ACTIONS(4794), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4796), - [anon_sym_decltype] = ACTIONS(4798), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), + [STATE(2495)] = { + [sym_identifier] = ACTIONS(6594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_RPAREN] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_TILDE] = ACTIONS(6601), + [anon_sym_DASH] = ACTIONS(6603), + [anon_sym_PLUS] = ACTIONS(6603), + [anon_sym_STAR] = ACTIONS(6598), + [anon_sym_SLASH] = ACTIONS(6603), + [anon_sym_PERCENT] = ACTIONS(6596), + [anon_sym_PIPE_PIPE] = ACTIONS(6596), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6603), + [anon_sym_CARET] = ACTIONS(6596), + [anon_sym_AMP] = ACTIONS(6605), + [anon_sym_EQ_EQ] = ACTIONS(6596), + [anon_sym_BANG_EQ] = ACTIONS(6596), + [anon_sym_GT] = ACTIONS(6603), + [anon_sym_GT_EQ] = ACTIONS(6596), + [anon_sym_LT_EQ] = ACTIONS(6603), + [anon_sym_LT] = ACTIONS(6603), + [anon_sym_LT_LT] = ACTIONS(6596), + [anon_sym_GT_GT] = ACTIONS(6596), + [anon_sym___extension__] = ACTIONS(6594), + [anon_sym_virtual] = ACTIONS(6594), + [anon_sym_extern] = ACTIONS(6594), + [anon_sym___attribute__] = ACTIONS(6594), + [anon_sym___attribute] = ACTIONS(6594), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6601), + [anon_sym___declspec] = ACTIONS(6594), + [anon_sym___based] = ACTIONS(6594), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_LBRACK] = ACTIONS(6605), + [anon_sym_static] = ACTIONS(6594), + [anon_sym_EQ] = ACTIONS(6594), + [anon_sym_register] = ACTIONS(6594), + [anon_sym_inline] = ACTIONS(6594), + [anon_sym___inline] = ACTIONS(6594), + [anon_sym___inline__] = ACTIONS(6594), + [anon_sym___forceinline] = ACTIONS(6594), + [anon_sym_thread_local] = ACTIONS(6594), + [anon_sym___thread] = ACTIONS(6594), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6594), + [anon_sym_volatile] = ACTIONS(6594), + [anon_sym_restrict] = ACTIONS(6594), + [anon_sym___restrict__] = ACTIONS(6594), + [anon_sym__Atomic] = ACTIONS(6594), + [anon_sym__Noreturn] = ACTIONS(6594), + [anon_sym_noreturn] = ACTIONS(6594), + [anon_sym__Nonnull] = ACTIONS(6594), + [anon_sym_mutable] = ACTIONS(6594), + [anon_sym_constinit] = ACTIONS(6594), + [anon_sym_consteval] = ACTIONS(6594), + [anon_sym_alignas] = ACTIONS(6594), + [anon_sym__Alignas] = ACTIONS(6594), + [anon_sym_QMARK] = ACTIONS(6596), + [anon_sym_LT_EQ_GT] = ACTIONS(6596), + [anon_sym_or] = ACTIONS(6603), + [anon_sym_and] = ACTIONS(6603), + [anon_sym_bitor] = ACTIONS(6603), + [anon_sym_xor] = ACTIONS(6603), + [anon_sym_bitand] = ACTIONS(6603), + [anon_sym_not_eq] = ACTIONS(6603), + [anon_sym_DASH_DASH] = ACTIONS(6596), + [anon_sym_PLUS_PLUS] = ACTIONS(6596), + [anon_sym_DOT] = ACTIONS(6603), + [anon_sym_DOT_STAR] = ACTIONS(6596), + [anon_sym_DASH_GT] = ACTIONS(6596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6594), + [anon_sym_decltype] = ACTIONS(6594), + [anon_sym_template] = ACTIONS(6594), + [anon_sym_operator] = ACTIONS(6594), + [anon_sym_LBRACK_COLON] = ACTIONS(6601), }, - [STATE(2634)] = { - [sym_type_qualifier] = STATE(2678), - [sym_alignas_qualifier] = STATE(2592), - [aux_sym__type_definition_type_repeat1] = STATE(2678), - [aux_sym_sized_type_specifier_repeat1] = STATE(3046), - [sym_identifier] = ACTIONS(8295), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), - [anon_sym_COMMA] = ACTIONS(6812), - [anon_sym_RPAREN] = ACTIONS(6812), - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_STAR] = ACTIONS(6812), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_PERCENT] = ACTIONS(6812), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_CARET] = ACTIONS(6812), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_LT_LT] = ACTIONS(6812), - [anon_sym_GT_GT] = ACTIONS(6812), - [anon_sym_SEMI] = ACTIONS(6812), - [anon_sym___extension__] = ACTIONS(8297), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym_COLON] = ACTIONS(6814), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6812), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_RBRACE] = ACTIONS(6812), - [anon_sym_signed] = ACTIONS(8300), - [anon_sym_unsigned] = ACTIONS(8300), - [anon_sym_long] = ACTIONS(8300), - [anon_sym_short] = ACTIONS(8300), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_const] = ACTIONS(8297), - [anon_sym_constexpr] = ACTIONS(8297), - [anon_sym_volatile] = ACTIONS(8297), - [anon_sym_restrict] = ACTIONS(8297), - [anon_sym___restrict__] = ACTIONS(8297), - [anon_sym__Atomic] = ACTIONS(8297), - [anon_sym__Noreturn] = ACTIONS(8297), - [anon_sym_noreturn] = ACTIONS(8297), - [anon_sym__Nonnull] = ACTIONS(8297), - [anon_sym_mutable] = ACTIONS(8297), - [anon_sym_constinit] = ACTIONS(8297), - [anon_sym_consteval] = ACTIONS(8297), - [anon_sym_alignas] = ACTIONS(8302), - [anon_sym__Alignas] = ACTIONS(8302), - [sym_primitive_type] = ACTIONS(8305), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_LT_EQ_GT] = ACTIONS(6812), - [anon_sym_or] = ACTIONS(6814), - [anon_sym_and] = ACTIONS(6814), - [anon_sym_bitor] = ACTIONS(6814), - [anon_sym_xor] = ACTIONS(6814), - [anon_sym_bitand] = ACTIONS(6814), - [anon_sym_not_eq] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6814), - [anon_sym_DOT_STAR] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6812), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6814), - [anon_sym_override] = ACTIONS(6814), - [anon_sym_requires] = ACTIONS(6814), - [anon_sym_COLON_RBRACK] = ACTIONS(6812), + [STATE(2496)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7134), + [anon_sym_COMMA] = ACTIONS(7134), + [anon_sym_LPAREN2] = ACTIONS(7134), + [anon_sym_DASH] = ACTIONS(7132), + [anon_sym_PLUS] = ACTIONS(7132), + [anon_sym_STAR] = ACTIONS(7132), + [anon_sym_SLASH] = ACTIONS(7132), + [anon_sym_PERCENT] = ACTIONS(7132), + [anon_sym_PIPE_PIPE] = ACTIONS(7134), + [anon_sym_AMP_AMP] = ACTIONS(7134), + [anon_sym_PIPE] = ACTIONS(7132), + [anon_sym_CARET] = ACTIONS(7132), + [anon_sym_AMP] = ACTIONS(7132), + [anon_sym_EQ_EQ] = ACTIONS(7134), + [anon_sym_BANG_EQ] = ACTIONS(7134), + [anon_sym_GT] = ACTIONS(7132), + [anon_sym_GT_EQ] = ACTIONS(7132), + [anon_sym_LT_EQ] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(7132), + [anon_sym_LT_LT] = ACTIONS(7132), + [anon_sym_GT_GT] = ACTIONS(7132), + [anon_sym___extension__] = ACTIONS(7134), + [anon_sym___attribute__] = ACTIONS(7134), + [anon_sym___attribute] = ACTIONS(7132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7134), + [anon_sym_LBRACK] = ACTIONS(7132), + [anon_sym_EQ] = ACTIONS(7132), + [anon_sym_const] = ACTIONS(7132), + [anon_sym_constexpr] = ACTIONS(7134), + [anon_sym_volatile] = ACTIONS(7134), + [anon_sym_restrict] = ACTIONS(7134), + [anon_sym___restrict__] = ACTIONS(7134), + [anon_sym__Atomic] = ACTIONS(7134), + [anon_sym__Noreturn] = ACTIONS(7134), + [anon_sym_noreturn] = ACTIONS(7134), + [anon_sym__Nonnull] = ACTIONS(7134), + [anon_sym_mutable] = ACTIONS(7134), + [anon_sym_constinit] = ACTIONS(7134), + [anon_sym_consteval] = ACTIONS(7134), + [anon_sym_alignas] = ACTIONS(7134), + [anon_sym__Alignas] = ACTIONS(7134), + [anon_sym_QMARK] = ACTIONS(7134), + [anon_sym_STAR_EQ] = ACTIONS(7134), + [anon_sym_SLASH_EQ] = ACTIONS(7134), + [anon_sym_PERCENT_EQ] = ACTIONS(7134), + [anon_sym_PLUS_EQ] = ACTIONS(7134), + [anon_sym_DASH_EQ] = ACTIONS(7134), + [anon_sym_LT_LT_EQ] = ACTIONS(7134), + [anon_sym_GT_GT_EQ] = ACTIONS(7132), + [anon_sym_AMP_EQ] = ACTIONS(7134), + [anon_sym_CARET_EQ] = ACTIONS(7134), + [anon_sym_PIPE_EQ] = ACTIONS(7134), + [anon_sym_and_eq] = ACTIONS(7134), + [anon_sym_or_eq] = ACTIONS(7134), + [anon_sym_xor_eq] = ACTIONS(7134), + [anon_sym_LT_EQ_GT] = ACTIONS(7134), + [anon_sym_or] = ACTIONS(7132), + [anon_sym_and] = ACTIONS(7132), + [anon_sym_bitor] = ACTIONS(7134), + [anon_sym_xor] = ACTIONS(7132), + [anon_sym_bitand] = ACTIONS(7134), + [anon_sym_not_eq] = ACTIONS(7134), + [anon_sym_DASH_DASH] = ACTIONS(7134), + [anon_sym_PLUS_PLUS] = ACTIONS(7134), + [anon_sym_asm] = ACTIONS(7134), + [anon_sym___asm__] = ACTIONS(7134), + [anon_sym___asm] = ACTIONS(7132), + [anon_sym_DOT] = ACTIONS(7132), + [anon_sym_DOT_STAR] = ACTIONS(7134), + [anon_sym_DASH_GT] = ACTIONS(7134), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7134), + [anon_sym_override] = ACTIONS(7134), + [anon_sym_GT2] = ACTIONS(7134), + [anon_sym_noexcept] = ACTIONS(7134), + [anon_sym_throw] = ACTIONS(7134), + [anon_sym_requires] = ACTIONS(7134), }, - [STATE(2635)] = { - [sym_ms_based_modifier] = STATE(10656), - [sym_ms_unaligned_ptr_modifier] = STATE(6570), - [sym_ms_pointer_modifier] = STATE(2721), - [sym__declarator] = STATE(8686), - [sym__abstract_declarator] = STATE(8911), - [sym_parenthesized_declarator] = STATE(8469), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_function_declarator] = STATE(8469), - [sym_abstract_function_declarator] = STATE(8389), - [sym_array_declarator] = STATE(8469), - [sym_abstract_array_declarator] = STATE(8389), - [sym_type_qualifier] = STATE(3699), - [sym_alignas_qualifier] = STATE(7436), - [sym_parameter_list] = STATE(5185), - [sym_decltype] = STATE(10976), - [sym_reference_declarator] = STATE(8469), - [sym_abstract_reference_declarator] = STATE(8389), - [sym_structured_binding_declarator] = STATE(8469), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7878), - [sym_qualified_identifier] = STATE(8469), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__type_definition_type_repeat1] = STATE(3699), - [aux_sym_pointer_declarator_repeat1] = STATE(2721), - [sym_identifier] = ACTIONS(8195), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(5301), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(8307), - [anon_sym_AMP_AMP] = ACTIONS(8309), - [anon_sym_AMP] = ACTIONS(8311), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(6457), - [anon_sym___attribute] = ACTIONS(6457), - [anon_sym_COLON_COLON] = ACTIONS(8203), + [STATE(2497)] = { + [sym__declaration_modifiers] = STATE(5072), + [sym_attribute_specifier] = STATE(5072), + [sym_attribute_declaration] = STATE(5072), + [sym_ms_declspec_modifier] = STATE(5072), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8784), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(5072), + [sym_type_qualifier] = STATE(5072), + [sym_alignas_qualifier] = STATE(4722), + [sym_decltype] = STATE(10768), + [sym_explicit_function_specifier] = STATE(5072), + [sym_operator_cast] = STATE(9165), + [sym__constructor_specifiers] = STATE(5072), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7901), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_operator_cast_identifier] = STATE(9165), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_operator_cast_definition_repeat1] = STATE(5072), + [sym_identifier] = ACTIONS(8228), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(8230), + [anon_sym_virtual] = ACTIONS(8232), + [anon_sym_extern] = ACTIONS(8234), + [anon_sym___attribute__] = ACTIONS(8236), + [anon_sym___attribute] = ACTIONS(8236), + [anon_sym_COLON_COLON] = ACTIONS(8238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8240), + [anon_sym___declspec] = ACTIONS(8242), [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(2933), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(2933), - [sym_ms_signed_ptr_modifier] = ACTIONS(2933), - [anon_sym__unaligned] = ACTIONS(2935), - [anon_sym___unaligned] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(5311), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym__Nonnull] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2939), - [anon_sym__Alignas] = ACTIONS(2939), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_GT2] = ACTIONS(6459), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), - }, - [STATE(2636)] = { - [sym_identifier] = ACTIONS(4096), - [aux_sym_preproc_def_token1] = ACTIONS(4096), - [aux_sym_preproc_if_token1] = ACTIONS(4096), - [aux_sym_preproc_if_token2] = ACTIONS(4096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), - [aux_sym_preproc_else_token1] = ACTIONS(4096), - [aux_sym_preproc_elif_token1] = ACTIONS(4096), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4096), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4096), - [sym_preproc_directive] = ACTIONS(4096), - [anon_sym_LPAREN2] = ACTIONS(4098), - [anon_sym_TILDE] = ACTIONS(4098), - [anon_sym_STAR] = ACTIONS(4098), - [anon_sym_AMP_AMP] = ACTIONS(4098), - [anon_sym_AMP] = ACTIONS(4096), - [anon_sym_SEMI] = ACTIONS(4098), - [anon_sym___extension__] = ACTIONS(4096), - [anon_sym_typedef] = ACTIONS(4096), - [anon_sym_virtual] = ACTIONS(4096), - [anon_sym_extern] = ACTIONS(4096), - [anon_sym___attribute__] = ACTIONS(4096), - [anon_sym___attribute] = ACTIONS(4096), - [anon_sym_using] = ACTIONS(4096), - [anon_sym_COLON_COLON] = ACTIONS(4098), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4098), - [anon_sym___declspec] = ACTIONS(4096), - [anon_sym___based] = ACTIONS(4096), - [anon_sym_signed] = ACTIONS(4096), - [anon_sym_unsigned] = ACTIONS(4096), - [anon_sym_long] = ACTIONS(4096), - [anon_sym_short] = ACTIONS(4096), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_static] = ACTIONS(4096), - [anon_sym_register] = ACTIONS(4096), - [anon_sym_inline] = ACTIONS(4096), - [anon_sym___inline] = ACTIONS(4096), - [anon_sym___inline__] = ACTIONS(4096), - [anon_sym___forceinline] = ACTIONS(4096), - [anon_sym_thread_local] = ACTIONS(4096), - [anon_sym___thread] = ACTIONS(4096), - [anon_sym_const] = ACTIONS(4096), - [anon_sym_constexpr] = ACTIONS(4096), - [anon_sym_volatile] = ACTIONS(4096), - [anon_sym_restrict] = ACTIONS(4096), - [anon_sym___restrict__] = ACTIONS(4096), - [anon_sym__Atomic] = ACTIONS(4096), - [anon_sym__Noreturn] = ACTIONS(4096), - [anon_sym_noreturn] = ACTIONS(4096), - [anon_sym__Nonnull] = ACTIONS(4096), - [anon_sym_mutable] = ACTIONS(4096), - [anon_sym_constinit] = ACTIONS(4096), - [anon_sym_consteval] = ACTIONS(4096), - [anon_sym_alignas] = ACTIONS(4096), - [anon_sym__Alignas] = ACTIONS(4096), - [sym_primitive_type] = ACTIONS(4096), - [anon_sym_enum] = ACTIONS(4096), - [anon_sym_class] = ACTIONS(4096), - [anon_sym_struct] = ACTIONS(4096), - [anon_sym_union] = ACTIONS(4096), - [anon_sym_typename] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(8234), + [anon_sym_register] = ACTIONS(8234), + [anon_sym_inline] = ACTIONS(8234), + [anon_sym___inline] = ACTIONS(8234), + [anon_sym___inline__] = ACTIONS(8234), + [anon_sym___forceinline] = ACTIONS(8234), + [anon_sym_thread_local] = ACTIONS(8234), + [anon_sym___thread] = ACTIONS(8234), + [anon_sym_const] = ACTIONS(8230), + [anon_sym_constexpr] = ACTIONS(8230), + [anon_sym_volatile] = ACTIONS(8230), + [anon_sym_restrict] = ACTIONS(8230), + [anon_sym___restrict__] = ACTIONS(8230), + [anon_sym__Atomic] = ACTIONS(8230), + [anon_sym__Noreturn] = ACTIONS(8230), + [anon_sym_noreturn] = ACTIONS(8230), + [anon_sym__Nonnull] = ACTIONS(8230), + [anon_sym_mutable] = ACTIONS(8230), + [anon_sym_constinit] = ACTIONS(8230), + [anon_sym_consteval] = ACTIONS(8230), + [anon_sym_alignas] = ACTIONS(8244), + [anon_sym__Alignas] = ACTIONS(8244), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4096), - [anon_sym_decltype] = ACTIONS(4096), - [anon_sym_explicit] = ACTIONS(4096), - [anon_sym_private] = ACTIONS(4096), - [anon_sym_template] = ACTIONS(4096), - [anon_sym_operator] = ACTIONS(4096), - [anon_sym_friend] = ACTIONS(4096), - [anon_sym_public] = ACTIONS(4096), - [anon_sym_protected] = ACTIONS(4096), - [anon_sym_static_assert] = ACTIONS(4096), - [anon_sym_LBRACK_COLON] = ACTIONS(4098), - }, - [STATE(2637)] = { - [sym_identifier] = ACTIONS(8313), - [aux_sym_preproc_def_token1] = ACTIONS(8313), - [aux_sym_preproc_if_token1] = ACTIONS(8313), - [aux_sym_preproc_if_token2] = ACTIONS(8313), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8313), - [aux_sym_preproc_else_token1] = ACTIONS(8313), - [aux_sym_preproc_elif_token1] = ACTIONS(8313), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8313), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8313), - [sym_preproc_directive] = ACTIONS(8313), - [anon_sym_LPAREN2] = ACTIONS(8315), - [anon_sym_TILDE] = ACTIONS(8315), - [anon_sym_STAR] = ACTIONS(8315), - [anon_sym_AMP_AMP] = ACTIONS(8315), - [anon_sym_AMP] = ACTIONS(8313), - [anon_sym_SEMI] = ACTIONS(8315), - [anon_sym___extension__] = ACTIONS(8313), - [anon_sym_typedef] = ACTIONS(8313), - [anon_sym_virtual] = ACTIONS(8313), - [anon_sym_extern] = ACTIONS(8313), - [anon_sym___attribute__] = ACTIONS(8313), - [anon_sym___attribute] = ACTIONS(8313), - [anon_sym_using] = ACTIONS(8313), - [anon_sym_COLON_COLON] = ACTIONS(8315), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8315), - [anon_sym___declspec] = ACTIONS(8313), - [anon_sym___based] = ACTIONS(8313), - [anon_sym_signed] = ACTIONS(8313), - [anon_sym_unsigned] = ACTIONS(8313), - [anon_sym_long] = ACTIONS(8313), - [anon_sym_short] = ACTIONS(8313), - [anon_sym_LBRACK] = ACTIONS(8313), - [anon_sym_static] = ACTIONS(8313), - [anon_sym_register] = ACTIONS(8313), - [anon_sym_inline] = ACTIONS(8313), - [anon_sym___inline] = ACTIONS(8313), - [anon_sym___inline__] = ACTIONS(8313), - [anon_sym___forceinline] = ACTIONS(8313), - [anon_sym_thread_local] = ACTIONS(8313), - [anon_sym___thread] = ACTIONS(8313), - [anon_sym_const] = ACTIONS(8313), - [anon_sym_constexpr] = ACTIONS(8313), - [anon_sym_volatile] = ACTIONS(8313), - [anon_sym_restrict] = ACTIONS(8313), - [anon_sym___restrict__] = ACTIONS(8313), - [anon_sym__Atomic] = ACTIONS(8313), - [anon_sym__Noreturn] = ACTIONS(8313), - [anon_sym_noreturn] = ACTIONS(8313), - [anon_sym__Nonnull] = ACTIONS(8313), - [anon_sym_mutable] = ACTIONS(8313), - [anon_sym_constinit] = ACTIONS(8313), - [anon_sym_consteval] = ACTIONS(8313), - [anon_sym_alignas] = ACTIONS(8313), - [anon_sym__Alignas] = ACTIONS(8313), - [sym_primitive_type] = ACTIONS(8313), - [anon_sym_enum] = ACTIONS(8313), - [anon_sym_class] = ACTIONS(8313), - [anon_sym_struct] = ACTIONS(8313), - [anon_sym_union] = ACTIONS(8313), - [anon_sym_typename] = ACTIONS(8313), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8313), - [anon_sym_decltype] = ACTIONS(8313), - [anon_sym_explicit] = ACTIONS(8313), - [anon_sym_private] = ACTIONS(8313), - [anon_sym_template] = ACTIONS(8313), - [anon_sym_operator] = ACTIONS(8313), - [anon_sym_friend] = ACTIONS(8313), - [anon_sym_public] = ACTIONS(8313), - [anon_sym_protected] = ACTIONS(8313), - [anon_sym_static_assert] = ACTIONS(8313), - [anon_sym_LBRACK_COLON] = ACTIONS(8315), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), }, - [STATE(2638)] = { - [sym_identifier] = ACTIONS(4100), - [aux_sym_preproc_def_token1] = ACTIONS(4100), - [aux_sym_preproc_if_token1] = ACTIONS(4100), - [aux_sym_preproc_if_token2] = ACTIONS(4100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), - [aux_sym_preproc_else_token1] = ACTIONS(4100), - [aux_sym_preproc_elif_token1] = ACTIONS(4100), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4100), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4100), - [sym_preproc_directive] = ACTIONS(4100), - [anon_sym_LPAREN2] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_STAR] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4102), - [anon_sym_AMP] = ACTIONS(4100), - [anon_sym_SEMI] = ACTIONS(4102), - [anon_sym___extension__] = ACTIONS(4100), - [anon_sym_typedef] = ACTIONS(4100), - [anon_sym_virtual] = ACTIONS(4100), - [anon_sym_extern] = ACTIONS(4100), - [anon_sym___attribute__] = ACTIONS(4100), - [anon_sym___attribute] = ACTIONS(4100), - [anon_sym_using] = ACTIONS(4100), - [anon_sym_COLON_COLON] = ACTIONS(4102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4102), - [anon_sym___declspec] = ACTIONS(4100), - [anon_sym___based] = ACTIONS(4100), - [anon_sym_signed] = ACTIONS(4100), - [anon_sym_unsigned] = ACTIONS(4100), - [anon_sym_long] = ACTIONS(4100), - [anon_sym_short] = ACTIONS(4100), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_static] = ACTIONS(4100), - [anon_sym_register] = ACTIONS(4100), - [anon_sym_inline] = ACTIONS(4100), - [anon_sym___inline] = ACTIONS(4100), - [anon_sym___inline__] = ACTIONS(4100), - [anon_sym___forceinline] = ACTIONS(4100), - [anon_sym_thread_local] = ACTIONS(4100), - [anon_sym___thread] = ACTIONS(4100), - [anon_sym_const] = ACTIONS(4100), - [anon_sym_constexpr] = ACTIONS(4100), - [anon_sym_volatile] = ACTIONS(4100), - [anon_sym_restrict] = ACTIONS(4100), - [anon_sym___restrict__] = ACTIONS(4100), - [anon_sym__Atomic] = ACTIONS(4100), - [anon_sym__Noreturn] = ACTIONS(4100), - [anon_sym_noreturn] = ACTIONS(4100), - [anon_sym__Nonnull] = ACTIONS(4100), - [anon_sym_mutable] = ACTIONS(4100), - [anon_sym_constinit] = ACTIONS(4100), - [anon_sym_consteval] = ACTIONS(4100), - [anon_sym_alignas] = ACTIONS(4100), - [anon_sym__Alignas] = ACTIONS(4100), - [sym_primitive_type] = ACTIONS(4100), - [anon_sym_enum] = ACTIONS(4100), - [anon_sym_class] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(4100), - [anon_sym_union] = ACTIONS(4100), - [anon_sym_typename] = ACTIONS(4100), + [STATE(2498)] = { + [sym__declaration_modifiers] = STATE(5072), + [sym_attribute_specifier] = STATE(5072), + [sym_attribute_declaration] = STATE(5072), + [sym_ms_declspec_modifier] = STATE(5072), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8673), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(5072), + [sym_type_qualifier] = STATE(5072), + [sym_alignas_qualifier] = STATE(4722), + [sym_decltype] = STATE(10768), + [sym_explicit_function_specifier] = STATE(5072), + [sym_operator_cast] = STATE(9243), + [sym__constructor_specifiers] = STATE(5072), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7901), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_operator_cast_identifier] = STATE(9243), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_operator_cast_definition_repeat1] = STATE(5072), + [sym_identifier] = ACTIONS(8228), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(8230), + [anon_sym_virtual] = ACTIONS(8232), + [anon_sym_extern] = ACTIONS(8234), + [anon_sym___attribute__] = ACTIONS(8236), + [anon_sym___attribute] = ACTIONS(8236), + [anon_sym_COLON_COLON] = ACTIONS(8238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8240), + [anon_sym___declspec] = ACTIONS(8242), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(8234), + [anon_sym_register] = ACTIONS(8234), + [anon_sym_inline] = ACTIONS(8234), + [anon_sym___inline] = ACTIONS(8234), + [anon_sym___inline__] = ACTIONS(8234), + [anon_sym___forceinline] = ACTIONS(8234), + [anon_sym_thread_local] = ACTIONS(8234), + [anon_sym___thread] = ACTIONS(8234), + [anon_sym_const] = ACTIONS(8230), + [anon_sym_constexpr] = ACTIONS(8230), + [anon_sym_volatile] = ACTIONS(8230), + [anon_sym_restrict] = ACTIONS(8230), + [anon_sym___restrict__] = ACTIONS(8230), + [anon_sym__Atomic] = ACTIONS(8230), + [anon_sym__Noreturn] = ACTIONS(8230), + [anon_sym_noreturn] = ACTIONS(8230), + [anon_sym__Nonnull] = ACTIONS(8230), + [anon_sym_mutable] = ACTIONS(8230), + [anon_sym_constinit] = ACTIONS(8230), + [anon_sym_consteval] = ACTIONS(8230), + [anon_sym_alignas] = ACTIONS(8244), + [anon_sym__Alignas] = ACTIONS(8244), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4100), - [anon_sym_decltype] = ACTIONS(4100), - [anon_sym_explicit] = ACTIONS(4100), - [anon_sym_private] = ACTIONS(4100), - [anon_sym_template] = ACTIONS(4100), - [anon_sym_operator] = ACTIONS(4100), - [anon_sym_friend] = ACTIONS(4100), - [anon_sym_public] = ACTIONS(4100), - [anon_sym_protected] = ACTIONS(4100), - [anon_sym_static_assert] = ACTIONS(4100), - [anon_sym_LBRACK_COLON] = ACTIONS(4102), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), }, - [STATE(2639)] = { - [sym_identifier] = ACTIONS(6270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6272), - [anon_sym_COMMA] = ACTIONS(6272), - [anon_sym_RPAREN] = ACTIONS(6272), - [anon_sym_LPAREN2] = ACTIONS(6272), - [anon_sym_DASH] = ACTIONS(6270), - [anon_sym_PLUS] = ACTIONS(6270), - [anon_sym_STAR] = ACTIONS(6272), - [anon_sym_SLASH] = ACTIONS(6270), - [anon_sym_PERCENT] = ACTIONS(6272), - [anon_sym_PIPE_PIPE] = ACTIONS(6272), - [anon_sym_AMP_AMP] = ACTIONS(6272), - [anon_sym_PIPE] = ACTIONS(6270), - [anon_sym_CARET] = ACTIONS(6272), - [anon_sym_AMP] = ACTIONS(6270), - [anon_sym_EQ_EQ] = ACTIONS(6272), - [anon_sym_BANG_EQ] = ACTIONS(6272), - [anon_sym_GT] = ACTIONS(6270), - [anon_sym_GT_EQ] = ACTIONS(6272), - [anon_sym_LT_EQ] = ACTIONS(6270), - [anon_sym_LT] = ACTIONS(6270), - [anon_sym_LT_LT] = ACTIONS(6272), - [anon_sym_GT_GT] = ACTIONS(6272), - [anon_sym_SEMI] = ACTIONS(6272), - [anon_sym___extension__] = ACTIONS(6270), - [anon_sym___attribute__] = ACTIONS(6270), - [anon_sym___attribute] = ACTIONS(6270), - [anon_sym_COLON] = ACTIONS(6270), - [anon_sym_COLON_COLON] = ACTIONS(6272), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6272), - [anon_sym___based] = ACTIONS(6270), - [anon_sym_LBRACE] = ACTIONS(6272), - [anon_sym_RBRACE] = ACTIONS(6272), - [anon_sym_signed] = ACTIONS(6270), - [anon_sym_unsigned] = ACTIONS(6270), - [anon_sym_long] = ACTIONS(6270), - [anon_sym_short] = ACTIONS(6270), - [anon_sym_LBRACK] = ACTIONS(6272), - [anon_sym_const] = ACTIONS(6270), - [anon_sym_constexpr] = ACTIONS(6270), - [anon_sym_volatile] = ACTIONS(6270), - [anon_sym_restrict] = ACTIONS(6270), - [anon_sym___restrict__] = ACTIONS(6270), - [anon_sym__Atomic] = ACTIONS(6270), - [anon_sym__Noreturn] = ACTIONS(6270), - [anon_sym_noreturn] = ACTIONS(6270), - [anon_sym__Nonnull] = ACTIONS(6270), - [anon_sym_mutable] = ACTIONS(6270), - [anon_sym_constinit] = ACTIONS(6270), - [anon_sym_consteval] = ACTIONS(6270), - [anon_sym_alignas] = ACTIONS(6270), - [anon_sym__Alignas] = ACTIONS(6270), - [sym_primitive_type] = ACTIONS(6270), - [anon_sym_QMARK] = ACTIONS(6272), - [anon_sym_LT_EQ_GT] = ACTIONS(6272), - [anon_sym_or] = ACTIONS(6270), - [anon_sym_and] = ACTIONS(6270), - [anon_sym_bitor] = ACTIONS(6270), - [anon_sym_xor] = ACTIONS(6270), - [anon_sym_bitand] = ACTIONS(6270), - [anon_sym_not_eq] = ACTIONS(6270), - [anon_sym_DASH_DASH] = ACTIONS(6272), - [anon_sym_PLUS_PLUS] = ACTIONS(6272), - [anon_sym_DOT] = ACTIONS(6270), - [anon_sym_DOT_STAR] = ACTIONS(6272), - [anon_sym_DASH_GT] = ACTIONS(6272), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6270), - [anon_sym_decltype] = ACTIONS(6270), - [anon_sym_final] = ACTIONS(6270), - [anon_sym_override] = ACTIONS(6270), - [anon_sym_requires] = ACTIONS(6270), - [anon_sym_COLON_RBRACK] = ACTIONS(6272), + [STATE(2499)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2499), + [sym_identifier] = ACTIONS(6999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7001), + [anon_sym_COMMA] = ACTIONS(7001), + [anon_sym_RPAREN] = ACTIONS(7001), + [anon_sym_LPAREN2] = ACTIONS(7001), + [anon_sym_DASH] = ACTIONS(6999), + [anon_sym_PLUS] = ACTIONS(6999), + [anon_sym_STAR] = ACTIONS(6999), + [anon_sym_SLASH] = ACTIONS(6999), + [anon_sym_PERCENT] = ACTIONS(6999), + [anon_sym_PIPE_PIPE] = ACTIONS(7001), + [anon_sym_AMP_AMP] = ACTIONS(7001), + [anon_sym_PIPE] = ACTIONS(6999), + [anon_sym_CARET] = ACTIONS(6999), + [anon_sym_AMP] = ACTIONS(6999), + [anon_sym_EQ_EQ] = ACTIONS(7001), + [anon_sym_BANG_EQ] = ACTIONS(7001), + [anon_sym_GT] = ACTIONS(6999), + [anon_sym_GT_EQ] = ACTIONS(7001), + [anon_sym_LT_EQ] = ACTIONS(6999), + [anon_sym_LT] = ACTIONS(6999), + [anon_sym_LT_LT] = ACTIONS(6999), + [anon_sym_GT_GT] = ACTIONS(6999), + [anon_sym___extension__] = ACTIONS(6999), + [anon_sym___attribute__] = ACTIONS(6999), + [anon_sym___attribute] = ACTIONS(6999), + [anon_sym_LBRACE] = ACTIONS(7001), + [anon_sym_signed] = ACTIONS(8309), + [anon_sym_unsigned] = ACTIONS(8309), + [anon_sym_long] = ACTIONS(8309), + [anon_sym_short] = ACTIONS(8309), + [anon_sym_LBRACK] = ACTIONS(7001), + [anon_sym_EQ] = ACTIONS(6999), + [anon_sym_const] = ACTIONS(6999), + [anon_sym_constexpr] = ACTIONS(6999), + [anon_sym_volatile] = ACTIONS(6999), + [anon_sym_restrict] = ACTIONS(6999), + [anon_sym___restrict__] = ACTIONS(6999), + [anon_sym__Atomic] = ACTIONS(6999), + [anon_sym__Noreturn] = ACTIONS(6999), + [anon_sym_noreturn] = ACTIONS(6999), + [anon_sym__Nonnull] = ACTIONS(6999), + [anon_sym_mutable] = ACTIONS(6999), + [anon_sym_constinit] = ACTIONS(6999), + [anon_sym_consteval] = ACTIONS(6999), + [anon_sym_alignas] = ACTIONS(6999), + [anon_sym__Alignas] = ACTIONS(6999), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7001), + [anon_sym_STAR_EQ] = ACTIONS(7001), + [anon_sym_SLASH_EQ] = ACTIONS(7001), + [anon_sym_PERCENT_EQ] = ACTIONS(7001), + [anon_sym_PLUS_EQ] = ACTIONS(7001), + [anon_sym_DASH_EQ] = ACTIONS(7001), + [anon_sym_LT_LT_EQ] = ACTIONS(7001), + [anon_sym_GT_GT_EQ] = ACTIONS(7001), + [anon_sym_AMP_EQ] = ACTIONS(7001), + [anon_sym_CARET_EQ] = ACTIONS(7001), + [anon_sym_PIPE_EQ] = ACTIONS(7001), + [anon_sym_LT_EQ_GT] = ACTIONS(7001), + [anon_sym_or] = ACTIONS(6999), + [anon_sym_and] = ACTIONS(6999), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(6999), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(7001), + [anon_sym_PLUS_PLUS] = ACTIONS(7001), + [anon_sym_DOT] = ACTIONS(6999), + [anon_sym_DOT_STAR] = ACTIONS(7001), + [anon_sym_DASH_GT] = ACTIONS(6999), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6999), + [anon_sym_override] = ACTIONS(6999), + [anon_sym_requires] = ACTIONS(6999), + [anon_sym_DASH_GT_STAR] = ACTIONS(7001), }, - [STATE(2640)] = { - [sym_identifier] = ACTIONS(8317), - [aux_sym_preproc_def_token1] = ACTIONS(8317), - [aux_sym_preproc_if_token1] = ACTIONS(8317), - [aux_sym_preproc_if_token2] = ACTIONS(8317), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8317), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8317), - [aux_sym_preproc_else_token1] = ACTIONS(8317), - [aux_sym_preproc_elif_token1] = ACTIONS(8317), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8317), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8317), - [sym_preproc_directive] = ACTIONS(8317), - [anon_sym_LPAREN2] = ACTIONS(8319), - [anon_sym_TILDE] = ACTIONS(8319), - [anon_sym_STAR] = ACTIONS(8319), - [anon_sym_AMP_AMP] = ACTIONS(8319), - [anon_sym_AMP] = ACTIONS(8317), - [anon_sym_SEMI] = ACTIONS(8319), - [anon_sym___extension__] = ACTIONS(8317), - [anon_sym_typedef] = ACTIONS(8317), - [anon_sym_virtual] = ACTIONS(8317), - [anon_sym_extern] = ACTIONS(8317), - [anon_sym___attribute__] = ACTIONS(8317), - [anon_sym___attribute] = ACTIONS(8317), - [anon_sym_using] = ACTIONS(8317), - [anon_sym_COLON_COLON] = ACTIONS(8319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8319), - [anon_sym___declspec] = ACTIONS(8317), - [anon_sym___based] = ACTIONS(8317), - [anon_sym_signed] = ACTIONS(8317), - [anon_sym_unsigned] = ACTIONS(8317), - [anon_sym_long] = ACTIONS(8317), - [anon_sym_short] = ACTIONS(8317), - [anon_sym_LBRACK] = ACTIONS(8317), - [anon_sym_static] = ACTIONS(8317), - [anon_sym_register] = ACTIONS(8317), - [anon_sym_inline] = ACTIONS(8317), - [anon_sym___inline] = ACTIONS(8317), - [anon_sym___inline__] = ACTIONS(8317), - [anon_sym___forceinline] = ACTIONS(8317), - [anon_sym_thread_local] = ACTIONS(8317), - [anon_sym___thread] = ACTIONS(8317), - [anon_sym_const] = ACTIONS(8317), - [anon_sym_constexpr] = ACTIONS(8317), - [anon_sym_volatile] = ACTIONS(8317), - [anon_sym_restrict] = ACTIONS(8317), - [anon_sym___restrict__] = ACTIONS(8317), - [anon_sym__Atomic] = ACTIONS(8317), - [anon_sym__Noreturn] = ACTIONS(8317), - [anon_sym_noreturn] = ACTIONS(8317), - [anon_sym__Nonnull] = ACTIONS(8317), - [anon_sym_mutable] = ACTIONS(8317), - [anon_sym_constinit] = ACTIONS(8317), - [anon_sym_consteval] = ACTIONS(8317), - [anon_sym_alignas] = ACTIONS(8317), - [anon_sym__Alignas] = ACTIONS(8317), - [sym_primitive_type] = ACTIONS(8317), - [anon_sym_enum] = ACTIONS(8317), - [anon_sym_class] = ACTIONS(8317), - [anon_sym_struct] = ACTIONS(8317), - [anon_sym_union] = ACTIONS(8317), - [anon_sym_typename] = ACTIONS(8317), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8317), - [anon_sym_decltype] = ACTIONS(8317), - [anon_sym_explicit] = ACTIONS(8317), - [anon_sym_private] = ACTIONS(8317), - [anon_sym_template] = ACTIONS(8317), - [anon_sym_operator] = ACTIONS(8317), - [anon_sym_friend] = ACTIONS(8317), - [anon_sym_public] = ACTIONS(8317), - [anon_sym_protected] = ACTIONS(8317), - [anon_sym_static_assert] = ACTIONS(8317), - [anon_sym_LBRACK_COLON] = ACTIONS(8319), + [STATE(2500)] = { + [sym_type_qualifier] = STATE(2500), + [sym_alignas_qualifier] = STATE(2727), + [aux_sym__type_definition_type_repeat1] = STATE(2500), + [sym_identifier] = ACTIONS(6889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), + [anon_sym_COMMA] = ACTIONS(6891), + [anon_sym_RPAREN] = ACTIONS(6891), + [aux_sym_preproc_if_token2] = ACTIONS(6891), + [aux_sym_preproc_else_token1] = ACTIONS(6891), + [aux_sym_preproc_elif_token1] = ACTIONS(6889), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6891), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6891), + [anon_sym_LPAREN2] = ACTIONS(6891), + [anon_sym_DASH] = ACTIONS(6889), + [anon_sym_PLUS] = ACTIONS(6889), + [anon_sym_STAR] = ACTIONS(6891), + [anon_sym_SLASH] = ACTIONS(6889), + [anon_sym_PERCENT] = ACTIONS(6891), + [anon_sym_PIPE_PIPE] = ACTIONS(6891), + [anon_sym_AMP_AMP] = ACTIONS(6891), + [anon_sym_PIPE] = ACTIONS(6889), + [anon_sym_CARET] = ACTIONS(6891), + [anon_sym_AMP] = ACTIONS(6889), + [anon_sym_EQ_EQ] = ACTIONS(6891), + [anon_sym_BANG_EQ] = ACTIONS(6891), + [anon_sym_GT] = ACTIONS(6889), + [anon_sym_GT_EQ] = ACTIONS(6891), + [anon_sym_LT_EQ] = ACTIONS(6889), + [anon_sym_LT] = ACTIONS(6889), + [anon_sym_LT_LT] = ACTIONS(6891), + [anon_sym_GT_GT] = ACTIONS(6891), + [anon_sym_SEMI] = ACTIONS(6891), + [anon_sym___extension__] = ACTIONS(8369), + [anon_sym___attribute__] = ACTIONS(6889), + [anon_sym___attribute] = ACTIONS(6889), + [anon_sym_COLON] = ACTIONS(6889), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6891), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6891), + [anon_sym_RBRACE] = ACTIONS(6891), + [anon_sym_LBRACK] = ACTIONS(6889), + [anon_sym_const] = ACTIONS(8369), + [anon_sym_constexpr] = ACTIONS(8369), + [anon_sym_volatile] = ACTIONS(8369), + [anon_sym_restrict] = ACTIONS(8369), + [anon_sym___restrict__] = ACTIONS(8369), + [anon_sym__Atomic] = ACTIONS(8369), + [anon_sym__Noreturn] = ACTIONS(8369), + [anon_sym_noreturn] = ACTIONS(8369), + [anon_sym__Nonnull] = ACTIONS(8369), + [anon_sym_mutable] = ACTIONS(8369), + [anon_sym_constinit] = ACTIONS(8369), + [anon_sym_consteval] = ACTIONS(8369), + [anon_sym_alignas] = ACTIONS(8372), + [anon_sym__Alignas] = ACTIONS(8372), + [anon_sym_QMARK] = ACTIONS(6891), + [anon_sym_LT_EQ_GT] = ACTIONS(6891), + [anon_sym_or] = ACTIONS(6889), + [anon_sym_and] = ACTIONS(6889), + [anon_sym_bitor] = ACTIONS(6889), + [anon_sym_xor] = ACTIONS(6889), + [anon_sym_bitand] = ACTIONS(6889), + [anon_sym_not_eq] = ACTIONS(6889), + [anon_sym_DASH_DASH] = ACTIONS(6891), + [anon_sym_PLUS_PLUS] = ACTIONS(6891), + [anon_sym_asm] = ACTIONS(6889), + [anon_sym___asm__] = ACTIONS(6889), + [anon_sym___asm] = ACTIONS(6889), + [anon_sym_DOT] = ACTIONS(6889), + [anon_sym_DOT_STAR] = ACTIONS(6891), + [anon_sym_DASH_GT] = ACTIONS(6891), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6889), + [anon_sym_override] = ACTIONS(6889), + [anon_sym_noexcept] = ACTIONS(6889), + [anon_sym_throw] = ACTIONS(6889), + [anon_sym_requires] = ACTIONS(6889), + [anon_sym_COLON_RBRACK] = ACTIONS(6891), }, - [STATE(2641)] = { - [sym_decltype_auto] = STATE(3011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_RBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8266), - [anon_sym_decltype] = ACTIONS(6680), - [anon_sym_final] = ACTIONS(6800), - [anon_sym_override] = ACTIONS(6800), - [anon_sym_requires] = ACTIONS(6800), + [STATE(2501)] = { + [sym__abstract_declarator] = STATE(5356), + [sym_abstract_parenthesized_declarator] = STATE(5090), + [sym_abstract_pointer_declarator] = STATE(5090), + [sym_abstract_function_declarator] = STATE(5090), + [sym_abstract_array_declarator] = STATE(5090), + [sym_type_qualifier] = STATE(2523), + [sym_alignas_qualifier] = STATE(2423), + [sym_parameter_list] = STATE(1975), + [sym_abstract_reference_declarator] = STATE(5090), + [sym__function_declarator_seq] = STATE(5091), + [aux_sym__type_definition_type_repeat1] = STATE(2523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), + [anon_sym_COMMA] = ACTIONS(7391), + [anon_sym_LPAREN2] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(7393), + [anon_sym_PLUS] = ACTIONS(7393), + [anon_sym_STAR] = ACTIONS(7375), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_PERCENT] = ACTIONS(7393), + [anon_sym_PIPE_PIPE] = ACTIONS(7391), + [anon_sym_AMP_AMP] = ACTIONS(7377), + [anon_sym_PIPE] = ACTIONS(7393), + [anon_sym_CARET] = ACTIONS(7393), + [anon_sym_AMP] = ACTIONS(7379), + [anon_sym_EQ_EQ] = ACTIONS(7391), + [anon_sym_BANG_EQ] = ACTIONS(7391), + [anon_sym_GT] = ACTIONS(7393), + [anon_sym_GT_EQ] = ACTIONS(7393), + [anon_sym_LT_EQ] = ACTIONS(7393), + [anon_sym_LT] = ACTIONS(7393), + [anon_sym_LT_LT] = ACTIONS(7393), + [anon_sym_GT_GT] = ACTIONS(7393), + [anon_sym___extension__] = ACTIONS(7144), + [anon_sym_LBRACK] = ACTIONS(7152), + [anon_sym_EQ] = ACTIONS(7393), + [anon_sym_const] = ACTIONS(7154), + [anon_sym_constexpr] = ACTIONS(7144), + [anon_sym_volatile] = ACTIONS(7144), + [anon_sym_restrict] = ACTIONS(7144), + [anon_sym___restrict__] = ACTIONS(7144), + [anon_sym__Atomic] = ACTIONS(7144), + [anon_sym__Noreturn] = ACTIONS(7144), + [anon_sym_noreturn] = ACTIONS(7144), + [anon_sym__Nonnull] = ACTIONS(7144), + [anon_sym_mutable] = ACTIONS(7144), + [anon_sym_constinit] = ACTIONS(7144), + [anon_sym_consteval] = ACTIONS(7144), + [anon_sym_alignas] = ACTIONS(7156), + [anon_sym__Alignas] = ACTIONS(7156), + [anon_sym_QMARK] = ACTIONS(7391), + [anon_sym_STAR_EQ] = ACTIONS(7391), + [anon_sym_SLASH_EQ] = ACTIONS(7391), + [anon_sym_PERCENT_EQ] = ACTIONS(7391), + [anon_sym_PLUS_EQ] = ACTIONS(7391), + [anon_sym_DASH_EQ] = ACTIONS(7391), + [anon_sym_LT_LT_EQ] = ACTIONS(7391), + [anon_sym_GT_GT_EQ] = ACTIONS(7393), + [anon_sym_AMP_EQ] = ACTIONS(7391), + [anon_sym_CARET_EQ] = ACTIONS(7391), + [anon_sym_PIPE_EQ] = ACTIONS(7391), + [anon_sym_and_eq] = ACTIONS(7391), + [anon_sym_or_eq] = ACTIONS(7391), + [anon_sym_xor_eq] = ACTIONS(7391), + [anon_sym_LT_EQ_GT] = ACTIONS(7391), + [anon_sym_or] = ACTIONS(7393), + [anon_sym_and] = ACTIONS(7393), + [anon_sym_bitor] = ACTIONS(7391), + [anon_sym_xor] = ACTIONS(7393), + [anon_sym_bitand] = ACTIONS(7391), + [anon_sym_not_eq] = ACTIONS(7391), + [anon_sym_DASH_DASH] = ACTIONS(7391), + [anon_sym_PLUS_PLUS] = ACTIONS(7391), + [anon_sym_DOT] = ACTIONS(7393), + [anon_sym_DOT_STAR] = ACTIONS(7391), + [anon_sym_DASH_GT] = ACTIONS(7391), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7391), }, - [STATE(2642)] = { - [sym_attribute_specifier] = STATE(3089), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7089), - [anon_sym_COMMA] = ACTIONS(7089), - [anon_sym_LPAREN2] = ACTIONS(7089), - [anon_sym_DASH] = ACTIONS(7087), - [anon_sym_PLUS] = ACTIONS(7087), - [anon_sym_STAR] = ACTIONS(7087), - [anon_sym_SLASH] = ACTIONS(7087), - [anon_sym_PERCENT] = ACTIONS(7087), - [anon_sym_PIPE_PIPE] = ACTIONS(7089), - [anon_sym_AMP_AMP] = ACTIONS(7089), - [anon_sym_PIPE] = ACTIONS(7087), - [anon_sym_CARET] = ACTIONS(7087), - [anon_sym_AMP] = ACTIONS(7087), - [anon_sym_EQ_EQ] = ACTIONS(7089), - [anon_sym_BANG_EQ] = ACTIONS(7089), - [anon_sym_GT] = ACTIONS(7087), - [anon_sym_GT_EQ] = ACTIONS(7087), - [anon_sym_LT_EQ] = ACTIONS(7087), - [anon_sym_LT] = ACTIONS(7087), - [anon_sym_LT_LT] = ACTIONS(7087), - [anon_sym_GT_GT] = ACTIONS(7087), - [anon_sym___extension__] = ACTIONS(7089), - [anon_sym___attribute__] = ACTIONS(7862), - [anon_sym___attribute] = ACTIONS(7864), - [anon_sym_LBRACE] = ACTIONS(7089), - [anon_sym_LBRACK] = ACTIONS(7089), - [anon_sym_EQ] = ACTIONS(7087), - [anon_sym_const] = ACTIONS(7087), - [anon_sym_constexpr] = ACTIONS(7089), - [anon_sym_volatile] = ACTIONS(7089), - [anon_sym_restrict] = ACTIONS(7089), - [anon_sym___restrict__] = ACTIONS(7089), - [anon_sym__Atomic] = ACTIONS(7089), - [anon_sym__Noreturn] = ACTIONS(7089), - [anon_sym_noreturn] = ACTIONS(7089), - [anon_sym__Nonnull] = ACTIONS(7089), - [anon_sym_mutable] = ACTIONS(7089), - [anon_sym_constinit] = ACTIONS(7089), - [anon_sym_consteval] = ACTIONS(7089), - [anon_sym_alignas] = ACTIONS(7089), - [anon_sym__Alignas] = ACTIONS(7089), - [anon_sym_QMARK] = ACTIONS(7089), - [anon_sym_STAR_EQ] = ACTIONS(7089), - [anon_sym_SLASH_EQ] = ACTIONS(7089), - [anon_sym_PERCENT_EQ] = ACTIONS(7089), - [anon_sym_PLUS_EQ] = ACTIONS(7089), - [anon_sym_DASH_EQ] = ACTIONS(7089), - [anon_sym_LT_LT_EQ] = ACTIONS(7089), - [anon_sym_GT_GT_EQ] = ACTIONS(7087), - [anon_sym_AMP_EQ] = ACTIONS(7089), - [anon_sym_CARET_EQ] = ACTIONS(7089), - [anon_sym_PIPE_EQ] = ACTIONS(7089), - [anon_sym_and_eq] = ACTIONS(7089), - [anon_sym_or_eq] = ACTIONS(7089), - [anon_sym_xor_eq] = ACTIONS(7089), - [anon_sym_LT_EQ_GT] = ACTIONS(7089), - [anon_sym_or] = ACTIONS(7087), - [anon_sym_and] = ACTIONS(7087), - [anon_sym_bitor] = ACTIONS(7089), - [anon_sym_xor] = ACTIONS(7087), - [anon_sym_bitand] = ACTIONS(7089), - [anon_sym_not_eq] = ACTIONS(7089), - [anon_sym_DASH_DASH] = ACTIONS(7089), - [anon_sym_PLUS_PLUS] = ACTIONS(7089), - [anon_sym_DOT] = ACTIONS(7087), - [anon_sym_DOT_STAR] = ACTIONS(7089), - [anon_sym_DASH_GT] = ACTIONS(7089), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7089), - [anon_sym_override] = ACTIONS(7089), - [anon_sym_GT2] = ACTIONS(7089), - [anon_sym_requires] = ACTIONS(7089), + [STATE(2502)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), + [anon_sym_COMMA] = ACTIONS(7079), + [anon_sym_LPAREN2] = ACTIONS(7079), + [anon_sym_DASH] = ACTIONS(7077), + [anon_sym_PLUS] = ACTIONS(7077), + [anon_sym_STAR] = ACTIONS(7077), + [anon_sym_SLASH] = ACTIONS(7077), + [anon_sym_PERCENT] = ACTIONS(7077), + [anon_sym_PIPE_PIPE] = ACTIONS(7079), + [anon_sym_AMP_AMP] = ACTIONS(7079), + [anon_sym_PIPE] = ACTIONS(7077), + [anon_sym_CARET] = ACTIONS(7077), + [anon_sym_AMP] = ACTIONS(7077), + [anon_sym_EQ_EQ] = ACTIONS(7079), + [anon_sym_BANG_EQ] = ACTIONS(7079), + [anon_sym_GT] = ACTIONS(7077), + [anon_sym_GT_EQ] = ACTIONS(7077), + [anon_sym_LT_EQ] = ACTIONS(7077), + [anon_sym_LT] = ACTIONS(7077), + [anon_sym_LT_LT] = ACTIONS(7077), + [anon_sym_GT_GT] = ACTIONS(7077), + [anon_sym___extension__] = ACTIONS(7079), + [anon_sym___attribute__] = ACTIONS(7079), + [anon_sym___attribute] = ACTIONS(7077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7079), + [anon_sym_LBRACK] = ACTIONS(7077), + [anon_sym_EQ] = ACTIONS(7077), + [anon_sym_const] = ACTIONS(7077), + [anon_sym_constexpr] = ACTIONS(7079), + [anon_sym_volatile] = ACTIONS(7079), + [anon_sym_restrict] = ACTIONS(7079), + [anon_sym___restrict__] = ACTIONS(7079), + [anon_sym__Atomic] = ACTIONS(7079), + [anon_sym__Noreturn] = ACTIONS(7079), + [anon_sym_noreturn] = ACTIONS(7079), + [anon_sym__Nonnull] = ACTIONS(7079), + [anon_sym_mutable] = ACTIONS(7079), + [anon_sym_constinit] = ACTIONS(7079), + [anon_sym_consteval] = ACTIONS(7079), + [anon_sym_alignas] = ACTIONS(7079), + [anon_sym__Alignas] = ACTIONS(7079), + [anon_sym_QMARK] = ACTIONS(7079), + [anon_sym_STAR_EQ] = ACTIONS(7079), + [anon_sym_SLASH_EQ] = ACTIONS(7079), + [anon_sym_PERCENT_EQ] = ACTIONS(7079), + [anon_sym_PLUS_EQ] = ACTIONS(7079), + [anon_sym_DASH_EQ] = ACTIONS(7079), + [anon_sym_LT_LT_EQ] = ACTIONS(7079), + [anon_sym_GT_GT_EQ] = ACTIONS(7077), + [anon_sym_AMP_EQ] = ACTIONS(7079), + [anon_sym_CARET_EQ] = ACTIONS(7079), + [anon_sym_PIPE_EQ] = ACTIONS(7079), + [anon_sym_and_eq] = ACTIONS(7079), + [anon_sym_or_eq] = ACTIONS(7079), + [anon_sym_xor_eq] = ACTIONS(7079), + [anon_sym_LT_EQ_GT] = ACTIONS(7079), + [anon_sym_or] = ACTIONS(7077), + [anon_sym_and] = ACTIONS(7077), + [anon_sym_bitor] = ACTIONS(7079), + [anon_sym_xor] = ACTIONS(7077), + [anon_sym_bitand] = ACTIONS(7079), + [anon_sym_not_eq] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_asm] = ACTIONS(7079), + [anon_sym___asm__] = ACTIONS(7079), + [anon_sym___asm] = ACTIONS(7077), + [anon_sym_DOT] = ACTIONS(7077), + [anon_sym_DOT_STAR] = ACTIONS(7079), + [anon_sym_DASH_GT] = ACTIONS(7079), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7079), + [anon_sym_override] = ACTIONS(7079), + [anon_sym_GT2] = ACTIONS(7079), + [anon_sym_noexcept] = ACTIONS(7079), + [anon_sym_throw] = ACTIONS(7079), + [anon_sym_requires] = ACTIONS(7079), }, - [STATE(2643)] = { - [sym_attribute_specifier] = STATE(3023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7089), - [anon_sym_COMMA] = ACTIONS(7089), - [anon_sym_LPAREN2] = ACTIONS(7089), - [anon_sym_DASH] = ACTIONS(7087), - [anon_sym_PLUS] = ACTIONS(7087), - [anon_sym_STAR] = ACTIONS(7087), - [anon_sym_SLASH] = ACTIONS(7087), - [anon_sym_PERCENT] = ACTIONS(7087), - [anon_sym_PIPE_PIPE] = ACTIONS(7089), - [anon_sym_AMP_AMP] = ACTIONS(7089), - [anon_sym_PIPE] = ACTIONS(7087), - [anon_sym_CARET] = ACTIONS(7087), - [anon_sym_AMP] = ACTIONS(7087), - [anon_sym_EQ_EQ] = ACTIONS(7089), - [anon_sym_BANG_EQ] = ACTIONS(7089), - [anon_sym_GT] = ACTIONS(7087), - [anon_sym_GT_EQ] = ACTIONS(7089), - [anon_sym_LT_EQ] = ACTIONS(7087), - [anon_sym_LT] = ACTIONS(7087), - [anon_sym_LT_LT] = ACTIONS(7087), - [anon_sym_GT_GT] = ACTIONS(7087), - [anon_sym___extension__] = ACTIONS(7089), - [anon_sym___attribute__] = ACTIONS(8003), - [anon_sym___attribute] = ACTIONS(8005), - [anon_sym_LBRACE] = ACTIONS(7089), - [anon_sym_LBRACK] = ACTIONS(7089), - [anon_sym_RBRACK] = ACTIONS(7089), - [anon_sym_EQ] = ACTIONS(7087), - [anon_sym_const] = ACTIONS(7087), - [anon_sym_constexpr] = ACTIONS(7089), - [anon_sym_volatile] = ACTIONS(7089), - [anon_sym_restrict] = ACTIONS(7089), - [anon_sym___restrict__] = ACTIONS(7089), - [anon_sym__Atomic] = ACTIONS(7089), - [anon_sym__Noreturn] = ACTIONS(7089), - [anon_sym_noreturn] = ACTIONS(7089), - [anon_sym__Nonnull] = ACTIONS(7089), - [anon_sym_mutable] = ACTIONS(7089), - [anon_sym_constinit] = ACTIONS(7089), - [anon_sym_consteval] = ACTIONS(7089), - [anon_sym_alignas] = ACTIONS(7089), - [anon_sym__Alignas] = ACTIONS(7089), - [anon_sym_QMARK] = ACTIONS(7089), - [anon_sym_STAR_EQ] = ACTIONS(7089), - [anon_sym_SLASH_EQ] = ACTIONS(7089), - [anon_sym_PERCENT_EQ] = ACTIONS(7089), - [anon_sym_PLUS_EQ] = ACTIONS(7089), - [anon_sym_DASH_EQ] = ACTIONS(7089), - [anon_sym_LT_LT_EQ] = ACTIONS(7089), - [anon_sym_GT_GT_EQ] = ACTIONS(7089), - [anon_sym_AMP_EQ] = ACTIONS(7089), - [anon_sym_CARET_EQ] = ACTIONS(7089), - [anon_sym_PIPE_EQ] = ACTIONS(7089), - [anon_sym_and_eq] = ACTIONS(7089), - [anon_sym_or_eq] = ACTIONS(7089), - [anon_sym_xor_eq] = ACTIONS(7089), - [anon_sym_LT_EQ_GT] = ACTIONS(7089), - [anon_sym_or] = ACTIONS(7087), - [anon_sym_and] = ACTIONS(7087), - [anon_sym_bitor] = ACTIONS(7089), - [anon_sym_xor] = ACTIONS(7087), - [anon_sym_bitand] = ACTIONS(7089), - [anon_sym_not_eq] = ACTIONS(7089), - [anon_sym_DASH_DASH] = ACTIONS(7089), - [anon_sym_PLUS_PLUS] = ACTIONS(7089), - [anon_sym_DOT] = ACTIONS(7087), - [anon_sym_DOT_STAR] = ACTIONS(7089), - [anon_sym_DASH_GT] = ACTIONS(7089), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7089), - [anon_sym_override] = ACTIONS(7089), - [anon_sym_requires] = ACTIONS(7089), + [STATE(2503)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7695), + [anon_sym_COMMA] = ACTIONS(7695), + [anon_sym_LPAREN2] = ACTIONS(7695), + [anon_sym_DASH] = ACTIONS(7693), + [anon_sym_PLUS] = ACTIONS(7693), + [anon_sym_STAR] = ACTIONS(7693), + [anon_sym_SLASH] = ACTIONS(7693), + [anon_sym_PERCENT] = ACTIONS(7693), + [anon_sym_PIPE_PIPE] = ACTIONS(7695), + [anon_sym_AMP_AMP] = ACTIONS(7695), + [anon_sym_PIPE] = ACTIONS(7693), + [anon_sym_CARET] = ACTIONS(7693), + [anon_sym_AMP] = ACTIONS(7693), + [anon_sym_EQ_EQ] = ACTIONS(7695), + [anon_sym_BANG_EQ] = ACTIONS(7695), + [anon_sym_GT] = ACTIONS(7693), + [anon_sym_GT_EQ] = ACTIONS(7693), + [anon_sym_LT_EQ] = ACTIONS(7693), + [anon_sym_LT] = ACTIONS(7693), + [anon_sym_LT_LT] = ACTIONS(7693), + [anon_sym_GT_GT] = ACTIONS(7693), + [anon_sym___extension__] = ACTIONS(7695), + [anon_sym___attribute__] = ACTIONS(7695), + [anon_sym___attribute] = ACTIONS(7693), + [anon_sym_LBRACE] = ACTIONS(7695), + [anon_sym_signed] = ACTIONS(8226), + [anon_sym_unsigned] = ACTIONS(8226), + [anon_sym_long] = ACTIONS(8226), + [anon_sym_short] = ACTIONS(8226), + [anon_sym_LBRACK] = ACTIONS(7695), + [anon_sym_EQ] = ACTIONS(7693), + [anon_sym_const] = ACTIONS(7693), + [anon_sym_constexpr] = ACTIONS(7695), + [anon_sym_volatile] = ACTIONS(7695), + [anon_sym_restrict] = ACTIONS(7695), + [anon_sym___restrict__] = ACTIONS(7695), + [anon_sym__Atomic] = ACTIONS(7695), + [anon_sym__Noreturn] = ACTIONS(7695), + [anon_sym_noreturn] = ACTIONS(7695), + [anon_sym__Nonnull] = ACTIONS(7695), + [anon_sym_mutable] = ACTIONS(7695), + [anon_sym_constinit] = ACTIONS(7695), + [anon_sym_consteval] = ACTIONS(7695), + [anon_sym_alignas] = ACTIONS(7695), + [anon_sym__Alignas] = ACTIONS(7695), + [anon_sym_QMARK] = ACTIONS(7695), + [anon_sym_STAR_EQ] = ACTIONS(7695), + [anon_sym_SLASH_EQ] = ACTIONS(7695), + [anon_sym_PERCENT_EQ] = ACTIONS(7695), + [anon_sym_PLUS_EQ] = ACTIONS(7695), + [anon_sym_DASH_EQ] = ACTIONS(7695), + [anon_sym_LT_LT_EQ] = ACTIONS(7695), + [anon_sym_GT_GT_EQ] = ACTIONS(7693), + [anon_sym_AMP_EQ] = ACTIONS(7695), + [anon_sym_CARET_EQ] = ACTIONS(7695), + [anon_sym_PIPE_EQ] = ACTIONS(7695), + [anon_sym_and_eq] = ACTIONS(7695), + [anon_sym_or_eq] = ACTIONS(7695), + [anon_sym_xor_eq] = ACTIONS(7695), + [anon_sym_LT_EQ_GT] = ACTIONS(7695), + [anon_sym_or] = ACTIONS(7693), + [anon_sym_and] = ACTIONS(7693), + [anon_sym_bitor] = ACTIONS(7695), + [anon_sym_xor] = ACTIONS(7693), + [anon_sym_bitand] = ACTIONS(7695), + [anon_sym_not_eq] = ACTIONS(7695), + [anon_sym_DASH_DASH] = ACTIONS(7695), + [anon_sym_PLUS_PLUS] = ACTIONS(7695), + [anon_sym_DOT] = ACTIONS(7693), + [anon_sym_DOT_STAR] = ACTIONS(7695), + [anon_sym_DASH_GT] = ACTIONS(7695), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7695), + [anon_sym_override] = ACTIONS(7695), + [anon_sym_GT2] = ACTIONS(7695), + [anon_sym_requires] = ACTIONS(7695), }, - [STATE(2644)] = { - [sym_attribute_specifier] = STATE(3028), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7189), - [anon_sym_COMMA] = ACTIONS(7189), - [anon_sym_LPAREN2] = ACTIONS(7189), - [anon_sym_DASH] = ACTIONS(7187), - [anon_sym_PLUS] = ACTIONS(7187), - [anon_sym_STAR] = ACTIONS(7187), - [anon_sym_SLASH] = ACTIONS(7187), - [anon_sym_PERCENT] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_AMP_AMP] = ACTIONS(7189), - [anon_sym_PIPE] = ACTIONS(7187), - [anon_sym_CARET] = ACTIONS(7187), - [anon_sym_AMP] = ACTIONS(7187), - [anon_sym_EQ_EQ] = ACTIONS(7189), - [anon_sym_BANG_EQ] = ACTIONS(7189), - [anon_sym_GT] = ACTIONS(7187), - [anon_sym_GT_EQ] = ACTIONS(7189), - [anon_sym_LT_EQ] = ACTIONS(7187), - [anon_sym_LT] = ACTIONS(7187), - [anon_sym_LT_LT] = ACTIONS(7187), - [anon_sym_GT_GT] = ACTIONS(7187), - [anon_sym___extension__] = ACTIONS(7189), - [anon_sym___attribute__] = ACTIONS(8003), - [anon_sym___attribute] = ACTIONS(8005), - [anon_sym_LBRACE] = ACTIONS(7189), - [anon_sym_LBRACK] = ACTIONS(7189), - [anon_sym_RBRACK] = ACTIONS(7189), - [anon_sym_EQ] = ACTIONS(7187), - [anon_sym_const] = ACTIONS(7187), - [anon_sym_constexpr] = ACTIONS(7189), - [anon_sym_volatile] = ACTIONS(7189), - [anon_sym_restrict] = ACTIONS(7189), - [anon_sym___restrict__] = ACTIONS(7189), - [anon_sym__Atomic] = ACTIONS(7189), - [anon_sym__Noreturn] = ACTIONS(7189), - [anon_sym_noreturn] = ACTIONS(7189), - [anon_sym__Nonnull] = ACTIONS(7189), - [anon_sym_mutable] = ACTIONS(7189), - [anon_sym_constinit] = ACTIONS(7189), - [anon_sym_consteval] = ACTIONS(7189), - [anon_sym_alignas] = ACTIONS(7189), - [anon_sym__Alignas] = ACTIONS(7189), - [anon_sym_QMARK] = ACTIONS(7189), - [anon_sym_STAR_EQ] = ACTIONS(7189), - [anon_sym_SLASH_EQ] = ACTIONS(7189), - [anon_sym_PERCENT_EQ] = ACTIONS(7189), - [anon_sym_PLUS_EQ] = ACTIONS(7189), - [anon_sym_DASH_EQ] = ACTIONS(7189), - [anon_sym_LT_LT_EQ] = ACTIONS(7189), - [anon_sym_GT_GT_EQ] = ACTIONS(7189), - [anon_sym_AMP_EQ] = ACTIONS(7189), - [anon_sym_CARET_EQ] = ACTIONS(7189), - [anon_sym_PIPE_EQ] = ACTIONS(7189), - [anon_sym_and_eq] = ACTIONS(7189), - [anon_sym_or_eq] = ACTIONS(7189), - [anon_sym_xor_eq] = ACTIONS(7189), - [anon_sym_LT_EQ_GT] = ACTIONS(7189), - [anon_sym_or] = ACTIONS(7187), - [anon_sym_and] = ACTIONS(7187), - [anon_sym_bitor] = ACTIONS(7189), - [anon_sym_xor] = ACTIONS(7187), - [anon_sym_bitand] = ACTIONS(7189), - [anon_sym_not_eq] = ACTIONS(7189), - [anon_sym_DASH_DASH] = ACTIONS(7189), - [anon_sym_PLUS_PLUS] = ACTIONS(7189), - [anon_sym_DOT] = ACTIONS(7187), - [anon_sym_DOT_STAR] = ACTIONS(7189), - [anon_sym_DASH_GT] = ACTIONS(7189), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7189), - [anon_sym_override] = ACTIONS(7189), - [anon_sym_requires] = ACTIONS(7189), + [STATE(2504)] = { + [sym_attribute_specifier] = STATE(4179), + [sym_attribute_declaration] = STATE(4554), + [sym_gnu_asm_expression] = STATE(9153), + [sym_virtual_specifier] = STATE(4653), + [sym_ref_qualifier] = STATE(2552), + [sym__function_exception_specification] = STATE(2987), + [sym__function_attributes_end] = STATE(4394), + [sym__function_postfix] = STATE(5110), + [sym_trailing_return_type] = STATE(4532), + [sym_noexcept] = STATE(2987), + [sym_throw_specifier] = STATE(2987), + [sym_requires_clause] = STATE(5110), + [aux_sym_type_definition_repeat1] = STATE(4179), + [aux_sym_attributed_declarator_repeat1] = STATE(4554), + [aux_sym__function_postfix_repeat1] = STATE(4653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(8354), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(8357), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6719), + [anon_sym___attribute] = ACTIONS(6721), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_RBRACK] = ACTIONS(7791), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8360), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6742), + [anon_sym_override] = ACTIONS(6742), + [anon_sym_noexcept] = ACTIONS(6735), + [anon_sym_throw] = ACTIONS(6737), + [anon_sym_requires] = ACTIONS(6744), }, - [STATE(2645)] = { - [sym__declaration_modifiers] = STATE(5027), - [sym_attribute_specifier] = STATE(5027), - [sym_attribute_declaration] = STATE(5027), - [sym_ms_declspec_modifier] = STATE(5027), - [sym_storage_class_specifier] = STATE(5027), - [sym_type_qualifier] = STATE(5027), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3936), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(5027), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(5572), + [STATE(2505)] = { + [sym__declaration_modifiers] = STATE(2734), + [sym__declaration_specifiers] = STATE(5388), + [sym_attribute_specifier] = STATE(2734), + [sym_attribute_declaration] = STATE(2734), + [sym_ms_declspec_modifier] = STATE(2734), + [sym_storage_class_specifier] = STATE(2734), + [sym_type_qualifier] = STATE(2734), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(10547), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_optional_parameter_declaration] = STATE(10547), + [sym_variadic_parameter_declaration] = STATE(10547), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(8293), + [anon_sym_virtual] = ACTIONS(2310), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -354028,15985 +356311,9069 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5102), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5629), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2646)] = { - [sym_identifier] = ACTIONS(8321), - [aux_sym_preproc_def_token1] = ACTIONS(8321), - [aux_sym_preproc_if_token1] = ACTIONS(8321), - [aux_sym_preproc_if_token2] = ACTIONS(8321), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8321), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8321), - [aux_sym_preproc_else_token1] = ACTIONS(8321), - [aux_sym_preproc_elif_token1] = ACTIONS(8321), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8321), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8321), - [sym_preproc_directive] = ACTIONS(8321), - [anon_sym_LPAREN2] = ACTIONS(8323), - [anon_sym_TILDE] = ACTIONS(8323), - [anon_sym_STAR] = ACTIONS(8323), - [anon_sym_AMP_AMP] = ACTIONS(8323), - [anon_sym_AMP] = ACTIONS(8321), - [anon_sym_SEMI] = ACTIONS(8323), - [anon_sym___extension__] = ACTIONS(8321), - [anon_sym_typedef] = ACTIONS(8321), - [anon_sym_virtual] = ACTIONS(8321), - [anon_sym_extern] = ACTIONS(8321), - [anon_sym___attribute__] = ACTIONS(8321), - [anon_sym___attribute] = ACTIONS(8321), - [anon_sym_using] = ACTIONS(8321), - [anon_sym_COLON_COLON] = ACTIONS(8323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8323), - [anon_sym___declspec] = ACTIONS(8321), - [anon_sym___based] = ACTIONS(8321), - [anon_sym_signed] = ACTIONS(8321), - [anon_sym_unsigned] = ACTIONS(8321), - [anon_sym_long] = ACTIONS(8321), - [anon_sym_short] = ACTIONS(8321), - [anon_sym_LBRACK] = ACTIONS(8321), - [anon_sym_static] = ACTIONS(8321), - [anon_sym_register] = ACTIONS(8321), - [anon_sym_inline] = ACTIONS(8321), - [anon_sym___inline] = ACTIONS(8321), - [anon_sym___inline__] = ACTIONS(8321), - [anon_sym___forceinline] = ACTIONS(8321), - [anon_sym_thread_local] = ACTIONS(8321), - [anon_sym___thread] = ACTIONS(8321), - [anon_sym_const] = ACTIONS(8321), - [anon_sym_constexpr] = ACTIONS(8321), - [anon_sym_volatile] = ACTIONS(8321), - [anon_sym_restrict] = ACTIONS(8321), - [anon_sym___restrict__] = ACTIONS(8321), - [anon_sym__Atomic] = ACTIONS(8321), - [anon_sym__Noreturn] = ACTIONS(8321), - [anon_sym_noreturn] = ACTIONS(8321), - [anon_sym__Nonnull] = ACTIONS(8321), - [anon_sym_mutable] = ACTIONS(8321), - [anon_sym_constinit] = ACTIONS(8321), - [anon_sym_consteval] = ACTIONS(8321), - [anon_sym_alignas] = ACTIONS(8321), - [anon_sym__Alignas] = ACTIONS(8321), - [sym_primitive_type] = ACTIONS(8321), - [anon_sym_enum] = ACTIONS(8321), - [anon_sym_class] = ACTIONS(8321), - [anon_sym_struct] = ACTIONS(8321), - [anon_sym_union] = ACTIONS(8321), - [anon_sym_typename] = ACTIONS(8321), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8321), - [anon_sym_decltype] = ACTIONS(8321), - [anon_sym_explicit] = ACTIONS(8321), - [anon_sym_private] = ACTIONS(8321), - [anon_sym_template] = ACTIONS(8321), - [anon_sym_operator] = ACTIONS(8321), - [anon_sym_friend] = ACTIONS(8321), - [anon_sym_public] = ACTIONS(8321), - [anon_sym_protected] = ACTIONS(8321), - [anon_sym_static_assert] = ACTIONS(8321), - [anon_sym_LBRACK_COLON] = ACTIONS(8323), + [STATE(2506)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7703), + [anon_sym_COMMA] = ACTIONS(7703), + [anon_sym_LPAREN2] = ACTIONS(7703), + [anon_sym_DASH] = ACTIONS(7701), + [anon_sym_PLUS] = ACTIONS(7701), + [anon_sym_STAR] = ACTIONS(7701), + [anon_sym_SLASH] = ACTIONS(7701), + [anon_sym_PERCENT] = ACTIONS(7701), + [anon_sym_PIPE_PIPE] = ACTIONS(7703), + [anon_sym_AMP_AMP] = ACTIONS(7703), + [anon_sym_PIPE] = ACTIONS(7701), + [anon_sym_CARET] = ACTIONS(7701), + [anon_sym_AMP] = ACTIONS(7701), + [anon_sym_EQ_EQ] = ACTIONS(7703), + [anon_sym_BANG_EQ] = ACTIONS(7703), + [anon_sym_GT] = ACTIONS(7701), + [anon_sym_GT_EQ] = ACTIONS(7701), + [anon_sym_LT_EQ] = ACTIONS(7701), + [anon_sym_LT] = ACTIONS(7701), + [anon_sym_LT_LT] = ACTIONS(7701), + [anon_sym_GT_GT] = ACTIONS(7701), + [anon_sym___extension__] = ACTIONS(7703), + [anon_sym___attribute__] = ACTIONS(7703), + [anon_sym___attribute] = ACTIONS(7701), + [anon_sym_LBRACE] = ACTIONS(7703), + [anon_sym_signed] = ACTIONS(8375), + [anon_sym_unsigned] = ACTIONS(8375), + [anon_sym_long] = ACTIONS(8375), + [anon_sym_short] = ACTIONS(8375), + [anon_sym_LBRACK] = ACTIONS(7703), + [anon_sym_EQ] = ACTIONS(7701), + [anon_sym_const] = ACTIONS(7701), + [anon_sym_constexpr] = ACTIONS(7703), + [anon_sym_volatile] = ACTIONS(7703), + [anon_sym_restrict] = ACTIONS(7703), + [anon_sym___restrict__] = ACTIONS(7703), + [anon_sym__Atomic] = ACTIONS(7703), + [anon_sym__Noreturn] = ACTIONS(7703), + [anon_sym_noreturn] = ACTIONS(7703), + [anon_sym__Nonnull] = ACTIONS(7703), + [anon_sym_mutable] = ACTIONS(7703), + [anon_sym_constinit] = ACTIONS(7703), + [anon_sym_consteval] = ACTIONS(7703), + [anon_sym_alignas] = ACTIONS(7703), + [anon_sym__Alignas] = ACTIONS(7703), + [anon_sym_QMARK] = ACTIONS(7703), + [anon_sym_STAR_EQ] = ACTIONS(7703), + [anon_sym_SLASH_EQ] = ACTIONS(7703), + [anon_sym_PERCENT_EQ] = ACTIONS(7703), + [anon_sym_PLUS_EQ] = ACTIONS(7703), + [anon_sym_DASH_EQ] = ACTIONS(7703), + [anon_sym_LT_LT_EQ] = ACTIONS(7703), + [anon_sym_GT_GT_EQ] = ACTIONS(7701), + [anon_sym_AMP_EQ] = ACTIONS(7703), + [anon_sym_CARET_EQ] = ACTIONS(7703), + [anon_sym_PIPE_EQ] = ACTIONS(7703), + [anon_sym_and_eq] = ACTIONS(7703), + [anon_sym_or_eq] = ACTIONS(7703), + [anon_sym_xor_eq] = ACTIONS(7703), + [anon_sym_LT_EQ_GT] = ACTIONS(7703), + [anon_sym_or] = ACTIONS(7701), + [anon_sym_and] = ACTIONS(7701), + [anon_sym_bitor] = ACTIONS(7703), + [anon_sym_xor] = ACTIONS(7701), + [anon_sym_bitand] = ACTIONS(7703), + [anon_sym_not_eq] = ACTIONS(7703), + [anon_sym_DASH_DASH] = ACTIONS(7703), + [anon_sym_PLUS_PLUS] = ACTIONS(7703), + [anon_sym_DOT] = ACTIONS(7701), + [anon_sym_DOT_STAR] = ACTIONS(7703), + [anon_sym_DASH_GT] = ACTIONS(7703), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7703), + [anon_sym_override] = ACTIONS(7703), + [anon_sym_GT2] = ACTIONS(7703), + [anon_sym_requires] = ACTIONS(7703), }, - [STATE(2647)] = { - [sym_identifier] = ACTIONS(8325), - [aux_sym_preproc_def_token1] = ACTIONS(8325), - [aux_sym_preproc_if_token1] = ACTIONS(8325), - [aux_sym_preproc_if_token2] = ACTIONS(8325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8325), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8325), - [aux_sym_preproc_else_token1] = ACTIONS(8325), - [aux_sym_preproc_elif_token1] = ACTIONS(8325), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8325), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8325), - [sym_preproc_directive] = ACTIONS(8325), - [anon_sym_LPAREN2] = ACTIONS(8327), - [anon_sym_TILDE] = ACTIONS(8327), - [anon_sym_STAR] = ACTIONS(8327), - [anon_sym_AMP_AMP] = ACTIONS(8327), - [anon_sym_AMP] = ACTIONS(8325), - [anon_sym_SEMI] = ACTIONS(8327), - [anon_sym___extension__] = ACTIONS(8325), - [anon_sym_typedef] = ACTIONS(8325), - [anon_sym_virtual] = ACTIONS(8325), - [anon_sym_extern] = ACTIONS(8325), - [anon_sym___attribute__] = ACTIONS(8325), - [anon_sym___attribute] = ACTIONS(8325), - [anon_sym_using] = ACTIONS(8325), - [anon_sym_COLON_COLON] = ACTIONS(8327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8327), - [anon_sym___declspec] = ACTIONS(8325), - [anon_sym___based] = ACTIONS(8325), - [anon_sym_signed] = ACTIONS(8325), - [anon_sym_unsigned] = ACTIONS(8325), - [anon_sym_long] = ACTIONS(8325), - [anon_sym_short] = ACTIONS(8325), - [anon_sym_LBRACK] = ACTIONS(8325), - [anon_sym_static] = ACTIONS(8325), - [anon_sym_register] = ACTIONS(8325), - [anon_sym_inline] = ACTIONS(8325), - [anon_sym___inline] = ACTIONS(8325), - [anon_sym___inline__] = ACTIONS(8325), - [anon_sym___forceinline] = ACTIONS(8325), - [anon_sym_thread_local] = ACTIONS(8325), - [anon_sym___thread] = ACTIONS(8325), - [anon_sym_const] = ACTIONS(8325), - [anon_sym_constexpr] = ACTIONS(8325), - [anon_sym_volatile] = ACTIONS(8325), - [anon_sym_restrict] = ACTIONS(8325), - [anon_sym___restrict__] = ACTIONS(8325), - [anon_sym__Atomic] = ACTIONS(8325), - [anon_sym__Noreturn] = ACTIONS(8325), - [anon_sym_noreturn] = ACTIONS(8325), - [anon_sym__Nonnull] = ACTIONS(8325), - [anon_sym_mutable] = ACTIONS(8325), - [anon_sym_constinit] = ACTIONS(8325), - [anon_sym_consteval] = ACTIONS(8325), - [anon_sym_alignas] = ACTIONS(8325), - [anon_sym__Alignas] = ACTIONS(8325), - [sym_primitive_type] = ACTIONS(8325), - [anon_sym_enum] = ACTIONS(8325), - [anon_sym_class] = ACTIONS(8325), - [anon_sym_struct] = ACTIONS(8325), - [anon_sym_union] = ACTIONS(8325), - [anon_sym_typename] = ACTIONS(8325), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8325), - [anon_sym_decltype] = ACTIONS(8325), - [anon_sym_explicit] = ACTIONS(8325), - [anon_sym_private] = ACTIONS(8325), - [anon_sym_template] = ACTIONS(8325), - [anon_sym_operator] = ACTIONS(8325), - [anon_sym_friend] = ACTIONS(8325), - [anon_sym_public] = ACTIONS(8325), - [anon_sym_protected] = ACTIONS(8325), - [anon_sym_static_assert] = ACTIONS(8325), - [anon_sym_LBRACK_COLON] = ACTIONS(8327), + [STATE(2507)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2518), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7709), + [anon_sym_COMMA] = ACTIONS(7709), + [anon_sym_LPAREN2] = ACTIONS(7709), + [anon_sym_DASH] = ACTIONS(7707), + [anon_sym_PLUS] = ACTIONS(7707), + [anon_sym_STAR] = ACTIONS(7707), + [anon_sym_SLASH] = ACTIONS(7707), + [anon_sym_PERCENT] = ACTIONS(7707), + [anon_sym_PIPE_PIPE] = ACTIONS(7709), + [anon_sym_AMP_AMP] = ACTIONS(7709), + [anon_sym_PIPE] = ACTIONS(7707), + [anon_sym_CARET] = ACTIONS(7707), + [anon_sym_AMP] = ACTIONS(7707), + [anon_sym_EQ_EQ] = ACTIONS(7709), + [anon_sym_BANG_EQ] = ACTIONS(7709), + [anon_sym_GT] = ACTIONS(7707), + [anon_sym_GT_EQ] = ACTIONS(7707), + [anon_sym_LT_EQ] = ACTIONS(7707), + [anon_sym_LT] = ACTIONS(7707), + [anon_sym_LT_LT] = ACTIONS(7707), + [anon_sym_GT_GT] = ACTIONS(7707), + [anon_sym___extension__] = ACTIONS(7709), + [anon_sym___attribute__] = ACTIONS(7709), + [anon_sym___attribute] = ACTIONS(7707), + [anon_sym_LBRACE] = ACTIONS(7709), + [anon_sym_signed] = ACTIONS(8377), + [anon_sym_unsigned] = ACTIONS(8377), + [anon_sym_long] = ACTIONS(8377), + [anon_sym_short] = ACTIONS(8377), + [anon_sym_LBRACK] = ACTIONS(7709), + [anon_sym_EQ] = ACTIONS(7707), + [anon_sym_const] = ACTIONS(7707), + [anon_sym_constexpr] = ACTIONS(7709), + [anon_sym_volatile] = ACTIONS(7709), + [anon_sym_restrict] = ACTIONS(7709), + [anon_sym___restrict__] = ACTIONS(7709), + [anon_sym__Atomic] = ACTIONS(7709), + [anon_sym__Noreturn] = ACTIONS(7709), + [anon_sym_noreturn] = ACTIONS(7709), + [anon_sym__Nonnull] = ACTIONS(7709), + [anon_sym_mutable] = ACTIONS(7709), + [anon_sym_constinit] = ACTIONS(7709), + [anon_sym_consteval] = ACTIONS(7709), + [anon_sym_alignas] = ACTIONS(7709), + [anon_sym__Alignas] = ACTIONS(7709), + [anon_sym_QMARK] = ACTIONS(7709), + [anon_sym_STAR_EQ] = ACTIONS(7709), + [anon_sym_SLASH_EQ] = ACTIONS(7709), + [anon_sym_PERCENT_EQ] = ACTIONS(7709), + [anon_sym_PLUS_EQ] = ACTIONS(7709), + [anon_sym_DASH_EQ] = ACTIONS(7709), + [anon_sym_LT_LT_EQ] = ACTIONS(7709), + [anon_sym_GT_GT_EQ] = ACTIONS(7707), + [anon_sym_AMP_EQ] = ACTIONS(7709), + [anon_sym_CARET_EQ] = ACTIONS(7709), + [anon_sym_PIPE_EQ] = ACTIONS(7709), + [anon_sym_and_eq] = ACTIONS(7709), + [anon_sym_or_eq] = ACTIONS(7709), + [anon_sym_xor_eq] = ACTIONS(7709), + [anon_sym_LT_EQ_GT] = ACTIONS(7709), + [anon_sym_or] = ACTIONS(7707), + [anon_sym_and] = ACTIONS(7707), + [anon_sym_bitor] = ACTIONS(7709), + [anon_sym_xor] = ACTIONS(7707), + [anon_sym_bitand] = ACTIONS(7709), + [anon_sym_not_eq] = ACTIONS(7709), + [anon_sym_DASH_DASH] = ACTIONS(7709), + [anon_sym_PLUS_PLUS] = ACTIONS(7709), + [anon_sym_DOT] = ACTIONS(7707), + [anon_sym_DOT_STAR] = ACTIONS(7709), + [anon_sym_DASH_GT] = ACTIONS(7709), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7709), + [anon_sym_override] = ACTIONS(7709), + [anon_sym_GT2] = ACTIONS(7709), + [anon_sym_requires] = ACTIONS(7709), }, - [STATE(2648)] = { - [sym_identifier] = ACTIONS(8329), - [aux_sym_preproc_def_token1] = ACTIONS(8329), - [aux_sym_preproc_if_token1] = ACTIONS(8329), - [aux_sym_preproc_if_token2] = ACTIONS(8329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8329), - [aux_sym_preproc_else_token1] = ACTIONS(8329), - [aux_sym_preproc_elif_token1] = ACTIONS(8329), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8329), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8329), - [sym_preproc_directive] = ACTIONS(8329), - [anon_sym_LPAREN2] = ACTIONS(8331), - [anon_sym_TILDE] = ACTIONS(8331), - [anon_sym_STAR] = ACTIONS(8331), - [anon_sym_AMP_AMP] = ACTIONS(8331), - [anon_sym_AMP] = ACTIONS(8329), - [anon_sym_SEMI] = ACTIONS(8331), - [anon_sym___extension__] = ACTIONS(8329), - [anon_sym_typedef] = ACTIONS(8329), - [anon_sym_virtual] = ACTIONS(8329), - [anon_sym_extern] = ACTIONS(8329), - [anon_sym___attribute__] = ACTIONS(8329), - [anon_sym___attribute] = ACTIONS(8329), - [anon_sym_using] = ACTIONS(8329), - [anon_sym_COLON_COLON] = ACTIONS(8331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8331), - [anon_sym___declspec] = ACTIONS(8329), - [anon_sym___based] = ACTIONS(8329), - [anon_sym_signed] = ACTIONS(8329), - [anon_sym_unsigned] = ACTIONS(8329), - [anon_sym_long] = ACTIONS(8329), - [anon_sym_short] = ACTIONS(8329), - [anon_sym_LBRACK] = ACTIONS(8329), - [anon_sym_static] = ACTIONS(8329), - [anon_sym_register] = ACTIONS(8329), - [anon_sym_inline] = ACTIONS(8329), - [anon_sym___inline] = ACTIONS(8329), - [anon_sym___inline__] = ACTIONS(8329), - [anon_sym___forceinline] = ACTIONS(8329), - [anon_sym_thread_local] = ACTIONS(8329), - [anon_sym___thread] = ACTIONS(8329), - [anon_sym_const] = ACTIONS(8329), - [anon_sym_constexpr] = ACTIONS(8329), - [anon_sym_volatile] = ACTIONS(8329), - [anon_sym_restrict] = ACTIONS(8329), - [anon_sym___restrict__] = ACTIONS(8329), - [anon_sym__Atomic] = ACTIONS(8329), - [anon_sym__Noreturn] = ACTIONS(8329), - [anon_sym_noreturn] = ACTIONS(8329), - [anon_sym__Nonnull] = ACTIONS(8329), - [anon_sym_mutable] = ACTIONS(8329), - [anon_sym_constinit] = ACTIONS(8329), - [anon_sym_consteval] = ACTIONS(8329), - [anon_sym_alignas] = ACTIONS(8329), - [anon_sym__Alignas] = ACTIONS(8329), - [sym_primitive_type] = ACTIONS(8329), - [anon_sym_enum] = ACTIONS(8329), - [anon_sym_class] = ACTIONS(8329), - [anon_sym_struct] = ACTIONS(8329), - [anon_sym_union] = ACTIONS(8329), - [anon_sym_typename] = ACTIONS(8329), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8329), - [anon_sym_decltype] = ACTIONS(8329), - [anon_sym_explicit] = ACTIONS(8329), - [anon_sym_private] = ACTIONS(8329), - [anon_sym_template] = ACTIONS(8329), - [anon_sym_operator] = ACTIONS(8329), - [anon_sym_friend] = ACTIONS(8329), - [anon_sym_public] = ACTIONS(8329), - [anon_sym_protected] = ACTIONS(8329), - [anon_sym_static_assert] = ACTIONS(8329), - [anon_sym_LBRACK_COLON] = ACTIONS(8331), + [STATE(2508)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7715), + [anon_sym_COMMA] = ACTIONS(7715), + [anon_sym_LPAREN2] = ACTIONS(7715), + [anon_sym_DASH] = ACTIONS(7713), + [anon_sym_PLUS] = ACTIONS(7713), + [anon_sym_STAR] = ACTIONS(7713), + [anon_sym_SLASH] = ACTIONS(7713), + [anon_sym_PERCENT] = ACTIONS(7713), + [anon_sym_PIPE_PIPE] = ACTIONS(7715), + [anon_sym_AMP_AMP] = ACTIONS(7715), + [anon_sym_PIPE] = ACTIONS(7713), + [anon_sym_CARET] = ACTIONS(7713), + [anon_sym_AMP] = ACTIONS(7713), + [anon_sym_EQ_EQ] = ACTIONS(7715), + [anon_sym_BANG_EQ] = ACTIONS(7715), + [anon_sym_GT] = ACTIONS(7713), + [anon_sym_GT_EQ] = ACTIONS(7713), + [anon_sym_LT_EQ] = ACTIONS(7713), + [anon_sym_LT] = ACTIONS(7713), + [anon_sym_LT_LT] = ACTIONS(7713), + [anon_sym_GT_GT] = ACTIONS(7713), + [anon_sym___extension__] = ACTIONS(7715), + [anon_sym___attribute__] = ACTIONS(7715), + [anon_sym___attribute] = ACTIONS(7713), + [anon_sym_LBRACE] = ACTIONS(7715), + [anon_sym_signed] = ACTIONS(8226), + [anon_sym_unsigned] = ACTIONS(8226), + [anon_sym_long] = ACTIONS(8226), + [anon_sym_short] = ACTIONS(8226), + [anon_sym_LBRACK] = ACTIONS(7715), + [anon_sym_EQ] = ACTIONS(7713), + [anon_sym_const] = ACTIONS(7713), + [anon_sym_constexpr] = ACTIONS(7715), + [anon_sym_volatile] = ACTIONS(7715), + [anon_sym_restrict] = ACTIONS(7715), + [anon_sym___restrict__] = ACTIONS(7715), + [anon_sym__Atomic] = ACTIONS(7715), + [anon_sym__Noreturn] = ACTIONS(7715), + [anon_sym_noreturn] = ACTIONS(7715), + [anon_sym__Nonnull] = ACTIONS(7715), + [anon_sym_mutable] = ACTIONS(7715), + [anon_sym_constinit] = ACTIONS(7715), + [anon_sym_consteval] = ACTIONS(7715), + [anon_sym_alignas] = ACTIONS(7715), + [anon_sym__Alignas] = ACTIONS(7715), + [anon_sym_QMARK] = ACTIONS(7715), + [anon_sym_STAR_EQ] = ACTIONS(7715), + [anon_sym_SLASH_EQ] = ACTIONS(7715), + [anon_sym_PERCENT_EQ] = ACTIONS(7715), + [anon_sym_PLUS_EQ] = ACTIONS(7715), + [anon_sym_DASH_EQ] = ACTIONS(7715), + [anon_sym_LT_LT_EQ] = ACTIONS(7715), + [anon_sym_GT_GT_EQ] = ACTIONS(7713), + [anon_sym_AMP_EQ] = ACTIONS(7715), + [anon_sym_CARET_EQ] = ACTIONS(7715), + [anon_sym_PIPE_EQ] = ACTIONS(7715), + [anon_sym_and_eq] = ACTIONS(7715), + [anon_sym_or_eq] = ACTIONS(7715), + [anon_sym_xor_eq] = ACTIONS(7715), + [anon_sym_LT_EQ_GT] = ACTIONS(7715), + [anon_sym_or] = ACTIONS(7713), + [anon_sym_and] = ACTIONS(7713), + [anon_sym_bitor] = ACTIONS(7715), + [anon_sym_xor] = ACTIONS(7713), + [anon_sym_bitand] = ACTIONS(7715), + [anon_sym_not_eq] = ACTIONS(7715), + [anon_sym_DASH_DASH] = ACTIONS(7715), + [anon_sym_PLUS_PLUS] = ACTIONS(7715), + [anon_sym_DOT] = ACTIONS(7713), + [anon_sym_DOT_STAR] = ACTIONS(7715), + [anon_sym_DASH_GT] = ACTIONS(7715), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7715), + [anon_sym_override] = ACTIONS(7715), + [anon_sym_GT2] = ACTIONS(7715), + [anon_sym_requires] = ACTIONS(7715), }, - [STATE(2649)] = { - [sym_identifier] = ACTIONS(8333), - [aux_sym_preproc_def_token1] = ACTIONS(8333), - [aux_sym_preproc_if_token1] = ACTIONS(8333), - [aux_sym_preproc_if_token2] = ACTIONS(8333), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8333), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8333), - [aux_sym_preproc_else_token1] = ACTIONS(8333), - [aux_sym_preproc_elif_token1] = ACTIONS(8333), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8333), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8333), - [sym_preproc_directive] = ACTIONS(8333), - [anon_sym_LPAREN2] = ACTIONS(8335), - [anon_sym_TILDE] = ACTIONS(8335), - [anon_sym_STAR] = ACTIONS(8335), - [anon_sym_AMP_AMP] = ACTIONS(8335), - [anon_sym_AMP] = ACTIONS(8333), - [anon_sym_SEMI] = ACTIONS(8335), - [anon_sym___extension__] = ACTIONS(8333), - [anon_sym_typedef] = ACTIONS(8333), - [anon_sym_virtual] = ACTIONS(8333), - [anon_sym_extern] = ACTIONS(8333), - [anon_sym___attribute__] = ACTIONS(8333), - [anon_sym___attribute] = ACTIONS(8333), - [anon_sym_using] = ACTIONS(8333), - [anon_sym_COLON_COLON] = ACTIONS(8335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8335), - [anon_sym___declspec] = ACTIONS(8333), - [anon_sym___based] = ACTIONS(8333), - [anon_sym_signed] = ACTIONS(8333), - [anon_sym_unsigned] = ACTIONS(8333), - [anon_sym_long] = ACTIONS(8333), - [anon_sym_short] = ACTIONS(8333), - [anon_sym_LBRACK] = ACTIONS(8333), - [anon_sym_static] = ACTIONS(8333), - [anon_sym_register] = ACTIONS(8333), - [anon_sym_inline] = ACTIONS(8333), - [anon_sym___inline] = ACTIONS(8333), - [anon_sym___inline__] = ACTIONS(8333), - [anon_sym___forceinline] = ACTIONS(8333), - [anon_sym_thread_local] = ACTIONS(8333), - [anon_sym___thread] = ACTIONS(8333), - [anon_sym_const] = ACTIONS(8333), - [anon_sym_constexpr] = ACTIONS(8333), - [anon_sym_volatile] = ACTIONS(8333), - [anon_sym_restrict] = ACTIONS(8333), - [anon_sym___restrict__] = ACTIONS(8333), - [anon_sym__Atomic] = ACTIONS(8333), - [anon_sym__Noreturn] = ACTIONS(8333), - [anon_sym_noreturn] = ACTIONS(8333), - [anon_sym__Nonnull] = ACTIONS(8333), - [anon_sym_mutable] = ACTIONS(8333), - [anon_sym_constinit] = ACTIONS(8333), - [anon_sym_consteval] = ACTIONS(8333), - [anon_sym_alignas] = ACTIONS(8333), - [anon_sym__Alignas] = ACTIONS(8333), - [sym_primitive_type] = ACTIONS(8333), - [anon_sym_enum] = ACTIONS(8333), - [anon_sym_class] = ACTIONS(8333), - [anon_sym_struct] = ACTIONS(8333), - [anon_sym_union] = ACTIONS(8333), - [anon_sym_typename] = ACTIONS(8333), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8333), - [anon_sym_decltype] = ACTIONS(8333), - [anon_sym_explicit] = ACTIONS(8333), - [anon_sym_private] = ACTIONS(8333), - [anon_sym_template] = ACTIONS(8333), - [anon_sym_operator] = ACTIONS(8333), - [anon_sym_friend] = ACTIONS(8333), - [anon_sym_public] = ACTIONS(8333), - [anon_sym_protected] = ACTIONS(8333), - [anon_sym_static_assert] = ACTIONS(8333), - [anon_sym_LBRACK_COLON] = ACTIONS(8335), + [STATE(2509)] = { + [sym__abstract_declarator] = STATE(5305), + [sym_abstract_parenthesized_declarator] = STATE(5063), + [sym_abstract_pointer_declarator] = STATE(5063), + [sym_abstract_function_declarator] = STATE(5063), + [sym_abstract_array_declarator] = STATE(5063), + [sym_type_qualifier] = STATE(2406), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1978), + [sym_abstract_reference_declarator] = STATE(5063), + [sym__function_declarator_seq] = STATE(5065), + [aux_sym__type_definition_type_repeat1] = STATE(2406), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(7112), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(7363), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(7365), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(7367), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(7120), + [anon_sym_LBRACK] = ACTIONS(7128), + [anon_sym_RBRACK] = ACTIONS(6823), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(7120), + [anon_sym_volatile] = ACTIONS(7120), + [anon_sym_restrict] = ACTIONS(7120), + [anon_sym___restrict__] = ACTIONS(7120), + [anon_sym__Atomic] = ACTIONS(7120), + [anon_sym__Noreturn] = ACTIONS(7120), + [anon_sym_noreturn] = ACTIONS(7120), + [anon_sym__Nonnull] = ACTIONS(7120), + [anon_sym_mutable] = ACTIONS(7120), + [anon_sym_constinit] = ACTIONS(7120), + [anon_sym_consteval] = ACTIONS(7120), + [anon_sym_alignas] = ACTIONS(7130), + [anon_sym__Alignas] = ACTIONS(7130), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_and_eq] = ACTIONS(6823), + [anon_sym_or_eq] = ACTIONS(6823), + [anon_sym_xor_eq] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), }, - [STATE(2650)] = { - [sym_identifier] = ACTIONS(8337), - [aux_sym_preproc_def_token1] = ACTIONS(8337), - [aux_sym_preproc_if_token1] = ACTIONS(8337), - [aux_sym_preproc_if_token2] = ACTIONS(8337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8337), - [aux_sym_preproc_else_token1] = ACTIONS(8337), - [aux_sym_preproc_elif_token1] = ACTIONS(8337), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8337), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8337), - [sym_preproc_directive] = ACTIONS(8337), - [anon_sym_LPAREN2] = ACTIONS(8339), - [anon_sym_TILDE] = ACTIONS(8339), - [anon_sym_STAR] = ACTIONS(8339), - [anon_sym_AMP_AMP] = ACTIONS(8339), - [anon_sym_AMP] = ACTIONS(8337), - [anon_sym_SEMI] = ACTIONS(8339), - [anon_sym___extension__] = ACTIONS(8337), - [anon_sym_typedef] = ACTIONS(8337), - [anon_sym_virtual] = ACTIONS(8337), - [anon_sym_extern] = ACTIONS(8337), - [anon_sym___attribute__] = ACTIONS(8337), - [anon_sym___attribute] = ACTIONS(8337), - [anon_sym_using] = ACTIONS(8337), - [anon_sym_COLON_COLON] = ACTIONS(8339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8339), - [anon_sym___declspec] = ACTIONS(8337), - [anon_sym___based] = ACTIONS(8337), - [anon_sym_signed] = ACTIONS(8337), - [anon_sym_unsigned] = ACTIONS(8337), - [anon_sym_long] = ACTIONS(8337), - [anon_sym_short] = ACTIONS(8337), - [anon_sym_LBRACK] = ACTIONS(8337), - [anon_sym_static] = ACTIONS(8337), - [anon_sym_register] = ACTIONS(8337), - [anon_sym_inline] = ACTIONS(8337), - [anon_sym___inline] = ACTIONS(8337), - [anon_sym___inline__] = ACTIONS(8337), - [anon_sym___forceinline] = ACTIONS(8337), - [anon_sym_thread_local] = ACTIONS(8337), - [anon_sym___thread] = ACTIONS(8337), - [anon_sym_const] = ACTIONS(8337), - [anon_sym_constexpr] = ACTIONS(8337), - [anon_sym_volatile] = ACTIONS(8337), - [anon_sym_restrict] = ACTIONS(8337), - [anon_sym___restrict__] = ACTIONS(8337), - [anon_sym__Atomic] = ACTIONS(8337), - [anon_sym__Noreturn] = ACTIONS(8337), - [anon_sym_noreturn] = ACTIONS(8337), - [anon_sym__Nonnull] = ACTIONS(8337), - [anon_sym_mutable] = ACTIONS(8337), - [anon_sym_constinit] = ACTIONS(8337), - [anon_sym_consteval] = ACTIONS(8337), - [anon_sym_alignas] = ACTIONS(8337), - [anon_sym__Alignas] = ACTIONS(8337), - [sym_primitive_type] = ACTIONS(8337), - [anon_sym_enum] = ACTIONS(8337), - [anon_sym_class] = ACTIONS(8337), - [anon_sym_struct] = ACTIONS(8337), - [anon_sym_union] = ACTIONS(8337), - [anon_sym_typename] = ACTIONS(8337), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8337), - [anon_sym_decltype] = ACTIONS(8337), - [anon_sym_explicit] = ACTIONS(8337), - [anon_sym_private] = ACTIONS(8337), - [anon_sym_template] = ACTIONS(8337), - [anon_sym_operator] = ACTIONS(8337), - [anon_sym_friend] = ACTIONS(8337), - [anon_sym_public] = ACTIONS(8337), - [anon_sym_protected] = ACTIONS(8337), - [anon_sym_static_assert] = ACTIONS(8337), - [anon_sym_LBRACK_COLON] = ACTIONS(8339), + [STATE(2510)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym_ref_qualifier] = STATE(2534), + [sym__function_exception_specification] = STATE(3044), + [sym__function_attributes_end] = STATE(4231), + [sym__function_postfix] = STATE(3628), + [sym_trailing_return_type] = STATE(3071), + [sym_noexcept] = STATE(3044), + [sym_throw_specifier] = STATE(3044), + [sym_requires_clause] = STATE(3628), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7793), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7796), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym_SEMI] = ACTIONS(7791), + [anon_sym___attribute__] = ACTIONS(8330), + [anon_sym___attribute] = ACTIONS(8333), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8336), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6561), + [anon_sym_override] = ACTIONS(6561), + [anon_sym_noexcept] = ACTIONS(6546), + [anon_sym_throw] = ACTIONS(6548), + [anon_sym_requires] = ACTIONS(6563), }, - [STATE(2651)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2792), - [sym_ms_pointer_modifier] = STATE(2423), - [sym__abstract_declarator] = STATE(6430), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(3691), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(2152), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(3691), - [aux_sym_pointer_declarator_repeat1] = STATE(2423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(8341), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6497), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(8343), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6497), - [anon_sym_AMP] = ACTIONS(8345), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6497), - [anon_sym_GT_GT] = ACTIONS(6497), - [anon_sym_SEMI] = ACTIONS(6497), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym___attribute__] = ACTIONS(6497), - [anon_sym___attribute] = ACTIONS(6495), - [sym_ms_restrict_modifier] = ACTIONS(7741), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7780), - [sym_ms_signed_ptr_modifier] = ACTIONS(7780), - [anon_sym__unaligned] = ACTIONS(7782), - [anon_sym___unaligned] = ACTIONS(7782), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6497), - [anon_sym_and] = ACTIONS(6497), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6497), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), + [STATE(2511)] = { + [sym__abstract_declarator] = STATE(5514), + [sym_abstract_parenthesized_declarator] = STATE(5063), + [sym_abstract_pointer_declarator] = STATE(5063), + [sym_abstract_function_declarator] = STATE(5063), + [sym_abstract_array_declarator] = STATE(5063), + [sym_type_qualifier] = STATE(2406), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1978), + [sym_abstract_reference_declarator] = STATE(5063), + [sym__function_declarator_seq] = STATE(5065), + [aux_sym__type_definition_type_repeat1] = STATE(2406), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), + [anon_sym_COMMA] = ACTIONS(7355), + [anon_sym_LPAREN2] = ACTIONS(7112), + [anon_sym_DASH] = ACTIONS(7353), + [anon_sym_PLUS] = ACTIONS(7353), + [anon_sym_STAR] = ACTIONS(7363), + [anon_sym_SLASH] = ACTIONS(7353), + [anon_sym_PERCENT] = ACTIONS(7353), + [anon_sym_PIPE_PIPE] = ACTIONS(7355), + [anon_sym_AMP_AMP] = ACTIONS(7365), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_CARET] = ACTIONS(7353), + [anon_sym_AMP] = ACTIONS(7367), + [anon_sym_EQ_EQ] = ACTIONS(7355), + [anon_sym_BANG_EQ] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_EQ] = ACTIONS(7355), + [anon_sym_LT_EQ] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_LT_LT] = ACTIONS(7353), + [anon_sym_GT_GT] = ACTIONS(7353), + [anon_sym___extension__] = ACTIONS(7120), + [anon_sym_LBRACK] = ACTIONS(7128), + [anon_sym_RBRACK] = ACTIONS(7355), + [anon_sym_EQ] = ACTIONS(7353), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(7120), + [anon_sym_volatile] = ACTIONS(7120), + [anon_sym_restrict] = ACTIONS(7120), + [anon_sym___restrict__] = ACTIONS(7120), + [anon_sym__Atomic] = ACTIONS(7120), + [anon_sym__Noreturn] = ACTIONS(7120), + [anon_sym_noreturn] = ACTIONS(7120), + [anon_sym__Nonnull] = ACTIONS(7120), + [anon_sym_mutable] = ACTIONS(7120), + [anon_sym_constinit] = ACTIONS(7120), + [anon_sym_consteval] = ACTIONS(7120), + [anon_sym_alignas] = ACTIONS(7130), + [anon_sym__Alignas] = ACTIONS(7130), + [anon_sym_QMARK] = ACTIONS(7355), + [anon_sym_STAR_EQ] = ACTIONS(7355), + [anon_sym_SLASH_EQ] = ACTIONS(7355), + [anon_sym_PERCENT_EQ] = ACTIONS(7355), + [anon_sym_PLUS_EQ] = ACTIONS(7355), + [anon_sym_DASH_EQ] = ACTIONS(7355), + [anon_sym_LT_LT_EQ] = ACTIONS(7355), + [anon_sym_GT_GT_EQ] = ACTIONS(7355), + [anon_sym_AMP_EQ] = ACTIONS(7355), + [anon_sym_CARET_EQ] = ACTIONS(7355), + [anon_sym_PIPE_EQ] = ACTIONS(7355), + [anon_sym_and_eq] = ACTIONS(7355), + [anon_sym_or_eq] = ACTIONS(7355), + [anon_sym_xor_eq] = ACTIONS(7355), + [anon_sym_LT_EQ_GT] = ACTIONS(7355), + [anon_sym_or] = ACTIONS(7353), + [anon_sym_and] = ACTIONS(7353), + [anon_sym_bitor] = ACTIONS(7355), + [anon_sym_xor] = ACTIONS(7353), + [anon_sym_bitand] = ACTIONS(7355), + [anon_sym_not_eq] = ACTIONS(7355), + [anon_sym_DASH_DASH] = ACTIONS(7355), + [anon_sym_PLUS_PLUS] = ACTIONS(7355), + [anon_sym_DOT] = ACTIONS(7353), + [anon_sym_DOT_STAR] = ACTIONS(7355), + [anon_sym_DASH_GT] = ACTIONS(7355), [sym_comment] = ACTIONS(3), }, - [STATE(2652)] = { - [sym_identifier] = ACTIONS(8337), - [aux_sym_preproc_def_token1] = ACTIONS(8337), - [aux_sym_preproc_if_token1] = ACTIONS(8337), - [aux_sym_preproc_if_token2] = ACTIONS(8337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8337), - [aux_sym_preproc_else_token1] = ACTIONS(8337), - [aux_sym_preproc_elif_token1] = ACTIONS(8337), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8337), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8337), - [sym_preproc_directive] = ACTIONS(8337), - [anon_sym_LPAREN2] = ACTIONS(8339), - [anon_sym_TILDE] = ACTIONS(8339), - [anon_sym_STAR] = ACTIONS(8339), - [anon_sym_AMP_AMP] = ACTIONS(8339), - [anon_sym_AMP] = ACTIONS(8337), - [anon_sym_SEMI] = ACTIONS(8339), - [anon_sym___extension__] = ACTIONS(8337), - [anon_sym_typedef] = ACTIONS(8337), - [anon_sym_virtual] = ACTIONS(8337), - [anon_sym_extern] = ACTIONS(8337), - [anon_sym___attribute__] = ACTIONS(8337), - [anon_sym___attribute] = ACTIONS(8337), - [anon_sym_using] = ACTIONS(8337), - [anon_sym_COLON_COLON] = ACTIONS(8339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8339), - [anon_sym___declspec] = ACTIONS(8337), - [anon_sym___based] = ACTIONS(8337), - [anon_sym_signed] = ACTIONS(8337), - [anon_sym_unsigned] = ACTIONS(8337), - [anon_sym_long] = ACTIONS(8337), - [anon_sym_short] = ACTIONS(8337), - [anon_sym_LBRACK] = ACTIONS(8337), - [anon_sym_static] = ACTIONS(8337), - [anon_sym_register] = ACTIONS(8337), - [anon_sym_inline] = ACTIONS(8337), - [anon_sym___inline] = ACTIONS(8337), - [anon_sym___inline__] = ACTIONS(8337), - [anon_sym___forceinline] = ACTIONS(8337), - [anon_sym_thread_local] = ACTIONS(8337), - [anon_sym___thread] = ACTIONS(8337), - [anon_sym_const] = ACTIONS(8337), - [anon_sym_constexpr] = ACTIONS(8337), - [anon_sym_volatile] = ACTIONS(8337), - [anon_sym_restrict] = ACTIONS(8337), - [anon_sym___restrict__] = ACTIONS(8337), - [anon_sym__Atomic] = ACTIONS(8337), - [anon_sym__Noreturn] = ACTIONS(8337), - [anon_sym_noreturn] = ACTIONS(8337), - [anon_sym__Nonnull] = ACTIONS(8337), - [anon_sym_mutable] = ACTIONS(8337), - [anon_sym_constinit] = ACTIONS(8337), - [anon_sym_consteval] = ACTIONS(8337), - [anon_sym_alignas] = ACTIONS(8337), - [anon_sym__Alignas] = ACTIONS(8337), - [sym_primitive_type] = ACTIONS(8337), - [anon_sym_enum] = ACTIONS(8337), - [anon_sym_class] = ACTIONS(8337), - [anon_sym_struct] = ACTIONS(8337), - [anon_sym_union] = ACTIONS(8337), - [anon_sym_typename] = ACTIONS(8337), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8337), - [anon_sym_decltype] = ACTIONS(8337), - [anon_sym_explicit] = ACTIONS(8337), - [anon_sym_private] = ACTIONS(8337), - [anon_sym_template] = ACTIONS(8337), - [anon_sym_operator] = ACTIONS(8337), - [anon_sym_friend] = ACTIONS(8337), - [anon_sym_public] = ACTIONS(8337), - [anon_sym_protected] = ACTIONS(8337), - [anon_sym_static_assert] = ACTIONS(8337), - [anon_sym_LBRACK_COLON] = ACTIONS(8339), + [STATE(2512)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2474), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), + [anon_sym_COMMA] = ACTIONS(7719), + [anon_sym_LPAREN2] = ACTIONS(7719), + [anon_sym_DASH] = ACTIONS(7717), + [anon_sym_PLUS] = ACTIONS(7717), + [anon_sym_STAR] = ACTIONS(7717), + [anon_sym_SLASH] = ACTIONS(7717), + [anon_sym_PERCENT] = ACTIONS(7717), + [anon_sym_PIPE_PIPE] = ACTIONS(7719), + [anon_sym_AMP_AMP] = ACTIONS(7719), + [anon_sym_PIPE] = ACTIONS(7717), + [anon_sym_CARET] = ACTIONS(7717), + [anon_sym_AMP] = ACTIONS(7717), + [anon_sym_EQ_EQ] = ACTIONS(7719), + [anon_sym_BANG_EQ] = ACTIONS(7719), + [anon_sym_GT] = ACTIONS(7717), + [anon_sym_GT_EQ] = ACTIONS(7717), + [anon_sym_LT_EQ] = ACTIONS(7717), + [anon_sym_LT] = ACTIONS(7717), + [anon_sym_LT_LT] = ACTIONS(7717), + [anon_sym_GT_GT] = ACTIONS(7717), + [anon_sym___extension__] = ACTIONS(7719), + [anon_sym___attribute__] = ACTIONS(7719), + [anon_sym___attribute] = ACTIONS(7717), + [anon_sym_LBRACE] = ACTIONS(7719), + [anon_sym_signed] = ACTIONS(8379), + [anon_sym_unsigned] = ACTIONS(8379), + [anon_sym_long] = ACTIONS(8379), + [anon_sym_short] = ACTIONS(8379), + [anon_sym_LBRACK] = ACTIONS(7719), + [anon_sym_EQ] = ACTIONS(7717), + [anon_sym_const] = ACTIONS(7717), + [anon_sym_constexpr] = ACTIONS(7719), + [anon_sym_volatile] = ACTIONS(7719), + [anon_sym_restrict] = ACTIONS(7719), + [anon_sym___restrict__] = ACTIONS(7719), + [anon_sym__Atomic] = ACTIONS(7719), + [anon_sym__Noreturn] = ACTIONS(7719), + [anon_sym_noreturn] = ACTIONS(7719), + [anon_sym__Nonnull] = ACTIONS(7719), + [anon_sym_mutable] = ACTIONS(7719), + [anon_sym_constinit] = ACTIONS(7719), + [anon_sym_consteval] = ACTIONS(7719), + [anon_sym_alignas] = ACTIONS(7719), + [anon_sym__Alignas] = ACTIONS(7719), + [anon_sym_QMARK] = ACTIONS(7719), + [anon_sym_STAR_EQ] = ACTIONS(7719), + [anon_sym_SLASH_EQ] = ACTIONS(7719), + [anon_sym_PERCENT_EQ] = ACTIONS(7719), + [anon_sym_PLUS_EQ] = ACTIONS(7719), + [anon_sym_DASH_EQ] = ACTIONS(7719), + [anon_sym_LT_LT_EQ] = ACTIONS(7719), + [anon_sym_GT_GT_EQ] = ACTIONS(7717), + [anon_sym_AMP_EQ] = ACTIONS(7719), + [anon_sym_CARET_EQ] = ACTIONS(7719), + [anon_sym_PIPE_EQ] = ACTIONS(7719), + [anon_sym_and_eq] = ACTIONS(7719), + [anon_sym_or_eq] = ACTIONS(7719), + [anon_sym_xor_eq] = ACTIONS(7719), + [anon_sym_LT_EQ_GT] = ACTIONS(7719), + [anon_sym_or] = ACTIONS(7717), + [anon_sym_and] = ACTIONS(7717), + [anon_sym_bitor] = ACTIONS(7719), + [anon_sym_xor] = ACTIONS(7717), + [anon_sym_bitand] = ACTIONS(7719), + [anon_sym_not_eq] = ACTIONS(7719), + [anon_sym_DASH_DASH] = ACTIONS(7719), + [anon_sym_PLUS_PLUS] = ACTIONS(7719), + [anon_sym_DOT] = ACTIONS(7717), + [anon_sym_DOT_STAR] = ACTIONS(7719), + [anon_sym_DASH_GT] = ACTIONS(7719), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7719), + [anon_sym_override] = ACTIONS(7719), + [anon_sym_GT2] = ACTIONS(7719), + [anon_sym_requires] = ACTIONS(7719), }, - [STATE(2653)] = { - [sym_attribute_specifier] = STATE(3103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7093), - [anon_sym_COMMA] = ACTIONS(7093), - [anon_sym_LPAREN2] = ACTIONS(7093), - [anon_sym_DASH] = ACTIONS(7091), - [anon_sym_PLUS] = ACTIONS(7091), - [anon_sym_STAR] = ACTIONS(7091), - [anon_sym_SLASH] = ACTIONS(7091), - [anon_sym_PERCENT] = ACTIONS(7091), - [anon_sym_PIPE_PIPE] = ACTIONS(7093), - [anon_sym_AMP_AMP] = ACTIONS(7093), - [anon_sym_PIPE] = ACTIONS(7091), - [anon_sym_CARET] = ACTIONS(7091), - [anon_sym_AMP] = ACTIONS(7091), - [anon_sym_EQ_EQ] = ACTIONS(7093), - [anon_sym_BANG_EQ] = ACTIONS(7093), - [anon_sym_GT] = ACTIONS(7091), - [anon_sym_GT_EQ] = ACTIONS(7091), - [anon_sym_LT_EQ] = ACTIONS(7091), - [anon_sym_LT] = ACTIONS(7091), - [anon_sym_LT_LT] = ACTIONS(7091), - [anon_sym_GT_GT] = ACTIONS(7091), - [anon_sym___extension__] = ACTIONS(7093), - [anon_sym___attribute__] = ACTIONS(7862), - [anon_sym___attribute] = ACTIONS(7864), - [anon_sym_LBRACE] = ACTIONS(7093), - [anon_sym_LBRACK] = ACTIONS(7093), - [anon_sym_EQ] = ACTIONS(7091), - [anon_sym_const] = ACTIONS(7091), - [anon_sym_constexpr] = ACTIONS(7093), - [anon_sym_volatile] = ACTIONS(7093), - [anon_sym_restrict] = ACTIONS(7093), - [anon_sym___restrict__] = ACTIONS(7093), - [anon_sym__Atomic] = ACTIONS(7093), - [anon_sym__Noreturn] = ACTIONS(7093), - [anon_sym_noreturn] = ACTIONS(7093), - [anon_sym__Nonnull] = ACTIONS(7093), - [anon_sym_mutable] = ACTIONS(7093), - [anon_sym_constinit] = ACTIONS(7093), - [anon_sym_consteval] = ACTIONS(7093), - [anon_sym_alignas] = ACTIONS(7093), - [anon_sym__Alignas] = ACTIONS(7093), - [anon_sym_QMARK] = ACTIONS(7093), - [anon_sym_STAR_EQ] = ACTIONS(7093), - [anon_sym_SLASH_EQ] = ACTIONS(7093), - [anon_sym_PERCENT_EQ] = ACTIONS(7093), - [anon_sym_PLUS_EQ] = ACTIONS(7093), - [anon_sym_DASH_EQ] = ACTIONS(7093), - [anon_sym_LT_LT_EQ] = ACTIONS(7093), - [anon_sym_GT_GT_EQ] = ACTIONS(7091), - [anon_sym_AMP_EQ] = ACTIONS(7093), - [anon_sym_CARET_EQ] = ACTIONS(7093), - [anon_sym_PIPE_EQ] = ACTIONS(7093), - [anon_sym_and_eq] = ACTIONS(7093), - [anon_sym_or_eq] = ACTIONS(7093), - [anon_sym_xor_eq] = ACTIONS(7093), - [anon_sym_LT_EQ_GT] = ACTIONS(7093), - [anon_sym_or] = ACTIONS(7091), - [anon_sym_and] = ACTIONS(7091), - [anon_sym_bitor] = ACTIONS(7093), - [anon_sym_xor] = ACTIONS(7091), - [anon_sym_bitand] = ACTIONS(7093), - [anon_sym_not_eq] = ACTIONS(7093), - [anon_sym_DASH_DASH] = ACTIONS(7093), - [anon_sym_PLUS_PLUS] = ACTIONS(7093), - [anon_sym_DOT] = ACTIONS(7091), - [anon_sym_DOT_STAR] = ACTIONS(7093), - [anon_sym_DASH_GT] = ACTIONS(7093), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7093), - [anon_sym_override] = ACTIONS(7093), - [anon_sym_GT2] = ACTIONS(7093), - [anon_sym_requires] = ACTIONS(7093), + [STATE(2513)] = { + [sym_attribute_specifier] = STATE(4161), + [sym_attribute_declaration] = STATE(4617), + [sym_gnu_asm_expression] = STATE(9112), + [sym_virtual_specifier] = STATE(4705), + [sym_ref_qualifier] = STATE(2598), + [sym__function_exception_specification] = STATE(3072), + [sym__function_attributes_end] = STATE(4355), + [sym__function_postfix] = STATE(5258), + [sym_trailing_return_type] = STATE(4432), + [sym_noexcept] = STATE(3072), + [sym_throw_specifier] = STATE(3072), + [sym_requires_clause] = STATE(5258), + [aux_sym_type_definition_repeat1] = STATE(4161), + [aux_sym_attributed_declarator_repeat1] = STATE(4617), + [aux_sym__function_postfix_repeat1] = STATE(4705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(8312), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(8315), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7789), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6681), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7789), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8318), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6694), + [anon_sym_override] = ACTIONS(6694), + [anon_sym_GT2] = ACTIONS(7791), + [anon_sym_noexcept] = ACTIONS(6696), + [anon_sym_throw] = ACTIONS(6698), + [anon_sym_requires] = ACTIONS(6700), }, - [STATE(2654)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2792), - [sym_ms_pointer_modifier] = STATE(2651), - [sym__abstract_declarator] = STATE(6428), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(3657), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(2152), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(3657), - [aux_sym_pointer_declarator_repeat1] = STATE(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_PLUS] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(8341), - [anon_sym_SLASH] = ACTIONS(6457), - [anon_sym_PERCENT] = ACTIONS(6459), - [anon_sym_PIPE_PIPE] = ACTIONS(6459), - [anon_sym_AMP_AMP] = ACTIONS(8343), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_CARET] = ACTIONS(6459), - [anon_sym_AMP] = ACTIONS(8345), - [anon_sym_EQ_EQ] = ACTIONS(6459), - [anon_sym_BANG_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_LT_EQ] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_LT_LT] = ACTIONS(6459), - [anon_sym_GT_GT] = ACTIONS(6459), - [anon_sym_SEMI] = ACTIONS(6459), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym___attribute__] = ACTIONS(6459), - [anon_sym___attribute] = ACTIONS(6457), - [sym_ms_restrict_modifier] = ACTIONS(7741), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7780), - [sym_ms_signed_ptr_modifier] = ACTIONS(7780), - [anon_sym__unaligned] = ACTIONS(7782), - [anon_sym___unaligned] = ACTIONS(7782), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(6459), - [anon_sym_LT_EQ_GT] = ACTIONS(6459), - [anon_sym_or] = ACTIONS(6459), - [anon_sym_and] = ACTIONS(6459), - [anon_sym_bitor] = ACTIONS(6459), - [anon_sym_xor] = ACTIONS(6459), - [anon_sym_bitand] = ACTIONS(6459), - [anon_sym_not_eq] = ACTIONS(6459), - [anon_sym_DASH_DASH] = ACTIONS(6459), - [anon_sym_PLUS_PLUS] = ACTIONS(6459), - [anon_sym_DOT] = ACTIONS(6457), - [anon_sym_DOT_STAR] = ACTIONS(6459), - [anon_sym_DASH_GT] = ACTIONS(6459), + [STATE(2514)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7160), + [anon_sym_COMMA] = ACTIONS(7160), + [anon_sym_LPAREN2] = ACTIONS(7160), + [anon_sym_DASH] = ACTIONS(7158), + [anon_sym_PLUS] = ACTIONS(7158), + [anon_sym_STAR] = ACTIONS(7158), + [anon_sym_SLASH] = ACTIONS(7158), + [anon_sym_PERCENT] = ACTIONS(7158), + [anon_sym_PIPE_PIPE] = ACTIONS(7160), + [anon_sym_AMP_AMP] = ACTIONS(7160), + [anon_sym_PIPE] = ACTIONS(7158), + [anon_sym_CARET] = ACTIONS(7158), + [anon_sym_AMP] = ACTIONS(7158), + [anon_sym_EQ_EQ] = ACTIONS(7160), + [anon_sym_BANG_EQ] = ACTIONS(7160), + [anon_sym_GT] = ACTIONS(7158), + [anon_sym_GT_EQ] = ACTIONS(7160), + [anon_sym_LT_EQ] = ACTIONS(7158), + [anon_sym_LT] = ACTIONS(7158), + [anon_sym_LT_LT] = ACTIONS(7158), + [anon_sym_GT_GT] = ACTIONS(7158), + [anon_sym___extension__] = ACTIONS(7160), + [anon_sym___attribute__] = ACTIONS(7160), + [anon_sym___attribute] = ACTIONS(7158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7160), + [anon_sym_LBRACK] = ACTIONS(7158), + [anon_sym_RBRACK] = ACTIONS(7160), + [anon_sym_EQ] = ACTIONS(7158), + [anon_sym_const] = ACTIONS(7158), + [anon_sym_constexpr] = ACTIONS(7160), + [anon_sym_volatile] = ACTIONS(7160), + [anon_sym_restrict] = ACTIONS(7160), + [anon_sym___restrict__] = ACTIONS(7160), + [anon_sym__Atomic] = ACTIONS(7160), + [anon_sym__Noreturn] = ACTIONS(7160), + [anon_sym_noreturn] = ACTIONS(7160), + [anon_sym__Nonnull] = ACTIONS(7160), + [anon_sym_mutable] = ACTIONS(7160), + [anon_sym_constinit] = ACTIONS(7160), + [anon_sym_consteval] = ACTIONS(7160), + [anon_sym_alignas] = ACTIONS(7160), + [anon_sym__Alignas] = ACTIONS(7160), + [anon_sym_QMARK] = ACTIONS(7160), + [anon_sym_STAR_EQ] = ACTIONS(7160), + [anon_sym_SLASH_EQ] = ACTIONS(7160), + [anon_sym_PERCENT_EQ] = ACTIONS(7160), + [anon_sym_PLUS_EQ] = ACTIONS(7160), + [anon_sym_DASH_EQ] = ACTIONS(7160), + [anon_sym_LT_LT_EQ] = ACTIONS(7160), + [anon_sym_GT_GT_EQ] = ACTIONS(7160), + [anon_sym_AMP_EQ] = ACTIONS(7160), + [anon_sym_CARET_EQ] = ACTIONS(7160), + [anon_sym_PIPE_EQ] = ACTIONS(7160), + [anon_sym_and_eq] = ACTIONS(7160), + [anon_sym_or_eq] = ACTIONS(7160), + [anon_sym_xor_eq] = ACTIONS(7160), + [anon_sym_LT_EQ_GT] = ACTIONS(7160), + [anon_sym_or] = ACTIONS(7158), + [anon_sym_and] = ACTIONS(7158), + [anon_sym_bitor] = ACTIONS(7160), + [anon_sym_xor] = ACTIONS(7158), + [anon_sym_bitand] = ACTIONS(7160), + [anon_sym_not_eq] = ACTIONS(7160), + [anon_sym_DASH_DASH] = ACTIONS(7160), + [anon_sym_PLUS_PLUS] = ACTIONS(7160), + [anon_sym_asm] = ACTIONS(7160), + [anon_sym___asm__] = ACTIONS(7160), + [anon_sym___asm] = ACTIONS(7158), + [anon_sym_DOT] = ACTIONS(7158), + [anon_sym_DOT_STAR] = ACTIONS(7160), + [anon_sym_DASH_GT] = ACTIONS(7160), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7160), + [anon_sym_override] = ACTIONS(7160), + [anon_sym_noexcept] = ACTIONS(7160), + [anon_sym_throw] = ACTIONS(7160), + [anon_sym_requires] = ACTIONS(7160), + }, + [STATE(2515)] = { + [sym__declaration_modifiers] = STATE(5072), + [sym_attribute_specifier] = STATE(5072), + [sym_attribute_declaration] = STATE(5072), + [sym_ms_declspec_modifier] = STATE(5072), + [sym_ms_based_modifier] = STATE(11554), + [sym__declarator] = STATE(9092), + [sym_parenthesized_declarator] = STATE(8555), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_function_declarator] = STATE(8729), + [sym_array_declarator] = STATE(8555), + [sym_storage_class_specifier] = STATE(5072), + [sym_type_qualifier] = STATE(5072), + [sym_alignas_qualifier] = STATE(4722), + [sym_decltype] = STATE(10768), + [sym_explicit_function_specifier] = STATE(5072), + [sym_operator_cast] = STATE(9165), + [sym__constructor_specifiers] = STATE(5072), + [sym_reference_declarator] = STATE(8555), + [sym_structured_binding_declarator] = STATE(8555), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7901), + [sym_qualified_identifier] = STATE(8555), + [sym_qualified_operator_cast_identifier] = STATE(9165), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym_operator_cast_definition_repeat1] = STATE(5072), + [sym_identifier] = ACTIONS(8228), + [anon_sym_LPAREN2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(8230), + [anon_sym_virtual] = ACTIONS(8232), + [anon_sym_extern] = ACTIONS(8234), + [anon_sym___attribute__] = ACTIONS(8236), + [anon_sym___attribute] = ACTIONS(8236), + [anon_sym_COLON_COLON] = ACTIONS(8238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8240), + [anon_sym___declspec] = ACTIONS(8242), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(8234), + [anon_sym_register] = ACTIONS(8234), + [anon_sym_inline] = ACTIONS(8234), + [anon_sym___inline] = ACTIONS(8234), + [anon_sym___inline__] = ACTIONS(8234), + [anon_sym___forceinline] = ACTIONS(8234), + [anon_sym_thread_local] = ACTIONS(8234), + [anon_sym___thread] = ACTIONS(8234), + [anon_sym_const] = ACTIONS(8230), + [anon_sym_constexpr] = ACTIONS(8230), + [anon_sym_volatile] = ACTIONS(8230), + [anon_sym_restrict] = ACTIONS(8230), + [anon_sym___restrict__] = ACTIONS(8230), + [anon_sym__Atomic] = ACTIONS(8230), + [anon_sym__Noreturn] = ACTIONS(8230), + [anon_sym_noreturn] = ACTIONS(8230), + [anon_sym__Nonnull] = ACTIONS(8230), + [anon_sym_mutable] = ACTIONS(8230), + [anon_sym_constinit] = ACTIONS(8230), + [anon_sym_consteval] = ACTIONS(8230), + [anon_sym_alignas] = ACTIONS(8244), + [anon_sym__Alignas] = ACTIONS(8244), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), }, - [STATE(2655)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6228), - [anon_sym_COMMA] = ACTIONS(6228), - [anon_sym_RPAREN] = ACTIONS(6230), - [anon_sym_LPAREN2] = ACTIONS(6230), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6237), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_PERCENT] = ACTIONS(6235), - [anon_sym_PIPE_PIPE] = ACTIONS(6228), - [anon_sym_AMP_AMP] = ACTIONS(6230), - [anon_sym_PIPE] = ACTIONS(6235), - [anon_sym_CARET] = ACTIONS(6235), - [anon_sym_AMP] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6228), - [anon_sym_BANG_EQ] = ACTIONS(6228), - [anon_sym_GT] = ACTIONS(6235), - [anon_sym_GT_EQ] = ACTIONS(6228), - [anon_sym_LT_EQ] = ACTIONS(6235), - [anon_sym_LT] = ACTIONS(6235), - [anon_sym_LT_LT] = ACTIONS(6235), - [anon_sym_GT_GT] = ACTIONS(6235), - [anon_sym_SEMI] = ACTIONS(6228), - [anon_sym___extension__] = ACTIONS(6233), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6228), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6237), - [anon_sym_EQ] = ACTIONS(6235), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6233), - [anon_sym_volatile] = ACTIONS(6233), - [anon_sym_restrict] = ACTIONS(6233), - [anon_sym___restrict__] = ACTIONS(6233), - [anon_sym__Atomic] = ACTIONS(6233), - [anon_sym__Noreturn] = ACTIONS(6233), - [anon_sym_noreturn] = ACTIONS(6233), - [anon_sym__Nonnull] = ACTIONS(6233), - [anon_sym_mutable] = ACTIONS(6233), - [anon_sym_constinit] = ACTIONS(6233), - [anon_sym_consteval] = ACTIONS(6233), - [anon_sym_alignas] = ACTIONS(6233), - [anon_sym__Alignas] = ACTIONS(6233), - [anon_sym_QMARK] = ACTIONS(6228), - [anon_sym_STAR_EQ] = ACTIONS(6228), - [anon_sym_SLASH_EQ] = ACTIONS(6228), - [anon_sym_PERCENT_EQ] = ACTIONS(6228), - [anon_sym_PLUS_EQ] = ACTIONS(6228), - [anon_sym_DASH_EQ] = ACTIONS(6228), - [anon_sym_LT_LT_EQ] = ACTIONS(6228), - [anon_sym_GT_GT_EQ] = ACTIONS(6228), - [anon_sym_AMP_EQ] = ACTIONS(6228), - [anon_sym_CARET_EQ] = ACTIONS(6228), - [anon_sym_PIPE_EQ] = ACTIONS(6228), - [anon_sym_and_eq] = ACTIONS(6228), - [anon_sym_or_eq] = ACTIONS(6228), - [anon_sym_xor_eq] = ACTIONS(6228), - [anon_sym_LT_EQ_GT] = ACTIONS(6228), - [anon_sym_or] = ACTIONS(6235), - [anon_sym_and] = ACTIONS(6235), - [anon_sym_bitor] = ACTIONS(6228), - [anon_sym_xor] = ACTIONS(6235), - [anon_sym_bitand] = ACTIONS(6228), - [anon_sym_not_eq] = ACTIONS(6228), - [anon_sym_DASH_DASH] = ACTIONS(6228), - [anon_sym_PLUS_PLUS] = ACTIONS(6228), - [anon_sym_DOT] = ACTIONS(6235), - [anon_sym_DOT_STAR] = ACTIONS(6228), - [anon_sym_DASH_GT] = ACTIONS(6235), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6233), - [anon_sym_decltype] = ACTIONS(6233), - [anon_sym_DASH_GT_STAR] = ACTIONS(6228), + [STATE(2516)] = { + [sym_template_argument_list] = STATE(3735), + [aux_sym_sized_type_specifier_repeat1] = STATE(2616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7359), + [anon_sym_COMMA] = ACTIONS(7359), + [anon_sym_RPAREN] = ACTIONS(7359), + [anon_sym_LPAREN2] = ACTIONS(7359), + [anon_sym_DASH] = ACTIONS(7357), + [anon_sym_PLUS] = ACTIONS(7357), + [anon_sym_STAR] = ACTIONS(7357), + [anon_sym_SLASH] = ACTIONS(7357), + [anon_sym_PERCENT] = ACTIONS(7357), + [anon_sym_PIPE_PIPE] = ACTIONS(7359), + [anon_sym_AMP_AMP] = ACTIONS(7359), + [anon_sym_PIPE] = ACTIONS(7357), + [anon_sym_CARET] = ACTIONS(7357), + [anon_sym_AMP] = ACTIONS(7357), + [anon_sym_EQ_EQ] = ACTIONS(7359), + [anon_sym_BANG_EQ] = ACTIONS(7359), + [anon_sym_GT] = ACTIONS(7357), + [anon_sym_GT_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ] = ACTIONS(7357), + [anon_sym_LT] = ACTIONS(7357), + [anon_sym_LT_LT] = ACTIONS(7357), + [anon_sym_GT_GT] = ACTIONS(7357), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7357), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(7359), + [anon_sym_signed] = ACTIONS(6956), + [anon_sym_unsigned] = ACTIONS(6956), + [anon_sym_long] = ACTIONS(6956), + [anon_sym_short] = ACTIONS(6956), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7357), + [anon_sym_const] = ACTIONS(7357), + [anon_sym_constexpr] = ACTIONS(7359), + [anon_sym_volatile] = ACTIONS(7359), + [anon_sym_restrict] = ACTIONS(7359), + [anon_sym___restrict__] = ACTIONS(7359), + [anon_sym__Atomic] = ACTIONS(7359), + [anon_sym__Noreturn] = ACTIONS(7359), + [anon_sym_noreturn] = ACTIONS(7359), + [anon_sym__Nonnull] = ACTIONS(7359), + [anon_sym_mutable] = ACTIONS(7359), + [anon_sym_constinit] = ACTIONS(7359), + [anon_sym_consteval] = ACTIONS(7359), + [anon_sym_alignas] = ACTIONS(7359), + [anon_sym__Alignas] = ACTIONS(7359), + [anon_sym_QMARK] = ACTIONS(7359), + [anon_sym_STAR_EQ] = ACTIONS(7359), + [anon_sym_SLASH_EQ] = ACTIONS(7359), + [anon_sym_PERCENT_EQ] = ACTIONS(7359), + [anon_sym_PLUS_EQ] = ACTIONS(7359), + [anon_sym_DASH_EQ] = ACTIONS(7359), + [anon_sym_LT_LT_EQ] = ACTIONS(7359), + [anon_sym_GT_GT_EQ] = ACTIONS(7359), + [anon_sym_AMP_EQ] = ACTIONS(7359), + [anon_sym_CARET_EQ] = ACTIONS(7359), + [anon_sym_PIPE_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7359), + [anon_sym_or] = ACTIONS(7359), + [anon_sym_and] = ACTIONS(7359), + [anon_sym_bitor] = ACTIONS(7359), + [anon_sym_xor] = ACTIONS(7359), + [anon_sym_bitand] = ACTIONS(7359), + [anon_sym_not_eq] = ACTIONS(7359), + [anon_sym_DASH_DASH] = ACTIONS(7359), + [anon_sym_PLUS_PLUS] = ACTIONS(7359), + [anon_sym_DOT] = ACTIONS(7357), + [anon_sym_DOT_STAR] = ACTIONS(7359), + [anon_sym_DASH_GT] = ACTIONS(7357), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_DASH_GT_STAR] = ACTIONS(7359), }, - [STATE(2656)] = { - [sym_identifier] = ACTIONS(8337), - [aux_sym_preproc_def_token1] = ACTIONS(8337), - [aux_sym_preproc_if_token1] = ACTIONS(8337), - [aux_sym_preproc_if_token2] = ACTIONS(8337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8337), - [aux_sym_preproc_else_token1] = ACTIONS(8337), - [aux_sym_preproc_elif_token1] = ACTIONS(8337), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8337), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8337), - [sym_preproc_directive] = ACTIONS(8337), - [anon_sym_LPAREN2] = ACTIONS(8339), - [anon_sym_TILDE] = ACTIONS(8339), - [anon_sym_STAR] = ACTIONS(8339), - [anon_sym_AMP_AMP] = ACTIONS(8339), - [anon_sym_AMP] = ACTIONS(8337), - [anon_sym_SEMI] = ACTIONS(8339), - [anon_sym___extension__] = ACTIONS(8337), - [anon_sym_typedef] = ACTIONS(8337), - [anon_sym_virtual] = ACTIONS(8337), - [anon_sym_extern] = ACTIONS(8337), - [anon_sym___attribute__] = ACTIONS(8337), - [anon_sym___attribute] = ACTIONS(8337), - [anon_sym_using] = ACTIONS(8337), - [anon_sym_COLON_COLON] = ACTIONS(8339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8339), - [anon_sym___declspec] = ACTIONS(8337), - [anon_sym___based] = ACTIONS(8337), - [anon_sym_signed] = ACTIONS(8337), - [anon_sym_unsigned] = ACTIONS(8337), - [anon_sym_long] = ACTIONS(8337), - [anon_sym_short] = ACTIONS(8337), - [anon_sym_LBRACK] = ACTIONS(8337), - [anon_sym_static] = ACTIONS(8337), - [anon_sym_register] = ACTIONS(8337), - [anon_sym_inline] = ACTIONS(8337), - [anon_sym___inline] = ACTIONS(8337), - [anon_sym___inline__] = ACTIONS(8337), - [anon_sym___forceinline] = ACTIONS(8337), - [anon_sym_thread_local] = ACTIONS(8337), - [anon_sym___thread] = ACTIONS(8337), - [anon_sym_const] = ACTIONS(8337), - [anon_sym_constexpr] = ACTIONS(8337), - [anon_sym_volatile] = ACTIONS(8337), - [anon_sym_restrict] = ACTIONS(8337), - [anon_sym___restrict__] = ACTIONS(8337), - [anon_sym__Atomic] = ACTIONS(8337), - [anon_sym__Noreturn] = ACTIONS(8337), - [anon_sym_noreturn] = ACTIONS(8337), - [anon_sym__Nonnull] = ACTIONS(8337), - [anon_sym_mutable] = ACTIONS(8337), - [anon_sym_constinit] = ACTIONS(8337), - [anon_sym_consteval] = ACTIONS(8337), - [anon_sym_alignas] = ACTIONS(8337), - [anon_sym__Alignas] = ACTIONS(8337), - [sym_primitive_type] = ACTIONS(8337), - [anon_sym_enum] = ACTIONS(8337), - [anon_sym_class] = ACTIONS(8337), - [anon_sym_struct] = ACTIONS(8337), - [anon_sym_union] = ACTIONS(8337), - [anon_sym_typename] = ACTIONS(8337), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8337), - [anon_sym_decltype] = ACTIONS(8337), - [anon_sym_explicit] = ACTIONS(8337), - [anon_sym_private] = ACTIONS(8337), - [anon_sym_template] = ACTIONS(8337), - [anon_sym_operator] = ACTIONS(8337), - [anon_sym_friend] = ACTIONS(8337), - [anon_sym_public] = ACTIONS(8337), - [anon_sym_protected] = ACTIONS(8337), - [anon_sym_static_assert] = ACTIONS(8337), - [anon_sym_LBRACK_COLON] = ACTIONS(8339), + [STATE(2517)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), + [anon_sym_COMMA] = ACTIONS(7725), + [anon_sym_LPAREN2] = ACTIONS(7725), + [anon_sym_DASH] = ACTIONS(7723), + [anon_sym_PLUS] = ACTIONS(7723), + [anon_sym_STAR] = ACTIONS(7723), + [anon_sym_SLASH] = ACTIONS(7723), + [anon_sym_PERCENT] = ACTIONS(7723), + [anon_sym_PIPE_PIPE] = ACTIONS(7725), + [anon_sym_AMP_AMP] = ACTIONS(7725), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_CARET] = ACTIONS(7723), + [anon_sym_AMP] = ACTIONS(7723), + [anon_sym_EQ_EQ] = ACTIONS(7725), + [anon_sym_BANG_EQ] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_EQ] = ACTIONS(7723), + [anon_sym_LT_EQ] = ACTIONS(7723), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_LT_LT] = ACTIONS(7723), + [anon_sym_GT_GT] = ACTIONS(7723), + [anon_sym___extension__] = ACTIONS(7725), + [anon_sym___attribute__] = ACTIONS(7725), + [anon_sym___attribute] = ACTIONS(7723), + [anon_sym_LBRACE] = ACTIONS(7725), + [anon_sym_signed] = ACTIONS(8226), + [anon_sym_unsigned] = ACTIONS(8226), + [anon_sym_long] = ACTIONS(8226), + [anon_sym_short] = ACTIONS(8226), + [anon_sym_LBRACK] = ACTIONS(7725), + [anon_sym_EQ] = ACTIONS(7723), + [anon_sym_const] = ACTIONS(7723), + [anon_sym_constexpr] = ACTIONS(7725), + [anon_sym_volatile] = ACTIONS(7725), + [anon_sym_restrict] = ACTIONS(7725), + [anon_sym___restrict__] = ACTIONS(7725), + [anon_sym__Atomic] = ACTIONS(7725), + [anon_sym__Noreturn] = ACTIONS(7725), + [anon_sym_noreturn] = ACTIONS(7725), + [anon_sym__Nonnull] = ACTIONS(7725), + [anon_sym_mutable] = ACTIONS(7725), + [anon_sym_constinit] = ACTIONS(7725), + [anon_sym_consteval] = ACTIONS(7725), + [anon_sym_alignas] = ACTIONS(7725), + [anon_sym__Alignas] = ACTIONS(7725), + [anon_sym_QMARK] = ACTIONS(7725), + [anon_sym_STAR_EQ] = ACTIONS(7725), + [anon_sym_SLASH_EQ] = ACTIONS(7725), + [anon_sym_PERCENT_EQ] = ACTIONS(7725), + [anon_sym_PLUS_EQ] = ACTIONS(7725), + [anon_sym_DASH_EQ] = ACTIONS(7725), + [anon_sym_LT_LT_EQ] = ACTIONS(7725), + [anon_sym_GT_GT_EQ] = ACTIONS(7723), + [anon_sym_AMP_EQ] = ACTIONS(7725), + [anon_sym_CARET_EQ] = ACTIONS(7725), + [anon_sym_PIPE_EQ] = ACTIONS(7725), + [anon_sym_and_eq] = ACTIONS(7725), + [anon_sym_or_eq] = ACTIONS(7725), + [anon_sym_xor_eq] = ACTIONS(7725), + [anon_sym_LT_EQ_GT] = ACTIONS(7725), + [anon_sym_or] = ACTIONS(7723), + [anon_sym_and] = ACTIONS(7723), + [anon_sym_bitor] = ACTIONS(7725), + [anon_sym_xor] = ACTIONS(7723), + [anon_sym_bitand] = ACTIONS(7725), + [anon_sym_not_eq] = ACTIONS(7725), + [anon_sym_DASH_DASH] = ACTIONS(7725), + [anon_sym_PLUS_PLUS] = ACTIONS(7725), + [anon_sym_DOT] = ACTIONS(7723), + [anon_sym_DOT_STAR] = ACTIONS(7725), + [anon_sym_DASH_GT] = ACTIONS(7725), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7725), + [anon_sym_override] = ACTIONS(7725), + [anon_sym_GT2] = ACTIONS(7725), + [anon_sym_requires] = ACTIONS(7725), }, - [STATE(2657)] = { - [sym_identifier] = ACTIONS(8333), - [aux_sym_preproc_def_token1] = ACTIONS(8333), - [aux_sym_preproc_if_token1] = ACTIONS(8333), - [aux_sym_preproc_if_token2] = ACTIONS(8333), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8333), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8333), - [aux_sym_preproc_else_token1] = ACTIONS(8333), - [aux_sym_preproc_elif_token1] = ACTIONS(8333), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8333), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8333), - [sym_preproc_directive] = ACTIONS(8333), - [anon_sym_LPAREN2] = ACTIONS(8335), - [anon_sym_TILDE] = ACTIONS(8335), - [anon_sym_STAR] = ACTIONS(8335), - [anon_sym_AMP_AMP] = ACTIONS(8335), - [anon_sym_AMP] = ACTIONS(8333), - [anon_sym_SEMI] = ACTIONS(8335), - [anon_sym___extension__] = ACTIONS(8333), - [anon_sym_typedef] = ACTIONS(8333), - [anon_sym_virtual] = ACTIONS(8333), - [anon_sym_extern] = ACTIONS(8333), - [anon_sym___attribute__] = ACTIONS(8333), - [anon_sym___attribute] = ACTIONS(8333), - [anon_sym_using] = ACTIONS(8333), - [anon_sym_COLON_COLON] = ACTIONS(8335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8335), - [anon_sym___declspec] = ACTIONS(8333), - [anon_sym___based] = ACTIONS(8333), - [anon_sym_signed] = ACTIONS(8333), - [anon_sym_unsigned] = ACTIONS(8333), - [anon_sym_long] = ACTIONS(8333), - [anon_sym_short] = ACTIONS(8333), - [anon_sym_LBRACK] = ACTIONS(8333), - [anon_sym_static] = ACTIONS(8333), - [anon_sym_register] = ACTIONS(8333), - [anon_sym_inline] = ACTIONS(8333), - [anon_sym___inline] = ACTIONS(8333), - [anon_sym___inline__] = ACTIONS(8333), - [anon_sym___forceinline] = ACTIONS(8333), - [anon_sym_thread_local] = ACTIONS(8333), - [anon_sym___thread] = ACTIONS(8333), - [anon_sym_const] = ACTIONS(8333), - [anon_sym_constexpr] = ACTIONS(8333), - [anon_sym_volatile] = ACTIONS(8333), - [anon_sym_restrict] = ACTIONS(8333), - [anon_sym___restrict__] = ACTIONS(8333), - [anon_sym__Atomic] = ACTIONS(8333), - [anon_sym__Noreturn] = ACTIONS(8333), - [anon_sym_noreturn] = ACTIONS(8333), - [anon_sym__Nonnull] = ACTIONS(8333), - [anon_sym_mutable] = ACTIONS(8333), - [anon_sym_constinit] = ACTIONS(8333), - [anon_sym_consteval] = ACTIONS(8333), - [anon_sym_alignas] = ACTIONS(8333), - [anon_sym__Alignas] = ACTIONS(8333), - [sym_primitive_type] = ACTIONS(8333), - [anon_sym_enum] = ACTIONS(8333), - [anon_sym_class] = ACTIONS(8333), - [anon_sym_struct] = ACTIONS(8333), - [anon_sym_union] = ACTIONS(8333), - [anon_sym_typename] = ACTIONS(8333), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8333), - [anon_sym_decltype] = ACTIONS(8333), - [anon_sym_explicit] = ACTIONS(8333), - [anon_sym_private] = ACTIONS(8333), - [anon_sym_template] = ACTIONS(8333), - [anon_sym_operator] = ACTIONS(8333), - [anon_sym_friend] = ACTIONS(8333), - [anon_sym_public] = ACTIONS(8333), - [anon_sym_protected] = ACTIONS(8333), - [anon_sym_static_assert] = ACTIONS(8333), - [anon_sym_LBRACK_COLON] = ACTIONS(8335), + [STATE(2518)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7729), + [anon_sym_COMMA] = ACTIONS(7729), + [anon_sym_LPAREN2] = ACTIONS(7729), + [anon_sym_DASH] = ACTIONS(7727), + [anon_sym_PLUS] = ACTIONS(7727), + [anon_sym_STAR] = ACTIONS(7727), + [anon_sym_SLASH] = ACTIONS(7727), + [anon_sym_PERCENT] = ACTIONS(7727), + [anon_sym_PIPE_PIPE] = ACTIONS(7729), + [anon_sym_AMP_AMP] = ACTIONS(7729), + [anon_sym_PIPE] = ACTIONS(7727), + [anon_sym_CARET] = ACTIONS(7727), + [anon_sym_AMP] = ACTIONS(7727), + [anon_sym_EQ_EQ] = ACTIONS(7729), + [anon_sym_BANG_EQ] = ACTIONS(7729), + [anon_sym_GT] = ACTIONS(7727), + [anon_sym_GT_EQ] = ACTIONS(7727), + [anon_sym_LT_EQ] = ACTIONS(7727), + [anon_sym_LT] = ACTIONS(7727), + [anon_sym_LT_LT] = ACTIONS(7727), + [anon_sym_GT_GT] = ACTIONS(7727), + [anon_sym___extension__] = ACTIONS(7729), + [anon_sym___attribute__] = ACTIONS(7729), + [anon_sym___attribute] = ACTIONS(7727), + [anon_sym_LBRACE] = ACTIONS(7729), + [anon_sym_signed] = ACTIONS(8226), + [anon_sym_unsigned] = ACTIONS(8226), + [anon_sym_long] = ACTIONS(8226), + [anon_sym_short] = ACTIONS(8226), + [anon_sym_LBRACK] = ACTIONS(7729), + [anon_sym_EQ] = ACTIONS(7727), + [anon_sym_const] = ACTIONS(7727), + [anon_sym_constexpr] = ACTIONS(7729), + [anon_sym_volatile] = ACTIONS(7729), + [anon_sym_restrict] = ACTIONS(7729), + [anon_sym___restrict__] = ACTIONS(7729), + [anon_sym__Atomic] = ACTIONS(7729), + [anon_sym__Noreturn] = ACTIONS(7729), + [anon_sym_noreturn] = ACTIONS(7729), + [anon_sym__Nonnull] = ACTIONS(7729), + [anon_sym_mutable] = ACTIONS(7729), + [anon_sym_constinit] = ACTIONS(7729), + [anon_sym_consteval] = ACTIONS(7729), + [anon_sym_alignas] = ACTIONS(7729), + [anon_sym__Alignas] = ACTIONS(7729), + [anon_sym_QMARK] = ACTIONS(7729), + [anon_sym_STAR_EQ] = ACTIONS(7729), + [anon_sym_SLASH_EQ] = ACTIONS(7729), + [anon_sym_PERCENT_EQ] = ACTIONS(7729), + [anon_sym_PLUS_EQ] = ACTIONS(7729), + [anon_sym_DASH_EQ] = ACTIONS(7729), + [anon_sym_LT_LT_EQ] = ACTIONS(7729), + [anon_sym_GT_GT_EQ] = ACTIONS(7727), + [anon_sym_AMP_EQ] = ACTIONS(7729), + [anon_sym_CARET_EQ] = ACTIONS(7729), + [anon_sym_PIPE_EQ] = ACTIONS(7729), + [anon_sym_and_eq] = ACTIONS(7729), + [anon_sym_or_eq] = ACTIONS(7729), + [anon_sym_xor_eq] = ACTIONS(7729), + [anon_sym_LT_EQ_GT] = ACTIONS(7729), + [anon_sym_or] = ACTIONS(7727), + [anon_sym_and] = ACTIONS(7727), + [anon_sym_bitor] = ACTIONS(7729), + [anon_sym_xor] = ACTIONS(7727), + [anon_sym_bitand] = ACTIONS(7729), + [anon_sym_not_eq] = ACTIONS(7729), + [anon_sym_DASH_DASH] = ACTIONS(7729), + [anon_sym_PLUS_PLUS] = ACTIONS(7729), + [anon_sym_DOT] = ACTIONS(7727), + [anon_sym_DOT_STAR] = ACTIONS(7729), + [anon_sym_DASH_GT] = ACTIONS(7729), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7729), + [anon_sym_override] = ACTIONS(7729), + [anon_sym_GT2] = ACTIONS(7729), + [anon_sym_requires] = ACTIONS(7729), }, - [STATE(2658)] = { - [sym_attribute_specifier] = STATE(3107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7097), - [anon_sym_COMMA] = ACTIONS(7097), - [anon_sym_LPAREN2] = ACTIONS(7097), - [anon_sym_DASH] = ACTIONS(7095), - [anon_sym_PLUS] = ACTIONS(7095), - [anon_sym_STAR] = ACTIONS(7095), - [anon_sym_SLASH] = ACTIONS(7095), - [anon_sym_PERCENT] = ACTIONS(7095), + [STATE(2519)] = { + [sym__abstract_declarator] = STATE(5318), + [sym_abstract_parenthesized_declarator] = STATE(5063), + [sym_abstract_pointer_declarator] = STATE(5063), + [sym_abstract_function_declarator] = STATE(5063), + [sym_abstract_array_declarator] = STATE(5063), + [sym_type_qualifier] = STATE(2406), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1978), + [sym_abstract_reference_declarator] = STATE(5063), + [sym__function_declarator_seq] = STATE(5065), + [aux_sym__type_definition_type_repeat1] = STATE(2406), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(7112), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(7363), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7347), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(7365), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7347), + [anon_sym_AMP] = ACTIONS(7367), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7347), + [anon_sym_GT_GT] = ACTIONS(7347), + [anon_sym___extension__] = ACTIONS(7120), + [anon_sym_LBRACK] = ACTIONS(7128), + [anon_sym_RBRACK] = ACTIONS(7345), + [anon_sym_EQ] = ACTIONS(7347), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(7120), + [anon_sym_volatile] = ACTIONS(7120), + [anon_sym_restrict] = ACTIONS(7120), + [anon_sym___restrict__] = ACTIONS(7120), + [anon_sym__Atomic] = ACTIONS(7120), + [anon_sym__Noreturn] = ACTIONS(7120), + [anon_sym_noreturn] = ACTIONS(7120), + [anon_sym__Nonnull] = ACTIONS(7120), + [anon_sym_mutable] = ACTIONS(7120), + [anon_sym_constinit] = ACTIONS(7120), + [anon_sym_consteval] = ACTIONS(7120), + [anon_sym_alignas] = ACTIONS(7130), + [anon_sym__Alignas] = ACTIONS(7130), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_STAR_EQ] = ACTIONS(7345), + [anon_sym_SLASH_EQ] = ACTIONS(7345), + [anon_sym_PERCENT_EQ] = ACTIONS(7345), + [anon_sym_PLUS_EQ] = ACTIONS(7345), + [anon_sym_DASH_EQ] = ACTIONS(7345), + [anon_sym_LT_LT_EQ] = ACTIONS(7345), + [anon_sym_GT_GT_EQ] = ACTIONS(7345), + [anon_sym_AMP_EQ] = ACTIONS(7345), + [anon_sym_CARET_EQ] = ACTIONS(7345), + [anon_sym_PIPE_EQ] = ACTIONS(7345), + [anon_sym_and_eq] = ACTIONS(7345), + [anon_sym_or_eq] = ACTIONS(7345), + [anon_sym_xor_eq] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7347), + [anon_sym_and] = ACTIONS(7347), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7347), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), + [sym_comment] = ACTIONS(3), + }, + [STATE(2520)] = { + [sym_attribute_specifier] = STATE(2962), + [sym_enumerator_list] = STATE(2729), + [sym__enum_base_clause] = STATE(2626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8002), + [anon_sym_COMMA] = ACTIONS(8002), + [anon_sym_RPAREN] = ACTIONS(8002), + [anon_sym_LPAREN2] = ACTIONS(8002), + [anon_sym_DASH] = ACTIONS(8000), + [anon_sym_PLUS] = ACTIONS(8000), + [anon_sym_STAR] = ACTIONS(8000), + [anon_sym_SLASH] = ACTIONS(8000), + [anon_sym_PERCENT] = ACTIONS(8000), + [anon_sym_PIPE_PIPE] = ACTIONS(8002), + [anon_sym_AMP_AMP] = ACTIONS(8002), + [anon_sym_PIPE] = ACTIONS(8000), + [anon_sym_CARET] = ACTIONS(8000), + [anon_sym_AMP] = ACTIONS(8000), + [anon_sym_EQ_EQ] = ACTIONS(8002), + [anon_sym_BANG_EQ] = ACTIONS(8002), + [anon_sym_GT] = ACTIONS(8000), + [anon_sym_GT_EQ] = ACTIONS(8002), + [anon_sym_LT_EQ] = ACTIONS(8000), + [anon_sym_LT] = ACTIONS(8000), + [anon_sym_LT_LT] = ACTIONS(8000), + [anon_sym_GT_GT] = ACTIONS(8000), + [anon_sym___extension__] = ACTIONS(8002), + [anon_sym___attribute__] = ACTIONS(8152), + [anon_sym___attribute] = ACTIONS(8154), + [anon_sym_COLON] = ACTIONS(8381), + [anon_sym_LBRACE] = ACTIONS(8383), + [anon_sym_LBRACK] = ACTIONS(8002), + [anon_sym_EQ] = ACTIONS(8000), + [anon_sym_const] = ACTIONS(8000), + [anon_sym_constexpr] = ACTIONS(8002), + [anon_sym_volatile] = ACTIONS(8002), + [anon_sym_restrict] = ACTIONS(8002), + [anon_sym___restrict__] = ACTIONS(8002), + [anon_sym__Atomic] = ACTIONS(8002), + [anon_sym__Noreturn] = ACTIONS(8002), + [anon_sym_noreturn] = ACTIONS(8002), + [anon_sym__Nonnull] = ACTIONS(8002), + [anon_sym_mutable] = ACTIONS(8002), + [anon_sym_constinit] = ACTIONS(8002), + [anon_sym_consteval] = ACTIONS(8002), + [anon_sym_alignas] = ACTIONS(8002), + [anon_sym__Alignas] = ACTIONS(8002), + [anon_sym_QMARK] = ACTIONS(8002), + [anon_sym_STAR_EQ] = ACTIONS(8002), + [anon_sym_SLASH_EQ] = ACTIONS(8002), + [anon_sym_PERCENT_EQ] = ACTIONS(8002), + [anon_sym_PLUS_EQ] = ACTIONS(8002), + [anon_sym_DASH_EQ] = ACTIONS(8002), + [anon_sym_LT_LT_EQ] = ACTIONS(8002), + [anon_sym_GT_GT_EQ] = ACTIONS(8002), + [anon_sym_AMP_EQ] = ACTIONS(8002), + [anon_sym_CARET_EQ] = ACTIONS(8002), + [anon_sym_PIPE_EQ] = ACTIONS(8002), + [anon_sym_and_eq] = ACTIONS(8002), + [anon_sym_or_eq] = ACTIONS(8002), + [anon_sym_xor_eq] = ACTIONS(8002), + [anon_sym_LT_EQ_GT] = ACTIONS(8002), + [anon_sym_or] = ACTIONS(8000), + [anon_sym_and] = ACTIONS(8000), + [anon_sym_bitor] = ACTIONS(8002), + [anon_sym_xor] = ACTIONS(8000), + [anon_sym_bitand] = ACTIONS(8002), + [anon_sym_not_eq] = ACTIONS(8002), + [anon_sym_DASH_DASH] = ACTIONS(8002), + [anon_sym_PLUS_PLUS] = ACTIONS(8002), + [anon_sym_DOT] = ACTIONS(8000), + [anon_sym_DOT_STAR] = ACTIONS(8002), + [anon_sym_DASH_GT] = ACTIONS(8000), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8002), + [anon_sym_override] = ACTIONS(8002), + [anon_sym_requires] = ACTIONS(8002), + [anon_sym_DASH_GT_STAR] = ACTIONS(8002), + }, + [STATE(2521)] = { + [sym_attribute_specifier] = STATE(3047), + [sym_enumerator_list] = STATE(2666), + [sym__enum_base_clause] = STATE(2608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8008), + [anon_sym_COMMA] = ACTIONS(8008), + [anon_sym_RPAREN] = ACTIONS(8008), + [anon_sym_LPAREN2] = ACTIONS(8008), + [anon_sym_DASH] = ACTIONS(8006), + [anon_sym_PLUS] = ACTIONS(8006), + [anon_sym_STAR] = ACTIONS(8006), + [anon_sym_SLASH] = ACTIONS(8006), + [anon_sym_PERCENT] = ACTIONS(8006), + [anon_sym_PIPE_PIPE] = ACTIONS(8008), + [anon_sym_AMP_AMP] = ACTIONS(8008), + [anon_sym_PIPE] = ACTIONS(8006), + [anon_sym_CARET] = ACTIONS(8006), + [anon_sym_AMP] = ACTIONS(8006), + [anon_sym_EQ_EQ] = ACTIONS(8008), + [anon_sym_BANG_EQ] = ACTIONS(8008), + [anon_sym_GT] = ACTIONS(8006), + [anon_sym_GT_EQ] = ACTIONS(8008), + [anon_sym_LT_EQ] = ACTIONS(8006), + [anon_sym_LT] = ACTIONS(8006), + [anon_sym_LT_LT] = ACTIONS(8006), + [anon_sym_GT_GT] = ACTIONS(8006), + [anon_sym___extension__] = ACTIONS(8008), + [anon_sym___attribute__] = ACTIONS(8152), + [anon_sym___attribute] = ACTIONS(8154), + [anon_sym_COLON] = ACTIONS(8381), + [anon_sym_LBRACE] = ACTIONS(8383), + [anon_sym_LBRACK] = ACTIONS(8008), + [anon_sym_EQ] = ACTIONS(8006), + [anon_sym_const] = ACTIONS(8006), + [anon_sym_constexpr] = ACTIONS(8008), + [anon_sym_volatile] = ACTIONS(8008), + [anon_sym_restrict] = ACTIONS(8008), + [anon_sym___restrict__] = ACTIONS(8008), + [anon_sym__Atomic] = ACTIONS(8008), + [anon_sym__Noreturn] = ACTIONS(8008), + [anon_sym_noreturn] = ACTIONS(8008), + [anon_sym__Nonnull] = ACTIONS(8008), + [anon_sym_mutable] = ACTIONS(8008), + [anon_sym_constinit] = ACTIONS(8008), + [anon_sym_consteval] = ACTIONS(8008), + [anon_sym_alignas] = ACTIONS(8008), + [anon_sym__Alignas] = ACTIONS(8008), + [anon_sym_QMARK] = ACTIONS(8008), + [anon_sym_STAR_EQ] = ACTIONS(8008), + [anon_sym_SLASH_EQ] = ACTIONS(8008), + [anon_sym_PERCENT_EQ] = ACTIONS(8008), + [anon_sym_PLUS_EQ] = ACTIONS(8008), + [anon_sym_DASH_EQ] = ACTIONS(8008), + [anon_sym_LT_LT_EQ] = ACTIONS(8008), + [anon_sym_GT_GT_EQ] = ACTIONS(8008), + [anon_sym_AMP_EQ] = ACTIONS(8008), + [anon_sym_CARET_EQ] = ACTIONS(8008), + [anon_sym_PIPE_EQ] = ACTIONS(8008), + [anon_sym_and_eq] = ACTIONS(8008), + [anon_sym_or_eq] = ACTIONS(8008), + [anon_sym_xor_eq] = ACTIONS(8008), + [anon_sym_LT_EQ_GT] = ACTIONS(8008), + [anon_sym_or] = ACTIONS(8006), + [anon_sym_and] = ACTIONS(8006), + [anon_sym_bitor] = ACTIONS(8008), + [anon_sym_xor] = ACTIONS(8006), + [anon_sym_bitand] = ACTIONS(8008), + [anon_sym_not_eq] = ACTIONS(8008), + [anon_sym_DASH_DASH] = ACTIONS(8008), + [anon_sym_PLUS_PLUS] = ACTIONS(8008), + [anon_sym_DOT] = ACTIONS(8006), + [anon_sym_DOT_STAR] = ACTIONS(8008), + [anon_sym_DASH_GT] = ACTIONS(8006), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8008), + [anon_sym_override] = ACTIONS(8008), + [anon_sym_requires] = ACTIONS(8008), + [anon_sym_DASH_GT_STAR] = ACTIONS(8008), + }, + [STATE(2522)] = { + [sym_template_argument_list] = STATE(5613), + [sym_identifier] = ACTIONS(7085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7087), + [anon_sym_COMMA] = ACTIONS(7087), + [anon_sym_RPAREN] = ACTIONS(7087), + [anon_sym_LPAREN2] = ACTIONS(7087), + [anon_sym_TILDE] = ACTIONS(7090), + [anon_sym_DASH] = ACTIONS(7092), + [anon_sym_PLUS] = ACTIONS(7092), + [anon_sym_STAR] = ACTIONS(7087), + [anon_sym_SLASH] = ACTIONS(7092), + [anon_sym_PERCENT] = ACTIONS(7097), [anon_sym_PIPE_PIPE] = ACTIONS(7097), - [anon_sym_AMP_AMP] = ACTIONS(7097), - [anon_sym_PIPE] = ACTIONS(7095), - [anon_sym_CARET] = ACTIONS(7095), - [anon_sym_AMP] = ACTIONS(7095), + [anon_sym_AMP_AMP] = ACTIONS(7087), + [anon_sym_PIPE] = ACTIONS(7092), + [anon_sym_CARET] = ACTIONS(7097), + [anon_sym_AMP] = ACTIONS(7094), [anon_sym_EQ_EQ] = ACTIONS(7097), [anon_sym_BANG_EQ] = ACTIONS(7097), - [anon_sym_GT] = ACTIONS(7095), - [anon_sym_GT_EQ] = ACTIONS(7095), - [anon_sym_LT_EQ] = ACTIONS(7095), - [anon_sym_LT] = ACTIONS(7095), - [anon_sym_LT_LT] = ACTIONS(7095), - [anon_sym_GT_GT] = ACTIONS(7095), - [anon_sym___extension__] = ACTIONS(7097), - [anon_sym___attribute__] = ACTIONS(7862), - [anon_sym___attribute] = ACTIONS(7864), - [anon_sym_LBRACE] = ACTIONS(7097), - [anon_sym_LBRACK] = ACTIONS(7097), - [anon_sym_EQ] = ACTIONS(7095), - [anon_sym_const] = ACTIONS(7095), - [anon_sym_constexpr] = ACTIONS(7097), - [anon_sym_volatile] = ACTIONS(7097), - [anon_sym_restrict] = ACTIONS(7097), - [anon_sym___restrict__] = ACTIONS(7097), - [anon_sym__Atomic] = ACTIONS(7097), - [anon_sym__Noreturn] = ACTIONS(7097), - [anon_sym_noreturn] = ACTIONS(7097), - [anon_sym__Nonnull] = ACTIONS(7097), - [anon_sym_mutable] = ACTIONS(7097), - [anon_sym_constinit] = ACTIONS(7097), - [anon_sym_consteval] = ACTIONS(7097), - [anon_sym_alignas] = ACTIONS(7097), - [anon_sym__Alignas] = ACTIONS(7097), + [anon_sym_GT] = ACTIONS(7092), + [anon_sym_GT_EQ] = ACTIONS(7097), + [anon_sym_LT_EQ] = ACTIONS(7092), + [anon_sym_LT] = ACTIONS(7099), + [anon_sym_LT_LT] = ACTIONS(7097), + [anon_sym_GT_GT] = ACTIONS(7097), + [anon_sym___extension__] = ACTIONS(7085), + [anon_sym_virtual] = ACTIONS(7085), + [anon_sym_extern] = ACTIONS(7085), + [anon_sym___attribute__] = ACTIONS(7085), + [anon_sym___attribute] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7087), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7090), + [anon_sym___declspec] = ACTIONS(7085), + [anon_sym___based] = ACTIONS(7085), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_LBRACK] = ACTIONS(7094), + [anon_sym_static] = ACTIONS(7085), + [anon_sym_EQ] = ACTIONS(7085), + [anon_sym_register] = ACTIONS(7085), + [anon_sym_inline] = ACTIONS(7085), + [anon_sym___inline] = ACTIONS(7085), + [anon_sym___inline__] = ACTIONS(7085), + [anon_sym___forceinline] = ACTIONS(7085), + [anon_sym_thread_local] = ACTIONS(7085), + [anon_sym___thread] = ACTIONS(7085), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7085), + [anon_sym_volatile] = ACTIONS(7085), + [anon_sym_restrict] = ACTIONS(7085), + [anon_sym___restrict__] = ACTIONS(7085), + [anon_sym__Atomic] = ACTIONS(7085), + [anon_sym__Noreturn] = ACTIONS(7085), + [anon_sym_noreturn] = ACTIONS(7085), + [anon_sym__Nonnull] = ACTIONS(7085), + [anon_sym_mutable] = ACTIONS(7085), + [anon_sym_constinit] = ACTIONS(7085), + [anon_sym_consteval] = ACTIONS(7085), + [anon_sym_alignas] = ACTIONS(7085), + [anon_sym__Alignas] = ACTIONS(7085), [anon_sym_QMARK] = ACTIONS(7097), - [anon_sym_STAR_EQ] = ACTIONS(7097), - [anon_sym_SLASH_EQ] = ACTIONS(7097), - [anon_sym_PERCENT_EQ] = ACTIONS(7097), - [anon_sym_PLUS_EQ] = ACTIONS(7097), - [anon_sym_DASH_EQ] = ACTIONS(7097), - [anon_sym_LT_LT_EQ] = ACTIONS(7097), - [anon_sym_GT_GT_EQ] = ACTIONS(7095), - [anon_sym_AMP_EQ] = ACTIONS(7097), - [anon_sym_CARET_EQ] = ACTIONS(7097), - [anon_sym_PIPE_EQ] = ACTIONS(7097), - [anon_sym_and_eq] = ACTIONS(7097), - [anon_sym_or_eq] = ACTIONS(7097), - [anon_sym_xor_eq] = ACTIONS(7097), [anon_sym_LT_EQ_GT] = ACTIONS(7097), - [anon_sym_or] = ACTIONS(7095), - [anon_sym_and] = ACTIONS(7095), - [anon_sym_bitor] = ACTIONS(7097), - [anon_sym_xor] = ACTIONS(7095), - [anon_sym_bitand] = ACTIONS(7097), - [anon_sym_not_eq] = ACTIONS(7097), + [anon_sym_or] = ACTIONS(7092), + [anon_sym_and] = ACTIONS(7092), + [anon_sym_bitor] = ACTIONS(7092), + [anon_sym_xor] = ACTIONS(7092), + [anon_sym_bitand] = ACTIONS(7092), + [anon_sym_not_eq] = ACTIONS(7092), [anon_sym_DASH_DASH] = ACTIONS(7097), [anon_sym_PLUS_PLUS] = ACTIONS(7097), - [anon_sym_DOT] = ACTIONS(7095), + [anon_sym_DOT] = ACTIONS(7092), [anon_sym_DOT_STAR] = ACTIONS(7097), [anon_sym_DASH_GT] = ACTIONS(7097), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7097), - [anon_sym_override] = ACTIONS(7097), - [anon_sym_GT2] = ACTIONS(7097), - [anon_sym_requires] = ACTIONS(7097), - }, - [STATE(2659)] = { - [sym_attribute_specifier] = STATE(3044), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7055), - [anon_sym_COMMA] = ACTIONS(7055), - [anon_sym_LPAREN2] = ACTIONS(7055), - [anon_sym_DASH] = ACTIONS(7053), - [anon_sym_PLUS] = ACTIONS(7053), - [anon_sym_STAR] = ACTIONS(7053), - [anon_sym_SLASH] = ACTIONS(7053), - [anon_sym_PERCENT] = ACTIONS(7053), - [anon_sym_PIPE_PIPE] = ACTIONS(7055), - [anon_sym_AMP_AMP] = ACTIONS(7055), - [anon_sym_PIPE] = ACTIONS(7053), - [anon_sym_CARET] = ACTIONS(7053), - [anon_sym_AMP] = ACTIONS(7053), - [anon_sym_EQ_EQ] = ACTIONS(7055), - [anon_sym_BANG_EQ] = ACTIONS(7055), - [anon_sym_GT] = ACTIONS(7053), - [anon_sym_GT_EQ] = ACTIONS(7055), - [anon_sym_LT_EQ] = ACTIONS(7053), - [anon_sym_LT] = ACTIONS(7053), - [anon_sym_LT_LT] = ACTIONS(7053), - [anon_sym_GT_GT] = ACTIONS(7053), - [anon_sym___extension__] = ACTIONS(7055), - [anon_sym___attribute__] = ACTIONS(8003), - [anon_sym___attribute] = ACTIONS(8005), - [anon_sym_LBRACE] = ACTIONS(7055), - [anon_sym_LBRACK] = ACTIONS(7055), - [anon_sym_RBRACK] = ACTIONS(7055), - [anon_sym_EQ] = ACTIONS(7053), - [anon_sym_const] = ACTIONS(7053), - [anon_sym_constexpr] = ACTIONS(7055), - [anon_sym_volatile] = ACTIONS(7055), - [anon_sym_restrict] = ACTIONS(7055), - [anon_sym___restrict__] = ACTIONS(7055), - [anon_sym__Atomic] = ACTIONS(7055), - [anon_sym__Noreturn] = ACTIONS(7055), - [anon_sym_noreturn] = ACTIONS(7055), - [anon_sym__Nonnull] = ACTIONS(7055), - [anon_sym_mutable] = ACTIONS(7055), - [anon_sym_constinit] = ACTIONS(7055), - [anon_sym_consteval] = ACTIONS(7055), - [anon_sym_alignas] = ACTIONS(7055), - [anon_sym__Alignas] = ACTIONS(7055), - [anon_sym_QMARK] = ACTIONS(7055), - [anon_sym_STAR_EQ] = ACTIONS(7055), - [anon_sym_SLASH_EQ] = ACTIONS(7055), - [anon_sym_PERCENT_EQ] = ACTIONS(7055), - [anon_sym_PLUS_EQ] = ACTIONS(7055), - [anon_sym_DASH_EQ] = ACTIONS(7055), - [anon_sym_LT_LT_EQ] = ACTIONS(7055), - [anon_sym_GT_GT_EQ] = ACTIONS(7055), - [anon_sym_AMP_EQ] = ACTIONS(7055), - [anon_sym_CARET_EQ] = ACTIONS(7055), - [anon_sym_PIPE_EQ] = ACTIONS(7055), - [anon_sym_and_eq] = ACTIONS(7055), - [anon_sym_or_eq] = ACTIONS(7055), - [anon_sym_xor_eq] = ACTIONS(7055), - [anon_sym_LT_EQ_GT] = ACTIONS(7055), - [anon_sym_or] = ACTIONS(7053), - [anon_sym_and] = ACTIONS(7053), - [anon_sym_bitor] = ACTIONS(7055), - [anon_sym_xor] = ACTIONS(7053), - [anon_sym_bitand] = ACTIONS(7055), - [anon_sym_not_eq] = ACTIONS(7055), - [anon_sym_DASH_DASH] = ACTIONS(7055), - [anon_sym_PLUS_PLUS] = ACTIONS(7055), - [anon_sym_DOT] = ACTIONS(7053), - [anon_sym_DOT_STAR] = ACTIONS(7055), - [anon_sym_DASH_GT] = ACTIONS(7055), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7055), - [anon_sym_override] = ACTIONS(7055), - [anon_sym_requires] = ACTIONS(7055), - }, - [STATE(2660)] = { - [sym_identifier] = ACTIONS(6242), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), - [anon_sym_COMMA] = ACTIONS(6244), - [anon_sym_RPAREN] = ACTIONS(6244), - [anon_sym_LPAREN2] = ACTIONS(6244), - [anon_sym_DASH] = ACTIONS(6242), - [anon_sym_PLUS] = ACTIONS(6242), - [anon_sym_STAR] = ACTIONS(6244), - [anon_sym_SLASH] = ACTIONS(6242), - [anon_sym_PERCENT] = ACTIONS(6244), - [anon_sym_PIPE_PIPE] = ACTIONS(6244), - [anon_sym_AMP_AMP] = ACTIONS(6244), - [anon_sym_PIPE] = ACTIONS(6242), - [anon_sym_CARET] = ACTIONS(6244), - [anon_sym_AMP] = ACTIONS(6242), - [anon_sym_EQ_EQ] = ACTIONS(6244), - [anon_sym_BANG_EQ] = ACTIONS(6244), - [anon_sym_GT] = ACTIONS(6242), - [anon_sym_GT_EQ] = ACTIONS(6244), - [anon_sym_LT_EQ] = ACTIONS(6242), - [anon_sym_LT] = ACTIONS(6242), - [anon_sym_LT_LT] = ACTIONS(6244), - [anon_sym_GT_GT] = ACTIONS(6244), - [anon_sym_SEMI] = ACTIONS(6244), - [anon_sym___extension__] = ACTIONS(6242), - [anon_sym___attribute__] = ACTIONS(6242), - [anon_sym___attribute] = ACTIONS(6242), - [anon_sym_COLON] = ACTIONS(6242), - [anon_sym_COLON_COLON] = ACTIONS(6244), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6244), - [anon_sym___based] = ACTIONS(6242), - [anon_sym_LBRACE] = ACTIONS(6244), - [anon_sym_RBRACE] = ACTIONS(6244), - [anon_sym_signed] = ACTIONS(6242), - [anon_sym_unsigned] = ACTIONS(6242), - [anon_sym_long] = ACTIONS(6242), - [anon_sym_short] = ACTIONS(6242), - [anon_sym_LBRACK] = ACTIONS(6244), - [anon_sym_const] = ACTIONS(6242), - [anon_sym_constexpr] = ACTIONS(6242), - [anon_sym_volatile] = ACTIONS(6242), - [anon_sym_restrict] = ACTIONS(6242), - [anon_sym___restrict__] = ACTIONS(6242), - [anon_sym__Atomic] = ACTIONS(6242), - [anon_sym__Noreturn] = ACTIONS(6242), - [anon_sym_noreturn] = ACTIONS(6242), - [anon_sym__Nonnull] = ACTIONS(6242), - [anon_sym_mutable] = ACTIONS(6242), - [anon_sym_constinit] = ACTIONS(6242), - [anon_sym_consteval] = ACTIONS(6242), - [anon_sym_alignas] = ACTIONS(6242), - [anon_sym__Alignas] = ACTIONS(6242), - [sym_primitive_type] = ACTIONS(6242), - [anon_sym_QMARK] = ACTIONS(6244), - [anon_sym_LT_EQ_GT] = ACTIONS(6244), - [anon_sym_or] = ACTIONS(6242), - [anon_sym_and] = ACTIONS(6242), - [anon_sym_bitor] = ACTIONS(6242), - [anon_sym_xor] = ACTIONS(6242), - [anon_sym_bitand] = ACTIONS(6242), - [anon_sym_not_eq] = ACTIONS(6242), - [anon_sym_DASH_DASH] = ACTIONS(6244), - [anon_sym_PLUS_PLUS] = ACTIONS(6244), - [anon_sym_DOT] = ACTIONS(6242), - [anon_sym_DOT_STAR] = ACTIONS(6244), - [anon_sym_DASH_GT] = ACTIONS(6244), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6242), - [anon_sym_decltype] = ACTIONS(6242), - [anon_sym_final] = ACTIONS(6242), - [anon_sym_override] = ACTIONS(6242), - [anon_sym_requires] = ACTIONS(6242), - [anon_sym_COLON_RBRACK] = ACTIONS(6244), - }, - [STATE(2661)] = { - [sym_identifier] = ACTIONS(6246), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6248), - [anon_sym_COMMA] = ACTIONS(6248), - [anon_sym_RPAREN] = ACTIONS(6248), - [anon_sym_LPAREN2] = ACTIONS(6248), - [anon_sym_DASH] = ACTIONS(6246), - [anon_sym_PLUS] = ACTIONS(6246), - [anon_sym_STAR] = ACTIONS(6248), - [anon_sym_SLASH] = ACTIONS(6246), - [anon_sym_PERCENT] = ACTIONS(6248), - [anon_sym_PIPE_PIPE] = ACTIONS(6248), - [anon_sym_AMP_AMP] = ACTIONS(6248), - [anon_sym_PIPE] = ACTIONS(6246), - [anon_sym_CARET] = ACTIONS(6248), - [anon_sym_AMP] = ACTIONS(6246), - [anon_sym_EQ_EQ] = ACTIONS(6248), - [anon_sym_BANG_EQ] = ACTIONS(6248), - [anon_sym_GT] = ACTIONS(6246), - [anon_sym_GT_EQ] = ACTIONS(6248), - [anon_sym_LT_EQ] = ACTIONS(6246), - [anon_sym_LT] = ACTIONS(6246), - [anon_sym_LT_LT] = ACTIONS(6248), - [anon_sym_GT_GT] = ACTIONS(6248), - [anon_sym_SEMI] = ACTIONS(6248), - [anon_sym___extension__] = ACTIONS(6246), - [anon_sym___attribute__] = ACTIONS(6246), - [anon_sym___attribute] = ACTIONS(6246), - [anon_sym_COLON] = ACTIONS(6246), - [anon_sym_COLON_COLON] = ACTIONS(6248), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6248), - [anon_sym___based] = ACTIONS(6246), - [anon_sym_LBRACE] = ACTIONS(6248), - [anon_sym_RBRACE] = ACTIONS(6248), - [anon_sym_signed] = ACTIONS(6246), - [anon_sym_unsigned] = ACTIONS(6246), - [anon_sym_long] = ACTIONS(6246), - [anon_sym_short] = ACTIONS(6246), - [anon_sym_LBRACK] = ACTIONS(6248), - [anon_sym_const] = ACTIONS(6246), - [anon_sym_constexpr] = ACTIONS(6246), - [anon_sym_volatile] = ACTIONS(6246), - [anon_sym_restrict] = ACTIONS(6246), - [anon_sym___restrict__] = ACTIONS(6246), - [anon_sym__Atomic] = ACTIONS(6246), - [anon_sym__Noreturn] = ACTIONS(6246), - [anon_sym_noreturn] = ACTIONS(6246), - [anon_sym__Nonnull] = ACTIONS(6246), - [anon_sym_mutable] = ACTIONS(6246), - [anon_sym_constinit] = ACTIONS(6246), - [anon_sym_consteval] = ACTIONS(6246), - [anon_sym_alignas] = ACTIONS(6246), - [anon_sym__Alignas] = ACTIONS(6246), - [sym_primitive_type] = ACTIONS(6246), - [anon_sym_QMARK] = ACTIONS(6248), - [anon_sym_LT_EQ_GT] = ACTIONS(6248), - [anon_sym_or] = ACTIONS(6246), - [anon_sym_and] = ACTIONS(6246), - [anon_sym_bitor] = ACTIONS(6246), - [anon_sym_xor] = ACTIONS(6246), - [anon_sym_bitand] = ACTIONS(6246), - [anon_sym_not_eq] = ACTIONS(6246), - [anon_sym_DASH_DASH] = ACTIONS(6248), - [anon_sym_PLUS_PLUS] = ACTIONS(6248), - [anon_sym_DOT] = ACTIONS(6246), - [anon_sym_DOT_STAR] = ACTIONS(6248), - [anon_sym_DASH_GT] = ACTIONS(6248), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6246), - [anon_sym_decltype] = ACTIONS(6246), - [anon_sym_final] = ACTIONS(6246), - [anon_sym_override] = ACTIONS(6246), - [anon_sym_requires] = ACTIONS(6246), - [anon_sym_COLON_RBRACK] = ACTIONS(6248), - }, - [STATE(2662)] = { - [sym_identifier] = ACTIONS(6250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6252), - [anon_sym_COMMA] = ACTIONS(6252), - [anon_sym_RPAREN] = ACTIONS(6252), - [anon_sym_LPAREN2] = ACTIONS(6252), - [anon_sym_DASH] = ACTIONS(6250), - [anon_sym_PLUS] = ACTIONS(6250), - [anon_sym_STAR] = ACTIONS(6252), - [anon_sym_SLASH] = ACTIONS(6250), - [anon_sym_PERCENT] = ACTIONS(6252), - [anon_sym_PIPE_PIPE] = ACTIONS(6252), - [anon_sym_AMP_AMP] = ACTIONS(6252), - [anon_sym_PIPE] = ACTIONS(6250), - [anon_sym_CARET] = ACTIONS(6252), - [anon_sym_AMP] = ACTIONS(6250), - [anon_sym_EQ_EQ] = ACTIONS(6252), - [anon_sym_BANG_EQ] = ACTIONS(6252), - [anon_sym_GT] = ACTIONS(6250), - [anon_sym_GT_EQ] = ACTIONS(6252), - [anon_sym_LT_EQ] = ACTIONS(6250), - [anon_sym_LT] = ACTIONS(6250), - [anon_sym_LT_LT] = ACTIONS(6252), - [anon_sym_GT_GT] = ACTIONS(6252), - [anon_sym_SEMI] = ACTIONS(6252), - [anon_sym___extension__] = ACTIONS(6250), - [anon_sym___attribute__] = ACTIONS(6250), - [anon_sym___attribute] = ACTIONS(6250), - [anon_sym_COLON] = ACTIONS(6250), - [anon_sym_COLON_COLON] = ACTIONS(6252), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6252), - [anon_sym___based] = ACTIONS(6250), - [anon_sym_LBRACE] = ACTIONS(6252), - [anon_sym_RBRACE] = ACTIONS(6252), - [anon_sym_signed] = ACTIONS(6250), - [anon_sym_unsigned] = ACTIONS(6250), - [anon_sym_long] = ACTIONS(6250), - [anon_sym_short] = ACTIONS(6250), - [anon_sym_LBRACK] = ACTIONS(6252), - [anon_sym_const] = ACTIONS(6250), - [anon_sym_constexpr] = ACTIONS(6250), - [anon_sym_volatile] = ACTIONS(6250), - [anon_sym_restrict] = ACTIONS(6250), - [anon_sym___restrict__] = ACTIONS(6250), - [anon_sym__Atomic] = ACTIONS(6250), - [anon_sym__Noreturn] = ACTIONS(6250), - [anon_sym_noreturn] = ACTIONS(6250), - [anon_sym__Nonnull] = ACTIONS(6250), - [anon_sym_mutable] = ACTIONS(6250), - [anon_sym_constinit] = ACTIONS(6250), - [anon_sym_consteval] = ACTIONS(6250), - [anon_sym_alignas] = ACTIONS(6250), - [anon_sym__Alignas] = ACTIONS(6250), - [sym_primitive_type] = ACTIONS(6250), - [anon_sym_QMARK] = ACTIONS(6252), - [anon_sym_LT_EQ_GT] = ACTIONS(6252), - [anon_sym_or] = ACTIONS(6250), - [anon_sym_and] = ACTIONS(6250), - [anon_sym_bitor] = ACTIONS(6250), - [anon_sym_xor] = ACTIONS(6250), - [anon_sym_bitand] = ACTIONS(6250), - [anon_sym_not_eq] = ACTIONS(6250), - [anon_sym_DASH_DASH] = ACTIONS(6252), - [anon_sym_PLUS_PLUS] = ACTIONS(6252), - [anon_sym_DOT] = ACTIONS(6250), - [anon_sym_DOT_STAR] = ACTIONS(6252), - [anon_sym_DASH_GT] = ACTIONS(6252), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6250), - [anon_sym_decltype] = ACTIONS(6250), - [anon_sym_final] = ACTIONS(6250), - [anon_sym_override] = ACTIONS(6250), - [anon_sym_requires] = ACTIONS(6250), - [anon_sym_COLON_RBRACK] = ACTIONS(6252), - }, - [STATE(2663)] = { - [sym_attribute_specifier] = STATE(3048), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), - [anon_sym_COMMA] = ACTIONS(7059), - [anon_sym_LPAREN2] = ACTIONS(7059), - [anon_sym_DASH] = ACTIONS(7057), - [anon_sym_PLUS] = ACTIONS(7057), - [anon_sym_STAR] = ACTIONS(7057), - [anon_sym_SLASH] = ACTIONS(7057), - [anon_sym_PERCENT] = ACTIONS(7057), - [anon_sym_PIPE_PIPE] = ACTIONS(7059), - [anon_sym_AMP_AMP] = ACTIONS(7059), - [anon_sym_PIPE] = ACTIONS(7057), - [anon_sym_CARET] = ACTIONS(7057), - [anon_sym_AMP] = ACTIONS(7057), - [anon_sym_EQ_EQ] = ACTIONS(7059), - [anon_sym_BANG_EQ] = ACTIONS(7059), - [anon_sym_GT] = ACTIONS(7057), - [anon_sym_GT_EQ] = ACTIONS(7059), - [anon_sym_LT_EQ] = ACTIONS(7057), - [anon_sym_LT] = ACTIONS(7057), - [anon_sym_LT_LT] = ACTIONS(7057), - [anon_sym_GT_GT] = ACTIONS(7057), - [anon_sym___extension__] = ACTIONS(7059), - [anon_sym___attribute__] = ACTIONS(8003), - [anon_sym___attribute] = ACTIONS(8005), - [anon_sym_LBRACE] = ACTIONS(7059), - [anon_sym_LBRACK] = ACTIONS(7059), - [anon_sym_RBRACK] = ACTIONS(7059), - [anon_sym_EQ] = ACTIONS(7057), - [anon_sym_const] = ACTIONS(7057), - [anon_sym_constexpr] = ACTIONS(7059), - [anon_sym_volatile] = ACTIONS(7059), - [anon_sym_restrict] = ACTIONS(7059), - [anon_sym___restrict__] = ACTIONS(7059), - [anon_sym__Atomic] = ACTIONS(7059), - [anon_sym__Noreturn] = ACTIONS(7059), - [anon_sym_noreturn] = ACTIONS(7059), - [anon_sym__Nonnull] = ACTIONS(7059), - [anon_sym_mutable] = ACTIONS(7059), - [anon_sym_constinit] = ACTIONS(7059), - [anon_sym_consteval] = ACTIONS(7059), - [anon_sym_alignas] = ACTIONS(7059), - [anon_sym__Alignas] = ACTIONS(7059), - [anon_sym_QMARK] = ACTIONS(7059), - [anon_sym_STAR_EQ] = ACTIONS(7059), - [anon_sym_SLASH_EQ] = ACTIONS(7059), - [anon_sym_PERCENT_EQ] = ACTIONS(7059), - [anon_sym_PLUS_EQ] = ACTIONS(7059), - [anon_sym_DASH_EQ] = ACTIONS(7059), - [anon_sym_LT_LT_EQ] = ACTIONS(7059), - [anon_sym_GT_GT_EQ] = ACTIONS(7059), - [anon_sym_AMP_EQ] = ACTIONS(7059), - [anon_sym_CARET_EQ] = ACTIONS(7059), - [anon_sym_PIPE_EQ] = ACTIONS(7059), - [anon_sym_and_eq] = ACTIONS(7059), - [anon_sym_or_eq] = ACTIONS(7059), - [anon_sym_xor_eq] = ACTIONS(7059), - [anon_sym_LT_EQ_GT] = ACTIONS(7059), - [anon_sym_or] = ACTIONS(7057), - [anon_sym_and] = ACTIONS(7057), - [anon_sym_bitor] = ACTIONS(7059), - [anon_sym_xor] = ACTIONS(7057), - [anon_sym_bitand] = ACTIONS(7059), - [anon_sym_not_eq] = ACTIONS(7059), - [anon_sym_DASH_DASH] = ACTIONS(7059), - [anon_sym_PLUS_PLUS] = ACTIONS(7059), - [anon_sym_DOT] = ACTIONS(7057), - [anon_sym_DOT_STAR] = ACTIONS(7059), - [anon_sym_DASH_GT] = ACTIONS(7059), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7059), - [anon_sym_override] = ACTIONS(7059), - [anon_sym_requires] = ACTIONS(7059), - }, - [STATE(2664)] = { - [sym_identifier] = ACTIONS(8347), - [aux_sym_preproc_def_token1] = ACTIONS(8347), - [aux_sym_preproc_if_token1] = ACTIONS(8347), - [aux_sym_preproc_if_token2] = ACTIONS(8347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8347), - [aux_sym_preproc_else_token1] = ACTIONS(8347), - [aux_sym_preproc_elif_token1] = ACTIONS(8347), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8347), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8347), - [sym_preproc_directive] = ACTIONS(8347), - [anon_sym_LPAREN2] = ACTIONS(8349), - [anon_sym_TILDE] = ACTIONS(8349), - [anon_sym_STAR] = ACTIONS(8349), - [anon_sym_AMP_AMP] = ACTIONS(8349), - [anon_sym_AMP] = ACTIONS(8347), - [anon_sym_SEMI] = ACTIONS(8349), - [anon_sym___extension__] = ACTIONS(8347), - [anon_sym_typedef] = ACTIONS(8347), - [anon_sym_virtual] = ACTIONS(8347), - [anon_sym_extern] = ACTIONS(8347), - [anon_sym___attribute__] = ACTIONS(8347), - [anon_sym___attribute] = ACTIONS(8347), - [anon_sym_using] = ACTIONS(8347), - [anon_sym_COLON_COLON] = ACTIONS(8349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8349), - [anon_sym___declspec] = ACTIONS(8347), - [anon_sym___based] = ACTIONS(8347), - [anon_sym_signed] = ACTIONS(8347), - [anon_sym_unsigned] = ACTIONS(8347), - [anon_sym_long] = ACTIONS(8347), - [anon_sym_short] = ACTIONS(8347), - [anon_sym_LBRACK] = ACTIONS(8347), - [anon_sym_static] = ACTIONS(8347), - [anon_sym_register] = ACTIONS(8347), - [anon_sym_inline] = ACTIONS(8347), - [anon_sym___inline] = ACTIONS(8347), - [anon_sym___inline__] = ACTIONS(8347), - [anon_sym___forceinline] = ACTIONS(8347), - [anon_sym_thread_local] = ACTIONS(8347), - [anon_sym___thread] = ACTIONS(8347), - [anon_sym_const] = ACTIONS(8347), - [anon_sym_constexpr] = ACTIONS(8347), - [anon_sym_volatile] = ACTIONS(8347), - [anon_sym_restrict] = ACTIONS(8347), - [anon_sym___restrict__] = ACTIONS(8347), - [anon_sym__Atomic] = ACTIONS(8347), - [anon_sym__Noreturn] = ACTIONS(8347), - [anon_sym_noreturn] = ACTIONS(8347), - [anon_sym__Nonnull] = ACTIONS(8347), - [anon_sym_mutable] = ACTIONS(8347), - [anon_sym_constinit] = ACTIONS(8347), - [anon_sym_consteval] = ACTIONS(8347), - [anon_sym_alignas] = ACTIONS(8347), - [anon_sym__Alignas] = ACTIONS(8347), - [sym_primitive_type] = ACTIONS(8347), - [anon_sym_enum] = ACTIONS(8347), - [anon_sym_class] = ACTIONS(8347), - [anon_sym_struct] = ACTIONS(8347), - [anon_sym_union] = ACTIONS(8347), - [anon_sym_typename] = ACTIONS(8347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8347), - [anon_sym_decltype] = ACTIONS(8347), - [anon_sym_explicit] = ACTIONS(8347), - [anon_sym_private] = ACTIONS(8347), - [anon_sym_template] = ACTIONS(8347), - [anon_sym_operator] = ACTIONS(8347), - [anon_sym_friend] = ACTIONS(8347), - [anon_sym_public] = ACTIONS(8347), - [anon_sym_protected] = ACTIONS(8347), - [anon_sym_static_assert] = ACTIONS(8347), - [anon_sym_LBRACK_COLON] = ACTIONS(8349), - }, - [STATE(2665)] = { - [sym_identifier] = ACTIONS(4107), - [aux_sym_preproc_def_token1] = ACTIONS(4107), - [aux_sym_preproc_if_token1] = ACTIONS(4107), - [aux_sym_preproc_if_token2] = ACTIONS(4107), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4107), - [aux_sym_preproc_else_token1] = ACTIONS(4107), - [aux_sym_preproc_elif_token1] = ACTIONS(4107), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4107), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4107), - [sym_preproc_directive] = ACTIONS(4107), - [anon_sym_LPAREN2] = ACTIONS(4109), - [anon_sym_TILDE] = ACTIONS(4109), - [anon_sym_STAR] = ACTIONS(4109), - [anon_sym_AMP_AMP] = ACTIONS(4109), - [anon_sym_AMP] = ACTIONS(4107), - [anon_sym_SEMI] = ACTIONS(4109), - [anon_sym___extension__] = ACTIONS(4107), - [anon_sym_typedef] = ACTIONS(4107), - [anon_sym_virtual] = ACTIONS(4107), - [anon_sym_extern] = ACTIONS(4107), - [anon_sym___attribute__] = ACTIONS(4107), - [anon_sym___attribute] = ACTIONS(4107), - [anon_sym_using] = ACTIONS(4107), - [anon_sym_COLON_COLON] = ACTIONS(4109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4109), - [anon_sym___declspec] = ACTIONS(4107), - [anon_sym___based] = ACTIONS(4107), - [anon_sym_signed] = ACTIONS(4107), - [anon_sym_unsigned] = ACTIONS(4107), - [anon_sym_long] = ACTIONS(4107), - [anon_sym_short] = ACTIONS(4107), - [anon_sym_LBRACK] = ACTIONS(4107), - [anon_sym_static] = ACTIONS(4107), - [anon_sym_register] = ACTIONS(4107), - [anon_sym_inline] = ACTIONS(4107), - [anon_sym___inline] = ACTIONS(4107), - [anon_sym___inline__] = ACTIONS(4107), - [anon_sym___forceinline] = ACTIONS(4107), - [anon_sym_thread_local] = ACTIONS(4107), - [anon_sym___thread] = ACTIONS(4107), - [anon_sym_const] = ACTIONS(4107), - [anon_sym_constexpr] = ACTIONS(4107), - [anon_sym_volatile] = ACTIONS(4107), - [anon_sym_restrict] = ACTIONS(4107), - [anon_sym___restrict__] = ACTIONS(4107), - [anon_sym__Atomic] = ACTIONS(4107), - [anon_sym__Noreturn] = ACTIONS(4107), - [anon_sym_noreturn] = ACTIONS(4107), - [anon_sym__Nonnull] = ACTIONS(4107), - [anon_sym_mutable] = ACTIONS(4107), - [anon_sym_constinit] = ACTIONS(4107), - [anon_sym_consteval] = ACTIONS(4107), - [anon_sym_alignas] = ACTIONS(4107), - [anon_sym__Alignas] = ACTIONS(4107), - [sym_primitive_type] = ACTIONS(4107), - [anon_sym_enum] = ACTIONS(4107), - [anon_sym_class] = ACTIONS(4107), - [anon_sym_struct] = ACTIONS(4107), - [anon_sym_union] = ACTIONS(4107), - [anon_sym_typename] = ACTIONS(4107), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4107), - [anon_sym_decltype] = ACTIONS(4107), - [anon_sym_explicit] = ACTIONS(4107), - [anon_sym_private] = ACTIONS(4107), - [anon_sym_template] = ACTIONS(4107), - [anon_sym_operator] = ACTIONS(4107), - [anon_sym_friend] = ACTIONS(4107), - [anon_sym_public] = ACTIONS(4107), - [anon_sym_protected] = ACTIONS(4107), - [anon_sym_static_assert] = ACTIONS(4107), - [anon_sym_LBRACK_COLON] = ACTIONS(4109), + [anon_sym_decltype] = ACTIONS(7085), + [anon_sym_template] = ACTIONS(7085), + [anon_sym_operator] = ACTIONS(7085), + [anon_sym_LBRACK_COLON] = ACTIONS(7090), }, - [STATE(2666)] = { - [sym_identifier] = ACTIONS(4111), - [aux_sym_preproc_def_token1] = ACTIONS(4111), - [aux_sym_preproc_if_token1] = ACTIONS(4111), - [aux_sym_preproc_if_token2] = ACTIONS(4111), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4111), - [aux_sym_preproc_else_token1] = ACTIONS(4111), - [aux_sym_preproc_elif_token1] = ACTIONS(4111), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4111), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4111), - [sym_preproc_directive] = ACTIONS(4111), - [anon_sym_LPAREN2] = ACTIONS(4113), - [anon_sym_TILDE] = ACTIONS(4113), - [anon_sym_STAR] = ACTIONS(4113), - [anon_sym_AMP_AMP] = ACTIONS(4113), - [anon_sym_AMP] = ACTIONS(4111), - [anon_sym_SEMI] = ACTIONS(4113), - [anon_sym___extension__] = ACTIONS(4111), - [anon_sym_typedef] = ACTIONS(4111), - [anon_sym_virtual] = ACTIONS(4111), - [anon_sym_extern] = ACTIONS(4111), - [anon_sym___attribute__] = ACTIONS(4111), - [anon_sym___attribute] = ACTIONS(4111), - [anon_sym_using] = ACTIONS(4111), - [anon_sym_COLON_COLON] = ACTIONS(4113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4113), - [anon_sym___declspec] = ACTIONS(4111), - [anon_sym___based] = ACTIONS(4111), - [anon_sym_signed] = ACTIONS(4111), - [anon_sym_unsigned] = ACTIONS(4111), - [anon_sym_long] = ACTIONS(4111), - [anon_sym_short] = ACTIONS(4111), - [anon_sym_LBRACK] = ACTIONS(4111), - [anon_sym_static] = ACTIONS(4111), - [anon_sym_register] = ACTIONS(4111), - [anon_sym_inline] = ACTIONS(4111), - [anon_sym___inline] = ACTIONS(4111), - [anon_sym___inline__] = ACTIONS(4111), - [anon_sym___forceinline] = ACTIONS(4111), - [anon_sym_thread_local] = ACTIONS(4111), - [anon_sym___thread] = ACTIONS(4111), - [anon_sym_const] = ACTIONS(4111), - [anon_sym_constexpr] = ACTIONS(4111), - [anon_sym_volatile] = ACTIONS(4111), - [anon_sym_restrict] = ACTIONS(4111), - [anon_sym___restrict__] = ACTIONS(4111), - [anon_sym__Atomic] = ACTIONS(4111), - [anon_sym__Noreturn] = ACTIONS(4111), - [anon_sym_noreturn] = ACTIONS(4111), - [anon_sym__Nonnull] = ACTIONS(4111), - [anon_sym_mutable] = ACTIONS(4111), - [anon_sym_constinit] = ACTIONS(4111), - [anon_sym_consteval] = ACTIONS(4111), - [anon_sym_alignas] = ACTIONS(4111), - [anon_sym__Alignas] = ACTIONS(4111), - [sym_primitive_type] = ACTIONS(4111), - [anon_sym_enum] = ACTIONS(4111), - [anon_sym_class] = ACTIONS(4111), - [anon_sym_struct] = ACTIONS(4111), - [anon_sym_union] = ACTIONS(4111), - [anon_sym_typename] = ACTIONS(4111), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4111), - [anon_sym_decltype] = ACTIONS(4111), - [anon_sym_explicit] = ACTIONS(4111), - [anon_sym_private] = ACTIONS(4111), - [anon_sym_template] = ACTIONS(4111), - [anon_sym_operator] = ACTIONS(4111), - [anon_sym_friend] = ACTIONS(4111), - [anon_sym_public] = ACTIONS(4111), - [anon_sym_protected] = ACTIONS(4111), - [anon_sym_static_assert] = ACTIONS(4111), - [anon_sym_LBRACK_COLON] = ACTIONS(4113), - }, - [STATE(2667)] = { - [sym_attribute_specifier] = STATE(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7063), - [anon_sym_COMMA] = ACTIONS(7063), - [anon_sym_LPAREN2] = ACTIONS(7063), - [anon_sym_DASH] = ACTIONS(7061), - [anon_sym_PLUS] = ACTIONS(7061), - [anon_sym_STAR] = ACTIONS(7061), - [anon_sym_SLASH] = ACTIONS(7061), - [anon_sym_PERCENT] = ACTIONS(7061), - [anon_sym_PIPE_PIPE] = ACTIONS(7063), - [anon_sym_AMP_AMP] = ACTIONS(7063), - [anon_sym_PIPE] = ACTIONS(7061), - [anon_sym_CARET] = ACTIONS(7061), - [anon_sym_AMP] = ACTIONS(7061), - [anon_sym_EQ_EQ] = ACTIONS(7063), - [anon_sym_BANG_EQ] = ACTIONS(7063), - [anon_sym_GT] = ACTIONS(7061), - [anon_sym_GT_EQ] = ACTIONS(7063), - [anon_sym_LT_EQ] = ACTIONS(7061), - [anon_sym_LT] = ACTIONS(7061), - [anon_sym_LT_LT] = ACTIONS(7061), - [anon_sym_GT_GT] = ACTIONS(7061), - [anon_sym___extension__] = ACTIONS(7063), - [anon_sym___attribute__] = ACTIONS(8003), - [anon_sym___attribute] = ACTIONS(8005), - [anon_sym_LBRACE] = ACTIONS(7063), - [anon_sym_LBRACK] = ACTIONS(7063), - [anon_sym_RBRACK] = ACTIONS(7063), - [anon_sym_EQ] = ACTIONS(7061), - [anon_sym_const] = ACTIONS(7061), - [anon_sym_constexpr] = ACTIONS(7063), - [anon_sym_volatile] = ACTIONS(7063), - [anon_sym_restrict] = ACTIONS(7063), - [anon_sym___restrict__] = ACTIONS(7063), - [anon_sym__Atomic] = ACTIONS(7063), - [anon_sym__Noreturn] = ACTIONS(7063), - [anon_sym_noreturn] = ACTIONS(7063), - [anon_sym__Nonnull] = ACTIONS(7063), - [anon_sym_mutable] = ACTIONS(7063), - [anon_sym_constinit] = ACTIONS(7063), - [anon_sym_consteval] = ACTIONS(7063), - [anon_sym_alignas] = ACTIONS(7063), - [anon_sym__Alignas] = ACTIONS(7063), - [anon_sym_QMARK] = ACTIONS(7063), - [anon_sym_STAR_EQ] = ACTIONS(7063), - [anon_sym_SLASH_EQ] = ACTIONS(7063), - [anon_sym_PERCENT_EQ] = ACTIONS(7063), - [anon_sym_PLUS_EQ] = ACTIONS(7063), - [anon_sym_DASH_EQ] = ACTIONS(7063), - [anon_sym_LT_LT_EQ] = ACTIONS(7063), - [anon_sym_GT_GT_EQ] = ACTIONS(7063), - [anon_sym_AMP_EQ] = ACTIONS(7063), - [anon_sym_CARET_EQ] = ACTIONS(7063), - [anon_sym_PIPE_EQ] = ACTIONS(7063), - [anon_sym_and_eq] = ACTIONS(7063), - [anon_sym_or_eq] = ACTIONS(7063), - [anon_sym_xor_eq] = ACTIONS(7063), - [anon_sym_LT_EQ_GT] = ACTIONS(7063), - [anon_sym_or] = ACTIONS(7061), - [anon_sym_and] = ACTIONS(7061), - [anon_sym_bitor] = ACTIONS(7063), - [anon_sym_xor] = ACTIONS(7061), - [anon_sym_bitand] = ACTIONS(7063), - [anon_sym_not_eq] = ACTIONS(7063), - [anon_sym_DASH_DASH] = ACTIONS(7063), - [anon_sym_PLUS_PLUS] = ACTIONS(7063), - [anon_sym_DOT] = ACTIONS(7061), - [anon_sym_DOT_STAR] = ACTIONS(7063), - [anon_sym_DASH_GT] = ACTIONS(7063), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7063), - [anon_sym_override] = ACTIONS(7063), - [anon_sym_requires] = ACTIONS(7063), - }, - [STATE(2668)] = { - [sym_attribute_specifier] = STATE(3052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7067), - [anon_sym_COMMA] = ACTIONS(7067), - [anon_sym_LPAREN2] = ACTIONS(7067), - [anon_sym_DASH] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7065), - [anon_sym_STAR] = ACTIONS(7065), - [anon_sym_SLASH] = ACTIONS(7065), - [anon_sym_PERCENT] = ACTIONS(7065), - [anon_sym_PIPE_PIPE] = ACTIONS(7067), - [anon_sym_AMP_AMP] = ACTIONS(7067), - [anon_sym_PIPE] = ACTIONS(7065), - [anon_sym_CARET] = ACTIONS(7065), - [anon_sym_AMP] = ACTIONS(7065), - [anon_sym_EQ_EQ] = ACTIONS(7067), - [anon_sym_BANG_EQ] = ACTIONS(7067), - [anon_sym_GT] = ACTIONS(7065), - [anon_sym_GT_EQ] = ACTIONS(7067), - [anon_sym_LT_EQ] = ACTIONS(7065), - [anon_sym_LT] = ACTIONS(7065), - [anon_sym_LT_LT] = ACTIONS(7065), - [anon_sym_GT_GT] = ACTIONS(7065), - [anon_sym___extension__] = ACTIONS(7067), - [anon_sym___attribute__] = ACTIONS(8003), - [anon_sym___attribute] = ACTIONS(8005), - [anon_sym_LBRACE] = ACTIONS(7067), - [anon_sym_LBRACK] = ACTIONS(7067), - [anon_sym_RBRACK] = ACTIONS(7067), - [anon_sym_EQ] = ACTIONS(7065), - [anon_sym_const] = ACTIONS(7065), - [anon_sym_constexpr] = ACTIONS(7067), - [anon_sym_volatile] = ACTIONS(7067), - [anon_sym_restrict] = ACTIONS(7067), - [anon_sym___restrict__] = ACTIONS(7067), - [anon_sym__Atomic] = ACTIONS(7067), - [anon_sym__Noreturn] = ACTIONS(7067), - [anon_sym_noreturn] = ACTIONS(7067), - [anon_sym__Nonnull] = ACTIONS(7067), - [anon_sym_mutable] = ACTIONS(7067), - [anon_sym_constinit] = ACTIONS(7067), - [anon_sym_consteval] = ACTIONS(7067), - [anon_sym_alignas] = ACTIONS(7067), - [anon_sym__Alignas] = ACTIONS(7067), - [anon_sym_QMARK] = ACTIONS(7067), - [anon_sym_STAR_EQ] = ACTIONS(7067), - [anon_sym_SLASH_EQ] = ACTIONS(7067), - [anon_sym_PERCENT_EQ] = ACTIONS(7067), - [anon_sym_PLUS_EQ] = ACTIONS(7067), - [anon_sym_DASH_EQ] = ACTIONS(7067), - [anon_sym_LT_LT_EQ] = ACTIONS(7067), - [anon_sym_GT_GT_EQ] = ACTIONS(7067), - [anon_sym_AMP_EQ] = ACTIONS(7067), - [anon_sym_CARET_EQ] = ACTIONS(7067), - [anon_sym_PIPE_EQ] = ACTIONS(7067), - [anon_sym_and_eq] = ACTIONS(7067), - [anon_sym_or_eq] = ACTIONS(7067), - [anon_sym_xor_eq] = ACTIONS(7067), - [anon_sym_LT_EQ_GT] = ACTIONS(7067), - [anon_sym_or] = ACTIONS(7065), - [anon_sym_and] = ACTIONS(7065), - [anon_sym_bitor] = ACTIONS(7067), - [anon_sym_xor] = ACTIONS(7065), - [anon_sym_bitand] = ACTIONS(7067), - [anon_sym_not_eq] = ACTIONS(7067), - [anon_sym_DASH_DASH] = ACTIONS(7067), - [anon_sym_PLUS_PLUS] = ACTIONS(7067), - [anon_sym_DOT] = ACTIONS(7065), - [anon_sym_DOT_STAR] = ACTIONS(7067), - [anon_sym_DASH_GT] = ACTIONS(7067), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7067), - [anon_sym_override] = ACTIONS(7067), - [anon_sym_requires] = ACTIONS(7067), - }, - [STATE(2669)] = { - [sym_template_argument_list] = STATE(2655), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6203), - [anon_sym_COMMA] = ACTIONS(6203), - [anon_sym_RPAREN] = ACTIONS(6205), - [anon_sym_LPAREN2] = ACTIONS(6205), - [anon_sym_DASH] = ACTIONS(6210), - [anon_sym_PLUS] = ACTIONS(6210), - [anon_sym_STAR] = ACTIONS(6212), - [anon_sym_SLASH] = ACTIONS(6210), - [anon_sym_PERCENT] = ACTIONS(6210), - [anon_sym_PIPE_PIPE] = ACTIONS(6203), - [anon_sym_AMP_AMP] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(6210), - [anon_sym_CARET] = ACTIONS(6210), - [anon_sym_AMP] = ACTIONS(6212), - [anon_sym_EQ_EQ] = ACTIONS(6203), - [anon_sym_BANG_EQ] = ACTIONS(6203), - [anon_sym_GT] = ACTIONS(6210), - [anon_sym_GT_EQ] = ACTIONS(6203), - [anon_sym_LT_EQ] = ACTIONS(6210), - [anon_sym_LT] = ACTIONS(8351), - [anon_sym_LT_LT] = ACTIONS(6210), - [anon_sym_GT_GT] = ACTIONS(6210), - [anon_sym___extension__] = ACTIONS(6208), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6203), - [anon_sym_LBRACE] = ACTIONS(6208), - [anon_sym_LBRACK] = ACTIONS(6212), - [anon_sym_EQ] = ACTIONS(6210), - [anon_sym_const] = ACTIONS(6201), - [anon_sym_constexpr] = ACTIONS(6208), - [anon_sym_volatile] = ACTIONS(6208), - [anon_sym_restrict] = ACTIONS(6208), - [anon_sym___restrict__] = ACTIONS(6208), - [anon_sym__Atomic] = ACTIONS(6208), - [anon_sym__Noreturn] = ACTIONS(6208), - [anon_sym_noreturn] = ACTIONS(6208), - [anon_sym__Nonnull] = ACTIONS(6208), - [anon_sym_mutable] = ACTIONS(6208), - [anon_sym_constinit] = ACTIONS(6208), - [anon_sym_consteval] = ACTIONS(6208), - [anon_sym_alignas] = ACTIONS(6208), - [anon_sym__Alignas] = ACTIONS(6208), - [anon_sym_QMARK] = ACTIONS(6203), - [anon_sym_STAR_EQ] = ACTIONS(6203), - [anon_sym_SLASH_EQ] = ACTIONS(6203), - [anon_sym_PERCENT_EQ] = ACTIONS(6203), - [anon_sym_PLUS_EQ] = ACTIONS(6203), - [anon_sym_DASH_EQ] = ACTIONS(6203), - [anon_sym_LT_LT_EQ] = ACTIONS(6203), - [anon_sym_GT_GT_EQ] = ACTIONS(6203), - [anon_sym_AMP_EQ] = ACTIONS(6203), - [anon_sym_CARET_EQ] = ACTIONS(6203), - [anon_sym_PIPE_EQ] = ACTIONS(6203), - [anon_sym_and_eq] = ACTIONS(6203), - [anon_sym_or_eq] = ACTIONS(6203), - [anon_sym_xor_eq] = ACTIONS(6203), - [anon_sym_LT_EQ_GT] = ACTIONS(6203), - [anon_sym_or] = ACTIONS(6210), - [anon_sym_and] = ACTIONS(6210), - [anon_sym_bitor] = ACTIONS(6203), - [anon_sym_xor] = ACTIONS(6210), - [anon_sym_bitand] = ACTIONS(6203), - [anon_sym_not_eq] = ACTIONS(6203), - [anon_sym_DASH_DASH] = ACTIONS(6203), - [anon_sym_PLUS_PLUS] = ACTIONS(6203), - [anon_sym_DOT] = ACTIONS(6210), - [anon_sym_DOT_STAR] = ACTIONS(6203), - [anon_sym_DASH_GT] = ACTIONS(6210), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6208), - [anon_sym_decltype] = ACTIONS(6208), - [anon_sym_DASH_GT_STAR] = ACTIONS(6203), - }, - [STATE(2670)] = { - [sym_identifier] = ACTIONS(6949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), - [anon_sym_COMMA] = ACTIONS(6951), - [anon_sym_RPAREN] = ACTIONS(6951), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_DASH] = ACTIONS(6949), - [anon_sym_PLUS] = ACTIONS(6949), - [anon_sym_STAR] = ACTIONS(6951), - [anon_sym_SLASH] = ACTIONS(6949), - [anon_sym_PERCENT] = ACTIONS(6951), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_PIPE] = ACTIONS(6949), - [anon_sym_CARET] = ACTIONS(6951), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_GT] = ACTIONS(6949), - [anon_sym_GT_EQ] = ACTIONS(6951), - [anon_sym_LT_EQ] = ACTIONS(6949), - [anon_sym_LT] = ACTIONS(6949), - [anon_sym_LT_LT] = ACTIONS(6951), - [anon_sym_GT_GT] = ACTIONS(6951), - [anon_sym_SEMI] = ACTIONS(6951), - [anon_sym___extension__] = ACTIONS(6949), - [anon_sym___attribute__] = ACTIONS(6949), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_COLON] = ACTIONS(6949), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6951), - [anon_sym___based] = ACTIONS(6949), - [anon_sym_LBRACE] = ACTIONS(6951), - [anon_sym_RBRACE] = ACTIONS(6951), - [anon_sym_signed] = ACTIONS(6949), - [anon_sym_unsigned] = ACTIONS(6949), - [anon_sym_long] = ACTIONS(6949), - [anon_sym_short] = ACTIONS(6949), - [anon_sym_LBRACK] = ACTIONS(6951), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6949), - [anon_sym_volatile] = ACTIONS(6949), - [anon_sym_restrict] = ACTIONS(6949), - [anon_sym___restrict__] = ACTIONS(6949), - [anon_sym__Atomic] = ACTIONS(6949), - [anon_sym__Noreturn] = ACTIONS(6949), - [anon_sym_noreturn] = ACTIONS(6949), - [anon_sym__Nonnull] = ACTIONS(6949), - [anon_sym_mutable] = ACTIONS(6949), - [anon_sym_constinit] = ACTIONS(6949), - [anon_sym_consteval] = ACTIONS(6949), - [anon_sym_alignas] = ACTIONS(6949), - [anon_sym__Alignas] = ACTIONS(6949), - [sym_primitive_type] = ACTIONS(6949), - [anon_sym_QMARK] = ACTIONS(6951), - [anon_sym_LT_EQ_GT] = ACTIONS(6951), - [anon_sym_or] = ACTIONS(6949), - [anon_sym_and] = ACTIONS(6949), - [anon_sym_bitor] = ACTIONS(6949), - [anon_sym_xor] = ACTIONS(6949), - [anon_sym_bitand] = ACTIONS(6949), - [anon_sym_not_eq] = ACTIONS(6949), - [anon_sym_DASH_DASH] = ACTIONS(6951), - [anon_sym_PLUS_PLUS] = ACTIONS(6951), - [anon_sym_DOT] = ACTIONS(6949), - [anon_sym_DOT_STAR] = ACTIONS(6951), - [anon_sym_DASH_GT] = ACTIONS(6951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6949), - [anon_sym_decltype] = ACTIONS(6949), - [anon_sym_final] = ACTIONS(6949), - [anon_sym_override] = ACTIONS(6949), - [anon_sym_requires] = ACTIONS(6949), - [anon_sym_COLON_RBRACK] = ACTIONS(6951), + [STATE(2523)] = { + [sym__abstract_declarator] = STATE(5432), + [sym_abstract_parenthesized_declarator] = STATE(5090), + [sym_abstract_pointer_declarator] = STATE(5090), + [sym_abstract_function_declarator] = STATE(5090), + [sym_abstract_array_declarator] = STATE(5090), + [sym_type_qualifier] = STATE(2307), + [sym_alignas_qualifier] = STATE(2423), + [sym_parameter_list] = STATE(1975), + [sym_abstract_reference_declarator] = STATE(5090), + [sym__function_declarator_seq] = STATE(5091), + [aux_sym__type_definition_type_repeat1] = STATE(2307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), + [anon_sym_COMMA] = ACTIONS(7351), + [anon_sym_LPAREN2] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_PLUS] = ACTIONS(7349), + [anon_sym_STAR] = ACTIONS(7375), + [anon_sym_SLASH] = ACTIONS(7349), + [anon_sym_PERCENT] = ACTIONS(7349), + [anon_sym_PIPE_PIPE] = ACTIONS(7351), + [anon_sym_AMP_AMP] = ACTIONS(7377), + [anon_sym_PIPE] = ACTIONS(7349), + [anon_sym_CARET] = ACTIONS(7349), + [anon_sym_AMP] = ACTIONS(7379), + [anon_sym_EQ_EQ] = ACTIONS(7351), + [anon_sym_BANG_EQ] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7349), + [anon_sym_GT_EQ] = ACTIONS(7349), + [anon_sym_LT_EQ] = ACTIONS(7349), + [anon_sym_LT] = ACTIONS(7349), + [anon_sym_LT_LT] = ACTIONS(7349), + [anon_sym_GT_GT] = ACTIONS(7349), + [anon_sym___extension__] = ACTIONS(7144), + [anon_sym_LBRACK] = ACTIONS(7152), + [anon_sym_EQ] = ACTIONS(7349), + [anon_sym_const] = ACTIONS(7154), + [anon_sym_constexpr] = ACTIONS(7144), + [anon_sym_volatile] = ACTIONS(7144), + [anon_sym_restrict] = ACTIONS(7144), + [anon_sym___restrict__] = ACTIONS(7144), + [anon_sym__Atomic] = ACTIONS(7144), + [anon_sym__Noreturn] = ACTIONS(7144), + [anon_sym_noreturn] = ACTIONS(7144), + [anon_sym__Nonnull] = ACTIONS(7144), + [anon_sym_mutable] = ACTIONS(7144), + [anon_sym_constinit] = ACTIONS(7144), + [anon_sym_consteval] = ACTIONS(7144), + [anon_sym_alignas] = ACTIONS(7156), + [anon_sym__Alignas] = ACTIONS(7156), + [anon_sym_QMARK] = ACTIONS(7351), + [anon_sym_STAR_EQ] = ACTIONS(7351), + [anon_sym_SLASH_EQ] = ACTIONS(7351), + [anon_sym_PERCENT_EQ] = ACTIONS(7351), + [anon_sym_PLUS_EQ] = ACTIONS(7351), + [anon_sym_DASH_EQ] = ACTIONS(7351), + [anon_sym_LT_LT_EQ] = ACTIONS(7351), + [anon_sym_GT_GT_EQ] = ACTIONS(7349), + [anon_sym_AMP_EQ] = ACTIONS(7351), + [anon_sym_CARET_EQ] = ACTIONS(7351), + [anon_sym_PIPE_EQ] = ACTIONS(7351), + [anon_sym_and_eq] = ACTIONS(7351), + [anon_sym_or_eq] = ACTIONS(7351), + [anon_sym_xor_eq] = ACTIONS(7351), + [anon_sym_LT_EQ_GT] = ACTIONS(7351), + [anon_sym_or] = ACTIONS(7349), + [anon_sym_and] = ACTIONS(7349), + [anon_sym_bitor] = ACTIONS(7351), + [anon_sym_xor] = ACTIONS(7349), + [anon_sym_bitand] = ACTIONS(7351), + [anon_sym_not_eq] = ACTIONS(7351), + [anon_sym_DASH_DASH] = ACTIONS(7351), + [anon_sym_PLUS_PLUS] = ACTIONS(7351), + [anon_sym_DOT] = ACTIONS(7349), + [anon_sym_DOT_STAR] = ACTIONS(7351), + [anon_sym_DASH_GT] = ACTIONS(7351), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7351), }, - [STATE(2671)] = { - [sym_ms_based_modifier] = STATE(10827), - [sym_ms_unaligned_ptr_modifier] = STATE(6570), - [sym_ms_pointer_modifier] = STATE(2673), - [sym__declarator] = STATE(8686), - [sym__abstract_declarator] = STATE(8897), - [sym_parenthesized_declarator] = STATE(8469), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_function_declarator] = STATE(8469), - [sym_abstract_function_declarator] = STATE(8389), - [sym_array_declarator] = STATE(8469), - [sym_abstract_array_declarator] = STATE(8389), - [sym_type_qualifier] = STATE(3663), - [sym_alignas_qualifier] = STATE(7436), - [sym_parameter_list] = STATE(5256), - [sym_decltype] = STATE(10976), - [sym_reference_declarator] = STATE(8469), - [sym_abstract_reference_declarator] = STATE(8389), - [sym_structured_binding_declarator] = STATE(8469), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7869), - [sym_qualified_identifier] = STATE(8469), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__type_definition_type_repeat1] = STATE(3663), - [aux_sym_pointer_declarator_repeat1] = STATE(2673), - [sym_identifier] = ACTIONS(7868), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_RPAREN] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(5301), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(8354), - [anon_sym_AMP_AMP] = ACTIONS(8356), - [anon_sym_AMP] = ACTIONS(8358), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(6457), - [anon_sym___attribute] = ACTIONS(6457), - [anon_sym_COLON_COLON] = ACTIONS(8360), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(2933), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(2933), - [sym_ms_signed_ptr_modifier] = ACTIONS(2933), - [anon_sym__unaligned] = ACTIONS(2935), - [anon_sym___unaligned] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(5311), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym__Nonnull] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2939), - [anon_sym__Alignas] = ACTIONS(2939), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), + [STATE(2524)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7110), + [anon_sym_COMMA] = ACTIONS(7110), + [anon_sym_LPAREN2] = ACTIONS(7110), + [anon_sym_DASH] = ACTIONS(7108), + [anon_sym_PLUS] = ACTIONS(7108), + [anon_sym_STAR] = ACTIONS(7108), + [anon_sym_SLASH] = ACTIONS(7108), + [anon_sym_PERCENT] = ACTIONS(7108), + [anon_sym_PIPE_PIPE] = ACTIONS(7110), + [anon_sym_AMP_AMP] = ACTIONS(7110), + [anon_sym_PIPE] = ACTIONS(7108), + [anon_sym_CARET] = ACTIONS(7108), + [anon_sym_AMP] = ACTIONS(7108), + [anon_sym_EQ_EQ] = ACTIONS(7110), + [anon_sym_BANG_EQ] = ACTIONS(7110), + [anon_sym_GT] = ACTIONS(7108), + [anon_sym_GT_EQ] = ACTIONS(7108), + [anon_sym_LT_EQ] = ACTIONS(7108), + [anon_sym_LT] = ACTIONS(7108), + [anon_sym_LT_LT] = ACTIONS(7108), + [anon_sym_GT_GT] = ACTIONS(7108), + [anon_sym___extension__] = ACTIONS(7110), + [anon_sym___attribute__] = ACTIONS(7110), + [anon_sym___attribute] = ACTIONS(7108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7110), + [anon_sym_LBRACK] = ACTIONS(7108), + [anon_sym_EQ] = ACTIONS(7108), + [anon_sym_const] = ACTIONS(7108), + [anon_sym_constexpr] = ACTIONS(7110), + [anon_sym_volatile] = ACTIONS(7110), + [anon_sym_restrict] = ACTIONS(7110), + [anon_sym___restrict__] = ACTIONS(7110), + [anon_sym__Atomic] = ACTIONS(7110), + [anon_sym__Noreturn] = ACTIONS(7110), + [anon_sym_noreturn] = ACTIONS(7110), + [anon_sym__Nonnull] = ACTIONS(7110), + [anon_sym_mutable] = ACTIONS(7110), + [anon_sym_constinit] = ACTIONS(7110), + [anon_sym_consteval] = ACTIONS(7110), + [anon_sym_alignas] = ACTIONS(7110), + [anon_sym__Alignas] = ACTIONS(7110), + [anon_sym_QMARK] = ACTIONS(7110), + [anon_sym_STAR_EQ] = ACTIONS(7110), + [anon_sym_SLASH_EQ] = ACTIONS(7110), + [anon_sym_PERCENT_EQ] = ACTIONS(7110), + [anon_sym_PLUS_EQ] = ACTIONS(7110), + [anon_sym_DASH_EQ] = ACTIONS(7110), + [anon_sym_LT_LT_EQ] = ACTIONS(7110), + [anon_sym_GT_GT_EQ] = ACTIONS(7108), + [anon_sym_AMP_EQ] = ACTIONS(7110), + [anon_sym_CARET_EQ] = ACTIONS(7110), + [anon_sym_PIPE_EQ] = ACTIONS(7110), + [anon_sym_and_eq] = ACTIONS(7110), + [anon_sym_or_eq] = ACTIONS(7110), + [anon_sym_xor_eq] = ACTIONS(7110), + [anon_sym_LT_EQ_GT] = ACTIONS(7110), + [anon_sym_or] = ACTIONS(7108), + [anon_sym_and] = ACTIONS(7108), + [anon_sym_bitor] = ACTIONS(7110), + [anon_sym_xor] = ACTIONS(7108), + [anon_sym_bitand] = ACTIONS(7110), + [anon_sym_not_eq] = ACTIONS(7110), + [anon_sym_DASH_DASH] = ACTIONS(7110), + [anon_sym_PLUS_PLUS] = ACTIONS(7110), + [anon_sym_asm] = ACTIONS(7110), + [anon_sym___asm__] = ACTIONS(7110), + [anon_sym___asm] = ACTIONS(7108), + [anon_sym_DOT] = ACTIONS(7108), + [anon_sym_DOT_STAR] = ACTIONS(7110), + [anon_sym_DASH_GT] = ACTIONS(7110), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7110), + [anon_sym_override] = ACTIONS(7110), + [anon_sym_GT2] = ACTIONS(7110), + [anon_sym_noexcept] = ACTIONS(7110), + [anon_sym_throw] = ACTIONS(7110), + [anon_sym_requires] = ACTIONS(7110), }, - [STATE(2672)] = { - [sym_identifier] = ACTIONS(6949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), - [anon_sym_COMMA] = ACTIONS(6951), - [anon_sym_RPAREN] = ACTIONS(6951), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_DASH] = ACTIONS(6949), - [anon_sym_PLUS] = ACTIONS(6949), - [anon_sym_STAR] = ACTIONS(6951), - [anon_sym_SLASH] = ACTIONS(6949), - [anon_sym_PERCENT] = ACTIONS(6951), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_PIPE] = ACTIONS(6949), - [anon_sym_CARET] = ACTIONS(6951), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_GT] = ACTIONS(6949), - [anon_sym_GT_EQ] = ACTIONS(6951), - [anon_sym_LT_EQ] = ACTIONS(6949), - [anon_sym_LT] = ACTIONS(6949), - [anon_sym_LT_LT] = ACTIONS(6951), - [anon_sym_GT_GT] = ACTIONS(6951), - [anon_sym_SEMI] = ACTIONS(6951), - [anon_sym___extension__] = ACTIONS(6949), - [anon_sym___attribute__] = ACTIONS(6949), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_COLON] = ACTIONS(6949), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6951), - [anon_sym___based] = ACTIONS(6949), - [anon_sym_LBRACE] = ACTIONS(6951), - [anon_sym_RBRACE] = ACTIONS(6951), - [anon_sym_signed] = ACTIONS(6949), - [anon_sym_unsigned] = ACTIONS(6949), - [anon_sym_long] = ACTIONS(6949), - [anon_sym_short] = ACTIONS(6949), - [anon_sym_LBRACK] = ACTIONS(6951), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6949), - [anon_sym_volatile] = ACTIONS(6949), - [anon_sym_restrict] = ACTIONS(6949), - [anon_sym___restrict__] = ACTIONS(6949), - [anon_sym__Atomic] = ACTIONS(6949), - [anon_sym__Noreturn] = ACTIONS(6949), - [anon_sym_noreturn] = ACTIONS(6949), - [anon_sym__Nonnull] = ACTIONS(6949), - [anon_sym_mutable] = ACTIONS(6949), - [anon_sym_constinit] = ACTIONS(6949), - [anon_sym_consteval] = ACTIONS(6949), - [anon_sym_alignas] = ACTIONS(6949), - [anon_sym__Alignas] = ACTIONS(6949), - [sym_primitive_type] = ACTIONS(6949), - [anon_sym_QMARK] = ACTIONS(6951), - [anon_sym_LT_EQ_GT] = ACTIONS(6951), - [anon_sym_or] = ACTIONS(6949), - [anon_sym_and] = ACTIONS(6949), - [anon_sym_bitor] = ACTIONS(6949), - [anon_sym_xor] = ACTIONS(6949), - [anon_sym_bitand] = ACTIONS(6949), - [anon_sym_not_eq] = ACTIONS(6949), - [anon_sym_DASH_DASH] = ACTIONS(6951), - [anon_sym_PLUS_PLUS] = ACTIONS(6951), - [anon_sym_DOT] = ACTIONS(6949), - [anon_sym_DOT_STAR] = ACTIONS(6951), - [anon_sym_DASH_GT] = ACTIONS(6951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6949), - [anon_sym_decltype] = ACTIONS(6949), - [anon_sym_final] = ACTIONS(6949), - [anon_sym_override] = ACTIONS(6949), - [anon_sym_requires] = ACTIONS(6949), - [anon_sym_COLON_RBRACK] = ACTIONS(6951), + [STATE(2525)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2355), + [sym_identifier] = ACTIONS(6999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), + [anon_sym_COMMA] = ACTIONS(7525), + [anon_sym_RPAREN] = ACTIONS(7525), + [anon_sym_LPAREN2] = ACTIONS(7525), + [anon_sym_DASH] = ACTIONS(7528), + [anon_sym_PLUS] = ACTIONS(7528), + [anon_sym_STAR] = ACTIONS(7528), + [anon_sym_SLASH] = ACTIONS(7528), + [anon_sym_PERCENT] = ACTIONS(7528), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_AMP_AMP] = ACTIONS(7525), + [anon_sym_PIPE] = ACTIONS(7528), + [anon_sym_CARET] = ACTIONS(7528), + [anon_sym_AMP] = ACTIONS(7528), + [anon_sym_EQ_EQ] = ACTIONS(7525), + [anon_sym_BANG_EQ] = ACTIONS(7525), + [anon_sym_GT] = ACTIONS(7528), + [anon_sym_GT_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7528), + [anon_sym_LT] = ACTIONS(7528), + [anon_sym_LT_LT] = ACTIONS(7528), + [anon_sym_GT_GT] = ACTIONS(7528), + [anon_sym___extension__] = ACTIONS(6999), + [anon_sym___attribute__] = ACTIONS(7528), + [anon_sym___attribute] = ACTIONS(7528), + [anon_sym_LBRACE] = ACTIONS(7525), + [anon_sym_signed] = ACTIONS(8049), + [anon_sym_unsigned] = ACTIONS(8049), + [anon_sym_long] = ACTIONS(8049), + [anon_sym_short] = ACTIONS(8049), + [anon_sym_LBRACK] = ACTIONS(7525), + [anon_sym_EQ] = ACTIONS(7528), + [anon_sym_const] = ACTIONS(6999), + [anon_sym_constexpr] = ACTIONS(6999), + [anon_sym_volatile] = ACTIONS(6999), + [anon_sym_restrict] = ACTIONS(6999), + [anon_sym___restrict__] = ACTIONS(6999), + [anon_sym__Atomic] = ACTIONS(6999), + [anon_sym__Noreturn] = ACTIONS(6999), + [anon_sym_noreturn] = ACTIONS(6999), + [anon_sym__Nonnull] = ACTIONS(6999), + [anon_sym_mutable] = ACTIONS(6999), + [anon_sym_constinit] = ACTIONS(6999), + [anon_sym_consteval] = ACTIONS(6999), + [anon_sym_alignas] = ACTIONS(6999), + [anon_sym__Alignas] = ACTIONS(6999), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7525), + [anon_sym_STAR_EQ] = ACTIONS(7525), + [anon_sym_SLASH_EQ] = ACTIONS(7525), + [anon_sym_PERCENT_EQ] = ACTIONS(7525), + [anon_sym_PLUS_EQ] = ACTIONS(7525), + [anon_sym_DASH_EQ] = ACTIONS(7525), + [anon_sym_LT_LT_EQ] = ACTIONS(7525), + [anon_sym_GT_GT_EQ] = ACTIONS(7525), + [anon_sym_AMP_EQ] = ACTIONS(7525), + [anon_sym_CARET_EQ] = ACTIONS(7525), + [anon_sym_PIPE_EQ] = ACTIONS(7525), + [anon_sym_and_eq] = ACTIONS(7528), + [anon_sym_or_eq] = ACTIONS(7528), + [anon_sym_xor_eq] = ACTIONS(7528), + [anon_sym_LT_EQ_GT] = ACTIONS(7525), + [anon_sym_or] = ACTIONS(7528), + [anon_sym_and] = ACTIONS(7528), + [anon_sym_bitor] = ACTIONS(7528), + [anon_sym_xor] = ACTIONS(7528), + [anon_sym_bitand] = ACTIONS(7528), + [anon_sym_not_eq] = ACTIONS(7528), + [anon_sym_DASH_DASH] = ACTIONS(7525), + [anon_sym_PLUS_PLUS] = ACTIONS(7525), + [anon_sym_DOT] = ACTIONS(7528), + [anon_sym_DOT_STAR] = ACTIONS(7525), + [anon_sym_DASH_GT] = ACTIONS(7528), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7525), }, - [STATE(2673)] = { - [sym_ms_based_modifier] = STATE(10827), - [sym_ms_unaligned_ptr_modifier] = STATE(6570), - [sym_ms_pointer_modifier] = STATE(6287), - [sym__declarator] = STATE(8646), - [sym__abstract_declarator] = STATE(8942), - [sym_parenthesized_declarator] = STATE(8469), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_function_declarator] = STATE(8469), - [sym_abstract_function_declarator] = STATE(8389), - [sym_array_declarator] = STATE(8469), - [sym_abstract_array_declarator] = STATE(8389), - [sym_type_qualifier] = STATE(3676), - [sym_alignas_qualifier] = STATE(7436), - [sym_parameter_list] = STATE(5256), - [sym_decltype] = STATE(10976), - [sym_reference_declarator] = STATE(8469), - [sym_abstract_reference_declarator] = STATE(8389), - [sym_structured_binding_declarator] = STATE(8469), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7869), - [sym_qualified_identifier] = STATE(8469), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__type_definition_type_repeat1] = STATE(3676), - [aux_sym_pointer_declarator_repeat1] = STATE(6287), - [sym_identifier] = ACTIONS(7868), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_RPAREN] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(5301), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(8354), - [anon_sym_AMP_AMP] = ACTIONS(8356), - [anon_sym_AMP] = ACTIONS(8358), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(6495), - [anon_sym___attribute] = ACTIONS(6495), - [anon_sym_COLON_COLON] = ACTIONS(8360), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(2933), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(2933), - [sym_ms_signed_ptr_modifier] = ACTIONS(2933), - [anon_sym__unaligned] = ACTIONS(2935), - [anon_sym___unaligned] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(5311), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym__Nonnull] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2939), - [anon_sym__Alignas] = ACTIONS(2939), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), + [STATE(2526)] = { + [sym__abstract_declarator] = STATE(5433), + [sym_abstract_parenthesized_declarator] = STATE(5090), + [sym_abstract_pointer_declarator] = STATE(5090), + [sym_abstract_function_declarator] = STATE(5090), + [sym_abstract_array_declarator] = STATE(5090), + [sym_type_qualifier] = STATE(2450), + [sym_alignas_qualifier] = STATE(2423), + [sym_parameter_list] = STATE(1975), + [sym_abstract_reference_declarator] = STATE(5090), + [sym__function_declarator_seq] = STATE(5091), + [aux_sym__type_definition_type_repeat1] = STATE(2450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(7136), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(7375), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(7377), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(7379), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7341), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(7144), + [anon_sym_LBRACK] = ACTIONS(7152), + [anon_sym_EQ] = ACTIONS(7341), + [anon_sym_const] = ACTIONS(7154), + [anon_sym_constexpr] = ACTIONS(7144), + [anon_sym_volatile] = ACTIONS(7144), + [anon_sym_restrict] = ACTIONS(7144), + [anon_sym___restrict__] = ACTIONS(7144), + [anon_sym__Atomic] = ACTIONS(7144), + [anon_sym__Noreturn] = ACTIONS(7144), + [anon_sym_noreturn] = ACTIONS(7144), + [anon_sym__Nonnull] = ACTIONS(7144), + [anon_sym_mutable] = ACTIONS(7144), + [anon_sym_constinit] = ACTIONS(7144), + [anon_sym_consteval] = ACTIONS(7144), + [anon_sym_alignas] = ACTIONS(7156), + [anon_sym__Alignas] = ACTIONS(7156), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_STAR_EQ] = ACTIONS(7343), + [anon_sym_SLASH_EQ] = ACTIONS(7343), + [anon_sym_PERCENT_EQ] = ACTIONS(7343), + [anon_sym_PLUS_EQ] = ACTIONS(7343), + [anon_sym_DASH_EQ] = ACTIONS(7343), + [anon_sym_LT_LT_EQ] = ACTIONS(7343), + [anon_sym_GT_GT_EQ] = ACTIONS(7341), + [anon_sym_AMP_EQ] = ACTIONS(7343), + [anon_sym_CARET_EQ] = ACTIONS(7343), + [anon_sym_PIPE_EQ] = ACTIONS(7343), + [anon_sym_and_eq] = ACTIONS(7343), + [anon_sym_or_eq] = ACTIONS(7343), + [anon_sym_xor_eq] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7343), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7343), }, - [STATE(2674)] = { - [sym_attribute_specifier] = STATE(3108), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7101), - [anon_sym_COMMA] = ACTIONS(7101), - [anon_sym_LPAREN2] = ACTIONS(7101), - [anon_sym_DASH] = ACTIONS(7099), - [anon_sym_PLUS] = ACTIONS(7099), - [anon_sym_STAR] = ACTIONS(7099), - [anon_sym_SLASH] = ACTIONS(7099), - [anon_sym_PERCENT] = ACTIONS(7099), - [anon_sym_PIPE_PIPE] = ACTIONS(7101), - [anon_sym_AMP_AMP] = ACTIONS(7101), - [anon_sym_PIPE] = ACTIONS(7099), - [anon_sym_CARET] = ACTIONS(7099), - [anon_sym_AMP] = ACTIONS(7099), - [anon_sym_EQ_EQ] = ACTIONS(7101), - [anon_sym_BANG_EQ] = ACTIONS(7101), - [anon_sym_GT] = ACTIONS(7099), - [anon_sym_GT_EQ] = ACTIONS(7099), - [anon_sym_LT_EQ] = ACTIONS(7099), - [anon_sym_LT] = ACTIONS(7099), - [anon_sym_LT_LT] = ACTIONS(7099), - [anon_sym_GT_GT] = ACTIONS(7099), - [anon_sym___extension__] = ACTIONS(7101), - [anon_sym___attribute__] = ACTIONS(7862), - [anon_sym___attribute] = ACTIONS(7864), - [anon_sym_LBRACE] = ACTIONS(7101), - [anon_sym_LBRACK] = ACTIONS(7101), - [anon_sym_EQ] = ACTIONS(7099), - [anon_sym_const] = ACTIONS(7099), - [anon_sym_constexpr] = ACTIONS(7101), - [anon_sym_volatile] = ACTIONS(7101), - [anon_sym_restrict] = ACTIONS(7101), - [anon_sym___restrict__] = ACTIONS(7101), - [anon_sym__Atomic] = ACTIONS(7101), - [anon_sym__Noreturn] = ACTIONS(7101), - [anon_sym_noreturn] = ACTIONS(7101), - [anon_sym__Nonnull] = ACTIONS(7101), - [anon_sym_mutable] = ACTIONS(7101), - [anon_sym_constinit] = ACTIONS(7101), - [anon_sym_consteval] = ACTIONS(7101), - [anon_sym_alignas] = ACTIONS(7101), - [anon_sym__Alignas] = ACTIONS(7101), - [anon_sym_QMARK] = ACTIONS(7101), - [anon_sym_STAR_EQ] = ACTIONS(7101), - [anon_sym_SLASH_EQ] = ACTIONS(7101), - [anon_sym_PERCENT_EQ] = ACTIONS(7101), - [anon_sym_PLUS_EQ] = ACTIONS(7101), - [anon_sym_DASH_EQ] = ACTIONS(7101), - [anon_sym_LT_LT_EQ] = ACTIONS(7101), - [anon_sym_GT_GT_EQ] = ACTIONS(7099), - [anon_sym_AMP_EQ] = ACTIONS(7101), - [anon_sym_CARET_EQ] = ACTIONS(7101), - [anon_sym_PIPE_EQ] = ACTIONS(7101), - [anon_sym_and_eq] = ACTIONS(7101), - [anon_sym_or_eq] = ACTIONS(7101), - [anon_sym_xor_eq] = ACTIONS(7101), - [anon_sym_LT_EQ_GT] = ACTIONS(7101), - [anon_sym_or] = ACTIONS(7099), - [anon_sym_and] = ACTIONS(7099), - [anon_sym_bitor] = ACTIONS(7101), - [anon_sym_xor] = ACTIONS(7099), - [anon_sym_bitand] = ACTIONS(7101), - [anon_sym_not_eq] = ACTIONS(7101), - [anon_sym_DASH_DASH] = ACTIONS(7101), - [anon_sym_PLUS_PLUS] = ACTIONS(7101), - [anon_sym_DOT] = ACTIONS(7099), - [anon_sym_DOT_STAR] = ACTIONS(7101), - [anon_sym_DASH_GT] = ACTIONS(7101), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7101), - [anon_sym_override] = ACTIONS(7101), - [anon_sym_GT2] = ACTIONS(7101), - [anon_sym_requires] = ACTIONS(7101), + [STATE(2527)] = { + [sym__abstract_declarator] = STATE(5422), + [sym_abstract_parenthesized_declarator] = STATE(5063), + [sym_abstract_pointer_declarator] = STATE(5063), + [sym_abstract_function_declarator] = STATE(5063), + [sym_abstract_array_declarator] = STATE(5063), + [sym_type_qualifier] = STATE(2511), + [sym_alignas_qualifier] = STATE(2652), + [sym_parameter_list] = STATE(1978), + [sym_abstract_reference_declarator] = STATE(5063), + [sym__function_declarator_seq] = STATE(5065), + [aux_sym__type_definition_type_repeat1] = STATE(2511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(7112), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(7363), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(7365), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(7367), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(7120), + [anon_sym_LBRACK] = ACTIONS(7128), + [anon_sym_RBRACK] = ACTIONS(7343), + [anon_sym_EQ] = ACTIONS(7341), + [anon_sym_const] = ACTIONS(6833), + [anon_sym_constexpr] = ACTIONS(7120), + [anon_sym_volatile] = ACTIONS(7120), + [anon_sym_restrict] = ACTIONS(7120), + [anon_sym___restrict__] = ACTIONS(7120), + [anon_sym__Atomic] = ACTIONS(7120), + [anon_sym__Noreturn] = ACTIONS(7120), + [anon_sym_noreturn] = ACTIONS(7120), + [anon_sym__Nonnull] = ACTIONS(7120), + [anon_sym_mutable] = ACTIONS(7120), + [anon_sym_constinit] = ACTIONS(7120), + [anon_sym_consteval] = ACTIONS(7120), + [anon_sym_alignas] = ACTIONS(7130), + [anon_sym__Alignas] = ACTIONS(7130), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_STAR_EQ] = ACTIONS(7343), + [anon_sym_SLASH_EQ] = ACTIONS(7343), + [anon_sym_PERCENT_EQ] = ACTIONS(7343), + [anon_sym_PLUS_EQ] = ACTIONS(7343), + [anon_sym_DASH_EQ] = ACTIONS(7343), + [anon_sym_LT_LT_EQ] = ACTIONS(7343), + [anon_sym_GT_GT_EQ] = ACTIONS(7343), + [anon_sym_AMP_EQ] = ACTIONS(7343), + [anon_sym_CARET_EQ] = ACTIONS(7343), + [anon_sym_PIPE_EQ] = ACTIONS(7343), + [anon_sym_and_eq] = ACTIONS(7343), + [anon_sym_or_eq] = ACTIONS(7343), + [anon_sym_xor_eq] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7343), + [sym_comment] = ACTIONS(3), }, - [STATE(2675)] = { - [sym_attribute_specifier] = STATE(3110), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7105), - [anon_sym_COMMA] = ACTIONS(7105), - [anon_sym_LPAREN2] = ACTIONS(7105), - [anon_sym_DASH] = ACTIONS(7103), - [anon_sym_PLUS] = ACTIONS(7103), - [anon_sym_STAR] = ACTIONS(7103), - [anon_sym_SLASH] = ACTIONS(7103), - [anon_sym_PERCENT] = ACTIONS(7103), - [anon_sym_PIPE_PIPE] = ACTIONS(7105), - [anon_sym_AMP_AMP] = ACTIONS(7105), - [anon_sym_PIPE] = ACTIONS(7103), - [anon_sym_CARET] = ACTIONS(7103), - [anon_sym_AMP] = ACTIONS(7103), - [anon_sym_EQ_EQ] = ACTIONS(7105), - [anon_sym_BANG_EQ] = ACTIONS(7105), - [anon_sym_GT] = ACTIONS(7103), - [anon_sym_GT_EQ] = ACTIONS(7103), - [anon_sym_LT_EQ] = ACTIONS(7103), - [anon_sym_LT] = ACTIONS(7103), - [anon_sym_LT_LT] = ACTIONS(7103), - [anon_sym_GT_GT] = ACTIONS(7103), - [anon_sym___extension__] = ACTIONS(7105), - [anon_sym___attribute__] = ACTIONS(7862), - [anon_sym___attribute] = ACTIONS(7864), - [anon_sym_LBRACE] = ACTIONS(7105), - [anon_sym_LBRACK] = ACTIONS(7105), - [anon_sym_EQ] = ACTIONS(7103), - [anon_sym_const] = ACTIONS(7103), - [anon_sym_constexpr] = ACTIONS(7105), - [anon_sym_volatile] = ACTIONS(7105), - [anon_sym_restrict] = ACTIONS(7105), - [anon_sym___restrict__] = ACTIONS(7105), - [anon_sym__Atomic] = ACTIONS(7105), - [anon_sym__Noreturn] = ACTIONS(7105), - [anon_sym_noreturn] = ACTIONS(7105), - [anon_sym__Nonnull] = ACTIONS(7105), - [anon_sym_mutable] = ACTIONS(7105), - [anon_sym_constinit] = ACTIONS(7105), - [anon_sym_consteval] = ACTIONS(7105), - [anon_sym_alignas] = ACTIONS(7105), - [anon_sym__Alignas] = ACTIONS(7105), - [anon_sym_QMARK] = ACTIONS(7105), - [anon_sym_STAR_EQ] = ACTIONS(7105), - [anon_sym_SLASH_EQ] = ACTIONS(7105), - [anon_sym_PERCENT_EQ] = ACTIONS(7105), - [anon_sym_PLUS_EQ] = ACTIONS(7105), - [anon_sym_DASH_EQ] = ACTIONS(7105), - [anon_sym_LT_LT_EQ] = ACTIONS(7105), - [anon_sym_GT_GT_EQ] = ACTIONS(7103), - [anon_sym_AMP_EQ] = ACTIONS(7105), - [anon_sym_CARET_EQ] = ACTIONS(7105), - [anon_sym_PIPE_EQ] = ACTIONS(7105), - [anon_sym_and_eq] = ACTIONS(7105), - [anon_sym_or_eq] = ACTIONS(7105), - [anon_sym_xor_eq] = ACTIONS(7105), - [anon_sym_LT_EQ_GT] = ACTIONS(7105), - [anon_sym_or] = ACTIONS(7103), - [anon_sym_and] = ACTIONS(7103), - [anon_sym_bitor] = ACTIONS(7105), - [anon_sym_xor] = ACTIONS(7103), - [anon_sym_bitand] = ACTIONS(7105), - [anon_sym_not_eq] = ACTIONS(7105), - [anon_sym_DASH_DASH] = ACTIONS(7105), - [anon_sym_PLUS_PLUS] = ACTIONS(7105), - [anon_sym_DOT] = ACTIONS(7103), - [anon_sym_DOT_STAR] = ACTIONS(7105), - [anon_sym_DASH_GT] = ACTIONS(7105), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7105), - [anon_sym_override] = ACTIONS(7105), - [anon_sym_GT2] = ACTIONS(7105), - [anon_sym_requires] = ACTIONS(7105), + [STATE(2528)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2784), + [sym_ms_pointer_modifier] = STATE(2595), + [sym__abstract_declarator] = STATE(6311), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3524), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2275), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3524), + [aux_sym_pointer_declarator_repeat1] = STATE(2595), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(8385), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6823), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(8387), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6823), + [anon_sym_AMP] = ACTIONS(8389), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6823), + [anon_sym_GT_GT] = ACTIONS(6823), + [anon_sym_SEMI] = ACTIONS(6823), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym___attribute__] = ACTIONS(6823), + [anon_sym___attribute] = ACTIONS(6821), + [sym_ms_restrict_modifier] = ACTIONS(8094), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8119), + [sym_ms_signed_ptr_modifier] = ACTIONS(8119), + [anon_sym__unaligned] = ACTIONS(8121), + [anon_sym___unaligned] = ACTIONS(8121), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6823), + [anon_sym_and] = ACTIONS(6823), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6823), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6823), + [anon_sym_override] = ACTIONS(6823), + [anon_sym_requires] = ACTIONS(6823), }, - [STATE(2676)] = { - [sym_identifier] = ACTIONS(8362), - [aux_sym_preproc_def_token1] = ACTIONS(8362), - [aux_sym_preproc_if_token1] = ACTIONS(8362), - [aux_sym_preproc_if_token2] = ACTIONS(8362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8362), - [aux_sym_preproc_else_token1] = ACTIONS(8362), - [aux_sym_preproc_elif_token1] = ACTIONS(8362), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8362), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8362), - [sym_preproc_directive] = ACTIONS(8362), - [anon_sym_LPAREN2] = ACTIONS(8364), - [anon_sym_TILDE] = ACTIONS(8364), - [anon_sym_STAR] = ACTIONS(8364), - [anon_sym_AMP_AMP] = ACTIONS(8364), - [anon_sym_AMP] = ACTIONS(8362), - [anon_sym_SEMI] = ACTIONS(8364), - [anon_sym___extension__] = ACTIONS(8362), - [anon_sym_typedef] = ACTIONS(8362), - [anon_sym_virtual] = ACTIONS(8362), - [anon_sym_extern] = ACTIONS(8362), - [anon_sym___attribute__] = ACTIONS(8362), - [anon_sym___attribute] = ACTIONS(8362), - [anon_sym_using] = ACTIONS(8362), - [anon_sym_COLON_COLON] = ACTIONS(8364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8364), - [anon_sym___declspec] = ACTIONS(8362), - [anon_sym___based] = ACTIONS(8362), - [anon_sym_signed] = ACTIONS(8362), - [anon_sym_unsigned] = ACTIONS(8362), - [anon_sym_long] = ACTIONS(8362), - [anon_sym_short] = ACTIONS(8362), - [anon_sym_LBRACK] = ACTIONS(8362), - [anon_sym_static] = ACTIONS(8362), - [anon_sym_register] = ACTIONS(8362), - [anon_sym_inline] = ACTIONS(8362), - [anon_sym___inline] = ACTIONS(8362), - [anon_sym___inline__] = ACTIONS(8362), - [anon_sym___forceinline] = ACTIONS(8362), - [anon_sym_thread_local] = ACTIONS(8362), - [anon_sym___thread] = ACTIONS(8362), - [anon_sym_const] = ACTIONS(8362), - [anon_sym_constexpr] = ACTIONS(8362), - [anon_sym_volatile] = ACTIONS(8362), - [anon_sym_restrict] = ACTIONS(8362), - [anon_sym___restrict__] = ACTIONS(8362), - [anon_sym__Atomic] = ACTIONS(8362), - [anon_sym__Noreturn] = ACTIONS(8362), - [anon_sym_noreturn] = ACTIONS(8362), - [anon_sym__Nonnull] = ACTIONS(8362), - [anon_sym_mutable] = ACTIONS(8362), - [anon_sym_constinit] = ACTIONS(8362), - [anon_sym_consteval] = ACTIONS(8362), - [anon_sym_alignas] = ACTIONS(8362), - [anon_sym__Alignas] = ACTIONS(8362), - [sym_primitive_type] = ACTIONS(8362), - [anon_sym_enum] = ACTIONS(8362), - [anon_sym_class] = ACTIONS(8362), - [anon_sym_struct] = ACTIONS(8362), - [anon_sym_union] = ACTIONS(8362), - [anon_sym_typename] = ACTIONS(8362), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8362), - [anon_sym_decltype] = ACTIONS(8362), - [anon_sym_explicit] = ACTIONS(8362), - [anon_sym_private] = ACTIONS(8362), - [anon_sym_template] = ACTIONS(8362), - [anon_sym_operator] = ACTIONS(8362), - [anon_sym_friend] = ACTIONS(8362), - [anon_sym_public] = ACTIONS(8362), - [anon_sym_protected] = ACTIONS(8362), - [anon_sym_static_assert] = ACTIONS(8362), - [anon_sym_LBRACK_COLON] = ACTIONS(8364), + [STATE(2529)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_attributes_end] = STATE(3904), + [sym__function_postfix] = STATE(3628), + [sym_trailing_return_type] = STATE(3071), + [sym_requires_clause] = STATE(3628), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym_SEMI] = ACTIONS(7791), + [anon_sym___attribute__] = ACTIONS(6534), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_COLON] = ACTIONS(7789), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), + [anon_sym_RBRACE] = ACTIONS(7791), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(7849), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6561), + [anon_sym_override] = ACTIONS(6561), + [anon_sym_requires] = ACTIONS(6563), + [anon_sym_COLON_RBRACK] = ACTIONS(7791), }, - [STATE(2677)] = { - [sym_template_argument_list] = STATE(2840), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), - [anon_sym_COMMA] = ACTIONS(6751), - [anon_sym_RPAREN] = ACTIONS(6751), - [anon_sym_LPAREN2] = ACTIONS(6751), - [anon_sym_DASH] = ACTIONS(6746), - [anon_sym_PLUS] = ACTIONS(6746), - [anon_sym_STAR] = ACTIONS(6746), - [anon_sym_SLASH] = ACTIONS(6746), - [anon_sym_PERCENT] = ACTIONS(6746), - [anon_sym_PIPE_PIPE] = ACTIONS(6751), - [anon_sym_AMP_AMP] = ACTIONS(6751), - [anon_sym_PIPE] = ACTIONS(6746), - [anon_sym_CARET] = ACTIONS(6746), - [anon_sym_AMP] = ACTIONS(6746), - [anon_sym_EQ_EQ] = ACTIONS(6751), - [anon_sym_BANG_EQ] = ACTIONS(6751), - [anon_sym_GT] = ACTIONS(6746), - [anon_sym_GT_EQ] = ACTIONS(6751), - [anon_sym_LT_EQ] = ACTIONS(6746), - [anon_sym_LT] = ACTIONS(7854), - [anon_sym_LT_LT] = ACTIONS(6746), - [anon_sym_GT_GT] = ACTIONS(6746), - [anon_sym___extension__] = ACTIONS(6751), - [anon_sym___attribute__] = ACTIONS(6751), - [anon_sym___attribute] = ACTIONS(6746), - [anon_sym_COLON] = ACTIONS(6746), - [anon_sym_COLON_COLON] = ACTIONS(6748), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_LBRACK] = ACTIONS(6751), - [anon_sym_EQ] = ACTIONS(6746), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6751), - [anon_sym_volatile] = ACTIONS(6751), - [anon_sym_restrict] = ACTIONS(6751), - [anon_sym___restrict__] = ACTIONS(6751), - [anon_sym__Atomic] = ACTIONS(6751), - [anon_sym__Noreturn] = ACTIONS(6751), - [anon_sym_noreturn] = ACTIONS(6751), - [anon_sym__Nonnull] = ACTIONS(6751), - [anon_sym_mutable] = ACTIONS(6751), - [anon_sym_constinit] = ACTIONS(6751), - [anon_sym_consteval] = ACTIONS(6751), - [anon_sym_alignas] = ACTIONS(6751), - [anon_sym__Alignas] = ACTIONS(6751), - [anon_sym_QMARK] = ACTIONS(6751), - [anon_sym_STAR_EQ] = ACTIONS(6751), - [anon_sym_SLASH_EQ] = ACTIONS(6751), - [anon_sym_PERCENT_EQ] = ACTIONS(6751), - [anon_sym_PLUS_EQ] = ACTIONS(6751), - [anon_sym_DASH_EQ] = ACTIONS(6751), - [anon_sym_LT_LT_EQ] = ACTIONS(6751), - [anon_sym_GT_GT_EQ] = ACTIONS(6751), - [anon_sym_AMP_EQ] = ACTIONS(6751), - [anon_sym_CARET_EQ] = ACTIONS(6751), - [anon_sym_PIPE_EQ] = ACTIONS(6751), - [anon_sym_LT_EQ_GT] = ACTIONS(6751), - [anon_sym_or] = ACTIONS(6751), - [anon_sym_and] = ACTIONS(6751), - [anon_sym_bitor] = ACTIONS(6751), - [anon_sym_xor] = ACTIONS(6751), - [anon_sym_bitand] = ACTIONS(6751), - [anon_sym_not_eq] = ACTIONS(6751), - [anon_sym_DASH_DASH] = ACTIONS(6751), - [anon_sym_PLUS_PLUS] = ACTIONS(6751), - [anon_sym_DOT] = ACTIONS(6746), - [anon_sym_DOT_STAR] = ACTIONS(6751), - [anon_sym_DASH_GT] = ACTIONS(6746), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6751), - [anon_sym_override] = ACTIONS(6751), - [anon_sym_requires] = ACTIONS(6751), - [anon_sym_DASH_GT_STAR] = ACTIONS(6751), + [STATE(2530)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6626), + [anon_sym_COMMA] = ACTIONS(6626), + [anon_sym_LPAREN2] = ACTIONS(6626), + [anon_sym_DASH] = ACTIONS(6624), + [anon_sym_PLUS] = ACTIONS(6624), + [anon_sym_STAR] = ACTIONS(6624), + [anon_sym_SLASH] = ACTIONS(6624), + [anon_sym_PERCENT] = ACTIONS(6624), + [anon_sym_PIPE_PIPE] = ACTIONS(6626), + [anon_sym_AMP_AMP] = ACTIONS(6626), + [anon_sym_PIPE] = ACTIONS(6624), + [anon_sym_CARET] = ACTIONS(6624), + [anon_sym_AMP] = ACTIONS(6624), + [anon_sym_EQ_EQ] = ACTIONS(6626), + [anon_sym_BANG_EQ] = ACTIONS(6626), + [anon_sym_GT] = ACTIONS(6624), + [anon_sym_GT_EQ] = ACTIONS(6626), + [anon_sym_LT_EQ] = ACTIONS(6624), + [anon_sym_LT] = ACTIONS(6624), + [anon_sym_LT_LT] = ACTIONS(6624), + [anon_sym_GT_GT] = ACTIONS(6624), + [anon_sym___extension__] = ACTIONS(6626), + [anon_sym___attribute__] = ACTIONS(6626), + [anon_sym___attribute] = ACTIONS(6624), + [anon_sym_COLON] = ACTIONS(6624), + [anon_sym_COLON_COLON] = ACTIONS(6626), + [anon_sym_LBRACE] = ACTIONS(6626), + [anon_sym_LBRACK] = ACTIONS(6626), + [anon_sym_RBRACK] = ACTIONS(6626), + [anon_sym_EQ] = ACTIONS(6624), + [anon_sym_const] = ACTIONS(6624), + [anon_sym_constexpr] = ACTIONS(6626), + [anon_sym_volatile] = ACTIONS(6626), + [anon_sym_restrict] = ACTIONS(6626), + [anon_sym___restrict__] = ACTIONS(6626), + [anon_sym__Atomic] = ACTIONS(6626), + [anon_sym__Noreturn] = ACTIONS(6626), + [anon_sym_noreturn] = ACTIONS(6626), + [anon_sym__Nonnull] = ACTIONS(6626), + [anon_sym_mutable] = ACTIONS(6626), + [anon_sym_constinit] = ACTIONS(6626), + [anon_sym_consteval] = ACTIONS(6626), + [anon_sym_alignas] = ACTIONS(6626), + [anon_sym__Alignas] = ACTIONS(6626), + [anon_sym_QMARK] = ACTIONS(6626), + [anon_sym_STAR_EQ] = ACTIONS(6626), + [anon_sym_SLASH_EQ] = ACTIONS(6626), + [anon_sym_PERCENT_EQ] = ACTIONS(6626), + [anon_sym_PLUS_EQ] = ACTIONS(6626), + [anon_sym_DASH_EQ] = ACTIONS(6626), + [anon_sym_LT_LT_EQ] = ACTIONS(6626), + [anon_sym_GT_GT_EQ] = ACTIONS(6626), + [anon_sym_AMP_EQ] = ACTIONS(6626), + [anon_sym_CARET_EQ] = ACTIONS(6626), + [anon_sym_PIPE_EQ] = ACTIONS(6626), + [anon_sym_and_eq] = ACTIONS(6626), + [anon_sym_or_eq] = ACTIONS(6626), + [anon_sym_xor_eq] = ACTIONS(6626), + [anon_sym_LT_EQ_GT] = ACTIONS(6626), + [anon_sym_or] = ACTIONS(6624), + [anon_sym_and] = ACTIONS(6624), + [anon_sym_bitor] = ACTIONS(6626), + [anon_sym_xor] = ACTIONS(6624), + [anon_sym_bitand] = ACTIONS(6626), + [anon_sym_not_eq] = ACTIONS(6626), + [anon_sym_DASH_DASH] = ACTIONS(6626), + [anon_sym_PLUS_PLUS] = ACTIONS(6626), + [anon_sym_DOT] = ACTIONS(6624), + [anon_sym_DOT_STAR] = ACTIONS(6626), + [anon_sym_DASH_GT] = ACTIONS(6626), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6626), + [anon_sym_decltype] = ACTIONS(6626), + [anon_sym_final] = ACTIONS(6626), + [anon_sym_override] = ACTIONS(6626), + [anon_sym_requires] = ACTIONS(6626), }, - [STATE(2678)] = { - [sym_type_qualifier] = STATE(2399), - [sym_alignas_qualifier] = STATE(2592), - [aux_sym__type_definition_type_repeat1] = STATE(2399), - [aux_sym_sized_type_specifier_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(8366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), - [anon_sym_COMMA] = ACTIONS(6884), - [anon_sym_RPAREN] = ACTIONS(6884), - [anon_sym_LPAREN2] = ACTIONS(6884), - [anon_sym_DASH] = ACTIONS(6886), - [anon_sym_PLUS] = ACTIONS(6886), - [anon_sym_STAR] = ACTIONS(6884), - [anon_sym_SLASH] = ACTIONS(6886), - [anon_sym_PERCENT] = ACTIONS(6884), - [anon_sym_PIPE_PIPE] = ACTIONS(6884), - [anon_sym_AMP_AMP] = ACTIONS(6884), - [anon_sym_PIPE] = ACTIONS(6886), - [anon_sym_CARET] = ACTIONS(6884), - [anon_sym_AMP] = ACTIONS(6886), - [anon_sym_EQ_EQ] = ACTIONS(6884), - [anon_sym_BANG_EQ] = ACTIONS(6884), - [anon_sym_GT] = ACTIONS(6886), - [anon_sym_GT_EQ] = ACTIONS(6884), - [anon_sym_LT_EQ] = ACTIONS(6886), - [anon_sym_LT] = ACTIONS(6886), - [anon_sym_LT_LT] = ACTIONS(6884), - [anon_sym_GT_GT] = ACTIONS(6884), - [anon_sym_SEMI] = ACTIONS(6884), - [anon_sym___extension__] = ACTIONS(8368), - [anon_sym___attribute__] = ACTIONS(6886), - [anon_sym___attribute] = ACTIONS(6886), - [anon_sym_COLON] = ACTIONS(6886), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6884), - [anon_sym_LBRACE] = ACTIONS(6884), - [anon_sym_RBRACE] = ACTIONS(6884), - [anon_sym_signed] = ACTIONS(8371), - [anon_sym_unsigned] = ACTIONS(8371), - [anon_sym_long] = ACTIONS(8371), - [anon_sym_short] = ACTIONS(8371), - [anon_sym_LBRACK] = ACTIONS(6884), - [anon_sym_const] = ACTIONS(8368), - [anon_sym_constexpr] = ACTIONS(8368), - [anon_sym_volatile] = ACTIONS(8368), - [anon_sym_restrict] = ACTIONS(8368), - [anon_sym___restrict__] = ACTIONS(8368), - [anon_sym__Atomic] = ACTIONS(8368), - [anon_sym__Noreturn] = ACTIONS(8368), - [anon_sym_noreturn] = ACTIONS(8368), - [anon_sym__Nonnull] = ACTIONS(8368), - [anon_sym_mutable] = ACTIONS(8368), - [anon_sym_constinit] = ACTIONS(8368), - [anon_sym_consteval] = ACTIONS(8368), - [anon_sym_alignas] = ACTIONS(8373), - [anon_sym__Alignas] = ACTIONS(8373), - [sym_primitive_type] = ACTIONS(8376), - [anon_sym_QMARK] = ACTIONS(6884), - [anon_sym_LT_EQ_GT] = ACTIONS(6884), - [anon_sym_or] = ACTIONS(6886), - [anon_sym_and] = ACTIONS(6886), - [anon_sym_bitor] = ACTIONS(6886), - [anon_sym_xor] = ACTIONS(6886), - [anon_sym_bitand] = ACTIONS(6886), - [anon_sym_not_eq] = ACTIONS(6886), - [anon_sym_DASH_DASH] = ACTIONS(6884), - [anon_sym_PLUS_PLUS] = ACTIONS(6884), - [anon_sym_DOT] = ACTIONS(6886), - [anon_sym_DOT_STAR] = ACTIONS(6884), - [anon_sym_DASH_GT] = ACTIONS(6884), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6886), - [anon_sym_override] = ACTIONS(6886), - [anon_sym_requires] = ACTIONS(6886), - [anon_sym_COLON_RBRACK] = ACTIONS(6884), + [STATE(2531)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6630), + [anon_sym_COMMA] = ACTIONS(6630), + [anon_sym_LPAREN2] = ACTIONS(6630), + [anon_sym_DASH] = ACTIONS(6628), + [anon_sym_PLUS] = ACTIONS(6628), + [anon_sym_STAR] = ACTIONS(6628), + [anon_sym_SLASH] = ACTIONS(6628), + [anon_sym_PERCENT] = ACTIONS(6628), + [anon_sym_PIPE_PIPE] = ACTIONS(6630), + [anon_sym_AMP_AMP] = ACTIONS(6630), + [anon_sym_PIPE] = ACTIONS(6628), + [anon_sym_CARET] = ACTIONS(6628), + [anon_sym_AMP] = ACTIONS(6628), + [anon_sym_EQ_EQ] = ACTIONS(6630), + [anon_sym_BANG_EQ] = ACTIONS(6630), + [anon_sym_GT] = ACTIONS(6628), + [anon_sym_GT_EQ] = ACTIONS(6630), + [anon_sym_LT_EQ] = ACTIONS(6628), + [anon_sym_LT] = ACTIONS(6628), + [anon_sym_LT_LT] = ACTIONS(6628), + [anon_sym_GT_GT] = ACTIONS(6628), + [anon_sym___extension__] = ACTIONS(6630), + [anon_sym___attribute__] = ACTIONS(6630), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_COLON] = ACTIONS(6628), + [anon_sym_COLON_COLON] = ACTIONS(6630), + [anon_sym_LBRACE] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(6630), + [anon_sym_RBRACK] = ACTIONS(6630), + [anon_sym_EQ] = ACTIONS(6628), + [anon_sym_const] = ACTIONS(6628), + [anon_sym_constexpr] = ACTIONS(6630), + [anon_sym_volatile] = ACTIONS(6630), + [anon_sym_restrict] = ACTIONS(6630), + [anon_sym___restrict__] = ACTIONS(6630), + [anon_sym__Atomic] = ACTIONS(6630), + [anon_sym__Noreturn] = ACTIONS(6630), + [anon_sym_noreturn] = ACTIONS(6630), + [anon_sym__Nonnull] = ACTIONS(6630), + [anon_sym_mutable] = ACTIONS(6630), + [anon_sym_constinit] = ACTIONS(6630), + [anon_sym_consteval] = ACTIONS(6630), + [anon_sym_alignas] = ACTIONS(6630), + [anon_sym__Alignas] = ACTIONS(6630), + [anon_sym_QMARK] = ACTIONS(6630), + [anon_sym_STAR_EQ] = ACTIONS(6630), + [anon_sym_SLASH_EQ] = ACTIONS(6630), + [anon_sym_PERCENT_EQ] = ACTIONS(6630), + [anon_sym_PLUS_EQ] = ACTIONS(6630), + [anon_sym_DASH_EQ] = ACTIONS(6630), + [anon_sym_LT_LT_EQ] = ACTIONS(6630), + [anon_sym_GT_GT_EQ] = ACTIONS(6630), + [anon_sym_AMP_EQ] = ACTIONS(6630), + [anon_sym_CARET_EQ] = ACTIONS(6630), + [anon_sym_PIPE_EQ] = ACTIONS(6630), + [anon_sym_and_eq] = ACTIONS(6630), + [anon_sym_or_eq] = ACTIONS(6630), + [anon_sym_xor_eq] = ACTIONS(6630), + [anon_sym_LT_EQ_GT] = ACTIONS(6630), + [anon_sym_or] = ACTIONS(6628), + [anon_sym_and] = ACTIONS(6628), + [anon_sym_bitor] = ACTIONS(6630), + [anon_sym_xor] = ACTIONS(6628), + [anon_sym_bitand] = ACTIONS(6630), + [anon_sym_not_eq] = ACTIONS(6630), + [anon_sym_DASH_DASH] = ACTIONS(6630), + [anon_sym_PLUS_PLUS] = ACTIONS(6630), + [anon_sym_DOT] = ACTIONS(6628), + [anon_sym_DOT_STAR] = ACTIONS(6630), + [anon_sym_DASH_GT] = ACTIONS(6630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6630), + [anon_sym_decltype] = ACTIONS(6630), + [anon_sym_final] = ACTIONS(6630), + [anon_sym_override] = ACTIONS(6630), + [anon_sym_requires] = ACTIONS(6630), }, - [STATE(2679)] = { - [sym_attribute_specifier] = STATE(3063), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7093), - [anon_sym_COMMA] = ACTIONS(7093), - [anon_sym_LPAREN2] = ACTIONS(7093), - [anon_sym_DASH] = ACTIONS(7091), - [anon_sym_PLUS] = ACTIONS(7091), - [anon_sym_STAR] = ACTIONS(7091), - [anon_sym_SLASH] = ACTIONS(7091), - [anon_sym_PERCENT] = ACTIONS(7091), - [anon_sym_PIPE_PIPE] = ACTIONS(7093), - [anon_sym_AMP_AMP] = ACTIONS(7093), - [anon_sym_PIPE] = ACTIONS(7091), - [anon_sym_CARET] = ACTIONS(7091), - [anon_sym_AMP] = ACTIONS(7091), - [anon_sym_EQ_EQ] = ACTIONS(7093), - [anon_sym_BANG_EQ] = ACTIONS(7093), - [anon_sym_GT] = ACTIONS(7091), - [anon_sym_GT_EQ] = ACTIONS(7093), - [anon_sym_LT_EQ] = ACTIONS(7091), - [anon_sym_LT] = ACTIONS(7091), - [anon_sym_LT_LT] = ACTIONS(7091), - [anon_sym_GT_GT] = ACTIONS(7091), - [anon_sym___extension__] = ACTIONS(7093), - [anon_sym___attribute__] = ACTIONS(8003), - [anon_sym___attribute] = ACTIONS(8005), - [anon_sym_LBRACE] = ACTIONS(7093), - [anon_sym_LBRACK] = ACTIONS(7093), - [anon_sym_RBRACK] = ACTIONS(7093), - [anon_sym_EQ] = ACTIONS(7091), - [anon_sym_const] = ACTIONS(7091), - [anon_sym_constexpr] = ACTIONS(7093), - [anon_sym_volatile] = ACTIONS(7093), - [anon_sym_restrict] = ACTIONS(7093), - [anon_sym___restrict__] = ACTIONS(7093), - [anon_sym__Atomic] = ACTIONS(7093), - [anon_sym__Noreturn] = ACTIONS(7093), - [anon_sym_noreturn] = ACTIONS(7093), - [anon_sym__Nonnull] = ACTIONS(7093), - [anon_sym_mutable] = ACTIONS(7093), - [anon_sym_constinit] = ACTIONS(7093), - [anon_sym_consteval] = ACTIONS(7093), - [anon_sym_alignas] = ACTIONS(7093), - [anon_sym__Alignas] = ACTIONS(7093), - [anon_sym_QMARK] = ACTIONS(7093), - [anon_sym_STAR_EQ] = ACTIONS(7093), - [anon_sym_SLASH_EQ] = ACTIONS(7093), - [anon_sym_PERCENT_EQ] = ACTIONS(7093), - [anon_sym_PLUS_EQ] = ACTIONS(7093), - [anon_sym_DASH_EQ] = ACTIONS(7093), - [anon_sym_LT_LT_EQ] = ACTIONS(7093), - [anon_sym_GT_GT_EQ] = ACTIONS(7093), - [anon_sym_AMP_EQ] = ACTIONS(7093), - [anon_sym_CARET_EQ] = ACTIONS(7093), - [anon_sym_PIPE_EQ] = ACTIONS(7093), - [anon_sym_and_eq] = ACTIONS(7093), - [anon_sym_or_eq] = ACTIONS(7093), - [anon_sym_xor_eq] = ACTIONS(7093), - [anon_sym_LT_EQ_GT] = ACTIONS(7093), - [anon_sym_or] = ACTIONS(7091), - [anon_sym_and] = ACTIONS(7091), - [anon_sym_bitor] = ACTIONS(7093), - [anon_sym_xor] = ACTIONS(7091), - [anon_sym_bitand] = ACTIONS(7093), - [anon_sym_not_eq] = ACTIONS(7093), - [anon_sym_DASH_DASH] = ACTIONS(7093), - [anon_sym_PLUS_PLUS] = ACTIONS(7093), - [anon_sym_DOT] = ACTIONS(7091), - [anon_sym_DOT_STAR] = ACTIONS(7093), - [anon_sym_DASH_GT] = ACTIONS(7093), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7093), - [anon_sym_override] = ACTIONS(7093), - [anon_sym_requires] = ACTIONS(7093), + [STATE(2532)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_exception_specification] = STATE(3044), + [sym__function_attributes_end] = STATE(4231), + [sym__function_postfix] = STATE(3628), + [sym_trailing_return_type] = STATE(3071), + [sym_noexcept] = STATE(3044), + [sym_throw_specifier] = STATE(3044), + [sym_requires_clause] = STATE(3628), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym_SEMI] = ACTIONS(7791), + [anon_sym___attribute__] = ACTIONS(8330), + [anon_sym___attribute] = ACTIONS(8333), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8336), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6561), + [anon_sym_override] = ACTIONS(6561), + [anon_sym_noexcept] = ACTIONS(6546), + [anon_sym_throw] = ACTIONS(6548), + [anon_sym_requires] = ACTIONS(6563), }, - [STATE(2680)] = { - [sym_attribute_specifier] = STATE(3037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7063), - [anon_sym_COMMA] = ACTIONS(7063), - [anon_sym_LPAREN2] = ACTIONS(7063), - [anon_sym_DASH] = ACTIONS(7061), - [anon_sym_PLUS] = ACTIONS(7061), - [anon_sym_STAR] = ACTIONS(7061), - [anon_sym_SLASH] = ACTIONS(7061), - [anon_sym_PERCENT] = ACTIONS(7061), - [anon_sym_PIPE_PIPE] = ACTIONS(7063), - [anon_sym_AMP_AMP] = ACTIONS(7063), - [anon_sym_PIPE] = ACTIONS(7061), - [anon_sym_CARET] = ACTIONS(7061), - [anon_sym_AMP] = ACTIONS(7061), - [anon_sym_EQ_EQ] = ACTIONS(7063), - [anon_sym_BANG_EQ] = ACTIONS(7063), - [anon_sym_GT] = ACTIONS(7061), - [anon_sym_GT_EQ] = ACTIONS(7061), - [anon_sym_LT_EQ] = ACTIONS(7061), - [anon_sym_LT] = ACTIONS(7061), - [anon_sym_LT_LT] = ACTIONS(7061), - [anon_sym_GT_GT] = ACTIONS(7061), - [anon_sym___extension__] = ACTIONS(7063), - [anon_sym___attribute__] = ACTIONS(7862), - [anon_sym___attribute] = ACTIONS(7864), - [anon_sym_LBRACE] = ACTIONS(7063), - [anon_sym_LBRACK] = ACTIONS(7063), - [anon_sym_EQ] = ACTIONS(7061), - [anon_sym_const] = ACTIONS(7061), - [anon_sym_constexpr] = ACTIONS(7063), - [anon_sym_volatile] = ACTIONS(7063), - [anon_sym_restrict] = ACTIONS(7063), - [anon_sym___restrict__] = ACTIONS(7063), - [anon_sym__Atomic] = ACTIONS(7063), - [anon_sym__Noreturn] = ACTIONS(7063), - [anon_sym_noreturn] = ACTIONS(7063), - [anon_sym__Nonnull] = ACTIONS(7063), - [anon_sym_mutable] = ACTIONS(7063), - [anon_sym_constinit] = ACTIONS(7063), - [anon_sym_consteval] = ACTIONS(7063), - [anon_sym_alignas] = ACTIONS(7063), - [anon_sym__Alignas] = ACTIONS(7063), - [anon_sym_QMARK] = ACTIONS(7063), - [anon_sym_STAR_EQ] = ACTIONS(7063), - [anon_sym_SLASH_EQ] = ACTIONS(7063), - [anon_sym_PERCENT_EQ] = ACTIONS(7063), - [anon_sym_PLUS_EQ] = ACTIONS(7063), - [anon_sym_DASH_EQ] = ACTIONS(7063), - [anon_sym_LT_LT_EQ] = ACTIONS(7063), - [anon_sym_GT_GT_EQ] = ACTIONS(7061), - [anon_sym_AMP_EQ] = ACTIONS(7063), - [anon_sym_CARET_EQ] = ACTIONS(7063), - [anon_sym_PIPE_EQ] = ACTIONS(7063), - [anon_sym_and_eq] = ACTIONS(7063), - [anon_sym_or_eq] = ACTIONS(7063), - [anon_sym_xor_eq] = ACTIONS(7063), - [anon_sym_LT_EQ_GT] = ACTIONS(7063), - [anon_sym_or] = ACTIONS(7061), - [anon_sym_and] = ACTIONS(7061), - [anon_sym_bitor] = ACTIONS(7063), - [anon_sym_xor] = ACTIONS(7061), - [anon_sym_bitand] = ACTIONS(7063), - [anon_sym_not_eq] = ACTIONS(7063), - [anon_sym_DASH_DASH] = ACTIONS(7063), - [anon_sym_PLUS_PLUS] = ACTIONS(7063), - [anon_sym_DOT] = ACTIONS(7061), - [anon_sym_DOT_STAR] = ACTIONS(7063), - [anon_sym_DASH_GT] = ACTIONS(7063), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7063), - [anon_sym_override] = ACTIONS(7063), - [anon_sym_GT2] = ACTIONS(7063), - [anon_sym_requires] = ACTIONS(7063), + [STATE(2533)] = { + [sym_template_argument_list] = STATE(2494), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5657), + [anon_sym_COMMA] = ACTIONS(5657), + [anon_sym_RPAREN] = ACTIONS(5657), + [anon_sym_LPAREN2] = ACTIONS(5657), + [anon_sym_DASH] = ACTIONS(7371), + [anon_sym_PLUS] = ACTIONS(7371), + [anon_sym_STAR] = ACTIONS(7371), + [anon_sym_SLASH] = ACTIONS(7371), + [anon_sym_PERCENT] = ACTIONS(7371), + [anon_sym_PIPE_PIPE] = ACTIONS(5657), + [anon_sym_AMP_AMP] = ACTIONS(5657), + [anon_sym_PIPE] = ACTIONS(7371), + [anon_sym_CARET] = ACTIONS(7371), + [anon_sym_AMP] = ACTIONS(7371), + [anon_sym_EQ_EQ] = ACTIONS(5657), + [anon_sym_BANG_EQ] = ACTIONS(5657), + [anon_sym_GT] = ACTIONS(7371), + [anon_sym_GT_EQ] = ACTIONS(5657), + [anon_sym_LT_EQ] = ACTIONS(7371), + [anon_sym_LT] = ACTIONS(7964), + [anon_sym_LT_LT] = ACTIONS(7371), + [anon_sym_GT_GT] = ACTIONS(7371), + [anon_sym___extension__] = ACTIONS(5657), + [anon_sym___attribute__] = ACTIONS(5657), + [anon_sym___attribute] = ACTIONS(7371), + [anon_sym_COLON] = ACTIONS(7371), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5657), + [anon_sym_EQ] = ACTIONS(7371), + [anon_sym_const] = ACTIONS(7371), + [anon_sym_constexpr] = ACTIONS(5657), + [anon_sym_volatile] = ACTIONS(5657), + [anon_sym_restrict] = ACTIONS(5657), + [anon_sym___restrict__] = ACTIONS(5657), + [anon_sym__Atomic] = ACTIONS(5657), + [anon_sym__Noreturn] = ACTIONS(5657), + [anon_sym_noreturn] = ACTIONS(5657), + [anon_sym__Nonnull] = ACTIONS(5657), + [anon_sym_mutable] = ACTIONS(5657), + [anon_sym_constinit] = ACTIONS(5657), + [anon_sym_consteval] = ACTIONS(5657), + [anon_sym_alignas] = ACTIONS(5657), + [anon_sym__Alignas] = ACTIONS(5657), + [anon_sym_QMARK] = ACTIONS(5657), + [anon_sym_STAR_EQ] = ACTIONS(5657), + [anon_sym_SLASH_EQ] = ACTIONS(5657), + [anon_sym_PERCENT_EQ] = ACTIONS(5657), + [anon_sym_PLUS_EQ] = ACTIONS(5657), + [anon_sym_DASH_EQ] = ACTIONS(5657), + [anon_sym_LT_LT_EQ] = ACTIONS(5657), + [anon_sym_GT_GT_EQ] = ACTIONS(5657), + [anon_sym_AMP_EQ] = ACTIONS(5657), + [anon_sym_CARET_EQ] = ACTIONS(5657), + [anon_sym_PIPE_EQ] = ACTIONS(5657), + [anon_sym_and_eq] = ACTIONS(5657), + [anon_sym_or_eq] = ACTIONS(5657), + [anon_sym_xor_eq] = ACTIONS(5657), + [anon_sym_LT_EQ_GT] = ACTIONS(5657), + [anon_sym_or] = ACTIONS(7371), + [anon_sym_and] = ACTIONS(7371), + [anon_sym_bitor] = ACTIONS(5657), + [anon_sym_xor] = ACTIONS(7371), + [anon_sym_bitand] = ACTIONS(5657), + [anon_sym_not_eq] = ACTIONS(5657), + [anon_sym_DASH_DASH] = ACTIONS(5657), + [anon_sym_PLUS_PLUS] = ACTIONS(5657), + [anon_sym_DOT] = ACTIONS(7371), + [anon_sym_DOT_STAR] = ACTIONS(5657), + [anon_sym_DASH_GT] = ACTIONS(7371), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(5657), + [anon_sym_override] = ACTIONS(5657), + [anon_sym_requires] = ACTIONS(5657), + [anon_sym_DASH_GT_STAR] = ACTIONS(5657), }, - [STATE(2681)] = { - [sym_identifier] = ACTIONS(6967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6969), - [anon_sym_COMMA] = ACTIONS(6969), - [anon_sym_RPAREN] = ACTIONS(6969), - [anon_sym_LPAREN2] = ACTIONS(6969), - [anon_sym_DASH] = ACTIONS(6967), - [anon_sym_PLUS] = ACTIONS(6967), - [anon_sym_STAR] = ACTIONS(6969), - [anon_sym_SLASH] = ACTIONS(6967), - [anon_sym_PERCENT] = ACTIONS(6969), - [anon_sym_PIPE_PIPE] = ACTIONS(6969), - [anon_sym_AMP_AMP] = ACTIONS(6969), - [anon_sym_PIPE] = ACTIONS(6967), - [anon_sym_CARET] = ACTIONS(6969), - [anon_sym_AMP] = ACTIONS(6967), - [anon_sym_EQ_EQ] = ACTIONS(6969), - [anon_sym_BANG_EQ] = ACTIONS(6969), - [anon_sym_GT] = ACTIONS(6967), - [anon_sym_GT_EQ] = ACTIONS(6969), - [anon_sym_LT_EQ] = ACTIONS(6967), - [anon_sym_LT] = ACTIONS(6967), - [anon_sym_LT_LT] = ACTIONS(6969), - [anon_sym_GT_GT] = ACTIONS(6969), - [anon_sym_SEMI] = ACTIONS(6969), - [anon_sym___extension__] = ACTIONS(6967), - [anon_sym___attribute__] = ACTIONS(6967), - [anon_sym___attribute] = ACTIONS(6967), - [anon_sym_COLON] = ACTIONS(6967), - [anon_sym_COLON_COLON] = ACTIONS(6969), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6969), - [anon_sym___based] = ACTIONS(6967), - [anon_sym_LBRACE] = ACTIONS(6969), - [anon_sym_RBRACE] = ACTIONS(6969), - [anon_sym_signed] = ACTIONS(6967), - [anon_sym_unsigned] = ACTIONS(6967), - [anon_sym_long] = ACTIONS(6967), - [anon_sym_short] = ACTIONS(6967), - [anon_sym_LBRACK] = ACTIONS(6969), - [anon_sym_const] = ACTIONS(6967), - [anon_sym_constexpr] = ACTIONS(6967), - [anon_sym_volatile] = ACTIONS(6967), - [anon_sym_restrict] = ACTIONS(6967), - [anon_sym___restrict__] = ACTIONS(6967), - [anon_sym__Atomic] = ACTIONS(6967), - [anon_sym__Noreturn] = ACTIONS(6967), - [anon_sym_noreturn] = ACTIONS(6967), - [anon_sym__Nonnull] = ACTIONS(6967), - [anon_sym_mutable] = ACTIONS(6967), - [anon_sym_constinit] = ACTIONS(6967), - [anon_sym_consteval] = ACTIONS(6967), - [anon_sym_alignas] = ACTIONS(6967), - [anon_sym__Alignas] = ACTIONS(6967), - [sym_primitive_type] = ACTIONS(6967), - [anon_sym_QMARK] = ACTIONS(6969), - [anon_sym_LT_EQ_GT] = ACTIONS(6969), - [anon_sym_or] = ACTIONS(6967), - [anon_sym_and] = ACTIONS(6967), - [anon_sym_bitor] = ACTIONS(6967), - [anon_sym_xor] = ACTIONS(6967), - [anon_sym_bitand] = ACTIONS(6967), - [anon_sym_not_eq] = ACTIONS(6967), - [anon_sym_DASH_DASH] = ACTIONS(6969), - [anon_sym_PLUS_PLUS] = ACTIONS(6969), - [anon_sym_DOT] = ACTIONS(6967), - [anon_sym_DOT_STAR] = ACTIONS(6969), - [anon_sym_DASH_GT] = ACTIONS(6969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6967), - [anon_sym_decltype] = ACTIONS(6967), - [anon_sym_final] = ACTIONS(6967), - [anon_sym_override] = ACTIONS(6967), - [anon_sym_requires] = ACTIONS(6967), - [anon_sym_COLON_RBRACK] = ACTIONS(6969), + [STATE(2534)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_exception_specification] = STATE(3061), + [sym__function_attributes_end] = STATE(4232), + [sym__function_postfix] = STATE(3655), + [sym_trailing_return_type] = STATE(3029), + [sym_noexcept] = STATE(3061), + [sym_throw_specifier] = STATE(3061), + [sym_requires_clause] = STATE(3655), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym_SEMI] = ACTIONS(7966), + [anon_sym___attribute__] = ACTIONS(8391), + [anon_sym___attribute] = ACTIONS(8394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7966), + [anon_sym_or_eq] = ACTIONS(7966), + [anon_sym_xor_eq] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(8397), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6561), + [anon_sym_override] = ACTIONS(6561), + [anon_sym_noexcept] = ACTIONS(6546), + [anon_sym_throw] = ACTIONS(6548), + [anon_sym_requires] = ACTIONS(6563), }, - [STATE(2682)] = { - [sym_attribute_specifier] = STATE(3065), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7097), - [anon_sym_COMMA] = ACTIONS(7097), - [anon_sym_LPAREN2] = ACTIONS(7097), - [anon_sym_DASH] = ACTIONS(7095), - [anon_sym_PLUS] = ACTIONS(7095), - [anon_sym_STAR] = ACTIONS(7095), - [anon_sym_SLASH] = ACTIONS(7095), - [anon_sym_PERCENT] = ACTIONS(7095), - [anon_sym_PIPE_PIPE] = ACTIONS(7097), - [anon_sym_AMP_AMP] = ACTIONS(7097), - [anon_sym_PIPE] = ACTIONS(7095), - [anon_sym_CARET] = ACTIONS(7095), - [anon_sym_AMP] = ACTIONS(7095), - [anon_sym_EQ_EQ] = ACTIONS(7097), - [anon_sym_BANG_EQ] = ACTIONS(7097), - [anon_sym_GT] = ACTIONS(7095), - [anon_sym_GT_EQ] = ACTIONS(7097), - [anon_sym_LT_EQ] = ACTIONS(7095), - [anon_sym_LT] = ACTIONS(7095), - [anon_sym_LT_LT] = ACTIONS(7095), - [anon_sym_GT_GT] = ACTIONS(7095), - [anon_sym___extension__] = ACTIONS(7097), - [anon_sym___attribute__] = ACTIONS(8003), - [anon_sym___attribute] = ACTIONS(8005), - [anon_sym_LBRACE] = ACTIONS(7097), - [anon_sym_LBRACK] = ACTIONS(7097), - [anon_sym_RBRACK] = ACTIONS(7097), - [anon_sym_EQ] = ACTIONS(7095), - [anon_sym_const] = ACTIONS(7095), - [anon_sym_constexpr] = ACTIONS(7097), - [anon_sym_volatile] = ACTIONS(7097), - [anon_sym_restrict] = ACTIONS(7097), - [anon_sym___restrict__] = ACTIONS(7097), - [anon_sym__Atomic] = ACTIONS(7097), - [anon_sym__Noreturn] = ACTIONS(7097), - [anon_sym_noreturn] = ACTIONS(7097), - [anon_sym__Nonnull] = ACTIONS(7097), - [anon_sym_mutable] = ACTIONS(7097), - [anon_sym_constinit] = ACTIONS(7097), - [anon_sym_consteval] = ACTIONS(7097), - [anon_sym_alignas] = ACTIONS(7097), - [anon_sym__Alignas] = ACTIONS(7097), - [anon_sym_QMARK] = ACTIONS(7097), - [anon_sym_STAR_EQ] = ACTIONS(7097), - [anon_sym_SLASH_EQ] = ACTIONS(7097), - [anon_sym_PERCENT_EQ] = ACTIONS(7097), - [anon_sym_PLUS_EQ] = ACTIONS(7097), - [anon_sym_DASH_EQ] = ACTIONS(7097), - [anon_sym_LT_LT_EQ] = ACTIONS(7097), - [anon_sym_GT_GT_EQ] = ACTIONS(7097), - [anon_sym_AMP_EQ] = ACTIONS(7097), - [anon_sym_CARET_EQ] = ACTIONS(7097), - [anon_sym_PIPE_EQ] = ACTIONS(7097), - [anon_sym_and_eq] = ACTIONS(7097), - [anon_sym_or_eq] = ACTIONS(7097), - [anon_sym_xor_eq] = ACTIONS(7097), - [anon_sym_LT_EQ_GT] = ACTIONS(7097), - [anon_sym_or] = ACTIONS(7095), - [anon_sym_and] = ACTIONS(7095), - [anon_sym_bitor] = ACTIONS(7097), - [anon_sym_xor] = ACTIONS(7095), - [anon_sym_bitand] = ACTIONS(7097), - [anon_sym_not_eq] = ACTIONS(7097), - [anon_sym_DASH_DASH] = ACTIONS(7097), - [anon_sym_PLUS_PLUS] = ACTIONS(7097), - [anon_sym_DOT] = ACTIONS(7095), - [anon_sym_DOT_STAR] = ACTIONS(7097), - [anon_sym_DASH_GT] = ACTIONS(7097), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7097), - [anon_sym_override] = ACTIONS(7097), - [anon_sym_requires] = ACTIONS(7097), + [STATE(2535)] = { + [sym_attribute_specifier] = STATE(4161), + [sym_attribute_declaration] = STATE(4617), + [sym_gnu_asm_expression] = STATE(9112), + [sym_virtual_specifier] = STATE(4705), + [sym__function_exception_specification] = STATE(2981), + [sym__function_attributes_end] = STATE(4353), + [sym__function_postfix] = STATE(5258), + [sym_trailing_return_type] = STATE(4468), + [sym_noexcept] = STATE(2981), + [sym_throw_specifier] = STATE(2981), + [sym_requires_clause] = STATE(5258), + [aux_sym_type_definition_repeat1] = STATE(4161), + [aux_sym_attributed_declarator_repeat1] = STATE(4617), + [aux_sym__function_postfix_repeat1] = STATE(4705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7789), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6681), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7789), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8318), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8321), + [anon_sym_override] = ACTIONS(8321), + [anon_sym_GT2] = ACTIONS(7791), + [anon_sym_noexcept] = ACTIONS(6696), + [anon_sym_throw] = ACTIONS(6698), + [anon_sym_requires] = ACTIONS(8324), }, - [STATE(2683)] = { - [sym_identifier] = ACTIONS(4115), - [aux_sym_preproc_def_token1] = ACTIONS(4115), - [aux_sym_preproc_if_token1] = ACTIONS(4115), - [aux_sym_preproc_if_token2] = ACTIONS(4115), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4115), - [aux_sym_preproc_else_token1] = ACTIONS(4115), - [aux_sym_preproc_elif_token1] = ACTIONS(4115), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4115), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4115), - [sym_preproc_directive] = ACTIONS(4115), - [anon_sym_LPAREN2] = ACTIONS(4117), - [anon_sym_TILDE] = ACTIONS(4117), - [anon_sym_STAR] = ACTIONS(4117), - [anon_sym_AMP_AMP] = ACTIONS(4117), - [anon_sym_AMP] = ACTIONS(4115), - [anon_sym_SEMI] = ACTIONS(4117), - [anon_sym___extension__] = ACTIONS(4115), - [anon_sym_typedef] = ACTIONS(4115), - [anon_sym_virtual] = ACTIONS(4115), - [anon_sym_extern] = ACTIONS(4115), - [anon_sym___attribute__] = ACTIONS(4115), - [anon_sym___attribute] = ACTIONS(4115), - [anon_sym_using] = ACTIONS(4115), - [anon_sym_COLON_COLON] = ACTIONS(4117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4117), - [anon_sym___declspec] = ACTIONS(4115), - [anon_sym___based] = ACTIONS(4115), - [anon_sym_signed] = ACTIONS(4115), - [anon_sym_unsigned] = ACTIONS(4115), - [anon_sym_long] = ACTIONS(4115), - [anon_sym_short] = ACTIONS(4115), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4115), - [anon_sym_register] = ACTIONS(4115), - [anon_sym_inline] = ACTIONS(4115), - [anon_sym___inline] = ACTIONS(4115), - [anon_sym___inline__] = ACTIONS(4115), - [anon_sym___forceinline] = ACTIONS(4115), - [anon_sym_thread_local] = ACTIONS(4115), - [anon_sym___thread] = ACTIONS(4115), - [anon_sym_const] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(4115), - [anon_sym_volatile] = ACTIONS(4115), - [anon_sym_restrict] = ACTIONS(4115), - [anon_sym___restrict__] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(4115), - [anon_sym__Noreturn] = ACTIONS(4115), - [anon_sym_noreturn] = ACTIONS(4115), - [anon_sym__Nonnull] = ACTIONS(4115), - [anon_sym_mutable] = ACTIONS(4115), - [anon_sym_constinit] = ACTIONS(4115), - [anon_sym_consteval] = ACTIONS(4115), - [anon_sym_alignas] = ACTIONS(4115), - [anon_sym__Alignas] = ACTIONS(4115), - [sym_primitive_type] = ACTIONS(4115), - [anon_sym_enum] = ACTIONS(4115), - [anon_sym_class] = ACTIONS(4115), - [anon_sym_struct] = ACTIONS(4115), - [anon_sym_union] = ACTIONS(4115), - [anon_sym_typename] = ACTIONS(4115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4115), - [anon_sym_decltype] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(4115), - [anon_sym_private] = ACTIONS(4115), - [anon_sym_template] = ACTIONS(4115), - [anon_sym_operator] = ACTIONS(4115), - [anon_sym_friend] = ACTIONS(4115), - [anon_sym_public] = ACTIONS(4115), - [anon_sym_protected] = ACTIONS(4115), - [anon_sym_static_assert] = ACTIONS(4115), - [anon_sym_LBRACK_COLON] = ACTIONS(4117), + [STATE(2536)] = { + [sym_catch_clause] = STATE(2536), + [aux_sym_constructor_try_statement_repeat1] = STATE(2536), + [sym_identifier] = ACTIONS(3171), + [aux_sym_preproc_def_token1] = ACTIONS(3171), + [aux_sym_preproc_if_token1] = ACTIONS(3171), + [aux_sym_preproc_if_token2] = ACTIONS(3171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3171), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3171), + [aux_sym_preproc_else_token1] = ACTIONS(3171), + [aux_sym_preproc_elif_token1] = ACTIONS(3171), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3171), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3171), + [sym_preproc_directive] = ACTIONS(3171), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3173), + [anon_sym_STAR] = ACTIONS(3173), + [anon_sym_AMP_AMP] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym___extension__] = ACTIONS(3171), + [anon_sym_typedef] = ACTIONS(3171), + [anon_sym_virtual] = ACTIONS(3171), + [anon_sym_extern] = ACTIONS(3171), + [anon_sym___attribute__] = ACTIONS(3171), + [anon_sym___attribute] = ACTIONS(3171), + [anon_sym_using] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3173), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), + [anon_sym___declspec] = ACTIONS(3171), + [anon_sym___based] = ACTIONS(3171), + [anon_sym_signed] = ACTIONS(3171), + [anon_sym_unsigned] = ACTIONS(3171), + [anon_sym_long] = ACTIONS(3171), + [anon_sym_short] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_register] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym___inline] = ACTIONS(3171), + [anon_sym___inline__] = ACTIONS(3171), + [anon_sym___forceinline] = ACTIONS(3171), + [anon_sym_thread_local] = ACTIONS(3171), + [anon_sym___thread] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_constexpr] = ACTIONS(3171), + [anon_sym_volatile] = ACTIONS(3171), + [anon_sym_restrict] = ACTIONS(3171), + [anon_sym___restrict__] = ACTIONS(3171), + [anon_sym__Atomic] = ACTIONS(3171), + [anon_sym__Noreturn] = ACTIONS(3171), + [anon_sym_noreturn] = ACTIONS(3171), + [anon_sym__Nonnull] = ACTIONS(3171), + [anon_sym_mutable] = ACTIONS(3171), + [anon_sym_constinit] = ACTIONS(3171), + [anon_sym_consteval] = ACTIONS(3171), + [anon_sym_alignas] = ACTIONS(3171), + [anon_sym__Alignas] = ACTIONS(3171), + [sym_primitive_type] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), + [anon_sym_class] = ACTIONS(3171), + [anon_sym_struct] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_typename] = ACTIONS(3171), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3171), + [anon_sym_decltype] = ACTIONS(3171), + [anon_sym_explicit] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_template] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_friend] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_static_assert] = ACTIONS(3171), + [anon_sym_catch] = ACTIONS(8400), + [anon_sym_LBRACK_COLON] = ACTIONS(3173), }, - [STATE(2684)] = { - [sym_attribute_specifier] = STATE(3066), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7101), - [anon_sym_COMMA] = ACTIONS(7101), - [anon_sym_LPAREN2] = ACTIONS(7101), - [anon_sym_DASH] = ACTIONS(7099), - [anon_sym_PLUS] = ACTIONS(7099), - [anon_sym_STAR] = ACTIONS(7099), - [anon_sym_SLASH] = ACTIONS(7099), - [anon_sym_PERCENT] = ACTIONS(7099), - [anon_sym_PIPE_PIPE] = ACTIONS(7101), - [anon_sym_AMP_AMP] = ACTIONS(7101), - [anon_sym_PIPE] = ACTIONS(7099), - [anon_sym_CARET] = ACTIONS(7099), - [anon_sym_AMP] = ACTIONS(7099), - [anon_sym_EQ_EQ] = ACTIONS(7101), - [anon_sym_BANG_EQ] = ACTIONS(7101), - [anon_sym_GT] = ACTIONS(7099), - [anon_sym_GT_EQ] = ACTIONS(7101), - [anon_sym_LT_EQ] = ACTIONS(7099), - [anon_sym_LT] = ACTIONS(7099), - [anon_sym_LT_LT] = ACTIONS(7099), - [anon_sym_GT_GT] = ACTIONS(7099), - [anon_sym___extension__] = ACTIONS(7101), - [anon_sym___attribute__] = ACTIONS(8003), - [anon_sym___attribute] = ACTIONS(8005), - [anon_sym_LBRACE] = ACTIONS(7101), - [anon_sym_LBRACK] = ACTIONS(7101), - [anon_sym_RBRACK] = ACTIONS(7101), - [anon_sym_EQ] = ACTIONS(7099), - [anon_sym_const] = ACTIONS(7099), - [anon_sym_constexpr] = ACTIONS(7101), - [anon_sym_volatile] = ACTIONS(7101), - [anon_sym_restrict] = ACTIONS(7101), - [anon_sym___restrict__] = ACTIONS(7101), - [anon_sym__Atomic] = ACTIONS(7101), - [anon_sym__Noreturn] = ACTIONS(7101), - [anon_sym_noreturn] = ACTIONS(7101), - [anon_sym__Nonnull] = ACTIONS(7101), - [anon_sym_mutable] = ACTIONS(7101), - [anon_sym_constinit] = ACTIONS(7101), - [anon_sym_consteval] = ACTIONS(7101), - [anon_sym_alignas] = ACTIONS(7101), - [anon_sym__Alignas] = ACTIONS(7101), - [anon_sym_QMARK] = ACTIONS(7101), - [anon_sym_STAR_EQ] = ACTIONS(7101), - [anon_sym_SLASH_EQ] = ACTIONS(7101), - [anon_sym_PERCENT_EQ] = ACTIONS(7101), - [anon_sym_PLUS_EQ] = ACTIONS(7101), - [anon_sym_DASH_EQ] = ACTIONS(7101), - [anon_sym_LT_LT_EQ] = ACTIONS(7101), - [anon_sym_GT_GT_EQ] = ACTIONS(7101), - [anon_sym_AMP_EQ] = ACTIONS(7101), - [anon_sym_CARET_EQ] = ACTIONS(7101), - [anon_sym_PIPE_EQ] = ACTIONS(7101), - [anon_sym_and_eq] = ACTIONS(7101), - [anon_sym_or_eq] = ACTIONS(7101), - [anon_sym_xor_eq] = ACTIONS(7101), - [anon_sym_LT_EQ_GT] = ACTIONS(7101), - [anon_sym_or] = ACTIONS(7099), - [anon_sym_and] = ACTIONS(7099), - [anon_sym_bitor] = ACTIONS(7101), - [anon_sym_xor] = ACTIONS(7099), - [anon_sym_bitand] = ACTIONS(7101), - [anon_sym_not_eq] = ACTIONS(7101), - [anon_sym_DASH_DASH] = ACTIONS(7101), - [anon_sym_PLUS_PLUS] = ACTIONS(7101), - [anon_sym_DOT] = ACTIONS(7099), - [anon_sym_DOT_STAR] = ACTIONS(7101), - [anon_sym_DASH_GT] = ACTIONS(7101), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7101), - [anon_sym_override] = ACTIONS(7101), - [anon_sym_requires] = ACTIONS(7101), + [STATE(2537)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_attributes_end] = STATE(3914), + [sym__function_postfix] = STATE(3655), + [sym_trailing_return_type] = STATE(3029), + [sym_requires_clause] = STATE(3655), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_RPAREN] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym_SEMI] = ACTIONS(7966), + [anon_sym___attribute__] = ACTIONS(6534), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_COLON] = ACTIONS(7968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7966), + [anon_sym_RBRACE] = ACTIONS(7966), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7966), + [anon_sym_or_eq] = ACTIONS(7966), + [anon_sym_xor_eq] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(7970), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6561), + [anon_sym_override] = ACTIONS(6561), + [anon_sym_requires] = ACTIONS(6563), + [anon_sym_COLON_RBRACK] = ACTIONS(7966), }, - [STATE(2685)] = { - [sym_attribute_specifier] = STATE(3142), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7105), - [anon_sym_COMMA] = ACTIONS(7105), - [anon_sym_LPAREN2] = ACTIONS(7105), - [anon_sym_DASH] = ACTIONS(7103), - [anon_sym_PLUS] = ACTIONS(7103), - [anon_sym_STAR] = ACTIONS(7103), - [anon_sym_SLASH] = ACTIONS(7103), - [anon_sym_PERCENT] = ACTIONS(7103), - [anon_sym_PIPE_PIPE] = ACTIONS(7105), - [anon_sym_AMP_AMP] = ACTIONS(7105), - [anon_sym_PIPE] = ACTIONS(7103), - [anon_sym_CARET] = ACTIONS(7103), - [anon_sym_AMP] = ACTIONS(7103), - [anon_sym_EQ_EQ] = ACTIONS(7105), - [anon_sym_BANG_EQ] = ACTIONS(7105), - [anon_sym_GT] = ACTIONS(7103), - [anon_sym_GT_EQ] = ACTIONS(7105), - [anon_sym_LT_EQ] = ACTIONS(7103), - [anon_sym_LT] = ACTIONS(7103), - [anon_sym_LT_LT] = ACTIONS(7103), - [anon_sym_GT_GT] = ACTIONS(7103), - [anon_sym___extension__] = ACTIONS(7105), - [anon_sym___attribute__] = ACTIONS(8003), - [anon_sym___attribute] = ACTIONS(8005), - [anon_sym_LBRACE] = ACTIONS(7105), - [anon_sym_LBRACK] = ACTIONS(7105), - [anon_sym_RBRACK] = ACTIONS(7105), - [anon_sym_EQ] = ACTIONS(7103), - [anon_sym_const] = ACTIONS(7103), - [anon_sym_constexpr] = ACTIONS(7105), - [anon_sym_volatile] = ACTIONS(7105), - [anon_sym_restrict] = ACTIONS(7105), - [anon_sym___restrict__] = ACTIONS(7105), - [anon_sym__Atomic] = ACTIONS(7105), - [anon_sym__Noreturn] = ACTIONS(7105), - [anon_sym_noreturn] = ACTIONS(7105), - [anon_sym__Nonnull] = ACTIONS(7105), - [anon_sym_mutable] = ACTIONS(7105), - [anon_sym_constinit] = ACTIONS(7105), - [anon_sym_consteval] = ACTIONS(7105), - [anon_sym_alignas] = ACTIONS(7105), - [anon_sym__Alignas] = ACTIONS(7105), - [anon_sym_QMARK] = ACTIONS(7105), - [anon_sym_STAR_EQ] = ACTIONS(7105), - [anon_sym_SLASH_EQ] = ACTIONS(7105), - [anon_sym_PERCENT_EQ] = ACTIONS(7105), - [anon_sym_PLUS_EQ] = ACTIONS(7105), - [anon_sym_DASH_EQ] = ACTIONS(7105), - [anon_sym_LT_LT_EQ] = ACTIONS(7105), - [anon_sym_GT_GT_EQ] = ACTIONS(7105), - [anon_sym_AMP_EQ] = ACTIONS(7105), - [anon_sym_CARET_EQ] = ACTIONS(7105), - [anon_sym_PIPE_EQ] = ACTIONS(7105), - [anon_sym_and_eq] = ACTIONS(7105), - [anon_sym_or_eq] = ACTIONS(7105), - [anon_sym_xor_eq] = ACTIONS(7105), - [anon_sym_LT_EQ_GT] = ACTIONS(7105), - [anon_sym_or] = ACTIONS(7103), - [anon_sym_and] = ACTIONS(7103), - [anon_sym_bitor] = ACTIONS(7105), - [anon_sym_xor] = ACTIONS(7103), - [anon_sym_bitand] = ACTIONS(7105), - [anon_sym_not_eq] = ACTIONS(7105), - [anon_sym_DASH_DASH] = ACTIONS(7105), - [anon_sym_PLUS_PLUS] = ACTIONS(7105), - [anon_sym_DOT] = ACTIONS(7103), - [anon_sym_DOT_STAR] = ACTIONS(7105), - [anon_sym_DASH_GT] = ACTIONS(7105), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7105), - [anon_sym_override] = ACTIONS(7105), - [anon_sym_requires] = ACTIONS(7105), + [STATE(2538)] = { + [sym_string_literal] = STATE(2538), + [sym_raw_string_literal] = STATE(2538), + [aux_sym_concatenated_string_repeat1] = STATE(2538), + [sym_identifier] = ACTIONS(8403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8406), + [anon_sym_COMMA] = ACTIONS(8406), + [anon_sym_RPAREN] = ACTIONS(8406), + [aux_sym_preproc_if_token2] = ACTIONS(8406), + [aux_sym_preproc_else_token1] = ACTIONS(8406), + [aux_sym_preproc_elif_token1] = ACTIONS(8408), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8406), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8406), + [anon_sym_LPAREN2] = ACTIONS(8406), + [anon_sym_DASH] = ACTIONS(8408), + [anon_sym_PLUS] = ACTIONS(8408), + [anon_sym_STAR] = ACTIONS(8408), + [anon_sym_SLASH] = ACTIONS(8408), + [anon_sym_PERCENT] = ACTIONS(8408), + [anon_sym_PIPE_PIPE] = ACTIONS(8406), + [anon_sym_AMP_AMP] = ACTIONS(8406), + [anon_sym_PIPE] = ACTIONS(8408), + [anon_sym_CARET] = ACTIONS(8408), + [anon_sym_AMP] = ACTIONS(8408), + [anon_sym_EQ_EQ] = ACTIONS(8406), + [anon_sym_BANG_EQ] = ACTIONS(8406), + [anon_sym_GT] = ACTIONS(8408), + [anon_sym_GT_EQ] = ACTIONS(8406), + [anon_sym_LT_EQ] = ACTIONS(8408), + [anon_sym_LT] = ACTIONS(8408), + [anon_sym_LT_LT] = ACTIONS(8408), + [anon_sym_GT_GT] = ACTIONS(8408), + [anon_sym_SEMI] = ACTIONS(8406), + [anon_sym_COLON] = ACTIONS(8408), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8406), + [anon_sym_RBRACE] = ACTIONS(8406), + [anon_sym_LBRACK] = ACTIONS(8406), + [anon_sym_EQ] = ACTIONS(8408), + [anon_sym_QMARK] = ACTIONS(8406), + [anon_sym_STAR_EQ] = ACTIONS(8406), + [anon_sym_SLASH_EQ] = ACTIONS(8406), + [anon_sym_PERCENT_EQ] = ACTIONS(8406), + [anon_sym_PLUS_EQ] = ACTIONS(8406), + [anon_sym_DASH_EQ] = ACTIONS(8406), + [anon_sym_LT_LT_EQ] = ACTIONS(8406), + [anon_sym_GT_GT_EQ] = ACTIONS(8406), + [anon_sym_AMP_EQ] = ACTIONS(8406), + [anon_sym_CARET_EQ] = ACTIONS(8406), + [anon_sym_PIPE_EQ] = ACTIONS(8406), + [anon_sym_and_eq] = ACTIONS(8408), + [anon_sym_or_eq] = ACTIONS(8408), + [anon_sym_xor_eq] = ACTIONS(8408), + [anon_sym_LT_EQ_GT] = ACTIONS(8406), + [anon_sym_or] = ACTIONS(8408), + [anon_sym_and] = ACTIONS(8408), + [anon_sym_bitor] = ACTIONS(8408), + [anon_sym_xor] = ACTIONS(8408), + [anon_sym_bitand] = ACTIONS(8408), + [anon_sym_not_eq] = ACTIONS(8408), + [anon_sym_DASH_DASH] = ACTIONS(8406), + [anon_sym_PLUS_PLUS] = ACTIONS(8406), + [anon_sym_DOT] = ACTIONS(8408), + [anon_sym_DOT_STAR] = ACTIONS(8406), + [anon_sym_DASH_GT] = ACTIONS(8406), + [anon_sym_L_DQUOTE] = ACTIONS(8410), + [anon_sym_u_DQUOTE] = ACTIONS(8410), + [anon_sym_U_DQUOTE] = ACTIONS(8410), + [anon_sym_u8_DQUOTE] = ACTIONS(8410), + [anon_sym_DQUOTE] = ACTIONS(8410), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8413), + [anon_sym_LR_DQUOTE] = ACTIONS(8413), + [anon_sym_uR_DQUOTE] = ACTIONS(8413), + [anon_sym_UR_DQUOTE] = ACTIONS(8413), + [anon_sym_u8R_DQUOTE] = ACTIONS(8413), + [anon_sym_COLON_RBRACK] = ACTIONS(8406), + [sym_literal_suffix] = ACTIONS(8408), }, - [STATE(2686)] = { - [sym_identifier] = ACTIONS(4196), - [aux_sym_preproc_def_token1] = ACTIONS(4196), - [aux_sym_preproc_if_token1] = ACTIONS(4196), - [aux_sym_preproc_if_token2] = ACTIONS(4196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4196), - [aux_sym_preproc_else_token1] = ACTIONS(4196), - [aux_sym_preproc_elif_token1] = ACTIONS(4196), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4196), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4196), - [sym_preproc_directive] = ACTIONS(4196), - [anon_sym_LPAREN2] = ACTIONS(4198), - [anon_sym_TILDE] = ACTIONS(4198), - [anon_sym_STAR] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_AMP] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym___extension__] = ACTIONS(4196), - [anon_sym_typedef] = ACTIONS(4196), - [anon_sym_virtual] = ACTIONS(4196), - [anon_sym_extern] = ACTIONS(4196), - [anon_sym___attribute__] = ACTIONS(4196), - [anon_sym___attribute] = ACTIONS(4196), - [anon_sym_using] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4198), - [anon_sym___declspec] = ACTIONS(4196), - [anon_sym___based] = ACTIONS(4196), - [anon_sym_signed] = ACTIONS(4196), - [anon_sym_unsigned] = ACTIONS(4196), - [anon_sym_long] = ACTIONS(4196), - [anon_sym_short] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_static] = ACTIONS(4196), - [anon_sym_register] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym___inline] = ACTIONS(4196), - [anon_sym___inline__] = ACTIONS(4196), - [anon_sym___forceinline] = ACTIONS(4196), - [anon_sym_thread_local] = ACTIONS(4196), - [anon_sym___thread] = ACTIONS(4196), - [anon_sym_const] = ACTIONS(4196), - [anon_sym_constexpr] = ACTIONS(4196), - [anon_sym_volatile] = ACTIONS(4196), - [anon_sym_restrict] = ACTIONS(4196), - [anon_sym___restrict__] = ACTIONS(4196), - [anon_sym__Atomic] = ACTIONS(4196), - [anon_sym__Noreturn] = ACTIONS(4196), - [anon_sym_noreturn] = ACTIONS(4196), - [anon_sym__Nonnull] = ACTIONS(4196), - [anon_sym_mutable] = ACTIONS(4196), - [anon_sym_constinit] = ACTIONS(4196), - [anon_sym_consteval] = ACTIONS(4196), - [anon_sym_alignas] = ACTIONS(4196), - [anon_sym__Alignas] = ACTIONS(4196), - [sym_primitive_type] = ACTIONS(4196), - [anon_sym_enum] = ACTIONS(4196), - [anon_sym_class] = ACTIONS(4196), - [anon_sym_struct] = ACTIONS(4196), - [anon_sym_union] = ACTIONS(4196), - [anon_sym_typename] = ACTIONS(4196), + [STATE(2539)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2784), + [sym_ms_pointer_modifier] = STATE(2595), + [sym__abstract_declarator] = STATE(6358), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3515), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2080), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3515), + [aux_sym_pointer_declarator_repeat1] = STATE(2595), + [sym_identifier] = ACTIONS(6821), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [aux_sym_preproc_if_token2] = ACTIONS(6823), + [aux_sym_preproc_else_token1] = ACTIONS(6823), + [aux_sym_preproc_elif_token1] = ACTIONS(6821), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6823), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(8416), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6823), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(8418), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6823), + [anon_sym_AMP] = ACTIONS(8420), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6823), + [anon_sym_GT_GT] = ACTIONS(6823), + [anon_sym___extension__] = ACTIONS(8092), + [sym_ms_restrict_modifier] = ACTIONS(8094), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8094), + [sym_ms_signed_ptr_modifier] = ACTIONS(8094), + [anon_sym__unaligned] = ACTIONS(8096), + [anon_sym___unaligned] = ACTIONS(8096), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8092), + [anon_sym_volatile] = ACTIONS(8092), + [anon_sym_restrict] = ACTIONS(8092), + [anon_sym___restrict__] = ACTIONS(8092), + [anon_sym__Atomic] = ACTIONS(8092), + [anon_sym__Noreturn] = ACTIONS(8092), + [anon_sym_noreturn] = ACTIONS(8092), + [anon_sym__Nonnull] = ACTIONS(8092), + [anon_sym_mutable] = ACTIONS(8092), + [anon_sym_constinit] = ACTIONS(8092), + [anon_sym_consteval] = ACTIONS(8092), + [anon_sym_alignas] = ACTIONS(8100), + [anon_sym__Alignas] = ACTIONS(8100), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6821), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6821), + [anon_sym_not_eq] = ACTIONS(6821), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4196), - [anon_sym_decltype] = ACTIONS(4196), - [anon_sym_explicit] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_template] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_friend] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_static_assert] = ACTIONS(4196), - [anon_sym_LBRACK_COLON] = ACTIONS(4198), }, - [STATE(2687)] = { - [sym_identifier] = ACTIONS(8281), - [aux_sym_preproc_def_token1] = ACTIONS(8281), - [aux_sym_preproc_if_token1] = ACTIONS(8281), - [aux_sym_preproc_if_token2] = ACTIONS(8281), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8281), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8281), - [aux_sym_preproc_else_token1] = ACTIONS(8281), - [aux_sym_preproc_elif_token1] = ACTIONS(8281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8281), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8281), - [sym_preproc_directive] = ACTIONS(8281), - [anon_sym_LPAREN2] = ACTIONS(8283), - [anon_sym_TILDE] = ACTIONS(8283), - [anon_sym_STAR] = ACTIONS(8283), - [anon_sym_AMP_AMP] = ACTIONS(8283), - [anon_sym_AMP] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8283), - [anon_sym___extension__] = ACTIONS(8281), - [anon_sym_typedef] = ACTIONS(8281), - [anon_sym_virtual] = ACTIONS(8281), - [anon_sym_extern] = ACTIONS(8281), - [anon_sym___attribute__] = ACTIONS(8281), - [anon_sym___attribute] = ACTIONS(8281), - [anon_sym_using] = ACTIONS(8281), - [anon_sym_COLON_COLON] = ACTIONS(8283), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8283), - [anon_sym___declspec] = ACTIONS(8281), - [anon_sym___based] = ACTIONS(8281), - [anon_sym_signed] = ACTIONS(8281), - [anon_sym_unsigned] = ACTIONS(8281), - [anon_sym_long] = ACTIONS(8281), - [anon_sym_short] = ACTIONS(8281), - [anon_sym_LBRACK] = ACTIONS(8281), - [anon_sym_static] = ACTIONS(8281), - [anon_sym_register] = ACTIONS(8281), - [anon_sym_inline] = ACTIONS(8281), - [anon_sym___inline] = ACTIONS(8281), - [anon_sym___inline__] = ACTIONS(8281), - [anon_sym___forceinline] = ACTIONS(8281), - [anon_sym_thread_local] = ACTIONS(8281), - [anon_sym___thread] = ACTIONS(8281), - [anon_sym_const] = ACTIONS(8281), - [anon_sym_constexpr] = ACTIONS(8281), - [anon_sym_volatile] = ACTIONS(8281), - [anon_sym_restrict] = ACTIONS(8281), - [anon_sym___restrict__] = ACTIONS(8281), - [anon_sym__Atomic] = ACTIONS(8281), - [anon_sym__Noreturn] = ACTIONS(8281), - [anon_sym_noreturn] = ACTIONS(8281), - [anon_sym__Nonnull] = ACTIONS(8281), - [anon_sym_mutable] = ACTIONS(8281), - [anon_sym_constinit] = ACTIONS(8281), - [anon_sym_consteval] = ACTIONS(8281), - [anon_sym_alignas] = ACTIONS(8281), - [anon_sym__Alignas] = ACTIONS(8281), - [sym_primitive_type] = ACTIONS(8281), - [anon_sym_enum] = ACTIONS(8281), - [anon_sym_class] = ACTIONS(8281), - [anon_sym_struct] = ACTIONS(8281), - [anon_sym_union] = ACTIONS(8281), - [anon_sym_typename] = ACTIONS(8281), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8281), - [anon_sym_decltype] = ACTIONS(8281), - [anon_sym_explicit] = ACTIONS(8281), - [anon_sym_private] = ACTIONS(8281), - [anon_sym_template] = ACTIONS(8281), - [anon_sym_operator] = ACTIONS(8281), - [anon_sym_friend] = ACTIONS(8281), - [anon_sym_public] = ACTIONS(8281), - [anon_sym_protected] = ACTIONS(8281), - [anon_sym_static_assert] = ACTIONS(8281), - [anon_sym_LBRACK_COLON] = ACTIONS(8283), + [STATE(2540)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2784), + [sym_ms_pointer_modifier] = STATE(2528), + [sym__abstract_declarator] = STATE(6320), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3522), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2275), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3522), + [aux_sym_pointer_declarator_repeat1] = STATE(2528), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6861), + [anon_sym_STAR] = ACTIONS(8385), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6859), + [anon_sym_PIPE_PIPE] = ACTIONS(6859), + [anon_sym_AMP_AMP] = ACTIONS(8387), + [anon_sym_PIPE] = ACTIONS(6861), + [anon_sym_CARET] = ACTIONS(6859), + [anon_sym_AMP] = ACTIONS(8389), + [anon_sym_EQ_EQ] = ACTIONS(6859), + [anon_sym_BANG_EQ] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6861), + [anon_sym_GT_EQ] = ACTIONS(6859), + [anon_sym_LT_EQ] = ACTIONS(6861), + [anon_sym_LT] = ACTIONS(6861), + [anon_sym_LT_LT] = ACTIONS(6859), + [anon_sym_GT_GT] = ACTIONS(6859), + [anon_sym_SEMI] = ACTIONS(6859), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym___attribute__] = ACTIONS(6859), + [anon_sym___attribute] = ACTIONS(6861), + [sym_ms_restrict_modifier] = ACTIONS(8094), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8119), + [sym_ms_signed_ptr_modifier] = ACTIONS(8119), + [anon_sym__unaligned] = ACTIONS(8121), + [anon_sym___unaligned] = ACTIONS(8121), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(6859), + [anon_sym_LT_EQ_GT] = ACTIONS(6859), + [anon_sym_or] = ACTIONS(6859), + [anon_sym_and] = ACTIONS(6859), + [anon_sym_bitor] = ACTIONS(6859), + [anon_sym_xor] = ACTIONS(6859), + [anon_sym_bitand] = ACTIONS(6859), + [anon_sym_not_eq] = ACTIONS(6859), + [anon_sym_DASH_DASH] = ACTIONS(6859), + [anon_sym_PLUS_PLUS] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6861), + [anon_sym_DOT_STAR] = ACTIONS(6859), + [anon_sym_DASH_GT] = ACTIONS(6859), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6859), + [anon_sym_override] = ACTIONS(6859), + [anon_sym_requires] = ACTIONS(6859), }, - [STATE(2688)] = { - [sym_identifier] = ACTIONS(6254), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6256), - [anon_sym_COMMA] = ACTIONS(6256), - [anon_sym_RPAREN] = ACTIONS(6256), - [anon_sym_LPAREN2] = ACTIONS(6256), - [anon_sym_DASH] = ACTIONS(6254), - [anon_sym_PLUS] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(6256), - [anon_sym_SLASH] = ACTIONS(6254), - [anon_sym_PERCENT] = ACTIONS(6256), - [anon_sym_PIPE_PIPE] = ACTIONS(6256), - [anon_sym_AMP_AMP] = ACTIONS(6256), - [anon_sym_PIPE] = ACTIONS(6254), - [anon_sym_CARET] = ACTIONS(6256), - [anon_sym_AMP] = ACTIONS(6254), - [anon_sym_EQ_EQ] = ACTIONS(6256), - [anon_sym_BANG_EQ] = ACTIONS(6256), - [anon_sym_GT] = ACTIONS(6254), - [anon_sym_GT_EQ] = ACTIONS(6256), - [anon_sym_LT_EQ] = ACTIONS(6254), - [anon_sym_LT] = ACTIONS(6254), - [anon_sym_LT_LT] = ACTIONS(6256), - [anon_sym_GT_GT] = ACTIONS(6256), - [anon_sym_SEMI] = ACTIONS(6256), - [anon_sym___extension__] = ACTIONS(6254), - [anon_sym___attribute__] = ACTIONS(6254), - [anon_sym___attribute] = ACTIONS(6254), - [anon_sym_COLON] = ACTIONS(6254), - [anon_sym_COLON_COLON] = ACTIONS(6256), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6256), - [anon_sym___based] = ACTIONS(6254), - [anon_sym_LBRACE] = ACTIONS(6256), - [anon_sym_RBRACE] = ACTIONS(6256), - [anon_sym_signed] = ACTIONS(6254), - [anon_sym_unsigned] = ACTIONS(6254), - [anon_sym_long] = ACTIONS(6254), - [anon_sym_short] = ACTIONS(6254), - [anon_sym_LBRACK] = ACTIONS(6256), - [anon_sym_const] = ACTIONS(6254), - [anon_sym_constexpr] = ACTIONS(6254), - [anon_sym_volatile] = ACTIONS(6254), - [anon_sym_restrict] = ACTIONS(6254), - [anon_sym___restrict__] = ACTIONS(6254), - [anon_sym__Atomic] = ACTIONS(6254), - [anon_sym__Noreturn] = ACTIONS(6254), - [anon_sym_noreturn] = ACTIONS(6254), - [anon_sym__Nonnull] = ACTIONS(6254), - [anon_sym_mutable] = ACTIONS(6254), - [anon_sym_constinit] = ACTIONS(6254), - [anon_sym_consteval] = ACTIONS(6254), - [anon_sym_alignas] = ACTIONS(6254), - [anon_sym__Alignas] = ACTIONS(6254), - [sym_primitive_type] = ACTIONS(6254), - [anon_sym_QMARK] = ACTIONS(6256), - [anon_sym_LT_EQ_GT] = ACTIONS(6256), - [anon_sym_or] = ACTIONS(6254), - [anon_sym_and] = ACTIONS(6254), - [anon_sym_bitor] = ACTIONS(6254), - [anon_sym_xor] = ACTIONS(6254), - [anon_sym_bitand] = ACTIONS(6254), - [anon_sym_not_eq] = ACTIONS(6254), - [anon_sym_DASH_DASH] = ACTIONS(6256), - [anon_sym_PLUS_PLUS] = ACTIONS(6256), - [anon_sym_DOT] = ACTIONS(6254), - [anon_sym_DOT_STAR] = ACTIONS(6256), - [anon_sym_DASH_GT] = ACTIONS(6256), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6254), - [anon_sym_decltype] = ACTIONS(6254), - [anon_sym_final] = ACTIONS(6254), - [anon_sym_override] = ACTIONS(6254), - [anon_sym_requires] = ACTIONS(6254), - [anon_sym_COLON_RBRACK] = ACTIONS(6256), + [STATE(2541)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_attributes_end] = STATE(3929), + [sym__function_postfix] = STATE(3675), + [sym_trailing_return_type] = STATE(2973), + [sym_requires_clause] = STATE(3675), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), + [anon_sym_COMMA] = ACTIONS(8422), + [anon_sym_RPAREN] = ACTIONS(8422), + [anon_sym_LPAREN2] = ACTIONS(8422), + [anon_sym_DASH] = ACTIONS(8424), + [anon_sym_PLUS] = ACTIONS(8424), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_SLASH] = ACTIONS(8424), + [anon_sym_PERCENT] = ACTIONS(8424), + [anon_sym_PIPE_PIPE] = ACTIONS(8422), + [anon_sym_AMP_AMP] = ACTIONS(8422), + [anon_sym_PIPE] = ACTIONS(8424), + [anon_sym_CARET] = ACTIONS(8424), + [anon_sym_AMP] = ACTIONS(8424), + [anon_sym_EQ_EQ] = ACTIONS(8422), + [anon_sym_BANG_EQ] = ACTIONS(8422), + [anon_sym_GT] = ACTIONS(8424), + [anon_sym_GT_EQ] = ACTIONS(8422), + [anon_sym_LT_EQ] = ACTIONS(8424), + [anon_sym_LT] = ACTIONS(8424), + [anon_sym_LT_LT] = ACTIONS(8424), + [anon_sym_GT_GT] = ACTIONS(8424), + [anon_sym_SEMI] = ACTIONS(8422), + [anon_sym___attribute__] = ACTIONS(6534), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_COLON] = ACTIONS(8424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8422), + [anon_sym_RBRACE] = ACTIONS(8422), + [anon_sym_LBRACK] = ACTIONS(8424), + [anon_sym_EQ] = ACTIONS(8424), + [anon_sym_QMARK] = ACTIONS(8422), + [anon_sym_STAR_EQ] = ACTIONS(8422), + [anon_sym_SLASH_EQ] = ACTIONS(8422), + [anon_sym_PERCENT_EQ] = ACTIONS(8422), + [anon_sym_PLUS_EQ] = ACTIONS(8422), + [anon_sym_DASH_EQ] = ACTIONS(8422), + [anon_sym_LT_LT_EQ] = ACTIONS(8422), + [anon_sym_GT_GT_EQ] = ACTIONS(8422), + [anon_sym_AMP_EQ] = ACTIONS(8422), + [anon_sym_CARET_EQ] = ACTIONS(8422), + [anon_sym_PIPE_EQ] = ACTIONS(8422), + [anon_sym_and_eq] = ACTIONS(8422), + [anon_sym_or_eq] = ACTIONS(8422), + [anon_sym_xor_eq] = ACTIONS(8422), + [anon_sym_LT_EQ_GT] = ACTIONS(8422), + [anon_sym_or] = ACTIONS(8424), + [anon_sym_and] = ACTIONS(8424), + [anon_sym_bitor] = ACTIONS(8422), + [anon_sym_xor] = ACTIONS(8424), + [anon_sym_bitand] = ACTIONS(8422), + [anon_sym_not_eq] = ACTIONS(8422), + [anon_sym_DASH_DASH] = ACTIONS(8422), + [anon_sym_PLUS_PLUS] = ACTIONS(8422), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(8424), + [anon_sym_DOT_STAR] = ACTIONS(8422), + [anon_sym_DASH_GT] = ACTIONS(8426), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6561), + [anon_sym_override] = ACTIONS(6561), + [anon_sym_requires] = ACTIONS(6563), + [anon_sym_COLON_RBRACK] = ACTIONS(8422), }, - [STATE(2689)] = { - [sym_identifier] = ACTIONS(6258), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), - [anon_sym_COMMA] = ACTIONS(6260), - [anon_sym_RPAREN] = ACTIONS(6260), - [anon_sym_LPAREN2] = ACTIONS(6260), - [anon_sym_DASH] = ACTIONS(6258), - [anon_sym_PLUS] = ACTIONS(6258), - [anon_sym_STAR] = ACTIONS(6260), - [anon_sym_SLASH] = ACTIONS(6258), - [anon_sym_PERCENT] = ACTIONS(6260), - [anon_sym_PIPE_PIPE] = ACTIONS(6260), - [anon_sym_AMP_AMP] = ACTIONS(6260), - [anon_sym_PIPE] = ACTIONS(6258), - [anon_sym_CARET] = ACTIONS(6260), - [anon_sym_AMP] = ACTIONS(6258), - [anon_sym_EQ_EQ] = ACTIONS(6260), - [anon_sym_BANG_EQ] = ACTIONS(6260), - [anon_sym_GT] = ACTIONS(6258), - [anon_sym_GT_EQ] = ACTIONS(6260), - [anon_sym_LT_EQ] = ACTIONS(6258), - [anon_sym_LT] = ACTIONS(6258), - [anon_sym_LT_LT] = ACTIONS(6260), - [anon_sym_GT_GT] = ACTIONS(6260), - [anon_sym_SEMI] = ACTIONS(6260), - [anon_sym___extension__] = ACTIONS(6258), - [anon_sym___attribute__] = ACTIONS(6258), - [anon_sym___attribute] = ACTIONS(6258), - [anon_sym_COLON] = ACTIONS(6258), - [anon_sym_COLON_COLON] = ACTIONS(6260), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6260), - [anon_sym___based] = ACTIONS(6258), - [anon_sym_LBRACE] = ACTIONS(6260), - [anon_sym_RBRACE] = ACTIONS(6260), - [anon_sym_signed] = ACTIONS(6258), - [anon_sym_unsigned] = ACTIONS(6258), - [anon_sym_long] = ACTIONS(6258), - [anon_sym_short] = ACTIONS(6258), - [anon_sym_LBRACK] = ACTIONS(6260), - [anon_sym_const] = ACTIONS(6258), - [anon_sym_constexpr] = ACTIONS(6258), - [anon_sym_volatile] = ACTIONS(6258), - [anon_sym_restrict] = ACTIONS(6258), - [anon_sym___restrict__] = ACTIONS(6258), - [anon_sym__Atomic] = ACTIONS(6258), - [anon_sym__Noreturn] = ACTIONS(6258), - [anon_sym_noreturn] = ACTIONS(6258), - [anon_sym__Nonnull] = ACTIONS(6258), - [anon_sym_mutable] = ACTIONS(6258), - [anon_sym_constinit] = ACTIONS(6258), - [anon_sym_consteval] = ACTIONS(6258), - [anon_sym_alignas] = ACTIONS(6258), - [anon_sym__Alignas] = ACTIONS(6258), - [sym_primitive_type] = ACTIONS(6258), - [anon_sym_QMARK] = ACTIONS(6260), - [anon_sym_LT_EQ_GT] = ACTIONS(6260), - [anon_sym_or] = ACTIONS(6258), - [anon_sym_and] = ACTIONS(6258), - [anon_sym_bitor] = ACTIONS(6258), - [anon_sym_xor] = ACTIONS(6258), - [anon_sym_bitand] = ACTIONS(6258), - [anon_sym_not_eq] = ACTIONS(6258), - [anon_sym_DASH_DASH] = ACTIONS(6260), - [anon_sym_PLUS_PLUS] = ACTIONS(6260), - [anon_sym_DOT] = ACTIONS(6258), - [anon_sym_DOT_STAR] = ACTIONS(6260), - [anon_sym_DASH_GT] = ACTIONS(6260), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6258), - [anon_sym_decltype] = ACTIONS(6258), - [anon_sym_final] = ACTIONS(6258), - [anon_sym_override] = ACTIONS(6258), - [anon_sym_requires] = ACTIONS(6258), - [anon_sym_COLON_RBRACK] = ACTIONS(6260), + [STATE(2542)] = { + [sym_attribute_specifier] = STATE(4161), + [sym_attribute_declaration] = STATE(4617), + [sym_gnu_asm_expression] = STATE(9112), + [sym_virtual_specifier] = STATE(4705), + [sym__function_exception_specification] = STATE(3019), + [sym__function_attributes_end] = STATE(4354), + [sym__function_postfix] = STATE(5047), + [sym_trailing_return_type] = STATE(4470), + [sym_noexcept] = STATE(3019), + [sym_throw_specifier] = STATE(3019), + [sym_requires_clause] = STATE(5047), + [aux_sym_type_definition_repeat1] = STATE(4161), + [aux_sym_attributed_declarator_repeat1] = STATE(4617), + [aux_sym__function_postfix_repeat1] = STATE(4705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7968), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym___attribute__] = ACTIONS(6681), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7968), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7966), + [anon_sym_or_eq] = ACTIONS(7966), + [anon_sym_xor_eq] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(8429), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8432), + [anon_sym_override] = ACTIONS(8432), + [anon_sym_GT2] = ACTIONS(7966), + [anon_sym_noexcept] = ACTIONS(6696), + [anon_sym_throw] = ACTIONS(6698), + [anon_sym_requires] = ACTIONS(8435), }, - [STATE(2690)] = { - [sym_identifier] = ACTIONS(6262), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), - [anon_sym_COMMA] = ACTIONS(6264), - [anon_sym_RPAREN] = ACTIONS(6264), - [anon_sym_LPAREN2] = ACTIONS(6264), - [anon_sym_DASH] = ACTIONS(6262), - [anon_sym_PLUS] = ACTIONS(6262), - [anon_sym_STAR] = ACTIONS(6264), - [anon_sym_SLASH] = ACTIONS(6262), - [anon_sym_PERCENT] = ACTIONS(6264), - [anon_sym_PIPE_PIPE] = ACTIONS(6264), - [anon_sym_AMP_AMP] = ACTIONS(6264), - [anon_sym_PIPE] = ACTIONS(6262), - [anon_sym_CARET] = ACTIONS(6264), - [anon_sym_AMP] = ACTIONS(6262), - [anon_sym_EQ_EQ] = ACTIONS(6264), - [anon_sym_BANG_EQ] = ACTIONS(6264), - [anon_sym_GT] = ACTIONS(6262), - [anon_sym_GT_EQ] = ACTIONS(6264), - [anon_sym_LT_EQ] = ACTIONS(6262), - [anon_sym_LT] = ACTIONS(6262), - [anon_sym_LT_LT] = ACTIONS(6264), - [anon_sym_GT_GT] = ACTIONS(6264), - [anon_sym_SEMI] = ACTIONS(6264), - [anon_sym___extension__] = ACTIONS(6262), - [anon_sym___attribute__] = ACTIONS(6262), - [anon_sym___attribute] = ACTIONS(6262), - [anon_sym_COLON] = ACTIONS(6262), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6264), - [anon_sym___based] = ACTIONS(6262), - [anon_sym_LBRACE] = ACTIONS(6264), - [anon_sym_RBRACE] = ACTIONS(6264), - [anon_sym_signed] = ACTIONS(6262), - [anon_sym_unsigned] = ACTIONS(6262), - [anon_sym_long] = ACTIONS(6262), - [anon_sym_short] = ACTIONS(6262), - [anon_sym_LBRACK] = ACTIONS(6264), - [anon_sym_const] = ACTIONS(6262), - [anon_sym_constexpr] = ACTIONS(6262), - [anon_sym_volatile] = ACTIONS(6262), - [anon_sym_restrict] = ACTIONS(6262), - [anon_sym___restrict__] = ACTIONS(6262), - [anon_sym__Atomic] = ACTIONS(6262), - [anon_sym__Noreturn] = ACTIONS(6262), - [anon_sym_noreturn] = ACTIONS(6262), - [anon_sym__Nonnull] = ACTIONS(6262), - [anon_sym_mutable] = ACTIONS(6262), - [anon_sym_constinit] = ACTIONS(6262), - [anon_sym_consteval] = ACTIONS(6262), - [anon_sym_alignas] = ACTIONS(6262), - [anon_sym__Alignas] = ACTIONS(6262), - [sym_primitive_type] = ACTIONS(6262), - [anon_sym_QMARK] = ACTIONS(6264), - [anon_sym_LT_EQ_GT] = ACTIONS(6264), - [anon_sym_or] = ACTIONS(6262), - [anon_sym_and] = ACTIONS(6262), - [anon_sym_bitor] = ACTIONS(6262), - [anon_sym_xor] = ACTIONS(6262), - [anon_sym_bitand] = ACTIONS(6262), - [anon_sym_not_eq] = ACTIONS(6262), - [anon_sym_DASH_DASH] = ACTIONS(6264), - [anon_sym_PLUS_PLUS] = ACTIONS(6264), - [anon_sym_DOT] = ACTIONS(6262), - [anon_sym_DOT_STAR] = ACTIONS(6264), - [anon_sym_DASH_GT] = ACTIONS(6264), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6262), - [anon_sym_decltype] = ACTIONS(6262), - [anon_sym_final] = ACTIONS(6262), - [anon_sym_override] = ACTIONS(6262), - [anon_sym_requires] = ACTIONS(6262), - [anon_sym_COLON_RBRACK] = ACTIONS(6264), + [STATE(2543)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_RPAREN] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7291), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7291), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7291), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7291), + [anon_sym_GT_GT] = ACTIONS(7291), + [anon_sym___extension__] = ACTIONS(7293), + [anon_sym___attribute__] = ACTIONS(7293), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_COLON] = ACTIONS(7293), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_EQ] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7293), + [anon_sym_volatile] = ACTIONS(7293), + [anon_sym_restrict] = ACTIONS(7293), + [anon_sym___restrict__] = ACTIONS(7293), + [anon_sym__Atomic] = ACTIONS(7293), + [anon_sym__Noreturn] = ACTIONS(7293), + [anon_sym_noreturn] = ACTIONS(7293), + [anon_sym__Nonnull] = ACTIONS(7293), + [anon_sym_mutable] = ACTIONS(7293), + [anon_sym_constinit] = ACTIONS(7293), + [anon_sym_consteval] = ACTIONS(7293), + [anon_sym_alignas] = ACTIONS(7293), + [anon_sym__Alignas] = ACTIONS(7293), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_STAR_EQ] = ACTIONS(7293), + [anon_sym_SLASH_EQ] = ACTIONS(7293), + [anon_sym_PERCENT_EQ] = ACTIONS(7293), + [anon_sym_PLUS_EQ] = ACTIONS(7293), + [anon_sym_DASH_EQ] = ACTIONS(7293), + [anon_sym_LT_LT_EQ] = ACTIONS(7293), + [anon_sym_GT_GT_EQ] = ACTIONS(7293), + [anon_sym_AMP_EQ] = ACTIONS(7293), + [anon_sym_CARET_EQ] = ACTIONS(7293), + [anon_sym_PIPE_EQ] = ACTIONS(7293), + [anon_sym_and_eq] = ACTIONS(7293), + [anon_sym_or_eq] = ACTIONS(7293), + [anon_sym_xor_eq] = ACTIONS(7293), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_bitor] = ACTIONS(7293), + [anon_sym_xor] = ACTIONS(7291), + [anon_sym_bitand] = ACTIONS(7293), + [anon_sym_not_eq] = ACTIONS(7293), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7291), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7293), + [anon_sym_decltype] = ACTIONS(7293), + [anon_sym_final] = ACTIONS(7293), + [anon_sym_override] = ACTIONS(7293), + [anon_sym_requires] = ACTIONS(7293), + [anon_sym_DASH_GT_STAR] = ACTIONS(7293), }, - [STATE(2691)] = { - [sym_identifier] = ACTIONS(3728), - [aux_sym_preproc_def_token1] = ACTIONS(3728), - [aux_sym_preproc_if_token1] = ACTIONS(3728), - [aux_sym_preproc_if_token2] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), - [aux_sym_preproc_else_token1] = ACTIONS(3728), - [aux_sym_preproc_elif_token1] = ACTIONS(3728), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3728), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3728), - [sym_preproc_directive] = ACTIONS(3728), - [anon_sym_LPAREN2] = ACTIONS(3730), - [anon_sym_TILDE] = ACTIONS(3730), - [anon_sym_STAR] = ACTIONS(3730), - [anon_sym_AMP_AMP] = ACTIONS(3730), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_SEMI] = ACTIONS(3730), - [anon_sym___extension__] = ACTIONS(3728), - [anon_sym_typedef] = ACTIONS(3728), - [anon_sym_virtual] = ACTIONS(3728), - [anon_sym_extern] = ACTIONS(3728), - [anon_sym___attribute__] = ACTIONS(3728), - [anon_sym___attribute] = ACTIONS(3728), - [anon_sym_using] = ACTIONS(3728), - [anon_sym_COLON_COLON] = ACTIONS(3730), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), - [anon_sym___declspec] = ACTIONS(3728), - [anon_sym___based] = ACTIONS(3728), - [anon_sym_signed] = ACTIONS(3728), - [anon_sym_unsigned] = ACTIONS(3728), - [anon_sym_long] = ACTIONS(3728), - [anon_sym_short] = ACTIONS(3728), - [anon_sym_LBRACK] = ACTIONS(3728), - [anon_sym_static] = ACTIONS(3728), - [anon_sym_register] = ACTIONS(3728), - [anon_sym_inline] = ACTIONS(3728), - [anon_sym___inline] = ACTIONS(3728), - [anon_sym___inline__] = ACTIONS(3728), - [anon_sym___forceinline] = ACTIONS(3728), - [anon_sym_thread_local] = ACTIONS(3728), - [anon_sym___thread] = ACTIONS(3728), - [anon_sym_const] = ACTIONS(3728), - [anon_sym_constexpr] = ACTIONS(3728), - [anon_sym_volatile] = ACTIONS(3728), - [anon_sym_restrict] = ACTIONS(3728), - [anon_sym___restrict__] = ACTIONS(3728), - [anon_sym__Atomic] = ACTIONS(3728), - [anon_sym__Noreturn] = ACTIONS(3728), - [anon_sym_noreturn] = ACTIONS(3728), - [anon_sym__Nonnull] = ACTIONS(3728), - [anon_sym_mutable] = ACTIONS(3728), - [anon_sym_constinit] = ACTIONS(3728), - [anon_sym_consteval] = ACTIONS(3728), - [anon_sym_alignas] = ACTIONS(3728), - [anon_sym__Alignas] = ACTIONS(3728), - [sym_primitive_type] = ACTIONS(3728), - [anon_sym_enum] = ACTIONS(3728), - [anon_sym_class] = ACTIONS(3728), - [anon_sym_struct] = ACTIONS(3728), - [anon_sym_union] = ACTIONS(3728), - [anon_sym_typename] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3728), - [anon_sym_decltype] = ACTIONS(3728), - [anon_sym_explicit] = ACTIONS(3728), - [anon_sym_private] = ACTIONS(3728), - [anon_sym_template] = ACTIONS(3728), - [anon_sym_operator] = ACTIONS(3728), - [anon_sym_friend] = ACTIONS(3728), - [anon_sym_public] = ACTIONS(3728), - [anon_sym_protected] = ACTIONS(3728), - [anon_sym_static_assert] = ACTIONS(3728), - [anon_sym_LBRACK_COLON] = ACTIONS(3730), + [STATE(2544)] = { + [sym_attribute_specifier] = STATE(4179), + [sym_attribute_declaration] = STATE(4554), + [sym_gnu_asm_expression] = STATE(9153), + [sym_virtual_specifier] = STATE(4653), + [sym__function_exception_specification] = STATE(2961), + [sym__function_attributes_end] = STATE(4366), + [sym__function_postfix] = STATE(5110), + [sym_trailing_return_type] = STATE(4476), + [sym_noexcept] = STATE(2961), + [sym_throw_specifier] = STATE(2961), + [sym_requires_clause] = STATE(5110), + [aux_sym_type_definition_repeat1] = STATE(4179), + [aux_sym_attributed_declarator_repeat1] = STATE(4554), + [aux_sym__function_postfix_repeat1] = STATE(4653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6719), + [anon_sym___attribute] = ACTIONS(6721), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_RBRACK] = ACTIONS(7791), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8360), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8363), + [anon_sym_override] = ACTIONS(8363), + [anon_sym_noexcept] = ACTIONS(6735), + [anon_sym_throw] = ACTIONS(6737), + [anon_sym_requires] = ACTIONS(8366), }, - [STATE(2692)] = { - [sym_identifier] = ACTIONS(4134), - [aux_sym_preproc_def_token1] = ACTIONS(4134), - [aux_sym_preproc_if_token1] = ACTIONS(4134), - [aux_sym_preproc_if_token2] = ACTIONS(4134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4134), - [aux_sym_preproc_else_token1] = ACTIONS(4134), - [aux_sym_preproc_elif_token1] = ACTIONS(4134), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4134), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4134), - [sym_preproc_directive] = ACTIONS(4134), - [anon_sym_LPAREN2] = ACTIONS(4136), - [anon_sym_TILDE] = ACTIONS(4136), - [anon_sym_STAR] = ACTIONS(4136), - [anon_sym_AMP_AMP] = ACTIONS(4136), - [anon_sym_AMP] = ACTIONS(4134), - [anon_sym_SEMI] = ACTIONS(4136), - [anon_sym___extension__] = ACTIONS(4134), - [anon_sym_typedef] = ACTIONS(4134), - [anon_sym_virtual] = ACTIONS(4134), - [anon_sym_extern] = ACTIONS(4134), - [anon_sym___attribute__] = ACTIONS(4134), - [anon_sym___attribute] = ACTIONS(4134), - [anon_sym_using] = ACTIONS(4134), - [anon_sym_COLON_COLON] = ACTIONS(4136), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4136), - [anon_sym___declspec] = ACTIONS(4134), - [anon_sym___based] = ACTIONS(4134), - [anon_sym_signed] = ACTIONS(4134), - [anon_sym_unsigned] = ACTIONS(4134), - [anon_sym_long] = ACTIONS(4134), - [anon_sym_short] = ACTIONS(4134), - [anon_sym_LBRACK] = ACTIONS(4134), - [anon_sym_static] = ACTIONS(4134), - [anon_sym_register] = ACTIONS(4134), - [anon_sym_inline] = ACTIONS(4134), - [anon_sym___inline] = ACTIONS(4134), - [anon_sym___inline__] = ACTIONS(4134), - [anon_sym___forceinline] = ACTIONS(4134), - [anon_sym_thread_local] = ACTIONS(4134), - [anon_sym___thread] = ACTIONS(4134), - [anon_sym_const] = ACTIONS(4134), - [anon_sym_constexpr] = ACTIONS(4134), - [anon_sym_volatile] = ACTIONS(4134), - [anon_sym_restrict] = ACTIONS(4134), - [anon_sym___restrict__] = ACTIONS(4134), - [anon_sym__Atomic] = ACTIONS(4134), - [anon_sym__Noreturn] = ACTIONS(4134), - [anon_sym_noreturn] = ACTIONS(4134), - [anon_sym__Nonnull] = ACTIONS(4134), - [anon_sym_mutable] = ACTIONS(4134), - [anon_sym_constinit] = ACTIONS(4134), - [anon_sym_consteval] = ACTIONS(4134), - [anon_sym_alignas] = ACTIONS(4134), - [anon_sym__Alignas] = ACTIONS(4134), - [sym_primitive_type] = ACTIONS(4134), - [anon_sym_enum] = ACTIONS(4134), - [anon_sym_class] = ACTIONS(4134), - [anon_sym_struct] = ACTIONS(4134), - [anon_sym_union] = ACTIONS(4134), - [anon_sym_typename] = ACTIONS(4134), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4134), - [anon_sym_decltype] = ACTIONS(4134), - [anon_sym_explicit] = ACTIONS(4134), - [anon_sym_private] = ACTIONS(4134), - [anon_sym_template] = ACTIONS(4134), - [anon_sym_operator] = ACTIONS(4134), - [anon_sym_friend] = ACTIONS(4134), - [anon_sym_public] = ACTIONS(4134), - [anon_sym_protected] = ACTIONS(4134), - [anon_sym_static_assert] = ACTIONS(4134), - [anon_sym_LBRACK_COLON] = ACTIONS(4136), + [STATE(2545)] = { + [sym_catch_clause] = STATE(2536), + [aux_sym_constructor_try_statement_repeat1] = STATE(2536), + [sym_identifier] = ACTIONS(3182), + [aux_sym_preproc_def_token1] = ACTIONS(3182), + [aux_sym_preproc_if_token1] = ACTIONS(3182), + [aux_sym_preproc_if_token2] = ACTIONS(3182), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3182), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3182), + [aux_sym_preproc_else_token1] = ACTIONS(3182), + [aux_sym_preproc_elif_token1] = ACTIONS(3182), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3182), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3182), + [sym_preproc_directive] = ACTIONS(3182), + [anon_sym_LPAREN2] = ACTIONS(3184), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_STAR] = ACTIONS(3184), + [anon_sym_AMP_AMP] = ACTIONS(3184), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym___extension__] = ACTIONS(3182), + [anon_sym_typedef] = ACTIONS(3182), + [anon_sym_virtual] = ACTIONS(3182), + [anon_sym_extern] = ACTIONS(3182), + [anon_sym___attribute__] = ACTIONS(3182), + [anon_sym___attribute] = ACTIONS(3182), + [anon_sym_using] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3184), + [anon_sym___declspec] = ACTIONS(3182), + [anon_sym___based] = ACTIONS(3182), + [anon_sym_signed] = ACTIONS(3182), + [anon_sym_unsigned] = ACTIONS(3182), + [anon_sym_long] = ACTIONS(3182), + [anon_sym_short] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_register] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym___inline] = ACTIONS(3182), + [anon_sym___inline__] = ACTIONS(3182), + [anon_sym___forceinline] = ACTIONS(3182), + [anon_sym_thread_local] = ACTIONS(3182), + [anon_sym___thread] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_constexpr] = ACTIONS(3182), + [anon_sym_volatile] = ACTIONS(3182), + [anon_sym_restrict] = ACTIONS(3182), + [anon_sym___restrict__] = ACTIONS(3182), + [anon_sym__Atomic] = ACTIONS(3182), + [anon_sym__Noreturn] = ACTIONS(3182), + [anon_sym_noreturn] = ACTIONS(3182), + [anon_sym__Nonnull] = ACTIONS(3182), + [anon_sym_mutable] = ACTIONS(3182), + [anon_sym_constinit] = ACTIONS(3182), + [anon_sym_consteval] = ACTIONS(3182), + [anon_sym_alignas] = ACTIONS(3182), + [anon_sym__Alignas] = ACTIONS(3182), + [sym_primitive_type] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), + [anon_sym_class] = ACTIONS(3182), + [anon_sym_struct] = ACTIONS(3182), + [anon_sym_union] = ACTIONS(3182), + [anon_sym_typename] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3182), + [anon_sym_decltype] = ACTIONS(3182), + [anon_sym_explicit] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_friend] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_static_assert] = ACTIONS(3182), + [anon_sym_catch] = ACTIONS(8438), + [anon_sym_LBRACK_COLON] = ACTIONS(3184), }, - [STATE(2693)] = { - [sym_identifier] = ACTIONS(3728), - [aux_sym_preproc_def_token1] = ACTIONS(3728), - [aux_sym_preproc_if_token1] = ACTIONS(3728), - [aux_sym_preproc_if_token2] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), - [aux_sym_preproc_else_token1] = ACTIONS(3728), - [aux_sym_preproc_elif_token1] = ACTIONS(3728), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3728), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3728), - [sym_preproc_directive] = ACTIONS(3728), - [anon_sym_LPAREN2] = ACTIONS(3730), - [anon_sym_TILDE] = ACTIONS(3730), - [anon_sym_STAR] = ACTIONS(3730), - [anon_sym_AMP_AMP] = ACTIONS(3730), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_SEMI] = ACTIONS(3730), - [anon_sym___extension__] = ACTIONS(3728), - [anon_sym_typedef] = ACTIONS(3728), - [anon_sym_virtual] = ACTIONS(3728), - [anon_sym_extern] = ACTIONS(3728), - [anon_sym___attribute__] = ACTIONS(3728), - [anon_sym___attribute] = ACTIONS(3728), - [anon_sym_using] = ACTIONS(3728), - [anon_sym_COLON_COLON] = ACTIONS(3730), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), - [anon_sym___declspec] = ACTIONS(3728), - [anon_sym___based] = ACTIONS(3728), - [anon_sym_signed] = ACTIONS(3728), - [anon_sym_unsigned] = ACTIONS(3728), - [anon_sym_long] = ACTIONS(3728), - [anon_sym_short] = ACTIONS(3728), - [anon_sym_LBRACK] = ACTIONS(3728), - [anon_sym_static] = ACTIONS(3728), - [anon_sym_register] = ACTIONS(3728), - [anon_sym_inline] = ACTIONS(3728), - [anon_sym___inline] = ACTIONS(3728), - [anon_sym___inline__] = ACTIONS(3728), - [anon_sym___forceinline] = ACTIONS(3728), - [anon_sym_thread_local] = ACTIONS(3728), - [anon_sym___thread] = ACTIONS(3728), - [anon_sym_const] = ACTIONS(3728), - [anon_sym_constexpr] = ACTIONS(3728), - [anon_sym_volatile] = ACTIONS(3728), - [anon_sym_restrict] = ACTIONS(3728), - [anon_sym___restrict__] = ACTIONS(3728), - [anon_sym__Atomic] = ACTIONS(3728), - [anon_sym__Noreturn] = ACTIONS(3728), - [anon_sym_noreturn] = ACTIONS(3728), - [anon_sym__Nonnull] = ACTIONS(3728), - [anon_sym_mutable] = ACTIONS(3728), - [anon_sym_constinit] = ACTIONS(3728), - [anon_sym_consteval] = ACTIONS(3728), - [anon_sym_alignas] = ACTIONS(3728), - [anon_sym__Alignas] = ACTIONS(3728), - [sym_primitive_type] = ACTIONS(3728), - [anon_sym_enum] = ACTIONS(3728), - [anon_sym_class] = ACTIONS(3728), - [anon_sym_struct] = ACTIONS(3728), - [anon_sym_union] = ACTIONS(3728), - [anon_sym_typename] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3728), - [anon_sym_decltype] = ACTIONS(3728), - [anon_sym_explicit] = ACTIONS(3728), - [anon_sym_private] = ACTIONS(3728), - [anon_sym_template] = ACTIONS(3728), - [anon_sym_operator] = ACTIONS(3728), - [anon_sym_friend] = ACTIONS(3728), - [anon_sym_public] = ACTIONS(3728), - [anon_sym_protected] = ACTIONS(3728), - [anon_sym_static_assert] = ACTIONS(3728), - [anon_sym_LBRACK_COLON] = ACTIONS(3730), + [STATE(2546)] = { + [sym_attribute_specifier] = STATE(4179), + [sym_attribute_declaration] = STATE(4554), + [sym_gnu_asm_expression] = STATE(9153), + [sym_virtual_specifier] = STATE(4653), + [sym__function_exception_specification] = STATE(2995), + [sym__function_attributes_end] = STATE(4367), + [sym__function_postfix] = STATE(5121), + [sym_trailing_return_type] = STATE(4477), + [sym_noexcept] = STATE(2995), + [sym_throw_specifier] = STATE(2995), + [sym_requires_clause] = STATE(5121), + [aux_sym_type_definition_repeat1] = STATE(4179), + [aux_sym_attributed_declarator_repeat1] = STATE(4554), + [aux_sym__function_postfix_repeat1] = STATE(4653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym___attribute__] = ACTIONS(6719), + [anon_sym___attribute] = ACTIONS(6721), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_RBRACK] = ACTIONS(7966), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7966), + [anon_sym_or_eq] = ACTIONS(7966), + [anon_sym_xor_eq] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(8440), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8443), + [anon_sym_override] = ACTIONS(8443), + [anon_sym_noexcept] = ACTIONS(6735), + [anon_sym_throw] = ACTIONS(6737), + [anon_sym_requires] = ACTIONS(8446), }, - [STATE(2694)] = { - [sym_attribute_specifier] = STATE(3072), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7125), - [anon_sym_COMMA] = ACTIONS(7125), - [anon_sym_LPAREN2] = ACTIONS(7125), - [anon_sym_DASH] = ACTIONS(7123), - [anon_sym_PLUS] = ACTIONS(7123), - [anon_sym_STAR] = ACTIONS(7123), - [anon_sym_SLASH] = ACTIONS(7123), - [anon_sym_PERCENT] = ACTIONS(7123), - [anon_sym_PIPE_PIPE] = ACTIONS(7125), - [anon_sym_AMP_AMP] = ACTIONS(7125), - [anon_sym_PIPE] = ACTIONS(7123), - [anon_sym_CARET] = ACTIONS(7123), - [anon_sym_AMP] = ACTIONS(7123), - [anon_sym_EQ_EQ] = ACTIONS(7125), - [anon_sym_BANG_EQ] = ACTIONS(7125), - [anon_sym_GT] = ACTIONS(7123), - [anon_sym_GT_EQ] = ACTIONS(7125), - [anon_sym_LT_EQ] = ACTIONS(7123), - [anon_sym_LT] = ACTIONS(7123), - [anon_sym_LT_LT] = ACTIONS(7123), - [anon_sym_GT_GT] = ACTIONS(7123), - [anon_sym___extension__] = ACTIONS(7125), - [anon_sym___attribute__] = ACTIONS(8003), - [anon_sym___attribute] = ACTIONS(8005), - [anon_sym_LBRACE] = ACTIONS(7125), - [anon_sym_LBRACK] = ACTIONS(7125), - [anon_sym_RBRACK] = ACTIONS(7125), - [anon_sym_EQ] = ACTIONS(7123), - [anon_sym_const] = ACTIONS(7123), - [anon_sym_constexpr] = ACTIONS(7125), - [anon_sym_volatile] = ACTIONS(7125), - [anon_sym_restrict] = ACTIONS(7125), - [anon_sym___restrict__] = ACTIONS(7125), - [anon_sym__Atomic] = ACTIONS(7125), - [anon_sym__Noreturn] = ACTIONS(7125), - [anon_sym_noreturn] = ACTIONS(7125), - [anon_sym__Nonnull] = ACTIONS(7125), - [anon_sym_mutable] = ACTIONS(7125), - [anon_sym_constinit] = ACTIONS(7125), - [anon_sym_consteval] = ACTIONS(7125), - [anon_sym_alignas] = ACTIONS(7125), - [anon_sym__Alignas] = ACTIONS(7125), - [anon_sym_QMARK] = ACTIONS(7125), - [anon_sym_STAR_EQ] = ACTIONS(7125), - [anon_sym_SLASH_EQ] = ACTIONS(7125), - [anon_sym_PERCENT_EQ] = ACTIONS(7125), - [anon_sym_PLUS_EQ] = ACTIONS(7125), - [anon_sym_DASH_EQ] = ACTIONS(7125), - [anon_sym_LT_LT_EQ] = ACTIONS(7125), - [anon_sym_GT_GT_EQ] = ACTIONS(7125), - [anon_sym_AMP_EQ] = ACTIONS(7125), - [anon_sym_CARET_EQ] = ACTIONS(7125), - [anon_sym_PIPE_EQ] = ACTIONS(7125), - [anon_sym_and_eq] = ACTIONS(7125), - [anon_sym_or_eq] = ACTIONS(7125), - [anon_sym_xor_eq] = ACTIONS(7125), - [anon_sym_LT_EQ_GT] = ACTIONS(7125), - [anon_sym_or] = ACTIONS(7123), - [anon_sym_and] = ACTIONS(7123), - [anon_sym_bitor] = ACTIONS(7125), - [anon_sym_xor] = ACTIONS(7123), - [anon_sym_bitand] = ACTIONS(7125), - [anon_sym_not_eq] = ACTIONS(7125), - [anon_sym_DASH_DASH] = ACTIONS(7125), - [anon_sym_PLUS_PLUS] = ACTIONS(7125), - [anon_sym_DOT] = ACTIONS(7123), - [anon_sym_DOT_STAR] = ACTIONS(7125), - [anon_sym_DASH_GT] = ACTIONS(7125), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7125), - [anon_sym_override] = ACTIONS(7125), - [anon_sym_requires] = ACTIONS(7125), + [STATE(2547)] = { + [sym_template_argument_list] = STATE(2613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), + [anon_sym_COMMA] = ACTIONS(7090), + [anon_sym_RPAREN] = ACTIONS(7090), + [anon_sym_LPAREN2] = ACTIONS(7090), + [anon_sym_DASH] = ACTIONS(7085), + [anon_sym_PLUS] = ACTIONS(7085), + [anon_sym_STAR] = ACTIONS(7085), + [anon_sym_SLASH] = ACTIONS(7085), + [anon_sym_PERCENT] = ACTIONS(7085), + [anon_sym_PIPE_PIPE] = ACTIONS(7090), + [anon_sym_AMP_AMP] = ACTIONS(7090), + [anon_sym_PIPE] = ACTIONS(7085), + [anon_sym_CARET] = ACTIONS(7085), + [anon_sym_AMP] = ACTIONS(7085), + [anon_sym_EQ_EQ] = ACTIONS(7090), + [anon_sym_BANG_EQ] = ACTIONS(7090), + [anon_sym_GT] = ACTIONS(7085), + [anon_sym_GT_EQ] = ACTIONS(7090), + [anon_sym_LT_EQ] = ACTIONS(7085), + [anon_sym_LT] = ACTIONS(7964), + [anon_sym_LT_LT] = ACTIONS(7085), + [anon_sym_GT_GT] = ACTIONS(7085), + [anon_sym___extension__] = ACTIONS(7090), + [anon_sym___attribute__] = ACTIONS(7090), + [anon_sym___attribute] = ACTIONS(7085), + [anon_sym_COLON] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7087), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_LBRACK] = ACTIONS(7090), + [anon_sym_EQ] = ACTIONS(7085), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7090), + [anon_sym_volatile] = ACTIONS(7090), + [anon_sym_restrict] = ACTIONS(7090), + [anon_sym___restrict__] = ACTIONS(7090), + [anon_sym__Atomic] = ACTIONS(7090), + [anon_sym__Noreturn] = ACTIONS(7090), + [anon_sym_noreturn] = ACTIONS(7090), + [anon_sym__Nonnull] = ACTIONS(7090), + [anon_sym_mutable] = ACTIONS(7090), + [anon_sym_constinit] = ACTIONS(7090), + [anon_sym_consteval] = ACTIONS(7090), + [anon_sym_alignas] = ACTIONS(7090), + [anon_sym__Alignas] = ACTIONS(7090), + [anon_sym_QMARK] = ACTIONS(7090), + [anon_sym_STAR_EQ] = ACTIONS(7090), + [anon_sym_SLASH_EQ] = ACTIONS(7090), + [anon_sym_PERCENT_EQ] = ACTIONS(7090), + [anon_sym_PLUS_EQ] = ACTIONS(7090), + [anon_sym_DASH_EQ] = ACTIONS(7090), + [anon_sym_LT_LT_EQ] = ACTIONS(7090), + [anon_sym_GT_GT_EQ] = ACTIONS(7090), + [anon_sym_AMP_EQ] = ACTIONS(7090), + [anon_sym_CARET_EQ] = ACTIONS(7090), + [anon_sym_PIPE_EQ] = ACTIONS(7090), + [anon_sym_and_eq] = ACTIONS(7090), + [anon_sym_or_eq] = ACTIONS(7090), + [anon_sym_xor_eq] = ACTIONS(7090), + [anon_sym_LT_EQ_GT] = ACTIONS(7090), + [anon_sym_or] = ACTIONS(7085), + [anon_sym_and] = ACTIONS(7085), + [anon_sym_bitor] = ACTIONS(7090), + [anon_sym_xor] = ACTIONS(7085), + [anon_sym_bitand] = ACTIONS(7090), + [anon_sym_not_eq] = ACTIONS(7090), + [anon_sym_DASH_DASH] = ACTIONS(7090), + [anon_sym_PLUS_PLUS] = ACTIONS(7090), + [anon_sym_DOT] = ACTIONS(7085), + [anon_sym_DOT_STAR] = ACTIONS(7090), + [anon_sym_DASH_GT] = ACTIONS(7085), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7090), + [anon_sym_override] = ACTIONS(7090), + [anon_sym_requires] = ACTIONS(7090), + [anon_sym_DASH_GT_STAR] = ACTIONS(7090), }, - [STATE(2695)] = { - [sym_identifier] = ACTIONS(3704), - [aux_sym_preproc_def_token1] = ACTIONS(3704), - [aux_sym_preproc_if_token1] = ACTIONS(3704), - [aux_sym_preproc_if_token2] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), - [aux_sym_preproc_else_token1] = ACTIONS(3704), - [aux_sym_preproc_elif_token1] = ACTIONS(3704), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3704), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3704), - [sym_preproc_directive] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3706), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3706), - [anon_sym___extension__] = ACTIONS(3704), - [anon_sym_typedef] = ACTIONS(3704), - [anon_sym_virtual] = ACTIONS(3704), - [anon_sym_extern] = ACTIONS(3704), - [anon_sym___attribute__] = ACTIONS(3704), - [anon_sym___attribute] = ACTIONS(3704), - [anon_sym_using] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), - [anon_sym___declspec] = ACTIONS(3704), - [anon_sym___based] = ACTIONS(3704), - [anon_sym_signed] = ACTIONS(3704), - [anon_sym_unsigned] = ACTIONS(3704), - [anon_sym_long] = ACTIONS(3704), - [anon_sym_short] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_static] = ACTIONS(3704), - [anon_sym_register] = ACTIONS(3704), - [anon_sym_inline] = ACTIONS(3704), - [anon_sym___inline] = ACTIONS(3704), - [anon_sym___inline__] = ACTIONS(3704), - [anon_sym___forceinline] = ACTIONS(3704), - [anon_sym_thread_local] = ACTIONS(3704), - [anon_sym___thread] = ACTIONS(3704), - [anon_sym_const] = ACTIONS(3704), - [anon_sym_constexpr] = ACTIONS(3704), - [anon_sym_volatile] = ACTIONS(3704), - [anon_sym_restrict] = ACTIONS(3704), - [anon_sym___restrict__] = ACTIONS(3704), - [anon_sym__Atomic] = ACTIONS(3704), - [anon_sym__Noreturn] = ACTIONS(3704), - [anon_sym_noreturn] = ACTIONS(3704), - [anon_sym__Nonnull] = ACTIONS(3704), - [anon_sym_mutable] = ACTIONS(3704), - [anon_sym_constinit] = ACTIONS(3704), - [anon_sym_consteval] = ACTIONS(3704), - [anon_sym_alignas] = ACTIONS(3704), - [anon_sym__Alignas] = ACTIONS(3704), - [sym_primitive_type] = ACTIONS(3704), - [anon_sym_enum] = ACTIONS(3704), - [anon_sym_class] = ACTIONS(3704), - [anon_sym_struct] = ACTIONS(3704), - [anon_sym_union] = ACTIONS(3704), - [anon_sym_typename] = ACTIONS(3704), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3704), - [anon_sym_decltype] = ACTIONS(3704), - [anon_sym_explicit] = ACTIONS(3704), - [anon_sym_private] = ACTIONS(3704), - [anon_sym_template] = ACTIONS(3704), - [anon_sym_operator] = ACTIONS(3704), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3704), - [anon_sym_protected] = ACTIONS(3704), - [anon_sym_static_assert] = ACTIONS(3704), - [anon_sym_LBRACK_COLON] = ACTIONS(3706), + [STATE(2548)] = { + [sym_attribute_specifier] = STATE(2548), + [aux_sym_type_definition_repeat1] = STATE(2548), + [sym_identifier] = ACTIONS(6935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6937), + [anon_sym_COMMA] = ACTIONS(6937), + [anon_sym_RPAREN] = ACTIONS(6937), + [aux_sym_preproc_if_token2] = ACTIONS(6937), + [aux_sym_preproc_else_token1] = ACTIONS(6937), + [aux_sym_preproc_elif_token1] = ACTIONS(6935), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6937), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6937), + [anon_sym_LPAREN2] = ACTIONS(6937), + [anon_sym_DASH] = ACTIONS(6935), + [anon_sym_PLUS] = ACTIONS(6935), + [anon_sym_STAR] = ACTIONS(6937), + [anon_sym_SLASH] = ACTIONS(6935), + [anon_sym_PERCENT] = ACTIONS(6937), + [anon_sym_PIPE_PIPE] = ACTIONS(6937), + [anon_sym_AMP_AMP] = ACTIONS(6937), + [anon_sym_PIPE] = ACTIONS(6935), + [anon_sym_CARET] = ACTIONS(6937), + [anon_sym_AMP] = ACTIONS(6935), + [anon_sym_EQ_EQ] = ACTIONS(6937), + [anon_sym_BANG_EQ] = ACTIONS(6937), + [anon_sym_GT] = ACTIONS(6935), + [anon_sym_GT_EQ] = ACTIONS(6937), + [anon_sym_LT_EQ] = ACTIONS(6935), + [anon_sym_LT] = ACTIONS(6935), + [anon_sym_LT_LT] = ACTIONS(6937), + [anon_sym_GT_GT] = ACTIONS(6937), + [anon_sym_SEMI] = ACTIONS(6937), + [anon_sym___extension__] = ACTIONS(6935), + [anon_sym___attribute__] = ACTIONS(8449), + [anon_sym___attribute] = ACTIONS(8449), + [anon_sym_COLON] = ACTIONS(6935), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6937), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6937), + [anon_sym_RBRACE] = ACTIONS(6937), + [anon_sym_LBRACK] = ACTIONS(6935), + [anon_sym_const] = ACTIONS(6935), + [anon_sym_constexpr] = ACTIONS(6935), + [anon_sym_volatile] = ACTIONS(6935), + [anon_sym_restrict] = ACTIONS(6935), + [anon_sym___restrict__] = ACTIONS(6935), + [anon_sym__Atomic] = ACTIONS(6935), + [anon_sym__Noreturn] = ACTIONS(6935), + [anon_sym_noreturn] = ACTIONS(6935), + [anon_sym__Nonnull] = ACTIONS(6935), + [anon_sym_mutable] = ACTIONS(6935), + [anon_sym_constinit] = ACTIONS(6935), + [anon_sym_consteval] = ACTIONS(6935), + [anon_sym_alignas] = ACTIONS(6935), + [anon_sym__Alignas] = ACTIONS(6935), + [anon_sym_QMARK] = ACTIONS(6937), + [anon_sym_LT_EQ_GT] = ACTIONS(6937), + [anon_sym_or] = ACTIONS(6935), + [anon_sym_and] = ACTIONS(6935), + [anon_sym_bitor] = ACTIONS(6935), + [anon_sym_xor] = ACTIONS(6935), + [anon_sym_bitand] = ACTIONS(6935), + [anon_sym_not_eq] = ACTIONS(6935), + [anon_sym_DASH_DASH] = ACTIONS(6937), + [anon_sym_PLUS_PLUS] = ACTIONS(6937), + [anon_sym_asm] = ACTIONS(6935), + [anon_sym___asm__] = ACTIONS(6935), + [anon_sym___asm] = ACTIONS(6935), + [anon_sym_DOT] = ACTIONS(6935), + [anon_sym_DOT_STAR] = ACTIONS(6937), + [anon_sym_DASH_GT] = ACTIONS(6937), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6935), + [anon_sym_override] = ACTIONS(6935), + [anon_sym_noexcept] = ACTIONS(6935), + [anon_sym_throw] = ACTIONS(6935), + [anon_sym_requires] = ACTIONS(6935), + [anon_sym_COLON_RBRACK] = ACTIONS(6937), }, - [STATE(2696)] = { - [sym_identifier] = ACTIONS(3704), - [aux_sym_preproc_def_token1] = ACTIONS(3704), - [aux_sym_preproc_if_token1] = ACTIONS(3704), - [aux_sym_preproc_if_token2] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), - [aux_sym_preproc_else_token1] = ACTIONS(3704), - [aux_sym_preproc_elif_token1] = ACTIONS(3704), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3704), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3704), - [sym_preproc_directive] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3706), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3706), - [anon_sym___extension__] = ACTIONS(3704), - [anon_sym_typedef] = ACTIONS(3704), - [anon_sym_virtual] = ACTIONS(3704), - [anon_sym_extern] = ACTIONS(3704), - [anon_sym___attribute__] = ACTIONS(3704), - [anon_sym___attribute] = ACTIONS(3704), - [anon_sym_using] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), - [anon_sym___declspec] = ACTIONS(3704), - [anon_sym___based] = ACTIONS(3704), - [anon_sym_signed] = ACTIONS(3704), - [anon_sym_unsigned] = ACTIONS(3704), - [anon_sym_long] = ACTIONS(3704), - [anon_sym_short] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_static] = ACTIONS(3704), - [anon_sym_register] = ACTIONS(3704), - [anon_sym_inline] = ACTIONS(3704), - [anon_sym___inline] = ACTIONS(3704), - [anon_sym___inline__] = ACTIONS(3704), - [anon_sym___forceinline] = ACTIONS(3704), - [anon_sym_thread_local] = ACTIONS(3704), - [anon_sym___thread] = ACTIONS(3704), - [anon_sym_const] = ACTIONS(3704), - [anon_sym_constexpr] = ACTIONS(3704), - [anon_sym_volatile] = ACTIONS(3704), - [anon_sym_restrict] = ACTIONS(3704), - [anon_sym___restrict__] = ACTIONS(3704), - [anon_sym__Atomic] = ACTIONS(3704), - [anon_sym__Noreturn] = ACTIONS(3704), - [anon_sym_noreturn] = ACTIONS(3704), - [anon_sym__Nonnull] = ACTIONS(3704), - [anon_sym_mutable] = ACTIONS(3704), - [anon_sym_constinit] = ACTIONS(3704), - [anon_sym_consteval] = ACTIONS(3704), - [anon_sym_alignas] = ACTIONS(3704), - [anon_sym__Alignas] = ACTIONS(3704), - [sym_primitive_type] = ACTIONS(3704), - [anon_sym_enum] = ACTIONS(3704), - [anon_sym_class] = ACTIONS(3704), - [anon_sym_struct] = ACTIONS(3704), - [anon_sym_union] = ACTIONS(3704), - [anon_sym_typename] = ACTIONS(3704), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3704), - [anon_sym_decltype] = ACTIONS(3704), - [anon_sym_explicit] = ACTIONS(3704), - [anon_sym_private] = ACTIONS(3704), - [anon_sym_template] = ACTIONS(3704), - [anon_sym_operator] = ACTIONS(3704), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3704), - [anon_sym_protected] = ACTIONS(3704), - [anon_sym_static_assert] = ACTIONS(3704), - [anon_sym_LBRACK_COLON] = ACTIONS(3706), + [STATE(2549)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_exception_specification] = STATE(3014), + [sym__function_attributes_end] = STATE(4235), + [sym__function_postfix] = STATE(3628), + [sym_trailing_return_type] = STATE(3075), + [sym_noexcept] = STATE(3014), + [sym_throw_specifier] = STATE(3014), + [sym_requires_clause] = STATE(3628), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym_SEMI] = ACTIONS(7791), + [anon_sym___attribute__] = ACTIONS(8330), + [anon_sym___attribute] = ACTIONS(8333), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8336), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7870), + [anon_sym_override] = ACTIONS(7870), + [anon_sym_noexcept] = ACTIONS(6546), + [anon_sym_throw] = ACTIONS(6548), + [anon_sym_requires] = ACTIONS(7873), }, - [STATE(2697)] = { - [sym_attribute_specifier] = STATE(3073), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7135), - [anon_sym_COMMA] = ACTIONS(7135), - [anon_sym_LPAREN2] = ACTIONS(7135), - [anon_sym_DASH] = ACTIONS(7133), - [anon_sym_PLUS] = ACTIONS(7133), - [anon_sym_STAR] = ACTIONS(7133), - [anon_sym_SLASH] = ACTIONS(7133), - [anon_sym_PERCENT] = ACTIONS(7133), - [anon_sym_PIPE_PIPE] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7135), - [anon_sym_PIPE] = ACTIONS(7133), - [anon_sym_CARET] = ACTIONS(7133), - [anon_sym_AMP] = ACTIONS(7133), - [anon_sym_EQ_EQ] = ACTIONS(7135), - [anon_sym_BANG_EQ] = ACTIONS(7135), - [anon_sym_GT] = ACTIONS(7133), - [anon_sym_GT_EQ] = ACTIONS(7135), - [anon_sym_LT_EQ] = ACTIONS(7133), - [anon_sym_LT] = ACTIONS(7133), - [anon_sym_LT_LT] = ACTIONS(7133), - [anon_sym_GT_GT] = ACTIONS(7133), - [anon_sym___extension__] = ACTIONS(7135), - [anon_sym___attribute__] = ACTIONS(8003), - [anon_sym___attribute] = ACTIONS(8005), - [anon_sym_LBRACE] = ACTIONS(7135), - [anon_sym_LBRACK] = ACTIONS(7135), - [anon_sym_RBRACK] = ACTIONS(7135), - [anon_sym_EQ] = ACTIONS(7133), - [anon_sym_const] = ACTIONS(7133), - [anon_sym_constexpr] = ACTIONS(7135), - [anon_sym_volatile] = ACTIONS(7135), - [anon_sym_restrict] = ACTIONS(7135), - [anon_sym___restrict__] = ACTIONS(7135), - [anon_sym__Atomic] = ACTIONS(7135), - [anon_sym__Noreturn] = ACTIONS(7135), - [anon_sym_noreturn] = ACTIONS(7135), - [anon_sym__Nonnull] = ACTIONS(7135), - [anon_sym_mutable] = ACTIONS(7135), - [anon_sym_constinit] = ACTIONS(7135), - [anon_sym_consteval] = ACTIONS(7135), - [anon_sym_alignas] = ACTIONS(7135), - [anon_sym__Alignas] = ACTIONS(7135), - [anon_sym_QMARK] = ACTIONS(7135), - [anon_sym_STAR_EQ] = ACTIONS(7135), - [anon_sym_SLASH_EQ] = ACTIONS(7135), - [anon_sym_PERCENT_EQ] = ACTIONS(7135), - [anon_sym_PLUS_EQ] = ACTIONS(7135), - [anon_sym_DASH_EQ] = ACTIONS(7135), - [anon_sym_LT_LT_EQ] = ACTIONS(7135), - [anon_sym_GT_GT_EQ] = ACTIONS(7135), - [anon_sym_AMP_EQ] = ACTIONS(7135), - [anon_sym_CARET_EQ] = ACTIONS(7135), - [anon_sym_PIPE_EQ] = ACTIONS(7135), - [anon_sym_and_eq] = ACTIONS(7135), - [anon_sym_or_eq] = ACTIONS(7135), - [anon_sym_xor_eq] = ACTIONS(7135), - [anon_sym_LT_EQ_GT] = ACTIONS(7135), - [anon_sym_or] = ACTIONS(7133), - [anon_sym_and] = ACTIONS(7133), - [anon_sym_bitor] = ACTIONS(7135), - [anon_sym_xor] = ACTIONS(7133), - [anon_sym_bitand] = ACTIONS(7135), - [anon_sym_not_eq] = ACTIONS(7135), - [anon_sym_DASH_DASH] = ACTIONS(7135), - [anon_sym_PLUS_PLUS] = ACTIONS(7135), - [anon_sym_DOT] = ACTIONS(7133), - [anon_sym_DOT_STAR] = ACTIONS(7135), - [anon_sym_DASH_GT] = ACTIONS(7135), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7135), - [anon_sym_override] = ACTIONS(7135), - [anon_sym_requires] = ACTIONS(7135), + [STATE(2550)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7291), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7291), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7291), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7291), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7291), + [anon_sym_GT_GT] = ACTIONS(7291), + [anon_sym___extension__] = ACTIONS(7293), + [anon_sym___attribute__] = ACTIONS(7293), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_COLON] = ACTIONS(7291), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_EQ] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7293), + [anon_sym_volatile] = ACTIONS(7293), + [anon_sym_restrict] = ACTIONS(7293), + [anon_sym___restrict__] = ACTIONS(7293), + [anon_sym__Atomic] = ACTIONS(7293), + [anon_sym__Noreturn] = ACTIONS(7293), + [anon_sym_noreturn] = ACTIONS(7293), + [anon_sym__Nonnull] = ACTIONS(7293), + [anon_sym_mutable] = ACTIONS(7293), + [anon_sym_constinit] = ACTIONS(7293), + [anon_sym_consteval] = ACTIONS(7293), + [anon_sym_alignas] = ACTIONS(7293), + [anon_sym__Alignas] = ACTIONS(7293), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_STAR_EQ] = ACTIONS(7293), + [anon_sym_SLASH_EQ] = ACTIONS(7293), + [anon_sym_PERCENT_EQ] = ACTIONS(7293), + [anon_sym_PLUS_EQ] = ACTIONS(7293), + [anon_sym_DASH_EQ] = ACTIONS(7293), + [anon_sym_LT_LT_EQ] = ACTIONS(7293), + [anon_sym_GT_GT_EQ] = ACTIONS(7291), + [anon_sym_AMP_EQ] = ACTIONS(7293), + [anon_sym_CARET_EQ] = ACTIONS(7293), + [anon_sym_PIPE_EQ] = ACTIONS(7293), + [anon_sym_and_eq] = ACTIONS(7293), + [anon_sym_or_eq] = ACTIONS(7293), + [anon_sym_xor_eq] = ACTIONS(7293), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_bitor] = ACTIONS(7293), + [anon_sym_xor] = ACTIONS(7291), + [anon_sym_bitand] = ACTIONS(7293), + [anon_sym_not_eq] = ACTIONS(7293), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7293), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7293), + [anon_sym_decltype] = ACTIONS(7293), + [anon_sym_final] = ACTIONS(7293), + [anon_sym_override] = ACTIONS(7293), + [anon_sym_GT2] = ACTIONS(7293), + [anon_sym_requires] = ACTIONS(7293), }, - [STATE(2698)] = { - [sym_identifier] = ACTIONS(8378), - [aux_sym_preproc_def_token1] = ACTIONS(8378), - [aux_sym_preproc_if_token1] = ACTIONS(8378), - [aux_sym_preproc_if_token2] = ACTIONS(8378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8378), - [aux_sym_preproc_else_token1] = ACTIONS(8378), - [aux_sym_preproc_elif_token1] = ACTIONS(8378), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8378), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8378), - [sym_preproc_directive] = ACTIONS(8378), - [anon_sym_LPAREN2] = ACTIONS(8380), - [anon_sym_TILDE] = ACTIONS(8380), - [anon_sym_STAR] = ACTIONS(8380), - [anon_sym_AMP_AMP] = ACTIONS(8380), - [anon_sym_AMP] = ACTIONS(8378), - [anon_sym_SEMI] = ACTIONS(8380), - [anon_sym___extension__] = ACTIONS(8378), - [anon_sym_typedef] = ACTIONS(8378), - [anon_sym_virtual] = ACTIONS(8378), - [anon_sym_extern] = ACTIONS(8378), - [anon_sym___attribute__] = ACTIONS(8378), - [anon_sym___attribute] = ACTIONS(8378), - [anon_sym_using] = ACTIONS(8378), - [anon_sym_COLON_COLON] = ACTIONS(8380), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8380), - [anon_sym___declspec] = ACTIONS(8378), - [anon_sym___based] = ACTIONS(8378), - [anon_sym_signed] = ACTIONS(8378), - [anon_sym_unsigned] = ACTIONS(8378), - [anon_sym_long] = ACTIONS(8378), - [anon_sym_short] = ACTIONS(8378), - [anon_sym_LBRACK] = ACTIONS(8378), - [anon_sym_static] = ACTIONS(8378), - [anon_sym_register] = ACTIONS(8378), - [anon_sym_inline] = ACTIONS(8378), - [anon_sym___inline] = ACTIONS(8378), - [anon_sym___inline__] = ACTIONS(8378), - [anon_sym___forceinline] = ACTIONS(8378), - [anon_sym_thread_local] = ACTIONS(8378), - [anon_sym___thread] = ACTIONS(8378), - [anon_sym_const] = ACTIONS(8378), - [anon_sym_constexpr] = ACTIONS(8378), - [anon_sym_volatile] = ACTIONS(8378), - [anon_sym_restrict] = ACTIONS(8378), - [anon_sym___restrict__] = ACTIONS(8378), - [anon_sym__Atomic] = ACTIONS(8378), - [anon_sym__Noreturn] = ACTIONS(8378), - [anon_sym_noreturn] = ACTIONS(8378), - [anon_sym__Nonnull] = ACTIONS(8378), - [anon_sym_mutable] = ACTIONS(8378), - [anon_sym_constinit] = ACTIONS(8378), - [anon_sym_consteval] = ACTIONS(8378), - [anon_sym_alignas] = ACTIONS(8378), - [anon_sym__Alignas] = ACTIONS(8378), - [sym_primitive_type] = ACTIONS(8378), - [anon_sym_enum] = ACTIONS(8378), - [anon_sym_class] = ACTIONS(8378), - [anon_sym_struct] = ACTIONS(8378), - [anon_sym_union] = ACTIONS(8378), - [anon_sym_typename] = ACTIONS(8378), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8378), - [anon_sym_decltype] = ACTIONS(8378), - [anon_sym_explicit] = ACTIONS(8378), - [anon_sym_private] = ACTIONS(8378), - [anon_sym_template] = ACTIONS(8378), - [anon_sym_operator] = ACTIONS(8378), - [anon_sym_friend] = ACTIONS(8378), - [anon_sym_public] = ACTIONS(8378), - [anon_sym_protected] = ACTIONS(8378), - [anon_sym_static_assert] = ACTIONS(8378), - [anon_sym_LBRACK_COLON] = ACTIONS(8380), + [STATE(2551)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7291), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7291), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7291), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7291), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7291), + [anon_sym_GT_GT] = ACTIONS(7291), + [anon_sym___extension__] = ACTIONS(7293), + [anon_sym___attribute__] = ACTIONS(7293), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_COLON] = ACTIONS(7291), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_EQ] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7293), + [anon_sym_volatile] = ACTIONS(7293), + [anon_sym_restrict] = ACTIONS(7293), + [anon_sym___restrict__] = ACTIONS(7293), + [anon_sym__Atomic] = ACTIONS(7293), + [anon_sym__Noreturn] = ACTIONS(7293), + [anon_sym_noreturn] = ACTIONS(7293), + [anon_sym__Nonnull] = ACTIONS(7293), + [anon_sym_mutable] = ACTIONS(7293), + [anon_sym_constinit] = ACTIONS(7293), + [anon_sym_consteval] = ACTIONS(7293), + [anon_sym_alignas] = ACTIONS(7293), + [anon_sym__Alignas] = ACTIONS(7293), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_STAR_EQ] = ACTIONS(7293), + [anon_sym_SLASH_EQ] = ACTIONS(7293), + [anon_sym_PERCENT_EQ] = ACTIONS(7293), + [anon_sym_PLUS_EQ] = ACTIONS(7293), + [anon_sym_DASH_EQ] = ACTIONS(7293), + [anon_sym_LT_LT_EQ] = ACTIONS(7293), + [anon_sym_GT_GT_EQ] = ACTIONS(7291), + [anon_sym_AMP_EQ] = ACTIONS(7293), + [anon_sym_CARET_EQ] = ACTIONS(7293), + [anon_sym_PIPE_EQ] = ACTIONS(7293), + [anon_sym_and_eq] = ACTIONS(7293), + [anon_sym_or_eq] = ACTIONS(7293), + [anon_sym_xor_eq] = ACTIONS(7293), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_bitor] = ACTIONS(7293), + [anon_sym_xor] = ACTIONS(7291), + [anon_sym_bitand] = ACTIONS(7293), + [anon_sym_not_eq] = ACTIONS(7293), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7293), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7293), + [anon_sym_decltype] = ACTIONS(7293), + [anon_sym_final] = ACTIONS(7293), + [anon_sym_override] = ACTIONS(7293), + [anon_sym_GT2] = ACTIONS(7293), + [anon_sym_requires] = ACTIONS(7293), }, - [STATE(2699)] = { - [sym_decltype_auto] = STATE(3047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6798), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6798), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8268), - [anon_sym_decltype] = ACTIONS(6644), - [anon_sym_final] = ACTIONS(6800), - [anon_sym_override] = ACTIONS(6800), - [anon_sym_GT2] = ACTIONS(6800), - [anon_sym_requires] = ACTIONS(6800), + [STATE(2552)] = { + [sym_attribute_specifier] = STATE(4179), + [sym_attribute_declaration] = STATE(4554), + [sym_gnu_asm_expression] = STATE(9153), + [sym_virtual_specifier] = STATE(4653), + [sym__function_exception_specification] = STATE(2953), + [sym__function_attributes_end] = STATE(4364), + [sym__function_postfix] = STATE(5121), + [sym_trailing_return_type] = STATE(4534), + [sym_noexcept] = STATE(2953), + [sym_throw_specifier] = STATE(2953), + [sym_requires_clause] = STATE(5121), + [aux_sym_type_definition_repeat1] = STATE(4179), + [aux_sym_attributed_declarator_repeat1] = STATE(4554), + [aux_sym__function_postfix_repeat1] = STATE(4653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym___attribute__] = ACTIONS(6719), + [anon_sym___attribute] = ACTIONS(6721), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_RBRACK] = ACTIONS(7966), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7966), + [anon_sym_or_eq] = ACTIONS(7966), + [anon_sym_xor_eq] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(8440), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6742), + [anon_sym_override] = ACTIONS(6742), + [anon_sym_noexcept] = ACTIONS(6735), + [anon_sym_throw] = ACTIONS(6737), + [anon_sym_requires] = ACTIONS(6744), }, - [STATE(2700)] = { - [sym_identifier] = ACTIONS(4144), - [aux_sym_preproc_def_token1] = ACTIONS(4144), - [aux_sym_preproc_if_token1] = ACTIONS(4144), - [aux_sym_preproc_if_token2] = ACTIONS(4144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4144), - [aux_sym_preproc_else_token1] = ACTIONS(4144), - [aux_sym_preproc_elif_token1] = ACTIONS(4144), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4144), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4144), - [sym_preproc_directive] = ACTIONS(4144), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_TILDE] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_AMP] = ACTIONS(4144), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_typedef] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_using] = ACTIONS(4144), - [anon_sym_COLON_COLON] = ACTIONS(4146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4146), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym_signed] = ACTIONS(4144), - [anon_sym_unsigned] = ACTIONS(4144), - [anon_sym_long] = ACTIONS(4144), - [anon_sym_short] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [sym_primitive_type] = ACTIONS(4144), - [anon_sym_enum] = ACTIONS(4144), - [anon_sym_class] = ACTIONS(4144), - [anon_sym_struct] = ACTIONS(4144), - [anon_sym_union] = ACTIONS(4144), - [anon_sym_typename] = ACTIONS(4144), + [STATE(2553)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7303), + [anon_sym_COMMA] = ACTIONS(7303), + [anon_sym_LPAREN2] = ACTIONS(7303), + [anon_sym_DASH] = ACTIONS(7301), + [anon_sym_PLUS] = ACTIONS(7301), + [anon_sym_STAR] = ACTIONS(7301), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7301), + [anon_sym_PIPE_PIPE] = ACTIONS(7303), + [anon_sym_AMP_AMP] = ACTIONS(7303), + [anon_sym_PIPE] = ACTIONS(7301), + [anon_sym_CARET] = ACTIONS(7301), + [anon_sym_AMP] = ACTIONS(7301), + [anon_sym_EQ_EQ] = ACTIONS(7303), + [anon_sym_BANG_EQ] = ACTIONS(7303), + [anon_sym_GT] = ACTIONS(7301), + [anon_sym_GT_EQ] = ACTIONS(7301), + [anon_sym_LT_EQ] = ACTIONS(7301), + [anon_sym_LT] = ACTIONS(7301), + [anon_sym_LT_LT] = ACTIONS(7301), + [anon_sym_GT_GT] = ACTIONS(7301), + [anon_sym___extension__] = ACTIONS(7303), + [anon_sym___attribute__] = ACTIONS(7303), + [anon_sym___attribute] = ACTIONS(7301), + [anon_sym_COLON] = ACTIONS(7301), + [anon_sym_COLON_COLON] = ACTIONS(7303), + [anon_sym_LBRACE] = ACTIONS(7303), + [anon_sym_LBRACK] = ACTIONS(7303), + [anon_sym_EQ] = ACTIONS(7301), + [anon_sym_const] = ACTIONS(7301), + [anon_sym_constexpr] = ACTIONS(7303), + [anon_sym_volatile] = ACTIONS(7303), + [anon_sym_restrict] = ACTIONS(7303), + [anon_sym___restrict__] = ACTIONS(7303), + [anon_sym__Atomic] = ACTIONS(7303), + [anon_sym__Noreturn] = ACTIONS(7303), + [anon_sym_noreturn] = ACTIONS(7303), + [anon_sym__Nonnull] = ACTIONS(7303), + [anon_sym_mutable] = ACTIONS(7303), + [anon_sym_constinit] = ACTIONS(7303), + [anon_sym_consteval] = ACTIONS(7303), + [anon_sym_alignas] = ACTIONS(7303), + [anon_sym__Alignas] = ACTIONS(7303), + [anon_sym_QMARK] = ACTIONS(7303), + [anon_sym_STAR_EQ] = ACTIONS(7303), + [anon_sym_SLASH_EQ] = ACTIONS(7303), + [anon_sym_PERCENT_EQ] = ACTIONS(7303), + [anon_sym_PLUS_EQ] = ACTIONS(7303), + [anon_sym_DASH_EQ] = ACTIONS(7303), + [anon_sym_LT_LT_EQ] = ACTIONS(7303), + [anon_sym_GT_GT_EQ] = ACTIONS(7301), + [anon_sym_AMP_EQ] = ACTIONS(7303), + [anon_sym_CARET_EQ] = ACTIONS(7303), + [anon_sym_PIPE_EQ] = ACTIONS(7303), + [anon_sym_and_eq] = ACTIONS(7303), + [anon_sym_or_eq] = ACTIONS(7303), + [anon_sym_xor_eq] = ACTIONS(7303), + [anon_sym_LT_EQ_GT] = ACTIONS(7303), + [anon_sym_or] = ACTIONS(7301), + [anon_sym_and] = ACTIONS(7301), + [anon_sym_bitor] = ACTIONS(7303), + [anon_sym_xor] = ACTIONS(7301), + [anon_sym_bitand] = ACTIONS(7303), + [anon_sym_not_eq] = ACTIONS(7303), + [anon_sym_DASH_DASH] = ACTIONS(7303), + [anon_sym_PLUS_PLUS] = ACTIONS(7303), + [anon_sym_DOT] = ACTIONS(7301), + [anon_sym_DOT_STAR] = ACTIONS(7303), + [anon_sym_DASH_GT] = ACTIONS(7303), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_explicit] = ACTIONS(4144), - [anon_sym_private] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_friend] = ACTIONS(4144), - [anon_sym_public] = ACTIONS(4144), - [anon_sym_protected] = ACTIONS(4144), - [anon_sym_static_assert] = ACTIONS(4144), - [anon_sym_LBRACK_COLON] = ACTIONS(4146), + [sym_auto] = ACTIONS(7303), + [anon_sym_decltype] = ACTIONS(7303), + [anon_sym_final] = ACTIONS(7303), + [anon_sym_override] = ACTIONS(7303), + [anon_sym_GT2] = ACTIONS(7303), + [anon_sym_requires] = ACTIONS(7303), }, - [STATE(2701)] = { - [sym_identifier] = ACTIONS(8382), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8384), - [anon_sym_COMMA] = ACTIONS(8384), - [anon_sym_RPAREN] = ACTIONS(8384), - [aux_sym_preproc_if_token2] = ACTIONS(8384), - [aux_sym_preproc_else_token1] = ACTIONS(8384), - [aux_sym_preproc_elif_token1] = ACTIONS(8382), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8384), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8384), - [anon_sym_LPAREN2] = ACTIONS(8384), - [anon_sym_DASH] = ACTIONS(8382), - [anon_sym_PLUS] = ACTIONS(8382), - [anon_sym_STAR] = ACTIONS(8382), - [anon_sym_SLASH] = ACTIONS(8382), - [anon_sym_PERCENT] = ACTIONS(8382), - [anon_sym_PIPE_PIPE] = ACTIONS(8384), - [anon_sym_AMP_AMP] = ACTIONS(8384), - [anon_sym_PIPE] = ACTIONS(8382), - [anon_sym_CARET] = ACTIONS(8382), - [anon_sym_AMP] = ACTIONS(8382), - [anon_sym_EQ_EQ] = ACTIONS(8384), - [anon_sym_BANG_EQ] = ACTIONS(8384), - [anon_sym_GT] = ACTIONS(8382), - [anon_sym_GT_EQ] = ACTIONS(8384), - [anon_sym_LT_EQ] = ACTIONS(8382), - [anon_sym_LT] = ACTIONS(8382), - [anon_sym_LT_LT] = ACTIONS(8382), - [anon_sym_GT_GT] = ACTIONS(8382), - [anon_sym_SEMI] = ACTIONS(8384), - [anon_sym_COLON] = ACTIONS(8382), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8384), - [anon_sym_RBRACE] = ACTIONS(8384), - [anon_sym_LBRACK] = ACTIONS(8384), - [anon_sym_EQ] = ACTIONS(8382), - [anon_sym_QMARK] = ACTIONS(8384), - [anon_sym_STAR_EQ] = ACTIONS(8384), - [anon_sym_SLASH_EQ] = ACTIONS(8384), - [anon_sym_PERCENT_EQ] = ACTIONS(8384), - [anon_sym_PLUS_EQ] = ACTIONS(8384), - [anon_sym_DASH_EQ] = ACTIONS(8384), - [anon_sym_LT_LT_EQ] = ACTIONS(8384), - [anon_sym_GT_GT_EQ] = ACTIONS(8384), - [anon_sym_AMP_EQ] = ACTIONS(8384), - [anon_sym_CARET_EQ] = ACTIONS(8384), - [anon_sym_PIPE_EQ] = ACTIONS(8384), - [anon_sym_and_eq] = ACTIONS(8382), - [anon_sym_or_eq] = ACTIONS(8382), - [anon_sym_xor_eq] = ACTIONS(8382), - [anon_sym_LT_EQ_GT] = ACTIONS(8384), - [anon_sym_or] = ACTIONS(8382), - [anon_sym_and] = ACTIONS(8382), - [anon_sym_bitor] = ACTIONS(8382), - [anon_sym_xor] = ACTIONS(8382), - [anon_sym_bitand] = ACTIONS(8382), - [anon_sym_not_eq] = ACTIONS(8382), - [anon_sym_DASH_DASH] = ACTIONS(8384), - [anon_sym_PLUS_PLUS] = ACTIONS(8384), - [anon_sym_DOT] = ACTIONS(8382), - [anon_sym_DOT_STAR] = ACTIONS(8384), - [anon_sym_DASH_GT] = ACTIONS(8384), - [anon_sym_L_DQUOTE] = ACTIONS(8384), - [anon_sym_u_DQUOTE] = ACTIONS(8384), - [anon_sym_U_DQUOTE] = ACTIONS(8384), - [anon_sym_u8_DQUOTE] = ACTIONS(8384), - [anon_sym_DQUOTE] = ACTIONS(8384), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8384), - [anon_sym_LR_DQUOTE] = ACTIONS(8384), - [anon_sym_uR_DQUOTE] = ACTIONS(8384), - [anon_sym_UR_DQUOTE] = ACTIONS(8384), - [anon_sym_u8R_DQUOTE] = ACTIONS(8384), - [anon_sym_COLON_RBRACK] = ACTIONS(8384), - [sym_literal_suffix] = ACTIONS(8382), + [STATE(2554)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_exception_specification] = STATE(3017), + [sym__function_attributes_end] = STATE(4236), + [sym__function_postfix] = STATE(3655), + [sym_trailing_return_type] = STATE(3076), + [sym_noexcept] = STATE(3017), + [sym_throw_specifier] = STATE(3017), + [sym_requires_clause] = STATE(3655), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym_SEMI] = ACTIONS(7966), + [anon_sym___attribute__] = ACTIONS(8391), + [anon_sym___attribute] = ACTIONS(8394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7966), + [anon_sym_or_eq] = ACTIONS(7966), + [anon_sym_xor_eq] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(8397), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7973), + [anon_sym_override] = ACTIONS(7973), + [anon_sym_noexcept] = ACTIONS(6546), + [anon_sym_throw] = ACTIONS(6548), + [anon_sym_requires] = ACTIONS(7976), }, - [STATE(2702)] = { - [sym_identifier] = ACTIONS(8386), - [aux_sym_preproc_def_token1] = ACTIONS(8386), - [aux_sym_preproc_if_token1] = ACTIONS(8386), - [aux_sym_preproc_if_token2] = ACTIONS(8386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8386), - [aux_sym_preproc_else_token1] = ACTIONS(8386), - [aux_sym_preproc_elif_token1] = ACTIONS(8386), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8386), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8386), - [sym_preproc_directive] = ACTIONS(8386), - [anon_sym_LPAREN2] = ACTIONS(8388), - [anon_sym_TILDE] = ACTIONS(8388), - [anon_sym_STAR] = ACTIONS(8388), - [anon_sym_AMP_AMP] = ACTIONS(8388), - [anon_sym_AMP] = ACTIONS(8386), - [anon_sym_SEMI] = ACTIONS(8388), - [anon_sym___extension__] = ACTIONS(8386), - [anon_sym_typedef] = ACTIONS(8386), - [anon_sym_virtual] = ACTIONS(8386), - [anon_sym_extern] = ACTIONS(8386), - [anon_sym___attribute__] = ACTIONS(8386), - [anon_sym___attribute] = ACTIONS(8386), - [anon_sym_using] = ACTIONS(8386), - [anon_sym_COLON_COLON] = ACTIONS(8388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8388), - [anon_sym___declspec] = ACTIONS(8386), - [anon_sym___based] = ACTIONS(8386), - [anon_sym_signed] = ACTIONS(8386), - [anon_sym_unsigned] = ACTIONS(8386), - [anon_sym_long] = ACTIONS(8386), - [anon_sym_short] = ACTIONS(8386), - [anon_sym_LBRACK] = ACTIONS(8386), - [anon_sym_static] = ACTIONS(8386), - [anon_sym_register] = ACTIONS(8386), - [anon_sym_inline] = ACTIONS(8386), - [anon_sym___inline] = ACTIONS(8386), - [anon_sym___inline__] = ACTIONS(8386), - [anon_sym___forceinline] = ACTIONS(8386), - [anon_sym_thread_local] = ACTIONS(8386), - [anon_sym___thread] = ACTIONS(8386), - [anon_sym_const] = ACTIONS(8386), - [anon_sym_constexpr] = ACTIONS(8386), - [anon_sym_volatile] = ACTIONS(8386), - [anon_sym_restrict] = ACTIONS(8386), - [anon_sym___restrict__] = ACTIONS(8386), - [anon_sym__Atomic] = ACTIONS(8386), - [anon_sym__Noreturn] = ACTIONS(8386), - [anon_sym_noreturn] = ACTIONS(8386), - [anon_sym__Nonnull] = ACTIONS(8386), - [anon_sym_mutable] = ACTIONS(8386), - [anon_sym_constinit] = ACTIONS(8386), - [anon_sym_consteval] = ACTIONS(8386), - [anon_sym_alignas] = ACTIONS(8386), - [anon_sym__Alignas] = ACTIONS(8386), - [sym_primitive_type] = ACTIONS(8386), - [anon_sym_enum] = ACTIONS(8386), - [anon_sym_class] = ACTIONS(8386), - [anon_sym_struct] = ACTIONS(8386), - [anon_sym_union] = ACTIONS(8386), - [anon_sym_typename] = ACTIONS(8386), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8386), - [anon_sym_decltype] = ACTIONS(8386), - [anon_sym_explicit] = ACTIONS(8386), - [anon_sym_private] = ACTIONS(8386), - [anon_sym_template] = ACTIONS(8386), - [anon_sym_operator] = ACTIONS(8386), - [anon_sym_friend] = ACTIONS(8386), - [anon_sym_public] = ACTIONS(8386), - [anon_sym_protected] = ACTIONS(8386), - [anon_sym_static_assert] = ACTIONS(8386), - [anon_sym_LBRACK_COLON] = ACTIONS(8388), + [STATE(2555)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6610), + [anon_sym_COMMA] = ACTIONS(6610), + [anon_sym_LPAREN2] = ACTIONS(6610), + [anon_sym_DASH] = ACTIONS(6608), + [anon_sym_PLUS] = ACTIONS(6608), + [anon_sym_STAR] = ACTIONS(6608), + [anon_sym_SLASH] = ACTIONS(6608), + [anon_sym_PERCENT] = ACTIONS(6608), + [anon_sym_PIPE_PIPE] = ACTIONS(6610), + [anon_sym_AMP_AMP] = ACTIONS(6610), + [anon_sym_PIPE] = ACTIONS(6608), + [anon_sym_CARET] = ACTIONS(6608), + [anon_sym_AMP] = ACTIONS(6608), + [anon_sym_EQ_EQ] = ACTIONS(6610), + [anon_sym_BANG_EQ] = ACTIONS(6610), + [anon_sym_GT] = ACTIONS(6608), + [anon_sym_GT_EQ] = ACTIONS(6610), + [anon_sym_LT_EQ] = ACTIONS(6608), + [anon_sym_LT] = ACTIONS(6608), + [anon_sym_LT_LT] = ACTIONS(6608), + [anon_sym_GT_GT] = ACTIONS(6608), + [anon_sym___extension__] = ACTIONS(6610), + [anon_sym___attribute__] = ACTIONS(6610), + [anon_sym___attribute] = ACTIONS(6608), + [anon_sym_COLON] = ACTIONS(6608), + [anon_sym_COLON_COLON] = ACTIONS(6610), + [anon_sym_LBRACE] = ACTIONS(6610), + [anon_sym_LBRACK] = ACTIONS(6610), + [anon_sym_RBRACK] = ACTIONS(6610), + [anon_sym_EQ] = ACTIONS(6608), + [anon_sym_const] = ACTIONS(6608), + [anon_sym_constexpr] = ACTIONS(6610), + [anon_sym_volatile] = ACTIONS(6610), + [anon_sym_restrict] = ACTIONS(6610), + [anon_sym___restrict__] = ACTIONS(6610), + [anon_sym__Atomic] = ACTIONS(6610), + [anon_sym__Noreturn] = ACTIONS(6610), + [anon_sym_noreturn] = ACTIONS(6610), + [anon_sym__Nonnull] = ACTIONS(6610), + [anon_sym_mutable] = ACTIONS(6610), + [anon_sym_constinit] = ACTIONS(6610), + [anon_sym_consteval] = ACTIONS(6610), + [anon_sym_alignas] = ACTIONS(6610), + [anon_sym__Alignas] = ACTIONS(6610), + [anon_sym_QMARK] = ACTIONS(6610), + [anon_sym_STAR_EQ] = ACTIONS(6610), + [anon_sym_SLASH_EQ] = ACTIONS(6610), + [anon_sym_PERCENT_EQ] = ACTIONS(6610), + [anon_sym_PLUS_EQ] = ACTIONS(6610), + [anon_sym_DASH_EQ] = ACTIONS(6610), + [anon_sym_LT_LT_EQ] = ACTIONS(6610), + [anon_sym_GT_GT_EQ] = ACTIONS(6610), + [anon_sym_AMP_EQ] = ACTIONS(6610), + [anon_sym_CARET_EQ] = ACTIONS(6610), + [anon_sym_PIPE_EQ] = ACTIONS(6610), + [anon_sym_and_eq] = ACTIONS(6610), + [anon_sym_or_eq] = ACTIONS(6610), + [anon_sym_xor_eq] = ACTIONS(6610), + [anon_sym_LT_EQ_GT] = ACTIONS(6610), + [anon_sym_or] = ACTIONS(6608), + [anon_sym_and] = ACTIONS(6608), + [anon_sym_bitor] = ACTIONS(6610), + [anon_sym_xor] = ACTIONS(6608), + [anon_sym_bitand] = ACTIONS(6610), + [anon_sym_not_eq] = ACTIONS(6610), + [anon_sym_DASH_DASH] = ACTIONS(6610), + [anon_sym_PLUS_PLUS] = ACTIONS(6610), + [anon_sym_DOT] = ACTIONS(6608), + [anon_sym_DOT_STAR] = ACTIONS(6610), + [anon_sym_DASH_GT] = ACTIONS(6610), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6610), + [anon_sym_decltype] = ACTIONS(6610), + [anon_sym_final] = ACTIONS(6610), + [anon_sym_override] = ACTIONS(6610), + [anon_sym_requires] = ACTIONS(6610), }, - [STATE(2703)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), - [anon_sym_COMMA] = ACTIONS(6951), - [anon_sym_RPAREN] = ACTIONS(6951), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_DASH] = ACTIONS(6949), - [anon_sym_PLUS] = ACTIONS(6949), - [anon_sym_STAR] = ACTIONS(6949), - [anon_sym_SLASH] = ACTIONS(6949), - [anon_sym_PERCENT] = ACTIONS(6949), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_PIPE] = ACTIONS(6949), - [anon_sym_CARET] = ACTIONS(6949), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_GT] = ACTIONS(6949), - [anon_sym_GT_EQ] = ACTIONS(6951), - [anon_sym_LT_EQ] = ACTIONS(6949), - [anon_sym_LT] = ACTIONS(6949), - [anon_sym_LT_LT] = ACTIONS(6949), - [anon_sym_GT_GT] = ACTIONS(6949), - [anon_sym___extension__] = ACTIONS(6951), - [anon_sym___attribute__] = ACTIONS(6951), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_COLON] = ACTIONS(6951), - [anon_sym_LBRACE] = ACTIONS(6951), - [anon_sym_LBRACK] = ACTIONS(6951), - [anon_sym_EQ] = ACTIONS(6949), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6951), - [anon_sym_volatile] = ACTIONS(6951), - [anon_sym_restrict] = ACTIONS(6951), - [anon_sym___restrict__] = ACTIONS(6951), - [anon_sym__Atomic] = ACTIONS(6951), - [anon_sym__Noreturn] = ACTIONS(6951), - [anon_sym_noreturn] = ACTIONS(6951), - [anon_sym__Nonnull] = ACTIONS(6951), - [anon_sym_mutable] = ACTIONS(6951), - [anon_sym_constinit] = ACTIONS(6951), - [anon_sym_consteval] = ACTIONS(6951), - [anon_sym_alignas] = ACTIONS(6951), - [anon_sym__Alignas] = ACTIONS(6951), - [anon_sym_QMARK] = ACTIONS(6951), - [anon_sym_STAR_EQ] = ACTIONS(6951), - [anon_sym_SLASH_EQ] = ACTIONS(6951), - [anon_sym_PERCENT_EQ] = ACTIONS(6951), - [anon_sym_PLUS_EQ] = ACTIONS(6951), - [anon_sym_DASH_EQ] = ACTIONS(6951), - [anon_sym_LT_LT_EQ] = ACTIONS(6951), - [anon_sym_GT_GT_EQ] = ACTIONS(6951), - [anon_sym_AMP_EQ] = ACTIONS(6951), - [anon_sym_CARET_EQ] = ACTIONS(6951), - [anon_sym_PIPE_EQ] = ACTIONS(6951), - [anon_sym_LT_EQ_GT] = ACTIONS(6951), - [anon_sym_or] = ACTIONS(6951), - [anon_sym_and] = ACTIONS(6951), - [anon_sym_bitor] = ACTIONS(6951), - [anon_sym_xor] = ACTIONS(6951), - [anon_sym_bitand] = ACTIONS(6951), - [anon_sym_not_eq] = ACTIONS(6951), - [anon_sym_DASH_DASH] = ACTIONS(6951), - [anon_sym_PLUS_PLUS] = ACTIONS(6951), - [anon_sym_DOT] = ACTIONS(6949), - [anon_sym_DOT_STAR] = ACTIONS(6951), - [anon_sym_DASH_GT] = ACTIONS(6949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6951), - [anon_sym_decltype] = ACTIONS(6951), - [anon_sym_final] = ACTIONS(6951), - [anon_sym_override] = ACTIONS(6951), - [anon_sym_requires] = ACTIONS(6951), - [anon_sym_DASH_GT_STAR] = ACTIONS(6951), + [STATE(2556)] = { + [sym_string_literal] = STATE(2538), + [sym_raw_string_literal] = STATE(2538), + [aux_sym_concatenated_string_repeat1] = STATE(2538), + [sym_identifier] = ACTIONS(8452), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8454), + [anon_sym_COMMA] = ACTIONS(8454), + [anon_sym_RPAREN] = ACTIONS(8454), + [aux_sym_preproc_if_token2] = ACTIONS(8454), + [aux_sym_preproc_else_token1] = ACTIONS(8454), + [aux_sym_preproc_elif_token1] = ACTIONS(8456), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8454), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8454), + [anon_sym_LPAREN2] = ACTIONS(8454), + [anon_sym_DASH] = ACTIONS(8456), + [anon_sym_PLUS] = ACTIONS(8456), + [anon_sym_STAR] = ACTIONS(8456), + [anon_sym_SLASH] = ACTIONS(8456), + [anon_sym_PERCENT] = ACTIONS(8456), + [anon_sym_PIPE_PIPE] = ACTIONS(8454), + [anon_sym_AMP_AMP] = ACTIONS(8454), + [anon_sym_PIPE] = ACTIONS(8456), + [anon_sym_CARET] = ACTIONS(8456), + [anon_sym_AMP] = ACTIONS(8456), + [anon_sym_EQ_EQ] = ACTIONS(8454), + [anon_sym_BANG_EQ] = ACTIONS(8454), + [anon_sym_GT] = ACTIONS(8456), + [anon_sym_GT_EQ] = ACTIONS(8454), + [anon_sym_LT_EQ] = ACTIONS(8456), + [anon_sym_LT] = ACTIONS(8456), + [anon_sym_LT_LT] = ACTIONS(8456), + [anon_sym_GT_GT] = ACTIONS(8456), + [anon_sym_SEMI] = ACTIONS(8454), + [anon_sym_COLON] = ACTIONS(8456), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8454), + [anon_sym_RBRACE] = ACTIONS(8454), + [anon_sym_LBRACK] = ACTIONS(8454), + [anon_sym_EQ] = ACTIONS(8456), + [anon_sym_QMARK] = ACTIONS(8454), + [anon_sym_STAR_EQ] = ACTIONS(8454), + [anon_sym_SLASH_EQ] = ACTIONS(8454), + [anon_sym_PERCENT_EQ] = ACTIONS(8454), + [anon_sym_PLUS_EQ] = ACTIONS(8454), + [anon_sym_DASH_EQ] = ACTIONS(8454), + [anon_sym_LT_LT_EQ] = ACTIONS(8454), + [anon_sym_GT_GT_EQ] = ACTIONS(8454), + [anon_sym_AMP_EQ] = ACTIONS(8454), + [anon_sym_CARET_EQ] = ACTIONS(8454), + [anon_sym_PIPE_EQ] = ACTIONS(8454), + [anon_sym_and_eq] = ACTIONS(8456), + [anon_sym_or_eq] = ACTIONS(8456), + [anon_sym_xor_eq] = ACTIONS(8456), + [anon_sym_LT_EQ_GT] = ACTIONS(8454), + [anon_sym_or] = ACTIONS(8456), + [anon_sym_and] = ACTIONS(8456), + [anon_sym_bitor] = ACTIONS(8456), + [anon_sym_xor] = ACTIONS(8456), + [anon_sym_bitand] = ACTIONS(8456), + [anon_sym_not_eq] = ACTIONS(8456), + [anon_sym_DASH_DASH] = ACTIONS(8454), + [anon_sym_PLUS_PLUS] = ACTIONS(8454), + [anon_sym_DOT] = ACTIONS(8456), + [anon_sym_DOT_STAR] = ACTIONS(8454), + [anon_sym_DASH_GT] = ACTIONS(8454), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_COLON_RBRACK] = ACTIONS(8454), + [sym_literal_suffix] = ACTIONS(8456), }, - [STATE(2704)] = { - [sym_decltype_auto] = STATE(3014), - [sym_template_argument_list] = STATE(2824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5258), - [anon_sym_COMMA] = ACTIONS(5258), - [anon_sym_RPAREN] = ACTIONS(5258), - [anon_sym_LPAREN2] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5251), - [anon_sym_PLUS] = ACTIONS(5251), - [anon_sym_STAR] = ACTIONS(5258), - [anon_sym_SLASH] = ACTIONS(5251), - [anon_sym_PERCENT] = ACTIONS(5258), - [anon_sym_PIPE_PIPE] = ACTIONS(5258), - [anon_sym_AMP_AMP] = ACTIONS(5258), - [anon_sym_PIPE] = ACTIONS(5251), - [anon_sym_CARET] = ACTIONS(5258), - [anon_sym_AMP] = ACTIONS(5251), - [anon_sym_EQ_EQ] = ACTIONS(5258), - [anon_sym_BANG_EQ] = ACTIONS(5258), - [anon_sym_GT] = ACTIONS(5251), - [anon_sym_GT_EQ] = ACTIONS(5258), - [anon_sym_LT_EQ] = ACTIONS(5251), - [anon_sym_LT] = ACTIONS(8390), - [anon_sym_LT_LT] = ACTIONS(5258), - [anon_sym_GT_GT] = ACTIONS(5258), - [anon_sym_SEMI] = ACTIONS(5258), - [anon_sym___extension__] = ACTIONS(5258), - [anon_sym___attribute__] = ACTIONS(5258), - [anon_sym___attribute] = ACTIONS(5251), - [anon_sym_COLON] = ACTIONS(5251), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5258), - [anon_sym_LBRACE] = ACTIONS(5258), - [anon_sym_RBRACE] = ACTIONS(5258), - [anon_sym_signed] = ACTIONS(6503), - [anon_sym_unsigned] = ACTIONS(6503), - [anon_sym_long] = ACTIONS(6503), - [anon_sym_short] = ACTIONS(6503), - [anon_sym_LBRACK] = ACTIONS(5258), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5258), - [anon_sym_volatile] = ACTIONS(5258), - [anon_sym_restrict] = ACTIONS(5258), - [anon_sym___restrict__] = ACTIONS(5258), - [anon_sym__Atomic] = ACTIONS(5258), - [anon_sym__Noreturn] = ACTIONS(5258), - [anon_sym_noreturn] = ACTIONS(5258), - [anon_sym__Nonnull] = ACTIONS(5258), - [anon_sym_mutable] = ACTIONS(5258), - [anon_sym_constinit] = ACTIONS(5258), - [anon_sym_consteval] = ACTIONS(5258), - [anon_sym_alignas] = ACTIONS(5258), - [anon_sym__Alignas] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5258), - [anon_sym_LT_EQ_GT] = ACTIONS(5258), - [anon_sym_or] = ACTIONS(5258), - [anon_sym_and] = ACTIONS(5258), - [anon_sym_bitor] = ACTIONS(5258), - [anon_sym_xor] = ACTIONS(5258), - [anon_sym_bitand] = ACTIONS(5258), - [anon_sym_not_eq] = ACTIONS(5258), - [anon_sym_DASH_DASH] = ACTIONS(5258), - [anon_sym_PLUS_PLUS] = ACTIONS(5258), - [anon_sym_DOT] = ACTIONS(5251), - [anon_sym_DOT_STAR] = ACTIONS(5258), - [anon_sym_DASH_GT] = ACTIONS(5258), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6505), - [anon_sym_decltype] = ACTIONS(6507), - [anon_sym_final] = ACTIONS(5258), - [anon_sym_override] = ACTIONS(5258), - [anon_sym_requires] = ACTIONS(5258), - [anon_sym_COLON_RBRACK] = ACTIONS(5258), + [STATE(2557)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6618), + [anon_sym_COMMA] = ACTIONS(6618), + [anon_sym_LPAREN2] = ACTIONS(6618), + [anon_sym_DASH] = ACTIONS(6616), + [anon_sym_PLUS] = ACTIONS(6616), + [anon_sym_STAR] = ACTIONS(6616), + [anon_sym_SLASH] = ACTIONS(6616), + [anon_sym_PERCENT] = ACTIONS(6616), + [anon_sym_PIPE_PIPE] = ACTIONS(6618), + [anon_sym_AMP_AMP] = ACTIONS(6618), + [anon_sym_PIPE] = ACTIONS(6616), + [anon_sym_CARET] = ACTIONS(6616), + [anon_sym_AMP] = ACTIONS(6616), + [anon_sym_EQ_EQ] = ACTIONS(6618), + [anon_sym_BANG_EQ] = ACTIONS(6618), + [anon_sym_GT] = ACTIONS(6616), + [anon_sym_GT_EQ] = ACTIONS(6618), + [anon_sym_LT_EQ] = ACTIONS(6616), + [anon_sym_LT] = ACTIONS(6616), + [anon_sym_LT_LT] = ACTIONS(6616), + [anon_sym_GT_GT] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(6618), + [anon_sym___attribute__] = ACTIONS(6618), + [anon_sym___attribute] = ACTIONS(6616), + [anon_sym_COLON] = ACTIONS(6616), + [anon_sym_COLON_COLON] = ACTIONS(6618), + [anon_sym_LBRACE] = ACTIONS(6618), + [anon_sym_LBRACK] = ACTIONS(6618), + [anon_sym_RBRACK] = ACTIONS(6618), + [anon_sym_EQ] = ACTIONS(6616), + [anon_sym_const] = ACTIONS(6616), + [anon_sym_constexpr] = ACTIONS(6618), + [anon_sym_volatile] = ACTIONS(6618), + [anon_sym_restrict] = ACTIONS(6618), + [anon_sym___restrict__] = ACTIONS(6618), + [anon_sym__Atomic] = ACTIONS(6618), + [anon_sym__Noreturn] = ACTIONS(6618), + [anon_sym_noreturn] = ACTIONS(6618), + [anon_sym__Nonnull] = ACTIONS(6618), + [anon_sym_mutable] = ACTIONS(6618), + [anon_sym_constinit] = ACTIONS(6618), + [anon_sym_consteval] = ACTIONS(6618), + [anon_sym_alignas] = ACTIONS(6618), + [anon_sym__Alignas] = ACTIONS(6618), + [anon_sym_QMARK] = ACTIONS(6618), + [anon_sym_STAR_EQ] = ACTIONS(6618), + [anon_sym_SLASH_EQ] = ACTIONS(6618), + [anon_sym_PERCENT_EQ] = ACTIONS(6618), + [anon_sym_PLUS_EQ] = ACTIONS(6618), + [anon_sym_DASH_EQ] = ACTIONS(6618), + [anon_sym_LT_LT_EQ] = ACTIONS(6618), + [anon_sym_GT_GT_EQ] = ACTIONS(6618), + [anon_sym_AMP_EQ] = ACTIONS(6618), + [anon_sym_CARET_EQ] = ACTIONS(6618), + [anon_sym_PIPE_EQ] = ACTIONS(6618), + [anon_sym_and_eq] = ACTIONS(6618), + [anon_sym_or_eq] = ACTIONS(6618), + [anon_sym_xor_eq] = ACTIONS(6618), + [anon_sym_LT_EQ_GT] = ACTIONS(6618), + [anon_sym_or] = ACTIONS(6616), + [anon_sym_and] = ACTIONS(6616), + [anon_sym_bitor] = ACTIONS(6618), + [anon_sym_xor] = ACTIONS(6616), + [anon_sym_bitand] = ACTIONS(6618), + [anon_sym_not_eq] = ACTIONS(6618), + [anon_sym_DASH_DASH] = ACTIONS(6618), + [anon_sym_PLUS_PLUS] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(6616), + [anon_sym_DOT_STAR] = ACTIONS(6618), + [anon_sym_DASH_GT] = ACTIONS(6618), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6618), + [anon_sym_decltype] = ACTIONS(6618), + [anon_sym_final] = ACTIONS(6618), + [anon_sym_override] = ACTIONS(6618), + [anon_sym_requires] = ACTIONS(6618), }, - [STATE(2705)] = { - [sym_identifier] = ACTIONS(4152), - [aux_sym_preproc_def_token1] = ACTIONS(4152), - [aux_sym_preproc_if_token1] = ACTIONS(4152), - [aux_sym_preproc_if_token2] = ACTIONS(4152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4152), - [aux_sym_preproc_else_token1] = ACTIONS(4152), - [aux_sym_preproc_elif_token1] = ACTIONS(4152), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4152), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4152), - [sym_preproc_directive] = ACTIONS(4152), - [anon_sym_LPAREN2] = ACTIONS(4154), - [anon_sym_TILDE] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_AMP_AMP] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4152), - [anon_sym_SEMI] = ACTIONS(4154), - [anon_sym___extension__] = ACTIONS(4152), - [anon_sym_typedef] = ACTIONS(4152), - [anon_sym_virtual] = ACTIONS(4152), - [anon_sym_extern] = ACTIONS(4152), - [anon_sym___attribute__] = ACTIONS(4152), - [anon_sym___attribute] = ACTIONS(4152), - [anon_sym_using] = ACTIONS(4152), - [anon_sym_COLON_COLON] = ACTIONS(4154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4154), - [anon_sym___declspec] = ACTIONS(4152), - [anon_sym___based] = ACTIONS(4152), - [anon_sym_signed] = ACTIONS(4152), - [anon_sym_unsigned] = ACTIONS(4152), - [anon_sym_long] = ACTIONS(4152), - [anon_sym_short] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_static] = ACTIONS(4152), - [anon_sym_register] = ACTIONS(4152), - [anon_sym_inline] = ACTIONS(4152), - [anon_sym___inline] = ACTIONS(4152), - [anon_sym___inline__] = ACTIONS(4152), - [anon_sym___forceinline] = ACTIONS(4152), - [anon_sym_thread_local] = ACTIONS(4152), - [anon_sym___thread] = ACTIONS(4152), - [anon_sym_const] = ACTIONS(4152), - [anon_sym_constexpr] = ACTIONS(4152), - [anon_sym_volatile] = ACTIONS(4152), - [anon_sym_restrict] = ACTIONS(4152), - [anon_sym___restrict__] = ACTIONS(4152), - [anon_sym__Atomic] = ACTIONS(4152), - [anon_sym__Noreturn] = ACTIONS(4152), - [anon_sym_noreturn] = ACTIONS(4152), - [anon_sym__Nonnull] = ACTIONS(4152), - [anon_sym_mutable] = ACTIONS(4152), - [anon_sym_constinit] = ACTIONS(4152), - [anon_sym_consteval] = ACTIONS(4152), - [anon_sym_alignas] = ACTIONS(4152), - [anon_sym__Alignas] = ACTIONS(4152), - [sym_primitive_type] = ACTIONS(4152), - [anon_sym_enum] = ACTIONS(4152), - [anon_sym_class] = ACTIONS(4152), - [anon_sym_struct] = ACTIONS(4152), - [anon_sym_union] = ACTIONS(4152), - [anon_sym_typename] = ACTIONS(4152), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4152), - [anon_sym_decltype] = ACTIONS(4152), - [anon_sym_explicit] = ACTIONS(4152), - [anon_sym_private] = ACTIONS(4152), - [anon_sym_template] = ACTIONS(4152), - [anon_sym_operator] = ACTIONS(4152), - [anon_sym_friend] = ACTIONS(4152), - [anon_sym_public] = ACTIONS(4152), - [anon_sym_protected] = ACTIONS(4152), - [anon_sym_static_assert] = ACTIONS(4152), - [anon_sym_LBRACK_COLON] = ACTIONS(4154), + [STATE(2558)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_attributes_end] = STATE(3891), + [sym__function_postfix] = STATE(3628), + [sym_trailing_return_type] = STATE(3075), + [sym_requires_clause] = STATE(3628), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym_SEMI] = ACTIONS(7791), + [anon_sym___attribute__] = ACTIONS(6534), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_COLON] = ACTIONS(7789), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), + [anon_sym_RBRACE] = ACTIONS(7791), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(7849), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7870), + [anon_sym_override] = ACTIONS(7870), + [anon_sym_requires] = ACTIONS(7873), + [anon_sym_COLON_RBRACK] = ACTIONS(7791), }, - [STATE(2706)] = { - [sym_identifier] = ACTIONS(4156), - [aux_sym_preproc_def_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token2] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), - [aux_sym_preproc_else_token1] = ACTIONS(4156), - [aux_sym_preproc_elif_token1] = ACTIONS(4156), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4156), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4156), - [sym_preproc_directive] = ACTIONS(4156), - [anon_sym_LPAREN2] = ACTIONS(4158), - [anon_sym_TILDE] = ACTIONS(4158), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_SEMI] = ACTIONS(4158), - [anon_sym___extension__] = ACTIONS(4156), - [anon_sym_typedef] = ACTIONS(4156), - [anon_sym_virtual] = ACTIONS(4156), - [anon_sym_extern] = ACTIONS(4156), - [anon_sym___attribute__] = ACTIONS(4156), - [anon_sym___attribute] = ACTIONS(4156), - [anon_sym_using] = ACTIONS(4156), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), - [anon_sym___declspec] = ACTIONS(4156), - [anon_sym___based] = ACTIONS(4156), - [anon_sym_signed] = ACTIONS(4156), - [anon_sym_unsigned] = ACTIONS(4156), - [anon_sym_long] = ACTIONS(4156), - [anon_sym_short] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4156), - [anon_sym_register] = ACTIONS(4156), - [anon_sym_inline] = ACTIONS(4156), - [anon_sym___inline] = ACTIONS(4156), - [anon_sym___inline__] = ACTIONS(4156), - [anon_sym___forceinline] = ACTIONS(4156), - [anon_sym_thread_local] = ACTIONS(4156), - [anon_sym___thread] = ACTIONS(4156), - [anon_sym_const] = ACTIONS(4156), - [anon_sym_constexpr] = ACTIONS(4156), - [anon_sym_volatile] = ACTIONS(4156), - [anon_sym_restrict] = ACTIONS(4156), - [anon_sym___restrict__] = ACTIONS(4156), - [anon_sym__Atomic] = ACTIONS(4156), - [anon_sym__Noreturn] = ACTIONS(4156), - [anon_sym_noreturn] = ACTIONS(4156), - [anon_sym__Nonnull] = ACTIONS(4156), - [anon_sym_mutable] = ACTIONS(4156), - [anon_sym_constinit] = ACTIONS(4156), - [anon_sym_consteval] = ACTIONS(4156), - [anon_sym_alignas] = ACTIONS(4156), - [anon_sym__Alignas] = ACTIONS(4156), - [sym_primitive_type] = ACTIONS(4156), - [anon_sym_enum] = ACTIONS(4156), - [anon_sym_class] = ACTIONS(4156), - [anon_sym_struct] = ACTIONS(4156), - [anon_sym_union] = ACTIONS(4156), - [anon_sym_typename] = ACTIONS(4156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4156), - [anon_sym_decltype] = ACTIONS(4156), - [anon_sym_explicit] = ACTIONS(4156), - [anon_sym_private] = ACTIONS(4156), - [anon_sym_template] = ACTIONS(4156), - [anon_sym_operator] = ACTIONS(4156), - [anon_sym_friend] = ACTIONS(4156), - [anon_sym_public] = ACTIONS(4156), - [anon_sym_protected] = ACTIONS(4156), - [anon_sym_static_assert] = ACTIONS(4156), - [anon_sym_LBRACK_COLON] = ACTIONS(4158), + [STATE(2559)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6634), + [anon_sym_COMMA] = ACTIONS(6634), + [anon_sym_LPAREN2] = ACTIONS(6634), + [anon_sym_DASH] = ACTIONS(6632), + [anon_sym_PLUS] = ACTIONS(6632), + [anon_sym_STAR] = ACTIONS(6632), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_PERCENT] = ACTIONS(6632), + [anon_sym_PIPE_PIPE] = ACTIONS(6634), + [anon_sym_AMP_AMP] = ACTIONS(6634), + [anon_sym_PIPE] = ACTIONS(6632), + [anon_sym_CARET] = ACTIONS(6632), + [anon_sym_AMP] = ACTIONS(6632), + [anon_sym_EQ_EQ] = ACTIONS(6634), + [anon_sym_BANG_EQ] = ACTIONS(6634), + [anon_sym_GT] = ACTIONS(6632), + [anon_sym_GT_EQ] = ACTIONS(6634), + [anon_sym_LT_EQ] = ACTIONS(6632), + [anon_sym_LT] = ACTIONS(6632), + [anon_sym_LT_LT] = ACTIONS(6632), + [anon_sym_GT_GT] = ACTIONS(6632), + [anon_sym___extension__] = ACTIONS(6634), + [anon_sym___attribute__] = ACTIONS(6634), + [anon_sym___attribute] = ACTIONS(6632), + [anon_sym_COLON] = ACTIONS(6632), + [anon_sym_COLON_COLON] = ACTIONS(6634), + [anon_sym_LBRACE] = ACTIONS(6634), + [anon_sym_LBRACK] = ACTIONS(6634), + [anon_sym_RBRACK] = ACTIONS(6634), + [anon_sym_EQ] = ACTIONS(6632), + [anon_sym_const] = ACTIONS(6632), + [anon_sym_constexpr] = ACTIONS(6634), + [anon_sym_volatile] = ACTIONS(6634), + [anon_sym_restrict] = ACTIONS(6634), + [anon_sym___restrict__] = ACTIONS(6634), + [anon_sym__Atomic] = ACTIONS(6634), + [anon_sym__Noreturn] = ACTIONS(6634), + [anon_sym_noreturn] = ACTIONS(6634), + [anon_sym__Nonnull] = ACTIONS(6634), + [anon_sym_mutable] = ACTIONS(6634), + [anon_sym_constinit] = ACTIONS(6634), + [anon_sym_consteval] = ACTIONS(6634), + [anon_sym_alignas] = ACTIONS(6634), + [anon_sym__Alignas] = ACTIONS(6634), + [anon_sym_QMARK] = ACTIONS(6634), + [anon_sym_STAR_EQ] = ACTIONS(6634), + [anon_sym_SLASH_EQ] = ACTIONS(6634), + [anon_sym_PERCENT_EQ] = ACTIONS(6634), + [anon_sym_PLUS_EQ] = ACTIONS(6634), + [anon_sym_DASH_EQ] = ACTIONS(6634), + [anon_sym_LT_LT_EQ] = ACTIONS(6634), + [anon_sym_GT_GT_EQ] = ACTIONS(6634), + [anon_sym_AMP_EQ] = ACTIONS(6634), + [anon_sym_CARET_EQ] = ACTIONS(6634), + [anon_sym_PIPE_EQ] = ACTIONS(6634), + [anon_sym_and_eq] = ACTIONS(6634), + [anon_sym_or_eq] = ACTIONS(6634), + [anon_sym_xor_eq] = ACTIONS(6634), + [anon_sym_LT_EQ_GT] = ACTIONS(6634), + [anon_sym_or] = ACTIONS(6632), + [anon_sym_and] = ACTIONS(6632), + [anon_sym_bitor] = ACTIONS(6634), + [anon_sym_xor] = ACTIONS(6632), + [anon_sym_bitand] = ACTIONS(6634), + [anon_sym_not_eq] = ACTIONS(6634), + [anon_sym_DASH_DASH] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_DOT] = ACTIONS(6632), + [anon_sym_DOT_STAR] = ACTIONS(6634), + [anon_sym_DASH_GT] = ACTIONS(6634), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6634), + [anon_sym_decltype] = ACTIONS(6634), + [anon_sym_final] = ACTIONS(6634), + [anon_sym_override] = ACTIONS(6634), + [anon_sym_requires] = ACTIONS(6634), }, - [STATE(2707)] = { - [sym_attribute_specifier] = STATE(2989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7189), - [anon_sym_COMMA] = ACTIONS(7189), - [anon_sym_LPAREN2] = ACTIONS(7189), - [anon_sym_DASH] = ACTIONS(7187), - [anon_sym_PLUS] = ACTIONS(7187), - [anon_sym_STAR] = ACTIONS(7187), - [anon_sym_SLASH] = ACTIONS(7187), - [anon_sym_PERCENT] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_AMP_AMP] = ACTIONS(7189), - [anon_sym_PIPE] = ACTIONS(7187), - [anon_sym_CARET] = ACTIONS(7187), - [anon_sym_AMP] = ACTIONS(7187), - [anon_sym_EQ_EQ] = ACTIONS(7189), - [anon_sym_BANG_EQ] = ACTIONS(7189), - [anon_sym_GT] = ACTIONS(7187), - [anon_sym_GT_EQ] = ACTIONS(7187), - [anon_sym_LT_EQ] = ACTIONS(7187), - [anon_sym_LT] = ACTIONS(7187), - [anon_sym_LT_LT] = ACTIONS(7187), - [anon_sym_GT_GT] = ACTIONS(7187), - [anon_sym___extension__] = ACTIONS(7189), - [anon_sym___attribute__] = ACTIONS(7862), - [anon_sym___attribute] = ACTIONS(7864), - [anon_sym_LBRACE] = ACTIONS(7189), - [anon_sym_LBRACK] = ACTIONS(7189), - [anon_sym_EQ] = ACTIONS(7187), - [anon_sym_const] = ACTIONS(7187), - [anon_sym_constexpr] = ACTIONS(7189), - [anon_sym_volatile] = ACTIONS(7189), - [anon_sym_restrict] = ACTIONS(7189), - [anon_sym___restrict__] = ACTIONS(7189), - [anon_sym__Atomic] = ACTIONS(7189), - [anon_sym__Noreturn] = ACTIONS(7189), - [anon_sym_noreturn] = ACTIONS(7189), - [anon_sym__Nonnull] = ACTIONS(7189), - [anon_sym_mutable] = ACTIONS(7189), - [anon_sym_constinit] = ACTIONS(7189), - [anon_sym_consteval] = ACTIONS(7189), - [anon_sym_alignas] = ACTIONS(7189), - [anon_sym__Alignas] = ACTIONS(7189), - [anon_sym_QMARK] = ACTIONS(7189), - [anon_sym_STAR_EQ] = ACTIONS(7189), - [anon_sym_SLASH_EQ] = ACTIONS(7189), - [anon_sym_PERCENT_EQ] = ACTIONS(7189), - [anon_sym_PLUS_EQ] = ACTIONS(7189), - [anon_sym_DASH_EQ] = ACTIONS(7189), - [anon_sym_LT_LT_EQ] = ACTIONS(7189), - [anon_sym_GT_GT_EQ] = ACTIONS(7187), - [anon_sym_AMP_EQ] = ACTIONS(7189), - [anon_sym_CARET_EQ] = ACTIONS(7189), - [anon_sym_PIPE_EQ] = ACTIONS(7189), - [anon_sym_and_eq] = ACTIONS(7189), - [anon_sym_or_eq] = ACTIONS(7189), - [anon_sym_xor_eq] = ACTIONS(7189), - [anon_sym_LT_EQ_GT] = ACTIONS(7189), - [anon_sym_or] = ACTIONS(7187), - [anon_sym_and] = ACTIONS(7187), - [anon_sym_bitor] = ACTIONS(7189), - [anon_sym_xor] = ACTIONS(7187), - [anon_sym_bitand] = ACTIONS(7189), - [anon_sym_not_eq] = ACTIONS(7189), - [anon_sym_DASH_DASH] = ACTIONS(7189), - [anon_sym_PLUS_PLUS] = ACTIONS(7189), - [anon_sym_DOT] = ACTIONS(7187), - [anon_sym_DOT_STAR] = ACTIONS(7189), - [anon_sym_DASH_GT] = ACTIONS(7189), + [STATE(2560)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2784), + [sym_ms_pointer_modifier] = STATE(2539), + [sym__abstract_declarator] = STATE(6331), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3513), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2080), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3513), + [aux_sym_pointer_declarator_repeat1] = STATE(2539), + [sym_identifier] = ACTIONS(6861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), + [anon_sym_COMMA] = ACTIONS(6859), + [aux_sym_preproc_if_token2] = ACTIONS(6859), + [aux_sym_preproc_else_token1] = ACTIONS(6859), + [aux_sym_preproc_elif_token1] = ACTIONS(6861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6859), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6861), + [anon_sym_STAR] = ACTIONS(8416), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6859), + [anon_sym_PIPE_PIPE] = ACTIONS(6859), + [anon_sym_AMP_AMP] = ACTIONS(8418), + [anon_sym_PIPE] = ACTIONS(6861), + [anon_sym_CARET] = ACTIONS(6859), + [anon_sym_AMP] = ACTIONS(8420), + [anon_sym_EQ_EQ] = ACTIONS(6859), + [anon_sym_BANG_EQ] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6861), + [anon_sym_GT_EQ] = ACTIONS(6859), + [anon_sym_LT_EQ] = ACTIONS(6861), + [anon_sym_LT] = ACTIONS(6861), + [anon_sym_LT_LT] = ACTIONS(6859), + [anon_sym_GT_GT] = ACTIONS(6859), + [anon_sym___extension__] = ACTIONS(8092), + [sym_ms_restrict_modifier] = ACTIONS(8094), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8094), + [sym_ms_signed_ptr_modifier] = ACTIONS(8094), + [anon_sym__unaligned] = ACTIONS(8096), + [anon_sym___unaligned] = ACTIONS(8096), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8092), + [anon_sym_volatile] = ACTIONS(8092), + [anon_sym_restrict] = ACTIONS(8092), + [anon_sym___restrict__] = ACTIONS(8092), + [anon_sym__Atomic] = ACTIONS(8092), + [anon_sym__Noreturn] = ACTIONS(8092), + [anon_sym_noreturn] = ACTIONS(8092), + [anon_sym__Nonnull] = ACTIONS(8092), + [anon_sym_mutable] = ACTIONS(8092), + [anon_sym_constinit] = ACTIONS(8092), + [anon_sym_consteval] = ACTIONS(8092), + [anon_sym_alignas] = ACTIONS(8100), + [anon_sym__Alignas] = ACTIONS(8100), + [anon_sym_QMARK] = ACTIONS(6859), + [anon_sym_LT_EQ_GT] = ACTIONS(6859), + [anon_sym_or] = ACTIONS(6861), + [anon_sym_and] = ACTIONS(6861), + [anon_sym_bitor] = ACTIONS(6861), + [anon_sym_xor] = ACTIONS(6861), + [anon_sym_bitand] = ACTIONS(6861), + [anon_sym_not_eq] = ACTIONS(6861), + [anon_sym_DASH_DASH] = ACTIONS(6859), + [anon_sym_PLUS_PLUS] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6861), + [anon_sym_DOT_STAR] = ACTIONS(6859), + [anon_sym_DASH_GT] = ACTIONS(6859), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7189), - [anon_sym_override] = ACTIONS(7189), - [anon_sym_GT2] = ACTIONS(7189), - [anon_sym_requires] = ACTIONS(7189), }, - [STATE(2708)] = { - [sym_attribute_specifier] = STATE(3040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7067), - [anon_sym_COMMA] = ACTIONS(7067), - [anon_sym_LPAREN2] = ACTIONS(7067), - [anon_sym_DASH] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7065), - [anon_sym_STAR] = ACTIONS(7065), - [anon_sym_SLASH] = ACTIONS(7065), - [anon_sym_PERCENT] = ACTIONS(7065), - [anon_sym_PIPE_PIPE] = ACTIONS(7067), - [anon_sym_AMP_AMP] = ACTIONS(7067), - [anon_sym_PIPE] = ACTIONS(7065), - [anon_sym_CARET] = ACTIONS(7065), - [anon_sym_AMP] = ACTIONS(7065), - [anon_sym_EQ_EQ] = ACTIONS(7067), - [anon_sym_BANG_EQ] = ACTIONS(7067), - [anon_sym_GT] = ACTIONS(7065), - [anon_sym_GT_EQ] = ACTIONS(7065), - [anon_sym_LT_EQ] = ACTIONS(7065), - [anon_sym_LT] = ACTIONS(7065), - [anon_sym_LT_LT] = ACTIONS(7065), - [anon_sym_GT_GT] = ACTIONS(7065), - [anon_sym___extension__] = ACTIONS(7067), - [anon_sym___attribute__] = ACTIONS(7862), - [anon_sym___attribute] = ACTIONS(7864), - [anon_sym_LBRACE] = ACTIONS(7067), - [anon_sym_LBRACK] = ACTIONS(7067), - [anon_sym_EQ] = ACTIONS(7065), - [anon_sym_const] = ACTIONS(7065), - [anon_sym_constexpr] = ACTIONS(7067), - [anon_sym_volatile] = ACTIONS(7067), - [anon_sym_restrict] = ACTIONS(7067), - [anon_sym___restrict__] = ACTIONS(7067), - [anon_sym__Atomic] = ACTIONS(7067), - [anon_sym__Noreturn] = ACTIONS(7067), - [anon_sym_noreturn] = ACTIONS(7067), - [anon_sym__Nonnull] = ACTIONS(7067), - [anon_sym_mutable] = ACTIONS(7067), - [anon_sym_constinit] = ACTIONS(7067), - [anon_sym_consteval] = ACTIONS(7067), - [anon_sym_alignas] = ACTIONS(7067), - [anon_sym__Alignas] = ACTIONS(7067), - [anon_sym_QMARK] = ACTIONS(7067), - [anon_sym_STAR_EQ] = ACTIONS(7067), - [anon_sym_SLASH_EQ] = ACTIONS(7067), - [anon_sym_PERCENT_EQ] = ACTIONS(7067), - [anon_sym_PLUS_EQ] = ACTIONS(7067), - [anon_sym_DASH_EQ] = ACTIONS(7067), - [anon_sym_LT_LT_EQ] = ACTIONS(7067), - [anon_sym_GT_GT_EQ] = ACTIONS(7065), - [anon_sym_AMP_EQ] = ACTIONS(7067), - [anon_sym_CARET_EQ] = ACTIONS(7067), - [anon_sym_PIPE_EQ] = ACTIONS(7067), - [anon_sym_and_eq] = ACTIONS(7067), - [anon_sym_or_eq] = ACTIONS(7067), - [anon_sym_xor_eq] = ACTIONS(7067), - [anon_sym_LT_EQ_GT] = ACTIONS(7067), - [anon_sym_or] = ACTIONS(7065), - [anon_sym_and] = ACTIONS(7065), - [anon_sym_bitor] = ACTIONS(7067), - [anon_sym_xor] = ACTIONS(7065), - [anon_sym_bitand] = ACTIONS(7067), - [anon_sym_not_eq] = ACTIONS(7067), - [anon_sym_DASH_DASH] = ACTIONS(7067), - [anon_sym_PLUS_PLUS] = ACTIONS(7067), - [anon_sym_DOT] = ACTIONS(7065), - [anon_sym_DOT_STAR] = ACTIONS(7067), - [anon_sym_DASH_GT] = ACTIONS(7067), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7067), - [anon_sym_override] = ACTIONS(7067), - [anon_sym_GT2] = ACTIONS(7067), - [anon_sym_requires] = ACTIONS(7067), + [STATE(2561)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_attributes_end] = STATE(3895), + [sym__function_postfix] = STATE(3655), + [sym_trailing_return_type] = STATE(3076), + [sym_requires_clause] = STATE(3655), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_RPAREN] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym_SEMI] = ACTIONS(7966), + [anon_sym___attribute__] = ACTIONS(6534), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_COLON] = ACTIONS(7968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7966), + [anon_sym_RBRACE] = ACTIONS(7966), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7966), + [anon_sym_or_eq] = ACTIONS(7966), + [anon_sym_xor_eq] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(7970), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7973), + [anon_sym_override] = ACTIONS(7973), + [anon_sym_requires] = ACTIONS(7976), + [anon_sym_COLON_RBRACK] = ACTIONS(7966), }, - [STATE(2709)] = { - [sym_identifier] = ACTIONS(3636), - [aux_sym_preproc_def_token1] = ACTIONS(3636), - [aux_sym_preproc_if_token1] = ACTIONS(3636), - [aux_sym_preproc_if_token2] = ACTIONS(3636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3636), - [aux_sym_preproc_else_token1] = ACTIONS(3636), - [aux_sym_preproc_elif_token1] = ACTIONS(3636), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3636), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3636), - [sym_preproc_directive] = ACTIONS(3636), - [anon_sym_LPAREN2] = ACTIONS(3638), - [anon_sym_TILDE] = ACTIONS(3638), - [anon_sym_STAR] = ACTIONS(3638), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym___extension__] = ACTIONS(3636), - [anon_sym_typedef] = ACTIONS(3636), - [anon_sym_virtual] = ACTIONS(3636), - [anon_sym_extern] = ACTIONS(3636), - [anon_sym___attribute__] = ACTIONS(3636), - [anon_sym___attribute] = ACTIONS(3636), - [anon_sym_using] = ACTIONS(3636), - [anon_sym_COLON_COLON] = ACTIONS(3638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3638), - [anon_sym___declspec] = ACTIONS(3636), - [anon_sym___based] = ACTIONS(3636), - [anon_sym_signed] = ACTIONS(3636), - [anon_sym_unsigned] = ACTIONS(3636), - [anon_sym_long] = ACTIONS(3636), - [anon_sym_short] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_static] = ACTIONS(3636), - [anon_sym_register] = ACTIONS(3636), - [anon_sym_inline] = ACTIONS(3636), - [anon_sym___inline] = ACTIONS(3636), - [anon_sym___inline__] = ACTIONS(3636), - [anon_sym___forceinline] = ACTIONS(3636), - [anon_sym_thread_local] = ACTIONS(3636), - [anon_sym___thread] = ACTIONS(3636), - [anon_sym_const] = ACTIONS(3636), - [anon_sym_constexpr] = ACTIONS(3636), - [anon_sym_volatile] = ACTIONS(3636), - [anon_sym_restrict] = ACTIONS(3636), - [anon_sym___restrict__] = ACTIONS(3636), - [anon_sym__Atomic] = ACTIONS(3636), - [anon_sym__Noreturn] = ACTIONS(3636), - [anon_sym_noreturn] = ACTIONS(3636), - [anon_sym__Nonnull] = ACTIONS(3636), - [anon_sym_mutable] = ACTIONS(3636), - [anon_sym_constinit] = ACTIONS(3636), - [anon_sym_consteval] = ACTIONS(3636), - [anon_sym_alignas] = ACTIONS(3636), - [anon_sym__Alignas] = ACTIONS(3636), - [sym_primitive_type] = ACTIONS(3636), - [anon_sym_enum] = ACTIONS(3636), - [anon_sym_class] = ACTIONS(3636), - [anon_sym_struct] = ACTIONS(3636), - [anon_sym_union] = ACTIONS(3636), - [anon_sym_typename] = ACTIONS(3636), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3636), - [anon_sym_decltype] = ACTIONS(3636), - [anon_sym_explicit] = ACTIONS(3636), - [anon_sym_private] = ACTIONS(3636), - [anon_sym_template] = ACTIONS(3636), - [anon_sym_operator] = ACTIONS(3636), - [anon_sym_friend] = ACTIONS(3636), - [anon_sym_public] = ACTIONS(3636), - [anon_sym_protected] = ACTIONS(3636), - [anon_sym_static_assert] = ACTIONS(3636), - [anon_sym_LBRACK_COLON] = ACTIONS(3638), + [STATE(2562)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6622), + [anon_sym_COMMA] = ACTIONS(6622), + [anon_sym_LPAREN2] = ACTIONS(6622), + [anon_sym_DASH] = ACTIONS(6620), + [anon_sym_PLUS] = ACTIONS(6620), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_PERCENT] = ACTIONS(6620), + [anon_sym_PIPE_PIPE] = ACTIONS(6622), + [anon_sym_AMP_AMP] = ACTIONS(6622), + [anon_sym_PIPE] = ACTIONS(6620), + [anon_sym_CARET] = ACTIONS(6620), + [anon_sym_AMP] = ACTIONS(6620), + [anon_sym_EQ_EQ] = ACTIONS(6622), + [anon_sym_BANG_EQ] = ACTIONS(6622), + [anon_sym_GT] = ACTIONS(6620), + [anon_sym_GT_EQ] = ACTIONS(6622), + [anon_sym_LT_EQ] = ACTIONS(6620), + [anon_sym_LT] = ACTIONS(6620), + [anon_sym_LT_LT] = ACTIONS(6620), + [anon_sym_GT_GT] = ACTIONS(6620), + [anon_sym___extension__] = ACTIONS(6622), + [anon_sym___attribute__] = ACTIONS(6622), + [anon_sym___attribute] = ACTIONS(6620), + [anon_sym_COLON] = ACTIONS(6620), + [anon_sym_COLON_COLON] = ACTIONS(6622), + [anon_sym_LBRACE] = ACTIONS(6622), + [anon_sym_LBRACK] = ACTIONS(6622), + [anon_sym_RBRACK] = ACTIONS(6622), + [anon_sym_EQ] = ACTIONS(6620), + [anon_sym_const] = ACTIONS(6620), + [anon_sym_constexpr] = ACTIONS(6622), + [anon_sym_volatile] = ACTIONS(6622), + [anon_sym_restrict] = ACTIONS(6622), + [anon_sym___restrict__] = ACTIONS(6622), + [anon_sym__Atomic] = ACTIONS(6622), + [anon_sym__Noreturn] = ACTIONS(6622), + [anon_sym_noreturn] = ACTIONS(6622), + [anon_sym__Nonnull] = ACTIONS(6622), + [anon_sym_mutable] = ACTIONS(6622), + [anon_sym_constinit] = ACTIONS(6622), + [anon_sym_consteval] = ACTIONS(6622), + [anon_sym_alignas] = ACTIONS(6622), + [anon_sym__Alignas] = ACTIONS(6622), + [anon_sym_QMARK] = ACTIONS(6622), + [anon_sym_STAR_EQ] = ACTIONS(6622), + [anon_sym_SLASH_EQ] = ACTIONS(6622), + [anon_sym_PERCENT_EQ] = ACTIONS(6622), + [anon_sym_PLUS_EQ] = ACTIONS(6622), + [anon_sym_DASH_EQ] = ACTIONS(6622), + [anon_sym_LT_LT_EQ] = ACTIONS(6622), + [anon_sym_GT_GT_EQ] = ACTIONS(6622), + [anon_sym_AMP_EQ] = ACTIONS(6622), + [anon_sym_CARET_EQ] = ACTIONS(6622), + [anon_sym_PIPE_EQ] = ACTIONS(6622), + [anon_sym_and_eq] = ACTIONS(6622), + [anon_sym_or_eq] = ACTIONS(6622), + [anon_sym_xor_eq] = ACTIONS(6622), + [anon_sym_LT_EQ_GT] = ACTIONS(6622), + [anon_sym_or] = ACTIONS(6620), + [anon_sym_and] = ACTIONS(6620), + [anon_sym_bitor] = ACTIONS(6622), + [anon_sym_xor] = ACTIONS(6620), + [anon_sym_bitand] = ACTIONS(6622), + [anon_sym_not_eq] = ACTIONS(6622), + [anon_sym_DASH_DASH] = ACTIONS(6622), + [anon_sym_PLUS_PLUS] = ACTIONS(6622), + [anon_sym_DOT] = ACTIONS(6620), + [anon_sym_DOT_STAR] = ACTIONS(6622), + [anon_sym_DASH_GT] = ACTIONS(6622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6622), + [anon_sym_decltype] = ACTIONS(6622), + [anon_sym_final] = ACTIONS(6622), + [anon_sym_override] = ACTIONS(6622), + [anon_sym_requires] = ACTIONS(6622), }, - [STATE(2710)] = { - [sym_identifier] = ACTIONS(4160), - [aux_sym_preproc_def_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token2] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), - [aux_sym_preproc_else_token1] = ACTIONS(4160), - [aux_sym_preproc_elif_token1] = ACTIONS(4160), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4160), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4160), - [sym_preproc_directive] = ACTIONS(4160), - [anon_sym_LPAREN2] = ACTIONS(4162), - [anon_sym_TILDE] = ACTIONS(4162), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym___extension__] = ACTIONS(4160), - [anon_sym_typedef] = ACTIONS(4160), - [anon_sym_virtual] = ACTIONS(4160), - [anon_sym_extern] = ACTIONS(4160), - [anon_sym___attribute__] = ACTIONS(4160), - [anon_sym___attribute] = ACTIONS(4160), - [anon_sym_using] = ACTIONS(4160), - [anon_sym_COLON_COLON] = ACTIONS(4162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), - [anon_sym___declspec] = ACTIONS(4160), - [anon_sym___based] = ACTIONS(4160), - [anon_sym_signed] = ACTIONS(4160), - [anon_sym_unsigned] = ACTIONS(4160), - [anon_sym_long] = ACTIONS(4160), - [anon_sym_short] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(4160), - [anon_sym_static] = ACTIONS(4160), - [anon_sym_register] = ACTIONS(4160), - [anon_sym_inline] = ACTIONS(4160), - [anon_sym___inline] = ACTIONS(4160), - [anon_sym___inline__] = ACTIONS(4160), - [anon_sym___forceinline] = ACTIONS(4160), - [anon_sym_thread_local] = ACTIONS(4160), - [anon_sym___thread] = ACTIONS(4160), - [anon_sym_const] = ACTIONS(4160), - [anon_sym_constexpr] = ACTIONS(4160), - [anon_sym_volatile] = ACTIONS(4160), - [anon_sym_restrict] = ACTIONS(4160), - [anon_sym___restrict__] = ACTIONS(4160), - [anon_sym__Atomic] = ACTIONS(4160), - [anon_sym__Noreturn] = ACTIONS(4160), - [anon_sym_noreturn] = ACTIONS(4160), - [anon_sym__Nonnull] = ACTIONS(4160), - [anon_sym_mutable] = ACTIONS(4160), - [anon_sym_constinit] = ACTIONS(4160), - [anon_sym_consteval] = ACTIONS(4160), - [anon_sym_alignas] = ACTIONS(4160), - [anon_sym__Alignas] = ACTIONS(4160), - [sym_primitive_type] = ACTIONS(4160), - [anon_sym_enum] = ACTIONS(4160), - [anon_sym_class] = ACTIONS(4160), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_union] = ACTIONS(4160), - [anon_sym_typename] = ACTIONS(4160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4160), - [anon_sym_decltype] = ACTIONS(4160), - [anon_sym_explicit] = ACTIONS(4160), - [anon_sym_private] = ACTIONS(4160), - [anon_sym_template] = ACTIONS(4160), - [anon_sym_operator] = ACTIONS(4160), - [anon_sym_friend] = ACTIONS(4160), - [anon_sym_public] = ACTIONS(4160), - [anon_sym_protected] = ACTIONS(4160), - [anon_sym_static_assert] = ACTIONS(4160), - [anon_sym_LBRACK_COLON] = ACTIONS(4162), + [STATE(2563)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_attributes_end] = STATE(3896), + [sym__function_postfix] = STATE(3675), + [sym_trailing_return_type] = STATE(3077), + [sym_requires_clause] = STATE(3675), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), + [anon_sym_COMMA] = ACTIONS(8422), + [anon_sym_RPAREN] = ACTIONS(8422), + [anon_sym_LPAREN2] = ACTIONS(8422), + [anon_sym_DASH] = ACTIONS(8424), + [anon_sym_PLUS] = ACTIONS(8424), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_SLASH] = ACTIONS(8424), + [anon_sym_PERCENT] = ACTIONS(8424), + [anon_sym_PIPE_PIPE] = ACTIONS(8422), + [anon_sym_AMP_AMP] = ACTIONS(8422), + [anon_sym_PIPE] = ACTIONS(8424), + [anon_sym_CARET] = ACTIONS(8424), + [anon_sym_AMP] = ACTIONS(8424), + [anon_sym_EQ_EQ] = ACTIONS(8422), + [anon_sym_BANG_EQ] = ACTIONS(8422), + [anon_sym_GT] = ACTIONS(8424), + [anon_sym_GT_EQ] = ACTIONS(8422), + [anon_sym_LT_EQ] = ACTIONS(8424), + [anon_sym_LT] = ACTIONS(8424), + [anon_sym_LT_LT] = ACTIONS(8424), + [anon_sym_GT_GT] = ACTIONS(8424), + [anon_sym_SEMI] = ACTIONS(8422), + [anon_sym___attribute__] = ACTIONS(6534), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_COLON] = ACTIONS(8424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8422), + [anon_sym_RBRACE] = ACTIONS(8422), + [anon_sym_LBRACK] = ACTIONS(8424), + [anon_sym_EQ] = ACTIONS(8424), + [anon_sym_QMARK] = ACTIONS(8422), + [anon_sym_STAR_EQ] = ACTIONS(8422), + [anon_sym_SLASH_EQ] = ACTIONS(8422), + [anon_sym_PERCENT_EQ] = ACTIONS(8422), + [anon_sym_PLUS_EQ] = ACTIONS(8422), + [anon_sym_DASH_EQ] = ACTIONS(8422), + [anon_sym_LT_LT_EQ] = ACTIONS(8422), + [anon_sym_GT_GT_EQ] = ACTIONS(8422), + [anon_sym_AMP_EQ] = ACTIONS(8422), + [anon_sym_CARET_EQ] = ACTIONS(8422), + [anon_sym_PIPE_EQ] = ACTIONS(8422), + [anon_sym_and_eq] = ACTIONS(8422), + [anon_sym_or_eq] = ACTIONS(8422), + [anon_sym_xor_eq] = ACTIONS(8422), + [anon_sym_LT_EQ_GT] = ACTIONS(8422), + [anon_sym_or] = ACTIONS(8424), + [anon_sym_and] = ACTIONS(8424), + [anon_sym_bitor] = ACTIONS(8422), + [anon_sym_xor] = ACTIONS(8424), + [anon_sym_bitand] = ACTIONS(8422), + [anon_sym_not_eq] = ACTIONS(8422), + [anon_sym_DASH_DASH] = ACTIONS(8422), + [anon_sym_PLUS_PLUS] = ACTIONS(8422), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(8424), + [anon_sym_DOT_STAR] = ACTIONS(8422), + [anon_sym_DASH_GT] = ACTIONS(8426), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8458), + [anon_sym_override] = ACTIONS(8458), + [anon_sym_requires] = ACTIONS(8461), + [anon_sym_COLON_RBRACK] = ACTIONS(8422), }, - [STATE(2711)] = { - [sym_identifier] = ACTIONS(8392), - [aux_sym_preproc_def_token1] = ACTIONS(8392), - [aux_sym_preproc_if_token1] = ACTIONS(8392), - [aux_sym_preproc_if_token2] = ACTIONS(8392), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8392), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8392), - [aux_sym_preproc_else_token1] = ACTIONS(8392), - [aux_sym_preproc_elif_token1] = ACTIONS(8392), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8392), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8392), - [sym_preproc_directive] = ACTIONS(8392), - [anon_sym_LPAREN2] = ACTIONS(8394), - [anon_sym_TILDE] = ACTIONS(8394), - [anon_sym_STAR] = ACTIONS(8394), - [anon_sym_AMP_AMP] = ACTIONS(8394), - [anon_sym_AMP] = ACTIONS(8392), - [anon_sym_SEMI] = ACTIONS(8394), - [anon_sym___extension__] = ACTIONS(8392), - [anon_sym_typedef] = ACTIONS(8392), - [anon_sym_virtual] = ACTIONS(8392), - [anon_sym_extern] = ACTIONS(8392), - [anon_sym___attribute__] = ACTIONS(8392), - [anon_sym___attribute] = ACTIONS(8392), - [anon_sym_using] = ACTIONS(8392), - [anon_sym_COLON_COLON] = ACTIONS(8394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8394), - [anon_sym___declspec] = ACTIONS(8392), - [anon_sym___based] = ACTIONS(8392), - [anon_sym_signed] = ACTIONS(8392), - [anon_sym_unsigned] = ACTIONS(8392), - [anon_sym_long] = ACTIONS(8392), - [anon_sym_short] = ACTIONS(8392), - [anon_sym_LBRACK] = ACTIONS(8392), - [anon_sym_static] = ACTIONS(8392), - [anon_sym_register] = ACTIONS(8392), - [anon_sym_inline] = ACTIONS(8392), - [anon_sym___inline] = ACTIONS(8392), - [anon_sym___inline__] = ACTIONS(8392), - [anon_sym___forceinline] = ACTIONS(8392), - [anon_sym_thread_local] = ACTIONS(8392), - [anon_sym___thread] = ACTIONS(8392), - [anon_sym_const] = ACTIONS(8392), - [anon_sym_constexpr] = ACTIONS(8392), - [anon_sym_volatile] = ACTIONS(8392), - [anon_sym_restrict] = ACTIONS(8392), - [anon_sym___restrict__] = ACTIONS(8392), - [anon_sym__Atomic] = ACTIONS(8392), - [anon_sym__Noreturn] = ACTIONS(8392), - [anon_sym_noreturn] = ACTIONS(8392), - [anon_sym__Nonnull] = ACTIONS(8392), - [anon_sym_mutable] = ACTIONS(8392), - [anon_sym_constinit] = ACTIONS(8392), - [anon_sym_consteval] = ACTIONS(8392), - [anon_sym_alignas] = ACTIONS(8392), - [anon_sym__Alignas] = ACTIONS(8392), - [sym_primitive_type] = ACTIONS(8392), - [anon_sym_enum] = ACTIONS(8392), - [anon_sym_class] = ACTIONS(8392), - [anon_sym_struct] = ACTIONS(8392), - [anon_sym_union] = ACTIONS(8392), - [anon_sym_typename] = ACTIONS(8392), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8392), - [anon_sym_decltype] = ACTIONS(8392), - [anon_sym_explicit] = ACTIONS(8392), - [anon_sym_private] = ACTIONS(8392), - [anon_sym_template] = ACTIONS(8392), - [anon_sym_operator] = ACTIONS(8392), - [anon_sym_friend] = ACTIONS(8392), - [anon_sym_public] = ACTIONS(8392), - [anon_sym_protected] = ACTIONS(8392), - [anon_sym_static_assert] = ACTIONS(8392), - [anon_sym_LBRACK_COLON] = ACTIONS(8394), + [STATE(2564)] = { + [sym_catch_clause] = STATE(2536), + [aux_sym_constructor_try_statement_repeat1] = STATE(2536), + [sym_identifier] = ACTIONS(3178), + [aux_sym_preproc_def_token1] = ACTIONS(3178), + [aux_sym_preproc_if_token1] = ACTIONS(3178), + [aux_sym_preproc_if_token2] = ACTIONS(3178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3178), + [aux_sym_preproc_else_token1] = ACTIONS(3178), + [aux_sym_preproc_elif_token1] = ACTIONS(3178), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3178), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3178), + [sym_preproc_directive] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3180), + [anon_sym_TILDE] = ACTIONS(3180), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_AMP_AMP] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym___extension__] = ACTIONS(3178), + [anon_sym_typedef] = ACTIONS(3178), + [anon_sym_virtual] = ACTIONS(3178), + [anon_sym_extern] = ACTIONS(3178), + [anon_sym___attribute__] = ACTIONS(3178), + [anon_sym___attribute] = ACTIONS(3178), + [anon_sym_using] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3180), + [anon_sym___declspec] = ACTIONS(3178), + [anon_sym___based] = ACTIONS(3178), + [anon_sym_signed] = ACTIONS(3178), + [anon_sym_unsigned] = ACTIONS(3178), + [anon_sym_long] = ACTIONS(3178), + [anon_sym_short] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_static] = ACTIONS(3178), + [anon_sym_register] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym___inline] = ACTIONS(3178), + [anon_sym___inline__] = ACTIONS(3178), + [anon_sym___forceinline] = ACTIONS(3178), + [anon_sym_thread_local] = ACTIONS(3178), + [anon_sym___thread] = ACTIONS(3178), + [anon_sym_const] = ACTIONS(3178), + [anon_sym_constexpr] = ACTIONS(3178), + [anon_sym_volatile] = ACTIONS(3178), + [anon_sym_restrict] = ACTIONS(3178), + [anon_sym___restrict__] = ACTIONS(3178), + [anon_sym__Atomic] = ACTIONS(3178), + [anon_sym__Noreturn] = ACTIONS(3178), + [anon_sym_noreturn] = ACTIONS(3178), + [anon_sym__Nonnull] = ACTIONS(3178), + [anon_sym_mutable] = ACTIONS(3178), + [anon_sym_constinit] = ACTIONS(3178), + [anon_sym_consteval] = ACTIONS(3178), + [anon_sym_alignas] = ACTIONS(3178), + [anon_sym__Alignas] = ACTIONS(3178), + [sym_primitive_type] = ACTIONS(3178), + [anon_sym_enum] = ACTIONS(3178), + [anon_sym_class] = ACTIONS(3178), + [anon_sym_struct] = ACTIONS(3178), + [anon_sym_union] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3178), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3178), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_explicit] = ACTIONS(3178), + [anon_sym_private] = ACTIONS(3178), + [anon_sym_template] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_friend] = ACTIONS(3178), + [anon_sym_public] = ACTIONS(3178), + [anon_sym_protected] = ACTIONS(3178), + [anon_sym_static_assert] = ACTIONS(3178), + [anon_sym_catch] = ACTIONS(8438), + [anon_sym_LBRACK_COLON] = ACTIONS(3180), }, - [STATE(2712)] = { - [sym_identifier] = ACTIONS(4164), - [aux_sym_preproc_def_token1] = ACTIONS(4164), - [aux_sym_preproc_if_token1] = ACTIONS(4164), - [aux_sym_preproc_if_token2] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [aux_sym_preproc_else_token1] = ACTIONS(4164), - [aux_sym_preproc_elif_token1] = ACTIONS(4164), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4164), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4164), - [anon_sym_LPAREN2] = ACTIONS(4166), - [anon_sym_TILDE] = ACTIONS(4166), - [anon_sym_STAR] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_AMP] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym___extension__] = ACTIONS(4164), - [anon_sym_typedef] = ACTIONS(4164), - [anon_sym_virtual] = ACTIONS(4164), - [anon_sym_extern] = ACTIONS(4164), - [anon_sym___attribute__] = ACTIONS(4164), - [anon_sym___attribute] = ACTIONS(4164), - [anon_sym_using] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), - [anon_sym___declspec] = ACTIONS(4164), - [anon_sym___based] = ACTIONS(4164), - [anon_sym_signed] = ACTIONS(4164), - [anon_sym_unsigned] = ACTIONS(4164), - [anon_sym_long] = ACTIONS(4164), - [anon_sym_short] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4164), - [anon_sym_static] = ACTIONS(4164), - [anon_sym_register] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym___inline] = ACTIONS(4164), - [anon_sym___inline__] = ACTIONS(4164), - [anon_sym___forceinline] = ACTIONS(4164), - [anon_sym_thread_local] = ACTIONS(4164), - [anon_sym___thread] = ACTIONS(4164), - [anon_sym_const] = ACTIONS(4164), - [anon_sym_constexpr] = ACTIONS(4164), - [anon_sym_volatile] = ACTIONS(4164), - [anon_sym_restrict] = ACTIONS(4164), - [anon_sym___restrict__] = ACTIONS(4164), - [anon_sym__Atomic] = ACTIONS(4164), - [anon_sym__Noreturn] = ACTIONS(4164), - [anon_sym_noreturn] = ACTIONS(4164), - [anon_sym__Nonnull] = ACTIONS(4164), - [anon_sym_mutable] = ACTIONS(4164), - [anon_sym_constinit] = ACTIONS(4164), - [anon_sym_consteval] = ACTIONS(4164), - [anon_sym_alignas] = ACTIONS(4164), - [anon_sym__Alignas] = ACTIONS(4164), - [sym_primitive_type] = ACTIONS(4164), - [anon_sym_enum] = ACTIONS(4164), - [anon_sym_class] = ACTIONS(4164), - [anon_sym_struct] = ACTIONS(4164), - [anon_sym_union] = ACTIONS(4164), - [anon_sym_typename] = ACTIONS(4164), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4164), - [anon_sym_decltype] = ACTIONS(4164), - [anon_sym_explicit] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_template] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_friend] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_static_assert] = ACTIONS(4164), - [anon_sym_LBRACK_COLON] = ACTIONS(4166), + [STATE(2565)] = { + [sym_string_literal] = STATE(2556), + [sym_raw_string_literal] = STATE(2556), + [aux_sym_concatenated_string_repeat1] = STATE(2556), + [sym_identifier] = ACTIONS(8464), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8466), + [anon_sym_COMMA] = ACTIONS(8466), + [anon_sym_RPAREN] = ACTIONS(8466), + [aux_sym_preproc_if_token2] = ACTIONS(8466), + [aux_sym_preproc_else_token1] = ACTIONS(8466), + [aux_sym_preproc_elif_token1] = ACTIONS(8468), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8466), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8466), + [anon_sym_LPAREN2] = ACTIONS(8466), + [anon_sym_DASH] = ACTIONS(8468), + [anon_sym_PLUS] = ACTIONS(8468), + [anon_sym_STAR] = ACTIONS(8468), + [anon_sym_SLASH] = ACTIONS(8468), + [anon_sym_PERCENT] = ACTIONS(8468), + [anon_sym_PIPE_PIPE] = ACTIONS(8466), + [anon_sym_AMP_AMP] = ACTIONS(8466), + [anon_sym_PIPE] = ACTIONS(8468), + [anon_sym_CARET] = ACTIONS(8468), + [anon_sym_AMP] = ACTIONS(8468), + [anon_sym_EQ_EQ] = ACTIONS(8466), + [anon_sym_BANG_EQ] = ACTIONS(8466), + [anon_sym_GT] = ACTIONS(8468), + [anon_sym_GT_EQ] = ACTIONS(8466), + [anon_sym_LT_EQ] = ACTIONS(8468), + [anon_sym_LT] = ACTIONS(8468), + [anon_sym_LT_LT] = ACTIONS(8468), + [anon_sym_GT_GT] = ACTIONS(8468), + [anon_sym_SEMI] = ACTIONS(8466), + [anon_sym_COLON] = ACTIONS(8468), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8466), + [anon_sym_RBRACE] = ACTIONS(8466), + [anon_sym_LBRACK] = ACTIONS(8466), + [anon_sym_EQ] = ACTIONS(8468), + [anon_sym_QMARK] = ACTIONS(8466), + [anon_sym_STAR_EQ] = ACTIONS(8466), + [anon_sym_SLASH_EQ] = ACTIONS(8466), + [anon_sym_PERCENT_EQ] = ACTIONS(8466), + [anon_sym_PLUS_EQ] = ACTIONS(8466), + [anon_sym_DASH_EQ] = ACTIONS(8466), + [anon_sym_LT_LT_EQ] = ACTIONS(8466), + [anon_sym_GT_GT_EQ] = ACTIONS(8466), + [anon_sym_AMP_EQ] = ACTIONS(8466), + [anon_sym_CARET_EQ] = ACTIONS(8466), + [anon_sym_PIPE_EQ] = ACTIONS(8466), + [anon_sym_and_eq] = ACTIONS(8468), + [anon_sym_or_eq] = ACTIONS(8468), + [anon_sym_xor_eq] = ACTIONS(8468), + [anon_sym_LT_EQ_GT] = ACTIONS(8466), + [anon_sym_or] = ACTIONS(8468), + [anon_sym_and] = ACTIONS(8468), + [anon_sym_bitor] = ACTIONS(8468), + [anon_sym_xor] = ACTIONS(8468), + [anon_sym_bitand] = ACTIONS(8468), + [anon_sym_not_eq] = ACTIONS(8468), + [anon_sym_DASH_DASH] = ACTIONS(8466), + [anon_sym_PLUS_PLUS] = ACTIONS(8466), + [anon_sym_DOT] = ACTIONS(8468), + [anon_sym_DOT_STAR] = ACTIONS(8466), + [anon_sym_DASH_GT] = ACTIONS(8466), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_COLON_RBRACK] = ACTIONS(8466), + [sym_literal_suffix] = ACTIONS(8468), }, - [STATE(2713)] = { - [sym_identifier] = ACTIONS(4168), - [aux_sym_preproc_def_token1] = ACTIONS(4168), - [aux_sym_preproc_if_token1] = ACTIONS(4168), - [aux_sym_preproc_if_token2] = ACTIONS(4168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4168), - [aux_sym_preproc_else_token1] = ACTIONS(4168), - [aux_sym_preproc_elif_token1] = ACTIONS(4168), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4168), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4168), - [sym_preproc_directive] = ACTIONS(4168), - [anon_sym_LPAREN2] = ACTIONS(4170), - [anon_sym_TILDE] = ACTIONS(4170), - [anon_sym_STAR] = ACTIONS(4170), - [anon_sym_AMP_AMP] = ACTIONS(4170), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_SEMI] = ACTIONS(4170), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4168), - [anon_sym_virtual] = ACTIONS(4168), - [anon_sym_extern] = ACTIONS(4168), - [anon_sym___attribute__] = ACTIONS(4168), - [anon_sym___attribute] = ACTIONS(4168), - [anon_sym_using] = ACTIONS(4168), - [anon_sym_COLON_COLON] = ACTIONS(4170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4170), - [anon_sym___declspec] = ACTIONS(4168), - [anon_sym___based] = ACTIONS(4168), - [anon_sym_signed] = ACTIONS(4168), - [anon_sym_unsigned] = ACTIONS(4168), - [anon_sym_long] = ACTIONS(4168), - [anon_sym_short] = ACTIONS(4168), - [anon_sym_LBRACK] = ACTIONS(4168), - [anon_sym_static] = ACTIONS(4168), - [anon_sym_register] = ACTIONS(4168), - [anon_sym_inline] = ACTIONS(4168), - [anon_sym___inline] = ACTIONS(4168), - [anon_sym___inline__] = ACTIONS(4168), - [anon_sym___forceinline] = ACTIONS(4168), - [anon_sym_thread_local] = ACTIONS(4168), - [anon_sym___thread] = ACTIONS(4168), - [anon_sym_const] = ACTIONS(4168), - [anon_sym_constexpr] = ACTIONS(4168), - [anon_sym_volatile] = ACTIONS(4168), - [anon_sym_restrict] = ACTIONS(4168), - [anon_sym___restrict__] = ACTIONS(4168), - [anon_sym__Atomic] = ACTIONS(4168), - [anon_sym__Noreturn] = ACTIONS(4168), - [anon_sym_noreturn] = ACTIONS(4168), - [anon_sym__Nonnull] = ACTIONS(4168), - [anon_sym_mutable] = ACTIONS(4168), - [anon_sym_constinit] = ACTIONS(4168), - [anon_sym_consteval] = ACTIONS(4168), - [anon_sym_alignas] = ACTIONS(4168), - [anon_sym__Alignas] = ACTIONS(4168), - [sym_primitive_type] = ACTIONS(4168), - [anon_sym_enum] = ACTIONS(4168), - [anon_sym_class] = ACTIONS(4168), - [anon_sym_struct] = ACTIONS(4168), - [anon_sym_union] = ACTIONS(4168), - [anon_sym_typename] = ACTIONS(4168), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4168), - [anon_sym_decltype] = ACTIONS(4168), - [anon_sym_explicit] = ACTIONS(4168), - [anon_sym_private] = ACTIONS(4168), - [anon_sym_template] = ACTIONS(4168), - [anon_sym_operator] = ACTIONS(4168), - [anon_sym_friend] = ACTIONS(4168), - [anon_sym_public] = ACTIONS(4168), - [anon_sym_protected] = ACTIONS(4168), - [anon_sym_static_assert] = ACTIONS(4168), - [anon_sym_LBRACK_COLON] = ACTIONS(4170), - }, - [STATE(2714)] = { - [sym_identifier] = ACTIONS(4176), - [aux_sym_preproc_def_token1] = ACTIONS(4176), - [aux_sym_preproc_if_token1] = ACTIONS(4176), - [aux_sym_preproc_if_token2] = ACTIONS(4176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4176), - [aux_sym_preproc_else_token1] = ACTIONS(4176), - [aux_sym_preproc_elif_token1] = ACTIONS(4176), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4176), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4176), - [sym_preproc_directive] = ACTIONS(4176), - [anon_sym_LPAREN2] = ACTIONS(4178), - [anon_sym_TILDE] = ACTIONS(4178), - [anon_sym_STAR] = ACTIONS(4178), - [anon_sym_AMP_AMP] = ACTIONS(4178), - [anon_sym_AMP] = ACTIONS(4176), - [anon_sym_SEMI] = ACTIONS(4178), - [anon_sym___extension__] = ACTIONS(4176), - [anon_sym_typedef] = ACTIONS(4176), - [anon_sym_virtual] = ACTIONS(4176), - [anon_sym_extern] = ACTIONS(4176), - [anon_sym___attribute__] = ACTIONS(4176), - [anon_sym___attribute] = ACTIONS(4176), - [anon_sym_using] = ACTIONS(4176), - [anon_sym_COLON_COLON] = ACTIONS(4178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4178), - [anon_sym___declspec] = ACTIONS(4176), - [anon_sym___based] = ACTIONS(4176), - [anon_sym_signed] = ACTIONS(4176), - [anon_sym_unsigned] = ACTIONS(4176), - [anon_sym_long] = ACTIONS(4176), - [anon_sym_short] = ACTIONS(4176), - [anon_sym_LBRACK] = ACTIONS(4176), - [anon_sym_static] = ACTIONS(4176), - [anon_sym_register] = ACTIONS(4176), - [anon_sym_inline] = ACTIONS(4176), - [anon_sym___inline] = ACTIONS(4176), - [anon_sym___inline__] = ACTIONS(4176), - [anon_sym___forceinline] = ACTIONS(4176), - [anon_sym_thread_local] = ACTIONS(4176), - [anon_sym___thread] = ACTIONS(4176), - [anon_sym_const] = ACTIONS(4176), - [anon_sym_constexpr] = ACTIONS(4176), - [anon_sym_volatile] = ACTIONS(4176), - [anon_sym_restrict] = ACTIONS(4176), - [anon_sym___restrict__] = ACTIONS(4176), - [anon_sym__Atomic] = ACTIONS(4176), - [anon_sym__Noreturn] = ACTIONS(4176), - [anon_sym_noreturn] = ACTIONS(4176), - [anon_sym__Nonnull] = ACTIONS(4176), - [anon_sym_mutable] = ACTIONS(4176), - [anon_sym_constinit] = ACTIONS(4176), - [anon_sym_consteval] = ACTIONS(4176), - [anon_sym_alignas] = ACTIONS(4176), - [anon_sym__Alignas] = ACTIONS(4176), - [sym_primitive_type] = ACTIONS(4176), - [anon_sym_enum] = ACTIONS(4176), - [anon_sym_class] = ACTIONS(4176), - [anon_sym_struct] = ACTIONS(4176), - [anon_sym_union] = ACTIONS(4176), - [anon_sym_typename] = ACTIONS(4176), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4176), - [anon_sym_decltype] = ACTIONS(4176), - [anon_sym_explicit] = ACTIONS(4176), - [anon_sym_private] = ACTIONS(4176), - [anon_sym_template] = ACTIONS(4176), - [anon_sym_operator] = ACTIONS(4176), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(4176), - [anon_sym_protected] = ACTIONS(4176), - [anon_sym_static_assert] = ACTIONS(4176), - [anon_sym_LBRACK_COLON] = ACTIONS(4178), - }, - [STATE(2715)] = { - [sym_identifier] = ACTIONS(4184), - [aux_sym_preproc_def_token1] = ACTIONS(4184), - [aux_sym_preproc_if_token1] = ACTIONS(4184), - [aux_sym_preproc_if_token2] = ACTIONS(4184), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4184), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4184), - [aux_sym_preproc_else_token1] = ACTIONS(4184), - [aux_sym_preproc_elif_token1] = ACTIONS(4184), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4184), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4184), - [sym_preproc_directive] = ACTIONS(4184), - [anon_sym_LPAREN2] = ACTIONS(4186), - [anon_sym_TILDE] = ACTIONS(4186), - [anon_sym_STAR] = ACTIONS(4186), - [anon_sym_AMP_AMP] = ACTIONS(4186), - [anon_sym_AMP] = ACTIONS(4184), - [anon_sym_SEMI] = ACTIONS(4186), - [anon_sym___extension__] = ACTIONS(4184), - [anon_sym_typedef] = ACTIONS(4184), - [anon_sym_virtual] = ACTIONS(4184), - [anon_sym_extern] = ACTIONS(4184), - [anon_sym___attribute__] = ACTIONS(4184), - [anon_sym___attribute] = ACTIONS(4184), - [anon_sym_using] = ACTIONS(4184), - [anon_sym_COLON_COLON] = ACTIONS(4186), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4186), - [anon_sym___declspec] = ACTIONS(4184), - [anon_sym___based] = ACTIONS(4184), - [anon_sym_signed] = ACTIONS(4184), - [anon_sym_unsigned] = ACTIONS(4184), - [anon_sym_long] = ACTIONS(4184), - [anon_sym_short] = ACTIONS(4184), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_static] = ACTIONS(4184), - [anon_sym_register] = ACTIONS(4184), - [anon_sym_inline] = ACTIONS(4184), - [anon_sym___inline] = ACTIONS(4184), - [anon_sym___inline__] = ACTIONS(4184), - [anon_sym___forceinline] = ACTIONS(4184), - [anon_sym_thread_local] = ACTIONS(4184), - [anon_sym___thread] = ACTIONS(4184), - [anon_sym_const] = ACTIONS(4184), - [anon_sym_constexpr] = ACTIONS(4184), - [anon_sym_volatile] = ACTIONS(4184), - [anon_sym_restrict] = ACTIONS(4184), - [anon_sym___restrict__] = ACTIONS(4184), - [anon_sym__Atomic] = ACTIONS(4184), - [anon_sym__Noreturn] = ACTIONS(4184), - [anon_sym_noreturn] = ACTIONS(4184), - [anon_sym__Nonnull] = ACTIONS(4184), - [anon_sym_mutable] = ACTIONS(4184), - [anon_sym_constinit] = ACTIONS(4184), - [anon_sym_consteval] = ACTIONS(4184), - [anon_sym_alignas] = ACTIONS(4184), - [anon_sym__Alignas] = ACTIONS(4184), - [sym_primitive_type] = ACTIONS(4184), - [anon_sym_enum] = ACTIONS(4184), - [anon_sym_class] = ACTIONS(4184), - [anon_sym_struct] = ACTIONS(4184), - [anon_sym_union] = ACTIONS(4184), - [anon_sym_typename] = ACTIONS(4184), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4184), - [anon_sym_decltype] = ACTIONS(4184), - [anon_sym_explicit] = ACTIONS(4184), - [anon_sym_private] = ACTIONS(4184), - [anon_sym_template] = ACTIONS(4184), - [anon_sym_operator] = ACTIONS(4184), - [anon_sym_friend] = ACTIONS(4184), - [anon_sym_public] = ACTIONS(4184), - [anon_sym_protected] = ACTIONS(4184), - [anon_sym_static_assert] = ACTIONS(4184), - [anon_sym_LBRACK_COLON] = ACTIONS(4186), - }, - [STATE(2716)] = { - [sym_identifier] = ACTIONS(3680), - [aux_sym_preproc_def_token1] = ACTIONS(3680), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_if_token2] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3680), - [aux_sym_preproc_else_token1] = ACTIONS(3680), - [aux_sym_preproc_elif_token1] = ACTIONS(3680), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3680), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3680), - [sym_preproc_directive] = ACTIONS(3680), - [anon_sym_LPAREN2] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(3682), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym___extension__] = ACTIONS(3680), - [anon_sym_typedef] = ACTIONS(3680), - [anon_sym_virtual] = ACTIONS(3680), - [anon_sym_extern] = ACTIONS(3680), - [anon_sym___attribute__] = ACTIONS(3680), - [anon_sym___attribute] = ACTIONS(3680), - [anon_sym_using] = ACTIONS(3680), - [anon_sym_COLON_COLON] = ACTIONS(3682), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3682), - [anon_sym___declspec] = ACTIONS(3680), - [anon_sym___based] = ACTIONS(3680), - [anon_sym_signed] = ACTIONS(3680), - [anon_sym_unsigned] = ACTIONS(3680), - [anon_sym_long] = ACTIONS(3680), - [anon_sym_short] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3680), - [anon_sym_static] = ACTIONS(3680), - [anon_sym_register] = ACTIONS(3680), - [anon_sym_inline] = ACTIONS(3680), - [anon_sym___inline] = ACTIONS(3680), - [anon_sym___inline__] = ACTIONS(3680), - [anon_sym___forceinline] = ACTIONS(3680), - [anon_sym_thread_local] = ACTIONS(3680), - [anon_sym___thread] = ACTIONS(3680), - [anon_sym_const] = ACTIONS(3680), - [anon_sym_constexpr] = ACTIONS(3680), - [anon_sym_volatile] = ACTIONS(3680), - [anon_sym_restrict] = ACTIONS(3680), - [anon_sym___restrict__] = ACTIONS(3680), - [anon_sym__Atomic] = ACTIONS(3680), - [anon_sym__Noreturn] = ACTIONS(3680), - [anon_sym_noreturn] = ACTIONS(3680), - [anon_sym__Nonnull] = ACTIONS(3680), - [anon_sym_mutable] = ACTIONS(3680), - [anon_sym_constinit] = ACTIONS(3680), - [anon_sym_consteval] = ACTIONS(3680), - [anon_sym_alignas] = ACTIONS(3680), - [anon_sym__Alignas] = ACTIONS(3680), - [sym_primitive_type] = ACTIONS(3680), - [anon_sym_enum] = ACTIONS(3680), - [anon_sym_class] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(3680), - [anon_sym_union] = ACTIONS(3680), - [anon_sym_typename] = ACTIONS(3680), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3680), - [anon_sym_decltype] = ACTIONS(3680), - [anon_sym_explicit] = ACTIONS(3680), - [anon_sym_private] = ACTIONS(3680), - [anon_sym_template] = ACTIONS(3680), - [anon_sym_operator] = ACTIONS(3680), - [anon_sym_friend] = ACTIONS(3680), - [anon_sym_public] = ACTIONS(3680), - [anon_sym_protected] = ACTIONS(3680), - [anon_sym_static_assert] = ACTIONS(3680), - [anon_sym_LBRACK_COLON] = ACTIONS(3682), - }, - [STATE(2717)] = { - [sym_attribute_specifier] = STATE(3017), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), - [anon_sym_COMMA] = ACTIONS(7059), - [anon_sym_LPAREN2] = ACTIONS(7059), - [anon_sym_DASH] = ACTIONS(7057), - [anon_sym_PLUS] = ACTIONS(7057), - [anon_sym_STAR] = ACTIONS(7057), - [anon_sym_SLASH] = ACTIONS(7057), - [anon_sym_PERCENT] = ACTIONS(7057), - [anon_sym_PIPE_PIPE] = ACTIONS(7059), - [anon_sym_AMP_AMP] = ACTIONS(7059), - [anon_sym_PIPE] = ACTIONS(7057), - [anon_sym_CARET] = ACTIONS(7057), - [anon_sym_AMP] = ACTIONS(7057), - [anon_sym_EQ_EQ] = ACTIONS(7059), - [anon_sym_BANG_EQ] = ACTIONS(7059), - [anon_sym_GT] = ACTIONS(7057), - [anon_sym_GT_EQ] = ACTIONS(7057), - [anon_sym_LT_EQ] = ACTIONS(7057), - [anon_sym_LT] = ACTIONS(7057), - [anon_sym_LT_LT] = ACTIONS(7057), - [anon_sym_GT_GT] = ACTIONS(7057), - [anon_sym___extension__] = ACTIONS(7059), - [anon_sym___attribute__] = ACTIONS(7862), - [anon_sym___attribute] = ACTIONS(7864), - [anon_sym_LBRACE] = ACTIONS(7059), - [anon_sym_LBRACK] = ACTIONS(7059), - [anon_sym_EQ] = ACTIONS(7057), - [anon_sym_const] = ACTIONS(7057), - [anon_sym_constexpr] = ACTIONS(7059), - [anon_sym_volatile] = ACTIONS(7059), - [anon_sym_restrict] = ACTIONS(7059), - [anon_sym___restrict__] = ACTIONS(7059), - [anon_sym__Atomic] = ACTIONS(7059), - [anon_sym__Noreturn] = ACTIONS(7059), - [anon_sym_noreturn] = ACTIONS(7059), - [anon_sym__Nonnull] = ACTIONS(7059), - [anon_sym_mutable] = ACTIONS(7059), - [anon_sym_constinit] = ACTIONS(7059), - [anon_sym_consteval] = ACTIONS(7059), - [anon_sym_alignas] = ACTIONS(7059), - [anon_sym__Alignas] = ACTIONS(7059), - [anon_sym_QMARK] = ACTIONS(7059), - [anon_sym_STAR_EQ] = ACTIONS(7059), - [anon_sym_SLASH_EQ] = ACTIONS(7059), - [anon_sym_PERCENT_EQ] = ACTIONS(7059), - [anon_sym_PLUS_EQ] = ACTIONS(7059), - [anon_sym_DASH_EQ] = ACTIONS(7059), - [anon_sym_LT_LT_EQ] = ACTIONS(7059), - [anon_sym_GT_GT_EQ] = ACTIONS(7057), - [anon_sym_AMP_EQ] = ACTIONS(7059), - [anon_sym_CARET_EQ] = ACTIONS(7059), - [anon_sym_PIPE_EQ] = ACTIONS(7059), - [anon_sym_and_eq] = ACTIONS(7059), - [anon_sym_or_eq] = ACTIONS(7059), - [anon_sym_xor_eq] = ACTIONS(7059), - [anon_sym_LT_EQ_GT] = ACTIONS(7059), - [anon_sym_or] = ACTIONS(7057), - [anon_sym_and] = ACTIONS(7057), - [anon_sym_bitor] = ACTIONS(7059), - [anon_sym_xor] = ACTIONS(7057), - [anon_sym_bitand] = ACTIONS(7059), - [anon_sym_not_eq] = ACTIONS(7059), - [anon_sym_DASH_DASH] = ACTIONS(7059), - [anon_sym_PLUS_PLUS] = ACTIONS(7059), - [anon_sym_DOT] = ACTIONS(7057), - [anon_sym_DOT_STAR] = ACTIONS(7059), - [anon_sym_DASH_GT] = ACTIONS(7059), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7059), - [anon_sym_override] = ACTIONS(7059), - [anon_sym_GT2] = ACTIONS(7059), - [anon_sym_requires] = ACTIONS(7059), - }, - [STATE(2718)] = { - [sym_identifier] = ACTIONS(3890), - [aux_sym_preproc_def_token1] = ACTIONS(3890), - [aux_sym_preproc_if_token1] = ACTIONS(3890), - [aux_sym_preproc_if_token2] = ACTIONS(3890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3890), - [aux_sym_preproc_else_token1] = ACTIONS(3890), - [aux_sym_preproc_elif_token1] = ACTIONS(3890), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3890), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3890), - [sym_preproc_directive] = ACTIONS(3890), - [anon_sym_LPAREN2] = ACTIONS(3892), - [anon_sym_TILDE] = ACTIONS(3892), - [anon_sym_STAR] = ACTIONS(3892), - [anon_sym_AMP_AMP] = ACTIONS(3892), - [anon_sym_AMP] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3892), - [anon_sym___extension__] = ACTIONS(3890), - [anon_sym_typedef] = ACTIONS(3890), - [anon_sym_virtual] = ACTIONS(3890), - [anon_sym_extern] = ACTIONS(3890), - [anon_sym___attribute__] = ACTIONS(3890), - [anon_sym___attribute] = ACTIONS(3890), - [anon_sym_using] = ACTIONS(3890), - [anon_sym_COLON_COLON] = ACTIONS(3892), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3892), - [anon_sym___declspec] = ACTIONS(3890), - [anon_sym___based] = ACTIONS(3890), - [anon_sym_signed] = ACTIONS(3890), - [anon_sym_unsigned] = ACTIONS(3890), - [anon_sym_long] = ACTIONS(3890), - [anon_sym_short] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_static] = ACTIONS(3890), - [anon_sym_register] = ACTIONS(3890), - [anon_sym_inline] = ACTIONS(3890), - [anon_sym___inline] = ACTIONS(3890), - [anon_sym___inline__] = ACTIONS(3890), - [anon_sym___forceinline] = ACTIONS(3890), - [anon_sym_thread_local] = ACTIONS(3890), - [anon_sym___thread] = ACTIONS(3890), - [anon_sym_const] = ACTIONS(3890), - [anon_sym_constexpr] = ACTIONS(3890), - [anon_sym_volatile] = ACTIONS(3890), - [anon_sym_restrict] = ACTIONS(3890), - [anon_sym___restrict__] = ACTIONS(3890), - [anon_sym__Atomic] = ACTIONS(3890), - [anon_sym__Noreturn] = ACTIONS(3890), - [anon_sym_noreturn] = ACTIONS(3890), - [anon_sym__Nonnull] = ACTIONS(3890), - [anon_sym_mutable] = ACTIONS(3890), - [anon_sym_constinit] = ACTIONS(3890), - [anon_sym_consteval] = ACTIONS(3890), - [anon_sym_alignas] = ACTIONS(3890), - [anon_sym__Alignas] = ACTIONS(3890), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_enum] = ACTIONS(3890), - [anon_sym_class] = ACTIONS(3890), - [anon_sym_struct] = ACTIONS(3890), - [anon_sym_union] = ACTIONS(3890), - [anon_sym_typename] = ACTIONS(3890), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3890), - [anon_sym_decltype] = ACTIONS(3890), - [anon_sym_explicit] = ACTIONS(3890), - [anon_sym_private] = ACTIONS(3890), - [anon_sym_template] = ACTIONS(3890), - [anon_sym_operator] = ACTIONS(3890), - [anon_sym_friend] = ACTIONS(3890), - [anon_sym_public] = ACTIONS(3890), - [anon_sym_protected] = ACTIONS(3890), - [anon_sym_static_assert] = ACTIONS(3890), - [anon_sym_LBRACK_COLON] = ACTIONS(3892), - }, - [STATE(2719)] = { - [sym_identifier] = ACTIONS(4192), - [aux_sym_preproc_def_token1] = ACTIONS(4192), - [aux_sym_preproc_if_token1] = ACTIONS(4192), - [aux_sym_preproc_if_token2] = ACTIONS(4192), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4192), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4192), - [aux_sym_preproc_else_token1] = ACTIONS(4192), - [aux_sym_preproc_elif_token1] = ACTIONS(4192), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4192), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4192), - [sym_preproc_directive] = ACTIONS(4192), - [anon_sym_LPAREN2] = ACTIONS(4194), - [anon_sym_TILDE] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [anon_sym_AMP_AMP] = ACTIONS(4194), - [anon_sym_AMP] = ACTIONS(4192), - [anon_sym_SEMI] = ACTIONS(4194), - [anon_sym___extension__] = ACTIONS(4192), - [anon_sym_typedef] = ACTIONS(4192), - [anon_sym_virtual] = ACTIONS(4192), - [anon_sym_extern] = ACTIONS(4192), - [anon_sym___attribute__] = ACTIONS(4192), - [anon_sym___attribute] = ACTIONS(4192), - [anon_sym_using] = ACTIONS(4192), - [anon_sym_COLON_COLON] = ACTIONS(4194), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), - [anon_sym___declspec] = ACTIONS(4192), - [anon_sym___based] = ACTIONS(4192), - [anon_sym_signed] = ACTIONS(4192), - [anon_sym_unsigned] = ACTIONS(4192), - [anon_sym_long] = ACTIONS(4192), - [anon_sym_short] = ACTIONS(4192), - [anon_sym_LBRACK] = ACTIONS(4192), - [anon_sym_static] = ACTIONS(4192), - [anon_sym_register] = ACTIONS(4192), - [anon_sym_inline] = ACTIONS(4192), - [anon_sym___inline] = ACTIONS(4192), - [anon_sym___inline__] = ACTIONS(4192), - [anon_sym___forceinline] = ACTIONS(4192), - [anon_sym_thread_local] = ACTIONS(4192), - [anon_sym___thread] = ACTIONS(4192), - [anon_sym_const] = ACTIONS(4192), - [anon_sym_constexpr] = ACTIONS(4192), - [anon_sym_volatile] = ACTIONS(4192), - [anon_sym_restrict] = ACTIONS(4192), - [anon_sym___restrict__] = ACTIONS(4192), - [anon_sym__Atomic] = ACTIONS(4192), - [anon_sym__Noreturn] = ACTIONS(4192), - [anon_sym_noreturn] = ACTIONS(4192), - [anon_sym__Nonnull] = ACTIONS(4192), - [anon_sym_mutable] = ACTIONS(4192), - [anon_sym_constinit] = ACTIONS(4192), - [anon_sym_consteval] = ACTIONS(4192), - [anon_sym_alignas] = ACTIONS(4192), - [anon_sym__Alignas] = ACTIONS(4192), - [sym_primitive_type] = ACTIONS(4192), - [anon_sym_enum] = ACTIONS(4192), - [anon_sym_class] = ACTIONS(4192), - [anon_sym_struct] = ACTIONS(4192), - [anon_sym_union] = ACTIONS(4192), - [anon_sym_typename] = ACTIONS(4192), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4192), - [anon_sym_decltype] = ACTIONS(4192), - [anon_sym_explicit] = ACTIONS(4192), - [anon_sym_private] = ACTIONS(4192), - [anon_sym_template] = ACTIONS(4192), - [anon_sym_operator] = ACTIONS(4192), - [anon_sym_friend] = ACTIONS(4192), - [anon_sym_public] = ACTIONS(4192), - [anon_sym_protected] = ACTIONS(4192), - [anon_sym_static_assert] = ACTIONS(4192), - [anon_sym_LBRACK_COLON] = ACTIONS(4194), - }, - [STATE(2720)] = { - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token2] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [aux_sym_preproc_else_token1] = ACTIONS(3630), - [aux_sym_preproc_elif_token1] = ACTIONS(3630), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym___attribute] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym__Nonnull] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym__Alignas] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_private] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_friend] = ACTIONS(3630), - [anon_sym_public] = ACTIONS(3630), - [anon_sym_protected] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), - [anon_sym_LBRACK_COLON] = ACTIONS(3632), - }, - [STATE(2721)] = { - [sym_ms_based_modifier] = STATE(10656), - [sym_ms_unaligned_ptr_modifier] = STATE(6570), - [sym_ms_pointer_modifier] = STATE(6287), - [sym__declarator] = STATE(8646), - [sym__abstract_declarator] = STATE(8923), - [sym_parenthesized_declarator] = STATE(8469), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_function_declarator] = STATE(8469), - [sym_abstract_function_declarator] = STATE(8389), - [sym_array_declarator] = STATE(8469), - [sym_abstract_array_declarator] = STATE(8389), - [sym_type_qualifier] = STATE(3659), - [sym_alignas_qualifier] = STATE(7436), - [sym_parameter_list] = STATE(5185), - [sym_decltype] = STATE(10976), - [sym_reference_declarator] = STATE(8469), - [sym_abstract_reference_declarator] = STATE(8389), - [sym_structured_binding_declarator] = STATE(8469), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7878), - [sym_qualified_identifier] = STATE(8469), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__type_definition_type_repeat1] = STATE(3659), - [aux_sym_pointer_declarator_repeat1] = STATE(6287), - [sym_identifier] = ACTIONS(8195), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(5301), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(8307), - [anon_sym_AMP_AMP] = ACTIONS(8309), - [anon_sym_AMP] = ACTIONS(8311), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(6495), - [anon_sym___attribute] = ACTIONS(6495), - [anon_sym_COLON_COLON] = ACTIONS(8203), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(2933), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(2933), - [sym_ms_signed_ptr_modifier] = ACTIONS(2933), - [anon_sym__unaligned] = ACTIONS(2935), - [anon_sym___unaligned] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(5311), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym__Nonnull] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2939), - [anon_sym__Alignas] = ACTIONS(2939), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_GT2] = ACTIONS(6497), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), - }, - [STATE(2722)] = { - [sym__declaration_modifiers] = STATE(5027), - [sym_attribute_specifier] = STATE(5027), - [sym_attribute_declaration] = STATE(5027), - [sym_ms_declspec_modifier] = STATE(5027), - [sym_storage_class_specifier] = STATE(5027), - [sym_type_qualifier] = STATE(5027), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3936), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8579), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(5044), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(5027), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(6091), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(8293), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(5313), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(2723)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7197), - [anon_sym_COMMA] = ACTIONS(7197), - [anon_sym_RPAREN] = ACTIONS(7197), - [anon_sym_LPAREN2] = ACTIONS(7197), - [anon_sym_DASH] = ACTIONS(7195), - [anon_sym_PLUS] = ACTIONS(7195), - [anon_sym_STAR] = ACTIONS(7195), - [anon_sym_SLASH] = ACTIONS(7195), - [anon_sym_PERCENT] = ACTIONS(7195), - [anon_sym_PIPE_PIPE] = ACTIONS(7197), - [anon_sym_AMP_AMP] = ACTIONS(7197), - [anon_sym_PIPE] = ACTIONS(7195), - [anon_sym_CARET] = ACTIONS(7195), - [anon_sym_AMP] = ACTIONS(7195), - [anon_sym_EQ_EQ] = ACTIONS(7197), - [anon_sym_BANG_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_LT_EQ] = ACTIONS(7195), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_LT] = ACTIONS(7195), - [anon_sym_GT_GT] = ACTIONS(7195), - [anon_sym___extension__] = ACTIONS(7197), - [anon_sym___attribute__] = ACTIONS(7197), - [anon_sym___attribute] = ACTIONS(7195), - [anon_sym_LBRACE] = ACTIONS(7197), - [anon_sym_LBRACK] = ACTIONS(7197), - [anon_sym_EQ] = ACTIONS(7195), - [anon_sym_const] = ACTIONS(7195), - [anon_sym_constexpr] = ACTIONS(7197), - [anon_sym_volatile] = ACTIONS(7197), - [anon_sym_restrict] = ACTIONS(7197), - [anon_sym___restrict__] = ACTIONS(7197), - [anon_sym__Atomic] = ACTIONS(7197), - [anon_sym__Noreturn] = ACTIONS(7197), - [anon_sym_noreturn] = ACTIONS(7197), - [anon_sym__Nonnull] = ACTIONS(7197), - [anon_sym_mutable] = ACTIONS(7197), - [anon_sym_constinit] = ACTIONS(7197), - [anon_sym_consteval] = ACTIONS(7197), - [anon_sym_alignas] = ACTIONS(7197), - [anon_sym__Alignas] = ACTIONS(7197), - [anon_sym_QMARK] = ACTIONS(7197), - [anon_sym_STAR_EQ] = ACTIONS(7197), - [anon_sym_SLASH_EQ] = ACTIONS(7197), - [anon_sym_PERCENT_EQ] = ACTIONS(7197), - [anon_sym_PLUS_EQ] = ACTIONS(7197), - [anon_sym_DASH_EQ] = ACTIONS(7197), - [anon_sym_LT_LT_EQ] = ACTIONS(7197), - [anon_sym_GT_GT_EQ] = ACTIONS(7197), - [anon_sym_AMP_EQ] = ACTIONS(7197), - [anon_sym_CARET_EQ] = ACTIONS(7197), - [anon_sym_PIPE_EQ] = ACTIONS(7197), - [anon_sym_and_eq] = ACTIONS(7197), - [anon_sym_or_eq] = ACTIONS(7197), - [anon_sym_xor_eq] = ACTIONS(7197), - [anon_sym_LT_EQ_GT] = ACTIONS(7197), - [anon_sym_or] = ACTIONS(7195), - [anon_sym_and] = ACTIONS(7195), - [anon_sym_bitor] = ACTIONS(7197), - [anon_sym_xor] = ACTIONS(7195), - [anon_sym_bitand] = ACTIONS(7197), - [anon_sym_not_eq] = ACTIONS(7197), - [anon_sym_DASH_DASH] = ACTIONS(7197), - [anon_sym_PLUS_PLUS] = ACTIONS(7197), - [anon_sym_DOT] = ACTIONS(7195), - [anon_sym_DOT_STAR] = ACTIONS(7197), - [anon_sym_DASH_GT] = ACTIONS(7195), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7197), - [anon_sym_override] = ACTIONS(7197), - [anon_sym_requires] = ACTIONS(7197), - [anon_sym_DASH_GT_STAR] = ACTIONS(7197), - }, - [STATE(2724)] = { - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token2] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [aux_sym_preproc_else_token1] = ACTIONS(3630), - [aux_sym_preproc_elif_token1] = ACTIONS(3630), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym___attribute] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym__Nonnull] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym__Alignas] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_private] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_friend] = ACTIONS(3630), - [anon_sym_public] = ACTIONS(3630), - [anon_sym_protected] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), - [anon_sym_LBRACK_COLON] = ACTIONS(3632), - }, - [STATE(2725)] = { - [sym_identifier] = ACTIONS(3906), - [aux_sym_preproc_def_token1] = ACTIONS(3906), - [aux_sym_preproc_if_token1] = ACTIONS(3906), - [aux_sym_preproc_if_token2] = ACTIONS(3906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3906), - [aux_sym_preproc_else_token1] = ACTIONS(3906), - [aux_sym_preproc_elif_token1] = ACTIONS(3906), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3906), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3906), - [sym_preproc_directive] = ACTIONS(3906), - [anon_sym_LPAREN2] = ACTIONS(3908), - [anon_sym_TILDE] = ACTIONS(3908), - [anon_sym_STAR] = ACTIONS(3908), - [anon_sym_AMP_AMP] = ACTIONS(3908), - [anon_sym_AMP] = ACTIONS(3906), - [anon_sym_SEMI] = ACTIONS(3908), - [anon_sym___extension__] = ACTIONS(3906), - [anon_sym_typedef] = ACTIONS(3906), - [anon_sym_virtual] = ACTIONS(3906), - [anon_sym_extern] = ACTIONS(3906), - [anon_sym___attribute__] = ACTIONS(3906), - [anon_sym___attribute] = ACTIONS(3906), - [anon_sym_using] = ACTIONS(3906), - [anon_sym_COLON_COLON] = ACTIONS(3908), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3908), - [anon_sym___declspec] = ACTIONS(3906), - [anon_sym___based] = ACTIONS(3906), - [anon_sym_signed] = ACTIONS(3906), - [anon_sym_unsigned] = ACTIONS(3906), - [anon_sym_long] = ACTIONS(3906), - [anon_sym_short] = ACTIONS(3906), - [anon_sym_LBRACK] = ACTIONS(3906), - [anon_sym_static] = ACTIONS(3906), - [anon_sym_register] = ACTIONS(3906), - [anon_sym_inline] = ACTIONS(3906), - [anon_sym___inline] = ACTIONS(3906), - [anon_sym___inline__] = ACTIONS(3906), - [anon_sym___forceinline] = ACTIONS(3906), - [anon_sym_thread_local] = ACTIONS(3906), - [anon_sym___thread] = ACTIONS(3906), - [anon_sym_const] = ACTIONS(3906), - [anon_sym_constexpr] = ACTIONS(3906), - [anon_sym_volatile] = ACTIONS(3906), - [anon_sym_restrict] = ACTIONS(3906), - [anon_sym___restrict__] = ACTIONS(3906), - [anon_sym__Atomic] = ACTIONS(3906), - [anon_sym__Noreturn] = ACTIONS(3906), - [anon_sym_noreturn] = ACTIONS(3906), - [anon_sym__Nonnull] = ACTIONS(3906), - [anon_sym_mutable] = ACTIONS(3906), - [anon_sym_constinit] = ACTIONS(3906), - [anon_sym_consteval] = ACTIONS(3906), - [anon_sym_alignas] = ACTIONS(3906), - [anon_sym__Alignas] = ACTIONS(3906), - [sym_primitive_type] = ACTIONS(3906), - [anon_sym_enum] = ACTIONS(3906), - [anon_sym_class] = ACTIONS(3906), - [anon_sym_struct] = ACTIONS(3906), - [anon_sym_union] = ACTIONS(3906), - [anon_sym_typename] = ACTIONS(3906), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3906), - [anon_sym_decltype] = ACTIONS(3906), - [anon_sym_explicit] = ACTIONS(3906), - [anon_sym_private] = ACTIONS(3906), - [anon_sym_template] = ACTIONS(3906), - [anon_sym_operator] = ACTIONS(3906), - [anon_sym_friend] = ACTIONS(3906), - [anon_sym_public] = ACTIONS(3906), - [anon_sym_protected] = ACTIONS(3906), - [anon_sym_static_assert] = ACTIONS(3906), - [anon_sym_LBRACK_COLON] = ACTIONS(3908), - }, - [STATE(2726)] = { - [sym_identifier] = ACTIONS(3648), - [aux_sym_preproc_def_token1] = ACTIONS(3648), - [aux_sym_preproc_if_token1] = ACTIONS(3648), - [aux_sym_preproc_if_token2] = ACTIONS(3648), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3648), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3648), - [aux_sym_preproc_else_token1] = ACTIONS(3648), - [aux_sym_preproc_elif_token1] = ACTIONS(3648), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3648), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3648), - [sym_preproc_directive] = ACTIONS(3648), - [anon_sym_LPAREN2] = ACTIONS(3650), - [anon_sym_TILDE] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_AMP_AMP] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3650), - [anon_sym___extension__] = ACTIONS(3648), - [anon_sym_typedef] = ACTIONS(3648), - [anon_sym_virtual] = ACTIONS(3648), - [anon_sym_extern] = ACTIONS(3648), - [anon_sym___attribute__] = ACTIONS(3648), - [anon_sym___attribute] = ACTIONS(3648), - [anon_sym_using] = ACTIONS(3648), - [anon_sym_COLON_COLON] = ACTIONS(3650), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), - [anon_sym___declspec] = ACTIONS(3648), - [anon_sym___based] = ACTIONS(3648), - [anon_sym_signed] = ACTIONS(3648), - [anon_sym_unsigned] = ACTIONS(3648), - [anon_sym_long] = ACTIONS(3648), - [anon_sym_short] = ACTIONS(3648), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_static] = ACTIONS(3648), - [anon_sym_register] = ACTIONS(3648), - [anon_sym_inline] = ACTIONS(3648), - [anon_sym___inline] = ACTIONS(3648), - [anon_sym___inline__] = ACTIONS(3648), - [anon_sym___forceinline] = ACTIONS(3648), - [anon_sym_thread_local] = ACTIONS(3648), - [anon_sym___thread] = ACTIONS(3648), - [anon_sym_const] = ACTIONS(3648), - [anon_sym_constexpr] = ACTIONS(3648), - [anon_sym_volatile] = ACTIONS(3648), - [anon_sym_restrict] = ACTIONS(3648), - [anon_sym___restrict__] = ACTIONS(3648), - [anon_sym__Atomic] = ACTIONS(3648), - [anon_sym__Noreturn] = ACTIONS(3648), - [anon_sym_noreturn] = ACTIONS(3648), - [anon_sym__Nonnull] = ACTIONS(3648), - [anon_sym_mutable] = ACTIONS(3648), - [anon_sym_constinit] = ACTIONS(3648), - [anon_sym_consteval] = ACTIONS(3648), - [anon_sym_alignas] = ACTIONS(3648), - [anon_sym__Alignas] = ACTIONS(3648), - [sym_primitive_type] = ACTIONS(3648), - [anon_sym_enum] = ACTIONS(3648), - [anon_sym_class] = ACTIONS(3648), - [anon_sym_struct] = ACTIONS(3648), - [anon_sym_union] = ACTIONS(3648), - [anon_sym_typename] = ACTIONS(3648), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3648), - [anon_sym_decltype] = ACTIONS(3648), - [anon_sym_explicit] = ACTIONS(3648), - [anon_sym_private] = ACTIONS(3648), - [anon_sym_template] = ACTIONS(3648), - [anon_sym_operator] = ACTIONS(3648), - [anon_sym_friend] = ACTIONS(3648), - [anon_sym_public] = ACTIONS(3648), - [anon_sym_protected] = ACTIONS(3648), - [anon_sym_static_assert] = ACTIONS(3648), - [anon_sym_LBRACK_COLON] = ACTIONS(3650), - }, - [STATE(2727)] = { - [sym_identifier] = ACTIONS(3922), - [aux_sym_preproc_def_token1] = ACTIONS(3922), - [aux_sym_preproc_if_token1] = ACTIONS(3922), - [aux_sym_preproc_if_token2] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), - [aux_sym_preproc_else_token1] = ACTIONS(3922), - [aux_sym_preproc_elif_token1] = ACTIONS(3922), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3922), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3922), - [sym_preproc_directive] = ACTIONS(3922), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_TILDE] = ACTIONS(3924), - [anon_sym_STAR] = ACTIONS(3924), - [anon_sym_AMP_AMP] = ACTIONS(3924), - [anon_sym_AMP] = ACTIONS(3922), - [anon_sym_SEMI] = ACTIONS(3924), - [anon_sym___extension__] = ACTIONS(3922), - [anon_sym_typedef] = ACTIONS(3922), - [anon_sym_virtual] = ACTIONS(3922), - [anon_sym_extern] = ACTIONS(3922), - [anon_sym___attribute__] = ACTIONS(3922), - [anon_sym___attribute] = ACTIONS(3922), - [anon_sym_using] = ACTIONS(3922), - [anon_sym_COLON_COLON] = ACTIONS(3924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), - [anon_sym___declspec] = ACTIONS(3922), - [anon_sym___based] = ACTIONS(3922), - [anon_sym_signed] = ACTIONS(3922), - [anon_sym_unsigned] = ACTIONS(3922), - [anon_sym_long] = ACTIONS(3922), - [anon_sym_short] = ACTIONS(3922), - [anon_sym_LBRACK] = ACTIONS(3922), - [anon_sym_static] = ACTIONS(3922), - [anon_sym_register] = ACTIONS(3922), - [anon_sym_inline] = ACTIONS(3922), - [anon_sym___inline] = ACTIONS(3922), - [anon_sym___inline__] = ACTIONS(3922), - [anon_sym___forceinline] = ACTIONS(3922), - [anon_sym_thread_local] = ACTIONS(3922), - [anon_sym___thread] = ACTIONS(3922), - [anon_sym_const] = ACTIONS(3922), - [anon_sym_constexpr] = ACTIONS(3922), - [anon_sym_volatile] = ACTIONS(3922), - [anon_sym_restrict] = ACTIONS(3922), - [anon_sym___restrict__] = ACTIONS(3922), - [anon_sym__Atomic] = ACTIONS(3922), - [anon_sym__Noreturn] = ACTIONS(3922), - [anon_sym_noreturn] = ACTIONS(3922), - [anon_sym__Nonnull] = ACTIONS(3922), - [anon_sym_mutable] = ACTIONS(3922), - [anon_sym_constinit] = ACTIONS(3922), - [anon_sym_consteval] = ACTIONS(3922), - [anon_sym_alignas] = ACTIONS(3922), - [anon_sym__Alignas] = ACTIONS(3922), - [sym_primitive_type] = ACTIONS(3922), - [anon_sym_enum] = ACTIONS(3922), - [anon_sym_class] = ACTIONS(3922), - [anon_sym_struct] = ACTIONS(3922), - [anon_sym_union] = ACTIONS(3922), - [anon_sym_typename] = ACTIONS(3922), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3922), - [anon_sym_decltype] = ACTIONS(3922), - [anon_sym_explicit] = ACTIONS(3922), - [anon_sym_private] = ACTIONS(3922), - [anon_sym_template] = ACTIONS(3922), - [anon_sym_operator] = ACTIONS(3922), - [anon_sym_friend] = ACTIONS(3922), - [anon_sym_public] = ACTIONS(3922), - [anon_sym_protected] = ACTIONS(3922), - [anon_sym_static_assert] = ACTIONS(3922), - [anon_sym_LBRACK_COLON] = ACTIONS(3924), - }, - [STATE(2728)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7221), - [anon_sym_COMMA] = ACTIONS(7221), - [anon_sym_RPAREN] = ACTIONS(7221), - [anon_sym_LPAREN2] = ACTIONS(7221), - [anon_sym_DASH] = ACTIONS(7219), - [anon_sym_PLUS] = ACTIONS(7219), - [anon_sym_STAR] = ACTIONS(7219), - [anon_sym_SLASH] = ACTIONS(7219), - [anon_sym_PERCENT] = ACTIONS(7219), - [anon_sym_PIPE_PIPE] = ACTIONS(7221), - [anon_sym_AMP_AMP] = ACTIONS(7221), - [anon_sym_PIPE] = ACTIONS(7219), - [anon_sym_CARET] = ACTIONS(7219), - [anon_sym_AMP] = ACTIONS(7219), - [anon_sym_EQ_EQ] = ACTIONS(7221), - [anon_sym_BANG_EQ] = ACTIONS(7221), - [anon_sym_GT] = ACTIONS(7219), - [anon_sym_GT_EQ] = ACTIONS(7221), - [anon_sym_LT_EQ] = ACTIONS(7219), - [anon_sym_LT] = ACTIONS(7219), - [anon_sym_LT_LT] = ACTIONS(7219), - [anon_sym_GT_GT] = ACTIONS(7219), - [anon_sym___extension__] = ACTIONS(7221), - [anon_sym___attribute__] = ACTIONS(7221), - [anon_sym___attribute] = ACTIONS(7219), - [anon_sym_LBRACE] = ACTIONS(7221), - [anon_sym_LBRACK] = ACTIONS(7221), - [anon_sym_EQ] = ACTIONS(7219), - [anon_sym_const] = ACTIONS(7219), - [anon_sym_constexpr] = ACTIONS(7221), - [anon_sym_volatile] = ACTIONS(7221), - [anon_sym_restrict] = ACTIONS(7221), - [anon_sym___restrict__] = ACTIONS(7221), - [anon_sym__Atomic] = ACTIONS(7221), - [anon_sym__Noreturn] = ACTIONS(7221), - [anon_sym_noreturn] = ACTIONS(7221), - [anon_sym__Nonnull] = ACTIONS(7221), - [anon_sym_mutable] = ACTIONS(7221), - [anon_sym_constinit] = ACTIONS(7221), - [anon_sym_consteval] = ACTIONS(7221), - [anon_sym_alignas] = ACTIONS(7221), - [anon_sym__Alignas] = ACTIONS(7221), - [anon_sym_QMARK] = ACTIONS(7221), - [anon_sym_STAR_EQ] = ACTIONS(7221), - [anon_sym_SLASH_EQ] = ACTIONS(7221), - [anon_sym_PERCENT_EQ] = ACTIONS(7221), - [anon_sym_PLUS_EQ] = ACTIONS(7221), - [anon_sym_DASH_EQ] = ACTIONS(7221), - [anon_sym_LT_LT_EQ] = ACTIONS(7221), - [anon_sym_GT_GT_EQ] = ACTIONS(7221), - [anon_sym_AMP_EQ] = ACTIONS(7221), - [anon_sym_CARET_EQ] = ACTIONS(7221), - [anon_sym_PIPE_EQ] = ACTIONS(7221), - [anon_sym_and_eq] = ACTIONS(7221), - [anon_sym_or_eq] = ACTIONS(7221), - [anon_sym_xor_eq] = ACTIONS(7221), - [anon_sym_LT_EQ_GT] = ACTIONS(7221), - [anon_sym_or] = ACTIONS(7219), - [anon_sym_and] = ACTIONS(7219), - [anon_sym_bitor] = ACTIONS(7221), - [anon_sym_xor] = ACTIONS(7219), - [anon_sym_bitand] = ACTIONS(7221), - [anon_sym_not_eq] = ACTIONS(7221), - [anon_sym_DASH_DASH] = ACTIONS(7221), - [anon_sym_PLUS_PLUS] = ACTIONS(7221), - [anon_sym_DOT] = ACTIONS(7219), - [anon_sym_DOT_STAR] = ACTIONS(7221), - [anon_sym_DASH_GT] = ACTIONS(7219), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7221), - [anon_sym_override] = ACTIONS(7221), - [anon_sym_requires] = ACTIONS(7221), - [anon_sym_DASH_GT_STAR] = ACTIONS(7221), + [STATE(2566)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_attributes_end] = STATE(3919), + [sym__function_postfix] = STATE(3628), + [sym_trailing_return_type] = STATE(3071), + [sym_requires_clause] = STATE(3628), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(7789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [aux_sym_preproc_if_token2] = ACTIONS(7791), + [aux_sym_preproc_else_token1] = ACTIONS(7791), + [aux_sym_preproc_elif_token1] = ACTIONS(7789), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6491), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7789), + [anon_sym_or_eq] = ACTIONS(7789), + [anon_sym_xor_eq] = ACTIONS(7789), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7789), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7789), + [anon_sym_not_eq] = ACTIONS(7789), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6497), + [anon_sym___asm__] = ACTIONS(6497), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(7799), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6502), + [anon_sym_override] = ACTIONS(6502), + [anon_sym_requires] = ACTIONS(6508), }, - [STATE(2729)] = { - [sym_identifier] = ACTIONS(3922), - [aux_sym_preproc_def_token1] = ACTIONS(3922), - [aux_sym_preproc_if_token1] = ACTIONS(3922), - [aux_sym_preproc_if_token2] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), - [aux_sym_preproc_else_token1] = ACTIONS(3922), - [aux_sym_preproc_elif_token1] = ACTIONS(3922), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3922), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3922), - [sym_preproc_directive] = ACTIONS(3922), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_TILDE] = ACTIONS(3924), - [anon_sym_STAR] = ACTIONS(3924), - [anon_sym_AMP_AMP] = ACTIONS(3924), - [anon_sym_AMP] = ACTIONS(3922), - [anon_sym_SEMI] = ACTIONS(3924), - [anon_sym___extension__] = ACTIONS(3922), - [anon_sym_typedef] = ACTIONS(3922), - [anon_sym_virtual] = ACTIONS(3922), - [anon_sym_extern] = ACTIONS(3922), - [anon_sym___attribute__] = ACTIONS(3922), - [anon_sym___attribute] = ACTIONS(3922), - [anon_sym_using] = ACTIONS(3922), - [anon_sym_COLON_COLON] = ACTIONS(3924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), - [anon_sym___declspec] = ACTIONS(3922), - [anon_sym___based] = ACTIONS(3922), - [anon_sym_signed] = ACTIONS(3922), - [anon_sym_unsigned] = ACTIONS(3922), - [anon_sym_long] = ACTIONS(3922), - [anon_sym_short] = ACTIONS(3922), - [anon_sym_LBRACK] = ACTIONS(3922), - [anon_sym_static] = ACTIONS(3922), - [anon_sym_register] = ACTIONS(3922), - [anon_sym_inline] = ACTIONS(3922), - [anon_sym___inline] = ACTIONS(3922), - [anon_sym___inline__] = ACTIONS(3922), - [anon_sym___forceinline] = ACTIONS(3922), - [anon_sym_thread_local] = ACTIONS(3922), - [anon_sym___thread] = ACTIONS(3922), - [anon_sym_const] = ACTIONS(3922), - [anon_sym_constexpr] = ACTIONS(3922), - [anon_sym_volatile] = ACTIONS(3922), - [anon_sym_restrict] = ACTIONS(3922), - [anon_sym___restrict__] = ACTIONS(3922), - [anon_sym__Atomic] = ACTIONS(3922), - [anon_sym__Noreturn] = ACTIONS(3922), - [anon_sym_noreturn] = ACTIONS(3922), - [anon_sym__Nonnull] = ACTIONS(3922), - [anon_sym_mutable] = ACTIONS(3922), - [anon_sym_constinit] = ACTIONS(3922), - [anon_sym_consteval] = ACTIONS(3922), - [anon_sym_alignas] = ACTIONS(3922), - [anon_sym__Alignas] = ACTIONS(3922), - [sym_primitive_type] = ACTIONS(3922), - [anon_sym_enum] = ACTIONS(3922), - [anon_sym_class] = ACTIONS(3922), - [anon_sym_struct] = ACTIONS(3922), - [anon_sym_union] = ACTIONS(3922), - [anon_sym_typename] = ACTIONS(3922), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3922), - [anon_sym_decltype] = ACTIONS(3922), - [anon_sym_explicit] = ACTIONS(3922), - [anon_sym_private] = ACTIONS(3922), - [anon_sym_template] = ACTIONS(3922), - [anon_sym_operator] = ACTIONS(3922), - [anon_sym_friend] = ACTIONS(3922), - [anon_sym_public] = ACTIONS(3922), - [anon_sym_protected] = ACTIONS(3922), - [anon_sym_static_assert] = ACTIONS(3922), - [anon_sym_LBRACK_COLON] = ACTIONS(3924), + [STATE(2567)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_attributes_end] = STATE(3920), + [sym__function_postfix] = STATE(3655), + [sym_trailing_return_type] = STATE(3029), + [sym_requires_clause] = STATE(3655), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(7968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [aux_sym_preproc_if_token2] = ACTIONS(7966), + [aux_sym_preproc_else_token1] = ACTIONS(7966), + [aux_sym_preproc_elif_token1] = ACTIONS(7968), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7966), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym___attribute__] = ACTIONS(6491), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7968), + [anon_sym_or_eq] = ACTIONS(7968), + [anon_sym_xor_eq] = ACTIONS(7968), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7968), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7968), + [anon_sym_not_eq] = ACTIONS(7968), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6497), + [anon_sym___asm__] = ACTIONS(6497), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(7991), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6502), + [anon_sym_override] = ACTIONS(6502), + [anon_sym_requires] = ACTIONS(6508), }, - [STATE(2730)] = { - [sym_identifier] = ACTIONS(8396), - [aux_sym_preproc_def_token1] = ACTIONS(8396), - [aux_sym_preproc_if_token1] = ACTIONS(8396), - [aux_sym_preproc_if_token2] = ACTIONS(8396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8396), - [aux_sym_preproc_else_token1] = ACTIONS(8396), - [aux_sym_preproc_elif_token1] = ACTIONS(8396), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8396), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8396), - [sym_preproc_directive] = ACTIONS(8396), - [anon_sym_LPAREN2] = ACTIONS(8398), - [anon_sym_TILDE] = ACTIONS(8398), - [anon_sym_STAR] = ACTIONS(8398), - [anon_sym_AMP_AMP] = ACTIONS(8398), - [anon_sym_AMP] = ACTIONS(8396), - [anon_sym_SEMI] = ACTIONS(8398), - [anon_sym___extension__] = ACTIONS(8396), - [anon_sym_typedef] = ACTIONS(8396), - [anon_sym_virtual] = ACTIONS(8396), - [anon_sym_extern] = ACTIONS(8396), - [anon_sym___attribute__] = ACTIONS(8396), - [anon_sym___attribute] = ACTIONS(8396), - [anon_sym_using] = ACTIONS(8396), - [anon_sym_COLON_COLON] = ACTIONS(8398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8398), - [anon_sym___declspec] = ACTIONS(8396), - [anon_sym___based] = ACTIONS(8396), - [anon_sym_signed] = ACTIONS(8396), - [anon_sym_unsigned] = ACTIONS(8396), - [anon_sym_long] = ACTIONS(8396), - [anon_sym_short] = ACTIONS(8396), - [anon_sym_LBRACK] = ACTIONS(8396), - [anon_sym_static] = ACTIONS(8396), - [anon_sym_register] = ACTIONS(8396), - [anon_sym_inline] = ACTIONS(8396), - [anon_sym___inline] = ACTIONS(8396), - [anon_sym___inline__] = ACTIONS(8396), - [anon_sym___forceinline] = ACTIONS(8396), - [anon_sym_thread_local] = ACTIONS(8396), - [anon_sym___thread] = ACTIONS(8396), - [anon_sym_const] = ACTIONS(8396), - [anon_sym_constexpr] = ACTIONS(8396), - [anon_sym_volatile] = ACTIONS(8396), - [anon_sym_restrict] = ACTIONS(8396), - [anon_sym___restrict__] = ACTIONS(8396), - [anon_sym__Atomic] = ACTIONS(8396), - [anon_sym__Noreturn] = ACTIONS(8396), - [anon_sym_noreturn] = ACTIONS(8396), - [anon_sym__Nonnull] = ACTIONS(8396), - [anon_sym_mutable] = ACTIONS(8396), - [anon_sym_constinit] = ACTIONS(8396), - [anon_sym_consteval] = ACTIONS(8396), - [anon_sym_alignas] = ACTIONS(8396), - [anon_sym__Alignas] = ACTIONS(8396), - [sym_primitive_type] = ACTIONS(8396), - [anon_sym_enum] = ACTIONS(8396), - [anon_sym_class] = ACTIONS(8396), - [anon_sym_struct] = ACTIONS(8396), - [anon_sym_union] = ACTIONS(8396), - [anon_sym_typename] = ACTIONS(8396), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8396), - [anon_sym_decltype] = ACTIONS(8396), - [anon_sym_explicit] = ACTIONS(8396), - [anon_sym_private] = ACTIONS(8396), - [anon_sym_template] = ACTIONS(8396), - [anon_sym_operator] = ACTIONS(8396), - [anon_sym_friend] = ACTIONS(8396), - [anon_sym_public] = ACTIONS(8396), - [anon_sym_protected] = ACTIONS(8396), - [anon_sym_static_assert] = ACTIONS(8396), - [anon_sym_LBRACK_COLON] = ACTIONS(8398), + [STATE(2568)] = { + [sym_catch_clause] = STATE(2536), + [aux_sym_constructor_try_statement_repeat1] = STATE(2536), + [sym_identifier] = ACTIONS(3165), + [aux_sym_preproc_def_token1] = ACTIONS(3165), + [aux_sym_preproc_if_token1] = ACTIONS(3165), + [aux_sym_preproc_if_token2] = ACTIONS(3165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3165), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3165), + [aux_sym_preproc_else_token1] = ACTIONS(3165), + [aux_sym_preproc_elif_token1] = ACTIONS(3165), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3165), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3165), + [sym_preproc_directive] = ACTIONS(3165), + [anon_sym_LPAREN2] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(3167), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym___extension__] = ACTIONS(3165), + [anon_sym_typedef] = ACTIONS(3165), + [anon_sym_virtual] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3165), + [anon_sym___attribute__] = ACTIONS(3165), + [anon_sym___attribute] = ACTIONS(3165), + [anon_sym_using] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(3167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3167), + [anon_sym___declspec] = ACTIONS(3165), + [anon_sym___based] = ACTIONS(3165), + [anon_sym_signed] = ACTIONS(3165), + [anon_sym_unsigned] = ACTIONS(3165), + [anon_sym_long] = ACTIONS(3165), + [anon_sym_short] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_static] = ACTIONS(3165), + [anon_sym_register] = ACTIONS(3165), + [anon_sym_inline] = ACTIONS(3165), + [anon_sym___inline] = ACTIONS(3165), + [anon_sym___inline__] = ACTIONS(3165), + [anon_sym___forceinline] = ACTIONS(3165), + [anon_sym_thread_local] = ACTIONS(3165), + [anon_sym___thread] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_constexpr] = ACTIONS(3165), + [anon_sym_volatile] = ACTIONS(3165), + [anon_sym_restrict] = ACTIONS(3165), + [anon_sym___restrict__] = ACTIONS(3165), + [anon_sym__Atomic] = ACTIONS(3165), + [anon_sym__Noreturn] = ACTIONS(3165), + [anon_sym_noreturn] = ACTIONS(3165), + [anon_sym__Nonnull] = ACTIONS(3165), + [anon_sym_mutable] = ACTIONS(3165), + [anon_sym_constinit] = ACTIONS(3165), + [anon_sym_consteval] = ACTIONS(3165), + [anon_sym_alignas] = ACTIONS(3165), + [anon_sym__Alignas] = ACTIONS(3165), + [sym_primitive_type] = ACTIONS(3165), + [anon_sym_enum] = ACTIONS(3165), + [anon_sym_class] = ACTIONS(3165), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3165), + [anon_sym_typename] = ACTIONS(3165), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3165), + [anon_sym_decltype] = ACTIONS(3165), + [anon_sym_explicit] = ACTIONS(3165), + [anon_sym_private] = ACTIONS(3165), + [anon_sym_template] = ACTIONS(3165), + [anon_sym_operator] = ACTIONS(3165), + [anon_sym_friend] = ACTIONS(3165), + [anon_sym_public] = ACTIONS(3165), + [anon_sym_protected] = ACTIONS(3165), + [anon_sym_static_assert] = ACTIONS(3165), + [anon_sym_catch] = ACTIONS(8438), + [anon_sym_LBRACK_COLON] = ACTIONS(3167), }, - [STATE(2731)] = { - [sym_identifier] = ACTIONS(3926), - [aux_sym_preproc_def_token1] = ACTIONS(3926), - [aux_sym_preproc_if_token1] = ACTIONS(3926), - [aux_sym_preproc_if_token2] = ACTIONS(3926), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3926), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3926), - [aux_sym_preproc_else_token1] = ACTIONS(3926), - [aux_sym_preproc_elif_token1] = ACTIONS(3926), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3926), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3926), - [sym_preproc_directive] = ACTIONS(3926), - [anon_sym_LPAREN2] = ACTIONS(3928), - [anon_sym_TILDE] = ACTIONS(3928), - [anon_sym_STAR] = ACTIONS(3928), - [anon_sym_AMP_AMP] = ACTIONS(3928), - [anon_sym_AMP] = ACTIONS(3926), - [anon_sym_SEMI] = ACTIONS(3928), - [anon_sym___extension__] = ACTIONS(3926), - [anon_sym_typedef] = ACTIONS(3926), - [anon_sym_virtual] = ACTIONS(3926), - [anon_sym_extern] = ACTIONS(3926), - [anon_sym___attribute__] = ACTIONS(3926), - [anon_sym___attribute] = ACTIONS(3926), - [anon_sym_using] = ACTIONS(3926), - [anon_sym_COLON_COLON] = ACTIONS(3928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3928), - [anon_sym___declspec] = ACTIONS(3926), - [anon_sym___based] = ACTIONS(3926), - [anon_sym_signed] = ACTIONS(3926), - [anon_sym_unsigned] = ACTIONS(3926), - [anon_sym_long] = ACTIONS(3926), - [anon_sym_short] = ACTIONS(3926), - [anon_sym_LBRACK] = ACTIONS(3926), - [anon_sym_static] = ACTIONS(3926), - [anon_sym_register] = ACTIONS(3926), - [anon_sym_inline] = ACTIONS(3926), - [anon_sym___inline] = ACTIONS(3926), - [anon_sym___inline__] = ACTIONS(3926), - [anon_sym___forceinline] = ACTIONS(3926), - [anon_sym_thread_local] = ACTIONS(3926), - [anon_sym___thread] = ACTIONS(3926), - [anon_sym_const] = ACTIONS(3926), - [anon_sym_constexpr] = ACTIONS(3926), - [anon_sym_volatile] = ACTIONS(3926), - [anon_sym_restrict] = ACTIONS(3926), - [anon_sym___restrict__] = ACTIONS(3926), - [anon_sym__Atomic] = ACTIONS(3926), - [anon_sym__Noreturn] = ACTIONS(3926), - [anon_sym_noreturn] = ACTIONS(3926), - [anon_sym__Nonnull] = ACTIONS(3926), - [anon_sym_mutable] = ACTIONS(3926), - [anon_sym_constinit] = ACTIONS(3926), - [anon_sym_consteval] = ACTIONS(3926), - [anon_sym_alignas] = ACTIONS(3926), - [anon_sym__Alignas] = ACTIONS(3926), - [sym_primitive_type] = ACTIONS(3926), - [anon_sym_enum] = ACTIONS(3926), - [anon_sym_class] = ACTIONS(3926), - [anon_sym_struct] = ACTIONS(3926), - [anon_sym_union] = ACTIONS(3926), - [anon_sym_typename] = ACTIONS(3926), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3926), - [anon_sym_decltype] = ACTIONS(3926), - [anon_sym_explicit] = ACTIONS(3926), - [anon_sym_private] = ACTIONS(3926), - [anon_sym_template] = ACTIONS(3926), - [anon_sym_operator] = ACTIONS(3926), - [anon_sym_friend] = ACTIONS(3926), - [anon_sym_public] = ACTIONS(3926), - [anon_sym_protected] = ACTIONS(3926), - [anon_sym_static_assert] = ACTIONS(3926), - [anon_sym_LBRACK_COLON] = ACTIONS(3928), + [STATE(2569)] = { + [sym_attribute_specifier] = STATE(3217), + [sym_enumerator_list] = STATE(2886), + [sym__enum_base_clause] = STATE(2728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8002), + [anon_sym_COMMA] = ACTIONS(8002), + [anon_sym_LPAREN2] = ACTIONS(8002), + [anon_sym_DASH] = ACTIONS(8000), + [anon_sym_PLUS] = ACTIONS(8000), + [anon_sym_STAR] = ACTIONS(8000), + [anon_sym_SLASH] = ACTIONS(8000), + [anon_sym_PERCENT] = ACTIONS(8000), + [anon_sym_PIPE_PIPE] = ACTIONS(8002), + [anon_sym_AMP_AMP] = ACTIONS(8002), + [anon_sym_PIPE] = ACTIONS(8000), + [anon_sym_CARET] = ACTIONS(8000), + [anon_sym_AMP] = ACTIONS(8000), + [anon_sym_EQ_EQ] = ACTIONS(8002), + [anon_sym_BANG_EQ] = ACTIONS(8002), + [anon_sym_GT] = ACTIONS(8000), + [anon_sym_GT_EQ] = ACTIONS(8000), + [anon_sym_LT_EQ] = ACTIONS(8000), + [anon_sym_LT] = ACTIONS(8000), + [anon_sym_LT_LT] = ACTIONS(8000), + [anon_sym_GT_GT] = ACTIONS(8000), + [anon_sym___extension__] = ACTIONS(8002), + [anon_sym___attribute__] = ACTIONS(8265), + [anon_sym___attribute] = ACTIONS(8267), + [anon_sym_COLON] = ACTIONS(8470), + [anon_sym_LBRACE] = ACTIONS(8472), + [anon_sym_LBRACK] = ACTIONS(8002), + [anon_sym_EQ] = ACTIONS(8000), + [anon_sym_const] = ACTIONS(8000), + [anon_sym_constexpr] = ACTIONS(8002), + [anon_sym_volatile] = ACTIONS(8002), + [anon_sym_restrict] = ACTIONS(8002), + [anon_sym___restrict__] = ACTIONS(8002), + [anon_sym__Atomic] = ACTIONS(8002), + [anon_sym__Noreturn] = ACTIONS(8002), + [anon_sym_noreturn] = ACTIONS(8002), + [anon_sym__Nonnull] = ACTIONS(8002), + [anon_sym_mutable] = ACTIONS(8002), + [anon_sym_constinit] = ACTIONS(8002), + [anon_sym_consteval] = ACTIONS(8002), + [anon_sym_alignas] = ACTIONS(8002), + [anon_sym__Alignas] = ACTIONS(8002), + [anon_sym_QMARK] = ACTIONS(8002), + [anon_sym_STAR_EQ] = ACTIONS(8002), + [anon_sym_SLASH_EQ] = ACTIONS(8002), + [anon_sym_PERCENT_EQ] = ACTIONS(8002), + [anon_sym_PLUS_EQ] = ACTIONS(8002), + [anon_sym_DASH_EQ] = ACTIONS(8002), + [anon_sym_LT_LT_EQ] = ACTIONS(8002), + [anon_sym_GT_GT_EQ] = ACTIONS(8000), + [anon_sym_AMP_EQ] = ACTIONS(8002), + [anon_sym_CARET_EQ] = ACTIONS(8002), + [anon_sym_PIPE_EQ] = ACTIONS(8002), + [anon_sym_and_eq] = ACTIONS(8002), + [anon_sym_or_eq] = ACTIONS(8002), + [anon_sym_xor_eq] = ACTIONS(8002), + [anon_sym_LT_EQ_GT] = ACTIONS(8002), + [anon_sym_or] = ACTIONS(8000), + [anon_sym_and] = ACTIONS(8000), + [anon_sym_bitor] = ACTIONS(8002), + [anon_sym_xor] = ACTIONS(8000), + [anon_sym_bitand] = ACTIONS(8002), + [anon_sym_not_eq] = ACTIONS(8002), + [anon_sym_DASH_DASH] = ACTIONS(8002), + [anon_sym_PLUS_PLUS] = ACTIONS(8002), + [anon_sym_DOT] = ACTIONS(8000), + [anon_sym_DOT_STAR] = ACTIONS(8002), + [anon_sym_DASH_GT] = ACTIONS(8002), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8002), + [anon_sym_override] = ACTIONS(8002), + [anon_sym_GT2] = ACTIONS(8002), + [anon_sym_requires] = ACTIONS(8002), }, - [STATE(2732)] = { - [sym_identifier] = ACTIONS(8396), - [aux_sym_preproc_def_token1] = ACTIONS(8396), - [aux_sym_preproc_if_token1] = ACTIONS(8396), - [aux_sym_preproc_if_token2] = ACTIONS(8396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8396), - [aux_sym_preproc_else_token1] = ACTIONS(8396), - [aux_sym_preproc_elif_token1] = ACTIONS(8396), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8396), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8396), - [sym_preproc_directive] = ACTIONS(8396), - [anon_sym_LPAREN2] = ACTIONS(8398), - [anon_sym_TILDE] = ACTIONS(8398), - [anon_sym_STAR] = ACTIONS(8398), - [anon_sym_AMP_AMP] = ACTIONS(8398), - [anon_sym_AMP] = ACTIONS(8396), - [anon_sym_SEMI] = ACTIONS(8398), - [anon_sym___extension__] = ACTIONS(8396), - [anon_sym_typedef] = ACTIONS(8396), - [anon_sym_virtual] = ACTIONS(8396), - [anon_sym_extern] = ACTIONS(8396), - [anon_sym___attribute__] = ACTIONS(8396), - [anon_sym___attribute] = ACTIONS(8396), - [anon_sym_using] = ACTIONS(8396), - [anon_sym_COLON_COLON] = ACTIONS(8398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8398), - [anon_sym___declspec] = ACTIONS(8396), - [anon_sym___based] = ACTIONS(8396), - [anon_sym_signed] = ACTIONS(8396), - [anon_sym_unsigned] = ACTIONS(8396), - [anon_sym_long] = ACTIONS(8396), - [anon_sym_short] = ACTIONS(8396), - [anon_sym_LBRACK] = ACTIONS(8396), - [anon_sym_static] = ACTIONS(8396), - [anon_sym_register] = ACTIONS(8396), - [anon_sym_inline] = ACTIONS(8396), - [anon_sym___inline] = ACTIONS(8396), - [anon_sym___inline__] = ACTIONS(8396), - [anon_sym___forceinline] = ACTIONS(8396), - [anon_sym_thread_local] = ACTIONS(8396), - [anon_sym___thread] = ACTIONS(8396), - [anon_sym_const] = ACTIONS(8396), - [anon_sym_constexpr] = ACTIONS(8396), - [anon_sym_volatile] = ACTIONS(8396), - [anon_sym_restrict] = ACTIONS(8396), - [anon_sym___restrict__] = ACTIONS(8396), - [anon_sym__Atomic] = ACTIONS(8396), - [anon_sym__Noreturn] = ACTIONS(8396), - [anon_sym_noreturn] = ACTIONS(8396), - [anon_sym__Nonnull] = ACTIONS(8396), - [anon_sym_mutable] = ACTIONS(8396), - [anon_sym_constinit] = ACTIONS(8396), - [anon_sym_consteval] = ACTIONS(8396), - [anon_sym_alignas] = ACTIONS(8396), - [anon_sym__Alignas] = ACTIONS(8396), - [sym_primitive_type] = ACTIONS(8396), - [anon_sym_enum] = ACTIONS(8396), - [anon_sym_class] = ACTIONS(8396), - [anon_sym_struct] = ACTIONS(8396), - [anon_sym_union] = ACTIONS(8396), - [anon_sym_typename] = ACTIONS(8396), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8396), - [anon_sym_decltype] = ACTIONS(8396), - [anon_sym_explicit] = ACTIONS(8396), - [anon_sym_private] = ACTIONS(8396), - [anon_sym_template] = ACTIONS(8396), - [anon_sym_operator] = ACTIONS(8396), - [anon_sym_friend] = ACTIONS(8396), - [anon_sym_public] = ACTIONS(8396), - [anon_sym_protected] = ACTIONS(8396), - [anon_sym_static_assert] = ACTIONS(8396), - [anon_sym_LBRACK_COLON] = ACTIONS(8398), + [STATE(2570)] = { + [sym_attribute_specifier] = STATE(3147), + [sym_enumerator_list] = STATE(2774), + [sym__enum_base_clause] = STATE(2667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8008), + [anon_sym_COMMA] = ACTIONS(8008), + [anon_sym_LPAREN2] = ACTIONS(8008), + [anon_sym_DASH] = ACTIONS(8006), + [anon_sym_PLUS] = ACTIONS(8006), + [anon_sym_STAR] = ACTIONS(8006), + [anon_sym_SLASH] = ACTIONS(8006), + [anon_sym_PERCENT] = ACTIONS(8006), + [anon_sym_PIPE_PIPE] = ACTIONS(8008), + [anon_sym_AMP_AMP] = ACTIONS(8008), + [anon_sym_PIPE] = ACTIONS(8006), + [anon_sym_CARET] = ACTIONS(8006), + [anon_sym_AMP] = ACTIONS(8006), + [anon_sym_EQ_EQ] = ACTIONS(8008), + [anon_sym_BANG_EQ] = ACTIONS(8008), + [anon_sym_GT] = ACTIONS(8006), + [anon_sym_GT_EQ] = ACTIONS(8006), + [anon_sym_LT_EQ] = ACTIONS(8006), + [anon_sym_LT] = ACTIONS(8006), + [anon_sym_LT_LT] = ACTIONS(8006), + [anon_sym_GT_GT] = ACTIONS(8006), + [anon_sym___extension__] = ACTIONS(8008), + [anon_sym___attribute__] = ACTIONS(8265), + [anon_sym___attribute] = ACTIONS(8267), + [anon_sym_COLON] = ACTIONS(8470), + [anon_sym_LBRACE] = ACTIONS(8472), + [anon_sym_LBRACK] = ACTIONS(8008), + [anon_sym_EQ] = ACTIONS(8006), + [anon_sym_const] = ACTIONS(8006), + [anon_sym_constexpr] = ACTIONS(8008), + [anon_sym_volatile] = ACTIONS(8008), + [anon_sym_restrict] = ACTIONS(8008), + [anon_sym___restrict__] = ACTIONS(8008), + [anon_sym__Atomic] = ACTIONS(8008), + [anon_sym__Noreturn] = ACTIONS(8008), + [anon_sym_noreturn] = ACTIONS(8008), + [anon_sym__Nonnull] = ACTIONS(8008), + [anon_sym_mutable] = ACTIONS(8008), + [anon_sym_constinit] = ACTIONS(8008), + [anon_sym_consteval] = ACTIONS(8008), + [anon_sym_alignas] = ACTIONS(8008), + [anon_sym__Alignas] = ACTIONS(8008), + [anon_sym_QMARK] = ACTIONS(8008), + [anon_sym_STAR_EQ] = ACTIONS(8008), + [anon_sym_SLASH_EQ] = ACTIONS(8008), + [anon_sym_PERCENT_EQ] = ACTIONS(8008), + [anon_sym_PLUS_EQ] = ACTIONS(8008), + [anon_sym_DASH_EQ] = ACTIONS(8008), + [anon_sym_LT_LT_EQ] = ACTIONS(8008), + [anon_sym_GT_GT_EQ] = ACTIONS(8006), + [anon_sym_AMP_EQ] = ACTIONS(8008), + [anon_sym_CARET_EQ] = ACTIONS(8008), + [anon_sym_PIPE_EQ] = ACTIONS(8008), + [anon_sym_and_eq] = ACTIONS(8008), + [anon_sym_or_eq] = ACTIONS(8008), + [anon_sym_xor_eq] = ACTIONS(8008), + [anon_sym_LT_EQ_GT] = ACTIONS(8008), + [anon_sym_or] = ACTIONS(8006), + [anon_sym_and] = ACTIONS(8006), + [anon_sym_bitor] = ACTIONS(8008), + [anon_sym_xor] = ACTIONS(8006), + [anon_sym_bitand] = ACTIONS(8008), + [anon_sym_not_eq] = ACTIONS(8008), + [anon_sym_DASH_DASH] = ACTIONS(8008), + [anon_sym_PLUS_PLUS] = ACTIONS(8008), + [anon_sym_DOT] = ACTIONS(8006), + [anon_sym_DOT_STAR] = ACTIONS(8008), + [anon_sym_DASH_GT] = ACTIONS(8008), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8008), + [anon_sym_override] = ACTIONS(8008), + [anon_sym_GT2] = ACTIONS(8008), + [anon_sym_requires] = ACTIONS(8008), }, - [STATE(2733)] = { - [sym_attribute_specifier] = STATE(3125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7125), - [anon_sym_COMMA] = ACTIONS(7125), - [anon_sym_LPAREN2] = ACTIONS(7125), - [anon_sym_DASH] = ACTIONS(7123), - [anon_sym_PLUS] = ACTIONS(7123), - [anon_sym_STAR] = ACTIONS(7123), - [anon_sym_SLASH] = ACTIONS(7123), - [anon_sym_PERCENT] = ACTIONS(7123), - [anon_sym_PIPE_PIPE] = ACTIONS(7125), - [anon_sym_AMP_AMP] = ACTIONS(7125), - [anon_sym_PIPE] = ACTIONS(7123), - [anon_sym_CARET] = ACTIONS(7123), - [anon_sym_AMP] = ACTIONS(7123), - [anon_sym_EQ_EQ] = ACTIONS(7125), - [anon_sym_BANG_EQ] = ACTIONS(7125), - [anon_sym_GT] = ACTIONS(7123), - [anon_sym_GT_EQ] = ACTIONS(7123), - [anon_sym_LT_EQ] = ACTIONS(7123), - [anon_sym_LT] = ACTIONS(7123), - [anon_sym_LT_LT] = ACTIONS(7123), - [anon_sym_GT_GT] = ACTIONS(7123), - [anon_sym___extension__] = ACTIONS(7125), - [anon_sym___attribute__] = ACTIONS(7862), - [anon_sym___attribute] = ACTIONS(7864), - [anon_sym_LBRACE] = ACTIONS(7125), - [anon_sym_LBRACK] = ACTIONS(7125), - [anon_sym_EQ] = ACTIONS(7123), - [anon_sym_const] = ACTIONS(7123), - [anon_sym_constexpr] = ACTIONS(7125), - [anon_sym_volatile] = ACTIONS(7125), - [anon_sym_restrict] = ACTIONS(7125), - [anon_sym___restrict__] = ACTIONS(7125), - [anon_sym__Atomic] = ACTIONS(7125), - [anon_sym__Noreturn] = ACTIONS(7125), - [anon_sym_noreturn] = ACTIONS(7125), - [anon_sym__Nonnull] = ACTIONS(7125), - [anon_sym_mutable] = ACTIONS(7125), - [anon_sym_constinit] = ACTIONS(7125), - [anon_sym_consteval] = ACTIONS(7125), - [anon_sym_alignas] = ACTIONS(7125), - [anon_sym__Alignas] = ACTIONS(7125), - [anon_sym_QMARK] = ACTIONS(7125), - [anon_sym_STAR_EQ] = ACTIONS(7125), - [anon_sym_SLASH_EQ] = ACTIONS(7125), - [anon_sym_PERCENT_EQ] = ACTIONS(7125), - [anon_sym_PLUS_EQ] = ACTIONS(7125), - [anon_sym_DASH_EQ] = ACTIONS(7125), - [anon_sym_LT_LT_EQ] = ACTIONS(7125), - [anon_sym_GT_GT_EQ] = ACTIONS(7123), - [anon_sym_AMP_EQ] = ACTIONS(7125), - [anon_sym_CARET_EQ] = ACTIONS(7125), - [anon_sym_PIPE_EQ] = ACTIONS(7125), - [anon_sym_and_eq] = ACTIONS(7125), - [anon_sym_or_eq] = ACTIONS(7125), - [anon_sym_xor_eq] = ACTIONS(7125), - [anon_sym_LT_EQ_GT] = ACTIONS(7125), - [anon_sym_or] = ACTIONS(7123), - [anon_sym_and] = ACTIONS(7123), - [anon_sym_bitor] = ACTIONS(7125), - [anon_sym_xor] = ACTIONS(7123), - [anon_sym_bitand] = ACTIONS(7125), - [anon_sym_not_eq] = ACTIONS(7125), - [anon_sym_DASH_DASH] = ACTIONS(7125), - [anon_sym_PLUS_PLUS] = ACTIONS(7125), - [anon_sym_DOT] = ACTIONS(7123), - [anon_sym_DOT_STAR] = ACTIONS(7125), - [anon_sym_DASH_GT] = ACTIONS(7125), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7125), - [anon_sym_override] = ACTIONS(7125), - [anon_sym_GT2] = ACTIONS(7125), - [anon_sym_requires] = ACTIONS(7125), + [STATE(2571)] = { + [sym_attribute_specifier] = STATE(3104), + [sym_enumerator_list] = STATE(2891), + [sym__enum_base_clause] = STATE(2665), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8002), + [anon_sym_COMMA] = ACTIONS(8002), + [anon_sym_LPAREN2] = ACTIONS(8002), + [anon_sym_DASH] = ACTIONS(8000), + [anon_sym_PLUS] = ACTIONS(8000), + [anon_sym_STAR] = ACTIONS(8000), + [anon_sym_SLASH] = ACTIONS(8000), + [anon_sym_PERCENT] = ACTIONS(8000), + [anon_sym_PIPE_PIPE] = ACTIONS(8002), + [anon_sym_AMP_AMP] = ACTIONS(8002), + [anon_sym_PIPE] = ACTIONS(8000), + [anon_sym_CARET] = ACTIONS(8000), + [anon_sym_AMP] = ACTIONS(8000), + [anon_sym_EQ_EQ] = ACTIONS(8002), + [anon_sym_BANG_EQ] = ACTIONS(8002), + [anon_sym_GT] = ACTIONS(8000), + [anon_sym_GT_EQ] = ACTIONS(8002), + [anon_sym_LT_EQ] = ACTIONS(8000), + [anon_sym_LT] = ACTIONS(8000), + [anon_sym_LT_LT] = ACTIONS(8000), + [anon_sym_GT_GT] = ACTIONS(8000), + [anon_sym___extension__] = ACTIONS(8002), + [anon_sym___attribute__] = ACTIONS(8293), + [anon_sym___attribute] = ACTIONS(8295), + [anon_sym_COLON] = ACTIONS(8474), + [anon_sym_LBRACE] = ACTIONS(8476), + [anon_sym_LBRACK] = ACTIONS(8002), + [anon_sym_RBRACK] = ACTIONS(8002), + [anon_sym_EQ] = ACTIONS(8000), + [anon_sym_const] = ACTIONS(8000), + [anon_sym_constexpr] = ACTIONS(8002), + [anon_sym_volatile] = ACTIONS(8002), + [anon_sym_restrict] = ACTIONS(8002), + [anon_sym___restrict__] = ACTIONS(8002), + [anon_sym__Atomic] = ACTIONS(8002), + [anon_sym__Noreturn] = ACTIONS(8002), + [anon_sym_noreturn] = ACTIONS(8002), + [anon_sym__Nonnull] = ACTIONS(8002), + [anon_sym_mutable] = ACTIONS(8002), + [anon_sym_constinit] = ACTIONS(8002), + [anon_sym_consteval] = ACTIONS(8002), + [anon_sym_alignas] = ACTIONS(8002), + [anon_sym__Alignas] = ACTIONS(8002), + [anon_sym_QMARK] = ACTIONS(8002), + [anon_sym_STAR_EQ] = ACTIONS(8002), + [anon_sym_SLASH_EQ] = ACTIONS(8002), + [anon_sym_PERCENT_EQ] = ACTIONS(8002), + [anon_sym_PLUS_EQ] = ACTIONS(8002), + [anon_sym_DASH_EQ] = ACTIONS(8002), + [anon_sym_LT_LT_EQ] = ACTIONS(8002), + [anon_sym_GT_GT_EQ] = ACTIONS(8002), + [anon_sym_AMP_EQ] = ACTIONS(8002), + [anon_sym_CARET_EQ] = ACTIONS(8002), + [anon_sym_PIPE_EQ] = ACTIONS(8002), + [anon_sym_and_eq] = ACTIONS(8002), + [anon_sym_or_eq] = ACTIONS(8002), + [anon_sym_xor_eq] = ACTIONS(8002), + [anon_sym_LT_EQ_GT] = ACTIONS(8002), + [anon_sym_or] = ACTIONS(8000), + [anon_sym_and] = ACTIONS(8000), + [anon_sym_bitor] = ACTIONS(8002), + [anon_sym_xor] = ACTIONS(8000), + [anon_sym_bitand] = ACTIONS(8002), + [anon_sym_not_eq] = ACTIONS(8002), + [anon_sym_DASH_DASH] = ACTIONS(8002), + [anon_sym_PLUS_PLUS] = ACTIONS(8002), + [anon_sym_DOT] = ACTIONS(8000), + [anon_sym_DOT_STAR] = ACTIONS(8002), + [anon_sym_DASH_GT] = ACTIONS(8002), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8002), + [anon_sym_override] = ACTIONS(8002), + [anon_sym_requires] = ACTIONS(8002), }, - [STATE(2734)] = { - [sym_identifier] = ACTIONS(3930), - [aux_sym_preproc_def_token1] = ACTIONS(3930), - [aux_sym_preproc_if_token1] = ACTIONS(3930), - [aux_sym_preproc_if_token2] = ACTIONS(3930), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3930), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3930), - [aux_sym_preproc_else_token1] = ACTIONS(3930), - [aux_sym_preproc_elif_token1] = ACTIONS(3930), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3930), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3930), - [sym_preproc_directive] = ACTIONS(3930), - [anon_sym_LPAREN2] = ACTIONS(3932), - [anon_sym_TILDE] = ACTIONS(3932), - [anon_sym_STAR] = ACTIONS(3932), - [anon_sym_AMP_AMP] = ACTIONS(3932), - [anon_sym_AMP] = ACTIONS(3930), - [anon_sym_SEMI] = ACTIONS(3932), - [anon_sym___extension__] = ACTIONS(3930), - [anon_sym_typedef] = ACTIONS(3930), - [anon_sym_virtual] = ACTIONS(3930), - [anon_sym_extern] = ACTIONS(3930), - [anon_sym___attribute__] = ACTIONS(3930), - [anon_sym___attribute] = ACTIONS(3930), - [anon_sym_using] = ACTIONS(3930), - [anon_sym_COLON_COLON] = ACTIONS(3932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3932), - [anon_sym___declspec] = ACTIONS(3930), - [anon_sym___based] = ACTIONS(3930), - [anon_sym_signed] = ACTIONS(3930), - [anon_sym_unsigned] = ACTIONS(3930), - [anon_sym_long] = ACTIONS(3930), - [anon_sym_short] = ACTIONS(3930), - [anon_sym_LBRACK] = ACTIONS(3930), - [anon_sym_static] = ACTIONS(3930), - [anon_sym_register] = ACTIONS(3930), - [anon_sym_inline] = ACTIONS(3930), - [anon_sym___inline] = ACTIONS(3930), - [anon_sym___inline__] = ACTIONS(3930), - [anon_sym___forceinline] = ACTIONS(3930), - [anon_sym_thread_local] = ACTIONS(3930), - [anon_sym___thread] = ACTIONS(3930), - [anon_sym_const] = ACTIONS(3930), - [anon_sym_constexpr] = ACTIONS(3930), - [anon_sym_volatile] = ACTIONS(3930), - [anon_sym_restrict] = ACTIONS(3930), - [anon_sym___restrict__] = ACTIONS(3930), - [anon_sym__Atomic] = ACTIONS(3930), - [anon_sym__Noreturn] = ACTIONS(3930), - [anon_sym_noreturn] = ACTIONS(3930), - [anon_sym__Nonnull] = ACTIONS(3930), - [anon_sym_mutable] = ACTIONS(3930), - [anon_sym_constinit] = ACTIONS(3930), - [anon_sym_consteval] = ACTIONS(3930), - [anon_sym_alignas] = ACTIONS(3930), - [anon_sym__Alignas] = ACTIONS(3930), - [sym_primitive_type] = ACTIONS(3930), - [anon_sym_enum] = ACTIONS(3930), - [anon_sym_class] = ACTIONS(3930), - [anon_sym_struct] = ACTIONS(3930), - [anon_sym_union] = ACTIONS(3930), - [anon_sym_typename] = ACTIONS(3930), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3930), - [anon_sym_decltype] = ACTIONS(3930), - [anon_sym_explicit] = ACTIONS(3930), - [anon_sym_private] = ACTIONS(3930), - [anon_sym_template] = ACTIONS(3930), - [anon_sym_operator] = ACTIONS(3930), - [anon_sym_friend] = ACTIONS(3930), - [anon_sym_public] = ACTIONS(3930), - [anon_sym_protected] = ACTIONS(3930), - [anon_sym_static_assert] = ACTIONS(3930), - [anon_sym_LBRACK_COLON] = ACTIONS(3932), + [STATE(2572)] = { + [sym_attribute_specifier] = STATE(3130), + [sym_enumerator_list] = STATE(2748), + [sym__enum_base_clause] = STATE(2680), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8008), + [anon_sym_COMMA] = ACTIONS(8008), + [anon_sym_LPAREN2] = ACTIONS(8008), + [anon_sym_DASH] = ACTIONS(8006), + [anon_sym_PLUS] = ACTIONS(8006), + [anon_sym_STAR] = ACTIONS(8006), + [anon_sym_SLASH] = ACTIONS(8006), + [anon_sym_PERCENT] = ACTIONS(8006), + [anon_sym_PIPE_PIPE] = ACTIONS(8008), + [anon_sym_AMP_AMP] = ACTIONS(8008), + [anon_sym_PIPE] = ACTIONS(8006), + [anon_sym_CARET] = ACTIONS(8006), + [anon_sym_AMP] = ACTIONS(8006), + [anon_sym_EQ_EQ] = ACTIONS(8008), + [anon_sym_BANG_EQ] = ACTIONS(8008), + [anon_sym_GT] = ACTIONS(8006), + [anon_sym_GT_EQ] = ACTIONS(8008), + [anon_sym_LT_EQ] = ACTIONS(8006), + [anon_sym_LT] = ACTIONS(8006), + [anon_sym_LT_LT] = ACTIONS(8006), + [anon_sym_GT_GT] = ACTIONS(8006), + [anon_sym___extension__] = ACTIONS(8008), + [anon_sym___attribute__] = ACTIONS(8293), + [anon_sym___attribute] = ACTIONS(8295), + [anon_sym_COLON] = ACTIONS(8474), + [anon_sym_LBRACE] = ACTIONS(8476), + [anon_sym_LBRACK] = ACTIONS(8008), + [anon_sym_RBRACK] = ACTIONS(8008), + [anon_sym_EQ] = ACTIONS(8006), + [anon_sym_const] = ACTIONS(8006), + [anon_sym_constexpr] = ACTIONS(8008), + [anon_sym_volatile] = ACTIONS(8008), + [anon_sym_restrict] = ACTIONS(8008), + [anon_sym___restrict__] = ACTIONS(8008), + [anon_sym__Atomic] = ACTIONS(8008), + [anon_sym__Noreturn] = ACTIONS(8008), + [anon_sym_noreturn] = ACTIONS(8008), + [anon_sym__Nonnull] = ACTIONS(8008), + [anon_sym_mutable] = ACTIONS(8008), + [anon_sym_constinit] = ACTIONS(8008), + [anon_sym_consteval] = ACTIONS(8008), + [anon_sym_alignas] = ACTIONS(8008), + [anon_sym__Alignas] = ACTIONS(8008), + [anon_sym_QMARK] = ACTIONS(8008), + [anon_sym_STAR_EQ] = ACTIONS(8008), + [anon_sym_SLASH_EQ] = ACTIONS(8008), + [anon_sym_PERCENT_EQ] = ACTIONS(8008), + [anon_sym_PLUS_EQ] = ACTIONS(8008), + [anon_sym_DASH_EQ] = ACTIONS(8008), + [anon_sym_LT_LT_EQ] = ACTIONS(8008), + [anon_sym_GT_GT_EQ] = ACTIONS(8008), + [anon_sym_AMP_EQ] = ACTIONS(8008), + [anon_sym_CARET_EQ] = ACTIONS(8008), + [anon_sym_PIPE_EQ] = ACTIONS(8008), + [anon_sym_and_eq] = ACTIONS(8008), + [anon_sym_or_eq] = ACTIONS(8008), + [anon_sym_xor_eq] = ACTIONS(8008), + [anon_sym_LT_EQ_GT] = ACTIONS(8008), + [anon_sym_or] = ACTIONS(8006), + [anon_sym_and] = ACTIONS(8006), + [anon_sym_bitor] = ACTIONS(8008), + [anon_sym_xor] = ACTIONS(8006), + [anon_sym_bitand] = ACTIONS(8008), + [anon_sym_not_eq] = ACTIONS(8008), + [anon_sym_DASH_DASH] = ACTIONS(8008), + [anon_sym_PLUS_PLUS] = ACTIONS(8008), + [anon_sym_DOT] = ACTIONS(8006), + [anon_sym_DOT_STAR] = ACTIONS(8008), + [anon_sym_DASH_GT] = ACTIONS(8008), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8008), + [anon_sym_override] = ACTIONS(8008), + [anon_sym_requires] = ACTIONS(8008), }, - [STATE(2735)] = { - [sym_identifier] = ACTIONS(3934), - [aux_sym_preproc_def_token1] = ACTIONS(3934), - [aux_sym_preproc_if_token1] = ACTIONS(3934), - [aux_sym_preproc_if_token2] = ACTIONS(3934), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3934), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3934), - [aux_sym_preproc_else_token1] = ACTIONS(3934), - [aux_sym_preproc_elif_token1] = ACTIONS(3934), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3934), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3934), - [sym_preproc_directive] = ACTIONS(3934), - [anon_sym_LPAREN2] = ACTIONS(3936), - [anon_sym_TILDE] = ACTIONS(3936), - [anon_sym_STAR] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3936), - [anon_sym_AMP] = ACTIONS(3934), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym___extension__] = ACTIONS(3934), - [anon_sym_typedef] = ACTIONS(3934), - [anon_sym_virtual] = ACTIONS(3934), - [anon_sym_extern] = ACTIONS(3934), - [anon_sym___attribute__] = ACTIONS(3934), - [anon_sym___attribute] = ACTIONS(3934), - [anon_sym_using] = ACTIONS(3934), - [anon_sym_COLON_COLON] = ACTIONS(3936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3936), - [anon_sym___declspec] = ACTIONS(3934), - [anon_sym___based] = ACTIONS(3934), - [anon_sym_signed] = ACTIONS(3934), - [anon_sym_unsigned] = ACTIONS(3934), - [anon_sym_long] = ACTIONS(3934), - [anon_sym_short] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(3934), - [anon_sym_static] = ACTIONS(3934), - [anon_sym_register] = ACTIONS(3934), - [anon_sym_inline] = ACTIONS(3934), - [anon_sym___inline] = ACTIONS(3934), - [anon_sym___inline__] = ACTIONS(3934), - [anon_sym___forceinline] = ACTIONS(3934), - [anon_sym_thread_local] = ACTIONS(3934), - [anon_sym___thread] = ACTIONS(3934), - [anon_sym_const] = ACTIONS(3934), - [anon_sym_constexpr] = ACTIONS(3934), - [anon_sym_volatile] = ACTIONS(3934), - [anon_sym_restrict] = ACTIONS(3934), - [anon_sym___restrict__] = ACTIONS(3934), - [anon_sym__Atomic] = ACTIONS(3934), - [anon_sym__Noreturn] = ACTIONS(3934), - [anon_sym_noreturn] = ACTIONS(3934), - [anon_sym__Nonnull] = ACTIONS(3934), - [anon_sym_mutable] = ACTIONS(3934), - [anon_sym_constinit] = ACTIONS(3934), - [anon_sym_consteval] = ACTIONS(3934), - [anon_sym_alignas] = ACTIONS(3934), - [anon_sym__Alignas] = ACTIONS(3934), - [sym_primitive_type] = ACTIONS(3934), - [anon_sym_enum] = ACTIONS(3934), - [anon_sym_class] = ACTIONS(3934), - [anon_sym_struct] = ACTIONS(3934), - [anon_sym_union] = ACTIONS(3934), - [anon_sym_typename] = ACTIONS(3934), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3934), - [anon_sym_decltype] = ACTIONS(3934), - [anon_sym_explicit] = ACTIONS(3934), - [anon_sym_private] = ACTIONS(3934), - [anon_sym_template] = ACTIONS(3934), - [anon_sym_operator] = ACTIONS(3934), - [anon_sym_friend] = ACTIONS(3934), - [anon_sym_public] = ACTIONS(3934), - [anon_sym_protected] = ACTIONS(3934), - [anon_sym_static_assert] = ACTIONS(3934), - [anon_sym_LBRACK_COLON] = ACTIONS(3936), + [STATE(2573)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_attributes_end] = STATE(3923), + [sym__function_postfix] = STATE(3628), + [sym_trailing_return_type] = STATE(3075), + [sym_requires_clause] = STATE(3628), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(7789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [aux_sym_preproc_if_token2] = ACTIONS(7791), + [aux_sym_preproc_else_token1] = ACTIONS(7791), + [aux_sym_preproc_elif_token1] = ACTIONS(7789), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6491), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7789), + [anon_sym_or_eq] = ACTIONS(7789), + [anon_sym_xor_eq] = ACTIONS(7789), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7789), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7789), + [anon_sym_not_eq] = ACTIONS(7789), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6497), + [anon_sym___asm__] = ACTIONS(6497), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(7799), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7802), + [anon_sym_override] = ACTIONS(7802), + [anon_sym_requires] = ACTIONS(7805), }, - [STATE(2736)] = { - [sym_identifier] = ACTIONS(4086), - [aux_sym_preproc_def_token1] = ACTIONS(4086), - [aux_sym_preproc_if_token1] = ACTIONS(4086), - [aux_sym_preproc_if_token2] = ACTIONS(4086), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4086), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4086), - [aux_sym_preproc_else_token1] = ACTIONS(4086), - [aux_sym_preproc_elif_token1] = ACTIONS(4086), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4086), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4086), - [sym_preproc_directive] = ACTIONS(4086), - [anon_sym_LPAREN2] = ACTIONS(4088), - [anon_sym_TILDE] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [anon_sym_AMP_AMP] = ACTIONS(4088), - [anon_sym_AMP] = ACTIONS(4086), - [anon_sym_SEMI] = ACTIONS(4088), - [anon_sym___extension__] = ACTIONS(4086), - [anon_sym_typedef] = ACTIONS(4086), - [anon_sym_virtual] = ACTIONS(4086), - [anon_sym_extern] = ACTIONS(4086), - [anon_sym___attribute__] = ACTIONS(4086), - [anon_sym___attribute] = ACTIONS(4086), - [anon_sym_using] = ACTIONS(4086), - [anon_sym_COLON_COLON] = ACTIONS(4088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4088), - [anon_sym___declspec] = ACTIONS(4086), - [anon_sym___based] = ACTIONS(4086), - [anon_sym_signed] = ACTIONS(4086), - [anon_sym_unsigned] = ACTIONS(4086), - [anon_sym_long] = ACTIONS(4086), - [anon_sym_short] = ACTIONS(4086), - [anon_sym_LBRACK] = ACTIONS(4086), - [anon_sym_static] = ACTIONS(4086), - [anon_sym_register] = ACTIONS(4086), - [anon_sym_inline] = ACTIONS(4086), - [anon_sym___inline] = ACTIONS(4086), - [anon_sym___inline__] = ACTIONS(4086), - [anon_sym___forceinline] = ACTIONS(4086), - [anon_sym_thread_local] = ACTIONS(4086), - [anon_sym___thread] = ACTIONS(4086), - [anon_sym_const] = ACTIONS(4086), - [anon_sym_constexpr] = ACTIONS(4086), - [anon_sym_volatile] = ACTIONS(4086), - [anon_sym_restrict] = ACTIONS(4086), - [anon_sym___restrict__] = ACTIONS(4086), - [anon_sym__Atomic] = ACTIONS(4086), - [anon_sym__Noreturn] = ACTIONS(4086), - [anon_sym_noreturn] = ACTIONS(4086), - [anon_sym__Nonnull] = ACTIONS(4086), - [anon_sym_mutable] = ACTIONS(4086), - [anon_sym_constinit] = ACTIONS(4086), - [anon_sym_consteval] = ACTIONS(4086), - [anon_sym_alignas] = ACTIONS(4086), - [anon_sym__Alignas] = ACTIONS(4086), - [sym_primitive_type] = ACTIONS(4086), - [anon_sym_enum] = ACTIONS(4086), - [anon_sym_class] = ACTIONS(4086), - [anon_sym_struct] = ACTIONS(4086), - [anon_sym_union] = ACTIONS(4086), - [anon_sym_typename] = ACTIONS(4086), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4086), - [anon_sym_decltype] = ACTIONS(4086), - [anon_sym_explicit] = ACTIONS(4086), - [anon_sym_private] = ACTIONS(4086), - [anon_sym_template] = ACTIONS(4086), - [anon_sym_operator] = ACTIONS(4086), - [anon_sym_friend] = ACTIONS(4086), - [anon_sym_public] = ACTIONS(4086), - [anon_sym_protected] = ACTIONS(4086), - [anon_sym_static_assert] = ACTIONS(4086), - [anon_sym_LBRACK_COLON] = ACTIONS(4088), + [STATE(2574)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_attributes_end] = STATE(3924), + [sym__function_postfix] = STATE(3655), + [sym_trailing_return_type] = STATE(3076), + [sym_requires_clause] = STATE(3655), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(7968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [aux_sym_preproc_if_token2] = ACTIONS(7966), + [aux_sym_preproc_else_token1] = ACTIONS(7966), + [aux_sym_preproc_elif_token1] = ACTIONS(7968), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7966), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym___attribute__] = ACTIONS(6491), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7968), + [anon_sym_or_eq] = ACTIONS(7968), + [anon_sym_xor_eq] = ACTIONS(7968), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7968), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7968), + [anon_sym_not_eq] = ACTIONS(7968), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6497), + [anon_sym___asm__] = ACTIONS(6497), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(7991), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7994), + [anon_sym_override] = ACTIONS(7994), + [anon_sym_requires] = ACTIONS(7997), }, - [STATE(2737)] = { - [sym_identifier] = ACTIONS(3938), - [aux_sym_preproc_def_token1] = ACTIONS(3938), - [aux_sym_preproc_if_token1] = ACTIONS(3938), - [aux_sym_preproc_if_token2] = ACTIONS(3938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3938), - [aux_sym_preproc_else_token1] = ACTIONS(3938), - [aux_sym_preproc_elif_token1] = ACTIONS(3938), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3938), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3938), - [sym_preproc_directive] = ACTIONS(3938), - [anon_sym_LPAREN2] = ACTIONS(3940), - [anon_sym_TILDE] = ACTIONS(3940), - [anon_sym_STAR] = ACTIONS(3940), - [anon_sym_AMP_AMP] = ACTIONS(3940), - [anon_sym_AMP] = ACTIONS(3938), - [anon_sym_SEMI] = ACTIONS(3940), - [anon_sym___extension__] = ACTIONS(3938), - [anon_sym_typedef] = ACTIONS(3938), - [anon_sym_virtual] = ACTIONS(3938), - [anon_sym_extern] = ACTIONS(3938), - [anon_sym___attribute__] = ACTIONS(3938), - [anon_sym___attribute] = ACTIONS(3938), - [anon_sym_using] = ACTIONS(3938), - [anon_sym_COLON_COLON] = ACTIONS(3940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3940), - [anon_sym___declspec] = ACTIONS(3938), - [anon_sym___based] = ACTIONS(3938), - [anon_sym_signed] = ACTIONS(3938), - [anon_sym_unsigned] = ACTIONS(3938), - [anon_sym_long] = ACTIONS(3938), - [anon_sym_short] = ACTIONS(3938), - [anon_sym_LBRACK] = ACTIONS(3938), - [anon_sym_static] = ACTIONS(3938), - [anon_sym_register] = ACTIONS(3938), - [anon_sym_inline] = ACTIONS(3938), - [anon_sym___inline] = ACTIONS(3938), - [anon_sym___inline__] = ACTIONS(3938), - [anon_sym___forceinline] = ACTIONS(3938), - [anon_sym_thread_local] = ACTIONS(3938), - [anon_sym___thread] = ACTIONS(3938), - [anon_sym_const] = ACTIONS(3938), - [anon_sym_constexpr] = ACTIONS(3938), - [anon_sym_volatile] = ACTIONS(3938), - [anon_sym_restrict] = ACTIONS(3938), - [anon_sym___restrict__] = ACTIONS(3938), - [anon_sym__Atomic] = ACTIONS(3938), - [anon_sym__Noreturn] = ACTIONS(3938), - [anon_sym_noreturn] = ACTIONS(3938), - [anon_sym__Nonnull] = ACTIONS(3938), - [anon_sym_mutable] = ACTIONS(3938), - [anon_sym_constinit] = ACTIONS(3938), - [anon_sym_consteval] = ACTIONS(3938), - [anon_sym_alignas] = ACTIONS(3938), - [anon_sym__Alignas] = ACTIONS(3938), - [sym_primitive_type] = ACTIONS(3938), - [anon_sym_enum] = ACTIONS(3938), - [anon_sym_class] = ACTIONS(3938), - [anon_sym_struct] = ACTIONS(3938), - [anon_sym_union] = ACTIONS(3938), - [anon_sym_typename] = ACTIONS(3938), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3938), - [anon_sym_decltype] = ACTIONS(3938), - [anon_sym_explicit] = ACTIONS(3938), - [anon_sym_private] = ACTIONS(3938), - [anon_sym_template] = ACTIONS(3938), - [anon_sym_operator] = ACTIONS(3938), - [anon_sym_friend] = ACTIONS(3938), - [anon_sym_public] = ACTIONS(3938), - [anon_sym_protected] = ACTIONS(3938), - [anon_sym_static_assert] = ACTIONS(3938), - [anon_sym_LBRACK_COLON] = ACTIONS(3940), + [STATE(2575)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_attributes_end] = STATE(3925), + [sym__function_postfix] = STATE(3675), + [sym_trailing_return_type] = STATE(3077), + [sym_requires_clause] = STATE(3675), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(8424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), + [anon_sym_COMMA] = ACTIONS(8422), + [aux_sym_preproc_if_token2] = ACTIONS(8422), + [aux_sym_preproc_else_token1] = ACTIONS(8422), + [aux_sym_preproc_elif_token1] = ACTIONS(8424), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8422), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8422), + [anon_sym_LPAREN2] = ACTIONS(8422), + [anon_sym_DASH] = ACTIONS(8424), + [anon_sym_PLUS] = ACTIONS(8424), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_SLASH] = ACTIONS(8424), + [anon_sym_PERCENT] = ACTIONS(8424), + [anon_sym_PIPE_PIPE] = ACTIONS(8422), + [anon_sym_AMP_AMP] = ACTIONS(8422), + [anon_sym_PIPE] = ACTIONS(8424), + [anon_sym_CARET] = ACTIONS(8424), + [anon_sym_AMP] = ACTIONS(8424), + [anon_sym_EQ_EQ] = ACTIONS(8422), + [anon_sym_BANG_EQ] = ACTIONS(8422), + [anon_sym_GT] = ACTIONS(8424), + [anon_sym_GT_EQ] = ACTIONS(8422), + [anon_sym_LT_EQ] = ACTIONS(8424), + [anon_sym_LT] = ACTIONS(8424), + [anon_sym_LT_LT] = ACTIONS(8424), + [anon_sym_GT_GT] = ACTIONS(8424), + [anon_sym___attribute__] = ACTIONS(6491), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(8424), + [anon_sym_EQ] = ACTIONS(8424), + [anon_sym_QMARK] = ACTIONS(8422), + [anon_sym_STAR_EQ] = ACTIONS(8422), + [anon_sym_SLASH_EQ] = ACTIONS(8422), + [anon_sym_PERCENT_EQ] = ACTIONS(8422), + [anon_sym_PLUS_EQ] = ACTIONS(8422), + [anon_sym_DASH_EQ] = ACTIONS(8422), + [anon_sym_LT_LT_EQ] = ACTIONS(8422), + [anon_sym_GT_GT_EQ] = ACTIONS(8422), + [anon_sym_AMP_EQ] = ACTIONS(8422), + [anon_sym_CARET_EQ] = ACTIONS(8422), + [anon_sym_PIPE_EQ] = ACTIONS(8422), + [anon_sym_and_eq] = ACTIONS(8424), + [anon_sym_or_eq] = ACTIONS(8424), + [anon_sym_xor_eq] = ACTIONS(8424), + [anon_sym_LT_EQ_GT] = ACTIONS(8422), + [anon_sym_or] = ACTIONS(8424), + [anon_sym_and] = ACTIONS(8424), + [anon_sym_bitor] = ACTIONS(8424), + [anon_sym_xor] = ACTIONS(8424), + [anon_sym_bitand] = ACTIONS(8424), + [anon_sym_not_eq] = ACTIONS(8424), + [anon_sym_DASH_DASH] = ACTIONS(8422), + [anon_sym_PLUS_PLUS] = ACTIONS(8422), + [anon_sym_asm] = ACTIONS(6497), + [anon_sym___asm__] = ACTIONS(6497), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(8424), + [anon_sym_DOT_STAR] = ACTIONS(8422), + [anon_sym_DASH_GT] = ACTIONS(8478), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8481), + [anon_sym_override] = ACTIONS(8481), + [anon_sym_requires] = ACTIONS(8484), }, - [STATE(2738)] = { - [sym_identifier] = ACTIONS(3942), - [aux_sym_preproc_def_token1] = ACTIONS(3942), - [aux_sym_preproc_if_token1] = ACTIONS(3942), - [aux_sym_preproc_if_token2] = ACTIONS(3942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3942), - [aux_sym_preproc_else_token1] = ACTIONS(3942), - [aux_sym_preproc_elif_token1] = ACTIONS(3942), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3942), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3942), - [sym_preproc_directive] = ACTIONS(3942), - [anon_sym_LPAREN2] = ACTIONS(3944), - [anon_sym_TILDE] = ACTIONS(3944), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_AMP_AMP] = ACTIONS(3944), - [anon_sym_AMP] = ACTIONS(3942), - [anon_sym_SEMI] = ACTIONS(3944), - [anon_sym___extension__] = ACTIONS(3942), - [anon_sym_typedef] = ACTIONS(3942), - [anon_sym_virtual] = ACTIONS(3942), - [anon_sym_extern] = ACTIONS(3942), - [anon_sym___attribute__] = ACTIONS(3942), - [anon_sym___attribute] = ACTIONS(3942), - [anon_sym_using] = ACTIONS(3942), - [anon_sym_COLON_COLON] = ACTIONS(3944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3944), - [anon_sym___declspec] = ACTIONS(3942), - [anon_sym___based] = ACTIONS(3942), - [anon_sym_signed] = ACTIONS(3942), - [anon_sym_unsigned] = ACTIONS(3942), - [anon_sym_long] = ACTIONS(3942), - [anon_sym_short] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(3942), - [anon_sym_static] = ACTIONS(3942), - [anon_sym_register] = ACTIONS(3942), - [anon_sym_inline] = ACTIONS(3942), - [anon_sym___inline] = ACTIONS(3942), - [anon_sym___inline__] = ACTIONS(3942), - [anon_sym___forceinline] = ACTIONS(3942), - [anon_sym_thread_local] = ACTIONS(3942), - [anon_sym___thread] = ACTIONS(3942), - [anon_sym_const] = ACTIONS(3942), - [anon_sym_constexpr] = ACTIONS(3942), - [anon_sym_volatile] = ACTIONS(3942), - [anon_sym_restrict] = ACTIONS(3942), - [anon_sym___restrict__] = ACTIONS(3942), - [anon_sym__Atomic] = ACTIONS(3942), - [anon_sym__Noreturn] = ACTIONS(3942), - [anon_sym_noreturn] = ACTIONS(3942), - [anon_sym__Nonnull] = ACTIONS(3942), - [anon_sym_mutable] = ACTIONS(3942), - [anon_sym_constinit] = ACTIONS(3942), - [anon_sym_consteval] = ACTIONS(3942), - [anon_sym_alignas] = ACTIONS(3942), - [anon_sym__Alignas] = ACTIONS(3942), - [sym_primitive_type] = ACTIONS(3942), - [anon_sym_enum] = ACTIONS(3942), - [anon_sym_class] = ACTIONS(3942), - [anon_sym_struct] = ACTIONS(3942), - [anon_sym_union] = ACTIONS(3942), - [anon_sym_typename] = ACTIONS(3942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3942), - [anon_sym_decltype] = ACTIONS(3942), - [anon_sym_explicit] = ACTIONS(3942), - [anon_sym_private] = ACTIONS(3942), - [anon_sym_template] = ACTIONS(3942), - [anon_sym_operator] = ACTIONS(3942), - [anon_sym_friend] = ACTIONS(3942), - [anon_sym_public] = ACTIONS(3942), - [anon_sym_protected] = ACTIONS(3942), - [anon_sym_static_assert] = ACTIONS(3942), - [anon_sym_LBRACK_COLON] = ACTIONS(3944), + [STATE(2576)] = { + [sym_identifier] = ACTIONS(3128), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), + [anon_sym_COMMA] = ACTIONS(3118), + [anon_sym_RPAREN] = ACTIONS(3118), + [anon_sym_LPAREN2] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_SLASH] = ACTIONS(3128), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_PIPE_PIPE] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_CARET] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3128), + [anon_sym_GT_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(3128), + [anon_sym_LT_LT] = ACTIONS(3128), + [anon_sym_GT_GT] = ACTIONS(3128), + [anon_sym___extension__] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3128), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_STAR_EQ] = ACTIONS(3118), + [anon_sym_SLASH_EQ] = ACTIONS(3118), + [anon_sym_PERCENT_EQ] = ACTIONS(3118), + [anon_sym_PLUS_EQ] = ACTIONS(3118), + [anon_sym_DASH_EQ] = ACTIONS(3118), + [anon_sym_LT_LT_EQ] = ACTIONS(3118), + [anon_sym_GT_GT_EQ] = ACTIONS(3118), + [anon_sym_AMP_EQ] = ACTIONS(3118), + [anon_sym_CARET_EQ] = ACTIONS(3118), + [anon_sym_PIPE_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ_GT] = ACTIONS(3118), + [anon_sym_or] = ACTIONS(3128), + [anon_sym_and] = ACTIONS(3128), + [anon_sym_bitor] = ACTIONS(3128), + [anon_sym_xor] = ACTIONS(3128), + [anon_sym_bitand] = ACTIONS(3128), + [anon_sym_not_eq] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_DOT] = ACTIONS(3128), + [anon_sym_DOT_STAR] = ACTIONS(3118), + [anon_sym_DASH_GT] = ACTIONS(3128), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3128), + [anon_sym_override] = ACTIONS(3128), + [anon_sym_requires] = ACTIONS(3128), + [anon_sym_DASH_GT_STAR] = ACTIONS(3118), }, - [STATE(2739)] = { - [sym_identifier] = ACTIONS(3676), - [aux_sym_preproc_def_token1] = ACTIONS(3676), - [aux_sym_preproc_if_token1] = ACTIONS(3676), - [aux_sym_preproc_if_token2] = ACTIONS(3676), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3676), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3676), - [aux_sym_preproc_else_token1] = ACTIONS(3676), - [aux_sym_preproc_elif_token1] = ACTIONS(3676), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3676), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3676), - [sym_preproc_directive] = ACTIONS(3676), - [anon_sym_LPAREN2] = ACTIONS(3678), - [anon_sym_TILDE] = ACTIONS(3678), - [anon_sym_STAR] = ACTIONS(3678), - [anon_sym_AMP_AMP] = ACTIONS(3678), - [anon_sym_AMP] = ACTIONS(3676), - [anon_sym_SEMI] = ACTIONS(3678), - [anon_sym___extension__] = ACTIONS(3676), - [anon_sym_typedef] = ACTIONS(3676), - [anon_sym_virtual] = ACTIONS(3676), - [anon_sym_extern] = ACTIONS(3676), - [anon_sym___attribute__] = ACTIONS(3676), - [anon_sym___attribute] = ACTIONS(3676), - [anon_sym_using] = ACTIONS(3676), - [anon_sym_COLON_COLON] = ACTIONS(3678), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3678), - [anon_sym___declspec] = ACTIONS(3676), - [anon_sym___based] = ACTIONS(3676), - [anon_sym_signed] = ACTIONS(3676), - [anon_sym_unsigned] = ACTIONS(3676), - [anon_sym_long] = ACTIONS(3676), - [anon_sym_short] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3676), - [anon_sym_static] = ACTIONS(3676), - [anon_sym_register] = ACTIONS(3676), - [anon_sym_inline] = ACTIONS(3676), - [anon_sym___inline] = ACTIONS(3676), - [anon_sym___inline__] = ACTIONS(3676), - [anon_sym___forceinline] = ACTIONS(3676), - [anon_sym_thread_local] = ACTIONS(3676), - [anon_sym___thread] = ACTIONS(3676), - [anon_sym_const] = ACTIONS(3676), - [anon_sym_constexpr] = ACTIONS(3676), - [anon_sym_volatile] = ACTIONS(3676), - [anon_sym_restrict] = ACTIONS(3676), - [anon_sym___restrict__] = ACTIONS(3676), - [anon_sym__Atomic] = ACTIONS(3676), - [anon_sym__Noreturn] = ACTIONS(3676), - [anon_sym_noreturn] = ACTIONS(3676), - [anon_sym__Nonnull] = ACTIONS(3676), - [anon_sym_mutable] = ACTIONS(3676), - [anon_sym_constinit] = ACTIONS(3676), - [anon_sym_consteval] = ACTIONS(3676), - [anon_sym_alignas] = ACTIONS(3676), - [anon_sym__Alignas] = ACTIONS(3676), - [sym_primitive_type] = ACTIONS(3676), - [anon_sym_enum] = ACTIONS(3676), - [anon_sym_class] = ACTIONS(3676), - [anon_sym_struct] = ACTIONS(3676), - [anon_sym_union] = ACTIONS(3676), - [anon_sym_typename] = ACTIONS(3676), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3676), - [anon_sym_decltype] = ACTIONS(3676), - [anon_sym_explicit] = ACTIONS(3676), - [anon_sym_private] = ACTIONS(3676), - [anon_sym_template] = ACTIONS(3676), - [anon_sym_operator] = ACTIONS(3676), - [anon_sym_friend] = ACTIONS(3676), - [anon_sym_public] = ACTIONS(3676), - [anon_sym_protected] = ACTIONS(3676), - [anon_sym_static_assert] = ACTIONS(3676), - [anon_sym_LBRACK_COLON] = ACTIONS(3678), + [STATE(2577)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6601), + [anon_sym_COMMA] = ACTIONS(6601), + [anon_sym_LPAREN2] = ACTIONS(6601), + [anon_sym_DASH] = ACTIONS(6594), + [anon_sym_PLUS] = ACTIONS(6594), + [anon_sym_STAR] = ACTIONS(6594), + [anon_sym_SLASH] = ACTIONS(6594), + [anon_sym_PERCENT] = ACTIONS(6594), + [anon_sym_PIPE_PIPE] = ACTIONS(6601), + [anon_sym_AMP_AMP] = ACTIONS(6601), + [anon_sym_PIPE] = ACTIONS(6594), + [anon_sym_CARET] = ACTIONS(6594), + [anon_sym_AMP] = ACTIONS(6594), + [anon_sym_EQ_EQ] = ACTIONS(6601), + [anon_sym_BANG_EQ] = ACTIONS(6601), + [anon_sym_GT] = ACTIONS(6594), + [anon_sym_GT_EQ] = ACTIONS(6601), + [anon_sym_LT_EQ] = ACTIONS(6594), + [anon_sym_LT] = ACTIONS(6594), + [anon_sym_LT_LT] = ACTIONS(6594), + [anon_sym_GT_GT] = ACTIONS(6594), + [anon_sym___extension__] = ACTIONS(6601), + [anon_sym___attribute__] = ACTIONS(6601), + [anon_sym___attribute] = ACTIONS(6594), + [anon_sym_COLON] = ACTIONS(6594), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_LBRACK] = ACTIONS(6601), + [anon_sym_RBRACK] = ACTIONS(6601), + [anon_sym_EQ] = ACTIONS(6594), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6601), + [anon_sym_volatile] = ACTIONS(6601), + [anon_sym_restrict] = ACTIONS(6601), + [anon_sym___restrict__] = ACTIONS(6601), + [anon_sym__Atomic] = ACTIONS(6601), + [anon_sym__Noreturn] = ACTIONS(6601), + [anon_sym_noreturn] = ACTIONS(6601), + [anon_sym__Nonnull] = ACTIONS(6601), + [anon_sym_mutable] = ACTIONS(6601), + [anon_sym_constinit] = ACTIONS(6601), + [anon_sym_consteval] = ACTIONS(6601), + [anon_sym_alignas] = ACTIONS(6601), + [anon_sym__Alignas] = ACTIONS(6601), + [anon_sym_QMARK] = ACTIONS(6601), + [anon_sym_STAR_EQ] = ACTIONS(6601), + [anon_sym_SLASH_EQ] = ACTIONS(6601), + [anon_sym_PERCENT_EQ] = ACTIONS(6601), + [anon_sym_PLUS_EQ] = ACTIONS(6601), + [anon_sym_DASH_EQ] = ACTIONS(6601), + [anon_sym_LT_LT_EQ] = ACTIONS(6601), + [anon_sym_GT_GT_EQ] = ACTIONS(6601), + [anon_sym_AMP_EQ] = ACTIONS(6601), + [anon_sym_CARET_EQ] = ACTIONS(6601), + [anon_sym_PIPE_EQ] = ACTIONS(6601), + [anon_sym_and_eq] = ACTIONS(6601), + [anon_sym_or_eq] = ACTIONS(6601), + [anon_sym_xor_eq] = ACTIONS(6601), + [anon_sym_LT_EQ_GT] = ACTIONS(6601), + [anon_sym_or] = ACTIONS(6594), + [anon_sym_and] = ACTIONS(6594), + [anon_sym_bitor] = ACTIONS(6601), + [anon_sym_xor] = ACTIONS(6594), + [anon_sym_bitand] = ACTIONS(6601), + [anon_sym_not_eq] = ACTIONS(6601), + [anon_sym_DASH_DASH] = ACTIONS(6601), + [anon_sym_PLUS_PLUS] = ACTIONS(6601), + [anon_sym_DOT] = ACTIONS(6594), + [anon_sym_DOT_STAR] = ACTIONS(6601), + [anon_sym_DASH_GT] = ACTIONS(6601), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6601), + [anon_sym_decltype] = ACTIONS(6601), + [anon_sym_final] = ACTIONS(6601), + [anon_sym_override] = ACTIONS(6601), + [anon_sym_requires] = ACTIONS(6601), }, - [STATE(2740)] = { - [sym_identifier] = ACTIONS(3946), - [aux_sym_preproc_def_token1] = ACTIONS(3946), - [aux_sym_preproc_if_token1] = ACTIONS(3946), - [aux_sym_preproc_if_token2] = ACTIONS(3946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3946), - [aux_sym_preproc_else_token1] = ACTIONS(3946), - [aux_sym_preproc_elif_token1] = ACTIONS(3946), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3946), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3946), - [sym_preproc_directive] = ACTIONS(3946), - [anon_sym_LPAREN2] = ACTIONS(3948), - [anon_sym_TILDE] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym___extension__] = ACTIONS(3946), - [anon_sym_typedef] = ACTIONS(3946), - [anon_sym_virtual] = ACTIONS(3946), - [anon_sym_extern] = ACTIONS(3946), - [anon_sym___attribute__] = ACTIONS(3946), - [anon_sym___attribute] = ACTIONS(3946), - [anon_sym_using] = ACTIONS(3946), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3948), - [anon_sym___declspec] = ACTIONS(3946), - [anon_sym___based] = ACTIONS(3946), - [anon_sym_signed] = ACTIONS(3946), - [anon_sym_unsigned] = ACTIONS(3946), - [anon_sym_long] = ACTIONS(3946), - [anon_sym_short] = ACTIONS(3946), - [anon_sym_LBRACK] = ACTIONS(3946), - [anon_sym_static] = ACTIONS(3946), - [anon_sym_register] = ACTIONS(3946), - [anon_sym_inline] = ACTIONS(3946), - [anon_sym___inline] = ACTIONS(3946), - [anon_sym___inline__] = ACTIONS(3946), - [anon_sym___forceinline] = ACTIONS(3946), - [anon_sym_thread_local] = ACTIONS(3946), - [anon_sym___thread] = ACTIONS(3946), - [anon_sym_const] = ACTIONS(3946), - [anon_sym_constexpr] = ACTIONS(3946), - [anon_sym_volatile] = ACTIONS(3946), - [anon_sym_restrict] = ACTIONS(3946), - [anon_sym___restrict__] = ACTIONS(3946), - [anon_sym__Atomic] = ACTIONS(3946), - [anon_sym__Noreturn] = ACTIONS(3946), - [anon_sym_noreturn] = ACTIONS(3946), - [anon_sym__Nonnull] = ACTIONS(3946), - [anon_sym_mutable] = ACTIONS(3946), - [anon_sym_constinit] = ACTIONS(3946), - [anon_sym_consteval] = ACTIONS(3946), - [anon_sym_alignas] = ACTIONS(3946), - [anon_sym__Alignas] = ACTIONS(3946), - [sym_primitive_type] = ACTIONS(3946), - [anon_sym_enum] = ACTIONS(3946), - [anon_sym_class] = ACTIONS(3946), - [anon_sym_struct] = ACTIONS(3946), - [anon_sym_union] = ACTIONS(3946), - [anon_sym_typename] = ACTIONS(3946), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3946), - [anon_sym_decltype] = ACTIONS(3946), - [anon_sym_explicit] = ACTIONS(3946), - [anon_sym_private] = ACTIONS(3946), - [anon_sym_template] = ACTIONS(3946), - [anon_sym_operator] = ACTIONS(3946), - [anon_sym_friend] = ACTIONS(3946), - [anon_sym_public] = ACTIONS(3946), - [anon_sym_protected] = ACTIONS(3946), - [anon_sym_static_assert] = ACTIONS(3946), - [anon_sym_LBRACK_COLON] = ACTIONS(3948), + [STATE(2578)] = { + [sym_identifier] = ACTIONS(7077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), + [anon_sym_COMMA] = ACTIONS(7079), + [anon_sym_RPAREN] = ACTIONS(7079), + [anon_sym_LPAREN2] = ACTIONS(7079), + [anon_sym_DASH] = ACTIONS(7077), + [anon_sym_PLUS] = ACTIONS(7077), + [anon_sym_STAR] = ACTIONS(7077), + [anon_sym_SLASH] = ACTIONS(7077), + [anon_sym_PERCENT] = ACTIONS(7077), + [anon_sym_PIPE_PIPE] = ACTIONS(7079), + [anon_sym_AMP_AMP] = ACTIONS(7079), + [anon_sym_PIPE] = ACTIONS(7077), + [anon_sym_CARET] = ACTIONS(7077), + [anon_sym_AMP] = ACTIONS(7077), + [anon_sym_EQ_EQ] = ACTIONS(7079), + [anon_sym_BANG_EQ] = ACTIONS(7079), + [anon_sym_GT] = ACTIONS(7077), + [anon_sym_GT_EQ] = ACTIONS(7079), + [anon_sym_LT_EQ] = ACTIONS(7077), + [anon_sym_LT] = ACTIONS(7077), + [anon_sym_LT_LT] = ACTIONS(7077), + [anon_sym_GT_GT] = ACTIONS(7077), + [anon_sym___extension__] = ACTIONS(7077), + [anon_sym___attribute__] = ACTIONS(7077), + [anon_sym___attribute] = ACTIONS(7077), + [anon_sym_LBRACE] = ACTIONS(7079), + [anon_sym_signed] = ACTIONS(7077), + [anon_sym_unsigned] = ACTIONS(7077), + [anon_sym_long] = ACTIONS(7077), + [anon_sym_short] = ACTIONS(7077), + [anon_sym_LBRACK] = ACTIONS(7079), + [anon_sym_EQ] = ACTIONS(7077), + [anon_sym_const] = ACTIONS(7077), + [anon_sym_constexpr] = ACTIONS(7077), + [anon_sym_volatile] = ACTIONS(7077), + [anon_sym_restrict] = ACTIONS(7077), + [anon_sym___restrict__] = ACTIONS(7077), + [anon_sym__Atomic] = ACTIONS(7077), + [anon_sym__Noreturn] = ACTIONS(7077), + [anon_sym_noreturn] = ACTIONS(7077), + [anon_sym__Nonnull] = ACTIONS(7077), + [anon_sym_mutable] = ACTIONS(7077), + [anon_sym_constinit] = ACTIONS(7077), + [anon_sym_consteval] = ACTIONS(7077), + [anon_sym_alignas] = ACTIONS(7077), + [anon_sym__Alignas] = ACTIONS(7077), + [sym_primitive_type] = ACTIONS(7077), + [anon_sym_QMARK] = ACTIONS(7079), + [anon_sym_STAR_EQ] = ACTIONS(7079), + [anon_sym_SLASH_EQ] = ACTIONS(7079), + [anon_sym_PERCENT_EQ] = ACTIONS(7079), + [anon_sym_PLUS_EQ] = ACTIONS(7079), + [anon_sym_DASH_EQ] = ACTIONS(7079), + [anon_sym_LT_LT_EQ] = ACTIONS(7079), + [anon_sym_GT_GT_EQ] = ACTIONS(7079), + [anon_sym_AMP_EQ] = ACTIONS(7079), + [anon_sym_CARET_EQ] = ACTIONS(7079), + [anon_sym_PIPE_EQ] = ACTIONS(7079), + [anon_sym_LT_EQ_GT] = ACTIONS(7079), + [anon_sym_or] = ACTIONS(7077), + [anon_sym_and] = ACTIONS(7077), + [anon_sym_bitor] = ACTIONS(7077), + [anon_sym_xor] = ACTIONS(7077), + [anon_sym_bitand] = ACTIONS(7077), + [anon_sym_not_eq] = ACTIONS(7077), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DOT] = ACTIONS(7077), + [anon_sym_DOT_STAR] = ACTIONS(7079), + [anon_sym_DASH_GT] = ACTIONS(7077), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7077), + [anon_sym_override] = ACTIONS(7077), + [anon_sym_requires] = ACTIONS(7077), + [anon_sym_DASH_GT_STAR] = ACTIONS(7079), }, - [STATE(2741)] = { - [sym_identifier] = ACTIONS(3950), - [aux_sym_preproc_def_token1] = ACTIONS(3950), - [aux_sym_preproc_if_token1] = ACTIONS(3950), - [aux_sym_preproc_if_token2] = ACTIONS(3950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3950), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3950), - [sym_preproc_directive] = ACTIONS(3950), - [anon_sym_LPAREN2] = ACTIONS(3952), - [anon_sym_TILDE] = ACTIONS(3952), - [anon_sym_STAR] = ACTIONS(3952), - [anon_sym_AMP_AMP] = ACTIONS(3952), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_SEMI] = ACTIONS(3952), - [anon_sym___extension__] = ACTIONS(3950), - [anon_sym_typedef] = ACTIONS(3950), - [anon_sym_virtual] = ACTIONS(3950), - [anon_sym_extern] = ACTIONS(3950), - [anon_sym___attribute__] = ACTIONS(3950), - [anon_sym___attribute] = ACTIONS(3950), - [anon_sym_using] = ACTIONS(3950), - [anon_sym_COLON_COLON] = ACTIONS(3952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), - [anon_sym___declspec] = ACTIONS(3950), - [anon_sym___based] = ACTIONS(3950), - [anon_sym_signed] = ACTIONS(3950), - [anon_sym_unsigned] = ACTIONS(3950), - [anon_sym_long] = ACTIONS(3950), - [anon_sym_short] = ACTIONS(3950), - [anon_sym_LBRACK] = ACTIONS(3950), - [anon_sym_static] = ACTIONS(3950), - [anon_sym_register] = ACTIONS(3950), - [anon_sym_inline] = ACTIONS(3950), - [anon_sym___inline] = ACTIONS(3950), - [anon_sym___inline__] = ACTIONS(3950), - [anon_sym___forceinline] = ACTIONS(3950), - [anon_sym_thread_local] = ACTIONS(3950), - [anon_sym___thread] = ACTIONS(3950), - [anon_sym_const] = ACTIONS(3950), - [anon_sym_constexpr] = ACTIONS(3950), - [anon_sym_volatile] = ACTIONS(3950), - [anon_sym_restrict] = ACTIONS(3950), - [anon_sym___restrict__] = ACTIONS(3950), - [anon_sym__Atomic] = ACTIONS(3950), - [anon_sym__Noreturn] = ACTIONS(3950), - [anon_sym_noreturn] = ACTIONS(3950), - [anon_sym__Nonnull] = ACTIONS(3950), - [anon_sym_mutable] = ACTIONS(3950), - [anon_sym_constinit] = ACTIONS(3950), - [anon_sym_consteval] = ACTIONS(3950), - [anon_sym_alignas] = ACTIONS(3950), - [anon_sym__Alignas] = ACTIONS(3950), - [sym_primitive_type] = ACTIONS(3950), - [anon_sym_enum] = ACTIONS(3950), - [anon_sym_class] = ACTIONS(3950), - [anon_sym_struct] = ACTIONS(3950), - [anon_sym_union] = ACTIONS(3950), - [anon_sym_typename] = ACTIONS(3950), + [STATE(2579)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7291), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7291), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7291), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7291), + [anon_sym_GT_GT] = ACTIONS(7291), + [anon_sym___extension__] = ACTIONS(7293), + [anon_sym___attribute__] = ACTIONS(7293), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_COLON] = ACTIONS(7291), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_RBRACK] = ACTIONS(7293), + [anon_sym_EQ] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7293), + [anon_sym_volatile] = ACTIONS(7293), + [anon_sym_restrict] = ACTIONS(7293), + [anon_sym___restrict__] = ACTIONS(7293), + [anon_sym__Atomic] = ACTIONS(7293), + [anon_sym__Noreturn] = ACTIONS(7293), + [anon_sym_noreturn] = ACTIONS(7293), + [anon_sym__Nonnull] = ACTIONS(7293), + [anon_sym_mutable] = ACTIONS(7293), + [anon_sym_constinit] = ACTIONS(7293), + [anon_sym_consteval] = ACTIONS(7293), + [anon_sym_alignas] = ACTIONS(7293), + [anon_sym__Alignas] = ACTIONS(7293), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_STAR_EQ] = ACTIONS(7293), + [anon_sym_SLASH_EQ] = ACTIONS(7293), + [anon_sym_PERCENT_EQ] = ACTIONS(7293), + [anon_sym_PLUS_EQ] = ACTIONS(7293), + [anon_sym_DASH_EQ] = ACTIONS(7293), + [anon_sym_LT_LT_EQ] = ACTIONS(7293), + [anon_sym_GT_GT_EQ] = ACTIONS(7293), + [anon_sym_AMP_EQ] = ACTIONS(7293), + [anon_sym_CARET_EQ] = ACTIONS(7293), + [anon_sym_PIPE_EQ] = ACTIONS(7293), + [anon_sym_and_eq] = ACTIONS(7293), + [anon_sym_or_eq] = ACTIONS(7293), + [anon_sym_xor_eq] = ACTIONS(7293), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_bitor] = ACTIONS(7293), + [anon_sym_xor] = ACTIONS(7291), + [anon_sym_bitand] = ACTIONS(7293), + [anon_sym_not_eq] = ACTIONS(7293), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7293), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3950), - [anon_sym_decltype] = ACTIONS(3950), - [anon_sym_explicit] = ACTIONS(3950), - [anon_sym_private] = ACTIONS(3950), - [anon_sym_template] = ACTIONS(3950), - [anon_sym_operator] = ACTIONS(3950), - [anon_sym_friend] = ACTIONS(3950), - [anon_sym_public] = ACTIONS(3950), - [anon_sym_protected] = ACTIONS(3950), - [anon_sym_static_assert] = ACTIONS(3950), - [anon_sym_LBRACK_COLON] = ACTIONS(3952), - }, - [STATE(2742)] = { - [sym_identifier] = ACTIONS(8400), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8402), - [anon_sym_COMMA] = ACTIONS(8402), - [anon_sym_RPAREN] = ACTIONS(8402), - [aux_sym_preproc_if_token2] = ACTIONS(8402), - [aux_sym_preproc_else_token1] = ACTIONS(8402), - [aux_sym_preproc_elif_token1] = ACTIONS(8400), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8402), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8402), - [anon_sym_LPAREN2] = ACTIONS(8402), - [anon_sym_DASH] = ACTIONS(8400), - [anon_sym_PLUS] = ACTIONS(8400), - [anon_sym_STAR] = ACTIONS(8400), - [anon_sym_SLASH] = ACTIONS(8400), - [anon_sym_PERCENT] = ACTIONS(8400), - [anon_sym_PIPE_PIPE] = ACTIONS(8402), - [anon_sym_AMP_AMP] = ACTIONS(8402), - [anon_sym_PIPE] = ACTIONS(8400), - [anon_sym_CARET] = ACTIONS(8400), - [anon_sym_AMP] = ACTIONS(8400), - [anon_sym_EQ_EQ] = ACTIONS(8402), - [anon_sym_BANG_EQ] = ACTIONS(8402), - [anon_sym_GT] = ACTIONS(8400), - [anon_sym_GT_EQ] = ACTIONS(8402), - [anon_sym_LT_EQ] = ACTIONS(8400), - [anon_sym_LT] = ACTIONS(8400), - [anon_sym_LT_LT] = ACTIONS(8400), - [anon_sym_GT_GT] = ACTIONS(8400), - [anon_sym_SEMI] = ACTIONS(8402), - [anon_sym_COLON] = ACTIONS(8400), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8402), - [anon_sym_RBRACE] = ACTIONS(8402), - [anon_sym_LBRACK] = ACTIONS(8402), - [anon_sym_EQ] = ACTIONS(8400), - [anon_sym_QMARK] = ACTIONS(8402), - [anon_sym_STAR_EQ] = ACTIONS(8402), - [anon_sym_SLASH_EQ] = ACTIONS(8402), - [anon_sym_PERCENT_EQ] = ACTIONS(8402), - [anon_sym_PLUS_EQ] = ACTIONS(8402), - [anon_sym_DASH_EQ] = ACTIONS(8402), - [anon_sym_LT_LT_EQ] = ACTIONS(8402), - [anon_sym_GT_GT_EQ] = ACTIONS(8402), - [anon_sym_AMP_EQ] = ACTIONS(8402), - [anon_sym_CARET_EQ] = ACTIONS(8402), - [anon_sym_PIPE_EQ] = ACTIONS(8402), - [anon_sym_and_eq] = ACTIONS(8400), - [anon_sym_or_eq] = ACTIONS(8400), - [anon_sym_xor_eq] = ACTIONS(8400), - [anon_sym_LT_EQ_GT] = ACTIONS(8402), - [anon_sym_or] = ACTIONS(8400), - [anon_sym_and] = ACTIONS(8400), - [anon_sym_bitor] = ACTIONS(8400), - [anon_sym_xor] = ACTIONS(8400), - [anon_sym_bitand] = ACTIONS(8400), - [anon_sym_not_eq] = ACTIONS(8400), - [anon_sym_DASH_DASH] = ACTIONS(8402), - [anon_sym_PLUS_PLUS] = ACTIONS(8402), - [anon_sym_DOT] = ACTIONS(8400), - [anon_sym_DOT_STAR] = ACTIONS(8402), - [anon_sym_DASH_GT] = ACTIONS(8402), - [anon_sym_L_DQUOTE] = ACTIONS(8402), - [anon_sym_u_DQUOTE] = ACTIONS(8402), - [anon_sym_U_DQUOTE] = ACTIONS(8402), - [anon_sym_u8_DQUOTE] = ACTIONS(8402), - [anon_sym_DQUOTE] = ACTIONS(8402), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8402), - [anon_sym_LR_DQUOTE] = ACTIONS(8402), - [anon_sym_uR_DQUOTE] = ACTIONS(8402), - [anon_sym_UR_DQUOTE] = ACTIONS(8402), - [anon_sym_u8R_DQUOTE] = ACTIONS(8402), - [anon_sym_COLON_RBRACK] = ACTIONS(8402), - [sym_literal_suffix] = ACTIONS(8400), - }, - [STATE(2743)] = { - [sym_attribute_specifier] = STATE(3127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7135), - [anon_sym_COMMA] = ACTIONS(7135), - [anon_sym_LPAREN2] = ACTIONS(7135), - [anon_sym_DASH] = ACTIONS(7133), - [anon_sym_PLUS] = ACTIONS(7133), - [anon_sym_STAR] = ACTIONS(7133), - [anon_sym_SLASH] = ACTIONS(7133), - [anon_sym_PERCENT] = ACTIONS(7133), - [anon_sym_PIPE_PIPE] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7135), - [anon_sym_PIPE] = ACTIONS(7133), - [anon_sym_CARET] = ACTIONS(7133), - [anon_sym_AMP] = ACTIONS(7133), - [anon_sym_EQ_EQ] = ACTIONS(7135), - [anon_sym_BANG_EQ] = ACTIONS(7135), - [anon_sym_GT] = ACTIONS(7133), - [anon_sym_GT_EQ] = ACTIONS(7133), - [anon_sym_LT_EQ] = ACTIONS(7133), - [anon_sym_LT] = ACTIONS(7133), - [anon_sym_LT_LT] = ACTIONS(7133), - [anon_sym_GT_GT] = ACTIONS(7133), - [anon_sym___extension__] = ACTIONS(7135), - [anon_sym___attribute__] = ACTIONS(7862), - [anon_sym___attribute] = ACTIONS(7864), - [anon_sym_LBRACE] = ACTIONS(7135), - [anon_sym_LBRACK] = ACTIONS(7135), - [anon_sym_EQ] = ACTIONS(7133), - [anon_sym_const] = ACTIONS(7133), - [anon_sym_constexpr] = ACTIONS(7135), - [anon_sym_volatile] = ACTIONS(7135), - [anon_sym_restrict] = ACTIONS(7135), - [anon_sym___restrict__] = ACTIONS(7135), - [anon_sym__Atomic] = ACTIONS(7135), - [anon_sym__Noreturn] = ACTIONS(7135), - [anon_sym_noreturn] = ACTIONS(7135), - [anon_sym__Nonnull] = ACTIONS(7135), - [anon_sym_mutable] = ACTIONS(7135), - [anon_sym_constinit] = ACTIONS(7135), - [anon_sym_consteval] = ACTIONS(7135), - [anon_sym_alignas] = ACTIONS(7135), - [anon_sym__Alignas] = ACTIONS(7135), - [anon_sym_QMARK] = ACTIONS(7135), - [anon_sym_STAR_EQ] = ACTIONS(7135), - [anon_sym_SLASH_EQ] = ACTIONS(7135), - [anon_sym_PERCENT_EQ] = ACTIONS(7135), - [anon_sym_PLUS_EQ] = ACTIONS(7135), - [anon_sym_DASH_EQ] = ACTIONS(7135), - [anon_sym_LT_LT_EQ] = ACTIONS(7135), - [anon_sym_GT_GT_EQ] = ACTIONS(7133), - [anon_sym_AMP_EQ] = ACTIONS(7135), - [anon_sym_CARET_EQ] = ACTIONS(7135), - [anon_sym_PIPE_EQ] = ACTIONS(7135), - [anon_sym_and_eq] = ACTIONS(7135), - [anon_sym_or_eq] = ACTIONS(7135), - [anon_sym_xor_eq] = ACTIONS(7135), - [anon_sym_LT_EQ_GT] = ACTIONS(7135), - [anon_sym_or] = ACTIONS(7133), - [anon_sym_and] = ACTIONS(7133), - [anon_sym_bitor] = ACTIONS(7135), - [anon_sym_xor] = ACTIONS(7133), - [anon_sym_bitand] = ACTIONS(7135), - [anon_sym_not_eq] = ACTIONS(7135), - [anon_sym_DASH_DASH] = ACTIONS(7135), - [anon_sym_PLUS_PLUS] = ACTIONS(7135), - [anon_sym_DOT] = ACTIONS(7133), - [anon_sym_DOT_STAR] = ACTIONS(7135), - [anon_sym_DASH_GT] = ACTIONS(7135), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7135), - [anon_sym_override] = ACTIONS(7135), - [anon_sym_GT2] = ACTIONS(7135), - [anon_sym_requires] = ACTIONS(7135), + [sym_auto] = ACTIONS(7293), + [anon_sym_decltype] = ACTIONS(7293), + [anon_sym_final] = ACTIONS(7293), + [anon_sym_override] = ACTIONS(7293), + [anon_sym_requires] = ACTIONS(7293), }, - [STATE(2744)] = { - [sym__declaration_modifiers] = STATE(5027), - [sym_attribute_specifier] = STATE(5027), - [sym_attribute_declaration] = STATE(5027), - [sym_ms_declspec_modifier] = STATE(5027), - [sym_storage_class_specifier] = STATE(5027), - [sym_type_qualifier] = STATE(5027), - [sym_alignas_qualifier] = STATE(3482), - [sym_type_specifier] = STATE(3936), - [sym_sized_type_specifier] = STATE(4714), - [sym_enum_specifier] = STATE(4714), - [sym_struct_specifier] = STATE(4714), - [sym_union_specifier] = STATE(4714), - [sym_placeholder_type_specifier] = STATE(4714), - [sym_decltype_auto] = STATE(4706), - [sym_decltype] = STATE(4790), - [sym_class_specifier] = STATE(4714), - [sym_dependent_type] = STATE(4714), - [sym_template_type] = STATE(4520), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(8638), - [sym_qualified_type_identifier] = STATE(4521), - [sym_splice_specifier] = STATE(4350), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(4790), - [sym_splice_expression] = STATE(10976), - [aux_sym__declaration_specifiers_repeat1] = STATE(5027), - [aux_sym_sized_type_specifier_repeat1] = STATE(3709), - [sym_identifier] = ACTIONS(5572), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(8293), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1856), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(63), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(67), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3079), - [anon_sym_typename] = ACTIONS(3081), + [STATE(2580)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7291), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7291), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7291), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7291), + [anon_sym_GT_GT] = ACTIONS(7291), + [anon_sym___extension__] = ACTIONS(7293), + [anon_sym___attribute__] = ACTIONS(7293), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_COLON] = ACTIONS(7291), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_RBRACK] = ACTIONS(7293), + [anon_sym_EQ] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7293), + [anon_sym_volatile] = ACTIONS(7293), + [anon_sym_restrict] = ACTIONS(7293), + [anon_sym___restrict__] = ACTIONS(7293), + [anon_sym__Atomic] = ACTIONS(7293), + [anon_sym__Noreturn] = ACTIONS(7293), + [anon_sym_noreturn] = ACTIONS(7293), + [anon_sym__Nonnull] = ACTIONS(7293), + [anon_sym_mutable] = ACTIONS(7293), + [anon_sym_constinit] = ACTIONS(7293), + [anon_sym_consteval] = ACTIONS(7293), + [anon_sym_alignas] = ACTIONS(7293), + [anon_sym__Alignas] = ACTIONS(7293), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_STAR_EQ] = ACTIONS(7293), + [anon_sym_SLASH_EQ] = ACTIONS(7293), + [anon_sym_PERCENT_EQ] = ACTIONS(7293), + [anon_sym_PLUS_EQ] = ACTIONS(7293), + [anon_sym_DASH_EQ] = ACTIONS(7293), + [anon_sym_LT_LT_EQ] = ACTIONS(7293), + [anon_sym_GT_GT_EQ] = ACTIONS(7293), + [anon_sym_AMP_EQ] = ACTIONS(7293), + [anon_sym_CARET_EQ] = ACTIONS(7293), + [anon_sym_PIPE_EQ] = ACTIONS(7293), + [anon_sym_and_eq] = ACTIONS(7293), + [anon_sym_or_eq] = ACTIONS(7293), + [anon_sym_xor_eq] = ACTIONS(7293), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_bitor] = ACTIONS(7293), + [anon_sym_xor] = ACTIONS(7291), + [anon_sym_bitand] = ACTIONS(7293), + [anon_sym_not_eq] = ACTIONS(7293), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7293), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_LBRACK_COLON] = ACTIONS(3091), - }, - [STATE(2745)] = { - [sym_attribute_specifier] = STATE(3007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7055), - [anon_sym_COMMA] = ACTIONS(7055), - [anon_sym_LPAREN2] = ACTIONS(7055), - [anon_sym_DASH] = ACTIONS(7053), - [anon_sym_PLUS] = ACTIONS(7053), - [anon_sym_STAR] = ACTIONS(7053), - [anon_sym_SLASH] = ACTIONS(7053), - [anon_sym_PERCENT] = ACTIONS(7053), - [anon_sym_PIPE_PIPE] = ACTIONS(7055), - [anon_sym_AMP_AMP] = ACTIONS(7055), - [anon_sym_PIPE] = ACTIONS(7053), - [anon_sym_CARET] = ACTIONS(7053), - [anon_sym_AMP] = ACTIONS(7053), - [anon_sym_EQ_EQ] = ACTIONS(7055), - [anon_sym_BANG_EQ] = ACTIONS(7055), - [anon_sym_GT] = ACTIONS(7053), - [anon_sym_GT_EQ] = ACTIONS(7053), - [anon_sym_LT_EQ] = ACTIONS(7053), - [anon_sym_LT] = ACTIONS(7053), - [anon_sym_LT_LT] = ACTIONS(7053), - [anon_sym_GT_GT] = ACTIONS(7053), - [anon_sym___extension__] = ACTIONS(7055), - [anon_sym___attribute__] = ACTIONS(7862), - [anon_sym___attribute] = ACTIONS(7864), - [anon_sym_LBRACE] = ACTIONS(7055), - [anon_sym_LBRACK] = ACTIONS(7055), - [anon_sym_EQ] = ACTIONS(7053), - [anon_sym_const] = ACTIONS(7053), - [anon_sym_constexpr] = ACTIONS(7055), - [anon_sym_volatile] = ACTIONS(7055), - [anon_sym_restrict] = ACTIONS(7055), - [anon_sym___restrict__] = ACTIONS(7055), - [anon_sym__Atomic] = ACTIONS(7055), - [anon_sym__Noreturn] = ACTIONS(7055), - [anon_sym_noreturn] = ACTIONS(7055), - [anon_sym__Nonnull] = ACTIONS(7055), - [anon_sym_mutable] = ACTIONS(7055), - [anon_sym_constinit] = ACTIONS(7055), - [anon_sym_consteval] = ACTIONS(7055), - [anon_sym_alignas] = ACTIONS(7055), - [anon_sym__Alignas] = ACTIONS(7055), - [anon_sym_QMARK] = ACTIONS(7055), - [anon_sym_STAR_EQ] = ACTIONS(7055), - [anon_sym_SLASH_EQ] = ACTIONS(7055), - [anon_sym_PERCENT_EQ] = ACTIONS(7055), - [anon_sym_PLUS_EQ] = ACTIONS(7055), - [anon_sym_DASH_EQ] = ACTIONS(7055), - [anon_sym_LT_LT_EQ] = ACTIONS(7055), - [anon_sym_GT_GT_EQ] = ACTIONS(7053), - [anon_sym_AMP_EQ] = ACTIONS(7055), - [anon_sym_CARET_EQ] = ACTIONS(7055), - [anon_sym_PIPE_EQ] = ACTIONS(7055), - [anon_sym_and_eq] = ACTIONS(7055), - [anon_sym_or_eq] = ACTIONS(7055), - [anon_sym_xor_eq] = ACTIONS(7055), - [anon_sym_LT_EQ_GT] = ACTIONS(7055), - [anon_sym_or] = ACTIONS(7053), - [anon_sym_and] = ACTIONS(7053), - [anon_sym_bitor] = ACTIONS(7055), - [anon_sym_xor] = ACTIONS(7053), - [anon_sym_bitand] = ACTIONS(7055), - [anon_sym_not_eq] = ACTIONS(7055), - [anon_sym_DASH_DASH] = ACTIONS(7055), - [anon_sym_PLUS_PLUS] = ACTIONS(7055), - [anon_sym_DOT] = ACTIONS(7053), - [anon_sym_DOT_STAR] = ACTIONS(7055), - [anon_sym_DASH_GT] = ACTIONS(7055), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7055), - [anon_sym_override] = ACTIONS(7055), - [anon_sym_GT2] = ACTIONS(7055), - [anon_sym_requires] = ACTIONS(7055), - }, - [STATE(2746)] = { - [sym_identifier] = ACTIONS(8404), - [aux_sym_preproc_def_token1] = ACTIONS(8404), - [aux_sym_preproc_if_token1] = ACTIONS(8404), - [aux_sym_preproc_if_token2] = ACTIONS(8404), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8404), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8404), - [aux_sym_preproc_else_token1] = ACTIONS(8404), - [aux_sym_preproc_elif_token1] = ACTIONS(8404), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8404), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8404), - [sym_preproc_directive] = ACTIONS(8404), - [anon_sym_LPAREN2] = ACTIONS(8406), - [anon_sym_TILDE] = ACTIONS(8406), - [anon_sym_STAR] = ACTIONS(8406), - [anon_sym_AMP_AMP] = ACTIONS(8406), - [anon_sym_AMP] = ACTIONS(8404), - [anon_sym_SEMI] = ACTIONS(8406), - [anon_sym___extension__] = ACTIONS(8404), - [anon_sym_typedef] = ACTIONS(8404), - [anon_sym_virtual] = ACTIONS(8404), - [anon_sym_extern] = ACTIONS(8404), - [anon_sym___attribute__] = ACTIONS(8404), - [anon_sym___attribute] = ACTIONS(8404), - [anon_sym_using] = ACTIONS(8404), - [anon_sym_COLON_COLON] = ACTIONS(8406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8406), - [anon_sym___declspec] = ACTIONS(8404), - [anon_sym___based] = ACTIONS(8404), - [anon_sym_signed] = ACTIONS(8404), - [anon_sym_unsigned] = ACTIONS(8404), - [anon_sym_long] = ACTIONS(8404), - [anon_sym_short] = ACTIONS(8404), - [anon_sym_LBRACK] = ACTIONS(8404), - [anon_sym_static] = ACTIONS(8404), - [anon_sym_register] = ACTIONS(8404), - [anon_sym_inline] = ACTIONS(8404), - [anon_sym___inline] = ACTIONS(8404), - [anon_sym___inline__] = ACTIONS(8404), - [anon_sym___forceinline] = ACTIONS(8404), - [anon_sym_thread_local] = ACTIONS(8404), - [anon_sym___thread] = ACTIONS(8404), - [anon_sym_const] = ACTIONS(8404), - [anon_sym_constexpr] = ACTIONS(8404), - [anon_sym_volatile] = ACTIONS(8404), - [anon_sym_restrict] = ACTIONS(8404), - [anon_sym___restrict__] = ACTIONS(8404), - [anon_sym__Atomic] = ACTIONS(8404), - [anon_sym__Noreturn] = ACTIONS(8404), - [anon_sym_noreturn] = ACTIONS(8404), - [anon_sym__Nonnull] = ACTIONS(8404), - [anon_sym_mutable] = ACTIONS(8404), - [anon_sym_constinit] = ACTIONS(8404), - [anon_sym_consteval] = ACTIONS(8404), - [anon_sym_alignas] = ACTIONS(8404), - [anon_sym__Alignas] = ACTIONS(8404), - [sym_primitive_type] = ACTIONS(8404), - [anon_sym_enum] = ACTIONS(8404), - [anon_sym_class] = ACTIONS(8404), - [anon_sym_struct] = ACTIONS(8404), - [anon_sym_union] = ACTIONS(8404), - [anon_sym_typename] = ACTIONS(8404), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8404), - [anon_sym_decltype] = ACTIONS(8404), - [anon_sym_explicit] = ACTIONS(8404), - [anon_sym_private] = ACTIONS(8404), - [anon_sym_template] = ACTIONS(8404), - [anon_sym_operator] = ACTIONS(8404), - [anon_sym_friend] = ACTIONS(8404), - [anon_sym_public] = ACTIONS(8404), - [anon_sym_protected] = ACTIONS(8404), - [anon_sym_static_assert] = ACTIONS(8404), - [anon_sym_LBRACK_COLON] = ACTIONS(8406), - }, - [STATE(2747)] = { - [sym_identifier] = ACTIONS(3970), - [aux_sym_preproc_def_token1] = ACTIONS(3970), - [aux_sym_preproc_if_token1] = ACTIONS(3970), - [aux_sym_preproc_if_token2] = ACTIONS(3970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3970), - [aux_sym_preproc_else_token1] = ACTIONS(3970), - [aux_sym_preproc_elif_token1] = ACTIONS(3970), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3970), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3970), - [sym_preproc_directive] = ACTIONS(3970), - [anon_sym_LPAREN2] = ACTIONS(3972), - [anon_sym_TILDE] = ACTIONS(3972), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_AMP_AMP] = ACTIONS(3972), - [anon_sym_AMP] = ACTIONS(3970), - [anon_sym_SEMI] = ACTIONS(3972), - [anon_sym___extension__] = ACTIONS(3970), - [anon_sym_typedef] = ACTIONS(3970), - [anon_sym_virtual] = ACTIONS(3970), - [anon_sym_extern] = ACTIONS(3970), - [anon_sym___attribute__] = ACTIONS(3970), - [anon_sym___attribute] = ACTIONS(3970), - [anon_sym_using] = ACTIONS(3970), - [anon_sym_COLON_COLON] = ACTIONS(3972), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3972), - [anon_sym___declspec] = ACTIONS(3970), - [anon_sym___based] = ACTIONS(3970), - [anon_sym_signed] = ACTIONS(3970), - [anon_sym_unsigned] = ACTIONS(3970), - [anon_sym_long] = ACTIONS(3970), - [anon_sym_short] = ACTIONS(3970), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_static] = ACTIONS(3970), - [anon_sym_register] = ACTIONS(3970), - [anon_sym_inline] = ACTIONS(3970), - [anon_sym___inline] = ACTIONS(3970), - [anon_sym___inline__] = ACTIONS(3970), - [anon_sym___forceinline] = ACTIONS(3970), - [anon_sym_thread_local] = ACTIONS(3970), - [anon_sym___thread] = ACTIONS(3970), - [anon_sym_const] = ACTIONS(3970), - [anon_sym_constexpr] = ACTIONS(3970), - [anon_sym_volatile] = ACTIONS(3970), - [anon_sym_restrict] = ACTIONS(3970), - [anon_sym___restrict__] = ACTIONS(3970), - [anon_sym__Atomic] = ACTIONS(3970), - [anon_sym__Noreturn] = ACTIONS(3970), - [anon_sym_noreturn] = ACTIONS(3970), - [anon_sym__Nonnull] = ACTIONS(3970), - [anon_sym_mutable] = ACTIONS(3970), - [anon_sym_constinit] = ACTIONS(3970), - [anon_sym_consteval] = ACTIONS(3970), - [anon_sym_alignas] = ACTIONS(3970), - [anon_sym__Alignas] = ACTIONS(3970), - [sym_primitive_type] = ACTIONS(3970), - [anon_sym_enum] = ACTIONS(3970), - [anon_sym_class] = ACTIONS(3970), - [anon_sym_struct] = ACTIONS(3970), - [anon_sym_union] = ACTIONS(3970), - [anon_sym_typename] = ACTIONS(3970), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3970), - [anon_sym_decltype] = ACTIONS(3970), - [anon_sym_explicit] = ACTIONS(3970), - [anon_sym_private] = ACTIONS(3970), - [anon_sym_template] = ACTIONS(3970), - [anon_sym_operator] = ACTIONS(3970), - [anon_sym_friend] = ACTIONS(3970), - [anon_sym_public] = ACTIONS(3970), - [anon_sym_protected] = ACTIONS(3970), - [anon_sym_static_assert] = ACTIONS(3970), - [anon_sym_LBRACK_COLON] = ACTIONS(3972), - }, - [STATE(2748)] = { - [sym_identifier] = ACTIONS(8408), - [aux_sym_preproc_def_token1] = ACTIONS(8408), - [aux_sym_preproc_if_token1] = ACTIONS(8408), - [aux_sym_preproc_if_token2] = ACTIONS(8408), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8408), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8408), - [aux_sym_preproc_else_token1] = ACTIONS(8408), - [aux_sym_preproc_elif_token1] = ACTIONS(8408), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8408), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8408), - [sym_preproc_directive] = ACTIONS(8408), - [anon_sym_LPAREN2] = ACTIONS(8410), - [anon_sym_TILDE] = ACTIONS(8410), - [anon_sym_STAR] = ACTIONS(8410), - [anon_sym_AMP_AMP] = ACTIONS(8410), - [anon_sym_AMP] = ACTIONS(8408), - [anon_sym_SEMI] = ACTIONS(8410), - [anon_sym___extension__] = ACTIONS(8408), - [anon_sym_typedef] = ACTIONS(8408), - [anon_sym_virtual] = ACTIONS(8408), - [anon_sym_extern] = ACTIONS(8408), - [anon_sym___attribute__] = ACTIONS(8408), - [anon_sym___attribute] = ACTIONS(8408), - [anon_sym_using] = ACTIONS(8408), - [anon_sym_COLON_COLON] = ACTIONS(8410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8410), - [anon_sym___declspec] = ACTIONS(8408), - [anon_sym___based] = ACTIONS(8408), - [anon_sym_signed] = ACTIONS(8408), - [anon_sym_unsigned] = ACTIONS(8408), - [anon_sym_long] = ACTIONS(8408), - [anon_sym_short] = ACTIONS(8408), - [anon_sym_LBRACK] = ACTIONS(8408), - [anon_sym_static] = ACTIONS(8408), - [anon_sym_register] = ACTIONS(8408), - [anon_sym_inline] = ACTIONS(8408), - [anon_sym___inline] = ACTIONS(8408), - [anon_sym___inline__] = ACTIONS(8408), - [anon_sym___forceinline] = ACTIONS(8408), - [anon_sym_thread_local] = ACTIONS(8408), - [anon_sym___thread] = ACTIONS(8408), - [anon_sym_const] = ACTIONS(8408), - [anon_sym_constexpr] = ACTIONS(8408), - [anon_sym_volatile] = ACTIONS(8408), - [anon_sym_restrict] = ACTIONS(8408), - [anon_sym___restrict__] = ACTIONS(8408), - [anon_sym__Atomic] = ACTIONS(8408), - [anon_sym__Noreturn] = ACTIONS(8408), - [anon_sym_noreturn] = ACTIONS(8408), - [anon_sym__Nonnull] = ACTIONS(8408), - [anon_sym_mutable] = ACTIONS(8408), - [anon_sym_constinit] = ACTIONS(8408), - [anon_sym_consteval] = ACTIONS(8408), - [anon_sym_alignas] = ACTIONS(8408), - [anon_sym__Alignas] = ACTIONS(8408), - [sym_primitive_type] = ACTIONS(8408), - [anon_sym_enum] = ACTIONS(8408), - [anon_sym_class] = ACTIONS(8408), - [anon_sym_struct] = ACTIONS(8408), - [anon_sym_union] = ACTIONS(8408), - [anon_sym_typename] = ACTIONS(8408), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8408), - [anon_sym_decltype] = ACTIONS(8408), - [anon_sym_explicit] = ACTIONS(8408), - [anon_sym_private] = ACTIONS(8408), - [anon_sym_template] = ACTIONS(8408), - [anon_sym_operator] = ACTIONS(8408), - [anon_sym_friend] = ACTIONS(8408), - [anon_sym_public] = ACTIONS(8408), - [anon_sym_protected] = ACTIONS(8408), - [anon_sym_static_assert] = ACTIONS(8408), - [anon_sym_LBRACK_COLON] = ACTIONS(8410), - }, - [STATE(2749)] = { - [sym_template_argument_list] = STATE(2525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5272), - [anon_sym_COMMA] = ACTIONS(5272), - [anon_sym_RPAREN] = ACTIONS(5272), - [anon_sym_LPAREN2] = ACTIONS(5272), - [anon_sym_DASH] = ACTIONS(7031), - [anon_sym_PLUS] = ACTIONS(7031), - [anon_sym_STAR] = ACTIONS(7031), - [anon_sym_SLASH] = ACTIONS(7031), - [anon_sym_PERCENT] = ACTIONS(7031), - [anon_sym_PIPE_PIPE] = ACTIONS(5272), - [anon_sym_AMP_AMP] = ACTIONS(5272), - [anon_sym_PIPE] = ACTIONS(7031), - [anon_sym_CARET] = ACTIONS(7031), - [anon_sym_AMP] = ACTIONS(7031), - [anon_sym_EQ_EQ] = ACTIONS(5272), - [anon_sym_BANG_EQ] = ACTIONS(5272), - [anon_sym_GT] = ACTIONS(7031), - [anon_sym_GT_EQ] = ACTIONS(5272), - [anon_sym_LT_EQ] = ACTIONS(7031), - [anon_sym_LT] = ACTIONS(7854), - [anon_sym_LT_LT] = ACTIONS(7031), - [anon_sym_GT_GT] = ACTIONS(7031), - [anon_sym___extension__] = ACTIONS(5272), - [anon_sym___attribute__] = ACTIONS(5272), - [anon_sym___attribute] = ACTIONS(7031), - [anon_sym_COLON] = ACTIONS(7031), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5272), - [anon_sym_EQ] = ACTIONS(7031), - [anon_sym_const] = ACTIONS(7031), - [anon_sym_constexpr] = ACTIONS(5272), - [anon_sym_volatile] = ACTIONS(5272), - [anon_sym_restrict] = ACTIONS(5272), - [anon_sym___restrict__] = ACTIONS(5272), - [anon_sym__Atomic] = ACTIONS(5272), - [anon_sym__Noreturn] = ACTIONS(5272), - [anon_sym_noreturn] = ACTIONS(5272), - [anon_sym__Nonnull] = ACTIONS(5272), - [anon_sym_mutable] = ACTIONS(5272), - [anon_sym_constinit] = ACTIONS(5272), - [anon_sym_consteval] = ACTIONS(5272), - [anon_sym_alignas] = ACTIONS(5272), - [anon_sym__Alignas] = ACTIONS(5272), - [anon_sym_QMARK] = ACTIONS(5272), - [anon_sym_STAR_EQ] = ACTIONS(5272), - [anon_sym_SLASH_EQ] = ACTIONS(5272), - [anon_sym_PERCENT_EQ] = ACTIONS(5272), - [anon_sym_PLUS_EQ] = ACTIONS(5272), - [anon_sym_DASH_EQ] = ACTIONS(5272), - [anon_sym_LT_LT_EQ] = ACTIONS(5272), - [anon_sym_GT_GT_EQ] = ACTIONS(5272), - [anon_sym_AMP_EQ] = ACTIONS(5272), - [anon_sym_CARET_EQ] = ACTIONS(5272), - [anon_sym_PIPE_EQ] = ACTIONS(5272), - [anon_sym_LT_EQ_GT] = ACTIONS(5272), - [anon_sym_or] = ACTIONS(5272), - [anon_sym_and] = ACTIONS(5272), - [anon_sym_bitor] = ACTIONS(5272), - [anon_sym_xor] = ACTIONS(5272), - [anon_sym_bitand] = ACTIONS(5272), - [anon_sym_not_eq] = ACTIONS(5272), - [anon_sym_DASH_DASH] = ACTIONS(5272), - [anon_sym_PLUS_PLUS] = ACTIONS(5272), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_DOT_STAR] = ACTIONS(5272), - [anon_sym_DASH_GT] = ACTIONS(7031), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5272), - [anon_sym_override] = ACTIONS(5272), - [anon_sym_requires] = ACTIONS(5272), - [anon_sym_DASH_GT_STAR] = ACTIONS(5272), - }, - [STATE(2750)] = { - [sym_identifier] = ACTIONS(8412), - [aux_sym_preproc_def_token1] = ACTIONS(8412), - [aux_sym_preproc_if_token1] = ACTIONS(8412), - [aux_sym_preproc_if_token2] = ACTIONS(8412), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8412), - [aux_sym_preproc_else_token1] = ACTIONS(8412), - [aux_sym_preproc_elif_token1] = ACTIONS(8412), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8412), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8412), - [sym_preproc_directive] = ACTIONS(8412), - [anon_sym_LPAREN2] = ACTIONS(8414), - [anon_sym_TILDE] = ACTIONS(8414), - [anon_sym_STAR] = ACTIONS(8414), - [anon_sym_AMP_AMP] = ACTIONS(8414), - [anon_sym_AMP] = ACTIONS(8412), - [anon_sym_SEMI] = ACTIONS(8414), - [anon_sym___extension__] = ACTIONS(8412), - [anon_sym_typedef] = ACTIONS(8412), - [anon_sym_virtual] = ACTIONS(8412), - [anon_sym_extern] = ACTIONS(8412), - [anon_sym___attribute__] = ACTIONS(8412), - [anon_sym___attribute] = ACTIONS(8412), - [anon_sym_using] = ACTIONS(8412), - [anon_sym_COLON_COLON] = ACTIONS(8414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8414), - [anon_sym___declspec] = ACTIONS(8412), - [anon_sym___based] = ACTIONS(8412), - [anon_sym_signed] = ACTIONS(8412), - [anon_sym_unsigned] = ACTIONS(8412), - [anon_sym_long] = ACTIONS(8412), - [anon_sym_short] = ACTIONS(8412), - [anon_sym_LBRACK] = ACTIONS(8412), - [anon_sym_static] = ACTIONS(8412), - [anon_sym_register] = ACTIONS(8412), - [anon_sym_inline] = ACTIONS(8412), - [anon_sym___inline] = ACTIONS(8412), - [anon_sym___inline__] = ACTIONS(8412), - [anon_sym___forceinline] = ACTIONS(8412), - [anon_sym_thread_local] = ACTIONS(8412), - [anon_sym___thread] = ACTIONS(8412), - [anon_sym_const] = ACTIONS(8412), - [anon_sym_constexpr] = ACTIONS(8412), - [anon_sym_volatile] = ACTIONS(8412), - [anon_sym_restrict] = ACTIONS(8412), - [anon_sym___restrict__] = ACTIONS(8412), - [anon_sym__Atomic] = ACTIONS(8412), - [anon_sym__Noreturn] = ACTIONS(8412), - [anon_sym_noreturn] = ACTIONS(8412), - [anon_sym__Nonnull] = ACTIONS(8412), - [anon_sym_mutable] = ACTIONS(8412), - [anon_sym_constinit] = ACTIONS(8412), - [anon_sym_consteval] = ACTIONS(8412), - [anon_sym_alignas] = ACTIONS(8412), - [anon_sym__Alignas] = ACTIONS(8412), - [sym_primitive_type] = ACTIONS(8412), - [anon_sym_enum] = ACTIONS(8412), - [anon_sym_class] = ACTIONS(8412), - [anon_sym_struct] = ACTIONS(8412), - [anon_sym_union] = ACTIONS(8412), - [anon_sym_typename] = ACTIONS(8412), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8412), - [anon_sym_decltype] = ACTIONS(8412), - [anon_sym_explicit] = ACTIONS(8412), - [anon_sym_private] = ACTIONS(8412), - [anon_sym_template] = ACTIONS(8412), - [anon_sym_operator] = ACTIONS(8412), - [anon_sym_friend] = ACTIONS(8412), - [anon_sym_public] = ACTIONS(8412), - [anon_sym_protected] = ACTIONS(8412), - [anon_sym_static_assert] = ACTIONS(8412), - [anon_sym_LBRACK_COLON] = ACTIONS(8414), - }, - [STATE(2751)] = { - [sym_identifier] = ACTIONS(3990), - [aux_sym_preproc_def_token1] = ACTIONS(3990), - [aux_sym_preproc_if_token1] = ACTIONS(3990), - [aux_sym_preproc_if_token2] = ACTIONS(3990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3990), - [aux_sym_preproc_else_token1] = ACTIONS(3990), - [aux_sym_preproc_elif_token1] = ACTIONS(3990), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3990), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3990), - [sym_preproc_directive] = ACTIONS(3990), - [anon_sym_LPAREN2] = ACTIONS(3992), - [anon_sym_TILDE] = ACTIONS(3992), - [anon_sym_STAR] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3992), - [anon_sym_AMP] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(3992), - [anon_sym___extension__] = ACTIONS(3990), - [anon_sym_typedef] = ACTIONS(3990), - [anon_sym_virtual] = ACTIONS(3990), - [anon_sym_extern] = ACTIONS(3990), - [anon_sym___attribute__] = ACTIONS(3990), - [anon_sym___attribute] = ACTIONS(3990), - [anon_sym_using] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3992), - [anon_sym___declspec] = ACTIONS(3990), - [anon_sym___based] = ACTIONS(3990), - [anon_sym_signed] = ACTIONS(3990), - [anon_sym_unsigned] = ACTIONS(3990), - [anon_sym_long] = ACTIONS(3990), - [anon_sym_short] = ACTIONS(3990), - [anon_sym_LBRACK] = ACTIONS(3990), - [anon_sym_static] = ACTIONS(3990), - [anon_sym_register] = ACTIONS(3990), - [anon_sym_inline] = ACTIONS(3990), - [anon_sym___inline] = ACTIONS(3990), - [anon_sym___inline__] = ACTIONS(3990), - [anon_sym___forceinline] = ACTIONS(3990), - [anon_sym_thread_local] = ACTIONS(3990), - [anon_sym___thread] = ACTIONS(3990), - [anon_sym_const] = ACTIONS(3990), - [anon_sym_constexpr] = ACTIONS(3990), - [anon_sym_volatile] = ACTIONS(3990), - [anon_sym_restrict] = ACTIONS(3990), - [anon_sym___restrict__] = ACTIONS(3990), - [anon_sym__Atomic] = ACTIONS(3990), - [anon_sym__Noreturn] = ACTIONS(3990), - [anon_sym_noreturn] = ACTIONS(3990), - [anon_sym__Nonnull] = ACTIONS(3990), - [anon_sym_mutable] = ACTIONS(3990), - [anon_sym_constinit] = ACTIONS(3990), - [anon_sym_consteval] = ACTIONS(3990), - [anon_sym_alignas] = ACTIONS(3990), - [anon_sym__Alignas] = ACTIONS(3990), - [sym_primitive_type] = ACTIONS(3990), - [anon_sym_enum] = ACTIONS(3990), - [anon_sym_class] = ACTIONS(3990), - [anon_sym_struct] = ACTIONS(3990), - [anon_sym_union] = ACTIONS(3990), - [anon_sym_typename] = ACTIONS(3990), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3990), - [anon_sym_decltype] = ACTIONS(3990), - [anon_sym_explicit] = ACTIONS(3990), - [anon_sym_private] = ACTIONS(3990), - [anon_sym_template] = ACTIONS(3990), - [anon_sym_operator] = ACTIONS(3990), - [anon_sym_friend] = ACTIONS(3990), - [anon_sym_public] = ACTIONS(3990), - [anon_sym_protected] = ACTIONS(3990), - [anon_sym_static_assert] = ACTIONS(3990), - [anon_sym_LBRACK_COLON] = ACTIONS(3992), - }, - [STATE(2752)] = { - [sym_identifier] = ACTIONS(3998), - [aux_sym_preproc_def_token1] = ACTIONS(3998), - [aux_sym_preproc_if_token1] = ACTIONS(3998), - [aux_sym_preproc_if_token2] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), - [aux_sym_preproc_else_token1] = ACTIONS(3998), - [aux_sym_preproc_elif_token1] = ACTIONS(3998), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3998), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3998), - [sym_preproc_directive] = ACTIONS(3998), - [anon_sym_LPAREN2] = ACTIONS(4000), - [anon_sym_TILDE] = ACTIONS(4000), - [anon_sym_STAR] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym___extension__] = ACTIONS(3998), - [anon_sym_typedef] = ACTIONS(3998), - [anon_sym_virtual] = ACTIONS(3998), - [anon_sym_extern] = ACTIONS(3998), - [anon_sym___attribute__] = ACTIONS(3998), - [anon_sym___attribute] = ACTIONS(3998), - [anon_sym_using] = ACTIONS(3998), - [anon_sym_COLON_COLON] = ACTIONS(4000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), - [anon_sym___declspec] = ACTIONS(3998), - [anon_sym___based] = ACTIONS(3998), - [anon_sym_signed] = ACTIONS(3998), - [anon_sym_unsigned] = ACTIONS(3998), - [anon_sym_long] = ACTIONS(3998), - [anon_sym_short] = ACTIONS(3998), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_static] = ACTIONS(3998), - [anon_sym_register] = ACTIONS(3998), - [anon_sym_inline] = ACTIONS(3998), - [anon_sym___inline] = ACTIONS(3998), - [anon_sym___inline__] = ACTIONS(3998), - [anon_sym___forceinline] = ACTIONS(3998), - [anon_sym_thread_local] = ACTIONS(3998), - [anon_sym___thread] = ACTIONS(3998), - [anon_sym_const] = ACTIONS(3998), - [anon_sym_constexpr] = ACTIONS(3998), - [anon_sym_volatile] = ACTIONS(3998), - [anon_sym_restrict] = ACTIONS(3998), - [anon_sym___restrict__] = ACTIONS(3998), - [anon_sym__Atomic] = ACTIONS(3998), - [anon_sym__Noreturn] = ACTIONS(3998), - [anon_sym_noreturn] = ACTIONS(3998), - [anon_sym__Nonnull] = ACTIONS(3998), - [anon_sym_mutable] = ACTIONS(3998), - [anon_sym_constinit] = ACTIONS(3998), - [anon_sym_consteval] = ACTIONS(3998), - [anon_sym_alignas] = ACTIONS(3998), - [anon_sym__Alignas] = ACTIONS(3998), - [sym_primitive_type] = ACTIONS(3998), - [anon_sym_enum] = ACTIONS(3998), - [anon_sym_class] = ACTIONS(3998), - [anon_sym_struct] = ACTIONS(3998), - [anon_sym_union] = ACTIONS(3998), - [anon_sym_typename] = ACTIONS(3998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3998), - [anon_sym_decltype] = ACTIONS(3998), - [anon_sym_explicit] = ACTIONS(3998), - [anon_sym_private] = ACTIONS(3998), - [anon_sym_template] = ACTIONS(3998), - [anon_sym_operator] = ACTIONS(3998), - [anon_sym_friend] = ACTIONS(3998), - [anon_sym_public] = ACTIONS(3998), - [anon_sym_protected] = ACTIONS(3998), - [anon_sym_static_assert] = ACTIONS(3998), - [anon_sym_LBRACK_COLON] = ACTIONS(4000), + [sym_auto] = ACTIONS(7293), + [anon_sym_decltype] = ACTIONS(7293), + [anon_sym_final] = ACTIONS(7293), + [anon_sym_override] = ACTIONS(7293), + [anon_sym_requires] = ACTIONS(7293), }, - [STATE(2753)] = { - [sym_identifier] = ACTIONS(3998), - [aux_sym_preproc_def_token1] = ACTIONS(3998), - [aux_sym_preproc_if_token1] = ACTIONS(3998), - [aux_sym_preproc_if_token2] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), - [aux_sym_preproc_else_token1] = ACTIONS(3998), - [aux_sym_preproc_elif_token1] = ACTIONS(3998), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3998), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3998), - [sym_preproc_directive] = ACTIONS(3998), - [anon_sym_LPAREN2] = ACTIONS(4000), - [anon_sym_TILDE] = ACTIONS(4000), - [anon_sym_STAR] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym___extension__] = ACTIONS(3998), - [anon_sym_typedef] = ACTIONS(3998), - [anon_sym_virtual] = ACTIONS(3998), - [anon_sym_extern] = ACTIONS(3998), - [anon_sym___attribute__] = ACTIONS(3998), - [anon_sym___attribute] = ACTIONS(3998), - [anon_sym_using] = ACTIONS(3998), - [anon_sym_COLON_COLON] = ACTIONS(4000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), - [anon_sym___declspec] = ACTIONS(3998), - [anon_sym___based] = ACTIONS(3998), - [anon_sym_signed] = ACTIONS(3998), - [anon_sym_unsigned] = ACTIONS(3998), - [anon_sym_long] = ACTIONS(3998), - [anon_sym_short] = ACTIONS(3998), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_static] = ACTIONS(3998), - [anon_sym_register] = ACTIONS(3998), - [anon_sym_inline] = ACTIONS(3998), - [anon_sym___inline] = ACTIONS(3998), - [anon_sym___inline__] = ACTIONS(3998), - [anon_sym___forceinline] = ACTIONS(3998), - [anon_sym_thread_local] = ACTIONS(3998), - [anon_sym___thread] = ACTIONS(3998), - [anon_sym_const] = ACTIONS(3998), - [anon_sym_constexpr] = ACTIONS(3998), - [anon_sym_volatile] = ACTIONS(3998), - [anon_sym_restrict] = ACTIONS(3998), - [anon_sym___restrict__] = ACTIONS(3998), - [anon_sym__Atomic] = ACTIONS(3998), - [anon_sym__Noreturn] = ACTIONS(3998), - [anon_sym_noreturn] = ACTIONS(3998), - [anon_sym__Nonnull] = ACTIONS(3998), - [anon_sym_mutable] = ACTIONS(3998), - [anon_sym_constinit] = ACTIONS(3998), - [anon_sym_consteval] = ACTIONS(3998), - [anon_sym_alignas] = ACTIONS(3998), - [anon_sym__Alignas] = ACTIONS(3998), - [sym_primitive_type] = ACTIONS(3998), - [anon_sym_enum] = ACTIONS(3998), - [anon_sym_class] = ACTIONS(3998), - [anon_sym_struct] = ACTIONS(3998), - [anon_sym_union] = ACTIONS(3998), - [anon_sym_typename] = ACTIONS(3998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3998), - [anon_sym_decltype] = ACTIONS(3998), - [anon_sym_explicit] = ACTIONS(3998), - [anon_sym_private] = ACTIONS(3998), - [anon_sym_template] = ACTIONS(3998), - [anon_sym_operator] = ACTIONS(3998), - [anon_sym_friend] = ACTIONS(3998), - [anon_sym_public] = ACTIONS(3998), - [anon_sym_protected] = ACTIONS(3998), - [anon_sym_static_assert] = ACTIONS(3998), - [anon_sym_LBRACK_COLON] = ACTIONS(4000), + [STATE(2581)] = { + [sym_attribute_specifier] = STATE(4179), + [sym_attribute_declaration] = STATE(4554), + [sym_gnu_asm_expression] = STATE(9153), + [sym_virtual_specifier] = STATE(4653), + [sym__function_exception_specification] = STATE(2987), + [sym__function_attributes_end] = STATE(4394), + [sym__function_postfix] = STATE(5110), + [sym_trailing_return_type] = STATE(4532), + [sym_noexcept] = STATE(2987), + [sym_throw_specifier] = STATE(2987), + [sym_requires_clause] = STATE(5110), + [aux_sym_type_definition_repeat1] = STATE(4179), + [aux_sym_attributed_declarator_repeat1] = STATE(4554), + [aux_sym__function_postfix_repeat1] = STATE(4653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6719), + [anon_sym___attribute] = ACTIONS(6721), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_RBRACK] = ACTIONS(7791), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8360), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6742), + [anon_sym_override] = ACTIONS(6742), + [anon_sym_noexcept] = ACTIONS(6735), + [anon_sym_throw] = ACTIONS(6737), + [anon_sym_requires] = ACTIONS(6744), }, - [STATE(2754)] = { - [sym_identifier] = ACTIONS(8416), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8418), - [anon_sym_COMMA] = ACTIONS(8418), - [anon_sym_RPAREN] = ACTIONS(8418), - [aux_sym_preproc_if_token2] = ACTIONS(8418), - [aux_sym_preproc_else_token1] = ACTIONS(8418), - [aux_sym_preproc_elif_token1] = ACTIONS(8416), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8418), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8418), - [anon_sym_LPAREN2] = ACTIONS(8418), - [anon_sym_DASH] = ACTIONS(8416), - [anon_sym_PLUS] = ACTIONS(8416), - [anon_sym_STAR] = ACTIONS(8416), - [anon_sym_SLASH] = ACTIONS(8416), - [anon_sym_PERCENT] = ACTIONS(8416), - [anon_sym_PIPE_PIPE] = ACTIONS(8418), - [anon_sym_AMP_AMP] = ACTIONS(8418), - [anon_sym_PIPE] = ACTIONS(8416), - [anon_sym_CARET] = ACTIONS(8416), - [anon_sym_AMP] = ACTIONS(8416), - [anon_sym_EQ_EQ] = ACTIONS(8418), - [anon_sym_BANG_EQ] = ACTIONS(8418), - [anon_sym_GT] = ACTIONS(8416), - [anon_sym_GT_EQ] = ACTIONS(8418), - [anon_sym_LT_EQ] = ACTIONS(8416), - [anon_sym_LT] = ACTIONS(8416), - [anon_sym_LT_LT] = ACTIONS(8416), - [anon_sym_GT_GT] = ACTIONS(8416), - [anon_sym_SEMI] = ACTIONS(8418), - [anon_sym___attribute__] = ACTIONS(8416), - [anon_sym___attribute] = ACTIONS(8416), - [anon_sym_COLON] = ACTIONS(8416), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8418), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8418), - [anon_sym_RBRACE] = ACTIONS(8418), - [anon_sym_LBRACK] = ACTIONS(8416), - [anon_sym_EQ] = ACTIONS(8416), - [anon_sym_QMARK] = ACTIONS(8418), - [anon_sym_STAR_EQ] = ACTIONS(8418), - [anon_sym_SLASH_EQ] = ACTIONS(8418), - [anon_sym_PERCENT_EQ] = ACTIONS(8418), - [anon_sym_PLUS_EQ] = ACTIONS(8418), - [anon_sym_DASH_EQ] = ACTIONS(8418), - [anon_sym_LT_LT_EQ] = ACTIONS(8418), - [anon_sym_GT_GT_EQ] = ACTIONS(8418), - [anon_sym_AMP_EQ] = ACTIONS(8418), - [anon_sym_CARET_EQ] = ACTIONS(8418), - [anon_sym_PIPE_EQ] = ACTIONS(8418), - [anon_sym_and_eq] = ACTIONS(8416), - [anon_sym_or_eq] = ACTIONS(8416), - [anon_sym_xor_eq] = ACTIONS(8416), - [anon_sym_LT_EQ_GT] = ACTIONS(8418), - [anon_sym_or] = ACTIONS(8416), - [anon_sym_and] = ACTIONS(8416), - [anon_sym_bitor] = ACTIONS(8416), - [anon_sym_xor] = ACTIONS(8416), - [anon_sym_bitand] = ACTIONS(8416), - [anon_sym_not_eq] = ACTIONS(8416), - [anon_sym_DASH_DASH] = ACTIONS(8418), - [anon_sym_PLUS_PLUS] = ACTIONS(8418), - [anon_sym_asm] = ACTIONS(8416), - [anon_sym___asm__] = ACTIONS(8416), - [anon_sym___asm] = ACTIONS(8416), - [anon_sym_DOT] = ACTIONS(8416), - [anon_sym_DOT_STAR] = ACTIONS(8418), - [anon_sym_DASH_GT] = ACTIONS(8418), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8416), - [anon_sym_override] = ACTIONS(8416), - [anon_sym_noexcept] = ACTIONS(8416), - [anon_sym_throw] = ACTIONS(8416), - [anon_sym_requires] = ACTIONS(8416), - [anon_sym_COLON_RBRACK] = ACTIONS(8418), + [STATE(2582)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7303), + [anon_sym_COMMA] = ACTIONS(7303), + [anon_sym_LPAREN2] = ACTIONS(7303), + [anon_sym_DASH] = ACTIONS(7301), + [anon_sym_PLUS] = ACTIONS(7301), + [anon_sym_STAR] = ACTIONS(7301), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7301), + [anon_sym_PIPE_PIPE] = ACTIONS(7303), + [anon_sym_AMP_AMP] = ACTIONS(7303), + [anon_sym_PIPE] = ACTIONS(7301), + [anon_sym_CARET] = ACTIONS(7301), + [anon_sym_AMP] = ACTIONS(7301), + [anon_sym_EQ_EQ] = ACTIONS(7303), + [anon_sym_BANG_EQ] = ACTIONS(7303), + [anon_sym_GT] = ACTIONS(7301), + [anon_sym_GT_EQ] = ACTIONS(7303), + [anon_sym_LT_EQ] = ACTIONS(7301), + [anon_sym_LT] = ACTIONS(7301), + [anon_sym_LT_LT] = ACTIONS(7301), + [anon_sym_GT_GT] = ACTIONS(7301), + [anon_sym___extension__] = ACTIONS(7303), + [anon_sym___attribute__] = ACTIONS(7303), + [anon_sym___attribute] = ACTIONS(7301), + [anon_sym_COLON] = ACTIONS(7301), + [anon_sym_COLON_COLON] = ACTIONS(7303), + [anon_sym_LBRACE] = ACTIONS(7303), + [anon_sym_LBRACK] = ACTIONS(7303), + [anon_sym_RBRACK] = ACTIONS(7303), + [anon_sym_EQ] = ACTIONS(7301), + [anon_sym_const] = ACTIONS(7301), + [anon_sym_constexpr] = ACTIONS(7303), + [anon_sym_volatile] = ACTIONS(7303), + [anon_sym_restrict] = ACTIONS(7303), + [anon_sym___restrict__] = ACTIONS(7303), + [anon_sym__Atomic] = ACTIONS(7303), + [anon_sym__Noreturn] = ACTIONS(7303), + [anon_sym_noreturn] = ACTIONS(7303), + [anon_sym__Nonnull] = ACTIONS(7303), + [anon_sym_mutable] = ACTIONS(7303), + [anon_sym_constinit] = ACTIONS(7303), + [anon_sym_consteval] = ACTIONS(7303), + [anon_sym_alignas] = ACTIONS(7303), + [anon_sym__Alignas] = ACTIONS(7303), + [anon_sym_QMARK] = ACTIONS(7303), + [anon_sym_STAR_EQ] = ACTIONS(7303), + [anon_sym_SLASH_EQ] = ACTIONS(7303), + [anon_sym_PERCENT_EQ] = ACTIONS(7303), + [anon_sym_PLUS_EQ] = ACTIONS(7303), + [anon_sym_DASH_EQ] = ACTIONS(7303), + [anon_sym_LT_LT_EQ] = ACTIONS(7303), + [anon_sym_GT_GT_EQ] = ACTIONS(7303), + [anon_sym_AMP_EQ] = ACTIONS(7303), + [anon_sym_CARET_EQ] = ACTIONS(7303), + [anon_sym_PIPE_EQ] = ACTIONS(7303), + [anon_sym_and_eq] = ACTIONS(7303), + [anon_sym_or_eq] = ACTIONS(7303), + [anon_sym_xor_eq] = ACTIONS(7303), + [anon_sym_LT_EQ_GT] = ACTIONS(7303), + [anon_sym_or] = ACTIONS(7301), + [anon_sym_and] = ACTIONS(7301), + [anon_sym_bitor] = ACTIONS(7303), + [anon_sym_xor] = ACTIONS(7301), + [anon_sym_bitand] = ACTIONS(7303), + [anon_sym_not_eq] = ACTIONS(7303), + [anon_sym_DASH_DASH] = ACTIONS(7303), + [anon_sym_PLUS_PLUS] = ACTIONS(7303), + [anon_sym_DOT] = ACTIONS(7301), + [anon_sym_DOT_STAR] = ACTIONS(7303), + [anon_sym_DASH_GT] = ACTIONS(7303), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7303), + [anon_sym_decltype] = ACTIONS(7303), + [anon_sym_final] = ACTIONS(7303), + [anon_sym_override] = ACTIONS(7303), + [anon_sym_requires] = ACTIONS(7303), }, - [STATE(2755)] = { - [sym_identifier] = ACTIONS(4002), - [aux_sym_preproc_def_token1] = ACTIONS(4002), - [aux_sym_preproc_if_token1] = ACTIONS(4002), - [aux_sym_preproc_if_token2] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), - [aux_sym_preproc_else_token1] = ACTIONS(4002), - [aux_sym_preproc_elif_token1] = ACTIONS(4002), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4002), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4002), - [sym_preproc_directive] = ACTIONS(4002), - [anon_sym_LPAREN2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(4004), - [anon_sym_STAR] = ACTIONS(4004), - [anon_sym_AMP_AMP] = ACTIONS(4004), - [anon_sym_AMP] = ACTIONS(4002), - [anon_sym_SEMI] = ACTIONS(4004), - [anon_sym___extension__] = ACTIONS(4002), - [anon_sym_typedef] = ACTIONS(4002), - [anon_sym_virtual] = ACTIONS(4002), - [anon_sym_extern] = ACTIONS(4002), - [anon_sym___attribute__] = ACTIONS(4002), - [anon_sym___attribute] = ACTIONS(4002), - [anon_sym_using] = ACTIONS(4002), - [anon_sym_COLON_COLON] = ACTIONS(4004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), - [anon_sym___declspec] = ACTIONS(4002), - [anon_sym___based] = ACTIONS(4002), - [anon_sym_signed] = ACTIONS(4002), - [anon_sym_unsigned] = ACTIONS(4002), - [anon_sym_long] = ACTIONS(4002), - [anon_sym_short] = ACTIONS(4002), - [anon_sym_LBRACK] = ACTIONS(4002), - [anon_sym_static] = ACTIONS(4002), - [anon_sym_register] = ACTIONS(4002), - [anon_sym_inline] = ACTIONS(4002), - [anon_sym___inline] = ACTIONS(4002), - [anon_sym___inline__] = ACTIONS(4002), - [anon_sym___forceinline] = ACTIONS(4002), - [anon_sym_thread_local] = ACTIONS(4002), - [anon_sym___thread] = ACTIONS(4002), - [anon_sym_const] = ACTIONS(4002), - [anon_sym_constexpr] = ACTIONS(4002), - [anon_sym_volatile] = ACTIONS(4002), - [anon_sym_restrict] = ACTIONS(4002), - [anon_sym___restrict__] = ACTIONS(4002), - [anon_sym__Atomic] = ACTIONS(4002), - [anon_sym__Noreturn] = ACTIONS(4002), - [anon_sym_noreturn] = ACTIONS(4002), - [anon_sym__Nonnull] = ACTIONS(4002), - [anon_sym_mutable] = ACTIONS(4002), - [anon_sym_constinit] = ACTIONS(4002), - [anon_sym_consteval] = ACTIONS(4002), - [anon_sym_alignas] = ACTIONS(4002), - [anon_sym__Alignas] = ACTIONS(4002), - [sym_primitive_type] = ACTIONS(4002), - [anon_sym_enum] = ACTIONS(4002), - [anon_sym_class] = ACTIONS(4002), - [anon_sym_struct] = ACTIONS(4002), - [anon_sym_union] = ACTIONS(4002), - [anon_sym_typename] = ACTIONS(4002), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4002), - [anon_sym_decltype] = ACTIONS(4002), - [anon_sym_explicit] = ACTIONS(4002), - [anon_sym_private] = ACTIONS(4002), - [anon_sym_template] = ACTIONS(4002), - [anon_sym_operator] = ACTIONS(4002), - [anon_sym_friend] = ACTIONS(4002), - [anon_sym_public] = ACTIONS(4002), - [anon_sym_protected] = ACTIONS(4002), - [anon_sym_static_assert] = ACTIONS(4002), - [anon_sym_LBRACK_COLON] = ACTIONS(4004), + [STATE(2583)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6614), + [anon_sym_COMMA] = ACTIONS(6614), + [anon_sym_LPAREN2] = ACTIONS(6614), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6612), + [anon_sym_SLASH] = ACTIONS(6612), + [anon_sym_PERCENT] = ACTIONS(6612), + [anon_sym_PIPE_PIPE] = ACTIONS(6614), + [anon_sym_AMP_AMP] = ACTIONS(6614), + [anon_sym_PIPE] = ACTIONS(6612), + [anon_sym_CARET] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(6612), + [anon_sym_EQ_EQ] = ACTIONS(6614), + [anon_sym_BANG_EQ] = ACTIONS(6614), + [anon_sym_GT] = ACTIONS(6612), + [anon_sym_GT_EQ] = ACTIONS(6614), + [anon_sym_LT_EQ] = ACTIONS(6612), + [anon_sym_LT] = ACTIONS(6612), + [anon_sym_LT_LT] = ACTIONS(6612), + [anon_sym_GT_GT] = ACTIONS(6612), + [anon_sym___extension__] = ACTIONS(6614), + [anon_sym___attribute__] = ACTIONS(6614), + [anon_sym___attribute] = ACTIONS(6612), + [anon_sym_COLON] = ACTIONS(6612), + [anon_sym_COLON_COLON] = ACTIONS(6614), + [anon_sym_LBRACE] = ACTIONS(6614), + [anon_sym_LBRACK] = ACTIONS(6614), + [anon_sym_RBRACK] = ACTIONS(6614), + [anon_sym_EQ] = ACTIONS(6612), + [anon_sym_const] = ACTIONS(6612), + [anon_sym_constexpr] = ACTIONS(6614), + [anon_sym_volatile] = ACTIONS(6614), + [anon_sym_restrict] = ACTIONS(6614), + [anon_sym___restrict__] = ACTIONS(6614), + [anon_sym__Atomic] = ACTIONS(6614), + [anon_sym__Noreturn] = ACTIONS(6614), + [anon_sym_noreturn] = ACTIONS(6614), + [anon_sym__Nonnull] = ACTIONS(6614), + [anon_sym_mutable] = ACTIONS(6614), + [anon_sym_constinit] = ACTIONS(6614), + [anon_sym_consteval] = ACTIONS(6614), + [anon_sym_alignas] = ACTIONS(6614), + [anon_sym__Alignas] = ACTIONS(6614), + [anon_sym_QMARK] = ACTIONS(6614), + [anon_sym_STAR_EQ] = ACTIONS(6614), + [anon_sym_SLASH_EQ] = ACTIONS(6614), + [anon_sym_PERCENT_EQ] = ACTIONS(6614), + [anon_sym_PLUS_EQ] = ACTIONS(6614), + [anon_sym_DASH_EQ] = ACTIONS(6614), + [anon_sym_LT_LT_EQ] = ACTIONS(6614), + [anon_sym_GT_GT_EQ] = ACTIONS(6614), + [anon_sym_AMP_EQ] = ACTIONS(6614), + [anon_sym_CARET_EQ] = ACTIONS(6614), + [anon_sym_PIPE_EQ] = ACTIONS(6614), + [anon_sym_and_eq] = ACTIONS(6614), + [anon_sym_or_eq] = ACTIONS(6614), + [anon_sym_xor_eq] = ACTIONS(6614), + [anon_sym_LT_EQ_GT] = ACTIONS(6614), + [anon_sym_or] = ACTIONS(6612), + [anon_sym_and] = ACTIONS(6612), + [anon_sym_bitor] = ACTIONS(6614), + [anon_sym_xor] = ACTIONS(6612), + [anon_sym_bitand] = ACTIONS(6614), + [anon_sym_not_eq] = ACTIONS(6614), + [anon_sym_DASH_DASH] = ACTIONS(6614), + [anon_sym_PLUS_PLUS] = ACTIONS(6614), + [anon_sym_DOT] = ACTIONS(6612), + [anon_sym_DOT_STAR] = ACTIONS(6614), + [anon_sym_DASH_GT] = ACTIONS(6614), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6614), + [anon_sym_decltype] = ACTIONS(6614), + [anon_sym_final] = ACTIONS(6614), + [anon_sym_override] = ACTIONS(6614), + [anon_sym_requires] = ACTIONS(6614), }, - [STATE(2756)] = { - [sym_identifier] = ACTIONS(4002), - [aux_sym_preproc_def_token1] = ACTIONS(4002), - [aux_sym_preproc_if_token1] = ACTIONS(4002), - [aux_sym_preproc_if_token2] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), - [aux_sym_preproc_else_token1] = ACTIONS(4002), - [aux_sym_preproc_elif_token1] = ACTIONS(4002), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4002), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4002), - [sym_preproc_directive] = ACTIONS(4002), - [anon_sym_LPAREN2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(4004), - [anon_sym_STAR] = ACTIONS(4004), - [anon_sym_AMP_AMP] = ACTIONS(4004), - [anon_sym_AMP] = ACTIONS(4002), - [anon_sym_SEMI] = ACTIONS(4004), - [anon_sym___extension__] = ACTIONS(4002), - [anon_sym_typedef] = ACTIONS(4002), - [anon_sym_virtual] = ACTIONS(4002), - [anon_sym_extern] = ACTIONS(4002), - [anon_sym___attribute__] = ACTIONS(4002), - [anon_sym___attribute] = ACTIONS(4002), - [anon_sym_using] = ACTIONS(4002), - [anon_sym_COLON_COLON] = ACTIONS(4004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), - [anon_sym___declspec] = ACTIONS(4002), - [anon_sym___based] = ACTIONS(4002), - [anon_sym_signed] = ACTIONS(4002), - [anon_sym_unsigned] = ACTIONS(4002), - [anon_sym_long] = ACTIONS(4002), - [anon_sym_short] = ACTIONS(4002), - [anon_sym_LBRACK] = ACTIONS(4002), - [anon_sym_static] = ACTIONS(4002), - [anon_sym_register] = ACTIONS(4002), - [anon_sym_inline] = ACTIONS(4002), - [anon_sym___inline] = ACTIONS(4002), - [anon_sym___inline__] = ACTIONS(4002), - [anon_sym___forceinline] = ACTIONS(4002), - [anon_sym_thread_local] = ACTIONS(4002), - [anon_sym___thread] = ACTIONS(4002), - [anon_sym_const] = ACTIONS(4002), - [anon_sym_constexpr] = ACTIONS(4002), - [anon_sym_volatile] = ACTIONS(4002), - [anon_sym_restrict] = ACTIONS(4002), - [anon_sym___restrict__] = ACTIONS(4002), - [anon_sym__Atomic] = ACTIONS(4002), - [anon_sym__Noreturn] = ACTIONS(4002), - [anon_sym_noreturn] = ACTIONS(4002), - [anon_sym__Nonnull] = ACTIONS(4002), - [anon_sym_mutable] = ACTIONS(4002), - [anon_sym_constinit] = ACTIONS(4002), - [anon_sym_consteval] = ACTIONS(4002), - [anon_sym_alignas] = ACTIONS(4002), - [anon_sym__Alignas] = ACTIONS(4002), - [sym_primitive_type] = ACTIONS(4002), - [anon_sym_enum] = ACTIONS(4002), - [anon_sym_class] = ACTIONS(4002), - [anon_sym_struct] = ACTIONS(4002), - [anon_sym_union] = ACTIONS(4002), - [anon_sym_typename] = ACTIONS(4002), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4002), - [anon_sym_decltype] = ACTIONS(4002), - [anon_sym_explicit] = ACTIONS(4002), - [anon_sym_private] = ACTIONS(4002), - [anon_sym_template] = ACTIONS(4002), - [anon_sym_operator] = ACTIONS(4002), - [anon_sym_friend] = ACTIONS(4002), - [anon_sym_public] = ACTIONS(4002), - [anon_sym_protected] = ACTIONS(4002), - [anon_sym_static_assert] = ACTIONS(4002), - [anon_sym_LBRACK_COLON] = ACTIONS(4004), + [STATE(2584)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2784), + [sym_ms_pointer_modifier] = STATE(2586), + [sym__abstract_declarator] = STATE(6302), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3579), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2072), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3579), + [aux_sym_pointer_declarator_repeat1] = STATE(2586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_RPAREN] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6861), + [anon_sym_STAR] = ACTIONS(8487), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6859), + [anon_sym_PIPE_PIPE] = ACTIONS(6859), + [anon_sym_AMP_AMP] = ACTIONS(8489), + [anon_sym_PIPE] = ACTIONS(6861), + [anon_sym_CARET] = ACTIONS(6859), + [anon_sym_AMP] = ACTIONS(8491), + [anon_sym_EQ_EQ] = ACTIONS(6859), + [anon_sym_BANG_EQ] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6861), + [anon_sym_GT_EQ] = ACTIONS(6859), + [anon_sym_LT_EQ] = ACTIONS(6861), + [anon_sym_LT] = ACTIONS(6861), + [anon_sym_LT_LT] = ACTIONS(6859), + [anon_sym_GT_GT] = ACTIONS(6859), + [anon_sym_SEMI] = ACTIONS(6859), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym_COLON] = ACTIONS(6861), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6859), + [sym_ms_restrict_modifier] = ACTIONS(8094), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8119), + [sym_ms_signed_ptr_modifier] = ACTIONS(8119), + [anon_sym__unaligned] = ACTIONS(8121), + [anon_sym___unaligned] = ACTIONS(8121), + [anon_sym_RBRACE] = ACTIONS(6859), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(6859), + [anon_sym_LT_EQ_GT] = ACTIONS(6859), + [anon_sym_or] = ACTIONS(6859), + [anon_sym_and] = ACTIONS(6859), + [anon_sym_bitor] = ACTIONS(6859), + [anon_sym_xor] = ACTIONS(6859), + [anon_sym_bitand] = ACTIONS(6859), + [anon_sym_not_eq] = ACTIONS(6859), + [anon_sym_DASH_DASH] = ACTIONS(6859), + [anon_sym_PLUS_PLUS] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6861), + [anon_sym_DOT_STAR] = ACTIONS(6859), + [anon_sym_DASH_GT] = ACTIONS(6859), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6859), }, - [STATE(2757)] = { - [sym_identifier] = ACTIONS(4006), - [aux_sym_preproc_def_token1] = ACTIONS(4006), - [aux_sym_preproc_if_token1] = ACTIONS(4006), - [aux_sym_preproc_if_token2] = ACTIONS(4006), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4006), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4006), - [aux_sym_preproc_else_token1] = ACTIONS(4006), - [aux_sym_preproc_elif_token1] = ACTIONS(4006), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4006), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4006), - [sym_preproc_directive] = ACTIONS(4006), - [anon_sym_LPAREN2] = ACTIONS(4008), - [anon_sym_TILDE] = ACTIONS(4008), - [anon_sym_STAR] = ACTIONS(4008), - [anon_sym_AMP_AMP] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4006), - [anon_sym_SEMI] = ACTIONS(4008), - [anon_sym___extension__] = ACTIONS(4006), - [anon_sym_typedef] = ACTIONS(4006), - [anon_sym_virtual] = ACTIONS(4006), - [anon_sym_extern] = ACTIONS(4006), - [anon_sym___attribute__] = ACTIONS(4006), - [anon_sym___attribute] = ACTIONS(4006), - [anon_sym_using] = ACTIONS(4006), - [anon_sym_COLON_COLON] = ACTIONS(4008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4008), - [anon_sym___declspec] = ACTIONS(4006), - [anon_sym___based] = ACTIONS(4006), - [anon_sym_signed] = ACTIONS(4006), - [anon_sym_unsigned] = ACTIONS(4006), - [anon_sym_long] = ACTIONS(4006), - [anon_sym_short] = ACTIONS(4006), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_static] = ACTIONS(4006), - [anon_sym_register] = ACTIONS(4006), - [anon_sym_inline] = ACTIONS(4006), - [anon_sym___inline] = ACTIONS(4006), - [anon_sym___inline__] = ACTIONS(4006), - [anon_sym___forceinline] = ACTIONS(4006), - [anon_sym_thread_local] = ACTIONS(4006), - [anon_sym___thread] = ACTIONS(4006), - [anon_sym_const] = ACTIONS(4006), - [anon_sym_constexpr] = ACTIONS(4006), - [anon_sym_volatile] = ACTIONS(4006), - [anon_sym_restrict] = ACTIONS(4006), - [anon_sym___restrict__] = ACTIONS(4006), - [anon_sym__Atomic] = ACTIONS(4006), - [anon_sym__Noreturn] = ACTIONS(4006), - [anon_sym_noreturn] = ACTIONS(4006), - [anon_sym__Nonnull] = ACTIONS(4006), - [anon_sym_mutable] = ACTIONS(4006), - [anon_sym_constinit] = ACTIONS(4006), - [anon_sym_consteval] = ACTIONS(4006), - [anon_sym_alignas] = ACTIONS(4006), - [anon_sym__Alignas] = ACTIONS(4006), - [sym_primitive_type] = ACTIONS(4006), - [anon_sym_enum] = ACTIONS(4006), - [anon_sym_class] = ACTIONS(4006), - [anon_sym_struct] = ACTIONS(4006), - [anon_sym_union] = ACTIONS(4006), - [anon_sym_typename] = ACTIONS(4006), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4006), - [anon_sym_decltype] = ACTIONS(4006), - [anon_sym_explicit] = ACTIONS(4006), - [anon_sym_private] = ACTIONS(4006), - [anon_sym_template] = ACTIONS(4006), - [anon_sym_operator] = ACTIONS(4006), - [anon_sym_friend] = ACTIONS(4006), - [anon_sym_public] = ACTIONS(4006), - [anon_sym_protected] = ACTIONS(4006), - [anon_sym_static_assert] = ACTIONS(4006), - [anon_sym_LBRACK_COLON] = ACTIONS(4008), + [STATE(2585)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6634), + [anon_sym_COMMA] = ACTIONS(6634), + [anon_sym_LPAREN2] = ACTIONS(6634), + [anon_sym_DASH] = ACTIONS(6632), + [anon_sym_PLUS] = ACTIONS(6632), + [anon_sym_STAR] = ACTIONS(6632), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_PERCENT] = ACTIONS(6632), + [anon_sym_PIPE_PIPE] = ACTIONS(6634), + [anon_sym_AMP_AMP] = ACTIONS(6634), + [anon_sym_PIPE] = ACTIONS(6632), + [anon_sym_CARET] = ACTIONS(6632), + [anon_sym_AMP] = ACTIONS(6632), + [anon_sym_EQ_EQ] = ACTIONS(6634), + [anon_sym_BANG_EQ] = ACTIONS(6634), + [anon_sym_GT] = ACTIONS(6632), + [anon_sym_GT_EQ] = ACTIONS(6632), + [anon_sym_LT_EQ] = ACTIONS(6632), + [anon_sym_LT] = ACTIONS(6632), + [anon_sym_LT_LT] = ACTIONS(6632), + [anon_sym_GT_GT] = ACTIONS(6632), + [anon_sym___extension__] = ACTIONS(6634), + [anon_sym___attribute__] = ACTIONS(6634), + [anon_sym___attribute] = ACTIONS(6632), + [anon_sym_COLON] = ACTIONS(6632), + [anon_sym_COLON_COLON] = ACTIONS(6634), + [anon_sym_LBRACE] = ACTIONS(6634), + [anon_sym_LBRACK] = ACTIONS(6634), + [anon_sym_EQ] = ACTIONS(6632), + [anon_sym_const] = ACTIONS(6632), + [anon_sym_constexpr] = ACTIONS(6634), + [anon_sym_volatile] = ACTIONS(6634), + [anon_sym_restrict] = ACTIONS(6634), + [anon_sym___restrict__] = ACTIONS(6634), + [anon_sym__Atomic] = ACTIONS(6634), + [anon_sym__Noreturn] = ACTIONS(6634), + [anon_sym_noreturn] = ACTIONS(6634), + [anon_sym__Nonnull] = ACTIONS(6634), + [anon_sym_mutable] = ACTIONS(6634), + [anon_sym_constinit] = ACTIONS(6634), + [anon_sym_consteval] = ACTIONS(6634), + [anon_sym_alignas] = ACTIONS(6634), + [anon_sym__Alignas] = ACTIONS(6634), + [anon_sym_QMARK] = ACTIONS(6634), + [anon_sym_STAR_EQ] = ACTIONS(6634), + [anon_sym_SLASH_EQ] = ACTIONS(6634), + [anon_sym_PERCENT_EQ] = ACTIONS(6634), + [anon_sym_PLUS_EQ] = ACTIONS(6634), + [anon_sym_DASH_EQ] = ACTIONS(6634), + [anon_sym_LT_LT_EQ] = ACTIONS(6634), + [anon_sym_GT_GT_EQ] = ACTIONS(6632), + [anon_sym_AMP_EQ] = ACTIONS(6634), + [anon_sym_CARET_EQ] = ACTIONS(6634), + [anon_sym_PIPE_EQ] = ACTIONS(6634), + [anon_sym_and_eq] = ACTIONS(6634), + [anon_sym_or_eq] = ACTIONS(6634), + [anon_sym_xor_eq] = ACTIONS(6634), + [anon_sym_LT_EQ_GT] = ACTIONS(6634), + [anon_sym_or] = ACTIONS(6632), + [anon_sym_and] = ACTIONS(6632), + [anon_sym_bitor] = ACTIONS(6634), + [anon_sym_xor] = ACTIONS(6632), + [anon_sym_bitand] = ACTIONS(6634), + [anon_sym_not_eq] = ACTIONS(6634), + [anon_sym_DASH_DASH] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_DOT] = ACTIONS(6632), + [anon_sym_DOT_STAR] = ACTIONS(6634), + [anon_sym_DASH_GT] = ACTIONS(6634), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6634), + [anon_sym_decltype] = ACTIONS(6634), + [anon_sym_final] = ACTIONS(6634), + [anon_sym_override] = ACTIONS(6634), + [anon_sym_GT2] = ACTIONS(6634), + [anon_sym_requires] = ACTIONS(6634), }, - [STATE(2758)] = { - [sym_identifier] = ACTIONS(4010), - [aux_sym_preproc_def_token1] = ACTIONS(4010), - [aux_sym_preproc_if_token1] = ACTIONS(4010), - [aux_sym_preproc_if_token2] = ACTIONS(4010), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4010), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4010), - [aux_sym_preproc_else_token1] = ACTIONS(4010), - [aux_sym_preproc_elif_token1] = ACTIONS(4010), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4010), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4010), - [sym_preproc_directive] = ACTIONS(4010), - [anon_sym_LPAREN2] = ACTIONS(4012), - [anon_sym_TILDE] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4012), - [anon_sym_AMP_AMP] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4012), - [anon_sym___extension__] = ACTIONS(4010), - [anon_sym_typedef] = ACTIONS(4010), - [anon_sym_virtual] = ACTIONS(4010), - [anon_sym_extern] = ACTIONS(4010), - [anon_sym___attribute__] = ACTIONS(4010), - [anon_sym___attribute] = ACTIONS(4010), - [anon_sym_using] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4012), - [anon_sym___declspec] = ACTIONS(4010), - [anon_sym___based] = ACTIONS(4010), - [anon_sym_signed] = ACTIONS(4010), - [anon_sym_unsigned] = ACTIONS(4010), - [anon_sym_long] = ACTIONS(4010), - [anon_sym_short] = ACTIONS(4010), - [anon_sym_LBRACK] = ACTIONS(4010), - [anon_sym_static] = ACTIONS(4010), - [anon_sym_register] = ACTIONS(4010), - [anon_sym_inline] = ACTIONS(4010), - [anon_sym___inline] = ACTIONS(4010), - [anon_sym___inline__] = ACTIONS(4010), - [anon_sym___forceinline] = ACTIONS(4010), - [anon_sym_thread_local] = ACTIONS(4010), - [anon_sym___thread] = ACTIONS(4010), - [anon_sym_const] = ACTIONS(4010), - [anon_sym_constexpr] = ACTIONS(4010), - [anon_sym_volatile] = ACTIONS(4010), - [anon_sym_restrict] = ACTIONS(4010), - [anon_sym___restrict__] = ACTIONS(4010), - [anon_sym__Atomic] = ACTIONS(4010), - [anon_sym__Noreturn] = ACTIONS(4010), - [anon_sym_noreturn] = ACTIONS(4010), - [anon_sym__Nonnull] = ACTIONS(4010), - [anon_sym_mutable] = ACTIONS(4010), - [anon_sym_constinit] = ACTIONS(4010), - [anon_sym_consteval] = ACTIONS(4010), - [anon_sym_alignas] = ACTIONS(4010), - [anon_sym__Alignas] = ACTIONS(4010), - [sym_primitive_type] = ACTIONS(4010), - [anon_sym_enum] = ACTIONS(4010), - [anon_sym_class] = ACTIONS(4010), - [anon_sym_struct] = ACTIONS(4010), - [anon_sym_union] = ACTIONS(4010), - [anon_sym_typename] = ACTIONS(4010), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4010), - [anon_sym_decltype] = ACTIONS(4010), - [anon_sym_explicit] = ACTIONS(4010), - [anon_sym_private] = ACTIONS(4010), - [anon_sym_template] = ACTIONS(4010), - [anon_sym_operator] = ACTIONS(4010), - [anon_sym_friend] = ACTIONS(4010), - [anon_sym_public] = ACTIONS(4010), - [anon_sym_protected] = ACTIONS(4010), - [anon_sym_static_assert] = ACTIONS(4010), - [anon_sym_LBRACK_COLON] = ACTIONS(4012), + [STATE(2586)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2784), + [sym_ms_pointer_modifier] = STATE(2595), + [sym__abstract_declarator] = STATE(6346), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3584), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2072), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3584), + [aux_sym_pointer_declarator_repeat1] = STATE(2595), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(8487), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6823), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(8489), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6823), + [anon_sym_AMP] = ACTIONS(8491), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6823), + [anon_sym_GT_GT] = ACTIONS(6823), + [anon_sym_SEMI] = ACTIONS(6823), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym_COLON] = ACTIONS(6821), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6823), + [sym_ms_restrict_modifier] = ACTIONS(8094), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8119), + [sym_ms_signed_ptr_modifier] = ACTIONS(8119), + [anon_sym__unaligned] = ACTIONS(8121), + [anon_sym___unaligned] = ACTIONS(8121), + [anon_sym_RBRACE] = ACTIONS(6823), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6823), + [anon_sym_and] = ACTIONS(6823), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6823), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6823), }, - [STATE(2759)] = { - [sym_identifier] = ACTIONS(4014), - [aux_sym_preproc_def_token1] = ACTIONS(4014), - [aux_sym_preproc_if_token1] = ACTIONS(4014), - [aux_sym_preproc_if_token2] = ACTIONS(4014), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4014), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4014), - [aux_sym_preproc_else_token1] = ACTIONS(4014), - [aux_sym_preproc_elif_token1] = ACTIONS(4014), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4014), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4014), - [sym_preproc_directive] = ACTIONS(4014), - [anon_sym_LPAREN2] = ACTIONS(4016), - [anon_sym_TILDE] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4014), - [anon_sym_SEMI] = ACTIONS(4016), - [anon_sym___extension__] = ACTIONS(4014), - [anon_sym_typedef] = ACTIONS(4014), - [anon_sym_virtual] = ACTIONS(4014), - [anon_sym_extern] = ACTIONS(4014), - [anon_sym___attribute__] = ACTIONS(4014), - [anon_sym___attribute] = ACTIONS(4014), - [anon_sym_using] = ACTIONS(4014), - [anon_sym_COLON_COLON] = ACTIONS(4016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4016), - [anon_sym___declspec] = ACTIONS(4014), - [anon_sym___based] = ACTIONS(4014), - [anon_sym_signed] = ACTIONS(4014), - [anon_sym_unsigned] = ACTIONS(4014), - [anon_sym_long] = ACTIONS(4014), - [anon_sym_short] = ACTIONS(4014), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_static] = ACTIONS(4014), - [anon_sym_register] = ACTIONS(4014), - [anon_sym_inline] = ACTIONS(4014), - [anon_sym___inline] = ACTIONS(4014), - [anon_sym___inline__] = ACTIONS(4014), - [anon_sym___forceinline] = ACTIONS(4014), - [anon_sym_thread_local] = ACTIONS(4014), - [anon_sym___thread] = ACTIONS(4014), - [anon_sym_const] = ACTIONS(4014), - [anon_sym_constexpr] = ACTIONS(4014), - [anon_sym_volatile] = ACTIONS(4014), - [anon_sym_restrict] = ACTIONS(4014), - [anon_sym___restrict__] = ACTIONS(4014), - [anon_sym__Atomic] = ACTIONS(4014), - [anon_sym__Noreturn] = ACTIONS(4014), - [anon_sym_noreturn] = ACTIONS(4014), - [anon_sym__Nonnull] = ACTIONS(4014), - [anon_sym_mutable] = ACTIONS(4014), - [anon_sym_constinit] = ACTIONS(4014), - [anon_sym_consteval] = ACTIONS(4014), - [anon_sym_alignas] = ACTIONS(4014), - [anon_sym__Alignas] = ACTIONS(4014), - [sym_primitive_type] = ACTIONS(4014), - [anon_sym_enum] = ACTIONS(4014), - [anon_sym_class] = ACTIONS(4014), - [anon_sym_struct] = ACTIONS(4014), - [anon_sym_union] = ACTIONS(4014), - [anon_sym_typename] = ACTIONS(4014), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4014), - [anon_sym_decltype] = ACTIONS(4014), - [anon_sym_explicit] = ACTIONS(4014), - [anon_sym_private] = ACTIONS(4014), - [anon_sym_template] = ACTIONS(4014), - [anon_sym_operator] = ACTIONS(4014), - [anon_sym_friend] = ACTIONS(4014), - [anon_sym_public] = ACTIONS(4014), - [anon_sym_protected] = ACTIONS(4014), - [anon_sym_static_assert] = ACTIONS(4014), - [anon_sym_LBRACK_COLON] = ACTIONS(4016), + [STATE(2587)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6614), + [anon_sym_COMMA] = ACTIONS(6614), + [anon_sym_LPAREN2] = ACTIONS(6614), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6612), + [anon_sym_SLASH] = ACTIONS(6612), + [anon_sym_PERCENT] = ACTIONS(6612), + [anon_sym_PIPE_PIPE] = ACTIONS(6614), + [anon_sym_AMP_AMP] = ACTIONS(6614), + [anon_sym_PIPE] = ACTIONS(6612), + [anon_sym_CARET] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(6612), + [anon_sym_EQ_EQ] = ACTIONS(6614), + [anon_sym_BANG_EQ] = ACTIONS(6614), + [anon_sym_GT] = ACTIONS(6612), + [anon_sym_GT_EQ] = ACTIONS(6612), + [anon_sym_LT_EQ] = ACTIONS(6612), + [anon_sym_LT] = ACTIONS(6612), + [anon_sym_LT_LT] = ACTIONS(6612), + [anon_sym_GT_GT] = ACTIONS(6612), + [anon_sym___extension__] = ACTIONS(6614), + [anon_sym___attribute__] = ACTIONS(6614), + [anon_sym___attribute] = ACTIONS(6612), + [anon_sym_COLON] = ACTIONS(6612), + [anon_sym_COLON_COLON] = ACTIONS(6614), + [anon_sym_LBRACE] = ACTIONS(6614), + [anon_sym_LBRACK] = ACTIONS(6614), + [anon_sym_EQ] = ACTIONS(6612), + [anon_sym_const] = ACTIONS(6612), + [anon_sym_constexpr] = ACTIONS(6614), + [anon_sym_volatile] = ACTIONS(6614), + [anon_sym_restrict] = ACTIONS(6614), + [anon_sym___restrict__] = ACTIONS(6614), + [anon_sym__Atomic] = ACTIONS(6614), + [anon_sym__Noreturn] = ACTIONS(6614), + [anon_sym_noreturn] = ACTIONS(6614), + [anon_sym__Nonnull] = ACTIONS(6614), + [anon_sym_mutable] = ACTIONS(6614), + [anon_sym_constinit] = ACTIONS(6614), + [anon_sym_consteval] = ACTIONS(6614), + [anon_sym_alignas] = ACTIONS(6614), + [anon_sym__Alignas] = ACTIONS(6614), + [anon_sym_QMARK] = ACTIONS(6614), + [anon_sym_STAR_EQ] = ACTIONS(6614), + [anon_sym_SLASH_EQ] = ACTIONS(6614), + [anon_sym_PERCENT_EQ] = ACTIONS(6614), + [anon_sym_PLUS_EQ] = ACTIONS(6614), + [anon_sym_DASH_EQ] = ACTIONS(6614), + [anon_sym_LT_LT_EQ] = ACTIONS(6614), + [anon_sym_GT_GT_EQ] = ACTIONS(6612), + [anon_sym_AMP_EQ] = ACTIONS(6614), + [anon_sym_CARET_EQ] = ACTIONS(6614), + [anon_sym_PIPE_EQ] = ACTIONS(6614), + [anon_sym_and_eq] = ACTIONS(6614), + [anon_sym_or_eq] = ACTIONS(6614), + [anon_sym_xor_eq] = ACTIONS(6614), + [anon_sym_LT_EQ_GT] = ACTIONS(6614), + [anon_sym_or] = ACTIONS(6612), + [anon_sym_and] = ACTIONS(6612), + [anon_sym_bitor] = ACTIONS(6614), + [anon_sym_xor] = ACTIONS(6612), + [anon_sym_bitand] = ACTIONS(6614), + [anon_sym_not_eq] = ACTIONS(6614), + [anon_sym_DASH_DASH] = ACTIONS(6614), + [anon_sym_PLUS_PLUS] = ACTIONS(6614), + [anon_sym_DOT] = ACTIONS(6612), + [anon_sym_DOT_STAR] = ACTIONS(6614), + [anon_sym_DASH_GT] = ACTIONS(6614), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6614), + [anon_sym_decltype] = ACTIONS(6614), + [anon_sym_final] = ACTIONS(6614), + [anon_sym_override] = ACTIONS(6614), + [anon_sym_GT2] = ACTIONS(6614), + [anon_sym_requires] = ACTIONS(6614), }, - [STATE(2760)] = { - [sym_identifier] = ACTIONS(8420), - [aux_sym_preproc_def_token1] = ACTIONS(8420), - [aux_sym_preproc_if_token1] = ACTIONS(8420), - [aux_sym_preproc_if_token2] = ACTIONS(8420), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8420), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8420), - [aux_sym_preproc_else_token1] = ACTIONS(8420), - [aux_sym_preproc_elif_token1] = ACTIONS(8420), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8420), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8420), - [sym_preproc_directive] = ACTIONS(8420), - [anon_sym_LPAREN2] = ACTIONS(8422), - [anon_sym_TILDE] = ACTIONS(8422), - [anon_sym_STAR] = ACTIONS(8422), - [anon_sym_AMP_AMP] = ACTIONS(8422), - [anon_sym_AMP] = ACTIONS(8420), - [anon_sym_SEMI] = ACTIONS(8422), - [anon_sym___extension__] = ACTIONS(8420), - [anon_sym_typedef] = ACTIONS(8420), - [anon_sym_virtual] = ACTIONS(8420), - [anon_sym_extern] = ACTIONS(8420), - [anon_sym___attribute__] = ACTIONS(8420), - [anon_sym___attribute] = ACTIONS(8420), - [anon_sym_using] = ACTIONS(8420), - [anon_sym_COLON_COLON] = ACTIONS(8422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8422), - [anon_sym___declspec] = ACTIONS(8420), - [anon_sym___based] = ACTIONS(8420), - [anon_sym_signed] = ACTIONS(8420), - [anon_sym_unsigned] = ACTIONS(8420), - [anon_sym_long] = ACTIONS(8420), - [anon_sym_short] = ACTIONS(8420), - [anon_sym_LBRACK] = ACTIONS(8420), - [anon_sym_static] = ACTIONS(8420), - [anon_sym_register] = ACTIONS(8420), - [anon_sym_inline] = ACTIONS(8420), - [anon_sym___inline] = ACTIONS(8420), - [anon_sym___inline__] = ACTIONS(8420), - [anon_sym___forceinline] = ACTIONS(8420), - [anon_sym_thread_local] = ACTIONS(8420), - [anon_sym___thread] = ACTIONS(8420), - [anon_sym_const] = ACTIONS(8420), - [anon_sym_constexpr] = ACTIONS(8420), - [anon_sym_volatile] = ACTIONS(8420), - [anon_sym_restrict] = ACTIONS(8420), - [anon_sym___restrict__] = ACTIONS(8420), - [anon_sym__Atomic] = ACTIONS(8420), - [anon_sym__Noreturn] = ACTIONS(8420), - [anon_sym_noreturn] = ACTIONS(8420), - [anon_sym__Nonnull] = ACTIONS(8420), - [anon_sym_mutable] = ACTIONS(8420), - [anon_sym_constinit] = ACTIONS(8420), - [anon_sym_consteval] = ACTIONS(8420), - [anon_sym_alignas] = ACTIONS(8420), - [anon_sym__Alignas] = ACTIONS(8420), - [sym_primitive_type] = ACTIONS(8420), - [anon_sym_enum] = ACTIONS(8420), - [anon_sym_class] = ACTIONS(8420), - [anon_sym_struct] = ACTIONS(8420), - [anon_sym_union] = ACTIONS(8420), - [anon_sym_typename] = ACTIONS(8420), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8420), - [anon_sym_decltype] = ACTIONS(8420), - [anon_sym_explicit] = ACTIONS(8420), - [anon_sym_private] = ACTIONS(8420), - [anon_sym_template] = ACTIONS(8420), - [anon_sym_operator] = ACTIONS(8420), - [anon_sym_friend] = ACTIONS(8420), - [anon_sym_public] = ACTIONS(8420), - [anon_sym_protected] = ACTIONS(8420), - [anon_sym_static_assert] = ACTIONS(8420), - [anon_sym_LBRACK_COLON] = ACTIONS(8422), + [STATE(2588)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6626), + [anon_sym_COMMA] = ACTIONS(6626), + [anon_sym_LPAREN2] = ACTIONS(6626), + [anon_sym_DASH] = ACTIONS(6624), + [anon_sym_PLUS] = ACTIONS(6624), + [anon_sym_STAR] = ACTIONS(6624), + [anon_sym_SLASH] = ACTIONS(6624), + [anon_sym_PERCENT] = ACTIONS(6624), + [anon_sym_PIPE_PIPE] = ACTIONS(6626), + [anon_sym_AMP_AMP] = ACTIONS(6626), + [anon_sym_PIPE] = ACTIONS(6624), + [anon_sym_CARET] = ACTIONS(6624), + [anon_sym_AMP] = ACTIONS(6624), + [anon_sym_EQ_EQ] = ACTIONS(6626), + [anon_sym_BANG_EQ] = ACTIONS(6626), + [anon_sym_GT] = ACTIONS(6624), + [anon_sym_GT_EQ] = ACTIONS(6624), + [anon_sym_LT_EQ] = ACTIONS(6624), + [anon_sym_LT] = ACTIONS(6624), + [anon_sym_LT_LT] = ACTIONS(6624), + [anon_sym_GT_GT] = ACTIONS(6624), + [anon_sym___extension__] = ACTIONS(6626), + [anon_sym___attribute__] = ACTIONS(6626), + [anon_sym___attribute] = ACTIONS(6624), + [anon_sym_COLON] = ACTIONS(6624), + [anon_sym_COLON_COLON] = ACTIONS(6626), + [anon_sym_LBRACE] = ACTIONS(6626), + [anon_sym_LBRACK] = ACTIONS(6626), + [anon_sym_EQ] = ACTIONS(6624), + [anon_sym_const] = ACTIONS(6624), + [anon_sym_constexpr] = ACTIONS(6626), + [anon_sym_volatile] = ACTIONS(6626), + [anon_sym_restrict] = ACTIONS(6626), + [anon_sym___restrict__] = ACTIONS(6626), + [anon_sym__Atomic] = ACTIONS(6626), + [anon_sym__Noreturn] = ACTIONS(6626), + [anon_sym_noreturn] = ACTIONS(6626), + [anon_sym__Nonnull] = ACTIONS(6626), + [anon_sym_mutable] = ACTIONS(6626), + [anon_sym_constinit] = ACTIONS(6626), + [anon_sym_consteval] = ACTIONS(6626), + [anon_sym_alignas] = ACTIONS(6626), + [anon_sym__Alignas] = ACTIONS(6626), + [anon_sym_QMARK] = ACTIONS(6626), + [anon_sym_STAR_EQ] = ACTIONS(6626), + [anon_sym_SLASH_EQ] = ACTIONS(6626), + [anon_sym_PERCENT_EQ] = ACTIONS(6626), + [anon_sym_PLUS_EQ] = ACTIONS(6626), + [anon_sym_DASH_EQ] = ACTIONS(6626), + [anon_sym_LT_LT_EQ] = ACTIONS(6626), + [anon_sym_GT_GT_EQ] = ACTIONS(6624), + [anon_sym_AMP_EQ] = ACTIONS(6626), + [anon_sym_CARET_EQ] = ACTIONS(6626), + [anon_sym_PIPE_EQ] = ACTIONS(6626), + [anon_sym_and_eq] = ACTIONS(6626), + [anon_sym_or_eq] = ACTIONS(6626), + [anon_sym_xor_eq] = ACTIONS(6626), + [anon_sym_LT_EQ_GT] = ACTIONS(6626), + [anon_sym_or] = ACTIONS(6624), + [anon_sym_and] = ACTIONS(6624), + [anon_sym_bitor] = ACTIONS(6626), + [anon_sym_xor] = ACTIONS(6624), + [anon_sym_bitand] = ACTIONS(6626), + [anon_sym_not_eq] = ACTIONS(6626), + [anon_sym_DASH_DASH] = ACTIONS(6626), + [anon_sym_PLUS_PLUS] = ACTIONS(6626), + [anon_sym_DOT] = ACTIONS(6624), + [anon_sym_DOT_STAR] = ACTIONS(6626), + [anon_sym_DASH_GT] = ACTIONS(6626), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6626), + [anon_sym_decltype] = ACTIONS(6626), + [anon_sym_final] = ACTIONS(6626), + [anon_sym_override] = ACTIONS(6626), + [anon_sym_GT2] = ACTIONS(6626), + [anon_sym_requires] = ACTIONS(6626), }, - [STATE(2761)] = { - [sym_identifier] = ACTIONS(4018), - [aux_sym_preproc_def_token1] = ACTIONS(4018), - [aux_sym_preproc_if_token1] = ACTIONS(4018), - [aux_sym_preproc_if_token2] = ACTIONS(4018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4018), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4018), - [aux_sym_preproc_else_token1] = ACTIONS(4018), - [aux_sym_preproc_elif_token1] = ACTIONS(4018), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4018), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4018), - [sym_preproc_directive] = ACTIONS(4018), - [anon_sym_LPAREN2] = ACTIONS(4020), - [anon_sym_TILDE] = ACTIONS(4020), - [anon_sym_STAR] = ACTIONS(4020), - [anon_sym_AMP_AMP] = ACTIONS(4020), - [anon_sym_AMP] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4020), - [anon_sym___extension__] = ACTIONS(4018), - [anon_sym_typedef] = ACTIONS(4018), - [anon_sym_virtual] = ACTIONS(4018), - [anon_sym_extern] = ACTIONS(4018), - [anon_sym___attribute__] = ACTIONS(4018), - [anon_sym___attribute] = ACTIONS(4018), - [anon_sym_using] = ACTIONS(4018), - [anon_sym_COLON_COLON] = ACTIONS(4020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4020), - [anon_sym___declspec] = ACTIONS(4018), - [anon_sym___based] = ACTIONS(4018), - [anon_sym_signed] = ACTIONS(4018), - [anon_sym_unsigned] = ACTIONS(4018), - [anon_sym_long] = ACTIONS(4018), - [anon_sym_short] = ACTIONS(4018), - [anon_sym_LBRACK] = ACTIONS(4018), - [anon_sym_static] = ACTIONS(4018), - [anon_sym_register] = ACTIONS(4018), - [anon_sym_inline] = ACTIONS(4018), - [anon_sym___inline] = ACTIONS(4018), - [anon_sym___inline__] = ACTIONS(4018), - [anon_sym___forceinline] = ACTIONS(4018), - [anon_sym_thread_local] = ACTIONS(4018), - [anon_sym___thread] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4018), - [anon_sym_constexpr] = ACTIONS(4018), - [anon_sym_volatile] = ACTIONS(4018), - [anon_sym_restrict] = ACTIONS(4018), - [anon_sym___restrict__] = ACTIONS(4018), - [anon_sym__Atomic] = ACTIONS(4018), - [anon_sym__Noreturn] = ACTIONS(4018), - [anon_sym_noreturn] = ACTIONS(4018), - [anon_sym__Nonnull] = ACTIONS(4018), - [anon_sym_mutable] = ACTIONS(4018), - [anon_sym_constinit] = ACTIONS(4018), - [anon_sym_consteval] = ACTIONS(4018), - [anon_sym_alignas] = ACTIONS(4018), - [anon_sym__Alignas] = ACTIONS(4018), - [sym_primitive_type] = ACTIONS(4018), - [anon_sym_enum] = ACTIONS(4018), - [anon_sym_class] = ACTIONS(4018), - [anon_sym_struct] = ACTIONS(4018), - [anon_sym_union] = ACTIONS(4018), - [anon_sym_typename] = ACTIONS(4018), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4018), - [anon_sym_decltype] = ACTIONS(4018), - [anon_sym_explicit] = ACTIONS(4018), - [anon_sym_private] = ACTIONS(4018), - [anon_sym_template] = ACTIONS(4018), - [anon_sym_operator] = ACTIONS(4018), - [anon_sym_friend] = ACTIONS(4018), - [anon_sym_public] = ACTIONS(4018), - [anon_sym_protected] = ACTIONS(4018), - [anon_sym_static_assert] = ACTIONS(4018), - [anon_sym_LBRACK_COLON] = ACTIONS(4020), + [STATE(2589)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6630), + [anon_sym_COMMA] = ACTIONS(6630), + [anon_sym_LPAREN2] = ACTIONS(6630), + [anon_sym_DASH] = ACTIONS(6628), + [anon_sym_PLUS] = ACTIONS(6628), + [anon_sym_STAR] = ACTIONS(6628), + [anon_sym_SLASH] = ACTIONS(6628), + [anon_sym_PERCENT] = ACTIONS(6628), + [anon_sym_PIPE_PIPE] = ACTIONS(6630), + [anon_sym_AMP_AMP] = ACTIONS(6630), + [anon_sym_PIPE] = ACTIONS(6628), + [anon_sym_CARET] = ACTIONS(6628), + [anon_sym_AMP] = ACTIONS(6628), + [anon_sym_EQ_EQ] = ACTIONS(6630), + [anon_sym_BANG_EQ] = ACTIONS(6630), + [anon_sym_GT] = ACTIONS(6628), + [anon_sym_GT_EQ] = ACTIONS(6628), + [anon_sym_LT_EQ] = ACTIONS(6628), + [anon_sym_LT] = ACTIONS(6628), + [anon_sym_LT_LT] = ACTIONS(6628), + [anon_sym_GT_GT] = ACTIONS(6628), + [anon_sym___extension__] = ACTIONS(6630), + [anon_sym___attribute__] = ACTIONS(6630), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_COLON] = ACTIONS(6628), + [anon_sym_COLON_COLON] = ACTIONS(6630), + [anon_sym_LBRACE] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(6630), + [anon_sym_EQ] = ACTIONS(6628), + [anon_sym_const] = ACTIONS(6628), + [anon_sym_constexpr] = ACTIONS(6630), + [anon_sym_volatile] = ACTIONS(6630), + [anon_sym_restrict] = ACTIONS(6630), + [anon_sym___restrict__] = ACTIONS(6630), + [anon_sym__Atomic] = ACTIONS(6630), + [anon_sym__Noreturn] = ACTIONS(6630), + [anon_sym_noreturn] = ACTIONS(6630), + [anon_sym__Nonnull] = ACTIONS(6630), + [anon_sym_mutable] = ACTIONS(6630), + [anon_sym_constinit] = ACTIONS(6630), + [anon_sym_consteval] = ACTIONS(6630), + [anon_sym_alignas] = ACTIONS(6630), + [anon_sym__Alignas] = ACTIONS(6630), + [anon_sym_QMARK] = ACTIONS(6630), + [anon_sym_STAR_EQ] = ACTIONS(6630), + [anon_sym_SLASH_EQ] = ACTIONS(6630), + [anon_sym_PERCENT_EQ] = ACTIONS(6630), + [anon_sym_PLUS_EQ] = ACTIONS(6630), + [anon_sym_DASH_EQ] = ACTIONS(6630), + [anon_sym_LT_LT_EQ] = ACTIONS(6630), + [anon_sym_GT_GT_EQ] = ACTIONS(6628), + [anon_sym_AMP_EQ] = ACTIONS(6630), + [anon_sym_CARET_EQ] = ACTIONS(6630), + [anon_sym_PIPE_EQ] = ACTIONS(6630), + [anon_sym_and_eq] = ACTIONS(6630), + [anon_sym_or_eq] = ACTIONS(6630), + [anon_sym_xor_eq] = ACTIONS(6630), + [anon_sym_LT_EQ_GT] = ACTIONS(6630), + [anon_sym_or] = ACTIONS(6628), + [anon_sym_and] = ACTIONS(6628), + [anon_sym_bitor] = ACTIONS(6630), + [anon_sym_xor] = ACTIONS(6628), + [anon_sym_bitand] = ACTIONS(6630), + [anon_sym_not_eq] = ACTIONS(6630), + [anon_sym_DASH_DASH] = ACTIONS(6630), + [anon_sym_PLUS_PLUS] = ACTIONS(6630), + [anon_sym_DOT] = ACTIONS(6628), + [anon_sym_DOT_STAR] = ACTIONS(6630), + [anon_sym_DASH_GT] = ACTIONS(6630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6630), + [anon_sym_decltype] = ACTIONS(6630), + [anon_sym_final] = ACTIONS(6630), + [anon_sym_override] = ACTIONS(6630), + [anon_sym_GT2] = ACTIONS(6630), + [anon_sym_requires] = ACTIONS(6630), }, - [STATE(2762)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2547), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_signed] = ACTIONS(8154), - [anon_sym_unsigned] = ACTIONS(8154), - [anon_sym_long] = ACTIONS(8154), - [anon_sym_short] = ACTIONS(8154), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6800), - [anon_sym_and] = ACTIONS(6800), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6800), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6798), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6800), - [anon_sym_override] = ACTIONS(6800), - [anon_sym_requires] = ACTIONS(6800), - [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + [STATE(2590)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_signed] = ACTIONS(8211), + [anon_sym_unsigned] = ACTIONS(8211), + [anon_sym_long] = ACTIONS(8211), + [anon_sym_short] = ACTIONS(8211), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7223), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), + [anon_sym_DASH_GT_STAR] = ACTIONS(7225), }, - [STATE(2763)] = { - [sym_identifier] = ACTIONS(4022), - [aux_sym_preproc_def_token1] = ACTIONS(4022), - [aux_sym_preproc_if_token1] = ACTIONS(4022), - [aux_sym_preproc_if_token2] = ACTIONS(4022), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4022), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4022), - [aux_sym_preproc_else_token1] = ACTIONS(4022), - [aux_sym_preproc_elif_token1] = ACTIONS(4022), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4022), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4022), - [sym_preproc_directive] = ACTIONS(4022), - [anon_sym_LPAREN2] = ACTIONS(4024), - [anon_sym_TILDE] = ACTIONS(4024), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_AMP_AMP] = ACTIONS(4024), - [anon_sym_AMP] = ACTIONS(4022), - [anon_sym_SEMI] = ACTIONS(4024), - [anon_sym___extension__] = ACTIONS(4022), - [anon_sym_typedef] = ACTIONS(4022), - [anon_sym_virtual] = ACTIONS(4022), - [anon_sym_extern] = ACTIONS(4022), - [anon_sym___attribute__] = ACTIONS(4022), - [anon_sym___attribute] = ACTIONS(4022), - [anon_sym_using] = ACTIONS(4022), - [anon_sym_COLON_COLON] = ACTIONS(4024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4024), - [anon_sym___declspec] = ACTIONS(4022), - [anon_sym___based] = ACTIONS(4022), - [anon_sym_signed] = ACTIONS(4022), - [anon_sym_unsigned] = ACTIONS(4022), - [anon_sym_long] = ACTIONS(4022), - [anon_sym_short] = ACTIONS(4022), - [anon_sym_LBRACK] = ACTIONS(4022), - [anon_sym_static] = ACTIONS(4022), - [anon_sym_register] = ACTIONS(4022), - [anon_sym_inline] = ACTIONS(4022), - [anon_sym___inline] = ACTIONS(4022), - [anon_sym___inline__] = ACTIONS(4022), - [anon_sym___forceinline] = ACTIONS(4022), - [anon_sym_thread_local] = ACTIONS(4022), - [anon_sym___thread] = ACTIONS(4022), - [anon_sym_const] = ACTIONS(4022), - [anon_sym_constexpr] = ACTIONS(4022), - [anon_sym_volatile] = ACTIONS(4022), - [anon_sym_restrict] = ACTIONS(4022), - [anon_sym___restrict__] = ACTIONS(4022), - [anon_sym__Atomic] = ACTIONS(4022), - [anon_sym__Noreturn] = ACTIONS(4022), - [anon_sym_noreturn] = ACTIONS(4022), - [anon_sym__Nonnull] = ACTIONS(4022), - [anon_sym_mutable] = ACTIONS(4022), - [anon_sym_constinit] = ACTIONS(4022), - [anon_sym_consteval] = ACTIONS(4022), - [anon_sym_alignas] = ACTIONS(4022), - [anon_sym__Alignas] = ACTIONS(4022), - [sym_primitive_type] = ACTIONS(4022), - [anon_sym_enum] = ACTIONS(4022), - [anon_sym_class] = ACTIONS(4022), - [anon_sym_struct] = ACTIONS(4022), - [anon_sym_union] = ACTIONS(4022), - [anon_sym_typename] = ACTIONS(4022), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4022), - [anon_sym_decltype] = ACTIONS(4022), - [anon_sym_explicit] = ACTIONS(4022), - [anon_sym_private] = ACTIONS(4022), - [anon_sym_template] = ACTIONS(4022), - [anon_sym_operator] = ACTIONS(4022), - [anon_sym_friend] = ACTIONS(4022), - [anon_sym_public] = ACTIONS(4022), - [anon_sym_protected] = ACTIONS(4022), - [anon_sym_static_assert] = ACTIONS(4022), - [anon_sym_LBRACK_COLON] = ACTIONS(4024), + [STATE(2591)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6610), + [anon_sym_COMMA] = ACTIONS(6610), + [anon_sym_LPAREN2] = ACTIONS(6610), + [anon_sym_DASH] = ACTIONS(6608), + [anon_sym_PLUS] = ACTIONS(6608), + [anon_sym_STAR] = ACTIONS(6608), + [anon_sym_SLASH] = ACTIONS(6608), + [anon_sym_PERCENT] = ACTIONS(6608), + [anon_sym_PIPE_PIPE] = ACTIONS(6610), + [anon_sym_AMP_AMP] = ACTIONS(6610), + [anon_sym_PIPE] = ACTIONS(6608), + [anon_sym_CARET] = ACTIONS(6608), + [anon_sym_AMP] = ACTIONS(6608), + [anon_sym_EQ_EQ] = ACTIONS(6610), + [anon_sym_BANG_EQ] = ACTIONS(6610), + [anon_sym_GT] = ACTIONS(6608), + [anon_sym_GT_EQ] = ACTIONS(6608), + [anon_sym_LT_EQ] = ACTIONS(6608), + [anon_sym_LT] = ACTIONS(6608), + [anon_sym_LT_LT] = ACTIONS(6608), + [anon_sym_GT_GT] = ACTIONS(6608), + [anon_sym___extension__] = ACTIONS(6610), + [anon_sym___attribute__] = ACTIONS(6610), + [anon_sym___attribute] = ACTIONS(6608), + [anon_sym_COLON] = ACTIONS(6608), + [anon_sym_COLON_COLON] = ACTIONS(6610), + [anon_sym_LBRACE] = ACTIONS(6610), + [anon_sym_LBRACK] = ACTIONS(6610), + [anon_sym_EQ] = ACTIONS(6608), + [anon_sym_const] = ACTIONS(6608), + [anon_sym_constexpr] = ACTIONS(6610), + [anon_sym_volatile] = ACTIONS(6610), + [anon_sym_restrict] = ACTIONS(6610), + [anon_sym___restrict__] = ACTIONS(6610), + [anon_sym__Atomic] = ACTIONS(6610), + [anon_sym__Noreturn] = ACTIONS(6610), + [anon_sym_noreturn] = ACTIONS(6610), + [anon_sym__Nonnull] = ACTIONS(6610), + [anon_sym_mutable] = ACTIONS(6610), + [anon_sym_constinit] = ACTIONS(6610), + [anon_sym_consteval] = ACTIONS(6610), + [anon_sym_alignas] = ACTIONS(6610), + [anon_sym__Alignas] = ACTIONS(6610), + [anon_sym_QMARK] = ACTIONS(6610), + [anon_sym_STAR_EQ] = ACTIONS(6610), + [anon_sym_SLASH_EQ] = ACTIONS(6610), + [anon_sym_PERCENT_EQ] = ACTIONS(6610), + [anon_sym_PLUS_EQ] = ACTIONS(6610), + [anon_sym_DASH_EQ] = ACTIONS(6610), + [anon_sym_LT_LT_EQ] = ACTIONS(6610), + [anon_sym_GT_GT_EQ] = ACTIONS(6608), + [anon_sym_AMP_EQ] = ACTIONS(6610), + [anon_sym_CARET_EQ] = ACTIONS(6610), + [anon_sym_PIPE_EQ] = ACTIONS(6610), + [anon_sym_and_eq] = ACTIONS(6610), + [anon_sym_or_eq] = ACTIONS(6610), + [anon_sym_xor_eq] = ACTIONS(6610), + [anon_sym_LT_EQ_GT] = ACTIONS(6610), + [anon_sym_or] = ACTIONS(6608), + [anon_sym_and] = ACTIONS(6608), + [anon_sym_bitor] = ACTIONS(6610), + [anon_sym_xor] = ACTIONS(6608), + [anon_sym_bitand] = ACTIONS(6610), + [anon_sym_not_eq] = ACTIONS(6610), + [anon_sym_DASH_DASH] = ACTIONS(6610), + [anon_sym_PLUS_PLUS] = ACTIONS(6610), + [anon_sym_DOT] = ACTIONS(6608), + [anon_sym_DOT_STAR] = ACTIONS(6610), + [anon_sym_DASH_GT] = ACTIONS(6610), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6610), + [anon_sym_decltype] = ACTIONS(6610), + [anon_sym_final] = ACTIONS(6610), + [anon_sym_override] = ACTIONS(6610), + [anon_sym_GT2] = ACTIONS(6610), + [anon_sym_requires] = ACTIONS(6610), }, - [STATE(2764)] = { - [sym_identifier] = ACTIONS(4026), - [aux_sym_preproc_def_token1] = ACTIONS(4026), - [aux_sym_preproc_if_token1] = ACTIONS(4026), - [aux_sym_preproc_if_token2] = ACTIONS(4026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4026), - [aux_sym_preproc_else_token1] = ACTIONS(4026), - [aux_sym_preproc_elif_token1] = ACTIONS(4026), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4026), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4026), - [sym_preproc_directive] = ACTIONS(4026), - [anon_sym_LPAREN2] = ACTIONS(4028), - [anon_sym_TILDE] = ACTIONS(4028), - [anon_sym_STAR] = ACTIONS(4028), - [anon_sym_AMP_AMP] = ACTIONS(4028), - [anon_sym_AMP] = ACTIONS(4026), - [anon_sym_SEMI] = ACTIONS(4028), - [anon_sym___extension__] = ACTIONS(4026), - [anon_sym_typedef] = ACTIONS(4026), - [anon_sym_virtual] = ACTIONS(4026), - [anon_sym_extern] = ACTIONS(4026), - [anon_sym___attribute__] = ACTIONS(4026), - [anon_sym___attribute] = ACTIONS(4026), - [anon_sym_using] = ACTIONS(4026), - [anon_sym_COLON_COLON] = ACTIONS(4028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4028), - [anon_sym___declspec] = ACTIONS(4026), - [anon_sym___based] = ACTIONS(4026), - [anon_sym_signed] = ACTIONS(4026), - [anon_sym_unsigned] = ACTIONS(4026), - [anon_sym_long] = ACTIONS(4026), - [anon_sym_short] = ACTIONS(4026), - [anon_sym_LBRACK] = ACTIONS(4026), - [anon_sym_static] = ACTIONS(4026), - [anon_sym_register] = ACTIONS(4026), - [anon_sym_inline] = ACTIONS(4026), - [anon_sym___inline] = ACTIONS(4026), - [anon_sym___inline__] = ACTIONS(4026), - [anon_sym___forceinline] = ACTIONS(4026), - [anon_sym_thread_local] = ACTIONS(4026), - [anon_sym___thread] = ACTIONS(4026), - [anon_sym_const] = ACTIONS(4026), - [anon_sym_constexpr] = ACTIONS(4026), - [anon_sym_volatile] = ACTIONS(4026), - [anon_sym_restrict] = ACTIONS(4026), - [anon_sym___restrict__] = ACTIONS(4026), - [anon_sym__Atomic] = ACTIONS(4026), - [anon_sym__Noreturn] = ACTIONS(4026), - [anon_sym_noreturn] = ACTIONS(4026), - [anon_sym__Nonnull] = ACTIONS(4026), - [anon_sym_mutable] = ACTIONS(4026), - [anon_sym_constinit] = ACTIONS(4026), - [anon_sym_consteval] = ACTIONS(4026), - [anon_sym_alignas] = ACTIONS(4026), - [anon_sym__Alignas] = ACTIONS(4026), - [sym_primitive_type] = ACTIONS(4026), - [anon_sym_enum] = ACTIONS(4026), - [anon_sym_class] = ACTIONS(4026), - [anon_sym_struct] = ACTIONS(4026), - [anon_sym_union] = ACTIONS(4026), - [anon_sym_typename] = ACTIONS(4026), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4026), - [anon_sym_decltype] = ACTIONS(4026), - [anon_sym_explicit] = ACTIONS(4026), - [anon_sym_private] = ACTIONS(4026), - [anon_sym_template] = ACTIONS(4026), - [anon_sym_operator] = ACTIONS(4026), - [anon_sym_friend] = ACTIONS(4026), - [anon_sym_public] = ACTIONS(4026), - [anon_sym_protected] = ACTIONS(4026), - [anon_sym_static_assert] = ACTIONS(4026), - [anon_sym_LBRACK_COLON] = ACTIONS(4028), + [STATE(2592)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6618), + [anon_sym_COMMA] = ACTIONS(6618), + [anon_sym_LPAREN2] = ACTIONS(6618), + [anon_sym_DASH] = ACTIONS(6616), + [anon_sym_PLUS] = ACTIONS(6616), + [anon_sym_STAR] = ACTIONS(6616), + [anon_sym_SLASH] = ACTIONS(6616), + [anon_sym_PERCENT] = ACTIONS(6616), + [anon_sym_PIPE_PIPE] = ACTIONS(6618), + [anon_sym_AMP_AMP] = ACTIONS(6618), + [anon_sym_PIPE] = ACTIONS(6616), + [anon_sym_CARET] = ACTIONS(6616), + [anon_sym_AMP] = ACTIONS(6616), + [anon_sym_EQ_EQ] = ACTIONS(6618), + [anon_sym_BANG_EQ] = ACTIONS(6618), + [anon_sym_GT] = ACTIONS(6616), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6616), + [anon_sym_LT] = ACTIONS(6616), + [anon_sym_LT_LT] = ACTIONS(6616), + [anon_sym_GT_GT] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(6618), + [anon_sym___attribute__] = ACTIONS(6618), + [anon_sym___attribute] = ACTIONS(6616), + [anon_sym_COLON] = ACTIONS(6616), + [anon_sym_COLON_COLON] = ACTIONS(6618), + [anon_sym_LBRACE] = ACTIONS(6618), + [anon_sym_LBRACK] = ACTIONS(6618), + [anon_sym_EQ] = ACTIONS(6616), + [anon_sym_const] = ACTIONS(6616), + [anon_sym_constexpr] = ACTIONS(6618), + [anon_sym_volatile] = ACTIONS(6618), + [anon_sym_restrict] = ACTIONS(6618), + [anon_sym___restrict__] = ACTIONS(6618), + [anon_sym__Atomic] = ACTIONS(6618), + [anon_sym__Noreturn] = ACTIONS(6618), + [anon_sym_noreturn] = ACTIONS(6618), + [anon_sym__Nonnull] = ACTIONS(6618), + [anon_sym_mutable] = ACTIONS(6618), + [anon_sym_constinit] = ACTIONS(6618), + [anon_sym_consteval] = ACTIONS(6618), + [anon_sym_alignas] = ACTIONS(6618), + [anon_sym__Alignas] = ACTIONS(6618), + [anon_sym_QMARK] = ACTIONS(6618), + [anon_sym_STAR_EQ] = ACTIONS(6618), + [anon_sym_SLASH_EQ] = ACTIONS(6618), + [anon_sym_PERCENT_EQ] = ACTIONS(6618), + [anon_sym_PLUS_EQ] = ACTIONS(6618), + [anon_sym_DASH_EQ] = ACTIONS(6618), + [anon_sym_LT_LT_EQ] = ACTIONS(6618), + [anon_sym_GT_GT_EQ] = ACTIONS(6616), + [anon_sym_AMP_EQ] = ACTIONS(6618), + [anon_sym_CARET_EQ] = ACTIONS(6618), + [anon_sym_PIPE_EQ] = ACTIONS(6618), + [anon_sym_and_eq] = ACTIONS(6618), + [anon_sym_or_eq] = ACTIONS(6618), + [anon_sym_xor_eq] = ACTIONS(6618), + [anon_sym_LT_EQ_GT] = ACTIONS(6618), + [anon_sym_or] = ACTIONS(6616), + [anon_sym_and] = ACTIONS(6616), + [anon_sym_bitor] = ACTIONS(6618), + [anon_sym_xor] = ACTIONS(6616), + [anon_sym_bitand] = ACTIONS(6618), + [anon_sym_not_eq] = ACTIONS(6618), + [anon_sym_DASH_DASH] = ACTIONS(6618), + [anon_sym_PLUS_PLUS] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(6616), + [anon_sym_DOT_STAR] = ACTIONS(6618), + [anon_sym_DASH_GT] = ACTIONS(6618), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6618), + [anon_sym_decltype] = ACTIONS(6618), + [anon_sym_final] = ACTIONS(6618), + [anon_sym_override] = ACTIONS(6618), + [anon_sym_GT2] = ACTIONS(6618), + [anon_sym_requires] = ACTIONS(6618), }, - [STATE(2765)] = { - [sym_identifier] = ACTIONS(3876), - [aux_sym_preproc_def_token1] = ACTIONS(3876), - [aux_sym_preproc_if_token1] = ACTIONS(3876), - [aux_sym_preproc_if_token2] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), - [aux_sym_preproc_else_token1] = ACTIONS(3876), - [aux_sym_preproc_elif_token1] = ACTIONS(3876), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3876), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3876), - [sym_preproc_directive] = ACTIONS(3876), - [anon_sym_LPAREN2] = ACTIONS(3878), - [anon_sym_TILDE] = ACTIONS(3878), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_AMP_AMP] = ACTIONS(3878), - [anon_sym_AMP] = ACTIONS(3876), - [anon_sym_SEMI] = ACTIONS(3878), - [anon_sym___extension__] = ACTIONS(3876), - [anon_sym_typedef] = ACTIONS(3876), - [anon_sym_virtual] = ACTIONS(3876), - [anon_sym_extern] = ACTIONS(3876), - [anon_sym___attribute__] = ACTIONS(3876), - [anon_sym___attribute] = ACTIONS(3876), - [anon_sym_using] = ACTIONS(3876), - [anon_sym_COLON_COLON] = ACTIONS(3878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), - [anon_sym___declspec] = ACTIONS(3876), - [anon_sym___based] = ACTIONS(3876), - [anon_sym_signed] = ACTIONS(3876), - [anon_sym_unsigned] = ACTIONS(3876), - [anon_sym_long] = ACTIONS(3876), - [anon_sym_short] = ACTIONS(3876), - [anon_sym_LBRACK] = ACTIONS(3876), - [anon_sym_static] = ACTIONS(3876), - [anon_sym_register] = ACTIONS(3876), - [anon_sym_inline] = ACTIONS(3876), - [anon_sym___inline] = ACTIONS(3876), - [anon_sym___inline__] = ACTIONS(3876), - [anon_sym___forceinline] = ACTIONS(3876), - [anon_sym_thread_local] = ACTIONS(3876), - [anon_sym___thread] = ACTIONS(3876), - [anon_sym_const] = ACTIONS(3876), - [anon_sym_constexpr] = ACTIONS(3876), - [anon_sym_volatile] = ACTIONS(3876), - [anon_sym_restrict] = ACTIONS(3876), - [anon_sym___restrict__] = ACTIONS(3876), - [anon_sym__Atomic] = ACTIONS(3876), - [anon_sym__Noreturn] = ACTIONS(3876), - [anon_sym_noreturn] = ACTIONS(3876), - [anon_sym__Nonnull] = ACTIONS(3876), - [anon_sym_mutable] = ACTIONS(3876), - [anon_sym_constinit] = ACTIONS(3876), - [anon_sym_consteval] = ACTIONS(3876), - [anon_sym_alignas] = ACTIONS(3876), - [anon_sym__Alignas] = ACTIONS(3876), - [sym_primitive_type] = ACTIONS(3876), - [anon_sym_enum] = ACTIONS(3876), - [anon_sym_class] = ACTIONS(3876), - [anon_sym_struct] = ACTIONS(3876), - [anon_sym_union] = ACTIONS(3876), - [anon_sym_typename] = ACTIONS(3876), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3876), - [anon_sym_decltype] = ACTIONS(3876), - [anon_sym_explicit] = ACTIONS(3876), - [anon_sym_private] = ACTIONS(3876), - [anon_sym_template] = ACTIONS(3876), - [anon_sym_operator] = ACTIONS(3876), - [anon_sym_friend] = ACTIONS(3876), - [anon_sym_public] = ACTIONS(3876), - [anon_sym_protected] = ACTIONS(3876), - [anon_sym_static_assert] = ACTIONS(3876), - [anon_sym_LBRACK_COLON] = ACTIONS(3878), + [STATE(2593)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6622), + [anon_sym_COMMA] = ACTIONS(6622), + [anon_sym_LPAREN2] = ACTIONS(6622), + [anon_sym_DASH] = ACTIONS(6620), + [anon_sym_PLUS] = ACTIONS(6620), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_PERCENT] = ACTIONS(6620), + [anon_sym_PIPE_PIPE] = ACTIONS(6622), + [anon_sym_AMP_AMP] = ACTIONS(6622), + [anon_sym_PIPE] = ACTIONS(6620), + [anon_sym_CARET] = ACTIONS(6620), + [anon_sym_AMP] = ACTIONS(6620), + [anon_sym_EQ_EQ] = ACTIONS(6622), + [anon_sym_BANG_EQ] = ACTIONS(6622), + [anon_sym_GT] = ACTIONS(6620), + [anon_sym_GT_EQ] = ACTIONS(6620), + [anon_sym_LT_EQ] = ACTIONS(6620), + [anon_sym_LT] = ACTIONS(6620), + [anon_sym_LT_LT] = ACTIONS(6620), + [anon_sym_GT_GT] = ACTIONS(6620), + [anon_sym___extension__] = ACTIONS(6622), + [anon_sym___attribute__] = ACTIONS(6622), + [anon_sym___attribute] = ACTIONS(6620), + [anon_sym_COLON] = ACTIONS(6620), + [anon_sym_COLON_COLON] = ACTIONS(6622), + [anon_sym_LBRACE] = ACTIONS(6622), + [anon_sym_LBRACK] = ACTIONS(6622), + [anon_sym_EQ] = ACTIONS(6620), + [anon_sym_const] = ACTIONS(6620), + [anon_sym_constexpr] = ACTIONS(6622), + [anon_sym_volatile] = ACTIONS(6622), + [anon_sym_restrict] = ACTIONS(6622), + [anon_sym___restrict__] = ACTIONS(6622), + [anon_sym__Atomic] = ACTIONS(6622), + [anon_sym__Noreturn] = ACTIONS(6622), + [anon_sym_noreturn] = ACTIONS(6622), + [anon_sym__Nonnull] = ACTIONS(6622), + [anon_sym_mutable] = ACTIONS(6622), + [anon_sym_constinit] = ACTIONS(6622), + [anon_sym_consteval] = ACTIONS(6622), + [anon_sym_alignas] = ACTIONS(6622), + [anon_sym__Alignas] = ACTIONS(6622), + [anon_sym_QMARK] = ACTIONS(6622), + [anon_sym_STAR_EQ] = ACTIONS(6622), + [anon_sym_SLASH_EQ] = ACTIONS(6622), + [anon_sym_PERCENT_EQ] = ACTIONS(6622), + [anon_sym_PLUS_EQ] = ACTIONS(6622), + [anon_sym_DASH_EQ] = ACTIONS(6622), + [anon_sym_LT_LT_EQ] = ACTIONS(6622), + [anon_sym_GT_GT_EQ] = ACTIONS(6620), + [anon_sym_AMP_EQ] = ACTIONS(6622), + [anon_sym_CARET_EQ] = ACTIONS(6622), + [anon_sym_PIPE_EQ] = ACTIONS(6622), + [anon_sym_and_eq] = ACTIONS(6622), + [anon_sym_or_eq] = ACTIONS(6622), + [anon_sym_xor_eq] = ACTIONS(6622), + [anon_sym_LT_EQ_GT] = ACTIONS(6622), + [anon_sym_or] = ACTIONS(6620), + [anon_sym_and] = ACTIONS(6620), + [anon_sym_bitor] = ACTIONS(6622), + [anon_sym_xor] = ACTIONS(6620), + [anon_sym_bitand] = ACTIONS(6622), + [anon_sym_not_eq] = ACTIONS(6622), + [anon_sym_DASH_DASH] = ACTIONS(6622), + [anon_sym_PLUS_PLUS] = ACTIONS(6622), + [anon_sym_DOT] = ACTIONS(6620), + [anon_sym_DOT_STAR] = ACTIONS(6622), + [anon_sym_DASH_GT] = ACTIONS(6622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6622), + [anon_sym_decltype] = ACTIONS(6622), + [anon_sym_final] = ACTIONS(6622), + [anon_sym_override] = ACTIONS(6622), + [anon_sym_GT2] = ACTIONS(6622), + [anon_sym_requires] = ACTIONS(6622), }, - [STATE(2766)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), - [anon_sym_COMMA] = ACTIONS(7261), - [anon_sym_RPAREN] = ACTIONS(7261), - [anon_sym_LPAREN2] = ACTIONS(7261), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_STAR] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7259), - [anon_sym_PERCENT] = ACTIONS(7259), - [anon_sym_PIPE_PIPE] = ACTIONS(7261), - [anon_sym_AMP_AMP] = ACTIONS(7261), - [anon_sym_PIPE] = ACTIONS(7259), - [anon_sym_CARET] = ACTIONS(7259), - [anon_sym_AMP] = ACTIONS(7259), - [anon_sym_EQ_EQ] = ACTIONS(7261), - [anon_sym_BANG_EQ] = ACTIONS(7261), - [anon_sym_GT] = ACTIONS(7259), - [anon_sym_GT_EQ] = ACTIONS(7261), - [anon_sym_LT_EQ] = ACTIONS(7259), - [anon_sym_LT] = ACTIONS(7259), - [anon_sym_LT_LT] = ACTIONS(7259), - [anon_sym_GT_GT] = ACTIONS(7259), - [anon_sym___extension__] = ACTIONS(7261), - [anon_sym___attribute__] = ACTIONS(7261), - [anon_sym___attribute] = ACTIONS(7259), - [anon_sym_LBRACE] = ACTIONS(7261), - [anon_sym_LBRACK] = ACTIONS(7261), - [anon_sym_EQ] = ACTIONS(7259), - [anon_sym_const] = ACTIONS(7259), - [anon_sym_constexpr] = ACTIONS(7261), - [anon_sym_volatile] = ACTIONS(7261), - [anon_sym_restrict] = ACTIONS(7261), - [anon_sym___restrict__] = ACTIONS(7261), - [anon_sym__Atomic] = ACTIONS(7261), - [anon_sym__Noreturn] = ACTIONS(7261), - [anon_sym_noreturn] = ACTIONS(7261), - [anon_sym__Nonnull] = ACTIONS(7261), - [anon_sym_mutable] = ACTIONS(7261), - [anon_sym_constinit] = ACTIONS(7261), - [anon_sym_consteval] = ACTIONS(7261), - [anon_sym_alignas] = ACTIONS(7261), - [anon_sym__Alignas] = ACTIONS(7261), - [anon_sym_QMARK] = ACTIONS(7261), - [anon_sym_STAR_EQ] = ACTIONS(7261), - [anon_sym_SLASH_EQ] = ACTIONS(7261), - [anon_sym_PERCENT_EQ] = ACTIONS(7261), - [anon_sym_PLUS_EQ] = ACTIONS(7261), - [anon_sym_DASH_EQ] = ACTIONS(7261), - [anon_sym_LT_LT_EQ] = ACTIONS(7261), - [anon_sym_GT_GT_EQ] = ACTIONS(7261), - [anon_sym_AMP_EQ] = ACTIONS(7261), - [anon_sym_CARET_EQ] = ACTIONS(7261), - [anon_sym_PIPE_EQ] = ACTIONS(7261), - [anon_sym_and_eq] = ACTIONS(7261), - [anon_sym_or_eq] = ACTIONS(7261), - [anon_sym_xor_eq] = ACTIONS(7261), - [anon_sym_LT_EQ_GT] = ACTIONS(7261), - [anon_sym_or] = ACTIONS(7259), - [anon_sym_and] = ACTIONS(7259), - [anon_sym_bitor] = ACTIONS(7261), - [anon_sym_xor] = ACTIONS(7259), - [anon_sym_bitand] = ACTIONS(7261), - [anon_sym_not_eq] = ACTIONS(7261), - [anon_sym_DASH_DASH] = ACTIONS(7261), - [anon_sym_PLUS_PLUS] = ACTIONS(7261), - [anon_sym_DOT] = ACTIONS(7259), - [anon_sym_DOT_STAR] = ACTIONS(7261), - [anon_sym_DASH_GT] = ACTIONS(7259), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7261), - [anon_sym_override] = ACTIONS(7261), - [anon_sym_requires] = ACTIONS(7261), - [anon_sym_DASH_GT_STAR] = ACTIONS(7261), + [STATE(2594)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6601), + [anon_sym_COMMA] = ACTIONS(6601), + [anon_sym_LPAREN2] = ACTIONS(6601), + [anon_sym_DASH] = ACTIONS(6594), + [anon_sym_PLUS] = ACTIONS(6594), + [anon_sym_STAR] = ACTIONS(6594), + [anon_sym_SLASH] = ACTIONS(6594), + [anon_sym_PERCENT] = ACTIONS(6594), + [anon_sym_PIPE_PIPE] = ACTIONS(6601), + [anon_sym_AMP_AMP] = ACTIONS(6601), + [anon_sym_PIPE] = ACTIONS(6594), + [anon_sym_CARET] = ACTIONS(6594), + [anon_sym_AMP] = ACTIONS(6594), + [anon_sym_EQ_EQ] = ACTIONS(6601), + [anon_sym_BANG_EQ] = ACTIONS(6601), + [anon_sym_GT] = ACTIONS(6594), + [anon_sym_GT_EQ] = ACTIONS(6594), + [anon_sym_LT_EQ] = ACTIONS(6594), + [anon_sym_LT] = ACTIONS(6594), + [anon_sym_LT_LT] = ACTIONS(6594), + [anon_sym_GT_GT] = ACTIONS(6594), + [anon_sym___extension__] = ACTIONS(6601), + [anon_sym___attribute__] = ACTIONS(6601), + [anon_sym___attribute] = ACTIONS(6594), + [anon_sym_COLON] = ACTIONS(6594), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_LBRACK] = ACTIONS(6601), + [anon_sym_EQ] = ACTIONS(6594), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6601), + [anon_sym_volatile] = ACTIONS(6601), + [anon_sym_restrict] = ACTIONS(6601), + [anon_sym___restrict__] = ACTIONS(6601), + [anon_sym__Atomic] = ACTIONS(6601), + [anon_sym__Noreturn] = ACTIONS(6601), + [anon_sym_noreturn] = ACTIONS(6601), + [anon_sym__Nonnull] = ACTIONS(6601), + [anon_sym_mutable] = ACTIONS(6601), + [anon_sym_constinit] = ACTIONS(6601), + [anon_sym_consteval] = ACTIONS(6601), + [anon_sym_alignas] = ACTIONS(6601), + [anon_sym__Alignas] = ACTIONS(6601), + [anon_sym_QMARK] = ACTIONS(6601), + [anon_sym_STAR_EQ] = ACTIONS(6601), + [anon_sym_SLASH_EQ] = ACTIONS(6601), + [anon_sym_PERCENT_EQ] = ACTIONS(6601), + [anon_sym_PLUS_EQ] = ACTIONS(6601), + [anon_sym_DASH_EQ] = ACTIONS(6601), + [anon_sym_LT_LT_EQ] = ACTIONS(6601), + [anon_sym_GT_GT_EQ] = ACTIONS(6594), + [anon_sym_AMP_EQ] = ACTIONS(6601), + [anon_sym_CARET_EQ] = ACTIONS(6601), + [anon_sym_PIPE_EQ] = ACTIONS(6601), + [anon_sym_and_eq] = ACTIONS(6601), + [anon_sym_or_eq] = ACTIONS(6601), + [anon_sym_xor_eq] = ACTIONS(6601), + [anon_sym_LT_EQ_GT] = ACTIONS(6601), + [anon_sym_or] = ACTIONS(6594), + [anon_sym_and] = ACTIONS(6594), + [anon_sym_bitor] = ACTIONS(6601), + [anon_sym_xor] = ACTIONS(6594), + [anon_sym_bitand] = ACTIONS(6601), + [anon_sym_not_eq] = ACTIONS(6601), + [anon_sym_DASH_DASH] = ACTIONS(6601), + [anon_sym_PLUS_PLUS] = ACTIONS(6601), + [anon_sym_DOT] = ACTIONS(6594), + [anon_sym_DOT_STAR] = ACTIONS(6601), + [anon_sym_DASH_GT] = ACTIONS(6601), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6601), + [anon_sym_decltype] = ACTIONS(6601), + [anon_sym_final] = ACTIONS(6601), + [anon_sym_override] = ACTIONS(6601), + [anon_sym_GT2] = ACTIONS(6601), + [anon_sym_requires] = ACTIONS(6601), }, - [STATE(2767)] = { - [sym_identifier] = ACTIONS(8347), - [aux_sym_preproc_def_token1] = ACTIONS(8347), - [aux_sym_preproc_if_token1] = ACTIONS(8347), - [aux_sym_preproc_if_token2] = ACTIONS(8347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8347), - [aux_sym_preproc_else_token1] = ACTIONS(8347), - [aux_sym_preproc_elif_token1] = ACTIONS(8347), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8347), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8347), - [sym_preproc_directive] = ACTIONS(8347), - [anon_sym_LPAREN2] = ACTIONS(8349), - [anon_sym_TILDE] = ACTIONS(8349), - [anon_sym_STAR] = ACTIONS(8349), - [anon_sym_AMP_AMP] = ACTIONS(8349), - [anon_sym_AMP] = ACTIONS(8347), - [anon_sym_SEMI] = ACTIONS(8349), - [anon_sym___extension__] = ACTIONS(8347), - [anon_sym_typedef] = ACTIONS(8347), - [anon_sym_virtual] = ACTIONS(8347), - [anon_sym_extern] = ACTIONS(8347), - [anon_sym___attribute__] = ACTIONS(8347), - [anon_sym___attribute] = ACTIONS(8347), - [anon_sym_using] = ACTIONS(8347), - [anon_sym_COLON_COLON] = ACTIONS(8349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8349), - [anon_sym___declspec] = ACTIONS(8347), - [anon_sym___based] = ACTIONS(8347), - [anon_sym_signed] = ACTIONS(8347), - [anon_sym_unsigned] = ACTIONS(8347), - [anon_sym_long] = ACTIONS(8347), - [anon_sym_short] = ACTIONS(8347), - [anon_sym_LBRACK] = ACTIONS(8347), - [anon_sym_static] = ACTIONS(8347), - [anon_sym_register] = ACTIONS(8347), - [anon_sym_inline] = ACTIONS(8347), - [anon_sym___inline] = ACTIONS(8347), - [anon_sym___inline__] = ACTIONS(8347), - [anon_sym___forceinline] = ACTIONS(8347), - [anon_sym_thread_local] = ACTIONS(8347), - [anon_sym___thread] = ACTIONS(8347), - [anon_sym_const] = ACTIONS(8347), - [anon_sym_constexpr] = ACTIONS(8347), - [anon_sym_volatile] = ACTIONS(8347), - [anon_sym_restrict] = ACTIONS(8347), - [anon_sym___restrict__] = ACTIONS(8347), - [anon_sym__Atomic] = ACTIONS(8347), - [anon_sym__Noreturn] = ACTIONS(8347), - [anon_sym_noreturn] = ACTIONS(8347), - [anon_sym__Nonnull] = ACTIONS(8347), - [anon_sym_mutable] = ACTIONS(8347), - [anon_sym_constinit] = ACTIONS(8347), - [anon_sym_consteval] = ACTIONS(8347), - [anon_sym_alignas] = ACTIONS(8347), - [anon_sym__Alignas] = ACTIONS(8347), - [sym_primitive_type] = ACTIONS(8347), - [anon_sym_enum] = ACTIONS(8347), - [anon_sym_class] = ACTIONS(8347), - [anon_sym_struct] = ACTIONS(8347), - [anon_sym_union] = ACTIONS(8347), - [anon_sym_typename] = ACTIONS(8347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8347), - [anon_sym_decltype] = ACTIONS(8347), - [anon_sym_explicit] = ACTIONS(8347), - [anon_sym_private] = ACTIONS(8347), - [anon_sym_template] = ACTIONS(8347), - [anon_sym_operator] = ACTIONS(8347), - [anon_sym_friend] = ACTIONS(8347), - [anon_sym_public] = ACTIONS(8347), - [anon_sym_protected] = ACTIONS(8347), - [anon_sym_static_assert] = ACTIONS(8347), - [anon_sym_LBRACK_COLON] = ACTIONS(8349), + [STATE(2595)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2784), + [sym_ms_pointer_modifier] = STATE(2595), + [aux_sym_pointer_declarator_repeat1] = STATE(2595), + [sym_identifier] = ACTIONS(6942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6944), + [anon_sym_COMMA] = ACTIONS(6944), + [anon_sym_RPAREN] = ACTIONS(6944), + [aux_sym_preproc_if_token2] = ACTIONS(6944), + [aux_sym_preproc_else_token1] = ACTIONS(6944), + [aux_sym_preproc_elif_token1] = ACTIONS(6942), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6944), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6944), + [anon_sym_LPAREN2] = ACTIONS(6944), + [anon_sym_DASH] = ACTIONS(6942), + [anon_sym_PLUS] = ACTIONS(6942), + [anon_sym_STAR] = ACTIONS(6944), + [anon_sym_SLASH] = ACTIONS(6942), + [anon_sym_PERCENT] = ACTIONS(6944), + [anon_sym_PIPE_PIPE] = ACTIONS(6944), + [anon_sym_AMP_AMP] = ACTIONS(6944), + [anon_sym_PIPE] = ACTIONS(6942), + [anon_sym_CARET] = ACTIONS(6944), + [anon_sym_AMP] = ACTIONS(6942), + [anon_sym_EQ_EQ] = ACTIONS(6944), + [anon_sym_BANG_EQ] = ACTIONS(6944), + [anon_sym_GT] = ACTIONS(6942), + [anon_sym_GT_EQ] = ACTIONS(6944), + [anon_sym_LT_EQ] = ACTIONS(6942), + [anon_sym_LT] = ACTIONS(6942), + [anon_sym_LT_LT] = ACTIONS(6944), + [anon_sym_GT_GT] = ACTIONS(6944), + [anon_sym_SEMI] = ACTIONS(6944), + [anon_sym___extension__] = ACTIONS(6942), + [anon_sym___attribute__] = ACTIONS(6942), + [anon_sym___attribute] = ACTIONS(6942), + [anon_sym_COLON] = ACTIONS(6942), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6944), + [sym_ms_restrict_modifier] = ACTIONS(8493), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8493), + [sym_ms_signed_ptr_modifier] = ACTIONS(8493), + [anon_sym__unaligned] = ACTIONS(8496), + [anon_sym___unaligned] = ACTIONS(8496), + [anon_sym_RBRACE] = ACTIONS(6944), + [anon_sym_LBRACK] = ACTIONS(6944), + [anon_sym_const] = ACTIONS(6942), + [anon_sym_constexpr] = ACTIONS(6942), + [anon_sym_volatile] = ACTIONS(6942), + [anon_sym_restrict] = ACTIONS(6942), + [anon_sym___restrict__] = ACTIONS(6942), + [anon_sym__Atomic] = ACTIONS(6942), + [anon_sym__Noreturn] = ACTIONS(6942), + [anon_sym_noreturn] = ACTIONS(6942), + [anon_sym__Nonnull] = ACTIONS(6942), + [anon_sym_mutable] = ACTIONS(6942), + [anon_sym_constinit] = ACTIONS(6942), + [anon_sym_consteval] = ACTIONS(6942), + [anon_sym_alignas] = ACTIONS(6942), + [anon_sym__Alignas] = ACTIONS(6942), + [anon_sym_QMARK] = ACTIONS(6944), + [anon_sym_LT_EQ_GT] = ACTIONS(6944), + [anon_sym_or] = ACTIONS(6942), + [anon_sym_and] = ACTIONS(6942), + [anon_sym_bitor] = ACTIONS(6942), + [anon_sym_xor] = ACTIONS(6942), + [anon_sym_bitand] = ACTIONS(6942), + [anon_sym_not_eq] = ACTIONS(6942), + [anon_sym_DASH_DASH] = ACTIONS(6944), + [anon_sym_PLUS_PLUS] = ACTIONS(6944), + [anon_sym_DOT] = ACTIONS(6942), + [anon_sym_DOT_STAR] = ACTIONS(6944), + [anon_sym_DASH_GT] = ACTIONS(6944), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6942), + [anon_sym_override] = ACTIONS(6942), + [anon_sym_requires] = ACTIONS(6942), + [anon_sym_COLON_RBRACK] = ACTIONS(6944), }, - [STATE(2768)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), - [anon_sym_COMMA] = ACTIONS(7255), - [anon_sym_RPAREN] = ACTIONS(7255), - [anon_sym_LPAREN2] = ACTIONS(7255), - [anon_sym_DASH] = ACTIONS(7253), - [anon_sym_PLUS] = ACTIONS(7253), - [anon_sym_STAR] = ACTIONS(7253), - [anon_sym_SLASH] = ACTIONS(7253), - [anon_sym_PERCENT] = ACTIONS(7253), - [anon_sym_PIPE_PIPE] = ACTIONS(7255), - [anon_sym_AMP_AMP] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7253), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_EQ_EQ] = ACTIONS(7255), - [anon_sym_BANG_EQ] = ACTIONS(7255), - [anon_sym_GT] = ACTIONS(7253), - [anon_sym_GT_EQ] = ACTIONS(7255), - [anon_sym_LT_EQ] = ACTIONS(7253), - [anon_sym_LT] = ACTIONS(7253), - [anon_sym_LT_LT] = ACTIONS(7253), - [anon_sym_GT_GT] = ACTIONS(7253), - [anon_sym___extension__] = ACTIONS(7255), - [anon_sym___attribute__] = ACTIONS(7255), - [anon_sym___attribute] = ACTIONS(7253), - [anon_sym_LBRACE] = ACTIONS(7255), - [anon_sym_LBRACK] = ACTIONS(7255), - [anon_sym_EQ] = ACTIONS(7253), - [anon_sym_const] = ACTIONS(7253), - [anon_sym_constexpr] = ACTIONS(7255), - [anon_sym_volatile] = ACTIONS(7255), - [anon_sym_restrict] = ACTIONS(7255), - [anon_sym___restrict__] = ACTIONS(7255), - [anon_sym__Atomic] = ACTIONS(7255), - [anon_sym__Noreturn] = ACTIONS(7255), - [anon_sym_noreturn] = ACTIONS(7255), - [anon_sym__Nonnull] = ACTIONS(7255), - [anon_sym_mutable] = ACTIONS(7255), - [anon_sym_constinit] = ACTIONS(7255), - [anon_sym_consteval] = ACTIONS(7255), - [anon_sym_alignas] = ACTIONS(7255), - [anon_sym__Alignas] = ACTIONS(7255), - [anon_sym_QMARK] = ACTIONS(7255), - [anon_sym_STAR_EQ] = ACTIONS(7255), - [anon_sym_SLASH_EQ] = ACTIONS(7255), - [anon_sym_PERCENT_EQ] = ACTIONS(7255), - [anon_sym_PLUS_EQ] = ACTIONS(7255), - [anon_sym_DASH_EQ] = ACTIONS(7255), - [anon_sym_LT_LT_EQ] = ACTIONS(7255), - [anon_sym_GT_GT_EQ] = ACTIONS(7255), - [anon_sym_AMP_EQ] = ACTIONS(7255), - [anon_sym_CARET_EQ] = ACTIONS(7255), - [anon_sym_PIPE_EQ] = ACTIONS(7255), - [anon_sym_and_eq] = ACTIONS(7255), - [anon_sym_or_eq] = ACTIONS(7255), - [anon_sym_xor_eq] = ACTIONS(7255), - [anon_sym_LT_EQ_GT] = ACTIONS(7255), - [anon_sym_or] = ACTIONS(7253), - [anon_sym_and] = ACTIONS(7253), - [anon_sym_bitor] = ACTIONS(7255), - [anon_sym_xor] = ACTIONS(7253), - [anon_sym_bitand] = ACTIONS(7255), - [anon_sym_not_eq] = ACTIONS(7255), - [anon_sym_DASH_DASH] = ACTIONS(7255), - [anon_sym_PLUS_PLUS] = ACTIONS(7255), - [anon_sym_DOT] = ACTIONS(7253), - [anon_sym_DOT_STAR] = ACTIONS(7255), - [anon_sym_DASH_GT] = ACTIONS(7253), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7255), - [anon_sym_override] = ACTIONS(7255), - [anon_sym_requires] = ACTIONS(7255), - [anon_sym_DASH_GT_STAR] = ACTIONS(7255), + [STATE(2596)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(6999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), + [anon_sym_COMMA] = ACTIONS(7525), + [anon_sym_LPAREN2] = ACTIONS(7525), + [anon_sym_DASH] = ACTIONS(7528), + [anon_sym_PLUS] = ACTIONS(7528), + [anon_sym_STAR] = ACTIONS(7528), + [anon_sym_SLASH] = ACTIONS(7528), + [anon_sym_PERCENT] = ACTIONS(7528), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_AMP_AMP] = ACTIONS(7525), + [anon_sym_PIPE] = ACTIONS(7528), + [anon_sym_CARET] = ACTIONS(7528), + [anon_sym_AMP] = ACTIONS(7528), + [anon_sym_EQ_EQ] = ACTIONS(7525), + [anon_sym_BANG_EQ] = ACTIONS(7525), + [anon_sym_GT] = ACTIONS(7528), + [anon_sym_GT_EQ] = ACTIONS(7528), + [anon_sym_LT_EQ] = ACTIONS(7528), + [anon_sym_LT] = ACTIONS(7528), + [anon_sym_LT_LT] = ACTIONS(7528), + [anon_sym_GT_GT] = ACTIONS(7528), + [anon_sym___extension__] = ACTIONS(6999), + [anon_sym___attribute__] = ACTIONS(7528), + [anon_sym___attribute] = ACTIONS(7528), + [anon_sym_LBRACE] = ACTIONS(7525), + [anon_sym_signed] = ACTIONS(8108), + [anon_sym_unsigned] = ACTIONS(8108), + [anon_sym_long] = ACTIONS(8108), + [anon_sym_short] = ACTIONS(8108), + [anon_sym_LBRACK] = ACTIONS(7525), + [anon_sym_EQ] = ACTIONS(7528), + [anon_sym_const] = ACTIONS(6999), + [anon_sym_constexpr] = ACTIONS(6999), + [anon_sym_volatile] = ACTIONS(6999), + [anon_sym_restrict] = ACTIONS(6999), + [anon_sym___restrict__] = ACTIONS(6999), + [anon_sym__Atomic] = ACTIONS(6999), + [anon_sym__Noreturn] = ACTIONS(6999), + [anon_sym_noreturn] = ACTIONS(6999), + [anon_sym__Nonnull] = ACTIONS(6999), + [anon_sym_mutable] = ACTIONS(6999), + [anon_sym_constinit] = ACTIONS(6999), + [anon_sym_consteval] = ACTIONS(6999), + [anon_sym_alignas] = ACTIONS(6999), + [anon_sym__Alignas] = ACTIONS(6999), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7525), + [anon_sym_STAR_EQ] = ACTIONS(7525), + [anon_sym_SLASH_EQ] = ACTIONS(7525), + [anon_sym_PERCENT_EQ] = ACTIONS(7525), + [anon_sym_PLUS_EQ] = ACTIONS(7525), + [anon_sym_DASH_EQ] = ACTIONS(7525), + [anon_sym_LT_LT_EQ] = ACTIONS(7525), + [anon_sym_GT_GT_EQ] = ACTIONS(7528), + [anon_sym_AMP_EQ] = ACTIONS(7525), + [anon_sym_CARET_EQ] = ACTIONS(7525), + [anon_sym_PIPE_EQ] = ACTIONS(7525), + [anon_sym_and_eq] = ACTIONS(7528), + [anon_sym_or_eq] = ACTIONS(7528), + [anon_sym_xor_eq] = ACTIONS(7528), + [anon_sym_LT_EQ_GT] = ACTIONS(7525), + [anon_sym_or] = ACTIONS(7528), + [anon_sym_and] = ACTIONS(7528), + [anon_sym_bitor] = ACTIONS(7528), + [anon_sym_xor] = ACTIONS(7528), + [anon_sym_bitand] = ACTIONS(7528), + [anon_sym_not_eq] = ACTIONS(7528), + [anon_sym_DASH_DASH] = ACTIONS(7525), + [anon_sym_PLUS_PLUS] = ACTIONS(7525), + [anon_sym_DOT] = ACTIONS(7528), + [anon_sym_DOT_STAR] = ACTIONS(7525), + [anon_sym_DASH_GT] = ACTIONS(7525), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7525), }, - [STATE(2769)] = { - [sym_identifier] = ACTIONS(3876), - [aux_sym_preproc_def_token1] = ACTIONS(3876), - [aux_sym_preproc_if_token1] = ACTIONS(3876), - [aux_sym_preproc_if_token2] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), - [aux_sym_preproc_else_token1] = ACTIONS(3876), - [aux_sym_preproc_elif_token1] = ACTIONS(3876), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3876), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3876), - [sym_preproc_directive] = ACTIONS(3876), - [anon_sym_LPAREN2] = ACTIONS(3878), - [anon_sym_TILDE] = ACTIONS(3878), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_AMP_AMP] = ACTIONS(3878), - [anon_sym_AMP] = ACTIONS(3876), - [anon_sym_SEMI] = ACTIONS(3878), - [anon_sym___extension__] = ACTIONS(3876), - [anon_sym_typedef] = ACTIONS(3876), - [anon_sym_virtual] = ACTIONS(3876), - [anon_sym_extern] = ACTIONS(3876), - [anon_sym___attribute__] = ACTIONS(3876), - [anon_sym___attribute] = ACTIONS(3876), - [anon_sym_using] = ACTIONS(3876), - [anon_sym_COLON_COLON] = ACTIONS(3878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), - [anon_sym___declspec] = ACTIONS(3876), - [anon_sym___based] = ACTIONS(3876), - [anon_sym_signed] = ACTIONS(3876), - [anon_sym_unsigned] = ACTIONS(3876), - [anon_sym_long] = ACTIONS(3876), - [anon_sym_short] = ACTIONS(3876), - [anon_sym_LBRACK] = ACTIONS(3876), - [anon_sym_static] = ACTIONS(3876), - [anon_sym_register] = ACTIONS(3876), - [anon_sym_inline] = ACTIONS(3876), - [anon_sym___inline] = ACTIONS(3876), - [anon_sym___inline__] = ACTIONS(3876), - [anon_sym___forceinline] = ACTIONS(3876), - [anon_sym_thread_local] = ACTIONS(3876), - [anon_sym___thread] = ACTIONS(3876), - [anon_sym_const] = ACTIONS(3876), - [anon_sym_constexpr] = ACTIONS(3876), - [anon_sym_volatile] = ACTIONS(3876), - [anon_sym_restrict] = ACTIONS(3876), - [anon_sym___restrict__] = ACTIONS(3876), - [anon_sym__Atomic] = ACTIONS(3876), - [anon_sym__Noreturn] = ACTIONS(3876), - [anon_sym_noreturn] = ACTIONS(3876), - [anon_sym__Nonnull] = ACTIONS(3876), - [anon_sym_mutable] = ACTIONS(3876), - [anon_sym_constinit] = ACTIONS(3876), - [anon_sym_consteval] = ACTIONS(3876), - [anon_sym_alignas] = ACTIONS(3876), - [anon_sym__Alignas] = ACTIONS(3876), - [sym_primitive_type] = ACTIONS(3876), - [anon_sym_enum] = ACTIONS(3876), - [anon_sym_class] = ACTIONS(3876), - [anon_sym_struct] = ACTIONS(3876), - [anon_sym_union] = ACTIONS(3876), - [anon_sym_typename] = ACTIONS(3876), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3876), - [anon_sym_decltype] = ACTIONS(3876), - [anon_sym_explicit] = ACTIONS(3876), - [anon_sym_private] = ACTIONS(3876), - [anon_sym_template] = ACTIONS(3876), - [anon_sym_operator] = ACTIONS(3876), - [anon_sym_friend] = ACTIONS(3876), - [anon_sym_public] = ACTIONS(3876), - [anon_sym_protected] = ACTIONS(3876), - [anon_sym_static_assert] = ACTIONS(3876), - [anon_sym_LBRACK_COLON] = ACTIONS(3878), + [STATE(2597)] = { + [sym_attribute_specifier] = STATE(4161), + [sym_attribute_declaration] = STATE(4617), + [sym_gnu_asm_expression] = STATE(9112), + [sym_virtual_specifier] = STATE(4705), + [sym__function_exception_specification] = STATE(3072), + [sym__function_attributes_end] = STATE(4355), + [sym__function_postfix] = STATE(5258), + [sym_trailing_return_type] = STATE(4432), + [sym_noexcept] = STATE(3072), + [sym_throw_specifier] = STATE(3072), + [sym_requires_clause] = STATE(5258), + [aux_sym_type_definition_repeat1] = STATE(4161), + [aux_sym_attributed_declarator_repeat1] = STATE(4617), + [aux_sym__function_postfix_repeat1] = STATE(4705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7789), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6681), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7789), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8318), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6694), + [anon_sym_override] = ACTIONS(6694), + [anon_sym_GT2] = ACTIONS(7791), + [anon_sym_noexcept] = ACTIONS(6696), + [anon_sym_throw] = ACTIONS(6698), + [anon_sym_requires] = ACTIONS(6700), }, - [STATE(2770)] = { - [sym_ms_based_modifier] = STATE(10656), - [sym_ms_unaligned_ptr_modifier] = STATE(6570), - [sym_ms_pointer_modifier] = STATE(2772), - [sym__declarator] = STATE(8686), - [sym__abstract_declarator] = STATE(8897), - [sym_parenthesized_declarator] = STATE(8469), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_function_declarator] = STATE(8469), - [sym_abstract_function_declarator] = STATE(8389), - [sym_array_declarator] = STATE(8469), - [sym_abstract_array_declarator] = STATE(8389), - [sym_type_qualifier] = STATE(3692), - [sym_alignas_qualifier] = STATE(7436), - [sym_parameter_list] = STATE(5256), - [sym_decltype] = STATE(10976), - [sym_reference_declarator] = STATE(8469), - [sym_abstract_reference_declarator] = STATE(8389), - [sym_structured_binding_declarator] = STATE(8469), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7878), - [sym_qualified_identifier] = STATE(8469), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__type_definition_type_repeat1] = STATE(3692), - [aux_sym_pointer_declarator_repeat1] = STATE(2772), - [sym_identifier] = ACTIONS(8195), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_RPAREN] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(5301), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(8424), - [anon_sym_AMP_AMP] = ACTIONS(8426), - [anon_sym_AMP] = ACTIONS(8428), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(6457), - [anon_sym___attribute] = ACTIONS(6457), - [anon_sym_COLON_COLON] = ACTIONS(8203), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(2933), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(2933), - [sym_ms_signed_ptr_modifier] = ACTIONS(2933), - [anon_sym__unaligned] = ACTIONS(2935), - [anon_sym___unaligned] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(5311), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym__Nonnull] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2939), - [anon_sym__Alignas] = ACTIONS(2939), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), + [STATE(2598)] = { + [sym_attribute_specifier] = STATE(4161), + [sym_attribute_declaration] = STATE(4617), + [sym_gnu_asm_expression] = STATE(9112), + [sym_virtual_specifier] = STATE(4705), + [sym__function_exception_specification] = STATE(3073), + [sym__function_attributes_end] = STATE(4361), + [sym__function_postfix] = STATE(5047), + [sym_trailing_return_type] = STATE(4440), + [sym_noexcept] = STATE(3073), + [sym_throw_specifier] = STATE(3073), + [sym_requires_clause] = STATE(5047), + [aux_sym_type_definition_repeat1] = STATE(4161), + [aux_sym_attributed_declarator_repeat1] = STATE(4617), + [aux_sym__function_postfix_repeat1] = STATE(4705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7968), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym___attribute__] = ACTIONS(6681), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7968), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7966), + [anon_sym_or_eq] = ACTIONS(7966), + [anon_sym_xor_eq] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(8429), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6694), + [anon_sym_override] = ACTIONS(6694), + [anon_sym_GT2] = ACTIONS(7966), + [anon_sym_noexcept] = ACTIONS(6696), + [anon_sym_throw] = ACTIONS(6698), + [anon_sym_requires] = ACTIONS(6700), }, - [STATE(2771)] = { - [sym_identifier] = ACTIONS(8404), - [aux_sym_preproc_def_token1] = ACTIONS(8404), - [aux_sym_preproc_if_token1] = ACTIONS(8404), - [aux_sym_preproc_if_token2] = ACTIONS(8404), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8404), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8404), - [aux_sym_preproc_else_token1] = ACTIONS(8404), - [aux_sym_preproc_elif_token1] = ACTIONS(8404), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8404), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8404), - [sym_preproc_directive] = ACTIONS(8404), - [anon_sym_LPAREN2] = ACTIONS(8406), - [anon_sym_TILDE] = ACTIONS(8406), - [anon_sym_STAR] = ACTIONS(8406), - [anon_sym_AMP_AMP] = ACTIONS(8406), - [anon_sym_AMP] = ACTIONS(8404), - [anon_sym_SEMI] = ACTIONS(8406), - [anon_sym___extension__] = ACTIONS(8404), - [anon_sym_typedef] = ACTIONS(8404), - [anon_sym_virtual] = ACTIONS(8404), - [anon_sym_extern] = ACTIONS(8404), - [anon_sym___attribute__] = ACTIONS(8404), - [anon_sym___attribute] = ACTIONS(8404), - [anon_sym_using] = ACTIONS(8404), - [anon_sym_COLON_COLON] = ACTIONS(8406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8406), - [anon_sym___declspec] = ACTIONS(8404), - [anon_sym___based] = ACTIONS(8404), - [anon_sym_signed] = ACTIONS(8404), - [anon_sym_unsigned] = ACTIONS(8404), - [anon_sym_long] = ACTIONS(8404), - [anon_sym_short] = ACTIONS(8404), - [anon_sym_LBRACK] = ACTIONS(8404), - [anon_sym_static] = ACTIONS(8404), - [anon_sym_register] = ACTIONS(8404), - [anon_sym_inline] = ACTIONS(8404), - [anon_sym___inline] = ACTIONS(8404), - [anon_sym___inline__] = ACTIONS(8404), - [anon_sym___forceinline] = ACTIONS(8404), - [anon_sym_thread_local] = ACTIONS(8404), - [anon_sym___thread] = ACTIONS(8404), - [anon_sym_const] = ACTIONS(8404), - [anon_sym_constexpr] = ACTIONS(8404), - [anon_sym_volatile] = ACTIONS(8404), - [anon_sym_restrict] = ACTIONS(8404), - [anon_sym___restrict__] = ACTIONS(8404), - [anon_sym__Atomic] = ACTIONS(8404), - [anon_sym__Noreturn] = ACTIONS(8404), - [anon_sym_noreturn] = ACTIONS(8404), - [anon_sym__Nonnull] = ACTIONS(8404), - [anon_sym_mutable] = ACTIONS(8404), - [anon_sym_constinit] = ACTIONS(8404), - [anon_sym_consteval] = ACTIONS(8404), - [anon_sym_alignas] = ACTIONS(8404), - [anon_sym__Alignas] = ACTIONS(8404), - [sym_primitive_type] = ACTIONS(8404), - [anon_sym_enum] = ACTIONS(8404), - [anon_sym_class] = ACTIONS(8404), - [anon_sym_struct] = ACTIONS(8404), - [anon_sym_union] = ACTIONS(8404), - [anon_sym_typename] = ACTIONS(8404), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8404), - [anon_sym_decltype] = ACTIONS(8404), - [anon_sym_explicit] = ACTIONS(8404), - [anon_sym_private] = ACTIONS(8404), - [anon_sym_template] = ACTIONS(8404), - [anon_sym_operator] = ACTIONS(8404), - [anon_sym_friend] = ACTIONS(8404), - [anon_sym_public] = ACTIONS(8404), - [anon_sym_protected] = ACTIONS(8404), - [anon_sym_static_assert] = ACTIONS(8404), - [anon_sym_LBRACK_COLON] = ACTIONS(8406), + [STATE(2599)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2374), + [sym_identifier] = ACTIONS(6999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), + [anon_sym_COMMA] = ACTIONS(7525), + [anon_sym_LPAREN2] = ACTIONS(7525), + [anon_sym_DASH] = ACTIONS(7528), + [anon_sym_PLUS] = ACTIONS(7528), + [anon_sym_STAR] = ACTIONS(7528), + [anon_sym_SLASH] = ACTIONS(7528), + [anon_sym_PERCENT] = ACTIONS(7528), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_AMP_AMP] = ACTIONS(7525), + [anon_sym_PIPE] = ACTIONS(7528), + [anon_sym_CARET] = ACTIONS(7528), + [anon_sym_AMP] = ACTIONS(7528), + [anon_sym_EQ_EQ] = ACTIONS(7525), + [anon_sym_BANG_EQ] = ACTIONS(7525), + [anon_sym_GT] = ACTIONS(7528), + [anon_sym_GT_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7528), + [anon_sym_LT] = ACTIONS(7528), + [anon_sym_LT_LT] = ACTIONS(7528), + [anon_sym_GT_GT] = ACTIONS(7528), + [anon_sym___extension__] = ACTIONS(6999), + [anon_sym___attribute__] = ACTIONS(7528), + [anon_sym___attribute] = ACTIONS(7528), + [anon_sym_LBRACE] = ACTIONS(7525), + [anon_sym_signed] = ACTIONS(8127), + [anon_sym_unsigned] = ACTIONS(8127), + [anon_sym_long] = ACTIONS(8127), + [anon_sym_short] = ACTIONS(8127), + [anon_sym_LBRACK] = ACTIONS(7525), + [anon_sym_RBRACK] = ACTIONS(7525), + [anon_sym_EQ] = ACTIONS(7528), + [anon_sym_const] = ACTIONS(6999), + [anon_sym_constexpr] = ACTIONS(6999), + [anon_sym_volatile] = ACTIONS(6999), + [anon_sym_restrict] = ACTIONS(6999), + [anon_sym___restrict__] = ACTIONS(6999), + [anon_sym__Atomic] = ACTIONS(6999), + [anon_sym__Noreturn] = ACTIONS(6999), + [anon_sym_noreturn] = ACTIONS(6999), + [anon_sym__Nonnull] = ACTIONS(6999), + [anon_sym_mutable] = ACTIONS(6999), + [anon_sym_constinit] = ACTIONS(6999), + [anon_sym_consteval] = ACTIONS(6999), + [anon_sym_alignas] = ACTIONS(6999), + [anon_sym__Alignas] = ACTIONS(6999), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7525), + [anon_sym_STAR_EQ] = ACTIONS(7525), + [anon_sym_SLASH_EQ] = ACTIONS(7525), + [anon_sym_PERCENT_EQ] = ACTIONS(7525), + [anon_sym_PLUS_EQ] = ACTIONS(7525), + [anon_sym_DASH_EQ] = ACTIONS(7525), + [anon_sym_LT_LT_EQ] = ACTIONS(7525), + [anon_sym_GT_GT_EQ] = ACTIONS(7525), + [anon_sym_AMP_EQ] = ACTIONS(7525), + [anon_sym_CARET_EQ] = ACTIONS(7525), + [anon_sym_PIPE_EQ] = ACTIONS(7525), + [anon_sym_and_eq] = ACTIONS(7528), + [anon_sym_or_eq] = ACTIONS(7528), + [anon_sym_xor_eq] = ACTIONS(7528), + [anon_sym_LT_EQ_GT] = ACTIONS(7525), + [anon_sym_or] = ACTIONS(7528), + [anon_sym_and] = ACTIONS(7528), + [anon_sym_bitor] = ACTIONS(7528), + [anon_sym_xor] = ACTIONS(7528), + [anon_sym_bitand] = ACTIONS(7528), + [anon_sym_not_eq] = ACTIONS(7528), + [anon_sym_DASH_DASH] = ACTIONS(7525), + [anon_sym_PLUS_PLUS] = ACTIONS(7525), + [anon_sym_DOT] = ACTIONS(7528), + [anon_sym_DOT_STAR] = ACTIONS(7525), + [anon_sym_DASH_GT] = ACTIONS(7525), + [sym_comment] = ACTIONS(3), }, - [STATE(2772)] = { - [sym_ms_based_modifier] = STATE(10656), - [sym_ms_unaligned_ptr_modifier] = STATE(6570), - [sym_ms_pointer_modifier] = STATE(6287), - [sym__declarator] = STATE(8646), - [sym__abstract_declarator] = STATE(8942), - [sym_parenthesized_declarator] = STATE(8469), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_function_declarator] = STATE(8469), - [sym_abstract_function_declarator] = STATE(8389), - [sym_array_declarator] = STATE(8469), - [sym_abstract_array_declarator] = STATE(8389), - [sym_type_qualifier] = STATE(3700), - [sym_alignas_qualifier] = STATE(7436), - [sym_parameter_list] = STATE(5256), - [sym_decltype] = STATE(10976), - [sym_reference_declarator] = STATE(8469), - [sym_abstract_reference_declarator] = STATE(8389), - [sym_structured_binding_declarator] = STATE(8469), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7878), - [sym_qualified_identifier] = STATE(8469), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__type_definition_type_repeat1] = STATE(3700), - [aux_sym_pointer_declarator_repeat1] = STATE(6287), - [sym_identifier] = ACTIONS(8195), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_RPAREN] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(5301), - [anon_sym_TILDE] = ACTIONS(3049), + [STATE(2600)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_attributes_end] = STATE(3921), + [sym__function_postfix] = STATE(3675), + [sym_trailing_return_type] = STATE(2973), + [sym_requires_clause] = STATE(3675), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(8424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), + [anon_sym_COMMA] = ACTIONS(8422), + [aux_sym_preproc_if_token2] = ACTIONS(8422), + [aux_sym_preproc_else_token1] = ACTIONS(8422), + [aux_sym_preproc_elif_token1] = ACTIONS(8424), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8422), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8422), + [anon_sym_LPAREN2] = ACTIONS(8422), + [anon_sym_DASH] = ACTIONS(8424), + [anon_sym_PLUS] = ACTIONS(8424), [anon_sym_STAR] = ACTIONS(8424), - [anon_sym_AMP_AMP] = ACTIONS(8426), - [anon_sym_AMP] = ACTIONS(8428), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(6495), - [anon_sym___attribute] = ACTIONS(6495), - [anon_sym_COLON_COLON] = ACTIONS(8203), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(2933), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(2933), - [sym_ms_signed_ptr_modifier] = ACTIONS(2933), - [anon_sym__unaligned] = ACTIONS(2935), - [anon_sym___unaligned] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(5311), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym__Nonnull] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2939), - [anon_sym__Alignas] = ACTIONS(2939), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), - }, - [STATE(2773)] = { - [sym_identifier] = ACTIONS(8430), - [aux_sym_preproc_def_token1] = ACTIONS(8430), - [aux_sym_preproc_if_token1] = ACTIONS(8430), - [aux_sym_preproc_if_token2] = ACTIONS(8430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8430), - [aux_sym_preproc_else_token1] = ACTIONS(8430), - [aux_sym_preproc_elif_token1] = ACTIONS(8430), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8430), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8430), - [sym_preproc_directive] = ACTIONS(8430), - [anon_sym_LPAREN2] = ACTIONS(8432), - [anon_sym_TILDE] = ACTIONS(8432), - [anon_sym_STAR] = ACTIONS(8432), - [anon_sym_AMP_AMP] = ACTIONS(8432), - [anon_sym_AMP] = ACTIONS(8430), - [anon_sym_SEMI] = ACTIONS(8432), - [anon_sym___extension__] = ACTIONS(8430), - [anon_sym_typedef] = ACTIONS(8430), - [anon_sym_virtual] = ACTIONS(8430), - [anon_sym_extern] = ACTIONS(8430), - [anon_sym___attribute__] = ACTIONS(8430), - [anon_sym___attribute] = ACTIONS(8430), - [anon_sym_using] = ACTIONS(8430), - [anon_sym_COLON_COLON] = ACTIONS(8432), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8432), - [anon_sym___declspec] = ACTIONS(8430), - [anon_sym___based] = ACTIONS(8430), - [anon_sym_signed] = ACTIONS(8430), - [anon_sym_unsigned] = ACTIONS(8430), - [anon_sym_long] = ACTIONS(8430), - [anon_sym_short] = ACTIONS(8430), - [anon_sym_LBRACK] = ACTIONS(8430), - [anon_sym_static] = ACTIONS(8430), - [anon_sym_register] = ACTIONS(8430), - [anon_sym_inline] = ACTIONS(8430), - [anon_sym___inline] = ACTIONS(8430), - [anon_sym___inline__] = ACTIONS(8430), - [anon_sym___forceinline] = ACTIONS(8430), - [anon_sym_thread_local] = ACTIONS(8430), - [anon_sym___thread] = ACTIONS(8430), - [anon_sym_const] = ACTIONS(8430), - [anon_sym_constexpr] = ACTIONS(8430), - [anon_sym_volatile] = ACTIONS(8430), - [anon_sym_restrict] = ACTIONS(8430), - [anon_sym___restrict__] = ACTIONS(8430), - [anon_sym__Atomic] = ACTIONS(8430), - [anon_sym__Noreturn] = ACTIONS(8430), - [anon_sym_noreturn] = ACTIONS(8430), - [anon_sym__Nonnull] = ACTIONS(8430), - [anon_sym_mutable] = ACTIONS(8430), - [anon_sym_constinit] = ACTIONS(8430), - [anon_sym_consteval] = ACTIONS(8430), - [anon_sym_alignas] = ACTIONS(8430), - [anon_sym__Alignas] = ACTIONS(8430), - [sym_primitive_type] = ACTIONS(8430), - [anon_sym_enum] = ACTIONS(8430), - [anon_sym_class] = ACTIONS(8430), - [anon_sym_struct] = ACTIONS(8430), - [anon_sym_union] = ACTIONS(8430), - [anon_sym_typename] = ACTIONS(8430), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8430), - [anon_sym_decltype] = ACTIONS(8430), - [anon_sym_explicit] = ACTIONS(8430), - [anon_sym_private] = ACTIONS(8430), - [anon_sym_template] = ACTIONS(8430), - [anon_sym_operator] = ACTIONS(8430), - [anon_sym_friend] = ACTIONS(8430), - [anon_sym_public] = ACTIONS(8430), - [anon_sym_protected] = ACTIONS(8430), - [anon_sym_static_assert] = ACTIONS(8430), - [anon_sym_LBRACK_COLON] = ACTIONS(8432), - }, - [STATE(2774)] = { - [sym_identifier] = ACTIONS(8434), - [aux_sym_preproc_def_token1] = ACTIONS(8434), - [aux_sym_preproc_if_token1] = ACTIONS(8434), - [aux_sym_preproc_if_token2] = ACTIONS(8434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8434), - [aux_sym_preproc_else_token1] = ACTIONS(8434), - [aux_sym_preproc_elif_token1] = ACTIONS(8434), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8434), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8434), - [sym_preproc_directive] = ACTIONS(8434), - [anon_sym_LPAREN2] = ACTIONS(8436), - [anon_sym_TILDE] = ACTIONS(8436), - [anon_sym_STAR] = ACTIONS(8436), - [anon_sym_AMP_AMP] = ACTIONS(8436), - [anon_sym_AMP] = ACTIONS(8434), - [anon_sym_SEMI] = ACTIONS(8436), - [anon_sym___extension__] = ACTIONS(8434), - [anon_sym_typedef] = ACTIONS(8434), - [anon_sym_virtual] = ACTIONS(8434), - [anon_sym_extern] = ACTIONS(8434), - [anon_sym___attribute__] = ACTIONS(8434), - [anon_sym___attribute] = ACTIONS(8434), - [anon_sym_using] = ACTIONS(8434), - [anon_sym_COLON_COLON] = ACTIONS(8436), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8436), - [anon_sym___declspec] = ACTIONS(8434), - [anon_sym___based] = ACTIONS(8434), - [anon_sym_signed] = ACTIONS(8434), - [anon_sym_unsigned] = ACTIONS(8434), - [anon_sym_long] = ACTIONS(8434), - [anon_sym_short] = ACTIONS(8434), - [anon_sym_LBRACK] = ACTIONS(8434), - [anon_sym_static] = ACTIONS(8434), - [anon_sym_register] = ACTIONS(8434), - [anon_sym_inline] = ACTIONS(8434), - [anon_sym___inline] = ACTIONS(8434), - [anon_sym___inline__] = ACTIONS(8434), - [anon_sym___forceinline] = ACTIONS(8434), - [anon_sym_thread_local] = ACTIONS(8434), - [anon_sym___thread] = ACTIONS(8434), - [anon_sym_const] = ACTIONS(8434), - [anon_sym_constexpr] = ACTIONS(8434), - [anon_sym_volatile] = ACTIONS(8434), - [anon_sym_restrict] = ACTIONS(8434), - [anon_sym___restrict__] = ACTIONS(8434), - [anon_sym__Atomic] = ACTIONS(8434), - [anon_sym__Noreturn] = ACTIONS(8434), - [anon_sym_noreturn] = ACTIONS(8434), - [anon_sym__Nonnull] = ACTIONS(8434), - [anon_sym_mutable] = ACTIONS(8434), - [anon_sym_constinit] = ACTIONS(8434), - [anon_sym_consteval] = ACTIONS(8434), - [anon_sym_alignas] = ACTIONS(8434), - [anon_sym__Alignas] = ACTIONS(8434), - [sym_primitive_type] = ACTIONS(8434), - [anon_sym_enum] = ACTIONS(8434), - [anon_sym_class] = ACTIONS(8434), - [anon_sym_struct] = ACTIONS(8434), - [anon_sym_union] = ACTIONS(8434), - [anon_sym_typename] = ACTIONS(8434), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8434), - [anon_sym_decltype] = ACTIONS(8434), - [anon_sym_explicit] = ACTIONS(8434), - [anon_sym_private] = ACTIONS(8434), - [anon_sym_template] = ACTIONS(8434), - [anon_sym_operator] = ACTIONS(8434), - [anon_sym_friend] = ACTIONS(8434), - [anon_sym_public] = ACTIONS(8434), - [anon_sym_protected] = ACTIONS(8434), - [anon_sym_static_assert] = ACTIONS(8434), - [anon_sym_LBRACK_COLON] = ACTIONS(8436), - }, - [STATE(2775)] = { - [sym_identifier] = ACTIONS(8438), - [aux_sym_preproc_def_token1] = ACTIONS(8438), - [aux_sym_preproc_if_token1] = ACTIONS(8438), - [aux_sym_preproc_if_token2] = ACTIONS(8438), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8438), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8438), - [aux_sym_preproc_else_token1] = ACTIONS(8438), - [aux_sym_preproc_elif_token1] = ACTIONS(8438), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8438), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8438), - [sym_preproc_directive] = ACTIONS(8438), - [anon_sym_LPAREN2] = ACTIONS(8440), - [anon_sym_TILDE] = ACTIONS(8440), - [anon_sym_STAR] = ACTIONS(8440), - [anon_sym_AMP_AMP] = ACTIONS(8440), - [anon_sym_AMP] = ACTIONS(8438), - [anon_sym_SEMI] = ACTIONS(8440), - [anon_sym___extension__] = ACTIONS(8438), - [anon_sym_typedef] = ACTIONS(8438), - [anon_sym_virtual] = ACTIONS(8438), - [anon_sym_extern] = ACTIONS(8438), - [anon_sym___attribute__] = ACTIONS(8438), - [anon_sym___attribute] = ACTIONS(8438), - [anon_sym_using] = ACTIONS(8438), - [anon_sym_COLON_COLON] = ACTIONS(8440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8440), - [anon_sym___declspec] = ACTIONS(8438), - [anon_sym___based] = ACTIONS(8438), - [anon_sym_signed] = ACTIONS(8438), - [anon_sym_unsigned] = ACTIONS(8438), - [anon_sym_long] = ACTIONS(8438), - [anon_sym_short] = ACTIONS(8438), - [anon_sym_LBRACK] = ACTIONS(8438), - [anon_sym_static] = ACTIONS(8438), - [anon_sym_register] = ACTIONS(8438), - [anon_sym_inline] = ACTIONS(8438), - [anon_sym___inline] = ACTIONS(8438), - [anon_sym___inline__] = ACTIONS(8438), - [anon_sym___forceinline] = ACTIONS(8438), - [anon_sym_thread_local] = ACTIONS(8438), - [anon_sym___thread] = ACTIONS(8438), - [anon_sym_const] = ACTIONS(8438), - [anon_sym_constexpr] = ACTIONS(8438), - [anon_sym_volatile] = ACTIONS(8438), - [anon_sym_restrict] = ACTIONS(8438), - [anon_sym___restrict__] = ACTIONS(8438), - [anon_sym__Atomic] = ACTIONS(8438), - [anon_sym__Noreturn] = ACTIONS(8438), - [anon_sym_noreturn] = ACTIONS(8438), - [anon_sym__Nonnull] = ACTIONS(8438), - [anon_sym_mutable] = ACTIONS(8438), - [anon_sym_constinit] = ACTIONS(8438), - [anon_sym_consteval] = ACTIONS(8438), - [anon_sym_alignas] = ACTIONS(8438), - [anon_sym__Alignas] = ACTIONS(8438), - [sym_primitive_type] = ACTIONS(8438), - [anon_sym_enum] = ACTIONS(8438), - [anon_sym_class] = ACTIONS(8438), - [anon_sym_struct] = ACTIONS(8438), - [anon_sym_union] = ACTIONS(8438), - [anon_sym_typename] = ACTIONS(8438), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8438), - [anon_sym_decltype] = ACTIONS(8438), - [anon_sym_explicit] = ACTIONS(8438), - [anon_sym_private] = ACTIONS(8438), - [anon_sym_template] = ACTIONS(8438), - [anon_sym_operator] = ACTIONS(8438), - [anon_sym_friend] = ACTIONS(8438), - [anon_sym_public] = ACTIONS(8438), - [anon_sym_protected] = ACTIONS(8438), - [anon_sym_static_assert] = ACTIONS(8438), - [anon_sym_LBRACK_COLON] = ACTIONS(8440), - }, - [STATE(2776)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7285), - [anon_sym_COMMA] = ACTIONS(7285), - [anon_sym_RPAREN] = ACTIONS(7285), - [anon_sym_LPAREN2] = ACTIONS(7285), - [anon_sym_DASH] = ACTIONS(7283), - [anon_sym_PLUS] = ACTIONS(7283), - [anon_sym_STAR] = ACTIONS(7283), - [anon_sym_SLASH] = ACTIONS(7283), - [anon_sym_PERCENT] = ACTIONS(7283), - [anon_sym_PIPE_PIPE] = ACTIONS(7285), - [anon_sym_AMP_AMP] = ACTIONS(7285), - [anon_sym_PIPE] = ACTIONS(7283), - [anon_sym_CARET] = ACTIONS(7283), - [anon_sym_AMP] = ACTIONS(7283), - [anon_sym_EQ_EQ] = ACTIONS(7285), - [anon_sym_BANG_EQ] = ACTIONS(7285), - [anon_sym_GT] = ACTIONS(7283), - [anon_sym_GT_EQ] = ACTIONS(7285), - [anon_sym_LT_EQ] = ACTIONS(7283), - [anon_sym_LT] = ACTIONS(7283), - [anon_sym_LT_LT] = ACTIONS(7283), - [anon_sym_GT_GT] = ACTIONS(7283), - [anon_sym___extension__] = ACTIONS(7285), - [anon_sym___attribute__] = ACTIONS(7285), - [anon_sym___attribute] = ACTIONS(7283), - [anon_sym_LBRACE] = ACTIONS(7285), - [anon_sym_LBRACK] = ACTIONS(7285), - [anon_sym_EQ] = ACTIONS(7283), - [anon_sym_const] = ACTIONS(7283), - [anon_sym_constexpr] = ACTIONS(7285), - [anon_sym_volatile] = ACTIONS(7285), - [anon_sym_restrict] = ACTIONS(7285), - [anon_sym___restrict__] = ACTIONS(7285), - [anon_sym__Atomic] = ACTIONS(7285), - [anon_sym__Noreturn] = ACTIONS(7285), - [anon_sym_noreturn] = ACTIONS(7285), - [anon_sym__Nonnull] = ACTIONS(7285), - [anon_sym_mutable] = ACTIONS(7285), - [anon_sym_constinit] = ACTIONS(7285), - [anon_sym_consteval] = ACTIONS(7285), - [anon_sym_alignas] = ACTIONS(7285), - [anon_sym__Alignas] = ACTIONS(7285), - [anon_sym_QMARK] = ACTIONS(7285), - [anon_sym_STAR_EQ] = ACTIONS(7285), - [anon_sym_SLASH_EQ] = ACTIONS(7285), - [anon_sym_PERCENT_EQ] = ACTIONS(7285), - [anon_sym_PLUS_EQ] = ACTIONS(7285), - [anon_sym_DASH_EQ] = ACTIONS(7285), - [anon_sym_LT_LT_EQ] = ACTIONS(7285), - [anon_sym_GT_GT_EQ] = ACTIONS(7285), - [anon_sym_AMP_EQ] = ACTIONS(7285), - [anon_sym_CARET_EQ] = ACTIONS(7285), - [anon_sym_PIPE_EQ] = ACTIONS(7285), - [anon_sym_and_eq] = ACTIONS(7285), - [anon_sym_or_eq] = ACTIONS(7285), - [anon_sym_xor_eq] = ACTIONS(7285), - [anon_sym_LT_EQ_GT] = ACTIONS(7285), - [anon_sym_or] = ACTIONS(7283), - [anon_sym_and] = ACTIONS(7283), - [anon_sym_bitor] = ACTIONS(7285), - [anon_sym_xor] = ACTIONS(7283), - [anon_sym_bitand] = ACTIONS(7285), - [anon_sym_not_eq] = ACTIONS(7285), - [anon_sym_DASH_DASH] = ACTIONS(7285), - [anon_sym_PLUS_PLUS] = ACTIONS(7285), - [anon_sym_DOT] = ACTIONS(7283), - [anon_sym_DOT_STAR] = ACTIONS(7285), - [anon_sym_DASH_GT] = ACTIONS(7283), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7285), - [anon_sym_override] = ACTIONS(7285), - [anon_sym_requires] = ACTIONS(7285), - [anon_sym_DASH_GT_STAR] = ACTIONS(7285), - }, - [STATE(2777)] = { - [sym_identifier] = ACTIONS(8442), - [aux_sym_preproc_def_token1] = ACTIONS(8442), - [aux_sym_preproc_if_token1] = ACTIONS(8442), - [aux_sym_preproc_if_token2] = ACTIONS(8442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8442), - [aux_sym_preproc_else_token1] = ACTIONS(8442), - [aux_sym_preproc_elif_token1] = ACTIONS(8442), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8442), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8442), - [sym_preproc_directive] = ACTIONS(8442), - [anon_sym_LPAREN2] = ACTIONS(8444), - [anon_sym_TILDE] = ACTIONS(8444), - [anon_sym_STAR] = ACTIONS(8444), - [anon_sym_AMP_AMP] = ACTIONS(8444), - [anon_sym_AMP] = ACTIONS(8442), - [anon_sym_SEMI] = ACTIONS(8444), - [anon_sym___extension__] = ACTIONS(8442), - [anon_sym_typedef] = ACTIONS(8442), - [anon_sym_virtual] = ACTIONS(8442), - [anon_sym_extern] = ACTIONS(8442), - [anon_sym___attribute__] = ACTIONS(8442), - [anon_sym___attribute] = ACTIONS(8442), - [anon_sym_using] = ACTIONS(8442), - [anon_sym_COLON_COLON] = ACTIONS(8444), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8444), - [anon_sym___declspec] = ACTIONS(8442), - [anon_sym___based] = ACTIONS(8442), - [anon_sym_signed] = ACTIONS(8442), - [anon_sym_unsigned] = ACTIONS(8442), - [anon_sym_long] = ACTIONS(8442), - [anon_sym_short] = ACTIONS(8442), - [anon_sym_LBRACK] = ACTIONS(8442), - [anon_sym_static] = ACTIONS(8442), - [anon_sym_register] = ACTIONS(8442), - [anon_sym_inline] = ACTIONS(8442), - [anon_sym___inline] = ACTIONS(8442), - [anon_sym___inline__] = ACTIONS(8442), - [anon_sym___forceinline] = ACTIONS(8442), - [anon_sym_thread_local] = ACTIONS(8442), - [anon_sym___thread] = ACTIONS(8442), - [anon_sym_const] = ACTIONS(8442), - [anon_sym_constexpr] = ACTIONS(8442), - [anon_sym_volatile] = ACTIONS(8442), - [anon_sym_restrict] = ACTIONS(8442), - [anon_sym___restrict__] = ACTIONS(8442), - [anon_sym__Atomic] = ACTIONS(8442), - [anon_sym__Noreturn] = ACTIONS(8442), - [anon_sym_noreturn] = ACTIONS(8442), - [anon_sym__Nonnull] = ACTIONS(8442), - [anon_sym_mutable] = ACTIONS(8442), - [anon_sym_constinit] = ACTIONS(8442), - [anon_sym_consteval] = ACTIONS(8442), - [anon_sym_alignas] = ACTIONS(8442), - [anon_sym__Alignas] = ACTIONS(8442), - [sym_primitive_type] = ACTIONS(8442), - [anon_sym_enum] = ACTIONS(8442), - [anon_sym_class] = ACTIONS(8442), - [anon_sym_struct] = ACTIONS(8442), - [anon_sym_union] = ACTIONS(8442), - [anon_sym_typename] = ACTIONS(8442), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8442), - [anon_sym_decltype] = ACTIONS(8442), - [anon_sym_explicit] = ACTIONS(8442), - [anon_sym_private] = ACTIONS(8442), - [anon_sym_template] = ACTIONS(8442), - [anon_sym_operator] = ACTIONS(8442), - [anon_sym_friend] = ACTIONS(8442), - [anon_sym_public] = ACTIONS(8442), - [anon_sym_protected] = ACTIONS(8442), - [anon_sym_static_assert] = ACTIONS(8442), - [anon_sym_LBRACK_COLON] = ACTIONS(8444), - }, - [STATE(2778)] = { - [sym_identifier] = ACTIONS(4062), - [aux_sym_preproc_def_token1] = ACTIONS(4062), - [aux_sym_preproc_if_token1] = ACTIONS(4062), - [aux_sym_preproc_if_token2] = ACTIONS(4062), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4062), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4062), - [aux_sym_preproc_else_token1] = ACTIONS(4062), - [aux_sym_preproc_elif_token1] = ACTIONS(4062), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4062), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4062), - [sym_preproc_directive] = ACTIONS(4062), - [anon_sym_LPAREN2] = ACTIONS(4064), - [anon_sym_TILDE] = ACTIONS(4064), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_AMP_AMP] = ACTIONS(4064), - [anon_sym_AMP] = ACTIONS(4062), - [anon_sym_SEMI] = ACTIONS(4064), - [anon_sym___extension__] = ACTIONS(4062), - [anon_sym_typedef] = ACTIONS(4062), - [anon_sym_virtual] = ACTIONS(4062), - [anon_sym_extern] = ACTIONS(4062), - [anon_sym___attribute__] = ACTIONS(4062), - [anon_sym___attribute] = ACTIONS(4062), - [anon_sym_using] = ACTIONS(4062), - [anon_sym_COLON_COLON] = ACTIONS(4064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4064), - [anon_sym___declspec] = ACTIONS(4062), - [anon_sym___based] = ACTIONS(4062), - [anon_sym_signed] = ACTIONS(4062), - [anon_sym_unsigned] = ACTIONS(4062), - [anon_sym_long] = ACTIONS(4062), - [anon_sym_short] = ACTIONS(4062), - [anon_sym_LBRACK] = ACTIONS(4062), - [anon_sym_static] = ACTIONS(4062), - [anon_sym_register] = ACTIONS(4062), - [anon_sym_inline] = ACTIONS(4062), - [anon_sym___inline] = ACTIONS(4062), - [anon_sym___inline__] = ACTIONS(4062), - [anon_sym___forceinline] = ACTIONS(4062), - [anon_sym_thread_local] = ACTIONS(4062), - [anon_sym___thread] = ACTIONS(4062), - [anon_sym_const] = ACTIONS(4062), - [anon_sym_constexpr] = ACTIONS(4062), - [anon_sym_volatile] = ACTIONS(4062), - [anon_sym_restrict] = ACTIONS(4062), - [anon_sym___restrict__] = ACTIONS(4062), - [anon_sym__Atomic] = ACTIONS(4062), - [anon_sym__Noreturn] = ACTIONS(4062), - [anon_sym_noreturn] = ACTIONS(4062), - [anon_sym__Nonnull] = ACTIONS(4062), - [anon_sym_mutable] = ACTIONS(4062), - [anon_sym_constinit] = ACTIONS(4062), - [anon_sym_consteval] = ACTIONS(4062), - [anon_sym_alignas] = ACTIONS(4062), - [anon_sym__Alignas] = ACTIONS(4062), - [sym_primitive_type] = ACTIONS(4062), - [anon_sym_enum] = ACTIONS(4062), - [anon_sym_class] = ACTIONS(4062), - [anon_sym_struct] = ACTIONS(4062), - [anon_sym_union] = ACTIONS(4062), - [anon_sym_typename] = ACTIONS(4062), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4062), - [anon_sym_decltype] = ACTIONS(4062), - [anon_sym_explicit] = ACTIONS(4062), - [anon_sym_private] = ACTIONS(4062), - [anon_sym_template] = ACTIONS(4062), - [anon_sym_operator] = ACTIONS(4062), - [anon_sym_friend] = ACTIONS(4062), - [anon_sym_public] = ACTIONS(4062), - [anon_sym_protected] = ACTIONS(4062), - [anon_sym_static_assert] = ACTIONS(4062), - [anon_sym_LBRACK_COLON] = ACTIONS(4064), + [anon_sym_SLASH] = ACTIONS(8424), + [anon_sym_PERCENT] = ACTIONS(8424), + [anon_sym_PIPE_PIPE] = ACTIONS(8422), + [anon_sym_AMP_AMP] = ACTIONS(8422), + [anon_sym_PIPE] = ACTIONS(8424), + [anon_sym_CARET] = ACTIONS(8424), + [anon_sym_AMP] = ACTIONS(8424), + [anon_sym_EQ_EQ] = ACTIONS(8422), + [anon_sym_BANG_EQ] = ACTIONS(8422), + [anon_sym_GT] = ACTIONS(8424), + [anon_sym_GT_EQ] = ACTIONS(8422), + [anon_sym_LT_EQ] = ACTIONS(8424), + [anon_sym_LT] = ACTIONS(8424), + [anon_sym_LT_LT] = ACTIONS(8424), + [anon_sym_GT_GT] = ACTIONS(8424), + [anon_sym___attribute__] = ACTIONS(6491), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(8424), + [anon_sym_EQ] = ACTIONS(8424), + [anon_sym_QMARK] = ACTIONS(8422), + [anon_sym_STAR_EQ] = ACTIONS(8422), + [anon_sym_SLASH_EQ] = ACTIONS(8422), + [anon_sym_PERCENT_EQ] = ACTIONS(8422), + [anon_sym_PLUS_EQ] = ACTIONS(8422), + [anon_sym_DASH_EQ] = ACTIONS(8422), + [anon_sym_LT_LT_EQ] = ACTIONS(8422), + [anon_sym_GT_GT_EQ] = ACTIONS(8422), + [anon_sym_AMP_EQ] = ACTIONS(8422), + [anon_sym_CARET_EQ] = ACTIONS(8422), + [anon_sym_PIPE_EQ] = ACTIONS(8422), + [anon_sym_and_eq] = ACTIONS(8424), + [anon_sym_or_eq] = ACTIONS(8424), + [anon_sym_xor_eq] = ACTIONS(8424), + [anon_sym_LT_EQ_GT] = ACTIONS(8422), + [anon_sym_or] = ACTIONS(8424), + [anon_sym_and] = ACTIONS(8424), + [anon_sym_bitor] = ACTIONS(8424), + [anon_sym_xor] = ACTIONS(8424), + [anon_sym_bitand] = ACTIONS(8424), + [anon_sym_not_eq] = ACTIONS(8424), + [anon_sym_DASH_DASH] = ACTIONS(8422), + [anon_sym_PLUS_PLUS] = ACTIONS(8422), + [anon_sym_asm] = ACTIONS(6497), + [anon_sym___asm__] = ACTIONS(6497), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(8424), + [anon_sym_DOT_STAR] = ACTIONS(8422), + [anon_sym_DASH_GT] = ACTIONS(8478), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6502), + [anon_sym_override] = ACTIONS(6502), + [anon_sym_requires] = ACTIONS(6508), }, - [STATE(2779)] = { - [sym_identifier] = ACTIONS(4066), - [aux_sym_preproc_def_token1] = ACTIONS(4066), - [aux_sym_preproc_if_token1] = ACTIONS(4066), - [aux_sym_preproc_if_token2] = ACTIONS(4066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4066), - [aux_sym_preproc_else_token1] = ACTIONS(4066), - [aux_sym_preproc_elif_token1] = ACTIONS(4066), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4066), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4066), - [sym_preproc_directive] = ACTIONS(4066), - [anon_sym_LPAREN2] = ACTIONS(4068), - [anon_sym_TILDE] = ACTIONS(4068), - [anon_sym_STAR] = ACTIONS(4068), - [anon_sym_AMP_AMP] = ACTIONS(4068), - [anon_sym_AMP] = ACTIONS(4066), - [anon_sym_SEMI] = ACTIONS(4068), - [anon_sym___extension__] = ACTIONS(4066), - [anon_sym_typedef] = ACTIONS(4066), - [anon_sym_virtual] = ACTIONS(4066), - [anon_sym_extern] = ACTIONS(4066), - [anon_sym___attribute__] = ACTIONS(4066), - [anon_sym___attribute] = ACTIONS(4066), - [anon_sym_using] = ACTIONS(4066), - [anon_sym_COLON_COLON] = ACTIONS(4068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4068), - [anon_sym___declspec] = ACTIONS(4066), - [anon_sym___based] = ACTIONS(4066), - [anon_sym_signed] = ACTIONS(4066), - [anon_sym_unsigned] = ACTIONS(4066), - [anon_sym_long] = ACTIONS(4066), - [anon_sym_short] = ACTIONS(4066), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_static] = ACTIONS(4066), - [anon_sym_register] = ACTIONS(4066), - [anon_sym_inline] = ACTIONS(4066), - [anon_sym___inline] = ACTIONS(4066), - [anon_sym___inline__] = ACTIONS(4066), - [anon_sym___forceinline] = ACTIONS(4066), - [anon_sym_thread_local] = ACTIONS(4066), - [anon_sym___thread] = ACTIONS(4066), - [anon_sym_const] = ACTIONS(4066), - [anon_sym_constexpr] = ACTIONS(4066), - [anon_sym_volatile] = ACTIONS(4066), - [anon_sym_restrict] = ACTIONS(4066), - [anon_sym___restrict__] = ACTIONS(4066), - [anon_sym__Atomic] = ACTIONS(4066), - [anon_sym__Noreturn] = ACTIONS(4066), - [anon_sym_noreturn] = ACTIONS(4066), - [anon_sym__Nonnull] = ACTIONS(4066), - [anon_sym_mutable] = ACTIONS(4066), - [anon_sym_constinit] = ACTIONS(4066), - [anon_sym_consteval] = ACTIONS(4066), - [anon_sym_alignas] = ACTIONS(4066), - [anon_sym__Alignas] = ACTIONS(4066), - [sym_primitive_type] = ACTIONS(4066), - [anon_sym_enum] = ACTIONS(4066), - [anon_sym_class] = ACTIONS(4066), - [anon_sym_struct] = ACTIONS(4066), - [anon_sym_union] = ACTIONS(4066), - [anon_sym_typename] = ACTIONS(4066), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4066), - [anon_sym_decltype] = ACTIONS(4066), - [anon_sym_explicit] = ACTIONS(4066), - [anon_sym_private] = ACTIONS(4066), - [anon_sym_template] = ACTIONS(4066), - [anon_sym_operator] = ACTIONS(4066), - [anon_sym_friend] = ACTIONS(4066), - [anon_sym_public] = ACTIONS(4066), - [anon_sym_protected] = ACTIONS(4066), - [anon_sym_static_assert] = ACTIONS(4066), - [anon_sym_LBRACK_COLON] = ACTIONS(4068), + [STATE(2601)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), + [anon_sym_COMMA] = ACTIONS(7090), + [anon_sym_RPAREN] = ACTIONS(7090), + [anon_sym_LPAREN2] = ACTIONS(7090), + [anon_sym_DASH] = ACTIONS(7085), + [anon_sym_PLUS] = ACTIONS(7085), + [anon_sym_STAR] = ACTIONS(7085), + [anon_sym_SLASH] = ACTIONS(7085), + [anon_sym_PERCENT] = ACTIONS(7085), + [anon_sym_PIPE_PIPE] = ACTIONS(7090), + [anon_sym_AMP_AMP] = ACTIONS(7090), + [anon_sym_PIPE] = ACTIONS(7085), + [anon_sym_CARET] = ACTIONS(7085), + [anon_sym_AMP] = ACTIONS(7085), + [anon_sym_EQ_EQ] = ACTIONS(7090), + [anon_sym_BANG_EQ] = ACTIONS(7090), + [anon_sym_GT] = ACTIONS(7085), + [anon_sym_GT_EQ] = ACTIONS(7090), + [anon_sym_LT_EQ] = ACTIONS(7085), + [anon_sym_LT] = ACTIONS(7085), + [anon_sym_LT_LT] = ACTIONS(7085), + [anon_sym_GT_GT] = ACTIONS(7085), + [anon_sym___extension__] = ACTIONS(7090), + [anon_sym___attribute__] = ACTIONS(7090), + [anon_sym___attribute] = ACTIONS(7085), + [anon_sym_COLON] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7090), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_LBRACK] = ACTIONS(7090), + [anon_sym_EQ] = ACTIONS(7085), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7090), + [anon_sym_volatile] = ACTIONS(7090), + [anon_sym_restrict] = ACTIONS(7090), + [anon_sym___restrict__] = ACTIONS(7090), + [anon_sym__Atomic] = ACTIONS(7090), + [anon_sym__Noreturn] = ACTIONS(7090), + [anon_sym_noreturn] = ACTIONS(7090), + [anon_sym__Nonnull] = ACTIONS(7090), + [anon_sym_mutable] = ACTIONS(7090), + [anon_sym_constinit] = ACTIONS(7090), + [anon_sym_consteval] = ACTIONS(7090), + [anon_sym_alignas] = ACTIONS(7090), + [anon_sym__Alignas] = ACTIONS(7090), + [anon_sym_QMARK] = ACTIONS(7090), + [anon_sym_STAR_EQ] = ACTIONS(7090), + [anon_sym_SLASH_EQ] = ACTIONS(7090), + [anon_sym_PERCENT_EQ] = ACTIONS(7090), + [anon_sym_PLUS_EQ] = ACTIONS(7090), + [anon_sym_DASH_EQ] = ACTIONS(7090), + [anon_sym_LT_LT_EQ] = ACTIONS(7090), + [anon_sym_GT_GT_EQ] = ACTIONS(7090), + [anon_sym_AMP_EQ] = ACTIONS(7090), + [anon_sym_CARET_EQ] = ACTIONS(7090), + [anon_sym_PIPE_EQ] = ACTIONS(7090), + [anon_sym_and_eq] = ACTIONS(7090), + [anon_sym_or_eq] = ACTIONS(7090), + [anon_sym_xor_eq] = ACTIONS(7090), + [anon_sym_LT_EQ_GT] = ACTIONS(7090), + [anon_sym_or] = ACTIONS(7085), + [anon_sym_and] = ACTIONS(7085), + [anon_sym_bitor] = ACTIONS(7090), + [anon_sym_xor] = ACTIONS(7085), + [anon_sym_bitand] = ACTIONS(7090), + [anon_sym_not_eq] = ACTIONS(7090), + [anon_sym_DASH_DASH] = ACTIONS(7090), + [anon_sym_PLUS_PLUS] = ACTIONS(7090), + [anon_sym_DOT] = ACTIONS(7085), + [anon_sym_DOT_STAR] = ACTIONS(7090), + [anon_sym_DASH_GT] = ACTIONS(7085), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7090), + [anon_sym_override] = ACTIONS(7090), + [anon_sym_requires] = ACTIONS(7090), + [anon_sym_DASH_GT_STAR] = ACTIONS(7090), }, - [STATE(2780)] = { - [sym_identifier] = ACTIONS(8446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8448), - [anon_sym_COMMA] = ACTIONS(8448), - [anon_sym_RPAREN] = ACTIONS(8448), - [aux_sym_preproc_if_token2] = ACTIONS(8448), - [aux_sym_preproc_else_token1] = ACTIONS(8448), - [aux_sym_preproc_elif_token1] = ACTIONS(8446), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8448), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8448), - [anon_sym_LPAREN2] = ACTIONS(8448), - [anon_sym_DASH] = ACTIONS(8446), - [anon_sym_PLUS] = ACTIONS(8446), - [anon_sym_STAR] = ACTIONS(8446), - [anon_sym_SLASH] = ACTIONS(8446), - [anon_sym_PERCENT] = ACTIONS(8446), - [anon_sym_PIPE_PIPE] = ACTIONS(8448), - [anon_sym_AMP_AMP] = ACTIONS(8448), - [anon_sym_PIPE] = ACTIONS(8446), - [anon_sym_CARET] = ACTIONS(8446), - [anon_sym_AMP] = ACTIONS(8446), - [anon_sym_EQ_EQ] = ACTIONS(8448), - [anon_sym_BANG_EQ] = ACTIONS(8448), - [anon_sym_GT] = ACTIONS(8446), - [anon_sym_GT_EQ] = ACTIONS(8448), - [anon_sym_LT_EQ] = ACTIONS(8446), - [anon_sym_LT] = ACTIONS(8446), - [anon_sym_LT_LT] = ACTIONS(8446), - [anon_sym_GT_GT] = ACTIONS(8446), - [anon_sym_SEMI] = ACTIONS(8448), - [anon_sym_COLON] = ACTIONS(8446), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8448), - [anon_sym_RBRACE] = ACTIONS(8448), - [anon_sym_LBRACK] = ACTIONS(8448), - [anon_sym_EQ] = ACTIONS(8446), - [anon_sym_QMARK] = ACTIONS(8448), - [anon_sym_STAR_EQ] = ACTIONS(8448), - [anon_sym_SLASH_EQ] = ACTIONS(8448), - [anon_sym_PERCENT_EQ] = ACTIONS(8448), - [anon_sym_PLUS_EQ] = ACTIONS(8448), - [anon_sym_DASH_EQ] = ACTIONS(8448), - [anon_sym_LT_LT_EQ] = ACTIONS(8448), - [anon_sym_GT_GT_EQ] = ACTIONS(8448), - [anon_sym_AMP_EQ] = ACTIONS(8448), - [anon_sym_CARET_EQ] = ACTIONS(8448), - [anon_sym_PIPE_EQ] = ACTIONS(8448), - [anon_sym_and_eq] = ACTIONS(8446), - [anon_sym_or_eq] = ACTIONS(8446), - [anon_sym_xor_eq] = ACTIONS(8446), - [anon_sym_LT_EQ_GT] = ACTIONS(8448), - [anon_sym_or] = ACTIONS(8446), - [anon_sym_and] = ACTIONS(8446), - [anon_sym_bitor] = ACTIONS(8446), - [anon_sym_xor] = ACTIONS(8446), - [anon_sym_bitand] = ACTIONS(8446), - [anon_sym_not_eq] = ACTIONS(8446), - [anon_sym_DASH_DASH] = ACTIONS(8448), - [anon_sym_PLUS_PLUS] = ACTIONS(8448), - [anon_sym_DOT] = ACTIONS(8446), - [anon_sym_DOT_STAR] = ACTIONS(8448), - [anon_sym_DASH_GT] = ACTIONS(8448), - [anon_sym_L_DQUOTE] = ACTIONS(8448), - [anon_sym_u_DQUOTE] = ACTIONS(8448), - [anon_sym_U_DQUOTE] = ACTIONS(8448), - [anon_sym_u8_DQUOTE] = ACTIONS(8448), - [anon_sym_DQUOTE] = ACTIONS(8448), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8448), - [anon_sym_LR_DQUOTE] = ACTIONS(8448), - [anon_sym_uR_DQUOTE] = ACTIONS(8448), - [anon_sym_UR_DQUOTE] = ACTIONS(8448), - [anon_sym_u8R_DQUOTE] = ACTIONS(8448), - [anon_sym_COLON_RBRACK] = ACTIONS(8448), - [sym_literal_suffix] = ACTIONS(8446), + [STATE(2602)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7134), + [anon_sym_COMMA] = ACTIONS(7134), + [anon_sym_RPAREN] = ACTIONS(7134), + [anon_sym_LPAREN2] = ACTIONS(7134), + [anon_sym_DASH] = ACTIONS(7132), + [anon_sym_PLUS] = ACTIONS(7132), + [anon_sym_STAR] = ACTIONS(7132), + [anon_sym_SLASH] = ACTIONS(7132), + [anon_sym_PERCENT] = ACTIONS(7132), + [anon_sym_PIPE_PIPE] = ACTIONS(7134), + [anon_sym_AMP_AMP] = ACTIONS(7134), + [anon_sym_PIPE] = ACTIONS(7132), + [anon_sym_CARET] = ACTIONS(7132), + [anon_sym_AMP] = ACTIONS(7132), + [anon_sym_EQ_EQ] = ACTIONS(7134), + [anon_sym_BANG_EQ] = ACTIONS(7134), + [anon_sym_GT] = ACTIONS(7132), + [anon_sym_GT_EQ] = ACTIONS(7134), + [anon_sym_LT_EQ] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(7132), + [anon_sym_LT_LT] = ACTIONS(7132), + [anon_sym_GT_GT] = ACTIONS(7132), + [anon_sym___extension__] = ACTIONS(7134), + [anon_sym___attribute__] = ACTIONS(7134), + [anon_sym___attribute] = ACTIONS(7132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7134), + [anon_sym_LBRACK] = ACTIONS(7132), + [anon_sym_EQ] = ACTIONS(7132), + [anon_sym_const] = ACTIONS(7132), + [anon_sym_constexpr] = ACTIONS(7134), + [anon_sym_volatile] = ACTIONS(7134), + [anon_sym_restrict] = ACTIONS(7134), + [anon_sym___restrict__] = ACTIONS(7134), + [anon_sym__Atomic] = ACTIONS(7134), + [anon_sym__Noreturn] = ACTIONS(7134), + [anon_sym_noreturn] = ACTIONS(7134), + [anon_sym__Nonnull] = ACTIONS(7134), + [anon_sym_mutable] = ACTIONS(7134), + [anon_sym_constinit] = ACTIONS(7134), + [anon_sym_consteval] = ACTIONS(7134), + [anon_sym_alignas] = ACTIONS(7134), + [anon_sym__Alignas] = ACTIONS(7134), + [anon_sym_QMARK] = ACTIONS(7134), + [anon_sym_STAR_EQ] = ACTIONS(7134), + [anon_sym_SLASH_EQ] = ACTIONS(7134), + [anon_sym_PERCENT_EQ] = ACTIONS(7134), + [anon_sym_PLUS_EQ] = ACTIONS(7134), + [anon_sym_DASH_EQ] = ACTIONS(7134), + [anon_sym_LT_LT_EQ] = ACTIONS(7134), + [anon_sym_GT_GT_EQ] = ACTIONS(7134), + [anon_sym_AMP_EQ] = ACTIONS(7134), + [anon_sym_CARET_EQ] = ACTIONS(7134), + [anon_sym_PIPE_EQ] = ACTIONS(7134), + [anon_sym_LT_EQ_GT] = ACTIONS(7134), + [anon_sym_or] = ACTIONS(7134), + [anon_sym_and] = ACTIONS(7134), + [anon_sym_bitor] = ACTIONS(7134), + [anon_sym_xor] = ACTIONS(7134), + [anon_sym_bitand] = ACTIONS(7134), + [anon_sym_not_eq] = ACTIONS(7134), + [anon_sym_DASH_DASH] = ACTIONS(7134), + [anon_sym_PLUS_PLUS] = ACTIONS(7134), + [anon_sym_asm] = ACTIONS(7134), + [anon_sym___asm__] = ACTIONS(7134), + [anon_sym___asm] = ACTIONS(7132), + [anon_sym_DOT] = ACTIONS(7132), + [anon_sym_DOT_STAR] = ACTIONS(7134), + [anon_sym_DASH_GT] = ACTIONS(7132), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7134), + [anon_sym_override] = ACTIONS(7134), + [anon_sym_noexcept] = ACTIONS(7134), + [anon_sym_throw] = ACTIONS(7134), + [anon_sym_requires] = ACTIONS(7134), + [anon_sym_DASH_GT_STAR] = ACTIONS(7134), }, - [STATE(2781)] = { - [sym_identifier] = ACTIONS(4070), - [aux_sym_preproc_def_token1] = ACTIONS(4070), - [aux_sym_preproc_if_token1] = ACTIONS(4070), - [aux_sym_preproc_if_token2] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), - [aux_sym_preproc_else_token1] = ACTIONS(4070), - [aux_sym_preproc_elif_token1] = ACTIONS(4070), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4070), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4070), - [sym_preproc_directive] = ACTIONS(4070), - [anon_sym_LPAREN2] = ACTIONS(4072), - [anon_sym_TILDE] = ACTIONS(4072), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4070), - [anon_sym_SEMI] = ACTIONS(4072), - [anon_sym___extension__] = ACTIONS(4070), - [anon_sym_typedef] = ACTIONS(4070), - [anon_sym_virtual] = ACTIONS(4070), - [anon_sym_extern] = ACTIONS(4070), - [anon_sym___attribute__] = ACTIONS(4070), - [anon_sym___attribute] = ACTIONS(4070), - [anon_sym_using] = ACTIONS(4070), - [anon_sym_COLON_COLON] = ACTIONS(4072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), - [anon_sym___declspec] = ACTIONS(4070), - [anon_sym___based] = ACTIONS(4070), - [anon_sym_signed] = ACTIONS(4070), - [anon_sym_unsigned] = ACTIONS(4070), - [anon_sym_long] = ACTIONS(4070), - [anon_sym_short] = ACTIONS(4070), - [anon_sym_LBRACK] = ACTIONS(4070), - [anon_sym_static] = ACTIONS(4070), - [anon_sym_register] = ACTIONS(4070), - [anon_sym_inline] = ACTIONS(4070), - [anon_sym___inline] = ACTIONS(4070), - [anon_sym___inline__] = ACTIONS(4070), - [anon_sym___forceinline] = ACTIONS(4070), - [anon_sym_thread_local] = ACTIONS(4070), - [anon_sym___thread] = ACTIONS(4070), - [anon_sym_const] = ACTIONS(4070), - [anon_sym_constexpr] = ACTIONS(4070), - [anon_sym_volatile] = ACTIONS(4070), - [anon_sym_restrict] = ACTIONS(4070), - [anon_sym___restrict__] = ACTIONS(4070), - [anon_sym__Atomic] = ACTIONS(4070), - [anon_sym__Noreturn] = ACTIONS(4070), - [anon_sym_noreturn] = ACTIONS(4070), - [anon_sym__Nonnull] = ACTIONS(4070), - [anon_sym_mutable] = ACTIONS(4070), - [anon_sym_constinit] = ACTIONS(4070), - [anon_sym_consteval] = ACTIONS(4070), - [anon_sym_alignas] = ACTIONS(4070), - [anon_sym__Alignas] = ACTIONS(4070), - [sym_primitive_type] = ACTIONS(4070), - [anon_sym_enum] = ACTIONS(4070), - [anon_sym_class] = ACTIONS(4070), - [anon_sym_struct] = ACTIONS(4070), - [anon_sym_union] = ACTIONS(4070), - [anon_sym_typename] = ACTIONS(4070), + [STATE(2603)] = { + [sym__abstract_declarator] = STATE(5892), + [sym_abstract_parenthesized_declarator] = STATE(5693), + [sym_abstract_pointer_declarator] = STATE(5693), + [sym_abstract_function_declarator] = STATE(5693), + [sym_abstract_array_declarator] = STATE(5693), + [sym_type_qualifier] = STATE(2629), + [sym_alignas_qualifier] = STATE(2576), + [sym_parameter_list] = STATE(1989), + [sym_abstract_reference_declarator] = STATE(5693), + [sym__function_declarator_seq] = STATE(5694), + [aux_sym__type_definition_type_repeat1] = STATE(2629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), + [anon_sym_COMMA] = ACTIONS(7391), + [anon_sym_RPAREN] = ACTIONS(7391), + [anon_sym_LPAREN2] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7393), + [anon_sym_PLUS] = ACTIONS(7393), + [anon_sym_STAR] = ACTIONS(7589), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_PERCENT] = ACTIONS(7393), + [anon_sym_PIPE_PIPE] = ACTIONS(7391), + [anon_sym_AMP_AMP] = ACTIONS(7591), + [anon_sym_PIPE] = ACTIONS(7393), + [anon_sym_CARET] = ACTIONS(7393), + [anon_sym_AMP] = ACTIONS(7593), + [anon_sym_EQ_EQ] = ACTIONS(7391), + [anon_sym_BANG_EQ] = ACTIONS(7391), + [anon_sym_GT] = ACTIONS(7393), + [anon_sym_GT_EQ] = ACTIONS(7391), + [anon_sym_LT_EQ] = ACTIONS(7393), + [anon_sym_LT] = ACTIONS(7393), + [anon_sym_LT_LT] = ACTIONS(7393), + [anon_sym_GT_GT] = ACTIONS(7393), + [anon_sym___extension__] = ACTIONS(7313), + [anon_sym_LBRACK] = ACTIONS(7321), + [anon_sym_EQ] = ACTIONS(7393), + [anon_sym_const] = ACTIONS(7323), + [anon_sym_constexpr] = ACTIONS(7313), + [anon_sym_volatile] = ACTIONS(7313), + [anon_sym_restrict] = ACTIONS(7313), + [anon_sym___restrict__] = ACTIONS(7313), + [anon_sym__Atomic] = ACTIONS(7313), + [anon_sym__Noreturn] = ACTIONS(7313), + [anon_sym_noreturn] = ACTIONS(7313), + [anon_sym__Nonnull] = ACTIONS(7313), + [anon_sym_mutable] = ACTIONS(7313), + [anon_sym_constinit] = ACTIONS(7313), + [anon_sym_consteval] = ACTIONS(7313), + [anon_sym_alignas] = ACTIONS(7325), + [anon_sym__Alignas] = ACTIONS(7325), + [anon_sym_QMARK] = ACTIONS(7391), + [anon_sym_STAR_EQ] = ACTIONS(7391), + [anon_sym_SLASH_EQ] = ACTIONS(7391), + [anon_sym_PERCENT_EQ] = ACTIONS(7391), + [anon_sym_PLUS_EQ] = ACTIONS(7391), + [anon_sym_DASH_EQ] = ACTIONS(7391), + [anon_sym_LT_LT_EQ] = ACTIONS(7391), + [anon_sym_GT_GT_EQ] = ACTIONS(7391), + [anon_sym_AMP_EQ] = ACTIONS(7391), + [anon_sym_CARET_EQ] = ACTIONS(7391), + [anon_sym_PIPE_EQ] = ACTIONS(7391), + [anon_sym_LT_EQ_GT] = ACTIONS(7391), + [anon_sym_or] = ACTIONS(7391), + [anon_sym_and] = ACTIONS(7391), + [anon_sym_bitor] = ACTIONS(7391), + [anon_sym_xor] = ACTIONS(7391), + [anon_sym_bitand] = ACTIONS(7391), + [anon_sym_not_eq] = ACTIONS(7391), + [anon_sym_DASH_DASH] = ACTIONS(7391), + [anon_sym_PLUS_PLUS] = ACTIONS(7391), + [anon_sym_DOT] = ACTIONS(7393), + [anon_sym_DOT_STAR] = ACTIONS(7391), + [anon_sym_DASH_GT] = ACTIONS(7393), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4070), - [anon_sym_decltype] = ACTIONS(4070), - [anon_sym_explicit] = ACTIONS(4070), - [anon_sym_private] = ACTIONS(4070), - [anon_sym_template] = ACTIONS(4070), - [anon_sym_operator] = ACTIONS(4070), - [anon_sym_friend] = ACTIONS(4070), - [anon_sym_public] = ACTIONS(4070), - [anon_sym_protected] = ACTIONS(4070), - [anon_sym_static_assert] = ACTIONS(4070), - [anon_sym_LBRACK_COLON] = ACTIONS(4072), + [anon_sym_DASH_GT_STAR] = ACTIONS(7391), }, - [STATE(2782)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7335), - [anon_sym_COMMA] = ACTIONS(7335), - [anon_sym_RPAREN] = ACTIONS(7335), - [anon_sym_LPAREN2] = ACTIONS(7335), - [anon_sym_DASH] = ACTIONS(7333), - [anon_sym_PLUS] = ACTIONS(7333), - [anon_sym_STAR] = ACTIONS(7333), - [anon_sym_SLASH] = ACTIONS(7333), - [anon_sym_PERCENT] = ACTIONS(7333), - [anon_sym_PIPE_PIPE] = ACTIONS(7335), - [anon_sym_AMP_AMP] = ACTIONS(7335), - [anon_sym_PIPE] = ACTIONS(7333), - [anon_sym_CARET] = ACTIONS(7333), - [anon_sym_AMP] = ACTIONS(7333), - [anon_sym_EQ_EQ] = ACTIONS(7335), - [anon_sym_BANG_EQ] = ACTIONS(7335), - [anon_sym_GT] = ACTIONS(7333), - [anon_sym_GT_EQ] = ACTIONS(7335), - [anon_sym_LT_EQ] = ACTIONS(7333), - [anon_sym_LT] = ACTIONS(7333), - [anon_sym_LT_LT] = ACTIONS(7333), - [anon_sym_GT_GT] = ACTIONS(7333), - [anon_sym___extension__] = ACTIONS(7335), - [anon_sym___attribute__] = ACTIONS(7335), - [anon_sym___attribute] = ACTIONS(7333), - [anon_sym_LBRACE] = ACTIONS(7335), - [anon_sym_LBRACK] = ACTIONS(7335), - [anon_sym_EQ] = ACTIONS(7333), - [anon_sym_const] = ACTIONS(7333), - [anon_sym_constexpr] = ACTIONS(7335), - [anon_sym_volatile] = ACTIONS(7335), - [anon_sym_restrict] = ACTIONS(7335), - [anon_sym___restrict__] = ACTIONS(7335), - [anon_sym__Atomic] = ACTIONS(7335), - [anon_sym__Noreturn] = ACTIONS(7335), - [anon_sym_noreturn] = ACTIONS(7335), - [anon_sym__Nonnull] = ACTIONS(7335), - [anon_sym_mutable] = ACTIONS(7335), - [anon_sym_constinit] = ACTIONS(7335), - [anon_sym_consteval] = ACTIONS(7335), - [anon_sym_alignas] = ACTIONS(7335), - [anon_sym__Alignas] = ACTIONS(7335), - [anon_sym_QMARK] = ACTIONS(7335), - [anon_sym_STAR_EQ] = ACTIONS(7335), - [anon_sym_SLASH_EQ] = ACTIONS(7335), - [anon_sym_PERCENT_EQ] = ACTIONS(7335), - [anon_sym_PLUS_EQ] = ACTIONS(7335), - [anon_sym_DASH_EQ] = ACTIONS(7335), - [anon_sym_LT_LT_EQ] = ACTIONS(7335), - [anon_sym_GT_GT_EQ] = ACTIONS(7335), - [anon_sym_AMP_EQ] = ACTIONS(7335), - [anon_sym_CARET_EQ] = ACTIONS(7335), - [anon_sym_PIPE_EQ] = ACTIONS(7335), - [anon_sym_and_eq] = ACTIONS(7335), - [anon_sym_or_eq] = ACTIONS(7335), - [anon_sym_xor_eq] = ACTIONS(7335), - [anon_sym_LT_EQ_GT] = ACTIONS(7335), - [anon_sym_or] = ACTIONS(7333), - [anon_sym_and] = ACTIONS(7333), - [anon_sym_bitor] = ACTIONS(7335), - [anon_sym_xor] = ACTIONS(7333), - [anon_sym_bitand] = ACTIONS(7335), - [anon_sym_not_eq] = ACTIONS(7335), - [anon_sym_DASH_DASH] = ACTIONS(7335), - [anon_sym_PLUS_PLUS] = ACTIONS(7335), - [anon_sym_DOT] = ACTIONS(7333), - [anon_sym_DOT_STAR] = ACTIONS(7335), - [anon_sym_DASH_GT] = ACTIONS(7333), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7335), - [anon_sym_override] = ACTIONS(7335), - [anon_sym_requires] = ACTIONS(7335), - [anon_sym_DASH_GT_STAR] = ACTIONS(7335), - }, - [STATE(2783)] = { - [sym_identifier] = ACTIONS(4070), - [aux_sym_preproc_def_token1] = ACTIONS(4070), - [aux_sym_preproc_if_token1] = ACTIONS(4070), - [aux_sym_preproc_if_token2] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), - [aux_sym_preproc_else_token1] = ACTIONS(4070), - [aux_sym_preproc_elif_token1] = ACTIONS(4070), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4070), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4070), - [sym_preproc_directive] = ACTIONS(4070), - [anon_sym_LPAREN2] = ACTIONS(4072), - [anon_sym_TILDE] = ACTIONS(4072), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4070), - [anon_sym_SEMI] = ACTIONS(4072), - [anon_sym___extension__] = ACTIONS(4070), - [anon_sym_typedef] = ACTIONS(4070), - [anon_sym_virtual] = ACTIONS(4070), - [anon_sym_extern] = ACTIONS(4070), - [anon_sym___attribute__] = ACTIONS(4070), - [anon_sym___attribute] = ACTIONS(4070), - [anon_sym_using] = ACTIONS(4070), - [anon_sym_COLON_COLON] = ACTIONS(4072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), - [anon_sym___declspec] = ACTIONS(4070), - [anon_sym___based] = ACTIONS(4070), - [anon_sym_signed] = ACTIONS(4070), - [anon_sym_unsigned] = ACTIONS(4070), - [anon_sym_long] = ACTIONS(4070), - [anon_sym_short] = ACTIONS(4070), - [anon_sym_LBRACK] = ACTIONS(4070), - [anon_sym_static] = ACTIONS(4070), - [anon_sym_register] = ACTIONS(4070), - [anon_sym_inline] = ACTIONS(4070), - [anon_sym___inline] = ACTIONS(4070), - [anon_sym___inline__] = ACTIONS(4070), - [anon_sym___forceinline] = ACTIONS(4070), - [anon_sym_thread_local] = ACTIONS(4070), - [anon_sym___thread] = ACTIONS(4070), - [anon_sym_const] = ACTIONS(4070), - [anon_sym_constexpr] = ACTIONS(4070), - [anon_sym_volatile] = ACTIONS(4070), - [anon_sym_restrict] = ACTIONS(4070), - [anon_sym___restrict__] = ACTIONS(4070), - [anon_sym__Atomic] = ACTIONS(4070), - [anon_sym__Noreturn] = ACTIONS(4070), - [anon_sym_noreturn] = ACTIONS(4070), - [anon_sym__Nonnull] = ACTIONS(4070), - [anon_sym_mutable] = ACTIONS(4070), - [anon_sym_constinit] = ACTIONS(4070), - [anon_sym_consteval] = ACTIONS(4070), - [anon_sym_alignas] = ACTIONS(4070), - [anon_sym__Alignas] = ACTIONS(4070), - [sym_primitive_type] = ACTIONS(4070), - [anon_sym_enum] = ACTIONS(4070), - [anon_sym_class] = ACTIONS(4070), - [anon_sym_struct] = ACTIONS(4070), - [anon_sym_union] = ACTIONS(4070), - [anon_sym_typename] = ACTIONS(4070), + [STATE(2604)] = { + [sym__abstract_declarator] = STATE(5922), + [sym_abstract_parenthesized_declarator] = STATE(5693), + [sym_abstract_pointer_declarator] = STATE(5693), + [sym_abstract_function_declarator] = STATE(5693), + [sym_abstract_array_declarator] = STATE(5693), + [sym_type_qualifier] = STATE(2367), + [sym_alignas_qualifier] = STATE(2576), + [sym_parameter_list] = STATE(1989), + [sym_abstract_reference_declarator] = STATE(5693), + [sym__function_declarator_seq] = STATE(5694), + [aux_sym__type_definition_type_repeat1] = STATE(2367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_RPAREN] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(7589), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7347), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(7591), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7347), + [anon_sym_AMP] = ACTIONS(7593), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7347), + [anon_sym_GT_GT] = ACTIONS(7347), + [anon_sym___extension__] = ACTIONS(7313), + [anon_sym_LBRACK] = ACTIONS(7321), + [anon_sym_EQ] = ACTIONS(7347), + [anon_sym_const] = ACTIONS(7323), + [anon_sym_constexpr] = ACTIONS(7313), + [anon_sym_volatile] = ACTIONS(7313), + [anon_sym_restrict] = ACTIONS(7313), + [anon_sym___restrict__] = ACTIONS(7313), + [anon_sym__Atomic] = ACTIONS(7313), + [anon_sym__Noreturn] = ACTIONS(7313), + [anon_sym_noreturn] = ACTIONS(7313), + [anon_sym__Nonnull] = ACTIONS(7313), + [anon_sym_mutable] = ACTIONS(7313), + [anon_sym_constinit] = ACTIONS(7313), + [anon_sym_consteval] = ACTIONS(7313), + [anon_sym_alignas] = ACTIONS(7325), + [anon_sym__Alignas] = ACTIONS(7325), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_STAR_EQ] = ACTIONS(7345), + [anon_sym_SLASH_EQ] = ACTIONS(7345), + [anon_sym_PERCENT_EQ] = ACTIONS(7345), + [anon_sym_PLUS_EQ] = ACTIONS(7345), + [anon_sym_DASH_EQ] = ACTIONS(7345), + [anon_sym_LT_LT_EQ] = ACTIONS(7345), + [anon_sym_GT_GT_EQ] = ACTIONS(7345), + [anon_sym_AMP_EQ] = ACTIONS(7345), + [anon_sym_CARET_EQ] = ACTIONS(7345), + [anon_sym_PIPE_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7345), + [anon_sym_and] = ACTIONS(7345), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7345), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7347), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4070), - [anon_sym_decltype] = ACTIONS(4070), - [anon_sym_explicit] = ACTIONS(4070), - [anon_sym_private] = ACTIONS(4070), - [anon_sym_template] = ACTIONS(4070), - [anon_sym_operator] = ACTIONS(4070), - [anon_sym_friend] = ACTIONS(4070), - [anon_sym_public] = ACTIONS(4070), - [anon_sym_protected] = ACTIONS(4070), - [anon_sym_static_assert] = ACTIONS(4070), - [anon_sym_LBRACK_COLON] = ACTIONS(4072), - }, - [STATE(2784)] = { - [sym_identifier] = ACTIONS(4074), - [aux_sym_preproc_def_token1] = ACTIONS(4074), - [aux_sym_preproc_if_token1] = ACTIONS(4074), - [aux_sym_preproc_if_token2] = ACTIONS(4074), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4074), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4074), - [aux_sym_preproc_else_token1] = ACTIONS(4074), - [aux_sym_preproc_elif_token1] = ACTIONS(4074), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4074), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4074), - [sym_preproc_directive] = ACTIONS(4074), - [anon_sym_LPAREN2] = ACTIONS(4076), - [anon_sym_TILDE] = ACTIONS(4076), - [anon_sym_STAR] = ACTIONS(4076), - [anon_sym_AMP_AMP] = ACTIONS(4076), - [anon_sym_AMP] = ACTIONS(4074), - [anon_sym_SEMI] = ACTIONS(4076), - [anon_sym___extension__] = ACTIONS(4074), - [anon_sym_typedef] = ACTIONS(4074), - [anon_sym_virtual] = ACTIONS(4074), - [anon_sym_extern] = ACTIONS(4074), - [anon_sym___attribute__] = ACTIONS(4074), - [anon_sym___attribute] = ACTIONS(4074), - [anon_sym_using] = ACTIONS(4074), - [anon_sym_COLON_COLON] = ACTIONS(4076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4076), - [anon_sym___declspec] = ACTIONS(4074), - [anon_sym___based] = ACTIONS(4074), - [anon_sym_signed] = ACTIONS(4074), - [anon_sym_unsigned] = ACTIONS(4074), - [anon_sym_long] = ACTIONS(4074), - [anon_sym_short] = ACTIONS(4074), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_static] = ACTIONS(4074), - [anon_sym_register] = ACTIONS(4074), - [anon_sym_inline] = ACTIONS(4074), - [anon_sym___inline] = ACTIONS(4074), - [anon_sym___inline__] = ACTIONS(4074), - [anon_sym___forceinline] = ACTIONS(4074), - [anon_sym_thread_local] = ACTIONS(4074), - [anon_sym___thread] = ACTIONS(4074), - [anon_sym_const] = ACTIONS(4074), - [anon_sym_constexpr] = ACTIONS(4074), - [anon_sym_volatile] = ACTIONS(4074), - [anon_sym_restrict] = ACTIONS(4074), - [anon_sym___restrict__] = ACTIONS(4074), - [anon_sym__Atomic] = ACTIONS(4074), - [anon_sym__Noreturn] = ACTIONS(4074), - [anon_sym_noreturn] = ACTIONS(4074), - [anon_sym__Nonnull] = ACTIONS(4074), - [anon_sym_mutable] = ACTIONS(4074), - [anon_sym_constinit] = ACTIONS(4074), - [anon_sym_consteval] = ACTIONS(4074), - [anon_sym_alignas] = ACTIONS(4074), - [anon_sym__Alignas] = ACTIONS(4074), - [sym_primitive_type] = ACTIONS(4074), - [anon_sym_enum] = ACTIONS(4074), - [anon_sym_class] = ACTIONS(4074), - [anon_sym_struct] = ACTIONS(4074), - [anon_sym_union] = ACTIONS(4074), - [anon_sym_typename] = ACTIONS(4074), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4074), - [anon_sym_decltype] = ACTIONS(4074), - [anon_sym_explicit] = ACTIONS(4074), - [anon_sym_private] = ACTIONS(4074), - [anon_sym_template] = ACTIONS(4074), - [anon_sym_operator] = ACTIONS(4074), - [anon_sym_friend] = ACTIONS(4074), - [anon_sym_public] = ACTIONS(4074), - [anon_sym_protected] = ACTIONS(4074), - [anon_sym_static_assert] = ACTIONS(4074), - [anon_sym_LBRACK_COLON] = ACTIONS(4076), - }, - [STATE(2785)] = { - [sym_identifier] = ACTIONS(4078), - [aux_sym_preproc_def_token1] = ACTIONS(4078), - [aux_sym_preproc_if_token1] = ACTIONS(4078), - [aux_sym_preproc_if_token2] = ACTIONS(4078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4078), - [aux_sym_preproc_else_token1] = ACTIONS(4078), - [aux_sym_preproc_elif_token1] = ACTIONS(4078), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4078), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4078), - [sym_preproc_directive] = ACTIONS(4078), - [anon_sym_LPAREN2] = ACTIONS(4080), - [anon_sym_TILDE] = ACTIONS(4080), - [anon_sym_STAR] = ACTIONS(4080), - [anon_sym_AMP_AMP] = ACTIONS(4080), - [anon_sym_AMP] = ACTIONS(4078), - [anon_sym_SEMI] = ACTIONS(4080), - [anon_sym___extension__] = ACTIONS(4078), - [anon_sym_typedef] = ACTIONS(4078), - [anon_sym_virtual] = ACTIONS(4078), - [anon_sym_extern] = ACTIONS(4078), - [anon_sym___attribute__] = ACTIONS(4078), - [anon_sym___attribute] = ACTIONS(4078), - [anon_sym_using] = ACTIONS(4078), - [anon_sym_COLON_COLON] = ACTIONS(4080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4080), - [anon_sym___declspec] = ACTIONS(4078), - [anon_sym___based] = ACTIONS(4078), - [anon_sym_signed] = ACTIONS(4078), - [anon_sym_unsigned] = ACTIONS(4078), - [anon_sym_long] = ACTIONS(4078), - [anon_sym_short] = ACTIONS(4078), - [anon_sym_LBRACK] = ACTIONS(4078), - [anon_sym_static] = ACTIONS(4078), - [anon_sym_register] = ACTIONS(4078), - [anon_sym_inline] = ACTIONS(4078), - [anon_sym___inline] = ACTIONS(4078), - [anon_sym___inline__] = ACTIONS(4078), - [anon_sym___forceinline] = ACTIONS(4078), - [anon_sym_thread_local] = ACTIONS(4078), - [anon_sym___thread] = ACTIONS(4078), - [anon_sym_const] = ACTIONS(4078), - [anon_sym_constexpr] = ACTIONS(4078), - [anon_sym_volatile] = ACTIONS(4078), - [anon_sym_restrict] = ACTIONS(4078), - [anon_sym___restrict__] = ACTIONS(4078), - [anon_sym__Atomic] = ACTIONS(4078), - [anon_sym__Noreturn] = ACTIONS(4078), - [anon_sym_noreturn] = ACTIONS(4078), - [anon_sym__Nonnull] = ACTIONS(4078), - [anon_sym_mutable] = ACTIONS(4078), - [anon_sym_constinit] = ACTIONS(4078), - [anon_sym_consteval] = ACTIONS(4078), - [anon_sym_alignas] = ACTIONS(4078), - [anon_sym__Alignas] = ACTIONS(4078), - [sym_primitive_type] = ACTIONS(4078), - [anon_sym_enum] = ACTIONS(4078), - [anon_sym_class] = ACTIONS(4078), - [anon_sym_struct] = ACTIONS(4078), - [anon_sym_union] = ACTIONS(4078), - [anon_sym_typename] = ACTIONS(4078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4078), - [anon_sym_decltype] = ACTIONS(4078), - [anon_sym_explicit] = ACTIONS(4078), - [anon_sym_private] = ACTIONS(4078), - [anon_sym_template] = ACTIONS(4078), - [anon_sym_operator] = ACTIONS(4078), - [anon_sym_friend] = ACTIONS(4078), - [anon_sym_public] = ACTIONS(4078), - [anon_sym_protected] = ACTIONS(4078), - [anon_sym_static_assert] = ACTIONS(4078), - [anon_sym_LBRACK_COLON] = ACTIONS(4080), - }, - [STATE(2786)] = { - [sym_identifier] = ACTIONS(8450), - [aux_sym_preproc_def_token1] = ACTIONS(8450), - [aux_sym_preproc_if_token1] = ACTIONS(8450), - [aux_sym_preproc_if_token2] = ACTIONS(8450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8450), - [aux_sym_preproc_else_token1] = ACTIONS(8450), - [aux_sym_preproc_elif_token1] = ACTIONS(8450), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8450), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8450), - [sym_preproc_directive] = ACTIONS(8450), - [anon_sym_LPAREN2] = ACTIONS(8452), - [anon_sym_TILDE] = ACTIONS(8452), - [anon_sym_STAR] = ACTIONS(8452), - [anon_sym_AMP_AMP] = ACTIONS(8452), - [anon_sym_AMP] = ACTIONS(8450), - [anon_sym_SEMI] = ACTIONS(8452), - [anon_sym___extension__] = ACTIONS(8450), - [anon_sym_typedef] = ACTIONS(8450), - [anon_sym_virtual] = ACTIONS(8450), - [anon_sym_extern] = ACTIONS(8450), - [anon_sym___attribute__] = ACTIONS(8450), - [anon_sym___attribute] = ACTIONS(8450), - [anon_sym_using] = ACTIONS(8450), - [anon_sym_COLON_COLON] = ACTIONS(8452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8452), - [anon_sym___declspec] = ACTIONS(8450), - [anon_sym___based] = ACTIONS(8450), - [anon_sym_signed] = ACTIONS(8450), - [anon_sym_unsigned] = ACTIONS(8450), - [anon_sym_long] = ACTIONS(8450), - [anon_sym_short] = ACTIONS(8450), - [anon_sym_LBRACK] = ACTIONS(8450), - [anon_sym_static] = ACTIONS(8450), - [anon_sym_register] = ACTIONS(8450), - [anon_sym_inline] = ACTIONS(8450), - [anon_sym___inline] = ACTIONS(8450), - [anon_sym___inline__] = ACTIONS(8450), - [anon_sym___forceinline] = ACTIONS(8450), - [anon_sym_thread_local] = ACTIONS(8450), - [anon_sym___thread] = ACTIONS(8450), - [anon_sym_const] = ACTIONS(8450), - [anon_sym_constexpr] = ACTIONS(8450), - [anon_sym_volatile] = ACTIONS(8450), - [anon_sym_restrict] = ACTIONS(8450), - [anon_sym___restrict__] = ACTIONS(8450), - [anon_sym__Atomic] = ACTIONS(8450), - [anon_sym__Noreturn] = ACTIONS(8450), - [anon_sym_noreturn] = ACTIONS(8450), - [anon_sym__Nonnull] = ACTIONS(8450), - [anon_sym_mutable] = ACTIONS(8450), - [anon_sym_constinit] = ACTIONS(8450), - [anon_sym_consteval] = ACTIONS(8450), - [anon_sym_alignas] = ACTIONS(8450), - [anon_sym__Alignas] = ACTIONS(8450), - [sym_primitive_type] = ACTIONS(8450), - [anon_sym_enum] = ACTIONS(8450), - [anon_sym_class] = ACTIONS(8450), - [anon_sym_struct] = ACTIONS(8450), - [anon_sym_union] = ACTIONS(8450), - [anon_sym_typename] = ACTIONS(8450), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8450), - [anon_sym_decltype] = ACTIONS(8450), - [anon_sym_explicit] = ACTIONS(8450), - [anon_sym_private] = ACTIONS(8450), - [anon_sym_template] = ACTIONS(8450), - [anon_sym_operator] = ACTIONS(8450), - [anon_sym_friend] = ACTIONS(8450), - [anon_sym_public] = ACTIONS(8450), - [anon_sym_protected] = ACTIONS(8450), - [anon_sym_static_assert] = ACTIONS(8450), - [anon_sym_LBRACK_COLON] = ACTIONS(8452), - }, - [STATE(2787)] = { - [sym_identifier] = ACTIONS(4090), - [aux_sym_preproc_def_token1] = ACTIONS(4090), - [aux_sym_preproc_if_token1] = ACTIONS(4090), - [aux_sym_preproc_if_token2] = ACTIONS(4090), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4090), - [aux_sym_preproc_else_token1] = ACTIONS(4090), - [aux_sym_preproc_elif_token1] = ACTIONS(4090), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4090), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4090), - [sym_preproc_directive] = ACTIONS(4090), - [anon_sym_LPAREN2] = ACTIONS(4092), - [anon_sym_TILDE] = ACTIONS(4092), - [anon_sym_STAR] = ACTIONS(4092), - [anon_sym_AMP_AMP] = ACTIONS(4092), - [anon_sym_AMP] = ACTIONS(4090), - [anon_sym_SEMI] = ACTIONS(4092), - [anon_sym___extension__] = ACTIONS(4090), - [anon_sym_typedef] = ACTIONS(4090), - [anon_sym_virtual] = ACTIONS(4090), - [anon_sym_extern] = ACTIONS(4090), - [anon_sym___attribute__] = ACTIONS(4090), - [anon_sym___attribute] = ACTIONS(4090), - [anon_sym_using] = ACTIONS(4090), - [anon_sym_COLON_COLON] = ACTIONS(4092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4092), - [anon_sym___declspec] = ACTIONS(4090), - [anon_sym___based] = ACTIONS(4090), - [anon_sym_signed] = ACTIONS(4090), - [anon_sym_unsigned] = ACTIONS(4090), - [anon_sym_long] = ACTIONS(4090), - [anon_sym_short] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_static] = ACTIONS(4090), - [anon_sym_register] = ACTIONS(4090), - [anon_sym_inline] = ACTIONS(4090), - [anon_sym___inline] = ACTIONS(4090), - [anon_sym___inline__] = ACTIONS(4090), - [anon_sym___forceinline] = ACTIONS(4090), - [anon_sym_thread_local] = ACTIONS(4090), - [anon_sym___thread] = ACTIONS(4090), - [anon_sym_const] = ACTIONS(4090), - [anon_sym_constexpr] = ACTIONS(4090), - [anon_sym_volatile] = ACTIONS(4090), - [anon_sym_restrict] = ACTIONS(4090), - [anon_sym___restrict__] = ACTIONS(4090), - [anon_sym__Atomic] = ACTIONS(4090), - [anon_sym__Noreturn] = ACTIONS(4090), - [anon_sym_noreturn] = ACTIONS(4090), - [anon_sym__Nonnull] = ACTIONS(4090), - [anon_sym_mutable] = ACTIONS(4090), - [anon_sym_constinit] = ACTIONS(4090), - [anon_sym_consteval] = ACTIONS(4090), - [anon_sym_alignas] = ACTIONS(4090), - [anon_sym__Alignas] = ACTIONS(4090), - [sym_primitive_type] = ACTIONS(4090), - [anon_sym_enum] = ACTIONS(4090), - [anon_sym_class] = ACTIONS(4090), - [anon_sym_struct] = ACTIONS(4090), - [anon_sym_union] = ACTIONS(4090), - [anon_sym_typename] = ACTIONS(4090), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4090), - [anon_sym_decltype] = ACTIONS(4090), - [anon_sym_explicit] = ACTIONS(4090), - [anon_sym_private] = ACTIONS(4090), - [anon_sym_template] = ACTIONS(4090), - [anon_sym_operator] = ACTIONS(4090), - [anon_sym_friend] = ACTIONS(4090), - [anon_sym_public] = ACTIONS(4090), - [anon_sym_protected] = ACTIONS(4090), - [anon_sym_static_assert] = ACTIONS(4090), - [anon_sym_LBRACK_COLON] = ACTIONS(4092), - }, - [STATE(2788)] = { - [sym_identifier] = ACTIONS(8454), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8456), - [anon_sym_COMMA] = ACTIONS(8456), - [anon_sym_RPAREN] = ACTIONS(8456), - [aux_sym_preproc_if_token2] = ACTIONS(8456), - [aux_sym_preproc_else_token1] = ACTIONS(8456), - [aux_sym_preproc_elif_token1] = ACTIONS(8454), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8456), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8456), - [anon_sym_LPAREN2] = ACTIONS(8456), - [anon_sym_DASH] = ACTIONS(8454), - [anon_sym_PLUS] = ACTIONS(8454), - [anon_sym_STAR] = ACTIONS(8454), - [anon_sym_SLASH] = ACTIONS(8454), - [anon_sym_PERCENT] = ACTIONS(8454), - [anon_sym_PIPE_PIPE] = ACTIONS(8456), - [anon_sym_AMP_AMP] = ACTIONS(8456), - [anon_sym_PIPE] = ACTIONS(8454), - [anon_sym_CARET] = ACTIONS(8454), - [anon_sym_AMP] = ACTIONS(8454), - [anon_sym_EQ_EQ] = ACTIONS(8456), - [anon_sym_BANG_EQ] = ACTIONS(8456), - [anon_sym_GT] = ACTIONS(8454), - [anon_sym_GT_EQ] = ACTIONS(8456), - [anon_sym_LT_EQ] = ACTIONS(8454), - [anon_sym_LT] = ACTIONS(8454), - [anon_sym_LT_LT] = ACTIONS(8454), - [anon_sym_GT_GT] = ACTIONS(8454), - [anon_sym_SEMI] = ACTIONS(8456), - [anon_sym_COLON] = ACTIONS(8454), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8456), - [anon_sym_RBRACE] = ACTIONS(8456), - [anon_sym_LBRACK] = ACTIONS(8456), - [anon_sym_EQ] = ACTIONS(8454), - [anon_sym_QMARK] = ACTIONS(8456), - [anon_sym_STAR_EQ] = ACTIONS(8456), - [anon_sym_SLASH_EQ] = ACTIONS(8456), - [anon_sym_PERCENT_EQ] = ACTIONS(8456), - [anon_sym_PLUS_EQ] = ACTIONS(8456), - [anon_sym_DASH_EQ] = ACTIONS(8456), - [anon_sym_LT_LT_EQ] = ACTIONS(8456), - [anon_sym_GT_GT_EQ] = ACTIONS(8456), - [anon_sym_AMP_EQ] = ACTIONS(8456), - [anon_sym_CARET_EQ] = ACTIONS(8456), - [anon_sym_PIPE_EQ] = ACTIONS(8456), - [anon_sym_and_eq] = ACTIONS(8454), - [anon_sym_or_eq] = ACTIONS(8454), - [anon_sym_xor_eq] = ACTIONS(8454), - [anon_sym_LT_EQ_GT] = ACTIONS(8456), - [anon_sym_or] = ACTIONS(8454), - [anon_sym_and] = ACTIONS(8454), - [anon_sym_bitor] = ACTIONS(8454), - [anon_sym_xor] = ACTIONS(8454), - [anon_sym_bitand] = ACTIONS(8454), - [anon_sym_not_eq] = ACTIONS(8454), - [anon_sym_DASH_DASH] = ACTIONS(8456), - [anon_sym_PLUS_PLUS] = ACTIONS(8456), - [anon_sym_DOT] = ACTIONS(8454), - [anon_sym_DOT_STAR] = ACTIONS(8456), - [anon_sym_DASH_GT] = ACTIONS(8456), - [anon_sym_L_DQUOTE] = ACTIONS(8456), - [anon_sym_u_DQUOTE] = ACTIONS(8456), - [anon_sym_U_DQUOTE] = ACTIONS(8456), - [anon_sym_u8_DQUOTE] = ACTIONS(8456), - [anon_sym_DQUOTE] = ACTIONS(8456), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8456), - [anon_sym_LR_DQUOTE] = ACTIONS(8456), - [anon_sym_uR_DQUOTE] = ACTIONS(8456), - [anon_sym_UR_DQUOTE] = ACTIONS(8456), - [anon_sym_u8R_DQUOTE] = ACTIONS(8456), - [anon_sym_COLON_RBRACK] = ACTIONS(8456), - [sym_literal_suffix] = ACTIONS(8454), - }, - [STATE(2789)] = { - [sym_identifier] = ACTIONS(8450), - [aux_sym_preproc_def_token1] = ACTIONS(8450), - [aux_sym_preproc_if_token1] = ACTIONS(8450), - [aux_sym_preproc_if_token2] = ACTIONS(8450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8450), - [aux_sym_preproc_else_token1] = ACTIONS(8450), - [aux_sym_preproc_elif_token1] = ACTIONS(8450), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8450), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8450), - [sym_preproc_directive] = ACTIONS(8450), - [anon_sym_LPAREN2] = ACTIONS(8452), - [anon_sym_TILDE] = ACTIONS(8452), - [anon_sym_STAR] = ACTIONS(8452), - [anon_sym_AMP_AMP] = ACTIONS(8452), - [anon_sym_AMP] = ACTIONS(8450), - [anon_sym_SEMI] = ACTIONS(8452), - [anon_sym___extension__] = ACTIONS(8450), - [anon_sym_typedef] = ACTIONS(8450), - [anon_sym_virtual] = ACTIONS(8450), - [anon_sym_extern] = ACTIONS(8450), - [anon_sym___attribute__] = ACTIONS(8450), - [anon_sym___attribute] = ACTIONS(8450), - [anon_sym_using] = ACTIONS(8450), - [anon_sym_COLON_COLON] = ACTIONS(8452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8452), - [anon_sym___declspec] = ACTIONS(8450), - [anon_sym___based] = ACTIONS(8450), - [anon_sym_signed] = ACTIONS(8450), - [anon_sym_unsigned] = ACTIONS(8450), - [anon_sym_long] = ACTIONS(8450), - [anon_sym_short] = ACTIONS(8450), - [anon_sym_LBRACK] = ACTIONS(8450), - [anon_sym_static] = ACTIONS(8450), - [anon_sym_register] = ACTIONS(8450), - [anon_sym_inline] = ACTIONS(8450), - [anon_sym___inline] = ACTIONS(8450), - [anon_sym___inline__] = ACTIONS(8450), - [anon_sym___forceinline] = ACTIONS(8450), - [anon_sym_thread_local] = ACTIONS(8450), - [anon_sym___thread] = ACTIONS(8450), - [anon_sym_const] = ACTIONS(8450), - [anon_sym_constexpr] = ACTIONS(8450), - [anon_sym_volatile] = ACTIONS(8450), - [anon_sym_restrict] = ACTIONS(8450), - [anon_sym___restrict__] = ACTIONS(8450), - [anon_sym__Atomic] = ACTIONS(8450), - [anon_sym__Noreturn] = ACTIONS(8450), - [anon_sym_noreturn] = ACTIONS(8450), - [anon_sym__Nonnull] = ACTIONS(8450), - [anon_sym_mutable] = ACTIONS(8450), - [anon_sym_constinit] = ACTIONS(8450), - [anon_sym_consteval] = ACTIONS(8450), - [anon_sym_alignas] = ACTIONS(8450), - [anon_sym__Alignas] = ACTIONS(8450), - [sym_primitive_type] = ACTIONS(8450), - [anon_sym_enum] = ACTIONS(8450), - [anon_sym_class] = ACTIONS(8450), - [anon_sym_struct] = ACTIONS(8450), - [anon_sym_union] = ACTIONS(8450), - [anon_sym_typename] = ACTIONS(8450), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8450), - [anon_sym_decltype] = ACTIONS(8450), - [anon_sym_explicit] = ACTIONS(8450), - [anon_sym_private] = ACTIONS(8450), - [anon_sym_template] = ACTIONS(8450), - [anon_sym_operator] = ACTIONS(8450), - [anon_sym_friend] = ACTIONS(8450), - [anon_sym_public] = ACTIONS(8450), - [anon_sym_protected] = ACTIONS(8450), - [anon_sym_static_assert] = ACTIONS(8450), - [anon_sym_LBRACK_COLON] = ACTIONS(8452), - }, - [STATE(2790)] = { - [sym_identifier] = ACTIONS(8458), - [aux_sym_preproc_def_token1] = ACTIONS(8458), - [aux_sym_preproc_if_token1] = ACTIONS(8458), - [aux_sym_preproc_if_token2] = ACTIONS(8458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8458), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8458), - [aux_sym_preproc_else_token1] = ACTIONS(8458), - [aux_sym_preproc_elif_token1] = ACTIONS(8458), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8458), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8458), - [sym_preproc_directive] = ACTIONS(8458), - [anon_sym_LPAREN2] = ACTIONS(8460), - [anon_sym_TILDE] = ACTIONS(8460), - [anon_sym_STAR] = ACTIONS(8460), - [anon_sym_AMP_AMP] = ACTIONS(8460), - [anon_sym_AMP] = ACTIONS(8458), - [anon_sym_SEMI] = ACTIONS(8460), - [anon_sym___extension__] = ACTIONS(8458), - [anon_sym_typedef] = ACTIONS(8458), - [anon_sym_virtual] = ACTIONS(8458), - [anon_sym_extern] = ACTIONS(8458), - [anon_sym___attribute__] = ACTIONS(8458), - [anon_sym___attribute] = ACTIONS(8458), - [anon_sym_using] = ACTIONS(8458), - [anon_sym_COLON_COLON] = ACTIONS(8460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8460), - [anon_sym___declspec] = ACTIONS(8458), - [anon_sym___based] = ACTIONS(8458), - [anon_sym_signed] = ACTIONS(8458), - [anon_sym_unsigned] = ACTIONS(8458), - [anon_sym_long] = ACTIONS(8458), - [anon_sym_short] = ACTIONS(8458), - [anon_sym_LBRACK] = ACTIONS(8458), - [anon_sym_static] = ACTIONS(8458), - [anon_sym_register] = ACTIONS(8458), - [anon_sym_inline] = ACTIONS(8458), - [anon_sym___inline] = ACTIONS(8458), - [anon_sym___inline__] = ACTIONS(8458), - [anon_sym___forceinline] = ACTIONS(8458), - [anon_sym_thread_local] = ACTIONS(8458), - [anon_sym___thread] = ACTIONS(8458), - [anon_sym_const] = ACTIONS(8458), - [anon_sym_constexpr] = ACTIONS(8458), - [anon_sym_volatile] = ACTIONS(8458), - [anon_sym_restrict] = ACTIONS(8458), - [anon_sym___restrict__] = ACTIONS(8458), - [anon_sym__Atomic] = ACTIONS(8458), - [anon_sym__Noreturn] = ACTIONS(8458), - [anon_sym_noreturn] = ACTIONS(8458), - [anon_sym__Nonnull] = ACTIONS(8458), - [anon_sym_mutable] = ACTIONS(8458), - [anon_sym_constinit] = ACTIONS(8458), - [anon_sym_consteval] = ACTIONS(8458), - [anon_sym_alignas] = ACTIONS(8458), - [anon_sym__Alignas] = ACTIONS(8458), - [sym_primitive_type] = ACTIONS(8458), - [anon_sym_enum] = ACTIONS(8458), - [anon_sym_class] = ACTIONS(8458), - [anon_sym_struct] = ACTIONS(8458), - [anon_sym_union] = ACTIONS(8458), - [anon_sym_typename] = ACTIONS(8458), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8458), - [anon_sym_decltype] = ACTIONS(8458), - [anon_sym_explicit] = ACTIONS(8458), - [anon_sym_private] = ACTIONS(8458), - [anon_sym_template] = ACTIONS(8458), - [anon_sym_operator] = ACTIONS(8458), - [anon_sym_friend] = ACTIONS(8458), - [anon_sym_public] = ACTIONS(8458), - [anon_sym_protected] = ACTIONS(8458), - [anon_sym_static_assert] = ACTIONS(8458), - [anon_sym_LBRACK_COLON] = ACTIONS(8460), - }, - [STATE(2791)] = { - [sym_identifier] = ACTIONS(8462), - [aux_sym_preproc_def_token1] = ACTIONS(8462), - [aux_sym_preproc_if_token1] = ACTIONS(8462), - [aux_sym_preproc_if_token2] = ACTIONS(8462), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8462), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8462), - [aux_sym_preproc_else_token1] = ACTIONS(8462), - [aux_sym_preproc_elif_token1] = ACTIONS(8462), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8462), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8462), - [sym_preproc_directive] = ACTIONS(8462), - [anon_sym_LPAREN2] = ACTIONS(8464), - [anon_sym_TILDE] = ACTIONS(8464), - [anon_sym_STAR] = ACTIONS(8464), - [anon_sym_AMP_AMP] = ACTIONS(8464), - [anon_sym_AMP] = ACTIONS(8462), - [anon_sym_SEMI] = ACTIONS(8464), - [anon_sym___extension__] = ACTIONS(8462), - [anon_sym_typedef] = ACTIONS(8462), - [anon_sym_virtual] = ACTIONS(8462), - [anon_sym_extern] = ACTIONS(8462), - [anon_sym___attribute__] = ACTIONS(8462), - [anon_sym___attribute] = ACTIONS(8462), - [anon_sym_using] = ACTIONS(8462), - [anon_sym_COLON_COLON] = ACTIONS(8464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8464), - [anon_sym___declspec] = ACTIONS(8462), - [anon_sym___based] = ACTIONS(8462), - [anon_sym_signed] = ACTIONS(8462), - [anon_sym_unsigned] = ACTIONS(8462), - [anon_sym_long] = ACTIONS(8462), - [anon_sym_short] = ACTIONS(8462), - [anon_sym_LBRACK] = ACTIONS(8462), - [anon_sym_static] = ACTIONS(8462), - [anon_sym_register] = ACTIONS(8462), - [anon_sym_inline] = ACTIONS(8462), - [anon_sym___inline] = ACTIONS(8462), - [anon_sym___inline__] = ACTIONS(8462), - [anon_sym___forceinline] = ACTIONS(8462), - [anon_sym_thread_local] = ACTIONS(8462), - [anon_sym___thread] = ACTIONS(8462), - [anon_sym_const] = ACTIONS(8462), - [anon_sym_constexpr] = ACTIONS(8462), - [anon_sym_volatile] = ACTIONS(8462), - [anon_sym_restrict] = ACTIONS(8462), - [anon_sym___restrict__] = ACTIONS(8462), - [anon_sym__Atomic] = ACTIONS(8462), - [anon_sym__Noreturn] = ACTIONS(8462), - [anon_sym_noreturn] = ACTIONS(8462), - [anon_sym__Nonnull] = ACTIONS(8462), - [anon_sym_mutable] = ACTIONS(8462), - [anon_sym_constinit] = ACTIONS(8462), - [anon_sym_consteval] = ACTIONS(8462), - [anon_sym_alignas] = ACTIONS(8462), - [anon_sym__Alignas] = ACTIONS(8462), - [sym_primitive_type] = ACTIONS(8462), - [anon_sym_enum] = ACTIONS(8462), - [anon_sym_class] = ACTIONS(8462), - [anon_sym_struct] = ACTIONS(8462), - [anon_sym_union] = ACTIONS(8462), - [anon_sym_typename] = ACTIONS(8462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8462), - [anon_sym_decltype] = ACTIONS(8462), - [anon_sym_explicit] = ACTIONS(8462), - [anon_sym_private] = ACTIONS(8462), - [anon_sym_template] = ACTIONS(8462), - [anon_sym_operator] = ACTIONS(8462), - [anon_sym_friend] = ACTIONS(8462), - [anon_sym_public] = ACTIONS(8462), - [anon_sym_protected] = ACTIONS(8462), - [anon_sym_static_assert] = ACTIONS(8462), - [anon_sym_LBRACK_COLON] = ACTIONS(8464), - }, - [STATE(2792)] = { - [sym_identifier] = ACTIONS(6900), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6902), - [anon_sym_COMMA] = ACTIONS(6902), - [anon_sym_RPAREN] = ACTIONS(6902), - [aux_sym_preproc_if_token2] = ACTIONS(6902), - [aux_sym_preproc_else_token1] = ACTIONS(6902), - [aux_sym_preproc_elif_token1] = ACTIONS(6900), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6902), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6902), - [anon_sym_LPAREN2] = ACTIONS(6902), - [anon_sym_DASH] = ACTIONS(6900), - [anon_sym_PLUS] = ACTIONS(6900), - [anon_sym_STAR] = ACTIONS(6902), - [anon_sym_SLASH] = ACTIONS(6900), - [anon_sym_PERCENT] = ACTIONS(6902), - [anon_sym_PIPE_PIPE] = ACTIONS(6902), - [anon_sym_AMP_AMP] = ACTIONS(6902), - [anon_sym_PIPE] = ACTIONS(6900), - [anon_sym_CARET] = ACTIONS(6902), - [anon_sym_AMP] = ACTIONS(6900), - [anon_sym_EQ_EQ] = ACTIONS(6902), - [anon_sym_BANG_EQ] = ACTIONS(6902), - [anon_sym_GT] = ACTIONS(6900), - [anon_sym_GT_EQ] = ACTIONS(6902), - [anon_sym_LT_EQ] = ACTIONS(6900), - [anon_sym_LT] = ACTIONS(6900), - [anon_sym_LT_LT] = ACTIONS(6902), - [anon_sym_GT_GT] = ACTIONS(6902), - [anon_sym_SEMI] = ACTIONS(6902), - [anon_sym___extension__] = ACTIONS(6900), - [anon_sym___attribute__] = ACTIONS(6900), - [anon_sym___attribute] = ACTIONS(6900), - [anon_sym_COLON] = ACTIONS(6900), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6902), - [sym_ms_restrict_modifier] = ACTIONS(6900), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6900), - [sym_ms_signed_ptr_modifier] = ACTIONS(6900), - [anon_sym__unaligned] = ACTIONS(6900), - [anon_sym___unaligned] = ACTIONS(6900), - [anon_sym_RBRACE] = ACTIONS(6902), - [anon_sym_LBRACK] = ACTIONS(6902), - [anon_sym_const] = ACTIONS(6900), - [anon_sym_constexpr] = ACTIONS(6900), - [anon_sym_volatile] = ACTIONS(6900), - [anon_sym_restrict] = ACTIONS(6900), - [anon_sym___restrict__] = ACTIONS(6900), - [anon_sym__Atomic] = ACTIONS(6900), - [anon_sym__Noreturn] = ACTIONS(6900), - [anon_sym_noreturn] = ACTIONS(6900), - [anon_sym__Nonnull] = ACTIONS(6900), - [anon_sym_mutable] = ACTIONS(6900), - [anon_sym_constinit] = ACTIONS(6900), - [anon_sym_consteval] = ACTIONS(6900), - [anon_sym_alignas] = ACTIONS(6900), - [anon_sym__Alignas] = ACTIONS(6900), - [anon_sym_QMARK] = ACTIONS(6902), - [anon_sym_LT_EQ_GT] = ACTIONS(6902), - [anon_sym_or] = ACTIONS(6900), - [anon_sym_and] = ACTIONS(6900), - [anon_sym_bitor] = ACTIONS(6900), - [anon_sym_xor] = ACTIONS(6900), - [anon_sym_bitand] = ACTIONS(6900), - [anon_sym_not_eq] = ACTIONS(6900), - [anon_sym_DASH_DASH] = ACTIONS(6902), - [anon_sym_PLUS_PLUS] = ACTIONS(6902), - [anon_sym_DOT] = ACTIONS(6900), - [anon_sym_DOT_STAR] = ACTIONS(6902), - [anon_sym_DASH_GT] = ACTIONS(6902), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6900), - [anon_sym_override] = ACTIONS(6900), - [anon_sym_requires] = ACTIONS(6900), - [anon_sym_COLON_RBRACK] = ACTIONS(6902), - }, - [STATE(2793)] = { - [sym_identifier] = ACTIONS(4042), - [aux_sym_preproc_def_token1] = ACTIONS(4042), - [aux_sym_preproc_if_token1] = ACTIONS(4042), - [aux_sym_preproc_if_token2] = ACTIONS(4042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4042), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4042), - [aux_sym_preproc_else_token1] = ACTIONS(4042), - [aux_sym_preproc_elif_token1] = ACTIONS(4042), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4042), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4042), - [sym_preproc_directive] = ACTIONS(4042), - [anon_sym_LPAREN2] = ACTIONS(4044), - [anon_sym_TILDE] = ACTIONS(4044), - [anon_sym_STAR] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_SEMI] = ACTIONS(4044), - [anon_sym___extension__] = ACTIONS(4042), - [anon_sym_typedef] = ACTIONS(4042), - [anon_sym_virtual] = ACTIONS(4042), - [anon_sym_extern] = ACTIONS(4042), - [anon_sym___attribute__] = ACTIONS(4042), - [anon_sym___attribute] = ACTIONS(4042), - [anon_sym_using] = ACTIONS(4042), - [anon_sym_COLON_COLON] = ACTIONS(4044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4044), - [anon_sym___declspec] = ACTIONS(4042), - [anon_sym___based] = ACTIONS(4042), - [anon_sym_signed] = ACTIONS(4042), - [anon_sym_unsigned] = ACTIONS(4042), - [anon_sym_long] = ACTIONS(4042), - [anon_sym_short] = ACTIONS(4042), - [anon_sym_LBRACK] = ACTIONS(4042), - [anon_sym_static] = ACTIONS(4042), - [anon_sym_register] = ACTIONS(4042), - [anon_sym_inline] = ACTIONS(4042), - [anon_sym___inline] = ACTIONS(4042), - [anon_sym___inline__] = ACTIONS(4042), - [anon_sym___forceinline] = ACTIONS(4042), - [anon_sym_thread_local] = ACTIONS(4042), - [anon_sym___thread] = ACTIONS(4042), - [anon_sym_const] = ACTIONS(4042), - [anon_sym_constexpr] = ACTIONS(4042), - [anon_sym_volatile] = ACTIONS(4042), - [anon_sym_restrict] = ACTIONS(4042), - [anon_sym___restrict__] = ACTIONS(4042), - [anon_sym__Atomic] = ACTIONS(4042), - [anon_sym__Noreturn] = ACTIONS(4042), - [anon_sym_noreturn] = ACTIONS(4042), - [anon_sym__Nonnull] = ACTIONS(4042), - [anon_sym_mutable] = ACTIONS(4042), - [anon_sym_constinit] = ACTIONS(4042), - [anon_sym_consteval] = ACTIONS(4042), - [anon_sym_alignas] = ACTIONS(4042), - [anon_sym__Alignas] = ACTIONS(4042), - [sym_primitive_type] = ACTIONS(4042), - [anon_sym_enum] = ACTIONS(4042), - [anon_sym_class] = ACTIONS(4042), - [anon_sym_struct] = ACTIONS(4042), - [anon_sym_union] = ACTIONS(4042), - [anon_sym_typename] = ACTIONS(4042), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4042), - [anon_sym_decltype] = ACTIONS(4042), - [anon_sym_explicit] = ACTIONS(4042), - [anon_sym_private] = ACTIONS(4042), - [anon_sym_template] = ACTIONS(4042), - [anon_sym_operator] = ACTIONS(4042), - [anon_sym_friend] = ACTIONS(4042), - [anon_sym_public] = ACTIONS(4042), - [anon_sym_protected] = ACTIONS(4042), - [anon_sym_static_assert] = ACTIONS(4042), - [anon_sym_LBRACK_COLON] = ACTIONS(4044), - }, - [STATE(2794)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7197), - [anon_sym_COMMA] = ACTIONS(7197), - [anon_sym_LPAREN2] = ACTIONS(7197), - [anon_sym_DASH] = ACTIONS(7195), - [anon_sym_PLUS] = ACTIONS(7195), - [anon_sym_STAR] = ACTIONS(7195), - [anon_sym_SLASH] = ACTIONS(7195), - [anon_sym_PERCENT] = ACTIONS(7195), - [anon_sym_PIPE_PIPE] = ACTIONS(7197), - [anon_sym_AMP_AMP] = ACTIONS(7197), - [anon_sym_PIPE] = ACTIONS(7195), - [anon_sym_CARET] = ACTIONS(7195), - [anon_sym_AMP] = ACTIONS(7195), - [anon_sym_EQ_EQ] = ACTIONS(7197), - [anon_sym_BANG_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [anon_sym_GT_EQ] = ACTIONS(7195), - [anon_sym_LT_EQ] = ACTIONS(7195), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_LT] = ACTIONS(7195), - [anon_sym_GT_GT] = ACTIONS(7195), - [anon_sym___extension__] = ACTIONS(7197), - [anon_sym___attribute__] = ACTIONS(7197), - [anon_sym___attribute] = ACTIONS(7195), - [anon_sym_LBRACE] = ACTIONS(7197), - [anon_sym_LBRACK] = ACTIONS(7197), - [anon_sym_EQ] = ACTIONS(7195), - [anon_sym_const] = ACTIONS(7195), - [anon_sym_constexpr] = ACTIONS(7197), - [anon_sym_volatile] = ACTIONS(7197), - [anon_sym_restrict] = ACTIONS(7197), - [anon_sym___restrict__] = ACTIONS(7197), - [anon_sym__Atomic] = ACTIONS(7197), - [anon_sym__Noreturn] = ACTIONS(7197), - [anon_sym_noreturn] = ACTIONS(7197), - [anon_sym__Nonnull] = ACTIONS(7197), - [anon_sym_mutable] = ACTIONS(7197), - [anon_sym_constinit] = ACTIONS(7197), - [anon_sym_consteval] = ACTIONS(7197), - [anon_sym_alignas] = ACTIONS(7197), - [anon_sym__Alignas] = ACTIONS(7197), - [anon_sym_QMARK] = ACTIONS(7197), - [anon_sym_STAR_EQ] = ACTIONS(7197), - [anon_sym_SLASH_EQ] = ACTIONS(7197), - [anon_sym_PERCENT_EQ] = ACTIONS(7197), - [anon_sym_PLUS_EQ] = ACTIONS(7197), - [anon_sym_DASH_EQ] = ACTIONS(7197), - [anon_sym_LT_LT_EQ] = ACTIONS(7197), - [anon_sym_GT_GT_EQ] = ACTIONS(7195), - [anon_sym_AMP_EQ] = ACTIONS(7197), - [anon_sym_CARET_EQ] = ACTIONS(7197), - [anon_sym_PIPE_EQ] = ACTIONS(7197), - [anon_sym_and_eq] = ACTIONS(7197), - [anon_sym_or_eq] = ACTIONS(7197), - [anon_sym_xor_eq] = ACTIONS(7197), - [anon_sym_LT_EQ_GT] = ACTIONS(7197), - [anon_sym_or] = ACTIONS(7195), - [anon_sym_and] = ACTIONS(7195), - [anon_sym_bitor] = ACTIONS(7197), - [anon_sym_xor] = ACTIONS(7195), - [anon_sym_bitand] = ACTIONS(7197), - [anon_sym_not_eq] = ACTIONS(7197), - [anon_sym_DASH_DASH] = ACTIONS(7197), - [anon_sym_PLUS_PLUS] = ACTIONS(7197), - [anon_sym_DOT] = ACTIONS(7195), - [anon_sym_DOT_STAR] = ACTIONS(7197), - [anon_sym_DASH_GT] = ACTIONS(7197), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7197), - [anon_sym_override] = ACTIONS(7197), - [anon_sym_GT2] = ACTIONS(7197), - [anon_sym_requires] = ACTIONS(7197), - }, - [STATE(2795)] = { - [sym_template_argument_list] = STATE(2933), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6205), - [anon_sym_COMMA] = ACTIONS(6205), - [anon_sym_RPAREN] = ACTIONS(6205), - [anon_sym_LPAREN2] = ACTIONS(6205), - [anon_sym_DASH] = ACTIONS(6212), - [anon_sym_PLUS] = ACTIONS(6212), - [anon_sym_STAR] = ACTIONS(6212), - [anon_sym_SLASH] = ACTIONS(6212), - [anon_sym_PERCENT] = ACTIONS(6212), - [anon_sym_PIPE_PIPE] = ACTIONS(6205), - [anon_sym_AMP_AMP] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(6212), - [anon_sym_CARET] = ACTIONS(6212), - [anon_sym_AMP] = ACTIONS(6212), - [anon_sym_EQ_EQ] = ACTIONS(6205), - [anon_sym_BANG_EQ] = ACTIONS(6205), - [anon_sym_GT] = ACTIONS(6212), - [anon_sym_GT_EQ] = ACTIONS(6205), - [anon_sym_LT_EQ] = ACTIONS(6212), - [anon_sym_LT] = ACTIONS(8466), - [anon_sym_LT_LT] = ACTIONS(6212), - [anon_sym_GT_GT] = ACTIONS(6212), - [anon_sym___extension__] = ACTIONS(6208), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(6208), - [anon_sym_LBRACK] = ACTIONS(6205), - [anon_sym_EQ] = ACTIONS(6212), - [anon_sym_const] = ACTIONS(6201), - [anon_sym_constexpr] = ACTIONS(6208), - [anon_sym_volatile] = ACTIONS(6208), - [anon_sym_restrict] = ACTIONS(6208), - [anon_sym___restrict__] = ACTIONS(6208), - [anon_sym__Atomic] = ACTIONS(6208), - [anon_sym__Noreturn] = ACTIONS(6208), - [anon_sym_noreturn] = ACTIONS(6208), - [anon_sym__Nonnull] = ACTIONS(6208), - [anon_sym_mutable] = ACTIONS(6208), - [anon_sym_constinit] = ACTIONS(6208), - [anon_sym_consteval] = ACTIONS(6208), - [anon_sym_alignas] = ACTIONS(6208), - [anon_sym__Alignas] = ACTIONS(6208), - [anon_sym_QMARK] = ACTIONS(6205), - [anon_sym_STAR_EQ] = ACTIONS(6205), - [anon_sym_SLASH_EQ] = ACTIONS(6205), - [anon_sym_PERCENT_EQ] = ACTIONS(6205), - [anon_sym_PLUS_EQ] = ACTIONS(6205), - [anon_sym_DASH_EQ] = ACTIONS(6205), - [anon_sym_LT_LT_EQ] = ACTIONS(6205), - [anon_sym_GT_GT_EQ] = ACTIONS(6205), - [anon_sym_AMP_EQ] = ACTIONS(6205), - [anon_sym_CARET_EQ] = ACTIONS(6205), - [anon_sym_PIPE_EQ] = ACTIONS(6205), - [anon_sym_and_eq] = ACTIONS(6205), - [anon_sym_or_eq] = ACTIONS(6205), - [anon_sym_xor_eq] = ACTIONS(6205), - [anon_sym_LT_EQ_GT] = ACTIONS(6205), - [anon_sym_or] = ACTIONS(6212), - [anon_sym_and] = ACTIONS(6212), - [anon_sym_bitor] = ACTIONS(6205), - [anon_sym_xor] = ACTIONS(6212), - [anon_sym_bitand] = ACTIONS(6205), - [anon_sym_not_eq] = ACTIONS(6205), - [anon_sym_DASH_DASH] = ACTIONS(6205), - [anon_sym_PLUS_PLUS] = ACTIONS(6205), - [anon_sym_DOT] = ACTIONS(6212), - [anon_sym_DOT_STAR] = ACTIONS(6205), - [anon_sym_DASH_GT] = ACTIONS(6212), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6208), - [anon_sym_decltype] = ACTIONS(6208), - [anon_sym_DASH_GT_STAR] = ACTIONS(6205), + [anon_sym_DASH_GT_STAR] = ACTIONS(7345), }, - [STATE(2796)] = { - [sym_attribute_specifier] = STATE(4003), - [sym_attribute_declaration] = STATE(4328), - [sym_gnu_asm_expression] = STATE(8980), - [sym_virtual_specifier] = STATE(4455), - [sym__function_attributes_end] = STATE(4198), - [sym__function_postfix] = STATE(4844), - [sym_trailing_return_type] = STATE(4241), - [sym_requires_clause] = STATE(4844), - [aux_sym_type_definition_repeat1] = STATE(4003), - [aux_sym_attributed_declarator_repeat1] = STATE(4328), - [aux_sym__function_postfix_repeat1] = STATE(4455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6282), - [anon_sym___attribute] = ACTIONS(6284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7841), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6305), - [anon_sym_override] = ACTIONS(6305), - [anon_sym_requires] = ACTIONS(6307), - [anon_sym_DASH_GT_STAR] = ACTIONS(7544), + [STATE(2605)] = { + [sym_template_argument_list] = STATE(2681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), + [anon_sym_COMMA] = ACTIONS(7090), + [anon_sym_LPAREN2] = ACTIONS(7090), + [anon_sym_DASH] = ACTIONS(7085), + [anon_sym_PLUS] = ACTIONS(7085), + [anon_sym_STAR] = ACTIONS(7085), + [anon_sym_SLASH] = ACTIONS(7085), + [anon_sym_PERCENT] = ACTIONS(7085), + [anon_sym_PIPE_PIPE] = ACTIONS(7090), + [anon_sym_AMP_AMP] = ACTIONS(7090), + [anon_sym_PIPE] = ACTIONS(7085), + [anon_sym_CARET] = ACTIONS(7085), + [anon_sym_AMP] = ACTIONS(7085), + [anon_sym_EQ_EQ] = ACTIONS(7090), + [anon_sym_BANG_EQ] = ACTIONS(7090), + [anon_sym_GT] = ACTIONS(7085), + [anon_sym_GT_EQ] = ACTIONS(7090), + [anon_sym_LT_EQ] = ACTIONS(7085), + [anon_sym_LT] = ACTIONS(8064), + [anon_sym_LT_LT] = ACTIONS(7085), + [anon_sym_GT_GT] = ACTIONS(7085), + [anon_sym___extension__] = ACTIONS(7090), + [anon_sym___attribute__] = ACTIONS(7090), + [anon_sym___attribute] = ACTIONS(7085), + [anon_sym_COLON] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7087), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_LBRACK] = ACTIONS(7090), + [anon_sym_RBRACK] = ACTIONS(7090), + [anon_sym_EQ] = ACTIONS(7085), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7090), + [anon_sym_volatile] = ACTIONS(7090), + [anon_sym_restrict] = ACTIONS(7090), + [anon_sym___restrict__] = ACTIONS(7090), + [anon_sym__Atomic] = ACTIONS(7090), + [anon_sym__Noreturn] = ACTIONS(7090), + [anon_sym_noreturn] = ACTIONS(7090), + [anon_sym__Nonnull] = ACTIONS(7090), + [anon_sym_mutable] = ACTIONS(7090), + [anon_sym_constinit] = ACTIONS(7090), + [anon_sym_consteval] = ACTIONS(7090), + [anon_sym_alignas] = ACTIONS(7090), + [anon_sym__Alignas] = ACTIONS(7090), + [anon_sym_QMARK] = ACTIONS(7090), + [anon_sym_STAR_EQ] = ACTIONS(7090), + [anon_sym_SLASH_EQ] = ACTIONS(7090), + [anon_sym_PERCENT_EQ] = ACTIONS(7090), + [anon_sym_PLUS_EQ] = ACTIONS(7090), + [anon_sym_DASH_EQ] = ACTIONS(7090), + [anon_sym_LT_LT_EQ] = ACTIONS(7090), + [anon_sym_GT_GT_EQ] = ACTIONS(7090), + [anon_sym_AMP_EQ] = ACTIONS(7090), + [anon_sym_CARET_EQ] = ACTIONS(7090), + [anon_sym_PIPE_EQ] = ACTIONS(7090), + [anon_sym_and_eq] = ACTIONS(7090), + [anon_sym_or_eq] = ACTIONS(7090), + [anon_sym_xor_eq] = ACTIONS(7090), + [anon_sym_LT_EQ_GT] = ACTIONS(7090), + [anon_sym_or] = ACTIONS(7085), + [anon_sym_and] = ACTIONS(7085), + [anon_sym_bitor] = ACTIONS(7090), + [anon_sym_xor] = ACTIONS(7085), + [anon_sym_bitand] = ACTIONS(7090), + [anon_sym_not_eq] = ACTIONS(7090), + [anon_sym_DASH_DASH] = ACTIONS(7090), + [anon_sym_PLUS_PLUS] = ACTIONS(7090), + [anon_sym_DOT] = ACTIONS(7085), + [anon_sym_DOT_STAR] = ACTIONS(7090), + [anon_sym_DASH_GT] = ACTIONS(7090), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7090), + [anon_sym_override] = ACTIONS(7090), + [anon_sym_requires] = ACTIONS(7090), }, - [STATE(2797)] = { - [sym_identifier] = ACTIONS(6949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), - [anon_sym_COMMA] = ACTIONS(6951), - [anon_sym_RPAREN] = ACTIONS(6951), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_DASH] = ACTIONS(6949), - [anon_sym_PLUS] = ACTIONS(6949), - [anon_sym_STAR] = ACTIONS(6951), - [anon_sym_SLASH] = ACTIONS(6949), - [anon_sym_PERCENT] = ACTIONS(6951), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_PIPE] = ACTIONS(6949), - [anon_sym_CARET] = ACTIONS(6951), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_GT] = ACTIONS(6949), - [anon_sym_GT_EQ] = ACTIONS(6951), - [anon_sym_LT_EQ] = ACTIONS(6949), - [anon_sym_LT] = ACTIONS(6949), - [anon_sym_LT_LT] = ACTIONS(6951), - [anon_sym_GT_GT] = ACTIONS(6951), - [anon_sym_SEMI] = ACTIONS(6951), - [anon_sym___extension__] = ACTIONS(6949), - [anon_sym___attribute__] = ACTIONS(6949), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_COLON] = ACTIONS(6949), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6951), - [anon_sym___based] = ACTIONS(6949), - [anon_sym_LBRACE] = ACTIONS(6951), - [anon_sym_RBRACE] = ACTIONS(6951), - [anon_sym_signed] = ACTIONS(6949), - [anon_sym_unsigned] = ACTIONS(6949), - [anon_sym_long] = ACTIONS(6949), - [anon_sym_short] = ACTIONS(6949), - [anon_sym_LBRACK] = ACTIONS(6951), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6949), - [anon_sym_volatile] = ACTIONS(6949), - [anon_sym_restrict] = ACTIONS(6949), - [anon_sym___restrict__] = ACTIONS(6949), - [anon_sym__Atomic] = ACTIONS(6949), - [anon_sym__Noreturn] = ACTIONS(6949), - [anon_sym_noreturn] = ACTIONS(6949), - [anon_sym__Nonnull] = ACTIONS(6949), - [anon_sym_mutable] = ACTIONS(6949), - [anon_sym_constinit] = ACTIONS(6949), - [anon_sym_consteval] = ACTIONS(6949), - [anon_sym_alignas] = ACTIONS(6949), - [anon_sym__Alignas] = ACTIONS(6949), - [sym_primitive_type] = ACTIONS(6949), - [anon_sym_QMARK] = ACTIONS(6951), - [anon_sym_LT_EQ_GT] = ACTIONS(6951), - [anon_sym_or] = ACTIONS(6949), - [anon_sym_and] = ACTIONS(6949), - [anon_sym_bitor] = ACTIONS(6949), - [anon_sym_xor] = ACTIONS(6949), - [anon_sym_bitand] = ACTIONS(6949), - [anon_sym_not_eq] = ACTIONS(6949), - [anon_sym_DASH_DASH] = ACTIONS(6951), - [anon_sym_PLUS_PLUS] = ACTIONS(6951), - [anon_sym_DOT] = ACTIONS(6949), - [anon_sym_DOT_STAR] = ACTIONS(6951), - [anon_sym_DASH_GT] = ACTIONS(6951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6949), - [anon_sym_decltype] = ACTIONS(6949), - [anon_sym_final] = ACTIONS(6949), - [anon_sym_override] = ACTIONS(6949), - [anon_sym_requires] = ACTIONS(6949), - [anon_sym_COLON_RBRACK] = ACTIONS(6951), - }, - [STATE(2798)] = { - [sym_attribute_specifier] = STATE(4003), - [sym_attribute_declaration] = STATE(4328), - [sym_gnu_asm_expression] = STATE(8980), - [sym_virtual_specifier] = STATE(4455), - [sym__function_attributes_end] = STATE(4194), - [sym__function_postfix] = STATE(4685), - [sym_trailing_return_type] = STATE(4232), - [sym_requires_clause] = STATE(4685), - [aux_sym_type_definition_repeat1] = STATE(4003), - [aux_sym_attributed_declarator_repeat1] = STATE(4328), - [aux_sym__function_postfix_repeat1] = STATE(4455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), - [anon_sym_COMMA] = ACTIONS(8089), - [anon_sym_RPAREN] = ACTIONS(8089), - [anon_sym_LPAREN2] = ACTIONS(8089), - [anon_sym_DASH] = ACTIONS(8087), - [anon_sym_PLUS] = ACTIONS(8087), - [anon_sym_STAR] = ACTIONS(8087), - [anon_sym_SLASH] = ACTIONS(8087), - [anon_sym_PERCENT] = ACTIONS(8087), - [anon_sym_PIPE_PIPE] = ACTIONS(8089), - [anon_sym_AMP_AMP] = ACTIONS(8089), - [anon_sym_PIPE] = ACTIONS(8087), - [anon_sym_CARET] = ACTIONS(8087), - [anon_sym_AMP] = ACTIONS(8087), - [anon_sym_EQ_EQ] = ACTIONS(8089), - [anon_sym_BANG_EQ] = ACTIONS(8089), - [anon_sym_GT] = ACTIONS(8087), - [anon_sym_GT_EQ] = ACTIONS(8089), - [anon_sym_LT_EQ] = ACTIONS(8087), - [anon_sym_LT] = ACTIONS(8087), - [anon_sym_LT_LT] = ACTIONS(8087), - [anon_sym_GT_GT] = ACTIONS(8087), - [anon_sym___attribute__] = ACTIONS(6282), - [anon_sym___attribute] = ACTIONS(6284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), - [anon_sym_LBRACK] = ACTIONS(8087), - [anon_sym_EQ] = ACTIONS(8087), - [anon_sym_QMARK] = ACTIONS(8089), - [anon_sym_STAR_EQ] = ACTIONS(8089), - [anon_sym_SLASH_EQ] = ACTIONS(8089), - [anon_sym_PERCENT_EQ] = ACTIONS(8089), - [anon_sym_PLUS_EQ] = ACTIONS(8089), - [anon_sym_DASH_EQ] = ACTIONS(8089), - [anon_sym_LT_LT_EQ] = ACTIONS(8089), - [anon_sym_GT_GT_EQ] = ACTIONS(8089), - [anon_sym_AMP_EQ] = ACTIONS(8089), - [anon_sym_CARET_EQ] = ACTIONS(8089), - [anon_sym_PIPE_EQ] = ACTIONS(8089), - [anon_sym_and_eq] = ACTIONS(8089), - [anon_sym_or_eq] = ACTIONS(8089), - [anon_sym_xor_eq] = ACTIONS(8089), - [anon_sym_LT_EQ_GT] = ACTIONS(8089), - [anon_sym_or] = ACTIONS(8087), - [anon_sym_and] = ACTIONS(8087), - [anon_sym_bitor] = ACTIONS(8089), - [anon_sym_xor] = ACTIONS(8087), - [anon_sym_bitand] = ACTIONS(8089), - [anon_sym_not_eq] = ACTIONS(8089), - [anon_sym_DASH_DASH] = ACTIONS(8089), - [anon_sym_PLUS_PLUS] = ACTIONS(8089), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(8087), - [anon_sym_DOT_STAR] = ACTIONS(8089), - [anon_sym_DASH_GT] = ACTIONS(8470), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8473), - [anon_sym_override] = ACTIONS(8473), - [anon_sym_requires] = ACTIONS(8476), - [anon_sym_DASH_GT_STAR] = ACTIONS(8089), - }, - [STATE(2799)] = { - [sym_attribute_specifier] = STATE(1918), - [sym_attribute_declaration] = STATE(3141), - [aux_sym_type_definition_repeat1] = STATE(1918), - [aux_sym_attributed_declarator_repeat1] = STATE(3141), - [sym_identifier] = ACTIONS(8479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8481), - [anon_sym_COMMA] = ACTIONS(8481), - [anon_sym_RPAREN] = ACTIONS(8481), - [aux_sym_preproc_if_token2] = ACTIONS(8481), - [aux_sym_preproc_else_token1] = ACTIONS(8481), - [aux_sym_preproc_elif_token1] = ACTIONS(8479), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8481), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8481), - [anon_sym_LPAREN2] = ACTIONS(8481), - [anon_sym_DASH] = ACTIONS(8479), - [anon_sym_PLUS] = ACTIONS(8479), - [anon_sym_STAR] = ACTIONS(8479), - [anon_sym_SLASH] = ACTIONS(8479), - [anon_sym_PERCENT] = ACTIONS(8479), - [anon_sym_PIPE_PIPE] = ACTIONS(8481), - [anon_sym_AMP_AMP] = ACTIONS(8481), - [anon_sym_PIPE] = ACTIONS(8479), - [anon_sym_CARET] = ACTIONS(8479), - [anon_sym_AMP] = ACTIONS(8479), - [anon_sym_EQ_EQ] = ACTIONS(8481), - [anon_sym_BANG_EQ] = ACTIONS(8481), - [anon_sym_GT] = ACTIONS(8479), - [anon_sym_GT_EQ] = ACTIONS(8481), - [anon_sym_LT_EQ] = ACTIONS(8479), - [anon_sym_LT] = ACTIONS(8479), - [anon_sym_LT_LT] = ACTIONS(8479), - [anon_sym_GT_GT] = ACTIONS(8479), - [anon_sym_SEMI] = ACTIONS(8481), - [anon_sym___attribute__] = ACTIONS(6123), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_COLON] = ACTIONS(8479), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8481), - [anon_sym_RBRACE] = ACTIONS(8481), - [anon_sym_LBRACK] = ACTIONS(8479), - [anon_sym_EQ] = ACTIONS(8479), - [anon_sym_QMARK] = ACTIONS(8481), - [anon_sym_STAR_EQ] = ACTIONS(8481), - [anon_sym_SLASH_EQ] = ACTIONS(8481), - [anon_sym_PERCENT_EQ] = ACTIONS(8481), - [anon_sym_PLUS_EQ] = ACTIONS(8481), - [anon_sym_DASH_EQ] = ACTIONS(8481), - [anon_sym_LT_LT_EQ] = ACTIONS(8481), - [anon_sym_GT_GT_EQ] = ACTIONS(8481), - [anon_sym_AMP_EQ] = ACTIONS(8481), - [anon_sym_CARET_EQ] = ACTIONS(8481), - [anon_sym_PIPE_EQ] = ACTIONS(8481), - [anon_sym_and_eq] = ACTIONS(8479), - [anon_sym_or_eq] = ACTIONS(8479), - [anon_sym_xor_eq] = ACTIONS(8479), - [anon_sym_LT_EQ_GT] = ACTIONS(8481), - [anon_sym_or] = ACTIONS(8479), - [anon_sym_and] = ACTIONS(8479), - [anon_sym_bitor] = ACTIONS(8479), - [anon_sym_xor] = ACTIONS(8479), - [anon_sym_bitand] = ACTIONS(8479), - [anon_sym_not_eq] = ACTIONS(8479), - [anon_sym_DASH_DASH] = ACTIONS(8481), - [anon_sym_PLUS_PLUS] = ACTIONS(8481), - [anon_sym_DOT] = ACTIONS(8479), - [anon_sym_DOT_STAR] = ACTIONS(8481), - [anon_sym_DASH_GT] = ACTIONS(8481), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8479), - [anon_sym_override] = ACTIONS(8479), - [anon_sym_requires] = ACTIONS(8479), - [anon_sym_COLON_RBRACK] = ACTIONS(8481), - }, - [STATE(2800)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7285), - [anon_sym_COMMA] = ACTIONS(7285), - [anon_sym_LPAREN2] = ACTIONS(7285), - [anon_sym_DASH] = ACTIONS(7283), - [anon_sym_PLUS] = ACTIONS(7283), - [anon_sym_STAR] = ACTIONS(7283), - [anon_sym_SLASH] = ACTIONS(7283), - [anon_sym_PERCENT] = ACTIONS(7283), - [anon_sym_PIPE_PIPE] = ACTIONS(7285), - [anon_sym_AMP_AMP] = ACTIONS(7285), - [anon_sym_PIPE] = ACTIONS(7283), - [anon_sym_CARET] = ACTIONS(7283), - [anon_sym_AMP] = ACTIONS(7283), - [anon_sym_EQ_EQ] = ACTIONS(7285), - [anon_sym_BANG_EQ] = ACTIONS(7285), - [anon_sym_GT] = ACTIONS(7283), - [anon_sym_GT_EQ] = ACTIONS(7283), - [anon_sym_LT_EQ] = ACTIONS(7283), - [anon_sym_LT] = ACTIONS(7283), - [anon_sym_LT_LT] = ACTIONS(7283), - [anon_sym_GT_GT] = ACTIONS(7283), - [anon_sym___extension__] = ACTIONS(7285), - [anon_sym___attribute__] = ACTIONS(7285), - [anon_sym___attribute] = ACTIONS(7283), - [anon_sym_LBRACE] = ACTIONS(7285), - [anon_sym_LBRACK] = ACTIONS(7285), - [anon_sym_EQ] = ACTIONS(7283), - [anon_sym_const] = ACTIONS(7283), - [anon_sym_constexpr] = ACTIONS(7285), - [anon_sym_volatile] = ACTIONS(7285), - [anon_sym_restrict] = ACTIONS(7285), - [anon_sym___restrict__] = ACTIONS(7285), - [anon_sym__Atomic] = ACTIONS(7285), - [anon_sym__Noreturn] = ACTIONS(7285), - [anon_sym_noreturn] = ACTIONS(7285), - [anon_sym__Nonnull] = ACTIONS(7285), - [anon_sym_mutable] = ACTIONS(7285), - [anon_sym_constinit] = ACTIONS(7285), - [anon_sym_consteval] = ACTIONS(7285), - [anon_sym_alignas] = ACTIONS(7285), - [anon_sym__Alignas] = ACTIONS(7285), - [anon_sym_QMARK] = ACTIONS(7285), - [anon_sym_STAR_EQ] = ACTIONS(7285), - [anon_sym_SLASH_EQ] = ACTIONS(7285), - [anon_sym_PERCENT_EQ] = ACTIONS(7285), - [anon_sym_PLUS_EQ] = ACTIONS(7285), - [anon_sym_DASH_EQ] = ACTIONS(7285), - [anon_sym_LT_LT_EQ] = ACTIONS(7285), - [anon_sym_GT_GT_EQ] = ACTIONS(7283), - [anon_sym_AMP_EQ] = ACTIONS(7285), - [anon_sym_CARET_EQ] = ACTIONS(7285), - [anon_sym_PIPE_EQ] = ACTIONS(7285), - [anon_sym_and_eq] = ACTIONS(7285), - [anon_sym_or_eq] = ACTIONS(7285), - [anon_sym_xor_eq] = ACTIONS(7285), - [anon_sym_LT_EQ_GT] = ACTIONS(7285), - [anon_sym_or] = ACTIONS(7283), - [anon_sym_and] = ACTIONS(7283), - [anon_sym_bitor] = ACTIONS(7285), - [anon_sym_xor] = ACTIONS(7283), - [anon_sym_bitand] = ACTIONS(7285), - [anon_sym_not_eq] = ACTIONS(7285), - [anon_sym_DASH_DASH] = ACTIONS(7285), - [anon_sym_PLUS_PLUS] = ACTIONS(7285), - [anon_sym_DOT] = ACTIONS(7283), - [anon_sym_DOT_STAR] = ACTIONS(7285), - [anon_sym_DASH_GT] = ACTIONS(7285), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7285), - [anon_sym_override] = ACTIONS(7285), - [anon_sym_GT2] = ACTIONS(7285), - [anon_sym_requires] = ACTIONS(7285), - }, - [STATE(2801)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7335), - [anon_sym_COMMA] = ACTIONS(7335), - [anon_sym_LPAREN2] = ACTIONS(7335), - [anon_sym_DASH] = ACTIONS(7333), - [anon_sym_PLUS] = ACTIONS(7333), - [anon_sym_STAR] = ACTIONS(7333), - [anon_sym_SLASH] = ACTIONS(7333), - [anon_sym_PERCENT] = ACTIONS(7333), - [anon_sym_PIPE_PIPE] = ACTIONS(7335), - [anon_sym_AMP_AMP] = ACTIONS(7335), - [anon_sym_PIPE] = ACTIONS(7333), - [anon_sym_CARET] = ACTIONS(7333), - [anon_sym_AMP] = ACTIONS(7333), - [anon_sym_EQ_EQ] = ACTIONS(7335), - [anon_sym_BANG_EQ] = ACTIONS(7335), - [anon_sym_GT] = ACTIONS(7333), - [anon_sym_GT_EQ] = ACTIONS(7333), - [anon_sym_LT_EQ] = ACTIONS(7333), - [anon_sym_LT] = ACTIONS(7333), - [anon_sym_LT_LT] = ACTIONS(7333), - [anon_sym_GT_GT] = ACTIONS(7333), - [anon_sym___extension__] = ACTIONS(7335), - [anon_sym___attribute__] = ACTIONS(7335), - [anon_sym___attribute] = ACTIONS(7333), - [anon_sym_LBRACE] = ACTIONS(7335), - [anon_sym_LBRACK] = ACTIONS(7335), - [anon_sym_EQ] = ACTIONS(7333), - [anon_sym_const] = ACTIONS(7333), - [anon_sym_constexpr] = ACTIONS(7335), - [anon_sym_volatile] = ACTIONS(7335), - [anon_sym_restrict] = ACTIONS(7335), - [anon_sym___restrict__] = ACTIONS(7335), - [anon_sym__Atomic] = ACTIONS(7335), - [anon_sym__Noreturn] = ACTIONS(7335), - [anon_sym_noreturn] = ACTIONS(7335), - [anon_sym__Nonnull] = ACTIONS(7335), - [anon_sym_mutable] = ACTIONS(7335), - [anon_sym_constinit] = ACTIONS(7335), - [anon_sym_consteval] = ACTIONS(7335), - [anon_sym_alignas] = ACTIONS(7335), - [anon_sym__Alignas] = ACTIONS(7335), - [anon_sym_QMARK] = ACTIONS(7335), - [anon_sym_STAR_EQ] = ACTIONS(7335), - [anon_sym_SLASH_EQ] = ACTIONS(7335), - [anon_sym_PERCENT_EQ] = ACTIONS(7335), - [anon_sym_PLUS_EQ] = ACTIONS(7335), - [anon_sym_DASH_EQ] = ACTIONS(7335), - [anon_sym_LT_LT_EQ] = ACTIONS(7335), - [anon_sym_GT_GT_EQ] = ACTIONS(7333), - [anon_sym_AMP_EQ] = ACTIONS(7335), - [anon_sym_CARET_EQ] = ACTIONS(7335), - [anon_sym_PIPE_EQ] = ACTIONS(7335), - [anon_sym_and_eq] = ACTIONS(7335), - [anon_sym_or_eq] = ACTIONS(7335), - [anon_sym_xor_eq] = ACTIONS(7335), - [anon_sym_LT_EQ_GT] = ACTIONS(7335), - [anon_sym_or] = ACTIONS(7333), - [anon_sym_and] = ACTIONS(7333), - [anon_sym_bitor] = ACTIONS(7335), - [anon_sym_xor] = ACTIONS(7333), - [anon_sym_bitand] = ACTIONS(7335), - [anon_sym_not_eq] = ACTIONS(7335), - [anon_sym_DASH_DASH] = ACTIONS(7335), - [anon_sym_PLUS_PLUS] = ACTIONS(7335), - [anon_sym_DOT] = ACTIONS(7333), - [anon_sym_DOT_STAR] = ACTIONS(7335), - [anon_sym_DASH_GT] = ACTIONS(7335), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7335), - [anon_sym_override] = ACTIONS(7335), - [anon_sym_GT2] = ACTIONS(7335), - [anon_sym_requires] = ACTIONS(7335), - }, - [STATE(2802)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7183), - [anon_sym_COMMA] = ACTIONS(7183), - [anon_sym_RPAREN] = ACTIONS(7183), - [anon_sym_LPAREN2] = ACTIONS(7183), - [anon_sym_DASH] = ACTIONS(7185), - [anon_sym_PLUS] = ACTIONS(7185), - [anon_sym_STAR] = ACTIONS(7185), - [anon_sym_SLASH] = ACTIONS(7185), - [anon_sym_PERCENT] = ACTIONS(7185), - [anon_sym_PIPE_PIPE] = ACTIONS(7183), - [anon_sym_AMP_AMP] = ACTIONS(7183), - [anon_sym_PIPE] = ACTIONS(7185), - [anon_sym_CARET] = ACTIONS(7185), - [anon_sym_AMP] = ACTIONS(7185), - [anon_sym_EQ_EQ] = ACTIONS(7183), - [anon_sym_BANG_EQ] = ACTIONS(7183), - [anon_sym_GT] = ACTIONS(7185), - [anon_sym_GT_EQ] = ACTIONS(7183), - [anon_sym_LT_EQ] = ACTIONS(7185), - [anon_sym_LT] = ACTIONS(7185), - [anon_sym_LT_LT] = ACTIONS(7185), - [anon_sym_GT_GT] = ACTIONS(7185), - [anon_sym___extension__] = ACTIONS(7183), - [anon_sym___attribute__] = ACTIONS(7183), - [anon_sym___attribute] = ACTIONS(7185), - [anon_sym_COLON] = ACTIONS(7185), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(7183), - [anon_sym_LBRACK] = ACTIONS(7183), - [anon_sym_EQ] = ACTIONS(7185), - [anon_sym_const] = ACTIONS(7185), - [anon_sym_constexpr] = ACTIONS(7183), - [anon_sym_volatile] = ACTIONS(7183), - [anon_sym_restrict] = ACTIONS(7183), - [anon_sym___restrict__] = ACTIONS(7183), - [anon_sym__Atomic] = ACTIONS(7183), - [anon_sym__Noreturn] = ACTIONS(7183), - [anon_sym_noreturn] = ACTIONS(7183), - [anon_sym__Nonnull] = ACTIONS(7183), - [anon_sym_mutable] = ACTIONS(7183), - [anon_sym_constinit] = ACTIONS(7183), - [anon_sym_consteval] = ACTIONS(7183), - [anon_sym_alignas] = ACTIONS(7183), - [anon_sym__Alignas] = ACTIONS(7183), - [anon_sym_QMARK] = ACTIONS(7183), - [anon_sym_STAR_EQ] = ACTIONS(7183), - [anon_sym_SLASH_EQ] = ACTIONS(7183), - [anon_sym_PERCENT_EQ] = ACTIONS(7183), - [anon_sym_PLUS_EQ] = ACTIONS(7183), - [anon_sym_DASH_EQ] = ACTIONS(7183), - [anon_sym_LT_LT_EQ] = ACTIONS(7183), - [anon_sym_GT_GT_EQ] = ACTIONS(7183), - [anon_sym_AMP_EQ] = ACTIONS(7183), - [anon_sym_CARET_EQ] = ACTIONS(7183), - [anon_sym_PIPE_EQ] = ACTIONS(7183), - [anon_sym_LT_EQ_GT] = ACTIONS(7183), - [anon_sym_or] = ACTIONS(7183), - [anon_sym_and] = ACTIONS(7183), - [anon_sym_bitor] = ACTIONS(7183), - [anon_sym_xor] = ACTIONS(7183), - [anon_sym_bitand] = ACTIONS(7183), - [anon_sym_not_eq] = ACTIONS(7183), - [anon_sym_DASH_DASH] = ACTIONS(7183), - [anon_sym_PLUS_PLUS] = ACTIONS(7183), - [anon_sym_DOT] = ACTIONS(7185), - [anon_sym_DOT_STAR] = ACTIONS(7183), - [anon_sym_DASH_GT] = ACTIONS(7185), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7183), - [anon_sym_override] = ACTIONS(7183), - [anon_sym_requires] = ACTIONS(7183), - [anon_sym_DASH_GT_STAR] = ACTIONS(7183), - }, - [STATE(2803)] = { - [sym_attribute_specifier] = STATE(4003), - [sym_attribute_declaration] = STATE(4328), - [sym_gnu_asm_expression] = STATE(8980), - [sym_virtual_specifier] = STATE(4455), - [sym__function_attributes_end] = STATE(4185), - [sym__function_postfix] = STATE(4844), - [sym_trailing_return_type] = STATE(4273), - [sym_requires_clause] = STATE(4844), - [aux_sym_type_definition_repeat1] = STATE(4003), - [aux_sym_attributed_declarator_repeat1] = STATE(4328), - [aux_sym__function_postfix_repeat1] = STATE(4455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6282), - [anon_sym___attribute] = ACTIONS(6284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7841), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7848), - [anon_sym_override] = ACTIONS(7848), - [anon_sym_requires] = ACTIONS(7851), - [anon_sym_DASH_GT_STAR] = ACTIONS(7544), - }, - [STATE(2804)] = { - [sym_type_qualifier] = STATE(2399), - [sym_alignas_qualifier] = STATE(2592), - [aux_sym__type_definition_type_repeat1] = STATE(2399), - [aux_sym_sized_type_specifier_repeat1] = STATE(3322), - [sym_identifier] = ACTIONS(8483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), - [anon_sym_COMMA] = ACTIONS(6884), - [aux_sym_preproc_if_token2] = ACTIONS(6884), - [aux_sym_preproc_else_token1] = ACTIONS(6884), - [aux_sym_preproc_elif_token1] = ACTIONS(6886), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6884), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6884), - [anon_sym_LPAREN2] = ACTIONS(6884), - [anon_sym_DASH] = ACTIONS(6886), - [anon_sym_PLUS] = ACTIONS(6886), - [anon_sym_STAR] = ACTIONS(6884), - [anon_sym_SLASH] = ACTIONS(6886), - [anon_sym_PERCENT] = ACTIONS(6884), - [anon_sym_PIPE_PIPE] = ACTIONS(6884), - [anon_sym_AMP_AMP] = ACTIONS(6884), - [anon_sym_PIPE] = ACTIONS(6886), - [anon_sym_CARET] = ACTIONS(6884), - [anon_sym_AMP] = ACTIONS(6886), - [anon_sym_EQ_EQ] = ACTIONS(6884), - [anon_sym_BANG_EQ] = ACTIONS(6884), - [anon_sym_GT] = ACTIONS(6886), - [anon_sym_GT_EQ] = ACTIONS(6884), - [anon_sym_LT_EQ] = ACTIONS(6886), - [anon_sym_LT] = ACTIONS(6886), - [anon_sym_LT_LT] = ACTIONS(6884), - [anon_sym_GT_GT] = ACTIONS(6884), - [anon_sym___extension__] = ACTIONS(8368), - [anon_sym___attribute__] = ACTIONS(6886), - [anon_sym___attribute] = ACTIONS(6886), - [anon_sym_LBRACE] = ACTIONS(6884), - [anon_sym_signed] = ACTIONS(8486), - [anon_sym_unsigned] = ACTIONS(8486), - [anon_sym_long] = ACTIONS(8486), - [anon_sym_short] = ACTIONS(8486), - [anon_sym_LBRACK] = ACTIONS(6884), - [anon_sym_const] = ACTIONS(8368), - [anon_sym_constexpr] = ACTIONS(8368), - [anon_sym_volatile] = ACTIONS(8368), - [anon_sym_restrict] = ACTIONS(8368), - [anon_sym___restrict__] = ACTIONS(8368), - [anon_sym__Atomic] = ACTIONS(8368), - [anon_sym__Noreturn] = ACTIONS(8368), - [anon_sym_noreturn] = ACTIONS(8368), - [anon_sym__Nonnull] = ACTIONS(8368), - [anon_sym_mutable] = ACTIONS(8368), - [anon_sym_constinit] = ACTIONS(8368), - [anon_sym_consteval] = ACTIONS(8368), - [anon_sym_alignas] = ACTIONS(8373), - [anon_sym__Alignas] = ACTIONS(8373), - [sym_primitive_type] = ACTIONS(8488), - [anon_sym_QMARK] = ACTIONS(6884), - [anon_sym_LT_EQ_GT] = ACTIONS(6884), - [anon_sym_or] = ACTIONS(6886), - [anon_sym_and] = ACTIONS(6886), - [anon_sym_bitor] = ACTIONS(6886), - [anon_sym_xor] = ACTIONS(6886), - [anon_sym_bitand] = ACTIONS(6886), - [anon_sym_not_eq] = ACTIONS(6886), - [anon_sym_DASH_DASH] = ACTIONS(6884), - [anon_sym_PLUS_PLUS] = ACTIONS(6884), - [anon_sym_DOT] = ACTIONS(6886), - [anon_sym_DOT_STAR] = ACTIONS(6884), - [anon_sym_DASH_GT] = ACTIONS(6884), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6886), - [anon_sym_override] = ACTIONS(6886), - [anon_sym_requires] = ACTIONS(6886), - }, - [STATE(2805)] = { - [sym_catch_clause] = STATE(2836), - [aux_sym_constructor_try_statement_repeat1] = STATE(2836), - [sym_identifier] = ACTIONS(3554), - [aux_sym_preproc_def_token1] = ACTIONS(3554), - [aux_sym_preproc_if_token1] = ACTIONS(3554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3554), - [sym_preproc_directive] = ACTIONS(3554), - [anon_sym_LPAREN2] = ACTIONS(3556), - [anon_sym_TILDE] = ACTIONS(3556), - [anon_sym_STAR] = ACTIONS(3556), - [anon_sym_AMP_AMP] = ACTIONS(3556), - [anon_sym_AMP] = ACTIONS(3554), - [anon_sym_SEMI] = ACTIONS(3556), - [anon_sym___extension__] = ACTIONS(3554), - [anon_sym_typedef] = ACTIONS(3554), - [anon_sym_virtual] = ACTIONS(3554), - [anon_sym_extern] = ACTIONS(3554), - [anon_sym___attribute__] = ACTIONS(3554), - [anon_sym___attribute] = ACTIONS(3554), - [anon_sym_using] = ACTIONS(3554), - [anon_sym_COLON_COLON] = ACTIONS(3556), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3556), - [anon_sym___declspec] = ACTIONS(3554), - [anon_sym___based] = ACTIONS(3554), - [anon_sym_RBRACE] = ACTIONS(3556), - [anon_sym_signed] = ACTIONS(3554), - [anon_sym_unsigned] = ACTIONS(3554), - [anon_sym_long] = ACTIONS(3554), - [anon_sym_short] = ACTIONS(3554), - [anon_sym_LBRACK] = ACTIONS(3554), - [anon_sym_static] = ACTIONS(3554), - [anon_sym_register] = ACTIONS(3554), - [anon_sym_inline] = ACTIONS(3554), - [anon_sym___inline] = ACTIONS(3554), - [anon_sym___inline__] = ACTIONS(3554), - [anon_sym___forceinline] = ACTIONS(3554), - [anon_sym_thread_local] = ACTIONS(3554), - [anon_sym___thread] = ACTIONS(3554), - [anon_sym_const] = ACTIONS(3554), - [anon_sym_constexpr] = ACTIONS(3554), - [anon_sym_volatile] = ACTIONS(3554), - [anon_sym_restrict] = ACTIONS(3554), - [anon_sym___restrict__] = ACTIONS(3554), - [anon_sym__Atomic] = ACTIONS(3554), - [anon_sym__Noreturn] = ACTIONS(3554), - [anon_sym_noreturn] = ACTIONS(3554), - [anon_sym__Nonnull] = ACTIONS(3554), - [anon_sym_mutable] = ACTIONS(3554), - [anon_sym_constinit] = ACTIONS(3554), - [anon_sym_consteval] = ACTIONS(3554), - [anon_sym_alignas] = ACTIONS(3554), - [anon_sym__Alignas] = ACTIONS(3554), - [sym_primitive_type] = ACTIONS(3554), - [anon_sym_enum] = ACTIONS(3554), - [anon_sym_class] = ACTIONS(3554), - [anon_sym_struct] = ACTIONS(3554), - [anon_sym_union] = ACTIONS(3554), - [anon_sym_typename] = ACTIONS(3554), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3554), - [anon_sym_decltype] = ACTIONS(3554), - [anon_sym_explicit] = ACTIONS(3554), - [anon_sym_private] = ACTIONS(3554), - [anon_sym_template] = ACTIONS(3554), - [anon_sym_operator] = ACTIONS(3554), - [anon_sym_friend] = ACTIONS(3554), - [anon_sym_public] = ACTIONS(3554), - [anon_sym_protected] = ACTIONS(3554), - [anon_sym_static_assert] = ACTIONS(3554), - [anon_sym_catch] = ACTIONS(8490), - [anon_sym_LBRACK_COLON] = ACTIONS(3556), - }, - [STATE(2806)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), - [anon_sym_COMMA] = ACTIONS(7255), - [anon_sym_LPAREN2] = ACTIONS(7255), - [anon_sym_DASH] = ACTIONS(7253), - [anon_sym_PLUS] = ACTIONS(7253), - [anon_sym_STAR] = ACTIONS(7253), - [anon_sym_SLASH] = ACTIONS(7253), - [anon_sym_PERCENT] = ACTIONS(7253), - [anon_sym_PIPE_PIPE] = ACTIONS(7255), - [anon_sym_AMP_AMP] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7253), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_EQ_EQ] = ACTIONS(7255), - [anon_sym_BANG_EQ] = ACTIONS(7255), - [anon_sym_GT] = ACTIONS(7253), - [anon_sym_GT_EQ] = ACTIONS(7253), - [anon_sym_LT_EQ] = ACTIONS(7253), - [anon_sym_LT] = ACTIONS(7253), - [anon_sym_LT_LT] = ACTIONS(7253), - [anon_sym_GT_GT] = ACTIONS(7253), - [anon_sym___extension__] = ACTIONS(7255), - [anon_sym___attribute__] = ACTIONS(7255), - [anon_sym___attribute] = ACTIONS(7253), - [anon_sym_LBRACE] = ACTIONS(7255), - [anon_sym_LBRACK] = ACTIONS(7255), - [anon_sym_EQ] = ACTIONS(7253), - [anon_sym_const] = ACTIONS(7253), - [anon_sym_constexpr] = ACTIONS(7255), - [anon_sym_volatile] = ACTIONS(7255), - [anon_sym_restrict] = ACTIONS(7255), - [anon_sym___restrict__] = ACTIONS(7255), - [anon_sym__Atomic] = ACTIONS(7255), - [anon_sym__Noreturn] = ACTIONS(7255), - [anon_sym_noreturn] = ACTIONS(7255), - [anon_sym__Nonnull] = ACTIONS(7255), - [anon_sym_mutable] = ACTIONS(7255), - [anon_sym_constinit] = ACTIONS(7255), - [anon_sym_consteval] = ACTIONS(7255), - [anon_sym_alignas] = ACTIONS(7255), - [anon_sym__Alignas] = ACTIONS(7255), - [anon_sym_QMARK] = ACTIONS(7255), - [anon_sym_STAR_EQ] = ACTIONS(7255), - [anon_sym_SLASH_EQ] = ACTIONS(7255), - [anon_sym_PERCENT_EQ] = ACTIONS(7255), - [anon_sym_PLUS_EQ] = ACTIONS(7255), - [anon_sym_DASH_EQ] = ACTIONS(7255), - [anon_sym_LT_LT_EQ] = ACTIONS(7255), - [anon_sym_GT_GT_EQ] = ACTIONS(7253), - [anon_sym_AMP_EQ] = ACTIONS(7255), - [anon_sym_CARET_EQ] = ACTIONS(7255), - [anon_sym_PIPE_EQ] = ACTIONS(7255), - [anon_sym_and_eq] = ACTIONS(7255), - [anon_sym_or_eq] = ACTIONS(7255), - [anon_sym_xor_eq] = ACTIONS(7255), - [anon_sym_LT_EQ_GT] = ACTIONS(7255), - [anon_sym_or] = ACTIONS(7253), - [anon_sym_and] = ACTIONS(7253), - [anon_sym_bitor] = ACTIONS(7255), - [anon_sym_xor] = ACTIONS(7253), - [anon_sym_bitand] = ACTIONS(7255), - [anon_sym_not_eq] = ACTIONS(7255), - [anon_sym_DASH_DASH] = ACTIONS(7255), - [anon_sym_PLUS_PLUS] = ACTIONS(7255), - [anon_sym_DOT] = ACTIONS(7253), - [anon_sym_DOT_STAR] = ACTIONS(7255), - [anon_sym_DASH_GT] = ACTIONS(7255), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7255), - [anon_sym_override] = ACTIONS(7255), - [anon_sym_GT2] = ACTIONS(7255), - [anon_sym_requires] = ACTIONS(7255), - }, - [STATE(2807)] = { - [sym_argument_list] = STATE(5523), - [sym_initializer_list] = STATE(5932), - [aux_sym_sized_type_specifier_repeat1] = STATE(2547), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(8167), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_signed] = ACTIONS(8154), - [anon_sym_unsigned] = ACTIONS(8154), - [anon_sym_long] = ACTIONS(8154), - [anon_sym_short] = ACTIONS(8154), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6800), - [anon_sym_and] = ACTIONS(6800), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6800), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6798), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6800), - }, - [STATE(2808)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7221), - [anon_sym_COMMA] = ACTIONS(7221), - [anon_sym_LPAREN2] = ACTIONS(7221), - [anon_sym_DASH] = ACTIONS(7219), - [anon_sym_PLUS] = ACTIONS(7219), - [anon_sym_STAR] = ACTIONS(7219), - [anon_sym_SLASH] = ACTIONS(7219), - [anon_sym_PERCENT] = ACTIONS(7219), - [anon_sym_PIPE_PIPE] = ACTIONS(7221), - [anon_sym_AMP_AMP] = ACTIONS(7221), - [anon_sym_PIPE] = ACTIONS(7219), - [anon_sym_CARET] = ACTIONS(7219), - [anon_sym_AMP] = ACTIONS(7219), - [anon_sym_EQ_EQ] = ACTIONS(7221), - [anon_sym_BANG_EQ] = ACTIONS(7221), - [anon_sym_GT] = ACTIONS(7219), - [anon_sym_GT_EQ] = ACTIONS(7221), - [anon_sym_LT_EQ] = ACTIONS(7219), - [anon_sym_LT] = ACTIONS(7219), - [anon_sym_LT_LT] = ACTIONS(7219), - [anon_sym_GT_GT] = ACTIONS(7219), - [anon_sym___extension__] = ACTIONS(7221), - [anon_sym___attribute__] = ACTIONS(7221), - [anon_sym___attribute] = ACTIONS(7219), - [anon_sym_LBRACE] = ACTIONS(7221), - [anon_sym_LBRACK] = ACTIONS(7221), - [anon_sym_RBRACK] = ACTIONS(7221), - [anon_sym_EQ] = ACTIONS(7219), - [anon_sym_const] = ACTIONS(7219), - [anon_sym_constexpr] = ACTIONS(7221), - [anon_sym_volatile] = ACTIONS(7221), - [anon_sym_restrict] = ACTIONS(7221), - [anon_sym___restrict__] = ACTIONS(7221), - [anon_sym__Atomic] = ACTIONS(7221), - [anon_sym__Noreturn] = ACTIONS(7221), - [anon_sym_noreturn] = ACTIONS(7221), - [anon_sym__Nonnull] = ACTIONS(7221), - [anon_sym_mutable] = ACTIONS(7221), - [anon_sym_constinit] = ACTIONS(7221), - [anon_sym_consteval] = ACTIONS(7221), - [anon_sym_alignas] = ACTIONS(7221), - [anon_sym__Alignas] = ACTIONS(7221), - [anon_sym_QMARK] = ACTIONS(7221), - [anon_sym_STAR_EQ] = ACTIONS(7221), - [anon_sym_SLASH_EQ] = ACTIONS(7221), - [anon_sym_PERCENT_EQ] = ACTIONS(7221), - [anon_sym_PLUS_EQ] = ACTIONS(7221), - [anon_sym_DASH_EQ] = ACTIONS(7221), - [anon_sym_LT_LT_EQ] = ACTIONS(7221), - [anon_sym_GT_GT_EQ] = ACTIONS(7221), - [anon_sym_AMP_EQ] = ACTIONS(7221), - [anon_sym_CARET_EQ] = ACTIONS(7221), - [anon_sym_PIPE_EQ] = ACTIONS(7221), - [anon_sym_and_eq] = ACTIONS(7221), - [anon_sym_or_eq] = ACTIONS(7221), - [anon_sym_xor_eq] = ACTIONS(7221), - [anon_sym_LT_EQ_GT] = ACTIONS(7221), - [anon_sym_or] = ACTIONS(7219), - [anon_sym_and] = ACTIONS(7219), - [anon_sym_bitor] = ACTIONS(7221), - [anon_sym_xor] = ACTIONS(7219), - [anon_sym_bitand] = ACTIONS(7221), - [anon_sym_not_eq] = ACTIONS(7221), - [anon_sym_DASH_DASH] = ACTIONS(7221), - [anon_sym_PLUS_PLUS] = ACTIONS(7221), - [anon_sym_DOT] = ACTIONS(7219), - [anon_sym_DOT_STAR] = ACTIONS(7221), - [anon_sym_DASH_GT] = ACTIONS(7221), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7221), - [anon_sym_override] = ACTIONS(7221), - [anon_sym_requires] = ACTIONS(7221), - }, - [STATE(2809)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), - [anon_sym_COMMA] = ACTIONS(7261), - [anon_sym_LPAREN2] = ACTIONS(7261), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_STAR] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7259), - [anon_sym_PERCENT] = ACTIONS(7259), - [anon_sym_PIPE_PIPE] = ACTIONS(7261), - [anon_sym_AMP_AMP] = ACTIONS(7261), - [anon_sym_PIPE] = ACTIONS(7259), - [anon_sym_CARET] = ACTIONS(7259), - [anon_sym_AMP] = ACTIONS(7259), - [anon_sym_EQ_EQ] = ACTIONS(7261), - [anon_sym_BANG_EQ] = ACTIONS(7261), - [anon_sym_GT] = ACTIONS(7259), - [anon_sym_GT_EQ] = ACTIONS(7261), - [anon_sym_LT_EQ] = ACTIONS(7259), - [anon_sym_LT] = ACTIONS(7259), - [anon_sym_LT_LT] = ACTIONS(7259), - [anon_sym_GT_GT] = ACTIONS(7259), - [anon_sym___extension__] = ACTIONS(7261), - [anon_sym___attribute__] = ACTIONS(7261), - [anon_sym___attribute] = ACTIONS(7259), - [anon_sym_LBRACE] = ACTIONS(7261), - [anon_sym_LBRACK] = ACTIONS(7261), - [anon_sym_RBRACK] = ACTIONS(7261), - [anon_sym_EQ] = ACTIONS(7259), - [anon_sym_const] = ACTIONS(7259), - [anon_sym_constexpr] = ACTIONS(7261), - [anon_sym_volatile] = ACTIONS(7261), - [anon_sym_restrict] = ACTIONS(7261), - [anon_sym___restrict__] = ACTIONS(7261), - [anon_sym__Atomic] = ACTIONS(7261), - [anon_sym__Noreturn] = ACTIONS(7261), - [anon_sym_noreturn] = ACTIONS(7261), - [anon_sym__Nonnull] = ACTIONS(7261), - [anon_sym_mutable] = ACTIONS(7261), - [anon_sym_constinit] = ACTIONS(7261), - [anon_sym_consteval] = ACTIONS(7261), - [anon_sym_alignas] = ACTIONS(7261), - [anon_sym__Alignas] = ACTIONS(7261), - [anon_sym_QMARK] = ACTIONS(7261), - [anon_sym_STAR_EQ] = ACTIONS(7261), - [anon_sym_SLASH_EQ] = ACTIONS(7261), - [anon_sym_PERCENT_EQ] = ACTIONS(7261), - [anon_sym_PLUS_EQ] = ACTIONS(7261), - [anon_sym_DASH_EQ] = ACTIONS(7261), - [anon_sym_LT_LT_EQ] = ACTIONS(7261), - [anon_sym_GT_GT_EQ] = ACTIONS(7261), - [anon_sym_AMP_EQ] = ACTIONS(7261), - [anon_sym_CARET_EQ] = ACTIONS(7261), - [anon_sym_PIPE_EQ] = ACTIONS(7261), - [anon_sym_and_eq] = ACTIONS(7261), - [anon_sym_or_eq] = ACTIONS(7261), - [anon_sym_xor_eq] = ACTIONS(7261), - [anon_sym_LT_EQ_GT] = ACTIONS(7261), - [anon_sym_or] = ACTIONS(7259), - [anon_sym_and] = ACTIONS(7259), - [anon_sym_bitor] = ACTIONS(7261), - [anon_sym_xor] = ACTIONS(7259), - [anon_sym_bitand] = ACTIONS(7261), - [anon_sym_not_eq] = ACTIONS(7261), - [anon_sym_DASH_DASH] = ACTIONS(7261), - [anon_sym_PLUS_PLUS] = ACTIONS(7261), - [anon_sym_DOT] = ACTIONS(7259), - [anon_sym_DOT_STAR] = ACTIONS(7261), - [anon_sym_DASH_GT] = ACTIONS(7261), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7261), - [anon_sym_override] = ACTIONS(7261), - [anon_sym_requires] = ACTIONS(7261), - }, - [STATE(2810)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7335), - [anon_sym_COMMA] = ACTIONS(7335), - [anon_sym_LPAREN2] = ACTIONS(7335), - [anon_sym_DASH] = ACTIONS(7333), - [anon_sym_PLUS] = ACTIONS(7333), - [anon_sym_STAR] = ACTIONS(7333), - [anon_sym_SLASH] = ACTIONS(7333), - [anon_sym_PERCENT] = ACTIONS(7333), - [anon_sym_PIPE_PIPE] = ACTIONS(7335), - [anon_sym_AMP_AMP] = ACTIONS(7335), - [anon_sym_PIPE] = ACTIONS(7333), - [anon_sym_CARET] = ACTIONS(7333), - [anon_sym_AMP] = ACTIONS(7333), - [anon_sym_EQ_EQ] = ACTIONS(7335), - [anon_sym_BANG_EQ] = ACTIONS(7335), - [anon_sym_GT] = ACTIONS(7333), - [anon_sym_GT_EQ] = ACTIONS(7335), - [anon_sym_LT_EQ] = ACTIONS(7333), - [anon_sym_LT] = ACTIONS(7333), - [anon_sym_LT_LT] = ACTIONS(7333), - [anon_sym_GT_GT] = ACTIONS(7333), - [anon_sym___extension__] = ACTIONS(7335), - [anon_sym___attribute__] = ACTIONS(7335), - [anon_sym___attribute] = ACTIONS(7333), - [anon_sym_LBRACE] = ACTIONS(7335), - [anon_sym_LBRACK] = ACTIONS(7335), - [anon_sym_RBRACK] = ACTIONS(7335), - [anon_sym_EQ] = ACTIONS(7333), - [anon_sym_const] = ACTIONS(7333), - [anon_sym_constexpr] = ACTIONS(7335), - [anon_sym_volatile] = ACTIONS(7335), - [anon_sym_restrict] = ACTIONS(7335), - [anon_sym___restrict__] = ACTIONS(7335), - [anon_sym__Atomic] = ACTIONS(7335), - [anon_sym__Noreturn] = ACTIONS(7335), - [anon_sym_noreturn] = ACTIONS(7335), - [anon_sym__Nonnull] = ACTIONS(7335), - [anon_sym_mutable] = ACTIONS(7335), - [anon_sym_constinit] = ACTIONS(7335), - [anon_sym_consteval] = ACTIONS(7335), - [anon_sym_alignas] = ACTIONS(7335), - [anon_sym__Alignas] = ACTIONS(7335), - [anon_sym_QMARK] = ACTIONS(7335), - [anon_sym_STAR_EQ] = ACTIONS(7335), - [anon_sym_SLASH_EQ] = ACTIONS(7335), - [anon_sym_PERCENT_EQ] = ACTIONS(7335), - [anon_sym_PLUS_EQ] = ACTIONS(7335), - [anon_sym_DASH_EQ] = ACTIONS(7335), - [anon_sym_LT_LT_EQ] = ACTIONS(7335), - [anon_sym_GT_GT_EQ] = ACTIONS(7335), - [anon_sym_AMP_EQ] = ACTIONS(7335), - [anon_sym_CARET_EQ] = ACTIONS(7335), - [anon_sym_PIPE_EQ] = ACTIONS(7335), - [anon_sym_and_eq] = ACTIONS(7335), - [anon_sym_or_eq] = ACTIONS(7335), - [anon_sym_xor_eq] = ACTIONS(7335), - [anon_sym_LT_EQ_GT] = ACTIONS(7335), - [anon_sym_or] = ACTIONS(7333), - [anon_sym_and] = ACTIONS(7333), - [anon_sym_bitor] = ACTIONS(7335), - [anon_sym_xor] = ACTIONS(7333), - [anon_sym_bitand] = ACTIONS(7335), - [anon_sym_not_eq] = ACTIONS(7335), - [anon_sym_DASH_DASH] = ACTIONS(7335), - [anon_sym_PLUS_PLUS] = ACTIONS(7335), - [anon_sym_DOT] = ACTIONS(7333), - [anon_sym_DOT_STAR] = ACTIONS(7335), - [anon_sym_DASH_GT] = ACTIONS(7335), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7335), - [anon_sym_override] = ACTIONS(7335), - [anon_sym_requires] = ACTIONS(7335), - }, - [STATE(2811)] = { - [sym_template_argument_list] = STATE(2859), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6203), - [anon_sym_COMMA] = ACTIONS(6203), - [anon_sym_RPAREN] = ACTIONS(6205), - [anon_sym_LPAREN2] = ACTIONS(6205), - [anon_sym_DASH] = ACTIONS(6210), - [anon_sym_PLUS] = ACTIONS(6210), - [anon_sym_STAR] = ACTIONS(6212), - [anon_sym_SLASH] = ACTIONS(6210), - [anon_sym_PERCENT] = ACTIONS(6210), - [anon_sym_PIPE_PIPE] = ACTIONS(6203), - [anon_sym_AMP_AMP] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(6210), - [anon_sym_CARET] = ACTIONS(6210), - [anon_sym_AMP] = ACTIONS(6212), - [anon_sym_EQ_EQ] = ACTIONS(6203), - [anon_sym_BANG_EQ] = ACTIONS(6203), - [anon_sym_GT] = ACTIONS(6210), - [anon_sym_GT_EQ] = ACTIONS(6203), - [anon_sym_LT_EQ] = ACTIONS(6210), - [anon_sym_LT] = ACTIONS(8492), - [anon_sym_LT_LT] = ACTIONS(6210), - [anon_sym_GT_GT] = ACTIONS(6210), - [anon_sym___extension__] = ACTIONS(6208), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(6208), - [anon_sym_LBRACK] = ACTIONS(6205), - [anon_sym_EQ] = ACTIONS(6210), - [anon_sym_const] = ACTIONS(6201), - [anon_sym_constexpr] = ACTIONS(6208), - [anon_sym_volatile] = ACTIONS(6208), - [anon_sym_restrict] = ACTIONS(6208), - [anon_sym___restrict__] = ACTIONS(6208), - [anon_sym__Atomic] = ACTIONS(6208), - [anon_sym__Noreturn] = ACTIONS(6208), - [anon_sym_noreturn] = ACTIONS(6208), - [anon_sym__Nonnull] = ACTIONS(6208), - [anon_sym_mutable] = ACTIONS(6208), - [anon_sym_constinit] = ACTIONS(6208), - [anon_sym_consteval] = ACTIONS(6208), - [anon_sym_alignas] = ACTIONS(6208), - [anon_sym__Alignas] = ACTIONS(6208), - [anon_sym_QMARK] = ACTIONS(6203), - [anon_sym_STAR_EQ] = ACTIONS(6203), - [anon_sym_SLASH_EQ] = ACTIONS(6203), - [anon_sym_PERCENT_EQ] = ACTIONS(6203), - [anon_sym_PLUS_EQ] = ACTIONS(6203), - [anon_sym_DASH_EQ] = ACTIONS(6203), - [anon_sym_LT_LT_EQ] = ACTIONS(6203), - [anon_sym_GT_GT_EQ] = ACTIONS(6203), - [anon_sym_AMP_EQ] = ACTIONS(6203), - [anon_sym_CARET_EQ] = ACTIONS(6203), - [anon_sym_PIPE_EQ] = ACTIONS(6203), - [anon_sym_and_eq] = ACTIONS(6203), - [anon_sym_or_eq] = ACTIONS(6203), - [anon_sym_xor_eq] = ACTIONS(6203), - [anon_sym_LT_EQ_GT] = ACTIONS(6203), - [anon_sym_or] = ACTIONS(6210), - [anon_sym_and] = ACTIONS(6210), - [anon_sym_bitor] = ACTIONS(6203), - [anon_sym_xor] = ACTIONS(6210), - [anon_sym_bitand] = ACTIONS(6203), - [anon_sym_not_eq] = ACTIONS(6203), - [anon_sym_DASH_DASH] = ACTIONS(6203), - [anon_sym_PLUS_PLUS] = ACTIONS(6203), - [anon_sym_DOT] = ACTIONS(6210), - [anon_sym_DOT_STAR] = ACTIONS(6203), - [anon_sym_DASH_GT] = ACTIONS(6210), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6208), - [anon_sym_decltype] = ACTIONS(6208), - [anon_sym_DASH_GT_STAR] = ACTIONS(6203), - }, - [STATE(2812)] = { - [sym_catch_clause] = STATE(2836), - [aux_sym_constructor_try_statement_repeat1] = STATE(2836), - [sym_identifier] = ACTIONS(3148), - [aux_sym_preproc_def_token1] = ACTIONS(3148), - [aux_sym_preproc_if_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3148), - [sym_preproc_directive] = ACTIONS(3148), - [anon_sym_LPAREN2] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym___extension__] = ACTIONS(3148), - [anon_sym_typedef] = ACTIONS(3148), - [anon_sym_virtual] = ACTIONS(3148), - [anon_sym_extern] = ACTIONS(3148), - [anon_sym___attribute__] = ACTIONS(3148), - [anon_sym___attribute] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3150), - [anon_sym___declspec] = ACTIONS(3148), - [anon_sym___based] = ACTIONS(3148), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_signed] = ACTIONS(3148), - [anon_sym_unsigned] = ACTIONS(3148), - [anon_sym_long] = ACTIONS(3148), - [anon_sym_short] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_register] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym___inline] = ACTIONS(3148), - [anon_sym___inline__] = ACTIONS(3148), - [anon_sym___forceinline] = ACTIONS(3148), - [anon_sym_thread_local] = ACTIONS(3148), - [anon_sym___thread] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_constexpr] = ACTIONS(3148), - [anon_sym_volatile] = ACTIONS(3148), - [anon_sym_restrict] = ACTIONS(3148), - [anon_sym___restrict__] = ACTIONS(3148), - [anon_sym__Atomic] = ACTIONS(3148), - [anon_sym__Noreturn] = ACTIONS(3148), - [anon_sym_noreturn] = ACTIONS(3148), - [anon_sym__Nonnull] = ACTIONS(3148), - [anon_sym_mutable] = ACTIONS(3148), - [anon_sym_constinit] = ACTIONS(3148), - [anon_sym_consteval] = ACTIONS(3148), - [anon_sym_alignas] = ACTIONS(3148), - [anon_sym__Alignas] = ACTIONS(3148), - [sym_primitive_type] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(3148), - [anon_sym_union] = ACTIONS(3148), - [anon_sym_typename] = ACTIONS(3148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3148), - [anon_sym_decltype] = ACTIONS(3148), - [anon_sym_explicit] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_template] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_friend] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_static_assert] = ACTIONS(3148), - [anon_sym_catch] = ACTIONS(8490), - [anon_sym_LBRACK_COLON] = ACTIONS(3150), - }, - [STATE(2813)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7221), - [anon_sym_COMMA] = ACTIONS(7221), - [anon_sym_LPAREN2] = ACTIONS(7221), - [anon_sym_DASH] = ACTIONS(7219), - [anon_sym_PLUS] = ACTIONS(7219), - [anon_sym_STAR] = ACTIONS(7219), - [anon_sym_SLASH] = ACTIONS(7219), - [anon_sym_PERCENT] = ACTIONS(7219), - [anon_sym_PIPE_PIPE] = ACTIONS(7221), - [anon_sym_AMP_AMP] = ACTIONS(7221), - [anon_sym_PIPE] = ACTIONS(7219), - [anon_sym_CARET] = ACTIONS(7219), - [anon_sym_AMP] = ACTIONS(7219), - [anon_sym_EQ_EQ] = ACTIONS(7221), - [anon_sym_BANG_EQ] = ACTIONS(7221), - [anon_sym_GT] = ACTIONS(7219), - [anon_sym_GT_EQ] = ACTIONS(7219), - [anon_sym_LT_EQ] = ACTIONS(7219), - [anon_sym_LT] = ACTIONS(7219), - [anon_sym_LT_LT] = ACTIONS(7219), - [anon_sym_GT_GT] = ACTIONS(7219), - [anon_sym___extension__] = ACTIONS(7221), - [anon_sym___attribute__] = ACTIONS(7221), - [anon_sym___attribute] = ACTIONS(7219), - [anon_sym_LBRACE] = ACTIONS(7221), - [anon_sym_LBRACK] = ACTIONS(7221), - [anon_sym_EQ] = ACTIONS(7219), - [anon_sym_const] = ACTIONS(7219), - [anon_sym_constexpr] = ACTIONS(7221), - [anon_sym_volatile] = ACTIONS(7221), - [anon_sym_restrict] = ACTIONS(7221), - [anon_sym___restrict__] = ACTIONS(7221), - [anon_sym__Atomic] = ACTIONS(7221), - [anon_sym__Noreturn] = ACTIONS(7221), - [anon_sym_noreturn] = ACTIONS(7221), - [anon_sym__Nonnull] = ACTIONS(7221), - [anon_sym_mutable] = ACTIONS(7221), - [anon_sym_constinit] = ACTIONS(7221), - [anon_sym_consteval] = ACTIONS(7221), - [anon_sym_alignas] = ACTIONS(7221), - [anon_sym__Alignas] = ACTIONS(7221), - [anon_sym_QMARK] = ACTIONS(7221), - [anon_sym_STAR_EQ] = ACTIONS(7221), - [anon_sym_SLASH_EQ] = ACTIONS(7221), - [anon_sym_PERCENT_EQ] = ACTIONS(7221), - [anon_sym_PLUS_EQ] = ACTIONS(7221), - [anon_sym_DASH_EQ] = ACTIONS(7221), - [anon_sym_LT_LT_EQ] = ACTIONS(7221), - [anon_sym_GT_GT_EQ] = ACTIONS(7219), - [anon_sym_AMP_EQ] = ACTIONS(7221), - [anon_sym_CARET_EQ] = ACTIONS(7221), - [anon_sym_PIPE_EQ] = ACTIONS(7221), - [anon_sym_and_eq] = ACTIONS(7221), - [anon_sym_or_eq] = ACTIONS(7221), - [anon_sym_xor_eq] = ACTIONS(7221), - [anon_sym_LT_EQ_GT] = ACTIONS(7221), - [anon_sym_or] = ACTIONS(7219), - [anon_sym_and] = ACTIONS(7219), - [anon_sym_bitor] = ACTIONS(7221), - [anon_sym_xor] = ACTIONS(7219), - [anon_sym_bitand] = ACTIONS(7221), - [anon_sym_not_eq] = ACTIONS(7221), - [anon_sym_DASH_DASH] = ACTIONS(7221), - [anon_sym_PLUS_PLUS] = ACTIONS(7221), - [anon_sym_DOT] = ACTIONS(7219), - [anon_sym_DOT_STAR] = ACTIONS(7221), - [anon_sym_DASH_GT] = ACTIONS(7221), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7221), - [anon_sym_override] = ACTIONS(7221), - [anon_sym_GT2] = ACTIONS(7221), - [anon_sym_requires] = ACTIONS(7221), - }, - [STATE(2814)] = { - [sym_decltype_auto] = STATE(3396), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6800), - [anon_sym_and] = ACTIONS(6800), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6800), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6798), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8495), - [anon_sym_decltype] = ACTIONS(6592), - [anon_sym_final] = ACTIONS(6800), - [anon_sym_override] = ACTIONS(6800), - [anon_sym_requires] = ACTIONS(6800), - [anon_sym_DASH_GT_STAR] = ACTIONS(6800), - }, - [STATE(2815)] = { - [sym_decltype_auto] = STATE(2967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(7183), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6798), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8156), - [anon_sym_decltype] = ACTIONS(6574), - [anon_sym_DASH_GT_STAR] = ACTIONS(6800), - }, - [STATE(2816)] = { - [sym_attribute_specifier] = STATE(4003), - [sym_attribute_declaration] = STATE(4328), - [sym_gnu_asm_expression] = STATE(8980), - [sym_virtual_specifier] = STATE(4455), - [sym__function_attributes_end] = STATE(4190), - [sym__function_postfix] = STATE(4846), - [sym_trailing_return_type] = STATE(4230), - [sym_requires_clause] = STATE(4846), - [aux_sym_type_definition_repeat1] = STATE(4003), - [aux_sym_attributed_declarator_repeat1] = STATE(4328), - [aux_sym__function_postfix_repeat1] = STATE(4455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_RPAREN] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym___attribute__] = ACTIONS(6282), - [anon_sym___attribute] = ACTIONS(6284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7627), - [anon_sym_or_eq] = ACTIONS(7627), - [anon_sym_xor_eq] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(7994), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7997), - [anon_sym_override] = ACTIONS(7997), - [anon_sym_requires] = ACTIONS(8000), - [anon_sym_DASH_GT_STAR] = ACTIONS(7627), - }, - [STATE(2817)] = { - [sym_attribute_specifier] = STATE(4003), - [sym_attribute_declaration] = STATE(4328), - [sym_gnu_asm_expression] = STATE(8980), - [sym_virtual_specifier] = STATE(4455), - [sym__function_attributes_end] = STATE(4207), - [sym__function_postfix] = STATE(4846), - [sym_trailing_return_type] = STATE(4274), - [sym_requires_clause] = STATE(4846), - [aux_sym_type_definition_repeat1] = STATE(4003), - [aux_sym_attributed_declarator_repeat1] = STATE(4328), - [aux_sym__function_postfix_repeat1] = STATE(4455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_RPAREN] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym___attribute__] = ACTIONS(6282), - [anon_sym___attribute] = ACTIONS(6284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7627), - [anon_sym_or_eq] = ACTIONS(7627), - [anon_sym_xor_eq] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(7994), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6305), - [anon_sym_override] = ACTIONS(6305), - [anon_sym_requires] = ACTIONS(6307), - [anon_sym_DASH_GT_STAR] = ACTIONS(7627), - }, - [STATE(2818)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), - [anon_sym_COMMA] = ACTIONS(7255), - [anon_sym_LPAREN2] = ACTIONS(7255), - [anon_sym_DASH] = ACTIONS(7253), - [anon_sym_PLUS] = ACTIONS(7253), - [anon_sym_STAR] = ACTIONS(7253), - [anon_sym_SLASH] = ACTIONS(7253), - [anon_sym_PERCENT] = ACTIONS(7253), - [anon_sym_PIPE_PIPE] = ACTIONS(7255), - [anon_sym_AMP_AMP] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7253), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_EQ_EQ] = ACTIONS(7255), - [anon_sym_BANG_EQ] = ACTIONS(7255), - [anon_sym_GT] = ACTIONS(7253), - [anon_sym_GT_EQ] = ACTIONS(7255), - [anon_sym_LT_EQ] = ACTIONS(7253), - [anon_sym_LT] = ACTIONS(7253), - [anon_sym_LT_LT] = ACTIONS(7253), - [anon_sym_GT_GT] = ACTIONS(7253), - [anon_sym___extension__] = ACTIONS(7255), - [anon_sym___attribute__] = ACTIONS(7255), - [anon_sym___attribute] = ACTIONS(7253), - [anon_sym_LBRACE] = ACTIONS(7255), - [anon_sym_LBRACK] = ACTIONS(7255), - [anon_sym_RBRACK] = ACTIONS(7255), - [anon_sym_EQ] = ACTIONS(7253), - [anon_sym_const] = ACTIONS(7253), - [anon_sym_constexpr] = ACTIONS(7255), - [anon_sym_volatile] = ACTIONS(7255), - [anon_sym_restrict] = ACTIONS(7255), - [anon_sym___restrict__] = ACTIONS(7255), - [anon_sym__Atomic] = ACTIONS(7255), - [anon_sym__Noreturn] = ACTIONS(7255), - [anon_sym_noreturn] = ACTIONS(7255), - [anon_sym__Nonnull] = ACTIONS(7255), - [anon_sym_mutable] = ACTIONS(7255), - [anon_sym_constinit] = ACTIONS(7255), - [anon_sym_consteval] = ACTIONS(7255), - [anon_sym_alignas] = ACTIONS(7255), - [anon_sym__Alignas] = ACTIONS(7255), - [anon_sym_QMARK] = ACTIONS(7255), - [anon_sym_STAR_EQ] = ACTIONS(7255), - [anon_sym_SLASH_EQ] = ACTIONS(7255), - [anon_sym_PERCENT_EQ] = ACTIONS(7255), - [anon_sym_PLUS_EQ] = ACTIONS(7255), - [anon_sym_DASH_EQ] = ACTIONS(7255), - [anon_sym_LT_LT_EQ] = ACTIONS(7255), - [anon_sym_GT_GT_EQ] = ACTIONS(7255), - [anon_sym_AMP_EQ] = ACTIONS(7255), - [anon_sym_CARET_EQ] = ACTIONS(7255), - [anon_sym_PIPE_EQ] = ACTIONS(7255), - [anon_sym_and_eq] = ACTIONS(7255), - [anon_sym_or_eq] = ACTIONS(7255), - [anon_sym_xor_eq] = ACTIONS(7255), - [anon_sym_LT_EQ_GT] = ACTIONS(7255), - [anon_sym_or] = ACTIONS(7253), - [anon_sym_and] = ACTIONS(7253), - [anon_sym_bitor] = ACTIONS(7255), - [anon_sym_xor] = ACTIONS(7253), - [anon_sym_bitand] = ACTIONS(7255), - [anon_sym_not_eq] = ACTIONS(7255), - [anon_sym_DASH_DASH] = ACTIONS(7255), - [anon_sym_PLUS_PLUS] = ACTIONS(7255), - [anon_sym_DOT] = ACTIONS(7253), - [anon_sym_DOT_STAR] = ACTIONS(7255), - [anon_sym_DASH_GT] = ACTIONS(7255), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7255), - [anon_sym_override] = ACTIONS(7255), - [anon_sym_requires] = ACTIONS(7255), - }, - [STATE(2819)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6808), - [anon_sym_COMMA] = ACTIONS(6808), - [anon_sym_RPAREN] = ACTIONS(6808), - [anon_sym_LPAREN2] = ACTIONS(6808), - [anon_sym_DASH] = ACTIONS(6806), - [anon_sym_PLUS] = ACTIONS(6806), - [anon_sym_STAR] = ACTIONS(6806), - [anon_sym_SLASH] = ACTIONS(6806), - [anon_sym_PERCENT] = ACTIONS(6806), - [anon_sym_PIPE_PIPE] = ACTIONS(6808), - [anon_sym_AMP_AMP] = ACTIONS(6808), - [anon_sym_PIPE] = ACTIONS(6806), - [anon_sym_CARET] = ACTIONS(6806), - [anon_sym_AMP] = ACTIONS(6806), - [anon_sym_EQ_EQ] = ACTIONS(6808), - [anon_sym_BANG_EQ] = ACTIONS(6808), - [anon_sym_GT] = ACTIONS(6806), - [anon_sym_GT_EQ] = ACTIONS(6808), - [anon_sym_LT_EQ] = ACTIONS(6806), - [anon_sym_LT] = ACTIONS(6806), - [anon_sym_LT_LT] = ACTIONS(6806), - [anon_sym_GT_GT] = ACTIONS(6806), - [anon_sym___extension__] = ACTIONS(6808), - [sym_ms_restrict_modifier] = ACTIONS(6806), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6808), - [sym_ms_signed_ptr_modifier] = ACTIONS(6808), - [anon_sym__unaligned] = ACTIONS(6808), - [anon_sym___unaligned] = ACTIONS(6808), - [anon_sym_LBRACK] = ACTIONS(6808), - [anon_sym_EQ] = ACTIONS(6806), - [anon_sym_const] = ACTIONS(6806), - [anon_sym_constexpr] = ACTIONS(6808), - [anon_sym_volatile] = ACTIONS(6808), - [anon_sym_restrict] = ACTIONS(6808), - [anon_sym___restrict__] = ACTIONS(6808), - [anon_sym__Atomic] = ACTIONS(6808), - [anon_sym__Noreturn] = ACTIONS(6808), - [anon_sym_noreturn] = ACTIONS(6808), - [anon_sym__Nonnull] = ACTIONS(6808), - [anon_sym_mutable] = ACTIONS(6808), - [anon_sym_constinit] = ACTIONS(6808), - [anon_sym_consteval] = ACTIONS(6808), - [anon_sym_alignas] = ACTIONS(6808), - [anon_sym__Alignas] = ACTIONS(6808), - [anon_sym_QMARK] = ACTIONS(6808), - [anon_sym_STAR_EQ] = ACTIONS(6808), - [anon_sym_SLASH_EQ] = ACTIONS(6808), - [anon_sym_PERCENT_EQ] = ACTIONS(6808), - [anon_sym_PLUS_EQ] = ACTIONS(6808), - [anon_sym_DASH_EQ] = ACTIONS(6808), - [anon_sym_LT_LT_EQ] = ACTIONS(6808), - [anon_sym_GT_GT_EQ] = ACTIONS(6808), - [anon_sym_AMP_EQ] = ACTIONS(6808), - [anon_sym_CARET_EQ] = ACTIONS(6808), - [anon_sym_PIPE_EQ] = ACTIONS(6808), - [anon_sym_LT_EQ_GT] = ACTIONS(6808), - [anon_sym_or] = ACTIONS(6808), - [anon_sym_and] = ACTIONS(6808), - [anon_sym_bitor] = ACTIONS(6808), - [anon_sym_xor] = ACTIONS(6808), - [anon_sym_bitand] = ACTIONS(6808), - [anon_sym_not_eq] = ACTIONS(6808), - [anon_sym_DASH_DASH] = ACTIONS(6808), - [anon_sym_PLUS_PLUS] = ACTIONS(6808), - [anon_sym_DOT] = ACTIONS(6806), - [anon_sym_DOT_STAR] = ACTIONS(6808), - [anon_sym_DASH_GT] = ACTIONS(6806), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6808), - [anon_sym_override] = ACTIONS(6808), - [anon_sym_requires] = ACTIONS(6808), - [anon_sym_DASH_GT_STAR] = ACTIONS(6808), - }, - [STATE(2820)] = { - [sym_catch_clause] = STATE(2820), - [aux_sym_constructor_try_statement_repeat1] = STATE(2820), - [sym_identifier] = ACTIONS(3137), - [aux_sym_preproc_def_token1] = ACTIONS(3137), - [aux_sym_preproc_if_token1] = ACTIONS(3137), - [aux_sym_preproc_if_token2] = ACTIONS(3137), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3137), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3137), - [sym_preproc_directive] = ACTIONS(3137), - [anon_sym_LPAREN2] = ACTIONS(3139), - [anon_sym_TILDE] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3139), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym___extension__] = ACTIONS(3137), - [anon_sym_typedef] = ACTIONS(3137), - [anon_sym_virtual] = ACTIONS(3137), - [anon_sym_extern] = ACTIONS(3137), - [anon_sym___attribute__] = ACTIONS(3137), - [anon_sym___attribute] = ACTIONS(3137), - [anon_sym_using] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3139), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3139), - [anon_sym___declspec] = ACTIONS(3137), - [anon_sym___based] = ACTIONS(3137), - [anon_sym_signed] = ACTIONS(3137), - [anon_sym_unsigned] = ACTIONS(3137), - [anon_sym_long] = ACTIONS(3137), - [anon_sym_short] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_static] = ACTIONS(3137), - [anon_sym_register] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym___inline] = ACTIONS(3137), - [anon_sym___inline__] = ACTIONS(3137), - [anon_sym___forceinline] = ACTIONS(3137), - [anon_sym_thread_local] = ACTIONS(3137), - [anon_sym___thread] = ACTIONS(3137), - [anon_sym_const] = ACTIONS(3137), - [anon_sym_constexpr] = ACTIONS(3137), - [anon_sym_volatile] = ACTIONS(3137), - [anon_sym_restrict] = ACTIONS(3137), - [anon_sym___restrict__] = ACTIONS(3137), - [anon_sym__Atomic] = ACTIONS(3137), - [anon_sym__Noreturn] = ACTIONS(3137), - [anon_sym_noreturn] = ACTIONS(3137), - [anon_sym__Nonnull] = ACTIONS(3137), - [anon_sym_mutable] = ACTIONS(3137), - [anon_sym_constinit] = ACTIONS(3137), - [anon_sym_consteval] = ACTIONS(3137), - [anon_sym_alignas] = ACTIONS(3137), - [anon_sym__Alignas] = ACTIONS(3137), - [sym_primitive_type] = ACTIONS(3137), - [anon_sym_enum] = ACTIONS(3137), - [anon_sym_class] = ACTIONS(3137), - [anon_sym_struct] = ACTIONS(3137), - [anon_sym_union] = ACTIONS(3137), - [anon_sym_typename] = ACTIONS(3137), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3137), - [anon_sym_decltype] = ACTIONS(3137), - [anon_sym_explicit] = ACTIONS(3137), - [anon_sym_private] = ACTIONS(3137), - [anon_sym_template] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_friend] = ACTIONS(3137), - [anon_sym_public] = ACTIONS(3137), - [anon_sym_protected] = ACTIONS(3137), - [anon_sym_static_assert] = ACTIONS(3137), - [anon_sym_catch] = ACTIONS(8497), - [anon_sym_LBRACK_COLON] = ACTIONS(3139), - }, - [STATE(2821)] = { - [sym_catch_clause] = STATE(2820), - [aux_sym_constructor_try_statement_repeat1] = STATE(2820), - [sym_identifier] = ACTIONS(3148), - [aux_sym_preproc_def_token1] = ACTIONS(3148), - [aux_sym_preproc_if_token1] = ACTIONS(3148), - [aux_sym_preproc_if_token2] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3148), - [sym_preproc_directive] = ACTIONS(3148), - [anon_sym_LPAREN2] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_AMP] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym___extension__] = ACTIONS(3148), - [anon_sym_typedef] = ACTIONS(3148), - [anon_sym_virtual] = ACTIONS(3148), - [anon_sym_extern] = ACTIONS(3148), - [anon_sym___attribute__] = ACTIONS(3148), - [anon_sym___attribute] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(3150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3150), - [anon_sym___declspec] = ACTIONS(3148), - [anon_sym___based] = ACTIONS(3148), - [anon_sym_signed] = ACTIONS(3148), - [anon_sym_unsigned] = ACTIONS(3148), - [anon_sym_long] = ACTIONS(3148), - [anon_sym_short] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_register] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym___inline] = ACTIONS(3148), - [anon_sym___inline__] = ACTIONS(3148), - [anon_sym___forceinline] = ACTIONS(3148), - [anon_sym_thread_local] = ACTIONS(3148), - [anon_sym___thread] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_constexpr] = ACTIONS(3148), - [anon_sym_volatile] = ACTIONS(3148), - [anon_sym_restrict] = ACTIONS(3148), - [anon_sym___restrict__] = ACTIONS(3148), - [anon_sym__Atomic] = ACTIONS(3148), - [anon_sym__Noreturn] = ACTIONS(3148), - [anon_sym_noreturn] = ACTIONS(3148), - [anon_sym__Nonnull] = ACTIONS(3148), - [anon_sym_mutable] = ACTIONS(3148), - [anon_sym_constinit] = ACTIONS(3148), - [anon_sym_consteval] = ACTIONS(3148), - [anon_sym_alignas] = ACTIONS(3148), - [anon_sym__Alignas] = ACTIONS(3148), - [sym_primitive_type] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_struct] = ACTIONS(3148), - [anon_sym_union] = ACTIONS(3148), - [anon_sym_typename] = ACTIONS(3148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3148), - [anon_sym_decltype] = ACTIONS(3148), - [anon_sym_explicit] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_template] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_friend] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_static_assert] = ACTIONS(3148), - [anon_sym_catch] = ACTIONS(8500), - [anon_sym_LBRACK_COLON] = ACTIONS(3150), - }, - [STATE(2822)] = { - [sym_catch_clause] = STATE(2820), - [aux_sym_constructor_try_statement_repeat1] = STATE(2820), - [sym_identifier] = ACTIONS(3534), - [aux_sym_preproc_def_token1] = ACTIONS(3534), - [aux_sym_preproc_if_token1] = ACTIONS(3534), - [aux_sym_preproc_if_token2] = ACTIONS(3534), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3534), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3534), - [sym_preproc_directive] = ACTIONS(3534), - [anon_sym_LPAREN2] = ACTIONS(3536), - [anon_sym_TILDE] = ACTIONS(3536), - [anon_sym_STAR] = ACTIONS(3536), - [anon_sym_AMP_AMP] = ACTIONS(3536), - [anon_sym_AMP] = ACTIONS(3534), - [anon_sym_SEMI] = ACTIONS(3536), - [anon_sym___extension__] = ACTIONS(3534), - [anon_sym_typedef] = ACTIONS(3534), - [anon_sym_virtual] = ACTIONS(3534), - [anon_sym_extern] = ACTIONS(3534), - [anon_sym___attribute__] = ACTIONS(3534), - [anon_sym___attribute] = ACTIONS(3534), - [anon_sym_using] = ACTIONS(3534), - [anon_sym_COLON_COLON] = ACTIONS(3536), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3536), - [anon_sym___declspec] = ACTIONS(3534), - [anon_sym___based] = ACTIONS(3534), - [anon_sym_signed] = ACTIONS(3534), - [anon_sym_unsigned] = ACTIONS(3534), - [anon_sym_long] = ACTIONS(3534), - [anon_sym_short] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_static] = ACTIONS(3534), - [anon_sym_register] = ACTIONS(3534), - [anon_sym_inline] = ACTIONS(3534), - [anon_sym___inline] = ACTIONS(3534), - [anon_sym___inline__] = ACTIONS(3534), - [anon_sym___forceinline] = ACTIONS(3534), - [anon_sym_thread_local] = ACTIONS(3534), - [anon_sym___thread] = ACTIONS(3534), - [anon_sym_const] = ACTIONS(3534), - [anon_sym_constexpr] = ACTIONS(3534), - [anon_sym_volatile] = ACTIONS(3534), - [anon_sym_restrict] = ACTIONS(3534), - [anon_sym___restrict__] = ACTIONS(3534), - [anon_sym__Atomic] = ACTIONS(3534), - [anon_sym__Noreturn] = ACTIONS(3534), - [anon_sym_noreturn] = ACTIONS(3534), - [anon_sym__Nonnull] = ACTIONS(3534), - [anon_sym_mutable] = ACTIONS(3534), - [anon_sym_constinit] = ACTIONS(3534), - [anon_sym_consteval] = ACTIONS(3534), - [anon_sym_alignas] = ACTIONS(3534), - [anon_sym__Alignas] = ACTIONS(3534), - [sym_primitive_type] = ACTIONS(3534), - [anon_sym_enum] = ACTIONS(3534), - [anon_sym_class] = ACTIONS(3534), - [anon_sym_struct] = ACTIONS(3534), - [anon_sym_union] = ACTIONS(3534), - [anon_sym_typename] = ACTIONS(3534), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3534), - [anon_sym_decltype] = ACTIONS(3534), - [anon_sym_explicit] = ACTIONS(3534), - [anon_sym_private] = ACTIONS(3534), - [anon_sym_template] = ACTIONS(3534), - [anon_sym_operator] = ACTIONS(3534), - [anon_sym_friend] = ACTIONS(3534), - [anon_sym_public] = ACTIONS(3534), - [anon_sym_protected] = ACTIONS(3534), - [anon_sym_static_assert] = ACTIONS(3534), - [anon_sym_catch] = ACTIONS(8500), - [anon_sym_LBRACK_COLON] = ACTIONS(3536), - }, - [STATE(2823)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), - [anon_sym_COMMA] = ACTIONS(7261), - [anon_sym_LPAREN2] = ACTIONS(7261), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_STAR] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7259), - [anon_sym_PERCENT] = ACTIONS(7259), - [anon_sym_PIPE_PIPE] = ACTIONS(7261), - [anon_sym_AMP_AMP] = ACTIONS(7261), - [anon_sym_PIPE] = ACTIONS(7259), - [anon_sym_CARET] = ACTIONS(7259), - [anon_sym_AMP] = ACTIONS(7259), - [anon_sym_EQ_EQ] = ACTIONS(7261), - [anon_sym_BANG_EQ] = ACTIONS(7261), - [anon_sym_GT] = ACTIONS(7259), - [anon_sym_GT_EQ] = ACTIONS(7259), - [anon_sym_LT_EQ] = ACTIONS(7259), - [anon_sym_LT] = ACTIONS(7259), - [anon_sym_LT_LT] = ACTIONS(7259), - [anon_sym_GT_GT] = ACTIONS(7259), - [anon_sym___extension__] = ACTIONS(7261), - [anon_sym___attribute__] = ACTIONS(7261), - [anon_sym___attribute] = ACTIONS(7259), - [anon_sym_LBRACE] = ACTIONS(7261), - [anon_sym_LBRACK] = ACTIONS(7261), - [anon_sym_EQ] = ACTIONS(7259), - [anon_sym_const] = ACTIONS(7259), - [anon_sym_constexpr] = ACTIONS(7261), - [anon_sym_volatile] = ACTIONS(7261), - [anon_sym_restrict] = ACTIONS(7261), - [anon_sym___restrict__] = ACTIONS(7261), - [anon_sym__Atomic] = ACTIONS(7261), - [anon_sym__Noreturn] = ACTIONS(7261), - [anon_sym_noreturn] = ACTIONS(7261), - [anon_sym__Nonnull] = ACTIONS(7261), - [anon_sym_mutable] = ACTIONS(7261), - [anon_sym_constinit] = ACTIONS(7261), - [anon_sym_consteval] = ACTIONS(7261), - [anon_sym_alignas] = ACTIONS(7261), - [anon_sym__Alignas] = ACTIONS(7261), - [anon_sym_QMARK] = ACTIONS(7261), - [anon_sym_STAR_EQ] = ACTIONS(7261), - [anon_sym_SLASH_EQ] = ACTIONS(7261), - [anon_sym_PERCENT_EQ] = ACTIONS(7261), - [anon_sym_PLUS_EQ] = ACTIONS(7261), - [anon_sym_DASH_EQ] = ACTIONS(7261), - [anon_sym_LT_LT_EQ] = ACTIONS(7261), - [anon_sym_GT_GT_EQ] = ACTIONS(7259), - [anon_sym_AMP_EQ] = ACTIONS(7261), - [anon_sym_CARET_EQ] = ACTIONS(7261), - [anon_sym_PIPE_EQ] = ACTIONS(7261), - [anon_sym_and_eq] = ACTIONS(7261), - [anon_sym_or_eq] = ACTIONS(7261), - [anon_sym_xor_eq] = ACTIONS(7261), - [anon_sym_LT_EQ_GT] = ACTIONS(7261), - [anon_sym_or] = ACTIONS(7259), - [anon_sym_and] = ACTIONS(7259), - [anon_sym_bitor] = ACTIONS(7261), - [anon_sym_xor] = ACTIONS(7259), - [anon_sym_bitand] = ACTIONS(7261), - [anon_sym_not_eq] = ACTIONS(7261), - [anon_sym_DASH_DASH] = ACTIONS(7261), - [anon_sym_PLUS_PLUS] = ACTIONS(7261), - [anon_sym_DOT] = ACTIONS(7259), - [anon_sym_DOT_STAR] = ACTIONS(7261), - [anon_sym_DASH_GT] = ACTIONS(7261), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7261), - [anon_sym_override] = ACTIONS(7261), - [anon_sym_GT2] = ACTIONS(7261), - [anon_sym_requires] = ACTIONS(7261), - }, - [STATE(2824)] = { - [sym_identifier] = ACTIONS(6226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6233), - [anon_sym_COMMA] = ACTIONS(6233), - [anon_sym_RPAREN] = ACTIONS(6233), - [aux_sym_preproc_if_token2] = ACTIONS(6233), - [aux_sym_preproc_else_token1] = ACTIONS(6233), - [aux_sym_preproc_elif_token1] = ACTIONS(6226), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6233), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6233), - [anon_sym_LPAREN2] = ACTIONS(6233), - [anon_sym_DASH] = ACTIONS(6226), - [anon_sym_PLUS] = ACTIONS(6226), - [anon_sym_STAR] = ACTIONS(6233), - [anon_sym_SLASH] = ACTIONS(6226), - [anon_sym_PERCENT] = ACTIONS(6233), - [anon_sym_PIPE_PIPE] = ACTIONS(6233), - [anon_sym_AMP_AMP] = ACTIONS(6233), - [anon_sym_PIPE] = ACTIONS(6226), - [anon_sym_CARET] = ACTIONS(6233), - [anon_sym_AMP] = ACTIONS(6226), - [anon_sym_EQ_EQ] = ACTIONS(6233), - [anon_sym_BANG_EQ] = ACTIONS(6233), - [anon_sym_GT] = ACTIONS(6226), - [anon_sym_GT_EQ] = ACTIONS(6233), - [anon_sym_LT_EQ] = ACTIONS(6226), - [anon_sym_LT] = ACTIONS(6226), - [anon_sym_LT_LT] = ACTIONS(6233), - [anon_sym_GT_GT] = ACTIONS(6233), - [anon_sym_SEMI] = ACTIONS(6233), - [anon_sym___extension__] = ACTIONS(6226), - [anon_sym___attribute__] = ACTIONS(6226), - [anon_sym___attribute] = ACTIONS(6226), - [anon_sym_COLON] = ACTIONS(6226), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6233), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_RBRACE] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6233), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6226), - [anon_sym_volatile] = ACTIONS(6226), - [anon_sym_restrict] = ACTIONS(6226), - [anon_sym___restrict__] = ACTIONS(6226), - [anon_sym__Atomic] = ACTIONS(6226), - [anon_sym__Noreturn] = ACTIONS(6226), - [anon_sym_noreturn] = ACTIONS(6226), - [anon_sym__Nonnull] = ACTIONS(6226), - [anon_sym_mutable] = ACTIONS(6226), - [anon_sym_constinit] = ACTIONS(6226), - [anon_sym_consteval] = ACTIONS(6226), - [anon_sym_alignas] = ACTIONS(6226), - [anon_sym__Alignas] = ACTIONS(6226), - [anon_sym_QMARK] = ACTIONS(6233), - [anon_sym_LT_EQ_GT] = ACTIONS(6233), - [anon_sym_or] = ACTIONS(6226), - [anon_sym_and] = ACTIONS(6226), - [anon_sym_bitor] = ACTIONS(6226), - [anon_sym_xor] = ACTIONS(6226), - [anon_sym_bitand] = ACTIONS(6226), - [anon_sym_not_eq] = ACTIONS(6226), - [anon_sym_DASH_DASH] = ACTIONS(6233), - [anon_sym_PLUS_PLUS] = ACTIONS(6233), - [anon_sym_DOT] = ACTIONS(6226), - [anon_sym_DOT_STAR] = ACTIONS(6233), - [anon_sym_DASH_GT] = ACTIONS(6233), + [STATE(2606)] = { + [sym_attribute_specifier] = STATE(3547), + [sym_field_declaration_list] = STATE(3020), + [sym_virtual_specifier] = STATE(9449), + [sym_base_class_clause] = STATE(10567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), + [anon_sym_COMMA] = ACTIONS(7237), + [anon_sym_RPAREN] = ACTIONS(7237), + [anon_sym_LPAREN2] = ACTIONS(7237), + [anon_sym_DASH] = ACTIONS(7235), + [anon_sym_PLUS] = ACTIONS(7235), + [anon_sym_STAR] = ACTIONS(7235), + [anon_sym_SLASH] = ACTIONS(7235), + [anon_sym_PERCENT] = ACTIONS(7235), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_AMP_AMP] = ACTIONS(7237), + [anon_sym_PIPE] = ACTIONS(7235), + [anon_sym_CARET] = ACTIONS(7235), + [anon_sym_AMP] = ACTIONS(7235), + [anon_sym_EQ_EQ] = ACTIONS(7237), + [anon_sym_BANG_EQ] = ACTIONS(7237), + [anon_sym_GT] = ACTIONS(7235), + [anon_sym_GT_EQ] = ACTIONS(7237), + [anon_sym_LT_EQ] = ACTIONS(7235), + [anon_sym_LT] = ACTIONS(7235), + [anon_sym_LT_LT] = ACTIONS(7235), + [anon_sym_GT_GT] = ACTIONS(7235), + [anon_sym___extension__] = ACTIONS(7237), + [anon_sym___attribute__] = ACTIONS(8499), + [anon_sym___attribute] = ACTIONS(8501), + [anon_sym_COLON] = ACTIONS(8156), + [anon_sym_LBRACE] = ACTIONS(8503), + [anon_sym_LBRACK] = ACTIONS(7237), + [anon_sym_EQ] = ACTIONS(7235), + [anon_sym_const] = ACTIONS(7235), + [anon_sym_constexpr] = ACTIONS(7237), + [anon_sym_volatile] = ACTIONS(7237), + [anon_sym_restrict] = ACTIONS(7237), + [anon_sym___restrict__] = ACTIONS(7237), + [anon_sym__Atomic] = ACTIONS(7237), + [anon_sym__Noreturn] = ACTIONS(7237), + [anon_sym_noreturn] = ACTIONS(7237), + [anon_sym__Nonnull] = ACTIONS(7237), + [anon_sym_mutable] = ACTIONS(7237), + [anon_sym_constinit] = ACTIONS(7237), + [anon_sym_consteval] = ACTIONS(7237), + [anon_sym_alignas] = ACTIONS(7237), + [anon_sym__Alignas] = ACTIONS(7237), + [anon_sym_QMARK] = ACTIONS(7237), + [anon_sym_STAR_EQ] = ACTIONS(7237), + [anon_sym_SLASH_EQ] = ACTIONS(7237), + [anon_sym_PERCENT_EQ] = ACTIONS(7237), + [anon_sym_PLUS_EQ] = ACTIONS(7237), + [anon_sym_DASH_EQ] = ACTIONS(7237), + [anon_sym_LT_LT_EQ] = ACTIONS(7237), + [anon_sym_GT_GT_EQ] = ACTIONS(7237), + [anon_sym_AMP_EQ] = ACTIONS(7237), + [anon_sym_CARET_EQ] = ACTIONS(7237), + [anon_sym_PIPE_EQ] = ACTIONS(7237), + [anon_sym_LT_EQ_GT] = ACTIONS(7237), + [anon_sym_or] = ACTIONS(7237), + [anon_sym_and] = ACTIONS(7237), + [anon_sym_bitor] = ACTIONS(7237), + [anon_sym_xor] = ACTIONS(7237), + [anon_sym_bitand] = ACTIONS(7237), + [anon_sym_not_eq] = ACTIONS(7237), + [anon_sym_DASH_DASH] = ACTIONS(7237), + [anon_sym_PLUS_PLUS] = ACTIONS(7237), + [anon_sym_DOT] = ACTIONS(7235), + [anon_sym_DOT_STAR] = ACTIONS(7237), + [anon_sym_DASH_GT] = ACTIONS(7235), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6226), - [anon_sym_decltype] = ACTIONS(6226), - [anon_sym_final] = ACTIONS(6226), - [anon_sym_override] = ACTIONS(6226), - [anon_sym_requires] = ACTIONS(6226), - [anon_sym_COLON_RBRACK] = ACTIONS(6233), - }, - [STATE(2825)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6846), - [anon_sym_COMMA] = ACTIONS(6846), - [anon_sym_RPAREN] = ACTIONS(6846), - [anon_sym_LPAREN2] = ACTIONS(6846), - [anon_sym_DASH] = ACTIONS(6844), - [anon_sym_PLUS] = ACTIONS(6844), - [anon_sym_STAR] = ACTIONS(6844), - [anon_sym_SLASH] = ACTIONS(6844), - [anon_sym_PERCENT] = ACTIONS(6844), - [anon_sym_PIPE_PIPE] = ACTIONS(6846), - [anon_sym_AMP_AMP] = ACTIONS(6846), - [anon_sym_PIPE] = ACTIONS(6844), - [anon_sym_CARET] = ACTIONS(6844), - [anon_sym_AMP] = ACTIONS(6844), - [anon_sym_EQ_EQ] = ACTIONS(6846), - [anon_sym_BANG_EQ] = ACTIONS(6846), - [anon_sym_GT] = ACTIONS(6844), - [anon_sym_GT_EQ] = ACTIONS(6846), - [anon_sym_LT_EQ] = ACTIONS(6844), - [anon_sym_LT] = ACTIONS(6844), - [anon_sym_LT_LT] = ACTIONS(6844), - [anon_sym_GT_GT] = ACTIONS(6844), - [anon_sym___extension__] = ACTIONS(6846), - [anon_sym___attribute__] = ACTIONS(6846), - [anon_sym___attribute] = ACTIONS(6844), - [anon_sym_COLON] = ACTIONS(6844), - [anon_sym_COLON_COLON] = ACTIONS(6846), - [anon_sym_LBRACE] = ACTIONS(6846), - [anon_sym_LBRACK] = ACTIONS(6846), - [anon_sym_EQ] = ACTIONS(6844), - [anon_sym_const] = ACTIONS(6844), - [anon_sym_constexpr] = ACTIONS(6846), - [anon_sym_volatile] = ACTIONS(6846), - [anon_sym_restrict] = ACTIONS(6846), - [anon_sym___restrict__] = ACTIONS(6846), - [anon_sym__Atomic] = ACTIONS(6846), - [anon_sym__Noreturn] = ACTIONS(6846), - [anon_sym_noreturn] = ACTIONS(6846), - [anon_sym__Nonnull] = ACTIONS(6846), - [anon_sym_mutable] = ACTIONS(6846), - [anon_sym_constinit] = ACTIONS(6846), - [anon_sym_consteval] = ACTIONS(6846), - [anon_sym_alignas] = ACTIONS(6846), - [anon_sym__Alignas] = ACTIONS(6846), - [anon_sym_QMARK] = ACTIONS(6846), - [anon_sym_STAR_EQ] = ACTIONS(6846), - [anon_sym_SLASH_EQ] = ACTIONS(6846), - [anon_sym_PERCENT_EQ] = ACTIONS(6846), - [anon_sym_PLUS_EQ] = ACTIONS(6846), - [anon_sym_DASH_EQ] = ACTIONS(6846), - [anon_sym_LT_LT_EQ] = ACTIONS(6846), - [anon_sym_GT_GT_EQ] = ACTIONS(6846), - [anon_sym_AMP_EQ] = ACTIONS(6846), - [anon_sym_CARET_EQ] = ACTIONS(6846), - [anon_sym_PIPE_EQ] = ACTIONS(6846), - [anon_sym_LT_EQ_GT] = ACTIONS(6846), - [anon_sym_or] = ACTIONS(6846), - [anon_sym_and] = ACTIONS(6846), - [anon_sym_bitor] = ACTIONS(6846), - [anon_sym_xor] = ACTIONS(6846), - [anon_sym_bitand] = ACTIONS(6846), - [anon_sym_not_eq] = ACTIONS(6846), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DOT] = ACTIONS(6844), - [anon_sym_DOT_STAR] = ACTIONS(6846), - [anon_sym_DASH_GT] = ACTIONS(6844), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6846), - [anon_sym_override] = ACTIONS(6846), - [anon_sym_requires] = ACTIONS(6846), - [anon_sym_DASH_GT_STAR] = ACTIONS(6846), - }, - [STATE(2826)] = { - [sym_attribute_specifier] = STATE(3473), - [sym_enumerator_list] = STATE(2939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7013), - [anon_sym_COMMA] = ACTIONS(7013), - [anon_sym_RPAREN] = ACTIONS(7013), - [anon_sym_LPAREN2] = ACTIONS(7013), - [anon_sym_DASH] = ACTIONS(7011), - [anon_sym_PLUS] = ACTIONS(7011), - [anon_sym_STAR] = ACTIONS(7011), - [anon_sym_SLASH] = ACTIONS(7011), - [anon_sym_PERCENT] = ACTIONS(7011), - [anon_sym_PIPE_PIPE] = ACTIONS(7013), - [anon_sym_AMP_AMP] = ACTIONS(7013), - [anon_sym_PIPE] = ACTIONS(7011), - [anon_sym_CARET] = ACTIONS(7011), - [anon_sym_AMP] = ACTIONS(7011), - [anon_sym_EQ_EQ] = ACTIONS(7013), - [anon_sym_BANG_EQ] = ACTIONS(7013), - [anon_sym_GT] = ACTIONS(7011), - [anon_sym_GT_EQ] = ACTIONS(7013), - [anon_sym_LT_EQ] = ACTIONS(7011), - [anon_sym_LT] = ACTIONS(7011), - [anon_sym_LT_LT] = ACTIONS(7011), - [anon_sym_GT_GT] = ACTIONS(7011), - [anon_sym___extension__] = ACTIONS(7013), - [anon_sym___attribute__] = ACTIONS(8189), - [anon_sym___attribute] = ACTIONS(8191), - [anon_sym_LBRACE] = ACTIONS(8272), - [anon_sym_LBRACK] = ACTIONS(7013), - [anon_sym_EQ] = ACTIONS(7011), - [anon_sym_const] = ACTIONS(7011), - [anon_sym_constexpr] = ACTIONS(7013), - [anon_sym_volatile] = ACTIONS(7013), - [anon_sym_restrict] = ACTIONS(7013), - [anon_sym___restrict__] = ACTIONS(7013), - [anon_sym__Atomic] = ACTIONS(7013), - [anon_sym__Noreturn] = ACTIONS(7013), - [anon_sym_noreturn] = ACTIONS(7013), - [anon_sym__Nonnull] = ACTIONS(7013), - [anon_sym_mutable] = ACTIONS(7013), - [anon_sym_constinit] = ACTIONS(7013), - [anon_sym_consteval] = ACTIONS(7013), - [anon_sym_alignas] = ACTIONS(7013), - [anon_sym__Alignas] = ACTIONS(7013), - [anon_sym_QMARK] = ACTIONS(7013), - [anon_sym_STAR_EQ] = ACTIONS(7013), - [anon_sym_SLASH_EQ] = ACTIONS(7013), - [anon_sym_PERCENT_EQ] = ACTIONS(7013), - [anon_sym_PLUS_EQ] = ACTIONS(7013), - [anon_sym_DASH_EQ] = ACTIONS(7013), - [anon_sym_LT_LT_EQ] = ACTIONS(7013), - [anon_sym_GT_GT_EQ] = ACTIONS(7013), - [anon_sym_AMP_EQ] = ACTIONS(7013), - [anon_sym_CARET_EQ] = ACTIONS(7013), - [anon_sym_PIPE_EQ] = ACTIONS(7013), - [anon_sym_LT_EQ_GT] = ACTIONS(7013), - [anon_sym_or] = ACTIONS(7013), - [anon_sym_and] = ACTIONS(7013), - [anon_sym_bitor] = ACTIONS(7013), - [anon_sym_xor] = ACTIONS(7013), - [anon_sym_bitand] = ACTIONS(7013), - [anon_sym_not_eq] = ACTIONS(7013), - [anon_sym_DASH_DASH] = ACTIONS(7013), - [anon_sym_PLUS_PLUS] = ACTIONS(7013), - [anon_sym_DOT] = ACTIONS(7011), - [anon_sym_DOT_STAR] = ACTIONS(7013), - [anon_sym_DASH_GT] = ACTIONS(7011), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7013), - [anon_sym_override] = ACTIONS(7013), - [anon_sym_requires] = ACTIONS(7013), - [anon_sym_DASH_GT_STAR] = ACTIONS(7013), - }, - [STATE(2827)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7197), - [anon_sym_COMMA] = ACTIONS(7197), - [anon_sym_LPAREN2] = ACTIONS(7197), - [anon_sym_DASH] = ACTIONS(7195), - [anon_sym_PLUS] = ACTIONS(7195), - [anon_sym_STAR] = ACTIONS(7195), - [anon_sym_SLASH] = ACTIONS(7195), - [anon_sym_PERCENT] = ACTIONS(7195), - [anon_sym_PIPE_PIPE] = ACTIONS(7197), - [anon_sym_AMP_AMP] = ACTIONS(7197), - [anon_sym_PIPE] = ACTIONS(7195), - [anon_sym_CARET] = ACTIONS(7195), - [anon_sym_AMP] = ACTIONS(7195), - [anon_sym_EQ_EQ] = ACTIONS(7197), - [anon_sym_BANG_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_LT_EQ] = ACTIONS(7195), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_LT] = ACTIONS(7195), - [anon_sym_GT_GT] = ACTIONS(7195), - [anon_sym___extension__] = ACTIONS(7197), - [anon_sym___attribute__] = ACTIONS(7197), - [anon_sym___attribute] = ACTIONS(7195), - [anon_sym_LBRACE] = ACTIONS(7197), - [anon_sym_LBRACK] = ACTIONS(7197), - [anon_sym_RBRACK] = ACTIONS(7197), - [anon_sym_EQ] = ACTIONS(7195), - [anon_sym_const] = ACTIONS(7195), - [anon_sym_constexpr] = ACTIONS(7197), - [anon_sym_volatile] = ACTIONS(7197), - [anon_sym_restrict] = ACTIONS(7197), - [anon_sym___restrict__] = ACTIONS(7197), - [anon_sym__Atomic] = ACTIONS(7197), - [anon_sym__Noreturn] = ACTIONS(7197), - [anon_sym_noreturn] = ACTIONS(7197), - [anon_sym__Nonnull] = ACTIONS(7197), - [anon_sym_mutable] = ACTIONS(7197), - [anon_sym_constinit] = ACTIONS(7197), - [anon_sym_consteval] = ACTIONS(7197), - [anon_sym_alignas] = ACTIONS(7197), - [anon_sym__Alignas] = ACTIONS(7197), - [anon_sym_QMARK] = ACTIONS(7197), - [anon_sym_STAR_EQ] = ACTIONS(7197), - [anon_sym_SLASH_EQ] = ACTIONS(7197), - [anon_sym_PERCENT_EQ] = ACTIONS(7197), - [anon_sym_PLUS_EQ] = ACTIONS(7197), - [anon_sym_DASH_EQ] = ACTIONS(7197), - [anon_sym_LT_LT_EQ] = ACTIONS(7197), - [anon_sym_GT_GT_EQ] = ACTIONS(7197), - [anon_sym_AMP_EQ] = ACTIONS(7197), - [anon_sym_CARET_EQ] = ACTIONS(7197), - [anon_sym_PIPE_EQ] = ACTIONS(7197), - [anon_sym_and_eq] = ACTIONS(7197), - [anon_sym_or_eq] = ACTIONS(7197), - [anon_sym_xor_eq] = ACTIONS(7197), - [anon_sym_LT_EQ_GT] = ACTIONS(7197), - [anon_sym_or] = ACTIONS(7195), - [anon_sym_and] = ACTIONS(7195), - [anon_sym_bitor] = ACTIONS(7197), - [anon_sym_xor] = ACTIONS(7195), - [anon_sym_bitand] = ACTIONS(7197), - [anon_sym_not_eq] = ACTIONS(7197), - [anon_sym_DASH_DASH] = ACTIONS(7197), - [anon_sym_PLUS_PLUS] = ACTIONS(7197), - [anon_sym_DOT] = ACTIONS(7195), - [anon_sym_DOT_STAR] = ACTIONS(7197), - [anon_sym_DASH_GT] = ACTIONS(7197), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7197), - [anon_sym_override] = ACTIONS(7197), - [anon_sym_requires] = ACTIONS(7197), - }, - [STATE(2828)] = { - [sym_attribute_specifier] = STATE(4003), - [sym_attribute_declaration] = STATE(4328), - [sym_gnu_asm_expression] = STATE(8980), - [sym_virtual_specifier] = STATE(4455), - [sym__function_attributes_end] = STATE(4169), - [sym__function_postfix] = STATE(4685), - [sym_trailing_return_type] = STATE(4259), - [sym_requires_clause] = STATE(4685), - [aux_sym_type_definition_repeat1] = STATE(4003), - [aux_sym_attributed_declarator_repeat1] = STATE(4328), - [aux_sym__function_postfix_repeat1] = STATE(4455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), - [anon_sym_COMMA] = ACTIONS(8089), - [anon_sym_RPAREN] = ACTIONS(8089), - [anon_sym_LPAREN2] = ACTIONS(8089), - [anon_sym_DASH] = ACTIONS(8087), - [anon_sym_PLUS] = ACTIONS(8087), - [anon_sym_STAR] = ACTIONS(8087), - [anon_sym_SLASH] = ACTIONS(8087), - [anon_sym_PERCENT] = ACTIONS(8087), - [anon_sym_PIPE_PIPE] = ACTIONS(8089), - [anon_sym_AMP_AMP] = ACTIONS(8089), - [anon_sym_PIPE] = ACTIONS(8087), - [anon_sym_CARET] = ACTIONS(8087), - [anon_sym_AMP] = ACTIONS(8087), - [anon_sym_EQ_EQ] = ACTIONS(8089), - [anon_sym_BANG_EQ] = ACTIONS(8089), - [anon_sym_GT] = ACTIONS(8087), - [anon_sym_GT_EQ] = ACTIONS(8089), - [anon_sym_LT_EQ] = ACTIONS(8087), - [anon_sym_LT] = ACTIONS(8087), - [anon_sym_LT_LT] = ACTIONS(8087), - [anon_sym_GT_GT] = ACTIONS(8087), - [anon_sym___attribute__] = ACTIONS(6282), - [anon_sym___attribute] = ACTIONS(6284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6286), - [anon_sym_LBRACK] = ACTIONS(8087), - [anon_sym_EQ] = ACTIONS(8087), - [anon_sym_QMARK] = ACTIONS(8089), - [anon_sym_STAR_EQ] = ACTIONS(8089), - [anon_sym_SLASH_EQ] = ACTIONS(8089), - [anon_sym_PERCENT_EQ] = ACTIONS(8089), - [anon_sym_PLUS_EQ] = ACTIONS(8089), - [anon_sym_DASH_EQ] = ACTIONS(8089), - [anon_sym_LT_LT_EQ] = ACTIONS(8089), - [anon_sym_GT_GT_EQ] = ACTIONS(8089), - [anon_sym_AMP_EQ] = ACTIONS(8089), - [anon_sym_CARET_EQ] = ACTIONS(8089), - [anon_sym_PIPE_EQ] = ACTIONS(8089), - [anon_sym_and_eq] = ACTIONS(8089), - [anon_sym_or_eq] = ACTIONS(8089), - [anon_sym_xor_eq] = ACTIONS(8089), - [anon_sym_LT_EQ_GT] = ACTIONS(8089), - [anon_sym_or] = ACTIONS(8087), - [anon_sym_and] = ACTIONS(8087), - [anon_sym_bitor] = ACTIONS(8089), - [anon_sym_xor] = ACTIONS(8087), - [anon_sym_bitand] = ACTIONS(8089), - [anon_sym_not_eq] = ACTIONS(8089), - [anon_sym_DASH_DASH] = ACTIONS(8089), - [anon_sym_PLUS_PLUS] = ACTIONS(8089), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(8087), - [anon_sym_DOT_STAR] = ACTIONS(8089), - [anon_sym_DASH_GT] = ACTIONS(8470), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6305), - [anon_sym_override] = ACTIONS(6305), - [anon_sym_requires] = ACTIONS(6307), - [anon_sym_DASH_GT_STAR] = ACTIONS(8089), - }, - [STATE(2829)] = { - [sym_attribute_specifier] = STATE(3444), - [sym_enumerator_list] = STATE(2896), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6987), - [anon_sym_COMMA] = ACTIONS(6987), - [anon_sym_RPAREN] = ACTIONS(6987), - [anon_sym_LPAREN2] = ACTIONS(6987), - [anon_sym_DASH] = ACTIONS(6985), - [anon_sym_PLUS] = ACTIONS(6985), - [anon_sym_STAR] = ACTIONS(6985), - [anon_sym_SLASH] = ACTIONS(6985), - [anon_sym_PERCENT] = ACTIONS(6985), - [anon_sym_PIPE_PIPE] = ACTIONS(6987), - [anon_sym_AMP_AMP] = ACTIONS(6987), - [anon_sym_PIPE] = ACTIONS(6985), - [anon_sym_CARET] = ACTIONS(6985), - [anon_sym_AMP] = ACTIONS(6985), - [anon_sym_EQ_EQ] = ACTIONS(6987), - [anon_sym_BANG_EQ] = ACTIONS(6987), - [anon_sym_GT] = ACTIONS(6985), - [anon_sym_GT_EQ] = ACTIONS(6987), - [anon_sym_LT_EQ] = ACTIONS(6985), - [anon_sym_LT] = ACTIONS(6985), - [anon_sym_LT_LT] = ACTIONS(6985), - [anon_sym_GT_GT] = ACTIONS(6985), - [anon_sym___extension__] = ACTIONS(6987), - [anon_sym___attribute__] = ACTIONS(8189), - [anon_sym___attribute] = ACTIONS(8191), - [anon_sym_LBRACE] = ACTIONS(8272), - [anon_sym_LBRACK] = ACTIONS(6987), - [anon_sym_EQ] = ACTIONS(6985), - [anon_sym_const] = ACTIONS(6985), - [anon_sym_constexpr] = ACTIONS(6987), - [anon_sym_volatile] = ACTIONS(6987), - [anon_sym_restrict] = ACTIONS(6987), - [anon_sym___restrict__] = ACTIONS(6987), - [anon_sym__Atomic] = ACTIONS(6987), - [anon_sym__Noreturn] = ACTIONS(6987), - [anon_sym_noreturn] = ACTIONS(6987), - [anon_sym__Nonnull] = ACTIONS(6987), - [anon_sym_mutable] = ACTIONS(6987), - [anon_sym_constinit] = ACTIONS(6987), - [anon_sym_consteval] = ACTIONS(6987), - [anon_sym_alignas] = ACTIONS(6987), - [anon_sym__Alignas] = ACTIONS(6987), - [anon_sym_QMARK] = ACTIONS(6987), - [anon_sym_STAR_EQ] = ACTIONS(6987), - [anon_sym_SLASH_EQ] = ACTIONS(6987), - [anon_sym_PERCENT_EQ] = ACTIONS(6987), - [anon_sym_PLUS_EQ] = ACTIONS(6987), - [anon_sym_DASH_EQ] = ACTIONS(6987), - [anon_sym_LT_LT_EQ] = ACTIONS(6987), - [anon_sym_GT_GT_EQ] = ACTIONS(6987), - [anon_sym_AMP_EQ] = ACTIONS(6987), - [anon_sym_CARET_EQ] = ACTIONS(6987), - [anon_sym_PIPE_EQ] = ACTIONS(6987), - [anon_sym_LT_EQ_GT] = ACTIONS(6987), - [anon_sym_or] = ACTIONS(6987), - [anon_sym_and] = ACTIONS(6987), - [anon_sym_bitor] = ACTIONS(6987), - [anon_sym_xor] = ACTIONS(6987), - [anon_sym_bitand] = ACTIONS(6987), - [anon_sym_not_eq] = ACTIONS(6987), - [anon_sym_DASH_DASH] = ACTIONS(6987), - [anon_sym_PLUS_PLUS] = ACTIONS(6987), - [anon_sym_DOT] = ACTIONS(6985), - [anon_sym_DOT_STAR] = ACTIONS(6987), - [anon_sym_DASH_GT] = ACTIONS(6985), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6987), - [anon_sym_override] = ACTIONS(6987), - [anon_sym_requires] = ACTIONS(6987), - [anon_sym_DASH_GT_STAR] = ACTIONS(6987), - }, - [STATE(2830)] = { - [sym_template_argument_list] = STATE(2966), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6205), - [anon_sym_COMMA] = ACTIONS(6205), - [anon_sym_RPAREN] = ACTIONS(6205), - [anon_sym_LPAREN2] = ACTIONS(6205), - [anon_sym_DASH] = ACTIONS(6212), - [anon_sym_PLUS] = ACTIONS(6212), - [anon_sym_STAR] = ACTIONS(6212), - [anon_sym_SLASH] = ACTIONS(6212), - [anon_sym_PERCENT] = ACTIONS(6212), - [anon_sym_PIPE_PIPE] = ACTIONS(6205), - [anon_sym_AMP_AMP] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(6212), - [anon_sym_CARET] = ACTIONS(6212), - [anon_sym_AMP] = ACTIONS(6212), - [anon_sym_EQ_EQ] = ACTIONS(6205), - [anon_sym_BANG_EQ] = ACTIONS(6205), - [anon_sym_GT] = ACTIONS(6212), - [anon_sym_GT_EQ] = ACTIONS(6205), - [anon_sym_LT_EQ] = ACTIONS(6212), - [anon_sym_LT] = ACTIONS(8466), - [anon_sym_LT_LT] = ACTIONS(6212), - [anon_sym_GT_GT] = ACTIONS(6212), - [anon_sym___extension__] = ACTIONS(6208), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(6208), - [anon_sym_LBRACK] = ACTIONS(6205), - [anon_sym_EQ] = ACTIONS(6212), - [anon_sym_const] = ACTIONS(6201), - [anon_sym_constexpr] = ACTIONS(6208), - [anon_sym_volatile] = ACTIONS(6208), - [anon_sym_restrict] = ACTIONS(6208), - [anon_sym___restrict__] = ACTIONS(6208), - [anon_sym__Atomic] = ACTIONS(6208), - [anon_sym__Noreturn] = ACTIONS(6208), - [anon_sym_noreturn] = ACTIONS(6208), - [anon_sym__Nonnull] = ACTIONS(6208), - [anon_sym_mutable] = ACTIONS(6208), - [anon_sym_constinit] = ACTIONS(6208), - [anon_sym_consteval] = ACTIONS(6208), - [anon_sym_alignas] = ACTIONS(6208), - [anon_sym__Alignas] = ACTIONS(6208), - [anon_sym_QMARK] = ACTIONS(6205), - [anon_sym_STAR_EQ] = ACTIONS(6205), - [anon_sym_SLASH_EQ] = ACTIONS(6205), - [anon_sym_PERCENT_EQ] = ACTIONS(6205), - [anon_sym_PLUS_EQ] = ACTIONS(6205), - [anon_sym_DASH_EQ] = ACTIONS(6205), - [anon_sym_LT_LT_EQ] = ACTIONS(6205), - [anon_sym_GT_GT_EQ] = ACTIONS(6205), - [anon_sym_AMP_EQ] = ACTIONS(6205), - [anon_sym_CARET_EQ] = ACTIONS(6205), - [anon_sym_PIPE_EQ] = ACTIONS(6205), - [anon_sym_and_eq] = ACTIONS(6203), - [anon_sym_or_eq] = ACTIONS(6203), - [anon_sym_xor_eq] = ACTIONS(6203), - [anon_sym_LT_EQ_GT] = ACTIONS(6205), - [anon_sym_or] = ACTIONS(6212), - [anon_sym_and] = ACTIONS(6212), - [anon_sym_bitor] = ACTIONS(6205), - [anon_sym_xor] = ACTIONS(6212), - [anon_sym_bitand] = ACTIONS(6205), - [anon_sym_not_eq] = ACTIONS(6205), - [anon_sym_DASH_DASH] = ACTIONS(6205), - [anon_sym_PLUS_PLUS] = ACTIONS(6205), - [anon_sym_DOT] = ACTIONS(6212), - [anon_sym_DOT_STAR] = ACTIONS(6205), - [anon_sym_DASH_GT] = ACTIONS(6212), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6208), - [anon_sym_decltype] = ACTIONS(6208), - [anon_sym_DASH_GT_STAR] = ACTIONS(6205), - }, - [STATE(2831)] = { - [sym_catch_clause] = STATE(2836), - [aux_sym_constructor_try_statement_repeat1] = STATE(2836), - [sym_identifier] = ACTIONS(3534), - [aux_sym_preproc_def_token1] = ACTIONS(3534), - [aux_sym_preproc_if_token1] = ACTIONS(3534), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3534), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3534), - [sym_preproc_directive] = ACTIONS(3534), - [anon_sym_LPAREN2] = ACTIONS(3536), - [anon_sym_TILDE] = ACTIONS(3536), - [anon_sym_STAR] = ACTIONS(3536), - [anon_sym_AMP_AMP] = ACTIONS(3536), - [anon_sym_AMP] = ACTIONS(3534), - [anon_sym_SEMI] = ACTIONS(3536), - [anon_sym___extension__] = ACTIONS(3534), - [anon_sym_typedef] = ACTIONS(3534), - [anon_sym_virtual] = ACTIONS(3534), - [anon_sym_extern] = ACTIONS(3534), - [anon_sym___attribute__] = ACTIONS(3534), - [anon_sym___attribute] = ACTIONS(3534), - [anon_sym_using] = ACTIONS(3534), - [anon_sym_COLON_COLON] = ACTIONS(3536), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3536), - [anon_sym___declspec] = ACTIONS(3534), - [anon_sym___based] = ACTIONS(3534), - [anon_sym_RBRACE] = ACTIONS(3536), - [anon_sym_signed] = ACTIONS(3534), - [anon_sym_unsigned] = ACTIONS(3534), - [anon_sym_long] = ACTIONS(3534), - [anon_sym_short] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_static] = ACTIONS(3534), - [anon_sym_register] = ACTIONS(3534), - [anon_sym_inline] = ACTIONS(3534), - [anon_sym___inline] = ACTIONS(3534), - [anon_sym___inline__] = ACTIONS(3534), - [anon_sym___forceinline] = ACTIONS(3534), - [anon_sym_thread_local] = ACTIONS(3534), - [anon_sym___thread] = ACTIONS(3534), - [anon_sym_const] = ACTIONS(3534), - [anon_sym_constexpr] = ACTIONS(3534), - [anon_sym_volatile] = ACTIONS(3534), - [anon_sym_restrict] = ACTIONS(3534), - [anon_sym___restrict__] = ACTIONS(3534), - [anon_sym__Atomic] = ACTIONS(3534), - [anon_sym__Noreturn] = ACTIONS(3534), - [anon_sym_noreturn] = ACTIONS(3534), - [anon_sym__Nonnull] = ACTIONS(3534), - [anon_sym_mutable] = ACTIONS(3534), - [anon_sym_constinit] = ACTIONS(3534), - [anon_sym_consteval] = ACTIONS(3534), - [anon_sym_alignas] = ACTIONS(3534), - [anon_sym__Alignas] = ACTIONS(3534), - [sym_primitive_type] = ACTIONS(3534), - [anon_sym_enum] = ACTIONS(3534), - [anon_sym_class] = ACTIONS(3534), - [anon_sym_struct] = ACTIONS(3534), - [anon_sym_union] = ACTIONS(3534), - [anon_sym_typename] = ACTIONS(3534), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3534), - [anon_sym_decltype] = ACTIONS(3534), - [anon_sym_explicit] = ACTIONS(3534), - [anon_sym_private] = ACTIONS(3534), - [anon_sym_template] = ACTIONS(3534), - [anon_sym_operator] = ACTIONS(3534), - [anon_sym_friend] = ACTIONS(3534), - [anon_sym_public] = ACTIONS(3534), - [anon_sym_protected] = ACTIONS(3534), - [anon_sym_static_assert] = ACTIONS(3534), - [anon_sym_catch] = ACTIONS(8490), - [anon_sym_LBRACK_COLON] = ACTIONS(3536), - }, - [STATE(2832)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6798), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6800), - [anon_sym_override] = ACTIONS(6800), - [anon_sym_requires] = ACTIONS(6800), - [anon_sym_DASH_GT_STAR] = ACTIONS(6800), - }, - [STATE(2833)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7285), - [anon_sym_COMMA] = ACTIONS(7285), - [anon_sym_LPAREN2] = ACTIONS(7285), - [anon_sym_DASH] = ACTIONS(7283), - [anon_sym_PLUS] = ACTIONS(7283), - [anon_sym_STAR] = ACTIONS(7283), - [anon_sym_SLASH] = ACTIONS(7283), - [anon_sym_PERCENT] = ACTIONS(7283), - [anon_sym_PIPE_PIPE] = ACTIONS(7285), - [anon_sym_AMP_AMP] = ACTIONS(7285), - [anon_sym_PIPE] = ACTIONS(7283), - [anon_sym_CARET] = ACTIONS(7283), - [anon_sym_AMP] = ACTIONS(7283), - [anon_sym_EQ_EQ] = ACTIONS(7285), - [anon_sym_BANG_EQ] = ACTIONS(7285), - [anon_sym_GT] = ACTIONS(7283), - [anon_sym_GT_EQ] = ACTIONS(7285), - [anon_sym_LT_EQ] = ACTIONS(7283), - [anon_sym_LT] = ACTIONS(7283), - [anon_sym_LT_LT] = ACTIONS(7283), - [anon_sym_GT_GT] = ACTIONS(7283), - [anon_sym___extension__] = ACTIONS(7285), - [anon_sym___attribute__] = ACTIONS(7285), - [anon_sym___attribute] = ACTIONS(7283), - [anon_sym_LBRACE] = ACTIONS(7285), - [anon_sym_LBRACK] = ACTIONS(7285), - [anon_sym_RBRACK] = ACTIONS(7285), - [anon_sym_EQ] = ACTIONS(7283), - [anon_sym_const] = ACTIONS(7283), - [anon_sym_constexpr] = ACTIONS(7285), - [anon_sym_volatile] = ACTIONS(7285), - [anon_sym_restrict] = ACTIONS(7285), - [anon_sym___restrict__] = ACTIONS(7285), - [anon_sym__Atomic] = ACTIONS(7285), - [anon_sym__Noreturn] = ACTIONS(7285), - [anon_sym_noreturn] = ACTIONS(7285), - [anon_sym__Nonnull] = ACTIONS(7285), - [anon_sym_mutable] = ACTIONS(7285), - [anon_sym_constinit] = ACTIONS(7285), - [anon_sym_consteval] = ACTIONS(7285), - [anon_sym_alignas] = ACTIONS(7285), - [anon_sym__Alignas] = ACTIONS(7285), - [anon_sym_QMARK] = ACTIONS(7285), - [anon_sym_STAR_EQ] = ACTIONS(7285), - [anon_sym_SLASH_EQ] = ACTIONS(7285), - [anon_sym_PERCENT_EQ] = ACTIONS(7285), - [anon_sym_PLUS_EQ] = ACTIONS(7285), - [anon_sym_DASH_EQ] = ACTIONS(7285), - [anon_sym_LT_LT_EQ] = ACTIONS(7285), - [anon_sym_GT_GT_EQ] = ACTIONS(7285), - [anon_sym_AMP_EQ] = ACTIONS(7285), - [anon_sym_CARET_EQ] = ACTIONS(7285), - [anon_sym_PIPE_EQ] = ACTIONS(7285), - [anon_sym_and_eq] = ACTIONS(7285), - [anon_sym_or_eq] = ACTIONS(7285), - [anon_sym_xor_eq] = ACTIONS(7285), - [anon_sym_LT_EQ_GT] = ACTIONS(7285), - [anon_sym_or] = ACTIONS(7283), - [anon_sym_and] = ACTIONS(7283), - [anon_sym_bitor] = ACTIONS(7285), - [anon_sym_xor] = ACTIONS(7283), - [anon_sym_bitand] = ACTIONS(7285), - [anon_sym_not_eq] = ACTIONS(7285), - [anon_sym_DASH_DASH] = ACTIONS(7285), - [anon_sym_PLUS_PLUS] = ACTIONS(7285), - [anon_sym_DOT] = ACTIONS(7283), - [anon_sym_DOT_STAR] = ACTIONS(7285), - [anon_sym_DASH_GT] = ACTIONS(7285), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7285), - [anon_sym_override] = ACTIONS(7285), - [anon_sym_requires] = ACTIONS(7285), - }, - [STATE(2834)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7109), - [anon_sym_COMMA] = ACTIONS(7109), - [anon_sym_RPAREN] = ACTIONS(7109), - [anon_sym_LPAREN2] = ACTIONS(7109), - [anon_sym_DASH] = ACTIONS(7107), - [anon_sym_PLUS] = ACTIONS(7107), - [anon_sym_STAR] = ACTIONS(7107), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7107), - [anon_sym_PIPE_PIPE] = ACTIONS(7109), - [anon_sym_AMP_AMP] = ACTIONS(7109), - [anon_sym_PIPE] = ACTIONS(7107), - [anon_sym_CARET] = ACTIONS(7107), - [anon_sym_AMP] = ACTIONS(7107), - [anon_sym_EQ_EQ] = ACTIONS(7109), - [anon_sym_BANG_EQ] = ACTIONS(7109), - [anon_sym_GT] = ACTIONS(7107), - [anon_sym_GT_EQ] = ACTIONS(7109), - [anon_sym_LT_EQ] = ACTIONS(7107), - [anon_sym_LT] = ACTIONS(7107), - [anon_sym_LT_LT] = ACTIONS(7107), - [anon_sym_GT_GT] = ACTIONS(7107), - [anon_sym___extension__] = ACTIONS(7109), - [anon_sym_COLON_COLON] = ACTIONS(7109), - [anon_sym_LBRACE] = ACTIONS(7109), - [anon_sym_LBRACK] = ACTIONS(7109), - [anon_sym_EQ] = ACTIONS(7107), - [anon_sym_const] = ACTIONS(7107), - [anon_sym_constexpr] = ACTIONS(7109), - [anon_sym_volatile] = ACTIONS(7109), - [anon_sym_restrict] = ACTIONS(7109), - [anon_sym___restrict__] = ACTIONS(7109), - [anon_sym__Atomic] = ACTIONS(7109), - [anon_sym__Noreturn] = ACTIONS(7109), - [anon_sym_noreturn] = ACTIONS(7109), - [anon_sym__Nonnull] = ACTIONS(7109), - [anon_sym_mutable] = ACTIONS(7109), - [anon_sym_constinit] = ACTIONS(7109), - [anon_sym_consteval] = ACTIONS(7109), - [anon_sym_alignas] = ACTIONS(7109), - [anon_sym__Alignas] = ACTIONS(7109), - [anon_sym_QMARK] = ACTIONS(7109), - [anon_sym_STAR_EQ] = ACTIONS(7109), - [anon_sym_SLASH_EQ] = ACTIONS(7109), - [anon_sym_PERCENT_EQ] = ACTIONS(7109), - [anon_sym_PLUS_EQ] = ACTIONS(7109), - [anon_sym_DASH_EQ] = ACTIONS(7109), - [anon_sym_LT_LT_EQ] = ACTIONS(7109), - [anon_sym_GT_GT_EQ] = ACTIONS(7109), - [anon_sym_AMP_EQ] = ACTIONS(7109), - [anon_sym_CARET_EQ] = ACTIONS(7109), - [anon_sym_PIPE_EQ] = ACTIONS(7109), - [anon_sym_and_eq] = ACTIONS(7109), - [anon_sym_or_eq] = ACTIONS(7109), - [anon_sym_xor_eq] = ACTIONS(7109), - [anon_sym_LT_EQ_GT] = ACTIONS(7109), - [anon_sym_or] = ACTIONS(7107), - [anon_sym_and] = ACTIONS(7107), - [anon_sym_bitor] = ACTIONS(7109), - [anon_sym_xor] = ACTIONS(7107), - [anon_sym_bitand] = ACTIONS(7109), - [anon_sym_not_eq] = ACTIONS(7109), - [anon_sym_DASH_DASH] = ACTIONS(7109), - [anon_sym_PLUS_PLUS] = ACTIONS(7109), - [anon_sym_DOT] = ACTIONS(7107), - [anon_sym_DOT_STAR] = ACTIONS(7109), - [anon_sym_DASH_GT] = ACTIONS(7107), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7109), - [anon_sym_override] = ACTIONS(7109), - [anon_sym_requires] = ACTIONS(7109), - [anon_sym_DASH_GT_STAR] = ACTIONS(7109), - }, - [STATE(2835)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6902), - [anon_sym_COMMA] = ACTIONS(6902), - [anon_sym_RPAREN] = ACTIONS(6902), - [anon_sym_LPAREN2] = ACTIONS(6902), - [anon_sym_DASH] = ACTIONS(6900), - [anon_sym_PLUS] = ACTIONS(6900), - [anon_sym_STAR] = ACTIONS(6900), - [anon_sym_SLASH] = ACTIONS(6900), - [anon_sym_PERCENT] = ACTIONS(6900), - [anon_sym_PIPE_PIPE] = ACTIONS(6902), - [anon_sym_AMP_AMP] = ACTIONS(6902), - [anon_sym_PIPE] = ACTIONS(6900), - [anon_sym_CARET] = ACTIONS(6900), - [anon_sym_AMP] = ACTIONS(6900), - [anon_sym_EQ_EQ] = ACTIONS(6902), - [anon_sym_BANG_EQ] = ACTIONS(6902), - [anon_sym_GT] = ACTIONS(6900), - [anon_sym_GT_EQ] = ACTIONS(6902), - [anon_sym_LT_EQ] = ACTIONS(6900), - [anon_sym_LT] = ACTIONS(6900), - [anon_sym_LT_LT] = ACTIONS(6900), - [anon_sym_GT_GT] = ACTIONS(6900), - [anon_sym___extension__] = ACTIONS(6902), - [sym_ms_restrict_modifier] = ACTIONS(6900), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6902), - [sym_ms_signed_ptr_modifier] = ACTIONS(6902), - [anon_sym__unaligned] = ACTIONS(6902), - [anon_sym___unaligned] = ACTIONS(6902), - [anon_sym_LBRACK] = ACTIONS(6902), - [anon_sym_EQ] = ACTIONS(6900), - [anon_sym_const] = ACTIONS(6900), - [anon_sym_constexpr] = ACTIONS(6902), - [anon_sym_volatile] = ACTIONS(6902), - [anon_sym_restrict] = ACTIONS(6902), - [anon_sym___restrict__] = ACTIONS(6902), - [anon_sym__Atomic] = ACTIONS(6902), - [anon_sym__Noreturn] = ACTIONS(6902), - [anon_sym_noreturn] = ACTIONS(6902), - [anon_sym__Nonnull] = ACTIONS(6902), - [anon_sym_mutable] = ACTIONS(6902), - [anon_sym_constinit] = ACTIONS(6902), - [anon_sym_consteval] = ACTIONS(6902), - [anon_sym_alignas] = ACTIONS(6902), - [anon_sym__Alignas] = ACTIONS(6902), - [anon_sym_QMARK] = ACTIONS(6902), - [anon_sym_STAR_EQ] = ACTIONS(6902), - [anon_sym_SLASH_EQ] = ACTIONS(6902), - [anon_sym_PERCENT_EQ] = ACTIONS(6902), - [anon_sym_PLUS_EQ] = ACTIONS(6902), - [anon_sym_DASH_EQ] = ACTIONS(6902), - [anon_sym_LT_LT_EQ] = ACTIONS(6902), - [anon_sym_GT_GT_EQ] = ACTIONS(6902), - [anon_sym_AMP_EQ] = ACTIONS(6902), - [anon_sym_CARET_EQ] = ACTIONS(6902), - [anon_sym_PIPE_EQ] = ACTIONS(6902), - [anon_sym_LT_EQ_GT] = ACTIONS(6902), - [anon_sym_or] = ACTIONS(6902), - [anon_sym_and] = ACTIONS(6902), - [anon_sym_bitor] = ACTIONS(6902), - [anon_sym_xor] = ACTIONS(6902), - [anon_sym_bitand] = ACTIONS(6902), - [anon_sym_not_eq] = ACTIONS(6902), - [anon_sym_DASH_DASH] = ACTIONS(6902), - [anon_sym_PLUS_PLUS] = ACTIONS(6902), - [anon_sym_DOT] = ACTIONS(6900), - [anon_sym_DOT_STAR] = ACTIONS(6902), - [anon_sym_DASH_GT] = ACTIONS(6900), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6902), - [anon_sym_override] = ACTIONS(6902), - [anon_sym_requires] = ACTIONS(6902), - [anon_sym_DASH_GT_STAR] = ACTIONS(6902), - }, - [STATE(2836)] = { - [sym_catch_clause] = STATE(2836), - [aux_sym_constructor_try_statement_repeat1] = STATE(2836), - [sym_identifier] = ACTIONS(3137), - [aux_sym_preproc_def_token1] = ACTIONS(3137), - [aux_sym_preproc_if_token1] = ACTIONS(3137), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3137), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3137), - [sym_preproc_directive] = ACTIONS(3137), - [anon_sym_LPAREN2] = ACTIONS(3139), - [anon_sym_TILDE] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3139), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym___extension__] = ACTIONS(3137), - [anon_sym_typedef] = ACTIONS(3137), - [anon_sym_virtual] = ACTIONS(3137), - [anon_sym_extern] = ACTIONS(3137), - [anon_sym___attribute__] = ACTIONS(3137), - [anon_sym___attribute] = ACTIONS(3137), - [anon_sym_using] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3139), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3139), - [anon_sym___declspec] = ACTIONS(3137), - [anon_sym___based] = ACTIONS(3137), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_signed] = ACTIONS(3137), - [anon_sym_unsigned] = ACTIONS(3137), - [anon_sym_long] = ACTIONS(3137), - [anon_sym_short] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_static] = ACTIONS(3137), - [anon_sym_register] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym___inline] = ACTIONS(3137), - [anon_sym___inline__] = ACTIONS(3137), - [anon_sym___forceinline] = ACTIONS(3137), - [anon_sym_thread_local] = ACTIONS(3137), - [anon_sym___thread] = ACTIONS(3137), - [anon_sym_const] = ACTIONS(3137), - [anon_sym_constexpr] = ACTIONS(3137), - [anon_sym_volatile] = ACTIONS(3137), - [anon_sym_restrict] = ACTIONS(3137), - [anon_sym___restrict__] = ACTIONS(3137), - [anon_sym__Atomic] = ACTIONS(3137), - [anon_sym__Noreturn] = ACTIONS(3137), - [anon_sym_noreturn] = ACTIONS(3137), - [anon_sym__Nonnull] = ACTIONS(3137), - [anon_sym_mutable] = ACTIONS(3137), - [anon_sym_constinit] = ACTIONS(3137), - [anon_sym_consteval] = ACTIONS(3137), - [anon_sym_alignas] = ACTIONS(3137), - [anon_sym__Alignas] = ACTIONS(3137), - [sym_primitive_type] = ACTIONS(3137), - [anon_sym_enum] = ACTIONS(3137), - [anon_sym_class] = ACTIONS(3137), - [anon_sym_struct] = ACTIONS(3137), - [anon_sym_union] = ACTIONS(3137), - [anon_sym_typename] = ACTIONS(3137), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3137), - [anon_sym_decltype] = ACTIONS(3137), - [anon_sym_explicit] = ACTIONS(3137), - [anon_sym_private] = ACTIONS(3137), - [anon_sym_template] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_friend] = ACTIONS(3137), - [anon_sym_public] = ACTIONS(3137), - [anon_sym_protected] = ACTIONS(3137), - [anon_sym_static_assert] = ACTIONS(3137), - [anon_sym_catch] = ACTIONS(8502), - [anon_sym_LBRACK_COLON] = ACTIONS(3139), - }, - [STATE(2837)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), - [anon_sym_COMMA] = ACTIONS(6751), - [anon_sym_RPAREN] = ACTIONS(6751), - [anon_sym_LPAREN2] = ACTIONS(6751), - [anon_sym_DASH] = ACTIONS(6746), - [anon_sym_PLUS] = ACTIONS(6746), - [anon_sym_STAR] = ACTIONS(6746), - [anon_sym_SLASH] = ACTIONS(6746), - [anon_sym_PERCENT] = ACTIONS(6746), - [anon_sym_PIPE_PIPE] = ACTIONS(6751), - [anon_sym_AMP_AMP] = ACTIONS(6751), - [anon_sym_PIPE] = ACTIONS(6746), - [anon_sym_CARET] = ACTIONS(6746), - [anon_sym_AMP] = ACTIONS(6746), - [anon_sym_EQ_EQ] = ACTIONS(6751), - [anon_sym_BANG_EQ] = ACTIONS(6751), - [anon_sym_GT] = ACTIONS(6746), - [anon_sym_GT_EQ] = ACTIONS(6751), - [anon_sym_LT_EQ] = ACTIONS(6746), - [anon_sym_LT] = ACTIONS(6746), - [anon_sym_LT_LT] = ACTIONS(6746), - [anon_sym_GT_GT] = ACTIONS(6746), - [anon_sym___extension__] = ACTIONS(6751), - [anon_sym___attribute__] = ACTIONS(6751), - [anon_sym___attribute] = ACTIONS(6746), - [anon_sym_COLON] = ACTIONS(6746), - [anon_sym_COLON_COLON] = ACTIONS(6751), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_LBRACK] = ACTIONS(6751), - [anon_sym_EQ] = ACTIONS(6746), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6751), - [anon_sym_volatile] = ACTIONS(6751), - [anon_sym_restrict] = ACTIONS(6751), - [anon_sym___restrict__] = ACTIONS(6751), - [anon_sym__Atomic] = ACTIONS(6751), - [anon_sym__Noreturn] = ACTIONS(6751), - [anon_sym_noreturn] = ACTIONS(6751), - [anon_sym__Nonnull] = ACTIONS(6751), - [anon_sym_mutable] = ACTIONS(6751), - [anon_sym_constinit] = ACTIONS(6751), - [anon_sym_consteval] = ACTIONS(6751), - [anon_sym_alignas] = ACTIONS(6751), - [anon_sym__Alignas] = ACTIONS(6751), - [anon_sym_QMARK] = ACTIONS(6751), - [anon_sym_STAR_EQ] = ACTIONS(6751), - [anon_sym_SLASH_EQ] = ACTIONS(6751), - [anon_sym_PERCENT_EQ] = ACTIONS(6751), - [anon_sym_PLUS_EQ] = ACTIONS(6751), - [anon_sym_DASH_EQ] = ACTIONS(6751), - [anon_sym_LT_LT_EQ] = ACTIONS(6751), - [anon_sym_GT_GT_EQ] = ACTIONS(6751), - [anon_sym_AMP_EQ] = ACTIONS(6751), - [anon_sym_CARET_EQ] = ACTIONS(6751), - [anon_sym_PIPE_EQ] = ACTIONS(6751), - [anon_sym_LT_EQ_GT] = ACTIONS(6751), - [anon_sym_or] = ACTIONS(6751), - [anon_sym_and] = ACTIONS(6751), - [anon_sym_bitor] = ACTIONS(6751), - [anon_sym_xor] = ACTIONS(6751), - [anon_sym_bitand] = ACTIONS(6751), - [anon_sym_not_eq] = ACTIONS(6751), - [anon_sym_DASH_DASH] = ACTIONS(6751), - [anon_sym_PLUS_PLUS] = ACTIONS(6751), - [anon_sym_DOT] = ACTIONS(6746), - [anon_sym_DOT_STAR] = ACTIONS(6751), - [anon_sym_DASH_GT] = ACTIONS(6746), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6751), - [anon_sym_override] = ACTIONS(6751), - [anon_sym_requires] = ACTIONS(6751), - [anon_sym_DASH_GT_STAR] = ACTIONS(6751), - }, - [STATE(2838)] = { - [sym_type_qualifier] = STATE(2804), - [sym_alignas_qualifier] = STATE(2592), - [aux_sym__type_definition_type_repeat1] = STATE(2804), - [aux_sym_sized_type_specifier_repeat1] = STATE(3301), - [sym_identifier] = ACTIONS(8505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), - [anon_sym_COMMA] = ACTIONS(6812), - [aux_sym_preproc_if_token2] = ACTIONS(6812), - [aux_sym_preproc_else_token1] = ACTIONS(6812), - [aux_sym_preproc_elif_token1] = ACTIONS(6814), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6812), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6812), - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_STAR] = ACTIONS(6812), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_PERCENT] = ACTIONS(6812), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_CARET] = ACTIONS(6812), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_LT_LT] = ACTIONS(6812), - [anon_sym_GT_GT] = ACTIONS(6812), - [anon_sym___extension__] = ACTIONS(8297), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_signed] = ACTIONS(8508), - [anon_sym_unsigned] = ACTIONS(8508), - [anon_sym_long] = ACTIONS(8508), - [anon_sym_short] = ACTIONS(8508), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_const] = ACTIONS(8297), - [anon_sym_constexpr] = ACTIONS(8297), - [anon_sym_volatile] = ACTIONS(8297), - [anon_sym_restrict] = ACTIONS(8297), - [anon_sym___restrict__] = ACTIONS(8297), - [anon_sym__Atomic] = ACTIONS(8297), - [anon_sym__Noreturn] = ACTIONS(8297), - [anon_sym_noreturn] = ACTIONS(8297), - [anon_sym__Nonnull] = ACTIONS(8297), - [anon_sym_mutable] = ACTIONS(8297), - [anon_sym_constinit] = ACTIONS(8297), - [anon_sym_consteval] = ACTIONS(8297), - [anon_sym_alignas] = ACTIONS(8302), - [anon_sym__Alignas] = ACTIONS(8302), - [sym_primitive_type] = ACTIONS(8510), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_LT_EQ_GT] = ACTIONS(6812), - [anon_sym_or] = ACTIONS(6814), - [anon_sym_and] = ACTIONS(6814), - [anon_sym_bitor] = ACTIONS(6814), - [anon_sym_xor] = ACTIONS(6814), - [anon_sym_bitand] = ACTIONS(6814), - [anon_sym_not_eq] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6814), - [anon_sym_DOT_STAR] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6812), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6814), - [anon_sym_override] = ACTIONS(6814), - [anon_sym_requires] = ACTIONS(6814), + [anon_sym_final] = ACTIONS(8160), + [anon_sym_override] = ACTIONS(8160), + [anon_sym_requires] = ACTIONS(7237), + [anon_sym_DASH_GT_STAR] = ACTIONS(7237), }, - [STATE(2839)] = { - [sym_attribute_specifier] = STATE(1918), - [sym_attribute_declaration] = STATE(3122), - [aux_sym_type_definition_repeat1] = STATE(1918), - [aux_sym_attributed_declarator_repeat1] = STATE(3122), - [sym_identifier] = ACTIONS(8512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8514), - [anon_sym_COMMA] = ACTIONS(8514), - [anon_sym_RPAREN] = ACTIONS(8514), - [aux_sym_preproc_if_token2] = ACTIONS(8514), - [aux_sym_preproc_else_token1] = ACTIONS(8514), - [aux_sym_preproc_elif_token1] = ACTIONS(8512), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8514), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8514), - [anon_sym_LPAREN2] = ACTIONS(8514), - [anon_sym_DASH] = ACTIONS(8512), - [anon_sym_PLUS] = ACTIONS(8512), - [anon_sym_STAR] = ACTIONS(8512), - [anon_sym_SLASH] = ACTIONS(8512), - [anon_sym_PERCENT] = ACTIONS(8512), - [anon_sym_PIPE_PIPE] = ACTIONS(8514), - [anon_sym_AMP_AMP] = ACTIONS(8514), - [anon_sym_PIPE] = ACTIONS(8512), - [anon_sym_CARET] = ACTIONS(8512), - [anon_sym_AMP] = ACTIONS(8512), - [anon_sym_EQ_EQ] = ACTIONS(8514), - [anon_sym_BANG_EQ] = ACTIONS(8514), - [anon_sym_GT] = ACTIONS(8512), - [anon_sym_GT_EQ] = ACTIONS(8514), - [anon_sym_LT_EQ] = ACTIONS(8512), - [anon_sym_LT] = ACTIONS(8512), - [anon_sym_LT_LT] = ACTIONS(8512), - [anon_sym_GT_GT] = ACTIONS(8512), - [anon_sym_SEMI] = ACTIONS(8514), - [anon_sym___attribute__] = ACTIONS(6123), - [anon_sym___attribute] = ACTIONS(6123), - [anon_sym_COLON] = ACTIONS(8512), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8514), - [anon_sym_RBRACE] = ACTIONS(8514), - [anon_sym_LBRACK] = ACTIONS(8512), - [anon_sym_EQ] = ACTIONS(8512), - [anon_sym_QMARK] = ACTIONS(8514), - [anon_sym_STAR_EQ] = ACTIONS(8514), - [anon_sym_SLASH_EQ] = ACTIONS(8514), - [anon_sym_PERCENT_EQ] = ACTIONS(8514), - [anon_sym_PLUS_EQ] = ACTIONS(8514), - [anon_sym_DASH_EQ] = ACTIONS(8514), - [anon_sym_LT_LT_EQ] = ACTIONS(8514), - [anon_sym_GT_GT_EQ] = ACTIONS(8514), - [anon_sym_AMP_EQ] = ACTIONS(8514), - [anon_sym_CARET_EQ] = ACTIONS(8514), - [anon_sym_PIPE_EQ] = ACTIONS(8514), - [anon_sym_and_eq] = ACTIONS(8512), - [anon_sym_or_eq] = ACTIONS(8512), - [anon_sym_xor_eq] = ACTIONS(8512), - [anon_sym_LT_EQ_GT] = ACTIONS(8514), - [anon_sym_or] = ACTIONS(8512), - [anon_sym_and] = ACTIONS(8512), - [anon_sym_bitor] = ACTIONS(8512), - [anon_sym_xor] = ACTIONS(8512), - [anon_sym_bitand] = ACTIONS(8512), - [anon_sym_not_eq] = ACTIONS(8512), - [anon_sym_DASH_DASH] = ACTIONS(8514), - [anon_sym_PLUS_PLUS] = ACTIONS(8514), - [anon_sym_DOT] = ACTIONS(8512), - [anon_sym_DOT_STAR] = ACTIONS(8514), - [anon_sym_DASH_GT] = ACTIONS(8514), + [STATE(2607)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2607), + [sym_identifier] = ACTIONS(6999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7001), + [anon_sym_COMMA] = ACTIONS(7001), + [anon_sym_RPAREN] = ACTIONS(7001), + [aux_sym_preproc_if_token2] = ACTIONS(7001), + [aux_sym_preproc_else_token1] = ACTIONS(7001), + [aux_sym_preproc_elif_token1] = ACTIONS(6999), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7001), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7001), + [anon_sym_LPAREN2] = ACTIONS(7001), + [anon_sym_DASH] = ACTIONS(6999), + [anon_sym_PLUS] = ACTIONS(6999), + [anon_sym_STAR] = ACTIONS(7001), + [anon_sym_SLASH] = ACTIONS(6999), + [anon_sym_PERCENT] = ACTIONS(7001), + [anon_sym_PIPE_PIPE] = ACTIONS(7001), + [anon_sym_AMP_AMP] = ACTIONS(7001), + [anon_sym_PIPE] = ACTIONS(6999), + [anon_sym_CARET] = ACTIONS(7001), + [anon_sym_AMP] = ACTIONS(6999), + [anon_sym_EQ_EQ] = ACTIONS(7001), + [anon_sym_BANG_EQ] = ACTIONS(7001), + [anon_sym_GT] = ACTIONS(6999), + [anon_sym_GT_EQ] = ACTIONS(7001), + [anon_sym_LT_EQ] = ACTIONS(6999), + [anon_sym_LT] = ACTIONS(6999), + [anon_sym_LT_LT] = ACTIONS(7001), + [anon_sym_GT_GT] = ACTIONS(7001), + [anon_sym_SEMI] = ACTIONS(7001), + [anon_sym___extension__] = ACTIONS(6999), + [anon_sym___attribute__] = ACTIONS(6999), + [anon_sym___attribute] = ACTIONS(6999), + [anon_sym_COLON] = ACTIONS(6999), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7001), + [anon_sym_LBRACE] = ACTIONS(7001), + [anon_sym_RBRACE] = ACTIONS(7001), + [anon_sym_signed] = ACTIONS(8505), + [anon_sym_unsigned] = ACTIONS(8505), + [anon_sym_long] = ACTIONS(8505), + [anon_sym_short] = ACTIONS(8505), + [anon_sym_LBRACK] = ACTIONS(7001), + [anon_sym_const] = ACTIONS(6999), + [anon_sym_constexpr] = ACTIONS(6999), + [anon_sym_volatile] = ACTIONS(6999), + [anon_sym_restrict] = ACTIONS(6999), + [anon_sym___restrict__] = ACTIONS(6999), + [anon_sym__Atomic] = ACTIONS(6999), + [anon_sym__Noreturn] = ACTIONS(6999), + [anon_sym_noreturn] = ACTIONS(6999), + [anon_sym__Nonnull] = ACTIONS(6999), + [anon_sym_mutable] = ACTIONS(6999), + [anon_sym_constinit] = ACTIONS(6999), + [anon_sym_consteval] = ACTIONS(6999), + [anon_sym_alignas] = ACTIONS(6999), + [anon_sym__Alignas] = ACTIONS(6999), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7001), + [anon_sym_LT_EQ_GT] = ACTIONS(7001), + [anon_sym_or] = ACTIONS(6999), + [anon_sym_and] = ACTIONS(6999), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(6999), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(7001), + [anon_sym_PLUS_PLUS] = ACTIONS(7001), + [anon_sym_DOT] = ACTIONS(6999), + [anon_sym_DOT_STAR] = ACTIONS(7001), + [anon_sym_DASH_GT] = ACTIONS(7001), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8512), - [anon_sym_override] = ACTIONS(8512), - [anon_sym_requires] = ACTIONS(8512), - [anon_sym_COLON_RBRACK] = ACTIONS(8514), - }, - [STATE(2840)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6764), - [anon_sym_COMMA] = ACTIONS(6764), - [anon_sym_RPAREN] = ACTIONS(6764), - [anon_sym_LPAREN2] = ACTIONS(6764), - [anon_sym_DASH] = ACTIONS(6762), - [anon_sym_PLUS] = ACTIONS(6762), - [anon_sym_STAR] = ACTIONS(6762), - [anon_sym_SLASH] = ACTIONS(6762), - [anon_sym_PERCENT] = ACTIONS(6762), - [anon_sym_PIPE_PIPE] = ACTIONS(6764), - [anon_sym_AMP_AMP] = ACTIONS(6764), - [anon_sym_PIPE] = ACTIONS(6762), - [anon_sym_CARET] = ACTIONS(6762), - [anon_sym_AMP] = ACTIONS(6762), - [anon_sym_EQ_EQ] = ACTIONS(6764), - [anon_sym_BANG_EQ] = ACTIONS(6764), - [anon_sym_GT] = ACTIONS(6762), - [anon_sym_GT_EQ] = ACTIONS(6764), - [anon_sym_LT_EQ] = ACTIONS(6762), - [anon_sym_LT] = ACTIONS(6762), - [anon_sym_LT_LT] = ACTIONS(6762), - [anon_sym_GT_GT] = ACTIONS(6762), - [anon_sym___extension__] = ACTIONS(6764), - [anon_sym___attribute__] = ACTIONS(6764), - [anon_sym___attribute] = ACTIONS(6762), - [anon_sym_COLON] = ACTIONS(6762), - [anon_sym_COLON_COLON] = ACTIONS(6764), - [anon_sym_LBRACE] = ACTIONS(6764), - [anon_sym_LBRACK] = ACTIONS(6764), - [anon_sym_EQ] = ACTIONS(6762), - [anon_sym_const] = ACTIONS(6762), - [anon_sym_constexpr] = ACTIONS(6764), - [anon_sym_volatile] = ACTIONS(6764), - [anon_sym_restrict] = ACTIONS(6764), - [anon_sym___restrict__] = ACTIONS(6764), - [anon_sym__Atomic] = ACTIONS(6764), - [anon_sym__Noreturn] = ACTIONS(6764), - [anon_sym_noreturn] = ACTIONS(6764), - [anon_sym__Nonnull] = ACTIONS(6764), - [anon_sym_mutable] = ACTIONS(6764), - [anon_sym_constinit] = ACTIONS(6764), - [anon_sym_consteval] = ACTIONS(6764), - [anon_sym_alignas] = ACTIONS(6764), - [anon_sym__Alignas] = ACTIONS(6764), - [anon_sym_QMARK] = ACTIONS(6764), - [anon_sym_STAR_EQ] = ACTIONS(6764), - [anon_sym_SLASH_EQ] = ACTIONS(6764), - [anon_sym_PERCENT_EQ] = ACTIONS(6764), - [anon_sym_PLUS_EQ] = ACTIONS(6764), - [anon_sym_DASH_EQ] = ACTIONS(6764), - [anon_sym_LT_LT_EQ] = ACTIONS(6764), - [anon_sym_GT_GT_EQ] = ACTIONS(6764), - [anon_sym_AMP_EQ] = ACTIONS(6764), - [anon_sym_CARET_EQ] = ACTIONS(6764), - [anon_sym_PIPE_EQ] = ACTIONS(6764), - [anon_sym_LT_EQ_GT] = ACTIONS(6764), - [anon_sym_or] = ACTIONS(6764), - [anon_sym_and] = ACTIONS(6764), - [anon_sym_bitor] = ACTIONS(6764), - [anon_sym_xor] = ACTIONS(6764), - [anon_sym_bitand] = ACTIONS(6764), - [anon_sym_not_eq] = ACTIONS(6764), - [anon_sym_DASH_DASH] = ACTIONS(6764), - [anon_sym_PLUS_PLUS] = ACTIONS(6764), - [anon_sym_DOT] = ACTIONS(6762), - [anon_sym_DOT_STAR] = ACTIONS(6764), - [anon_sym_DASH_GT] = ACTIONS(6762), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6764), - [anon_sym_override] = ACTIONS(6764), - [anon_sym_requires] = ACTIONS(6764), - [anon_sym_DASH_GT_STAR] = ACTIONS(6764), - }, - [STATE(2841)] = { - [sym_catch_clause] = STATE(2820), - [aux_sym_constructor_try_statement_repeat1] = STATE(2820), - [sym_identifier] = ACTIONS(3554), - [aux_sym_preproc_def_token1] = ACTIONS(3554), - [aux_sym_preproc_if_token1] = ACTIONS(3554), - [aux_sym_preproc_if_token2] = ACTIONS(3554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3554), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3554), - [sym_preproc_directive] = ACTIONS(3554), - [anon_sym_LPAREN2] = ACTIONS(3556), - [anon_sym_TILDE] = ACTIONS(3556), - [anon_sym_STAR] = ACTIONS(3556), - [anon_sym_AMP_AMP] = ACTIONS(3556), - [anon_sym_AMP] = ACTIONS(3554), - [anon_sym_SEMI] = ACTIONS(3556), - [anon_sym___extension__] = ACTIONS(3554), - [anon_sym_typedef] = ACTIONS(3554), - [anon_sym_virtual] = ACTIONS(3554), - [anon_sym_extern] = ACTIONS(3554), - [anon_sym___attribute__] = ACTIONS(3554), - [anon_sym___attribute] = ACTIONS(3554), - [anon_sym_using] = ACTIONS(3554), - [anon_sym_COLON_COLON] = ACTIONS(3556), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3556), - [anon_sym___declspec] = ACTIONS(3554), - [anon_sym___based] = ACTIONS(3554), - [anon_sym_signed] = ACTIONS(3554), - [anon_sym_unsigned] = ACTIONS(3554), - [anon_sym_long] = ACTIONS(3554), - [anon_sym_short] = ACTIONS(3554), - [anon_sym_LBRACK] = ACTIONS(3554), - [anon_sym_static] = ACTIONS(3554), - [anon_sym_register] = ACTIONS(3554), - [anon_sym_inline] = ACTIONS(3554), - [anon_sym___inline] = ACTIONS(3554), - [anon_sym___inline__] = ACTIONS(3554), - [anon_sym___forceinline] = ACTIONS(3554), - [anon_sym_thread_local] = ACTIONS(3554), - [anon_sym___thread] = ACTIONS(3554), - [anon_sym_const] = ACTIONS(3554), - [anon_sym_constexpr] = ACTIONS(3554), - [anon_sym_volatile] = ACTIONS(3554), - [anon_sym_restrict] = ACTIONS(3554), - [anon_sym___restrict__] = ACTIONS(3554), - [anon_sym__Atomic] = ACTIONS(3554), - [anon_sym__Noreturn] = ACTIONS(3554), - [anon_sym_noreturn] = ACTIONS(3554), - [anon_sym__Nonnull] = ACTIONS(3554), - [anon_sym_mutable] = ACTIONS(3554), - [anon_sym_constinit] = ACTIONS(3554), - [anon_sym_consteval] = ACTIONS(3554), - [anon_sym_alignas] = ACTIONS(3554), - [anon_sym__Alignas] = ACTIONS(3554), - [sym_primitive_type] = ACTIONS(3554), - [anon_sym_enum] = ACTIONS(3554), - [anon_sym_class] = ACTIONS(3554), - [anon_sym_struct] = ACTIONS(3554), - [anon_sym_union] = ACTIONS(3554), - [anon_sym_typename] = ACTIONS(3554), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3554), - [anon_sym_decltype] = ACTIONS(3554), - [anon_sym_explicit] = ACTIONS(3554), - [anon_sym_private] = ACTIONS(3554), - [anon_sym_template] = ACTIONS(3554), - [anon_sym_operator] = ACTIONS(3554), - [anon_sym_friend] = ACTIONS(3554), - [anon_sym_public] = ACTIONS(3554), - [anon_sym_protected] = ACTIONS(3554), - [anon_sym_static_assert] = ACTIONS(3554), - [anon_sym_catch] = ACTIONS(8500), - [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [anon_sym_final] = ACTIONS(6999), + [anon_sym_override] = ACTIONS(6999), + [anon_sym_requires] = ACTIONS(6999), + [anon_sym_COLON_RBRACK] = ACTIONS(7001), }, - [STATE(2842)] = { - [sym_attribute_specifier] = STATE(3415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7189), - [anon_sym_COMMA] = ACTIONS(7189), - [anon_sym_RPAREN] = ACTIONS(7189), - [anon_sym_LPAREN2] = ACTIONS(7189), - [anon_sym_DASH] = ACTIONS(7187), - [anon_sym_PLUS] = ACTIONS(7187), - [anon_sym_STAR] = ACTIONS(7187), - [anon_sym_SLASH] = ACTIONS(7187), - [anon_sym_PERCENT] = ACTIONS(7187), - [anon_sym_PIPE_PIPE] = ACTIONS(7189), - [anon_sym_AMP_AMP] = ACTIONS(7189), - [anon_sym_PIPE] = ACTIONS(7187), - [anon_sym_CARET] = ACTIONS(7187), - [anon_sym_AMP] = ACTIONS(7187), - [anon_sym_EQ_EQ] = ACTIONS(7189), - [anon_sym_BANG_EQ] = ACTIONS(7189), - [anon_sym_GT] = ACTIONS(7187), - [anon_sym_GT_EQ] = ACTIONS(7189), - [anon_sym_LT_EQ] = ACTIONS(7187), - [anon_sym_LT] = ACTIONS(7187), - [anon_sym_LT_LT] = ACTIONS(7187), - [anon_sym_GT_GT] = ACTIONS(7187), - [anon_sym___extension__] = ACTIONS(7189), - [anon_sym___attribute__] = ACTIONS(8189), - [anon_sym___attribute] = ACTIONS(8191), - [anon_sym_LBRACE] = ACTIONS(7189), - [anon_sym_LBRACK] = ACTIONS(7189), - [anon_sym_EQ] = ACTIONS(7187), - [anon_sym_const] = ACTIONS(7187), - [anon_sym_constexpr] = ACTIONS(7189), - [anon_sym_volatile] = ACTIONS(7189), - [anon_sym_restrict] = ACTIONS(7189), - [anon_sym___restrict__] = ACTIONS(7189), - [anon_sym__Atomic] = ACTIONS(7189), - [anon_sym__Noreturn] = ACTIONS(7189), - [anon_sym_noreturn] = ACTIONS(7189), - [anon_sym__Nonnull] = ACTIONS(7189), - [anon_sym_mutable] = ACTIONS(7189), - [anon_sym_constinit] = ACTIONS(7189), - [anon_sym_consteval] = ACTIONS(7189), - [anon_sym_alignas] = ACTIONS(7189), - [anon_sym__Alignas] = ACTIONS(7189), - [anon_sym_QMARK] = ACTIONS(7189), - [anon_sym_STAR_EQ] = ACTIONS(7189), - [anon_sym_SLASH_EQ] = ACTIONS(7189), - [anon_sym_PERCENT_EQ] = ACTIONS(7189), - [anon_sym_PLUS_EQ] = ACTIONS(7189), - [anon_sym_DASH_EQ] = ACTIONS(7189), - [anon_sym_LT_LT_EQ] = ACTIONS(7189), - [anon_sym_GT_GT_EQ] = ACTIONS(7189), - [anon_sym_AMP_EQ] = ACTIONS(7189), - [anon_sym_CARET_EQ] = ACTIONS(7189), - [anon_sym_PIPE_EQ] = ACTIONS(7189), - [anon_sym_LT_EQ_GT] = ACTIONS(7189), - [anon_sym_or] = ACTIONS(7189), - [anon_sym_and] = ACTIONS(7189), - [anon_sym_bitor] = ACTIONS(7189), - [anon_sym_xor] = ACTIONS(7189), - [anon_sym_bitand] = ACTIONS(7189), - [anon_sym_not_eq] = ACTIONS(7189), - [anon_sym_DASH_DASH] = ACTIONS(7189), - [anon_sym_PLUS_PLUS] = ACTIONS(7189), - [anon_sym_DOT] = ACTIONS(7187), - [anon_sym_DOT_STAR] = ACTIONS(7189), - [anon_sym_DASH_GT] = ACTIONS(7187), + [STATE(2608)] = { + [sym_attribute_specifier] = STATE(3033), + [sym_enumerator_list] = STATE(2662), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7383), + [anon_sym_COMMA] = ACTIONS(7383), + [anon_sym_RPAREN] = ACTIONS(7383), + [anon_sym_LPAREN2] = ACTIONS(7383), + [anon_sym_DASH] = ACTIONS(7381), + [anon_sym_PLUS] = ACTIONS(7381), + [anon_sym_STAR] = ACTIONS(7381), + [anon_sym_SLASH] = ACTIONS(7381), + [anon_sym_PERCENT] = ACTIONS(7381), + [anon_sym_PIPE_PIPE] = ACTIONS(7383), + [anon_sym_AMP_AMP] = ACTIONS(7383), + [anon_sym_PIPE] = ACTIONS(7381), + [anon_sym_CARET] = ACTIONS(7381), + [anon_sym_AMP] = ACTIONS(7381), + [anon_sym_EQ_EQ] = ACTIONS(7383), + [anon_sym_BANG_EQ] = ACTIONS(7383), + [anon_sym_GT] = ACTIONS(7381), + [anon_sym_GT_EQ] = ACTIONS(7383), + [anon_sym_LT_EQ] = ACTIONS(7381), + [anon_sym_LT] = ACTIONS(7381), + [anon_sym_LT_LT] = ACTIONS(7381), + [anon_sym_GT_GT] = ACTIONS(7381), + [anon_sym___extension__] = ACTIONS(7383), + [anon_sym___attribute__] = ACTIONS(8152), + [anon_sym___attribute] = ACTIONS(8154), + [anon_sym_LBRACE] = ACTIONS(8383), + [anon_sym_LBRACK] = ACTIONS(7383), + [anon_sym_EQ] = ACTIONS(7381), + [anon_sym_const] = ACTIONS(7381), + [anon_sym_constexpr] = ACTIONS(7383), + [anon_sym_volatile] = ACTIONS(7383), + [anon_sym_restrict] = ACTIONS(7383), + [anon_sym___restrict__] = ACTIONS(7383), + [anon_sym__Atomic] = ACTIONS(7383), + [anon_sym__Noreturn] = ACTIONS(7383), + [anon_sym_noreturn] = ACTIONS(7383), + [anon_sym__Nonnull] = ACTIONS(7383), + [anon_sym_mutable] = ACTIONS(7383), + [anon_sym_constinit] = ACTIONS(7383), + [anon_sym_consteval] = ACTIONS(7383), + [anon_sym_alignas] = ACTIONS(7383), + [anon_sym__Alignas] = ACTIONS(7383), + [anon_sym_QMARK] = ACTIONS(7383), + [anon_sym_STAR_EQ] = ACTIONS(7383), + [anon_sym_SLASH_EQ] = ACTIONS(7383), + [anon_sym_PERCENT_EQ] = ACTIONS(7383), + [anon_sym_PLUS_EQ] = ACTIONS(7383), + [anon_sym_DASH_EQ] = ACTIONS(7383), + [anon_sym_LT_LT_EQ] = ACTIONS(7383), + [anon_sym_GT_GT_EQ] = ACTIONS(7383), + [anon_sym_AMP_EQ] = ACTIONS(7383), + [anon_sym_CARET_EQ] = ACTIONS(7383), + [anon_sym_PIPE_EQ] = ACTIONS(7383), + [anon_sym_and_eq] = ACTIONS(7383), + [anon_sym_or_eq] = ACTIONS(7383), + [anon_sym_xor_eq] = ACTIONS(7383), + [anon_sym_LT_EQ_GT] = ACTIONS(7383), + [anon_sym_or] = ACTIONS(7381), + [anon_sym_and] = ACTIONS(7381), + [anon_sym_bitor] = ACTIONS(7383), + [anon_sym_xor] = ACTIONS(7381), + [anon_sym_bitand] = ACTIONS(7383), + [anon_sym_not_eq] = ACTIONS(7383), + [anon_sym_DASH_DASH] = ACTIONS(7383), + [anon_sym_PLUS_PLUS] = ACTIONS(7383), + [anon_sym_DOT] = ACTIONS(7381), + [anon_sym_DOT_STAR] = ACTIONS(7383), + [anon_sym_DASH_GT] = ACTIONS(7381), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7189), - [anon_sym_override] = ACTIONS(7189), - [anon_sym_requires] = ACTIONS(7189), - [anon_sym_DASH_GT_STAR] = ACTIONS(7189), - }, - [STATE(2843)] = { - [sym_attribute_specifier] = STATE(3441), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7055), - [anon_sym_COMMA] = ACTIONS(7055), - [anon_sym_RPAREN] = ACTIONS(7055), - [anon_sym_LPAREN2] = ACTIONS(7055), - [anon_sym_DASH] = ACTIONS(7053), - [anon_sym_PLUS] = ACTIONS(7053), - [anon_sym_STAR] = ACTIONS(7053), - [anon_sym_SLASH] = ACTIONS(7053), - [anon_sym_PERCENT] = ACTIONS(7053), - [anon_sym_PIPE_PIPE] = ACTIONS(7055), - [anon_sym_AMP_AMP] = ACTIONS(7055), - [anon_sym_PIPE] = ACTIONS(7053), - [anon_sym_CARET] = ACTIONS(7053), - [anon_sym_AMP] = ACTIONS(7053), - [anon_sym_EQ_EQ] = ACTIONS(7055), - [anon_sym_BANG_EQ] = ACTIONS(7055), - [anon_sym_GT] = ACTIONS(7053), - [anon_sym_GT_EQ] = ACTIONS(7055), - [anon_sym_LT_EQ] = ACTIONS(7053), - [anon_sym_LT] = ACTIONS(7053), - [anon_sym_LT_LT] = ACTIONS(7053), - [anon_sym_GT_GT] = ACTIONS(7053), - [anon_sym___extension__] = ACTIONS(7055), - [anon_sym___attribute__] = ACTIONS(8189), - [anon_sym___attribute] = ACTIONS(8191), - [anon_sym_LBRACE] = ACTIONS(7055), - [anon_sym_LBRACK] = ACTIONS(7055), - [anon_sym_EQ] = ACTIONS(7053), - [anon_sym_const] = ACTIONS(7053), - [anon_sym_constexpr] = ACTIONS(7055), - [anon_sym_volatile] = ACTIONS(7055), - [anon_sym_restrict] = ACTIONS(7055), - [anon_sym___restrict__] = ACTIONS(7055), - [anon_sym__Atomic] = ACTIONS(7055), - [anon_sym__Noreturn] = ACTIONS(7055), - [anon_sym_noreturn] = ACTIONS(7055), - [anon_sym__Nonnull] = ACTIONS(7055), - [anon_sym_mutable] = ACTIONS(7055), - [anon_sym_constinit] = ACTIONS(7055), - [anon_sym_consteval] = ACTIONS(7055), - [anon_sym_alignas] = ACTIONS(7055), - [anon_sym__Alignas] = ACTIONS(7055), - [anon_sym_QMARK] = ACTIONS(7055), - [anon_sym_STAR_EQ] = ACTIONS(7055), - [anon_sym_SLASH_EQ] = ACTIONS(7055), - [anon_sym_PERCENT_EQ] = ACTIONS(7055), - [anon_sym_PLUS_EQ] = ACTIONS(7055), - [anon_sym_DASH_EQ] = ACTIONS(7055), - [anon_sym_LT_LT_EQ] = ACTIONS(7055), - [anon_sym_GT_GT_EQ] = ACTIONS(7055), - [anon_sym_AMP_EQ] = ACTIONS(7055), - [anon_sym_CARET_EQ] = ACTIONS(7055), - [anon_sym_PIPE_EQ] = ACTIONS(7055), - [anon_sym_LT_EQ_GT] = ACTIONS(7055), - [anon_sym_or] = ACTIONS(7055), - [anon_sym_and] = ACTIONS(7055), - [anon_sym_bitor] = ACTIONS(7055), - [anon_sym_xor] = ACTIONS(7055), - [anon_sym_bitand] = ACTIONS(7055), - [anon_sym_not_eq] = ACTIONS(7055), - [anon_sym_DASH_DASH] = ACTIONS(7055), - [anon_sym_PLUS_PLUS] = ACTIONS(7055), - [anon_sym_DOT] = ACTIONS(7053), - [anon_sym_DOT_STAR] = ACTIONS(7055), - [anon_sym_DASH_GT] = ACTIONS(7053), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7055), - [anon_sym_override] = ACTIONS(7055), - [anon_sym_requires] = ACTIONS(7055), - [anon_sym_DASH_GT_STAR] = ACTIONS(7055), + [anon_sym_final] = ACTIONS(7383), + [anon_sym_override] = ACTIONS(7383), + [anon_sym_requires] = ACTIONS(7383), + [anon_sym_DASH_GT_STAR] = ACTIONS(7383), }, - [STATE(2844)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_attributes_end] = STATE(4044), - [sym__function_postfix] = STATE(3513), - [sym_trailing_return_type] = STATE(2961), - [sym_requires_clause] = STATE(3513), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym_SEMI] = ACTIONS(7544), - [anon_sym___attribute__] = ACTIONS(7927), - [anon_sym___attribute] = ACTIONS(7930), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7933), + [STATE(2609)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2474), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7223), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_signed] = ACTIONS(8379), + [anon_sym_unsigned] = ACTIONS(8379), + [anon_sym_long] = ACTIONS(8379), + [anon_sym_short] = ACTIONS(8379), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7223), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7557), - [anon_sym_override] = ACTIONS(7557), - [anon_sym_requires] = ACTIONS(7560), - }, - [STATE(2845)] = { - [sym_identifier] = ACTIONS(8516), - [anon_sym_LPAREN2] = ACTIONS(8518), - [anon_sym_TILDE] = ACTIONS(8518), - [anon_sym_STAR] = ACTIONS(8518), - [anon_sym_PIPE_PIPE] = ACTIONS(8518), - [anon_sym_AMP_AMP] = ACTIONS(8518), - [anon_sym_AMP] = ACTIONS(8516), - [anon_sym___extension__] = ACTIONS(8516), - [anon_sym_virtual] = ACTIONS(8516), - [anon_sym_extern] = ACTIONS(8516), - [anon_sym___attribute__] = ACTIONS(8516), - [anon_sym___attribute] = ACTIONS(8516), - [anon_sym_using] = ACTIONS(8516), - [anon_sym_COLON_COLON] = ACTIONS(8518), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8518), - [anon_sym___declspec] = ACTIONS(8516), - [anon_sym___based] = ACTIONS(8516), - [anon_sym___cdecl] = ACTIONS(8516), - [anon_sym___clrcall] = ACTIONS(8516), - [anon_sym___stdcall] = ACTIONS(8516), - [anon_sym___fastcall] = ACTIONS(8516), - [anon_sym___thiscall] = ACTIONS(8516), - [anon_sym___vectorcall] = ACTIONS(8516), - [anon_sym_LBRACE] = ACTIONS(8518), - [anon_sym_signed] = ACTIONS(8516), - [anon_sym_unsigned] = ACTIONS(8516), - [anon_sym_long] = ACTIONS(8516), - [anon_sym_short] = ACTIONS(8516), - [anon_sym_LBRACK] = ACTIONS(8516), - [anon_sym_static] = ACTIONS(8516), - [anon_sym_register] = ACTIONS(8516), - [anon_sym_inline] = ACTIONS(8516), - [anon_sym___inline] = ACTIONS(8516), - [anon_sym___inline__] = ACTIONS(8516), - [anon_sym___forceinline] = ACTIONS(8516), - [anon_sym_thread_local] = ACTIONS(8516), - [anon_sym___thread] = ACTIONS(8516), - [anon_sym_const] = ACTIONS(8516), - [anon_sym_constexpr] = ACTIONS(8516), - [anon_sym_volatile] = ACTIONS(8516), - [anon_sym_restrict] = ACTIONS(8516), - [anon_sym___restrict__] = ACTIONS(8516), - [anon_sym__Atomic] = ACTIONS(8516), - [anon_sym__Noreturn] = ACTIONS(8516), - [anon_sym_noreturn] = ACTIONS(8516), - [anon_sym__Nonnull] = ACTIONS(8516), - [anon_sym_mutable] = ACTIONS(8516), - [anon_sym_constinit] = ACTIONS(8516), - [anon_sym_consteval] = ACTIONS(8516), - [anon_sym_alignas] = ACTIONS(8516), - [anon_sym__Alignas] = ACTIONS(8516), - [sym_primitive_type] = ACTIONS(8516), - [anon_sym_enum] = ACTIONS(8516), - [anon_sym_class] = ACTIONS(8516), - [anon_sym_struct] = ACTIONS(8516), - [anon_sym_union] = ACTIONS(8516), - [anon_sym_or] = ACTIONS(8516), - [anon_sym_and] = ACTIONS(8516), - [anon_sym_typename] = ACTIONS(8516), - [anon_sym_DASH_GT] = ACTIONS(8518), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8516), - [anon_sym_decltype] = ACTIONS(8516), - [anon_sym_explicit] = ACTIONS(8516), - [anon_sym_template] = ACTIONS(8516), - [anon_sym_operator] = ACTIONS(8516), - [anon_sym_friend] = ACTIONS(8516), - [anon_sym_noexcept] = ACTIONS(8516), - [anon_sym_throw] = ACTIONS(8516), - [anon_sym_concept] = ACTIONS(8516), - [anon_sym_LBRACK_COLON] = ACTIONS(8518), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_GT2] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), }, - [STATE(2846)] = { - [sym_attribute_specifier] = STATE(3443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), - [anon_sym_COMMA] = ACTIONS(7059), - [anon_sym_RPAREN] = ACTIONS(7059), - [anon_sym_LPAREN2] = ACTIONS(7059), - [anon_sym_DASH] = ACTIONS(7057), - [anon_sym_PLUS] = ACTIONS(7057), - [anon_sym_STAR] = ACTIONS(7057), - [anon_sym_SLASH] = ACTIONS(7057), - [anon_sym_PERCENT] = ACTIONS(7057), - [anon_sym_PIPE_PIPE] = ACTIONS(7059), - [anon_sym_AMP_AMP] = ACTIONS(7059), - [anon_sym_PIPE] = ACTIONS(7057), - [anon_sym_CARET] = ACTIONS(7057), - [anon_sym_AMP] = ACTIONS(7057), - [anon_sym_EQ_EQ] = ACTIONS(7059), - [anon_sym_BANG_EQ] = ACTIONS(7059), - [anon_sym_GT] = ACTIONS(7057), - [anon_sym_GT_EQ] = ACTIONS(7059), - [anon_sym_LT_EQ] = ACTIONS(7057), - [anon_sym_LT] = ACTIONS(7057), - [anon_sym_LT_LT] = ACTIONS(7057), - [anon_sym_GT_GT] = ACTIONS(7057), - [anon_sym___extension__] = ACTIONS(7059), - [anon_sym___attribute__] = ACTIONS(8189), - [anon_sym___attribute] = ACTIONS(8191), - [anon_sym_LBRACE] = ACTIONS(7059), - [anon_sym_LBRACK] = ACTIONS(7059), - [anon_sym_EQ] = ACTIONS(7057), - [anon_sym_const] = ACTIONS(7057), - [anon_sym_constexpr] = ACTIONS(7059), - [anon_sym_volatile] = ACTIONS(7059), - [anon_sym_restrict] = ACTIONS(7059), - [anon_sym___restrict__] = ACTIONS(7059), - [anon_sym__Atomic] = ACTIONS(7059), - [anon_sym__Noreturn] = ACTIONS(7059), - [anon_sym_noreturn] = ACTIONS(7059), - [anon_sym__Nonnull] = ACTIONS(7059), - [anon_sym_mutable] = ACTIONS(7059), - [anon_sym_constinit] = ACTIONS(7059), - [anon_sym_consteval] = ACTIONS(7059), - [anon_sym_alignas] = ACTIONS(7059), - [anon_sym__Alignas] = ACTIONS(7059), - [anon_sym_QMARK] = ACTIONS(7059), - [anon_sym_STAR_EQ] = ACTIONS(7059), - [anon_sym_SLASH_EQ] = ACTIONS(7059), - [anon_sym_PERCENT_EQ] = ACTIONS(7059), - [anon_sym_PLUS_EQ] = ACTIONS(7059), - [anon_sym_DASH_EQ] = ACTIONS(7059), - [anon_sym_LT_LT_EQ] = ACTIONS(7059), - [anon_sym_GT_GT_EQ] = ACTIONS(7059), - [anon_sym_AMP_EQ] = ACTIONS(7059), - [anon_sym_CARET_EQ] = ACTIONS(7059), - [anon_sym_PIPE_EQ] = ACTIONS(7059), - [anon_sym_LT_EQ_GT] = ACTIONS(7059), - [anon_sym_or] = ACTIONS(7059), - [anon_sym_and] = ACTIONS(7059), - [anon_sym_bitor] = ACTIONS(7059), - [anon_sym_xor] = ACTIONS(7059), - [anon_sym_bitand] = ACTIONS(7059), - [anon_sym_not_eq] = ACTIONS(7059), - [anon_sym_DASH_DASH] = ACTIONS(7059), - [anon_sym_PLUS_PLUS] = ACTIONS(7059), - [anon_sym_DOT] = ACTIONS(7057), - [anon_sym_DOT_STAR] = ACTIONS(7059), - [anon_sym_DASH_GT] = ACTIONS(7057), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7059), - [anon_sym_override] = ACTIONS(7059), - [anon_sym_requires] = ACTIONS(7059), - [anon_sym_DASH_GT_STAR] = ACTIONS(7059), + [STATE(2610)] = { + [sym__abstract_declarator] = STATE(5783), + [sym_abstract_parenthesized_declarator] = STATE(5693), + [sym_abstract_pointer_declarator] = STATE(5693), + [sym_abstract_function_declarator] = STATE(5693), + [sym_abstract_array_declarator] = STATE(5693), + [sym_type_qualifier] = STATE(2367), + [sym_alignas_qualifier] = STATE(2576), + [sym_parameter_list] = STATE(1989), + [sym_abstract_reference_declarator] = STATE(5693), + [sym__function_declarator_seq] = STATE(5694), + [aux_sym__type_definition_type_repeat1] = STATE(2367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(7589), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6821), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(7591), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6821), + [anon_sym_AMP] = ACTIONS(7593), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6821), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(7313), + [anon_sym_LBRACK] = ACTIONS(7321), + [anon_sym_EQ] = ACTIONS(6821), + [anon_sym_const] = ACTIONS(7323), + [anon_sym_constexpr] = ACTIONS(7313), + [anon_sym_volatile] = ACTIONS(7313), + [anon_sym_restrict] = ACTIONS(7313), + [anon_sym___restrict__] = ACTIONS(7313), + [anon_sym__Atomic] = ACTIONS(7313), + [anon_sym__Noreturn] = ACTIONS(7313), + [anon_sym_noreturn] = ACTIONS(7313), + [anon_sym__Nonnull] = ACTIONS(7313), + [anon_sym_mutable] = ACTIONS(7313), + [anon_sym_constinit] = ACTIONS(7313), + [anon_sym_consteval] = ACTIONS(7313), + [anon_sym_alignas] = ACTIONS(7325), + [anon_sym__Alignas] = ACTIONS(7325), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_STAR_EQ] = ACTIONS(6823), + [anon_sym_SLASH_EQ] = ACTIONS(6823), + [anon_sym_PERCENT_EQ] = ACTIONS(6823), + [anon_sym_PLUS_EQ] = ACTIONS(6823), + [anon_sym_DASH_EQ] = ACTIONS(6823), + [anon_sym_LT_LT_EQ] = ACTIONS(6823), + [anon_sym_GT_GT_EQ] = ACTIONS(6823), + [anon_sym_AMP_EQ] = ACTIONS(6823), + [anon_sym_CARET_EQ] = ACTIONS(6823), + [anon_sym_PIPE_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6823), + [anon_sym_and] = ACTIONS(6823), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6823), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6821), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6823), }, - [STATE(2847)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(4191), - [sym_ms_pointer_modifier] = STATE(3862), - [sym__abstract_declarator] = STATE(6706), - [sym_abstract_parenthesized_declarator] = STATE(6612), - [sym_abstract_pointer_declarator] = STATE(6612), - [sym_abstract_function_declarator] = STATE(6612), - [sym_abstract_array_declarator] = STATE(6612), - [sym_type_qualifier] = STATE(3935), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(2180), - [sym_abstract_reference_declarator] = STATE(6612), - [sym__function_declarator_seq] = STATE(6536), - [aux_sym__type_definition_type_repeat1] = STATE(3935), - [aux_sym_pointer_declarator_repeat1] = STATE(3862), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(8246), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(8520), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6497), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(8522), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6497), - [anon_sym_AMP] = ACTIONS(8524), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6497), - [anon_sym_GT_GT] = ACTIONS(6497), - [anon_sym___extension__] = ACTIONS(8254), - [sym_ms_restrict_modifier] = ACTIONS(8256), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8258), - [sym_ms_signed_ptr_modifier] = ACTIONS(8258), - [anon_sym__unaligned] = ACTIONS(8260), - [anon_sym___unaligned] = ACTIONS(8260), - [anon_sym_LBRACK] = ACTIONS(8262), - [anon_sym_RBRACK] = ACTIONS(6497), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(8254), - [anon_sym_volatile] = ACTIONS(8254), - [anon_sym_restrict] = ACTIONS(8254), - [anon_sym___restrict__] = ACTIONS(8254), - [anon_sym__Atomic] = ACTIONS(8254), - [anon_sym__Noreturn] = ACTIONS(8254), - [anon_sym_noreturn] = ACTIONS(8254), - [anon_sym__Nonnull] = ACTIONS(8254), - [anon_sym_mutable] = ACTIONS(8254), - [anon_sym_constinit] = ACTIONS(8254), - [anon_sym_consteval] = ACTIONS(8254), - [anon_sym_alignas] = ACTIONS(8264), - [anon_sym__Alignas] = ACTIONS(8264), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6497), - [anon_sym_and] = ACTIONS(6497), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6497), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), + [STATE(2611)] = { + [sym_attribute_specifier] = STATE(4381), + [sym_attribute_declaration] = STATE(4895), + [sym_gnu_asm_expression] = STATE(9115), + [sym_virtual_specifier] = STATE(5261), + [sym_ref_qualifier] = STATE(2702), + [sym__function_exception_specification] = STATE(3383), + [sym__function_attributes_end] = STATE(4576), + [sym__function_postfix] = STATE(5696), + [sym_trailing_return_type] = STATE(4740), + [sym_noexcept] = STATE(3383), + [sym_throw_specifier] = STATE(3383), + [sym_requires_clause] = STATE(5696), + [aux_sym_type_definition_repeat1] = STATE(4381), + [aux_sym_attributed_declarator_repeat1] = STATE(4895), + [aux_sym__function_postfix_repeat1] = STATE(5261), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(8508), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(8511), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6764), + [anon_sym___attribute] = ACTIONS(6766), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7791), + [anon_sym_and] = ACTIONS(7791), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7791), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8514), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8517), + [anon_sym_override] = ACTIONS(8517), + [anon_sym_noexcept] = ACTIONS(6779), + [anon_sym_throw] = ACTIONS(6781), + [anon_sym_requires] = ACTIONS(8520), + [anon_sym_DASH_GT_STAR] = ACTIONS(7791), }, - [STATE(2848)] = { - [sym_identifier] = ACTIONS(6762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6764), - [anon_sym_COMMA] = ACTIONS(6764), - [anon_sym_RPAREN] = ACTIONS(6764), - [anon_sym_LPAREN2] = ACTIONS(6764), - [anon_sym_DASH] = ACTIONS(6762), - [anon_sym_PLUS] = ACTIONS(6762), - [anon_sym_STAR] = ACTIONS(6764), - [anon_sym_SLASH] = ACTIONS(6762), - [anon_sym_PERCENT] = ACTIONS(6764), - [anon_sym_PIPE_PIPE] = ACTIONS(6764), - [anon_sym_AMP_AMP] = ACTIONS(6764), - [anon_sym_PIPE] = ACTIONS(6762), - [anon_sym_CARET] = ACTIONS(6764), - [anon_sym_AMP] = ACTIONS(6762), - [anon_sym_EQ_EQ] = ACTIONS(6764), - [anon_sym_BANG_EQ] = ACTIONS(6764), - [anon_sym_GT] = ACTIONS(6762), - [anon_sym_GT_EQ] = ACTIONS(6764), - [anon_sym_LT_EQ] = ACTIONS(6762), - [anon_sym_LT] = ACTIONS(6762), - [anon_sym_LT_LT] = ACTIONS(6764), - [anon_sym_GT_GT] = ACTIONS(6764), - [anon_sym_SEMI] = ACTIONS(6764), - [anon_sym___extension__] = ACTIONS(6762), - [anon_sym___attribute__] = ACTIONS(6762), - [anon_sym___attribute] = ACTIONS(6762), - [anon_sym_COLON] = ACTIONS(6762), - [anon_sym_COLON_COLON] = ACTIONS(6764), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6764), - [anon_sym___based] = ACTIONS(6762), - [anon_sym_LBRACE] = ACTIONS(6764), - [anon_sym_RBRACE] = ACTIONS(6764), - [anon_sym_signed] = ACTIONS(6762), - [anon_sym_unsigned] = ACTIONS(6762), - [anon_sym_long] = ACTIONS(6762), - [anon_sym_short] = ACTIONS(6762), - [anon_sym_LBRACK] = ACTIONS(6764), - [anon_sym_const] = ACTIONS(6762), - [anon_sym_constexpr] = ACTIONS(6762), - [anon_sym_volatile] = ACTIONS(6762), - [anon_sym_restrict] = ACTIONS(6762), - [anon_sym___restrict__] = ACTIONS(6762), - [anon_sym__Atomic] = ACTIONS(6762), - [anon_sym__Noreturn] = ACTIONS(6762), - [anon_sym_noreturn] = ACTIONS(6762), - [anon_sym__Nonnull] = ACTIONS(6762), - [anon_sym_mutable] = ACTIONS(6762), - [anon_sym_constinit] = ACTIONS(6762), - [anon_sym_consteval] = ACTIONS(6762), - [anon_sym_alignas] = ACTIONS(6762), - [anon_sym__Alignas] = ACTIONS(6762), - [sym_primitive_type] = ACTIONS(6762), - [anon_sym_QMARK] = ACTIONS(6764), - [anon_sym_LT_EQ_GT] = ACTIONS(6764), - [anon_sym_or] = ACTIONS(6762), - [anon_sym_and] = ACTIONS(6762), - [anon_sym_bitor] = ACTIONS(6762), - [anon_sym_xor] = ACTIONS(6762), - [anon_sym_bitand] = ACTIONS(6762), - [anon_sym_not_eq] = ACTIONS(6762), - [anon_sym_DASH_DASH] = ACTIONS(6764), - [anon_sym_PLUS_PLUS] = ACTIONS(6764), - [anon_sym_DOT] = ACTIONS(6762), - [anon_sym_DOT_STAR] = ACTIONS(6764), - [anon_sym_DASH_GT] = ACTIONS(6764), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6762), - [anon_sym_override] = ACTIONS(6762), - [anon_sym_requires] = ACTIONS(6762), - [anon_sym_COLON_RBRACK] = ACTIONS(6764), - }, - [STATE(2849)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_attributes_end] = STATE(4140), - [sym__function_postfix] = STATE(3497), - [sym_trailing_return_type] = STATE(2975), - [sym_requires_clause] = STATE(3497), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym_SEMI] = ACTIONS(7627), - [anon_sym___attribute__] = ACTIONS(8070), - [anon_sym___attribute] = ACTIONS(8073), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7627), - [anon_sym_or_eq] = ACTIONS(7627), - [anon_sym_xor_eq] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(8076), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7634), - [anon_sym_override] = ACTIONS(7634), - [anon_sym_requires] = ACTIONS(7637), - }, - [STATE(2850)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7207), - [anon_sym_COMMA] = ACTIONS(7207), - [anon_sym_RPAREN] = ACTIONS(7207), - [anon_sym_LPAREN2] = ACTIONS(7207), - [anon_sym_DASH] = ACTIONS(7205), - [anon_sym_PLUS] = ACTIONS(7205), - [anon_sym_STAR] = ACTIONS(7205), - [anon_sym_SLASH] = ACTIONS(7205), - [anon_sym_PERCENT] = ACTIONS(7205), - [anon_sym_PIPE_PIPE] = ACTIONS(7207), - [anon_sym_AMP_AMP] = ACTIONS(7207), - [anon_sym_PIPE] = ACTIONS(7205), - [anon_sym_CARET] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7205), - [anon_sym_EQ_EQ] = ACTIONS(7207), - [anon_sym_BANG_EQ] = ACTIONS(7207), - [anon_sym_GT] = ACTIONS(7205), - [anon_sym_GT_EQ] = ACTIONS(7207), - [anon_sym_LT_EQ] = ACTIONS(7205), - [anon_sym_LT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_GT_GT] = ACTIONS(7205), - [anon_sym___extension__] = ACTIONS(7207), - [anon_sym_LBRACE] = ACTIONS(7207), - [anon_sym_LBRACK] = ACTIONS(7207), - [anon_sym_EQ] = ACTIONS(7205), - [anon_sym_const] = ACTIONS(7205), - [anon_sym_constexpr] = ACTIONS(7207), - [anon_sym_volatile] = ACTIONS(7207), - [anon_sym_restrict] = ACTIONS(7207), - [anon_sym___restrict__] = ACTIONS(7207), - [anon_sym__Atomic] = ACTIONS(7207), - [anon_sym__Noreturn] = ACTIONS(7207), - [anon_sym_noreturn] = ACTIONS(7207), - [anon_sym__Nonnull] = ACTIONS(7207), - [anon_sym_mutable] = ACTIONS(7207), - [anon_sym_constinit] = ACTIONS(7207), - [anon_sym_consteval] = ACTIONS(7207), - [anon_sym_alignas] = ACTIONS(7207), - [anon_sym__Alignas] = ACTIONS(7207), - [anon_sym_QMARK] = ACTIONS(7207), - [anon_sym_STAR_EQ] = ACTIONS(7207), - [anon_sym_SLASH_EQ] = ACTIONS(7207), - [anon_sym_PERCENT_EQ] = ACTIONS(7207), - [anon_sym_PLUS_EQ] = ACTIONS(7207), - [anon_sym_DASH_EQ] = ACTIONS(7207), - [anon_sym_LT_LT_EQ] = ACTIONS(7207), - [anon_sym_GT_GT_EQ] = ACTIONS(7207), - [anon_sym_AMP_EQ] = ACTIONS(7207), - [anon_sym_CARET_EQ] = ACTIONS(7207), - [anon_sym_PIPE_EQ] = ACTIONS(7207), - [anon_sym_and_eq] = ACTIONS(7207), - [anon_sym_or_eq] = ACTIONS(7207), - [anon_sym_xor_eq] = ACTIONS(7207), - [anon_sym_LT_EQ_GT] = ACTIONS(7207), - [anon_sym_or] = ACTIONS(7205), - [anon_sym_and] = ACTIONS(7205), - [anon_sym_bitor] = ACTIONS(7207), - [anon_sym_xor] = ACTIONS(7205), - [anon_sym_bitand] = ACTIONS(7207), - [anon_sym_not_eq] = ACTIONS(7207), - [anon_sym_DASH_DASH] = ACTIONS(7207), - [anon_sym_PLUS_PLUS] = ACTIONS(7207), - [anon_sym_DOT] = ACTIONS(7205), - [anon_sym_DOT_STAR] = ACTIONS(7207), - [anon_sym_DASH_GT] = ACTIONS(7205), + [STATE(2612)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7083), + [anon_sym_COMMA] = ACTIONS(7083), + [anon_sym_RPAREN] = ACTIONS(7083), + [anon_sym_LPAREN2] = ACTIONS(7083), + [anon_sym_DASH] = ACTIONS(7081), + [anon_sym_PLUS] = ACTIONS(7081), + [anon_sym_STAR] = ACTIONS(7081), + [anon_sym_SLASH] = ACTIONS(7081), + [anon_sym_PERCENT] = ACTIONS(7081), + [anon_sym_PIPE_PIPE] = ACTIONS(7083), + [anon_sym_AMP_AMP] = ACTIONS(7083), + [anon_sym_PIPE] = ACTIONS(7081), + [anon_sym_CARET] = ACTIONS(7081), + [anon_sym_AMP] = ACTIONS(7081), + [anon_sym_EQ_EQ] = ACTIONS(7083), + [anon_sym_BANG_EQ] = ACTIONS(7083), + [anon_sym_GT] = ACTIONS(7081), + [anon_sym_GT_EQ] = ACTIONS(7083), + [anon_sym_LT_EQ] = ACTIONS(7081), + [anon_sym_LT] = ACTIONS(7081), + [anon_sym_LT_LT] = ACTIONS(7081), + [anon_sym_GT_GT] = ACTIONS(7081), + [anon_sym___extension__] = ACTIONS(7083), + [anon_sym___attribute__] = ACTIONS(7083), + [anon_sym___attribute] = ACTIONS(7081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7083), + [anon_sym_LBRACK] = ACTIONS(7081), + [anon_sym_EQ] = ACTIONS(7081), + [anon_sym_const] = ACTIONS(7081), + [anon_sym_constexpr] = ACTIONS(7083), + [anon_sym_volatile] = ACTIONS(7083), + [anon_sym_restrict] = ACTIONS(7083), + [anon_sym___restrict__] = ACTIONS(7083), + [anon_sym__Atomic] = ACTIONS(7083), + [anon_sym__Noreturn] = ACTIONS(7083), + [anon_sym_noreturn] = ACTIONS(7083), + [anon_sym__Nonnull] = ACTIONS(7083), + [anon_sym_mutable] = ACTIONS(7083), + [anon_sym_constinit] = ACTIONS(7083), + [anon_sym_consteval] = ACTIONS(7083), + [anon_sym_alignas] = ACTIONS(7083), + [anon_sym__Alignas] = ACTIONS(7083), + [anon_sym_QMARK] = ACTIONS(7083), + [anon_sym_STAR_EQ] = ACTIONS(7083), + [anon_sym_SLASH_EQ] = ACTIONS(7083), + [anon_sym_PERCENT_EQ] = ACTIONS(7083), + [anon_sym_PLUS_EQ] = ACTIONS(7083), + [anon_sym_DASH_EQ] = ACTIONS(7083), + [anon_sym_LT_LT_EQ] = ACTIONS(7083), + [anon_sym_GT_GT_EQ] = ACTIONS(7083), + [anon_sym_AMP_EQ] = ACTIONS(7083), + [anon_sym_CARET_EQ] = ACTIONS(7083), + [anon_sym_PIPE_EQ] = ACTIONS(7083), + [anon_sym_LT_EQ_GT] = ACTIONS(7083), + [anon_sym_or] = ACTIONS(7083), + [anon_sym_and] = ACTIONS(7083), + [anon_sym_bitor] = ACTIONS(7083), + [anon_sym_xor] = ACTIONS(7083), + [anon_sym_bitand] = ACTIONS(7083), + [anon_sym_not_eq] = ACTIONS(7083), + [anon_sym_DASH_DASH] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7083), + [anon_sym_asm] = ACTIONS(7083), + [anon_sym___asm__] = ACTIONS(7083), + [anon_sym___asm] = ACTIONS(7081), + [anon_sym_DOT] = ACTIONS(7081), + [anon_sym_DOT_STAR] = ACTIONS(7083), + [anon_sym_DASH_GT] = ACTIONS(7081), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7207), - [anon_sym_override] = ACTIONS(7207), - [anon_sym_requires] = ACTIONS(7207), - [anon_sym_DASH_GT_STAR] = ACTIONS(7207), + [anon_sym_final] = ACTIONS(7083), + [anon_sym_override] = ACTIONS(7083), + [anon_sym_noexcept] = ACTIONS(7083), + [anon_sym_throw] = ACTIONS(7083), + [anon_sym_requires] = ACTIONS(7083), + [anon_sym_DASH_GT_STAR] = ACTIONS(7083), }, - [STATE(2851)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7211), - [anon_sym_COMMA] = ACTIONS(7211), - [anon_sym_RPAREN] = ACTIONS(7211), - [anon_sym_LPAREN2] = ACTIONS(7211), - [anon_sym_DASH] = ACTIONS(7209), - [anon_sym_PLUS] = ACTIONS(7209), - [anon_sym_STAR] = ACTIONS(7209), - [anon_sym_SLASH] = ACTIONS(7209), - [anon_sym_PERCENT] = ACTIONS(7209), - [anon_sym_PIPE_PIPE] = ACTIONS(7211), - [anon_sym_AMP_AMP] = ACTIONS(7211), - [anon_sym_PIPE] = ACTIONS(7209), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_AMP] = ACTIONS(7209), - [anon_sym_EQ_EQ] = ACTIONS(7211), - [anon_sym_BANG_EQ] = ACTIONS(7211), - [anon_sym_GT] = ACTIONS(7209), - [anon_sym_GT_EQ] = ACTIONS(7211), - [anon_sym_LT_EQ] = ACTIONS(7209), - [anon_sym_LT] = ACTIONS(7209), - [anon_sym_LT_LT] = ACTIONS(7209), - [anon_sym_GT_GT] = ACTIONS(7209), - [anon_sym___extension__] = ACTIONS(7211), - [anon_sym_LBRACE] = ACTIONS(7211), - [anon_sym_LBRACK] = ACTIONS(7211), - [anon_sym_EQ] = ACTIONS(7209), - [anon_sym_const] = ACTIONS(7209), - [anon_sym_constexpr] = ACTIONS(7211), - [anon_sym_volatile] = ACTIONS(7211), - [anon_sym_restrict] = ACTIONS(7211), - [anon_sym___restrict__] = ACTIONS(7211), - [anon_sym__Atomic] = ACTIONS(7211), - [anon_sym__Noreturn] = ACTIONS(7211), - [anon_sym_noreturn] = ACTIONS(7211), - [anon_sym__Nonnull] = ACTIONS(7211), - [anon_sym_mutable] = ACTIONS(7211), - [anon_sym_constinit] = ACTIONS(7211), - [anon_sym_consteval] = ACTIONS(7211), - [anon_sym_alignas] = ACTIONS(7211), - [anon_sym__Alignas] = ACTIONS(7211), - [anon_sym_QMARK] = ACTIONS(7211), - [anon_sym_STAR_EQ] = ACTIONS(7211), - [anon_sym_SLASH_EQ] = ACTIONS(7211), - [anon_sym_PERCENT_EQ] = ACTIONS(7211), - [anon_sym_PLUS_EQ] = ACTIONS(7211), - [anon_sym_DASH_EQ] = ACTIONS(7211), - [anon_sym_LT_LT_EQ] = ACTIONS(7211), - [anon_sym_GT_GT_EQ] = ACTIONS(7211), - [anon_sym_AMP_EQ] = ACTIONS(7211), - [anon_sym_CARET_EQ] = ACTIONS(7211), - [anon_sym_PIPE_EQ] = ACTIONS(7211), - [anon_sym_and_eq] = ACTIONS(7211), - [anon_sym_or_eq] = ACTIONS(7211), - [anon_sym_xor_eq] = ACTIONS(7211), - [anon_sym_LT_EQ_GT] = ACTIONS(7211), - [anon_sym_or] = ACTIONS(7209), - [anon_sym_and] = ACTIONS(7209), - [anon_sym_bitor] = ACTIONS(7211), - [anon_sym_xor] = ACTIONS(7209), - [anon_sym_bitand] = ACTIONS(7211), - [anon_sym_not_eq] = ACTIONS(7211), - [anon_sym_DASH_DASH] = ACTIONS(7211), - [anon_sym_PLUS_PLUS] = ACTIONS(7211), - [anon_sym_DOT] = ACTIONS(7209), - [anon_sym_DOT_STAR] = ACTIONS(7211), - [anon_sym_DASH_GT] = ACTIONS(7209), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7211), - [anon_sym_override] = ACTIONS(7211), - [anon_sym_requires] = ACTIONS(7211), - [anon_sym_DASH_GT_STAR] = ACTIONS(7211), + [STATE(2613)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7106), + [anon_sym_COMMA] = ACTIONS(7106), + [anon_sym_RPAREN] = ACTIONS(7106), + [anon_sym_LPAREN2] = ACTIONS(7106), + [anon_sym_DASH] = ACTIONS(7104), + [anon_sym_PLUS] = ACTIONS(7104), + [anon_sym_STAR] = ACTIONS(7104), + [anon_sym_SLASH] = ACTIONS(7104), + [anon_sym_PERCENT] = ACTIONS(7104), + [anon_sym_PIPE_PIPE] = ACTIONS(7106), + [anon_sym_AMP_AMP] = ACTIONS(7106), + [anon_sym_PIPE] = ACTIONS(7104), + [anon_sym_CARET] = ACTIONS(7104), + [anon_sym_AMP] = ACTIONS(7104), + [anon_sym_EQ_EQ] = ACTIONS(7106), + [anon_sym_BANG_EQ] = ACTIONS(7106), + [anon_sym_GT] = ACTIONS(7104), + [anon_sym_GT_EQ] = ACTIONS(7106), + [anon_sym_LT_EQ] = ACTIONS(7104), + [anon_sym_LT] = ACTIONS(7104), + [anon_sym_LT_LT] = ACTIONS(7104), + [anon_sym_GT_GT] = ACTIONS(7104), + [anon_sym___extension__] = ACTIONS(7106), + [anon_sym___attribute__] = ACTIONS(7106), + [anon_sym___attribute] = ACTIONS(7104), + [anon_sym_COLON] = ACTIONS(7104), + [anon_sym_COLON_COLON] = ACTIONS(7106), + [anon_sym_LBRACE] = ACTIONS(7106), + [anon_sym_LBRACK] = ACTIONS(7106), + [anon_sym_EQ] = ACTIONS(7104), + [anon_sym_const] = ACTIONS(7104), + [anon_sym_constexpr] = ACTIONS(7106), + [anon_sym_volatile] = ACTIONS(7106), + [anon_sym_restrict] = ACTIONS(7106), + [anon_sym___restrict__] = ACTIONS(7106), + [anon_sym__Atomic] = ACTIONS(7106), + [anon_sym__Noreturn] = ACTIONS(7106), + [anon_sym_noreturn] = ACTIONS(7106), + [anon_sym__Nonnull] = ACTIONS(7106), + [anon_sym_mutable] = ACTIONS(7106), + [anon_sym_constinit] = ACTIONS(7106), + [anon_sym_consteval] = ACTIONS(7106), + [anon_sym_alignas] = ACTIONS(7106), + [anon_sym__Alignas] = ACTIONS(7106), + [anon_sym_QMARK] = ACTIONS(7106), + [anon_sym_STAR_EQ] = ACTIONS(7106), + [anon_sym_SLASH_EQ] = ACTIONS(7106), + [anon_sym_PERCENT_EQ] = ACTIONS(7106), + [anon_sym_PLUS_EQ] = ACTIONS(7106), + [anon_sym_DASH_EQ] = ACTIONS(7106), + [anon_sym_LT_LT_EQ] = ACTIONS(7106), + [anon_sym_GT_GT_EQ] = ACTIONS(7106), + [anon_sym_AMP_EQ] = ACTIONS(7106), + [anon_sym_CARET_EQ] = ACTIONS(7106), + [anon_sym_PIPE_EQ] = ACTIONS(7106), + [anon_sym_and_eq] = ACTIONS(7106), + [anon_sym_or_eq] = ACTIONS(7106), + [anon_sym_xor_eq] = ACTIONS(7106), + [anon_sym_LT_EQ_GT] = ACTIONS(7106), + [anon_sym_or] = ACTIONS(7104), + [anon_sym_and] = ACTIONS(7104), + [anon_sym_bitor] = ACTIONS(7106), + [anon_sym_xor] = ACTIONS(7104), + [anon_sym_bitand] = ACTIONS(7106), + [anon_sym_not_eq] = ACTIONS(7106), + [anon_sym_DASH_DASH] = ACTIONS(7106), + [anon_sym_PLUS_PLUS] = ACTIONS(7106), + [anon_sym_DOT] = ACTIONS(7104), + [anon_sym_DOT_STAR] = ACTIONS(7106), + [anon_sym_DASH_GT] = ACTIONS(7104), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7106), + [anon_sym_override] = ACTIONS(7106), + [anon_sym_requires] = ACTIONS(7106), + [anon_sym_DASH_GT_STAR] = ACTIONS(7106), }, - [STATE(2852)] = { - [sym_attribute_specifier] = STATE(3448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7063), - [anon_sym_COMMA] = ACTIONS(7063), - [anon_sym_RPAREN] = ACTIONS(7063), - [anon_sym_LPAREN2] = ACTIONS(7063), - [anon_sym_DASH] = ACTIONS(7061), - [anon_sym_PLUS] = ACTIONS(7061), - [anon_sym_STAR] = ACTIONS(7061), - [anon_sym_SLASH] = ACTIONS(7061), - [anon_sym_PERCENT] = ACTIONS(7061), - [anon_sym_PIPE_PIPE] = ACTIONS(7063), - [anon_sym_AMP_AMP] = ACTIONS(7063), - [anon_sym_PIPE] = ACTIONS(7061), - [anon_sym_CARET] = ACTIONS(7061), - [anon_sym_AMP] = ACTIONS(7061), - [anon_sym_EQ_EQ] = ACTIONS(7063), - [anon_sym_BANG_EQ] = ACTIONS(7063), - [anon_sym_GT] = ACTIONS(7061), - [anon_sym_GT_EQ] = ACTIONS(7063), - [anon_sym_LT_EQ] = ACTIONS(7061), - [anon_sym_LT] = ACTIONS(7061), - [anon_sym_LT_LT] = ACTIONS(7061), - [anon_sym_GT_GT] = ACTIONS(7061), - [anon_sym___extension__] = ACTIONS(7063), - [anon_sym___attribute__] = ACTIONS(8189), - [anon_sym___attribute] = ACTIONS(8191), - [anon_sym_LBRACE] = ACTIONS(7063), - [anon_sym_LBRACK] = ACTIONS(7063), - [anon_sym_EQ] = ACTIONS(7061), - [anon_sym_const] = ACTIONS(7061), - [anon_sym_constexpr] = ACTIONS(7063), - [anon_sym_volatile] = ACTIONS(7063), - [anon_sym_restrict] = ACTIONS(7063), - [anon_sym___restrict__] = ACTIONS(7063), - [anon_sym__Atomic] = ACTIONS(7063), - [anon_sym__Noreturn] = ACTIONS(7063), - [anon_sym_noreturn] = ACTIONS(7063), - [anon_sym__Nonnull] = ACTIONS(7063), - [anon_sym_mutable] = ACTIONS(7063), - [anon_sym_constinit] = ACTIONS(7063), - [anon_sym_consteval] = ACTIONS(7063), - [anon_sym_alignas] = ACTIONS(7063), - [anon_sym__Alignas] = ACTIONS(7063), - [anon_sym_QMARK] = ACTIONS(7063), - [anon_sym_STAR_EQ] = ACTIONS(7063), - [anon_sym_SLASH_EQ] = ACTIONS(7063), - [anon_sym_PERCENT_EQ] = ACTIONS(7063), - [anon_sym_PLUS_EQ] = ACTIONS(7063), - [anon_sym_DASH_EQ] = ACTIONS(7063), - [anon_sym_LT_LT_EQ] = ACTIONS(7063), - [anon_sym_GT_GT_EQ] = ACTIONS(7063), - [anon_sym_AMP_EQ] = ACTIONS(7063), - [anon_sym_CARET_EQ] = ACTIONS(7063), - [anon_sym_PIPE_EQ] = ACTIONS(7063), - [anon_sym_LT_EQ_GT] = ACTIONS(7063), - [anon_sym_or] = ACTIONS(7063), - [anon_sym_and] = ACTIONS(7063), - [anon_sym_bitor] = ACTIONS(7063), - [anon_sym_xor] = ACTIONS(7063), - [anon_sym_bitand] = ACTIONS(7063), - [anon_sym_not_eq] = ACTIONS(7063), - [anon_sym_DASH_DASH] = ACTIONS(7063), - [anon_sym_PLUS_PLUS] = ACTIONS(7063), - [anon_sym_DOT] = ACTIONS(7061), - [anon_sym_DOT_STAR] = ACTIONS(7063), - [anon_sym_DASH_GT] = ACTIONS(7061), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7063), - [anon_sym_override] = ACTIONS(7063), - [anon_sym_requires] = ACTIONS(7063), - [anon_sym_DASH_GT_STAR] = ACTIONS(7063), + [STATE(2614)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7677), + [anon_sym_COMMA] = ACTIONS(7677), + [anon_sym_RPAREN] = ACTIONS(7677), + [anon_sym_LPAREN2] = ACTIONS(7677), + [anon_sym_DASH] = ACTIONS(7675), + [anon_sym_PLUS] = ACTIONS(7675), + [anon_sym_STAR] = ACTIONS(7675), + [anon_sym_SLASH] = ACTIONS(7675), + [anon_sym_PERCENT] = ACTIONS(7675), + [anon_sym_PIPE_PIPE] = ACTIONS(7677), + [anon_sym_AMP_AMP] = ACTIONS(7677), + [anon_sym_PIPE] = ACTIONS(7675), + [anon_sym_CARET] = ACTIONS(7675), + [anon_sym_AMP] = ACTIONS(7675), + [anon_sym_EQ_EQ] = ACTIONS(7677), + [anon_sym_BANG_EQ] = ACTIONS(7677), + [anon_sym_GT] = ACTIONS(7675), + [anon_sym_GT_EQ] = ACTIONS(7677), + [anon_sym_LT_EQ] = ACTIONS(7675), + [anon_sym_LT] = ACTIONS(7675), + [anon_sym_LT_LT] = ACTIONS(7675), + [anon_sym_GT_GT] = ACTIONS(7675), + [anon_sym___extension__] = ACTIONS(7677), + [anon_sym___attribute__] = ACTIONS(7677), + [anon_sym___attribute] = ACTIONS(7675), + [anon_sym_LBRACE] = ACTIONS(7677), + [anon_sym_signed] = ACTIONS(8523), + [anon_sym_unsigned] = ACTIONS(8523), + [anon_sym_long] = ACTIONS(8523), + [anon_sym_short] = ACTIONS(8523), + [anon_sym_LBRACK] = ACTIONS(7677), + [anon_sym_EQ] = ACTIONS(7675), + [anon_sym_const] = ACTIONS(7675), + [anon_sym_constexpr] = ACTIONS(7677), + [anon_sym_volatile] = ACTIONS(7677), + [anon_sym_restrict] = ACTIONS(7677), + [anon_sym___restrict__] = ACTIONS(7677), + [anon_sym__Atomic] = ACTIONS(7677), + [anon_sym__Noreturn] = ACTIONS(7677), + [anon_sym_noreturn] = ACTIONS(7677), + [anon_sym__Nonnull] = ACTIONS(7677), + [anon_sym_mutable] = ACTIONS(7677), + [anon_sym_constinit] = ACTIONS(7677), + [anon_sym_consteval] = ACTIONS(7677), + [anon_sym_alignas] = ACTIONS(7677), + [anon_sym__Alignas] = ACTIONS(7677), + [anon_sym_QMARK] = ACTIONS(7677), + [anon_sym_STAR_EQ] = ACTIONS(7677), + [anon_sym_SLASH_EQ] = ACTIONS(7677), + [anon_sym_PERCENT_EQ] = ACTIONS(7677), + [anon_sym_PLUS_EQ] = ACTIONS(7677), + [anon_sym_DASH_EQ] = ACTIONS(7677), + [anon_sym_LT_LT_EQ] = ACTIONS(7677), + [anon_sym_GT_GT_EQ] = ACTIONS(7677), + [anon_sym_AMP_EQ] = ACTIONS(7677), + [anon_sym_CARET_EQ] = ACTIONS(7677), + [anon_sym_PIPE_EQ] = ACTIONS(7677), + [anon_sym_LT_EQ_GT] = ACTIONS(7677), + [anon_sym_or] = ACTIONS(7677), + [anon_sym_and] = ACTIONS(7677), + [anon_sym_bitor] = ACTIONS(7677), + [anon_sym_xor] = ACTIONS(7677), + [anon_sym_bitand] = ACTIONS(7677), + [anon_sym_not_eq] = ACTIONS(7677), + [anon_sym_DASH_DASH] = ACTIONS(7677), + [anon_sym_PLUS_PLUS] = ACTIONS(7677), + [anon_sym_DOT] = ACTIONS(7675), + [anon_sym_DOT_STAR] = ACTIONS(7677), + [anon_sym_DASH_GT] = ACTIONS(7675), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7677), + [anon_sym_override] = ACTIONS(7677), + [anon_sym_requires] = ACTIONS(7677), + [anon_sym_DASH_GT_STAR] = ACTIONS(7677), }, - [STATE(2853)] = { - [sym_attribute_specifier] = STATE(3450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7067), - [anon_sym_COMMA] = ACTIONS(7067), - [anon_sym_RPAREN] = ACTIONS(7067), - [anon_sym_LPAREN2] = ACTIONS(7067), - [anon_sym_DASH] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7065), - [anon_sym_STAR] = ACTIONS(7065), - [anon_sym_SLASH] = ACTIONS(7065), - [anon_sym_PERCENT] = ACTIONS(7065), - [anon_sym_PIPE_PIPE] = ACTIONS(7067), - [anon_sym_AMP_AMP] = ACTIONS(7067), - [anon_sym_PIPE] = ACTIONS(7065), - [anon_sym_CARET] = ACTIONS(7065), - [anon_sym_AMP] = ACTIONS(7065), - [anon_sym_EQ_EQ] = ACTIONS(7067), - [anon_sym_BANG_EQ] = ACTIONS(7067), - [anon_sym_GT] = ACTIONS(7065), - [anon_sym_GT_EQ] = ACTIONS(7067), - [anon_sym_LT_EQ] = ACTIONS(7065), - [anon_sym_LT] = ACTIONS(7065), - [anon_sym_LT_LT] = ACTIONS(7065), - [anon_sym_GT_GT] = ACTIONS(7065), - [anon_sym___extension__] = ACTIONS(7067), - [anon_sym___attribute__] = ACTIONS(8189), - [anon_sym___attribute] = ACTIONS(8191), - [anon_sym_LBRACE] = ACTIONS(7067), - [anon_sym_LBRACK] = ACTIONS(7067), - [anon_sym_EQ] = ACTIONS(7065), - [anon_sym_const] = ACTIONS(7065), - [anon_sym_constexpr] = ACTIONS(7067), - [anon_sym_volatile] = ACTIONS(7067), - [anon_sym_restrict] = ACTIONS(7067), - [anon_sym___restrict__] = ACTIONS(7067), - [anon_sym__Atomic] = ACTIONS(7067), - [anon_sym__Noreturn] = ACTIONS(7067), - [anon_sym_noreturn] = ACTIONS(7067), - [anon_sym__Nonnull] = ACTIONS(7067), - [anon_sym_mutable] = ACTIONS(7067), - [anon_sym_constinit] = ACTIONS(7067), - [anon_sym_consteval] = ACTIONS(7067), - [anon_sym_alignas] = ACTIONS(7067), - [anon_sym__Alignas] = ACTIONS(7067), - [anon_sym_QMARK] = ACTIONS(7067), - [anon_sym_STAR_EQ] = ACTIONS(7067), - [anon_sym_SLASH_EQ] = ACTIONS(7067), - [anon_sym_PERCENT_EQ] = ACTIONS(7067), - [anon_sym_PLUS_EQ] = ACTIONS(7067), - [anon_sym_DASH_EQ] = ACTIONS(7067), - [anon_sym_LT_LT_EQ] = ACTIONS(7067), - [anon_sym_GT_GT_EQ] = ACTIONS(7067), - [anon_sym_AMP_EQ] = ACTIONS(7067), - [anon_sym_CARET_EQ] = ACTIONS(7067), - [anon_sym_PIPE_EQ] = ACTIONS(7067), - [anon_sym_LT_EQ_GT] = ACTIONS(7067), - [anon_sym_or] = ACTIONS(7067), - [anon_sym_and] = ACTIONS(7067), - [anon_sym_bitor] = ACTIONS(7067), - [anon_sym_xor] = ACTIONS(7067), - [anon_sym_bitand] = ACTIONS(7067), - [anon_sym_not_eq] = ACTIONS(7067), - [anon_sym_DASH_DASH] = ACTIONS(7067), - [anon_sym_PLUS_PLUS] = ACTIONS(7067), - [anon_sym_DOT] = ACTIONS(7065), - [anon_sym_DOT_STAR] = ACTIONS(7067), - [anon_sym_DASH_GT] = ACTIONS(7065), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7067), - [anon_sym_override] = ACTIONS(7067), - [anon_sym_requires] = ACTIONS(7067), - [anon_sym_DASH_GT_STAR] = ACTIONS(7067), + [STATE(2615)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7457), + [anon_sym_COMMA] = ACTIONS(7457), + [anon_sym_RPAREN] = ACTIONS(7457), + [anon_sym_LPAREN2] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7459), + [anon_sym_PLUS] = ACTIONS(7459), + [anon_sym_STAR] = ACTIONS(7459), + [anon_sym_SLASH] = ACTIONS(7459), + [anon_sym_PERCENT] = ACTIONS(7459), + [anon_sym_PIPE_PIPE] = ACTIONS(7457), + [anon_sym_AMP_AMP] = ACTIONS(7457), + [anon_sym_PIPE] = ACTIONS(7459), + [anon_sym_CARET] = ACTIONS(7459), + [anon_sym_AMP] = ACTIONS(7459), + [anon_sym_EQ_EQ] = ACTIONS(7457), + [anon_sym_BANG_EQ] = ACTIONS(7457), + [anon_sym_GT] = ACTIONS(7459), + [anon_sym_GT_EQ] = ACTIONS(7457), + [anon_sym_LT_EQ] = ACTIONS(7459), + [anon_sym_LT] = ACTIONS(7459), + [anon_sym_LT_LT] = ACTIONS(7459), + [anon_sym_GT_GT] = ACTIONS(7459), + [anon_sym___extension__] = ACTIONS(7457), + [anon_sym___attribute__] = ACTIONS(7457), + [anon_sym___attribute] = ACTIONS(7459), + [anon_sym_COLON] = ACTIONS(7459), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(7457), + [anon_sym_LBRACK] = ACTIONS(7457), + [anon_sym_EQ] = ACTIONS(7459), + [anon_sym_const] = ACTIONS(7459), + [anon_sym_constexpr] = ACTIONS(7457), + [anon_sym_volatile] = ACTIONS(7457), + [anon_sym_restrict] = ACTIONS(7457), + [anon_sym___restrict__] = ACTIONS(7457), + [anon_sym__Atomic] = ACTIONS(7457), + [anon_sym__Noreturn] = ACTIONS(7457), + [anon_sym_noreturn] = ACTIONS(7457), + [anon_sym__Nonnull] = ACTIONS(7457), + [anon_sym_mutable] = ACTIONS(7457), + [anon_sym_constinit] = ACTIONS(7457), + [anon_sym_consteval] = ACTIONS(7457), + [anon_sym_alignas] = ACTIONS(7457), + [anon_sym__Alignas] = ACTIONS(7457), + [anon_sym_QMARK] = ACTIONS(7457), + [anon_sym_STAR_EQ] = ACTIONS(7457), + [anon_sym_SLASH_EQ] = ACTIONS(7457), + [anon_sym_PERCENT_EQ] = ACTIONS(7457), + [anon_sym_PLUS_EQ] = ACTIONS(7457), + [anon_sym_DASH_EQ] = ACTIONS(7457), + [anon_sym_LT_LT_EQ] = ACTIONS(7457), + [anon_sym_GT_GT_EQ] = ACTIONS(7457), + [anon_sym_AMP_EQ] = ACTIONS(7457), + [anon_sym_CARET_EQ] = ACTIONS(7457), + [anon_sym_PIPE_EQ] = ACTIONS(7457), + [anon_sym_and_eq] = ACTIONS(7457), + [anon_sym_or_eq] = ACTIONS(7457), + [anon_sym_xor_eq] = ACTIONS(7457), + [anon_sym_LT_EQ_GT] = ACTIONS(7457), + [anon_sym_or] = ACTIONS(7459), + [anon_sym_and] = ACTIONS(7459), + [anon_sym_bitor] = ACTIONS(7457), + [anon_sym_xor] = ACTIONS(7459), + [anon_sym_bitand] = ACTIONS(7457), + [anon_sym_not_eq] = ACTIONS(7457), + [anon_sym_DASH_DASH] = ACTIONS(7457), + [anon_sym_PLUS_PLUS] = ACTIONS(7457), + [anon_sym_DOT] = ACTIONS(7459), + [anon_sym_DOT_STAR] = ACTIONS(7457), + [anon_sym_DASH_GT] = ACTIONS(7459), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7457), + [anon_sym_override] = ACTIONS(7457), + [anon_sym_requires] = ACTIONS(7457), + [anon_sym_DASH_GT_STAR] = ACTIONS(7457), }, - [STATE(2854)] = { - [sym_decltype_auto] = STATE(3956), - [sym_template_argument_list] = STATE(2824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(5251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5258), - [anon_sym_COMMA] = ACTIONS(5258), - [aux_sym_preproc_if_token2] = ACTIONS(5258), - [aux_sym_preproc_else_token1] = ACTIONS(5258), - [aux_sym_preproc_elif_token1] = ACTIONS(5251), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5258), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5258), - [anon_sym_LPAREN2] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5251), - [anon_sym_PLUS] = ACTIONS(5251), - [anon_sym_STAR] = ACTIONS(5258), - [anon_sym_SLASH] = ACTIONS(5251), - [anon_sym_PERCENT] = ACTIONS(5258), - [anon_sym_PIPE_PIPE] = ACTIONS(5258), - [anon_sym_AMP_AMP] = ACTIONS(5258), - [anon_sym_PIPE] = ACTIONS(5251), - [anon_sym_CARET] = ACTIONS(5258), - [anon_sym_AMP] = ACTIONS(5251), - [anon_sym_EQ_EQ] = ACTIONS(5258), - [anon_sym_BANG_EQ] = ACTIONS(5258), - [anon_sym_GT] = ACTIONS(5251), - [anon_sym_GT_EQ] = ACTIONS(5258), - [anon_sym_LT_EQ] = ACTIONS(5251), - [anon_sym_LT] = ACTIONS(8526), - [anon_sym_LT_LT] = ACTIONS(5258), - [anon_sym_GT_GT] = ACTIONS(5258), - [anon_sym___extension__] = ACTIONS(5251), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5258), - [anon_sym_signed] = ACTIONS(6443), - [anon_sym_unsigned] = ACTIONS(6443), - [anon_sym_long] = ACTIONS(6443), - [anon_sym_short] = ACTIONS(6443), - [anon_sym_LBRACK] = ACTIONS(5258), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5251), - [anon_sym_volatile] = ACTIONS(5251), - [anon_sym_restrict] = ACTIONS(5251), - [anon_sym___restrict__] = ACTIONS(5251), - [anon_sym__Atomic] = ACTIONS(5251), - [anon_sym__Noreturn] = ACTIONS(5251), - [anon_sym_noreturn] = ACTIONS(5251), - [anon_sym__Nonnull] = ACTIONS(5251), - [anon_sym_mutable] = ACTIONS(5251), - [anon_sym_constinit] = ACTIONS(5251), - [anon_sym_consteval] = ACTIONS(5251), - [anon_sym_alignas] = ACTIONS(5251), - [anon_sym__Alignas] = ACTIONS(5251), - [anon_sym_QMARK] = ACTIONS(5258), - [anon_sym_LT_EQ_GT] = ACTIONS(5258), - [anon_sym_or] = ACTIONS(5251), - [anon_sym_and] = ACTIONS(5251), - [anon_sym_bitor] = ACTIONS(5251), - [anon_sym_xor] = ACTIONS(5251), - [anon_sym_bitand] = ACTIONS(5251), - [anon_sym_not_eq] = ACTIONS(5251), - [anon_sym_DASH_DASH] = ACTIONS(5258), - [anon_sym_PLUS_PLUS] = ACTIONS(5258), - [anon_sym_DOT] = ACTIONS(5251), - [anon_sym_DOT_STAR] = ACTIONS(5258), - [anon_sym_DASH_GT] = ACTIONS(5258), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6449), - [anon_sym_decltype] = ACTIONS(6451), - [anon_sym_final] = ACTIONS(5251), - [anon_sym_override] = ACTIONS(5251), - [anon_sym_requires] = ACTIONS(5251), + [STATE(2616)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7683), + [anon_sym_COMMA] = ACTIONS(7683), + [anon_sym_RPAREN] = ACTIONS(7683), + [anon_sym_LPAREN2] = ACTIONS(7683), + [anon_sym_DASH] = ACTIONS(7681), + [anon_sym_PLUS] = ACTIONS(7681), + [anon_sym_STAR] = ACTIONS(7681), + [anon_sym_SLASH] = ACTIONS(7681), + [anon_sym_PERCENT] = ACTIONS(7681), + [anon_sym_PIPE_PIPE] = ACTIONS(7683), + [anon_sym_AMP_AMP] = ACTIONS(7683), + [anon_sym_PIPE] = ACTIONS(7681), + [anon_sym_CARET] = ACTIONS(7681), + [anon_sym_AMP] = ACTIONS(7681), + [anon_sym_EQ_EQ] = ACTIONS(7683), + [anon_sym_BANG_EQ] = ACTIONS(7683), + [anon_sym_GT] = ACTIONS(7681), + [anon_sym_GT_EQ] = ACTIONS(7683), + [anon_sym_LT_EQ] = ACTIONS(7681), + [anon_sym_LT] = ACTIONS(7681), + [anon_sym_LT_LT] = ACTIONS(7681), + [anon_sym_GT_GT] = ACTIONS(7681), + [anon_sym___extension__] = ACTIONS(7683), + [anon_sym___attribute__] = ACTIONS(7683), + [anon_sym___attribute] = ACTIONS(7681), + [anon_sym_LBRACE] = ACTIONS(7683), + [anon_sym_signed] = ACTIONS(8523), + [anon_sym_unsigned] = ACTIONS(8523), + [anon_sym_long] = ACTIONS(8523), + [anon_sym_short] = ACTIONS(8523), + [anon_sym_LBRACK] = ACTIONS(7683), + [anon_sym_EQ] = ACTIONS(7681), + [anon_sym_const] = ACTIONS(7681), + [anon_sym_constexpr] = ACTIONS(7683), + [anon_sym_volatile] = ACTIONS(7683), + [anon_sym_restrict] = ACTIONS(7683), + [anon_sym___restrict__] = ACTIONS(7683), + [anon_sym__Atomic] = ACTIONS(7683), + [anon_sym__Noreturn] = ACTIONS(7683), + [anon_sym_noreturn] = ACTIONS(7683), + [anon_sym__Nonnull] = ACTIONS(7683), + [anon_sym_mutable] = ACTIONS(7683), + [anon_sym_constinit] = ACTIONS(7683), + [anon_sym_consteval] = ACTIONS(7683), + [anon_sym_alignas] = ACTIONS(7683), + [anon_sym__Alignas] = ACTIONS(7683), + [anon_sym_QMARK] = ACTIONS(7683), + [anon_sym_STAR_EQ] = ACTIONS(7683), + [anon_sym_SLASH_EQ] = ACTIONS(7683), + [anon_sym_PERCENT_EQ] = ACTIONS(7683), + [anon_sym_PLUS_EQ] = ACTIONS(7683), + [anon_sym_DASH_EQ] = ACTIONS(7683), + [anon_sym_LT_LT_EQ] = ACTIONS(7683), + [anon_sym_GT_GT_EQ] = ACTIONS(7683), + [anon_sym_AMP_EQ] = ACTIONS(7683), + [anon_sym_CARET_EQ] = ACTIONS(7683), + [anon_sym_PIPE_EQ] = ACTIONS(7683), + [anon_sym_LT_EQ_GT] = ACTIONS(7683), + [anon_sym_or] = ACTIONS(7683), + [anon_sym_and] = ACTIONS(7683), + [anon_sym_bitor] = ACTIONS(7683), + [anon_sym_xor] = ACTIONS(7683), + [anon_sym_bitand] = ACTIONS(7683), + [anon_sym_not_eq] = ACTIONS(7683), + [anon_sym_DASH_DASH] = ACTIONS(7683), + [anon_sym_PLUS_PLUS] = ACTIONS(7683), + [anon_sym_DOT] = ACTIONS(7681), + [anon_sym_DOT_STAR] = ACTIONS(7683), + [anon_sym_DASH_GT] = ACTIONS(7681), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7683), + [anon_sym_override] = ACTIONS(7683), + [anon_sym_requires] = ACTIONS(7683), + [anon_sym_DASH_GT_STAR] = ACTIONS(7683), }, - [STATE(2855)] = { - [sym_identifier] = ACTIONS(6746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), - [anon_sym_COMMA] = ACTIONS(6751), - [anon_sym_RPAREN] = ACTIONS(6751), - [anon_sym_LPAREN2] = ACTIONS(6751), - [anon_sym_DASH] = ACTIONS(6746), - [anon_sym_PLUS] = ACTIONS(6746), - [anon_sym_STAR] = ACTIONS(6751), - [anon_sym_SLASH] = ACTIONS(6746), - [anon_sym_PERCENT] = ACTIONS(6751), - [anon_sym_PIPE_PIPE] = ACTIONS(6751), - [anon_sym_AMP_AMP] = ACTIONS(6751), - [anon_sym_PIPE] = ACTIONS(6746), - [anon_sym_CARET] = ACTIONS(6751), - [anon_sym_AMP] = ACTIONS(6746), - [anon_sym_EQ_EQ] = ACTIONS(6751), - [anon_sym_BANG_EQ] = ACTIONS(6751), - [anon_sym_GT] = ACTIONS(6746), - [anon_sym_GT_EQ] = ACTIONS(6751), - [anon_sym_LT_EQ] = ACTIONS(6746), - [anon_sym_LT] = ACTIONS(6746), - [anon_sym_LT_LT] = ACTIONS(6751), - [anon_sym_GT_GT] = ACTIONS(6751), - [anon_sym_SEMI] = ACTIONS(6751), - [anon_sym___extension__] = ACTIONS(6746), - [anon_sym___attribute__] = ACTIONS(6746), - [anon_sym___attribute] = ACTIONS(6746), - [anon_sym_COLON] = ACTIONS(6746), - [anon_sym_COLON_COLON] = ACTIONS(6751), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6751), - [anon_sym___based] = ACTIONS(6746), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_RBRACE] = ACTIONS(6751), - [anon_sym_signed] = ACTIONS(6746), - [anon_sym_unsigned] = ACTIONS(6746), - [anon_sym_long] = ACTIONS(6746), - [anon_sym_short] = ACTIONS(6746), - [anon_sym_LBRACK] = ACTIONS(6751), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6746), - [anon_sym_volatile] = ACTIONS(6746), - [anon_sym_restrict] = ACTIONS(6746), - [anon_sym___restrict__] = ACTIONS(6746), - [anon_sym__Atomic] = ACTIONS(6746), - [anon_sym__Noreturn] = ACTIONS(6746), - [anon_sym_noreturn] = ACTIONS(6746), - [anon_sym__Nonnull] = ACTIONS(6746), - [anon_sym_mutable] = ACTIONS(6746), - [anon_sym_constinit] = ACTIONS(6746), - [anon_sym_consteval] = ACTIONS(6746), - [anon_sym_alignas] = ACTIONS(6746), - [anon_sym__Alignas] = ACTIONS(6746), - [sym_primitive_type] = ACTIONS(6746), - [anon_sym_QMARK] = ACTIONS(6751), - [anon_sym_LT_EQ_GT] = ACTIONS(6751), - [anon_sym_or] = ACTIONS(6746), - [anon_sym_and] = ACTIONS(6746), - [anon_sym_bitor] = ACTIONS(6746), - [anon_sym_xor] = ACTIONS(6746), - [anon_sym_bitand] = ACTIONS(6746), - [anon_sym_not_eq] = ACTIONS(6746), - [anon_sym_DASH_DASH] = ACTIONS(6751), - [anon_sym_PLUS_PLUS] = ACTIONS(6751), - [anon_sym_DOT] = ACTIONS(6746), - [anon_sym_DOT_STAR] = ACTIONS(6751), - [anon_sym_DASH_GT] = ACTIONS(6751), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6746), - [anon_sym_override] = ACTIONS(6746), - [anon_sym_requires] = ACTIONS(6746), - [anon_sym_COLON_RBRACK] = ACTIONS(6751), + [STATE(2617)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7160), + [anon_sym_COMMA] = ACTIONS(7160), + [anon_sym_RPAREN] = ACTIONS(7160), + [anon_sym_LPAREN2] = ACTIONS(7160), + [anon_sym_DASH] = ACTIONS(7158), + [anon_sym_PLUS] = ACTIONS(7158), + [anon_sym_STAR] = ACTIONS(7158), + [anon_sym_SLASH] = ACTIONS(7158), + [anon_sym_PERCENT] = ACTIONS(7158), + [anon_sym_PIPE_PIPE] = ACTIONS(7160), + [anon_sym_AMP_AMP] = ACTIONS(7160), + [anon_sym_PIPE] = ACTIONS(7158), + [anon_sym_CARET] = ACTIONS(7158), + [anon_sym_AMP] = ACTIONS(7158), + [anon_sym_EQ_EQ] = ACTIONS(7160), + [anon_sym_BANG_EQ] = ACTIONS(7160), + [anon_sym_GT] = ACTIONS(7158), + [anon_sym_GT_EQ] = ACTIONS(7160), + [anon_sym_LT_EQ] = ACTIONS(7158), + [anon_sym_LT] = ACTIONS(7158), + [anon_sym_LT_LT] = ACTIONS(7158), + [anon_sym_GT_GT] = ACTIONS(7158), + [anon_sym___extension__] = ACTIONS(7160), + [anon_sym___attribute__] = ACTIONS(7160), + [anon_sym___attribute] = ACTIONS(7158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7160), + [anon_sym_LBRACK] = ACTIONS(7158), + [anon_sym_EQ] = ACTIONS(7158), + [anon_sym_const] = ACTIONS(7158), + [anon_sym_constexpr] = ACTIONS(7160), + [anon_sym_volatile] = ACTIONS(7160), + [anon_sym_restrict] = ACTIONS(7160), + [anon_sym___restrict__] = ACTIONS(7160), + [anon_sym__Atomic] = ACTIONS(7160), + [anon_sym__Noreturn] = ACTIONS(7160), + [anon_sym_noreturn] = ACTIONS(7160), + [anon_sym__Nonnull] = ACTIONS(7160), + [anon_sym_mutable] = ACTIONS(7160), + [anon_sym_constinit] = ACTIONS(7160), + [anon_sym_consteval] = ACTIONS(7160), + [anon_sym_alignas] = ACTIONS(7160), + [anon_sym__Alignas] = ACTIONS(7160), + [anon_sym_QMARK] = ACTIONS(7160), + [anon_sym_STAR_EQ] = ACTIONS(7160), + [anon_sym_SLASH_EQ] = ACTIONS(7160), + [anon_sym_PERCENT_EQ] = ACTIONS(7160), + [anon_sym_PLUS_EQ] = ACTIONS(7160), + [anon_sym_DASH_EQ] = ACTIONS(7160), + [anon_sym_LT_LT_EQ] = ACTIONS(7160), + [anon_sym_GT_GT_EQ] = ACTIONS(7160), + [anon_sym_AMP_EQ] = ACTIONS(7160), + [anon_sym_CARET_EQ] = ACTIONS(7160), + [anon_sym_PIPE_EQ] = ACTIONS(7160), + [anon_sym_LT_EQ_GT] = ACTIONS(7160), + [anon_sym_or] = ACTIONS(7160), + [anon_sym_and] = ACTIONS(7160), + [anon_sym_bitor] = ACTIONS(7160), + [anon_sym_xor] = ACTIONS(7160), + [anon_sym_bitand] = ACTIONS(7160), + [anon_sym_not_eq] = ACTIONS(7160), + [anon_sym_DASH_DASH] = ACTIONS(7160), + [anon_sym_PLUS_PLUS] = ACTIONS(7160), + [anon_sym_asm] = ACTIONS(7160), + [anon_sym___asm__] = ACTIONS(7160), + [anon_sym___asm] = ACTIONS(7158), + [anon_sym_DOT] = ACTIONS(7158), + [anon_sym_DOT_STAR] = ACTIONS(7160), + [anon_sym_DASH_GT] = ACTIONS(7158), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7160), + [anon_sym_override] = ACTIONS(7160), + [anon_sym_noexcept] = ACTIONS(7160), + [anon_sym_throw] = ACTIONS(7160), + [anon_sym_requires] = ACTIONS(7160), + [anon_sym_DASH_GT_STAR] = ACTIONS(7160), }, - [STATE(2856)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_RBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6800), - [anon_sym_override] = ACTIONS(6800), - [anon_sym_requires] = ACTIONS(6800), + [STATE(2618)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), + [anon_sym_COMMA] = ACTIONS(7289), + [anon_sym_RPAREN] = ACTIONS(7289), + [anon_sym_LPAREN2] = ACTIONS(7289), + [anon_sym_DASH] = ACTIONS(7287), + [anon_sym_PLUS] = ACTIONS(7287), + [anon_sym_STAR] = ACTIONS(7287), + [anon_sym_SLASH] = ACTIONS(7287), + [anon_sym_PERCENT] = ACTIONS(7287), + [anon_sym_PIPE_PIPE] = ACTIONS(7289), + [anon_sym_AMP_AMP] = ACTIONS(7289), + [anon_sym_PIPE] = ACTIONS(7287), + [anon_sym_CARET] = ACTIONS(7287), + [anon_sym_AMP] = ACTIONS(7287), + [anon_sym_EQ_EQ] = ACTIONS(7289), + [anon_sym_BANG_EQ] = ACTIONS(7289), + [anon_sym_GT] = ACTIONS(7287), + [anon_sym_GT_EQ] = ACTIONS(7289), + [anon_sym_LT_EQ] = ACTIONS(7287), + [anon_sym_LT] = ACTIONS(7287), + [anon_sym_LT_LT] = ACTIONS(7287), + [anon_sym_GT_GT] = ACTIONS(7287), + [anon_sym___extension__] = ACTIONS(7289), + [sym_ms_restrict_modifier] = ACTIONS(7287), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7289), + [sym_ms_signed_ptr_modifier] = ACTIONS(7289), + [anon_sym__unaligned] = ACTIONS(7289), + [anon_sym___unaligned] = ACTIONS(7289), + [anon_sym_LBRACK] = ACTIONS(7289), + [anon_sym_EQ] = ACTIONS(7287), + [anon_sym_const] = ACTIONS(7287), + [anon_sym_constexpr] = ACTIONS(7289), + [anon_sym_volatile] = ACTIONS(7289), + [anon_sym_restrict] = ACTIONS(7289), + [anon_sym___restrict__] = ACTIONS(7289), + [anon_sym__Atomic] = ACTIONS(7289), + [anon_sym__Noreturn] = ACTIONS(7289), + [anon_sym_noreturn] = ACTIONS(7289), + [anon_sym__Nonnull] = ACTIONS(7289), + [anon_sym_mutable] = ACTIONS(7289), + [anon_sym_constinit] = ACTIONS(7289), + [anon_sym_consteval] = ACTIONS(7289), + [anon_sym_alignas] = ACTIONS(7289), + [anon_sym__Alignas] = ACTIONS(7289), + [anon_sym_QMARK] = ACTIONS(7289), + [anon_sym_STAR_EQ] = ACTIONS(7289), + [anon_sym_SLASH_EQ] = ACTIONS(7289), + [anon_sym_PERCENT_EQ] = ACTIONS(7289), + [anon_sym_PLUS_EQ] = ACTIONS(7289), + [anon_sym_DASH_EQ] = ACTIONS(7289), + [anon_sym_LT_LT_EQ] = ACTIONS(7289), + [anon_sym_GT_GT_EQ] = ACTIONS(7289), + [anon_sym_AMP_EQ] = ACTIONS(7289), + [anon_sym_CARET_EQ] = ACTIONS(7289), + [anon_sym_PIPE_EQ] = ACTIONS(7289), + [anon_sym_and_eq] = ACTIONS(7289), + [anon_sym_or_eq] = ACTIONS(7289), + [anon_sym_xor_eq] = ACTIONS(7289), + [anon_sym_LT_EQ_GT] = ACTIONS(7289), + [anon_sym_or] = ACTIONS(7287), + [anon_sym_and] = ACTIONS(7287), + [anon_sym_bitor] = ACTIONS(7289), + [anon_sym_xor] = ACTIONS(7287), + [anon_sym_bitand] = ACTIONS(7289), + [anon_sym_not_eq] = ACTIONS(7289), + [anon_sym_DASH_DASH] = ACTIONS(7289), + [anon_sym_PLUS_PLUS] = ACTIONS(7289), + [anon_sym_DOT] = ACTIONS(7287), + [anon_sym_DOT_STAR] = ACTIONS(7289), + [anon_sym_DASH_GT] = ACTIONS(7287), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7289), + [anon_sym_override] = ACTIONS(7289), + [anon_sym_requires] = ACTIONS(7289), + [anon_sym_DASH_GT_STAR] = ACTIONS(7289), }, - [STATE(2857)] = { - [sym_attribute_specifier] = STATE(4079), - [sym_attribute_declaration] = STATE(4488), - [sym_gnu_asm_expression] = STATE(8997), - [sym_virtual_specifier] = STATE(4611), - [sym__function_attributes_end] = STATE(4246), - [sym__function_postfix] = STATE(4995), - [sym_trailing_return_type] = STATE(4326), - [sym_requires_clause] = STATE(4995), - [aux_sym_type_definition_repeat1] = STATE(4079), - [aux_sym_attributed_declarator_repeat1] = STATE(4488), - [aux_sym__function_postfix_repeat1] = STATE(4611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym___attribute__] = ACTIONS(6326), - [anon_sym___attribute] = ACTIONS(6328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_RBRACK] = ACTIONS(7627), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7627), - [anon_sym_or_eq] = ACTIONS(7627), - [anon_sym_xor_eq] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(8061), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6349), - [anon_sym_override] = ACTIONS(6349), - [anon_sym_requires] = ACTIONS(6351), + [STATE(2619)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), + [anon_sym_COMMA] = ACTIONS(7201), + [anon_sym_RPAREN] = ACTIONS(7201), + [anon_sym_LPAREN2] = ACTIONS(7201), + [anon_sym_DASH] = ACTIONS(7199), + [anon_sym_PLUS] = ACTIONS(7199), + [anon_sym_STAR] = ACTIONS(7199), + [anon_sym_SLASH] = ACTIONS(7199), + [anon_sym_PERCENT] = ACTIONS(7199), + [anon_sym_PIPE_PIPE] = ACTIONS(7201), + [anon_sym_AMP_AMP] = ACTIONS(7201), + [anon_sym_PIPE] = ACTIONS(7199), + [anon_sym_CARET] = ACTIONS(7199), + [anon_sym_AMP] = ACTIONS(7199), + [anon_sym_EQ_EQ] = ACTIONS(7201), + [anon_sym_BANG_EQ] = ACTIONS(7201), + [anon_sym_GT] = ACTIONS(7199), + [anon_sym_GT_EQ] = ACTIONS(7201), + [anon_sym_LT_EQ] = ACTIONS(7199), + [anon_sym_LT] = ACTIONS(7199), + [anon_sym_LT_LT] = ACTIONS(7199), + [anon_sym_GT_GT] = ACTIONS(7199), + [anon_sym___extension__] = ACTIONS(7201), + [sym_ms_restrict_modifier] = ACTIONS(7199), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7201), + [sym_ms_signed_ptr_modifier] = ACTIONS(7201), + [anon_sym__unaligned] = ACTIONS(7201), + [anon_sym___unaligned] = ACTIONS(7201), + [anon_sym_LBRACK] = ACTIONS(7201), + [anon_sym_EQ] = ACTIONS(7199), + [anon_sym_const] = ACTIONS(7199), + [anon_sym_constexpr] = ACTIONS(7201), + [anon_sym_volatile] = ACTIONS(7201), + [anon_sym_restrict] = ACTIONS(7201), + [anon_sym___restrict__] = ACTIONS(7201), + [anon_sym__Atomic] = ACTIONS(7201), + [anon_sym__Noreturn] = ACTIONS(7201), + [anon_sym_noreturn] = ACTIONS(7201), + [anon_sym__Nonnull] = ACTIONS(7201), + [anon_sym_mutable] = ACTIONS(7201), + [anon_sym_constinit] = ACTIONS(7201), + [anon_sym_consteval] = ACTIONS(7201), + [anon_sym_alignas] = ACTIONS(7201), + [anon_sym__Alignas] = ACTIONS(7201), + [anon_sym_QMARK] = ACTIONS(7201), + [anon_sym_STAR_EQ] = ACTIONS(7201), + [anon_sym_SLASH_EQ] = ACTIONS(7201), + [anon_sym_PERCENT_EQ] = ACTIONS(7201), + [anon_sym_PLUS_EQ] = ACTIONS(7201), + [anon_sym_DASH_EQ] = ACTIONS(7201), + [anon_sym_LT_LT_EQ] = ACTIONS(7201), + [anon_sym_GT_GT_EQ] = ACTIONS(7201), + [anon_sym_AMP_EQ] = ACTIONS(7201), + [anon_sym_CARET_EQ] = ACTIONS(7201), + [anon_sym_PIPE_EQ] = ACTIONS(7201), + [anon_sym_and_eq] = ACTIONS(7201), + [anon_sym_or_eq] = ACTIONS(7201), + [anon_sym_xor_eq] = ACTIONS(7201), + [anon_sym_LT_EQ_GT] = ACTIONS(7201), + [anon_sym_or] = ACTIONS(7199), + [anon_sym_and] = ACTIONS(7199), + [anon_sym_bitor] = ACTIONS(7201), + [anon_sym_xor] = ACTIONS(7199), + [anon_sym_bitand] = ACTIONS(7201), + [anon_sym_not_eq] = ACTIONS(7201), + [anon_sym_DASH_DASH] = ACTIONS(7201), + [anon_sym_PLUS_PLUS] = ACTIONS(7201), + [anon_sym_DOT] = ACTIONS(7199), + [anon_sym_DOT_STAR] = ACTIONS(7201), + [anon_sym_DASH_GT] = ACTIONS(7199), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7201), + [anon_sym_override] = ACTIONS(7201), + [anon_sym_requires] = ACTIONS(7201), + [anon_sym_DASH_GT_STAR] = ACTIONS(7201), }, - [STATE(2858)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_attributes_end] = STATE(4141), - [sym__function_postfix] = STATE(3528), - [sym_trailing_return_type] = STATE(2867), - [sym_requires_clause] = STATE(3528), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), - [anon_sym_COMMA] = ACTIONS(8089), - [anon_sym_LPAREN2] = ACTIONS(8089), - [anon_sym_DASH] = ACTIONS(8087), - [anon_sym_PLUS] = ACTIONS(8087), - [anon_sym_STAR] = ACTIONS(8087), - [anon_sym_SLASH] = ACTIONS(8087), - [anon_sym_PERCENT] = ACTIONS(8087), - [anon_sym_PIPE_PIPE] = ACTIONS(8089), - [anon_sym_AMP_AMP] = ACTIONS(8089), - [anon_sym_PIPE] = ACTIONS(8087), - [anon_sym_CARET] = ACTIONS(8087), - [anon_sym_AMP] = ACTIONS(8087), - [anon_sym_EQ_EQ] = ACTIONS(8089), - [anon_sym_BANG_EQ] = ACTIONS(8089), - [anon_sym_GT] = ACTIONS(8087), - [anon_sym_GT_EQ] = ACTIONS(8089), - [anon_sym_LT_EQ] = ACTIONS(8087), - [anon_sym_LT] = ACTIONS(8087), - [anon_sym_LT_LT] = ACTIONS(8087), - [anon_sym_GT_GT] = ACTIONS(8087), - [anon_sym_SEMI] = ACTIONS(8089), - [anon_sym___attribute__] = ACTIONS(8528), - [anon_sym___attribute] = ACTIONS(8531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(8087), - [anon_sym_EQ] = ACTIONS(8087), - [anon_sym_QMARK] = ACTIONS(8089), - [anon_sym_STAR_EQ] = ACTIONS(8089), - [anon_sym_SLASH_EQ] = ACTIONS(8089), - [anon_sym_PERCENT_EQ] = ACTIONS(8089), - [anon_sym_PLUS_EQ] = ACTIONS(8089), - [anon_sym_DASH_EQ] = ACTIONS(8089), - [anon_sym_LT_LT_EQ] = ACTIONS(8089), - [anon_sym_GT_GT_EQ] = ACTIONS(8089), - [anon_sym_AMP_EQ] = ACTIONS(8089), - [anon_sym_CARET_EQ] = ACTIONS(8089), - [anon_sym_PIPE_EQ] = ACTIONS(8089), - [anon_sym_and_eq] = ACTIONS(8089), - [anon_sym_or_eq] = ACTIONS(8089), - [anon_sym_xor_eq] = ACTIONS(8089), - [anon_sym_LT_EQ_GT] = ACTIONS(8089), - [anon_sym_or] = ACTIONS(8087), - [anon_sym_and] = ACTIONS(8087), - [anon_sym_bitor] = ACTIONS(8089), - [anon_sym_xor] = ACTIONS(8087), - [anon_sym_bitand] = ACTIONS(8089), - [anon_sym_not_eq] = ACTIONS(8089), - [anon_sym_DASH_DASH] = ACTIONS(8089), - [anon_sym_PLUS_PLUS] = ACTIONS(8089), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(8087), - [anon_sym_DOT_STAR] = ACTIONS(8089), - [anon_sym_DASH_GT] = ACTIONS(8534), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8129), - [anon_sym_override] = ACTIONS(8129), - [anon_sym_requires] = ACTIONS(8132), + [STATE(2620)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2624), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7557), + [anon_sym_COMMA] = ACTIONS(7557), + [anon_sym_RPAREN] = ACTIONS(7557), + [anon_sym_LPAREN2] = ACTIONS(7557), + [anon_sym_DASH] = ACTIONS(7555), + [anon_sym_PLUS] = ACTIONS(7555), + [anon_sym_STAR] = ACTIONS(7555), + [anon_sym_SLASH] = ACTIONS(7555), + [anon_sym_PERCENT] = ACTIONS(7555), + [anon_sym_PIPE_PIPE] = ACTIONS(7557), + [anon_sym_AMP_AMP] = ACTIONS(7557), + [anon_sym_PIPE] = ACTIONS(7555), + [anon_sym_CARET] = ACTIONS(7555), + [anon_sym_AMP] = ACTIONS(7555), + [anon_sym_EQ_EQ] = ACTIONS(7557), + [anon_sym_BANG_EQ] = ACTIONS(7557), + [anon_sym_GT] = ACTIONS(7555), + [anon_sym_GT_EQ] = ACTIONS(7557), + [anon_sym_LT_EQ] = ACTIONS(7555), + [anon_sym_LT] = ACTIONS(7555), + [anon_sym_LT_LT] = ACTIONS(7555), + [anon_sym_GT_GT] = ACTIONS(7555), + [anon_sym___extension__] = ACTIONS(7557), + [anon_sym___attribute__] = ACTIONS(7557), + [anon_sym___attribute] = ACTIONS(7555), + [anon_sym_LBRACE] = ACTIONS(7557), + [anon_sym_signed] = ACTIONS(8525), + [anon_sym_unsigned] = ACTIONS(8525), + [anon_sym_long] = ACTIONS(8525), + [anon_sym_short] = ACTIONS(8525), + [anon_sym_LBRACK] = ACTIONS(7557), + [anon_sym_EQ] = ACTIONS(7555), + [anon_sym_const] = ACTIONS(7555), + [anon_sym_constexpr] = ACTIONS(7557), + [anon_sym_volatile] = ACTIONS(7557), + [anon_sym_restrict] = ACTIONS(7557), + [anon_sym___restrict__] = ACTIONS(7557), + [anon_sym__Atomic] = ACTIONS(7557), + [anon_sym__Noreturn] = ACTIONS(7557), + [anon_sym_noreturn] = ACTIONS(7557), + [anon_sym__Nonnull] = ACTIONS(7557), + [anon_sym_mutable] = ACTIONS(7557), + [anon_sym_constinit] = ACTIONS(7557), + [anon_sym_consteval] = ACTIONS(7557), + [anon_sym_alignas] = ACTIONS(7557), + [anon_sym__Alignas] = ACTIONS(7557), + [anon_sym_QMARK] = ACTIONS(7557), + [anon_sym_STAR_EQ] = ACTIONS(7557), + [anon_sym_SLASH_EQ] = ACTIONS(7557), + [anon_sym_PERCENT_EQ] = ACTIONS(7557), + [anon_sym_PLUS_EQ] = ACTIONS(7557), + [anon_sym_DASH_EQ] = ACTIONS(7557), + [anon_sym_LT_LT_EQ] = ACTIONS(7557), + [anon_sym_GT_GT_EQ] = ACTIONS(7557), + [anon_sym_AMP_EQ] = ACTIONS(7557), + [anon_sym_CARET_EQ] = ACTIONS(7557), + [anon_sym_PIPE_EQ] = ACTIONS(7557), + [anon_sym_LT_EQ_GT] = ACTIONS(7557), + [anon_sym_or] = ACTIONS(7557), + [anon_sym_and] = ACTIONS(7557), + [anon_sym_bitor] = ACTIONS(7557), + [anon_sym_xor] = ACTIONS(7557), + [anon_sym_bitand] = ACTIONS(7557), + [anon_sym_not_eq] = ACTIONS(7557), + [anon_sym_DASH_DASH] = ACTIONS(7557), + [anon_sym_PLUS_PLUS] = ACTIONS(7557), + [anon_sym_DOT] = ACTIONS(7555), + [anon_sym_DOT_STAR] = ACTIONS(7557), + [anon_sym_DASH_GT] = ACTIONS(7555), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_override] = ACTIONS(7557), + [anon_sym_requires] = ACTIONS(7557), + [anon_sym_DASH_GT_STAR] = ACTIONS(7557), }, - [STATE(2859)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6228), - [anon_sym_COMMA] = ACTIONS(6228), - [anon_sym_RPAREN] = ACTIONS(6230), - [anon_sym_LPAREN2] = ACTIONS(6230), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6237), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_PERCENT] = ACTIONS(6235), - [anon_sym_PIPE_PIPE] = ACTIONS(6228), - [anon_sym_AMP_AMP] = ACTIONS(6230), - [anon_sym_PIPE] = ACTIONS(6235), - [anon_sym_CARET] = ACTIONS(6235), - [anon_sym_AMP] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6228), - [anon_sym_BANG_EQ] = ACTIONS(6228), - [anon_sym_GT] = ACTIONS(6235), - [anon_sym_GT_EQ] = ACTIONS(6228), - [anon_sym_LT_EQ] = ACTIONS(6235), - [anon_sym_LT] = ACTIONS(6235), - [anon_sym_LT_LT] = ACTIONS(6235), - [anon_sym_GT_GT] = ACTIONS(6235), - [anon_sym___extension__] = ACTIONS(6233), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6230), - [anon_sym_EQ] = ACTIONS(6235), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6233), - [anon_sym_volatile] = ACTIONS(6233), - [anon_sym_restrict] = ACTIONS(6233), - [anon_sym___restrict__] = ACTIONS(6233), - [anon_sym__Atomic] = ACTIONS(6233), - [anon_sym__Noreturn] = ACTIONS(6233), - [anon_sym_noreturn] = ACTIONS(6233), - [anon_sym__Nonnull] = ACTIONS(6233), - [anon_sym_mutable] = ACTIONS(6233), - [anon_sym_constinit] = ACTIONS(6233), - [anon_sym_consteval] = ACTIONS(6233), - [anon_sym_alignas] = ACTIONS(6233), - [anon_sym__Alignas] = ACTIONS(6233), - [anon_sym_QMARK] = ACTIONS(6228), - [anon_sym_STAR_EQ] = ACTIONS(6228), - [anon_sym_SLASH_EQ] = ACTIONS(6228), - [anon_sym_PERCENT_EQ] = ACTIONS(6228), - [anon_sym_PLUS_EQ] = ACTIONS(6228), - [anon_sym_DASH_EQ] = ACTIONS(6228), - [anon_sym_LT_LT_EQ] = ACTIONS(6228), - [anon_sym_GT_GT_EQ] = ACTIONS(6228), - [anon_sym_AMP_EQ] = ACTIONS(6228), - [anon_sym_CARET_EQ] = ACTIONS(6228), - [anon_sym_PIPE_EQ] = ACTIONS(6228), - [anon_sym_and_eq] = ACTIONS(6228), - [anon_sym_or_eq] = ACTIONS(6228), - [anon_sym_xor_eq] = ACTIONS(6228), - [anon_sym_LT_EQ_GT] = ACTIONS(6228), - [anon_sym_or] = ACTIONS(6235), - [anon_sym_and] = ACTIONS(6235), - [anon_sym_bitor] = ACTIONS(6228), - [anon_sym_xor] = ACTIONS(6235), - [anon_sym_bitand] = ACTIONS(6228), - [anon_sym_not_eq] = ACTIONS(6228), - [anon_sym_DASH_DASH] = ACTIONS(6228), - [anon_sym_PLUS_PLUS] = ACTIONS(6228), - [anon_sym_DOT] = ACTIONS(6235), - [anon_sym_DOT_STAR] = ACTIONS(6228), - [anon_sym_DASH_GT] = ACTIONS(6235), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6233), - [anon_sym_decltype] = ACTIONS(6233), - [anon_sym_DASH_GT_STAR] = ACTIONS(6228), + [STATE(2621)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7785), + [anon_sym_COMMA] = ACTIONS(7785), + [anon_sym_RPAREN] = ACTIONS(7785), + [anon_sym_LPAREN2] = ACTIONS(7785), + [anon_sym_DASH] = ACTIONS(7783), + [anon_sym_PLUS] = ACTIONS(7783), + [anon_sym_STAR] = ACTIONS(7783), + [anon_sym_SLASH] = ACTIONS(7783), + [anon_sym_PERCENT] = ACTIONS(7783), + [anon_sym_PIPE_PIPE] = ACTIONS(7785), + [anon_sym_AMP_AMP] = ACTIONS(7785), + [anon_sym_PIPE] = ACTIONS(7783), + [anon_sym_CARET] = ACTIONS(7783), + [anon_sym_AMP] = ACTIONS(7783), + [anon_sym_EQ_EQ] = ACTIONS(7785), + [anon_sym_BANG_EQ] = ACTIONS(7785), + [anon_sym_GT] = ACTIONS(7783), + [anon_sym_GT_EQ] = ACTIONS(7785), + [anon_sym_LT_EQ] = ACTIONS(7783), + [anon_sym_LT] = ACTIONS(7783), + [anon_sym_LT_LT] = ACTIONS(7783), + [anon_sym_GT_GT] = ACTIONS(7783), + [anon_sym___extension__] = ACTIONS(7785), + [anon_sym___attribute__] = ACTIONS(7785), + [anon_sym___attribute] = ACTIONS(7783), + [anon_sym_LBRACE] = ACTIONS(7785), + [anon_sym_signed] = ACTIONS(8527), + [anon_sym_unsigned] = ACTIONS(8527), + [anon_sym_long] = ACTIONS(8527), + [anon_sym_short] = ACTIONS(8527), + [anon_sym_LBRACK] = ACTIONS(7785), + [anon_sym_EQ] = ACTIONS(7783), + [anon_sym_const] = ACTIONS(7783), + [anon_sym_constexpr] = ACTIONS(7785), + [anon_sym_volatile] = ACTIONS(7785), + [anon_sym_restrict] = ACTIONS(7785), + [anon_sym___restrict__] = ACTIONS(7785), + [anon_sym__Atomic] = ACTIONS(7785), + [anon_sym__Noreturn] = ACTIONS(7785), + [anon_sym_noreturn] = ACTIONS(7785), + [anon_sym__Nonnull] = ACTIONS(7785), + [anon_sym_mutable] = ACTIONS(7785), + [anon_sym_constinit] = ACTIONS(7785), + [anon_sym_consteval] = ACTIONS(7785), + [anon_sym_alignas] = ACTIONS(7785), + [anon_sym__Alignas] = ACTIONS(7785), + [anon_sym_QMARK] = ACTIONS(7785), + [anon_sym_STAR_EQ] = ACTIONS(7785), + [anon_sym_SLASH_EQ] = ACTIONS(7785), + [anon_sym_PERCENT_EQ] = ACTIONS(7785), + [anon_sym_PLUS_EQ] = ACTIONS(7785), + [anon_sym_DASH_EQ] = ACTIONS(7785), + [anon_sym_LT_LT_EQ] = ACTIONS(7785), + [anon_sym_GT_GT_EQ] = ACTIONS(7785), + [anon_sym_AMP_EQ] = ACTIONS(7785), + [anon_sym_CARET_EQ] = ACTIONS(7785), + [anon_sym_PIPE_EQ] = ACTIONS(7785), + [anon_sym_LT_EQ_GT] = ACTIONS(7785), + [anon_sym_or] = ACTIONS(7785), + [anon_sym_and] = ACTIONS(7785), + [anon_sym_bitor] = ACTIONS(7785), + [anon_sym_xor] = ACTIONS(7785), + [anon_sym_bitand] = ACTIONS(7785), + [anon_sym_not_eq] = ACTIONS(7785), + [anon_sym_DASH_DASH] = ACTIONS(7785), + [anon_sym_PLUS_PLUS] = ACTIONS(7785), + [anon_sym_DOT] = ACTIONS(7783), + [anon_sym_DOT_STAR] = ACTIONS(7785), + [anon_sym_DASH_GT] = ACTIONS(7783), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7785), + [anon_sym_override] = ACTIONS(7785), + [anon_sym_requires] = ACTIONS(7785), + [anon_sym_DASH_GT_STAR] = ACTIONS(7785), }, - [STATE(2860)] = { + [STATE(2622)] = { + [sym_decltype_auto] = STATE(3016), [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), [anon_sym_COMMA] = ACTIONS(7225), [anon_sym_RPAREN] = ACTIONS(7225), @@ -370030,6 +365397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(7223), [anon_sym_GT_GT] = ACTIONS(7223), [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_COLON_COLON] = ACTIONS(7227), [anon_sym_LBRACE] = ACTIONS(7225), [anon_sym_LBRACK] = ACTIONS(7225), [anon_sym_EQ] = ACTIONS(7223), @@ -370074,85 +365442,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7225), [anon_sym_DASH_GT] = ACTIONS(7223), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8529), + [anon_sym_decltype] = ACTIONS(6975), [anon_sym_final] = ACTIONS(7225), [anon_sym_override] = ACTIONS(7225), [anon_sym_requires] = ACTIONS(7225), [anon_sym_DASH_GT_STAR] = ACTIONS(7225), }, - [STATE(2861)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7229), - [anon_sym_COMMA] = ACTIONS(7229), - [anon_sym_RPAREN] = ACTIONS(7229), - [anon_sym_LPAREN2] = ACTIONS(7229), - [anon_sym_DASH] = ACTIONS(7227), - [anon_sym_PLUS] = ACTIONS(7227), - [anon_sym_STAR] = ACTIONS(7227), - [anon_sym_SLASH] = ACTIONS(7227), - [anon_sym_PERCENT] = ACTIONS(7227), - [anon_sym_PIPE_PIPE] = ACTIONS(7229), - [anon_sym_AMP_AMP] = ACTIONS(7229), - [anon_sym_PIPE] = ACTIONS(7227), - [anon_sym_CARET] = ACTIONS(7227), - [anon_sym_AMP] = ACTIONS(7227), - [anon_sym_EQ_EQ] = ACTIONS(7229), - [anon_sym_BANG_EQ] = ACTIONS(7229), - [anon_sym_GT] = ACTIONS(7227), - [anon_sym_GT_EQ] = ACTIONS(7229), - [anon_sym_LT_EQ] = ACTIONS(7227), - [anon_sym_LT] = ACTIONS(7227), - [anon_sym_LT_LT] = ACTIONS(7227), - [anon_sym_GT_GT] = ACTIONS(7227), - [anon_sym___extension__] = ACTIONS(7229), - [anon_sym_LBRACE] = ACTIONS(7229), - [anon_sym_LBRACK] = ACTIONS(7229), - [anon_sym_EQ] = ACTIONS(7227), - [anon_sym_const] = ACTIONS(7227), - [anon_sym_constexpr] = ACTIONS(7229), - [anon_sym_volatile] = ACTIONS(7229), - [anon_sym_restrict] = ACTIONS(7229), - [anon_sym___restrict__] = ACTIONS(7229), - [anon_sym__Atomic] = ACTIONS(7229), - [anon_sym__Noreturn] = ACTIONS(7229), - [anon_sym_noreturn] = ACTIONS(7229), - [anon_sym__Nonnull] = ACTIONS(7229), - [anon_sym_mutable] = ACTIONS(7229), - [anon_sym_constinit] = ACTIONS(7229), - [anon_sym_consteval] = ACTIONS(7229), - [anon_sym_alignas] = ACTIONS(7229), - [anon_sym__Alignas] = ACTIONS(7229), - [anon_sym_QMARK] = ACTIONS(7229), - [anon_sym_STAR_EQ] = ACTIONS(7229), - [anon_sym_SLASH_EQ] = ACTIONS(7229), - [anon_sym_PERCENT_EQ] = ACTIONS(7229), - [anon_sym_PLUS_EQ] = ACTIONS(7229), - [anon_sym_DASH_EQ] = ACTIONS(7229), - [anon_sym_LT_LT_EQ] = ACTIONS(7229), - [anon_sym_GT_GT_EQ] = ACTIONS(7229), - [anon_sym_AMP_EQ] = ACTIONS(7229), - [anon_sym_CARET_EQ] = ACTIONS(7229), - [anon_sym_PIPE_EQ] = ACTIONS(7229), - [anon_sym_and_eq] = ACTIONS(7229), - [anon_sym_or_eq] = ACTIONS(7229), - [anon_sym_xor_eq] = ACTIONS(7229), - [anon_sym_LT_EQ_GT] = ACTIONS(7229), - [anon_sym_or] = ACTIONS(7227), - [anon_sym_and] = ACTIONS(7227), - [anon_sym_bitor] = ACTIONS(7229), - [anon_sym_xor] = ACTIONS(7227), - [anon_sym_bitand] = ACTIONS(7229), - [anon_sym_not_eq] = ACTIONS(7229), - [anon_sym_DASH_DASH] = ACTIONS(7229), - [anon_sym_PLUS_PLUS] = ACTIONS(7229), - [anon_sym_DOT] = ACTIONS(7227), - [anon_sym_DOT_STAR] = ACTIONS(7229), - [anon_sym_DASH_GT] = ACTIONS(7227), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7229), - [anon_sym_override] = ACTIONS(7229), - [anon_sym_requires] = ACTIONS(7229), - [anon_sym_DASH_GT_STAR] = ACTIONS(7229), + [STATE(2623)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7110), + [anon_sym_COMMA] = ACTIONS(7110), + [anon_sym_RPAREN] = ACTIONS(7110), + [anon_sym_LPAREN2] = ACTIONS(7110), + [anon_sym_DASH] = ACTIONS(7108), + [anon_sym_PLUS] = ACTIONS(7108), + [anon_sym_STAR] = ACTIONS(7108), + [anon_sym_SLASH] = ACTIONS(7108), + [anon_sym_PERCENT] = ACTIONS(7108), + [anon_sym_PIPE_PIPE] = ACTIONS(7110), + [anon_sym_AMP_AMP] = ACTIONS(7110), + [anon_sym_PIPE] = ACTIONS(7108), + [anon_sym_CARET] = ACTIONS(7108), + [anon_sym_AMP] = ACTIONS(7108), + [anon_sym_EQ_EQ] = ACTIONS(7110), + [anon_sym_BANG_EQ] = ACTIONS(7110), + [anon_sym_GT] = ACTIONS(7108), + [anon_sym_GT_EQ] = ACTIONS(7110), + [anon_sym_LT_EQ] = ACTIONS(7108), + [anon_sym_LT] = ACTIONS(7108), + [anon_sym_LT_LT] = ACTIONS(7108), + [anon_sym_GT_GT] = ACTIONS(7108), + [anon_sym___extension__] = ACTIONS(7110), + [anon_sym___attribute__] = ACTIONS(7110), + [anon_sym___attribute] = ACTIONS(7108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7110), + [anon_sym_LBRACK] = ACTIONS(7108), + [anon_sym_EQ] = ACTIONS(7108), + [anon_sym_const] = ACTIONS(7108), + [anon_sym_constexpr] = ACTIONS(7110), + [anon_sym_volatile] = ACTIONS(7110), + [anon_sym_restrict] = ACTIONS(7110), + [anon_sym___restrict__] = ACTIONS(7110), + [anon_sym__Atomic] = ACTIONS(7110), + [anon_sym__Noreturn] = ACTIONS(7110), + [anon_sym_noreturn] = ACTIONS(7110), + [anon_sym__Nonnull] = ACTIONS(7110), + [anon_sym_mutable] = ACTIONS(7110), + [anon_sym_constinit] = ACTIONS(7110), + [anon_sym_consteval] = ACTIONS(7110), + [anon_sym_alignas] = ACTIONS(7110), + [anon_sym__Alignas] = ACTIONS(7110), + [anon_sym_QMARK] = ACTIONS(7110), + [anon_sym_STAR_EQ] = ACTIONS(7110), + [anon_sym_SLASH_EQ] = ACTIONS(7110), + [anon_sym_PERCENT_EQ] = ACTIONS(7110), + [anon_sym_PLUS_EQ] = ACTIONS(7110), + [anon_sym_DASH_EQ] = ACTIONS(7110), + [anon_sym_LT_LT_EQ] = ACTIONS(7110), + [anon_sym_GT_GT_EQ] = ACTIONS(7110), + [anon_sym_AMP_EQ] = ACTIONS(7110), + [anon_sym_CARET_EQ] = ACTIONS(7110), + [anon_sym_PIPE_EQ] = ACTIONS(7110), + [anon_sym_LT_EQ_GT] = ACTIONS(7110), + [anon_sym_or] = ACTIONS(7110), + [anon_sym_and] = ACTIONS(7110), + [anon_sym_bitor] = ACTIONS(7110), + [anon_sym_xor] = ACTIONS(7110), + [anon_sym_bitand] = ACTIONS(7110), + [anon_sym_not_eq] = ACTIONS(7110), + [anon_sym_DASH_DASH] = ACTIONS(7110), + [anon_sym_PLUS_PLUS] = ACTIONS(7110), + [anon_sym_asm] = ACTIONS(7110), + [anon_sym___asm__] = ACTIONS(7110), + [anon_sym___asm] = ACTIONS(7108), + [anon_sym_DOT] = ACTIONS(7108), + [anon_sym_DOT_STAR] = ACTIONS(7110), + [anon_sym_DASH_GT] = ACTIONS(7108), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7110), + [anon_sym_override] = ACTIONS(7110), + [anon_sym_noexcept] = ACTIONS(7110), + [anon_sym_throw] = ACTIONS(7110), + [anon_sym_requires] = ACTIONS(7110), + [anon_sym_DASH_GT_STAR] = ACTIONS(7110), }, - [STATE(2862)] = { + [STATE(2624)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7695), + [anon_sym_COMMA] = ACTIONS(7695), + [anon_sym_RPAREN] = ACTIONS(7695), + [anon_sym_LPAREN2] = ACTIONS(7695), + [anon_sym_DASH] = ACTIONS(7693), + [anon_sym_PLUS] = ACTIONS(7693), + [anon_sym_STAR] = ACTIONS(7693), + [anon_sym_SLASH] = ACTIONS(7693), + [anon_sym_PERCENT] = ACTIONS(7693), + [anon_sym_PIPE_PIPE] = ACTIONS(7695), + [anon_sym_AMP_AMP] = ACTIONS(7695), + [anon_sym_PIPE] = ACTIONS(7693), + [anon_sym_CARET] = ACTIONS(7693), + [anon_sym_AMP] = ACTIONS(7693), + [anon_sym_EQ_EQ] = ACTIONS(7695), + [anon_sym_BANG_EQ] = ACTIONS(7695), + [anon_sym_GT] = ACTIONS(7693), + [anon_sym_GT_EQ] = ACTIONS(7695), + [anon_sym_LT_EQ] = ACTIONS(7693), + [anon_sym_LT] = ACTIONS(7693), + [anon_sym_LT_LT] = ACTIONS(7693), + [anon_sym_GT_GT] = ACTIONS(7693), + [anon_sym___extension__] = ACTIONS(7695), + [anon_sym___attribute__] = ACTIONS(7695), + [anon_sym___attribute] = ACTIONS(7693), + [anon_sym_LBRACE] = ACTIONS(7695), + [anon_sym_signed] = ACTIONS(8523), + [anon_sym_unsigned] = ACTIONS(8523), + [anon_sym_long] = ACTIONS(8523), + [anon_sym_short] = ACTIONS(8523), + [anon_sym_LBRACK] = ACTIONS(7695), + [anon_sym_EQ] = ACTIONS(7693), + [anon_sym_const] = ACTIONS(7693), + [anon_sym_constexpr] = ACTIONS(7695), + [anon_sym_volatile] = ACTIONS(7695), + [anon_sym_restrict] = ACTIONS(7695), + [anon_sym___restrict__] = ACTIONS(7695), + [anon_sym__Atomic] = ACTIONS(7695), + [anon_sym__Noreturn] = ACTIONS(7695), + [anon_sym_noreturn] = ACTIONS(7695), + [anon_sym__Nonnull] = ACTIONS(7695), + [anon_sym_mutable] = ACTIONS(7695), + [anon_sym_constinit] = ACTIONS(7695), + [anon_sym_consteval] = ACTIONS(7695), + [anon_sym_alignas] = ACTIONS(7695), + [anon_sym__Alignas] = ACTIONS(7695), + [anon_sym_QMARK] = ACTIONS(7695), + [anon_sym_STAR_EQ] = ACTIONS(7695), + [anon_sym_SLASH_EQ] = ACTIONS(7695), + [anon_sym_PERCENT_EQ] = ACTIONS(7695), + [anon_sym_PLUS_EQ] = ACTIONS(7695), + [anon_sym_DASH_EQ] = ACTIONS(7695), + [anon_sym_LT_LT_EQ] = ACTIONS(7695), + [anon_sym_GT_GT_EQ] = ACTIONS(7695), + [anon_sym_AMP_EQ] = ACTIONS(7695), + [anon_sym_CARET_EQ] = ACTIONS(7695), + [anon_sym_PIPE_EQ] = ACTIONS(7695), + [anon_sym_LT_EQ_GT] = ACTIONS(7695), + [anon_sym_or] = ACTIONS(7695), + [anon_sym_and] = ACTIONS(7695), + [anon_sym_bitor] = ACTIONS(7695), + [anon_sym_xor] = ACTIONS(7695), + [anon_sym_bitand] = ACTIONS(7695), + [anon_sym_not_eq] = ACTIONS(7695), + [anon_sym_DASH_DASH] = ACTIONS(7695), + [anon_sym_PLUS_PLUS] = ACTIONS(7695), + [anon_sym_DOT] = ACTIONS(7693), + [anon_sym_DOT_STAR] = ACTIONS(7695), + [anon_sym_DASH_GT] = ACTIONS(7693), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7695), + [anon_sym_override] = ACTIONS(7695), + [anon_sym_requires] = ACTIONS(7695), + [anon_sym_DASH_GT_STAR] = ACTIONS(7695), + }, + [STATE(2625)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7291), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7291), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7291), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7291), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7291), + [anon_sym_GT_GT] = ACTIONS(7291), + [anon_sym___extension__] = ACTIONS(7293), + [anon_sym___attribute__] = ACTIONS(7293), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_COLON] = ACTIONS(7293), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_EQ] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7293), + [anon_sym_volatile] = ACTIONS(7293), + [anon_sym_restrict] = ACTIONS(7293), + [anon_sym___restrict__] = ACTIONS(7293), + [anon_sym__Atomic] = ACTIONS(7293), + [anon_sym__Noreturn] = ACTIONS(7293), + [anon_sym_noreturn] = ACTIONS(7293), + [anon_sym__Nonnull] = ACTIONS(7293), + [anon_sym_mutable] = ACTIONS(7293), + [anon_sym_constinit] = ACTIONS(7293), + [anon_sym_consteval] = ACTIONS(7293), + [anon_sym_alignas] = ACTIONS(7293), + [anon_sym__Alignas] = ACTIONS(7293), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_STAR_EQ] = ACTIONS(7293), + [anon_sym_SLASH_EQ] = ACTIONS(7293), + [anon_sym_PERCENT_EQ] = ACTIONS(7293), + [anon_sym_PLUS_EQ] = ACTIONS(7293), + [anon_sym_DASH_EQ] = ACTIONS(7293), + [anon_sym_LT_LT_EQ] = ACTIONS(7293), + [anon_sym_GT_GT_EQ] = ACTIONS(7291), + [anon_sym_AMP_EQ] = ACTIONS(7293), + [anon_sym_CARET_EQ] = ACTIONS(7293), + [anon_sym_PIPE_EQ] = ACTIONS(7293), + [anon_sym_and_eq] = ACTIONS(7293), + [anon_sym_or_eq] = ACTIONS(7293), + [anon_sym_xor_eq] = ACTIONS(7293), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_bitor] = ACTIONS(7293), + [anon_sym_xor] = ACTIONS(7291), + [anon_sym_bitand] = ACTIONS(7293), + [anon_sym_not_eq] = ACTIONS(7293), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7293), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7293), + [anon_sym_decltype] = ACTIONS(7293), + [anon_sym_final] = ACTIONS(7293), + [anon_sym_override] = ACTIONS(7293), + [anon_sym_GT2] = ACTIONS(7293), + [anon_sym_requires] = ACTIONS(7293), + }, + [STATE(2626)] = { + [sym_attribute_specifier] = STATE(3051), + [sym_enumerator_list] = STATE(2674), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), + [anon_sym_COMMA] = ACTIONS(7389), + [anon_sym_RPAREN] = ACTIONS(7389), + [anon_sym_LPAREN2] = ACTIONS(7389), + [anon_sym_DASH] = ACTIONS(7387), + [anon_sym_PLUS] = ACTIONS(7387), + [anon_sym_STAR] = ACTIONS(7387), + [anon_sym_SLASH] = ACTIONS(7387), + [anon_sym_PERCENT] = ACTIONS(7387), + [anon_sym_PIPE_PIPE] = ACTIONS(7389), + [anon_sym_AMP_AMP] = ACTIONS(7389), + [anon_sym_PIPE] = ACTIONS(7387), + [anon_sym_CARET] = ACTIONS(7387), + [anon_sym_AMP] = ACTIONS(7387), + [anon_sym_EQ_EQ] = ACTIONS(7389), + [anon_sym_BANG_EQ] = ACTIONS(7389), + [anon_sym_GT] = ACTIONS(7387), + [anon_sym_GT_EQ] = ACTIONS(7389), + [anon_sym_LT_EQ] = ACTIONS(7387), + [anon_sym_LT] = ACTIONS(7387), + [anon_sym_LT_LT] = ACTIONS(7387), + [anon_sym_GT_GT] = ACTIONS(7387), + [anon_sym___extension__] = ACTIONS(7389), + [anon_sym___attribute__] = ACTIONS(8152), + [anon_sym___attribute] = ACTIONS(8154), + [anon_sym_LBRACE] = ACTIONS(8383), + [anon_sym_LBRACK] = ACTIONS(7389), + [anon_sym_EQ] = ACTIONS(7387), + [anon_sym_const] = ACTIONS(7387), + [anon_sym_constexpr] = ACTIONS(7389), + [anon_sym_volatile] = ACTIONS(7389), + [anon_sym_restrict] = ACTIONS(7389), + [anon_sym___restrict__] = ACTIONS(7389), + [anon_sym__Atomic] = ACTIONS(7389), + [anon_sym__Noreturn] = ACTIONS(7389), + [anon_sym_noreturn] = ACTIONS(7389), + [anon_sym__Nonnull] = ACTIONS(7389), + [anon_sym_mutable] = ACTIONS(7389), + [anon_sym_constinit] = ACTIONS(7389), + [anon_sym_consteval] = ACTIONS(7389), + [anon_sym_alignas] = ACTIONS(7389), + [anon_sym__Alignas] = ACTIONS(7389), + [anon_sym_QMARK] = ACTIONS(7389), + [anon_sym_STAR_EQ] = ACTIONS(7389), + [anon_sym_SLASH_EQ] = ACTIONS(7389), + [anon_sym_PERCENT_EQ] = ACTIONS(7389), + [anon_sym_PLUS_EQ] = ACTIONS(7389), + [anon_sym_DASH_EQ] = ACTIONS(7389), + [anon_sym_LT_LT_EQ] = ACTIONS(7389), + [anon_sym_GT_GT_EQ] = ACTIONS(7389), + [anon_sym_AMP_EQ] = ACTIONS(7389), + [anon_sym_CARET_EQ] = ACTIONS(7389), + [anon_sym_PIPE_EQ] = ACTIONS(7389), + [anon_sym_and_eq] = ACTIONS(7389), + [anon_sym_or_eq] = ACTIONS(7389), + [anon_sym_xor_eq] = ACTIONS(7389), + [anon_sym_LT_EQ_GT] = ACTIONS(7389), + [anon_sym_or] = ACTIONS(7387), + [anon_sym_and] = ACTIONS(7387), + [anon_sym_bitor] = ACTIONS(7389), + [anon_sym_xor] = ACTIONS(7387), + [anon_sym_bitand] = ACTIONS(7389), + [anon_sym_not_eq] = ACTIONS(7389), + [anon_sym_DASH_DASH] = ACTIONS(7389), + [anon_sym_PLUS_PLUS] = ACTIONS(7389), + [anon_sym_DOT] = ACTIONS(7387), + [anon_sym_DOT_STAR] = ACTIONS(7389), + [anon_sym_DASH_GT] = ACTIONS(7387), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7389), + [anon_sym_override] = ACTIONS(7389), + [anon_sym_requires] = ACTIONS(7389), + [anon_sym_DASH_GT_STAR] = ACTIONS(7389), + }, + [STATE(2627)] = { + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6079), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_parameter_declaration] = STATE(10413), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(5936), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(2628)] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), [anon_sym_COMMA] = ACTIONS(7233), [anon_sym_RPAREN] = ACTIONS(7233), @@ -370176,6 +365858,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(7231), [anon_sym_GT_GT] = ACTIONS(7231), [anon_sym___extension__] = ACTIONS(7233), + [anon_sym___attribute__] = ACTIONS(7233), + [anon_sym___attribute] = ACTIONS(7231), + [anon_sym_COLON] = ACTIONS(7231), + [anon_sym_COLON_COLON] = ACTIONS(7233), [anon_sym_LBRACE] = ACTIONS(7233), [anon_sym_LBRACK] = ACTIONS(7233), [anon_sym_EQ] = ACTIONS(7231), @@ -370225,960 +365911,1708 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(7233), [anon_sym_DASH_GT_STAR] = ACTIONS(7233), }, - [STATE(2863)] = { - [sym_decltype_auto] = STATE(3011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(7183), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_RBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8266), - [anon_sym_decltype] = ACTIONS(6680), + [STATE(2629)] = { + [sym__abstract_declarator] = STATE(5798), + [sym_abstract_parenthesized_declarator] = STATE(5693), + [sym_abstract_pointer_declarator] = STATE(5693), + [sym_abstract_function_declarator] = STATE(5693), + [sym_abstract_array_declarator] = STATE(5693), + [sym_type_qualifier] = STATE(2367), + [sym_alignas_qualifier] = STATE(2576), + [sym_parameter_list] = STATE(1989), + [sym_abstract_reference_declarator] = STATE(5693), + [sym__function_declarator_seq] = STATE(5694), + [aux_sym__type_definition_type_repeat1] = STATE(2367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), + [anon_sym_COMMA] = ACTIONS(7351), + [anon_sym_RPAREN] = ACTIONS(7351), + [anon_sym_LPAREN2] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_PLUS] = ACTIONS(7349), + [anon_sym_STAR] = ACTIONS(7589), + [anon_sym_SLASH] = ACTIONS(7349), + [anon_sym_PERCENT] = ACTIONS(7349), + [anon_sym_PIPE_PIPE] = ACTIONS(7351), + [anon_sym_AMP_AMP] = ACTIONS(7591), + [anon_sym_PIPE] = ACTIONS(7349), + [anon_sym_CARET] = ACTIONS(7349), + [anon_sym_AMP] = ACTIONS(7593), + [anon_sym_EQ_EQ] = ACTIONS(7351), + [anon_sym_BANG_EQ] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7349), + [anon_sym_GT_EQ] = ACTIONS(7351), + [anon_sym_LT_EQ] = ACTIONS(7349), + [anon_sym_LT] = ACTIONS(7349), + [anon_sym_LT_LT] = ACTIONS(7349), + [anon_sym_GT_GT] = ACTIONS(7349), + [anon_sym___extension__] = ACTIONS(7313), + [anon_sym_LBRACK] = ACTIONS(7321), + [anon_sym_EQ] = ACTIONS(7349), + [anon_sym_const] = ACTIONS(7323), + [anon_sym_constexpr] = ACTIONS(7313), + [anon_sym_volatile] = ACTIONS(7313), + [anon_sym_restrict] = ACTIONS(7313), + [anon_sym___restrict__] = ACTIONS(7313), + [anon_sym__Atomic] = ACTIONS(7313), + [anon_sym__Noreturn] = ACTIONS(7313), + [anon_sym_noreturn] = ACTIONS(7313), + [anon_sym__Nonnull] = ACTIONS(7313), + [anon_sym_mutable] = ACTIONS(7313), + [anon_sym_constinit] = ACTIONS(7313), + [anon_sym_consteval] = ACTIONS(7313), + [anon_sym_alignas] = ACTIONS(7325), + [anon_sym__Alignas] = ACTIONS(7325), + [anon_sym_QMARK] = ACTIONS(7351), + [anon_sym_STAR_EQ] = ACTIONS(7351), + [anon_sym_SLASH_EQ] = ACTIONS(7351), + [anon_sym_PERCENT_EQ] = ACTIONS(7351), + [anon_sym_PLUS_EQ] = ACTIONS(7351), + [anon_sym_DASH_EQ] = ACTIONS(7351), + [anon_sym_LT_LT_EQ] = ACTIONS(7351), + [anon_sym_GT_GT_EQ] = ACTIONS(7351), + [anon_sym_AMP_EQ] = ACTIONS(7351), + [anon_sym_CARET_EQ] = ACTIONS(7351), + [anon_sym_PIPE_EQ] = ACTIONS(7351), + [anon_sym_LT_EQ_GT] = ACTIONS(7351), + [anon_sym_or] = ACTIONS(7351), + [anon_sym_and] = ACTIONS(7351), + [anon_sym_bitor] = ACTIONS(7351), + [anon_sym_xor] = ACTIONS(7351), + [anon_sym_bitand] = ACTIONS(7351), + [anon_sym_not_eq] = ACTIONS(7351), + [anon_sym_DASH_DASH] = ACTIONS(7351), + [anon_sym_PLUS_PLUS] = ACTIONS(7351), + [anon_sym_DOT] = ACTIONS(7349), + [anon_sym_DOT_STAR] = ACTIONS(7351), + [anon_sym_DASH_GT] = ACTIONS(7349), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7351), }, - [STATE(2864)] = { - [sym_virtual_specifier] = STATE(3248), - [sym__function_postfix] = STATE(3513), - [sym_requires_clause] = STATE(3513), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [sym_identifier] = ACTIONS(7546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [aux_sym_preproc_if_token2] = ACTIONS(7544), - [aux_sym_preproc_else_token1] = ACTIONS(7544), - [aux_sym_preproc_elif_token1] = ACTIONS(7546), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym_SEMI] = ACTIONS(7544), - [anon_sym___attribute__] = ACTIONS(7546), - [anon_sym___attribute] = ACTIONS(7546), - [anon_sym_COLON] = ACTIONS(7546), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), - [anon_sym_RBRACE] = ACTIONS(7544), - [anon_sym_LBRACK] = ACTIONS(7544), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7546), - [anon_sym_or_eq] = ACTIONS(7546), - [anon_sym_xor_eq] = ACTIONS(7546), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7546), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7546), - [anon_sym_not_eq] = ACTIONS(7546), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7544), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6134), - [anon_sym_override] = ACTIONS(6134), - [anon_sym_requires] = ACTIONS(6140), - [anon_sym_COLON_RBRACK] = ACTIONS(7544), + [STATE(2630)] = { + [sym__abstract_declarator] = STATE(5802), + [sym_abstract_parenthesized_declarator] = STATE(5693), + [sym_abstract_pointer_declarator] = STATE(5693), + [sym_abstract_function_declarator] = STATE(5693), + [sym_abstract_array_declarator] = STATE(5693), + [sym_type_qualifier] = STATE(2644), + [sym_alignas_qualifier] = STATE(2576), + [sym_parameter_list] = STATE(1989), + [sym_abstract_reference_declarator] = STATE(5693), + [sym__function_declarator_seq] = STATE(5694), + [aux_sym__type_definition_type_repeat1] = STATE(2644), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_RPAREN] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(7589), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(7591), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(7593), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(7313), + [anon_sym_LBRACK] = ACTIONS(7321), + [anon_sym_EQ] = ACTIONS(7341), + [anon_sym_const] = ACTIONS(7323), + [anon_sym_constexpr] = ACTIONS(7313), + [anon_sym_volatile] = ACTIONS(7313), + [anon_sym_restrict] = ACTIONS(7313), + [anon_sym___restrict__] = ACTIONS(7313), + [anon_sym__Atomic] = ACTIONS(7313), + [anon_sym__Noreturn] = ACTIONS(7313), + [anon_sym_noreturn] = ACTIONS(7313), + [anon_sym__Nonnull] = ACTIONS(7313), + [anon_sym_mutable] = ACTIONS(7313), + [anon_sym_constinit] = ACTIONS(7313), + [anon_sym_consteval] = ACTIONS(7313), + [anon_sym_alignas] = ACTIONS(7325), + [anon_sym__Alignas] = ACTIONS(7325), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_STAR_EQ] = ACTIONS(7343), + [anon_sym_SLASH_EQ] = ACTIONS(7343), + [anon_sym_PERCENT_EQ] = ACTIONS(7343), + [anon_sym_PLUS_EQ] = ACTIONS(7343), + [anon_sym_DASH_EQ] = ACTIONS(7343), + [anon_sym_LT_LT_EQ] = ACTIONS(7343), + [anon_sym_GT_GT_EQ] = ACTIONS(7343), + [anon_sym_AMP_EQ] = ACTIONS(7343), + [anon_sym_CARET_EQ] = ACTIONS(7343), + [anon_sym_PIPE_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7343), + [anon_sym_and] = ACTIONS(7343), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7343), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7341), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7343), }, - [STATE(2865)] = { - [sym_template_argument_list] = STATE(3042), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6205), - [anon_sym_COMMA] = ACTIONS(6205), - [anon_sym_LPAREN2] = ACTIONS(6205), - [anon_sym_DASH] = ACTIONS(6212), - [anon_sym_PLUS] = ACTIONS(6212), - [anon_sym_STAR] = ACTIONS(6212), - [anon_sym_SLASH] = ACTIONS(6212), - [anon_sym_PERCENT] = ACTIONS(6212), - [anon_sym_PIPE_PIPE] = ACTIONS(6205), - [anon_sym_AMP_AMP] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(6212), - [anon_sym_CARET] = ACTIONS(6212), - [anon_sym_AMP] = ACTIONS(6212), - [anon_sym_EQ_EQ] = ACTIONS(6205), - [anon_sym_BANG_EQ] = ACTIONS(6205), - [anon_sym_GT] = ACTIONS(6212), - [anon_sym_GT_EQ] = ACTIONS(6205), - [anon_sym_LT_EQ] = ACTIONS(6212), - [anon_sym_LT] = ACTIONS(8537), - [anon_sym_LT_LT] = ACTIONS(6212), - [anon_sym_GT_GT] = ACTIONS(6212), - [anon_sym___extension__] = ACTIONS(6208), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(6208), - [anon_sym_LBRACK] = ACTIONS(6205), - [anon_sym_RBRACK] = ACTIONS(6205), - [anon_sym_EQ] = ACTIONS(6212), - [anon_sym_const] = ACTIONS(6201), - [anon_sym_constexpr] = ACTIONS(6208), - [anon_sym_volatile] = ACTIONS(6208), - [anon_sym_restrict] = ACTIONS(6208), - [anon_sym___restrict__] = ACTIONS(6208), - [anon_sym__Atomic] = ACTIONS(6208), - [anon_sym__Noreturn] = ACTIONS(6208), - [anon_sym_noreturn] = ACTIONS(6208), - [anon_sym__Nonnull] = ACTIONS(6208), - [anon_sym_mutable] = ACTIONS(6208), - [anon_sym_constinit] = ACTIONS(6208), - [anon_sym_consteval] = ACTIONS(6208), - [anon_sym_alignas] = ACTIONS(6208), - [anon_sym__Alignas] = ACTIONS(6208), - [anon_sym_QMARK] = ACTIONS(6205), - [anon_sym_STAR_EQ] = ACTIONS(6205), - [anon_sym_SLASH_EQ] = ACTIONS(6205), - [anon_sym_PERCENT_EQ] = ACTIONS(6205), - [anon_sym_PLUS_EQ] = ACTIONS(6205), - [anon_sym_DASH_EQ] = ACTIONS(6205), - [anon_sym_LT_LT_EQ] = ACTIONS(6205), - [anon_sym_GT_GT_EQ] = ACTIONS(6205), - [anon_sym_AMP_EQ] = ACTIONS(6205), - [anon_sym_CARET_EQ] = ACTIONS(6205), - [anon_sym_PIPE_EQ] = ACTIONS(6205), - [anon_sym_and_eq] = ACTIONS(6205), - [anon_sym_or_eq] = ACTIONS(6205), - [anon_sym_xor_eq] = ACTIONS(6205), - [anon_sym_LT_EQ_GT] = ACTIONS(6205), - [anon_sym_or] = ACTIONS(6212), - [anon_sym_and] = ACTIONS(6212), - [anon_sym_bitor] = ACTIONS(6205), - [anon_sym_xor] = ACTIONS(6212), - [anon_sym_bitand] = ACTIONS(6205), - [anon_sym_not_eq] = ACTIONS(6205), - [anon_sym_DASH_DASH] = ACTIONS(6205), - [anon_sym_PLUS_PLUS] = ACTIONS(6205), - [anon_sym_DOT] = ACTIONS(6212), - [anon_sym_DOT_STAR] = ACTIONS(6205), - [anon_sym_DASH_GT] = ACTIONS(6205), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6208), - [anon_sym_decltype] = ACTIONS(6208), + [STATE(2631)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7699), + [anon_sym_COMMA] = ACTIONS(7699), + [anon_sym_RPAREN] = ACTIONS(7699), + [anon_sym_LPAREN2] = ACTIONS(7699), + [anon_sym_DASH] = ACTIONS(7697), + [anon_sym_PLUS] = ACTIONS(7697), + [anon_sym_STAR] = ACTIONS(7697), + [anon_sym_SLASH] = ACTIONS(7697), + [anon_sym_PERCENT] = ACTIONS(7697), + [anon_sym_PIPE_PIPE] = ACTIONS(7699), + [anon_sym_AMP_AMP] = ACTIONS(7699), + [anon_sym_PIPE] = ACTIONS(7697), + [anon_sym_CARET] = ACTIONS(7697), + [anon_sym_AMP] = ACTIONS(7697), + [anon_sym_EQ_EQ] = ACTIONS(7699), + [anon_sym_BANG_EQ] = ACTIONS(7699), + [anon_sym_GT] = ACTIONS(7697), + [anon_sym_GT_EQ] = ACTIONS(7699), + [anon_sym_LT_EQ] = ACTIONS(7697), + [anon_sym_LT] = ACTIONS(7697), + [anon_sym_LT_LT] = ACTIONS(7697), + [anon_sym_GT_GT] = ACTIONS(7697), + [anon_sym___extension__] = ACTIONS(7699), + [anon_sym___attribute__] = ACTIONS(7699), + [anon_sym___attribute] = ACTIONS(7697), + [anon_sym_LBRACE] = ACTIONS(7699), + [anon_sym_signed] = ACTIONS(8523), + [anon_sym_unsigned] = ACTIONS(8523), + [anon_sym_long] = ACTIONS(8523), + [anon_sym_short] = ACTIONS(8523), + [anon_sym_LBRACK] = ACTIONS(7699), + [anon_sym_EQ] = ACTIONS(7697), + [anon_sym_const] = ACTIONS(7697), + [anon_sym_constexpr] = ACTIONS(7699), + [anon_sym_volatile] = ACTIONS(7699), + [anon_sym_restrict] = ACTIONS(7699), + [anon_sym___restrict__] = ACTIONS(7699), + [anon_sym__Atomic] = ACTIONS(7699), + [anon_sym__Noreturn] = ACTIONS(7699), + [anon_sym_noreturn] = ACTIONS(7699), + [anon_sym__Nonnull] = ACTIONS(7699), + [anon_sym_mutable] = ACTIONS(7699), + [anon_sym_constinit] = ACTIONS(7699), + [anon_sym_consteval] = ACTIONS(7699), + [anon_sym_alignas] = ACTIONS(7699), + [anon_sym__Alignas] = ACTIONS(7699), + [anon_sym_QMARK] = ACTIONS(7699), + [anon_sym_STAR_EQ] = ACTIONS(7699), + [anon_sym_SLASH_EQ] = ACTIONS(7699), + [anon_sym_PERCENT_EQ] = ACTIONS(7699), + [anon_sym_PLUS_EQ] = ACTIONS(7699), + [anon_sym_DASH_EQ] = ACTIONS(7699), + [anon_sym_LT_LT_EQ] = ACTIONS(7699), + [anon_sym_GT_GT_EQ] = ACTIONS(7699), + [anon_sym_AMP_EQ] = ACTIONS(7699), + [anon_sym_CARET_EQ] = ACTIONS(7699), + [anon_sym_PIPE_EQ] = ACTIONS(7699), + [anon_sym_LT_EQ_GT] = ACTIONS(7699), + [anon_sym_or] = ACTIONS(7699), + [anon_sym_and] = ACTIONS(7699), + [anon_sym_bitor] = ACTIONS(7699), + [anon_sym_xor] = ACTIONS(7699), + [anon_sym_bitand] = ACTIONS(7699), + [anon_sym_not_eq] = ACTIONS(7699), + [anon_sym_DASH_DASH] = ACTIONS(7699), + [anon_sym_PLUS_PLUS] = ACTIONS(7699), + [anon_sym_DOT] = ACTIONS(7697), + [anon_sym_DOT_STAR] = ACTIONS(7699), + [anon_sym_DASH_GT] = ACTIONS(7697), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7699), + [anon_sym_override] = ACTIONS(7699), + [anon_sym_requires] = ACTIONS(7699), + [anon_sym_DASH_GT_STAR] = ACTIONS(7699), }, - [STATE(2866)] = { - [sym__abstract_declarator] = STATE(6056), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(2937), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(1977), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(2937), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), - [anon_sym_COMMA] = ACTIONS(6991), - [anon_sym_RPAREN] = ACTIONS(6991), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6993), - [anon_sym_PLUS] = ACTIONS(6993), - [anon_sym_STAR] = ACTIONS(7772), - [anon_sym_SLASH] = ACTIONS(6993), - [anon_sym_PERCENT] = ACTIONS(6991), - [anon_sym_PIPE_PIPE] = ACTIONS(6991), - [anon_sym_AMP_AMP] = ACTIONS(7774), - [anon_sym_PIPE] = ACTIONS(6993), - [anon_sym_CARET] = ACTIONS(6991), - [anon_sym_AMP] = ACTIONS(7776), - [anon_sym_EQ_EQ] = ACTIONS(6991), - [anon_sym_BANG_EQ] = ACTIONS(6991), - [anon_sym_GT] = ACTIONS(6993), - [anon_sym_GT_EQ] = ACTIONS(6991), - [anon_sym_LT_EQ] = ACTIONS(6993), - [anon_sym_LT] = ACTIONS(6993), - [anon_sym_LT_LT] = ACTIONS(6991), - [anon_sym_GT_GT] = ACTIONS(6991), - [anon_sym_SEMI] = ACTIONS(6991), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym_COLON] = ACTIONS(6993), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6991), - [anon_sym_RBRACE] = ACTIONS(6991), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(6991), - [anon_sym_LT_EQ_GT] = ACTIONS(6991), - [anon_sym_or] = ACTIONS(6991), - [anon_sym_and] = ACTIONS(6991), - [anon_sym_bitor] = ACTIONS(6991), - [anon_sym_xor] = ACTIONS(6991), - [anon_sym_bitand] = ACTIONS(6991), - [anon_sym_not_eq] = ACTIONS(6991), - [anon_sym_DASH_DASH] = ACTIONS(6991), - [anon_sym_PLUS_PLUS] = ACTIONS(6991), - [anon_sym_DOT] = ACTIONS(6993), - [anon_sym_DOT_STAR] = ACTIONS(6991), - [anon_sym_DASH_GT] = ACTIONS(6991), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6991), - [anon_sym_override] = ACTIONS(6991), - [anon_sym_requires] = ACTIONS(6991), - [anon_sym_COLON_RBRACK] = ACTIONS(6991), + [STATE(2632)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7703), + [anon_sym_COMMA] = ACTIONS(7703), + [anon_sym_RPAREN] = ACTIONS(7703), + [anon_sym_LPAREN2] = ACTIONS(7703), + [anon_sym_DASH] = ACTIONS(7701), + [anon_sym_PLUS] = ACTIONS(7701), + [anon_sym_STAR] = ACTIONS(7701), + [anon_sym_SLASH] = ACTIONS(7701), + [anon_sym_PERCENT] = ACTIONS(7701), + [anon_sym_PIPE_PIPE] = ACTIONS(7703), + [anon_sym_AMP_AMP] = ACTIONS(7703), + [anon_sym_PIPE] = ACTIONS(7701), + [anon_sym_CARET] = ACTIONS(7701), + [anon_sym_AMP] = ACTIONS(7701), + [anon_sym_EQ_EQ] = ACTIONS(7703), + [anon_sym_BANG_EQ] = ACTIONS(7703), + [anon_sym_GT] = ACTIONS(7701), + [anon_sym_GT_EQ] = ACTIONS(7703), + [anon_sym_LT_EQ] = ACTIONS(7701), + [anon_sym_LT] = ACTIONS(7701), + [anon_sym_LT_LT] = ACTIONS(7701), + [anon_sym_GT_GT] = ACTIONS(7701), + [anon_sym___extension__] = ACTIONS(7703), + [anon_sym___attribute__] = ACTIONS(7703), + [anon_sym___attribute] = ACTIONS(7701), + [anon_sym_LBRACE] = ACTIONS(7703), + [anon_sym_signed] = ACTIONS(8531), + [anon_sym_unsigned] = ACTIONS(8531), + [anon_sym_long] = ACTIONS(8531), + [anon_sym_short] = ACTIONS(8531), + [anon_sym_LBRACK] = ACTIONS(7703), + [anon_sym_EQ] = ACTIONS(7701), + [anon_sym_const] = ACTIONS(7701), + [anon_sym_constexpr] = ACTIONS(7703), + [anon_sym_volatile] = ACTIONS(7703), + [anon_sym_restrict] = ACTIONS(7703), + [anon_sym___restrict__] = ACTIONS(7703), + [anon_sym__Atomic] = ACTIONS(7703), + [anon_sym__Noreturn] = ACTIONS(7703), + [anon_sym_noreturn] = ACTIONS(7703), + [anon_sym__Nonnull] = ACTIONS(7703), + [anon_sym_mutable] = ACTIONS(7703), + [anon_sym_constinit] = ACTIONS(7703), + [anon_sym_consteval] = ACTIONS(7703), + [anon_sym_alignas] = ACTIONS(7703), + [anon_sym__Alignas] = ACTIONS(7703), + [anon_sym_QMARK] = ACTIONS(7703), + [anon_sym_STAR_EQ] = ACTIONS(7703), + [anon_sym_SLASH_EQ] = ACTIONS(7703), + [anon_sym_PERCENT_EQ] = ACTIONS(7703), + [anon_sym_PLUS_EQ] = ACTIONS(7703), + [anon_sym_DASH_EQ] = ACTIONS(7703), + [anon_sym_LT_LT_EQ] = ACTIONS(7703), + [anon_sym_GT_GT_EQ] = ACTIONS(7703), + [anon_sym_AMP_EQ] = ACTIONS(7703), + [anon_sym_CARET_EQ] = ACTIONS(7703), + [anon_sym_PIPE_EQ] = ACTIONS(7703), + [anon_sym_LT_EQ_GT] = ACTIONS(7703), + [anon_sym_or] = ACTIONS(7703), + [anon_sym_and] = ACTIONS(7703), + [anon_sym_bitor] = ACTIONS(7703), + [anon_sym_xor] = ACTIONS(7703), + [anon_sym_bitand] = ACTIONS(7703), + [anon_sym_not_eq] = ACTIONS(7703), + [anon_sym_DASH_DASH] = ACTIONS(7703), + [anon_sym_PLUS_PLUS] = ACTIONS(7703), + [anon_sym_DOT] = ACTIONS(7701), + [anon_sym_DOT_STAR] = ACTIONS(7703), + [anon_sym_DASH_GT] = ACTIONS(7701), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7703), + [anon_sym_override] = ACTIONS(7703), + [anon_sym_requires] = ACTIONS(7703), + [anon_sym_DASH_GT_STAR] = ACTIONS(7703), }, - [STATE(2867)] = { - [sym_virtual_specifier] = STATE(3248), - [sym__function_postfix] = STATE(3541), - [sym_requires_clause] = STATE(3541), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [sym_identifier] = ACTIONS(8541), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8543), - [anon_sym_COMMA] = ACTIONS(8543), - [anon_sym_RPAREN] = ACTIONS(8543), - [aux_sym_preproc_if_token2] = ACTIONS(8543), - [aux_sym_preproc_else_token1] = ACTIONS(8543), - [aux_sym_preproc_elif_token1] = ACTIONS(8541), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8543), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8543), - [anon_sym_LPAREN2] = ACTIONS(8543), - [anon_sym_DASH] = ACTIONS(8541), - [anon_sym_PLUS] = ACTIONS(8541), - [anon_sym_STAR] = ACTIONS(8541), - [anon_sym_SLASH] = ACTIONS(8541), - [anon_sym_PERCENT] = ACTIONS(8541), - [anon_sym_PIPE_PIPE] = ACTIONS(8543), - [anon_sym_AMP_AMP] = ACTIONS(8543), - [anon_sym_PIPE] = ACTIONS(8541), - [anon_sym_CARET] = ACTIONS(8541), - [anon_sym_AMP] = ACTIONS(8541), - [anon_sym_EQ_EQ] = ACTIONS(8543), - [anon_sym_BANG_EQ] = ACTIONS(8543), - [anon_sym_GT] = ACTIONS(8541), - [anon_sym_GT_EQ] = ACTIONS(8543), - [anon_sym_LT_EQ] = ACTIONS(8541), - [anon_sym_LT] = ACTIONS(8541), - [anon_sym_LT_LT] = ACTIONS(8541), - [anon_sym_GT_GT] = ACTIONS(8541), - [anon_sym_SEMI] = ACTIONS(8543), - [anon_sym___attribute__] = ACTIONS(8541), - [anon_sym___attribute] = ACTIONS(8541), - [anon_sym_COLON] = ACTIONS(8541), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8543), - [anon_sym_RBRACE] = ACTIONS(8543), - [anon_sym_LBRACK] = ACTIONS(8543), - [anon_sym_EQ] = ACTIONS(8541), - [anon_sym_QMARK] = ACTIONS(8543), - [anon_sym_STAR_EQ] = ACTIONS(8543), - [anon_sym_SLASH_EQ] = ACTIONS(8543), - [anon_sym_PERCENT_EQ] = ACTIONS(8543), - [anon_sym_PLUS_EQ] = ACTIONS(8543), - [anon_sym_DASH_EQ] = ACTIONS(8543), - [anon_sym_LT_LT_EQ] = ACTIONS(8543), - [anon_sym_GT_GT_EQ] = ACTIONS(8543), - [anon_sym_AMP_EQ] = ACTIONS(8543), - [anon_sym_CARET_EQ] = ACTIONS(8543), - [anon_sym_PIPE_EQ] = ACTIONS(8543), - [anon_sym_and_eq] = ACTIONS(8541), - [anon_sym_or_eq] = ACTIONS(8541), - [anon_sym_xor_eq] = ACTIONS(8541), - [anon_sym_LT_EQ_GT] = ACTIONS(8543), - [anon_sym_or] = ACTIONS(8541), - [anon_sym_and] = ACTIONS(8541), - [anon_sym_bitor] = ACTIONS(8541), - [anon_sym_xor] = ACTIONS(8541), - [anon_sym_bitand] = ACTIONS(8541), - [anon_sym_not_eq] = ACTIONS(8541), - [anon_sym_DASH_DASH] = ACTIONS(8543), - [anon_sym_PLUS_PLUS] = ACTIONS(8543), - [anon_sym_DOT] = ACTIONS(8541), - [anon_sym_DOT_STAR] = ACTIONS(8543), - [anon_sym_DASH_GT] = ACTIONS(8543), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8545), - [anon_sym_override] = ACTIONS(8545), - [anon_sym_requires] = ACTIONS(8548), - [anon_sym_COLON_RBRACK] = ACTIONS(8543), + [STATE(2633)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7291), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7291), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7291), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7291), + [anon_sym_GT_GT] = ACTIONS(7291), + [anon_sym___extension__] = ACTIONS(7293), + [anon_sym___attribute__] = ACTIONS(7293), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_COLON] = ACTIONS(7293), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_RBRACK] = ACTIONS(7293), + [anon_sym_EQ] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7293), + [anon_sym_volatile] = ACTIONS(7293), + [anon_sym_restrict] = ACTIONS(7293), + [anon_sym___restrict__] = ACTIONS(7293), + [anon_sym__Atomic] = ACTIONS(7293), + [anon_sym__Noreturn] = ACTIONS(7293), + [anon_sym_noreturn] = ACTIONS(7293), + [anon_sym__Nonnull] = ACTIONS(7293), + [anon_sym_mutable] = ACTIONS(7293), + [anon_sym_constinit] = ACTIONS(7293), + [anon_sym_consteval] = ACTIONS(7293), + [anon_sym_alignas] = ACTIONS(7293), + [anon_sym__Alignas] = ACTIONS(7293), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_STAR_EQ] = ACTIONS(7293), + [anon_sym_SLASH_EQ] = ACTIONS(7293), + [anon_sym_PERCENT_EQ] = ACTIONS(7293), + [anon_sym_PLUS_EQ] = ACTIONS(7293), + [anon_sym_DASH_EQ] = ACTIONS(7293), + [anon_sym_LT_LT_EQ] = ACTIONS(7293), + [anon_sym_GT_GT_EQ] = ACTIONS(7293), + [anon_sym_AMP_EQ] = ACTIONS(7293), + [anon_sym_CARET_EQ] = ACTIONS(7293), + [anon_sym_PIPE_EQ] = ACTIONS(7293), + [anon_sym_and_eq] = ACTIONS(7293), + [anon_sym_or_eq] = ACTIONS(7293), + [anon_sym_xor_eq] = ACTIONS(7293), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_bitor] = ACTIONS(7293), + [anon_sym_xor] = ACTIONS(7291), + [anon_sym_bitand] = ACTIONS(7293), + [anon_sym_not_eq] = ACTIONS(7293), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7293), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7293), + [anon_sym_decltype] = ACTIONS(7293), + [anon_sym_final] = ACTIONS(7293), + [anon_sym_override] = ACTIONS(7293), + [anon_sym_requires] = ACTIONS(7293), }, - [STATE(2868)] = { - [sym_decltype_auto] = STATE(2967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(7183), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6798), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8156), - [anon_sym_decltype] = ACTIONS(6574), - [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + [STATE(2634)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7709), + [anon_sym_COMMA] = ACTIONS(7709), + [anon_sym_RPAREN] = ACTIONS(7709), + [anon_sym_LPAREN2] = ACTIONS(7709), + [anon_sym_DASH] = ACTIONS(7707), + [anon_sym_PLUS] = ACTIONS(7707), + [anon_sym_STAR] = ACTIONS(7707), + [anon_sym_SLASH] = ACTIONS(7707), + [anon_sym_PERCENT] = ACTIONS(7707), + [anon_sym_PIPE_PIPE] = ACTIONS(7709), + [anon_sym_AMP_AMP] = ACTIONS(7709), + [anon_sym_PIPE] = ACTIONS(7707), + [anon_sym_CARET] = ACTIONS(7707), + [anon_sym_AMP] = ACTIONS(7707), + [anon_sym_EQ_EQ] = ACTIONS(7709), + [anon_sym_BANG_EQ] = ACTIONS(7709), + [anon_sym_GT] = ACTIONS(7707), + [anon_sym_GT_EQ] = ACTIONS(7709), + [anon_sym_LT_EQ] = ACTIONS(7707), + [anon_sym_LT] = ACTIONS(7707), + [anon_sym_LT_LT] = ACTIONS(7707), + [anon_sym_GT_GT] = ACTIONS(7707), + [anon_sym___extension__] = ACTIONS(7709), + [anon_sym___attribute__] = ACTIONS(7709), + [anon_sym___attribute] = ACTIONS(7707), + [anon_sym_LBRACE] = ACTIONS(7709), + [anon_sym_signed] = ACTIONS(8533), + [anon_sym_unsigned] = ACTIONS(8533), + [anon_sym_long] = ACTIONS(8533), + [anon_sym_short] = ACTIONS(8533), + [anon_sym_LBRACK] = ACTIONS(7709), + [anon_sym_EQ] = ACTIONS(7707), + [anon_sym_const] = ACTIONS(7707), + [anon_sym_constexpr] = ACTIONS(7709), + [anon_sym_volatile] = ACTIONS(7709), + [anon_sym_restrict] = ACTIONS(7709), + [anon_sym___restrict__] = ACTIONS(7709), + [anon_sym__Atomic] = ACTIONS(7709), + [anon_sym__Noreturn] = ACTIONS(7709), + [anon_sym_noreturn] = ACTIONS(7709), + [anon_sym__Nonnull] = ACTIONS(7709), + [anon_sym_mutable] = ACTIONS(7709), + [anon_sym_constinit] = ACTIONS(7709), + [anon_sym_consteval] = ACTIONS(7709), + [anon_sym_alignas] = ACTIONS(7709), + [anon_sym__Alignas] = ACTIONS(7709), + [anon_sym_QMARK] = ACTIONS(7709), + [anon_sym_STAR_EQ] = ACTIONS(7709), + [anon_sym_SLASH_EQ] = ACTIONS(7709), + [anon_sym_PERCENT_EQ] = ACTIONS(7709), + [anon_sym_PLUS_EQ] = ACTIONS(7709), + [anon_sym_DASH_EQ] = ACTIONS(7709), + [anon_sym_LT_LT_EQ] = ACTIONS(7709), + [anon_sym_GT_GT_EQ] = ACTIONS(7709), + [anon_sym_AMP_EQ] = ACTIONS(7709), + [anon_sym_CARET_EQ] = ACTIONS(7709), + [anon_sym_PIPE_EQ] = ACTIONS(7709), + [anon_sym_LT_EQ_GT] = ACTIONS(7709), + [anon_sym_or] = ACTIONS(7709), + [anon_sym_and] = ACTIONS(7709), + [anon_sym_bitor] = ACTIONS(7709), + [anon_sym_xor] = ACTIONS(7709), + [anon_sym_bitand] = ACTIONS(7709), + [anon_sym_not_eq] = ACTIONS(7709), + [anon_sym_DASH_DASH] = ACTIONS(7709), + [anon_sym_PLUS_PLUS] = ACTIONS(7709), + [anon_sym_DOT] = ACTIONS(7707), + [anon_sym_DOT_STAR] = ACTIONS(7709), + [anon_sym_DASH_GT] = ACTIONS(7707), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7709), + [anon_sym_override] = ACTIONS(7709), + [anon_sym_requires] = ACTIONS(7709), + [anon_sym_DASH_GT_STAR] = ACTIONS(7709), }, - [STATE(2869)] = { - [sym_argument_list] = STATE(5523), - [sym_initializer_list] = STATE(5524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(8167), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6798), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + [STATE(2635)] = { + [sym_attribute_specifier] = STATE(4381), + [sym_attribute_declaration] = STATE(4895), + [sym_gnu_asm_expression] = STATE(9115), + [sym_virtual_specifier] = STATE(5261), + [sym_ref_qualifier] = STATE(2677), + [sym__function_exception_specification] = STATE(3352), + [sym__function_attributes_end] = STATE(4579), + [sym__function_postfix] = STATE(5696), + [sym_trailing_return_type] = STATE(4642), + [sym_noexcept] = STATE(3352), + [sym_throw_specifier] = STATE(3352), + [sym_requires_clause] = STATE(5696), + [aux_sym_type_definition_repeat1] = STATE(4381), + [aux_sym_attributed_declarator_repeat1] = STATE(4895), + [aux_sym__function_postfix_repeat1] = STATE(5261), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(8508), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(8511), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6764), + [anon_sym___attribute] = ACTIONS(6766), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7791), + [anon_sym_and] = ACTIONS(7791), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7791), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8514), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6777), + [anon_sym_override] = ACTIONS(6777), + [anon_sym_noexcept] = ACTIONS(6779), + [anon_sym_throw] = ACTIONS(6781), + [anon_sym_requires] = ACTIONS(6783), + [anon_sym_DASH_GT_STAR] = ACTIONS(7791), }, - [STATE(2870)] = { - [sym_identifier] = ACTIONS(8551), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8553), - [anon_sym_COMMA] = ACTIONS(8553), - [anon_sym_RPAREN] = ACTIONS(8553), - [aux_sym_preproc_if_token2] = ACTIONS(8553), - [aux_sym_preproc_else_token1] = ACTIONS(8553), - [aux_sym_preproc_elif_token1] = ACTIONS(8551), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8553), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8553), - [anon_sym_LPAREN2] = ACTIONS(8553), - [anon_sym_DASH] = ACTIONS(8551), - [anon_sym_PLUS] = ACTIONS(8551), - [anon_sym_STAR] = ACTIONS(8551), - [anon_sym_SLASH] = ACTIONS(8551), - [anon_sym_PERCENT] = ACTIONS(8551), - [anon_sym_PIPE_PIPE] = ACTIONS(8553), - [anon_sym_AMP_AMP] = ACTIONS(8553), - [anon_sym_PIPE] = ACTIONS(8551), - [anon_sym_CARET] = ACTIONS(8551), - [anon_sym_AMP] = ACTIONS(8551), - [anon_sym_EQ_EQ] = ACTIONS(8553), - [anon_sym_BANG_EQ] = ACTIONS(8553), - [anon_sym_GT] = ACTIONS(8551), - [anon_sym_GT_EQ] = ACTIONS(8553), - [anon_sym_LT_EQ] = ACTIONS(8551), - [anon_sym_LT] = ACTIONS(8551), - [anon_sym_LT_LT] = ACTIONS(8551), - [anon_sym_GT_GT] = ACTIONS(8551), - [anon_sym_SEMI] = ACTIONS(8553), - [anon_sym___attribute__] = ACTIONS(8551), - [anon_sym___attribute] = ACTIONS(8551), - [anon_sym_COLON] = ACTIONS(8551), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8553), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8553), - [anon_sym_RBRACE] = ACTIONS(8553), - [anon_sym_LBRACK] = ACTIONS(8551), - [anon_sym_EQ] = ACTIONS(8551), - [anon_sym_QMARK] = ACTIONS(8553), - [anon_sym_STAR_EQ] = ACTIONS(8553), - [anon_sym_SLASH_EQ] = ACTIONS(8553), - [anon_sym_PERCENT_EQ] = ACTIONS(8553), - [anon_sym_PLUS_EQ] = ACTIONS(8553), - [anon_sym_DASH_EQ] = ACTIONS(8553), - [anon_sym_LT_LT_EQ] = ACTIONS(8553), - [anon_sym_GT_GT_EQ] = ACTIONS(8553), - [anon_sym_AMP_EQ] = ACTIONS(8553), - [anon_sym_CARET_EQ] = ACTIONS(8553), - [anon_sym_PIPE_EQ] = ACTIONS(8553), - [anon_sym_and_eq] = ACTIONS(8551), - [anon_sym_or_eq] = ACTIONS(8551), - [anon_sym_xor_eq] = ACTIONS(8551), - [anon_sym_LT_EQ_GT] = ACTIONS(8553), - [anon_sym_or] = ACTIONS(8551), - [anon_sym_and] = ACTIONS(8551), - [anon_sym_bitor] = ACTIONS(8551), - [anon_sym_xor] = ACTIONS(8551), - [anon_sym_bitand] = ACTIONS(8551), - [anon_sym_not_eq] = ACTIONS(8551), - [anon_sym_DASH_DASH] = ACTIONS(8553), - [anon_sym_PLUS_PLUS] = ACTIONS(8553), - [anon_sym_asm] = ACTIONS(8551), - [anon_sym___asm__] = ACTIONS(8551), - [anon_sym___asm] = ACTIONS(8551), - [anon_sym_DOT] = ACTIONS(8551), - [anon_sym_DOT_STAR] = ACTIONS(8553), - [anon_sym_DASH_GT] = ACTIONS(8553), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8551), - [anon_sym_override] = ACTIONS(8551), - [anon_sym_requires] = ACTIONS(8551), - [anon_sym_COLON_RBRACK] = ACTIONS(8553), + [STATE(2636)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), + [anon_sym_COMMA] = ACTIONS(3118), + [anon_sym_RPAREN] = ACTIONS(3118), + [anon_sym_LPAREN2] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_SLASH] = ACTIONS(3128), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_PIPE_PIPE] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_CARET] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3128), + [anon_sym_GT_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(3128), + [anon_sym_LT_LT] = ACTIONS(3128), + [anon_sym_GT_GT] = ACTIONS(3128), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_EQ] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3118), + [anon_sym_volatile] = ACTIONS(3118), + [anon_sym_restrict] = ACTIONS(3118), + [anon_sym___restrict__] = ACTIONS(3118), + [anon_sym__Atomic] = ACTIONS(3118), + [anon_sym__Noreturn] = ACTIONS(3118), + [anon_sym_noreturn] = ACTIONS(3118), + [anon_sym__Nonnull] = ACTIONS(3118), + [anon_sym_mutable] = ACTIONS(3118), + [anon_sym_constinit] = ACTIONS(3118), + [anon_sym_consteval] = ACTIONS(3118), + [anon_sym_alignas] = ACTIONS(3118), + [anon_sym__Alignas] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_STAR_EQ] = ACTIONS(3118), + [anon_sym_SLASH_EQ] = ACTIONS(3118), + [anon_sym_PERCENT_EQ] = ACTIONS(3118), + [anon_sym_PLUS_EQ] = ACTIONS(3118), + [anon_sym_DASH_EQ] = ACTIONS(3118), + [anon_sym_LT_LT_EQ] = ACTIONS(3118), + [anon_sym_GT_GT_EQ] = ACTIONS(3118), + [anon_sym_AMP_EQ] = ACTIONS(3118), + [anon_sym_CARET_EQ] = ACTIONS(3118), + [anon_sym_PIPE_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ_GT] = ACTIONS(3118), + [anon_sym_or] = ACTIONS(3118), + [anon_sym_and] = ACTIONS(3118), + [anon_sym_bitor] = ACTIONS(3118), + [anon_sym_xor] = ACTIONS(3118), + [anon_sym_bitand] = ACTIONS(3118), + [anon_sym_not_eq] = ACTIONS(3118), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_asm] = ACTIONS(3118), + [anon_sym___asm__] = ACTIONS(3118), + [anon_sym___asm] = ACTIONS(3128), + [anon_sym_DOT] = ACTIONS(3128), + [anon_sym_DOT_STAR] = ACTIONS(3118), + [anon_sym_DASH_GT] = ACTIONS(3128), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_noexcept] = ACTIONS(3118), + [anon_sym_throw] = ACTIONS(3118), + [anon_sym_requires] = ACTIONS(3118), + [anon_sym_DASH_GT_STAR] = ACTIONS(3118), }, - [STATE(2871)] = { - [sym_identifier] = ACTIONS(8555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8557), - [anon_sym_COMMA] = ACTIONS(8557), - [anon_sym_RPAREN] = ACTIONS(8557), - [aux_sym_preproc_if_token2] = ACTIONS(8557), - [aux_sym_preproc_else_token1] = ACTIONS(8557), - [aux_sym_preproc_elif_token1] = ACTIONS(8555), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8557), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8557), - [anon_sym_LPAREN2] = ACTIONS(8557), - [anon_sym_DASH] = ACTIONS(8555), - [anon_sym_PLUS] = ACTIONS(8555), - [anon_sym_STAR] = ACTIONS(8555), - [anon_sym_SLASH] = ACTIONS(8555), - [anon_sym_PERCENT] = ACTIONS(8555), - [anon_sym_PIPE_PIPE] = ACTIONS(8557), - [anon_sym_AMP_AMP] = ACTIONS(8557), - [anon_sym_PIPE] = ACTIONS(8555), - [anon_sym_CARET] = ACTIONS(8555), - [anon_sym_AMP] = ACTIONS(8555), - [anon_sym_EQ_EQ] = ACTIONS(8557), - [anon_sym_BANG_EQ] = ACTIONS(8557), - [anon_sym_GT] = ACTIONS(8555), - [anon_sym_GT_EQ] = ACTIONS(8557), - [anon_sym_LT_EQ] = ACTIONS(8555), - [anon_sym_LT] = ACTIONS(8555), - [anon_sym_LT_LT] = ACTIONS(8555), - [anon_sym_GT_GT] = ACTIONS(8555), - [anon_sym_SEMI] = ACTIONS(8557), - [anon_sym___attribute__] = ACTIONS(8555), - [anon_sym___attribute] = ACTIONS(8555), - [anon_sym_COLON] = ACTIONS(8555), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8557), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8557), - [anon_sym_RBRACE] = ACTIONS(8557), - [anon_sym_LBRACK] = ACTIONS(8555), - [anon_sym_EQ] = ACTIONS(8555), - [anon_sym_QMARK] = ACTIONS(8557), - [anon_sym_STAR_EQ] = ACTIONS(8557), - [anon_sym_SLASH_EQ] = ACTIONS(8557), - [anon_sym_PERCENT_EQ] = ACTIONS(8557), - [anon_sym_PLUS_EQ] = ACTIONS(8557), - [anon_sym_DASH_EQ] = ACTIONS(8557), - [anon_sym_LT_LT_EQ] = ACTIONS(8557), - [anon_sym_GT_GT_EQ] = ACTIONS(8557), - [anon_sym_AMP_EQ] = ACTIONS(8557), - [anon_sym_CARET_EQ] = ACTIONS(8557), - [anon_sym_PIPE_EQ] = ACTIONS(8557), - [anon_sym_and_eq] = ACTIONS(8555), - [anon_sym_or_eq] = ACTIONS(8555), - [anon_sym_xor_eq] = ACTIONS(8555), - [anon_sym_LT_EQ_GT] = ACTIONS(8557), - [anon_sym_or] = ACTIONS(8555), - [anon_sym_and] = ACTIONS(8555), - [anon_sym_bitor] = ACTIONS(8555), - [anon_sym_xor] = ACTIONS(8555), - [anon_sym_bitand] = ACTIONS(8555), - [anon_sym_not_eq] = ACTIONS(8555), - [anon_sym_DASH_DASH] = ACTIONS(8557), - [anon_sym_PLUS_PLUS] = ACTIONS(8557), - [anon_sym_asm] = ACTIONS(8555), - [anon_sym___asm__] = ACTIONS(8555), - [anon_sym___asm] = ACTIONS(8555), - [anon_sym_DOT] = ACTIONS(8555), - [anon_sym_DOT_STAR] = ACTIONS(8557), - [anon_sym_DASH_GT] = ACTIONS(8557), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8555), - [anon_sym_override] = ACTIONS(8555), - [anon_sym_requires] = ACTIONS(8555), - [anon_sym_COLON_RBRACK] = ACTIONS(8557), + [STATE(2637)] = { + [sym_template_argument_list] = STATE(2577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5657), + [anon_sym_COMMA] = ACTIONS(5657), + [anon_sym_LPAREN2] = ACTIONS(5657), + [anon_sym_DASH] = ACTIONS(7371), + [anon_sym_PLUS] = ACTIONS(7371), + [anon_sym_STAR] = ACTIONS(7371), + [anon_sym_SLASH] = ACTIONS(7371), + [anon_sym_PERCENT] = ACTIONS(7371), + [anon_sym_PIPE_PIPE] = ACTIONS(5657), + [anon_sym_AMP_AMP] = ACTIONS(5657), + [anon_sym_PIPE] = ACTIONS(7371), + [anon_sym_CARET] = ACTIONS(7371), + [anon_sym_AMP] = ACTIONS(7371), + [anon_sym_EQ_EQ] = ACTIONS(5657), + [anon_sym_BANG_EQ] = ACTIONS(5657), + [anon_sym_GT] = ACTIONS(7371), + [anon_sym_GT_EQ] = ACTIONS(5657), + [anon_sym_LT_EQ] = ACTIONS(7371), + [anon_sym_LT] = ACTIONS(8064), + [anon_sym_LT_LT] = ACTIONS(7371), + [anon_sym_GT_GT] = ACTIONS(7371), + [anon_sym___extension__] = ACTIONS(5657), + [anon_sym___attribute__] = ACTIONS(5657), + [anon_sym___attribute] = ACTIONS(7371), + [anon_sym_COLON] = ACTIONS(7371), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5657), + [anon_sym_RBRACK] = ACTIONS(5657), + [anon_sym_EQ] = ACTIONS(7371), + [anon_sym_const] = ACTIONS(7371), + [anon_sym_constexpr] = ACTIONS(5657), + [anon_sym_volatile] = ACTIONS(5657), + [anon_sym_restrict] = ACTIONS(5657), + [anon_sym___restrict__] = ACTIONS(5657), + [anon_sym__Atomic] = ACTIONS(5657), + [anon_sym__Noreturn] = ACTIONS(5657), + [anon_sym_noreturn] = ACTIONS(5657), + [anon_sym__Nonnull] = ACTIONS(5657), + [anon_sym_mutable] = ACTIONS(5657), + [anon_sym_constinit] = ACTIONS(5657), + [anon_sym_consteval] = ACTIONS(5657), + [anon_sym_alignas] = ACTIONS(5657), + [anon_sym__Alignas] = ACTIONS(5657), + [anon_sym_QMARK] = ACTIONS(5657), + [anon_sym_STAR_EQ] = ACTIONS(5657), + [anon_sym_SLASH_EQ] = ACTIONS(5657), + [anon_sym_PERCENT_EQ] = ACTIONS(5657), + [anon_sym_PLUS_EQ] = ACTIONS(5657), + [anon_sym_DASH_EQ] = ACTIONS(5657), + [anon_sym_LT_LT_EQ] = ACTIONS(5657), + [anon_sym_GT_GT_EQ] = ACTIONS(5657), + [anon_sym_AMP_EQ] = ACTIONS(5657), + [anon_sym_CARET_EQ] = ACTIONS(5657), + [anon_sym_PIPE_EQ] = ACTIONS(5657), + [anon_sym_and_eq] = ACTIONS(5657), + [anon_sym_or_eq] = ACTIONS(5657), + [anon_sym_xor_eq] = ACTIONS(5657), + [anon_sym_LT_EQ_GT] = ACTIONS(5657), + [anon_sym_or] = ACTIONS(7371), + [anon_sym_and] = ACTIONS(7371), + [anon_sym_bitor] = ACTIONS(5657), + [anon_sym_xor] = ACTIONS(7371), + [anon_sym_bitand] = ACTIONS(5657), + [anon_sym_not_eq] = ACTIONS(5657), + [anon_sym_DASH_DASH] = ACTIONS(5657), + [anon_sym_PLUS_PLUS] = ACTIONS(5657), + [anon_sym_DOT] = ACTIONS(7371), + [anon_sym_DOT_STAR] = ACTIONS(5657), + [anon_sym_DASH_GT] = ACTIONS(5657), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(5657), + [anon_sym_override] = ACTIONS(5657), + [anon_sym_requires] = ACTIONS(5657), }, - [STATE(2872)] = { - [sym_virtual_specifier] = STATE(3248), - [sym__function_postfix] = STATE(3543), - [sym_requires_clause] = STATE(3543), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [sym_identifier] = ACTIONS(8559), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8561), - [anon_sym_COMMA] = ACTIONS(8561), - [anon_sym_RPAREN] = ACTIONS(8561), - [aux_sym_preproc_if_token2] = ACTIONS(8561), - [aux_sym_preproc_else_token1] = ACTIONS(8561), - [aux_sym_preproc_elif_token1] = ACTIONS(8559), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8561), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8561), + [STATE(2638)] = { + [sym_template_argument_list] = STATE(2721), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), + [anon_sym_COMMA] = ACTIONS(7090), + [anon_sym_LPAREN2] = ACTIONS(7090), + [anon_sym_DASH] = ACTIONS(7085), + [anon_sym_PLUS] = ACTIONS(7085), + [anon_sym_STAR] = ACTIONS(7085), + [anon_sym_SLASH] = ACTIONS(7085), + [anon_sym_PERCENT] = ACTIONS(7085), + [anon_sym_PIPE_PIPE] = ACTIONS(7090), + [anon_sym_AMP_AMP] = ACTIONS(7090), + [anon_sym_PIPE] = ACTIONS(7085), + [anon_sym_CARET] = ACTIONS(7085), + [anon_sym_AMP] = ACTIONS(7085), + [anon_sym_EQ_EQ] = ACTIONS(7090), + [anon_sym_BANG_EQ] = ACTIONS(7090), + [anon_sym_GT] = ACTIONS(7085), + [anon_sym_GT_EQ] = ACTIONS(7085), + [anon_sym_LT_EQ] = ACTIONS(7085), + [anon_sym_LT] = ACTIONS(8032), + [anon_sym_LT_LT] = ACTIONS(7085), + [anon_sym_GT_GT] = ACTIONS(7085), + [anon_sym___extension__] = ACTIONS(7090), + [anon_sym___attribute__] = ACTIONS(7090), + [anon_sym___attribute] = ACTIONS(7085), + [anon_sym_COLON] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7087), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_LBRACK] = ACTIONS(7090), + [anon_sym_EQ] = ACTIONS(7085), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7090), + [anon_sym_volatile] = ACTIONS(7090), + [anon_sym_restrict] = ACTIONS(7090), + [anon_sym___restrict__] = ACTIONS(7090), + [anon_sym__Atomic] = ACTIONS(7090), + [anon_sym__Noreturn] = ACTIONS(7090), + [anon_sym_noreturn] = ACTIONS(7090), + [anon_sym__Nonnull] = ACTIONS(7090), + [anon_sym_mutable] = ACTIONS(7090), + [anon_sym_constinit] = ACTIONS(7090), + [anon_sym_consteval] = ACTIONS(7090), + [anon_sym_alignas] = ACTIONS(7090), + [anon_sym__Alignas] = ACTIONS(7090), + [anon_sym_QMARK] = ACTIONS(7090), + [anon_sym_STAR_EQ] = ACTIONS(7090), + [anon_sym_SLASH_EQ] = ACTIONS(7090), + [anon_sym_PERCENT_EQ] = ACTIONS(7090), + [anon_sym_PLUS_EQ] = ACTIONS(7090), + [anon_sym_DASH_EQ] = ACTIONS(7090), + [anon_sym_LT_LT_EQ] = ACTIONS(7090), + [anon_sym_GT_GT_EQ] = ACTIONS(7085), + [anon_sym_AMP_EQ] = ACTIONS(7090), + [anon_sym_CARET_EQ] = ACTIONS(7090), + [anon_sym_PIPE_EQ] = ACTIONS(7090), + [anon_sym_and_eq] = ACTIONS(7090), + [anon_sym_or_eq] = ACTIONS(7090), + [anon_sym_xor_eq] = ACTIONS(7090), + [anon_sym_LT_EQ_GT] = ACTIONS(7090), + [anon_sym_or] = ACTIONS(7085), + [anon_sym_and] = ACTIONS(7085), + [anon_sym_bitor] = ACTIONS(7090), + [anon_sym_xor] = ACTIONS(7085), + [anon_sym_bitand] = ACTIONS(7090), + [anon_sym_not_eq] = ACTIONS(7090), + [anon_sym_DASH_DASH] = ACTIONS(7090), + [anon_sym_PLUS_PLUS] = ACTIONS(7090), + [anon_sym_DOT] = ACTIONS(7085), + [anon_sym_DOT_STAR] = ACTIONS(7090), + [anon_sym_DASH_GT] = ACTIONS(7090), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7090), + [anon_sym_override] = ACTIONS(7090), + [anon_sym_GT2] = ACTIONS(7090), + [anon_sym_requires] = ACTIONS(7090), + }, + [STATE(2639)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7715), + [anon_sym_COMMA] = ACTIONS(7715), + [anon_sym_RPAREN] = ACTIONS(7715), + [anon_sym_LPAREN2] = ACTIONS(7715), + [anon_sym_DASH] = ACTIONS(7713), + [anon_sym_PLUS] = ACTIONS(7713), + [anon_sym_STAR] = ACTIONS(7713), + [anon_sym_SLASH] = ACTIONS(7713), + [anon_sym_PERCENT] = ACTIONS(7713), + [anon_sym_PIPE_PIPE] = ACTIONS(7715), + [anon_sym_AMP_AMP] = ACTIONS(7715), + [anon_sym_PIPE] = ACTIONS(7713), + [anon_sym_CARET] = ACTIONS(7713), + [anon_sym_AMP] = ACTIONS(7713), + [anon_sym_EQ_EQ] = ACTIONS(7715), + [anon_sym_BANG_EQ] = ACTIONS(7715), + [anon_sym_GT] = ACTIONS(7713), + [anon_sym_GT_EQ] = ACTIONS(7715), + [anon_sym_LT_EQ] = ACTIONS(7713), + [anon_sym_LT] = ACTIONS(7713), + [anon_sym_LT_LT] = ACTIONS(7713), + [anon_sym_GT_GT] = ACTIONS(7713), + [anon_sym___extension__] = ACTIONS(7715), + [anon_sym___attribute__] = ACTIONS(7715), + [anon_sym___attribute] = ACTIONS(7713), + [anon_sym_LBRACE] = ACTIONS(7715), + [anon_sym_signed] = ACTIONS(8523), + [anon_sym_unsigned] = ACTIONS(8523), + [anon_sym_long] = ACTIONS(8523), + [anon_sym_short] = ACTIONS(8523), + [anon_sym_LBRACK] = ACTIONS(7715), + [anon_sym_EQ] = ACTIONS(7713), + [anon_sym_const] = ACTIONS(7713), + [anon_sym_constexpr] = ACTIONS(7715), + [anon_sym_volatile] = ACTIONS(7715), + [anon_sym_restrict] = ACTIONS(7715), + [anon_sym___restrict__] = ACTIONS(7715), + [anon_sym__Atomic] = ACTIONS(7715), + [anon_sym__Noreturn] = ACTIONS(7715), + [anon_sym_noreturn] = ACTIONS(7715), + [anon_sym__Nonnull] = ACTIONS(7715), + [anon_sym_mutable] = ACTIONS(7715), + [anon_sym_constinit] = ACTIONS(7715), + [anon_sym_consteval] = ACTIONS(7715), + [anon_sym_alignas] = ACTIONS(7715), + [anon_sym__Alignas] = ACTIONS(7715), + [anon_sym_QMARK] = ACTIONS(7715), + [anon_sym_STAR_EQ] = ACTIONS(7715), + [anon_sym_SLASH_EQ] = ACTIONS(7715), + [anon_sym_PERCENT_EQ] = ACTIONS(7715), + [anon_sym_PLUS_EQ] = ACTIONS(7715), + [anon_sym_DASH_EQ] = ACTIONS(7715), + [anon_sym_LT_LT_EQ] = ACTIONS(7715), + [anon_sym_GT_GT_EQ] = ACTIONS(7715), + [anon_sym_AMP_EQ] = ACTIONS(7715), + [anon_sym_CARET_EQ] = ACTIONS(7715), + [anon_sym_PIPE_EQ] = ACTIONS(7715), + [anon_sym_LT_EQ_GT] = ACTIONS(7715), + [anon_sym_or] = ACTIONS(7715), + [anon_sym_and] = ACTIONS(7715), + [anon_sym_bitor] = ACTIONS(7715), + [anon_sym_xor] = ACTIONS(7715), + [anon_sym_bitand] = ACTIONS(7715), + [anon_sym_not_eq] = ACTIONS(7715), + [anon_sym_DASH_DASH] = ACTIONS(7715), + [anon_sym_PLUS_PLUS] = ACTIONS(7715), + [anon_sym_DOT] = ACTIONS(7713), + [anon_sym_DOT_STAR] = ACTIONS(7715), + [anon_sym_DASH_GT] = ACTIONS(7713), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7715), + [anon_sym_override] = ACTIONS(7715), + [anon_sym_requires] = ACTIONS(7715), + [anon_sym_DASH_GT_STAR] = ACTIONS(7715), + }, + [STATE(2640)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), + [anon_sym_COMMA] = ACTIONS(7719), + [anon_sym_RPAREN] = ACTIONS(7719), + [anon_sym_LPAREN2] = ACTIONS(7719), + [anon_sym_DASH] = ACTIONS(7717), + [anon_sym_PLUS] = ACTIONS(7717), + [anon_sym_STAR] = ACTIONS(7717), + [anon_sym_SLASH] = ACTIONS(7717), + [anon_sym_PERCENT] = ACTIONS(7717), + [anon_sym_PIPE_PIPE] = ACTIONS(7719), + [anon_sym_AMP_AMP] = ACTIONS(7719), + [anon_sym_PIPE] = ACTIONS(7717), + [anon_sym_CARET] = ACTIONS(7717), + [anon_sym_AMP] = ACTIONS(7717), + [anon_sym_EQ_EQ] = ACTIONS(7719), + [anon_sym_BANG_EQ] = ACTIONS(7719), + [anon_sym_GT] = ACTIONS(7717), + [anon_sym_GT_EQ] = ACTIONS(7719), + [anon_sym_LT_EQ] = ACTIONS(7717), + [anon_sym_LT] = ACTIONS(7717), + [anon_sym_LT_LT] = ACTIONS(7717), + [anon_sym_GT_GT] = ACTIONS(7717), + [anon_sym___extension__] = ACTIONS(7719), + [anon_sym___attribute__] = ACTIONS(7719), + [anon_sym___attribute] = ACTIONS(7717), + [anon_sym_LBRACE] = ACTIONS(7719), + [anon_sym_signed] = ACTIONS(8535), + [anon_sym_unsigned] = ACTIONS(8535), + [anon_sym_long] = ACTIONS(8535), + [anon_sym_short] = ACTIONS(8535), + [anon_sym_LBRACK] = ACTIONS(7719), + [anon_sym_EQ] = ACTIONS(7717), + [anon_sym_const] = ACTIONS(7717), + [anon_sym_constexpr] = ACTIONS(7719), + [anon_sym_volatile] = ACTIONS(7719), + [anon_sym_restrict] = ACTIONS(7719), + [anon_sym___restrict__] = ACTIONS(7719), + [anon_sym__Atomic] = ACTIONS(7719), + [anon_sym__Noreturn] = ACTIONS(7719), + [anon_sym_noreturn] = ACTIONS(7719), + [anon_sym__Nonnull] = ACTIONS(7719), + [anon_sym_mutable] = ACTIONS(7719), + [anon_sym_constinit] = ACTIONS(7719), + [anon_sym_consteval] = ACTIONS(7719), + [anon_sym_alignas] = ACTIONS(7719), + [anon_sym__Alignas] = ACTIONS(7719), + [anon_sym_QMARK] = ACTIONS(7719), + [anon_sym_STAR_EQ] = ACTIONS(7719), + [anon_sym_SLASH_EQ] = ACTIONS(7719), + [anon_sym_PERCENT_EQ] = ACTIONS(7719), + [anon_sym_PLUS_EQ] = ACTIONS(7719), + [anon_sym_DASH_EQ] = ACTIONS(7719), + [anon_sym_LT_LT_EQ] = ACTIONS(7719), + [anon_sym_GT_GT_EQ] = ACTIONS(7719), + [anon_sym_AMP_EQ] = ACTIONS(7719), + [anon_sym_CARET_EQ] = ACTIONS(7719), + [anon_sym_PIPE_EQ] = ACTIONS(7719), + [anon_sym_LT_EQ_GT] = ACTIONS(7719), + [anon_sym_or] = ACTIONS(7719), + [anon_sym_and] = ACTIONS(7719), + [anon_sym_bitor] = ACTIONS(7719), + [anon_sym_xor] = ACTIONS(7719), + [anon_sym_bitand] = ACTIONS(7719), + [anon_sym_not_eq] = ACTIONS(7719), + [anon_sym_DASH_DASH] = ACTIONS(7719), + [anon_sym_PLUS_PLUS] = ACTIONS(7719), + [anon_sym_DOT] = ACTIONS(7717), + [anon_sym_DOT_STAR] = ACTIONS(7719), + [anon_sym_DASH_GT] = ACTIONS(7717), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7719), + [anon_sym_override] = ACTIONS(7719), + [anon_sym_requires] = ACTIONS(7719), + [anon_sym_DASH_GT_STAR] = ACTIONS(7719), + }, + [STATE(2641)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), + [anon_sym_COMMA] = ACTIONS(7079), + [anon_sym_RPAREN] = ACTIONS(7079), + [anon_sym_LPAREN2] = ACTIONS(7079), + [anon_sym_DASH] = ACTIONS(7077), + [anon_sym_PLUS] = ACTIONS(7077), + [anon_sym_STAR] = ACTIONS(7077), + [anon_sym_SLASH] = ACTIONS(7077), + [anon_sym_PERCENT] = ACTIONS(7077), + [anon_sym_PIPE_PIPE] = ACTIONS(7079), + [anon_sym_AMP_AMP] = ACTIONS(7079), + [anon_sym_PIPE] = ACTIONS(7077), + [anon_sym_CARET] = ACTIONS(7077), + [anon_sym_AMP] = ACTIONS(7077), + [anon_sym_EQ_EQ] = ACTIONS(7079), + [anon_sym_BANG_EQ] = ACTIONS(7079), + [anon_sym_GT] = ACTIONS(7077), + [anon_sym_GT_EQ] = ACTIONS(7079), + [anon_sym_LT_EQ] = ACTIONS(7077), + [anon_sym_LT] = ACTIONS(7077), + [anon_sym_LT_LT] = ACTIONS(7077), + [anon_sym_GT_GT] = ACTIONS(7077), + [anon_sym___extension__] = ACTIONS(7079), + [anon_sym___attribute__] = ACTIONS(7079), + [anon_sym___attribute] = ACTIONS(7077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7079), + [anon_sym_LBRACK] = ACTIONS(7077), + [anon_sym_EQ] = ACTIONS(7077), + [anon_sym_const] = ACTIONS(7077), + [anon_sym_constexpr] = ACTIONS(7079), + [anon_sym_volatile] = ACTIONS(7079), + [anon_sym_restrict] = ACTIONS(7079), + [anon_sym___restrict__] = ACTIONS(7079), + [anon_sym__Atomic] = ACTIONS(7079), + [anon_sym__Noreturn] = ACTIONS(7079), + [anon_sym_noreturn] = ACTIONS(7079), + [anon_sym__Nonnull] = ACTIONS(7079), + [anon_sym_mutable] = ACTIONS(7079), + [anon_sym_constinit] = ACTIONS(7079), + [anon_sym_consteval] = ACTIONS(7079), + [anon_sym_alignas] = ACTIONS(7079), + [anon_sym__Alignas] = ACTIONS(7079), + [anon_sym_QMARK] = ACTIONS(7079), + [anon_sym_STAR_EQ] = ACTIONS(7079), + [anon_sym_SLASH_EQ] = ACTIONS(7079), + [anon_sym_PERCENT_EQ] = ACTIONS(7079), + [anon_sym_PLUS_EQ] = ACTIONS(7079), + [anon_sym_DASH_EQ] = ACTIONS(7079), + [anon_sym_LT_LT_EQ] = ACTIONS(7079), + [anon_sym_GT_GT_EQ] = ACTIONS(7079), + [anon_sym_AMP_EQ] = ACTIONS(7079), + [anon_sym_CARET_EQ] = ACTIONS(7079), + [anon_sym_PIPE_EQ] = ACTIONS(7079), + [anon_sym_LT_EQ_GT] = ACTIONS(7079), + [anon_sym_or] = ACTIONS(7079), + [anon_sym_and] = ACTIONS(7079), + [anon_sym_bitor] = ACTIONS(7079), + [anon_sym_xor] = ACTIONS(7079), + [anon_sym_bitand] = ACTIONS(7079), + [anon_sym_not_eq] = ACTIONS(7079), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_asm] = ACTIONS(7079), + [anon_sym___asm__] = ACTIONS(7079), + [anon_sym___asm] = ACTIONS(7077), + [anon_sym_DOT] = ACTIONS(7077), + [anon_sym_DOT_STAR] = ACTIONS(7079), + [anon_sym_DASH_GT] = ACTIONS(7077), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7079), + [anon_sym_override] = ACTIONS(7079), + [anon_sym_noexcept] = ACTIONS(7079), + [anon_sym_throw] = ACTIONS(7079), + [anon_sym_requires] = ACTIONS(7079), + [anon_sym_DASH_GT_STAR] = ACTIONS(7079), + }, + [STATE(2642)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), + [anon_sym_COMMA] = ACTIONS(7725), + [anon_sym_RPAREN] = ACTIONS(7725), + [anon_sym_LPAREN2] = ACTIONS(7725), + [anon_sym_DASH] = ACTIONS(7723), + [anon_sym_PLUS] = ACTIONS(7723), + [anon_sym_STAR] = ACTIONS(7723), + [anon_sym_SLASH] = ACTIONS(7723), + [anon_sym_PERCENT] = ACTIONS(7723), + [anon_sym_PIPE_PIPE] = ACTIONS(7725), + [anon_sym_AMP_AMP] = ACTIONS(7725), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_CARET] = ACTIONS(7723), + [anon_sym_AMP] = ACTIONS(7723), + [anon_sym_EQ_EQ] = ACTIONS(7725), + [anon_sym_BANG_EQ] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_EQ] = ACTIONS(7725), + [anon_sym_LT_EQ] = ACTIONS(7723), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_LT_LT] = ACTIONS(7723), + [anon_sym_GT_GT] = ACTIONS(7723), + [anon_sym___extension__] = ACTIONS(7725), + [anon_sym___attribute__] = ACTIONS(7725), + [anon_sym___attribute] = ACTIONS(7723), + [anon_sym_LBRACE] = ACTIONS(7725), + [anon_sym_signed] = ACTIONS(8523), + [anon_sym_unsigned] = ACTIONS(8523), + [anon_sym_long] = ACTIONS(8523), + [anon_sym_short] = ACTIONS(8523), + [anon_sym_LBRACK] = ACTIONS(7725), + [anon_sym_EQ] = ACTIONS(7723), + [anon_sym_const] = ACTIONS(7723), + [anon_sym_constexpr] = ACTIONS(7725), + [anon_sym_volatile] = ACTIONS(7725), + [anon_sym_restrict] = ACTIONS(7725), + [anon_sym___restrict__] = ACTIONS(7725), + [anon_sym__Atomic] = ACTIONS(7725), + [anon_sym__Noreturn] = ACTIONS(7725), + [anon_sym_noreturn] = ACTIONS(7725), + [anon_sym__Nonnull] = ACTIONS(7725), + [anon_sym_mutable] = ACTIONS(7725), + [anon_sym_constinit] = ACTIONS(7725), + [anon_sym_consteval] = ACTIONS(7725), + [anon_sym_alignas] = ACTIONS(7725), + [anon_sym__Alignas] = ACTIONS(7725), + [anon_sym_QMARK] = ACTIONS(7725), + [anon_sym_STAR_EQ] = ACTIONS(7725), + [anon_sym_SLASH_EQ] = ACTIONS(7725), + [anon_sym_PERCENT_EQ] = ACTIONS(7725), + [anon_sym_PLUS_EQ] = ACTIONS(7725), + [anon_sym_DASH_EQ] = ACTIONS(7725), + [anon_sym_LT_LT_EQ] = ACTIONS(7725), + [anon_sym_GT_GT_EQ] = ACTIONS(7725), + [anon_sym_AMP_EQ] = ACTIONS(7725), + [anon_sym_CARET_EQ] = ACTIONS(7725), + [anon_sym_PIPE_EQ] = ACTIONS(7725), + [anon_sym_LT_EQ_GT] = ACTIONS(7725), + [anon_sym_or] = ACTIONS(7725), + [anon_sym_and] = ACTIONS(7725), + [anon_sym_bitor] = ACTIONS(7725), + [anon_sym_xor] = ACTIONS(7725), + [anon_sym_bitand] = ACTIONS(7725), + [anon_sym_not_eq] = ACTIONS(7725), + [anon_sym_DASH_DASH] = ACTIONS(7725), + [anon_sym_PLUS_PLUS] = ACTIONS(7725), + [anon_sym_DOT] = ACTIONS(7723), + [anon_sym_DOT_STAR] = ACTIONS(7725), + [anon_sym_DASH_GT] = ACTIONS(7723), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7725), + [anon_sym_override] = ACTIONS(7725), + [anon_sym_requires] = ACTIONS(7725), + [anon_sym_DASH_GT_STAR] = ACTIONS(7725), + }, + [STATE(2643)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7729), + [anon_sym_COMMA] = ACTIONS(7729), + [anon_sym_RPAREN] = ACTIONS(7729), + [anon_sym_LPAREN2] = ACTIONS(7729), + [anon_sym_DASH] = ACTIONS(7727), + [anon_sym_PLUS] = ACTIONS(7727), + [anon_sym_STAR] = ACTIONS(7727), + [anon_sym_SLASH] = ACTIONS(7727), + [anon_sym_PERCENT] = ACTIONS(7727), + [anon_sym_PIPE_PIPE] = ACTIONS(7729), + [anon_sym_AMP_AMP] = ACTIONS(7729), + [anon_sym_PIPE] = ACTIONS(7727), + [anon_sym_CARET] = ACTIONS(7727), + [anon_sym_AMP] = ACTIONS(7727), + [anon_sym_EQ_EQ] = ACTIONS(7729), + [anon_sym_BANG_EQ] = ACTIONS(7729), + [anon_sym_GT] = ACTIONS(7727), + [anon_sym_GT_EQ] = ACTIONS(7729), + [anon_sym_LT_EQ] = ACTIONS(7727), + [anon_sym_LT] = ACTIONS(7727), + [anon_sym_LT_LT] = ACTIONS(7727), + [anon_sym_GT_GT] = ACTIONS(7727), + [anon_sym___extension__] = ACTIONS(7729), + [anon_sym___attribute__] = ACTIONS(7729), + [anon_sym___attribute] = ACTIONS(7727), + [anon_sym_LBRACE] = ACTIONS(7729), + [anon_sym_signed] = ACTIONS(8523), + [anon_sym_unsigned] = ACTIONS(8523), + [anon_sym_long] = ACTIONS(8523), + [anon_sym_short] = ACTIONS(8523), + [anon_sym_LBRACK] = ACTIONS(7729), + [anon_sym_EQ] = ACTIONS(7727), + [anon_sym_const] = ACTIONS(7727), + [anon_sym_constexpr] = ACTIONS(7729), + [anon_sym_volatile] = ACTIONS(7729), + [anon_sym_restrict] = ACTIONS(7729), + [anon_sym___restrict__] = ACTIONS(7729), + [anon_sym__Atomic] = ACTIONS(7729), + [anon_sym__Noreturn] = ACTIONS(7729), + [anon_sym_noreturn] = ACTIONS(7729), + [anon_sym__Nonnull] = ACTIONS(7729), + [anon_sym_mutable] = ACTIONS(7729), + [anon_sym_constinit] = ACTIONS(7729), + [anon_sym_consteval] = ACTIONS(7729), + [anon_sym_alignas] = ACTIONS(7729), + [anon_sym__Alignas] = ACTIONS(7729), + [anon_sym_QMARK] = ACTIONS(7729), + [anon_sym_STAR_EQ] = ACTIONS(7729), + [anon_sym_SLASH_EQ] = ACTIONS(7729), + [anon_sym_PERCENT_EQ] = ACTIONS(7729), + [anon_sym_PLUS_EQ] = ACTIONS(7729), + [anon_sym_DASH_EQ] = ACTIONS(7729), + [anon_sym_LT_LT_EQ] = ACTIONS(7729), + [anon_sym_GT_GT_EQ] = ACTIONS(7729), + [anon_sym_AMP_EQ] = ACTIONS(7729), + [anon_sym_CARET_EQ] = ACTIONS(7729), + [anon_sym_PIPE_EQ] = ACTIONS(7729), + [anon_sym_LT_EQ_GT] = ACTIONS(7729), + [anon_sym_or] = ACTIONS(7729), + [anon_sym_and] = ACTIONS(7729), + [anon_sym_bitor] = ACTIONS(7729), + [anon_sym_xor] = ACTIONS(7729), + [anon_sym_bitand] = ACTIONS(7729), + [anon_sym_not_eq] = ACTIONS(7729), + [anon_sym_DASH_DASH] = ACTIONS(7729), + [anon_sym_PLUS_PLUS] = ACTIONS(7729), + [anon_sym_DOT] = ACTIONS(7727), + [anon_sym_DOT_STAR] = ACTIONS(7729), + [anon_sym_DASH_GT] = ACTIONS(7727), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7729), + [anon_sym_override] = ACTIONS(7729), + [anon_sym_requires] = ACTIONS(7729), + [anon_sym_DASH_GT_STAR] = ACTIONS(7729), + }, + [STATE(2644)] = { + [sym__abstract_declarator] = STATE(5745), + [sym_abstract_parenthesized_declarator] = STATE(5693), + [sym_abstract_pointer_declarator] = STATE(5693), + [sym_abstract_function_declarator] = STATE(5693), + [sym_abstract_array_declarator] = STATE(5693), + [sym_type_qualifier] = STATE(2367), + [sym_alignas_qualifier] = STATE(2576), + [sym_parameter_list] = STATE(1989), + [sym_abstract_reference_declarator] = STATE(5693), + [sym__function_declarator_seq] = STATE(5694), + [aux_sym__type_definition_type_repeat1] = STATE(2367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), + [anon_sym_COMMA] = ACTIONS(7355), + [anon_sym_RPAREN] = ACTIONS(7355), + [anon_sym_LPAREN2] = ACTIONS(7305), + [anon_sym_DASH] = ACTIONS(7353), + [anon_sym_PLUS] = ACTIONS(7353), + [anon_sym_STAR] = ACTIONS(7589), + [anon_sym_SLASH] = ACTIONS(7353), + [anon_sym_PERCENT] = ACTIONS(7353), + [anon_sym_PIPE_PIPE] = ACTIONS(7355), + [anon_sym_AMP_AMP] = ACTIONS(7591), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_CARET] = ACTIONS(7353), + [anon_sym_AMP] = ACTIONS(7593), + [anon_sym_EQ_EQ] = ACTIONS(7355), + [anon_sym_BANG_EQ] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_EQ] = ACTIONS(7355), + [anon_sym_LT_EQ] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_LT_LT] = ACTIONS(7353), + [anon_sym_GT_GT] = ACTIONS(7353), + [anon_sym___extension__] = ACTIONS(7313), + [anon_sym_LBRACK] = ACTIONS(7321), + [anon_sym_EQ] = ACTIONS(7353), + [anon_sym_const] = ACTIONS(7323), + [anon_sym_constexpr] = ACTIONS(7313), + [anon_sym_volatile] = ACTIONS(7313), + [anon_sym_restrict] = ACTIONS(7313), + [anon_sym___restrict__] = ACTIONS(7313), + [anon_sym__Atomic] = ACTIONS(7313), + [anon_sym__Noreturn] = ACTIONS(7313), + [anon_sym_noreturn] = ACTIONS(7313), + [anon_sym__Nonnull] = ACTIONS(7313), + [anon_sym_mutable] = ACTIONS(7313), + [anon_sym_constinit] = ACTIONS(7313), + [anon_sym_consteval] = ACTIONS(7313), + [anon_sym_alignas] = ACTIONS(7325), + [anon_sym__Alignas] = ACTIONS(7325), + [anon_sym_QMARK] = ACTIONS(7355), + [anon_sym_STAR_EQ] = ACTIONS(7355), + [anon_sym_SLASH_EQ] = ACTIONS(7355), + [anon_sym_PERCENT_EQ] = ACTIONS(7355), + [anon_sym_PLUS_EQ] = ACTIONS(7355), + [anon_sym_DASH_EQ] = ACTIONS(7355), + [anon_sym_LT_LT_EQ] = ACTIONS(7355), + [anon_sym_GT_GT_EQ] = ACTIONS(7355), + [anon_sym_AMP_EQ] = ACTIONS(7355), + [anon_sym_CARET_EQ] = ACTIONS(7355), + [anon_sym_PIPE_EQ] = ACTIONS(7355), + [anon_sym_LT_EQ_GT] = ACTIONS(7355), + [anon_sym_or] = ACTIONS(7355), + [anon_sym_and] = ACTIONS(7355), + [anon_sym_bitor] = ACTIONS(7355), + [anon_sym_xor] = ACTIONS(7355), + [anon_sym_bitand] = ACTIONS(7355), + [anon_sym_not_eq] = ACTIONS(7355), + [anon_sym_DASH_DASH] = ACTIONS(7355), + [anon_sym_PLUS_PLUS] = ACTIONS(7355), + [anon_sym_DOT] = ACTIONS(7353), + [anon_sym_DOT_STAR] = ACTIONS(7355), + [anon_sym_DASH_GT] = ACTIONS(7353), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7355), + }, + [STATE(2645)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2931), + [sym_ms_pointer_modifier] = STATE(2645), + [aux_sym_pointer_declarator_repeat1] = STATE(2645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6944), + [anon_sym_COMMA] = ACTIONS(6944), + [anon_sym_RPAREN] = ACTIONS(6944), + [anon_sym_LPAREN2] = ACTIONS(6944), + [anon_sym_DASH] = ACTIONS(6942), + [anon_sym_PLUS] = ACTIONS(6942), + [anon_sym_STAR] = ACTIONS(6942), + [anon_sym_SLASH] = ACTIONS(6942), + [anon_sym_PERCENT] = ACTIONS(6942), + [anon_sym_PIPE_PIPE] = ACTIONS(6944), + [anon_sym_AMP_AMP] = ACTIONS(6944), + [anon_sym_PIPE] = ACTIONS(6942), + [anon_sym_CARET] = ACTIONS(6942), + [anon_sym_AMP] = ACTIONS(6942), + [anon_sym_EQ_EQ] = ACTIONS(6944), + [anon_sym_BANG_EQ] = ACTIONS(6944), + [anon_sym_GT] = ACTIONS(6942), + [anon_sym_GT_EQ] = ACTIONS(6944), + [anon_sym_LT_EQ] = ACTIONS(6942), + [anon_sym_LT] = ACTIONS(6942), + [anon_sym_LT_LT] = ACTIONS(6942), + [anon_sym_GT_GT] = ACTIONS(6942), + [anon_sym___extension__] = ACTIONS(6944), + [sym_ms_restrict_modifier] = ACTIONS(8537), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8540), + [sym_ms_signed_ptr_modifier] = ACTIONS(8540), + [anon_sym__unaligned] = ACTIONS(8543), + [anon_sym___unaligned] = ACTIONS(8543), + [anon_sym_LBRACK] = ACTIONS(6944), + [anon_sym_EQ] = ACTIONS(6942), + [anon_sym_const] = ACTIONS(6942), + [anon_sym_constexpr] = ACTIONS(6944), + [anon_sym_volatile] = ACTIONS(6944), + [anon_sym_restrict] = ACTIONS(6944), + [anon_sym___restrict__] = ACTIONS(6944), + [anon_sym__Atomic] = ACTIONS(6944), + [anon_sym__Noreturn] = ACTIONS(6944), + [anon_sym_noreturn] = ACTIONS(6944), + [anon_sym__Nonnull] = ACTIONS(6944), + [anon_sym_mutable] = ACTIONS(6944), + [anon_sym_constinit] = ACTIONS(6944), + [anon_sym_consteval] = ACTIONS(6944), + [anon_sym_alignas] = ACTIONS(6944), + [anon_sym__Alignas] = ACTIONS(6944), + [anon_sym_QMARK] = ACTIONS(6944), + [anon_sym_STAR_EQ] = ACTIONS(6944), + [anon_sym_SLASH_EQ] = ACTIONS(6944), + [anon_sym_PERCENT_EQ] = ACTIONS(6944), + [anon_sym_PLUS_EQ] = ACTIONS(6944), + [anon_sym_DASH_EQ] = ACTIONS(6944), + [anon_sym_LT_LT_EQ] = ACTIONS(6944), + [anon_sym_GT_GT_EQ] = ACTIONS(6944), + [anon_sym_AMP_EQ] = ACTIONS(6944), + [anon_sym_CARET_EQ] = ACTIONS(6944), + [anon_sym_PIPE_EQ] = ACTIONS(6944), + [anon_sym_LT_EQ_GT] = ACTIONS(6944), + [anon_sym_or] = ACTIONS(6944), + [anon_sym_and] = ACTIONS(6944), + [anon_sym_bitor] = ACTIONS(6944), + [anon_sym_xor] = ACTIONS(6944), + [anon_sym_bitand] = ACTIONS(6944), + [anon_sym_not_eq] = ACTIONS(6944), + [anon_sym_DASH_DASH] = ACTIONS(6944), + [anon_sym_PLUS_PLUS] = ACTIONS(6944), + [anon_sym_DOT] = ACTIONS(6942), + [anon_sym_DOT_STAR] = ACTIONS(6944), + [anon_sym_DASH_GT] = ACTIONS(6942), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6944), + [anon_sym_override] = ACTIONS(6944), + [anon_sym_requires] = ACTIONS(6944), + [anon_sym_DASH_GT_STAR] = ACTIONS(6944), + }, + [STATE(2646)] = { + [sym_ms_based_modifier] = STATE(10837), + [sym_ms_unaligned_ptr_modifier] = STATE(6574), + [sym_ms_pointer_modifier] = STATE(2647), + [sym__declarator] = STATE(8823), + [sym__abstract_declarator] = STATE(8953), + [sym_parenthesized_declarator] = STATE(8555), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_function_declarator] = STATE(8555), + [sym_abstract_function_declarator] = STATE(8596), + [sym_array_declarator] = STATE(8555), + [sym_abstract_array_declarator] = STATE(8596), + [sym_type_qualifier] = STATE(3685), + [sym_alignas_qualifier] = STATE(7511), + [sym_parameter_list] = STATE(4779), + [sym_decltype] = STATE(10768), + [sym_reference_declarator] = STATE(8555), + [sym_abstract_reference_declarator] = STATE(8596), + [sym_structured_binding_declarator] = STATE(8555), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7990), + [sym_qualified_identifier] = STATE(8555), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__type_definition_type_repeat1] = STATE(3685), + [aux_sym_pointer_declarator_repeat1] = STATE(2647), + [sym_identifier] = ACTIONS(8546), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_RPAREN] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(8548), + [anon_sym_AMP_AMP] = ACTIONS(8550), + [anon_sym_AMP] = ACTIONS(8552), + [anon_sym___extension__] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(6861), + [anon_sym___attribute] = ACTIONS(6861), + [anon_sym_COLON_COLON] = ACTIONS(8554), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3266), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3266), + [sym_ms_signed_ptr_modifier] = ACTIONS(3266), + [anon_sym__unaligned] = ACTIONS(3268), + [anon_sym___unaligned] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(5627), + [anon_sym_EQ] = ACTIONS(6859), + [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__Nonnull] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_GT2] = ACTIONS(6859), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), + }, + [STATE(2647)] = { + [sym_ms_based_modifier] = STATE(10837), + [sym_ms_unaligned_ptr_modifier] = STATE(6574), + [sym_ms_pointer_modifier] = STATE(6427), + [sym__declarator] = STATE(8808), + [sym__abstract_declarator] = STATE(8954), + [sym_parenthesized_declarator] = STATE(8555), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_function_declarator] = STATE(8555), + [sym_abstract_function_declarator] = STATE(8596), + [sym_array_declarator] = STATE(8555), + [sym_abstract_array_declarator] = STATE(8596), + [sym_type_qualifier] = STATE(3686), + [sym_alignas_qualifier] = STATE(7511), + [sym_parameter_list] = STATE(4779), + [sym_decltype] = STATE(10768), + [sym_reference_declarator] = STATE(8555), + [sym_abstract_reference_declarator] = STATE(8596), + [sym_structured_binding_declarator] = STATE(8555), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7990), + [sym_qualified_identifier] = STATE(8555), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__type_definition_type_repeat1] = STATE(3686), + [aux_sym_pointer_declarator_repeat1] = STATE(6427), + [sym_identifier] = ACTIONS(8546), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(8548), + [anon_sym_AMP_AMP] = ACTIONS(8550), + [anon_sym_AMP] = ACTIONS(8552), + [anon_sym___extension__] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(6821), + [anon_sym___attribute] = ACTIONS(6821), + [anon_sym_COLON_COLON] = ACTIONS(8554), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3266), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3266), + [sym_ms_signed_ptr_modifier] = ACTIONS(3266), + [anon_sym__unaligned] = ACTIONS(3268), + [anon_sym___unaligned] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(5627), + [anon_sym_EQ] = ACTIONS(6823), + [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__Nonnull] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_GT2] = ACTIONS(6823), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), + }, + [STATE(2648)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6601), + [anon_sym_COMMA] = ACTIONS(6601), + [anon_sym_RPAREN] = ACTIONS(6601), + [anon_sym_LPAREN2] = ACTIONS(6601), + [anon_sym_DASH] = ACTIONS(6594), + [anon_sym_PLUS] = ACTIONS(6594), + [anon_sym_STAR] = ACTIONS(6594), + [anon_sym_SLASH] = ACTIONS(6594), + [anon_sym_PERCENT] = ACTIONS(6594), + [anon_sym_PIPE_PIPE] = ACTIONS(6601), + [anon_sym_AMP_AMP] = ACTIONS(6601), + [anon_sym_PIPE] = ACTIONS(6594), + [anon_sym_CARET] = ACTIONS(6594), + [anon_sym_AMP] = ACTIONS(6594), + [anon_sym_EQ_EQ] = ACTIONS(6601), + [anon_sym_BANG_EQ] = ACTIONS(6601), + [anon_sym_GT] = ACTIONS(6594), + [anon_sym_GT_EQ] = ACTIONS(6601), + [anon_sym_LT_EQ] = ACTIONS(6594), + [anon_sym_LT] = ACTIONS(6594), + [anon_sym_LT_LT] = ACTIONS(6594), + [anon_sym_GT_GT] = ACTIONS(6594), + [anon_sym_SEMI] = ACTIONS(6601), + [anon_sym___extension__] = ACTIONS(6601), + [anon_sym___attribute__] = ACTIONS(6601), + [anon_sym___attribute] = ACTIONS(6594), + [anon_sym_COLON] = ACTIONS(6594), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_LBRACK] = ACTIONS(6601), + [anon_sym_EQ] = ACTIONS(6594), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6601), + [anon_sym_volatile] = ACTIONS(6601), + [anon_sym_restrict] = ACTIONS(6601), + [anon_sym___restrict__] = ACTIONS(6601), + [anon_sym__Atomic] = ACTIONS(6601), + [anon_sym__Noreturn] = ACTIONS(6601), + [anon_sym_noreturn] = ACTIONS(6601), + [anon_sym__Nonnull] = ACTIONS(6601), + [anon_sym_mutable] = ACTIONS(6601), + [anon_sym_constinit] = ACTIONS(6601), + [anon_sym_consteval] = ACTIONS(6601), + [anon_sym_alignas] = ACTIONS(6601), + [anon_sym__Alignas] = ACTIONS(6601), + [anon_sym_QMARK] = ACTIONS(6601), + [anon_sym_STAR_EQ] = ACTIONS(6601), + [anon_sym_SLASH_EQ] = ACTIONS(6601), + [anon_sym_PERCENT_EQ] = ACTIONS(6601), + [anon_sym_PLUS_EQ] = ACTIONS(6601), + [anon_sym_DASH_EQ] = ACTIONS(6601), + [anon_sym_LT_LT_EQ] = ACTIONS(6601), + [anon_sym_GT_GT_EQ] = ACTIONS(6601), + [anon_sym_AMP_EQ] = ACTIONS(6601), + [anon_sym_CARET_EQ] = ACTIONS(6601), + [anon_sym_PIPE_EQ] = ACTIONS(6601), + [anon_sym_LT_EQ_GT] = ACTIONS(6601), + [anon_sym_or] = ACTIONS(6601), + [anon_sym_and] = ACTIONS(6601), + [anon_sym_bitor] = ACTIONS(6601), + [anon_sym_xor] = ACTIONS(6601), + [anon_sym_bitand] = ACTIONS(6601), + [anon_sym_not_eq] = ACTIONS(6601), + [anon_sym_DASH_DASH] = ACTIONS(6601), + [anon_sym_PLUS_PLUS] = ACTIONS(6601), + [anon_sym_DOT] = ACTIONS(6594), + [anon_sym_DOT_STAR] = ACTIONS(6601), + [anon_sym_DASH_GT] = ACTIONS(6594), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6601), + [anon_sym_decltype] = ACTIONS(6601), + [anon_sym_final] = ACTIONS(6601), + [anon_sym_override] = ACTIONS(6601), + [anon_sym_requires] = ACTIONS(6601), + [anon_sym_DASH_GT_STAR] = ACTIONS(6601), + }, + [STATE(2649)] = { + [sym_template_argument_list] = STATE(2648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6572), + [anon_sym_COMMA] = ACTIONS(6572), + [anon_sym_RPAREN] = ACTIONS(6572), + [anon_sym_LPAREN2] = ACTIONS(6572), + [anon_sym_DASH] = ACTIONS(6565), + [anon_sym_PLUS] = ACTIONS(6565), + [anon_sym_STAR] = ACTIONS(6565), + [anon_sym_SLASH] = ACTIONS(6565), + [anon_sym_PERCENT] = ACTIONS(6565), + [anon_sym_PIPE_PIPE] = ACTIONS(6572), + [anon_sym_AMP_AMP] = ACTIONS(6572), + [anon_sym_PIPE] = ACTIONS(6565), + [anon_sym_CARET] = ACTIONS(6565), + [anon_sym_AMP] = ACTIONS(6565), + [anon_sym_EQ_EQ] = ACTIONS(6572), + [anon_sym_BANG_EQ] = ACTIONS(6572), + [anon_sym_GT] = ACTIONS(6565), + [anon_sym_GT_EQ] = ACTIONS(6572), + [anon_sym_LT_EQ] = ACTIONS(6565), + [anon_sym_LT] = ACTIONS(8556), + [anon_sym_LT_LT] = ACTIONS(6565), + [anon_sym_GT_GT] = ACTIONS(6565), + [anon_sym___extension__] = ACTIONS(6572), + [anon_sym___attribute__] = ACTIONS(6572), + [anon_sym___attribute] = ACTIONS(6565), + [anon_sym_COLON] = ACTIONS(6565), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(6572), + [anon_sym_LBRACK] = ACTIONS(6572), + [anon_sym_EQ] = ACTIONS(6565), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_constexpr] = ACTIONS(6572), + [anon_sym_volatile] = ACTIONS(6572), + [anon_sym_restrict] = ACTIONS(6572), + [anon_sym___restrict__] = ACTIONS(6572), + [anon_sym__Atomic] = ACTIONS(6572), + [anon_sym__Noreturn] = ACTIONS(6572), + [anon_sym_noreturn] = ACTIONS(6572), + [anon_sym__Nonnull] = ACTIONS(6572), + [anon_sym_mutable] = ACTIONS(6572), + [anon_sym_constinit] = ACTIONS(6572), + [anon_sym_consteval] = ACTIONS(6572), + [anon_sym_alignas] = ACTIONS(6572), + [anon_sym__Alignas] = ACTIONS(6572), + [anon_sym_QMARK] = ACTIONS(6572), + [anon_sym_STAR_EQ] = ACTIONS(6572), + [anon_sym_SLASH_EQ] = ACTIONS(6572), + [anon_sym_PERCENT_EQ] = ACTIONS(6572), + [anon_sym_PLUS_EQ] = ACTIONS(6572), + [anon_sym_DASH_EQ] = ACTIONS(6572), + [anon_sym_LT_LT_EQ] = ACTIONS(6572), + [anon_sym_GT_GT_EQ] = ACTIONS(6572), + [anon_sym_AMP_EQ] = ACTIONS(6572), + [anon_sym_CARET_EQ] = ACTIONS(6572), + [anon_sym_PIPE_EQ] = ACTIONS(6572), + [anon_sym_LT_EQ_GT] = ACTIONS(6572), + [anon_sym_or] = ACTIONS(6572), + [anon_sym_and] = ACTIONS(6572), + [anon_sym_bitor] = ACTIONS(6572), + [anon_sym_xor] = ACTIONS(6572), + [anon_sym_bitand] = ACTIONS(6572), + [anon_sym_not_eq] = ACTIONS(6572), + [anon_sym_DASH_DASH] = ACTIONS(6572), + [anon_sym_PLUS_PLUS] = ACTIONS(6572), + [anon_sym_DOT] = ACTIONS(6565), + [anon_sym_DOT_STAR] = ACTIONS(6572), + [anon_sym_DASH_GT] = ACTIONS(6565), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6572), + [anon_sym_decltype] = ACTIONS(6572), + [anon_sym_final] = ACTIONS(6572), + [anon_sym_override] = ACTIONS(6572), + [anon_sym_requires] = ACTIONS(6572), + [anon_sym_DASH_GT_STAR] = ACTIONS(6572), + }, + [STATE(2650)] = { + [sym_identifier] = ACTIONS(7085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8559), + [anon_sym_COMMA] = ACTIONS(8559), [anon_sym_LPAREN2] = ACTIONS(8561), - [anon_sym_DASH] = ACTIONS(8559), - [anon_sym_PLUS] = ACTIONS(8559), - [anon_sym_STAR] = ACTIONS(8559), - [anon_sym_SLASH] = ACTIONS(8559), + [anon_sym_TILDE] = ACTIONS(7090), + [anon_sym_DASH] = ACTIONS(8564), + [anon_sym_PLUS] = ACTIONS(8564), + [anon_sym_STAR] = ACTIONS(8561), + [anon_sym_SLASH] = ACTIONS(8564), [anon_sym_PERCENT] = ACTIONS(8559), - [anon_sym_PIPE_PIPE] = ACTIONS(8561), + [anon_sym_PIPE_PIPE] = ACTIONS(8559), [anon_sym_AMP_AMP] = ACTIONS(8561), - [anon_sym_PIPE] = ACTIONS(8559), + [anon_sym_PIPE] = ACTIONS(8564), [anon_sym_CARET] = ACTIONS(8559), - [anon_sym_AMP] = ACTIONS(8559), - [anon_sym_EQ_EQ] = ACTIONS(8561), - [anon_sym_BANG_EQ] = ACTIONS(8561), - [anon_sym_GT] = ACTIONS(8559), - [anon_sym_GT_EQ] = ACTIONS(8561), - [anon_sym_LT_EQ] = ACTIONS(8559), - [anon_sym_LT] = ACTIONS(8559), + [anon_sym_AMP] = ACTIONS(8566), + [anon_sym_EQ_EQ] = ACTIONS(8559), + [anon_sym_BANG_EQ] = ACTIONS(8559), + [anon_sym_GT] = ACTIONS(8564), + [anon_sym_GT_EQ] = ACTIONS(8559), + [anon_sym_LT_EQ] = ACTIONS(8564), + [anon_sym_LT] = ACTIONS(8564), [anon_sym_LT_LT] = ACTIONS(8559), [anon_sym_GT_GT] = ACTIONS(8559), - [anon_sym_SEMI] = ACTIONS(8561), - [anon_sym___attribute__] = ACTIONS(8559), - [anon_sym___attribute] = ACTIONS(8559), - [anon_sym_COLON] = ACTIONS(8559), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8561), - [anon_sym_RBRACE] = ACTIONS(8561), - [anon_sym_LBRACK] = ACTIONS(8561), - [anon_sym_EQ] = ACTIONS(8559), - [anon_sym_QMARK] = ACTIONS(8561), - [anon_sym_STAR_EQ] = ACTIONS(8561), - [anon_sym_SLASH_EQ] = ACTIONS(8561), - [anon_sym_PERCENT_EQ] = ACTIONS(8561), - [anon_sym_PLUS_EQ] = ACTIONS(8561), - [anon_sym_DASH_EQ] = ACTIONS(8561), - [anon_sym_LT_LT_EQ] = ACTIONS(8561), - [anon_sym_GT_GT_EQ] = ACTIONS(8561), - [anon_sym_AMP_EQ] = ACTIONS(8561), - [anon_sym_CARET_EQ] = ACTIONS(8561), - [anon_sym_PIPE_EQ] = ACTIONS(8561), - [anon_sym_and_eq] = ACTIONS(8559), - [anon_sym_or_eq] = ACTIONS(8559), - [anon_sym_xor_eq] = ACTIONS(8559), - [anon_sym_LT_EQ_GT] = ACTIONS(8561), - [anon_sym_or] = ACTIONS(8559), - [anon_sym_and] = ACTIONS(8559), - [anon_sym_bitor] = ACTIONS(8559), - [anon_sym_xor] = ACTIONS(8559), - [anon_sym_bitand] = ACTIONS(8559), - [anon_sym_not_eq] = ACTIONS(8559), - [anon_sym_DASH_DASH] = ACTIONS(8561), - [anon_sym_PLUS_PLUS] = ACTIONS(8561), - [anon_sym_DOT] = ACTIONS(8559), - [anon_sym_DOT_STAR] = ACTIONS(8561), - [anon_sym_DASH_GT] = ACTIONS(8561), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8563), - [anon_sym_override] = ACTIONS(8563), - [anon_sym_requires] = ACTIONS(8566), - [anon_sym_COLON_RBRACK] = ACTIONS(8561), - }, - [STATE(2873)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7353), - [anon_sym_COMMA] = ACTIONS(7353), - [anon_sym_RPAREN] = ACTIONS(7353), - [anon_sym_LPAREN2] = ACTIONS(7353), - [anon_sym_DASH] = ACTIONS(7351), - [anon_sym_PLUS] = ACTIONS(7351), - [anon_sym_STAR] = ACTIONS(7351), - [anon_sym_SLASH] = ACTIONS(7351), - [anon_sym_PERCENT] = ACTIONS(7351), - [anon_sym_PIPE_PIPE] = ACTIONS(7353), - [anon_sym_AMP_AMP] = ACTIONS(7353), - [anon_sym_PIPE] = ACTIONS(7351), - [anon_sym_CARET] = ACTIONS(7351), - [anon_sym_AMP] = ACTIONS(7351), - [anon_sym_EQ_EQ] = ACTIONS(7353), - [anon_sym_BANG_EQ] = ACTIONS(7353), - [anon_sym_GT] = ACTIONS(7351), - [anon_sym_GT_EQ] = ACTIONS(7353), - [anon_sym_LT_EQ] = ACTIONS(7351), - [anon_sym_LT] = ACTIONS(7351), - [anon_sym_LT_LT] = ACTIONS(7351), - [anon_sym_GT_GT] = ACTIONS(7351), - [anon_sym___extension__] = ACTIONS(7353), - [anon_sym_LBRACE] = ACTIONS(7353), - [anon_sym_LBRACK] = ACTIONS(7353), - [anon_sym_EQ] = ACTIONS(7351), - [anon_sym_const] = ACTIONS(7351), - [anon_sym_constexpr] = ACTIONS(7353), - [anon_sym_volatile] = ACTIONS(7353), - [anon_sym_restrict] = ACTIONS(7353), - [anon_sym___restrict__] = ACTIONS(7353), - [anon_sym__Atomic] = ACTIONS(7353), - [anon_sym__Noreturn] = ACTIONS(7353), - [anon_sym_noreturn] = ACTIONS(7353), - [anon_sym__Nonnull] = ACTIONS(7353), - [anon_sym_mutable] = ACTIONS(7353), - [anon_sym_constinit] = ACTIONS(7353), - [anon_sym_consteval] = ACTIONS(7353), - [anon_sym_alignas] = ACTIONS(7353), - [anon_sym__Alignas] = ACTIONS(7353), - [anon_sym_QMARK] = ACTIONS(7353), - [anon_sym_STAR_EQ] = ACTIONS(7353), - [anon_sym_SLASH_EQ] = ACTIONS(7353), - [anon_sym_PERCENT_EQ] = ACTIONS(7353), - [anon_sym_PLUS_EQ] = ACTIONS(7353), - [anon_sym_DASH_EQ] = ACTIONS(7353), - [anon_sym_LT_LT_EQ] = ACTIONS(7353), - [anon_sym_GT_GT_EQ] = ACTIONS(7353), - [anon_sym_AMP_EQ] = ACTIONS(7353), - [anon_sym_CARET_EQ] = ACTIONS(7353), - [anon_sym_PIPE_EQ] = ACTIONS(7353), - [anon_sym_and_eq] = ACTIONS(7353), - [anon_sym_or_eq] = ACTIONS(7353), - [anon_sym_xor_eq] = ACTIONS(7353), - [anon_sym_LT_EQ_GT] = ACTIONS(7353), - [anon_sym_or] = ACTIONS(7351), - [anon_sym_and] = ACTIONS(7351), - [anon_sym_bitor] = ACTIONS(7353), - [anon_sym_xor] = ACTIONS(7351), - [anon_sym_bitand] = ACTIONS(7353), - [anon_sym_not_eq] = ACTIONS(7353), - [anon_sym_DASH_DASH] = ACTIONS(7353), - [anon_sym_PLUS_PLUS] = ACTIONS(7353), - [anon_sym_DOT] = ACTIONS(7351), - [anon_sym_DOT_STAR] = ACTIONS(7353), - [anon_sym_DASH_GT] = ACTIONS(7351), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7353), - [anon_sym_override] = ACTIONS(7353), - [anon_sym_requires] = ACTIONS(7353), - [anon_sym_DASH_GT_STAR] = ACTIONS(7353), - }, - [STATE(2874)] = { - [sym_identifier] = ACTIONS(7185), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7183), - [anon_sym_COMMA] = ACTIONS(7183), - [anon_sym_RPAREN] = ACTIONS(7183), - [anon_sym_LPAREN2] = ACTIONS(7183), - [anon_sym_DASH] = ACTIONS(7185), - [anon_sym_PLUS] = ACTIONS(7185), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_SLASH] = ACTIONS(7185), - [anon_sym_PERCENT] = ACTIONS(7183), - [anon_sym_PIPE_PIPE] = ACTIONS(7183), - [anon_sym_AMP_AMP] = ACTIONS(7183), - [anon_sym_PIPE] = ACTIONS(7185), - [anon_sym_CARET] = ACTIONS(7183), - [anon_sym_AMP] = ACTIONS(7185), - [anon_sym_EQ_EQ] = ACTIONS(7183), - [anon_sym_BANG_EQ] = ACTIONS(7183), - [anon_sym_GT] = ACTIONS(7185), - [anon_sym_GT_EQ] = ACTIONS(7183), - [anon_sym_LT_EQ] = ACTIONS(7185), - [anon_sym_LT] = ACTIONS(7185), - [anon_sym_LT_LT] = ACTIONS(7183), - [anon_sym_GT_GT] = ACTIONS(7183), - [anon_sym_SEMI] = ACTIONS(7183), - [anon_sym___extension__] = ACTIONS(7185), - [anon_sym___attribute__] = ACTIONS(7185), - [anon_sym___attribute] = ACTIONS(7185), - [anon_sym_COLON] = ACTIONS(7185), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7183), - [anon_sym___based] = ACTIONS(7185), - [anon_sym_LBRACE] = ACTIONS(7183), - [anon_sym_RBRACE] = ACTIONS(7183), - [anon_sym_signed] = ACTIONS(7185), - [anon_sym_unsigned] = ACTIONS(7185), - [anon_sym_long] = ACTIONS(7185), - [anon_sym_short] = ACTIONS(7185), - [anon_sym_LBRACK] = ACTIONS(7183), - [anon_sym_const] = ACTIONS(7185), - [anon_sym_constexpr] = ACTIONS(7185), - [anon_sym_volatile] = ACTIONS(7185), - [anon_sym_restrict] = ACTIONS(7185), - [anon_sym___restrict__] = ACTIONS(7185), - [anon_sym__Atomic] = ACTIONS(7185), - [anon_sym__Noreturn] = ACTIONS(7185), - [anon_sym_noreturn] = ACTIONS(7185), - [anon_sym__Nonnull] = ACTIONS(7185), - [anon_sym_mutable] = ACTIONS(7185), - [anon_sym_constinit] = ACTIONS(7185), - [anon_sym_consteval] = ACTIONS(7185), - [anon_sym_alignas] = ACTIONS(7185), - [anon_sym__Alignas] = ACTIONS(7185), - [sym_primitive_type] = ACTIONS(7185), - [anon_sym_QMARK] = ACTIONS(7183), - [anon_sym_LT_EQ_GT] = ACTIONS(7183), - [anon_sym_or] = ACTIONS(7185), - [anon_sym_and] = ACTIONS(7185), - [anon_sym_bitor] = ACTIONS(7185), - [anon_sym_xor] = ACTIONS(7185), - [anon_sym_bitand] = ACTIONS(7185), - [anon_sym_not_eq] = ACTIONS(7185), - [anon_sym_DASH_DASH] = ACTIONS(7183), - [anon_sym_PLUS_PLUS] = ACTIONS(7183), - [anon_sym_DOT] = ACTIONS(7185), - [anon_sym_DOT_STAR] = ACTIONS(7183), - [anon_sym_DASH_GT] = ACTIONS(7183), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7185), - [anon_sym_override] = ACTIONS(7185), - [anon_sym_requires] = ACTIONS(7185), - [anon_sym_COLON_RBRACK] = ACTIONS(7183), + [anon_sym_SEMI] = ACTIONS(8559), + [anon_sym___extension__] = ACTIONS(7085), + [anon_sym_virtual] = ACTIONS(7085), + [anon_sym_extern] = ACTIONS(7085), + [anon_sym___attribute__] = ACTIONS(7085), + [anon_sym___attribute] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(8561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7090), + [anon_sym___declspec] = ACTIONS(7085), + [anon_sym___based] = ACTIONS(7085), + [anon_sym_RBRACE] = ACTIONS(8559), + [anon_sym_LBRACK] = ACTIONS(8566), + [anon_sym_static] = ACTIONS(7085), + [anon_sym_register] = ACTIONS(7085), + [anon_sym_inline] = ACTIONS(7085), + [anon_sym___inline] = ACTIONS(7085), + [anon_sym___inline__] = ACTIONS(7085), + [anon_sym___forceinline] = ACTIONS(7085), + [anon_sym_thread_local] = ACTIONS(7085), + [anon_sym___thread] = ACTIONS(7085), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7085), + [anon_sym_volatile] = ACTIONS(7085), + [anon_sym_restrict] = ACTIONS(7085), + [anon_sym___restrict__] = ACTIONS(7085), + [anon_sym__Atomic] = ACTIONS(7085), + [anon_sym__Noreturn] = ACTIONS(7085), + [anon_sym_noreturn] = ACTIONS(7085), + [anon_sym__Nonnull] = ACTIONS(7085), + [anon_sym_mutable] = ACTIONS(7085), + [anon_sym_constinit] = ACTIONS(7085), + [anon_sym_consteval] = ACTIONS(7085), + [anon_sym_alignas] = ACTIONS(7085), + [anon_sym__Alignas] = ACTIONS(7085), + [anon_sym_QMARK] = ACTIONS(8559), + [anon_sym_LT_EQ_GT] = ACTIONS(8559), + [anon_sym_or] = ACTIONS(8564), + [anon_sym_and] = ACTIONS(8564), + [anon_sym_bitor] = ACTIONS(8564), + [anon_sym_xor] = ACTIONS(8564), + [anon_sym_bitand] = ACTIONS(8564), + [anon_sym_not_eq] = ACTIONS(8564), + [anon_sym_DASH_DASH] = ACTIONS(8559), + [anon_sym_PLUS_PLUS] = ACTIONS(8559), + [anon_sym_DOT] = ACTIONS(8564), + [anon_sym_DOT_STAR] = ACTIONS(8559), + [anon_sym_DASH_GT] = ACTIONS(8559), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7085), + [anon_sym_template] = ACTIONS(7085), + [anon_sym_operator] = ACTIONS(7085), + [anon_sym_LBRACK_COLON] = ACTIONS(7090), }, - [STATE(2875)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7357), - [anon_sym_COMMA] = ACTIONS(7357), - [anon_sym_RPAREN] = ACTIONS(7357), - [anon_sym_LPAREN2] = ACTIONS(7357), - [anon_sym_DASH] = ACTIONS(7355), - [anon_sym_PLUS] = ACTIONS(7355), - [anon_sym_STAR] = ACTIONS(7355), - [anon_sym_SLASH] = ACTIONS(7355), - [anon_sym_PERCENT] = ACTIONS(7355), - [anon_sym_PIPE_PIPE] = ACTIONS(7357), - [anon_sym_AMP_AMP] = ACTIONS(7357), - [anon_sym_PIPE] = ACTIONS(7355), - [anon_sym_CARET] = ACTIONS(7355), - [anon_sym_AMP] = ACTIONS(7355), - [anon_sym_EQ_EQ] = ACTIONS(7357), - [anon_sym_BANG_EQ] = ACTIONS(7357), - [anon_sym_GT] = ACTIONS(7355), - [anon_sym_GT_EQ] = ACTIONS(7357), - [anon_sym_LT_EQ] = ACTIONS(7355), - [anon_sym_LT] = ACTIONS(7355), - [anon_sym_LT_LT] = ACTIONS(7355), - [anon_sym_GT_GT] = ACTIONS(7355), - [anon_sym___extension__] = ACTIONS(7357), - [anon_sym_LBRACE] = ACTIONS(7357), - [anon_sym_LBRACK] = ACTIONS(7357), - [anon_sym_EQ] = ACTIONS(7355), - [anon_sym_const] = ACTIONS(7355), - [anon_sym_constexpr] = ACTIONS(7357), - [anon_sym_volatile] = ACTIONS(7357), - [anon_sym_restrict] = ACTIONS(7357), - [anon_sym___restrict__] = ACTIONS(7357), - [anon_sym__Atomic] = ACTIONS(7357), - [anon_sym__Noreturn] = ACTIONS(7357), - [anon_sym_noreturn] = ACTIONS(7357), - [anon_sym__Nonnull] = ACTIONS(7357), - [anon_sym_mutable] = ACTIONS(7357), - [anon_sym_constinit] = ACTIONS(7357), - [anon_sym_consteval] = ACTIONS(7357), - [anon_sym_alignas] = ACTIONS(7357), - [anon_sym__Alignas] = ACTIONS(7357), - [anon_sym_QMARK] = ACTIONS(7357), - [anon_sym_STAR_EQ] = ACTIONS(7357), - [anon_sym_SLASH_EQ] = ACTIONS(7357), - [anon_sym_PERCENT_EQ] = ACTIONS(7357), - [anon_sym_PLUS_EQ] = ACTIONS(7357), - [anon_sym_DASH_EQ] = ACTIONS(7357), - [anon_sym_LT_LT_EQ] = ACTIONS(7357), - [anon_sym_GT_GT_EQ] = ACTIONS(7357), - [anon_sym_AMP_EQ] = ACTIONS(7357), - [anon_sym_CARET_EQ] = ACTIONS(7357), - [anon_sym_PIPE_EQ] = ACTIONS(7357), - [anon_sym_and_eq] = ACTIONS(7357), - [anon_sym_or_eq] = ACTIONS(7357), - [anon_sym_xor_eq] = ACTIONS(7357), - [anon_sym_LT_EQ_GT] = ACTIONS(7357), - [anon_sym_or] = ACTIONS(7355), - [anon_sym_and] = ACTIONS(7355), - [anon_sym_bitor] = ACTIONS(7357), - [anon_sym_xor] = ACTIONS(7355), - [anon_sym_bitand] = ACTIONS(7357), - [anon_sym_not_eq] = ACTIONS(7357), - [anon_sym_DASH_DASH] = ACTIONS(7357), - [anon_sym_PLUS_PLUS] = ACTIONS(7357), - [anon_sym_DOT] = ACTIONS(7355), - [anon_sym_DOT_STAR] = ACTIONS(7357), - [anon_sym_DASH_GT] = ACTIONS(7355), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7357), - [anon_sym_override] = ACTIONS(7357), - [anon_sym_requires] = ACTIONS(7357), - [anon_sym_DASH_GT_STAR] = ACTIONS(7357), - }, - [STATE(2876)] = { + [STATE(2651)] = { + [sym_argument_list] = STATE(5537), + [sym_initializer_list] = STATE(5538), + [aux_sym_sized_type_specifier_repeat1] = STATE(2410), [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), [anon_sym_COMMA] = ACTIONS(7225), [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(8569), [anon_sym_DASH] = ACTIONS(7223), [anon_sym_PLUS] = ACTIONS(7223), [anon_sym_STAR] = ACTIONS(7223), @@ -371198,7 +367632,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(7223), [anon_sym_GT_GT] = ACTIONS(7223), [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(2952), + [anon_sym_signed] = ACTIONS(8211), + [anon_sym_unsigned] = ACTIONS(8211), + [anon_sym_long] = ACTIONS(8211), + [anon_sym_short] = ACTIONS(8211), [anon_sym_LBRACK] = ACTIONS(7225), [anon_sym_EQ] = ACTIONS(7223), [anon_sym_const] = ACTIONS(7223), @@ -371242,89 +367680,474 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7225), [anon_sym_DASH_GT] = ACTIONS(7223), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), [anon_sym_DASH_GT_STAR] = ACTIONS(7225), }, - [STATE(2877)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), - [anon_sym_COMMA] = ACTIONS(7361), - [anon_sym_RPAREN] = ACTIONS(7361), - [anon_sym_LPAREN2] = ACTIONS(7361), - [anon_sym_DASH] = ACTIONS(7359), - [anon_sym_PLUS] = ACTIONS(7359), - [anon_sym_STAR] = ACTIONS(7359), - [anon_sym_SLASH] = ACTIONS(7359), - [anon_sym_PERCENT] = ACTIONS(7359), - [anon_sym_PIPE_PIPE] = ACTIONS(7361), - [anon_sym_AMP_AMP] = ACTIONS(7361), - [anon_sym_PIPE] = ACTIONS(7359), - [anon_sym_CARET] = ACTIONS(7359), - [anon_sym_AMP] = ACTIONS(7359), - [anon_sym_EQ_EQ] = ACTIONS(7361), - [anon_sym_BANG_EQ] = ACTIONS(7361), - [anon_sym_GT] = ACTIONS(7359), - [anon_sym_GT_EQ] = ACTIONS(7361), - [anon_sym_LT_EQ] = ACTIONS(7359), - [anon_sym_LT] = ACTIONS(7359), - [anon_sym_LT_LT] = ACTIONS(7359), - [anon_sym_GT_GT] = ACTIONS(7359), - [anon_sym___extension__] = ACTIONS(7361), - [anon_sym_LBRACE] = ACTIONS(7361), - [anon_sym_LBRACK] = ACTIONS(7361), - [anon_sym_EQ] = ACTIONS(7359), - [anon_sym_const] = ACTIONS(7359), - [anon_sym_constexpr] = ACTIONS(7361), - [anon_sym_volatile] = ACTIONS(7361), - [anon_sym_restrict] = ACTIONS(7361), - [anon_sym___restrict__] = ACTIONS(7361), - [anon_sym__Atomic] = ACTIONS(7361), - [anon_sym__Noreturn] = ACTIONS(7361), - [anon_sym_noreturn] = ACTIONS(7361), - [anon_sym__Nonnull] = ACTIONS(7361), - [anon_sym_mutable] = ACTIONS(7361), - [anon_sym_constinit] = ACTIONS(7361), - [anon_sym_consteval] = ACTIONS(7361), - [anon_sym_alignas] = ACTIONS(7361), - [anon_sym__Alignas] = ACTIONS(7361), - [anon_sym_QMARK] = ACTIONS(7361), - [anon_sym_STAR_EQ] = ACTIONS(7361), - [anon_sym_SLASH_EQ] = ACTIONS(7361), - [anon_sym_PERCENT_EQ] = ACTIONS(7361), - [anon_sym_PLUS_EQ] = ACTIONS(7361), - [anon_sym_DASH_EQ] = ACTIONS(7361), - [anon_sym_LT_LT_EQ] = ACTIONS(7361), - [anon_sym_GT_GT_EQ] = ACTIONS(7361), - [anon_sym_AMP_EQ] = ACTIONS(7361), - [anon_sym_CARET_EQ] = ACTIONS(7361), - [anon_sym_PIPE_EQ] = ACTIONS(7361), - [anon_sym_and_eq] = ACTIONS(7361), - [anon_sym_or_eq] = ACTIONS(7361), - [anon_sym_xor_eq] = ACTIONS(7361), - [anon_sym_LT_EQ_GT] = ACTIONS(7361), - [anon_sym_or] = ACTIONS(7359), - [anon_sym_and] = ACTIONS(7359), - [anon_sym_bitor] = ACTIONS(7361), - [anon_sym_xor] = ACTIONS(7359), - [anon_sym_bitand] = ACTIONS(7361), - [anon_sym_not_eq] = ACTIONS(7361), - [anon_sym_DASH_DASH] = ACTIONS(7361), - [anon_sym_PLUS_PLUS] = ACTIONS(7361), - [anon_sym_DOT] = ACTIONS(7359), - [anon_sym_DOT_STAR] = ACTIONS(7361), - [anon_sym_DASH_GT] = ACTIONS(7359), + [STATE(2652)] = { + [sym_identifier] = ACTIONS(3128), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), + [anon_sym_COMMA] = ACTIONS(3118), + [aux_sym_preproc_if_token2] = ACTIONS(3118), + [aux_sym_preproc_else_token1] = ACTIONS(3118), + [aux_sym_preproc_elif_token1] = ACTIONS(3128), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3118), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3118), + [anon_sym_LPAREN2] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(3128), + [anon_sym_SLASH] = ACTIONS(3128), + [anon_sym_PERCENT] = ACTIONS(3128), + [anon_sym_PIPE_PIPE] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_CARET] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3128), + [anon_sym_GT_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(3128), + [anon_sym_LT_LT] = ACTIONS(3128), + [anon_sym_GT_GT] = ACTIONS(3128), + [anon_sym___extension__] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_RBRACK] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_STAR_EQ] = ACTIONS(3118), + [anon_sym_SLASH_EQ] = ACTIONS(3118), + [anon_sym_PERCENT_EQ] = ACTIONS(3118), + [anon_sym_PLUS_EQ] = ACTIONS(3118), + [anon_sym_DASH_EQ] = ACTIONS(3118), + [anon_sym_LT_LT_EQ] = ACTIONS(3118), + [anon_sym_GT_GT_EQ] = ACTIONS(3118), + [anon_sym_AMP_EQ] = ACTIONS(3118), + [anon_sym_CARET_EQ] = ACTIONS(3118), + [anon_sym_PIPE_EQ] = ACTIONS(3118), + [anon_sym_and_eq] = ACTIONS(3128), + [anon_sym_or_eq] = ACTIONS(3128), + [anon_sym_xor_eq] = ACTIONS(3128), + [anon_sym_LT_EQ_GT] = ACTIONS(3118), + [anon_sym_or] = ACTIONS(3128), + [anon_sym_and] = ACTIONS(3128), + [anon_sym_bitor] = ACTIONS(3128), + [anon_sym_xor] = ACTIONS(3128), + [anon_sym_bitand] = ACTIONS(3128), + [anon_sym_not_eq] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_DOT] = ACTIONS(3128), + [anon_sym_DOT_STAR] = ACTIONS(3118), + [anon_sym_DASH_GT] = ACTIONS(3118), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3128), + [anon_sym_override] = ACTIONS(3128), + [anon_sym_requires] = ACTIONS(3128), + }, + [STATE(2653)] = { + [sym_identifier] = ACTIONS(7077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), + [anon_sym_COMMA] = ACTIONS(7079), + [aux_sym_preproc_if_token2] = ACTIONS(7079), + [aux_sym_preproc_else_token1] = ACTIONS(7079), + [aux_sym_preproc_elif_token1] = ACTIONS(7077), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7079), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7079), + [anon_sym_LPAREN2] = ACTIONS(7079), + [anon_sym_DASH] = ACTIONS(7077), + [anon_sym_PLUS] = ACTIONS(7077), + [anon_sym_STAR] = ACTIONS(7077), + [anon_sym_SLASH] = ACTIONS(7077), + [anon_sym_PERCENT] = ACTIONS(7077), + [anon_sym_PIPE_PIPE] = ACTIONS(7079), + [anon_sym_AMP_AMP] = ACTIONS(7079), + [anon_sym_PIPE] = ACTIONS(7077), + [anon_sym_CARET] = ACTIONS(7077), + [anon_sym_AMP] = ACTIONS(7077), + [anon_sym_EQ_EQ] = ACTIONS(7079), + [anon_sym_BANG_EQ] = ACTIONS(7079), + [anon_sym_GT] = ACTIONS(7077), + [anon_sym_GT_EQ] = ACTIONS(7079), + [anon_sym_LT_EQ] = ACTIONS(7077), + [anon_sym_LT] = ACTIONS(7077), + [anon_sym_LT_LT] = ACTIONS(7077), + [anon_sym_GT_GT] = ACTIONS(7077), + [anon_sym___extension__] = ACTIONS(7077), + [anon_sym_LBRACK] = ACTIONS(7079), + [anon_sym_RBRACK] = ACTIONS(7079), + [anon_sym_EQ] = ACTIONS(7077), + [anon_sym_const] = ACTIONS(7077), + [anon_sym_constexpr] = ACTIONS(7077), + [anon_sym_volatile] = ACTIONS(7077), + [anon_sym_restrict] = ACTIONS(7077), + [anon_sym___restrict__] = ACTIONS(7077), + [anon_sym__Atomic] = ACTIONS(7077), + [anon_sym__Noreturn] = ACTIONS(7077), + [anon_sym_noreturn] = ACTIONS(7077), + [anon_sym__Nonnull] = ACTIONS(7077), + [anon_sym_mutable] = ACTIONS(7077), + [anon_sym_constinit] = ACTIONS(7077), + [anon_sym_consteval] = ACTIONS(7077), + [anon_sym_alignas] = ACTIONS(7077), + [anon_sym__Alignas] = ACTIONS(7077), + [anon_sym_QMARK] = ACTIONS(7079), + [anon_sym_STAR_EQ] = ACTIONS(7079), + [anon_sym_SLASH_EQ] = ACTIONS(7079), + [anon_sym_PERCENT_EQ] = ACTIONS(7079), + [anon_sym_PLUS_EQ] = ACTIONS(7079), + [anon_sym_DASH_EQ] = ACTIONS(7079), + [anon_sym_LT_LT_EQ] = ACTIONS(7079), + [anon_sym_GT_GT_EQ] = ACTIONS(7079), + [anon_sym_AMP_EQ] = ACTIONS(7079), + [anon_sym_CARET_EQ] = ACTIONS(7079), + [anon_sym_PIPE_EQ] = ACTIONS(7079), + [anon_sym_and_eq] = ACTIONS(7077), + [anon_sym_or_eq] = ACTIONS(7077), + [anon_sym_xor_eq] = ACTIONS(7077), + [anon_sym_LT_EQ_GT] = ACTIONS(7079), + [anon_sym_or] = ACTIONS(7077), + [anon_sym_and] = ACTIONS(7077), + [anon_sym_bitor] = ACTIONS(7077), + [anon_sym_xor] = ACTIONS(7077), + [anon_sym_bitand] = ACTIONS(7077), + [anon_sym_not_eq] = ACTIONS(7077), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DOT] = ACTIONS(7077), + [anon_sym_DOT_STAR] = ACTIONS(7079), + [anon_sym_DASH_GT] = ACTIONS(7079), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7077), + [anon_sym_override] = ACTIONS(7077), + [anon_sym_requires] = ACTIONS(7077), + }, + [STATE(2654)] = { + [sym_template_argument_list] = STATE(2594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5657), + [anon_sym_COMMA] = ACTIONS(5657), + [anon_sym_LPAREN2] = ACTIONS(5657), + [anon_sym_DASH] = ACTIONS(7371), + [anon_sym_PLUS] = ACTIONS(7371), + [anon_sym_STAR] = ACTIONS(7371), + [anon_sym_SLASH] = ACTIONS(7371), + [anon_sym_PERCENT] = ACTIONS(7371), + [anon_sym_PIPE_PIPE] = ACTIONS(5657), + [anon_sym_AMP_AMP] = ACTIONS(5657), + [anon_sym_PIPE] = ACTIONS(7371), + [anon_sym_CARET] = ACTIONS(7371), + [anon_sym_AMP] = ACTIONS(7371), + [anon_sym_EQ_EQ] = ACTIONS(5657), + [anon_sym_BANG_EQ] = ACTIONS(5657), + [anon_sym_GT] = ACTIONS(7371), + [anon_sym_GT_EQ] = ACTIONS(7371), + [anon_sym_LT_EQ] = ACTIONS(7371), + [anon_sym_LT] = ACTIONS(8032), + [anon_sym_LT_LT] = ACTIONS(7371), + [anon_sym_GT_GT] = ACTIONS(7371), + [anon_sym___extension__] = ACTIONS(5657), + [anon_sym___attribute__] = ACTIONS(5657), + [anon_sym___attribute] = ACTIONS(7371), + [anon_sym_COLON] = ACTIONS(7371), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5657), + [anon_sym_EQ] = ACTIONS(7371), + [anon_sym_const] = ACTIONS(7371), + [anon_sym_constexpr] = ACTIONS(5657), + [anon_sym_volatile] = ACTIONS(5657), + [anon_sym_restrict] = ACTIONS(5657), + [anon_sym___restrict__] = ACTIONS(5657), + [anon_sym__Atomic] = ACTIONS(5657), + [anon_sym__Noreturn] = ACTIONS(5657), + [anon_sym_noreturn] = ACTIONS(5657), + [anon_sym__Nonnull] = ACTIONS(5657), + [anon_sym_mutable] = ACTIONS(5657), + [anon_sym_constinit] = ACTIONS(5657), + [anon_sym_consteval] = ACTIONS(5657), + [anon_sym_alignas] = ACTIONS(5657), + [anon_sym__Alignas] = ACTIONS(5657), + [anon_sym_QMARK] = ACTIONS(5657), + [anon_sym_STAR_EQ] = ACTIONS(5657), + [anon_sym_SLASH_EQ] = ACTIONS(5657), + [anon_sym_PERCENT_EQ] = ACTIONS(5657), + [anon_sym_PLUS_EQ] = ACTIONS(5657), + [anon_sym_DASH_EQ] = ACTIONS(5657), + [anon_sym_LT_LT_EQ] = ACTIONS(5657), + [anon_sym_GT_GT_EQ] = ACTIONS(7371), + [anon_sym_AMP_EQ] = ACTIONS(5657), + [anon_sym_CARET_EQ] = ACTIONS(5657), + [anon_sym_PIPE_EQ] = ACTIONS(5657), + [anon_sym_and_eq] = ACTIONS(5657), + [anon_sym_or_eq] = ACTIONS(5657), + [anon_sym_xor_eq] = ACTIONS(5657), + [anon_sym_LT_EQ_GT] = ACTIONS(5657), + [anon_sym_or] = ACTIONS(7371), + [anon_sym_and] = ACTIONS(7371), + [anon_sym_bitor] = ACTIONS(5657), + [anon_sym_xor] = ACTIONS(7371), + [anon_sym_bitand] = ACTIONS(5657), + [anon_sym_not_eq] = ACTIONS(5657), + [anon_sym_DASH_DASH] = ACTIONS(5657), + [anon_sym_PLUS_PLUS] = ACTIONS(5657), + [anon_sym_DOT] = ACTIONS(7371), + [anon_sym_DOT_STAR] = ACTIONS(5657), + [anon_sym_DASH_GT] = ACTIONS(5657), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(5657), + [anon_sym_override] = ACTIONS(5657), + [anon_sym_GT2] = ACTIONS(5657), + [anon_sym_requires] = ACTIONS(5657), + }, + [STATE(2655)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6618), + [anon_sym_COMMA] = ACTIONS(6618), + [anon_sym_RPAREN] = ACTIONS(6618), + [anon_sym_LPAREN2] = ACTIONS(6618), + [anon_sym_DASH] = ACTIONS(6616), + [anon_sym_PLUS] = ACTIONS(6616), + [anon_sym_STAR] = ACTIONS(6616), + [anon_sym_SLASH] = ACTIONS(6616), + [anon_sym_PERCENT] = ACTIONS(6616), + [anon_sym_PIPE_PIPE] = ACTIONS(6618), + [anon_sym_AMP_AMP] = ACTIONS(6618), + [anon_sym_PIPE] = ACTIONS(6616), + [anon_sym_CARET] = ACTIONS(6616), + [anon_sym_AMP] = ACTIONS(6616), + [anon_sym_EQ_EQ] = ACTIONS(6618), + [anon_sym_BANG_EQ] = ACTIONS(6618), + [anon_sym_GT] = ACTIONS(6616), + [anon_sym_GT_EQ] = ACTIONS(6618), + [anon_sym_LT_EQ] = ACTIONS(6616), + [anon_sym_LT] = ACTIONS(6616), + [anon_sym_LT_LT] = ACTIONS(6616), + [anon_sym_GT_GT] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(6618), + [anon_sym___attribute__] = ACTIONS(6618), + [anon_sym___attribute] = ACTIONS(6616), + [anon_sym_COLON] = ACTIONS(6616), + [anon_sym_COLON_COLON] = ACTIONS(6618), + [anon_sym_LBRACE] = ACTIONS(6618), + [anon_sym_LBRACK] = ACTIONS(6618), + [anon_sym_EQ] = ACTIONS(6616), + [anon_sym_const] = ACTIONS(6616), + [anon_sym_constexpr] = ACTIONS(6618), + [anon_sym_volatile] = ACTIONS(6618), + [anon_sym_restrict] = ACTIONS(6618), + [anon_sym___restrict__] = ACTIONS(6618), + [anon_sym__Atomic] = ACTIONS(6618), + [anon_sym__Noreturn] = ACTIONS(6618), + [anon_sym_noreturn] = ACTIONS(6618), + [anon_sym__Nonnull] = ACTIONS(6618), + [anon_sym_mutable] = ACTIONS(6618), + [anon_sym_constinit] = ACTIONS(6618), + [anon_sym_consteval] = ACTIONS(6618), + [anon_sym_alignas] = ACTIONS(6618), + [anon_sym__Alignas] = ACTIONS(6618), + [anon_sym_QMARK] = ACTIONS(6618), + [anon_sym_STAR_EQ] = ACTIONS(6618), + [anon_sym_SLASH_EQ] = ACTIONS(6618), + [anon_sym_PERCENT_EQ] = ACTIONS(6618), + [anon_sym_PLUS_EQ] = ACTIONS(6618), + [anon_sym_DASH_EQ] = ACTIONS(6618), + [anon_sym_LT_LT_EQ] = ACTIONS(6618), + [anon_sym_GT_GT_EQ] = ACTIONS(6618), + [anon_sym_AMP_EQ] = ACTIONS(6618), + [anon_sym_CARET_EQ] = ACTIONS(6618), + [anon_sym_PIPE_EQ] = ACTIONS(6618), + [anon_sym_LT_EQ_GT] = ACTIONS(6618), + [anon_sym_or] = ACTIONS(6618), + [anon_sym_and] = ACTIONS(6618), + [anon_sym_bitor] = ACTIONS(6618), + [anon_sym_xor] = ACTIONS(6618), + [anon_sym_bitand] = ACTIONS(6618), + [anon_sym_not_eq] = ACTIONS(6618), + [anon_sym_DASH_DASH] = ACTIONS(6618), + [anon_sym_PLUS_PLUS] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(6616), + [anon_sym_DOT_STAR] = ACTIONS(6618), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6618), + [anon_sym_decltype] = ACTIONS(6618), + [anon_sym_final] = ACTIONS(6618), + [anon_sym_override] = ACTIONS(6618), + [anon_sym_requires] = ACTIONS(6618), + [anon_sym_DASH_GT_STAR] = ACTIONS(6618), + }, + [STATE(2656)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), + [anon_sym_COMMA] = ACTIONS(7233), + [anon_sym_LPAREN2] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7231), + [anon_sym_PLUS] = ACTIONS(7231), + [anon_sym_STAR] = ACTIONS(7231), + [anon_sym_SLASH] = ACTIONS(7231), + [anon_sym_PERCENT] = ACTIONS(7231), + [anon_sym_PIPE_PIPE] = ACTIONS(7233), + [anon_sym_AMP_AMP] = ACTIONS(7233), + [anon_sym_PIPE] = ACTIONS(7231), + [anon_sym_CARET] = ACTIONS(7231), + [anon_sym_AMP] = ACTIONS(7231), + [anon_sym_EQ_EQ] = ACTIONS(7233), + [anon_sym_BANG_EQ] = ACTIONS(7233), + [anon_sym_GT] = ACTIONS(7231), + [anon_sym_GT_EQ] = ACTIONS(7233), + [anon_sym_LT_EQ] = ACTIONS(7231), + [anon_sym_LT] = ACTIONS(7231), + [anon_sym_LT_LT] = ACTIONS(7231), + [anon_sym_GT_GT] = ACTIONS(7231), + [anon_sym___extension__] = ACTIONS(7233), + [anon_sym___attribute__] = ACTIONS(7233), + [anon_sym___attribute] = ACTIONS(7231), + [anon_sym_COLON] = ACTIONS(7231), + [anon_sym_COLON_COLON] = ACTIONS(7233), + [anon_sym_LBRACE] = ACTIONS(7233), + [anon_sym_LBRACK] = ACTIONS(7233), + [anon_sym_RBRACK] = ACTIONS(7233), + [anon_sym_EQ] = ACTIONS(7231), + [anon_sym_const] = ACTIONS(7231), + [anon_sym_constexpr] = ACTIONS(7233), + [anon_sym_volatile] = ACTIONS(7233), + [anon_sym_restrict] = ACTIONS(7233), + [anon_sym___restrict__] = ACTIONS(7233), + [anon_sym__Atomic] = ACTIONS(7233), + [anon_sym__Noreturn] = ACTIONS(7233), + [anon_sym_noreturn] = ACTIONS(7233), + [anon_sym__Nonnull] = ACTIONS(7233), + [anon_sym_mutable] = ACTIONS(7233), + [anon_sym_constinit] = ACTIONS(7233), + [anon_sym_consteval] = ACTIONS(7233), + [anon_sym_alignas] = ACTIONS(7233), + [anon_sym__Alignas] = ACTIONS(7233), + [anon_sym_QMARK] = ACTIONS(7233), + [anon_sym_STAR_EQ] = ACTIONS(7233), + [anon_sym_SLASH_EQ] = ACTIONS(7233), + [anon_sym_PERCENT_EQ] = ACTIONS(7233), + [anon_sym_PLUS_EQ] = ACTIONS(7233), + [anon_sym_DASH_EQ] = ACTIONS(7233), + [anon_sym_LT_LT_EQ] = ACTIONS(7233), + [anon_sym_GT_GT_EQ] = ACTIONS(7233), + [anon_sym_AMP_EQ] = ACTIONS(7233), + [anon_sym_CARET_EQ] = ACTIONS(7233), + [anon_sym_PIPE_EQ] = ACTIONS(7233), + [anon_sym_and_eq] = ACTIONS(7233), + [anon_sym_or_eq] = ACTIONS(7233), + [anon_sym_xor_eq] = ACTIONS(7233), + [anon_sym_LT_EQ_GT] = ACTIONS(7233), + [anon_sym_or] = ACTIONS(7231), + [anon_sym_and] = ACTIONS(7231), + [anon_sym_bitor] = ACTIONS(7233), + [anon_sym_xor] = ACTIONS(7231), + [anon_sym_bitand] = ACTIONS(7233), + [anon_sym_not_eq] = ACTIONS(7233), + [anon_sym_DASH_DASH] = ACTIONS(7233), + [anon_sym_PLUS_PLUS] = ACTIONS(7233), + [anon_sym_DOT] = ACTIONS(7231), + [anon_sym_DOT_STAR] = ACTIONS(7233), + [anon_sym_DASH_GT] = ACTIONS(7233), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7361), - [anon_sym_override] = ACTIONS(7361), - [anon_sym_requires] = ACTIONS(7361), - [anon_sym_DASH_GT_STAR] = ACTIONS(7361), + [anon_sym_final] = ACTIONS(7233), + [anon_sym_override] = ACTIONS(7233), + [anon_sym_requires] = ACTIONS(7233), }, - [STATE(2878)] = { + [STATE(2657)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4309), + [sym_ms_pointer_modifier] = STATE(2669), + [sym__abstract_declarator] = STATE(6438), + [sym_abstract_parenthesized_declarator] = STATE(6607), + [sym_abstract_pointer_declarator] = STATE(6607), + [sym_abstract_function_declarator] = STATE(6607), + [sym_abstract_array_declarator] = STATE(6607), + [sym_type_qualifier] = STATE(3722), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2281), + [sym_abstract_reference_declarator] = STATE(6607), + [sym__function_declarator_seq] = STATE(6608), + [aux_sym__type_definition_type_repeat1] = STATE(3722), + [aux_sym_pointer_declarator_repeat1] = STATE(2669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(8572), + [anon_sym_DASH] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6861), + [anon_sym_STAR] = ACTIONS(8574), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6859), + [anon_sym_PIPE_PIPE] = ACTIONS(6859), + [anon_sym_AMP_AMP] = ACTIONS(8576), + [anon_sym_PIPE] = ACTIONS(6861), + [anon_sym_CARET] = ACTIONS(6859), + [anon_sym_AMP] = ACTIONS(8578), + [anon_sym_EQ_EQ] = ACTIONS(6859), + [anon_sym_BANG_EQ] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6861), + [anon_sym_GT_EQ] = ACTIONS(6859), + [anon_sym_LT_EQ] = ACTIONS(6861), + [anon_sym_LT] = ACTIONS(6861), + [anon_sym_LT_LT] = ACTIONS(6859), + [anon_sym_GT_GT] = ACTIONS(6859), + [anon_sym___extension__] = ACTIONS(8580), + [sym_ms_restrict_modifier] = ACTIONS(8582), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8584), + [sym_ms_signed_ptr_modifier] = ACTIONS(8584), + [anon_sym__unaligned] = ACTIONS(8586), + [anon_sym___unaligned] = ACTIONS(8586), + [anon_sym_LBRACK] = ACTIONS(8588), + [anon_sym_RBRACK] = ACTIONS(6859), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8580), + [anon_sym_volatile] = ACTIONS(8580), + [anon_sym_restrict] = ACTIONS(8580), + [anon_sym___restrict__] = ACTIONS(8580), + [anon_sym__Atomic] = ACTIONS(8580), + [anon_sym__Noreturn] = ACTIONS(8580), + [anon_sym_noreturn] = ACTIONS(8580), + [anon_sym__Nonnull] = ACTIONS(8580), + [anon_sym_mutable] = ACTIONS(8580), + [anon_sym_constinit] = ACTIONS(8580), + [anon_sym_consteval] = ACTIONS(8580), + [anon_sym_alignas] = ACTIONS(8590), + [anon_sym__Alignas] = ACTIONS(8590), + [anon_sym_QMARK] = ACTIONS(6859), + [anon_sym_LT_EQ_GT] = ACTIONS(6859), + [anon_sym_or] = ACTIONS(6859), + [anon_sym_and] = ACTIONS(6859), + [anon_sym_bitor] = ACTIONS(6859), + [anon_sym_xor] = ACTIONS(6859), + [anon_sym_bitand] = ACTIONS(6859), + [anon_sym_not_eq] = ACTIONS(6859), + [anon_sym_DASH_DASH] = ACTIONS(6859), + [anon_sym_PLUS_PLUS] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6861), + [anon_sym_DOT_STAR] = ACTIONS(6859), + [anon_sym_DASH_GT] = ACTIONS(6859), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6859), + [anon_sym_override] = ACTIONS(6859), + [anon_sym_requires] = ACTIONS(6859), + }, + [STATE(2658)] = { + [sym_argument_list] = STATE(5862), + [sym_initializer_list] = STATE(5876), + [aux_sym_sized_type_specifier_repeat1] = STATE(2474), [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(8592), [anon_sym_DASH] = ACTIONS(7223), [anon_sym_PLUS] = ACTIONS(7223), [anon_sym_STAR] = ACTIONS(7223), @@ -371338,13 +368161,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(7225), [anon_sym_BANG_EQ] = ACTIONS(7225), [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_GT_EQ] = ACTIONS(7223), [anon_sym_LT_EQ] = ACTIONS(7223), [anon_sym_LT] = ACTIONS(7223), [anon_sym_LT_LT] = ACTIONS(7223), [anon_sym_GT_GT] = ACTIONS(7223), [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_signed] = ACTIONS(8379), + [anon_sym_unsigned] = ACTIONS(8379), + [anon_sym_long] = ACTIONS(8379), + [anon_sym_short] = ACTIONS(8379), [anon_sym_LBRACK] = ACTIONS(7225), [anon_sym_EQ] = ACTIONS(7223), [anon_sym_const] = ACTIONS(7223), @@ -371368,7 +368195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_EQ] = ACTIONS(7225), [anon_sym_DASH_EQ] = ACTIONS(7225), [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7223), [anon_sym_AMP_EQ] = ACTIONS(7225), [anon_sym_CARET_EQ] = ACTIONS(7225), [anon_sym_PIPE_EQ] = ACTIONS(7225), @@ -371386,4908 +368213,1837 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(7225), [anon_sym_DOT] = ACTIONS(7223), [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7223), + [anon_sym_DASH_GT] = ACTIONS(7225), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), - [anon_sym_DASH_GT_STAR] = ACTIONS(7225), - }, - [STATE(2879)] = { - [sym_template_argument_list] = STATE(2992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6205), - [anon_sym_COMMA] = ACTIONS(6205), - [anon_sym_LPAREN2] = ACTIONS(6205), - [anon_sym_DASH] = ACTIONS(6210), - [anon_sym_PLUS] = ACTIONS(6210), - [anon_sym_STAR] = ACTIONS(6212), - [anon_sym_SLASH] = ACTIONS(6210), - [anon_sym_PERCENT] = ACTIONS(6210), - [anon_sym_PIPE_PIPE] = ACTIONS(6203), - [anon_sym_AMP_AMP] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(6210), - [anon_sym_CARET] = ACTIONS(6210), - [anon_sym_AMP] = ACTIONS(6212), - [anon_sym_EQ_EQ] = ACTIONS(6203), - [anon_sym_BANG_EQ] = ACTIONS(6203), - [anon_sym_GT] = ACTIONS(6210), - [anon_sym_GT_EQ] = ACTIONS(6210), - [anon_sym_LT_EQ] = ACTIONS(6210), - [anon_sym_LT] = ACTIONS(8569), - [anon_sym_LT_LT] = ACTIONS(6210), - [anon_sym_GT_GT] = ACTIONS(6210), - [anon_sym___extension__] = ACTIONS(6208), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(6208), - [anon_sym_LBRACK] = ACTIONS(6205), - [anon_sym_EQ] = ACTIONS(6210), - [anon_sym_const] = ACTIONS(6201), - [anon_sym_constexpr] = ACTIONS(6208), - [anon_sym_volatile] = ACTIONS(6208), - [anon_sym_restrict] = ACTIONS(6208), - [anon_sym___restrict__] = ACTIONS(6208), - [anon_sym__Atomic] = ACTIONS(6208), - [anon_sym__Noreturn] = ACTIONS(6208), - [anon_sym_noreturn] = ACTIONS(6208), - [anon_sym__Nonnull] = ACTIONS(6208), - [anon_sym_mutable] = ACTIONS(6208), - [anon_sym_constinit] = ACTIONS(6208), - [anon_sym_consteval] = ACTIONS(6208), - [anon_sym_alignas] = ACTIONS(6208), - [anon_sym__Alignas] = ACTIONS(6208), - [anon_sym_QMARK] = ACTIONS(6203), - [anon_sym_STAR_EQ] = ACTIONS(6203), - [anon_sym_SLASH_EQ] = ACTIONS(6203), - [anon_sym_PERCENT_EQ] = ACTIONS(6203), - [anon_sym_PLUS_EQ] = ACTIONS(6203), - [anon_sym_DASH_EQ] = ACTIONS(6203), - [anon_sym_LT_LT_EQ] = ACTIONS(6203), - [anon_sym_GT_GT_EQ] = ACTIONS(6210), - [anon_sym_AMP_EQ] = ACTIONS(6203), - [anon_sym_CARET_EQ] = ACTIONS(6203), - [anon_sym_PIPE_EQ] = ACTIONS(6203), - [anon_sym_and_eq] = ACTIONS(6203), - [anon_sym_or_eq] = ACTIONS(6203), - [anon_sym_xor_eq] = ACTIONS(6203), - [anon_sym_LT_EQ_GT] = ACTIONS(6203), - [anon_sym_or] = ACTIONS(6210), - [anon_sym_and] = ACTIONS(6210), - [anon_sym_bitor] = ACTIONS(6203), - [anon_sym_xor] = ACTIONS(6210), - [anon_sym_bitand] = ACTIONS(6203), - [anon_sym_not_eq] = ACTIONS(6203), - [anon_sym_DASH_DASH] = ACTIONS(6203), - [anon_sym_PLUS_PLUS] = ACTIONS(6203), - [anon_sym_DOT] = ACTIONS(6210), - [anon_sym_DOT_STAR] = ACTIONS(6203), - [anon_sym_DASH_GT] = ACTIONS(6203), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6208), - [anon_sym_decltype] = ACTIONS(6208), - [anon_sym_GT2] = ACTIONS(6205), - }, - [STATE(2880)] = { - [sym_template_argument_list] = STATE(3024), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6205), - [anon_sym_COMMA] = ACTIONS(6205), - [anon_sym_LPAREN2] = ACTIONS(6205), - [anon_sym_DASH] = ACTIONS(6212), - [anon_sym_PLUS] = ACTIONS(6212), - [anon_sym_STAR] = ACTIONS(6212), - [anon_sym_SLASH] = ACTIONS(6212), - [anon_sym_PERCENT] = ACTIONS(6212), - [anon_sym_PIPE_PIPE] = ACTIONS(6205), - [anon_sym_AMP_AMP] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(6212), - [anon_sym_CARET] = ACTIONS(6212), - [anon_sym_AMP] = ACTIONS(6212), - [anon_sym_EQ_EQ] = ACTIONS(6205), - [anon_sym_BANG_EQ] = ACTIONS(6205), - [anon_sym_GT] = ACTIONS(6212), - [anon_sym_GT_EQ] = ACTIONS(6212), - [anon_sym_LT_EQ] = ACTIONS(6212), - [anon_sym_LT] = ACTIONS(8572), - [anon_sym_LT_LT] = ACTIONS(6212), - [anon_sym_GT_GT] = ACTIONS(6212), - [anon_sym___extension__] = ACTIONS(6208), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(6208), - [anon_sym_LBRACK] = ACTIONS(6205), - [anon_sym_EQ] = ACTIONS(6210), - [anon_sym_const] = ACTIONS(6201), - [anon_sym_constexpr] = ACTIONS(6208), - [anon_sym_volatile] = ACTIONS(6208), - [anon_sym_restrict] = ACTIONS(6208), - [anon_sym___restrict__] = ACTIONS(6208), - [anon_sym__Atomic] = ACTIONS(6208), - [anon_sym__Noreturn] = ACTIONS(6208), - [anon_sym_noreturn] = ACTIONS(6208), - [anon_sym__Nonnull] = ACTIONS(6208), - [anon_sym_mutable] = ACTIONS(6208), - [anon_sym_constinit] = ACTIONS(6208), - [anon_sym_consteval] = ACTIONS(6208), - [anon_sym_alignas] = ACTIONS(6208), - [anon_sym__Alignas] = ACTIONS(6208), - [anon_sym_QMARK] = ACTIONS(6205), - [anon_sym_STAR_EQ] = ACTIONS(6203), - [anon_sym_SLASH_EQ] = ACTIONS(6203), - [anon_sym_PERCENT_EQ] = ACTIONS(6203), - [anon_sym_PLUS_EQ] = ACTIONS(6203), - [anon_sym_DASH_EQ] = ACTIONS(6203), - [anon_sym_LT_LT_EQ] = ACTIONS(6203), - [anon_sym_GT_GT_EQ] = ACTIONS(6210), - [anon_sym_AMP_EQ] = ACTIONS(6203), - [anon_sym_CARET_EQ] = ACTIONS(6203), - [anon_sym_PIPE_EQ] = ACTIONS(6203), - [anon_sym_and_eq] = ACTIONS(6203), - [anon_sym_or_eq] = ACTIONS(6203), - [anon_sym_xor_eq] = ACTIONS(6203), - [anon_sym_LT_EQ_GT] = ACTIONS(6205), - [anon_sym_or] = ACTIONS(6212), - [anon_sym_and] = ACTIONS(6212), - [anon_sym_bitor] = ACTIONS(6205), - [anon_sym_xor] = ACTIONS(6212), - [anon_sym_bitand] = ACTIONS(6205), - [anon_sym_not_eq] = ACTIONS(6205), - [anon_sym_DASH_DASH] = ACTIONS(6205), - [anon_sym_PLUS_PLUS] = ACTIONS(6205), - [anon_sym_DOT] = ACTIONS(6212), - [anon_sym_DOT_STAR] = ACTIONS(6205), - [anon_sym_DASH_GT] = ACTIONS(6205), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6208), - [anon_sym_decltype] = ACTIONS(6208), - [anon_sym_GT2] = ACTIONS(6205), - }, - [STATE(2881)] = { - [sym_attribute_specifier] = STATE(4079), - [sym_attribute_declaration] = STATE(4488), - [sym_gnu_asm_expression] = STATE(8997), - [sym_virtual_specifier] = STATE(4611), - [sym__function_attributes_end] = STATE(4249), - [sym__function_postfix] = STATE(5002), - [sym_trailing_return_type] = STATE(4327), - [sym_requires_clause] = STATE(5002), - [aux_sym_type_definition_repeat1] = STATE(4079), - [aux_sym_attributed_declarator_repeat1] = STATE(4488), - [aux_sym__function_postfix_repeat1] = STATE(4611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), - [anon_sym_COMMA] = ACTIONS(8089), - [anon_sym_LPAREN2] = ACTIONS(8089), - [anon_sym_DASH] = ACTIONS(8087), - [anon_sym_PLUS] = ACTIONS(8087), - [anon_sym_STAR] = ACTIONS(8087), - [anon_sym_SLASH] = ACTIONS(8087), - [anon_sym_PERCENT] = ACTIONS(8087), - [anon_sym_PIPE_PIPE] = ACTIONS(8089), - [anon_sym_AMP_AMP] = ACTIONS(8089), - [anon_sym_PIPE] = ACTIONS(8087), - [anon_sym_CARET] = ACTIONS(8087), - [anon_sym_AMP] = ACTIONS(8087), - [anon_sym_EQ_EQ] = ACTIONS(8089), - [anon_sym_BANG_EQ] = ACTIONS(8089), - [anon_sym_GT] = ACTIONS(8087), - [anon_sym_GT_EQ] = ACTIONS(8089), - [anon_sym_LT_EQ] = ACTIONS(8087), - [anon_sym_LT] = ACTIONS(8087), - [anon_sym_LT_LT] = ACTIONS(8087), - [anon_sym_GT_GT] = ACTIONS(8087), - [anon_sym___attribute__] = ACTIONS(6326), - [anon_sym___attribute] = ACTIONS(6328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), - [anon_sym_LBRACK] = ACTIONS(8087), - [anon_sym_RBRACK] = ACTIONS(8089), - [anon_sym_EQ] = ACTIONS(8087), - [anon_sym_QMARK] = ACTIONS(8089), - [anon_sym_STAR_EQ] = ACTIONS(8089), - [anon_sym_SLASH_EQ] = ACTIONS(8089), - [anon_sym_PERCENT_EQ] = ACTIONS(8089), - [anon_sym_PLUS_EQ] = ACTIONS(8089), - [anon_sym_DASH_EQ] = ACTIONS(8089), - [anon_sym_LT_LT_EQ] = ACTIONS(8089), - [anon_sym_GT_GT_EQ] = ACTIONS(8089), - [anon_sym_AMP_EQ] = ACTIONS(8089), - [anon_sym_CARET_EQ] = ACTIONS(8089), - [anon_sym_PIPE_EQ] = ACTIONS(8089), - [anon_sym_and_eq] = ACTIONS(8089), - [anon_sym_or_eq] = ACTIONS(8089), - [anon_sym_xor_eq] = ACTIONS(8089), - [anon_sym_LT_EQ_GT] = ACTIONS(8089), - [anon_sym_or] = ACTIONS(8087), - [anon_sym_and] = ACTIONS(8087), - [anon_sym_bitor] = ACTIONS(8089), - [anon_sym_xor] = ACTIONS(8087), - [anon_sym_bitand] = ACTIONS(8089), - [anon_sym_not_eq] = ACTIONS(8089), - [anon_sym_DASH_DASH] = ACTIONS(8089), - [anon_sym_PLUS_PLUS] = ACTIONS(8089), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(8087), - [anon_sym_DOT_STAR] = ACTIONS(8089), - [anon_sym_DASH_GT] = ACTIONS(8576), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6349), - [anon_sym_override] = ACTIONS(6349), - [anon_sym_requires] = ACTIONS(6351), - }, - [STATE(2882)] = { - [sym_identifier] = ACTIONS(8579), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8581), - [anon_sym_COMMA] = ACTIONS(8581), - [anon_sym_RPAREN] = ACTIONS(8581), - [aux_sym_preproc_if_token2] = ACTIONS(8581), - [aux_sym_preproc_else_token1] = ACTIONS(8581), - [aux_sym_preproc_elif_token1] = ACTIONS(8579), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8581), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8581), - [anon_sym_LPAREN2] = ACTIONS(8581), - [anon_sym_DASH] = ACTIONS(8579), - [anon_sym_PLUS] = ACTIONS(8579), - [anon_sym_STAR] = ACTIONS(8579), - [anon_sym_SLASH] = ACTIONS(8579), - [anon_sym_PERCENT] = ACTIONS(8579), - [anon_sym_PIPE_PIPE] = ACTIONS(8581), - [anon_sym_AMP_AMP] = ACTIONS(8581), - [anon_sym_PIPE] = ACTIONS(8579), - [anon_sym_CARET] = ACTIONS(8579), - [anon_sym_AMP] = ACTIONS(8579), - [anon_sym_EQ_EQ] = ACTIONS(8581), - [anon_sym_BANG_EQ] = ACTIONS(8581), - [anon_sym_GT] = ACTIONS(8579), - [anon_sym_GT_EQ] = ACTIONS(8581), - [anon_sym_LT_EQ] = ACTIONS(8579), - [anon_sym_LT] = ACTIONS(8579), - [anon_sym_LT_LT] = ACTIONS(8579), - [anon_sym_GT_GT] = ACTIONS(8579), - [anon_sym_SEMI] = ACTIONS(8581), - [anon_sym___attribute__] = ACTIONS(8579), - [anon_sym___attribute] = ACTIONS(8579), - [anon_sym_COLON] = ACTIONS(8579), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8581), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8581), - [anon_sym_RBRACE] = ACTIONS(8581), - [anon_sym_LBRACK] = ACTIONS(8579), - [anon_sym_EQ] = ACTIONS(8579), - [anon_sym_QMARK] = ACTIONS(8581), - [anon_sym_STAR_EQ] = ACTIONS(8581), - [anon_sym_SLASH_EQ] = ACTIONS(8581), - [anon_sym_PERCENT_EQ] = ACTIONS(8581), - [anon_sym_PLUS_EQ] = ACTIONS(8581), - [anon_sym_DASH_EQ] = ACTIONS(8581), - [anon_sym_LT_LT_EQ] = ACTIONS(8581), - [anon_sym_GT_GT_EQ] = ACTIONS(8581), - [anon_sym_AMP_EQ] = ACTIONS(8581), - [anon_sym_CARET_EQ] = ACTIONS(8581), - [anon_sym_PIPE_EQ] = ACTIONS(8581), - [anon_sym_and_eq] = ACTIONS(8579), - [anon_sym_or_eq] = ACTIONS(8579), - [anon_sym_xor_eq] = ACTIONS(8579), - [anon_sym_LT_EQ_GT] = ACTIONS(8581), - [anon_sym_or] = ACTIONS(8579), - [anon_sym_and] = ACTIONS(8579), - [anon_sym_bitor] = ACTIONS(8579), - [anon_sym_xor] = ACTIONS(8579), - [anon_sym_bitand] = ACTIONS(8579), - [anon_sym_not_eq] = ACTIONS(8579), - [anon_sym_DASH_DASH] = ACTIONS(8581), - [anon_sym_PLUS_PLUS] = ACTIONS(8581), - [anon_sym_asm] = ACTIONS(8579), - [anon_sym___asm__] = ACTIONS(8579), - [anon_sym___asm] = ACTIONS(8579), - [anon_sym_DOT] = ACTIONS(8579), - [anon_sym_DOT_STAR] = ACTIONS(8581), - [anon_sym_DASH_GT] = ACTIONS(8581), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8579), - [anon_sym_override] = ACTIONS(8579), - [anon_sym_requires] = ACTIONS(8579), - [anon_sym_COLON_RBRACK] = ACTIONS(8581), - }, - [STATE(2883)] = { - [sym_identifier] = ACTIONS(8583), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8585), - [anon_sym_COMMA] = ACTIONS(8585), - [anon_sym_RPAREN] = ACTIONS(8585), - [aux_sym_preproc_if_token2] = ACTIONS(8585), - [aux_sym_preproc_else_token1] = ACTIONS(8585), - [aux_sym_preproc_elif_token1] = ACTIONS(8583), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8585), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8585), - [anon_sym_LPAREN2] = ACTIONS(8587), - [anon_sym_DASH] = ACTIONS(8583), - [anon_sym_PLUS] = ACTIONS(8583), - [anon_sym_STAR] = ACTIONS(8583), - [anon_sym_SLASH] = ACTIONS(8583), - [anon_sym_PERCENT] = ACTIONS(8583), - [anon_sym_PIPE_PIPE] = ACTIONS(8585), - [anon_sym_AMP_AMP] = ACTIONS(8585), - [anon_sym_PIPE] = ACTIONS(8583), - [anon_sym_CARET] = ACTIONS(8583), - [anon_sym_AMP] = ACTIONS(8583), - [anon_sym_EQ_EQ] = ACTIONS(8585), - [anon_sym_BANG_EQ] = ACTIONS(8585), - [anon_sym_GT] = ACTIONS(8583), - [anon_sym_GT_EQ] = ACTIONS(8585), - [anon_sym_LT_EQ] = ACTIONS(8583), - [anon_sym_LT] = ACTIONS(8583), - [anon_sym_LT_LT] = ACTIONS(8583), - [anon_sym_GT_GT] = ACTIONS(8583), - [anon_sym_SEMI] = ACTIONS(8585), - [anon_sym___attribute__] = ACTIONS(8583), - [anon_sym___attribute] = ACTIONS(8583), - [anon_sym_COLON] = ACTIONS(8583), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8585), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8585), - [anon_sym_RBRACE] = ACTIONS(8585), - [anon_sym_LBRACK] = ACTIONS(8583), - [anon_sym_EQ] = ACTIONS(8583), - [anon_sym_QMARK] = ACTIONS(8585), - [anon_sym_STAR_EQ] = ACTIONS(8585), - [anon_sym_SLASH_EQ] = ACTIONS(8585), - [anon_sym_PERCENT_EQ] = ACTIONS(8585), - [anon_sym_PLUS_EQ] = ACTIONS(8585), - [anon_sym_DASH_EQ] = ACTIONS(8585), - [anon_sym_LT_LT_EQ] = ACTIONS(8585), - [anon_sym_GT_GT_EQ] = ACTIONS(8585), - [anon_sym_AMP_EQ] = ACTIONS(8585), - [anon_sym_CARET_EQ] = ACTIONS(8585), - [anon_sym_PIPE_EQ] = ACTIONS(8585), - [anon_sym_and_eq] = ACTIONS(8583), - [anon_sym_or_eq] = ACTIONS(8583), - [anon_sym_xor_eq] = ACTIONS(8583), - [anon_sym_LT_EQ_GT] = ACTIONS(8585), - [anon_sym_or] = ACTIONS(8583), - [anon_sym_and] = ACTIONS(8583), - [anon_sym_bitor] = ACTIONS(8583), - [anon_sym_xor] = ACTIONS(8583), - [anon_sym_bitand] = ACTIONS(8583), - [anon_sym_not_eq] = ACTIONS(8583), - [anon_sym_DASH_DASH] = ACTIONS(8585), - [anon_sym_PLUS_PLUS] = ACTIONS(8585), - [anon_sym_asm] = ACTIONS(8583), - [anon_sym___asm__] = ACTIONS(8583), - [anon_sym___asm] = ACTIONS(8583), - [anon_sym_DOT] = ACTIONS(8583), - [anon_sym_DOT_STAR] = ACTIONS(8585), - [anon_sym_DASH_GT] = ACTIONS(8585), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8583), - [anon_sym_override] = ACTIONS(8583), - [anon_sym_requires] = ACTIONS(8583), - [anon_sym_COLON_RBRACK] = ACTIONS(8585), - }, - [STATE(2884)] = { - [sym_template_argument_list] = STATE(3016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6205), - [anon_sym_COMMA] = ACTIONS(6205), - [anon_sym_LPAREN2] = ACTIONS(6205), - [anon_sym_DASH] = ACTIONS(6212), - [anon_sym_PLUS] = ACTIONS(6212), - [anon_sym_STAR] = ACTIONS(6212), - [anon_sym_SLASH] = ACTIONS(6212), - [anon_sym_PERCENT] = ACTIONS(6212), - [anon_sym_PIPE_PIPE] = ACTIONS(6205), - [anon_sym_AMP_AMP] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(6212), - [anon_sym_CARET] = ACTIONS(6212), - [anon_sym_AMP] = ACTIONS(6212), - [anon_sym_EQ_EQ] = ACTIONS(6205), - [anon_sym_BANG_EQ] = ACTIONS(6205), - [anon_sym_GT] = ACTIONS(6212), - [anon_sym_GT_EQ] = ACTIONS(6212), - [anon_sym_LT_EQ] = ACTIONS(6212), - [anon_sym_LT] = ACTIONS(8572), - [anon_sym_LT_LT] = ACTIONS(6212), - [anon_sym_GT_GT] = ACTIONS(6212), - [anon_sym___extension__] = ACTIONS(6208), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(6208), - [anon_sym_LBRACK] = ACTIONS(6205), - [anon_sym_EQ] = ACTIONS(6212), - [anon_sym_const] = ACTIONS(6201), - [anon_sym_constexpr] = ACTIONS(6208), - [anon_sym_volatile] = ACTIONS(6208), - [anon_sym_restrict] = ACTIONS(6208), - [anon_sym___restrict__] = ACTIONS(6208), - [anon_sym__Atomic] = ACTIONS(6208), - [anon_sym__Noreturn] = ACTIONS(6208), - [anon_sym_noreturn] = ACTIONS(6208), - [anon_sym__Nonnull] = ACTIONS(6208), - [anon_sym_mutable] = ACTIONS(6208), - [anon_sym_constinit] = ACTIONS(6208), - [anon_sym_consteval] = ACTIONS(6208), - [anon_sym_alignas] = ACTIONS(6208), - [anon_sym__Alignas] = ACTIONS(6208), - [anon_sym_QMARK] = ACTIONS(6205), - [anon_sym_STAR_EQ] = ACTIONS(6205), - [anon_sym_SLASH_EQ] = ACTIONS(6205), - [anon_sym_PERCENT_EQ] = ACTIONS(6205), - [anon_sym_PLUS_EQ] = ACTIONS(6205), - [anon_sym_DASH_EQ] = ACTIONS(6205), - [anon_sym_LT_LT_EQ] = ACTIONS(6205), - [anon_sym_GT_GT_EQ] = ACTIONS(6212), - [anon_sym_AMP_EQ] = ACTIONS(6205), - [anon_sym_CARET_EQ] = ACTIONS(6205), - [anon_sym_PIPE_EQ] = ACTIONS(6205), - [anon_sym_and_eq] = ACTIONS(6205), - [anon_sym_or_eq] = ACTIONS(6205), - [anon_sym_xor_eq] = ACTIONS(6205), - [anon_sym_LT_EQ_GT] = ACTIONS(6205), - [anon_sym_or] = ACTIONS(6212), - [anon_sym_and] = ACTIONS(6212), - [anon_sym_bitor] = ACTIONS(6205), - [anon_sym_xor] = ACTIONS(6212), - [anon_sym_bitand] = ACTIONS(6205), - [anon_sym_not_eq] = ACTIONS(6205), - [anon_sym_DASH_DASH] = ACTIONS(6205), - [anon_sym_PLUS_PLUS] = ACTIONS(6205), - [anon_sym_DOT] = ACTIONS(6212), - [anon_sym_DOT_STAR] = ACTIONS(6205), - [anon_sym_DASH_GT] = ACTIONS(6205), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6208), - [anon_sym_decltype] = ACTIONS(6208), - [anon_sym_GT2] = ACTIONS(6205), - }, - [STATE(2885)] = { - [sym_identifier] = ACTIONS(7107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7109), - [anon_sym_COMMA] = ACTIONS(7109), - [anon_sym_RPAREN] = ACTIONS(7109), - [anon_sym_LPAREN2] = ACTIONS(7109), - [anon_sym_DASH] = ACTIONS(7107), - [anon_sym_PLUS] = ACTIONS(7107), - [anon_sym_STAR] = ACTIONS(7109), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7109), - [anon_sym_PIPE_PIPE] = ACTIONS(7109), - [anon_sym_AMP_AMP] = ACTIONS(7109), - [anon_sym_PIPE] = ACTIONS(7107), - [anon_sym_CARET] = ACTIONS(7109), - [anon_sym_AMP] = ACTIONS(7107), - [anon_sym_EQ_EQ] = ACTIONS(7109), - [anon_sym_BANG_EQ] = ACTIONS(7109), - [anon_sym_GT] = ACTIONS(7107), - [anon_sym_GT_EQ] = ACTIONS(7109), - [anon_sym_LT_EQ] = ACTIONS(7107), - [anon_sym_LT] = ACTIONS(7107), - [anon_sym_LT_LT] = ACTIONS(7109), - [anon_sym_GT_GT] = ACTIONS(7109), - [anon_sym_SEMI] = ACTIONS(7109), - [anon_sym___extension__] = ACTIONS(7107), - [anon_sym___attribute__] = ACTIONS(7107), - [anon_sym___attribute] = ACTIONS(7107), - [anon_sym_COLON] = ACTIONS(7107), - [anon_sym_COLON_COLON] = ACTIONS(7109), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7109), - [anon_sym___based] = ACTIONS(7107), - [anon_sym_LBRACE] = ACTIONS(7109), - [anon_sym_RBRACE] = ACTIONS(7109), - [anon_sym_signed] = ACTIONS(7107), - [anon_sym_unsigned] = ACTIONS(7107), - [anon_sym_long] = ACTIONS(7107), - [anon_sym_short] = ACTIONS(7107), - [anon_sym_LBRACK] = ACTIONS(7109), - [anon_sym_const] = ACTIONS(7107), - [anon_sym_constexpr] = ACTIONS(7107), - [anon_sym_volatile] = ACTIONS(7107), - [anon_sym_restrict] = ACTIONS(7107), - [anon_sym___restrict__] = ACTIONS(7107), - [anon_sym__Atomic] = ACTIONS(7107), - [anon_sym__Noreturn] = ACTIONS(7107), - [anon_sym_noreturn] = ACTIONS(7107), - [anon_sym__Nonnull] = ACTIONS(7107), - [anon_sym_mutable] = ACTIONS(7107), - [anon_sym_constinit] = ACTIONS(7107), - [anon_sym_consteval] = ACTIONS(7107), - [anon_sym_alignas] = ACTIONS(7107), - [anon_sym__Alignas] = ACTIONS(7107), - [sym_primitive_type] = ACTIONS(7107), - [anon_sym_QMARK] = ACTIONS(7109), - [anon_sym_LT_EQ_GT] = ACTIONS(7109), - [anon_sym_or] = ACTIONS(7107), - [anon_sym_and] = ACTIONS(7107), - [anon_sym_bitor] = ACTIONS(7107), - [anon_sym_xor] = ACTIONS(7107), - [anon_sym_bitand] = ACTIONS(7107), - [anon_sym_not_eq] = ACTIONS(7107), - [anon_sym_DASH_DASH] = ACTIONS(7109), - [anon_sym_PLUS_PLUS] = ACTIONS(7109), - [anon_sym_DOT] = ACTIONS(7107), - [anon_sym_DOT_STAR] = ACTIONS(7109), - [anon_sym_DASH_GT] = ACTIONS(7109), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7107), - [anon_sym_override] = ACTIONS(7107), - [anon_sym_requires] = ACTIONS(7107), - [anon_sym_COLON_RBRACK] = ACTIONS(7109), - }, - [STATE(2886)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(4192), - [sym_ms_pointer_modifier] = STATE(2962), - [sym__abstract_declarator] = STATE(6651), - [sym_abstract_parenthesized_declarator] = STATE(6488), - [sym_abstract_pointer_declarator] = STATE(6488), - [sym_abstract_function_declarator] = STATE(6488), - [sym_abstract_array_declarator] = STATE(6488), - [sym_type_qualifier] = STATE(3896), - [sym_alignas_qualifier] = STATE(3785), - [sym_parameter_list] = STATE(2144), - [sym_abstract_reference_declarator] = STATE(6488), - [sym__function_declarator_seq] = STATE(6497), - [aux_sym__type_definition_type_repeat1] = STATE(3896), - [aux_sym_pointer_declarator_repeat1] = STATE(2962), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(8224), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_PLUS] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(8589), - [anon_sym_SLASH] = ACTIONS(6457), - [anon_sym_PERCENT] = ACTIONS(6459), - [anon_sym_PIPE_PIPE] = ACTIONS(6459), - [anon_sym_AMP_AMP] = ACTIONS(8591), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_CARET] = ACTIONS(6459), - [anon_sym_AMP] = ACTIONS(8593), - [anon_sym_EQ_EQ] = ACTIONS(6459), - [anon_sym_BANG_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_GT_EQ] = ACTIONS(6457), - [anon_sym_LT_EQ] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_LT_LT] = ACTIONS(6459), - [anon_sym_GT_GT] = ACTIONS(6457), - [anon_sym___extension__] = ACTIONS(8232), - [sym_ms_restrict_modifier] = ACTIONS(8234), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8236), - [sym_ms_signed_ptr_modifier] = ACTIONS(8236), - [anon_sym__unaligned] = ACTIONS(8238), - [anon_sym___unaligned] = ACTIONS(8238), - [anon_sym_LBRACK] = ACTIONS(8240), - [anon_sym_const] = ACTIONS(8242), - [anon_sym_constexpr] = ACTIONS(8232), - [anon_sym_volatile] = ACTIONS(8232), - [anon_sym_restrict] = ACTIONS(8232), - [anon_sym___restrict__] = ACTIONS(8232), - [anon_sym__Atomic] = ACTIONS(8232), - [anon_sym__Noreturn] = ACTIONS(8232), - [anon_sym_noreturn] = ACTIONS(8232), - [anon_sym__Nonnull] = ACTIONS(8232), - [anon_sym_mutable] = ACTIONS(8232), - [anon_sym_constinit] = ACTIONS(8232), - [anon_sym_consteval] = ACTIONS(8232), - [anon_sym_alignas] = ACTIONS(8244), - [anon_sym__Alignas] = ACTIONS(8244), - [anon_sym_QMARK] = ACTIONS(6459), - [anon_sym_LT_EQ_GT] = ACTIONS(6459), - [anon_sym_or] = ACTIONS(6459), - [anon_sym_and] = ACTIONS(6459), - [anon_sym_bitor] = ACTIONS(6459), - [anon_sym_xor] = ACTIONS(6459), - [anon_sym_bitand] = ACTIONS(6459), - [anon_sym_not_eq] = ACTIONS(6459), - [anon_sym_DASH_DASH] = ACTIONS(6459), - [anon_sym_PLUS_PLUS] = ACTIONS(6459), - [anon_sym_DOT] = ACTIONS(6457), - [anon_sym_DOT_STAR] = ACTIONS(6459), - [anon_sym_DASH_GT] = ACTIONS(6459), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(6459), - }, - [STATE(2887)] = { - [sym_decltype_auto] = STATE(3396), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6800), - [anon_sym_and] = ACTIONS(6800), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6800), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6798), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8495), - [anon_sym_decltype] = ACTIONS(6592), - [anon_sym_final] = ACTIONS(6800), - [anon_sym_override] = ACTIONS(6800), - [anon_sym_requires] = ACTIONS(6800), - [anon_sym_DASH_GT_STAR] = ACTIONS(6800), - }, - [STATE(2888)] = { - [sym_attribute_specifier] = STATE(4161), - [sym_attribute_declaration] = STATE(4518), - [sym_gnu_asm_expression] = STATE(8999), - [sym_virtual_specifier] = STATE(4532), - [sym__function_attributes_end] = STATE(4242), - [sym__function_postfix] = STATE(4984), - [sym_trailing_return_type] = STATE(4424), - [sym_requires_clause] = STATE(4984), - [aux_sym_type_definition_repeat1] = STATE(4161), - [aux_sym_attributed_declarator_repeat1] = STATE(4518), - [aux_sym__function_postfix_repeat1] = STATE(4532), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7546), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6361), - [anon_sym___attribute] = ACTIONS(6363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7546), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7951), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6384), - [anon_sym_override] = ACTIONS(6384), - [anon_sym_GT2] = ACTIONS(7544), - [anon_sym_requires] = ACTIONS(6386), - }, - [STATE(2889)] = { - [sym_identifier] = ACTIONS(8595), - [anon_sym_LPAREN2] = ACTIONS(8597), - [anon_sym_TILDE] = ACTIONS(8597), - [anon_sym_STAR] = ACTIONS(8597), - [anon_sym_PIPE_PIPE] = ACTIONS(8597), - [anon_sym_AMP_AMP] = ACTIONS(8597), - [anon_sym_AMP] = ACTIONS(8595), - [anon_sym___extension__] = ACTIONS(8595), - [anon_sym_virtual] = ACTIONS(8595), - [anon_sym_extern] = ACTIONS(8595), - [anon_sym___attribute__] = ACTIONS(8595), - [anon_sym___attribute] = ACTIONS(8595), - [anon_sym_using] = ACTIONS(8595), - [anon_sym_COLON_COLON] = ACTIONS(8597), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8597), - [anon_sym___declspec] = ACTIONS(8595), - [anon_sym___based] = ACTIONS(8595), - [anon_sym___cdecl] = ACTIONS(8595), - [anon_sym___clrcall] = ACTIONS(8595), - [anon_sym___stdcall] = ACTIONS(8595), - [anon_sym___fastcall] = ACTIONS(8595), - [anon_sym___thiscall] = ACTIONS(8595), - [anon_sym___vectorcall] = ACTIONS(8595), - [anon_sym_LBRACE] = ACTIONS(8597), - [anon_sym_signed] = ACTIONS(8595), - [anon_sym_unsigned] = ACTIONS(8595), - [anon_sym_long] = ACTIONS(8595), - [anon_sym_short] = ACTIONS(8595), - [anon_sym_LBRACK] = ACTIONS(8595), - [anon_sym_static] = ACTIONS(8595), - [anon_sym_register] = ACTIONS(8595), - [anon_sym_inline] = ACTIONS(8595), - [anon_sym___inline] = ACTIONS(8595), - [anon_sym___inline__] = ACTIONS(8595), - [anon_sym___forceinline] = ACTIONS(8595), - [anon_sym_thread_local] = ACTIONS(8595), - [anon_sym___thread] = ACTIONS(8595), - [anon_sym_const] = ACTIONS(8595), - [anon_sym_constexpr] = ACTIONS(8595), - [anon_sym_volatile] = ACTIONS(8595), - [anon_sym_restrict] = ACTIONS(8595), - [anon_sym___restrict__] = ACTIONS(8595), - [anon_sym__Atomic] = ACTIONS(8595), - [anon_sym__Noreturn] = ACTIONS(8595), - [anon_sym_noreturn] = ACTIONS(8595), - [anon_sym__Nonnull] = ACTIONS(8595), - [anon_sym_mutable] = ACTIONS(8595), - [anon_sym_constinit] = ACTIONS(8595), - [anon_sym_consteval] = ACTIONS(8595), - [anon_sym_alignas] = ACTIONS(8595), - [anon_sym__Alignas] = ACTIONS(8595), - [sym_primitive_type] = ACTIONS(8595), - [anon_sym_enum] = ACTIONS(8595), - [anon_sym_class] = ACTIONS(8595), - [anon_sym_struct] = ACTIONS(8595), - [anon_sym_union] = ACTIONS(8595), - [anon_sym_or] = ACTIONS(8595), - [anon_sym_and] = ACTIONS(8595), - [anon_sym_typename] = ACTIONS(8595), - [anon_sym_DASH_GT] = ACTIONS(8597), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8595), - [anon_sym_decltype] = ACTIONS(8595), - [anon_sym_explicit] = ACTIONS(8595), - [anon_sym_template] = ACTIONS(8595), - [anon_sym_operator] = ACTIONS(8595), - [anon_sym_friend] = ACTIONS(8595), - [anon_sym_noexcept] = ACTIONS(8595), - [anon_sym_throw] = ACTIONS(8595), - [anon_sym_concept] = ACTIONS(8595), - [anon_sym_LBRACK_COLON] = ACTIONS(8597), + [anon_sym_GT2] = ACTIONS(7225), }, - [STATE(2890)] = { - [sym_identifier] = ACTIONS(8599), - [anon_sym_LPAREN2] = ACTIONS(8601), - [anon_sym_TILDE] = ACTIONS(8601), - [anon_sym_STAR] = ACTIONS(8601), - [anon_sym_PIPE_PIPE] = ACTIONS(8601), - [anon_sym_AMP_AMP] = ACTIONS(8601), - [anon_sym_AMP] = ACTIONS(8599), - [anon_sym___extension__] = ACTIONS(8599), - [anon_sym_virtual] = ACTIONS(8599), - [anon_sym_extern] = ACTIONS(8599), - [anon_sym___attribute__] = ACTIONS(8599), - [anon_sym___attribute] = ACTIONS(8599), - [anon_sym_using] = ACTIONS(8599), - [anon_sym_COLON_COLON] = ACTIONS(8601), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8601), - [anon_sym___declspec] = ACTIONS(8599), - [anon_sym___based] = ACTIONS(8599), - [anon_sym___cdecl] = ACTIONS(8599), - [anon_sym___clrcall] = ACTIONS(8599), - [anon_sym___stdcall] = ACTIONS(8599), - [anon_sym___fastcall] = ACTIONS(8599), - [anon_sym___thiscall] = ACTIONS(8599), - [anon_sym___vectorcall] = ACTIONS(8599), - [anon_sym_LBRACE] = ACTIONS(8601), - [anon_sym_signed] = ACTIONS(8599), - [anon_sym_unsigned] = ACTIONS(8599), - [anon_sym_long] = ACTIONS(8599), - [anon_sym_short] = ACTIONS(8599), - [anon_sym_LBRACK] = ACTIONS(8599), - [anon_sym_static] = ACTIONS(8599), - [anon_sym_register] = ACTIONS(8599), - [anon_sym_inline] = ACTIONS(8599), - [anon_sym___inline] = ACTIONS(8599), - [anon_sym___inline__] = ACTIONS(8599), - [anon_sym___forceinline] = ACTIONS(8599), - [anon_sym_thread_local] = ACTIONS(8599), - [anon_sym___thread] = ACTIONS(8599), - [anon_sym_const] = ACTIONS(8599), - [anon_sym_constexpr] = ACTIONS(8599), - [anon_sym_volatile] = ACTIONS(8599), - [anon_sym_restrict] = ACTIONS(8599), - [anon_sym___restrict__] = ACTIONS(8599), - [anon_sym__Atomic] = ACTIONS(8599), - [anon_sym__Noreturn] = ACTIONS(8599), - [anon_sym_noreturn] = ACTIONS(8599), - [anon_sym__Nonnull] = ACTIONS(8599), - [anon_sym_mutable] = ACTIONS(8599), - [anon_sym_constinit] = ACTIONS(8599), - [anon_sym_consteval] = ACTIONS(8599), - [anon_sym_alignas] = ACTIONS(8599), - [anon_sym__Alignas] = ACTIONS(8599), - [sym_primitive_type] = ACTIONS(8599), - [anon_sym_enum] = ACTIONS(8599), - [anon_sym_class] = ACTIONS(8599), - [anon_sym_struct] = ACTIONS(8599), - [anon_sym_union] = ACTIONS(8599), - [anon_sym_or] = ACTIONS(8599), - [anon_sym_and] = ACTIONS(8599), - [anon_sym_typename] = ACTIONS(8599), - [anon_sym_DASH_GT] = ACTIONS(8601), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8599), - [anon_sym_decltype] = ACTIONS(8599), - [anon_sym_explicit] = ACTIONS(8599), - [anon_sym_template] = ACTIONS(8599), - [anon_sym_operator] = ACTIONS(8599), - [anon_sym_friend] = ACTIONS(8599), - [anon_sym_noexcept] = ACTIONS(8599), - [anon_sym_throw] = ACTIONS(8599), - [anon_sym_concept] = ACTIONS(8599), - [anon_sym_LBRACK_COLON] = ACTIONS(8601), + [STATE(2659)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), + [anon_sym_COMMA] = ACTIONS(7090), + [anon_sym_LPAREN2] = ACTIONS(7090), + [anon_sym_DASH] = ACTIONS(7085), + [anon_sym_PLUS] = ACTIONS(7085), + [anon_sym_STAR] = ACTIONS(7085), + [anon_sym_SLASH] = ACTIONS(7085), + [anon_sym_PERCENT] = ACTIONS(7085), + [anon_sym_PIPE_PIPE] = ACTIONS(7090), + [anon_sym_AMP_AMP] = ACTIONS(7090), + [anon_sym_PIPE] = ACTIONS(7085), + [anon_sym_CARET] = ACTIONS(7085), + [anon_sym_AMP] = ACTIONS(7085), + [anon_sym_EQ_EQ] = ACTIONS(7090), + [anon_sym_BANG_EQ] = ACTIONS(7090), + [anon_sym_GT] = ACTIONS(7085), + [anon_sym_GT_EQ] = ACTIONS(7090), + [anon_sym_LT_EQ] = ACTIONS(7085), + [anon_sym_LT] = ACTIONS(7085), + [anon_sym_LT_LT] = ACTIONS(7085), + [anon_sym_GT_GT] = ACTIONS(7085), + [anon_sym___extension__] = ACTIONS(7090), + [anon_sym___attribute__] = ACTIONS(7090), + [anon_sym___attribute] = ACTIONS(7085), + [anon_sym_COLON] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7090), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_LBRACK] = ACTIONS(7090), + [anon_sym_RBRACK] = ACTIONS(7090), + [anon_sym_EQ] = ACTIONS(7085), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7090), + [anon_sym_volatile] = ACTIONS(7090), + [anon_sym_restrict] = ACTIONS(7090), + [anon_sym___restrict__] = ACTIONS(7090), + [anon_sym__Atomic] = ACTIONS(7090), + [anon_sym__Noreturn] = ACTIONS(7090), + [anon_sym_noreturn] = ACTIONS(7090), + [anon_sym__Nonnull] = ACTIONS(7090), + [anon_sym_mutable] = ACTIONS(7090), + [anon_sym_constinit] = ACTIONS(7090), + [anon_sym_consteval] = ACTIONS(7090), + [anon_sym_alignas] = ACTIONS(7090), + [anon_sym__Alignas] = ACTIONS(7090), + [anon_sym_QMARK] = ACTIONS(7090), + [anon_sym_STAR_EQ] = ACTIONS(7090), + [anon_sym_SLASH_EQ] = ACTIONS(7090), + [anon_sym_PERCENT_EQ] = ACTIONS(7090), + [anon_sym_PLUS_EQ] = ACTIONS(7090), + [anon_sym_DASH_EQ] = ACTIONS(7090), + [anon_sym_LT_LT_EQ] = ACTIONS(7090), + [anon_sym_GT_GT_EQ] = ACTIONS(7090), + [anon_sym_AMP_EQ] = ACTIONS(7090), + [anon_sym_CARET_EQ] = ACTIONS(7090), + [anon_sym_PIPE_EQ] = ACTIONS(7090), + [anon_sym_and_eq] = ACTIONS(7090), + [anon_sym_or_eq] = ACTIONS(7090), + [anon_sym_xor_eq] = ACTIONS(7090), + [anon_sym_LT_EQ_GT] = ACTIONS(7090), + [anon_sym_or] = ACTIONS(7085), + [anon_sym_and] = ACTIONS(7085), + [anon_sym_bitor] = ACTIONS(7090), + [anon_sym_xor] = ACTIONS(7085), + [anon_sym_bitand] = ACTIONS(7090), + [anon_sym_not_eq] = ACTIONS(7090), + [anon_sym_DASH_DASH] = ACTIONS(7090), + [anon_sym_PLUS_PLUS] = ACTIONS(7090), + [anon_sym_DOT] = ACTIONS(7085), + [anon_sym_DOT_STAR] = ACTIONS(7090), + [anon_sym_DASH_GT] = ACTIONS(7090), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7090), + [anon_sym_override] = ACTIONS(7090), + [anon_sym_requires] = ACTIONS(7090), }, - [STATE(2891)] = { - [sym_identifier] = ACTIONS(2803), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_PIPE_PIPE] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym___extension__] = ACTIONS(2803), - [anon_sym_virtual] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym___attribute__] = ACTIONS(2803), - [anon_sym___attribute] = ACTIONS(2803), - [anon_sym_using] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2803), - [anon_sym___based] = ACTIONS(2803), - [anon_sym___cdecl] = ACTIONS(2803), - [anon_sym___clrcall] = ACTIONS(2803), - [anon_sym___stdcall] = ACTIONS(2803), - [anon_sym___fastcall] = ACTIONS(2803), - [anon_sym___thiscall] = ACTIONS(2803), - [anon_sym___vectorcall] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_signed] = ACTIONS(2803), - [anon_sym_unsigned] = ACTIONS(2803), - [anon_sym_long] = ACTIONS(2803), - [anon_sym_short] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_register] = ACTIONS(2803), - [anon_sym_inline] = ACTIONS(2803), - [anon_sym___inline] = ACTIONS(2803), - [anon_sym___inline__] = ACTIONS(2803), - [anon_sym___forceinline] = ACTIONS(2803), - [anon_sym_thread_local] = ACTIONS(2803), - [anon_sym___thread] = ACTIONS(2803), - [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__Nonnull] = ACTIONS(2803), - [anon_sym_mutable] = ACTIONS(2803), - [anon_sym_constinit] = ACTIONS(2803), - [anon_sym_consteval] = ACTIONS(2803), - [anon_sym_alignas] = ACTIONS(2803), - [anon_sym__Alignas] = ACTIONS(2803), - [sym_primitive_type] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_or] = ACTIONS(2803), - [anon_sym_and] = ACTIONS(2803), - [anon_sym_typename] = ACTIONS(2803), - [anon_sym_DASH_GT] = ACTIONS(2801), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2803), - [anon_sym_decltype] = ACTIONS(2803), - [anon_sym_explicit] = ACTIONS(2803), - [anon_sym_template] = ACTIONS(2803), - [anon_sym_operator] = ACTIONS(2803), - [anon_sym_friend] = ACTIONS(2803), - [anon_sym_noexcept] = ACTIONS(2803), - [anon_sym_throw] = ACTIONS(2803), - [anon_sym_concept] = ACTIONS(2803), - [anon_sym_LBRACK_COLON] = ACTIONS(2801), + [STATE(2660)] = { + [sym_identifier] = ACTIONS(7077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), + [anon_sym_COMMA] = ACTIONS(7079), + [anon_sym_RPAREN] = ACTIONS(7079), + [aux_sym_preproc_if_token2] = ACTIONS(7079), + [aux_sym_preproc_else_token1] = ACTIONS(7079), + [aux_sym_preproc_elif_token1] = ACTIONS(7077), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7079), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7079), + [anon_sym_LPAREN2] = ACTIONS(7079), + [anon_sym_DASH] = ACTIONS(7077), + [anon_sym_PLUS] = ACTIONS(7077), + [anon_sym_STAR] = ACTIONS(7079), + [anon_sym_SLASH] = ACTIONS(7077), + [anon_sym_PERCENT] = ACTIONS(7079), + [anon_sym_PIPE_PIPE] = ACTIONS(7079), + [anon_sym_AMP_AMP] = ACTIONS(7079), + [anon_sym_PIPE] = ACTIONS(7077), + [anon_sym_CARET] = ACTIONS(7079), + [anon_sym_AMP] = ACTIONS(7077), + [anon_sym_EQ_EQ] = ACTIONS(7079), + [anon_sym_BANG_EQ] = ACTIONS(7079), + [anon_sym_GT] = ACTIONS(7077), + [anon_sym_GT_EQ] = ACTIONS(7079), + [anon_sym_LT_EQ] = ACTIONS(7077), + [anon_sym_LT] = ACTIONS(7077), + [anon_sym_LT_LT] = ACTIONS(7079), + [anon_sym_GT_GT] = ACTIONS(7079), + [anon_sym_SEMI] = ACTIONS(7079), + [anon_sym___extension__] = ACTIONS(7077), + [anon_sym___attribute__] = ACTIONS(7077), + [anon_sym___attribute] = ACTIONS(7077), + [anon_sym_COLON] = ACTIONS(7077), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7079), + [anon_sym_LBRACE] = ACTIONS(7079), + [anon_sym_RBRACE] = ACTIONS(7079), + [anon_sym_signed] = ACTIONS(7077), + [anon_sym_unsigned] = ACTIONS(7077), + [anon_sym_long] = ACTIONS(7077), + [anon_sym_short] = ACTIONS(7077), + [anon_sym_LBRACK] = ACTIONS(7079), + [anon_sym_const] = ACTIONS(7077), + [anon_sym_constexpr] = ACTIONS(7077), + [anon_sym_volatile] = ACTIONS(7077), + [anon_sym_restrict] = ACTIONS(7077), + [anon_sym___restrict__] = ACTIONS(7077), + [anon_sym__Atomic] = ACTIONS(7077), + [anon_sym__Noreturn] = ACTIONS(7077), + [anon_sym_noreturn] = ACTIONS(7077), + [anon_sym__Nonnull] = ACTIONS(7077), + [anon_sym_mutable] = ACTIONS(7077), + [anon_sym_constinit] = ACTIONS(7077), + [anon_sym_consteval] = ACTIONS(7077), + [anon_sym_alignas] = ACTIONS(7077), + [anon_sym__Alignas] = ACTIONS(7077), + [sym_primitive_type] = ACTIONS(7077), + [anon_sym_QMARK] = ACTIONS(7079), + [anon_sym_LT_EQ_GT] = ACTIONS(7079), + [anon_sym_or] = ACTIONS(7077), + [anon_sym_and] = ACTIONS(7077), + [anon_sym_bitor] = ACTIONS(7077), + [anon_sym_xor] = ACTIONS(7077), + [anon_sym_bitand] = ACTIONS(7077), + [anon_sym_not_eq] = ACTIONS(7077), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_DOT] = ACTIONS(7077), + [anon_sym_DOT_STAR] = ACTIONS(7079), + [anon_sym_DASH_GT] = ACTIONS(7079), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7077), + [anon_sym_override] = ACTIONS(7077), + [anon_sym_requires] = ACTIONS(7077), + [anon_sym_COLON_RBRACK] = ACTIONS(7079), }, - [STATE(2892)] = { - [sym_string_literal] = STATE(4004), - [sym_template_argument_list] = STATE(5595), - [sym_raw_string_literal] = STATE(4004), - [sym_identifier] = ACTIONS(5260), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [aux_sym_preproc_if_token2] = ACTIONS(5253), - [aux_sym_preproc_else_token1] = ACTIONS(5253), - [aux_sym_preproc_elif_token1] = ACTIONS(5260), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5253), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(8603), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(6445), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(6447), - [anon_sym_SLASH_EQ] = ACTIONS(6447), - [anon_sym_PERCENT_EQ] = ACTIONS(6447), - [anon_sym_PLUS_EQ] = ACTIONS(6447), - [anon_sym_DASH_EQ] = ACTIONS(6447), - [anon_sym_LT_LT_EQ] = ACTIONS(6447), - [anon_sym_GT_GT_EQ] = ACTIONS(6447), - [anon_sym_AMP_EQ] = ACTIONS(6447), - [anon_sym_CARET_EQ] = ACTIONS(6447), - [anon_sym_PIPE_EQ] = ACTIONS(6447), - [anon_sym_and_eq] = ACTIONS(6445), - [anon_sym_or_eq] = ACTIONS(6445), - [anon_sym_xor_eq] = ACTIONS(6445), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5260), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5260), - [anon_sym_not_eq] = ACTIONS(5260), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [STATE(2661)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7457), + [anon_sym_COMMA] = ACTIONS(7457), + [anon_sym_LPAREN2] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7459), + [anon_sym_PLUS] = ACTIONS(7459), + [anon_sym_STAR] = ACTIONS(7459), + [anon_sym_SLASH] = ACTIONS(7459), + [anon_sym_PERCENT] = ACTIONS(7459), + [anon_sym_PIPE_PIPE] = ACTIONS(7457), + [anon_sym_AMP_AMP] = ACTIONS(7457), + [anon_sym_PIPE] = ACTIONS(7459), + [anon_sym_CARET] = ACTIONS(7459), + [anon_sym_AMP] = ACTIONS(7459), + [anon_sym_EQ_EQ] = ACTIONS(7457), + [anon_sym_BANG_EQ] = ACTIONS(7457), + [anon_sym_GT] = ACTIONS(7459), + [anon_sym_GT_EQ] = ACTIONS(7457), + [anon_sym_LT_EQ] = ACTIONS(7459), + [anon_sym_LT] = ACTIONS(7459), + [anon_sym_LT_LT] = ACTIONS(7459), + [anon_sym_GT_GT] = ACTIONS(7459), + [anon_sym___extension__] = ACTIONS(7457), + [anon_sym___attribute__] = ACTIONS(7457), + [anon_sym___attribute] = ACTIONS(7459), + [anon_sym_COLON] = ACTIONS(7459), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(7457), + [anon_sym_LBRACK] = ACTIONS(7457), + [anon_sym_RBRACK] = ACTIONS(7457), + [anon_sym_EQ] = ACTIONS(7459), + [anon_sym_const] = ACTIONS(7459), + [anon_sym_constexpr] = ACTIONS(7457), + [anon_sym_volatile] = ACTIONS(7457), + [anon_sym_restrict] = ACTIONS(7457), + [anon_sym___restrict__] = ACTIONS(7457), + [anon_sym__Atomic] = ACTIONS(7457), + [anon_sym__Noreturn] = ACTIONS(7457), + [anon_sym_noreturn] = ACTIONS(7457), + [anon_sym__Nonnull] = ACTIONS(7457), + [anon_sym_mutable] = ACTIONS(7457), + [anon_sym_constinit] = ACTIONS(7457), + [anon_sym_consteval] = ACTIONS(7457), + [anon_sym_alignas] = ACTIONS(7457), + [anon_sym__Alignas] = ACTIONS(7457), + [anon_sym_QMARK] = ACTIONS(7457), + [anon_sym_STAR_EQ] = ACTIONS(7457), + [anon_sym_SLASH_EQ] = ACTIONS(7457), + [anon_sym_PERCENT_EQ] = ACTIONS(7457), + [anon_sym_PLUS_EQ] = ACTIONS(7457), + [anon_sym_DASH_EQ] = ACTIONS(7457), + [anon_sym_LT_LT_EQ] = ACTIONS(7457), + [anon_sym_GT_GT_EQ] = ACTIONS(7457), + [anon_sym_AMP_EQ] = ACTIONS(7457), + [anon_sym_CARET_EQ] = ACTIONS(7457), + [anon_sym_PIPE_EQ] = ACTIONS(7457), + [anon_sym_and_eq] = ACTIONS(7457), + [anon_sym_or_eq] = ACTIONS(7457), + [anon_sym_xor_eq] = ACTIONS(7457), + [anon_sym_LT_EQ_GT] = ACTIONS(7457), + [anon_sym_or] = ACTIONS(7459), + [anon_sym_and] = ACTIONS(7459), + [anon_sym_bitor] = ACTIONS(7457), + [anon_sym_xor] = ACTIONS(7459), + [anon_sym_bitand] = ACTIONS(7457), + [anon_sym_not_eq] = ACTIONS(7457), + [anon_sym_DASH_DASH] = ACTIONS(7457), + [anon_sym_PLUS_PLUS] = ACTIONS(7457), + [anon_sym_DOT] = ACTIONS(7459), + [anon_sym_DOT_STAR] = ACTIONS(7457), + [anon_sym_DASH_GT] = ACTIONS(7457), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7457), + [anon_sym_override] = ACTIONS(7457), + [anon_sym_requires] = ACTIONS(7457), }, - [STATE(2893)] = { - [sym_identifier] = ACTIONS(8606), - [anon_sym_LPAREN2] = ACTIONS(8608), - [anon_sym_TILDE] = ACTIONS(8608), - [anon_sym_STAR] = ACTIONS(8608), - [anon_sym_PIPE_PIPE] = ACTIONS(8608), - [anon_sym_AMP_AMP] = ACTIONS(8608), - [anon_sym_AMP] = ACTIONS(8606), - [anon_sym___extension__] = ACTIONS(8606), - [anon_sym_virtual] = ACTIONS(8606), - [anon_sym_extern] = ACTIONS(8606), - [anon_sym___attribute__] = ACTIONS(8606), - [anon_sym___attribute] = ACTIONS(8606), - [anon_sym_using] = ACTIONS(8606), - [anon_sym_COLON_COLON] = ACTIONS(8608), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8608), - [anon_sym___declspec] = ACTIONS(8606), - [anon_sym___based] = ACTIONS(8606), - [anon_sym___cdecl] = ACTIONS(8606), - [anon_sym___clrcall] = ACTIONS(8606), - [anon_sym___stdcall] = ACTIONS(8606), - [anon_sym___fastcall] = ACTIONS(8606), - [anon_sym___thiscall] = ACTIONS(8606), - [anon_sym___vectorcall] = ACTIONS(8606), - [anon_sym_LBRACE] = ACTIONS(8608), - [anon_sym_signed] = ACTIONS(8606), - [anon_sym_unsigned] = ACTIONS(8606), - [anon_sym_long] = ACTIONS(8606), - [anon_sym_short] = ACTIONS(8606), - [anon_sym_LBRACK] = ACTIONS(8606), - [anon_sym_static] = ACTIONS(8606), - [anon_sym_register] = ACTIONS(8606), - [anon_sym_inline] = ACTIONS(8606), - [anon_sym___inline] = ACTIONS(8606), - [anon_sym___inline__] = ACTIONS(8606), - [anon_sym___forceinline] = ACTIONS(8606), - [anon_sym_thread_local] = ACTIONS(8606), - [anon_sym___thread] = ACTIONS(8606), - [anon_sym_const] = ACTIONS(8606), - [anon_sym_constexpr] = ACTIONS(8606), - [anon_sym_volatile] = ACTIONS(8606), - [anon_sym_restrict] = ACTIONS(8606), - [anon_sym___restrict__] = ACTIONS(8606), - [anon_sym__Atomic] = ACTIONS(8606), - [anon_sym__Noreturn] = ACTIONS(8606), - [anon_sym_noreturn] = ACTIONS(8606), - [anon_sym__Nonnull] = ACTIONS(8606), - [anon_sym_mutable] = ACTIONS(8606), - [anon_sym_constinit] = ACTIONS(8606), - [anon_sym_consteval] = ACTIONS(8606), - [anon_sym_alignas] = ACTIONS(8606), - [anon_sym__Alignas] = ACTIONS(8606), - [sym_primitive_type] = ACTIONS(8606), - [anon_sym_enum] = ACTIONS(8606), - [anon_sym_class] = ACTIONS(8606), - [anon_sym_struct] = ACTIONS(8606), - [anon_sym_union] = ACTIONS(8606), - [anon_sym_or] = ACTIONS(8606), - [anon_sym_and] = ACTIONS(8606), - [anon_sym_typename] = ACTIONS(8606), - [anon_sym_DASH_GT] = ACTIONS(8608), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8606), - [anon_sym_decltype] = ACTIONS(8606), - [anon_sym_explicit] = ACTIONS(8606), - [anon_sym_template] = ACTIONS(8606), - [anon_sym_operator] = ACTIONS(8606), - [anon_sym_friend] = ACTIONS(8606), - [anon_sym_noexcept] = ACTIONS(8606), - [anon_sym_throw] = ACTIONS(8606), - [anon_sym_concept] = ACTIONS(8606), - [anon_sym_LBRACK_COLON] = ACTIONS(8608), + [STATE(2662)] = { + [sym_attribute_specifier] = STATE(3001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7523), + [anon_sym_COMMA] = ACTIONS(7523), + [anon_sym_RPAREN] = ACTIONS(7523), + [anon_sym_LPAREN2] = ACTIONS(7523), + [anon_sym_DASH] = ACTIONS(7521), + [anon_sym_PLUS] = ACTIONS(7521), + [anon_sym_STAR] = ACTIONS(7521), + [anon_sym_SLASH] = ACTIONS(7521), + [anon_sym_PERCENT] = ACTIONS(7521), + [anon_sym_PIPE_PIPE] = ACTIONS(7523), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE] = ACTIONS(7521), + [anon_sym_CARET] = ACTIONS(7521), + [anon_sym_AMP] = ACTIONS(7521), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_GT] = ACTIONS(7521), + [anon_sym_GT_EQ] = ACTIONS(7523), + [anon_sym_LT_EQ] = ACTIONS(7521), + [anon_sym_LT] = ACTIONS(7521), + [anon_sym_LT_LT] = ACTIONS(7521), + [anon_sym_GT_GT] = ACTIONS(7521), + [anon_sym___extension__] = ACTIONS(7523), + [anon_sym___attribute__] = ACTIONS(8152), + [anon_sym___attribute] = ACTIONS(8154), + [anon_sym_LBRACE] = ACTIONS(7523), + [anon_sym_LBRACK] = ACTIONS(7523), + [anon_sym_EQ] = ACTIONS(7521), + [anon_sym_const] = ACTIONS(7521), + [anon_sym_constexpr] = ACTIONS(7523), + [anon_sym_volatile] = ACTIONS(7523), + [anon_sym_restrict] = ACTIONS(7523), + [anon_sym___restrict__] = ACTIONS(7523), + [anon_sym__Atomic] = ACTIONS(7523), + [anon_sym__Noreturn] = ACTIONS(7523), + [anon_sym_noreturn] = ACTIONS(7523), + [anon_sym__Nonnull] = ACTIONS(7523), + [anon_sym_mutable] = ACTIONS(7523), + [anon_sym_constinit] = ACTIONS(7523), + [anon_sym_consteval] = ACTIONS(7523), + [anon_sym_alignas] = ACTIONS(7523), + [anon_sym__Alignas] = ACTIONS(7523), + [anon_sym_QMARK] = ACTIONS(7523), + [anon_sym_STAR_EQ] = ACTIONS(7523), + [anon_sym_SLASH_EQ] = ACTIONS(7523), + [anon_sym_PERCENT_EQ] = ACTIONS(7523), + [anon_sym_PLUS_EQ] = ACTIONS(7523), + [anon_sym_DASH_EQ] = ACTIONS(7523), + [anon_sym_LT_LT_EQ] = ACTIONS(7523), + [anon_sym_GT_GT_EQ] = ACTIONS(7523), + [anon_sym_AMP_EQ] = ACTIONS(7523), + [anon_sym_CARET_EQ] = ACTIONS(7523), + [anon_sym_PIPE_EQ] = ACTIONS(7523), + [anon_sym_and_eq] = ACTIONS(7523), + [anon_sym_or_eq] = ACTIONS(7523), + [anon_sym_xor_eq] = ACTIONS(7523), + [anon_sym_LT_EQ_GT] = ACTIONS(7523), + [anon_sym_or] = ACTIONS(7521), + [anon_sym_and] = ACTIONS(7521), + [anon_sym_bitor] = ACTIONS(7523), + [anon_sym_xor] = ACTIONS(7521), + [anon_sym_bitand] = ACTIONS(7523), + [anon_sym_not_eq] = ACTIONS(7523), + [anon_sym_DASH_DASH] = ACTIONS(7523), + [anon_sym_PLUS_PLUS] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(7521), + [anon_sym_DOT_STAR] = ACTIONS(7523), + [anon_sym_DASH_GT] = ACTIONS(7521), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7523), + [anon_sym_override] = ACTIONS(7523), + [anon_sym_requires] = ACTIONS(7523), + [anon_sym_DASH_GT_STAR] = ACTIONS(7523), }, - [STATE(2894)] = { - [sym_attribute_specifier] = STATE(3471), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7093), - [anon_sym_COMMA] = ACTIONS(7093), - [anon_sym_RPAREN] = ACTIONS(7093), - [anon_sym_LPAREN2] = ACTIONS(7093), - [anon_sym_DASH] = ACTIONS(7091), - [anon_sym_PLUS] = ACTIONS(7091), - [anon_sym_STAR] = ACTIONS(7091), - [anon_sym_SLASH] = ACTIONS(7091), - [anon_sym_PERCENT] = ACTIONS(7091), - [anon_sym_PIPE_PIPE] = ACTIONS(7093), - [anon_sym_AMP_AMP] = ACTIONS(7093), - [anon_sym_PIPE] = ACTIONS(7091), - [anon_sym_CARET] = ACTIONS(7091), - [anon_sym_AMP] = ACTIONS(7091), - [anon_sym_EQ_EQ] = ACTIONS(7093), - [anon_sym_BANG_EQ] = ACTIONS(7093), - [anon_sym_GT] = ACTIONS(7091), - [anon_sym_GT_EQ] = ACTIONS(7093), - [anon_sym_LT_EQ] = ACTIONS(7091), - [anon_sym_LT] = ACTIONS(7091), - [anon_sym_LT_LT] = ACTIONS(7091), - [anon_sym_GT_GT] = ACTIONS(7091), - [anon_sym___extension__] = ACTIONS(7093), - [anon_sym___attribute__] = ACTIONS(8189), - [anon_sym___attribute] = ACTIONS(8191), - [anon_sym_LBRACE] = ACTIONS(7093), - [anon_sym_LBRACK] = ACTIONS(7093), - [anon_sym_EQ] = ACTIONS(7091), - [anon_sym_const] = ACTIONS(7091), - [anon_sym_constexpr] = ACTIONS(7093), - [anon_sym_volatile] = ACTIONS(7093), - [anon_sym_restrict] = ACTIONS(7093), - [anon_sym___restrict__] = ACTIONS(7093), - [anon_sym__Atomic] = ACTIONS(7093), - [anon_sym__Noreturn] = ACTIONS(7093), - [anon_sym_noreturn] = ACTIONS(7093), - [anon_sym__Nonnull] = ACTIONS(7093), - [anon_sym_mutable] = ACTIONS(7093), - [anon_sym_constinit] = ACTIONS(7093), - [anon_sym_consteval] = ACTIONS(7093), - [anon_sym_alignas] = ACTIONS(7093), - [anon_sym__Alignas] = ACTIONS(7093), - [anon_sym_QMARK] = ACTIONS(7093), - [anon_sym_STAR_EQ] = ACTIONS(7093), - [anon_sym_SLASH_EQ] = ACTIONS(7093), - [anon_sym_PERCENT_EQ] = ACTIONS(7093), - [anon_sym_PLUS_EQ] = ACTIONS(7093), - [anon_sym_DASH_EQ] = ACTIONS(7093), - [anon_sym_LT_LT_EQ] = ACTIONS(7093), - [anon_sym_GT_GT_EQ] = ACTIONS(7093), - [anon_sym_AMP_EQ] = ACTIONS(7093), - [anon_sym_CARET_EQ] = ACTIONS(7093), - [anon_sym_PIPE_EQ] = ACTIONS(7093), - [anon_sym_LT_EQ_GT] = ACTIONS(7093), - [anon_sym_or] = ACTIONS(7093), - [anon_sym_and] = ACTIONS(7093), - [anon_sym_bitor] = ACTIONS(7093), - [anon_sym_xor] = ACTIONS(7093), - [anon_sym_bitand] = ACTIONS(7093), - [anon_sym_not_eq] = ACTIONS(7093), - [anon_sym_DASH_DASH] = ACTIONS(7093), - [anon_sym_PLUS_PLUS] = ACTIONS(7093), - [anon_sym_DOT] = ACTIONS(7091), - [anon_sym_DOT_STAR] = ACTIONS(7093), - [anon_sym_DASH_GT] = ACTIONS(7091), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7093), - [anon_sym_override] = ACTIONS(7093), - [anon_sym_requires] = ACTIONS(7093), - [anon_sym_DASH_GT_STAR] = ACTIONS(7093), + [STATE(2663)] = { + [sym_identifier] = ACTIONS(7132), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7134), + [anon_sym_COMMA] = ACTIONS(7134), + [anon_sym_RPAREN] = ACTIONS(7134), + [aux_sym_preproc_if_token2] = ACTIONS(7134), + [aux_sym_preproc_else_token1] = ACTIONS(7134), + [aux_sym_preproc_elif_token1] = ACTIONS(7132), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7134), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7134), + [anon_sym_LPAREN2] = ACTIONS(7134), + [anon_sym_DASH] = ACTIONS(7132), + [anon_sym_PLUS] = ACTIONS(7132), + [anon_sym_STAR] = ACTIONS(7134), + [anon_sym_SLASH] = ACTIONS(7132), + [anon_sym_PERCENT] = ACTIONS(7134), + [anon_sym_PIPE_PIPE] = ACTIONS(7134), + [anon_sym_AMP_AMP] = ACTIONS(7134), + [anon_sym_PIPE] = ACTIONS(7132), + [anon_sym_CARET] = ACTIONS(7134), + [anon_sym_AMP] = ACTIONS(7132), + [anon_sym_EQ_EQ] = ACTIONS(7134), + [anon_sym_BANG_EQ] = ACTIONS(7134), + [anon_sym_GT] = ACTIONS(7132), + [anon_sym_GT_EQ] = ACTIONS(7134), + [anon_sym_LT_EQ] = ACTIONS(7132), + [anon_sym_LT] = ACTIONS(7132), + [anon_sym_LT_LT] = ACTIONS(7134), + [anon_sym_GT_GT] = ACTIONS(7134), + [anon_sym_SEMI] = ACTIONS(7134), + [anon_sym___extension__] = ACTIONS(7132), + [anon_sym___attribute__] = ACTIONS(7132), + [anon_sym___attribute] = ACTIONS(7132), + [anon_sym_COLON] = ACTIONS(7132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7134), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7134), + [anon_sym_RBRACE] = ACTIONS(7134), + [anon_sym_LBRACK] = ACTIONS(7132), + [anon_sym_const] = ACTIONS(7132), + [anon_sym_constexpr] = ACTIONS(7132), + [anon_sym_volatile] = ACTIONS(7132), + [anon_sym_restrict] = ACTIONS(7132), + [anon_sym___restrict__] = ACTIONS(7132), + [anon_sym__Atomic] = ACTIONS(7132), + [anon_sym__Noreturn] = ACTIONS(7132), + [anon_sym_noreturn] = ACTIONS(7132), + [anon_sym__Nonnull] = ACTIONS(7132), + [anon_sym_mutable] = ACTIONS(7132), + [anon_sym_constinit] = ACTIONS(7132), + [anon_sym_consteval] = ACTIONS(7132), + [anon_sym_alignas] = ACTIONS(7132), + [anon_sym__Alignas] = ACTIONS(7132), + [anon_sym_QMARK] = ACTIONS(7134), + [anon_sym_LT_EQ_GT] = ACTIONS(7134), + [anon_sym_or] = ACTIONS(7132), + [anon_sym_and] = ACTIONS(7132), + [anon_sym_bitor] = ACTIONS(7132), + [anon_sym_xor] = ACTIONS(7132), + [anon_sym_bitand] = ACTIONS(7132), + [anon_sym_not_eq] = ACTIONS(7132), + [anon_sym_DASH_DASH] = ACTIONS(7134), + [anon_sym_PLUS_PLUS] = ACTIONS(7134), + [anon_sym_asm] = ACTIONS(7132), + [anon_sym___asm__] = ACTIONS(7132), + [anon_sym___asm] = ACTIONS(7132), + [anon_sym_DOT] = ACTIONS(7132), + [anon_sym_DOT_STAR] = ACTIONS(7134), + [anon_sym_DASH_GT] = ACTIONS(7134), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7132), + [anon_sym_override] = ACTIONS(7132), + [anon_sym_noexcept] = ACTIONS(7132), + [anon_sym_throw] = ACTIONS(7132), + [anon_sym_requires] = ACTIONS(7132), + [anon_sym_COLON_RBRACK] = ACTIONS(7134), }, - [STATE(2895)] = { - [sym_identifier] = ACTIONS(8610), - [anon_sym_LPAREN2] = ACTIONS(8612), - [anon_sym_TILDE] = ACTIONS(8612), - [anon_sym_STAR] = ACTIONS(8612), - [anon_sym_PIPE_PIPE] = ACTIONS(8612), - [anon_sym_AMP_AMP] = ACTIONS(8612), - [anon_sym_AMP] = ACTIONS(8610), - [anon_sym___extension__] = ACTIONS(8610), - [anon_sym_virtual] = ACTIONS(8610), - [anon_sym_extern] = ACTIONS(8610), - [anon_sym___attribute__] = ACTIONS(8610), - [anon_sym___attribute] = ACTIONS(8610), - [anon_sym_using] = ACTIONS(8610), - [anon_sym_COLON_COLON] = ACTIONS(8612), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8612), - [anon_sym___declspec] = ACTIONS(8610), - [anon_sym___based] = ACTIONS(8610), - [anon_sym___cdecl] = ACTIONS(8610), - [anon_sym___clrcall] = ACTIONS(8610), - [anon_sym___stdcall] = ACTIONS(8610), - [anon_sym___fastcall] = ACTIONS(8610), - [anon_sym___thiscall] = ACTIONS(8610), - [anon_sym___vectorcall] = ACTIONS(8610), - [anon_sym_LBRACE] = ACTIONS(8612), - [anon_sym_signed] = ACTIONS(8610), - [anon_sym_unsigned] = ACTIONS(8610), - [anon_sym_long] = ACTIONS(8610), - [anon_sym_short] = ACTIONS(8610), - [anon_sym_LBRACK] = ACTIONS(8610), - [anon_sym_static] = ACTIONS(8610), - [anon_sym_register] = ACTIONS(8610), - [anon_sym_inline] = ACTIONS(8610), - [anon_sym___inline] = ACTIONS(8610), - [anon_sym___inline__] = ACTIONS(8610), - [anon_sym___forceinline] = ACTIONS(8610), - [anon_sym_thread_local] = ACTIONS(8610), - [anon_sym___thread] = ACTIONS(8610), - [anon_sym_const] = ACTIONS(8610), - [anon_sym_constexpr] = ACTIONS(8610), - [anon_sym_volatile] = ACTIONS(8610), - [anon_sym_restrict] = ACTIONS(8610), - [anon_sym___restrict__] = ACTIONS(8610), - [anon_sym__Atomic] = ACTIONS(8610), - [anon_sym__Noreturn] = ACTIONS(8610), - [anon_sym_noreturn] = ACTIONS(8610), - [anon_sym__Nonnull] = ACTIONS(8610), - [anon_sym_mutable] = ACTIONS(8610), - [anon_sym_constinit] = ACTIONS(8610), - [anon_sym_consteval] = ACTIONS(8610), - [anon_sym_alignas] = ACTIONS(8610), - [anon_sym__Alignas] = ACTIONS(8610), - [sym_primitive_type] = ACTIONS(8610), - [anon_sym_enum] = ACTIONS(8610), - [anon_sym_class] = ACTIONS(8610), - [anon_sym_struct] = ACTIONS(8610), - [anon_sym_union] = ACTIONS(8610), - [anon_sym_or] = ACTIONS(8610), - [anon_sym_and] = ACTIONS(8610), - [anon_sym_typename] = ACTIONS(8610), - [anon_sym_DASH_GT] = ACTIONS(8612), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8610), - [anon_sym_decltype] = ACTIONS(8610), - [anon_sym_explicit] = ACTIONS(8610), - [anon_sym_template] = ACTIONS(8610), - [anon_sym_operator] = ACTIONS(8610), - [anon_sym_friend] = ACTIONS(8610), - [anon_sym_noexcept] = ACTIONS(8610), - [anon_sym_throw] = ACTIONS(8610), - [anon_sym_concept] = ACTIONS(8610), - [anon_sym_LBRACK_COLON] = ACTIONS(8612), + [STATE(2664)] = { + [sym_identifier] = ACTIONS(7081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7083), + [anon_sym_COMMA] = ACTIONS(7083), + [anon_sym_RPAREN] = ACTIONS(7083), + [aux_sym_preproc_if_token2] = ACTIONS(7083), + [aux_sym_preproc_else_token1] = ACTIONS(7083), + [aux_sym_preproc_elif_token1] = ACTIONS(7081), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7083), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7083), + [anon_sym_LPAREN2] = ACTIONS(7083), + [anon_sym_DASH] = ACTIONS(7081), + [anon_sym_PLUS] = ACTIONS(7081), + [anon_sym_STAR] = ACTIONS(7083), + [anon_sym_SLASH] = ACTIONS(7081), + [anon_sym_PERCENT] = ACTIONS(7083), + [anon_sym_PIPE_PIPE] = ACTIONS(7083), + [anon_sym_AMP_AMP] = ACTIONS(7083), + [anon_sym_PIPE] = ACTIONS(7081), + [anon_sym_CARET] = ACTIONS(7083), + [anon_sym_AMP] = ACTIONS(7081), + [anon_sym_EQ_EQ] = ACTIONS(7083), + [anon_sym_BANG_EQ] = ACTIONS(7083), + [anon_sym_GT] = ACTIONS(7081), + [anon_sym_GT_EQ] = ACTIONS(7083), + [anon_sym_LT_EQ] = ACTIONS(7081), + [anon_sym_LT] = ACTIONS(7081), + [anon_sym_LT_LT] = ACTIONS(7083), + [anon_sym_GT_GT] = ACTIONS(7083), + [anon_sym_SEMI] = ACTIONS(7083), + [anon_sym___extension__] = ACTIONS(7081), + [anon_sym___attribute__] = ACTIONS(7081), + [anon_sym___attribute] = ACTIONS(7081), + [anon_sym_COLON] = ACTIONS(7081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7083), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7083), + [anon_sym_RBRACE] = ACTIONS(7083), + [anon_sym_LBRACK] = ACTIONS(7081), + [anon_sym_const] = ACTIONS(7081), + [anon_sym_constexpr] = ACTIONS(7081), + [anon_sym_volatile] = ACTIONS(7081), + [anon_sym_restrict] = ACTIONS(7081), + [anon_sym___restrict__] = ACTIONS(7081), + [anon_sym__Atomic] = ACTIONS(7081), + [anon_sym__Noreturn] = ACTIONS(7081), + [anon_sym_noreturn] = ACTIONS(7081), + [anon_sym__Nonnull] = ACTIONS(7081), + [anon_sym_mutable] = ACTIONS(7081), + [anon_sym_constinit] = ACTIONS(7081), + [anon_sym_consteval] = ACTIONS(7081), + [anon_sym_alignas] = ACTIONS(7081), + [anon_sym__Alignas] = ACTIONS(7081), + [anon_sym_QMARK] = ACTIONS(7083), + [anon_sym_LT_EQ_GT] = ACTIONS(7083), + [anon_sym_or] = ACTIONS(7081), + [anon_sym_and] = ACTIONS(7081), + [anon_sym_bitor] = ACTIONS(7081), + [anon_sym_xor] = ACTIONS(7081), + [anon_sym_bitand] = ACTIONS(7081), + [anon_sym_not_eq] = ACTIONS(7081), + [anon_sym_DASH_DASH] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7083), + [anon_sym_asm] = ACTIONS(7081), + [anon_sym___asm__] = ACTIONS(7081), + [anon_sym___asm] = ACTIONS(7081), + [anon_sym_DOT] = ACTIONS(7081), + [anon_sym_DOT_STAR] = ACTIONS(7083), + [anon_sym_DASH_GT] = ACTIONS(7083), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7081), + [anon_sym_override] = ACTIONS(7081), + [anon_sym_noexcept] = ACTIONS(7081), + [anon_sym_throw] = ACTIONS(7081), + [anon_sym_requires] = ACTIONS(7081), + [anon_sym_COLON_RBRACK] = ACTIONS(7083), }, - [STATE(2896)] = { - [sym_attribute_specifier] = STATE(3474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7097), - [anon_sym_COMMA] = ACTIONS(7097), - [anon_sym_RPAREN] = ACTIONS(7097), - [anon_sym_LPAREN2] = ACTIONS(7097), - [anon_sym_DASH] = ACTIONS(7095), - [anon_sym_PLUS] = ACTIONS(7095), - [anon_sym_STAR] = ACTIONS(7095), - [anon_sym_SLASH] = ACTIONS(7095), - [anon_sym_PERCENT] = ACTIONS(7095), - [anon_sym_PIPE_PIPE] = ACTIONS(7097), - [anon_sym_AMP_AMP] = ACTIONS(7097), - [anon_sym_PIPE] = ACTIONS(7095), - [anon_sym_CARET] = ACTIONS(7095), - [anon_sym_AMP] = ACTIONS(7095), - [anon_sym_EQ_EQ] = ACTIONS(7097), - [anon_sym_BANG_EQ] = ACTIONS(7097), - [anon_sym_GT] = ACTIONS(7095), - [anon_sym_GT_EQ] = ACTIONS(7097), - [anon_sym_LT_EQ] = ACTIONS(7095), - [anon_sym_LT] = ACTIONS(7095), - [anon_sym_LT_LT] = ACTIONS(7095), - [anon_sym_GT_GT] = ACTIONS(7095), - [anon_sym___extension__] = ACTIONS(7097), - [anon_sym___attribute__] = ACTIONS(8189), - [anon_sym___attribute] = ACTIONS(8191), - [anon_sym_LBRACE] = ACTIONS(7097), - [anon_sym_LBRACK] = ACTIONS(7097), - [anon_sym_EQ] = ACTIONS(7095), - [anon_sym_const] = ACTIONS(7095), - [anon_sym_constexpr] = ACTIONS(7097), - [anon_sym_volatile] = ACTIONS(7097), - [anon_sym_restrict] = ACTIONS(7097), - [anon_sym___restrict__] = ACTIONS(7097), - [anon_sym__Atomic] = ACTIONS(7097), - [anon_sym__Noreturn] = ACTIONS(7097), - [anon_sym_noreturn] = ACTIONS(7097), - [anon_sym__Nonnull] = ACTIONS(7097), - [anon_sym_mutable] = ACTIONS(7097), - [anon_sym_constinit] = ACTIONS(7097), - [anon_sym_consteval] = ACTIONS(7097), - [anon_sym_alignas] = ACTIONS(7097), - [anon_sym__Alignas] = ACTIONS(7097), - [anon_sym_QMARK] = ACTIONS(7097), - [anon_sym_STAR_EQ] = ACTIONS(7097), - [anon_sym_SLASH_EQ] = ACTIONS(7097), - [anon_sym_PERCENT_EQ] = ACTIONS(7097), - [anon_sym_PLUS_EQ] = ACTIONS(7097), - [anon_sym_DASH_EQ] = ACTIONS(7097), - [anon_sym_LT_LT_EQ] = ACTIONS(7097), - [anon_sym_GT_GT_EQ] = ACTIONS(7097), - [anon_sym_AMP_EQ] = ACTIONS(7097), - [anon_sym_CARET_EQ] = ACTIONS(7097), - [anon_sym_PIPE_EQ] = ACTIONS(7097), - [anon_sym_LT_EQ_GT] = ACTIONS(7097), - [anon_sym_or] = ACTIONS(7097), - [anon_sym_and] = ACTIONS(7097), - [anon_sym_bitor] = ACTIONS(7097), - [anon_sym_xor] = ACTIONS(7097), - [anon_sym_bitand] = ACTIONS(7097), - [anon_sym_not_eq] = ACTIONS(7097), - [anon_sym_DASH_DASH] = ACTIONS(7097), - [anon_sym_PLUS_PLUS] = ACTIONS(7097), - [anon_sym_DOT] = ACTIONS(7095), - [anon_sym_DOT_STAR] = ACTIONS(7097), - [anon_sym_DASH_GT] = ACTIONS(7095), + [STATE(2665)] = { + [sym_attribute_specifier] = STATE(3093), + [sym_enumerator_list] = STATE(2752), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), + [anon_sym_COMMA] = ACTIONS(7389), + [anon_sym_LPAREN2] = ACTIONS(7389), + [anon_sym_DASH] = ACTIONS(7387), + [anon_sym_PLUS] = ACTIONS(7387), + [anon_sym_STAR] = ACTIONS(7387), + [anon_sym_SLASH] = ACTIONS(7387), + [anon_sym_PERCENT] = ACTIONS(7387), + [anon_sym_PIPE_PIPE] = ACTIONS(7389), + [anon_sym_AMP_AMP] = ACTIONS(7389), + [anon_sym_PIPE] = ACTIONS(7387), + [anon_sym_CARET] = ACTIONS(7387), + [anon_sym_AMP] = ACTIONS(7387), + [anon_sym_EQ_EQ] = ACTIONS(7389), + [anon_sym_BANG_EQ] = ACTIONS(7389), + [anon_sym_GT] = ACTIONS(7387), + [anon_sym_GT_EQ] = ACTIONS(7389), + [anon_sym_LT_EQ] = ACTIONS(7387), + [anon_sym_LT] = ACTIONS(7387), + [anon_sym_LT_LT] = ACTIONS(7387), + [anon_sym_GT_GT] = ACTIONS(7387), + [anon_sym___extension__] = ACTIONS(7389), + [anon_sym___attribute__] = ACTIONS(8293), + [anon_sym___attribute] = ACTIONS(8295), + [anon_sym_LBRACE] = ACTIONS(8476), + [anon_sym_LBRACK] = ACTIONS(7389), + [anon_sym_RBRACK] = ACTIONS(7389), + [anon_sym_EQ] = ACTIONS(7387), + [anon_sym_const] = ACTIONS(7387), + [anon_sym_constexpr] = ACTIONS(7389), + [anon_sym_volatile] = ACTIONS(7389), + [anon_sym_restrict] = ACTIONS(7389), + [anon_sym___restrict__] = ACTIONS(7389), + [anon_sym__Atomic] = ACTIONS(7389), + [anon_sym__Noreturn] = ACTIONS(7389), + [anon_sym_noreturn] = ACTIONS(7389), + [anon_sym__Nonnull] = ACTIONS(7389), + [anon_sym_mutable] = ACTIONS(7389), + [anon_sym_constinit] = ACTIONS(7389), + [anon_sym_consteval] = ACTIONS(7389), + [anon_sym_alignas] = ACTIONS(7389), + [anon_sym__Alignas] = ACTIONS(7389), + [anon_sym_QMARK] = ACTIONS(7389), + [anon_sym_STAR_EQ] = ACTIONS(7389), + [anon_sym_SLASH_EQ] = ACTIONS(7389), + [anon_sym_PERCENT_EQ] = ACTIONS(7389), + [anon_sym_PLUS_EQ] = ACTIONS(7389), + [anon_sym_DASH_EQ] = ACTIONS(7389), + [anon_sym_LT_LT_EQ] = ACTIONS(7389), + [anon_sym_GT_GT_EQ] = ACTIONS(7389), + [anon_sym_AMP_EQ] = ACTIONS(7389), + [anon_sym_CARET_EQ] = ACTIONS(7389), + [anon_sym_PIPE_EQ] = ACTIONS(7389), + [anon_sym_and_eq] = ACTIONS(7389), + [anon_sym_or_eq] = ACTIONS(7389), + [anon_sym_xor_eq] = ACTIONS(7389), + [anon_sym_LT_EQ_GT] = ACTIONS(7389), + [anon_sym_or] = ACTIONS(7387), + [anon_sym_and] = ACTIONS(7387), + [anon_sym_bitor] = ACTIONS(7389), + [anon_sym_xor] = ACTIONS(7387), + [anon_sym_bitand] = ACTIONS(7389), + [anon_sym_not_eq] = ACTIONS(7389), + [anon_sym_DASH_DASH] = ACTIONS(7389), + [anon_sym_PLUS_PLUS] = ACTIONS(7389), + [anon_sym_DOT] = ACTIONS(7387), + [anon_sym_DOT_STAR] = ACTIONS(7389), + [anon_sym_DASH_GT] = ACTIONS(7389), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7097), - [anon_sym_override] = ACTIONS(7097), - [anon_sym_requires] = ACTIONS(7097), - [anon_sym_DASH_GT_STAR] = ACTIONS(7097), - }, - [STATE(2897)] = { - [sym_identifier] = ACTIONS(8614), - [anon_sym_LPAREN2] = ACTIONS(8616), - [anon_sym_TILDE] = ACTIONS(8616), - [anon_sym_STAR] = ACTIONS(8616), - [anon_sym_PIPE_PIPE] = ACTIONS(8616), - [anon_sym_AMP_AMP] = ACTIONS(8616), - [anon_sym_AMP] = ACTIONS(8614), - [anon_sym___extension__] = ACTIONS(8614), - [anon_sym_virtual] = ACTIONS(8614), - [anon_sym_extern] = ACTIONS(8614), - [anon_sym___attribute__] = ACTIONS(8614), - [anon_sym___attribute] = ACTIONS(8614), - [anon_sym_using] = ACTIONS(8614), - [anon_sym_COLON_COLON] = ACTIONS(8616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8616), - [anon_sym___declspec] = ACTIONS(8614), - [anon_sym___based] = ACTIONS(8614), - [anon_sym___cdecl] = ACTIONS(8614), - [anon_sym___clrcall] = ACTIONS(8614), - [anon_sym___stdcall] = ACTIONS(8614), - [anon_sym___fastcall] = ACTIONS(8614), - [anon_sym___thiscall] = ACTIONS(8614), - [anon_sym___vectorcall] = ACTIONS(8614), - [anon_sym_LBRACE] = ACTIONS(8616), - [anon_sym_signed] = ACTIONS(8614), - [anon_sym_unsigned] = ACTIONS(8614), - [anon_sym_long] = ACTIONS(8614), - [anon_sym_short] = ACTIONS(8614), - [anon_sym_LBRACK] = ACTIONS(8614), - [anon_sym_static] = ACTIONS(8614), - [anon_sym_register] = ACTIONS(8614), - [anon_sym_inline] = ACTIONS(8614), - [anon_sym___inline] = ACTIONS(8614), - [anon_sym___inline__] = ACTIONS(8614), - [anon_sym___forceinline] = ACTIONS(8614), - [anon_sym_thread_local] = ACTIONS(8614), - [anon_sym___thread] = ACTIONS(8614), - [anon_sym_const] = ACTIONS(8614), - [anon_sym_constexpr] = ACTIONS(8614), - [anon_sym_volatile] = ACTIONS(8614), - [anon_sym_restrict] = ACTIONS(8614), - [anon_sym___restrict__] = ACTIONS(8614), - [anon_sym__Atomic] = ACTIONS(8614), - [anon_sym__Noreturn] = ACTIONS(8614), - [anon_sym_noreturn] = ACTIONS(8614), - [anon_sym__Nonnull] = ACTIONS(8614), - [anon_sym_mutable] = ACTIONS(8614), - [anon_sym_constinit] = ACTIONS(8614), - [anon_sym_consteval] = ACTIONS(8614), - [anon_sym_alignas] = ACTIONS(8614), - [anon_sym__Alignas] = ACTIONS(8614), - [sym_primitive_type] = ACTIONS(8614), - [anon_sym_enum] = ACTIONS(8614), - [anon_sym_class] = ACTIONS(8614), - [anon_sym_struct] = ACTIONS(8614), - [anon_sym_union] = ACTIONS(8614), - [anon_sym_or] = ACTIONS(8614), - [anon_sym_and] = ACTIONS(8614), - [anon_sym_typename] = ACTIONS(8614), - [anon_sym_DASH_GT] = ACTIONS(8616), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8614), - [anon_sym_decltype] = ACTIONS(8614), - [anon_sym_explicit] = ACTIONS(8614), - [anon_sym_template] = ACTIONS(8614), - [anon_sym_operator] = ACTIONS(8614), - [anon_sym_friend] = ACTIONS(8614), - [anon_sym_noexcept] = ACTIONS(8614), - [anon_sym_throw] = ACTIONS(8614), - [anon_sym_concept] = ACTIONS(8614), - [anon_sym_LBRACK_COLON] = ACTIONS(8616), - }, - [STATE(2898)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7109), - [anon_sym_COMMA] = ACTIONS(7109), - [anon_sym_LPAREN2] = ACTIONS(7109), - [anon_sym_DASH] = ACTIONS(7107), - [anon_sym_PLUS] = ACTIONS(7107), - [anon_sym_STAR] = ACTIONS(7107), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7107), - [anon_sym_PIPE_PIPE] = ACTIONS(7109), - [anon_sym_AMP_AMP] = ACTIONS(7109), - [anon_sym_PIPE] = ACTIONS(7107), - [anon_sym_CARET] = ACTIONS(7107), - [anon_sym_AMP] = ACTIONS(7107), - [anon_sym_EQ_EQ] = ACTIONS(7109), - [anon_sym_BANG_EQ] = ACTIONS(7109), - [anon_sym_GT] = ACTIONS(7107), - [anon_sym_GT_EQ] = ACTIONS(7107), - [anon_sym_LT_EQ] = ACTIONS(7107), - [anon_sym_LT] = ACTIONS(7107), - [anon_sym_LT_LT] = ACTIONS(7107), - [anon_sym_GT_GT] = ACTIONS(7107), - [anon_sym___extension__] = ACTIONS(7109), - [anon_sym_COLON_COLON] = ACTIONS(7109), - [anon_sym_LBRACE] = ACTIONS(7109), - [anon_sym_LBRACK] = ACTIONS(7109), - [anon_sym_EQ] = ACTIONS(7107), - [anon_sym_const] = ACTIONS(7107), - [anon_sym_constexpr] = ACTIONS(7109), - [anon_sym_volatile] = ACTIONS(7109), - [anon_sym_restrict] = ACTIONS(7109), - [anon_sym___restrict__] = ACTIONS(7109), - [anon_sym__Atomic] = ACTIONS(7109), - [anon_sym__Noreturn] = ACTIONS(7109), - [anon_sym_noreturn] = ACTIONS(7109), - [anon_sym__Nonnull] = ACTIONS(7109), - [anon_sym_mutable] = ACTIONS(7109), - [anon_sym_constinit] = ACTIONS(7109), - [anon_sym_consteval] = ACTIONS(7109), - [anon_sym_alignas] = ACTIONS(7109), - [anon_sym__Alignas] = ACTIONS(7109), - [anon_sym_QMARK] = ACTIONS(7109), - [anon_sym_STAR_EQ] = ACTIONS(7109), - [anon_sym_SLASH_EQ] = ACTIONS(7109), - [anon_sym_PERCENT_EQ] = ACTIONS(7109), - [anon_sym_PLUS_EQ] = ACTIONS(7109), - [anon_sym_DASH_EQ] = ACTIONS(7109), - [anon_sym_LT_LT_EQ] = ACTIONS(7109), - [anon_sym_GT_GT_EQ] = ACTIONS(7107), - [anon_sym_AMP_EQ] = ACTIONS(7109), - [anon_sym_CARET_EQ] = ACTIONS(7109), - [anon_sym_PIPE_EQ] = ACTIONS(7109), - [anon_sym_and_eq] = ACTIONS(7109), - [anon_sym_or_eq] = ACTIONS(7109), - [anon_sym_xor_eq] = ACTIONS(7109), - [anon_sym_LT_EQ_GT] = ACTIONS(7109), - [anon_sym_or] = ACTIONS(7107), - [anon_sym_and] = ACTIONS(7107), - [anon_sym_bitor] = ACTIONS(7109), - [anon_sym_xor] = ACTIONS(7107), - [anon_sym_bitand] = ACTIONS(7109), - [anon_sym_not_eq] = ACTIONS(7109), - [anon_sym_DASH_DASH] = ACTIONS(7109), - [anon_sym_PLUS_PLUS] = ACTIONS(7109), - [anon_sym_DOT] = ACTIONS(7107), - [anon_sym_DOT_STAR] = ACTIONS(7109), - [anon_sym_DASH_GT] = ACTIONS(7109), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7109), - [anon_sym_override] = ACTIONS(7109), - [anon_sym_GT2] = ACTIONS(7109), - [anon_sym_requires] = ACTIONS(7109), - }, - [STATE(2899)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7109), - [anon_sym_COMMA] = ACTIONS(7109), - [anon_sym_LPAREN2] = ACTIONS(7109), - [anon_sym_DASH] = ACTIONS(7107), - [anon_sym_PLUS] = ACTIONS(7107), - [anon_sym_STAR] = ACTIONS(7107), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7107), - [anon_sym_PIPE_PIPE] = ACTIONS(7109), - [anon_sym_AMP_AMP] = ACTIONS(7109), - [anon_sym_PIPE] = ACTIONS(7107), - [anon_sym_CARET] = ACTIONS(7107), - [anon_sym_AMP] = ACTIONS(7107), - [anon_sym_EQ_EQ] = ACTIONS(7109), - [anon_sym_BANG_EQ] = ACTIONS(7109), - [anon_sym_GT] = ACTIONS(7107), - [anon_sym_GT_EQ] = ACTIONS(7109), - [anon_sym_LT_EQ] = ACTIONS(7107), - [anon_sym_LT] = ACTIONS(7107), - [anon_sym_LT_LT] = ACTIONS(7107), - [anon_sym_GT_GT] = ACTIONS(7107), - [anon_sym___extension__] = ACTIONS(7109), - [anon_sym_COLON_COLON] = ACTIONS(7109), - [anon_sym_LBRACE] = ACTIONS(7109), - [anon_sym_LBRACK] = ACTIONS(7109), - [anon_sym_RBRACK] = ACTIONS(7109), - [anon_sym_EQ] = ACTIONS(7107), - [anon_sym_const] = ACTIONS(7107), - [anon_sym_constexpr] = ACTIONS(7109), - [anon_sym_volatile] = ACTIONS(7109), - [anon_sym_restrict] = ACTIONS(7109), - [anon_sym___restrict__] = ACTIONS(7109), - [anon_sym__Atomic] = ACTIONS(7109), - [anon_sym__Noreturn] = ACTIONS(7109), - [anon_sym_noreturn] = ACTIONS(7109), - [anon_sym__Nonnull] = ACTIONS(7109), - [anon_sym_mutable] = ACTIONS(7109), - [anon_sym_constinit] = ACTIONS(7109), - [anon_sym_consteval] = ACTIONS(7109), - [anon_sym_alignas] = ACTIONS(7109), - [anon_sym__Alignas] = ACTIONS(7109), - [anon_sym_QMARK] = ACTIONS(7109), - [anon_sym_STAR_EQ] = ACTIONS(7109), - [anon_sym_SLASH_EQ] = ACTIONS(7109), - [anon_sym_PERCENT_EQ] = ACTIONS(7109), - [anon_sym_PLUS_EQ] = ACTIONS(7109), - [anon_sym_DASH_EQ] = ACTIONS(7109), - [anon_sym_LT_LT_EQ] = ACTIONS(7109), - [anon_sym_GT_GT_EQ] = ACTIONS(7109), - [anon_sym_AMP_EQ] = ACTIONS(7109), - [anon_sym_CARET_EQ] = ACTIONS(7109), - [anon_sym_PIPE_EQ] = ACTIONS(7109), - [anon_sym_and_eq] = ACTIONS(7109), - [anon_sym_or_eq] = ACTIONS(7109), - [anon_sym_xor_eq] = ACTIONS(7109), - [anon_sym_LT_EQ_GT] = ACTIONS(7109), - [anon_sym_or] = ACTIONS(7107), - [anon_sym_and] = ACTIONS(7107), - [anon_sym_bitor] = ACTIONS(7109), - [anon_sym_xor] = ACTIONS(7107), - [anon_sym_bitand] = ACTIONS(7109), - [anon_sym_not_eq] = ACTIONS(7109), - [anon_sym_DASH_DASH] = ACTIONS(7109), - [anon_sym_PLUS_PLUS] = ACTIONS(7109), - [anon_sym_DOT] = ACTIONS(7107), - [anon_sym_DOT_STAR] = ACTIONS(7109), - [anon_sym_DASH_GT] = ACTIONS(7109), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7109), - [anon_sym_override] = ACTIONS(7109), - [anon_sym_requires] = ACTIONS(7109), - }, - [STATE(2900)] = { - [sym_attribute_specifier] = STATE(3475), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7101), - [anon_sym_COMMA] = ACTIONS(7101), - [anon_sym_RPAREN] = ACTIONS(7101), - [anon_sym_LPAREN2] = ACTIONS(7101), - [anon_sym_DASH] = ACTIONS(7099), - [anon_sym_PLUS] = ACTIONS(7099), - [anon_sym_STAR] = ACTIONS(7099), - [anon_sym_SLASH] = ACTIONS(7099), - [anon_sym_PERCENT] = ACTIONS(7099), - [anon_sym_PIPE_PIPE] = ACTIONS(7101), - [anon_sym_AMP_AMP] = ACTIONS(7101), - [anon_sym_PIPE] = ACTIONS(7099), - [anon_sym_CARET] = ACTIONS(7099), - [anon_sym_AMP] = ACTIONS(7099), - [anon_sym_EQ_EQ] = ACTIONS(7101), - [anon_sym_BANG_EQ] = ACTIONS(7101), - [anon_sym_GT] = ACTIONS(7099), - [anon_sym_GT_EQ] = ACTIONS(7101), - [anon_sym_LT_EQ] = ACTIONS(7099), - [anon_sym_LT] = ACTIONS(7099), - [anon_sym_LT_LT] = ACTIONS(7099), - [anon_sym_GT_GT] = ACTIONS(7099), - [anon_sym___extension__] = ACTIONS(7101), - [anon_sym___attribute__] = ACTIONS(8189), - [anon_sym___attribute] = ACTIONS(8191), - [anon_sym_LBRACE] = ACTIONS(7101), - [anon_sym_LBRACK] = ACTIONS(7101), - [anon_sym_EQ] = ACTIONS(7099), - [anon_sym_const] = ACTIONS(7099), - [anon_sym_constexpr] = ACTIONS(7101), - [anon_sym_volatile] = ACTIONS(7101), - [anon_sym_restrict] = ACTIONS(7101), - [anon_sym___restrict__] = ACTIONS(7101), - [anon_sym__Atomic] = ACTIONS(7101), - [anon_sym__Noreturn] = ACTIONS(7101), - [anon_sym_noreturn] = ACTIONS(7101), - [anon_sym__Nonnull] = ACTIONS(7101), - [anon_sym_mutable] = ACTIONS(7101), - [anon_sym_constinit] = ACTIONS(7101), - [anon_sym_consteval] = ACTIONS(7101), - [anon_sym_alignas] = ACTIONS(7101), - [anon_sym__Alignas] = ACTIONS(7101), - [anon_sym_QMARK] = ACTIONS(7101), - [anon_sym_STAR_EQ] = ACTIONS(7101), - [anon_sym_SLASH_EQ] = ACTIONS(7101), - [anon_sym_PERCENT_EQ] = ACTIONS(7101), - [anon_sym_PLUS_EQ] = ACTIONS(7101), - [anon_sym_DASH_EQ] = ACTIONS(7101), - [anon_sym_LT_LT_EQ] = ACTIONS(7101), - [anon_sym_GT_GT_EQ] = ACTIONS(7101), - [anon_sym_AMP_EQ] = ACTIONS(7101), - [anon_sym_CARET_EQ] = ACTIONS(7101), - [anon_sym_PIPE_EQ] = ACTIONS(7101), - [anon_sym_LT_EQ_GT] = ACTIONS(7101), - [anon_sym_or] = ACTIONS(7101), - [anon_sym_and] = ACTIONS(7101), - [anon_sym_bitor] = ACTIONS(7101), - [anon_sym_xor] = ACTIONS(7101), - [anon_sym_bitand] = ACTIONS(7101), - [anon_sym_not_eq] = ACTIONS(7101), - [anon_sym_DASH_DASH] = ACTIONS(7101), - [anon_sym_PLUS_PLUS] = ACTIONS(7101), - [anon_sym_DOT] = ACTIONS(7099), - [anon_sym_DOT_STAR] = ACTIONS(7101), - [anon_sym_DASH_GT] = ACTIONS(7099), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7101), - [anon_sym_override] = ACTIONS(7101), - [anon_sym_requires] = ACTIONS(7101), - [anon_sym_DASH_GT_STAR] = ACTIONS(7101), - }, - [STATE(2901)] = { - [sym_attribute_specifier] = STATE(3476), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7105), - [anon_sym_COMMA] = ACTIONS(7105), - [anon_sym_RPAREN] = ACTIONS(7105), - [anon_sym_LPAREN2] = ACTIONS(7105), - [anon_sym_DASH] = ACTIONS(7103), - [anon_sym_PLUS] = ACTIONS(7103), - [anon_sym_STAR] = ACTIONS(7103), - [anon_sym_SLASH] = ACTIONS(7103), - [anon_sym_PERCENT] = ACTIONS(7103), - [anon_sym_PIPE_PIPE] = ACTIONS(7105), - [anon_sym_AMP_AMP] = ACTIONS(7105), - [anon_sym_PIPE] = ACTIONS(7103), - [anon_sym_CARET] = ACTIONS(7103), - [anon_sym_AMP] = ACTIONS(7103), - [anon_sym_EQ_EQ] = ACTIONS(7105), - [anon_sym_BANG_EQ] = ACTIONS(7105), - [anon_sym_GT] = ACTIONS(7103), - [anon_sym_GT_EQ] = ACTIONS(7105), - [anon_sym_LT_EQ] = ACTIONS(7103), - [anon_sym_LT] = ACTIONS(7103), - [anon_sym_LT_LT] = ACTIONS(7103), - [anon_sym_GT_GT] = ACTIONS(7103), - [anon_sym___extension__] = ACTIONS(7105), - [anon_sym___attribute__] = ACTIONS(8189), - [anon_sym___attribute] = ACTIONS(8191), - [anon_sym_LBRACE] = ACTIONS(7105), - [anon_sym_LBRACK] = ACTIONS(7105), - [anon_sym_EQ] = ACTIONS(7103), - [anon_sym_const] = ACTIONS(7103), - [anon_sym_constexpr] = ACTIONS(7105), - [anon_sym_volatile] = ACTIONS(7105), - [anon_sym_restrict] = ACTIONS(7105), - [anon_sym___restrict__] = ACTIONS(7105), - [anon_sym__Atomic] = ACTIONS(7105), - [anon_sym__Noreturn] = ACTIONS(7105), - [anon_sym_noreturn] = ACTIONS(7105), - [anon_sym__Nonnull] = ACTIONS(7105), - [anon_sym_mutable] = ACTIONS(7105), - [anon_sym_constinit] = ACTIONS(7105), - [anon_sym_consteval] = ACTIONS(7105), - [anon_sym_alignas] = ACTIONS(7105), - [anon_sym__Alignas] = ACTIONS(7105), - [anon_sym_QMARK] = ACTIONS(7105), - [anon_sym_STAR_EQ] = ACTIONS(7105), - [anon_sym_SLASH_EQ] = ACTIONS(7105), - [anon_sym_PERCENT_EQ] = ACTIONS(7105), - [anon_sym_PLUS_EQ] = ACTIONS(7105), - [anon_sym_DASH_EQ] = ACTIONS(7105), - [anon_sym_LT_LT_EQ] = ACTIONS(7105), - [anon_sym_GT_GT_EQ] = ACTIONS(7105), - [anon_sym_AMP_EQ] = ACTIONS(7105), - [anon_sym_CARET_EQ] = ACTIONS(7105), - [anon_sym_PIPE_EQ] = ACTIONS(7105), - [anon_sym_LT_EQ_GT] = ACTIONS(7105), - [anon_sym_or] = ACTIONS(7105), - [anon_sym_and] = ACTIONS(7105), - [anon_sym_bitor] = ACTIONS(7105), - [anon_sym_xor] = ACTIONS(7105), - [anon_sym_bitand] = ACTIONS(7105), - [anon_sym_not_eq] = ACTIONS(7105), - [anon_sym_DASH_DASH] = ACTIONS(7105), - [anon_sym_PLUS_PLUS] = ACTIONS(7105), - [anon_sym_DOT] = ACTIONS(7103), - [anon_sym_DOT_STAR] = ACTIONS(7105), - [anon_sym_DASH_GT] = ACTIONS(7103), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7105), - [anon_sym_override] = ACTIONS(7105), - [anon_sym_requires] = ACTIONS(7105), - [anon_sym_DASH_GT_STAR] = ACTIONS(7105), - }, - [STATE(2902)] = { - [sym_identifier] = ACTIONS(2795), - [anon_sym_LPAREN2] = ACTIONS(2793), - [anon_sym_TILDE] = ACTIONS(2793), - [anon_sym_STAR] = ACTIONS(2793), - [anon_sym_PIPE_PIPE] = ACTIONS(2793), - [anon_sym_AMP_AMP] = ACTIONS(2793), - [anon_sym_AMP] = ACTIONS(2795), - [anon_sym___extension__] = ACTIONS(2795), - [anon_sym_virtual] = ACTIONS(2795), - [anon_sym_extern] = ACTIONS(2795), - [anon_sym___attribute__] = ACTIONS(2795), - [anon_sym___attribute] = ACTIONS(2795), - [anon_sym_using] = ACTIONS(2795), - [anon_sym_COLON_COLON] = ACTIONS(2793), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), - [anon_sym___declspec] = ACTIONS(2795), - [anon_sym___based] = ACTIONS(2795), - [anon_sym___cdecl] = ACTIONS(2795), - [anon_sym___clrcall] = ACTIONS(2795), - [anon_sym___stdcall] = ACTIONS(2795), - [anon_sym___fastcall] = ACTIONS(2795), - [anon_sym___thiscall] = ACTIONS(2795), - [anon_sym___vectorcall] = ACTIONS(2795), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_signed] = ACTIONS(2795), - [anon_sym_unsigned] = ACTIONS(2795), - [anon_sym_long] = ACTIONS(2795), - [anon_sym_short] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2795), - [anon_sym_static] = ACTIONS(2795), - [anon_sym_register] = ACTIONS(2795), - [anon_sym_inline] = ACTIONS(2795), - [anon_sym___inline] = ACTIONS(2795), - [anon_sym___inline__] = ACTIONS(2795), - [anon_sym___forceinline] = ACTIONS(2795), - [anon_sym_thread_local] = ACTIONS(2795), - [anon_sym___thread] = ACTIONS(2795), - [anon_sym_const] = ACTIONS(2795), - [anon_sym_constexpr] = ACTIONS(2795), - [anon_sym_volatile] = ACTIONS(2795), - [anon_sym_restrict] = ACTIONS(2795), - [anon_sym___restrict__] = ACTIONS(2795), - [anon_sym__Atomic] = ACTIONS(2795), - [anon_sym__Noreturn] = ACTIONS(2795), - [anon_sym_noreturn] = ACTIONS(2795), - [anon_sym__Nonnull] = ACTIONS(2795), - [anon_sym_mutable] = ACTIONS(2795), - [anon_sym_constinit] = ACTIONS(2795), - [anon_sym_consteval] = ACTIONS(2795), - [anon_sym_alignas] = ACTIONS(2795), - [anon_sym__Alignas] = ACTIONS(2795), - [sym_primitive_type] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2795), - [anon_sym_class] = ACTIONS(2795), - [anon_sym_struct] = ACTIONS(2795), - [anon_sym_union] = ACTIONS(2795), - [anon_sym_or] = ACTIONS(2795), - [anon_sym_and] = ACTIONS(2795), - [anon_sym_typename] = ACTIONS(2795), - [anon_sym_DASH_GT] = ACTIONS(2793), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2795), - [anon_sym_decltype] = ACTIONS(2795), - [anon_sym_explicit] = ACTIONS(2795), - [anon_sym_template] = ACTIONS(2795), - [anon_sym_operator] = ACTIONS(2795), - [anon_sym_friend] = ACTIONS(2795), - [anon_sym_noexcept] = ACTIONS(2795), - [anon_sym_throw] = ACTIONS(2795), - [anon_sym_concept] = ACTIONS(2795), - [anon_sym_LBRACK_COLON] = ACTIONS(2793), - }, - [STATE(2903)] = { - [sym_identifier] = ACTIONS(8618), - [anon_sym_LPAREN2] = ACTIONS(8620), - [anon_sym_TILDE] = ACTIONS(8620), - [anon_sym_STAR] = ACTIONS(8620), - [anon_sym_PIPE_PIPE] = ACTIONS(8620), - [anon_sym_AMP_AMP] = ACTIONS(8620), - [anon_sym_AMP] = ACTIONS(8618), - [anon_sym___extension__] = ACTIONS(8618), - [anon_sym_virtual] = ACTIONS(8618), - [anon_sym_extern] = ACTIONS(8618), - [anon_sym___attribute__] = ACTIONS(8618), - [anon_sym___attribute] = ACTIONS(8618), - [anon_sym_using] = ACTIONS(8618), - [anon_sym_COLON_COLON] = ACTIONS(8620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8620), - [anon_sym___declspec] = ACTIONS(8618), - [anon_sym___based] = ACTIONS(8618), - [anon_sym___cdecl] = ACTIONS(8618), - [anon_sym___clrcall] = ACTIONS(8618), - [anon_sym___stdcall] = ACTIONS(8618), - [anon_sym___fastcall] = ACTIONS(8618), - [anon_sym___thiscall] = ACTIONS(8618), - [anon_sym___vectorcall] = ACTIONS(8618), - [anon_sym_LBRACE] = ACTIONS(8620), - [anon_sym_signed] = ACTIONS(8618), - [anon_sym_unsigned] = ACTIONS(8618), - [anon_sym_long] = ACTIONS(8618), - [anon_sym_short] = ACTIONS(8618), - [anon_sym_LBRACK] = ACTIONS(8618), - [anon_sym_static] = ACTIONS(8618), - [anon_sym_register] = ACTIONS(8618), - [anon_sym_inline] = ACTIONS(8618), - [anon_sym___inline] = ACTIONS(8618), - [anon_sym___inline__] = ACTIONS(8618), - [anon_sym___forceinline] = ACTIONS(8618), - [anon_sym_thread_local] = ACTIONS(8618), - [anon_sym___thread] = ACTIONS(8618), - [anon_sym_const] = ACTIONS(8618), - [anon_sym_constexpr] = ACTIONS(8618), - [anon_sym_volatile] = ACTIONS(8618), - [anon_sym_restrict] = ACTIONS(8618), - [anon_sym___restrict__] = ACTIONS(8618), - [anon_sym__Atomic] = ACTIONS(8618), - [anon_sym__Noreturn] = ACTIONS(8618), - [anon_sym_noreturn] = ACTIONS(8618), - [anon_sym__Nonnull] = ACTIONS(8618), - [anon_sym_mutable] = ACTIONS(8618), - [anon_sym_constinit] = ACTIONS(8618), - [anon_sym_consteval] = ACTIONS(8618), - [anon_sym_alignas] = ACTIONS(8618), - [anon_sym__Alignas] = ACTIONS(8618), - [sym_primitive_type] = ACTIONS(8618), - [anon_sym_enum] = ACTIONS(8618), - [anon_sym_class] = ACTIONS(8618), - [anon_sym_struct] = ACTIONS(8618), - [anon_sym_union] = ACTIONS(8618), - [anon_sym_or] = ACTIONS(8618), - [anon_sym_and] = ACTIONS(8618), - [anon_sym_typename] = ACTIONS(8618), - [anon_sym_DASH_GT] = ACTIONS(8620), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8618), - [anon_sym_decltype] = ACTIONS(8618), - [anon_sym_explicit] = ACTIONS(8618), - [anon_sym_template] = ACTIONS(8618), - [anon_sym_operator] = ACTIONS(8618), - [anon_sym_friend] = ACTIONS(8618), - [anon_sym_noexcept] = ACTIONS(8618), - [anon_sym_throw] = ACTIONS(8618), - [anon_sym_concept] = ACTIONS(8618), - [anon_sym_LBRACK_COLON] = ACTIONS(8620), - }, - [STATE(2904)] = { - [sym__abstract_declarator] = STATE(6063), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(3734), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(1971), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(3734), - [sym_identifier] = ACTIONS(6997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), - [anon_sym_COMMA] = ACTIONS(6995), - [aux_sym_preproc_if_token2] = ACTIONS(6995), - [aux_sym_preproc_else_token1] = ACTIONS(6995), - [aux_sym_preproc_elif_token1] = ACTIONS(6997), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6995), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6995), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6997), - [anon_sym_PLUS] = ACTIONS(6997), - [anon_sym_STAR] = ACTIONS(7733), - [anon_sym_SLASH] = ACTIONS(6997), - [anon_sym_PERCENT] = ACTIONS(6995), - [anon_sym_PIPE_PIPE] = ACTIONS(6995), - [anon_sym_AMP_AMP] = ACTIONS(7735), - [anon_sym_PIPE] = ACTIONS(6997), - [anon_sym_CARET] = ACTIONS(6995), - [anon_sym_AMP] = ACTIONS(7737), - [anon_sym_EQ_EQ] = ACTIONS(6995), - [anon_sym_BANG_EQ] = ACTIONS(6995), - [anon_sym_GT] = ACTIONS(6997), - [anon_sym_GT_EQ] = ACTIONS(6995), - [anon_sym_LT_EQ] = ACTIONS(6997), - [anon_sym_LT] = ACTIONS(6997), - [anon_sym_LT_LT] = ACTIONS(6995), - [anon_sym_GT_GT] = ACTIONS(6995), - [anon_sym___extension__] = ACTIONS(7739), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(7739), - [anon_sym_volatile] = ACTIONS(7739), - [anon_sym_restrict] = ACTIONS(7739), - [anon_sym___restrict__] = ACTIONS(7739), - [anon_sym__Atomic] = ACTIONS(7739), - [anon_sym__Noreturn] = ACTIONS(7739), - [anon_sym_noreturn] = ACTIONS(7739), - [anon_sym__Nonnull] = ACTIONS(7739), - [anon_sym_mutable] = ACTIONS(7739), - [anon_sym_constinit] = ACTIONS(7739), - [anon_sym_consteval] = ACTIONS(7739), - [anon_sym_alignas] = ACTIONS(7747), - [anon_sym__Alignas] = ACTIONS(7747), - [anon_sym_QMARK] = ACTIONS(6995), - [anon_sym_LT_EQ_GT] = ACTIONS(6995), - [anon_sym_or] = ACTIONS(6997), - [anon_sym_and] = ACTIONS(6997), - [anon_sym_bitor] = ACTIONS(6997), - [anon_sym_xor] = ACTIONS(6997), - [anon_sym_bitand] = ACTIONS(6997), - [anon_sym_not_eq] = ACTIONS(6997), - [anon_sym_DASH_DASH] = ACTIONS(6995), - [anon_sym_PLUS_PLUS] = ACTIONS(6995), - [anon_sym_DOT] = ACTIONS(6997), - [anon_sym_DOT_STAR] = ACTIONS(6995), - [anon_sym_DASH_GT] = ACTIONS(6995), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6997), - [anon_sym_override] = ACTIONS(6997), - [anon_sym_requires] = ACTIONS(6997), + [anon_sym_final] = ACTIONS(7389), + [anon_sym_override] = ACTIONS(7389), + [anon_sym_requires] = ACTIONS(7389), }, - [STATE(2905)] = { - [sym__abstract_declarator] = STATE(6059), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(2908), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(1971), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(2908), - [sym_identifier] = ACTIONS(7001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), - [anon_sym_COMMA] = ACTIONS(6999), - [aux_sym_preproc_if_token2] = ACTIONS(6999), - [aux_sym_preproc_else_token1] = ACTIONS(6999), - [aux_sym_preproc_elif_token1] = ACTIONS(7001), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6999), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6999), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(7001), - [anon_sym_PLUS] = ACTIONS(7001), - [anon_sym_STAR] = ACTIONS(7733), - [anon_sym_SLASH] = ACTIONS(7001), - [anon_sym_PERCENT] = ACTIONS(6999), - [anon_sym_PIPE_PIPE] = ACTIONS(6999), - [anon_sym_AMP_AMP] = ACTIONS(7735), - [anon_sym_PIPE] = ACTIONS(7001), - [anon_sym_CARET] = ACTIONS(6999), - [anon_sym_AMP] = ACTIONS(7737), - [anon_sym_EQ_EQ] = ACTIONS(6999), - [anon_sym_BANG_EQ] = ACTIONS(6999), - [anon_sym_GT] = ACTIONS(7001), - [anon_sym_GT_EQ] = ACTIONS(6999), - [anon_sym_LT_EQ] = ACTIONS(7001), - [anon_sym_LT] = ACTIONS(7001), - [anon_sym_LT_LT] = ACTIONS(6999), - [anon_sym_GT_GT] = ACTIONS(6999), - [anon_sym___extension__] = ACTIONS(7739), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(7739), - [anon_sym_volatile] = ACTIONS(7739), - [anon_sym_restrict] = ACTIONS(7739), - [anon_sym___restrict__] = ACTIONS(7739), - [anon_sym__Atomic] = ACTIONS(7739), - [anon_sym__Noreturn] = ACTIONS(7739), - [anon_sym_noreturn] = ACTIONS(7739), - [anon_sym__Nonnull] = ACTIONS(7739), - [anon_sym_mutable] = ACTIONS(7739), - [anon_sym_constinit] = ACTIONS(7739), - [anon_sym_consteval] = ACTIONS(7739), - [anon_sym_alignas] = ACTIONS(7747), - [anon_sym__Alignas] = ACTIONS(7747), - [anon_sym_QMARK] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(6999), - [anon_sym_or] = ACTIONS(7001), - [anon_sym_and] = ACTIONS(7001), - [anon_sym_bitor] = ACTIONS(7001), - [anon_sym_xor] = ACTIONS(7001), - [anon_sym_bitand] = ACTIONS(7001), - [anon_sym_not_eq] = ACTIONS(7001), - [anon_sym_DASH_DASH] = ACTIONS(6999), - [anon_sym_PLUS_PLUS] = ACTIONS(6999), - [anon_sym_DOT] = ACTIONS(7001), - [anon_sym_DOT_STAR] = ACTIONS(6999), - [anon_sym_DASH_GT] = ACTIONS(6999), + [STATE(2666)] = { + [sym_attribute_specifier] = STATE(2947), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7425), + [anon_sym_COMMA] = ACTIONS(7425), + [anon_sym_RPAREN] = ACTIONS(7425), + [anon_sym_LPAREN2] = ACTIONS(7425), + [anon_sym_DASH] = ACTIONS(7423), + [anon_sym_PLUS] = ACTIONS(7423), + [anon_sym_STAR] = ACTIONS(7423), + [anon_sym_SLASH] = ACTIONS(7423), + [anon_sym_PERCENT] = ACTIONS(7423), + [anon_sym_PIPE_PIPE] = ACTIONS(7425), + [anon_sym_AMP_AMP] = ACTIONS(7425), + [anon_sym_PIPE] = ACTIONS(7423), + [anon_sym_CARET] = ACTIONS(7423), + [anon_sym_AMP] = ACTIONS(7423), + [anon_sym_EQ_EQ] = ACTIONS(7425), + [anon_sym_BANG_EQ] = ACTIONS(7425), + [anon_sym_GT] = ACTIONS(7423), + [anon_sym_GT_EQ] = ACTIONS(7425), + [anon_sym_LT_EQ] = ACTIONS(7423), + [anon_sym_LT] = ACTIONS(7423), + [anon_sym_LT_LT] = ACTIONS(7423), + [anon_sym_GT_GT] = ACTIONS(7423), + [anon_sym___extension__] = ACTIONS(7425), + [anon_sym___attribute__] = ACTIONS(8152), + [anon_sym___attribute] = ACTIONS(8154), + [anon_sym_LBRACE] = ACTIONS(7425), + [anon_sym_LBRACK] = ACTIONS(7425), + [anon_sym_EQ] = ACTIONS(7423), + [anon_sym_const] = ACTIONS(7423), + [anon_sym_constexpr] = ACTIONS(7425), + [anon_sym_volatile] = ACTIONS(7425), + [anon_sym_restrict] = ACTIONS(7425), + [anon_sym___restrict__] = ACTIONS(7425), + [anon_sym__Atomic] = ACTIONS(7425), + [anon_sym__Noreturn] = ACTIONS(7425), + [anon_sym_noreturn] = ACTIONS(7425), + [anon_sym__Nonnull] = ACTIONS(7425), + [anon_sym_mutable] = ACTIONS(7425), + [anon_sym_constinit] = ACTIONS(7425), + [anon_sym_consteval] = ACTIONS(7425), + [anon_sym_alignas] = ACTIONS(7425), + [anon_sym__Alignas] = ACTIONS(7425), + [anon_sym_QMARK] = ACTIONS(7425), + [anon_sym_STAR_EQ] = ACTIONS(7425), + [anon_sym_SLASH_EQ] = ACTIONS(7425), + [anon_sym_PERCENT_EQ] = ACTIONS(7425), + [anon_sym_PLUS_EQ] = ACTIONS(7425), + [anon_sym_DASH_EQ] = ACTIONS(7425), + [anon_sym_LT_LT_EQ] = ACTIONS(7425), + [anon_sym_GT_GT_EQ] = ACTIONS(7425), + [anon_sym_AMP_EQ] = ACTIONS(7425), + [anon_sym_CARET_EQ] = ACTIONS(7425), + [anon_sym_PIPE_EQ] = ACTIONS(7425), + [anon_sym_and_eq] = ACTIONS(7425), + [anon_sym_or_eq] = ACTIONS(7425), + [anon_sym_xor_eq] = ACTIONS(7425), + [anon_sym_LT_EQ_GT] = ACTIONS(7425), + [anon_sym_or] = ACTIONS(7423), + [anon_sym_and] = ACTIONS(7423), + [anon_sym_bitor] = ACTIONS(7425), + [anon_sym_xor] = ACTIONS(7423), + [anon_sym_bitand] = ACTIONS(7425), + [anon_sym_not_eq] = ACTIONS(7425), + [anon_sym_DASH_DASH] = ACTIONS(7425), + [anon_sym_PLUS_PLUS] = ACTIONS(7425), + [anon_sym_DOT] = ACTIONS(7423), + [anon_sym_DOT_STAR] = ACTIONS(7425), + [anon_sym_DASH_GT] = ACTIONS(7423), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7001), - [anon_sym_override] = ACTIONS(7001), - [anon_sym_requires] = ACTIONS(7001), - }, - [STATE(2906)] = { - [sym__abstract_declarator] = STATE(6058), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(3734), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(1971), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(3734), - [sym_identifier] = ACTIONS(6495), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [aux_sym_preproc_if_token2] = ACTIONS(6497), - [aux_sym_preproc_else_token1] = ACTIONS(6497), - [aux_sym_preproc_elif_token1] = ACTIONS(6495), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6497), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(7733), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6497), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(7735), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6497), - [anon_sym_AMP] = ACTIONS(7737), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6497), - [anon_sym_GT_GT] = ACTIONS(6497), - [anon_sym___extension__] = ACTIONS(7739), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(7739), - [anon_sym_volatile] = ACTIONS(7739), - [anon_sym_restrict] = ACTIONS(7739), - [anon_sym___restrict__] = ACTIONS(7739), - [anon_sym__Atomic] = ACTIONS(7739), - [anon_sym__Noreturn] = ACTIONS(7739), - [anon_sym_noreturn] = ACTIONS(7739), - [anon_sym__Nonnull] = ACTIONS(7739), - [anon_sym_mutable] = ACTIONS(7739), - [anon_sym_constinit] = ACTIONS(7739), - [anon_sym_consteval] = ACTIONS(7739), - [anon_sym_alignas] = ACTIONS(7747), - [anon_sym__Alignas] = ACTIONS(7747), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6495), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6495), - [anon_sym_not_eq] = ACTIONS(6495), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6495), - [anon_sym_override] = ACTIONS(6495), - [anon_sym_requires] = ACTIONS(6495), - }, - [STATE(2907)] = { - [sym_attribute_specifier] = STATE(4161), - [sym_attribute_declaration] = STATE(4518), - [sym_gnu_asm_expression] = STATE(8999), - [sym_virtual_specifier] = STATE(4532), - [sym__function_attributes_end] = STATE(4292), - [sym__function_postfix] = STATE(5047), - [sym_trailing_return_type] = STATE(4325), - [sym_requires_clause] = STATE(5047), - [aux_sym_type_definition_repeat1] = STATE(4161), - [aux_sym_attributed_declarator_repeat1] = STATE(4518), - [aux_sym__function_postfix_repeat1] = STATE(4532), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7629), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym___attribute__] = ACTIONS(6361), - [anon_sym___attribute] = ACTIONS(6363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7629), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7627), - [anon_sym_or_eq] = ACTIONS(7627), - [anon_sym_xor_eq] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(8039), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6384), - [anon_sym_override] = ACTIONS(6384), - [anon_sym_GT2] = ACTIONS(7627), - [anon_sym_requires] = ACTIONS(6386), - }, - [STATE(2908)] = { - [sym__abstract_declarator] = STATE(6044), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(3734), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(1971), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(3734), - [sym_identifier] = ACTIONS(7005), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), - [anon_sym_COMMA] = ACTIONS(7003), - [aux_sym_preproc_if_token2] = ACTIONS(7003), - [aux_sym_preproc_else_token1] = ACTIONS(7003), - [aux_sym_preproc_elif_token1] = ACTIONS(7005), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7003), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7003), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(7733), - [anon_sym_SLASH] = ACTIONS(7005), - [anon_sym_PERCENT] = ACTIONS(7003), - [anon_sym_PIPE_PIPE] = ACTIONS(7003), - [anon_sym_AMP_AMP] = ACTIONS(7735), - [anon_sym_PIPE] = ACTIONS(7005), - [anon_sym_CARET] = ACTIONS(7003), - [anon_sym_AMP] = ACTIONS(7737), - [anon_sym_EQ_EQ] = ACTIONS(7003), - [anon_sym_BANG_EQ] = ACTIONS(7003), - [anon_sym_GT] = ACTIONS(7005), - [anon_sym_GT_EQ] = ACTIONS(7003), - [anon_sym_LT_EQ] = ACTIONS(7005), - [anon_sym_LT] = ACTIONS(7005), - [anon_sym_LT_LT] = ACTIONS(7003), - [anon_sym_GT_GT] = ACTIONS(7003), - [anon_sym___extension__] = ACTIONS(7739), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(7739), - [anon_sym_volatile] = ACTIONS(7739), - [anon_sym_restrict] = ACTIONS(7739), - [anon_sym___restrict__] = ACTIONS(7739), - [anon_sym__Atomic] = ACTIONS(7739), - [anon_sym__Noreturn] = ACTIONS(7739), - [anon_sym_noreturn] = ACTIONS(7739), - [anon_sym__Nonnull] = ACTIONS(7739), - [anon_sym_mutable] = ACTIONS(7739), - [anon_sym_constinit] = ACTIONS(7739), - [anon_sym_consteval] = ACTIONS(7739), - [anon_sym_alignas] = ACTIONS(7747), - [anon_sym__Alignas] = ACTIONS(7747), - [anon_sym_QMARK] = ACTIONS(7003), - [anon_sym_LT_EQ_GT] = ACTIONS(7003), - [anon_sym_or] = ACTIONS(7005), - [anon_sym_and] = ACTIONS(7005), - [anon_sym_bitor] = ACTIONS(7005), - [anon_sym_xor] = ACTIONS(7005), - [anon_sym_bitand] = ACTIONS(7005), - [anon_sym_not_eq] = ACTIONS(7005), - [anon_sym_DASH_DASH] = ACTIONS(7003), - [anon_sym_PLUS_PLUS] = ACTIONS(7003), - [anon_sym_DOT] = ACTIONS(7005), - [anon_sym_DOT_STAR] = ACTIONS(7003), - [anon_sym_DASH_GT] = ACTIONS(7003), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7005), - [anon_sym_override] = ACTIONS(7005), - [anon_sym_requires] = ACTIONS(7005), - }, - [STATE(2909)] = { - [sym__abstract_declarator] = STATE(6043), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(3734), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(1971), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(3734), - [sym_identifier] = ACTIONS(7009), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), - [anon_sym_COMMA] = ACTIONS(7007), - [aux_sym_preproc_if_token2] = ACTIONS(7007), - [aux_sym_preproc_else_token1] = ACTIONS(7007), - [aux_sym_preproc_elif_token1] = ACTIONS(7009), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7007), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7007), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(7009), - [anon_sym_PLUS] = ACTIONS(7009), - [anon_sym_STAR] = ACTIONS(7733), - [anon_sym_SLASH] = ACTIONS(7009), - [anon_sym_PERCENT] = ACTIONS(7007), - [anon_sym_PIPE_PIPE] = ACTIONS(7007), - [anon_sym_AMP_AMP] = ACTIONS(7735), - [anon_sym_PIPE] = ACTIONS(7009), - [anon_sym_CARET] = ACTIONS(7007), - [anon_sym_AMP] = ACTIONS(7737), - [anon_sym_EQ_EQ] = ACTIONS(7007), - [anon_sym_BANG_EQ] = ACTIONS(7007), - [anon_sym_GT] = ACTIONS(7009), - [anon_sym_GT_EQ] = ACTIONS(7007), - [anon_sym_LT_EQ] = ACTIONS(7009), - [anon_sym_LT] = ACTIONS(7009), - [anon_sym_LT_LT] = ACTIONS(7007), - [anon_sym_GT_GT] = ACTIONS(7007), - [anon_sym___extension__] = ACTIONS(7739), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(7739), - [anon_sym_volatile] = ACTIONS(7739), - [anon_sym_restrict] = ACTIONS(7739), - [anon_sym___restrict__] = ACTIONS(7739), - [anon_sym__Atomic] = ACTIONS(7739), - [anon_sym__Noreturn] = ACTIONS(7739), - [anon_sym_noreturn] = ACTIONS(7739), - [anon_sym__Nonnull] = ACTIONS(7739), - [anon_sym_mutable] = ACTIONS(7739), - [anon_sym_constinit] = ACTIONS(7739), - [anon_sym_consteval] = ACTIONS(7739), - [anon_sym_alignas] = ACTIONS(7747), - [anon_sym__Alignas] = ACTIONS(7747), - [anon_sym_QMARK] = ACTIONS(7007), - [anon_sym_LT_EQ_GT] = ACTIONS(7007), - [anon_sym_or] = ACTIONS(7009), - [anon_sym_and] = ACTIONS(7009), - [anon_sym_bitor] = ACTIONS(7009), - [anon_sym_xor] = ACTIONS(7009), - [anon_sym_bitand] = ACTIONS(7009), - [anon_sym_not_eq] = ACTIONS(7009), - [anon_sym_DASH_DASH] = ACTIONS(7007), - [anon_sym_PLUS_PLUS] = ACTIONS(7007), - [anon_sym_DOT] = ACTIONS(7009), - [anon_sym_DOT_STAR] = ACTIONS(7007), - [anon_sym_DASH_GT] = ACTIONS(7007), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7009), - [anon_sym_override] = ACTIONS(7009), - [anon_sym_requires] = ACTIONS(7009), - }, - [STATE(2910)] = { - [sym_identifier] = ACTIONS(8622), - [anon_sym_LPAREN2] = ACTIONS(8624), - [anon_sym_TILDE] = ACTIONS(8624), - [anon_sym_STAR] = ACTIONS(8624), - [anon_sym_PIPE_PIPE] = ACTIONS(8624), - [anon_sym_AMP_AMP] = ACTIONS(8624), - [anon_sym_AMP] = ACTIONS(8622), - [anon_sym___extension__] = ACTIONS(8622), - [anon_sym_virtual] = ACTIONS(8622), - [anon_sym_extern] = ACTIONS(8622), - [anon_sym___attribute__] = ACTIONS(8622), - [anon_sym___attribute] = ACTIONS(8622), - [anon_sym_using] = ACTIONS(8622), - [anon_sym_COLON_COLON] = ACTIONS(8624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8624), - [anon_sym___declspec] = ACTIONS(8622), - [anon_sym___based] = ACTIONS(8622), - [anon_sym___cdecl] = ACTIONS(8622), - [anon_sym___clrcall] = ACTIONS(8622), - [anon_sym___stdcall] = ACTIONS(8622), - [anon_sym___fastcall] = ACTIONS(8622), - [anon_sym___thiscall] = ACTIONS(8622), - [anon_sym___vectorcall] = ACTIONS(8622), - [anon_sym_LBRACE] = ACTIONS(8624), - [anon_sym_signed] = ACTIONS(8622), - [anon_sym_unsigned] = ACTIONS(8622), - [anon_sym_long] = ACTIONS(8622), - [anon_sym_short] = ACTIONS(8622), - [anon_sym_LBRACK] = ACTIONS(8622), - [anon_sym_static] = ACTIONS(8622), - [anon_sym_register] = ACTIONS(8622), - [anon_sym_inline] = ACTIONS(8622), - [anon_sym___inline] = ACTIONS(8622), - [anon_sym___inline__] = ACTIONS(8622), - [anon_sym___forceinline] = ACTIONS(8622), - [anon_sym_thread_local] = ACTIONS(8622), - [anon_sym___thread] = ACTIONS(8622), - [anon_sym_const] = ACTIONS(8622), - [anon_sym_constexpr] = ACTIONS(8622), - [anon_sym_volatile] = ACTIONS(8622), - [anon_sym_restrict] = ACTIONS(8622), - [anon_sym___restrict__] = ACTIONS(8622), - [anon_sym__Atomic] = ACTIONS(8622), - [anon_sym__Noreturn] = ACTIONS(8622), - [anon_sym_noreturn] = ACTIONS(8622), - [anon_sym__Nonnull] = ACTIONS(8622), - [anon_sym_mutable] = ACTIONS(8622), - [anon_sym_constinit] = ACTIONS(8622), - [anon_sym_consteval] = ACTIONS(8622), - [anon_sym_alignas] = ACTIONS(8622), - [anon_sym__Alignas] = ACTIONS(8622), - [sym_primitive_type] = ACTIONS(8622), - [anon_sym_enum] = ACTIONS(8622), - [anon_sym_class] = ACTIONS(8622), - [anon_sym_struct] = ACTIONS(8622), - [anon_sym_union] = ACTIONS(8622), - [anon_sym_or] = ACTIONS(8622), - [anon_sym_and] = ACTIONS(8622), - [anon_sym_typename] = ACTIONS(8622), - [anon_sym_DASH_GT] = ACTIONS(8624), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8622), - [anon_sym_decltype] = ACTIONS(8622), - [anon_sym_explicit] = ACTIONS(8622), - [anon_sym_template] = ACTIONS(8622), - [anon_sym_operator] = ACTIONS(8622), - [anon_sym_friend] = ACTIONS(8622), - [anon_sym_noexcept] = ACTIONS(8622), - [anon_sym_throw] = ACTIONS(8622), - [anon_sym_concept] = ACTIONS(8622), - [anon_sym_LBRACK_COLON] = ACTIONS(8624), + [anon_sym_final] = ACTIONS(7425), + [anon_sym_override] = ACTIONS(7425), + [anon_sym_requires] = ACTIONS(7425), + [anon_sym_DASH_GT_STAR] = ACTIONS(7425), }, - [STATE(2911)] = { - [sym_virtual_specifier] = STATE(3248), - [sym__function_postfix] = STATE(3497), - [sym_requires_clause] = STATE(3497), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [sym_identifier] = ACTIONS(7629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_RPAREN] = ACTIONS(7627), - [aux_sym_preproc_if_token2] = ACTIONS(7627), - [aux_sym_preproc_else_token1] = ACTIONS(7627), - [aux_sym_preproc_elif_token1] = ACTIONS(7629), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7627), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym_SEMI] = ACTIONS(7627), - [anon_sym___attribute__] = ACTIONS(7629), - [anon_sym___attribute] = ACTIONS(7629), - [anon_sym_COLON] = ACTIONS(7629), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7627), - [anon_sym_RBRACE] = ACTIONS(7627), - [anon_sym_LBRACK] = ACTIONS(7627), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7629), - [anon_sym_or_eq] = ACTIONS(7629), - [anon_sym_xor_eq] = ACTIONS(7629), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7629), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7629), - [anon_sym_not_eq] = ACTIONS(7629), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(7627), + [STATE(2667)] = { + [sym_attribute_specifier] = STATE(3127), + [sym_enumerator_list] = STATE(2825), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7383), + [anon_sym_COMMA] = ACTIONS(7383), + [anon_sym_LPAREN2] = ACTIONS(7383), + [anon_sym_DASH] = ACTIONS(7381), + [anon_sym_PLUS] = ACTIONS(7381), + [anon_sym_STAR] = ACTIONS(7381), + [anon_sym_SLASH] = ACTIONS(7381), + [anon_sym_PERCENT] = ACTIONS(7381), + [anon_sym_PIPE_PIPE] = ACTIONS(7383), + [anon_sym_AMP_AMP] = ACTIONS(7383), + [anon_sym_PIPE] = ACTIONS(7381), + [anon_sym_CARET] = ACTIONS(7381), + [anon_sym_AMP] = ACTIONS(7381), + [anon_sym_EQ_EQ] = ACTIONS(7383), + [anon_sym_BANG_EQ] = ACTIONS(7383), + [anon_sym_GT] = ACTIONS(7381), + [anon_sym_GT_EQ] = ACTIONS(7381), + [anon_sym_LT_EQ] = ACTIONS(7381), + [anon_sym_LT] = ACTIONS(7381), + [anon_sym_LT_LT] = ACTIONS(7381), + [anon_sym_GT_GT] = ACTIONS(7381), + [anon_sym___extension__] = ACTIONS(7383), + [anon_sym___attribute__] = ACTIONS(8265), + [anon_sym___attribute] = ACTIONS(8267), + [anon_sym_LBRACE] = ACTIONS(8472), + [anon_sym_LBRACK] = ACTIONS(7383), + [anon_sym_EQ] = ACTIONS(7381), + [anon_sym_const] = ACTIONS(7381), + [anon_sym_constexpr] = ACTIONS(7383), + [anon_sym_volatile] = ACTIONS(7383), + [anon_sym_restrict] = ACTIONS(7383), + [anon_sym___restrict__] = ACTIONS(7383), + [anon_sym__Atomic] = ACTIONS(7383), + [anon_sym__Noreturn] = ACTIONS(7383), + [anon_sym_noreturn] = ACTIONS(7383), + [anon_sym__Nonnull] = ACTIONS(7383), + [anon_sym_mutable] = ACTIONS(7383), + [anon_sym_constinit] = ACTIONS(7383), + [anon_sym_consteval] = ACTIONS(7383), + [anon_sym_alignas] = ACTIONS(7383), + [anon_sym__Alignas] = ACTIONS(7383), + [anon_sym_QMARK] = ACTIONS(7383), + [anon_sym_STAR_EQ] = ACTIONS(7383), + [anon_sym_SLASH_EQ] = ACTIONS(7383), + [anon_sym_PERCENT_EQ] = ACTIONS(7383), + [anon_sym_PLUS_EQ] = ACTIONS(7383), + [anon_sym_DASH_EQ] = ACTIONS(7383), + [anon_sym_LT_LT_EQ] = ACTIONS(7383), + [anon_sym_GT_GT_EQ] = ACTIONS(7381), + [anon_sym_AMP_EQ] = ACTIONS(7383), + [anon_sym_CARET_EQ] = ACTIONS(7383), + [anon_sym_PIPE_EQ] = ACTIONS(7383), + [anon_sym_and_eq] = ACTIONS(7383), + [anon_sym_or_eq] = ACTIONS(7383), + [anon_sym_xor_eq] = ACTIONS(7383), + [anon_sym_LT_EQ_GT] = ACTIONS(7383), + [anon_sym_or] = ACTIONS(7381), + [anon_sym_and] = ACTIONS(7381), + [anon_sym_bitor] = ACTIONS(7383), + [anon_sym_xor] = ACTIONS(7381), + [anon_sym_bitand] = ACTIONS(7383), + [anon_sym_not_eq] = ACTIONS(7383), + [anon_sym_DASH_DASH] = ACTIONS(7383), + [anon_sym_PLUS_PLUS] = ACTIONS(7383), + [anon_sym_DOT] = ACTIONS(7381), + [anon_sym_DOT_STAR] = ACTIONS(7383), + [anon_sym_DASH_GT] = ACTIONS(7383), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6134), - [anon_sym_override] = ACTIONS(6134), - [anon_sym_requires] = ACTIONS(6140), - [anon_sym_COLON_RBRACK] = ACTIONS(7627), - }, - [STATE(2912)] = { - [sym_attribute_specifier] = STATE(4161), - [sym_attribute_declaration] = STATE(4518), - [sym_gnu_asm_expression] = STATE(8999), - [sym_virtual_specifier] = STATE(4532), - [sym__function_attributes_end] = STATE(4229), - [sym__function_postfix] = STATE(5023), - [sym_trailing_return_type] = STATE(4354), - [sym_requires_clause] = STATE(5023), - [aux_sym_type_definition_repeat1] = STATE(4161), - [aux_sym_attributed_declarator_repeat1] = STATE(4518), - [aux_sym__function_postfix_repeat1] = STATE(4532), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), - [anon_sym_COMMA] = ACTIONS(8089), - [anon_sym_LPAREN2] = ACTIONS(8089), - [anon_sym_DASH] = ACTIONS(8087), - [anon_sym_PLUS] = ACTIONS(8087), - [anon_sym_STAR] = ACTIONS(8087), - [anon_sym_SLASH] = ACTIONS(8087), - [anon_sym_PERCENT] = ACTIONS(8087), - [anon_sym_PIPE_PIPE] = ACTIONS(8089), - [anon_sym_AMP_AMP] = ACTIONS(8089), - [anon_sym_PIPE] = ACTIONS(8087), - [anon_sym_CARET] = ACTIONS(8087), - [anon_sym_AMP] = ACTIONS(8087), - [anon_sym_EQ_EQ] = ACTIONS(8089), - [anon_sym_BANG_EQ] = ACTIONS(8089), - [anon_sym_GT] = ACTIONS(8087), - [anon_sym_GT_EQ] = ACTIONS(8087), - [anon_sym_LT_EQ] = ACTIONS(8087), - [anon_sym_LT] = ACTIONS(8087), - [anon_sym_LT_LT] = ACTIONS(8087), - [anon_sym_GT_GT] = ACTIONS(8087), - [anon_sym___attribute__] = ACTIONS(6361), - [anon_sym___attribute] = ACTIONS(6363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(8087), - [anon_sym_EQ] = ACTIONS(8087), - [anon_sym_QMARK] = ACTIONS(8089), - [anon_sym_STAR_EQ] = ACTIONS(8089), - [anon_sym_SLASH_EQ] = ACTIONS(8089), - [anon_sym_PERCENT_EQ] = ACTIONS(8089), - [anon_sym_PLUS_EQ] = ACTIONS(8089), - [anon_sym_DASH_EQ] = ACTIONS(8089), - [anon_sym_LT_LT_EQ] = ACTIONS(8089), - [anon_sym_GT_GT_EQ] = ACTIONS(8087), - [anon_sym_AMP_EQ] = ACTIONS(8089), - [anon_sym_CARET_EQ] = ACTIONS(8089), - [anon_sym_PIPE_EQ] = ACTIONS(8089), - [anon_sym_and_eq] = ACTIONS(8089), - [anon_sym_or_eq] = ACTIONS(8089), - [anon_sym_xor_eq] = ACTIONS(8089), - [anon_sym_LT_EQ_GT] = ACTIONS(8089), - [anon_sym_or] = ACTIONS(8087), - [anon_sym_and] = ACTIONS(8087), - [anon_sym_bitor] = ACTIONS(8089), - [anon_sym_xor] = ACTIONS(8087), - [anon_sym_bitand] = ACTIONS(8089), - [anon_sym_not_eq] = ACTIONS(8089), - [anon_sym_DASH_DASH] = ACTIONS(8089), - [anon_sym_PLUS_PLUS] = ACTIONS(8089), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(8087), - [anon_sym_DOT_STAR] = ACTIONS(8089), - [anon_sym_DASH_GT] = ACTIONS(8626), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6384), - [anon_sym_override] = ACTIONS(6384), - [anon_sym_GT2] = ACTIONS(8089), - [anon_sym_requires] = ACTIONS(6386), - }, - [STATE(2913)] = { - [sym_identifier] = ACTIONS(8629), - [anon_sym_LPAREN2] = ACTIONS(8631), - [anon_sym_TILDE] = ACTIONS(8631), - [anon_sym_STAR] = ACTIONS(8631), - [anon_sym_PIPE_PIPE] = ACTIONS(8631), - [anon_sym_AMP_AMP] = ACTIONS(8631), - [anon_sym_AMP] = ACTIONS(8629), - [anon_sym___extension__] = ACTIONS(8629), - [anon_sym_virtual] = ACTIONS(8629), - [anon_sym_extern] = ACTIONS(8629), - [anon_sym___attribute__] = ACTIONS(8629), - [anon_sym___attribute] = ACTIONS(8629), - [anon_sym_using] = ACTIONS(8629), - [anon_sym_COLON_COLON] = ACTIONS(8631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8631), - [anon_sym___declspec] = ACTIONS(8629), - [anon_sym___based] = ACTIONS(8629), - [anon_sym___cdecl] = ACTIONS(8629), - [anon_sym___clrcall] = ACTIONS(8629), - [anon_sym___stdcall] = ACTIONS(8629), - [anon_sym___fastcall] = ACTIONS(8629), - [anon_sym___thiscall] = ACTIONS(8629), - [anon_sym___vectorcall] = ACTIONS(8629), - [anon_sym_LBRACE] = ACTIONS(8631), - [anon_sym_signed] = ACTIONS(8629), - [anon_sym_unsigned] = ACTIONS(8629), - [anon_sym_long] = ACTIONS(8629), - [anon_sym_short] = ACTIONS(8629), - [anon_sym_LBRACK] = ACTIONS(8629), - [anon_sym_static] = ACTIONS(8629), - [anon_sym_register] = ACTIONS(8629), - [anon_sym_inline] = ACTIONS(8629), - [anon_sym___inline] = ACTIONS(8629), - [anon_sym___inline__] = ACTIONS(8629), - [anon_sym___forceinline] = ACTIONS(8629), - [anon_sym_thread_local] = ACTIONS(8629), - [anon_sym___thread] = ACTIONS(8629), - [anon_sym_const] = ACTIONS(8629), - [anon_sym_constexpr] = ACTIONS(8629), - [anon_sym_volatile] = ACTIONS(8629), - [anon_sym_restrict] = ACTIONS(8629), - [anon_sym___restrict__] = ACTIONS(8629), - [anon_sym__Atomic] = ACTIONS(8629), - [anon_sym__Noreturn] = ACTIONS(8629), - [anon_sym_noreturn] = ACTIONS(8629), - [anon_sym__Nonnull] = ACTIONS(8629), - [anon_sym_mutable] = ACTIONS(8629), - [anon_sym_constinit] = ACTIONS(8629), - [anon_sym_consteval] = ACTIONS(8629), - [anon_sym_alignas] = ACTIONS(8629), - [anon_sym__Alignas] = ACTIONS(8629), - [sym_primitive_type] = ACTIONS(8629), - [anon_sym_enum] = ACTIONS(8629), - [anon_sym_class] = ACTIONS(8629), - [anon_sym_struct] = ACTIONS(8629), - [anon_sym_union] = ACTIONS(8629), - [anon_sym_or] = ACTIONS(8629), - [anon_sym_and] = ACTIONS(8629), - [anon_sym_typename] = ACTIONS(8629), - [anon_sym_DASH_GT] = ACTIONS(8631), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8629), - [anon_sym_decltype] = ACTIONS(8629), - [anon_sym_explicit] = ACTIONS(8629), - [anon_sym_template] = ACTIONS(8629), - [anon_sym_operator] = ACTIONS(8629), - [anon_sym_friend] = ACTIONS(8629), - [anon_sym_noexcept] = ACTIONS(8629), - [anon_sym_throw] = ACTIONS(8629), - [anon_sym_concept] = ACTIONS(8629), - [anon_sym_LBRACK_COLON] = ACTIONS(8631), - }, - [STATE(2914)] = { - [sym_argument_list] = STATE(5546), - [sym_initializer_list] = STATE(5578), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(8167), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6798), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + [anon_sym_final] = ACTIONS(7383), + [anon_sym_override] = ACTIONS(7383), + [anon_sym_GT2] = ACTIONS(7383), + [anon_sym_requires] = ACTIONS(7383), }, - [STATE(2915)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(4191), - [sym_ms_pointer_modifier] = STATE(2847), - [sym__abstract_declarator] = STATE(6754), - [sym_abstract_parenthesized_declarator] = STATE(6612), - [sym_abstract_pointer_declarator] = STATE(6612), - [sym_abstract_function_declarator] = STATE(6612), - [sym_abstract_array_declarator] = STATE(6612), - [sym_type_qualifier] = STATE(3929), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(2180), - [sym_abstract_reference_declarator] = STATE(6612), - [sym__function_declarator_seq] = STATE(6536), - [aux_sym__type_definition_type_repeat1] = STATE(3929), - [aux_sym_pointer_declarator_repeat1] = STATE(2847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(8246), - [anon_sym_DASH] = ACTIONS(6457), - [anon_sym_PLUS] = ACTIONS(6457), - [anon_sym_STAR] = ACTIONS(8520), - [anon_sym_SLASH] = ACTIONS(6457), - [anon_sym_PERCENT] = ACTIONS(6459), - [anon_sym_PIPE_PIPE] = ACTIONS(6459), - [anon_sym_AMP_AMP] = ACTIONS(8522), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_CARET] = ACTIONS(6459), - [anon_sym_AMP] = ACTIONS(8524), - [anon_sym_EQ_EQ] = ACTIONS(6459), - [anon_sym_BANG_EQ] = ACTIONS(6459), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_GT_EQ] = ACTIONS(6459), - [anon_sym_LT_EQ] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_LT_LT] = ACTIONS(6459), - [anon_sym_GT_GT] = ACTIONS(6459), - [anon_sym___extension__] = ACTIONS(8254), - [sym_ms_restrict_modifier] = ACTIONS(8256), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8258), - [sym_ms_signed_ptr_modifier] = ACTIONS(8258), - [anon_sym__unaligned] = ACTIONS(8260), - [anon_sym___unaligned] = ACTIONS(8260), - [anon_sym_LBRACK] = ACTIONS(8262), - [anon_sym_RBRACK] = ACTIONS(6459), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(8254), - [anon_sym_volatile] = ACTIONS(8254), - [anon_sym_restrict] = ACTIONS(8254), - [anon_sym___restrict__] = ACTIONS(8254), - [anon_sym__Atomic] = ACTIONS(8254), - [anon_sym__Noreturn] = ACTIONS(8254), - [anon_sym_noreturn] = ACTIONS(8254), - [anon_sym__Nonnull] = ACTIONS(8254), - [anon_sym_mutable] = ACTIONS(8254), - [anon_sym_constinit] = ACTIONS(8254), - [anon_sym_consteval] = ACTIONS(8254), - [anon_sym_alignas] = ACTIONS(8264), - [anon_sym__Alignas] = ACTIONS(8264), - [anon_sym_QMARK] = ACTIONS(6459), - [anon_sym_LT_EQ_GT] = ACTIONS(6459), - [anon_sym_or] = ACTIONS(6459), - [anon_sym_and] = ACTIONS(6459), - [anon_sym_bitor] = ACTIONS(6459), - [anon_sym_xor] = ACTIONS(6459), - [anon_sym_bitand] = ACTIONS(6459), - [anon_sym_not_eq] = ACTIONS(6459), - [anon_sym_DASH_DASH] = ACTIONS(6459), - [anon_sym_PLUS_PLUS] = ACTIONS(6459), - [anon_sym_DOT] = ACTIONS(6457), - [anon_sym_DOT_STAR] = ACTIONS(6459), - [anon_sym_DASH_GT] = ACTIONS(6459), + [STATE(2668)] = { + [sym_attribute_specifier] = STATE(3063), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), + [anon_sym_COMMA] = ACTIONS(7399), + [anon_sym_RPAREN] = ACTIONS(7399), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(7397), + [anon_sym_PLUS] = ACTIONS(7397), + [anon_sym_STAR] = ACTIONS(7397), + [anon_sym_SLASH] = ACTIONS(7397), + [anon_sym_PERCENT] = ACTIONS(7397), + [anon_sym_PIPE_PIPE] = ACTIONS(7399), + [anon_sym_AMP_AMP] = ACTIONS(7399), + [anon_sym_PIPE] = ACTIONS(7397), + [anon_sym_CARET] = ACTIONS(7397), + [anon_sym_AMP] = ACTIONS(7397), + [anon_sym_EQ_EQ] = ACTIONS(7399), + [anon_sym_BANG_EQ] = ACTIONS(7399), + [anon_sym_GT] = ACTIONS(7397), + [anon_sym_GT_EQ] = ACTIONS(7399), + [anon_sym_LT_EQ] = ACTIONS(7397), + [anon_sym_LT] = ACTIONS(7397), + [anon_sym_LT_LT] = ACTIONS(7397), + [anon_sym_GT_GT] = ACTIONS(7397), + [anon_sym___extension__] = ACTIONS(7399), + [anon_sym___attribute__] = ACTIONS(8152), + [anon_sym___attribute] = ACTIONS(8154), + [anon_sym_LBRACE] = ACTIONS(7399), + [anon_sym_LBRACK] = ACTIONS(7399), + [anon_sym_EQ] = ACTIONS(7397), + [anon_sym_const] = ACTIONS(7397), + [anon_sym_constexpr] = ACTIONS(7399), + [anon_sym_volatile] = ACTIONS(7399), + [anon_sym_restrict] = ACTIONS(7399), + [anon_sym___restrict__] = ACTIONS(7399), + [anon_sym__Atomic] = ACTIONS(7399), + [anon_sym__Noreturn] = ACTIONS(7399), + [anon_sym_noreturn] = ACTIONS(7399), + [anon_sym__Nonnull] = ACTIONS(7399), + [anon_sym_mutable] = ACTIONS(7399), + [anon_sym_constinit] = ACTIONS(7399), + [anon_sym_consteval] = ACTIONS(7399), + [anon_sym_alignas] = ACTIONS(7399), + [anon_sym__Alignas] = ACTIONS(7399), + [anon_sym_QMARK] = ACTIONS(7399), + [anon_sym_STAR_EQ] = ACTIONS(7399), + [anon_sym_SLASH_EQ] = ACTIONS(7399), + [anon_sym_PERCENT_EQ] = ACTIONS(7399), + [anon_sym_PLUS_EQ] = ACTIONS(7399), + [anon_sym_DASH_EQ] = ACTIONS(7399), + [anon_sym_LT_LT_EQ] = ACTIONS(7399), + [anon_sym_GT_GT_EQ] = ACTIONS(7399), + [anon_sym_AMP_EQ] = ACTIONS(7399), + [anon_sym_CARET_EQ] = ACTIONS(7399), + [anon_sym_PIPE_EQ] = ACTIONS(7399), + [anon_sym_and_eq] = ACTIONS(7399), + [anon_sym_or_eq] = ACTIONS(7399), + [anon_sym_xor_eq] = ACTIONS(7399), + [anon_sym_LT_EQ_GT] = ACTIONS(7399), + [anon_sym_or] = ACTIONS(7397), + [anon_sym_and] = ACTIONS(7397), + [anon_sym_bitor] = ACTIONS(7399), + [anon_sym_xor] = ACTIONS(7397), + [anon_sym_bitand] = ACTIONS(7399), + [anon_sym_not_eq] = ACTIONS(7399), + [anon_sym_DASH_DASH] = ACTIONS(7399), + [anon_sym_PLUS_PLUS] = ACTIONS(7399), + [anon_sym_DOT] = ACTIONS(7397), + [anon_sym_DOT_STAR] = ACTIONS(7399), + [anon_sym_DASH_GT] = ACTIONS(7397), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7399), + [anon_sym_override] = ACTIONS(7399), + [anon_sym_requires] = ACTIONS(7399), + [anon_sym_DASH_GT_STAR] = ACTIONS(7399), }, - [STATE(2916)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_attributes_end] = STATE(4134), - [sym__function_postfix] = STATE(3513), - [sym_trailing_return_type] = STATE(2911), - [sym_requires_clause] = STATE(3513), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym_SEMI] = ACTIONS(7544), - [anon_sym___attribute__] = ACTIONS(7927), - [anon_sym___attribute] = ACTIONS(7930), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7933), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6181), - [anon_sym_override] = ACTIONS(6181), - [anon_sym_requires] = ACTIONS(6183), - }, - [STATE(2917)] = { - [sym_identifier] = ACTIONS(8633), - [anon_sym_LPAREN2] = ACTIONS(8635), - [anon_sym_TILDE] = ACTIONS(8635), - [anon_sym_STAR] = ACTIONS(8635), - [anon_sym_PIPE_PIPE] = ACTIONS(8635), - [anon_sym_AMP_AMP] = ACTIONS(8635), - [anon_sym_AMP] = ACTIONS(8633), - [anon_sym___extension__] = ACTIONS(8633), - [anon_sym_virtual] = ACTIONS(8633), - [anon_sym_extern] = ACTIONS(8633), - [anon_sym___attribute__] = ACTIONS(8633), - [anon_sym___attribute] = ACTIONS(8633), - [anon_sym_using] = ACTIONS(8633), - [anon_sym_COLON_COLON] = ACTIONS(8635), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8635), - [anon_sym___declspec] = ACTIONS(8633), - [anon_sym___based] = ACTIONS(8633), - [anon_sym___cdecl] = ACTIONS(8633), - [anon_sym___clrcall] = ACTIONS(8633), - [anon_sym___stdcall] = ACTIONS(8633), - [anon_sym___fastcall] = ACTIONS(8633), - [anon_sym___thiscall] = ACTIONS(8633), - [anon_sym___vectorcall] = ACTIONS(8633), - [anon_sym_LBRACE] = ACTIONS(8635), - [anon_sym_signed] = ACTIONS(8633), - [anon_sym_unsigned] = ACTIONS(8633), - [anon_sym_long] = ACTIONS(8633), - [anon_sym_short] = ACTIONS(8633), - [anon_sym_LBRACK] = ACTIONS(8633), - [anon_sym_static] = ACTIONS(8633), - [anon_sym_register] = ACTIONS(8633), - [anon_sym_inline] = ACTIONS(8633), - [anon_sym___inline] = ACTIONS(8633), - [anon_sym___inline__] = ACTIONS(8633), - [anon_sym___forceinline] = ACTIONS(8633), - [anon_sym_thread_local] = ACTIONS(8633), - [anon_sym___thread] = ACTIONS(8633), - [anon_sym_const] = ACTIONS(8633), - [anon_sym_constexpr] = ACTIONS(8633), - [anon_sym_volatile] = ACTIONS(8633), - [anon_sym_restrict] = ACTIONS(8633), - [anon_sym___restrict__] = ACTIONS(8633), - [anon_sym__Atomic] = ACTIONS(8633), - [anon_sym__Noreturn] = ACTIONS(8633), - [anon_sym_noreturn] = ACTIONS(8633), - [anon_sym__Nonnull] = ACTIONS(8633), - [anon_sym_mutable] = ACTIONS(8633), - [anon_sym_constinit] = ACTIONS(8633), - [anon_sym_consteval] = ACTIONS(8633), - [anon_sym_alignas] = ACTIONS(8633), - [anon_sym__Alignas] = ACTIONS(8633), - [sym_primitive_type] = ACTIONS(8633), - [anon_sym_enum] = ACTIONS(8633), - [anon_sym_class] = ACTIONS(8633), - [anon_sym_struct] = ACTIONS(8633), - [anon_sym_union] = ACTIONS(8633), - [anon_sym_or] = ACTIONS(8633), - [anon_sym_and] = ACTIONS(8633), - [anon_sym_typename] = ACTIONS(8633), - [anon_sym_DASH_GT] = ACTIONS(8635), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8633), - [anon_sym_decltype] = ACTIONS(8633), - [anon_sym_explicit] = ACTIONS(8633), - [anon_sym_template] = ACTIONS(8633), - [anon_sym_operator] = ACTIONS(8633), - [anon_sym_friend] = ACTIONS(8633), - [anon_sym_noexcept] = ACTIONS(8633), - [anon_sym_throw] = ACTIONS(8633), - [anon_sym_concept] = ACTIONS(8633), - [anon_sym_LBRACK_COLON] = ACTIONS(8635), - }, - [STATE(2918)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_RPAREN] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(7343), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(7341), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(7343), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7341), - [anon_sym_AMP] = ACTIONS(7341), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7341), - [anon_sym_GT_GT] = ACTIONS(7341), - [anon_sym___extension__] = ACTIONS(7343), - [anon_sym_LBRACE] = ACTIONS(7343), - [anon_sym_LBRACK] = ACTIONS(7343), - [anon_sym_EQ] = ACTIONS(7341), - [anon_sym_const] = ACTIONS(7341), - [anon_sym_constexpr] = ACTIONS(7343), - [anon_sym_volatile] = ACTIONS(7343), - [anon_sym_restrict] = ACTIONS(7343), - [anon_sym___restrict__] = ACTIONS(7343), - [anon_sym__Atomic] = ACTIONS(7343), - [anon_sym__Noreturn] = ACTIONS(7343), - [anon_sym_noreturn] = ACTIONS(7343), - [anon_sym__Nonnull] = ACTIONS(7343), - [anon_sym_mutable] = ACTIONS(7343), - [anon_sym_constinit] = ACTIONS(7343), - [anon_sym_consteval] = ACTIONS(7343), - [anon_sym_alignas] = ACTIONS(7343), - [anon_sym__Alignas] = ACTIONS(7343), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_STAR_EQ] = ACTIONS(7343), - [anon_sym_SLASH_EQ] = ACTIONS(7343), - [anon_sym_PERCENT_EQ] = ACTIONS(7343), - [anon_sym_PLUS_EQ] = ACTIONS(7343), - [anon_sym_DASH_EQ] = ACTIONS(7343), - [anon_sym_LT_LT_EQ] = ACTIONS(7343), - [anon_sym_GT_GT_EQ] = ACTIONS(7343), - [anon_sym_AMP_EQ] = ACTIONS(7343), - [anon_sym_CARET_EQ] = ACTIONS(7343), - [anon_sym_PIPE_EQ] = ACTIONS(7343), - [anon_sym_and_eq] = ACTIONS(7343), - [anon_sym_or_eq] = ACTIONS(7343), - [anon_sym_xor_eq] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7341), - [anon_sym_and] = ACTIONS(7341), - [anon_sym_bitor] = ACTIONS(7343), - [anon_sym_xor] = ACTIONS(7341), - [anon_sym_bitand] = ACTIONS(7343), - [anon_sym_not_eq] = ACTIONS(7343), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7341), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7343), - [anon_sym_override] = ACTIONS(7343), - [anon_sym_requires] = ACTIONS(7343), - [anon_sym_DASH_GT_STAR] = ACTIONS(7343), + [STATE(2669)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4309), + [sym_ms_pointer_modifier] = STATE(3965), + [sym__abstract_declarator] = STATE(6443), + [sym_abstract_parenthesized_declarator] = STATE(6607), + [sym_abstract_pointer_declarator] = STATE(6607), + [sym_abstract_function_declarator] = STATE(6607), + [sym_abstract_array_declarator] = STATE(6607), + [sym_type_qualifier] = STATE(3724), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2281), + [sym_abstract_reference_declarator] = STATE(6607), + [sym__function_declarator_seq] = STATE(6608), + [aux_sym__type_definition_type_repeat1] = STATE(3724), + [aux_sym_pointer_declarator_repeat1] = STATE(3965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(8572), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(8574), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6823), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(8576), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6823), + [anon_sym_AMP] = ACTIONS(8578), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6823), + [anon_sym_GT_GT] = ACTIONS(6823), + [anon_sym___extension__] = ACTIONS(8580), + [sym_ms_restrict_modifier] = ACTIONS(8582), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8584), + [sym_ms_signed_ptr_modifier] = ACTIONS(8584), + [anon_sym__unaligned] = ACTIONS(8586), + [anon_sym___unaligned] = ACTIONS(8586), + [anon_sym_LBRACK] = ACTIONS(8588), + [anon_sym_RBRACK] = ACTIONS(6823), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8580), + [anon_sym_volatile] = ACTIONS(8580), + [anon_sym_restrict] = ACTIONS(8580), + [anon_sym___restrict__] = ACTIONS(8580), + [anon_sym__Atomic] = ACTIONS(8580), + [anon_sym__Noreturn] = ACTIONS(8580), + [anon_sym_noreturn] = ACTIONS(8580), + [anon_sym__Nonnull] = ACTIONS(8580), + [anon_sym_mutable] = ACTIONS(8580), + [anon_sym_constinit] = ACTIONS(8580), + [anon_sym_consteval] = ACTIONS(8580), + [anon_sym_alignas] = ACTIONS(8590), + [anon_sym__Alignas] = ACTIONS(8590), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6823), + [anon_sym_and] = ACTIONS(6823), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6823), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6823), + [anon_sym_override] = ACTIONS(6823), + [anon_sym_requires] = ACTIONS(6823), }, - [STATE(2919)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_attributes_end] = STATE(4135), - [sym__function_postfix] = STATE(3497), - [sym_trailing_return_type] = STATE(2959), - [sym_requires_clause] = STATE(3497), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym_SEMI] = ACTIONS(7627), - [anon_sym___attribute__] = ACTIONS(8070), - [anon_sym___attribute] = ACTIONS(8073), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7627), - [anon_sym_or_eq] = ACTIONS(7627), - [anon_sym_xor_eq] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(8076), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6181), - [anon_sym_override] = ACTIONS(6181), - [anon_sym_requires] = ACTIONS(6183), + [STATE(2670)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2499), + [sym_identifier] = ACTIONS(6999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), + [anon_sym_COMMA] = ACTIONS(7525), + [anon_sym_RPAREN] = ACTIONS(7525), + [anon_sym_LPAREN2] = ACTIONS(7525), + [anon_sym_DASH] = ACTIONS(7528), + [anon_sym_PLUS] = ACTIONS(7528), + [anon_sym_STAR] = ACTIONS(7528), + [anon_sym_SLASH] = ACTIONS(7528), + [anon_sym_PERCENT] = ACTIONS(7528), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_AMP_AMP] = ACTIONS(7525), + [anon_sym_PIPE] = ACTIONS(7528), + [anon_sym_CARET] = ACTIONS(7528), + [anon_sym_AMP] = ACTIONS(7528), + [anon_sym_EQ_EQ] = ACTIONS(7525), + [anon_sym_BANG_EQ] = ACTIONS(7525), + [anon_sym_GT] = ACTIONS(7528), + [anon_sym_GT_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7528), + [anon_sym_LT] = ACTIONS(7528), + [anon_sym_LT_LT] = ACTIONS(7528), + [anon_sym_GT_GT] = ACTIONS(7528), + [anon_sym___extension__] = ACTIONS(6999), + [anon_sym___attribute__] = ACTIONS(7528), + [anon_sym___attribute] = ACTIONS(7528), + [anon_sym_LBRACE] = ACTIONS(7525), + [anon_sym_signed] = ACTIONS(8309), + [anon_sym_unsigned] = ACTIONS(8309), + [anon_sym_long] = ACTIONS(8309), + [anon_sym_short] = ACTIONS(8309), + [anon_sym_LBRACK] = ACTIONS(7525), + [anon_sym_EQ] = ACTIONS(7528), + [anon_sym_const] = ACTIONS(6999), + [anon_sym_constexpr] = ACTIONS(6999), + [anon_sym_volatile] = ACTIONS(6999), + [anon_sym_restrict] = ACTIONS(6999), + [anon_sym___restrict__] = ACTIONS(6999), + [anon_sym__Atomic] = ACTIONS(6999), + [anon_sym__Noreturn] = ACTIONS(6999), + [anon_sym_noreturn] = ACTIONS(6999), + [anon_sym__Nonnull] = ACTIONS(6999), + [anon_sym_mutable] = ACTIONS(6999), + [anon_sym_constinit] = ACTIONS(6999), + [anon_sym_consteval] = ACTIONS(6999), + [anon_sym_alignas] = ACTIONS(6999), + [anon_sym__Alignas] = ACTIONS(6999), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7525), + [anon_sym_STAR_EQ] = ACTIONS(7525), + [anon_sym_SLASH_EQ] = ACTIONS(7525), + [anon_sym_PERCENT_EQ] = ACTIONS(7525), + [anon_sym_PLUS_EQ] = ACTIONS(7525), + [anon_sym_DASH_EQ] = ACTIONS(7525), + [anon_sym_LT_LT_EQ] = ACTIONS(7525), + [anon_sym_GT_GT_EQ] = ACTIONS(7525), + [anon_sym_AMP_EQ] = ACTIONS(7525), + [anon_sym_CARET_EQ] = ACTIONS(7525), + [anon_sym_PIPE_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ_GT] = ACTIONS(7525), + [anon_sym_or] = ACTIONS(7528), + [anon_sym_and] = ACTIONS(7528), + [anon_sym_bitor] = ACTIONS(7528), + [anon_sym_xor] = ACTIONS(7528), + [anon_sym_bitand] = ACTIONS(7528), + [anon_sym_not_eq] = ACTIONS(7528), + [anon_sym_DASH_DASH] = ACTIONS(7525), + [anon_sym_PLUS_PLUS] = ACTIONS(7525), + [anon_sym_DOT] = ACTIONS(7528), + [anon_sym_DOT_STAR] = ACTIONS(7525), + [anon_sym_DASH_GT] = ACTIONS(7528), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7525), }, - [STATE(2920)] = { - [sym_attribute_specifier] = STATE(2799), - [sym_attribute_declaration] = STATE(3129), - [sym_gnu_asm_expression] = STATE(8963), - [sym_virtual_specifier] = STATE(3248), - [sym__function_attributes_end] = STATE(4136), - [sym__function_postfix] = STATE(3528), - [sym_trailing_return_type] = STATE(2964), - [sym_requires_clause] = STATE(3528), - [aux_sym_type_definition_repeat1] = STATE(2799), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), - [anon_sym_COMMA] = ACTIONS(8089), - [anon_sym_LPAREN2] = ACTIONS(8089), - [anon_sym_DASH] = ACTIONS(8087), - [anon_sym_PLUS] = ACTIONS(8087), - [anon_sym_STAR] = ACTIONS(8087), - [anon_sym_SLASH] = ACTIONS(8087), - [anon_sym_PERCENT] = ACTIONS(8087), - [anon_sym_PIPE_PIPE] = ACTIONS(8089), - [anon_sym_AMP_AMP] = ACTIONS(8089), - [anon_sym_PIPE] = ACTIONS(8087), - [anon_sym_CARET] = ACTIONS(8087), - [anon_sym_AMP] = ACTIONS(8087), - [anon_sym_EQ_EQ] = ACTIONS(8089), - [anon_sym_BANG_EQ] = ACTIONS(8089), - [anon_sym_GT] = ACTIONS(8087), - [anon_sym_GT_EQ] = ACTIONS(8089), - [anon_sym_LT_EQ] = ACTIONS(8087), - [anon_sym_LT] = ACTIONS(8087), - [anon_sym_LT_LT] = ACTIONS(8087), - [anon_sym_GT_GT] = ACTIONS(8087), - [anon_sym_SEMI] = ACTIONS(8089), - [anon_sym___attribute__] = ACTIONS(8528), - [anon_sym___attribute] = ACTIONS(8531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(8087), - [anon_sym_EQ] = ACTIONS(8087), - [anon_sym_QMARK] = ACTIONS(8089), - [anon_sym_STAR_EQ] = ACTIONS(8089), - [anon_sym_SLASH_EQ] = ACTIONS(8089), - [anon_sym_PERCENT_EQ] = ACTIONS(8089), - [anon_sym_PLUS_EQ] = ACTIONS(8089), - [anon_sym_DASH_EQ] = ACTIONS(8089), - [anon_sym_LT_LT_EQ] = ACTIONS(8089), - [anon_sym_GT_GT_EQ] = ACTIONS(8089), - [anon_sym_AMP_EQ] = ACTIONS(8089), - [anon_sym_CARET_EQ] = ACTIONS(8089), - [anon_sym_PIPE_EQ] = ACTIONS(8089), - [anon_sym_and_eq] = ACTIONS(8089), - [anon_sym_or_eq] = ACTIONS(8089), - [anon_sym_xor_eq] = ACTIONS(8089), - [anon_sym_LT_EQ_GT] = ACTIONS(8089), - [anon_sym_or] = ACTIONS(8087), - [anon_sym_and] = ACTIONS(8087), - [anon_sym_bitor] = ACTIONS(8089), - [anon_sym_xor] = ACTIONS(8087), - [anon_sym_bitand] = ACTIONS(8089), - [anon_sym_not_eq] = ACTIONS(8089), - [anon_sym_DASH_DASH] = ACTIONS(8089), - [anon_sym_PLUS_PLUS] = ACTIONS(8089), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(8087), - [anon_sym_DOT_STAR] = ACTIONS(8089), - [anon_sym_DASH_GT] = ACTIONS(8534), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6181), - [anon_sym_override] = ACTIONS(6181), - [anon_sym_requires] = ACTIONS(6183), + [STATE(2671)] = { + [sym_attribute_specifier] = STATE(3064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7507), + [anon_sym_COMMA] = ACTIONS(7507), + [anon_sym_RPAREN] = ACTIONS(7507), + [anon_sym_LPAREN2] = ACTIONS(7507), + [anon_sym_DASH] = ACTIONS(7505), + [anon_sym_PLUS] = ACTIONS(7505), + [anon_sym_STAR] = ACTIONS(7505), + [anon_sym_SLASH] = ACTIONS(7505), + [anon_sym_PERCENT] = ACTIONS(7505), + [anon_sym_PIPE_PIPE] = ACTIONS(7507), + [anon_sym_AMP_AMP] = ACTIONS(7507), + [anon_sym_PIPE] = ACTIONS(7505), + [anon_sym_CARET] = ACTIONS(7505), + [anon_sym_AMP] = ACTIONS(7505), + [anon_sym_EQ_EQ] = ACTIONS(7507), + [anon_sym_BANG_EQ] = ACTIONS(7507), + [anon_sym_GT] = ACTIONS(7505), + [anon_sym_GT_EQ] = ACTIONS(7507), + [anon_sym_LT_EQ] = ACTIONS(7505), + [anon_sym_LT] = ACTIONS(7505), + [anon_sym_LT_LT] = ACTIONS(7505), + [anon_sym_GT_GT] = ACTIONS(7505), + [anon_sym___extension__] = ACTIONS(7507), + [anon_sym___attribute__] = ACTIONS(8152), + [anon_sym___attribute] = ACTIONS(8154), + [anon_sym_LBRACE] = ACTIONS(7507), + [anon_sym_LBRACK] = ACTIONS(7507), + [anon_sym_EQ] = ACTIONS(7505), + [anon_sym_const] = ACTIONS(7505), + [anon_sym_constexpr] = ACTIONS(7507), + [anon_sym_volatile] = ACTIONS(7507), + [anon_sym_restrict] = ACTIONS(7507), + [anon_sym___restrict__] = ACTIONS(7507), + [anon_sym__Atomic] = ACTIONS(7507), + [anon_sym__Noreturn] = ACTIONS(7507), + [anon_sym_noreturn] = ACTIONS(7507), + [anon_sym__Nonnull] = ACTIONS(7507), + [anon_sym_mutable] = ACTIONS(7507), + [anon_sym_constinit] = ACTIONS(7507), + [anon_sym_consteval] = ACTIONS(7507), + [anon_sym_alignas] = ACTIONS(7507), + [anon_sym__Alignas] = ACTIONS(7507), + [anon_sym_QMARK] = ACTIONS(7507), + [anon_sym_STAR_EQ] = ACTIONS(7507), + [anon_sym_SLASH_EQ] = ACTIONS(7507), + [anon_sym_PERCENT_EQ] = ACTIONS(7507), + [anon_sym_PLUS_EQ] = ACTIONS(7507), + [anon_sym_DASH_EQ] = ACTIONS(7507), + [anon_sym_LT_LT_EQ] = ACTIONS(7507), + [anon_sym_GT_GT_EQ] = ACTIONS(7507), + [anon_sym_AMP_EQ] = ACTIONS(7507), + [anon_sym_CARET_EQ] = ACTIONS(7507), + [anon_sym_PIPE_EQ] = ACTIONS(7507), + [anon_sym_and_eq] = ACTIONS(7507), + [anon_sym_or_eq] = ACTIONS(7507), + [anon_sym_xor_eq] = ACTIONS(7507), + [anon_sym_LT_EQ_GT] = ACTIONS(7507), + [anon_sym_or] = ACTIONS(7505), + [anon_sym_and] = ACTIONS(7505), + [anon_sym_bitor] = ACTIONS(7507), + [anon_sym_xor] = ACTIONS(7505), + [anon_sym_bitand] = ACTIONS(7507), + [anon_sym_not_eq] = ACTIONS(7507), + [anon_sym_DASH_DASH] = ACTIONS(7507), + [anon_sym_PLUS_PLUS] = ACTIONS(7507), + [anon_sym_DOT] = ACTIONS(7505), + [anon_sym_DOT_STAR] = ACTIONS(7507), + [anon_sym_DASH_GT] = ACTIONS(7505), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7507), + [anon_sym_override] = ACTIONS(7507), + [anon_sym_requires] = ACTIONS(7507), + [anon_sym_DASH_GT_STAR] = ACTIONS(7507), }, - [STATE(2921)] = { - [sym_attribute_specifier] = STATE(4161), - [sym_attribute_declaration] = STATE(4518), - [sym_gnu_asm_expression] = STATE(8999), - [sym_virtual_specifier] = STATE(4532), - [sym__function_attributes_end] = STATE(4253), - [sym__function_postfix] = STATE(4984), - [sym_trailing_return_type] = STATE(4410), - [sym_requires_clause] = STATE(4984), - [aux_sym_type_definition_repeat1] = STATE(4161), - [aux_sym_attributed_declarator_repeat1] = STATE(4518), - [aux_sym__function_postfix_repeat1] = STATE(4532), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7546), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6361), - [anon_sym___attribute] = ACTIONS(6363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7546), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7951), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7954), - [anon_sym_override] = ACTIONS(7954), - [anon_sym_GT2] = ACTIONS(7544), - [anon_sym_requires] = ACTIONS(7957), + [STATE(2672)] = { + [sym_attribute_specifier] = STATE(3005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7533), + [anon_sym_COMMA] = ACTIONS(7533), + [anon_sym_RPAREN] = ACTIONS(7533), + [anon_sym_LPAREN2] = ACTIONS(7533), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_STAR] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7531), + [anon_sym_PERCENT] = ACTIONS(7531), + [anon_sym_PIPE_PIPE] = ACTIONS(7533), + [anon_sym_AMP_AMP] = ACTIONS(7533), + [anon_sym_PIPE] = ACTIONS(7531), + [anon_sym_CARET] = ACTIONS(7531), + [anon_sym_AMP] = ACTIONS(7531), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_GT] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7533), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_LT] = ACTIONS(7531), + [anon_sym_LT_LT] = ACTIONS(7531), + [anon_sym_GT_GT] = ACTIONS(7531), + [anon_sym___extension__] = ACTIONS(7533), + [anon_sym___attribute__] = ACTIONS(8152), + [anon_sym___attribute] = ACTIONS(8154), + [anon_sym_LBRACE] = ACTIONS(7533), + [anon_sym_LBRACK] = ACTIONS(7533), + [anon_sym_EQ] = ACTIONS(7531), + [anon_sym_const] = ACTIONS(7531), + [anon_sym_constexpr] = ACTIONS(7533), + [anon_sym_volatile] = ACTIONS(7533), + [anon_sym_restrict] = ACTIONS(7533), + [anon_sym___restrict__] = ACTIONS(7533), + [anon_sym__Atomic] = ACTIONS(7533), + [anon_sym__Noreturn] = ACTIONS(7533), + [anon_sym_noreturn] = ACTIONS(7533), + [anon_sym__Nonnull] = ACTIONS(7533), + [anon_sym_mutable] = ACTIONS(7533), + [anon_sym_constinit] = ACTIONS(7533), + [anon_sym_consteval] = ACTIONS(7533), + [anon_sym_alignas] = ACTIONS(7533), + [anon_sym__Alignas] = ACTIONS(7533), + [anon_sym_QMARK] = ACTIONS(7533), + [anon_sym_STAR_EQ] = ACTIONS(7533), + [anon_sym_SLASH_EQ] = ACTIONS(7533), + [anon_sym_PERCENT_EQ] = ACTIONS(7533), + [anon_sym_PLUS_EQ] = ACTIONS(7533), + [anon_sym_DASH_EQ] = ACTIONS(7533), + [anon_sym_LT_LT_EQ] = ACTIONS(7533), + [anon_sym_GT_GT_EQ] = ACTIONS(7533), + [anon_sym_AMP_EQ] = ACTIONS(7533), + [anon_sym_CARET_EQ] = ACTIONS(7533), + [anon_sym_PIPE_EQ] = ACTIONS(7533), + [anon_sym_and_eq] = ACTIONS(7533), + [anon_sym_or_eq] = ACTIONS(7533), + [anon_sym_xor_eq] = ACTIONS(7533), + [anon_sym_LT_EQ_GT] = ACTIONS(7533), + [anon_sym_or] = ACTIONS(7531), + [anon_sym_and] = ACTIONS(7531), + [anon_sym_bitor] = ACTIONS(7533), + [anon_sym_xor] = ACTIONS(7531), + [anon_sym_bitand] = ACTIONS(7533), + [anon_sym_not_eq] = ACTIONS(7533), + [anon_sym_DASH_DASH] = ACTIONS(7533), + [anon_sym_PLUS_PLUS] = ACTIONS(7533), + [anon_sym_DOT] = ACTIONS(7531), + [anon_sym_DOT_STAR] = ACTIONS(7533), + [anon_sym_DASH_GT] = ACTIONS(7531), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7533), + [anon_sym_override] = ACTIONS(7533), + [anon_sym_requires] = ACTIONS(7533), + [anon_sym_DASH_GT_STAR] = ACTIONS(7533), }, - [STATE(2922)] = { - [sym_attribute_specifier] = STATE(3409), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7089), - [anon_sym_COMMA] = ACTIONS(7089), - [anon_sym_RPAREN] = ACTIONS(7089), - [anon_sym_LPAREN2] = ACTIONS(7089), - [anon_sym_DASH] = ACTIONS(7087), - [anon_sym_PLUS] = ACTIONS(7087), - [anon_sym_STAR] = ACTIONS(7087), - [anon_sym_SLASH] = ACTIONS(7087), - [anon_sym_PERCENT] = ACTIONS(7087), - [anon_sym_PIPE_PIPE] = ACTIONS(7089), - [anon_sym_AMP_AMP] = ACTIONS(7089), - [anon_sym_PIPE] = ACTIONS(7087), - [anon_sym_CARET] = ACTIONS(7087), - [anon_sym_AMP] = ACTIONS(7087), - [anon_sym_EQ_EQ] = ACTIONS(7089), - [anon_sym_BANG_EQ] = ACTIONS(7089), - [anon_sym_GT] = ACTIONS(7087), - [anon_sym_GT_EQ] = ACTIONS(7089), - [anon_sym_LT_EQ] = ACTIONS(7087), - [anon_sym_LT] = ACTIONS(7087), - [anon_sym_LT_LT] = ACTIONS(7087), - [anon_sym_GT_GT] = ACTIONS(7087), - [anon_sym___extension__] = ACTIONS(7089), - [anon_sym___attribute__] = ACTIONS(8189), - [anon_sym___attribute] = ACTIONS(8191), - [anon_sym_LBRACE] = ACTIONS(7089), - [anon_sym_LBRACK] = ACTIONS(7089), - [anon_sym_EQ] = ACTIONS(7087), - [anon_sym_const] = ACTIONS(7087), - [anon_sym_constexpr] = ACTIONS(7089), - [anon_sym_volatile] = ACTIONS(7089), - [anon_sym_restrict] = ACTIONS(7089), - [anon_sym___restrict__] = ACTIONS(7089), - [anon_sym__Atomic] = ACTIONS(7089), - [anon_sym__Noreturn] = ACTIONS(7089), - [anon_sym_noreturn] = ACTIONS(7089), - [anon_sym__Nonnull] = ACTIONS(7089), - [anon_sym_mutable] = ACTIONS(7089), - [anon_sym_constinit] = ACTIONS(7089), - [anon_sym_consteval] = ACTIONS(7089), - [anon_sym_alignas] = ACTIONS(7089), - [anon_sym__Alignas] = ACTIONS(7089), - [anon_sym_QMARK] = ACTIONS(7089), - [anon_sym_STAR_EQ] = ACTIONS(7089), - [anon_sym_SLASH_EQ] = ACTIONS(7089), - [anon_sym_PERCENT_EQ] = ACTIONS(7089), - [anon_sym_PLUS_EQ] = ACTIONS(7089), - [anon_sym_DASH_EQ] = ACTIONS(7089), - [anon_sym_LT_LT_EQ] = ACTIONS(7089), - [anon_sym_GT_GT_EQ] = ACTIONS(7089), - [anon_sym_AMP_EQ] = ACTIONS(7089), - [anon_sym_CARET_EQ] = ACTIONS(7089), - [anon_sym_PIPE_EQ] = ACTIONS(7089), - [anon_sym_LT_EQ_GT] = ACTIONS(7089), - [anon_sym_or] = ACTIONS(7089), - [anon_sym_and] = ACTIONS(7089), - [anon_sym_bitor] = ACTIONS(7089), - [anon_sym_xor] = ACTIONS(7089), - [anon_sym_bitand] = ACTIONS(7089), - [anon_sym_not_eq] = ACTIONS(7089), - [anon_sym_DASH_DASH] = ACTIONS(7089), - [anon_sym_PLUS_PLUS] = ACTIONS(7089), - [anon_sym_DOT] = ACTIONS(7087), - [anon_sym_DOT_STAR] = ACTIONS(7089), - [anon_sym_DASH_GT] = ACTIONS(7087), + [STATE(2673)] = { + [sym_attribute_specifier] = STATE(4381), + [sym_attribute_declaration] = STATE(4895), + [sym_gnu_asm_expression] = STATE(9115), + [sym_virtual_specifier] = STATE(5261), + [sym__function_exception_specification] = STATE(3352), + [sym__function_attributes_end] = STATE(4579), + [sym__function_postfix] = STATE(5696), + [sym_trailing_return_type] = STATE(4642), + [sym_noexcept] = STATE(3352), + [sym_throw_specifier] = STATE(3352), + [sym_requires_clause] = STATE(5696), + [aux_sym_type_definition_repeat1] = STATE(4381), + [aux_sym_attributed_declarator_repeat1] = STATE(4895), + [aux_sym__function_postfix_repeat1] = STATE(5261), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6764), + [anon_sym___attribute] = ACTIONS(6766), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7791), + [anon_sym_and] = ACTIONS(7791), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7791), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8514), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7089), - [anon_sym_override] = ACTIONS(7089), - [anon_sym_requires] = ACTIONS(7089), - [anon_sym_DASH_GT_STAR] = ACTIONS(7089), - }, - [STATE(2923)] = { - [sym_identifier] = ACTIONS(8637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8639), - [anon_sym_COMMA] = ACTIONS(8639), - [anon_sym_RPAREN] = ACTIONS(8639), - [aux_sym_preproc_if_token2] = ACTIONS(8639), - [aux_sym_preproc_else_token1] = ACTIONS(8639), - [aux_sym_preproc_elif_token1] = ACTIONS(8637), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8639), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8639), - [anon_sym_LPAREN2] = ACTIONS(8639), - [anon_sym_DASH] = ACTIONS(8637), - [anon_sym_PLUS] = ACTIONS(8637), - [anon_sym_STAR] = ACTIONS(8637), - [anon_sym_SLASH] = ACTIONS(8637), - [anon_sym_PERCENT] = ACTIONS(8637), - [anon_sym_PIPE_PIPE] = ACTIONS(8639), - [anon_sym_AMP_AMP] = ACTIONS(8639), - [anon_sym_PIPE] = ACTIONS(8637), - [anon_sym_CARET] = ACTIONS(8637), - [anon_sym_AMP] = ACTIONS(8637), - [anon_sym_EQ_EQ] = ACTIONS(8639), - [anon_sym_BANG_EQ] = ACTIONS(8639), - [anon_sym_GT] = ACTIONS(8637), - [anon_sym_GT_EQ] = ACTIONS(8639), - [anon_sym_LT_EQ] = ACTIONS(8637), - [anon_sym_LT] = ACTIONS(8637), - [anon_sym_LT_LT] = ACTIONS(8637), - [anon_sym_GT_GT] = ACTIONS(8637), - [anon_sym_SEMI] = ACTIONS(8639), - [anon_sym___attribute__] = ACTIONS(8637), - [anon_sym___attribute] = ACTIONS(8637), - [anon_sym_COLON] = ACTIONS(8637), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8639), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8639), - [anon_sym_RBRACE] = ACTIONS(8639), - [anon_sym_LBRACK] = ACTIONS(8637), - [anon_sym_EQ] = ACTIONS(8637), - [anon_sym_QMARK] = ACTIONS(8639), - [anon_sym_STAR_EQ] = ACTIONS(8639), - [anon_sym_SLASH_EQ] = ACTIONS(8639), - [anon_sym_PERCENT_EQ] = ACTIONS(8639), - [anon_sym_PLUS_EQ] = ACTIONS(8639), - [anon_sym_DASH_EQ] = ACTIONS(8639), - [anon_sym_LT_LT_EQ] = ACTIONS(8639), - [anon_sym_GT_GT_EQ] = ACTIONS(8639), - [anon_sym_AMP_EQ] = ACTIONS(8639), - [anon_sym_CARET_EQ] = ACTIONS(8639), - [anon_sym_PIPE_EQ] = ACTIONS(8639), - [anon_sym_and_eq] = ACTIONS(8637), - [anon_sym_or_eq] = ACTIONS(8637), - [anon_sym_xor_eq] = ACTIONS(8637), - [anon_sym_LT_EQ_GT] = ACTIONS(8639), - [anon_sym_or] = ACTIONS(8637), - [anon_sym_and] = ACTIONS(8637), - [anon_sym_bitor] = ACTIONS(8637), - [anon_sym_xor] = ACTIONS(8637), - [anon_sym_bitand] = ACTIONS(8637), - [anon_sym_not_eq] = ACTIONS(8637), - [anon_sym_DASH_DASH] = ACTIONS(8639), - [anon_sym_PLUS_PLUS] = ACTIONS(8639), - [anon_sym_asm] = ACTIONS(8637), - [anon_sym___asm__] = ACTIONS(8637), - [anon_sym___asm] = ACTIONS(8637), - [anon_sym_DOT] = ACTIONS(8637), - [anon_sym_DOT_STAR] = ACTIONS(8639), - [anon_sym_DASH_GT] = ACTIONS(8639), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8637), - [anon_sym_override] = ACTIONS(8637), - [anon_sym_requires] = ACTIONS(8637), - [anon_sym_COLON_RBRACK] = ACTIONS(8639), - }, - [STATE(2924)] = { - [sym_identifier] = ACTIONS(8641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8643), - [anon_sym_COMMA] = ACTIONS(8643), - [anon_sym_RPAREN] = ACTIONS(8643), - [aux_sym_preproc_if_token2] = ACTIONS(8643), - [aux_sym_preproc_else_token1] = ACTIONS(8643), - [aux_sym_preproc_elif_token1] = ACTIONS(8641), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8643), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8643), - [anon_sym_LPAREN2] = ACTIONS(8643), - [anon_sym_DASH] = ACTIONS(8641), - [anon_sym_PLUS] = ACTIONS(8641), - [anon_sym_STAR] = ACTIONS(8641), - [anon_sym_SLASH] = ACTIONS(8641), - [anon_sym_PERCENT] = ACTIONS(8641), - [anon_sym_PIPE_PIPE] = ACTIONS(8643), - [anon_sym_AMP_AMP] = ACTIONS(8643), - [anon_sym_PIPE] = ACTIONS(8641), - [anon_sym_CARET] = ACTIONS(8641), - [anon_sym_AMP] = ACTIONS(8641), - [anon_sym_EQ_EQ] = ACTIONS(8643), - [anon_sym_BANG_EQ] = ACTIONS(8643), - [anon_sym_GT] = ACTIONS(8641), - [anon_sym_GT_EQ] = ACTIONS(8643), - [anon_sym_LT_EQ] = ACTIONS(8641), - [anon_sym_LT] = ACTIONS(8641), - [anon_sym_LT_LT] = ACTIONS(8641), - [anon_sym_GT_GT] = ACTIONS(8641), - [anon_sym_SEMI] = ACTIONS(8643), - [anon_sym___attribute__] = ACTIONS(8641), - [anon_sym___attribute] = ACTIONS(8641), - [anon_sym_COLON] = ACTIONS(8641), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8643), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8643), - [anon_sym_RBRACE] = ACTIONS(8643), - [anon_sym_LBRACK] = ACTIONS(8641), - [anon_sym_EQ] = ACTIONS(8641), - [anon_sym_QMARK] = ACTIONS(8643), - [anon_sym_STAR_EQ] = ACTIONS(8643), - [anon_sym_SLASH_EQ] = ACTIONS(8643), - [anon_sym_PERCENT_EQ] = ACTIONS(8643), - [anon_sym_PLUS_EQ] = ACTIONS(8643), - [anon_sym_DASH_EQ] = ACTIONS(8643), - [anon_sym_LT_LT_EQ] = ACTIONS(8643), - [anon_sym_GT_GT_EQ] = ACTIONS(8643), - [anon_sym_AMP_EQ] = ACTIONS(8643), - [anon_sym_CARET_EQ] = ACTIONS(8643), - [anon_sym_PIPE_EQ] = ACTIONS(8643), - [anon_sym_and_eq] = ACTIONS(8641), - [anon_sym_or_eq] = ACTIONS(8641), - [anon_sym_xor_eq] = ACTIONS(8641), - [anon_sym_LT_EQ_GT] = ACTIONS(8643), - [anon_sym_or] = ACTIONS(8641), - [anon_sym_and] = ACTIONS(8641), - [anon_sym_bitor] = ACTIONS(8641), - [anon_sym_xor] = ACTIONS(8641), - [anon_sym_bitand] = ACTIONS(8641), - [anon_sym_not_eq] = ACTIONS(8641), - [anon_sym_DASH_DASH] = ACTIONS(8643), - [anon_sym_PLUS_PLUS] = ACTIONS(8643), - [anon_sym_asm] = ACTIONS(8641), - [anon_sym___asm__] = ACTIONS(8641), - [anon_sym___asm] = ACTIONS(8641), - [anon_sym_DOT] = ACTIONS(8641), - [anon_sym_DOT_STAR] = ACTIONS(8643), - [anon_sym_DASH_GT] = ACTIONS(8643), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8641), - [anon_sym_override] = ACTIONS(8641), - [anon_sym_requires] = ACTIONS(8641), - [anon_sym_COLON_RBRACK] = ACTIONS(8643), - }, - [STATE(2925)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), - [anon_sym_COMMA] = ACTIONS(7193), - [anon_sym_RPAREN] = ACTIONS(7193), - [anon_sym_LPAREN2] = ACTIONS(7193), - [anon_sym_DASH] = ACTIONS(7191), - [anon_sym_PLUS] = ACTIONS(7191), - [anon_sym_STAR] = ACTIONS(7191), - [anon_sym_SLASH] = ACTIONS(7191), - [anon_sym_PERCENT] = ACTIONS(7191), - [anon_sym_PIPE_PIPE] = ACTIONS(7193), - [anon_sym_AMP_AMP] = ACTIONS(7193), - [anon_sym_PIPE] = ACTIONS(7191), - [anon_sym_CARET] = ACTIONS(7191), - [anon_sym_AMP] = ACTIONS(7191), - [anon_sym_EQ_EQ] = ACTIONS(7193), - [anon_sym_BANG_EQ] = ACTIONS(7193), - [anon_sym_GT] = ACTIONS(7191), - [anon_sym_GT_EQ] = ACTIONS(7193), - [anon_sym_LT_EQ] = ACTIONS(7191), - [anon_sym_LT] = ACTIONS(7191), - [anon_sym_LT_LT] = ACTIONS(7191), - [anon_sym_GT_GT] = ACTIONS(7191), - [anon_sym___extension__] = ACTIONS(7193), - [anon_sym_LBRACE] = ACTIONS(7193), - [anon_sym_LBRACK] = ACTIONS(7193), - [anon_sym_EQ] = ACTIONS(7191), - [anon_sym_const] = ACTIONS(7191), - [anon_sym_constexpr] = ACTIONS(7193), - [anon_sym_volatile] = ACTIONS(7193), - [anon_sym_restrict] = ACTIONS(7193), - [anon_sym___restrict__] = ACTIONS(7193), - [anon_sym__Atomic] = ACTIONS(7193), - [anon_sym__Noreturn] = ACTIONS(7193), - [anon_sym_noreturn] = ACTIONS(7193), - [anon_sym__Nonnull] = ACTIONS(7193), - [anon_sym_mutable] = ACTIONS(7193), - [anon_sym_constinit] = ACTIONS(7193), - [anon_sym_consteval] = ACTIONS(7193), - [anon_sym_alignas] = ACTIONS(7193), - [anon_sym__Alignas] = ACTIONS(7193), - [anon_sym_QMARK] = ACTIONS(7193), - [anon_sym_STAR_EQ] = ACTIONS(7193), - [anon_sym_SLASH_EQ] = ACTIONS(7193), - [anon_sym_PERCENT_EQ] = ACTIONS(7193), - [anon_sym_PLUS_EQ] = ACTIONS(7193), - [anon_sym_DASH_EQ] = ACTIONS(7193), - [anon_sym_LT_LT_EQ] = ACTIONS(7193), - [anon_sym_GT_GT_EQ] = ACTIONS(7193), - [anon_sym_AMP_EQ] = ACTIONS(7193), - [anon_sym_CARET_EQ] = ACTIONS(7193), - [anon_sym_PIPE_EQ] = ACTIONS(7193), - [anon_sym_and_eq] = ACTIONS(7193), - [anon_sym_or_eq] = ACTIONS(7193), - [anon_sym_xor_eq] = ACTIONS(7193), - [anon_sym_LT_EQ_GT] = ACTIONS(7193), - [anon_sym_or] = ACTIONS(7191), - [anon_sym_and] = ACTIONS(7191), - [anon_sym_bitor] = ACTIONS(7193), - [anon_sym_xor] = ACTIONS(7191), - [anon_sym_bitand] = ACTIONS(7193), - [anon_sym_not_eq] = ACTIONS(7193), - [anon_sym_DASH_DASH] = ACTIONS(7193), - [anon_sym_PLUS_PLUS] = ACTIONS(7193), - [anon_sym_DOT] = ACTIONS(7191), - [anon_sym_DOT_STAR] = ACTIONS(7193), - [anon_sym_DASH_GT] = ACTIONS(7191), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7193), - [anon_sym_override] = ACTIONS(7193), - [anon_sym_requires] = ACTIONS(7193), - [anon_sym_DASH_GT_STAR] = ACTIONS(7193), - }, - [STATE(2926)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6798), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6800), - [anon_sym_override] = ACTIONS(6800), - [anon_sym_requires] = ACTIONS(6800), - [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + [anon_sym_final] = ACTIONS(6777), + [anon_sym_override] = ACTIONS(6777), + [anon_sym_noexcept] = ACTIONS(6779), + [anon_sym_throw] = ACTIONS(6781), + [anon_sym_requires] = ACTIONS(6783), + [anon_sym_DASH_GT_STAR] = ACTIONS(7791), }, - [STATE(2927)] = { - [sym_attribute_specifier] = STATE(4161), - [sym_attribute_declaration] = STATE(4518), - [sym_gnu_asm_expression] = STATE(8999), - [sym_virtual_specifier] = STATE(4532), - [sym__function_attributes_end] = STATE(4265), - [sym__function_postfix] = STATE(5047), - [sym_trailing_return_type] = STATE(4412), - [sym_requires_clause] = STATE(5047), - [aux_sym_type_definition_repeat1] = STATE(4161), - [aux_sym_attributed_declarator_repeat1] = STATE(4518), - [aux_sym__function_postfix_repeat1] = STATE(4532), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7629), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym___attribute__] = ACTIONS(6361), - [anon_sym___attribute] = ACTIONS(6363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7629), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7627), - [anon_sym_or_eq] = ACTIONS(7627), - [anon_sym_xor_eq] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(8039), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8055), - [anon_sym_override] = ACTIONS(8055), - [anon_sym_GT2] = ACTIONS(7627), - [anon_sym_requires] = ACTIONS(8058), - }, - [STATE(2928)] = { - [sym_attribute_specifier] = STATE(4161), - [sym_attribute_declaration] = STATE(4518), - [sym_gnu_asm_expression] = STATE(8999), - [sym_virtual_specifier] = STATE(4532), - [sym__function_attributes_end] = STATE(4267), - [sym__function_postfix] = STATE(5023), - [sym_trailing_return_type] = STATE(4414), - [sym_requires_clause] = STATE(5023), - [aux_sym_type_definition_repeat1] = STATE(4161), - [aux_sym_attributed_declarator_repeat1] = STATE(4518), - [aux_sym__function_postfix_repeat1] = STATE(4532), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), - [anon_sym_COMMA] = ACTIONS(8089), - [anon_sym_LPAREN2] = ACTIONS(8089), - [anon_sym_DASH] = ACTIONS(8087), - [anon_sym_PLUS] = ACTIONS(8087), - [anon_sym_STAR] = ACTIONS(8087), - [anon_sym_SLASH] = ACTIONS(8087), - [anon_sym_PERCENT] = ACTIONS(8087), - [anon_sym_PIPE_PIPE] = ACTIONS(8089), - [anon_sym_AMP_AMP] = ACTIONS(8089), - [anon_sym_PIPE] = ACTIONS(8087), - [anon_sym_CARET] = ACTIONS(8087), - [anon_sym_AMP] = ACTIONS(8087), - [anon_sym_EQ_EQ] = ACTIONS(8089), - [anon_sym_BANG_EQ] = ACTIONS(8089), - [anon_sym_GT] = ACTIONS(8087), - [anon_sym_GT_EQ] = ACTIONS(8087), - [anon_sym_LT_EQ] = ACTIONS(8087), - [anon_sym_LT] = ACTIONS(8087), - [anon_sym_LT_LT] = ACTIONS(8087), - [anon_sym_GT_GT] = ACTIONS(8087), - [anon_sym___attribute__] = ACTIONS(6361), - [anon_sym___attribute] = ACTIONS(6363), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(8087), - [anon_sym_EQ] = ACTIONS(8087), - [anon_sym_QMARK] = ACTIONS(8089), - [anon_sym_STAR_EQ] = ACTIONS(8089), - [anon_sym_SLASH_EQ] = ACTIONS(8089), - [anon_sym_PERCENT_EQ] = ACTIONS(8089), - [anon_sym_PLUS_EQ] = ACTIONS(8089), - [anon_sym_DASH_EQ] = ACTIONS(8089), - [anon_sym_LT_LT_EQ] = ACTIONS(8089), - [anon_sym_GT_GT_EQ] = ACTIONS(8087), - [anon_sym_AMP_EQ] = ACTIONS(8089), - [anon_sym_CARET_EQ] = ACTIONS(8089), - [anon_sym_PIPE_EQ] = ACTIONS(8089), - [anon_sym_and_eq] = ACTIONS(8089), - [anon_sym_or_eq] = ACTIONS(8089), - [anon_sym_xor_eq] = ACTIONS(8089), - [anon_sym_LT_EQ_GT] = ACTIONS(8089), - [anon_sym_or] = ACTIONS(8087), - [anon_sym_and] = ACTIONS(8087), - [anon_sym_bitor] = ACTIONS(8089), - [anon_sym_xor] = ACTIONS(8087), - [anon_sym_bitand] = ACTIONS(8089), - [anon_sym_not_eq] = ACTIONS(8089), - [anon_sym_DASH_DASH] = ACTIONS(8089), - [anon_sym_PLUS_PLUS] = ACTIONS(8089), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(8087), - [anon_sym_DOT_STAR] = ACTIONS(8089), - [anon_sym_DASH_GT] = ACTIONS(8626), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8645), - [anon_sym_override] = ACTIONS(8645), - [anon_sym_GT2] = ACTIONS(8089), - [anon_sym_requires] = ACTIONS(8648), - }, - [STATE(2929)] = { - [sym_identifier] = ACTIONS(8629), - [anon_sym_LPAREN2] = ACTIONS(8631), - [anon_sym_TILDE] = ACTIONS(8631), - [anon_sym_STAR] = ACTIONS(8631), - [anon_sym_PIPE_PIPE] = ACTIONS(8631), - [anon_sym_AMP_AMP] = ACTIONS(8631), - [anon_sym_AMP] = ACTIONS(8629), - [anon_sym___extension__] = ACTIONS(8629), - [anon_sym_virtual] = ACTIONS(8629), - [anon_sym_extern] = ACTIONS(8629), - [anon_sym___attribute__] = ACTIONS(8629), - [anon_sym___attribute] = ACTIONS(8629), - [anon_sym_using] = ACTIONS(8629), - [anon_sym_COLON_COLON] = ACTIONS(8631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8631), - [anon_sym___declspec] = ACTIONS(8629), - [anon_sym___based] = ACTIONS(8629), - [anon_sym___cdecl] = ACTIONS(8629), - [anon_sym___clrcall] = ACTIONS(8629), - [anon_sym___stdcall] = ACTIONS(8629), - [anon_sym___fastcall] = ACTIONS(8629), - [anon_sym___thiscall] = ACTIONS(8629), - [anon_sym___vectorcall] = ACTIONS(8629), - [anon_sym_LBRACE] = ACTIONS(8631), - [anon_sym_signed] = ACTIONS(8629), - [anon_sym_unsigned] = ACTIONS(8629), - [anon_sym_long] = ACTIONS(8629), - [anon_sym_short] = ACTIONS(8629), - [anon_sym_LBRACK] = ACTIONS(8629), - [anon_sym_static] = ACTIONS(8629), - [anon_sym_register] = ACTIONS(8629), - [anon_sym_inline] = ACTIONS(8629), - [anon_sym___inline] = ACTIONS(8629), - [anon_sym___inline__] = ACTIONS(8629), - [anon_sym___forceinline] = ACTIONS(8629), - [anon_sym_thread_local] = ACTIONS(8629), - [anon_sym___thread] = ACTIONS(8629), - [anon_sym_const] = ACTIONS(8629), - [anon_sym_constexpr] = ACTIONS(8629), - [anon_sym_volatile] = ACTIONS(8629), - [anon_sym_restrict] = ACTIONS(8629), - [anon_sym___restrict__] = ACTIONS(8629), - [anon_sym__Atomic] = ACTIONS(8629), - [anon_sym__Noreturn] = ACTIONS(8629), - [anon_sym_noreturn] = ACTIONS(8629), - [anon_sym__Nonnull] = ACTIONS(8629), - [anon_sym_mutable] = ACTIONS(8629), - [anon_sym_constinit] = ACTIONS(8629), - [anon_sym_consteval] = ACTIONS(8629), - [anon_sym_alignas] = ACTIONS(8629), - [anon_sym__Alignas] = ACTIONS(8629), - [sym_primitive_type] = ACTIONS(8629), - [anon_sym_enum] = ACTIONS(8629), - [anon_sym_class] = ACTIONS(8629), - [anon_sym_struct] = ACTIONS(8629), - [anon_sym_union] = ACTIONS(8629), - [anon_sym_or] = ACTIONS(8629), - [anon_sym_and] = ACTIONS(8629), - [anon_sym_typename] = ACTIONS(8629), - [anon_sym_DASH_GT] = ACTIONS(8631), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8629), - [anon_sym_decltype] = ACTIONS(8629), - [anon_sym_explicit] = ACTIONS(8629), - [anon_sym_template] = ACTIONS(8629), - [anon_sym_operator] = ACTIONS(8629), - [anon_sym_friend] = ACTIONS(8629), - [anon_sym_noexcept] = ACTIONS(8629), - [anon_sym_throw] = ACTIONS(8629), - [anon_sym_concept] = ACTIONS(8629), - [anon_sym_LBRACK_COLON] = ACTIONS(8631), - }, - [STATE(2930)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7265), - [anon_sym_COMMA] = ACTIONS(7265), - [anon_sym_RPAREN] = ACTIONS(7265), - [anon_sym_LPAREN2] = ACTIONS(7265), - [anon_sym_DASH] = ACTIONS(7263), - [anon_sym_PLUS] = ACTIONS(7263), - [anon_sym_STAR] = ACTIONS(7263), - [anon_sym_SLASH] = ACTIONS(7263), - [anon_sym_PERCENT] = ACTIONS(7263), - [anon_sym_PIPE_PIPE] = ACTIONS(7265), - [anon_sym_AMP_AMP] = ACTIONS(7265), - [anon_sym_PIPE] = ACTIONS(7263), - [anon_sym_CARET] = ACTIONS(7263), - [anon_sym_AMP] = ACTIONS(7263), - [anon_sym_EQ_EQ] = ACTIONS(7265), - [anon_sym_BANG_EQ] = ACTIONS(7265), - [anon_sym_GT] = ACTIONS(7263), - [anon_sym_GT_EQ] = ACTIONS(7265), - [anon_sym_LT_EQ] = ACTIONS(7263), - [anon_sym_LT] = ACTIONS(7263), - [anon_sym_LT_LT] = ACTIONS(7263), - [anon_sym_GT_GT] = ACTIONS(7263), - [anon_sym___extension__] = ACTIONS(7265), - [anon_sym_LBRACE] = ACTIONS(7265), - [anon_sym_LBRACK] = ACTIONS(7265), - [anon_sym_EQ] = ACTIONS(7263), - [anon_sym_const] = ACTIONS(7263), - [anon_sym_constexpr] = ACTIONS(7265), - [anon_sym_volatile] = ACTIONS(7265), - [anon_sym_restrict] = ACTIONS(7265), - [anon_sym___restrict__] = ACTIONS(7265), - [anon_sym__Atomic] = ACTIONS(7265), - [anon_sym__Noreturn] = ACTIONS(7265), - [anon_sym_noreturn] = ACTIONS(7265), - [anon_sym__Nonnull] = ACTIONS(7265), - [anon_sym_mutable] = ACTIONS(7265), - [anon_sym_constinit] = ACTIONS(7265), - [anon_sym_consteval] = ACTIONS(7265), - [anon_sym_alignas] = ACTIONS(7265), - [anon_sym__Alignas] = ACTIONS(7265), - [anon_sym_QMARK] = ACTIONS(7265), - [anon_sym_STAR_EQ] = ACTIONS(7265), - [anon_sym_SLASH_EQ] = ACTIONS(7265), - [anon_sym_PERCENT_EQ] = ACTIONS(7265), - [anon_sym_PLUS_EQ] = ACTIONS(7265), - [anon_sym_DASH_EQ] = ACTIONS(7265), - [anon_sym_LT_LT_EQ] = ACTIONS(7265), - [anon_sym_GT_GT_EQ] = ACTIONS(7265), - [anon_sym_AMP_EQ] = ACTIONS(7265), - [anon_sym_CARET_EQ] = ACTIONS(7265), - [anon_sym_PIPE_EQ] = ACTIONS(7265), - [anon_sym_and_eq] = ACTIONS(7265), - [anon_sym_or_eq] = ACTIONS(7265), - [anon_sym_xor_eq] = ACTIONS(7265), - [anon_sym_LT_EQ_GT] = ACTIONS(7265), - [anon_sym_or] = ACTIONS(7263), - [anon_sym_and] = ACTIONS(7263), - [anon_sym_bitor] = ACTIONS(7265), - [anon_sym_xor] = ACTIONS(7263), - [anon_sym_bitand] = ACTIONS(7265), - [anon_sym_not_eq] = ACTIONS(7265), - [anon_sym_DASH_DASH] = ACTIONS(7265), - [anon_sym_PLUS_PLUS] = ACTIONS(7265), - [anon_sym_DOT] = ACTIONS(7263), - [anon_sym_DOT_STAR] = ACTIONS(7265), - [anon_sym_DASH_GT] = ACTIONS(7263), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7265), - [anon_sym_override] = ACTIONS(7265), - [anon_sym_requires] = ACTIONS(7265), - [anon_sym_DASH_GT_STAR] = ACTIONS(7265), - }, - [STATE(2931)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7269), - [anon_sym_COMMA] = ACTIONS(7269), - [anon_sym_RPAREN] = ACTIONS(7269), - [anon_sym_LPAREN2] = ACTIONS(7269), - [anon_sym_DASH] = ACTIONS(7267), - [anon_sym_PLUS] = ACTIONS(7267), - [anon_sym_STAR] = ACTIONS(7267), - [anon_sym_SLASH] = ACTIONS(7267), - [anon_sym_PERCENT] = ACTIONS(7267), - [anon_sym_PIPE_PIPE] = ACTIONS(7269), - [anon_sym_AMP_AMP] = ACTIONS(7269), - [anon_sym_PIPE] = ACTIONS(7267), - [anon_sym_CARET] = ACTIONS(7267), - [anon_sym_AMP] = ACTIONS(7267), - [anon_sym_EQ_EQ] = ACTIONS(7269), - [anon_sym_BANG_EQ] = ACTIONS(7269), - [anon_sym_GT] = ACTIONS(7267), - [anon_sym_GT_EQ] = ACTIONS(7269), - [anon_sym_LT_EQ] = ACTIONS(7267), - [anon_sym_LT] = ACTIONS(7267), - [anon_sym_LT_LT] = ACTIONS(7267), - [anon_sym_GT_GT] = ACTIONS(7267), - [anon_sym___extension__] = ACTIONS(7269), - [anon_sym_LBRACE] = ACTIONS(7269), - [anon_sym_LBRACK] = ACTIONS(7269), - [anon_sym_EQ] = ACTIONS(7267), - [anon_sym_const] = ACTIONS(7267), - [anon_sym_constexpr] = ACTIONS(7269), - [anon_sym_volatile] = ACTIONS(7269), - [anon_sym_restrict] = ACTIONS(7269), - [anon_sym___restrict__] = ACTIONS(7269), - [anon_sym__Atomic] = ACTIONS(7269), - [anon_sym__Noreturn] = ACTIONS(7269), - [anon_sym_noreturn] = ACTIONS(7269), - [anon_sym__Nonnull] = ACTIONS(7269), - [anon_sym_mutable] = ACTIONS(7269), - [anon_sym_constinit] = ACTIONS(7269), - [anon_sym_consteval] = ACTIONS(7269), - [anon_sym_alignas] = ACTIONS(7269), - [anon_sym__Alignas] = ACTIONS(7269), - [anon_sym_QMARK] = ACTIONS(7269), - [anon_sym_STAR_EQ] = ACTIONS(7269), - [anon_sym_SLASH_EQ] = ACTIONS(7269), - [anon_sym_PERCENT_EQ] = ACTIONS(7269), - [anon_sym_PLUS_EQ] = ACTIONS(7269), - [anon_sym_DASH_EQ] = ACTIONS(7269), - [anon_sym_LT_LT_EQ] = ACTIONS(7269), - [anon_sym_GT_GT_EQ] = ACTIONS(7269), - [anon_sym_AMP_EQ] = ACTIONS(7269), - [anon_sym_CARET_EQ] = ACTIONS(7269), - [anon_sym_PIPE_EQ] = ACTIONS(7269), - [anon_sym_and_eq] = ACTIONS(7269), - [anon_sym_or_eq] = ACTIONS(7269), - [anon_sym_xor_eq] = ACTIONS(7269), - [anon_sym_LT_EQ_GT] = ACTIONS(7269), - [anon_sym_or] = ACTIONS(7267), - [anon_sym_and] = ACTIONS(7267), - [anon_sym_bitor] = ACTIONS(7269), - [anon_sym_xor] = ACTIONS(7267), - [anon_sym_bitand] = ACTIONS(7269), - [anon_sym_not_eq] = ACTIONS(7269), - [anon_sym_DASH_DASH] = ACTIONS(7269), - [anon_sym_PLUS_PLUS] = ACTIONS(7269), - [anon_sym_DOT] = ACTIONS(7267), - [anon_sym_DOT_STAR] = ACTIONS(7269), - [anon_sym_DASH_GT] = ACTIONS(7267), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7269), - [anon_sym_override] = ACTIONS(7269), - [anon_sym_requires] = ACTIONS(7269), - [anon_sym_DASH_GT_STAR] = ACTIONS(7269), - }, - [STATE(2932)] = { - [sym_virtual_specifier] = STATE(3248), - [sym__function_postfix] = STATE(3513), - [sym_requires_clause] = STATE(3513), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [sym_identifier] = ACTIONS(7546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [aux_sym_preproc_if_token2] = ACTIONS(7544), - [aux_sym_preproc_else_token1] = ACTIONS(7544), - [aux_sym_preproc_elif_token1] = ACTIONS(7546), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym_SEMI] = ACTIONS(7544), - [anon_sym___attribute__] = ACTIONS(7546), - [anon_sym___attribute] = ACTIONS(7546), - [anon_sym_COLON] = ACTIONS(7546), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), - [anon_sym_RBRACE] = ACTIONS(7544), - [anon_sym_LBRACK] = ACTIONS(7544), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7546), - [anon_sym_or_eq] = ACTIONS(7546), - [anon_sym_xor_eq] = ACTIONS(7546), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7546), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7546), - [anon_sym_not_eq] = ACTIONS(7546), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7544), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7582), - [anon_sym_override] = ACTIONS(7582), - [anon_sym_requires] = ACTIONS(7585), - [anon_sym_COLON_RBRACK] = ACTIONS(7544), - }, - [STATE(2933)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), - [anon_sym_COMMA] = ACTIONS(6230), - [anon_sym_RPAREN] = ACTIONS(6230), - [anon_sym_LPAREN2] = ACTIONS(6230), - [anon_sym_DASH] = ACTIONS(6237), - [anon_sym_PLUS] = ACTIONS(6237), - [anon_sym_STAR] = ACTIONS(6237), - [anon_sym_SLASH] = ACTIONS(6237), - [anon_sym_PERCENT] = ACTIONS(6237), - [anon_sym_PIPE_PIPE] = ACTIONS(6230), - [anon_sym_AMP_AMP] = ACTIONS(6230), - [anon_sym_PIPE] = ACTIONS(6237), - [anon_sym_CARET] = ACTIONS(6237), - [anon_sym_AMP] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6230), - [anon_sym_BANG_EQ] = ACTIONS(6230), - [anon_sym_GT] = ACTIONS(6237), - [anon_sym_GT_EQ] = ACTIONS(6230), - [anon_sym_LT_EQ] = ACTIONS(6237), - [anon_sym_LT] = ACTIONS(6237), - [anon_sym_LT_LT] = ACTIONS(6237), - [anon_sym_GT_GT] = ACTIONS(6237), - [anon_sym___extension__] = ACTIONS(6233), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6230), - [anon_sym_EQ] = ACTIONS(6237), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6233), - [anon_sym_volatile] = ACTIONS(6233), - [anon_sym_restrict] = ACTIONS(6233), - [anon_sym___restrict__] = ACTIONS(6233), - [anon_sym__Atomic] = ACTIONS(6233), - [anon_sym__Noreturn] = ACTIONS(6233), - [anon_sym_noreturn] = ACTIONS(6233), - [anon_sym__Nonnull] = ACTIONS(6233), - [anon_sym_mutable] = ACTIONS(6233), - [anon_sym_constinit] = ACTIONS(6233), - [anon_sym_consteval] = ACTIONS(6233), - [anon_sym_alignas] = ACTIONS(6233), - [anon_sym__Alignas] = ACTIONS(6233), - [anon_sym_QMARK] = ACTIONS(6230), - [anon_sym_STAR_EQ] = ACTIONS(6230), - [anon_sym_SLASH_EQ] = ACTIONS(6230), - [anon_sym_PERCENT_EQ] = ACTIONS(6230), - [anon_sym_PLUS_EQ] = ACTIONS(6230), - [anon_sym_DASH_EQ] = ACTIONS(6230), - [anon_sym_LT_LT_EQ] = ACTIONS(6230), - [anon_sym_GT_GT_EQ] = ACTIONS(6230), - [anon_sym_AMP_EQ] = ACTIONS(6230), - [anon_sym_CARET_EQ] = ACTIONS(6230), - [anon_sym_PIPE_EQ] = ACTIONS(6230), - [anon_sym_and_eq] = ACTIONS(6230), - [anon_sym_or_eq] = ACTIONS(6230), - [anon_sym_xor_eq] = ACTIONS(6230), - [anon_sym_LT_EQ_GT] = ACTIONS(6230), - [anon_sym_or] = ACTIONS(6237), - [anon_sym_and] = ACTIONS(6237), - [anon_sym_bitor] = ACTIONS(6230), - [anon_sym_xor] = ACTIONS(6237), - [anon_sym_bitand] = ACTIONS(6230), - [anon_sym_not_eq] = ACTIONS(6230), - [anon_sym_DASH_DASH] = ACTIONS(6230), - [anon_sym_PLUS_PLUS] = ACTIONS(6230), - [anon_sym_DOT] = ACTIONS(6237), - [anon_sym_DOT_STAR] = ACTIONS(6230), - [anon_sym_DASH_GT] = ACTIONS(6237), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6233), - [anon_sym_decltype] = ACTIONS(6233), - [anon_sym_DASH_GT_STAR] = ACTIONS(6230), - }, - [STATE(2934)] = { - [sym_attribute_specifier] = STATE(4079), - [sym_attribute_declaration] = STATE(4488), - [sym_gnu_asm_expression] = STATE(8997), - [sym_virtual_specifier] = STATE(4611), - [sym__function_attributes_end] = STATE(4227), - [sym__function_postfix] = STATE(4983), - [sym_trailing_return_type] = STATE(4305), - [sym_requires_clause] = STATE(4983), - [aux_sym_type_definition_repeat1] = STATE(4079), - [aux_sym_attributed_declarator_repeat1] = STATE(4488), - [aux_sym__function_postfix_repeat1] = STATE(4611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6326), - [anon_sym___attribute] = ACTIONS(6328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_RBRACK] = ACTIONS(7544), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7966), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7969), - [anon_sym_override] = ACTIONS(7969), - [anon_sym_requires] = ACTIONS(7972), + [STATE(2674)] = { + [sym_attribute_specifier] = STATE(3081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7433), + [anon_sym_COMMA] = ACTIONS(7433), + [anon_sym_RPAREN] = ACTIONS(7433), + [anon_sym_LPAREN2] = ACTIONS(7433), + [anon_sym_DASH] = ACTIONS(7431), + [anon_sym_PLUS] = ACTIONS(7431), + [anon_sym_STAR] = ACTIONS(7431), + [anon_sym_SLASH] = ACTIONS(7431), + [anon_sym_PERCENT] = ACTIONS(7431), + [anon_sym_PIPE_PIPE] = ACTIONS(7433), + [anon_sym_AMP_AMP] = ACTIONS(7433), + [anon_sym_PIPE] = ACTIONS(7431), + [anon_sym_CARET] = ACTIONS(7431), + [anon_sym_AMP] = ACTIONS(7431), + [anon_sym_EQ_EQ] = ACTIONS(7433), + [anon_sym_BANG_EQ] = ACTIONS(7433), + [anon_sym_GT] = ACTIONS(7431), + [anon_sym_GT_EQ] = ACTIONS(7433), + [anon_sym_LT_EQ] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7431), + [anon_sym_LT_LT] = ACTIONS(7431), + [anon_sym_GT_GT] = ACTIONS(7431), + [anon_sym___extension__] = ACTIONS(7433), + [anon_sym___attribute__] = ACTIONS(8152), + [anon_sym___attribute] = ACTIONS(8154), + [anon_sym_LBRACE] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(7433), + [anon_sym_EQ] = ACTIONS(7431), + [anon_sym_const] = ACTIONS(7431), + [anon_sym_constexpr] = ACTIONS(7433), + [anon_sym_volatile] = ACTIONS(7433), + [anon_sym_restrict] = ACTIONS(7433), + [anon_sym___restrict__] = ACTIONS(7433), + [anon_sym__Atomic] = ACTIONS(7433), + [anon_sym__Noreturn] = ACTIONS(7433), + [anon_sym_noreturn] = ACTIONS(7433), + [anon_sym__Nonnull] = ACTIONS(7433), + [anon_sym_mutable] = ACTIONS(7433), + [anon_sym_constinit] = ACTIONS(7433), + [anon_sym_consteval] = ACTIONS(7433), + [anon_sym_alignas] = ACTIONS(7433), + [anon_sym__Alignas] = ACTIONS(7433), + [anon_sym_QMARK] = ACTIONS(7433), + [anon_sym_STAR_EQ] = ACTIONS(7433), + [anon_sym_SLASH_EQ] = ACTIONS(7433), + [anon_sym_PERCENT_EQ] = ACTIONS(7433), + [anon_sym_PLUS_EQ] = ACTIONS(7433), + [anon_sym_DASH_EQ] = ACTIONS(7433), + [anon_sym_LT_LT_EQ] = ACTIONS(7433), + [anon_sym_GT_GT_EQ] = ACTIONS(7433), + [anon_sym_AMP_EQ] = ACTIONS(7433), + [anon_sym_CARET_EQ] = ACTIONS(7433), + [anon_sym_PIPE_EQ] = ACTIONS(7433), + [anon_sym_and_eq] = ACTIONS(7433), + [anon_sym_or_eq] = ACTIONS(7433), + [anon_sym_xor_eq] = ACTIONS(7433), + [anon_sym_LT_EQ_GT] = ACTIONS(7433), + [anon_sym_or] = ACTIONS(7431), + [anon_sym_and] = ACTIONS(7431), + [anon_sym_bitor] = ACTIONS(7433), + [anon_sym_xor] = ACTIONS(7431), + [anon_sym_bitand] = ACTIONS(7433), + [anon_sym_not_eq] = ACTIONS(7433), + [anon_sym_DASH_DASH] = ACTIONS(7433), + [anon_sym_PLUS_PLUS] = ACTIONS(7433), + [anon_sym_DOT] = ACTIONS(7431), + [anon_sym_DOT_STAR] = ACTIONS(7433), + [anon_sym_DASH_GT] = ACTIONS(7431), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7433), + [anon_sym_override] = ACTIONS(7433), + [anon_sym_requires] = ACTIONS(7433), + [anon_sym_DASH_GT_STAR] = ACTIONS(7433), }, - [STATE(2935)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7273), - [anon_sym_COMMA] = ACTIONS(7273), - [anon_sym_RPAREN] = ACTIONS(7273), - [anon_sym_LPAREN2] = ACTIONS(7273), - [anon_sym_DASH] = ACTIONS(7271), - [anon_sym_PLUS] = ACTIONS(7271), - [anon_sym_STAR] = ACTIONS(7271), - [anon_sym_SLASH] = ACTIONS(7271), - [anon_sym_PERCENT] = ACTIONS(7271), - [anon_sym_PIPE_PIPE] = ACTIONS(7273), - [anon_sym_AMP_AMP] = ACTIONS(7273), - [anon_sym_PIPE] = ACTIONS(7271), - [anon_sym_CARET] = ACTIONS(7271), - [anon_sym_AMP] = ACTIONS(7271), - [anon_sym_EQ_EQ] = ACTIONS(7273), - [anon_sym_BANG_EQ] = ACTIONS(7273), - [anon_sym_GT] = ACTIONS(7271), - [anon_sym_GT_EQ] = ACTIONS(7273), - [anon_sym_LT_EQ] = ACTIONS(7271), - [anon_sym_LT] = ACTIONS(7271), - [anon_sym_LT_LT] = ACTIONS(7271), - [anon_sym_GT_GT] = ACTIONS(7271), - [anon_sym___extension__] = ACTIONS(7273), - [anon_sym_LBRACE] = ACTIONS(7273), - [anon_sym_LBRACK] = ACTIONS(7273), - [anon_sym_EQ] = ACTIONS(7271), - [anon_sym_const] = ACTIONS(7271), - [anon_sym_constexpr] = ACTIONS(7273), - [anon_sym_volatile] = ACTIONS(7273), - [anon_sym_restrict] = ACTIONS(7273), - [anon_sym___restrict__] = ACTIONS(7273), - [anon_sym__Atomic] = ACTIONS(7273), - [anon_sym__Noreturn] = ACTIONS(7273), - [anon_sym_noreturn] = ACTIONS(7273), - [anon_sym__Nonnull] = ACTIONS(7273), - [anon_sym_mutable] = ACTIONS(7273), - [anon_sym_constinit] = ACTIONS(7273), - [anon_sym_consteval] = ACTIONS(7273), - [anon_sym_alignas] = ACTIONS(7273), - [anon_sym__Alignas] = ACTIONS(7273), - [anon_sym_QMARK] = ACTIONS(7273), - [anon_sym_STAR_EQ] = ACTIONS(7273), - [anon_sym_SLASH_EQ] = ACTIONS(7273), - [anon_sym_PERCENT_EQ] = ACTIONS(7273), - [anon_sym_PLUS_EQ] = ACTIONS(7273), - [anon_sym_DASH_EQ] = ACTIONS(7273), - [anon_sym_LT_LT_EQ] = ACTIONS(7273), - [anon_sym_GT_GT_EQ] = ACTIONS(7273), - [anon_sym_AMP_EQ] = ACTIONS(7273), - [anon_sym_CARET_EQ] = ACTIONS(7273), - [anon_sym_PIPE_EQ] = ACTIONS(7273), - [anon_sym_and_eq] = ACTIONS(7273), - [anon_sym_or_eq] = ACTIONS(7273), - [anon_sym_xor_eq] = ACTIONS(7273), - [anon_sym_LT_EQ_GT] = ACTIONS(7273), - [anon_sym_or] = ACTIONS(7271), - [anon_sym_and] = ACTIONS(7271), - [anon_sym_bitor] = ACTIONS(7273), - [anon_sym_xor] = ACTIONS(7271), - [anon_sym_bitand] = ACTIONS(7273), - [anon_sym_not_eq] = ACTIONS(7273), - [anon_sym_DASH_DASH] = ACTIONS(7273), - [anon_sym_PLUS_PLUS] = ACTIONS(7273), - [anon_sym_DOT] = ACTIONS(7271), - [anon_sym_DOT_STAR] = ACTIONS(7273), - [anon_sym_DASH_GT] = ACTIONS(7271), + [STATE(2675)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_RPAREN] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7291), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7291), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7291), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7291), + [anon_sym_GT_GT] = ACTIONS(7291), + [anon_sym___extension__] = ACTIONS(7293), + [anon_sym___attribute__] = ACTIONS(7293), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_COLON] = ACTIONS(7291), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_EQ] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7293), + [anon_sym_volatile] = ACTIONS(7293), + [anon_sym_restrict] = ACTIONS(7293), + [anon_sym___restrict__] = ACTIONS(7293), + [anon_sym__Atomic] = ACTIONS(7293), + [anon_sym__Noreturn] = ACTIONS(7293), + [anon_sym_noreturn] = ACTIONS(7293), + [anon_sym__Nonnull] = ACTIONS(7293), + [anon_sym_mutable] = ACTIONS(7293), + [anon_sym_constinit] = ACTIONS(7293), + [anon_sym_consteval] = ACTIONS(7293), + [anon_sym_alignas] = ACTIONS(7293), + [anon_sym__Alignas] = ACTIONS(7293), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_STAR_EQ] = ACTIONS(7293), + [anon_sym_SLASH_EQ] = ACTIONS(7293), + [anon_sym_PERCENT_EQ] = ACTIONS(7293), + [anon_sym_PLUS_EQ] = ACTIONS(7293), + [anon_sym_DASH_EQ] = ACTIONS(7293), + [anon_sym_LT_LT_EQ] = ACTIONS(7293), + [anon_sym_GT_GT_EQ] = ACTIONS(7293), + [anon_sym_AMP_EQ] = ACTIONS(7293), + [anon_sym_CARET_EQ] = ACTIONS(7293), + [anon_sym_PIPE_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7293), + [anon_sym_and] = ACTIONS(7293), + [anon_sym_bitor] = ACTIONS(7293), + [anon_sym_xor] = ACTIONS(7293), + [anon_sym_bitand] = ACTIONS(7293), + [anon_sym_not_eq] = ACTIONS(7293), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7291), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7273), - [anon_sym_override] = ACTIONS(7273), - [anon_sym_requires] = ACTIONS(7273), - [anon_sym_DASH_GT_STAR] = ACTIONS(7273), - }, - [STATE(2936)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7277), - [anon_sym_COMMA] = ACTIONS(7277), - [anon_sym_RPAREN] = ACTIONS(7277), - [anon_sym_LPAREN2] = ACTIONS(7277), - [anon_sym_DASH] = ACTIONS(7275), - [anon_sym_PLUS] = ACTIONS(7275), - [anon_sym_STAR] = ACTIONS(7275), - [anon_sym_SLASH] = ACTIONS(7275), - [anon_sym_PERCENT] = ACTIONS(7275), - [anon_sym_PIPE_PIPE] = ACTIONS(7277), - [anon_sym_AMP_AMP] = ACTIONS(7277), - [anon_sym_PIPE] = ACTIONS(7275), - [anon_sym_CARET] = ACTIONS(7275), - [anon_sym_AMP] = ACTIONS(7275), - [anon_sym_EQ_EQ] = ACTIONS(7277), - [anon_sym_BANG_EQ] = ACTIONS(7277), - [anon_sym_GT] = ACTIONS(7275), - [anon_sym_GT_EQ] = ACTIONS(7277), - [anon_sym_LT_EQ] = ACTIONS(7275), - [anon_sym_LT] = ACTIONS(7275), - [anon_sym_LT_LT] = ACTIONS(7275), - [anon_sym_GT_GT] = ACTIONS(7275), - [anon_sym___extension__] = ACTIONS(7277), - [anon_sym_LBRACE] = ACTIONS(7277), - [anon_sym_LBRACK] = ACTIONS(7277), - [anon_sym_EQ] = ACTIONS(7275), - [anon_sym_const] = ACTIONS(7275), - [anon_sym_constexpr] = ACTIONS(7277), - [anon_sym_volatile] = ACTIONS(7277), - [anon_sym_restrict] = ACTIONS(7277), - [anon_sym___restrict__] = ACTIONS(7277), - [anon_sym__Atomic] = ACTIONS(7277), - [anon_sym__Noreturn] = ACTIONS(7277), - [anon_sym_noreturn] = ACTIONS(7277), - [anon_sym__Nonnull] = ACTIONS(7277), - [anon_sym_mutable] = ACTIONS(7277), - [anon_sym_constinit] = ACTIONS(7277), - [anon_sym_consteval] = ACTIONS(7277), - [anon_sym_alignas] = ACTIONS(7277), - [anon_sym__Alignas] = ACTIONS(7277), - [anon_sym_QMARK] = ACTIONS(7277), - [anon_sym_STAR_EQ] = ACTIONS(7277), - [anon_sym_SLASH_EQ] = ACTIONS(7277), - [anon_sym_PERCENT_EQ] = ACTIONS(7277), - [anon_sym_PLUS_EQ] = ACTIONS(7277), - [anon_sym_DASH_EQ] = ACTIONS(7277), - [anon_sym_LT_LT_EQ] = ACTIONS(7277), - [anon_sym_GT_GT_EQ] = ACTIONS(7277), - [anon_sym_AMP_EQ] = ACTIONS(7277), - [anon_sym_CARET_EQ] = ACTIONS(7277), - [anon_sym_PIPE_EQ] = ACTIONS(7277), - [anon_sym_and_eq] = ACTIONS(7277), - [anon_sym_or_eq] = ACTIONS(7277), - [anon_sym_xor_eq] = ACTIONS(7277), - [anon_sym_LT_EQ_GT] = ACTIONS(7277), - [anon_sym_or] = ACTIONS(7275), - [anon_sym_and] = ACTIONS(7275), - [anon_sym_bitor] = ACTIONS(7277), - [anon_sym_xor] = ACTIONS(7275), - [anon_sym_bitand] = ACTIONS(7277), - [anon_sym_not_eq] = ACTIONS(7277), - [anon_sym_DASH_DASH] = ACTIONS(7277), - [anon_sym_PLUS_PLUS] = ACTIONS(7277), - [anon_sym_DOT] = ACTIONS(7275), - [anon_sym_DOT_STAR] = ACTIONS(7277), - [anon_sym_DASH_GT] = ACTIONS(7275), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7277), - [anon_sym_override] = ACTIONS(7277), - [anon_sym_requires] = ACTIONS(7277), - [anon_sym_DASH_GT_STAR] = ACTIONS(7277), - }, - [STATE(2937)] = { - [sym__abstract_declarator] = STATE(6069), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(2399), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(1977), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(2399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), - [anon_sym_COMMA] = ACTIONS(6995), - [anon_sym_RPAREN] = ACTIONS(6995), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6997), - [anon_sym_PLUS] = ACTIONS(6997), - [anon_sym_STAR] = ACTIONS(7772), - [anon_sym_SLASH] = ACTIONS(6997), - [anon_sym_PERCENT] = ACTIONS(6995), - [anon_sym_PIPE_PIPE] = ACTIONS(6995), - [anon_sym_AMP_AMP] = ACTIONS(7774), - [anon_sym_PIPE] = ACTIONS(6997), - [anon_sym_CARET] = ACTIONS(6995), - [anon_sym_AMP] = ACTIONS(7776), - [anon_sym_EQ_EQ] = ACTIONS(6995), - [anon_sym_BANG_EQ] = ACTIONS(6995), - [anon_sym_GT] = ACTIONS(6997), - [anon_sym_GT_EQ] = ACTIONS(6995), - [anon_sym_LT_EQ] = ACTIONS(6997), - [anon_sym_LT] = ACTIONS(6997), - [anon_sym_LT_LT] = ACTIONS(6995), - [anon_sym_GT_GT] = ACTIONS(6995), - [anon_sym_SEMI] = ACTIONS(6995), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym_COLON] = ACTIONS(6997), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6995), - [anon_sym_RBRACE] = ACTIONS(6995), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(6995), - [anon_sym_LT_EQ_GT] = ACTIONS(6995), - [anon_sym_or] = ACTIONS(6995), - [anon_sym_and] = ACTIONS(6995), - [anon_sym_bitor] = ACTIONS(6995), - [anon_sym_xor] = ACTIONS(6995), - [anon_sym_bitand] = ACTIONS(6995), - [anon_sym_not_eq] = ACTIONS(6995), - [anon_sym_DASH_DASH] = ACTIONS(6995), - [anon_sym_PLUS_PLUS] = ACTIONS(6995), - [anon_sym_DOT] = ACTIONS(6997), - [anon_sym_DOT_STAR] = ACTIONS(6995), - [anon_sym_DASH_GT] = ACTIONS(6995), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6995), - [anon_sym_override] = ACTIONS(6995), - [anon_sym_requires] = ACTIONS(6995), - [anon_sym_COLON_RBRACK] = ACTIONS(6995), + [sym_auto] = ACTIONS(7293), + [anon_sym_decltype] = ACTIONS(7293), + [anon_sym_final] = ACTIONS(7293), + [anon_sym_override] = ACTIONS(7293), + [anon_sym_requires] = ACTIONS(7293), + [anon_sym_DASH_GT_STAR] = ACTIONS(7293), }, - [STATE(2938)] = { - [sym__abstract_declarator] = STATE(6070), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(2941), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(1977), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), - [anon_sym_COMMA] = ACTIONS(6999), - [anon_sym_RPAREN] = ACTIONS(6999), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(7001), - [anon_sym_PLUS] = ACTIONS(7001), - [anon_sym_STAR] = ACTIONS(7772), - [anon_sym_SLASH] = ACTIONS(7001), - [anon_sym_PERCENT] = ACTIONS(6999), - [anon_sym_PIPE_PIPE] = ACTIONS(6999), - [anon_sym_AMP_AMP] = ACTIONS(7774), - [anon_sym_PIPE] = ACTIONS(7001), - [anon_sym_CARET] = ACTIONS(6999), - [anon_sym_AMP] = ACTIONS(7776), - [anon_sym_EQ_EQ] = ACTIONS(6999), - [anon_sym_BANG_EQ] = ACTIONS(6999), - [anon_sym_GT] = ACTIONS(7001), - [anon_sym_GT_EQ] = ACTIONS(6999), - [anon_sym_LT_EQ] = ACTIONS(7001), - [anon_sym_LT] = ACTIONS(7001), - [anon_sym_LT_LT] = ACTIONS(6999), - [anon_sym_GT_GT] = ACTIONS(6999), - [anon_sym_SEMI] = ACTIONS(6999), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym_COLON] = ACTIONS(7001), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6999), - [anon_sym_RBRACE] = ACTIONS(6999), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(6999), - [anon_sym_or] = ACTIONS(6999), - [anon_sym_and] = ACTIONS(6999), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(6999), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(6999), - [anon_sym_PLUS_PLUS] = ACTIONS(6999), - [anon_sym_DOT] = ACTIONS(7001), - [anon_sym_DOT_STAR] = ACTIONS(6999), - [anon_sym_DASH_GT] = ACTIONS(6999), + [STATE(2676)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_RPAREN] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7291), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7291), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7291), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7291), + [anon_sym_GT_GT] = ACTIONS(7291), + [anon_sym___extension__] = ACTIONS(7293), + [anon_sym___attribute__] = ACTIONS(7293), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_COLON] = ACTIONS(7291), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_EQ] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7293), + [anon_sym_volatile] = ACTIONS(7293), + [anon_sym_restrict] = ACTIONS(7293), + [anon_sym___restrict__] = ACTIONS(7293), + [anon_sym__Atomic] = ACTIONS(7293), + [anon_sym__Noreturn] = ACTIONS(7293), + [anon_sym_noreturn] = ACTIONS(7293), + [anon_sym__Nonnull] = ACTIONS(7293), + [anon_sym_mutable] = ACTIONS(7293), + [anon_sym_constinit] = ACTIONS(7293), + [anon_sym_consteval] = ACTIONS(7293), + [anon_sym_alignas] = ACTIONS(7293), + [anon_sym__Alignas] = ACTIONS(7293), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_STAR_EQ] = ACTIONS(7293), + [anon_sym_SLASH_EQ] = ACTIONS(7293), + [anon_sym_PERCENT_EQ] = ACTIONS(7293), + [anon_sym_PLUS_EQ] = ACTIONS(7293), + [anon_sym_DASH_EQ] = ACTIONS(7293), + [anon_sym_LT_LT_EQ] = ACTIONS(7293), + [anon_sym_GT_GT_EQ] = ACTIONS(7293), + [anon_sym_AMP_EQ] = ACTIONS(7293), + [anon_sym_CARET_EQ] = ACTIONS(7293), + [anon_sym_PIPE_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7293), + [anon_sym_and] = ACTIONS(7293), + [anon_sym_bitor] = ACTIONS(7293), + [anon_sym_xor] = ACTIONS(7293), + [anon_sym_bitand] = ACTIONS(7293), + [anon_sym_not_eq] = ACTIONS(7293), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7291), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6999), - [anon_sym_override] = ACTIONS(6999), - [anon_sym_requires] = ACTIONS(6999), - [anon_sym_COLON_RBRACK] = ACTIONS(6999), + [sym_auto] = ACTIONS(7293), + [anon_sym_decltype] = ACTIONS(7293), + [anon_sym_final] = ACTIONS(7293), + [anon_sym_override] = ACTIONS(7293), + [anon_sym_requires] = ACTIONS(7293), + [anon_sym_DASH_GT_STAR] = ACTIONS(7293), }, - [STATE(2939)] = { - [sym_attribute_specifier] = STATE(3480), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7125), - [anon_sym_COMMA] = ACTIONS(7125), - [anon_sym_RPAREN] = ACTIONS(7125), - [anon_sym_LPAREN2] = ACTIONS(7125), - [anon_sym_DASH] = ACTIONS(7123), - [anon_sym_PLUS] = ACTIONS(7123), - [anon_sym_STAR] = ACTIONS(7123), - [anon_sym_SLASH] = ACTIONS(7123), - [anon_sym_PERCENT] = ACTIONS(7123), - [anon_sym_PIPE_PIPE] = ACTIONS(7125), - [anon_sym_AMP_AMP] = ACTIONS(7125), - [anon_sym_PIPE] = ACTIONS(7123), - [anon_sym_CARET] = ACTIONS(7123), - [anon_sym_AMP] = ACTIONS(7123), - [anon_sym_EQ_EQ] = ACTIONS(7125), - [anon_sym_BANG_EQ] = ACTIONS(7125), - [anon_sym_GT] = ACTIONS(7123), - [anon_sym_GT_EQ] = ACTIONS(7125), - [anon_sym_LT_EQ] = ACTIONS(7123), - [anon_sym_LT] = ACTIONS(7123), - [anon_sym_LT_LT] = ACTIONS(7123), - [anon_sym_GT_GT] = ACTIONS(7123), - [anon_sym___extension__] = ACTIONS(7125), - [anon_sym___attribute__] = ACTIONS(8189), - [anon_sym___attribute] = ACTIONS(8191), - [anon_sym_LBRACE] = ACTIONS(7125), - [anon_sym_LBRACK] = ACTIONS(7125), - [anon_sym_EQ] = ACTIONS(7123), - [anon_sym_const] = ACTIONS(7123), - [anon_sym_constexpr] = ACTIONS(7125), - [anon_sym_volatile] = ACTIONS(7125), - [anon_sym_restrict] = ACTIONS(7125), - [anon_sym___restrict__] = ACTIONS(7125), - [anon_sym__Atomic] = ACTIONS(7125), - [anon_sym__Noreturn] = ACTIONS(7125), - [anon_sym_noreturn] = ACTIONS(7125), - [anon_sym__Nonnull] = ACTIONS(7125), - [anon_sym_mutable] = ACTIONS(7125), - [anon_sym_constinit] = ACTIONS(7125), - [anon_sym_consteval] = ACTIONS(7125), - [anon_sym_alignas] = ACTIONS(7125), - [anon_sym__Alignas] = ACTIONS(7125), - [anon_sym_QMARK] = ACTIONS(7125), - [anon_sym_STAR_EQ] = ACTIONS(7125), - [anon_sym_SLASH_EQ] = ACTIONS(7125), - [anon_sym_PERCENT_EQ] = ACTIONS(7125), - [anon_sym_PLUS_EQ] = ACTIONS(7125), - [anon_sym_DASH_EQ] = ACTIONS(7125), - [anon_sym_LT_LT_EQ] = ACTIONS(7125), - [anon_sym_GT_GT_EQ] = ACTIONS(7125), - [anon_sym_AMP_EQ] = ACTIONS(7125), - [anon_sym_CARET_EQ] = ACTIONS(7125), - [anon_sym_PIPE_EQ] = ACTIONS(7125), - [anon_sym_LT_EQ_GT] = ACTIONS(7125), - [anon_sym_or] = ACTIONS(7125), - [anon_sym_and] = ACTIONS(7125), - [anon_sym_bitor] = ACTIONS(7125), - [anon_sym_xor] = ACTIONS(7125), - [anon_sym_bitand] = ACTIONS(7125), - [anon_sym_not_eq] = ACTIONS(7125), - [anon_sym_DASH_DASH] = ACTIONS(7125), - [anon_sym_PLUS_PLUS] = ACTIONS(7125), - [anon_sym_DOT] = ACTIONS(7123), - [anon_sym_DOT_STAR] = ACTIONS(7125), - [anon_sym_DASH_GT] = ACTIONS(7123), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7125), - [anon_sym_override] = ACTIONS(7125), - [anon_sym_requires] = ACTIONS(7125), - [anon_sym_DASH_GT_STAR] = ACTIONS(7125), + [STATE(2677)] = { + [sym_attribute_specifier] = STATE(4381), + [sym_attribute_declaration] = STATE(4895), + [sym_gnu_asm_expression] = STATE(9115), + [sym_virtual_specifier] = STATE(5261), + [sym__function_exception_specification] = STATE(3353), + [sym__function_attributes_end] = STATE(4572), + [sym__function_postfix] = STATE(5681), + [sym_trailing_return_type] = STATE(4639), + [sym_noexcept] = STATE(3353), + [sym_throw_specifier] = STATE(3353), + [sym_requires_clause] = STATE(5681), + [aux_sym_type_definition_repeat1] = STATE(4381), + [aux_sym_attributed_declarator_repeat1] = STATE(4895), + [aux_sym__function_postfix_repeat1] = STATE(5261), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_RPAREN] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym___attribute__] = ACTIONS(6764), + [anon_sym___attribute] = ACTIONS(6766), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7966), + [anon_sym_and] = ACTIONS(7966), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7966), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(8595), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6777), + [anon_sym_override] = ACTIONS(6777), + [anon_sym_noexcept] = ACTIONS(6779), + [anon_sym_throw] = ACTIONS(6781), + [anon_sym_requires] = ACTIONS(6783), + [anon_sym_DASH_GT_STAR] = ACTIONS(7966), }, - [STATE(2940)] = { - [sym__abstract_declarator] = STATE(6062), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(2399), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(1977), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(2399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_RPAREN] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(7772), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6497), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(7774), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6497), - [anon_sym_AMP] = ACTIONS(7776), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6497), - [anon_sym_GT_GT] = ACTIONS(6497), - [anon_sym_SEMI] = ACTIONS(6497), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym_COLON] = ACTIONS(6495), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6497), - [anon_sym_RBRACE] = ACTIONS(6497), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6497), - [anon_sym_and] = ACTIONS(6497), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6497), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6497), - [anon_sym_override] = ACTIONS(6497), - [anon_sym_requires] = ACTIONS(6497), - [anon_sym_COLON_RBRACK] = ACTIONS(6497), + [STATE(2678)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7457), + [anon_sym_COMMA] = ACTIONS(7457), + [anon_sym_LPAREN2] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7459), + [anon_sym_PLUS] = ACTIONS(7459), + [anon_sym_STAR] = ACTIONS(7459), + [anon_sym_SLASH] = ACTIONS(7459), + [anon_sym_PERCENT] = ACTIONS(7459), + [anon_sym_PIPE_PIPE] = ACTIONS(7457), + [anon_sym_AMP_AMP] = ACTIONS(7457), + [anon_sym_PIPE] = ACTIONS(7459), + [anon_sym_CARET] = ACTIONS(7459), + [anon_sym_AMP] = ACTIONS(7459), + [anon_sym_EQ_EQ] = ACTIONS(7457), + [anon_sym_BANG_EQ] = ACTIONS(7457), + [anon_sym_GT] = ACTIONS(7459), + [anon_sym_GT_EQ] = ACTIONS(7459), + [anon_sym_LT_EQ] = ACTIONS(7459), + [anon_sym_LT] = ACTIONS(7459), + [anon_sym_LT_LT] = ACTIONS(7459), + [anon_sym_GT_GT] = ACTIONS(7459), + [anon_sym___extension__] = ACTIONS(7457), + [anon_sym___attribute__] = ACTIONS(7457), + [anon_sym___attribute] = ACTIONS(7459), + [anon_sym_COLON] = ACTIONS(7459), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(7457), + [anon_sym_LBRACK] = ACTIONS(7457), + [anon_sym_EQ] = ACTIONS(7459), + [anon_sym_const] = ACTIONS(7459), + [anon_sym_constexpr] = ACTIONS(7457), + [anon_sym_volatile] = ACTIONS(7457), + [anon_sym_restrict] = ACTIONS(7457), + [anon_sym___restrict__] = ACTIONS(7457), + [anon_sym__Atomic] = ACTIONS(7457), + [anon_sym__Noreturn] = ACTIONS(7457), + [anon_sym_noreturn] = ACTIONS(7457), + [anon_sym__Nonnull] = ACTIONS(7457), + [anon_sym_mutable] = ACTIONS(7457), + [anon_sym_constinit] = ACTIONS(7457), + [anon_sym_consteval] = ACTIONS(7457), + [anon_sym_alignas] = ACTIONS(7457), + [anon_sym__Alignas] = ACTIONS(7457), + [anon_sym_QMARK] = ACTIONS(7457), + [anon_sym_STAR_EQ] = ACTIONS(7457), + [anon_sym_SLASH_EQ] = ACTIONS(7457), + [anon_sym_PERCENT_EQ] = ACTIONS(7457), + [anon_sym_PLUS_EQ] = ACTIONS(7457), + [anon_sym_DASH_EQ] = ACTIONS(7457), + [anon_sym_LT_LT_EQ] = ACTIONS(7457), + [anon_sym_GT_GT_EQ] = ACTIONS(7459), + [anon_sym_AMP_EQ] = ACTIONS(7457), + [anon_sym_CARET_EQ] = ACTIONS(7457), + [anon_sym_PIPE_EQ] = ACTIONS(7457), + [anon_sym_and_eq] = ACTIONS(7457), + [anon_sym_or_eq] = ACTIONS(7457), + [anon_sym_xor_eq] = ACTIONS(7457), + [anon_sym_LT_EQ_GT] = ACTIONS(7457), + [anon_sym_or] = ACTIONS(7459), + [anon_sym_and] = ACTIONS(7459), + [anon_sym_bitor] = ACTIONS(7457), + [anon_sym_xor] = ACTIONS(7459), + [anon_sym_bitand] = ACTIONS(7457), + [anon_sym_not_eq] = ACTIONS(7457), + [anon_sym_DASH_DASH] = ACTIONS(7457), + [anon_sym_PLUS_PLUS] = ACTIONS(7457), + [anon_sym_DOT] = ACTIONS(7459), + [anon_sym_DOT_STAR] = ACTIONS(7457), + [anon_sym_DASH_GT] = ACTIONS(7457), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7457), + [anon_sym_override] = ACTIONS(7457), + [anon_sym_GT2] = ACTIONS(7457), + [anon_sym_requires] = ACTIONS(7457), }, - [STATE(2941)] = { - [sym__abstract_declarator] = STATE(6075), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(2399), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(1977), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(2399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), - [anon_sym_COMMA] = ACTIONS(7003), - [anon_sym_RPAREN] = ACTIONS(7003), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(7772), - [anon_sym_SLASH] = ACTIONS(7005), - [anon_sym_PERCENT] = ACTIONS(7003), - [anon_sym_PIPE_PIPE] = ACTIONS(7003), - [anon_sym_AMP_AMP] = ACTIONS(7774), - [anon_sym_PIPE] = ACTIONS(7005), - [anon_sym_CARET] = ACTIONS(7003), - [anon_sym_AMP] = ACTIONS(7776), - [anon_sym_EQ_EQ] = ACTIONS(7003), - [anon_sym_BANG_EQ] = ACTIONS(7003), - [anon_sym_GT] = ACTIONS(7005), - [anon_sym_GT_EQ] = ACTIONS(7003), - [anon_sym_LT_EQ] = ACTIONS(7005), - [anon_sym_LT] = ACTIONS(7005), - [anon_sym_LT_LT] = ACTIONS(7003), - [anon_sym_GT_GT] = ACTIONS(7003), - [anon_sym_SEMI] = ACTIONS(7003), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym_COLON] = ACTIONS(7005), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7003), - [anon_sym_RBRACE] = ACTIONS(7003), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(7003), - [anon_sym_LT_EQ_GT] = ACTIONS(7003), - [anon_sym_or] = ACTIONS(7003), - [anon_sym_and] = ACTIONS(7003), - [anon_sym_bitor] = ACTIONS(7003), - [anon_sym_xor] = ACTIONS(7003), - [anon_sym_bitand] = ACTIONS(7003), - [anon_sym_not_eq] = ACTIONS(7003), - [anon_sym_DASH_DASH] = ACTIONS(7003), - [anon_sym_PLUS_PLUS] = ACTIONS(7003), - [anon_sym_DOT] = ACTIONS(7005), - [anon_sym_DOT_STAR] = ACTIONS(7003), - [anon_sym_DASH_GT] = ACTIONS(7003), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7003), - [anon_sym_override] = ACTIONS(7003), - [anon_sym_requires] = ACTIONS(7003), - [anon_sym_COLON_RBRACK] = ACTIONS(7003), + [STATE(2679)] = { + [sym_identifier] = ACTIONS(3163), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [anon_sym_COMMA] = ACTIONS(3488), + [aux_sym_preproc_if_token1] = ACTIONS(3163), + [aux_sym_preproc_if_token2] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), + [aux_sym_preproc_else_token1] = ACTIONS(3163), + [aux_sym_preproc_elif_token1] = ACTIONS(3163), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3163), + [sym_preproc_directive] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3488), + [anon_sym___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_extern] = ACTIONS(3163), + [anon_sym___attribute__] = ACTIONS(3163), + [anon_sym___attribute] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3163), + [anon_sym___based] = ACTIONS(3163), + [anon_sym_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym___inline] = ACTIONS(3163), + [anon_sym___inline__] = ACTIONS(3163), + [anon_sym___forceinline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym___thread] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym___restrict__] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym__Noreturn] = ACTIONS(3163), + [anon_sym_noreturn] = ACTIONS(3163), + [anon_sym__Nonnull] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym__Alignas] = ACTIONS(3163), + [sym_primitive_type] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_typename] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_private] = ACTIONS(3163), + [anon_sym_template] = ACTIONS(3163), + [anon_sym_operator] = ACTIONS(3163), + [anon_sym_friend] = ACTIONS(3163), + [anon_sym_public] = ACTIONS(3163), + [anon_sym_protected] = ACTIONS(3163), + [anon_sym_static_assert] = ACTIONS(3163), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), }, - [STATE(2942)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7347), - [anon_sym_COMMA] = ACTIONS(7347), - [anon_sym_RPAREN] = ACTIONS(7347), - [anon_sym_LPAREN2] = ACTIONS(7347), - [anon_sym_DASH] = ACTIONS(7345), - [anon_sym_PLUS] = ACTIONS(7345), - [anon_sym_STAR] = ACTIONS(7345), - [anon_sym_SLASH] = ACTIONS(7345), - [anon_sym_PERCENT] = ACTIONS(7345), - [anon_sym_PIPE_PIPE] = ACTIONS(7347), - [anon_sym_AMP_AMP] = ACTIONS(7347), - [anon_sym_PIPE] = ACTIONS(7345), - [anon_sym_CARET] = ACTIONS(7345), - [anon_sym_AMP] = ACTIONS(7345), - [anon_sym_EQ_EQ] = ACTIONS(7347), - [anon_sym_BANG_EQ] = ACTIONS(7347), - [anon_sym_GT] = ACTIONS(7345), - [anon_sym_GT_EQ] = ACTIONS(7347), - [anon_sym_LT_EQ] = ACTIONS(7345), - [anon_sym_LT] = ACTIONS(7345), - [anon_sym_LT_LT] = ACTIONS(7345), - [anon_sym_GT_GT] = ACTIONS(7345), - [anon_sym___extension__] = ACTIONS(7347), - [anon_sym_LBRACE] = ACTIONS(7347), - [anon_sym_LBRACK] = ACTIONS(7347), - [anon_sym_EQ] = ACTIONS(7345), - [anon_sym_const] = ACTIONS(7345), - [anon_sym_constexpr] = ACTIONS(7347), - [anon_sym_volatile] = ACTIONS(7347), - [anon_sym_restrict] = ACTIONS(7347), - [anon_sym___restrict__] = ACTIONS(7347), - [anon_sym__Atomic] = ACTIONS(7347), - [anon_sym__Noreturn] = ACTIONS(7347), - [anon_sym_noreturn] = ACTIONS(7347), - [anon_sym__Nonnull] = ACTIONS(7347), - [anon_sym_mutable] = ACTIONS(7347), - [anon_sym_constinit] = ACTIONS(7347), - [anon_sym_consteval] = ACTIONS(7347), - [anon_sym_alignas] = ACTIONS(7347), - [anon_sym__Alignas] = ACTIONS(7347), - [anon_sym_QMARK] = ACTIONS(7347), - [anon_sym_STAR_EQ] = ACTIONS(7347), - [anon_sym_SLASH_EQ] = ACTIONS(7347), - [anon_sym_PERCENT_EQ] = ACTIONS(7347), - [anon_sym_PLUS_EQ] = ACTIONS(7347), - [anon_sym_DASH_EQ] = ACTIONS(7347), - [anon_sym_LT_LT_EQ] = ACTIONS(7347), - [anon_sym_GT_GT_EQ] = ACTIONS(7347), - [anon_sym_AMP_EQ] = ACTIONS(7347), - [anon_sym_CARET_EQ] = ACTIONS(7347), - [anon_sym_PIPE_EQ] = ACTIONS(7347), - [anon_sym_and_eq] = ACTIONS(7347), - [anon_sym_or_eq] = ACTIONS(7347), - [anon_sym_xor_eq] = ACTIONS(7347), - [anon_sym_LT_EQ_GT] = ACTIONS(7347), - [anon_sym_or] = ACTIONS(7345), - [anon_sym_and] = ACTIONS(7345), - [anon_sym_bitor] = ACTIONS(7347), - [anon_sym_xor] = ACTIONS(7345), - [anon_sym_bitand] = ACTIONS(7347), - [anon_sym_not_eq] = ACTIONS(7347), - [anon_sym_DASH_DASH] = ACTIONS(7347), - [anon_sym_PLUS_PLUS] = ACTIONS(7347), - [anon_sym_DOT] = ACTIONS(7345), - [anon_sym_DOT_STAR] = ACTIONS(7347), - [anon_sym_DASH_GT] = ACTIONS(7345), + [STATE(2680)] = { + [sym_attribute_specifier] = STATE(3189), + [sym_enumerator_list] = STATE(2759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7383), + [anon_sym_COMMA] = ACTIONS(7383), + [anon_sym_LPAREN2] = ACTIONS(7383), + [anon_sym_DASH] = ACTIONS(7381), + [anon_sym_PLUS] = ACTIONS(7381), + [anon_sym_STAR] = ACTIONS(7381), + [anon_sym_SLASH] = ACTIONS(7381), + [anon_sym_PERCENT] = ACTIONS(7381), + [anon_sym_PIPE_PIPE] = ACTIONS(7383), + [anon_sym_AMP_AMP] = ACTIONS(7383), + [anon_sym_PIPE] = ACTIONS(7381), + [anon_sym_CARET] = ACTIONS(7381), + [anon_sym_AMP] = ACTIONS(7381), + [anon_sym_EQ_EQ] = ACTIONS(7383), + [anon_sym_BANG_EQ] = ACTIONS(7383), + [anon_sym_GT] = ACTIONS(7381), + [anon_sym_GT_EQ] = ACTIONS(7383), + [anon_sym_LT_EQ] = ACTIONS(7381), + [anon_sym_LT] = ACTIONS(7381), + [anon_sym_LT_LT] = ACTIONS(7381), + [anon_sym_GT_GT] = ACTIONS(7381), + [anon_sym___extension__] = ACTIONS(7383), + [anon_sym___attribute__] = ACTIONS(8293), + [anon_sym___attribute] = ACTIONS(8295), + [anon_sym_LBRACE] = ACTIONS(8476), + [anon_sym_LBRACK] = ACTIONS(7383), + [anon_sym_RBRACK] = ACTIONS(7383), + [anon_sym_EQ] = ACTIONS(7381), + [anon_sym_const] = ACTIONS(7381), + [anon_sym_constexpr] = ACTIONS(7383), + [anon_sym_volatile] = ACTIONS(7383), + [anon_sym_restrict] = ACTIONS(7383), + [anon_sym___restrict__] = ACTIONS(7383), + [anon_sym__Atomic] = ACTIONS(7383), + [anon_sym__Noreturn] = ACTIONS(7383), + [anon_sym_noreturn] = ACTIONS(7383), + [anon_sym__Nonnull] = ACTIONS(7383), + [anon_sym_mutable] = ACTIONS(7383), + [anon_sym_constinit] = ACTIONS(7383), + [anon_sym_consteval] = ACTIONS(7383), + [anon_sym_alignas] = ACTIONS(7383), + [anon_sym__Alignas] = ACTIONS(7383), + [anon_sym_QMARK] = ACTIONS(7383), + [anon_sym_STAR_EQ] = ACTIONS(7383), + [anon_sym_SLASH_EQ] = ACTIONS(7383), + [anon_sym_PERCENT_EQ] = ACTIONS(7383), + [anon_sym_PLUS_EQ] = ACTIONS(7383), + [anon_sym_DASH_EQ] = ACTIONS(7383), + [anon_sym_LT_LT_EQ] = ACTIONS(7383), + [anon_sym_GT_GT_EQ] = ACTIONS(7383), + [anon_sym_AMP_EQ] = ACTIONS(7383), + [anon_sym_CARET_EQ] = ACTIONS(7383), + [anon_sym_PIPE_EQ] = ACTIONS(7383), + [anon_sym_and_eq] = ACTIONS(7383), + [anon_sym_or_eq] = ACTIONS(7383), + [anon_sym_xor_eq] = ACTIONS(7383), + [anon_sym_LT_EQ_GT] = ACTIONS(7383), + [anon_sym_or] = ACTIONS(7381), + [anon_sym_and] = ACTIONS(7381), + [anon_sym_bitor] = ACTIONS(7383), + [anon_sym_xor] = ACTIONS(7381), + [anon_sym_bitand] = ACTIONS(7383), + [anon_sym_not_eq] = ACTIONS(7383), + [anon_sym_DASH_DASH] = ACTIONS(7383), + [anon_sym_PLUS_PLUS] = ACTIONS(7383), + [anon_sym_DOT] = ACTIONS(7381), + [anon_sym_DOT_STAR] = ACTIONS(7383), + [anon_sym_DASH_GT] = ACTIONS(7383), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7347), - [anon_sym_override] = ACTIONS(7347), - [anon_sym_requires] = ACTIONS(7347), - [anon_sym_DASH_GT_STAR] = ACTIONS(7347), - }, - [STATE(2943)] = { - [sym_attribute_specifier] = STATE(4079), - [sym_attribute_declaration] = STATE(4488), - [sym_gnu_asm_expression] = STATE(8997), - [sym_virtual_specifier] = STATE(4611), - [sym__function_attributes_end] = STATE(4233), - [sym__function_postfix] = STATE(4995), - [sym_trailing_return_type] = STATE(4308), - [sym_requires_clause] = STATE(4995), - [aux_sym_type_definition_repeat1] = STATE(4079), - [aux_sym_attributed_declarator_repeat1] = STATE(4488), - [aux_sym__function_postfix_repeat1] = STATE(4611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym___attribute__] = ACTIONS(6326), - [anon_sym___attribute] = ACTIONS(6328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_RBRACK] = ACTIONS(7627), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7627), - [anon_sym_or_eq] = ACTIONS(7627), - [anon_sym_xor_eq] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(8061), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8064), - [anon_sym_override] = ACTIONS(8064), - [anon_sym_requires] = ACTIONS(8067), + [anon_sym_final] = ACTIONS(7383), + [anon_sym_override] = ACTIONS(7383), + [anon_sym_requires] = ACTIONS(7383), }, - [STATE(2944)] = { - [sym__abstract_declarator] = STATE(6045), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(2399), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(1977), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(2399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), - [anon_sym_COMMA] = ACTIONS(7007), - [anon_sym_RPAREN] = ACTIONS(7007), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(7009), - [anon_sym_PLUS] = ACTIONS(7009), - [anon_sym_STAR] = ACTIONS(7772), - [anon_sym_SLASH] = ACTIONS(7009), - [anon_sym_PERCENT] = ACTIONS(7007), - [anon_sym_PIPE_PIPE] = ACTIONS(7007), - [anon_sym_AMP_AMP] = ACTIONS(7774), - [anon_sym_PIPE] = ACTIONS(7009), - [anon_sym_CARET] = ACTIONS(7007), - [anon_sym_AMP] = ACTIONS(7776), - [anon_sym_EQ_EQ] = ACTIONS(7007), - [anon_sym_BANG_EQ] = ACTIONS(7007), - [anon_sym_GT] = ACTIONS(7009), - [anon_sym_GT_EQ] = ACTIONS(7007), - [anon_sym_LT_EQ] = ACTIONS(7009), - [anon_sym_LT] = ACTIONS(7009), - [anon_sym_LT_LT] = ACTIONS(7007), - [anon_sym_GT_GT] = ACTIONS(7007), - [anon_sym_SEMI] = ACTIONS(7007), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym_COLON] = ACTIONS(7009), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7007), - [anon_sym_RBRACE] = ACTIONS(7007), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(7007), - [anon_sym_LT_EQ_GT] = ACTIONS(7007), - [anon_sym_or] = ACTIONS(7007), - [anon_sym_and] = ACTIONS(7007), - [anon_sym_bitor] = ACTIONS(7007), - [anon_sym_xor] = ACTIONS(7007), - [anon_sym_bitand] = ACTIONS(7007), - [anon_sym_not_eq] = ACTIONS(7007), - [anon_sym_DASH_DASH] = ACTIONS(7007), - [anon_sym_PLUS_PLUS] = ACTIONS(7007), - [anon_sym_DOT] = ACTIONS(7009), - [anon_sym_DOT_STAR] = ACTIONS(7007), - [anon_sym_DASH_GT] = ACTIONS(7007), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7007), - [anon_sym_override] = ACTIONS(7007), - [anon_sym_requires] = ACTIONS(7007), - [anon_sym_COLON_RBRACK] = ACTIONS(7007), + [STATE(2681)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7106), + [anon_sym_COMMA] = ACTIONS(7106), + [anon_sym_LPAREN2] = ACTIONS(7106), + [anon_sym_DASH] = ACTIONS(7104), + [anon_sym_PLUS] = ACTIONS(7104), + [anon_sym_STAR] = ACTIONS(7104), + [anon_sym_SLASH] = ACTIONS(7104), + [anon_sym_PERCENT] = ACTIONS(7104), + [anon_sym_PIPE_PIPE] = ACTIONS(7106), + [anon_sym_AMP_AMP] = ACTIONS(7106), + [anon_sym_PIPE] = ACTIONS(7104), + [anon_sym_CARET] = ACTIONS(7104), + [anon_sym_AMP] = ACTIONS(7104), + [anon_sym_EQ_EQ] = ACTIONS(7106), + [anon_sym_BANG_EQ] = ACTIONS(7106), + [anon_sym_GT] = ACTIONS(7104), + [anon_sym_GT_EQ] = ACTIONS(7106), + [anon_sym_LT_EQ] = ACTIONS(7104), + [anon_sym_LT] = ACTIONS(7104), + [anon_sym_LT_LT] = ACTIONS(7104), + [anon_sym_GT_GT] = ACTIONS(7104), + [anon_sym___extension__] = ACTIONS(7106), + [anon_sym___attribute__] = ACTIONS(7106), + [anon_sym___attribute] = ACTIONS(7104), + [anon_sym_COLON] = ACTIONS(7104), + [anon_sym_COLON_COLON] = ACTIONS(7106), + [anon_sym_LBRACE] = ACTIONS(7106), + [anon_sym_LBRACK] = ACTIONS(7106), + [anon_sym_RBRACK] = ACTIONS(7106), + [anon_sym_EQ] = ACTIONS(7104), + [anon_sym_const] = ACTIONS(7104), + [anon_sym_constexpr] = ACTIONS(7106), + [anon_sym_volatile] = ACTIONS(7106), + [anon_sym_restrict] = ACTIONS(7106), + [anon_sym___restrict__] = ACTIONS(7106), + [anon_sym__Atomic] = ACTIONS(7106), + [anon_sym__Noreturn] = ACTIONS(7106), + [anon_sym_noreturn] = ACTIONS(7106), + [anon_sym__Nonnull] = ACTIONS(7106), + [anon_sym_mutable] = ACTIONS(7106), + [anon_sym_constinit] = ACTIONS(7106), + [anon_sym_consteval] = ACTIONS(7106), + [anon_sym_alignas] = ACTIONS(7106), + [anon_sym__Alignas] = ACTIONS(7106), + [anon_sym_QMARK] = ACTIONS(7106), + [anon_sym_STAR_EQ] = ACTIONS(7106), + [anon_sym_SLASH_EQ] = ACTIONS(7106), + [anon_sym_PERCENT_EQ] = ACTIONS(7106), + [anon_sym_PLUS_EQ] = ACTIONS(7106), + [anon_sym_DASH_EQ] = ACTIONS(7106), + [anon_sym_LT_LT_EQ] = ACTIONS(7106), + [anon_sym_GT_GT_EQ] = ACTIONS(7106), + [anon_sym_AMP_EQ] = ACTIONS(7106), + [anon_sym_CARET_EQ] = ACTIONS(7106), + [anon_sym_PIPE_EQ] = ACTIONS(7106), + [anon_sym_and_eq] = ACTIONS(7106), + [anon_sym_or_eq] = ACTIONS(7106), + [anon_sym_xor_eq] = ACTIONS(7106), + [anon_sym_LT_EQ_GT] = ACTIONS(7106), + [anon_sym_or] = ACTIONS(7104), + [anon_sym_and] = ACTIONS(7104), + [anon_sym_bitor] = ACTIONS(7106), + [anon_sym_xor] = ACTIONS(7104), + [anon_sym_bitand] = ACTIONS(7106), + [anon_sym_not_eq] = ACTIONS(7106), + [anon_sym_DASH_DASH] = ACTIONS(7106), + [anon_sym_PLUS_PLUS] = ACTIONS(7106), + [anon_sym_DOT] = ACTIONS(7104), + [anon_sym_DOT_STAR] = ACTIONS(7106), + [anon_sym_DASH_GT] = ACTIONS(7106), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7106), + [anon_sym_override] = ACTIONS(7106), + [anon_sym_requires] = ACTIONS(7106), }, - [STATE(2945)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7281), - [anon_sym_COMMA] = ACTIONS(7281), - [anon_sym_RPAREN] = ACTIONS(7281), - [anon_sym_LPAREN2] = ACTIONS(7281), - [anon_sym_DASH] = ACTIONS(7279), - [anon_sym_PLUS] = ACTIONS(7279), - [anon_sym_STAR] = ACTIONS(7279), - [anon_sym_SLASH] = ACTIONS(7279), - [anon_sym_PERCENT] = ACTIONS(7279), - [anon_sym_PIPE_PIPE] = ACTIONS(7281), - [anon_sym_AMP_AMP] = ACTIONS(7281), - [anon_sym_PIPE] = ACTIONS(7279), - [anon_sym_CARET] = ACTIONS(7279), - [anon_sym_AMP] = ACTIONS(7279), - [anon_sym_EQ_EQ] = ACTIONS(7281), - [anon_sym_BANG_EQ] = ACTIONS(7281), - [anon_sym_GT] = ACTIONS(7279), - [anon_sym_GT_EQ] = ACTIONS(7281), - [anon_sym_LT_EQ] = ACTIONS(7279), - [anon_sym_LT] = ACTIONS(7279), - [anon_sym_LT_LT] = ACTIONS(7279), - [anon_sym_GT_GT] = ACTIONS(7279), - [anon_sym___extension__] = ACTIONS(7281), - [anon_sym_LBRACE] = ACTIONS(7281), - [anon_sym_LBRACK] = ACTIONS(7281), - [anon_sym_EQ] = ACTIONS(7279), - [anon_sym_const] = ACTIONS(7279), - [anon_sym_constexpr] = ACTIONS(7281), - [anon_sym_volatile] = ACTIONS(7281), - [anon_sym_restrict] = ACTIONS(7281), - [anon_sym___restrict__] = ACTIONS(7281), - [anon_sym__Atomic] = ACTIONS(7281), - [anon_sym__Noreturn] = ACTIONS(7281), - [anon_sym_noreturn] = ACTIONS(7281), - [anon_sym__Nonnull] = ACTIONS(7281), - [anon_sym_mutable] = ACTIONS(7281), - [anon_sym_constinit] = ACTIONS(7281), - [anon_sym_consteval] = ACTIONS(7281), - [anon_sym_alignas] = ACTIONS(7281), - [anon_sym__Alignas] = ACTIONS(7281), - [anon_sym_QMARK] = ACTIONS(7281), - [anon_sym_STAR_EQ] = ACTIONS(7281), - [anon_sym_SLASH_EQ] = ACTIONS(7281), - [anon_sym_PERCENT_EQ] = ACTIONS(7281), - [anon_sym_PLUS_EQ] = ACTIONS(7281), - [anon_sym_DASH_EQ] = ACTIONS(7281), - [anon_sym_LT_LT_EQ] = ACTIONS(7281), - [anon_sym_GT_GT_EQ] = ACTIONS(7281), - [anon_sym_AMP_EQ] = ACTIONS(7281), - [anon_sym_CARET_EQ] = ACTIONS(7281), - [anon_sym_PIPE_EQ] = ACTIONS(7281), - [anon_sym_and_eq] = ACTIONS(7281), - [anon_sym_or_eq] = ACTIONS(7281), - [anon_sym_xor_eq] = ACTIONS(7281), - [anon_sym_LT_EQ_GT] = ACTIONS(7281), - [anon_sym_or] = ACTIONS(7279), - [anon_sym_and] = ACTIONS(7279), - [anon_sym_bitor] = ACTIONS(7281), - [anon_sym_xor] = ACTIONS(7279), - [anon_sym_bitand] = ACTIONS(7281), - [anon_sym_not_eq] = ACTIONS(7281), - [anon_sym_DASH_DASH] = ACTIONS(7281), - [anon_sym_PLUS_PLUS] = ACTIONS(7281), - [anon_sym_DOT] = ACTIONS(7279), - [anon_sym_DOT_STAR] = ACTIONS(7281), - [anon_sym_DASH_GT] = ACTIONS(7279), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7281), - [anon_sym_override] = ACTIONS(7281), - [anon_sym_requires] = ACTIONS(7281), - [anon_sym_DASH_GT_STAR] = ACTIONS(7281), + [STATE(2682)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7303), + [anon_sym_COMMA] = ACTIONS(7303), + [anon_sym_RPAREN] = ACTIONS(7303), + [anon_sym_LPAREN2] = ACTIONS(7303), + [anon_sym_DASH] = ACTIONS(7301), + [anon_sym_PLUS] = ACTIONS(7301), + [anon_sym_STAR] = ACTIONS(7301), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7301), + [anon_sym_PIPE_PIPE] = ACTIONS(7303), + [anon_sym_AMP_AMP] = ACTIONS(7303), + [anon_sym_PIPE] = ACTIONS(7301), + [anon_sym_CARET] = ACTIONS(7301), + [anon_sym_AMP] = ACTIONS(7301), + [anon_sym_EQ_EQ] = ACTIONS(7303), + [anon_sym_BANG_EQ] = ACTIONS(7303), + [anon_sym_GT] = ACTIONS(7301), + [anon_sym_GT_EQ] = ACTIONS(7303), + [anon_sym_LT_EQ] = ACTIONS(7301), + [anon_sym_LT] = ACTIONS(7301), + [anon_sym_LT_LT] = ACTIONS(7301), + [anon_sym_GT_GT] = ACTIONS(7301), + [anon_sym___extension__] = ACTIONS(7303), + [anon_sym___attribute__] = ACTIONS(7303), + [anon_sym___attribute] = ACTIONS(7301), + [anon_sym_COLON] = ACTIONS(7301), + [anon_sym_COLON_COLON] = ACTIONS(7303), + [anon_sym_LBRACE] = ACTIONS(7303), + [anon_sym_LBRACK] = ACTIONS(7303), + [anon_sym_EQ] = ACTIONS(7301), + [anon_sym_const] = ACTIONS(7301), + [anon_sym_constexpr] = ACTIONS(7303), + [anon_sym_volatile] = ACTIONS(7303), + [anon_sym_restrict] = ACTIONS(7303), + [anon_sym___restrict__] = ACTIONS(7303), + [anon_sym__Atomic] = ACTIONS(7303), + [anon_sym__Noreturn] = ACTIONS(7303), + [anon_sym_noreturn] = ACTIONS(7303), + [anon_sym__Nonnull] = ACTIONS(7303), + [anon_sym_mutable] = ACTIONS(7303), + [anon_sym_constinit] = ACTIONS(7303), + [anon_sym_consteval] = ACTIONS(7303), + [anon_sym_alignas] = ACTIONS(7303), + [anon_sym__Alignas] = ACTIONS(7303), + [anon_sym_QMARK] = ACTIONS(7303), + [anon_sym_STAR_EQ] = ACTIONS(7303), + [anon_sym_SLASH_EQ] = ACTIONS(7303), + [anon_sym_PERCENT_EQ] = ACTIONS(7303), + [anon_sym_PLUS_EQ] = ACTIONS(7303), + [anon_sym_DASH_EQ] = ACTIONS(7303), + [anon_sym_LT_LT_EQ] = ACTIONS(7303), + [anon_sym_GT_GT_EQ] = ACTIONS(7303), + [anon_sym_AMP_EQ] = ACTIONS(7303), + [anon_sym_CARET_EQ] = ACTIONS(7303), + [anon_sym_PIPE_EQ] = ACTIONS(7303), + [anon_sym_LT_EQ_GT] = ACTIONS(7303), + [anon_sym_or] = ACTIONS(7303), + [anon_sym_and] = ACTIONS(7303), + [anon_sym_bitor] = ACTIONS(7303), + [anon_sym_xor] = ACTIONS(7303), + [anon_sym_bitand] = ACTIONS(7303), + [anon_sym_not_eq] = ACTIONS(7303), + [anon_sym_DASH_DASH] = ACTIONS(7303), + [anon_sym_PLUS_PLUS] = ACTIONS(7303), + [anon_sym_DOT] = ACTIONS(7301), + [anon_sym_DOT_STAR] = ACTIONS(7303), + [anon_sym_DASH_GT] = ACTIONS(7301), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7303), + [anon_sym_decltype] = ACTIONS(7303), + [anon_sym_final] = ACTIONS(7303), + [anon_sym_override] = ACTIONS(7303), + [anon_sym_requires] = ACTIONS(7303), + [anon_sym_DASH_GT_STAR] = ACTIONS(7303), }, - [STATE(2946)] = { + [STATE(2683)] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), [anon_sym_COMMA] = ACTIONS(7289), - [anon_sym_RPAREN] = ACTIONS(7289), [anon_sym_LPAREN2] = ACTIONS(7289), [anon_sym_DASH] = ACTIONS(7287), [anon_sym_PLUS] = ACTIONS(7287), @@ -376308,8 +370064,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(7287), [anon_sym_GT_GT] = ACTIONS(7287), [anon_sym___extension__] = ACTIONS(7289), - [anon_sym_LBRACE] = ACTIONS(7289), + [sym_ms_restrict_modifier] = ACTIONS(7287), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7289), + [sym_ms_signed_ptr_modifier] = ACTIONS(7289), + [anon_sym__unaligned] = ACTIONS(7289), + [anon_sym___unaligned] = ACTIONS(7289), [anon_sym_LBRACK] = ACTIONS(7289), + [anon_sym_RBRACK] = ACTIONS(7289), [anon_sym_EQ] = ACTIONS(7287), [anon_sym_const] = ACTIONS(7287), [anon_sym_constexpr] = ACTIONS(7289), @@ -376350,4946 +370111,1081 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(7289), [anon_sym_DOT] = ACTIONS(7287), [anon_sym_DOT_STAR] = ACTIONS(7289), - [anon_sym_DASH_GT] = ACTIONS(7287), + [anon_sym_DASH_GT] = ACTIONS(7289), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7289), [anon_sym_override] = ACTIONS(7289), [anon_sym_requires] = ACTIONS(7289), - [anon_sym_DASH_GT_STAR] = ACTIONS(7289), - }, - [STATE(2947)] = { - [sym_attribute_specifier] = STATE(3481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7135), - [anon_sym_COMMA] = ACTIONS(7135), - [anon_sym_RPAREN] = ACTIONS(7135), - [anon_sym_LPAREN2] = ACTIONS(7135), - [anon_sym_DASH] = ACTIONS(7133), - [anon_sym_PLUS] = ACTIONS(7133), - [anon_sym_STAR] = ACTIONS(7133), - [anon_sym_SLASH] = ACTIONS(7133), - [anon_sym_PERCENT] = ACTIONS(7133), - [anon_sym_PIPE_PIPE] = ACTIONS(7135), - [anon_sym_AMP_AMP] = ACTIONS(7135), - [anon_sym_PIPE] = ACTIONS(7133), - [anon_sym_CARET] = ACTIONS(7133), - [anon_sym_AMP] = ACTIONS(7133), - [anon_sym_EQ_EQ] = ACTIONS(7135), - [anon_sym_BANG_EQ] = ACTIONS(7135), - [anon_sym_GT] = ACTIONS(7133), - [anon_sym_GT_EQ] = ACTIONS(7135), - [anon_sym_LT_EQ] = ACTIONS(7133), - [anon_sym_LT] = ACTIONS(7133), - [anon_sym_LT_LT] = ACTIONS(7133), - [anon_sym_GT_GT] = ACTIONS(7133), - [anon_sym___extension__] = ACTIONS(7135), - [anon_sym___attribute__] = ACTIONS(8189), - [anon_sym___attribute] = ACTIONS(8191), - [anon_sym_LBRACE] = ACTIONS(7135), - [anon_sym_LBRACK] = ACTIONS(7135), - [anon_sym_EQ] = ACTIONS(7133), - [anon_sym_const] = ACTIONS(7133), - [anon_sym_constexpr] = ACTIONS(7135), - [anon_sym_volatile] = ACTIONS(7135), - [anon_sym_restrict] = ACTIONS(7135), - [anon_sym___restrict__] = ACTIONS(7135), - [anon_sym__Atomic] = ACTIONS(7135), - [anon_sym__Noreturn] = ACTIONS(7135), - [anon_sym_noreturn] = ACTIONS(7135), - [anon_sym__Nonnull] = ACTIONS(7135), - [anon_sym_mutable] = ACTIONS(7135), - [anon_sym_constinit] = ACTIONS(7135), - [anon_sym_consteval] = ACTIONS(7135), - [anon_sym_alignas] = ACTIONS(7135), - [anon_sym__Alignas] = ACTIONS(7135), - [anon_sym_QMARK] = ACTIONS(7135), - [anon_sym_STAR_EQ] = ACTIONS(7135), - [anon_sym_SLASH_EQ] = ACTIONS(7135), - [anon_sym_PERCENT_EQ] = ACTIONS(7135), - [anon_sym_PLUS_EQ] = ACTIONS(7135), - [anon_sym_DASH_EQ] = ACTIONS(7135), - [anon_sym_LT_LT_EQ] = ACTIONS(7135), - [anon_sym_GT_GT_EQ] = ACTIONS(7135), - [anon_sym_AMP_EQ] = ACTIONS(7135), - [anon_sym_CARET_EQ] = ACTIONS(7135), - [anon_sym_PIPE_EQ] = ACTIONS(7135), - [anon_sym_LT_EQ_GT] = ACTIONS(7135), - [anon_sym_or] = ACTIONS(7135), - [anon_sym_and] = ACTIONS(7135), - [anon_sym_bitor] = ACTIONS(7135), - [anon_sym_xor] = ACTIONS(7135), - [anon_sym_bitand] = ACTIONS(7135), - [anon_sym_not_eq] = ACTIONS(7135), - [anon_sym_DASH_DASH] = ACTIONS(7135), - [anon_sym_PLUS_PLUS] = ACTIONS(7135), - [anon_sym_DOT] = ACTIONS(7133), - [anon_sym_DOT_STAR] = ACTIONS(7135), - [anon_sym_DASH_GT] = ACTIONS(7133), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7135), - [anon_sym_override] = ACTIONS(7135), - [anon_sym_requires] = ACTIONS(7135), - [anon_sym_DASH_GT_STAR] = ACTIONS(7135), }, - [STATE(2948)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_RPAREN] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7291), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7291), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7291), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7291), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym___extension__] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_EQ] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7293), - [anon_sym_volatile] = ACTIONS(7293), - [anon_sym_restrict] = ACTIONS(7293), - [anon_sym___restrict__] = ACTIONS(7293), - [anon_sym__Atomic] = ACTIONS(7293), - [anon_sym__Noreturn] = ACTIONS(7293), - [anon_sym_noreturn] = ACTIONS(7293), - [anon_sym__Nonnull] = ACTIONS(7293), - [anon_sym_mutable] = ACTIONS(7293), - [anon_sym_constinit] = ACTIONS(7293), - [anon_sym_consteval] = ACTIONS(7293), - [anon_sym_alignas] = ACTIONS(7293), - [anon_sym__Alignas] = ACTIONS(7293), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_STAR_EQ] = ACTIONS(7293), - [anon_sym_SLASH_EQ] = ACTIONS(7293), - [anon_sym_PERCENT_EQ] = ACTIONS(7293), - [anon_sym_PLUS_EQ] = ACTIONS(7293), - [anon_sym_DASH_EQ] = ACTIONS(7293), - [anon_sym_LT_LT_EQ] = ACTIONS(7293), - [anon_sym_GT_GT_EQ] = ACTIONS(7293), - [anon_sym_AMP_EQ] = ACTIONS(7293), - [anon_sym_CARET_EQ] = ACTIONS(7293), - [anon_sym_PIPE_EQ] = ACTIONS(7293), - [anon_sym_and_eq] = ACTIONS(7293), - [anon_sym_or_eq] = ACTIONS(7293), - [anon_sym_xor_eq] = ACTIONS(7293), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_bitor] = ACTIONS(7293), - [anon_sym_xor] = ACTIONS(7291), - [anon_sym_bitand] = ACTIONS(7293), - [anon_sym_not_eq] = ACTIONS(7293), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7291), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7293), - [anon_sym_override] = ACTIONS(7293), - [anon_sym_requires] = ACTIONS(7293), - [anon_sym_DASH_GT_STAR] = ACTIONS(7293), - }, - [STATE(2949)] = { - [sym_identifier] = ACTIONS(6798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6800), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6800), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6800), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6800), - [anon_sym_GT_GT] = ACTIONS(6800), - [anon_sym_SEMI] = ACTIONS(6800), - [anon_sym___extension__] = ACTIONS(6798), - [anon_sym___attribute__] = ACTIONS(6798), - [anon_sym___attribute] = ACTIONS(6798), - [anon_sym_COLON] = ACTIONS(6798), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), - [anon_sym___based] = ACTIONS(6798), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_RBRACE] = ACTIONS(6800), - [anon_sym_signed] = ACTIONS(6798), - [anon_sym_unsigned] = ACTIONS(6798), - [anon_sym_long] = ACTIONS(6798), - [anon_sym_short] = ACTIONS(6798), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6798), - [anon_sym_volatile] = ACTIONS(6798), - [anon_sym_restrict] = ACTIONS(6798), - [anon_sym___restrict__] = ACTIONS(6798), - [anon_sym__Atomic] = ACTIONS(6798), - [anon_sym__Noreturn] = ACTIONS(6798), - [anon_sym_noreturn] = ACTIONS(6798), - [anon_sym__Nonnull] = ACTIONS(6798), - [anon_sym_mutable] = ACTIONS(6798), - [anon_sym_constinit] = ACTIONS(6798), - [anon_sym_consteval] = ACTIONS(6798), - [anon_sym_alignas] = ACTIONS(6798), - [anon_sym__Alignas] = ACTIONS(6798), - [sym_primitive_type] = ACTIONS(6798), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6798), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6798), - [anon_sym_not_eq] = ACTIONS(6798), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6798), - [anon_sym_override] = ACTIONS(6798), - [anon_sym_requires] = ACTIONS(6798), - [anon_sym_COLON_RBRACK] = ACTIONS(6800), - }, - [STATE(2950)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7423), - [anon_sym_COMMA] = ACTIONS(7423), - [anon_sym_RPAREN] = ACTIONS(7423), - [anon_sym_LPAREN2] = ACTIONS(7423), - [anon_sym_DASH] = ACTIONS(7421), - [anon_sym_PLUS] = ACTIONS(7421), - [anon_sym_STAR] = ACTIONS(7421), - [anon_sym_SLASH] = ACTIONS(7421), - [anon_sym_PERCENT] = ACTIONS(7421), - [anon_sym_PIPE_PIPE] = ACTIONS(7423), - [anon_sym_AMP_AMP] = ACTIONS(7423), - [anon_sym_PIPE] = ACTIONS(7421), - [anon_sym_CARET] = ACTIONS(7421), - [anon_sym_AMP] = ACTIONS(7421), - [anon_sym_EQ_EQ] = ACTIONS(7423), - [anon_sym_BANG_EQ] = ACTIONS(7423), - [anon_sym_GT] = ACTIONS(7421), - [anon_sym_GT_EQ] = ACTIONS(7423), - [anon_sym_LT_EQ] = ACTIONS(7421), - [anon_sym_LT] = ACTIONS(7421), - [anon_sym_LT_LT] = ACTIONS(7421), - [anon_sym_GT_GT] = ACTIONS(7421), - [anon_sym___extension__] = ACTIONS(7423), - [anon_sym_LBRACE] = ACTIONS(7423), - [anon_sym_LBRACK] = ACTIONS(7423), - [anon_sym_EQ] = ACTIONS(7421), - [anon_sym_const] = ACTIONS(7421), - [anon_sym_constexpr] = ACTIONS(7423), - [anon_sym_volatile] = ACTIONS(7423), - [anon_sym_restrict] = ACTIONS(7423), - [anon_sym___restrict__] = ACTIONS(7423), - [anon_sym__Atomic] = ACTIONS(7423), - [anon_sym__Noreturn] = ACTIONS(7423), - [anon_sym_noreturn] = ACTIONS(7423), - [anon_sym__Nonnull] = ACTIONS(7423), - [anon_sym_mutable] = ACTIONS(7423), - [anon_sym_constinit] = ACTIONS(7423), - [anon_sym_consteval] = ACTIONS(7423), - [anon_sym_alignas] = ACTIONS(7423), - [anon_sym__Alignas] = ACTIONS(7423), - [anon_sym_QMARK] = ACTIONS(7423), - [anon_sym_STAR_EQ] = ACTIONS(7423), - [anon_sym_SLASH_EQ] = ACTIONS(7423), - [anon_sym_PERCENT_EQ] = ACTIONS(7423), - [anon_sym_PLUS_EQ] = ACTIONS(7423), - [anon_sym_DASH_EQ] = ACTIONS(7423), - [anon_sym_LT_LT_EQ] = ACTIONS(7423), - [anon_sym_GT_GT_EQ] = ACTIONS(7423), - [anon_sym_AMP_EQ] = ACTIONS(7423), - [anon_sym_CARET_EQ] = ACTIONS(7423), - [anon_sym_PIPE_EQ] = ACTIONS(7423), - [anon_sym_and_eq] = ACTIONS(7423), - [anon_sym_or_eq] = ACTIONS(7423), - [anon_sym_xor_eq] = ACTIONS(7423), - [anon_sym_LT_EQ_GT] = ACTIONS(7423), - [anon_sym_or] = ACTIONS(7421), - [anon_sym_and] = ACTIONS(7421), - [anon_sym_bitor] = ACTIONS(7423), - [anon_sym_xor] = ACTIONS(7421), - [anon_sym_bitand] = ACTIONS(7423), - [anon_sym_not_eq] = ACTIONS(7423), - [anon_sym_DASH_DASH] = ACTIONS(7423), - [anon_sym_PLUS_PLUS] = ACTIONS(7423), - [anon_sym_DOT] = ACTIONS(7421), - [anon_sym_DOT_STAR] = ACTIONS(7423), - [anon_sym_DASH_GT] = ACTIONS(7421), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7423), - [anon_sym_override] = ACTIONS(7423), - [anon_sym_requires] = ACTIONS(7423), - [anon_sym_DASH_GT_STAR] = ACTIONS(7423), - }, - [STATE(2951)] = { - [sym_identifier] = ACTIONS(8651), - [anon_sym_LPAREN2] = ACTIONS(8653), - [anon_sym_TILDE] = ACTIONS(8653), - [anon_sym_STAR] = ACTIONS(8653), - [anon_sym_PIPE_PIPE] = ACTIONS(8653), - [anon_sym_AMP_AMP] = ACTIONS(8653), - [anon_sym_AMP] = ACTIONS(8651), - [anon_sym___extension__] = ACTIONS(8651), - [anon_sym_virtual] = ACTIONS(8651), - [anon_sym_extern] = ACTIONS(8651), - [anon_sym___attribute__] = ACTIONS(8651), - [anon_sym___attribute] = ACTIONS(8651), - [anon_sym_using] = ACTIONS(8651), - [anon_sym_COLON_COLON] = ACTIONS(8653), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8653), - [anon_sym___declspec] = ACTIONS(8651), - [anon_sym___based] = ACTIONS(8651), - [anon_sym___cdecl] = ACTIONS(8651), - [anon_sym___clrcall] = ACTIONS(8651), - [anon_sym___stdcall] = ACTIONS(8651), - [anon_sym___fastcall] = ACTIONS(8651), - [anon_sym___thiscall] = ACTIONS(8651), - [anon_sym___vectorcall] = ACTIONS(8651), - [anon_sym_LBRACE] = ACTIONS(8653), - [anon_sym_signed] = ACTIONS(8651), - [anon_sym_unsigned] = ACTIONS(8651), - [anon_sym_long] = ACTIONS(8651), - [anon_sym_short] = ACTIONS(8651), - [anon_sym_LBRACK] = ACTIONS(8651), - [anon_sym_static] = ACTIONS(8651), - [anon_sym_register] = ACTIONS(8651), - [anon_sym_inline] = ACTIONS(8651), - [anon_sym___inline] = ACTIONS(8651), - [anon_sym___inline__] = ACTIONS(8651), - [anon_sym___forceinline] = ACTIONS(8651), - [anon_sym_thread_local] = ACTIONS(8651), - [anon_sym___thread] = ACTIONS(8651), - [anon_sym_const] = ACTIONS(8651), - [anon_sym_constexpr] = ACTIONS(8651), - [anon_sym_volatile] = ACTIONS(8651), - [anon_sym_restrict] = ACTIONS(8651), - [anon_sym___restrict__] = ACTIONS(8651), - [anon_sym__Atomic] = ACTIONS(8651), - [anon_sym__Noreturn] = ACTIONS(8651), - [anon_sym_noreturn] = ACTIONS(8651), - [anon_sym__Nonnull] = ACTIONS(8651), - [anon_sym_mutable] = ACTIONS(8651), - [anon_sym_constinit] = ACTIONS(8651), - [anon_sym_consteval] = ACTIONS(8651), - [anon_sym_alignas] = ACTIONS(8651), - [anon_sym__Alignas] = ACTIONS(8651), - [sym_primitive_type] = ACTIONS(8651), - [anon_sym_enum] = ACTIONS(8651), - [anon_sym_class] = ACTIONS(8651), - [anon_sym_struct] = ACTIONS(8651), - [anon_sym_union] = ACTIONS(8651), - [anon_sym_or] = ACTIONS(8651), - [anon_sym_and] = ACTIONS(8651), - [anon_sym_typename] = ACTIONS(8651), - [anon_sym_DASH_GT] = ACTIONS(8653), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8651), - [anon_sym_decltype] = ACTIONS(8651), - [anon_sym_explicit] = ACTIONS(8651), - [anon_sym_template] = ACTIONS(8651), - [anon_sym_operator] = ACTIONS(8651), - [anon_sym_friend] = ACTIONS(8651), - [anon_sym_noexcept] = ACTIONS(8651), - [anon_sym_throw] = ACTIONS(8651), - [anon_sym_concept] = ACTIONS(8651), - [anon_sym_LBRACK_COLON] = ACTIONS(8653), - }, - [STATE(2952)] = { - [sym__abstract_declarator] = STATE(6042), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(2904), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(1971), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(2904), - [sym_identifier] = ACTIONS(6993), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), - [anon_sym_COMMA] = ACTIONS(6991), - [aux_sym_preproc_if_token2] = ACTIONS(6991), - [aux_sym_preproc_else_token1] = ACTIONS(6991), - [aux_sym_preproc_elif_token1] = ACTIONS(6993), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6991), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6991), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6993), - [anon_sym_PLUS] = ACTIONS(6993), - [anon_sym_STAR] = ACTIONS(7733), - [anon_sym_SLASH] = ACTIONS(6993), - [anon_sym_PERCENT] = ACTIONS(6991), - [anon_sym_PIPE_PIPE] = ACTIONS(6991), - [anon_sym_AMP_AMP] = ACTIONS(7735), - [anon_sym_PIPE] = ACTIONS(6993), - [anon_sym_CARET] = ACTIONS(6991), - [anon_sym_AMP] = ACTIONS(7737), - [anon_sym_EQ_EQ] = ACTIONS(6991), - [anon_sym_BANG_EQ] = ACTIONS(6991), - [anon_sym_GT] = ACTIONS(6993), - [anon_sym_GT_EQ] = ACTIONS(6991), - [anon_sym_LT_EQ] = ACTIONS(6993), - [anon_sym_LT] = ACTIONS(6993), - [anon_sym_LT_LT] = ACTIONS(6991), - [anon_sym_GT_GT] = ACTIONS(6991), - [anon_sym___extension__] = ACTIONS(7739), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(7739), - [anon_sym_volatile] = ACTIONS(7739), - [anon_sym_restrict] = ACTIONS(7739), - [anon_sym___restrict__] = ACTIONS(7739), - [anon_sym__Atomic] = ACTIONS(7739), - [anon_sym__Noreturn] = ACTIONS(7739), - [anon_sym_noreturn] = ACTIONS(7739), - [anon_sym__Nonnull] = ACTIONS(7739), - [anon_sym_mutable] = ACTIONS(7739), - [anon_sym_constinit] = ACTIONS(7739), - [anon_sym_consteval] = ACTIONS(7739), - [anon_sym_alignas] = ACTIONS(7747), - [anon_sym__Alignas] = ACTIONS(7747), - [anon_sym_QMARK] = ACTIONS(6991), - [anon_sym_LT_EQ_GT] = ACTIONS(6991), - [anon_sym_or] = ACTIONS(6993), - [anon_sym_and] = ACTIONS(6993), - [anon_sym_bitor] = ACTIONS(6993), - [anon_sym_xor] = ACTIONS(6993), - [anon_sym_bitand] = ACTIONS(6993), - [anon_sym_not_eq] = ACTIONS(6993), - [anon_sym_DASH_DASH] = ACTIONS(6991), - [anon_sym_PLUS_PLUS] = ACTIONS(6991), - [anon_sym_DOT] = ACTIONS(6993), - [anon_sym_DOT_STAR] = ACTIONS(6991), - [anon_sym_DASH_GT] = ACTIONS(6991), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6993), - [anon_sym_override] = ACTIONS(6993), - [anon_sym_requires] = ACTIONS(6993), - }, - [STATE(2953)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7327), - [anon_sym_COMMA] = ACTIONS(7327), - [anon_sym_RPAREN] = ACTIONS(7327), - [anon_sym_LPAREN2] = ACTIONS(7327), - [anon_sym_DASH] = ACTIONS(7325), - [anon_sym_PLUS] = ACTIONS(7325), - [anon_sym_STAR] = ACTIONS(7325), - [anon_sym_SLASH] = ACTIONS(7325), - [anon_sym_PERCENT] = ACTIONS(7325), - [anon_sym_PIPE_PIPE] = ACTIONS(7327), - [anon_sym_AMP_AMP] = ACTIONS(7327), - [anon_sym_PIPE] = ACTIONS(7325), - [anon_sym_CARET] = ACTIONS(7325), - [anon_sym_AMP] = ACTIONS(7325), - [anon_sym_EQ_EQ] = ACTIONS(7327), - [anon_sym_BANG_EQ] = ACTIONS(7327), - [anon_sym_GT] = ACTIONS(7325), - [anon_sym_GT_EQ] = ACTIONS(7327), - [anon_sym_LT_EQ] = ACTIONS(7325), - [anon_sym_LT] = ACTIONS(7325), - [anon_sym_LT_LT] = ACTIONS(7325), - [anon_sym_GT_GT] = ACTIONS(7325), - [anon_sym___extension__] = ACTIONS(7327), - [anon_sym_LBRACE] = ACTIONS(7327), - [anon_sym_LBRACK] = ACTIONS(7327), - [anon_sym_EQ] = ACTIONS(7325), - [anon_sym_const] = ACTIONS(7325), - [anon_sym_constexpr] = ACTIONS(7327), - [anon_sym_volatile] = ACTIONS(7327), - [anon_sym_restrict] = ACTIONS(7327), - [anon_sym___restrict__] = ACTIONS(7327), - [anon_sym__Atomic] = ACTIONS(7327), - [anon_sym__Noreturn] = ACTIONS(7327), - [anon_sym_noreturn] = ACTIONS(7327), - [anon_sym__Nonnull] = ACTIONS(7327), - [anon_sym_mutable] = ACTIONS(7327), - [anon_sym_constinit] = ACTIONS(7327), - [anon_sym_consteval] = ACTIONS(7327), - [anon_sym_alignas] = ACTIONS(7327), - [anon_sym__Alignas] = ACTIONS(7327), - [anon_sym_QMARK] = ACTIONS(7327), - [anon_sym_STAR_EQ] = ACTIONS(7327), - [anon_sym_SLASH_EQ] = ACTIONS(7327), - [anon_sym_PERCENT_EQ] = ACTIONS(7327), - [anon_sym_PLUS_EQ] = ACTIONS(7327), - [anon_sym_DASH_EQ] = ACTIONS(7327), - [anon_sym_LT_LT_EQ] = ACTIONS(7327), - [anon_sym_GT_GT_EQ] = ACTIONS(7327), - [anon_sym_AMP_EQ] = ACTIONS(7327), - [anon_sym_CARET_EQ] = ACTIONS(7327), - [anon_sym_PIPE_EQ] = ACTIONS(7327), - [anon_sym_and_eq] = ACTIONS(7327), - [anon_sym_or_eq] = ACTIONS(7327), - [anon_sym_xor_eq] = ACTIONS(7327), - [anon_sym_LT_EQ_GT] = ACTIONS(7327), - [anon_sym_or] = ACTIONS(7325), - [anon_sym_and] = ACTIONS(7325), - [anon_sym_bitor] = ACTIONS(7327), - [anon_sym_xor] = ACTIONS(7325), - [anon_sym_bitand] = ACTIONS(7327), - [anon_sym_not_eq] = ACTIONS(7327), - [anon_sym_DASH_DASH] = ACTIONS(7327), - [anon_sym_PLUS_PLUS] = ACTIONS(7327), - [anon_sym_DOT] = ACTIONS(7325), - [anon_sym_DOT_STAR] = ACTIONS(7327), - [anon_sym_DASH_GT] = ACTIONS(7325), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7327), - [anon_sym_override] = ACTIONS(7327), - [anon_sym_requires] = ACTIONS(7327), - [anon_sym_DASH_GT_STAR] = ACTIONS(7327), - }, - [STATE(2954)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7331), - [anon_sym_COMMA] = ACTIONS(7331), - [anon_sym_RPAREN] = ACTIONS(7331), - [anon_sym_LPAREN2] = ACTIONS(7331), - [anon_sym_DASH] = ACTIONS(7329), - [anon_sym_PLUS] = ACTIONS(7329), - [anon_sym_STAR] = ACTIONS(7329), - [anon_sym_SLASH] = ACTIONS(7329), - [anon_sym_PERCENT] = ACTIONS(7329), - [anon_sym_PIPE_PIPE] = ACTIONS(7331), - [anon_sym_AMP_AMP] = ACTIONS(7331), - [anon_sym_PIPE] = ACTIONS(7329), - [anon_sym_CARET] = ACTIONS(7329), - [anon_sym_AMP] = ACTIONS(7329), - [anon_sym_EQ_EQ] = ACTIONS(7331), - [anon_sym_BANG_EQ] = ACTIONS(7331), - [anon_sym_GT] = ACTIONS(7329), - [anon_sym_GT_EQ] = ACTIONS(7331), - [anon_sym_LT_EQ] = ACTIONS(7329), - [anon_sym_LT] = ACTIONS(7329), - [anon_sym_LT_LT] = ACTIONS(7329), - [anon_sym_GT_GT] = ACTIONS(7329), - [anon_sym___extension__] = ACTIONS(7331), - [anon_sym_LBRACE] = ACTIONS(7331), - [anon_sym_LBRACK] = ACTIONS(7331), - [anon_sym_EQ] = ACTIONS(7329), - [anon_sym_const] = ACTIONS(7329), - [anon_sym_constexpr] = ACTIONS(7331), - [anon_sym_volatile] = ACTIONS(7331), - [anon_sym_restrict] = ACTIONS(7331), - [anon_sym___restrict__] = ACTIONS(7331), - [anon_sym__Atomic] = ACTIONS(7331), - [anon_sym__Noreturn] = ACTIONS(7331), - [anon_sym_noreturn] = ACTIONS(7331), - [anon_sym__Nonnull] = ACTIONS(7331), - [anon_sym_mutable] = ACTIONS(7331), - [anon_sym_constinit] = ACTIONS(7331), - [anon_sym_consteval] = ACTIONS(7331), - [anon_sym_alignas] = ACTIONS(7331), - [anon_sym__Alignas] = ACTIONS(7331), - [anon_sym_QMARK] = ACTIONS(7331), - [anon_sym_STAR_EQ] = ACTIONS(7331), - [anon_sym_SLASH_EQ] = ACTIONS(7331), - [anon_sym_PERCENT_EQ] = ACTIONS(7331), - [anon_sym_PLUS_EQ] = ACTIONS(7331), - [anon_sym_DASH_EQ] = ACTIONS(7331), - [anon_sym_LT_LT_EQ] = ACTIONS(7331), - [anon_sym_GT_GT_EQ] = ACTIONS(7331), - [anon_sym_AMP_EQ] = ACTIONS(7331), - [anon_sym_CARET_EQ] = ACTIONS(7331), - [anon_sym_PIPE_EQ] = ACTIONS(7331), - [anon_sym_and_eq] = ACTIONS(7331), - [anon_sym_or_eq] = ACTIONS(7331), - [anon_sym_xor_eq] = ACTIONS(7331), - [anon_sym_LT_EQ_GT] = ACTIONS(7331), - [anon_sym_or] = ACTIONS(7329), - [anon_sym_and] = ACTIONS(7329), - [anon_sym_bitor] = ACTIONS(7331), - [anon_sym_xor] = ACTIONS(7329), - [anon_sym_bitand] = ACTIONS(7331), - [anon_sym_not_eq] = ACTIONS(7331), - [anon_sym_DASH_DASH] = ACTIONS(7331), - [anon_sym_PLUS_PLUS] = ACTIONS(7331), - [anon_sym_DOT] = ACTIONS(7329), - [anon_sym_DOT_STAR] = ACTIONS(7331), - [anon_sym_DASH_GT] = ACTIONS(7329), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7331), - [anon_sym_override] = ACTIONS(7331), - [anon_sym_requires] = ACTIONS(7331), - [anon_sym_DASH_GT_STAR] = ACTIONS(7331), - }, - [STATE(2955)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7301), - [anon_sym_COMMA] = ACTIONS(7301), - [anon_sym_RPAREN] = ACTIONS(7301), - [anon_sym_LPAREN2] = ACTIONS(7301), - [anon_sym_DASH] = ACTIONS(7299), - [anon_sym_PLUS] = ACTIONS(7299), - [anon_sym_STAR] = ACTIONS(7299), - [anon_sym_SLASH] = ACTIONS(7299), - [anon_sym_PERCENT] = ACTIONS(7299), - [anon_sym_PIPE_PIPE] = ACTIONS(7301), - [anon_sym_AMP_AMP] = ACTIONS(7301), - [anon_sym_PIPE] = ACTIONS(7299), - [anon_sym_CARET] = ACTIONS(7299), - [anon_sym_AMP] = ACTIONS(7299), - [anon_sym_EQ_EQ] = ACTIONS(7301), - [anon_sym_BANG_EQ] = ACTIONS(7301), - [anon_sym_GT] = ACTIONS(7299), - [anon_sym_GT_EQ] = ACTIONS(7301), - [anon_sym_LT_EQ] = ACTIONS(7299), - [anon_sym_LT] = ACTIONS(7299), - [anon_sym_LT_LT] = ACTIONS(7299), - [anon_sym_GT_GT] = ACTIONS(7299), - [anon_sym___extension__] = ACTIONS(7301), - [anon_sym_LBRACE] = ACTIONS(7301), - [anon_sym_LBRACK] = ACTIONS(7301), - [anon_sym_EQ] = ACTIONS(7299), - [anon_sym_const] = ACTIONS(7299), - [anon_sym_constexpr] = ACTIONS(7301), - [anon_sym_volatile] = ACTIONS(7301), - [anon_sym_restrict] = ACTIONS(7301), - [anon_sym___restrict__] = ACTIONS(7301), - [anon_sym__Atomic] = ACTIONS(7301), - [anon_sym__Noreturn] = ACTIONS(7301), - [anon_sym_noreturn] = ACTIONS(7301), - [anon_sym__Nonnull] = ACTIONS(7301), - [anon_sym_mutable] = ACTIONS(7301), - [anon_sym_constinit] = ACTIONS(7301), - [anon_sym_consteval] = ACTIONS(7301), - [anon_sym_alignas] = ACTIONS(7301), - [anon_sym__Alignas] = ACTIONS(7301), - [anon_sym_QMARK] = ACTIONS(7301), - [anon_sym_STAR_EQ] = ACTIONS(7301), - [anon_sym_SLASH_EQ] = ACTIONS(7301), - [anon_sym_PERCENT_EQ] = ACTIONS(7301), - [anon_sym_PLUS_EQ] = ACTIONS(7301), - [anon_sym_DASH_EQ] = ACTIONS(7301), - [anon_sym_LT_LT_EQ] = ACTIONS(7301), - [anon_sym_GT_GT_EQ] = ACTIONS(7301), - [anon_sym_AMP_EQ] = ACTIONS(7301), - [anon_sym_CARET_EQ] = ACTIONS(7301), - [anon_sym_PIPE_EQ] = ACTIONS(7301), - [anon_sym_and_eq] = ACTIONS(7301), - [anon_sym_or_eq] = ACTIONS(7301), - [anon_sym_xor_eq] = ACTIONS(7301), - [anon_sym_LT_EQ_GT] = ACTIONS(7301), - [anon_sym_or] = ACTIONS(7299), - [anon_sym_and] = ACTIONS(7299), - [anon_sym_bitor] = ACTIONS(7301), - [anon_sym_xor] = ACTIONS(7299), - [anon_sym_bitand] = ACTIONS(7301), - [anon_sym_not_eq] = ACTIONS(7301), - [anon_sym_DASH_DASH] = ACTIONS(7301), - [anon_sym_PLUS_PLUS] = ACTIONS(7301), - [anon_sym_DOT] = ACTIONS(7299), - [anon_sym_DOT_STAR] = ACTIONS(7301), - [anon_sym_DASH_GT] = ACTIONS(7299), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7301), - [anon_sym_override] = ACTIONS(7301), - [anon_sym_requires] = ACTIONS(7301), - [anon_sym_DASH_GT_STAR] = ACTIONS(7301), - }, - [STATE(2956)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), - [anon_sym_COMMA] = ACTIONS(7237), - [anon_sym_RPAREN] = ACTIONS(7237), - [anon_sym_LPAREN2] = ACTIONS(7237), - [anon_sym_DASH] = ACTIONS(7235), - [anon_sym_PLUS] = ACTIONS(7235), - [anon_sym_STAR] = ACTIONS(7235), - [anon_sym_SLASH] = ACTIONS(7235), - [anon_sym_PERCENT] = ACTIONS(7235), - [anon_sym_PIPE_PIPE] = ACTIONS(7237), - [anon_sym_AMP_AMP] = ACTIONS(7237), - [anon_sym_PIPE] = ACTIONS(7235), - [anon_sym_CARET] = ACTIONS(7235), - [anon_sym_AMP] = ACTIONS(7235), - [anon_sym_EQ_EQ] = ACTIONS(7237), - [anon_sym_BANG_EQ] = ACTIONS(7237), - [anon_sym_GT] = ACTIONS(7235), - [anon_sym_GT_EQ] = ACTIONS(7237), - [anon_sym_LT_EQ] = ACTIONS(7235), - [anon_sym_LT] = ACTIONS(7235), - [anon_sym_LT_LT] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7235), - [anon_sym___extension__] = ACTIONS(7237), - [anon_sym_LBRACE] = ACTIONS(7237), - [anon_sym_LBRACK] = ACTIONS(7237), - [anon_sym_EQ] = ACTIONS(7235), - [anon_sym_const] = ACTIONS(7235), - [anon_sym_constexpr] = ACTIONS(7237), - [anon_sym_volatile] = ACTIONS(7237), - [anon_sym_restrict] = ACTIONS(7237), - [anon_sym___restrict__] = ACTIONS(7237), - [anon_sym__Atomic] = ACTIONS(7237), - [anon_sym__Noreturn] = ACTIONS(7237), - [anon_sym_noreturn] = ACTIONS(7237), - [anon_sym__Nonnull] = ACTIONS(7237), - [anon_sym_mutable] = ACTIONS(7237), - [anon_sym_constinit] = ACTIONS(7237), - [anon_sym_consteval] = ACTIONS(7237), - [anon_sym_alignas] = ACTIONS(7237), - [anon_sym__Alignas] = ACTIONS(7237), - [anon_sym_QMARK] = ACTIONS(7237), - [anon_sym_STAR_EQ] = ACTIONS(7237), - [anon_sym_SLASH_EQ] = ACTIONS(7237), - [anon_sym_PERCENT_EQ] = ACTIONS(7237), - [anon_sym_PLUS_EQ] = ACTIONS(7237), - [anon_sym_DASH_EQ] = ACTIONS(7237), - [anon_sym_LT_LT_EQ] = ACTIONS(7237), - [anon_sym_GT_GT_EQ] = ACTIONS(7237), - [anon_sym_AMP_EQ] = ACTIONS(7237), - [anon_sym_CARET_EQ] = ACTIONS(7237), - [anon_sym_PIPE_EQ] = ACTIONS(7237), - [anon_sym_and_eq] = ACTIONS(7237), - [anon_sym_or_eq] = ACTIONS(7237), - [anon_sym_xor_eq] = ACTIONS(7237), - [anon_sym_LT_EQ_GT] = ACTIONS(7237), - [anon_sym_or] = ACTIONS(7235), - [anon_sym_and] = ACTIONS(7235), - [anon_sym_bitor] = ACTIONS(7237), - [anon_sym_xor] = ACTIONS(7235), - [anon_sym_bitand] = ACTIONS(7237), - [anon_sym_not_eq] = ACTIONS(7237), - [anon_sym_DASH_DASH] = ACTIONS(7237), - [anon_sym_PLUS_PLUS] = ACTIONS(7237), - [anon_sym_DOT] = ACTIONS(7235), - [anon_sym_DOT_STAR] = ACTIONS(7237), - [anon_sym_DASH_GT] = ACTIONS(7235), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7237), - [anon_sym_override] = ACTIONS(7237), - [anon_sym_requires] = ACTIONS(7237), - [anon_sym_DASH_GT_STAR] = ACTIONS(7237), - }, - [STATE(2957)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7247), - [anon_sym_COMMA] = ACTIONS(7247), - [anon_sym_RPAREN] = ACTIONS(7247), - [anon_sym_LPAREN2] = ACTIONS(7247), - [anon_sym_DASH] = ACTIONS(7245), - [anon_sym_PLUS] = ACTIONS(7245), - [anon_sym_STAR] = ACTIONS(7245), - [anon_sym_SLASH] = ACTIONS(7245), - [anon_sym_PERCENT] = ACTIONS(7245), - [anon_sym_PIPE_PIPE] = ACTIONS(7247), - [anon_sym_AMP_AMP] = ACTIONS(7247), - [anon_sym_PIPE] = ACTIONS(7245), - [anon_sym_CARET] = ACTIONS(7245), - [anon_sym_AMP] = ACTIONS(7245), - [anon_sym_EQ_EQ] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7247), - [anon_sym_GT] = ACTIONS(7245), - [anon_sym_GT_EQ] = ACTIONS(7247), - [anon_sym_LT_EQ] = ACTIONS(7245), - [anon_sym_LT] = ACTIONS(7245), - [anon_sym_LT_LT] = ACTIONS(7245), - [anon_sym_GT_GT] = ACTIONS(7245), - [anon_sym___extension__] = ACTIONS(7247), - [anon_sym_LBRACE] = ACTIONS(7247), - [anon_sym_LBRACK] = ACTIONS(7247), - [anon_sym_EQ] = ACTIONS(7245), - [anon_sym_const] = ACTIONS(7245), - [anon_sym_constexpr] = ACTIONS(7247), - [anon_sym_volatile] = ACTIONS(7247), - [anon_sym_restrict] = ACTIONS(7247), - [anon_sym___restrict__] = ACTIONS(7247), - [anon_sym__Atomic] = ACTIONS(7247), - [anon_sym__Noreturn] = ACTIONS(7247), - [anon_sym_noreturn] = ACTIONS(7247), - [anon_sym__Nonnull] = ACTIONS(7247), - [anon_sym_mutable] = ACTIONS(7247), - [anon_sym_constinit] = ACTIONS(7247), - [anon_sym_consteval] = ACTIONS(7247), - [anon_sym_alignas] = ACTIONS(7247), - [anon_sym__Alignas] = ACTIONS(7247), - [anon_sym_QMARK] = ACTIONS(7247), - [anon_sym_STAR_EQ] = ACTIONS(7247), - [anon_sym_SLASH_EQ] = ACTIONS(7247), - [anon_sym_PERCENT_EQ] = ACTIONS(7247), - [anon_sym_PLUS_EQ] = ACTIONS(7247), - [anon_sym_DASH_EQ] = ACTIONS(7247), - [anon_sym_LT_LT_EQ] = ACTIONS(7247), - [anon_sym_GT_GT_EQ] = ACTIONS(7247), - [anon_sym_AMP_EQ] = ACTIONS(7247), - [anon_sym_CARET_EQ] = ACTIONS(7247), - [anon_sym_PIPE_EQ] = ACTIONS(7247), - [anon_sym_and_eq] = ACTIONS(7247), - [anon_sym_or_eq] = ACTIONS(7247), - [anon_sym_xor_eq] = ACTIONS(7247), - [anon_sym_LT_EQ_GT] = ACTIONS(7247), - [anon_sym_or] = ACTIONS(7245), - [anon_sym_and] = ACTIONS(7245), - [anon_sym_bitor] = ACTIONS(7247), - [anon_sym_xor] = ACTIONS(7245), - [anon_sym_bitand] = ACTIONS(7247), - [anon_sym_not_eq] = ACTIONS(7247), - [anon_sym_DASH_DASH] = ACTIONS(7247), - [anon_sym_PLUS_PLUS] = ACTIONS(7247), - [anon_sym_DOT] = ACTIONS(7245), - [anon_sym_DOT_STAR] = ACTIONS(7247), - [anon_sym_DASH_GT] = ACTIONS(7245), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7247), - [anon_sym_override] = ACTIONS(7247), - [anon_sym_requires] = ACTIONS(7247), - [anon_sym_DASH_GT_STAR] = ACTIONS(7247), - }, - [STATE(2958)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), - [anon_sym_COMMA] = ACTIONS(7289), - [anon_sym_RPAREN] = ACTIONS(7289), - [anon_sym_LPAREN2] = ACTIONS(7289), - [anon_sym_DASH] = ACTIONS(7287), - [anon_sym_PLUS] = ACTIONS(7287), - [anon_sym_STAR] = ACTIONS(7287), - [anon_sym_SLASH] = ACTIONS(7287), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_PIPE_PIPE] = ACTIONS(7289), - [anon_sym_AMP_AMP] = ACTIONS(7289), - [anon_sym_PIPE] = ACTIONS(7287), - [anon_sym_CARET] = ACTIONS(7287), - [anon_sym_AMP] = ACTIONS(7287), - [anon_sym_EQ_EQ] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7289), - [anon_sym_GT] = ACTIONS(7287), - [anon_sym_GT_EQ] = ACTIONS(7289), - [anon_sym_LT_EQ] = ACTIONS(7287), - [anon_sym_LT] = ACTIONS(7287), - [anon_sym_LT_LT] = ACTIONS(7287), - [anon_sym_GT_GT] = ACTIONS(7287), - [anon_sym___extension__] = ACTIONS(7289), - [anon_sym_LBRACE] = ACTIONS(7289), - [anon_sym_LBRACK] = ACTIONS(7289), - [anon_sym_EQ] = ACTIONS(7287), - [anon_sym_const] = ACTIONS(7287), - [anon_sym_constexpr] = ACTIONS(7289), - [anon_sym_volatile] = ACTIONS(7289), - [anon_sym_restrict] = ACTIONS(7289), - [anon_sym___restrict__] = ACTIONS(7289), - [anon_sym__Atomic] = ACTIONS(7289), - [anon_sym__Noreturn] = ACTIONS(7289), - [anon_sym_noreturn] = ACTIONS(7289), - [anon_sym__Nonnull] = ACTIONS(7289), - [anon_sym_mutable] = ACTIONS(7289), - [anon_sym_constinit] = ACTIONS(7289), - [anon_sym_consteval] = ACTIONS(7289), - [anon_sym_alignas] = ACTIONS(7289), - [anon_sym__Alignas] = ACTIONS(7289), - [anon_sym_QMARK] = ACTIONS(7289), - [anon_sym_STAR_EQ] = ACTIONS(7289), - [anon_sym_SLASH_EQ] = ACTIONS(7289), - [anon_sym_PERCENT_EQ] = ACTIONS(7289), - [anon_sym_PLUS_EQ] = ACTIONS(7289), - [anon_sym_DASH_EQ] = ACTIONS(7289), - [anon_sym_LT_LT_EQ] = ACTIONS(7289), - [anon_sym_GT_GT_EQ] = ACTIONS(7289), - [anon_sym_AMP_EQ] = ACTIONS(7289), - [anon_sym_CARET_EQ] = ACTIONS(7289), - [anon_sym_PIPE_EQ] = ACTIONS(7289), - [anon_sym_and_eq] = ACTIONS(7289), - [anon_sym_or_eq] = ACTIONS(7289), - [anon_sym_xor_eq] = ACTIONS(7289), - [anon_sym_LT_EQ_GT] = ACTIONS(7289), - [anon_sym_or] = ACTIONS(7287), - [anon_sym_and] = ACTIONS(7287), - [anon_sym_bitor] = ACTIONS(7289), - [anon_sym_xor] = ACTIONS(7287), - [anon_sym_bitand] = ACTIONS(7289), - [anon_sym_not_eq] = ACTIONS(7289), - [anon_sym_DASH_DASH] = ACTIONS(7289), - [anon_sym_PLUS_PLUS] = ACTIONS(7289), - [anon_sym_DOT] = ACTIONS(7287), - [anon_sym_DOT_STAR] = ACTIONS(7289), - [anon_sym_DASH_GT] = ACTIONS(7287), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7289), - [anon_sym_override] = ACTIONS(7289), - [anon_sym_requires] = ACTIONS(7289), - [anon_sym_DASH_GT_STAR] = ACTIONS(7289), - }, - [STATE(2959)] = { - [sym_virtual_specifier] = STATE(3248), - [sym__function_postfix] = STATE(3528), - [sym_requires_clause] = STATE(3528), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [sym_identifier] = ACTIONS(8087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), - [anon_sym_COMMA] = ACTIONS(8089), - [anon_sym_RPAREN] = ACTIONS(8089), - [aux_sym_preproc_if_token2] = ACTIONS(8089), - [aux_sym_preproc_else_token1] = ACTIONS(8089), - [aux_sym_preproc_elif_token1] = ACTIONS(8087), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8089), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8089), - [anon_sym_LPAREN2] = ACTIONS(8089), - [anon_sym_DASH] = ACTIONS(8087), - [anon_sym_PLUS] = ACTIONS(8087), - [anon_sym_STAR] = ACTIONS(8087), - [anon_sym_SLASH] = ACTIONS(8087), - [anon_sym_PERCENT] = ACTIONS(8087), - [anon_sym_PIPE_PIPE] = ACTIONS(8089), - [anon_sym_AMP_AMP] = ACTIONS(8089), - [anon_sym_PIPE] = ACTIONS(8087), - [anon_sym_CARET] = ACTIONS(8087), - [anon_sym_AMP] = ACTIONS(8087), - [anon_sym_EQ_EQ] = ACTIONS(8089), - [anon_sym_BANG_EQ] = ACTIONS(8089), - [anon_sym_GT] = ACTIONS(8087), - [anon_sym_GT_EQ] = ACTIONS(8089), - [anon_sym_LT_EQ] = ACTIONS(8087), - [anon_sym_LT] = ACTIONS(8087), - [anon_sym_LT_LT] = ACTIONS(8087), - [anon_sym_GT_GT] = ACTIONS(8087), - [anon_sym_SEMI] = ACTIONS(8089), - [anon_sym___attribute__] = ACTIONS(8087), - [anon_sym___attribute] = ACTIONS(8087), - [anon_sym_COLON] = ACTIONS(8087), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8089), - [anon_sym_RBRACE] = ACTIONS(8089), - [anon_sym_LBRACK] = ACTIONS(8089), - [anon_sym_EQ] = ACTIONS(8087), - [anon_sym_QMARK] = ACTIONS(8089), - [anon_sym_STAR_EQ] = ACTIONS(8089), - [anon_sym_SLASH_EQ] = ACTIONS(8089), - [anon_sym_PERCENT_EQ] = ACTIONS(8089), - [anon_sym_PLUS_EQ] = ACTIONS(8089), - [anon_sym_DASH_EQ] = ACTIONS(8089), - [anon_sym_LT_LT_EQ] = ACTIONS(8089), - [anon_sym_GT_GT_EQ] = ACTIONS(8089), - [anon_sym_AMP_EQ] = ACTIONS(8089), - [anon_sym_CARET_EQ] = ACTIONS(8089), - [anon_sym_PIPE_EQ] = ACTIONS(8089), - [anon_sym_and_eq] = ACTIONS(8087), - [anon_sym_or_eq] = ACTIONS(8087), - [anon_sym_xor_eq] = ACTIONS(8087), - [anon_sym_LT_EQ_GT] = ACTIONS(8089), - [anon_sym_or] = ACTIONS(8087), - [anon_sym_and] = ACTIONS(8087), - [anon_sym_bitor] = ACTIONS(8087), - [anon_sym_xor] = ACTIONS(8087), - [anon_sym_bitand] = ACTIONS(8087), - [anon_sym_not_eq] = ACTIONS(8087), - [anon_sym_DASH_DASH] = ACTIONS(8089), - [anon_sym_PLUS_PLUS] = ACTIONS(8089), - [anon_sym_DOT] = ACTIONS(8087), - [anon_sym_DOT_STAR] = ACTIONS(8089), - [anon_sym_DASH_GT] = ACTIONS(8089), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6134), - [anon_sym_override] = ACTIONS(6134), - [anon_sym_requires] = ACTIONS(6140), - [anon_sym_COLON_RBRACK] = ACTIONS(8089), - }, - [STATE(2960)] = { - [sym_identifier] = ACTIONS(8655), - [anon_sym_LPAREN2] = ACTIONS(8657), - [anon_sym_TILDE] = ACTIONS(8657), - [anon_sym_STAR] = ACTIONS(8657), - [anon_sym_PIPE_PIPE] = ACTIONS(8657), - [anon_sym_AMP_AMP] = ACTIONS(8657), - [anon_sym_AMP] = ACTIONS(8655), - [anon_sym___extension__] = ACTIONS(8655), - [anon_sym_virtual] = ACTIONS(8655), - [anon_sym_extern] = ACTIONS(8655), - [anon_sym___attribute__] = ACTIONS(8655), - [anon_sym___attribute] = ACTIONS(8655), - [anon_sym_using] = ACTIONS(8655), - [anon_sym_COLON_COLON] = ACTIONS(8657), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8657), - [anon_sym___declspec] = ACTIONS(8655), - [anon_sym___based] = ACTIONS(8655), - [anon_sym___cdecl] = ACTIONS(8655), - [anon_sym___clrcall] = ACTIONS(8655), - [anon_sym___stdcall] = ACTIONS(8655), - [anon_sym___fastcall] = ACTIONS(8655), - [anon_sym___thiscall] = ACTIONS(8655), - [anon_sym___vectorcall] = ACTIONS(8655), - [anon_sym_LBRACE] = ACTIONS(8657), - [anon_sym_signed] = ACTIONS(8655), - [anon_sym_unsigned] = ACTIONS(8655), - [anon_sym_long] = ACTIONS(8655), - [anon_sym_short] = ACTIONS(8655), - [anon_sym_LBRACK] = ACTIONS(8655), - [anon_sym_static] = ACTIONS(8655), - [anon_sym_register] = ACTIONS(8655), - [anon_sym_inline] = ACTIONS(8655), - [anon_sym___inline] = ACTIONS(8655), - [anon_sym___inline__] = ACTIONS(8655), - [anon_sym___forceinline] = ACTIONS(8655), - [anon_sym_thread_local] = ACTIONS(8655), - [anon_sym___thread] = ACTIONS(8655), - [anon_sym_const] = ACTIONS(8655), - [anon_sym_constexpr] = ACTIONS(8655), - [anon_sym_volatile] = ACTIONS(8655), - [anon_sym_restrict] = ACTIONS(8655), - [anon_sym___restrict__] = ACTIONS(8655), - [anon_sym__Atomic] = ACTIONS(8655), - [anon_sym__Noreturn] = ACTIONS(8655), - [anon_sym_noreturn] = ACTIONS(8655), - [anon_sym__Nonnull] = ACTIONS(8655), - [anon_sym_mutable] = ACTIONS(8655), - [anon_sym_constinit] = ACTIONS(8655), - [anon_sym_consteval] = ACTIONS(8655), - [anon_sym_alignas] = ACTIONS(8655), - [anon_sym__Alignas] = ACTIONS(8655), - [sym_primitive_type] = ACTIONS(8655), - [anon_sym_enum] = ACTIONS(8655), - [anon_sym_class] = ACTIONS(8655), - [anon_sym_struct] = ACTIONS(8655), - [anon_sym_union] = ACTIONS(8655), - [anon_sym_or] = ACTIONS(8655), - [anon_sym_and] = ACTIONS(8655), - [anon_sym_typename] = ACTIONS(8655), - [anon_sym_DASH_GT] = ACTIONS(8657), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8655), - [anon_sym_decltype] = ACTIONS(8655), - [anon_sym_explicit] = ACTIONS(8655), - [anon_sym_template] = ACTIONS(8655), - [anon_sym_operator] = ACTIONS(8655), - [anon_sym_friend] = ACTIONS(8655), - [anon_sym_noexcept] = ACTIONS(8655), - [anon_sym_throw] = ACTIONS(8655), - [anon_sym_concept] = ACTIONS(8655), - [anon_sym_LBRACK_COLON] = ACTIONS(8657), - }, - [STATE(2961)] = { - [sym_virtual_specifier] = STATE(3248), - [sym__function_postfix] = STATE(3497), - [sym_requires_clause] = STATE(3497), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [sym_identifier] = ACTIONS(7629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_RPAREN] = ACTIONS(7627), - [aux_sym_preproc_if_token2] = ACTIONS(7627), - [aux_sym_preproc_else_token1] = ACTIONS(7627), - [aux_sym_preproc_elif_token1] = ACTIONS(7629), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7627), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym_SEMI] = ACTIONS(7627), - [anon_sym___attribute__] = ACTIONS(7629), - [anon_sym___attribute] = ACTIONS(7629), - [anon_sym_COLON] = ACTIONS(7629), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7627), - [anon_sym_RBRACE] = ACTIONS(7627), - [anon_sym_LBRACK] = ACTIONS(7627), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7629), - [anon_sym_or_eq] = ACTIONS(7629), - [anon_sym_xor_eq] = ACTIONS(7629), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7629), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7629), - [anon_sym_not_eq] = ACTIONS(7629), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(7627), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7645), - [anon_sym_override] = ACTIONS(7645), - [anon_sym_requires] = ACTIONS(7648), - [anon_sym_COLON_RBRACK] = ACTIONS(7627), - }, - [STATE(2962)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(4192), - [sym_ms_pointer_modifier] = STATE(3909), - [sym__abstract_declarator] = STATE(6697), - [sym_abstract_parenthesized_declarator] = STATE(6488), - [sym_abstract_pointer_declarator] = STATE(6488), - [sym_abstract_function_declarator] = STATE(6488), - [sym_abstract_array_declarator] = STATE(6488), - [sym_type_qualifier] = STATE(3903), - [sym_alignas_qualifier] = STATE(3785), - [sym_parameter_list] = STATE(2144), - [sym_abstract_reference_declarator] = STATE(6488), - [sym__function_declarator_seq] = STATE(6497), - [aux_sym__type_definition_type_repeat1] = STATE(3903), - [aux_sym_pointer_declarator_repeat1] = STATE(3909), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(8224), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(8589), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6497), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(8591), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6497), - [anon_sym_AMP] = ACTIONS(8593), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6495), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6497), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym___extension__] = ACTIONS(8232), - [sym_ms_restrict_modifier] = ACTIONS(8234), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8236), - [sym_ms_signed_ptr_modifier] = ACTIONS(8236), - [anon_sym__unaligned] = ACTIONS(8238), - [anon_sym___unaligned] = ACTIONS(8238), - [anon_sym_LBRACK] = ACTIONS(8240), - [anon_sym_const] = ACTIONS(8242), - [anon_sym_constexpr] = ACTIONS(8232), - [anon_sym_volatile] = ACTIONS(8232), - [anon_sym_restrict] = ACTIONS(8232), - [anon_sym___restrict__] = ACTIONS(8232), - [anon_sym__Atomic] = ACTIONS(8232), - [anon_sym__Noreturn] = ACTIONS(8232), - [anon_sym_noreturn] = ACTIONS(8232), - [anon_sym__Nonnull] = ACTIONS(8232), - [anon_sym_mutable] = ACTIONS(8232), - [anon_sym_constinit] = ACTIONS(8232), - [anon_sym_consteval] = ACTIONS(8232), - [anon_sym_alignas] = ACTIONS(8244), - [anon_sym__Alignas] = ACTIONS(8244), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6497), - [anon_sym_and] = ACTIONS(6497), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6497), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(6497), - }, - [STATE(2963)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7377), - [anon_sym_COMMA] = ACTIONS(7377), - [anon_sym_RPAREN] = ACTIONS(7377), - [anon_sym_LPAREN2] = ACTIONS(7377), - [anon_sym_DASH] = ACTIONS(7375), - [anon_sym_PLUS] = ACTIONS(7375), - [anon_sym_STAR] = ACTIONS(7375), - [anon_sym_SLASH] = ACTIONS(7375), - [anon_sym_PERCENT] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_AMP_AMP] = ACTIONS(7377), - [anon_sym_PIPE] = ACTIONS(7375), - [anon_sym_CARET] = ACTIONS(7375), - [anon_sym_AMP] = ACTIONS(7375), - [anon_sym_EQ_EQ] = ACTIONS(7377), - [anon_sym_BANG_EQ] = ACTIONS(7377), - [anon_sym_GT] = ACTIONS(7375), - [anon_sym_GT_EQ] = ACTIONS(7377), - [anon_sym_LT_EQ] = ACTIONS(7375), - [anon_sym_LT] = ACTIONS(7375), - [anon_sym_LT_LT] = ACTIONS(7375), - [anon_sym_GT_GT] = ACTIONS(7375), - [anon_sym___extension__] = ACTIONS(7377), - [anon_sym_LBRACE] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(7377), - [anon_sym_EQ] = ACTIONS(7375), - [anon_sym_const] = ACTIONS(7375), - [anon_sym_constexpr] = ACTIONS(7377), - [anon_sym_volatile] = ACTIONS(7377), - [anon_sym_restrict] = ACTIONS(7377), - [anon_sym___restrict__] = ACTIONS(7377), - [anon_sym__Atomic] = ACTIONS(7377), - [anon_sym__Noreturn] = ACTIONS(7377), - [anon_sym_noreturn] = ACTIONS(7377), - [anon_sym__Nonnull] = ACTIONS(7377), - [anon_sym_mutable] = ACTIONS(7377), - [anon_sym_constinit] = ACTIONS(7377), - [anon_sym_consteval] = ACTIONS(7377), - [anon_sym_alignas] = ACTIONS(7377), - [anon_sym__Alignas] = ACTIONS(7377), - [anon_sym_QMARK] = ACTIONS(7377), - [anon_sym_STAR_EQ] = ACTIONS(7377), - [anon_sym_SLASH_EQ] = ACTIONS(7377), - [anon_sym_PERCENT_EQ] = ACTIONS(7377), - [anon_sym_PLUS_EQ] = ACTIONS(7377), - [anon_sym_DASH_EQ] = ACTIONS(7377), - [anon_sym_LT_LT_EQ] = ACTIONS(7377), - [anon_sym_GT_GT_EQ] = ACTIONS(7377), - [anon_sym_AMP_EQ] = ACTIONS(7377), - [anon_sym_CARET_EQ] = ACTIONS(7377), - [anon_sym_PIPE_EQ] = ACTIONS(7377), - [anon_sym_and_eq] = ACTIONS(7377), - [anon_sym_or_eq] = ACTIONS(7377), - [anon_sym_xor_eq] = ACTIONS(7377), - [anon_sym_LT_EQ_GT] = ACTIONS(7377), - [anon_sym_or] = ACTIONS(7375), - [anon_sym_and] = ACTIONS(7375), - [anon_sym_bitor] = ACTIONS(7377), - [anon_sym_xor] = ACTIONS(7375), - [anon_sym_bitand] = ACTIONS(7377), - [anon_sym_not_eq] = ACTIONS(7377), - [anon_sym_DASH_DASH] = ACTIONS(7377), - [anon_sym_PLUS_PLUS] = ACTIONS(7377), - [anon_sym_DOT] = ACTIONS(7375), - [anon_sym_DOT_STAR] = ACTIONS(7377), - [anon_sym_DASH_GT] = ACTIONS(7375), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7377), - [anon_sym_override] = ACTIONS(7377), - [anon_sym_requires] = ACTIONS(7377), - [anon_sym_DASH_GT_STAR] = ACTIONS(7377), - }, - [STATE(2964)] = { - [sym_virtual_specifier] = STATE(3248), - [sym__function_postfix] = STATE(3541), - [sym_requires_clause] = STATE(3541), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [sym_identifier] = ACTIONS(8541), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8543), - [anon_sym_COMMA] = ACTIONS(8543), - [anon_sym_RPAREN] = ACTIONS(8543), - [aux_sym_preproc_if_token2] = ACTIONS(8543), - [aux_sym_preproc_else_token1] = ACTIONS(8543), - [aux_sym_preproc_elif_token1] = ACTIONS(8541), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8543), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8543), - [anon_sym_LPAREN2] = ACTIONS(8543), - [anon_sym_DASH] = ACTIONS(8541), - [anon_sym_PLUS] = ACTIONS(8541), - [anon_sym_STAR] = ACTIONS(8541), - [anon_sym_SLASH] = ACTIONS(8541), - [anon_sym_PERCENT] = ACTIONS(8541), - [anon_sym_PIPE_PIPE] = ACTIONS(8543), - [anon_sym_AMP_AMP] = ACTIONS(8543), - [anon_sym_PIPE] = ACTIONS(8541), - [anon_sym_CARET] = ACTIONS(8541), - [anon_sym_AMP] = ACTIONS(8541), - [anon_sym_EQ_EQ] = ACTIONS(8543), - [anon_sym_BANG_EQ] = ACTIONS(8543), - [anon_sym_GT] = ACTIONS(8541), - [anon_sym_GT_EQ] = ACTIONS(8543), - [anon_sym_LT_EQ] = ACTIONS(8541), - [anon_sym_LT] = ACTIONS(8541), - [anon_sym_LT_LT] = ACTIONS(8541), - [anon_sym_GT_GT] = ACTIONS(8541), - [anon_sym_SEMI] = ACTIONS(8543), - [anon_sym___attribute__] = ACTIONS(8541), - [anon_sym___attribute] = ACTIONS(8541), - [anon_sym_COLON] = ACTIONS(8541), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8543), - [anon_sym_RBRACE] = ACTIONS(8543), - [anon_sym_LBRACK] = ACTIONS(8543), - [anon_sym_EQ] = ACTIONS(8541), - [anon_sym_QMARK] = ACTIONS(8543), - [anon_sym_STAR_EQ] = ACTIONS(8543), - [anon_sym_SLASH_EQ] = ACTIONS(8543), - [anon_sym_PERCENT_EQ] = ACTIONS(8543), - [anon_sym_PLUS_EQ] = ACTIONS(8543), - [anon_sym_DASH_EQ] = ACTIONS(8543), - [anon_sym_LT_LT_EQ] = ACTIONS(8543), - [anon_sym_GT_GT_EQ] = ACTIONS(8543), - [anon_sym_AMP_EQ] = ACTIONS(8543), - [anon_sym_CARET_EQ] = ACTIONS(8543), - [anon_sym_PIPE_EQ] = ACTIONS(8543), - [anon_sym_and_eq] = ACTIONS(8541), - [anon_sym_or_eq] = ACTIONS(8541), - [anon_sym_xor_eq] = ACTIONS(8541), - [anon_sym_LT_EQ_GT] = ACTIONS(8543), - [anon_sym_or] = ACTIONS(8541), - [anon_sym_and] = ACTIONS(8541), - [anon_sym_bitor] = ACTIONS(8541), - [anon_sym_xor] = ACTIONS(8541), - [anon_sym_bitand] = ACTIONS(8541), - [anon_sym_not_eq] = ACTIONS(8541), - [anon_sym_DASH_DASH] = ACTIONS(8543), - [anon_sym_PLUS_PLUS] = ACTIONS(8543), - [anon_sym_DOT] = ACTIONS(8541), - [anon_sym_DOT_STAR] = ACTIONS(8543), - [anon_sym_DASH_GT] = ACTIONS(8543), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6134), - [anon_sym_override] = ACTIONS(6134), - [anon_sym_requires] = ACTIONS(6140), - [anon_sym_COLON_RBRACK] = ACTIONS(8543), - }, - [STATE(2965)] = { - [sym_attribute_specifier] = STATE(4079), - [sym_attribute_declaration] = STATE(4488), - [sym_gnu_asm_expression] = STATE(8997), - [sym_virtual_specifier] = STATE(4611), - [sym__function_attributes_end] = STATE(4236), - [sym__function_postfix] = STATE(5002), - [sym_trailing_return_type] = STATE(4309), - [sym_requires_clause] = STATE(5002), - [aux_sym_type_definition_repeat1] = STATE(4079), - [aux_sym_attributed_declarator_repeat1] = STATE(4488), - [aux_sym__function_postfix_repeat1] = STATE(4611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), - [anon_sym_COMMA] = ACTIONS(8089), - [anon_sym_LPAREN2] = ACTIONS(8089), - [anon_sym_DASH] = ACTIONS(8087), - [anon_sym_PLUS] = ACTIONS(8087), - [anon_sym_STAR] = ACTIONS(8087), - [anon_sym_SLASH] = ACTIONS(8087), - [anon_sym_PERCENT] = ACTIONS(8087), - [anon_sym_PIPE_PIPE] = ACTIONS(8089), - [anon_sym_AMP_AMP] = ACTIONS(8089), - [anon_sym_PIPE] = ACTIONS(8087), - [anon_sym_CARET] = ACTIONS(8087), - [anon_sym_AMP] = ACTIONS(8087), - [anon_sym_EQ_EQ] = ACTIONS(8089), - [anon_sym_BANG_EQ] = ACTIONS(8089), - [anon_sym_GT] = ACTIONS(8087), - [anon_sym_GT_EQ] = ACTIONS(8089), - [anon_sym_LT_EQ] = ACTIONS(8087), - [anon_sym_LT] = ACTIONS(8087), - [anon_sym_LT_LT] = ACTIONS(8087), - [anon_sym_GT_GT] = ACTIONS(8087), - [anon_sym___attribute__] = ACTIONS(6326), - [anon_sym___attribute] = ACTIONS(6328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), - [anon_sym_LBRACK] = ACTIONS(8087), - [anon_sym_RBRACK] = ACTIONS(8089), - [anon_sym_EQ] = ACTIONS(8087), - [anon_sym_QMARK] = ACTIONS(8089), - [anon_sym_STAR_EQ] = ACTIONS(8089), - [anon_sym_SLASH_EQ] = ACTIONS(8089), - [anon_sym_PERCENT_EQ] = ACTIONS(8089), - [anon_sym_PLUS_EQ] = ACTIONS(8089), - [anon_sym_DASH_EQ] = ACTIONS(8089), - [anon_sym_LT_LT_EQ] = ACTIONS(8089), - [anon_sym_GT_GT_EQ] = ACTIONS(8089), - [anon_sym_AMP_EQ] = ACTIONS(8089), - [anon_sym_CARET_EQ] = ACTIONS(8089), - [anon_sym_PIPE_EQ] = ACTIONS(8089), - [anon_sym_and_eq] = ACTIONS(8089), - [anon_sym_or_eq] = ACTIONS(8089), - [anon_sym_xor_eq] = ACTIONS(8089), - [anon_sym_LT_EQ_GT] = ACTIONS(8089), - [anon_sym_or] = ACTIONS(8087), - [anon_sym_and] = ACTIONS(8087), - [anon_sym_bitor] = ACTIONS(8089), - [anon_sym_xor] = ACTIONS(8087), - [anon_sym_bitand] = ACTIONS(8089), - [anon_sym_not_eq] = ACTIONS(8089), - [anon_sym_DASH_DASH] = ACTIONS(8089), - [anon_sym_PLUS_PLUS] = ACTIONS(8089), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(8087), - [anon_sym_DOT_STAR] = ACTIONS(8089), - [anon_sym_DASH_GT] = ACTIONS(8576), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8659), - [anon_sym_override] = ACTIONS(8659), - [anon_sym_requires] = ACTIONS(8662), - }, - [STATE(2966)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), - [anon_sym_COMMA] = ACTIONS(6230), - [anon_sym_RPAREN] = ACTIONS(6230), - [anon_sym_LPAREN2] = ACTIONS(6230), - [anon_sym_DASH] = ACTIONS(6237), - [anon_sym_PLUS] = ACTIONS(6237), - [anon_sym_STAR] = ACTIONS(6237), - [anon_sym_SLASH] = ACTIONS(6237), - [anon_sym_PERCENT] = ACTIONS(6237), - [anon_sym_PIPE_PIPE] = ACTIONS(6230), - [anon_sym_AMP_AMP] = ACTIONS(6230), - [anon_sym_PIPE] = ACTIONS(6237), - [anon_sym_CARET] = ACTIONS(6237), - [anon_sym_AMP] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6230), - [anon_sym_BANG_EQ] = ACTIONS(6230), - [anon_sym_GT] = ACTIONS(6237), - [anon_sym_GT_EQ] = ACTIONS(6230), - [anon_sym_LT_EQ] = ACTIONS(6237), - [anon_sym_LT] = ACTIONS(6237), - [anon_sym_LT_LT] = ACTIONS(6237), - [anon_sym_GT_GT] = ACTIONS(6237), - [anon_sym___extension__] = ACTIONS(6233), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6230), - [anon_sym_EQ] = ACTIONS(6237), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6233), - [anon_sym_volatile] = ACTIONS(6233), - [anon_sym_restrict] = ACTIONS(6233), - [anon_sym___restrict__] = ACTIONS(6233), - [anon_sym__Atomic] = ACTIONS(6233), - [anon_sym__Noreturn] = ACTIONS(6233), - [anon_sym_noreturn] = ACTIONS(6233), - [anon_sym__Nonnull] = ACTIONS(6233), - [anon_sym_mutable] = ACTIONS(6233), - [anon_sym_constinit] = ACTIONS(6233), - [anon_sym_consteval] = ACTIONS(6233), - [anon_sym_alignas] = ACTIONS(6233), - [anon_sym__Alignas] = ACTIONS(6233), - [anon_sym_QMARK] = ACTIONS(6230), - [anon_sym_STAR_EQ] = ACTIONS(6230), - [anon_sym_SLASH_EQ] = ACTIONS(6230), - [anon_sym_PERCENT_EQ] = ACTIONS(6230), - [anon_sym_PLUS_EQ] = ACTIONS(6230), - [anon_sym_DASH_EQ] = ACTIONS(6230), - [anon_sym_LT_LT_EQ] = ACTIONS(6230), - [anon_sym_GT_GT_EQ] = ACTIONS(6230), - [anon_sym_AMP_EQ] = ACTIONS(6230), - [anon_sym_CARET_EQ] = ACTIONS(6230), - [anon_sym_PIPE_EQ] = ACTIONS(6230), - [anon_sym_and_eq] = ACTIONS(6228), - [anon_sym_or_eq] = ACTIONS(6228), - [anon_sym_xor_eq] = ACTIONS(6228), - [anon_sym_LT_EQ_GT] = ACTIONS(6230), - [anon_sym_or] = ACTIONS(6237), - [anon_sym_and] = ACTIONS(6237), - [anon_sym_bitor] = ACTIONS(6230), - [anon_sym_xor] = ACTIONS(6237), - [anon_sym_bitand] = ACTIONS(6230), - [anon_sym_not_eq] = ACTIONS(6230), - [anon_sym_DASH_DASH] = ACTIONS(6230), - [anon_sym_PLUS_PLUS] = ACTIONS(6230), - [anon_sym_DOT] = ACTIONS(6237), - [anon_sym_DOT_STAR] = ACTIONS(6230), - [anon_sym_DASH_GT] = ACTIONS(6237), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6233), - [anon_sym_decltype] = ACTIONS(6233), - [anon_sym_DASH_GT_STAR] = ACTIONS(6230), - }, - [STATE(2967)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7297), - [anon_sym_COMMA] = ACTIONS(7297), - [anon_sym_RPAREN] = ACTIONS(7297), - [anon_sym_LPAREN2] = ACTIONS(7297), - [anon_sym_DASH] = ACTIONS(7295), - [anon_sym_PLUS] = ACTIONS(7295), - [anon_sym_STAR] = ACTIONS(7295), - [anon_sym_SLASH] = ACTIONS(7295), - [anon_sym_PERCENT] = ACTIONS(7295), - [anon_sym_PIPE_PIPE] = ACTIONS(7297), - [anon_sym_AMP_AMP] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7295), - [anon_sym_CARET] = ACTIONS(7295), - [anon_sym_AMP] = ACTIONS(7295), - [anon_sym_EQ_EQ] = ACTIONS(7297), - [anon_sym_BANG_EQ] = ACTIONS(7297), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_GT_EQ] = ACTIONS(7297), - [anon_sym_LT_EQ] = ACTIONS(7295), - [anon_sym_LT] = ACTIONS(7295), - [anon_sym_LT_LT] = ACTIONS(7295), - [anon_sym_GT_GT] = ACTIONS(7295), - [anon_sym___extension__] = ACTIONS(7297), - [anon_sym_LBRACE] = ACTIONS(7297), - [anon_sym_LBRACK] = ACTIONS(7297), - [anon_sym_EQ] = ACTIONS(7295), - [anon_sym_const] = ACTIONS(7295), - [anon_sym_constexpr] = ACTIONS(7297), - [anon_sym_volatile] = ACTIONS(7297), - [anon_sym_restrict] = ACTIONS(7297), - [anon_sym___restrict__] = ACTIONS(7297), - [anon_sym__Atomic] = ACTIONS(7297), - [anon_sym__Noreturn] = ACTIONS(7297), - [anon_sym_noreturn] = ACTIONS(7297), - [anon_sym__Nonnull] = ACTIONS(7297), - [anon_sym_mutable] = ACTIONS(7297), - [anon_sym_constinit] = ACTIONS(7297), - [anon_sym_consteval] = ACTIONS(7297), - [anon_sym_alignas] = ACTIONS(7297), - [anon_sym__Alignas] = ACTIONS(7297), - [anon_sym_QMARK] = ACTIONS(7297), - [anon_sym_STAR_EQ] = ACTIONS(7297), - [anon_sym_SLASH_EQ] = ACTIONS(7297), - [anon_sym_PERCENT_EQ] = ACTIONS(7297), - [anon_sym_PLUS_EQ] = ACTIONS(7297), - [anon_sym_DASH_EQ] = ACTIONS(7297), - [anon_sym_LT_LT_EQ] = ACTIONS(7297), - [anon_sym_GT_GT_EQ] = ACTIONS(7297), - [anon_sym_AMP_EQ] = ACTIONS(7297), - [anon_sym_CARET_EQ] = ACTIONS(7297), - [anon_sym_PIPE_EQ] = ACTIONS(7297), - [anon_sym_and_eq] = ACTIONS(7297), - [anon_sym_or_eq] = ACTIONS(7297), - [anon_sym_xor_eq] = ACTIONS(7297), - [anon_sym_LT_EQ_GT] = ACTIONS(7297), - [anon_sym_or] = ACTIONS(7295), - [anon_sym_and] = ACTIONS(7295), - [anon_sym_bitor] = ACTIONS(7297), - [anon_sym_xor] = ACTIONS(7295), - [anon_sym_bitand] = ACTIONS(7297), - [anon_sym_not_eq] = ACTIONS(7297), - [anon_sym_DASH_DASH] = ACTIONS(7297), - [anon_sym_PLUS_PLUS] = ACTIONS(7297), - [anon_sym_DOT] = ACTIONS(7295), - [anon_sym_DOT_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(7295), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7297), - [anon_sym_override] = ACTIONS(7297), - [anon_sym_requires] = ACTIONS(7297), - [anon_sym_DASH_GT_STAR] = ACTIONS(7297), - }, - [STATE(2968)] = { - [sym_virtual_specifier] = STATE(3248), - [sym__function_postfix] = STATE(3543), - [sym_requires_clause] = STATE(3543), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [sym_identifier] = ACTIONS(8559), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8561), - [anon_sym_COMMA] = ACTIONS(8561), - [anon_sym_RPAREN] = ACTIONS(8561), - [aux_sym_preproc_if_token2] = ACTIONS(8561), - [aux_sym_preproc_else_token1] = ACTIONS(8561), - [aux_sym_preproc_elif_token1] = ACTIONS(8559), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8561), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8561), - [anon_sym_LPAREN2] = ACTIONS(8561), - [anon_sym_DASH] = ACTIONS(8559), - [anon_sym_PLUS] = ACTIONS(8559), - [anon_sym_STAR] = ACTIONS(8559), - [anon_sym_SLASH] = ACTIONS(8559), - [anon_sym_PERCENT] = ACTIONS(8559), - [anon_sym_PIPE_PIPE] = ACTIONS(8561), - [anon_sym_AMP_AMP] = ACTIONS(8561), - [anon_sym_PIPE] = ACTIONS(8559), - [anon_sym_CARET] = ACTIONS(8559), - [anon_sym_AMP] = ACTIONS(8559), - [anon_sym_EQ_EQ] = ACTIONS(8561), - [anon_sym_BANG_EQ] = ACTIONS(8561), - [anon_sym_GT] = ACTIONS(8559), - [anon_sym_GT_EQ] = ACTIONS(8561), - [anon_sym_LT_EQ] = ACTIONS(8559), - [anon_sym_LT] = ACTIONS(8559), - [anon_sym_LT_LT] = ACTIONS(8559), - [anon_sym_GT_GT] = ACTIONS(8559), - [anon_sym_SEMI] = ACTIONS(8561), - [anon_sym___attribute__] = ACTIONS(8559), - [anon_sym___attribute] = ACTIONS(8559), - [anon_sym_COLON] = ACTIONS(8559), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8561), - [anon_sym_RBRACE] = ACTIONS(8561), - [anon_sym_LBRACK] = ACTIONS(8561), - [anon_sym_EQ] = ACTIONS(8559), - [anon_sym_QMARK] = ACTIONS(8561), - [anon_sym_STAR_EQ] = ACTIONS(8561), - [anon_sym_SLASH_EQ] = ACTIONS(8561), - [anon_sym_PERCENT_EQ] = ACTIONS(8561), - [anon_sym_PLUS_EQ] = ACTIONS(8561), - [anon_sym_DASH_EQ] = ACTIONS(8561), - [anon_sym_LT_LT_EQ] = ACTIONS(8561), - [anon_sym_GT_GT_EQ] = ACTIONS(8561), - [anon_sym_AMP_EQ] = ACTIONS(8561), - [anon_sym_CARET_EQ] = ACTIONS(8561), - [anon_sym_PIPE_EQ] = ACTIONS(8561), - [anon_sym_and_eq] = ACTIONS(8559), - [anon_sym_or_eq] = ACTIONS(8559), - [anon_sym_xor_eq] = ACTIONS(8559), - [anon_sym_LT_EQ_GT] = ACTIONS(8561), - [anon_sym_or] = ACTIONS(8559), - [anon_sym_and] = ACTIONS(8559), - [anon_sym_bitor] = ACTIONS(8559), - [anon_sym_xor] = ACTIONS(8559), - [anon_sym_bitand] = ACTIONS(8559), - [anon_sym_not_eq] = ACTIONS(8559), - [anon_sym_DASH_DASH] = ACTIONS(8561), - [anon_sym_PLUS_PLUS] = ACTIONS(8561), - [anon_sym_DOT] = ACTIONS(8559), - [anon_sym_DOT_STAR] = ACTIONS(8561), - [anon_sym_DASH_GT] = ACTIONS(8561), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6134), - [anon_sym_override] = ACTIONS(6134), - [anon_sym_requires] = ACTIONS(6140), - [anon_sym_COLON_RBRACK] = ACTIONS(8561), - }, - [STATE(2969)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7305), - [anon_sym_COMMA] = ACTIONS(7305), - [anon_sym_RPAREN] = ACTIONS(7305), - [anon_sym_LPAREN2] = ACTIONS(7305), - [anon_sym_DASH] = ACTIONS(7303), - [anon_sym_PLUS] = ACTIONS(7303), - [anon_sym_STAR] = ACTIONS(7303), - [anon_sym_SLASH] = ACTIONS(7303), - [anon_sym_PERCENT] = ACTIONS(7303), - [anon_sym_PIPE_PIPE] = ACTIONS(7305), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE] = ACTIONS(7303), - [anon_sym_CARET] = ACTIONS(7303), - [anon_sym_AMP] = ACTIONS(7303), - [anon_sym_EQ_EQ] = ACTIONS(7305), - [anon_sym_BANG_EQ] = ACTIONS(7305), - [anon_sym_GT] = ACTIONS(7303), - [anon_sym_GT_EQ] = ACTIONS(7305), - [anon_sym_LT_EQ] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(7303), - [anon_sym_LT_LT] = ACTIONS(7303), - [anon_sym_GT_GT] = ACTIONS(7303), - [anon_sym___extension__] = ACTIONS(7305), - [anon_sym_LBRACE] = ACTIONS(7305), - [anon_sym_LBRACK] = ACTIONS(7305), - [anon_sym_EQ] = ACTIONS(7303), - [anon_sym_const] = ACTIONS(7303), - [anon_sym_constexpr] = ACTIONS(7305), - [anon_sym_volatile] = ACTIONS(7305), - [anon_sym_restrict] = ACTIONS(7305), - [anon_sym___restrict__] = ACTIONS(7305), - [anon_sym__Atomic] = ACTIONS(7305), - [anon_sym__Noreturn] = ACTIONS(7305), - [anon_sym_noreturn] = ACTIONS(7305), - [anon_sym__Nonnull] = ACTIONS(7305), - [anon_sym_mutable] = ACTIONS(7305), - [anon_sym_constinit] = ACTIONS(7305), - [anon_sym_consteval] = ACTIONS(7305), - [anon_sym_alignas] = ACTIONS(7305), - [anon_sym__Alignas] = ACTIONS(7305), - [anon_sym_QMARK] = ACTIONS(7305), - [anon_sym_STAR_EQ] = ACTIONS(7305), - [anon_sym_SLASH_EQ] = ACTIONS(7305), - [anon_sym_PERCENT_EQ] = ACTIONS(7305), - [anon_sym_PLUS_EQ] = ACTIONS(7305), - [anon_sym_DASH_EQ] = ACTIONS(7305), - [anon_sym_LT_LT_EQ] = ACTIONS(7305), - [anon_sym_GT_GT_EQ] = ACTIONS(7305), - [anon_sym_AMP_EQ] = ACTIONS(7305), - [anon_sym_CARET_EQ] = ACTIONS(7305), - [anon_sym_PIPE_EQ] = ACTIONS(7305), - [anon_sym_and_eq] = ACTIONS(7305), - [anon_sym_or_eq] = ACTIONS(7305), - [anon_sym_xor_eq] = ACTIONS(7305), - [anon_sym_LT_EQ_GT] = ACTIONS(7305), - [anon_sym_or] = ACTIONS(7303), - [anon_sym_and] = ACTIONS(7303), - [anon_sym_bitor] = ACTIONS(7305), - [anon_sym_xor] = ACTIONS(7303), - [anon_sym_bitand] = ACTIONS(7305), - [anon_sym_not_eq] = ACTIONS(7305), - [anon_sym_DASH_DASH] = ACTIONS(7305), - [anon_sym_PLUS_PLUS] = ACTIONS(7305), - [anon_sym_DOT] = ACTIONS(7303), - [anon_sym_DOT_STAR] = ACTIONS(7305), - [anon_sym_DASH_GT] = ACTIONS(7303), + [STATE(2684)] = { + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6500), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(5936), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7305), - [anon_sym_override] = ACTIONS(7305), - [anon_sym_requires] = ACTIONS(7305), - [anon_sym_DASH_GT_STAR] = ACTIONS(7305), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(2970)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6792), - [anon_sym_COMMA] = ACTIONS(6792), - [anon_sym_RPAREN] = ACTIONS(6792), - [anon_sym_LPAREN2] = ACTIONS(6792), - [anon_sym_DASH] = ACTIONS(6790), - [anon_sym_PLUS] = ACTIONS(6790), - [anon_sym_STAR] = ACTIONS(6790), - [anon_sym_SLASH] = ACTIONS(6790), - [anon_sym_PERCENT] = ACTIONS(6790), - [anon_sym_PIPE_PIPE] = ACTIONS(6792), - [anon_sym_AMP_AMP] = ACTIONS(6792), - [anon_sym_PIPE] = ACTIONS(6790), - [anon_sym_CARET] = ACTIONS(6790), - [anon_sym_AMP] = ACTIONS(6790), - [anon_sym_EQ_EQ] = ACTIONS(6792), - [anon_sym_BANG_EQ] = ACTIONS(6792), - [anon_sym_GT] = ACTIONS(6790), - [anon_sym_GT_EQ] = ACTIONS(6792), - [anon_sym_LT_EQ] = ACTIONS(6790), - [anon_sym_LT] = ACTIONS(6790), - [anon_sym_LT_LT] = ACTIONS(6790), - [anon_sym_GT_GT] = ACTIONS(6790), - [anon_sym___extension__] = ACTIONS(6792), - [anon_sym_LBRACE] = ACTIONS(6792), - [anon_sym_LBRACK] = ACTIONS(6792), - [anon_sym_EQ] = ACTIONS(6790), - [anon_sym_const] = ACTIONS(6790), - [anon_sym_constexpr] = ACTIONS(6792), - [anon_sym_volatile] = ACTIONS(6792), - [anon_sym_restrict] = ACTIONS(6792), - [anon_sym___restrict__] = ACTIONS(6792), - [anon_sym__Atomic] = ACTIONS(6792), - [anon_sym__Noreturn] = ACTIONS(6792), - [anon_sym_noreturn] = ACTIONS(6792), - [anon_sym__Nonnull] = ACTIONS(6792), - [anon_sym_mutable] = ACTIONS(6792), - [anon_sym_constinit] = ACTIONS(6792), - [anon_sym_consteval] = ACTIONS(6792), - [anon_sym_alignas] = ACTIONS(6792), - [anon_sym__Alignas] = ACTIONS(6792), - [anon_sym_QMARK] = ACTIONS(6792), - [anon_sym_STAR_EQ] = ACTIONS(6792), - [anon_sym_SLASH_EQ] = ACTIONS(6792), - [anon_sym_PERCENT_EQ] = ACTIONS(6792), - [anon_sym_PLUS_EQ] = ACTIONS(6792), - [anon_sym_DASH_EQ] = ACTIONS(6792), - [anon_sym_LT_LT_EQ] = ACTIONS(6792), - [anon_sym_GT_GT_EQ] = ACTIONS(6792), - [anon_sym_AMP_EQ] = ACTIONS(6792), - [anon_sym_CARET_EQ] = ACTIONS(6792), - [anon_sym_PIPE_EQ] = ACTIONS(6792), - [anon_sym_and_eq] = ACTIONS(6792), - [anon_sym_or_eq] = ACTIONS(6792), - [anon_sym_xor_eq] = ACTIONS(6792), - [anon_sym_LT_EQ_GT] = ACTIONS(6792), - [anon_sym_or] = ACTIONS(6790), - [anon_sym_and] = ACTIONS(6790), - [anon_sym_bitor] = ACTIONS(6792), - [anon_sym_xor] = ACTIONS(6790), - [anon_sym_bitand] = ACTIONS(6792), - [anon_sym_not_eq] = ACTIONS(6792), - [anon_sym_DASH_DASH] = ACTIONS(6792), - [anon_sym_PLUS_PLUS] = ACTIONS(6792), - [anon_sym_DOT] = ACTIONS(6790), - [anon_sym_DOT_STAR] = ACTIONS(6792), - [anon_sym_DASH_GT] = ACTIONS(6790), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6792), - [anon_sym_override] = ACTIONS(6792), - [anon_sym_requires] = ACTIONS(6792), - [anon_sym_DASH_GT_STAR] = ACTIONS(6792), + [STATE(2685)] = { + [sym_identifier] = ACTIONS(3163), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [anon_sym_COMMA] = ACTIONS(3488), + [aux_sym_preproc_if_token1] = ACTIONS(3163), + [aux_sym_preproc_if_token2] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), + [aux_sym_preproc_else_token1] = ACTIONS(3163), + [aux_sym_preproc_elif_token1] = ACTIONS(3163), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3163), + [sym_preproc_directive] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3488), + [anon_sym___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_extern] = ACTIONS(3163), + [anon_sym___attribute__] = ACTIONS(8598), + [anon_sym___attribute] = ACTIONS(8598), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3163), + [anon_sym___based] = ACTIONS(3163), + [anon_sym_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym___inline] = ACTIONS(3163), + [anon_sym___inline__] = ACTIONS(3163), + [anon_sym___forceinline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym___thread] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym___restrict__] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym__Noreturn] = ACTIONS(3163), + [anon_sym_noreturn] = ACTIONS(3163), + [anon_sym__Nonnull] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym__Alignas] = ACTIONS(3163), + [sym_primitive_type] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_typename] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_private] = ACTIONS(3163), + [anon_sym_template] = ACTIONS(3163), + [anon_sym_operator] = ACTIONS(3163), + [anon_sym_friend] = ACTIONS(3163), + [anon_sym_public] = ACTIONS(3163), + [anon_sym_protected] = ACTIONS(3163), + [anon_sym_static_assert] = ACTIONS(3163), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), }, - [STATE(2971)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7381), - [anon_sym_COMMA] = ACTIONS(7381), - [anon_sym_RPAREN] = ACTIONS(7381), - [anon_sym_LPAREN2] = ACTIONS(7381), - [anon_sym_DASH] = ACTIONS(7379), - [anon_sym_PLUS] = ACTIONS(7379), - [anon_sym_STAR] = ACTIONS(7379), - [anon_sym_SLASH] = ACTIONS(7379), - [anon_sym_PERCENT] = ACTIONS(7379), - [anon_sym_PIPE_PIPE] = ACTIONS(7381), - [anon_sym_AMP_AMP] = ACTIONS(7381), - [anon_sym_PIPE] = ACTIONS(7379), - [anon_sym_CARET] = ACTIONS(7379), - [anon_sym_AMP] = ACTIONS(7379), - [anon_sym_EQ_EQ] = ACTIONS(7381), - [anon_sym_BANG_EQ] = ACTIONS(7381), - [anon_sym_GT] = ACTIONS(7379), - [anon_sym_GT_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7379), - [anon_sym_LT] = ACTIONS(7379), - [anon_sym_LT_LT] = ACTIONS(7379), - [anon_sym_GT_GT] = ACTIONS(7379), - [anon_sym___extension__] = ACTIONS(7381), - [anon_sym_LBRACE] = ACTIONS(7381), - [anon_sym_LBRACK] = ACTIONS(7381), - [anon_sym_EQ] = ACTIONS(7379), - [anon_sym_const] = ACTIONS(7379), - [anon_sym_constexpr] = ACTIONS(7381), - [anon_sym_volatile] = ACTIONS(7381), - [anon_sym_restrict] = ACTIONS(7381), - [anon_sym___restrict__] = ACTIONS(7381), - [anon_sym__Atomic] = ACTIONS(7381), - [anon_sym__Noreturn] = ACTIONS(7381), - [anon_sym_noreturn] = ACTIONS(7381), - [anon_sym__Nonnull] = ACTIONS(7381), - [anon_sym_mutable] = ACTIONS(7381), - [anon_sym_constinit] = ACTIONS(7381), - [anon_sym_consteval] = ACTIONS(7381), - [anon_sym_alignas] = ACTIONS(7381), - [anon_sym__Alignas] = ACTIONS(7381), - [anon_sym_QMARK] = ACTIONS(7381), - [anon_sym_STAR_EQ] = ACTIONS(7381), - [anon_sym_SLASH_EQ] = ACTIONS(7381), - [anon_sym_PERCENT_EQ] = ACTIONS(7381), - [anon_sym_PLUS_EQ] = ACTIONS(7381), - [anon_sym_DASH_EQ] = ACTIONS(7381), - [anon_sym_LT_LT_EQ] = ACTIONS(7381), - [anon_sym_GT_GT_EQ] = ACTIONS(7381), - [anon_sym_AMP_EQ] = ACTIONS(7381), - [anon_sym_CARET_EQ] = ACTIONS(7381), - [anon_sym_PIPE_EQ] = ACTIONS(7381), - [anon_sym_and_eq] = ACTIONS(7381), - [anon_sym_or_eq] = ACTIONS(7381), - [anon_sym_xor_eq] = ACTIONS(7381), - [anon_sym_LT_EQ_GT] = ACTIONS(7381), - [anon_sym_or] = ACTIONS(7379), - [anon_sym_and] = ACTIONS(7379), - [anon_sym_bitor] = ACTIONS(7381), - [anon_sym_xor] = ACTIONS(7379), - [anon_sym_bitand] = ACTIONS(7381), - [anon_sym_not_eq] = ACTIONS(7381), - [anon_sym_DASH_DASH] = ACTIONS(7381), - [anon_sym_PLUS_PLUS] = ACTIONS(7381), - [anon_sym_DOT] = ACTIONS(7379), - [anon_sym_DOT_STAR] = ACTIONS(7381), - [anon_sym_DASH_GT] = ACTIONS(7379), + [STATE(2686)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), + [anon_sym_COMMA] = ACTIONS(7201), + [anon_sym_LPAREN2] = ACTIONS(7201), + [anon_sym_DASH] = ACTIONS(7199), + [anon_sym_PLUS] = ACTIONS(7199), + [anon_sym_STAR] = ACTIONS(7199), + [anon_sym_SLASH] = ACTIONS(7199), + [anon_sym_PERCENT] = ACTIONS(7199), + [anon_sym_PIPE_PIPE] = ACTIONS(7201), + [anon_sym_AMP_AMP] = ACTIONS(7201), + [anon_sym_PIPE] = ACTIONS(7199), + [anon_sym_CARET] = ACTIONS(7199), + [anon_sym_AMP] = ACTIONS(7199), + [anon_sym_EQ_EQ] = ACTIONS(7201), + [anon_sym_BANG_EQ] = ACTIONS(7201), + [anon_sym_GT] = ACTIONS(7199), + [anon_sym_GT_EQ] = ACTIONS(7201), + [anon_sym_LT_EQ] = ACTIONS(7199), + [anon_sym_LT] = ACTIONS(7199), + [anon_sym_LT_LT] = ACTIONS(7199), + [anon_sym_GT_GT] = ACTIONS(7199), + [anon_sym___extension__] = ACTIONS(7201), + [sym_ms_restrict_modifier] = ACTIONS(7199), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7201), + [sym_ms_signed_ptr_modifier] = ACTIONS(7201), + [anon_sym__unaligned] = ACTIONS(7201), + [anon_sym___unaligned] = ACTIONS(7201), + [anon_sym_LBRACK] = ACTIONS(7201), + [anon_sym_RBRACK] = ACTIONS(7201), + [anon_sym_EQ] = ACTIONS(7199), + [anon_sym_const] = ACTIONS(7199), + [anon_sym_constexpr] = ACTIONS(7201), + [anon_sym_volatile] = ACTIONS(7201), + [anon_sym_restrict] = ACTIONS(7201), + [anon_sym___restrict__] = ACTIONS(7201), + [anon_sym__Atomic] = ACTIONS(7201), + [anon_sym__Noreturn] = ACTIONS(7201), + [anon_sym_noreturn] = ACTIONS(7201), + [anon_sym__Nonnull] = ACTIONS(7201), + [anon_sym_mutable] = ACTIONS(7201), + [anon_sym_constinit] = ACTIONS(7201), + [anon_sym_consteval] = ACTIONS(7201), + [anon_sym_alignas] = ACTIONS(7201), + [anon_sym__Alignas] = ACTIONS(7201), + [anon_sym_QMARK] = ACTIONS(7201), + [anon_sym_STAR_EQ] = ACTIONS(7201), + [anon_sym_SLASH_EQ] = ACTIONS(7201), + [anon_sym_PERCENT_EQ] = ACTIONS(7201), + [anon_sym_PLUS_EQ] = ACTIONS(7201), + [anon_sym_DASH_EQ] = ACTIONS(7201), + [anon_sym_LT_LT_EQ] = ACTIONS(7201), + [anon_sym_GT_GT_EQ] = ACTIONS(7201), + [anon_sym_AMP_EQ] = ACTIONS(7201), + [anon_sym_CARET_EQ] = ACTIONS(7201), + [anon_sym_PIPE_EQ] = ACTIONS(7201), + [anon_sym_and_eq] = ACTIONS(7201), + [anon_sym_or_eq] = ACTIONS(7201), + [anon_sym_xor_eq] = ACTIONS(7201), + [anon_sym_LT_EQ_GT] = ACTIONS(7201), + [anon_sym_or] = ACTIONS(7199), + [anon_sym_and] = ACTIONS(7199), + [anon_sym_bitor] = ACTIONS(7201), + [anon_sym_xor] = ACTIONS(7199), + [anon_sym_bitand] = ACTIONS(7201), + [anon_sym_not_eq] = ACTIONS(7201), + [anon_sym_DASH_DASH] = ACTIONS(7201), + [anon_sym_PLUS_PLUS] = ACTIONS(7201), + [anon_sym_DOT] = ACTIONS(7199), + [anon_sym_DOT_STAR] = ACTIONS(7201), + [anon_sym_DASH_GT] = ACTIONS(7201), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7381), - [anon_sym_override] = ACTIONS(7381), - [anon_sym_requires] = ACTIONS(7381), - [anon_sym_DASH_GT_STAR] = ACTIONS(7381), - }, - [STATE(2972)] = { - [sym_template_argument_list] = STATE(3601), - [aux_sym_sized_type_specifier_repeat1] = STATE(3152), - [sym_identifier] = ACTIONS(7017), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7019), - [anon_sym_COMMA] = ACTIONS(7019), - [aux_sym_preproc_if_token2] = ACTIONS(7019), - [aux_sym_preproc_else_token1] = ACTIONS(7019), - [aux_sym_preproc_elif_token1] = ACTIONS(7017), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7019), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7019), - [anon_sym_LPAREN2] = ACTIONS(7019), - [anon_sym_DASH] = ACTIONS(7017), - [anon_sym_PLUS] = ACTIONS(7017), - [anon_sym_STAR] = ACTIONS(7019), - [anon_sym_SLASH] = ACTIONS(7017), - [anon_sym_PERCENT] = ACTIONS(7019), - [anon_sym_PIPE_PIPE] = ACTIONS(7019), - [anon_sym_AMP_AMP] = ACTIONS(7019), - [anon_sym_PIPE] = ACTIONS(7017), - [anon_sym_CARET] = ACTIONS(7019), - [anon_sym_AMP] = ACTIONS(7017), - [anon_sym_EQ_EQ] = ACTIONS(7019), - [anon_sym_BANG_EQ] = ACTIONS(7019), - [anon_sym_GT] = ACTIONS(7017), - [anon_sym_GT_EQ] = ACTIONS(7019), - [anon_sym_LT_EQ] = ACTIONS(7017), - [anon_sym_LT] = ACTIONS(7017), - [anon_sym_LT_LT] = ACTIONS(7019), - [anon_sym_GT_GT] = ACTIONS(7019), - [anon_sym___extension__] = ACTIONS(7017), - [anon_sym___attribute__] = ACTIONS(7017), - [anon_sym___attribute] = ACTIONS(7017), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(7019), - [anon_sym_signed] = ACTIONS(6443), - [anon_sym_unsigned] = ACTIONS(6443), - [anon_sym_long] = ACTIONS(6443), - [anon_sym_short] = ACTIONS(6443), - [anon_sym_LBRACK] = ACTIONS(7019), - [anon_sym_RBRACK] = ACTIONS(7019), - [anon_sym_const] = ACTIONS(7017), - [anon_sym_constexpr] = ACTIONS(7017), - [anon_sym_volatile] = ACTIONS(7017), - [anon_sym_restrict] = ACTIONS(7017), - [anon_sym___restrict__] = ACTIONS(7017), - [anon_sym__Atomic] = ACTIONS(7017), - [anon_sym__Noreturn] = ACTIONS(7017), - [anon_sym_noreturn] = ACTIONS(7017), - [anon_sym__Nonnull] = ACTIONS(7017), - [anon_sym_mutable] = ACTIONS(7017), - [anon_sym_constinit] = ACTIONS(7017), - [anon_sym_consteval] = ACTIONS(7017), - [anon_sym_alignas] = ACTIONS(7017), - [anon_sym__Alignas] = ACTIONS(7017), - [anon_sym_QMARK] = ACTIONS(7019), - [anon_sym_LT_EQ_GT] = ACTIONS(7019), - [anon_sym_or] = ACTIONS(7017), - [anon_sym_and] = ACTIONS(7017), - [anon_sym_bitor] = ACTIONS(7017), - [anon_sym_xor] = ACTIONS(7017), - [anon_sym_bitand] = ACTIONS(7017), - [anon_sym_not_eq] = ACTIONS(7017), - [anon_sym_DASH_DASH] = ACTIONS(7019), - [anon_sym_PLUS_PLUS] = ACTIONS(7019), - [anon_sym_DOT] = ACTIONS(7017), - [anon_sym_DOT_STAR] = ACTIONS(7019), - [anon_sym_DASH_GT] = ACTIONS(7019), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7017), - [anon_sym_override] = ACTIONS(7017), - [anon_sym_requires] = ACTIONS(7017), - }, - [STATE(2973)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6798), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6798), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6800), - [anon_sym_override] = ACTIONS(6800), - [anon_sym_GT2] = ACTIONS(6800), - [anon_sym_requires] = ACTIONS(6800), + [anon_sym_final] = ACTIONS(7201), + [anon_sym_override] = ACTIONS(7201), + [anon_sym_requires] = ACTIONS(7201), }, - [STATE(2974)] = { - [sym_decltype_auto] = STATE(3047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6798), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(7183), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6798), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8268), - [anon_sym_decltype] = ACTIONS(6644), - [anon_sym_GT2] = ACTIONS(6800), + [STATE(2687)] = { + [sym_identifier] = ACTIONS(7158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7160), + [anon_sym_COMMA] = ACTIONS(7160), + [anon_sym_RPAREN] = ACTIONS(7160), + [aux_sym_preproc_if_token2] = ACTIONS(7160), + [aux_sym_preproc_else_token1] = ACTIONS(7160), + [aux_sym_preproc_elif_token1] = ACTIONS(7158), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7160), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7160), + [anon_sym_LPAREN2] = ACTIONS(7160), + [anon_sym_DASH] = ACTIONS(7158), + [anon_sym_PLUS] = ACTIONS(7158), + [anon_sym_STAR] = ACTIONS(7160), + [anon_sym_SLASH] = ACTIONS(7158), + [anon_sym_PERCENT] = ACTIONS(7160), + [anon_sym_PIPE_PIPE] = ACTIONS(7160), + [anon_sym_AMP_AMP] = ACTIONS(7160), + [anon_sym_PIPE] = ACTIONS(7158), + [anon_sym_CARET] = ACTIONS(7160), + [anon_sym_AMP] = ACTIONS(7158), + [anon_sym_EQ_EQ] = ACTIONS(7160), + [anon_sym_BANG_EQ] = ACTIONS(7160), + [anon_sym_GT] = ACTIONS(7158), + [anon_sym_GT_EQ] = ACTIONS(7160), + [anon_sym_LT_EQ] = ACTIONS(7158), + [anon_sym_LT] = ACTIONS(7158), + [anon_sym_LT_LT] = ACTIONS(7160), + [anon_sym_GT_GT] = ACTIONS(7160), + [anon_sym_SEMI] = ACTIONS(7160), + [anon_sym___extension__] = ACTIONS(7158), + [anon_sym___attribute__] = ACTIONS(7158), + [anon_sym___attribute] = ACTIONS(7158), + [anon_sym_COLON] = ACTIONS(7158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7160), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7160), + [anon_sym_RBRACE] = ACTIONS(7160), + [anon_sym_LBRACK] = ACTIONS(7158), + [anon_sym_const] = ACTIONS(7158), + [anon_sym_constexpr] = ACTIONS(7158), + [anon_sym_volatile] = ACTIONS(7158), + [anon_sym_restrict] = ACTIONS(7158), + [anon_sym___restrict__] = ACTIONS(7158), + [anon_sym__Atomic] = ACTIONS(7158), + [anon_sym__Noreturn] = ACTIONS(7158), + [anon_sym_noreturn] = ACTIONS(7158), + [anon_sym__Nonnull] = ACTIONS(7158), + [anon_sym_mutable] = ACTIONS(7158), + [anon_sym_constinit] = ACTIONS(7158), + [anon_sym_consteval] = ACTIONS(7158), + [anon_sym_alignas] = ACTIONS(7158), + [anon_sym__Alignas] = ACTIONS(7158), + [anon_sym_QMARK] = ACTIONS(7160), + [anon_sym_LT_EQ_GT] = ACTIONS(7160), + [anon_sym_or] = ACTIONS(7158), + [anon_sym_and] = ACTIONS(7158), + [anon_sym_bitor] = ACTIONS(7158), + [anon_sym_xor] = ACTIONS(7158), + [anon_sym_bitand] = ACTIONS(7158), + [anon_sym_not_eq] = ACTIONS(7158), + [anon_sym_DASH_DASH] = ACTIONS(7160), + [anon_sym_PLUS_PLUS] = ACTIONS(7160), + [anon_sym_asm] = ACTIONS(7158), + [anon_sym___asm__] = ACTIONS(7158), + [anon_sym___asm] = ACTIONS(7158), + [anon_sym_DOT] = ACTIONS(7158), + [anon_sym_DOT_STAR] = ACTIONS(7160), + [anon_sym_DASH_GT] = ACTIONS(7160), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7158), + [anon_sym_override] = ACTIONS(7158), + [anon_sym_noexcept] = ACTIONS(7158), + [anon_sym_throw] = ACTIONS(7158), + [anon_sym_requires] = ACTIONS(7158), + [anon_sym_COLON_RBRACK] = ACTIONS(7160), }, - [STATE(2975)] = { - [sym_virtual_specifier] = STATE(3248), - [sym__function_postfix] = STATE(3528), - [sym_requires_clause] = STATE(3528), - [aux_sym__function_postfix_repeat1] = STATE(3248), - [sym_identifier] = ACTIONS(8087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), - [anon_sym_COMMA] = ACTIONS(8089), - [anon_sym_RPAREN] = ACTIONS(8089), - [aux_sym_preproc_if_token2] = ACTIONS(8089), - [aux_sym_preproc_else_token1] = ACTIONS(8089), - [aux_sym_preproc_elif_token1] = ACTIONS(8087), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8089), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8089), - [anon_sym_LPAREN2] = ACTIONS(8089), - [anon_sym_DASH] = ACTIONS(8087), - [anon_sym_PLUS] = ACTIONS(8087), - [anon_sym_STAR] = ACTIONS(8087), - [anon_sym_SLASH] = ACTIONS(8087), - [anon_sym_PERCENT] = ACTIONS(8087), - [anon_sym_PIPE_PIPE] = ACTIONS(8089), - [anon_sym_AMP_AMP] = ACTIONS(8089), - [anon_sym_PIPE] = ACTIONS(8087), - [anon_sym_CARET] = ACTIONS(8087), - [anon_sym_AMP] = ACTIONS(8087), - [anon_sym_EQ_EQ] = ACTIONS(8089), - [anon_sym_BANG_EQ] = ACTIONS(8089), - [anon_sym_GT] = ACTIONS(8087), - [anon_sym_GT_EQ] = ACTIONS(8089), - [anon_sym_LT_EQ] = ACTIONS(8087), - [anon_sym_LT] = ACTIONS(8087), - [anon_sym_LT_LT] = ACTIONS(8087), - [anon_sym_GT_GT] = ACTIONS(8087), - [anon_sym_SEMI] = ACTIONS(8089), - [anon_sym___attribute__] = ACTIONS(8087), - [anon_sym___attribute] = ACTIONS(8087), - [anon_sym_COLON] = ACTIONS(8087), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8089), - [anon_sym_RBRACE] = ACTIONS(8089), - [anon_sym_LBRACK] = ACTIONS(8089), - [anon_sym_EQ] = ACTIONS(8087), - [anon_sym_QMARK] = ACTIONS(8089), - [anon_sym_STAR_EQ] = ACTIONS(8089), - [anon_sym_SLASH_EQ] = ACTIONS(8089), - [anon_sym_PERCENT_EQ] = ACTIONS(8089), - [anon_sym_PLUS_EQ] = ACTIONS(8089), - [anon_sym_DASH_EQ] = ACTIONS(8089), - [anon_sym_LT_LT_EQ] = ACTIONS(8089), - [anon_sym_GT_GT_EQ] = ACTIONS(8089), - [anon_sym_AMP_EQ] = ACTIONS(8089), - [anon_sym_CARET_EQ] = ACTIONS(8089), - [anon_sym_PIPE_EQ] = ACTIONS(8089), - [anon_sym_and_eq] = ACTIONS(8087), - [anon_sym_or_eq] = ACTIONS(8087), - [anon_sym_xor_eq] = ACTIONS(8087), - [anon_sym_LT_EQ_GT] = ACTIONS(8089), - [anon_sym_or] = ACTIONS(8087), - [anon_sym_and] = ACTIONS(8087), - [anon_sym_bitor] = ACTIONS(8087), - [anon_sym_xor] = ACTIONS(8087), - [anon_sym_bitand] = ACTIONS(8087), - [anon_sym_not_eq] = ACTIONS(8087), - [anon_sym_DASH_DASH] = ACTIONS(8089), - [anon_sym_PLUS_PLUS] = ACTIONS(8089), - [anon_sym_DOT] = ACTIONS(8087), - [anon_sym_DOT_STAR] = ACTIONS(8089), - [anon_sym_DASH_GT] = ACTIONS(8089), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8102), - [anon_sym_override] = ACTIONS(8102), - [anon_sym_requires] = ACTIONS(8105), - [anon_sym_COLON_RBRACK] = ACTIONS(8089), + [STATE(2688)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4321), + [sym_ms_pointer_modifier] = STATE(3970), + [sym__abstract_declarator] = STATE(6494), + [sym_abstract_parenthesized_declarator] = STATE(6708), + [sym_abstract_pointer_declarator] = STATE(6708), + [sym_abstract_function_declarator] = STATE(6708), + [sym_abstract_array_declarator] = STATE(6708), + [sym_type_qualifier] = STATE(3718), + [sym_alignas_qualifier] = STATE(3945), + [sym_parameter_list] = STATE(2277), + [sym_abstract_reference_declarator] = STATE(6708), + [sym__function_declarator_seq] = STATE(6709), + [aux_sym__type_definition_type_repeat1] = STATE(3718), + [aux_sym_pointer_declarator_repeat1] = STATE(3970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(8600), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(8602), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6823), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(8604), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6823), + [anon_sym_AMP] = ACTIONS(8606), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6821), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6823), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(8608), + [sym_ms_restrict_modifier] = ACTIONS(8610), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8612), + [sym_ms_signed_ptr_modifier] = ACTIONS(8612), + [anon_sym__unaligned] = ACTIONS(8614), + [anon_sym___unaligned] = ACTIONS(8614), + [anon_sym_LBRACK] = ACTIONS(8616), + [anon_sym_const] = ACTIONS(8618), + [anon_sym_constexpr] = ACTIONS(8608), + [anon_sym_volatile] = ACTIONS(8608), + [anon_sym_restrict] = ACTIONS(8608), + [anon_sym___restrict__] = ACTIONS(8608), + [anon_sym__Atomic] = ACTIONS(8608), + [anon_sym__Noreturn] = ACTIONS(8608), + [anon_sym_noreturn] = ACTIONS(8608), + [anon_sym__Nonnull] = ACTIONS(8608), + [anon_sym_mutable] = ACTIONS(8608), + [anon_sym_constinit] = ACTIONS(8608), + [anon_sym_consteval] = ACTIONS(8608), + [anon_sym_alignas] = ACTIONS(8620), + [anon_sym__Alignas] = ACTIONS(8620), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6823), + [anon_sym_and] = ACTIONS(6823), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6823), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6823), + [anon_sym_override] = ACTIONS(6823), + [anon_sym_GT2] = ACTIONS(6823), + [anon_sym_requires] = ACTIONS(6823), }, - [STATE(2976)] = { - [sym_identifier] = ACTIONS(8665), - [anon_sym_LPAREN2] = ACTIONS(8667), - [anon_sym_TILDE] = ACTIONS(8667), - [anon_sym_STAR] = ACTIONS(8667), - [anon_sym_PIPE_PIPE] = ACTIONS(8667), - [anon_sym_AMP_AMP] = ACTIONS(8667), - [anon_sym_AMP] = ACTIONS(8665), - [anon_sym___extension__] = ACTIONS(8665), - [anon_sym_virtual] = ACTIONS(8665), - [anon_sym_extern] = ACTIONS(8665), - [anon_sym___attribute__] = ACTIONS(8665), - [anon_sym___attribute] = ACTIONS(8665), - [anon_sym_using] = ACTIONS(8665), - [anon_sym_COLON_COLON] = ACTIONS(8667), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8667), - [anon_sym___declspec] = ACTIONS(8665), - [anon_sym___based] = ACTIONS(8665), - [anon_sym___cdecl] = ACTIONS(8665), - [anon_sym___clrcall] = ACTIONS(8665), - [anon_sym___stdcall] = ACTIONS(8665), - [anon_sym___fastcall] = ACTIONS(8665), - [anon_sym___thiscall] = ACTIONS(8665), - [anon_sym___vectorcall] = ACTIONS(8665), - [anon_sym_LBRACE] = ACTIONS(8667), - [anon_sym_signed] = ACTIONS(8665), - [anon_sym_unsigned] = ACTIONS(8665), - [anon_sym_long] = ACTIONS(8665), - [anon_sym_short] = ACTIONS(8665), - [anon_sym_LBRACK] = ACTIONS(8665), - [anon_sym_static] = ACTIONS(8665), - [anon_sym_register] = ACTIONS(8665), - [anon_sym_inline] = ACTIONS(8665), - [anon_sym___inline] = ACTIONS(8665), - [anon_sym___inline__] = ACTIONS(8665), - [anon_sym___forceinline] = ACTIONS(8665), - [anon_sym_thread_local] = ACTIONS(8665), - [anon_sym___thread] = ACTIONS(8665), - [anon_sym_const] = ACTIONS(8665), - [anon_sym_constexpr] = ACTIONS(8665), - [anon_sym_volatile] = ACTIONS(8665), - [anon_sym_restrict] = ACTIONS(8665), - [anon_sym___restrict__] = ACTIONS(8665), - [anon_sym__Atomic] = ACTIONS(8665), - [anon_sym__Noreturn] = ACTIONS(8665), - [anon_sym_noreturn] = ACTIONS(8665), - [anon_sym__Nonnull] = ACTIONS(8665), - [anon_sym_mutable] = ACTIONS(8665), - [anon_sym_constinit] = ACTIONS(8665), - [anon_sym_consteval] = ACTIONS(8665), - [anon_sym_alignas] = ACTIONS(8665), - [anon_sym__Alignas] = ACTIONS(8665), - [sym_primitive_type] = ACTIONS(8665), - [anon_sym_enum] = ACTIONS(8665), - [anon_sym_class] = ACTIONS(8665), - [anon_sym_struct] = ACTIONS(8665), - [anon_sym_union] = ACTIONS(8665), - [anon_sym_or] = ACTIONS(8665), - [anon_sym_and] = ACTIONS(8665), - [anon_sym_typename] = ACTIONS(8665), - [anon_sym_DASH_GT] = ACTIONS(8667), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8665), - [anon_sym_decltype] = ACTIONS(8665), - [anon_sym_explicit] = ACTIONS(8665), - [anon_sym_template] = ACTIONS(8665), - [anon_sym_operator] = ACTIONS(8665), - [anon_sym_friend] = ACTIONS(8665), - [anon_sym_noexcept] = ACTIONS(8665), - [anon_sym_throw] = ACTIONS(8665), - [anon_sym_concept] = ACTIONS(8665), - [anon_sym_LBRACK_COLON] = ACTIONS(8667), + [STATE(2689)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4321), + [sym_ms_pointer_modifier] = STATE(2688), + [sym__abstract_declarator] = STATE(6490), + [sym_abstract_parenthesized_declarator] = STATE(6708), + [sym_abstract_pointer_declarator] = STATE(6708), + [sym_abstract_function_declarator] = STATE(6708), + [sym_abstract_array_declarator] = STATE(6708), + [sym_type_qualifier] = STATE(3716), + [sym_alignas_qualifier] = STATE(3945), + [sym_parameter_list] = STATE(2277), + [sym_abstract_reference_declarator] = STATE(6708), + [sym__function_declarator_seq] = STATE(6709), + [aux_sym__type_definition_type_repeat1] = STATE(3716), + [aux_sym_pointer_declarator_repeat1] = STATE(2688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(8600), + [anon_sym_DASH] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6861), + [anon_sym_STAR] = ACTIONS(8602), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6859), + [anon_sym_PIPE_PIPE] = ACTIONS(6859), + [anon_sym_AMP_AMP] = ACTIONS(8604), + [anon_sym_PIPE] = ACTIONS(6861), + [anon_sym_CARET] = ACTIONS(6859), + [anon_sym_AMP] = ACTIONS(8606), + [anon_sym_EQ_EQ] = ACTIONS(6859), + [anon_sym_BANG_EQ] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6861), + [anon_sym_GT_EQ] = ACTIONS(6861), + [anon_sym_LT_EQ] = ACTIONS(6861), + [anon_sym_LT] = ACTIONS(6861), + [anon_sym_LT_LT] = ACTIONS(6859), + [anon_sym_GT_GT] = ACTIONS(6861), + [anon_sym___extension__] = ACTIONS(8608), + [sym_ms_restrict_modifier] = ACTIONS(8610), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8612), + [sym_ms_signed_ptr_modifier] = ACTIONS(8612), + [anon_sym__unaligned] = ACTIONS(8614), + [anon_sym___unaligned] = ACTIONS(8614), + [anon_sym_LBRACK] = ACTIONS(8616), + [anon_sym_const] = ACTIONS(8618), + [anon_sym_constexpr] = ACTIONS(8608), + [anon_sym_volatile] = ACTIONS(8608), + [anon_sym_restrict] = ACTIONS(8608), + [anon_sym___restrict__] = ACTIONS(8608), + [anon_sym__Atomic] = ACTIONS(8608), + [anon_sym__Noreturn] = ACTIONS(8608), + [anon_sym_noreturn] = ACTIONS(8608), + [anon_sym__Nonnull] = ACTIONS(8608), + [anon_sym_mutable] = ACTIONS(8608), + [anon_sym_constinit] = ACTIONS(8608), + [anon_sym_consteval] = ACTIONS(8608), + [anon_sym_alignas] = ACTIONS(8620), + [anon_sym__Alignas] = ACTIONS(8620), + [anon_sym_QMARK] = ACTIONS(6859), + [anon_sym_LT_EQ_GT] = ACTIONS(6859), + [anon_sym_or] = ACTIONS(6859), + [anon_sym_and] = ACTIONS(6859), + [anon_sym_bitor] = ACTIONS(6859), + [anon_sym_xor] = ACTIONS(6859), + [anon_sym_bitand] = ACTIONS(6859), + [anon_sym_not_eq] = ACTIONS(6859), + [anon_sym_DASH_DASH] = ACTIONS(6859), + [anon_sym_PLUS_PLUS] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6861), + [anon_sym_DOT_STAR] = ACTIONS(6859), + [anon_sym_DASH_GT] = ACTIONS(6859), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6859), + [anon_sym_override] = ACTIONS(6859), + [anon_sym_GT2] = ACTIONS(6859), + [anon_sym_requires] = ACTIONS(6859), }, - [STATE(2977)] = { - [sym_attribute_specifier] = STATE(4079), - [sym_attribute_declaration] = STATE(4488), - [sym_gnu_asm_expression] = STATE(8997), - [sym_virtual_specifier] = STATE(4611), - [sym__function_attributes_end] = STATE(4245), - [sym__function_postfix] = STATE(4983), - [sym_trailing_return_type] = STATE(4310), - [sym_requires_clause] = STATE(4983), - [aux_sym_type_definition_repeat1] = STATE(4079), - [aux_sym_attributed_declarator_repeat1] = STATE(4488), - [aux_sym__function_postfix_repeat1] = STATE(4611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6326), - [anon_sym___attribute] = ACTIONS(6328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6330), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_RBRACK] = ACTIONS(7544), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7544), - [anon_sym_or_eq] = ACTIONS(7544), - [anon_sym_xor_eq] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7966), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6349), - [anon_sym_override] = ACTIONS(6349), - [anon_sym_requires] = ACTIONS(6351), + [STATE(2690)] = { + [sym_attribute_specifier] = STATE(3544), + [sym_enumerator_list] = STATE(3008), + [sym__enum_base_clause] = STATE(2929), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8002), + [anon_sym_COMMA] = ACTIONS(8002), + [anon_sym_RPAREN] = ACTIONS(8002), + [anon_sym_LPAREN2] = ACTIONS(8002), + [anon_sym_DASH] = ACTIONS(8000), + [anon_sym_PLUS] = ACTIONS(8000), + [anon_sym_STAR] = ACTIONS(8000), + [anon_sym_SLASH] = ACTIONS(8000), + [anon_sym_PERCENT] = ACTIONS(8000), + [anon_sym_PIPE_PIPE] = ACTIONS(8002), + [anon_sym_AMP_AMP] = ACTIONS(8002), + [anon_sym_PIPE] = ACTIONS(8000), + [anon_sym_CARET] = ACTIONS(8000), + [anon_sym_AMP] = ACTIONS(8000), + [anon_sym_EQ_EQ] = ACTIONS(8002), + [anon_sym_BANG_EQ] = ACTIONS(8002), + [anon_sym_GT] = ACTIONS(8000), + [anon_sym_GT_EQ] = ACTIONS(8002), + [anon_sym_LT_EQ] = ACTIONS(8000), + [anon_sym_LT] = ACTIONS(8000), + [anon_sym_LT_LT] = ACTIONS(8000), + [anon_sym_GT_GT] = ACTIONS(8000), + [anon_sym___extension__] = ACTIONS(8002), + [anon_sym___attribute__] = ACTIONS(8499), + [anon_sym___attribute] = ACTIONS(8501), + [anon_sym_COLON] = ACTIONS(8622), + [anon_sym_LBRACE] = ACTIONS(8624), + [anon_sym_LBRACK] = ACTIONS(8002), + [anon_sym_EQ] = ACTIONS(8000), + [anon_sym_const] = ACTIONS(8000), + [anon_sym_constexpr] = ACTIONS(8002), + [anon_sym_volatile] = ACTIONS(8002), + [anon_sym_restrict] = ACTIONS(8002), + [anon_sym___restrict__] = ACTIONS(8002), + [anon_sym__Atomic] = ACTIONS(8002), + [anon_sym__Noreturn] = ACTIONS(8002), + [anon_sym_noreturn] = ACTIONS(8002), + [anon_sym__Nonnull] = ACTIONS(8002), + [anon_sym_mutable] = ACTIONS(8002), + [anon_sym_constinit] = ACTIONS(8002), + [anon_sym_consteval] = ACTIONS(8002), + [anon_sym_alignas] = ACTIONS(8002), + [anon_sym__Alignas] = ACTIONS(8002), + [anon_sym_QMARK] = ACTIONS(8002), + [anon_sym_STAR_EQ] = ACTIONS(8002), + [anon_sym_SLASH_EQ] = ACTIONS(8002), + [anon_sym_PERCENT_EQ] = ACTIONS(8002), + [anon_sym_PLUS_EQ] = ACTIONS(8002), + [anon_sym_DASH_EQ] = ACTIONS(8002), + [anon_sym_LT_LT_EQ] = ACTIONS(8002), + [anon_sym_GT_GT_EQ] = ACTIONS(8002), + [anon_sym_AMP_EQ] = ACTIONS(8002), + [anon_sym_CARET_EQ] = ACTIONS(8002), + [anon_sym_PIPE_EQ] = ACTIONS(8002), + [anon_sym_LT_EQ_GT] = ACTIONS(8002), + [anon_sym_or] = ACTIONS(8002), + [anon_sym_and] = ACTIONS(8002), + [anon_sym_bitor] = ACTIONS(8002), + [anon_sym_xor] = ACTIONS(8002), + [anon_sym_bitand] = ACTIONS(8002), + [anon_sym_not_eq] = ACTIONS(8002), + [anon_sym_DASH_DASH] = ACTIONS(8002), + [anon_sym_PLUS_PLUS] = ACTIONS(8002), + [anon_sym_DOT] = ACTIONS(8000), + [anon_sym_DOT_STAR] = ACTIONS(8002), + [anon_sym_DASH_GT] = ACTIONS(8000), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8002), + [anon_sym_override] = ACTIONS(8002), + [anon_sym_requires] = ACTIONS(8002), + [anon_sym_DASH_GT_STAR] = ACTIONS(8002), }, - [STATE(2978)] = { - [sym_template_argument_list] = STATE(3043), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6205), - [anon_sym_COMMA] = ACTIONS(6205), - [anon_sym_LPAREN2] = ACTIONS(6205), - [anon_sym_DASH] = ACTIONS(6212), - [anon_sym_PLUS] = ACTIONS(6212), - [anon_sym_STAR] = ACTIONS(6212), - [anon_sym_SLASH] = ACTIONS(6212), - [anon_sym_PERCENT] = ACTIONS(6212), - [anon_sym_PIPE_PIPE] = ACTIONS(6205), - [anon_sym_AMP_AMP] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(6212), - [anon_sym_CARET] = ACTIONS(6212), - [anon_sym_AMP] = ACTIONS(6212), - [anon_sym_EQ_EQ] = ACTIONS(6205), - [anon_sym_BANG_EQ] = ACTIONS(6205), - [anon_sym_GT] = ACTIONS(6212), - [anon_sym_GT_EQ] = ACTIONS(6205), - [anon_sym_LT_EQ] = ACTIONS(6212), - [anon_sym_LT] = ACTIONS(8537), - [anon_sym_LT_LT] = ACTIONS(6212), - [anon_sym_GT_GT] = ACTIONS(6212), - [anon_sym___extension__] = ACTIONS(6208), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(6208), - [anon_sym_LBRACK] = ACTIONS(6205), - [anon_sym_RBRACK] = ACTIONS(6205), - [anon_sym_EQ] = ACTIONS(6210), - [anon_sym_const] = ACTIONS(6201), - [anon_sym_constexpr] = ACTIONS(6208), - [anon_sym_volatile] = ACTIONS(6208), - [anon_sym_restrict] = ACTIONS(6208), - [anon_sym___restrict__] = ACTIONS(6208), - [anon_sym__Atomic] = ACTIONS(6208), - [anon_sym__Noreturn] = ACTIONS(6208), - [anon_sym_noreturn] = ACTIONS(6208), - [anon_sym__Nonnull] = ACTIONS(6208), - [anon_sym_mutable] = ACTIONS(6208), - [anon_sym_constinit] = ACTIONS(6208), - [anon_sym_consteval] = ACTIONS(6208), - [anon_sym_alignas] = ACTIONS(6208), - [anon_sym__Alignas] = ACTIONS(6208), - [anon_sym_QMARK] = ACTIONS(6205), - [anon_sym_STAR_EQ] = ACTIONS(6203), - [anon_sym_SLASH_EQ] = ACTIONS(6203), - [anon_sym_PERCENT_EQ] = ACTIONS(6203), - [anon_sym_PLUS_EQ] = ACTIONS(6203), - [anon_sym_DASH_EQ] = ACTIONS(6203), - [anon_sym_LT_LT_EQ] = ACTIONS(6203), - [anon_sym_GT_GT_EQ] = ACTIONS(6203), - [anon_sym_AMP_EQ] = ACTIONS(6203), - [anon_sym_CARET_EQ] = ACTIONS(6203), - [anon_sym_PIPE_EQ] = ACTIONS(6203), - [anon_sym_and_eq] = ACTIONS(6203), - [anon_sym_or_eq] = ACTIONS(6203), - [anon_sym_xor_eq] = ACTIONS(6203), - [anon_sym_LT_EQ_GT] = ACTIONS(6205), - [anon_sym_or] = ACTIONS(6212), - [anon_sym_and] = ACTIONS(6212), - [anon_sym_bitor] = ACTIONS(6205), - [anon_sym_xor] = ACTIONS(6212), - [anon_sym_bitand] = ACTIONS(6205), - [anon_sym_not_eq] = ACTIONS(6205), - [anon_sym_DASH_DASH] = ACTIONS(6205), - [anon_sym_PLUS_PLUS] = ACTIONS(6205), - [anon_sym_DOT] = ACTIONS(6212), - [anon_sym_DOT_STAR] = ACTIONS(6205), - [anon_sym_DASH_GT] = ACTIONS(6205), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6208), - [anon_sym_decltype] = ACTIONS(6208), + [STATE(2691)] = { + [sym_attribute_specifier] = STATE(2959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7549), + [anon_sym_COMMA] = ACTIONS(7549), + [anon_sym_RPAREN] = ACTIONS(7549), + [anon_sym_LPAREN2] = ACTIONS(7549), + [anon_sym_DASH] = ACTIONS(7547), + [anon_sym_PLUS] = ACTIONS(7547), + [anon_sym_STAR] = ACTIONS(7547), + [anon_sym_SLASH] = ACTIONS(7547), + [anon_sym_PERCENT] = ACTIONS(7547), + [anon_sym_PIPE_PIPE] = ACTIONS(7549), + [anon_sym_AMP_AMP] = ACTIONS(7549), + [anon_sym_PIPE] = ACTIONS(7547), + [anon_sym_CARET] = ACTIONS(7547), + [anon_sym_AMP] = ACTIONS(7547), + [anon_sym_EQ_EQ] = ACTIONS(7549), + [anon_sym_BANG_EQ] = ACTIONS(7549), + [anon_sym_GT] = ACTIONS(7547), + [anon_sym_GT_EQ] = ACTIONS(7549), + [anon_sym_LT_EQ] = ACTIONS(7547), + [anon_sym_LT] = ACTIONS(7547), + [anon_sym_LT_LT] = ACTIONS(7547), + [anon_sym_GT_GT] = ACTIONS(7547), + [anon_sym___extension__] = ACTIONS(7549), + [anon_sym___attribute__] = ACTIONS(8152), + [anon_sym___attribute] = ACTIONS(8154), + [anon_sym_LBRACE] = ACTIONS(7549), + [anon_sym_LBRACK] = ACTIONS(7549), + [anon_sym_EQ] = ACTIONS(7547), + [anon_sym_const] = ACTIONS(7547), + [anon_sym_constexpr] = ACTIONS(7549), + [anon_sym_volatile] = ACTIONS(7549), + [anon_sym_restrict] = ACTIONS(7549), + [anon_sym___restrict__] = ACTIONS(7549), + [anon_sym__Atomic] = ACTIONS(7549), + [anon_sym__Noreturn] = ACTIONS(7549), + [anon_sym_noreturn] = ACTIONS(7549), + [anon_sym__Nonnull] = ACTIONS(7549), + [anon_sym_mutable] = ACTIONS(7549), + [anon_sym_constinit] = ACTIONS(7549), + [anon_sym_consteval] = ACTIONS(7549), + [anon_sym_alignas] = ACTIONS(7549), + [anon_sym__Alignas] = ACTIONS(7549), + [anon_sym_QMARK] = ACTIONS(7549), + [anon_sym_STAR_EQ] = ACTIONS(7549), + [anon_sym_SLASH_EQ] = ACTIONS(7549), + [anon_sym_PERCENT_EQ] = ACTIONS(7549), + [anon_sym_PLUS_EQ] = ACTIONS(7549), + [anon_sym_DASH_EQ] = ACTIONS(7549), + [anon_sym_LT_LT_EQ] = ACTIONS(7549), + [anon_sym_GT_GT_EQ] = ACTIONS(7549), + [anon_sym_AMP_EQ] = ACTIONS(7549), + [anon_sym_CARET_EQ] = ACTIONS(7549), + [anon_sym_PIPE_EQ] = ACTIONS(7549), + [anon_sym_and_eq] = ACTIONS(7549), + [anon_sym_or_eq] = ACTIONS(7549), + [anon_sym_xor_eq] = ACTIONS(7549), + [anon_sym_LT_EQ_GT] = ACTIONS(7549), + [anon_sym_or] = ACTIONS(7547), + [anon_sym_and] = ACTIONS(7547), + [anon_sym_bitor] = ACTIONS(7549), + [anon_sym_xor] = ACTIONS(7547), + [anon_sym_bitand] = ACTIONS(7549), + [anon_sym_not_eq] = ACTIONS(7549), + [anon_sym_DASH_DASH] = ACTIONS(7549), + [anon_sym_PLUS_PLUS] = ACTIONS(7549), + [anon_sym_DOT] = ACTIONS(7547), + [anon_sym_DOT_STAR] = ACTIONS(7549), + [anon_sym_DASH_GT] = ACTIONS(7547), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7549), + [anon_sym_override] = ACTIONS(7549), + [anon_sym_requires] = ACTIONS(7549), + [anon_sym_DASH_GT_STAR] = ACTIONS(7549), }, - [STATE(2979)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7339), - [anon_sym_COMMA] = ACTIONS(7339), - [anon_sym_RPAREN] = ACTIONS(7339), - [anon_sym_LPAREN2] = ACTIONS(7339), - [anon_sym_DASH] = ACTIONS(7337), - [anon_sym_PLUS] = ACTIONS(7337), - [anon_sym_STAR] = ACTIONS(7337), - [anon_sym_SLASH] = ACTIONS(7337), - [anon_sym_PERCENT] = ACTIONS(7337), - [anon_sym_PIPE_PIPE] = ACTIONS(7339), - [anon_sym_AMP_AMP] = ACTIONS(7339), - [anon_sym_PIPE] = ACTIONS(7337), - [anon_sym_CARET] = ACTIONS(7337), - [anon_sym_AMP] = ACTIONS(7337), - [anon_sym_EQ_EQ] = ACTIONS(7339), - [anon_sym_BANG_EQ] = ACTIONS(7339), - [anon_sym_GT] = ACTIONS(7337), - [anon_sym_GT_EQ] = ACTIONS(7339), - [anon_sym_LT_EQ] = ACTIONS(7337), - [anon_sym_LT] = ACTIONS(7337), - [anon_sym_LT_LT] = ACTIONS(7337), - [anon_sym_GT_GT] = ACTIONS(7337), - [anon_sym___extension__] = ACTIONS(7339), - [anon_sym_LBRACE] = ACTIONS(7339), - [anon_sym_LBRACK] = ACTIONS(7339), - [anon_sym_EQ] = ACTIONS(7337), - [anon_sym_const] = ACTIONS(7337), - [anon_sym_constexpr] = ACTIONS(7339), - [anon_sym_volatile] = ACTIONS(7339), - [anon_sym_restrict] = ACTIONS(7339), - [anon_sym___restrict__] = ACTIONS(7339), - [anon_sym__Atomic] = ACTIONS(7339), - [anon_sym__Noreturn] = ACTIONS(7339), - [anon_sym_noreturn] = ACTIONS(7339), - [anon_sym__Nonnull] = ACTIONS(7339), - [anon_sym_mutable] = ACTIONS(7339), - [anon_sym_constinit] = ACTIONS(7339), - [anon_sym_consteval] = ACTIONS(7339), - [anon_sym_alignas] = ACTIONS(7339), - [anon_sym__Alignas] = ACTIONS(7339), - [anon_sym_QMARK] = ACTIONS(7339), - [anon_sym_STAR_EQ] = ACTIONS(7339), - [anon_sym_SLASH_EQ] = ACTIONS(7339), - [anon_sym_PERCENT_EQ] = ACTIONS(7339), - [anon_sym_PLUS_EQ] = ACTIONS(7339), - [anon_sym_DASH_EQ] = ACTIONS(7339), - [anon_sym_LT_LT_EQ] = ACTIONS(7339), - [anon_sym_GT_GT_EQ] = ACTIONS(7339), - [anon_sym_AMP_EQ] = ACTIONS(7339), - [anon_sym_CARET_EQ] = ACTIONS(7339), - [anon_sym_PIPE_EQ] = ACTIONS(7339), - [anon_sym_and_eq] = ACTIONS(7339), - [anon_sym_or_eq] = ACTIONS(7339), - [anon_sym_xor_eq] = ACTIONS(7339), - [anon_sym_LT_EQ_GT] = ACTIONS(7339), - [anon_sym_or] = ACTIONS(7337), - [anon_sym_and] = ACTIONS(7337), - [anon_sym_bitor] = ACTIONS(7339), - [anon_sym_xor] = ACTIONS(7337), - [anon_sym_bitand] = ACTIONS(7339), - [anon_sym_not_eq] = ACTIONS(7339), - [anon_sym_DASH_DASH] = ACTIONS(7339), - [anon_sym_PLUS_PLUS] = ACTIONS(7339), - [anon_sym_DOT] = ACTIONS(7337), - [anon_sym_DOT_STAR] = ACTIONS(7339), - [anon_sym_DASH_GT] = ACTIONS(7337), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7339), - [anon_sym_override] = ACTIONS(7339), - [anon_sym_requires] = ACTIONS(7339), - [anon_sym_DASH_GT_STAR] = ACTIONS(7339), + [STATE(2692)] = { + [sym_attribute_specifier] = STATE(3052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7553), + [anon_sym_COMMA] = ACTIONS(7553), + [anon_sym_RPAREN] = ACTIONS(7553), + [anon_sym_LPAREN2] = ACTIONS(7553), + [anon_sym_DASH] = ACTIONS(7551), + [anon_sym_PLUS] = ACTIONS(7551), + [anon_sym_STAR] = ACTIONS(7551), + [anon_sym_SLASH] = ACTIONS(7551), + [anon_sym_PERCENT] = ACTIONS(7551), + [anon_sym_PIPE_PIPE] = ACTIONS(7553), + [anon_sym_AMP_AMP] = ACTIONS(7553), + [anon_sym_PIPE] = ACTIONS(7551), + [anon_sym_CARET] = ACTIONS(7551), + [anon_sym_AMP] = ACTIONS(7551), + [anon_sym_EQ_EQ] = ACTIONS(7553), + [anon_sym_BANG_EQ] = ACTIONS(7553), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_GT_EQ] = ACTIONS(7553), + [anon_sym_LT_EQ] = ACTIONS(7551), + [anon_sym_LT] = ACTIONS(7551), + [anon_sym_LT_LT] = ACTIONS(7551), + [anon_sym_GT_GT] = ACTIONS(7551), + [anon_sym___extension__] = ACTIONS(7553), + [anon_sym___attribute__] = ACTIONS(8152), + [anon_sym___attribute] = ACTIONS(8154), + [anon_sym_LBRACE] = ACTIONS(7553), + [anon_sym_LBRACK] = ACTIONS(7553), + [anon_sym_EQ] = ACTIONS(7551), + [anon_sym_const] = ACTIONS(7551), + [anon_sym_constexpr] = ACTIONS(7553), + [anon_sym_volatile] = ACTIONS(7553), + [anon_sym_restrict] = ACTIONS(7553), + [anon_sym___restrict__] = ACTIONS(7553), + [anon_sym__Atomic] = ACTIONS(7553), + [anon_sym__Noreturn] = ACTIONS(7553), + [anon_sym_noreturn] = ACTIONS(7553), + [anon_sym__Nonnull] = ACTIONS(7553), + [anon_sym_mutable] = ACTIONS(7553), + [anon_sym_constinit] = ACTIONS(7553), + [anon_sym_consteval] = ACTIONS(7553), + [anon_sym_alignas] = ACTIONS(7553), + [anon_sym__Alignas] = ACTIONS(7553), + [anon_sym_QMARK] = ACTIONS(7553), + [anon_sym_STAR_EQ] = ACTIONS(7553), + [anon_sym_SLASH_EQ] = ACTIONS(7553), + [anon_sym_PERCENT_EQ] = ACTIONS(7553), + [anon_sym_PLUS_EQ] = ACTIONS(7553), + [anon_sym_DASH_EQ] = ACTIONS(7553), + [anon_sym_LT_LT_EQ] = ACTIONS(7553), + [anon_sym_GT_GT_EQ] = ACTIONS(7553), + [anon_sym_AMP_EQ] = ACTIONS(7553), + [anon_sym_CARET_EQ] = ACTIONS(7553), + [anon_sym_PIPE_EQ] = ACTIONS(7553), + [anon_sym_and_eq] = ACTIONS(7553), + [anon_sym_or_eq] = ACTIONS(7553), + [anon_sym_xor_eq] = ACTIONS(7553), + [anon_sym_LT_EQ_GT] = ACTIONS(7553), + [anon_sym_or] = ACTIONS(7551), + [anon_sym_and] = ACTIONS(7551), + [anon_sym_bitor] = ACTIONS(7553), + [anon_sym_xor] = ACTIONS(7551), + [anon_sym_bitand] = ACTIONS(7553), + [anon_sym_not_eq] = ACTIONS(7553), + [anon_sym_DASH_DASH] = ACTIONS(7553), + [anon_sym_PLUS_PLUS] = ACTIONS(7553), + [anon_sym_DOT] = ACTIONS(7551), + [anon_sym_DOT_STAR] = ACTIONS(7553), + [anon_sym_DASH_GT] = ACTIONS(7551), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7553), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_requires] = ACTIONS(7553), + [anon_sym_DASH_GT_STAR] = ACTIONS(7553), }, - [STATE(2980)] = { - [sym_identifier] = ACTIONS(8629), - [anon_sym_LPAREN2] = ACTIONS(8631), - [anon_sym_TILDE] = ACTIONS(8631), - [anon_sym_STAR] = ACTIONS(8631), - [anon_sym_PIPE_PIPE] = ACTIONS(8631), - [anon_sym_AMP_AMP] = ACTIONS(8631), - [anon_sym_AMP] = ACTIONS(8629), - [anon_sym___extension__] = ACTIONS(8629), - [anon_sym_virtual] = ACTIONS(8629), - [anon_sym_extern] = ACTIONS(8629), - [anon_sym___attribute__] = ACTIONS(8629), - [anon_sym___attribute] = ACTIONS(8629), - [anon_sym_using] = ACTIONS(8629), - [anon_sym_COLON_COLON] = ACTIONS(8631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8631), - [anon_sym___declspec] = ACTIONS(8629), - [anon_sym___based] = ACTIONS(8629), - [anon_sym___cdecl] = ACTIONS(8629), - [anon_sym___clrcall] = ACTIONS(8629), - [anon_sym___stdcall] = ACTIONS(8629), - [anon_sym___fastcall] = ACTIONS(8629), - [anon_sym___thiscall] = ACTIONS(8629), - [anon_sym___vectorcall] = ACTIONS(8629), - [anon_sym_LBRACE] = ACTIONS(8631), + [STATE(2693)] = { + [sym_argument_list] = STATE(5772), + [sym_initializer_list] = STATE(5843), + [aux_sym_sized_type_specifier_repeat1] = STATE(2208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(8626), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(3052), [anon_sym_signed] = ACTIONS(8629), [anon_sym_unsigned] = ACTIONS(8629), [anon_sym_long] = ACTIONS(8629), [anon_sym_short] = ACTIONS(8629), - [anon_sym_LBRACK] = ACTIONS(8629), - [anon_sym_static] = ACTIONS(8629), - [anon_sym_register] = ACTIONS(8629), - [anon_sym_inline] = ACTIONS(8629), - [anon_sym___inline] = ACTIONS(8629), - [anon_sym___inline__] = ACTIONS(8629), - [anon_sym___forceinline] = ACTIONS(8629), - [anon_sym_thread_local] = ACTIONS(8629), - [anon_sym___thread] = ACTIONS(8629), - [anon_sym_const] = ACTIONS(8629), - [anon_sym_constexpr] = ACTIONS(8629), - [anon_sym_volatile] = ACTIONS(8629), - [anon_sym_restrict] = ACTIONS(8629), - [anon_sym___restrict__] = ACTIONS(8629), - [anon_sym__Atomic] = ACTIONS(8629), - [anon_sym__Noreturn] = ACTIONS(8629), - [anon_sym_noreturn] = ACTIONS(8629), - [anon_sym__Nonnull] = ACTIONS(8629), - [anon_sym_mutable] = ACTIONS(8629), - [anon_sym_constinit] = ACTIONS(8629), - [anon_sym_consteval] = ACTIONS(8629), - [anon_sym_alignas] = ACTIONS(8629), - [anon_sym__Alignas] = ACTIONS(8629), - [sym_primitive_type] = ACTIONS(8629), - [anon_sym_enum] = ACTIONS(8629), - [anon_sym_class] = ACTIONS(8629), - [anon_sym_struct] = ACTIONS(8629), - [anon_sym_union] = ACTIONS(8629), - [anon_sym_or] = ACTIONS(8629), - [anon_sym_and] = ACTIONS(8629), - [anon_sym_typename] = ACTIONS(8629), - [anon_sym_DASH_GT] = ACTIONS(8631), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8629), - [anon_sym_decltype] = ACTIONS(8629), - [anon_sym_explicit] = ACTIONS(8629), - [anon_sym_template] = ACTIONS(8629), - [anon_sym_operator] = ACTIONS(8629), - [anon_sym_friend] = ACTIONS(8629), - [anon_sym_noexcept] = ACTIONS(8629), - [anon_sym_throw] = ACTIONS(8629), - [anon_sym_concept] = ACTIONS(8629), - [anon_sym_LBRACK_COLON] = ACTIONS(8631), - }, - [STATE(2981)] = { - [sym_decltype_auto] = STATE(3047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6798), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(7183), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6798), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8268), - [anon_sym_decltype] = ACTIONS(6644), - [anon_sym_GT2] = ACTIONS(6800), - }, - [STATE(2982)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), - [anon_sym_COMMA] = ACTIONS(7193), - [anon_sym_LPAREN2] = ACTIONS(7193), - [anon_sym_DASH] = ACTIONS(7191), - [anon_sym_PLUS] = ACTIONS(7191), - [anon_sym_STAR] = ACTIONS(7191), - [anon_sym_SLASH] = ACTIONS(7191), - [anon_sym_PERCENT] = ACTIONS(7191), - [anon_sym_PIPE_PIPE] = ACTIONS(7193), - [anon_sym_AMP_AMP] = ACTIONS(7193), - [anon_sym_PIPE] = ACTIONS(7191), - [anon_sym_CARET] = ACTIONS(7191), - [anon_sym_AMP] = ACTIONS(7191), - [anon_sym_EQ_EQ] = ACTIONS(7193), - [anon_sym_BANG_EQ] = ACTIONS(7193), - [anon_sym_GT] = ACTIONS(7191), - [anon_sym_GT_EQ] = ACTIONS(7193), - [anon_sym_LT_EQ] = ACTIONS(7191), - [anon_sym_LT] = ACTIONS(7191), - [anon_sym_LT_LT] = ACTIONS(7191), - [anon_sym_GT_GT] = ACTIONS(7191), - [anon_sym___extension__] = ACTIONS(7193), - [anon_sym_LBRACE] = ACTIONS(7193), - [anon_sym_LBRACK] = ACTIONS(7193), - [anon_sym_RBRACK] = ACTIONS(7193), - [anon_sym_EQ] = ACTIONS(7191), - [anon_sym_const] = ACTIONS(7191), - [anon_sym_constexpr] = ACTIONS(7193), - [anon_sym_volatile] = ACTIONS(7193), - [anon_sym_restrict] = ACTIONS(7193), - [anon_sym___restrict__] = ACTIONS(7193), - [anon_sym__Atomic] = ACTIONS(7193), - [anon_sym__Noreturn] = ACTIONS(7193), - [anon_sym_noreturn] = ACTIONS(7193), - [anon_sym__Nonnull] = ACTIONS(7193), - [anon_sym_mutable] = ACTIONS(7193), - [anon_sym_constinit] = ACTIONS(7193), - [anon_sym_consteval] = ACTIONS(7193), - [anon_sym_alignas] = ACTIONS(7193), - [anon_sym__Alignas] = ACTIONS(7193), - [anon_sym_QMARK] = ACTIONS(7193), - [anon_sym_STAR_EQ] = ACTIONS(7193), - [anon_sym_SLASH_EQ] = ACTIONS(7193), - [anon_sym_PERCENT_EQ] = ACTIONS(7193), - [anon_sym_PLUS_EQ] = ACTIONS(7193), - [anon_sym_DASH_EQ] = ACTIONS(7193), - [anon_sym_LT_LT_EQ] = ACTIONS(7193), - [anon_sym_GT_GT_EQ] = ACTIONS(7193), - [anon_sym_AMP_EQ] = ACTIONS(7193), - [anon_sym_CARET_EQ] = ACTIONS(7193), - [anon_sym_PIPE_EQ] = ACTIONS(7193), - [anon_sym_and_eq] = ACTIONS(7193), - [anon_sym_or_eq] = ACTIONS(7193), - [anon_sym_xor_eq] = ACTIONS(7193), - [anon_sym_LT_EQ_GT] = ACTIONS(7193), - [anon_sym_or] = ACTIONS(7191), - [anon_sym_and] = ACTIONS(7191), - [anon_sym_bitor] = ACTIONS(7193), - [anon_sym_xor] = ACTIONS(7191), - [anon_sym_bitand] = ACTIONS(7193), - [anon_sym_not_eq] = ACTIONS(7193), - [anon_sym_DASH_DASH] = ACTIONS(7193), - [anon_sym_PLUS_PLUS] = ACTIONS(7193), - [anon_sym_DOT] = ACTIONS(7191), - [anon_sym_DOT_STAR] = ACTIONS(7193), - [anon_sym_DASH_GT] = ACTIONS(7193), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7193), - [anon_sym_override] = ACTIONS(7193), - [anon_sym_requires] = ACTIONS(7193), - }, - [STATE(2983)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_RBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6800), - [anon_sym_override] = ACTIONS(6800), - [anon_sym_requires] = ACTIONS(6800), - }, - [STATE(2984)] = { - [sym_template_argument_list] = STATE(3601), - [aux_sym_sized_type_specifier_repeat1] = STATE(3464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7019), - [anon_sym_COMMA] = ACTIONS(7019), - [anon_sym_RPAREN] = ACTIONS(7019), - [anon_sym_LPAREN2] = ACTIONS(7019), - [anon_sym_DASH] = ACTIONS(7017), - [anon_sym_PLUS] = ACTIONS(7017), - [anon_sym_STAR] = ACTIONS(7019), - [anon_sym_SLASH] = ACTIONS(7017), - [anon_sym_PERCENT] = ACTIONS(7019), - [anon_sym_PIPE_PIPE] = ACTIONS(7019), - [anon_sym_AMP_AMP] = ACTIONS(7019), - [anon_sym_PIPE] = ACTIONS(7017), - [anon_sym_CARET] = ACTIONS(7019), - [anon_sym_AMP] = ACTIONS(7017), - [anon_sym_EQ_EQ] = ACTIONS(7019), - [anon_sym_BANG_EQ] = ACTIONS(7019), - [anon_sym_GT] = ACTIONS(7017), - [anon_sym_GT_EQ] = ACTIONS(7019), - [anon_sym_LT_EQ] = ACTIONS(7017), - [anon_sym_LT] = ACTIONS(7017), - [anon_sym_LT_LT] = ACTIONS(7019), - [anon_sym_GT_GT] = ACTIONS(7019), - [anon_sym_SEMI] = ACTIONS(7019), - [anon_sym___extension__] = ACTIONS(7019), - [anon_sym___attribute__] = ACTIONS(7019), - [anon_sym___attribute] = ACTIONS(7017), - [anon_sym_COLON] = ACTIONS(7017), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7019), - [anon_sym_LBRACE] = ACTIONS(7019), - [anon_sym_RBRACE] = ACTIONS(7019), - [anon_sym_signed] = ACTIONS(6503), - [anon_sym_unsigned] = ACTIONS(6503), - [anon_sym_long] = ACTIONS(6503), - [anon_sym_short] = ACTIONS(6503), - [anon_sym_LBRACK] = ACTIONS(7019), - [anon_sym_const] = ACTIONS(7017), - [anon_sym_constexpr] = ACTIONS(7019), - [anon_sym_volatile] = ACTIONS(7019), - [anon_sym_restrict] = ACTIONS(7019), - [anon_sym___restrict__] = ACTIONS(7019), - [anon_sym__Atomic] = ACTIONS(7019), - [anon_sym__Noreturn] = ACTIONS(7019), - [anon_sym_noreturn] = ACTIONS(7019), - [anon_sym__Nonnull] = ACTIONS(7019), - [anon_sym_mutable] = ACTIONS(7019), - [anon_sym_constinit] = ACTIONS(7019), - [anon_sym_consteval] = ACTIONS(7019), - [anon_sym_alignas] = ACTIONS(7019), - [anon_sym__Alignas] = ACTIONS(7019), - [anon_sym_QMARK] = ACTIONS(7019), - [anon_sym_LT_EQ_GT] = ACTIONS(7019), - [anon_sym_or] = ACTIONS(7019), - [anon_sym_and] = ACTIONS(7019), - [anon_sym_bitor] = ACTIONS(7019), - [anon_sym_xor] = ACTIONS(7019), - [anon_sym_bitand] = ACTIONS(7019), - [anon_sym_not_eq] = ACTIONS(7019), - [anon_sym_DASH_DASH] = ACTIONS(7019), - [anon_sym_PLUS_PLUS] = ACTIONS(7019), - [anon_sym_DOT] = ACTIONS(7017), - [anon_sym_DOT_STAR] = ACTIONS(7019), - [anon_sym_DASH_GT] = ACTIONS(7019), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7019), - [anon_sym_override] = ACTIONS(7019), - [anon_sym_requires] = ACTIONS(7019), - [anon_sym_COLON_RBRACK] = ACTIONS(7019), - }, - [STATE(2985)] = { - [sym_template_argument_list] = STATE(2848), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6758), - [anon_sym_COMMA] = ACTIONS(6758), - [anon_sym_RPAREN] = ACTIONS(6748), - [anon_sym_LPAREN2] = ACTIONS(6748), - [anon_sym_DASH] = ACTIONS(6753), - [anon_sym_PLUS] = ACTIONS(6753), - [anon_sym_STAR] = ACTIONS(6755), - [anon_sym_SLASH] = ACTIONS(6753), - [anon_sym_PERCENT] = ACTIONS(6753), - [anon_sym_PIPE_PIPE] = ACTIONS(6758), - [anon_sym_AMP_AMP] = ACTIONS(6748), - [anon_sym_PIPE] = ACTIONS(6753), - [anon_sym_CARET] = ACTIONS(6753), - [anon_sym_AMP] = ACTIONS(6755), - [anon_sym_EQ_EQ] = ACTIONS(6758), - [anon_sym_BANG_EQ] = ACTIONS(6758), - [anon_sym_GT] = ACTIONS(6753), - [anon_sym_GT_EQ] = ACTIONS(6758), - [anon_sym_LT_EQ] = ACTIONS(6753), - [anon_sym_LT] = ACTIONS(8390), - [anon_sym_LT_LT] = ACTIONS(6753), - [anon_sym_GT_GT] = ACTIONS(6753), - [anon_sym___extension__] = ACTIONS(6751), - [anon_sym_COLON_COLON] = ACTIONS(6748), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_LBRACK] = ACTIONS(6748), - [anon_sym_EQ] = ACTIONS(6753), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6751), - [anon_sym_volatile] = ACTIONS(6751), - [anon_sym_restrict] = ACTIONS(6751), - [anon_sym___restrict__] = ACTIONS(6751), - [anon_sym__Atomic] = ACTIONS(6751), - [anon_sym__Noreturn] = ACTIONS(6751), - [anon_sym_noreturn] = ACTIONS(6751), - [anon_sym__Nonnull] = ACTIONS(6751), - [anon_sym_mutable] = ACTIONS(6751), - [anon_sym_constinit] = ACTIONS(6751), - [anon_sym_consteval] = ACTIONS(6751), - [anon_sym_alignas] = ACTIONS(6751), - [anon_sym__Alignas] = ACTIONS(6751), - [anon_sym_QMARK] = ACTIONS(6758), - [anon_sym_STAR_EQ] = ACTIONS(6758), - [anon_sym_SLASH_EQ] = ACTIONS(6758), - [anon_sym_PERCENT_EQ] = ACTIONS(6758), - [anon_sym_PLUS_EQ] = ACTIONS(6758), - [anon_sym_DASH_EQ] = ACTIONS(6758), - [anon_sym_LT_LT_EQ] = ACTIONS(6758), - [anon_sym_GT_GT_EQ] = ACTIONS(6758), - [anon_sym_AMP_EQ] = ACTIONS(6758), - [anon_sym_CARET_EQ] = ACTIONS(6758), - [anon_sym_PIPE_EQ] = ACTIONS(6758), - [anon_sym_and_eq] = ACTIONS(6758), - [anon_sym_or_eq] = ACTIONS(6758), - [anon_sym_xor_eq] = ACTIONS(6758), - [anon_sym_LT_EQ_GT] = ACTIONS(6758), - [anon_sym_or] = ACTIONS(6753), - [anon_sym_and] = ACTIONS(6753), - [anon_sym_bitor] = ACTIONS(6758), - [anon_sym_xor] = ACTIONS(6753), - [anon_sym_bitand] = ACTIONS(6758), - [anon_sym_not_eq] = ACTIONS(6758), - [anon_sym_DASH_DASH] = ACTIONS(6758), - [anon_sym_PLUS_PLUS] = ACTIONS(6758), - [anon_sym_DOT] = ACTIONS(6753), - [anon_sym_DOT_STAR] = ACTIONS(6758), - [anon_sym_DASH_GT] = ACTIONS(6753), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6758), - }, - [STATE(2986)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6792), - [anon_sym_COMMA] = ACTIONS(6792), - [anon_sym_LPAREN2] = ACTIONS(6792), - [anon_sym_DASH] = ACTIONS(6790), - [anon_sym_PLUS] = ACTIONS(6790), - [anon_sym_STAR] = ACTIONS(6790), - [anon_sym_SLASH] = ACTIONS(6790), - [anon_sym_PERCENT] = ACTIONS(6790), - [anon_sym_PIPE_PIPE] = ACTIONS(6792), - [anon_sym_AMP_AMP] = ACTIONS(6792), - [anon_sym_PIPE] = ACTIONS(6790), - [anon_sym_CARET] = ACTIONS(6790), - [anon_sym_AMP] = ACTIONS(6790), - [anon_sym_EQ_EQ] = ACTIONS(6792), - [anon_sym_BANG_EQ] = ACTIONS(6792), - [anon_sym_GT] = ACTIONS(6790), - [anon_sym_GT_EQ] = ACTIONS(6792), - [anon_sym_LT_EQ] = ACTIONS(6790), - [anon_sym_LT] = ACTIONS(6790), - [anon_sym_LT_LT] = ACTIONS(6790), - [anon_sym_GT_GT] = ACTIONS(6790), - [anon_sym___extension__] = ACTIONS(6792), - [anon_sym_LBRACE] = ACTIONS(6792), - [anon_sym_LBRACK] = ACTIONS(6792), - [anon_sym_RBRACK] = ACTIONS(6792), - [anon_sym_EQ] = ACTIONS(6790), - [anon_sym_const] = ACTIONS(6790), - [anon_sym_constexpr] = ACTIONS(6792), - [anon_sym_volatile] = ACTIONS(6792), - [anon_sym_restrict] = ACTIONS(6792), - [anon_sym___restrict__] = ACTIONS(6792), - [anon_sym__Atomic] = ACTIONS(6792), - [anon_sym__Noreturn] = ACTIONS(6792), - [anon_sym_noreturn] = ACTIONS(6792), - [anon_sym__Nonnull] = ACTIONS(6792), - [anon_sym_mutable] = ACTIONS(6792), - [anon_sym_constinit] = ACTIONS(6792), - [anon_sym_consteval] = ACTIONS(6792), - [anon_sym_alignas] = ACTIONS(6792), - [anon_sym__Alignas] = ACTIONS(6792), - [anon_sym_QMARK] = ACTIONS(6792), - [anon_sym_STAR_EQ] = ACTIONS(6792), - [anon_sym_SLASH_EQ] = ACTIONS(6792), - [anon_sym_PERCENT_EQ] = ACTIONS(6792), - [anon_sym_PLUS_EQ] = ACTIONS(6792), - [anon_sym_DASH_EQ] = ACTIONS(6792), - [anon_sym_LT_LT_EQ] = ACTIONS(6792), - [anon_sym_GT_GT_EQ] = ACTIONS(6792), - [anon_sym_AMP_EQ] = ACTIONS(6792), - [anon_sym_CARET_EQ] = ACTIONS(6792), - [anon_sym_PIPE_EQ] = ACTIONS(6792), - [anon_sym_and_eq] = ACTIONS(6792), - [anon_sym_or_eq] = ACTIONS(6792), - [anon_sym_xor_eq] = ACTIONS(6792), - [anon_sym_LT_EQ_GT] = ACTIONS(6792), - [anon_sym_or] = ACTIONS(6790), - [anon_sym_and] = ACTIONS(6790), - [anon_sym_bitor] = ACTIONS(6792), - [anon_sym_xor] = ACTIONS(6790), - [anon_sym_bitand] = ACTIONS(6792), - [anon_sym_not_eq] = ACTIONS(6792), - [anon_sym_DASH_DASH] = ACTIONS(6792), - [anon_sym_PLUS_PLUS] = ACTIONS(6792), - [anon_sym_DOT] = ACTIONS(6790), - [anon_sym_DOT_STAR] = ACTIONS(6792), - [anon_sym_DASH_GT] = ACTIONS(6792), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6792), - [anon_sym_override] = ACTIONS(6792), - [anon_sym_requires] = ACTIONS(6792), - }, - [STATE(2987)] = { - [sym_decltype_auto] = STATE(3011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(7183), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_RBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8266), - [anon_sym_decltype] = ACTIONS(6680), - }, - [STATE(2988)] = { - [sym_template_argument_list] = STATE(2510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), - [anon_sym_COMMA] = ACTIONS(6748), - [anon_sym_RPAREN] = ACTIONS(6748), - [anon_sym_LPAREN2] = ACTIONS(6748), - [anon_sym_DASH] = ACTIONS(6755), - [anon_sym_PLUS] = ACTIONS(6755), - [anon_sym_STAR] = ACTIONS(6755), - [anon_sym_SLASH] = ACTIONS(6755), - [anon_sym_PERCENT] = ACTIONS(6755), - [anon_sym_PIPE_PIPE] = ACTIONS(6748), - [anon_sym_AMP_AMP] = ACTIONS(6748), - [anon_sym_PIPE] = ACTIONS(6755), - [anon_sym_CARET] = ACTIONS(6755), - [anon_sym_AMP] = ACTIONS(6755), - [anon_sym_EQ_EQ] = ACTIONS(6748), - [anon_sym_BANG_EQ] = ACTIONS(6748), - [anon_sym_GT] = ACTIONS(6755), - [anon_sym_GT_EQ] = ACTIONS(6748), - [anon_sym_LT_EQ] = ACTIONS(6755), - [anon_sym_LT] = ACTIONS(7640), - [anon_sym_LT_LT] = ACTIONS(6755), - [anon_sym_GT_GT] = ACTIONS(6755), - [anon_sym___extension__] = ACTIONS(6751), - [anon_sym_COLON_COLON] = ACTIONS(6748), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_LBRACK] = ACTIONS(6748), - [anon_sym_EQ] = ACTIONS(6755), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6751), - [anon_sym_volatile] = ACTIONS(6751), - [anon_sym_restrict] = ACTIONS(6751), - [anon_sym___restrict__] = ACTIONS(6751), - [anon_sym__Atomic] = ACTIONS(6751), - [anon_sym__Noreturn] = ACTIONS(6751), - [anon_sym_noreturn] = ACTIONS(6751), - [anon_sym__Nonnull] = ACTIONS(6751), - [anon_sym_mutable] = ACTIONS(6751), - [anon_sym_constinit] = ACTIONS(6751), - [anon_sym_consteval] = ACTIONS(6751), - [anon_sym_alignas] = ACTIONS(6751), - [anon_sym__Alignas] = ACTIONS(6751), - [anon_sym_QMARK] = ACTIONS(6748), - [anon_sym_STAR_EQ] = ACTIONS(6748), - [anon_sym_SLASH_EQ] = ACTIONS(6748), - [anon_sym_PERCENT_EQ] = ACTIONS(6748), - [anon_sym_PLUS_EQ] = ACTIONS(6748), - [anon_sym_DASH_EQ] = ACTIONS(6748), - [anon_sym_LT_LT_EQ] = ACTIONS(6748), - [anon_sym_GT_GT_EQ] = ACTIONS(6748), - [anon_sym_AMP_EQ] = ACTIONS(6748), - [anon_sym_CARET_EQ] = ACTIONS(6748), - [anon_sym_PIPE_EQ] = ACTIONS(6748), - [anon_sym_and_eq] = ACTIONS(6748), - [anon_sym_or_eq] = ACTIONS(6748), - [anon_sym_xor_eq] = ACTIONS(6748), - [anon_sym_LT_EQ_GT] = ACTIONS(6748), - [anon_sym_or] = ACTIONS(6755), - [anon_sym_and] = ACTIONS(6755), - [anon_sym_bitor] = ACTIONS(6748), - [anon_sym_xor] = ACTIONS(6755), - [anon_sym_bitand] = ACTIONS(6748), - [anon_sym_not_eq] = ACTIONS(6748), - [anon_sym_DASH_DASH] = ACTIONS(6748), - [anon_sym_PLUS_PLUS] = ACTIONS(6748), - [anon_sym_DOT] = ACTIONS(6755), - [anon_sym_DOT_STAR] = ACTIONS(6748), - [anon_sym_DASH_GT] = ACTIONS(6755), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6748), - }, - [STATE(2989)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7229), - [anon_sym_COMMA] = ACTIONS(7229), - [anon_sym_LPAREN2] = ACTIONS(7229), - [anon_sym_DASH] = ACTIONS(7227), - [anon_sym_PLUS] = ACTIONS(7227), - [anon_sym_STAR] = ACTIONS(7227), - [anon_sym_SLASH] = ACTIONS(7227), - [anon_sym_PERCENT] = ACTIONS(7227), - [anon_sym_PIPE_PIPE] = ACTIONS(7229), - [anon_sym_AMP_AMP] = ACTIONS(7229), - [anon_sym_PIPE] = ACTIONS(7227), - [anon_sym_CARET] = ACTIONS(7227), - [anon_sym_AMP] = ACTIONS(7227), - [anon_sym_EQ_EQ] = ACTIONS(7229), - [anon_sym_BANG_EQ] = ACTIONS(7229), - [anon_sym_GT] = ACTIONS(7227), - [anon_sym_GT_EQ] = ACTIONS(7227), - [anon_sym_LT_EQ] = ACTIONS(7227), - [anon_sym_LT] = ACTIONS(7227), - [anon_sym_LT_LT] = ACTIONS(7227), - [anon_sym_GT_GT] = ACTIONS(7227), - [anon_sym___extension__] = ACTIONS(7229), - [anon_sym_LBRACE] = ACTIONS(7229), - [anon_sym_LBRACK] = ACTIONS(7229), - [anon_sym_EQ] = ACTIONS(7227), - [anon_sym_const] = ACTIONS(7227), - [anon_sym_constexpr] = ACTIONS(7229), - [anon_sym_volatile] = ACTIONS(7229), - [anon_sym_restrict] = ACTIONS(7229), - [anon_sym___restrict__] = ACTIONS(7229), - [anon_sym__Atomic] = ACTIONS(7229), - [anon_sym__Noreturn] = ACTIONS(7229), - [anon_sym_noreturn] = ACTIONS(7229), - [anon_sym__Nonnull] = ACTIONS(7229), - [anon_sym_mutable] = ACTIONS(7229), - [anon_sym_constinit] = ACTIONS(7229), - [anon_sym_consteval] = ACTIONS(7229), - [anon_sym_alignas] = ACTIONS(7229), - [anon_sym__Alignas] = ACTIONS(7229), - [anon_sym_QMARK] = ACTIONS(7229), - [anon_sym_STAR_EQ] = ACTIONS(7229), - [anon_sym_SLASH_EQ] = ACTIONS(7229), - [anon_sym_PERCENT_EQ] = ACTIONS(7229), - [anon_sym_PLUS_EQ] = ACTIONS(7229), - [anon_sym_DASH_EQ] = ACTIONS(7229), - [anon_sym_LT_LT_EQ] = ACTIONS(7229), - [anon_sym_GT_GT_EQ] = ACTIONS(7227), - [anon_sym_AMP_EQ] = ACTIONS(7229), - [anon_sym_CARET_EQ] = ACTIONS(7229), - [anon_sym_PIPE_EQ] = ACTIONS(7229), - [anon_sym_and_eq] = ACTIONS(7229), - [anon_sym_or_eq] = ACTIONS(7229), - [anon_sym_xor_eq] = ACTIONS(7229), - [anon_sym_LT_EQ_GT] = ACTIONS(7229), - [anon_sym_or] = ACTIONS(7227), - [anon_sym_and] = ACTIONS(7227), - [anon_sym_bitor] = ACTIONS(7229), - [anon_sym_xor] = ACTIONS(7227), - [anon_sym_bitand] = ACTIONS(7229), - [anon_sym_not_eq] = ACTIONS(7229), - [anon_sym_DASH_DASH] = ACTIONS(7229), - [anon_sym_PLUS_PLUS] = ACTIONS(7229), - [anon_sym_DOT] = ACTIONS(7227), - [anon_sym_DOT_STAR] = ACTIONS(7229), - [anon_sym_DASH_GT] = ACTIONS(7229), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7229), - [anon_sym_override] = ACTIONS(7229), - [anon_sym_GT2] = ACTIONS(7229), - [anon_sym_requires] = ACTIONS(7229), - }, - [STATE(2990)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), - [anon_sym_COMMA] = ACTIONS(7233), - [anon_sym_LPAREN2] = ACTIONS(7233), - [anon_sym_DASH] = ACTIONS(7231), - [anon_sym_PLUS] = ACTIONS(7231), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7231), - [anon_sym_PIPE_PIPE] = ACTIONS(7233), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE] = ACTIONS(7231), - [anon_sym_CARET] = ACTIONS(7231), - [anon_sym_AMP] = ACTIONS(7231), - [anon_sym_EQ_EQ] = ACTIONS(7233), - [anon_sym_BANG_EQ] = ACTIONS(7233), - [anon_sym_GT] = ACTIONS(7231), - [anon_sym_GT_EQ] = ACTIONS(7231), - [anon_sym_LT_EQ] = ACTIONS(7231), - [anon_sym_LT] = ACTIONS(7231), - [anon_sym_LT_LT] = ACTIONS(7231), - [anon_sym_GT_GT] = ACTIONS(7231), - [anon_sym___extension__] = ACTIONS(7233), - [anon_sym_LBRACE] = ACTIONS(7233), - [anon_sym_LBRACK] = ACTIONS(7233), - [anon_sym_EQ] = ACTIONS(7231), - [anon_sym_const] = ACTIONS(7231), - [anon_sym_constexpr] = ACTIONS(7233), - [anon_sym_volatile] = ACTIONS(7233), - [anon_sym_restrict] = ACTIONS(7233), - [anon_sym___restrict__] = ACTIONS(7233), - [anon_sym__Atomic] = ACTIONS(7233), - [anon_sym__Noreturn] = ACTIONS(7233), - [anon_sym_noreturn] = ACTIONS(7233), - [anon_sym__Nonnull] = ACTIONS(7233), - [anon_sym_mutable] = ACTIONS(7233), - [anon_sym_constinit] = ACTIONS(7233), - [anon_sym_consteval] = ACTIONS(7233), - [anon_sym_alignas] = ACTIONS(7233), - [anon_sym__Alignas] = ACTIONS(7233), - [anon_sym_QMARK] = ACTIONS(7233), - [anon_sym_STAR_EQ] = ACTIONS(7233), - [anon_sym_SLASH_EQ] = ACTIONS(7233), - [anon_sym_PERCENT_EQ] = ACTIONS(7233), - [anon_sym_PLUS_EQ] = ACTIONS(7233), - [anon_sym_DASH_EQ] = ACTIONS(7233), - [anon_sym_LT_LT_EQ] = ACTIONS(7233), - [anon_sym_GT_GT_EQ] = ACTIONS(7231), - [anon_sym_AMP_EQ] = ACTIONS(7233), - [anon_sym_CARET_EQ] = ACTIONS(7233), - [anon_sym_PIPE_EQ] = ACTIONS(7233), - [anon_sym_and_eq] = ACTIONS(7233), - [anon_sym_or_eq] = ACTIONS(7233), - [anon_sym_xor_eq] = ACTIONS(7233), - [anon_sym_LT_EQ_GT] = ACTIONS(7233), - [anon_sym_or] = ACTIONS(7231), - [anon_sym_and] = ACTIONS(7231), - [anon_sym_bitor] = ACTIONS(7233), - [anon_sym_xor] = ACTIONS(7231), - [anon_sym_bitand] = ACTIONS(7233), - [anon_sym_not_eq] = ACTIONS(7233), - [anon_sym_DASH_DASH] = ACTIONS(7233), - [anon_sym_PLUS_PLUS] = ACTIONS(7233), - [anon_sym_DOT] = ACTIONS(7231), - [anon_sym_DOT_STAR] = ACTIONS(7233), - [anon_sym_DASH_GT] = ACTIONS(7233), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7233), - [anon_sym_override] = ACTIONS(7233), - [anon_sym_GT2] = ACTIONS(7233), - [anon_sym_requires] = ACTIONS(7233), - }, - [STATE(2991)] = { - [sym_identifier] = ACTIONS(2803), - [aux_sym_preproc_def_token1] = ACTIONS(2803), - [anon_sym_COMMA] = ACTIONS(3888), - [aux_sym_preproc_if_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2803), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(3888), - [anon_sym___extension__] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2803), - [anon_sym_virtual] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym___attribute__] = ACTIONS(2803), - [anon_sym___attribute] = ACTIONS(2803), - [anon_sym_using] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2803), - [anon_sym___based] = ACTIONS(2803), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_signed] = ACTIONS(2803), - [anon_sym_unsigned] = ACTIONS(2803), - [anon_sym_long] = ACTIONS(2803), - [anon_sym_short] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_register] = ACTIONS(2803), - [anon_sym_inline] = ACTIONS(2803), - [anon_sym___inline] = ACTIONS(2803), - [anon_sym___inline__] = ACTIONS(2803), - [anon_sym___forceinline] = ACTIONS(2803), - [anon_sym_thread_local] = ACTIONS(2803), - [anon_sym___thread] = ACTIONS(2803), - [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__Nonnull] = ACTIONS(2803), - [anon_sym_mutable] = ACTIONS(2803), - [anon_sym_constinit] = ACTIONS(2803), - [anon_sym_consteval] = ACTIONS(2803), - [anon_sym_alignas] = ACTIONS(2803), - [anon_sym__Alignas] = ACTIONS(2803), - [sym_primitive_type] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_typename] = ACTIONS(2803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2803), - [anon_sym_decltype] = ACTIONS(2803), - [anon_sym_explicit] = ACTIONS(2803), - [anon_sym_private] = ACTIONS(2803), - [anon_sym_template] = ACTIONS(2803), - [anon_sym_operator] = ACTIONS(2803), - [anon_sym_friend] = ACTIONS(2803), - [anon_sym_public] = ACTIONS(2803), - [anon_sym_protected] = ACTIONS(2803), - [anon_sym_static_assert] = ACTIONS(2803), - [anon_sym_LBRACK_COLON] = ACTIONS(2801), - }, - [STATE(2992)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), - [anon_sym_COMMA] = ACTIONS(6230), - [anon_sym_LPAREN2] = ACTIONS(6230), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6237), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_PERCENT] = ACTIONS(6235), - [anon_sym_PIPE_PIPE] = ACTIONS(6228), - [anon_sym_AMP_AMP] = ACTIONS(6230), - [anon_sym_PIPE] = ACTIONS(6235), - [anon_sym_CARET] = ACTIONS(6235), - [anon_sym_AMP] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6228), - [anon_sym_BANG_EQ] = ACTIONS(6228), - [anon_sym_GT] = ACTIONS(6235), - [anon_sym_GT_EQ] = ACTIONS(6235), - [anon_sym_LT_EQ] = ACTIONS(6235), - [anon_sym_LT] = ACTIONS(6235), - [anon_sym_LT_LT] = ACTIONS(6235), - [anon_sym_GT_GT] = ACTIONS(6235), - [anon_sym___extension__] = ACTIONS(6233), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6230), - [anon_sym_EQ] = ACTIONS(6235), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6233), - [anon_sym_volatile] = ACTIONS(6233), - [anon_sym_restrict] = ACTIONS(6233), - [anon_sym___restrict__] = ACTIONS(6233), - [anon_sym__Atomic] = ACTIONS(6233), - [anon_sym__Noreturn] = ACTIONS(6233), - [anon_sym_noreturn] = ACTIONS(6233), - [anon_sym__Nonnull] = ACTIONS(6233), - [anon_sym_mutable] = ACTIONS(6233), - [anon_sym_constinit] = ACTIONS(6233), - [anon_sym_consteval] = ACTIONS(6233), - [anon_sym_alignas] = ACTIONS(6233), - [anon_sym__Alignas] = ACTIONS(6233), - [anon_sym_QMARK] = ACTIONS(6228), - [anon_sym_STAR_EQ] = ACTIONS(6228), - [anon_sym_SLASH_EQ] = ACTIONS(6228), - [anon_sym_PERCENT_EQ] = ACTIONS(6228), - [anon_sym_PLUS_EQ] = ACTIONS(6228), - [anon_sym_DASH_EQ] = ACTIONS(6228), - [anon_sym_LT_LT_EQ] = ACTIONS(6228), - [anon_sym_GT_GT_EQ] = ACTIONS(6235), - [anon_sym_AMP_EQ] = ACTIONS(6228), - [anon_sym_CARET_EQ] = ACTIONS(6228), - [anon_sym_PIPE_EQ] = ACTIONS(6228), - [anon_sym_and_eq] = ACTIONS(6228), - [anon_sym_or_eq] = ACTIONS(6228), - [anon_sym_xor_eq] = ACTIONS(6228), - [anon_sym_LT_EQ_GT] = ACTIONS(6228), - [anon_sym_or] = ACTIONS(6235), - [anon_sym_and] = ACTIONS(6235), - [anon_sym_bitor] = ACTIONS(6228), - [anon_sym_xor] = ACTIONS(6235), - [anon_sym_bitand] = ACTIONS(6228), - [anon_sym_not_eq] = ACTIONS(6228), - [anon_sym_DASH_DASH] = ACTIONS(6228), - [anon_sym_PLUS_PLUS] = ACTIONS(6228), - [anon_sym_DOT] = ACTIONS(6235), - [anon_sym_DOT_STAR] = ACTIONS(6228), - [anon_sym_DASH_GT] = ACTIONS(6228), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6233), - [anon_sym_decltype] = ACTIONS(6233), - [anon_sym_GT2] = ACTIONS(6230), - }, - [STATE(2993)] = { - [sym_identifier] = ACTIONS(7333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7335), - [anon_sym_COMMA] = ACTIONS(7335), - [anon_sym_RPAREN] = ACTIONS(7335), - [anon_sym_LPAREN2] = ACTIONS(7335), - [anon_sym_DASH] = ACTIONS(7333), - [anon_sym_PLUS] = ACTIONS(7333), - [anon_sym_STAR] = ACTIONS(7335), - [anon_sym_SLASH] = ACTIONS(7333), - [anon_sym_PERCENT] = ACTIONS(7335), - [anon_sym_PIPE_PIPE] = ACTIONS(7335), - [anon_sym_AMP_AMP] = ACTIONS(7335), - [anon_sym_PIPE] = ACTIONS(7333), - [anon_sym_CARET] = ACTIONS(7335), - [anon_sym_AMP] = ACTIONS(7333), - [anon_sym_EQ_EQ] = ACTIONS(7335), - [anon_sym_BANG_EQ] = ACTIONS(7335), - [anon_sym_GT] = ACTIONS(7333), - [anon_sym_GT_EQ] = ACTIONS(7335), - [anon_sym_LT_EQ] = ACTIONS(7333), - [anon_sym_LT] = ACTIONS(7333), - [anon_sym_LT_LT] = ACTIONS(7335), - [anon_sym_GT_GT] = ACTIONS(7335), - [anon_sym_SEMI] = ACTIONS(7335), - [anon_sym___extension__] = ACTIONS(7333), - [anon_sym___attribute__] = ACTIONS(7333), - [anon_sym___attribute] = ACTIONS(7333), - [anon_sym_COLON] = ACTIONS(7333), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7335), - [anon_sym___based] = ACTIONS(7333), - [anon_sym_LBRACE] = ACTIONS(7335), - [anon_sym_RBRACE] = ACTIONS(7335), - [anon_sym_signed] = ACTIONS(7333), - [anon_sym_unsigned] = ACTIONS(7333), - [anon_sym_long] = ACTIONS(7333), - [anon_sym_short] = ACTIONS(7333), - [anon_sym_LBRACK] = ACTIONS(7335), - [anon_sym_const] = ACTIONS(7333), - [anon_sym_constexpr] = ACTIONS(7333), - [anon_sym_volatile] = ACTIONS(7333), - [anon_sym_restrict] = ACTIONS(7333), - [anon_sym___restrict__] = ACTIONS(7333), - [anon_sym__Atomic] = ACTIONS(7333), - [anon_sym__Noreturn] = ACTIONS(7333), - [anon_sym_noreturn] = ACTIONS(7333), - [anon_sym__Nonnull] = ACTIONS(7333), - [anon_sym_mutable] = ACTIONS(7333), - [anon_sym_constinit] = ACTIONS(7333), - [anon_sym_consteval] = ACTIONS(7333), - [anon_sym_alignas] = ACTIONS(7333), - [anon_sym__Alignas] = ACTIONS(7333), - [sym_primitive_type] = ACTIONS(7333), - [anon_sym_QMARK] = ACTIONS(7335), - [anon_sym_LT_EQ_GT] = ACTIONS(7335), - [anon_sym_or] = ACTIONS(7333), - [anon_sym_and] = ACTIONS(7333), - [anon_sym_bitor] = ACTIONS(7333), - [anon_sym_xor] = ACTIONS(7333), - [anon_sym_bitand] = ACTIONS(7333), - [anon_sym_not_eq] = ACTIONS(7333), - [anon_sym_DASH_DASH] = ACTIONS(7335), - [anon_sym_PLUS_PLUS] = ACTIONS(7335), - [anon_sym_DOT] = ACTIONS(7333), - [anon_sym_DOT_STAR] = ACTIONS(7335), - [anon_sym_DASH_GT] = ACTIONS(7335), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7333), - [anon_sym_override] = ACTIONS(7333), - [anon_sym_requires] = ACTIONS(7333), - [anon_sym_COLON_RBRACK] = ACTIONS(7335), - }, - [STATE(2994)] = { - [sym_identifier] = ACTIONS(7337), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7339), - [anon_sym_COMMA] = ACTIONS(7339), - [anon_sym_RPAREN] = ACTIONS(7339), - [anon_sym_LPAREN2] = ACTIONS(7339), - [anon_sym_DASH] = ACTIONS(7337), - [anon_sym_PLUS] = ACTIONS(7337), - [anon_sym_STAR] = ACTIONS(7339), - [anon_sym_SLASH] = ACTIONS(7337), - [anon_sym_PERCENT] = ACTIONS(7339), - [anon_sym_PIPE_PIPE] = ACTIONS(7339), - [anon_sym_AMP_AMP] = ACTIONS(7339), - [anon_sym_PIPE] = ACTIONS(7337), - [anon_sym_CARET] = ACTIONS(7339), - [anon_sym_AMP] = ACTIONS(7337), - [anon_sym_EQ_EQ] = ACTIONS(7339), - [anon_sym_BANG_EQ] = ACTIONS(7339), - [anon_sym_GT] = ACTIONS(7337), - [anon_sym_GT_EQ] = ACTIONS(7339), - [anon_sym_LT_EQ] = ACTIONS(7337), - [anon_sym_LT] = ACTIONS(7337), - [anon_sym_LT_LT] = ACTIONS(7339), - [anon_sym_GT_GT] = ACTIONS(7339), - [anon_sym_SEMI] = ACTIONS(7339), - [anon_sym___extension__] = ACTIONS(7337), - [anon_sym___attribute__] = ACTIONS(7337), - [anon_sym___attribute] = ACTIONS(7337), - [anon_sym_COLON] = ACTIONS(7337), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7339), - [anon_sym___based] = ACTIONS(7337), - [anon_sym_LBRACE] = ACTIONS(7339), - [anon_sym_RBRACE] = ACTIONS(7339), - [anon_sym_signed] = ACTIONS(7337), - [anon_sym_unsigned] = ACTIONS(7337), - [anon_sym_long] = ACTIONS(7337), - [anon_sym_short] = ACTIONS(7337), - [anon_sym_LBRACK] = ACTIONS(7339), - [anon_sym_const] = ACTIONS(7337), - [anon_sym_constexpr] = ACTIONS(7337), - [anon_sym_volatile] = ACTIONS(7337), - [anon_sym_restrict] = ACTIONS(7337), - [anon_sym___restrict__] = ACTIONS(7337), - [anon_sym__Atomic] = ACTIONS(7337), - [anon_sym__Noreturn] = ACTIONS(7337), - [anon_sym_noreturn] = ACTIONS(7337), - [anon_sym__Nonnull] = ACTIONS(7337), - [anon_sym_mutable] = ACTIONS(7337), - [anon_sym_constinit] = ACTIONS(7337), - [anon_sym_consteval] = ACTIONS(7337), - [anon_sym_alignas] = ACTIONS(7337), - [anon_sym__Alignas] = ACTIONS(7337), - [sym_primitive_type] = ACTIONS(7337), - [anon_sym_QMARK] = ACTIONS(7339), - [anon_sym_LT_EQ_GT] = ACTIONS(7339), - [anon_sym_or] = ACTIONS(7337), - [anon_sym_and] = ACTIONS(7337), - [anon_sym_bitor] = ACTIONS(7337), - [anon_sym_xor] = ACTIONS(7337), - [anon_sym_bitand] = ACTIONS(7337), - [anon_sym_not_eq] = ACTIONS(7337), - [anon_sym_DASH_DASH] = ACTIONS(7339), - [anon_sym_PLUS_PLUS] = ACTIONS(7339), - [anon_sym_DOT] = ACTIONS(7337), - [anon_sym_DOT_STAR] = ACTIONS(7339), - [anon_sym_DASH_GT] = ACTIONS(7339), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7337), - [anon_sym_override] = ACTIONS(7337), - [anon_sym_requires] = ACTIONS(7337), - [anon_sym_COLON_RBRACK] = ACTIONS(7339), - }, - [STATE(2995)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7281), - [anon_sym_COMMA] = ACTIONS(7281), - [anon_sym_LPAREN2] = ACTIONS(7281), - [anon_sym_DASH] = ACTIONS(7279), - [anon_sym_PLUS] = ACTIONS(7279), - [anon_sym_STAR] = ACTIONS(7279), - [anon_sym_SLASH] = ACTIONS(7279), - [anon_sym_PERCENT] = ACTIONS(7279), - [anon_sym_PIPE_PIPE] = ACTIONS(7281), - [anon_sym_AMP_AMP] = ACTIONS(7281), - [anon_sym_PIPE] = ACTIONS(7279), - [anon_sym_CARET] = ACTIONS(7279), - [anon_sym_AMP] = ACTIONS(7279), - [anon_sym_EQ_EQ] = ACTIONS(7281), - [anon_sym_BANG_EQ] = ACTIONS(7281), - [anon_sym_GT] = ACTIONS(7279), - [anon_sym_GT_EQ] = ACTIONS(7281), - [anon_sym_LT_EQ] = ACTIONS(7279), - [anon_sym_LT] = ACTIONS(7279), - [anon_sym_LT_LT] = ACTIONS(7279), - [anon_sym_GT_GT] = ACTIONS(7279), - [anon_sym___extension__] = ACTIONS(7281), - [anon_sym_LBRACE] = ACTIONS(7281), - [anon_sym_LBRACK] = ACTIONS(7281), - [anon_sym_RBRACK] = ACTIONS(7281), - [anon_sym_EQ] = ACTIONS(7279), - [anon_sym_const] = ACTIONS(7279), - [anon_sym_constexpr] = ACTIONS(7281), - [anon_sym_volatile] = ACTIONS(7281), - [anon_sym_restrict] = ACTIONS(7281), - [anon_sym___restrict__] = ACTIONS(7281), - [anon_sym__Atomic] = ACTIONS(7281), - [anon_sym__Noreturn] = ACTIONS(7281), - [anon_sym_noreturn] = ACTIONS(7281), - [anon_sym__Nonnull] = ACTIONS(7281), - [anon_sym_mutable] = ACTIONS(7281), - [anon_sym_constinit] = ACTIONS(7281), - [anon_sym_consteval] = ACTIONS(7281), - [anon_sym_alignas] = ACTIONS(7281), - [anon_sym__Alignas] = ACTIONS(7281), - [anon_sym_QMARK] = ACTIONS(7281), - [anon_sym_STAR_EQ] = ACTIONS(7281), - [anon_sym_SLASH_EQ] = ACTIONS(7281), - [anon_sym_PERCENT_EQ] = ACTIONS(7281), - [anon_sym_PLUS_EQ] = ACTIONS(7281), - [anon_sym_DASH_EQ] = ACTIONS(7281), - [anon_sym_LT_LT_EQ] = ACTIONS(7281), - [anon_sym_GT_GT_EQ] = ACTIONS(7281), - [anon_sym_AMP_EQ] = ACTIONS(7281), - [anon_sym_CARET_EQ] = ACTIONS(7281), - [anon_sym_PIPE_EQ] = ACTIONS(7281), - [anon_sym_and_eq] = ACTIONS(7281), - [anon_sym_or_eq] = ACTIONS(7281), - [anon_sym_xor_eq] = ACTIONS(7281), - [anon_sym_LT_EQ_GT] = ACTIONS(7281), - [anon_sym_or] = ACTIONS(7279), - [anon_sym_and] = ACTIONS(7279), - [anon_sym_bitor] = ACTIONS(7281), - [anon_sym_xor] = ACTIONS(7279), - [anon_sym_bitand] = ACTIONS(7281), - [anon_sym_not_eq] = ACTIONS(7281), - [anon_sym_DASH_DASH] = ACTIONS(7281), - [anon_sym_PLUS_PLUS] = ACTIONS(7281), - [anon_sym_DOT] = ACTIONS(7279), - [anon_sym_DOT_STAR] = ACTIONS(7281), - [anon_sym_DASH_GT] = ACTIONS(7281), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7281), - [anon_sym_override] = ACTIONS(7281), - [anon_sym_requires] = ACTIONS(7281), - }, - [STATE(2996)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7423), - [anon_sym_COMMA] = ACTIONS(7423), - [anon_sym_LPAREN2] = ACTIONS(7423), - [anon_sym_DASH] = ACTIONS(7421), - [anon_sym_PLUS] = ACTIONS(7421), - [anon_sym_STAR] = ACTIONS(7421), - [anon_sym_SLASH] = ACTIONS(7421), - [anon_sym_PERCENT] = ACTIONS(7421), - [anon_sym_PIPE_PIPE] = ACTIONS(7423), - [anon_sym_AMP_AMP] = ACTIONS(7423), - [anon_sym_PIPE] = ACTIONS(7421), - [anon_sym_CARET] = ACTIONS(7421), - [anon_sym_AMP] = ACTIONS(7421), - [anon_sym_EQ_EQ] = ACTIONS(7423), - [anon_sym_BANG_EQ] = ACTIONS(7423), - [anon_sym_GT] = ACTIONS(7421), - [anon_sym_GT_EQ] = ACTIONS(7423), - [anon_sym_LT_EQ] = ACTIONS(7421), - [anon_sym_LT] = ACTIONS(7421), - [anon_sym_LT_LT] = ACTIONS(7421), - [anon_sym_GT_GT] = ACTIONS(7421), - [anon_sym___extension__] = ACTIONS(7423), - [anon_sym_LBRACE] = ACTIONS(7423), - [anon_sym_LBRACK] = ACTIONS(7423), - [anon_sym_RBRACK] = ACTIONS(7423), - [anon_sym_EQ] = ACTIONS(7421), - [anon_sym_const] = ACTIONS(7421), - [anon_sym_constexpr] = ACTIONS(7423), - [anon_sym_volatile] = ACTIONS(7423), - [anon_sym_restrict] = ACTIONS(7423), - [anon_sym___restrict__] = ACTIONS(7423), - [anon_sym__Atomic] = ACTIONS(7423), - [anon_sym__Noreturn] = ACTIONS(7423), - [anon_sym_noreturn] = ACTIONS(7423), - [anon_sym__Nonnull] = ACTIONS(7423), - [anon_sym_mutable] = ACTIONS(7423), - [anon_sym_constinit] = ACTIONS(7423), - [anon_sym_consteval] = ACTIONS(7423), - [anon_sym_alignas] = ACTIONS(7423), - [anon_sym__Alignas] = ACTIONS(7423), - [anon_sym_QMARK] = ACTIONS(7423), - [anon_sym_STAR_EQ] = ACTIONS(7423), - [anon_sym_SLASH_EQ] = ACTIONS(7423), - [anon_sym_PERCENT_EQ] = ACTIONS(7423), - [anon_sym_PLUS_EQ] = ACTIONS(7423), - [anon_sym_DASH_EQ] = ACTIONS(7423), - [anon_sym_LT_LT_EQ] = ACTIONS(7423), - [anon_sym_GT_GT_EQ] = ACTIONS(7423), - [anon_sym_AMP_EQ] = ACTIONS(7423), - [anon_sym_CARET_EQ] = ACTIONS(7423), - [anon_sym_PIPE_EQ] = ACTIONS(7423), - [anon_sym_and_eq] = ACTIONS(7423), - [anon_sym_or_eq] = ACTIONS(7423), - [anon_sym_xor_eq] = ACTIONS(7423), - [anon_sym_LT_EQ_GT] = ACTIONS(7423), - [anon_sym_or] = ACTIONS(7421), - [anon_sym_and] = ACTIONS(7421), - [anon_sym_bitor] = ACTIONS(7423), - [anon_sym_xor] = ACTIONS(7421), - [anon_sym_bitand] = ACTIONS(7423), - [anon_sym_not_eq] = ACTIONS(7423), - [anon_sym_DASH_DASH] = ACTIONS(7423), - [anon_sym_PLUS_PLUS] = ACTIONS(7423), - [anon_sym_DOT] = ACTIONS(7421), - [anon_sym_DOT_STAR] = ACTIONS(7423), - [anon_sym_DASH_GT] = ACTIONS(7423), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7423), - [anon_sym_override] = ACTIONS(7423), - [anon_sym_requires] = ACTIONS(7423), - }, - [STATE(2997)] = { - [sym_identifier] = ACTIONS(7341), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_RPAREN] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(7343), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(7343), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7343), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(7343), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7343), - [anon_sym_AMP] = ACTIONS(7341), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7343), - [anon_sym_GT_GT] = ACTIONS(7343), - [anon_sym_SEMI] = ACTIONS(7343), - [anon_sym___extension__] = ACTIONS(7341), - [anon_sym___attribute__] = ACTIONS(7341), - [anon_sym___attribute] = ACTIONS(7341), - [anon_sym_COLON] = ACTIONS(7341), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7343), - [anon_sym___based] = ACTIONS(7341), - [anon_sym_LBRACE] = ACTIONS(7343), - [anon_sym_RBRACE] = ACTIONS(7343), - [anon_sym_signed] = ACTIONS(7341), - [anon_sym_unsigned] = ACTIONS(7341), - [anon_sym_long] = ACTIONS(7341), - [anon_sym_short] = ACTIONS(7341), - [anon_sym_LBRACK] = ACTIONS(7343), - [anon_sym_const] = ACTIONS(7341), - [anon_sym_constexpr] = ACTIONS(7341), - [anon_sym_volatile] = ACTIONS(7341), - [anon_sym_restrict] = ACTIONS(7341), - [anon_sym___restrict__] = ACTIONS(7341), - [anon_sym__Atomic] = ACTIONS(7341), - [anon_sym__Noreturn] = ACTIONS(7341), - [anon_sym_noreturn] = ACTIONS(7341), - [anon_sym__Nonnull] = ACTIONS(7341), - [anon_sym_mutable] = ACTIONS(7341), - [anon_sym_constinit] = ACTIONS(7341), - [anon_sym_consteval] = ACTIONS(7341), - [anon_sym_alignas] = ACTIONS(7341), - [anon_sym__Alignas] = ACTIONS(7341), - [sym_primitive_type] = ACTIONS(7341), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7341), - [anon_sym_and] = ACTIONS(7341), - [anon_sym_bitor] = ACTIONS(7341), - [anon_sym_xor] = ACTIONS(7341), - [anon_sym_bitand] = ACTIONS(7341), - [anon_sym_not_eq] = ACTIONS(7341), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7343), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7341), - [anon_sym_override] = ACTIONS(7341), - [anon_sym_requires] = ACTIONS(7341), - [anon_sym_COLON_RBRACK] = ACTIONS(7343), - }, - [STATE(2998)] = { - [sym_identifier] = ACTIONS(7279), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7281), - [anon_sym_COMMA] = ACTIONS(7281), - [anon_sym_RPAREN] = ACTIONS(7281), - [anon_sym_LPAREN2] = ACTIONS(7281), - [anon_sym_DASH] = ACTIONS(7279), - [anon_sym_PLUS] = ACTIONS(7279), - [anon_sym_STAR] = ACTIONS(7281), - [anon_sym_SLASH] = ACTIONS(7279), - [anon_sym_PERCENT] = ACTIONS(7281), - [anon_sym_PIPE_PIPE] = ACTIONS(7281), - [anon_sym_AMP_AMP] = ACTIONS(7281), - [anon_sym_PIPE] = ACTIONS(7279), - [anon_sym_CARET] = ACTIONS(7281), - [anon_sym_AMP] = ACTIONS(7279), - [anon_sym_EQ_EQ] = ACTIONS(7281), - [anon_sym_BANG_EQ] = ACTIONS(7281), - [anon_sym_GT] = ACTIONS(7279), - [anon_sym_GT_EQ] = ACTIONS(7281), - [anon_sym_LT_EQ] = ACTIONS(7279), - [anon_sym_LT] = ACTIONS(7279), - [anon_sym_LT_LT] = ACTIONS(7281), - [anon_sym_GT_GT] = ACTIONS(7281), - [anon_sym_SEMI] = ACTIONS(7281), - [anon_sym___extension__] = ACTIONS(7279), - [anon_sym___attribute__] = ACTIONS(7279), - [anon_sym___attribute] = ACTIONS(7279), - [anon_sym_COLON] = ACTIONS(7279), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7281), - [anon_sym___based] = ACTIONS(7279), - [anon_sym_LBRACE] = ACTIONS(7281), - [anon_sym_RBRACE] = ACTIONS(7281), - [anon_sym_signed] = ACTIONS(7279), - [anon_sym_unsigned] = ACTIONS(7279), - [anon_sym_long] = ACTIONS(7279), - [anon_sym_short] = ACTIONS(7279), - [anon_sym_LBRACK] = ACTIONS(7281), - [anon_sym_const] = ACTIONS(7279), - [anon_sym_constexpr] = ACTIONS(7279), - [anon_sym_volatile] = ACTIONS(7279), - [anon_sym_restrict] = ACTIONS(7279), - [anon_sym___restrict__] = ACTIONS(7279), - [anon_sym__Atomic] = ACTIONS(7279), - [anon_sym__Noreturn] = ACTIONS(7279), - [anon_sym_noreturn] = ACTIONS(7279), - [anon_sym__Nonnull] = ACTIONS(7279), - [anon_sym_mutable] = ACTIONS(7279), - [anon_sym_constinit] = ACTIONS(7279), - [anon_sym_consteval] = ACTIONS(7279), - [anon_sym_alignas] = ACTIONS(7279), - [anon_sym__Alignas] = ACTIONS(7279), - [sym_primitive_type] = ACTIONS(7279), - [anon_sym_QMARK] = ACTIONS(7281), - [anon_sym_LT_EQ_GT] = ACTIONS(7281), - [anon_sym_or] = ACTIONS(7279), - [anon_sym_and] = ACTIONS(7279), - [anon_sym_bitor] = ACTIONS(7279), - [anon_sym_xor] = ACTIONS(7279), - [anon_sym_bitand] = ACTIONS(7279), - [anon_sym_not_eq] = ACTIONS(7279), - [anon_sym_DASH_DASH] = ACTIONS(7281), - [anon_sym_PLUS_PLUS] = ACTIONS(7281), - [anon_sym_DOT] = ACTIONS(7279), - [anon_sym_DOT_STAR] = ACTIONS(7281), - [anon_sym_DASH_GT] = ACTIONS(7281), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7279), - [anon_sym_override] = ACTIONS(7279), - [anon_sym_requires] = ACTIONS(7279), - [anon_sym_COLON_RBRACK] = ACTIONS(7281), - }, - [STATE(2999)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7327), - [anon_sym_COMMA] = ACTIONS(7327), - [anon_sym_LPAREN2] = ACTIONS(7327), - [anon_sym_DASH] = ACTIONS(7325), - [anon_sym_PLUS] = ACTIONS(7325), - [anon_sym_STAR] = ACTIONS(7325), - [anon_sym_SLASH] = ACTIONS(7325), - [anon_sym_PERCENT] = ACTIONS(7325), - [anon_sym_PIPE_PIPE] = ACTIONS(7327), - [anon_sym_AMP_AMP] = ACTIONS(7327), - [anon_sym_PIPE] = ACTIONS(7325), - [anon_sym_CARET] = ACTIONS(7325), - [anon_sym_AMP] = ACTIONS(7325), - [anon_sym_EQ_EQ] = ACTIONS(7327), - [anon_sym_BANG_EQ] = ACTIONS(7327), - [anon_sym_GT] = ACTIONS(7325), - [anon_sym_GT_EQ] = ACTIONS(7327), - [anon_sym_LT_EQ] = ACTIONS(7325), - [anon_sym_LT] = ACTIONS(7325), - [anon_sym_LT_LT] = ACTIONS(7325), - [anon_sym_GT_GT] = ACTIONS(7325), - [anon_sym___extension__] = ACTIONS(7327), - [anon_sym_LBRACE] = ACTIONS(7327), - [anon_sym_LBRACK] = ACTIONS(7327), - [anon_sym_RBRACK] = ACTIONS(7327), - [anon_sym_EQ] = ACTIONS(7325), - [anon_sym_const] = ACTIONS(7325), - [anon_sym_constexpr] = ACTIONS(7327), - [anon_sym_volatile] = ACTIONS(7327), - [anon_sym_restrict] = ACTIONS(7327), - [anon_sym___restrict__] = ACTIONS(7327), - [anon_sym__Atomic] = ACTIONS(7327), - [anon_sym__Noreturn] = ACTIONS(7327), - [anon_sym_noreturn] = ACTIONS(7327), - [anon_sym__Nonnull] = ACTIONS(7327), - [anon_sym_mutable] = ACTIONS(7327), - [anon_sym_constinit] = ACTIONS(7327), - [anon_sym_consteval] = ACTIONS(7327), - [anon_sym_alignas] = ACTIONS(7327), - [anon_sym__Alignas] = ACTIONS(7327), - [anon_sym_QMARK] = ACTIONS(7327), - [anon_sym_STAR_EQ] = ACTIONS(7327), - [anon_sym_SLASH_EQ] = ACTIONS(7327), - [anon_sym_PERCENT_EQ] = ACTIONS(7327), - [anon_sym_PLUS_EQ] = ACTIONS(7327), - [anon_sym_DASH_EQ] = ACTIONS(7327), - [anon_sym_LT_LT_EQ] = ACTIONS(7327), - [anon_sym_GT_GT_EQ] = ACTIONS(7327), - [anon_sym_AMP_EQ] = ACTIONS(7327), - [anon_sym_CARET_EQ] = ACTIONS(7327), - [anon_sym_PIPE_EQ] = ACTIONS(7327), - [anon_sym_and_eq] = ACTIONS(7327), - [anon_sym_or_eq] = ACTIONS(7327), - [anon_sym_xor_eq] = ACTIONS(7327), - [anon_sym_LT_EQ_GT] = ACTIONS(7327), - [anon_sym_or] = ACTIONS(7325), - [anon_sym_and] = ACTIONS(7325), - [anon_sym_bitor] = ACTIONS(7327), - [anon_sym_xor] = ACTIONS(7325), - [anon_sym_bitand] = ACTIONS(7327), - [anon_sym_not_eq] = ACTIONS(7327), - [anon_sym_DASH_DASH] = ACTIONS(7327), - [anon_sym_PLUS_PLUS] = ACTIONS(7327), - [anon_sym_DOT] = ACTIONS(7325), - [anon_sym_DOT_STAR] = ACTIONS(7327), - [anon_sym_DASH_GT] = ACTIONS(7327), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7327), - [anon_sym_override] = ACTIONS(7327), - [anon_sym_requires] = ACTIONS(7327), - }, - [STATE(3000)] = { - [sym_identifier] = ACTIONS(6844), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6846), - [anon_sym_COMMA] = ACTIONS(6846), - [anon_sym_RPAREN] = ACTIONS(6846), - [aux_sym_preproc_if_token2] = ACTIONS(6846), - [aux_sym_preproc_else_token1] = ACTIONS(6846), - [aux_sym_preproc_elif_token1] = ACTIONS(6844), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6846), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6846), - [anon_sym_LPAREN2] = ACTIONS(6846), - [anon_sym_DASH] = ACTIONS(6844), - [anon_sym_PLUS] = ACTIONS(6844), - [anon_sym_STAR] = ACTIONS(6846), - [anon_sym_SLASH] = ACTIONS(6844), - [anon_sym_PERCENT] = ACTIONS(6846), - [anon_sym_PIPE_PIPE] = ACTIONS(6846), - [anon_sym_AMP_AMP] = ACTIONS(6846), - [anon_sym_PIPE] = ACTIONS(6844), - [anon_sym_CARET] = ACTIONS(6846), - [anon_sym_AMP] = ACTIONS(6844), - [anon_sym_EQ_EQ] = ACTIONS(6846), - [anon_sym_BANG_EQ] = ACTIONS(6846), - [anon_sym_GT] = ACTIONS(6844), - [anon_sym_GT_EQ] = ACTIONS(6846), - [anon_sym_LT_EQ] = ACTIONS(6844), - [anon_sym_LT] = ACTIONS(6844), - [anon_sym_LT_LT] = ACTIONS(6846), - [anon_sym_GT_GT] = ACTIONS(6846), - [anon_sym_SEMI] = ACTIONS(6846), - [anon_sym___extension__] = ACTIONS(6844), - [anon_sym___attribute__] = ACTIONS(6844), - [anon_sym___attribute] = ACTIONS(6844), - [anon_sym_COLON] = ACTIONS(6844), - [anon_sym_COLON_COLON] = ACTIONS(6846), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6846), - [anon_sym_LBRACE] = ACTIONS(6846), - [anon_sym_RBRACE] = ACTIONS(6846), - [anon_sym_LBRACK] = ACTIONS(6846), - [anon_sym_const] = ACTIONS(6844), - [anon_sym_constexpr] = ACTIONS(6844), - [anon_sym_volatile] = ACTIONS(6844), - [anon_sym_restrict] = ACTIONS(6844), - [anon_sym___restrict__] = ACTIONS(6844), - [anon_sym__Atomic] = ACTIONS(6844), - [anon_sym__Noreturn] = ACTIONS(6844), - [anon_sym_noreturn] = ACTIONS(6844), - [anon_sym__Nonnull] = ACTIONS(6844), - [anon_sym_mutable] = ACTIONS(6844), - [anon_sym_constinit] = ACTIONS(6844), - [anon_sym_consteval] = ACTIONS(6844), - [anon_sym_alignas] = ACTIONS(6844), - [anon_sym__Alignas] = ACTIONS(6844), - [anon_sym_QMARK] = ACTIONS(6846), - [anon_sym_LT_EQ_GT] = ACTIONS(6846), - [anon_sym_or] = ACTIONS(6844), - [anon_sym_and] = ACTIONS(6844), - [anon_sym_bitor] = ACTIONS(6844), - [anon_sym_xor] = ACTIONS(6844), - [anon_sym_bitand] = ACTIONS(6844), - [anon_sym_not_eq] = ACTIONS(6844), - [anon_sym_DASH_DASH] = ACTIONS(6846), - [anon_sym_PLUS_PLUS] = ACTIONS(6846), - [anon_sym_DOT] = ACTIONS(6844), - [anon_sym_DOT_STAR] = ACTIONS(6846), - [anon_sym_DASH_GT] = ACTIONS(6846), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6844), - [anon_sym_override] = ACTIONS(6844), - [anon_sym_requires] = ACTIONS(6844), - [anon_sym_COLON_RBRACK] = ACTIONS(6846), - }, - [STATE(3001)] = { - [sym_identifier] = ACTIONS(7421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7423), - [anon_sym_COMMA] = ACTIONS(7423), - [anon_sym_RPAREN] = ACTIONS(7423), - [anon_sym_LPAREN2] = ACTIONS(7423), - [anon_sym_DASH] = ACTIONS(7421), - [anon_sym_PLUS] = ACTIONS(7421), - [anon_sym_STAR] = ACTIONS(7423), - [anon_sym_SLASH] = ACTIONS(7421), - [anon_sym_PERCENT] = ACTIONS(7423), - [anon_sym_PIPE_PIPE] = ACTIONS(7423), - [anon_sym_AMP_AMP] = ACTIONS(7423), - [anon_sym_PIPE] = ACTIONS(7421), - [anon_sym_CARET] = ACTIONS(7423), - [anon_sym_AMP] = ACTIONS(7421), - [anon_sym_EQ_EQ] = ACTIONS(7423), - [anon_sym_BANG_EQ] = ACTIONS(7423), - [anon_sym_GT] = ACTIONS(7421), - [anon_sym_GT_EQ] = ACTIONS(7423), - [anon_sym_LT_EQ] = ACTIONS(7421), - [anon_sym_LT] = ACTIONS(7421), - [anon_sym_LT_LT] = ACTIONS(7423), - [anon_sym_GT_GT] = ACTIONS(7423), - [anon_sym_SEMI] = ACTIONS(7423), - [anon_sym___extension__] = ACTIONS(7421), - [anon_sym___attribute__] = ACTIONS(7421), - [anon_sym___attribute] = ACTIONS(7421), - [anon_sym_COLON] = ACTIONS(7421), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7423), - [anon_sym___based] = ACTIONS(7421), - [anon_sym_LBRACE] = ACTIONS(7423), - [anon_sym_RBRACE] = ACTIONS(7423), - [anon_sym_signed] = ACTIONS(7421), - [anon_sym_unsigned] = ACTIONS(7421), - [anon_sym_long] = ACTIONS(7421), - [anon_sym_short] = ACTIONS(7421), - [anon_sym_LBRACK] = ACTIONS(7423), - [anon_sym_const] = ACTIONS(7421), - [anon_sym_constexpr] = ACTIONS(7421), - [anon_sym_volatile] = ACTIONS(7421), - [anon_sym_restrict] = ACTIONS(7421), - [anon_sym___restrict__] = ACTIONS(7421), - [anon_sym__Atomic] = ACTIONS(7421), - [anon_sym__Noreturn] = ACTIONS(7421), - [anon_sym_noreturn] = ACTIONS(7421), - [anon_sym__Nonnull] = ACTIONS(7421), - [anon_sym_mutable] = ACTIONS(7421), - [anon_sym_constinit] = ACTIONS(7421), - [anon_sym_consteval] = ACTIONS(7421), - [anon_sym_alignas] = ACTIONS(7421), - [anon_sym__Alignas] = ACTIONS(7421), - [sym_primitive_type] = ACTIONS(7421), - [anon_sym_QMARK] = ACTIONS(7423), - [anon_sym_LT_EQ_GT] = ACTIONS(7423), - [anon_sym_or] = ACTIONS(7421), - [anon_sym_and] = ACTIONS(7421), - [anon_sym_bitor] = ACTIONS(7421), - [anon_sym_xor] = ACTIONS(7421), - [anon_sym_bitand] = ACTIONS(7421), - [anon_sym_not_eq] = ACTIONS(7421), - [anon_sym_DASH_DASH] = ACTIONS(7423), - [anon_sym_PLUS_PLUS] = ACTIONS(7423), - [anon_sym_DOT] = ACTIONS(7421), - [anon_sym_DOT_STAR] = ACTIONS(7423), - [anon_sym_DASH_GT] = ACTIONS(7423), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7421), - [anon_sym_override] = ACTIONS(7421), - [anon_sym_requires] = ACTIONS(7421), - [anon_sym_COLON_RBRACK] = ACTIONS(7423), - }, - [STATE(3002)] = { - [sym_identifier] = ACTIONS(7325), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7327), - [anon_sym_COMMA] = ACTIONS(7327), - [anon_sym_RPAREN] = ACTIONS(7327), - [anon_sym_LPAREN2] = ACTIONS(7327), - [anon_sym_DASH] = ACTIONS(7325), - [anon_sym_PLUS] = ACTIONS(7325), - [anon_sym_STAR] = ACTIONS(7327), - [anon_sym_SLASH] = ACTIONS(7325), - [anon_sym_PERCENT] = ACTIONS(7327), - [anon_sym_PIPE_PIPE] = ACTIONS(7327), - [anon_sym_AMP_AMP] = ACTIONS(7327), - [anon_sym_PIPE] = ACTIONS(7325), - [anon_sym_CARET] = ACTIONS(7327), - [anon_sym_AMP] = ACTIONS(7325), - [anon_sym_EQ_EQ] = ACTIONS(7327), - [anon_sym_BANG_EQ] = ACTIONS(7327), - [anon_sym_GT] = ACTIONS(7325), - [anon_sym_GT_EQ] = ACTIONS(7327), - [anon_sym_LT_EQ] = ACTIONS(7325), - [anon_sym_LT] = ACTIONS(7325), - [anon_sym_LT_LT] = ACTIONS(7327), - [anon_sym_GT_GT] = ACTIONS(7327), - [anon_sym_SEMI] = ACTIONS(7327), - [anon_sym___extension__] = ACTIONS(7325), - [anon_sym___attribute__] = ACTIONS(7325), - [anon_sym___attribute] = ACTIONS(7325), - [anon_sym_COLON] = ACTIONS(7325), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7327), - [anon_sym___based] = ACTIONS(7325), - [anon_sym_LBRACE] = ACTIONS(7327), - [anon_sym_RBRACE] = ACTIONS(7327), - [anon_sym_signed] = ACTIONS(7325), - [anon_sym_unsigned] = ACTIONS(7325), - [anon_sym_long] = ACTIONS(7325), - [anon_sym_short] = ACTIONS(7325), - [anon_sym_LBRACK] = ACTIONS(7327), - [anon_sym_const] = ACTIONS(7325), - [anon_sym_constexpr] = ACTIONS(7325), - [anon_sym_volatile] = ACTIONS(7325), - [anon_sym_restrict] = ACTIONS(7325), - [anon_sym___restrict__] = ACTIONS(7325), - [anon_sym__Atomic] = ACTIONS(7325), - [anon_sym__Noreturn] = ACTIONS(7325), - [anon_sym_noreturn] = ACTIONS(7325), - [anon_sym__Nonnull] = ACTIONS(7325), - [anon_sym_mutable] = ACTIONS(7325), - [anon_sym_constinit] = ACTIONS(7325), - [anon_sym_consteval] = ACTIONS(7325), - [anon_sym_alignas] = ACTIONS(7325), - [anon_sym__Alignas] = ACTIONS(7325), - [sym_primitive_type] = ACTIONS(7325), - [anon_sym_QMARK] = ACTIONS(7327), - [anon_sym_LT_EQ_GT] = ACTIONS(7327), - [anon_sym_or] = ACTIONS(7325), - [anon_sym_and] = ACTIONS(7325), - [anon_sym_bitor] = ACTIONS(7325), - [anon_sym_xor] = ACTIONS(7325), - [anon_sym_bitand] = ACTIONS(7325), - [anon_sym_not_eq] = ACTIONS(7325), - [anon_sym_DASH_DASH] = ACTIONS(7327), - [anon_sym_PLUS_PLUS] = ACTIONS(7327), - [anon_sym_DOT] = ACTIONS(7325), - [anon_sym_DOT_STAR] = ACTIONS(7327), - [anon_sym_DASH_GT] = ACTIONS(7327), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7325), - [anon_sym_override] = ACTIONS(7325), - [anon_sym_requires] = ACTIONS(7325), - [anon_sym_COLON_RBRACK] = ACTIONS(7327), - }, - [STATE(3003)] = { - [sym_identifier] = ACTIONS(7329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7331), - [anon_sym_COMMA] = ACTIONS(7331), - [anon_sym_RPAREN] = ACTIONS(7331), - [anon_sym_LPAREN2] = ACTIONS(7331), - [anon_sym_DASH] = ACTIONS(7329), - [anon_sym_PLUS] = ACTIONS(7329), - [anon_sym_STAR] = ACTIONS(7331), - [anon_sym_SLASH] = ACTIONS(7329), - [anon_sym_PERCENT] = ACTIONS(7331), - [anon_sym_PIPE_PIPE] = ACTIONS(7331), - [anon_sym_AMP_AMP] = ACTIONS(7331), - [anon_sym_PIPE] = ACTIONS(7329), - [anon_sym_CARET] = ACTIONS(7331), - [anon_sym_AMP] = ACTIONS(7329), - [anon_sym_EQ_EQ] = ACTIONS(7331), - [anon_sym_BANG_EQ] = ACTIONS(7331), - [anon_sym_GT] = ACTIONS(7329), - [anon_sym_GT_EQ] = ACTIONS(7331), - [anon_sym_LT_EQ] = ACTIONS(7329), - [anon_sym_LT] = ACTIONS(7329), - [anon_sym_LT_LT] = ACTIONS(7331), - [anon_sym_GT_GT] = ACTIONS(7331), - [anon_sym_SEMI] = ACTIONS(7331), - [anon_sym___extension__] = ACTIONS(7329), - [anon_sym___attribute__] = ACTIONS(7329), - [anon_sym___attribute] = ACTIONS(7329), - [anon_sym_COLON] = ACTIONS(7329), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7331), - [anon_sym___based] = ACTIONS(7329), - [anon_sym_LBRACE] = ACTIONS(7331), - [anon_sym_RBRACE] = ACTIONS(7331), - [anon_sym_signed] = ACTIONS(7329), - [anon_sym_unsigned] = ACTIONS(7329), - [anon_sym_long] = ACTIONS(7329), - [anon_sym_short] = ACTIONS(7329), - [anon_sym_LBRACK] = ACTIONS(7331), - [anon_sym_const] = ACTIONS(7329), - [anon_sym_constexpr] = ACTIONS(7329), - [anon_sym_volatile] = ACTIONS(7329), - [anon_sym_restrict] = ACTIONS(7329), - [anon_sym___restrict__] = ACTIONS(7329), - [anon_sym__Atomic] = ACTIONS(7329), - [anon_sym__Noreturn] = ACTIONS(7329), - [anon_sym_noreturn] = ACTIONS(7329), - [anon_sym__Nonnull] = ACTIONS(7329), - [anon_sym_mutable] = ACTIONS(7329), - [anon_sym_constinit] = ACTIONS(7329), - [anon_sym_consteval] = ACTIONS(7329), - [anon_sym_alignas] = ACTIONS(7329), - [anon_sym__Alignas] = ACTIONS(7329), - [sym_primitive_type] = ACTIONS(7329), - [anon_sym_QMARK] = ACTIONS(7331), - [anon_sym_LT_EQ_GT] = ACTIONS(7331), - [anon_sym_or] = ACTIONS(7329), - [anon_sym_and] = ACTIONS(7329), - [anon_sym_bitor] = ACTIONS(7329), - [anon_sym_xor] = ACTIONS(7329), - [anon_sym_bitand] = ACTIONS(7329), - [anon_sym_not_eq] = ACTIONS(7329), - [anon_sym_DASH_DASH] = ACTIONS(7331), - [anon_sym_PLUS_PLUS] = ACTIONS(7331), - [anon_sym_DOT] = ACTIONS(7329), - [anon_sym_DOT_STAR] = ACTIONS(7331), - [anon_sym_DASH_GT] = ACTIONS(7331), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7329), - [anon_sym_override] = ACTIONS(7329), - [anon_sym_requires] = ACTIONS(7329), - [anon_sym_COLON_RBRACK] = ACTIONS(7331), - }, - [STATE(3004)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7331), - [anon_sym_COMMA] = ACTIONS(7331), - [anon_sym_LPAREN2] = ACTIONS(7331), - [anon_sym_DASH] = ACTIONS(7329), - [anon_sym_PLUS] = ACTIONS(7329), - [anon_sym_STAR] = ACTIONS(7329), - [anon_sym_SLASH] = ACTIONS(7329), - [anon_sym_PERCENT] = ACTIONS(7329), - [anon_sym_PIPE_PIPE] = ACTIONS(7331), - [anon_sym_AMP_AMP] = ACTIONS(7331), - [anon_sym_PIPE] = ACTIONS(7329), - [anon_sym_CARET] = ACTIONS(7329), - [anon_sym_AMP] = ACTIONS(7329), - [anon_sym_EQ_EQ] = ACTIONS(7331), - [anon_sym_BANG_EQ] = ACTIONS(7331), - [anon_sym_GT] = ACTIONS(7329), - [anon_sym_GT_EQ] = ACTIONS(7331), - [anon_sym_LT_EQ] = ACTIONS(7329), - [anon_sym_LT] = ACTIONS(7329), - [anon_sym_LT_LT] = ACTIONS(7329), - [anon_sym_GT_GT] = ACTIONS(7329), - [anon_sym___extension__] = ACTIONS(7331), - [anon_sym_LBRACE] = ACTIONS(7331), - [anon_sym_LBRACK] = ACTIONS(7331), - [anon_sym_RBRACK] = ACTIONS(7331), - [anon_sym_EQ] = ACTIONS(7329), - [anon_sym_const] = ACTIONS(7329), - [anon_sym_constexpr] = ACTIONS(7331), - [anon_sym_volatile] = ACTIONS(7331), - [anon_sym_restrict] = ACTIONS(7331), - [anon_sym___restrict__] = ACTIONS(7331), - [anon_sym__Atomic] = ACTIONS(7331), - [anon_sym__Noreturn] = ACTIONS(7331), - [anon_sym_noreturn] = ACTIONS(7331), - [anon_sym__Nonnull] = ACTIONS(7331), - [anon_sym_mutable] = ACTIONS(7331), - [anon_sym_constinit] = ACTIONS(7331), - [anon_sym_consteval] = ACTIONS(7331), - [anon_sym_alignas] = ACTIONS(7331), - [anon_sym__Alignas] = ACTIONS(7331), - [anon_sym_QMARK] = ACTIONS(7331), - [anon_sym_STAR_EQ] = ACTIONS(7331), - [anon_sym_SLASH_EQ] = ACTIONS(7331), - [anon_sym_PERCENT_EQ] = ACTIONS(7331), - [anon_sym_PLUS_EQ] = ACTIONS(7331), - [anon_sym_DASH_EQ] = ACTIONS(7331), - [anon_sym_LT_LT_EQ] = ACTIONS(7331), - [anon_sym_GT_GT_EQ] = ACTIONS(7331), - [anon_sym_AMP_EQ] = ACTIONS(7331), - [anon_sym_CARET_EQ] = ACTIONS(7331), - [anon_sym_PIPE_EQ] = ACTIONS(7331), - [anon_sym_and_eq] = ACTIONS(7331), - [anon_sym_or_eq] = ACTIONS(7331), - [anon_sym_xor_eq] = ACTIONS(7331), - [anon_sym_LT_EQ_GT] = ACTIONS(7331), - [anon_sym_or] = ACTIONS(7329), - [anon_sym_and] = ACTIONS(7329), - [anon_sym_bitor] = ACTIONS(7331), - [anon_sym_xor] = ACTIONS(7329), - [anon_sym_bitand] = ACTIONS(7331), - [anon_sym_not_eq] = ACTIONS(7331), - [anon_sym_DASH_DASH] = ACTIONS(7331), - [anon_sym_PLUS_PLUS] = ACTIONS(7331), - [anon_sym_DOT] = ACTIONS(7329), - [anon_sym_DOT_STAR] = ACTIONS(7331), - [anon_sym_DASH_GT] = ACTIONS(7331), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7331), - [anon_sym_override] = ACTIONS(7331), - [anon_sym_requires] = ACTIONS(7331), - }, - [STATE(3005)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), - [anon_sym_COMMA] = ACTIONS(7237), - [anon_sym_LPAREN2] = ACTIONS(7237), - [anon_sym_DASH] = ACTIONS(7235), - [anon_sym_PLUS] = ACTIONS(7235), - [anon_sym_STAR] = ACTIONS(7235), - [anon_sym_SLASH] = ACTIONS(7235), - [anon_sym_PERCENT] = ACTIONS(7235), - [anon_sym_PIPE_PIPE] = ACTIONS(7237), - [anon_sym_AMP_AMP] = ACTIONS(7237), - [anon_sym_PIPE] = ACTIONS(7235), - [anon_sym_CARET] = ACTIONS(7235), - [anon_sym_AMP] = ACTIONS(7235), - [anon_sym_EQ_EQ] = ACTIONS(7237), - [anon_sym_BANG_EQ] = ACTIONS(7237), - [anon_sym_GT] = ACTIONS(7235), - [anon_sym_GT_EQ] = ACTIONS(7237), - [anon_sym_LT_EQ] = ACTIONS(7235), - [anon_sym_LT] = ACTIONS(7235), - [anon_sym_LT_LT] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7235), - [anon_sym___extension__] = ACTIONS(7237), - [anon_sym_LBRACE] = ACTIONS(7237), - [anon_sym_LBRACK] = ACTIONS(7237), - [anon_sym_RBRACK] = ACTIONS(7237), - [anon_sym_EQ] = ACTIONS(7235), - [anon_sym_const] = ACTIONS(7235), - [anon_sym_constexpr] = ACTIONS(7237), - [anon_sym_volatile] = ACTIONS(7237), - [anon_sym_restrict] = ACTIONS(7237), - [anon_sym___restrict__] = ACTIONS(7237), - [anon_sym__Atomic] = ACTIONS(7237), - [anon_sym__Noreturn] = ACTIONS(7237), - [anon_sym_noreturn] = ACTIONS(7237), - [anon_sym__Nonnull] = ACTIONS(7237), - [anon_sym_mutable] = ACTIONS(7237), - [anon_sym_constinit] = ACTIONS(7237), - [anon_sym_consteval] = ACTIONS(7237), - [anon_sym_alignas] = ACTIONS(7237), - [anon_sym__Alignas] = ACTIONS(7237), - [anon_sym_QMARK] = ACTIONS(7237), - [anon_sym_STAR_EQ] = ACTIONS(7237), - [anon_sym_SLASH_EQ] = ACTIONS(7237), - [anon_sym_PERCENT_EQ] = ACTIONS(7237), - [anon_sym_PLUS_EQ] = ACTIONS(7237), - [anon_sym_DASH_EQ] = ACTIONS(7237), - [anon_sym_LT_LT_EQ] = ACTIONS(7237), - [anon_sym_GT_GT_EQ] = ACTIONS(7237), - [anon_sym_AMP_EQ] = ACTIONS(7237), - [anon_sym_CARET_EQ] = ACTIONS(7237), - [anon_sym_PIPE_EQ] = ACTIONS(7237), - [anon_sym_and_eq] = ACTIONS(7237), - [anon_sym_or_eq] = ACTIONS(7237), - [anon_sym_xor_eq] = ACTIONS(7237), - [anon_sym_LT_EQ_GT] = ACTIONS(7237), - [anon_sym_or] = ACTIONS(7235), - [anon_sym_and] = ACTIONS(7235), - [anon_sym_bitor] = ACTIONS(7237), - [anon_sym_xor] = ACTIONS(7235), - [anon_sym_bitand] = ACTIONS(7237), - [anon_sym_not_eq] = ACTIONS(7237), - [anon_sym_DASH_DASH] = ACTIONS(7237), - [anon_sym_PLUS_PLUS] = ACTIONS(7237), - [anon_sym_DOT] = ACTIONS(7235), - [anon_sym_DOT_STAR] = ACTIONS(7237), - [anon_sym_DASH_GT] = ACTIONS(7237), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_RBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7237), - [anon_sym_override] = ACTIONS(7237), - [anon_sym_requires] = ACTIONS(7237), - }, - [STATE(3006)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7247), - [anon_sym_COMMA] = ACTIONS(7247), - [anon_sym_LPAREN2] = ACTIONS(7247), - [anon_sym_DASH] = ACTIONS(7245), - [anon_sym_PLUS] = ACTIONS(7245), - [anon_sym_STAR] = ACTIONS(7245), - [anon_sym_SLASH] = ACTIONS(7245), - [anon_sym_PERCENT] = ACTIONS(7245), - [anon_sym_PIPE_PIPE] = ACTIONS(7247), - [anon_sym_AMP_AMP] = ACTIONS(7247), - [anon_sym_PIPE] = ACTIONS(7245), - [anon_sym_CARET] = ACTIONS(7245), - [anon_sym_AMP] = ACTIONS(7245), - [anon_sym_EQ_EQ] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7247), - [anon_sym_GT] = ACTIONS(7245), - [anon_sym_GT_EQ] = ACTIONS(7247), - [anon_sym_LT_EQ] = ACTIONS(7245), - [anon_sym_LT] = ACTIONS(7245), - [anon_sym_LT_LT] = ACTIONS(7245), - [anon_sym_GT_GT] = ACTIONS(7245), - [anon_sym___extension__] = ACTIONS(7247), - [anon_sym_LBRACE] = ACTIONS(7247), - [anon_sym_LBRACK] = ACTIONS(7247), - [anon_sym_RBRACK] = ACTIONS(7247), - [anon_sym_EQ] = ACTIONS(7245), - [anon_sym_const] = ACTIONS(7245), - [anon_sym_constexpr] = ACTIONS(7247), - [anon_sym_volatile] = ACTIONS(7247), - [anon_sym_restrict] = ACTIONS(7247), - [anon_sym___restrict__] = ACTIONS(7247), - [anon_sym__Atomic] = ACTIONS(7247), - [anon_sym__Noreturn] = ACTIONS(7247), - [anon_sym_noreturn] = ACTIONS(7247), - [anon_sym__Nonnull] = ACTIONS(7247), - [anon_sym_mutable] = ACTIONS(7247), - [anon_sym_constinit] = ACTIONS(7247), - [anon_sym_consteval] = ACTIONS(7247), - [anon_sym_alignas] = ACTIONS(7247), - [anon_sym__Alignas] = ACTIONS(7247), - [anon_sym_QMARK] = ACTIONS(7247), - [anon_sym_STAR_EQ] = ACTIONS(7247), - [anon_sym_SLASH_EQ] = ACTIONS(7247), - [anon_sym_PERCENT_EQ] = ACTIONS(7247), - [anon_sym_PLUS_EQ] = ACTIONS(7247), - [anon_sym_DASH_EQ] = ACTIONS(7247), - [anon_sym_LT_LT_EQ] = ACTIONS(7247), - [anon_sym_GT_GT_EQ] = ACTIONS(7247), - [anon_sym_AMP_EQ] = ACTIONS(7247), - [anon_sym_CARET_EQ] = ACTIONS(7247), - [anon_sym_PIPE_EQ] = ACTIONS(7247), - [anon_sym_and_eq] = ACTIONS(7247), - [anon_sym_or_eq] = ACTIONS(7247), - [anon_sym_xor_eq] = ACTIONS(7247), - [anon_sym_LT_EQ_GT] = ACTIONS(7247), - [anon_sym_or] = ACTIONS(7245), - [anon_sym_and] = ACTIONS(7245), - [anon_sym_bitor] = ACTIONS(7247), - [anon_sym_xor] = ACTIONS(7245), - [anon_sym_bitand] = ACTIONS(7247), - [anon_sym_not_eq] = ACTIONS(7247), - [anon_sym_DASH_DASH] = ACTIONS(7247), - [anon_sym_PLUS_PLUS] = ACTIONS(7247), - [anon_sym_DOT] = ACTIONS(7245), - [anon_sym_DOT_STAR] = ACTIONS(7247), - [anon_sym_DASH_GT] = ACTIONS(7247), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7247), - [anon_sym_override] = ACTIONS(7247), - [anon_sym_requires] = ACTIONS(7247), - }, - [STATE(3007)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7265), - [anon_sym_COMMA] = ACTIONS(7265), - [anon_sym_LPAREN2] = ACTIONS(7265), - [anon_sym_DASH] = ACTIONS(7263), - [anon_sym_PLUS] = ACTIONS(7263), - [anon_sym_STAR] = ACTIONS(7263), - [anon_sym_SLASH] = ACTIONS(7263), - [anon_sym_PERCENT] = ACTIONS(7263), - [anon_sym_PIPE_PIPE] = ACTIONS(7265), - [anon_sym_AMP_AMP] = ACTIONS(7265), - [anon_sym_PIPE] = ACTIONS(7263), - [anon_sym_CARET] = ACTIONS(7263), - [anon_sym_AMP] = ACTIONS(7263), - [anon_sym_EQ_EQ] = ACTIONS(7265), - [anon_sym_BANG_EQ] = ACTIONS(7265), - [anon_sym_GT] = ACTIONS(7263), - [anon_sym_GT_EQ] = ACTIONS(7263), - [anon_sym_LT_EQ] = ACTIONS(7263), - [anon_sym_LT] = ACTIONS(7263), - [anon_sym_LT_LT] = ACTIONS(7263), - [anon_sym_GT_GT] = ACTIONS(7263), - [anon_sym___extension__] = ACTIONS(7265), - [anon_sym_LBRACE] = ACTIONS(7265), - [anon_sym_LBRACK] = ACTIONS(7265), - [anon_sym_EQ] = ACTIONS(7263), - [anon_sym_const] = ACTIONS(7263), - [anon_sym_constexpr] = ACTIONS(7265), - [anon_sym_volatile] = ACTIONS(7265), - [anon_sym_restrict] = ACTIONS(7265), - [anon_sym___restrict__] = ACTIONS(7265), - [anon_sym__Atomic] = ACTIONS(7265), - [anon_sym__Noreturn] = ACTIONS(7265), - [anon_sym_noreturn] = ACTIONS(7265), - [anon_sym__Nonnull] = ACTIONS(7265), - [anon_sym_mutable] = ACTIONS(7265), - [anon_sym_constinit] = ACTIONS(7265), - [anon_sym_consteval] = ACTIONS(7265), - [anon_sym_alignas] = ACTIONS(7265), - [anon_sym__Alignas] = ACTIONS(7265), - [anon_sym_QMARK] = ACTIONS(7265), - [anon_sym_STAR_EQ] = ACTIONS(7265), - [anon_sym_SLASH_EQ] = ACTIONS(7265), - [anon_sym_PERCENT_EQ] = ACTIONS(7265), - [anon_sym_PLUS_EQ] = ACTIONS(7265), - [anon_sym_DASH_EQ] = ACTIONS(7265), - [anon_sym_LT_LT_EQ] = ACTIONS(7265), - [anon_sym_GT_GT_EQ] = ACTIONS(7263), - [anon_sym_AMP_EQ] = ACTIONS(7265), - [anon_sym_CARET_EQ] = ACTIONS(7265), - [anon_sym_PIPE_EQ] = ACTIONS(7265), - [anon_sym_and_eq] = ACTIONS(7265), - [anon_sym_or_eq] = ACTIONS(7265), - [anon_sym_xor_eq] = ACTIONS(7265), - [anon_sym_LT_EQ_GT] = ACTIONS(7265), - [anon_sym_or] = ACTIONS(7263), - [anon_sym_and] = ACTIONS(7263), - [anon_sym_bitor] = ACTIONS(7265), - [anon_sym_xor] = ACTIONS(7263), - [anon_sym_bitand] = ACTIONS(7265), - [anon_sym_not_eq] = ACTIONS(7265), - [anon_sym_DASH_DASH] = ACTIONS(7265), - [anon_sym_PLUS_PLUS] = ACTIONS(7265), - [anon_sym_DOT] = ACTIONS(7263), - [anon_sym_DOT_STAR] = ACTIONS(7265), - [anon_sym_DASH_GT] = ACTIONS(7265), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7265), - [anon_sym_override] = ACTIONS(7265), - [anon_sym_GT2] = ACTIONS(7265), - [anon_sym_requires] = ACTIONS(7265), }, - [STATE(3008)] = { - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_unaligned_ptr_modifier] = STATE(6570), - [sym_ms_pointer_modifier] = STATE(3013), - [sym__declarator] = STATE(8702), - [sym__abstract_declarator] = STATE(8875), - [sym_parenthesized_declarator] = STATE(8469), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_function_declarator] = STATE(8469), - [sym_abstract_function_declarator] = STATE(8389), - [sym_array_declarator] = STATE(8469), - [sym_abstract_array_declarator] = STATE(8389), - [sym_type_qualifier] = STATE(3990), - [sym_alignas_qualifier] = STATE(7436), - [sym_parameter_list] = STATE(4601), - [sym_decltype] = STATE(10976), - [sym_reference_declarator] = STATE(8469), - [sym_abstract_reference_declarator] = STATE(8389), - [sym_structured_binding_declarator] = STATE(8469), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7869), - [sym_qualified_identifier] = STATE(8469), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__type_definition_type_repeat1] = STATE(3990), - [aux_sym_pointer_declarator_repeat1] = STATE(3013), - [sym_identifier] = ACTIONS(7868), - [anon_sym_RPAREN] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(5301), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(5303), - [anon_sym_AMP_AMP] = ACTIONS(5305), - [anon_sym_AMP] = ACTIONS(5307), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym_COLON_COLON] = ACTIONS(8360), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(2933), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(2933), - [sym_ms_signed_ptr_modifier] = ACTIONS(2933), - [anon_sym__unaligned] = ACTIONS(2935), - [anon_sym___unaligned] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(5311), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym__Nonnull] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2939), - [anon_sym__Alignas] = ACTIONS(2939), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), - }, - [STATE(3009)] = { - [sym_identifier] = ACTIONS(7345), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7347), - [anon_sym_COMMA] = ACTIONS(7347), - [anon_sym_RPAREN] = ACTIONS(7347), - [anon_sym_LPAREN2] = ACTIONS(7347), - [anon_sym_DASH] = ACTIONS(7345), - [anon_sym_PLUS] = ACTIONS(7345), - [anon_sym_STAR] = ACTIONS(7347), - [anon_sym_SLASH] = ACTIONS(7345), - [anon_sym_PERCENT] = ACTIONS(7347), - [anon_sym_PIPE_PIPE] = ACTIONS(7347), - [anon_sym_AMP_AMP] = ACTIONS(7347), - [anon_sym_PIPE] = ACTIONS(7345), - [anon_sym_CARET] = ACTIONS(7347), - [anon_sym_AMP] = ACTIONS(7345), - [anon_sym_EQ_EQ] = ACTIONS(7347), - [anon_sym_BANG_EQ] = ACTIONS(7347), - [anon_sym_GT] = ACTIONS(7345), - [anon_sym_GT_EQ] = ACTIONS(7347), - [anon_sym_LT_EQ] = ACTIONS(7345), - [anon_sym_LT] = ACTIONS(7345), - [anon_sym_LT_LT] = ACTIONS(7347), - [anon_sym_GT_GT] = ACTIONS(7347), - [anon_sym_SEMI] = ACTIONS(7347), - [anon_sym___extension__] = ACTIONS(7345), - [anon_sym___attribute__] = ACTIONS(7345), - [anon_sym___attribute] = ACTIONS(7345), - [anon_sym_COLON] = ACTIONS(7345), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7347), - [anon_sym___based] = ACTIONS(7345), - [anon_sym_LBRACE] = ACTIONS(7347), - [anon_sym_RBRACE] = ACTIONS(7347), - [anon_sym_signed] = ACTIONS(7345), - [anon_sym_unsigned] = ACTIONS(7345), - [anon_sym_long] = ACTIONS(7345), - [anon_sym_short] = ACTIONS(7345), - [anon_sym_LBRACK] = ACTIONS(7347), - [anon_sym_const] = ACTIONS(7345), - [anon_sym_constexpr] = ACTIONS(7345), - [anon_sym_volatile] = ACTIONS(7345), - [anon_sym_restrict] = ACTIONS(7345), - [anon_sym___restrict__] = ACTIONS(7345), - [anon_sym__Atomic] = ACTIONS(7345), - [anon_sym__Noreturn] = ACTIONS(7345), - [anon_sym_noreturn] = ACTIONS(7345), - [anon_sym__Nonnull] = ACTIONS(7345), - [anon_sym_mutable] = ACTIONS(7345), - [anon_sym_constinit] = ACTIONS(7345), - [anon_sym_consteval] = ACTIONS(7345), - [anon_sym_alignas] = ACTIONS(7345), - [anon_sym__Alignas] = ACTIONS(7345), - [sym_primitive_type] = ACTIONS(7345), - [anon_sym_QMARK] = ACTIONS(7347), - [anon_sym_LT_EQ_GT] = ACTIONS(7347), - [anon_sym_or] = ACTIONS(7345), - [anon_sym_and] = ACTIONS(7345), - [anon_sym_bitor] = ACTIONS(7345), - [anon_sym_xor] = ACTIONS(7345), - [anon_sym_bitand] = ACTIONS(7345), - [anon_sym_not_eq] = ACTIONS(7345), - [anon_sym_DASH_DASH] = ACTIONS(7347), - [anon_sym_PLUS_PLUS] = ACTIONS(7347), - [anon_sym_DOT] = ACTIONS(7345), - [anon_sym_DOT_STAR] = ACTIONS(7347), - [anon_sym_DASH_GT] = ACTIONS(7347), + [STATE(2694)] = { + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6481), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(5936), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7345), - [anon_sym_override] = ACTIONS(7345), - [anon_sym_requires] = ACTIONS(7345), - [anon_sym_COLON_RBRACK] = ACTIONS(7347), - }, - [STATE(3010)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7269), - [anon_sym_COMMA] = ACTIONS(7269), - [anon_sym_LPAREN2] = ACTIONS(7269), - [anon_sym_DASH] = ACTIONS(7267), - [anon_sym_PLUS] = ACTIONS(7267), - [anon_sym_STAR] = ACTIONS(7267), - [anon_sym_SLASH] = ACTIONS(7267), - [anon_sym_PERCENT] = ACTIONS(7267), - [anon_sym_PIPE_PIPE] = ACTIONS(7269), - [anon_sym_AMP_AMP] = ACTIONS(7269), - [anon_sym_PIPE] = ACTIONS(7267), - [anon_sym_CARET] = ACTIONS(7267), - [anon_sym_AMP] = ACTIONS(7267), - [anon_sym_EQ_EQ] = ACTIONS(7269), - [anon_sym_BANG_EQ] = ACTIONS(7269), - [anon_sym_GT] = ACTIONS(7267), - [anon_sym_GT_EQ] = ACTIONS(7267), - [anon_sym_LT_EQ] = ACTIONS(7267), - [anon_sym_LT] = ACTIONS(7267), - [anon_sym_LT_LT] = ACTIONS(7267), - [anon_sym_GT_GT] = ACTIONS(7267), - [anon_sym___extension__] = ACTIONS(7269), - [anon_sym_LBRACE] = ACTIONS(7269), - [anon_sym_LBRACK] = ACTIONS(7269), - [anon_sym_EQ] = ACTIONS(7267), - [anon_sym_const] = ACTIONS(7267), - [anon_sym_constexpr] = ACTIONS(7269), - [anon_sym_volatile] = ACTIONS(7269), - [anon_sym_restrict] = ACTIONS(7269), - [anon_sym___restrict__] = ACTIONS(7269), - [anon_sym__Atomic] = ACTIONS(7269), - [anon_sym__Noreturn] = ACTIONS(7269), - [anon_sym_noreturn] = ACTIONS(7269), - [anon_sym__Nonnull] = ACTIONS(7269), - [anon_sym_mutable] = ACTIONS(7269), - [anon_sym_constinit] = ACTIONS(7269), - [anon_sym_consteval] = ACTIONS(7269), - [anon_sym_alignas] = ACTIONS(7269), - [anon_sym__Alignas] = ACTIONS(7269), - [anon_sym_QMARK] = ACTIONS(7269), - [anon_sym_STAR_EQ] = ACTIONS(7269), - [anon_sym_SLASH_EQ] = ACTIONS(7269), - [anon_sym_PERCENT_EQ] = ACTIONS(7269), - [anon_sym_PLUS_EQ] = ACTIONS(7269), - [anon_sym_DASH_EQ] = ACTIONS(7269), - [anon_sym_LT_LT_EQ] = ACTIONS(7269), - [anon_sym_GT_GT_EQ] = ACTIONS(7267), - [anon_sym_AMP_EQ] = ACTIONS(7269), - [anon_sym_CARET_EQ] = ACTIONS(7269), - [anon_sym_PIPE_EQ] = ACTIONS(7269), - [anon_sym_and_eq] = ACTIONS(7269), - [anon_sym_or_eq] = ACTIONS(7269), - [anon_sym_xor_eq] = ACTIONS(7269), - [anon_sym_LT_EQ_GT] = ACTIONS(7269), - [anon_sym_or] = ACTIONS(7267), - [anon_sym_and] = ACTIONS(7267), - [anon_sym_bitor] = ACTIONS(7269), - [anon_sym_xor] = ACTIONS(7267), - [anon_sym_bitand] = ACTIONS(7269), - [anon_sym_not_eq] = ACTIONS(7269), - [anon_sym_DASH_DASH] = ACTIONS(7269), - [anon_sym_PLUS_PLUS] = ACTIONS(7269), - [anon_sym_DOT] = ACTIONS(7267), - [anon_sym_DOT_STAR] = ACTIONS(7269), - [anon_sym_DASH_GT] = ACTIONS(7269), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7269), - [anon_sym_override] = ACTIONS(7269), - [anon_sym_GT2] = ACTIONS(7269), - [anon_sym_requires] = ACTIONS(7269), - }, - [STATE(3011)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7297), - [anon_sym_COMMA] = ACTIONS(7297), - [anon_sym_LPAREN2] = ACTIONS(7297), - [anon_sym_DASH] = ACTIONS(7295), - [anon_sym_PLUS] = ACTIONS(7295), - [anon_sym_STAR] = ACTIONS(7295), - [anon_sym_SLASH] = ACTIONS(7295), - [anon_sym_PERCENT] = ACTIONS(7295), - [anon_sym_PIPE_PIPE] = ACTIONS(7297), - [anon_sym_AMP_AMP] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7295), - [anon_sym_CARET] = ACTIONS(7295), - [anon_sym_AMP] = ACTIONS(7295), - [anon_sym_EQ_EQ] = ACTIONS(7297), - [anon_sym_BANG_EQ] = ACTIONS(7297), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_GT_EQ] = ACTIONS(7297), - [anon_sym_LT_EQ] = ACTIONS(7295), - [anon_sym_LT] = ACTIONS(7295), - [anon_sym_LT_LT] = ACTIONS(7295), - [anon_sym_GT_GT] = ACTIONS(7295), - [anon_sym___extension__] = ACTIONS(7297), - [anon_sym_LBRACE] = ACTIONS(7297), - [anon_sym_LBRACK] = ACTIONS(7297), - [anon_sym_RBRACK] = ACTIONS(7297), - [anon_sym_EQ] = ACTIONS(7295), - [anon_sym_const] = ACTIONS(7295), - [anon_sym_constexpr] = ACTIONS(7297), - [anon_sym_volatile] = ACTIONS(7297), - [anon_sym_restrict] = ACTIONS(7297), - [anon_sym___restrict__] = ACTIONS(7297), - [anon_sym__Atomic] = ACTIONS(7297), - [anon_sym__Noreturn] = ACTIONS(7297), - [anon_sym_noreturn] = ACTIONS(7297), - [anon_sym__Nonnull] = ACTIONS(7297), - [anon_sym_mutable] = ACTIONS(7297), - [anon_sym_constinit] = ACTIONS(7297), - [anon_sym_consteval] = ACTIONS(7297), - [anon_sym_alignas] = ACTIONS(7297), - [anon_sym__Alignas] = ACTIONS(7297), - [anon_sym_QMARK] = ACTIONS(7297), - [anon_sym_STAR_EQ] = ACTIONS(7297), - [anon_sym_SLASH_EQ] = ACTIONS(7297), - [anon_sym_PERCENT_EQ] = ACTIONS(7297), - [anon_sym_PLUS_EQ] = ACTIONS(7297), - [anon_sym_DASH_EQ] = ACTIONS(7297), - [anon_sym_LT_LT_EQ] = ACTIONS(7297), - [anon_sym_GT_GT_EQ] = ACTIONS(7297), - [anon_sym_AMP_EQ] = ACTIONS(7297), - [anon_sym_CARET_EQ] = ACTIONS(7297), - [anon_sym_PIPE_EQ] = ACTIONS(7297), - [anon_sym_and_eq] = ACTIONS(7297), - [anon_sym_or_eq] = ACTIONS(7297), - [anon_sym_xor_eq] = ACTIONS(7297), - [anon_sym_LT_EQ_GT] = ACTIONS(7297), - [anon_sym_or] = ACTIONS(7295), - [anon_sym_and] = ACTIONS(7295), - [anon_sym_bitor] = ACTIONS(7297), - [anon_sym_xor] = ACTIONS(7295), - [anon_sym_bitand] = ACTIONS(7297), - [anon_sym_not_eq] = ACTIONS(7297), - [anon_sym_DASH_DASH] = ACTIONS(7297), - [anon_sym_PLUS_PLUS] = ACTIONS(7297), - [anon_sym_DOT] = ACTIONS(7295), - [anon_sym_DOT_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(7297), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7297), - [anon_sym_override] = ACTIONS(7297), - [anon_sym_requires] = ACTIONS(7297), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(3012)] = { - [sym_identifier] = ACTIONS(7235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), - [anon_sym_COMMA] = ACTIONS(7237), - [anon_sym_RPAREN] = ACTIONS(7237), - [anon_sym_LPAREN2] = ACTIONS(7237), - [anon_sym_DASH] = ACTIONS(7235), - [anon_sym_PLUS] = ACTIONS(7235), - [anon_sym_STAR] = ACTIONS(7237), - [anon_sym_SLASH] = ACTIONS(7235), - [anon_sym_PERCENT] = ACTIONS(7237), - [anon_sym_PIPE_PIPE] = ACTIONS(7237), - [anon_sym_AMP_AMP] = ACTIONS(7237), - [anon_sym_PIPE] = ACTIONS(7235), - [anon_sym_CARET] = ACTIONS(7237), - [anon_sym_AMP] = ACTIONS(7235), - [anon_sym_EQ_EQ] = ACTIONS(7237), - [anon_sym_BANG_EQ] = ACTIONS(7237), - [anon_sym_GT] = ACTIONS(7235), - [anon_sym_GT_EQ] = ACTIONS(7237), - [anon_sym_LT_EQ] = ACTIONS(7235), - [anon_sym_LT] = ACTIONS(7235), - [anon_sym_LT_LT] = ACTIONS(7237), - [anon_sym_GT_GT] = ACTIONS(7237), - [anon_sym_SEMI] = ACTIONS(7237), - [anon_sym___extension__] = ACTIONS(7235), - [anon_sym___attribute__] = ACTIONS(7235), - [anon_sym___attribute] = ACTIONS(7235), - [anon_sym_COLON] = ACTIONS(7235), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7237), - [anon_sym___based] = ACTIONS(7235), - [anon_sym_LBRACE] = ACTIONS(7237), - [anon_sym_RBRACE] = ACTIONS(7237), - [anon_sym_signed] = ACTIONS(7235), - [anon_sym_unsigned] = ACTIONS(7235), - [anon_sym_long] = ACTIONS(7235), - [anon_sym_short] = ACTIONS(7235), - [anon_sym_LBRACK] = ACTIONS(7237), - [anon_sym_const] = ACTIONS(7235), - [anon_sym_constexpr] = ACTIONS(7235), - [anon_sym_volatile] = ACTIONS(7235), - [anon_sym_restrict] = ACTIONS(7235), - [anon_sym___restrict__] = ACTIONS(7235), - [anon_sym__Atomic] = ACTIONS(7235), - [anon_sym__Noreturn] = ACTIONS(7235), - [anon_sym_noreturn] = ACTIONS(7235), - [anon_sym__Nonnull] = ACTIONS(7235), - [anon_sym_mutable] = ACTIONS(7235), - [anon_sym_constinit] = ACTIONS(7235), - [anon_sym_consteval] = ACTIONS(7235), - [anon_sym_alignas] = ACTIONS(7235), - [anon_sym__Alignas] = ACTIONS(7235), - [sym_primitive_type] = ACTIONS(7235), - [anon_sym_QMARK] = ACTIONS(7237), - [anon_sym_LT_EQ_GT] = ACTIONS(7237), - [anon_sym_or] = ACTIONS(7235), - [anon_sym_and] = ACTIONS(7235), - [anon_sym_bitor] = ACTIONS(7235), - [anon_sym_xor] = ACTIONS(7235), - [anon_sym_bitand] = ACTIONS(7235), - [anon_sym_not_eq] = ACTIONS(7235), - [anon_sym_DASH_DASH] = ACTIONS(7237), - [anon_sym_PLUS_PLUS] = ACTIONS(7237), - [anon_sym_DOT] = ACTIONS(7235), - [anon_sym_DOT_STAR] = ACTIONS(7237), - [anon_sym_DASH_GT] = ACTIONS(7237), + [STATE(2695)] = { + [sym_attribute_specifier] = STATE(4381), + [sym_attribute_declaration] = STATE(4895), + [sym_gnu_asm_expression] = STATE(9115), + [sym_virtual_specifier] = STATE(5261), + [sym__function_exception_specification] = STATE(3383), + [sym__function_attributes_end] = STATE(4576), + [sym__function_postfix] = STATE(5696), + [sym_trailing_return_type] = STATE(4740), + [sym_noexcept] = STATE(3383), + [sym_throw_specifier] = STATE(3383), + [sym_requires_clause] = STATE(5696), + [aux_sym_type_definition_repeat1] = STATE(4381), + [aux_sym_attributed_declarator_repeat1] = STATE(4895), + [aux_sym__function_postfix_repeat1] = STATE(5261), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6764), + [anon_sym___attribute] = ACTIONS(6766), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7791), + [anon_sym_and] = ACTIONS(7791), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7791), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8514), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7235), - [anon_sym_override] = ACTIONS(7235), - [anon_sym_requires] = ACTIONS(7235), - [anon_sym_COLON_RBRACK] = ACTIONS(7237), + [anon_sym_final] = ACTIONS(8517), + [anon_sym_override] = ACTIONS(8517), + [anon_sym_noexcept] = ACTIONS(6779), + [anon_sym_throw] = ACTIONS(6781), + [anon_sym_requires] = ACTIONS(8520), + [anon_sym_DASH_GT_STAR] = ACTIONS(7791), }, - [STATE(3013)] = { - [sym_ms_based_modifier] = STATE(11063), - [sym_ms_unaligned_ptr_modifier] = STATE(6570), - [sym_ms_pointer_modifier] = STATE(6287), - [sym__declarator] = STATE(8694), - [sym__abstract_declarator] = STATE(8877), - [sym_parenthesized_declarator] = STATE(8469), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_function_declarator] = STATE(8469), - [sym_abstract_function_declarator] = STATE(8389), - [sym_array_declarator] = STATE(8469), - [sym_abstract_array_declarator] = STATE(8389), - [sym_type_qualifier] = STATE(3991), - [sym_alignas_qualifier] = STATE(7436), - [sym_parameter_list] = STATE(4601), - [sym_decltype] = STATE(10976), - [sym_reference_declarator] = STATE(8469), - [sym_abstract_reference_declarator] = STATE(8389), - [sym_structured_binding_declarator] = STATE(8469), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7869), - [sym_qualified_identifier] = STATE(8469), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__type_definition_type_repeat1] = STATE(3991), - [aux_sym_pointer_declarator_repeat1] = STATE(6287), - [sym_identifier] = ACTIONS(7868), - [anon_sym_RPAREN] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(5301), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(5303), - [anon_sym_AMP_AMP] = ACTIONS(5305), - [anon_sym_AMP] = ACTIONS(5307), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym_COLON_COLON] = ACTIONS(8360), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(2933), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(2933), - [sym_ms_signed_ptr_modifier] = ACTIONS(2933), - [anon_sym__unaligned] = ACTIONS(2935), - [anon_sym___unaligned] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(5311), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym__Nonnull] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2939), - [anon_sym__Alignas] = ACTIONS(2939), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), + [STATE(2696)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), + [anon_sym_COMMA] = ACTIONS(7090), + [anon_sym_LPAREN2] = ACTIONS(7090), + [anon_sym_DASH] = ACTIONS(7085), + [anon_sym_PLUS] = ACTIONS(7085), + [anon_sym_STAR] = ACTIONS(7085), + [anon_sym_SLASH] = ACTIONS(7085), + [anon_sym_PERCENT] = ACTIONS(7085), + [anon_sym_PIPE_PIPE] = ACTIONS(7090), + [anon_sym_AMP_AMP] = ACTIONS(7090), + [anon_sym_PIPE] = ACTIONS(7085), + [anon_sym_CARET] = ACTIONS(7085), + [anon_sym_AMP] = ACTIONS(7085), + [anon_sym_EQ_EQ] = ACTIONS(7090), + [anon_sym_BANG_EQ] = ACTIONS(7090), + [anon_sym_GT] = ACTIONS(7085), + [anon_sym_GT_EQ] = ACTIONS(7085), + [anon_sym_LT_EQ] = ACTIONS(7085), + [anon_sym_LT] = ACTIONS(7085), + [anon_sym_LT_LT] = ACTIONS(7085), + [anon_sym_GT_GT] = ACTIONS(7085), + [anon_sym___extension__] = ACTIONS(7090), + [anon_sym___attribute__] = ACTIONS(7090), + [anon_sym___attribute] = ACTIONS(7085), + [anon_sym_COLON] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7090), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_LBRACK] = ACTIONS(7090), + [anon_sym_EQ] = ACTIONS(7085), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7090), + [anon_sym_volatile] = ACTIONS(7090), + [anon_sym_restrict] = ACTIONS(7090), + [anon_sym___restrict__] = ACTIONS(7090), + [anon_sym__Atomic] = ACTIONS(7090), + [anon_sym__Noreturn] = ACTIONS(7090), + [anon_sym_noreturn] = ACTIONS(7090), + [anon_sym__Nonnull] = ACTIONS(7090), + [anon_sym_mutable] = ACTIONS(7090), + [anon_sym_constinit] = ACTIONS(7090), + [anon_sym_consteval] = ACTIONS(7090), + [anon_sym_alignas] = ACTIONS(7090), + [anon_sym__Alignas] = ACTIONS(7090), + [anon_sym_QMARK] = ACTIONS(7090), + [anon_sym_STAR_EQ] = ACTIONS(7090), + [anon_sym_SLASH_EQ] = ACTIONS(7090), + [anon_sym_PERCENT_EQ] = ACTIONS(7090), + [anon_sym_PLUS_EQ] = ACTIONS(7090), + [anon_sym_DASH_EQ] = ACTIONS(7090), + [anon_sym_LT_LT_EQ] = ACTIONS(7090), + [anon_sym_GT_GT_EQ] = ACTIONS(7085), + [anon_sym_AMP_EQ] = ACTIONS(7090), + [anon_sym_CARET_EQ] = ACTIONS(7090), + [anon_sym_PIPE_EQ] = ACTIONS(7090), + [anon_sym_and_eq] = ACTIONS(7090), + [anon_sym_or_eq] = ACTIONS(7090), + [anon_sym_xor_eq] = ACTIONS(7090), + [anon_sym_LT_EQ_GT] = ACTIONS(7090), + [anon_sym_or] = ACTIONS(7085), + [anon_sym_and] = ACTIONS(7085), + [anon_sym_bitor] = ACTIONS(7090), + [anon_sym_xor] = ACTIONS(7085), + [anon_sym_bitand] = ACTIONS(7090), + [anon_sym_not_eq] = ACTIONS(7090), + [anon_sym_DASH_DASH] = ACTIONS(7090), + [anon_sym_PLUS_PLUS] = ACTIONS(7090), + [anon_sym_DOT] = ACTIONS(7085), + [anon_sym_DOT_STAR] = ACTIONS(7090), + [anon_sym_DASH_GT] = ACTIONS(7090), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7090), + [anon_sym_override] = ACTIONS(7090), + [anon_sym_GT2] = ACTIONS(7090), + [anon_sym_requires] = ACTIONS(7090), }, - [STATE(3014)] = { - [sym_identifier] = ACTIONS(7245), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7247), - [anon_sym_COMMA] = ACTIONS(7247), - [anon_sym_RPAREN] = ACTIONS(7247), - [anon_sym_LPAREN2] = ACTIONS(7247), - [anon_sym_DASH] = ACTIONS(7245), - [anon_sym_PLUS] = ACTIONS(7245), - [anon_sym_STAR] = ACTIONS(7247), - [anon_sym_SLASH] = ACTIONS(7245), - [anon_sym_PERCENT] = ACTIONS(7247), - [anon_sym_PIPE_PIPE] = ACTIONS(7247), - [anon_sym_AMP_AMP] = ACTIONS(7247), - [anon_sym_PIPE] = ACTIONS(7245), - [anon_sym_CARET] = ACTIONS(7247), - [anon_sym_AMP] = ACTIONS(7245), - [anon_sym_EQ_EQ] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7247), - [anon_sym_GT] = ACTIONS(7245), - [anon_sym_GT_EQ] = ACTIONS(7247), - [anon_sym_LT_EQ] = ACTIONS(7245), - [anon_sym_LT] = ACTIONS(7245), - [anon_sym_LT_LT] = ACTIONS(7247), - [anon_sym_GT_GT] = ACTIONS(7247), - [anon_sym_SEMI] = ACTIONS(7247), - [anon_sym___extension__] = ACTIONS(7245), - [anon_sym___attribute__] = ACTIONS(7245), - [anon_sym___attribute] = ACTIONS(7245), - [anon_sym_COLON] = ACTIONS(7245), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7247), - [anon_sym___based] = ACTIONS(7245), - [anon_sym_LBRACE] = ACTIONS(7247), - [anon_sym_RBRACE] = ACTIONS(7247), - [anon_sym_signed] = ACTIONS(7245), - [anon_sym_unsigned] = ACTIONS(7245), - [anon_sym_long] = ACTIONS(7245), - [anon_sym_short] = ACTIONS(7245), - [anon_sym_LBRACK] = ACTIONS(7247), - [anon_sym_const] = ACTIONS(7245), - [anon_sym_constexpr] = ACTIONS(7245), - [anon_sym_volatile] = ACTIONS(7245), - [anon_sym_restrict] = ACTIONS(7245), - [anon_sym___restrict__] = ACTIONS(7245), - [anon_sym__Atomic] = ACTIONS(7245), - [anon_sym__Noreturn] = ACTIONS(7245), - [anon_sym_noreturn] = ACTIONS(7245), - [anon_sym__Nonnull] = ACTIONS(7245), - [anon_sym_mutable] = ACTIONS(7245), - [anon_sym_constinit] = ACTIONS(7245), - [anon_sym_consteval] = ACTIONS(7245), - [anon_sym_alignas] = ACTIONS(7245), - [anon_sym__Alignas] = ACTIONS(7245), - [sym_primitive_type] = ACTIONS(7245), - [anon_sym_QMARK] = ACTIONS(7247), - [anon_sym_LT_EQ_GT] = ACTIONS(7247), - [anon_sym_or] = ACTIONS(7245), - [anon_sym_and] = ACTIONS(7245), - [anon_sym_bitor] = ACTIONS(7245), - [anon_sym_xor] = ACTIONS(7245), - [anon_sym_bitand] = ACTIONS(7245), - [anon_sym_not_eq] = ACTIONS(7245), - [anon_sym_DASH_DASH] = ACTIONS(7247), - [anon_sym_PLUS_PLUS] = ACTIONS(7247), - [anon_sym_DOT] = ACTIONS(7245), - [anon_sym_DOT_STAR] = ACTIONS(7247), - [anon_sym_DASH_GT] = ACTIONS(7247), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7245), - [anon_sym_override] = ACTIONS(7245), - [anon_sym_requires] = ACTIONS(7245), - [anon_sym_COLON_RBRACK] = ACTIONS(7247), + [STATE(2697)] = { + [sym_attribute_specifier] = STATE(2950), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7437), + [anon_sym_COMMA] = ACTIONS(7437), + [anon_sym_RPAREN] = ACTIONS(7437), + [anon_sym_LPAREN2] = ACTIONS(7437), + [anon_sym_DASH] = ACTIONS(7435), + [anon_sym_PLUS] = ACTIONS(7435), + [anon_sym_STAR] = ACTIONS(7435), + [anon_sym_SLASH] = ACTIONS(7435), + [anon_sym_PERCENT] = ACTIONS(7435), + [anon_sym_PIPE_PIPE] = ACTIONS(7437), + [anon_sym_AMP_AMP] = ACTIONS(7437), + [anon_sym_PIPE] = ACTIONS(7435), + [anon_sym_CARET] = ACTIONS(7435), + [anon_sym_AMP] = ACTIONS(7435), + [anon_sym_EQ_EQ] = ACTIONS(7437), + [anon_sym_BANG_EQ] = ACTIONS(7437), + [anon_sym_GT] = ACTIONS(7435), + [anon_sym_GT_EQ] = ACTIONS(7437), + [anon_sym_LT_EQ] = ACTIONS(7435), + [anon_sym_LT] = ACTIONS(7435), + [anon_sym_LT_LT] = ACTIONS(7435), + [anon_sym_GT_GT] = ACTIONS(7435), + [anon_sym___extension__] = ACTIONS(7437), + [anon_sym___attribute__] = ACTIONS(8152), + [anon_sym___attribute] = ACTIONS(8154), + [anon_sym_LBRACE] = ACTIONS(7437), + [anon_sym_LBRACK] = ACTIONS(7437), + [anon_sym_EQ] = ACTIONS(7435), + [anon_sym_const] = ACTIONS(7435), + [anon_sym_constexpr] = ACTIONS(7437), + [anon_sym_volatile] = ACTIONS(7437), + [anon_sym_restrict] = ACTIONS(7437), + [anon_sym___restrict__] = ACTIONS(7437), + [anon_sym__Atomic] = ACTIONS(7437), + [anon_sym__Noreturn] = ACTIONS(7437), + [anon_sym_noreturn] = ACTIONS(7437), + [anon_sym__Nonnull] = ACTIONS(7437), + [anon_sym_mutable] = ACTIONS(7437), + [anon_sym_constinit] = ACTIONS(7437), + [anon_sym_consteval] = ACTIONS(7437), + [anon_sym_alignas] = ACTIONS(7437), + [anon_sym__Alignas] = ACTIONS(7437), + [anon_sym_QMARK] = ACTIONS(7437), + [anon_sym_STAR_EQ] = ACTIONS(7437), + [anon_sym_SLASH_EQ] = ACTIONS(7437), + [anon_sym_PERCENT_EQ] = ACTIONS(7437), + [anon_sym_PLUS_EQ] = ACTIONS(7437), + [anon_sym_DASH_EQ] = ACTIONS(7437), + [anon_sym_LT_LT_EQ] = ACTIONS(7437), + [anon_sym_GT_GT_EQ] = ACTIONS(7437), + [anon_sym_AMP_EQ] = ACTIONS(7437), + [anon_sym_CARET_EQ] = ACTIONS(7437), + [anon_sym_PIPE_EQ] = ACTIONS(7437), + [anon_sym_and_eq] = ACTIONS(7437), + [anon_sym_or_eq] = ACTIONS(7437), + [anon_sym_xor_eq] = ACTIONS(7437), + [anon_sym_LT_EQ_GT] = ACTIONS(7437), + [anon_sym_or] = ACTIONS(7435), + [anon_sym_and] = ACTIONS(7435), + [anon_sym_bitor] = ACTIONS(7437), + [anon_sym_xor] = ACTIONS(7435), + [anon_sym_bitand] = ACTIONS(7437), + [anon_sym_not_eq] = ACTIONS(7437), + [anon_sym_DASH_DASH] = ACTIONS(7437), + [anon_sym_PLUS_PLUS] = ACTIONS(7437), + [anon_sym_DOT] = ACTIONS(7435), + [anon_sym_DOT_STAR] = ACTIONS(7437), + [anon_sym_DASH_GT] = ACTIONS(7435), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7437), + [anon_sym_override] = ACTIONS(7437), + [anon_sym_requires] = ACTIONS(7437), + [anon_sym_DASH_GT_STAR] = ACTIONS(7437), }, - [STATE(3015)] = { + [STATE(2698)] = { + [sym_decltype_auto] = STATE(3016), [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), [anon_sym_LPAREN2] = ACTIONS(7225), [anon_sym_DASH] = ACTIONS(7223), [anon_sym_PLUS] = ACTIONS(7223), @@ -381304,7 +371200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(7225), [anon_sym_BANG_EQ] = ACTIONS(7225), [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), [anon_sym_LT_EQ] = ACTIONS(7223), [anon_sym_LT] = ACTIONS(7223), [anon_sym_LT_LT] = ACTIONS(7223), @@ -381334,7 +371230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_EQ] = ACTIONS(7225), [anon_sym_DASH_EQ] = ACTIONS(7225), [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7223), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), [anon_sym_AMP_EQ] = ACTIONS(7225), [anon_sym_CARET_EQ] = ACTIONS(7225), [anon_sym_PIPE_EQ] = ACTIONS(7225), @@ -381352,158 +371248,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(7225), [anon_sym_DOT] = ACTIONS(7223), [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7223), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8529), + [anon_sym_decltype] = ACTIONS(6975), [anon_sym_final] = ACTIONS(7225), [anon_sym_override] = ACTIONS(7225), - [anon_sym_GT2] = ACTIONS(7225), [anon_sym_requires] = ACTIONS(7225), + [anon_sym_DASH_GT_STAR] = ACTIONS(7225), }, - [STATE(3016)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), - [anon_sym_COMMA] = ACTIONS(6230), - [anon_sym_LPAREN2] = ACTIONS(6230), - [anon_sym_DASH] = ACTIONS(6237), - [anon_sym_PLUS] = ACTIONS(6237), - [anon_sym_STAR] = ACTIONS(6237), - [anon_sym_SLASH] = ACTIONS(6237), - [anon_sym_PERCENT] = ACTIONS(6237), - [anon_sym_PIPE_PIPE] = ACTIONS(6230), - [anon_sym_AMP_AMP] = ACTIONS(6230), - [anon_sym_PIPE] = ACTIONS(6237), - [anon_sym_CARET] = ACTIONS(6237), - [anon_sym_AMP] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6230), - [anon_sym_BANG_EQ] = ACTIONS(6230), - [anon_sym_GT] = ACTIONS(6237), - [anon_sym_GT_EQ] = ACTIONS(6237), - [anon_sym_LT_EQ] = ACTIONS(6237), - [anon_sym_LT] = ACTIONS(6237), - [anon_sym_LT_LT] = ACTIONS(6237), - [anon_sym_GT_GT] = ACTIONS(6237), - [anon_sym___extension__] = ACTIONS(6233), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6230), - [anon_sym_EQ] = ACTIONS(6237), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6233), - [anon_sym_volatile] = ACTIONS(6233), - [anon_sym_restrict] = ACTIONS(6233), - [anon_sym___restrict__] = ACTIONS(6233), - [anon_sym__Atomic] = ACTIONS(6233), - [anon_sym__Noreturn] = ACTIONS(6233), - [anon_sym_noreturn] = ACTIONS(6233), - [anon_sym__Nonnull] = ACTIONS(6233), - [anon_sym_mutable] = ACTIONS(6233), - [anon_sym_constinit] = ACTIONS(6233), - [anon_sym_consteval] = ACTIONS(6233), - [anon_sym_alignas] = ACTIONS(6233), - [anon_sym__Alignas] = ACTIONS(6233), - [anon_sym_QMARK] = ACTIONS(6230), - [anon_sym_STAR_EQ] = ACTIONS(6230), - [anon_sym_SLASH_EQ] = ACTIONS(6230), - [anon_sym_PERCENT_EQ] = ACTIONS(6230), - [anon_sym_PLUS_EQ] = ACTIONS(6230), - [anon_sym_DASH_EQ] = ACTIONS(6230), - [anon_sym_LT_LT_EQ] = ACTIONS(6230), - [anon_sym_GT_GT_EQ] = ACTIONS(6237), - [anon_sym_AMP_EQ] = ACTIONS(6230), - [anon_sym_CARET_EQ] = ACTIONS(6230), - [anon_sym_PIPE_EQ] = ACTIONS(6230), - [anon_sym_and_eq] = ACTIONS(6230), - [anon_sym_or_eq] = ACTIONS(6230), - [anon_sym_xor_eq] = ACTIONS(6230), - [anon_sym_LT_EQ_GT] = ACTIONS(6230), - [anon_sym_or] = ACTIONS(6237), - [anon_sym_and] = ACTIONS(6237), - [anon_sym_bitor] = ACTIONS(6230), - [anon_sym_xor] = ACTIONS(6237), - [anon_sym_bitand] = ACTIONS(6230), - [anon_sym_not_eq] = ACTIONS(6230), - [anon_sym_DASH_DASH] = ACTIONS(6230), - [anon_sym_PLUS_PLUS] = ACTIONS(6230), - [anon_sym_DOT] = ACTIONS(6237), - [anon_sym_DOT_STAR] = ACTIONS(6230), - [anon_sym_DASH_GT] = ACTIONS(6230), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6233), - [anon_sym_decltype] = ACTIONS(6233), - [anon_sym_GT2] = ACTIONS(6230), + [STATE(2699)] = { + [sym_attribute_specifier] = STATE(2963), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7455), + [anon_sym_COMMA] = ACTIONS(7455), + [anon_sym_RPAREN] = ACTIONS(7455), + [anon_sym_LPAREN2] = ACTIONS(7455), + [anon_sym_DASH] = ACTIONS(7453), + [anon_sym_PLUS] = ACTIONS(7453), + [anon_sym_STAR] = ACTIONS(7453), + [anon_sym_SLASH] = ACTIONS(7453), + [anon_sym_PERCENT] = ACTIONS(7453), + [anon_sym_PIPE_PIPE] = ACTIONS(7455), + [anon_sym_AMP_AMP] = ACTIONS(7455), + [anon_sym_PIPE] = ACTIONS(7453), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_AMP] = ACTIONS(7453), + [anon_sym_EQ_EQ] = ACTIONS(7455), + [anon_sym_BANG_EQ] = ACTIONS(7455), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_GT_EQ] = ACTIONS(7455), + [anon_sym_LT_EQ] = ACTIONS(7453), + [anon_sym_LT] = ACTIONS(7453), + [anon_sym_LT_LT] = ACTIONS(7453), + [anon_sym_GT_GT] = ACTIONS(7453), + [anon_sym___extension__] = ACTIONS(7455), + [anon_sym___attribute__] = ACTIONS(8152), + [anon_sym___attribute] = ACTIONS(8154), + [anon_sym_LBRACE] = ACTIONS(7455), + [anon_sym_LBRACK] = ACTIONS(7455), + [anon_sym_EQ] = ACTIONS(7453), + [anon_sym_const] = ACTIONS(7453), + [anon_sym_constexpr] = ACTIONS(7455), + [anon_sym_volatile] = ACTIONS(7455), + [anon_sym_restrict] = ACTIONS(7455), + [anon_sym___restrict__] = ACTIONS(7455), + [anon_sym__Atomic] = ACTIONS(7455), + [anon_sym__Noreturn] = ACTIONS(7455), + [anon_sym_noreturn] = ACTIONS(7455), + [anon_sym__Nonnull] = ACTIONS(7455), + [anon_sym_mutable] = ACTIONS(7455), + [anon_sym_constinit] = ACTIONS(7455), + [anon_sym_consteval] = ACTIONS(7455), + [anon_sym_alignas] = ACTIONS(7455), + [anon_sym__Alignas] = ACTIONS(7455), + [anon_sym_QMARK] = ACTIONS(7455), + [anon_sym_STAR_EQ] = ACTIONS(7455), + [anon_sym_SLASH_EQ] = ACTIONS(7455), + [anon_sym_PERCENT_EQ] = ACTIONS(7455), + [anon_sym_PLUS_EQ] = ACTIONS(7455), + [anon_sym_DASH_EQ] = ACTIONS(7455), + [anon_sym_LT_LT_EQ] = ACTIONS(7455), + [anon_sym_GT_GT_EQ] = ACTIONS(7455), + [anon_sym_AMP_EQ] = ACTIONS(7455), + [anon_sym_CARET_EQ] = ACTIONS(7455), + [anon_sym_PIPE_EQ] = ACTIONS(7455), + [anon_sym_and_eq] = ACTIONS(7455), + [anon_sym_or_eq] = ACTIONS(7455), + [anon_sym_xor_eq] = ACTIONS(7455), + [anon_sym_LT_EQ_GT] = ACTIONS(7455), + [anon_sym_or] = ACTIONS(7453), + [anon_sym_and] = ACTIONS(7453), + [anon_sym_bitor] = ACTIONS(7455), + [anon_sym_xor] = ACTIONS(7453), + [anon_sym_bitand] = ACTIONS(7455), + [anon_sym_not_eq] = ACTIONS(7455), + [anon_sym_DASH_DASH] = ACTIONS(7455), + [anon_sym_PLUS_PLUS] = ACTIONS(7455), + [anon_sym_DOT] = ACTIONS(7453), + [anon_sym_DOT_STAR] = ACTIONS(7455), + [anon_sym_DASH_GT] = ACTIONS(7453), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7455), + [anon_sym_override] = ACTIONS(7455), + [anon_sym_requires] = ACTIONS(7455), + [anon_sym_DASH_GT_STAR] = ACTIONS(7455), }, - [STATE(3017)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7273), - [anon_sym_COMMA] = ACTIONS(7273), - [anon_sym_LPAREN2] = ACTIONS(7273), - [anon_sym_DASH] = ACTIONS(7271), - [anon_sym_PLUS] = ACTIONS(7271), - [anon_sym_STAR] = ACTIONS(7271), - [anon_sym_SLASH] = ACTIONS(7271), - [anon_sym_PERCENT] = ACTIONS(7271), - [anon_sym_PIPE_PIPE] = ACTIONS(7273), - [anon_sym_AMP_AMP] = ACTIONS(7273), - [anon_sym_PIPE] = ACTIONS(7271), - [anon_sym_CARET] = ACTIONS(7271), - [anon_sym_AMP] = ACTIONS(7271), - [anon_sym_EQ_EQ] = ACTIONS(7273), - [anon_sym_BANG_EQ] = ACTIONS(7273), - [anon_sym_GT] = ACTIONS(7271), - [anon_sym_GT_EQ] = ACTIONS(7271), - [anon_sym_LT_EQ] = ACTIONS(7271), - [anon_sym_LT] = ACTIONS(7271), - [anon_sym_LT_LT] = ACTIONS(7271), - [anon_sym_GT_GT] = ACTIONS(7271), - [anon_sym___extension__] = ACTIONS(7273), - [anon_sym_LBRACE] = ACTIONS(7273), - [anon_sym_LBRACK] = ACTIONS(7273), - [anon_sym_EQ] = ACTIONS(7271), - [anon_sym_const] = ACTIONS(7271), - [anon_sym_constexpr] = ACTIONS(7273), - [anon_sym_volatile] = ACTIONS(7273), - [anon_sym_restrict] = ACTIONS(7273), - [anon_sym___restrict__] = ACTIONS(7273), - [anon_sym__Atomic] = ACTIONS(7273), - [anon_sym__Noreturn] = ACTIONS(7273), - [anon_sym_noreturn] = ACTIONS(7273), - [anon_sym__Nonnull] = ACTIONS(7273), - [anon_sym_mutable] = ACTIONS(7273), - [anon_sym_constinit] = ACTIONS(7273), - [anon_sym_consteval] = ACTIONS(7273), - [anon_sym_alignas] = ACTIONS(7273), - [anon_sym__Alignas] = ACTIONS(7273), - [anon_sym_QMARK] = ACTIONS(7273), - [anon_sym_STAR_EQ] = ACTIONS(7273), - [anon_sym_SLASH_EQ] = ACTIONS(7273), - [anon_sym_PERCENT_EQ] = ACTIONS(7273), - [anon_sym_PLUS_EQ] = ACTIONS(7273), - [anon_sym_DASH_EQ] = ACTIONS(7273), - [anon_sym_LT_LT_EQ] = ACTIONS(7273), - [anon_sym_GT_GT_EQ] = ACTIONS(7271), - [anon_sym_AMP_EQ] = ACTIONS(7273), - [anon_sym_CARET_EQ] = ACTIONS(7273), - [anon_sym_PIPE_EQ] = ACTIONS(7273), - [anon_sym_and_eq] = ACTIONS(7273), - [anon_sym_or_eq] = ACTIONS(7273), - [anon_sym_xor_eq] = ACTIONS(7273), - [anon_sym_LT_EQ_GT] = ACTIONS(7273), - [anon_sym_or] = ACTIONS(7271), - [anon_sym_and] = ACTIONS(7271), - [anon_sym_bitor] = ACTIONS(7273), - [anon_sym_xor] = ACTIONS(7271), - [anon_sym_bitand] = ACTIONS(7273), - [anon_sym_not_eq] = ACTIONS(7273), - [anon_sym_DASH_DASH] = ACTIONS(7273), - [anon_sym_PLUS_PLUS] = ACTIONS(7273), - [anon_sym_DOT] = ACTIONS(7271), - [anon_sym_DOT_STAR] = ACTIONS(7273), - [anon_sym_DASH_GT] = ACTIONS(7273), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7273), - [anon_sym_override] = ACTIONS(7273), - [anon_sym_GT2] = ACTIONS(7273), - [anon_sym_requires] = ACTIONS(7273), + [STATE(2700)] = { + [sym_identifier] = ACTIONS(7108), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7110), + [anon_sym_COMMA] = ACTIONS(7110), + [anon_sym_RPAREN] = ACTIONS(7110), + [aux_sym_preproc_if_token2] = ACTIONS(7110), + [aux_sym_preproc_else_token1] = ACTIONS(7110), + [aux_sym_preproc_elif_token1] = ACTIONS(7108), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7110), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7110), + [anon_sym_LPAREN2] = ACTIONS(7110), + [anon_sym_DASH] = ACTIONS(7108), + [anon_sym_PLUS] = ACTIONS(7108), + [anon_sym_STAR] = ACTIONS(7110), + [anon_sym_SLASH] = ACTIONS(7108), + [anon_sym_PERCENT] = ACTIONS(7110), + [anon_sym_PIPE_PIPE] = ACTIONS(7110), + [anon_sym_AMP_AMP] = ACTIONS(7110), + [anon_sym_PIPE] = ACTIONS(7108), + [anon_sym_CARET] = ACTIONS(7110), + [anon_sym_AMP] = ACTIONS(7108), + [anon_sym_EQ_EQ] = ACTIONS(7110), + [anon_sym_BANG_EQ] = ACTIONS(7110), + [anon_sym_GT] = ACTIONS(7108), + [anon_sym_GT_EQ] = ACTIONS(7110), + [anon_sym_LT_EQ] = ACTIONS(7108), + [anon_sym_LT] = ACTIONS(7108), + [anon_sym_LT_LT] = ACTIONS(7110), + [anon_sym_GT_GT] = ACTIONS(7110), + [anon_sym_SEMI] = ACTIONS(7110), + [anon_sym___extension__] = ACTIONS(7108), + [anon_sym___attribute__] = ACTIONS(7108), + [anon_sym___attribute] = ACTIONS(7108), + [anon_sym_COLON] = ACTIONS(7108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7110), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7110), + [anon_sym_RBRACE] = ACTIONS(7110), + [anon_sym_LBRACK] = ACTIONS(7108), + [anon_sym_const] = ACTIONS(7108), + [anon_sym_constexpr] = ACTIONS(7108), + [anon_sym_volatile] = ACTIONS(7108), + [anon_sym_restrict] = ACTIONS(7108), + [anon_sym___restrict__] = ACTIONS(7108), + [anon_sym__Atomic] = ACTIONS(7108), + [anon_sym__Noreturn] = ACTIONS(7108), + [anon_sym_noreturn] = ACTIONS(7108), + [anon_sym__Nonnull] = ACTIONS(7108), + [anon_sym_mutable] = ACTIONS(7108), + [anon_sym_constinit] = ACTIONS(7108), + [anon_sym_consteval] = ACTIONS(7108), + [anon_sym_alignas] = ACTIONS(7108), + [anon_sym__Alignas] = ACTIONS(7108), + [anon_sym_QMARK] = ACTIONS(7110), + [anon_sym_LT_EQ_GT] = ACTIONS(7110), + [anon_sym_or] = ACTIONS(7108), + [anon_sym_and] = ACTIONS(7108), + [anon_sym_bitor] = ACTIONS(7108), + [anon_sym_xor] = ACTIONS(7108), + [anon_sym_bitand] = ACTIONS(7108), + [anon_sym_not_eq] = ACTIONS(7108), + [anon_sym_DASH_DASH] = ACTIONS(7110), + [anon_sym_PLUS_PLUS] = ACTIONS(7110), + [anon_sym_asm] = ACTIONS(7108), + [anon_sym___asm__] = ACTIONS(7108), + [anon_sym___asm] = ACTIONS(7108), + [anon_sym_DOT] = ACTIONS(7108), + [anon_sym_DOT_STAR] = ACTIONS(7110), + [anon_sym_DASH_GT] = ACTIONS(7110), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7108), + [anon_sym_override] = ACTIONS(7108), + [anon_sym_noexcept] = ACTIONS(7108), + [anon_sym_throw] = ACTIONS(7108), + [anon_sym_requires] = ACTIONS(7108), + [anon_sym_COLON_RBRACK] = ACTIONS(7110), }, - [STATE(3018)] = { + [STATE(2701)] = { + [sym_decltype_auto] = STATE(3095), [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), [anon_sym_COMMA] = ACTIONS(7225), [anon_sym_LPAREN2] = ACTIONS(7225), @@ -381526,6 +371433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(7223), [anon_sym_GT_GT] = ACTIONS(7223), [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_COLON_COLON] = ACTIONS(7227), [anon_sym_LBRACE] = ACTIONS(7225), [anon_sym_LBRACK] = ACTIONS(7225), [anon_sym_EQ] = ACTIONS(7223), @@ -381570,732 +371478,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7225), [anon_sym_DASH_GT] = ACTIONS(7225), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8631), + [anon_sym_decltype] = ACTIONS(7038), [anon_sym_final] = ACTIONS(7225), [anon_sym_override] = ACTIONS(7225), [anon_sym_GT2] = ACTIONS(7225), [anon_sym_requires] = ACTIONS(7225), }, - [STATE(3019)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7277), - [anon_sym_COMMA] = ACTIONS(7277), - [anon_sym_LPAREN2] = ACTIONS(7277), - [anon_sym_DASH] = ACTIONS(7275), - [anon_sym_PLUS] = ACTIONS(7275), - [anon_sym_STAR] = ACTIONS(7275), - [anon_sym_SLASH] = ACTIONS(7275), - [anon_sym_PERCENT] = ACTIONS(7275), - [anon_sym_PIPE_PIPE] = ACTIONS(7277), - [anon_sym_AMP_AMP] = ACTIONS(7277), - [anon_sym_PIPE] = ACTIONS(7275), - [anon_sym_CARET] = ACTIONS(7275), - [anon_sym_AMP] = ACTIONS(7275), - [anon_sym_EQ_EQ] = ACTIONS(7277), - [anon_sym_BANG_EQ] = ACTIONS(7277), - [anon_sym_GT] = ACTIONS(7275), - [anon_sym_GT_EQ] = ACTIONS(7275), - [anon_sym_LT_EQ] = ACTIONS(7275), - [anon_sym_LT] = ACTIONS(7275), - [anon_sym_LT_LT] = ACTIONS(7275), - [anon_sym_GT_GT] = ACTIONS(7275), - [anon_sym___extension__] = ACTIONS(7277), - [anon_sym_LBRACE] = ACTIONS(7277), - [anon_sym_LBRACK] = ACTIONS(7277), - [anon_sym_EQ] = ACTIONS(7275), - [anon_sym_const] = ACTIONS(7275), - [anon_sym_constexpr] = ACTIONS(7277), - [anon_sym_volatile] = ACTIONS(7277), - [anon_sym_restrict] = ACTIONS(7277), - [anon_sym___restrict__] = ACTIONS(7277), - [anon_sym__Atomic] = ACTIONS(7277), - [anon_sym__Noreturn] = ACTIONS(7277), - [anon_sym_noreturn] = ACTIONS(7277), - [anon_sym__Nonnull] = ACTIONS(7277), - [anon_sym_mutable] = ACTIONS(7277), - [anon_sym_constinit] = ACTIONS(7277), - [anon_sym_consteval] = ACTIONS(7277), - [anon_sym_alignas] = ACTIONS(7277), - [anon_sym__Alignas] = ACTIONS(7277), - [anon_sym_QMARK] = ACTIONS(7277), - [anon_sym_STAR_EQ] = ACTIONS(7277), - [anon_sym_SLASH_EQ] = ACTIONS(7277), - [anon_sym_PERCENT_EQ] = ACTIONS(7277), - [anon_sym_PLUS_EQ] = ACTIONS(7277), - [anon_sym_DASH_EQ] = ACTIONS(7277), - [anon_sym_LT_LT_EQ] = ACTIONS(7277), - [anon_sym_GT_GT_EQ] = ACTIONS(7275), - [anon_sym_AMP_EQ] = ACTIONS(7277), - [anon_sym_CARET_EQ] = ACTIONS(7277), - [anon_sym_PIPE_EQ] = ACTIONS(7277), - [anon_sym_and_eq] = ACTIONS(7277), - [anon_sym_or_eq] = ACTIONS(7277), - [anon_sym_xor_eq] = ACTIONS(7277), - [anon_sym_LT_EQ_GT] = ACTIONS(7277), - [anon_sym_or] = ACTIONS(7275), - [anon_sym_and] = ACTIONS(7275), - [anon_sym_bitor] = ACTIONS(7277), - [anon_sym_xor] = ACTIONS(7275), - [anon_sym_bitand] = ACTIONS(7277), - [anon_sym_not_eq] = ACTIONS(7277), - [anon_sym_DASH_DASH] = ACTIONS(7277), - [anon_sym_PLUS_PLUS] = ACTIONS(7277), - [anon_sym_DOT] = ACTIONS(7275), - [anon_sym_DOT_STAR] = ACTIONS(7277), - [anon_sym_DASH_GT] = ACTIONS(7277), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7277), - [anon_sym_override] = ACTIONS(7277), - [anon_sym_GT2] = ACTIONS(7277), - [anon_sym_requires] = ACTIONS(7277), - }, - [STATE(3020)] = { - [sym_identifier] = ACTIONS(7351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7353), - [anon_sym_COMMA] = ACTIONS(7353), - [anon_sym_RPAREN] = ACTIONS(7353), - [anon_sym_LPAREN2] = ACTIONS(7353), - [anon_sym_DASH] = ACTIONS(7351), - [anon_sym_PLUS] = ACTIONS(7351), - [anon_sym_STAR] = ACTIONS(7353), - [anon_sym_SLASH] = ACTIONS(7351), - [anon_sym_PERCENT] = ACTIONS(7353), - [anon_sym_PIPE_PIPE] = ACTIONS(7353), - [anon_sym_AMP_AMP] = ACTIONS(7353), - [anon_sym_PIPE] = ACTIONS(7351), - [anon_sym_CARET] = ACTIONS(7353), - [anon_sym_AMP] = ACTIONS(7351), - [anon_sym_EQ_EQ] = ACTIONS(7353), - [anon_sym_BANG_EQ] = ACTIONS(7353), - [anon_sym_GT] = ACTIONS(7351), - [anon_sym_GT_EQ] = ACTIONS(7353), - [anon_sym_LT_EQ] = ACTIONS(7351), - [anon_sym_LT] = ACTIONS(7351), - [anon_sym_LT_LT] = ACTIONS(7353), - [anon_sym_GT_GT] = ACTIONS(7353), - [anon_sym_SEMI] = ACTIONS(7353), - [anon_sym___extension__] = ACTIONS(7351), - [anon_sym___attribute__] = ACTIONS(7351), - [anon_sym___attribute] = ACTIONS(7351), - [anon_sym_COLON] = ACTIONS(7351), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7353), - [anon_sym___based] = ACTIONS(7351), - [anon_sym_LBRACE] = ACTIONS(7353), - [anon_sym_RBRACE] = ACTIONS(7353), - [anon_sym_signed] = ACTIONS(7351), - [anon_sym_unsigned] = ACTIONS(7351), - [anon_sym_long] = ACTIONS(7351), - [anon_sym_short] = ACTIONS(7351), - [anon_sym_LBRACK] = ACTIONS(7353), - [anon_sym_const] = ACTIONS(7351), - [anon_sym_constexpr] = ACTIONS(7351), - [anon_sym_volatile] = ACTIONS(7351), - [anon_sym_restrict] = ACTIONS(7351), - [anon_sym___restrict__] = ACTIONS(7351), - [anon_sym__Atomic] = ACTIONS(7351), - [anon_sym__Noreturn] = ACTIONS(7351), - [anon_sym_noreturn] = ACTIONS(7351), - [anon_sym__Nonnull] = ACTIONS(7351), - [anon_sym_mutable] = ACTIONS(7351), - [anon_sym_constinit] = ACTIONS(7351), - [anon_sym_consteval] = ACTIONS(7351), - [anon_sym_alignas] = ACTIONS(7351), - [anon_sym__Alignas] = ACTIONS(7351), - [sym_primitive_type] = ACTIONS(7351), - [anon_sym_QMARK] = ACTIONS(7353), - [anon_sym_LT_EQ_GT] = ACTIONS(7353), - [anon_sym_or] = ACTIONS(7351), - [anon_sym_and] = ACTIONS(7351), - [anon_sym_bitor] = ACTIONS(7351), - [anon_sym_xor] = ACTIONS(7351), - [anon_sym_bitand] = ACTIONS(7351), - [anon_sym_not_eq] = ACTIONS(7351), - [anon_sym_DASH_DASH] = ACTIONS(7353), - [anon_sym_PLUS_PLUS] = ACTIONS(7353), - [anon_sym_DOT] = ACTIONS(7351), - [anon_sym_DOT_STAR] = ACTIONS(7353), - [anon_sym_DASH_GT] = ACTIONS(7353), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7351), - [anon_sym_override] = ACTIONS(7351), - [anon_sym_requires] = ACTIONS(7351), - [anon_sym_COLON_RBRACK] = ACTIONS(7353), - }, - [STATE(3021)] = { - [sym_identifier] = ACTIONS(7267), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7269), - [anon_sym_COMMA] = ACTIONS(7269), - [anon_sym_RPAREN] = ACTIONS(7269), - [anon_sym_LPAREN2] = ACTIONS(7269), - [anon_sym_DASH] = ACTIONS(7267), - [anon_sym_PLUS] = ACTIONS(7267), - [anon_sym_STAR] = ACTIONS(7269), - [anon_sym_SLASH] = ACTIONS(7267), - [anon_sym_PERCENT] = ACTIONS(7269), - [anon_sym_PIPE_PIPE] = ACTIONS(7269), - [anon_sym_AMP_AMP] = ACTIONS(7269), - [anon_sym_PIPE] = ACTIONS(7267), - [anon_sym_CARET] = ACTIONS(7269), - [anon_sym_AMP] = ACTIONS(7267), - [anon_sym_EQ_EQ] = ACTIONS(7269), - [anon_sym_BANG_EQ] = ACTIONS(7269), - [anon_sym_GT] = ACTIONS(7267), - [anon_sym_GT_EQ] = ACTIONS(7269), - [anon_sym_LT_EQ] = ACTIONS(7267), - [anon_sym_LT] = ACTIONS(7267), - [anon_sym_LT_LT] = ACTIONS(7269), - [anon_sym_GT_GT] = ACTIONS(7269), - [anon_sym_SEMI] = ACTIONS(7269), - [anon_sym___extension__] = ACTIONS(7267), - [anon_sym___attribute__] = ACTIONS(7267), - [anon_sym___attribute] = ACTIONS(7267), - [anon_sym_COLON] = ACTIONS(7267), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7269), - [anon_sym___based] = ACTIONS(7267), - [anon_sym_LBRACE] = ACTIONS(7269), - [anon_sym_RBRACE] = ACTIONS(7269), - [anon_sym_signed] = ACTIONS(7267), - [anon_sym_unsigned] = ACTIONS(7267), - [anon_sym_long] = ACTIONS(7267), - [anon_sym_short] = ACTIONS(7267), - [anon_sym_LBRACK] = ACTIONS(7269), - [anon_sym_const] = ACTIONS(7267), - [anon_sym_constexpr] = ACTIONS(7267), - [anon_sym_volatile] = ACTIONS(7267), - [anon_sym_restrict] = ACTIONS(7267), - [anon_sym___restrict__] = ACTIONS(7267), - [anon_sym__Atomic] = ACTIONS(7267), - [anon_sym__Noreturn] = ACTIONS(7267), - [anon_sym_noreturn] = ACTIONS(7267), - [anon_sym__Nonnull] = ACTIONS(7267), - [anon_sym_mutable] = ACTIONS(7267), - [anon_sym_constinit] = ACTIONS(7267), - [anon_sym_consteval] = ACTIONS(7267), - [anon_sym_alignas] = ACTIONS(7267), - [anon_sym__Alignas] = ACTIONS(7267), - [sym_primitive_type] = ACTIONS(7267), - [anon_sym_QMARK] = ACTIONS(7269), - [anon_sym_LT_EQ_GT] = ACTIONS(7269), - [anon_sym_or] = ACTIONS(7267), - [anon_sym_and] = ACTIONS(7267), - [anon_sym_bitor] = ACTIONS(7267), - [anon_sym_xor] = ACTIONS(7267), - [anon_sym_bitand] = ACTIONS(7267), - [anon_sym_not_eq] = ACTIONS(7267), - [anon_sym_DASH_DASH] = ACTIONS(7269), - [anon_sym_PLUS_PLUS] = ACTIONS(7269), - [anon_sym_DOT] = ACTIONS(7267), - [anon_sym_DOT_STAR] = ACTIONS(7269), - [anon_sym_DASH_GT] = ACTIONS(7269), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7267), - [anon_sym_override] = ACTIONS(7267), - [anon_sym_requires] = ACTIONS(7267), - [anon_sym_COLON_RBRACK] = ACTIONS(7269), - }, - [STATE(3022)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7331), - [anon_sym_COMMA] = ACTIONS(7331), - [anon_sym_LPAREN2] = ACTIONS(7331), - [anon_sym_DASH] = ACTIONS(7329), - [anon_sym_PLUS] = ACTIONS(7329), - [anon_sym_STAR] = ACTIONS(7329), - [anon_sym_SLASH] = ACTIONS(7329), - [anon_sym_PERCENT] = ACTIONS(7329), - [anon_sym_PIPE_PIPE] = ACTIONS(7331), - [anon_sym_AMP_AMP] = ACTIONS(7331), - [anon_sym_PIPE] = ACTIONS(7329), - [anon_sym_CARET] = ACTIONS(7329), - [anon_sym_AMP] = ACTIONS(7329), - [anon_sym_EQ_EQ] = ACTIONS(7331), - [anon_sym_BANG_EQ] = ACTIONS(7331), - [anon_sym_GT] = ACTIONS(7329), - [anon_sym_GT_EQ] = ACTIONS(7329), - [anon_sym_LT_EQ] = ACTIONS(7329), - [anon_sym_LT] = ACTIONS(7329), - [anon_sym_LT_LT] = ACTIONS(7329), - [anon_sym_GT_GT] = ACTIONS(7329), - [anon_sym___extension__] = ACTIONS(7331), - [anon_sym_LBRACE] = ACTIONS(7331), - [anon_sym_LBRACK] = ACTIONS(7331), - [anon_sym_EQ] = ACTIONS(7329), - [anon_sym_const] = ACTIONS(7329), - [anon_sym_constexpr] = ACTIONS(7331), - [anon_sym_volatile] = ACTIONS(7331), - [anon_sym_restrict] = ACTIONS(7331), - [anon_sym___restrict__] = ACTIONS(7331), - [anon_sym__Atomic] = ACTIONS(7331), - [anon_sym__Noreturn] = ACTIONS(7331), - [anon_sym_noreturn] = ACTIONS(7331), - [anon_sym__Nonnull] = ACTIONS(7331), - [anon_sym_mutable] = ACTIONS(7331), - [anon_sym_constinit] = ACTIONS(7331), - [anon_sym_consteval] = ACTIONS(7331), - [anon_sym_alignas] = ACTIONS(7331), - [anon_sym__Alignas] = ACTIONS(7331), - [anon_sym_QMARK] = ACTIONS(7331), - [anon_sym_STAR_EQ] = ACTIONS(7331), - [anon_sym_SLASH_EQ] = ACTIONS(7331), - [anon_sym_PERCENT_EQ] = ACTIONS(7331), - [anon_sym_PLUS_EQ] = ACTIONS(7331), - [anon_sym_DASH_EQ] = ACTIONS(7331), - [anon_sym_LT_LT_EQ] = ACTIONS(7331), - [anon_sym_GT_GT_EQ] = ACTIONS(7329), - [anon_sym_AMP_EQ] = ACTIONS(7331), - [anon_sym_CARET_EQ] = ACTIONS(7331), - [anon_sym_PIPE_EQ] = ACTIONS(7331), - [anon_sym_and_eq] = ACTIONS(7331), - [anon_sym_or_eq] = ACTIONS(7331), - [anon_sym_xor_eq] = ACTIONS(7331), - [anon_sym_LT_EQ_GT] = ACTIONS(7331), - [anon_sym_or] = ACTIONS(7329), - [anon_sym_and] = ACTIONS(7329), - [anon_sym_bitor] = ACTIONS(7331), - [anon_sym_xor] = ACTIONS(7329), - [anon_sym_bitand] = ACTIONS(7331), - [anon_sym_not_eq] = ACTIONS(7331), - [anon_sym_DASH_DASH] = ACTIONS(7331), - [anon_sym_PLUS_PLUS] = ACTIONS(7331), - [anon_sym_DOT] = ACTIONS(7329), - [anon_sym_DOT_STAR] = ACTIONS(7331), - [anon_sym_DASH_GT] = ACTIONS(7331), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7331), - [anon_sym_override] = ACTIONS(7331), - [anon_sym_GT2] = ACTIONS(7331), - [anon_sym_requires] = ACTIONS(7331), - }, - [STATE(3023)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7207), - [anon_sym_COMMA] = ACTIONS(7207), - [anon_sym_LPAREN2] = ACTIONS(7207), - [anon_sym_DASH] = ACTIONS(7205), - [anon_sym_PLUS] = ACTIONS(7205), - [anon_sym_STAR] = ACTIONS(7205), - [anon_sym_SLASH] = ACTIONS(7205), - [anon_sym_PERCENT] = ACTIONS(7205), - [anon_sym_PIPE_PIPE] = ACTIONS(7207), - [anon_sym_AMP_AMP] = ACTIONS(7207), - [anon_sym_PIPE] = ACTIONS(7205), - [anon_sym_CARET] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7205), - [anon_sym_EQ_EQ] = ACTIONS(7207), - [anon_sym_BANG_EQ] = ACTIONS(7207), - [anon_sym_GT] = ACTIONS(7205), - [anon_sym_GT_EQ] = ACTIONS(7207), - [anon_sym_LT_EQ] = ACTIONS(7205), - [anon_sym_LT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_GT_GT] = ACTIONS(7205), - [anon_sym___extension__] = ACTIONS(7207), - [anon_sym_LBRACE] = ACTIONS(7207), - [anon_sym_LBRACK] = ACTIONS(7207), - [anon_sym_RBRACK] = ACTIONS(7207), - [anon_sym_EQ] = ACTIONS(7205), - [anon_sym_const] = ACTIONS(7205), - [anon_sym_constexpr] = ACTIONS(7207), - [anon_sym_volatile] = ACTIONS(7207), - [anon_sym_restrict] = ACTIONS(7207), - [anon_sym___restrict__] = ACTIONS(7207), - [anon_sym__Atomic] = ACTIONS(7207), - [anon_sym__Noreturn] = ACTIONS(7207), - [anon_sym_noreturn] = ACTIONS(7207), - [anon_sym__Nonnull] = ACTIONS(7207), - [anon_sym_mutable] = ACTIONS(7207), - [anon_sym_constinit] = ACTIONS(7207), - [anon_sym_consteval] = ACTIONS(7207), - [anon_sym_alignas] = ACTIONS(7207), - [anon_sym__Alignas] = ACTIONS(7207), - [anon_sym_QMARK] = ACTIONS(7207), - [anon_sym_STAR_EQ] = ACTIONS(7207), - [anon_sym_SLASH_EQ] = ACTIONS(7207), - [anon_sym_PERCENT_EQ] = ACTIONS(7207), - [anon_sym_PLUS_EQ] = ACTIONS(7207), - [anon_sym_DASH_EQ] = ACTIONS(7207), - [anon_sym_LT_LT_EQ] = ACTIONS(7207), - [anon_sym_GT_GT_EQ] = ACTIONS(7207), - [anon_sym_AMP_EQ] = ACTIONS(7207), - [anon_sym_CARET_EQ] = ACTIONS(7207), - [anon_sym_PIPE_EQ] = ACTIONS(7207), - [anon_sym_and_eq] = ACTIONS(7207), - [anon_sym_or_eq] = ACTIONS(7207), - [anon_sym_xor_eq] = ACTIONS(7207), - [anon_sym_LT_EQ_GT] = ACTIONS(7207), - [anon_sym_or] = ACTIONS(7205), - [anon_sym_and] = ACTIONS(7205), - [anon_sym_bitor] = ACTIONS(7207), - [anon_sym_xor] = ACTIONS(7205), - [anon_sym_bitand] = ACTIONS(7207), - [anon_sym_not_eq] = ACTIONS(7207), - [anon_sym_DASH_DASH] = ACTIONS(7207), - [anon_sym_PLUS_PLUS] = ACTIONS(7207), - [anon_sym_DOT] = ACTIONS(7205), - [anon_sym_DOT_STAR] = ACTIONS(7207), - [anon_sym_DASH_GT] = ACTIONS(7207), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7207), - [anon_sym_override] = ACTIONS(7207), - [anon_sym_requires] = ACTIONS(7207), - }, - [STATE(3024)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), - [anon_sym_COMMA] = ACTIONS(6230), - [anon_sym_LPAREN2] = ACTIONS(6230), - [anon_sym_DASH] = ACTIONS(6237), - [anon_sym_PLUS] = ACTIONS(6237), - [anon_sym_STAR] = ACTIONS(6237), - [anon_sym_SLASH] = ACTIONS(6237), - [anon_sym_PERCENT] = ACTIONS(6237), - [anon_sym_PIPE_PIPE] = ACTIONS(6230), - [anon_sym_AMP_AMP] = ACTIONS(6230), - [anon_sym_PIPE] = ACTIONS(6237), - [anon_sym_CARET] = ACTIONS(6237), - [anon_sym_AMP] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6230), - [anon_sym_BANG_EQ] = ACTIONS(6230), - [anon_sym_GT] = ACTIONS(6237), - [anon_sym_GT_EQ] = ACTIONS(6237), - [anon_sym_LT_EQ] = ACTIONS(6237), - [anon_sym_LT] = ACTIONS(6237), - [anon_sym_LT_LT] = ACTIONS(6237), - [anon_sym_GT_GT] = ACTIONS(6237), - [anon_sym___extension__] = ACTIONS(6233), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6230), - [anon_sym_EQ] = ACTIONS(6235), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6233), - [anon_sym_volatile] = ACTIONS(6233), - [anon_sym_restrict] = ACTIONS(6233), - [anon_sym___restrict__] = ACTIONS(6233), - [anon_sym__Atomic] = ACTIONS(6233), - [anon_sym__Noreturn] = ACTIONS(6233), - [anon_sym_noreturn] = ACTIONS(6233), - [anon_sym__Nonnull] = ACTIONS(6233), - [anon_sym_mutable] = ACTIONS(6233), - [anon_sym_constinit] = ACTIONS(6233), - [anon_sym_consteval] = ACTIONS(6233), - [anon_sym_alignas] = ACTIONS(6233), - [anon_sym__Alignas] = ACTIONS(6233), - [anon_sym_QMARK] = ACTIONS(6230), - [anon_sym_STAR_EQ] = ACTIONS(6228), - [anon_sym_SLASH_EQ] = ACTIONS(6228), - [anon_sym_PERCENT_EQ] = ACTIONS(6228), - [anon_sym_PLUS_EQ] = ACTIONS(6228), - [anon_sym_DASH_EQ] = ACTIONS(6228), - [anon_sym_LT_LT_EQ] = ACTIONS(6228), - [anon_sym_GT_GT_EQ] = ACTIONS(6235), - [anon_sym_AMP_EQ] = ACTIONS(6228), - [anon_sym_CARET_EQ] = ACTIONS(6228), - [anon_sym_PIPE_EQ] = ACTIONS(6228), - [anon_sym_and_eq] = ACTIONS(6228), - [anon_sym_or_eq] = ACTIONS(6228), - [anon_sym_xor_eq] = ACTIONS(6228), - [anon_sym_LT_EQ_GT] = ACTIONS(6230), - [anon_sym_or] = ACTIONS(6237), - [anon_sym_and] = ACTIONS(6237), - [anon_sym_bitor] = ACTIONS(6230), - [anon_sym_xor] = ACTIONS(6237), - [anon_sym_bitand] = ACTIONS(6230), - [anon_sym_not_eq] = ACTIONS(6230), - [anon_sym_DASH_DASH] = ACTIONS(6230), - [anon_sym_PLUS_PLUS] = ACTIONS(6230), - [anon_sym_DOT] = ACTIONS(6237), - [anon_sym_DOT_STAR] = ACTIONS(6230), - [anon_sym_DASH_GT] = ACTIONS(6230), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6233), - [anon_sym_decltype] = ACTIONS(6233), - [anon_sym_GT2] = ACTIONS(6230), - }, - [STATE(3025)] = { - [sym_identifier] = ACTIONS(3608), - [aux_sym_preproc_def_token1] = ACTIONS(3608), - [aux_sym_preproc_if_token1] = ACTIONS(3608), - [aux_sym_preproc_if_token2] = ACTIONS(3608), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3608), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3608), - [sym_preproc_directive] = ACTIONS(3608), - [anon_sym_LPAREN2] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3610), - [anon_sym_STAR] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3608), - [anon_sym_SEMI] = ACTIONS(3610), - [anon_sym___extension__] = ACTIONS(3608), - [anon_sym_typedef] = ACTIONS(3608), - [anon_sym_virtual] = ACTIONS(3608), - [anon_sym_extern] = ACTIONS(3608), - [anon_sym___attribute__] = ACTIONS(3608), - [anon_sym___attribute] = ACTIONS(3608), - [anon_sym_using] = ACTIONS(3608), - [anon_sym_COLON_COLON] = ACTIONS(3610), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3610), - [anon_sym___declspec] = ACTIONS(3608), - [anon_sym___based] = ACTIONS(3608), - [anon_sym_signed] = ACTIONS(3608), - [anon_sym_unsigned] = ACTIONS(3608), - [anon_sym_long] = ACTIONS(3608), - [anon_sym_short] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_static] = ACTIONS(3608), - [anon_sym_register] = ACTIONS(3608), - [anon_sym_inline] = ACTIONS(3608), - [anon_sym___inline] = ACTIONS(3608), - [anon_sym___inline__] = ACTIONS(3608), - [anon_sym___forceinline] = ACTIONS(3608), - [anon_sym_thread_local] = ACTIONS(3608), - [anon_sym___thread] = ACTIONS(3608), - [anon_sym_const] = ACTIONS(3608), - [anon_sym_constexpr] = ACTIONS(3608), - [anon_sym_volatile] = ACTIONS(3608), - [anon_sym_restrict] = ACTIONS(3608), - [anon_sym___restrict__] = ACTIONS(3608), - [anon_sym__Atomic] = ACTIONS(3608), - [anon_sym__Noreturn] = ACTIONS(3608), - [anon_sym_noreturn] = ACTIONS(3608), - [anon_sym__Nonnull] = ACTIONS(3608), - [anon_sym_mutable] = ACTIONS(3608), - [anon_sym_constinit] = ACTIONS(3608), - [anon_sym_consteval] = ACTIONS(3608), - [anon_sym_alignas] = ACTIONS(3608), - [anon_sym__Alignas] = ACTIONS(3608), - [sym_primitive_type] = ACTIONS(3608), - [anon_sym_enum] = ACTIONS(3608), - [anon_sym_class] = ACTIONS(3608), - [anon_sym_struct] = ACTIONS(3608), - [anon_sym_union] = ACTIONS(3608), - [anon_sym_typename] = ACTIONS(3608), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3608), - [anon_sym_decltype] = ACTIONS(3608), - [anon_sym_explicit] = ACTIONS(3608), - [anon_sym_private] = ACTIONS(3608), - [anon_sym_template] = ACTIONS(3608), - [anon_sym_operator] = ACTIONS(3608), - [anon_sym_friend] = ACTIONS(3608), - [anon_sym_public] = ACTIONS(3608), - [anon_sym_protected] = ACTIONS(3608), - [anon_sym_static_assert] = ACTIONS(3608), - [anon_sym_catch] = ACTIONS(3608), - [anon_sym_LBRACK_COLON] = ACTIONS(3610), - }, - [STATE(3026)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7211), - [anon_sym_COMMA] = ACTIONS(7211), - [anon_sym_LPAREN2] = ACTIONS(7211), - [anon_sym_DASH] = ACTIONS(7209), - [anon_sym_PLUS] = ACTIONS(7209), - [anon_sym_STAR] = ACTIONS(7209), - [anon_sym_SLASH] = ACTIONS(7209), - [anon_sym_PERCENT] = ACTIONS(7209), - [anon_sym_PIPE_PIPE] = ACTIONS(7211), - [anon_sym_AMP_AMP] = ACTIONS(7211), - [anon_sym_PIPE] = ACTIONS(7209), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_AMP] = ACTIONS(7209), - [anon_sym_EQ_EQ] = ACTIONS(7211), - [anon_sym_BANG_EQ] = ACTIONS(7211), - [anon_sym_GT] = ACTIONS(7209), - [anon_sym_GT_EQ] = ACTIONS(7211), - [anon_sym_LT_EQ] = ACTIONS(7209), - [anon_sym_LT] = ACTIONS(7209), - [anon_sym_LT_LT] = ACTIONS(7209), - [anon_sym_GT_GT] = ACTIONS(7209), - [anon_sym___extension__] = ACTIONS(7211), - [anon_sym_LBRACE] = ACTIONS(7211), - [anon_sym_LBRACK] = ACTIONS(7211), - [anon_sym_RBRACK] = ACTIONS(7211), - [anon_sym_EQ] = ACTIONS(7209), - [anon_sym_const] = ACTIONS(7209), - [anon_sym_constexpr] = ACTIONS(7211), - [anon_sym_volatile] = ACTIONS(7211), - [anon_sym_restrict] = ACTIONS(7211), - [anon_sym___restrict__] = ACTIONS(7211), - [anon_sym__Atomic] = ACTIONS(7211), - [anon_sym__Noreturn] = ACTIONS(7211), - [anon_sym_noreturn] = ACTIONS(7211), - [anon_sym__Nonnull] = ACTIONS(7211), - [anon_sym_mutable] = ACTIONS(7211), - [anon_sym_constinit] = ACTIONS(7211), - [anon_sym_consteval] = ACTIONS(7211), - [anon_sym_alignas] = ACTIONS(7211), - [anon_sym__Alignas] = ACTIONS(7211), - [anon_sym_QMARK] = ACTIONS(7211), - [anon_sym_STAR_EQ] = ACTIONS(7211), - [anon_sym_SLASH_EQ] = ACTIONS(7211), - [anon_sym_PERCENT_EQ] = ACTIONS(7211), - [anon_sym_PLUS_EQ] = ACTIONS(7211), - [anon_sym_DASH_EQ] = ACTIONS(7211), - [anon_sym_LT_LT_EQ] = ACTIONS(7211), - [anon_sym_GT_GT_EQ] = ACTIONS(7211), - [anon_sym_AMP_EQ] = ACTIONS(7211), - [anon_sym_CARET_EQ] = ACTIONS(7211), - [anon_sym_PIPE_EQ] = ACTIONS(7211), - [anon_sym_and_eq] = ACTIONS(7211), - [anon_sym_or_eq] = ACTIONS(7211), - [anon_sym_xor_eq] = ACTIONS(7211), - [anon_sym_LT_EQ_GT] = ACTIONS(7211), - [anon_sym_or] = ACTIONS(7209), - [anon_sym_and] = ACTIONS(7209), - [anon_sym_bitor] = ACTIONS(7211), - [anon_sym_xor] = ACTIONS(7209), - [anon_sym_bitand] = ACTIONS(7211), - [anon_sym_not_eq] = ACTIONS(7211), - [anon_sym_DASH_DASH] = ACTIONS(7211), - [anon_sym_PLUS_PLUS] = ACTIONS(7211), - [anon_sym_DOT] = ACTIONS(7209), - [anon_sym_DOT_STAR] = ACTIONS(7211), - [anon_sym_DASH_GT] = ACTIONS(7211), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7211), - [anon_sym_override] = ACTIONS(7211), - [anon_sym_requires] = ACTIONS(7211), - }, - [STATE(3027)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_RBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), + [STATE(2702)] = { + [sym_attribute_specifier] = STATE(4381), + [sym_attribute_declaration] = STATE(4895), + [sym_gnu_asm_expression] = STATE(9115), + [sym_virtual_specifier] = STATE(5261), + [sym__function_exception_specification] = STATE(3384), + [sym__function_attributes_end] = STATE(4591), + [sym__function_postfix] = STATE(5681), + [sym_trailing_return_type] = STATE(4660), + [sym_noexcept] = STATE(3384), + [sym_throw_specifier] = STATE(3384), + [sym_requires_clause] = STATE(5681), + [aux_sym_type_definition_repeat1] = STATE(4381), + [aux_sym_attributed_declarator_repeat1] = STATE(4895), + [aux_sym__function_postfix_repeat1] = STATE(5261), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_RPAREN] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym___attribute__] = ACTIONS(6764), + [anon_sym___attribute] = ACTIONS(6766), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7966), + [anon_sym_and] = ACTIONS(7966), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7966), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(8595), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), - }, - [STATE(3028)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7229), - [anon_sym_COMMA] = ACTIONS(7229), - [anon_sym_LPAREN2] = ACTIONS(7229), - [anon_sym_DASH] = ACTIONS(7227), - [anon_sym_PLUS] = ACTIONS(7227), - [anon_sym_STAR] = ACTIONS(7227), - [anon_sym_SLASH] = ACTIONS(7227), - [anon_sym_PERCENT] = ACTIONS(7227), - [anon_sym_PIPE_PIPE] = ACTIONS(7229), - [anon_sym_AMP_AMP] = ACTIONS(7229), - [anon_sym_PIPE] = ACTIONS(7227), - [anon_sym_CARET] = ACTIONS(7227), - [anon_sym_AMP] = ACTIONS(7227), - [anon_sym_EQ_EQ] = ACTIONS(7229), - [anon_sym_BANG_EQ] = ACTIONS(7229), - [anon_sym_GT] = ACTIONS(7227), - [anon_sym_GT_EQ] = ACTIONS(7229), - [anon_sym_LT_EQ] = ACTIONS(7227), - [anon_sym_LT] = ACTIONS(7227), - [anon_sym_LT_LT] = ACTIONS(7227), - [anon_sym_GT_GT] = ACTIONS(7227), - [anon_sym___extension__] = ACTIONS(7229), - [anon_sym_LBRACE] = ACTIONS(7229), - [anon_sym_LBRACK] = ACTIONS(7229), - [anon_sym_RBRACK] = ACTIONS(7229), - [anon_sym_EQ] = ACTIONS(7227), - [anon_sym_const] = ACTIONS(7227), - [anon_sym_constexpr] = ACTIONS(7229), - [anon_sym_volatile] = ACTIONS(7229), - [anon_sym_restrict] = ACTIONS(7229), - [anon_sym___restrict__] = ACTIONS(7229), - [anon_sym__Atomic] = ACTIONS(7229), - [anon_sym__Noreturn] = ACTIONS(7229), - [anon_sym_noreturn] = ACTIONS(7229), - [anon_sym__Nonnull] = ACTIONS(7229), - [anon_sym_mutable] = ACTIONS(7229), - [anon_sym_constinit] = ACTIONS(7229), - [anon_sym_consteval] = ACTIONS(7229), - [anon_sym_alignas] = ACTIONS(7229), - [anon_sym__Alignas] = ACTIONS(7229), - [anon_sym_QMARK] = ACTIONS(7229), - [anon_sym_STAR_EQ] = ACTIONS(7229), - [anon_sym_SLASH_EQ] = ACTIONS(7229), - [anon_sym_PERCENT_EQ] = ACTIONS(7229), - [anon_sym_PLUS_EQ] = ACTIONS(7229), - [anon_sym_DASH_EQ] = ACTIONS(7229), - [anon_sym_LT_LT_EQ] = ACTIONS(7229), - [anon_sym_GT_GT_EQ] = ACTIONS(7229), - [anon_sym_AMP_EQ] = ACTIONS(7229), - [anon_sym_CARET_EQ] = ACTIONS(7229), - [anon_sym_PIPE_EQ] = ACTIONS(7229), - [anon_sym_and_eq] = ACTIONS(7229), - [anon_sym_or_eq] = ACTIONS(7229), - [anon_sym_xor_eq] = ACTIONS(7229), - [anon_sym_LT_EQ_GT] = ACTIONS(7229), - [anon_sym_or] = ACTIONS(7227), - [anon_sym_and] = ACTIONS(7227), - [anon_sym_bitor] = ACTIONS(7229), - [anon_sym_xor] = ACTIONS(7227), - [anon_sym_bitand] = ACTIONS(7229), - [anon_sym_not_eq] = ACTIONS(7229), - [anon_sym_DASH_DASH] = ACTIONS(7229), - [anon_sym_PLUS_PLUS] = ACTIONS(7229), - [anon_sym_DOT] = ACTIONS(7227), - [anon_sym_DOT_STAR] = ACTIONS(7229), - [anon_sym_DASH_GT] = ACTIONS(7229), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7229), - [anon_sym_override] = ACTIONS(7229), - [anon_sym_requires] = ACTIONS(7229), + [anon_sym_final] = ACTIONS(8633), + [anon_sym_override] = ACTIONS(8633), + [anon_sym_noexcept] = ACTIONS(6779), + [anon_sym_throw] = ACTIONS(6781), + [anon_sym_requires] = ACTIONS(8636), + [anon_sym_DASH_GT_STAR] = ACTIONS(7966), }, - [STATE(3029)] = { + [STATE(2703)] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), [anon_sym_COMMA] = ACTIONS(7233), [anon_sym_LPAREN2] = ACTIONS(7233), @@ -382312,15 +371578,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(7233), [anon_sym_BANG_EQ] = ACTIONS(7233), [anon_sym_GT] = ACTIONS(7231), - [anon_sym_GT_EQ] = ACTIONS(7233), + [anon_sym_GT_EQ] = ACTIONS(7231), [anon_sym_LT_EQ] = ACTIONS(7231), [anon_sym_LT] = ACTIONS(7231), [anon_sym_LT_LT] = ACTIONS(7231), [anon_sym_GT_GT] = ACTIONS(7231), [anon_sym___extension__] = ACTIONS(7233), + [anon_sym___attribute__] = ACTIONS(7233), + [anon_sym___attribute] = ACTIONS(7231), + [anon_sym_COLON] = ACTIONS(7231), + [anon_sym_COLON_COLON] = ACTIONS(7233), [anon_sym_LBRACE] = ACTIONS(7233), [anon_sym_LBRACK] = ACTIONS(7233), - [anon_sym_RBRACK] = ACTIONS(7233), [anon_sym_EQ] = ACTIONS(7231), [anon_sym_const] = ACTIONS(7231), [anon_sym_constexpr] = ACTIONS(7233), @@ -382343,7 +371612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_EQ] = ACTIONS(7233), [anon_sym_DASH_EQ] = ACTIONS(7233), [anon_sym_LT_LT_EQ] = ACTIONS(7233), - [anon_sym_GT_GT_EQ] = ACTIONS(7233), + [anon_sym_GT_GT_EQ] = ACTIONS(7231), [anon_sym_AMP_EQ] = ACTIONS(7233), [anon_sym_CARET_EQ] = ACTIONS(7233), [anon_sym_PIPE_EQ] = ACTIONS(7233), @@ -382365,225 +371634,619 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7233), [anon_sym_override] = ACTIONS(7233), + [anon_sym_GT2] = ACTIONS(7233), [anon_sym_requires] = ACTIONS(7233), }, - [STATE(3030)] = { - [sym_identifier] = ACTIONS(7295), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7297), - [anon_sym_COMMA] = ACTIONS(7297), - [anon_sym_RPAREN] = ACTIONS(7297), - [anon_sym_LPAREN2] = ACTIONS(7297), - [anon_sym_DASH] = ACTIONS(7295), - [anon_sym_PLUS] = ACTIONS(7295), - [anon_sym_STAR] = ACTIONS(7297), - [anon_sym_SLASH] = ACTIONS(7295), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_PIPE_PIPE] = ACTIONS(7297), - [anon_sym_AMP_AMP] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7295), - [anon_sym_CARET] = ACTIONS(7297), - [anon_sym_AMP] = ACTIONS(7295), - [anon_sym_EQ_EQ] = ACTIONS(7297), - [anon_sym_BANG_EQ] = ACTIONS(7297), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_GT_EQ] = ACTIONS(7297), - [anon_sym_LT_EQ] = ACTIONS(7295), - [anon_sym_LT] = ACTIONS(7295), - [anon_sym_LT_LT] = ACTIONS(7297), - [anon_sym_GT_GT] = ACTIONS(7297), - [anon_sym_SEMI] = ACTIONS(7297), - [anon_sym___extension__] = ACTIONS(7295), - [anon_sym___attribute__] = ACTIONS(7295), - [anon_sym___attribute] = ACTIONS(7295), - [anon_sym_COLON] = ACTIONS(7295), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7297), - [anon_sym___based] = ACTIONS(7295), - [anon_sym_LBRACE] = ACTIONS(7297), - [anon_sym_RBRACE] = ACTIONS(7297), - [anon_sym_signed] = ACTIONS(7295), - [anon_sym_unsigned] = ACTIONS(7295), - [anon_sym_long] = ACTIONS(7295), - [anon_sym_short] = ACTIONS(7295), - [anon_sym_LBRACK] = ACTIONS(7297), - [anon_sym_const] = ACTIONS(7295), - [anon_sym_constexpr] = ACTIONS(7295), - [anon_sym_volatile] = ACTIONS(7295), - [anon_sym_restrict] = ACTIONS(7295), - [anon_sym___restrict__] = ACTIONS(7295), - [anon_sym__Atomic] = ACTIONS(7295), - [anon_sym__Noreturn] = ACTIONS(7295), - [anon_sym_noreturn] = ACTIONS(7295), - [anon_sym__Nonnull] = ACTIONS(7295), - [anon_sym_mutable] = ACTIONS(7295), - [anon_sym_constinit] = ACTIONS(7295), - [anon_sym_consteval] = ACTIONS(7295), - [anon_sym_alignas] = ACTIONS(7295), - [anon_sym__Alignas] = ACTIONS(7295), - [sym_primitive_type] = ACTIONS(7295), - [anon_sym_QMARK] = ACTIONS(7297), - [anon_sym_LT_EQ_GT] = ACTIONS(7297), - [anon_sym_or] = ACTIONS(7295), - [anon_sym_and] = ACTIONS(7295), - [anon_sym_bitor] = ACTIONS(7295), - [anon_sym_xor] = ACTIONS(7295), - [anon_sym_bitand] = ACTIONS(7295), - [anon_sym_not_eq] = ACTIONS(7295), - [anon_sym_DASH_DASH] = ACTIONS(7297), - [anon_sym_PLUS_PLUS] = ACTIONS(7297), - [anon_sym_DOT] = ACTIONS(7295), - [anon_sym_DOT_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(7297), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7295), - [anon_sym_override] = ACTIONS(7295), - [anon_sym_requires] = ACTIONS(7295), - [anon_sym_COLON_RBRACK] = ACTIONS(7297), + [STATE(2704)] = { + [sym_attribute_specifier] = STATE(3046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7415), + [anon_sym_COMMA] = ACTIONS(7415), + [anon_sym_RPAREN] = ACTIONS(7415), + [anon_sym_LPAREN2] = ACTIONS(7415), + [anon_sym_DASH] = ACTIONS(7413), + [anon_sym_PLUS] = ACTIONS(7413), + [anon_sym_STAR] = ACTIONS(7413), + [anon_sym_SLASH] = ACTIONS(7413), + [anon_sym_PERCENT] = ACTIONS(7413), + [anon_sym_PIPE_PIPE] = ACTIONS(7415), + [anon_sym_AMP_AMP] = ACTIONS(7415), + [anon_sym_PIPE] = ACTIONS(7413), + [anon_sym_CARET] = ACTIONS(7413), + [anon_sym_AMP] = ACTIONS(7413), + [anon_sym_EQ_EQ] = ACTIONS(7415), + [anon_sym_BANG_EQ] = ACTIONS(7415), + [anon_sym_GT] = ACTIONS(7413), + [anon_sym_GT_EQ] = ACTIONS(7415), + [anon_sym_LT_EQ] = ACTIONS(7413), + [anon_sym_LT] = ACTIONS(7413), + [anon_sym_LT_LT] = ACTIONS(7413), + [anon_sym_GT_GT] = ACTIONS(7413), + [anon_sym___extension__] = ACTIONS(7415), + [anon_sym___attribute__] = ACTIONS(8152), + [anon_sym___attribute] = ACTIONS(8154), + [anon_sym_LBRACE] = ACTIONS(7415), + [anon_sym_LBRACK] = ACTIONS(7415), + [anon_sym_EQ] = ACTIONS(7413), + [anon_sym_const] = ACTIONS(7413), + [anon_sym_constexpr] = ACTIONS(7415), + [anon_sym_volatile] = ACTIONS(7415), + [anon_sym_restrict] = ACTIONS(7415), + [anon_sym___restrict__] = ACTIONS(7415), + [anon_sym__Atomic] = ACTIONS(7415), + [anon_sym__Noreturn] = ACTIONS(7415), + [anon_sym_noreturn] = ACTIONS(7415), + [anon_sym__Nonnull] = ACTIONS(7415), + [anon_sym_mutable] = ACTIONS(7415), + [anon_sym_constinit] = ACTIONS(7415), + [anon_sym_consteval] = ACTIONS(7415), + [anon_sym_alignas] = ACTIONS(7415), + [anon_sym__Alignas] = ACTIONS(7415), + [anon_sym_QMARK] = ACTIONS(7415), + [anon_sym_STAR_EQ] = ACTIONS(7415), + [anon_sym_SLASH_EQ] = ACTIONS(7415), + [anon_sym_PERCENT_EQ] = ACTIONS(7415), + [anon_sym_PLUS_EQ] = ACTIONS(7415), + [anon_sym_DASH_EQ] = ACTIONS(7415), + [anon_sym_LT_LT_EQ] = ACTIONS(7415), + [anon_sym_GT_GT_EQ] = ACTIONS(7415), + [anon_sym_AMP_EQ] = ACTIONS(7415), + [anon_sym_CARET_EQ] = ACTIONS(7415), + [anon_sym_PIPE_EQ] = ACTIONS(7415), + [anon_sym_and_eq] = ACTIONS(7415), + [anon_sym_or_eq] = ACTIONS(7415), + [anon_sym_xor_eq] = ACTIONS(7415), + [anon_sym_LT_EQ_GT] = ACTIONS(7415), + [anon_sym_or] = ACTIONS(7413), + [anon_sym_and] = ACTIONS(7413), + [anon_sym_bitor] = ACTIONS(7415), + [anon_sym_xor] = ACTIONS(7413), + [anon_sym_bitand] = ACTIONS(7415), + [anon_sym_not_eq] = ACTIONS(7415), + [anon_sym_DASH_DASH] = ACTIONS(7415), + [anon_sym_PLUS_PLUS] = ACTIONS(7415), + [anon_sym_DOT] = ACTIONS(7413), + [anon_sym_DOT_STAR] = ACTIONS(7415), + [anon_sym_DASH_GT] = ACTIONS(7413), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7415), + [anon_sym_override] = ACTIONS(7415), + [anon_sym_requires] = ACTIONS(7415), + [anon_sym_DASH_GT_STAR] = ACTIONS(7415), }, - [STATE(3031)] = { - [sym_type_qualifier] = STATE(2399), - [sym_alignas_qualifier] = STATE(2592), - [aux_sym__type_definition_type_repeat1] = STATE(2399), - [aux_sym_sized_type_specifier_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(8366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), - [anon_sym_COMMA] = ACTIONS(6884), - [anon_sym_RPAREN] = ACTIONS(6884), - [anon_sym_LPAREN2] = ACTIONS(6884), - [anon_sym_DASH] = ACTIONS(6886), - [anon_sym_PLUS] = ACTIONS(6886), - [anon_sym_STAR] = ACTIONS(6884), - [anon_sym_SLASH] = ACTIONS(6886), - [anon_sym_PERCENT] = ACTIONS(6884), - [anon_sym_PIPE_PIPE] = ACTIONS(6884), - [anon_sym_AMP_AMP] = ACTIONS(6884), - [anon_sym_PIPE] = ACTIONS(6886), - [anon_sym_CARET] = ACTIONS(6884), - [anon_sym_AMP] = ACTIONS(6886), - [anon_sym_EQ_EQ] = ACTIONS(6884), - [anon_sym_BANG_EQ] = ACTIONS(6884), - [anon_sym_GT] = ACTIONS(6886), - [anon_sym_GT_EQ] = ACTIONS(6884), - [anon_sym_LT_EQ] = ACTIONS(6886), - [anon_sym_LT] = ACTIONS(6886), - [anon_sym_LT_LT] = ACTIONS(6884), - [anon_sym_GT_GT] = ACTIONS(6884), - [anon_sym_SEMI] = ACTIONS(6884), - [anon_sym___extension__] = ACTIONS(7784), - [anon_sym___attribute__] = ACTIONS(6886), - [anon_sym___attribute] = ACTIONS(6886), - [anon_sym_COLON] = ACTIONS(6886), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6884), - [anon_sym_LBRACE] = ACTIONS(6884), - [anon_sym_RBRACE] = ACTIONS(6884), - [anon_sym_signed] = ACTIONS(8371), - [anon_sym_unsigned] = ACTIONS(8371), - [anon_sym_long] = ACTIONS(8371), - [anon_sym_short] = ACTIONS(8371), - [anon_sym_LBRACK] = ACTIONS(6884), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7784), - [anon_sym_volatile] = ACTIONS(7784), - [anon_sym_restrict] = ACTIONS(7784), - [anon_sym___restrict__] = ACTIONS(7784), - [anon_sym__Atomic] = ACTIONS(7784), - [anon_sym__Noreturn] = ACTIONS(7784), - [anon_sym_noreturn] = ACTIONS(7784), - [anon_sym__Nonnull] = ACTIONS(7784), - [anon_sym_mutable] = ACTIONS(7784), - [anon_sym_constinit] = ACTIONS(7784), - [anon_sym_consteval] = ACTIONS(7784), - [anon_sym_alignas] = ACTIONS(8669), - [anon_sym__Alignas] = ACTIONS(8669), - [sym_primitive_type] = ACTIONS(8376), - [anon_sym_QMARK] = ACTIONS(6884), - [anon_sym_LT_EQ_GT] = ACTIONS(6884), - [anon_sym_or] = ACTIONS(6886), - [anon_sym_and] = ACTIONS(6886), - [anon_sym_bitor] = ACTIONS(6886), - [anon_sym_xor] = ACTIONS(6886), - [anon_sym_bitand] = ACTIONS(6886), - [anon_sym_not_eq] = ACTIONS(6886), - [anon_sym_DASH_DASH] = ACTIONS(6884), - [anon_sym_PLUS_PLUS] = ACTIONS(6884), - [anon_sym_DOT] = ACTIONS(6886), - [anon_sym_DOT_STAR] = ACTIONS(6884), - [anon_sym_DASH_GT] = ACTIONS(6884), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6884), + [STATE(2705)] = { + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6484), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(5936), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(3032)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_RBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), + [STATE(2706)] = { + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(7515), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(5936), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(3033)] = { + [STATE(2707)] = { + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6485), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(5936), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(2708)] = { + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6486), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(5936), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(2709)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), + [anon_sym_COMMA] = ACTIONS(7201), + [anon_sym_LPAREN2] = ACTIONS(7201), + [anon_sym_DASH] = ACTIONS(7199), + [anon_sym_PLUS] = ACTIONS(7199), + [anon_sym_STAR] = ACTIONS(7199), + [anon_sym_SLASH] = ACTIONS(7199), + [anon_sym_PERCENT] = ACTIONS(7199), + [anon_sym_PIPE_PIPE] = ACTIONS(7201), + [anon_sym_AMP_AMP] = ACTIONS(7201), + [anon_sym_PIPE] = ACTIONS(7199), + [anon_sym_CARET] = ACTIONS(7199), + [anon_sym_AMP] = ACTIONS(7199), + [anon_sym_EQ_EQ] = ACTIONS(7201), + [anon_sym_BANG_EQ] = ACTIONS(7201), + [anon_sym_GT] = ACTIONS(7199), + [anon_sym_GT_EQ] = ACTIONS(7199), + [anon_sym_LT_EQ] = ACTIONS(7199), + [anon_sym_LT] = ACTIONS(7199), + [anon_sym_LT_LT] = ACTIONS(7199), + [anon_sym_GT_GT] = ACTIONS(7199), + [anon_sym___extension__] = ACTIONS(7201), + [sym_ms_restrict_modifier] = ACTIONS(7199), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7201), + [sym_ms_signed_ptr_modifier] = ACTIONS(7201), + [anon_sym__unaligned] = ACTIONS(7201), + [anon_sym___unaligned] = ACTIONS(7201), + [anon_sym_LBRACK] = ACTIONS(7201), + [anon_sym_EQ] = ACTIONS(7199), + [anon_sym_const] = ACTIONS(7199), + [anon_sym_constexpr] = ACTIONS(7201), + [anon_sym_volatile] = ACTIONS(7201), + [anon_sym_restrict] = ACTIONS(7201), + [anon_sym___restrict__] = ACTIONS(7201), + [anon_sym__Atomic] = ACTIONS(7201), + [anon_sym__Noreturn] = ACTIONS(7201), + [anon_sym_noreturn] = ACTIONS(7201), + [anon_sym__Nonnull] = ACTIONS(7201), + [anon_sym_mutable] = ACTIONS(7201), + [anon_sym_constinit] = ACTIONS(7201), + [anon_sym_consteval] = ACTIONS(7201), + [anon_sym_alignas] = ACTIONS(7201), + [anon_sym__Alignas] = ACTIONS(7201), + [anon_sym_QMARK] = ACTIONS(7201), + [anon_sym_STAR_EQ] = ACTIONS(7201), + [anon_sym_SLASH_EQ] = ACTIONS(7201), + [anon_sym_PERCENT_EQ] = ACTIONS(7201), + [anon_sym_PLUS_EQ] = ACTIONS(7201), + [anon_sym_DASH_EQ] = ACTIONS(7201), + [anon_sym_LT_LT_EQ] = ACTIONS(7201), + [anon_sym_GT_GT_EQ] = ACTIONS(7199), + [anon_sym_AMP_EQ] = ACTIONS(7201), + [anon_sym_CARET_EQ] = ACTIONS(7201), + [anon_sym_PIPE_EQ] = ACTIONS(7201), + [anon_sym_and_eq] = ACTIONS(7201), + [anon_sym_or_eq] = ACTIONS(7201), + [anon_sym_xor_eq] = ACTIONS(7201), + [anon_sym_LT_EQ_GT] = ACTIONS(7201), + [anon_sym_or] = ACTIONS(7199), + [anon_sym_and] = ACTIONS(7199), + [anon_sym_bitor] = ACTIONS(7201), + [anon_sym_xor] = ACTIONS(7199), + [anon_sym_bitand] = ACTIONS(7201), + [anon_sym_not_eq] = ACTIONS(7201), + [anon_sym_DASH_DASH] = ACTIONS(7201), + [anon_sym_PLUS_PLUS] = ACTIONS(7201), + [anon_sym_DOT] = ACTIONS(7199), + [anon_sym_DOT_STAR] = ACTIONS(7201), + [anon_sym_DASH_GT] = ACTIONS(7201), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7201), + [anon_sym_override] = ACTIONS(7201), + [anon_sym_GT2] = ACTIONS(7201), + [anon_sym_requires] = ACTIONS(7201), + }, + [STATE(2710)] = { + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6488), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(5936), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(2711)] = { + [sym__declaration_modifiers] = STATE(2856), + [sym__declaration_specifiers] = STATE(6489), + [sym_attribute_specifier] = STATE(2856), + [sym_attribute_declaration] = STATE(2856), + [sym_ms_declspec_modifier] = STATE(2856), + [sym_storage_class_specifier] = STATE(2856), + [sym_type_qualifier] = STATE(2856), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4017), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(5936), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(2712)] = { + [sym_decltype_auto] = STATE(3205), [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), [anon_sym_COMMA] = ACTIONS(7225), [anon_sym_LPAREN2] = ACTIONS(7225), @@ -382606,6 +372269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(7223), [anon_sym_GT_GT] = ACTIONS(7223), [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_COLON_COLON] = ACTIONS(7227), [anon_sym_LBRACE] = ACTIONS(7225), [anon_sym_LBRACK] = ACTIONS(7225), [anon_sym_RBRACK] = ACTIONS(7225), @@ -382651,515 +372315,925 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7225), [anon_sym_DASH_GT] = ACTIONS(7225), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8639), + [anon_sym_decltype] = ACTIONS(7073), [anon_sym_final] = ACTIONS(7225), [anon_sym_override] = ACTIONS(7225), [anon_sym_requires] = ACTIONS(7225), }, - [STATE(3034)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), - [anon_sym_COMMA] = ACTIONS(7289), - [anon_sym_LPAREN2] = ACTIONS(7289), - [anon_sym_DASH] = ACTIONS(7287), - [anon_sym_PLUS] = ACTIONS(7287), - [anon_sym_STAR] = ACTIONS(7287), - [anon_sym_SLASH] = ACTIONS(7287), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_PIPE_PIPE] = ACTIONS(7289), - [anon_sym_AMP_AMP] = ACTIONS(7289), - [anon_sym_PIPE] = ACTIONS(7287), - [anon_sym_CARET] = ACTIONS(7287), - [anon_sym_AMP] = ACTIONS(7287), - [anon_sym_EQ_EQ] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7289), - [anon_sym_GT] = ACTIONS(7287), - [anon_sym_GT_EQ] = ACTIONS(7287), - [anon_sym_LT_EQ] = ACTIONS(7287), - [anon_sym_LT] = ACTIONS(7287), - [anon_sym_LT_LT] = ACTIONS(7287), - [anon_sym_GT_GT] = ACTIONS(7287), - [anon_sym___extension__] = ACTIONS(7289), - [anon_sym_LBRACE] = ACTIONS(7289), - [anon_sym_LBRACK] = ACTIONS(7289), - [anon_sym_EQ] = ACTIONS(7287), - [anon_sym_const] = ACTIONS(7287), - [anon_sym_constexpr] = ACTIONS(7289), - [anon_sym_volatile] = ACTIONS(7289), - [anon_sym_restrict] = ACTIONS(7289), - [anon_sym___restrict__] = ACTIONS(7289), - [anon_sym__Atomic] = ACTIONS(7289), - [anon_sym__Noreturn] = ACTIONS(7289), - [anon_sym_noreturn] = ACTIONS(7289), - [anon_sym__Nonnull] = ACTIONS(7289), - [anon_sym_mutable] = ACTIONS(7289), - [anon_sym_constinit] = ACTIONS(7289), - [anon_sym_consteval] = ACTIONS(7289), - [anon_sym_alignas] = ACTIONS(7289), - [anon_sym__Alignas] = ACTIONS(7289), - [anon_sym_QMARK] = ACTIONS(7289), - [anon_sym_STAR_EQ] = ACTIONS(7289), - [anon_sym_SLASH_EQ] = ACTIONS(7289), - [anon_sym_PERCENT_EQ] = ACTIONS(7289), - [anon_sym_PLUS_EQ] = ACTIONS(7289), - [anon_sym_DASH_EQ] = ACTIONS(7289), - [anon_sym_LT_LT_EQ] = ACTIONS(7289), - [anon_sym_GT_GT_EQ] = ACTIONS(7287), - [anon_sym_AMP_EQ] = ACTIONS(7289), - [anon_sym_CARET_EQ] = ACTIONS(7289), - [anon_sym_PIPE_EQ] = ACTIONS(7289), - [anon_sym_and_eq] = ACTIONS(7289), - [anon_sym_or_eq] = ACTIONS(7289), - [anon_sym_xor_eq] = ACTIONS(7289), - [anon_sym_LT_EQ_GT] = ACTIONS(7289), - [anon_sym_or] = ACTIONS(7287), - [anon_sym_and] = ACTIONS(7287), - [anon_sym_bitor] = ACTIONS(7289), - [anon_sym_xor] = ACTIONS(7287), - [anon_sym_bitand] = ACTIONS(7289), - [anon_sym_not_eq] = ACTIONS(7289), - [anon_sym_DASH_DASH] = ACTIONS(7289), - [anon_sym_PLUS_PLUS] = ACTIONS(7289), - [anon_sym_DOT] = ACTIONS(7287), - [anon_sym_DOT_STAR] = ACTIONS(7289), - [anon_sym_DASH_GT] = ACTIONS(7289), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7289), - [anon_sym_override] = ACTIONS(7289), - [anon_sym_GT2] = ACTIONS(7289), - [anon_sym_requires] = ACTIONS(7289), + [STATE(2713)] = { + [sym_identifier] = ACTIONS(3163), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [aux_sym_preproc_if_token1] = ACTIONS(3163), + [aux_sym_preproc_if_token2] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), + [aux_sym_preproc_else_token1] = ACTIONS(3163), + [aux_sym_preproc_elif_token1] = ACTIONS(3163), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3163), + [sym_preproc_directive] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_extern] = ACTIONS(3163), + [anon_sym___attribute__] = ACTIONS(3163), + [anon_sym___attribute] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3163), + [anon_sym___based] = ACTIONS(3163), + [anon_sym_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym___inline] = ACTIONS(3163), + [anon_sym___inline__] = ACTIONS(3163), + [anon_sym___forceinline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym___thread] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym___restrict__] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym__Noreturn] = ACTIONS(3163), + [anon_sym_noreturn] = ACTIONS(3163), + [anon_sym__Nonnull] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym__Alignas] = ACTIONS(3163), + [sym_primitive_type] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_typename] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_private] = ACTIONS(3163), + [anon_sym_template] = ACTIONS(3163), + [anon_sym_operator] = ACTIONS(3163), + [anon_sym_friend] = ACTIONS(3163), + [anon_sym_public] = ACTIONS(3163), + [anon_sym_protected] = ACTIONS(3163), + [anon_sym_static_assert] = ACTIONS(3163), + [anon_sym_catch] = ACTIONS(3163), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), }, - [STATE(3035)] = { - [sym_identifier] = ACTIONS(7355), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7357), - [anon_sym_COMMA] = ACTIONS(7357), - [anon_sym_RPAREN] = ACTIONS(7357), - [anon_sym_LPAREN2] = ACTIONS(7357), - [anon_sym_DASH] = ACTIONS(7355), - [anon_sym_PLUS] = ACTIONS(7355), - [anon_sym_STAR] = ACTIONS(7357), - [anon_sym_SLASH] = ACTIONS(7355), - [anon_sym_PERCENT] = ACTIONS(7357), - [anon_sym_PIPE_PIPE] = ACTIONS(7357), - [anon_sym_AMP_AMP] = ACTIONS(7357), - [anon_sym_PIPE] = ACTIONS(7355), - [anon_sym_CARET] = ACTIONS(7357), - [anon_sym_AMP] = ACTIONS(7355), - [anon_sym_EQ_EQ] = ACTIONS(7357), - [anon_sym_BANG_EQ] = ACTIONS(7357), - [anon_sym_GT] = ACTIONS(7355), - [anon_sym_GT_EQ] = ACTIONS(7357), - [anon_sym_LT_EQ] = ACTIONS(7355), - [anon_sym_LT] = ACTIONS(7355), - [anon_sym_LT_LT] = ACTIONS(7357), - [anon_sym_GT_GT] = ACTIONS(7357), - [anon_sym_SEMI] = ACTIONS(7357), - [anon_sym___extension__] = ACTIONS(7355), - [anon_sym___attribute__] = ACTIONS(7355), - [anon_sym___attribute] = ACTIONS(7355), - [anon_sym_COLON] = ACTIONS(7355), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7357), - [anon_sym___based] = ACTIONS(7355), - [anon_sym_LBRACE] = ACTIONS(7357), - [anon_sym_RBRACE] = ACTIONS(7357), - [anon_sym_signed] = ACTIONS(7355), - [anon_sym_unsigned] = ACTIONS(7355), - [anon_sym_long] = ACTIONS(7355), - [anon_sym_short] = ACTIONS(7355), - [anon_sym_LBRACK] = ACTIONS(7357), - [anon_sym_const] = ACTIONS(7355), - [anon_sym_constexpr] = ACTIONS(7355), - [anon_sym_volatile] = ACTIONS(7355), - [anon_sym_restrict] = ACTIONS(7355), - [anon_sym___restrict__] = ACTIONS(7355), - [anon_sym__Atomic] = ACTIONS(7355), - [anon_sym__Noreturn] = ACTIONS(7355), - [anon_sym_noreturn] = ACTIONS(7355), - [anon_sym__Nonnull] = ACTIONS(7355), - [anon_sym_mutable] = ACTIONS(7355), - [anon_sym_constinit] = ACTIONS(7355), - [anon_sym_consteval] = ACTIONS(7355), - [anon_sym_alignas] = ACTIONS(7355), - [anon_sym__Alignas] = ACTIONS(7355), - [sym_primitive_type] = ACTIONS(7355), - [anon_sym_QMARK] = ACTIONS(7357), - [anon_sym_LT_EQ_GT] = ACTIONS(7357), - [anon_sym_or] = ACTIONS(7355), - [anon_sym_and] = ACTIONS(7355), - [anon_sym_bitor] = ACTIONS(7355), - [anon_sym_xor] = ACTIONS(7355), - [anon_sym_bitand] = ACTIONS(7355), - [anon_sym_not_eq] = ACTIONS(7355), - [anon_sym_DASH_DASH] = ACTIONS(7357), - [anon_sym_PLUS_PLUS] = ACTIONS(7357), - [anon_sym_DOT] = ACTIONS(7355), - [anon_sym_DOT_STAR] = ACTIONS(7357), - [anon_sym_DASH_GT] = ACTIONS(7357), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7355), - [anon_sym_override] = ACTIONS(7355), - [anon_sym_requires] = ACTIONS(7355), - [anon_sym_COLON_RBRACK] = ACTIONS(7357), + [STATE(2714)] = { + [sym_identifier] = ACTIONS(3155), + [aux_sym_preproc_def_token1] = ACTIONS(3155), + [aux_sym_preproc_if_token1] = ACTIONS(3155), + [aux_sym_preproc_if_token2] = ACTIONS(3155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3155), + [aux_sym_preproc_else_token1] = ACTIONS(3155), + [aux_sym_preproc_elif_token1] = ACTIONS(3155), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3155), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3155), + [sym_preproc_directive] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_AMP_AMP] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym___extension__] = ACTIONS(3155), + [anon_sym_typedef] = ACTIONS(3155), + [anon_sym_virtual] = ACTIONS(3155), + [anon_sym_extern] = ACTIONS(3155), + [anon_sym___attribute__] = ACTIONS(3155), + [anon_sym___attribute] = ACTIONS(3155), + [anon_sym_using] = ACTIONS(3155), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), + [anon_sym___declspec] = ACTIONS(3155), + [anon_sym___based] = ACTIONS(3155), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_static] = ACTIONS(3155), + [anon_sym_register] = ACTIONS(3155), + [anon_sym_inline] = ACTIONS(3155), + [anon_sym___inline] = ACTIONS(3155), + [anon_sym___inline__] = ACTIONS(3155), + [anon_sym___forceinline] = ACTIONS(3155), + [anon_sym_thread_local] = ACTIONS(3155), + [anon_sym___thread] = ACTIONS(3155), + [anon_sym_const] = ACTIONS(3155), + [anon_sym_constexpr] = ACTIONS(3155), + [anon_sym_volatile] = ACTIONS(3155), + [anon_sym_restrict] = ACTIONS(3155), + [anon_sym___restrict__] = ACTIONS(3155), + [anon_sym__Atomic] = ACTIONS(3155), + [anon_sym__Noreturn] = ACTIONS(3155), + [anon_sym_noreturn] = ACTIONS(3155), + [anon_sym__Nonnull] = ACTIONS(3155), + [anon_sym_mutable] = ACTIONS(3155), + [anon_sym_constinit] = ACTIONS(3155), + [anon_sym_consteval] = ACTIONS(3155), + [anon_sym_alignas] = ACTIONS(3155), + [anon_sym__Alignas] = ACTIONS(3155), + [sym_primitive_type] = ACTIONS(3155), + [anon_sym_enum] = ACTIONS(3155), + [anon_sym_class] = ACTIONS(3155), + [anon_sym_struct] = ACTIONS(3155), + [anon_sym_union] = ACTIONS(3155), + [anon_sym_typename] = ACTIONS(3155), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3155), + [anon_sym_decltype] = ACTIONS(3155), + [anon_sym_explicit] = ACTIONS(3155), + [anon_sym_private] = ACTIONS(3155), + [anon_sym_template] = ACTIONS(3155), + [anon_sym_operator] = ACTIONS(3155), + [anon_sym_friend] = ACTIONS(3155), + [anon_sym_public] = ACTIONS(3155), + [anon_sym_protected] = ACTIONS(3155), + [anon_sym_static_assert] = ACTIONS(3155), + [anon_sym_catch] = ACTIONS(3155), + [anon_sym_LBRACK_COLON] = ACTIONS(3153), }, - [STATE(3036)] = { - [sym_identifier] = ACTIONS(7359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), - [anon_sym_COMMA] = ACTIONS(7361), - [anon_sym_RPAREN] = ACTIONS(7361), - [anon_sym_LPAREN2] = ACTIONS(7361), - [anon_sym_DASH] = ACTIONS(7359), - [anon_sym_PLUS] = ACTIONS(7359), - [anon_sym_STAR] = ACTIONS(7361), - [anon_sym_SLASH] = ACTIONS(7359), - [anon_sym_PERCENT] = ACTIONS(7361), - [anon_sym_PIPE_PIPE] = ACTIONS(7361), - [anon_sym_AMP_AMP] = ACTIONS(7361), - [anon_sym_PIPE] = ACTIONS(7359), - [anon_sym_CARET] = ACTIONS(7361), - [anon_sym_AMP] = ACTIONS(7359), - [anon_sym_EQ_EQ] = ACTIONS(7361), - [anon_sym_BANG_EQ] = ACTIONS(7361), - [anon_sym_GT] = ACTIONS(7359), - [anon_sym_GT_EQ] = ACTIONS(7361), - [anon_sym_LT_EQ] = ACTIONS(7359), - [anon_sym_LT] = ACTIONS(7359), - [anon_sym_LT_LT] = ACTIONS(7361), - [anon_sym_GT_GT] = ACTIONS(7361), - [anon_sym_SEMI] = ACTIONS(7361), - [anon_sym___extension__] = ACTIONS(7359), - [anon_sym___attribute__] = ACTIONS(7359), - [anon_sym___attribute] = ACTIONS(7359), - [anon_sym_COLON] = ACTIONS(7359), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), - [anon_sym___based] = ACTIONS(7359), - [anon_sym_LBRACE] = ACTIONS(7361), - [anon_sym_RBRACE] = ACTIONS(7361), - [anon_sym_signed] = ACTIONS(7359), - [anon_sym_unsigned] = ACTIONS(7359), - [anon_sym_long] = ACTIONS(7359), - [anon_sym_short] = ACTIONS(7359), - [anon_sym_LBRACK] = ACTIONS(7361), - [anon_sym_const] = ACTIONS(7359), - [anon_sym_constexpr] = ACTIONS(7359), - [anon_sym_volatile] = ACTIONS(7359), - [anon_sym_restrict] = ACTIONS(7359), - [anon_sym___restrict__] = ACTIONS(7359), - [anon_sym__Atomic] = ACTIONS(7359), - [anon_sym__Noreturn] = ACTIONS(7359), - [anon_sym_noreturn] = ACTIONS(7359), - [anon_sym__Nonnull] = ACTIONS(7359), - [anon_sym_mutable] = ACTIONS(7359), - [anon_sym_constinit] = ACTIONS(7359), - [anon_sym_consteval] = ACTIONS(7359), - [anon_sym_alignas] = ACTIONS(7359), - [anon_sym__Alignas] = ACTIONS(7359), - [sym_primitive_type] = ACTIONS(7359), - [anon_sym_QMARK] = ACTIONS(7361), - [anon_sym_LT_EQ_GT] = ACTIONS(7361), - [anon_sym_or] = ACTIONS(7359), - [anon_sym_and] = ACTIONS(7359), - [anon_sym_bitor] = ACTIONS(7359), - [anon_sym_xor] = ACTIONS(7359), - [anon_sym_bitand] = ACTIONS(7359), - [anon_sym_not_eq] = ACTIONS(7359), - [anon_sym_DASH_DASH] = ACTIONS(7361), - [anon_sym_PLUS_PLUS] = ACTIONS(7361), - [anon_sym_DOT] = ACTIONS(7359), - [anon_sym_DOT_STAR] = ACTIONS(7361), - [anon_sym_DASH_GT] = ACTIONS(7361), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7359), - [anon_sym_override] = ACTIONS(7359), - [anon_sym_requires] = ACTIONS(7359), - [anon_sym_COLON_RBRACK] = ACTIONS(7361), + [STATE(2715)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6634), + [anon_sym_COMMA] = ACTIONS(6634), + [anon_sym_RPAREN] = ACTIONS(6634), + [anon_sym_LPAREN2] = ACTIONS(6634), + [anon_sym_DASH] = ACTIONS(6632), + [anon_sym_PLUS] = ACTIONS(6632), + [anon_sym_STAR] = ACTIONS(6632), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_PERCENT] = ACTIONS(6632), + [anon_sym_PIPE_PIPE] = ACTIONS(6634), + [anon_sym_AMP_AMP] = ACTIONS(6634), + [anon_sym_PIPE] = ACTIONS(6632), + [anon_sym_CARET] = ACTIONS(6632), + [anon_sym_AMP] = ACTIONS(6632), + [anon_sym_EQ_EQ] = ACTIONS(6634), + [anon_sym_BANG_EQ] = ACTIONS(6634), + [anon_sym_GT] = ACTIONS(6632), + [anon_sym_GT_EQ] = ACTIONS(6634), + [anon_sym_LT_EQ] = ACTIONS(6632), + [anon_sym_LT] = ACTIONS(6632), + [anon_sym_LT_LT] = ACTIONS(6632), + [anon_sym_GT_GT] = ACTIONS(6632), + [anon_sym___extension__] = ACTIONS(6634), + [anon_sym___attribute__] = ACTIONS(6634), + [anon_sym___attribute] = ACTIONS(6632), + [anon_sym_COLON] = ACTIONS(6632), + [anon_sym_COLON_COLON] = ACTIONS(6634), + [anon_sym_LBRACE] = ACTIONS(6634), + [anon_sym_LBRACK] = ACTIONS(6634), + [anon_sym_EQ] = ACTIONS(6632), + [anon_sym_const] = ACTIONS(6632), + [anon_sym_constexpr] = ACTIONS(6634), + [anon_sym_volatile] = ACTIONS(6634), + [anon_sym_restrict] = ACTIONS(6634), + [anon_sym___restrict__] = ACTIONS(6634), + [anon_sym__Atomic] = ACTIONS(6634), + [anon_sym__Noreturn] = ACTIONS(6634), + [anon_sym_noreturn] = ACTIONS(6634), + [anon_sym__Nonnull] = ACTIONS(6634), + [anon_sym_mutable] = ACTIONS(6634), + [anon_sym_constinit] = ACTIONS(6634), + [anon_sym_consteval] = ACTIONS(6634), + [anon_sym_alignas] = ACTIONS(6634), + [anon_sym__Alignas] = ACTIONS(6634), + [anon_sym_QMARK] = ACTIONS(6634), + [anon_sym_STAR_EQ] = ACTIONS(6634), + [anon_sym_SLASH_EQ] = ACTIONS(6634), + [anon_sym_PERCENT_EQ] = ACTIONS(6634), + [anon_sym_PLUS_EQ] = ACTIONS(6634), + [anon_sym_DASH_EQ] = ACTIONS(6634), + [anon_sym_LT_LT_EQ] = ACTIONS(6634), + [anon_sym_GT_GT_EQ] = ACTIONS(6634), + [anon_sym_AMP_EQ] = ACTIONS(6634), + [anon_sym_CARET_EQ] = ACTIONS(6634), + [anon_sym_PIPE_EQ] = ACTIONS(6634), + [anon_sym_LT_EQ_GT] = ACTIONS(6634), + [anon_sym_or] = ACTIONS(6634), + [anon_sym_and] = ACTIONS(6634), + [anon_sym_bitor] = ACTIONS(6634), + [anon_sym_xor] = ACTIONS(6634), + [anon_sym_bitand] = ACTIONS(6634), + [anon_sym_not_eq] = ACTIONS(6634), + [anon_sym_DASH_DASH] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_DOT] = ACTIONS(6632), + [anon_sym_DOT_STAR] = ACTIONS(6634), + [anon_sym_DASH_GT] = ACTIONS(6632), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6634), + [anon_sym_decltype] = ACTIONS(6634), + [anon_sym_final] = ACTIONS(6634), + [anon_sym_override] = ACTIONS(6634), + [anon_sym_requires] = ACTIONS(6634), + [anon_sym_DASH_GT_STAR] = ACTIONS(6634), }, - [STATE(3037)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7291), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7291), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7291), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7291), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7291), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym___extension__] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_EQ] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7293), - [anon_sym_volatile] = ACTIONS(7293), - [anon_sym_restrict] = ACTIONS(7293), - [anon_sym___restrict__] = ACTIONS(7293), - [anon_sym__Atomic] = ACTIONS(7293), - [anon_sym__Noreturn] = ACTIONS(7293), - [anon_sym_noreturn] = ACTIONS(7293), - [anon_sym__Nonnull] = ACTIONS(7293), - [anon_sym_mutable] = ACTIONS(7293), - [anon_sym_constinit] = ACTIONS(7293), - [anon_sym_consteval] = ACTIONS(7293), - [anon_sym_alignas] = ACTIONS(7293), - [anon_sym__Alignas] = ACTIONS(7293), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_STAR_EQ] = ACTIONS(7293), - [anon_sym_SLASH_EQ] = ACTIONS(7293), - [anon_sym_PERCENT_EQ] = ACTIONS(7293), - [anon_sym_PLUS_EQ] = ACTIONS(7293), - [anon_sym_DASH_EQ] = ACTIONS(7293), - [anon_sym_LT_LT_EQ] = ACTIONS(7293), - [anon_sym_GT_GT_EQ] = ACTIONS(7291), - [anon_sym_AMP_EQ] = ACTIONS(7293), - [anon_sym_CARET_EQ] = ACTIONS(7293), - [anon_sym_PIPE_EQ] = ACTIONS(7293), - [anon_sym_and_eq] = ACTIONS(7293), - [anon_sym_or_eq] = ACTIONS(7293), - [anon_sym_xor_eq] = ACTIONS(7293), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_bitor] = ACTIONS(7293), - [anon_sym_xor] = ACTIONS(7291), - [anon_sym_bitand] = ACTIONS(7293), - [anon_sym_not_eq] = ACTIONS(7293), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7293), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7293), - [anon_sym_override] = ACTIONS(7293), - [anon_sym_GT2] = ACTIONS(7293), - [anon_sym_requires] = ACTIONS(7293), + [STATE(2716)] = { + [sym_identifier] = ACTIONS(3362), + [aux_sym_preproc_def_token1] = ACTIONS(3362), + [aux_sym_preproc_if_token1] = ACTIONS(3362), + [aux_sym_preproc_if_token2] = ACTIONS(3362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), + [aux_sym_preproc_else_token1] = ACTIONS(3362), + [aux_sym_preproc_elif_token1] = ACTIONS(3362), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3362), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3362), + [sym_preproc_directive] = ACTIONS(3362), + [anon_sym_LPAREN2] = ACTIONS(3364), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_STAR] = ACTIONS(3364), + [anon_sym_AMP_AMP] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3362), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym___extension__] = ACTIONS(3362), + [anon_sym_typedef] = ACTIONS(3362), + [anon_sym_virtual] = ACTIONS(3362), + [anon_sym_extern] = ACTIONS(3362), + [anon_sym___attribute__] = ACTIONS(3362), + [anon_sym___attribute] = ACTIONS(3362), + [anon_sym_using] = ACTIONS(3362), + [anon_sym_COLON_COLON] = ACTIONS(3364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), + [anon_sym___declspec] = ACTIONS(3362), + [anon_sym___based] = ACTIONS(3362), + [anon_sym_signed] = ACTIONS(3362), + [anon_sym_unsigned] = ACTIONS(3362), + [anon_sym_long] = ACTIONS(3362), + [anon_sym_short] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_static] = ACTIONS(3362), + [anon_sym_register] = ACTIONS(3362), + [anon_sym_inline] = ACTIONS(3362), + [anon_sym___inline] = ACTIONS(3362), + [anon_sym___inline__] = ACTIONS(3362), + [anon_sym___forceinline] = ACTIONS(3362), + [anon_sym_thread_local] = ACTIONS(3362), + [anon_sym___thread] = ACTIONS(3362), + [anon_sym_const] = ACTIONS(3362), + [anon_sym_constexpr] = ACTIONS(3362), + [anon_sym_volatile] = ACTIONS(3362), + [anon_sym_restrict] = ACTIONS(3362), + [anon_sym___restrict__] = ACTIONS(3362), + [anon_sym__Atomic] = ACTIONS(3362), + [anon_sym__Noreturn] = ACTIONS(3362), + [anon_sym_noreturn] = ACTIONS(3362), + [anon_sym__Nonnull] = ACTIONS(3362), + [anon_sym_mutable] = ACTIONS(3362), + [anon_sym_constinit] = ACTIONS(3362), + [anon_sym_consteval] = ACTIONS(3362), + [anon_sym_alignas] = ACTIONS(3362), + [anon_sym__Alignas] = ACTIONS(3362), + [sym_primitive_type] = ACTIONS(3362), + [anon_sym_enum] = ACTIONS(3362), + [anon_sym_class] = ACTIONS(3362), + [anon_sym_struct] = ACTIONS(3362), + [anon_sym_union] = ACTIONS(3362), + [anon_sym_typename] = ACTIONS(3362), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3362), + [anon_sym_decltype] = ACTIONS(3362), + [anon_sym_explicit] = ACTIONS(3362), + [anon_sym_private] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(3362), + [anon_sym_operator] = ACTIONS(3362), + [anon_sym_friend] = ACTIONS(3362), + [anon_sym_public] = ACTIONS(3362), + [anon_sym_protected] = ACTIONS(3362), + [anon_sym_static_assert] = ACTIONS(3362), + [anon_sym_catch] = ACTIONS(3362), + [anon_sym_LBRACK_COLON] = ACTIONS(3364), }, - [STATE(3038)] = { - [sym_identifier] = ACTIONS(3608), - [aux_sym_preproc_def_token1] = ACTIONS(3608), - [aux_sym_preproc_if_token1] = ACTIONS(3608), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3608), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3608), - [sym_preproc_directive] = ACTIONS(3608), - [anon_sym_LPAREN2] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3610), - [anon_sym_STAR] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3608), - [anon_sym_SEMI] = ACTIONS(3610), - [anon_sym___extension__] = ACTIONS(3608), - [anon_sym_typedef] = ACTIONS(3608), - [anon_sym_virtual] = ACTIONS(3608), - [anon_sym_extern] = ACTIONS(3608), - [anon_sym___attribute__] = ACTIONS(3608), - [anon_sym___attribute] = ACTIONS(3608), - [anon_sym_using] = ACTIONS(3608), - [anon_sym_COLON_COLON] = ACTIONS(3610), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3610), - [anon_sym___declspec] = ACTIONS(3608), - [anon_sym___based] = ACTIONS(3608), - [anon_sym_RBRACE] = ACTIONS(3610), - [anon_sym_signed] = ACTIONS(3608), - [anon_sym_unsigned] = ACTIONS(3608), - [anon_sym_long] = ACTIONS(3608), - [anon_sym_short] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_static] = ACTIONS(3608), - [anon_sym_register] = ACTIONS(3608), - [anon_sym_inline] = ACTIONS(3608), - [anon_sym___inline] = ACTIONS(3608), - [anon_sym___inline__] = ACTIONS(3608), - [anon_sym___forceinline] = ACTIONS(3608), - [anon_sym_thread_local] = ACTIONS(3608), - [anon_sym___thread] = ACTIONS(3608), - [anon_sym_const] = ACTIONS(3608), - [anon_sym_constexpr] = ACTIONS(3608), - [anon_sym_volatile] = ACTIONS(3608), - [anon_sym_restrict] = ACTIONS(3608), - [anon_sym___restrict__] = ACTIONS(3608), - [anon_sym__Atomic] = ACTIONS(3608), - [anon_sym__Noreturn] = ACTIONS(3608), - [anon_sym_noreturn] = ACTIONS(3608), - [anon_sym__Nonnull] = ACTIONS(3608), - [anon_sym_mutable] = ACTIONS(3608), - [anon_sym_constinit] = ACTIONS(3608), - [anon_sym_consteval] = ACTIONS(3608), - [anon_sym_alignas] = ACTIONS(3608), - [anon_sym__Alignas] = ACTIONS(3608), - [sym_primitive_type] = ACTIONS(3608), - [anon_sym_enum] = ACTIONS(3608), - [anon_sym_class] = ACTIONS(3608), - [anon_sym_struct] = ACTIONS(3608), - [anon_sym_union] = ACTIONS(3608), - [anon_sym_typename] = ACTIONS(3608), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3608), - [anon_sym_decltype] = ACTIONS(3608), - [anon_sym_explicit] = ACTIONS(3608), - [anon_sym_private] = ACTIONS(3608), - [anon_sym_template] = ACTIONS(3608), - [anon_sym_operator] = ACTIONS(3608), - [anon_sym_friend] = ACTIONS(3608), - [anon_sym_public] = ACTIONS(3608), - [anon_sym_protected] = ACTIONS(3608), - [anon_sym_static_assert] = ACTIONS(3608), - [anon_sym_catch] = ACTIONS(3608), - [anon_sym_LBRACK_COLON] = ACTIONS(3610), + [STATE(2717)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6614), + [anon_sym_COMMA] = ACTIONS(6614), + [anon_sym_RPAREN] = ACTIONS(6614), + [anon_sym_LPAREN2] = ACTIONS(6614), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6612), + [anon_sym_SLASH] = ACTIONS(6612), + [anon_sym_PERCENT] = ACTIONS(6612), + [anon_sym_PIPE_PIPE] = ACTIONS(6614), + [anon_sym_AMP_AMP] = ACTIONS(6614), + [anon_sym_PIPE] = ACTIONS(6612), + [anon_sym_CARET] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(6612), + [anon_sym_EQ_EQ] = ACTIONS(6614), + [anon_sym_BANG_EQ] = ACTIONS(6614), + [anon_sym_GT] = ACTIONS(6612), + [anon_sym_GT_EQ] = ACTIONS(6614), + [anon_sym_LT_EQ] = ACTIONS(6612), + [anon_sym_LT] = ACTIONS(6612), + [anon_sym_LT_LT] = ACTIONS(6612), + [anon_sym_GT_GT] = ACTIONS(6612), + [anon_sym___extension__] = ACTIONS(6614), + [anon_sym___attribute__] = ACTIONS(6614), + [anon_sym___attribute] = ACTIONS(6612), + [anon_sym_COLON] = ACTIONS(6612), + [anon_sym_COLON_COLON] = ACTIONS(6614), + [anon_sym_LBRACE] = ACTIONS(6614), + [anon_sym_LBRACK] = ACTIONS(6614), + [anon_sym_EQ] = ACTIONS(6612), + [anon_sym_const] = ACTIONS(6612), + [anon_sym_constexpr] = ACTIONS(6614), + [anon_sym_volatile] = ACTIONS(6614), + [anon_sym_restrict] = ACTIONS(6614), + [anon_sym___restrict__] = ACTIONS(6614), + [anon_sym__Atomic] = ACTIONS(6614), + [anon_sym__Noreturn] = ACTIONS(6614), + [anon_sym_noreturn] = ACTIONS(6614), + [anon_sym__Nonnull] = ACTIONS(6614), + [anon_sym_mutable] = ACTIONS(6614), + [anon_sym_constinit] = ACTIONS(6614), + [anon_sym_consteval] = ACTIONS(6614), + [anon_sym_alignas] = ACTIONS(6614), + [anon_sym__Alignas] = ACTIONS(6614), + [anon_sym_QMARK] = ACTIONS(6614), + [anon_sym_STAR_EQ] = ACTIONS(6614), + [anon_sym_SLASH_EQ] = ACTIONS(6614), + [anon_sym_PERCENT_EQ] = ACTIONS(6614), + [anon_sym_PLUS_EQ] = ACTIONS(6614), + [anon_sym_DASH_EQ] = ACTIONS(6614), + [anon_sym_LT_LT_EQ] = ACTIONS(6614), + [anon_sym_GT_GT_EQ] = ACTIONS(6614), + [anon_sym_AMP_EQ] = ACTIONS(6614), + [anon_sym_CARET_EQ] = ACTIONS(6614), + [anon_sym_PIPE_EQ] = ACTIONS(6614), + [anon_sym_LT_EQ_GT] = ACTIONS(6614), + [anon_sym_or] = ACTIONS(6614), + [anon_sym_and] = ACTIONS(6614), + [anon_sym_bitor] = ACTIONS(6614), + [anon_sym_xor] = ACTIONS(6614), + [anon_sym_bitand] = ACTIONS(6614), + [anon_sym_not_eq] = ACTIONS(6614), + [anon_sym_DASH_DASH] = ACTIONS(6614), + [anon_sym_PLUS_PLUS] = ACTIONS(6614), + [anon_sym_DOT] = ACTIONS(6612), + [anon_sym_DOT_STAR] = ACTIONS(6614), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6614), + [anon_sym_decltype] = ACTIONS(6614), + [anon_sym_final] = ACTIONS(6614), + [anon_sym_override] = ACTIONS(6614), + [anon_sym_requires] = ACTIONS(6614), + [anon_sym_DASH_GT_STAR] = ACTIONS(6614), }, - [STATE(3039)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), - [anon_sym_COMMA] = ACTIONS(7237), - [anon_sym_LPAREN2] = ACTIONS(7237), - [anon_sym_DASH] = ACTIONS(7235), - [anon_sym_PLUS] = ACTIONS(7235), - [anon_sym_STAR] = ACTIONS(7235), - [anon_sym_SLASH] = ACTIONS(7235), - [anon_sym_PERCENT] = ACTIONS(7235), - [anon_sym_PIPE_PIPE] = ACTIONS(7237), - [anon_sym_AMP_AMP] = ACTIONS(7237), - [anon_sym_PIPE] = ACTIONS(7235), - [anon_sym_CARET] = ACTIONS(7235), - [anon_sym_AMP] = ACTIONS(7235), - [anon_sym_EQ_EQ] = ACTIONS(7237), - [anon_sym_BANG_EQ] = ACTIONS(7237), - [anon_sym_GT] = ACTIONS(7235), - [anon_sym_GT_EQ] = ACTIONS(7235), - [anon_sym_LT_EQ] = ACTIONS(7235), - [anon_sym_LT] = ACTIONS(7235), - [anon_sym_LT_LT] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7235), - [anon_sym___extension__] = ACTIONS(7237), - [anon_sym_LBRACE] = ACTIONS(7237), - [anon_sym_LBRACK] = ACTIONS(7237), - [anon_sym_EQ] = ACTIONS(7235), - [anon_sym_const] = ACTIONS(7235), - [anon_sym_constexpr] = ACTIONS(7237), - [anon_sym_volatile] = ACTIONS(7237), - [anon_sym_restrict] = ACTIONS(7237), - [anon_sym___restrict__] = ACTIONS(7237), - [anon_sym__Atomic] = ACTIONS(7237), - [anon_sym__Noreturn] = ACTIONS(7237), - [anon_sym_noreturn] = ACTIONS(7237), - [anon_sym__Nonnull] = ACTIONS(7237), - [anon_sym_mutable] = ACTIONS(7237), - [anon_sym_constinit] = ACTIONS(7237), - [anon_sym_consteval] = ACTIONS(7237), - [anon_sym_alignas] = ACTIONS(7237), - [anon_sym__Alignas] = ACTIONS(7237), - [anon_sym_QMARK] = ACTIONS(7237), - [anon_sym_STAR_EQ] = ACTIONS(7237), - [anon_sym_SLASH_EQ] = ACTIONS(7237), - [anon_sym_PERCENT_EQ] = ACTIONS(7237), - [anon_sym_PLUS_EQ] = ACTIONS(7237), - [anon_sym_DASH_EQ] = ACTIONS(7237), - [anon_sym_LT_LT_EQ] = ACTIONS(7237), - [anon_sym_GT_GT_EQ] = ACTIONS(7235), - [anon_sym_AMP_EQ] = ACTIONS(7237), - [anon_sym_CARET_EQ] = ACTIONS(7237), - [anon_sym_PIPE_EQ] = ACTIONS(7237), - [anon_sym_and_eq] = ACTIONS(7237), - [anon_sym_or_eq] = ACTIONS(7237), - [anon_sym_xor_eq] = ACTIONS(7237), - [anon_sym_LT_EQ_GT] = ACTIONS(7237), - [anon_sym_or] = ACTIONS(7235), - [anon_sym_and] = ACTIONS(7235), - [anon_sym_bitor] = ACTIONS(7237), - [anon_sym_xor] = ACTIONS(7235), - [anon_sym_bitand] = ACTIONS(7237), - [anon_sym_not_eq] = ACTIONS(7237), - [anon_sym_DASH_DASH] = ACTIONS(7237), - [anon_sym_PLUS_PLUS] = ACTIONS(7237), - [anon_sym_DOT] = ACTIONS(7235), - [anon_sym_DOT_STAR] = ACTIONS(7237), - [anon_sym_DASH_GT] = ACTIONS(7237), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7237), - [anon_sym_override] = ACTIONS(7237), - [anon_sym_GT2] = ACTIONS(7237), - [anon_sym_requires] = ACTIONS(7237), + [STATE(2718)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6626), + [anon_sym_COMMA] = ACTIONS(6626), + [anon_sym_RPAREN] = ACTIONS(6626), + [anon_sym_LPAREN2] = ACTIONS(6626), + [anon_sym_DASH] = ACTIONS(6624), + [anon_sym_PLUS] = ACTIONS(6624), + [anon_sym_STAR] = ACTIONS(6624), + [anon_sym_SLASH] = ACTIONS(6624), + [anon_sym_PERCENT] = ACTIONS(6624), + [anon_sym_PIPE_PIPE] = ACTIONS(6626), + [anon_sym_AMP_AMP] = ACTIONS(6626), + [anon_sym_PIPE] = ACTIONS(6624), + [anon_sym_CARET] = ACTIONS(6624), + [anon_sym_AMP] = ACTIONS(6624), + [anon_sym_EQ_EQ] = ACTIONS(6626), + [anon_sym_BANG_EQ] = ACTIONS(6626), + [anon_sym_GT] = ACTIONS(6624), + [anon_sym_GT_EQ] = ACTIONS(6626), + [anon_sym_LT_EQ] = ACTIONS(6624), + [anon_sym_LT] = ACTIONS(6624), + [anon_sym_LT_LT] = ACTIONS(6624), + [anon_sym_GT_GT] = ACTIONS(6624), + [anon_sym___extension__] = ACTIONS(6626), + [anon_sym___attribute__] = ACTIONS(6626), + [anon_sym___attribute] = ACTIONS(6624), + [anon_sym_COLON] = ACTIONS(6624), + [anon_sym_COLON_COLON] = ACTIONS(6626), + [anon_sym_LBRACE] = ACTIONS(6626), + [anon_sym_LBRACK] = ACTIONS(6626), + [anon_sym_EQ] = ACTIONS(6624), + [anon_sym_const] = ACTIONS(6624), + [anon_sym_constexpr] = ACTIONS(6626), + [anon_sym_volatile] = ACTIONS(6626), + [anon_sym_restrict] = ACTIONS(6626), + [anon_sym___restrict__] = ACTIONS(6626), + [anon_sym__Atomic] = ACTIONS(6626), + [anon_sym__Noreturn] = ACTIONS(6626), + [anon_sym_noreturn] = ACTIONS(6626), + [anon_sym__Nonnull] = ACTIONS(6626), + [anon_sym_mutable] = ACTIONS(6626), + [anon_sym_constinit] = ACTIONS(6626), + [anon_sym_consteval] = ACTIONS(6626), + [anon_sym_alignas] = ACTIONS(6626), + [anon_sym__Alignas] = ACTIONS(6626), + [anon_sym_QMARK] = ACTIONS(6626), + [anon_sym_STAR_EQ] = ACTIONS(6626), + [anon_sym_SLASH_EQ] = ACTIONS(6626), + [anon_sym_PERCENT_EQ] = ACTIONS(6626), + [anon_sym_PLUS_EQ] = ACTIONS(6626), + [anon_sym_DASH_EQ] = ACTIONS(6626), + [anon_sym_LT_LT_EQ] = ACTIONS(6626), + [anon_sym_GT_GT_EQ] = ACTIONS(6626), + [anon_sym_AMP_EQ] = ACTIONS(6626), + [anon_sym_CARET_EQ] = ACTIONS(6626), + [anon_sym_PIPE_EQ] = ACTIONS(6626), + [anon_sym_LT_EQ_GT] = ACTIONS(6626), + [anon_sym_or] = ACTIONS(6626), + [anon_sym_and] = ACTIONS(6626), + [anon_sym_bitor] = ACTIONS(6626), + [anon_sym_xor] = ACTIONS(6626), + [anon_sym_bitand] = ACTIONS(6626), + [anon_sym_not_eq] = ACTIONS(6626), + [anon_sym_DASH_DASH] = ACTIONS(6626), + [anon_sym_PLUS_PLUS] = ACTIONS(6626), + [anon_sym_DOT] = ACTIONS(6624), + [anon_sym_DOT_STAR] = ACTIONS(6626), + [anon_sym_DASH_GT] = ACTIONS(6624), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6626), + [anon_sym_decltype] = ACTIONS(6626), + [anon_sym_final] = ACTIONS(6626), + [anon_sym_override] = ACTIONS(6626), + [anon_sym_requires] = ACTIONS(6626), + [anon_sym_DASH_GT_STAR] = ACTIONS(6626), }, - [STATE(3040)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7301), - [anon_sym_COMMA] = ACTIONS(7301), - [anon_sym_LPAREN2] = ACTIONS(7301), - [anon_sym_DASH] = ACTIONS(7299), - [anon_sym_PLUS] = ACTIONS(7299), - [anon_sym_STAR] = ACTIONS(7299), - [anon_sym_SLASH] = ACTIONS(7299), - [anon_sym_PERCENT] = ACTIONS(7299), - [anon_sym_PIPE_PIPE] = ACTIONS(7301), - [anon_sym_AMP_AMP] = ACTIONS(7301), - [anon_sym_PIPE] = ACTIONS(7299), - [anon_sym_CARET] = ACTIONS(7299), - [anon_sym_AMP] = ACTIONS(7299), - [anon_sym_EQ_EQ] = ACTIONS(7301), - [anon_sym_BANG_EQ] = ACTIONS(7301), - [anon_sym_GT] = ACTIONS(7299), - [anon_sym_GT_EQ] = ACTIONS(7299), - [anon_sym_LT_EQ] = ACTIONS(7299), - [anon_sym_LT] = ACTIONS(7299), - [anon_sym_LT_LT] = ACTIONS(7299), - [anon_sym_GT_GT] = ACTIONS(7299), - [anon_sym___extension__] = ACTIONS(7301), - [anon_sym_LBRACE] = ACTIONS(7301), - [anon_sym_LBRACK] = ACTIONS(7301), - [anon_sym_EQ] = ACTIONS(7299), - [anon_sym_const] = ACTIONS(7299), - [anon_sym_constexpr] = ACTIONS(7301), - [anon_sym_volatile] = ACTIONS(7301), - [anon_sym_restrict] = ACTIONS(7301), - [anon_sym___restrict__] = ACTIONS(7301), - [anon_sym__Atomic] = ACTIONS(7301), - [anon_sym__Noreturn] = ACTIONS(7301), - [anon_sym_noreturn] = ACTIONS(7301), - [anon_sym__Nonnull] = ACTIONS(7301), - [anon_sym_mutable] = ACTIONS(7301), - [anon_sym_constinit] = ACTIONS(7301), - [anon_sym_consteval] = ACTIONS(7301), - [anon_sym_alignas] = ACTIONS(7301), - [anon_sym__Alignas] = ACTIONS(7301), - [anon_sym_QMARK] = ACTIONS(7301), - [anon_sym_STAR_EQ] = ACTIONS(7301), - [anon_sym_SLASH_EQ] = ACTIONS(7301), - [anon_sym_PERCENT_EQ] = ACTIONS(7301), - [anon_sym_PLUS_EQ] = ACTIONS(7301), - [anon_sym_DASH_EQ] = ACTIONS(7301), - [anon_sym_LT_LT_EQ] = ACTIONS(7301), - [anon_sym_GT_GT_EQ] = ACTIONS(7299), - [anon_sym_AMP_EQ] = ACTIONS(7301), - [anon_sym_CARET_EQ] = ACTIONS(7301), - [anon_sym_PIPE_EQ] = ACTIONS(7301), - [anon_sym_and_eq] = ACTIONS(7301), - [anon_sym_or_eq] = ACTIONS(7301), - [anon_sym_xor_eq] = ACTIONS(7301), - [anon_sym_LT_EQ_GT] = ACTIONS(7301), - [anon_sym_or] = ACTIONS(7299), - [anon_sym_and] = ACTIONS(7299), - [anon_sym_bitor] = ACTIONS(7301), - [anon_sym_xor] = ACTIONS(7299), - [anon_sym_bitand] = ACTIONS(7301), - [anon_sym_not_eq] = ACTIONS(7301), - [anon_sym_DASH_DASH] = ACTIONS(7301), - [anon_sym_PLUS_PLUS] = ACTIONS(7301), - [anon_sym_DOT] = ACTIONS(7299), - [anon_sym_DOT_STAR] = ACTIONS(7301), - [anon_sym_DASH_GT] = ACTIONS(7301), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7301), - [anon_sym_override] = ACTIONS(7301), - [anon_sym_GT2] = ACTIONS(7301), - [anon_sym_requires] = ACTIONS(7301), + [STATE(2719)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6630), + [anon_sym_COMMA] = ACTIONS(6630), + [anon_sym_RPAREN] = ACTIONS(6630), + [anon_sym_LPAREN2] = ACTIONS(6630), + [anon_sym_DASH] = ACTIONS(6628), + [anon_sym_PLUS] = ACTIONS(6628), + [anon_sym_STAR] = ACTIONS(6628), + [anon_sym_SLASH] = ACTIONS(6628), + [anon_sym_PERCENT] = ACTIONS(6628), + [anon_sym_PIPE_PIPE] = ACTIONS(6630), + [anon_sym_AMP_AMP] = ACTIONS(6630), + [anon_sym_PIPE] = ACTIONS(6628), + [anon_sym_CARET] = ACTIONS(6628), + [anon_sym_AMP] = ACTIONS(6628), + [anon_sym_EQ_EQ] = ACTIONS(6630), + [anon_sym_BANG_EQ] = ACTIONS(6630), + [anon_sym_GT] = ACTIONS(6628), + [anon_sym_GT_EQ] = ACTIONS(6630), + [anon_sym_LT_EQ] = ACTIONS(6628), + [anon_sym_LT] = ACTIONS(6628), + [anon_sym_LT_LT] = ACTIONS(6628), + [anon_sym_GT_GT] = ACTIONS(6628), + [anon_sym___extension__] = ACTIONS(6630), + [anon_sym___attribute__] = ACTIONS(6630), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_COLON] = ACTIONS(6628), + [anon_sym_COLON_COLON] = ACTIONS(6630), + [anon_sym_LBRACE] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(6630), + [anon_sym_EQ] = ACTIONS(6628), + [anon_sym_const] = ACTIONS(6628), + [anon_sym_constexpr] = ACTIONS(6630), + [anon_sym_volatile] = ACTIONS(6630), + [anon_sym_restrict] = ACTIONS(6630), + [anon_sym___restrict__] = ACTIONS(6630), + [anon_sym__Atomic] = ACTIONS(6630), + [anon_sym__Noreturn] = ACTIONS(6630), + [anon_sym_noreturn] = ACTIONS(6630), + [anon_sym__Nonnull] = ACTIONS(6630), + [anon_sym_mutable] = ACTIONS(6630), + [anon_sym_constinit] = ACTIONS(6630), + [anon_sym_consteval] = ACTIONS(6630), + [anon_sym_alignas] = ACTIONS(6630), + [anon_sym__Alignas] = ACTIONS(6630), + [anon_sym_QMARK] = ACTIONS(6630), + [anon_sym_STAR_EQ] = ACTIONS(6630), + [anon_sym_SLASH_EQ] = ACTIONS(6630), + [anon_sym_PERCENT_EQ] = ACTIONS(6630), + [anon_sym_PLUS_EQ] = ACTIONS(6630), + [anon_sym_DASH_EQ] = ACTIONS(6630), + [anon_sym_LT_LT_EQ] = ACTIONS(6630), + [anon_sym_GT_GT_EQ] = ACTIONS(6630), + [anon_sym_AMP_EQ] = ACTIONS(6630), + [anon_sym_CARET_EQ] = ACTIONS(6630), + [anon_sym_PIPE_EQ] = ACTIONS(6630), + [anon_sym_LT_EQ_GT] = ACTIONS(6630), + [anon_sym_or] = ACTIONS(6630), + [anon_sym_and] = ACTIONS(6630), + [anon_sym_bitor] = ACTIONS(6630), + [anon_sym_xor] = ACTIONS(6630), + [anon_sym_bitand] = ACTIONS(6630), + [anon_sym_not_eq] = ACTIONS(6630), + [anon_sym_DASH_DASH] = ACTIONS(6630), + [anon_sym_PLUS_PLUS] = ACTIONS(6630), + [anon_sym_DOT] = ACTIONS(6628), + [anon_sym_DOT_STAR] = ACTIONS(6630), + [anon_sym_DASH_GT] = ACTIONS(6628), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6630), + [anon_sym_decltype] = ACTIONS(6630), + [anon_sym_final] = ACTIONS(6630), + [anon_sym_override] = ACTIONS(6630), + [anon_sym_requires] = ACTIONS(6630), + [anon_sym_DASH_GT_STAR] = ACTIONS(6630), }, - [STATE(3041)] = { + [STATE(2720)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6610), + [anon_sym_COMMA] = ACTIONS(6610), + [anon_sym_RPAREN] = ACTIONS(6610), + [anon_sym_LPAREN2] = ACTIONS(6610), + [anon_sym_DASH] = ACTIONS(6608), + [anon_sym_PLUS] = ACTIONS(6608), + [anon_sym_STAR] = ACTIONS(6608), + [anon_sym_SLASH] = ACTIONS(6608), + [anon_sym_PERCENT] = ACTIONS(6608), + [anon_sym_PIPE_PIPE] = ACTIONS(6610), + [anon_sym_AMP_AMP] = ACTIONS(6610), + [anon_sym_PIPE] = ACTIONS(6608), + [anon_sym_CARET] = ACTIONS(6608), + [anon_sym_AMP] = ACTIONS(6608), + [anon_sym_EQ_EQ] = ACTIONS(6610), + [anon_sym_BANG_EQ] = ACTIONS(6610), + [anon_sym_GT] = ACTIONS(6608), + [anon_sym_GT_EQ] = ACTIONS(6610), + [anon_sym_LT_EQ] = ACTIONS(6608), + [anon_sym_LT] = ACTIONS(6608), + [anon_sym_LT_LT] = ACTIONS(6608), + [anon_sym_GT_GT] = ACTIONS(6608), + [anon_sym___extension__] = ACTIONS(6610), + [anon_sym___attribute__] = ACTIONS(6610), + [anon_sym___attribute] = ACTIONS(6608), + [anon_sym_COLON] = ACTIONS(6608), + [anon_sym_COLON_COLON] = ACTIONS(6610), + [anon_sym_LBRACE] = ACTIONS(6610), + [anon_sym_LBRACK] = ACTIONS(6610), + [anon_sym_EQ] = ACTIONS(6608), + [anon_sym_const] = ACTIONS(6608), + [anon_sym_constexpr] = ACTIONS(6610), + [anon_sym_volatile] = ACTIONS(6610), + [anon_sym_restrict] = ACTIONS(6610), + [anon_sym___restrict__] = ACTIONS(6610), + [anon_sym__Atomic] = ACTIONS(6610), + [anon_sym__Noreturn] = ACTIONS(6610), + [anon_sym_noreturn] = ACTIONS(6610), + [anon_sym__Nonnull] = ACTIONS(6610), + [anon_sym_mutable] = ACTIONS(6610), + [anon_sym_constinit] = ACTIONS(6610), + [anon_sym_consteval] = ACTIONS(6610), + [anon_sym_alignas] = ACTIONS(6610), + [anon_sym__Alignas] = ACTIONS(6610), + [anon_sym_QMARK] = ACTIONS(6610), + [anon_sym_STAR_EQ] = ACTIONS(6610), + [anon_sym_SLASH_EQ] = ACTIONS(6610), + [anon_sym_PERCENT_EQ] = ACTIONS(6610), + [anon_sym_PLUS_EQ] = ACTIONS(6610), + [anon_sym_DASH_EQ] = ACTIONS(6610), + [anon_sym_LT_LT_EQ] = ACTIONS(6610), + [anon_sym_GT_GT_EQ] = ACTIONS(6610), + [anon_sym_AMP_EQ] = ACTIONS(6610), + [anon_sym_CARET_EQ] = ACTIONS(6610), + [anon_sym_PIPE_EQ] = ACTIONS(6610), + [anon_sym_LT_EQ_GT] = ACTIONS(6610), + [anon_sym_or] = ACTIONS(6610), + [anon_sym_and] = ACTIONS(6610), + [anon_sym_bitor] = ACTIONS(6610), + [anon_sym_xor] = ACTIONS(6610), + [anon_sym_bitand] = ACTIONS(6610), + [anon_sym_not_eq] = ACTIONS(6610), + [anon_sym_DASH_DASH] = ACTIONS(6610), + [anon_sym_PLUS_PLUS] = ACTIONS(6610), + [anon_sym_DOT] = ACTIONS(6608), + [anon_sym_DOT_STAR] = ACTIONS(6610), + [anon_sym_DASH_GT] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6610), + [anon_sym_decltype] = ACTIONS(6610), + [anon_sym_final] = ACTIONS(6610), + [anon_sym_override] = ACTIONS(6610), + [anon_sym_requires] = ACTIONS(6610), + [anon_sym_DASH_GT_STAR] = ACTIONS(6610), + }, + [STATE(2721)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7106), + [anon_sym_COMMA] = ACTIONS(7106), + [anon_sym_LPAREN2] = ACTIONS(7106), + [anon_sym_DASH] = ACTIONS(7104), + [anon_sym_PLUS] = ACTIONS(7104), + [anon_sym_STAR] = ACTIONS(7104), + [anon_sym_SLASH] = ACTIONS(7104), + [anon_sym_PERCENT] = ACTIONS(7104), + [anon_sym_PIPE_PIPE] = ACTIONS(7106), + [anon_sym_AMP_AMP] = ACTIONS(7106), + [anon_sym_PIPE] = ACTIONS(7104), + [anon_sym_CARET] = ACTIONS(7104), + [anon_sym_AMP] = ACTIONS(7104), + [anon_sym_EQ_EQ] = ACTIONS(7106), + [anon_sym_BANG_EQ] = ACTIONS(7106), + [anon_sym_GT] = ACTIONS(7104), + [anon_sym_GT_EQ] = ACTIONS(7104), + [anon_sym_LT_EQ] = ACTIONS(7104), + [anon_sym_LT] = ACTIONS(7104), + [anon_sym_LT_LT] = ACTIONS(7104), + [anon_sym_GT_GT] = ACTIONS(7104), + [anon_sym___extension__] = ACTIONS(7106), + [anon_sym___attribute__] = ACTIONS(7106), + [anon_sym___attribute] = ACTIONS(7104), + [anon_sym_COLON] = ACTIONS(7104), + [anon_sym_COLON_COLON] = ACTIONS(7106), + [anon_sym_LBRACE] = ACTIONS(7106), + [anon_sym_LBRACK] = ACTIONS(7106), + [anon_sym_EQ] = ACTIONS(7104), + [anon_sym_const] = ACTIONS(7104), + [anon_sym_constexpr] = ACTIONS(7106), + [anon_sym_volatile] = ACTIONS(7106), + [anon_sym_restrict] = ACTIONS(7106), + [anon_sym___restrict__] = ACTIONS(7106), + [anon_sym__Atomic] = ACTIONS(7106), + [anon_sym__Noreturn] = ACTIONS(7106), + [anon_sym_noreturn] = ACTIONS(7106), + [anon_sym__Nonnull] = ACTIONS(7106), + [anon_sym_mutable] = ACTIONS(7106), + [anon_sym_constinit] = ACTIONS(7106), + [anon_sym_consteval] = ACTIONS(7106), + [anon_sym_alignas] = ACTIONS(7106), + [anon_sym__Alignas] = ACTIONS(7106), + [anon_sym_QMARK] = ACTIONS(7106), + [anon_sym_STAR_EQ] = ACTIONS(7106), + [anon_sym_SLASH_EQ] = ACTIONS(7106), + [anon_sym_PERCENT_EQ] = ACTIONS(7106), + [anon_sym_PLUS_EQ] = ACTIONS(7106), + [anon_sym_DASH_EQ] = ACTIONS(7106), + [anon_sym_LT_LT_EQ] = ACTIONS(7106), + [anon_sym_GT_GT_EQ] = ACTIONS(7104), + [anon_sym_AMP_EQ] = ACTIONS(7106), + [anon_sym_CARET_EQ] = ACTIONS(7106), + [anon_sym_PIPE_EQ] = ACTIONS(7106), + [anon_sym_and_eq] = ACTIONS(7106), + [anon_sym_or_eq] = ACTIONS(7106), + [anon_sym_xor_eq] = ACTIONS(7106), + [anon_sym_LT_EQ_GT] = ACTIONS(7106), + [anon_sym_or] = ACTIONS(7104), + [anon_sym_and] = ACTIONS(7104), + [anon_sym_bitor] = ACTIONS(7106), + [anon_sym_xor] = ACTIONS(7104), + [anon_sym_bitand] = ACTIONS(7106), + [anon_sym_not_eq] = ACTIONS(7106), + [anon_sym_DASH_DASH] = ACTIONS(7106), + [anon_sym_PLUS_PLUS] = ACTIONS(7106), + [anon_sym_DOT] = ACTIONS(7104), + [anon_sym_DOT_STAR] = ACTIONS(7106), + [anon_sym_DASH_GT] = ACTIONS(7106), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7106), + [anon_sym_override] = ACTIONS(7106), + [anon_sym_GT2] = ACTIONS(7106), + [anon_sym_requires] = ACTIONS(7106), + }, + [STATE(2722)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6622), + [anon_sym_COMMA] = ACTIONS(6622), + [anon_sym_RPAREN] = ACTIONS(6622), + [anon_sym_LPAREN2] = ACTIONS(6622), + [anon_sym_DASH] = ACTIONS(6620), + [anon_sym_PLUS] = ACTIONS(6620), + [anon_sym_STAR] = ACTIONS(6620), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_PERCENT] = ACTIONS(6620), + [anon_sym_PIPE_PIPE] = ACTIONS(6622), + [anon_sym_AMP_AMP] = ACTIONS(6622), + [anon_sym_PIPE] = ACTIONS(6620), + [anon_sym_CARET] = ACTIONS(6620), + [anon_sym_AMP] = ACTIONS(6620), + [anon_sym_EQ_EQ] = ACTIONS(6622), + [anon_sym_BANG_EQ] = ACTIONS(6622), + [anon_sym_GT] = ACTIONS(6620), + [anon_sym_GT_EQ] = ACTIONS(6622), + [anon_sym_LT_EQ] = ACTIONS(6620), + [anon_sym_LT] = ACTIONS(6620), + [anon_sym_LT_LT] = ACTIONS(6620), + [anon_sym_GT_GT] = ACTIONS(6620), + [anon_sym___extension__] = ACTIONS(6622), + [anon_sym___attribute__] = ACTIONS(6622), + [anon_sym___attribute] = ACTIONS(6620), + [anon_sym_COLON] = ACTIONS(6620), + [anon_sym_COLON_COLON] = ACTIONS(6622), + [anon_sym_LBRACE] = ACTIONS(6622), + [anon_sym_LBRACK] = ACTIONS(6622), + [anon_sym_EQ] = ACTIONS(6620), + [anon_sym_const] = ACTIONS(6620), + [anon_sym_constexpr] = ACTIONS(6622), + [anon_sym_volatile] = ACTIONS(6622), + [anon_sym_restrict] = ACTIONS(6622), + [anon_sym___restrict__] = ACTIONS(6622), + [anon_sym__Atomic] = ACTIONS(6622), + [anon_sym__Noreturn] = ACTIONS(6622), + [anon_sym_noreturn] = ACTIONS(6622), + [anon_sym__Nonnull] = ACTIONS(6622), + [anon_sym_mutable] = ACTIONS(6622), + [anon_sym_constinit] = ACTIONS(6622), + [anon_sym_consteval] = ACTIONS(6622), + [anon_sym_alignas] = ACTIONS(6622), + [anon_sym__Alignas] = ACTIONS(6622), + [anon_sym_QMARK] = ACTIONS(6622), + [anon_sym_STAR_EQ] = ACTIONS(6622), + [anon_sym_SLASH_EQ] = ACTIONS(6622), + [anon_sym_PERCENT_EQ] = ACTIONS(6622), + [anon_sym_PLUS_EQ] = ACTIONS(6622), + [anon_sym_DASH_EQ] = ACTIONS(6622), + [anon_sym_LT_LT_EQ] = ACTIONS(6622), + [anon_sym_GT_GT_EQ] = ACTIONS(6622), + [anon_sym_AMP_EQ] = ACTIONS(6622), + [anon_sym_CARET_EQ] = ACTIONS(6622), + [anon_sym_PIPE_EQ] = ACTIONS(6622), + [anon_sym_LT_EQ_GT] = ACTIONS(6622), + [anon_sym_or] = ACTIONS(6622), + [anon_sym_and] = ACTIONS(6622), + [anon_sym_bitor] = ACTIONS(6622), + [anon_sym_xor] = ACTIONS(6622), + [anon_sym_bitand] = ACTIONS(6622), + [anon_sym_not_eq] = ACTIONS(6622), + [anon_sym_DASH_DASH] = ACTIONS(6622), + [anon_sym_PLUS_PLUS] = ACTIONS(6622), + [anon_sym_DOT] = ACTIONS(6620), + [anon_sym_DOT_STAR] = ACTIONS(6622), + [anon_sym_DASH_GT] = ACTIONS(6620), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6622), + [anon_sym_decltype] = ACTIONS(6622), + [anon_sym_final] = ACTIONS(6622), + [anon_sym_override] = ACTIONS(6622), + [anon_sym_requires] = ACTIONS(6622), + [anon_sym_DASH_GT_STAR] = ACTIONS(6622), + }, + [STATE(2723)] = { + [sym_identifier] = ACTIONS(7077), + [anon_sym_LPAREN2] = ACTIONS(7079), + [anon_sym_BANG] = ACTIONS(7079), + [anon_sym_TILDE] = ACTIONS(7079), + [anon_sym_DASH] = ACTIONS(7077), + [anon_sym_PLUS] = ACTIONS(7077), + [anon_sym_STAR] = ACTIONS(7079), + [anon_sym_AMP] = ACTIONS(7079), + [anon_sym___extension__] = ACTIONS(7077), + [anon_sym_COLON_COLON] = ACTIONS(7079), + [anon_sym_LBRACK] = ACTIONS(7077), + [anon_sym_static] = ACTIONS(7077), + [anon_sym_RBRACK] = ACTIONS(7079), + [anon_sym_const] = ACTIONS(7077), + [anon_sym_constexpr] = ACTIONS(7077), + [anon_sym_volatile] = ACTIONS(7077), + [anon_sym_restrict] = ACTIONS(7077), + [anon_sym___restrict__] = ACTIONS(7077), + [anon_sym__Atomic] = ACTIONS(7077), + [anon_sym__Noreturn] = ACTIONS(7077), + [anon_sym_noreturn] = ACTIONS(7077), + [anon_sym__Nonnull] = ACTIONS(7077), + [anon_sym_mutable] = ACTIONS(7077), + [anon_sym_constinit] = ACTIONS(7077), + [anon_sym_consteval] = ACTIONS(7077), + [anon_sym_alignas] = ACTIONS(7077), + [anon_sym__Alignas] = ACTIONS(7077), + [sym_primitive_type] = ACTIONS(7077), + [anon_sym_not] = ACTIONS(7077), + [anon_sym_compl] = ACTIONS(7077), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_sizeof] = ACTIONS(7077), + [anon_sym___alignof__] = ACTIONS(7077), + [anon_sym___alignof] = ACTIONS(7077), + [anon_sym__alignof] = ACTIONS(7077), + [anon_sym_alignof] = ACTIONS(7077), + [anon_sym__Alignof] = ACTIONS(7077), + [anon_sym_offsetof] = ACTIONS(7077), + [anon_sym__Generic] = ACTIONS(7077), + [anon_sym_typename] = ACTIONS(7077), + [anon_sym_asm] = ACTIONS(7077), + [anon_sym___asm__] = ACTIONS(7077), + [anon_sym___asm] = ACTIONS(7077), + [sym_number_literal] = ACTIONS(7079), + [anon_sym_L_SQUOTE] = ACTIONS(7079), + [anon_sym_u_SQUOTE] = ACTIONS(7079), + [anon_sym_U_SQUOTE] = ACTIONS(7079), + [anon_sym_u8_SQUOTE] = ACTIONS(7079), + [anon_sym_SQUOTE] = ACTIONS(7079), + [anon_sym_L_DQUOTE] = ACTIONS(7079), + [anon_sym_u_DQUOTE] = ACTIONS(7079), + [anon_sym_U_DQUOTE] = ACTIONS(7079), + [anon_sym_u8_DQUOTE] = ACTIONS(7079), + [anon_sym_DQUOTE] = ACTIONS(7079), + [sym_true] = ACTIONS(7077), + [sym_false] = ACTIONS(7077), + [anon_sym_NULL] = ACTIONS(7077), + [anon_sym_nullptr] = ACTIONS(7077), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7077), + [anon_sym_template] = ACTIONS(7077), + [anon_sym_delete] = ACTIONS(7077), + [anon_sym_R_DQUOTE] = ACTIONS(7079), + [anon_sym_LR_DQUOTE] = ACTIONS(7079), + [anon_sym_uR_DQUOTE] = ACTIONS(7079), + [anon_sym_UR_DQUOTE] = ACTIONS(7079), + [anon_sym_u8R_DQUOTE] = ACTIONS(7079), + [anon_sym_co_await] = ACTIONS(7077), + [anon_sym_new] = ACTIONS(7077), + [anon_sym_requires] = ACTIONS(7077), + [anon_sym_CARET_CARET] = ACTIONS(7079), + [anon_sym_LBRACK_COLON] = ACTIONS(7079), + [sym_this] = ACTIONS(7077), + }, + [STATE(2724)] = { + [sym_identifier] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3118), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_TILDE] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3128), + [anon_sym_COLON_COLON] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_RBRACK] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(3128), + [anon_sym_compl] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_sizeof] = ACTIONS(3128), + [anon_sym___alignof__] = ACTIONS(3128), + [anon_sym___alignof] = ACTIONS(3128), + [anon_sym__alignof] = ACTIONS(3128), + [anon_sym_alignof] = ACTIONS(3128), + [anon_sym__Alignof] = ACTIONS(3128), + [anon_sym_offsetof] = ACTIONS(3128), + [anon_sym__Generic] = ACTIONS(3128), + [anon_sym_typename] = ACTIONS(3128), + [anon_sym_asm] = ACTIONS(3128), + [anon_sym___asm__] = ACTIONS(3128), + [anon_sym___asm] = ACTIONS(3128), + [sym_number_literal] = ACTIONS(3118), + [anon_sym_L_SQUOTE] = ACTIONS(3118), + [anon_sym_u_SQUOTE] = ACTIONS(3118), + [anon_sym_U_SQUOTE] = ACTIONS(3118), + [anon_sym_u8_SQUOTE] = ACTIONS(3118), + [anon_sym_SQUOTE] = ACTIONS(3118), + [anon_sym_L_DQUOTE] = ACTIONS(3118), + [anon_sym_u_DQUOTE] = ACTIONS(3118), + [anon_sym_U_DQUOTE] = ACTIONS(3118), + [anon_sym_u8_DQUOTE] = ACTIONS(3118), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [anon_sym_NULL] = ACTIONS(3128), + [anon_sym_nullptr] = ACTIONS(3128), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3128), + [anon_sym_template] = ACTIONS(3128), + [anon_sym_delete] = ACTIONS(3128), + [anon_sym_R_DQUOTE] = ACTIONS(3118), + [anon_sym_LR_DQUOTE] = ACTIONS(3118), + [anon_sym_uR_DQUOTE] = ACTIONS(3118), + [anon_sym_UR_DQUOTE] = ACTIONS(3118), + [anon_sym_u8R_DQUOTE] = ACTIONS(3118), + [anon_sym_co_await] = ACTIONS(3128), + [anon_sym_new] = ACTIONS(3128), + [anon_sym_requires] = ACTIONS(3128), + [anon_sym_CARET_CARET] = ACTIONS(3118), + [anon_sym_LBRACK_COLON] = ACTIONS(3118), + [sym_this] = ACTIONS(3128), + }, + [STATE(2725)] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), [anon_sym_COMMA] = ACTIONS(7289), [anon_sym_LPAREN2] = ACTIONS(7289), @@ -383182,7 +373256,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(7287), [anon_sym_GT_GT] = ACTIONS(7287), [anon_sym___extension__] = ACTIONS(7289), - [anon_sym_LBRACE] = ACTIONS(7289), + [sym_ms_restrict_modifier] = ACTIONS(7287), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7289), + [sym_ms_signed_ptr_modifier] = ACTIONS(7289), + [anon_sym__unaligned] = ACTIONS(7289), + [anon_sym___unaligned] = ACTIONS(7289), [anon_sym_LBRACK] = ACTIONS(7289), [anon_sym_EQ] = ACTIONS(7287), [anon_sym_const] = ACTIONS(7287), @@ -383231,754 +373309,802 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT2] = ACTIONS(7289), [anon_sym_requires] = ACTIONS(7289), }, - [STATE(3042)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), - [anon_sym_COMMA] = ACTIONS(6230), - [anon_sym_LPAREN2] = ACTIONS(6230), - [anon_sym_DASH] = ACTIONS(6237), - [anon_sym_PLUS] = ACTIONS(6237), - [anon_sym_STAR] = ACTIONS(6237), - [anon_sym_SLASH] = ACTIONS(6237), - [anon_sym_PERCENT] = ACTIONS(6237), - [anon_sym_PIPE_PIPE] = ACTIONS(6230), - [anon_sym_AMP_AMP] = ACTIONS(6230), - [anon_sym_PIPE] = ACTIONS(6237), - [anon_sym_CARET] = ACTIONS(6237), - [anon_sym_AMP] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6230), - [anon_sym_BANG_EQ] = ACTIONS(6230), - [anon_sym_GT] = ACTIONS(6237), - [anon_sym_GT_EQ] = ACTIONS(6230), - [anon_sym_LT_EQ] = ACTIONS(6237), - [anon_sym_LT] = ACTIONS(6237), - [anon_sym_LT_LT] = ACTIONS(6237), - [anon_sym_GT_GT] = ACTIONS(6237), - [anon_sym___extension__] = ACTIONS(6233), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6230), - [anon_sym_RBRACK] = ACTIONS(6230), - [anon_sym_EQ] = ACTIONS(6237), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6233), - [anon_sym_volatile] = ACTIONS(6233), - [anon_sym_restrict] = ACTIONS(6233), - [anon_sym___restrict__] = ACTIONS(6233), - [anon_sym__Atomic] = ACTIONS(6233), - [anon_sym__Noreturn] = ACTIONS(6233), - [anon_sym_noreturn] = ACTIONS(6233), - [anon_sym__Nonnull] = ACTIONS(6233), - [anon_sym_mutable] = ACTIONS(6233), - [anon_sym_constinit] = ACTIONS(6233), - [anon_sym_consteval] = ACTIONS(6233), - [anon_sym_alignas] = ACTIONS(6233), - [anon_sym__Alignas] = ACTIONS(6233), - [anon_sym_QMARK] = ACTIONS(6230), - [anon_sym_STAR_EQ] = ACTIONS(6230), - [anon_sym_SLASH_EQ] = ACTIONS(6230), - [anon_sym_PERCENT_EQ] = ACTIONS(6230), - [anon_sym_PLUS_EQ] = ACTIONS(6230), - [anon_sym_DASH_EQ] = ACTIONS(6230), - [anon_sym_LT_LT_EQ] = ACTIONS(6230), - [anon_sym_GT_GT_EQ] = ACTIONS(6230), - [anon_sym_AMP_EQ] = ACTIONS(6230), - [anon_sym_CARET_EQ] = ACTIONS(6230), - [anon_sym_PIPE_EQ] = ACTIONS(6230), - [anon_sym_and_eq] = ACTIONS(6230), - [anon_sym_or_eq] = ACTIONS(6230), - [anon_sym_xor_eq] = ACTIONS(6230), - [anon_sym_LT_EQ_GT] = ACTIONS(6230), - [anon_sym_or] = ACTIONS(6237), - [anon_sym_and] = ACTIONS(6237), - [anon_sym_bitor] = ACTIONS(6230), - [anon_sym_xor] = ACTIONS(6237), - [anon_sym_bitand] = ACTIONS(6230), - [anon_sym_not_eq] = ACTIONS(6230), - [anon_sym_DASH_DASH] = ACTIONS(6230), - [anon_sym_PLUS_PLUS] = ACTIONS(6230), - [anon_sym_DOT] = ACTIONS(6237), - [anon_sym_DOT_STAR] = ACTIONS(6230), - [anon_sym_DASH_GT] = ACTIONS(6230), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6233), - [anon_sym_decltype] = ACTIONS(6233), - }, - [STATE(3043)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), - [anon_sym_COMMA] = ACTIONS(6230), - [anon_sym_LPAREN2] = ACTIONS(6230), - [anon_sym_DASH] = ACTIONS(6237), - [anon_sym_PLUS] = ACTIONS(6237), - [anon_sym_STAR] = ACTIONS(6237), - [anon_sym_SLASH] = ACTIONS(6237), - [anon_sym_PERCENT] = ACTIONS(6237), - [anon_sym_PIPE_PIPE] = ACTIONS(6230), - [anon_sym_AMP_AMP] = ACTIONS(6230), - [anon_sym_PIPE] = ACTIONS(6237), - [anon_sym_CARET] = ACTIONS(6237), - [anon_sym_AMP] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6230), - [anon_sym_BANG_EQ] = ACTIONS(6230), - [anon_sym_GT] = ACTIONS(6237), - [anon_sym_GT_EQ] = ACTIONS(6230), - [anon_sym_LT_EQ] = ACTIONS(6237), - [anon_sym_LT] = ACTIONS(6237), - [anon_sym_LT_LT] = ACTIONS(6237), - [anon_sym_GT_GT] = ACTIONS(6237), - [anon_sym___extension__] = ACTIONS(6233), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6230), - [anon_sym_RBRACK] = ACTIONS(6230), - [anon_sym_EQ] = ACTIONS(6235), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6233), - [anon_sym_volatile] = ACTIONS(6233), - [anon_sym_restrict] = ACTIONS(6233), - [anon_sym___restrict__] = ACTIONS(6233), - [anon_sym__Atomic] = ACTIONS(6233), - [anon_sym__Noreturn] = ACTIONS(6233), - [anon_sym_noreturn] = ACTIONS(6233), - [anon_sym__Nonnull] = ACTIONS(6233), - [anon_sym_mutable] = ACTIONS(6233), - [anon_sym_constinit] = ACTIONS(6233), - [anon_sym_consteval] = ACTIONS(6233), - [anon_sym_alignas] = ACTIONS(6233), - [anon_sym__Alignas] = ACTIONS(6233), - [anon_sym_QMARK] = ACTIONS(6230), - [anon_sym_STAR_EQ] = ACTIONS(6228), - [anon_sym_SLASH_EQ] = ACTIONS(6228), - [anon_sym_PERCENT_EQ] = ACTIONS(6228), - [anon_sym_PLUS_EQ] = ACTIONS(6228), - [anon_sym_DASH_EQ] = ACTIONS(6228), - [anon_sym_LT_LT_EQ] = ACTIONS(6228), - [anon_sym_GT_GT_EQ] = ACTIONS(6228), - [anon_sym_AMP_EQ] = ACTIONS(6228), - [anon_sym_CARET_EQ] = ACTIONS(6228), - [anon_sym_PIPE_EQ] = ACTIONS(6228), - [anon_sym_and_eq] = ACTIONS(6228), - [anon_sym_or_eq] = ACTIONS(6228), - [anon_sym_xor_eq] = ACTIONS(6228), - [anon_sym_LT_EQ_GT] = ACTIONS(6230), - [anon_sym_or] = ACTIONS(6237), - [anon_sym_and] = ACTIONS(6237), - [anon_sym_bitor] = ACTIONS(6230), - [anon_sym_xor] = ACTIONS(6237), - [anon_sym_bitand] = ACTIONS(6230), - [anon_sym_not_eq] = ACTIONS(6230), - [anon_sym_DASH_DASH] = ACTIONS(6230), - [anon_sym_PLUS_PLUS] = ACTIONS(6230), - [anon_sym_DOT] = ACTIONS(6237), - [anon_sym_DOT_STAR] = ACTIONS(6230), - [anon_sym_DASH_GT] = ACTIONS(6230), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6233), - [anon_sym_decltype] = ACTIONS(6233), - }, - [STATE(3044)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7265), - [anon_sym_COMMA] = ACTIONS(7265), - [anon_sym_LPAREN2] = ACTIONS(7265), - [anon_sym_DASH] = ACTIONS(7263), - [anon_sym_PLUS] = ACTIONS(7263), - [anon_sym_STAR] = ACTIONS(7263), - [anon_sym_SLASH] = ACTIONS(7263), - [anon_sym_PERCENT] = ACTIONS(7263), - [anon_sym_PIPE_PIPE] = ACTIONS(7265), - [anon_sym_AMP_AMP] = ACTIONS(7265), - [anon_sym_PIPE] = ACTIONS(7263), - [anon_sym_CARET] = ACTIONS(7263), - [anon_sym_AMP] = ACTIONS(7263), - [anon_sym_EQ_EQ] = ACTIONS(7265), - [anon_sym_BANG_EQ] = ACTIONS(7265), - [anon_sym_GT] = ACTIONS(7263), - [anon_sym_GT_EQ] = ACTIONS(7265), - [anon_sym_LT_EQ] = ACTIONS(7263), - [anon_sym_LT] = ACTIONS(7263), - [anon_sym_LT_LT] = ACTIONS(7263), - [anon_sym_GT_GT] = ACTIONS(7263), - [anon_sym___extension__] = ACTIONS(7265), - [anon_sym_LBRACE] = ACTIONS(7265), - [anon_sym_LBRACK] = ACTIONS(7265), - [anon_sym_RBRACK] = ACTIONS(7265), - [anon_sym_EQ] = ACTIONS(7263), - [anon_sym_const] = ACTIONS(7263), - [anon_sym_constexpr] = ACTIONS(7265), - [anon_sym_volatile] = ACTIONS(7265), - [anon_sym_restrict] = ACTIONS(7265), - [anon_sym___restrict__] = ACTIONS(7265), - [anon_sym__Atomic] = ACTIONS(7265), - [anon_sym__Noreturn] = ACTIONS(7265), - [anon_sym_noreturn] = ACTIONS(7265), - [anon_sym__Nonnull] = ACTIONS(7265), - [anon_sym_mutable] = ACTIONS(7265), - [anon_sym_constinit] = ACTIONS(7265), - [anon_sym_consteval] = ACTIONS(7265), - [anon_sym_alignas] = ACTIONS(7265), - [anon_sym__Alignas] = ACTIONS(7265), - [anon_sym_QMARK] = ACTIONS(7265), - [anon_sym_STAR_EQ] = ACTIONS(7265), - [anon_sym_SLASH_EQ] = ACTIONS(7265), - [anon_sym_PERCENT_EQ] = ACTIONS(7265), - [anon_sym_PLUS_EQ] = ACTIONS(7265), - [anon_sym_DASH_EQ] = ACTIONS(7265), - [anon_sym_LT_LT_EQ] = ACTIONS(7265), - [anon_sym_GT_GT_EQ] = ACTIONS(7265), - [anon_sym_AMP_EQ] = ACTIONS(7265), - [anon_sym_CARET_EQ] = ACTIONS(7265), - [anon_sym_PIPE_EQ] = ACTIONS(7265), - [anon_sym_and_eq] = ACTIONS(7265), - [anon_sym_or_eq] = ACTIONS(7265), - [anon_sym_xor_eq] = ACTIONS(7265), - [anon_sym_LT_EQ_GT] = ACTIONS(7265), - [anon_sym_or] = ACTIONS(7263), - [anon_sym_and] = ACTIONS(7263), - [anon_sym_bitor] = ACTIONS(7265), - [anon_sym_xor] = ACTIONS(7263), - [anon_sym_bitand] = ACTIONS(7265), - [anon_sym_not_eq] = ACTIONS(7265), - [anon_sym_DASH_DASH] = ACTIONS(7265), - [anon_sym_PLUS_PLUS] = ACTIONS(7265), - [anon_sym_DOT] = ACTIONS(7263), - [anon_sym_DOT_STAR] = ACTIONS(7265), - [anon_sym_DASH_GT] = ACTIONS(7265), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7265), - [anon_sym_override] = ACTIONS(7265), - [anon_sym_requires] = ACTIONS(7265), - }, - [STATE(3045)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7269), - [anon_sym_COMMA] = ACTIONS(7269), - [anon_sym_LPAREN2] = ACTIONS(7269), - [anon_sym_DASH] = ACTIONS(7267), - [anon_sym_PLUS] = ACTIONS(7267), - [anon_sym_STAR] = ACTIONS(7267), - [anon_sym_SLASH] = ACTIONS(7267), - [anon_sym_PERCENT] = ACTIONS(7267), - [anon_sym_PIPE_PIPE] = ACTIONS(7269), - [anon_sym_AMP_AMP] = ACTIONS(7269), - [anon_sym_PIPE] = ACTIONS(7267), - [anon_sym_CARET] = ACTIONS(7267), - [anon_sym_AMP] = ACTIONS(7267), - [anon_sym_EQ_EQ] = ACTIONS(7269), - [anon_sym_BANG_EQ] = ACTIONS(7269), - [anon_sym_GT] = ACTIONS(7267), - [anon_sym_GT_EQ] = ACTIONS(7269), - [anon_sym_LT_EQ] = ACTIONS(7267), - [anon_sym_LT] = ACTIONS(7267), - [anon_sym_LT_LT] = ACTIONS(7267), - [anon_sym_GT_GT] = ACTIONS(7267), - [anon_sym___extension__] = ACTIONS(7269), - [anon_sym_LBRACE] = ACTIONS(7269), - [anon_sym_LBRACK] = ACTIONS(7269), - [anon_sym_RBRACK] = ACTIONS(7269), - [anon_sym_EQ] = ACTIONS(7267), - [anon_sym_const] = ACTIONS(7267), - [anon_sym_constexpr] = ACTIONS(7269), - [anon_sym_volatile] = ACTIONS(7269), - [anon_sym_restrict] = ACTIONS(7269), - [anon_sym___restrict__] = ACTIONS(7269), - [anon_sym__Atomic] = ACTIONS(7269), - [anon_sym__Noreturn] = ACTIONS(7269), - [anon_sym_noreturn] = ACTIONS(7269), - [anon_sym__Nonnull] = ACTIONS(7269), - [anon_sym_mutable] = ACTIONS(7269), - [anon_sym_constinit] = ACTIONS(7269), - [anon_sym_consteval] = ACTIONS(7269), - [anon_sym_alignas] = ACTIONS(7269), - [anon_sym__Alignas] = ACTIONS(7269), - [anon_sym_QMARK] = ACTIONS(7269), - [anon_sym_STAR_EQ] = ACTIONS(7269), - [anon_sym_SLASH_EQ] = ACTIONS(7269), - [anon_sym_PERCENT_EQ] = ACTIONS(7269), - [anon_sym_PLUS_EQ] = ACTIONS(7269), - [anon_sym_DASH_EQ] = ACTIONS(7269), - [anon_sym_LT_LT_EQ] = ACTIONS(7269), - [anon_sym_GT_GT_EQ] = ACTIONS(7269), - [anon_sym_AMP_EQ] = ACTIONS(7269), - [anon_sym_CARET_EQ] = ACTIONS(7269), - [anon_sym_PIPE_EQ] = ACTIONS(7269), - [anon_sym_and_eq] = ACTIONS(7269), - [anon_sym_or_eq] = ACTIONS(7269), - [anon_sym_xor_eq] = ACTIONS(7269), - [anon_sym_LT_EQ_GT] = ACTIONS(7269), - [anon_sym_or] = ACTIONS(7267), - [anon_sym_and] = ACTIONS(7267), - [anon_sym_bitor] = ACTIONS(7269), - [anon_sym_xor] = ACTIONS(7267), - [anon_sym_bitand] = ACTIONS(7269), - [anon_sym_not_eq] = ACTIONS(7269), - [anon_sym_DASH_DASH] = ACTIONS(7269), - [anon_sym_PLUS_PLUS] = ACTIONS(7269), - [anon_sym_DOT] = ACTIONS(7267), - [anon_sym_DOT_STAR] = ACTIONS(7269), - [anon_sym_DASH_GT] = ACTIONS(7269), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7269), - [anon_sym_override] = ACTIONS(7269), - [anon_sym_requires] = ACTIONS(7269), - }, - [STATE(3046)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2546), - [sym_identifier] = ACTIONS(6627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), - [anon_sym_COMMA] = ACTIONS(7081), - [anon_sym_RPAREN] = ACTIONS(7081), - [anon_sym_LPAREN2] = ACTIONS(7081), - [anon_sym_DASH] = ACTIONS(7084), - [anon_sym_PLUS] = ACTIONS(7084), - [anon_sym_STAR] = ACTIONS(7081), - [anon_sym_SLASH] = ACTIONS(7084), - [anon_sym_PERCENT] = ACTIONS(7081), - [anon_sym_PIPE_PIPE] = ACTIONS(7081), - [anon_sym_AMP_AMP] = ACTIONS(7081), - [anon_sym_PIPE] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7081), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_EQ_EQ] = ACTIONS(7081), - [anon_sym_BANG_EQ] = ACTIONS(7081), - [anon_sym_GT] = ACTIONS(7084), - [anon_sym_GT_EQ] = ACTIONS(7081), - [anon_sym_LT_EQ] = ACTIONS(7084), - [anon_sym_LT] = ACTIONS(7084), - [anon_sym_LT_LT] = ACTIONS(7081), - [anon_sym_GT_GT] = ACTIONS(7081), - [anon_sym_SEMI] = ACTIONS(7081), - [anon_sym___extension__] = ACTIONS(7084), - [anon_sym___attribute__] = ACTIONS(7084), - [anon_sym___attribute] = ACTIONS(7084), - [anon_sym_COLON] = ACTIONS(7084), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7081), - [anon_sym_LBRACE] = ACTIONS(7081), - [anon_sym_RBRACE] = ACTIONS(7081), - [anon_sym_signed] = ACTIONS(8205), - [anon_sym_unsigned] = ACTIONS(8205), - [anon_sym_long] = ACTIONS(8205), - [anon_sym_short] = ACTIONS(8205), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_const] = ACTIONS(7084), - [anon_sym_constexpr] = ACTIONS(7084), - [anon_sym_volatile] = ACTIONS(7084), - [anon_sym_restrict] = ACTIONS(7084), - [anon_sym___restrict__] = ACTIONS(7084), - [anon_sym__Atomic] = ACTIONS(7084), - [anon_sym__Noreturn] = ACTIONS(7084), - [anon_sym_noreturn] = ACTIONS(7084), - [anon_sym__Nonnull] = ACTIONS(7084), - [anon_sym_mutable] = ACTIONS(7084), - [anon_sym_constinit] = ACTIONS(7084), - [anon_sym_consteval] = ACTIONS(7084), - [anon_sym_alignas] = ACTIONS(7084), - [anon_sym__Alignas] = ACTIONS(7084), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(7081), - [anon_sym_LT_EQ_GT] = ACTIONS(7081), - [anon_sym_or] = ACTIONS(7084), - [anon_sym_and] = ACTIONS(7084), - [anon_sym_bitor] = ACTIONS(7084), - [anon_sym_xor] = ACTIONS(7084), - [anon_sym_bitand] = ACTIONS(7084), - [anon_sym_not_eq] = ACTIONS(7084), - [anon_sym_DASH_DASH] = ACTIONS(7081), - [anon_sym_PLUS_PLUS] = ACTIONS(7081), - [anon_sym_DOT] = ACTIONS(7084), - [anon_sym_DOT_STAR] = ACTIONS(7081), - [anon_sym_DASH_GT] = ACTIONS(7081), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7084), - [anon_sym_override] = ACTIONS(7084), - [anon_sym_requires] = ACTIONS(7084), - [anon_sym_COLON_RBRACK] = ACTIONS(7081), - }, - [STATE(3047)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7297), - [anon_sym_COMMA] = ACTIONS(7297), - [anon_sym_LPAREN2] = ACTIONS(7297), - [anon_sym_DASH] = ACTIONS(7295), - [anon_sym_PLUS] = ACTIONS(7295), - [anon_sym_STAR] = ACTIONS(7295), - [anon_sym_SLASH] = ACTIONS(7295), - [anon_sym_PERCENT] = ACTIONS(7295), - [anon_sym_PIPE_PIPE] = ACTIONS(7297), - [anon_sym_AMP_AMP] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7295), - [anon_sym_CARET] = ACTIONS(7295), - [anon_sym_AMP] = ACTIONS(7295), - [anon_sym_EQ_EQ] = ACTIONS(7297), - [anon_sym_BANG_EQ] = ACTIONS(7297), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_GT_EQ] = ACTIONS(7295), - [anon_sym_LT_EQ] = ACTIONS(7295), - [anon_sym_LT] = ACTIONS(7295), - [anon_sym_LT_LT] = ACTIONS(7295), - [anon_sym_GT_GT] = ACTIONS(7295), - [anon_sym___extension__] = ACTIONS(7297), - [anon_sym_LBRACE] = ACTIONS(7297), - [anon_sym_LBRACK] = ACTIONS(7297), - [anon_sym_EQ] = ACTIONS(7295), - [anon_sym_const] = ACTIONS(7295), - [anon_sym_constexpr] = ACTIONS(7297), - [anon_sym_volatile] = ACTIONS(7297), - [anon_sym_restrict] = ACTIONS(7297), - [anon_sym___restrict__] = ACTIONS(7297), - [anon_sym__Atomic] = ACTIONS(7297), - [anon_sym__Noreturn] = ACTIONS(7297), - [anon_sym_noreturn] = ACTIONS(7297), - [anon_sym__Nonnull] = ACTIONS(7297), - [anon_sym_mutable] = ACTIONS(7297), - [anon_sym_constinit] = ACTIONS(7297), - [anon_sym_consteval] = ACTIONS(7297), - [anon_sym_alignas] = ACTIONS(7297), - [anon_sym__Alignas] = ACTIONS(7297), - [anon_sym_QMARK] = ACTIONS(7297), - [anon_sym_STAR_EQ] = ACTIONS(7297), - [anon_sym_SLASH_EQ] = ACTIONS(7297), - [anon_sym_PERCENT_EQ] = ACTIONS(7297), - [anon_sym_PLUS_EQ] = ACTIONS(7297), - [anon_sym_DASH_EQ] = ACTIONS(7297), - [anon_sym_LT_LT_EQ] = ACTIONS(7297), - [anon_sym_GT_GT_EQ] = ACTIONS(7295), - [anon_sym_AMP_EQ] = ACTIONS(7297), - [anon_sym_CARET_EQ] = ACTIONS(7297), - [anon_sym_PIPE_EQ] = ACTIONS(7297), - [anon_sym_and_eq] = ACTIONS(7297), - [anon_sym_or_eq] = ACTIONS(7297), - [anon_sym_xor_eq] = ACTIONS(7297), - [anon_sym_LT_EQ_GT] = ACTIONS(7297), - [anon_sym_or] = ACTIONS(7295), - [anon_sym_and] = ACTIONS(7295), - [anon_sym_bitor] = ACTIONS(7297), - [anon_sym_xor] = ACTIONS(7295), - [anon_sym_bitand] = ACTIONS(7297), - [anon_sym_not_eq] = ACTIONS(7297), - [anon_sym_DASH_DASH] = ACTIONS(7297), - [anon_sym_PLUS_PLUS] = ACTIONS(7297), - [anon_sym_DOT] = ACTIONS(7295), - [anon_sym_DOT_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(7297), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7297), - [anon_sym_override] = ACTIONS(7297), - [anon_sym_GT2] = ACTIONS(7297), - [anon_sym_requires] = ACTIONS(7297), - }, - [STATE(3048)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7273), - [anon_sym_COMMA] = ACTIONS(7273), - [anon_sym_LPAREN2] = ACTIONS(7273), - [anon_sym_DASH] = ACTIONS(7271), - [anon_sym_PLUS] = ACTIONS(7271), - [anon_sym_STAR] = ACTIONS(7271), - [anon_sym_SLASH] = ACTIONS(7271), - [anon_sym_PERCENT] = ACTIONS(7271), - [anon_sym_PIPE_PIPE] = ACTIONS(7273), - [anon_sym_AMP_AMP] = ACTIONS(7273), - [anon_sym_PIPE] = ACTIONS(7271), - [anon_sym_CARET] = ACTIONS(7271), - [anon_sym_AMP] = ACTIONS(7271), - [anon_sym_EQ_EQ] = ACTIONS(7273), - [anon_sym_BANG_EQ] = ACTIONS(7273), - [anon_sym_GT] = ACTIONS(7271), - [anon_sym_GT_EQ] = ACTIONS(7273), - [anon_sym_LT_EQ] = ACTIONS(7271), - [anon_sym_LT] = ACTIONS(7271), - [anon_sym_LT_LT] = ACTIONS(7271), - [anon_sym_GT_GT] = ACTIONS(7271), - [anon_sym___extension__] = ACTIONS(7273), - [anon_sym_LBRACE] = ACTIONS(7273), - [anon_sym_LBRACK] = ACTIONS(7273), - [anon_sym_RBRACK] = ACTIONS(7273), - [anon_sym_EQ] = ACTIONS(7271), - [anon_sym_const] = ACTIONS(7271), - [anon_sym_constexpr] = ACTIONS(7273), - [anon_sym_volatile] = ACTIONS(7273), - [anon_sym_restrict] = ACTIONS(7273), - [anon_sym___restrict__] = ACTIONS(7273), - [anon_sym__Atomic] = ACTIONS(7273), - [anon_sym__Noreturn] = ACTIONS(7273), - [anon_sym_noreturn] = ACTIONS(7273), - [anon_sym__Nonnull] = ACTIONS(7273), - [anon_sym_mutable] = ACTIONS(7273), - [anon_sym_constinit] = ACTIONS(7273), - [anon_sym_consteval] = ACTIONS(7273), - [anon_sym_alignas] = ACTIONS(7273), - [anon_sym__Alignas] = ACTIONS(7273), - [anon_sym_QMARK] = ACTIONS(7273), - [anon_sym_STAR_EQ] = ACTIONS(7273), - [anon_sym_SLASH_EQ] = ACTIONS(7273), - [anon_sym_PERCENT_EQ] = ACTIONS(7273), - [anon_sym_PLUS_EQ] = ACTIONS(7273), - [anon_sym_DASH_EQ] = ACTIONS(7273), - [anon_sym_LT_LT_EQ] = ACTIONS(7273), - [anon_sym_GT_GT_EQ] = ACTIONS(7273), - [anon_sym_AMP_EQ] = ACTIONS(7273), - [anon_sym_CARET_EQ] = ACTIONS(7273), - [anon_sym_PIPE_EQ] = ACTIONS(7273), - [anon_sym_and_eq] = ACTIONS(7273), - [anon_sym_or_eq] = ACTIONS(7273), - [anon_sym_xor_eq] = ACTIONS(7273), - [anon_sym_LT_EQ_GT] = ACTIONS(7273), - [anon_sym_or] = ACTIONS(7271), - [anon_sym_and] = ACTIONS(7271), - [anon_sym_bitor] = ACTIONS(7273), - [anon_sym_xor] = ACTIONS(7271), - [anon_sym_bitand] = ACTIONS(7273), - [anon_sym_not_eq] = ACTIONS(7273), - [anon_sym_DASH_DASH] = ACTIONS(7273), - [anon_sym_PLUS_PLUS] = ACTIONS(7273), - [anon_sym_DOT] = ACTIONS(7271), - [anon_sym_DOT_STAR] = ACTIONS(7273), - [anon_sym_DASH_GT] = ACTIONS(7273), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7273), - [anon_sym_override] = ACTIONS(7273), - [anon_sym_requires] = ACTIONS(7273), + [STATE(2726)] = { + [sym_identifier] = ACTIONS(3128), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), + [anon_sym_COMMA] = ACTIONS(3118), + [anon_sym_RPAREN] = ACTIONS(3118), + [aux_sym_preproc_if_token2] = ACTIONS(3118), + [aux_sym_preproc_else_token1] = ACTIONS(3118), + [aux_sym_preproc_elif_token1] = ACTIONS(3128), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3118), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3118), + [anon_sym_LPAREN2] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3128), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3128), + [anon_sym_GT_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(3128), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_COLON] = ACTIONS(3128), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_RBRACE] = ACTIONS(3118), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3128), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_LT_EQ_GT] = ACTIONS(3118), + [anon_sym_or] = ACTIONS(3128), + [anon_sym_and] = ACTIONS(3128), + [anon_sym_bitor] = ACTIONS(3128), + [anon_sym_xor] = ACTIONS(3128), + [anon_sym_bitand] = ACTIONS(3128), + [anon_sym_not_eq] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_DOT] = ACTIONS(3128), + [anon_sym_DOT_STAR] = ACTIONS(3118), + [anon_sym_DASH_GT] = ACTIONS(3118), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3128), + [anon_sym_override] = ACTIONS(3128), + [anon_sym_requires] = ACTIONS(3128), + [anon_sym_COLON_RBRACK] = ACTIONS(3118), }, - [STATE(3049)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7277), - [anon_sym_COMMA] = ACTIONS(7277), - [anon_sym_LPAREN2] = ACTIONS(7277), - [anon_sym_DASH] = ACTIONS(7275), - [anon_sym_PLUS] = ACTIONS(7275), - [anon_sym_STAR] = ACTIONS(7275), - [anon_sym_SLASH] = ACTIONS(7275), - [anon_sym_PERCENT] = ACTIONS(7275), - [anon_sym_PIPE_PIPE] = ACTIONS(7277), - [anon_sym_AMP_AMP] = ACTIONS(7277), - [anon_sym_PIPE] = ACTIONS(7275), - [anon_sym_CARET] = ACTIONS(7275), - [anon_sym_AMP] = ACTIONS(7275), - [anon_sym_EQ_EQ] = ACTIONS(7277), - [anon_sym_BANG_EQ] = ACTIONS(7277), - [anon_sym_GT] = ACTIONS(7275), - [anon_sym_GT_EQ] = ACTIONS(7277), - [anon_sym_LT_EQ] = ACTIONS(7275), - [anon_sym_LT] = ACTIONS(7275), - [anon_sym_LT_LT] = ACTIONS(7275), - [anon_sym_GT_GT] = ACTIONS(7275), - [anon_sym___extension__] = ACTIONS(7277), - [anon_sym_LBRACE] = ACTIONS(7277), - [anon_sym_LBRACK] = ACTIONS(7277), - [anon_sym_RBRACK] = ACTIONS(7277), - [anon_sym_EQ] = ACTIONS(7275), - [anon_sym_const] = ACTIONS(7275), - [anon_sym_constexpr] = ACTIONS(7277), - [anon_sym_volatile] = ACTIONS(7277), - [anon_sym_restrict] = ACTIONS(7277), - [anon_sym___restrict__] = ACTIONS(7277), - [anon_sym__Atomic] = ACTIONS(7277), - [anon_sym__Noreturn] = ACTIONS(7277), - [anon_sym_noreturn] = ACTIONS(7277), - [anon_sym__Nonnull] = ACTIONS(7277), - [anon_sym_mutable] = ACTIONS(7277), - [anon_sym_constinit] = ACTIONS(7277), - [anon_sym_consteval] = ACTIONS(7277), - [anon_sym_alignas] = ACTIONS(7277), - [anon_sym__Alignas] = ACTIONS(7277), - [anon_sym_QMARK] = ACTIONS(7277), - [anon_sym_STAR_EQ] = ACTIONS(7277), - [anon_sym_SLASH_EQ] = ACTIONS(7277), - [anon_sym_PERCENT_EQ] = ACTIONS(7277), - [anon_sym_PLUS_EQ] = ACTIONS(7277), - [anon_sym_DASH_EQ] = ACTIONS(7277), - [anon_sym_LT_LT_EQ] = ACTIONS(7277), - [anon_sym_GT_GT_EQ] = ACTIONS(7277), - [anon_sym_AMP_EQ] = ACTIONS(7277), - [anon_sym_CARET_EQ] = ACTIONS(7277), - [anon_sym_PIPE_EQ] = ACTIONS(7277), - [anon_sym_and_eq] = ACTIONS(7277), - [anon_sym_or_eq] = ACTIONS(7277), - [anon_sym_xor_eq] = ACTIONS(7277), - [anon_sym_LT_EQ_GT] = ACTIONS(7277), - [anon_sym_or] = ACTIONS(7275), - [anon_sym_and] = ACTIONS(7275), - [anon_sym_bitor] = ACTIONS(7277), - [anon_sym_xor] = ACTIONS(7275), - [anon_sym_bitand] = ACTIONS(7277), - [anon_sym_not_eq] = ACTIONS(7277), - [anon_sym_DASH_DASH] = ACTIONS(7277), - [anon_sym_PLUS_PLUS] = ACTIONS(7277), - [anon_sym_DOT] = ACTIONS(7275), - [anon_sym_DOT_STAR] = ACTIONS(7277), - [anon_sym_DASH_GT] = ACTIONS(7277), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7277), - [anon_sym_override] = ACTIONS(7277), - [anon_sym_requires] = ACTIONS(7277), + [STATE(2727)] = { + [sym_identifier] = ACTIONS(3128), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), + [anon_sym_COMMA] = ACTIONS(3118), + [anon_sym_RPAREN] = ACTIONS(3118), + [aux_sym_preproc_if_token2] = ACTIONS(3118), + [aux_sym_preproc_else_token1] = ACTIONS(3118), + [aux_sym_preproc_elif_token1] = ACTIONS(3128), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3118), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3118), + [anon_sym_LPAREN2] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3128), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3128), + [anon_sym_GT_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(3128), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_COLON] = ACTIONS(3128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3118), + [anon_sym_RBRACE] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_LT_EQ_GT] = ACTIONS(3118), + [anon_sym_or] = ACTIONS(3128), + [anon_sym_and] = ACTIONS(3128), + [anon_sym_bitor] = ACTIONS(3128), + [anon_sym_xor] = ACTIONS(3128), + [anon_sym_bitand] = ACTIONS(3128), + [anon_sym_not_eq] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_asm] = ACTIONS(3128), + [anon_sym___asm__] = ACTIONS(3128), + [anon_sym___asm] = ACTIONS(3128), + [anon_sym_DOT] = ACTIONS(3128), + [anon_sym_DOT_STAR] = ACTIONS(3118), + [anon_sym_DASH_GT] = ACTIONS(3118), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3128), + [anon_sym_override] = ACTIONS(3128), + [anon_sym_noexcept] = ACTIONS(3128), + [anon_sym_throw] = ACTIONS(3128), + [anon_sym_requires] = ACTIONS(3128), + [anon_sym_COLON_RBRACK] = ACTIONS(3118), }, - [STATE(3050)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), - [anon_sym_COMMA] = ACTIONS(7289), - [anon_sym_LPAREN2] = ACTIONS(7289), - [anon_sym_DASH] = ACTIONS(7287), - [anon_sym_PLUS] = ACTIONS(7287), - [anon_sym_STAR] = ACTIONS(7287), - [anon_sym_SLASH] = ACTIONS(7287), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_PIPE_PIPE] = ACTIONS(7289), - [anon_sym_AMP_AMP] = ACTIONS(7289), - [anon_sym_PIPE] = ACTIONS(7287), - [anon_sym_CARET] = ACTIONS(7287), - [anon_sym_AMP] = ACTIONS(7287), - [anon_sym_EQ_EQ] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7289), - [anon_sym_GT] = ACTIONS(7287), - [anon_sym_GT_EQ] = ACTIONS(7289), - [anon_sym_LT_EQ] = ACTIONS(7287), - [anon_sym_LT] = ACTIONS(7287), - [anon_sym_LT_LT] = ACTIONS(7287), - [anon_sym_GT_GT] = ACTIONS(7287), - [anon_sym___extension__] = ACTIONS(7289), - [anon_sym_LBRACE] = ACTIONS(7289), - [anon_sym_LBRACK] = ACTIONS(7289), - [anon_sym_RBRACK] = ACTIONS(7289), - [anon_sym_EQ] = ACTIONS(7287), - [anon_sym_const] = ACTIONS(7287), - [anon_sym_constexpr] = ACTIONS(7289), - [anon_sym_volatile] = ACTIONS(7289), - [anon_sym_restrict] = ACTIONS(7289), - [anon_sym___restrict__] = ACTIONS(7289), - [anon_sym__Atomic] = ACTIONS(7289), - [anon_sym__Noreturn] = ACTIONS(7289), - [anon_sym_noreturn] = ACTIONS(7289), - [anon_sym__Nonnull] = ACTIONS(7289), - [anon_sym_mutable] = ACTIONS(7289), - [anon_sym_constinit] = ACTIONS(7289), - [anon_sym_consteval] = ACTIONS(7289), - [anon_sym_alignas] = ACTIONS(7289), - [anon_sym__Alignas] = ACTIONS(7289), - [anon_sym_QMARK] = ACTIONS(7289), - [anon_sym_STAR_EQ] = ACTIONS(7289), - [anon_sym_SLASH_EQ] = ACTIONS(7289), - [anon_sym_PERCENT_EQ] = ACTIONS(7289), - [anon_sym_PLUS_EQ] = ACTIONS(7289), - [anon_sym_DASH_EQ] = ACTIONS(7289), - [anon_sym_LT_LT_EQ] = ACTIONS(7289), - [anon_sym_GT_GT_EQ] = ACTIONS(7289), - [anon_sym_AMP_EQ] = ACTIONS(7289), - [anon_sym_CARET_EQ] = ACTIONS(7289), - [anon_sym_PIPE_EQ] = ACTIONS(7289), - [anon_sym_and_eq] = ACTIONS(7289), - [anon_sym_or_eq] = ACTIONS(7289), - [anon_sym_xor_eq] = ACTIONS(7289), - [anon_sym_LT_EQ_GT] = ACTIONS(7289), - [anon_sym_or] = ACTIONS(7287), - [anon_sym_and] = ACTIONS(7287), - [anon_sym_bitor] = ACTIONS(7289), - [anon_sym_xor] = ACTIONS(7287), - [anon_sym_bitand] = ACTIONS(7289), - [anon_sym_not_eq] = ACTIONS(7289), - [anon_sym_DASH_DASH] = ACTIONS(7289), - [anon_sym_PLUS_PLUS] = ACTIONS(7289), - [anon_sym_DOT] = ACTIONS(7287), - [anon_sym_DOT_STAR] = ACTIONS(7289), - [anon_sym_DASH_GT] = ACTIONS(7289), + [STATE(2728)] = { + [sym_attribute_specifier] = STATE(3218), + [sym_enumerator_list] = STATE(2824), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), + [anon_sym_COMMA] = ACTIONS(7389), + [anon_sym_LPAREN2] = ACTIONS(7389), + [anon_sym_DASH] = ACTIONS(7387), + [anon_sym_PLUS] = ACTIONS(7387), + [anon_sym_STAR] = ACTIONS(7387), + [anon_sym_SLASH] = ACTIONS(7387), + [anon_sym_PERCENT] = ACTIONS(7387), + [anon_sym_PIPE_PIPE] = ACTIONS(7389), + [anon_sym_AMP_AMP] = ACTIONS(7389), + [anon_sym_PIPE] = ACTIONS(7387), + [anon_sym_CARET] = ACTIONS(7387), + [anon_sym_AMP] = ACTIONS(7387), + [anon_sym_EQ_EQ] = ACTIONS(7389), + [anon_sym_BANG_EQ] = ACTIONS(7389), + [anon_sym_GT] = ACTIONS(7387), + [anon_sym_GT_EQ] = ACTIONS(7387), + [anon_sym_LT_EQ] = ACTIONS(7387), + [anon_sym_LT] = ACTIONS(7387), + [anon_sym_LT_LT] = ACTIONS(7387), + [anon_sym_GT_GT] = ACTIONS(7387), + [anon_sym___extension__] = ACTIONS(7389), + [anon_sym___attribute__] = ACTIONS(8265), + [anon_sym___attribute] = ACTIONS(8267), + [anon_sym_LBRACE] = ACTIONS(8472), + [anon_sym_LBRACK] = ACTIONS(7389), + [anon_sym_EQ] = ACTIONS(7387), + [anon_sym_const] = ACTIONS(7387), + [anon_sym_constexpr] = ACTIONS(7389), + [anon_sym_volatile] = ACTIONS(7389), + [anon_sym_restrict] = ACTIONS(7389), + [anon_sym___restrict__] = ACTIONS(7389), + [anon_sym__Atomic] = ACTIONS(7389), + [anon_sym__Noreturn] = ACTIONS(7389), + [anon_sym_noreturn] = ACTIONS(7389), + [anon_sym__Nonnull] = ACTIONS(7389), + [anon_sym_mutable] = ACTIONS(7389), + [anon_sym_constinit] = ACTIONS(7389), + [anon_sym_consteval] = ACTIONS(7389), + [anon_sym_alignas] = ACTIONS(7389), + [anon_sym__Alignas] = ACTIONS(7389), + [anon_sym_QMARK] = ACTIONS(7389), + [anon_sym_STAR_EQ] = ACTIONS(7389), + [anon_sym_SLASH_EQ] = ACTIONS(7389), + [anon_sym_PERCENT_EQ] = ACTIONS(7389), + [anon_sym_PLUS_EQ] = ACTIONS(7389), + [anon_sym_DASH_EQ] = ACTIONS(7389), + [anon_sym_LT_LT_EQ] = ACTIONS(7389), + [anon_sym_GT_GT_EQ] = ACTIONS(7387), + [anon_sym_AMP_EQ] = ACTIONS(7389), + [anon_sym_CARET_EQ] = ACTIONS(7389), + [anon_sym_PIPE_EQ] = ACTIONS(7389), + [anon_sym_and_eq] = ACTIONS(7389), + [anon_sym_or_eq] = ACTIONS(7389), + [anon_sym_xor_eq] = ACTIONS(7389), + [anon_sym_LT_EQ_GT] = ACTIONS(7389), + [anon_sym_or] = ACTIONS(7387), + [anon_sym_and] = ACTIONS(7387), + [anon_sym_bitor] = ACTIONS(7389), + [anon_sym_xor] = ACTIONS(7387), + [anon_sym_bitand] = ACTIONS(7389), + [anon_sym_not_eq] = ACTIONS(7389), + [anon_sym_DASH_DASH] = ACTIONS(7389), + [anon_sym_PLUS_PLUS] = ACTIONS(7389), + [anon_sym_DOT] = ACTIONS(7387), + [anon_sym_DOT_STAR] = ACTIONS(7389), + [anon_sym_DASH_GT] = ACTIONS(7389), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7289), - [anon_sym_override] = ACTIONS(7289), - [anon_sym_requires] = ACTIONS(7289), + [anon_sym_final] = ACTIONS(7389), + [anon_sym_override] = ACTIONS(7389), + [anon_sym_GT2] = ACTIONS(7389), + [anon_sym_requires] = ACTIONS(7389), }, - [STATE(3051)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7291), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7291), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7291), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7291), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym___extension__] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_RBRACK] = ACTIONS(7293), - [anon_sym_EQ] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7293), - [anon_sym_volatile] = ACTIONS(7293), - [anon_sym_restrict] = ACTIONS(7293), - [anon_sym___restrict__] = ACTIONS(7293), - [anon_sym__Atomic] = ACTIONS(7293), - [anon_sym__Noreturn] = ACTIONS(7293), - [anon_sym_noreturn] = ACTIONS(7293), - [anon_sym__Nonnull] = ACTIONS(7293), - [anon_sym_mutable] = ACTIONS(7293), - [anon_sym_constinit] = ACTIONS(7293), - [anon_sym_consteval] = ACTIONS(7293), - [anon_sym_alignas] = ACTIONS(7293), - [anon_sym__Alignas] = ACTIONS(7293), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_STAR_EQ] = ACTIONS(7293), - [anon_sym_SLASH_EQ] = ACTIONS(7293), - [anon_sym_PERCENT_EQ] = ACTIONS(7293), - [anon_sym_PLUS_EQ] = ACTIONS(7293), - [anon_sym_DASH_EQ] = ACTIONS(7293), - [anon_sym_LT_LT_EQ] = ACTIONS(7293), - [anon_sym_GT_GT_EQ] = ACTIONS(7293), - [anon_sym_AMP_EQ] = ACTIONS(7293), - [anon_sym_CARET_EQ] = ACTIONS(7293), - [anon_sym_PIPE_EQ] = ACTIONS(7293), - [anon_sym_and_eq] = ACTIONS(7293), - [anon_sym_or_eq] = ACTIONS(7293), - [anon_sym_xor_eq] = ACTIONS(7293), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_bitor] = ACTIONS(7293), - [anon_sym_xor] = ACTIONS(7291), - [anon_sym_bitand] = ACTIONS(7293), - [anon_sym_not_eq] = ACTIONS(7293), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7293), + [STATE(2729)] = { + [sym_attribute_specifier] = STATE(3050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7429), + [anon_sym_COMMA] = ACTIONS(7429), + [anon_sym_RPAREN] = ACTIONS(7429), + [anon_sym_LPAREN2] = ACTIONS(7429), + [anon_sym_DASH] = ACTIONS(7427), + [anon_sym_PLUS] = ACTIONS(7427), + [anon_sym_STAR] = ACTIONS(7427), + [anon_sym_SLASH] = ACTIONS(7427), + [anon_sym_PERCENT] = ACTIONS(7427), + [anon_sym_PIPE_PIPE] = ACTIONS(7429), + [anon_sym_AMP_AMP] = ACTIONS(7429), + [anon_sym_PIPE] = ACTIONS(7427), + [anon_sym_CARET] = ACTIONS(7427), + [anon_sym_AMP] = ACTIONS(7427), + [anon_sym_EQ_EQ] = ACTIONS(7429), + [anon_sym_BANG_EQ] = ACTIONS(7429), + [anon_sym_GT] = ACTIONS(7427), + [anon_sym_GT_EQ] = ACTIONS(7429), + [anon_sym_LT_EQ] = ACTIONS(7427), + [anon_sym_LT] = ACTIONS(7427), + [anon_sym_LT_LT] = ACTIONS(7427), + [anon_sym_GT_GT] = ACTIONS(7427), + [anon_sym___extension__] = ACTIONS(7429), + [anon_sym___attribute__] = ACTIONS(8152), + [anon_sym___attribute] = ACTIONS(8154), + [anon_sym_LBRACE] = ACTIONS(7429), + [anon_sym_LBRACK] = ACTIONS(7429), + [anon_sym_EQ] = ACTIONS(7427), + [anon_sym_const] = ACTIONS(7427), + [anon_sym_constexpr] = ACTIONS(7429), + [anon_sym_volatile] = ACTIONS(7429), + [anon_sym_restrict] = ACTIONS(7429), + [anon_sym___restrict__] = ACTIONS(7429), + [anon_sym__Atomic] = ACTIONS(7429), + [anon_sym__Noreturn] = ACTIONS(7429), + [anon_sym_noreturn] = ACTIONS(7429), + [anon_sym__Nonnull] = ACTIONS(7429), + [anon_sym_mutable] = ACTIONS(7429), + [anon_sym_constinit] = ACTIONS(7429), + [anon_sym_consteval] = ACTIONS(7429), + [anon_sym_alignas] = ACTIONS(7429), + [anon_sym__Alignas] = ACTIONS(7429), + [anon_sym_QMARK] = ACTIONS(7429), + [anon_sym_STAR_EQ] = ACTIONS(7429), + [anon_sym_SLASH_EQ] = ACTIONS(7429), + [anon_sym_PERCENT_EQ] = ACTIONS(7429), + [anon_sym_PLUS_EQ] = ACTIONS(7429), + [anon_sym_DASH_EQ] = ACTIONS(7429), + [anon_sym_LT_LT_EQ] = ACTIONS(7429), + [anon_sym_GT_GT_EQ] = ACTIONS(7429), + [anon_sym_AMP_EQ] = ACTIONS(7429), + [anon_sym_CARET_EQ] = ACTIONS(7429), + [anon_sym_PIPE_EQ] = ACTIONS(7429), + [anon_sym_and_eq] = ACTIONS(7429), + [anon_sym_or_eq] = ACTIONS(7429), + [anon_sym_xor_eq] = ACTIONS(7429), + [anon_sym_LT_EQ_GT] = ACTIONS(7429), + [anon_sym_or] = ACTIONS(7427), + [anon_sym_and] = ACTIONS(7427), + [anon_sym_bitor] = ACTIONS(7429), + [anon_sym_xor] = ACTIONS(7427), + [anon_sym_bitand] = ACTIONS(7429), + [anon_sym_not_eq] = ACTIONS(7429), + [anon_sym_DASH_DASH] = ACTIONS(7429), + [anon_sym_PLUS_PLUS] = ACTIONS(7429), + [anon_sym_DOT] = ACTIONS(7427), + [anon_sym_DOT_STAR] = ACTIONS(7429), + [anon_sym_DASH_GT] = ACTIONS(7427), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7429), + [anon_sym_override] = ACTIONS(7429), + [anon_sym_requires] = ACTIONS(7429), + [anon_sym_DASH_GT_STAR] = ACTIONS(7429), + }, + [STATE(2730)] = { + [sym_identifier] = ACTIONS(7077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), + [anon_sym_COMMA] = ACTIONS(7079), + [anon_sym_RPAREN] = ACTIONS(7079), + [aux_sym_preproc_if_token2] = ACTIONS(7079), + [aux_sym_preproc_else_token1] = ACTIONS(7079), + [aux_sym_preproc_elif_token1] = ACTIONS(7077), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7079), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7079), + [anon_sym_LPAREN2] = ACTIONS(7079), + [anon_sym_DASH] = ACTIONS(7077), + [anon_sym_PLUS] = ACTIONS(7077), + [anon_sym_STAR] = ACTIONS(7079), + [anon_sym_SLASH] = ACTIONS(7077), + [anon_sym_PERCENT] = ACTIONS(7079), + [anon_sym_PIPE_PIPE] = ACTIONS(7079), + [anon_sym_AMP_AMP] = ACTIONS(7079), + [anon_sym_PIPE] = ACTIONS(7077), + [anon_sym_CARET] = ACTIONS(7079), + [anon_sym_AMP] = ACTIONS(7077), + [anon_sym_EQ_EQ] = ACTIONS(7079), + [anon_sym_BANG_EQ] = ACTIONS(7079), + [anon_sym_GT] = ACTIONS(7077), + [anon_sym_GT_EQ] = ACTIONS(7079), + [anon_sym_LT_EQ] = ACTIONS(7077), + [anon_sym_LT] = ACTIONS(7077), + [anon_sym_LT_LT] = ACTIONS(7079), + [anon_sym_GT_GT] = ACTIONS(7079), + [anon_sym_SEMI] = ACTIONS(7079), + [anon_sym___extension__] = ACTIONS(7077), + [anon_sym___attribute__] = ACTIONS(7077), + [anon_sym___attribute] = ACTIONS(7077), + [anon_sym_COLON] = ACTIONS(7077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7079), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7079), + [anon_sym_RBRACE] = ACTIONS(7079), + [anon_sym_LBRACK] = ACTIONS(7077), + [anon_sym_const] = ACTIONS(7077), + [anon_sym_constexpr] = ACTIONS(7077), + [anon_sym_volatile] = ACTIONS(7077), + [anon_sym_restrict] = ACTIONS(7077), + [anon_sym___restrict__] = ACTIONS(7077), + [anon_sym__Atomic] = ACTIONS(7077), + [anon_sym__Noreturn] = ACTIONS(7077), + [anon_sym_noreturn] = ACTIONS(7077), + [anon_sym__Nonnull] = ACTIONS(7077), + [anon_sym_mutable] = ACTIONS(7077), + [anon_sym_constinit] = ACTIONS(7077), + [anon_sym_consteval] = ACTIONS(7077), + [anon_sym_alignas] = ACTIONS(7077), + [anon_sym__Alignas] = ACTIONS(7077), + [anon_sym_QMARK] = ACTIONS(7079), + [anon_sym_LT_EQ_GT] = ACTIONS(7079), + [anon_sym_or] = ACTIONS(7077), + [anon_sym_and] = ACTIONS(7077), + [anon_sym_bitor] = ACTIONS(7077), + [anon_sym_xor] = ACTIONS(7077), + [anon_sym_bitand] = ACTIONS(7077), + [anon_sym_not_eq] = ACTIONS(7077), + [anon_sym_DASH_DASH] = ACTIONS(7079), + [anon_sym_PLUS_PLUS] = ACTIONS(7079), + [anon_sym_asm] = ACTIONS(7077), + [anon_sym___asm__] = ACTIONS(7077), + [anon_sym___asm] = ACTIONS(7077), + [anon_sym_DOT] = ACTIONS(7077), + [anon_sym_DOT_STAR] = ACTIONS(7079), + [anon_sym_DASH_GT] = ACTIONS(7079), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7077), + [anon_sym_override] = ACTIONS(7077), + [anon_sym_noexcept] = ACTIONS(7077), + [anon_sym_throw] = ACTIONS(7077), + [anon_sym_requires] = ACTIONS(7077), + [anon_sym_COLON_RBRACK] = ACTIONS(7079), + }, + [STATE(2731)] = { + [sym_attribute_specifier] = STATE(3555), + [sym_enumerator_list] = STATE(2965), + [sym__enum_base_clause] = STATE(2916), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8008), + [anon_sym_COMMA] = ACTIONS(8008), + [anon_sym_RPAREN] = ACTIONS(8008), + [anon_sym_LPAREN2] = ACTIONS(8008), + [anon_sym_DASH] = ACTIONS(8006), + [anon_sym_PLUS] = ACTIONS(8006), + [anon_sym_STAR] = ACTIONS(8006), + [anon_sym_SLASH] = ACTIONS(8006), + [anon_sym_PERCENT] = ACTIONS(8006), + [anon_sym_PIPE_PIPE] = ACTIONS(8008), + [anon_sym_AMP_AMP] = ACTIONS(8008), + [anon_sym_PIPE] = ACTIONS(8006), + [anon_sym_CARET] = ACTIONS(8006), + [anon_sym_AMP] = ACTIONS(8006), + [anon_sym_EQ_EQ] = ACTIONS(8008), + [anon_sym_BANG_EQ] = ACTIONS(8008), + [anon_sym_GT] = ACTIONS(8006), + [anon_sym_GT_EQ] = ACTIONS(8008), + [anon_sym_LT_EQ] = ACTIONS(8006), + [anon_sym_LT] = ACTIONS(8006), + [anon_sym_LT_LT] = ACTIONS(8006), + [anon_sym_GT_GT] = ACTIONS(8006), + [anon_sym___extension__] = ACTIONS(8008), + [anon_sym___attribute__] = ACTIONS(8499), + [anon_sym___attribute] = ACTIONS(8501), + [anon_sym_COLON] = ACTIONS(8622), + [anon_sym_LBRACE] = ACTIONS(8624), + [anon_sym_LBRACK] = ACTIONS(8008), + [anon_sym_EQ] = ACTIONS(8006), + [anon_sym_const] = ACTIONS(8006), + [anon_sym_constexpr] = ACTIONS(8008), + [anon_sym_volatile] = ACTIONS(8008), + [anon_sym_restrict] = ACTIONS(8008), + [anon_sym___restrict__] = ACTIONS(8008), + [anon_sym__Atomic] = ACTIONS(8008), + [anon_sym__Noreturn] = ACTIONS(8008), + [anon_sym_noreturn] = ACTIONS(8008), + [anon_sym__Nonnull] = ACTIONS(8008), + [anon_sym_mutable] = ACTIONS(8008), + [anon_sym_constinit] = ACTIONS(8008), + [anon_sym_consteval] = ACTIONS(8008), + [anon_sym_alignas] = ACTIONS(8008), + [anon_sym__Alignas] = ACTIONS(8008), + [anon_sym_QMARK] = ACTIONS(8008), + [anon_sym_STAR_EQ] = ACTIONS(8008), + [anon_sym_SLASH_EQ] = ACTIONS(8008), + [anon_sym_PERCENT_EQ] = ACTIONS(8008), + [anon_sym_PLUS_EQ] = ACTIONS(8008), + [anon_sym_DASH_EQ] = ACTIONS(8008), + [anon_sym_LT_LT_EQ] = ACTIONS(8008), + [anon_sym_GT_GT_EQ] = ACTIONS(8008), + [anon_sym_AMP_EQ] = ACTIONS(8008), + [anon_sym_CARET_EQ] = ACTIONS(8008), + [anon_sym_PIPE_EQ] = ACTIONS(8008), + [anon_sym_LT_EQ_GT] = ACTIONS(8008), + [anon_sym_or] = ACTIONS(8008), + [anon_sym_and] = ACTIONS(8008), + [anon_sym_bitor] = ACTIONS(8008), + [anon_sym_xor] = ACTIONS(8008), + [anon_sym_bitand] = ACTIONS(8008), + [anon_sym_not_eq] = ACTIONS(8008), + [anon_sym_DASH_DASH] = ACTIONS(8008), + [anon_sym_PLUS_PLUS] = ACTIONS(8008), + [anon_sym_DOT] = ACTIONS(8006), + [anon_sym_DOT_STAR] = ACTIONS(8008), + [anon_sym_DASH_GT] = ACTIONS(8006), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8008), + [anon_sym_override] = ACTIONS(8008), + [anon_sym_requires] = ACTIONS(8008), + [anon_sym_DASH_GT_STAR] = ACTIONS(8008), + }, + [STATE(2732)] = { + [sym_attribute_specifier] = STATE(3107), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), + [anon_sym_COMMA] = ACTIONS(7399), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(7397), + [anon_sym_PLUS] = ACTIONS(7397), + [anon_sym_STAR] = ACTIONS(7397), + [anon_sym_SLASH] = ACTIONS(7397), + [anon_sym_PERCENT] = ACTIONS(7397), + [anon_sym_PIPE_PIPE] = ACTIONS(7399), + [anon_sym_AMP_AMP] = ACTIONS(7399), + [anon_sym_PIPE] = ACTIONS(7397), + [anon_sym_CARET] = ACTIONS(7397), + [anon_sym_AMP] = ACTIONS(7397), + [anon_sym_EQ_EQ] = ACTIONS(7399), + [anon_sym_BANG_EQ] = ACTIONS(7399), + [anon_sym_GT] = ACTIONS(7397), + [anon_sym_GT_EQ] = ACTIONS(7399), + [anon_sym_LT_EQ] = ACTIONS(7397), + [anon_sym_LT] = ACTIONS(7397), + [anon_sym_LT_LT] = ACTIONS(7397), + [anon_sym_GT_GT] = ACTIONS(7397), + [anon_sym___extension__] = ACTIONS(7399), + [anon_sym___attribute__] = ACTIONS(8293), + [anon_sym___attribute] = ACTIONS(8295), + [anon_sym_LBRACE] = ACTIONS(7399), + [anon_sym_LBRACK] = ACTIONS(7399), + [anon_sym_RBRACK] = ACTIONS(7399), + [anon_sym_EQ] = ACTIONS(7397), + [anon_sym_const] = ACTIONS(7397), + [anon_sym_constexpr] = ACTIONS(7399), + [anon_sym_volatile] = ACTIONS(7399), + [anon_sym_restrict] = ACTIONS(7399), + [anon_sym___restrict__] = ACTIONS(7399), + [anon_sym__Atomic] = ACTIONS(7399), + [anon_sym__Noreturn] = ACTIONS(7399), + [anon_sym_noreturn] = ACTIONS(7399), + [anon_sym__Nonnull] = ACTIONS(7399), + [anon_sym_mutable] = ACTIONS(7399), + [anon_sym_constinit] = ACTIONS(7399), + [anon_sym_consteval] = ACTIONS(7399), + [anon_sym_alignas] = ACTIONS(7399), + [anon_sym__Alignas] = ACTIONS(7399), + [anon_sym_QMARK] = ACTIONS(7399), + [anon_sym_STAR_EQ] = ACTIONS(7399), + [anon_sym_SLASH_EQ] = ACTIONS(7399), + [anon_sym_PERCENT_EQ] = ACTIONS(7399), + [anon_sym_PLUS_EQ] = ACTIONS(7399), + [anon_sym_DASH_EQ] = ACTIONS(7399), + [anon_sym_LT_LT_EQ] = ACTIONS(7399), + [anon_sym_GT_GT_EQ] = ACTIONS(7399), + [anon_sym_AMP_EQ] = ACTIONS(7399), + [anon_sym_CARET_EQ] = ACTIONS(7399), + [anon_sym_PIPE_EQ] = ACTIONS(7399), + [anon_sym_and_eq] = ACTIONS(7399), + [anon_sym_or_eq] = ACTIONS(7399), + [anon_sym_xor_eq] = ACTIONS(7399), + [anon_sym_LT_EQ_GT] = ACTIONS(7399), + [anon_sym_or] = ACTIONS(7397), + [anon_sym_and] = ACTIONS(7397), + [anon_sym_bitor] = ACTIONS(7399), + [anon_sym_xor] = ACTIONS(7397), + [anon_sym_bitand] = ACTIONS(7399), + [anon_sym_not_eq] = ACTIONS(7399), + [anon_sym_DASH_DASH] = ACTIONS(7399), + [anon_sym_PLUS_PLUS] = ACTIONS(7399), + [anon_sym_DOT] = ACTIONS(7397), + [anon_sym_DOT_STAR] = ACTIONS(7399), + [anon_sym_DASH_GT] = ACTIONS(7399), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7399), + [anon_sym_override] = ACTIONS(7399), + [anon_sym_requires] = ACTIONS(7399), + }, + [STATE(2733)] = { + [sym_attribute_specifier] = STATE(3121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7507), + [anon_sym_COMMA] = ACTIONS(7507), + [anon_sym_LPAREN2] = ACTIONS(7507), + [anon_sym_DASH] = ACTIONS(7505), + [anon_sym_PLUS] = ACTIONS(7505), + [anon_sym_STAR] = ACTIONS(7505), + [anon_sym_SLASH] = ACTIONS(7505), + [anon_sym_PERCENT] = ACTIONS(7505), + [anon_sym_PIPE_PIPE] = ACTIONS(7507), + [anon_sym_AMP_AMP] = ACTIONS(7507), + [anon_sym_PIPE] = ACTIONS(7505), + [anon_sym_CARET] = ACTIONS(7505), + [anon_sym_AMP] = ACTIONS(7505), + [anon_sym_EQ_EQ] = ACTIONS(7507), + [anon_sym_BANG_EQ] = ACTIONS(7507), + [anon_sym_GT] = ACTIONS(7505), + [anon_sym_GT_EQ] = ACTIONS(7507), + [anon_sym_LT_EQ] = ACTIONS(7505), + [anon_sym_LT] = ACTIONS(7505), + [anon_sym_LT_LT] = ACTIONS(7505), + [anon_sym_GT_GT] = ACTIONS(7505), + [anon_sym___extension__] = ACTIONS(7507), + [anon_sym___attribute__] = ACTIONS(8293), + [anon_sym___attribute] = ACTIONS(8295), + [anon_sym_LBRACE] = ACTIONS(7507), + [anon_sym_LBRACK] = ACTIONS(7507), + [anon_sym_RBRACK] = ACTIONS(7507), + [anon_sym_EQ] = ACTIONS(7505), + [anon_sym_const] = ACTIONS(7505), + [anon_sym_constexpr] = ACTIONS(7507), + [anon_sym_volatile] = ACTIONS(7507), + [anon_sym_restrict] = ACTIONS(7507), + [anon_sym___restrict__] = ACTIONS(7507), + [anon_sym__Atomic] = ACTIONS(7507), + [anon_sym__Noreturn] = ACTIONS(7507), + [anon_sym_noreturn] = ACTIONS(7507), + [anon_sym__Nonnull] = ACTIONS(7507), + [anon_sym_mutable] = ACTIONS(7507), + [anon_sym_constinit] = ACTIONS(7507), + [anon_sym_consteval] = ACTIONS(7507), + [anon_sym_alignas] = ACTIONS(7507), + [anon_sym__Alignas] = ACTIONS(7507), + [anon_sym_QMARK] = ACTIONS(7507), + [anon_sym_STAR_EQ] = ACTIONS(7507), + [anon_sym_SLASH_EQ] = ACTIONS(7507), + [anon_sym_PERCENT_EQ] = ACTIONS(7507), + [anon_sym_PLUS_EQ] = ACTIONS(7507), + [anon_sym_DASH_EQ] = ACTIONS(7507), + [anon_sym_LT_LT_EQ] = ACTIONS(7507), + [anon_sym_GT_GT_EQ] = ACTIONS(7507), + [anon_sym_AMP_EQ] = ACTIONS(7507), + [anon_sym_CARET_EQ] = ACTIONS(7507), + [anon_sym_PIPE_EQ] = ACTIONS(7507), + [anon_sym_and_eq] = ACTIONS(7507), + [anon_sym_or_eq] = ACTIONS(7507), + [anon_sym_xor_eq] = ACTIONS(7507), + [anon_sym_LT_EQ_GT] = ACTIONS(7507), + [anon_sym_or] = ACTIONS(7505), + [anon_sym_and] = ACTIONS(7505), + [anon_sym_bitor] = ACTIONS(7507), + [anon_sym_xor] = ACTIONS(7505), + [anon_sym_bitand] = ACTIONS(7507), + [anon_sym_not_eq] = ACTIONS(7507), + [anon_sym_DASH_DASH] = ACTIONS(7507), + [anon_sym_PLUS_PLUS] = ACTIONS(7507), + [anon_sym_DOT] = ACTIONS(7505), + [anon_sym_DOT_STAR] = ACTIONS(7507), + [anon_sym_DASH_GT] = ACTIONS(7507), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7293), - [anon_sym_override] = ACTIONS(7293), - [anon_sym_requires] = ACTIONS(7293), + [anon_sym_final] = ACTIONS(7507), + [anon_sym_override] = ACTIONS(7507), + [anon_sym_requires] = ACTIONS(7507), }, - [STATE(3052)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7301), - [anon_sym_COMMA] = ACTIONS(7301), - [anon_sym_LPAREN2] = ACTIONS(7301), - [anon_sym_DASH] = ACTIONS(7299), - [anon_sym_PLUS] = ACTIONS(7299), - [anon_sym_STAR] = ACTIONS(7299), - [anon_sym_SLASH] = ACTIONS(7299), - [anon_sym_PERCENT] = ACTIONS(7299), - [anon_sym_PIPE_PIPE] = ACTIONS(7301), - [anon_sym_AMP_AMP] = ACTIONS(7301), - [anon_sym_PIPE] = ACTIONS(7299), - [anon_sym_CARET] = ACTIONS(7299), - [anon_sym_AMP] = ACTIONS(7299), - [anon_sym_EQ_EQ] = ACTIONS(7301), - [anon_sym_BANG_EQ] = ACTIONS(7301), - [anon_sym_GT] = ACTIONS(7299), - [anon_sym_GT_EQ] = ACTIONS(7301), - [anon_sym_LT_EQ] = ACTIONS(7299), - [anon_sym_LT] = ACTIONS(7299), - [anon_sym_LT_LT] = ACTIONS(7299), - [anon_sym_GT_GT] = ACTIONS(7299), + [STATE(2734)] = { + [sym__declaration_modifiers] = STATE(5048), + [sym_attribute_specifier] = STATE(5048), + [sym_attribute_declaration] = STATE(5048), + [sym_ms_declspec_modifier] = STATE(5048), + [sym_storage_class_specifier] = STATE(5048), + [sym_type_qualifier] = STATE(5048), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4006), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8756), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(5157), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(5048), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(6455), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(8641), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5629), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(2735)] = { + [sym_identifier] = ACTIONS(3622), + [aux_sym_preproc_def_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token2] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), + [aux_sym_preproc_else_token1] = ACTIONS(3622), + [aux_sym_preproc_elif_token1] = ACTIONS(3622), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3622), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3622), + [sym_preproc_directive] = ACTIONS(3622), + [anon_sym_LPAREN2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_STAR] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_AMP] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym___extension__] = ACTIONS(3622), + [anon_sym_typedef] = ACTIONS(3622), + [anon_sym_virtual] = ACTIONS(3622), + [anon_sym_extern] = ACTIONS(3622), + [anon_sym___attribute__] = ACTIONS(3622), + [anon_sym___attribute] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_COLON_COLON] = ACTIONS(3624), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), + [anon_sym___declspec] = ACTIONS(3622), + [anon_sym___based] = ACTIONS(3622), + [anon_sym_signed] = ACTIONS(3622), + [anon_sym_unsigned] = ACTIONS(3622), + [anon_sym_long] = ACTIONS(3622), + [anon_sym_short] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_register] = ACTIONS(3622), + [anon_sym_inline] = ACTIONS(3622), + [anon_sym___inline] = ACTIONS(3622), + [anon_sym___inline__] = ACTIONS(3622), + [anon_sym___forceinline] = ACTIONS(3622), + [anon_sym_thread_local] = ACTIONS(3622), + [anon_sym___thread] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_constexpr] = ACTIONS(3622), + [anon_sym_volatile] = ACTIONS(3622), + [anon_sym_restrict] = ACTIONS(3622), + [anon_sym___restrict__] = ACTIONS(3622), + [anon_sym__Atomic] = ACTIONS(3622), + [anon_sym__Noreturn] = ACTIONS(3622), + [anon_sym_noreturn] = ACTIONS(3622), + [anon_sym__Nonnull] = ACTIONS(3622), + [anon_sym_mutable] = ACTIONS(3622), + [anon_sym_constinit] = ACTIONS(3622), + [anon_sym_consteval] = ACTIONS(3622), + [anon_sym_alignas] = ACTIONS(3622), + [anon_sym__Alignas] = ACTIONS(3622), + [sym_primitive_type] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_struct] = ACTIONS(3622), + [anon_sym_union] = ACTIONS(3622), + [anon_sym_typename] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3622), + [anon_sym_decltype] = ACTIONS(3622), + [anon_sym_explicit] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_template] = ACTIONS(3622), + [anon_sym_operator] = ACTIONS(3622), + [anon_sym_friend] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_static_assert] = ACTIONS(3622), + [anon_sym_LBRACK_COLON] = ACTIONS(3624), + }, + [STATE(2736)] = { + [sym_identifier] = ACTIONS(7301), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7303), + [anon_sym_COMMA] = ACTIONS(7303), + [anon_sym_RPAREN] = ACTIONS(7303), + [anon_sym_LPAREN2] = ACTIONS(7303), + [anon_sym_DASH] = ACTIONS(7301), + [anon_sym_PLUS] = ACTIONS(7301), + [anon_sym_STAR] = ACTIONS(7303), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7303), + [anon_sym_PIPE_PIPE] = ACTIONS(7303), + [anon_sym_AMP_AMP] = ACTIONS(7303), + [anon_sym_PIPE] = ACTIONS(7301), + [anon_sym_CARET] = ACTIONS(7303), + [anon_sym_AMP] = ACTIONS(7301), + [anon_sym_EQ_EQ] = ACTIONS(7303), + [anon_sym_BANG_EQ] = ACTIONS(7303), + [anon_sym_GT] = ACTIONS(7301), + [anon_sym_GT_EQ] = ACTIONS(7303), + [anon_sym_LT_EQ] = ACTIONS(7301), + [anon_sym_LT] = ACTIONS(7301), + [anon_sym_LT_LT] = ACTIONS(7303), + [anon_sym_GT_GT] = ACTIONS(7303), + [anon_sym_SEMI] = ACTIONS(7303), [anon_sym___extension__] = ACTIONS(7301), - [anon_sym_LBRACE] = ACTIONS(7301), - [anon_sym_LBRACK] = ACTIONS(7301), - [anon_sym_RBRACK] = ACTIONS(7301), - [anon_sym_EQ] = ACTIONS(7299), - [anon_sym_const] = ACTIONS(7299), + [anon_sym___attribute__] = ACTIONS(7301), + [anon_sym___attribute] = ACTIONS(7301), + [anon_sym_COLON] = ACTIONS(7301), + [anon_sym_COLON_COLON] = ACTIONS(7303), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7303), + [anon_sym___based] = ACTIONS(7301), + [anon_sym_LBRACE] = ACTIONS(7303), + [anon_sym_RBRACE] = ACTIONS(7303), + [anon_sym_signed] = ACTIONS(7301), + [anon_sym_unsigned] = ACTIONS(7301), + [anon_sym_long] = ACTIONS(7301), + [anon_sym_short] = ACTIONS(7301), + [anon_sym_LBRACK] = ACTIONS(7303), + [anon_sym_const] = ACTIONS(7301), [anon_sym_constexpr] = ACTIONS(7301), [anon_sym_volatile] = ACTIONS(7301), [anon_sym_restrict] = ACTIONS(7301), @@ -383992,1996 +374118,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(7301), [anon_sym_alignas] = ACTIONS(7301), [anon_sym__Alignas] = ACTIONS(7301), - [anon_sym_QMARK] = ACTIONS(7301), - [anon_sym_STAR_EQ] = ACTIONS(7301), - [anon_sym_SLASH_EQ] = ACTIONS(7301), - [anon_sym_PERCENT_EQ] = ACTIONS(7301), - [anon_sym_PLUS_EQ] = ACTIONS(7301), - [anon_sym_DASH_EQ] = ACTIONS(7301), - [anon_sym_LT_LT_EQ] = ACTIONS(7301), - [anon_sym_GT_GT_EQ] = ACTIONS(7301), - [anon_sym_AMP_EQ] = ACTIONS(7301), - [anon_sym_CARET_EQ] = ACTIONS(7301), - [anon_sym_PIPE_EQ] = ACTIONS(7301), - [anon_sym_and_eq] = ACTIONS(7301), - [anon_sym_or_eq] = ACTIONS(7301), - [anon_sym_xor_eq] = ACTIONS(7301), - [anon_sym_LT_EQ_GT] = ACTIONS(7301), - [anon_sym_or] = ACTIONS(7299), - [anon_sym_and] = ACTIONS(7299), + [sym_primitive_type] = ACTIONS(7301), + [anon_sym_QMARK] = ACTIONS(7303), + [anon_sym_LT_EQ_GT] = ACTIONS(7303), + [anon_sym_or] = ACTIONS(7301), + [anon_sym_and] = ACTIONS(7301), [anon_sym_bitor] = ACTIONS(7301), - [anon_sym_xor] = ACTIONS(7299), + [anon_sym_xor] = ACTIONS(7301), [anon_sym_bitand] = ACTIONS(7301), [anon_sym_not_eq] = ACTIONS(7301), - [anon_sym_DASH_DASH] = ACTIONS(7301), - [anon_sym_PLUS_PLUS] = ACTIONS(7301), - [anon_sym_DOT] = ACTIONS(7299), - [anon_sym_DOT_STAR] = ACTIONS(7301), - [anon_sym_DASH_GT] = ACTIONS(7301), + [anon_sym_DASH_DASH] = ACTIONS(7303), + [anon_sym_PLUS_PLUS] = ACTIONS(7303), + [anon_sym_DOT] = ACTIONS(7301), + [anon_sym_DOT_STAR] = ACTIONS(7303), + [anon_sym_DASH_GT] = ACTIONS(7303), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7301), + [anon_sym_decltype] = ACTIONS(7301), [anon_sym_final] = ACTIONS(7301), [anon_sym_override] = ACTIONS(7301), [anon_sym_requires] = ACTIONS(7301), + [anon_sym_COLON_RBRACK] = ACTIONS(7303), }, - [STATE(3053)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), - [anon_sym_COMMA] = ACTIONS(7289), - [anon_sym_LPAREN2] = ACTIONS(7289), - [anon_sym_DASH] = ACTIONS(7287), - [anon_sym_PLUS] = ACTIONS(7287), - [anon_sym_STAR] = ACTIONS(7287), - [anon_sym_SLASH] = ACTIONS(7287), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_PIPE_PIPE] = ACTIONS(7289), - [anon_sym_AMP_AMP] = ACTIONS(7289), - [anon_sym_PIPE] = ACTIONS(7287), - [anon_sym_CARET] = ACTIONS(7287), - [anon_sym_AMP] = ACTIONS(7287), - [anon_sym_EQ_EQ] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7289), - [anon_sym_GT] = ACTIONS(7287), - [anon_sym_GT_EQ] = ACTIONS(7289), - [anon_sym_LT_EQ] = ACTIONS(7287), - [anon_sym_LT] = ACTIONS(7287), - [anon_sym_LT_LT] = ACTIONS(7287), - [anon_sym_GT_GT] = ACTIONS(7287), - [anon_sym___extension__] = ACTIONS(7289), - [anon_sym_LBRACE] = ACTIONS(7289), - [anon_sym_LBRACK] = ACTIONS(7289), - [anon_sym_RBRACK] = ACTIONS(7289), - [anon_sym_EQ] = ACTIONS(7287), - [anon_sym_const] = ACTIONS(7287), - [anon_sym_constexpr] = ACTIONS(7289), - [anon_sym_volatile] = ACTIONS(7289), - [anon_sym_restrict] = ACTIONS(7289), - [anon_sym___restrict__] = ACTIONS(7289), - [anon_sym__Atomic] = ACTIONS(7289), - [anon_sym__Noreturn] = ACTIONS(7289), - [anon_sym_noreturn] = ACTIONS(7289), - [anon_sym__Nonnull] = ACTIONS(7289), - [anon_sym_mutable] = ACTIONS(7289), - [anon_sym_constinit] = ACTIONS(7289), - [anon_sym_consteval] = ACTIONS(7289), - [anon_sym_alignas] = ACTIONS(7289), - [anon_sym__Alignas] = ACTIONS(7289), - [anon_sym_QMARK] = ACTIONS(7289), - [anon_sym_STAR_EQ] = ACTIONS(7289), - [anon_sym_SLASH_EQ] = ACTIONS(7289), - [anon_sym_PERCENT_EQ] = ACTIONS(7289), - [anon_sym_PLUS_EQ] = ACTIONS(7289), - [anon_sym_DASH_EQ] = ACTIONS(7289), - [anon_sym_LT_LT_EQ] = ACTIONS(7289), - [anon_sym_GT_GT_EQ] = ACTIONS(7289), - [anon_sym_AMP_EQ] = ACTIONS(7289), - [anon_sym_CARET_EQ] = ACTIONS(7289), - [anon_sym_PIPE_EQ] = ACTIONS(7289), - [anon_sym_and_eq] = ACTIONS(7289), - [anon_sym_or_eq] = ACTIONS(7289), - [anon_sym_xor_eq] = ACTIONS(7289), - [anon_sym_LT_EQ_GT] = ACTIONS(7289), - [anon_sym_or] = ACTIONS(7287), - [anon_sym_and] = ACTIONS(7287), - [anon_sym_bitor] = ACTIONS(7289), - [anon_sym_xor] = ACTIONS(7287), - [anon_sym_bitand] = ACTIONS(7289), - [anon_sym_not_eq] = ACTIONS(7289), - [anon_sym_DASH_DASH] = ACTIONS(7289), - [anon_sym_PLUS_PLUS] = ACTIONS(7289), - [anon_sym_DOT] = ACTIONS(7287), - [anon_sym_DOT_STAR] = ACTIONS(7289), - [anon_sym_DASH_GT] = ACTIONS(7289), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7289), - [anon_sym_override] = ACTIONS(7289), - [anon_sym_requires] = ACTIONS(7289), - }, - [STATE(3054)] = { - [sym_identifier] = ACTIONS(7253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), - [anon_sym_COMMA] = ACTIONS(7255), - [anon_sym_RPAREN] = ACTIONS(7255), - [anon_sym_LPAREN2] = ACTIONS(7255), - [anon_sym_DASH] = ACTIONS(7253), - [anon_sym_PLUS] = ACTIONS(7253), - [anon_sym_STAR] = ACTIONS(7255), - [anon_sym_SLASH] = ACTIONS(7253), - [anon_sym_PERCENT] = ACTIONS(7255), - [anon_sym_PIPE_PIPE] = ACTIONS(7255), - [anon_sym_AMP_AMP] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7255), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_EQ_EQ] = ACTIONS(7255), - [anon_sym_BANG_EQ] = ACTIONS(7255), - [anon_sym_GT] = ACTIONS(7253), - [anon_sym_GT_EQ] = ACTIONS(7255), - [anon_sym_LT_EQ] = ACTIONS(7253), - [anon_sym_LT] = ACTIONS(7253), - [anon_sym_LT_LT] = ACTIONS(7255), - [anon_sym_GT_GT] = ACTIONS(7255), - [anon_sym_SEMI] = ACTIONS(7255), - [anon_sym___extension__] = ACTIONS(7253), - [anon_sym___attribute__] = ACTIONS(7253), - [anon_sym___attribute] = ACTIONS(7253), - [anon_sym_COLON] = ACTIONS(7253), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7255), - [anon_sym___based] = ACTIONS(7253), - [anon_sym_LBRACE] = ACTIONS(7255), - [anon_sym_RBRACE] = ACTIONS(7255), - [anon_sym_signed] = ACTIONS(7253), - [anon_sym_unsigned] = ACTIONS(7253), - [anon_sym_long] = ACTIONS(7253), - [anon_sym_short] = ACTIONS(7253), - [anon_sym_LBRACK] = ACTIONS(7255), - [anon_sym_const] = ACTIONS(7253), - [anon_sym_constexpr] = ACTIONS(7253), - [anon_sym_volatile] = ACTIONS(7253), - [anon_sym_restrict] = ACTIONS(7253), - [anon_sym___restrict__] = ACTIONS(7253), - [anon_sym__Atomic] = ACTIONS(7253), - [anon_sym__Noreturn] = ACTIONS(7253), - [anon_sym_noreturn] = ACTIONS(7253), - [anon_sym__Nonnull] = ACTIONS(7253), - [anon_sym_mutable] = ACTIONS(7253), - [anon_sym_constinit] = ACTIONS(7253), - [anon_sym_consteval] = ACTIONS(7253), - [anon_sym_alignas] = ACTIONS(7253), - [anon_sym__Alignas] = ACTIONS(7253), - [sym_primitive_type] = ACTIONS(7253), - [anon_sym_QMARK] = ACTIONS(7255), - [anon_sym_LT_EQ_GT] = ACTIONS(7255), - [anon_sym_or] = ACTIONS(7253), - [anon_sym_and] = ACTIONS(7253), - [anon_sym_bitor] = ACTIONS(7253), - [anon_sym_xor] = ACTIONS(7253), - [anon_sym_bitand] = ACTIONS(7253), - [anon_sym_not_eq] = ACTIONS(7253), - [anon_sym_DASH_DASH] = ACTIONS(7255), - [anon_sym_PLUS_PLUS] = ACTIONS(7255), - [anon_sym_DOT] = ACTIONS(7253), - [anon_sym_DOT_STAR] = ACTIONS(7255), - [anon_sym_DASH_GT] = ACTIONS(7255), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7253), - [anon_sym_override] = ACTIONS(7253), - [anon_sym_requires] = ACTIONS(7253), - [anon_sym_COLON_RBRACK] = ACTIONS(7255), - }, - [STATE(3055)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7247), - [anon_sym_COMMA] = ACTIONS(7247), - [anon_sym_LPAREN2] = ACTIONS(7247), - [anon_sym_DASH] = ACTIONS(7245), - [anon_sym_PLUS] = ACTIONS(7245), - [anon_sym_STAR] = ACTIONS(7245), - [anon_sym_SLASH] = ACTIONS(7245), - [anon_sym_PERCENT] = ACTIONS(7245), - [anon_sym_PIPE_PIPE] = ACTIONS(7247), - [anon_sym_AMP_AMP] = ACTIONS(7247), - [anon_sym_PIPE] = ACTIONS(7245), - [anon_sym_CARET] = ACTIONS(7245), - [anon_sym_AMP] = ACTIONS(7245), - [anon_sym_EQ_EQ] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7247), - [anon_sym_GT] = ACTIONS(7245), - [anon_sym_GT_EQ] = ACTIONS(7245), - [anon_sym_LT_EQ] = ACTIONS(7245), - [anon_sym_LT] = ACTIONS(7245), - [anon_sym_LT_LT] = ACTIONS(7245), - [anon_sym_GT_GT] = ACTIONS(7245), - [anon_sym___extension__] = ACTIONS(7247), - [anon_sym_LBRACE] = ACTIONS(7247), - [anon_sym_LBRACK] = ACTIONS(7247), - [anon_sym_EQ] = ACTIONS(7245), - [anon_sym_const] = ACTIONS(7245), - [anon_sym_constexpr] = ACTIONS(7247), - [anon_sym_volatile] = ACTIONS(7247), - [anon_sym_restrict] = ACTIONS(7247), - [anon_sym___restrict__] = ACTIONS(7247), - [anon_sym__Atomic] = ACTIONS(7247), - [anon_sym__Noreturn] = ACTIONS(7247), - [anon_sym_noreturn] = ACTIONS(7247), - [anon_sym__Nonnull] = ACTIONS(7247), - [anon_sym_mutable] = ACTIONS(7247), - [anon_sym_constinit] = ACTIONS(7247), - [anon_sym_consteval] = ACTIONS(7247), - [anon_sym_alignas] = ACTIONS(7247), - [anon_sym__Alignas] = ACTIONS(7247), - [anon_sym_QMARK] = ACTIONS(7247), - [anon_sym_STAR_EQ] = ACTIONS(7247), - [anon_sym_SLASH_EQ] = ACTIONS(7247), - [anon_sym_PERCENT_EQ] = ACTIONS(7247), - [anon_sym_PLUS_EQ] = ACTIONS(7247), - [anon_sym_DASH_EQ] = ACTIONS(7247), - [anon_sym_LT_LT_EQ] = ACTIONS(7247), - [anon_sym_GT_GT_EQ] = ACTIONS(7245), - [anon_sym_AMP_EQ] = ACTIONS(7247), - [anon_sym_CARET_EQ] = ACTIONS(7247), - [anon_sym_PIPE_EQ] = ACTIONS(7247), - [anon_sym_and_eq] = ACTIONS(7247), - [anon_sym_or_eq] = ACTIONS(7247), - [anon_sym_xor_eq] = ACTIONS(7247), - [anon_sym_LT_EQ_GT] = ACTIONS(7247), - [anon_sym_or] = ACTIONS(7245), - [anon_sym_and] = ACTIONS(7245), - [anon_sym_bitor] = ACTIONS(7247), - [anon_sym_xor] = ACTIONS(7245), - [anon_sym_bitand] = ACTIONS(7247), - [anon_sym_not_eq] = ACTIONS(7247), - [anon_sym_DASH_DASH] = ACTIONS(7247), - [anon_sym_PLUS_PLUS] = ACTIONS(7247), - [anon_sym_DOT] = ACTIONS(7245), - [anon_sym_DOT_STAR] = ACTIONS(7247), - [anon_sym_DASH_GT] = ACTIONS(7247), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7247), - [anon_sym_override] = ACTIONS(7247), - [anon_sym_GT2] = ACTIONS(7247), - [anon_sym_requires] = ACTIONS(7247), - }, - [STATE(3056)] = { - [sym_argument_list] = STATE(5801), - [sym_initializer_list] = STATE(5650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(8219), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_RBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - }, - [STATE(3057)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7305), - [anon_sym_COMMA] = ACTIONS(7305), - [anon_sym_LPAREN2] = ACTIONS(7305), - [anon_sym_DASH] = ACTIONS(7303), - [anon_sym_PLUS] = ACTIONS(7303), - [anon_sym_STAR] = ACTIONS(7303), - [anon_sym_SLASH] = ACTIONS(7303), - [anon_sym_PERCENT] = ACTIONS(7303), - [anon_sym_PIPE_PIPE] = ACTIONS(7305), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE] = ACTIONS(7303), - [anon_sym_CARET] = ACTIONS(7303), - [anon_sym_AMP] = ACTIONS(7303), - [anon_sym_EQ_EQ] = ACTIONS(7305), - [anon_sym_BANG_EQ] = ACTIONS(7305), - [anon_sym_GT] = ACTIONS(7303), - [anon_sym_GT_EQ] = ACTIONS(7303), - [anon_sym_LT_EQ] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(7303), - [anon_sym_LT_LT] = ACTIONS(7303), - [anon_sym_GT_GT] = ACTIONS(7303), - [anon_sym___extension__] = ACTIONS(7305), - [anon_sym_LBRACE] = ACTIONS(7305), - [anon_sym_LBRACK] = ACTIONS(7305), - [anon_sym_EQ] = ACTIONS(7303), - [anon_sym_const] = ACTIONS(7303), - [anon_sym_constexpr] = ACTIONS(7305), - [anon_sym_volatile] = ACTIONS(7305), - [anon_sym_restrict] = ACTIONS(7305), - [anon_sym___restrict__] = ACTIONS(7305), - [anon_sym__Atomic] = ACTIONS(7305), - [anon_sym__Noreturn] = ACTIONS(7305), - [anon_sym_noreturn] = ACTIONS(7305), - [anon_sym__Nonnull] = ACTIONS(7305), - [anon_sym_mutable] = ACTIONS(7305), - [anon_sym_constinit] = ACTIONS(7305), - [anon_sym_consteval] = ACTIONS(7305), - [anon_sym_alignas] = ACTIONS(7305), - [anon_sym__Alignas] = ACTIONS(7305), - [anon_sym_QMARK] = ACTIONS(7305), - [anon_sym_STAR_EQ] = ACTIONS(7305), - [anon_sym_SLASH_EQ] = ACTIONS(7305), - [anon_sym_PERCENT_EQ] = ACTIONS(7305), - [anon_sym_PLUS_EQ] = ACTIONS(7305), - [anon_sym_DASH_EQ] = ACTIONS(7305), - [anon_sym_LT_LT_EQ] = ACTIONS(7305), - [anon_sym_GT_GT_EQ] = ACTIONS(7303), - [anon_sym_AMP_EQ] = ACTIONS(7305), - [anon_sym_CARET_EQ] = ACTIONS(7305), - [anon_sym_PIPE_EQ] = ACTIONS(7305), - [anon_sym_and_eq] = ACTIONS(7305), - [anon_sym_or_eq] = ACTIONS(7305), - [anon_sym_xor_eq] = ACTIONS(7305), - [anon_sym_LT_EQ_GT] = ACTIONS(7305), - [anon_sym_or] = ACTIONS(7303), - [anon_sym_and] = ACTIONS(7303), - [anon_sym_bitor] = ACTIONS(7305), - [anon_sym_xor] = ACTIONS(7303), - [anon_sym_bitand] = ACTIONS(7305), - [anon_sym_not_eq] = ACTIONS(7305), - [anon_sym_DASH_DASH] = ACTIONS(7305), - [anon_sym_PLUS_PLUS] = ACTIONS(7305), - [anon_sym_DOT] = ACTIONS(7303), - [anon_sym_DOT_STAR] = ACTIONS(7305), - [anon_sym_DASH_GT] = ACTIONS(7305), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7305), - [anon_sym_override] = ACTIONS(7305), - [anon_sym_GT2] = ACTIONS(7305), - [anon_sym_requires] = ACTIONS(7305), - }, - [STATE(3058)] = { - [sym_identifier] = ACTIONS(7271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7273), - [anon_sym_COMMA] = ACTIONS(7273), - [anon_sym_RPAREN] = ACTIONS(7273), - [anon_sym_LPAREN2] = ACTIONS(7273), - [anon_sym_DASH] = ACTIONS(7271), - [anon_sym_PLUS] = ACTIONS(7271), - [anon_sym_STAR] = ACTIONS(7273), - [anon_sym_SLASH] = ACTIONS(7271), - [anon_sym_PERCENT] = ACTIONS(7273), - [anon_sym_PIPE_PIPE] = ACTIONS(7273), - [anon_sym_AMP_AMP] = ACTIONS(7273), - [anon_sym_PIPE] = ACTIONS(7271), - [anon_sym_CARET] = ACTIONS(7273), - [anon_sym_AMP] = ACTIONS(7271), - [anon_sym_EQ_EQ] = ACTIONS(7273), - [anon_sym_BANG_EQ] = ACTIONS(7273), - [anon_sym_GT] = ACTIONS(7271), - [anon_sym_GT_EQ] = ACTIONS(7273), - [anon_sym_LT_EQ] = ACTIONS(7271), - [anon_sym_LT] = ACTIONS(7271), - [anon_sym_LT_LT] = ACTIONS(7273), - [anon_sym_GT_GT] = ACTIONS(7273), - [anon_sym_SEMI] = ACTIONS(7273), - [anon_sym___extension__] = ACTIONS(7271), - [anon_sym___attribute__] = ACTIONS(7271), - [anon_sym___attribute] = ACTIONS(7271), - [anon_sym_COLON] = ACTIONS(7271), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7273), - [anon_sym___based] = ACTIONS(7271), - [anon_sym_LBRACE] = ACTIONS(7273), - [anon_sym_RBRACE] = ACTIONS(7273), - [anon_sym_signed] = ACTIONS(7271), - [anon_sym_unsigned] = ACTIONS(7271), - [anon_sym_long] = ACTIONS(7271), - [anon_sym_short] = ACTIONS(7271), - [anon_sym_LBRACK] = ACTIONS(7273), - [anon_sym_const] = ACTIONS(7271), - [anon_sym_constexpr] = ACTIONS(7271), - [anon_sym_volatile] = ACTIONS(7271), - [anon_sym_restrict] = ACTIONS(7271), - [anon_sym___restrict__] = ACTIONS(7271), - [anon_sym__Atomic] = ACTIONS(7271), - [anon_sym__Noreturn] = ACTIONS(7271), - [anon_sym_noreturn] = ACTIONS(7271), - [anon_sym__Nonnull] = ACTIONS(7271), - [anon_sym_mutable] = ACTIONS(7271), - [anon_sym_constinit] = ACTIONS(7271), - [anon_sym_consteval] = ACTIONS(7271), - [anon_sym_alignas] = ACTIONS(7271), - [anon_sym__Alignas] = ACTIONS(7271), - [sym_primitive_type] = ACTIONS(7271), - [anon_sym_QMARK] = ACTIONS(7273), - [anon_sym_LT_EQ_GT] = ACTIONS(7273), - [anon_sym_or] = ACTIONS(7271), - [anon_sym_and] = ACTIONS(7271), - [anon_sym_bitor] = ACTIONS(7271), - [anon_sym_xor] = ACTIONS(7271), - [anon_sym_bitand] = ACTIONS(7271), - [anon_sym_not_eq] = ACTIONS(7271), - [anon_sym_DASH_DASH] = ACTIONS(7273), - [anon_sym_PLUS_PLUS] = ACTIONS(7273), - [anon_sym_DOT] = ACTIONS(7271), - [anon_sym_DOT_STAR] = ACTIONS(7273), - [anon_sym_DASH_GT] = ACTIONS(7273), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7271), - [anon_sym_override] = ACTIONS(7271), - [anon_sym_requires] = ACTIONS(7271), - [anon_sym_COLON_RBRACK] = ACTIONS(7273), - }, - [STATE(3059)] = { - [sym_identifier] = ACTIONS(8671), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8673), - [anon_sym_COMMA] = ACTIONS(8673), - [anon_sym_RPAREN] = ACTIONS(8673), - [aux_sym_preproc_if_token2] = ACTIONS(8673), - [aux_sym_preproc_else_token1] = ACTIONS(8673), - [aux_sym_preproc_elif_token1] = ACTIONS(8671), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8673), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8673), - [anon_sym_LPAREN2] = ACTIONS(8673), - [anon_sym_DASH] = ACTIONS(8671), - [anon_sym_PLUS] = ACTIONS(8671), - [anon_sym_STAR] = ACTIONS(8671), - [anon_sym_SLASH] = ACTIONS(8671), - [anon_sym_PERCENT] = ACTIONS(8671), - [anon_sym_PIPE_PIPE] = ACTIONS(8673), - [anon_sym_AMP_AMP] = ACTIONS(8673), - [anon_sym_PIPE] = ACTIONS(8671), - [anon_sym_CARET] = ACTIONS(8671), - [anon_sym_AMP] = ACTIONS(8671), - [anon_sym_EQ_EQ] = ACTIONS(8673), - [anon_sym_BANG_EQ] = ACTIONS(8673), - [anon_sym_GT] = ACTIONS(8671), - [anon_sym_GT_EQ] = ACTIONS(8673), - [anon_sym_LT_EQ] = ACTIONS(8671), - [anon_sym_LT] = ACTIONS(8671), - [anon_sym_LT_LT] = ACTIONS(8671), - [anon_sym_GT_GT] = ACTIONS(8671), - [anon_sym_SEMI] = ACTIONS(8673), - [anon_sym___attribute__] = ACTIONS(8671), - [anon_sym___attribute] = ACTIONS(8671), - [anon_sym_COLON] = ACTIONS(8671), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8673), - [anon_sym_LBRACE] = ACTIONS(8673), - [anon_sym_RBRACE] = ACTIONS(8673), - [anon_sym_LBRACK] = ACTIONS(8671), - [anon_sym_RBRACK] = ACTIONS(8673), - [anon_sym_EQ] = ACTIONS(8671), - [anon_sym_QMARK] = ACTIONS(8673), - [anon_sym_STAR_EQ] = ACTIONS(8673), - [anon_sym_SLASH_EQ] = ACTIONS(8673), - [anon_sym_PERCENT_EQ] = ACTIONS(8673), - [anon_sym_PLUS_EQ] = ACTIONS(8673), - [anon_sym_DASH_EQ] = ACTIONS(8673), - [anon_sym_LT_LT_EQ] = ACTIONS(8673), - [anon_sym_GT_GT_EQ] = ACTIONS(8673), - [anon_sym_AMP_EQ] = ACTIONS(8673), - [anon_sym_CARET_EQ] = ACTIONS(8673), - [anon_sym_PIPE_EQ] = ACTIONS(8673), - [anon_sym_and_eq] = ACTIONS(8671), - [anon_sym_or_eq] = ACTIONS(8671), - [anon_sym_xor_eq] = ACTIONS(8671), - [anon_sym_LT_EQ_GT] = ACTIONS(8673), - [anon_sym_or] = ACTIONS(8671), - [anon_sym_and] = ACTIONS(8671), - [anon_sym_bitor] = ACTIONS(8671), - [anon_sym_xor] = ACTIONS(8671), - [anon_sym_bitand] = ACTIONS(8671), - [anon_sym_not_eq] = ACTIONS(8671), - [anon_sym_DASH_DASH] = ACTIONS(8673), - [anon_sym_PLUS_PLUS] = ACTIONS(8673), - [anon_sym_asm] = ACTIONS(8671), - [anon_sym___asm__] = ACTIONS(8671), - [anon_sym___asm] = ACTIONS(8671), - [anon_sym_DOT] = ACTIONS(8671), - [anon_sym_DOT_STAR] = ACTIONS(8673), - [anon_sym_DASH_GT] = ACTIONS(8673), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(8671), - [anon_sym_COLON_RBRACK] = ACTIONS(8673), - }, - [STATE(3060)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7305), - [anon_sym_COMMA] = ACTIONS(7305), - [anon_sym_LPAREN2] = ACTIONS(7305), - [anon_sym_DASH] = ACTIONS(7303), - [anon_sym_PLUS] = ACTIONS(7303), - [anon_sym_STAR] = ACTIONS(7303), - [anon_sym_SLASH] = ACTIONS(7303), - [anon_sym_PERCENT] = ACTIONS(7303), - [anon_sym_PIPE_PIPE] = ACTIONS(7305), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE] = ACTIONS(7303), - [anon_sym_CARET] = ACTIONS(7303), - [anon_sym_AMP] = ACTIONS(7303), - [anon_sym_EQ_EQ] = ACTIONS(7305), - [anon_sym_BANG_EQ] = ACTIONS(7305), - [anon_sym_GT] = ACTIONS(7303), - [anon_sym_GT_EQ] = ACTIONS(7305), - [anon_sym_LT_EQ] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(7303), - [anon_sym_LT_LT] = ACTIONS(7303), - [anon_sym_GT_GT] = ACTIONS(7303), - [anon_sym___extension__] = ACTIONS(7305), - [anon_sym_LBRACE] = ACTIONS(7305), - [anon_sym_LBRACK] = ACTIONS(7305), - [anon_sym_RBRACK] = ACTIONS(7305), - [anon_sym_EQ] = ACTIONS(7303), - [anon_sym_const] = ACTIONS(7303), - [anon_sym_constexpr] = ACTIONS(7305), - [anon_sym_volatile] = ACTIONS(7305), - [anon_sym_restrict] = ACTIONS(7305), - [anon_sym___restrict__] = ACTIONS(7305), - [anon_sym__Atomic] = ACTIONS(7305), - [anon_sym__Noreturn] = ACTIONS(7305), - [anon_sym_noreturn] = ACTIONS(7305), - [anon_sym__Nonnull] = ACTIONS(7305), - [anon_sym_mutable] = ACTIONS(7305), - [anon_sym_constinit] = ACTIONS(7305), - [anon_sym_consteval] = ACTIONS(7305), - [anon_sym_alignas] = ACTIONS(7305), - [anon_sym__Alignas] = ACTIONS(7305), - [anon_sym_QMARK] = ACTIONS(7305), - [anon_sym_STAR_EQ] = ACTIONS(7305), - [anon_sym_SLASH_EQ] = ACTIONS(7305), - [anon_sym_PERCENT_EQ] = ACTIONS(7305), - [anon_sym_PLUS_EQ] = ACTIONS(7305), - [anon_sym_DASH_EQ] = ACTIONS(7305), - [anon_sym_LT_LT_EQ] = ACTIONS(7305), - [anon_sym_GT_GT_EQ] = ACTIONS(7305), - [anon_sym_AMP_EQ] = ACTIONS(7305), - [anon_sym_CARET_EQ] = ACTIONS(7305), - [anon_sym_PIPE_EQ] = ACTIONS(7305), - [anon_sym_and_eq] = ACTIONS(7305), - [anon_sym_or_eq] = ACTIONS(7305), - [anon_sym_xor_eq] = ACTIONS(7305), - [anon_sym_LT_EQ_GT] = ACTIONS(7305), - [anon_sym_or] = ACTIONS(7303), - [anon_sym_and] = ACTIONS(7303), - [anon_sym_bitor] = ACTIONS(7305), - [anon_sym_xor] = ACTIONS(7303), - [anon_sym_bitand] = ACTIONS(7305), - [anon_sym_not_eq] = ACTIONS(7305), - [anon_sym_DASH_DASH] = ACTIONS(7305), - [anon_sym_PLUS_PLUS] = ACTIONS(7305), - [anon_sym_DOT] = ACTIONS(7303), - [anon_sym_DOT_STAR] = ACTIONS(7305), - [anon_sym_DASH_GT] = ACTIONS(7305), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7305), - [anon_sym_override] = ACTIONS(7305), - [anon_sym_requires] = ACTIONS(7305), - }, - [STATE(3061)] = { - [sym_identifier] = ACTIONS(7275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7277), - [anon_sym_COMMA] = ACTIONS(7277), - [anon_sym_RPAREN] = ACTIONS(7277), - [anon_sym_LPAREN2] = ACTIONS(7277), - [anon_sym_DASH] = ACTIONS(7275), - [anon_sym_PLUS] = ACTIONS(7275), - [anon_sym_STAR] = ACTIONS(7277), - [anon_sym_SLASH] = ACTIONS(7275), - [anon_sym_PERCENT] = ACTIONS(7277), - [anon_sym_PIPE_PIPE] = ACTIONS(7277), - [anon_sym_AMP_AMP] = ACTIONS(7277), - [anon_sym_PIPE] = ACTIONS(7275), - [anon_sym_CARET] = ACTIONS(7277), - [anon_sym_AMP] = ACTIONS(7275), - [anon_sym_EQ_EQ] = ACTIONS(7277), - [anon_sym_BANG_EQ] = ACTIONS(7277), - [anon_sym_GT] = ACTIONS(7275), - [anon_sym_GT_EQ] = ACTIONS(7277), - [anon_sym_LT_EQ] = ACTIONS(7275), - [anon_sym_LT] = ACTIONS(7275), - [anon_sym_LT_LT] = ACTIONS(7277), - [anon_sym_GT_GT] = ACTIONS(7277), - [anon_sym_SEMI] = ACTIONS(7277), - [anon_sym___extension__] = ACTIONS(7275), - [anon_sym___attribute__] = ACTIONS(7275), - [anon_sym___attribute] = ACTIONS(7275), - [anon_sym_COLON] = ACTIONS(7275), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7277), - [anon_sym___based] = ACTIONS(7275), - [anon_sym_LBRACE] = ACTIONS(7277), - [anon_sym_RBRACE] = ACTIONS(7277), - [anon_sym_signed] = ACTIONS(7275), - [anon_sym_unsigned] = ACTIONS(7275), - [anon_sym_long] = ACTIONS(7275), - [anon_sym_short] = ACTIONS(7275), - [anon_sym_LBRACK] = ACTIONS(7277), - [anon_sym_const] = ACTIONS(7275), - [anon_sym_constexpr] = ACTIONS(7275), - [anon_sym_volatile] = ACTIONS(7275), - [anon_sym_restrict] = ACTIONS(7275), - [anon_sym___restrict__] = ACTIONS(7275), - [anon_sym__Atomic] = ACTIONS(7275), - [anon_sym__Noreturn] = ACTIONS(7275), - [anon_sym_noreturn] = ACTIONS(7275), - [anon_sym__Nonnull] = ACTIONS(7275), - [anon_sym_mutable] = ACTIONS(7275), - [anon_sym_constinit] = ACTIONS(7275), - [anon_sym_consteval] = ACTIONS(7275), - [anon_sym_alignas] = ACTIONS(7275), - [anon_sym__Alignas] = ACTIONS(7275), - [sym_primitive_type] = ACTIONS(7275), - [anon_sym_QMARK] = ACTIONS(7277), - [anon_sym_LT_EQ_GT] = ACTIONS(7277), - [anon_sym_or] = ACTIONS(7275), - [anon_sym_and] = ACTIONS(7275), - [anon_sym_bitor] = ACTIONS(7275), - [anon_sym_xor] = ACTIONS(7275), - [anon_sym_bitand] = ACTIONS(7275), - [anon_sym_not_eq] = ACTIONS(7275), - [anon_sym_DASH_DASH] = ACTIONS(7277), - [anon_sym_PLUS_PLUS] = ACTIONS(7277), - [anon_sym_DOT] = ACTIONS(7275), - [anon_sym_DOT_STAR] = ACTIONS(7277), - [anon_sym_DASH_GT] = ACTIONS(7277), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7275), - [anon_sym_override] = ACTIONS(7275), - [anon_sym_requires] = ACTIONS(7275), - [anon_sym_COLON_RBRACK] = ACTIONS(7277), - }, - [STATE(3062)] = { - [sym_argument_list] = STATE(5660), - [sym_initializer_list] = STATE(5664), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(8274), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6798), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6798), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(6800), - }, - [STATE(3063)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7339), - [anon_sym_COMMA] = ACTIONS(7339), - [anon_sym_LPAREN2] = ACTIONS(7339), - [anon_sym_DASH] = ACTIONS(7337), - [anon_sym_PLUS] = ACTIONS(7337), - [anon_sym_STAR] = ACTIONS(7337), - [anon_sym_SLASH] = ACTIONS(7337), - [anon_sym_PERCENT] = ACTIONS(7337), - [anon_sym_PIPE_PIPE] = ACTIONS(7339), - [anon_sym_AMP_AMP] = ACTIONS(7339), - [anon_sym_PIPE] = ACTIONS(7337), - [anon_sym_CARET] = ACTIONS(7337), - [anon_sym_AMP] = ACTIONS(7337), - [anon_sym_EQ_EQ] = ACTIONS(7339), - [anon_sym_BANG_EQ] = ACTIONS(7339), - [anon_sym_GT] = ACTIONS(7337), - [anon_sym_GT_EQ] = ACTIONS(7339), - [anon_sym_LT_EQ] = ACTIONS(7337), - [anon_sym_LT] = ACTIONS(7337), - [anon_sym_LT_LT] = ACTIONS(7337), - [anon_sym_GT_GT] = ACTIONS(7337), - [anon_sym___extension__] = ACTIONS(7339), - [anon_sym_LBRACE] = ACTIONS(7339), - [anon_sym_LBRACK] = ACTIONS(7339), - [anon_sym_RBRACK] = ACTIONS(7339), - [anon_sym_EQ] = ACTIONS(7337), - [anon_sym_const] = ACTIONS(7337), - [anon_sym_constexpr] = ACTIONS(7339), - [anon_sym_volatile] = ACTIONS(7339), - [anon_sym_restrict] = ACTIONS(7339), - [anon_sym___restrict__] = ACTIONS(7339), - [anon_sym__Atomic] = ACTIONS(7339), - [anon_sym__Noreturn] = ACTIONS(7339), - [anon_sym_noreturn] = ACTIONS(7339), - [anon_sym__Nonnull] = ACTIONS(7339), - [anon_sym_mutable] = ACTIONS(7339), - [anon_sym_constinit] = ACTIONS(7339), - [anon_sym_consteval] = ACTIONS(7339), - [anon_sym_alignas] = ACTIONS(7339), - [anon_sym__Alignas] = ACTIONS(7339), - [anon_sym_QMARK] = ACTIONS(7339), - [anon_sym_STAR_EQ] = ACTIONS(7339), - [anon_sym_SLASH_EQ] = ACTIONS(7339), - [anon_sym_PERCENT_EQ] = ACTIONS(7339), - [anon_sym_PLUS_EQ] = ACTIONS(7339), - [anon_sym_DASH_EQ] = ACTIONS(7339), - [anon_sym_LT_LT_EQ] = ACTIONS(7339), - [anon_sym_GT_GT_EQ] = ACTIONS(7339), - [anon_sym_AMP_EQ] = ACTIONS(7339), - [anon_sym_CARET_EQ] = ACTIONS(7339), - [anon_sym_PIPE_EQ] = ACTIONS(7339), - [anon_sym_and_eq] = ACTIONS(7339), - [anon_sym_or_eq] = ACTIONS(7339), - [anon_sym_xor_eq] = ACTIONS(7339), - [anon_sym_LT_EQ_GT] = ACTIONS(7339), - [anon_sym_or] = ACTIONS(7337), - [anon_sym_and] = ACTIONS(7337), - [anon_sym_bitor] = ACTIONS(7339), - [anon_sym_xor] = ACTIONS(7337), - [anon_sym_bitand] = ACTIONS(7339), - [anon_sym_not_eq] = ACTIONS(7339), - [anon_sym_DASH_DASH] = ACTIONS(7339), - [anon_sym_PLUS_PLUS] = ACTIONS(7339), - [anon_sym_DOT] = ACTIONS(7337), - [anon_sym_DOT_STAR] = ACTIONS(7339), - [anon_sym_DASH_GT] = ACTIONS(7339), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7339), - [anon_sym_override] = ACTIONS(7339), - [anon_sym_requires] = ACTIONS(7339), - }, - [STATE(3064)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(7343), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(7341), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(7343), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7341), - [anon_sym_AMP] = ACTIONS(7341), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7341), - [anon_sym_GT_GT] = ACTIONS(7341), - [anon_sym___extension__] = ACTIONS(7343), - [anon_sym_LBRACE] = ACTIONS(7343), - [anon_sym_LBRACK] = ACTIONS(7343), - [anon_sym_RBRACK] = ACTIONS(7343), - [anon_sym_EQ] = ACTIONS(7341), - [anon_sym_const] = ACTIONS(7341), - [anon_sym_constexpr] = ACTIONS(7343), - [anon_sym_volatile] = ACTIONS(7343), - [anon_sym_restrict] = ACTIONS(7343), - [anon_sym___restrict__] = ACTIONS(7343), - [anon_sym__Atomic] = ACTIONS(7343), - [anon_sym__Noreturn] = ACTIONS(7343), - [anon_sym_noreturn] = ACTIONS(7343), - [anon_sym__Nonnull] = ACTIONS(7343), - [anon_sym_mutable] = ACTIONS(7343), - [anon_sym_constinit] = ACTIONS(7343), - [anon_sym_consteval] = ACTIONS(7343), - [anon_sym_alignas] = ACTIONS(7343), - [anon_sym__Alignas] = ACTIONS(7343), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_STAR_EQ] = ACTIONS(7343), - [anon_sym_SLASH_EQ] = ACTIONS(7343), - [anon_sym_PERCENT_EQ] = ACTIONS(7343), - [anon_sym_PLUS_EQ] = ACTIONS(7343), - [anon_sym_DASH_EQ] = ACTIONS(7343), - [anon_sym_LT_LT_EQ] = ACTIONS(7343), - [anon_sym_GT_GT_EQ] = ACTIONS(7343), - [anon_sym_AMP_EQ] = ACTIONS(7343), - [anon_sym_CARET_EQ] = ACTIONS(7343), - [anon_sym_PIPE_EQ] = ACTIONS(7343), - [anon_sym_and_eq] = ACTIONS(7343), - [anon_sym_or_eq] = ACTIONS(7343), - [anon_sym_xor_eq] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7341), - [anon_sym_and] = ACTIONS(7341), - [anon_sym_bitor] = ACTIONS(7343), - [anon_sym_xor] = ACTIONS(7341), - [anon_sym_bitand] = ACTIONS(7343), - [anon_sym_not_eq] = ACTIONS(7343), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7343), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7343), - [anon_sym_override] = ACTIONS(7343), - [anon_sym_requires] = ACTIONS(7343), - }, - [STATE(3065)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7347), - [anon_sym_COMMA] = ACTIONS(7347), - [anon_sym_LPAREN2] = ACTIONS(7347), - [anon_sym_DASH] = ACTIONS(7345), - [anon_sym_PLUS] = ACTIONS(7345), - [anon_sym_STAR] = ACTIONS(7345), - [anon_sym_SLASH] = ACTIONS(7345), - [anon_sym_PERCENT] = ACTIONS(7345), - [anon_sym_PIPE_PIPE] = ACTIONS(7347), - [anon_sym_AMP_AMP] = ACTIONS(7347), - [anon_sym_PIPE] = ACTIONS(7345), - [anon_sym_CARET] = ACTIONS(7345), - [anon_sym_AMP] = ACTIONS(7345), - [anon_sym_EQ_EQ] = ACTIONS(7347), - [anon_sym_BANG_EQ] = ACTIONS(7347), - [anon_sym_GT] = ACTIONS(7345), - [anon_sym_GT_EQ] = ACTIONS(7347), - [anon_sym_LT_EQ] = ACTIONS(7345), - [anon_sym_LT] = ACTIONS(7345), - [anon_sym_LT_LT] = ACTIONS(7345), - [anon_sym_GT_GT] = ACTIONS(7345), - [anon_sym___extension__] = ACTIONS(7347), - [anon_sym_LBRACE] = ACTIONS(7347), - [anon_sym_LBRACK] = ACTIONS(7347), - [anon_sym_RBRACK] = ACTIONS(7347), - [anon_sym_EQ] = ACTIONS(7345), - [anon_sym_const] = ACTIONS(7345), - [anon_sym_constexpr] = ACTIONS(7347), - [anon_sym_volatile] = ACTIONS(7347), - [anon_sym_restrict] = ACTIONS(7347), - [anon_sym___restrict__] = ACTIONS(7347), - [anon_sym__Atomic] = ACTIONS(7347), - [anon_sym__Noreturn] = ACTIONS(7347), - [anon_sym_noreturn] = ACTIONS(7347), - [anon_sym__Nonnull] = ACTIONS(7347), - [anon_sym_mutable] = ACTIONS(7347), - [anon_sym_constinit] = ACTIONS(7347), - [anon_sym_consteval] = ACTIONS(7347), - [anon_sym_alignas] = ACTIONS(7347), - [anon_sym__Alignas] = ACTIONS(7347), - [anon_sym_QMARK] = ACTIONS(7347), - [anon_sym_STAR_EQ] = ACTIONS(7347), - [anon_sym_SLASH_EQ] = ACTIONS(7347), - [anon_sym_PERCENT_EQ] = ACTIONS(7347), - [anon_sym_PLUS_EQ] = ACTIONS(7347), - [anon_sym_DASH_EQ] = ACTIONS(7347), - [anon_sym_LT_LT_EQ] = ACTIONS(7347), - [anon_sym_GT_GT_EQ] = ACTIONS(7347), - [anon_sym_AMP_EQ] = ACTIONS(7347), - [anon_sym_CARET_EQ] = ACTIONS(7347), - [anon_sym_PIPE_EQ] = ACTIONS(7347), - [anon_sym_and_eq] = ACTIONS(7347), - [anon_sym_or_eq] = ACTIONS(7347), - [anon_sym_xor_eq] = ACTIONS(7347), - [anon_sym_LT_EQ_GT] = ACTIONS(7347), - [anon_sym_or] = ACTIONS(7345), - [anon_sym_and] = ACTIONS(7345), - [anon_sym_bitor] = ACTIONS(7347), - [anon_sym_xor] = ACTIONS(7345), - [anon_sym_bitand] = ACTIONS(7347), - [anon_sym_not_eq] = ACTIONS(7347), - [anon_sym_DASH_DASH] = ACTIONS(7347), - [anon_sym_PLUS_PLUS] = ACTIONS(7347), - [anon_sym_DOT] = ACTIONS(7345), - [anon_sym_DOT_STAR] = ACTIONS(7347), - [anon_sym_DASH_GT] = ACTIONS(7347), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7347), - [anon_sym_override] = ACTIONS(7347), - [anon_sym_requires] = ACTIONS(7347), - }, - [STATE(3066)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7353), - [anon_sym_COMMA] = ACTIONS(7353), - [anon_sym_LPAREN2] = ACTIONS(7353), - [anon_sym_DASH] = ACTIONS(7351), - [anon_sym_PLUS] = ACTIONS(7351), - [anon_sym_STAR] = ACTIONS(7351), - [anon_sym_SLASH] = ACTIONS(7351), - [anon_sym_PERCENT] = ACTIONS(7351), - [anon_sym_PIPE_PIPE] = ACTIONS(7353), - [anon_sym_AMP_AMP] = ACTIONS(7353), - [anon_sym_PIPE] = ACTIONS(7351), - [anon_sym_CARET] = ACTIONS(7351), - [anon_sym_AMP] = ACTIONS(7351), - [anon_sym_EQ_EQ] = ACTIONS(7353), - [anon_sym_BANG_EQ] = ACTIONS(7353), - [anon_sym_GT] = ACTIONS(7351), - [anon_sym_GT_EQ] = ACTIONS(7353), - [anon_sym_LT_EQ] = ACTIONS(7351), - [anon_sym_LT] = ACTIONS(7351), - [anon_sym_LT_LT] = ACTIONS(7351), - [anon_sym_GT_GT] = ACTIONS(7351), - [anon_sym___extension__] = ACTIONS(7353), - [anon_sym_LBRACE] = ACTIONS(7353), - [anon_sym_LBRACK] = ACTIONS(7353), - [anon_sym_RBRACK] = ACTIONS(7353), - [anon_sym_EQ] = ACTIONS(7351), - [anon_sym_const] = ACTIONS(7351), - [anon_sym_constexpr] = ACTIONS(7353), - [anon_sym_volatile] = ACTIONS(7353), - [anon_sym_restrict] = ACTIONS(7353), - [anon_sym___restrict__] = ACTIONS(7353), - [anon_sym__Atomic] = ACTIONS(7353), - [anon_sym__Noreturn] = ACTIONS(7353), - [anon_sym_noreturn] = ACTIONS(7353), - [anon_sym__Nonnull] = ACTIONS(7353), - [anon_sym_mutable] = ACTIONS(7353), - [anon_sym_constinit] = ACTIONS(7353), - [anon_sym_consteval] = ACTIONS(7353), - [anon_sym_alignas] = ACTIONS(7353), - [anon_sym__Alignas] = ACTIONS(7353), - [anon_sym_QMARK] = ACTIONS(7353), - [anon_sym_STAR_EQ] = ACTIONS(7353), - [anon_sym_SLASH_EQ] = ACTIONS(7353), - [anon_sym_PERCENT_EQ] = ACTIONS(7353), - [anon_sym_PLUS_EQ] = ACTIONS(7353), - [anon_sym_DASH_EQ] = ACTIONS(7353), - [anon_sym_LT_LT_EQ] = ACTIONS(7353), - [anon_sym_GT_GT_EQ] = ACTIONS(7353), - [anon_sym_AMP_EQ] = ACTIONS(7353), - [anon_sym_CARET_EQ] = ACTIONS(7353), - [anon_sym_PIPE_EQ] = ACTIONS(7353), - [anon_sym_and_eq] = ACTIONS(7353), - [anon_sym_or_eq] = ACTIONS(7353), - [anon_sym_xor_eq] = ACTIONS(7353), - [anon_sym_LT_EQ_GT] = ACTIONS(7353), - [anon_sym_or] = ACTIONS(7351), - [anon_sym_and] = ACTIONS(7351), - [anon_sym_bitor] = ACTIONS(7353), - [anon_sym_xor] = ACTIONS(7351), - [anon_sym_bitand] = ACTIONS(7353), - [anon_sym_not_eq] = ACTIONS(7353), - [anon_sym_DASH_DASH] = ACTIONS(7353), - [anon_sym_PLUS_PLUS] = ACTIONS(7353), - [anon_sym_DOT] = ACTIONS(7351), - [anon_sym_DOT_STAR] = ACTIONS(7353), - [anon_sym_DASH_GT] = ACTIONS(7353), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7353), - [anon_sym_override] = ACTIONS(7353), - [anon_sym_requires] = ACTIONS(7353), - }, - [STATE(3067)] = { - [sym_identifier] = ACTIONS(7303), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7305), - [anon_sym_COMMA] = ACTIONS(7305), - [anon_sym_RPAREN] = ACTIONS(7305), - [anon_sym_LPAREN2] = ACTIONS(7305), - [anon_sym_DASH] = ACTIONS(7303), - [anon_sym_PLUS] = ACTIONS(7303), - [anon_sym_STAR] = ACTIONS(7305), - [anon_sym_SLASH] = ACTIONS(7303), - [anon_sym_PERCENT] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7305), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE] = ACTIONS(7303), - [anon_sym_CARET] = ACTIONS(7305), - [anon_sym_AMP] = ACTIONS(7303), - [anon_sym_EQ_EQ] = ACTIONS(7305), - [anon_sym_BANG_EQ] = ACTIONS(7305), - [anon_sym_GT] = ACTIONS(7303), - [anon_sym_GT_EQ] = ACTIONS(7305), - [anon_sym_LT_EQ] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(7303), - [anon_sym_LT_LT] = ACTIONS(7305), - [anon_sym_GT_GT] = ACTIONS(7305), - [anon_sym_SEMI] = ACTIONS(7305), - [anon_sym___extension__] = ACTIONS(7303), - [anon_sym___attribute__] = ACTIONS(7303), - [anon_sym___attribute] = ACTIONS(7303), - [anon_sym_COLON] = ACTIONS(7303), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7305), - [anon_sym___based] = ACTIONS(7303), - [anon_sym_LBRACE] = ACTIONS(7305), - [anon_sym_RBRACE] = ACTIONS(7305), - [anon_sym_signed] = ACTIONS(7303), - [anon_sym_unsigned] = ACTIONS(7303), - [anon_sym_long] = ACTIONS(7303), - [anon_sym_short] = ACTIONS(7303), - [anon_sym_LBRACK] = ACTIONS(7305), - [anon_sym_const] = ACTIONS(7303), - [anon_sym_constexpr] = ACTIONS(7303), - [anon_sym_volatile] = ACTIONS(7303), - [anon_sym_restrict] = ACTIONS(7303), - [anon_sym___restrict__] = ACTIONS(7303), - [anon_sym__Atomic] = ACTIONS(7303), - [anon_sym__Noreturn] = ACTIONS(7303), - [anon_sym_noreturn] = ACTIONS(7303), - [anon_sym__Nonnull] = ACTIONS(7303), - [anon_sym_mutable] = ACTIONS(7303), - [anon_sym_constinit] = ACTIONS(7303), - [anon_sym_consteval] = ACTIONS(7303), - [anon_sym_alignas] = ACTIONS(7303), - [anon_sym__Alignas] = ACTIONS(7303), - [sym_primitive_type] = ACTIONS(7303), - [anon_sym_QMARK] = ACTIONS(7305), - [anon_sym_LT_EQ_GT] = ACTIONS(7305), - [anon_sym_or] = ACTIONS(7303), - [anon_sym_and] = ACTIONS(7303), - [anon_sym_bitor] = ACTIONS(7303), - [anon_sym_xor] = ACTIONS(7303), - [anon_sym_bitand] = ACTIONS(7303), - [anon_sym_not_eq] = ACTIONS(7303), - [anon_sym_DASH_DASH] = ACTIONS(7305), - [anon_sym_PLUS_PLUS] = ACTIONS(7305), - [anon_sym_DOT] = ACTIONS(7303), - [anon_sym_DOT_STAR] = ACTIONS(7305), - [anon_sym_DASH_GT] = ACTIONS(7305), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7303), - [anon_sym_override] = ACTIONS(7303), - [anon_sym_requires] = ACTIONS(7303), - [anon_sym_COLON_RBRACK] = ACTIONS(7305), - }, - [STATE(3068)] = { - [sym_identifier] = ACTIONS(8675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8677), - [anon_sym_COMMA] = ACTIONS(8677), - [anon_sym_RPAREN] = ACTIONS(8677), - [aux_sym_preproc_if_token2] = ACTIONS(8677), - [aux_sym_preproc_else_token1] = ACTIONS(8677), - [aux_sym_preproc_elif_token1] = ACTIONS(8675), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8677), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8677), - [anon_sym_LPAREN2] = ACTIONS(8677), - [anon_sym_DASH] = ACTIONS(8675), - [anon_sym_PLUS] = ACTIONS(8675), - [anon_sym_STAR] = ACTIONS(8675), - [anon_sym_SLASH] = ACTIONS(8675), - [anon_sym_PERCENT] = ACTIONS(8675), - [anon_sym_PIPE_PIPE] = ACTIONS(8677), - [anon_sym_AMP_AMP] = ACTIONS(8677), - [anon_sym_PIPE] = ACTIONS(8675), - [anon_sym_CARET] = ACTIONS(8675), - [anon_sym_AMP] = ACTIONS(8675), - [anon_sym_EQ_EQ] = ACTIONS(8677), - [anon_sym_BANG_EQ] = ACTIONS(8677), - [anon_sym_GT] = ACTIONS(8675), - [anon_sym_GT_EQ] = ACTIONS(8677), - [anon_sym_LT_EQ] = ACTIONS(8675), - [anon_sym_LT] = ACTIONS(8675), - [anon_sym_LT_LT] = ACTIONS(8675), - [anon_sym_GT_GT] = ACTIONS(8675), - [anon_sym_SEMI] = ACTIONS(8677), - [anon_sym___attribute__] = ACTIONS(8675), - [anon_sym___attribute] = ACTIONS(8675), - [anon_sym_COLON] = ACTIONS(8675), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8677), - [anon_sym_LBRACE] = ACTIONS(8677), - [anon_sym_RBRACE] = ACTIONS(8677), - [anon_sym_LBRACK] = ACTIONS(8675), - [anon_sym_RBRACK] = ACTIONS(8677), - [anon_sym_EQ] = ACTIONS(8675), - [anon_sym_QMARK] = ACTIONS(8677), - [anon_sym_STAR_EQ] = ACTIONS(8677), - [anon_sym_SLASH_EQ] = ACTIONS(8677), - [anon_sym_PERCENT_EQ] = ACTIONS(8677), - [anon_sym_PLUS_EQ] = ACTIONS(8677), - [anon_sym_DASH_EQ] = ACTIONS(8677), - [anon_sym_LT_LT_EQ] = ACTIONS(8677), - [anon_sym_GT_GT_EQ] = ACTIONS(8677), - [anon_sym_AMP_EQ] = ACTIONS(8677), - [anon_sym_CARET_EQ] = ACTIONS(8677), - [anon_sym_PIPE_EQ] = ACTIONS(8677), - [anon_sym_and_eq] = ACTIONS(8675), - [anon_sym_or_eq] = ACTIONS(8675), - [anon_sym_xor_eq] = ACTIONS(8675), - [anon_sym_LT_EQ_GT] = ACTIONS(8677), - [anon_sym_or] = ACTIONS(8675), - [anon_sym_and] = ACTIONS(8675), - [anon_sym_bitor] = ACTIONS(8675), - [anon_sym_xor] = ACTIONS(8675), - [anon_sym_bitand] = ACTIONS(8675), - [anon_sym_not_eq] = ACTIONS(8675), - [anon_sym_DASH_DASH] = ACTIONS(8677), - [anon_sym_PLUS_PLUS] = ACTIONS(8677), - [anon_sym_asm] = ACTIONS(8675), - [anon_sym___asm__] = ACTIONS(8675), - [anon_sym___asm] = ACTIONS(8675), - [anon_sym_DOT] = ACTIONS(8675), - [anon_sym_DOT_STAR] = ACTIONS(8677), - [anon_sym_DASH_GT] = ACTIONS(8677), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(8675), - [anon_sym_COLON_RBRACK] = ACTIONS(8677), - }, - [STATE(3069)] = { - [sym_identifier] = ACTIONS(7287), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), - [anon_sym_COMMA] = ACTIONS(7289), - [anon_sym_RPAREN] = ACTIONS(7289), - [anon_sym_LPAREN2] = ACTIONS(7289), - [anon_sym_DASH] = ACTIONS(7287), - [anon_sym_PLUS] = ACTIONS(7287), - [anon_sym_STAR] = ACTIONS(7289), - [anon_sym_SLASH] = ACTIONS(7287), - [anon_sym_PERCENT] = ACTIONS(7289), - [anon_sym_PIPE_PIPE] = ACTIONS(7289), - [anon_sym_AMP_AMP] = ACTIONS(7289), - [anon_sym_PIPE] = ACTIONS(7287), - [anon_sym_CARET] = ACTIONS(7289), - [anon_sym_AMP] = ACTIONS(7287), - [anon_sym_EQ_EQ] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7289), - [anon_sym_GT] = ACTIONS(7287), - [anon_sym_GT_EQ] = ACTIONS(7289), - [anon_sym_LT_EQ] = ACTIONS(7287), - [anon_sym_LT] = ACTIONS(7287), - [anon_sym_LT_LT] = ACTIONS(7289), - [anon_sym_GT_GT] = ACTIONS(7289), - [anon_sym_SEMI] = ACTIONS(7289), - [anon_sym___extension__] = ACTIONS(7287), - [anon_sym___attribute__] = ACTIONS(7287), - [anon_sym___attribute] = ACTIONS(7287), - [anon_sym_COLON] = ACTIONS(7287), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7289), - [anon_sym___based] = ACTIONS(7287), - [anon_sym_LBRACE] = ACTIONS(7289), - [anon_sym_RBRACE] = ACTIONS(7289), - [anon_sym_signed] = ACTIONS(7287), - [anon_sym_unsigned] = ACTIONS(7287), - [anon_sym_long] = ACTIONS(7287), - [anon_sym_short] = ACTIONS(7287), - [anon_sym_LBRACK] = ACTIONS(7289), - [anon_sym_const] = ACTIONS(7287), - [anon_sym_constexpr] = ACTIONS(7287), - [anon_sym_volatile] = ACTIONS(7287), - [anon_sym_restrict] = ACTIONS(7287), - [anon_sym___restrict__] = ACTIONS(7287), - [anon_sym__Atomic] = ACTIONS(7287), - [anon_sym__Noreturn] = ACTIONS(7287), - [anon_sym_noreturn] = ACTIONS(7287), - [anon_sym__Nonnull] = ACTIONS(7287), - [anon_sym_mutable] = ACTIONS(7287), - [anon_sym_constinit] = ACTIONS(7287), - [anon_sym_consteval] = ACTIONS(7287), - [anon_sym_alignas] = ACTIONS(7287), - [anon_sym__Alignas] = ACTIONS(7287), - [sym_primitive_type] = ACTIONS(7287), - [anon_sym_QMARK] = ACTIONS(7289), - [anon_sym_LT_EQ_GT] = ACTIONS(7289), - [anon_sym_or] = ACTIONS(7287), - [anon_sym_and] = ACTIONS(7287), - [anon_sym_bitor] = ACTIONS(7287), - [anon_sym_xor] = ACTIONS(7287), - [anon_sym_bitand] = ACTIONS(7287), - [anon_sym_not_eq] = ACTIONS(7287), - [anon_sym_DASH_DASH] = ACTIONS(7289), - [anon_sym_PLUS_PLUS] = ACTIONS(7289), - [anon_sym_DOT] = ACTIONS(7287), - [anon_sym_DOT_STAR] = ACTIONS(7289), - [anon_sym_DASH_GT] = ACTIONS(7289), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7287), - [anon_sym_override] = ACTIONS(7287), - [anon_sym_requires] = ACTIONS(7287), - [anon_sym_COLON_RBRACK] = ACTIONS(7289), - }, - [STATE(3070)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), - [anon_sym_COMMA] = ACTIONS(7361), - [anon_sym_LPAREN2] = ACTIONS(7361), - [anon_sym_DASH] = ACTIONS(7359), - [anon_sym_PLUS] = ACTIONS(7359), - [anon_sym_STAR] = ACTIONS(7359), - [anon_sym_SLASH] = ACTIONS(7359), - [anon_sym_PERCENT] = ACTIONS(7359), - [anon_sym_PIPE_PIPE] = ACTIONS(7361), - [anon_sym_AMP_AMP] = ACTIONS(7361), - [anon_sym_PIPE] = ACTIONS(7359), - [anon_sym_CARET] = ACTIONS(7359), - [anon_sym_AMP] = ACTIONS(7359), - [anon_sym_EQ_EQ] = ACTIONS(7361), - [anon_sym_BANG_EQ] = ACTIONS(7361), - [anon_sym_GT] = ACTIONS(7359), - [anon_sym_GT_EQ] = ACTIONS(7361), - [anon_sym_LT_EQ] = ACTIONS(7359), - [anon_sym_LT] = ACTIONS(7359), - [anon_sym_LT_LT] = ACTIONS(7359), - [anon_sym_GT_GT] = ACTIONS(7359), - [anon_sym___extension__] = ACTIONS(7361), - [anon_sym_LBRACE] = ACTIONS(7361), - [anon_sym_LBRACK] = ACTIONS(7361), - [anon_sym_RBRACK] = ACTIONS(7361), - [anon_sym_EQ] = ACTIONS(7359), - [anon_sym_const] = ACTIONS(7359), - [anon_sym_constexpr] = ACTIONS(7361), - [anon_sym_volatile] = ACTIONS(7361), - [anon_sym_restrict] = ACTIONS(7361), - [anon_sym___restrict__] = ACTIONS(7361), - [anon_sym__Atomic] = ACTIONS(7361), - [anon_sym__Noreturn] = ACTIONS(7361), - [anon_sym_noreturn] = ACTIONS(7361), - [anon_sym__Nonnull] = ACTIONS(7361), - [anon_sym_mutable] = ACTIONS(7361), - [anon_sym_constinit] = ACTIONS(7361), - [anon_sym_consteval] = ACTIONS(7361), - [anon_sym_alignas] = ACTIONS(7361), - [anon_sym__Alignas] = ACTIONS(7361), - [anon_sym_QMARK] = ACTIONS(7361), - [anon_sym_STAR_EQ] = ACTIONS(7361), - [anon_sym_SLASH_EQ] = ACTIONS(7361), - [anon_sym_PERCENT_EQ] = ACTIONS(7361), - [anon_sym_PLUS_EQ] = ACTIONS(7361), - [anon_sym_DASH_EQ] = ACTIONS(7361), - [anon_sym_LT_LT_EQ] = ACTIONS(7361), - [anon_sym_GT_GT_EQ] = ACTIONS(7361), - [anon_sym_AMP_EQ] = ACTIONS(7361), - [anon_sym_CARET_EQ] = ACTIONS(7361), - [anon_sym_PIPE_EQ] = ACTIONS(7361), - [anon_sym_and_eq] = ACTIONS(7361), - [anon_sym_or_eq] = ACTIONS(7361), - [anon_sym_xor_eq] = ACTIONS(7361), - [anon_sym_LT_EQ_GT] = ACTIONS(7361), - [anon_sym_or] = ACTIONS(7359), - [anon_sym_and] = ACTIONS(7359), - [anon_sym_bitor] = ACTIONS(7361), - [anon_sym_xor] = ACTIONS(7359), - [anon_sym_bitand] = ACTIONS(7361), - [anon_sym_not_eq] = ACTIONS(7361), - [anon_sym_DASH_DASH] = ACTIONS(7361), - [anon_sym_PLUS_PLUS] = ACTIONS(7361), - [anon_sym_DOT] = ACTIONS(7359), - [anon_sym_DOT_STAR] = ACTIONS(7361), - [anon_sym_DASH_GT] = ACTIONS(7361), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7361), - [anon_sym_override] = ACTIONS(7361), - [anon_sym_requires] = ACTIONS(7361), - }, - [STATE(3071)] = { - [sym_argument_list] = STATE(5707), - [sym_initializer_list] = STATE(5684), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(8219), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_RBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - }, - [STATE(3072)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7377), - [anon_sym_COMMA] = ACTIONS(7377), - [anon_sym_LPAREN2] = ACTIONS(7377), - [anon_sym_DASH] = ACTIONS(7375), - [anon_sym_PLUS] = ACTIONS(7375), - [anon_sym_STAR] = ACTIONS(7375), - [anon_sym_SLASH] = ACTIONS(7375), - [anon_sym_PERCENT] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_AMP_AMP] = ACTIONS(7377), - [anon_sym_PIPE] = ACTIONS(7375), - [anon_sym_CARET] = ACTIONS(7375), - [anon_sym_AMP] = ACTIONS(7375), - [anon_sym_EQ_EQ] = ACTIONS(7377), - [anon_sym_BANG_EQ] = ACTIONS(7377), - [anon_sym_GT] = ACTIONS(7375), - [anon_sym_GT_EQ] = ACTIONS(7377), - [anon_sym_LT_EQ] = ACTIONS(7375), - [anon_sym_LT] = ACTIONS(7375), - [anon_sym_LT_LT] = ACTIONS(7375), - [anon_sym_GT_GT] = ACTIONS(7375), - [anon_sym___extension__] = ACTIONS(7377), - [anon_sym_LBRACE] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(7377), - [anon_sym_RBRACK] = ACTIONS(7377), - [anon_sym_EQ] = ACTIONS(7375), - [anon_sym_const] = ACTIONS(7375), - [anon_sym_constexpr] = ACTIONS(7377), - [anon_sym_volatile] = ACTIONS(7377), - [anon_sym_restrict] = ACTIONS(7377), - [anon_sym___restrict__] = ACTIONS(7377), - [anon_sym__Atomic] = ACTIONS(7377), - [anon_sym__Noreturn] = ACTIONS(7377), - [anon_sym_noreturn] = ACTIONS(7377), - [anon_sym__Nonnull] = ACTIONS(7377), - [anon_sym_mutable] = ACTIONS(7377), - [anon_sym_constinit] = ACTIONS(7377), - [anon_sym_consteval] = ACTIONS(7377), - [anon_sym_alignas] = ACTIONS(7377), - [anon_sym__Alignas] = ACTIONS(7377), - [anon_sym_QMARK] = ACTIONS(7377), - [anon_sym_STAR_EQ] = ACTIONS(7377), - [anon_sym_SLASH_EQ] = ACTIONS(7377), - [anon_sym_PERCENT_EQ] = ACTIONS(7377), - [anon_sym_PLUS_EQ] = ACTIONS(7377), - [anon_sym_DASH_EQ] = ACTIONS(7377), - [anon_sym_LT_LT_EQ] = ACTIONS(7377), - [anon_sym_GT_GT_EQ] = ACTIONS(7377), - [anon_sym_AMP_EQ] = ACTIONS(7377), - [anon_sym_CARET_EQ] = ACTIONS(7377), - [anon_sym_PIPE_EQ] = ACTIONS(7377), - [anon_sym_and_eq] = ACTIONS(7377), - [anon_sym_or_eq] = ACTIONS(7377), - [anon_sym_xor_eq] = ACTIONS(7377), - [anon_sym_LT_EQ_GT] = ACTIONS(7377), - [anon_sym_or] = ACTIONS(7375), - [anon_sym_and] = ACTIONS(7375), - [anon_sym_bitor] = ACTIONS(7377), - [anon_sym_xor] = ACTIONS(7375), - [anon_sym_bitand] = ACTIONS(7377), - [anon_sym_not_eq] = ACTIONS(7377), - [anon_sym_DASH_DASH] = ACTIONS(7377), - [anon_sym_PLUS_PLUS] = ACTIONS(7377), - [anon_sym_DOT] = ACTIONS(7375), - [anon_sym_DOT_STAR] = ACTIONS(7377), - [anon_sym_DASH_GT] = ACTIONS(7377), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7377), - [anon_sym_override] = ACTIONS(7377), - [anon_sym_requires] = ACTIONS(7377), - }, - [STATE(3073)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7381), - [anon_sym_COMMA] = ACTIONS(7381), - [anon_sym_LPAREN2] = ACTIONS(7381), - [anon_sym_DASH] = ACTIONS(7379), - [anon_sym_PLUS] = ACTIONS(7379), - [anon_sym_STAR] = ACTIONS(7379), - [anon_sym_SLASH] = ACTIONS(7379), - [anon_sym_PERCENT] = ACTIONS(7379), - [anon_sym_PIPE_PIPE] = ACTIONS(7381), - [anon_sym_AMP_AMP] = ACTIONS(7381), - [anon_sym_PIPE] = ACTIONS(7379), - [anon_sym_CARET] = ACTIONS(7379), - [anon_sym_AMP] = ACTIONS(7379), - [anon_sym_EQ_EQ] = ACTIONS(7381), - [anon_sym_BANG_EQ] = ACTIONS(7381), - [anon_sym_GT] = ACTIONS(7379), - [anon_sym_GT_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7379), - [anon_sym_LT] = ACTIONS(7379), - [anon_sym_LT_LT] = ACTIONS(7379), - [anon_sym_GT_GT] = ACTIONS(7379), - [anon_sym___extension__] = ACTIONS(7381), - [anon_sym_LBRACE] = ACTIONS(7381), - [anon_sym_LBRACK] = ACTIONS(7381), - [anon_sym_RBRACK] = ACTIONS(7381), - [anon_sym_EQ] = ACTIONS(7379), - [anon_sym_const] = ACTIONS(7379), - [anon_sym_constexpr] = ACTIONS(7381), - [anon_sym_volatile] = ACTIONS(7381), - [anon_sym_restrict] = ACTIONS(7381), - [anon_sym___restrict__] = ACTIONS(7381), - [anon_sym__Atomic] = ACTIONS(7381), - [anon_sym__Noreturn] = ACTIONS(7381), - [anon_sym_noreturn] = ACTIONS(7381), - [anon_sym__Nonnull] = ACTIONS(7381), - [anon_sym_mutable] = ACTIONS(7381), - [anon_sym_constinit] = ACTIONS(7381), - [anon_sym_consteval] = ACTIONS(7381), - [anon_sym_alignas] = ACTIONS(7381), - [anon_sym__Alignas] = ACTIONS(7381), - [anon_sym_QMARK] = ACTIONS(7381), - [anon_sym_STAR_EQ] = ACTIONS(7381), - [anon_sym_SLASH_EQ] = ACTIONS(7381), - [anon_sym_PERCENT_EQ] = ACTIONS(7381), - [anon_sym_PLUS_EQ] = ACTIONS(7381), - [anon_sym_DASH_EQ] = ACTIONS(7381), - [anon_sym_LT_LT_EQ] = ACTIONS(7381), - [anon_sym_GT_GT_EQ] = ACTIONS(7381), - [anon_sym_AMP_EQ] = ACTIONS(7381), - [anon_sym_CARET_EQ] = ACTIONS(7381), - [anon_sym_PIPE_EQ] = ACTIONS(7381), - [anon_sym_and_eq] = ACTIONS(7381), - [anon_sym_or_eq] = ACTIONS(7381), - [anon_sym_xor_eq] = ACTIONS(7381), - [anon_sym_LT_EQ_GT] = ACTIONS(7381), - [anon_sym_or] = ACTIONS(7379), - [anon_sym_and] = ACTIONS(7379), - [anon_sym_bitor] = ACTIONS(7381), - [anon_sym_xor] = ACTIONS(7379), - [anon_sym_bitand] = ACTIONS(7381), - [anon_sym_not_eq] = ACTIONS(7381), - [anon_sym_DASH_DASH] = ACTIONS(7381), - [anon_sym_PLUS_PLUS] = ACTIONS(7381), - [anon_sym_DOT] = ACTIONS(7379), - [anon_sym_DOT_STAR] = ACTIONS(7381), - [anon_sym_DASH_GT] = ACTIONS(7381), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7381), - [anon_sym_override] = ACTIONS(7381), - [anon_sym_requires] = ACTIONS(7381), - }, - [STATE(3074)] = { - [sym_argument_list] = STATE(5662), - [sym_initializer_list] = STATE(5649), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(8274), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6798), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6798), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(6800), - }, - [STATE(3075)] = { - [sym_attribute_specifier] = STATE(3719), - [sym_attribute_declaration] = STATE(6297), - [sym_type_qualifier] = STATE(3633), - [sym_alignas_qualifier] = STATE(3884), - [aux_sym_type_definition_repeat1] = STATE(3719), - [aux_sym__type_definition_type_repeat1] = STATE(3633), - [aux_sym_attributed_declarator_repeat1] = STATE(6297), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), - [anon_sym_COMMA] = ACTIONS(6390), - [anon_sym_LPAREN2] = ACTIONS(6390), - [anon_sym_DASH] = ACTIONS(6388), - [anon_sym_PLUS] = ACTIONS(6388), - [anon_sym_STAR] = ACTIONS(6390), - [anon_sym_SLASH] = ACTIONS(6388), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_PIPE_PIPE] = ACTIONS(6390), - [anon_sym_AMP_AMP] = ACTIONS(6390), - [anon_sym_PIPE] = ACTIONS(6388), - [anon_sym_CARET] = ACTIONS(6390), - [anon_sym_AMP] = ACTIONS(6388), - [anon_sym_EQ_EQ] = ACTIONS(6390), - [anon_sym_BANG_EQ] = ACTIONS(6390), - [anon_sym_GT] = ACTIONS(6388), - [anon_sym_GT_EQ] = ACTIONS(6390), - [anon_sym_LT_EQ] = ACTIONS(6388), - [anon_sym_LT] = ACTIONS(6388), - [anon_sym_LT_LT] = ACTIONS(6390), - [anon_sym_GT_GT] = ACTIONS(6390), - [anon_sym___extension__] = ACTIONS(7495), - [anon_sym___attribute__] = ACTIONS(6390), - [anon_sym___attribute] = ACTIONS(6388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), - [anon_sym_LBRACK] = ACTIONS(6388), - [anon_sym_RBRACK] = ACTIONS(6390), - [anon_sym_const] = ACTIONS(7503), - [anon_sym_constexpr] = ACTIONS(7495), - [anon_sym_volatile] = ACTIONS(7495), - [anon_sym_restrict] = ACTIONS(7495), - [anon_sym___restrict__] = ACTIONS(7495), - [anon_sym__Atomic] = ACTIONS(7495), - [anon_sym__Noreturn] = ACTIONS(7495), - [anon_sym_noreturn] = ACTIONS(7495), - [anon_sym__Nonnull] = ACTIONS(7495), - [anon_sym_mutable] = ACTIONS(7495), - [anon_sym_constinit] = ACTIONS(7495), - [anon_sym_consteval] = ACTIONS(7495), - [anon_sym_alignas] = ACTIONS(7505), - [anon_sym__Alignas] = ACTIONS(7505), - [anon_sym_QMARK] = ACTIONS(6390), - [anon_sym_LT_EQ_GT] = ACTIONS(6390), - [anon_sym_or] = ACTIONS(6390), - [anon_sym_and] = ACTIONS(6390), - [anon_sym_bitor] = ACTIONS(6390), - [anon_sym_xor] = ACTIONS(6390), - [anon_sym_bitand] = ACTIONS(6390), - [anon_sym_not_eq] = ACTIONS(6390), - [anon_sym_DASH_DASH] = ACTIONS(6390), - [anon_sym_PLUS_PLUS] = ACTIONS(6390), - [anon_sym_asm] = ACTIONS(6390), - [anon_sym___asm__] = ACTIONS(6390), - [anon_sym___asm] = ACTIONS(6388), - [anon_sym_DOT] = ACTIONS(6388), - [anon_sym_DOT_STAR] = ACTIONS(6390), - [anon_sym_DASH_GT] = ACTIONS(6390), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6390), - [anon_sym_override] = ACTIONS(6390), - [anon_sym_noexcept] = ACTIONS(6390), - [anon_sym_throw] = ACTIONS(6390), - [anon_sym_requires] = ACTIONS(6390), - }, - [STATE(3076)] = { - [sym_identifier] = ACTIONS(7195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7197), - [anon_sym_COMMA] = ACTIONS(7197), - [anon_sym_RPAREN] = ACTIONS(7197), - [anon_sym_LPAREN2] = ACTIONS(7197), - [anon_sym_DASH] = ACTIONS(7195), - [anon_sym_PLUS] = ACTIONS(7195), - [anon_sym_STAR] = ACTIONS(7197), - [anon_sym_SLASH] = ACTIONS(7195), - [anon_sym_PERCENT] = ACTIONS(7197), - [anon_sym_PIPE_PIPE] = ACTIONS(7197), - [anon_sym_AMP_AMP] = ACTIONS(7197), - [anon_sym_PIPE] = ACTIONS(7195), - [anon_sym_CARET] = ACTIONS(7197), - [anon_sym_AMP] = ACTIONS(7195), - [anon_sym_EQ_EQ] = ACTIONS(7197), - [anon_sym_BANG_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_LT_EQ] = ACTIONS(7195), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_LT] = ACTIONS(7197), - [anon_sym_GT_GT] = ACTIONS(7197), - [anon_sym_SEMI] = ACTIONS(7197), - [anon_sym___extension__] = ACTIONS(7195), - [anon_sym___attribute__] = ACTIONS(7195), - [anon_sym___attribute] = ACTIONS(7195), - [anon_sym_COLON] = ACTIONS(7195), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7197), - [anon_sym___based] = ACTIONS(7195), - [anon_sym_LBRACE] = ACTIONS(7197), - [anon_sym_RBRACE] = ACTIONS(7197), - [anon_sym_signed] = ACTIONS(7195), - [anon_sym_unsigned] = ACTIONS(7195), - [anon_sym_long] = ACTIONS(7195), - [anon_sym_short] = ACTIONS(7195), - [anon_sym_LBRACK] = ACTIONS(7197), - [anon_sym_const] = ACTIONS(7195), - [anon_sym_constexpr] = ACTIONS(7195), - [anon_sym_volatile] = ACTIONS(7195), - [anon_sym_restrict] = ACTIONS(7195), - [anon_sym___restrict__] = ACTIONS(7195), - [anon_sym__Atomic] = ACTIONS(7195), - [anon_sym__Noreturn] = ACTIONS(7195), - [anon_sym_noreturn] = ACTIONS(7195), - [anon_sym__Nonnull] = ACTIONS(7195), - [anon_sym_mutable] = ACTIONS(7195), - [anon_sym_constinit] = ACTIONS(7195), - [anon_sym_consteval] = ACTIONS(7195), - [anon_sym_alignas] = ACTIONS(7195), - [anon_sym__Alignas] = ACTIONS(7195), - [sym_primitive_type] = ACTIONS(7195), - [anon_sym_QMARK] = ACTIONS(7197), - [anon_sym_LT_EQ_GT] = ACTIONS(7197), - [anon_sym_or] = ACTIONS(7195), - [anon_sym_and] = ACTIONS(7195), - [anon_sym_bitor] = ACTIONS(7195), - [anon_sym_xor] = ACTIONS(7195), - [anon_sym_bitand] = ACTIONS(7195), - [anon_sym_not_eq] = ACTIONS(7195), - [anon_sym_DASH_DASH] = ACTIONS(7197), - [anon_sym_PLUS_PLUS] = ACTIONS(7197), - [anon_sym_DOT] = ACTIONS(7195), - [anon_sym_DOT_STAR] = ACTIONS(7197), - [anon_sym_DASH_GT] = ACTIONS(7197), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7195), - [anon_sym_override] = ACTIONS(7195), - [anon_sym_requires] = ACTIONS(7195), - [anon_sym_COLON_RBRACK] = ACTIONS(7197), - }, - [STATE(3077)] = { - [sym_identifier] = ACTIONS(7205), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7207), - [anon_sym_COMMA] = ACTIONS(7207), - [anon_sym_RPAREN] = ACTIONS(7207), - [anon_sym_LPAREN2] = ACTIONS(7207), - [anon_sym_DASH] = ACTIONS(7205), - [anon_sym_PLUS] = ACTIONS(7205), - [anon_sym_STAR] = ACTIONS(7207), - [anon_sym_SLASH] = ACTIONS(7205), - [anon_sym_PERCENT] = ACTIONS(7207), - [anon_sym_PIPE_PIPE] = ACTIONS(7207), - [anon_sym_AMP_AMP] = ACTIONS(7207), - [anon_sym_PIPE] = ACTIONS(7205), - [anon_sym_CARET] = ACTIONS(7207), - [anon_sym_AMP] = ACTIONS(7205), - [anon_sym_EQ_EQ] = ACTIONS(7207), - [anon_sym_BANG_EQ] = ACTIONS(7207), - [anon_sym_GT] = ACTIONS(7205), - [anon_sym_GT_EQ] = ACTIONS(7207), - [anon_sym_LT_EQ] = ACTIONS(7205), - [anon_sym_LT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7207), - [anon_sym_GT_GT] = ACTIONS(7207), - [anon_sym_SEMI] = ACTIONS(7207), - [anon_sym___extension__] = ACTIONS(7205), - [anon_sym___attribute__] = ACTIONS(7205), - [anon_sym___attribute] = ACTIONS(7205), - [anon_sym_COLON] = ACTIONS(7205), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7207), - [anon_sym___based] = ACTIONS(7205), - [anon_sym_LBRACE] = ACTIONS(7207), - [anon_sym_RBRACE] = ACTIONS(7207), - [anon_sym_signed] = ACTIONS(7205), - [anon_sym_unsigned] = ACTIONS(7205), - [anon_sym_long] = ACTIONS(7205), - [anon_sym_short] = ACTIONS(7205), - [anon_sym_LBRACK] = ACTIONS(7207), - [anon_sym_const] = ACTIONS(7205), - [anon_sym_constexpr] = ACTIONS(7205), - [anon_sym_volatile] = ACTIONS(7205), - [anon_sym_restrict] = ACTIONS(7205), - [anon_sym___restrict__] = ACTIONS(7205), - [anon_sym__Atomic] = ACTIONS(7205), - [anon_sym__Noreturn] = ACTIONS(7205), - [anon_sym_noreturn] = ACTIONS(7205), - [anon_sym__Nonnull] = ACTIONS(7205), - [anon_sym_mutable] = ACTIONS(7205), - [anon_sym_constinit] = ACTIONS(7205), - [anon_sym_consteval] = ACTIONS(7205), - [anon_sym_alignas] = ACTIONS(7205), - [anon_sym__Alignas] = ACTIONS(7205), - [sym_primitive_type] = ACTIONS(7205), - [anon_sym_QMARK] = ACTIONS(7207), - [anon_sym_LT_EQ_GT] = ACTIONS(7207), - [anon_sym_or] = ACTIONS(7205), - [anon_sym_and] = ACTIONS(7205), - [anon_sym_bitor] = ACTIONS(7205), - [anon_sym_xor] = ACTIONS(7205), - [anon_sym_bitand] = ACTIONS(7205), - [anon_sym_not_eq] = ACTIONS(7205), - [anon_sym_DASH_DASH] = ACTIONS(7207), - [anon_sym_PLUS_PLUS] = ACTIONS(7207), - [anon_sym_DOT] = ACTIONS(7205), - [anon_sym_DOT_STAR] = ACTIONS(7207), - [anon_sym_DASH_GT] = ACTIONS(7207), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7205), - [anon_sym_override] = ACTIONS(7205), - [anon_sym_requires] = ACTIONS(7205), - [anon_sym_COLON_RBRACK] = ACTIONS(7207), - }, - [STATE(3078)] = { - [sym_identifier] = ACTIONS(7209), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7211), - [anon_sym_COMMA] = ACTIONS(7211), - [anon_sym_RPAREN] = ACTIONS(7211), - [anon_sym_LPAREN2] = ACTIONS(7211), - [anon_sym_DASH] = ACTIONS(7209), - [anon_sym_PLUS] = ACTIONS(7209), - [anon_sym_STAR] = ACTIONS(7211), - [anon_sym_SLASH] = ACTIONS(7209), - [anon_sym_PERCENT] = ACTIONS(7211), - [anon_sym_PIPE_PIPE] = ACTIONS(7211), - [anon_sym_AMP_AMP] = ACTIONS(7211), - [anon_sym_PIPE] = ACTIONS(7209), - [anon_sym_CARET] = ACTIONS(7211), - [anon_sym_AMP] = ACTIONS(7209), - [anon_sym_EQ_EQ] = ACTIONS(7211), - [anon_sym_BANG_EQ] = ACTIONS(7211), - [anon_sym_GT] = ACTIONS(7209), - [anon_sym_GT_EQ] = ACTIONS(7211), - [anon_sym_LT_EQ] = ACTIONS(7209), - [anon_sym_LT] = ACTIONS(7209), - [anon_sym_LT_LT] = ACTIONS(7211), - [anon_sym_GT_GT] = ACTIONS(7211), - [anon_sym_SEMI] = ACTIONS(7211), - [anon_sym___extension__] = ACTIONS(7209), - [anon_sym___attribute__] = ACTIONS(7209), - [anon_sym___attribute] = ACTIONS(7209), - [anon_sym_COLON] = ACTIONS(7209), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7211), - [anon_sym___based] = ACTIONS(7209), - [anon_sym_LBRACE] = ACTIONS(7211), - [anon_sym_RBRACE] = ACTIONS(7211), - [anon_sym_signed] = ACTIONS(7209), - [anon_sym_unsigned] = ACTIONS(7209), - [anon_sym_long] = ACTIONS(7209), - [anon_sym_short] = ACTIONS(7209), - [anon_sym_LBRACK] = ACTIONS(7211), - [anon_sym_const] = ACTIONS(7209), - [anon_sym_constexpr] = ACTIONS(7209), - [anon_sym_volatile] = ACTIONS(7209), - [anon_sym_restrict] = ACTIONS(7209), - [anon_sym___restrict__] = ACTIONS(7209), - [anon_sym__Atomic] = ACTIONS(7209), - [anon_sym__Noreturn] = ACTIONS(7209), - [anon_sym_noreturn] = ACTIONS(7209), - [anon_sym__Nonnull] = ACTIONS(7209), - [anon_sym_mutable] = ACTIONS(7209), - [anon_sym_constinit] = ACTIONS(7209), - [anon_sym_consteval] = ACTIONS(7209), - [anon_sym_alignas] = ACTIONS(7209), - [anon_sym__Alignas] = ACTIONS(7209), - [sym_primitive_type] = ACTIONS(7209), - [anon_sym_QMARK] = ACTIONS(7211), - [anon_sym_LT_EQ_GT] = ACTIONS(7211), - [anon_sym_or] = ACTIONS(7209), - [anon_sym_and] = ACTIONS(7209), - [anon_sym_bitor] = ACTIONS(7209), - [anon_sym_xor] = ACTIONS(7209), - [anon_sym_bitand] = ACTIONS(7209), - [anon_sym_not_eq] = ACTIONS(7209), - [anon_sym_DASH_DASH] = ACTIONS(7211), - [anon_sym_PLUS_PLUS] = ACTIONS(7211), - [anon_sym_DOT] = ACTIONS(7209), - [anon_sym_DOT_STAR] = ACTIONS(7211), - [anon_sym_DASH_GT] = ACTIONS(7211), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7209), - [anon_sym_override] = ACTIONS(7209), - [anon_sym_requires] = ACTIONS(7209), - [anon_sym_COLON_RBRACK] = ACTIONS(7211), - }, - [STATE(3079)] = { - [sym_identifier] = ACTIONS(7219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7221), - [anon_sym_COMMA] = ACTIONS(7221), - [anon_sym_RPAREN] = ACTIONS(7221), - [anon_sym_LPAREN2] = ACTIONS(7221), - [anon_sym_DASH] = ACTIONS(7219), - [anon_sym_PLUS] = ACTIONS(7219), - [anon_sym_STAR] = ACTIONS(7221), - [anon_sym_SLASH] = ACTIONS(7219), - [anon_sym_PERCENT] = ACTIONS(7221), - [anon_sym_PIPE_PIPE] = ACTIONS(7221), - [anon_sym_AMP_AMP] = ACTIONS(7221), - [anon_sym_PIPE] = ACTIONS(7219), - [anon_sym_CARET] = ACTIONS(7221), - [anon_sym_AMP] = ACTIONS(7219), - [anon_sym_EQ_EQ] = ACTIONS(7221), - [anon_sym_BANG_EQ] = ACTIONS(7221), - [anon_sym_GT] = ACTIONS(7219), - [anon_sym_GT_EQ] = ACTIONS(7221), - [anon_sym_LT_EQ] = ACTIONS(7219), - [anon_sym_LT] = ACTIONS(7219), - [anon_sym_LT_LT] = ACTIONS(7221), - [anon_sym_GT_GT] = ACTIONS(7221), - [anon_sym_SEMI] = ACTIONS(7221), - [anon_sym___extension__] = ACTIONS(7219), - [anon_sym___attribute__] = ACTIONS(7219), - [anon_sym___attribute] = ACTIONS(7219), - [anon_sym_COLON] = ACTIONS(7219), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7221), - [anon_sym___based] = ACTIONS(7219), - [anon_sym_LBRACE] = ACTIONS(7221), - [anon_sym_RBRACE] = ACTIONS(7221), - [anon_sym_signed] = ACTIONS(7219), - [anon_sym_unsigned] = ACTIONS(7219), - [anon_sym_long] = ACTIONS(7219), - [anon_sym_short] = ACTIONS(7219), - [anon_sym_LBRACK] = ACTIONS(7221), - [anon_sym_const] = ACTIONS(7219), - [anon_sym_constexpr] = ACTIONS(7219), - [anon_sym_volatile] = ACTIONS(7219), - [anon_sym_restrict] = ACTIONS(7219), - [anon_sym___restrict__] = ACTIONS(7219), - [anon_sym__Atomic] = ACTIONS(7219), - [anon_sym__Noreturn] = ACTIONS(7219), - [anon_sym_noreturn] = ACTIONS(7219), - [anon_sym__Nonnull] = ACTIONS(7219), - [anon_sym_mutable] = ACTIONS(7219), - [anon_sym_constinit] = ACTIONS(7219), - [anon_sym_consteval] = ACTIONS(7219), - [anon_sym_alignas] = ACTIONS(7219), - [anon_sym__Alignas] = ACTIONS(7219), - [sym_primitive_type] = ACTIONS(7219), - [anon_sym_QMARK] = ACTIONS(7221), - [anon_sym_LT_EQ_GT] = ACTIONS(7221), - [anon_sym_or] = ACTIONS(7219), - [anon_sym_and] = ACTIONS(7219), - [anon_sym_bitor] = ACTIONS(7219), - [anon_sym_xor] = ACTIONS(7219), - [anon_sym_bitand] = ACTIONS(7219), - [anon_sym_not_eq] = ACTIONS(7219), - [anon_sym_DASH_DASH] = ACTIONS(7221), - [anon_sym_PLUS_PLUS] = ACTIONS(7221), - [anon_sym_DOT] = ACTIONS(7219), - [anon_sym_DOT_STAR] = ACTIONS(7221), - [anon_sym_DASH_GT] = ACTIONS(7221), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7219), - [anon_sym_override] = ACTIONS(7219), - [anon_sym_requires] = ACTIONS(7219), - [anon_sym_COLON_RBRACK] = ACTIONS(7221), - }, - [STATE(3080)] = { - [sym_identifier] = ACTIONS(7223), + [STATE(2737)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2614), [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), [anon_sym_COMMA] = ACTIONS(7225), [anon_sym_RPAREN] = ACTIONS(7225), [anon_sym_LPAREN2] = ACTIONS(7225), [anon_sym_DASH] = ACTIONS(7223), [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7225), + [anon_sym_STAR] = ACTIONS(7223), [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7225), + [anon_sym_PERCENT] = ACTIONS(7223), [anon_sym_PIPE_PIPE] = ACTIONS(7225), [anon_sym_AMP_AMP] = ACTIONS(7225), [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7225), + [anon_sym_CARET] = ACTIONS(7223), [anon_sym_AMP] = ACTIONS(7223), [anon_sym_EQ_EQ] = ACTIONS(7225), [anon_sym_BANG_EQ] = ACTIONS(7225), @@ -385989,1569 +374162,1335 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(7225), [anon_sym_LT_EQ] = ACTIONS(7223), [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7225), - [anon_sym_GT_GT] = ACTIONS(7225), - [anon_sym_SEMI] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7223), - [anon_sym___attribute__] = ACTIONS(7223), - [anon_sym___attribute] = ACTIONS(7223), - [anon_sym_COLON] = ACTIONS(7223), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), - [anon_sym___based] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_RBRACE] = ACTIONS(7225), - [anon_sym_signed] = ACTIONS(7223), - [anon_sym_unsigned] = ACTIONS(7223), - [anon_sym_long] = ACTIONS(7223), - [anon_sym_short] = ACTIONS(7223), + [anon_sym_signed] = ACTIONS(8535), + [anon_sym_unsigned] = ACTIONS(8535), + [anon_sym_long] = ACTIONS(8535), + [anon_sym_short] = ACTIONS(8535), [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7223), - [anon_sym_volatile] = ACTIONS(7223), - [anon_sym_restrict] = ACTIONS(7223), - [anon_sym___restrict__] = ACTIONS(7223), - [anon_sym__Atomic] = ACTIONS(7223), - [anon_sym__Noreturn] = ACTIONS(7223), - [anon_sym_noreturn] = ACTIONS(7223), - [anon_sym__Nonnull] = ACTIONS(7223), - [anon_sym_mutable] = ACTIONS(7223), - [anon_sym_constinit] = ACTIONS(7223), - [anon_sym_consteval] = ACTIONS(7223), - [anon_sym_alignas] = ACTIONS(7223), - [anon_sym__Alignas] = ACTIONS(7223), - [sym_primitive_type] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7223), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7223), - [anon_sym_not_eq] = ACTIONS(7223), + [anon_sym_or] = ACTIONS(7225), + [anon_sym_and] = ACTIONS(7225), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7225), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), [anon_sym_DASH_DASH] = ACTIONS(7225), [anon_sym_PLUS_PLUS] = ACTIONS(7225), [anon_sym_DOT] = ACTIONS(7223), [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7223), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7223), - [anon_sym_override] = ACTIONS(7223), - [anon_sym_requires] = ACTIONS(7223), - [anon_sym_COLON_RBRACK] = ACTIONS(7225), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), + [anon_sym_DASH_GT_STAR] = ACTIONS(7225), }, - [STATE(3081)] = { - [sym_identifier] = ACTIONS(7227), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7229), - [anon_sym_COMMA] = ACTIONS(7229), - [anon_sym_RPAREN] = ACTIONS(7229), - [anon_sym_LPAREN2] = ACTIONS(7229), - [anon_sym_DASH] = ACTIONS(7227), - [anon_sym_PLUS] = ACTIONS(7227), - [anon_sym_STAR] = ACTIONS(7229), - [anon_sym_SLASH] = ACTIONS(7227), - [anon_sym_PERCENT] = ACTIONS(7229), - [anon_sym_PIPE_PIPE] = ACTIONS(7229), - [anon_sym_AMP_AMP] = ACTIONS(7229), - [anon_sym_PIPE] = ACTIONS(7227), - [anon_sym_CARET] = ACTIONS(7229), - [anon_sym_AMP] = ACTIONS(7227), - [anon_sym_EQ_EQ] = ACTIONS(7229), - [anon_sym_BANG_EQ] = ACTIONS(7229), - [anon_sym_GT] = ACTIONS(7227), - [anon_sym_GT_EQ] = ACTIONS(7229), - [anon_sym_LT_EQ] = ACTIONS(7227), - [anon_sym_LT] = ACTIONS(7227), - [anon_sym_LT_LT] = ACTIONS(7229), - [anon_sym_GT_GT] = ACTIONS(7229), - [anon_sym_SEMI] = ACTIONS(7229), - [anon_sym___extension__] = ACTIONS(7227), - [anon_sym___attribute__] = ACTIONS(7227), - [anon_sym___attribute] = ACTIONS(7227), - [anon_sym_COLON] = ACTIONS(7227), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7229), - [anon_sym___based] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7229), - [anon_sym_RBRACE] = ACTIONS(7229), - [anon_sym_signed] = ACTIONS(7227), - [anon_sym_unsigned] = ACTIONS(7227), - [anon_sym_long] = ACTIONS(7227), - [anon_sym_short] = ACTIONS(7227), - [anon_sym_LBRACK] = ACTIONS(7229), - [anon_sym_const] = ACTIONS(7227), - [anon_sym_constexpr] = ACTIONS(7227), - [anon_sym_volatile] = ACTIONS(7227), - [anon_sym_restrict] = ACTIONS(7227), - [anon_sym___restrict__] = ACTIONS(7227), - [anon_sym__Atomic] = ACTIONS(7227), - [anon_sym__Noreturn] = ACTIONS(7227), - [anon_sym_noreturn] = ACTIONS(7227), - [anon_sym__Nonnull] = ACTIONS(7227), - [anon_sym_mutable] = ACTIONS(7227), - [anon_sym_constinit] = ACTIONS(7227), - [anon_sym_consteval] = ACTIONS(7227), - [anon_sym_alignas] = ACTIONS(7227), - [anon_sym__Alignas] = ACTIONS(7227), - [sym_primitive_type] = ACTIONS(7227), - [anon_sym_QMARK] = ACTIONS(7229), - [anon_sym_LT_EQ_GT] = ACTIONS(7229), - [anon_sym_or] = ACTIONS(7227), - [anon_sym_and] = ACTIONS(7227), - [anon_sym_bitor] = ACTIONS(7227), - [anon_sym_xor] = ACTIONS(7227), - [anon_sym_bitand] = ACTIONS(7227), - [anon_sym_not_eq] = ACTIONS(7227), - [anon_sym_DASH_DASH] = ACTIONS(7229), - [anon_sym_PLUS_PLUS] = ACTIONS(7229), - [anon_sym_DOT] = ACTIONS(7227), - [anon_sym_DOT_STAR] = ACTIONS(7229), - [anon_sym_DASH_GT] = ACTIONS(7229), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7227), - [anon_sym_override] = ACTIONS(7227), - [anon_sym_requires] = ACTIONS(7227), - [anon_sym_COLON_RBRACK] = ACTIONS(7229), + [STATE(2738)] = { + [sym_identifier] = ACTIONS(3988), + [aux_sym_preproc_def_token1] = ACTIONS(3988), + [aux_sym_preproc_if_token1] = ACTIONS(3988), + [aux_sym_preproc_if_token2] = ACTIONS(3988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3988), + [aux_sym_preproc_else_token1] = ACTIONS(3988), + [aux_sym_preproc_elif_token1] = ACTIONS(3988), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3988), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3988), + [sym_preproc_directive] = ACTIONS(3988), + [anon_sym_LPAREN2] = ACTIONS(3990), + [anon_sym_TILDE] = ACTIONS(3990), + [anon_sym_STAR] = ACTIONS(3990), + [anon_sym_AMP_AMP] = ACTIONS(3990), + [anon_sym_AMP] = ACTIONS(3988), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym___extension__] = ACTIONS(3988), + [anon_sym_typedef] = ACTIONS(3988), + [anon_sym_virtual] = ACTIONS(3988), + [anon_sym_extern] = ACTIONS(3988), + [anon_sym___attribute__] = ACTIONS(3988), + [anon_sym___attribute] = ACTIONS(3988), + [anon_sym_using] = ACTIONS(3988), + [anon_sym_COLON_COLON] = ACTIONS(3990), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3990), + [anon_sym___declspec] = ACTIONS(3988), + [anon_sym___based] = ACTIONS(3988), + [anon_sym_signed] = ACTIONS(3988), + [anon_sym_unsigned] = ACTIONS(3988), + [anon_sym_long] = ACTIONS(3988), + [anon_sym_short] = ACTIONS(3988), + [anon_sym_LBRACK] = ACTIONS(3988), + [anon_sym_static] = ACTIONS(3988), + [anon_sym_register] = ACTIONS(3988), + [anon_sym_inline] = ACTIONS(3988), + [anon_sym___inline] = ACTIONS(3988), + [anon_sym___inline__] = ACTIONS(3988), + [anon_sym___forceinline] = ACTIONS(3988), + [anon_sym_thread_local] = ACTIONS(3988), + [anon_sym___thread] = ACTIONS(3988), + [anon_sym_const] = ACTIONS(3988), + [anon_sym_constexpr] = ACTIONS(3988), + [anon_sym_volatile] = ACTIONS(3988), + [anon_sym_restrict] = ACTIONS(3988), + [anon_sym___restrict__] = ACTIONS(3988), + [anon_sym__Atomic] = ACTIONS(3988), + [anon_sym__Noreturn] = ACTIONS(3988), + [anon_sym_noreturn] = ACTIONS(3988), + [anon_sym__Nonnull] = ACTIONS(3988), + [anon_sym_mutable] = ACTIONS(3988), + [anon_sym_constinit] = ACTIONS(3988), + [anon_sym_consteval] = ACTIONS(3988), + [anon_sym_alignas] = ACTIONS(3988), + [anon_sym__Alignas] = ACTIONS(3988), + [sym_primitive_type] = ACTIONS(3988), + [anon_sym_enum] = ACTIONS(3988), + [anon_sym_class] = ACTIONS(3988), + [anon_sym_struct] = ACTIONS(3988), + [anon_sym_union] = ACTIONS(3988), + [anon_sym_typename] = ACTIONS(3988), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3988), + [anon_sym_decltype] = ACTIONS(3988), + [anon_sym_explicit] = ACTIONS(3988), + [anon_sym_private] = ACTIONS(3988), + [anon_sym_template] = ACTIONS(3988), + [anon_sym_operator] = ACTIONS(3988), + [anon_sym_friend] = ACTIONS(3988), + [anon_sym_public] = ACTIONS(3988), + [anon_sym_protected] = ACTIONS(3988), + [anon_sym_static_assert] = ACTIONS(3988), + [anon_sym_LBRACK_COLON] = ACTIONS(3990), }, - [STATE(3082)] = { - [sym_identifier] = ACTIONS(7231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), - [anon_sym_COMMA] = ACTIONS(7233), - [anon_sym_RPAREN] = ACTIONS(7233), - [anon_sym_LPAREN2] = ACTIONS(7233), - [anon_sym_DASH] = ACTIONS(7231), - [anon_sym_PLUS] = ACTIONS(7231), - [anon_sym_STAR] = ACTIONS(7233), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7233), - [anon_sym_PIPE_PIPE] = ACTIONS(7233), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE] = ACTIONS(7231), - [anon_sym_CARET] = ACTIONS(7233), - [anon_sym_AMP] = ACTIONS(7231), - [anon_sym_EQ_EQ] = ACTIONS(7233), - [anon_sym_BANG_EQ] = ACTIONS(7233), - [anon_sym_GT] = ACTIONS(7231), - [anon_sym_GT_EQ] = ACTIONS(7233), - [anon_sym_LT_EQ] = ACTIONS(7231), - [anon_sym_LT] = ACTIONS(7231), - [anon_sym_LT_LT] = ACTIONS(7233), - [anon_sym_GT_GT] = ACTIONS(7233), - [anon_sym_SEMI] = ACTIONS(7233), - [anon_sym___extension__] = ACTIONS(7231), - [anon_sym___attribute__] = ACTIONS(7231), - [anon_sym___attribute] = ACTIONS(7231), - [anon_sym_COLON] = ACTIONS(7231), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7233), - [anon_sym___based] = ACTIONS(7231), - [anon_sym_LBRACE] = ACTIONS(7233), - [anon_sym_RBRACE] = ACTIONS(7233), - [anon_sym_signed] = ACTIONS(7231), - [anon_sym_unsigned] = ACTIONS(7231), - [anon_sym_long] = ACTIONS(7231), - [anon_sym_short] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(7233), - [anon_sym_const] = ACTIONS(7231), - [anon_sym_constexpr] = ACTIONS(7231), - [anon_sym_volatile] = ACTIONS(7231), - [anon_sym_restrict] = ACTIONS(7231), - [anon_sym___restrict__] = ACTIONS(7231), - [anon_sym__Atomic] = ACTIONS(7231), - [anon_sym__Noreturn] = ACTIONS(7231), - [anon_sym_noreturn] = ACTIONS(7231), - [anon_sym__Nonnull] = ACTIONS(7231), - [anon_sym_mutable] = ACTIONS(7231), - [anon_sym_constinit] = ACTIONS(7231), - [anon_sym_consteval] = ACTIONS(7231), - [anon_sym_alignas] = ACTIONS(7231), - [anon_sym__Alignas] = ACTIONS(7231), - [sym_primitive_type] = ACTIONS(7231), - [anon_sym_QMARK] = ACTIONS(7233), - [anon_sym_LT_EQ_GT] = ACTIONS(7233), - [anon_sym_or] = ACTIONS(7231), - [anon_sym_and] = ACTIONS(7231), - [anon_sym_bitor] = ACTIONS(7231), - [anon_sym_xor] = ACTIONS(7231), - [anon_sym_bitand] = ACTIONS(7231), - [anon_sym_not_eq] = ACTIONS(7231), - [anon_sym_DASH_DASH] = ACTIONS(7233), - [anon_sym_PLUS_PLUS] = ACTIONS(7233), - [anon_sym_DOT] = ACTIONS(7231), - [anon_sym_DOT_STAR] = ACTIONS(7233), - [anon_sym_DASH_GT] = ACTIONS(7233), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7231), - [anon_sym_override] = ACTIONS(7231), - [anon_sym_requires] = ACTIONS(7231), - [anon_sym_COLON_RBRACK] = ACTIONS(7233), + [STATE(2739)] = { + [sym_identifier] = ACTIONS(3992), + [aux_sym_preproc_def_token1] = ACTIONS(3992), + [aux_sym_preproc_if_token1] = ACTIONS(3992), + [aux_sym_preproc_if_token2] = ACTIONS(3992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3992), + [aux_sym_preproc_else_token1] = ACTIONS(3992), + [aux_sym_preproc_elif_token1] = ACTIONS(3992), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3992), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3992), + [sym_preproc_directive] = ACTIONS(3992), + [anon_sym_LPAREN2] = ACTIONS(3994), + [anon_sym_TILDE] = ACTIONS(3994), + [anon_sym_STAR] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_AMP] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym___extension__] = ACTIONS(3992), + [anon_sym_typedef] = ACTIONS(3992), + [anon_sym_virtual] = ACTIONS(3992), + [anon_sym_extern] = ACTIONS(3992), + [anon_sym___attribute__] = ACTIONS(3992), + [anon_sym___attribute] = ACTIONS(3992), + [anon_sym_using] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3994), + [anon_sym___declspec] = ACTIONS(3992), + [anon_sym___based] = ACTIONS(3992), + [anon_sym_signed] = ACTIONS(3992), + [anon_sym_unsigned] = ACTIONS(3992), + [anon_sym_long] = ACTIONS(3992), + [anon_sym_short] = ACTIONS(3992), + [anon_sym_LBRACK] = ACTIONS(3992), + [anon_sym_static] = ACTIONS(3992), + [anon_sym_register] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym___inline] = ACTIONS(3992), + [anon_sym___inline__] = ACTIONS(3992), + [anon_sym___forceinline] = ACTIONS(3992), + [anon_sym_thread_local] = ACTIONS(3992), + [anon_sym___thread] = ACTIONS(3992), + [anon_sym_const] = ACTIONS(3992), + [anon_sym_constexpr] = ACTIONS(3992), + [anon_sym_volatile] = ACTIONS(3992), + [anon_sym_restrict] = ACTIONS(3992), + [anon_sym___restrict__] = ACTIONS(3992), + [anon_sym__Atomic] = ACTIONS(3992), + [anon_sym__Noreturn] = ACTIONS(3992), + [anon_sym_noreturn] = ACTIONS(3992), + [anon_sym__Nonnull] = ACTIONS(3992), + [anon_sym_mutable] = ACTIONS(3992), + [anon_sym_constinit] = ACTIONS(3992), + [anon_sym_consteval] = ACTIONS(3992), + [anon_sym_alignas] = ACTIONS(3992), + [anon_sym__Alignas] = ACTIONS(3992), + [sym_primitive_type] = ACTIONS(3992), + [anon_sym_enum] = ACTIONS(3992), + [anon_sym_class] = ACTIONS(3992), + [anon_sym_struct] = ACTIONS(3992), + [anon_sym_union] = ACTIONS(3992), + [anon_sym_typename] = ACTIONS(3992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3992), + [anon_sym_decltype] = ACTIONS(3992), + [anon_sym_explicit] = ACTIONS(3992), + [anon_sym_private] = ACTIONS(3992), + [anon_sym_template] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_friend] = ACTIONS(3992), + [anon_sym_public] = ACTIONS(3992), + [anon_sym_protected] = ACTIONS(3992), + [anon_sym_static_assert] = ACTIONS(3992), + [anon_sym_LBRACK_COLON] = ACTIONS(3994), }, - [STATE(3083)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7281), - [anon_sym_COMMA] = ACTIONS(7281), - [anon_sym_LPAREN2] = ACTIONS(7281), - [anon_sym_DASH] = ACTIONS(7279), - [anon_sym_PLUS] = ACTIONS(7279), - [anon_sym_STAR] = ACTIONS(7279), - [anon_sym_SLASH] = ACTIONS(7279), - [anon_sym_PERCENT] = ACTIONS(7279), - [anon_sym_PIPE_PIPE] = ACTIONS(7281), - [anon_sym_AMP_AMP] = ACTIONS(7281), - [anon_sym_PIPE] = ACTIONS(7279), - [anon_sym_CARET] = ACTIONS(7279), - [anon_sym_AMP] = ACTIONS(7279), - [anon_sym_EQ_EQ] = ACTIONS(7281), - [anon_sym_BANG_EQ] = ACTIONS(7281), - [anon_sym_GT] = ACTIONS(7279), - [anon_sym_GT_EQ] = ACTIONS(7279), - [anon_sym_LT_EQ] = ACTIONS(7279), - [anon_sym_LT] = ACTIONS(7279), - [anon_sym_LT_LT] = ACTIONS(7279), - [anon_sym_GT_GT] = ACTIONS(7279), - [anon_sym___extension__] = ACTIONS(7281), - [anon_sym_LBRACE] = ACTIONS(7281), - [anon_sym_LBRACK] = ACTIONS(7281), - [anon_sym_EQ] = ACTIONS(7279), - [anon_sym_const] = ACTIONS(7279), - [anon_sym_constexpr] = ACTIONS(7281), - [anon_sym_volatile] = ACTIONS(7281), - [anon_sym_restrict] = ACTIONS(7281), - [anon_sym___restrict__] = ACTIONS(7281), - [anon_sym__Atomic] = ACTIONS(7281), - [anon_sym__Noreturn] = ACTIONS(7281), - [anon_sym_noreturn] = ACTIONS(7281), - [anon_sym__Nonnull] = ACTIONS(7281), - [anon_sym_mutable] = ACTIONS(7281), - [anon_sym_constinit] = ACTIONS(7281), - [anon_sym_consteval] = ACTIONS(7281), - [anon_sym_alignas] = ACTIONS(7281), - [anon_sym__Alignas] = ACTIONS(7281), - [anon_sym_QMARK] = ACTIONS(7281), - [anon_sym_STAR_EQ] = ACTIONS(7281), - [anon_sym_SLASH_EQ] = ACTIONS(7281), - [anon_sym_PERCENT_EQ] = ACTIONS(7281), - [anon_sym_PLUS_EQ] = ACTIONS(7281), - [anon_sym_DASH_EQ] = ACTIONS(7281), - [anon_sym_LT_LT_EQ] = ACTIONS(7281), - [anon_sym_GT_GT_EQ] = ACTIONS(7279), - [anon_sym_AMP_EQ] = ACTIONS(7281), - [anon_sym_CARET_EQ] = ACTIONS(7281), - [anon_sym_PIPE_EQ] = ACTIONS(7281), - [anon_sym_and_eq] = ACTIONS(7281), - [anon_sym_or_eq] = ACTIONS(7281), - [anon_sym_xor_eq] = ACTIONS(7281), - [anon_sym_LT_EQ_GT] = ACTIONS(7281), - [anon_sym_or] = ACTIONS(7279), - [anon_sym_and] = ACTIONS(7279), - [anon_sym_bitor] = ACTIONS(7281), - [anon_sym_xor] = ACTIONS(7279), - [anon_sym_bitand] = ACTIONS(7281), - [anon_sym_not_eq] = ACTIONS(7281), - [anon_sym_DASH_DASH] = ACTIONS(7281), - [anon_sym_PLUS_PLUS] = ACTIONS(7281), - [anon_sym_DOT] = ACTIONS(7279), - [anon_sym_DOT_STAR] = ACTIONS(7281), - [anon_sym_DASH_GT] = ACTIONS(7281), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7281), - [anon_sym_override] = ACTIONS(7281), - [anon_sym_GT2] = ACTIONS(7281), - [anon_sym_requires] = ACTIONS(7281), + [STATE(2740)] = { + [sym_identifier] = ACTIONS(4112), + [aux_sym_preproc_def_token1] = ACTIONS(4112), + [aux_sym_preproc_if_token1] = ACTIONS(4112), + [aux_sym_preproc_if_token2] = ACTIONS(4112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4112), + [aux_sym_preproc_else_token1] = ACTIONS(4112), + [aux_sym_preproc_elif_token1] = ACTIONS(4112), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4112), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4112), + [sym_preproc_directive] = ACTIONS(4112), + [anon_sym_LPAREN2] = ACTIONS(4114), + [anon_sym_TILDE] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [anon_sym_AMP_AMP] = ACTIONS(4114), + [anon_sym_AMP] = ACTIONS(4112), + [anon_sym_SEMI] = ACTIONS(4114), + [anon_sym___extension__] = ACTIONS(4112), + [anon_sym_typedef] = ACTIONS(4112), + [anon_sym_virtual] = ACTIONS(4112), + [anon_sym_extern] = ACTIONS(4112), + [anon_sym___attribute__] = ACTIONS(4112), + [anon_sym___attribute] = ACTIONS(4112), + [anon_sym_using] = ACTIONS(4112), + [anon_sym_COLON_COLON] = ACTIONS(4114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4114), + [anon_sym___declspec] = ACTIONS(4112), + [anon_sym___based] = ACTIONS(4112), + [anon_sym_signed] = ACTIONS(4112), + [anon_sym_unsigned] = ACTIONS(4112), + [anon_sym_long] = ACTIONS(4112), + [anon_sym_short] = ACTIONS(4112), + [anon_sym_LBRACK] = ACTIONS(4112), + [anon_sym_static] = ACTIONS(4112), + [anon_sym_register] = ACTIONS(4112), + [anon_sym_inline] = ACTIONS(4112), + [anon_sym___inline] = ACTIONS(4112), + [anon_sym___inline__] = ACTIONS(4112), + [anon_sym___forceinline] = ACTIONS(4112), + [anon_sym_thread_local] = ACTIONS(4112), + [anon_sym___thread] = ACTIONS(4112), + [anon_sym_const] = ACTIONS(4112), + [anon_sym_constexpr] = ACTIONS(4112), + [anon_sym_volatile] = ACTIONS(4112), + [anon_sym_restrict] = ACTIONS(4112), + [anon_sym___restrict__] = ACTIONS(4112), + [anon_sym__Atomic] = ACTIONS(4112), + [anon_sym__Noreturn] = ACTIONS(4112), + [anon_sym_noreturn] = ACTIONS(4112), + [anon_sym__Nonnull] = ACTIONS(4112), + [anon_sym_mutable] = ACTIONS(4112), + [anon_sym_constinit] = ACTIONS(4112), + [anon_sym_consteval] = ACTIONS(4112), + [anon_sym_alignas] = ACTIONS(4112), + [anon_sym__Alignas] = ACTIONS(4112), + [sym_primitive_type] = ACTIONS(4112), + [anon_sym_enum] = ACTIONS(4112), + [anon_sym_class] = ACTIONS(4112), + [anon_sym_struct] = ACTIONS(4112), + [anon_sym_union] = ACTIONS(4112), + [anon_sym_typename] = ACTIONS(4112), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4112), + [anon_sym_decltype] = ACTIONS(4112), + [anon_sym_explicit] = ACTIONS(4112), + [anon_sym_private] = ACTIONS(4112), + [anon_sym_template] = ACTIONS(4112), + [anon_sym_operator] = ACTIONS(4112), + [anon_sym_friend] = ACTIONS(4112), + [anon_sym_public] = ACTIONS(4112), + [anon_sym_protected] = ACTIONS(4112), + [anon_sym_static_assert] = ACTIONS(4112), + [anon_sym_LBRACK_COLON] = ACTIONS(4114), }, - [STATE(3084)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6792), - [anon_sym_COMMA] = ACTIONS(6792), - [anon_sym_LPAREN2] = ACTIONS(6792), - [anon_sym_DASH] = ACTIONS(6790), - [anon_sym_PLUS] = ACTIONS(6790), - [anon_sym_STAR] = ACTIONS(6790), - [anon_sym_SLASH] = ACTIONS(6790), - [anon_sym_PERCENT] = ACTIONS(6790), - [anon_sym_PIPE_PIPE] = ACTIONS(6792), - [anon_sym_AMP_AMP] = ACTIONS(6792), - [anon_sym_PIPE] = ACTIONS(6790), - [anon_sym_CARET] = ACTIONS(6790), - [anon_sym_AMP] = ACTIONS(6790), - [anon_sym_EQ_EQ] = ACTIONS(6792), - [anon_sym_BANG_EQ] = ACTIONS(6792), - [anon_sym_GT] = ACTIONS(6790), - [anon_sym_GT_EQ] = ACTIONS(6790), - [anon_sym_LT_EQ] = ACTIONS(6790), - [anon_sym_LT] = ACTIONS(6790), - [anon_sym_LT_LT] = ACTIONS(6790), - [anon_sym_GT_GT] = ACTIONS(6790), - [anon_sym___extension__] = ACTIONS(6792), - [anon_sym_LBRACE] = ACTIONS(6792), - [anon_sym_LBRACK] = ACTIONS(6792), - [anon_sym_EQ] = ACTIONS(6790), - [anon_sym_const] = ACTIONS(6790), - [anon_sym_constexpr] = ACTIONS(6792), - [anon_sym_volatile] = ACTIONS(6792), - [anon_sym_restrict] = ACTIONS(6792), - [anon_sym___restrict__] = ACTIONS(6792), - [anon_sym__Atomic] = ACTIONS(6792), - [anon_sym__Noreturn] = ACTIONS(6792), - [anon_sym_noreturn] = ACTIONS(6792), - [anon_sym__Nonnull] = ACTIONS(6792), - [anon_sym_mutable] = ACTIONS(6792), - [anon_sym_constinit] = ACTIONS(6792), - [anon_sym_consteval] = ACTIONS(6792), - [anon_sym_alignas] = ACTIONS(6792), - [anon_sym__Alignas] = ACTIONS(6792), - [anon_sym_QMARK] = ACTIONS(6792), - [anon_sym_STAR_EQ] = ACTIONS(6792), - [anon_sym_SLASH_EQ] = ACTIONS(6792), - [anon_sym_PERCENT_EQ] = ACTIONS(6792), - [anon_sym_PLUS_EQ] = ACTIONS(6792), - [anon_sym_DASH_EQ] = ACTIONS(6792), - [anon_sym_LT_LT_EQ] = ACTIONS(6792), - [anon_sym_GT_GT_EQ] = ACTIONS(6790), - [anon_sym_AMP_EQ] = ACTIONS(6792), - [anon_sym_CARET_EQ] = ACTIONS(6792), - [anon_sym_PIPE_EQ] = ACTIONS(6792), - [anon_sym_and_eq] = ACTIONS(6792), - [anon_sym_or_eq] = ACTIONS(6792), - [anon_sym_xor_eq] = ACTIONS(6792), - [anon_sym_LT_EQ_GT] = ACTIONS(6792), - [anon_sym_or] = ACTIONS(6790), - [anon_sym_and] = ACTIONS(6790), - [anon_sym_bitor] = ACTIONS(6792), - [anon_sym_xor] = ACTIONS(6790), - [anon_sym_bitand] = ACTIONS(6792), - [anon_sym_not_eq] = ACTIONS(6792), - [anon_sym_DASH_DASH] = ACTIONS(6792), - [anon_sym_PLUS_PLUS] = ACTIONS(6792), - [anon_sym_DOT] = ACTIONS(6790), - [anon_sym_DOT_STAR] = ACTIONS(6792), - [anon_sym_DASH_GT] = ACTIONS(6792), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6792), - [anon_sym_override] = ACTIONS(6792), - [anon_sym_GT2] = ACTIONS(6792), - [anon_sym_requires] = ACTIONS(6792), + [STATE(2741)] = { + [sym_identifier] = ACTIONS(3626), + [aux_sym_preproc_def_token1] = ACTIONS(3626), + [aux_sym_preproc_if_token1] = ACTIONS(3626), + [aux_sym_preproc_if_token2] = ACTIONS(3626), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), + [aux_sym_preproc_else_token1] = ACTIONS(3626), + [aux_sym_preproc_elif_token1] = ACTIONS(3626), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3626), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3626), + [sym_preproc_directive] = ACTIONS(3626), + [anon_sym_LPAREN2] = ACTIONS(3628), + [anon_sym_TILDE] = ACTIONS(3628), + [anon_sym_STAR] = ACTIONS(3628), + [anon_sym_AMP_AMP] = ACTIONS(3628), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym___extension__] = ACTIONS(3626), + [anon_sym_typedef] = ACTIONS(3626), + [anon_sym_virtual] = ACTIONS(3626), + [anon_sym_extern] = ACTIONS(3626), + [anon_sym___attribute__] = ACTIONS(3626), + [anon_sym___attribute] = ACTIONS(3626), + [anon_sym_using] = ACTIONS(3626), + [anon_sym_COLON_COLON] = ACTIONS(3628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), + [anon_sym___declspec] = ACTIONS(3626), + [anon_sym___based] = ACTIONS(3626), + [anon_sym_signed] = ACTIONS(3626), + [anon_sym_unsigned] = ACTIONS(3626), + [anon_sym_long] = ACTIONS(3626), + [anon_sym_short] = ACTIONS(3626), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_static] = ACTIONS(3626), + [anon_sym_register] = ACTIONS(3626), + [anon_sym_inline] = ACTIONS(3626), + [anon_sym___inline] = ACTIONS(3626), + [anon_sym___inline__] = ACTIONS(3626), + [anon_sym___forceinline] = ACTIONS(3626), + [anon_sym_thread_local] = ACTIONS(3626), + [anon_sym___thread] = ACTIONS(3626), + [anon_sym_const] = ACTIONS(3626), + [anon_sym_constexpr] = ACTIONS(3626), + [anon_sym_volatile] = ACTIONS(3626), + [anon_sym_restrict] = ACTIONS(3626), + [anon_sym___restrict__] = ACTIONS(3626), + [anon_sym__Atomic] = ACTIONS(3626), + [anon_sym__Noreturn] = ACTIONS(3626), + [anon_sym_noreturn] = ACTIONS(3626), + [anon_sym__Nonnull] = ACTIONS(3626), + [anon_sym_mutable] = ACTIONS(3626), + [anon_sym_constinit] = ACTIONS(3626), + [anon_sym_consteval] = ACTIONS(3626), + [anon_sym_alignas] = ACTIONS(3626), + [anon_sym__Alignas] = ACTIONS(3626), + [sym_primitive_type] = ACTIONS(3626), + [anon_sym_enum] = ACTIONS(3626), + [anon_sym_class] = ACTIONS(3626), + [anon_sym_struct] = ACTIONS(3626), + [anon_sym_union] = ACTIONS(3626), + [anon_sym_typename] = ACTIONS(3626), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3626), + [anon_sym_decltype] = ACTIONS(3626), + [anon_sym_explicit] = ACTIONS(3626), + [anon_sym_private] = ACTIONS(3626), + [anon_sym_template] = ACTIONS(3626), + [anon_sym_operator] = ACTIONS(3626), + [anon_sym_friend] = ACTIONS(3626), + [anon_sym_public] = ACTIONS(3626), + [anon_sym_protected] = ACTIONS(3626), + [anon_sym_static_assert] = ACTIONS(3626), + [anon_sym_LBRACK_COLON] = ACTIONS(3628), }, - [STATE(3085)] = { - [sym_identifier] = ACTIONS(2803), - [aux_sym_preproc_def_token1] = ACTIONS(2803), - [anon_sym_COMMA] = ACTIONS(3888), - [aux_sym_preproc_if_token1] = ACTIONS(2803), - [aux_sym_preproc_if_token2] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2803), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(3888), - [anon_sym___extension__] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2803), - [anon_sym_virtual] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym___attribute__] = ACTIONS(2803), - [anon_sym___attribute] = ACTIONS(2803), - [anon_sym_using] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2803), - [anon_sym___based] = ACTIONS(2803), - [anon_sym_signed] = ACTIONS(2803), - [anon_sym_unsigned] = ACTIONS(2803), - [anon_sym_long] = ACTIONS(2803), - [anon_sym_short] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_register] = ACTIONS(2803), - [anon_sym_inline] = ACTIONS(2803), - [anon_sym___inline] = ACTIONS(2803), - [anon_sym___inline__] = ACTIONS(2803), - [anon_sym___forceinline] = ACTIONS(2803), - [anon_sym_thread_local] = ACTIONS(2803), - [anon_sym___thread] = ACTIONS(2803), - [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__Nonnull] = ACTIONS(2803), - [anon_sym_mutable] = ACTIONS(2803), - [anon_sym_constinit] = ACTIONS(2803), - [anon_sym_consteval] = ACTIONS(2803), - [anon_sym_alignas] = ACTIONS(2803), - [anon_sym__Alignas] = ACTIONS(2803), - [sym_primitive_type] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_typename] = ACTIONS(2803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2803), - [anon_sym_decltype] = ACTIONS(2803), - [anon_sym_explicit] = ACTIONS(2803), - [anon_sym_private] = ACTIONS(2803), - [anon_sym_template] = ACTIONS(2803), - [anon_sym_operator] = ACTIONS(2803), - [anon_sym_friend] = ACTIONS(2803), - [anon_sym_public] = ACTIONS(2803), - [anon_sym_protected] = ACTIONS(2803), - [anon_sym_static_assert] = ACTIONS(2803), - [anon_sym_LBRACK_COLON] = ACTIONS(2801), + [STATE(2742)] = { + [sym_template_argument_list] = STATE(2928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), + [anon_sym_COMMA] = ACTIONS(7090), + [anon_sym_RPAREN] = ACTIONS(7090), + [anon_sym_LPAREN2] = ACTIONS(7090), + [anon_sym_DASH] = ACTIONS(7085), + [anon_sym_PLUS] = ACTIONS(7085), + [anon_sym_STAR] = ACTIONS(7085), + [anon_sym_SLASH] = ACTIONS(7085), + [anon_sym_PERCENT] = ACTIONS(7085), + [anon_sym_PIPE_PIPE] = ACTIONS(7090), + [anon_sym_AMP_AMP] = ACTIONS(7090), + [anon_sym_PIPE] = ACTIONS(7085), + [anon_sym_CARET] = ACTIONS(7085), + [anon_sym_AMP] = ACTIONS(7085), + [anon_sym_EQ_EQ] = ACTIONS(7090), + [anon_sym_BANG_EQ] = ACTIONS(7090), + [anon_sym_GT] = ACTIONS(7085), + [anon_sym_GT_EQ] = ACTIONS(7090), + [anon_sym_LT_EQ] = ACTIONS(7085), + [anon_sym_LT] = ACTIONS(8198), + [anon_sym_LT_LT] = ACTIONS(7085), + [anon_sym_GT_GT] = ACTIONS(7085), + [anon_sym___extension__] = ACTIONS(7090), + [anon_sym___attribute__] = ACTIONS(7090), + [anon_sym___attribute] = ACTIONS(7085), + [anon_sym_COLON] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7087), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_LBRACK] = ACTIONS(7090), + [anon_sym_EQ] = ACTIONS(7085), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7090), + [anon_sym_volatile] = ACTIONS(7090), + [anon_sym_restrict] = ACTIONS(7090), + [anon_sym___restrict__] = ACTIONS(7090), + [anon_sym__Atomic] = ACTIONS(7090), + [anon_sym__Noreturn] = ACTIONS(7090), + [anon_sym_noreturn] = ACTIONS(7090), + [anon_sym__Nonnull] = ACTIONS(7090), + [anon_sym_mutable] = ACTIONS(7090), + [anon_sym_constinit] = ACTIONS(7090), + [anon_sym_consteval] = ACTIONS(7090), + [anon_sym_alignas] = ACTIONS(7090), + [anon_sym__Alignas] = ACTIONS(7090), + [anon_sym_QMARK] = ACTIONS(7090), + [anon_sym_STAR_EQ] = ACTIONS(7090), + [anon_sym_SLASH_EQ] = ACTIONS(7090), + [anon_sym_PERCENT_EQ] = ACTIONS(7090), + [anon_sym_PLUS_EQ] = ACTIONS(7090), + [anon_sym_DASH_EQ] = ACTIONS(7090), + [anon_sym_LT_LT_EQ] = ACTIONS(7090), + [anon_sym_GT_GT_EQ] = ACTIONS(7090), + [anon_sym_AMP_EQ] = ACTIONS(7090), + [anon_sym_CARET_EQ] = ACTIONS(7090), + [anon_sym_PIPE_EQ] = ACTIONS(7090), + [anon_sym_LT_EQ_GT] = ACTIONS(7090), + [anon_sym_or] = ACTIONS(7090), + [anon_sym_and] = ACTIONS(7090), + [anon_sym_bitor] = ACTIONS(7090), + [anon_sym_xor] = ACTIONS(7090), + [anon_sym_bitand] = ACTIONS(7090), + [anon_sym_not_eq] = ACTIONS(7090), + [anon_sym_DASH_DASH] = ACTIONS(7090), + [anon_sym_PLUS_PLUS] = ACTIONS(7090), + [anon_sym_DOT] = ACTIONS(7085), + [anon_sym_DOT_STAR] = ACTIONS(7090), + [anon_sym_DASH_GT] = ACTIONS(7085), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7090), + [anon_sym_override] = ACTIONS(7090), + [anon_sym_requires] = ACTIONS(7090), + [anon_sym_DASH_GT_STAR] = ACTIONS(7090), }, - [STATE(3086)] = { - [sym_identifier] = ACTIONS(7223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7225), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7225), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7225), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7225), - [anon_sym_GT_GT] = ACTIONS(7225), - [anon_sym_SEMI] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7223), - [anon_sym___attribute__] = ACTIONS(7223), - [anon_sym___attribute] = ACTIONS(7223), - [anon_sym_COLON] = ACTIONS(7223), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), - [anon_sym___based] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_RBRACE] = ACTIONS(7225), - [anon_sym_signed] = ACTIONS(7223), - [anon_sym_unsigned] = ACTIONS(7223), - [anon_sym_long] = ACTIONS(7223), - [anon_sym_short] = ACTIONS(7223), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7223), - [anon_sym_volatile] = ACTIONS(7223), - [anon_sym_restrict] = ACTIONS(7223), - [anon_sym___restrict__] = ACTIONS(7223), - [anon_sym__Atomic] = ACTIONS(7223), - [anon_sym__Noreturn] = ACTIONS(7223), - [anon_sym_noreturn] = ACTIONS(7223), - [anon_sym__Nonnull] = ACTIONS(7223), - [anon_sym_mutable] = ACTIONS(7223), - [anon_sym_constinit] = ACTIONS(7223), - [anon_sym_consteval] = ACTIONS(7223), - [anon_sym_alignas] = ACTIONS(7223), - [anon_sym__Alignas] = ACTIONS(7223), - [sym_primitive_type] = ACTIONS(7223), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7223), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7223), - [anon_sym_not_eq] = ACTIONS(7223), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7223), - [anon_sym_override] = ACTIONS(7223), - [anon_sym_requires] = ACTIONS(7223), - [anon_sym_COLON_RBRACK] = ACTIONS(7225), + [STATE(2743)] = { + [sym_identifier] = ACTIONS(8643), + [aux_sym_preproc_def_token1] = ACTIONS(8643), + [aux_sym_preproc_if_token1] = ACTIONS(8643), + [aux_sym_preproc_if_token2] = ACTIONS(8643), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8643), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8643), + [aux_sym_preproc_else_token1] = ACTIONS(8643), + [aux_sym_preproc_elif_token1] = ACTIONS(8643), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8643), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8643), + [sym_preproc_directive] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8645), + [anon_sym_TILDE] = ACTIONS(8645), + [anon_sym_STAR] = ACTIONS(8645), + [anon_sym_AMP_AMP] = ACTIONS(8645), + [anon_sym_AMP] = ACTIONS(8643), + [anon_sym_SEMI] = ACTIONS(8645), + [anon_sym___extension__] = ACTIONS(8643), + [anon_sym_typedef] = ACTIONS(8643), + [anon_sym_virtual] = ACTIONS(8643), + [anon_sym_extern] = ACTIONS(8643), + [anon_sym___attribute__] = ACTIONS(8643), + [anon_sym___attribute] = ACTIONS(8643), + [anon_sym_using] = ACTIONS(8643), + [anon_sym_COLON_COLON] = ACTIONS(8645), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8645), + [anon_sym___declspec] = ACTIONS(8643), + [anon_sym___based] = ACTIONS(8643), + [anon_sym_signed] = ACTIONS(8643), + [anon_sym_unsigned] = ACTIONS(8643), + [anon_sym_long] = ACTIONS(8643), + [anon_sym_short] = ACTIONS(8643), + [anon_sym_LBRACK] = ACTIONS(8643), + [anon_sym_static] = ACTIONS(8643), + [anon_sym_register] = ACTIONS(8643), + [anon_sym_inline] = ACTIONS(8643), + [anon_sym___inline] = ACTIONS(8643), + [anon_sym___inline__] = ACTIONS(8643), + [anon_sym___forceinline] = ACTIONS(8643), + [anon_sym_thread_local] = ACTIONS(8643), + [anon_sym___thread] = ACTIONS(8643), + [anon_sym_const] = ACTIONS(8643), + [anon_sym_constexpr] = ACTIONS(8643), + [anon_sym_volatile] = ACTIONS(8643), + [anon_sym_restrict] = ACTIONS(8643), + [anon_sym___restrict__] = ACTIONS(8643), + [anon_sym__Atomic] = ACTIONS(8643), + [anon_sym__Noreturn] = ACTIONS(8643), + [anon_sym_noreturn] = ACTIONS(8643), + [anon_sym__Nonnull] = ACTIONS(8643), + [anon_sym_mutable] = ACTIONS(8643), + [anon_sym_constinit] = ACTIONS(8643), + [anon_sym_consteval] = ACTIONS(8643), + [anon_sym_alignas] = ACTIONS(8643), + [anon_sym__Alignas] = ACTIONS(8643), + [sym_primitive_type] = ACTIONS(8643), + [anon_sym_enum] = ACTIONS(8643), + [anon_sym_class] = ACTIONS(8643), + [anon_sym_struct] = ACTIONS(8643), + [anon_sym_union] = ACTIONS(8643), + [anon_sym_typename] = ACTIONS(8643), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8643), + [anon_sym_decltype] = ACTIONS(8643), + [anon_sym_explicit] = ACTIONS(8643), + [anon_sym_private] = ACTIONS(8643), + [anon_sym_template] = ACTIONS(8643), + [anon_sym_operator] = ACTIONS(8643), + [anon_sym_friend] = ACTIONS(8643), + [anon_sym_public] = ACTIONS(8643), + [anon_sym_protected] = ACTIONS(8643), + [anon_sym_static_assert] = ACTIONS(8643), + [anon_sym_LBRACK_COLON] = ACTIONS(8645), }, - [STATE(3087)] = { - [sym_identifier] = ACTIONS(7223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7225), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7225), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7225), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7225), - [anon_sym_GT_GT] = ACTIONS(7225), - [anon_sym_SEMI] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7223), - [anon_sym___attribute__] = ACTIONS(7223), - [anon_sym___attribute] = ACTIONS(7223), - [anon_sym_COLON] = ACTIONS(7223), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), - [anon_sym___based] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_RBRACE] = ACTIONS(7225), - [anon_sym_signed] = ACTIONS(7223), - [anon_sym_unsigned] = ACTIONS(7223), - [anon_sym_long] = ACTIONS(7223), - [anon_sym_short] = ACTIONS(7223), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7223), - [anon_sym_volatile] = ACTIONS(7223), - [anon_sym_restrict] = ACTIONS(7223), - [anon_sym___restrict__] = ACTIONS(7223), - [anon_sym__Atomic] = ACTIONS(7223), - [anon_sym__Noreturn] = ACTIONS(7223), - [anon_sym_noreturn] = ACTIONS(7223), - [anon_sym__Nonnull] = ACTIONS(7223), - [anon_sym_mutable] = ACTIONS(7223), - [anon_sym_constinit] = ACTIONS(7223), - [anon_sym_consteval] = ACTIONS(7223), - [anon_sym_alignas] = ACTIONS(7223), - [anon_sym__Alignas] = ACTIONS(7223), - [sym_primitive_type] = ACTIONS(7223), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7223), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7223), - [anon_sym_not_eq] = ACTIONS(7223), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), + [STATE(2744)] = { + [sym_identifier] = ACTIONS(3630), + [aux_sym_preproc_def_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token2] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), + [aux_sym_preproc_else_token1] = ACTIONS(3630), + [aux_sym_preproc_elif_token1] = ACTIONS(3630), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3630), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3630), + [sym_preproc_directive] = ACTIONS(3630), + [anon_sym_LPAREN2] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_AMP] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym___extension__] = ACTIONS(3630), + [anon_sym_typedef] = ACTIONS(3630), + [anon_sym_virtual] = ACTIONS(3630), + [anon_sym_extern] = ACTIONS(3630), + [anon_sym___attribute__] = ACTIONS(3630), + [anon_sym___attribute] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), + [anon_sym___declspec] = ACTIONS(3630), + [anon_sym___based] = ACTIONS(3630), + [anon_sym_signed] = ACTIONS(3630), + [anon_sym_unsigned] = ACTIONS(3630), + [anon_sym_long] = ACTIONS(3630), + [anon_sym_short] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_register] = ACTIONS(3630), + [anon_sym_inline] = ACTIONS(3630), + [anon_sym___inline] = ACTIONS(3630), + [anon_sym___inline__] = ACTIONS(3630), + [anon_sym___forceinline] = ACTIONS(3630), + [anon_sym_thread_local] = ACTIONS(3630), + [anon_sym___thread] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_constexpr] = ACTIONS(3630), + [anon_sym_volatile] = ACTIONS(3630), + [anon_sym_restrict] = ACTIONS(3630), + [anon_sym___restrict__] = ACTIONS(3630), + [anon_sym__Atomic] = ACTIONS(3630), + [anon_sym__Noreturn] = ACTIONS(3630), + [anon_sym_noreturn] = ACTIONS(3630), + [anon_sym__Nonnull] = ACTIONS(3630), + [anon_sym_mutable] = ACTIONS(3630), + [anon_sym_constinit] = ACTIONS(3630), + [anon_sym_consteval] = ACTIONS(3630), + [anon_sym_alignas] = ACTIONS(3630), + [anon_sym__Alignas] = ACTIONS(3630), + [sym_primitive_type] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_struct] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3630), + [anon_sym_typename] = ACTIONS(3630), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7223), - [anon_sym_override] = ACTIONS(7223), - [anon_sym_requires] = ACTIONS(7223), - [anon_sym_COLON_RBRACK] = ACTIONS(7225), + [sym_auto] = ACTIONS(3630), + [anon_sym_decltype] = ACTIONS(3630), + [anon_sym_explicit] = ACTIONS(3630), + [anon_sym_private] = ACTIONS(3630), + [anon_sym_template] = ACTIONS(3630), + [anon_sym_operator] = ACTIONS(3630), + [anon_sym_friend] = ACTIONS(3630), + [anon_sym_public] = ACTIONS(3630), + [anon_sym_protected] = ACTIONS(3630), + [anon_sym_static_assert] = ACTIONS(3630), + [anon_sym_LBRACK_COLON] = ACTIONS(3632), }, - [STATE(3088)] = { - [sym_identifier] = ACTIONS(7283), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7285), - [anon_sym_COMMA] = ACTIONS(7285), - [anon_sym_RPAREN] = ACTIONS(7285), - [anon_sym_LPAREN2] = ACTIONS(7285), - [anon_sym_DASH] = ACTIONS(7283), - [anon_sym_PLUS] = ACTIONS(7283), - [anon_sym_STAR] = ACTIONS(7285), - [anon_sym_SLASH] = ACTIONS(7283), - [anon_sym_PERCENT] = ACTIONS(7285), - [anon_sym_PIPE_PIPE] = ACTIONS(7285), - [anon_sym_AMP_AMP] = ACTIONS(7285), - [anon_sym_PIPE] = ACTIONS(7283), - [anon_sym_CARET] = ACTIONS(7285), - [anon_sym_AMP] = ACTIONS(7283), - [anon_sym_EQ_EQ] = ACTIONS(7285), - [anon_sym_BANG_EQ] = ACTIONS(7285), - [anon_sym_GT] = ACTIONS(7283), - [anon_sym_GT_EQ] = ACTIONS(7285), - [anon_sym_LT_EQ] = ACTIONS(7283), - [anon_sym_LT] = ACTIONS(7283), - [anon_sym_LT_LT] = ACTIONS(7285), - [anon_sym_GT_GT] = ACTIONS(7285), - [anon_sym_SEMI] = ACTIONS(7285), - [anon_sym___extension__] = ACTIONS(7283), - [anon_sym___attribute__] = ACTIONS(7283), - [anon_sym___attribute] = ACTIONS(7283), - [anon_sym_COLON] = ACTIONS(7283), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7285), - [anon_sym___based] = ACTIONS(7283), - [anon_sym_LBRACE] = ACTIONS(7285), - [anon_sym_RBRACE] = ACTIONS(7285), - [anon_sym_signed] = ACTIONS(7283), - [anon_sym_unsigned] = ACTIONS(7283), - [anon_sym_long] = ACTIONS(7283), - [anon_sym_short] = ACTIONS(7283), - [anon_sym_LBRACK] = ACTIONS(7285), - [anon_sym_const] = ACTIONS(7283), - [anon_sym_constexpr] = ACTIONS(7283), - [anon_sym_volatile] = ACTIONS(7283), - [anon_sym_restrict] = ACTIONS(7283), - [anon_sym___restrict__] = ACTIONS(7283), - [anon_sym__Atomic] = ACTIONS(7283), - [anon_sym__Noreturn] = ACTIONS(7283), - [anon_sym_noreturn] = ACTIONS(7283), - [anon_sym__Nonnull] = ACTIONS(7283), - [anon_sym_mutable] = ACTIONS(7283), - [anon_sym_constinit] = ACTIONS(7283), - [anon_sym_consteval] = ACTIONS(7283), - [anon_sym_alignas] = ACTIONS(7283), - [anon_sym__Alignas] = ACTIONS(7283), - [sym_primitive_type] = ACTIONS(7283), - [anon_sym_QMARK] = ACTIONS(7285), - [anon_sym_LT_EQ_GT] = ACTIONS(7285), - [anon_sym_or] = ACTIONS(7283), - [anon_sym_and] = ACTIONS(7283), - [anon_sym_bitor] = ACTIONS(7283), - [anon_sym_xor] = ACTIONS(7283), - [anon_sym_bitand] = ACTIONS(7283), - [anon_sym_not_eq] = ACTIONS(7283), - [anon_sym_DASH_DASH] = ACTIONS(7285), - [anon_sym_PLUS_PLUS] = ACTIONS(7285), - [anon_sym_DOT] = ACTIONS(7283), - [anon_sym_DOT_STAR] = ACTIONS(7285), - [anon_sym_DASH_GT] = ACTIONS(7285), + [STATE(2745)] = { + [sym_identifier] = ACTIONS(4192), + [aux_sym_preproc_def_token1] = ACTIONS(4192), + [aux_sym_preproc_if_token1] = ACTIONS(4192), + [aux_sym_preproc_if_token2] = ACTIONS(4192), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4192), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4192), + [aux_sym_preproc_else_token1] = ACTIONS(4192), + [aux_sym_preproc_elif_token1] = ACTIONS(4192), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4192), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4192), + [sym_preproc_directive] = ACTIONS(4192), + [anon_sym_LPAREN2] = ACTIONS(4194), + [anon_sym_TILDE] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [anon_sym_AMP_AMP] = ACTIONS(4194), + [anon_sym_AMP] = ACTIONS(4192), + [anon_sym_SEMI] = ACTIONS(4194), + [anon_sym___extension__] = ACTIONS(4192), + [anon_sym_typedef] = ACTIONS(4192), + [anon_sym_virtual] = ACTIONS(4192), + [anon_sym_extern] = ACTIONS(4192), + [anon_sym___attribute__] = ACTIONS(4192), + [anon_sym___attribute] = ACTIONS(4192), + [anon_sym_using] = ACTIONS(4192), + [anon_sym_COLON_COLON] = ACTIONS(4194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), + [anon_sym___declspec] = ACTIONS(4192), + [anon_sym___based] = ACTIONS(4192), + [anon_sym_signed] = ACTIONS(4192), + [anon_sym_unsigned] = ACTIONS(4192), + [anon_sym_long] = ACTIONS(4192), + [anon_sym_short] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_static] = ACTIONS(4192), + [anon_sym_register] = ACTIONS(4192), + [anon_sym_inline] = ACTIONS(4192), + [anon_sym___inline] = ACTIONS(4192), + [anon_sym___inline__] = ACTIONS(4192), + [anon_sym___forceinline] = ACTIONS(4192), + [anon_sym_thread_local] = ACTIONS(4192), + [anon_sym___thread] = ACTIONS(4192), + [anon_sym_const] = ACTIONS(4192), + [anon_sym_constexpr] = ACTIONS(4192), + [anon_sym_volatile] = ACTIONS(4192), + [anon_sym_restrict] = ACTIONS(4192), + [anon_sym___restrict__] = ACTIONS(4192), + [anon_sym__Atomic] = ACTIONS(4192), + [anon_sym__Noreturn] = ACTIONS(4192), + [anon_sym_noreturn] = ACTIONS(4192), + [anon_sym__Nonnull] = ACTIONS(4192), + [anon_sym_mutable] = ACTIONS(4192), + [anon_sym_constinit] = ACTIONS(4192), + [anon_sym_consteval] = ACTIONS(4192), + [anon_sym_alignas] = ACTIONS(4192), + [anon_sym__Alignas] = ACTIONS(4192), + [sym_primitive_type] = ACTIONS(4192), + [anon_sym_enum] = ACTIONS(4192), + [anon_sym_class] = ACTIONS(4192), + [anon_sym_struct] = ACTIONS(4192), + [anon_sym_union] = ACTIONS(4192), + [anon_sym_typename] = ACTIONS(4192), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7283), - [anon_sym_override] = ACTIONS(7283), - [anon_sym_requires] = ACTIONS(7283), - [anon_sym_COLON_RBRACK] = ACTIONS(7285), + [sym_auto] = ACTIONS(4192), + [anon_sym_decltype] = ACTIONS(4192), + [anon_sym_explicit] = ACTIONS(4192), + [anon_sym_private] = ACTIONS(4192), + [anon_sym_template] = ACTIONS(4192), + [anon_sym_operator] = ACTIONS(4192), + [anon_sym_friend] = ACTIONS(4192), + [anon_sym_public] = ACTIONS(4192), + [anon_sym_protected] = ACTIONS(4192), + [anon_sym_static_assert] = ACTIONS(4192), + [anon_sym_LBRACK_COLON] = ACTIONS(4194), }, - [STATE(3089)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7207), - [anon_sym_COMMA] = ACTIONS(7207), - [anon_sym_LPAREN2] = ACTIONS(7207), - [anon_sym_DASH] = ACTIONS(7205), - [anon_sym_PLUS] = ACTIONS(7205), - [anon_sym_STAR] = ACTIONS(7205), - [anon_sym_SLASH] = ACTIONS(7205), - [anon_sym_PERCENT] = ACTIONS(7205), - [anon_sym_PIPE_PIPE] = ACTIONS(7207), - [anon_sym_AMP_AMP] = ACTIONS(7207), - [anon_sym_PIPE] = ACTIONS(7205), - [anon_sym_CARET] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7205), - [anon_sym_EQ_EQ] = ACTIONS(7207), - [anon_sym_BANG_EQ] = ACTIONS(7207), - [anon_sym_GT] = ACTIONS(7205), - [anon_sym_GT_EQ] = ACTIONS(7205), - [anon_sym_LT_EQ] = ACTIONS(7205), - [anon_sym_LT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_GT_GT] = ACTIONS(7205), - [anon_sym___extension__] = ACTIONS(7207), - [anon_sym_LBRACE] = ACTIONS(7207), - [anon_sym_LBRACK] = ACTIONS(7207), - [anon_sym_EQ] = ACTIONS(7205), - [anon_sym_const] = ACTIONS(7205), - [anon_sym_constexpr] = ACTIONS(7207), - [anon_sym_volatile] = ACTIONS(7207), - [anon_sym_restrict] = ACTIONS(7207), - [anon_sym___restrict__] = ACTIONS(7207), - [anon_sym__Atomic] = ACTIONS(7207), - [anon_sym__Noreturn] = ACTIONS(7207), - [anon_sym_noreturn] = ACTIONS(7207), - [anon_sym__Nonnull] = ACTIONS(7207), - [anon_sym_mutable] = ACTIONS(7207), - [anon_sym_constinit] = ACTIONS(7207), - [anon_sym_consteval] = ACTIONS(7207), - [anon_sym_alignas] = ACTIONS(7207), - [anon_sym__Alignas] = ACTIONS(7207), - [anon_sym_QMARK] = ACTIONS(7207), - [anon_sym_STAR_EQ] = ACTIONS(7207), - [anon_sym_SLASH_EQ] = ACTIONS(7207), - [anon_sym_PERCENT_EQ] = ACTIONS(7207), - [anon_sym_PLUS_EQ] = ACTIONS(7207), - [anon_sym_DASH_EQ] = ACTIONS(7207), - [anon_sym_LT_LT_EQ] = ACTIONS(7207), - [anon_sym_GT_GT_EQ] = ACTIONS(7205), - [anon_sym_AMP_EQ] = ACTIONS(7207), - [anon_sym_CARET_EQ] = ACTIONS(7207), - [anon_sym_PIPE_EQ] = ACTIONS(7207), - [anon_sym_and_eq] = ACTIONS(7207), - [anon_sym_or_eq] = ACTIONS(7207), - [anon_sym_xor_eq] = ACTIONS(7207), - [anon_sym_LT_EQ_GT] = ACTIONS(7207), - [anon_sym_or] = ACTIONS(7205), - [anon_sym_and] = ACTIONS(7205), - [anon_sym_bitor] = ACTIONS(7207), - [anon_sym_xor] = ACTIONS(7205), - [anon_sym_bitand] = ACTIONS(7207), - [anon_sym_not_eq] = ACTIONS(7207), - [anon_sym_DASH_DASH] = ACTIONS(7207), - [anon_sym_PLUS_PLUS] = ACTIONS(7207), - [anon_sym_DOT] = ACTIONS(7205), - [anon_sym_DOT_STAR] = ACTIONS(7207), - [anon_sym_DASH_GT] = ACTIONS(7207), + [STATE(2746)] = { + [sym_identifier] = ACTIONS(4168), + [aux_sym_preproc_def_token1] = ACTIONS(4168), + [aux_sym_preproc_if_token1] = ACTIONS(4168), + [aux_sym_preproc_if_token2] = ACTIONS(4168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4168), + [aux_sym_preproc_else_token1] = ACTIONS(4168), + [aux_sym_preproc_elif_token1] = ACTIONS(4168), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4168), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4168), + [sym_preproc_directive] = ACTIONS(4168), + [anon_sym_LPAREN2] = ACTIONS(4170), + [anon_sym_TILDE] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_AMP_AMP] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4170), + [anon_sym___extension__] = ACTIONS(4168), + [anon_sym_typedef] = ACTIONS(4168), + [anon_sym_virtual] = ACTIONS(4168), + [anon_sym_extern] = ACTIONS(4168), + [anon_sym___attribute__] = ACTIONS(4168), + [anon_sym___attribute] = ACTIONS(4168), + [anon_sym_using] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4170), + [anon_sym___declspec] = ACTIONS(4168), + [anon_sym___based] = ACTIONS(4168), + [anon_sym_signed] = ACTIONS(4168), + [anon_sym_unsigned] = ACTIONS(4168), + [anon_sym_long] = ACTIONS(4168), + [anon_sym_short] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_static] = ACTIONS(4168), + [anon_sym_register] = ACTIONS(4168), + [anon_sym_inline] = ACTIONS(4168), + [anon_sym___inline] = ACTIONS(4168), + [anon_sym___inline__] = ACTIONS(4168), + [anon_sym___forceinline] = ACTIONS(4168), + [anon_sym_thread_local] = ACTIONS(4168), + [anon_sym___thread] = ACTIONS(4168), + [anon_sym_const] = ACTIONS(4168), + [anon_sym_constexpr] = ACTIONS(4168), + [anon_sym_volatile] = ACTIONS(4168), + [anon_sym_restrict] = ACTIONS(4168), + [anon_sym___restrict__] = ACTIONS(4168), + [anon_sym__Atomic] = ACTIONS(4168), + [anon_sym__Noreturn] = ACTIONS(4168), + [anon_sym_noreturn] = ACTIONS(4168), + [anon_sym__Nonnull] = ACTIONS(4168), + [anon_sym_mutable] = ACTIONS(4168), + [anon_sym_constinit] = ACTIONS(4168), + [anon_sym_consteval] = ACTIONS(4168), + [anon_sym_alignas] = ACTIONS(4168), + [anon_sym__Alignas] = ACTIONS(4168), + [sym_primitive_type] = ACTIONS(4168), + [anon_sym_enum] = ACTIONS(4168), + [anon_sym_class] = ACTIONS(4168), + [anon_sym_struct] = ACTIONS(4168), + [anon_sym_union] = ACTIONS(4168), + [anon_sym_typename] = ACTIONS(4168), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7207), - [anon_sym_override] = ACTIONS(7207), - [anon_sym_GT2] = ACTIONS(7207), - [anon_sym_requires] = ACTIONS(7207), - }, - [STATE(3090)] = { - [sym_type_qualifier] = STATE(3090), - [sym_alignas_qualifier] = STATE(3482), - [aux_sym__type_definition_type_repeat1] = STATE(3090), - [sym_identifier] = ACTIONS(6525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_RPAREN] = ACTIONS(6527), - [anon_sym_LPAREN2] = ACTIONS(6527), - [anon_sym_TILDE] = ACTIONS(6527), - [anon_sym_STAR] = ACTIONS(6527), - [anon_sym_AMP_AMP] = ACTIONS(6527), - [anon_sym_AMP] = ACTIONS(6525), - [anon_sym_SEMI] = ACTIONS(6527), - [anon_sym___extension__] = ACTIONS(8679), - [anon_sym_virtual] = ACTIONS(6525), - [anon_sym_extern] = ACTIONS(6525), - [anon_sym___attribute__] = ACTIONS(6525), - [anon_sym___attribute] = ACTIONS(6525), - [anon_sym_COLON_COLON] = ACTIONS(6527), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6527), - [anon_sym___declspec] = ACTIONS(6525), - [anon_sym___based] = ACTIONS(6525), - [anon_sym___cdecl] = ACTIONS(6525), - [anon_sym___clrcall] = ACTIONS(6525), - [anon_sym___stdcall] = ACTIONS(6525), - [anon_sym___fastcall] = ACTIONS(6525), - [anon_sym___thiscall] = ACTIONS(6525), - [anon_sym___vectorcall] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6527), - [anon_sym_signed] = ACTIONS(6525), - [anon_sym_unsigned] = ACTIONS(6525), - [anon_sym_long] = ACTIONS(6525), - [anon_sym_short] = ACTIONS(6525), - [anon_sym_LBRACK] = ACTIONS(6525), - [anon_sym_static] = ACTIONS(6525), - [anon_sym_EQ] = ACTIONS(6527), - [anon_sym_register] = ACTIONS(6525), - [anon_sym_inline] = ACTIONS(6525), - [anon_sym___inline] = ACTIONS(6525), - [anon_sym___inline__] = ACTIONS(6525), - [anon_sym___forceinline] = ACTIONS(6525), - [anon_sym_thread_local] = ACTIONS(6525), - [anon_sym___thread] = ACTIONS(6525), - [anon_sym_const] = ACTIONS(8679), - [anon_sym_constexpr] = ACTIONS(8679), - [anon_sym_volatile] = ACTIONS(8679), - [anon_sym_restrict] = ACTIONS(8679), - [anon_sym___restrict__] = ACTIONS(8679), - [anon_sym__Atomic] = ACTIONS(8679), - [anon_sym__Noreturn] = ACTIONS(8679), - [anon_sym_noreturn] = ACTIONS(8679), - [anon_sym__Nonnull] = ACTIONS(8679), - [anon_sym_mutable] = ACTIONS(8679), - [anon_sym_constinit] = ACTIONS(8679), - [anon_sym_consteval] = ACTIONS(8679), - [anon_sym_alignas] = ACTIONS(8682), - [anon_sym__Alignas] = ACTIONS(8682), - [sym_primitive_type] = ACTIONS(6525), - [anon_sym_enum] = ACTIONS(6525), - [anon_sym_class] = ACTIONS(6525), - [anon_sym_struct] = ACTIONS(6525), - [anon_sym_union] = ACTIONS(6525), - [anon_sym_typename] = ACTIONS(6525), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6525), - [anon_sym_decltype] = ACTIONS(6525), - [anon_sym_template] = ACTIONS(6525), - [anon_sym_GT2] = ACTIONS(6527), - [anon_sym_operator] = ACTIONS(6525), - [anon_sym_LBRACK_COLON] = ACTIONS(6527), - }, - [STATE(3091)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7211), - [anon_sym_COMMA] = ACTIONS(7211), - [anon_sym_LPAREN2] = ACTIONS(7211), - [anon_sym_DASH] = ACTIONS(7209), - [anon_sym_PLUS] = ACTIONS(7209), - [anon_sym_STAR] = ACTIONS(7209), - [anon_sym_SLASH] = ACTIONS(7209), - [anon_sym_PERCENT] = ACTIONS(7209), - [anon_sym_PIPE_PIPE] = ACTIONS(7211), - [anon_sym_AMP_AMP] = ACTIONS(7211), - [anon_sym_PIPE] = ACTIONS(7209), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_AMP] = ACTIONS(7209), - [anon_sym_EQ_EQ] = ACTIONS(7211), - [anon_sym_BANG_EQ] = ACTIONS(7211), - [anon_sym_GT] = ACTIONS(7209), - [anon_sym_GT_EQ] = ACTIONS(7209), - [anon_sym_LT_EQ] = ACTIONS(7209), - [anon_sym_LT] = ACTIONS(7209), - [anon_sym_LT_LT] = ACTIONS(7209), - [anon_sym_GT_GT] = ACTIONS(7209), - [anon_sym___extension__] = ACTIONS(7211), - [anon_sym_LBRACE] = ACTIONS(7211), - [anon_sym_LBRACK] = ACTIONS(7211), - [anon_sym_EQ] = ACTIONS(7209), - [anon_sym_const] = ACTIONS(7209), - [anon_sym_constexpr] = ACTIONS(7211), - [anon_sym_volatile] = ACTIONS(7211), - [anon_sym_restrict] = ACTIONS(7211), - [anon_sym___restrict__] = ACTIONS(7211), - [anon_sym__Atomic] = ACTIONS(7211), - [anon_sym__Noreturn] = ACTIONS(7211), - [anon_sym_noreturn] = ACTIONS(7211), - [anon_sym__Nonnull] = ACTIONS(7211), - [anon_sym_mutable] = ACTIONS(7211), - [anon_sym_constinit] = ACTIONS(7211), - [anon_sym_consteval] = ACTIONS(7211), - [anon_sym_alignas] = ACTIONS(7211), - [anon_sym__Alignas] = ACTIONS(7211), - [anon_sym_QMARK] = ACTIONS(7211), - [anon_sym_STAR_EQ] = ACTIONS(7211), - [anon_sym_SLASH_EQ] = ACTIONS(7211), - [anon_sym_PERCENT_EQ] = ACTIONS(7211), - [anon_sym_PLUS_EQ] = ACTIONS(7211), - [anon_sym_DASH_EQ] = ACTIONS(7211), - [anon_sym_LT_LT_EQ] = ACTIONS(7211), - [anon_sym_GT_GT_EQ] = ACTIONS(7209), - [anon_sym_AMP_EQ] = ACTIONS(7211), - [anon_sym_CARET_EQ] = ACTIONS(7211), - [anon_sym_PIPE_EQ] = ACTIONS(7211), - [anon_sym_and_eq] = ACTIONS(7211), - [anon_sym_or_eq] = ACTIONS(7211), - [anon_sym_xor_eq] = ACTIONS(7211), - [anon_sym_LT_EQ_GT] = ACTIONS(7211), - [anon_sym_or] = ACTIONS(7209), - [anon_sym_and] = ACTIONS(7209), - [anon_sym_bitor] = ACTIONS(7211), - [anon_sym_xor] = ACTIONS(7209), - [anon_sym_bitand] = ACTIONS(7211), - [anon_sym_not_eq] = ACTIONS(7211), - [anon_sym_DASH_DASH] = ACTIONS(7211), - [anon_sym_PLUS_PLUS] = ACTIONS(7211), - [anon_sym_DOT] = ACTIONS(7209), - [anon_sym_DOT_STAR] = ACTIONS(7211), - [anon_sym_DASH_GT] = ACTIONS(7211), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7211), - [anon_sym_override] = ACTIONS(7211), - [anon_sym_GT2] = ACTIONS(7211), - [anon_sym_requires] = ACTIONS(7211), - }, - [STATE(3092)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7197), - [anon_sym_COMMA] = ACTIONS(7197), - [anon_sym_RPAREN] = ACTIONS(7197), - [anon_sym_LPAREN2] = ACTIONS(7197), - [anon_sym_DASH] = ACTIONS(7195), - [anon_sym_PLUS] = ACTIONS(7195), - [anon_sym_STAR] = ACTIONS(7195), - [anon_sym_SLASH] = ACTIONS(7195), - [anon_sym_PERCENT] = ACTIONS(7195), - [anon_sym_PIPE_PIPE] = ACTIONS(7197), - [anon_sym_AMP_AMP] = ACTIONS(7197), - [anon_sym_PIPE] = ACTIONS(7195), - [anon_sym_CARET] = ACTIONS(7195), - [anon_sym_AMP] = ACTIONS(7195), - [anon_sym_EQ_EQ] = ACTIONS(7197), - [anon_sym_BANG_EQ] = ACTIONS(7197), - [anon_sym_GT] = ACTIONS(7195), - [anon_sym_GT_EQ] = ACTIONS(7197), - [anon_sym_LT_EQ] = ACTIONS(7195), - [anon_sym_LT] = ACTIONS(7195), - [anon_sym_LT_LT] = ACTIONS(7195), - [anon_sym_GT_GT] = ACTIONS(7195), - [anon_sym___extension__] = ACTIONS(7197), - [anon_sym___attribute__] = ACTIONS(7197), - [anon_sym___attribute] = ACTIONS(7195), - [anon_sym_LBRACE] = ACTIONS(7197), - [anon_sym_LBRACK] = ACTIONS(7197), - [anon_sym_EQ] = ACTIONS(7195), - [anon_sym_const] = ACTIONS(7195), - [anon_sym_constexpr] = ACTIONS(7197), - [anon_sym_volatile] = ACTIONS(7197), - [anon_sym_restrict] = ACTIONS(7197), - [anon_sym___restrict__] = ACTIONS(7197), - [anon_sym__Atomic] = ACTIONS(7197), - [anon_sym__Noreturn] = ACTIONS(7197), - [anon_sym_noreturn] = ACTIONS(7197), - [anon_sym__Nonnull] = ACTIONS(7197), - [anon_sym_mutable] = ACTIONS(7197), - [anon_sym_constinit] = ACTIONS(7197), - [anon_sym_consteval] = ACTIONS(7197), - [anon_sym_alignas] = ACTIONS(7197), - [anon_sym__Alignas] = ACTIONS(7197), - [anon_sym_QMARK] = ACTIONS(7197), - [anon_sym_STAR_EQ] = ACTIONS(7197), - [anon_sym_SLASH_EQ] = ACTIONS(7197), - [anon_sym_PERCENT_EQ] = ACTIONS(7197), - [anon_sym_PLUS_EQ] = ACTIONS(7197), - [anon_sym_DASH_EQ] = ACTIONS(7197), - [anon_sym_LT_LT_EQ] = ACTIONS(7197), - [anon_sym_GT_GT_EQ] = ACTIONS(7197), - [anon_sym_AMP_EQ] = ACTIONS(7197), - [anon_sym_CARET_EQ] = ACTIONS(7197), - [anon_sym_PIPE_EQ] = ACTIONS(7197), - [anon_sym_LT_EQ_GT] = ACTIONS(7197), - [anon_sym_or] = ACTIONS(7197), - [anon_sym_and] = ACTIONS(7197), - [anon_sym_bitor] = ACTIONS(7197), - [anon_sym_xor] = ACTIONS(7197), - [anon_sym_bitand] = ACTIONS(7197), - [anon_sym_not_eq] = ACTIONS(7197), - [anon_sym_DASH_DASH] = ACTIONS(7197), - [anon_sym_PLUS_PLUS] = ACTIONS(7197), - [anon_sym_DOT] = ACTIONS(7195), - [anon_sym_DOT_STAR] = ACTIONS(7197), - [anon_sym_DASH_GT] = ACTIONS(7195), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7197), - [anon_sym_override] = ACTIONS(7197), - [anon_sym_requires] = ACTIONS(7197), - [anon_sym_DASH_GT_STAR] = ACTIONS(7197), - }, - [STATE(3093)] = { - [sym_identifier] = ACTIONS(8685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8687), - [anon_sym_COMMA] = ACTIONS(8687), - [anon_sym_RPAREN] = ACTIONS(8687), - [aux_sym_preproc_if_token2] = ACTIONS(8687), - [aux_sym_preproc_else_token1] = ACTIONS(8687), - [aux_sym_preproc_elif_token1] = ACTIONS(8685), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8687), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8687), - [anon_sym_LPAREN2] = ACTIONS(8687), - [anon_sym_DASH] = ACTIONS(8685), - [anon_sym_PLUS] = ACTIONS(8685), - [anon_sym_STAR] = ACTIONS(8685), - [anon_sym_SLASH] = ACTIONS(8685), - [anon_sym_PERCENT] = ACTIONS(8685), - [anon_sym_PIPE_PIPE] = ACTIONS(8687), - [anon_sym_AMP_AMP] = ACTIONS(8687), - [anon_sym_PIPE] = ACTIONS(8685), - [anon_sym_CARET] = ACTIONS(8685), - [anon_sym_AMP] = ACTIONS(8685), - [anon_sym_EQ_EQ] = ACTIONS(8687), - [anon_sym_BANG_EQ] = ACTIONS(8687), - [anon_sym_GT] = ACTIONS(8685), - [anon_sym_GT_EQ] = ACTIONS(8687), - [anon_sym_LT_EQ] = ACTIONS(8685), - [anon_sym_LT] = ACTIONS(8685), - [anon_sym_LT_LT] = ACTIONS(8685), - [anon_sym_GT_GT] = ACTIONS(8685), - [anon_sym_SEMI] = ACTIONS(8687), - [anon_sym___attribute__] = ACTIONS(8685), - [anon_sym___attribute] = ACTIONS(8685), - [anon_sym_COLON] = ACTIONS(8685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8687), - [anon_sym_LBRACE] = ACTIONS(8687), - [anon_sym_RBRACE] = ACTIONS(8687), - [anon_sym_LBRACK] = ACTIONS(8685), - [anon_sym_RBRACK] = ACTIONS(8687), - [anon_sym_EQ] = ACTIONS(8685), - [anon_sym_QMARK] = ACTIONS(8687), - [anon_sym_STAR_EQ] = ACTIONS(8687), - [anon_sym_SLASH_EQ] = ACTIONS(8687), - [anon_sym_PERCENT_EQ] = ACTIONS(8687), - [anon_sym_PLUS_EQ] = ACTIONS(8687), - [anon_sym_DASH_EQ] = ACTIONS(8687), - [anon_sym_LT_LT_EQ] = ACTIONS(8687), - [anon_sym_GT_GT_EQ] = ACTIONS(8687), - [anon_sym_AMP_EQ] = ACTIONS(8687), - [anon_sym_CARET_EQ] = ACTIONS(8687), - [anon_sym_PIPE_EQ] = ACTIONS(8687), - [anon_sym_and_eq] = ACTIONS(8685), - [anon_sym_or_eq] = ACTIONS(8685), - [anon_sym_xor_eq] = ACTIONS(8685), - [anon_sym_LT_EQ_GT] = ACTIONS(8687), - [anon_sym_or] = ACTIONS(8685), - [anon_sym_and] = ACTIONS(8685), - [anon_sym_bitor] = ACTIONS(8685), - [anon_sym_xor] = ACTIONS(8685), - [anon_sym_bitand] = ACTIONS(8685), - [anon_sym_not_eq] = ACTIONS(8685), - [anon_sym_DASH_DASH] = ACTIONS(8687), - [anon_sym_PLUS_PLUS] = ACTIONS(8687), - [anon_sym_asm] = ACTIONS(8685), - [anon_sym___asm__] = ACTIONS(8685), - [anon_sym___asm] = ACTIONS(8685), - [anon_sym_DOT] = ACTIONS(8685), - [anon_sym_DOT_STAR] = ACTIONS(8687), - [anon_sym_DASH_GT] = ACTIONS(8687), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(8685), - [anon_sym_COLON_RBRACK] = ACTIONS(8687), + [sym_auto] = ACTIONS(4168), + [anon_sym_decltype] = ACTIONS(4168), + [anon_sym_explicit] = ACTIONS(4168), + [anon_sym_private] = ACTIONS(4168), + [anon_sym_template] = ACTIONS(4168), + [anon_sym_operator] = ACTIONS(4168), + [anon_sym_friend] = ACTIONS(4168), + [anon_sym_public] = ACTIONS(4168), + [anon_sym_protected] = ACTIONS(4168), + [anon_sym_static_assert] = ACTIONS(4168), + [anon_sym_LBRACK_COLON] = ACTIONS(4170), }, - [STATE(3094)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7221), - [anon_sym_COMMA] = ACTIONS(7221), - [anon_sym_RPAREN] = ACTIONS(7221), - [anon_sym_LPAREN2] = ACTIONS(7221), - [anon_sym_DASH] = ACTIONS(7219), - [anon_sym_PLUS] = ACTIONS(7219), - [anon_sym_STAR] = ACTIONS(7219), - [anon_sym_SLASH] = ACTIONS(7219), - [anon_sym_PERCENT] = ACTIONS(7219), - [anon_sym_PIPE_PIPE] = ACTIONS(7221), - [anon_sym_AMP_AMP] = ACTIONS(7221), - [anon_sym_PIPE] = ACTIONS(7219), - [anon_sym_CARET] = ACTIONS(7219), - [anon_sym_AMP] = ACTIONS(7219), - [anon_sym_EQ_EQ] = ACTIONS(7221), - [anon_sym_BANG_EQ] = ACTIONS(7221), - [anon_sym_GT] = ACTIONS(7219), - [anon_sym_GT_EQ] = ACTIONS(7221), - [anon_sym_LT_EQ] = ACTIONS(7219), - [anon_sym_LT] = ACTIONS(7219), - [anon_sym_LT_LT] = ACTIONS(7219), - [anon_sym_GT_GT] = ACTIONS(7219), - [anon_sym___extension__] = ACTIONS(7221), - [anon_sym___attribute__] = ACTIONS(7221), - [anon_sym___attribute] = ACTIONS(7219), - [anon_sym_LBRACE] = ACTIONS(7221), - [anon_sym_LBRACK] = ACTIONS(7221), - [anon_sym_EQ] = ACTIONS(7219), - [anon_sym_const] = ACTIONS(7219), - [anon_sym_constexpr] = ACTIONS(7221), - [anon_sym_volatile] = ACTIONS(7221), - [anon_sym_restrict] = ACTIONS(7221), - [anon_sym___restrict__] = ACTIONS(7221), - [anon_sym__Atomic] = ACTIONS(7221), - [anon_sym__Noreturn] = ACTIONS(7221), - [anon_sym_noreturn] = ACTIONS(7221), - [anon_sym__Nonnull] = ACTIONS(7221), - [anon_sym_mutable] = ACTIONS(7221), - [anon_sym_constinit] = ACTIONS(7221), - [anon_sym_consteval] = ACTIONS(7221), - [anon_sym_alignas] = ACTIONS(7221), - [anon_sym__Alignas] = ACTIONS(7221), - [anon_sym_QMARK] = ACTIONS(7221), - [anon_sym_STAR_EQ] = ACTIONS(7221), - [anon_sym_SLASH_EQ] = ACTIONS(7221), - [anon_sym_PERCENT_EQ] = ACTIONS(7221), - [anon_sym_PLUS_EQ] = ACTIONS(7221), - [anon_sym_DASH_EQ] = ACTIONS(7221), - [anon_sym_LT_LT_EQ] = ACTIONS(7221), - [anon_sym_GT_GT_EQ] = ACTIONS(7221), - [anon_sym_AMP_EQ] = ACTIONS(7221), - [anon_sym_CARET_EQ] = ACTIONS(7221), - [anon_sym_PIPE_EQ] = ACTIONS(7221), - [anon_sym_LT_EQ_GT] = ACTIONS(7221), - [anon_sym_or] = ACTIONS(7221), - [anon_sym_and] = ACTIONS(7221), - [anon_sym_bitor] = ACTIONS(7221), - [anon_sym_xor] = ACTIONS(7221), - [anon_sym_bitand] = ACTIONS(7221), - [anon_sym_not_eq] = ACTIONS(7221), - [anon_sym_DASH_DASH] = ACTIONS(7221), - [anon_sym_PLUS_PLUS] = ACTIONS(7221), - [anon_sym_DOT] = ACTIONS(7219), - [anon_sym_DOT_STAR] = ACTIONS(7221), - [anon_sym_DASH_GT] = ACTIONS(7219), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7221), - [anon_sym_override] = ACTIONS(7221), - [anon_sym_requires] = ACTIONS(7221), - [anon_sym_DASH_GT_STAR] = ACTIONS(7221), + [STATE(2747)] = { + [sym_identifier] = ACTIONS(8647), + [aux_sym_preproc_def_token1] = ACTIONS(8647), + [aux_sym_preproc_if_token1] = ACTIONS(8647), + [aux_sym_preproc_if_token2] = ACTIONS(8647), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8647), + [aux_sym_preproc_else_token1] = ACTIONS(8647), + [aux_sym_preproc_elif_token1] = ACTIONS(8647), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8647), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8647), + [sym_preproc_directive] = ACTIONS(8647), + [anon_sym_LPAREN2] = ACTIONS(8649), + [anon_sym_TILDE] = ACTIONS(8649), + [anon_sym_STAR] = ACTIONS(8649), + [anon_sym_AMP_AMP] = ACTIONS(8649), + [anon_sym_AMP] = ACTIONS(8647), + [anon_sym_SEMI] = ACTIONS(8649), + [anon_sym___extension__] = ACTIONS(8647), + [anon_sym_typedef] = ACTIONS(8647), + [anon_sym_virtual] = ACTIONS(8647), + [anon_sym_extern] = ACTIONS(8647), + [anon_sym___attribute__] = ACTIONS(8647), + [anon_sym___attribute] = ACTIONS(8647), + [anon_sym_using] = ACTIONS(8647), + [anon_sym_COLON_COLON] = ACTIONS(8649), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8649), + [anon_sym___declspec] = ACTIONS(8647), + [anon_sym___based] = ACTIONS(8647), + [anon_sym_signed] = ACTIONS(8647), + [anon_sym_unsigned] = ACTIONS(8647), + [anon_sym_long] = ACTIONS(8647), + [anon_sym_short] = ACTIONS(8647), + [anon_sym_LBRACK] = ACTIONS(8647), + [anon_sym_static] = ACTIONS(8647), + [anon_sym_register] = ACTIONS(8647), + [anon_sym_inline] = ACTIONS(8647), + [anon_sym___inline] = ACTIONS(8647), + [anon_sym___inline__] = ACTIONS(8647), + [anon_sym___forceinline] = ACTIONS(8647), + [anon_sym_thread_local] = ACTIONS(8647), + [anon_sym___thread] = ACTIONS(8647), + [anon_sym_const] = ACTIONS(8647), + [anon_sym_constexpr] = ACTIONS(8647), + [anon_sym_volatile] = ACTIONS(8647), + [anon_sym_restrict] = ACTIONS(8647), + [anon_sym___restrict__] = ACTIONS(8647), + [anon_sym__Atomic] = ACTIONS(8647), + [anon_sym__Noreturn] = ACTIONS(8647), + [anon_sym_noreturn] = ACTIONS(8647), + [anon_sym__Nonnull] = ACTIONS(8647), + [anon_sym_mutable] = ACTIONS(8647), + [anon_sym_constinit] = ACTIONS(8647), + [anon_sym_consteval] = ACTIONS(8647), + [anon_sym_alignas] = ACTIONS(8647), + [anon_sym__Alignas] = ACTIONS(8647), + [sym_primitive_type] = ACTIONS(8647), + [anon_sym_enum] = ACTIONS(8647), + [anon_sym_class] = ACTIONS(8647), + [anon_sym_struct] = ACTIONS(8647), + [anon_sym_union] = ACTIONS(8647), + [anon_sym_typename] = ACTIONS(8647), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8647), + [anon_sym_decltype] = ACTIONS(8647), + [anon_sym_explicit] = ACTIONS(8647), + [anon_sym_private] = ACTIONS(8647), + [anon_sym_template] = ACTIONS(8647), + [anon_sym_operator] = ACTIONS(8647), + [anon_sym_friend] = ACTIONS(8647), + [anon_sym_public] = ACTIONS(8647), + [anon_sym_protected] = ACTIONS(8647), + [anon_sym_static_assert] = ACTIONS(8647), + [anon_sym_LBRACK_COLON] = ACTIONS(8649), }, - [STATE(3095)] = { - [sym_identifier] = ACTIONS(7259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), - [anon_sym_COMMA] = ACTIONS(7261), - [anon_sym_RPAREN] = ACTIONS(7261), - [anon_sym_LPAREN2] = ACTIONS(7261), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_STAR] = ACTIONS(7261), - [anon_sym_SLASH] = ACTIONS(7259), - [anon_sym_PERCENT] = ACTIONS(7261), - [anon_sym_PIPE_PIPE] = ACTIONS(7261), - [anon_sym_AMP_AMP] = ACTIONS(7261), - [anon_sym_PIPE] = ACTIONS(7259), - [anon_sym_CARET] = ACTIONS(7261), - [anon_sym_AMP] = ACTIONS(7259), - [anon_sym_EQ_EQ] = ACTIONS(7261), - [anon_sym_BANG_EQ] = ACTIONS(7261), - [anon_sym_GT] = ACTIONS(7259), - [anon_sym_GT_EQ] = ACTIONS(7261), - [anon_sym_LT_EQ] = ACTIONS(7259), - [anon_sym_LT] = ACTIONS(7259), - [anon_sym_LT_LT] = ACTIONS(7261), - [anon_sym_GT_GT] = ACTIONS(7261), - [anon_sym_SEMI] = ACTIONS(7261), - [anon_sym___extension__] = ACTIONS(7259), - [anon_sym___attribute__] = ACTIONS(7259), - [anon_sym___attribute] = ACTIONS(7259), - [anon_sym_COLON] = ACTIONS(7259), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7261), - [anon_sym___based] = ACTIONS(7259), - [anon_sym_LBRACE] = ACTIONS(7261), - [anon_sym_RBRACE] = ACTIONS(7261), - [anon_sym_signed] = ACTIONS(7259), - [anon_sym_unsigned] = ACTIONS(7259), - [anon_sym_long] = ACTIONS(7259), - [anon_sym_short] = ACTIONS(7259), - [anon_sym_LBRACK] = ACTIONS(7261), - [anon_sym_const] = ACTIONS(7259), - [anon_sym_constexpr] = ACTIONS(7259), - [anon_sym_volatile] = ACTIONS(7259), - [anon_sym_restrict] = ACTIONS(7259), - [anon_sym___restrict__] = ACTIONS(7259), - [anon_sym__Atomic] = ACTIONS(7259), - [anon_sym__Noreturn] = ACTIONS(7259), - [anon_sym_noreturn] = ACTIONS(7259), - [anon_sym__Nonnull] = ACTIONS(7259), - [anon_sym_mutable] = ACTIONS(7259), - [anon_sym_constinit] = ACTIONS(7259), - [anon_sym_consteval] = ACTIONS(7259), - [anon_sym_alignas] = ACTIONS(7259), - [anon_sym__Alignas] = ACTIONS(7259), - [sym_primitive_type] = ACTIONS(7259), - [anon_sym_QMARK] = ACTIONS(7261), - [anon_sym_LT_EQ_GT] = ACTIONS(7261), - [anon_sym_or] = ACTIONS(7259), - [anon_sym_and] = ACTIONS(7259), - [anon_sym_bitor] = ACTIONS(7259), - [anon_sym_xor] = ACTIONS(7259), - [anon_sym_bitand] = ACTIONS(7259), - [anon_sym_not_eq] = ACTIONS(7259), - [anon_sym_DASH_DASH] = ACTIONS(7261), - [anon_sym_PLUS_PLUS] = ACTIONS(7261), - [anon_sym_DOT] = ACTIONS(7259), - [anon_sym_DOT_STAR] = ACTIONS(7261), - [anon_sym_DASH_GT] = ACTIONS(7261), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7259), - [anon_sym_override] = ACTIONS(7259), - [anon_sym_requires] = ACTIONS(7259), - [anon_sym_COLON_RBRACK] = ACTIONS(7261), + [STATE(2748)] = { + [sym_attribute_specifier] = STATE(3188), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7425), + [anon_sym_COMMA] = ACTIONS(7425), + [anon_sym_LPAREN2] = ACTIONS(7425), + [anon_sym_DASH] = ACTIONS(7423), + [anon_sym_PLUS] = ACTIONS(7423), + [anon_sym_STAR] = ACTIONS(7423), + [anon_sym_SLASH] = ACTIONS(7423), + [anon_sym_PERCENT] = ACTIONS(7423), + [anon_sym_PIPE_PIPE] = ACTIONS(7425), + [anon_sym_AMP_AMP] = ACTIONS(7425), + [anon_sym_PIPE] = ACTIONS(7423), + [anon_sym_CARET] = ACTIONS(7423), + [anon_sym_AMP] = ACTIONS(7423), + [anon_sym_EQ_EQ] = ACTIONS(7425), + [anon_sym_BANG_EQ] = ACTIONS(7425), + [anon_sym_GT] = ACTIONS(7423), + [anon_sym_GT_EQ] = ACTIONS(7425), + [anon_sym_LT_EQ] = ACTIONS(7423), + [anon_sym_LT] = ACTIONS(7423), + [anon_sym_LT_LT] = ACTIONS(7423), + [anon_sym_GT_GT] = ACTIONS(7423), + [anon_sym___extension__] = ACTIONS(7425), + [anon_sym___attribute__] = ACTIONS(8293), + [anon_sym___attribute] = ACTIONS(8295), + [anon_sym_LBRACE] = ACTIONS(7425), + [anon_sym_LBRACK] = ACTIONS(7425), + [anon_sym_RBRACK] = ACTIONS(7425), + [anon_sym_EQ] = ACTIONS(7423), + [anon_sym_const] = ACTIONS(7423), + [anon_sym_constexpr] = ACTIONS(7425), + [anon_sym_volatile] = ACTIONS(7425), + [anon_sym_restrict] = ACTIONS(7425), + [anon_sym___restrict__] = ACTIONS(7425), + [anon_sym__Atomic] = ACTIONS(7425), + [anon_sym__Noreturn] = ACTIONS(7425), + [anon_sym_noreturn] = ACTIONS(7425), + [anon_sym__Nonnull] = ACTIONS(7425), + [anon_sym_mutable] = ACTIONS(7425), + [anon_sym_constinit] = ACTIONS(7425), + [anon_sym_consteval] = ACTIONS(7425), + [anon_sym_alignas] = ACTIONS(7425), + [anon_sym__Alignas] = ACTIONS(7425), + [anon_sym_QMARK] = ACTIONS(7425), + [anon_sym_STAR_EQ] = ACTIONS(7425), + [anon_sym_SLASH_EQ] = ACTIONS(7425), + [anon_sym_PERCENT_EQ] = ACTIONS(7425), + [anon_sym_PLUS_EQ] = ACTIONS(7425), + [anon_sym_DASH_EQ] = ACTIONS(7425), + [anon_sym_LT_LT_EQ] = ACTIONS(7425), + [anon_sym_GT_GT_EQ] = ACTIONS(7425), + [anon_sym_AMP_EQ] = ACTIONS(7425), + [anon_sym_CARET_EQ] = ACTIONS(7425), + [anon_sym_PIPE_EQ] = ACTIONS(7425), + [anon_sym_and_eq] = ACTIONS(7425), + [anon_sym_or_eq] = ACTIONS(7425), + [anon_sym_xor_eq] = ACTIONS(7425), + [anon_sym_LT_EQ_GT] = ACTIONS(7425), + [anon_sym_or] = ACTIONS(7423), + [anon_sym_and] = ACTIONS(7423), + [anon_sym_bitor] = ACTIONS(7425), + [anon_sym_xor] = ACTIONS(7423), + [anon_sym_bitand] = ACTIONS(7425), + [anon_sym_not_eq] = ACTIONS(7425), + [anon_sym_DASH_DASH] = ACTIONS(7425), + [anon_sym_PLUS_PLUS] = ACTIONS(7425), + [anon_sym_DOT] = ACTIONS(7423), + [anon_sym_DOT_STAR] = ACTIONS(7425), + [anon_sym_DASH_GT] = ACTIONS(7425), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7425), + [anon_sym_override] = ACTIONS(7425), + [anon_sym_requires] = ACTIONS(7425), }, - [STATE(3096)] = { - [sym_identifier] = ACTIONS(7287), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), - [anon_sym_COMMA] = ACTIONS(7289), - [anon_sym_RPAREN] = ACTIONS(7289), - [anon_sym_LPAREN2] = ACTIONS(7289), - [anon_sym_DASH] = ACTIONS(7287), - [anon_sym_PLUS] = ACTIONS(7287), - [anon_sym_STAR] = ACTIONS(7289), - [anon_sym_SLASH] = ACTIONS(7287), - [anon_sym_PERCENT] = ACTIONS(7289), - [anon_sym_PIPE_PIPE] = ACTIONS(7289), - [anon_sym_AMP_AMP] = ACTIONS(7289), - [anon_sym_PIPE] = ACTIONS(7287), - [anon_sym_CARET] = ACTIONS(7289), - [anon_sym_AMP] = ACTIONS(7287), - [anon_sym_EQ_EQ] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7289), - [anon_sym_GT] = ACTIONS(7287), - [anon_sym_GT_EQ] = ACTIONS(7289), - [anon_sym_LT_EQ] = ACTIONS(7287), - [anon_sym_LT] = ACTIONS(7287), - [anon_sym_LT_LT] = ACTIONS(7289), - [anon_sym_GT_GT] = ACTIONS(7289), - [anon_sym_SEMI] = ACTIONS(7289), - [anon_sym___extension__] = ACTIONS(7287), - [anon_sym___attribute__] = ACTIONS(7287), - [anon_sym___attribute] = ACTIONS(7287), - [anon_sym_COLON] = ACTIONS(7287), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7289), - [anon_sym___based] = ACTIONS(7287), - [anon_sym_LBRACE] = ACTIONS(7289), - [anon_sym_RBRACE] = ACTIONS(7289), - [anon_sym_signed] = ACTIONS(7287), - [anon_sym_unsigned] = ACTIONS(7287), - [anon_sym_long] = ACTIONS(7287), - [anon_sym_short] = ACTIONS(7287), - [anon_sym_LBRACK] = ACTIONS(7289), - [anon_sym_const] = ACTIONS(7287), - [anon_sym_constexpr] = ACTIONS(7287), - [anon_sym_volatile] = ACTIONS(7287), - [anon_sym_restrict] = ACTIONS(7287), - [anon_sym___restrict__] = ACTIONS(7287), - [anon_sym__Atomic] = ACTIONS(7287), - [anon_sym__Noreturn] = ACTIONS(7287), - [anon_sym_noreturn] = ACTIONS(7287), - [anon_sym__Nonnull] = ACTIONS(7287), - [anon_sym_mutable] = ACTIONS(7287), - [anon_sym_constinit] = ACTIONS(7287), - [anon_sym_consteval] = ACTIONS(7287), - [anon_sym_alignas] = ACTIONS(7287), - [anon_sym__Alignas] = ACTIONS(7287), - [sym_primitive_type] = ACTIONS(7287), - [anon_sym_QMARK] = ACTIONS(7289), - [anon_sym_LT_EQ_GT] = ACTIONS(7289), - [anon_sym_or] = ACTIONS(7287), - [anon_sym_and] = ACTIONS(7287), - [anon_sym_bitor] = ACTIONS(7287), - [anon_sym_xor] = ACTIONS(7287), - [anon_sym_bitand] = ACTIONS(7287), - [anon_sym_not_eq] = ACTIONS(7287), - [anon_sym_DASH_DASH] = ACTIONS(7289), - [anon_sym_PLUS_PLUS] = ACTIONS(7289), - [anon_sym_DOT] = ACTIONS(7287), - [anon_sym_DOT_STAR] = ACTIONS(7289), - [anon_sym_DASH_GT] = ACTIONS(7289), + [STATE(2749)] = { + [sym_identifier] = ACTIONS(4172), + [aux_sym_preproc_def_token1] = ACTIONS(4172), + [aux_sym_preproc_if_token1] = ACTIONS(4172), + [aux_sym_preproc_if_token2] = ACTIONS(4172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4172), + [aux_sym_preproc_else_token1] = ACTIONS(4172), + [aux_sym_preproc_elif_token1] = ACTIONS(4172), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4172), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4172), + [sym_preproc_directive] = ACTIONS(4172), + [anon_sym_LPAREN2] = ACTIONS(4174), + [anon_sym_TILDE] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_AMP_AMP] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4172), + [anon_sym_SEMI] = ACTIONS(4174), + [anon_sym___extension__] = ACTIONS(4172), + [anon_sym_typedef] = ACTIONS(4172), + [anon_sym_virtual] = ACTIONS(4172), + [anon_sym_extern] = ACTIONS(4172), + [anon_sym___attribute__] = ACTIONS(4172), + [anon_sym___attribute] = ACTIONS(4172), + [anon_sym_using] = ACTIONS(4172), + [anon_sym_COLON_COLON] = ACTIONS(4174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4174), + [anon_sym___declspec] = ACTIONS(4172), + [anon_sym___based] = ACTIONS(4172), + [anon_sym_signed] = ACTIONS(4172), + [anon_sym_unsigned] = ACTIONS(4172), + [anon_sym_long] = ACTIONS(4172), + [anon_sym_short] = ACTIONS(4172), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_static] = ACTIONS(4172), + [anon_sym_register] = ACTIONS(4172), + [anon_sym_inline] = ACTIONS(4172), + [anon_sym___inline] = ACTIONS(4172), + [anon_sym___inline__] = ACTIONS(4172), + [anon_sym___forceinline] = ACTIONS(4172), + [anon_sym_thread_local] = ACTIONS(4172), + [anon_sym___thread] = ACTIONS(4172), + [anon_sym_const] = ACTIONS(4172), + [anon_sym_constexpr] = ACTIONS(4172), + [anon_sym_volatile] = ACTIONS(4172), + [anon_sym_restrict] = ACTIONS(4172), + [anon_sym___restrict__] = ACTIONS(4172), + [anon_sym__Atomic] = ACTIONS(4172), + [anon_sym__Noreturn] = ACTIONS(4172), + [anon_sym_noreturn] = ACTIONS(4172), + [anon_sym__Nonnull] = ACTIONS(4172), + [anon_sym_mutable] = ACTIONS(4172), + [anon_sym_constinit] = ACTIONS(4172), + [anon_sym_consteval] = ACTIONS(4172), + [anon_sym_alignas] = ACTIONS(4172), + [anon_sym__Alignas] = ACTIONS(4172), + [sym_primitive_type] = ACTIONS(4172), + [anon_sym_enum] = ACTIONS(4172), + [anon_sym_class] = ACTIONS(4172), + [anon_sym_struct] = ACTIONS(4172), + [anon_sym_union] = ACTIONS(4172), + [anon_sym_typename] = ACTIONS(4172), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7287), - [anon_sym_override] = ACTIONS(7287), - [anon_sym_requires] = ACTIONS(7287), - [anon_sym_COLON_RBRACK] = ACTIONS(7289), + [sym_auto] = ACTIONS(4172), + [anon_sym_decltype] = ACTIONS(4172), + [anon_sym_explicit] = ACTIONS(4172), + [anon_sym_private] = ACTIONS(4172), + [anon_sym_template] = ACTIONS(4172), + [anon_sym_operator] = ACTIONS(4172), + [anon_sym_friend] = ACTIONS(4172), + [anon_sym_public] = ACTIONS(4172), + [anon_sym_protected] = ACTIONS(4172), + [anon_sym_static_assert] = ACTIONS(4172), + [anon_sym_LBRACK_COLON] = ACTIONS(4174), }, - [STATE(3097)] = { - [sym_identifier] = ACTIONS(8689), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8691), - [anon_sym_COMMA] = ACTIONS(8691), - [anon_sym_RPAREN] = ACTIONS(8691), - [aux_sym_preproc_if_token2] = ACTIONS(8691), - [aux_sym_preproc_else_token1] = ACTIONS(8691), - [aux_sym_preproc_elif_token1] = ACTIONS(8689), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8691), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8691), - [anon_sym_LPAREN2] = ACTIONS(8691), - [anon_sym_DASH] = ACTIONS(8689), - [anon_sym_PLUS] = ACTIONS(8689), - [anon_sym_STAR] = ACTIONS(8689), - [anon_sym_SLASH] = ACTIONS(8689), - [anon_sym_PERCENT] = ACTIONS(8689), - [anon_sym_PIPE_PIPE] = ACTIONS(8691), - [anon_sym_AMP_AMP] = ACTIONS(8691), - [anon_sym_PIPE] = ACTIONS(8689), - [anon_sym_CARET] = ACTIONS(8689), - [anon_sym_AMP] = ACTIONS(8689), - [anon_sym_EQ_EQ] = ACTIONS(8691), - [anon_sym_BANG_EQ] = ACTIONS(8691), - [anon_sym_GT] = ACTIONS(8689), - [anon_sym_GT_EQ] = ACTIONS(8691), - [anon_sym_LT_EQ] = ACTIONS(8689), - [anon_sym_LT] = ACTIONS(8689), - [anon_sym_LT_LT] = ACTIONS(8689), - [anon_sym_GT_GT] = ACTIONS(8689), - [anon_sym_SEMI] = ACTIONS(8691), - [anon_sym___attribute__] = ACTIONS(8689), - [anon_sym___attribute] = ACTIONS(8689), - [anon_sym_COLON] = ACTIONS(8689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8691), - [anon_sym_LBRACE] = ACTIONS(8691), - [anon_sym_RBRACE] = ACTIONS(8691), - [anon_sym_LBRACK] = ACTIONS(8689), - [anon_sym_RBRACK] = ACTIONS(8691), - [anon_sym_EQ] = ACTIONS(8689), - [anon_sym_QMARK] = ACTIONS(8691), - [anon_sym_STAR_EQ] = ACTIONS(8691), - [anon_sym_SLASH_EQ] = ACTIONS(8691), - [anon_sym_PERCENT_EQ] = ACTIONS(8691), - [anon_sym_PLUS_EQ] = ACTIONS(8691), - [anon_sym_DASH_EQ] = ACTIONS(8691), - [anon_sym_LT_LT_EQ] = ACTIONS(8691), - [anon_sym_GT_GT_EQ] = ACTIONS(8691), - [anon_sym_AMP_EQ] = ACTIONS(8691), - [anon_sym_CARET_EQ] = ACTIONS(8691), - [anon_sym_PIPE_EQ] = ACTIONS(8691), - [anon_sym_and_eq] = ACTIONS(8689), - [anon_sym_or_eq] = ACTIONS(8689), - [anon_sym_xor_eq] = ACTIONS(8689), - [anon_sym_LT_EQ_GT] = ACTIONS(8691), - [anon_sym_or] = ACTIONS(8689), - [anon_sym_and] = ACTIONS(8689), - [anon_sym_bitor] = ACTIONS(8689), - [anon_sym_xor] = ACTIONS(8689), - [anon_sym_bitand] = ACTIONS(8689), - [anon_sym_not_eq] = ACTIONS(8689), - [anon_sym_DASH_DASH] = ACTIONS(8691), - [anon_sym_PLUS_PLUS] = ACTIONS(8691), - [anon_sym_asm] = ACTIONS(8689), - [anon_sym___asm__] = ACTIONS(8689), - [anon_sym___asm] = ACTIONS(8689), - [anon_sym_DOT] = ACTIONS(8689), - [anon_sym_DOT_STAR] = ACTIONS(8691), - [anon_sym_DASH_GT] = ACTIONS(8691), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(8689), - [anon_sym_COLON_RBRACK] = ACTIONS(8691), + [STATE(2750)] = { + [sym_identifier] = ACTIONS(4274), + [aux_sym_preproc_def_token1] = ACTIONS(4274), + [aux_sym_preproc_if_token1] = ACTIONS(4274), + [aux_sym_preproc_if_token2] = ACTIONS(4274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4274), + [aux_sym_preproc_else_token1] = ACTIONS(4274), + [aux_sym_preproc_elif_token1] = ACTIONS(4274), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4274), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4274), + [sym_preproc_directive] = ACTIONS(4274), + [anon_sym_LPAREN2] = ACTIONS(4276), + [anon_sym_TILDE] = ACTIONS(4276), + [anon_sym_STAR] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_AMP] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym___extension__] = ACTIONS(4274), + [anon_sym_typedef] = ACTIONS(4274), + [anon_sym_virtual] = ACTIONS(4274), + [anon_sym_extern] = ACTIONS(4274), + [anon_sym___attribute__] = ACTIONS(4274), + [anon_sym___attribute] = ACTIONS(4274), + [anon_sym_using] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4276), + [anon_sym___declspec] = ACTIONS(4274), + [anon_sym___based] = ACTIONS(4274), + [anon_sym_signed] = ACTIONS(4274), + [anon_sym_unsigned] = ACTIONS(4274), + [anon_sym_long] = ACTIONS(4274), + [anon_sym_short] = ACTIONS(4274), + [anon_sym_LBRACK] = ACTIONS(4274), + [anon_sym_static] = ACTIONS(4274), + [anon_sym_register] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym___inline] = ACTIONS(4274), + [anon_sym___inline__] = ACTIONS(4274), + [anon_sym___forceinline] = ACTIONS(4274), + [anon_sym_thread_local] = ACTIONS(4274), + [anon_sym___thread] = ACTIONS(4274), + [anon_sym_const] = ACTIONS(4274), + [anon_sym_constexpr] = ACTIONS(4274), + [anon_sym_volatile] = ACTIONS(4274), + [anon_sym_restrict] = ACTIONS(4274), + [anon_sym___restrict__] = ACTIONS(4274), + [anon_sym__Atomic] = ACTIONS(4274), + [anon_sym__Noreturn] = ACTIONS(4274), + [anon_sym_noreturn] = ACTIONS(4274), + [anon_sym__Nonnull] = ACTIONS(4274), + [anon_sym_mutable] = ACTIONS(4274), + [anon_sym_constinit] = ACTIONS(4274), + [anon_sym_consteval] = ACTIONS(4274), + [anon_sym_alignas] = ACTIONS(4274), + [anon_sym__Alignas] = ACTIONS(4274), + [sym_primitive_type] = ACTIONS(4274), + [anon_sym_enum] = ACTIONS(4274), + [anon_sym_class] = ACTIONS(4274), + [anon_sym_struct] = ACTIONS(4274), + [anon_sym_union] = ACTIONS(4274), + [anon_sym_typename] = ACTIONS(4274), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4274), + [anon_sym_decltype] = ACTIONS(4274), + [anon_sym_explicit] = ACTIONS(4274), + [anon_sym_private] = ACTIONS(4274), + [anon_sym_template] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_friend] = ACTIONS(4274), + [anon_sym_public] = ACTIONS(4274), + [anon_sym_protected] = ACTIONS(4274), + [anon_sym_static_assert] = ACTIONS(4274), + [anon_sym_LBRACK_COLON] = ACTIONS(4276), }, - [STATE(3098)] = { - [sym_identifier] = ACTIONS(8693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8695), - [anon_sym_COMMA] = ACTIONS(8695), - [anon_sym_RPAREN] = ACTIONS(8695), - [aux_sym_preproc_if_token2] = ACTIONS(8695), - [aux_sym_preproc_else_token1] = ACTIONS(8695), - [aux_sym_preproc_elif_token1] = ACTIONS(8693), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8695), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8695), - [anon_sym_LPAREN2] = ACTIONS(8695), - [anon_sym_DASH] = ACTIONS(8693), - [anon_sym_PLUS] = ACTIONS(8693), - [anon_sym_STAR] = ACTIONS(8693), - [anon_sym_SLASH] = ACTIONS(8693), - [anon_sym_PERCENT] = ACTIONS(8693), - [anon_sym_PIPE_PIPE] = ACTIONS(8695), - [anon_sym_AMP_AMP] = ACTIONS(8695), - [anon_sym_PIPE] = ACTIONS(8693), - [anon_sym_CARET] = ACTIONS(8693), - [anon_sym_AMP] = ACTIONS(8693), - [anon_sym_EQ_EQ] = ACTIONS(8695), - [anon_sym_BANG_EQ] = ACTIONS(8695), - [anon_sym_GT] = ACTIONS(8693), - [anon_sym_GT_EQ] = ACTIONS(8695), - [anon_sym_LT_EQ] = ACTIONS(8693), - [anon_sym_LT] = ACTIONS(8693), - [anon_sym_LT_LT] = ACTIONS(8693), - [anon_sym_GT_GT] = ACTIONS(8693), - [anon_sym_SEMI] = ACTIONS(8695), - [anon_sym___attribute__] = ACTIONS(8693), - [anon_sym___attribute] = ACTIONS(8693), - [anon_sym_COLON] = ACTIONS(8693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8695), - [anon_sym_LBRACE] = ACTIONS(8695), - [anon_sym_RBRACE] = ACTIONS(8695), - [anon_sym_LBRACK] = ACTIONS(8693), - [anon_sym_RBRACK] = ACTIONS(8695), - [anon_sym_EQ] = ACTIONS(8693), - [anon_sym_QMARK] = ACTIONS(8695), - [anon_sym_STAR_EQ] = ACTIONS(8695), - [anon_sym_SLASH_EQ] = ACTIONS(8695), - [anon_sym_PERCENT_EQ] = ACTIONS(8695), - [anon_sym_PLUS_EQ] = ACTIONS(8695), - [anon_sym_DASH_EQ] = ACTIONS(8695), - [anon_sym_LT_LT_EQ] = ACTIONS(8695), - [anon_sym_GT_GT_EQ] = ACTIONS(8695), - [anon_sym_AMP_EQ] = ACTIONS(8695), - [anon_sym_CARET_EQ] = ACTIONS(8695), - [anon_sym_PIPE_EQ] = ACTIONS(8695), - [anon_sym_and_eq] = ACTIONS(8693), - [anon_sym_or_eq] = ACTIONS(8693), - [anon_sym_xor_eq] = ACTIONS(8693), - [anon_sym_LT_EQ_GT] = ACTIONS(8695), - [anon_sym_or] = ACTIONS(8693), - [anon_sym_and] = ACTIONS(8693), - [anon_sym_bitor] = ACTIONS(8693), - [anon_sym_xor] = ACTIONS(8693), - [anon_sym_bitand] = ACTIONS(8693), - [anon_sym_not_eq] = ACTIONS(8693), - [anon_sym_DASH_DASH] = ACTIONS(8695), - [anon_sym_PLUS_PLUS] = ACTIONS(8695), - [anon_sym_asm] = ACTIONS(8693), - [anon_sym___asm__] = ACTIONS(8693), - [anon_sym___asm] = ACTIONS(8693), - [anon_sym_DOT] = ACTIONS(8693), - [anon_sym_DOT_STAR] = ACTIONS(8695), - [anon_sym_DASH_GT] = ACTIONS(8695), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(8693), - [anon_sym_COLON_RBRACK] = ACTIONS(8695), + [STATE(2751)] = { + [sym_identifier] = ACTIONS(4278), + [aux_sym_preproc_def_token1] = ACTIONS(4278), + [aux_sym_preproc_if_token1] = ACTIONS(4278), + [aux_sym_preproc_if_token2] = ACTIONS(4278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4278), + [aux_sym_preproc_else_token1] = ACTIONS(4278), + [aux_sym_preproc_elif_token1] = ACTIONS(4278), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4278), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4278), + [sym_preproc_directive] = ACTIONS(4278), + [anon_sym_LPAREN2] = ACTIONS(4280), + [anon_sym_TILDE] = ACTIONS(4280), + [anon_sym_STAR] = ACTIONS(4280), + [anon_sym_AMP_AMP] = ACTIONS(4280), + [anon_sym_AMP] = ACTIONS(4278), + [anon_sym_SEMI] = ACTIONS(4280), + [anon_sym___extension__] = ACTIONS(4278), + [anon_sym_typedef] = ACTIONS(4278), + [anon_sym_virtual] = ACTIONS(4278), + [anon_sym_extern] = ACTIONS(4278), + [anon_sym___attribute__] = ACTIONS(4278), + [anon_sym___attribute] = ACTIONS(4278), + [anon_sym_using] = ACTIONS(4278), + [anon_sym_COLON_COLON] = ACTIONS(4280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4280), + [anon_sym___declspec] = ACTIONS(4278), + [anon_sym___based] = ACTIONS(4278), + [anon_sym_signed] = ACTIONS(4278), + [anon_sym_unsigned] = ACTIONS(4278), + [anon_sym_long] = ACTIONS(4278), + [anon_sym_short] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_register] = ACTIONS(4278), + [anon_sym_inline] = ACTIONS(4278), + [anon_sym___inline] = ACTIONS(4278), + [anon_sym___inline__] = ACTIONS(4278), + [anon_sym___forceinline] = ACTIONS(4278), + [anon_sym_thread_local] = ACTIONS(4278), + [anon_sym___thread] = ACTIONS(4278), + [anon_sym_const] = ACTIONS(4278), + [anon_sym_constexpr] = ACTIONS(4278), + [anon_sym_volatile] = ACTIONS(4278), + [anon_sym_restrict] = ACTIONS(4278), + [anon_sym___restrict__] = ACTIONS(4278), + [anon_sym__Atomic] = ACTIONS(4278), + [anon_sym__Noreturn] = ACTIONS(4278), + [anon_sym_noreturn] = ACTIONS(4278), + [anon_sym__Nonnull] = ACTIONS(4278), + [anon_sym_mutable] = ACTIONS(4278), + [anon_sym_constinit] = ACTIONS(4278), + [anon_sym_consteval] = ACTIONS(4278), + [anon_sym_alignas] = ACTIONS(4278), + [anon_sym__Alignas] = ACTIONS(4278), + [sym_primitive_type] = ACTIONS(4278), + [anon_sym_enum] = ACTIONS(4278), + [anon_sym_class] = ACTIONS(4278), + [anon_sym_struct] = ACTIONS(4278), + [anon_sym_union] = ACTIONS(4278), + [anon_sym_typename] = ACTIONS(4278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4278), + [anon_sym_decltype] = ACTIONS(4278), + [anon_sym_explicit] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_template] = ACTIONS(4278), + [anon_sym_operator] = ACTIONS(4278), + [anon_sym_friend] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_protected] = ACTIONS(4278), + [anon_sym_static_assert] = ACTIONS(4278), + [anon_sym_LBRACK_COLON] = ACTIONS(4280), }, - [STATE(3099)] = { - [sym_identifier] = ACTIONS(2803), - [aux_sym_preproc_def_token1] = ACTIONS(2803), - [aux_sym_preproc_if_token1] = ACTIONS(2803), - [aux_sym_preproc_if_token2] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2803), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym___extension__] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2803), - [anon_sym_virtual] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym___attribute__] = ACTIONS(2803), - [anon_sym___attribute] = ACTIONS(2803), - [anon_sym_using] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2803), - [anon_sym___based] = ACTIONS(2803), - [anon_sym_signed] = ACTIONS(2803), - [anon_sym_unsigned] = ACTIONS(2803), - [anon_sym_long] = ACTIONS(2803), - [anon_sym_short] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_register] = ACTIONS(2803), - [anon_sym_inline] = ACTIONS(2803), - [anon_sym___inline] = ACTIONS(2803), - [anon_sym___inline__] = ACTIONS(2803), - [anon_sym___forceinline] = ACTIONS(2803), - [anon_sym_thread_local] = ACTIONS(2803), - [anon_sym___thread] = ACTIONS(2803), - [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__Nonnull] = ACTIONS(2803), - [anon_sym_mutable] = ACTIONS(2803), - [anon_sym_constinit] = ACTIONS(2803), - [anon_sym_consteval] = ACTIONS(2803), - [anon_sym_alignas] = ACTIONS(2803), - [anon_sym__Alignas] = ACTIONS(2803), - [sym_primitive_type] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_typename] = ACTIONS(2803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2803), - [anon_sym_decltype] = ACTIONS(2803), - [anon_sym_explicit] = ACTIONS(2803), - [anon_sym_private] = ACTIONS(2803), - [anon_sym_template] = ACTIONS(2803), - [anon_sym_operator] = ACTIONS(2803), - [anon_sym_friend] = ACTIONS(2803), - [anon_sym_public] = ACTIONS(2803), - [anon_sym_protected] = ACTIONS(2803), - [anon_sym_static_assert] = ACTIONS(2803), - [anon_sym_catch] = ACTIONS(2803), - [anon_sym_LBRACK_COLON] = ACTIONS(2801), + [STATE(2752)] = { + [sym_attribute_specifier] = STATE(3194), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7433), + [anon_sym_COMMA] = ACTIONS(7433), + [anon_sym_LPAREN2] = ACTIONS(7433), + [anon_sym_DASH] = ACTIONS(7431), + [anon_sym_PLUS] = ACTIONS(7431), + [anon_sym_STAR] = ACTIONS(7431), + [anon_sym_SLASH] = ACTIONS(7431), + [anon_sym_PERCENT] = ACTIONS(7431), + [anon_sym_PIPE_PIPE] = ACTIONS(7433), + [anon_sym_AMP_AMP] = ACTIONS(7433), + [anon_sym_PIPE] = ACTIONS(7431), + [anon_sym_CARET] = ACTIONS(7431), + [anon_sym_AMP] = ACTIONS(7431), + [anon_sym_EQ_EQ] = ACTIONS(7433), + [anon_sym_BANG_EQ] = ACTIONS(7433), + [anon_sym_GT] = ACTIONS(7431), + [anon_sym_GT_EQ] = ACTIONS(7433), + [anon_sym_LT_EQ] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7431), + [anon_sym_LT_LT] = ACTIONS(7431), + [anon_sym_GT_GT] = ACTIONS(7431), + [anon_sym___extension__] = ACTIONS(7433), + [anon_sym___attribute__] = ACTIONS(8293), + [anon_sym___attribute] = ACTIONS(8295), + [anon_sym_LBRACE] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(7433), + [anon_sym_RBRACK] = ACTIONS(7433), + [anon_sym_EQ] = ACTIONS(7431), + [anon_sym_const] = ACTIONS(7431), + [anon_sym_constexpr] = ACTIONS(7433), + [anon_sym_volatile] = ACTIONS(7433), + [anon_sym_restrict] = ACTIONS(7433), + [anon_sym___restrict__] = ACTIONS(7433), + [anon_sym__Atomic] = ACTIONS(7433), + [anon_sym__Noreturn] = ACTIONS(7433), + [anon_sym_noreturn] = ACTIONS(7433), + [anon_sym__Nonnull] = ACTIONS(7433), + [anon_sym_mutable] = ACTIONS(7433), + [anon_sym_constinit] = ACTIONS(7433), + [anon_sym_consteval] = ACTIONS(7433), + [anon_sym_alignas] = ACTIONS(7433), + [anon_sym__Alignas] = ACTIONS(7433), + [anon_sym_QMARK] = ACTIONS(7433), + [anon_sym_STAR_EQ] = ACTIONS(7433), + [anon_sym_SLASH_EQ] = ACTIONS(7433), + [anon_sym_PERCENT_EQ] = ACTIONS(7433), + [anon_sym_PLUS_EQ] = ACTIONS(7433), + [anon_sym_DASH_EQ] = ACTIONS(7433), + [anon_sym_LT_LT_EQ] = ACTIONS(7433), + [anon_sym_GT_GT_EQ] = ACTIONS(7433), + [anon_sym_AMP_EQ] = ACTIONS(7433), + [anon_sym_CARET_EQ] = ACTIONS(7433), + [anon_sym_PIPE_EQ] = ACTIONS(7433), + [anon_sym_and_eq] = ACTIONS(7433), + [anon_sym_or_eq] = ACTIONS(7433), + [anon_sym_xor_eq] = ACTIONS(7433), + [anon_sym_LT_EQ_GT] = ACTIONS(7433), + [anon_sym_or] = ACTIONS(7431), + [anon_sym_and] = ACTIONS(7431), + [anon_sym_bitor] = ACTIONS(7433), + [anon_sym_xor] = ACTIONS(7431), + [anon_sym_bitand] = ACTIONS(7433), + [anon_sym_not_eq] = ACTIONS(7433), + [anon_sym_DASH_DASH] = ACTIONS(7433), + [anon_sym_PLUS_PLUS] = ACTIONS(7433), + [anon_sym_DOT] = ACTIONS(7431), + [anon_sym_DOT_STAR] = ACTIONS(7433), + [anon_sym_DASH_GT] = ACTIONS(7433), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7433), + [anon_sym_override] = ACTIONS(7433), + [anon_sym_requires] = ACTIONS(7433), }, - [STATE(3100)] = { - [sym_identifier] = ACTIONS(7191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), - [anon_sym_COMMA] = ACTIONS(7193), - [anon_sym_RPAREN] = ACTIONS(7193), - [anon_sym_LPAREN2] = ACTIONS(7193), - [anon_sym_DASH] = ACTIONS(7191), - [anon_sym_PLUS] = ACTIONS(7191), - [anon_sym_STAR] = ACTIONS(7193), - [anon_sym_SLASH] = ACTIONS(7191), - [anon_sym_PERCENT] = ACTIONS(7193), - [anon_sym_PIPE_PIPE] = ACTIONS(7193), - [anon_sym_AMP_AMP] = ACTIONS(7193), - [anon_sym_PIPE] = ACTIONS(7191), - [anon_sym_CARET] = ACTIONS(7193), - [anon_sym_AMP] = ACTIONS(7191), - [anon_sym_EQ_EQ] = ACTIONS(7193), - [anon_sym_BANG_EQ] = ACTIONS(7193), - [anon_sym_GT] = ACTIONS(7191), - [anon_sym_GT_EQ] = ACTIONS(7193), - [anon_sym_LT_EQ] = ACTIONS(7191), - [anon_sym_LT] = ACTIONS(7191), - [anon_sym_LT_LT] = ACTIONS(7193), - [anon_sym_GT_GT] = ACTIONS(7193), - [anon_sym_SEMI] = ACTIONS(7193), - [anon_sym___extension__] = ACTIONS(7191), - [anon_sym___attribute__] = ACTIONS(7191), - [anon_sym___attribute] = ACTIONS(7191), - [anon_sym_COLON] = ACTIONS(7191), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7193), - [anon_sym___based] = ACTIONS(7191), - [anon_sym_LBRACE] = ACTIONS(7193), - [anon_sym_RBRACE] = ACTIONS(7193), - [anon_sym_signed] = ACTIONS(7191), - [anon_sym_unsigned] = ACTIONS(7191), - [anon_sym_long] = ACTIONS(7191), - [anon_sym_short] = ACTIONS(7191), - [anon_sym_LBRACK] = ACTIONS(7193), - [anon_sym_const] = ACTIONS(7191), - [anon_sym_constexpr] = ACTIONS(7191), - [anon_sym_volatile] = ACTIONS(7191), - [anon_sym_restrict] = ACTIONS(7191), - [anon_sym___restrict__] = ACTIONS(7191), - [anon_sym__Atomic] = ACTIONS(7191), - [anon_sym__Noreturn] = ACTIONS(7191), - [anon_sym_noreturn] = ACTIONS(7191), - [anon_sym__Nonnull] = ACTIONS(7191), - [anon_sym_mutable] = ACTIONS(7191), - [anon_sym_constinit] = ACTIONS(7191), - [anon_sym_consteval] = ACTIONS(7191), - [anon_sym_alignas] = ACTIONS(7191), - [anon_sym__Alignas] = ACTIONS(7191), - [sym_primitive_type] = ACTIONS(7191), - [anon_sym_QMARK] = ACTIONS(7193), - [anon_sym_LT_EQ_GT] = ACTIONS(7193), - [anon_sym_or] = ACTIONS(7191), - [anon_sym_and] = ACTIONS(7191), - [anon_sym_bitor] = ACTIONS(7191), - [anon_sym_xor] = ACTIONS(7191), - [anon_sym_bitand] = ACTIONS(7191), - [anon_sym_not_eq] = ACTIONS(7191), - [anon_sym_DASH_DASH] = ACTIONS(7193), - [anon_sym_PLUS_PLUS] = ACTIONS(7193), - [anon_sym_DOT] = ACTIONS(7191), - [anon_sym_DOT_STAR] = ACTIONS(7193), - [anon_sym_DASH_GT] = ACTIONS(7193), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7191), - [anon_sym_override] = ACTIONS(7191), - [anon_sym_requires] = ACTIONS(7191), - [anon_sym_COLON_RBRACK] = ACTIONS(7193), + [STATE(2753)] = { + [sym_attribute_specifier] = STATE(3207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7437), + [anon_sym_COMMA] = ACTIONS(7437), + [anon_sym_LPAREN2] = ACTIONS(7437), + [anon_sym_DASH] = ACTIONS(7435), + [anon_sym_PLUS] = ACTIONS(7435), + [anon_sym_STAR] = ACTIONS(7435), + [anon_sym_SLASH] = ACTIONS(7435), + [anon_sym_PERCENT] = ACTIONS(7435), + [anon_sym_PIPE_PIPE] = ACTIONS(7437), + [anon_sym_AMP_AMP] = ACTIONS(7437), + [anon_sym_PIPE] = ACTIONS(7435), + [anon_sym_CARET] = ACTIONS(7435), + [anon_sym_AMP] = ACTIONS(7435), + [anon_sym_EQ_EQ] = ACTIONS(7437), + [anon_sym_BANG_EQ] = ACTIONS(7437), + [anon_sym_GT] = ACTIONS(7435), + [anon_sym_GT_EQ] = ACTIONS(7437), + [anon_sym_LT_EQ] = ACTIONS(7435), + [anon_sym_LT] = ACTIONS(7435), + [anon_sym_LT_LT] = ACTIONS(7435), + [anon_sym_GT_GT] = ACTIONS(7435), + [anon_sym___extension__] = ACTIONS(7437), + [anon_sym___attribute__] = ACTIONS(8293), + [anon_sym___attribute] = ACTIONS(8295), + [anon_sym_LBRACE] = ACTIONS(7437), + [anon_sym_LBRACK] = ACTIONS(7437), + [anon_sym_RBRACK] = ACTIONS(7437), + [anon_sym_EQ] = ACTIONS(7435), + [anon_sym_const] = ACTIONS(7435), + [anon_sym_constexpr] = ACTIONS(7437), + [anon_sym_volatile] = ACTIONS(7437), + [anon_sym_restrict] = ACTIONS(7437), + [anon_sym___restrict__] = ACTIONS(7437), + [anon_sym__Atomic] = ACTIONS(7437), + [anon_sym__Noreturn] = ACTIONS(7437), + [anon_sym_noreturn] = ACTIONS(7437), + [anon_sym__Nonnull] = ACTIONS(7437), + [anon_sym_mutable] = ACTIONS(7437), + [anon_sym_constinit] = ACTIONS(7437), + [anon_sym_consteval] = ACTIONS(7437), + [anon_sym_alignas] = ACTIONS(7437), + [anon_sym__Alignas] = ACTIONS(7437), + [anon_sym_QMARK] = ACTIONS(7437), + [anon_sym_STAR_EQ] = ACTIONS(7437), + [anon_sym_SLASH_EQ] = ACTIONS(7437), + [anon_sym_PERCENT_EQ] = ACTIONS(7437), + [anon_sym_PLUS_EQ] = ACTIONS(7437), + [anon_sym_DASH_EQ] = ACTIONS(7437), + [anon_sym_LT_LT_EQ] = ACTIONS(7437), + [anon_sym_GT_GT_EQ] = ACTIONS(7437), + [anon_sym_AMP_EQ] = ACTIONS(7437), + [anon_sym_CARET_EQ] = ACTIONS(7437), + [anon_sym_PIPE_EQ] = ACTIONS(7437), + [anon_sym_and_eq] = ACTIONS(7437), + [anon_sym_or_eq] = ACTIONS(7437), + [anon_sym_xor_eq] = ACTIONS(7437), + [anon_sym_LT_EQ_GT] = ACTIONS(7437), + [anon_sym_or] = ACTIONS(7435), + [anon_sym_and] = ACTIONS(7435), + [anon_sym_bitor] = ACTIONS(7437), + [anon_sym_xor] = ACTIONS(7435), + [anon_sym_bitand] = ACTIONS(7437), + [anon_sym_not_eq] = ACTIONS(7437), + [anon_sym_DASH_DASH] = ACTIONS(7437), + [anon_sym_PLUS_PLUS] = ACTIONS(7437), + [anon_sym_DOT] = ACTIONS(7435), + [anon_sym_DOT_STAR] = ACTIONS(7437), + [anon_sym_DASH_GT] = ACTIONS(7437), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7437), + [anon_sym_override] = ACTIONS(7437), + [anon_sym_requires] = ACTIONS(7437), }, - [STATE(3101)] = { - [sym_template_argument_list] = STATE(3275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6203), - [anon_sym_RPAREN] = ACTIONS(6205), - [anon_sym_LPAREN2] = ACTIONS(6205), - [anon_sym_DASH] = ACTIONS(6210), - [anon_sym_PLUS] = ACTIONS(6210), - [anon_sym_STAR] = ACTIONS(6212), - [anon_sym_SLASH] = ACTIONS(6210), - [anon_sym_PERCENT] = ACTIONS(6210), - [anon_sym_PIPE_PIPE] = ACTIONS(6203), - [anon_sym_AMP_AMP] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(6210), - [anon_sym_CARET] = ACTIONS(6210), - [anon_sym_AMP] = ACTIONS(6212), - [anon_sym_EQ_EQ] = ACTIONS(6203), - [anon_sym_BANG_EQ] = ACTIONS(6203), - [anon_sym_GT] = ACTIONS(6210), - [anon_sym_GT_EQ] = ACTIONS(6203), - [anon_sym_LT_EQ] = ACTIONS(6210), - [anon_sym_LT] = ACTIONS(8697), - [anon_sym_LT_LT] = ACTIONS(6210), - [anon_sym_GT_GT] = ACTIONS(6210), - [anon_sym___extension__] = ACTIONS(6208), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(6208), - [anon_sym_LBRACK] = ACTIONS(6205), - [anon_sym_EQ] = ACTIONS(6210), - [anon_sym_const] = ACTIONS(6201), - [anon_sym_constexpr] = ACTIONS(6208), - [anon_sym_volatile] = ACTIONS(6208), - [anon_sym_restrict] = ACTIONS(6208), - [anon_sym___restrict__] = ACTIONS(6208), - [anon_sym__Atomic] = ACTIONS(6208), - [anon_sym__Noreturn] = ACTIONS(6208), - [anon_sym_noreturn] = ACTIONS(6208), - [anon_sym__Nonnull] = ACTIONS(6208), - [anon_sym_mutable] = ACTIONS(6208), - [anon_sym_constinit] = ACTIONS(6208), - [anon_sym_consteval] = ACTIONS(6208), - [anon_sym_alignas] = ACTIONS(6208), - [anon_sym__Alignas] = ACTIONS(6208), - [anon_sym_QMARK] = ACTIONS(6203), - [anon_sym_STAR_EQ] = ACTIONS(6203), - [anon_sym_SLASH_EQ] = ACTIONS(6203), - [anon_sym_PERCENT_EQ] = ACTIONS(6203), - [anon_sym_PLUS_EQ] = ACTIONS(6203), - [anon_sym_DASH_EQ] = ACTIONS(6203), - [anon_sym_LT_LT_EQ] = ACTIONS(6203), - [anon_sym_GT_GT_EQ] = ACTIONS(6203), - [anon_sym_AMP_EQ] = ACTIONS(6203), - [anon_sym_CARET_EQ] = ACTIONS(6203), - [anon_sym_PIPE_EQ] = ACTIONS(6203), - [anon_sym_and_eq] = ACTIONS(6203), - [anon_sym_or_eq] = ACTIONS(6203), - [anon_sym_xor_eq] = ACTIONS(6203), - [anon_sym_LT_EQ_GT] = ACTIONS(6203), - [anon_sym_or] = ACTIONS(6210), - [anon_sym_and] = ACTIONS(6210), - [anon_sym_bitor] = ACTIONS(6203), - [anon_sym_xor] = ACTIONS(6210), - [anon_sym_bitand] = ACTIONS(6203), - [anon_sym_not_eq] = ACTIONS(6203), - [anon_sym_DASH_DASH] = ACTIONS(6203), - [anon_sym_PLUS_PLUS] = ACTIONS(6203), - [anon_sym_DOT] = ACTIONS(6210), - [anon_sym_DOT_STAR] = ACTIONS(6203), - [anon_sym_DASH_GT] = ACTIONS(6203), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6208), - [anon_sym_decltype] = ACTIONS(6208), + [STATE(2754)] = { + [sym_attribute_specifier] = STATE(3224), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7455), + [anon_sym_COMMA] = ACTIONS(7455), + [anon_sym_LPAREN2] = ACTIONS(7455), + [anon_sym_DASH] = ACTIONS(7453), + [anon_sym_PLUS] = ACTIONS(7453), + [anon_sym_STAR] = ACTIONS(7453), + [anon_sym_SLASH] = ACTIONS(7453), + [anon_sym_PERCENT] = ACTIONS(7453), + [anon_sym_PIPE_PIPE] = ACTIONS(7455), + [anon_sym_AMP_AMP] = ACTIONS(7455), + [anon_sym_PIPE] = ACTIONS(7453), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_AMP] = ACTIONS(7453), + [anon_sym_EQ_EQ] = ACTIONS(7455), + [anon_sym_BANG_EQ] = ACTIONS(7455), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_GT_EQ] = ACTIONS(7455), + [anon_sym_LT_EQ] = ACTIONS(7453), + [anon_sym_LT] = ACTIONS(7453), + [anon_sym_LT_LT] = ACTIONS(7453), + [anon_sym_GT_GT] = ACTIONS(7453), + [anon_sym___extension__] = ACTIONS(7455), + [anon_sym___attribute__] = ACTIONS(8293), + [anon_sym___attribute] = ACTIONS(8295), + [anon_sym_LBRACE] = ACTIONS(7455), + [anon_sym_LBRACK] = ACTIONS(7455), + [anon_sym_RBRACK] = ACTIONS(7455), + [anon_sym_EQ] = ACTIONS(7453), + [anon_sym_const] = ACTIONS(7453), + [anon_sym_constexpr] = ACTIONS(7455), + [anon_sym_volatile] = ACTIONS(7455), + [anon_sym_restrict] = ACTIONS(7455), + [anon_sym___restrict__] = ACTIONS(7455), + [anon_sym__Atomic] = ACTIONS(7455), + [anon_sym__Noreturn] = ACTIONS(7455), + [anon_sym_noreturn] = ACTIONS(7455), + [anon_sym__Nonnull] = ACTIONS(7455), + [anon_sym_mutable] = ACTIONS(7455), + [anon_sym_constinit] = ACTIONS(7455), + [anon_sym_consteval] = ACTIONS(7455), + [anon_sym_alignas] = ACTIONS(7455), + [anon_sym__Alignas] = ACTIONS(7455), + [anon_sym_QMARK] = ACTIONS(7455), + [anon_sym_STAR_EQ] = ACTIONS(7455), + [anon_sym_SLASH_EQ] = ACTIONS(7455), + [anon_sym_PERCENT_EQ] = ACTIONS(7455), + [anon_sym_PLUS_EQ] = ACTIONS(7455), + [anon_sym_DASH_EQ] = ACTIONS(7455), + [anon_sym_LT_LT_EQ] = ACTIONS(7455), + [anon_sym_GT_GT_EQ] = ACTIONS(7455), + [anon_sym_AMP_EQ] = ACTIONS(7455), + [anon_sym_CARET_EQ] = ACTIONS(7455), + [anon_sym_PIPE_EQ] = ACTIONS(7455), + [anon_sym_and_eq] = ACTIONS(7455), + [anon_sym_or_eq] = ACTIONS(7455), + [anon_sym_xor_eq] = ACTIONS(7455), + [anon_sym_LT_EQ_GT] = ACTIONS(7455), + [anon_sym_or] = ACTIONS(7453), + [anon_sym_and] = ACTIONS(7453), + [anon_sym_bitor] = ACTIONS(7455), + [anon_sym_xor] = ACTIONS(7453), + [anon_sym_bitand] = ACTIONS(7455), + [anon_sym_not_eq] = ACTIONS(7455), + [anon_sym_DASH_DASH] = ACTIONS(7455), + [anon_sym_PLUS_PLUS] = ACTIONS(7455), + [anon_sym_DOT] = ACTIONS(7453), + [anon_sym_DOT_STAR] = ACTIONS(7455), + [anon_sym_DASH_GT] = ACTIONS(7455), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7455), + [anon_sym_override] = ACTIONS(7455), + [anon_sym_requires] = ACTIONS(7455), }, - [STATE(3102)] = { + [STATE(2755)] = { [sym_identifier] = ACTIONS(7291), [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), [anon_sym_COMMA] = ACTIONS(7293), @@ -387580,6 +375519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(7291), [anon_sym___attribute] = ACTIONS(7291), [anon_sym_COLON] = ACTIONS(7291), + [anon_sym_COLON_COLON] = ACTIONS(7227), [anon_sym_RBRACK_RBRACK] = ACTIONS(7293), [anon_sym___based] = ACTIONS(7291), [anon_sym_LBRACE] = ACTIONS(7293), @@ -387618,2604 +375558,1890 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7293), [anon_sym_DASH_GT] = ACTIONS(7293), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7291), + [anon_sym_decltype] = ACTIONS(7291), [anon_sym_final] = ACTIONS(7291), [anon_sym_override] = ACTIONS(7291), [anon_sym_requires] = ACTIONS(7291), [anon_sym_COLON_RBRACK] = ACTIONS(7293), }, - [STATE(3103)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7339), - [anon_sym_COMMA] = ACTIONS(7339), - [anon_sym_LPAREN2] = ACTIONS(7339), - [anon_sym_DASH] = ACTIONS(7337), - [anon_sym_PLUS] = ACTIONS(7337), - [anon_sym_STAR] = ACTIONS(7337), - [anon_sym_SLASH] = ACTIONS(7337), - [anon_sym_PERCENT] = ACTIONS(7337), - [anon_sym_PIPE_PIPE] = ACTIONS(7339), - [anon_sym_AMP_AMP] = ACTIONS(7339), - [anon_sym_PIPE] = ACTIONS(7337), - [anon_sym_CARET] = ACTIONS(7337), - [anon_sym_AMP] = ACTIONS(7337), - [anon_sym_EQ_EQ] = ACTIONS(7339), - [anon_sym_BANG_EQ] = ACTIONS(7339), - [anon_sym_GT] = ACTIONS(7337), - [anon_sym_GT_EQ] = ACTIONS(7337), - [anon_sym_LT_EQ] = ACTIONS(7337), - [anon_sym_LT] = ACTIONS(7337), - [anon_sym_LT_LT] = ACTIONS(7337), - [anon_sym_GT_GT] = ACTIONS(7337), - [anon_sym___extension__] = ACTIONS(7339), - [anon_sym_LBRACE] = ACTIONS(7339), - [anon_sym_LBRACK] = ACTIONS(7339), - [anon_sym_EQ] = ACTIONS(7337), - [anon_sym_const] = ACTIONS(7337), - [anon_sym_constexpr] = ACTIONS(7339), - [anon_sym_volatile] = ACTIONS(7339), - [anon_sym_restrict] = ACTIONS(7339), - [anon_sym___restrict__] = ACTIONS(7339), - [anon_sym__Atomic] = ACTIONS(7339), - [anon_sym__Noreturn] = ACTIONS(7339), - [anon_sym_noreturn] = ACTIONS(7339), - [anon_sym__Nonnull] = ACTIONS(7339), - [anon_sym_mutable] = ACTIONS(7339), - [anon_sym_constinit] = ACTIONS(7339), - [anon_sym_consteval] = ACTIONS(7339), - [anon_sym_alignas] = ACTIONS(7339), - [anon_sym__Alignas] = ACTIONS(7339), - [anon_sym_QMARK] = ACTIONS(7339), - [anon_sym_STAR_EQ] = ACTIONS(7339), - [anon_sym_SLASH_EQ] = ACTIONS(7339), - [anon_sym_PERCENT_EQ] = ACTIONS(7339), - [anon_sym_PLUS_EQ] = ACTIONS(7339), - [anon_sym_DASH_EQ] = ACTIONS(7339), - [anon_sym_LT_LT_EQ] = ACTIONS(7339), - [anon_sym_GT_GT_EQ] = ACTIONS(7337), - [anon_sym_AMP_EQ] = ACTIONS(7339), - [anon_sym_CARET_EQ] = ACTIONS(7339), - [anon_sym_PIPE_EQ] = ACTIONS(7339), - [anon_sym_and_eq] = ACTIONS(7339), - [anon_sym_or_eq] = ACTIONS(7339), - [anon_sym_xor_eq] = ACTIONS(7339), - [anon_sym_LT_EQ_GT] = ACTIONS(7339), - [anon_sym_or] = ACTIONS(7337), - [anon_sym_and] = ACTIONS(7337), - [anon_sym_bitor] = ACTIONS(7339), - [anon_sym_xor] = ACTIONS(7337), - [anon_sym_bitand] = ACTIONS(7339), - [anon_sym_not_eq] = ACTIONS(7339), - [anon_sym_DASH_DASH] = ACTIONS(7339), - [anon_sym_PLUS_PLUS] = ACTIONS(7339), - [anon_sym_DOT] = ACTIONS(7337), - [anon_sym_DOT_STAR] = ACTIONS(7339), - [anon_sym_DASH_GT] = ACTIONS(7339), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7339), - [anon_sym_override] = ACTIONS(7339), - [anon_sym_GT2] = ACTIONS(7339), - [anon_sym_requires] = ACTIONS(7339), - }, - [STATE(3104)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(7343), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(7341), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(7343), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7341), - [anon_sym_AMP] = ACTIONS(7341), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7341), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7341), - [anon_sym_GT_GT] = ACTIONS(7341), - [anon_sym___extension__] = ACTIONS(7343), - [anon_sym_LBRACE] = ACTIONS(7343), - [anon_sym_LBRACK] = ACTIONS(7343), - [anon_sym_EQ] = ACTIONS(7341), - [anon_sym_const] = ACTIONS(7341), - [anon_sym_constexpr] = ACTIONS(7343), - [anon_sym_volatile] = ACTIONS(7343), - [anon_sym_restrict] = ACTIONS(7343), - [anon_sym___restrict__] = ACTIONS(7343), - [anon_sym__Atomic] = ACTIONS(7343), - [anon_sym__Noreturn] = ACTIONS(7343), - [anon_sym_noreturn] = ACTIONS(7343), - [anon_sym__Nonnull] = ACTIONS(7343), - [anon_sym_mutable] = ACTIONS(7343), - [anon_sym_constinit] = ACTIONS(7343), - [anon_sym_consteval] = ACTIONS(7343), - [anon_sym_alignas] = ACTIONS(7343), - [anon_sym__Alignas] = ACTIONS(7343), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_STAR_EQ] = ACTIONS(7343), - [anon_sym_SLASH_EQ] = ACTIONS(7343), - [anon_sym_PERCENT_EQ] = ACTIONS(7343), - [anon_sym_PLUS_EQ] = ACTIONS(7343), - [anon_sym_DASH_EQ] = ACTIONS(7343), - [anon_sym_LT_LT_EQ] = ACTIONS(7343), - [anon_sym_GT_GT_EQ] = ACTIONS(7341), - [anon_sym_AMP_EQ] = ACTIONS(7343), - [anon_sym_CARET_EQ] = ACTIONS(7343), - [anon_sym_PIPE_EQ] = ACTIONS(7343), - [anon_sym_and_eq] = ACTIONS(7343), - [anon_sym_or_eq] = ACTIONS(7343), - [anon_sym_xor_eq] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7341), - [anon_sym_and] = ACTIONS(7341), - [anon_sym_bitor] = ACTIONS(7343), - [anon_sym_xor] = ACTIONS(7341), - [anon_sym_bitand] = ACTIONS(7343), - [anon_sym_not_eq] = ACTIONS(7343), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7343), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7343), - [anon_sym_override] = ACTIONS(7343), - [anon_sym_GT2] = ACTIONS(7343), - [anon_sym_requires] = ACTIONS(7343), - }, - [STATE(3105)] = { - [sym_attribute_declaration] = STATE(3105), - [aux_sym_attributed_declarator_repeat1] = STATE(3105), - [sym_identifier] = ACTIONS(2101), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8700), - [anon_sym_COMMA] = ACTIONS(8700), - [anon_sym_RPAREN] = ACTIONS(8700), - [aux_sym_preproc_if_token2] = ACTIONS(8700), - [aux_sym_preproc_else_token1] = ACTIONS(8700), - [aux_sym_preproc_elif_token1] = ACTIONS(2101), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8700), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8700), - [anon_sym_LPAREN2] = ACTIONS(8700), - [anon_sym_DASH] = ACTIONS(2101), - [anon_sym_PLUS] = ACTIONS(2101), - [anon_sym_STAR] = ACTIONS(2101), - [anon_sym_SLASH] = ACTIONS(2101), - [anon_sym_PERCENT] = ACTIONS(2101), - [anon_sym_PIPE_PIPE] = ACTIONS(8700), - [anon_sym_AMP_AMP] = ACTIONS(8700), - [anon_sym_PIPE] = ACTIONS(2101), - [anon_sym_CARET] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_EQ_EQ] = ACTIONS(8700), - [anon_sym_BANG_EQ] = ACTIONS(8700), - [anon_sym_GT] = ACTIONS(2101), - [anon_sym_GT_EQ] = ACTIONS(8700), - [anon_sym_LT_EQ] = ACTIONS(2101), - [anon_sym_LT] = ACTIONS(2101), - [anon_sym_LT_LT] = ACTIONS(2101), - [anon_sym_GT_GT] = ACTIONS(2101), - [anon_sym_SEMI] = ACTIONS(8700), - [anon_sym___attribute__] = ACTIONS(2101), - [anon_sym___attribute] = ACTIONS(2101), - [anon_sym_COLON] = ACTIONS(2101), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8702), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8700), - [anon_sym_RBRACE] = ACTIONS(8700), - [anon_sym_LBRACK] = ACTIONS(2101), - [anon_sym_EQ] = ACTIONS(2101), - [anon_sym_QMARK] = ACTIONS(8700), - [anon_sym_STAR_EQ] = ACTIONS(8700), - [anon_sym_SLASH_EQ] = ACTIONS(8700), - [anon_sym_PERCENT_EQ] = ACTIONS(8700), - [anon_sym_PLUS_EQ] = ACTIONS(8700), - [anon_sym_DASH_EQ] = ACTIONS(8700), - [anon_sym_LT_LT_EQ] = ACTIONS(8700), - [anon_sym_GT_GT_EQ] = ACTIONS(8700), - [anon_sym_AMP_EQ] = ACTIONS(8700), - [anon_sym_CARET_EQ] = ACTIONS(8700), - [anon_sym_PIPE_EQ] = ACTIONS(8700), - [anon_sym_and_eq] = ACTIONS(2101), - [anon_sym_or_eq] = ACTIONS(2101), - [anon_sym_xor_eq] = ACTIONS(2101), - [anon_sym_LT_EQ_GT] = ACTIONS(8700), - [anon_sym_or] = ACTIONS(2101), - [anon_sym_and] = ACTIONS(2101), - [anon_sym_bitor] = ACTIONS(2101), - [anon_sym_xor] = ACTIONS(2101), - [anon_sym_bitand] = ACTIONS(2101), - [anon_sym_not_eq] = ACTIONS(2101), - [anon_sym_DASH_DASH] = ACTIONS(8700), - [anon_sym_PLUS_PLUS] = ACTIONS(8700), - [anon_sym_DOT] = ACTIONS(2101), - [anon_sym_DOT_STAR] = ACTIONS(8700), - [anon_sym_DASH_GT] = ACTIONS(8700), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2101), - [anon_sym_override] = ACTIONS(2101), - [anon_sym_requires] = ACTIONS(2101), - [anon_sym_COLON_RBRACK] = ACTIONS(8700), - }, - [STATE(3106)] = { - [sym_attribute_specifier] = STATE(3715), - [sym_attribute_declaration] = STATE(6295), - [sym_type_qualifier] = STATE(3651), - [sym_alignas_qualifier] = STATE(3874), - [aux_sym_type_definition_repeat1] = STATE(3715), - [aux_sym__type_definition_type_repeat1] = STATE(3651), - [aux_sym_attributed_declarator_repeat1] = STATE(6295), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), - [anon_sym_COMMA] = ACTIONS(6390), - [anon_sym_LPAREN2] = ACTIONS(6390), - [anon_sym_DASH] = ACTIONS(6388), - [anon_sym_PLUS] = ACTIONS(6388), - [anon_sym_STAR] = ACTIONS(6390), - [anon_sym_SLASH] = ACTIONS(6388), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_PIPE_PIPE] = ACTIONS(6390), - [anon_sym_AMP_AMP] = ACTIONS(6390), - [anon_sym_PIPE] = ACTIONS(6388), - [anon_sym_CARET] = ACTIONS(6390), - [anon_sym_AMP] = ACTIONS(6388), - [anon_sym_EQ_EQ] = ACTIONS(6390), - [anon_sym_BANG_EQ] = ACTIONS(6390), - [anon_sym_GT] = ACTIONS(6388), - [anon_sym_GT_EQ] = ACTIONS(6388), - [anon_sym_LT_EQ] = ACTIONS(6388), - [anon_sym_LT] = ACTIONS(6388), - [anon_sym_LT_LT] = ACTIONS(6390), - [anon_sym_GT_GT] = ACTIONS(6388), - [anon_sym___extension__] = ACTIONS(7439), - [anon_sym___attribute__] = ACTIONS(6390), - [anon_sym___attribute] = ACTIONS(6388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), - [anon_sym_LBRACK] = ACTIONS(6388), - [anon_sym_const] = ACTIONS(7447), - [anon_sym_constexpr] = ACTIONS(7439), - [anon_sym_volatile] = ACTIONS(7439), - [anon_sym_restrict] = ACTIONS(7439), - [anon_sym___restrict__] = ACTIONS(7439), - [anon_sym__Atomic] = ACTIONS(7439), - [anon_sym__Noreturn] = ACTIONS(7439), - [anon_sym_noreturn] = ACTIONS(7439), - [anon_sym__Nonnull] = ACTIONS(7439), - [anon_sym_mutable] = ACTIONS(7439), - [anon_sym_constinit] = ACTIONS(7439), - [anon_sym_consteval] = ACTIONS(7439), - [anon_sym_alignas] = ACTIONS(7449), - [anon_sym__Alignas] = ACTIONS(7449), - [anon_sym_QMARK] = ACTIONS(6390), - [anon_sym_LT_EQ_GT] = ACTIONS(6390), - [anon_sym_or] = ACTIONS(6390), - [anon_sym_and] = ACTIONS(6390), - [anon_sym_bitor] = ACTIONS(6390), - [anon_sym_xor] = ACTIONS(6390), - [anon_sym_bitand] = ACTIONS(6390), - [anon_sym_not_eq] = ACTIONS(6390), - [anon_sym_DASH_DASH] = ACTIONS(6390), - [anon_sym_PLUS_PLUS] = ACTIONS(6390), - [anon_sym_asm] = ACTIONS(6390), - [anon_sym___asm__] = ACTIONS(6390), - [anon_sym___asm] = ACTIONS(6388), - [anon_sym_DOT] = ACTIONS(6388), - [anon_sym_DOT_STAR] = ACTIONS(6390), - [anon_sym_DASH_GT] = ACTIONS(6390), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6390), - [anon_sym_override] = ACTIONS(6390), - [anon_sym_GT2] = ACTIONS(6390), - [anon_sym_noexcept] = ACTIONS(6390), - [anon_sym_throw] = ACTIONS(6390), - [anon_sym_requires] = ACTIONS(6390), - }, - [STATE(3107)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7347), - [anon_sym_COMMA] = ACTIONS(7347), - [anon_sym_LPAREN2] = ACTIONS(7347), - [anon_sym_DASH] = ACTIONS(7345), - [anon_sym_PLUS] = ACTIONS(7345), - [anon_sym_STAR] = ACTIONS(7345), - [anon_sym_SLASH] = ACTIONS(7345), - [anon_sym_PERCENT] = ACTIONS(7345), - [anon_sym_PIPE_PIPE] = ACTIONS(7347), - [anon_sym_AMP_AMP] = ACTIONS(7347), - [anon_sym_PIPE] = ACTIONS(7345), - [anon_sym_CARET] = ACTIONS(7345), - [anon_sym_AMP] = ACTIONS(7345), - [anon_sym_EQ_EQ] = ACTIONS(7347), - [anon_sym_BANG_EQ] = ACTIONS(7347), - [anon_sym_GT] = ACTIONS(7345), - [anon_sym_GT_EQ] = ACTIONS(7345), - [anon_sym_LT_EQ] = ACTIONS(7345), - [anon_sym_LT] = ACTIONS(7345), - [anon_sym_LT_LT] = ACTIONS(7345), - [anon_sym_GT_GT] = ACTIONS(7345), - [anon_sym___extension__] = ACTIONS(7347), - [anon_sym_LBRACE] = ACTIONS(7347), - [anon_sym_LBRACK] = ACTIONS(7347), - [anon_sym_EQ] = ACTIONS(7345), - [anon_sym_const] = ACTIONS(7345), - [anon_sym_constexpr] = ACTIONS(7347), - [anon_sym_volatile] = ACTIONS(7347), - [anon_sym_restrict] = ACTIONS(7347), - [anon_sym___restrict__] = ACTIONS(7347), - [anon_sym__Atomic] = ACTIONS(7347), - [anon_sym__Noreturn] = ACTIONS(7347), - [anon_sym_noreturn] = ACTIONS(7347), - [anon_sym__Nonnull] = ACTIONS(7347), - [anon_sym_mutable] = ACTIONS(7347), - [anon_sym_constinit] = ACTIONS(7347), - [anon_sym_consteval] = ACTIONS(7347), - [anon_sym_alignas] = ACTIONS(7347), - [anon_sym__Alignas] = ACTIONS(7347), - [anon_sym_QMARK] = ACTIONS(7347), - [anon_sym_STAR_EQ] = ACTIONS(7347), - [anon_sym_SLASH_EQ] = ACTIONS(7347), - [anon_sym_PERCENT_EQ] = ACTIONS(7347), - [anon_sym_PLUS_EQ] = ACTIONS(7347), - [anon_sym_DASH_EQ] = ACTIONS(7347), - [anon_sym_LT_LT_EQ] = ACTIONS(7347), - [anon_sym_GT_GT_EQ] = ACTIONS(7345), - [anon_sym_AMP_EQ] = ACTIONS(7347), - [anon_sym_CARET_EQ] = ACTIONS(7347), - [anon_sym_PIPE_EQ] = ACTIONS(7347), - [anon_sym_and_eq] = ACTIONS(7347), - [anon_sym_or_eq] = ACTIONS(7347), - [anon_sym_xor_eq] = ACTIONS(7347), - [anon_sym_LT_EQ_GT] = ACTIONS(7347), - [anon_sym_or] = ACTIONS(7345), - [anon_sym_and] = ACTIONS(7345), - [anon_sym_bitor] = ACTIONS(7347), - [anon_sym_xor] = ACTIONS(7345), - [anon_sym_bitand] = ACTIONS(7347), - [anon_sym_not_eq] = ACTIONS(7347), - [anon_sym_DASH_DASH] = ACTIONS(7347), - [anon_sym_PLUS_PLUS] = ACTIONS(7347), - [anon_sym_DOT] = ACTIONS(7345), - [anon_sym_DOT_STAR] = ACTIONS(7347), - [anon_sym_DASH_GT] = ACTIONS(7347), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7347), - [anon_sym_override] = ACTIONS(7347), - [anon_sym_GT2] = ACTIONS(7347), - [anon_sym_requires] = ACTIONS(7347), - }, - [STATE(3108)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7353), - [anon_sym_COMMA] = ACTIONS(7353), - [anon_sym_LPAREN2] = ACTIONS(7353), - [anon_sym_DASH] = ACTIONS(7351), - [anon_sym_PLUS] = ACTIONS(7351), - [anon_sym_STAR] = ACTIONS(7351), - [anon_sym_SLASH] = ACTIONS(7351), - [anon_sym_PERCENT] = ACTIONS(7351), - [anon_sym_PIPE_PIPE] = ACTIONS(7353), - [anon_sym_AMP_AMP] = ACTIONS(7353), - [anon_sym_PIPE] = ACTIONS(7351), - [anon_sym_CARET] = ACTIONS(7351), - [anon_sym_AMP] = ACTIONS(7351), - [anon_sym_EQ_EQ] = ACTIONS(7353), - [anon_sym_BANG_EQ] = ACTIONS(7353), - [anon_sym_GT] = ACTIONS(7351), - [anon_sym_GT_EQ] = ACTIONS(7351), - [anon_sym_LT_EQ] = ACTIONS(7351), - [anon_sym_LT] = ACTIONS(7351), - [anon_sym_LT_LT] = ACTIONS(7351), - [anon_sym_GT_GT] = ACTIONS(7351), - [anon_sym___extension__] = ACTIONS(7353), - [anon_sym_LBRACE] = ACTIONS(7353), - [anon_sym_LBRACK] = ACTIONS(7353), - [anon_sym_EQ] = ACTIONS(7351), - [anon_sym_const] = ACTIONS(7351), - [anon_sym_constexpr] = ACTIONS(7353), - [anon_sym_volatile] = ACTIONS(7353), - [anon_sym_restrict] = ACTIONS(7353), - [anon_sym___restrict__] = ACTIONS(7353), - [anon_sym__Atomic] = ACTIONS(7353), - [anon_sym__Noreturn] = ACTIONS(7353), - [anon_sym_noreturn] = ACTIONS(7353), - [anon_sym__Nonnull] = ACTIONS(7353), - [anon_sym_mutable] = ACTIONS(7353), - [anon_sym_constinit] = ACTIONS(7353), - [anon_sym_consteval] = ACTIONS(7353), - [anon_sym_alignas] = ACTIONS(7353), - [anon_sym__Alignas] = ACTIONS(7353), - [anon_sym_QMARK] = ACTIONS(7353), - [anon_sym_STAR_EQ] = ACTIONS(7353), - [anon_sym_SLASH_EQ] = ACTIONS(7353), - [anon_sym_PERCENT_EQ] = ACTIONS(7353), - [anon_sym_PLUS_EQ] = ACTIONS(7353), - [anon_sym_DASH_EQ] = ACTIONS(7353), - [anon_sym_LT_LT_EQ] = ACTIONS(7353), - [anon_sym_GT_GT_EQ] = ACTIONS(7351), - [anon_sym_AMP_EQ] = ACTIONS(7353), - [anon_sym_CARET_EQ] = ACTIONS(7353), - [anon_sym_PIPE_EQ] = ACTIONS(7353), - [anon_sym_and_eq] = ACTIONS(7353), - [anon_sym_or_eq] = ACTIONS(7353), - [anon_sym_xor_eq] = ACTIONS(7353), - [anon_sym_LT_EQ_GT] = ACTIONS(7353), - [anon_sym_or] = ACTIONS(7351), - [anon_sym_and] = ACTIONS(7351), - [anon_sym_bitor] = ACTIONS(7353), - [anon_sym_xor] = ACTIONS(7351), - [anon_sym_bitand] = ACTIONS(7353), - [anon_sym_not_eq] = ACTIONS(7353), - [anon_sym_DASH_DASH] = ACTIONS(7353), - [anon_sym_PLUS_PLUS] = ACTIONS(7353), - [anon_sym_DOT] = ACTIONS(7351), - [anon_sym_DOT_STAR] = ACTIONS(7353), - [anon_sym_DASH_GT] = ACTIONS(7353), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7353), - [anon_sym_override] = ACTIONS(7353), - [anon_sym_GT2] = ACTIONS(7353), - [anon_sym_requires] = ACTIONS(7353), - }, - [STATE(3109)] = { - [sym_identifier] = ACTIONS(8705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8707), - [anon_sym_COMMA] = ACTIONS(8707), - [anon_sym_RPAREN] = ACTIONS(8707), - [aux_sym_preproc_if_token2] = ACTIONS(8707), - [aux_sym_preproc_else_token1] = ACTIONS(8707), - [aux_sym_preproc_elif_token1] = ACTIONS(8705), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8707), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8707), - [anon_sym_LPAREN2] = ACTIONS(8707), - [anon_sym_DASH] = ACTIONS(8705), - [anon_sym_PLUS] = ACTIONS(8705), - [anon_sym_STAR] = ACTIONS(8705), - [anon_sym_SLASH] = ACTIONS(8705), - [anon_sym_PERCENT] = ACTIONS(8705), - [anon_sym_PIPE_PIPE] = ACTIONS(8707), - [anon_sym_AMP_AMP] = ACTIONS(8707), - [anon_sym_PIPE] = ACTIONS(8705), - [anon_sym_CARET] = ACTIONS(8705), - [anon_sym_AMP] = ACTIONS(8705), - [anon_sym_EQ_EQ] = ACTIONS(8707), - [anon_sym_BANG_EQ] = ACTIONS(8707), - [anon_sym_GT] = ACTIONS(8705), - [anon_sym_GT_EQ] = ACTIONS(8707), - [anon_sym_LT_EQ] = ACTIONS(8705), - [anon_sym_LT] = ACTIONS(8705), - [anon_sym_LT_LT] = ACTIONS(8705), - [anon_sym_GT_GT] = ACTIONS(8705), - [anon_sym_SEMI] = ACTIONS(8707), - [anon_sym___attribute__] = ACTIONS(8705), - [anon_sym___attribute] = ACTIONS(8705), - [anon_sym_COLON] = ACTIONS(8705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8707), - [anon_sym_LBRACE] = ACTIONS(8707), - [anon_sym_RBRACE] = ACTIONS(8707), - [anon_sym_LBRACK] = ACTIONS(8705), - [anon_sym_RBRACK] = ACTIONS(8707), - [anon_sym_EQ] = ACTIONS(8705), - [anon_sym_QMARK] = ACTIONS(8707), - [anon_sym_STAR_EQ] = ACTIONS(8707), - [anon_sym_SLASH_EQ] = ACTIONS(8707), - [anon_sym_PERCENT_EQ] = ACTIONS(8707), - [anon_sym_PLUS_EQ] = ACTIONS(8707), - [anon_sym_DASH_EQ] = ACTIONS(8707), - [anon_sym_LT_LT_EQ] = ACTIONS(8707), - [anon_sym_GT_GT_EQ] = ACTIONS(8707), - [anon_sym_AMP_EQ] = ACTIONS(8707), - [anon_sym_CARET_EQ] = ACTIONS(8707), - [anon_sym_PIPE_EQ] = ACTIONS(8707), - [anon_sym_and_eq] = ACTIONS(8705), - [anon_sym_or_eq] = ACTIONS(8705), - [anon_sym_xor_eq] = ACTIONS(8705), - [anon_sym_LT_EQ_GT] = ACTIONS(8707), - [anon_sym_or] = ACTIONS(8705), - [anon_sym_and] = ACTIONS(8705), - [anon_sym_bitor] = ACTIONS(8705), - [anon_sym_xor] = ACTIONS(8705), - [anon_sym_bitand] = ACTIONS(8705), - [anon_sym_not_eq] = ACTIONS(8705), - [anon_sym_DASH_DASH] = ACTIONS(8707), - [anon_sym_PLUS_PLUS] = ACTIONS(8707), - [anon_sym_asm] = ACTIONS(8705), - [anon_sym___asm__] = ACTIONS(8705), - [anon_sym___asm] = ACTIONS(8705), - [anon_sym_DOT] = ACTIONS(8705), - [anon_sym_DOT_STAR] = ACTIONS(8707), - [anon_sym_DASH_GT] = ACTIONS(8707), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(8705), - [anon_sym_COLON_RBRACK] = ACTIONS(8707), - }, - [STATE(3110)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7357), - [anon_sym_COMMA] = ACTIONS(7357), - [anon_sym_LPAREN2] = ACTIONS(7357), - [anon_sym_DASH] = ACTIONS(7355), - [anon_sym_PLUS] = ACTIONS(7355), - [anon_sym_STAR] = ACTIONS(7355), - [anon_sym_SLASH] = ACTIONS(7355), - [anon_sym_PERCENT] = ACTIONS(7355), - [anon_sym_PIPE_PIPE] = ACTIONS(7357), - [anon_sym_AMP_AMP] = ACTIONS(7357), - [anon_sym_PIPE] = ACTIONS(7355), - [anon_sym_CARET] = ACTIONS(7355), - [anon_sym_AMP] = ACTIONS(7355), - [anon_sym_EQ_EQ] = ACTIONS(7357), - [anon_sym_BANG_EQ] = ACTIONS(7357), - [anon_sym_GT] = ACTIONS(7355), - [anon_sym_GT_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7355), - [anon_sym_LT] = ACTIONS(7355), - [anon_sym_LT_LT] = ACTIONS(7355), - [anon_sym_GT_GT] = ACTIONS(7355), - [anon_sym___extension__] = ACTIONS(7357), - [anon_sym_LBRACE] = ACTIONS(7357), - [anon_sym_LBRACK] = ACTIONS(7357), - [anon_sym_EQ] = ACTIONS(7355), - [anon_sym_const] = ACTIONS(7355), - [anon_sym_constexpr] = ACTIONS(7357), - [anon_sym_volatile] = ACTIONS(7357), - [anon_sym_restrict] = ACTIONS(7357), - [anon_sym___restrict__] = ACTIONS(7357), - [anon_sym__Atomic] = ACTIONS(7357), - [anon_sym__Noreturn] = ACTIONS(7357), - [anon_sym_noreturn] = ACTIONS(7357), - [anon_sym__Nonnull] = ACTIONS(7357), - [anon_sym_mutable] = ACTIONS(7357), - [anon_sym_constinit] = ACTIONS(7357), - [anon_sym_consteval] = ACTIONS(7357), - [anon_sym_alignas] = ACTIONS(7357), - [anon_sym__Alignas] = ACTIONS(7357), - [anon_sym_QMARK] = ACTIONS(7357), - [anon_sym_STAR_EQ] = ACTIONS(7357), - [anon_sym_SLASH_EQ] = ACTIONS(7357), - [anon_sym_PERCENT_EQ] = ACTIONS(7357), - [anon_sym_PLUS_EQ] = ACTIONS(7357), - [anon_sym_DASH_EQ] = ACTIONS(7357), - [anon_sym_LT_LT_EQ] = ACTIONS(7357), - [anon_sym_GT_GT_EQ] = ACTIONS(7355), - [anon_sym_AMP_EQ] = ACTIONS(7357), - [anon_sym_CARET_EQ] = ACTIONS(7357), - [anon_sym_PIPE_EQ] = ACTIONS(7357), - [anon_sym_and_eq] = ACTIONS(7357), - [anon_sym_or_eq] = ACTIONS(7357), - [anon_sym_xor_eq] = ACTIONS(7357), - [anon_sym_LT_EQ_GT] = ACTIONS(7357), - [anon_sym_or] = ACTIONS(7355), - [anon_sym_and] = ACTIONS(7355), - [anon_sym_bitor] = ACTIONS(7357), - [anon_sym_xor] = ACTIONS(7355), - [anon_sym_bitand] = ACTIONS(7357), - [anon_sym_not_eq] = ACTIONS(7357), - [anon_sym_DASH_DASH] = ACTIONS(7357), - [anon_sym_PLUS_PLUS] = ACTIONS(7357), - [anon_sym_DOT] = ACTIONS(7355), - [anon_sym_DOT_STAR] = ACTIONS(7357), - [anon_sym_DASH_GT] = ACTIONS(7357), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7357), - [anon_sym_override] = ACTIONS(7357), - [anon_sym_GT2] = ACTIONS(7357), - [anon_sym_requires] = ACTIONS(7357), - }, - [STATE(3111)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), - [anon_sym_COMMA] = ACTIONS(7361), - [anon_sym_LPAREN2] = ACTIONS(7361), - [anon_sym_DASH] = ACTIONS(7359), - [anon_sym_PLUS] = ACTIONS(7359), - [anon_sym_STAR] = ACTIONS(7359), - [anon_sym_SLASH] = ACTIONS(7359), - [anon_sym_PERCENT] = ACTIONS(7359), - [anon_sym_PIPE_PIPE] = ACTIONS(7361), - [anon_sym_AMP_AMP] = ACTIONS(7361), - [anon_sym_PIPE] = ACTIONS(7359), - [anon_sym_CARET] = ACTIONS(7359), - [anon_sym_AMP] = ACTIONS(7359), - [anon_sym_EQ_EQ] = ACTIONS(7361), - [anon_sym_BANG_EQ] = ACTIONS(7361), - [anon_sym_GT] = ACTIONS(7359), - [anon_sym_GT_EQ] = ACTIONS(7359), - [anon_sym_LT_EQ] = ACTIONS(7359), - [anon_sym_LT] = ACTIONS(7359), - [anon_sym_LT_LT] = ACTIONS(7359), - [anon_sym_GT_GT] = ACTIONS(7359), - [anon_sym___extension__] = ACTIONS(7361), - [anon_sym_LBRACE] = ACTIONS(7361), - [anon_sym_LBRACK] = ACTIONS(7361), - [anon_sym_EQ] = ACTIONS(7359), - [anon_sym_const] = ACTIONS(7359), - [anon_sym_constexpr] = ACTIONS(7361), - [anon_sym_volatile] = ACTIONS(7361), - [anon_sym_restrict] = ACTIONS(7361), - [anon_sym___restrict__] = ACTIONS(7361), - [anon_sym__Atomic] = ACTIONS(7361), - [anon_sym__Noreturn] = ACTIONS(7361), - [anon_sym_noreturn] = ACTIONS(7361), - [anon_sym__Nonnull] = ACTIONS(7361), - [anon_sym_mutable] = ACTIONS(7361), - [anon_sym_constinit] = ACTIONS(7361), - [anon_sym_consteval] = ACTIONS(7361), - [anon_sym_alignas] = ACTIONS(7361), - [anon_sym__Alignas] = ACTIONS(7361), - [anon_sym_QMARK] = ACTIONS(7361), - [anon_sym_STAR_EQ] = ACTIONS(7361), - [anon_sym_SLASH_EQ] = ACTIONS(7361), - [anon_sym_PERCENT_EQ] = ACTIONS(7361), - [anon_sym_PLUS_EQ] = ACTIONS(7361), - [anon_sym_DASH_EQ] = ACTIONS(7361), - [anon_sym_LT_LT_EQ] = ACTIONS(7361), - [anon_sym_GT_GT_EQ] = ACTIONS(7359), - [anon_sym_AMP_EQ] = ACTIONS(7361), - [anon_sym_CARET_EQ] = ACTIONS(7361), - [anon_sym_PIPE_EQ] = ACTIONS(7361), - [anon_sym_and_eq] = ACTIONS(7361), - [anon_sym_or_eq] = ACTIONS(7361), - [anon_sym_xor_eq] = ACTIONS(7361), - [anon_sym_LT_EQ_GT] = ACTIONS(7361), - [anon_sym_or] = ACTIONS(7359), - [anon_sym_and] = ACTIONS(7359), - [anon_sym_bitor] = ACTIONS(7361), - [anon_sym_xor] = ACTIONS(7359), - [anon_sym_bitand] = ACTIONS(7361), - [anon_sym_not_eq] = ACTIONS(7361), - [anon_sym_DASH_DASH] = ACTIONS(7361), - [anon_sym_PLUS_PLUS] = ACTIONS(7361), - [anon_sym_DOT] = ACTIONS(7359), - [anon_sym_DOT_STAR] = ACTIONS(7361), - [anon_sym_DASH_GT] = ACTIONS(7361), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7361), - [anon_sym_override] = ACTIONS(7361), - [anon_sym_GT2] = ACTIONS(7361), - [anon_sym_requires] = ACTIONS(7361), - }, - [STATE(3112)] = { - [sym_identifier] = ACTIONS(7263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7265), - [anon_sym_COMMA] = ACTIONS(7265), - [anon_sym_RPAREN] = ACTIONS(7265), - [anon_sym_LPAREN2] = ACTIONS(7265), - [anon_sym_DASH] = ACTIONS(7263), - [anon_sym_PLUS] = ACTIONS(7263), - [anon_sym_STAR] = ACTIONS(7265), - [anon_sym_SLASH] = ACTIONS(7263), - [anon_sym_PERCENT] = ACTIONS(7265), - [anon_sym_PIPE_PIPE] = ACTIONS(7265), - [anon_sym_AMP_AMP] = ACTIONS(7265), - [anon_sym_PIPE] = ACTIONS(7263), - [anon_sym_CARET] = ACTIONS(7265), - [anon_sym_AMP] = ACTIONS(7263), - [anon_sym_EQ_EQ] = ACTIONS(7265), - [anon_sym_BANG_EQ] = ACTIONS(7265), - [anon_sym_GT] = ACTIONS(7263), - [anon_sym_GT_EQ] = ACTIONS(7265), - [anon_sym_LT_EQ] = ACTIONS(7263), - [anon_sym_LT] = ACTIONS(7263), - [anon_sym_LT_LT] = ACTIONS(7265), - [anon_sym_GT_GT] = ACTIONS(7265), - [anon_sym_SEMI] = ACTIONS(7265), - [anon_sym___extension__] = ACTIONS(7263), - [anon_sym___attribute__] = ACTIONS(7263), - [anon_sym___attribute] = ACTIONS(7263), - [anon_sym_COLON] = ACTIONS(7263), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7265), - [anon_sym___based] = ACTIONS(7263), - [anon_sym_LBRACE] = ACTIONS(7265), - [anon_sym_RBRACE] = ACTIONS(7265), - [anon_sym_signed] = ACTIONS(7263), - [anon_sym_unsigned] = ACTIONS(7263), - [anon_sym_long] = ACTIONS(7263), - [anon_sym_short] = ACTIONS(7263), - [anon_sym_LBRACK] = ACTIONS(7265), - [anon_sym_const] = ACTIONS(7263), - [anon_sym_constexpr] = ACTIONS(7263), - [anon_sym_volatile] = ACTIONS(7263), - [anon_sym_restrict] = ACTIONS(7263), - [anon_sym___restrict__] = ACTIONS(7263), - [anon_sym__Atomic] = ACTIONS(7263), - [anon_sym__Noreturn] = ACTIONS(7263), - [anon_sym_noreturn] = ACTIONS(7263), - [anon_sym__Nonnull] = ACTIONS(7263), - [anon_sym_mutable] = ACTIONS(7263), - [anon_sym_constinit] = ACTIONS(7263), - [anon_sym_consteval] = ACTIONS(7263), - [anon_sym_alignas] = ACTIONS(7263), - [anon_sym__Alignas] = ACTIONS(7263), - [sym_primitive_type] = ACTIONS(7263), - [anon_sym_QMARK] = ACTIONS(7265), - [anon_sym_LT_EQ_GT] = ACTIONS(7265), - [anon_sym_or] = ACTIONS(7263), - [anon_sym_and] = ACTIONS(7263), - [anon_sym_bitor] = ACTIONS(7263), - [anon_sym_xor] = ACTIONS(7263), - [anon_sym_bitand] = ACTIONS(7263), - [anon_sym_not_eq] = ACTIONS(7263), - [anon_sym_DASH_DASH] = ACTIONS(7265), - [anon_sym_PLUS_PLUS] = ACTIONS(7265), - [anon_sym_DOT] = ACTIONS(7263), - [anon_sym_DOT_STAR] = ACTIONS(7265), - [anon_sym_DASH_GT] = ACTIONS(7265), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7263), - [anon_sym_override] = ACTIONS(7263), - [anon_sym_requires] = ACTIONS(7263), - [anon_sym_COLON_RBRACK] = ACTIONS(7265), + [STATE(2756)] = { + [sym_ms_based_modifier] = STATE(10837), + [sym_ms_unaligned_ptr_modifier] = STATE(6574), + [sym_ms_pointer_modifier] = STATE(2770), + [sym__declarator] = STATE(8823), + [sym__abstract_declarator] = STATE(9052), + [sym_parenthesized_declarator] = STATE(8555), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_function_declarator] = STATE(8555), + [sym_abstract_function_declarator] = STATE(8596), + [sym_array_declarator] = STATE(8555), + [sym_abstract_array_declarator] = STATE(8596), + [sym_type_qualifier] = STATE(3822), + [sym_alignas_qualifier] = STATE(7511), + [sym_parameter_list] = STATE(5327), + [sym_decltype] = STATE(10768), + [sym_reference_declarator] = STATE(8555), + [sym_abstract_reference_declarator] = STATE(8596), + [sym_structured_binding_declarator] = STATE(8555), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7990), + [sym_qualified_identifier] = STATE(8555), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__type_definition_type_repeat1] = STATE(3822), + [aux_sym_pointer_declarator_repeat1] = STATE(2770), + [sym_identifier] = ACTIONS(8546), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(8651), + [anon_sym_AMP_AMP] = ACTIONS(8653), + [anon_sym_AMP] = ACTIONS(8655), + [anon_sym___extension__] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(6861), + [anon_sym___attribute] = ACTIONS(6861), + [anon_sym_COLON_COLON] = ACTIONS(8554), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3266), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3266), + [sym_ms_signed_ptr_modifier] = ACTIONS(3266), + [anon_sym__unaligned] = ACTIONS(3268), + [anon_sym___unaligned] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(5627), + [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__Nonnull] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_GT2] = ACTIONS(6859), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), }, - [STATE(3113)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7423), - [anon_sym_COMMA] = ACTIONS(7423), - [anon_sym_LPAREN2] = ACTIONS(7423), - [anon_sym_DASH] = ACTIONS(7421), - [anon_sym_PLUS] = ACTIONS(7421), - [anon_sym_STAR] = ACTIONS(7421), - [anon_sym_SLASH] = ACTIONS(7421), - [anon_sym_PERCENT] = ACTIONS(7421), - [anon_sym_PIPE_PIPE] = ACTIONS(7423), - [anon_sym_AMP_AMP] = ACTIONS(7423), - [anon_sym_PIPE] = ACTIONS(7421), - [anon_sym_CARET] = ACTIONS(7421), - [anon_sym_AMP] = ACTIONS(7421), - [anon_sym_EQ_EQ] = ACTIONS(7423), - [anon_sym_BANG_EQ] = ACTIONS(7423), - [anon_sym_GT] = ACTIONS(7421), - [anon_sym_GT_EQ] = ACTIONS(7421), - [anon_sym_LT_EQ] = ACTIONS(7421), - [anon_sym_LT] = ACTIONS(7421), - [anon_sym_LT_LT] = ACTIONS(7421), - [anon_sym_GT_GT] = ACTIONS(7421), - [anon_sym___extension__] = ACTIONS(7423), - [anon_sym_LBRACE] = ACTIONS(7423), - [anon_sym_LBRACK] = ACTIONS(7423), - [anon_sym_EQ] = ACTIONS(7421), - [anon_sym_const] = ACTIONS(7421), - [anon_sym_constexpr] = ACTIONS(7423), - [anon_sym_volatile] = ACTIONS(7423), - [anon_sym_restrict] = ACTIONS(7423), - [anon_sym___restrict__] = ACTIONS(7423), - [anon_sym__Atomic] = ACTIONS(7423), - [anon_sym__Noreturn] = ACTIONS(7423), - [anon_sym_noreturn] = ACTIONS(7423), - [anon_sym__Nonnull] = ACTIONS(7423), - [anon_sym_mutable] = ACTIONS(7423), - [anon_sym_constinit] = ACTIONS(7423), - [anon_sym_consteval] = ACTIONS(7423), - [anon_sym_alignas] = ACTIONS(7423), - [anon_sym__Alignas] = ACTIONS(7423), - [anon_sym_QMARK] = ACTIONS(7423), - [anon_sym_STAR_EQ] = ACTIONS(7423), - [anon_sym_SLASH_EQ] = ACTIONS(7423), - [anon_sym_PERCENT_EQ] = ACTIONS(7423), - [anon_sym_PLUS_EQ] = ACTIONS(7423), - [anon_sym_DASH_EQ] = ACTIONS(7423), - [anon_sym_LT_LT_EQ] = ACTIONS(7423), - [anon_sym_GT_GT_EQ] = ACTIONS(7421), - [anon_sym_AMP_EQ] = ACTIONS(7423), - [anon_sym_CARET_EQ] = ACTIONS(7423), - [anon_sym_PIPE_EQ] = ACTIONS(7423), - [anon_sym_and_eq] = ACTIONS(7423), - [anon_sym_or_eq] = ACTIONS(7423), - [anon_sym_xor_eq] = ACTIONS(7423), - [anon_sym_LT_EQ_GT] = ACTIONS(7423), - [anon_sym_or] = ACTIONS(7421), - [anon_sym_and] = ACTIONS(7421), - [anon_sym_bitor] = ACTIONS(7423), - [anon_sym_xor] = ACTIONS(7421), - [anon_sym_bitand] = ACTIONS(7423), - [anon_sym_not_eq] = ACTIONS(7423), - [anon_sym_DASH_DASH] = ACTIONS(7423), - [anon_sym_PLUS_PLUS] = ACTIONS(7423), - [anon_sym_DOT] = ACTIONS(7421), - [anon_sym_DOT_STAR] = ACTIONS(7423), - [anon_sym_DASH_GT] = ACTIONS(7423), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7423), - [anon_sym_override] = ACTIONS(7423), - [anon_sym_GT2] = ACTIONS(7423), - [anon_sym_requires] = ACTIONS(7423), + [STATE(2757)] = { + [sym_identifier] = ACTIONS(8657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8659), + [anon_sym_COMMA] = ACTIONS(8659), + [anon_sym_RPAREN] = ACTIONS(8659), + [aux_sym_preproc_if_token2] = ACTIONS(8659), + [aux_sym_preproc_else_token1] = ACTIONS(8659), + [aux_sym_preproc_elif_token1] = ACTIONS(8657), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8659), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8659), + [anon_sym_LPAREN2] = ACTIONS(8659), + [anon_sym_DASH] = ACTIONS(8657), + [anon_sym_PLUS] = ACTIONS(8657), + [anon_sym_STAR] = ACTIONS(8657), + [anon_sym_SLASH] = ACTIONS(8657), + [anon_sym_PERCENT] = ACTIONS(8657), + [anon_sym_PIPE_PIPE] = ACTIONS(8659), + [anon_sym_AMP_AMP] = ACTIONS(8659), + [anon_sym_PIPE] = ACTIONS(8657), + [anon_sym_CARET] = ACTIONS(8657), + [anon_sym_AMP] = ACTIONS(8657), + [anon_sym_EQ_EQ] = ACTIONS(8659), + [anon_sym_BANG_EQ] = ACTIONS(8659), + [anon_sym_GT] = ACTIONS(8657), + [anon_sym_GT_EQ] = ACTIONS(8659), + [anon_sym_LT_EQ] = ACTIONS(8657), + [anon_sym_LT] = ACTIONS(8657), + [anon_sym_LT_LT] = ACTIONS(8657), + [anon_sym_GT_GT] = ACTIONS(8657), + [anon_sym_SEMI] = ACTIONS(8659), + [anon_sym_COLON] = ACTIONS(8657), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8659), + [anon_sym_RBRACE] = ACTIONS(8659), + [anon_sym_LBRACK] = ACTIONS(8659), + [anon_sym_EQ] = ACTIONS(8657), + [anon_sym_QMARK] = ACTIONS(8659), + [anon_sym_STAR_EQ] = ACTIONS(8659), + [anon_sym_SLASH_EQ] = ACTIONS(8659), + [anon_sym_PERCENT_EQ] = ACTIONS(8659), + [anon_sym_PLUS_EQ] = ACTIONS(8659), + [anon_sym_DASH_EQ] = ACTIONS(8659), + [anon_sym_LT_LT_EQ] = ACTIONS(8659), + [anon_sym_GT_GT_EQ] = ACTIONS(8659), + [anon_sym_AMP_EQ] = ACTIONS(8659), + [anon_sym_CARET_EQ] = ACTIONS(8659), + [anon_sym_PIPE_EQ] = ACTIONS(8659), + [anon_sym_and_eq] = ACTIONS(8657), + [anon_sym_or_eq] = ACTIONS(8657), + [anon_sym_xor_eq] = ACTIONS(8657), + [anon_sym_LT_EQ_GT] = ACTIONS(8659), + [anon_sym_or] = ACTIONS(8657), + [anon_sym_and] = ACTIONS(8657), + [anon_sym_bitor] = ACTIONS(8657), + [anon_sym_xor] = ACTIONS(8657), + [anon_sym_bitand] = ACTIONS(8657), + [anon_sym_not_eq] = ACTIONS(8657), + [anon_sym_DASH_DASH] = ACTIONS(8659), + [anon_sym_PLUS_PLUS] = ACTIONS(8659), + [anon_sym_DOT] = ACTIONS(8657), + [anon_sym_DOT_STAR] = ACTIONS(8659), + [anon_sym_DASH_GT] = ACTIONS(8659), + [anon_sym_L_DQUOTE] = ACTIONS(8659), + [anon_sym_u_DQUOTE] = ACTIONS(8659), + [anon_sym_U_DQUOTE] = ACTIONS(8659), + [anon_sym_u8_DQUOTE] = ACTIONS(8659), + [anon_sym_DQUOTE] = ACTIONS(8659), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8659), + [anon_sym_LR_DQUOTE] = ACTIONS(8659), + [anon_sym_uR_DQUOTE] = ACTIONS(8659), + [anon_sym_UR_DQUOTE] = ACTIONS(8659), + [anon_sym_u8R_DQUOTE] = ACTIONS(8659), + [anon_sym_COLON_RBRACK] = ACTIONS(8659), + [sym_literal_suffix] = ACTIONS(8657), }, - [STATE(3114)] = { - [sym_identifier] = ACTIONS(7379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7381), - [anon_sym_COMMA] = ACTIONS(7381), - [anon_sym_RPAREN] = ACTIONS(7381), - [anon_sym_LPAREN2] = ACTIONS(7381), - [anon_sym_DASH] = ACTIONS(7379), - [anon_sym_PLUS] = ACTIONS(7379), - [anon_sym_STAR] = ACTIONS(7381), - [anon_sym_SLASH] = ACTIONS(7379), - [anon_sym_PERCENT] = ACTIONS(7381), - [anon_sym_PIPE_PIPE] = ACTIONS(7381), - [anon_sym_AMP_AMP] = ACTIONS(7381), - [anon_sym_PIPE] = ACTIONS(7379), - [anon_sym_CARET] = ACTIONS(7381), - [anon_sym_AMP] = ACTIONS(7379), - [anon_sym_EQ_EQ] = ACTIONS(7381), - [anon_sym_BANG_EQ] = ACTIONS(7381), - [anon_sym_GT] = ACTIONS(7379), - [anon_sym_GT_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7379), - [anon_sym_LT] = ACTIONS(7379), - [anon_sym_LT_LT] = ACTIONS(7381), - [anon_sym_GT_GT] = ACTIONS(7381), - [anon_sym_SEMI] = ACTIONS(7381), - [anon_sym___extension__] = ACTIONS(7379), - [anon_sym___attribute__] = ACTIONS(7379), - [anon_sym___attribute] = ACTIONS(7379), - [anon_sym_COLON] = ACTIONS(7379), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7381), - [anon_sym___based] = ACTIONS(7379), - [anon_sym_LBRACE] = ACTIONS(7381), - [anon_sym_RBRACE] = ACTIONS(7381), - [anon_sym_signed] = ACTIONS(7379), - [anon_sym_unsigned] = ACTIONS(7379), - [anon_sym_long] = ACTIONS(7379), - [anon_sym_short] = ACTIONS(7379), - [anon_sym_LBRACK] = ACTIONS(7381), - [anon_sym_const] = ACTIONS(7379), - [anon_sym_constexpr] = ACTIONS(7379), - [anon_sym_volatile] = ACTIONS(7379), - [anon_sym_restrict] = ACTIONS(7379), - [anon_sym___restrict__] = ACTIONS(7379), - [anon_sym__Atomic] = ACTIONS(7379), - [anon_sym__Noreturn] = ACTIONS(7379), - [anon_sym_noreturn] = ACTIONS(7379), - [anon_sym__Nonnull] = ACTIONS(7379), - [anon_sym_mutable] = ACTIONS(7379), - [anon_sym_constinit] = ACTIONS(7379), - [anon_sym_consteval] = ACTIONS(7379), - [anon_sym_alignas] = ACTIONS(7379), - [anon_sym__Alignas] = ACTIONS(7379), - [sym_primitive_type] = ACTIONS(7379), - [anon_sym_QMARK] = ACTIONS(7381), - [anon_sym_LT_EQ_GT] = ACTIONS(7381), - [anon_sym_or] = ACTIONS(7379), - [anon_sym_and] = ACTIONS(7379), - [anon_sym_bitor] = ACTIONS(7379), - [anon_sym_xor] = ACTIONS(7379), - [anon_sym_bitand] = ACTIONS(7379), - [anon_sym_not_eq] = ACTIONS(7379), - [anon_sym_DASH_DASH] = ACTIONS(7381), - [anon_sym_PLUS_PLUS] = ACTIONS(7381), - [anon_sym_DOT] = ACTIONS(7379), - [anon_sym_DOT_STAR] = ACTIONS(7381), - [anon_sym_DASH_GT] = ACTIONS(7381), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7379), - [anon_sym_override] = ACTIONS(7379), - [anon_sym_requires] = ACTIONS(7379), - [anon_sym_COLON_RBRACK] = ACTIONS(7381), + [STATE(2758)] = { + [sym_identifier] = ACTIONS(4387), + [aux_sym_preproc_def_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token2] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), + [aux_sym_preproc_else_token1] = ACTIONS(4387), + [aux_sym_preproc_elif_token1] = ACTIONS(4387), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4387), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4387), + [sym_preproc_directive] = ACTIONS(4387), + [anon_sym_LPAREN2] = ACTIONS(4389), + [anon_sym_TILDE] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4389), + [anon_sym_AMP_AMP] = ACTIONS(4389), + [anon_sym_AMP] = ACTIONS(4387), + [anon_sym_SEMI] = ACTIONS(4389), + [anon_sym___extension__] = ACTIONS(4387), + [anon_sym_typedef] = ACTIONS(4387), + [anon_sym_virtual] = ACTIONS(4387), + [anon_sym_extern] = ACTIONS(4387), + [anon_sym___attribute__] = ACTIONS(4387), + [anon_sym___attribute] = ACTIONS(4387), + [anon_sym_using] = ACTIONS(4387), + [anon_sym_COLON_COLON] = ACTIONS(4389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4389), + [anon_sym___declspec] = ACTIONS(4387), + [anon_sym___based] = ACTIONS(4387), + [anon_sym_signed] = ACTIONS(4387), + [anon_sym_unsigned] = ACTIONS(4387), + [anon_sym_long] = ACTIONS(4387), + [anon_sym_short] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_static] = ACTIONS(4387), + [anon_sym_register] = ACTIONS(4387), + [anon_sym_inline] = ACTIONS(4387), + [anon_sym___inline] = ACTIONS(4387), + [anon_sym___inline__] = ACTIONS(4387), + [anon_sym___forceinline] = ACTIONS(4387), + [anon_sym_thread_local] = ACTIONS(4387), + [anon_sym___thread] = ACTIONS(4387), + [anon_sym_const] = ACTIONS(4387), + [anon_sym_constexpr] = ACTIONS(4387), + [anon_sym_volatile] = ACTIONS(4387), + [anon_sym_restrict] = ACTIONS(4387), + [anon_sym___restrict__] = ACTIONS(4387), + [anon_sym__Atomic] = ACTIONS(4387), + [anon_sym__Noreturn] = ACTIONS(4387), + [anon_sym_noreturn] = ACTIONS(4387), + [anon_sym__Nonnull] = ACTIONS(4387), + [anon_sym_mutable] = ACTIONS(4387), + [anon_sym_constinit] = ACTIONS(4387), + [anon_sym_consteval] = ACTIONS(4387), + [anon_sym_alignas] = ACTIONS(4387), + [anon_sym__Alignas] = ACTIONS(4387), + [sym_primitive_type] = ACTIONS(4387), + [anon_sym_enum] = ACTIONS(4387), + [anon_sym_class] = ACTIONS(4387), + [anon_sym_struct] = ACTIONS(4387), + [anon_sym_union] = ACTIONS(4387), + [anon_sym_typename] = ACTIONS(4387), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4387), + [anon_sym_decltype] = ACTIONS(4387), + [anon_sym_explicit] = ACTIONS(4387), + [anon_sym_private] = ACTIONS(4387), + [anon_sym_template] = ACTIONS(4387), + [anon_sym_operator] = ACTIONS(4387), + [anon_sym_friend] = ACTIONS(4387), + [anon_sym_public] = ACTIONS(4387), + [anon_sym_protected] = ACTIONS(4387), + [anon_sym_static_assert] = ACTIONS(4387), + [anon_sym_LBRACK_COLON] = ACTIONS(4389), }, - [STATE(3115)] = { - [sym_identifier] = ACTIONS(8709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8711), - [anon_sym_COMMA] = ACTIONS(8711), - [anon_sym_RPAREN] = ACTIONS(8711), - [aux_sym_preproc_if_token2] = ACTIONS(8711), - [aux_sym_preproc_else_token1] = ACTIONS(8711), - [aux_sym_preproc_elif_token1] = ACTIONS(8709), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8711), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8711), - [anon_sym_LPAREN2] = ACTIONS(8711), - [anon_sym_DASH] = ACTIONS(8709), - [anon_sym_PLUS] = ACTIONS(8709), - [anon_sym_STAR] = ACTIONS(8709), - [anon_sym_SLASH] = ACTIONS(8709), - [anon_sym_PERCENT] = ACTIONS(8709), - [anon_sym_PIPE_PIPE] = ACTIONS(8711), - [anon_sym_AMP_AMP] = ACTIONS(8711), - [anon_sym_PIPE] = ACTIONS(8709), - [anon_sym_CARET] = ACTIONS(8709), - [anon_sym_AMP] = ACTIONS(8709), - [anon_sym_EQ_EQ] = ACTIONS(8711), - [anon_sym_BANG_EQ] = ACTIONS(8711), - [anon_sym_GT] = ACTIONS(8709), - [anon_sym_GT_EQ] = ACTIONS(8711), - [anon_sym_LT_EQ] = ACTIONS(8709), - [anon_sym_LT] = ACTIONS(8709), - [anon_sym_LT_LT] = ACTIONS(8709), - [anon_sym_GT_GT] = ACTIONS(8709), - [anon_sym_SEMI] = ACTIONS(8711), - [anon_sym___attribute__] = ACTIONS(8709), - [anon_sym___attribute] = ACTIONS(8709), - [anon_sym_COLON] = ACTIONS(8709), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8711), - [anon_sym_LBRACE] = ACTIONS(8711), - [anon_sym_RBRACE] = ACTIONS(8711), - [anon_sym_LBRACK] = ACTIONS(8709), - [anon_sym_RBRACK] = ACTIONS(8711), - [anon_sym_EQ] = ACTIONS(8709), - [anon_sym_QMARK] = ACTIONS(8711), - [anon_sym_STAR_EQ] = ACTIONS(8711), - [anon_sym_SLASH_EQ] = ACTIONS(8711), - [anon_sym_PERCENT_EQ] = ACTIONS(8711), - [anon_sym_PLUS_EQ] = ACTIONS(8711), - [anon_sym_DASH_EQ] = ACTIONS(8711), - [anon_sym_LT_LT_EQ] = ACTIONS(8711), - [anon_sym_GT_GT_EQ] = ACTIONS(8711), - [anon_sym_AMP_EQ] = ACTIONS(8711), - [anon_sym_CARET_EQ] = ACTIONS(8711), - [anon_sym_PIPE_EQ] = ACTIONS(8711), - [anon_sym_and_eq] = ACTIONS(8709), - [anon_sym_or_eq] = ACTIONS(8709), - [anon_sym_xor_eq] = ACTIONS(8709), - [anon_sym_LT_EQ_GT] = ACTIONS(8711), - [anon_sym_or] = ACTIONS(8709), - [anon_sym_and] = ACTIONS(8709), - [anon_sym_bitor] = ACTIONS(8709), - [anon_sym_xor] = ACTIONS(8709), - [anon_sym_bitand] = ACTIONS(8709), - [anon_sym_not_eq] = ACTIONS(8709), - [anon_sym_DASH_DASH] = ACTIONS(8711), - [anon_sym_PLUS_PLUS] = ACTIONS(8711), - [anon_sym_asm] = ACTIONS(8709), - [anon_sym___asm__] = ACTIONS(8709), - [anon_sym___asm] = ACTIONS(8709), - [anon_sym_DOT] = ACTIONS(8709), - [anon_sym_DOT_STAR] = ACTIONS(8711), - [anon_sym_DASH_GT] = ACTIONS(8711), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(8709), - [anon_sym_COLON_RBRACK] = ACTIONS(8711), + [STATE(2759)] = { + [sym_attribute_specifier] = STATE(3119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7523), + [anon_sym_COMMA] = ACTIONS(7523), + [anon_sym_LPAREN2] = ACTIONS(7523), + [anon_sym_DASH] = ACTIONS(7521), + [anon_sym_PLUS] = ACTIONS(7521), + [anon_sym_STAR] = ACTIONS(7521), + [anon_sym_SLASH] = ACTIONS(7521), + [anon_sym_PERCENT] = ACTIONS(7521), + [anon_sym_PIPE_PIPE] = ACTIONS(7523), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE] = ACTIONS(7521), + [anon_sym_CARET] = ACTIONS(7521), + [anon_sym_AMP] = ACTIONS(7521), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_GT] = ACTIONS(7521), + [anon_sym_GT_EQ] = ACTIONS(7523), + [anon_sym_LT_EQ] = ACTIONS(7521), + [anon_sym_LT] = ACTIONS(7521), + [anon_sym_LT_LT] = ACTIONS(7521), + [anon_sym_GT_GT] = ACTIONS(7521), + [anon_sym___extension__] = ACTIONS(7523), + [anon_sym___attribute__] = ACTIONS(8293), + [anon_sym___attribute] = ACTIONS(8295), + [anon_sym_LBRACE] = ACTIONS(7523), + [anon_sym_LBRACK] = ACTIONS(7523), + [anon_sym_RBRACK] = ACTIONS(7523), + [anon_sym_EQ] = ACTIONS(7521), + [anon_sym_const] = ACTIONS(7521), + [anon_sym_constexpr] = ACTIONS(7523), + [anon_sym_volatile] = ACTIONS(7523), + [anon_sym_restrict] = ACTIONS(7523), + [anon_sym___restrict__] = ACTIONS(7523), + [anon_sym__Atomic] = ACTIONS(7523), + [anon_sym__Noreturn] = ACTIONS(7523), + [anon_sym_noreturn] = ACTIONS(7523), + [anon_sym__Nonnull] = ACTIONS(7523), + [anon_sym_mutable] = ACTIONS(7523), + [anon_sym_constinit] = ACTIONS(7523), + [anon_sym_consteval] = ACTIONS(7523), + [anon_sym_alignas] = ACTIONS(7523), + [anon_sym__Alignas] = ACTIONS(7523), + [anon_sym_QMARK] = ACTIONS(7523), + [anon_sym_STAR_EQ] = ACTIONS(7523), + [anon_sym_SLASH_EQ] = ACTIONS(7523), + [anon_sym_PERCENT_EQ] = ACTIONS(7523), + [anon_sym_PLUS_EQ] = ACTIONS(7523), + [anon_sym_DASH_EQ] = ACTIONS(7523), + [anon_sym_LT_LT_EQ] = ACTIONS(7523), + [anon_sym_GT_GT_EQ] = ACTIONS(7523), + [anon_sym_AMP_EQ] = ACTIONS(7523), + [anon_sym_CARET_EQ] = ACTIONS(7523), + [anon_sym_PIPE_EQ] = ACTIONS(7523), + [anon_sym_and_eq] = ACTIONS(7523), + [anon_sym_or_eq] = ACTIONS(7523), + [anon_sym_xor_eq] = ACTIONS(7523), + [anon_sym_LT_EQ_GT] = ACTIONS(7523), + [anon_sym_or] = ACTIONS(7521), + [anon_sym_and] = ACTIONS(7521), + [anon_sym_bitor] = ACTIONS(7523), + [anon_sym_xor] = ACTIONS(7521), + [anon_sym_bitand] = ACTIONS(7523), + [anon_sym_not_eq] = ACTIONS(7523), + [anon_sym_DASH_DASH] = ACTIONS(7523), + [anon_sym_PLUS_PLUS] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(7521), + [anon_sym_DOT_STAR] = ACTIONS(7523), + [anon_sym_DASH_GT] = ACTIONS(7523), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7523), + [anon_sym_override] = ACTIONS(7523), + [anon_sym_requires] = ACTIONS(7523), }, - [STATE(3116)] = { - [sym_identifier] = ACTIONS(8713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8715), - [anon_sym_COMMA] = ACTIONS(8715), - [anon_sym_RPAREN] = ACTIONS(8715), - [aux_sym_preproc_if_token2] = ACTIONS(8715), - [aux_sym_preproc_else_token1] = ACTIONS(8715), - [aux_sym_preproc_elif_token1] = ACTIONS(8713), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8715), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8715), - [anon_sym_LPAREN2] = ACTIONS(8715), - [anon_sym_DASH] = ACTIONS(8713), - [anon_sym_PLUS] = ACTIONS(8713), - [anon_sym_STAR] = ACTIONS(8713), - [anon_sym_SLASH] = ACTIONS(8713), - [anon_sym_PERCENT] = ACTIONS(8713), - [anon_sym_PIPE_PIPE] = ACTIONS(8715), - [anon_sym_AMP_AMP] = ACTIONS(8715), - [anon_sym_PIPE] = ACTIONS(8713), - [anon_sym_CARET] = ACTIONS(8713), - [anon_sym_AMP] = ACTIONS(8713), - [anon_sym_EQ_EQ] = ACTIONS(8715), - [anon_sym_BANG_EQ] = ACTIONS(8715), - [anon_sym_GT] = ACTIONS(8713), - [anon_sym_GT_EQ] = ACTIONS(8715), - [anon_sym_LT_EQ] = ACTIONS(8713), - [anon_sym_LT] = ACTIONS(8713), - [anon_sym_LT_LT] = ACTIONS(8713), - [anon_sym_GT_GT] = ACTIONS(8713), - [anon_sym_SEMI] = ACTIONS(8715), - [anon_sym___attribute__] = ACTIONS(8713), - [anon_sym___attribute] = ACTIONS(8713), - [anon_sym_COLON] = ACTIONS(8713), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8715), - [anon_sym_LBRACE] = ACTIONS(8715), - [anon_sym_RBRACE] = ACTIONS(8715), - [anon_sym_LBRACK] = ACTIONS(8713), - [anon_sym_RBRACK] = ACTIONS(8715), - [anon_sym_EQ] = ACTIONS(8713), - [anon_sym_QMARK] = ACTIONS(8715), - [anon_sym_STAR_EQ] = ACTIONS(8715), - [anon_sym_SLASH_EQ] = ACTIONS(8715), - [anon_sym_PERCENT_EQ] = ACTIONS(8715), - [anon_sym_PLUS_EQ] = ACTIONS(8715), - [anon_sym_DASH_EQ] = ACTIONS(8715), - [anon_sym_LT_LT_EQ] = ACTIONS(8715), - [anon_sym_GT_GT_EQ] = ACTIONS(8715), - [anon_sym_AMP_EQ] = ACTIONS(8715), - [anon_sym_CARET_EQ] = ACTIONS(8715), - [anon_sym_PIPE_EQ] = ACTIONS(8715), - [anon_sym_and_eq] = ACTIONS(8713), - [anon_sym_or_eq] = ACTIONS(8713), - [anon_sym_xor_eq] = ACTIONS(8713), - [anon_sym_LT_EQ_GT] = ACTIONS(8715), - [anon_sym_or] = ACTIONS(8713), - [anon_sym_and] = ACTIONS(8713), - [anon_sym_bitor] = ACTIONS(8713), - [anon_sym_xor] = ACTIONS(8713), - [anon_sym_bitand] = ACTIONS(8713), - [anon_sym_not_eq] = ACTIONS(8713), - [anon_sym_DASH_DASH] = ACTIONS(8715), - [anon_sym_PLUS_PLUS] = ACTIONS(8715), - [anon_sym_asm] = ACTIONS(8713), - [anon_sym___asm__] = ACTIONS(8713), - [anon_sym___asm] = ACTIONS(8713), - [anon_sym_DOT] = ACTIONS(8713), - [anon_sym_DOT_STAR] = ACTIONS(8715), - [anon_sym_DASH_GT] = ACTIONS(8715), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(8713), - [anon_sym_COLON_RBRACK] = ACTIONS(8715), + [STATE(2760)] = { + [sym_attribute_specifier] = STATE(3134), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7533), + [anon_sym_COMMA] = ACTIONS(7533), + [anon_sym_LPAREN2] = ACTIONS(7533), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_STAR] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7531), + [anon_sym_PERCENT] = ACTIONS(7531), + [anon_sym_PIPE_PIPE] = ACTIONS(7533), + [anon_sym_AMP_AMP] = ACTIONS(7533), + [anon_sym_PIPE] = ACTIONS(7531), + [anon_sym_CARET] = ACTIONS(7531), + [anon_sym_AMP] = ACTIONS(7531), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_GT] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7533), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_LT] = ACTIONS(7531), + [anon_sym_LT_LT] = ACTIONS(7531), + [anon_sym_GT_GT] = ACTIONS(7531), + [anon_sym___extension__] = ACTIONS(7533), + [anon_sym___attribute__] = ACTIONS(8293), + [anon_sym___attribute] = ACTIONS(8295), + [anon_sym_LBRACE] = ACTIONS(7533), + [anon_sym_LBRACK] = ACTIONS(7533), + [anon_sym_RBRACK] = ACTIONS(7533), + [anon_sym_EQ] = ACTIONS(7531), + [anon_sym_const] = ACTIONS(7531), + [anon_sym_constexpr] = ACTIONS(7533), + [anon_sym_volatile] = ACTIONS(7533), + [anon_sym_restrict] = ACTIONS(7533), + [anon_sym___restrict__] = ACTIONS(7533), + [anon_sym__Atomic] = ACTIONS(7533), + [anon_sym__Noreturn] = ACTIONS(7533), + [anon_sym_noreturn] = ACTIONS(7533), + [anon_sym__Nonnull] = ACTIONS(7533), + [anon_sym_mutable] = ACTIONS(7533), + [anon_sym_constinit] = ACTIONS(7533), + [anon_sym_consteval] = ACTIONS(7533), + [anon_sym_alignas] = ACTIONS(7533), + [anon_sym__Alignas] = ACTIONS(7533), + [anon_sym_QMARK] = ACTIONS(7533), + [anon_sym_STAR_EQ] = ACTIONS(7533), + [anon_sym_SLASH_EQ] = ACTIONS(7533), + [anon_sym_PERCENT_EQ] = ACTIONS(7533), + [anon_sym_PLUS_EQ] = ACTIONS(7533), + [anon_sym_DASH_EQ] = ACTIONS(7533), + [anon_sym_LT_LT_EQ] = ACTIONS(7533), + [anon_sym_GT_GT_EQ] = ACTIONS(7533), + [anon_sym_AMP_EQ] = ACTIONS(7533), + [anon_sym_CARET_EQ] = ACTIONS(7533), + [anon_sym_PIPE_EQ] = ACTIONS(7533), + [anon_sym_and_eq] = ACTIONS(7533), + [anon_sym_or_eq] = ACTIONS(7533), + [anon_sym_xor_eq] = ACTIONS(7533), + [anon_sym_LT_EQ_GT] = ACTIONS(7533), + [anon_sym_or] = ACTIONS(7531), + [anon_sym_and] = ACTIONS(7531), + [anon_sym_bitor] = ACTIONS(7533), + [anon_sym_xor] = ACTIONS(7531), + [anon_sym_bitand] = ACTIONS(7533), + [anon_sym_not_eq] = ACTIONS(7533), + [anon_sym_DASH_DASH] = ACTIONS(7533), + [anon_sym_PLUS_PLUS] = ACTIONS(7533), + [anon_sym_DOT] = ACTIONS(7531), + [anon_sym_DOT_STAR] = ACTIONS(7533), + [anon_sym_DASH_GT] = ACTIONS(7533), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7533), + [anon_sym_override] = ACTIONS(7533), + [anon_sym_requires] = ACTIONS(7533), }, - [STATE(3117)] = { - [sym_identifier] = ACTIONS(8717), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8719), - [anon_sym_COMMA] = ACTIONS(8719), - [anon_sym_RPAREN] = ACTIONS(8719), - [aux_sym_preproc_if_token2] = ACTIONS(8719), - [aux_sym_preproc_else_token1] = ACTIONS(8719), - [aux_sym_preproc_elif_token1] = ACTIONS(8717), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8719), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8719), - [anon_sym_LPAREN2] = ACTIONS(8719), - [anon_sym_DASH] = ACTIONS(8717), - [anon_sym_PLUS] = ACTIONS(8717), - [anon_sym_STAR] = ACTIONS(8717), - [anon_sym_SLASH] = ACTIONS(8717), - [anon_sym_PERCENT] = ACTIONS(8717), - [anon_sym_PIPE_PIPE] = ACTIONS(8719), - [anon_sym_AMP_AMP] = ACTIONS(8719), - [anon_sym_PIPE] = ACTIONS(8717), - [anon_sym_CARET] = ACTIONS(8717), - [anon_sym_AMP] = ACTIONS(8717), - [anon_sym_EQ_EQ] = ACTIONS(8719), - [anon_sym_BANG_EQ] = ACTIONS(8719), - [anon_sym_GT] = ACTIONS(8717), - [anon_sym_GT_EQ] = ACTIONS(8719), - [anon_sym_LT_EQ] = ACTIONS(8717), - [anon_sym_LT] = ACTIONS(8717), - [anon_sym_LT_LT] = ACTIONS(8717), - [anon_sym_GT_GT] = ACTIONS(8717), - [anon_sym_SEMI] = ACTIONS(8719), - [anon_sym___attribute__] = ACTIONS(8717), - [anon_sym___attribute] = ACTIONS(8717), - [anon_sym_COLON] = ACTIONS(8717), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8719), - [anon_sym_LBRACE] = ACTIONS(8719), - [anon_sym_RBRACE] = ACTIONS(8719), - [anon_sym_LBRACK] = ACTIONS(8717), - [anon_sym_RBRACK] = ACTIONS(8719), - [anon_sym_EQ] = ACTIONS(8717), - [anon_sym_QMARK] = ACTIONS(8719), - [anon_sym_STAR_EQ] = ACTIONS(8719), - [anon_sym_SLASH_EQ] = ACTIONS(8719), - [anon_sym_PERCENT_EQ] = ACTIONS(8719), - [anon_sym_PLUS_EQ] = ACTIONS(8719), - [anon_sym_DASH_EQ] = ACTIONS(8719), - [anon_sym_LT_LT_EQ] = ACTIONS(8719), - [anon_sym_GT_GT_EQ] = ACTIONS(8719), - [anon_sym_AMP_EQ] = ACTIONS(8719), - [anon_sym_CARET_EQ] = ACTIONS(8719), - [anon_sym_PIPE_EQ] = ACTIONS(8719), - [anon_sym_and_eq] = ACTIONS(8717), - [anon_sym_or_eq] = ACTIONS(8717), - [anon_sym_xor_eq] = ACTIONS(8717), - [anon_sym_LT_EQ_GT] = ACTIONS(8719), - [anon_sym_or] = ACTIONS(8717), - [anon_sym_and] = ACTIONS(8717), - [anon_sym_bitor] = ACTIONS(8717), - [anon_sym_xor] = ACTIONS(8717), - [anon_sym_bitand] = ACTIONS(8717), - [anon_sym_not_eq] = ACTIONS(8717), - [anon_sym_DASH_DASH] = ACTIONS(8719), - [anon_sym_PLUS_PLUS] = ACTIONS(8719), - [anon_sym_asm] = ACTIONS(8717), - [anon_sym___asm__] = ACTIONS(8717), - [anon_sym___asm] = ACTIONS(8717), - [anon_sym_DOT] = ACTIONS(8717), - [anon_sym_DOT_STAR] = ACTIONS(8719), - [anon_sym_DASH_GT] = ACTIONS(8719), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(8717), - [anon_sym_COLON_RBRACK] = ACTIONS(8719), + [STATE(2761)] = { + [sym_identifier] = ACTIONS(8661), + [aux_sym_preproc_def_token1] = ACTIONS(8661), + [aux_sym_preproc_if_token1] = ACTIONS(8661), + [aux_sym_preproc_if_token2] = ACTIONS(8661), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8661), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8661), + [aux_sym_preproc_else_token1] = ACTIONS(8661), + [aux_sym_preproc_elif_token1] = ACTIONS(8661), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8661), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8661), + [sym_preproc_directive] = ACTIONS(8661), + [anon_sym_LPAREN2] = ACTIONS(8663), + [anon_sym_TILDE] = ACTIONS(8663), + [anon_sym_STAR] = ACTIONS(8663), + [anon_sym_AMP_AMP] = ACTIONS(8663), + [anon_sym_AMP] = ACTIONS(8661), + [anon_sym_SEMI] = ACTIONS(8663), + [anon_sym___extension__] = ACTIONS(8661), + [anon_sym_typedef] = ACTIONS(8661), + [anon_sym_virtual] = ACTIONS(8661), + [anon_sym_extern] = ACTIONS(8661), + [anon_sym___attribute__] = ACTIONS(8661), + [anon_sym___attribute] = ACTIONS(8661), + [anon_sym_using] = ACTIONS(8661), + [anon_sym_COLON_COLON] = ACTIONS(8663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8663), + [anon_sym___declspec] = ACTIONS(8661), + [anon_sym___based] = ACTIONS(8661), + [anon_sym_signed] = ACTIONS(8661), + [anon_sym_unsigned] = ACTIONS(8661), + [anon_sym_long] = ACTIONS(8661), + [anon_sym_short] = ACTIONS(8661), + [anon_sym_LBRACK] = ACTIONS(8661), + [anon_sym_static] = ACTIONS(8661), + [anon_sym_register] = ACTIONS(8661), + [anon_sym_inline] = ACTIONS(8661), + [anon_sym___inline] = ACTIONS(8661), + [anon_sym___inline__] = ACTIONS(8661), + [anon_sym___forceinline] = ACTIONS(8661), + [anon_sym_thread_local] = ACTIONS(8661), + [anon_sym___thread] = ACTIONS(8661), + [anon_sym_const] = ACTIONS(8661), + [anon_sym_constexpr] = ACTIONS(8661), + [anon_sym_volatile] = ACTIONS(8661), + [anon_sym_restrict] = ACTIONS(8661), + [anon_sym___restrict__] = ACTIONS(8661), + [anon_sym__Atomic] = ACTIONS(8661), + [anon_sym__Noreturn] = ACTIONS(8661), + [anon_sym_noreturn] = ACTIONS(8661), + [anon_sym__Nonnull] = ACTIONS(8661), + [anon_sym_mutable] = ACTIONS(8661), + [anon_sym_constinit] = ACTIONS(8661), + [anon_sym_consteval] = ACTIONS(8661), + [anon_sym_alignas] = ACTIONS(8661), + [anon_sym__Alignas] = ACTIONS(8661), + [sym_primitive_type] = ACTIONS(8661), + [anon_sym_enum] = ACTIONS(8661), + [anon_sym_class] = ACTIONS(8661), + [anon_sym_struct] = ACTIONS(8661), + [anon_sym_union] = ACTIONS(8661), + [anon_sym_typename] = ACTIONS(8661), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8661), + [anon_sym_decltype] = ACTIONS(8661), + [anon_sym_explicit] = ACTIONS(8661), + [anon_sym_private] = ACTIONS(8661), + [anon_sym_template] = ACTIONS(8661), + [anon_sym_operator] = ACTIONS(8661), + [anon_sym_friend] = ACTIONS(8661), + [anon_sym_public] = ACTIONS(8661), + [anon_sym_protected] = ACTIONS(8661), + [anon_sym_static_assert] = ACTIONS(8661), + [anon_sym_LBRACK_COLON] = ACTIONS(8663), }, - [STATE(3118)] = { - [sym_identifier] = ACTIONS(6798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6800), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6800), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6800), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6800), - [anon_sym_GT_GT] = ACTIONS(6800), - [anon_sym_SEMI] = ACTIONS(6800), - [anon_sym___extension__] = ACTIONS(6798), - [anon_sym___attribute__] = ACTIONS(6798), - [anon_sym___attribute] = ACTIONS(6798), - [anon_sym_COLON] = ACTIONS(6798), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), - [anon_sym___based] = ACTIONS(6798), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_RBRACE] = ACTIONS(6800), - [anon_sym_signed] = ACTIONS(6798), - [anon_sym_unsigned] = ACTIONS(6798), - [anon_sym_long] = ACTIONS(6798), - [anon_sym_short] = ACTIONS(6798), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6798), - [anon_sym_volatile] = ACTIONS(6798), - [anon_sym_restrict] = ACTIONS(6798), - [anon_sym___restrict__] = ACTIONS(6798), - [anon_sym__Atomic] = ACTIONS(6798), - [anon_sym__Noreturn] = ACTIONS(6798), - [anon_sym_noreturn] = ACTIONS(6798), - [anon_sym__Nonnull] = ACTIONS(6798), - [anon_sym_mutable] = ACTIONS(6798), - [anon_sym_constinit] = ACTIONS(6798), - [anon_sym_consteval] = ACTIONS(6798), - [anon_sym_alignas] = ACTIONS(6798), - [anon_sym__Alignas] = ACTIONS(6798), - [sym_primitive_type] = ACTIONS(6798), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6798), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6798), - [anon_sym_not_eq] = ACTIONS(6798), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6798), - [anon_sym_override] = ACTIONS(6798), - [anon_sym_requires] = ACTIONS(6798), - [anon_sym_COLON_RBRACK] = ACTIONS(6800), + [STATE(2762)] = { + [sym_identifier] = ACTIONS(8665), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8667), + [anon_sym_COMMA] = ACTIONS(8667), + [anon_sym_RPAREN] = ACTIONS(8667), + [aux_sym_preproc_if_token2] = ACTIONS(8667), + [aux_sym_preproc_else_token1] = ACTIONS(8667), + [aux_sym_preproc_elif_token1] = ACTIONS(8665), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8667), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8667), + [anon_sym_LPAREN2] = ACTIONS(8667), + [anon_sym_DASH] = ACTIONS(8665), + [anon_sym_PLUS] = ACTIONS(8665), + [anon_sym_STAR] = ACTIONS(8665), + [anon_sym_SLASH] = ACTIONS(8665), + [anon_sym_PERCENT] = ACTIONS(8665), + [anon_sym_PIPE_PIPE] = ACTIONS(8667), + [anon_sym_AMP_AMP] = ACTIONS(8667), + [anon_sym_PIPE] = ACTIONS(8665), + [anon_sym_CARET] = ACTIONS(8665), + [anon_sym_AMP] = ACTIONS(8665), + [anon_sym_EQ_EQ] = ACTIONS(8667), + [anon_sym_BANG_EQ] = ACTIONS(8667), + [anon_sym_GT] = ACTIONS(8665), + [anon_sym_GT_EQ] = ACTIONS(8667), + [anon_sym_LT_EQ] = ACTIONS(8665), + [anon_sym_LT] = ACTIONS(8665), + [anon_sym_LT_LT] = ACTIONS(8665), + [anon_sym_GT_GT] = ACTIONS(8665), + [anon_sym_SEMI] = ACTIONS(8667), + [anon_sym_COLON] = ACTIONS(8665), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8667), + [anon_sym_RBRACE] = ACTIONS(8667), + [anon_sym_LBRACK] = ACTIONS(8667), + [anon_sym_EQ] = ACTIONS(8665), + [anon_sym_QMARK] = ACTIONS(8667), + [anon_sym_STAR_EQ] = ACTIONS(8667), + [anon_sym_SLASH_EQ] = ACTIONS(8667), + [anon_sym_PERCENT_EQ] = ACTIONS(8667), + [anon_sym_PLUS_EQ] = ACTIONS(8667), + [anon_sym_DASH_EQ] = ACTIONS(8667), + [anon_sym_LT_LT_EQ] = ACTIONS(8667), + [anon_sym_GT_GT_EQ] = ACTIONS(8667), + [anon_sym_AMP_EQ] = ACTIONS(8667), + [anon_sym_CARET_EQ] = ACTIONS(8667), + [anon_sym_PIPE_EQ] = ACTIONS(8667), + [anon_sym_and_eq] = ACTIONS(8665), + [anon_sym_or_eq] = ACTIONS(8665), + [anon_sym_xor_eq] = ACTIONS(8665), + [anon_sym_LT_EQ_GT] = ACTIONS(8667), + [anon_sym_or] = ACTIONS(8665), + [anon_sym_and] = ACTIONS(8665), + [anon_sym_bitor] = ACTIONS(8665), + [anon_sym_xor] = ACTIONS(8665), + [anon_sym_bitand] = ACTIONS(8665), + [anon_sym_not_eq] = ACTIONS(8665), + [anon_sym_DASH_DASH] = ACTIONS(8667), + [anon_sym_PLUS_PLUS] = ACTIONS(8667), + [anon_sym_DOT] = ACTIONS(8665), + [anon_sym_DOT_STAR] = ACTIONS(8667), + [anon_sym_DASH_GT] = ACTIONS(8667), + [anon_sym_L_DQUOTE] = ACTIONS(8667), + [anon_sym_u_DQUOTE] = ACTIONS(8667), + [anon_sym_U_DQUOTE] = ACTIONS(8667), + [anon_sym_u8_DQUOTE] = ACTIONS(8667), + [anon_sym_DQUOTE] = ACTIONS(8667), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8667), + [anon_sym_LR_DQUOTE] = ACTIONS(8667), + [anon_sym_uR_DQUOTE] = ACTIONS(8667), + [anon_sym_UR_DQUOTE] = ACTIONS(8667), + [anon_sym_u8R_DQUOTE] = ACTIONS(8667), + [anon_sym_COLON_RBRACK] = ACTIONS(8667), + [sym_literal_suffix] = ACTIONS(8665), }, - [STATE(3119)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), - [anon_sym_COMMA] = ACTIONS(7261), - [anon_sym_RPAREN] = ACTIONS(7261), - [anon_sym_LPAREN2] = ACTIONS(7261), - [anon_sym_DASH] = ACTIONS(7259), - [anon_sym_PLUS] = ACTIONS(7259), - [anon_sym_STAR] = ACTIONS(7259), - [anon_sym_SLASH] = ACTIONS(7259), - [anon_sym_PERCENT] = ACTIONS(7259), - [anon_sym_PIPE_PIPE] = ACTIONS(7261), - [anon_sym_AMP_AMP] = ACTIONS(7261), - [anon_sym_PIPE] = ACTIONS(7259), - [anon_sym_CARET] = ACTIONS(7259), - [anon_sym_AMP] = ACTIONS(7259), - [anon_sym_EQ_EQ] = ACTIONS(7261), - [anon_sym_BANG_EQ] = ACTIONS(7261), - [anon_sym_GT] = ACTIONS(7259), - [anon_sym_GT_EQ] = ACTIONS(7261), - [anon_sym_LT_EQ] = ACTIONS(7259), - [anon_sym_LT] = ACTIONS(7259), - [anon_sym_LT_LT] = ACTIONS(7259), - [anon_sym_GT_GT] = ACTIONS(7259), - [anon_sym___extension__] = ACTIONS(7261), - [anon_sym___attribute__] = ACTIONS(7261), - [anon_sym___attribute] = ACTIONS(7259), - [anon_sym_LBRACE] = ACTIONS(7261), - [anon_sym_LBRACK] = ACTIONS(7261), - [anon_sym_EQ] = ACTIONS(7259), - [anon_sym_const] = ACTIONS(7259), - [anon_sym_constexpr] = ACTIONS(7261), - [anon_sym_volatile] = ACTIONS(7261), - [anon_sym_restrict] = ACTIONS(7261), - [anon_sym___restrict__] = ACTIONS(7261), - [anon_sym__Atomic] = ACTIONS(7261), - [anon_sym__Noreturn] = ACTIONS(7261), - [anon_sym_noreturn] = ACTIONS(7261), - [anon_sym__Nonnull] = ACTIONS(7261), - [anon_sym_mutable] = ACTIONS(7261), - [anon_sym_constinit] = ACTIONS(7261), - [anon_sym_consteval] = ACTIONS(7261), - [anon_sym_alignas] = ACTIONS(7261), - [anon_sym__Alignas] = ACTIONS(7261), - [anon_sym_QMARK] = ACTIONS(7261), - [anon_sym_STAR_EQ] = ACTIONS(7261), - [anon_sym_SLASH_EQ] = ACTIONS(7261), - [anon_sym_PERCENT_EQ] = ACTIONS(7261), - [anon_sym_PLUS_EQ] = ACTIONS(7261), - [anon_sym_DASH_EQ] = ACTIONS(7261), - [anon_sym_LT_LT_EQ] = ACTIONS(7261), - [anon_sym_GT_GT_EQ] = ACTIONS(7261), - [anon_sym_AMP_EQ] = ACTIONS(7261), - [anon_sym_CARET_EQ] = ACTIONS(7261), - [anon_sym_PIPE_EQ] = ACTIONS(7261), - [anon_sym_LT_EQ_GT] = ACTIONS(7261), - [anon_sym_or] = ACTIONS(7261), - [anon_sym_and] = ACTIONS(7261), - [anon_sym_bitor] = ACTIONS(7261), - [anon_sym_xor] = ACTIONS(7261), - [anon_sym_bitand] = ACTIONS(7261), - [anon_sym_not_eq] = ACTIONS(7261), - [anon_sym_DASH_DASH] = ACTIONS(7261), - [anon_sym_PLUS_PLUS] = ACTIONS(7261), - [anon_sym_DOT] = ACTIONS(7259), - [anon_sym_DOT_STAR] = ACTIONS(7261), - [anon_sym_DASH_GT] = ACTIONS(7259), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7261), - [anon_sym_override] = ACTIONS(7261), - [anon_sym_requires] = ACTIONS(7261), - [anon_sym_DASH_GT_STAR] = ACTIONS(7261), + [STATE(2763)] = { + [sym_identifier] = ACTIONS(3658), + [aux_sym_preproc_def_token1] = ACTIONS(3658), + [aux_sym_preproc_if_token1] = ACTIONS(3658), + [aux_sym_preproc_if_token2] = ACTIONS(3658), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3658), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3658), + [aux_sym_preproc_else_token1] = ACTIONS(3658), + [aux_sym_preproc_elif_token1] = ACTIONS(3658), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3658), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3658), + [sym_preproc_directive] = ACTIONS(3658), + [anon_sym_LPAREN2] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [anon_sym_STAR] = ACTIONS(3660), + [anon_sym_AMP_AMP] = ACTIONS(3660), + [anon_sym_AMP] = ACTIONS(3658), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym___extension__] = ACTIONS(3658), + [anon_sym_typedef] = ACTIONS(3658), + [anon_sym_virtual] = ACTIONS(3658), + [anon_sym_extern] = ACTIONS(3658), + [anon_sym___attribute__] = ACTIONS(3658), + [anon_sym___attribute] = ACTIONS(3658), + [anon_sym_using] = ACTIONS(3658), + [anon_sym_COLON_COLON] = ACTIONS(3660), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3660), + [anon_sym___declspec] = ACTIONS(3658), + [anon_sym___based] = ACTIONS(3658), + [anon_sym_signed] = ACTIONS(3658), + [anon_sym_unsigned] = ACTIONS(3658), + [anon_sym_long] = ACTIONS(3658), + [anon_sym_short] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_register] = ACTIONS(3658), + [anon_sym_inline] = ACTIONS(3658), + [anon_sym___inline] = ACTIONS(3658), + [anon_sym___inline__] = ACTIONS(3658), + [anon_sym___forceinline] = ACTIONS(3658), + [anon_sym_thread_local] = ACTIONS(3658), + [anon_sym___thread] = ACTIONS(3658), + [anon_sym_const] = ACTIONS(3658), + [anon_sym_constexpr] = ACTIONS(3658), + [anon_sym_volatile] = ACTIONS(3658), + [anon_sym_restrict] = ACTIONS(3658), + [anon_sym___restrict__] = ACTIONS(3658), + [anon_sym__Atomic] = ACTIONS(3658), + [anon_sym__Noreturn] = ACTIONS(3658), + [anon_sym_noreturn] = ACTIONS(3658), + [anon_sym__Nonnull] = ACTIONS(3658), + [anon_sym_mutable] = ACTIONS(3658), + [anon_sym_constinit] = ACTIONS(3658), + [anon_sym_consteval] = ACTIONS(3658), + [anon_sym_alignas] = ACTIONS(3658), + [anon_sym__Alignas] = ACTIONS(3658), + [sym_primitive_type] = ACTIONS(3658), + [anon_sym_enum] = ACTIONS(3658), + [anon_sym_class] = ACTIONS(3658), + [anon_sym_struct] = ACTIONS(3658), + [anon_sym_union] = ACTIONS(3658), + [anon_sym_typename] = ACTIONS(3658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3658), + [anon_sym_decltype] = ACTIONS(3658), + [anon_sym_explicit] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_template] = ACTIONS(3658), + [anon_sym_operator] = ACTIONS(3658), + [anon_sym_friend] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_protected] = ACTIONS(3658), + [anon_sym_static_assert] = ACTIONS(3658), + [anon_sym_LBRACK_COLON] = ACTIONS(3660), }, - [STATE(3120)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), - [anon_sym_COMMA] = ACTIONS(7255), - [anon_sym_RPAREN] = ACTIONS(7255), - [anon_sym_LPAREN2] = ACTIONS(7255), - [anon_sym_DASH] = ACTIONS(7253), - [anon_sym_PLUS] = ACTIONS(7253), - [anon_sym_STAR] = ACTIONS(7253), - [anon_sym_SLASH] = ACTIONS(7253), - [anon_sym_PERCENT] = ACTIONS(7253), - [anon_sym_PIPE_PIPE] = ACTIONS(7255), - [anon_sym_AMP_AMP] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7253), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_EQ_EQ] = ACTIONS(7255), - [anon_sym_BANG_EQ] = ACTIONS(7255), - [anon_sym_GT] = ACTIONS(7253), - [anon_sym_GT_EQ] = ACTIONS(7255), - [anon_sym_LT_EQ] = ACTIONS(7253), - [anon_sym_LT] = ACTIONS(7253), - [anon_sym_LT_LT] = ACTIONS(7253), - [anon_sym_GT_GT] = ACTIONS(7253), - [anon_sym___extension__] = ACTIONS(7255), - [anon_sym___attribute__] = ACTIONS(7255), - [anon_sym___attribute] = ACTIONS(7253), - [anon_sym_LBRACE] = ACTIONS(7255), - [anon_sym_LBRACK] = ACTIONS(7255), - [anon_sym_EQ] = ACTIONS(7253), - [anon_sym_const] = ACTIONS(7253), - [anon_sym_constexpr] = ACTIONS(7255), - [anon_sym_volatile] = ACTIONS(7255), - [anon_sym_restrict] = ACTIONS(7255), - [anon_sym___restrict__] = ACTIONS(7255), - [anon_sym__Atomic] = ACTIONS(7255), - [anon_sym__Noreturn] = ACTIONS(7255), - [anon_sym_noreturn] = ACTIONS(7255), - [anon_sym__Nonnull] = ACTIONS(7255), - [anon_sym_mutable] = ACTIONS(7255), - [anon_sym_constinit] = ACTIONS(7255), - [anon_sym_consteval] = ACTIONS(7255), - [anon_sym_alignas] = ACTIONS(7255), - [anon_sym__Alignas] = ACTIONS(7255), - [anon_sym_QMARK] = ACTIONS(7255), - [anon_sym_STAR_EQ] = ACTIONS(7255), - [anon_sym_SLASH_EQ] = ACTIONS(7255), - [anon_sym_PERCENT_EQ] = ACTIONS(7255), - [anon_sym_PLUS_EQ] = ACTIONS(7255), - [anon_sym_DASH_EQ] = ACTIONS(7255), - [anon_sym_LT_LT_EQ] = ACTIONS(7255), - [anon_sym_GT_GT_EQ] = ACTIONS(7255), - [anon_sym_AMP_EQ] = ACTIONS(7255), - [anon_sym_CARET_EQ] = ACTIONS(7255), - [anon_sym_PIPE_EQ] = ACTIONS(7255), - [anon_sym_LT_EQ_GT] = ACTIONS(7255), - [anon_sym_or] = ACTIONS(7255), - [anon_sym_and] = ACTIONS(7255), - [anon_sym_bitor] = ACTIONS(7255), - [anon_sym_xor] = ACTIONS(7255), - [anon_sym_bitand] = ACTIONS(7255), - [anon_sym_not_eq] = ACTIONS(7255), - [anon_sym_DASH_DASH] = ACTIONS(7255), - [anon_sym_PLUS_PLUS] = ACTIONS(7255), - [anon_sym_DOT] = ACTIONS(7253), - [anon_sym_DOT_STAR] = ACTIONS(7255), - [anon_sym_DASH_GT] = ACTIONS(7253), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7255), - [anon_sym_override] = ACTIONS(7255), - [anon_sym_requires] = ACTIONS(7255), - [anon_sym_DASH_GT_STAR] = ACTIONS(7255), + [STATE(2764)] = { + [sym_identifier] = ACTIONS(3662), + [aux_sym_preproc_def_token1] = ACTIONS(3662), + [aux_sym_preproc_if_token1] = ACTIONS(3662), + [aux_sym_preproc_if_token2] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), + [aux_sym_preproc_else_token1] = ACTIONS(3662), + [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3662), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3662), + [sym_preproc_directive] = ACTIONS(3662), + [anon_sym_LPAREN2] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym___extension__] = ACTIONS(3662), + [anon_sym_typedef] = ACTIONS(3662), + [anon_sym_virtual] = ACTIONS(3662), + [anon_sym_extern] = ACTIONS(3662), + [anon_sym___attribute__] = ACTIONS(3662), + [anon_sym___attribute] = ACTIONS(3662), + [anon_sym_using] = ACTIONS(3662), + [anon_sym_COLON_COLON] = ACTIONS(3664), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), + [anon_sym___declspec] = ACTIONS(3662), + [anon_sym___based] = ACTIONS(3662), + [anon_sym_signed] = ACTIONS(3662), + [anon_sym_unsigned] = ACTIONS(3662), + [anon_sym_long] = ACTIONS(3662), + [anon_sym_short] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3662), + [anon_sym_static] = ACTIONS(3662), + [anon_sym_register] = ACTIONS(3662), + [anon_sym_inline] = ACTIONS(3662), + [anon_sym___inline] = ACTIONS(3662), + [anon_sym___inline__] = ACTIONS(3662), + [anon_sym___forceinline] = ACTIONS(3662), + [anon_sym_thread_local] = ACTIONS(3662), + [anon_sym___thread] = ACTIONS(3662), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_constexpr] = ACTIONS(3662), + [anon_sym_volatile] = ACTIONS(3662), + [anon_sym_restrict] = ACTIONS(3662), + [anon_sym___restrict__] = ACTIONS(3662), + [anon_sym__Atomic] = ACTIONS(3662), + [anon_sym__Noreturn] = ACTIONS(3662), + [anon_sym_noreturn] = ACTIONS(3662), + [anon_sym__Nonnull] = ACTIONS(3662), + [anon_sym_mutable] = ACTIONS(3662), + [anon_sym_constinit] = ACTIONS(3662), + [anon_sym_consteval] = ACTIONS(3662), + [anon_sym_alignas] = ACTIONS(3662), + [anon_sym__Alignas] = ACTIONS(3662), + [sym_primitive_type] = ACTIONS(3662), + [anon_sym_enum] = ACTIONS(3662), + [anon_sym_class] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(3662), + [anon_sym_union] = ACTIONS(3662), + [anon_sym_typename] = ACTIONS(3662), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3662), + [anon_sym_decltype] = ACTIONS(3662), + [anon_sym_explicit] = ACTIONS(3662), + [anon_sym_private] = ACTIONS(3662), + [anon_sym_template] = ACTIONS(3662), + [anon_sym_operator] = ACTIONS(3662), + [anon_sym_friend] = ACTIONS(3662), + [anon_sym_public] = ACTIONS(3662), + [anon_sym_protected] = ACTIONS(3662), + [anon_sym_static_assert] = ACTIONS(3662), + [anon_sym_LBRACK_COLON] = ACTIONS(3664), }, - [STATE(3121)] = { - [sym_identifier] = ACTIONS(8721), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8723), - [anon_sym_COMMA] = ACTIONS(8723), - [anon_sym_RPAREN] = ACTIONS(8723), - [aux_sym_preproc_if_token2] = ACTIONS(8723), - [aux_sym_preproc_else_token1] = ACTIONS(8723), - [aux_sym_preproc_elif_token1] = ACTIONS(8721), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8723), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8723), - [anon_sym_LPAREN2] = ACTIONS(8723), - [anon_sym_DASH] = ACTIONS(8721), - [anon_sym_PLUS] = ACTIONS(8721), - [anon_sym_STAR] = ACTIONS(8721), - [anon_sym_SLASH] = ACTIONS(8721), - [anon_sym_PERCENT] = ACTIONS(8721), - [anon_sym_PIPE_PIPE] = ACTIONS(8723), - [anon_sym_AMP_AMP] = ACTIONS(8723), - [anon_sym_PIPE] = ACTIONS(8721), - [anon_sym_CARET] = ACTIONS(8721), - [anon_sym_AMP] = ACTIONS(8721), - [anon_sym_EQ_EQ] = ACTIONS(8723), - [anon_sym_BANG_EQ] = ACTIONS(8723), - [anon_sym_GT] = ACTIONS(8721), - [anon_sym_GT_EQ] = ACTIONS(8723), - [anon_sym_LT_EQ] = ACTIONS(8721), - [anon_sym_LT] = ACTIONS(8721), - [anon_sym_LT_LT] = ACTIONS(8721), - [anon_sym_GT_GT] = ACTIONS(8721), - [anon_sym_SEMI] = ACTIONS(8723), - [anon_sym___attribute__] = ACTIONS(8721), - [anon_sym___attribute] = ACTIONS(8721), - [anon_sym_COLON] = ACTIONS(8721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8723), - [anon_sym_LBRACE] = ACTIONS(8723), - [anon_sym_RBRACE] = ACTIONS(8723), - [anon_sym_LBRACK] = ACTIONS(8721), - [anon_sym_RBRACK] = ACTIONS(8723), - [anon_sym_EQ] = ACTIONS(8721), - [anon_sym_QMARK] = ACTIONS(8723), - [anon_sym_STAR_EQ] = ACTIONS(8723), - [anon_sym_SLASH_EQ] = ACTIONS(8723), - [anon_sym_PERCENT_EQ] = ACTIONS(8723), - [anon_sym_PLUS_EQ] = ACTIONS(8723), - [anon_sym_DASH_EQ] = ACTIONS(8723), - [anon_sym_LT_LT_EQ] = ACTIONS(8723), - [anon_sym_GT_GT_EQ] = ACTIONS(8723), - [anon_sym_AMP_EQ] = ACTIONS(8723), - [anon_sym_CARET_EQ] = ACTIONS(8723), - [anon_sym_PIPE_EQ] = ACTIONS(8723), - [anon_sym_and_eq] = ACTIONS(8721), - [anon_sym_or_eq] = ACTIONS(8721), - [anon_sym_xor_eq] = ACTIONS(8721), - [anon_sym_LT_EQ_GT] = ACTIONS(8723), - [anon_sym_or] = ACTIONS(8721), - [anon_sym_and] = ACTIONS(8721), - [anon_sym_bitor] = ACTIONS(8721), - [anon_sym_xor] = ACTIONS(8721), - [anon_sym_bitand] = ACTIONS(8721), - [anon_sym_not_eq] = ACTIONS(8721), - [anon_sym_DASH_DASH] = ACTIONS(8723), - [anon_sym_PLUS_PLUS] = ACTIONS(8723), - [anon_sym_asm] = ACTIONS(8721), - [anon_sym___asm__] = ACTIONS(8721), - [anon_sym___asm] = ACTIONS(8721), - [anon_sym_DOT] = ACTIONS(8721), - [anon_sym_DOT_STAR] = ACTIONS(8723), - [anon_sym_DASH_GT] = ACTIONS(8723), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(8721), - [anon_sym_COLON_RBRACK] = ACTIONS(8723), + [STATE(2765)] = { + [sym_identifier] = ACTIONS(4000), + [aux_sym_preproc_def_token1] = ACTIONS(4000), + [aux_sym_preproc_if_token1] = ACTIONS(4000), + [aux_sym_preproc_if_token2] = ACTIONS(4000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4000), + [aux_sym_preproc_else_token1] = ACTIONS(4000), + [aux_sym_preproc_elif_token1] = ACTIONS(4000), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4000), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4000), + [sym_preproc_directive] = ACTIONS(4000), + [anon_sym_LPAREN2] = ACTIONS(4002), + [anon_sym_TILDE] = ACTIONS(4002), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_AMP] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym___extension__] = ACTIONS(4000), + [anon_sym_typedef] = ACTIONS(4000), + [anon_sym_virtual] = ACTIONS(4000), + [anon_sym_extern] = ACTIONS(4000), + [anon_sym___attribute__] = ACTIONS(4000), + [anon_sym___attribute] = ACTIONS(4000), + [anon_sym_using] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4002), + [anon_sym___declspec] = ACTIONS(4000), + [anon_sym___based] = ACTIONS(4000), + [anon_sym_signed] = ACTIONS(4000), + [anon_sym_unsigned] = ACTIONS(4000), + [anon_sym_long] = ACTIONS(4000), + [anon_sym_short] = ACTIONS(4000), + [anon_sym_LBRACK] = ACTIONS(4000), + [anon_sym_static] = ACTIONS(4000), + [anon_sym_register] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym___inline] = ACTIONS(4000), + [anon_sym___inline__] = ACTIONS(4000), + [anon_sym___forceinline] = ACTIONS(4000), + [anon_sym_thread_local] = ACTIONS(4000), + [anon_sym___thread] = ACTIONS(4000), + [anon_sym_const] = ACTIONS(4000), + [anon_sym_constexpr] = ACTIONS(4000), + [anon_sym_volatile] = ACTIONS(4000), + [anon_sym_restrict] = ACTIONS(4000), + [anon_sym___restrict__] = ACTIONS(4000), + [anon_sym__Atomic] = ACTIONS(4000), + [anon_sym__Noreturn] = ACTIONS(4000), + [anon_sym_noreturn] = ACTIONS(4000), + [anon_sym__Nonnull] = ACTIONS(4000), + [anon_sym_mutable] = ACTIONS(4000), + [anon_sym_constinit] = ACTIONS(4000), + [anon_sym_consteval] = ACTIONS(4000), + [anon_sym_alignas] = ACTIONS(4000), + [anon_sym__Alignas] = ACTIONS(4000), + [sym_primitive_type] = ACTIONS(4000), + [anon_sym_enum] = ACTIONS(4000), + [anon_sym_class] = ACTIONS(4000), + [anon_sym_struct] = ACTIONS(4000), + [anon_sym_union] = ACTIONS(4000), + [anon_sym_typename] = ACTIONS(4000), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4000), + [anon_sym_decltype] = ACTIONS(4000), + [anon_sym_explicit] = ACTIONS(4000), + [anon_sym_private] = ACTIONS(4000), + [anon_sym_template] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_friend] = ACTIONS(4000), + [anon_sym_public] = ACTIONS(4000), + [anon_sym_protected] = ACTIONS(4000), + [anon_sym_static_assert] = ACTIONS(4000), + [anon_sym_LBRACK_COLON] = ACTIONS(4002), }, - [STATE(3122)] = { - [sym_attribute_declaration] = STATE(3105), - [aux_sym_attributed_declarator_repeat1] = STATE(3105), - [sym_identifier] = ACTIONS(8725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8727), - [anon_sym_COMMA] = ACTIONS(8727), - [anon_sym_RPAREN] = ACTIONS(8727), - [aux_sym_preproc_if_token2] = ACTIONS(8727), - [aux_sym_preproc_else_token1] = ACTIONS(8727), - [aux_sym_preproc_elif_token1] = ACTIONS(8725), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8727), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8727), - [anon_sym_LPAREN2] = ACTIONS(8727), - [anon_sym_DASH] = ACTIONS(8725), - [anon_sym_PLUS] = ACTIONS(8725), - [anon_sym_STAR] = ACTIONS(8725), - [anon_sym_SLASH] = ACTIONS(8725), - [anon_sym_PERCENT] = ACTIONS(8725), - [anon_sym_PIPE_PIPE] = ACTIONS(8727), - [anon_sym_AMP_AMP] = ACTIONS(8727), - [anon_sym_PIPE] = ACTIONS(8725), - [anon_sym_CARET] = ACTIONS(8725), - [anon_sym_AMP] = ACTIONS(8725), - [anon_sym_EQ_EQ] = ACTIONS(8727), - [anon_sym_BANG_EQ] = ACTIONS(8727), - [anon_sym_GT] = ACTIONS(8725), - [anon_sym_GT_EQ] = ACTIONS(8727), - [anon_sym_LT_EQ] = ACTIONS(8725), - [anon_sym_LT] = ACTIONS(8725), - [anon_sym_LT_LT] = ACTIONS(8725), - [anon_sym_GT_GT] = ACTIONS(8725), - [anon_sym_SEMI] = ACTIONS(8727), - [anon_sym___attribute__] = ACTIONS(8725), - [anon_sym___attribute] = ACTIONS(8725), - [anon_sym_COLON] = ACTIONS(8725), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8727), - [anon_sym_RBRACE] = ACTIONS(8727), - [anon_sym_LBRACK] = ACTIONS(8725), - [anon_sym_EQ] = ACTIONS(8725), - [anon_sym_QMARK] = ACTIONS(8727), - [anon_sym_STAR_EQ] = ACTIONS(8727), - [anon_sym_SLASH_EQ] = ACTIONS(8727), - [anon_sym_PERCENT_EQ] = ACTIONS(8727), - [anon_sym_PLUS_EQ] = ACTIONS(8727), - [anon_sym_DASH_EQ] = ACTIONS(8727), - [anon_sym_LT_LT_EQ] = ACTIONS(8727), - [anon_sym_GT_GT_EQ] = ACTIONS(8727), - [anon_sym_AMP_EQ] = ACTIONS(8727), - [anon_sym_CARET_EQ] = ACTIONS(8727), - [anon_sym_PIPE_EQ] = ACTIONS(8727), - [anon_sym_and_eq] = ACTIONS(8725), - [anon_sym_or_eq] = ACTIONS(8725), - [anon_sym_xor_eq] = ACTIONS(8725), - [anon_sym_LT_EQ_GT] = ACTIONS(8727), - [anon_sym_or] = ACTIONS(8725), - [anon_sym_and] = ACTIONS(8725), - [anon_sym_bitor] = ACTIONS(8725), - [anon_sym_xor] = ACTIONS(8725), - [anon_sym_bitand] = ACTIONS(8725), - [anon_sym_not_eq] = ACTIONS(8725), - [anon_sym_DASH_DASH] = ACTIONS(8727), - [anon_sym_PLUS_PLUS] = ACTIONS(8727), - [anon_sym_DOT] = ACTIONS(8725), - [anon_sym_DOT_STAR] = ACTIONS(8727), - [anon_sym_DASH_GT] = ACTIONS(8727), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8725), - [anon_sym_override] = ACTIONS(8725), - [anon_sym_requires] = ACTIONS(8725), - [anon_sym_COLON_RBRACK] = ACTIONS(8727), + [STATE(2766)] = { + [sym_identifier] = ACTIONS(3662), + [aux_sym_preproc_def_token1] = ACTIONS(3662), + [aux_sym_preproc_if_token1] = ACTIONS(3662), + [aux_sym_preproc_if_token2] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), + [aux_sym_preproc_else_token1] = ACTIONS(3662), + [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3662), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3662), + [sym_preproc_directive] = ACTIONS(3662), + [anon_sym_LPAREN2] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym___extension__] = ACTIONS(3662), + [anon_sym_typedef] = ACTIONS(3662), + [anon_sym_virtual] = ACTIONS(3662), + [anon_sym_extern] = ACTIONS(3662), + [anon_sym___attribute__] = ACTIONS(3662), + [anon_sym___attribute] = ACTIONS(3662), + [anon_sym_using] = ACTIONS(3662), + [anon_sym_COLON_COLON] = ACTIONS(3664), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), + [anon_sym___declspec] = ACTIONS(3662), + [anon_sym___based] = ACTIONS(3662), + [anon_sym_signed] = ACTIONS(3662), + [anon_sym_unsigned] = ACTIONS(3662), + [anon_sym_long] = ACTIONS(3662), + [anon_sym_short] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3662), + [anon_sym_static] = ACTIONS(3662), + [anon_sym_register] = ACTIONS(3662), + [anon_sym_inline] = ACTIONS(3662), + [anon_sym___inline] = ACTIONS(3662), + [anon_sym___inline__] = ACTIONS(3662), + [anon_sym___forceinline] = ACTIONS(3662), + [anon_sym_thread_local] = ACTIONS(3662), + [anon_sym___thread] = ACTIONS(3662), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_constexpr] = ACTIONS(3662), + [anon_sym_volatile] = ACTIONS(3662), + [anon_sym_restrict] = ACTIONS(3662), + [anon_sym___restrict__] = ACTIONS(3662), + [anon_sym__Atomic] = ACTIONS(3662), + [anon_sym__Noreturn] = ACTIONS(3662), + [anon_sym_noreturn] = ACTIONS(3662), + [anon_sym__Nonnull] = ACTIONS(3662), + [anon_sym_mutable] = ACTIONS(3662), + [anon_sym_constinit] = ACTIONS(3662), + [anon_sym_consteval] = ACTIONS(3662), + [anon_sym_alignas] = ACTIONS(3662), + [anon_sym__Alignas] = ACTIONS(3662), + [sym_primitive_type] = ACTIONS(3662), + [anon_sym_enum] = ACTIONS(3662), + [anon_sym_class] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(3662), + [anon_sym_union] = ACTIONS(3662), + [anon_sym_typename] = ACTIONS(3662), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3662), + [anon_sym_decltype] = ACTIONS(3662), + [anon_sym_explicit] = ACTIONS(3662), + [anon_sym_private] = ACTIONS(3662), + [anon_sym_template] = ACTIONS(3662), + [anon_sym_operator] = ACTIONS(3662), + [anon_sym_friend] = ACTIONS(3662), + [anon_sym_public] = ACTIONS(3662), + [anon_sym_protected] = ACTIONS(3662), + [anon_sym_static_assert] = ACTIONS(3662), + [anon_sym_LBRACK_COLON] = ACTIONS(3664), }, - [STATE(3123)] = { - [sym_type_qualifier] = STATE(3031), - [sym_alignas_qualifier] = STATE(2592), - [aux_sym__type_definition_type_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3533), - [sym_identifier] = ACTIONS(8295), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), - [anon_sym_COMMA] = ACTIONS(6812), - [anon_sym_RPAREN] = ACTIONS(6812), - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_STAR] = ACTIONS(6812), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_PERCENT] = ACTIONS(6812), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_CARET] = ACTIONS(6812), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_LT_LT] = ACTIONS(6812), - [anon_sym_GT_GT] = ACTIONS(6812), - [anon_sym_SEMI] = ACTIONS(6812), - [anon_sym___extension__] = ACTIONS(7784), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym_COLON] = ACTIONS(6814), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6812), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_RBRACE] = ACTIONS(6812), - [anon_sym_signed] = ACTIONS(8729), - [anon_sym_unsigned] = ACTIONS(8729), - [anon_sym_long] = ACTIONS(8729), - [anon_sym_short] = ACTIONS(8729), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7784), - [anon_sym_volatile] = ACTIONS(7784), - [anon_sym_restrict] = ACTIONS(7784), - [anon_sym___restrict__] = ACTIONS(7784), - [anon_sym__Atomic] = ACTIONS(7784), - [anon_sym__Noreturn] = ACTIONS(7784), - [anon_sym_noreturn] = ACTIONS(7784), - [anon_sym__Nonnull] = ACTIONS(7784), - [anon_sym_mutable] = ACTIONS(7784), - [anon_sym_constinit] = ACTIONS(7784), - [anon_sym_consteval] = ACTIONS(7784), - [anon_sym_alignas] = ACTIONS(8669), - [anon_sym__Alignas] = ACTIONS(8669), - [sym_primitive_type] = ACTIONS(8305), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_LT_EQ_GT] = ACTIONS(6812), - [anon_sym_or] = ACTIONS(6814), - [anon_sym_and] = ACTIONS(6814), - [anon_sym_bitor] = ACTIONS(6814), - [anon_sym_xor] = ACTIONS(6814), - [anon_sym_bitand] = ACTIONS(6814), - [anon_sym_not_eq] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6814), - [anon_sym_DOT_STAR] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6812), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6812), + [STATE(2767)] = { + [sym_identifier] = ACTIONS(3666), + [aux_sym_preproc_def_token1] = ACTIONS(3666), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_if_token2] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3666), + [aux_sym_preproc_else_token1] = ACTIONS(3666), + [aux_sym_preproc_elif_token1] = ACTIONS(3666), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3666), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3666), + [sym_preproc_directive] = ACTIONS(3666), + [anon_sym_LPAREN2] = ACTIONS(3668), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym___extension__] = ACTIONS(3666), + [anon_sym_typedef] = ACTIONS(3666), + [anon_sym_virtual] = ACTIONS(3666), + [anon_sym_extern] = ACTIONS(3666), + [anon_sym___attribute__] = ACTIONS(3666), + [anon_sym___attribute] = ACTIONS(3666), + [anon_sym_using] = ACTIONS(3666), + [anon_sym_COLON_COLON] = ACTIONS(3668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3668), + [anon_sym___declspec] = ACTIONS(3666), + [anon_sym___based] = ACTIONS(3666), + [anon_sym_signed] = ACTIONS(3666), + [anon_sym_unsigned] = ACTIONS(3666), + [anon_sym_long] = ACTIONS(3666), + [anon_sym_short] = ACTIONS(3666), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_static] = ACTIONS(3666), + [anon_sym_register] = ACTIONS(3666), + [anon_sym_inline] = ACTIONS(3666), + [anon_sym___inline] = ACTIONS(3666), + [anon_sym___inline__] = ACTIONS(3666), + [anon_sym___forceinline] = ACTIONS(3666), + [anon_sym_thread_local] = ACTIONS(3666), + [anon_sym___thread] = ACTIONS(3666), + [anon_sym_const] = ACTIONS(3666), + [anon_sym_constexpr] = ACTIONS(3666), + [anon_sym_volatile] = ACTIONS(3666), + [anon_sym_restrict] = ACTIONS(3666), + [anon_sym___restrict__] = ACTIONS(3666), + [anon_sym__Atomic] = ACTIONS(3666), + [anon_sym__Noreturn] = ACTIONS(3666), + [anon_sym_noreturn] = ACTIONS(3666), + [anon_sym__Nonnull] = ACTIONS(3666), + [anon_sym_mutable] = ACTIONS(3666), + [anon_sym_constinit] = ACTIONS(3666), + [anon_sym_consteval] = ACTIONS(3666), + [anon_sym_alignas] = ACTIONS(3666), + [anon_sym__Alignas] = ACTIONS(3666), + [sym_primitive_type] = ACTIONS(3666), + [anon_sym_enum] = ACTIONS(3666), + [anon_sym_class] = ACTIONS(3666), + [anon_sym_struct] = ACTIONS(3666), + [anon_sym_union] = ACTIONS(3666), + [anon_sym_typename] = ACTIONS(3666), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3666), + [anon_sym_decltype] = ACTIONS(3666), + [anon_sym_explicit] = ACTIONS(3666), + [anon_sym_private] = ACTIONS(3666), + [anon_sym_template] = ACTIONS(3666), + [anon_sym_operator] = ACTIONS(3666), + [anon_sym_friend] = ACTIONS(3666), + [anon_sym_public] = ACTIONS(3666), + [anon_sym_protected] = ACTIONS(3666), + [anon_sym_static_assert] = ACTIONS(3666), + [anon_sym_LBRACK_COLON] = ACTIONS(3668), }, - [STATE(3124)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7285), - [anon_sym_COMMA] = ACTIONS(7285), - [anon_sym_RPAREN] = ACTIONS(7285), - [anon_sym_LPAREN2] = ACTIONS(7285), - [anon_sym_DASH] = ACTIONS(7283), - [anon_sym_PLUS] = ACTIONS(7283), - [anon_sym_STAR] = ACTIONS(7283), - [anon_sym_SLASH] = ACTIONS(7283), - [anon_sym_PERCENT] = ACTIONS(7283), - [anon_sym_PIPE_PIPE] = ACTIONS(7285), - [anon_sym_AMP_AMP] = ACTIONS(7285), - [anon_sym_PIPE] = ACTIONS(7283), - [anon_sym_CARET] = ACTIONS(7283), - [anon_sym_AMP] = ACTIONS(7283), - [anon_sym_EQ_EQ] = ACTIONS(7285), - [anon_sym_BANG_EQ] = ACTIONS(7285), - [anon_sym_GT] = ACTIONS(7283), - [anon_sym_GT_EQ] = ACTIONS(7285), - [anon_sym_LT_EQ] = ACTIONS(7283), - [anon_sym_LT] = ACTIONS(7283), - [anon_sym_LT_LT] = ACTIONS(7283), - [anon_sym_GT_GT] = ACTIONS(7283), - [anon_sym___extension__] = ACTIONS(7285), - [anon_sym___attribute__] = ACTIONS(7285), - [anon_sym___attribute] = ACTIONS(7283), - [anon_sym_LBRACE] = ACTIONS(7285), - [anon_sym_LBRACK] = ACTIONS(7285), - [anon_sym_EQ] = ACTIONS(7283), - [anon_sym_const] = ACTIONS(7283), - [anon_sym_constexpr] = ACTIONS(7285), - [anon_sym_volatile] = ACTIONS(7285), - [anon_sym_restrict] = ACTIONS(7285), - [anon_sym___restrict__] = ACTIONS(7285), - [anon_sym__Atomic] = ACTIONS(7285), - [anon_sym__Noreturn] = ACTIONS(7285), - [anon_sym_noreturn] = ACTIONS(7285), - [anon_sym__Nonnull] = ACTIONS(7285), - [anon_sym_mutable] = ACTIONS(7285), - [anon_sym_constinit] = ACTIONS(7285), - [anon_sym_consteval] = ACTIONS(7285), - [anon_sym_alignas] = ACTIONS(7285), - [anon_sym__Alignas] = ACTIONS(7285), - [anon_sym_QMARK] = ACTIONS(7285), - [anon_sym_STAR_EQ] = ACTIONS(7285), - [anon_sym_SLASH_EQ] = ACTIONS(7285), - [anon_sym_PERCENT_EQ] = ACTIONS(7285), - [anon_sym_PLUS_EQ] = ACTIONS(7285), - [anon_sym_DASH_EQ] = ACTIONS(7285), - [anon_sym_LT_LT_EQ] = ACTIONS(7285), - [anon_sym_GT_GT_EQ] = ACTIONS(7285), - [anon_sym_AMP_EQ] = ACTIONS(7285), - [anon_sym_CARET_EQ] = ACTIONS(7285), - [anon_sym_PIPE_EQ] = ACTIONS(7285), - [anon_sym_LT_EQ_GT] = ACTIONS(7285), - [anon_sym_or] = ACTIONS(7285), - [anon_sym_and] = ACTIONS(7285), - [anon_sym_bitor] = ACTIONS(7285), - [anon_sym_xor] = ACTIONS(7285), - [anon_sym_bitand] = ACTIONS(7285), - [anon_sym_not_eq] = ACTIONS(7285), - [anon_sym_DASH_DASH] = ACTIONS(7285), - [anon_sym_PLUS_PLUS] = ACTIONS(7285), - [anon_sym_DOT] = ACTIONS(7283), - [anon_sym_DOT_STAR] = ACTIONS(7285), - [anon_sym_DASH_GT] = ACTIONS(7283), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7285), - [anon_sym_override] = ACTIONS(7285), - [anon_sym_requires] = ACTIONS(7285), - [anon_sym_DASH_GT_STAR] = ACTIONS(7285), + [STATE(2768)] = { + [sym_identifier] = ACTIONS(4282), + [aux_sym_preproc_def_token1] = ACTIONS(4282), + [aux_sym_preproc_if_token1] = ACTIONS(4282), + [aux_sym_preproc_if_token2] = ACTIONS(4282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4282), + [aux_sym_preproc_else_token1] = ACTIONS(4282), + [aux_sym_preproc_elif_token1] = ACTIONS(4282), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4282), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4282), + [sym_preproc_directive] = ACTIONS(4282), + [anon_sym_LPAREN2] = ACTIONS(4284), + [anon_sym_TILDE] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(4282), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym___extension__] = ACTIONS(4282), + [anon_sym_typedef] = ACTIONS(4282), + [anon_sym_virtual] = ACTIONS(4282), + [anon_sym_extern] = ACTIONS(4282), + [anon_sym___attribute__] = ACTIONS(4282), + [anon_sym___attribute] = ACTIONS(4282), + [anon_sym_using] = ACTIONS(4282), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), + [anon_sym___declspec] = ACTIONS(4282), + [anon_sym___based] = ACTIONS(4282), + [anon_sym_signed] = ACTIONS(4282), + [anon_sym_unsigned] = ACTIONS(4282), + [anon_sym_long] = ACTIONS(4282), + [anon_sym_short] = ACTIONS(4282), + [anon_sym_LBRACK] = ACTIONS(4282), + [anon_sym_static] = ACTIONS(4282), + [anon_sym_register] = ACTIONS(4282), + [anon_sym_inline] = ACTIONS(4282), + [anon_sym___inline] = ACTIONS(4282), + [anon_sym___inline__] = ACTIONS(4282), + [anon_sym___forceinline] = ACTIONS(4282), + [anon_sym_thread_local] = ACTIONS(4282), + [anon_sym___thread] = ACTIONS(4282), + [anon_sym_const] = ACTIONS(4282), + [anon_sym_constexpr] = ACTIONS(4282), + [anon_sym_volatile] = ACTIONS(4282), + [anon_sym_restrict] = ACTIONS(4282), + [anon_sym___restrict__] = ACTIONS(4282), + [anon_sym__Atomic] = ACTIONS(4282), + [anon_sym__Noreturn] = ACTIONS(4282), + [anon_sym_noreturn] = ACTIONS(4282), + [anon_sym__Nonnull] = ACTIONS(4282), + [anon_sym_mutable] = ACTIONS(4282), + [anon_sym_constinit] = ACTIONS(4282), + [anon_sym_consteval] = ACTIONS(4282), + [anon_sym_alignas] = ACTIONS(4282), + [anon_sym__Alignas] = ACTIONS(4282), + [sym_primitive_type] = ACTIONS(4282), + [anon_sym_enum] = ACTIONS(4282), + [anon_sym_class] = ACTIONS(4282), + [anon_sym_struct] = ACTIONS(4282), + [anon_sym_union] = ACTIONS(4282), + [anon_sym_typename] = ACTIONS(4282), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4282), + [anon_sym_decltype] = ACTIONS(4282), + [anon_sym_explicit] = ACTIONS(4282), + [anon_sym_private] = ACTIONS(4282), + [anon_sym_template] = ACTIONS(4282), + [anon_sym_operator] = ACTIONS(4282), + [anon_sym_friend] = ACTIONS(4282), + [anon_sym_public] = ACTIONS(4282), + [anon_sym_protected] = ACTIONS(4282), + [anon_sym_static_assert] = ACTIONS(4282), + [anon_sym_LBRACK_COLON] = ACTIONS(4284), }, - [STATE(3125)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7377), - [anon_sym_COMMA] = ACTIONS(7377), - [anon_sym_LPAREN2] = ACTIONS(7377), - [anon_sym_DASH] = ACTIONS(7375), - [anon_sym_PLUS] = ACTIONS(7375), - [anon_sym_STAR] = ACTIONS(7375), - [anon_sym_SLASH] = ACTIONS(7375), - [anon_sym_PERCENT] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_AMP_AMP] = ACTIONS(7377), - [anon_sym_PIPE] = ACTIONS(7375), - [anon_sym_CARET] = ACTIONS(7375), - [anon_sym_AMP] = ACTIONS(7375), - [anon_sym_EQ_EQ] = ACTIONS(7377), - [anon_sym_BANG_EQ] = ACTIONS(7377), - [anon_sym_GT] = ACTIONS(7375), - [anon_sym_GT_EQ] = ACTIONS(7375), - [anon_sym_LT_EQ] = ACTIONS(7375), - [anon_sym_LT] = ACTIONS(7375), - [anon_sym_LT_LT] = ACTIONS(7375), - [anon_sym_GT_GT] = ACTIONS(7375), - [anon_sym___extension__] = ACTIONS(7377), - [anon_sym_LBRACE] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(7377), - [anon_sym_EQ] = ACTIONS(7375), - [anon_sym_const] = ACTIONS(7375), - [anon_sym_constexpr] = ACTIONS(7377), - [anon_sym_volatile] = ACTIONS(7377), - [anon_sym_restrict] = ACTIONS(7377), - [anon_sym___restrict__] = ACTIONS(7377), - [anon_sym__Atomic] = ACTIONS(7377), - [anon_sym__Noreturn] = ACTIONS(7377), - [anon_sym_noreturn] = ACTIONS(7377), - [anon_sym__Nonnull] = ACTIONS(7377), - [anon_sym_mutable] = ACTIONS(7377), - [anon_sym_constinit] = ACTIONS(7377), - [anon_sym_consteval] = ACTIONS(7377), - [anon_sym_alignas] = ACTIONS(7377), - [anon_sym__Alignas] = ACTIONS(7377), - [anon_sym_QMARK] = ACTIONS(7377), - [anon_sym_STAR_EQ] = ACTIONS(7377), - [anon_sym_SLASH_EQ] = ACTIONS(7377), - [anon_sym_PERCENT_EQ] = ACTIONS(7377), - [anon_sym_PLUS_EQ] = ACTIONS(7377), - [anon_sym_DASH_EQ] = ACTIONS(7377), - [anon_sym_LT_LT_EQ] = ACTIONS(7377), - [anon_sym_GT_GT_EQ] = ACTIONS(7375), - [anon_sym_AMP_EQ] = ACTIONS(7377), - [anon_sym_CARET_EQ] = ACTIONS(7377), - [anon_sym_PIPE_EQ] = ACTIONS(7377), - [anon_sym_and_eq] = ACTIONS(7377), - [anon_sym_or_eq] = ACTIONS(7377), - [anon_sym_xor_eq] = ACTIONS(7377), - [anon_sym_LT_EQ_GT] = ACTIONS(7377), - [anon_sym_or] = ACTIONS(7375), - [anon_sym_and] = ACTIONS(7375), - [anon_sym_bitor] = ACTIONS(7377), - [anon_sym_xor] = ACTIONS(7375), - [anon_sym_bitand] = ACTIONS(7377), - [anon_sym_not_eq] = ACTIONS(7377), - [anon_sym_DASH_DASH] = ACTIONS(7377), - [anon_sym_PLUS_PLUS] = ACTIONS(7377), - [anon_sym_DOT] = ACTIONS(7375), - [anon_sym_DOT_STAR] = ACTIONS(7377), - [anon_sym_DASH_GT] = ACTIONS(7377), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7377), - [anon_sym_override] = ACTIONS(7377), - [anon_sym_GT2] = ACTIONS(7377), - [anon_sym_requires] = ACTIONS(7377), + [STATE(2769)] = { + [sym_identifier] = ACTIONS(3678), + [aux_sym_preproc_def_token1] = ACTIONS(3678), + [aux_sym_preproc_if_token1] = ACTIONS(3678), + [aux_sym_preproc_if_token2] = ACTIONS(3678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3678), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3678), + [aux_sym_preproc_else_token1] = ACTIONS(3678), + [aux_sym_preproc_elif_token1] = ACTIONS(3678), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3678), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3678), + [sym_preproc_directive] = ACTIONS(3678), + [anon_sym_LPAREN2] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3680), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym___extension__] = ACTIONS(3678), + [anon_sym_typedef] = ACTIONS(3678), + [anon_sym_virtual] = ACTIONS(3678), + [anon_sym_extern] = ACTIONS(3678), + [anon_sym___attribute__] = ACTIONS(3678), + [anon_sym___attribute] = ACTIONS(3678), + [anon_sym_using] = ACTIONS(3678), + [anon_sym_COLON_COLON] = ACTIONS(3680), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3680), + [anon_sym___declspec] = ACTIONS(3678), + [anon_sym___based] = ACTIONS(3678), + [anon_sym_signed] = ACTIONS(3678), + [anon_sym_unsigned] = ACTIONS(3678), + [anon_sym_long] = ACTIONS(3678), + [anon_sym_short] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_static] = ACTIONS(3678), + [anon_sym_register] = ACTIONS(3678), + [anon_sym_inline] = ACTIONS(3678), + [anon_sym___inline] = ACTIONS(3678), + [anon_sym___inline__] = ACTIONS(3678), + [anon_sym___forceinline] = ACTIONS(3678), + [anon_sym_thread_local] = ACTIONS(3678), + [anon_sym___thread] = ACTIONS(3678), + [anon_sym_const] = ACTIONS(3678), + [anon_sym_constexpr] = ACTIONS(3678), + [anon_sym_volatile] = ACTIONS(3678), + [anon_sym_restrict] = ACTIONS(3678), + [anon_sym___restrict__] = ACTIONS(3678), + [anon_sym__Atomic] = ACTIONS(3678), + [anon_sym__Noreturn] = ACTIONS(3678), + [anon_sym_noreturn] = ACTIONS(3678), + [anon_sym__Nonnull] = ACTIONS(3678), + [anon_sym_mutable] = ACTIONS(3678), + [anon_sym_constinit] = ACTIONS(3678), + [anon_sym_consteval] = ACTIONS(3678), + [anon_sym_alignas] = ACTIONS(3678), + [anon_sym__Alignas] = ACTIONS(3678), + [sym_primitive_type] = ACTIONS(3678), + [anon_sym_enum] = ACTIONS(3678), + [anon_sym_class] = ACTIONS(3678), + [anon_sym_struct] = ACTIONS(3678), + [anon_sym_union] = ACTIONS(3678), + [anon_sym_typename] = ACTIONS(3678), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3678), + [anon_sym_decltype] = ACTIONS(3678), + [anon_sym_explicit] = ACTIONS(3678), + [anon_sym_private] = ACTIONS(3678), + [anon_sym_template] = ACTIONS(3678), + [anon_sym_operator] = ACTIONS(3678), + [anon_sym_friend] = ACTIONS(3678), + [anon_sym_public] = ACTIONS(3678), + [anon_sym_protected] = ACTIONS(3678), + [anon_sym_static_assert] = ACTIONS(3678), + [anon_sym_LBRACK_COLON] = ACTIONS(3680), }, - [STATE(3126)] = { - [sym_identifier] = ACTIONS(8731), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8733), - [anon_sym_COMMA] = ACTIONS(8733), - [anon_sym_RPAREN] = ACTIONS(8733), - [aux_sym_preproc_if_token2] = ACTIONS(8733), - [aux_sym_preproc_else_token1] = ACTIONS(8733), - [aux_sym_preproc_elif_token1] = ACTIONS(8731), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8733), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8733), - [anon_sym_LPAREN2] = ACTIONS(8733), - [anon_sym_DASH] = ACTIONS(8731), - [anon_sym_PLUS] = ACTIONS(8731), - [anon_sym_STAR] = ACTIONS(8731), - [anon_sym_SLASH] = ACTIONS(8731), - [anon_sym_PERCENT] = ACTIONS(8731), - [anon_sym_PIPE_PIPE] = ACTIONS(8733), - [anon_sym_AMP_AMP] = ACTIONS(8733), - [anon_sym_PIPE] = ACTIONS(8731), - [anon_sym_CARET] = ACTIONS(8731), - [anon_sym_AMP] = ACTIONS(8731), - [anon_sym_EQ_EQ] = ACTIONS(8733), - [anon_sym_BANG_EQ] = ACTIONS(8733), - [anon_sym_GT] = ACTIONS(8731), - [anon_sym_GT_EQ] = ACTIONS(8733), - [anon_sym_LT_EQ] = ACTIONS(8731), - [anon_sym_LT] = ACTIONS(8731), - [anon_sym_LT_LT] = ACTIONS(8731), - [anon_sym_GT_GT] = ACTIONS(8731), - [anon_sym_SEMI] = ACTIONS(8733), - [anon_sym___attribute__] = ACTIONS(8731), - [anon_sym___attribute] = ACTIONS(8731), - [anon_sym_COLON] = ACTIONS(8731), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8733), - [anon_sym_LBRACE] = ACTIONS(8733), - [anon_sym_RBRACE] = ACTIONS(8733), - [anon_sym_LBRACK] = ACTIONS(8731), - [anon_sym_RBRACK] = ACTIONS(8733), - [anon_sym_EQ] = ACTIONS(8731), - [anon_sym_QMARK] = ACTIONS(8733), - [anon_sym_STAR_EQ] = ACTIONS(8733), - [anon_sym_SLASH_EQ] = ACTIONS(8733), - [anon_sym_PERCENT_EQ] = ACTIONS(8733), - [anon_sym_PLUS_EQ] = ACTIONS(8733), - [anon_sym_DASH_EQ] = ACTIONS(8733), - [anon_sym_LT_LT_EQ] = ACTIONS(8733), - [anon_sym_GT_GT_EQ] = ACTIONS(8733), - [anon_sym_AMP_EQ] = ACTIONS(8733), - [anon_sym_CARET_EQ] = ACTIONS(8733), - [anon_sym_PIPE_EQ] = ACTIONS(8733), - [anon_sym_and_eq] = ACTIONS(8731), - [anon_sym_or_eq] = ACTIONS(8731), - [anon_sym_xor_eq] = ACTIONS(8731), - [anon_sym_LT_EQ_GT] = ACTIONS(8733), - [anon_sym_or] = ACTIONS(8731), - [anon_sym_and] = ACTIONS(8731), - [anon_sym_bitor] = ACTIONS(8731), - [anon_sym_xor] = ACTIONS(8731), - [anon_sym_bitand] = ACTIONS(8731), - [anon_sym_not_eq] = ACTIONS(8731), - [anon_sym_DASH_DASH] = ACTIONS(8733), - [anon_sym_PLUS_PLUS] = ACTIONS(8733), - [anon_sym_asm] = ACTIONS(8731), - [anon_sym___asm__] = ACTIONS(8731), - [anon_sym___asm] = ACTIONS(8731), - [anon_sym_DOT] = ACTIONS(8731), - [anon_sym_DOT_STAR] = ACTIONS(8733), - [anon_sym_DASH_GT] = ACTIONS(8733), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(8731), - [anon_sym_COLON_RBRACK] = ACTIONS(8733), + [STATE(2770)] = { + [sym_ms_based_modifier] = STATE(10837), + [sym_ms_unaligned_ptr_modifier] = STATE(6574), + [sym_ms_pointer_modifier] = STATE(6427), + [sym__declarator] = STATE(8808), + [sym__abstract_declarator] = STATE(9023), + [sym_parenthesized_declarator] = STATE(8555), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_function_declarator] = STATE(8555), + [sym_abstract_function_declarator] = STATE(8596), + [sym_array_declarator] = STATE(8555), + [sym_abstract_array_declarator] = STATE(8596), + [sym_type_qualifier] = STATE(3810), + [sym_alignas_qualifier] = STATE(7511), + [sym_parameter_list] = STATE(5327), + [sym_decltype] = STATE(10768), + [sym_reference_declarator] = STATE(8555), + [sym_abstract_reference_declarator] = STATE(8596), + [sym_structured_binding_declarator] = STATE(8555), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7990), + [sym_qualified_identifier] = STATE(8555), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__type_definition_type_repeat1] = STATE(3810), + [aux_sym_pointer_declarator_repeat1] = STATE(6427), + [sym_identifier] = ACTIONS(8546), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(8651), + [anon_sym_AMP_AMP] = ACTIONS(8653), + [anon_sym_AMP] = ACTIONS(8655), + [anon_sym___extension__] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(6821), + [anon_sym___attribute] = ACTIONS(6821), + [anon_sym_COLON_COLON] = ACTIONS(8554), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3266), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3266), + [sym_ms_signed_ptr_modifier] = ACTIONS(3266), + [anon_sym__unaligned] = ACTIONS(3268), + [anon_sym___unaligned] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(5627), + [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__Nonnull] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_GT2] = ACTIONS(6823), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), }, - [STATE(3127)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7381), - [anon_sym_COMMA] = ACTIONS(7381), - [anon_sym_LPAREN2] = ACTIONS(7381), - [anon_sym_DASH] = ACTIONS(7379), - [anon_sym_PLUS] = ACTIONS(7379), - [anon_sym_STAR] = ACTIONS(7379), - [anon_sym_SLASH] = ACTIONS(7379), - [anon_sym_PERCENT] = ACTIONS(7379), - [anon_sym_PIPE_PIPE] = ACTIONS(7381), - [anon_sym_AMP_AMP] = ACTIONS(7381), - [anon_sym_PIPE] = ACTIONS(7379), - [anon_sym_CARET] = ACTIONS(7379), - [anon_sym_AMP] = ACTIONS(7379), - [anon_sym_EQ_EQ] = ACTIONS(7381), - [anon_sym_BANG_EQ] = ACTIONS(7381), - [anon_sym_GT] = ACTIONS(7379), - [anon_sym_GT_EQ] = ACTIONS(7379), - [anon_sym_LT_EQ] = ACTIONS(7379), - [anon_sym_LT] = ACTIONS(7379), - [anon_sym_LT_LT] = ACTIONS(7379), - [anon_sym_GT_GT] = ACTIONS(7379), - [anon_sym___extension__] = ACTIONS(7381), - [anon_sym_LBRACE] = ACTIONS(7381), - [anon_sym_LBRACK] = ACTIONS(7381), - [anon_sym_EQ] = ACTIONS(7379), - [anon_sym_const] = ACTIONS(7379), - [anon_sym_constexpr] = ACTIONS(7381), - [anon_sym_volatile] = ACTIONS(7381), - [anon_sym_restrict] = ACTIONS(7381), - [anon_sym___restrict__] = ACTIONS(7381), - [anon_sym__Atomic] = ACTIONS(7381), - [anon_sym__Noreturn] = ACTIONS(7381), - [anon_sym_noreturn] = ACTIONS(7381), - [anon_sym__Nonnull] = ACTIONS(7381), - [anon_sym_mutable] = ACTIONS(7381), - [anon_sym_constinit] = ACTIONS(7381), - [anon_sym_consteval] = ACTIONS(7381), - [anon_sym_alignas] = ACTIONS(7381), - [anon_sym__Alignas] = ACTIONS(7381), - [anon_sym_QMARK] = ACTIONS(7381), - [anon_sym_STAR_EQ] = ACTIONS(7381), - [anon_sym_SLASH_EQ] = ACTIONS(7381), - [anon_sym_PERCENT_EQ] = ACTIONS(7381), - [anon_sym_PLUS_EQ] = ACTIONS(7381), - [anon_sym_DASH_EQ] = ACTIONS(7381), - [anon_sym_LT_LT_EQ] = ACTIONS(7381), - [anon_sym_GT_GT_EQ] = ACTIONS(7379), - [anon_sym_AMP_EQ] = ACTIONS(7381), - [anon_sym_CARET_EQ] = ACTIONS(7381), - [anon_sym_PIPE_EQ] = ACTIONS(7381), - [anon_sym_and_eq] = ACTIONS(7381), - [anon_sym_or_eq] = ACTIONS(7381), - [anon_sym_xor_eq] = ACTIONS(7381), - [anon_sym_LT_EQ_GT] = ACTIONS(7381), - [anon_sym_or] = ACTIONS(7379), - [anon_sym_and] = ACTIONS(7379), - [anon_sym_bitor] = ACTIONS(7381), - [anon_sym_xor] = ACTIONS(7379), - [anon_sym_bitand] = ACTIONS(7381), - [anon_sym_not_eq] = ACTIONS(7381), - [anon_sym_DASH_DASH] = ACTIONS(7381), - [anon_sym_PLUS_PLUS] = ACTIONS(7381), - [anon_sym_DOT] = ACTIONS(7379), - [anon_sym_DOT_STAR] = ACTIONS(7381), - [anon_sym_DASH_GT] = ACTIONS(7381), + [STATE(2771)] = { + [sym_identifier] = ACTIONS(4176), + [aux_sym_preproc_def_token1] = ACTIONS(4176), + [aux_sym_preproc_if_token1] = ACTIONS(4176), + [aux_sym_preproc_if_token2] = ACTIONS(4176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4176), + [aux_sym_preproc_else_token1] = ACTIONS(4176), + [aux_sym_preproc_elif_token1] = ACTIONS(4176), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4176), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4176), + [sym_preproc_directive] = ACTIONS(4176), + [anon_sym_LPAREN2] = ACTIONS(4178), + [anon_sym_TILDE] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [anon_sym_AMP_AMP] = ACTIONS(4178), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4178), + [anon_sym___extension__] = ACTIONS(4176), + [anon_sym_typedef] = ACTIONS(4176), + [anon_sym_virtual] = ACTIONS(4176), + [anon_sym_extern] = ACTIONS(4176), + [anon_sym___attribute__] = ACTIONS(4176), + [anon_sym___attribute] = ACTIONS(4176), + [anon_sym_using] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4178), + [anon_sym___declspec] = ACTIONS(4176), + [anon_sym___based] = ACTIONS(4176), + [anon_sym_signed] = ACTIONS(4176), + [anon_sym_unsigned] = ACTIONS(4176), + [anon_sym_long] = ACTIONS(4176), + [anon_sym_short] = ACTIONS(4176), + [anon_sym_LBRACK] = ACTIONS(4176), + [anon_sym_static] = ACTIONS(4176), + [anon_sym_register] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym___inline] = ACTIONS(4176), + [anon_sym___inline__] = ACTIONS(4176), + [anon_sym___forceinline] = ACTIONS(4176), + [anon_sym_thread_local] = ACTIONS(4176), + [anon_sym___thread] = ACTIONS(4176), + [anon_sym_const] = ACTIONS(4176), + [anon_sym_constexpr] = ACTIONS(4176), + [anon_sym_volatile] = ACTIONS(4176), + [anon_sym_restrict] = ACTIONS(4176), + [anon_sym___restrict__] = ACTIONS(4176), + [anon_sym__Atomic] = ACTIONS(4176), + [anon_sym__Noreturn] = ACTIONS(4176), + [anon_sym_noreturn] = ACTIONS(4176), + [anon_sym__Nonnull] = ACTIONS(4176), + [anon_sym_mutable] = ACTIONS(4176), + [anon_sym_constinit] = ACTIONS(4176), + [anon_sym_consteval] = ACTIONS(4176), + [anon_sym_alignas] = ACTIONS(4176), + [anon_sym__Alignas] = ACTIONS(4176), + [sym_primitive_type] = ACTIONS(4176), + [anon_sym_enum] = ACTIONS(4176), + [anon_sym_class] = ACTIONS(4176), + [anon_sym_struct] = ACTIONS(4176), + [anon_sym_union] = ACTIONS(4176), + [anon_sym_typename] = ACTIONS(4176), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7381), - [anon_sym_override] = ACTIONS(7381), - [anon_sym_GT2] = ACTIONS(7381), - [anon_sym_requires] = ACTIONS(7381), - }, - [STATE(3128)] = { - [sym_identifier] = ACTIONS(7375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7377), - [anon_sym_COMMA] = ACTIONS(7377), - [anon_sym_RPAREN] = ACTIONS(7377), - [anon_sym_LPAREN2] = ACTIONS(7377), - [anon_sym_DASH] = ACTIONS(7375), - [anon_sym_PLUS] = ACTIONS(7375), - [anon_sym_STAR] = ACTIONS(7377), - [anon_sym_SLASH] = ACTIONS(7375), - [anon_sym_PERCENT] = ACTIONS(7377), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_AMP_AMP] = ACTIONS(7377), - [anon_sym_PIPE] = ACTIONS(7375), - [anon_sym_CARET] = ACTIONS(7377), - [anon_sym_AMP] = ACTIONS(7375), - [anon_sym_EQ_EQ] = ACTIONS(7377), - [anon_sym_BANG_EQ] = ACTIONS(7377), - [anon_sym_GT] = ACTIONS(7375), - [anon_sym_GT_EQ] = ACTIONS(7377), - [anon_sym_LT_EQ] = ACTIONS(7375), - [anon_sym_LT] = ACTIONS(7375), - [anon_sym_LT_LT] = ACTIONS(7377), - [anon_sym_GT_GT] = ACTIONS(7377), - [anon_sym_SEMI] = ACTIONS(7377), - [anon_sym___extension__] = ACTIONS(7375), - [anon_sym___attribute__] = ACTIONS(7375), - [anon_sym___attribute] = ACTIONS(7375), - [anon_sym_COLON] = ACTIONS(7375), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7377), - [anon_sym___based] = ACTIONS(7375), - [anon_sym_LBRACE] = ACTIONS(7377), - [anon_sym_RBRACE] = ACTIONS(7377), - [anon_sym_signed] = ACTIONS(7375), - [anon_sym_unsigned] = ACTIONS(7375), - [anon_sym_long] = ACTIONS(7375), - [anon_sym_short] = ACTIONS(7375), - [anon_sym_LBRACK] = ACTIONS(7377), - [anon_sym_const] = ACTIONS(7375), - [anon_sym_constexpr] = ACTIONS(7375), - [anon_sym_volatile] = ACTIONS(7375), - [anon_sym_restrict] = ACTIONS(7375), - [anon_sym___restrict__] = ACTIONS(7375), - [anon_sym__Atomic] = ACTIONS(7375), - [anon_sym__Noreturn] = ACTIONS(7375), - [anon_sym_noreturn] = ACTIONS(7375), - [anon_sym__Nonnull] = ACTIONS(7375), - [anon_sym_mutable] = ACTIONS(7375), - [anon_sym_constinit] = ACTIONS(7375), - [anon_sym_consteval] = ACTIONS(7375), - [anon_sym_alignas] = ACTIONS(7375), - [anon_sym__Alignas] = ACTIONS(7375), - [sym_primitive_type] = ACTIONS(7375), - [anon_sym_QMARK] = ACTIONS(7377), - [anon_sym_LT_EQ_GT] = ACTIONS(7377), - [anon_sym_or] = ACTIONS(7375), - [anon_sym_and] = ACTIONS(7375), - [anon_sym_bitor] = ACTIONS(7375), - [anon_sym_xor] = ACTIONS(7375), - [anon_sym_bitand] = ACTIONS(7375), - [anon_sym_not_eq] = ACTIONS(7375), - [anon_sym_DASH_DASH] = ACTIONS(7377), - [anon_sym_PLUS_PLUS] = ACTIONS(7377), - [anon_sym_DOT] = ACTIONS(7375), - [anon_sym_DOT_STAR] = ACTIONS(7377), - [anon_sym_DASH_GT] = ACTIONS(7377), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7375), - [anon_sym_override] = ACTIONS(7375), - [anon_sym_requires] = ACTIONS(7375), - [anon_sym_COLON_RBRACK] = ACTIONS(7377), - }, - [STATE(3129)] = { - [sym_attribute_declaration] = STATE(3105), - [aux_sym_attributed_declarator_repeat1] = STATE(3105), - [sym_identifier] = ACTIONS(8479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8481), - [anon_sym_COMMA] = ACTIONS(8481), - [anon_sym_RPAREN] = ACTIONS(8481), - [aux_sym_preproc_if_token2] = ACTIONS(8481), - [aux_sym_preproc_else_token1] = ACTIONS(8481), - [aux_sym_preproc_elif_token1] = ACTIONS(8479), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8481), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8481), - [anon_sym_LPAREN2] = ACTIONS(8481), - [anon_sym_DASH] = ACTIONS(8479), - [anon_sym_PLUS] = ACTIONS(8479), - [anon_sym_STAR] = ACTIONS(8479), - [anon_sym_SLASH] = ACTIONS(8479), - [anon_sym_PERCENT] = ACTIONS(8479), - [anon_sym_PIPE_PIPE] = ACTIONS(8481), - [anon_sym_AMP_AMP] = ACTIONS(8481), - [anon_sym_PIPE] = ACTIONS(8479), - [anon_sym_CARET] = ACTIONS(8479), - [anon_sym_AMP] = ACTIONS(8479), - [anon_sym_EQ_EQ] = ACTIONS(8481), - [anon_sym_BANG_EQ] = ACTIONS(8481), - [anon_sym_GT] = ACTIONS(8479), - [anon_sym_GT_EQ] = ACTIONS(8481), - [anon_sym_LT_EQ] = ACTIONS(8479), - [anon_sym_LT] = ACTIONS(8479), - [anon_sym_LT_LT] = ACTIONS(8479), - [anon_sym_GT_GT] = ACTIONS(8479), - [anon_sym_SEMI] = ACTIONS(8481), - [anon_sym___attribute__] = ACTIONS(8479), - [anon_sym___attribute] = ACTIONS(8479), - [anon_sym_COLON] = ACTIONS(8479), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8481), - [anon_sym_RBRACE] = ACTIONS(8481), - [anon_sym_LBRACK] = ACTIONS(8479), - [anon_sym_EQ] = ACTIONS(8479), - [anon_sym_QMARK] = ACTIONS(8481), - [anon_sym_STAR_EQ] = ACTIONS(8481), - [anon_sym_SLASH_EQ] = ACTIONS(8481), - [anon_sym_PERCENT_EQ] = ACTIONS(8481), - [anon_sym_PLUS_EQ] = ACTIONS(8481), - [anon_sym_DASH_EQ] = ACTIONS(8481), - [anon_sym_LT_LT_EQ] = ACTIONS(8481), - [anon_sym_GT_GT_EQ] = ACTIONS(8481), - [anon_sym_AMP_EQ] = ACTIONS(8481), - [anon_sym_CARET_EQ] = ACTIONS(8481), - [anon_sym_PIPE_EQ] = ACTIONS(8481), - [anon_sym_and_eq] = ACTIONS(8479), - [anon_sym_or_eq] = ACTIONS(8479), - [anon_sym_xor_eq] = ACTIONS(8479), - [anon_sym_LT_EQ_GT] = ACTIONS(8481), - [anon_sym_or] = ACTIONS(8479), - [anon_sym_and] = ACTIONS(8479), - [anon_sym_bitor] = ACTIONS(8479), - [anon_sym_xor] = ACTIONS(8479), - [anon_sym_bitand] = ACTIONS(8479), - [anon_sym_not_eq] = ACTIONS(8479), - [anon_sym_DASH_DASH] = ACTIONS(8481), - [anon_sym_PLUS_PLUS] = ACTIONS(8481), - [anon_sym_DOT] = ACTIONS(8479), - [anon_sym_DOT_STAR] = ACTIONS(8481), - [anon_sym_DASH_GT] = ACTIONS(8481), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8479), - [anon_sym_override] = ACTIONS(8479), - [anon_sym_requires] = ACTIONS(8479), - [anon_sym_COLON_RBRACK] = ACTIONS(8481), - }, - [STATE(3130)] = { - [sym_identifier] = ACTIONS(2795), - [aux_sym_preproc_def_token1] = ACTIONS(2795), - [aux_sym_preproc_if_token1] = ACTIONS(2795), - [aux_sym_preproc_if_token2] = ACTIONS(2795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), - [sym_preproc_directive] = ACTIONS(2795), - [anon_sym_LPAREN2] = ACTIONS(2793), - [anon_sym_TILDE] = ACTIONS(2793), - [anon_sym_STAR] = ACTIONS(2793), - [anon_sym_AMP_AMP] = ACTIONS(2793), - [anon_sym_AMP] = ACTIONS(2795), - [anon_sym_SEMI] = ACTIONS(2793), - [anon_sym___extension__] = ACTIONS(2795), - [anon_sym_typedef] = ACTIONS(2795), - [anon_sym_virtual] = ACTIONS(2795), - [anon_sym_extern] = ACTIONS(2795), - [anon_sym___attribute__] = ACTIONS(2795), - [anon_sym___attribute] = ACTIONS(2795), - [anon_sym_using] = ACTIONS(2795), - [anon_sym_COLON_COLON] = ACTIONS(2793), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), - [anon_sym___declspec] = ACTIONS(2795), - [anon_sym___based] = ACTIONS(2795), - [anon_sym_signed] = ACTIONS(2795), - [anon_sym_unsigned] = ACTIONS(2795), - [anon_sym_long] = ACTIONS(2795), - [anon_sym_short] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2795), - [anon_sym_static] = ACTIONS(2795), - [anon_sym_register] = ACTIONS(2795), - [anon_sym_inline] = ACTIONS(2795), - [anon_sym___inline] = ACTIONS(2795), - [anon_sym___inline__] = ACTIONS(2795), - [anon_sym___forceinline] = ACTIONS(2795), - [anon_sym_thread_local] = ACTIONS(2795), - [anon_sym___thread] = ACTIONS(2795), - [anon_sym_const] = ACTIONS(2795), - [anon_sym_constexpr] = ACTIONS(2795), - [anon_sym_volatile] = ACTIONS(2795), - [anon_sym_restrict] = ACTIONS(2795), - [anon_sym___restrict__] = ACTIONS(2795), - [anon_sym__Atomic] = ACTIONS(2795), - [anon_sym__Noreturn] = ACTIONS(2795), - [anon_sym_noreturn] = ACTIONS(2795), - [anon_sym__Nonnull] = ACTIONS(2795), - [anon_sym_mutable] = ACTIONS(2795), - [anon_sym_constinit] = ACTIONS(2795), - [anon_sym_consteval] = ACTIONS(2795), - [anon_sym_alignas] = ACTIONS(2795), - [anon_sym__Alignas] = ACTIONS(2795), - [sym_primitive_type] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2795), - [anon_sym_class] = ACTIONS(2795), - [anon_sym_struct] = ACTIONS(2795), - [anon_sym_union] = ACTIONS(2795), - [anon_sym_typename] = ACTIONS(2795), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2795), - [anon_sym_decltype] = ACTIONS(2795), - [anon_sym_explicit] = ACTIONS(2795), - [anon_sym_private] = ACTIONS(2795), - [anon_sym_template] = ACTIONS(2795), - [anon_sym_operator] = ACTIONS(2795), - [anon_sym_friend] = ACTIONS(2795), - [anon_sym_public] = ACTIONS(2795), - [anon_sym_protected] = ACTIONS(2795), - [anon_sym_static_assert] = ACTIONS(2795), - [anon_sym_catch] = ACTIONS(2795), - [anon_sym_LBRACK_COLON] = ACTIONS(2793), + [sym_auto] = ACTIONS(4176), + [anon_sym_decltype] = ACTIONS(4176), + [anon_sym_explicit] = ACTIONS(4176), + [anon_sym_private] = ACTIONS(4176), + [anon_sym_template] = ACTIONS(4176), + [anon_sym_operator] = ACTIONS(4176), + [anon_sym_friend] = ACTIONS(4176), + [anon_sym_public] = ACTIONS(4176), + [anon_sym_protected] = ACTIONS(4176), + [anon_sym_static_assert] = ACTIONS(4176), + [anon_sym_LBRACK_COLON] = ACTIONS(4178), }, - [STATE(3131)] = { - [sym_identifier] = ACTIONS(2803), - [aux_sym_preproc_def_token1] = ACTIONS(2803), - [aux_sym_preproc_if_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2803), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym___extension__] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2803), - [anon_sym_virtual] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym___attribute__] = ACTIONS(2803), - [anon_sym___attribute] = ACTIONS(2803), - [anon_sym_using] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2803), - [anon_sym___based] = ACTIONS(2803), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_signed] = ACTIONS(2803), - [anon_sym_unsigned] = ACTIONS(2803), - [anon_sym_long] = ACTIONS(2803), - [anon_sym_short] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_register] = ACTIONS(2803), - [anon_sym_inline] = ACTIONS(2803), - [anon_sym___inline] = ACTIONS(2803), - [anon_sym___inline__] = ACTIONS(2803), - [anon_sym___forceinline] = ACTIONS(2803), - [anon_sym_thread_local] = ACTIONS(2803), - [anon_sym___thread] = ACTIONS(2803), - [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__Nonnull] = ACTIONS(2803), - [anon_sym_mutable] = ACTIONS(2803), - [anon_sym_constinit] = ACTIONS(2803), - [anon_sym_consteval] = ACTIONS(2803), - [anon_sym_alignas] = ACTIONS(2803), - [anon_sym__Alignas] = ACTIONS(2803), - [sym_primitive_type] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_typename] = ACTIONS(2803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2803), - [anon_sym_decltype] = ACTIONS(2803), - [anon_sym_explicit] = ACTIONS(2803), - [anon_sym_private] = ACTIONS(2803), - [anon_sym_template] = ACTIONS(2803), - [anon_sym_operator] = ACTIONS(2803), - [anon_sym_friend] = ACTIONS(2803), - [anon_sym_public] = ACTIONS(2803), - [anon_sym_protected] = ACTIONS(2803), - [anon_sym_static_assert] = ACTIONS(2803), - [anon_sym_catch] = ACTIONS(2803), - [anon_sym_LBRACK_COLON] = ACTIONS(2801), + [STATE(2772)] = { + [sym_identifier] = ACTIONS(4104), + [aux_sym_preproc_def_token1] = ACTIONS(4104), + [aux_sym_preproc_if_token1] = ACTIONS(4104), + [aux_sym_preproc_if_token2] = ACTIONS(4104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4104), + [aux_sym_preproc_else_token1] = ACTIONS(4104), + [aux_sym_preproc_elif_token1] = ACTIONS(4104), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4104), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4104), + [sym_preproc_directive] = ACTIONS(4104), + [anon_sym_LPAREN2] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4106), + [anon_sym_AMP_AMP] = ACTIONS(4106), + [anon_sym_AMP] = ACTIONS(4104), + [anon_sym_SEMI] = ACTIONS(4106), + [anon_sym___extension__] = ACTIONS(4104), + [anon_sym_typedef] = ACTIONS(4104), + [anon_sym_virtual] = ACTIONS(4104), + [anon_sym_extern] = ACTIONS(4104), + [anon_sym___attribute__] = ACTIONS(4104), + [anon_sym___attribute] = ACTIONS(4104), + [anon_sym_using] = ACTIONS(4104), + [anon_sym_COLON_COLON] = ACTIONS(4106), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4106), + [anon_sym___declspec] = ACTIONS(4104), + [anon_sym___based] = ACTIONS(4104), + [anon_sym_signed] = ACTIONS(4104), + [anon_sym_unsigned] = ACTIONS(4104), + [anon_sym_long] = ACTIONS(4104), + [anon_sym_short] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_static] = ACTIONS(4104), + [anon_sym_register] = ACTIONS(4104), + [anon_sym_inline] = ACTIONS(4104), + [anon_sym___inline] = ACTIONS(4104), + [anon_sym___inline__] = ACTIONS(4104), + [anon_sym___forceinline] = ACTIONS(4104), + [anon_sym_thread_local] = ACTIONS(4104), + [anon_sym___thread] = ACTIONS(4104), + [anon_sym_const] = ACTIONS(4104), + [anon_sym_constexpr] = ACTIONS(4104), + [anon_sym_volatile] = ACTIONS(4104), + [anon_sym_restrict] = ACTIONS(4104), + [anon_sym___restrict__] = ACTIONS(4104), + [anon_sym__Atomic] = ACTIONS(4104), + [anon_sym__Noreturn] = ACTIONS(4104), + [anon_sym_noreturn] = ACTIONS(4104), + [anon_sym__Nonnull] = ACTIONS(4104), + [anon_sym_mutable] = ACTIONS(4104), + [anon_sym_constinit] = ACTIONS(4104), + [anon_sym_consteval] = ACTIONS(4104), + [anon_sym_alignas] = ACTIONS(4104), + [anon_sym__Alignas] = ACTIONS(4104), + [sym_primitive_type] = ACTIONS(4104), + [anon_sym_enum] = ACTIONS(4104), + [anon_sym_class] = ACTIONS(4104), + [anon_sym_struct] = ACTIONS(4104), + [anon_sym_union] = ACTIONS(4104), + [anon_sym_typename] = ACTIONS(4104), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4104), + [anon_sym_decltype] = ACTIONS(4104), + [anon_sym_explicit] = ACTIONS(4104), + [anon_sym_private] = ACTIONS(4104), + [anon_sym_template] = ACTIONS(4104), + [anon_sym_operator] = ACTIONS(4104), + [anon_sym_friend] = ACTIONS(4104), + [anon_sym_public] = ACTIONS(4104), + [anon_sym_protected] = ACTIONS(4104), + [anon_sym_static_assert] = ACTIONS(4104), + [anon_sym_LBRACK_COLON] = ACTIONS(4106), }, - [STATE(3132)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7335), - [anon_sym_COMMA] = ACTIONS(7335), - [anon_sym_RPAREN] = ACTIONS(7335), - [anon_sym_LPAREN2] = ACTIONS(7335), - [anon_sym_DASH] = ACTIONS(7333), - [anon_sym_PLUS] = ACTIONS(7333), - [anon_sym_STAR] = ACTIONS(7333), - [anon_sym_SLASH] = ACTIONS(7333), - [anon_sym_PERCENT] = ACTIONS(7333), - [anon_sym_PIPE_PIPE] = ACTIONS(7335), - [anon_sym_AMP_AMP] = ACTIONS(7335), - [anon_sym_PIPE] = ACTIONS(7333), - [anon_sym_CARET] = ACTIONS(7333), - [anon_sym_AMP] = ACTIONS(7333), - [anon_sym_EQ_EQ] = ACTIONS(7335), - [anon_sym_BANG_EQ] = ACTIONS(7335), - [anon_sym_GT] = ACTIONS(7333), - [anon_sym_GT_EQ] = ACTIONS(7335), - [anon_sym_LT_EQ] = ACTIONS(7333), - [anon_sym_LT] = ACTIONS(7333), - [anon_sym_LT_LT] = ACTIONS(7333), - [anon_sym_GT_GT] = ACTIONS(7333), - [anon_sym___extension__] = ACTIONS(7335), - [anon_sym___attribute__] = ACTIONS(7335), - [anon_sym___attribute] = ACTIONS(7333), - [anon_sym_LBRACE] = ACTIONS(7335), - [anon_sym_LBRACK] = ACTIONS(7335), - [anon_sym_EQ] = ACTIONS(7333), - [anon_sym_const] = ACTIONS(7333), - [anon_sym_constexpr] = ACTIONS(7335), - [anon_sym_volatile] = ACTIONS(7335), - [anon_sym_restrict] = ACTIONS(7335), - [anon_sym___restrict__] = ACTIONS(7335), - [anon_sym__Atomic] = ACTIONS(7335), - [anon_sym__Noreturn] = ACTIONS(7335), - [anon_sym_noreturn] = ACTIONS(7335), - [anon_sym__Nonnull] = ACTIONS(7335), - [anon_sym_mutable] = ACTIONS(7335), - [anon_sym_constinit] = ACTIONS(7335), - [anon_sym_consteval] = ACTIONS(7335), - [anon_sym_alignas] = ACTIONS(7335), - [anon_sym__Alignas] = ACTIONS(7335), - [anon_sym_QMARK] = ACTIONS(7335), - [anon_sym_STAR_EQ] = ACTIONS(7335), - [anon_sym_SLASH_EQ] = ACTIONS(7335), - [anon_sym_PERCENT_EQ] = ACTIONS(7335), - [anon_sym_PLUS_EQ] = ACTIONS(7335), - [anon_sym_DASH_EQ] = ACTIONS(7335), - [anon_sym_LT_LT_EQ] = ACTIONS(7335), - [anon_sym_GT_GT_EQ] = ACTIONS(7335), - [anon_sym_AMP_EQ] = ACTIONS(7335), - [anon_sym_CARET_EQ] = ACTIONS(7335), - [anon_sym_PIPE_EQ] = ACTIONS(7335), - [anon_sym_LT_EQ_GT] = ACTIONS(7335), - [anon_sym_or] = ACTIONS(7335), - [anon_sym_and] = ACTIONS(7335), - [anon_sym_bitor] = ACTIONS(7335), - [anon_sym_xor] = ACTIONS(7335), - [anon_sym_bitand] = ACTIONS(7335), - [anon_sym_not_eq] = ACTIONS(7335), - [anon_sym_DASH_DASH] = ACTIONS(7335), - [anon_sym_PLUS_PLUS] = ACTIONS(7335), - [anon_sym_DOT] = ACTIONS(7333), - [anon_sym_DOT_STAR] = ACTIONS(7335), - [anon_sym_DASH_GT] = ACTIONS(7333), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7335), - [anon_sym_override] = ACTIONS(7335), - [anon_sym_requires] = ACTIONS(7335), - [anon_sym_DASH_GT_STAR] = ACTIONS(7335), + [STATE(2773)] = { + [sym_identifier] = ACTIONS(4004), + [aux_sym_preproc_def_token1] = ACTIONS(4004), + [aux_sym_preproc_if_token1] = ACTIONS(4004), + [aux_sym_preproc_if_token2] = ACTIONS(4004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4004), + [aux_sym_preproc_else_token1] = ACTIONS(4004), + [aux_sym_preproc_elif_token1] = ACTIONS(4004), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4004), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4004), + [sym_preproc_directive] = ACTIONS(4004), + [anon_sym_LPAREN2] = ACTIONS(4006), + [anon_sym_TILDE] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4006), + [anon_sym___extension__] = ACTIONS(4004), + [anon_sym_typedef] = ACTIONS(4004), + [anon_sym_virtual] = ACTIONS(4004), + [anon_sym_extern] = ACTIONS(4004), + [anon_sym___attribute__] = ACTIONS(4004), + [anon_sym___attribute] = ACTIONS(4004), + [anon_sym_using] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4006), + [anon_sym___declspec] = ACTIONS(4004), + [anon_sym___based] = ACTIONS(4004), + [anon_sym_signed] = ACTIONS(4004), + [anon_sym_unsigned] = ACTIONS(4004), + [anon_sym_long] = ACTIONS(4004), + [anon_sym_short] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_register] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym___inline] = ACTIONS(4004), + [anon_sym___inline__] = ACTIONS(4004), + [anon_sym___forceinline] = ACTIONS(4004), + [anon_sym_thread_local] = ACTIONS(4004), + [anon_sym___thread] = ACTIONS(4004), + [anon_sym_const] = ACTIONS(4004), + [anon_sym_constexpr] = ACTIONS(4004), + [anon_sym_volatile] = ACTIONS(4004), + [anon_sym_restrict] = ACTIONS(4004), + [anon_sym___restrict__] = ACTIONS(4004), + [anon_sym__Atomic] = ACTIONS(4004), + [anon_sym__Noreturn] = ACTIONS(4004), + [anon_sym_noreturn] = ACTIONS(4004), + [anon_sym__Nonnull] = ACTIONS(4004), + [anon_sym_mutable] = ACTIONS(4004), + [anon_sym_constinit] = ACTIONS(4004), + [anon_sym_consteval] = ACTIONS(4004), + [anon_sym_alignas] = ACTIONS(4004), + [anon_sym__Alignas] = ACTIONS(4004), + [sym_primitive_type] = ACTIONS(4004), + [anon_sym_enum] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4004), + [anon_sym_struct] = ACTIONS(4004), + [anon_sym_union] = ACTIONS(4004), + [anon_sym_typename] = ACTIONS(4004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4004), + [anon_sym_decltype] = ACTIONS(4004), + [anon_sym_explicit] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_template] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_friend] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_static_assert] = ACTIONS(4004), + [anon_sym_LBRACK_COLON] = ACTIONS(4006), }, - [STATE(3133)] = { - [sym_identifier] = ACTIONS(2803), - [aux_sym_preproc_def_token1] = ACTIONS(2803), - [anon_sym_COMMA] = ACTIONS(3888), - [aux_sym_preproc_if_token1] = ACTIONS(2803), - [aux_sym_preproc_if_token2] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2803), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(3888), - [anon_sym___extension__] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2803), - [anon_sym_virtual] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym___attribute__] = ACTIONS(8208), - [anon_sym___attribute] = ACTIONS(8208), - [anon_sym_using] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2803), - [anon_sym___based] = ACTIONS(2803), - [anon_sym_signed] = ACTIONS(2803), - [anon_sym_unsigned] = ACTIONS(2803), - [anon_sym_long] = ACTIONS(2803), - [anon_sym_short] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_register] = ACTIONS(2803), - [anon_sym_inline] = ACTIONS(2803), - [anon_sym___inline] = ACTIONS(2803), - [anon_sym___inline__] = ACTIONS(2803), - [anon_sym___forceinline] = ACTIONS(2803), - [anon_sym_thread_local] = ACTIONS(2803), - [anon_sym___thread] = ACTIONS(2803), - [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__Nonnull] = ACTIONS(2803), - [anon_sym_mutable] = ACTIONS(2803), - [anon_sym_constinit] = ACTIONS(2803), - [anon_sym_consteval] = ACTIONS(2803), - [anon_sym_alignas] = ACTIONS(2803), - [anon_sym__Alignas] = ACTIONS(2803), - [sym_primitive_type] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_typename] = ACTIONS(2803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2803), - [anon_sym_decltype] = ACTIONS(2803), - [anon_sym_explicit] = ACTIONS(2803), - [anon_sym_private] = ACTIONS(2803), - [anon_sym_template] = ACTIONS(2803), - [anon_sym_operator] = ACTIONS(2803), - [anon_sym_friend] = ACTIONS(2803), - [anon_sym_public] = ACTIONS(2803), - [anon_sym_protected] = ACTIONS(2803), - [anon_sym_static_assert] = ACTIONS(2803), - [anon_sym_LBRACK_COLON] = ACTIONS(2801), + [STATE(2774)] = { + [sym_attribute_specifier] = STATE(3113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7425), + [anon_sym_COMMA] = ACTIONS(7425), + [anon_sym_LPAREN2] = ACTIONS(7425), + [anon_sym_DASH] = ACTIONS(7423), + [anon_sym_PLUS] = ACTIONS(7423), + [anon_sym_STAR] = ACTIONS(7423), + [anon_sym_SLASH] = ACTIONS(7423), + [anon_sym_PERCENT] = ACTIONS(7423), + [anon_sym_PIPE_PIPE] = ACTIONS(7425), + [anon_sym_AMP_AMP] = ACTIONS(7425), + [anon_sym_PIPE] = ACTIONS(7423), + [anon_sym_CARET] = ACTIONS(7423), + [anon_sym_AMP] = ACTIONS(7423), + [anon_sym_EQ_EQ] = ACTIONS(7425), + [anon_sym_BANG_EQ] = ACTIONS(7425), + [anon_sym_GT] = ACTIONS(7423), + [anon_sym_GT_EQ] = ACTIONS(7423), + [anon_sym_LT_EQ] = ACTIONS(7423), + [anon_sym_LT] = ACTIONS(7423), + [anon_sym_LT_LT] = ACTIONS(7423), + [anon_sym_GT_GT] = ACTIONS(7423), + [anon_sym___extension__] = ACTIONS(7425), + [anon_sym___attribute__] = ACTIONS(8265), + [anon_sym___attribute] = ACTIONS(8267), + [anon_sym_LBRACE] = ACTIONS(7425), + [anon_sym_LBRACK] = ACTIONS(7425), + [anon_sym_EQ] = ACTIONS(7423), + [anon_sym_const] = ACTIONS(7423), + [anon_sym_constexpr] = ACTIONS(7425), + [anon_sym_volatile] = ACTIONS(7425), + [anon_sym_restrict] = ACTIONS(7425), + [anon_sym___restrict__] = ACTIONS(7425), + [anon_sym__Atomic] = ACTIONS(7425), + [anon_sym__Noreturn] = ACTIONS(7425), + [anon_sym_noreturn] = ACTIONS(7425), + [anon_sym__Nonnull] = ACTIONS(7425), + [anon_sym_mutable] = ACTIONS(7425), + [anon_sym_constinit] = ACTIONS(7425), + [anon_sym_consteval] = ACTIONS(7425), + [anon_sym_alignas] = ACTIONS(7425), + [anon_sym__Alignas] = ACTIONS(7425), + [anon_sym_QMARK] = ACTIONS(7425), + [anon_sym_STAR_EQ] = ACTIONS(7425), + [anon_sym_SLASH_EQ] = ACTIONS(7425), + [anon_sym_PERCENT_EQ] = ACTIONS(7425), + [anon_sym_PLUS_EQ] = ACTIONS(7425), + [anon_sym_DASH_EQ] = ACTIONS(7425), + [anon_sym_LT_LT_EQ] = ACTIONS(7425), + [anon_sym_GT_GT_EQ] = ACTIONS(7423), + [anon_sym_AMP_EQ] = ACTIONS(7425), + [anon_sym_CARET_EQ] = ACTIONS(7425), + [anon_sym_PIPE_EQ] = ACTIONS(7425), + [anon_sym_and_eq] = ACTIONS(7425), + [anon_sym_or_eq] = ACTIONS(7425), + [anon_sym_xor_eq] = ACTIONS(7425), + [anon_sym_LT_EQ_GT] = ACTIONS(7425), + [anon_sym_or] = ACTIONS(7423), + [anon_sym_and] = ACTIONS(7423), + [anon_sym_bitor] = ACTIONS(7425), + [anon_sym_xor] = ACTIONS(7423), + [anon_sym_bitand] = ACTIONS(7425), + [anon_sym_not_eq] = ACTIONS(7425), + [anon_sym_DASH_DASH] = ACTIONS(7425), + [anon_sym_PLUS_PLUS] = ACTIONS(7425), + [anon_sym_DOT] = ACTIONS(7423), + [anon_sym_DOT_STAR] = ACTIONS(7425), + [anon_sym_DASH_GT] = ACTIONS(7425), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7425), + [anon_sym_override] = ACTIONS(7425), + [anon_sym_GT2] = ACTIONS(7425), + [anon_sym_requires] = ACTIONS(7425), }, - [STATE(3134)] = { - [sym_identifier] = ACTIONS(2795), - [aux_sym_preproc_def_token1] = ACTIONS(2795), - [aux_sym_preproc_if_token1] = ACTIONS(2795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2795), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2795), - [sym_preproc_directive] = ACTIONS(2795), - [anon_sym_LPAREN2] = ACTIONS(2793), - [anon_sym_TILDE] = ACTIONS(2793), - [anon_sym_STAR] = ACTIONS(2793), - [anon_sym_AMP_AMP] = ACTIONS(2793), - [anon_sym_AMP] = ACTIONS(2795), - [anon_sym_SEMI] = ACTIONS(2793), - [anon_sym___extension__] = ACTIONS(2795), - [anon_sym_typedef] = ACTIONS(2795), - [anon_sym_virtual] = ACTIONS(2795), - [anon_sym_extern] = ACTIONS(2795), - [anon_sym___attribute__] = ACTIONS(2795), - [anon_sym___attribute] = ACTIONS(2795), - [anon_sym_using] = ACTIONS(2795), - [anon_sym_COLON_COLON] = ACTIONS(2793), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2793), - [anon_sym___declspec] = ACTIONS(2795), - [anon_sym___based] = ACTIONS(2795), - [anon_sym_RBRACE] = ACTIONS(2793), - [anon_sym_signed] = ACTIONS(2795), - [anon_sym_unsigned] = ACTIONS(2795), - [anon_sym_long] = ACTIONS(2795), - [anon_sym_short] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2795), - [anon_sym_static] = ACTIONS(2795), - [anon_sym_register] = ACTIONS(2795), - [anon_sym_inline] = ACTIONS(2795), - [anon_sym___inline] = ACTIONS(2795), - [anon_sym___inline__] = ACTIONS(2795), - [anon_sym___forceinline] = ACTIONS(2795), - [anon_sym_thread_local] = ACTIONS(2795), - [anon_sym___thread] = ACTIONS(2795), - [anon_sym_const] = ACTIONS(2795), - [anon_sym_constexpr] = ACTIONS(2795), - [anon_sym_volatile] = ACTIONS(2795), - [anon_sym_restrict] = ACTIONS(2795), - [anon_sym___restrict__] = ACTIONS(2795), - [anon_sym__Atomic] = ACTIONS(2795), - [anon_sym__Noreturn] = ACTIONS(2795), - [anon_sym_noreturn] = ACTIONS(2795), - [anon_sym__Nonnull] = ACTIONS(2795), - [anon_sym_mutable] = ACTIONS(2795), - [anon_sym_constinit] = ACTIONS(2795), - [anon_sym_consteval] = ACTIONS(2795), - [anon_sym_alignas] = ACTIONS(2795), - [anon_sym__Alignas] = ACTIONS(2795), - [sym_primitive_type] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2795), - [anon_sym_class] = ACTIONS(2795), - [anon_sym_struct] = ACTIONS(2795), - [anon_sym_union] = ACTIONS(2795), - [anon_sym_typename] = ACTIONS(2795), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2795), - [anon_sym_decltype] = ACTIONS(2795), - [anon_sym_explicit] = ACTIONS(2795), - [anon_sym_private] = ACTIONS(2795), - [anon_sym_template] = ACTIONS(2795), - [anon_sym_operator] = ACTIONS(2795), - [anon_sym_friend] = ACTIONS(2795), - [anon_sym_public] = ACTIONS(2795), - [anon_sym_protected] = ACTIONS(2795), - [anon_sym_static_assert] = ACTIONS(2795), - [anon_sym_catch] = ACTIONS(2795), - [anon_sym_LBRACK_COLON] = ACTIONS(2793), + [STATE(2775)] = { + [sym_ms_based_modifier] = STATE(11008), + [sym_ms_unaligned_ptr_modifier] = STATE(6574), + [sym_ms_pointer_modifier] = STATE(2779), + [sym__declarator] = STATE(8823), + [sym__abstract_declarator] = STATE(9053), + [sym_parenthesized_declarator] = STATE(8555), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_function_declarator] = STATE(8555), + [sym_abstract_function_declarator] = STATE(8596), + [sym_array_declarator] = STATE(8555), + [sym_abstract_array_declarator] = STATE(8596), + [sym_type_qualifier] = STATE(3788), + [sym_alignas_qualifier] = STATE(7511), + [sym_parameter_list] = STATE(5340), + [sym_decltype] = STATE(10768), + [sym_reference_declarator] = STATE(8555), + [sym_abstract_reference_declarator] = STATE(8596), + [sym_structured_binding_declarator] = STATE(8555), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7993), + [sym_qualified_identifier] = STATE(8555), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__type_definition_type_repeat1] = STATE(3788), + [aux_sym_pointer_declarator_repeat1] = STATE(2779), + [sym_identifier] = ACTIONS(8228), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_RPAREN] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(8669), + [anon_sym_AMP_AMP] = ACTIONS(8671), + [anon_sym_AMP] = ACTIONS(8673), + [anon_sym___extension__] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(6861), + [anon_sym___attribute] = ACTIONS(6861), + [anon_sym_COLON_COLON] = ACTIONS(8675), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3266), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3266), + [sym_ms_signed_ptr_modifier] = ACTIONS(3266), + [anon_sym__unaligned] = ACTIONS(3268), + [anon_sym___unaligned] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(5627), + [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__Nonnull] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), }, - [STATE(3135)] = { - [sym_identifier] = ACTIONS(7299), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7301), - [anon_sym_COMMA] = ACTIONS(7301), - [anon_sym_RPAREN] = ACTIONS(7301), - [anon_sym_LPAREN2] = ACTIONS(7301), - [anon_sym_DASH] = ACTIONS(7299), - [anon_sym_PLUS] = ACTIONS(7299), - [anon_sym_STAR] = ACTIONS(7301), - [anon_sym_SLASH] = ACTIONS(7299), - [anon_sym_PERCENT] = ACTIONS(7301), - [anon_sym_PIPE_PIPE] = ACTIONS(7301), - [anon_sym_AMP_AMP] = ACTIONS(7301), - [anon_sym_PIPE] = ACTIONS(7299), - [anon_sym_CARET] = ACTIONS(7301), - [anon_sym_AMP] = ACTIONS(7299), - [anon_sym_EQ_EQ] = ACTIONS(7301), - [anon_sym_BANG_EQ] = ACTIONS(7301), - [anon_sym_GT] = ACTIONS(7299), - [anon_sym_GT_EQ] = ACTIONS(7301), - [anon_sym_LT_EQ] = ACTIONS(7299), - [anon_sym_LT] = ACTIONS(7299), - [anon_sym_LT_LT] = ACTIONS(7301), - [anon_sym_GT_GT] = ACTIONS(7301), - [anon_sym_SEMI] = ACTIONS(7301), - [anon_sym___extension__] = ACTIONS(7299), - [anon_sym___attribute__] = ACTIONS(7299), - [anon_sym___attribute] = ACTIONS(7299), - [anon_sym_COLON] = ACTIONS(7299), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7301), - [anon_sym___based] = ACTIONS(7299), - [anon_sym_LBRACE] = ACTIONS(7301), - [anon_sym_RBRACE] = ACTIONS(7301), - [anon_sym_signed] = ACTIONS(7299), - [anon_sym_unsigned] = ACTIONS(7299), - [anon_sym_long] = ACTIONS(7299), - [anon_sym_short] = ACTIONS(7299), - [anon_sym_LBRACK] = ACTIONS(7301), - [anon_sym_const] = ACTIONS(7299), - [anon_sym_constexpr] = ACTIONS(7299), - [anon_sym_volatile] = ACTIONS(7299), - [anon_sym_restrict] = ACTIONS(7299), - [anon_sym___restrict__] = ACTIONS(7299), - [anon_sym__Atomic] = ACTIONS(7299), - [anon_sym__Noreturn] = ACTIONS(7299), - [anon_sym_noreturn] = ACTIONS(7299), - [anon_sym__Nonnull] = ACTIONS(7299), - [anon_sym_mutable] = ACTIONS(7299), - [anon_sym_constinit] = ACTIONS(7299), - [anon_sym_consteval] = ACTIONS(7299), - [anon_sym_alignas] = ACTIONS(7299), - [anon_sym__Alignas] = ACTIONS(7299), - [sym_primitive_type] = ACTIONS(7299), - [anon_sym_QMARK] = ACTIONS(7301), - [anon_sym_LT_EQ_GT] = ACTIONS(7301), - [anon_sym_or] = ACTIONS(7299), - [anon_sym_and] = ACTIONS(7299), - [anon_sym_bitor] = ACTIONS(7299), - [anon_sym_xor] = ACTIONS(7299), - [anon_sym_bitand] = ACTIONS(7299), - [anon_sym_not_eq] = ACTIONS(7299), - [anon_sym_DASH_DASH] = ACTIONS(7301), - [anon_sym_PLUS_PLUS] = ACTIONS(7301), - [anon_sym_DOT] = ACTIONS(7299), - [anon_sym_DOT_STAR] = ACTIONS(7301), - [anon_sym_DASH_GT] = ACTIONS(7301), + [STATE(2776)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2784), + [sym_ms_pointer_modifier] = STATE(2853), + [sym__abstract_declarator] = STATE(6546), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3776), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2274), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3776), + [aux_sym_pointer_declarator_repeat1] = STATE(2853), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6861), + [anon_sym_STAR] = ACTIONS(8677), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6859), + [anon_sym_PIPE_PIPE] = ACTIONS(6859), + [anon_sym_AMP_AMP] = ACTIONS(8679), + [anon_sym_PIPE] = ACTIONS(6861), + [anon_sym_CARET] = ACTIONS(6859), + [anon_sym_AMP] = ACTIONS(8681), + [anon_sym_EQ_EQ] = ACTIONS(6859), + [anon_sym_BANG_EQ] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6861), + [anon_sym_GT_EQ] = ACTIONS(6859), + [anon_sym_LT_EQ] = ACTIONS(6861), + [anon_sym_LT] = ACTIONS(6861), + [anon_sym_LT_LT] = ACTIONS(6859), + [anon_sym_GT_GT] = ACTIONS(6859), + [anon_sym_SEMI] = ACTIONS(6859), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym___attribute__] = ACTIONS(6859), + [anon_sym___attribute] = ACTIONS(6861), + [sym_ms_restrict_modifier] = ACTIONS(8094), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8119), + [sym_ms_signed_ptr_modifier] = ACTIONS(8119), + [anon_sym__unaligned] = ACTIONS(8121), + [anon_sym___unaligned] = ACTIONS(8121), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(6859), + [anon_sym_LT_EQ_GT] = ACTIONS(6859), + [anon_sym_or] = ACTIONS(6859), + [anon_sym_and] = ACTIONS(6859), + [anon_sym_bitor] = ACTIONS(6859), + [anon_sym_xor] = ACTIONS(6859), + [anon_sym_bitand] = ACTIONS(6859), + [anon_sym_not_eq] = ACTIONS(6859), + [anon_sym_DASH_DASH] = ACTIONS(6859), + [anon_sym_PLUS_PLUS] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6861), + [anon_sym_DOT_STAR] = ACTIONS(6859), + [anon_sym_DASH_GT] = ACTIONS(6859), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7299), - [anon_sym_override] = ACTIONS(7299), - [anon_sym_requires] = ACTIONS(7299), - [anon_sym_COLON_RBRACK] = ACTIONS(7301), }, - [STATE(3136)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7327), - [anon_sym_COMMA] = ACTIONS(7327), - [anon_sym_LPAREN2] = ACTIONS(7327), - [anon_sym_DASH] = ACTIONS(7325), - [anon_sym_PLUS] = ACTIONS(7325), - [anon_sym_STAR] = ACTIONS(7325), - [anon_sym_SLASH] = ACTIONS(7325), - [anon_sym_PERCENT] = ACTIONS(7325), - [anon_sym_PIPE_PIPE] = ACTIONS(7327), - [anon_sym_AMP_AMP] = ACTIONS(7327), - [anon_sym_PIPE] = ACTIONS(7325), - [anon_sym_CARET] = ACTIONS(7325), - [anon_sym_AMP] = ACTIONS(7325), - [anon_sym_EQ_EQ] = ACTIONS(7327), - [anon_sym_BANG_EQ] = ACTIONS(7327), - [anon_sym_GT] = ACTIONS(7325), - [anon_sym_GT_EQ] = ACTIONS(7325), - [anon_sym_LT_EQ] = ACTIONS(7325), - [anon_sym_LT] = ACTIONS(7325), - [anon_sym_LT_LT] = ACTIONS(7325), - [anon_sym_GT_GT] = ACTIONS(7325), - [anon_sym___extension__] = ACTIONS(7327), - [anon_sym_LBRACE] = ACTIONS(7327), - [anon_sym_LBRACK] = ACTIONS(7327), - [anon_sym_EQ] = ACTIONS(7325), - [anon_sym_const] = ACTIONS(7325), - [anon_sym_constexpr] = ACTIONS(7327), - [anon_sym_volatile] = ACTIONS(7327), - [anon_sym_restrict] = ACTIONS(7327), - [anon_sym___restrict__] = ACTIONS(7327), - [anon_sym__Atomic] = ACTIONS(7327), - [anon_sym__Noreturn] = ACTIONS(7327), - [anon_sym_noreturn] = ACTIONS(7327), - [anon_sym__Nonnull] = ACTIONS(7327), - [anon_sym_mutable] = ACTIONS(7327), - [anon_sym_constinit] = ACTIONS(7327), - [anon_sym_consteval] = ACTIONS(7327), - [anon_sym_alignas] = ACTIONS(7327), - [anon_sym__Alignas] = ACTIONS(7327), - [anon_sym_QMARK] = ACTIONS(7327), - [anon_sym_STAR_EQ] = ACTIONS(7327), - [anon_sym_SLASH_EQ] = ACTIONS(7327), - [anon_sym_PERCENT_EQ] = ACTIONS(7327), - [anon_sym_PLUS_EQ] = ACTIONS(7327), - [anon_sym_DASH_EQ] = ACTIONS(7327), - [anon_sym_LT_LT_EQ] = ACTIONS(7327), - [anon_sym_GT_GT_EQ] = ACTIONS(7325), - [anon_sym_AMP_EQ] = ACTIONS(7327), - [anon_sym_CARET_EQ] = ACTIONS(7327), - [anon_sym_PIPE_EQ] = ACTIONS(7327), - [anon_sym_and_eq] = ACTIONS(7327), - [anon_sym_or_eq] = ACTIONS(7327), - [anon_sym_xor_eq] = ACTIONS(7327), - [anon_sym_LT_EQ_GT] = ACTIONS(7327), - [anon_sym_or] = ACTIONS(7325), - [anon_sym_and] = ACTIONS(7325), - [anon_sym_bitor] = ACTIONS(7327), - [anon_sym_xor] = ACTIONS(7325), - [anon_sym_bitand] = ACTIONS(7327), - [anon_sym_not_eq] = ACTIONS(7327), - [anon_sym_DASH_DASH] = ACTIONS(7327), - [anon_sym_PLUS_PLUS] = ACTIONS(7327), - [anon_sym_DOT] = ACTIONS(7325), - [anon_sym_DOT_STAR] = ACTIONS(7327), - [anon_sym_DASH_GT] = ACTIONS(7327), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7327), - [anon_sym_override] = ACTIONS(7327), - [anon_sym_GT2] = ACTIONS(7327), - [anon_sym_requires] = ACTIONS(7327), + [STATE(2777)] = { + [sym_identifier] = ACTIONS(8643), + [aux_sym_preproc_def_token1] = ACTIONS(8643), + [aux_sym_preproc_if_token1] = ACTIONS(8643), + [aux_sym_preproc_if_token2] = ACTIONS(8643), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8643), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8643), + [aux_sym_preproc_else_token1] = ACTIONS(8643), + [aux_sym_preproc_elif_token1] = ACTIONS(8643), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8643), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8643), + [sym_preproc_directive] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8645), + [anon_sym_TILDE] = ACTIONS(8645), + [anon_sym_STAR] = ACTIONS(8645), + [anon_sym_AMP_AMP] = ACTIONS(8645), + [anon_sym_AMP] = ACTIONS(8643), + [anon_sym_SEMI] = ACTIONS(8645), + [anon_sym___extension__] = ACTIONS(8643), + [anon_sym_typedef] = ACTIONS(8643), + [anon_sym_virtual] = ACTIONS(8643), + [anon_sym_extern] = ACTIONS(8643), + [anon_sym___attribute__] = ACTIONS(8643), + [anon_sym___attribute] = ACTIONS(8643), + [anon_sym_using] = ACTIONS(8643), + [anon_sym_COLON_COLON] = ACTIONS(8645), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8645), + [anon_sym___declspec] = ACTIONS(8643), + [anon_sym___based] = ACTIONS(8643), + [anon_sym_signed] = ACTIONS(8643), + [anon_sym_unsigned] = ACTIONS(8643), + [anon_sym_long] = ACTIONS(8643), + [anon_sym_short] = ACTIONS(8643), + [anon_sym_LBRACK] = ACTIONS(8643), + [anon_sym_static] = ACTIONS(8643), + [anon_sym_register] = ACTIONS(8643), + [anon_sym_inline] = ACTIONS(8643), + [anon_sym___inline] = ACTIONS(8643), + [anon_sym___inline__] = ACTIONS(8643), + [anon_sym___forceinline] = ACTIONS(8643), + [anon_sym_thread_local] = ACTIONS(8643), + [anon_sym___thread] = ACTIONS(8643), + [anon_sym_const] = ACTIONS(8643), + [anon_sym_constexpr] = ACTIONS(8643), + [anon_sym_volatile] = ACTIONS(8643), + [anon_sym_restrict] = ACTIONS(8643), + [anon_sym___restrict__] = ACTIONS(8643), + [anon_sym__Atomic] = ACTIONS(8643), + [anon_sym__Noreturn] = ACTIONS(8643), + [anon_sym_noreturn] = ACTIONS(8643), + [anon_sym__Nonnull] = ACTIONS(8643), + [anon_sym_mutable] = ACTIONS(8643), + [anon_sym_constinit] = ACTIONS(8643), + [anon_sym_consteval] = ACTIONS(8643), + [anon_sym_alignas] = ACTIONS(8643), + [anon_sym__Alignas] = ACTIONS(8643), + [sym_primitive_type] = ACTIONS(8643), + [anon_sym_enum] = ACTIONS(8643), + [anon_sym_class] = ACTIONS(8643), + [anon_sym_struct] = ACTIONS(8643), + [anon_sym_union] = ACTIONS(8643), + [anon_sym_typename] = ACTIONS(8643), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8643), + [anon_sym_decltype] = ACTIONS(8643), + [anon_sym_explicit] = ACTIONS(8643), + [anon_sym_private] = ACTIONS(8643), + [anon_sym_template] = ACTIONS(8643), + [anon_sym_operator] = ACTIONS(8643), + [anon_sym_friend] = ACTIONS(8643), + [anon_sym_public] = ACTIONS(8643), + [anon_sym_protected] = ACTIONS(8643), + [anon_sym_static_assert] = ACTIONS(8643), + [anon_sym_LBRACK_COLON] = ACTIONS(8645), }, - [STATE(3137)] = { - [sym_identifier] = ACTIONS(2803), - [aux_sym_preproc_def_token1] = ACTIONS(2803), - [anon_sym_COMMA] = ACTIONS(3888), - [aux_sym_preproc_if_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2803), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2803), - [sym_preproc_directive] = ACTIONS(2803), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(3888), - [anon_sym___extension__] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2803), - [anon_sym_virtual] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym___attribute__] = ACTIONS(8208), - [anon_sym___attribute] = ACTIONS(8208), - [anon_sym_using] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2801), - [anon_sym___declspec] = ACTIONS(2803), - [anon_sym___based] = ACTIONS(2803), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_signed] = ACTIONS(2803), - [anon_sym_unsigned] = ACTIONS(2803), - [anon_sym_long] = ACTIONS(2803), - [anon_sym_short] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_register] = ACTIONS(2803), - [anon_sym_inline] = ACTIONS(2803), - [anon_sym___inline] = ACTIONS(2803), - [anon_sym___inline__] = ACTIONS(2803), - [anon_sym___forceinline] = ACTIONS(2803), - [anon_sym_thread_local] = ACTIONS(2803), - [anon_sym___thread] = ACTIONS(2803), - [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__Nonnull] = ACTIONS(2803), - [anon_sym_mutable] = ACTIONS(2803), - [anon_sym_constinit] = ACTIONS(2803), - [anon_sym_consteval] = ACTIONS(2803), - [anon_sym_alignas] = ACTIONS(2803), - [anon_sym__Alignas] = ACTIONS(2803), - [sym_primitive_type] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_typename] = ACTIONS(2803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2803), - [anon_sym_decltype] = ACTIONS(2803), - [anon_sym_explicit] = ACTIONS(2803), - [anon_sym_private] = ACTIONS(2803), - [anon_sym_template] = ACTIONS(2803), - [anon_sym_operator] = ACTIONS(2803), - [anon_sym_friend] = ACTIONS(2803), - [anon_sym_public] = ACTIONS(2803), - [anon_sym_protected] = ACTIONS(2803), - [anon_sym_static_assert] = ACTIONS(2803), - [anon_sym_LBRACK_COLON] = ACTIONS(2801), + [STATE(2778)] = { + [sym_identifier] = ACTIONS(8683), + [aux_sym_preproc_def_token1] = ACTIONS(8683), + [aux_sym_preproc_if_token1] = ACTIONS(8683), + [aux_sym_preproc_if_token2] = ACTIONS(8683), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8683), + [aux_sym_preproc_else_token1] = ACTIONS(8683), + [aux_sym_preproc_elif_token1] = ACTIONS(8683), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8683), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8683), + [sym_preproc_directive] = ACTIONS(8683), + [anon_sym_LPAREN2] = ACTIONS(8685), + [anon_sym_TILDE] = ACTIONS(8685), + [anon_sym_STAR] = ACTIONS(8685), + [anon_sym_AMP_AMP] = ACTIONS(8685), + [anon_sym_AMP] = ACTIONS(8683), + [anon_sym_SEMI] = ACTIONS(8685), + [anon_sym___extension__] = ACTIONS(8683), + [anon_sym_typedef] = ACTIONS(8683), + [anon_sym_virtual] = ACTIONS(8683), + [anon_sym_extern] = ACTIONS(8683), + [anon_sym___attribute__] = ACTIONS(8683), + [anon_sym___attribute] = ACTIONS(8683), + [anon_sym_using] = ACTIONS(8683), + [anon_sym_COLON_COLON] = ACTIONS(8685), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8685), + [anon_sym___declspec] = ACTIONS(8683), + [anon_sym___based] = ACTIONS(8683), + [anon_sym_signed] = ACTIONS(8683), + [anon_sym_unsigned] = ACTIONS(8683), + [anon_sym_long] = ACTIONS(8683), + [anon_sym_short] = ACTIONS(8683), + [anon_sym_LBRACK] = ACTIONS(8683), + [anon_sym_static] = ACTIONS(8683), + [anon_sym_register] = ACTIONS(8683), + [anon_sym_inline] = ACTIONS(8683), + [anon_sym___inline] = ACTIONS(8683), + [anon_sym___inline__] = ACTIONS(8683), + [anon_sym___forceinline] = ACTIONS(8683), + [anon_sym_thread_local] = ACTIONS(8683), + [anon_sym___thread] = ACTIONS(8683), + [anon_sym_const] = ACTIONS(8683), + [anon_sym_constexpr] = ACTIONS(8683), + [anon_sym_volatile] = ACTIONS(8683), + [anon_sym_restrict] = ACTIONS(8683), + [anon_sym___restrict__] = ACTIONS(8683), + [anon_sym__Atomic] = ACTIONS(8683), + [anon_sym__Noreturn] = ACTIONS(8683), + [anon_sym_noreturn] = ACTIONS(8683), + [anon_sym__Nonnull] = ACTIONS(8683), + [anon_sym_mutable] = ACTIONS(8683), + [anon_sym_constinit] = ACTIONS(8683), + [anon_sym_consteval] = ACTIONS(8683), + [anon_sym_alignas] = ACTIONS(8683), + [anon_sym__Alignas] = ACTIONS(8683), + [sym_primitive_type] = ACTIONS(8683), + [anon_sym_enum] = ACTIONS(8683), + [anon_sym_class] = ACTIONS(8683), + [anon_sym_struct] = ACTIONS(8683), + [anon_sym_union] = ACTIONS(8683), + [anon_sym_typename] = ACTIONS(8683), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8683), + [anon_sym_decltype] = ACTIONS(8683), + [anon_sym_explicit] = ACTIONS(8683), + [anon_sym_private] = ACTIONS(8683), + [anon_sym_template] = ACTIONS(8683), + [anon_sym_operator] = ACTIONS(8683), + [anon_sym_friend] = ACTIONS(8683), + [anon_sym_public] = ACTIONS(8683), + [anon_sym_protected] = ACTIONS(8683), + [anon_sym_static_assert] = ACTIONS(8683), + [anon_sym_LBRACK_COLON] = ACTIONS(8685), }, - [STATE(3138)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), - [anon_sym_COMMA] = ACTIONS(7193), - [anon_sym_LPAREN2] = ACTIONS(7193), - [anon_sym_DASH] = ACTIONS(7191), - [anon_sym_PLUS] = ACTIONS(7191), - [anon_sym_STAR] = ACTIONS(7191), - [anon_sym_SLASH] = ACTIONS(7191), - [anon_sym_PERCENT] = ACTIONS(7191), - [anon_sym_PIPE_PIPE] = ACTIONS(7193), - [anon_sym_AMP_AMP] = ACTIONS(7193), - [anon_sym_PIPE] = ACTIONS(7191), - [anon_sym_CARET] = ACTIONS(7191), - [anon_sym_AMP] = ACTIONS(7191), - [anon_sym_EQ_EQ] = ACTIONS(7193), - [anon_sym_BANG_EQ] = ACTIONS(7193), - [anon_sym_GT] = ACTIONS(7191), - [anon_sym_GT_EQ] = ACTIONS(7191), - [anon_sym_LT_EQ] = ACTIONS(7191), - [anon_sym_LT] = ACTIONS(7191), - [anon_sym_LT_LT] = ACTIONS(7191), - [anon_sym_GT_GT] = ACTIONS(7191), - [anon_sym___extension__] = ACTIONS(7193), - [anon_sym_LBRACE] = ACTIONS(7193), - [anon_sym_LBRACK] = ACTIONS(7193), - [anon_sym_EQ] = ACTIONS(7191), - [anon_sym_const] = ACTIONS(7191), - [anon_sym_constexpr] = ACTIONS(7193), - [anon_sym_volatile] = ACTIONS(7193), - [anon_sym_restrict] = ACTIONS(7193), - [anon_sym___restrict__] = ACTIONS(7193), - [anon_sym__Atomic] = ACTIONS(7193), - [anon_sym__Noreturn] = ACTIONS(7193), - [anon_sym_noreturn] = ACTIONS(7193), - [anon_sym__Nonnull] = ACTIONS(7193), - [anon_sym_mutable] = ACTIONS(7193), - [anon_sym_constinit] = ACTIONS(7193), - [anon_sym_consteval] = ACTIONS(7193), - [anon_sym_alignas] = ACTIONS(7193), - [anon_sym__Alignas] = ACTIONS(7193), - [anon_sym_QMARK] = ACTIONS(7193), - [anon_sym_STAR_EQ] = ACTIONS(7193), - [anon_sym_SLASH_EQ] = ACTIONS(7193), - [anon_sym_PERCENT_EQ] = ACTIONS(7193), - [anon_sym_PLUS_EQ] = ACTIONS(7193), - [anon_sym_DASH_EQ] = ACTIONS(7193), - [anon_sym_LT_LT_EQ] = ACTIONS(7193), - [anon_sym_GT_GT_EQ] = ACTIONS(7191), - [anon_sym_AMP_EQ] = ACTIONS(7193), - [anon_sym_CARET_EQ] = ACTIONS(7193), - [anon_sym_PIPE_EQ] = ACTIONS(7193), - [anon_sym_and_eq] = ACTIONS(7193), - [anon_sym_or_eq] = ACTIONS(7193), - [anon_sym_xor_eq] = ACTIONS(7193), - [anon_sym_LT_EQ_GT] = ACTIONS(7193), - [anon_sym_or] = ACTIONS(7191), - [anon_sym_and] = ACTIONS(7191), - [anon_sym_bitor] = ACTIONS(7193), - [anon_sym_xor] = ACTIONS(7191), - [anon_sym_bitand] = ACTIONS(7193), - [anon_sym_not_eq] = ACTIONS(7193), - [anon_sym_DASH_DASH] = ACTIONS(7193), - [anon_sym_PLUS_PLUS] = ACTIONS(7193), - [anon_sym_DOT] = ACTIONS(7191), - [anon_sym_DOT_STAR] = ACTIONS(7193), - [anon_sym_DASH_GT] = ACTIONS(7193), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7193), - [anon_sym_override] = ACTIONS(7193), - [anon_sym_GT2] = ACTIONS(7193), - [anon_sym_requires] = ACTIONS(7193), + [STATE(2779)] = { + [sym_ms_based_modifier] = STATE(11008), + [sym_ms_unaligned_ptr_modifier] = STATE(6574), + [sym_ms_pointer_modifier] = STATE(6427), + [sym__declarator] = STATE(8808), + [sym__abstract_declarator] = STATE(9080), + [sym_parenthesized_declarator] = STATE(8555), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_function_declarator] = STATE(8555), + [sym_abstract_function_declarator] = STATE(8596), + [sym_array_declarator] = STATE(8555), + [sym_abstract_array_declarator] = STATE(8596), + [sym_type_qualifier] = STATE(3789), + [sym_alignas_qualifier] = STATE(7511), + [sym_parameter_list] = STATE(5340), + [sym_decltype] = STATE(10768), + [sym_reference_declarator] = STATE(8555), + [sym_abstract_reference_declarator] = STATE(8596), + [sym_structured_binding_declarator] = STATE(8555), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7993), + [sym_qualified_identifier] = STATE(8555), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__type_definition_type_repeat1] = STATE(3789), + [aux_sym_pointer_declarator_repeat1] = STATE(6427), + [sym_identifier] = ACTIONS(8228), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(8669), + [anon_sym_AMP_AMP] = ACTIONS(8671), + [anon_sym_AMP] = ACTIONS(8673), + [anon_sym___extension__] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(6821), + [anon_sym___attribute] = ACTIONS(6821), + [anon_sym_COLON_COLON] = ACTIONS(8675), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3266), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3266), + [sym_ms_signed_ptr_modifier] = ACTIONS(3266), + [anon_sym__unaligned] = ACTIONS(3268), + [anon_sym___unaligned] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(5627), + [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__Nonnull] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), }, - [STATE(3139)] = { + [STATE(2780)] = { + [sym_identifier] = ACTIONS(8687), + [aux_sym_preproc_def_token1] = ACTIONS(8687), + [aux_sym_preproc_if_token1] = ACTIONS(8687), + [aux_sym_preproc_if_token2] = ACTIONS(8687), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8687), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8687), + [aux_sym_preproc_else_token1] = ACTIONS(8687), + [aux_sym_preproc_elif_token1] = ACTIONS(8687), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8687), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8687), + [sym_preproc_directive] = ACTIONS(8687), + [anon_sym_LPAREN2] = ACTIONS(8689), + [anon_sym_TILDE] = ACTIONS(8689), + [anon_sym_STAR] = ACTIONS(8689), + [anon_sym_AMP_AMP] = ACTIONS(8689), + [anon_sym_AMP] = ACTIONS(8687), + [anon_sym_SEMI] = ACTIONS(8689), + [anon_sym___extension__] = ACTIONS(8687), + [anon_sym_typedef] = ACTIONS(8687), + [anon_sym_virtual] = ACTIONS(8687), + [anon_sym_extern] = ACTIONS(8687), + [anon_sym___attribute__] = ACTIONS(8687), + [anon_sym___attribute] = ACTIONS(8687), + [anon_sym_using] = ACTIONS(8687), + [anon_sym_COLON_COLON] = ACTIONS(8689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8689), + [anon_sym___declspec] = ACTIONS(8687), + [anon_sym___based] = ACTIONS(8687), + [anon_sym_signed] = ACTIONS(8687), + [anon_sym_unsigned] = ACTIONS(8687), + [anon_sym_long] = ACTIONS(8687), + [anon_sym_short] = ACTIONS(8687), + [anon_sym_LBRACK] = ACTIONS(8687), + [anon_sym_static] = ACTIONS(8687), + [anon_sym_register] = ACTIONS(8687), + [anon_sym_inline] = ACTIONS(8687), + [anon_sym___inline] = ACTIONS(8687), + [anon_sym___inline__] = ACTIONS(8687), + [anon_sym___forceinline] = ACTIONS(8687), + [anon_sym_thread_local] = ACTIONS(8687), + [anon_sym___thread] = ACTIONS(8687), + [anon_sym_const] = ACTIONS(8687), + [anon_sym_constexpr] = ACTIONS(8687), + [anon_sym_volatile] = ACTIONS(8687), + [anon_sym_restrict] = ACTIONS(8687), + [anon_sym___restrict__] = ACTIONS(8687), + [anon_sym__Atomic] = ACTIONS(8687), + [anon_sym__Noreturn] = ACTIONS(8687), + [anon_sym_noreturn] = ACTIONS(8687), + [anon_sym__Nonnull] = ACTIONS(8687), + [anon_sym_mutable] = ACTIONS(8687), + [anon_sym_constinit] = ACTIONS(8687), + [anon_sym_consteval] = ACTIONS(8687), + [anon_sym_alignas] = ACTIONS(8687), + [anon_sym__Alignas] = ACTIONS(8687), + [sym_primitive_type] = ACTIONS(8687), + [anon_sym_enum] = ACTIONS(8687), + [anon_sym_class] = ACTIONS(8687), + [anon_sym_struct] = ACTIONS(8687), + [anon_sym_union] = ACTIONS(8687), + [anon_sym_typename] = ACTIONS(8687), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8687), + [anon_sym_decltype] = ACTIONS(8687), + [anon_sym_explicit] = ACTIONS(8687), + [anon_sym_private] = ACTIONS(8687), + [anon_sym_template] = ACTIONS(8687), + [anon_sym_operator] = ACTIONS(8687), + [anon_sym_friend] = ACTIONS(8687), + [anon_sym_public] = ACTIONS(8687), + [anon_sym_protected] = ACTIONS(8687), + [anon_sym_static_assert] = ACTIONS(8687), + [anon_sym_LBRACK_COLON] = ACTIONS(8689), + }, + [STATE(2781)] = { + [sym_decltype_auto] = STATE(3095), [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), [anon_sym_COMMA] = ACTIONS(7225), [anon_sym_LPAREN2] = ACTIONS(7225), @@ -390282,3783 +377508,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7225), [anon_sym_DASH_GT] = ACTIONS(7225), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8631), + [anon_sym_decltype] = ACTIONS(7038), [anon_sym_final] = ACTIONS(7225), [anon_sym_override] = ACTIONS(7225), [anon_sym_GT2] = ACTIONS(7225), [anon_sym_requires] = ACTIONS(7225), }, - [STATE(3140)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6798), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6798), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_and_eq] = ACTIONS(6800), - [anon_sym_or_eq] = ACTIONS(6800), - [anon_sym_xor_eq] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6800), - [anon_sym_override] = ACTIONS(6800), - [anon_sym_GT2] = ACTIONS(6800), - [anon_sym_requires] = ACTIONS(6800), - }, - [STATE(3141)] = { - [sym_attribute_declaration] = STATE(3105), - [aux_sym_attributed_declarator_repeat1] = STATE(3105), - [sym_identifier] = ACTIONS(8512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8514), - [anon_sym_COMMA] = ACTIONS(8514), - [anon_sym_RPAREN] = ACTIONS(8514), - [aux_sym_preproc_if_token2] = ACTIONS(8514), - [aux_sym_preproc_else_token1] = ACTIONS(8514), - [aux_sym_preproc_elif_token1] = ACTIONS(8512), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8514), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8514), - [anon_sym_LPAREN2] = ACTIONS(8514), - [anon_sym_DASH] = ACTIONS(8512), - [anon_sym_PLUS] = ACTIONS(8512), - [anon_sym_STAR] = ACTIONS(8512), - [anon_sym_SLASH] = ACTIONS(8512), - [anon_sym_PERCENT] = ACTIONS(8512), - [anon_sym_PIPE_PIPE] = ACTIONS(8514), - [anon_sym_AMP_AMP] = ACTIONS(8514), - [anon_sym_PIPE] = ACTIONS(8512), - [anon_sym_CARET] = ACTIONS(8512), - [anon_sym_AMP] = ACTIONS(8512), - [anon_sym_EQ_EQ] = ACTIONS(8514), - [anon_sym_BANG_EQ] = ACTIONS(8514), - [anon_sym_GT] = ACTIONS(8512), - [anon_sym_GT_EQ] = ACTIONS(8514), - [anon_sym_LT_EQ] = ACTIONS(8512), - [anon_sym_LT] = ACTIONS(8512), - [anon_sym_LT_LT] = ACTIONS(8512), - [anon_sym_GT_GT] = ACTIONS(8512), - [anon_sym_SEMI] = ACTIONS(8514), - [anon_sym___attribute__] = ACTIONS(8512), - [anon_sym___attribute] = ACTIONS(8512), - [anon_sym_COLON] = ACTIONS(8512), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8514), - [anon_sym_RBRACE] = ACTIONS(8514), - [anon_sym_LBRACK] = ACTIONS(8512), - [anon_sym_EQ] = ACTIONS(8512), - [anon_sym_QMARK] = ACTIONS(8514), - [anon_sym_STAR_EQ] = ACTIONS(8514), - [anon_sym_SLASH_EQ] = ACTIONS(8514), - [anon_sym_PERCENT_EQ] = ACTIONS(8514), - [anon_sym_PLUS_EQ] = ACTIONS(8514), - [anon_sym_DASH_EQ] = ACTIONS(8514), - [anon_sym_LT_LT_EQ] = ACTIONS(8514), - [anon_sym_GT_GT_EQ] = ACTIONS(8514), - [anon_sym_AMP_EQ] = ACTIONS(8514), - [anon_sym_CARET_EQ] = ACTIONS(8514), - [anon_sym_PIPE_EQ] = ACTIONS(8514), - [anon_sym_and_eq] = ACTIONS(8512), - [anon_sym_or_eq] = ACTIONS(8512), - [anon_sym_xor_eq] = ACTIONS(8512), - [anon_sym_LT_EQ_GT] = ACTIONS(8514), - [anon_sym_or] = ACTIONS(8512), - [anon_sym_and] = ACTIONS(8512), - [anon_sym_bitor] = ACTIONS(8512), - [anon_sym_xor] = ACTIONS(8512), - [anon_sym_bitand] = ACTIONS(8512), - [anon_sym_not_eq] = ACTIONS(8512), - [anon_sym_DASH_DASH] = ACTIONS(8514), - [anon_sym_PLUS_PLUS] = ACTIONS(8514), - [anon_sym_DOT] = ACTIONS(8512), - [anon_sym_DOT_STAR] = ACTIONS(8514), - [anon_sym_DASH_GT] = ACTIONS(8514), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8512), - [anon_sym_override] = ACTIONS(8512), - [anon_sym_requires] = ACTIONS(8512), - [anon_sym_COLON_RBRACK] = ACTIONS(8514), - }, - [STATE(3142)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7357), - [anon_sym_COMMA] = ACTIONS(7357), - [anon_sym_LPAREN2] = ACTIONS(7357), - [anon_sym_DASH] = ACTIONS(7355), - [anon_sym_PLUS] = ACTIONS(7355), - [anon_sym_STAR] = ACTIONS(7355), - [anon_sym_SLASH] = ACTIONS(7355), - [anon_sym_PERCENT] = ACTIONS(7355), - [anon_sym_PIPE_PIPE] = ACTIONS(7357), - [anon_sym_AMP_AMP] = ACTIONS(7357), - [anon_sym_PIPE] = ACTIONS(7355), - [anon_sym_CARET] = ACTIONS(7355), - [anon_sym_AMP] = ACTIONS(7355), - [anon_sym_EQ_EQ] = ACTIONS(7357), - [anon_sym_BANG_EQ] = ACTIONS(7357), - [anon_sym_GT] = ACTIONS(7355), - [anon_sym_GT_EQ] = ACTIONS(7357), - [anon_sym_LT_EQ] = ACTIONS(7355), - [anon_sym_LT] = ACTIONS(7355), - [anon_sym_LT_LT] = ACTIONS(7355), - [anon_sym_GT_GT] = ACTIONS(7355), - [anon_sym___extension__] = ACTIONS(7357), - [anon_sym_LBRACE] = ACTIONS(7357), - [anon_sym_LBRACK] = ACTIONS(7357), - [anon_sym_RBRACK] = ACTIONS(7357), - [anon_sym_EQ] = ACTIONS(7355), - [anon_sym_const] = ACTIONS(7355), - [anon_sym_constexpr] = ACTIONS(7357), - [anon_sym_volatile] = ACTIONS(7357), - [anon_sym_restrict] = ACTIONS(7357), - [anon_sym___restrict__] = ACTIONS(7357), - [anon_sym__Atomic] = ACTIONS(7357), - [anon_sym__Noreturn] = ACTIONS(7357), - [anon_sym_noreturn] = ACTIONS(7357), - [anon_sym__Nonnull] = ACTIONS(7357), - [anon_sym_mutable] = ACTIONS(7357), - [anon_sym_constinit] = ACTIONS(7357), - [anon_sym_consteval] = ACTIONS(7357), - [anon_sym_alignas] = ACTIONS(7357), - [anon_sym__Alignas] = ACTIONS(7357), - [anon_sym_QMARK] = ACTIONS(7357), - [anon_sym_STAR_EQ] = ACTIONS(7357), - [anon_sym_SLASH_EQ] = ACTIONS(7357), - [anon_sym_PERCENT_EQ] = ACTIONS(7357), - [anon_sym_PLUS_EQ] = ACTIONS(7357), - [anon_sym_DASH_EQ] = ACTIONS(7357), - [anon_sym_LT_LT_EQ] = ACTIONS(7357), - [anon_sym_GT_GT_EQ] = ACTIONS(7357), - [anon_sym_AMP_EQ] = ACTIONS(7357), - [anon_sym_CARET_EQ] = ACTIONS(7357), - [anon_sym_PIPE_EQ] = ACTIONS(7357), - [anon_sym_and_eq] = ACTIONS(7357), - [anon_sym_or_eq] = ACTIONS(7357), - [anon_sym_xor_eq] = ACTIONS(7357), - [anon_sym_LT_EQ_GT] = ACTIONS(7357), - [anon_sym_or] = ACTIONS(7355), - [anon_sym_and] = ACTIONS(7355), - [anon_sym_bitor] = ACTIONS(7357), - [anon_sym_xor] = ACTIONS(7355), - [anon_sym_bitand] = ACTIONS(7357), - [anon_sym_not_eq] = ACTIONS(7357), - [anon_sym_DASH_DASH] = ACTIONS(7357), - [anon_sym_PLUS_PLUS] = ACTIONS(7357), - [anon_sym_DOT] = ACTIONS(7355), - [anon_sym_DOT_STAR] = ACTIONS(7357), - [anon_sym_DASH_GT] = ACTIONS(7357), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7357), - [anon_sym_override] = ACTIONS(7357), - [anon_sym_requires] = ACTIONS(7357), - }, - [STATE(3143)] = { - [sym_identifier] = ACTIONS(3636), - [aux_sym_preproc_def_token1] = ACTIONS(3636), - [aux_sym_preproc_if_token1] = ACTIONS(3636), - [aux_sym_preproc_if_token2] = ACTIONS(3636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3636), - [sym_preproc_directive] = ACTIONS(3636), - [anon_sym_LPAREN2] = ACTIONS(3638), - [anon_sym_TILDE] = ACTIONS(3638), - [anon_sym_STAR] = ACTIONS(3638), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym___extension__] = ACTIONS(3636), - [anon_sym_typedef] = ACTIONS(3636), - [anon_sym_virtual] = ACTIONS(3636), - [anon_sym_extern] = ACTIONS(3636), - [anon_sym___attribute__] = ACTIONS(3636), - [anon_sym___attribute] = ACTIONS(3636), - [anon_sym_using] = ACTIONS(3636), - [anon_sym_COLON_COLON] = ACTIONS(3638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3638), - [anon_sym___declspec] = ACTIONS(3636), - [anon_sym___based] = ACTIONS(3636), - [anon_sym_signed] = ACTIONS(3636), - [anon_sym_unsigned] = ACTIONS(3636), - [anon_sym_long] = ACTIONS(3636), - [anon_sym_short] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_static] = ACTIONS(3636), - [anon_sym_register] = ACTIONS(3636), - [anon_sym_inline] = ACTIONS(3636), - [anon_sym___inline] = ACTIONS(3636), - [anon_sym___inline__] = ACTIONS(3636), - [anon_sym___forceinline] = ACTIONS(3636), - [anon_sym_thread_local] = ACTIONS(3636), - [anon_sym___thread] = ACTIONS(3636), - [anon_sym_const] = ACTIONS(3636), - [anon_sym_constexpr] = ACTIONS(3636), - [anon_sym_volatile] = ACTIONS(3636), - [anon_sym_restrict] = ACTIONS(3636), - [anon_sym___restrict__] = ACTIONS(3636), - [anon_sym__Atomic] = ACTIONS(3636), - [anon_sym__Noreturn] = ACTIONS(3636), - [anon_sym_noreturn] = ACTIONS(3636), - [anon_sym__Nonnull] = ACTIONS(3636), - [anon_sym_mutable] = ACTIONS(3636), - [anon_sym_constinit] = ACTIONS(3636), - [anon_sym_consteval] = ACTIONS(3636), - [anon_sym_alignas] = ACTIONS(3636), - [anon_sym__Alignas] = ACTIONS(3636), - [sym_primitive_type] = ACTIONS(3636), - [anon_sym_enum] = ACTIONS(3636), - [anon_sym_class] = ACTIONS(3636), - [anon_sym_struct] = ACTIONS(3636), - [anon_sym_union] = ACTIONS(3636), - [anon_sym_typename] = ACTIONS(3636), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3636), - [anon_sym_decltype] = ACTIONS(3636), - [anon_sym_explicit] = ACTIONS(3636), - [anon_sym_private] = ACTIONS(3636), - [anon_sym_template] = ACTIONS(3636), - [anon_sym_operator] = ACTIONS(3636), - [anon_sym_friend] = ACTIONS(3636), - [anon_sym_public] = ACTIONS(3636), - [anon_sym_protected] = ACTIONS(3636), - [anon_sym_static_assert] = ACTIONS(3636), - [anon_sym_LBRACK_COLON] = ACTIONS(3638), - }, - [STATE(3144)] = { - [sym_identifier] = ACTIONS(8412), - [aux_sym_preproc_def_token1] = ACTIONS(8412), - [aux_sym_preproc_if_token1] = ACTIONS(8412), - [aux_sym_preproc_if_token2] = ACTIONS(8412), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8412), - [sym_preproc_directive] = ACTIONS(8412), - [anon_sym_LPAREN2] = ACTIONS(8414), - [anon_sym_TILDE] = ACTIONS(8414), - [anon_sym_STAR] = ACTIONS(8414), - [anon_sym_AMP_AMP] = ACTIONS(8414), - [anon_sym_AMP] = ACTIONS(8412), - [anon_sym_SEMI] = ACTIONS(8414), - [anon_sym___extension__] = ACTIONS(8412), - [anon_sym_typedef] = ACTIONS(8412), - [anon_sym_virtual] = ACTIONS(8412), - [anon_sym_extern] = ACTIONS(8412), - [anon_sym___attribute__] = ACTIONS(8412), - [anon_sym___attribute] = ACTIONS(8412), - [anon_sym_using] = ACTIONS(8412), - [anon_sym_COLON_COLON] = ACTIONS(8414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8414), - [anon_sym___declspec] = ACTIONS(8412), - [anon_sym___based] = ACTIONS(8412), - [anon_sym_signed] = ACTIONS(8412), - [anon_sym_unsigned] = ACTIONS(8412), - [anon_sym_long] = ACTIONS(8412), - [anon_sym_short] = ACTIONS(8412), - [anon_sym_LBRACK] = ACTIONS(8412), - [anon_sym_static] = ACTIONS(8412), - [anon_sym_register] = ACTIONS(8412), - [anon_sym_inline] = ACTIONS(8412), - [anon_sym___inline] = ACTIONS(8412), - [anon_sym___inline__] = ACTIONS(8412), - [anon_sym___forceinline] = ACTIONS(8412), - [anon_sym_thread_local] = ACTIONS(8412), - [anon_sym___thread] = ACTIONS(8412), - [anon_sym_const] = ACTIONS(8412), - [anon_sym_constexpr] = ACTIONS(8412), - [anon_sym_volatile] = ACTIONS(8412), - [anon_sym_restrict] = ACTIONS(8412), - [anon_sym___restrict__] = ACTIONS(8412), - [anon_sym__Atomic] = ACTIONS(8412), - [anon_sym__Noreturn] = ACTIONS(8412), - [anon_sym_noreturn] = ACTIONS(8412), - [anon_sym__Nonnull] = ACTIONS(8412), - [anon_sym_mutable] = ACTIONS(8412), - [anon_sym_constinit] = ACTIONS(8412), - [anon_sym_consteval] = ACTIONS(8412), - [anon_sym_alignas] = ACTIONS(8412), - [anon_sym__Alignas] = ACTIONS(8412), - [sym_primitive_type] = ACTIONS(8412), - [anon_sym_enum] = ACTIONS(8412), - [anon_sym_class] = ACTIONS(8412), - [anon_sym_struct] = ACTIONS(8412), - [anon_sym_union] = ACTIONS(8412), - [anon_sym_typename] = ACTIONS(8412), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8412), - [anon_sym_decltype] = ACTIONS(8412), - [anon_sym_explicit] = ACTIONS(8412), - [anon_sym_private] = ACTIONS(8412), - [anon_sym_template] = ACTIONS(8412), - [anon_sym_operator] = ACTIONS(8412), - [anon_sym_friend] = ACTIONS(8412), - [anon_sym_public] = ACTIONS(8412), - [anon_sym_protected] = ACTIONS(8412), - [anon_sym_static_assert] = ACTIONS(8412), - [anon_sym_LBRACK_COLON] = ACTIONS(8414), - }, - [STATE(3145)] = { - [sym_identifier] = ACTIONS(8420), - [aux_sym_preproc_def_token1] = ACTIONS(8420), - [aux_sym_preproc_if_token1] = ACTIONS(8420), - [aux_sym_preproc_if_token2] = ACTIONS(8420), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8420), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8420), - [sym_preproc_directive] = ACTIONS(8420), - [anon_sym_LPAREN2] = ACTIONS(8422), - [anon_sym_TILDE] = ACTIONS(8422), - [anon_sym_STAR] = ACTIONS(8422), - [anon_sym_AMP_AMP] = ACTIONS(8422), - [anon_sym_AMP] = ACTIONS(8420), - [anon_sym_SEMI] = ACTIONS(8422), - [anon_sym___extension__] = ACTIONS(8420), - [anon_sym_typedef] = ACTIONS(8420), - [anon_sym_virtual] = ACTIONS(8420), - [anon_sym_extern] = ACTIONS(8420), - [anon_sym___attribute__] = ACTIONS(8420), - [anon_sym___attribute] = ACTIONS(8420), - [anon_sym_using] = ACTIONS(8420), - [anon_sym_COLON_COLON] = ACTIONS(8422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8422), - [anon_sym___declspec] = ACTIONS(8420), - [anon_sym___based] = ACTIONS(8420), - [anon_sym_signed] = ACTIONS(8420), - [anon_sym_unsigned] = ACTIONS(8420), - [anon_sym_long] = ACTIONS(8420), - [anon_sym_short] = ACTIONS(8420), - [anon_sym_LBRACK] = ACTIONS(8420), - [anon_sym_static] = ACTIONS(8420), - [anon_sym_register] = ACTIONS(8420), - [anon_sym_inline] = ACTIONS(8420), - [anon_sym___inline] = ACTIONS(8420), - [anon_sym___inline__] = ACTIONS(8420), - [anon_sym___forceinline] = ACTIONS(8420), - [anon_sym_thread_local] = ACTIONS(8420), - [anon_sym___thread] = ACTIONS(8420), - [anon_sym_const] = ACTIONS(8420), - [anon_sym_constexpr] = ACTIONS(8420), - [anon_sym_volatile] = ACTIONS(8420), - [anon_sym_restrict] = ACTIONS(8420), - [anon_sym___restrict__] = ACTIONS(8420), - [anon_sym__Atomic] = ACTIONS(8420), - [anon_sym__Noreturn] = ACTIONS(8420), - [anon_sym_noreturn] = ACTIONS(8420), - [anon_sym__Nonnull] = ACTIONS(8420), - [anon_sym_mutable] = ACTIONS(8420), - [anon_sym_constinit] = ACTIONS(8420), - [anon_sym_consteval] = ACTIONS(8420), - [anon_sym_alignas] = ACTIONS(8420), - [anon_sym__Alignas] = ACTIONS(8420), - [sym_primitive_type] = ACTIONS(8420), - [anon_sym_enum] = ACTIONS(8420), - [anon_sym_class] = ACTIONS(8420), - [anon_sym_struct] = ACTIONS(8420), - [anon_sym_union] = ACTIONS(8420), - [anon_sym_typename] = ACTIONS(8420), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8420), - [anon_sym_decltype] = ACTIONS(8420), - [anon_sym_explicit] = ACTIONS(8420), - [anon_sym_private] = ACTIONS(8420), - [anon_sym_template] = ACTIONS(8420), - [anon_sym_operator] = ACTIONS(8420), - [anon_sym_friend] = ACTIONS(8420), - [anon_sym_public] = ACTIONS(8420), - [anon_sym_protected] = ACTIONS(8420), - [anon_sym_static_assert] = ACTIONS(8420), - [anon_sym_LBRACK_COLON] = ACTIONS(8422), - }, - [STATE(3146)] = { - [sym_identifier] = ACTIONS(3998), - [aux_sym_preproc_def_token1] = ACTIONS(3998), - [aux_sym_preproc_if_token1] = ACTIONS(3998), - [aux_sym_preproc_if_token2] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), - [sym_preproc_directive] = ACTIONS(3998), - [anon_sym_LPAREN2] = ACTIONS(4000), - [anon_sym_TILDE] = ACTIONS(4000), - [anon_sym_STAR] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym___extension__] = ACTIONS(3998), - [anon_sym_typedef] = ACTIONS(3998), - [anon_sym_virtual] = ACTIONS(3998), - [anon_sym_extern] = ACTIONS(3998), - [anon_sym___attribute__] = ACTIONS(3998), - [anon_sym___attribute] = ACTIONS(3998), - [anon_sym_using] = ACTIONS(3998), - [anon_sym_COLON_COLON] = ACTIONS(4000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), - [anon_sym___declspec] = ACTIONS(3998), - [anon_sym___based] = ACTIONS(3998), - [anon_sym_signed] = ACTIONS(3998), - [anon_sym_unsigned] = ACTIONS(3998), - [anon_sym_long] = ACTIONS(3998), - [anon_sym_short] = ACTIONS(3998), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_static] = ACTIONS(3998), - [anon_sym_register] = ACTIONS(3998), - [anon_sym_inline] = ACTIONS(3998), - [anon_sym___inline] = ACTIONS(3998), - [anon_sym___inline__] = ACTIONS(3998), - [anon_sym___forceinline] = ACTIONS(3998), - [anon_sym_thread_local] = ACTIONS(3998), - [anon_sym___thread] = ACTIONS(3998), - [anon_sym_const] = ACTIONS(3998), - [anon_sym_constexpr] = ACTIONS(3998), - [anon_sym_volatile] = ACTIONS(3998), - [anon_sym_restrict] = ACTIONS(3998), - [anon_sym___restrict__] = ACTIONS(3998), - [anon_sym__Atomic] = ACTIONS(3998), - [anon_sym__Noreturn] = ACTIONS(3998), - [anon_sym_noreturn] = ACTIONS(3998), - [anon_sym__Nonnull] = ACTIONS(3998), - [anon_sym_mutable] = ACTIONS(3998), - [anon_sym_constinit] = ACTIONS(3998), - [anon_sym_consteval] = ACTIONS(3998), - [anon_sym_alignas] = ACTIONS(3998), - [anon_sym__Alignas] = ACTIONS(3998), - [sym_primitive_type] = ACTIONS(3998), - [anon_sym_enum] = ACTIONS(3998), - [anon_sym_class] = ACTIONS(3998), - [anon_sym_struct] = ACTIONS(3998), - [anon_sym_union] = ACTIONS(3998), - [anon_sym_typename] = ACTIONS(3998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3998), - [anon_sym_decltype] = ACTIONS(3998), - [anon_sym_explicit] = ACTIONS(3998), - [anon_sym_private] = ACTIONS(3998), - [anon_sym_template] = ACTIONS(3998), - [anon_sym_operator] = ACTIONS(3998), - [anon_sym_friend] = ACTIONS(3998), - [anon_sym_public] = ACTIONS(3998), - [anon_sym_protected] = ACTIONS(3998), - [anon_sym_static_assert] = ACTIONS(3998), - [anon_sym_LBRACK_COLON] = ACTIONS(4000), + [STATE(2782)] = { + [sym_template_argument_list] = STATE(2648), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5657), + [anon_sym_COMMA] = ACTIONS(5657), + [anon_sym_RPAREN] = ACTIONS(5657), + [anon_sym_LPAREN2] = ACTIONS(5657), + [anon_sym_DASH] = ACTIONS(7371), + [anon_sym_PLUS] = ACTIONS(7371), + [anon_sym_STAR] = ACTIONS(7371), + [anon_sym_SLASH] = ACTIONS(7371), + [anon_sym_PERCENT] = ACTIONS(7371), + [anon_sym_PIPE_PIPE] = ACTIONS(5657), + [anon_sym_AMP_AMP] = ACTIONS(5657), + [anon_sym_PIPE] = ACTIONS(7371), + [anon_sym_CARET] = ACTIONS(7371), + [anon_sym_AMP] = ACTIONS(7371), + [anon_sym_EQ_EQ] = ACTIONS(5657), + [anon_sym_BANG_EQ] = ACTIONS(5657), + [anon_sym_GT] = ACTIONS(7371), + [anon_sym_GT_EQ] = ACTIONS(5657), + [anon_sym_LT_EQ] = ACTIONS(7371), + [anon_sym_LT] = ACTIONS(8198), + [anon_sym_LT_LT] = ACTIONS(7371), + [anon_sym_GT_GT] = ACTIONS(7371), + [anon_sym___extension__] = ACTIONS(5657), + [anon_sym___attribute__] = ACTIONS(5657), + [anon_sym___attribute] = ACTIONS(7371), + [anon_sym_COLON] = ACTIONS(7371), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5657), + [anon_sym_EQ] = ACTIONS(7371), + [anon_sym_const] = ACTIONS(7371), + [anon_sym_constexpr] = ACTIONS(5657), + [anon_sym_volatile] = ACTIONS(5657), + [anon_sym_restrict] = ACTIONS(5657), + [anon_sym___restrict__] = ACTIONS(5657), + [anon_sym__Atomic] = ACTIONS(5657), + [anon_sym__Noreturn] = ACTIONS(5657), + [anon_sym_noreturn] = ACTIONS(5657), + [anon_sym__Nonnull] = ACTIONS(5657), + [anon_sym_mutable] = ACTIONS(5657), + [anon_sym_constinit] = ACTIONS(5657), + [anon_sym_consteval] = ACTIONS(5657), + [anon_sym_alignas] = ACTIONS(5657), + [anon_sym__Alignas] = ACTIONS(5657), + [anon_sym_QMARK] = ACTIONS(5657), + [anon_sym_STAR_EQ] = ACTIONS(5657), + [anon_sym_SLASH_EQ] = ACTIONS(5657), + [anon_sym_PERCENT_EQ] = ACTIONS(5657), + [anon_sym_PLUS_EQ] = ACTIONS(5657), + [anon_sym_DASH_EQ] = ACTIONS(5657), + [anon_sym_LT_LT_EQ] = ACTIONS(5657), + [anon_sym_GT_GT_EQ] = ACTIONS(5657), + [anon_sym_AMP_EQ] = ACTIONS(5657), + [anon_sym_CARET_EQ] = ACTIONS(5657), + [anon_sym_PIPE_EQ] = ACTIONS(5657), + [anon_sym_LT_EQ_GT] = ACTIONS(5657), + [anon_sym_or] = ACTIONS(5657), + [anon_sym_and] = ACTIONS(5657), + [anon_sym_bitor] = ACTIONS(5657), + [anon_sym_xor] = ACTIONS(5657), + [anon_sym_bitand] = ACTIONS(5657), + [anon_sym_not_eq] = ACTIONS(5657), + [anon_sym_DASH_DASH] = ACTIONS(5657), + [anon_sym_PLUS_PLUS] = ACTIONS(5657), + [anon_sym_DOT] = ACTIONS(7371), + [anon_sym_DOT_STAR] = ACTIONS(5657), + [anon_sym_DASH_GT] = ACTIONS(7371), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(5657), + [anon_sym_override] = ACTIONS(5657), + [anon_sym_requires] = ACTIONS(5657), + [anon_sym_DASH_GT_STAR] = ACTIONS(5657), }, - [STATE(3147)] = { - [sym_identifier] = ACTIONS(8313), - [aux_sym_preproc_def_token1] = ACTIONS(8313), - [aux_sym_preproc_if_token1] = ACTIONS(8313), - [aux_sym_preproc_if_token2] = ACTIONS(8313), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8313), - [sym_preproc_directive] = ACTIONS(8313), - [anon_sym_LPAREN2] = ACTIONS(8315), - [anon_sym_TILDE] = ACTIONS(8315), - [anon_sym_STAR] = ACTIONS(8315), - [anon_sym_AMP_AMP] = ACTIONS(8315), - [anon_sym_AMP] = ACTIONS(8313), - [anon_sym_SEMI] = ACTIONS(8315), - [anon_sym___extension__] = ACTIONS(8313), - [anon_sym_typedef] = ACTIONS(8313), - [anon_sym_virtual] = ACTIONS(8313), - [anon_sym_extern] = ACTIONS(8313), - [anon_sym___attribute__] = ACTIONS(8313), - [anon_sym___attribute] = ACTIONS(8313), - [anon_sym_using] = ACTIONS(8313), - [anon_sym_COLON_COLON] = ACTIONS(8315), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8315), - [anon_sym___declspec] = ACTIONS(8313), - [anon_sym___based] = ACTIONS(8313), - [anon_sym_signed] = ACTIONS(8313), - [anon_sym_unsigned] = ACTIONS(8313), - [anon_sym_long] = ACTIONS(8313), - [anon_sym_short] = ACTIONS(8313), - [anon_sym_LBRACK] = ACTIONS(8313), - [anon_sym_static] = ACTIONS(8313), - [anon_sym_register] = ACTIONS(8313), - [anon_sym_inline] = ACTIONS(8313), - [anon_sym___inline] = ACTIONS(8313), - [anon_sym___inline__] = ACTIONS(8313), - [anon_sym___forceinline] = ACTIONS(8313), - [anon_sym_thread_local] = ACTIONS(8313), - [anon_sym___thread] = ACTIONS(8313), - [anon_sym_const] = ACTIONS(8313), - [anon_sym_constexpr] = ACTIONS(8313), - [anon_sym_volatile] = ACTIONS(8313), - [anon_sym_restrict] = ACTIONS(8313), - [anon_sym___restrict__] = ACTIONS(8313), - [anon_sym__Atomic] = ACTIONS(8313), - [anon_sym__Noreturn] = ACTIONS(8313), - [anon_sym_noreturn] = ACTIONS(8313), - [anon_sym__Nonnull] = ACTIONS(8313), - [anon_sym_mutable] = ACTIONS(8313), - [anon_sym_constinit] = ACTIONS(8313), - [anon_sym_consteval] = ACTIONS(8313), - [anon_sym_alignas] = ACTIONS(8313), - [anon_sym__Alignas] = ACTIONS(8313), - [sym_primitive_type] = ACTIONS(8313), - [anon_sym_enum] = ACTIONS(8313), - [anon_sym_class] = ACTIONS(8313), - [anon_sym_struct] = ACTIONS(8313), - [anon_sym_union] = ACTIONS(8313), - [anon_sym_typename] = ACTIONS(8313), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8313), - [anon_sym_decltype] = ACTIONS(8313), - [anon_sym_explicit] = ACTIONS(8313), - [anon_sym_private] = ACTIONS(8313), - [anon_sym_template] = ACTIONS(8313), - [anon_sym_operator] = ACTIONS(8313), - [anon_sym_friend] = ACTIONS(8313), - [anon_sym_public] = ACTIONS(8313), - [anon_sym_protected] = ACTIONS(8313), - [anon_sym_static_assert] = ACTIONS(8313), - [anon_sym_LBRACK_COLON] = ACTIONS(8315), + [STATE(2783)] = { + [sym_identifier] = ACTIONS(8691), + [aux_sym_preproc_def_token1] = ACTIONS(8691), + [aux_sym_preproc_if_token1] = ACTIONS(8691), + [aux_sym_preproc_if_token2] = ACTIONS(8691), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8691), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8691), + [aux_sym_preproc_else_token1] = ACTIONS(8691), + [aux_sym_preproc_elif_token1] = ACTIONS(8691), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8691), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8691), + [sym_preproc_directive] = ACTIONS(8691), + [anon_sym_LPAREN2] = ACTIONS(8693), + [anon_sym_TILDE] = ACTIONS(8693), + [anon_sym_STAR] = ACTIONS(8693), + [anon_sym_AMP_AMP] = ACTIONS(8693), + [anon_sym_AMP] = ACTIONS(8691), + [anon_sym_SEMI] = ACTIONS(8693), + [anon_sym___extension__] = ACTIONS(8691), + [anon_sym_typedef] = ACTIONS(8691), + [anon_sym_virtual] = ACTIONS(8691), + [anon_sym_extern] = ACTIONS(8691), + [anon_sym___attribute__] = ACTIONS(8691), + [anon_sym___attribute] = ACTIONS(8691), + [anon_sym_using] = ACTIONS(8691), + [anon_sym_COLON_COLON] = ACTIONS(8693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8693), + [anon_sym___declspec] = ACTIONS(8691), + [anon_sym___based] = ACTIONS(8691), + [anon_sym_signed] = ACTIONS(8691), + [anon_sym_unsigned] = ACTIONS(8691), + [anon_sym_long] = ACTIONS(8691), + [anon_sym_short] = ACTIONS(8691), + [anon_sym_LBRACK] = ACTIONS(8691), + [anon_sym_static] = ACTIONS(8691), + [anon_sym_register] = ACTIONS(8691), + [anon_sym_inline] = ACTIONS(8691), + [anon_sym___inline] = ACTIONS(8691), + [anon_sym___inline__] = ACTIONS(8691), + [anon_sym___forceinline] = ACTIONS(8691), + [anon_sym_thread_local] = ACTIONS(8691), + [anon_sym___thread] = ACTIONS(8691), + [anon_sym_const] = ACTIONS(8691), + [anon_sym_constexpr] = ACTIONS(8691), + [anon_sym_volatile] = ACTIONS(8691), + [anon_sym_restrict] = ACTIONS(8691), + [anon_sym___restrict__] = ACTIONS(8691), + [anon_sym__Atomic] = ACTIONS(8691), + [anon_sym__Noreturn] = ACTIONS(8691), + [anon_sym_noreturn] = ACTIONS(8691), + [anon_sym__Nonnull] = ACTIONS(8691), + [anon_sym_mutable] = ACTIONS(8691), + [anon_sym_constinit] = ACTIONS(8691), + [anon_sym_consteval] = ACTIONS(8691), + [anon_sym_alignas] = ACTIONS(8691), + [anon_sym__Alignas] = ACTIONS(8691), + [sym_primitive_type] = ACTIONS(8691), + [anon_sym_enum] = ACTIONS(8691), + [anon_sym_class] = ACTIONS(8691), + [anon_sym_struct] = ACTIONS(8691), + [anon_sym_union] = ACTIONS(8691), + [anon_sym_typename] = ACTIONS(8691), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8691), + [anon_sym_decltype] = ACTIONS(8691), + [anon_sym_explicit] = ACTIONS(8691), + [anon_sym_private] = ACTIONS(8691), + [anon_sym_template] = ACTIONS(8691), + [anon_sym_operator] = ACTIONS(8691), + [anon_sym_friend] = ACTIONS(8691), + [anon_sym_public] = ACTIONS(8691), + [anon_sym_protected] = ACTIONS(8691), + [anon_sym_static_assert] = ACTIONS(8691), + [anon_sym_LBRACK_COLON] = ACTIONS(8693), }, - [STATE(3148)] = { - [sym_identifier] = ACTIONS(8378), - [aux_sym_preproc_def_token1] = ACTIONS(8378), - [aux_sym_preproc_if_token1] = ACTIONS(8378), - [aux_sym_preproc_if_token2] = ACTIONS(8378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8378), - [sym_preproc_directive] = ACTIONS(8378), - [anon_sym_LPAREN2] = ACTIONS(8380), - [anon_sym_TILDE] = ACTIONS(8380), - [anon_sym_STAR] = ACTIONS(8380), - [anon_sym_AMP_AMP] = ACTIONS(8380), - [anon_sym_AMP] = ACTIONS(8378), - [anon_sym_SEMI] = ACTIONS(8380), - [anon_sym___extension__] = ACTIONS(8378), - [anon_sym_typedef] = ACTIONS(8378), - [anon_sym_virtual] = ACTIONS(8378), - [anon_sym_extern] = ACTIONS(8378), - [anon_sym___attribute__] = ACTIONS(8378), - [anon_sym___attribute] = ACTIONS(8378), - [anon_sym_using] = ACTIONS(8378), - [anon_sym_COLON_COLON] = ACTIONS(8380), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8380), - [anon_sym___declspec] = ACTIONS(8378), - [anon_sym___based] = ACTIONS(8378), - [anon_sym_signed] = ACTIONS(8378), - [anon_sym_unsigned] = ACTIONS(8378), - [anon_sym_long] = ACTIONS(8378), - [anon_sym_short] = ACTIONS(8378), - [anon_sym_LBRACK] = ACTIONS(8378), - [anon_sym_static] = ACTIONS(8378), - [anon_sym_register] = ACTIONS(8378), - [anon_sym_inline] = ACTIONS(8378), - [anon_sym___inline] = ACTIONS(8378), - [anon_sym___inline__] = ACTIONS(8378), - [anon_sym___forceinline] = ACTIONS(8378), - [anon_sym_thread_local] = ACTIONS(8378), - [anon_sym___thread] = ACTIONS(8378), - [anon_sym_const] = ACTIONS(8378), - [anon_sym_constexpr] = ACTIONS(8378), - [anon_sym_volatile] = ACTIONS(8378), - [anon_sym_restrict] = ACTIONS(8378), - [anon_sym___restrict__] = ACTIONS(8378), - [anon_sym__Atomic] = ACTIONS(8378), - [anon_sym__Noreturn] = ACTIONS(8378), - [anon_sym_noreturn] = ACTIONS(8378), - [anon_sym__Nonnull] = ACTIONS(8378), - [anon_sym_mutable] = ACTIONS(8378), - [anon_sym_constinit] = ACTIONS(8378), - [anon_sym_consteval] = ACTIONS(8378), - [anon_sym_alignas] = ACTIONS(8378), - [anon_sym__Alignas] = ACTIONS(8378), - [sym_primitive_type] = ACTIONS(8378), - [anon_sym_enum] = ACTIONS(8378), - [anon_sym_class] = ACTIONS(8378), - [anon_sym_struct] = ACTIONS(8378), - [anon_sym_union] = ACTIONS(8378), - [anon_sym_typename] = ACTIONS(8378), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8378), - [anon_sym_decltype] = ACTIONS(8378), - [anon_sym_explicit] = ACTIONS(8378), - [anon_sym_private] = ACTIONS(8378), - [anon_sym_template] = ACTIONS(8378), - [anon_sym_operator] = ACTIONS(8378), - [anon_sym_friend] = ACTIONS(8378), - [anon_sym_public] = ACTIONS(8378), - [anon_sym_protected] = ACTIONS(8378), - [anon_sym_static_assert] = ACTIONS(8378), - [anon_sym_LBRACK_COLON] = ACTIONS(8380), - }, - [STATE(3149)] = { - [sym_identifier] = ACTIONS(8347), - [aux_sym_preproc_def_token1] = ACTIONS(8347), - [aux_sym_preproc_if_token1] = ACTIONS(8347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8347), - [sym_preproc_directive] = ACTIONS(8347), - [anon_sym_LPAREN2] = ACTIONS(8349), - [anon_sym_TILDE] = ACTIONS(8349), - [anon_sym_STAR] = ACTIONS(8349), - [anon_sym_AMP_AMP] = ACTIONS(8349), - [anon_sym_AMP] = ACTIONS(8347), - [anon_sym_SEMI] = ACTIONS(8349), - [anon_sym___extension__] = ACTIONS(8347), - [anon_sym_typedef] = ACTIONS(8347), - [anon_sym_virtual] = ACTIONS(8347), - [anon_sym_extern] = ACTIONS(8347), - [anon_sym___attribute__] = ACTIONS(8347), - [anon_sym___attribute] = ACTIONS(8347), - [anon_sym_using] = ACTIONS(8347), - [anon_sym_COLON_COLON] = ACTIONS(8349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8349), - [anon_sym___declspec] = ACTIONS(8347), - [anon_sym___based] = ACTIONS(8347), - [anon_sym_RBRACE] = ACTIONS(8349), - [anon_sym_signed] = ACTIONS(8347), - [anon_sym_unsigned] = ACTIONS(8347), - [anon_sym_long] = ACTIONS(8347), - [anon_sym_short] = ACTIONS(8347), - [anon_sym_LBRACK] = ACTIONS(8347), - [anon_sym_static] = ACTIONS(8347), - [anon_sym_register] = ACTIONS(8347), - [anon_sym_inline] = ACTIONS(8347), - [anon_sym___inline] = ACTIONS(8347), - [anon_sym___inline__] = ACTIONS(8347), - [anon_sym___forceinline] = ACTIONS(8347), - [anon_sym_thread_local] = ACTIONS(8347), - [anon_sym___thread] = ACTIONS(8347), - [anon_sym_const] = ACTIONS(8347), - [anon_sym_constexpr] = ACTIONS(8347), - [anon_sym_volatile] = ACTIONS(8347), - [anon_sym_restrict] = ACTIONS(8347), - [anon_sym___restrict__] = ACTIONS(8347), - [anon_sym__Atomic] = ACTIONS(8347), - [anon_sym__Noreturn] = ACTIONS(8347), - [anon_sym_noreturn] = ACTIONS(8347), - [anon_sym__Nonnull] = ACTIONS(8347), - [anon_sym_mutable] = ACTIONS(8347), - [anon_sym_constinit] = ACTIONS(8347), - [anon_sym_consteval] = ACTIONS(8347), - [anon_sym_alignas] = ACTIONS(8347), - [anon_sym__Alignas] = ACTIONS(8347), - [sym_primitive_type] = ACTIONS(8347), - [anon_sym_enum] = ACTIONS(8347), - [anon_sym_class] = ACTIONS(8347), - [anon_sym_struct] = ACTIONS(8347), - [anon_sym_union] = ACTIONS(8347), - [anon_sym_typename] = ACTIONS(8347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8347), - [anon_sym_decltype] = ACTIONS(8347), - [anon_sym_explicit] = ACTIONS(8347), - [anon_sym_private] = ACTIONS(8347), - [anon_sym_template] = ACTIONS(8347), - [anon_sym_operator] = ACTIONS(8347), - [anon_sym_friend] = ACTIONS(8347), - [anon_sym_public] = ACTIONS(8347), - [anon_sym_protected] = ACTIONS(8347), - [anon_sym_static_assert] = ACTIONS(8347), - [anon_sym_LBRACK_COLON] = ACTIONS(8349), - }, - [STATE(3150)] = { - [sym_template_argument_list] = STATE(2612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), - [anon_sym_COMMA] = ACTIONS(6748), - [anon_sym_LPAREN2] = ACTIONS(6748), - [anon_sym_DASH] = ACTIONS(6755), - [anon_sym_PLUS] = ACTIONS(6755), - [anon_sym_STAR] = ACTIONS(6755), - [anon_sym_SLASH] = ACTIONS(6755), - [anon_sym_PERCENT] = ACTIONS(6755), - [anon_sym_PIPE_PIPE] = ACTIONS(6748), - [anon_sym_AMP_AMP] = ACTIONS(6748), - [anon_sym_PIPE] = ACTIONS(6755), - [anon_sym_CARET] = ACTIONS(6755), - [anon_sym_AMP] = ACTIONS(6755), - [anon_sym_EQ_EQ] = ACTIONS(6748), - [anon_sym_BANG_EQ] = ACTIONS(6748), - [anon_sym_GT] = ACTIONS(6755), - [anon_sym_GT_EQ] = ACTIONS(6748), - [anon_sym_LT_EQ] = ACTIONS(6755), - [anon_sym_LT] = ACTIONS(7681), - [anon_sym_LT_LT] = ACTIONS(6755), - [anon_sym_GT_GT] = ACTIONS(6755), - [anon_sym___extension__] = ACTIONS(6751), - [anon_sym_COLON_COLON] = ACTIONS(6748), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_LBRACK] = ACTIONS(6748), - [anon_sym_RBRACK] = ACTIONS(6748), - [anon_sym_EQ] = ACTIONS(6755), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6751), - [anon_sym_volatile] = ACTIONS(6751), - [anon_sym_restrict] = ACTIONS(6751), - [anon_sym___restrict__] = ACTIONS(6751), - [anon_sym__Atomic] = ACTIONS(6751), - [anon_sym__Noreturn] = ACTIONS(6751), - [anon_sym_noreturn] = ACTIONS(6751), - [anon_sym__Nonnull] = ACTIONS(6751), - [anon_sym_mutable] = ACTIONS(6751), - [anon_sym_constinit] = ACTIONS(6751), - [anon_sym_consteval] = ACTIONS(6751), - [anon_sym_alignas] = ACTIONS(6751), - [anon_sym__Alignas] = ACTIONS(6751), - [anon_sym_QMARK] = ACTIONS(6748), - [anon_sym_STAR_EQ] = ACTIONS(6748), - [anon_sym_SLASH_EQ] = ACTIONS(6748), - [anon_sym_PERCENT_EQ] = ACTIONS(6748), - [anon_sym_PLUS_EQ] = ACTIONS(6748), - [anon_sym_DASH_EQ] = ACTIONS(6748), - [anon_sym_LT_LT_EQ] = ACTIONS(6748), - [anon_sym_GT_GT_EQ] = ACTIONS(6748), - [anon_sym_AMP_EQ] = ACTIONS(6748), - [anon_sym_CARET_EQ] = ACTIONS(6748), - [anon_sym_PIPE_EQ] = ACTIONS(6748), - [anon_sym_and_eq] = ACTIONS(6748), - [anon_sym_or_eq] = ACTIONS(6748), - [anon_sym_xor_eq] = ACTIONS(6748), - [anon_sym_LT_EQ_GT] = ACTIONS(6748), - [anon_sym_or] = ACTIONS(6755), - [anon_sym_and] = ACTIONS(6755), - [anon_sym_bitor] = ACTIONS(6748), - [anon_sym_xor] = ACTIONS(6755), - [anon_sym_bitand] = ACTIONS(6748), - [anon_sym_not_eq] = ACTIONS(6748), - [anon_sym_DASH_DASH] = ACTIONS(6748), - [anon_sym_PLUS_PLUS] = ACTIONS(6748), - [anon_sym_DOT] = ACTIONS(6755), - [anon_sym_DOT_STAR] = ACTIONS(6748), - [anon_sym_DASH_GT] = ACTIONS(6748), - [sym_comment] = ACTIONS(3), - }, - [STATE(3151)] = { - [sym_identifier] = ACTIONS(3998), - [aux_sym_preproc_def_token1] = ACTIONS(3998), - [aux_sym_preproc_if_token1] = ACTIONS(3998), - [aux_sym_preproc_if_token2] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), - [sym_preproc_directive] = ACTIONS(3998), - [anon_sym_LPAREN2] = ACTIONS(4000), - [anon_sym_TILDE] = ACTIONS(4000), - [anon_sym_STAR] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym___extension__] = ACTIONS(3998), - [anon_sym_typedef] = ACTIONS(3998), - [anon_sym_virtual] = ACTIONS(3998), - [anon_sym_extern] = ACTIONS(3998), - [anon_sym___attribute__] = ACTIONS(3998), - [anon_sym___attribute] = ACTIONS(3998), - [anon_sym_using] = ACTIONS(3998), - [anon_sym_COLON_COLON] = ACTIONS(4000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), - [anon_sym___declspec] = ACTIONS(3998), - [anon_sym___based] = ACTIONS(3998), - [anon_sym_signed] = ACTIONS(3998), - [anon_sym_unsigned] = ACTIONS(3998), - [anon_sym_long] = ACTIONS(3998), - [anon_sym_short] = ACTIONS(3998), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_static] = ACTIONS(3998), - [anon_sym_register] = ACTIONS(3998), - [anon_sym_inline] = ACTIONS(3998), - [anon_sym___inline] = ACTIONS(3998), - [anon_sym___inline__] = ACTIONS(3998), - [anon_sym___forceinline] = ACTIONS(3998), - [anon_sym_thread_local] = ACTIONS(3998), - [anon_sym___thread] = ACTIONS(3998), - [anon_sym_const] = ACTIONS(3998), - [anon_sym_constexpr] = ACTIONS(3998), - [anon_sym_volatile] = ACTIONS(3998), - [anon_sym_restrict] = ACTIONS(3998), - [anon_sym___restrict__] = ACTIONS(3998), - [anon_sym__Atomic] = ACTIONS(3998), - [anon_sym__Noreturn] = ACTIONS(3998), - [anon_sym_noreturn] = ACTIONS(3998), - [anon_sym__Nonnull] = ACTIONS(3998), - [anon_sym_mutable] = ACTIONS(3998), - [anon_sym_constinit] = ACTIONS(3998), - [anon_sym_consteval] = ACTIONS(3998), - [anon_sym_alignas] = ACTIONS(3998), - [anon_sym__Alignas] = ACTIONS(3998), - [sym_primitive_type] = ACTIONS(3998), - [anon_sym_enum] = ACTIONS(3998), - [anon_sym_class] = ACTIONS(3998), - [anon_sym_struct] = ACTIONS(3998), - [anon_sym_union] = ACTIONS(3998), - [anon_sym_typename] = ACTIONS(3998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3998), - [anon_sym_decltype] = ACTIONS(3998), - [anon_sym_explicit] = ACTIONS(3998), - [anon_sym_private] = ACTIONS(3998), - [anon_sym_template] = ACTIONS(3998), - [anon_sym_operator] = ACTIONS(3998), - [anon_sym_friend] = ACTIONS(3998), - [anon_sym_public] = ACTIONS(3998), - [anon_sym_protected] = ACTIONS(3998), - [anon_sym_static_assert] = ACTIONS(3998), - [anon_sym_LBRACK_COLON] = ACTIONS(4000), - }, - [STATE(3152)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3239), - [sym_identifier] = ACTIONS(7391), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7393), - [anon_sym_COMMA] = ACTIONS(7393), - [aux_sym_preproc_if_token2] = ACTIONS(7393), - [aux_sym_preproc_else_token1] = ACTIONS(7393), - [aux_sym_preproc_elif_token1] = ACTIONS(7391), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7393), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7393), - [anon_sym_LPAREN2] = ACTIONS(7393), - [anon_sym_DASH] = ACTIONS(7391), - [anon_sym_PLUS] = ACTIONS(7391), - [anon_sym_STAR] = ACTIONS(7393), - [anon_sym_SLASH] = ACTIONS(7391), - [anon_sym_PERCENT] = ACTIONS(7393), - [anon_sym_PIPE_PIPE] = ACTIONS(7393), - [anon_sym_AMP_AMP] = ACTIONS(7393), - [anon_sym_PIPE] = ACTIONS(7391), - [anon_sym_CARET] = ACTIONS(7393), - [anon_sym_AMP] = ACTIONS(7391), - [anon_sym_EQ_EQ] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7393), - [anon_sym_GT] = ACTIONS(7391), - [anon_sym_GT_EQ] = ACTIONS(7393), - [anon_sym_LT_EQ] = ACTIONS(7391), - [anon_sym_LT] = ACTIONS(7391), - [anon_sym_LT_LT] = ACTIONS(7393), - [anon_sym_GT_GT] = ACTIONS(7393), - [anon_sym___extension__] = ACTIONS(7391), - [anon_sym___attribute__] = ACTIONS(7391), - [anon_sym___attribute] = ACTIONS(7391), - [anon_sym_LBRACE] = ACTIONS(7393), - [anon_sym_signed] = ACTIONS(8735), - [anon_sym_unsigned] = ACTIONS(8735), - [anon_sym_long] = ACTIONS(8735), - [anon_sym_short] = ACTIONS(8735), - [anon_sym_LBRACK] = ACTIONS(7393), - [anon_sym_RBRACK] = ACTIONS(7393), - [anon_sym_const] = ACTIONS(7391), - [anon_sym_constexpr] = ACTIONS(7391), - [anon_sym_volatile] = ACTIONS(7391), - [anon_sym_restrict] = ACTIONS(7391), - [anon_sym___restrict__] = ACTIONS(7391), - [anon_sym__Atomic] = ACTIONS(7391), - [anon_sym__Noreturn] = ACTIONS(7391), - [anon_sym_noreturn] = ACTIONS(7391), - [anon_sym__Nonnull] = ACTIONS(7391), - [anon_sym_mutable] = ACTIONS(7391), - [anon_sym_constinit] = ACTIONS(7391), - [anon_sym_consteval] = ACTIONS(7391), - [anon_sym_alignas] = ACTIONS(7391), - [anon_sym__Alignas] = ACTIONS(7391), - [anon_sym_QMARK] = ACTIONS(7393), - [anon_sym_LT_EQ_GT] = ACTIONS(7393), - [anon_sym_or] = ACTIONS(7391), - [anon_sym_and] = ACTIONS(7391), - [anon_sym_bitor] = ACTIONS(7391), - [anon_sym_xor] = ACTIONS(7391), - [anon_sym_bitand] = ACTIONS(7391), - [anon_sym_not_eq] = ACTIONS(7391), - [anon_sym_DASH_DASH] = ACTIONS(7393), - [anon_sym_PLUS_PLUS] = ACTIONS(7393), - [anon_sym_DOT] = ACTIONS(7391), - [anon_sym_DOT_STAR] = ACTIONS(7393), - [anon_sym_DASH_GT] = ACTIONS(7393), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7391), - [anon_sym_override] = ACTIONS(7391), - [anon_sym_requires] = ACTIONS(7391), - }, - [STATE(3153)] = { - [sym_identifier] = ACTIONS(8442), - [aux_sym_preproc_def_token1] = ACTIONS(8442), - [aux_sym_preproc_if_token1] = ACTIONS(8442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8442), - [sym_preproc_directive] = ACTIONS(8442), - [anon_sym_LPAREN2] = ACTIONS(8444), - [anon_sym_TILDE] = ACTIONS(8444), - [anon_sym_STAR] = ACTIONS(8444), - [anon_sym_AMP_AMP] = ACTIONS(8444), - [anon_sym_AMP] = ACTIONS(8442), - [anon_sym_SEMI] = ACTIONS(8444), - [anon_sym___extension__] = ACTIONS(8442), - [anon_sym_typedef] = ACTIONS(8442), - [anon_sym_virtual] = ACTIONS(8442), - [anon_sym_extern] = ACTIONS(8442), - [anon_sym___attribute__] = ACTIONS(8442), - [anon_sym___attribute] = ACTIONS(8442), - [anon_sym_using] = ACTIONS(8442), - [anon_sym_COLON_COLON] = ACTIONS(8444), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8444), - [anon_sym___declspec] = ACTIONS(8442), - [anon_sym___based] = ACTIONS(8442), - [anon_sym_RBRACE] = ACTIONS(8444), - [anon_sym_signed] = ACTIONS(8442), - [anon_sym_unsigned] = ACTIONS(8442), - [anon_sym_long] = ACTIONS(8442), - [anon_sym_short] = ACTIONS(8442), - [anon_sym_LBRACK] = ACTIONS(8442), - [anon_sym_static] = ACTIONS(8442), - [anon_sym_register] = ACTIONS(8442), - [anon_sym_inline] = ACTIONS(8442), - [anon_sym___inline] = ACTIONS(8442), - [anon_sym___inline__] = ACTIONS(8442), - [anon_sym___forceinline] = ACTIONS(8442), - [anon_sym_thread_local] = ACTIONS(8442), - [anon_sym___thread] = ACTIONS(8442), - [anon_sym_const] = ACTIONS(8442), - [anon_sym_constexpr] = ACTIONS(8442), - [anon_sym_volatile] = ACTIONS(8442), - [anon_sym_restrict] = ACTIONS(8442), - [anon_sym___restrict__] = ACTIONS(8442), - [anon_sym__Atomic] = ACTIONS(8442), - [anon_sym__Noreturn] = ACTIONS(8442), - [anon_sym_noreturn] = ACTIONS(8442), - [anon_sym__Nonnull] = ACTIONS(8442), - [anon_sym_mutable] = ACTIONS(8442), - [anon_sym_constinit] = ACTIONS(8442), - [anon_sym_consteval] = ACTIONS(8442), - [anon_sym_alignas] = ACTIONS(8442), - [anon_sym__Alignas] = ACTIONS(8442), - [sym_primitive_type] = ACTIONS(8442), - [anon_sym_enum] = ACTIONS(8442), - [anon_sym_class] = ACTIONS(8442), - [anon_sym_struct] = ACTIONS(8442), - [anon_sym_union] = ACTIONS(8442), - [anon_sym_typename] = ACTIONS(8442), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8442), - [anon_sym_decltype] = ACTIONS(8442), - [anon_sym_explicit] = ACTIONS(8442), - [anon_sym_private] = ACTIONS(8442), - [anon_sym_template] = ACTIONS(8442), - [anon_sym_operator] = ACTIONS(8442), - [anon_sym_friend] = ACTIONS(8442), - [anon_sym_public] = ACTIONS(8442), - [anon_sym_protected] = ACTIONS(8442), - [anon_sym_static_assert] = ACTIONS(8442), - [anon_sym_LBRACK_COLON] = ACTIONS(8444), - }, - [STATE(3154)] = { - [sym_identifier] = ACTIONS(8285), - [aux_sym_preproc_def_token1] = ACTIONS(8285), - [aux_sym_preproc_if_token1] = ACTIONS(8285), - [aux_sym_preproc_if_token2] = ACTIONS(8285), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8285), - [sym_preproc_directive] = ACTIONS(8285), - [anon_sym_LPAREN2] = ACTIONS(8287), - [anon_sym_TILDE] = ACTIONS(8287), - [anon_sym_STAR] = ACTIONS(8287), - [anon_sym_AMP_AMP] = ACTIONS(8287), - [anon_sym_AMP] = ACTIONS(8285), - [anon_sym_SEMI] = ACTIONS(8287), - [anon_sym___extension__] = ACTIONS(8285), - [anon_sym_typedef] = ACTIONS(8285), - [anon_sym_virtual] = ACTIONS(8285), - [anon_sym_extern] = ACTIONS(8285), - [anon_sym___attribute__] = ACTIONS(8285), - [anon_sym___attribute] = ACTIONS(8285), - [anon_sym_using] = ACTIONS(8285), - [anon_sym_COLON_COLON] = ACTIONS(8287), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8287), - [anon_sym___declspec] = ACTIONS(8285), - [anon_sym___based] = ACTIONS(8285), - [anon_sym_signed] = ACTIONS(8285), - [anon_sym_unsigned] = ACTIONS(8285), - [anon_sym_long] = ACTIONS(8285), - [anon_sym_short] = ACTIONS(8285), - [anon_sym_LBRACK] = ACTIONS(8285), - [anon_sym_static] = ACTIONS(8285), - [anon_sym_register] = ACTIONS(8285), - [anon_sym_inline] = ACTIONS(8285), - [anon_sym___inline] = ACTIONS(8285), - [anon_sym___inline__] = ACTIONS(8285), - [anon_sym___forceinline] = ACTIONS(8285), - [anon_sym_thread_local] = ACTIONS(8285), - [anon_sym___thread] = ACTIONS(8285), - [anon_sym_const] = ACTIONS(8285), - [anon_sym_constexpr] = ACTIONS(8285), - [anon_sym_volatile] = ACTIONS(8285), - [anon_sym_restrict] = ACTIONS(8285), - [anon_sym___restrict__] = ACTIONS(8285), - [anon_sym__Atomic] = ACTIONS(8285), - [anon_sym__Noreturn] = ACTIONS(8285), - [anon_sym_noreturn] = ACTIONS(8285), - [anon_sym__Nonnull] = ACTIONS(8285), - [anon_sym_mutable] = ACTIONS(8285), - [anon_sym_constinit] = ACTIONS(8285), - [anon_sym_consteval] = ACTIONS(8285), - [anon_sym_alignas] = ACTIONS(8285), - [anon_sym__Alignas] = ACTIONS(8285), - [sym_primitive_type] = ACTIONS(8285), - [anon_sym_enum] = ACTIONS(8285), - [anon_sym_class] = ACTIONS(8285), - [anon_sym_struct] = ACTIONS(8285), - [anon_sym_union] = ACTIONS(8285), - [anon_sym_typename] = ACTIONS(8285), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8285), - [anon_sym_decltype] = ACTIONS(8285), - [anon_sym_explicit] = ACTIONS(8285), - [anon_sym_private] = ACTIONS(8285), - [anon_sym_template] = ACTIONS(8285), - [anon_sym_operator] = ACTIONS(8285), - [anon_sym_friend] = ACTIONS(8285), - [anon_sym_public] = ACTIONS(8285), - [anon_sym_protected] = ACTIONS(8285), - [anon_sym_static_assert] = ACTIONS(8285), - [anon_sym_LBRACK_COLON] = ACTIONS(8287), - }, - [STATE(3155)] = { - [sym_identifier] = ACTIONS(8347), - [aux_sym_preproc_def_token1] = ACTIONS(8347), - [aux_sym_preproc_if_token1] = ACTIONS(8347), - [aux_sym_preproc_if_token2] = ACTIONS(8347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8347), - [sym_preproc_directive] = ACTIONS(8347), - [anon_sym_LPAREN2] = ACTIONS(8349), - [anon_sym_TILDE] = ACTIONS(8349), - [anon_sym_STAR] = ACTIONS(8349), - [anon_sym_AMP_AMP] = ACTIONS(8349), - [anon_sym_AMP] = ACTIONS(8347), - [anon_sym_SEMI] = ACTIONS(8349), - [anon_sym___extension__] = ACTIONS(8347), - [anon_sym_typedef] = ACTIONS(8347), - [anon_sym_virtual] = ACTIONS(8347), - [anon_sym_extern] = ACTIONS(8347), - [anon_sym___attribute__] = ACTIONS(8347), - [anon_sym___attribute] = ACTIONS(8347), - [anon_sym_using] = ACTIONS(8347), - [anon_sym_COLON_COLON] = ACTIONS(8349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8349), - [anon_sym___declspec] = ACTIONS(8347), - [anon_sym___based] = ACTIONS(8347), - [anon_sym_signed] = ACTIONS(8347), - [anon_sym_unsigned] = ACTIONS(8347), - [anon_sym_long] = ACTIONS(8347), - [anon_sym_short] = ACTIONS(8347), - [anon_sym_LBRACK] = ACTIONS(8347), - [anon_sym_static] = ACTIONS(8347), - [anon_sym_register] = ACTIONS(8347), - [anon_sym_inline] = ACTIONS(8347), - [anon_sym___inline] = ACTIONS(8347), - [anon_sym___inline__] = ACTIONS(8347), - [anon_sym___forceinline] = ACTIONS(8347), - [anon_sym_thread_local] = ACTIONS(8347), - [anon_sym___thread] = ACTIONS(8347), - [anon_sym_const] = ACTIONS(8347), - [anon_sym_constexpr] = ACTIONS(8347), - [anon_sym_volatile] = ACTIONS(8347), - [anon_sym_restrict] = ACTIONS(8347), - [anon_sym___restrict__] = ACTIONS(8347), - [anon_sym__Atomic] = ACTIONS(8347), - [anon_sym__Noreturn] = ACTIONS(8347), - [anon_sym_noreturn] = ACTIONS(8347), - [anon_sym__Nonnull] = ACTIONS(8347), - [anon_sym_mutable] = ACTIONS(8347), - [anon_sym_constinit] = ACTIONS(8347), - [anon_sym_consteval] = ACTIONS(8347), - [anon_sym_alignas] = ACTIONS(8347), - [anon_sym__Alignas] = ACTIONS(8347), - [sym_primitive_type] = ACTIONS(8347), - [anon_sym_enum] = ACTIONS(8347), - [anon_sym_class] = ACTIONS(8347), - [anon_sym_struct] = ACTIONS(8347), - [anon_sym_union] = ACTIONS(8347), - [anon_sym_typename] = ACTIONS(8347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8347), - [anon_sym_decltype] = ACTIONS(8347), - [anon_sym_explicit] = ACTIONS(8347), - [anon_sym_private] = ACTIONS(8347), - [anon_sym_template] = ACTIONS(8347), - [anon_sym_operator] = ACTIONS(8347), - [anon_sym_friend] = ACTIONS(8347), - [anon_sym_public] = ACTIONS(8347), - [anon_sym_protected] = ACTIONS(8347), - [anon_sym_static_assert] = ACTIONS(8347), - [anon_sym_LBRACK_COLON] = ACTIONS(8349), - }, - [STATE(3156)] = { - [sym_identifier] = ACTIONS(8404), - [aux_sym_preproc_def_token1] = ACTIONS(8404), - [aux_sym_preproc_if_token1] = ACTIONS(8404), - [aux_sym_preproc_if_token2] = ACTIONS(8404), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8404), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8404), - [sym_preproc_directive] = ACTIONS(8404), - [anon_sym_LPAREN2] = ACTIONS(8406), - [anon_sym_TILDE] = ACTIONS(8406), - [anon_sym_STAR] = ACTIONS(8406), - [anon_sym_AMP_AMP] = ACTIONS(8406), - [anon_sym_AMP] = ACTIONS(8404), - [anon_sym_SEMI] = ACTIONS(8406), - [anon_sym___extension__] = ACTIONS(8404), - [anon_sym_typedef] = ACTIONS(8404), - [anon_sym_virtual] = ACTIONS(8404), - [anon_sym_extern] = ACTIONS(8404), - [anon_sym___attribute__] = ACTIONS(8404), - [anon_sym___attribute] = ACTIONS(8404), - [anon_sym_using] = ACTIONS(8404), - [anon_sym_COLON_COLON] = ACTIONS(8406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8406), - [anon_sym___declspec] = ACTIONS(8404), - [anon_sym___based] = ACTIONS(8404), - [anon_sym_signed] = ACTIONS(8404), - [anon_sym_unsigned] = ACTIONS(8404), - [anon_sym_long] = ACTIONS(8404), - [anon_sym_short] = ACTIONS(8404), - [anon_sym_LBRACK] = ACTIONS(8404), - [anon_sym_static] = ACTIONS(8404), - [anon_sym_register] = ACTIONS(8404), - [anon_sym_inline] = ACTIONS(8404), - [anon_sym___inline] = ACTIONS(8404), - [anon_sym___inline__] = ACTIONS(8404), - [anon_sym___forceinline] = ACTIONS(8404), - [anon_sym_thread_local] = ACTIONS(8404), - [anon_sym___thread] = ACTIONS(8404), - [anon_sym_const] = ACTIONS(8404), - [anon_sym_constexpr] = ACTIONS(8404), - [anon_sym_volatile] = ACTIONS(8404), - [anon_sym_restrict] = ACTIONS(8404), - [anon_sym___restrict__] = ACTIONS(8404), - [anon_sym__Atomic] = ACTIONS(8404), - [anon_sym__Noreturn] = ACTIONS(8404), - [anon_sym_noreturn] = ACTIONS(8404), - [anon_sym__Nonnull] = ACTIONS(8404), - [anon_sym_mutable] = ACTIONS(8404), - [anon_sym_constinit] = ACTIONS(8404), - [anon_sym_consteval] = ACTIONS(8404), - [anon_sym_alignas] = ACTIONS(8404), - [anon_sym__Alignas] = ACTIONS(8404), - [sym_primitive_type] = ACTIONS(8404), - [anon_sym_enum] = ACTIONS(8404), - [anon_sym_class] = ACTIONS(8404), - [anon_sym_struct] = ACTIONS(8404), - [anon_sym_union] = ACTIONS(8404), - [anon_sym_typename] = ACTIONS(8404), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8404), - [anon_sym_decltype] = ACTIONS(8404), - [anon_sym_explicit] = ACTIONS(8404), - [anon_sym_private] = ACTIONS(8404), - [anon_sym_template] = ACTIONS(8404), - [anon_sym_operator] = ACTIONS(8404), - [anon_sym_friend] = ACTIONS(8404), - [anon_sym_public] = ACTIONS(8404), - [anon_sym_protected] = ACTIONS(8404), - [anon_sym_static_assert] = ACTIONS(8404), - [anon_sym_LBRACK_COLON] = ACTIONS(8406), - }, - [STATE(3157)] = { - [sym_identifier] = ACTIONS(8347), - [aux_sym_preproc_def_token1] = ACTIONS(8347), - [aux_sym_preproc_if_token1] = ACTIONS(8347), - [aux_sym_preproc_if_token2] = ACTIONS(8347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8347), - [sym_preproc_directive] = ACTIONS(8347), - [anon_sym_LPAREN2] = ACTIONS(8349), - [anon_sym_TILDE] = ACTIONS(8349), - [anon_sym_STAR] = ACTIONS(8349), - [anon_sym_AMP_AMP] = ACTIONS(8349), - [anon_sym_AMP] = ACTIONS(8347), - [anon_sym_SEMI] = ACTIONS(8349), - [anon_sym___extension__] = ACTIONS(8347), - [anon_sym_typedef] = ACTIONS(8347), - [anon_sym_virtual] = ACTIONS(8347), - [anon_sym_extern] = ACTIONS(8347), - [anon_sym___attribute__] = ACTIONS(8347), - [anon_sym___attribute] = ACTIONS(8347), - [anon_sym_using] = ACTIONS(8347), - [anon_sym_COLON_COLON] = ACTIONS(8349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8349), - [anon_sym___declspec] = ACTIONS(8347), - [anon_sym___based] = ACTIONS(8347), - [anon_sym_signed] = ACTIONS(8347), - [anon_sym_unsigned] = ACTIONS(8347), - [anon_sym_long] = ACTIONS(8347), - [anon_sym_short] = ACTIONS(8347), - [anon_sym_LBRACK] = ACTIONS(8347), - [anon_sym_static] = ACTIONS(8347), - [anon_sym_register] = ACTIONS(8347), - [anon_sym_inline] = ACTIONS(8347), - [anon_sym___inline] = ACTIONS(8347), - [anon_sym___inline__] = ACTIONS(8347), - [anon_sym___forceinline] = ACTIONS(8347), - [anon_sym_thread_local] = ACTIONS(8347), - [anon_sym___thread] = ACTIONS(8347), - [anon_sym_const] = ACTIONS(8347), - [anon_sym_constexpr] = ACTIONS(8347), - [anon_sym_volatile] = ACTIONS(8347), - [anon_sym_restrict] = ACTIONS(8347), - [anon_sym___restrict__] = ACTIONS(8347), - [anon_sym__Atomic] = ACTIONS(8347), - [anon_sym__Noreturn] = ACTIONS(8347), - [anon_sym_noreturn] = ACTIONS(8347), - [anon_sym__Nonnull] = ACTIONS(8347), - [anon_sym_mutable] = ACTIONS(8347), - [anon_sym_constinit] = ACTIONS(8347), - [anon_sym_consteval] = ACTIONS(8347), - [anon_sym_alignas] = ACTIONS(8347), - [anon_sym__Alignas] = ACTIONS(8347), - [sym_primitive_type] = ACTIONS(8347), - [anon_sym_enum] = ACTIONS(8347), - [anon_sym_class] = ACTIONS(8347), - [anon_sym_struct] = ACTIONS(8347), - [anon_sym_union] = ACTIONS(8347), - [anon_sym_typename] = ACTIONS(8347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8347), - [anon_sym_decltype] = ACTIONS(8347), - [anon_sym_explicit] = ACTIONS(8347), - [anon_sym_private] = ACTIONS(8347), - [anon_sym_template] = ACTIONS(8347), - [anon_sym_operator] = ACTIONS(8347), - [anon_sym_friend] = ACTIONS(8347), - [anon_sym_public] = ACTIONS(8347), - [anon_sym_protected] = ACTIONS(8347), - [anon_sym_static_assert] = ACTIONS(8347), - [anon_sym_LBRACK_COLON] = ACTIONS(8349), - }, - [STATE(3158)] = { - [sym_identifier] = ACTIONS(8404), - [aux_sym_preproc_def_token1] = ACTIONS(8404), - [aux_sym_preproc_if_token1] = ACTIONS(8404), - [aux_sym_preproc_if_token2] = ACTIONS(8404), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8404), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8404), - [sym_preproc_directive] = ACTIONS(8404), - [anon_sym_LPAREN2] = ACTIONS(8406), - [anon_sym_TILDE] = ACTIONS(8406), - [anon_sym_STAR] = ACTIONS(8406), - [anon_sym_AMP_AMP] = ACTIONS(8406), - [anon_sym_AMP] = ACTIONS(8404), - [anon_sym_SEMI] = ACTIONS(8406), - [anon_sym___extension__] = ACTIONS(8404), - [anon_sym_typedef] = ACTIONS(8404), - [anon_sym_virtual] = ACTIONS(8404), - [anon_sym_extern] = ACTIONS(8404), - [anon_sym___attribute__] = ACTIONS(8404), - [anon_sym___attribute] = ACTIONS(8404), - [anon_sym_using] = ACTIONS(8404), - [anon_sym_COLON_COLON] = ACTIONS(8406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8406), - [anon_sym___declspec] = ACTIONS(8404), - [anon_sym___based] = ACTIONS(8404), - [anon_sym_signed] = ACTIONS(8404), - [anon_sym_unsigned] = ACTIONS(8404), - [anon_sym_long] = ACTIONS(8404), - [anon_sym_short] = ACTIONS(8404), - [anon_sym_LBRACK] = ACTIONS(8404), - [anon_sym_static] = ACTIONS(8404), - [anon_sym_register] = ACTIONS(8404), - [anon_sym_inline] = ACTIONS(8404), - [anon_sym___inline] = ACTIONS(8404), - [anon_sym___inline__] = ACTIONS(8404), - [anon_sym___forceinline] = ACTIONS(8404), - [anon_sym_thread_local] = ACTIONS(8404), - [anon_sym___thread] = ACTIONS(8404), - [anon_sym_const] = ACTIONS(8404), - [anon_sym_constexpr] = ACTIONS(8404), - [anon_sym_volatile] = ACTIONS(8404), - [anon_sym_restrict] = ACTIONS(8404), - [anon_sym___restrict__] = ACTIONS(8404), - [anon_sym__Atomic] = ACTIONS(8404), - [anon_sym__Noreturn] = ACTIONS(8404), - [anon_sym_noreturn] = ACTIONS(8404), - [anon_sym__Nonnull] = ACTIONS(8404), - [anon_sym_mutable] = ACTIONS(8404), - [anon_sym_constinit] = ACTIONS(8404), - [anon_sym_consteval] = ACTIONS(8404), - [anon_sym_alignas] = ACTIONS(8404), - [anon_sym__Alignas] = ACTIONS(8404), - [sym_primitive_type] = ACTIONS(8404), - [anon_sym_enum] = ACTIONS(8404), - [anon_sym_class] = ACTIONS(8404), - [anon_sym_struct] = ACTIONS(8404), - [anon_sym_union] = ACTIONS(8404), - [anon_sym_typename] = ACTIONS(8404), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8404), - [anon_sym_decltype] = ACTIONS(8404), - [anon_sym_explicit] = ACTIONS(8404), - [anon_sym_private] = ACTIONS(8404), - [anon_sym_template] = ACTIONS(8404), - [anon_sym_operator] = ACTIONS(8404), - [anon_sym_friend] = ACTIONS(8404), - [anon_sym_public] = ACTIONS(8404), - [anon_sym_protected] = ACTIONS(8404), - [anon_sym_static_assert] = ACTIONS(8404), - [anon_sym_LBRACK_COLON] = ACTIONS(8406), - }, - [STATE(3159)] = { - [sym_identifier] = ACTIONS(8434), - [aux_sym_preproc_def_token1] = ACTIONS(8434), - [aux_sym_preproc_if_token1] = ACTIONS(8434), - [aux_sym_preproc_if_token2] = ACTIONS(8434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8434), - [sym_preproc_directive] = ACTIONS(8434), - [anon_sym_LPAREN2] = ACTIONS(8436), - [anon_sym_TILDE] = ACTIONS(8436), - [anon_sym_STAR] = ACTIONS(8436), - [anon_sym_AMP_AMP] = ACTIONS(8436), - [anon_sym_AMP] = ACTIONS(8434), - [anon_sym_SEMI] = ACTIONS(8436), - [anon_sym___extension__] = ACTIONS(8434), - [anon_sym_typedef] = ACTIONS(8434), - [anon_sym_virtual] = ACTIONS(8434), - [anon_sym_extern] = ACTIONS(8434), - [anon_sym___attribute__] = ACTIONS(8434), - [anon_sym___attribute] = ACTIONS(8434), - [anon_sym_using] = ACTIONS(8434), - [anon_sym_COLON_COLON] = ACTIONS(8436), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8436), - [anon_sym___declspec] = ACTIONS(8434), - [anon_sym___based] = ACTIONS(8434), - [anon_sym_signed] = ACTIONS(8434), - [anon_sym_unsigned] = ACTIONS(8434), - [anon_sym_long] = ACTIONS(8434), - [anon_sym_short] = ACTIONS(8434), - [anon_sym_LBRACK] = ACTIONS(8434), - [anon_sym_static] = ACTIONS(8434), - [anon_sym_register] = ACTIONS(8434), - [anon_sym_inline] = ACTIONS(8434), - [anon_sym___inline] = ACTIONS(8434), - [anon_sym___inline__] = ACTIONS(8434), - [anon_sym___forceinline] = ACTIONS(8434), - [anon_sym_thread_local] = ACTIONS(8434), - [anon_sym___thread] = ACTIONS(8434), - [anon_sym_const] = ACTIONS(8434), - [anon_sym_constexpr] = ACTIONS(8434), - [anon_sym_volatile] = ACTIONS(8434), - [anon_sym_restrict] = ACTIONS(8434), - [anon_sym___restrict__] = ACTIONS(8434), - [anon_sym__Atomic] = ACTIONS(8434), - [anon_sym__Noreturn] = ACTIONS(8434), - [anon_sym_noreturn] = ACTIONS(8434), - [anon_sym__Nonnull] = ACTIONS(8434), - [anon_sym_mutable] = ACTIONS(8434), - [anon_sym_constinit] = ACTIONS(8434), - [anon_sym_consteval] = ACTIONS(8434), - [anon_sym_alignas] = ACTIONS(8434), - [anon_sym__Alignas] = ACTIONS(8434), - [sym_primitive_type] = ACTIONS(8434), - [anon_sym_enum] = ACTIONS(8434), - [anon_sym_class] = ACTIONS(8434), - [anon_sym_struct] = ACTIONS(8434), - [anon_sym_union] = ACTIONS(8434), - [anon_sym_typename] = ACTIONS(8434), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8434), - [anon_sym_decltype] = ACTIONS(8434), - [anon_sym_explicit] = ACTIONS(8434), - [anon_sym_private] = ACTIONS(8434), - [anon_sym_template] = ACTIONS(8434), - [anon_sym_operator] = ACTIONS(8434), - [anon_sym_friend] = ACTIONS(8434), - [anon_sym_public] = ACTIONS(8434), - [anon_sym_protected] = ACTIONS(8434), - [anon_sym_static_assert] = ACTIONS(8434), - [anon_sym_LBRACK_COLON] = ACTIONS(8436), - }, - [STATE(3160)] = { - [sym_identifier] = ACTIONS(8277), - [aux_sym_preproc_def_token1] = ACTIONS(8277), - [aux_sym_preproc_if_token1] = ACTIONS(8277), - [aux_sym_preproc_if_token2] = ACTIONS(8277), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8277), - [sym_preproc_directive] = ACTIONS(8277), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_TILDE] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8279), - [anon_sym_AMP_AMP] = ACTIONS(8279), - [anon_sym_AMP] = ACTIONS(8277), - [anon_sym_SEMI] = ACTIONS(8279), - [anon_sym___extension__] = ACTIONS(8277), - [anon_sym_typedef] = ACTIONS(8277), - [anon_sym_virtual] = ACTIONS(8277), - [anon_sym_extern] = ACTIONS(8277), - [anon_sym___attribute__] = ACTIONS(8277), - [anon_sym___attribute] = ACTIONS(8277), - [anon_sym_using] = ACTIONS(8277), - [anon_sym_COLON_COLON] = ACTIONS(8279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8279), - [anon_sym___declspec] = ACTIONS(8277), - [anon_sym___based] = ACTIONS(8277), - [anon_sym_signed] = ACTIONS(8277), - [anon_sym_unsigned] = ACTIONS(8277), - [anon_sym_long] = ACTIONS(8277), - [anon_sym_short] = ACTIONS(8277), - [anon_sym_LBRACK] = ACTIONS(8277), - [anon_sym_static] = ACTIONS(8277), - [anon_sym_register] = ACTIONS(8277), - [anon_sym_inline] = ACTIONS(8277), - [anon_sym___inline] = ACTIONS(8277), - [anon_sym___inline__] = ACTIONS(8277), - [anon_sym___forceinline] = ACTIONS(8277), - [anon_sym_thread_local] = ACTIONS(8277), - [anon_sym___thread] = ACTIONS(8277), - [anon_sym_const] = ACTIONS(8277), - [anon_sym_constexpr] = ACTIONS(8277), - [anon_sym_volatile] = ACTIONS(8277), - [anon_sym_restrict] = ACTIONS(8277), - [anon_sym___restrict__] = ACTIONS(8277), - [anon_sym__Atomic] = ACTIONS(8277), - [anon_sym__Noreturn] = ACTIONS(8277), - [anon_sym_noreturn] = ACTIONS(8277), - [anon_sym__Nonnull] = ACTIONS(8277), - [anon_sym_mutable] = ACTIONS(8277), - [anon_sym_constinit] = ACTIONS(8277), - [anon_sym_consteval] = ACTIONS(8277), - [anon_sym_alignas] = ACTIONS(8277), - [anon_sym__Alignas] = ACTIONS(8277), - [sym_primitive_type] = ACTIONS(8277), - [anon_sym_enum] = ACTIONS(8277), - [anon_sym_class] = ACTIONS(8277), - [anon_sym_struct] = ACTIONS(8277), - [anon_sym_union] = ACTIONS(8277), - [anon_sym_typename] = ACTIONS(8277), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8277), - [anon_sym_decltype] = ACTIONS(8277), - [anon_sym_explicit] = ACTIONS(8277), - [anon_sym_private] = ACTIONS(8277), - [anon_sym_template] = ACTIONS(8277), - [anon_sym_operator] = ACTIONS(8277), - [anon_sym_friend] = ACTIONS(8277), - [anon_sym_public] = ACTIONS(8277), - [anon_sym_protected] = ACTIONS(8277), - [anon_sym_static_assert] = ACTIONS(8277), - [anon_sym_LBRACK_COLON] = ACTIONS(8279), - }, - [STATE(3161)] = { - [sym_identifier] = ACTIONS(8281), - [aux_sym_preproc_def_token1] = ACTIONS(8281), - [aux_sym_preproc_if_token1] = ACTIONS(8281), - [aux_sym_preproc_if_token2] = ACTIONS(8281), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8281), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8281), - [sym_preproc_directive] = ACTIONS(8281), - [anon_sym_LPAREN2] = ACTIONS(8283), - [anon_sym_TILDE] = ACTIONS(8283), - [anon_sym_STAR] = ACTIONS(8283), - [anon_sym_AMP_AMP] = ACTIONS(8283), - [anon_sym_AMP] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8283), - [anon_sym___extension__] = ACTIONS(8281), - [anon_sym_typedef] = ACTIONS(8281), - [anon_sym_virtual] = ACTIONS(8281), - [anon_sym_extern] = ACTIONS(8281), - [anon_sym___attribute__] = ACTIONS(8281), - [anon_sym___attribute] = ACTIONS(8281), - [anon_sym_using] = ACTIONS(8281), - [anon_sym_COLON_COLON] = ACTIONS(8283), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8283), - [anon_sym___declspec] = ACTIONS(8281), - [anon_sym___based] = ACTIONS(8281), - [anon_sym_signed] = ACTIONS(8281), - [anon_sym_unsigned] = ACTIONS(8281), - [anon_sym_long] = ACTIONS(8281), - [anon_sym_short] = ACTIONS(8281), - [anon_sym_LBRACK] = ACTIONS(8281), - [anon_sym_static] = ACTIONS(8281), - [anon_sym_register] = ACTIONS(8281), - [anon_sym_inline] = ACTIONS(8281), - [anon_sym___inline] = ACTIONS(8281), - [anon_sym___inline__] = ACTIONS(8281), - [anon_sym___forceinline] = ACTIONS(8281), - [anon_sym_thread_local] = ACTIONS(8281), - [anon_sym___thread] = ACTIONS(8281), - [anon_sym_const] = ACTIONS(8281), - [anon_sym_constexpr] = ACTIONS(8281), - [anon_sym_volatile] = ACTIONS(8281), - [anon_sym_restrict] = ACTIONS(8281), - [anon_sym___restrict__] = ACTIONS(8281), - [anon_sym__Atomic] = ACTIONS(8281), - [anon_sym__Noreturn] = ACTIONS(8281), - [anon_sym_noreturn] = ACTIONS(8281), - [anon_sym__Nonnull] = ACTIONS(8281), - [anon_sym_mutable] = ACTIONS(8281), - [anon_sym_constinit] = ACTIONS(8281), - [anon_sym_consteval] = ACTIONS(8281), - [anon_sym_alignas] = ACTIONS(8281), - [anon_sym__Alignas] = ACTIONS(8281), - [sym_primitive_type] = ACTIONS(8281), - [anon_sym_enum] = ACTIONS(8281), - [anon_sym_class] = ACTIONS(8281), - [anon_sym_struct] = ACTIONS(8281), - [anon_sym_union] = ACTIONS(8281), - [anon_sym_typename] = ACTIONS(8281), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8281), - [anon_sym_decltype] = ACTIONS(8281), - [anon_sym_explicit] = ACTIONS(8281), - [anon_sym_private] = ACTIONS(8281), - [anon_sym_template] = ACTIONS(8281), - [anon_sym_operator] = ACTIONS(8281), - [anon_sym_friend] = ACTIONS(8281), - [anon_sym_public] = ACTIONS(8281), - [anon_sym_protected] = ACTIONS(8281), - [anon_sym_static_assert] = ACTIONS(8281), - [anon_sym_LBRACK_COLON] = ACTIONS(8283), - }, - [STATE(3162)] = { - [sym_identifier] = ACTIONS(8281), - [aux_sym_preproc_def_token1] = ACTIONS(8281), - [aux_sym_preproc_if_token1] = ACTIONS(8281), - [aux_sym_preproc_if_token2] = ACTIONS(8281), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8281), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8281), - [sym_preproc_directive] = ACTIONS(8281), - [anon_sym_LPAREN2] = ACTIONS(8283), - [anon_sym_TILDE] = ACTIONS(8283), - [anon_sym_STAR] = ACTIONS(8283), - [anon_sym_AMP_AMP] = ACTIONS(8283), - [anon_sym_AMP] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8283), - [anon_sym___extension__] = ACTIONS(8281), - [anon_sym_typedef] = ACTIONS(8281), - [anon_sym_virtual] = ACTIONS(8281), - [anon_sym_extern] = ACTIONS(8281), - [anon_sym___attribute__] = ACTIONS(8281), - [anon_sym___attribute] = ACTIONS(8281), - [anon_sym_using] = ACTIONS(8281), - [anon_sym_COLON_COLON] = ACTIONS(8283), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8283), - [anon_sym___declspec] = ACTIONS(8281), - [anon_sym___based] = ACTIONS(8281), - [anon_sym_signed] = ACTIONS(8281), - [anon_sym_unsigned] = ACTIONS(8281), - [anon_sym_long] = ACTIONS(8281), - [anon_sym_short] = ACTIONS(8281), - [anon_sym_LBRACK] = ACTIONS(8281), - [anon_sym_static] = ACTIONS(8281), - [anon_sym_register] = ACTIONS(8281), - [anon_sym_inline] = ACTIONS(8281), - [anon_sym___inline] = ACTIONS(8281), - [anon_sym___inline__] = ACTIONS(8281), - [anon_sym___forceinline] = ACTIONS(8281), - [anon_sym_thread_local] = ACTIONS(8281), - [anon_sym___thread] = ACTIONS(8281), - [anon_sym_const] = ACTIONS(8281), - [anon_sym_constexpr] = ACTIONS(8281), - [anon_sym_volatile] = ACTIONS(8281), - [anon_sym_restrict] = ACTIONS(8281), - [anon_sym___restrict__] = ACTIONS(8281), - [anon_sym__Atomic] = ACTIONS(8281), - [anon_sym__Noreturn] = ACTIONS(8281), - [anon_sym_noreturn] = ACTIONS(8281), - [anon_sym__Nonnull] = ACTIONS(8281), - [anon_sym_mutable] = ACTIONS(8281), - [anon_sym_constinit] = ACTIONS(8281), - [anon_sym_consteval] = ACTIONS(8281), - [anon_sym_alignas] = ACTIONS(8281), - [anon_sym__Alignas] = ACTIONS(8281), - [sym_primitive_type] = ACTIONS(8281), - [anon_sym_enum] = ACTIONS(8281), - [anon_sym_class] = ACTIONS(8281), - [anon_sym_struct] = ACTIONS(8281), - [anon_sym_union] = ACTIONS(8281), - [anon_sym_typename] = ACTIONS(8281), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8281), - [anon_sym_decltype] = ACTIONS(8281), - [anon_sym_explicit] = ACTIONS(8281), - [anon_sym_private] = ACTIONS(8281), - [anon_sym_template] = ACTIONS(8281), - [anon_sym_operator] = ACTIONS(8281), - [anon_sym_friend] = ACTIONS(8281), - [anon_sym_public] = ACTIONS(8281), - [anon_sym_protected] = ACTIONS(8281), - [anon_sym_static_assert] = ACTIONS(8281), - [anon_sym_LBRACK_COLON] = ACTIONS(8283), - }, - [STATE(3163)] = { - [sym_identifier] = ACTIONS(4160), - [aux_sym_preproc_def_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token2] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), - [sym_preproc_directive] = ACTIONS(4160), - [anon_sym_LPAREN2] = ACTIONS(4162), - [anon_sym_TILDE] = ACTIONS(4162), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym___extension__] = ACTIONS(4160), - [anon_sym_typedef] = ACTIONS(4160), - [anon_sym_virtual] = ACTIONS(4160), - [anon_sym_extern] = ACTIONS(4160), - [anon_sym___attribute__] = ACTIONS(4160), - [anon_sym___attribute] = ACTIONS(4160), - [anon_sym_using] = ACTIONS(4160), - [anon_sym_COLON_COLON] = ACTIONS(4162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), - [anon_sym___declspec] = ACTIONS(4160), - [anon_sym___based] = ACTIONS(4160), - [anon_sym_signed] = ACTIONS(4160), - [anon_sym_unsigned] = ACTIONS(4160), - [anon_sym_long] = ACTIONS(4160), - [anon_sym_short] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(4160), - [anon_sym_static] = ACTIONS(4160), - [anon_sym_register] = ACTIONS(4160), - [anon_sym_inline] = ACTIONS(4160), - [anon_sym___inline] = ACTIONS(4160), - [anon_sym___inline__] = ACTIONS(4160), - [anon_sym___forceinline] = ACTIONS(4160), - [anon_sym_thread_local] = ACTIONS(4160), - [anon_sym___thread] = ACTIONS(4160), - [anon_sym_const] = ACTIONS(4160), - [anon_sym_constexpr] = ACTIONS(4160), - [anon_sym_volatile] = ACTIONS(4160), - [anon_sym_restrict] = ACTIONS(4160), - [anon_sym___restrict__] = ACTIONS(4160), - [anon_sym__Atomic] = ACTIONS(4160), - [anon_sym__Noreturn] = ACTIONS(4160), - [anon_sym_noreturn] = ACTIONS(4160), - [anon_sym__Nonnull] = ACTIONS(4160), - [anon_sym_mutable] = ACTIONS(4160), - [anon_sym_constinit] = ACTIONS(4160), - [anon_sym_consteval] = ACTIONS(4160), - [anon_sym_alignas] = ACTIONS(4160), - [anon_sym__Alignas] = ACTIONS(4160), - [sym_primitive_type] = ACTIONS(4160), - [anon_sym_enum] = ACTIONS(4160), - [anon_sym_class] = ACTIONS(4160), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_union] = ACTIONS(4160), - [anon_sym_typename] = ACTIONS(4160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4160), - [anon_sym_decltype] = ACTIONS(4160), - [anon_sym_explicit] = ACTIONS(4160), - [anon_sym_private] = ACTIONS(4160), - [anon_sym_template] = ACTIONS(4160), - [anon_sym_operator] = ACTIONS(4160), - [anon_sym_friend] = ACTIONS(4160), - [anon_sym_public] = ACTIONS(4160), - [anon_sym_protected] = ACTIONS(4160), - [anon_sym_static_assert] = ACTIONS(4160), - [anon_sym_LBRACK_COLON] = ACTIONS(4162), - }, - [STATE(3164)] = { - [sym_identifier] = ACTIONS(8408), - [aux_sym_preproc_def_token1] = ACTIONS(8408), - [aux_sym_preproc_if_token1] = ACTIONS(8408), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8408), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8408), - [sym_preproc_directive] = ACTIONS(8408), - [anon_sym_LPAREN2] = ACTIONS(8410), - [anon_sym_TILDE] = ACTIONS(8410), - [anon_sym_STAR] = ACTIONS(8410), - [anon_sym_AMP_AMP] = ACTIONS(8410), - [anon_sym_AMP] = ACTIONS(8408), - [anon_sym_SEMI] = ACTIONS(8410), - [anon_sym___extension__] = ACTIONS(8408), - [anon_sym_typedef] = ACTIONS(8408), - [anon_sym_virtual] = ACTIONS(8408), - [anon_sym_extern] = ACTIONS(8408), - [anon_sym___attribute__] = ACTIONS(8408), - [anon_sym___attribute] = ACTIONS(8408), - [anon_sym_using] = ACTIONS(8408), - [anon_sym_COLON_COLON] = ACTIONS(8410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8410), - [anon_sym___declspec] = ACTIONS(8408), - [anon_sym___based] = ACTIONS(8408), - [anon_sym_RBRACE] = ACTIONS(8410), - [anon_sym_signed] = ACTIONS(8408), - [anon_sym_unsigned] = ACTIONS(8408), - [anon_sym_long] = ACTIONS(8408), - [anon_sym_short] = ACTIONS(8408), - [anon_sym_LBRACK] = ACTIONS(8408), - [anon_sym_static] = ACTIONS(8408), - [anon_sym_register] = ACTIONS(8408), - [anon_sym_inline] = ACTIONS(8408), - [anon_sym___inline] = ACTIONS(8408), - [anon_sym___inline__] = ACTIONS(8408), - [anon_sym___forceinline] = ACTIONS(8408), - [anon_sym_thread_local] = ACTIONS(8408), - [anon_sym___thread] = ACTIONS(8408), - [anon_sym_const] = ACTIONS(8408), - [anon_sym_constexpr] = ACTIONS(8408), - [anon_sym_volatile] = ACTIONS(8408), - [anon_sym_restrict] = ACTIONS(8408), - [anon_sym___restrict__] = ACTIONS(8408), - [anon_sym__Atomic] = ACTIONS(8408), - [anon_sym__Noreturn] = ACTIONS(8408), - [anon_sym_noreturn] = ACTIONS(8408), - [anon_sym__Nonnull] = ACTIONS(8408), - [anon_sym_mutable] = ACTIONS(8408), - [anon_sym_constinit] = ACTIONS(8408), - [anon_sym_consteval] = ACTIONS(8408), - [anon_sym_alignas] = ACTIONS(8408), - [anon_sym__Alignas] = ACTIONS(8408), - [sym_primitive_type] = ACTIONS(8408), - [anon_sym_enum] = ACTIONS(8408), - [anon_sym_class] = ACTIONS(8408), - [anon_sym_struct] = ACTIONS(8408), - [anon_sym_union] = ACTIONS(8408), - [anon_sym_typename] = ACTIONS(8408), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8408), - [anon_sym_decltype] = ACTIONS(8408), - [anon_sym_explicit] = ACTIONS(8408), - [anon_sym_private] = ACTIONS(8408), - [anon_sym_template] = ACTIONS(8408), - [anon_sym_operator] = ACTIONS(8408), - [anon_sym_friend] = ACTIONS(8408), - [anon_sym_public] = ACTIONS(8408), - [anon_sym_protected] = ACTIONS(8408), - [anon_sym_static_assert] = ACTIONS(8408), - [anon_sym_LBRACK_COLON] = ACTIONS(8410), - }, - [STATE(3165)] = { - [sym_identifier] = ACTIONS(4002), - [aux_sym_preproc_def_token1] = ACTIONS(4002), - [aux_sym_preproc_if_token1] = ACTIONS(4002), - [aux_sym_preproc_if_token2] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), - [sym_preproc_directive] = ACTIONS(4002), - [anon_sym_LPAREN2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(4004), - [anon_sym_STAR] = ACTIONS(4004), - [anon_sym_AMP_AMP] = ACTIONS(4004), - [anon_sym_AMP] = ACTIONS(4002), - [anon_sym_SEMI] = ACTIONS(4004), - [anon_sym___extension__] = ACTIONS(4002), - [anon_sym_typedef] = ACTIONS(4002), - [anon_sym_virtual] = ACTIONS(4002), - [anon_sym_extern] = ACTIONS(4002), - [anon_sym___attribute__] = ACTIONS(4002), - [anon_sym___attribute] = ACTIONS(4002), - [anon_sym_using] = ACTIONS(4002), - [anon_sym_COLON_COLON] = ACTIONS(4004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), - [anon_sym___declspec] = ACTIONS(4002), - [anon_sym___based] = ACTIONS(4002), - [anon_sym_signed] = ACTIONS(4002), - [anon_sym_unsigned] = ACTIONS(4002), - [anon_sym_long] = ACTIONS(4002), - [anon_sym_short] = ACTIONS(4002), - [anon_sym_LBRACK] = ACTIONS(4002), - [anon_sym_static] = ACTIONS(4002), - [anon_sym_register] = ACTIONS(4002), - [anon_sym_inline] = ACTIONS(4002), - [anon_sym___inline] = ACTIONS(4002), - [anon_sym___inline__] = ACTIONS(4002), - [anon_sym___forceinline] = ACTIONS(4002), - [anon_sym_thread_local] = ACTIONS(4002), - [anon_sym___thread] = ACTIONS(4002), - [anon_sym_const] = ACTIONS(4002), - [anon_sym_constexpr] = ACTIONS(4002), - [anon_sym_volatile] = ACTIONS(4002), - [anon_sym_restrict] = ACTIONS(4002), - [anon_sym___restrict__] = ACTIONS(4002), - [anon_sym__Atomic] = ACTIONS(4002), - [anon_sym__Noreturn] = ACTIONS(4002), - [anon_sym_noreturn] = ACTIONS(4002), - [anon_sym__Nonnull] = ACTIONS(4002), - [anon_sym_mutable] = ACTIONS(4002), - [anon_sym_constinit] = ACTIONS(4002), - [anon_sym_consteval] = ACTIONS(4002), - [anon_sym_alignas] = ACTIONS(4002), - [anon_sym__Alignas] = ACTIONS(4002), - [sym_primitive_type] = ACTIONS(4002), - [anon_sym_enum] = ACTIONS(4002), - [anon_sym_class] = ACTIONS(4002), - [anon_sym_struct] = ACTIONS(4002), - [anon_sym_union] = ACTIONS(4002), - [anon_sym_typename] = ACTIONS(4002), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4002), - [anon_sym_decltype] = ACTIONS(4002), - [anon_sym_explicit] = ACTIONS(4002), - [anon_sym_private] = ACTIONS(4002), - [anon_sym_template] = ACTIONS(4002), - [anon_sym_operator] = ACTIONS(4002), - [anon_sym_friend] = ACTIONS(4002), - [anon_sym_public] = ACTIONS(4002), - [anon_sym_protected] = ACTIONS(4002), - [anon_sym_static_assert] = ACTIONS(4002), - [anon_sym_LBRACK_COLON] = ACTIONS(4004), - }, - [STATE(3166)] = { - [sym_string_literal] = STATE(2486), - [sym_raw_string_literal] = STATE(2486), - [sym_identifier] = ACTIONS(8737), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8739), - [anon_sym_COMMA] = ACTIONS(8739), - [aux_sym_preproc_if_token2] = ACTIONS(8739), - [aux_sym_preproc_else_token1] = ACTIONS(8739), - [aux_sym_preproc_elif_token1] = ACTIONS(8737), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8739), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8739), - [anon_sym_LPAREN2] = ACTIONS(8739), - [anon_sym_DASH] = ACTIONS(8737), - [anon_sym_PLUS] = ACTIONS(8737), - [anon_sym_STAR] = ACTIONS(8737), - [anon_sym_SLASH] = ACTIONS(8737), - [anon_sym_PERCENT] = ACTIONS(8737), - [anon_sym_PIPE_PIPE] = ACTIONS(8739), - [anon_sym_AMP_AMP] = ACTIONS(8739), - [anon_sym_PIPE] = ACTIONS(8737), - [anon_sym_CARET] = ACTIONS(8737), - [anon_sym_AMP] = ACTIONS(8737), - [anon_sym_EQ_EQ] = ACTIONS(8739), - [anon_sym_BANG_EQ] = ACTIONS(8739), - [anon_sym_GT] = ACTIONS(8737), - [anon_sym_GT_EQ] = ACTIONS(8739), - [anon_sym_LT_EQ] = ACTIONS(8737), - [anon_sym_LT] = ACTIONS(8737), - [anon_sym_LT_LT] = ACTIONS(8737), - [anon_sym_GT_GT] = ACTIONS(8737), - [anon_sym_LBRACK] = ACTIONS(8739), - [anon_sym_EQ] = ACTIONS(8737), - [anon_sym_QMARK] = ACTIONS(8739), - [anon_sym_STAR_EQ] = ACTIONS(8739), - [anon_sym_SLASH_EQ] = ACTIONS(8739), - [anon_sym_PERCENT_EQ] = ACTIONS(8739), - [anon_sym_PLUS_EQ] = ACTIONS(8739), - [anon_sym_DASH_EQ] = ACTIONS(8739), - [anon_sym_LT_LT_EQ] = ACTIONS(8739), - [anon_sym_GT_GT_EQ] = ACTIONS(8739), - [anon_sym_AMP_EQ] = ACTIONS(8739), - [anon_sym_CARET_EQ] = ACTIONS(8739), - [anon_sym_PIPE_EQ] = ACTIONS(8739), - [anon_sym_and_eq] = ACTIONS(8737), - [anon_sym_or_eq] = ACTIONS(8737), - [anon_sym_xor_eq] = ACTIONS(8737), - [anon_sym_LT_EQ_GT] = ACTIONS(8739), - [anon_sym_or] = ACTIONS(8737), - [anon_sym_and] = ACTIONS(8737), - [anon_sym_bitor] = ACTIONS(8737), - [anon_sym_xor] = ACTIONS(8737), - [anon_sym_bitand] = ACTIONS(8737), - [anon_sym_not_eq] = ACTIONS(8737), - [anon_sym_DASH_DASH] = ACTIONS(8739), - [anon_sym_PLUS_PLUS] = ACTIONS(8739), - [anon_sym_DOT] = ACTIONS(8737), - [anon_sym_DOT_STAR] = ACTIONS(8739), - [anon_sym_DASH_GT] = ACTIONS(8739), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [sym_literal_suffix] = ACTIONS(8737), - }, - [STATE(3167)] = { - [sym_identifier] = ACTIONS(4002), - [aux_sym_preproc_def_token1] = ACTIONS(4002), - [aux_sym_preproc_if_token1] = ACTIONS(4002), - [aux_sym_preproc_if_token2] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), - [sym_preproc_directive] = ACTIONS(4002), - [anon_sym_LPAREN2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(4004), - [anon_sym_STAR] = ACTIONS(4004), - [anon_sym_AMP_AMP] = ACTIONS(4004), - [anon_sym_AMP] = ACTIONS(4002), - [anon_sym_SEMI] = ACTIONS(4004), - [anon_sym___extension__] = ACTIONS(4002), - [anon_sym_typedef] = ACTIONS(4002), - [anon_sym_virtual] = ACTIONS(4002), - [anon_sym_extern] = ACTIONS(4002), - [anon_sym___attribute__] = ACTIONS(4002), - [anon_sym___attribute] = ACTIONS(4002), - [anon_sym_using] = ACTIONS(4002), - [anon_sym_COLON_COLON] = ACTIONS(4004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), - [anon_sym___declspec] = ACTIONS(4002), - [anon_sym___based] = ACTIONS(4002), - [anon_sym_signed] = ACTIONS(4002), - [anon_sym_unsigned] = ACTIONS(4002), - [anon_sym_long] = ACTIONS(4002), - [anon_sym_short] = ACTIONS(4002), - [anon_sym_LBRACK] = ACTIONS(4002), - [anon_sym_static] = ACTIONS(4002), - [anon_sym_register] = ACTIONS(4002), - [anon_sym_inline] = ACTIONS(4002), - [anon_sym___inline] = ACTIONS(4002), - [anon_sym___inline__] = ACTIONS(4002), - [anon_sym___forceinline] = ACTIONS(4002), - [anon_sym_thread_local] = ACTIONS(4002), - [anon_sym___thread] = ACTIONS(4002), - [anon_sym_const] = ACTIONS(4002), - [anon_sym_constexpr] = ACTIONS(4002), - [anon_sym_volatile] = ACTIONS(4002), - [anon_sym_restrict] = ACTIONS(4002), - [anon_sym___restrict__] = ACTIONS(4002), - [anon_sym__Atomic] = ACTIONS(4002), - [anon_sym__Noreturn] = ACTIONS(4002), - [anon_sym_noreturn] = ACTIONS(4002), - [anon_sym__Nonnull] = ACTIONS(4002), - [anon_sym_mutable] = ACTIONS(4002), - [anon_sym_constinit] = ACTIONS(4002), - [anon_sym_consteval] = ACTIONS(4002), - [anon_sym_alignas] = ACTIONS(4002), - [anon_sym__Alignas] = ACTIONS(4002), - [sym_primitive_type] = ACTIONS(4002), - [anon_sym_enum] = ACTIONS(4002), - [anon_sym_class] = ACTIONS(4002), - [anon_sym_struct] = ACTIONS(4002), - [anon_sym_union] = ACTIONS(4002), - [anon_sym_typename] = ACTIONS(4002), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4002), - [anon_sym_decltype] = ACTIONS(4002), - [anon_sym_explicit] = ACTIONS(4002), - [anon_sym_private] = ACTIONS(4002), - [anon_sym_template] = ACTIONS(4002), - [anon_sym_operator] = ACTIONS(4002), - [anon_sym_friend] = ACTIONS(4002), - [anon_sym_public] = ACTIONS(4002), - [anon_sym_protected] = ACTIONS(4002), - [anon_sym_static_assert] = ACTIONS(4002), - [anon_sym_LBRACK_COLON] = ACTIONS(4004), - }, - [STATE(3168)] = { - [sym_identifier] = ACTIONS(4134), - [aux_sym_preproc_def_token1] = ACTIONS(4134), - [aux_sym_preproc_if_token1] = ACTIONS(4134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4134), - [sym_preproc_directive] = ACTIONS(4134), - [anon_sym_LPAREN2] = ACTIONS(4136), - [anon_sym_TILDE] = ACTIONS(4136), - [anon_sym_STAR] = ACTIONS(4136), - [anon_sym_AMP_AMP] = ACTIONS(4136), - [anon_sym_AMP] = ACTIONS(4134), - [anon_sym_SEMI] = ACTIONS(4136), - [anon_sym___extension__] = ACTIONS(4134), - [anon_sym_typedef] = ACTIONS(4134), - [anon_sym_virtual] = ACTIONS(4134), - [anon_sym_extern] = ACTIONS(4134), - [anon_sym___attribute__] = ACTIONS(4134), - [anon_sym___attribute] = ACTIONS(4134), - [anon_sym_using] = ACTIONS(4134), - [anon_sym_COLON_COLON] = ACTIONS(4136), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4136), - [anon_sym___declspec] = ACTIONS(4134), - [anon_sym___based] = ACTIONS(4134), - [anon_sym_RBRACE] = ACTIONS(4136), - [anon_sym_signed] = ACTIONS(4134), - [anon_sym_unsigned] = ACTIONS(4134), - [anon_sym_long] = ACTIONS(4134), - [anon_sym_short] = ACTIONS(4134), - [anon_sym_LBRACK] = ACTIONS(4134), - [anon_sym_static] = ACTIONS(4134), - [anon_sym_register] = ACTIONS(4134), - [anon_sym_inline] = ACTIONS(4134), - [anon_sym___inline] = ACTIONS(4134), - [anon_sym___inline__] = ACTIONS(4134), - [anon_sym___forceinline] = ACTIONS(4134), - [anon_sym_thread_local] = ACTIONS(4134), - [anon_sym___thread] = ACTIONS(4134), - [anon_sym_const] = ACTIONS(4134), - [anon_sym_constexpr] = ACTIONS(4134), - [anon_sym_volatile] = ACTIONS(4134), - [anon_sym_restrict] = ACTIONS(4134), - [anon_sym___restrict__] = ACTIONS(4134), - [anon_sym__Atomic] = ACTIONS(4134), - [anon_sym__Noreturn] = ACTIONS(4134), - [anon_sym_noreturn] = ACTIONS(4134), - [anon_sym__Nonnull] = ACTIONS(4134), - [anon_sym_mutable] = ACTIONS(4134), - [anon_sym_constinit] = ACTIONS(4134), - [anon_sym_consteval] = ACTIONS(4134), - [anon_sym_alignas] = ACTIONS(4134), - [anon_sym__Alignas] = ACTIONS(4134), - [sym_primitive_type] = ACTIONS(4134), - [anon_sym_enum] = ACTIONS(4134), - [anon_sym_class] = ACTIONS(4134), - [anon_sym_struct] = ACTIONS(4134), - [anon_sym_union] = ACTIONS(4134), - [anon_sym_typename] = ACTIONS(4134), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4134), - [anon_sym_decltype] = ACTIONS(4134), - [anon_sym_explicit] = ACTIONS(4134), - [anon_sym_private] = ACTIONS(4134), - [anon_sym_template] = ACTIONS(4134), - [anon_sym_operator] = ACTIONS(4134), - [anon_sym_friend] = ACTIONS(4134), - [anon_sym_public] = ACTIONS(4134), - [anon_sym_protected] = ACTIONS(4134), - [anon_sym_static_assert] = ACTIONS(4134), - [anon_sym_LBRACK_COLON] = ACTIONS(4136), - }, - [STATE(3169)] = { - [sym_identifier] = ACTIONS(8741), - [anon_sym_LPAREN2] = ACTIONS(8743), - [anon_sym_TILDE] = ACTIONS(8743), - [anon_sym_STAR] = ACTIONS(8743), - [anon_sym_AMP_AMP] = ACTIONS(8743), - [anon_sym_AMP] = ACTIONS(8741), - [anon_sym___extension__] = ACTIONS(8741), - [anon_sym_virtual] = ACTIONS(8741), - [anon_sym_extern] = ACTIONS(8741), - [anon_sym___attribute__] = ACTIONS(8741), - [anon_sym___attribute] = ACTIONS(8741), - [anon_sym_using] = ACTIONS(8741), - [anon_sym_COLON_COLON] = ACTIONS(8743), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8743), - [anon_sym___declspec] = ACTIONS(8741), - [anon_sym___based] = ACTIONS(8741), - [anon_sym___cdecl] = ACTIONS(8741), - [anon_sym___clrcall] = ACTIONS(8741), - [anon_sym___stdcall] = ACTIONS(8741), - [anon_sym___fastcall] = ACTIONS(8741), - [anon_sym___thiscall] = ACTIONS(8741), - [anon_sym___vectorcall] = ACTIONS(8741), - [anon_sym_LBRACE] = ACTIONS(8743), - [anon_sym_signed] = ACTIONS(8741), - [anon_sym_unsigned] = ACTIONS(8741), - [anon_sym_long] = ACTIONS(8741), - [anon_sym_short] = ACTIONS(8741), - [anon_sym_LBRACK] = ACTIONS(8741), - [anon_sym_static] = ACTIONS(8741), - [anon_sym_register] = ACTIONS(8741), - [anon_sym_inline] = ACTIONS(8741), - [anon_sym___inline] = ACTIONS(8741), - [anon_sym___inline__] = ACTIONS(8741), - [anon_sym___forceinline] = ACTIONS(8741), - [anon_sym_thread_local] = ACTIONS(8741), - [anon_sym___thread] = ACTIONS(8741), - [anon_sym_const] = ACTIONS(8741), - [anon_sym_constexpr] = ACTIONS(8741), - [anon_sym_volatile] = ACTIONS(8741), - [anon_sym_restrict] = ACTIONS(8741), - [anon_sym___restrict__] = ACTIONS(8741), - [anon_sym__Atomic] = ACTIONS(8741), - [anon_sym__Noreturn] = ACTIONS(8741), - [anon_sym_noreturn] = ACTIONS(8741), - [anon_sym__Nonnull] = ACTIONS(8741), - [anon_sym_mutable] = ACTIONS(8741), - [anon_sym_constinit] = ACTIONS(8741), - [anon_sym_consteval] = ACTIONS(8741), - [anon_sym_alignas] = ACTIONS(8741), - [anon_sym__Alignas] = ACTIONS(8741), - [sym_primitive_type] = ACTIONS(8741), - [anon_sym_enum] = ACTIONS(8741), - [anon_sym_class] = ACTIONS(8741), - [anon_sym_struct] = ACTIONS(8741), - [anon_sym_union] = ACTIONS(8741), - [anon_sym_typename] = ACTIONS(8741), - [anon_sym_DASH_GT] = ACTIONS(8743), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8741), - [anon_sym_decltype] = ACTIONS(8741), - [anon_sym_explicit] = ACTIONS(8741), - [anon_sym_template] = ACTIONS(8741), - [anon_sym_operator] = ACTIONS(8741), - [anon_sym_friend] = ACTIONS(8741), - [anon_sym_noexcept] = ACTIONS(8741), - [anon_sym_throw] = ACTIONS(8741), - [anon_sym_concept] = ACTIONS(8741), - [anon_sym_requires] = ACTIONS(8741), - [anon_sym_LBRACK_COLON] = ACTIONS(8743), - }, - [STATE(3170)] = { - [sym_identifier] = ACTIONS(6237), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), - [anon_sym_COMMA] = ACTIONS(6230), - [anon_sym_RPAREN] = ACTIONS(6230), - [aux_sym_preproc_if_token2] = ACTIONS(6230), - [aux_sym_preproc_else_token1] = ACTIONS(6230), - [aux_sym_preproc_elif_token1] = ACTIONS(6237), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6230), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6230), - [anon_sym_LPAREN2] = ACTIONS(6230), - [anon_sym_DASH] = ACTIONS(6237), - [anon_sym_PLUS] = ACTIONS(6237), - [anon_sym_STAR] = ACTIONS(6230), - [anon_sym_SLASH] = ACTIONS(6237), - [anon_sym_PERCENT] = ACTIONS(6230), - [anon_sym_PIPE_PIPE] = ACTIONS(6230), - [anon_sym_AMP_AMP] = ACTIONS(6230), - [anon_sym_PIPE] = ACTIONS(6237), - [anon_sym_CARET] = ACTIONS(6230), - [anon_sym_AMP] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6230), - [anon_sym_BANG_EQ] = ACTIONS(6230), - [anon_sym_GT] = ACTIONS(6237), - [anon_sym_GT_EQ] = ACTIONS(6230), - [anon_sym_LT_EQ] = ACTIONS(6237), - [anon_sym_LT] = ACTIONS(6237), - [anon_sym_LT_LT] = ACTIONS(6230), - [anon_sym_GT_GT] = ACTIONS(6230), - [anon_sym_SEMI] = ACTIONS(6230), - [anon_sym___extension__] = ACTIONS(6226), - [anon_sym___attribute__] = ACTIONS(6237), - [anon_sym___attribute] = ACTIONS(6237), - [anon_sym_COLON] = ACTIONS(6237), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6230), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_RBRACE] = ACTIONS(6230), - [anon_sym_LBRACK] = ACTIONS(6230), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6226), - [anon_sym_volatile] = ACTIONS(6226), - [anon_sym_restrict] = ACTIONS(6226), - [anon_sym___restrict__] = ACTIONS(6226), - [anon_sym__Atomic] = ACTIONS(6226), - [anon_sym__Noreturn] = ACTIONS(6226), - [anon_sym_noreturn] = ACTIONS(6226), - [anon_sym__Nonnull] = ACTIONS(6226), - [anon_sym_mutable] = ACTIONS(6226), - [anon_sym_constinit] = ACTIONS(6226), - [anon_sym_consteval] = ACTIONS(6226), - [anon_sym_alignas] = ACTIONS(6226), - [anon_sym__Alignas] = ACTIONS(6226), - [anon_sym_QMARK] = ACTIONS(6230), - [anon_sym_LT_EQ_GT] = ACTIONS(6230), - [anon_sym_or] = ACTIONS(6237), - [anon_sym_and] = ACTIONS(6237), - [anon_sym_bitor] = ACTIONS(6237), - [anon_sym_xor] = ACTIONS(6237), - [anon_sym_bitand] = ACTIONS(6237), - [anon_sym_not_eq] = ACTIONS(6237), - [anon_sym_DASH_DASH] = ACTIONS(6230), - [anon_sym_PLUS_PLUS] = ACTIONS(6230), - [anon_sym_DOT] = ACTIONS(6237), - [anon_sym_DOT_STAR] = ACTIONS(6230), - [anon_sym_DASH_GT] = ACTIONS(6230), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6226), - [anon_sym_decltype] = ACTIONS(6226), - [anon_sym_COLON_RBRACK] = ACTIONS(6230), - }, - [STATE(3171)] = { - [sym_attribute_specifier] = STATE(4247), - [sym_attribute_declaration] = STATE(4729), - [sym_gnu_asm_expression] = STATE(8972), - [sym_virtual_specifier] = STATE(4992), - [sym__function_attributes_end] = STATE(4510), - [sym__function_postfix] = STATE(5590), - [sym_trailing_return_type] = STATE(4603), - [sym_requires_clause] = STATE(5590), - [aux_sym_type_definition_repeat1] = STATE(4247), - [aux_sym_attributed_declarator_repeat1] = STATE(4729), - [aux_sym__function_postfix_repeat1] = STATE(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_RPAREN] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym___attribute__] = ACTIONS(6410), - [anon_sym___attribute] = ACTIONS(6412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7627), - [anon_sym_and] = ACTIONS(7627), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7627), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(8210), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8213), - [anon_sym_override] = ACTIONS(8213), - [anon_sym_requires] = ACTIONS(8216), - [anon_sym_DASH_GT_STAR] = ACTIONS(7627), - }, - [STATE(3172)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3315), - [sym_identifier] = ACTIONS(7402), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7404), - [anon_sym_COMMA] = ACTIONS(7404), - [aux_sym_preproc_if_token2] = ACTIONS(7404), - [aux_sym_preproc_else_token1] = ACTIONS(7404), - [aux_sym_preproc_elif_token1] = ACTIONS(7402), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7404), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7404), - [anon_sym_LPAREN2] = ACTIONS(7404), - [anon_sym_DASH] = ACTIONS(7402), - [anon_sym_PLUS] = ACTIONS(7402), - [anon_sym_STAR] = ACTIONS(7404), - [anon_sym_SLASH] = ACTIONS(7402), - [anon_sym_PERCENT] = ACTIONS(7404), - [anon_sym_PIPE_PIPE] = ACTIONS(7404), - [anon_sym_AMP_AMP] = ACTIONS(7404), - [anon_sym_PIPE] = ACTIONS(7402), - [anon_sym_CARET] = ACTIONS(7404), - [anon_sym_AMP] = ACTIONS(7402), - [anon_sym_EQ_EQ] = ACTIONS(7404), - [anon_sym_BANG_EQ] = ACTIONS(7404), - [anon_sym_GT] = ACTIONS(7402), - [anon_sym_GT_EQ] = ACTIONS(7404), - [anon_sym_LT_EQ] = ACTIONS(7402), - [anon_sym_LT] = ACTIONS(7402), - [anon_sym_LT_LT] = ACTIONS(7404), - [anon_sym_GT_GT] = ACTIONS(7404), - [anon_sym___extension__] = ACTIONS(7402), - [anon_sym___attribute__] = ACTIONS(7402), - [anon_sym___attribute] = ACTIONS(7402), - [anon_sym_LBRACE] = ACTIONS(7404), - [anon_sym_signed] = ACTIONS(8745), - [anon_sym_unsigned] = ACTIONS(8745), - [anon_sym_long] = ACTIONS(8745), - [anon_sym_short] = ACTIONS(8745), - [anon_sym_LBRACK] = ACTIONS(7404), - [anon_sym_RBRACK] = ACTIONS(7404), - [anon_sym_const] = ACTIONS(7402), - [anon_sym_constexpr] = ACTIONS(7402), - [anon_sym_volatile] = ACTIONS(7402), - [anon_sym_restrict] = ACTIONS(7402), - [anon_sym___restrict__] = ACTIONS(7402), - [anon_sym__Atomic] = ACTIONS(7402), - [anon_sym__Noreturn] = ACTIONS(7402), - [anon_sym_noreturn] = ACTIONS(7402), - [anon_sym__Nonnull] = ACTIONS(7402), - [anon_sym_mutable] = ACTIONS(7402), - [anon_sym_constinit] = ACTIONS(7402), - [anon_sym_consteval] = ACTIONS(7402), - [anon_sym_alignas] = ACTIONS(7402), - [anon_sym__Alignas] = ACTIONS(7402), - [anon_sym_QMARK] = ACTIONS(7404), - [anon_sym_LT_EQ_GT] = ACTIONS(7404), - [anon_sym_or] = ACTIONS(7402), - [anon_sym_and] = ACTIONS(7402), - [anon_sym_bitor] = ACTIONS(7402), - [anon_sym_xor] = ACTIONS(7402), - [anon_sym_bitand] = ACTIONS(7402), - [anon_sym_not_eq] = ACTIONS(7402), - [anon_sym_DASH_DASH] = ACTIONS(7404), - [anon_sym_PLUS_PLUS] = ACTIONS(7404), - [anon_sym_DOT] = ACTIONS(7402), - [anon_sym_DOT_STAR] = ACTIONS(7404), - [anon_sym_DASH_GT] = ACTIONS(7404), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7402), - [anon_sym_override] = ACTIONS(7402), - [anon_sym_requires] = ACTIONS(7402), - }, - [STATE(3173)] = { - [sym_identifier] = ACTIONS(8404), - [aux_sym_preproc_def_token1] = ACTIONS(8404), - [aux_sym_preproc_if_token1] = ACTIONS(8404), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8404), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8404), - [sym_preproc_directive] = ACTIONS(8404), - [anon_sym_LPAREN2] = ACTIONS(8406), - [anon_sym_TILDE] = ACTIONS(8406), - [anon_sym_STAR] = ACTIONS(8406), - [anon_sym_AMP_AMP] = ACTIONS(8406), - [anon_sym_AMP] = ACTIONS(8404), - [anon_sym_SEMI] = ACTIONS(8406), - [anon_sym___extension__] = ACTIONS(8404), - [anon_sym_typedef] = ACTIONS(8404), - [anon_sym_virtual] = ACTIONS(8404), - [anon_sym_extern] = ACTIONS(8404), - [anon_sym___attribute__] = ACTIONS(8404), - [anon_sym___attribute] = ACTIONS(8404), - [anon_sym_using] = ACTIONS(8404), - [anon_sym_COLON_COLON] = ACTIONS(8406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8406), - [anon_sym___declspec] = ACTIONS(8404), - [anon_sym___based] = ACTIONS(8404), - [anon_sym_RBRACE] = ACTIONS(8406), - [anon_sym_signed] = ACTIONS(8404), - [anon_sym_unsigned] = ACTIONS(8404), - [anon_sym_long] = ACTIONS(8404), - [anon_sym_short] = ACTIONS(8404), - [anon_sym_LBRACK] = ACTIONS(8404), - [anon_sym_static] = ACTIONS(8404), - [anon_sym_register] = ACTIONS(8404), - [anon_sym_inline] = ACTIONS(8404), - [anon_sym___inline] = ACTIONS(8404), - [anon_sym___inline__] = ACTIONS(8404), - [anon_sym___forceinline] = ACTIONS(8404), - [anon_sym_thread_local] = ACTIONS(8404), - [anon_sym___thread] = ACTIONS(8404), - [anon_sym_const] = ACTIONS(8404), - [anon_sym_constexpr] = ACTIONS(8404), - [anon_sym_volatile] = ACTIONS(8404), - [anon_sym_restrict] = ACTIONS(8404), - [anon_sym___restrict__] = ACTIONS(8404), - [anon_sym__Atomic] = ACTIONS(8404), - [anon_sym__Noreturn] = ACTIONS(8404), - [anon_sym_noreturn] = ACTIONS(8404), - [anon_sym__Nonnull] = ACTIONS(8404), - [anon_sym_mutable] = ACTIONS(8404), - [anon_sym_constinit] = ACTIONS(8404), - [anon_sym_consteval] = ACTIONS(8404), - [anon_sym_alignas] = ACTIONS(8404), - [anon_sym__Alignas] = ACTIONS(8404), - [sym_primitive_type] = ACTIONS(8404), - [anon_sym_enum] = ACTIONS(8404), - [anon_sym_class] = ACTIONS(8404), - [anon_sym_struct] = ACTIONS(8404), - [anon_sym_union] = ACTIONS(8404), - [anon_sym_typename] = ACTIONS(8404), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8404), - [anon_sym_decltype] = ACTIONS(8404), - [anon_sym_explicit] = ACTIONS(8404), - [anon_sym_private] = ACTIONS(8404), - [anon_sym_template] = ACTIONS(8404), - [anon_sym_operator] = ACTIONS(8404), - [anon_sym_friend] = ACTIONS(8404), - [anon_sym_public] = ACTIONS(8404), - [anon_sym_protected] = ACTIONS(8404), - [anon_sym_static_assert] = ACTIONS(8404), - [anon_sym_LBRACK_COLON] = ACTIONS(8406), - }, - [STATE(3174)] = { - [sym_identifier] = ACTIONS(4062), - [aux_sym_preproc_def_token1] = ACTIONS(4062), - [aux_sym_preproc_if_token1] = ACTIONS(4062), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4062), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4062), - [sym_preproc_directive] = ACTIONS(4062), - [anon_sym_LPAREN2] = ACTIONS(4064), - [anon_sym_TILDE] = ACTIONS(4064), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_AMP_AMP] = ACTIONS(4064), - [anon_sym_AMP] = ACTIONS(4062), - [anon_sym_SEMI] = ACTIONS(4064), - [anon_sym___extension__] = ACTIONS(4062), - [anon_sym_typedef] = ACTIONS(4062), - [anon_sym_virtual] = ACTIONS(4062), - [anon_sym_extern] = ACTIONS(4062), - [anon_sym___attribute__] = ACTIONS(4062), - [anon_sym___attribute] = ACTIONS(4062), - [anon_sym_using] = ACTIONS(4062), - [anon_sym_COLON_COLON] = ACTIONS(4064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4064), - [anon_sym___declspec] = ACTIONS(4062), - [anon_sym___based] = ACTIONS(4062), - [anon_sym_RBRACE] = ACTIONS(4064), - [anon_sym_signed] = ACTIONS(4062), - [anon_sym_unsigned] = ACTIONS(4062), - [anon_sym_long] = ACTIONS(4062), - [anon_sym_short] = ACTIONS(4062), - [anon_sym_LBRACK] = ACTIONS(4062), - [anon_sym_static] = ACTIONS(4062), - [anon_sym_register] = ACTIONS(4062), - [anon_sym_inline] = ACTIONS(4062), - [anon_sym___inline] = ACTIONS(4062), - [anon_sym___inline__] = ACTIONS(4062), - [anon_sym___forceinline] = ACTIONS(4062), - [anon_sym_thread_local] = ACTIONS(4062), - [anon_sym___thread] = ACTIONS(4062), - [anon_sym_const] = ACTIONS(4062), - [anon_sym_constexpr] = ACTIONS(4062), - [anon_sym_volatile] = ACTIONS(4062), - [anon_sym_restrict] = ACTIONS(4062), - [anon_sym___restrict__] = ACTIONS(4062), - [anon_sym__Atomic] = ACTIONS(4062), - [anon_sym__Noreturn] = ACTIONS(4062), - [anon_sym_noreturn] = ACTIONS(4062), - [anon_sym__Nonnull] = ACTIONS(4062), - [anon_sym_mutable] = ACTIONS(4062), - [anon_sym_constinit] = ACTIONS(4062), - [anon_sym_consteval] = ACTIONS(4062), - [anon_sym_alignas] = ACTIONS(4062), - [anon_sym__Alignas] = ACTIONS(4062), - [sym_primitive_type] = ACTIONS(4062), - [anon_sym_enum] = ACTIONS(4062), - [anon_sym_class] = ACTIONS(4062), - [anon_sym_struct] = ACTIONS(4062), - [anon_sym_union] = ACTIONS(4062), - [anon_sym_typename] = ACTIONS(4062), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4062), - [anon_sym_decltype] = ACTIONS(4062), - [anon_sym_explicit] = ACTIONS(4062), - [anon_sym_private] = ACTIONS(4062), - [anon_sym_template] = ACTIONS(4062), - [anon_sym_operator] = ACTIONS(4062), - [anon_sym_friend] = ACTIONS(4062), - [anon_sym_public] = ACTIONS(4062), - [anon_sym_protected] = ACTIONS(4062), - [anon_sym_static_assert] = ACTIONS(4062), - [anon_sym_LBRACK_COLON] = ACTIONS(4064), - }, - [STATE(3175)] = { - [sym_identifier] = ACTIONS(8347), - [aux_sym_preproc_def_token1] = ACTIONS(8347), - [aux_sym_preproc_if_token1] = ACTIONS(8347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8347), - [sym_preproc_directive] = ACTIONS(8347), - [anon_sym_LPAREN2] = ACTIONS(8349), - [anon_sym_TILDE] = ACTIONS(8349), - [anon_sym_STAR] = ACTIONS(8349), - [anon_sym_AMP_AMP] = ACTIONS(8349), - [anon_sym_AMP] = ACTIONS(8347), - [anon_sym_SEMI] = ACTIONS(8349), - [anon_sym___extension__] = ACTIONS(8347), - [anon_sym_typedef] = ACTIONS(8347), - [anon_sym_virtual] = ACTIONS(8347), - [anon_sym_extern] = ACTIONS(8347), - [anon_sym___attribute__] = ACTIONS(8347), - [anon_sym___attribute] = ACTIONS(8347), - [anon_sym_using] = ACTIONS(8347), - [anon_sym_COLON_COLON] = ACTIONS(8349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8349), - [anon_sym___declspec] = ACTIONS(8347), - [anon_sym___based] = ACTIONS(8347), - [anon_sym_RBRACE] = ACTIONS(8349), - [anon_sym_signed] = ACTIONS(8347), - [anon_sym_unsigned] = ACTIONS(8347), - [anon_sym_long] = ACTIONS(8347), - [anon_sym_short] = ACTIONS(8347), - [anon_sym_LBRACK] = ACTIONS(8347), - [anon_sym_static] = ACTIONS(8347), - [anon_sym_register] = ACTIONS(8347), - [anon_sym_inline] = ACTIONS(8347), - [anon_sym___inline] = ACTIONS(8347), - [anon_sym___inline__] = ACTIONS(8347), - [anon_sym___forceinline] = ACTIONS(8347), - [anon_sym_thread_local] = ACTIONS(8347), - [anon_sym___thread] = ACTIONS(8347), - [anon_sym_const] = ACTIONS(8347), - [anon_sym_constexpr] = ACTIONS(8347), - [anon_sym_volatile] = ACTIONS(8347), - [anon_sym_restrict] = ACTIONS(8347), - [anon_sym___restrict__] = ACTIONS(8347), - [anon_sym__Atomic] = ACTIONS(8347), - [anon_sym__Noreturn] = ACTIONS(8347), - [anon_sym_noreturn] = ACTIONS(8347), - [anon_sym__Nonnull] = ACTIONS(8347), - [anon_sym_mutable] = ACTIONS(8347), - [anon_sym_constinit] = ACTIONS(8347), - [anon_sym_consteval] = ACTIONS(8347), - [anon_sym_alignas] = ACTIONS(8347), - [anon_sym__Alignas] = ACTIONS(8347), - [sym_primitive_type] = ACTIONS(8347), - [anon_sym_enum] = ACTIONS(8347), - [anon_sym_class] = ACTIONS(8347), - [anon_sym_struct] = ACTIONS(8347), - [anon_sym_union] = ACTIONS(8347), - [anon_sym_typename] = ACTIONS(8347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8347), - [anon_sym_decltype] = ACTIONS(8347), - [anon_sym_explicit] = ACTIONS(8347), - [anon_sym_private] = ACTIONS(8347), - [anon_sym_template] = ACTIONS(8347), - [anon_sym_operator] = ACTIONS(8347), - [anon_sym_friend] = ACTIONS(8347), - [anon_sym_public] = ACTIONS(8347), - [anon_sym_protected] = ACTIONS(8347), - [anon_sym_static_assert] = ACTIONS(8347), - [anon_sym_LBRACK_COLON] = ACTIONS(8349), - }, - [STATE(3176)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3316), - [sym_identifier] = ACTIONS(7408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7410), - [anon_sym_COMMA] = ACTIONS(7410), - [aux_sym_preproc_if_token2] = ACTIONS(7410), - [aux_sym_preproc_else_token1] = ACTIONS(7410), - [aux_sym_preproc_elif_token1] = ACTIONS(7408), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7410), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7410), - [anon_sym_LPAREN2] = ACTIONS(7410), - [anon_sym_DASH] = ACTIONS(7408), - [anon_sym_PLUS] = ACTIONS(7408), - [anon_sym_STAR] = ACTIONS(7410), - [anon_sym_SLASH] = ACTIONS(7408), - [anon_sym_PERCENT] = ACTIONS(7410), - [anon_sym_PIPE_PIPE] = ACTIONS(7410), - [anon_sym_AMP_AMP] = ACTIONS(7410), - [anon_sym_PIPE] = ACTIONS(7408), - [anon_sym_CARET] = ACTIONS(7410), - [anon_sym_AMP] = ACTIONS(7408), - [anon_sym_EQ_EQ] = ACTIONS(7410), - [anon_sym_BANG_EQ] = ACTIONS(7410), - [anon_sym_GT] = ACTIONS(7408), - [anon_sym_GT_EQ] = ACTIONS(7410), - [anon_sym_LT_EQ] = ACTIONS(7408), - [anon_sym_LT] = ACTIONS(7408), - [anon_sym_LT_LT] = ACTIONS(7410), - [anon_sym_GT_GT] = ACTIONS(7410), - [anon_sym___extension__] = ACTIONS(7408), - [anon_sym___attribute__] = ACTIONS(7408), - [anon_sym___attribute] = ACTIONS(7408), - [anon_sym_LBRACE] = ACTIONS(7410), - [anon_sym_signed] = ACTIONS(8747), - [anon_sym_unsigned] = ACTIONS(8747), - [anon_sym_long] = ACTIONS(8747), - [anon_sym_short] = ACTIONS(8747), - [anon_sym_LBRACK] = ACTIONS(7410), - [anon_sym_RBRACK] = ACTIONS(7410), - [anon_sym_const] = ACTIONS(7408), - [anon_sym_constexpr] = ACTIONS(7408), - [anon_sym_volatile] = ACTIONS(7408), - [anon_sym_restrict] = ACTIONS(7408), - [anon_sym___restrict__] = ACTIONS(7408), - [anon_sym__Atomic] = ACTIONS(7408), - [anon_sym__Noreturn] = ACTIONS(7408), - [anon_sym_noreturn] = ACTIONS(7408), - [anon_sym__Nonnull] = ACTIONS(7408), - [anon_sym_mutable] = ACTIONS(7408), - [anon_sym_constinit] = ACTIONS(7408), - [anon_sym_consteval] = ACTIONS(7408), - [anon_sym_alignas] = ACTIONS(7408), - [anon_sym__Alignas] = ACTIONS(7408), - [anon_sym_QMARK] = ACTIONS(7410), - [anon_sym_LT_EQ_GT] = ACTIONS(7410), - [anon_sym_or] = ACTIONS(7408), - [anon_sym_and] = ACTIONS(7408), - [anon_sym_bitor] = ACTIONS(7408), - [anon_sym_xor] = ACTIONS(7408), - [anon_sym_bitand] = ACTIONS(7408), - [anon_sym_not_eq] = ACTIONS(7408), - [anon_sym_DASH_DASH] = ACTIONS(7410), - [anon_sym_PLUS_PLUS] = ACTIONS(7410), - [anon_sym_DOT] = ACTIONS(7408), - [anon_sym_DOT_STAR] = ACTIONS(7410), - [anon_sym_DASH_GT] = ACTIONS(7410), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7408), - [anon_sym_override] = ACTIONS(7408), - [anon_sym_requires] = ACTIONS(7408), - }, - [STATE(3177)] = { - [sym_identifier] = ACTIONS(8404), - [aux_sym_preproc_def_token1] = ACTIONS(8404), - [aux_sym_preproc_if_token1] = ACTIONS(8404), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8404), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8404), - [sym_preproc_directive] = ACTIONS(8404), - [anon_sym_LPAREN2] = ACTIONS(8406), - [anon_sym_TILDE] = ACTIONS(8406), - [anon_sym_STAR] = ACTIONS(8406), - [anon_sym_AMP_AMP] = ACTIONS(8406), - [anon_sym_AMP] = ACTIONS(8404), - [anon_sym_SEMI] = ACTIONS(8406), - [anon_sym___extension__] = ACTIONS(8404), - [anon_sym_typedef] = ACTIONS(8404), - [anon_sym_virtual] = ACTIONS(8404), - [anon_sym_extern] = ACTIONS(8404), - [anon_sym___attribute__] = ACTIONS(8404), - [anon_sym___attribute] = ACTIONS(8404), - [anon_sym_using] = ACTIONS(8404), - [anon_sym_COLON_COLON] = ACTIONS(8406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8406), - [anon_sym___declspec] = ACTIONS(8404), - [anon_sym___based] = ACTIONS(8404), - [anon_sym_RBRACE] = ACTIONS(8406), - [anon_sym_signed] = ACTIONS(8404), - [anon_sym_unsigned] = ACTIONS(8404), - [anon_sym_long] = ACTIONS(8404), - [anon_sym_short] = ACTIONS(8404), - [anon_sym_LBRACK] = ACTIONS(8404), - [anon_sym_static] = ACTIONS(8404), - [anon_sym_register] = ACTIONS(8404), - [anon_sym_inline] = ACTIONS(8404), - [anon_sym___inline] = ACTIONS(8404), - [anon_sym___inline__] = ACTIONS(8404), - [anon_sym___forceinline] = ACTIONS(8404), - [anon_sym_thread_local] = ACTIONS(8404), - [anon_sym___thread] = ACTIONS(8404), - [anon_sym_const] = ACTIONS(8404), - [anon_sym_constexpr] = ACTIONS(8404), - [anon_sym_volatile] = ACTIONS(8404), - [anon_sym_restrict] = ACTIONS(8404), - [anon_sym___restrict__] = ACTIONS(8404), - [anon_sym__Atomic] = ACTIONS(8404), - [anon_sym__Noreturn] = ACTIONS(8404), - [anon_sym_noreturn] = ACTIONS(8404), - [anon_sym__Nonnull] = ACTIONS(8404), - [anon_sym_mutable] = ACTIONS(8404), - [anon_sym_constinit] = ACTIONS(8404), - [anon_sym_consteval] = ACTIONS(8404), - [anon_sym_alignas] = ACTIONS(8404), - [anon_sym__Alignas] = ACTIONS(8404), - [sym_primitive_type] = ACTIONS(8404), - [anon_sym_enum] = ACTIONS(8404), - [anon_sym_class] = ACTIONS(8404), - [anon_sym_struct] = ACTIONS(8404), - [anon_sym_union] = ACTIONS(8404), - [anon_sym_typename] = ACTIONS(8404), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8404), - [anon_sym_decltype] = ACTIONS(8404), - [anon_sym_explicit] = ACTIONS(8404), - [anon_sym_private] = ACTIONS(8404), - [anon_sym_template] = ACTIONS(8404), - [anon_sym_operator] = ACTIONS(8404), - [anon_sym_friend] = ACTIONS(8404), - [anon_sym_public] = ACTIONS(8404), - [anon_sym_protected] = ACTIONS(8404), - [anon_sym_static_assert] = ACTIONS(8404), - [anon_sym_LBRACK_COLON] = ACTIONS(8406), - }, - [STATE(3178)] = { - [sym_identifier] = ACTIONS(4070), - [aux_sym_preproc_def_token1] = ACTIONS(4070), - [aux_sym_preproc_if_token1] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), - [sym_preproc_directive] = ACTIONS(4070), - [anon_sym_LPAREN2] = ACTIONS(4072), - [anon_sym_TILDE] = ACTIONS(4072), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4070), - [anon_sym_SEMI] = ACTIONS(4072), - [anon_sym___extension__] = ACTIONS(4070), - [anon_sym_typedef] = ACTIONS(4070), - [anon_sym_virtual] = ACTIONS(4070), - [anon_sym_extern] = ACTIONS(4070), - [anon_sym___attribute__] = ACTIONS(4070), - [anon_sym___attribute] = ACTIONS(4070), - [anon_sym_using] = ACTIONS(4070), - [anon_sym_COLON_COLON] = ACTIONS(4072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), - [anon_sym___declspec] = ACTIONS(4070), - [anon_sym___based] = ACTIONS(4070), - [anon_sym_RBRACE] = ACTIONS(4072), - [anon_sym_signed] = ACTIONS(4070), - [anon_sym_unsigned] = ACTIONS(4070), - [anon_sym_long] = ACTIONS(4070), - [anon_sym_short] = ACTIONS(4070), - [anon_sym_LBRACK] = ACTIONS(4070), - [anon_sym_static] = ACTIONS(4070), - [anon_sym_register] = ACTIONS(4070), - [anon_sym_inline] = ACTIONS(4070), - [anon_sym___inline] = ACTIONS(4070), - [anon_sym___inline__] = ACTIONS(4070), - [anon_sym___forceinline] = ACTIONS(4070), - [anon_sym_thread_local] = ACTIONS(4070), - [anon_sym___thread] = ACTIONS(4070), - [anon_sym_const] = ACTIONS(4070), - [anon_sym_constexpr] = ACTIONS(4070), - [anon_sym_volatile] = ACTIONS(4070), - [anon_sym_restrict] = ACTIONS(4070), - [anon_sym___restrict__] = ACTIONS(4070), - [anon_sym__Atomic] = ACTIONS(4070), - [anon_sym__Noreturn] = ACTIONS(4070), - [anon_sym_noreturn] = ACTIONS(4070), - [anon_sym__Nonnull] = ACTIONS(4070), - [anon_sym_mutable] = ACTIONS(4070), - [anon_sym_constinit] = ACTIONS(4070), - [anon_sym_consteval] = ACTIONS(4070), - [anon_sym_alignas] = ACTIONS(4070), - [anon_sym__Alignas] = ACTIONS(4070), - [sym_primitive_type] = ACTIONS(4070), - [anon_sym_enum] = ACTIONS(4070), - [anon_sym_class] = ACTIONS(4070), - [anon_sym_struct] = ACTIONS(4070), - [anon_sym_union] = ACTIONS(4070), - [anon_sym_typename] = ACTIONS(4070), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4070), - [anon_sym_decltype] = ACTIONS(4070), - [anon_sym_explicit] = ACTIONS(4070), - [anon_sym_private] = ACTIONS(4070), - [anon_sym_template] = ACTIONS(4070), - [anon_sym_operator] = ACTIONS(4070), - [anon_sym_friend] = ACTIONS(4070), - [anon_sym_public] = ACTIONS(4070), - [anon_sym_protected] = ACTIONS(4070), - [anon_sym_static_assert] = ACTIONS(4070), - [anon_sym_LBRACK_COLON] = ACTIONS(4072), - }, - [STATE(3179)] = { - [sym_identifier] = ACTIONS(4144), - [aux_sym_preproc_def_token1] = ACTIONS(4144), - [aux_sym_preproc_if_token1] = ACTIONS(4144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4144), - [sym_preproc_directive] = ACTIONS(4144), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_TILDE] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_AMP] = ACTIONS(4144), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_typedef] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_using] = ACTIONS(4144), - [anon_sym_COLON_COLON] = ACTIONS(4146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4146), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym_RBRACE] = ACTIONS(4146), - [anon_sym_signed] = ACTIONS(4144), - [anon_sym_unsigned] = ACTIONS(4144), - [anon_sym_long] = ACTIONS(4144), - [anon_sym_short] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [sym_primitive_type] = ACTIONS(4144), - [anon_sym_enum] = ACTIONS(4144), - [anon_sym_class] = ACTIONS(4144), - [anon_sym_struct] = ACTIONS(4144), - [anon_sym_union] = ACTIONS(4144), - [anon_sym_typename] = ACTIONS(4144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_explicit] = ACTIONS(4144), - [anon_sym_private] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_friend] = ACTIONS(4144), - [anon_sym_public] = ACTIONS(4144), - [anon_sym_protected] = ACTIONS(4144), - [anon_sym_static_assert] = ACTIONS(4144), - [anon_sym_LBRACK_COLON] = ACTIONS(4146), - }, - [STATE(3180)] = { - [sym_identifier] = ACTIONS(8434), - [aux_sym_preproc_def_token1] = ACTIONS(8434), - [aux_sym_preproc_if_token1] = ACTIONS(8434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8434), - [sym_preproc_directive] = ACTIONS(8434), - [anon_sym_LPAREN2] = ACTIONS(8436), - [anon_sym_TILDE] = ACTIONS(8436), - [anon_sym_STAR] = ACTIONS(8436), - [anon_sym_AMP_AMP] = ACTIONS(8436), - [anon_sym_AMP] = ACTIONS(8434), - [anon_sym_SEMI] = ACTIONS(8436), - [anon_sym___extension__] = ACTIONS(8434), - [anon_sym_typedef] = ACTIONS(8434), - [anon_sym_virtual] = ACTIONS(8434), - [anon_sym_extern] = ACTIONS(8434), - [anon_sym___attribute__] = ACTIONS(8434), - [anon_sym___attribute] = ACTIONS(8434), - [anon_sym_using] = ACTIONS(8434), - [anon_sym_COLON_COLON] = ACTIONS(8436), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8436), - [anon_sym___declspec] = ACTIONS(8434), - [anon_sym___based] = ACTIONS(8434), - [anon_sym_RBRACE] = ACTIONS(8436), - [anon_sym_signed] = ACTIONS(8434), - [anon_sym_unsigned] = ACTIONS(8434), - [anon_sym_long] = ACTIONS(8434), - [anon_sym_short] = ACTIONS(8434), - [anon_sym_LBRACK] = ACTIONS(8434), - [anon_sym_static] = ACTIONS(8434), - [anon_sym_register] = ACTIONS(8434), - [anon_sym_inline] = ACTIONS(8434), - [anon_sym___inline] = ACTIONS(8434), - [anon_sym___inline__] = ACTIONS(8434), - [anon_sym___forceinline] = ACTIONS(8434), - [anon_sym_thread_local] = ACTIONS(8434), - [anon_sym___thread] = ACTIONS(8434), - [anon_sym_const] = ACTIONS(8434), - [anon_sym_constexpr] = ACTIONS(8434), - [anon_sym_volatile] = ACTIONS(8434), - [anon_sym_restrict] = ACTIONS(8434), - [anon_sym___restrict__] = ACTIONS(8434), - [anon_sym__Atomic] = ACTIONS(8434), - [anon_sym__Noreturn] = ACTIONS(8434), - [anon_sym_noreturn] = ACTIONS(8434), - [anon_sym__Nonnull] = ACTIONS(8434), - [anon_sym_mutable] = ACTIONS(8434), - [anon_sym_constinit] = ACTIONS(8434), - [anon_sym_consteval] = ACTIONS(8434), - [anon_sym_alignas] = ACTIONS(8434), - [anon_sym__Alignas] = ACTIONS(8434), - [sym_primitive_type] = ACTIONS(8434), - [anon_sym_enum] = ACTIONS(8434), - [anon_sym_class] = ACTIONS(8434), - [anon_sym_struct] = ACTIONS(8434), - [anon_sym_union] = ACTIONS(8434), - [anon_sym_typename] = ACTIONS(8434), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8434), - [anon_sym_decltype] = ACTIONS(8434), - [anon_sym_explicit] = ACTIONS(8434), - [anon_sym_private] = ACTIONS(8434), - [anon_sym_template] = ACTIONS(8434), - [anon_sym_operator] = ACTIONS(8434), - [anon_sym_friend] = ACTIONS(8434), - [anon_sym_public] = ACTIONS(8434), - [anon_sym_protected] = ACTIONS(8434), - [anon_sym_static_assert] = ACTIONS(8434), - [anon_sym_LBRACK_COLON] = ACTIONS(8436), - }, - [STATE(3181)] = { - [sym_identifier] = ACTIONS(4022), - [aux_sym_preproc_def_token1] = ACTIONS(4022), - [aux_sym_preproc_if_token1] = ACTIONS(4022), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4022), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4022), - [sym_preproc_directive] = ACTIONS(4022), - [anon_sym_LPAREN2] = ACTIONS(4024), - [anon_sym_TILDE] = ACTIONS(4024), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_AMP_AMP] = ACTIONS(4024), - [anon_sym_AMP] = ACTIONS(4022), - [anon_sym_SEMI] = ACTIONS(4024), - [anon_sym___extension__] = ACTIONS(4022), - [anon_sym_typedef] = ACTIONS(4022), - [anon_sym_virtual] = ACTIONS(4022), - [anon_sym_extern] = ACTIONS(4022), - [anon_sym___attribute__] = ACTIONS(4022), - [anon_sym___attribute] = ACTIONS(4022), - [anon_sym_using] = ACTIONS(4022), - [anon_sym_COLON_COLON] = ACTIONS(4024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4024), - [anon_sym___declspec] = ACTIONS(4022), - [anon_sym___based] = ACTIONS(4022), - [anon_sym_RBRACE] = ACTIONS(4024), - [anon_sym_signed] = ACTIONS(4022), - [anon_sym_unsigned] = ACTIONS(4022), - [anon_sym_long] = ACTIONS(4022), - [anon_sym_short] = ACTIONS(4022), - [anon_sym_LBRACK] = ACTIONS(4022), - [anon_sym_static] = ACTIONS(4022), - [anon_sym_register] = ACTIONS(4022), - [anon_sym_inline] = ACTIONS(4022), - [anon_sym___inline] = ACTIONS(4022), - [anon_sym___inline__] = ACTIONS(4022), - [anon_sym___forceinline] = ACTIONS(4022), - [anon_sym_thread_local] = ACTIONS(4022), - [anon_sym___thread] = ACTIONS(4022), - [anon_sym_const] = ACTIONS(4022), - [anon_sym_constexpr] = ACTIONS(4022), - [anon_sym_volatile] = ACTIONS(4022), - [anon_sym_restrict] = ACTIONS(4022), - [anon_sym___restrict__] = ACTIONS(4022), - [anon_sym__Atomic] = ACTIONS(4022), - [anon_sym__Noreturn] = ACTIONS(4022), - [anon_sym_noreturn] = ACTIONS(4022), - [anon_sym__Nonnull] = ACTIONS(4022), - [anon_sym_mutable] = ACTIONS(4022), - [anon_sym_constinit] = ACTIONS(4022), - [anon_sym_consteval] = ACTIONS(4022), - [anon_sym_alignas] = ACTIONS(4022), - [anon_sym__Alignas] = ACTIONS(4022), - [sym_primitive_type] = ACTIONS(4022), - [anon_sym_enum] = ACTIONS(4022), - [anon_sym_class] = ACTIONS(4022), - [anon_sym_struct] = ACTIONS(4022), - [anon_sym_union] = ACTIONS(4022), - [anon_sym_typename] = ACTIONS(4022), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4022), - [anon_sym_decltype] = ACTIONS(4022), - [anon_sym_explicit] = ACTIONS(4022), - [anon_sym_private] = ACTIONS(4022), - [anon_sym_template] = ACTIONS(4022), - [anon_sym_operator] = ACTIONS(4022), - [anon_sym_friend] = ACTIONS(4022), - [anon_sym_public] = ACTIONS(4022), - [anon_sym_protected] = ACTIONS(4022), - [anon_sym_static_assert] = ACTIONS(4022), - [anon_sym_LBRACK_COLON] = ACTIONS(4024), - }, - [STATE(3182)] = { - [sym_identifier] = ACTIONS(3922), - [aux_sym_preproc_def_token1] = ACTIONS(3922), - [aux_sym_preproc_if_token1] = ACTIONS(3922), - [aux_sym_preproc_if_token2] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), - [sym_preproc_directive] = ACTIONS(3922), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_TILDE] = ACTIONS(3924), - [anon_sym_STAR] = ACTIONS(3924), - [anon_sym_AMP_AMP] = ACTIONS(3924), - [anon_sym_AMP] = ACTIONS(3922), - [anon_sym_SEMI] = ACTIONS(3924), - [anon_sym___extension__] = ACTIONS(3922), - [anon_sym_typedef] = ACTIONS(3922), - [anon_sym_virtual] = ACTIONS(3922), - [anon_sym_extern] = ACTIONS(3922), - [anon_sym___attribute__] = ACTIONS(3922), - [anon_sym___attribute] = ACTIONS(3922), - [anon_sym_using] = ACTIONS(3922), - [anon_sym_COLON_COLON] = ACTIONS(3924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), - [anon_sym___declspec] = ACTIONS(3922), - [anon_sym___based] = ACTIONS(3922), - [anon_sym_signed] = ACTIONS(3922), - [anon_sym_unsigned] = ACTIONS(3922), - [anon_sym_long] = ACTIONS(3922), - [anon_sym_short] = ACTIONS(3922), - [anon_sym_LBRACK] = ACTIONS(3922), - [anon_sym_static] = ACTIONS(3922), - [anon_sym_register] = ACTIONS(3922), - [anon_sym_inline] = ACTIONS(3922), - [anon_sym___inline] = ACTIONS(3922), - [anon_sym___inline__] = ACTIONS(3922), - [anon_sym___forceinline] = ACTIONS(3922), - [anon_sym_thread_local] = ACTIONS(3922), - [anon_sym___thread] = ACTIONS(3922), - [anon_sym_const] = ACTIONS(3922), - [anon_sym_constexpr] = ACTIONS(3922), - [anon_sym_volatile] = ACTIONS(3922), - [anon_sym_restrict] = ACTIONS(3922), - [anon_sym___restrict__] = ACTIONS(3922), - [anon_sym__Atomic] = ACTIONS(3922), - [anon_sym__Noreturn] = ACTIONS(3922), - [anon_sym_noreturn] = ACTIONS(3922), - [anon_sym__Nonnull] = ACTIONS(3922), - [anon_sym_mutable] = ACTIONS(3922), - [anon_sym_constinit] = ACTIONS(3922), - [anon_sym_consteval] = ACTIONS(3922), - [anon_sym_alignas] = ACTIONS(3922), - [anon_sym__Alignas] = ACTIONS(3922), - [sym_primitive_type] = ACTIONS(3922), - [anon_sym_enum] = ACTIONS(3922), - [anon_sym_class] = ACTIONS(3922), - [anon_sym_struct] = ACTIONS(3922), - [anon_sym_union] = ACTIONS(3922), - [anon_sym_typename] = ACTIONS(3922), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3922), - [anon_sym_decltype] = ACTIONS(3922), - [anon_sym_explicit] = ACTIONS(3922), - [anon_sym_private] = ACTIONS(3922), - [anon_sym_template] = ACTIONS(3922), - [anon_sym_operator] = ACTIONS(3922), - [anon_sym_friend] = ACTIONS(3922), - [anon_sym_public] = ACTIONS(3922), - [anon_sym_protected] = ACTIONS(3922), - [anon_sym_static_assert] = ACTIONS(3922), - [anon_sym_LBRACK_COLON] = ACTIONS(3924), - }, - [STATE(3183)] = { - [sym_identifier] = ACTIONS(3922), - [aux_sym_preproc_def_token1] = ACTIONS(3922), - [aux_sym_preproc_if_token1] = ACTIONS(3922), - [aux_sym_preproc_if_token2] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), - [sym_preproc_directive] = ACTIONS(3922), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_TILDE] = ACTIONS(3924), - [anon_sym_STAR] = ACTIONS(3924), - [anon_sym_AMP_AMP] = ACTIONS(3924), - [anon_sym_AMP] = ACTIONS(3922), - [anon_sym_SEMI] = ACTIONS(3924), - [anon_sym___extension__] = ACTIONS(3922), - [anon_sym_typedef] = ACTIONS(3922), - [anon_sym_virtual] = ACTIONS(3922), - [anon_sym_extern] = ACTIONS(3922), - [anon_sym___attribute__] = ACTIONS(3922), - [anon_sym___attribute] = ACTIONS(3922), - [anon_sym_using] = ACTIONS(3922), - [anon_sym_COLON_COLON] = ACTIONS(3924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), - [anon_sym___declspec] = ACTIONS(3922), - [anon_sym___based] = ACTIONS(3922), - [anon_sym_signed] = ACTIONS(3922), - [anon_sym_unsigned] = ACTIONS(3922), - [anon_sym_long] = ACTIONS(3922), - [anon_sym_short] = ACTIONS(3922), - [anon_sym_LBRACK] = ACTIONS(3922), - [anon_sym_static] = ACTIONS(3922), - [anon_sym_register] = ACTIONS(3922), - [anon_sym_inline] = ACTIONS(3922), - [anon_sym___inline] = ACTIONS(3922), - [anon_sym___inline__] = ACTIONS(3922), - [anon_sym___forceinline] = ACTIONS(3922), - [anon_sym_thread_local] = ACTIONS(3922), - [anon_sym___thread] = ACTIONS(3922), - [anon_sym_const] = ACTIONS(3922), - [anon_sym_constexpr] = ACTIONS(3922), - [anon_sym_volatile] = ACTIONS(3922), - [anon_sym_restrict] = ACTIONS(3922), - [anon_sym___restrict__] = ACTIONS(3922), - [anon_sym__Atomic] = ACTIONS(3922), - [anon_sym__Noreturn] = ACTIONS(3922), - [anon_sym_noreturn] = ACTIONS(3922), - [anon_sym__Nonnull] = ACTIONS(3922), - [anon_sym_mutable] = ACTIONS(3922), - [anon_sym_constinit] = ACTIONS(3922), - [anon_sym_consteval] = ACTIONS(3922), - [anon_sym_alignas] = ACTIONS(3922), - [anon_sym__Alignas] = ACTIONS(3922), - [sym_primitive_type] = ACTIONS(3922), - [anon_sym_enum] = ACTIONS(3922), - [anon_sym_class] = ACTIONS(3922), - [anon_sym_struct] = ACTIONS(3922), - [anon_sym_union] = ACTIONS(3922), - [anon_sym_typename] = ACTIONS(3922), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3922), - [anon_sym_decltype] = ACTIONS(3922), - [anon_sym_explicit] = ACTIONS(3922), - [anon_sym_private] = ACTIONS(3922), - [anon_sym_template] = ACTIONS(3922), - [anon_sym_operator] = ACTIONS(3922), - [anon_sym_friend] = ACTIONS(3922), - [anon_sym_public] = ACTIONS(3922), - [anon_sym_protected] = ACTIONS(3922), - [anon_sym_static_assert] = ACTIONS(3922), - [anon_sym_LBRACK_COLON] = ACTIONS(3924), - }, - [STATE(3184)] = { - [sym_identifier] = ACTIONS(8277), - [aux_sym_preproc_def_token1] = ACTIONS(8277), - [aux_sym_preproc_if_token1] = ACTIONS(8277), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8277), - [sym_preproc_directive] = ACTIONS(8277), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_TILDE] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8279), - [anon_sym_AMP_AMP] = ACTIONS(8279), - [anon_sym_AMP] = ACTIONS(8277), - [anon_sym_SEMI] = ACTIONS(8279), - [anon_sym___extension__] = ACTIONS(8277), - [anon_sym_typedef] = ACTIONS(8277), - [anon_sym_virtual] = ACTIONS(8277), - [anon_sym_extern] = ACTIONS(8277), - [anon_sym___attribute__] = ACTIONS(8277), - [anon_sym___attribute] = ACTIONS(8277), - [anon_sym_using] = ACTIONS(8277), - [anon_sym_COLON_COLON] = ACTIONS(8279), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8279), - [anon_sym___declspec] = ACTIONS(8277), - [anon_sym___based] = ACTIONS(8277), - [anon_sym_RBRACE] = ACTIONS(8279), - [anon_sym_signed] = ACTIONS(8277), - [anon_sym_unsigned] = ACTIONS(8277), - [anon_sym_long] = ACTIONS(8277), - [anon_sym_short] = ACTIONS(8277), - [anon_sym_LBRACK] = ACTIONS(8277), - [anon_sym_static] = ACTIONS(8277), - [anon_sym_register] = ACTIONS(8277), - [anon_sym_inline] = ACTIONS(8277), - [anon_sym___inline] = ACTIONS(8277), - [anon_sym___inline__] = ACTIONS(8277), - [anon_sym___forceinline] = ACTIONS(8277), - [anon_sym_thread_local] = ACTIONS(8277), - [anon_sym___thread] = ACTIONS(8277), - [anon_sym_const] = ACTIONS(8277), - [anon_sym_constexpr] = ACTIONS(8277), - [anon_sym_volatile] = ACTIONS(8277), - [anon_sym_restrict] = ACTIONS(8277), - [anon_sym___restrict__] = ACTIONS(8277), - [anon_sym__Atomic] = ACTIONS(8277), - [anon_sym__Noreturn] = ACTIONS(8277), - [anon_sym_noreturn] = ACTIONS(8277), - [anon_sym__Nonnull] = ACTIONS(8277), - [anon_sym_mutable] = ACTIONS(8277), - [anon_sym_constinit] = ACTIONS(8277), - [anon_sym_consteval] = ACTIONS(8277), - [anon_sym_alignas] = ACTIONS(8277), - [anon_sym__Alignas] = ACTIONS(8277), - [sym_primitive_type] = ACTIONS(8277), - [anon_sym_enum] = ACTIONS(8277), - [anon_sym_class] = ACTIONS(8277), - [anon_sym_struct] = ACTIONS(8277), - [anon_sym_union] = ACTIONS(8277), - [anon_sym_typename] = ACTIONS(8277), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8277), - [anon_sym_decltype] = ACTIONS(8277), - [anon_sym_explicit] = ACTIONS(8277), - [anon_sym_private] = ACTIONS(8277), - [anon_sym_template] = ACTIONS(8277), - [anon_sym_operator] = ACTIONS(8277), - [anon_sym_friend] = ACTIONS(8277), - [anon_sym_public] = ACTIONS(8277), - [anon_sym_protected] = ACTIONS(8277), - [anon_sym_static_assert] = ACTIONS(8277), - [anon_sym_LBRACK_COLON] = ACTIONS(8279), - }, - [STATE(3185)] = { - [sym_identifier] = ACTIONS(8281), - [aux_sym_preproc_def_token1] = ACTIONS(8281), - [aux_sym_preproc_if_token1] = ACTIONS(8281), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8281), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8281), - [sym_preproc_directive] = ACTIONS(8281), - [anon_sym_LPAREN2] = ACTIONS(8283), - [anon_sym_TILDE] = ACTIONS(8283), - [anon_sym_STAR] = ACTIONS(8283), - [anon_sym_AMP_AMP] = ACTIONS(8283), - [anon_sym_AMP] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8283), - [anon_sym___extension__] = ACTIONS(8281), - [anon_sym_typedef] = ACTIONS(8281), - [anon_sym_virtual] = ACTIONS(8281), - [anon_sym_extern] = ACTIONS(8281), - [anon_sym___attribute__] = ACTIONS(8281), - [anon_sym___attribute] = ACTIONS(8281), - [anon_sym_using] = ACTIONS(8281), - [anon_sym_COLON_COLON] = ACTIONS(8283), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8283), - [anon_sym___declspec] = ACTIONS(8281), - [anon_sym___based] = ACTIONS(8281), - [anon_sym_RBRACE] = ACTIONS(8283), - [anon_sym_signed] = ACTIONS(8281), - [anon_sym_unsigned] = ACTIONS(8281), - [anon_sym_long] = ACTIONS(8281), - [anon_sym_short] = ACTIONS(8281), - [anon_sym_LBRACK] = ACTIONS(8281), - [anon_sym_static] = ACTIONS(8281), - [anon_sym_register] = ACTIONS(8281), - [anon_sym_inline] = ACTIONS(8281), - [anon_sym___inline] = ACTIONS(8281), - [anon_sym___inline__] = ACTIONS(8281), - [anon_sym___forceinline] = ACTIONS(8281), - [anon_sym_thread_local] = ACTIONS(8281), - [anon_sym___thread] = ACTIONS(8281), - [anon_sym_const] = ACTIONS(8281), - [anon_sym_constexpr] = ACTIONS(8281), - [anon_sym_volatile] = ACTIONS(8281), - [anon_sym_restrict] = ACTIONS(8281), - [anon_sym___restrict__] = ACTIONS(8281), - [anon_sym__Atomic] = ACTIONS(8281), - [anon_sym__Noreturn] = ACTIONS(8281), - [anon_sym_noreturn] = ACTIONS(8281), - [anon_sym__Nonnull] = ACTIONS(8281), - [anon_sym_mutable] = ACTIONS(8281), - [anon_sym_constinit] = ACTIONS(8281), - [anon_sym_consteval] = ACTIONS(8281), - [anon_sym_alignas] = ACTIONS(8281), - [anon_sym__Alignas] = ACTIONS(8281), - [sym_primitive_type] = ACTIONS(8281), - [anon_sym_enum] = ACTIONS(8281), - [anon_sym_class] = ACTIONS(8281), - [anon_sym_struct] = ACTIONS(8281), - [anon_sym_union] = ACTIONS(8281), - [anon_sym_typename] = ACTIONS(8281), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8281), - [anon_sym_decltype] = ACTIONS(8281), - [anon_sym_explicit] = ACTIONS(8281), - [anon_sym_private] = ACTIONS(8281), - [anon_sym_template] = ACTIONS(8281), - [anon_sym_operator] = ACTIONS(8281), - [anon_sym_friend] = ACTIONS(8281), - [anon_sym_public] = ACTIONS(8281), - [anon_sym_protected] = ACTIONS(8281), - [anon_sym_static_assert] = ACTIONS(8281), - [anon_sym_LBRACK_COLON] = ACTIONS(8283), - }, - [STATE(3186)] = { - [sym_identifier] = ACTIONS(4070), - [aux_sym_preproc_def_token1] = ACTIONS(4070), - [aux_sym_preproc_if_token1] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), - [sym_preproc_directive] = ACTIONS(4070), - [anon_sym_LPAREN2] = ACTIONS(4072), - [anon_sym_TILDE] = ACTIONS(4072), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4070), - [anon_sym_SEMI] = ACTIONS(4072), - [anon_sym___extension__] = ACTIONS(4070), - [anon_sym_typedef] = ACTIONS(4070), - [anon_sym_virtual] = ACTIONS(4070), - [anon_sym_extern] = ACTIONS(4070), - [anon_sym___attribute__] = ACTIONS(4070), - [anon_sym___attribute] = ACTIONS(4070), - [anon_sym_using] = ACTIONS(4070), - [anon_sym_COLON_COLON] = ACTIONS(4072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), - [anon_sym___declspec] = ACTIONS(4070), - [anon_sym___based] = ACTIONS(4070), - [anon_sym_RBRACE] = ACTIONS(4072), - [anon_sym_signed] = ACTIONS(4070), - [anon_sym_unsigned] = ACTIONS(4070), - [anon_sym_long] = ACTIONS(4070), - [anon_sym_short] = ACTIONS(4070), - [anon_sym_LBRACK] = ACTIONS(4070), - [anon_sym_static] = ACTIONS(4070), - [anon_sym_register] = ACTIONS(4070), - [anon_sym_inline] = ACTIONS(4070), - [anon_sym___inline] = ACTIONS(4070), - [anon_sym___inline__] = ACTIONS(4070), - [anon_sym___forceinline] = ACTIONS(4070), - [anon_sym_thread_local] = ACTIONS(4070), - [anon_sym___thread] = ACTIONS(4070), - [anon_sym_const] = ACTIONS(4070), - [anon_sym_constexpr] = ACTIONS(4070), - [anon_sym_volatile] = ACTIONS(4070), - [anon_sym_restrict] = ACTIONS(4070), - [anon_sym___restrict__] = ACTIONS(4070), - [anon_sym__Atomic] = ACTIONS(4070), - [anon_sym__Noreturn] = ACTIONS(4070), - [anon_sym_noreturn] = ACTIONS(4070), - [anon_sym__Nonnull] = ACTIONS(4070), - [anon_sym_mutable] = ACTIONS(4070), - [anon_sym_constinit] = ACTIONS(4070), - [anon_sym_consteval] = ACTIONS(4070), - [anon_sym_alignas] = ACTIONS(4070), - [anon_sym__Alignas] = ACTIONS(4070), - [sym_primitive_type] = ACTIONS(4070), - [anon_sym_enum] = ACTIONS(4070), - [anon_sym_class] = ACTIONS(4070), - [anon_sym_struct] = ACTIONS(4070), - [anon_sym_union] = ACTIONS(4070), - [anon_sym_typename] = ACTIONS(4070), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4070), - [anon_sym_decltype] = ACTIONS(4070), - [anon_sym_explicit] = ACTIONS(4070), - [anon_sym_private] = ACTIONS(4070), - [anon_sym_template] = ACTIONS(4070), - [anon_sym_operator] = ACTIONS(4070), - [anon_sym_friend] = ACTIONS(4070), - [anon_sym_public] = ACTIONS(4070), - [anon_sym_protected] = ACTIONS(4070), - [anon_sym_static_assert] = ACTIONS(4070), - [anon_sym_LBRACK_COLON] = ACTIONS(4072), - }, - [STATE(3187)] = { - [sym_identifier] = ACTIONS(4096), - [aux_sym_preproc_def_token1] = ACTIONS(4096), - [aux_sym_preproc_if_token1] = ACTIONS(4096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), - [sym_preproc_directive] = ACTIONS(4096), - [anon_sym_LPAREN2] = ACTIONS(4098), - [anon_sym_TILDE] = ACTIONS(4098), - [anon_sym_STAR] = ACTIONS(4098), - [anon_sym_AMP_AMP] = ACTIONS(4098), - [anon_sym_AMP] = ACTIONS(4096), - [anon_sym_SEMI] = ACTIONS(4098), - [anon_sym___extension__] = ACTIONS(4096), - [anon_sym_typedef] = ACTIONS(4096), - [anon_sym_virtual] = ACTIONS(4096), - [anon_sym_extern] = ACTIONS(4096), - [anon_sym___attribute__] = ACTIONS(4096), - [anon_sym___attribute] = ACTIONS(4096), - [anon_sym_using] = ACTIONS(4096), - [anon_sym_COLON_COLON] = ACTIONS(4098), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4098), - [anon_sym___declspec] = ACTIONS(4096), - [anon_sym___based] = ACTIONS(4096), - [anon_sym_RBRACE] = ACTIONS(4098), - [anon_sym_signed] = ACTIONS(4096), - [anon_sym_unsigned] = ACTIONS(4096), - [anon_sym_long] = ACTIONS(4096), - [anon_sym_short] = ACTIONS(4096), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_static] = ACTIONS(4096), - [anon_sym_register] = ACTIONS(4096), - [anon_sym_inline] = ACTIONS(4096), - [anon_sym___inline] = ACTIONS(4096), - [anon_sym___inline__] = ACTIONS(4096), - [anon_sym___forceinline] = ACTIONS(4096), - [anon_sym_thread_local] = ACTIONS(4096), - [anon_sym___thread] = ACTIONS(4096), - [anon_sym_const] = ACTIONS(4096), - [anon_sym_constexpr] = ACTIONS(4096), - [anon_sym_volatile] = ACTIONS(4096), - [anon_sym_restrict] = ACTIONS(4096), - [anon_sym___restrict__] = ACTIONS(4096), - [anon_sym__Atomic] = ACTIONS(4096), - [anon_sym__Noreturn] = ACTIONS(4096), - [anon_sym_noreturn] = ACTIONS(4096), - [anon_sym__Nonnull] = ACTIONS(4096), - [anon_sym_mutable] = ACTIONS(4096), - [anon_sym_constinit] = ACTIONS(4096), - [anon_sym_consteval] = ACTIONS(4096), - [anon_sym_alignas] = ACTIONS(4096), - [anon_sym__Alignas] = ACTIONS(4096), - [sym_primitive_type] = ACTIONS(4096), - [anon_sym_enum] = ACTIONS(4096), - [anon_sym_class] = ACTIONS(4096), - [anon_sym_struct] = ACTIONS(4096), - [anon_sym_union] = ACTIONS(4096), - [anon_sym_typename] = ACTIONS(4096), + [STATE(2784)] = { + [sym_identifier] = ACTIONS(7287), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), + [anon_sym_COMMA] = ACTIONS(7289), + [anon_sym_RPAREN] = ACTIONS(7289), + [aux_sym_preproc_if_token2] = ACTIONS(7289), + [aux_sym_preproc_else_token1] = ACTIONS(7289), + [aux_sym_preproc_elif_token1] = ACTIONS(7287), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7289), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7289), + [anon_sym_LPAREN2] = ACTIONS(7289), + [anon_sym_DASH] = ACTIONS(7287), + [anon_sym_PLUS] = ACTIONS(7287), + [anon_sym_STAR] = ACTIONS(7289), + [anon_sym_SLASH] = ACTIONS(7287), + [anon_sym_PERCENT] = ACTIONS(7289), + [anon_sym_PIPE_PIPE] = ACTIONS(7289), + [anon_sym_AMP_AMP] = ACTIONS(7289), + [anon_sym_PIPE] = ACTIONS(7287), + [anon_sym_CARET] = ACTIONS(7289), + [anon_sym_AMP] = ACTIONS(7287), + [anon_sym_EQ_EQ] = ACTIONS(7289), + [anon_sym_BANG_EQ] = ACTIONS(7289), + [anon_sym_GT] = ACTIONS(7287), + [anon_sym_GT_EQ] = ACTIONS(7289), + [anon_sym_LT_EQ] = ACTIONS(7287), + [anon_sym_LT] = ACTIONS(7287), + [anon_sym_LT_LT] = ACTIONS(7289), + [anon_sym_GT_GT] = ACTIONS(7289), + [anon_sym_SEMI] = ACTIONS(7289), + [anon_sym___extension__] = ACTIONS(7287), + [anon_sym___attribute__] = ACTIONS(7287), + [anon_sym___attribute] = ACTIONS(7287), + [anon_sym_COLON] = ACTIONS(7287), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7289), + [sym_ms_restrict_modifier] = ACTIONS(7287), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7287), + [sym_ms_signed_ptr_modifier] = ACTIONS(7287), + [anon_sym__unaligned] = ACTIONS(7287), + [anon_sym___unaligned] = ACTIONS(7287), + [anon_sym_RBRACE] = ACTIONS(7289), + [anon_sym_LBRACK] = ACTIONS(7289), + [anon_sym_const] = ACTIONS(7287), + [anon_sym_constexpr] = ACTIONS(7287), + [anon_sym_volatile] = ACTIONS(7287), + [anon_sym_restrict] = ACTIONS(7287), + [anon_sym___restrict__] = ACTIONS(7287), + [anon_sym__Atomic] = ACTIONS(7287), + [anon_sym__Noreturn] = ACTIONS(7287), + [anon_sym_noreturn] = ACTIONS(7287), + [anon_sym__Nonnull] = ACTIONS(7287), + [anon_sym_mutable] = ACTIONS(7287), + [anon_sym_constinit] = ACTIONS(7287), + [anon_sym_consteval] = ACTIONS(7287), + [anon_sym_alignas] = ACTIONS(7287), + [anon_sym__Alignas] = ACTIONS(7287), + [anon_sym_QMARK] = ACTIONS(7289), + [anon_sym_LT_EQ_GT] = ACTIONS(7289), + [anon_sym_or] = ACTIONS(7287), + [anon_sym_and] = ACTIONS(7287), + [anon_sym_bitor] = ACTIONS(7287), + [anon_sym_xor] = ACTIONS(7287), + [anon_sym_bitand] = ACTIONS(7287), + [anon_sym_not_eq] = ACTIONS(7287), + [anon_sym_DASH_DASH] = ACTIONS(7289), + [anon_sym_PLUS_PLUS] = ACTIONS(7289), + [anon_sym_DOT] = ACTIONS(7287), + [anon_sym_DOT_STAR] = ACTIONS(7289), + [anon_sym_DASH_GT] = ACTIONS(7289), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4096), - [anon_sym_decltype] = ACTIONS(4096), - [anon_sym_explicit] = ACTIONS(4096), - [anon_sym_private] = ACTIONS(4096), - [anon_sym_template] = ACTIONS(4096), - [anon_sym_operator] = ACTIONS(4096), - [anon_sym_friend] = ACTIONS(4096), - [anon_sym_public] = ACTIONS(4096), - [anon_sym_protected] = ACTIONS(4096), - [anon_sym_static_assert] = ACTIONS(4096), - [anon_sym_LBRACK_COLON] = ACTIONS(4098), - }, - [STATE(3188)] = { - [sym_identifier] = ACTIONS(4115), - [aux_sym_preproc_def_token1] = ACTIONS(4115), - [aux_sym_preproc_if_token1] = ACTIONS(4115), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4115), - [sym_preproc_directive] = ACTIONS(4115), - [anon_sym_LPAREN2] = ACTIONS(4117), - [anon_sym_TILDE] = ACTIONS(4117), - [anon_sym_STAR] = ACTIONS(4117), - [anon_sym_AMP_AMP] = ACTIONS(4117), - [anon_sym_AMP] = ACTIONS(4115), - [anon_sym_SEMI] = ACTIONS(4117), - [anon_sym___extension__] = ACTIONS(4115), - [anon_sym_typedef] = ACTIONS(4115), - [anon_sym_virtual] = ACTIONS(4115), - [anon_sym_extern] = ACTIONS(4115), - [anon_sym___attribute__] = ACTIONS(4115), - [anon_sym___attribute] = ACTIONS(4115), - [anon_sym_using] = ACTIONS(4115), - [anon_sym_COLON_COLON] = ACTIONS(4117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4117), - [anon_sym___declspec] = ACTIONS(4115), - [anon_sym___based] = ACTIONS(4115), - [anon_sym_RBRACE] = ACTIONS(4117), - [anon_sym_signed] = ACTIONS(4115), - [anon_sym_unsigned] = ACTIONS(4115), - [anon_sym_long] = ACTIONS(4115), - [anon_sym_short] = ACTIONS(4115), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4115), - [anon_sym_register] = ACTIONS(4115), - [anon_sym_inline] = ACTIONS(4115), - [anon_sym___inline] = ACTIONS(4115), - [anon_sym___inline__] = ACTIONS(4115), - [anon_sym___forceinline] = ACTIONS(4115), - [anon_sym_thread_local] = ACTIONS(4115), - [anon_sym___thread] = ACTIONS(4115), - [anon_sym_const] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(4115), - [anon_sym_volatile] = ACTIONS(4115), - [anon_sym_restrict] = ACTIONS(4115), - [anon_sym___restrict__] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(4115), - [anon_sym__Noreturn] = ACTIONS(4115), - [anon_sym_noreturn] = ACTIONS(4115), - [anon_sym__Nonnull] = ACTIONS(4115), - [anon_sym_mutable] = ACTIONS(4115), - [anon_sym_constinit] = ACTIONS(4115), - [anon_sym_consteval] = ACTIONS(4115), - [anon_sym_alignas] = ACTIONS(4115), - [anon_sym__Alignas] = ACTIONS(4115), - [sym_primitive_type] = ACTIONS(4115), - [anon_sym_enum] = ACTIONS(4115), - [anon_sym_class] = ACTIONS(4115), - [anon_sym_struct] = ACTIONS(4115), - [anon_sym_union] = ACTIONS(4115), - [anon_sym_typename] = ACTIONS(4115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4115), - [anon_sym_decltype] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(4115), - [anon_sym_private] = ACTIONS(4115), - [anon_sym_template] = ACTIONS(4115), - [anon_sym_operator] = ACTIONS(4115), - [anon_sym_friend] = ACTIONS(4115), - [anon_sym_public] = ACTIONS(4115), - [anon_sym_protected] = ACTIONS(4115), - [anon_sym_static_assert] = ACTIONS(4115), - [anon_sym_LBRACK_COLON] = ACTIONS(4117), - }, - [STATE(3189)] = { - [sym_identifier] = ACTIONS(8281), - [aux_sym_preproc_def_token1] = ACTIONS(8281), - [aux_sym_preproc_if_token1] = ACTIONS(8281), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8281), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8281), - [sym_preproc_directive] = ACTIONS(8281), - [anon_sym_LPAREN2] = ACTIONS(8283), - [anon_sym_TILDE] = ACTIONS(8283), - [anon_sym_STAR] = ACTIONS(8283), - [anon_sym_AMP_AMP] = ACTIONS(8283), - [anon_sym_AMP] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8283), - [anon_sym___extension__] = ACTIONS(8281), - [anon_sym_typedef] = ACTIONS(8281), - [anon_sym_virtual] = ACTIONS(8281), - [anon_sym_extern] = ACTIONS(8281), - [anon_sym___attribute__] = ACTIONS(8281), - [anon_sym___attribute] = ACTIONS(8281), - [anon_sym_using] = ACTIONS(8281), - [anon_sym_COLON_COLON] = ACTIONS(8283), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8283), - [anon_sym___declspec] = ACTIONS(8281), - [anon_sym___based] = ACTIONS(8281), - [anon_sym_RBRACE] = ACTIONS(8283), - [anon_sym_signed] = ACTIONS(8281), - [anon_sym_unsigned] = ACTIONS(8281), - [anon_sym_long] = ACTIONS(8281), - [anon_sym_short] = ACTIONS(8281), - [anon_sym_LBRACK] = ACTIONS(8281), - [anon_sym_static] = ACTIONS(8281), - [anon_sym_register] = ACTIONS(8281), - [anon_sym_inline] = ACTIONS(8281), - [anon_sym___inline] = ACTIONS(8281), - [anon_sym___inline__] = ACTIONS(8281), - [anon_sym___forceinline] = ACTIONS(8281), - [anon_sym_thread_local] = ACTIONS(8281), - [anon_sym___thread] = ACTIONS(8281), - [anon_sym_const] = ACTIONS(8281), - [anon_sym_constexpr] = ACTIONS(8281), - [anon_sym_volatile] = ACTIONS(8281), - [anon_sym_restrict] = ACTIONS(8281), - [anon_sym___restrict__] = ACTIONS(8281), - [anon_sym__Atomic] = ACTIONS(8281), - [anon_sym__Noreturn] = ACTIONS(8281), - [anon_sym_noreturn] = ACTIONS(8281), - [anon_sym__Nonnull] = ACTIONS(8281), - [anon_sym_mutable] = ACTIONS(8281), - [anon_sym_constinit] = ACTIONS(8281), - [anon_sym_consteval] = ACTIONS(8281), - [anon_sym_alignas] = ACTIONS(8281), - [anon_sym__Alignas] = ACTIONS(8281), - [sym_primitive_type] = ACTIONS(8281), - [anon_sym_enum] = ACTIONS(8281), - [anon_sym_class] = ACTIONS(8281), - [anon_sym_struct] = ACTIONS(8281), - [anon_sym_union] = ACTIONS(8281), - [anon_sym_typename] = ACTIONS(8281), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8281), - [anon_sym_decltype] = ACTIONS(8281), - [anon_sym_explicit] = ACTIONS(8281), - [anon_sym_private] = ACTIONS(8281), - [anon_sym_template] = ACTIONS(8281), - [anon_sym_operator] = ACTIONS(8281), - [anon_sym_friend] = ACTIONS(8281), - [anon_sym_public] = ACTIONS(8281), - [anon_sym_protected] = ACTIONS(8281), - [anon_sym_static_assert] = ACTIONS(8281), - [anon_sym_LBRACK_COLON] = ACTIONS(8283), - }, - [STATE(3190)] = { - [sym_identifier] = ACTIONS(8386), - [aux_sym_preproc_def_token1] = ACTIONS(8386), - [aux_sym_preproc_if_token1] = ACTIONS(8386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8386), - [sym_preproc_directive] = ACTIONS(8386), - [anon_sym_LPAREN2] = ACTIONS(8388), - [anon_sym_TILDE] = ACTIONS(8388), - [anon_sym_STAR] = ACTIONS(8388), - [anon_sym_AMP_AMP] = ACTIONS(8388), - [anon_sym_AMP] = ACTIONS(8386), - [anon_sym_SEMI] = ACTIONS(8388), - [anon_sym___extension__] = ACTIONS(8386), - [anon_sym_typedef] = ACTIONS(8386), - [anon_sym_virtual] = ACTIONS(8386), - [anon_sym_extern] = ACTIONS(8386), - [anon_sym___attribute__] = ACTIONS(8386), - [anon_sym___attribute] = ACTIONS(8386), - [anon_sym_using] = ACTIONS(8386), - [anon_sym_COLON_COLON] = ACTIONS(8388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8388), - [anon_sym___declspec] = ACTIONS(8386), - [anon_sym___based] = ACTIONS(8386), - [anon_sym_RBRACE] = ACTIONS(8388), - [anon_sym_signed] = ACTIONS(8386), - [anon_sym_unsigned] = ACTIONS(8386), - [anon_sym_long] = ACTIONS(8386), - [anon_sym_short] = ACTIONS(8386), - [anon_sym_LBRACK] = ACTIONS(8386), - [anon_sym_static] = ACTIONS(8386), - [anon_sym_register] = ACTIONS(8386), - [anon_sym_inline] = ACTIONS(8386), - [anon_sym___inline] = ACTIONS(8386), - [anon_sym___inline__] = ACTIONS(8386), - [anon_sym___forceinline] = ACTIONS(8386), - [anon_sym_thread_local] = ACTIONS(8386), - [anon_sym___thread] = ACTIONS(8386), - [anon_sym_const] = ACTIONS(8386), - [anon_sym_constexpr] = ACTIONS(8386), - [anon_sym_volatile] = ACTIONS(8386), - [anon_sym_restrict] = ACTIONS(8386), - [anon_sym___restrict__] = ACTIONS(8386), - [anon_sym__Atomic] = ACTIONS(8386), - [anon_sym__Noreturn] = ACTIONS(8386), - [anon_sym_noreturn] = ACTIONS(8386), - [anon_sym__Nonnull] = ACTIONS(8386), - [anon_sym_mutable] = ACTIONS(8386), - [anon_sym_constinit] = ACTIONS(8386), - [anon_sym_consteval] = ACTIONS(8386), - [anon_sym_alignas] = ACTIONS(8386), - [anon_sym__Alignas] = ACTIONS(8386), - [sym_primitive_type] = ACTIONS(8386), - [anon_sym_enum] = ACTIONS(8386), - [anon_sym_class] = ACTIONS(8386), - [anon_sym_struct] = ACTIONS(8386), - [anon_sym_union] = ACTIONS(8386), - [anon_sym_typename] = ACTIONS(8386), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8386), - [anon_sym_decltype] = ACTIONS(8386), - [anon_sym_explicit] = ACTIONS(8386), - [anon_sym_private] = ACTIONS(8386), - [anon_sym_template] = ACTIONS(8386), - [anon_sym_operator] = ACTIONS(8386), - [anon_sym_friend] = ACTIONS(8386), - [anon_sym_public] = ACTIONS(8386), - [anon_sym_protected] = ACTIONS(8386), - [anon_sym_static_assert] = ACTIONS(8386), - [anon_sym_LBRACK_COLON] = ACTIONS(8388), - }, - [STATE(3191)] = { - [sym_identifier] = ACTIONS(8412), - [aux_sym_preproc_def_token1] = ACTIONS(8412), - [aux_sym_preproc_if_token1] = ACTIONS(8412), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8412), - [sym_preproc_directive] = ACTIONS(8412), - [anon_sym_LPAREN2] = ACTIONS(8414), - [anon_sym_TILDE] = ACTIONS(8414), - [anon_sym_STAR] = ACTIONS(8414), - [anon_sym_AMP_AMP] = ACTIONS(8414), - [anon_sym_AMP] = ACTIONS(8412), - [anon_sym_SEMI] = ACTIONS(8414), - [anon_sym___extension__] = ACTIONS(8412), - [anon_sym_typedef] = ACTIONS(8412), - [anon_sym_virtual] = ACTIONS(8412), - [anon_sym_extern] = ACTIONS(8412), - [anon_sym___attribute__] = ACTIONS(8412), - [anon_sym___attribute] = ACTIONS(8412), - [anon_sym_using] = ACTIONS(8412), - [anon_sym_COLON_COLON] = ACTIONS(8414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8414), - [anon_sym___declspec] = ACTIONS(8412), - [anon_sym___based] = ACTIONS(8412), - [anon_sym_RBRACE] = ACTIONS(8414), - [anon_sym_signed] = ACTIONS(8412), - [anon_sym_unsigned] = ACTIONS(8412), - [anon_sym_long] = ACTIONS(8412), - [anon_sym_short] = ACTIONS(8412), - [anon_sym_LBRACK] = ACTIONS(8412), - [anon_sym_static] = ACTIONS(8412), - [anon_sym_register] = ACTIONS(8412), - [anon_sym_inline] = ACTIONS(8412), - [anon_sym___inline] = ACTIONS(8412), - [anon_sym___inline__] = ACTIONS(8412), - [anon_sym___forceinline] = ACTIONS(8412), - [anon_sym_thread_local] = ACTIONS(8412), - [anon_sym___thread] = ACTIONS(8412), - [anon_sym_const] = ACTIONS(8412), - [anon_sym_constexpr] = ACTIONS(8412), - [anon_sym_volatile] = ACTIONS(8412), - [anon_sym_restrict] = ACTIONS(8412), - [anon_sym___restrict__] = ACTIONS(8412), - [anon_sym__Atomic] = ACTIONS(8412), - [anon_sym__Noreturn] = ACTIONS(8412), - [anon_sym_noreturn] = ACTIONS(8412), - [anon_sym__Nonnull] = ACTIONS(8412), - [anon_sym_mutable] = ACTIONS(8412), - [anon_sym_constinit] = ACTIONS(8412), - [anon_sym_consteval] = ACTIONS(8412), - [anon_sym_alignas] = ACTIONS(8412), - [anon_sym__Alignas] = ACTIONS(8412), - [sym_primitive_type] = ACTIONS(8412), - [anon_sym_enum] = ACTIONS(8412), - [anon_sym_class] = ACTIONS(8412), - [anon_sym_struct] = ACTIONS(8412), - [anon_sym_union] = ACTIONS(8412), - [anon_sym_typename] = ACTIONS(8412), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8412), - [anon_sym_decltype] = ACTIONS(8412), - [anon_sym_explicit] = ACTIONS(8412), - [anon_sym_private] = ACTIONS(8412), - [anon_sym_template] = ACTIONS(8412), - [anon_sym_operator] = ACTIONS(8412), - [anon_sym_friend] = ACTIONS(8412), - [anon_sym_public] = ACTIONS(8412), - [anon_sym_protected] = ACTIONS(8412), - [anon_sym_static_assert] = ACTIONS(8412), - [anon_sym_LBRACK_COLON] = ACTIONS(8414), - }, - [STATE(3192)] = { - [sym_identifier] = ACTIONS(8420), - [aux_sym_preproc_def_token1] = ACTIONS(8420), - [aux_sym_preproc_if_token1] = ACTIONS(8420), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8420), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8420), - [sym_preproc_directive] = ACTIONS(8420), - [anon_sym_LPAREN2] = ACTIONS(8422), - [anon_sym_TILDE] = ACTIONS(8422), - [anon_sym_STAR] = ACTIONS(8422), - [anon_sym_AMP_AMP] = ACTIONS(8422), - [anon_sym_AMP] = ACTIONS(8420), - [anon_sym_SEMI] = ACTIONS(8422), - [anon_sym___extension__] = ACTIONS(8420), - [anon_sym_typedef] = ACTIONS(8420), - [anon_sym_virtual] = ACTIONS(8420), - [anon_sym_extern] = ACTIONS(8420), - [anon_sym___attribute__] = ACTIONS(8420), - [anon_sym___attribute] = ACTIONS(8420), - [anon_sym_using] = ACTIONS(8420), - [anon_sym_COLON_COLON] = ACTIONS(8422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8422), - [anon_sym___declspec] = ACTIONS(8420), - [anon_sym___based] = ACTIONS(8420), - [anon_sym_RBRACE] = ACTIONS(8422), - [anon_sym_signed] = ACTIONS(8420), - [anon_sym_unsigned] = ACTIONS(8420), - [anon_sym_long] = ACTIONS(8420), - [anon_sym_short] = ACTIONS(8420), - [anon_sym_LBRACK] = ACTIONS(8420), - [anon_sym_static] = ACTIONS(8420), - [anon_sym_register] = ACTIONS(8420), - [anon_sym_inline] = ACTIONS(8420), - [anon_sym___inline] = ACTIONS(8420), - [anon_sym___inline__] = ACTIONS(8420), - [anon_sym___forceinline] = ACTIONS(8420), - [anon_sym_thread_local] = ACTIONS(8420), - [anon_sym___thread] = ACTIONS(8420), - [anon_sym_const] = ACTIONS(8420), - [anon_sym_constexpr] = ACTIONS(8420), - [anon_sym_volatile] = ACTIONS(8420), - [anon_sym_restrict] = ACTIONS(8420), - [anon_sym___restrict__] = ACTIONS(8420), - [anon_sym__Atomic] = ACTIONS(8420), - [anon_sym__Noreturn] = ACTIONS(8420), - [anon_sym_noreturn] = ACTIONS(8420), - [anon_sym__Nonnull] = ACTIONS(8420), - [anon_sym_mutable] = ACTIONS(8420), - [anon_sym_constinit] = ACTIONS(8420), - [anon_sym_consteval] = ACTIONS(8420), - [anon_sym_alignas] = ACTIONS(8420), - [anon_sym__Alignas] = ACTIONS(8420), - [sym_primitive_type] = ACTIONS(8420), - [anon_sym_enum] = ACTIONS(8420), - [anon_sym_class] = ACTIONS(8420), - [anon_sym_struct] = ACTIONS(8420), - [anon_sym_union] = ACTIONS(8420), - [anon_sym_typename] = ACTIONS(8420), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8420), - [anon_sym_decltype] = ACTIONS(8420), - [anon_sym_explicit] = ACTIONS(8420), - [anon_sym_private] = ACTIONS(8420), - [anon_sym_template] = ACTIONS(8420), - [anon_sym_operator] = ACTIONS(8420), - [anon_sym_friend] = ACTIONS(8420), - [anon_sym_public] = ACTIONS(8420), - [anon_sym_protected] = ACTIONS(8420), - [anon_sym_static_assert] = ACTIONS(8420), - [anon_sym_LBRACK_COLON] = ACTIONS(8422), + [anon_sym_final] = ACTIONS(7287), + [anon_sym_override] = ACTIONS(7287), + [anon_sym_requires] = ACTIONS(7287), + [anon_sym_COLON_RBRACK] = ACTIONS(7289), }, - [STATE(3193)] = { + [STATE(2785)] = { [sym_identifier] = ACTIONS(4152), [aux_sym_preproc_def_token1] = ACTIONS(4152), [aux_sym_preproc_if_token1] = ACTIONS(4152), + [aux_sym_preproc_if_token2] = ACTIONS(4152), [aux_sym_preproc_ifdef_token1] = ACTIONS(4152), [aux_sym_preproc_ifdef_token2] = ACTIONS(4152), + [aux_sym_preproc_else_token1] = ACTIONS(4152), + [aux_sym_preproc_elif_token1] = ACTIONS(4152), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4152), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4152), [sym_preproc_directive] = ACTIONS(4152), [anon_sym_LPAREN2] = ACTIONS(4154), [anon_sym_TILDE] = ACTIONS(4154), @@ -394077,7 +377769,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(4154), [anon_sym___declspec] = ACTIONS(4152), [anon_sym___based] = ACTIONS(4152), - [anon_sym_RBRACE] = ACTIONS(4154), [anon_sym_signed] = ACTIONS(4152), [anon_sym_unsigned] = ACTIONS(4152), [anon_sym_long] = ACTIONS(4152), @@ -394124,83 +377815,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(4152), [anon_sym_LBRACK_COLON] = ACTIONS(4154), }, - [STATE(3194)] = { - [sym_identifier] = ACTIONS(4168), - [aux_sym_preproc_def_token1] = ACTIONS(4168), - [aux_sym_preproc_if_token1] = ACTIONS(4168), - [aux_sym_preproc_if_token2] = ACTIONS(4168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4168), - [sym_preproc_directive] = ACTIONS(4168), - [anon_sym_LPAREN2] = ACTIONS(4170), - [anon_sym_TILDE] = ACTIONS(4170), - [anon_sym_STAR] = ACTIONS(4170), - [anon_sym_AMP_AMP] = ACTIONS(4170), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_SEMI] = ACTIONS(4170), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4168), - [anon_sym_virtual] = ACTIONS(4168), - [anon_sym_extern] = ACTIONS(4168), - [anon_sym___attribute__] = ACTIONS(4168), - [anon_sym___attribute] = ACTIONS(4168), - [anon_sym_using] = ACTIONS(4168), - [anon_sym_COLON_COLON] = ACTIONS(4170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4170), - [anon_sym___declspec] = ACTIONS(4168), - [anon_sym___based] = ACTIONS(4168), - [anon_sym_signed] = ACTIONS(4168), - [anon_sym_unsigned] = ACTIONS(4168), - [anon_sym_long] = ACTIONS(4168), - [anon_sym_short] = ACTIONS(4168), - [anon_sym_LBRACK] = ACTIONS(4168), - [anon_sym_static] = ACTIONS(4168), - [anon_sym_register] = ACTIONS(4168), - [anon_sym_inline] = ACTIONS(4168), - [anon_sym___inline] = ACTIONS(4168), - [anon_sym___inline__] = ACTIONS(4168), - [anon_sym___forceinline] = ACTIONS(4168), - [anon_sym_thread_local] = ACTIONS(4168), - [anon_sym___thread] = ACTIONS(4168), - [anon_sym_const] = ACTIONS(4168), - [anon_sym_constexpr] = ACTIONS(4168), - [anon_sym_volatile] = ACTIONS(4168), - [anon_sym_restrict] = ACTIONS(4168), - [anon_sym___restrict__] = ACTIONS(4168), - [anon_sym__Atomic] = ACTIONS(4168), - [anon_sym__Noreturn] = ACTIONS(4168), - [anon_sym_noreturn] = ACTIONS(4168), - [anon_sym__Nonnull] = ACTIONS(4168), - [anon_sym_mutable] = ACTIONS(4168), - [anon_sym_constinit] = ACTIONS(4168), - [anon_sym_consteval] = ACTIONS(4168), - [anon_sym_alignas] = ACTIONS(4168), - [anon_sym__Alignas] = ACTIONS(4168), - [sym_primitive_type] = ACTIONS(4168), - [anon_sym_enum] = ACTIONS(4168), - [anon_sym_class] = ACTIONS(4168), - [anon_sym_struct] = ACTIONS(4168), - [anon_sym_union] = ACTIONS(4168), - [anon_sym_typename] = ACTIONS(4168), + [STATE(2786)] = { + [sym_identifier] = ACTIONS(7199), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), + [anon_sym_COMMA] = ACTIONS(7201), + [anon_sym_RPAREN] = ACTIONS(7201), + [aux_sym_preproc_if_token2] = ACTIONS(7201), + [aux_sym_preproc_else_token1] = ACTIONS(7201), + [aux_sym_preproc_elif_token1] = ACTIONS(7199), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7201), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7201), + [anon_sym_LPAREN2] = ACTIONS(7201), + [anon_sym_DASH] = ACTIONS(7199), + [anon_sym_PLUS] = ACTIONS(7199), + [anon_sym_STAR] = ACTIONS(7201), + [anon_sym_SLASH] = ACTIONS(7199), + [anon_sym_PERCENT] = ACTIONS(7201), + [anon_sym_PIPE_PIPE] = ACTIONS(7201), + [anon_sym_AMP_AMP] = ACTIONS(7201), + [anon_sym_PIPE] = ACTIONS(7199), + [anon_sym_CARET] = ACTIONS(7201), + [anon_sym_AMP] = ACTIONS(7199), + [anon_sym_EQ_EQ] = ACTIONS(7201), + [anon_sym_BANG_EQ] = ACTIONS(7201), + [anon_sym_GT] = ACTIONS(7199), + [anon_sym_GT_EQ] = ACTIONS(7201), + [anon_sym_LT_EQ] = ACTIONS(7199), + [anon_sym_LT] = ACTIONS(7199), + [anon_sym_LT_LT] = ACTIONS(7201), + [anon_sym_GT_GT] = ACTIONS(7201), + [anon_sym_SEMI] = ACTIONS(7201), + [anon_sym___extension__] = ACTIONS(7199), + [anon_sym___attribute__] = ACTIONS(7199), + [anon_sym___attribute] = ACTIONS(7199), + [anon_sym_COLON] = ACTIONS(7199), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7201), + [sym_ms_restrict_modifier] = ACTIONS(7199), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7199), + [sym_ms_signed_ptr_modifier] = ACTIONS(7199), + [anon_sym__unaligned] = ACTIONS(7199), + [anon_sym___unaligned] = ACTIONS(7199), + [anon_sym_RBRACE] = ACTIONS(7201), + [anon_sym_LBRACK] = ACTIONS(7201), + [anon_sym_const] = ACTIONS(7199), + [anon_sym_constexpr] = ACTIONS(7199), + [anon_sym_volatile] = ACTIONS(7199), + [anon_sym_restrict] = ACTIONS(7199), + [anon_sym___restrict__] = ACTIONS(7199), + [anon_sym__Atomic] = ACTIONS(7199), + [anon_sym__Noreturn] = ACTIONS(7199), + [anon_sym_noreturn] = ACTIONS(7199), + [anon_sym__Nonnull] = ACTIONS(7199), + [anon_sym_mutable] = ACTIONS(7199), + [anon_sym_constinit] = ACTIONS(7199), + [anon_sym_consteval] = ACTIONS(7199), + [anon_sym_alignas] = ACTIONS(7199), + [anon_sym__Alignas] = ACTIONS(7199), + [anon_sym_QMARK] = ACTIONS(7201), + [anon_sym_LT_EQ_GT] = ACTIONS(7201), + [anon_sym_or] = ACTIONS(7199), + [anon_sym_and] = ACTIONS(7199), + [anon_sym_bitor] = ACTIONS(7199), + [anon_sym_xor] = ACTIONS(7199), + [anon_sym_bitand] = ACTIONS(7199), + [anon_sym_not_eq] = ACTIONS(7199), + [anon_sym_DASH_DASH] = ACTIONS(7201), + [anon_sym_PLUS_PLUS] = ACTIONS(7201), + [anon_sym_DOT] = ACTIONS(7199), + [anon_sym_DOT_STAR] = ACTIONS(7201), + [anon_sym_DASH_GT] = ACTIONS(7201), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4168), - [anon_sym_decltype] = ACTIONS(4168), - [anon_sym_explicit] = ACTIONS(4168), - [anon_sym_private] = ACTIONS(4168), - [anon_sym_template] = ACTIONS(4168), - [anon_sym_operator] = ACTIONS(4168), - [anon_sym_friend] = ACTIONS(4168), - [anon_sym_public] = ACTIONS(4168), - [anon_sym_protected] = ACTIONS(4168), - [anon_sym_static_assert] = ACTIONS(4168), - [anon_sym_LBRACK_COLON] = ACTIONS(4170), + [anon_sym_final] = ACTIONS(7199), + [anon_sym_override] = ACTIONS(7199), + [anon_sym_requires] = ACTIONS(7199), + [anon_sym_COLON_RBRACK] = ACTIONS(7201), }, - [STATE(3195)] = { + [STATE(2787)] = { + [sym_identifier] = ACTIONS(6612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6614), + [anon_sym_COMMA] = ACTIONS(6614), + [anon_sym_RPAREN] = ACTIONS(6614), + [anon_sym_LPAREN2] = ACTIONS(6614), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6614), + [anon_sym_SLASH] = ACTIONS(6612), + [anon_sym_PERCENT] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6614), + [anon_sym_AMP_AMP] = ACTIONS(6614), + [anon_sym_PIPE] = ACTIONS(6612), + [anon_sym_CARET] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(6612), + [anon_sym_EQ_EQ] = ACTIONS(6614), + [anon_sym_BANG_EQ] = ACTIONS(6614), + [anon_sym_GT] = ACTIONS(6612), + [anon_sym_GT_EQ] = ACTIONS(6614), + [anon_sym_LT_EQ] = ACTIONS(6612), + [anon_sym_LT] = ACTIONS(6612), + [anon_sym_LT_LT] = ACTIONS(6614), + [anon_sym_GT_GT] = ACTIONS(6614), + [anon_sym_SEMI] = ACTIONS(6614), + [anon_sym___extension__] = ACTIONS(6612), + [anon_sym___attribute__] = ACTIONS(6612), + [anon_sym___attribute] = ACTIONS(6612), + [anon_sym_COLON] = ACTIONS(6612), + [anon_sym_COLON_COLON] = ACTIONS(6614), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6614), + [anon_sym___based] = ACTIONS(6612), + [anon_sym_LBRACE] = ACTIONS(6614), + [anon_sym_RBRACE] = ACTIONS(6614), + [anon_sym_signed] = ACTIONS(6612), + [anon_sym_unsigned] = ACTIONS(6612), + [anon_sym_long] = ACTIONS(6612), + [anon_sym_short] = ACTIONS(6612), + [anon_sym_LBRACK] = ACTIONS(6614), + [anon_sym_const] = ACTIONS(6612), + [anon_sym_constexpr] = ACTIONS(6612), + [anon_sym_volatile] = ACTIONS(6612), + [anon_sym_restrict] = ACTIONS(6612), + [anon_sym___restrict__] = ACTIONS(6612), + [anon_sym__Atomic] = ACTIONS(6612), + [anon_sym__Noreturn] = ACTIONS(6612), + [anon_sym_noreturn] = ACTIONS(6612), + [anon_sym__Nonnull] = ACTIONS(6612), + [anon_sym_mutable] = ACTIONS(6612), + [anon_sym_constinit] = ACTIONS(6612), + [anon_sym_consteval] = ACTIONS(6612), + [anon_sym_alignas] = ACTIONS(6612), + [anon_sym__Alignas] = ACTIONS(6612), + [sym_primitive_type] = ACTIONS(6612), + [anon_sym_QMARK] = ACTIONS(6614), + [anon_sym_LT_EQ_GT] = ACTIONS(6614), + [anon_sym_or] = ACTIONS(6612), + [anon_sym_and] = ACTIONS(6612), + [anon_sym_bitor] = ACTIONS(6612), + [anon_sym_xor] = ACTIONS(6612), + [anon_sym_bitand] = ACTIONS(6612), + [anon_sym_not_eq] = ACTIONS(6612), + [anon_sym_DASH_DASH] = ACTIONS(6614), + [anon_sym_PLUS_PLUS] = ACTIONS(6614), + [anon_sym_DOT] = ACTIONS(6612), + [anon_sym_DOT_STAR] = ACTIONS(6614), + [anon_sym_DASH_GT] = ACTIONS(6614), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6612), + [anon_sym_decltype] = ACTIONS(6612), + [anon_sym_final] = ACTIONS(6612), + [anon_sym_override] = ACTIONS(6612), + [anon_sym_requires] = ACTIONS(6612), + [anon_sym_COLON_RBRACK] = ACTIONS(6614), + }, + [STATE(2788)] = { + [sym_decltype_auto] = STATE(3203), + [sym_template_argument_list] = STATE(2938), + [aux_sym_sized_type_specifier_repeat1] = STATE(3552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), + [anon_sym_COMMA] = ACTIONS(5643), + [anon_sym_RPAREN] = ACTIONS(5643), + [anon_sym_LPAREN2] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5636), + [anon_sym_PLUS] = ACTIONS(5636), + [anon_sym_STAR] = ACTIONS(5643), + [anon_sym_SLASH] = ACTIONS(5636), + [anon_sym_PERCENT] = ACTIONS(5643), + [anon_sym_PIPE_PIPE] = ACTIONS(5643), + [anon_sym_AMP_AMP] = ACTIONS(5643), + [anon_sym_PIPE] = ACTIONS(5636), + [anon_sym_CARET] = ACTIONS(5643), + [anon_sym_AMP] = ACTIONS(5636), + [anon_sym_EQ_EQ] = ACTIONS(5643), + [anon_sym_BANG_EQ] = ACTIONS(5643), + [anon_sym_GT] = ACTIONS(5636), + [anon_sym_GT_EQ] = ACTIONS(5643), + [anon_sym_LT_EQ] = ACTIONS(5636), + [anon_sym_LT] = ACTIONS(8695), + [anon_sym_LT_LT] = ACTIONS(5643), + [anon_sym_GT_GT] = ACTIONS(5643), + [anon_sym_SEMI] = ACTIONS(5643), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym___attribute__] = ACTIONS(5643), + [anon_sym___attribute] = ACTIONS(5636), + [anon_sym_COLON] = ACTIONS(5636), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5643), + [anon_sym_LBRACE] = ACTIONS(5643), + [anon_sym_RBRACE] = ACTIONS(5643), + [anon_sym_signed] = ACTIONS(6867), + [anon_sym_unsigned] = ACTIONS(6867), + [anon_sym_long] = ACTIONS(6867), + [anon_sym_short] = ACTIONS(6867), + [anon_sym_LBRACK] = ACTIONS(5643), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5643), + [anon_sym_volatile] = ACTIONS(5643), + [anon_sym_restrict] = ACTIONS(5643), + [anon_sym___restrict__] = ACTIONS(5643), + [anon_sym__Atomic] = ACTIONS(5643), + [anon_sym__Noreturn] = ACTIONS(5643), + [anon_sym_noreturn] = ACTIONS(5643), + [anon_sym__Nonnull] = ACTIONS(5643), + [anon_sym_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [anon_sym_alignas] = ACTIONS(5643), + [anon_sym__Alignas] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5643), + [anon_sym_LT_EQ_GT] = ACTIONS(5643), + [anon_sym_or] = ACTIONS(5643), + [anon_sym_and] = ACTIONS(5643), + [anon_sym_bitor] = ACTIONS(5643), + [anon_sym_xor] = ACTIONS(5643), + [anon_sym_bitand] = ACTIONS(5643), + [anon_sym_not_eq] = ACTIONS(5643), + [anon_sym_DASH_DASH] = ACTIONS(5643), + [anon_sym_PLUS_PLUS] = ACTIONS(5643), + [anon_sym_DOT] = ACTIONS(5636), + [anon_sym_DOT_STAR] = ACTIONS(5643), + [anon_sym_DASH_GT] = ACTIONS(5643), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6869), + [anon_sym_decltype] = ACTIONS(6871), + [anon_sym_final] = ACTIONS(5643), + [anon_sym_override] = ACTIONS(5643), + [anon_sym_requires] = ACTIONS(5643), + [anon_sym_COLON_RBRACK] = ACTIONS(5643), + }, + [STATE(2789)] = { + [sym_identifier] = ACTIONS(3921), + [aux_sym_preproc_def_token1] = ACTIONS(3921), + [aux_sym_preproc_if_token1] = ACTIONS(3921), + [aux_sym_preproc_if_token2] = ACTIONS(3921), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3921), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3921), + [aux_sym_preproc_else_token1] = ACTIONS(3921), + [aux_sym_preproc_elif_token1] = ACTIONS(3921), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3921), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3921), + [sym_preproc_directive] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3923), + [anon_sym_TILDE] = ACTIONS(3923), + [anon_sym_STAR] = ACTIONS(3923), + [anon_sym_AMP_AMP] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym___extension__] = ACTIONS(3921), + [anon_sym_typedef] = ACTIONS(3921), + [anon_sym_virtual] = ACTIONS(3921), + [anon_sym_extern] = ACTIONS(3921), + [anon_sym___attribute__] = ACTIONS(3921), + [anon_sym___attribute] = ACTIONS(3921), + [anon_sym_using] = ACTIONS(3921), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3923), + [anon_sym___declspec] = ACTIONS(3921), + [anon_sym___based] = ACTIONS(3921), + [anon_sym_signed] = ACTIONS(3921), + [anon_sym_unsigned] = ACTIONS(3921), + [anon_sym_long] = ACTIONS(3921), + [anon_sym_short] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_static] = ACTIONS(3921), + [anon_sym_register] = ACTIONS(3921), + [anon_sym_inline] = ACTIONS(3921), + [anon_sym___inline] = ACTIONS(3921), + [anon_sym___inline__] = ACTIONS(3921), + [anon_sym___forceinline] = ACTIONS(3921), + [anon_sym_thread_local] = ACTIONS(3921), + [anon_sym___thread] = ACTIONS(3921), + [anon_sym_const] = ACTIONS(3921), + [anon_sym_constexpr] = ACTIONS(3921), + [anon_sym_volatile] = ACTIONS(3921), + [anon_sym_restrict] = ACTIONS(3921), + [anon_sym___restrict__] = ACTIONS(3921), + [anon_sym__Atomic] = ACTIONS(3921), + [anon_sym__Noreturn] = ACTIONS(3921), + [anon_sym_noreturn] = ACTIONS(3921), + [anon_sym__Nonnull] = ACTIONS(3921), + [anon_sym_mutable] = ACTIONS(3921), + [anon_sym_constinit] = ACTIONS(3921), + [anon_sym_consteval] = ACTIONS(3921), + [anon_sym_alignas] = ACTIONS(3921), + [anon_sym__Alignas] = ACTIONS(3921), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_enum] = ACTIONS(3921), + [anon_sym_class] = ACTIONS(3921), + [anon_sym_struct] = ACTIONS(3921), + [anon_sym_union] = ACTIONS(3921), + [anon_sym_typename] = ACTIONS(3921), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3921), + [anon_sym_decltype] = ACTIONS(3921), + [anon_sym_explicit] = ACTIONS(3921), + [anon_sym_private] = ACTIONS(3921), + [anon_sym_template] = ACTIONS(3921), + [anon_sym_operator] = ACTIONS(3921), + [anon_sym_friend] = ACTIONS(3921), + [anon_sym_public] = ACTIONS(3921), + [anon_sym_protected] = ACTIONS(3921), + [anon_sym_static_assert] = ACTIONS(3921), + [anon_sym_LBRACK_COLON] = ACTIONS(3923), + }, + [STATE(2790)] = { [sym_identifier] = ACTIONS(4156), [aux_sym_preproc_def_token1] = ACTIONS(4156), [aux_sym_preproc_if_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token2] = ACTIONS(4156), [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), + [aux_sym_preproc_else_token1] = ACTIONS(4156), + [aux_sym_preproc_elif_token1] = ACTIONS(4156), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4156), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4156), [sym_preproc_directive] = ACTIONS(4156), [anon_sym_LPAREN2] = ACTIONS(4158), [anon_sym_TILDE] = ACTIONS(4158), @@ -394219,7 +378144,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), [anon_sym___declspec] = ACTIONS(4156), [anon_sym___based] = ACTIONS(4156), - [anon_sym_RBRACE] = ACTIONS(4158), [anon_sym_signed] = ACTIONS(4156), [anon_sym_unsigned] = ACTIONS(4156), [anon_sym_long] = ACTIONS(4156), @@ -394266,864 +378190,542 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(4156), [anon_sym_LBRACK_COLON] = ACTIONS(4158), }, - [STATE(3196)] = { - [sym_identifier] = ACTIONS(4006), - [aux_sym_preproc_def_token1] = ACTIONS(4006), - [aux_sym_preproc_if_token1] = ACTIONS(4006), - [aux_sym_preproc_if_token2] = ACTIONS(4006), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4006), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4006), - [sym_preproc_directive] = ACTIONS(4006), - [anon_sym_LPAREN2] = ACTIONS(4008), - [anon_sym_TILDE] = ACTIONS(4008), - [anon_sym_STAR] = ACTIONS(4008), - [anon_sym_AMP_AMP] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4006), - [anon_sym_SEMI] = ACTIONS(4008), - [anon_sym___extension__] = ACTIONS(4006), - [anon_sym_typedef] = ACTIONS(4006), - [anon_sym_virtual] = ACTIONS(4006), - [anon_sym_extern] = ACTIONS(4006), - [anon_sym___attribute__] = ACTIONS(4006), - [anon_sym___attribute] = ACTIONS(4006), - [anon_sym_using] = ACTIONS(4006), - [anon_sym_COLON_COLON] = ACTIONS(4008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4008), - [anon_sym___declspec] = ACTIONS(4006), - [anon_sym___based] = ACTIONS(4006), - [anon_sym_signed] = ACTIONS(4006), - [anon_sym_unsigned] = ACTIONS(4006), - [anon_sym_long] = ACTIONS(4006), - [anon_sym_short] = ACTIONS(4006), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_static] = ACTIONS(4006), - [anon_sym_register] = ACTIONS(4006), - [anon_sym_inline] = ACTIONS(4006), - [anon_sym___inline] = ACTIONS(4006), - [anon_sym___inline__] = ACTIONS(4006), - [anon_sym___forceinline] = ACTIONS(4006), - [anon_sym_thread_local] = ACTIONS(4006), - [anon_sym___thread] = ACTIONS(4006), - [anon_sym_const] = ACTIONS(4006), - [anon_sym_constexpr] = ACTIONS(4006), - [anon_sym_volatile] = ACTIONS(4006), - [anon_sym_restrict] = ACTIONS(4006), - [anon_sym___restrict__] = ACTIONS(4006), - [anon_sym__Atomic] = ACTIONS(4006), - [anon_sym__Noreturn] = ACTIONS(4006), - [anon_sym_noreturn] = ACTIONS(4006), - [anon_sym__Nonnull] = ACTIONS(4006), - [anon_sym_mutable] = ACTIONS(4006), - [anon_sym_constinit] = ACTIONS(4006), - [anon_sym_consteval] = ACTIONS(4006), - [anon_sym_alignas] = ACTIONS(4006), - [anon_sym__Alignas] = ACTIONS(4006), - [sym_primitive_type] = ACTIONS(4006), - [anon_sym_enum] = ACTIONS(4006), - [anon_sym_class] = ACTIONS(4006), - [anon_sym_struct] = ACTIONS(4006), - [anon_sym_union] = ACTIONS(4006), - [anon_sym_typename] = ACTIONS(4006), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4006), - [anon_sym_decltype] = ACTIONS(4006), - [anon_sym_explicit] = ACTIONS(4006), - [anon_sym_private] = ACTIONS(4006), - [anon_sym_template] = ACTIONS(4006), - [anon_sym_operator] = ACTIONS(4006), - [anon_sym_friend] = ACTIONS(4006), - [anon_sym_public] = ACTIONS(4006), - [anon_sym_protected] = ACTIONS(4006), - [anon_sym_static_assert] = ACTIONS(4006), - [anon_sym_LBRACK_COLON] = ACTIONS(4008), - }, - [STATE(3197)] = { - [sym_identifier] = ACTIONS(4010), - [aux_sym_preproc_def_token1] = ACTIONS(4010), - [aux_sym_preproc_if_token1] = ACTIONS(4010), - [aux_sym_preproc_if_token2] = ACTIONS(4010), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4010), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4010), - [sym_preproc_directive] = ACTIONS(4010), - [anon_sym_LPAREN2] = ACTIONS(4012), - [anon_sym_TILDE] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4012), - [anon_sym_AMP_AMP] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4012), - [anon_sym___extension__] = ACTIONS(4010), - [anon_sym_typedef] = ACTIONS(4010), - [anon_sym_virtual] = ACTIONS(4010), - [anon_sym_extern] = ACTIONS(4010), - [anon_sym___attribute__] = ACTIONS(4010), - [anon_sym___attribute] = ACTIONS(4010), - [anon_sym_using] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4012), - [anon_sym___declspec] = ACTIONS(4010), - [anon_sym___based] = ACTIONS(4010), - [anon_sym_signed] = ACTIONS(4010), - [anon_sym_unsigned] = ACTIONS(4010), - [anon_sym_long] = ACTIONS(4010), - [anon_sym_short] = ACTIONS(4010), - [anon_sym_LBRACK] = ACTIONS(4010), - [anon_sym_static] = ACTIONS(4010), - [anon_sym_register] = ACTIONS(4010), - [anon_sym_inline] = ACTIONS(4010), - [anon_sym___inline] = ACTIONS(4010), - [anon_sym___inline__] = ACTIONS(4010), - [anon_sym___forceinline] = ACTIONS(4010), - [anon_sym_thread_local] = ACTIONS(4010), - [anon_sym___thread] = ACTIONS(4010), - [anon_sym_const] = ACTIONS(4010), - [anon_sym_constexpr] = ACTIONS(4010), - [anon_sym_volatile] = ACTIONS(4010), - [anon_sym_restrict] = ACTIONS(4010), - [anon_sym___restrict__] = ACTIONS(4010), - [anon_sym__Atomic] = ACTIONS(4010), - [anon_sym__Noreturn] = ACTIONS(4010), - [anon_sym_noreturn] = ACTIONS(4010), - [anon_sym__Nonnull] = ACTIONS(4010), - [anon_sym_mutable] = ACTIONS(4010), - [anon_sym_constinit] = ACTIONS(4010), - [anon_sym_consteval] = ACTIONS(4010), - [anon_sym_alignas] = ACTIONS(4010), - [anon_sym__Alignas] = ACTIONS(4010), - [sym_primitive_type] = ACTIONS(4010), - [anon_sym_enum] = ACTIONS(4010), - [anon_sym_class] = ACTIONS(4010), - [anon_sym_struct] = ACTIONS(4010), - [anon_sym_union] = ACTIONS(4010), - [anon_sym_typename] = ACTIONS(4010), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4010), - [anon_sym_decltype] = ACTIONS(4010), - [anon_sym_explicit] = ACTIONS(4010), - [anon_sym_private] = ACTIONS(4010), - [anon_sym_template] = ACTIONS(4010), - [anon_sym_operator] = ACTIONS(4010), - [anon_sym_friend] = ACTIONS(4010), - [anon_sym_public] = ACTIONS(4010), - [anon_sym_protected] = ACTIONS(4010), - [anon_sym_static_assert] = ACTIONS(4010), - [anon_sym_LBRACK_COLON] = ACTIONS(4012), - }, - [STATE(3198)] = { - [sym_template_argument_list] = STATE(3582), - [sym_identifier] = ACTIONS(6201), - [anon_sym_LPAREN2] = ACTIONS(6208), - [anon_sym_TILDE] = ACTIONS(6208), - [anon_sym_STAR] = ACTIONS(6208), - [anon_sym_PIPE_PIPE] = ACTIONS(6208), - [anon_sym_AMP_AMP] = ACTIONS(6208), - [anon_sym_AMP] = ACTIONS(6201), - [anon_sym_LT] = ACTIONS(8749), - [anon_sym___extension__] = ACTIONS(6201), - [anon_sym_virtual] = ACTIONS(6201), - [anon_sym_extern] = ACTIONS(6201), - [anon_sym___attribute__] = ACTIONS(6201), - [anon_sym___attribute] = ACTIONS(6201), - [anon_sym_using] = ACTIONS(6201), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6208), - [anon_sym___declspec] = ACTIONS(6201), - [anon_sym___based] = ACTIONS(6201), - [anon_sym___cdecl] = ACTIONS(6201), - [anon_sym___clrcall] = ACTIONS(6201), - [anon_sym___stdcall] = ACTIONS(6201), - [anon_sym___fastcall] = ACTIONS(6201), - [anon_sym___thiscall] = ACTIONS(6201), - [anon_sym___vectorcall] = ACTIONS(6201), - [anon_sym_signed] = ACTIONS(6201), - [anon_sym_unsigned] = ACTIONS(6201), - [anon_sym_long] = ACTIONS(6201), - [anon_sym_short] = ACTIONS(6201), - [anon_sym_LBRACK] = ACTIONS(6201), - [anon_sym_static] = ACTIONS(6201), - [anon_sym_register] = ACTIONS(6201), - [anon_sym_inline] = ACTIONS(6201), - [anon_sym___inline] = ACTIONS(6201), - [anon_sym___inline__] = ACTIONS(6201), - [anon_sym___forceinline] = ACTIONS(6201), - [anon_sym_thread_local] = ACTIONS(6201), - [anon_sym___thread] = ACTIONS(6201), - [anon_sym_const] = ACTIONS(6201), - [anon_sym_constexpr] = ACTIONS(6201), - [anon_sym_volatile] = ACTIONS(6201), - [anon_sym_restrict] = ACTIONS(6201), - [anon_sym___restrict__] = ACTIONS(6201), - [anon_sym__Atomic] = ACTIONS(6201), - [anon_sym__Noreturn] = ACTIONS(6201), - [anon_sym_noreturn] = ACTIONS(6201), - [anon_sym__Nonnull] = ACTIONS(6201), - [anon_sym_mutable] = ACTIONS(6201), - [anon_sym_constinit] = ACTIONS(6201), - [anon_sym_consteval] = ACTIONS(6201), - [anon_sym_alignas] = ACTIONS(6201), - [anon_sym__Alignas] = ACTIONS(6201), - [sym_primitive_type] = ACTIONS(6201), - [anon_sym_enum] = ACTIONS(6201), - [anon_sym_class] = ACTIONS(6201), - [anon_sym_struct] = ACTIONS(6201), - [anon_sym_union] = ACTIONS(6201), - [anon_sym_or] = ACTIONS(6201), - [anon_sym_and] = ACTIONS(6201), - [anon_sym_typename] = ACTIONS(6201), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6201), - [anon_sym_decltype] = ACTIONS(6201), - [anon_sym_explicit] = ACTIONS(6201), - [anon_sym_template] = ACTIONS(6201), - [anon_sym_operator] = ACTIONS(6201), - [anon_sym_friend] = ACTIONS(6201), - [anon_sym_concept] = ACTIONS(6201), - [anon_sym_LBRACK_COLON] = ACTIONS(6208), + [STATE(2791)] = { + [sym_identifier] = ACTIONS(3935), + [aux_sym_preproc_def_token1] = ACTIONS(3935), + [aux_sym_preproc_if_token1] = ACTIONS(3935), + [aux_sym_preproc_if_token2] = ACTIONS(3935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3935), + [aux_sym_preproc_else_token1] = ACTIONS(3935), + [aux_sym_preproc_elif_token1] = ACTIONS(3935), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3935), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3935), + [sym_preproc_directive] = ACTIONS(3935), + [anon_sym_LPAREN2] = ACTIONS(3937), + [anon_sym_TILDE] = ACTIONS(3937), + [anon_sym_STAR] = ACTIONS(3937), + [anon_sym_AMP_AMP] = ACTIONS(3937), + [anon_sym_AMP] = ACTIONS(3935), + [anon_sym_SEMI] = ACTIONS(3937), + [anon_sym___extension__] = ACTIONS(3935), + [anon_sym_typedef] = ACTIONS(3935), + [anon_sym_virtual] = ACTIONS(3935), + [anon_sym_extern] = ACTIONS(3935), + [anon_sym___attribute__] = ACTIONS(3935), + [anon_sym___attribute] = ACTIONS(3935), + [anon_sym_using] = ACTIONS(3935), + [anon_sym_COLON_COLON] = ACTIONS(3937), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3937), + [anon_sym___declspec] = ACTIONS(3935), + [anon_sym___based] = ACTIONS(3935), + [anon_sym_signed] = ACTIONS(3935), + [anon_sym_unsigned] = ACTIONS(3935), + [anon_sym_long] = ACTIONS(3935), + [anon_sym_short] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3935), + [anon_sym_static] = ACTIONS(3935), + [anon_sym_register] = ACTIONS(3935), + [anon_sym_inline] = ACTIONS(3935), + [anon_sym___inline] = ACTIONS(3935), + [anon_sym___inline__] = ACTIONS(3935), + [anon_sym___forceinline] = ACTIONS(3935), + [anon_sym_thread_local] = ACTIONS(3935), + [anon_sym___thread] = 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__Nonnull] = ACTIONS(3935), + [anon_sym_mutable] = ACTIONS(3935), + [anon_sym_constinit] = ACTIONS(3935), + [anon_sym_consteval] = ACTIONS(3935), + [anon_sym_alignas] = ACTIONS(3935), + [anon_sym__Alignas] = ACTIONS(3935), + [sym_primitive_type] = ACTIONS(3935), + [anon_sym_enum] = ACTIONS(3935), + [anon_sym_class] = ACTIONS(3935), + [anon_sym_struct] = ACTIONS(3935), + [anon_sym_union] = ACTIONS(3935), + [anon_sym_typename] = ACTIONS(3935), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3935), + [anon_sym_decltype] = ACTIONS(3935), + [anon_sym_explicit] = ACTIONS(3935), + [anon_sym_private] = ACTIONS(3935), + [anon_sym_template] = ACTIONS(3935), + [anon_sym_operator] = ACTIONS(3935), + [anon_sym_friend] = ACTIONS(3935), + [anon_sym_public] = ACTIONS(3935), + [anon_sym_protected] = ACTIONS(3935), + [anon_sym_static_assert] = ACTIONS(3935), + [anon_sym_LBRACK_COLON] = ACTIONS(3937), }, - [STATE(3199)] = { - [sym_identifier] = ACTIONS(4014), - [aux_sym_preproc_def_token1] = ACTIONS(4014), - [aux_sym_preproc_if_token1] = ACTIONS(4014), - [aux_sym_preproc_if_token2] = ACTIONS(4014), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4014), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4014), - [sym_preproc_directive] = ACTIONS(4014), - [anon_sym_LPAREN2] = ACTIONS(4016), - [anon_sym_TILDE] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4014), - [anon_sym_SEMI] = ACTIONS(4016), - [anon_sym___extension__] = ACTIONS(4014), - [anon_sym_typedef] = ACTIONS(4014), - [anon_sym_virtual] = ACTIONS(4014), - [anon_sym_extern] = ACTIONS(4014), - [anon_sym___attribute__] = ACTIONS(4014), - [anon_sym___attribute] = ACTIONS(4014), - [anon_sym_using] = ACTIONS(4014), - [anon_sym_COLON_COLON] = ACTIONS(4016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4016), - [anon_sym___declspec] = ACTIONS(4014), - [anon_sym___based] = ACTIONS(4014), - [anon_sym_signed] = ACTIONS(4014), - [anon_sym_unsigned] = ACTIONS(4014), - [anon_sym_long] = ACTIONS(4014), - [anon_sym_short] = ACTIONS(4014), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_static] = ACTIONS(4014), - [anon_sym_register] = ACTIONS(4014), - [anon_sym_inline] = ACTIONS(4014), - [anon_sym___inline] = ACTIONS(4014), - [anon_sym___inline__] = ACTIONS(4014), - [anon_sym___forceinline] = ACTIONS(4014), - [anon_sym_thread_local] = ACTIONS(4014), - [anon_sym___thread] = ACTIONS(4014), - [anon_sym_const] = ACTIONS(4014), - [anon_sym_constexpr] = ACTIONS(4014), - [anon_sym_volatile] = ACTIONS(4014), - [anon_sym_restrict] = ACTIONS(4014), - [anon_sym___restrict__] = ACTIONS(4014), - [anon_sym__Atomic] = ACTIONS(4014), - [anon_sym__Noreturn] = ACTIONS(4014), - [anon_sym_noreturn] = ACTIONS(4014), - [anon_sym__Nonnull] = ACTIONS(4014), - [anon_sym_mutable] = ACTIONS(4014), - [anon_sym_constinit] = ACTIONS(4014), - [anon_sym_consteval] = ACTIONS(4014), - [anon_sym_alignas] = ACTIONS(4014), - [anon_sym__Alignas] = ACTIONS(4014), - [sym_primitive_type] = ACTIONS(4014), - [anon_sym_enum] = ACTIONS(4014), - [anon_sym_class] = ACTIONS(4014), - [anon_sym_struct] = ACTIONS(4014), - [anon_sym_union] = ACTIONS(4014), - [anon_sym_typename] = ACTIONS(4014), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4014), - [anon_sym_decltype] = ACTIONS(4014), - [anon_sym_explicit] = ACTIONS(4014), - [anon_sym_private] = ACTIONS(4014), - [anon_sym_template] = ACTIONS(4014), - [anon_sym_operator] = ACTIONS(4014), - [anon_sym_friend] = ACTIONS(4014), - [anon_sym_public] = ACTIONS(4014), - [anon_sym_protected] = ACTIONS(4014), - [anon_sym_static_assert] = ACTIONS(4014), - [anon_sym_LBRACK_COLON] = ACTIONS(4016), + [STATE(2792)] = { + [sym_identifier] = ACTIONS(4156), + [aux_sym_preproc_def_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token2] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), + [aux_sym_preproc_else_token1] = ACTIONS(4156), + [aux_sym_preproc_elif_token1] = ACTIONS(4156), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4156), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4156), + [sym_preproc_directive] = ACTIONS(4156), + [anon_sym_LPAREN2] = ACTIONS(4158), + [anon_sym_TILDE] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym___extension__] = ACTIONS(4156), + [anon_sym_typedef] = ACTIONS(4156), + [anon_sym_virtual] = ACTIONS(4156), + [anon_sym_extern] = ACTIONS(4156), + [anon_sym___attribute__] = ACTIONS(4156), + [anon_sym___attribute] = ACTIONS(4156), + [anon_sym_using] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4156), + [anon_sym___based] = ACTIONS(4156), + [anon_sym_signed] = ACTIONS(4156), + [anon_sym_unsigned] = ACTIONS(4156), + [anon_sym_long] = ACTIONS(4156), + [anon_sym_short] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_register] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym___inline] = ACTIONS(4156), + [anon_sym___inline__] = ACTIONS(4156), + [anon_sym___forceinline] = ACTIONS(4156), + [anon_sym_thread_local] = ACTIONS(4156), + [anon_sym___thread] = ACTIONS(4156), + [anon_sym_const] = ACTIONS(4156), + [anon_sym_constexpr] = ACTIONS(4156), + [anon_sym_volatile] = ACTIONS(4156), + [anon_sym_restrict] = ACTIONS(4156), + [anon_sym___restrict__] = ACTIONS(4156), + [anon_sym__Atomic] = ACTIONS(4156), + [anon_sym__Noreturn] = ACTIONS(4156), + [anon_sym_noreturn] = ACTIONS(4156), + [anon_sym__Nonnull] = ACTIONS(4156), + [anon_sym_mutable] = ACTIONS(4156), + [anon_sym_constinit] = ACTIONS(4156), + [anon_sym_consteval] = ACTIONS(4156), + [anon_sym_alignas] = ACTIONS(4156), + [anon_sym__Alignas] = ACTIONS(4156), + [sym_primitive_type] = ACTIONS(4156), + [anon_sym_enum] = ACTIONS(4156), + [anon_sym_class] = ACTIONS(4156), + [anon_sym_struct] = ACTIONS(4156), + [anon_sym_union] = ACTIONS(4156), + [anon_sym_typename] = ACTIONS(4156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4156), + [anon_sym_decltype] = ACTIONS(4156), + [anon_sym_explicit] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_friend] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_static_assert] = ACTIONS(4156), + [anon_sym_LBRACK_COLON] = ACTIONS(4158), }, - [STATE(3200)] = { - [sym_identifier] = ACTIONS(4002), - [aux_sym_preproc_def_token1] = ACTIONS(4002), - [aux_sym_preproc_if_token1] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), - [sym_preproc_directive] = ACTIONS(4002), - [anon_sym_LPAREN2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(4004), - [anon_sym_STAR] = ACTIONS(4004), - [anon_sym_AMP_AMP] = ACTIONS(4004), - [anon_sym_AMP] = ACTIONS(4002), - [anon_sym_SEMI] = ACTIONS(4004), - [anon_sym___extension__] = ACTIONS(4002), - [anon_sym_typedef] = ACTIONS(4002), - [anon_sym_virtual] = ACTIONS(4002), - [anon_sym_extern] = ACTIONS(4002), - [anon_sym___attribute__] = ACTIONS(4002), - [anon_sym___attribute] = ACTIONS(4002), - [anon_sym_using] = ACTIONS(4002), - [anon_sym_COLON_COLON] = ACTIONS(4004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), - [anon_sym___declspec] = ACTIONS(4002), - [anon_sym___based] = ACTIONS(4002), - [anon_sym_RBRACE] = ACTIONS(4004), - [anon_sym_signed] = ACTIONS(4002), - [anon_sym_unsigned] = ACTIONS(4002), - [anon_sym_long] = ACTIONS(4002), - [anon_sym_short] = ACTIONS(4002), - [anon_sym_LBRACK] = ACTIONS(4002), - [anon_sym_static] = ACTIONS(4002), - [anon_sym_register] = ACTIONS(4002), - [anon_sym_inline] = ACTIONS(4002), - [anon_sym___inline] = ACTIONS(4002), - [anon_sym___inline__] = ACTIONS(4002), - [anon_sym___forceinline] = ACTIONS(4002), - [anon_sym_thread_local] = ACTIONS(4002), - [anon_sym___thread] = ACTIONS(4002), - [anon_sym_const] = ACTIONS(4002), - [anon_sym_constexpr] = ACTIONS(4002), - [anon_sym_volatile] = ACTIONS(4002), - [anon_sym_restrict] = ACTIONS(4002), - [anon_sym___restrict__] = ACTIONS(4002), - [anon_sym__Atomic] = ACTIONS(4002), - [anon_sym__Noreturn] = ACTIONS(4002), - [anon_sym_noreturn] = ACTIONS(4002), - [anon_sym__Nonnull] = ACTIONS(4002), - [anon_sym_mutable] = ACTIONS(4002), - [anon_sym_constinit] = ACTIONS(4002), - [anon_sym_consteval] = ACTIONS(4002), - [anon_sym_alignas] = ACTIONS(4002), - [anon_sym__Alignas] = ACTIONS(4002), - [sym_primitive_type] = ACTIONS(4002), - [anon_sym_enum] = ACTIONS(4002), - [anon_sym_class] = ACTIONS(4002), - [anon_sym_struct] = ACTIONS(4002), - [anon_sym_union] = ACTIONS(4002), - [anon_sym_typename] = ACTIONS(4002), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4002), - [anon_sym_decltype] = ACTIONS(4002), - [anon_sym_explicit] = ACTIONS(4002), - [anon_sym_private] = ACTIONS(4002), - [anon_sym_template] = ACTIONS(4002), - [anon_sym_operator] = ACTIONS(4002), - [anon_sym_friend] = ACTIONS(4002), - [anon_sym_public] = ACTIONS(4002), - [anon_sym_protected] = ACTIONS(4002), - [anon_sym_static_assert] = ACTIONS(4002), - [anon_sym_LBRACK_COLON] = ACTIONS(4004), + [STATE(2793)] = { + [sym_identifier] = ACTIONS(4180), + [aux_sym_preproc_def_token1] = ACTIONS(4180), + [aux_sym_preproc_if_token1] = ACTIONS(4180), + [aux_sym_preproc_if_token2] = ACTIONS(4180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4180), + [aux_sym_preproc_else_token1] = ACTIONS(4180), + [aux_sym_preproc_elif_token1] = ACTIONS(4180), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4180), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4180), + [sym_preproc_directive] = ACTIONS(4180), + [anon_sym_LPAREN2] = ACTIONS(4182), + [anon_sym_TILDE] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_AMP] = ACTIONS(4180), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym___extension__] = ACTIONS(4180), + [anon_sym_typedef] = ACTIONS(4180), + [anon_sym_virtual] = ACTIONS(4180), + [anon_sym_extern] = ACTIONS(4180), + [anon_sym___attribute__] = ACTIONS(4180), + [anon_sym___attribute] = ACTIONS(4180), + [anon_sym_using] = ACTIONS(4180), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4182), + [anon_sym___declspec] = ACTIONS(4180), + [anon_sym___based] = ACTIONS(4180), + [anon_sym_signed] = ACTIONS(4180), + [anon_sym_unsigned] = ACTIONS(4180), + [anon_sym_long] = ACTIONS(4180), + [anon_sym_short] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_static] = ACTIONS(4180), + [anon_sym_register] = ACTIONS(4180), + [anon_sym_inline] = ACTIONS(4180), + [anon_sym___inline] = ACTIONS(4180), + [anon_sym___inline__] = ACTIONS(4180), + [anon_sym___forceinline] = ACTIONS(4180), + [anon_sym_thread_local] = ACTIONS(4180), + [anon_sym___thread] = ACTIONS(4180), + [anon_sym_const] = ACTIONS(4180), + [anon_sym_constexpr] = ACTIONS(4180), + [anon_sym_volatile] = ACTIONS(4180), + [anon_sym_restrict] = ACTIONS(4180), + [anon_sym___restrict__] = ACTIONS(4180), + [anon_sym__Atomic] = ACTIONS(4180), + [anon_sym__Noreturn] = ACTIONS(4180), + [anon_sym_noreturn] = ACTIONS(4180), + [anon_sym__Nonnull] = ACTIONS(4180), + [anon_sym_mutable] = ACTIONS(4180), + [anon_sym_constinit] = ACTIONS(4180), + [anon_sym_consteval] = ACTIONS(4180), + [anon_sym_alignas] = ACTIONS(4180), + [anon_sym__Alignas] = ACTIONS(4180), + [sym_primitive_type] = ACTIONS(4180), + [anon_sym_enum] = ACTIONS(4180), + [anon_sym_class] = ACTIONS(4180), + [anon_sym_struct] = ACTIONS(4180), + [anon_sym_union] = ACTIONS(4180), + [anon_sym_typename] = ACTIONS(4180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4180), + [anon_sym_decltype] = ACTIONS(4180), + [anon_sym_explicit] = ACTIONS(4180), + [anon_sym_private] = ACTIONS(4180), + [anon_sym_template] = ACTIONS(4180), + [anon_sym_operator] = ACTIONS(4180), + [anon_sym_friend] = ACTIONS(4180), + [anon_sym_public] = ACTIONS(4180), + [anon_sym_protected] = ACTIONS(4180), + [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_LBRACK_COLON] = ACTIONS(4182), }, - [STATE(3201)] = { - [sym_identifier] = ACTIONS(4164), - [aux_sym_preproc_def_token1] = ACTIONS(4164), - [aux_sym_preproc_if_token1] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4164), - [anon_sym_LPAREN2] = ACTIONS(4166), - [anon_sym_TILDE] = ACTIONS(4166), - [anon_sym_STAR] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_AMP] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym___extension__] = ACTIONS(4164), - [anon_sym_typedef] = ACTIONS(4164), - [anon_sym_virtual] = ACTIONS(4164), - [anon_sym_extern] = ACTIONS(4164), - [anon_sym___attribute__] = ACTIONS(4164), - [anon_sym___attribute] = ACTIONS(4164), - [anon_sym_using] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), - [anon_sym___declspec] = ACTIONS(4164), - [anon_sym___based] = ACTIONS(4164), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_signed] = ACTIONS(4164), - [anon_sym_unsigned] = ACTIONS(4164), - [anon_sym_long] = ACTIONS(4164), - [anon_sym_short] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4164), - [anon_sym_static] = ACTIONS(4164), - [anon_sym_register] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym___inline] = ACTIONS(4164), - [anon_sym___inline__] = ACTIONS(4164), - [anon_sym___forceinline] = ACTIONS(4164), - [anon_sym_thread_local] = ACTIONS(4164), - [anon_sym___thread] = ACTIONS(4164), - [anon_sym_const] = ACTIONS(4164), - [anon_sym_constexpr] = ACTIONS(4164), - [anon_sym_volatile] = ACTIONS(4164), - [anon_sym_restrict] = ACTIONS(4164), - [anon_sym___restrict__] = ACTIONS(4164), - [anon_sym__Atomic] = ACTIONS(4164), - [anon_sym__Noreturn] = ACTIONS(4164), - [anon_sym_noreturn] = ACTIONS(4164), - [anon_sym__Nonnull] = ACTIONS(4164), - [anon_sym_mutable] = ACTIONS(4164), - [anon_sym_constinit] = ACTIONS(4164), - [anon_sym_consteval] = ACTIONS(4164), - [anon_sym_alignas] = ACTIONS(4164), - [anon_sym__Alignas] = ACTIONS(4164), - [sym_primitive_type] = ACTIONS(4164), - [anon_sym_enum] = ACTIONS(4164), - [anon_sym_class] = ACTIONS(4164), - [anon_sym_struct] = ACTIONS(4164), - [anon_sym_union] = ACTIONS(4164), - [anon_sym_typename] = ACTIONS(4164), + [STATE(2794)] = { + [sym_identifier] = ACTIONS(4160), + [aux_sym_preproc_def_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token2] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), + [aux_sym_preproc_else_token1] = ACTIONS(4160), + [aux_sym_preproc_elif_token1] = ACTIONS(4160), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4160), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4160), + [sym_preproc_directive] = ACTIONS(4160), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_TILDE] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym___extension__] = ACTIONS(4160), + [anon_sym_typedef] = ACTIONS(4160), + [anon_sym_virtual] = ACTIONS(4160), + [anon_sym_extern] = ACTIONS(4160), + [anon_sym___attribute__] = ACTIONS(4160), + [anon_sym___attribute] = ACTIONS(4160), + [anon_sym_using] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), + [anon_sym___declspec] = ACTIONS(4160), + [anon_sym___based] = ACTIONS(4160), + [anon_sym_signed] = ACTIONS(4160), + [anon_sym_unsigned] = ACTIONS(4160), + [anon_sym_long] = ACTIONS(4160), + [anon_sym_short] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4160), + [anon_sym_static] = ACTIONS(4160), + [anon_sym_register] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym___inline] = ACTIONS(4160), + [anon_sym___inline__] = ACTIONS(4160), + [anon_sym___forceinline] = ACTIONS(4160), + [anon_sym_thread_local] = ACTIONS(4160), + [anon_sym___thread] = ACTIONS(4160), + [anon_sym_const] = ACTIONS(4160), + [anon_sym_constexpr] = ACTIONS(4160), + [anon_sym_volatile] = ACTIONS(4160), + [anon_sym_restrict] = ACTIONS(4160), + [anon_sym___restrict__] = ACTIONS(4160), + [anon_sym__Atomic] = ACTIONS(4160), + [anon_sym__Noreturn] = ACTIONS(4160), + [anon_sym_noreturn] = ACTIONS(4160), + [anon_sym__Nonnull] = ACTIONS(4160), + [anon_sym_mutable] = ACTIONS(4160), + [anon_sym_constinit] = ACTIONS(4160), + [anon_sym_consteval] = ACTIONS(4160), + [anon_sym_alignas] = ACTIONS(4160), + [anon_sym__Alignas] = ACTIONS(4160), + [sym_primitive_type] = ACTIONS(4160), + [anon_sym_enum] = ACTIONS(4160), + [anon_sym_class] = ACTIONS(4160), + [anon_sym_struct] = ACTIONS(4160), + [anon_sym_union] = ACTIONS(4160), + [anon_sym_typename] = ACTIONS(4160), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4164), - [anon_sym_decltype] = ACTIONS(4164), - [anon_sym_explicit] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_template] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_friend] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_static_assert] = ACTIONS(4164), - [anon_sym_LBRACK_COLON] = ACTIONS(4166), + [sym_auto] = ACTIONS(4160), + [anon_sym_decltype] = ACTIONS(4160), + [anon_sym_explicit] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_template] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_friend] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_static_assert] = ACTIONS(4160), + [anon_sym_LBRACK_COLON] = ACTIONS(4162), }, - [STATE(3202)] = { - [sym_identifier] = ACTIONS(4168), - [aux_sym_preproc_def_token1] = ACTIONS(4168), - [aux_sym_preproc_if_token1] = ACTIONS(4168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4168), - [sym_preproc_directive] = ACTIONS(4168), - [anon_sym_LPAREN2] = ACTIONS(4170), - [anon_sym_TILDE] = ACTIONS(4170), - [anon_sym_STAR] = ACTIONS(4170), - [anon_sym_AMP_AMP] = ACTIONS(4170), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_SEMI] = ACTIONS(4170), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4168), - [anon_sym_virtual] = ACTIONS(4168), - [anon_sym_extern] = ACTIONS(4168), - [anon_sym___attribute__] = ACTIONS(4168), - [anon_sym___attribute] = ACTIONS(4168), - [anon_sym_using] = ACTIONS(4168), - [anon_sym_COLON_COLON] = ACTIONS(4170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4170), - [anon_sym___declspec] = ACTIONS(4168), - [anon_sym___based] = ACTIONS(4168), - [anon_sym_RBRACE] = ACTIONS(4170), - [anon_sym_signed] = ACTIONS(4168), - [anon_sym_unsigned] = ACTIONS(4168), - [anon_sym_long] = ACTIONS(4168), - [anon_sym_short] = ACTIONS(4168), - [anon_sym_LBRACK] = ACTIONS(4168), - [anon_sym_static] = ACTIONS(4168), - [anon_sym_register] = ACTIONS(4168), - [anon_sym_inline] = ACTIONS(4168), - [anon_sym___inline] = ACTIONS(4168), - [anon_sym___inline__] = ACTIONS(4168), - [anon_sym___forceinline] = ACTIONS(4168), - [anon_sym_thread_local] = ACTIONS(4168), - [anon_sym___thread] = ACTIONS(4168), - [anon_sym_const] = ACTIONS(4168), - [anon_sym_constexpr] = ACTIONS(4168), - [anon_sym_volatile] = ACTIONS(4168), - [anon_sym_restrict] = ACTIONS(4168), - [anon_sym___restrict__] = ACTIONS(4168), - [anon_sym__Atomic] = ACTIONS(4168), - [anon_sym__Noreturn] = ACTIONS(4168), - [anon_sym_noreturn] = ACTIONS(4168), - [anon_sym__Nonnull] = ACTIONS(4168), - [anon_sym_mutable] = ACTIONS(4168), - [anon_sym_constinit] = ACTIONS(4168), - [anon_sym_consteval] = ACTIONS(4168), - [anon_sym_alignas] = ACTIONS(4168), - [anon_sym__Alignas] = ACTIONS(4168), - [sym_primitive_type] = ACTIONS(4168), - [anon_sym_enum] = ACTIONS(4168), - [anon_sym_class] = ACTIONS(4168), - [anon_sym_struct] = ACTIONS(4168), - [anon_sym_union] = ACTIONS(4168), - [anon_sym_typename] = ACTIONS(4168), + [STATE(2795)] = { + [sym_identifier] = ACTIONS(4160), + [aux_sym_preproc_def_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token2] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), + [aux_sym_preproc_else_token1] = ACTIONS(4160), + [aux_sym_preproc_elif_token1] = ACTIONS(4160), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4160), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4160), + [sym_preproc_directive] = ACTIONS(4160), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_TILDE] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym___extension__] = ACTIONS(4160), + [anon_sym_typedef] = ACTIONS(4160), + [anon_sym_virtual] = ACTIONS(4160), + [anon_sym_extern] = ACTIONS(4160), + [anon_sym___attribute__] = ACTIONS(4160), + [anon_sym___attribute] = ACTIONS(4160), + [anon_sym_using] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), + [anon_sym___declspec] = ACTIONS(4160), + [anon_sym___based] = ACTIONS(4160), + [anon_sym_signed] = ACTIONS(4160), + [anon_sym_unsigned] = ACTIONS(4160), + [anon_sym_long] = ACTIONS(4160), + [anon_sym_short] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4160), + [anon_sym_static] = ACTIONS(4160), + [anon_sym_register] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym___inline] = ACTIONS(4160), + [anon_sym___inline__] = ACTIONS(4160), + [anon_sym___forceinline] = ACTIONS(4160), + [anon_sym_thread_local] = ACTIONS(4160), + [anon_sym___thread] = ACTIONS(4160), + [anon_sym_const] = ACTIONS(4160), + [anon_sym_constexpr] = ACTIONS(4160), + [anon_sym_volatile] = ACTIONS(4160), + [anon_sym_restrict] = ACTIONS(4160), + [anon_sym___restrict__] = ACTIONS(4160), + [anon_sym__Atomic] = ACTIONS(4160), + [anon_sym__Noreturn] = ACTIONS(4160), + [anon_sym_noreturn] = ACTIONS(4160), + [anon_sym__Nonnull] = ACTIONS(4160), + [anon_sym_mutable] = ACTIONS(4160), + [anon_sym_constinit] = ACTIONS(4160), + [anon_sym_consteval] = ACTIONS(4160), + [anon_sym_alignas] = ACTIONS(4160), + [anon_sym__Alignas] = ACTIONS(4160), + [sym_primitive_type] = ACTIONS(4160), + [anon_sym_enum] = ACTIONS(4160), + [anon_sym_class] = ACTIONS(4160), + [anon_sym_struct] = ACTIONS(4160), + [anon_sym_union] = ACTIONS(4160), + [anon_sym_typename] = ACTIONS(4160), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4168), - [anon_sym_decltype] = ACTIONS(4168), - [anon_sym_explicit] = ACTIONS(4168), - [anon_sym_private] = ACTIONS(4168), - [anon_sym_template] = ACTIONS(4168), - [anon_sym_operator] = ACTIONS(4168), - [anon_sym_friend] = ACTIONS(4168), - [anon_sym_public] = ACTIONS(4168), - [anon_sym_protected] = ACTIONS(4168), - [anon_sym_static_assert] = ACTIONS(4168), - [anon_sym_LBRACK_COLON] = ACTIONS(4170), + [sym_auto] = ACTIONS(4160), + [anon_sym_decltype] = ACTIONS(4160), + [anon_sym_explicit] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_template] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_friend] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_static_assert] = ACTIONS(4160), + [anon_sym_LBRACK_COLON] = ACTIONS(4162), }, - [STATE(3203)] = { - [sym_identifier] = ACTIONS(8751), - [anon_sym_LPAREN2] = ACTIONS(8753), - [anon_sym_TILDE] = ACTIONS(8753), - [anon_sym_STAR] = ACTIONS(8753), - [anon_sym_AMP_AMP] = ACTIONS(8753), - [anon_sym_AMP] = ACTIONS(8751), - [anon_sym___extension__] = ACTIONS(8751), - [anon_sym_virtual] = ACTIONS(8751), - [anon_sym_extern] = ACTIONS(8751), - [anon_sym___attribute__] = ACTIONS(8751), - [anon_sym___attribute] = ACTIONS(8751), - [anon_sym_using] = ACTIONS(8751), - [anon_sym_COLON_COLON] = ACTIONS(8753), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8753), - [anon_sym___declspec] = ACTIONS(8751), - [anon_sym___based] = ACTIONS(8751), - [anon_sym___cdecl] = ACTIONS(8751), - [anon_sym___clrcall] = ACTIONS(8751), - [anon_sym___stdcall] = ACTIONS(8751), - [anon_sym___fastcall] = ACTIONS(8751), - [anon_sym___thiscall] = ACTIONS(8751), - [anon_sym___vectorcall] = ACTIONS(8751), - [anon_sym_LBRACE] = ACTIONS(8753), - [anon_sym_signed] = ACTIONS(8751), - [anon_sym_unsigned] = ACTIONS(8751), - [anon_sym_long] = ACTIONS(8751), - [anon_sym_short] = ACTIONS(8751), - [anon_sym_LBRACK] = ACTIONS(8751), - [anon_sym_static] = ACTIONS(8751), - [anon_sym_register] = ACTIONS(8751), - [anon_sym_inline] = ACTIONS(8751), - [anon_sym___inline] = ACTIONS(8751), - [anon_sym___inline__] = ACTIONS(8751), - [anon_sym___forceinline] = ACTIONS(8751), - [anon_sym_thread_local] = ACTIONS(8751), - [anon_sym___thread] = ACTIONS(8751), - [anon_sym_const] = ACTIONS(8751), - [anon_sym_constexpr] = ACTIONS(8751), - [anon_sym_volatile] = ACTIONS(8751), - [anon_sym_restrict] = ACTIONS(8751), - [anon_sym___restrict__] = ACTIONS(8751), - [anon_sym__Atomic] = ACTIONS(8751), - [anon_sym__Noreturn] = ACTIONS(8751), - [anon_sym_noreturn] = ACTIONS(8751), - [anon_sym__Nonnull] = ACTIONS(8751), - [anon_sym_mutable] = ACTIONS(8751), - [anon_sym_constinit] = ACTIONS(8751), - [anon_sym_consteval] = ACTIONS(8751), - [anon_sym_alignas] = ACTIONS(8751), - [anon_sym__Alignas] = ACTIONS(8751), - [sym_primitive_type] = ACTIONS(8751), - [anon_sym_enum] = ACTIONS(8751), - [anon_sym_class] = ACTIONS(8751), - [anon_sym_struct] = ACTIONS(8751), - [anon_sym_union] = ACTIONS(8751), - [anon_sym_typename] = ACTIONS(8751), - [anon_sym_DASH_GT] = ACTIONS(8753), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8751), - [anon_sym_decltype] = ACTIONS(8751), - [anon_sym_explicit] = ACTIONS(8751), - [anon_sym_template] = ACTIONS(8751), - [anon_sym_operator] = ACTIONS(8751), - [anon_sym_friend] = ACTIONS(8751), - [anon_sym_noexcept] = ACTIONS(8751), - [anon_sym_throw] = ACTIONS(8751), - [anon_sym_concept] = ACTIONS(8751), - [anon_sym_requires] = ACTIONS(8751), - [anon_sym_LBRACK_COLON] = ACTIONS(8753), + [STATE(2796)] = { + [sym_attribute_specifier] = STATE(3208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7549), + [anon_sym_COMMA] = ACTIONS(7549), + [anon_sym_LPAREN2] = ACTIONS(7549), + [anon_sym_DASH] = ACTIONS(7547), + [anon_sym_PLUS] = ACTIONS(7547), + [anon_sym_STAR] = ACTIONS(7547), + [anon_sym_SLASH] = ACTIONS(7547), + [anon_sym_PERCENT] = ACTIONS(7547), + [anon_sym_PIPE_PIPE] = ACTIONS(7549), + [anon_sym_AMP_AMP] = ACTIONS(7549), + [anon_sym_PIPE] = ACTIONS(7547), + [anon_sym_CARET] = ACTIONS(7547), + [anon_sym_AMP] = ACTIONS(7547), + [anon_sym_EQ_EQ] = ACTIONS(7549), + [anon_sym_BANG_EQ] = ACTIONS(7549), + [anon_sym_GT] = ACTIONS(7547), + [anon_sym_GT_EQ] = ACTIONS(7547), + [anon_sym_LT_EQ] = ACTIONS(7547), + [anon_sym_LT] = ACTIONS(7547), + [anon_sym_LT_LT] = ACTIONS(7547), + [anon_sym_GT_GT] = ACTIONS(7547), + [anon_sym___extension__] = ACTIONS(7549), + [anon_sym___attribute__] = ACTIONS(8265), + [anon_sym___attribute] = ACTIONS(8267), + [anon_sym_LBRACE] = ACTIONS(7549), + [anon_sym_LBRACK] = ACTIONS(7549), + [anon_sym_EQ] = ACTIONS(7547), + [anon_sym_const] = ACTIONS(7547), + [anon_sym_constexpr] = ACTIONS(7549), + [anon_sym_volatile] = ACTIONS(7549), + [anon_sym_restrict] = ACTIONS(7549), + [anon_sym___restrict__] = ACTIONS(7549), + [anon_sym__Atomic] = ACTIONS(7549), + [anon_sym__Noreturn] = ACTIONS(7549), + [anon_sym_noreturn] = ACTIONS(7549), + [anon_sym__Nonnull] = ACTIONS(7549), + [anon_sym_mutable] = ACTIONS(7549), + [anon_sym_constinit] = ACTIONS(7549), + [anon_sym_consteval] = ACTIONS(7549), + [anon_sym_alignas] = ACTIONS(7549), + [anon_sym__Alignas] = ACTIONS(7549), + [anon_sym_QMARK] = ACTIONS(7549), + [anon_sym_STAR_EQ] = ACTIONS(7549), + [anon_sym_SLASH_EQ] = ACTIONS(7549), + [anon_sym_PERCENT_EQ] = ACTIONS(7549), + [anon_sym_PLUS_EQ] = ACTIONS(7549), + [anon_sym_DASH_EQ] = ACTIONS(7549), + [anon_sym_LT_LT_EQ] = ACTIONS(7549), + [anon_sym_GT_GT_EQ] = ACTIONS(7547), + [anon_sym_AMP_EQ] = ACTIONS(7549), + [anon_sym_CARET_EQ] = ACTIONS(7549), + [anon_sym_PIPE_EQ] = ACTIONS(7549), + [anon_sym_and_eq] = ACTIONS(7549), + [anon_sym_or_eq] = ACTIONS(7549), + [anon_sym_xor_eq] = ACTIONS(7549), + [anon_sym_LT_EQ_GT] = ACTIONS(7549), + [anon_sym_or] = ACTIONS(7547), + [anon_sym_and] = ACTIONS(7547), + [anon_sym_bitor] = ACTIONS(7549), + [anon_sym_xor] = ACTIONS(7547), + [anon_sym_bitand] = ACTIONS(7549), + [anon_sym_not_eq] = ACTIONS(7549), + [anon_sym_DASH_DASH] = ACTIONS(7549), + [anon_sym_PLUS_PLUS] = ACTIONS(7549), + [anon_sym_DOT] = ACTIONS(7547), + [anon_sym_DOT_STAR] = ACTIONS(7549), + [anon_sym_DASH_GT] = ACTIONS(7549), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7549), + [anon_sym_override] = ACTIONS(7549), + [anon_sym_GT2] = ACTIONS(7549), + [anon_sym_requires] = ACTIONS(7549), }, - [STATE(3204)] = { - [sym_string_literal] = STATE(2486), - [sym_raw_string_literal] = STATE(2486), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8739), - [anon_sym_COMMA] = ACTIONS(8739), - [anon_sym_RPAREN] = ACTIONS(8739), - [anon_sym_LPAREN2] = ACTIONS(8739), - [anon_sym_DASH] = ACTIONS(8737), - [anon_sym_PLUS] = ACTIONS(8737), - [anon_sym_STAR] = ACTIONS(8737), - [anon_sym_SLASH] = ACTIONS(8737), - [anon_sym_PERCENT] = ACTIONS(8737), - [anon_sym_PIPE_PIPE] = ACTIONS(8739), - [anon_sym_AMP_AMP] = ACTIONS(8739), - [anon_sym_PIPE] = ACTIONS(8737), - [anon_sym_CARET] = ACTIONS(8737), - [anon_sym_AMP] = ACTIONS(8737), - [anon_sym_EQ_EQ] = ACTIONS(8739), - [anon_sym_BANG_EQ] = ACTIONS(8739), - [anon_sym_GT] = ACTIONS(8737), - [anon_sym_GT_EQ] = ACTIONS(8739), - [anon_sym_LT_EQ] = ACTIONS(8737), - [anon_sym_LT] = ACTIONS(8737), - [anon_sym_LT_LT] = ACTIONS(8737), - [anon_sym_GT_GT] = ACTIONS(8737), - [anon_sym_SEMI] = ACTIONS(8739), - [anon_sym_COLON] = ACTIONS(8737), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8739), - [anon_sym_RBRACE] = ACTIONS(8739), - [anon_sym_LBRACK] = ACTIONS(8739), - [anon_sym_EQ] = ACTIONS(8737), - [anon_sym_QMARK] = ACTIONS(8739), - [anon_sym_STAR_EQ] = ACTIONS(8739), - [anon_sym_SLASH_EQ] = ACTIONS(8739), - [anon_sym_PERCENT_EQ] = ACTIONS(8739), - [anon_sym_PLUS_EQ] = ACTIONS(8739), - [anon_sym_DASH_EQ] = ACTIONS(8739), - [anon_sym_LT_LT_EQ] = ACTIONS(8739), - [anon_sym_GT_GT_EQ] = ACTIONS(8739), - [anon_sym_AMP_EQ] = ACTIONS(8739), - [anon_sym_CARET_EQ] = ACTIONS(8739), - [anon_sym_PIPE_EQ] = ACTIONS(8739), - [anon_sym_and_eq] = ACTIONS(8737), - [anon_sym_or_eq] = ACTIONS(8737), - [anon_sym_xor_eq] = ACTIONS(8737), - [anon_sym_LT_EQ_GT] = ACTIONS(8739), - [anon_sym_or] = ACTIONS(8737), - [anon_sym_and] = ACTIONS(8737), - [anon_sym_bitor] = ACTIONS(8737), - [anon_sym_xor] = ACTIONS(8737), - [anon_sym_bitand] = ACTIONS(8737), - [anon_sym_not_eq] = ACTIONS(8737), - [anon_sym_DASH_DASH] = ACTIONS(8739), - [anon_sym_PLUS_PLUS] = ACTIONS(8739), - [anon_sym_DOT] = ACTIONS(8737), - [anon_sym_DOT_STAR] = ACTIONS(8739), - [anon_sym_DASH_GT] = ACTIONS(8739), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), - [anon_sym_COLON_RBRACK] = ACTIONS(8739), - [sym_literal_suffix] = ACTIONS(8737), + [STATE(2797)] = { + [sym_identifier] = ACTIONS(6624), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6626), + [anon_sym_COMMA] = ACTIONS(6626), + [anon_sym_RPAREN] = ACTIONS(6626), + [anon_sym_LPAREN2] = ACTIONS(6626), + [anon_sym_DASH] = ACTIONS(6624), + [anon_sym_PLUS] = ACTIONS(6624), + [anon_sym_STAR] = ACTIONS(6626), + [anon_sym_SLASH] = ACTIONS(6624), + [anon_sym_PERCENT] = ACTIONS(6626), + [anon_sym_PIPE_PIPE] = ACTIONS(6626), + [anon_sym_AMP_AMP] = ACTIONS(6626), + [anon_sym_PIPE] = ACTIONS(6624), + [anon_sym_CARET] = ACTIONS(6626), + [anon_sym_AMP] = ACTIONS(6624), + [anon_sym_EQ_EQ] = ACTIONS(6626), + [anon_sym_BANG_EQ] = ACTIONS(6626), + [anon_sym_GT] = ACTIONS(6624), + [anon_sym_GT_EQ] = ACTIONS(6626), + [anon_sym_LT_EQ] = ACTIONS(6624), + [anon_sym_LT] = ACTIONS(6624), + [anon_sym_LT_LT] = ACTIONS(6626), + [anon_sym_GT_GT] = ACTIONS(6626), + [anon_sym_SEMI] = ACTIONS(6626), + [anon_sym___extension__] = ACTIONS(6624), + [anon_sym___attribute__] = ACTIONS(6624), + [anon_sym___attribute] = ACTIONS(6624), + [anon_sym_COLON] = ACTIONS(6624), + [anon_sym_COLON_COLON] = ACTIONS(6626), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6626), + [anon_sym___based] = ACTIONS(6624), + [anon_sym_LBRACE] = ACTIONS(6626), + [anon_sym_RBRACE] = ACTIONS(6626), + [anon_sym_signed] = ACTIONS(6624), + [anon_sym_unsigned] = ACTIONS(6624), + [anon_sym_long] = ACTIONS(6624), + [anon_sym_short] = ACTIONS(6624), + [anon_sym_LBRACK] = ACTIONS(6626), + [anon_sym_const] = ACTIONS(6624), + [anon_sym_constexpr] = ACTIONS(6624), + [anon_sym_volatile] = ACTIONS(6624), + [anon_sym_restrict] = ACTIONS(6624), + [anon_sym___restrict__] = ACTIONS(6624), + [anon_sym__Atomic] = ACTIONS(6624), + [anon_sym__Noreturn] = ACTIONS(6624), + [anon_sym_noreturn] = ACTIONS(6624), + [anon_sym__Nonnull] = ACTIONS(6624), + [anon_sym_mutable] = ACTIONS(6624), + [anon_sym_constinit] = ACTIONS(6624), + [anon_sym_consteval] = ACTIONS(6624), + [anon_sym_alignas] = ACTIONS(6624), + [anon_sym__Alignas] = ACTIONS(6624), + [sym_primitive_type] = ACTIONS(6624), + [anon_sym_QMARK] = ACTIONS(6626), + [anon_sym_LT_EQ_GT] = ACTIONS(6626), + [anon_sym_or] = ACTIONS(6624), + [anon_sym_and] = ACTIONS(6624), + [anon_sym_bitor] = ACTIONS(6624), + [anon_sym_xor] = ACTIONS(6624), + [anon_sym_bitand] = ACTIONS(6624), + [anon_sym_not_eq] = ACTIONS(6624), + [anon_sym_DASH_DASH] = ACTIONS(6626), + [anon_sym_PLUS_PLUS] = ACTIONS(6626), + [anon_sym_DOT] = ACTIONS(6624), + [anon_sym_DOT_STAR] = ACTIONS(6626), + [anon_sym_DASH_GT] = ACTIONS(6626), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6624), + [anon_sym_decltype] = ACTIONS(6624), + [anon_sym_final] = ACTIONS(6624), + [anon_sym_override] = ACTIONS(6624), + [anon_sym_requires] = ACTIONS(6624), + [anon_sym_COLON_RBRACK] = ACTIONS(6626), }, - [STATE(3205)] = { - [sym_identifier] = ACTIONS(8321), - [aux_sym_preproc_def_token1] = ACTIONS(8321), - [aux_sym_preproc_if_token1] = ACTIONS(8321), - [aux_sym_preproc_if_token2] = ACTIONS(8321), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8321), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8321), - [sym_preproc_directive] = ACTIONS(8321), - [anon_sym_LPAREN2] = ACTIONS(8323), - [anon_sym_TILDE] = ACTIONS(8323), - [anon_sym_STAR] = ACTIONS(8323), - [anon_sym_AMP_AMP] = ACTIONS(8323), - [anon_sym_AMP] = ACTIONS(8321), - [anon_sym_SEMI] = ACTIONS(8323), - [anon_sym___extension__] = ACTIONS(8321), - [anon_sym_typedef] = ACTIONS(8321), - [anon_sym_virtual] = ACTIONS(8321), - [anon_sym_extern] = ACTIONS(8321), - [anon_sym___attribute__] = ACTIONS(8321), - [anon_sym___attribute] = ACTIONS(8321), - [anon_sym_using] = ACTIONS(8321), - [anon_sym_COLON_COLON] = ACTIONS(8323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8323), - [anon_sym___declspec] = ACTIONS(8321), - [anon_sym___based] = ACTIONS(8321), - [anon_sym_signed] = ACTIONS(8321), - [anon_sym_unsigned] = ACTIONS(8321), - [anon_sym_long] = ACTIONS(8321), - [anon_sym_short] = ACTIONS(8321), - [anon_sym_LBRACK] = ACTIONS(8321), - [anon_sym_static] = ACTIONS(8321), - [anon_sym_register] = ACTIONS(8321), - [anon_sym_inline] = ACTIONS(8321), - [anon_sym___inline] = ACTIONS(8321), - [anon_sym___inline__] = ACTIONS(8321), - [anon_sym___forceinline] = ACTIONS(8321), - [anon_sym_thread_local] = ACTIONS(8321), - [anon_sym___thread] = ACTIONS(8321), - [anon_sym_const] = ACTIONS(8321), - [anon_sym_constexpr] = ACTIONS(8321), - [anon_sym_volatile] = ACTIONS(8321), - [anon_sym_restrict] = ACTIONS(8321), - [anon_sym___restrict__] = ACTIONS(8321), - [anon_sym__Atomic] = ACTIONS(8321), - [anon_sym__Noreturn] = ACTIONS(8321), - [anon_sym_noreturn] = ACTIONS(8321), - [anon_sym__Nonnull] = ACTIONS(8321), - [anon_sym_mutable] = ACTIONS(8321), - [anon_sym_constinit] = ACTIONS(8321), - [anon_sym_consteval] = ACTIONS(8321), - [anon_sym_alignas] = ACTIONS(8321), - [anon_sym__Alignas] = ACTIONS(8321), - [sym_primitive_type] = ACTIONS(8321), - [anon_sym_enum] = ACTIONS(8321), - [anon_sym_class] = ACTIONS(8321), - [anon_sym_struct] = ACTIONS(8321), - [anon_sym_union] = ACTIONS(8321), - [anon_sym_typename] = ACTIONS(8321), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8321), - [anon_sym_decltype] = ACTIONS(8321), - [anon_sym_explicit] = ACTIONS(8321), - [anon_sym_private] = ACTIONS(8321), - [anon_sym_template] = ACTIONS(8321), - [anon_sym_operator] = ACTIONS(8321), - [anon_sym_friend] = ACTIONS(8321), - [anon_sym_public] = ACTIONS(8321), - [anon_sym_protected] = ACTIONS(8321), - [anon_sym_static_assert] = ACTIONS(8321), - [anon_sym_LBRACK_COLON] = ACTIONS(8323), - }, - [STATE(3206)] = { - [sym_identifier] = ACTIONS(8325), - [aux_sym_preproc_def_token1] = ACTIONS(8325), - [aux_sym_preproc_if_token1] = ACTIONS(8325), - [aux_sym_preproc_if_token2] = ACTIONS(8325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8325), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8325), - [sym_preproc_directive] = ACTIONS(8325), - [anon_sym_LPAREN2] = ACTIONS(8327), - [anon_sym_TILDE] = ACTIONS(8327), - [anon_sym_STAR] = ACTIONS(8327), - [anon_sym_AMP_AMP] = ACTIONS(8327), - [anon_sym_AMP] = ACTIONS(8325), - [anon_sym_SEMI] = ACTIONS(8327), - [anon_sym___extension__] = ACTIONS(8325), - [anon_sym_typedef] = ACTIONS(8325), - [anon_sym_virtual] = ACTIONS(8325), - [anon_sym_extern] = ACTIONS(8325), - [anon_sym___attribute__] = ACTIONS(8325), - [anon_sym___attribute] = ACTIONS(8325), - [anon_sym_using] = ACTIONS(8325), - [anon_sym_COLON_COLON] = ACTIONS(8327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8327), - [anon_sym___declspec] = ACTIONS(8325), - [anon_sym___based] = ACTIONS(8325), - [anon_sym_signed] = ACTIONS(8325), - [anon_sym_unsigned] = ACTIONS(8325), - [anon_sym_long] = ACTIONS(8325), - [anon_sym_short] = ACTIONS(8325), - [anon_sym_LBRACK] = ACTIONS(8325), - [anon_sym_static] = ACTIONS(8325), - [anon_sym_register] = ACTIONS(8325), - [anon_sym_inline] = ACTIONS(8325), - [anon_sym___inline] = ACTIONS(8325), - [anon_sym___inline__] = ACTIONS(8325), - [anon_sym___forceinline] = ACTIONS(8325), - [anon_sym_thread_local] = ACTIONS(8325), - [anon_sym___thread] = ACTIONS(8325), - [anon_sym_const] = ACTIONS(8325), - [anon_sym_constexpr] = ACTIONS(8325), - [anon_sym_volatile] = ACTIONS(8325), - [anon_sym_restrict] = ACTIONS(8325), - [anon_sym___restrict__] = ACTIONS(8325), - [anon_sym__Atomic] = ACTIONS(8325), - [anon_sym__Noreturn] = ACTIONS(8325), - [anon_sym_noreturn] = ACTIONS(8325), - [anon_sym__Nonnull] = ACTIONS(8325), - [anon_sym_mutable] = ACTIONS(8325), - [anon_sym_constinit] = ACTIONS(8325), - [anon_sym_consteval] = ACTIONS(8325), - [anon_sym_alignas] = ACTIONS(8325), - [anon_sym__Alignas] = ACTIONS(8325), - [sym_primitive_type] = ACTIONS(8325), - [anon_sym_enum] = ACTIONS(8325), - [anon_sym_class] = ACTIONS(8325), - [anon_sym_struct] = ACTIONS(8325), - [anon_sym_union] = ACTIONS(8325), - [anon_sym_typename] = ACTIONS(8325), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8325), - [anon_sym_decltype] = ACTIONS(8325), - [anon_sym_explicit] = ACTIONS(8325), - [anon_sym_private] = ACTIONS(8325), - [anon_sym_template] = ACTIONS(8325), - [anon_sym_operator] = ACTIONS(8325), - [anon_sym_friend] = ACTIONS(8325), - [anon_sym_public] = ACTIONS(8325), - [anon_sym_protected] = ACTIONS(8325), - [anon_sym_static_assert] = ACTIONS(8325), - [anon_sym_LBRACK_COLON] = ACTIONS(8327), - }, - [STATE(3207)] = { - [sym_identifier] = ACTIONS(4176), - [aux_sym_preproc_def_token1] = ACTIONS(4176), - [aux_sym_preproc_if_token1] = ACTIONS(4176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4176), - [sym_preproc_directive] = ACTIONS(4176), - [anon_sym_LPAREN2] = ACTIONS(4178), - [anon_sym_TILDE] = ACTIONS(4178), - [anon_sym_STAR] = ACTIONS(4178), - [anon_sym_AMP_AMP] = ACTIONS(4178), - [anon_sym_AMP] = ACTIONS(4176), - [anon_sym_SEMI] = ACTIONS(4178), - [anon_sym___extension__] = ACTIONS(4176), - [anon_sym_typedef] = ACTIONS(4176), - [anon_sym_virtual] = ACTIONS(4176), - [anon_sym_extern] = ACTIONS(4176), - [anon_sym___attribute__] = ACTIONS(4176), - [anon_sym___attribute] = ACTIONS(4176), - [anon_sym_using] = ACTIONS(4176), - [anon_sym_COLON_COLON] = ACTIONS(4178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4178), - [anon_sym___declspec] = ACTIONS(4176), - [anon_sym___based] = ACTIONS(4176), - [anon_sym_RBRACE] = ACTIONS(4178), - [anon_sym_signed] = ACTIONS(4176), - [anon_sym_unsigned] = ACTIONS(4176), - [anon_sym_long] = ACTIONS(4176), - [anon_sym_short] = ACTIONS(4176), - [anon_sym_LBRACK] = ACTIONS(4176), - [anon_sym_static] = ACTIONS(4176), - [anon_sym_register] = ACTIONS(4176), - [anon_sym_inline] = ACTIONS(4176), - [anon_sym___inline] = ACTIONS(4176), - [anon_sym___inline__] = ACTIONS(4176), - [anon_sym___forceinline] = ACTIONS(4176), - [anon_sym_thread_local] = ACTIONS(4176), - [anon_sym___thread] = ACTIONS(4176), - [anon_sym_const] = ACTIONS(4176), - [anon_sym_constexpr] = ACTIONS(4176), - [anon_sym_volatile] = ACTIONS(4176), - [anon_sym_restrict] = ACTIONS(4176), - [anon_sym___restrict__] = ACTIONS(4176), - [anon_sym__Atomic] = ACTIONS(4176), - [anon_sym__Noreturn] = ACTIONS(4176), - [anon_sym_noreturn] = ACTIONS(4176), - [anon_sym__Nonnull] = ACTIONS(4176), - [anon_sym_mutable] = ACTIONS(4176), - [anon_sym_constinit] = ACTIONS(4176), - [anon_sym_consteval] = ACTIONS(4176), - [anon_sym_alignas] = ACTIONS(4176), - [anon_sym__Alignas] = ACTIONS(4176), - [sym_primitive_type] = ACTIONS(4176), - [anon_sym_enum] = ACTIONS(4176), - [anon_sym_class] = ACTIONS(4176), - [anon_sym_struct] = ACTIONS(4176), - [anon_sym_union] = ACTIONS(4176), - [anon_sym_typename] = ACTIONS(4176), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4176), - [anon_sym_decltype] = ACTIONS(4176), - [anon_sym_explicit] = ACTIONS(4176), - [anon_sym_private] = ACTIONS(4176), - [anon_sym_template] = ACTIONS(4176), - [anon_sym_operator] = ACTIONS(4176), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(4176), - [anon_sym_protected] = ACTIONS(4176), - [anon_sym_static_assert] = ACTIONS(4176), - [anon_sym_LBRACK_COLON] = ACTIONS(4178), - }, - [STATE(3208)] = { + [STATE(2798)] = { [sym_identifier] = ACTIONS(4184), [aux_sym_preproc_def_token1] = ACTIONS(4184), [aux_sym_preproc_if_token1] = ACTIONS(4184), + [aux_sym_preproc_if_token2] = ACTIONS(4184), [aux_sym_preproc_ifdef_token1] = ACTIONS(4184), [aux_sym_preproc_ifdef_token2] = ACTIONS(4184), + [aux_sym_preproc_else_token1] = ACTIONS(4184), + [aux_sym_preproc_elif_token1] = ACTIONS(4184), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4184), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4184), [sym_preproc_directive] = ACTIONS(4184), [anon_sym_LPAREN2] = ACTIONS(4186), [anon_sym_TILDE] = ACTIONS(4186), @@ -395142,7 +378744,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(4186), [anon_sym___declspec] = ACTIONS(4184), [anon_sym___based] = ACTIONS(4184), - [anon_sym_RBRACE] = ACTIONS(4186), [anon_sym_signed] = ACTIONS(4184), [anon_sym_unsigned] = ACTIONS(4184), [anon_sym_long] = ACTIONS(4184), @@ -395189,2427 +378790,2942 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(4184), [anon_sym_LBRACK_COLON] = ACTIONS(4186), }, - [STATE(3209)] = { - [sym_identifier] = ACTIONS(4018), - [aux_sym_preproc_def_token1] = ACTIONS(4018), - [aux_sym_preproc_if_token1] = ACTIONS(4018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4018), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4018), - [sym_preproc_directive] = ACTIONS(4018), - [anon_sym_LPAREN2] = ACTIONS(4020), - [anon_sym_TILDE] = ACTIONS(4020), - [anon_sym_STAR] = ACTIONS(4020), - [anon_sym_AMP_AMP] = ACTIONS(4020), - [anon_sym_AMP] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4020), - [anon_sym___extension__] = ACTIONS(4018), - [anon_sym_typedef] = ACTIONS(4018), - [anon_sym_virtual] = ACTIONS(4018), - [anon_sym_extern] = ACTIONS(4018), - [anon_sym___attribute__] = ACTIONS(4018), - [anon_sym___attribute] = ACTIONS(4018), - [anon_sym_using] = ACTIONS(4018), - [anon_sym_COLON_COLON] = ACTIONS(4020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4020), - [anon_sym___declspec] = ACTIONS(4018), - [anon_sym___based] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4020), - [anon_sym_signed] = ACTIONS(4018), - [anon_sym_unsigned] = ACTIONS(4018), - [anon_sym_long] = ACTIONS(4018), - [anon_sym_short] = ACTIONS(4018), - [anon_sym_LBRACK] = ACTIONS(4018), - [anon_sym_static] = ACTIONS(4018), - [anon_sym_register] = ACTIONS(4018), - [anon_sym_inline] = ACTIONS(4018), - [anon_sym___inline] = ACTIONS(4018), - [anon_sym___inline__] = ACTIONS(4018), - [anon_sym___forceinline] = ACTIONS(4018), - [anon_sym_thread_local] = ACTIONS(4018), - [anon_sym___thread] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4018), - [anon_sym_constexpr] = ACTIONS(4018), - [anon_sym_volatile] = ACTIONS(4018), - [anon_sym_restrict] = ACTIONS(4018), - [anon_sym___restrict__] = ACTIONS(4018), - [anon_sym__Atomic] = ACTIONS(4018), - [anon_sym__Noreturn] = ACTIONS(4018), - [anon_sym_noreturn] = ACTIONS(4018), - [anon_sym__Nonnull] = ACTIONS(4018), - [anon_sym_mutable] = ACTIONS(4018), - [anon_sym_constinit] = ACTIONS(4018), - [anon_sym_consteval] = ACTIONS(4018), - [anon_sym_alignas] = ACTIONS(4018), - [anon_sym__Alignas] = ACTIONS(4018), - [sym_primitive_type] = ACTIONS(4018), - [anon_sym_enum] = ACTIONS(4018), - [anon_sym_class] = ACTIONS(4018), - [anon_sym_struct] = ACTIONS(4018), - [anon_sym_union] = ACTIONS(4018), - [anon_sym_typename] = ACTIONS(4018), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4018), - [anon_sym_decltype] = ACTIONS(4018), - [anon_sym_explicit] = ACTIONS(4018), - [anon_sym_private] = ACTIONS(4018), - [anon_sym_template] = ACTIONS(4018), - [anon_sym_operator] = ACTIONS(4018), - [anon_sym_friend] = ACTIONS(4018), - [anon_sym_public] = ACTIONS(4018), - [anon_sym_protected] = ACTIONS(4018), - [anon_sym_static_assert] = ACTIONS(4018), - [anon_sym_LBRACK_COLON] = ACTIONS(4020), + [STATE(2799)] = { + [sym_identifier] = ACTIONS(8697), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8699), + [anon_sym_COMMA] = ACTIONS(8699), + [anon_sym_RPAREN] = ACTIONS(8699), + [aux_sym_preproc_if_token2] = ACTIONS(8699), + [aux_sym_preproc_else_token1] = ACTIONS(8699), + [aux_sym_preproc_elif_token1] = ACTIONS(8697), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8699), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8699), + [anon_sym_LPAREN2] = ACTIONS(8699), + [anon_sym_DASH] = ACTIONS(8697), + [anon_sym_PLUS] = ACTIONS(8697), + [anon_sym_STAR] = ACTIONS(8697), + [anon_sym_SLASH] = ACTIONS(8697), + [anon_sym_PERCENT] = ACTIONS(8697), + [anon_sym_PIPE_PIPE] = ACTIONS(8699), + [anon_sym_AMP_AMP] = ACTIONS(8699), + [anon_sym_PIPE] = ACTIONS(8697), + [anon_sym_CARET] = ACTIONS(8697), + [anon_sym_AMP] = ACTIONS(8697), + [anon_sym_EQ_EQ] = ACTIONS(8699), + [anon_sym_BANG_EQ] = ACTIONS(8699), + [anon_sym_GT] = ACTIONS(8697), + [anon_sym_GT_EQ] = ACTIONS(8699), + [anon_sym_LT_EQ] = ACTIONS(8697), + [anon_sym_LT] = ACTIONS(8697), + [anon_sym_LT_LT] = ACTIONS(8697), + [anon_sym_GT_GT] = ACTIONS(8697), + [anon_sym_SEMI] = ACTIONS(8699), + [anon_sym_COLON] = ACTIONS(8697), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8699), + [anon_sym_RBRACE] = ACTIONS(8699), + [anon_sym_LBRACK] = ACTIONS(8699), + [anon_sym_EQ] = ACTIONS(8697), + [anon_sym_QMARK] = ACTIONS(8699), + [anon_sym_STAR_EQ] = ACTIONS(8699), + [anon_sym_SLASH_EQ] = ACTIONS(8699), + [anon_sym_PERCENT_EQ] = ACTIONS(8699), + [anon_sym_PLUS_EQ] = ACTIONS(8699), + [anon_sym_DASH_EQ] = ACTIONS(8699), + [anon_sym_LT_LT_EQ] = ACTIONS(8699), + [anon_sym_GT_GT_EQ] = ACTIONS(8699), + [anon_sym_AMP_EQ] = ACTIONS(8699), + [anon_sym_CARET_EQ] = ACTIONS(8699), + [anon_sym_PIPE_EQ] = ACTIONS(8699), + [anon_sym_and_eq] = ACTIONS(8697), + [anon_sym_or_eq] = ACTIONS(8697), + [anon_sym_xor_eq] = ACTIONS(8697), + [anon_sym_LT_EQ_GT] = ACTIONS(8699), + [anon_sym_or] = ACTIONS(8697), + [anon_sym_and] = ACTIONS(8697), + [anon_sym_bitor] = ACTIONS(8697), + [anon_sym_xor] = ACTIONS(8697), + [anon_sym_bitand] = ACTIONS(8697), + [anon_sym_not_eq] = ACTIONS(8697), + [anon_sym_DASH_DASH] = ACTIONS(8699), + [anon_sym_PLUS_PLUS] = ACTIONS(8699), + [anon_sym_DOT] = ACTIONS(8697), + [anon_sym_DOT_STAR] = ACTIONS(8699), + [anon_sym_DASH_GT] = ACTIONS(8699), + [anon_sym_L_DQUOTE] = ACTIONS(8699), + [anon_sym_u_DQUOTE] = ACTIONS(8699), + [anon_sym_U_DQUOTE] = ACTIONS(8699), + [anon_sym_u8_DQUOTE] = ACTIONS(8699), + [anon_sym_DQUOTE] = ACTIONS(8699), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8699), + [anon_sym_LR_DQUOTE] = ACTIONS(8699), + [anon_sym_uR_DQUOTE] = ACTIONS(8699), + [anon_sym_UR_DQUOTE] = ACTIONS(8699), + [anon_sym_u8R_DQUOTE] = ACTIONS(8699), + [anon_sym_COLON_RBRACK] = ACTIONS(8699), + [sym_literal_suffix] = ACTIONS(8697), }, - [STATE(3210)] = { - [sym_identifier] = ACTIONS(8329), - [aux_sym_preproc_def_token1] = ACTIONS(8329), - [aux_sym_preproc_if_token1] = ACTIONS(8329), - [aux_sym_preproc_if_token2] = ACTIONS(8329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8329), - [sym_preproc_directive] = ACTIONS(8329), - [anon_sym_LPAREN2] = ACTIONS(8331), - [anon_sym_TILDE] = ACTIONS(8331), - [anon_sym_STAR] = ACTIONS(8331), - [anon_sym_AMP_AMP] = ACTIONS(8331), - [anon_sym_AMP] = ACTIONS(8329), - [anon_sym_SEMI] = ACTIONS(8331), - [anon_sym___extension__] = ACTIONS(8329), - [anon_sym_typedef] = ACTIONS(8329), - [anon_sym_virtual] = ACTIONS(8329), - [anon_sym_extern] = ACTIONS(8329), - [anon_sym___attribute__] = ACTIONS(8329), - [anon_sym___attribute] = ACTIONS(8329), - [anon_sym_using] = ACTIONS(8329), - [anon_sym_COLON_COLON] = ACTIONS(8331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8331), - [anon_sym___declspec] = ACTIONS(8329), - [anon_sym___based] = ACTIONS(8329), - [anon_sym_signed] = ACTIONS(8329), - [anon_sym_unsigned] = ACTIONS(8329), - [anon_sym_long] = ACTIONS(8329), - [anon_sym_short] = ACTIONS(8329), - [anon_sym_LBRACK] = ACTIONS(8329), - [anon_sym_static] = ACTIONS(8329), - [anon_sym_register] = ACTIONS(8329), - [anon_sym_inline] = ACTIONS(8329), - [anon_sym___inline] = ACTIONS(8329), - [anon_sym___inline__] = ACTIONS(8329), - [anon_sym___forceinline] = ACTIONS(8329), - [anon_sym_thread_local] = ACTIONS(8329), - [anon_sym___thread] = ACTIONS(8329), - [anon_sym_const] = ACTIONS(8329), - [anon_sym_constexpr] = ACTIONS(8329), - [anon_sym_volatile] = ACTIONS(8329), - [anon_sym_restrict] = ACTIONS(8329), - [anon_sym___restrict__] = ACTIONS(8329), - [anon_sym__Atomic] = ACTIONS(8329), - [anon_sym__Noreturn] = ACTIONS(8329), - [anon_sym_noreturn] = ACTIONS(8329), - [anon_sym__Nonnull] = ACTIONS(8329), - [anon_sym_mutable] = ACTIONS(8329), - [anon_sym_constinit] = ACTIONS(8329), - [anon_sym_consteval] = ACTIONS(8329), - [anon_sym_alignas] = ACTIONS(8329), - [anon_sym__Alignas] = ACTIONS(8329), - [sym_primitive_type] = ACTIONS(8329), - [anon_sym_enum] = ACTIONS(8329), - [anon_sym_class] = ACTIONS(8329), - [anon_sym_struct] = ACTIONS(8329), - [anon_sym_union] = ACTIONS(8329), - [anon_sym_typename] = ACTIONS(8329), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8329), - [anon_sym_decltype] = ACTIONS(8329), - [anon_sym_explicit] = ACTIONS(8329), - [anon_sym_private] = ACTIONS(8329), - [anon_sym_template] = ACTIONS(8329), - [anon_sym_operator] = ACTIONS(8329), - [anon_sym_friend] = ACTIONS(8329), - [anon_sym_public] = ACTIONS(8329), - [anon_sym_protected] = ACTIONS(8329), - [anon_sym_static_assert] = ACTIONS(8329), - [anon_sym_LBRACK_COLON] = ACTIONS(8331), + [STATE(2800)] = { + [sym_attribute_specifier] = STATE(3241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7553), + [anon_sym_COMMA] = ACTIONS(7553), + [anon_sym_LPAREN2] = ACTIONS(7553), + [anon_sym_DASH] = ACTIONS(7551), + [anon_sym_PLUS] = ACTIONS(7551), + [anon_sym_STAR] = ACTIONS(7551), + [anon_sym_SLASH] = ACTIONS(7551), + [anon_sym_PERCENT] = ACTIONS(7551), + [anon_sym_PIPE_PIPE] = ACTIONS(7553), + [anon_sym_AMP_AMP] = ACTIONS(7553), + [anon_sym_PIPE] = ACTIONS(7551), + [anon_sym_CARET] = ACTIONS(7551), + [anon_sym_AMP] = ACTIONS(7551), + [anon_sym_EQ_EQ] = ACTIONS(7553), + [anon_sym_BANG_EQ] = ACTIONS(7553), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_GT_EQ] = ACTIONS(7551), + [anon_sym_LT_EQ] = ACTIONS(7551), + [anon_sym_LT] = ACTIONS(7551), + [anon_sym_LT_LT] = ACTIONS(7551), + [anon_sym_GT_GT] = ACTIONS(7551), + [anon_sym___extension__] = ACTIONS(7553), + [anon_sym___attribute__] = ACTIONS(8265), + [anon_sym___attribute] = ACTIONS(8267), + [anon_sym_LBRACE] = ACTIONS(7553), + [anon_sym_LBRACK] = ACTIONS(7553), + [anon_sym_EQ] = ACTIONS(7551), + [anon_sym_const] = ACTIONS(7551), + [anon_sym_constexpr] = ACTIONS(7553), + [anon_sym_volatile] = ACTIONS(7553), + [anon_sym_restrict] = ACTIONS(7553), + [anon_sym___restrict__] = ACTIONS(7553), + [anon_sym__Atomic] = ACTIONS(7553), + [anon_sym__Noreturn] = ACTIONS(7553), + [anon_sym_noreturn] = ACTIONS(7553), + [anon_sym__Nonnull] = ACTIONS(7553), + [anon_sym_mutable] = ACTIONS(7553), + [anon_sym_constinit] = ACTIONS(7553), + [anon_sym_consteval] = ACTIONS(7553), + [anon_sym_alignas] = ACTIONS(7553), + [anon_sym__Alignas] = ACTIONS(7553), + [anon_sym_QMARK] = ACTIONS(7553), + [anon_sym_STAR_EQ] = ACTIONS(7553), + [anon_sym_SLASH_EQ] = ACTIONS(7553), + [anon_sym_PERCENT_EQ] = ACTIONS(7553), + [anon_sym_PLUS_EQ] = ACTIONS(7553), + [anon_sym_DASH_EQ] = ACTIONS(7553), + [anon_sym_LT_LT_EQ] = ACTIONS(7553), + [anon_sym_GT_GT_EQ] = ACTIONS(7551), + [anon_sym_AMP_EQ] = ACTIONS(7553), + [anon_sym_CARET_EQ] = ACTIONS(7553), + [anon_sym_PIPE_EQ] = ACTIONS(7553), + [anon_sym_and_eq] = ACTIONS(7553), + [anon_sym_or_eq] = ACTIONS(7553), + [anon_sym_xor_eq] = ACTIONS(7553), + [anon_sym_LT_EQ_GT] = ACTIONS(7553), + [anon_sym_or] = ACTIONS(7551), + [anon_sym_and] = ACTIONS(7551), + [anon_sym_bitor] = ACTIONS(7553), + [anon_sym_xor] = ACTIONS(7551), + [anon_sym_bitand] = ACTIONS(7553), + [anon_sym_not_eq] = ACTIONS(7553), + [anon_sym_DASH_DASH] = ACTIONS(7553), + [anon_sym_PLUS_PLUS] = ACTIONS(7553), + [anon_sym_DOT] = ACTIONS(7551), + [anon_sym_DOT_STAR] = ACTIONS(7553), + [anon_sym_DASH_GT] = ACTIONS(7553), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7553), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_GT2] = ACTIONS(7553), + [anon_sym_requires] = ACTIONS(7553), }, - [STATE(3211)] = { - [sym_identifier] = ACTIONS(4018), - [aux_sym_preproc_def_token1] = ACTIONS(4018), - [aux_sym_preproc_if_token1] = ACTIONS(4018), - [aux_sym_preproc_if_token2] = ACTIONS(4018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4018), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4018), - [sym_preproc_directive] = ACTIONS(4018), - [anon_sym_LPAREN2] = ACTIONS(4020), - [anon_sym_TILDE] = ACTIONS(4020), - [anon_sym_STAR] = ACTIONS(4020), - [anon_sym_AMP_AMP] = ACTIONS(4020), - [anon_sym_AMP] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4020), - [anon_sym___extension__] = ACTIONS(4018), - [anon_sym_typedef] = ACTIONS(4018), - [anon_sym_virtual] = ACTIONS(4018), - [anon_sym_extern] = ACTIONS(4018), - [anon_sym___attribute__] = ACTIONS(4018), - [anon_sym___attribute] = ACTIONS(4018), - [anon_sym_using] = ACTIONS(4018), - [anon_sym_COLON_COLON] = ACTIONS(4020), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4020), - [anon_sym___declspec] = ACTIONS(4018), - [anon_sym___based] = ACTIONS(4018), - [anon_sym_signed] = ACTIONS(4018), - [anon_sym_unsigned] = ACTIONS(4018), - [anon_sym_long] = ACTIONS(4018), - [anon_sym_short] = ACTIONS(4018), - [anon_sym_LBRACK] = ACTIONS(4018), - [anon_sym_static] = ACTIONS(4018), - [anon_sym_register] = ACTIONS(4018), - [anon_sym_inline] = ACTIONS(4018), - [anon_sym___inline] = ACTIONS(4018), - [anon_sym___inline__] = ACTIONS(4018), - [anon_sym___forceinline] = ACTIONS(4018), - [anon_sym_thread_local] = ACTIONS(4018), - [anon_sym___thread] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4018), - [anon_sym_constexpr] = ACTIONS(4018), - [anon_sym_volatile] = ACTIONS(4018), - [anon_sym_restrict] = ACTIONS(4018), - [anon_sym___restrict__] = ACTIONS(4018), - [anon_sym__Atomic] = ACTIONS(4018), - [anon_sym__Noreturn] = ACTIONS(4018), - [anon_sym_noreturn] = ACTIONS(4018), - [anon_sym__Nonnull] = ACTIONS(4018), - [anon_sym_mutable] = ACTIONS(4018), - [anon_sym_constinit] = ACTIONS(4018), - [anon_sym_consteval] = ACTIONS(4018), - [anon_sym_alignas] = ACTIONS(4018), - [anon_sym__Alignas] = ACTIONS(4018), - [sym_primitive_type] = ACTIONS(4018), - [anon_sym_enum] = ACTIONS(4018), - [anon_sym_class] = ACTIONS(4018), - [anon_sym_struct] = ACTIONS(4018), - [anon_sym_union] = ACTIONS(4018), - [anon_sym_typename] = ACTIONS(4018), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4018), - [anon_sym_decltype] = ACTIONS(4018), - [anon_sym_explicit] = ACTIONS(4018), - [anon_sym_private] = ACTIONS(4018), - [anon_sym_template] = ACTIONS(4018), - [anon_sym_operator] = ACTIONS(4018), - [anon_sym_friend] = ACTIONS(4018), - [anon_sym_public] = ACTIONS(4018), - [anon_sym_protected] = ACTIONS(4018), - [anon_sym_static_assert] = ACTIONS(4018), - [anon_sym_LBRACK_COLON] = ACTIONS(4020), + [STATE(2801)] = { + [sym_template_argument_list] = STATE(2846), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6567), + [anon_sym_COMMA] = ACTIONS(6567), + [anon_sym_RPAREN] = ACTIONS(6569), + [anon_sym_LPAREN2] = ACTIONS(6569), + [anon_sym_DASH] = ACTIONS(6574), + [anon_sym_PLUS] = ACTIONS(6574), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(6574), + [anon_sym_PERCENT] = ACTIONS(6574), + [anon_sym_PIPE_PIPE] = ACTIONS(6567), + [anon_sym_AMP_AMP] = ACTIONS(6569), + [anon_sym_PIPE] = ACTIONS(6574), + [anon_sym_CARET] = ACTIONS(6574), + [anon_sym_AMP] = ACTIONS(6576), + [anon_sym_EQ_EQ] = ACTIONS(6567), + [anon_sym_BANG_EQ] = ACTIONS(6567), + [anon_sym_GT] = ACTIONS(6574), + [anon_sym_GT_EQ] = ACTIONS(6567), + [anon_sym_LT_EQ] = ACTIONS(6574), + [anon_sym_LT] = ACTIONS(8701), + [anon_sym_LT_LT] = ACTIONS(6574), + [anon_sym_GT_GT] = ACTIONS(6574), + [anon_sym___extension__] = ACTIONS(6572), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6567), + [anon_sym_LBRACE] = ACTIONS(6572), + [anon_sym_LBRACK] = ACTIONS(6576), + [anon_sym_EQ] = ACTIONS(6574), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_constexpr] = ACTIONS(6572), + [anon_sym_volatile] = ACTIONS(6572), + [anon_sym_restrict] = ACTIONS(6572), + [anon_sym___restrict__] = ACTIONS(6572), + [anon_sym__Atomic] = ACTIONS(6572), + [anon_sym__Noreturn] = ACTIONS(6572), + [anon_sym_noreturn] = ACTIONS(6572), + [anon_sym__Nonnull] = ACTIONS(6572), + [anon_sym_mutable] = ACTIONS(6572), + [anon_sym_constinit] = ACTIONS(6572), + [anon_sym_consteval] = ACTIONS(6572), + [anon_sym_alignas] = ACTIONS(6572), + [anon_sym__Alignas] = ACTIONS(6572), + [anon_sym_QMARK] = ACTIONS(6567), + [anon_sym_STAR_EQ] = ACTIONS(6567), + [anon_sym_SLASH_EQ] = ACTIONS(6567), + [anon_sym_PERCENT_EQ] = ACTIONS(6567), + [anon_sym_PLUS_EQ] = ACTIONS(6567), + [anon_sym_DASH_EQ] = ACTIONS(6567), + [anon_sym_LT_LT_EQ] = ACTIONS(6567), + [anon_sym_GT_GT_EQ] = ACTIONS(6567), + [anon_sym_AMP_EQ] = ACTIONS(6567), + [anon_sym_CARET_EQ] = ACTIONS(6567), + [anon_sym_PIPE_EQ] = ACTIONS(6567), + [anon_sym_and_eq] = ACTIONS(6567), + [anon_sym_or_eq] = ACTIONS(6567), + [anon_sym_xor_eq] = ACTIONS(6567), + [anon_sym_LT_EQ_GT] = ACTIONS(6567), + [anon_sym_or] = ACTIONS(6574), + [anon_sym_and] = ACTIONS(6574), + [anon_sym_bitor] = ACTIONS(6567), + [anon_sym_xor] = ACTIONS(6574), + [anon_sym_bitand] = ACTIONS(6567), + [anon_sym_not_eq] = ACTIONS(6567), + [anon_sym_DASH_DASH] = ACTIONS(6567), + [anon_sym_PLUS_PLUS] = ACTIONS(6567), + [anon_sym_DOT] = ACTIONS(6574), + [anon_sym_DOT_STAR] = ACTIONS(6567), + [anon_sym_DASH_GT] = ACTIONS(6574), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6572), + [anon_sym_decltype] = ACTIONS(6572), + [anon_sym_DASH_GT_STAR] = ACTIONS(6567), }, - [STATE(3212)] = { - [sym_identifier] = ACTIONS(8333), - [aux_sym_preproc_def_token1] = ACTIONS(8333), - [aux_sym_preproc_if_token1] = ACTIONS(8333), - [aux_sym_preproc_if_token2] = ACTIONS(8333), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8333), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8333), - [sym_preproc_directive] = ACTIONS(8333), - [anon_sym_LPAREN2] = ACTIONS(8335), - [anon_sym_TILDE] = ACTIONS(8335), - [anon_sym_STAR] = ACTIONS(8335), - [anon_sym_AMP_AMP] = ACTIONS(8335), - [anon_sym_AMP] = ACTIONS(8333), - [anon_sym_SEMI] = ACTIONS(8335), - [anon_sym___extension__] = ACTIONS(8333), - [anon_sym_typedef] = ACTIONS(8333), - [anon_sym_virtual] = ACTIONS(8333), - [anon_sym_extern] = ACTIONS(8333), - [anon_sym___attribute__] = ACTIONS(8333), - [anon_sym___attribute] = ACTIONS(8333), - [anon_sym_using] = ACTIONS(8333), - [anon_sym_COLON_COLON] = ACTIONS(8335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8335), - [anon_sym___declspec] = ACTIONS(8333), - [anon_sym___based] = ACTIONS(8333), - [anon_sym_signed] = ACTIONS(8333), - [anon_sym_unsigned] = ACTIONS(8333), - [anon_sym_long] = ACTIONS(8333), - [anon_sym_short] = ACTIONS(8333), - [anon_sym_LBRACK] = ACTIONS(8333), - [anon_sym_static] = ACTIONS(8333), - [anon_sym_register] = ACTIONS(8333), - [anon_sym_inline] = ACTIONS(8333), - [anon_sym___inline] = ACTIONS(8333), - [anon_sym___inline__] = ACTIONS(8333), - [anon_sym___forceinline] = ACTIONS(8333), - [anon_sym_thread_local] = ACTIONS(8333), - [anon_sym___thread] = ACTIONS(8333), - [anon_sym_const] = ACTIONS(8333), - [anon_sym_constexpr] = ACTIONS(8333), - [anon_sym_volatile] = ACTIONS(8333), - [anon_sym_restrict] = ACTIONS(8333), - [anon_sym___restrict__] = ACTIONS(8333), - [anon_sym__Atomic] = ACTIONS(8333), - [anon_sym__Noreturn] = ACTIONS(8333), - [anon_sym_noreturn] = ACTIONS(8333), - [anon_sym__Nonnull] = ACTIONS(8333), - [anon_sym_mutable] = ACTIONS(8333), - [anon_sym_constinit] = ACTIONS(8333), - [anon_sym_consteval] = ACTIONS(8333), - [anon_sym_alignas] = ACTIONS(8333), - [anon_sym__Alignas] = ACTIONS(8333), - [sym_primitive_type] = ACTIONS(8333), - [anon_sym_enum] = ACTIONS(8333), - [anon_sym_class] = ACTIONS(8333), - [anon_sym_struct] = ACTIONS(8333), - [anon_sym_union] = ACTIONS(8333), - [anon_sym_typename] = ACTIONS(8333), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8333), - [anon_sym_decltype] = ACTIONS(8333), - [anon_sym_explicit] = ACTIONS(8333), - [anon_sym_private] = ACTIONS(8333), - [anon_sym_template] = ACTIONS(8333), - [anon_sym_operator] = ACTIONS(8333), - [anon_sym_friend] = ACTIONS(8333), - [anon_sym_public] = ACTIONS(8333), - [anon_sym_protected] = ACTIONS(8333), - [anon_sym_static_assert] = ACTIONS(8333), - [anon_sym_LBRACK_COLON] = ACTIONS(8335), + [STATE(2802)] = { + [sym_identifier] = ACTIONS(4012), + [aux_sym_preproc_def_token1] = ACTIONS(4012), + [aux_sym_preproc_if_token1] = ACTIONS(4012), + [aux_sym_preproc_if_token2] = ACTIONS(4012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4012), + [aux_sym_preproc_else_token1] = ACTIONS(4012), + [aux_sym_preproc_elif_token1] = ACTIONS(4012), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4012), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4012), + [sym_preproc_directive] = ACTIONS(4012), + [anon_sym_LPAREN2] = ACTIONS(4014), + [anon_sym_TILDE] = ACTIONS(4014), + [anon_sym_STAR] = ACTIONS(4014), + [anon_sym_AMP_AMP] = ACTIONS(4014), + [anon_sym_AMP] = ACTIONS(4012), + [anon_sym_SEMI] = ACTIONS(4014), + [anon_sym___extension__] = ACTIONS(4012), + [anon_sym_typedef] = ACTIONS(4012), + [anon_sym_virtual] = ACTIONS(4012), + [anon_sym_extern] = ACTIONS(4012), + [anon_sym___attribute__] = ACTIONS(4012), + [anon_sym___attribute] = ACTIONS(4012), + [anon_sym_using] = ACTIONS(4012), + [anon_sym_COLON_COLON] = ACTIONS(4014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4014), + [anon_sym___declspec] = ACTIONS(4012), + [anon_sym___based] = ACTIONS(4012), + [anon_sym_signed] = ACTIONS(4012), + [anon_sym_unsigned] = ACTIONS(4012), + [anon_sym_long] = ACTIONS(4012), + [anon_sym_short] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_static] = ACTIONS(4012), + [anon_sym_register] = ACTIONS(4012), + [anon_sym_inline] = ACTIONS(4012), + [anon_sym___inline] = ACTIONS(4012), + [anon_sym___inline__] = ACTIONS(4012), + [anon_sym___forceinline] = ACTIONS(4012), + [anon_sym_thread_local] = ACTIONS(4012), + [anon_sym___thread] = ACTIONS(4012), + [anon_sym_const] = ACTIONS(4012), + [anon_sym_constexpr] = ACTIONS(4012), + [anon_sym_volatile] = ACTIONS(4012), + [anon_sym_restrict] = ACTIONS(4012), + [anon_sym___restrict__] = ACTIONS(4012), + [anon_sym__Atomic] = ACTIONS(4012), + [anon_sym__Noreturn] = ACTIONS(4012), + [anon_sym_noreturn] = ACTIONS(4012), + [anon_sym__Nonnull] = ACTIONS(4012), + [anon_sym_mutable] = ACTIONS(4012), + [anon_sym_constinit] = ACTIONS(4012), + [anon_sym_consteval] = ACTIONS(4012), + [anon_sym_alignas] = ACTIONS(4012), + [anon_sym__Alignas] = ACTIONS(4012), + [sym_primitive_type] = ACTIONS(4012), + [anon_sym_enum] = ACTIONS(4012), + [anon_sym_class] = ACTIONS(4012), + [anon_sym_struct] = ACTIONS(4012), + [anon_sym_union] = ACTIONS(4012), + [anon_sym_typename] = ACTIONS(4012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4012), + [anon_sym_decltype] = ACTIONS(4012), + [anon_sym_explicit] = ACTIONS(4012), + [anon_sym_private] = ACTIONS(4012), + [anon_sym_template] = ACTIONS(4012), + [anon_sym_operator] = ACTIONS(4012), + [anon_sym_friend] = ACTIONS(4012), + [anon_sym_public] = ACTIONS(4012), + [anon_sym_protected] = ACTIONS(4012), + [anon_sym_static_assert] = ACTIONS(4012), + [anon_sym_LBRACK_COLON] = ACTIONS(4014), }, - [STATE(3213)] = { - [sym_identifier] = ACTIONS(8337), - [aux_sym_preproc_def_token1] = ACTIONS(8337), - [aux_sym_preproc_if_token1] = ACTIONS(8337), - [aux_sym_preproc_if_token2] = ACTIONS(8337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8337), - [sym_preproc_directive] = ACTIONS(8337), - [anon_sym_LPAREN2] = ACTIONS(8339), - [anon_sym_TILDE] = ACTIONS(8339), - [anon_sym_STAR] = ACTIONS(8339), - [anon_sym_AMP_AMP] = ACTIONS(8339), - [anon_sym_AMP] = ACTIONS(8337), - [anon_sym_SEMI] = ACTIONS(8339), - [anon_sym___extension__] = ACTIONS(8337), - [anon_sym_typedef] = ACTIONS(8337), - [anon_sym_virtual] = ACTIONS(8337), - [anon_sym_extern] = ACTIONS(8337), - [anon_sym___attribute__] = ACTIONS(8337), - [anon_sym___attribute] = ACTIONS(8337), - [anon_sym_using] = ACTIONS(8337), - [anon_sym_COLON_COLON] = ACTIONS(8339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8339), - [anon_sym___declspec] = ACTIONS(8337), - [anon_sym___based] = ACTIONS(8337), - [anon_sym_signed] = ACTIONS(8337), - [anon_sym_unsigned] = ACTIONS(8337), - [anon_sym_long] = ACTIONS(8337), - [anon_sym_short] = ACTIONS(8337), - [anon_sym_LBRACK] = ACTIONS(8337), - [anon_sym_static] = ACTIONS(8337), - [anon_sym_register] = ACTIONS(8337), - [anon_sym_inline] = ACTIONS(8337), - [anon_sym___inline] = ACTIONS(8337), - [anon_sym___inline__] = ACTIONS(8337), - [anon_sym___forceinline] = ACTIONS(8337), - [anon_sym_thread_local] = ACTIONS(8337), - [anon_sym___thread] = ACTIONS(8337), - [anon_sym_const] = ACTIONS(8337), - [anon_sym_constexpr] = ACTIONS(8337), - [anon_sym_volatile] = ACTIONS(8337), - [anon_sym_restrict] = ACTIONS(8337), - [anon_sym___restrict__] = ACTIONS(8337), - [anon_sym__Atomic] = ACTIONS(8337), - [anon_sym__Noreturn] = ACTIONS(8337), - [anon_sym_noreturn] = ACTIONS(8337), - [anon_sym__Nonnull] = ACTIONS(8337), - [anon_sym_mutable] = ACTIONS(8337), - [anon_sym_constinit] = ACTIONS(8337), - [anon_sym_consteval] = ACTIONS(8337), - [anon_sym_alignas] = ACTIONS(8337), - [anon_sym__Alignas] = ACTIONS(8337), - [sym_primitive_type] = ACTIONS(8337), - [anon_sym_enum] = ACTIONS(8337), - [anon_sym_class] = ACTIONS(8337), - [anon_sym_struct] = ACTIONS(8337), - [anon_sym_union] = ACTIONS(8337), - [anon_sym_typename] = ACTIONS(8337), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8337), - [anon_sym_decltype] = ACTIONS(8337), - [anon_sym_explicit] = ACTIONS(8337), - [anon_sym_private] = ACTIONS(8337), - [anon_sym_template] = ACTIONS(8337), - [anon_sym_operator] = ACTIONS(8337), - [anon_sym_friend] = ACTIONS(8337), - [anon_sym_public] = ACTIONS(8337), - [anon_sym_protected] = ACTIONS(8337), - [anon_sym_static_assert] = ACTIONS(8337), - [anon_sym_LBRACK_COLON] = ACTIONS(8339), + [STATE(2803)] = { + [sym_identifier] = ACTIONS(8704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8706), + [anon_sym_COMMA] = ACTIONS(8706), + [anon_sym_RPAREN] = ACTIONS(8706), + [aux_sym_preproc_if_token2] = ACTIONS(8706), + [aux_sym_preproc_else_token1] = ACTIONS(8706), + [aux_sym_preproc_elif_token1] = ACTIONS(8704), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8706), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8706), + [anon_sym_LPAREN2] = ACTIONS(8706), + [anon_sym_DASH] = ACTIONS(8704), + [anon_sym_PLUS] = ACTIONS(8704), + [anon_sym_STAR] = ACTIONS(8704), + [anon_sym_SLASH] = ACTIONS(8704), + [anon_sym_PERCENT] = ACTIONS(8704), + [anon_sym_PIPE_PIPE] = ACTIONS(8706), + [anon_sym_AMP_AMP] = ACTIONS(8706), + [anon_sym_PIPE] = ACTIONS(8704), + [anon_sym_CARET] = ACTIONS(8704), + [anon_sym_AMP] = ACTIONS(8704), + [anon_sym_EQ_EQ] = ACTIONS(8706), + [anon_sym_BANG_EQ] = ACTIONS(8706), + [anon_sym_GT] = ACTIONS(8704), + [anon_sym_GT_EQ] = ACTIONS(8706), + [anon_sym_LT_EQ] = ACTIONS(8704), + [anon_sym_LT] = ACTIONS(8704), + [anon_sym_LT_LT] = ACTIONS(8704), + [anon_sym_GT_GT] = ACTIONS(8704), + [anon_sym_SEMI] = ACTIONS(8706), + [anon_sym___attribute__] = ACTIONS(8704), + [anon_sym___attribute] = ACTIONS(8704), + [anon_sym_COLON] = ACTIONS(8704), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8706), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8706), + [anon_sym_RBRACE] = ACTIONS(8706), + [anon_sym_LBRACK] = ACTIONS(8704), + [anon_sym_EQ] = ACTIONS(8704), + [anon_sym_QMARK] = ACTIONS(8706), + [anon_sym_STAR_EQ] = ACTIONS(8706), + [anon_sym_SLASH_EQ] = ACTIONS(8706), + [anon_sym_PERCENT_EQ] = ACTIONS(8706), + [anon_sym_PLUS_EQ] = ACTIONS(8706), + [anon_sym_DASH_EQ] = ACTIONS(8706), + [anon_sym_LT_LT_EQ] = ACTIONS(8706), + [anon_sym_GT_GT_EQ] = ACTIONS(8706), + [anon_sym_AMP_EQ] = ACTIONS(8706), + [anon_sym_CARET_EQ] = ACTIONS(8706), + [anon_sym_PIPE_EQ] = ACTIONS(8706), + [anon_sym_and_eq] = ACTIONS(8704), + [anon_sym_or_eq] = ACTIONS(8704), + [anon_sym_xor_eq] = ACTIONS(8704), + [anon_sym_LT_EQ_GT] = ACTIONS(8706), + [anon_sym_or] = ACTIONS(8704), + [anon_sym_and] = ACTIONS(8704), + [anon_sym_bitor] = ACTIONS(8704), + [anon_sym_xor] = ACTIONS(8704), + [anon_sym_bitand] = ACTIONS(8704), + [anon_sym_not_eq] = ACTIONS(8704), + [anon_sym_DASH_DASH] = ACTIONS(8706), + [anon_sym_PLUS_PLUS] = ACTIONS(8706), + [anon_sym_asm] = ACTIONS(8704), + [anon_sym___asm__] = ACTIONS(8704), + [anon_sym___asm] = ACTIONS(8704), + [anon_sym_DOT] = ACTIONS(8704), + [anon_sym_DOT_STAR] = ACTIONS(8706), + [anon_sym_DASH_GT] = ACTIONS(8706), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8704), + [anon_sym_override] = ACTIONS(8704), + [anon_sym_noexcept] = ACTIONS(8704), + [anon_sym_throw] = ACTIONS(8704), + [anon_sym_requires] = ACTIONS(8704), + [anon_sym_COLON_RBRACK] = ACTIONS(8706), }, - [STATE(3214)] = { - [sym_identifier] = ACTIONS(4192), - [aux_sym_preproc_def_token1] = ACTIONS(4192), - [aux_sym_preproc_if_token1] = ACTIONS(4192), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4192), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4192), - [sym_preproc_directive] = ACTIONS(4192), - [anon_sym_LPAREN2] = ACTIONS(4194), - [anon_sym_TILDE] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [anon_sym_AMP_AMP] = ACTIONS(4194), - [anon_sym_AMP] = ACTIONS(4192), - [anon_sym_SEMI] = ACTIONS(4194), - [anon_sym___extension__] = ACTIONS(4192), - [anon_sym_typedef] = ACTIONS(4192), - [anon_sym_virtual] = ACTIONS(4192), - [anon_sym_extern] = ACTIONS(4192), - [anon_sym___attribute__] = ACTIONS(4192), - [anon_sym___attribute] = ACTIONS(4192), - [anon_sym_using] = ACTIONS(4192), - [anon_sym_COLON_COLON] = ACTIONS(4194), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), - [anon_sym___declspec] = ACTIONS(4192), - [anon_sym___based] = ACTIONS(4192), - [anon_sym_RBRACE] = ACTIONS(4194), - [anon_sym_signed] = ACTIONS(4192), - [anon_sym_unsigned] = ACTIONS(4192), - [anon_sym_long] = ACTIONS(4192), - [anon_sym_short] = ACTIONS(4192), - [anon_sym_LBRACK] = ACTIONS(4192), - [anon_sym_static] = ACTIONS(4192), - [anon_sym_register] = ACTIONS(4192), - [anon_sym_inline] = ACTIONS(4192), - [anon_sym___inline] = ACTIONS(4192), - [anon_sym___inline__] = ACTIONS(4192), - [anon_sym___forceinline] = ACTIONS(4192), - [anon_sym_thread_local] = ACTIONS(4192), - [anon_sym___thread] = ACTIONS(4192), - [anon_sym_const] = ACTIONS(4192), - [anon_sym_constexpr] = ACTIONS(4192), - [anon_sym_volatile] = ACTIONS(4192), - [anon_sym_restrict] = ACTIONS(4192), - [anon_sym___restrict__] = ACTIONS(4192), - [anon_sym__Atomic] = ACTIONS(4192), - [anon_sym__Noreturn] = ACTIONS(4192), - [anon_sym_noreturn] = ACTIONS(4192), - [anon_sym__Nonnull] = ACTIONS(4192), - [anon_sym_mutable] = ACTIONS(4192), - [anon_sym_constinit] = ACTIONS(4192), - [anon_sym_consteval] = ACTIONS(4192), - [anon_sym_alignas] = ACTIONS(4192), - [anon_sym__Alignas] = ACTIONS(4192), - [sym_primitive_type] = ACTIONS(4192), - [anon_sym_enum] = ACTIONS(4192), - [anon_sym_class] = ACTIONS(4192), - [anon_sym_struct] = ACTIONS(4192), - [anon_sym_union] = ACTIONS(4192), - [anon_sym_typename] = ACTIONS(4192), + [STATE(2804)] = { + [sym_identifier] = ACTIONS(6632), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6634), + [anon_sym_COMMA] = ACTIONS(6634), + [anon_sym_RPAREN] = ACTIONS(6634), + [anon_sym_LPAREN2] = ACTIONS(6634), + [anon_sym_DASH] = ACTIONS(6632), + [anon_sym_PLUS] = ACTIONS(6632), + [anon_sym_STAR] = ACTIONS(6634), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_PERCENT] = ACTIONS(6634), + [anon_sym_PIPE_PIPE] = ACTIONS(6634), + [anon_sym_AMP_AMP] = ACTIONS(6634), + [anon_sym_PIPE] = ACTIONS(6632), + [anon_sym_CARET] = ACTIONS(6634), + [anon_sym_AMP] = ACTIONS(6632), + [anon_sym_EQ_EQ] = ACTIONS(6634), + [anon_sym_BANG_EQ] = ACTIONS(6634), + [anon_sym_GT] = ACTIONS(6632), + [anon_sym_GT_EQ] = ACTIONS(6634), + [anon_sym_LT_EQ] = ACTIONS(6632), + [anon_sym_LT] = ACTIONS(6632), + [anon_sym_LT_LT] = ACTIONS(6634), + [anon_sym_GT_GT] = ACTIONS(6634), + [anon_sym_SEMI] = ACTIONS(6634), + [anon_sym___extension__] = ACTIONS(6632), + [anon_sym___attribute__] = ACTIONS(6632), + [anon_sym___attribute] = ACTIONS(6632), + [anon_sym_COLON] = ACTIONS(6632), + [anon_sym_COLON_COLON] = ACTIONS(6634), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6634), + [anon_sym___based] = ACTIONS(6632), + [anon_sym_LBRACE] = ACTIONS(6634), + [anon_sym_RBRACE] = ACTIONS(6634), + [anon_sym_signed] = ACTIONS(6632), + [anon_sym_unsigned] = ACTIONS(6632), + [anon_sym_long] = ACTIONS(6632), + [anon_sym_short] = ACTIONS(6632), + [anon_sym_LBRACK] = ACTIONS(6634), + [anon_sym_const] = ACTIONS(6632), + [anon_sym_constexpr] = ACTIONS(6632), + [anon_sym_volatile] = ACTIONS(6632), + [anon_sym_restrict] = ACTIONS(6632), + [anon_sym___restrict__] = ACTIONS(6632), + [anon_sym__Atomic] = ACTIONS(6632), + [anon_sym__Noreturn] = ACTIONS(6632), + [anon_sym_noreturn] = ACTIONS(6632), + [anon_sym__Nonnull] = ACTIONS(6632), + [anon_sym_mutable] = ACTIONS(6632), + [anon_sym_constinit] = ACTIONS(6632), + [anon_sym_consteval] = ACTIONS(6632), + [anon_sym_alignas] = ACTIONS(6632), + [anon_sym__Alignas] = ACTIONS(6632), + [sym_primitive_type] = ACTIONS(6632), + [anon_sym_QMARK] = ACTIONS(6634), + [anon_sym_LT_EQ_GT] = ACTIONS(6634), + [anon_sym_or] = ACTIONS(6632), + [anon_sym_and] = ACTIONS(6632), + [anon_sym_bitor] = ACTIONS(6632), + [anon_sym_xor] = ACTIONS(6632), + [anon_sym_bitand] = ACTIONS(6632), + [anon_sym_not_eq] = ACTIONS(6632), + [anon_sym_DASH_DASH] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_DOT] = ACTIONS(6632), + [anon_sym_DOT_STAR] = ACTIONS(6634), + [anon_sym_DASH_GT] = ACTIONS(6634), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6632), + [anon_sym_decltype] = ACTIONS(6632), + [anon_sym_final] = ACTIONS(6632), + [anon_sym_override] = ACTIONS(6632), + [anon_sym_requires] = ACTIONS(6632), + [anon_sym_COLON_RBRACK] = ACTIONS(6634), + }, + [STATE(2805)] = { + [sym_identifier] = ACTIONS(6628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6630), + [anon_sym_COMMA] = ACTIONS(6630), + [anon_sym_RPAREN] = ACTIONS(6630), + [anon_sym_LPAREN2] = ACTIONS(6630), + [anon_sym_DASH] = ACTIONS(6628), + [anon_sym_PLUS] = ACTIONS(6628), + [anon_sym_STAR] = ACTIONS(6630), + [anon_sym_SLASH] = ACTIONS(6628), + [anon_sym_PERCENT] = ACTIONS(6630), + [anon_sym_PIPE_PIPE] = ACTIONS(6630), + [anon_sym_AMP_AMP] = ACTIONS(6630), + [anon_sym_PIPE] = ACTIONS(6628), + [anon_sym_CARET] = ACTIONS(6630), + [anon_sym_AMP] = ACTIONS(6628), + [anon_sym_EQ_EQ] = ACTIONS(6630), + [anon_sym_BANG_EQ] = ACTIONS(6630), + [anon_sym_GT] = ACTIONS(6628), + [anon_sym_GT_EQ] = ACTIONS(6630), + [anon_sym_LT_EQ] = ACTIONS(6628), + [anon_sym_LT] = ACTIONS(6628), + [anon_sym_LT_LT] = ACTIONS(6630), + [anon_sym_GT_GT] = ACTIONS(6630), + [anon_sym_SEMI] = ACTIONS(6630), + [anon_sym___extension__] = ACTIONS(6628), + [anon_sym___attribute__] = ACTIONS(6628), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_COLON] = ACTIONS(6628), + [anon_sym_COLON_COLON] = ACTIONS(6630), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6630), + [anon_sym___based] = ACTIONS(6628), + [anon_sym_LBRACE] = ACTIONS(6630), + [anon_sym_RBRACE] = ACTIONS(6630), + [anon_sym_signed] = ACTIONS(6628), + [anon_sym_unsigned] = ACTIONS(6628), + [anon_sym_long] = ACTIONS(6628), + [anon_sym_short] = ACTIONS(6628), + [anon_sym_LBRACK] = ACTIONS(6630), + [anon_sym_const] = ACTIONS(6628), + [anon_sym_constexpr] = ACTIONS(6628), + [anon_sym_volatile] = ACTIONS(6628), + [anon_sym_restrict] = ACTIONS(6628), + [anon_sym___restrict__] = ACTIONS(6628), + [anon_sym__Atomic] = ACTIONS(6628), + [anon_sym__Noreturn] = ACTIONS(6628), + [anon_sym_noreturn] = ACTIONS(6628), + [anon_sym__Nonnull] = ACTIONS(6628), + [anon_sym_mutable] = ACTIONS(6628), + [anon_sym_constinit] = ACTIONS(6628), + [anon_sym_consteval] = ACTIONS(6628), + [anon_sym_alignas] = ACTIONS(6628), + [anon_sym__Alignas] = ACTIONS(6628), + [sym_primitive_type] = ACTIONS(6628), + [anon_sym_QMARK] = ACTIONS(6630), + [anon_sym_LT_EQ_GT] = ACTIONS(6630), + [anon_sym_or] = ACTIONS(6628), + [anon_sym_and] = ACTIONS(6628), + [anon_sym_bitor] = ACTIONS(6628), + [anon_sym_xor] = ACTIONS(6628), + [anon_sym_bitand] = ACTIONS(6628), + [anon_sym_not_eq] = ACTIONS(6628), + [anon_sym_DASH_DASH] = ACTIONS(6630), + [anon_sym_PLUS_PLUS] = ACTIONS(6630), + [anon_sym_DOT] = ACTIONS(6628), + [anon_sym_DOT_STAR] = ACTIONS(6630), + [anon_sym_DASH_GT] = ACTIONS(6630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6628), + [anon_sym_decltype] = ACTIONS(6628), + [anon_sym_final] = ACTIONS(6628), + [anon_sym_override] = ACTIONS(6628), + [anon_sym_requires] = ACTIONS(6628), + [anon_sym_COLON_RBRACK] = ACTIONS(6630), + }, + [STATE(2806)] = { + [sym_identifier] = ACTIONS(3954), + [aux_sym_preproc_def_token1] = ACTIONS(3954), + [aux_sym_preproc_if_token1] = ACTIONS(3954), + [aux_sym_preproc_if_token2] = ACTIONS(3954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3954), + [aux_sym_preproc_else_token1] = ACTIONS(3954), + [aux_sym_preproc_elif_token1] = ACTIONS(3954), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3954), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3954), + [sym_preproc_directive] = ACTIONS(3954), + [anon_sym_LPAREN2] = ACTIONS(3956), + [anon_sym_TILDE] = ACTIONS(3956), + [anon_sym_STAR] = ACTIONS(3956), + [anon_sym_AMP_AMP] = ACTIONS(3956), + [anon_sym_AMP] = ACTIONS(3954), + [anon_sym_SEMI] = ACTIONS(3956), + [anon_sym___extension__] = ACTIONS(3954), + [anon_sym_typedef] = ACTIONS(3954), + [anon_sym_virtual] = ACTIONS(3954), + [anon_sym_extern] = ACTIONS(3954), + [anon_sym___attribute__] = ACTIONS(3954), + [anon_sym___attribute] = ACTIONS(3954), + [anon_sym_using] = ACTIONS(3954), + [anon_sym_COLON_COLON] = ACTIONS(3956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3956), + [anon_sym___declspec] = ACTIONS(3954), + [anon_sym___based] = ACTIONS(3954), + [anon_sym_signed] = ACTIONS(3954), + [anon_sym_unsigned] = ACTIONS(3954), + [anon_sym_long] = ACTIONS(3954), + [anon_sym_short] = ACTIONS(3954), + [anon_sym_LBRACK] = ACTIONS(3954), + [anon_sym_static] = ACTIONS(3954), + [anon_sym_register] = ACTIONS(3954), + [anon_sym_inline] = ACTIONS(3954), + [anon_sym___inline] = ACTIONS(3954), + [anon_sym___inline__] = ACTIONS(3954), + [anon_sym___forceinline] = ACTIONS(3954), + [anon_sym_thread_local] = ACTIONS(3954), + [anon_sym___thread] = ACTIONS(3954), + [anon_sym_const] = ACTIONS(3954), + [anon_sym_constexpr] = ACTIONS(3954), + [anon_sym_volatile] = ACTIONS(3954), + [anon_sym_restrict] = ACTIONS(3954), + [anon_sym___restrict__] = ACTIONS(3954), + [anon_sym__Atomic] = ACTIONS(3954), + [anon_sym__Noreturn] = ACTIONS(3954), + [anon_sym_noreturn] = ACTIONS(3954), + [anon_sym__Nonnull] = ACTIONS(3954), + [anon_sym_mutable] = ACTIONS(3954), + [anon_sym_constinit] = ACTIONS(3954), + [anon_sym_consteval] = ACTIONS(3954), + [anon_sym_alignas] = ACTIONS(3954), + [anon_sym__Alignas] = ACTIONS(3954), + [sym_primitive_type] = ACTIONS(3954), + [anon_sym_enum] = ACTIONS(3954), + [anon_sym_class] = ACTIONS(3954), + [anon_sym_struct] = ACTIONS(3954), + [anon_sym_union] = ACTIONS(3954), + [anon_sym_typename] = ACTIONS(3954), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4192), - [anon_sym_decltype] = ACTIONS(4192), - [anon_sym_explicit] = ACTIONS(4192), - [anon_sym_private] = ACTIONS(4192), - [anon_sym_template] = ACTIONS(4192), - [anon_sym_operator] = ACTIONS(4192), - [anon_sym_friend] = ACTIONS(4192), - [anon_sym_public] = ACTIONS(4192), - [anon_sym_protected] = ACTIONS(4192), - [anon_sym_static_assert] = ACTIONS(4192), - [anon_sym_LBRACK_COLON] = ACTIONS(4194), + [sym_auto] = ACTIONS(3954), + [anon_sym_decltype] = ACTIONS(3954), + [anon_sym_explicit] = ACTIONS(3954), + [anon_sym_private] = ACTIONS(3954), + [anon_sym_template] = ACTIONS(3954), + [anon_sym_operator] = ACTIONS(3954), + [anon_sym_friend] = ACTIONS(3954), + [anon_sym_public] = ACTIONS(3954), + [anon_sym_protected] = ACTIONS(3954), + [anon_sym_static_assert] = ACTIONS(3954), + [anon_sym_LBRACK_COLON] = ACTIONS(3956), }, - [STATE(3215)] = { - [sym_identifier] = ACTIONS(8337), - [aux_sym_preproc_def_token1] = ACTIONS(8337), - [aux_sym_preproc_if_token1] = ACTIONS(8337), - [aux_sym_preproc_if_token2] = ACTIONS(8337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8337), - [sym_preproc_directive] = ACTIONS(8337), - [anon_sym_LPAREN2] = ACTIONS(8339), - [anon_sym_TILDE] = ACTIONS(8339), - [anon_sym_STAR] = ACTIONS(8339), - [anon_sym_AMP_AMP] = ACTIONS(8339), - [anon_sym_AMP] = ACTIONS(8337), - [anon_sym_SEMI] = ACTIONS(8339), - [anon_sym___extension__] = ACTIONS(8337), - [anon_sym_typedef] = ACTIONS(8337), - [anon_sym_virtual] = ACTIONS(8337), - [anon_sym_extern] = ACTIONS(8337), - [anon_sym___attribute__] = ACTIONS(8337), - [anon_sym___attribute] = ACTIONS(8337), - [anon_sym_using] = ACTIONS(8337), - [anon_sym_COLON_COLON] = ACTIONS(8339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8339), - [anon_sym___declspec] = ACTIONS(8337), - [anon_sym___based] = ACTIONS(8337), - [anon_sym_signed] = ACTIONS(8337), - [anon_sym_unsigned] = ACTIONS(8337), - [anon_sym_long] = ACTIONS(8337), - [anon_sym_short] = ACTIONS(8337), - [anon_sym_LBRACK] = ACTIONS(8337), - [anon_sym_static] = ACTIONS(8337), - [anon_sym_register] = ACTIONS(8337), - [anon_sym_inline] = ACTIONS(8337), - [anon_sym___inline] = ACTIONS(8337), - [anon_sym___inline__] = ACTIONS(8337), - [anon_sym___forceinline] = ACTIONS(8337), - [anon_sym_thread_local] = ACTIONS(8337), - [anon_sym___thread] = ACTIONS(8337), - [anon_sym_const] = ACTIONS(8337), - [anon_sym_constexpr] = ACTIONS(8337), - [anon_sym_volatile] = ACTIONS(8337), - [anon_sym_restrict] = ACTIONS(8337), - [anon_sym___restrict__] = ACTIONS(8337), - [anon_sym__Atomic] = ACTIONS(8337), - [anon_sym__Noreturn] = ACTIONS(8337), - [anon_sym_noreturn] = ACTIONS(8337), - [anon_sym__Nonnull] = ACTIONS(8337), - [anon_sym_mutable] = ACTIONS(8337), - [anon_sym_constinit] = ACTIONS(8337), - [anon_sym_consteval] = ACTIONS(8337), - [anon_sym_alignas] = ACTIONS(8337), - [anon_sym__Alignas] = ACTIONS(8337), - [sym_primitive_type] = ACTIONS(8337), - [anon_sym_enum] = ACTIONS(8337), - [anon_sym_class] = ACTIONS(8337), - [anon_sym_struct] = ACTIONS(8337), - [anon_sym_union] = ACTIONS(8337), - [anon_sym_typename] = ACTIONS(8337), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8337), - [anon_sym_decltype] = ACTIONS(8337), - [anon_sym_explicit] = ACTIONS(8337), - [anon_sym_private] = ACTIONS(8337), - [anon_sym_template] = ACTIONS(8337), - [anon_sym_operator] = ACTIONS(8337), - [anon_sym_friend] = ACTIONS(8337), - [anon_sym_public] = ACTIONS(8337), - [anon_sym_protected] = ACTIONS(8337), - [anon_sym_static_assert] = ACTIONS(8337), - [anon_sym_LBRACK_COLON] = ACTIONS(8339), + [STATE(2807)] = { + [sym_ms_based_modifier] = STATE(10837), + [sym_ms_unaligned_ptr_modifier] = STATE(6574), + [sym_ms_pointer_modifier] = STATE(2830), + [sym__declarator] = STATE(8823), + [sym__abstract_declarator] = STATE(9053), + [sym_parenthesized_declarator] = STATE(8555), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_function_declarator] = STATE(8555), + [sym_abstract_function_declarator] = STATE(8596), + [sym_array_declarator] = STATE(8555), + [sym_abstract_array_declarator] = STATE(8596), + [sym_type_qualifier] = STATE(3787), + [sym_alignas_qualifier] = STATE(7511), + [sym_parameter_list] = STATE(5340), + [sym_decltype] = STATE(10768), + [sym_reference_declarator] = STATE(8555), + [sym_abstract_reference_declarator] = STATE(8596), + [sym_structured_binding_declarator] = STATE(8555), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7990), + [sym_qualified_identifier] = STATE(8555), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__type_definition_type_repeat1] = STATE(3787), + [aux_sym_pointer_declarator_repeat1] = STATE(2830), + [sym_identifier] = ACTIONS(8546), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_RPAREN] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(8708), + [anon_sym_AMP_AMP] = ACTIONS(8710), + [anon_sym_AMP] = ACTIONS(8712), + [anon_sym___extension__] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(6861), + [anon_sym___attribute] = ACTIONS(6861), + [anon_sym_COLON_COLON] = ACTIONS(8554), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3266), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3266), + [sym_ms_signed_ptr_modifier] = ACTIONS(3266), + [anon_sym__unaligned] = ACTIONS(3268), + [anon_sym___unaligned] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(5627), + [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__Nonnull] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), }, - [STATE(3216)] = { - [sym_identifier] = ACTIONS(4002), - [aux_sym_preproc_def_token1] = ACTIONS(4002), - [aux_sym_preproc_if_token1] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4002), - [sym_preproc_directive] = ACTIONS(4002), - [anon_sym_LPAREN2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(4004), - [anon_sym_STAR] = ACTIONS(4004), - [anon_sym_AMP_AMP] = ACTIONS(4004), - [anon_sym_AMP] = ACTIONS(4002), - [anon_sym_SEMI] = ACTIONS(4004), - [anon_sym___extension__] = ACTIONS(4002), - [anon_sym_typedef] = ACTIONS(4002), - [anon_sym_virtual] = ACTIONS(4002), - [anon_sym_extern] = ACTIONS(4002), - [anon_sym___attribute__] = ACTIONS(4002), - [anon_sym___attribute] = ACTIONS(4002), - [anon_sym_using] = ACTIONS(4002), - [anon_sym_COLON_COLON] = ACTIONS(4004), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4004), - [anon_sym___declspec] = ACTIONS(4002), - [anon_sym___based] = ACTIONS(4002), - [anon_sym_RBRACE] = ACTIONS(4004), - [anon_sym_signed] = ACTIONS(4002), - [anon_sym_unsigned] = ACTIONS(4002), - [anon_sym_long] = ACTIONS(4002), - [anon_sym_short] = ACTIONS(4002), - [anon_sym_LBRACK] = ACTIONS(4002), - [anon_sym_static] = ACTIONS(4002), - [anon_sym_register] = ACTIONS(4002), - [anon_sym_inline] = ACTIONS(4002), - [anon_sym___inline] = ACTIONS(4002), - [anon_sym___inline__] = ACTIONS(4002), - [anon_sym___forceinline] = ACTIONS(4002), - [anon_sym_thread_local] = ACTIONS(4002), - [anon_sym___thread] = ACTIONS(4002), - [anon_sym_const] = ACTIONS(4002), - [anon_sym_constexpr] = ACTIONS(4002), - [anon_sym_volatile] = ACTIONS(4002), - [anon_sym_restrict] = ACTIONS(4002), - [anon_sym___restrict__] = ACTIONS(4002), - [anon_sym__Atomic] = ACTIONS(4002), - [anon_sym__Noreturn] = ACTIONS(4002), - [anon_sym_noreturn] = ACTIONS(4002), - [anon_sym__Nonnull] = ACTIONS(4002), - [anon_sym_mutable] = ACTIONS(4002), - [anon_sym_constinit] = ACTIONS(4002), - [anon_sym_consteval] = ACTIONS(4002), - [anon_sym_alignas] = ACTIONS(4002), - [anon_sym__Alignas] = ACTIONS(4002), - [sym_primitive_type] = ACTIONS(4002), - [anon_sym_enum] = ACTIONS(4002), - [anon_sym_class] = ACTIONS(4002), - [anon_sym_struct] = ACTIONS(4002), - [anon_sym_union] = ACTIONS(4002), - [anon_sym_typename] = ACTIONS(4002), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4002), - [anon_sym_decltype] = ACTIONS(4002), - [anon_sym_explicit] = ACTIONS(4002), - [anon_sym_private] = ACTIONS(4002), - [anon_sym_template] = ACTIONS(4002), - [anon_sym_operator] = ACTIONS(4002), - [anon_sym_friend] = ACTIONS(4002), - [anon_sym_public] = ACTIONS(4002), - [anon_sym_protected] = ACTIONS(4002), - [anon_sym_static_assert] = ACTIONS(4002), - [anon_sym_LBRACK_COLON] = ACTIONS(4004), + [STATE(2808)] = { + [sym_identifier] = ACTIONS(3931), + [aux_sym_preproc_def_token1] = ACTIONS(3931), + [aux_sym_preproc_if_token1] = ACTIONS(3931), + [aux_sym_preproc_if_token2] = ACTIONS(3931), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3931), + [aux_sym_preproc_else_token1] = ACTIONS(3931), + [aux_sym_preproc_elif_token1] = ACTIONS(3931), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3931), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3931), + [sym_preproc_directive] = ACTIONS(3931), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_TILDE] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym_SEMI] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(3931), + [anon_sym_typedef] = ACTIONS(3931), + [anon_sym_virtual] = ACTIONS(3931), + [anon_sym_extern] = ACTIONS(3931), + [anon_sym___attribute__] = ACTIONS(3931), + [anon_sym___attribute] = ACTIONS(3931), + [anon_sym_using] = ACTIONS(3931), + [anon_sym_COLON_COLON] = ACTIONS(3933), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3933), + [anon_sym___declspec] = ACTIONS(3931), + [anon_sym___based] = ACTIONS(3931), + [anon_sym_signed] = ACTIONS(3931), + [anon_sym_unsigned] = ACTIONS(3931), + [anon_sym_long] = ACTIONS(3931), + [anon_sym_short] = ACTIONS(3931), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_static] = ACTIONS(3931), + [anon_sym_register] = ACTIONS(3931), + [anon_sym_inline] = ACTIONS(3931), + [anon_sym___inline] = ACTIONS(3931), + [anon_sym___inline__] = ACTIONS(3931), + [anon_sym___forceinline] = ACTIONS(3931), + [anon_sym_thread_local] = ACTIONS(3931), + [anon_sym___thread] = ACTIONS(3931), + [anon_sym_const] = ACTIONS(3931), + [anon_sym_constexpr] = ACTIONS(3931), + [anon_sym_volatile] = ACTIONS(3931), + [anon_sym_restrict] = ACTIONS(3931), + [anon_sym___restrict__] = ACTIONS(3931), + [anon_sym__Atomic] = ACTIONS(3931), + [anon_sym__Noreturn] = ACTIONS(3931), + [anon_sym_noreturn] = ACTIONS(3931), + [anon_sym__Nonnull] = ACTIONS(3931), + [anon_sym_mutable] = ACTIONS(3931), + [anon_sym_constinit] = ACTIONS(3931), + [anon_sym_consteval] = ACTIONS(3931), + [anon_sym_alignas] = ACTIONS(3931), + [anon_sym__Alignas] = ACTIONS(3931), + [sym_primitive_type] = ACTIONS(3931), + [anon_sym_enum] = ACTIONS(3931), + [anon_sym_class] = ACTIONS(3931), + [anon_sym_struct] = ACTIONS(3931), + [anon_sym_union] = ACTIONS(3931), + [anon_sym_typename] = ACTIONS(3931), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3931), + [anon_sym_decltype] = ACTIONS(3931), + [anon_sym_explicit] = ACTIONS(3931), + [anon_sym_private] = ACTIONS(3931), + [anon_sym_template] = ACTIONS(3931), + [anon_sym_operator] = ACTIONS(3931), + [anon_sym_friend] = ACTIONS(3931), + [anon_sym_public] = ACTIONS(3931), + [anon_sym_protected] = ACTIONS(3931), + [anon_sym_static_assert] = ACTIONS(3931), + [anon_sym_LBRACK_COLON] = ACTIONS(3933), }, - [STATE(3217)] = { - [sym_identifier] = ACTIONS(4014), - [aux_sym_preproc_def_token1] = ACTIONS(4014), - [aux_sym_preproc_if_token1] = ACTIONS(4014), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4014), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4014), - [sym_preproc_directive] = ACTIONS(4014), - [anon_sym_LPAREN2] = ACTIONS(4016), - [anon_sym_TILDE] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4016), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4014), - [anon_sym_SEMI] = ACTIONS(4016), - [anon_sym___extension__] = ACTIONS(4014), - [anon_sym_typedef] = ACTIONS(4014), - [anon_sym_virtual] = ACTIONS(4014), - [anon_sym_extern] = ACTIONS(4014), - [anon_sym___attribute__] = ACTIONS(4014), - [anon_sym___attribute] = ACTIONS(4014), - [anon_sym_using] = ACTIONS(4014), - [anon_sym_COLON_COLON] = ACTIONS(4016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4016), - [anon_sym___declspec] = ACTIONS(4014), - [anon_sym___based] = ACTIONS(4014), - [anon_sym_RBRACE] = ACTIONS(4016), - [anon_sym_signed] = ACTIONS(4014), - [anon_sym_unsigned] = ACTIONS(4014), - [anon_sym_long] = ACTIONS(4014), - [anon_sym_short] = ACTIONS(4014), - [anon_sym_LBRACK] = ACTIONS(4014), - [anon_sym_static] = ACTIONS(4014), - [anon_sym_register] = ACTIONS(4014), - [anon_sym_inline] = ACTIONS(4014), - [anon_sym___inline] = ACTIONS(4014), - [anon_sym___inline__] = ACTIONS(4014), - [anon_sym___forceinline] = ACTIONS(4014), - [anon_sym_thread_local] = ACTIONS(4014), - [anon_sym___thread] = ACTIONS(4014), - [anon_sym_const] = ACTIONS(4014), - [anon_sym_constexpr] = ACTIONS(4014), - [anon_sym_volatile] = ACTIONS(4014), - [anon_sym_restrict] = ACTIONS(4014), - [anon_sym___restrict__] = ACTIONS(4014), - [anon_sym__Atomic] = ACTIONS(4014), - [anon_sym__Noreturn] = ACTIONS(4014), - [anon_sym_noreturn] = ACTIONS(4014), - [anon_sym__Nonnull] = ACTIONS(4014), - [anon_sym_mutable] = ACTIONS(4014), - [anon_sym_constinit] = ACTIONS(4014), - [anon_sym_consteval] = ACTIONS(4014), - [anon_sym_alignas] = ACTIONS(4014), - [anon_sym__Alignas] = ACTIONS(4014), - [sym_primitive_type] = ACTIONS(4014), - [anon_sym_enum] = ACTIONS(4014), - [anon_sym_class] = ACTIONS(4014), - [anon_sym_struct] = ACTIONS(4014), - [anon_sym_union] = ACTIONS(4014), - [anon_sym_typename] = ACTIONS(4014), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4014), - [anon_sym_decltype] = ACTIONS(4014), - [anon_sym_explicit] = ACTIONS(4014), - [anon_sym_private] = ACTIONS(4014), - [anon_sym_template] = ACTIONS(4014), - [anon_sym_operator] = ACTIONS(4014), - [anon_sym_friend] = ACTIONS(4014), - [anon_sym_public] = ACTIONS(4014), - [anon_sym_protected] = ACTIONS(4014), - [anon_sym_static_assert] = ACTIONS(4014), - [anon_sym_LBRACK_COLON] = ACTIONS(4016), + [STATE(2809)] = { + [sym_identifier] = ACTIONS(3958), + [aux_sym_preproc_def_token1] = ACTIONS(3958), + [aux_sym_preproc_if_token1] = ACTIONS(3958), + [aux_sym_preproc_if_token2] = ACTIONS(3958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3958), + [aux_sym_preproc_else_token1] = ACTIONS(3958), + [aux_sym_preproc_elif_token1] = ACTIONS(3958), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3958), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3958), + [sym_preproc_directive] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_STAR] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3960), + [anon_sym_AMP] = ACTIONS(3958), + [anon_sym_SEMI] = ACTIONS(3960), + [anon_sym___extension__] = ACTIONS(3958), + [anon_sym_typedef] = ACTIONS(3958), + [anon_sym_virtual] = ACTIONS(3958), + [anon_sym_extern] = ACTIONS(3958), + [anon_sym___attribute__] = ACTIONS(3958), + [anon_sym___attribute] = ACTIONS(3958), + [anon_sym_using] = ACTIONS(3958), + [anon_sym_COLON_COLON] = ACTIONS(3960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3960), + [anon_sym___declspec] = ACTIONS(3958), + [anon_sym___based] = ACTIONS(3958), + [anon_sym_signed] = ACTIONS(3958), + [anon_sym_unsigned] = ACTIONS(3958), + [anon_sym_long] = ACTIONS(3958), + [anon_sym_short] = ACTIONS(3958), + [anon_sym_LBRACK] = ACTIONS(3958), + [anon_sym_static] = ACTIONS(3958), + [anon_sym_register] = ACTIONS(3958), + [anon_sym_inline] = ACTIONS(3958), + [anon_sym___inline] = ACTIONS(3958), + [anon_sym___inline__] = ACTIONS(3958), + [anon_sym___forceinline] = ACTIONS(3958), + [anon_sym_thread_local] = ACTIONS(3958), + [anon_sym___thread] = ACTIONS(3958), + [anon_sym_const] = ACTIONS(3958), + [anon_sym_constexpr] = ACTIONS(3958), + [anon_sym_volatile] = ACTIONS(3958), + [anon_sym_restrict] = ACTIONS(3958), + [anon_sym___restrict__] = ACTIONS(3958), + [anon_sym__Atomic] = ACTIONS(3958), + [anon_sym__Noreturn] = ACTIONS(3958), + [anon_sym_noreturn] = ACTIONS(3958), + [anon_sym__Nonnull] = ACTIONS(3958), + [anon_sym_mutable] = ACTIONS(3958), + [anon_sym_constinit] = ACTIONS(3958), + [anon_sym_consteval] = ACTIONS(3958), + [anon_sym_alignas] = ACTIONS(3958), + [anon_sym__Alignas] = ACTIONS(3958), + [sym_primitive_type] = ACTIONS(3958), + [anon_sym_enum] = ACTIONS(3958), + [anon_sym_class] = ACTIONS(3958), + [anon_sym_struct] = ACTIONS(3958), + [anon_sym_union] = ACTIONS(3958), + [anon_sym_typename] = ACTIONS(3958), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3958), + [anon_sym_decltype] = ACTIONS(3958), + [anon_sym_explicit] = ACTIONS(3958), + [anon_sym_private] = ACTIONS(3958), + [anon_sym_template] = ACTIONS(3958), + [anon_sym_operator] = ACTIONS(3958), + [anon_sym_friend] = ACTIONS(3958), + [anon_sym_public] = ACTIONS(3958), + [anon_sym_protected] = ACTIONS(3958), + [anon_sym_static_assert] = ACTIONS(3958), + [anon_sym_LBRACK_COLON] = ACTIONS(3960), }, - [STATE(3218)] = { - [sym_identifier] = ACTIONS(4090), - [aux_sym_preproc_def_token1] = ACTIONS(4090), - [aux_sym_preproc_if_token1] = ACTIONS(4090), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4090), - [sym_preproc_directive] = ACTIONS(4090), - [anon_sym_LPAREN2] = ACTIONS(4092), - [anon_sym_TILDE] = ACTIONS(4092), - [anon_sym_STAR] = ACTIONS(4092), - [anon_sym_AMP_AMP] = ACTIONS(4092), - [anon_sym_AMP] = ACTIONS(4090), - [anon_sym_SEMI] = ACTIONS(4092), - [anon_sym___extension__] = ACTIONS(4090), - [anon_sym_typedef] = ACTIONS(4090), - [anon_sym_virtual] = ACTIONS(4090), - [anon_sym_extern] = ACTIONS(4090), - [anon_sym___attribute__] = ACTIONS(4090), - [anon_sym___attribute] = ACTIONS(4090), - [anon_sym_using] = ACTIONS(4090), - [anon_sym_COLON_COLON] = ACTIONS(4092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4092), - [anon_sym___declspec] = ACTIONS(4090), - [anon_sym___based] = ACTIONS(4090), - [anon_sym_RBRACE] = ACTIONS(4092), - [anon_sym_signed] = ACTIONS(4090), - [anon_sym_unsigned] = ACTIONS(4090), - [anon_sym_long] = ACTIONS(4090), - [anon_sym_short] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_static] = ACTIONS(4090), - [anon_sym_register] = ACTIONS(4090), - [anon_sym_inline] = ACTIONS(4090), - [anon_sym___inline] = ACTIONS(4090), - [anon_sym___inline__] = ACTIONS(4090), - [anon_sym___forceinline] = ACTIONS(4090), - [anon_sym_thread_local] = ACTIONS(4090), - [anon_sym___thread] = ACTIONS(4090), - [anon_sym_const] = ACTIONS(4090), - [anon_sym_constexpr] = ACTIONS(4090), - [anon_sym_volatile] = ACTIONS(4090), - [anon_sym_restrict] = ACTIONS(4090), - [anon_sym___restrict__] = ACTIONS(4090), - [anon_sym__Atomic] = ACTIONS(4090), - [anon_sym__Noreturn] = ACTIONS(4090), - [anon_sym_noreturn] = ACTIONS(4090), - [anon_sym__Nonnull] = ACTIONS(4090), - [anon_sym_mutable] = ACTIONS(4090), - [anon_sym_constinit] = ACTIONS(4090), - [anon_sym_consteval] = ACTIONS(4090), - [anon_sym_alignas] = ACTIONS(4090), - [anon_sym__Alignas] = ACTIONS(4090), - [sym_primitive_type] = ACTIONS(4090), - [anon_sym_enum] = ACTIONS(4090), - [anon_sym_class] = ACTIONS(4090), - [anon_sym_struct] = ACTIONS(4090), - [anon_sym_union] = ACTIONS(4090), - [anon_sym_typename] = ACTIONS(4090), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4090), - [anon_sym_decltype] = ACTIONS(4090), - [anon_sym_explicit] = ACTIONS(4090), - [anon_sym_private] = ACTIONS(4090), - [anon_sym_template] = ACTIONS(4090), - [anon_sym_operator] = ACTIONS(4090), - [anon_sym_friend] = ACTIONS(4090), - [anon_sym_public] = ACTIONS(4090), - [anon_sym_protected] = ACTIONS(4090), - [anon_sym_static_assert] = ACTIONS(4090), - [anon_sym_LBRACK_COLON] = ACTIONS(4092), + [STATE(2810)] = { + [sym_identifier] = ACTIONS(4108), + [aux_sym_preproc_def_token1] = ACTIONS(4108), + [aux_sym_preproc_if_token1] = ACTIONS(4108), + [aux_sym_preproc_if_token2] = ACTIONS(4108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4108), + [aux_sym_preproc_else_token1] = ACTIONS(4108), + [aux_sym_preproc_elif_token1] = ACTIONS(4108), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4108), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4108), + [sym_preproc_directive] = ACTIONS(4108), + [anon_sym_LPAREN2] = ACTIONS(4110), + [anon_sym_TILDE] = ACTIONS(4110), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_AMP] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym___extension__] = ACTIONS(4108), + [anon_sym_typedef] = ACTIONS(4108), + [anon_sym_virtual] = ACTIONS(4108), + [anon_sym_extern] = ACTIONS(4108), + [anon_sym___attribute__] = ACTIONS(4108), + [anon_sym___attribute] = ACTIONS(4108), + [anon_sym_using] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4110), + [anon_sym___declspec] = ACTIONS(4108), + [anon_sym___based] = ACTIONS(4108), + [anon_sym_signed] = ACTIONS(4108), + [anon_sym_unsigned] = ACTIONS(4108), + [anon_sym_long] = ACTIONS(4108), + [anon_sym_short] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_static] = ACTIONS(4108), + [anon_sym_register] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym___inline] = ACTIONS(4108), + [anon_sym___inline__] = ACTIONS(4108), + [anon_sym___forceinline] = ACTIONS(4108), + [anon_sym_thread_local] = ACTIONS(4108), + [anon_sym___thread] = ACTIONS(4108), + [anon_sym_const] = ACTIONS(4108), + [anon_sym_constexpr] = ACTIONS(4108), + [anon_sym_volatile] = ACTIONS(4108), + [anon_sym_restrict] = ACTIONS(4108), + [anon_sym___restrict__] = ACTIONS(4108), + [anon_sym__Atomic] = ACTIONS(4108), + [anon_sym__Noreturn] = ACTIONS(4108), + [anon_sym_noreturn] = ACTIONS(4108), + [anon_sym__Nonnull] = ACTIONS(4108), + [anon_sym_mutable] = ACTIONS(4108), + [anon_sym_constinit] = ACTIONS(4108), + [anon_sym_consteval] = ACTIONS(4108), + [anon_sym_alignas] = ACTIONS(4108), + [anon_sym__Alignas] = ACTIONS(4108), + [sym_primitive_type] = ACTIONS(4108), + [anon_sym_enum] = ACTIONS(4108), + [anon_sym_class] = ACTIONS(4108), + [anon_sym_struct] = ACTIONS(4108), + [anon_sym_union] = ACTIONS(4108), + [anon_sym_typename] = ACTIONS(4108), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4108), + [anon_sym_decltype] = ACTIONS(4108), + [anon_sym_explicit] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_friend] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_static_assert] = ACTIONS(4108), + [anon_sym_LBRACK_COLON] = ACTIONS(4110), }, - [STATE(3219)] = { - [sym_identifier] = ACTIONS(4152), - [aux_sym_preproc_def_token1] = ACTIONS(4152), - [aux_sym_preproc_if_token1] = ACTIONS(4152), - [aux_sym_preproc_if_token2] = ACTIONS(4152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4152), - [sym_preproc_directive] = ACTIONS(4152), - [anon_sym_LPAREN2] = ACTIONS(4154), - [anon_sym_TILDE] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_AMP_AMP] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4152), - [anon_sym_SEMI] = ACTIONS(4154), - [anon_sym___extension__] = ACTIONS(4152), - [anon_sym_typedef] = ACTIONS(4152), - [anon_sym_virtual] = ACTIONS(4152), - [anon_sym_extern] = ACTIONS(4152), - [anon_sym___attribute__] = ACTIONS(4152), - [anon_sym___attribute] = ACTIONS(4152), - [anon_sym_using] = ACTIONS(4152), - [anon_sym_COLON_COLON] = ACTIONS(4154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4154), - [anon_sym___declspec] = ACTIONS(4152), - [anon_sym___based] = ACTIONS(4152), - [anon_sym_signed] = ACTIONS(4152), - [anon_sym_unsigned] = ACTIONS(4152), - [anon_sym_long] = ACTIONS(4152), - [anon_sym_short] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_static] = ACTIONS(4152), - [anon_sym_register] = ACTIONS(4152), - [anon_sym_inline] = ACTIONS(4152), - [anon_sym___inline] = ACTIONS(4152), - [anon_sym___inline__] = ACTIONS(4152), - [anon_sym___forceinline] = ACTIONS(4152), - [anon_sym_thread_local] = ACTIONS(4152), - [anon_sym___thread] = ACTIONS(4152), - [anon_sym_const] = ACTIONS(4152), - [anon_sym_constexpr] = ACTIONS(4152), - [anon_sym_volatile] = ACTIONS(4152), - [anon_sym_restrict] = ACTIONS(4152), - [anon_sym___restrict__] = ACTIONS(4152), - [anon_sym__Atomic] = ACTIONS(4152), - [anon_sym__Noreturn] = ACTIONS(4152), - [anon_sym_noreturn] = ACTIONS(4152), - [anon_sym__Nonnull] = ACTIONS(4152), - [anon_sym_mutable] = ACTIONS(4152), - [anon_sym_constinit] = ACTIONS(4152), - [anon_sym_consteval] = ACTIONS(4152), - [anon_sym_alignas] = ACTIONS(4152), - [anon_sym__Alignas] = ACTIONS(4152), - [sym_primitive_type] = ACTIONS(4152), - [anon_sym_enum] = ACTIONS(4152), - [anon_sym_class] = ACTIONS(4152), - [anon_sym_struct] = ACTIONS(4152), - [anon_sym_union] = ACTIONS(4152), - [anon_sym_typename] = ACTIONS(4152), + [STATE(2811)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_RPAREN] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7291), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7291), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7291), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7291), + [anon_sym_GT_GT] = ACTIONS(7291), + [anon_sym___extension__] = ACTIONS(7293), + [anon_sym___attribute__] = ACTIONS(7293), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_COLON] = ACTIONS(7293), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_EQ] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7293), + [anon_sym_volatile] = ACTIONS(7293), + [anon_sym_restrict] = ACTIONS(7293), + [anon_sym___restrict__] = ACTIONS(7293), + [anon_sym__Atomic] = ACTIONS(7293), + [anon_sym__Noreturn] = ACTIONS(7293), + [anon_sym_noreturn] = ACTIONS(7293), + [anon_sym__Nonnull] = ACTIONS(7293), + [anon_sym_mutable] = ACTIONS(7293), + [anon_sym_constinit] = ACTIONS(7293), + [anon_sym_consteval] = ACTIONS(7293), + [anon_sym_alignas] = ACTIONS(7293), + [anon_sym__Alignas] = ACTIONS(7293), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_STAR_EQ] = ACTIONS(7293), + [anon_sym_SLASH_EQ] = ACTIONS(7293), + [anon_sym_PERCENT_EQ] = ACTIONS(7293), + [anon_sym_PLUS_EQ] = ACTIONS(7293), + [anon_sym_DASH_EQ] = ACTIONS(7293), + [anon_sym_LT_LT_EQ] = ACTIONS(7293), + [anon_sym_GT_GT_EQ] = ACTIONS(7293), + [anon_sym_AMP_EQ] = ACTIONS(7293), + [anon_sym_CARET_EQ] = ACTIONS(7293), + [anon_sym_PIPE_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7293), + [anon_sym_and] = ACTIONS(7293), + [anon_sym_bitor] = ACTIONS(7293), + [anon_sym_xor] = ACTIONS(7293), + [anon_sym_bitand] = ACTIONS(7293), + [anon_sym_not_eq] = ACTIONS(7293), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7291), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4152), - [anon_sym_decltype] = ACTIONS(4152), - [anon_sym_explicit] = ACTIONS(4152), - [anon_sym_private] = ACTIONS(4152), - [anon_sym_template] = ACTIONS(4152), - [anon_sym_operator] = ACTIONS(4152), - [anon_sym_friend] = ACTIONS(4152), - [anon_sym_public] = ACTIONS(4152), - [anon_sym_protected] = ACTIONS(4152), - [anon_sym_static_assert] = ACTIONS(4152), - [anon_sym_LBRACK_COLON] = ACTIONS(4154), + [sym_auto] = ACTIONS(7293), + [anon_sym_decltype] = ACTIONS(7293), + [anon_sym_final] = ACTIONS(7293), + [anon_sym_override] = ACTIONS(7293), + [anon_sym_requires] = ACTIONS(7293), + [anon_sym_DASH_GT_STAR] = ACTIONS(7293), }, - [STATE(3220)] = { - [sym_identifier] = ACTIONS(8337), - [aux_sym_preproc_def_token1] = ACTIONS(8337), - [aux_sym_preproc_if_token1] = ACTIONS(8337), - [aux_sym_preproc_if_token2] = ACTIONS(8337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8337), - [sym_preproc_directive] = ACTIONS(8337), - [anon_sym_LPAREN2] = ACTIONS(8339), - [anon_sym_TILDE] = ACTIONS(8339), - [anon_sym_STAR] = ACTIONS(8339), - [anon_sym_AMP_AMP] = ACTIONS(8339), - [anon_sym_AMP] = ACTIONS(8337), - [anon_sym_SEMI] = ACTIONS(8339), - [anon_sym___extension__] = ACTIONS(8337), - [anon_sym_typedef] = ACTIONS(8337), - [anon_sym_virtual] = ACTIONS(8337), - [anon_sym_extern] = ACTIONS(8337), - [anon_sym___attribute__] = ACTIONS(8337), - [anon_sym___attribute] = ACTIONS(8337), - [anon_sym_using] = ACTIONS(8337), - [anon_sym_COLON_COLON] = ACTIONS(8339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8339), - [anon_sym___declspec] = ACTIONS(8337), - [anon_sym___based] = ACTIONS(8337), - [anon_sym_signed] = ACTIONS(8337), - [anon_sym_unsigned] = ACTIONS(8337), - [anon_sym_long] = ACTIONS(8337), - [anon_sym_short] = ACTIONS(8337), - [anon_sym_LBRACK] = ACTIONS(8337), - [anon_sym_static] = ACTIONS(8337), - [anon_sym_register] = ACTIONS(8337), - [anon_sym_inline] = ACTIONS(8337), - [anon_sym___inline] = ACTIONS(8337), - [anon_sym___inline__] = ACTIONS(8337), - [anon_sym___forceinline] = ACTIONS(8337), - [anon_sym_thread_local] = ACTIONS(8337), - [anon_sym___thread] = ACTIONS(8337), - [anon_sym_const] = ACTIONS(8337), - [anon_sym_constexpr] = ACTIONS(8337), - [anon_sym_volatile] = ACTIONS(8337), - [anon_sym_restrict] = ACTIONS(8337), - [anon_sym___restrict__] = ACTIONS(8337), - [anon_sym__Atomic] = ACTIONS(8337), - [anon_sym__Noreturn] = ACTIONS(8337), - [anon_sym_noreturn] = ACTIONS(8337), - [anon_sym__Nonnull] = ACTIONS(8337), - [anon_sym_mutable] = ACTIONS(8337), - [anon_sym_constinit] = ACTIONS(8337), - [anon_sym_consteval] = ACTIONS(8337), - [anon_sym_alignas] = ACTIONS(8337), - [anon_sym__Alignas] = ACTIONS(8337), - [sym_primitive_type] = ACTIONS(8337), - [anon_sym_enum] = ACTIONS(8337), - [anon_sym_class] = ACTIONS(8337), - [anon_sym_struct] = ACTIONS(8337), - [anon_sym_union] = ACTIONS(8337), - [anon_sym_typename] = ACTIONS(8337), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8337), - [anon_sym_decltype] = ACTIONS(8337), - [anon_sym_explicit] = ACTIONS(8337), - [anon_sym_private] = ACTIONS(8337), - [anon_sym_template] = ACTIONS(8337), - [anon_sym_operator] = ACTIONS(8337), - [anon_sym_friend] = ACTIONS(8337), - [anon_sym_public] = ACTIONS(8337), - [anon_sym_protected] = ACTIONS(8337), - [anon_sym_static_assert] = ACTIONS(8337), - [anon_sym_LBRACK_COLON] = ACTIONS(8339), + [STATE(2812)] = { + [sym_identifier] = ACTIONS(7291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_RPAREN] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7293), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7293), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7293), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7293), + [anon_sym_GT_GT] = ACTIONS(7293), + [anon_sym_SEMI] = ACTIONS(7293), + [anon_sym___extension__] = ACTIONS(7291), + [anon_sym___attribute__] = ACTIONS(7291), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_COLON] = ACTIONS(7291), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7293), + [anon_sym___based] = ACTIONS(7291), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_RBRACE] = ACTIONS(7293), + [anon_sym_signed] = ACTIONS(7291), + [anon_sym_unsigned] = ACTIONS(7291), + [anon_sym_long] = ACTIONS(7291), + [anon_sym_short] = ACTIONS(7291), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7291), + [anon_sym_volatile] = ACTIONS(7291), + [anon_sym_restrict] = ACTIONS(7291), + [anon_sym___restrict__] = ACTIONS(7291), + [anon_sym__Atomic] = ACTIONS(7291), + [anon_sym__Noreturn] = ACTIONS(7291), + [anon_sym_noreturn] = ACTIONS(7291), + [anon_sym__Nonnull] = ACTIONS(7291), + [anon_sym_mutable] = ACTIONS(7291), + [anon_sym_constinit] = ACTIONS(7291), + [anon_sym_consteval] = ACTIONS(7291), + [anon_sym_alignas] = ACTIONS(7291), + [anon_sym__Alignas] = ACTIONS(7291), + [sym_primitive_type] = ACTIONS(7291), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_bitor] = ACTIONS(7291), + [anon_sym_xor] = ACTIONS(7291), + [anon_sym_bitand] = ACTIONS(7291), + [anon_sym_not_eq] = ACTIONS(7291), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7293), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7291), + [anon_sym_decltype] = ACTIONS(7291), + [anon_sym_final] = ACTIONS(7291), + [anon_sym_override] = ACTIONS(7291), + [anon_sym_requires] = ACTIONS(7291), + [anon_sym_COLON_RBRACK] = ACTIONS(7293), }, - [STATE(3221)] = { - [sym_identifier] = ACTIONS(4006), - [aux_sym_preproc_def_token1] = ACTIONS(4006), - [aux_sym_preproc_if_token1] = ACTIONS(4006), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4006), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4006), - [sym_preproc_directive] = ACTIONS(4006), - [anon_sym_LPAREN2] = ACTIONS(4008), - [anon_sym_TILDE] = ACTIONS(4008), - [anon_sym_STAR] = ACTIONS(4008), - [anon_sym_AMP_AMP] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4006), - [anon_sym_SEMI] = ACTIONS(4008), - [anon_sym___extension__] = ACTIONS(4006), - [anon_sym_typedef] = ACTIONS(4006), - [anon_sym_virtual] = ACTIONS(4006), - [anon_sym_extern] = ACTIONS(4006), - [anon_sym___attribute__] = ACTIONS(4006), - [anon_sym___attribute] = ACTIONS(4006), - [anon_sym_using] = ACTIONS(4006), - [anon_sym_COLON_COLON] = ACTIONS(4008), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4008), - [anon_sym___declspec] = ACTIONS(4006), - [anon_sym___based] = ACTIONS(4006), - [anon_sym_RBRACE] = ACTIONS(4008), - [anon_sym_signed] = ACTIONS(4006), - [anon_sym_unsigned] = ACTIONS(4006), - [anon_sym_long] = ACTIONS(4006), - [anon_sym_short] = ACTIONS(4006), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_static] = ACTIONS(4006), - [anon_sym_register] = ACTIONS(4006), - [anon_sym_inline] = ACTIONS(4006), - [anon_sym___inline] = ACTIONS(4006), - [anon_sym___inline__] = ACTIONS(4006), - [anon_sym___forceinline] = ACTIONS(4006), - [anon_sym_thread_local] = ACTIONS(4006), - [anon_sym___thread] = ACTIONS(4006), - [anon_sym_const] = ACTIONS(4006), - [anon_sym_constexpr] = ACTIONS(4006), - [anon_sym_volatile] = ACTIONS(4006), - [anon_sym_restrict] = ACTIONS(4006), - [anon_sym___restrict__] = ACTIONS(4006), - [anon_sym__Atomic] = ACTIONS(4006), - [anon_sym__Noreturn] = ACTIONS(4006), - [anon_sym_noreturn] = ACTIONS(4006), - [anon_sym__Nonnull] = ACTIONS(4006), - [anon_sym_mutable] = ACTIONS(4006), - [anon_sym_constinit] = ACTIONS(4006), - [anon_sym_consteval] = ACTIONS(4006), - [anon_sym_alignas] = ACTIONS(4006), - [anon_sym__Alignas] = ACTIONS(4006), - [sym_primitive_type] = ACTIONS(4006), - [anon_sym_enum] = ACTIONS(4006), - [anon_sym_class] = ACTIONS(4006), - [anon_sym_struct] = ACTIONS(4006), - [anon_sym_union] = ACTIONS(4006), - [anon_sym_typename] = ACTIONS(4006), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4006), - [anon_sym_decltype] = ACTIONS(4006), - [anon_sym_explicit] = ACTIONS(4006), - [anon_sym_private] = ACTIONS(4006), - [anon_sym_template] = ACTIONS(4006), - [anon_sym_operator] = ACTIONS(4006), - [anon_sym_friend] = ACTIONS(4006), - [anon_sym_public] = ACTIONS(4006), - [anon_sym_protected] = ACTIONS(4006), - [anon_sym_static_assert] = ACTIONS(4006), - [anon_sym_LBRACK_COLON] = ACTIONS(4008), + [STATE(2813)] = { + [sym_identifier] = ACTIONS(6608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6610), + [anon_sym_COMMA] = ACTIONS(6610), + [anon_sym_RPAREN] = ACTIONS(6610), + [anon_sym_LPAREN2] = ACTIONS(6610), + [anon_sym_DASH] = ACTIONS(6608), + [anon_sym_PLUS] = ACTIONS(6608), + [anon_sym_STAR] = ACTIONS(6610), + [anon_sym_SLASH] = ACTIONS(6608), + [anon_sym_PERCENT] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6610), + [anon_sym_AMP_AMP] = ACTIONS(6610), + [anon_sym_PIPE] = ACTIONS(6608), + [anon_sym_CARET] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(6608), + [anon_sym_EQ_EQ] = ACTIONS(6610), + [anon_sym_BANG_EQ] = ACTIONS(6610), + [anon_sym_GT] = ACTIONS(6608), + [anon_sym_GT_EQ] = ACTIONS(6610), + [anon_sym_LT_EQ] = ACTIONS(6608), + [anon_sym_LT] = ACTIONS(6608), + [anon_sym_LT_LT] = ACTIONS(6610), + [anon_sym_GT_GT] = ACTIONS(6610), + [anon_sym_SEMI] = ACTIONS(6610), + [anon_sym___extension__] = ACTIONS(6608), + [anon_sym___attribute__] = ACTIONS(6608), + [anon_sym___attribute] = ACTIONS(6608), + [anon_sym_COLON] = ACTIONS(6608), + [anon_sym_COLON_COLON] = ACTIONS(6610), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6610), + [anon_sym___based] = ACTIONS(6608), + [anon_sym_LBRACE] = ACTIONS(6610), + [anon_sym_RBRACE] = ACTIONS(6610), + [anon_sym_signed] = ACTIONS(6608), + [anon_sym_unsigned] = ACTIONS(6608), + [anon_sym_long] = ACTIONS(6608), + [anon_sym_short] = ACTIONS(6608), + [anon_sym_LBRACK] = ACTIONS(6610), + [anon_sym_const] = ACTIONS(6608), + [anon_sym_constexpr] = ACTIONS(6608), + [anon_sym_volatile] = ACTIONS(6608), + [anon_sym_restrict] = ACTIONS(6608), + [anon_sym___restrict__] = ACTIONS(6608), + [anon_sym__Atomic] = ACTIONS(6608), + [anon_sym__Noreturn] = ACTIONS(6608), + [anon_sym_noreturn] = ACTIONS(6608), + [anon_sym__Nonnull] = ACTIONS(6608), + [anon_sym_mutable] = ACTIONS(6608), + [anon_sym_constinit] = ACTIONS(6608), + [anon_sym_consteval] = ACTIONS(6608), + [anon_sym_alignas] = ACTIONS(6608), + [anon_sym__Alignas] = ACTIONS(6608), + [sym_primitive_type] = ACTIONS(6608), + [anon_sym_QMARK] = ACTIONS(6610), + [anon_sym_LT_EQ_GT] = ACTIONS(6610), + [anon_sym_or] = ACTIONS(6608), + [anon_sym_and] = ACTIONS(6608), + [anon_sym_bitor] = ACTIONS(6608), + [anon_sym_xor] = ACTIONS(6608), + [anon_sym_bitand] = ACTIONS(6608), + [anon_sym_not_eq] = ACTIONS(6608), + [anon_sym_DASH_DASH] = ACTIONS(6610), + [anon_sym_PLUS_PLUS] = ACTIONS(6610), + [anon_sym_DOT] = ACTIONS(6608), + [anon_sym_DOT_STAR] = ACTIONS(6610), + [anon_sym_DASH_GT] = ACTIONS(6610), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6608), + [anon_sym_decltype] = ACTIONS(6608), + [anon_sym_final] = ACTIONS(6608), + [anon_sym_override] = ACTIONS(6608), + [anon_sym_requires] = ACTIONS(6608), + [anon_sym_COLON_RBRACK] = ACTIONS(6610), }, - [STATE(3222)] = { - [sym_identifier] = ACTIONS(8333), - [aux_sym_preproc_def_token1] = ACTIONS(8333), - [aux_sym_preproc_if_token1] = ACTIONS(8333), - [aux_sym_preproc_if_token2] = ACTIONS(8333), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8333), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8333), - [sym_preproc_directive] = ACTIONS(8333), - [anon_sym_LPAREN2] = ACTIONS(8335), - [anon_sym_TILDE] = ACTIONS(8335), - [anon_sym_STAR] = ACTIONS(8335), - [anon_sym_AMP_AMP] = ACTIONS(8335), - [anon_sym_AMP] = ACTIONS(8333), - [anon_sym_SEMI] = ACTIONS(8335), - [anon_sym___extension__] = ACTIONS(8333), - [anon_sym_typedef] = ACTIONS(8333), - [anon_sym_virtual] = ACTIONS(8333), - [anon_sym_extern] = ACTIONS(8333), - [anon_sym___attribute__] = ACTIONS(8333), - [anon_sym___attribute] = ACTIONS(8333), - [anon_sym_using] = ACTIONS(8333), - [anon_sym_COLON_COLON] = ACTIONS(8335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8335), - [anon_sym___declspec] = ACTIONS(8333), - [anon_sym___based] = ACTIONS(8333), - [anon_sym_signed] = ACTIONS(8333), - [anon_sym_unsigned] = ACTIONS(8333), - [anon_sym_long] = ACTIONS(8333), - [anon_sym_short] = ACTIONS(8333), - [anon_sym_LBRACK] = ACTIONS(8333), - [anon_sym_static] = ACTIONS(8333), - [anon_sym_register] = ACTIONS(8333), - [anon_sym_inline] = ACTIONS(8333), - [anon_sym___inline] = ACTIONS(8333), - [anon_sym___inline__] = ACTIONS(8333), - [anon_sym___forceinline] = ACTIONS(8333), - [anon_sym_thread_local] = ACTIONS(8333), - [anon_sym___thread] = ACTIONS(8333), - [anon_sym_const] = ACTIONS(8333), - [anon_sym_constexpr] = ACTIONS(8333), - [anon_sym_volatile] = ACTIONS(8333), - [anon_sym_restrict] = ACTIONS(8333), - [anon_sym___restrict__] = ACTIONS(8333), - [anon_sym__Atomic] = ACTIONS(8333), - [anon_sym__Noreturn] = ACTIONS(8333), - [anon_sym_noreturn] = ACTIONS(8333), - [anon_sym__Nonnull] = ACTIONS(8333), - [anon_sym_mutable] = ACTIONS(8333), - [anon_sym_constinit] = ACTIONS(8333), - [anon_sym_consteval] = ACTIONS(8333), - [anon_sym_alignas] = ACTIONS(8333), - [anon_sym__Alignas] = ACTIONS(8333), - [sym_primitive_type] = ACTIONS(8333), - [anon_sym_enum] = ACTIONS(8333), - [anon_sym_class] = ACTIONS(8333), - [anon_sym_struct] = ACTIONS(8333), - [anon_sym_union] = ACTIONS(8333), - [anon_sym_typename] = ACTIONS(8333), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8333), - [anon_sym_decltype] = ACTIONS(8333), - [anon_sym_explicit] = ACTIONS(8333), - [anon_sym_private] = ACTIONS(8333), - [anon_sym_template] = ACTIONS(8333), - [anon_sym_operator] = ACTIONS(8333), - [anon_sym_friend] = ACTIONS(8333), - [anon_sym_public] = ACTIONS(8333), - [anon_sym_protected] = ACTIONS(8333), - [anon_sym_static_assert] = ACTIONS(8333), - [anon_sym_LBRACK_COLON] = ACTIONS(8335), + [STATE(2814)] = { + [sym_identifier] = ACTIONS(6616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6618), + [anon_sym_COMMA] = ACTIONS(6618), + [anon_sym_RPAREN] = ACTIONS(6618), + [anon_sym_LPAREN2] = ACTIONS(6618), + [anon_sym_DASH] = ACTIONS(6616), + [anon_sym_PLUS] = ACTIONS(6616), + [anon_sym_STAR] = ACTIONS(6618), + [anon_sym_SLASH] = ACTIONS(6616), + [anon_sym_PERCENT] = ACTIONS(6618), + [anon_sym_PIPE_PIPE] = ACTIONS(6618), + [anon_sym_AMP_AMP] = ACTIONS(6618), + [anon_sym_PIPE] = ACTIONS(6616), + [anon_sym_CARET] = ACTIONS(6618), + [anon_sym_AMP] = ACTIONS(6616), + [anon_sym_EQ_EQ] = ACTIONS(6618), + [anon_sym_BANG_EQ] = ACTIONS(6618), + [anon_sym_GT] = ACTIONS(6616), + [anon_sym_GT_EQ] = ACTIONS(6618), + [anon_sym_LT_EQ] = ACTIONS(6616), + [anon_sym_LT] = ACTIONS(6616), + [anon_sym_LT_LT] = ACTIONS(6618), + [anon_sym_GT_GT] = ACTIONS(6618), + [anon_sym_SEMI] = ACTIONS(6618), + [anon_sym___extension__] = ACTIONS(6616), + [anon_sym___attribute__] = ACTIONS(6616), + [anon_sym___attribute] = ACTIONS(6616), + [anon_sym_COLON] = ACTIONS(6616), + [anon_sym_COLON_COLON] = ACTIONS(6618), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6618), + [anon_sym___based] = ACTIONS(6616), + [anon_sym_LBRACE] = ACTIONS(6618), + [anon_sym_RBRACE] = ACTIONS(6618), + [anon_sym_signed] = ACTIONS(6616), + [anon_sym_unsigned] = ACTIONS(6616), + [anon_sym_long] = ACTIONS(6616), + [anon_sym_short] = ACTIONS(6616), + [anon_sym_LBRACK] = ACTIONS(6618), + [anon_sym_const] = ACTIONS(6616), + [anon_sym_constexpr] = ACTIONS(6616), + [anon_sym_volatile] = ACTIONS(6616), + [anon_sym_restrict] = ACTIONS(6616), + [anon_sym___restrict__] = ACTIONS(6616), + [anon_sym__Atomic] = ACTIONS(6616), + [anon_sym__Noreturn] = ACTIONS(6616), + [anon_sym_noreturn] = ACTIONS(6616), + [anon_sym__Nonnull] = ACTIONS(6616), + [anon_sym_mutable] = ACTIONS(6616), + [anon_sym_constinit] = ACTIONS(6616), + [anon_sym_consteval] = ACTIONS(6616), + [anon_sym_alignas] = ACTIONS(6616), + [anon_sym__Alignas] = ACTIONS(6616), + [sym_primitive_type] = ACTIONS(6616), + [anon_sym_QMARK] = ACTIONS(6618), + [anon_sym_LT_EQ_GT] = ACTIONS(6618), + [anon_sym_or] = ACTIONS(6616), + [anon_sym_and] = ACTIONS(6616), + [anon_sym_bitor] = ACTIONS(6616), + [anon_sym_xor] = ACTIONS(6616), + [anon_sym_bitand] = ACTIONS(6616), + [anon_sym_not_eq] = ACTIONS(6616), + [anon_sym_DASH_DASH] = ACTIONS(6618), + [anon_sym_PLUS_PLUS] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(6616), + [anon_sym_DOT_STAR] = ACTIONS(6618), + [anon_sym_DASH_GT] = ACTIONS(6618), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6616), + [anon_sym_decltype] = ACTIONS(6616), + [anon_sym_final] = ACTIONS(6616), + [anon_sym_override] = ACTIONS(6616), + [anon_sym_requires] = ACTIONS(6616), + [anon_sym_COLON_RBRACK] = ACTIONS(6618), }, - [STATE(3223)] = { - [sym_virtual_specifier] = STATE(3223), - [aux_sym__function_postfix_repeat1] = STATE(3223), - [sym_identifier] = ACTIONS(8755), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8757), - [anon_sym_COMMA] = ACTIONS(8757), - [anon_sym_RPAREN] = ACTIONS(8757), - [aux_sym_preproc_if_token2] = ACTIONS(8757), - [aux_sym_preproc_else_token1] = ACTIONS(8757), - [aux_sym_preproc_elif_token1] = ACTIONS(8755), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8757), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8757), - [anon_sym_LPAREN2] = ACTIONS(8757), - [anon_sym_DASH] = ACTIONS(8755), - [anon_sym_PLUS] = ACTIONS(8755), - [anon_sym_STAR] = ACTIONS(8755), - [anon_sym_SLASH] = ACTIONS(8755), - [anon_sym_PERCENT] = ACTIONS(8755), - [anon_sym_PIPE_PIPE] = ACTIONS(8757), - [anon_sym_AMP_AMP] = ACTIONS(8757), - [anon_sym_PIPE] = ACTIONS(8755), - [anon_sym_CARET] = ACTIONS(8755), - [anon_sym_AMP] = ACTIONS(8755), - [anon_sym_EQ_EQ] = ACTIONS(8757), - [anon_sym_BANG_EQ] = ACTIONS(8757), - [anon_sym_GT] = ACTIONS(8755), - [anon_sym_GT_EQ] = ACTIONS(8757), - [anon_sym_LT_EQ] = ACTIONS(8755), - [anon_sym_LT] = ACTIONS(8755), - [anon_sym_LT_LT] = ACTIONS(8755), - [anon_sym_GT_GT] = ACTIONS(8755), - [anon_sym_SEMI] = ACTIONS(8757), - [anon_sym___attribute__] = ACTIONS(8755), - [anon_sym___attribute] = ACTIONS(8755), - [anon_sym_COLON] = ACTIONS(8755), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8757), - [anon_sym_RBRACE] = ACTIONS(8757), - [anon_sym_LBRACK] = ACTIONS(8757), - [anon_sym_EQ] = ACTIONS(8755), - [anon_sym_QMARK] = ACTIONS(8757), - [anon_sym_STAR_EQ] = ACTIONS(8757), - [anon_sym_SLASH_EQ] = ACTIONS(8757), - [anon_sym_PERCENT_EQ] = ACTIONS(8757), - [anon_sym_PLUS_EQ] = ACTIONS(8757), - [anon_sym_DASH_EQ] = ACTIONS(8757), - [anon_sym_LT_LT_EQ] = ACTIONS(8757), - [anon_sym_GT_GT_EQ] = ACTIONS(8757), - [anon_sym_AMP_EQ] = ACTIONS(8757), - [anon_sym_CARET_EQ] = ACTIONS(8757), - [anon_sym_PIPE_EQ] = ACTIONS(8757), - [anon_sym_and_eq] = ACTIONS(8755), - [anon_sym_or_eq] = ACTIONS(8755), - [anon_sym_xor_eq] = ACTIONS(8755), - [anon_sym_LT_EQ_GT] = ACTIONS(8757), - [anon_sym_or] = ACTIONS(8755), - [anon_sym_and] = ACTIONS(8755), - [anon_sym_bitor] = ACTIONS(8755), - [anon_sym_xor] = ACTIONS(8755), - [anon_sym_bitand] = ACTIONS(8755), - [anon_sym_not_eq] = ACTIONS(8755), - [anon_sym_DASH_DASH] = ACTIONS(8757), - [anon_sym_PLUS_PLUS] = ACTIONS(8757), - [anon_sym_DOT] = ACTIONS(8755), - [anon_sym_DOT_STAR] = ACTIONS(8757), - [anon_sym_DASH_GT] = ACTIONS(8757), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8759), - [anon_sym_override] = ACTIONS(8759), - [anon_sym_requires] = ACTIONS(8755), - [anon_sym_COLON_RBRACK] = ACTIONS(8757), + [STATE(2815)] = { + [sym_identifier] = ACTIONS(3600), + [aux_sym_preproc_def_token1] = ACTIONS(3600), + [aux_sym_preproc_if_token1] = ACTIONS(3600), + [aux_sym_preproc_if_token2] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), + [aux_sym_preproc_else_token1] = ACTIONS(3600), + [aux_sym_preproc_elif_token1] = ACTIONS(3600), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3600), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3600), + [sym_preproc_directive] = ACTIONS(3600), + [anon_sym_LPAREN2] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3602), + [anon_sym_STAR] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_AMP] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym___extension__] = ACTIONS(3600), + [anon_sym_typedef] = ACTIONS(3600), + [anon_sym_virtual] = ACTIONS(3600), + [anon_sym_extern] = ACTIONS(3600), + [anon_sym___attribute__] = ACTIONS(3600), + [anon_sym___attribute] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), + [anon_sym___declspec] = ACTIONS(3600), + [anon_sym___based] = ACTIONS(3600), + [anon_sym_signed] = ACTIONS(3600), + [anon_sym_unsigned] = ACTIONS(3600), + [anon_sym_long] = ACTIONS(3600), + [anon_sym_short] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_register] = ACTIONS(3600), + [anon_sym_inline] = ACTIONS(3600), + [anon_sym___inline] = ACTIONS(3600), + [anon_sym___inline__] = ACTIONS(3600), + [anon_sym___forceinline] = ACTIONS(3600), + [anon_sym_thread_local] = ACTIONS(3600), + [anon_sym___thread] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_constexpr] = ACTIONS(3600), + [anon_sym_volatile] = ACTIONS(3600), + [anon_sym_restrict] = ACTIONS(3600), + [anon_sym___restrict__] = ACTIONS(3600), + [anon_sym__Atomic] = ACTIONS(3600), + [anon_sym__Noreturn] = ACTIONS(3600), + [anon_sym_noreturn] = ACTIONS(3600), + [anon_sym__Nonnull] = ACTIONS(3600), + [anon_sym_mutable] = ACTIONS(3600), + [anon_sym_constinit] = ACTIONS(3600), + [anon_sym_consteval] = ACTIONS(3600), + [anon_sym_alignas] = ACTIONS(3600), + [anon_sym__Alignas] = ACTIONS(3600), + [sym_primitive_type] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_struct] = ACTIONS(3600), + [anon_sym_union] = ACTIONS(3600), + [anon_sym_typename] = ACTIONS(3600), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3600), + [anon_sym_decltype] = ACTIONS(3600), + [anon_sym_explicit] = ACTIONS(3600), + [anon_sym_private] = ACTIONS(3600), + [anon_sym_template] = ACTIONS(3600), + [anon_sym_operator] = ACTIONS(3600), + [anon_sym_friend] = ACTIONS(3600), + [anon_sym_public] = ACTIONS(3600), + [anon_sym_protected] = ACTIONS(3600), + [anon_sym_static_assert] = ACTIONS(3600), + [anon_sym_LBRACK_COLON] = ACTIONS(3602), }, - [STATE(3224)] = { - [sym_identifier] = ACTIONS(8458), - [aux_sym_preproc_def_token1] = ACTIONS(8458), - [aux_sym_preproc_if_token1] = ACTIONS(8458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8458), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8458), - [sym_preproc_directive] = ACTIONS(8458), - [anon_sym_LPAREN2] = ACTIONS(8460), - [anon_sym_TILDE] = ACTIONS(8460), - [anon_sym_STAR] = ACTIONS(8460), - [anon_sym_AMP_AMP] = ACTIONS(8460), - [anon_sym_AMP] = ACTIONS(8458), - [anon_sym_SEMI] = ACTIONS(8460), - [anon_sym___extension__] = ACTIONS(8458), - [anon_sym_typedef] = ACTIONS(8458), - [anon_sym_virtual] = ACTIONS(8458), - [anon_sym_extern] = ACTIONS(8458), - [anon_sym___attribute__] = ACTIONS(8458), - [anon_sym___attribute] = ACTIONS(8458), - [anon_sym_using] = ACTIONS(8458), - [anon_sym_COLON_COLON] = ACTIONS(8460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8460), - [anon_sym___declspec] = ACTIONS(8458), - [anon_sym___based] = ACTIONS(8458), - [anon_sym_RBRACE] = ACTIONS(8460), - [anon_sym_signed] = ACTIONS(8458), - [anon_sym_unsigned] = ACTIONS(8458), - [anon_sym_long] = ACTIONS(8458), - [anon_sym_short] = ACTIONS(8458), - [anon_sym_LBRACK] = ACTIONS(8458), - [anon_sym_static] = ACTIONS(8458), - [anon_sym_register] = ACTIONS(8458), - [anon_sym_inline] = ACTIONS(8458), - [anon_sym___inline] = ACTIONS(8458), - [anon_sym___inline__] = ACTIONS(8458), - [anon_sym___forceinline] = ACTIONS(8458), - [anon_sym_thread_local] = ACTIONS(8458), - [anon_sym___thread] = ACTIONS(8458), - [anon_sym_const] = ACTIONS(8458), - [anon_sym_constexpr] = ACTIONS(8458), - [anon_sym_volatile] = ACTIONS(8458), - [anon_sym_restrict] = ACTIONS(8458), - [anon_sym___restrict__] = ACTIONS(8458), - [anon_sym__Atomic] = ACTIONS(8458), - [anon_sym__Noreturn] = ACTIONS(8458), - [anon_sym_noreturn] = ACTIONS(8458), - [anon_sym__Nonnull] = ACTIONS(8458), - [anon_sym_mutable] = ACTIONS(8458), - [anon_sym_constinit] = ACTIONS(8458), - [anon_sym_consteval] = ACTIONS(8458), - [anon_sym_alignas] = ACTIONS(8458), - [anon_sym__Alignas] = ACTIONS(8458), - [sym_primitive_type] = ACTIONS(8458), - [anon_sym_enum] = ACTIONS(8458), - [anon_sym_class] = ACTIONS(8458), - [anon_sym_struct] = ACTIONS(8458), - [anon_sym_union] = ACTIONS(8458), - [anon_sym_typename] = ACTIONS(8458), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8458), - [anon_sym_decltype] = ACTIONS(8458), - [anon_sym_explicit] = ACTIONS(8458), - [anon_sym_private] = ACTIONS(8458), - [anon_sym_template] = ACTIONS(8458), - [anon_sym_operator] = ACTIONS(8458), - [anon_sym_friend] = ACTIONS(8458), - [anon_sym_public] = ACTIONS(8458), - [anon_sym_protected] = ACTIONS(8458), - [anon_sym_static_assert] = ACTIONS(8458), - [anon_sym_LBRACK_COLON] = ACTIONS(8460), + [STATE(2816)] = { + [sym_identifier] = ACTIONS(3600), + [aux_sym_preproc_def_token1] = ACTIONS(3600), + [aux_sym_preproc_if_token1] = ACTIONS(3600), + [aux_sym_preproc_if_token2] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), + [aux_sym_preproc_else_token1] = ACTIONS(3600), + [aux_sym_preproc_elif_token1] = ACTIONS(3600), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3600), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3600), + [sym_preproc_directive] = ACTIONS(3600), + [anon_sym_LPAREN2] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3602), + [anon_sym_STAR] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_AMP] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym___extension__] = ACTIONS(3600), + [anon_sym_typedef] = ACTIONS(3600), + [anon_sym_virtual] = ACTIONS(3600), + [anon_sym_extern] = ACTIONS(3600), + [anon_sym___attribute__] = ACTIONS(3600), + [anon_sym___attribute] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), + [anon_sym___declspec] = ACTIONS(3600), + [anon_sym___based] = ACTIONS(3600), + [anon_sym_signed] = ACTIONS(3600), + [anon_sym_unsigned] = ACTIONS(3600), + [anon_sym_long] = ACTIONS(3600), + [anon_sym_short] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_register] = ACTIONS(3600), + [anon_sym_inline] = ACTIONS(3600), + [anon_sym___inline] = ACTIONS(3600), + [anon_sym___inline__] = ACTIONS(3600), + [anon_sym___forceinline] = ACTIONS(3600), + [anon_sym_thread_local] = ACTIONS(3600), + [anon_sym___thread] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_constexpr] = ACTIONS(3600), + [anon_sym_volatile] = ACTIONS(3600), + [anon_sym_restrict] = ACTIONS(3600), + [anon_sym___restrict__] = ACTIONS(3600), + [anon_sym__Atomic] = ACTIONS(3600), + [anon_sym__Noreturn] = ACTIONS(3600), + [anon_sym_noreturn] = ACTIONS(3600), + [anon_sym__Nonnull] = ACTIONS(3600), + [anon_sym_mutable] = ACTIONS(3600), + [anon_sym_constinit] = ACTIONS(3600), + [anon_sym_consteval] = ACTIONS(3600), + [anon_sym_alignas] = ACTIONS(3600), + [anon_sym__Alignas] = ACTIONS(3600), + [sym_primitive_type] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_struct] = ACTIONS(3600), + [anon_sym_union] = ACTIONS(3600), + [anon_sym_typename] = ACTIONS(3600), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3600), + [anon_sym_decltype] = ACTIONS(3600), + [anon_sym_explicit] = ACTIONS(3600), + [anon_sym_private] = ACTIONS(3600), + [anon_sym_template] = ACTIONS(3600), + [anon_sym_operator] = ACTIONS(3600), + [anon_sym_friend] = ACTIONS(3600), + [anon_sym_public] = ACTIONS(3600), + [anon_sym_protected] = ACTIONS(3600), + [anon_sym_static_assert] = ACTIONS(3600), + [anon_sym_LBRACK_COLON] = ACTIONS(3602), }, - [STATE(3225)] = { - [sym_identifier] = ACTIONS(4100), - [aux_sym_preproc_def_token1] = ACTIONS(4100), - [aux_sym_preproc_if_token1] = ACTIONS(4100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), - [sym_preproc_directive] = ACTIONS(4100), - [anon_sym_LPAREN2] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_STAR] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4102), - [anon_sym_AMP] = ACTIONS(4100), - [anon_sym_SEMI] = ACTIONS(4102), - [anon_sym___extension__] = ACTIONS(4100), - [anon_sym_typedef] = ACTIONS(4100), - [anon_sym_virtual] = ACTIONS(4100), - [anon_sym_extern] = ACTIONS(4100), - [anon_sym___attribute__] = ACTIONS(4100), - [anon_sym___attribute] = ACTIONS(4100), - [anon_sym_using] = ACTIONS(4100), - [anon_sym_COLON_COLON] = ACTIONS(4102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4102), - [anon_sym___declspec] = ACTIONS(4100), - [anon_sym___based] = ACTIONS(4100), - [anon_sym_RBRACE] = ACTIONS(4102), - [anon_sym_signed] = ACTIONS(4100), - [anon_sym_unsigned] = ACTIONS(4100), - [anon_sym_long] = ACTIONS(4100), - [anon_sym_short] = ACTIONS(4100), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_static] = ACTIONS(4100), - [anon_sym_register] = ACTIONS(4100), - [anon_sym_inline] = ACTIONS(4100), - [anon_sym___inline] = ACTIONS(4100), - [anon_sym___inline__] = ACTIONS(4100), - [anon_sym___forceinline] = ACTIONS(4100), - [anon_sym_thread_local] = ACTIONS(4100), - [anon_sym___thread] = ACTIONS(4100), - [anon_sym_const] = ACTIONS(4100), - [anon_sym_constexpr] = ACTIONS(4100), - [anon_sym_volatile] = ACTIONS(4100), - [anon_sym_restrict] = ACTIONS(4100), - [anon_sym___restrict__] = ACTIONS(4100), - [anon_sym__Atomic] = ACTIONS(4100), - [anon_sym__Noreturn] = ACTIONS(4100), - [anon_sym_noreturn] = ACTIONS(4100), - [anon_sym__Nonnull] = ACTIONS(4100), - [anon_sym_mutable] = ACTIONS(4100), - [anon_sym_constinit] = ACTIONS(4100), - [anon_sym_consteval] = ACTIONS(4100), - [anon_sym_alignas] = ACTIONS(4100), - [anon_sym__Alignas] = ACTIONS(4100), - [sym_primitive_type] = ACTIONS(4100), - [anon_sym_enum] = ACTIONS(4100), - [anon_sym_class] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(4100), - [anon_sym_union] = ACTIONS(4100), - [anon_sym_typename] = ACTIONS(4100), + [STATE(2817)] = { + [sym_identifier] = ACTIONS(6620), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6622), + [anon_sym_COMMA] = ACTIONS(6622), + [anon_sym_RPAREN] = ACTIONS(6622), + [anon_sym_LPAREN2] = ACTIONS(6622), + [anon_sym_DASH] = ACTIONS(6620), + [anon_sym_PLUS] = ACTIONS(6620), + [anon_sym_STAR] = ACTIONS(6622), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_PERCENT] = ACTIONS(6622), + [anon_sym_PIPE_PIPE] = ACTIONS(6622), + [anon_sym_AMP_AMP] = ACTIONS(6622), + [anon_sym_PIPE] = ACTIONS(6620), + [anon_sym_CARET] = ACTIONS(6622), + [anon_sym_AMP] = ACTIONS(6620), + [anon_sym_EQ_EQ] = ACTIONS(6622), + [anon_sym_BANG_EQ] = ACTIONS(6622), + [anon_sym_GT] = ACTIONS(6620), + [anon_sym_GT_EQ] = ACTIONS(6622), + [anon_sym_LT_EQ] = ACTIONS(6620), + [anon_sym_LT] = ACTIONS(6620), + [anon_sym_LT_LT] = ACTIONS(6622), + [anon_sym_GT_GT] = ACTIONS(6622), + [anon_sym_SEMI] = ACTIONS(6622), + [anon_sym___extension__] = ACTIONS(6620), + [anon_sym___attribute__] = ACTIONS(6620), + [anon_sym___attribute] = ACTIONS(6620), + [anon_sym_COLON] = ACTIONS(6620), + [anon_sym_COLON_COLON] = ACTIONS(6622), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6622), + [anon_sym___based] = ACTIONS(6620), + [anon_sym_LBRACE] = ACTIONS(6622), + [anon_sym_RBRACE] = ACTIONS(6622), + [anon_sym_signed] = ACTIONS(6620), + [anon_sym_unsigned] = ACTIONS(6620), + [anon_sym_long] = ACTIONS(6620), + [anon_sym_short] = ACTIONS(6620), + [anon_sym_LBRACK] = ACTIONS(6622), + [anon_sym_const] = ACTIONS(6620), + [anon_sym_constexpr] = ACTIONS(6620), + [anon_sym_volatile] = ACTIONS(6620), + [anon_sym_restrict] = ACTIONS(6620), + [anon_sym___restrict__] = ACTIONS(6620), + [anon_sym__Atomic] = ACTIONS(6620), + [anon_sym__Noreturn] = ACTIONS(6620), + [anon_sym_noreturn] = ACTIONS(6620), + [anon_sym__Nonnull] = ACTIONS(6620), + [anon_sym_mutable] = ACTIONS(6620), + [anon_sym_constinit] = ACTIONS(6620), + [anon_sym_consteval] = ACTIONS(6620), + [anon_sym_alignas] = ACTIONS(6620), + [anon_sym__Alignas] = ACTIONS(6620), + [sym_primitive_type] = ACTIONS(6620), + [anon_sym_QMARK] = ACTIONS(6622), + [anon_sym_LT_EQ_GT] = ACTIONS(6622), + [anon_sym_or] = ACTIONS(6620), + [anon_sym_and] = ACTIONS(6620), + [anon_sym_bitor] = ACTIONS(6620), + [anon_sym_xor] = ACTIONS(6620), + [anon_sym_bitand] = ACTIONS(6620), + [anon_sym_not_eq] = ACTIONS(6620), + [anon_sym_DASH_DASH] = ACTIONS(6622), + [anon_sym_PLUS_PLUS] = ACTIONS(6622), + [anon_sym_DOT] = ACTIONS(6620), + [anon_sym_DOT_STAR] = ACTIONS(6622), + [anon_sym_DASH_GT] = ACTIONS(6622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6620), + [anon_sym_decltype] = ACTIONS(6620), + [anon_sym_final] = ACTIONS(6620), + [anon_sym_override] = ACTIONS(6620), + [anon_sym_requires] = ACTIONS(6620), + [anon_sym_COLON_RBRACK] = ACTIONS(6622), + }, + [STATE(2818)] = { + [sym_type_qualifier] = STATE(2488), + [sym_alignas_qualifier] = STATE(2726), + [aux_sym__type_definition_type_repeat1] = STATE(2488), + [aux_sym_sized_type_specifier_repeat1] = STATE(3564), + [sym_identifier] = ACTIONS(8714), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), + [anon_sym_COMMA] = ACTIONS(7205), + [anon_sym_RPAREN] = ACTIONS(7205), + [anon_sym_LPAREN2] = ACTIONS(7205), + [anon_sym_DASH] = ACTIONS(7207), + [anon_sym_PLUS] = ACTIONS(7207), + [anon_sym_STAR] = ACTIONS(7205), + [anon_sym_SLASH] = ACTIONS(7207), + [anon_sym_PERCENT] = ACTIONS(7205), + [anon_sym_PIPE_PIPE] = ACTIONS(7205), + [anon_sym_AMP_AMP] = ACTIONS(7205), + [anon_sym_PIPE] = ACTIONS(7207), + [anon_sym_CARET] = ACTIONS(7205), + [anon_sym_AMP] = ACTIONS(7207), + [anon_sym_EQ_EQ] = ACTIONS(7205), + [anon_sym_BANG_EQ] = ACTIONS(7205), + [anon_sym_GT] = ACTIONS(7207), + [anon_sym_GT_EQ] = ACTIONS(7205), + [anon_sym_LT_EQ] = ACTIONS(7207), + [anon_sym_LT] = ACTIONS(7207), + [anon_sym_LT_LT] = ACTIONS(7205), + [anon_sym_GT_GT] = ACTIONS(7205), + [anon_sym_SEMI] = ACTIONS(7205), + [anon_sym___extension__] = ACTIONS(8716), + [anon_sym___attribute__] = ACTIONS(7207), + [anon_sym___attribute] = ACTIONS(7207), + [anon_sym_COLON] = ACTIONS(7207), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7205), + [anon_sym_LBRACE] = ACTIONS(7205), + [anon_sym_RBRACE] = ACTIONS(7205), + [anon_sym_signed] = ACTIONS(8719), + [anon_sym_unsigned] = ACTIONS(8719), + [anon_sym_long] = ACTIONS(8719), + [anon_sym_short] = ACTIONS(8719), + [anon_sym_LBRACK] = ACTIONS(7205), + [anon_sym_const] = ACTIONS(8716), + [anon_sym_constexpr] = ACTIONS(8716), + [anon_sym_volatile] = ACTIONS(8716), + [anon_sym_restrict] = ACTIONS(8716), + [anon_sym___restrict__] = ACTIONS(8716), + [anon_sym__Atomic] = ACTIONS(8716), + [anon_sym__Noreturn] = ACTIONS(8716), + [anon_sym_noreturn] = ACTIONS(8716), + [anon_sym__Nonnull] = ACTIONS(8716), + [anon_sym_mutable] = ACTIONS(8716), + [anon_sym_constinit] = ACTIONS(8716), + [anon_sym_consteval] = ACTIONS(8716), + [anon_sym_alignas] = ACTIONS(8721), + [anon_sym__Alignas] = ACTIONS(8721), + [sym_primitive_type] = ACTIONS(8724), + [anon_sym_QMARK] = ACTIONS(7205), + [anon_sym_LT_EQ_GT] = ACTIONS(7205), + [anon_sym_or] = ACTIONS(7207), + [anon_sym_and] = ACTIONS(7207), + [anon_sym_bitor] = ACTIONS(7207), + [anon_sym_xor] = ACTIONS(7207), + [anon_sym_bitand] = ACTIONS(7207), + [anon_sym_not_eq] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7205), + [anon_sym_PLUS_PLUS] = ACTIONS(7205), + [anon_sym_DOT] = ACTIONS(7207), + [anon_sym_DOT_STAR] = ACTIONS(7205), + [anon_sym_DASH_GT] = ACTIONS(7205), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4100), - [anon_sym_decltype] = ACTIONS(4100), - [anon_sym_explicit] = ACTIONS(4100), - [anon_sym_private] = ACTIONS(4100), - [anon_sym_template] = ACTIONS(4100), - [anon_sym_operator] = ACTIONS(4100), - [anon_sym_friend] = ACTIONS(4100), - [anon_sym_public] = ACTIONS(4100), - [anon_sym_protected] = ACTIONS(4100), - [anon_sym_static_assert] = ACTIONS(4100), - [anon_sym_LBRACK_COLON] = ACTIONS(4102), + [anon_sym_final] = ACTIONS(7207), + [anon_sym_override] = ACTIONS(7207), + [anon_sym_requires] = ACTIONS(7207), + [anon_sym_COLON_RBRACK] = ACTIONS(7205), }, - [STATE(3226)] = { - [sym_identifier] = ACTIONS(8313), - [aux_sym_preproc_def_token1] = ACTIONS(8313), - [aux_sym_preproc_if_token1] = ACTIONS(8313), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8313), - [sym_preproc_directive] = ACTIONS(8313), - [anon_sym_LPAREN2] = ACTIONS(8315), - [anon_sym_TILDE] = ACTIONS(8315), - [anon_sym_STAR] = ACTIONS(8315), - [anon_sym_AMP_AMP] = ACTIONS(8315), - [anon_sym_AMP] = ACTIONS(8313), - [anon_sym_SEMI] = ACTIONS(8315), - [anon_sym___extension__] = ACTIONS(8313), - [anon_sym_typedef] = ACTIONS(8313), - [anon_sym_virtual] = ACTIONS(8313), - [anon_sym_extern] = ACTIONS(8313), - [anon_sym___attribute__] = ACTIONS(8313), - [anon_sym___attribute] = ACTIONS(8313), - [anon_sym_using] = ACTIONS(8313), - [anon_sym_COLON_COLON] = ACTIONS(8315), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8315), - [anon_sym___declspec] = ACTIONS(8313), - [anon_sym___based] = ACTIONS(8313), - [anon_sym_RBRACE] = ACTIONS(8315), - [anon_sym_signed] = ACTIONS(8313), - [anon_sym_unsigned] = ACTIONS(8313), - [anon_sym_long] = ACTIONS(8313), - [anon_sym_short] = ACTIONS(8313), - [anon_sym_LBRACK] = ACTIONS(8313), - [anon_sym_static] = ACTIONS(8313), - [anon_sym_register] = ACTIONS(8313), - [anon_sym_inline] = ACTIONS(8313), - [anon_sym___inline] = ACTIONS(8313), - [anon_sym___inline__] = ACTIONS(8313), - [anon_sym___forceinline] = ACTIONS(8313), - [anon_sym_thread_local] = ACTIONS(8313), - [anon_sym___thread] = ACTIONS(8313), - [anon_sym_const] = ACTIONS(8313), - [anon_sym_constexpr] = ACTIONS(8313), - [anon_sym_volatile] = ACTIONS(8313), - [anon_sym_restrict] = ACTIONS(8313), - [anon_sym___restrict__] = ACTIONS(8313), - [anon_sym__Atomic] = ACTIONS(8313), - [anon_sym__Noreturn] = ACTIONS(8313), - [anon_sym_noreturn] = ACTIONS(8313), - [anon_sym__Nonnull] = ACTIONS(8313), - [anon_sym_mutable] = ACTIONS(8313), - [anon_sym_constinit] = ACTIONS(8313), - [anon_sym_consteval] = ACTIONS(8313), - [anon_sym_alignas] = ACTIONS(8313), - [anon_sym__Alignas] = ACTIONS(8313), - [sym_primitive_type] = ACTIONS(8313), - [anon_sym_enum] = ACTIONS(8313), - [anon_sym_class] = ACTIONS(8313), - [anon_sym_struct] = ACTIONS(8313), - [anon_sym_union] = ACTIONS(8313), - [anon_sym_typename] = ACTIONS(8313), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8313), - [anon_sym_decltype] = ACTIONS(8313), - [anon_sym_explicit] = ACTIONS(8313), - [anon_sym_private] = ACTIONS(8313), - [anon_sym_template] = ACTIONS(8313), - [anon_sym_operator] = ACTIONS(8313), - [anon_sym_friend] = ACTIONS(8313), - [anon_sym_public] = ACTIONS(8313), - [anon_sym_protected] = ACTIONS(8313), - [anon_sym_static_assert] = ACTIONS(8313), - [anon_sym_LBRACK_COLON] = ACTIONS(8315), + [STATE(2819)] = { + [sym_identifier] = ACTIONS(4262), + [aux_sym_preproc_def_token1] = ACTIONS(4262), + [aux_sym_preproc_if_token1] = ACTIONS(4262), + [aux_sym_preproc_if_token2] = ACTIONS(4262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4262), + [aux_sym_preproc_else_token1] = ACTIONS(4262), + [aux_sym_preproc_elif_token1] = ACTIONS(4262), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4262), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4262), + [sym_preproc_directive] = ACTIONS(4262), + [anon_sym_LPAREN2] = ACTIONS(4264), + [anon_sym_TILDE] = ACTIONS(4264), + [anon_sym_STAR] = ACTIONS(4264), + [anon_sym_AMP_AMP] = ACTIONS(4264), + [anon_sym_AMP] = ACTIONS(4262), + [anon_sym_SEMI] = ACTIONS(4264), + [anon_sym___extension__] = ACTIONS(4262), + [anon_sym_typedef] = ACTIONS(4262), + [anon_sym_virtual] = ACTIONS(4262), + [anon_sym_extern] = ACTIONS(4262), + [anon_sym___attribute__] = ACTIONS(4262), + [anon_sym___attribute] = ACTIONS(4262), + [anon_sym_using] = ACTIONS(4262), + [anon_sym_COLON_COLON] = ACTIONS(4264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4264), + [anon_sym___declspec] = ACTIONS(4262), + [anon_sym___based] = ACTIONS(4262), + [anon_sym_signed] = ACTIONS(4262), + [anon_sym_unsigned] = ACTIONS(4262), + [anon_sym_long] = ACTIONS(4262), + [anon_sym_short] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_static] = ACTIONS(4262), + [anon_sym_register] = ACTIONS(4262), + [anon_sym_inline] = ACTIONS(4262), + [anon_sym___inline] = ACTIONS(4262), + [anon_sym___inline__] = ACTIONS(4262), + [anon_sym___forceinline] = ACTIONS(4262), + [anon_sym_thread_local] = ACTIONS(4262), + [anon_sym___thread] = ACTIONS(4262), + [anon_sym_const] = ACTIONS(4262), + [anon_sym_constexpr] = ACTIONS(4262), + [anon_sym_volatile] = ACTIONS(4262), + [anon_sym_restrict] = ACTIONS(4262), + [anon_sym___restrict__] = ACTIONS(4262), + [anon_sym__Atomic] = ACTIONS(4262), + [anon_sym__Noreturn] = ACTIONS(4262), + [anon_sym_noreturn] = ACTIONS(4262), + [anon_sym__Nonnull] = ACTIONS(4262), + [anon_sym_mutable] = ACTIONS(4262), + [anon_sym_constinit] = ACTIONS(4262), + [anon_sym_consteval] = ACTIONS(4262), + [anon_sym_alignas] = ACTIONS(4262), + [anon_sym__Alignas] = ACTIONS(4262), + [sym_primitive_type] = ACTIONS(4262), + [anon_sym_enum] = ACTIONS(4262), + [anon_sym_class] = ACTIONS(4262), + [anon_sym_struct] = ACTIONS(4262), + [anon_sym_union] = ACTIONS(4262), + [anon_sym_typename] = ACTIONS(4262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4262), + [anon_sym_decltype] = ACTIONS(4262), + [anon_sym_explicit] = ACTIONS(4262), + [anon_sym_private] = ACTIONS(4262), + [anon_sym_template] = ACTIONS(4262), + [anon_sym_operator] = ACTIONS(4262), + [anon_sym_friend] = ACTIONS(4262), + [anon_sym_public] = ACTIONS(4262), + [anon_sym_protected] = ACTIONS(4262), + [anon_sym_static_assert] = ACTIONS(4262), + [anon_sym_LBRACK_COLON] = ACTIONS(4264), }, - [STATE(3227)] = { - [sym_identifier] = ACTIONS(8289), - [aux_sym_preproc_def_token1] = ACTIONS(8289), - [aux_sym_preproc_if_token1] = ACTIONS(8289), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8289), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8289), - [sym_preproc_directive] = ACTIONS(8289), - [anon_sym_LPAREN2] = ACTIONS(8291), - [anon_sym_TILDE] = ACTIONS(8291), - [anon_sym_STAR] = ACTIONS(8291), - [anon_sym_AMP_AMP] = ACTIONS(8291), - [anon_sym_AMP] = ACTIONS(8289), - [anon_sym_SEMI] = ACTIONS(8291), - [anon_sym___extension__] = ACTIONS(8289), - [anon_sym_typedef] = ACTIONS(8289), - [anon_sym_virtual] = ACTIONS(8289), - [anon_sym_extern] = ACTIONS(8289), - [anon_sym___attribute__] = ACTIONS(8289), - [anon_sym___attribute] = ACTIONS(8289), - [anon_sym_using] = ACTIONS(8289), - [anon_sym_COLON_COLON] = ACTIONS(8291), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8291), - [anon_sym___declspec] = ACTIONS(8289), - [anon_sym___based] = ACTIONS(8289), - [anon_sym_RBRACE] = ACTIONS(8291), - [anon_sym_signed] = ACTIONS(8289), - [anon_sym_unsigned] = ACTIONS(8289), - [anon_sym_long] = ACTIONS(8289), - [anon_sym_short] = ACTIONS(8289), - [anon_sym_LBRACK] = ACTIONS(8289), - [anon_sym_static] = ACTIONS(8289), - [anon_sym_register] = ACTIONS(8289), - [anon_sym_inline] = ACTIONS(8289), - [anon_sym___inline] = ACTIONS(8289), - [anon_sym___inline__] = ACTIONS(8289), - [anon_sym___forceinline] = ACTIONS(8289), - [anon_sym_thread_local] = ACTIONS(8289), - [anon_sym___thread] = ACTIONS(8289), - [anon_sym_const] = ACTIONS(8289), - [anon_sym_constexpr] = ACTIONS(8289), - [anon_sym_volatile] = ACTIONS(8289), - [anon_sym_restrict] = ACTIONS(8289), - [anon_sym___restrict__] = ACTIONS(8289), - [anon_sym__Atomic] = ACTIONS(8289), - [anon_sym__Noreturn] = ACTIONS(8289), - [anon_sym_noreturn] = ACTIONS(8289), - [anon_sym__Nonnull] = ACTIONS(8289), - [anon_sym_mutable] = ACTIONS(8289), - [anon_sym_constinit] = ACTIONS(8289), - [anon_sym_consteval] = ACTIONS(8289), - [anon_sym_alignas] = ACTIONS(8289), - [anon_sym__Alignas] = ACTIONS(8289), - [sym_primitive_type] = ACTIONS(8289), - [anon_sym_enum] = ACTIONS(8289), - [anon_sym_class] = ACTIONS(8289), - [anon_sym_struct] = ACTIONS(8289), - [anon_sym_union] = ACTIONS(8289), - [anon_sym_typename] = ACTIONS(8289), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8289), - [anon_sym_decltype] = ACTIONS(8289), - [anon_sym_explicit] = ACTIONS(8289), - [anon_sym_private] = ACTIONS(8289), - [anon_sym_template] = ACTIONS(8289), - [anon_sym_operator] = ACTIONS(8289), - [anon_sym_friend] = ACTIONS(8289), - [anon_sym_public] = ACTIONS(8289), - [anon_sym_protected] = ACTIONS(8289), - [anon_sym_static_assert] = ACTIONS(8289), - [anon_sym_LBRACK_COLON] = ACTIONS(8291), + [STATE(2820)] = { + [sym_attribute_specifier] = STATE(3142), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7507), + [anon_sym_COMMA] = ACTIONS(7507), + [anon_sym_LPAREN2] = ACTIONS(7507), + [anon_sym_DASH] = ACTIONS(7505), + [anon_sym_PLUS] = ACTIONS(7505), + [anon_sym_STAR] = ACTIONS(7505), + [anon_sym_SLASH] = ACTIONS(7505), + [anon_sym_PERCENT] = ACTIONS(7505), + [anon_sym_PIPE_PIPE] = ACTIONS(7507), + [anon_sym_AMP_AMP] = ACTIONS(7507), + [anon_sym_PIPE] = ACTIONS(7505), + [anon_sym_CARET] = ACTIONS(7505), + [anon_sym_AMP] = ACTIONS(7505), + [anon_sym_EQ_EQ] = ACTIONS(7507), + [anon_sym_BANG_EQ] = ACTIONS(7507), + [anon_sym_GT] = ACTIONS(7505), + [anon_sym_GT_EQ] = ACTIONS(7505), + [anon_sym_LT_EQ] = ACTIONS(7505), + [anon_sym_LT] = ACTIONS(7505), + [anon_sym_LT_LT] = ACTIONS(7505), + [anon_sym_GT_GT] = ACTIONS(7505), + [anon_sym___extension__] = ACTIONS(7507), + [anon_sym___attribute__] = ACTIONS(8265), + [anon_sym___attribute] = ACTIONS(8267), + [anon_sym_LBRACE] = ACTIONS(7507), + [anon_sym_LBRACK] = ACTIONS(7507), + [anon_sym_EQ] = ACTIONS(7505), + [anon_sym_const] = ACTIONS(7505), + [anon_sym_constexpr] = ACTIONS(7507), + [anon_sym_volatile] = ACTIONS(7507), + [anon_sym_restrict] = ACTIONS(7507), + [anon_sym___restrict__] = ACTIONS(7507), + [anon_sym__Atomic] = ACTIONS(7507), + [anon_sym__Noreturn] = ACTIONS(7507), + [anon_sym_noreturn] = ACTIONS(7507), + [anon_sym__Nonnull] = ACTIONS(7507), + [anon_sym_mutable] = ACTIONS(7507), + [anon_sym_constinit] = ACTIONS(7507), + [anon_sym_consteval] = ACTIONS(7507), + [anon_sym_alignas] = ACTIONS(7507), + [anon_sym__Alignas] = ACTIONS(7507), + [anon_sym_QMARK] = ACTIONS(7507), + [anon_sym_STAR_EQ] = ACTIONS(7507), + [anon_sym_SLASH_EQ] = ACTIONS(7507), + [anon_sym_PERCENT_EQ] = ACTIONS(7507), + [anon_sym_PLUS_EQ] = ACTIONS(7507), + [anon_sym_DASH_EQ] = ACTIONS(7507), + [anon_sym_LT_LT_EQ] = ACTIONS(7507), + [anon_sym_GT_GT_EQ] = ACTIONS(7505), + [anon_sym_AMP_EQ] = ACTIONS(7507), + [anon_sym_CARET_EQ] = ACTIONS(7507), + [anon_sym_PIPE_EQ] = ACTIONS(7507), + [anon_sym_and_eq] = ACTIONS(7507), + [anon_sym_or_eq] = ACTIONS(7507), + [anon_sym_xor_eq] = ACTIONS(7507), + [anon_sym_LT_EQ_GT] = ACTIONS(7507), + [anon_sym_or] = ACTIONS(7505), + [anon_sym_and] = ACTIONS(7505), + [anon_sym_bitor] = ACTIONS(7507), + [anon_sym_xor] = ACTIONS(7505), + [anon_sym_bitand] = ACTIONS(7507), + [anon_sym_not_eq] = ACTIONS(7507), + [anon_sym_DASH_DASH] = ACTIONS(7507), + [anon_sym_PLUS_PLUS] = ACTIONS(7507), + [anon_sym_DOT] = ACTIONS(7505), + [anon_sym_DOT_STAR] = ACTIONS(7507), + [anon_sym_DASH_GT] = ACTIONS(7507), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7507), + [anon_sym_override] = ACTIONS(7507), + [anon_sym_GT2] = ACTIONS(7507), + [anon_sym_requires] = ACTIONS(7507), }, - [STATE(3228)] = { - [sym_identifier] = ACTIONS(3876), - [aux_sym_preproc_def_token1] = ACTIONS(3876), - [aux_sym_preproc_if_token1] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), - [sym_preproc_directive] = ACTIONS(3876), - [anon_sym_LPAREN2] = ACTIONS(3878), - [anon_sym_TILDE] = ACTIONS(3878), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_AMP_AMP] = ACTIONS(3878), - [anon_sym_AMP] = ACTIONS(3876), - [anon_sym_SEMI] = ACTIONS(3878), - [anon_sym___extension__] = ACTIONS(3876), - [anon_sym_typedef] = ACTIONS(3876), - [anon_sym_virtual] = ACTIONS(3876), - [anon_sym_extern] = ACTIONS(3876), - [anon_sym___attribute__] = ACTIONS(3876), - [anon_sym___attribute] = ACTIONS(3876), - [anon_sym_using] = ACTIONS(3876), - [anon_sym_COLON_COLON] = ACTIONS(3878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), - [anon_sym___declspec] = ACTIONS(3876), - [anon_sym___based] = ACTIONS(3876), - [anon_sym_RBRACE] = ACTIONS(3878), - [anon_sym_signed] = ACTIONS(3876), - [anon_sym_unsigned] = ACTIONS(3876), - [anon_sym_long] = ACTIONS(3876), - [anon_sym_short] = ACTIONS(3876), - [anon_sym_LBRACK] = ACTIONS(3876), - [anon_sym_static] = ACTIONS(3876), - [anon_sym_register] = ACTIONS(3876), - [anon_sym_inline] = ACTIONS(3876), - [anon_sym___inline] = ACTIONS(3876), - [anon_sym___inline__] = ACTIONS(3876), - [anon_sym___forceinline] = ACTIONS(3876), - [anon_sym_thread_local] = ACTIONS(3876), - [anon_sym___thread] = ACTIONS(3876), - [anon_sym_const] = ACTIONS(3876), - [anon_sym_constexpr] = ACTIONS(3876), - [anon_sym_volatile] = ACTIONS(3876), - [anon_sym_restrict] = ACTIONS(3876), - [anon_sym___restrict__] = ACTIONS(3876), - [anon_sym__Atomic] = ACTIONS(3876), - [anon_sym__Noreturn] = ACTIONS(3876), - [anon_sym_noreturn] = ACTIONS(3876), - [anon_sym__Nonnull] = ACTIONS(3876), - [anon_sym_mutable] = ACTIONS(3876), - [anon_sym_constinit] = ACTIONS(3876), - [anon_sym_consteval] = ACTIONS(3876), - [anon_sym_alignas] = ACTIONS(3876), - [anon_sym__Alignas] = ACTIONS(3876), - [sym_primitive_type] = ACTIONS(3876), - [anon_sym_enum] = ACTIONS(3876), - [anon_sym_class] = ACTIONS(3876), - [anon_sym_struct] = ACTIONS(3876), - [anon_sym_union] = ACTIONS(3876), - [anon_sym_typename] = ACTIONS(3876), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3876), - [anon_sym_decltype] = ACTIONS(3876), - [anon_sym_explicit] = ACTIONS(3876), - [anon_sym_private] = ACTIONS(3876), - [anon_sym_template] = ACTIONS(3876), - [anon_sym_operator] = ACTIONS(3876), - [anon_sym_friend] = ACTIONS(3876), - [anon_sym_public] = ACTIONS(3876), - [anon_sym_protected] = ACTIONS(3876), - [anon_sym_static_assert] = ACTIONS(3876), - [anon_sym_LBRACK_COLON] = ACTIONS(3878), + [STATE(2821)] = { + [sym_identifier] = ACTIONS(4088), + [aux_sym_preproc_def_token1] = ACTIONS(4088), + [aux_sym_preproc_if_token1] = ACTIONS(4088), + [aux_sym_preproc_if_token2] = ACTIONS(4088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4088), + [aux_sym_preproc_else_token1] = ACTIONS(4088), + [aux_sym_preproc_elif_token1] = ACTIONS(4088), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4088), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4088), + [sym_preproc_directive] = ACTIONS(4088), + [anon_sym_LPAREN2] = ACTIONS(4090), + [anon_sym_TILDE] = ACTIONS(4090), + [anon_sym_STAR] = ACTIONS(4090), + [anon_sym_AMP_AMP] = ACTIONS(4090), + [anon_sym_AMP] = ACTIONS(4088), + [anon_sym_SEMI] = ACTIONS(4090), + [anon_sym___extension__] = ACTIONS(4088), + [anon_sym_typedef] = ACTIONS(4088), + [anon_sym_virtual] = ACTIONS(4088), + [anon_sym_extern] = ACTIONS(4088), + [anon_sym___attribute__] = ACTIONS(4088), + [anon_sym___attribute] = ACTIONS(4088), + [anon_sym_using] = ACTIONS(4088), + [anon_sym_COLON_COLON] = ACTIONS(4090), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4090), + [anon_sym___declspec] = ACTIONS(4088), + [anon_sym___based] = ACTIONS(4088), + [anon_sym_signed] = ACTIONS(4088), + [anon_sym_unsigned] = ACTIONS(4088), + [anon_sym_long] = ACTIONS(4088), + [anon_sym_short] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(4088), + [anon_sym_static] = ACTIONS(4088), + [anon_sym_register] = ACTIONS(4088), + [anon_sym_inline] = ACTIONS(4088), + [anon_sym___inline] = ACTIONS(4088), + [anon_sym___inline__] = ACTIONS(4088), + [anon_sym___forceinline] = ACTIONS(4088), + [anon_sym_thread_local] = ACTIONS(4088), + [anon_sym___thread] = ACTIONS(4088), + [anon_sym_const] = ACTIONS(4088), + [anon_sym_constexpr] = ACTIONS(4088), + [anon_sym_volatile] = ACTIONS(4088), + [anon_sym_restrict] = ACTIONS(4088), + [anon_sym___restrict__] = ACTIONS(4088), + [anon_sym__Atomic] = ACTIONS(4088), + [anon_sym__Noreturn] = ACTIONS(4088), + [anon_sym_noreturn] = ACTIONS(4088), + [anon_sym__Nonnull] = ACTIONS(4088), + [anon_sym_mutable] = ACTIONS(4088), + [anon_sym_constinit] = ACTIONS(4088), + [anon_sym_consteval] = ACTIONS(4088), + [anon_sym_alignas] = ACTIONS(4088), + [anon_sym__Alignas] = ACTIONS(4088), + [sym_primitive_type] = ACTIONS(4088), + [anon_sym_enum] = ACTIONS(4088), + [anon_sym_class] = ACTIONS(4088), + [anon_sym_struct] = ACTIONS(4088), + [anon_sym_union] = ACTIONS(4088), + [anon_sym_typename] = ACTIONS(4088), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4088), + [anon_sym_decltype] = ACTIONS(4088), + [anon_sym_explicit] = ACTIONS(4088), + [anon_sym_private] = ACTIONS(4088), + [anon_sym_template] = ACTIONS(4088), + [anon_sym_operator] = ACTIONS(4088), + [anon_sym_friend] = ACTIONS(4088), + [anon_sym_public] = ACTIONS(4088), + [anon_sym_protected] = ACTIONS(4088), + [anon_sym_static_assert] = ACTIONS(4088), + [anon_sym_LBRACK_COLON] = ACTIONS(4090), }, - [STATE(3229)] = { - [sym_identifier] = ACTIONS(4022), - [aux_sym_preproc_def_token1] = ACTIONS(4022), - [aux_sym_preproc_if_token1] = ACTIONS(4022), - [aux_sym_preproc_if_token2] = ACTIONS(4022), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4022), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4022), - [sym_preproc_directive] = ACTIONS(4022), - [anon_sym_LPAREN2] = ACTIONS(4024), - [anon_sym_TILDE] = ACTIONS(4024), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_AMP_AMP] = ACTIONS(4024), - [anon_sym_AMP] = ACTIONS(4022), - [anon_sym_SEMI] = ACTIONS(4024), - [anon_sym___extension__] = ACTIONS(4022), - [anon_sym_typedef] = ACTIONS(4022), - [anon_sym_virtual] = ACTIONS(4022), - [anon_sym_extern] = ACTIONS(4022), - [anon_sym___attribute__] = ACTIONS(4022), - [anon_sym___attribute] = ACTIONS(4022), - [anon_sym_using] = ACTIONS(4022), - [anon_sym_COLON_COLON] = ACTIONS(4024), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4024), - [anon_sym___declspec] = ACTIONS(4022), - [anon_sym___based] = ACTIONS(4022), - [anon_sym_signed] = ACTIONS(4022), - [anon_sym_unsigned] = ACTIONS(4022), - [anon_sym_long] = ACTIONS(4022), - [anon_sym_short] = ACTIONS(4022), - [anon_sym_LBRACK] = ACTIONS(4022), - [anon_sym_static] = ACTIONS(4022), - [anon_sym_register] = ACTIONS(4022), - [anon_sym_inline] = ACTIONS(4022), - [anon_sym___inline] = ACTIONS(4022), - [anon_sym___inline__] = ACTIONS(4022), - [anon_sym___forceinline] = ACTIONS(4022), - [anon_sym_thread_local] = ACTIONS(4022), - [anon_sym___thread] = ACTIONS(4022), - [anon_sym_const] = ACTIONS(4022), - [anon_sym_constexpr] = ACTIONS(4022), - [anon_sym_volatile] = ACTIONS(4022), - [anon_sym_restrict] = ACTIONS(4022), - [anon_sym___restrict__] = ACTIONS(4022), - [anon_sym__Atomic] = ACTIONS(4022), - [anon_sym__Noreturn] = ACTIONS(4022), - [anon_sym_noreturn] = ACTIONS(4022), - [anon_sym__Nonnull] = ACTIONS(4022), - [anon_sym_mutable] = ACTIONS(4022), - [anon_sym_constinit] = ACTIONS(4022), - [anon_sym_consteval] = ACTIONS(4022), - [anon_sym_alignas] = ACTIONS(4022), - [anon_sym__Alignas] = ACTIONS(4022), - [sym_primitive_type] = ACTIONS(4022), - [anon_sym_enum] = ACTIONS(4022), - [anon_sym_class] = ACTIONS(4022), - [anon_sym_struct] = ACTIONS(4022), - [anon_sym_union] = ACTIONS(4022), - [anon_sym_typename] = ACTIONS(4022), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4022), - [anon_sym_decltype] = ACTIONS(4022), - [anon_sym_explicit] = ACTIONS(4022), - [anon_sym_private] = ACTIONS(4022), - [anon_sym_template] = ACTIONS(4022), - [anon_sym_operator] = ACTIONS(4022), - [anon_sym_friend] = ACTIONS(4022), - [anon_sym_public] = ACTIONS(4022), - [anon_sym_protected] = ACTIONS(4022), - [anon_sym_static_assert] = ACTIONS(4022), - [anon_sym_LBRACK_COLON] = ACTIONS(4024), + [STATE(2822)] = { + [sym_identifier] = ACTIONS(3917), + [aux_sym_preproc_def_token1] = ACTIONS(3917), + [aux_sym_preproc_if_token1] = ACTIONS(3917), + [aux_sym_preproc_if_token2] = ACTIONS(3917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3917), + [aux_sym_preproc_else_token1] = ACTIONS(3917), + [aux_sym_preproc_elif_token1] = ACTIONS(3917), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3917), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3917), + [sym_preproc_directive] = ACTIONS(3917), + [anon_sym_LPAREN2] = ACTIONS(3919), + [anon_sym_TILDE] = ACTIONS(3919), + [anon_sym_STAR] = ACTIONS(3919), + [anon_sym_AMP_AMP] = ACTIONS(3919), + [anon_sym_AMP] = ACTIONS(3917), + [anon_sym_SEMI] = ACTIONS(3919), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_typedef] = ACTIONS(3917), + [anon_sym_virtual] = ACTIONS(3917), + [anon_sym_extern] = ACTIONS(3917), + [anon_sym___attribute__] = ACTIONS(3917), + [anon_sym___attribute] = ACTIONS(3917), + [anon_sym_using] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(3919), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3919), + [anon_sym___declspec] = ACTIONS(3917), + [anon_sym___based] = ACTIONS(3917), + [anon_sym_signed] = ACTIONS(3917), + [anon_sym_unsigned] = ACTIONS(3917), + [anon_sym_long] = ACTIONS(3917), + [anon_sym_short] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(3917), + [anon_sym_static] = ACTIONS(3917), + [anon_sym_register] = ACTIONS(3917), + [anon_sym_inline] = ACTIONS(3917), + [anon_sym___inline] = ACTIONS(3917), + [anon_sym___inline__] = ACTIONS(3917), + [anon_sym___forceinline] = ACTIONS(3917), + [anon_sym_thread_local] = ACTIONS(3917), + [anon_sym___thread] = ACTIONS(3917), + [anon_sym_const] = ACTIONS(3917), + [anon_sym_constexpr] = ACTIONS(3917), + [anon_sym_volatile] = ACTIONS(3917), + [anon_sym_restrict] = ACTIONS(3917), + [anon_sym___restrict__] = ACTIONS(3917), + [anon_sym__Atomic] = ACTIONS(3917), + [anon_sym__Noreturn] = ACTIONS(3917), + [anon_sym_noreturn] = ACTIONS(3917), + [anon_sym__Nonnull] = ACTIONS(3917), + [anon_sym_mutable] = ACTIONS(3917), + [anon_sym_constinit] = ACTIONS(3917), + [anon_sym_consteval] = ACTIONS(3917), + [anon_sym_alignas] = ACTIONS(3917), + [anon_sym__Alignas] = ACTIONS(3917), + [sym_primitive_type] = ACTIONS(3917), + [anon_sym_enum] = ACTIONS(3917), + [anon_sym_class] = ACTIONS(3917), + [anon_sym_struct] = ACTIONS(3917), + [anon_sym_union] = ACTIONS(3917), + [anon_sym_typename] = ACTIONS(3917), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3917), + [anon_sym_decltype] = ACTIONS(3917), + [anon_sym_explicit] = ACTIONS(3917), + [anon_sym_private] = ACTIONS(3917), + [anon_sym_template] = ACTIONS(3917), + [anon_sym_operator] = ACTIONS(3917), + [anon_sym_friend] = ACTIONS(3917), + [anon_sym_public] = ACTIONS(3917), + [anon_sym_protected] = ACTIONS(3917), + [anon_sym_static_assert] = ACTIONS(3917), + [anon_sym_LBRACK_COLON] = ACTIONS(3919), }, - [STATE(3230)] = { - [sym_identifier] = ACTIONS(4026), - [aux_sym_preproc_def_token1] = ACTIONS(4026), - [aux_sym_preproc_if_token1] = ACTIONS(4026), - [aux_sym_preproc_if_token2] = ACTIONS(4026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4026), - [sym_preproc_directive] = ACTIONS(4026), - [anon_sym_LPAREN2] = ACTIONS(4028), - [anon_sym_TILDE] = ACTIONS(4028), - [anon_sym_STAR] = ACTIONS(4028), - [anon_sym_AMP_AMP] = ACTIONS(4028), - [anon_sym_AMP] = ACTIONS(4026), - [anon_sym_SEMI] = ACTIONS(4028), - [anon_sym___extension__] = ACTIONS(4026), - [anon_sym_typedef] = ACTIONS(4026), - [anon_sym_virtual] = ACTIONS(4026), - [anon_sym_extern] = ACTIONS(4026), - [anon_sym___attribute__] = ACTIONS(4026), - [anon_sym___attribute] = ACTIONS(4026), - [anon_sym_using] = ACTIONS(4026), - [anon_sym_COLON_COLON] = ACTIONS(4028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4028), - [anon_sym___declspec] = ACTIONS(4026), - [anon_sym___based] = ACTIONS(4026), - [anon_sym_signed] = ACTIONS(4026), - [anon_sym_unsigned] = ACTIONS(4026), - [anon_sym_long] = ACTIONS(4026), - [anon_sym_short] = ACTIONS(4026), - [anon_sym_LBRACK] = ACTIONS(4026), - [anon_sym_static] = ACTIONS(4026), - [anon_sym_register] = ACTIONS(4026), - [anon_sym_inline] = ACTIONS(4026), - [anon_sym___inline] = ACTIONS(4026), - [anon_sym___inline__] = ACTIONS(4026), - [anon_sym___forceinline] = ACTIONS(4026), - [anon_sym_thread_local] = ACTIONS(4026), - [anon_sym___thread] = ACTIONS(4026), - [anon_sym_const] = ACTIONS(4026), - [anon_sym_constexpr] = ACTIONS(4026), - [anon_sym_volatile] = ACTIONS(4026), - [anon_sym_restrict] = ACTIONS(4026), - [anon_sym___restrict__] = ACTIONS(4026), - [anon_sym__Atomic] = ACTIONS(4026), - [anon_sym__Noreturn] = ACTIONS(4026), - [anon_sym_noreturn] = ACTIONS(4026), - [anon_sym__Nonnull] = ACTIONS(4026), - [anon_sym_mutable] = ACTIONS(4026), - [anon_sym_constinit] = ACTIONS(4026), - [anon_sym_consteval] = ACTIONS(4026), - [anon_sym_alignas] = ACTIONS(4026), - [anon_sym__Alignas] = ACTIONS(4026), - [sym_primitive_type] = ACTIONS(4026), - [anon_sym_enum] = ACTIONS(4026), - [anon_sym_class] = ACTIONS(4026), - [anon_sym_struct] = ACTIONS(4026), - [anon_sym_union] = ACTIONS(4026), - [anon_sym_typename] = ACTIONS(4026), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4026), - [anon_sym_decltype] = ACTIONS(4026), - [anon_sym_explicit] = ACTIONS(4026), - [anon_sym_private] = ACTIONS(4026), - [anon_sym_template] = ACTIONS(4026), - [anon_sym_operator] = ACTIONS(4026), - [anon_sym_friend] = ACTIONS(4026), - [anon_sym_public] = ACTIONS(4026), - [anon_sym_protected] = ACTIONS(4026), - [anon_sym_static_assert] = ACTIONS(4026), - [anon_sym_LBRACK_COLON] = ACTIONS(4028), + [STATE(2823)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7649), + [anon_sym_COMMA] = ACTIONS(7649), + [anon_sym_RPAREN] = ACTIONS(7649), + [anon_sym_LPAREN2] = ACTIONS(7649), + [anon_sym_DASH] = ACTIONS(7647), + [anon_sym_PLUS] = ACTIONS(7647), + [anon_sym_STAR] = ACTIONS(7647), + [anon_sym_SLASH] = ACTIONS(7647), + [anon_sym_PERCENT] = ACTIONS(7647), + [anon_sym_PIPE_PIPE] = ACTIONS(7649), + [anon_sym_AMP_AMP] = ACTIONS(7649), + [anon_sym_PIPE] = ACTIONS(7647), + [anon_sym_CARET] = ACTIONS(7647), + [anon_sym_AMP] = ACTIONS(7647), + [anon_sym_EQ_EQ] = ACTIONS(7649), + [anon_sym_BANG_EQ] = ACTIONS(7649), + [anon_sym_GT] = ACTIONS(7647), + [anon_sym_GT_EQ] = ACTIONS(7649), + [anon_sym_LT_EQ] = ACTIONS(7647), + [anon_sym_LT] = ACTIONS(7647), + [anon_sym_LT_LT] = ACTIONS(7647), + [anon_sym_GT_GT] = ACTIONS(7647), + [anon_sym___extension__] = ACTIONS(7649), + [anon_sym___attribute__] = ACTIONS(7649), + [anon_sym___attribute] = ACTIONS(7647), + [anon_sym_LBRACE] = ACTIONS(7649), + [anon_sym_LBRACK] = ACTIONS(7649), + [anon_sym_EQ] = ACTIONS(7647), + [anon_sym_const] = ACTIONS(7647), + [anon_sym_constexpr] = ACTIONS(7649), + [anon_sym_volatile] = ACTIONS(7649), + [anon_sym_restrict] = ACTIONS(7649), + [anon_sym___restrict__] = ACTIONS(7649), + [anon_sym__Atomic] = ACTIONS(7649), + [anon_sym__Noreturn] = ACTIONS(7649), + [anon_sym_noreturn] = ACTIONS(7649), + [anon_sym__Nonnull] = ACTIONS(7649), + [anon_sym_mutable] = ACTIONS(7649), + [anon_sym_constinit] = ACTIONS(7649), + [anon_sym_consteval] = ACTIONS(7649), + [anon_sym_alignas] = ACTIONS(7649), + [anon_sym__Alignas] = ACTIONS(7649), + [anon_sym_QMARK] = ACTIONS(7649), + [anon_sym_STAR_EQ] = ACTIONS(7649), + [anon_sym_SLASH_EQ] = ACTIONS(7649), + [anon_sym_PERCENT_EQ] = ACTIONS(7649), + [anon_sym_PLUS_EQ] = ACTIONS(7649), + [anon_sym_DASH_EQ] = ACTIONS(7649), + [anon_sym_LT_LT_EQ] = ACTIONS(7649), + [anon_sym_GT_GT_EQ] = ACTIONS(7649), + [anon_sym_AMP_EQ] = ACTIONS(7649), + [anon_sym_CARET_EQ] = ACTIONS(7649), + [anon_sym_PIPE_EQ] = ACTIONS(7649), + [anon_sym_and_eq] = ACTIONS(7649), + [anon_sym_or_eq] = ACTIONS(7649), + [anon_sym_xor_eq] = ACTIONS(7649), + [anon_sym_LT_EQ_GT] = ACTIONS(7649), + [anon_sym_or] = ACTIONS(7647), + [anon_sym_and] = ACTIONS(7647), + [anon_sym_bitor] = ACTIONS(7649), + [anon_sym_xor] = ACTIONS(7647), + [anon_sym_bitand] = ACTIONS(7649), + [anon_sym_not_eq] = ACTIONS(7649), + [anon_sym_DASH_DASH] = ACTIONS(7649), + [anon_sym_PLUS_PLUS] = ACTIONS(7649), + [anon_sym_DOT] = ACTIONS(7647), + [anon_sym_DOT_STAR] = ACTIONS(7649), + [anon_sym_DASH_GT] = ACTIONS(7647), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7649), + [anon_sym_override] = ACTIONS(7649), + [anon_sym_requires] = ACTIONS(7649), + [anon_sym_DASH_GT_STAR] = ACTIONS(7649), }, - [STATE(3231)] = { - [sym_identifier] = ACTIONS(8378), - [aux_sym_preproc_def_token1] = ACTIONS(8378), - [aux_sym_preproc_if_token1] = ACTIONS(8378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8378), - [sym_preproc_directive] = ACTIONS(8378), - [anon_sym_LPAREN2] = ACTIONS(8380), - [anon_sym_TILDE] = ACTIONS(8380), - [anon_sym_STAR] = ACTIONS(8380), - [anon_sym_AMP_AMP] = ACTIONS(8380), - [anon_sym_AMP] = ACTIONS(8378), - [anon_sym_SEMI] = ACTIONS(8380), - [anon_sym___extension__] = ACTIONS(8378), - [anon_sym_typedef] = ACTIONS(8378), - [anon_sym_virtual] = ACTIONS(8378), - [anon_sym_extern] = ACTIONS(8378), - [anon_sym___attribute__] = ACTIONS(8378), - [anon_sym___attribute] = ACTIONS(8378), - [anon_sym_using] = ACTIONS(8378), - [anon_sym_COLON_COLON] = ACTIONS(8380), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8380), - [anon_sym___declspec] = ACTIONS(8378), - [anon_sym___based] = ACTIONS(8378), - [anon_sym_RBRACE] = ACTIONS(8380), - [anon_sym_signed] = ACTIONS(8378), - [anon_sym_unsigned] = ACTIONS(8378), - [anon_sym_long] = ACTIONS(8378), - [anon_sym_short] = ACTIONS(8378), - [anon_sym_LBRACK] = ACTIONS(8378), - [anon_sym_static] = ACTIONS(8378), - [anon_sym_register] = ACTIONS(8378), - [anon_sym_inline] = ACTIONS(8378), - [anon_sym___inline] = ACTIONS(8378), - [anon_sym___inline__] = ACTIONS(8378), - [anon_sym___forceinline] = ACTIONS(8378), - [anon_sym_thread_local] = ACTIONS(8378), - [anon_sym___thread] = ACTIONS(8378), - [anon_sym_const] = ACTIONS(8378), - [anon_sym_constexpr] = ACTIONS(8378), - [anon_sym_volatile] = ACTIONS(8378), - [anon_sym_restrict] = ACTIONS(8378), - [anon_sym___restrict__] = ACTIONS(8378), - [anon_sym__Atomic] = ACTIONS(8378), - [anon_sym__Noreturn] = ACTIONS(8378), - [anon_sym_noreturn] = ACTIONS(8378), - [anon_sym__Nonnull] = ACTIONS(8378), - [anon_sym_mutable] = ACTIONS(8378), - [anon_sym_constinit] = ACTIONS(8378), - [anon_sym_consteval] = ACTIONS(8378), - [anon_sym_alignas] = ACTIONS(8378), - [anon_sym__Alignas] = ACTIONS(8378), - [sym_primitive_type] = ACTIONS(8378), - [anon_sym_enum] = ACTIONS(8378), - [anon_sym_class] = ACTIONS(8378), - [anon_sym_struct] = ACTIONS(8378), - [anon_sym_union] = ACTIONS(8378), - [anon_sym_typename] = ACTIONS(8378), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8378), - [anon_sym_decltype] = ACTIONS(8378), - [anon_sym_explicit] = ACTIONS(8378), - [anon_sym_private] = ACTIONS(8378), - [anon_sym_template] = ACTIONS(8378), - [anon_sym_operator] = ACTIONS(8378), - [anon_sym_friend] = ACTIONS(8378), - [anon_sym_public] = ACTIONS(8378), - [anon_sym_protected] = ACTIONS(8378), - [anon_sym_static_assert] = ACTIONS(8378), - [anon_sym_LBRACK_COLON] = ACTIONS(8380), + [STATE(2824)] = { + [sym_attribute_specifier] = STATE(3132), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7433), + [anon_sym_COMMA] = ACTIONS(7433), + [anon_sym_LPAREN2] = ACTIONS(7433), + [anon_sym_DASH] = ACTIONS(7431), + [anon_sym_PLUS] = ACTIONS(7431), + [anon_sym_STAR] = ACTIONS(7431), + [anon_sym_SLASH] = ACTIONS(7431), + [anon_sym_PERCENT] = ACTIONS(7431), + [anon_sym_PIPE_PIPE] = ACTIONS(7433), + [anon_sym_AMP_AMP] = ACTIONS(7433), + [anon_sym_PIPE] = ACTIONS(7431), + [anon_sym_CARET] = ACTIONS(7431), + [anon_sym_AMP] = ACTIONS(7431), + [anon_sym_EQ_EQ] = ACTIONS(7433), + [anon_sym_BANG_EQ] = ACTIONS(7433), + [anon_sym_GT] = ACTIONS(7431), + [anon_sym_GT_EQ] = ACTIONS(7431), + [anon_sym_LT_EQ] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7431), + [anon_sym_LT_LT] = ACTIONS(7431), + [anon_sym_GT_GT] = ACTIONS(7431), + [anon_sym___extension__] = ACTIONS(7433), + [anon_sym___attribute__] = ACTIONS(8265), + [anon_sym___attribute] = ACTIONS(8267), + [anon_sym_LBRACE] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(7433), + [anon_sym_EQ] = ACTIONS(7431), + [anon_sym_const] = ACTIONS(7431), + [anon_sym_constexpr] = ACTIONS(7433), + [anon_sym_volatile] = ACTIONS(7433), + [anon_sym_restrict] = ACTIONS(7433), + [anon_sym___restrict__] = ACTIONS(7433), + [anon_sym__Atomic] = ACTIONS(7433), + [anon_sym__Noreturn] = ACTIONS(7433), + [anon_sym_noreturn] = ACTIONS(7433), + [anon_sym__Nonnull] = ACTIONS(7433), + [anon_sym_mutable] = ACTIONS(7433), + [anon_sym_constinit] = ACTIONS(7433), + [anon_sym_consteval] = ACTIONS(7433), + [anon_sym_alignas] = ACTIONS(7433), + [anon_sym__Alignas] = ACTIONS(7433), + [anon_sym_QMARK] = ACTIONS(7433), + [anon_sym_STAR_EQ] = ACTIONS(7433), + [anon_sym_SLASH_EQ] = ACTIONS(7433), + [anon_sym_PERCENT_EQ] = ACTIONS(7433), + [anon_sym_PLUS_EQ] = ACTIONS(7433), + [anon_sym_DASH_EQ] = ACTIONS(7433), + [anon_sym_LT_LT_EQ] = ACTIONS(7433), + [anon_sym_GT_GT_EQ] = ACTIONS(7431), + [anon_sym_AMP_EQ] = ACTIONS(7433), + [anon_sym_CARET_EQ] = ACTIONS(7433), + [anon_sym_PIPE_EQ] = ACTIONS(7433), + [anon_sym_and_eq] = ACTIONS(7433), + [anon_sym_or_eq] = ACTIONS(7433), + [anon_sym_xor_eq] = ACTIONS(7433), + [anon_sym_LT_EQ_GT] = ACTIONS(7433), + [anon_sym_or] = ACTIONS(7431), + [anon_sym_and] = ACTIONS(7431), + [anon_sym_bitor] = ACTIONS(7433), + [anon_sym_xor] = ACTIONS(7431), + [anon_sym_bitand] = ACTIONS(7433), + [anon_sym_not_eq] = ACTIONS(7433), + [anon_sym_DASH_DASH] = ACTIONS(7433), + [anon_sym_PLUS_PLUS] = ACTIONS(7433), + [anon_sym_DOT] = ACTIONS(7431), + [anon_sym_DOT_STAR] = ACTIONS(7433), + [anon_sym_DASH_GT] = ACTIONS(7433), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7433), + [anon_sym_override] = ACTIONS(7433), + [anon_sym_GT2] = ACTIONS(7433), + [anon_sym_requires] = ACTIONS(7433), }, - [STATE(3232)] = { - [sym_identifier] = ACTIONS(3876), - [aux_sym_preproc_def_token1] = ACTIONS(3876), - [aux_sym_preproc_if_token1] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), - [sym_preproc_directive] = ACTIONS(3876), - [anon_sym_LPAREN2] = ACTIONS(3878), - [anon_sym_TILDE] = ACTIONS(3878), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_AMP_AMP] = ACTIONS(3878), - [anon_sym_AMP] = ACTIONS(3876), - [anon_sym_SEMI] = ACTIONS(3878), - [anon_sym___extension__] = ACTIONS(3876), - [anon_sym_typedef] = ACTIONS(3876), - [anon_sym_virtual] = ACTIONS(3876), - [anon_sym_extern] = ACTIONS(3876), - [anon_sym___attribute__] = ACTIONS(3876), - [anon_sym___attribute] = ACTIONS(3876), - [anon_sym_using] = ACTIONS(3876), - [anon_sym_COLON_COLON] = ACTIONS(3878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), - [anon_sym___declspec] = ACTIONS(3876), - [anon_sym___based] = ACTIONS(3876), - [anon_sym_RBRACE] = ACTIONS(3878), - [anon_sym_signed] = ACTIONS(3876), - [anon_sym_unsigned] = ACTIONS(3876), - [anon_sym_long] = ACTIONS(3876), - [anon_sym_short] = ACTIONS(3876), - [anon_sym_LBRACK] = ACTIONS(3876), - [anon_sym_static] = ACTIONS(3876), - [anon_sym_register] = ACTIONS(3876), - [anon_sym_inline] = ACTIONS(3876), - [anon_sym___inline] = ACTIONS(3876), - [anon_sym___inline__] = ACTIONS(3876), - [anon_sym___forceinline] = ACTIONS(3876), - [anon_sym_thread_local] = ACTIONS(3876), - [anon_sym___thread] = ACTIONS(3876), - [anon_sym_const] = ACTIONS(3876), - [anon_sym_constexpr] = ACTIONS(3876), - [anon_sym_volatile] = ACTIONS(3876), - [anon_sym_restrict] = ACTIONS(3876), - [anon_sym___restrict__] = ACTIONS(3876), - [anon_sym__Atomic] = ACTIONS(3876), - [anon_sym__Noreturn] = ACTIONS(3876), - [anon_sym_noreturn] = ACTIONS(3876), - [anon_sym__Nonnull] = ACTIONS(3876), - [anon_sym_mutable] = ACTIONS(3876), - [anon_sym_constinit] = ACTIONS(3876), - [anon_sym_consteval] = ACTIONS(3876), - [anon_sym_alignas] = ACTIONS(3876), - [anon_sym__Alignas] = ACTIONS(3876), - [sym_primitive_type] = ACTIONS(3876), - [anon_sym_enum] = ACTIONS(3876), - [anon_sym_class] = ACTIONS(3876), - [anon_sym_struct] = ACTIONS(3876), - [anon_sym_union] = ACTIONS(3876), - [anon_sym_typename] = ACTIONS(3876), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3876), - [anon_sym_decltype] = ACTIONS(3876), - [anon_sym_explicit] = ACTIONS(3876), - [anon_sym_private] = ACTIONS(3876), - [anon_sym_template] = ACTIONS(3876), - [anon_sym_operator] = ACTIONS(3876), - [anon_sym_friend] = ACTIONS(3876), - [anon_sym_public] = ACTIONS(3876), - [anon_sym_protected] = ACTIONS(3876), - [anon_sym_static_assert] = ACTIONS(3876), - [anon_sym_LBRACK_COLON] = ACTIONS(3878), + [STATE(2825)] = { + [sym_attribute_specifier] = STATE(3088), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7523), + [anon_sym_COMMA] = ACTIONS(7523), + [anon_sym_LPAREN2] = ACTIONS(7523), + [anon_sym_DASH] = ACTIONS(7521), + [anon_sym_PLUS] = ACTIONS(7521), + [anon_sym_STAR] = ACTIONS(7521), + [anon_sym_SLASH] = ACTIONS(7521), + [anon_sym_PERCENT] = ACTIONS(7521), + [anon_sym_PIPE_PIPE] = ACTIONS(7523), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE] = ACTIONS(7521), + [anon_sym_CARET] = ACTIONS(7521), + [anon_sym_AMP] = ACTIONS(7521), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_GT] = ACTIONS(7521), + [anon_sym_GT_EQ] = ACTIONS(7521), + [anon_sym_LT_EQ] = ACTIONS(7521), + [anon_sym_LT] = ACTIONS(7521), + [anon_sym_LT_LT] = ACTIONS(7521), + [anon_sym_GT_GT] = ACTIONS(7521), + [anon_sym___extension__] = ACTIONS(7523), + [anon_sym___attribute__] = ACTIONS(8265), + [anon_sym___attribute] = ACTIONS(8267), + [anon_sym_LBRACE] = ACTIONS(7523), + [anon_sym_LBRACK] = ACTIONS(7523), + [anon_sym_EQ] = ACTIONS(7521), + [anon_sym_const] = ACTIONS(7521), + [anon_sym_constexpr] = ACTIONS(7523), + [anon_sym_volatile] = ACTIONS(7523), + [anon_sym_restrict] = ACTIONS(7523), + [anon_sym___restrict__] = ACTIONS(7523), + [anon_sym__Atomic] = ACTIONS(7523), + [anon_sym__Noreturn] = ACTIONS(7523), + [anon_sym_noreturn] = ACTIONS(7523), + [anon_sym__Nonnull] = ACTIONS(7523), + [anon_sym_mutable] = ACTIONS(7523), + [anon_sym_constinit] = ACTIONS(7523), + [anon_sym_consteval] = ACTIONS(7523), + [anon_sym_alignas] = ACTIONS(7523), + [anon_sym__Alignas] = ACTIONS(7523), + [anon_sym_QMARK] = ACTIONS(7523), + [anon_sym_STAR_EQ] = ACTIONS(7523), + [anon_sym_SLASH_EQ] = ACTIONS(7523), + [anon_sym_PERCENT_EQ] = ACTIONS(7523), + [anon_sym_PLUS_EQ] = ACTIONS(7523), + [anon_sym_DASH_EQ] = ACTIONS(7523), + [anon_sym_LT_LT_EQ] = ACTIONS(7523), + [anon_sym_GT_GT_EQ] = ACTIONS(7521), + [anon_sym_AMP_EQ] = ACTIONS(7523), + [anon_sym_CARET_EQ] = ACTIONS(7523), + [anon_sym_PIPE_EQ] = ACTIONS(7523), + [anon_sym_and_eq] = ACTIONS(7523), + [anon_sym_or_eq] = ACTIONS(7523), + [anon_sym_xor_eq] = ACTIONS(7523), + [anon_sym_LT_EQ_GT] = ACTIONS(7523), + [anon_sym_or] = ACTIONS(7521), + [anon_sym_and] = ACTIONS(7521), + [anon_sym_bitor] = ACTIONS(7523), + [anon_sym_xor] = ACTIONS(7521), + [anon_sym_bitand] = ACTIONS(7523), + [anon_sym_not_eq] = ACTIONS(7523), + [anon_sym_DASH_DASH] = ACTIONS(7523), + [anon_sym_PLUS_PLUS] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(7521), + [anon_sym_DOT_STAR] = ACTIONS(7523), + [anon_sym_DASH_GT] = ACTIONS(7523), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7523), + [anon_sym_override] = ACTIONS(7523), + [anon_sym_GT2] = ACTIONS(7523), + [anon_sym_requires] = ACTIONS(7523), }, - [STATE(3233)] = { - [sym_attribute_specifier] = STATE(4247), - [sym_attribute_declaration] = STATE(4729), - [sym_gnu_asm_expression] = STATE(8972), - [sym_virtual_specifier] = STATE(4992), - [sym__function_attributes_end] = STATE(4514), - [sym__function_postfix] = STATE(5603), - [sym_trailing_return_type] = STATE(4604), - [sym_requires_clause] = STATE(5603), - [aux_sym_type_definition_repeat1] = STATE(4247), - [aux_sym_attributed_declarator_repeat1] = STATE(4729), - [aux_sym__function_postfix_repeat1] = STATE(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), - [anon_sym_COMMA] = ACTIONS(8089), - [anon_sym_RPAREN] = ACTIONS(8089), - [anon_sym_LPAREN2] = ACTIONS(8089), - [anon_sym_DASH] = ACTIONS(8087), - [anon_sym_PLUS] = ACTIONS(8087), - [anon_sym_STAR] = ACTIONS(8087), - [anon_sym_SLASH] = ACTIONS(8087), - [anon_sym_PERCENT] = ACTIONS(8087), - [anon_sym_PIPE_PIPE] = ACTIONS(8089), - [anon_sym_AMP_AMP] = ACTIONS(8089), - [anon_sym_PIPE] = ACTIONS(8087), - [anon_sym_CARET] = ACTIONS(8087), - [anon_sym_AMP] = ACTIONS(8087), - [anon_sym_EQ_EQ] = ACTIONS(8089), - [anon_sym_BANG_EQ] = ACTIONS(8089), - [anon_sym_GT] = ACTIONS(8087), - [anon_sym_GT_EQ] = ACTIONS(8089), - [anon_sym_LT_EQ] = ACTIONS(8087), - [anon_sym_LT] = ACTIONS(8087), - [anon_sym_LT_LT] = ACTIONS(8087), - [anon_sym_GT_GT] = ACTIONS(8087), - [anon_sym___attribute__] = ACTIONS(6410), - [anon_sym___attribute] = ACTIONS(6412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), - [anon_sym_LBRACK] = ACTIONS(8087), - [anon_sym_EQ] = ACTIONS(8087), - [anon_sym_QMARK] = ACTIONS(8089), - [anon_sym_STAR_EQ] = ACTIONS(8089), - [anon_sym_SLASH_EQ] = ACTIONS(8089), - [anon_sym_PERCENT_EQ] = ACTIONS(8089), - [anon_sym_PLUS_EQ] = ACTIONS(8089), - [anon_sym_DASH_EQ] = ACTIONS(8089), - [anon_sym_LT_LT_EQ] = ACTIONS(8089), - [anon_sym_GT_GT_EQ] = ACTIONS(8089), - [anon_sym_AMP_EQ] = ACTIONS(8089), - [anon_sym_CARET_EQ] = ACTIONS(8089), - [anon_sym_PIPE_EQ] = ACTIONS(8089), - [anon_sym_LT_EQ_GT] = ACTIONS(8089), - [anon_sym_or] = ACTIONS(8089), - [anon_sym_and] = ACTIONS(8089), - [anon_sym_bitor] = ACTIONS(8089), - [anon_sym_xor] = ACTIONS(8089), - [anon_sym_bitand] = ACTIONS(8089), - [anon_sym_not_eq] = ACTIONS(8089), - [anon_sym_DASH_DASH] = ACTIONS(8089), - [anon_sym_PLUS_PLUS] = ACTIONS(8089), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(8087), - [anon_sym_DOT_STAR] = ACTIONS(8089), - [anon_sym_DASH_GT] = ACTIONS(8762), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8765), - [anon_sym_override] = ACTIONS(8765), - [anon_sym_requires] = ACTIONS(8768), - [anon_sym_DASH_GT_STAR] = ACTIONS(8089), + [STATE(2826)] = { + [sym_attribute_specifier] = STATE(3098), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7533), + [anon_sym_COMMA] = ACTIONS(7533), + [anon_sym_LPAREN2] = ACTIONS(7533), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_STAR] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7531), + [anon_sym_PERCENT] = ACTIONS(7531), + [anon_sym_PIPE_PIPE] = ACTIONS(7533), + [anon_sym_AMP_AMP] = ACTIONS(7533), + [anon_sym_PIPE] = ACTIONS(7531), + [anon_sym_CARET] = ACTIONS(7531), + [anon_sym_AMP] = ACTIONS(7531), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_GT] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7531), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_LT] = ACTIONS(7531), + [anon_sym_LT_LT] = ACTIONS(7531), + [anon_sym_GT_GT] = ACTIONS(7531), + [anon_sym___extension__] = ACTIONS(7533), + [anon_sym___attribute__] = ACTIONS(8265), + [anon_sym___attribute] = ACTIONS(8267), + [anon_sym_LBRACE] = ACTIONS(7533), + [anon_sym_LBRACK] = ACTIONS(7533), + [anon_sym_EQ] = ACTIONS(7531), + [anon_sym_const] = ACTIONS(7531), + [anon_sym_constexpr] = ACTIONS(7533), + [anon_sym_volatile] = ACTIONS(7533), + [anon_sym_restrict] = ACTIONS(7533), + [anon_sym___restrict__] = ACTIONS(7533), + [anon_sym__Atomic] = ACTIONS(7533), + [anon_sym__Noreturn] = ACTIONS(7533), + [anon_sym_noreturn] = ACTIONS(7533), + [anon_sym__Nonnull] = ACTIONS(7533), + [anon_sym_mutable] = ACTIONS(7533), + [anon_sym_constinit] = ACTIONS(7533), + [anon_sym_consteval] = ACTIONS(7533), + [anon_sym_alignas] = ACTIONS(7533), + [anon_sym__Alignas] = ACTIONS(7533), + [anon_sym_QMARK] = ACTIONS(7533), + [anon_sym_STAR_EQ] = ACTIONS(7533), + [anon_sym_SLASH_EQ] = ACTIONS(7533), + [anon_sym_PERCENT_EQ] = ACTIONS(7533), + [anon_sym_PLUS_EQ] = ACTIONS(7533), + [anon_sym_DASH_EQ] = ACTIONS(7533), + [anon_sym_LT_LT_EQ] = ACTIONS(7533), + [anon_sym_GT_GT_EQ] = ACTIONS(7531), + [anon_sym_AMP_EQ] = ACTIONS(7533), + [anon_sym_CARET_EQ] = ACTIONS(7533), + [anon_sym_PIPE_EQ] = ACTIONS(7533), + [anon_sym_and_eq] = ACTIONS(7533), + [anon_sym_or_eq] = ACTIONS(7533), + [anon_sym_xor_eq] = ACTIONS(7533), + [anon_sym_LT_EQ_GT] = ACTIONS(7533), + [anon_sym_or] = ACTIONS(7531), + [anon_sym_and] = ACTIONS(7531), + [anon_sym_bitor] = ACTIONS(7533), + [anon_sym_xor] = ACTIONS(7531), + [anon_sym_bitand] = ACTIONS(7533), + [anon_sym_not_eq] = ACTIONS(7533), + [anon_sym_DASH_DASH] = ACTIONS(7533), + [anon_sym_PLUS_PLUS] = ACTIONS(7533), + [anon_sym_DOT] = ACTIONS(7531), + [anon_sym_DOT_STAR] = ACTIONS(7533), + [anon_sym_DASH_GT] = ACTIONS(7533), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7533), + [anon_sym_override] = ACTIONS(7533), + [anon_sym_GT2] = ACTIONS(7533), + [anon_sym_requires] = ACTIONS(7533), }, - [STATE(3234)] = { - [sym_identifier] = ACTIONS(8396), - [aux_sym_preproc_def_token1] = ACTIONS(8396), - [aux_sym_preproc_if_token1] = ACTIONS(8396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8396), - [sym_preproc_directive] = ACTIONS(8396), - [anon_sym_LPAREN2] = ACTIONS(8398), - [anon_sym_TILDE] = ACTIONS(8398), - [anon_sym_STAR] = ACTIONS(8398), - [anon_sym_AMP_AMP] = ACTIONS(8398), - [anon_sym_AMP] = ACTIONS(8396), - [anon_sym_SEMI] = ACTIONS(8398), - [anon_sym___extension__] = ACTIONS(8396), - [anon_sym_typedef] = ACTIONS(8396), - [anon_sym_virtual] = ACTIONS(8396), - [anon_sym_extern] = ACTIONS(8396), - [anon_sym___attribute__] = ACTIONS(8396), - [anon_sym___attribute] = ACTIONS(8396), - [anon_sym_using] = ACTIONS(8396), - [anon_sym_COLON_COLON] = ACTIONS(8398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8398), - [anon_sym___declspec] = ACTIONS(8396), - [anon_sym___based] = ACTIONS(8396), - [anon_sym_RBRACE] = ACTIONS(8398), - [anon_sym_signed] = ACTIONS(8396), - [anon_sym_unsigned] = ACTIONS(8396), - [anon_sym_long] = ACTIONS(8396), - [anon_sym_short] = ACTIONS(8396), - [anon_sym_LBRACK] = ACTIONS(8396), - [anon_sym_static] = ACTIONS(8396), - [anon_sym_register] = ACTIONS(8396), - [anon_sym_inline] = ACTIONS(8396), - [anon_sym___inline] = ACTIONS(8396), - [anon_sym___inline__] = ACTIONS(8396), - [anon_sym___forceinline] = ACTIONS(8396), - [anon_sym_thread_local] = ACTIONS(8396), - [anon_sym___thread] = ACTIONS(8396), - [anon_sym_const] = ACTIONS(8396), - [anon_sym_constexpr] = ACTIONS(8396), - [anon_sym_volatile] = ACTIONS(8396), - [anon_sym_restrict] = ACTIONS(8396), - [anon_sym___restrict__] = ACTIONS(8396), - [anon_sym__Atomic] = ACTIONS(8396), - [anon_sym__Noreturn] = ACTIONS(8396), - [anon_sym_noreturn] = ACTIONS(8396), - [anon_sym__Nonnull] = ACTIONS(8396), - [anon_sym_mutable] = ACTIONS(8396), - [anon_sym_constinit] = ACTIONS(8396), - [anon_sym_consteval] = ACTIONS(8396), - [anon_sym_alignas] = ACTIONS(8396), - [anon_sym__Alignas] = ACTIONS(8396), - [sym_primitive_type] = ACTIONS(8396), - [anon_sym_enum] = ACTIONS(8396), - [anon_sym_class] = ACTIONS(8396), - [anon_sym_struct] = ACTIONS(8396), - [anon_sym_union] = ACTIONS(8396), - [anon_sym_typename] = ACTIONS(8396), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8396), - [anon_sym_decltype] = ACTIONS(8396), - [anon_sym_explicit] = ACTIONS(8396), - [anon_sym_private] = ACTIONS(8396), - [anon_sym_template] = ACTIONS(8396), - [anon_sym_operator] = ACTIONS(8396), - [anon_sym_friend] = ACTIONS(8396), - [anon_sym_public] = ACTIONS(8396), - [anon_sym_protected] = ACTIONS(8396), - [anon_sym_static_assert] = ACTIONS(8396), - [anon_sym_LBRACK_COLON] = ACTIONS(8398), + [STATE(2827)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), + [anon_sym_COMMA] = ACTIONS(7719), + [anon_sym_RPAREN] = ACTIONS(7719), + [anon_sym_LPAREN2] = ACTIONS(7719), + [anon_sym_DASH] = ACTIONS(7717), + [anon_sym_PLUS] = ACTIONS(7717), + [anon_sym_STAR] = ACTIONS(7717), + [anon_sym_SLASH] = ACTIONS(7717), + [anon_sym_PERCENT] = ACTIONS(7717), + [anon_sym_PIPE_PIPE] = ACTIONS(7719), + [anon_sym_AMP_AMP] = ACTIONS(7719), + [anon_sym_PIPE] = ACTIONS(7717), + [anon_sym_CARET] = ACTIONS(7717), + [anon_sym_AMP] = ACTIONS(7717), + [anon_sym_EQ_EQ] = ACTIONS(7719), + [anon_sym_BANG_EQ] = ACTIONS(7719), + [anon_sym_GT] = ACTIONS(7717), + [anon_sym_GT_EQ] = ACTIONS(7719), + [anon_sym_LT_EQ] = ACTIONS(7717), + [anon_sym_LT] = ACTIONS(7717), + [anon_sym_LT_LT] = ACTIONS(7717), + [anon_sym_GT_GT] = ACTIONS(7717), + [anon_sym___extension__] = ACTIONS(7719), + [anon_sym___attribute__] = ACTIONS(7719), + [anon_sym___attribute] = ACTIONS(7717), + [anon_sym_LBRACE] = ACTIONS(7719), + [anon_sym_LBRACK] = ACTIONS(7719), + [anon_sym_EQ] = ACTIONS(7717), + [anon_sym_const] = ACTIONS(7717), + [anon_sym_constexpr] = ACTIONS(7719), + [anon_sym_volatile] = ACTIONS(7719), + [anon_sym_restrict] = ACTIONS(7719), + [anon_sym___restrict__] = ACTIONS(7719), + [anon_sym__Atomic] = ACTIONS(7719), + [anon_sym__Noreturn] = ACTIONS(7719), + [anon_sym_noreturn] = ACTIONS(7719), + [anon_sym__Nonnull] = ACTIONS(7719), + [anon_sym_mutable] = ACTIONS(7719), + [anon_sym_constinit] = ACTIONS(7719), + [anon_sym_consteval] = ACTIONS(7719), + [anon_sym_alignas] = ACTIONS(7719), + [anon_sym__Alignas] = ACTIONS(7719), + [anon_sym_QMARK] = ACTIONS(7719), + [anon_sym_STAR_EQ] = ACTIONS(7719), + [anon_sym_SLASH_EQ] = ACTIONS(7719), + [anon_sym_PERCENT_EQ] = ACTIONS(7719), + [anon_sym_PLUS_EQ] = ACTIONS(7719), + [anon_sym_DASH_EQ] = ACTIONS(7719), + [anon_sym_LT_LT_EQ] = ACTIONS(7719), + [anon_sym_GT_GT_EQ] = ACTIONS(7719), + [anon_sym_AMP_EQ] = ACTIONS(7719), + [anon_sym_CARET_EQ] = ACTIONS(7719), + [anon_sym_PIPE_EQ] = ACTIONS(7719), + [anon_sym_and_eq] = ACTIONS(7719), + [anon_sym_or_eq] = ACTIONS(7719), + [anon_sym_xor_eq] = ACTIONS(7719), + [anon_sym_LT_EQ_GT] = ACTIONS(7719), + [anon_sym_or] = ACTIONS(7717), + [anon_sym_and] = ACTIONS(7717), + [anon_sym_bitor] = ACTIONS(7719), + [anon_sym_xor] = ACTIONS(7717), + [anon_sym_bitand] = ACTIONS(7719), + [anon_sym_not_eq] = ACTIONS(7719), + [anon_sym_DASH_DASH] = ACTIONS(7719), + [anon_sym_PLUS_PLUS] = ACTIONS(7719), + [anon_sym_DOT] = ACTIONS(7717), + [anon_sym_DOT_STAR] = ACTIONS(7719), + [anon_sym_DASH_GT] = ACTIONS(7717), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7719), + [anon_sym_override] = ACTIONS(7719), + [anon_sym_requires] = ACTIONS(7719), + [anon_sym_DASH_GT_STAR] = ACTIONS(7719), }, - [STATE(3235)] = { - [sym_template_argument_list] = STATE(3587), - [sym_identifier] = ACTIONS(6746), - [anon_sym_LPAREN2] = ACTIONS(6751), - [anon_sym_TILDE] = ACTIONS(6751), - [anon_sym_STAR] = ACTIONS(6751), - [anon_sym_PIPE_PIPE] = ACTIONS(6751), - [anon_sym_AMP_AMP] = ACTIONS(6751), - [anon_sym_AMP] = ACTIONS(6746), - [anon_sym_LT] = ACTIONS(8749), - [anon_sym___extension__] = ACTIONS(6746), - [anon_sym_virtual] = ACTIONS(6746), - [anon_sym_extern] = ACTIONS(6746), - [anon_sym___attribute__] = ACTIONS(6746), - [anon_sym___attribute] = ACTIONS(6746), - [anon_sym_using] = ACTIONS(6746), - [anon_sym_COLON_COLON] = ACTIONS(6748), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6751), - [anon_sym___declspec] = ACTIONS(6746), - [anon_sym___based] = ACTIONS(6746), - [anon_sym___cdecl] = ACTIONS(6746), - [anon_sym___clrcall] = ACTIONS(6746), - [anon_sym___stdcall] = ACTIONS(6746), - [anon_sym___fastcall] = ACTIONS(6746), - [anon_sym___thiscall] = ACTIONS(6746), - [anon_sym___vectorcall] = ACTIONS(6746), - [anon_sym_signed] = ACTIONS(6746), - [anon_sym_unsigned] = ACTIONS(6746), - [anon_sym_long] = ACTIONS(6746), - [anon_sym_short] = ACTIONS(6746), - [anon_sym_LBRACK] = ACTIONS(6746), - [anon_sym_static] = ACTIONS(6746), - [anon_sym_register] = ACTIONS(6746), - [anon_sym_inline] = ACTIONS(6746), - [anon_sym___inline] = ACTIONS(6746), - [anon_sym___inline__] = ACTIONS(6746), - [anon_sym___forceinline] = ACTIONS(6746), - [anon_sym_thread_local] = ACTIONS(6746), - [anon_sym___thread] = ACTIONS(6746), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6746), - [anon_sym_volatile] = ACTIONS(6746), - [anon_sym_restrict] = ACTIONS(6746), - [anon_sym___restrict__] = ACTIONS(6746), - [anon_sym__Atomic] = ACTIONS(6746), - [anon_sym__Noreturn] = ACTIONS(6746), - [anon_sym_noreturn] = ACTIONS(6746), - [anon_sym__Nonnull] = ACTIONS(6746), - [anon_sym_mutable] = ACTIONS(6746), - [anon_sym_constinit] = ACTIONS(6746), - [anon_sym_consteval] = ACTIONS(6746), - [anon_sym_alignas] = ACTIONS(6746), - [anon_sym__Alignas] = ACTIONS(6746), - [sym_primitive_type] = ACTIONS(6746), - [anon_sym_enum] = ACTIONS(6746), - [anon_sym_class] = ACTIONS(6746), - [anon_sym_struct] = ACTIONS(6746), - [anon_sym_union] = ACTIONS(6746), - [anon_sym_or] = ACTIONS(6746), - [anon_sym_and] = ACTIONS(6746), - [anon_sym_typename] = ACTIONS(6746), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6746), - [anon_sym_decltype] = ACTIONS(6746), - [anon_sym_explicit] = ACTIONS(6746), - [anon_sym_template] = ACTIONS(6746), - [anon_sym_operator] = ACTIONS(6746), - [anon_sym_friend] = ACTIONS(6746), - [anon_sym_concept] = ACTIONS(6746), - [anon_sym_LBRACK_COLON] = ACTIONS(6751), + [STATE(2828)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7749), + [anon_sym_COMMA] = ACTIONS(7749), + [anon_sym_RPAREN] = ACTIONS(7749), + [anon_sym_LPAREN2] = ACTIONS(7749), + [anon_sym_DASH] = ACTIONS(7747), + [anon_sym_PLUS] = ACTIONS(7747), + [anon_sym_STAR] = ACTIONS(7747), + [anon_sym_SLASH] = ACTIONS(7747), + [anon_sym_PERCENT] = ACTIONS(7747), + [anon_sym_PIPE_PIPE] = ACTIONS(7749), + [anon_sym_AMP_AMP] = ACTIONS(7749), + [anon_sym_PIPE] = ACTIONS(7747), + [anon_sym_CARET] = ACTIONS(7747), + [anon_sym_AMP] = ACTIONS(7747), + [anon_sym_EQ_EQ] = ACTIONS(7749), + [anon_sym_BANG_EQ] = ACTIONS(7749), + [anon_sym_GT] = ACTIONS(7747), + [anon_sym_GT_EQ] = ACTIONS(7749), + [anon_sym_LT_EQ] = ACTIONS(7747), + [anon_sym_LT] = ACTIONS(7747), + [anon_sym_LT_LT] = ACTIONS(7747), + [anon_sym_GT_GT] = ACTIONS(7747), + [anon_sym___extension__] = ACTIONS(7749), + [anon_sym___attribute__] = ACTIONS(7749), + [anon_sym___attribute] = ACTIONS(7747), + [anon_sym_LBRACE] = ACTIONS(7749), + [anon_sym_LBRACK] = ACTIONS(7749), + [anon_sym_EQ] = ACTIONS(7747), + [anon_sym_const] = ACTIONS(7747), + [anon_sym_constexpr] = ACTIONS(7749), + [anon_sym_volatile] = ACTIONS(7749), + [anon_sym_restrict] = ACTIONS(7749), + [anon_sym___restrict__] = ACTIONS(7749), + [anon_sym__Atomic] = ACTIONS(7749), + [anon_sym__Noreturn] = ACTIONS(7749), + [anon_sym_noreturn] = ACTIONS(7749), + [anon_sym__Nonnull] = ACTIONS(7749), + [anon_sym_mutable] = ACTIONS(7749), + [anon_sym_constinit] = ACTIONS(7749), + [anon_sym_consteval] = ACTIONS(7749), + [anon_sym_alignas] = ACTIONS(7749), + [anon_sym__Alignas] = ACTIONS(7749), + [anon_sym_QMARK] = ACTIONS(7749), + [anon_sym_STAR_EQ] = ACTIONS(7749), + [anon_sym_SLASH_EQ] = ACTIONS(7749), + [anon_sym_PERCENT_EQ] = ACTIONS(7749), + [anon_sym_PLUS_EQ] = ACTIONS(7749), + [anon_sym_DASH_EQ] = ACTIONS(7749), + [anon_sym_LT_LT_EQ] = ACTIONS(7749), + [anon_sym_GT_GT_EQ] = ACTIONS(7749), + [anon_sym_AMP_EQ] = ACTIONS(7749), + [anon_sym_CARET_EQ] = ACTIONS(7749), + [anon_sym_PIPE_EQ] = ACTIONS(7749), + [anon_sym_and_eq] = ACTIONS(7749), + [anon_sym_or_eq] = ACTIONS(7749), + [anon_sym_xor_eq] = ACTIONS(7749), + [anon_sym_LT_EQ_GT] = ACTIONS(7749), + [anon_sym_or] = ACTIONS(7747), + [anon_sym_and] = ACTIONS(7747), + [anon_sym_bitor] = ACTIONS(7749), + [anon_sym_xor] = ACTIONS(7747), + [anon_sym_bitand] = ACTIONS(7749), + [anon_sym_not_eq] = ACTIONS(7749), + [anon_sym_DASH_DASH] = ACTIONS(7749), + [anon_sym_PLUS_PLUS] = ACTIONS(7749), + [anon_sym_DOT] = ACTIONS(7747), + [anon_sym_DOT_STAR] = ACTIONS(7749), + [anon_sym_DASH_GT] = ACTIONS(7747), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7749), + [anon_sym_override] = ACTIONS(7749), + [anon_sym_requires] = ACTIONS(7749), + [anon_sym_DASH_GT_STAR] = ACTIONS(7749), }, - [STATE(3236)] = { - [sym_identifier] = ACTIONS(3970), - [aux_sym_preproc_def_token1] = ACTIONS(3970), - [aux_sym_preproc_if_token1] = ACTIONS(3970), - [aux_sym_preproc_if_token2] = ACTIONS(3970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3970), - [sym_preproc_directive] = ACTIONS(3970), - [anon_sym_LPAREN2] = ACTIONS(3972), - [anon_sym_TILDE] = ACTIONS(3972), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_AMP_AMP] = ACTIONS(3972), - [anon_sym_AMP] = ACTIONS(3970), - [anon_sym_SEMI] = ACTIONS(3972), - [anon_sym___extension__] = ACTIONS(3970), - [anon_sym_typedef] = ACTIONS(3970), - [anon_sym_virtual] = ACTIONS(3970), - [anon_sym_extern] = ACTIONS(3970), - [anon_sym___attribute__] = ACTIONS(3970), - [anon_sym___attribute] = ACTIONS(3970), - [anon_sym_using] = ACTIONS(3970), - [anon_sym_COLON_COLON] = ACTIONS(3972), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3972), - [anon_sym___declspec] = ACTIONS(3970), - [anon_sym___based] = ACTIONS(3970), - [anon_sym_signed] = ACTIONS(3970), - [anon_sym_unsigned] = ACTIONS(3970), - [anon_sym_long] = ACTIONS(3970), - [anon_sym_short] = ACTIONS(3970), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_static] = ACTIONS(3970), - [anon_sym_register] = ACTIONS(3970), - [anon_sym_inline] = ACTIONS(3970), - [anon_sym___inline] = ACTIONS(3970), - [anon_sym___inline__] = ACTIONS(3970), - [anon_sym___forceinline] = ACTIONS(3970), - [anon_sym_thread_local] = ACTIONS(3970), - [anon_sym___thread] = ACTIONS(3970), - [anon_sym_const] = ACTIONS(3970), - [anon_sym_constexpr] = ACTIONS(3970), - [anon_sym_volatile] = ACTIONS(3970), - [anon_sym_restrict] = ACTIONS(3970), - [anon_sym___restrict__] = ACTIONS(3970), - [anon_sym__Atomic] = ACTIONS(3970), - [anon_sym__Noreturn] = ACTIONS(3970), - [anon_sym_noreturn] = ACTIONS(3970), - [anon_sym__Nonnull] = ACTIONS(3970), - [anon_sym_mutable] = ACTIONS(3970), - [anon_sym_constinit] = ACTIONS(3970), - [anon_sym_consteval] = ACTIONS(3970), - [anon_sym_alignas] = ACTIONS(3970), - [anon_sym__Alignas] = ACTIONS(3970), - [sym_primitive_type] = ACTIONS(3970), - [anon_sym_enum] = ACTIONS(3970), - [anon_sym_class] = ACTIONS(3970), - [anon_sym_struct] = ACTIONS(3970), - [anon_sym_union] = ACTIONS(3970), - [anon_sym_typename] = ACTIONS(3970), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3970), - [anon_sym_decltype] = ACTIONS(3970), - [anon_sym_explicit] = ACTIONS(3970), - [anon_sym_private] = ACTIONS(3970), - [anon_sym_template] = ACTIONS(3970), - [anon_sym_operator] = ACTIONS(3970), - [anon_sym_friend] = ACTIONS(3970), - [anon_sym_public] = ACTIONS(3970), - [anon_sym_protected] = ACTIONS(3970), - [anon_sym_static_assert] = ACTIONS(3970), - [anon_sym_LBRACK_COLON] = ACTIONS(3972), + [STATE(2829)] = { + [sym_identifier] = ACTIONS(8726), + [aux_sym_preproc_def_token1] = ACTIONS(8726), + [aux_sym_preproc_if_token1] = ACTIONS(8726), + [aux_sym_preproc_if_token2] = ACTIONS(8726), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8726), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8726), + [aux_sym_preproc_else_token1] = ACTIONS(8726), + [aux_sym_preproc_elif_token1] = ACTIONS(8726), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8726), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8726), + [sym_preproc_directive] = ACTIONS(8726), + [anon_sym_LPAREN2] = ACTIONS(8728), + [anon_sym_TILDE] = ACTIONS(8728), + [anon_sym_STAR] = ACTIONS(8728), + [anon_sym_AMP_AMP] = ACTIONS(8728), + [anon_sym_AMP] = ACTIONS(8726), + [anon_sym_SEMI] = ACTIONS(8728), + [anon_sym___extension__] = ACTIONS(8726), + [anon_sym_typedef] = ACTIONS(8726), + [anon_sym_virtual] = ACTIONS(8726), + [anon_sym_extern] = ACTIONS(8726), + [anon_sym___attribute__] = ACTIONS(8726), + [anon_sym___attribute] = ACTIONS(8726), + [anon_sym_using] = ACTIONS(8726), + [anon_sym_COLON_COLON] = ACTIONS(8728), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8728), + [anon_sym___declspec] = ACTIONS(8726), + [anon_sym___based] = ACTIONS(8726), + [anon_sym_signed] = ACTIONS(8726), + [anon_sym_unsigned] = ACTIONS(8726), + [anon_sym_long] = ACTIONS(8726), + [anon_sym_short] = ACTIONS(8726), + [anon_sym_LBRACK] = ACTIONS(8726), + [anon_sym_static] = ACTIONS(8726), + [anon_sym_register] = ACTIONS(8726), + [anon_sym_inline] = ACTIONS(8726), + [anon_sym___inline] = ACTIONS(8726), + [anon_sym___inline__] = ACTIONS(8726), + [anon_sym___forceinline] = ACTIONS(8726), + [anon_sym_thread_local] = ACTIONS(8726), + [anon_sym___thread] = ACTIONS(8726), + [anon_sym_const] = ACTIONS(8726), + [anon_sym_constexpr] = ACTIONS(8726), + [anon_sym_volatile] = ACTIONS(8726), + [anon_sym_restrict] = ACTIONS(8726), + [anon_sym___restrict__] = ACTIONS(8726), + [anon_sym__Atomic] = ACTIONS(8726), + [anon_sym__Noreturn] = ACTIONS(8726), + [anon_sym_noreturn] = ACTIONS(8726), + [anon_sym__Nonnull] = ACTIONS(8726), + [anon_sym_mutable] = ACTIONS(8726), + [anon_sym_constinit] = ACTIONS(8726), + [anon_sym_consteval] = ACTIONS(8726), + [anon_sym_alignas] = ACTIONS(8726), + [anon_sym__Alignas] = ACTIONS(8726), + [sym_primitive_type] = ACTIONS(8726), + [anon_sym_enum] = ACTIONS(8726), + [anon_sym_class] = ACTIONS(8726), + [anon_sym_struct] = ACTIONS(8726), + [anon_sym_union] = ACTIONS(8726), + [anon_sym_typename] = ACTIONS(8726), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8726), + [anon_sym_decltype] = ACTIONS(8726), + [anon_sym_explicit] = ACTIONS(8726), + [anon_sym_private] = ACTIONS(8726), + [anon_sym_template] = ACTIONS(8726), + [anon_sym_operator] = ACTIONS(8726), + [anon_sym_friend] = ACTIONS(8726), + [anon_sym_public] = ACTIONS(8726), + [anon_sym_protected] = ACTIONS(8726), + [anon_sym_static_assert] = ACTIONS(8726), + [anon_sym_LBRACK_COLON] = ACTIONS(8728), }, - [STATE(3237)] = { - [sym_identifier] = ACTIONS(3680), - [aux_sym_preproc_def_token1] = ACTIONS(3680), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3680), - [sym_preproc_directive] = ACTIONS(3680), - [anon_sym_LPAREN2] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(3682), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym___extension__] = ACTIONS(3680), - [anon_sym_typedef] = ACTIONS(3680), - [anon_sym_virtual] = ACTIONS(3680), - [anon_sym_extern] = ACTIONS(3680), - [anon_sym___attribute__] = ACTIONS(3680), - [anon_sym___attribute] = ACTIONS(3680), - [anon_sym_using] = ACTIONS(3680), - [anon_sym_COLON_COLON] = ACTIONS(3682), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3682), - [anon_sym___declspec] = ACTIONS(3680), - [anon_sym___based] = ACTIONS(3680), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_signed] = ACTIONS(3680), - [anon_sym_unsigned] = ACTIONS(3680), - [anon_sym_long] = ACTIONS(3680), - [anon_sym_short] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3680), - [anon_sym_static] = ACTIONS(3680), - [anon_sym_register] = ACTIONS(3680), - [anon_sym_inline] = ACTIONS(3680), - [anon_sym___inline] = ACTIONS(3680), - [anon_sym___inline__] = ACTIONS(3680), - [anon_sym___forceinline] = ACTIONS(3680), - [anon_sym_thread_local] = ACTIONS(3680), - [anon_sym___thread] = ACTIONS(3680), - [anon_sym_const] = ACTIONS(3680), - [anon_sym_constexpr] = ACTIONS(3680), - [anon_sym_volatile] = ACTIONS(3680), - [anon_sym_restrict] = ACTIONS(3680), - [anon_sym___restrict__] = ACTIONS(3680), - [anon_sym__Atomic] = ACTIONS(3680), - [anon_sym__Noreturn] = ACTIONS(3680), - [anon_sym_noreturn] = ACTIONS(3680), - [anon_sym__Nonnull] = ACTIONS(3680), - [anon_sym_mutable] = ACTIONS(3680), - [anon_sym_constinit] = ACTIONS(3680), - [anon_sym_consteval] = ACTIONS(3680), - [anon_sym_alignas] = ACTIONS(3680), - [anon_sym__Alignas] = ACTIONS(3680), - [sym_primitive_type] = ACTIONS(3680), - [anon_sym_enum] = ACTIONS(3680), - [anon_sym_class] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(3680), - [anon_sym_union] = ACTIONS(3680), - [anon_sym_typename] = ACTIONS(3680), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3680), - [anon_sym_decltype] = ACTIONS(3680), - [anon_sym_explicit] = ACTIONS(3680), - [anon_sym_private] = ACTIONS(3680), - [anon_sym_template] = ACTIONS(3680), - [anon_sym_operator] = ACTIONS(3680), - [anon_sym_friend] = ACTIONS(3680), - [anon_sym_public] = ACTIONS(3680), - [anon_sym_protected] = ACTIONS(3680), - [anon_sym_static_assert] = ACTIONS(3680), - [anon_sym_LBRACK_COLON] = ACTIONS(3682), + [STATE(2830)] = { + [sym_ms_based_modifier] = STATE(10837), + [sym_ms_unaligned_ptr_modifier] = STATE(6574), + [sym_ms_pointer_modifier] = STATE(6427), + [sym__declarator] = STATE(8808), + [sym__abstract_declarator] = STATE(9080), + [sym_parenthesized_declarator] = STATE(8555), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_function_declarator] = STATE(8555), + [sym_abstract_function_declarator] = STATE(8596), + [sym_array_declarator] = STATE(8555), + [sym_abstract_array_declarator] = STATE(8596), + [sym_type_qualifier] = STATE(3825), + [sym_alignas_qualifier] = STATE(7511), + [sym_parameter_list] = STATE(5340), + [sym_decltype] = STATE(10768), + [sym_reference_declarator] = STATE(8555), + [sym_abstract_reference_declarator] = STATE(8596), + [sym_structured_binding_declarator] = STATE(8555), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7990), + [sym_qualified_identifier] = STATE(8555), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__type_definition_type_repeat1] = STATE(3825), + [aux_sym_pointer_declarator_repeat1] = STATE(6427), + [sym_identifier] = ACTIONS(8546), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(8708), + [anon_sym_AMP_AMP] = ACTIONS(8710), + [anon_sym_AMP] = ACTIONS(8712), + [anon_sym___extension__] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(6821), + [anon_sym___attribute] = ACTIONS(6821), + [anon_sym_COLON_COLON] = ACTIONS(8554), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3266), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3266), + [sym_ms_signed_ptr_modifier] = ACTIONS(3266), + [anon_sym__unaligned] = ACTIONS(3268), + [anon_sym___unaligned] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(5627), + [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__Nonnull] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), }, - [STATE(3238)] = { - [sym_identifier] = ACTIONS(4164), - [aux_sym_preproc_def_token1] = ACTIONS(4164), - [aux_sym_preproc_if_token1] = ACTIONS(4164), - [aux_sym_preproc_if_token2] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4164), - [anon_sym_LPAREN2] = ACTIONS(4166), - [anon_sym_TILDE] = ACTIONS(4166), - [anon_sym_STAR] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_AMP] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym___extension__] = ACTIONS(4164), - [anon_sym_typedef] = ACTIONS(4164), - [anon_sym_virtual] = ACTIONS(4164), - [anon_sym_extern] = ACTIONS(4164), - [anon_sym___attribute__] = ACTIONS(4164), - [anon_sym___attribute] = ACTIONS(4164), - [anon_sym_using] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), - [anon_sym___declspec] = ACTIONS(4164), - [anon_sym___based] = ACTIONS(4164), - [anon_sym_signed] = ACTIONS(4164), - [anon_sym_unsigned] = ACTIONS(4164), - [anon_sym_long] = ACTIONS(4164), - [anon_sym_short] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4164), - [anon_sym_static] = ACTIONS(4164), - [anon_sym_register] = ACTIONS(4164), - [anon_sym_inline] = ACTIONS(4164), - [anon_sym___inline] = ACTIONS(4164), - [anon_sym___inline__] = ACTIONS(4164), - [anon_sym___forceinline] = ACTIONS(4164), - [anon_sym_thread_local] = ACTIONS(4164), - [anon_sym___thread] = ACTIONS(4164), - [anon_sym_const] = ACTIONS(4164), - [anon_sym_constexpr] = ACTIONS(4164), - [anon_sym_volatile] = ACTIONS(4164), - [anon_sym_restrict] = ACTIONS(4164), - [anon_sym___restrict__] = ACTIONS(4164), - [anon_sym__Atomic] = ACTIONS(4164), - [anon_sym__Noreturn] = ACTIONS(4164), - [anon_sym_noreturn] = ACTIONS(4164), - [anon_sym__Nonnull] = ACTIONS(4164), - [anon_sym_mutable] = ACTIONS(4164), - [anon_sym_constinit] = ACTIONS(4164), - [anon_sym_consteval] = ACTIONS(4164), - [anon_sym_alignas] = ACTIONS(4164), - [anon_sym__Alignas] = ACTIONS(4164), - [sym_primitive_type] = ACTIONS(4164), - [anon_sym_enum] = ACTIONS(4164), - [anon_sym_class] = ACTIONS(4164), - [anon_sym_struct] = ACTIONS(4164), - [anon_sym_union] = ACTIONS(4164), - [anon_sym_typename] = ACTIONS(4164), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4164), - [anon_sym_decltype] = ACTIONS(4164), - [anon_sym_explicit] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_template] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_friend] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_static_assert] = ACTIONS(4164), - [anon_sym_LBRACK_COLON] = ACTIONS(4166), + [STATE(2831)] = { + [sym__declaration_modifiers] = STATE(5048), + [sym_attribute_specifier] = STATE(5048), + [sym_attribute_declaration] = STATE(5048), + [sym_ms_declspec_modifier] = STATE(5048), + [sym_storage_class_specifier] = STATE(5048), + [sym_type_qualifier] = STATE(5048), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(6392), + [sym_sized_type_specifier] = STATE(6050), + [sym_enum_specifier] = STATE(6050), + [sym_struct_specifier] = STATE(6050), + [sym_union_specifier] = STATE(6050), + [sym_placeholder_type_specifier] = STATE(6050), + [sym_decltype_auto] = STATE(6031), + [sym_decltype] = STATE(5973), + [sym_class_specifier] = STATE(6050), + [sym_dependent_type] = STATE(6050), + [sym_template_type] = STATE(5365), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(5574), + [sym_splice_specifier] = STATE(4802), + [sym__splice_specialization_specifier] = STATE(5472), + [sym_splice_type_specifier] = STATE(5973), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(5048), + [aux_sym_sized_type_specifier_repeat1] = STATE(4387), + [sym_identifier] = ACTIONS(5132), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(8641), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5140), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(5142), + [anon_sym_unsigned] = ACTIONS(5142), + [anon_sym_long] = ACTIONS(5142), + [anon_sym_short] = ACTIONS(5142), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(5144), + [anon_sym_enum] = ACTIONS(5146), + [anon_sym_class] = ACTIONS(5148), + [anon_sym_struct] = ACTIONS(5150), + [anon_sym_union] = ACTIONS(5152), + [anon_sym_typename] = ACTIONS(5154), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5156), + [anon_sym_decltype] = ACTIONS(5158), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), }, - [STATE(3239)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3239), - [sym_identifier] = ACTIONS(6627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6629), - [anon_sym_COMMA] = ACTIONS(6629), - [aux_sym_preproc_if_token2] = ACTIONS(6629), - [aux_sym_preproc_else_token1] = ACTIONS(6629), - [aux_sym_preproc_elif_token1] = ACTIONS(6627), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6629), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6629), - [anon_sym_LPAREN2] = ACTIONS(6629), - [anon_sym_DASH] = ACTIONS(6627), - [anon_sym_PLUS] = ACTIONS(6627), - [anon_sym_STAR] = ACTIONS(6629), - [anon_sym_SLASH] = ACTIONS(6627), - [anon_sym_PERCENT] = ACTIONS(6629), - [anon_sym_PIPE_PIPE] = ACTIONS(6629), - [anon_sym_AMP_AMP] = ACTIONS(6629), - [anon_sym_PIPE] = ACTIONS(6627), - [anon_sym_CARET] = ACTIONS(6629), - [anon_sym_AMP] = ACTIONS(6627), - [anon_sym_EQ_EQ] = ACTIONS(6629), - [anon_sym_BANG_EQ] = ACTIONS(6629), - [anon_sym_GT] = ACTIONS(6627), - [anon_sym_GT_EQ] = ACTIONS(6629), - [anon_sym_LT_EQ] = ACTIONS(6627), - [anon_sym_LT] = ACTIONS(6627), - [anon_sym_LT_LT] = ACTIONS(6629), - [anon_sym_GT_GT] = ACTIONS(6629), - [anon_sym___extension__] = ACTIONS(6627), - [anon_sym___attribute__] = ACTIONS(6627), - [anon_sym___attribute] = ACTIONS(6627), - [anon_sym_LBRACE] = ACTIONS(6629), - [anon_sym_signed] = ACTIONS(8771), - [anon_sym_unsigned] = ACTIONS(8771), - [anon_sym_long] = ACTIONS(8771), - [anon_sym_short] = ACTIONS(8771), - [anon_sym_LBRACK] = ACTIONS(6629), - [anon_sym_RBRACK] = ACTIONS(6629), - [anon_sym_const] = ACTIONS(6627), - [anon_sym_constexpr] = ACTIONS(6627), - [anon_sym_volatile] = ACTIONS(6627), - [anon_sym_restrict] = ACTIONS(6627), - [anon_sym___restrict__] = ACTIONS(6627), - [anon_sym__Atomic] = ACTIONS(6627), - [anon_sym__Noreturn] = ACTIONS(6627), - [anon_sym_noreturn] = ACTIONS(6627), - [anon_sym__Nonnull] = ACTIONS(6627), - [anon_sym_mutable] = ACTIONS(6627), - [anon_sym_constinit] = ACTIONS(6627), - [anon_sym_consteval] = ACTIONS(6627), - [anon_sym_alignas] = ACTIONS(6627), - [anon_sym__Alignas] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(6629), - [anon_sym_LT_EQ_GT] = ACTIONS(6629), - [anon_sym_or] = ACTIONS(6627), - [anon_sym_and] = ACTIONS(6627), - [anon_sym_bitor] = ACTIONS(6627), - [anon_sym_xor] = ACTIONS(6627), - [anon_sym_bitand] = ACTIONS(6627), - [anon_sym_not_eq] = ACTIONS(6627), - [anon_sym_DASH_DASH] = ACTIONS(6629), - [anon_sym_PLUS_PLUS] = ACTIONS(6629), - [anon_sym_DOT] = ACTIONS(6627), - [anon_sym_DOT_STAR] = ACTIONS(6629), - [anon_sym_DASH_GT] = ACTIONS(6629), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6627), - [anon_sym_override] = ACTIONS(6627), - [anon_sym_requires] = ACTIONS(6627), + [STATE(2832)] = { + [sym_identifier] = ACTIONS(8730), + [aux_sym_preproc_def_token1] = ACTIONS(8730), + [aux_sym_preproc_if_token1] = ACTIONS(8730), + [aux_sym_preproc_if_token2] = ACTIONS(8730), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8730), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8730), + [aux_sym_preproc_else_token1] = ACTIONS(8730), + [aux_sym_preproc_elif_token1] = ACTIONS(8730), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8730), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8730), + [sym_preproc_directive] = ACTIONS(8730), + [anon_sym_LPAREN2] = ACTIONS(8732), + [anon_sym_TILDE] = ACTIONS(8732), + [anon_sym_STAR] = ACTIONS(8732), + [anon_sym_AMP_AMP] = ACTIONS(8732), + [anon_sym_AMP] = ACTIONS(8730), + [anon_sym_SEMI] = ACTIONS(8732), + [anon_sym___extension__] = ACTIONS(8730), + [anon_sym_typedef] = ACTIONS(8730), + [anon_sym_virtual] = ACTIONS(8730), + [anon_sym_extern] = ACTIONS(8730), + [anon_sym___attribute__] = ACTIONS(8730), + [anon_sym___attribute] = ACTIONS(8730), + [anon_sym_using] = ACTIONS(8730), + [anon_sym_COLON_COLON] = ACTIONS(8732), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8732), + [anon_sym___declspec] = ACTIONS(8730), + [anon_sym___based] = ACTIONS(8730), + [anon_sym_signed] = ACTIONS(8730), + [anon_sym_unsigned] = ACTIONS(8730), + [anon_sym_long] = ACTIONS(8730), + [anon_sym_short] = ACTIONS(8730), + [anon_sym_LBRACK] = ACTIONS(8730), + [anon_sym_static] = ACTIONS(8730), + [anon_sym_register] = ACTIONS(8730), + [anon_sym_inline] = ACTIONS(8730), + [anon_sym___inline] = ACTIONS(8730), + [anon_sym___inline__] = ACTIONS(8730), + [anon_sym___forceinline] = ACTIONS(8730), + [anon_sym_thread_local] = ACTIONS(8730), + [anon_sym___thread] = ACTIONS(8730), + [anon_sym_const] = ACTIONS(8730), + [anon_sym_constexpr] = ACTIONS(8730), + [anon_sym_volatile] = ACTIONS(8730), + [anon_sym_restrict] = ACTIONS(8730), + [anon_sym___restrict__] = ACTIONS(8730), + [anon_sym__Atomic] = ACTIONS(8730), + [anon_sym__Noreturn] = ACTIONS(8730), + [anon_sym_noreturn] = ACTIONS(8730), + [anon_sym__Nonnull] = ACTIONS(8730), + [anon_sym_mutable] = ACTIONS(8730), + [anon_sym_constinit] = ACTIONS(8730), + [anon_sym_consteval] = ACTIONS(8730), + [anon_sym_alignas] = ACTIONS(8730), + [anon_sym__Alignas] = ACTIONS(8730), + [sym_primitive_type] = ACTIONS(8730), + [anon_sym_enum] = ACTIONS(8730), + [anon_sym_class] = ACTIONS(8730), + [anon_sym_struct] = ACTIONS(8730), + [anon_sym_union] = ACTIONS(8730), + [anon_sym_typename] = ACTIONS(8730), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8730), + [anon_sym_decltype] = ACTIONS(8730), + [anon_sym_explicit] = ACTIONS(8730), + [anon_sym_private] = ACTIONS(8730), + [anon_sym_template] = ACTIONS(8730), + [anon_sym_operator] = ACTIONS(8730), + [anon_sym_friend] = ACTIONS(8730), + [anon_sym_public] = ACTIONS(8730), + [anon_sym_protected] = ACTIONS(8730), + [anon_sym_static_assert] = ACTIONS(8730), + [anon_sym_LBRACK_COLON] = ACTIONS(8732), }, - [STATE(3240)] = { - [sym_identifier] = ACTIONS(3922), - [aux_sym_preproc_def_token1] = ACTIONS(3922), - [aux_sym_preproc_if_token1] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), - [sym_preproc_directive] = ACTIONS(3922), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_TILDE] = ACTIONS(3924), - [anon_sym_STAR] = ACTIONS(3924), - [anon_sym_AMP_AMP] = ACTIONS(3924), - [anon_sym_AMP] = ACTIONS(3922), - [anon_sym_SEMI] = ACTIONS(3924), - [anon_sym___extension__] = ACTIONS(3922), - [anon_sym_typedef] = ACTIONS(3922), - [anon_sym_virtual] = ACTIONS(3922), - [anon_sym_extern] = ACTIONS(3922), - [anon_sym___attribute__] = ACTIONS(3922), - [anon_sym___attribute] = ACTIONS(3922), - [anon_sym_using] = ACTIONS(3922), - [anon_sym_COLON_COLON] = ACTIONS(3924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), - [anon_sym___declspec] = ACTIONS(3922), - [anon_sym___based] = ACTIONS(3922), - [anon_sym_RBRACE] = ACTIONS(3924), - [anon_sym_signed] = ACTIONS(3922), - [anon_sym_unsigned] = ACTIONS(3922), - [anon_sym_long] = ACTIONS(3922), - [anon_sym_short] = ACTIONS(3922), - [anon_sym_LBRACK] = ACTIONS(3922), - [anon_sym_static] = ACTIONS(3922), - [anon_sym_register] = ACTIONS(3922), - [anon_sym_inline] = ACTIONS(3922), - [anon_sym___inline] = ACTIONS(3922), - [anon_sym___inline__] = ACTIONS(3922), - [anon_sym___forceinline] = ACTIONS(3922), - [anon_sym_thread_local] = ACTIONS(3922), - [anon_sym___thread] = ACTIONS(3922), - [anon_sym_const] = ACTIONS(3922), - [anon_sym_constexpr] = ACTIONS(3922), - [anon_sym_volatile] = ACTIONS(3922), - [anon_sym_restrict] = ACTIONS(3922), - [anon_sym___restrict__] = ACTIONS(3922), - [anon_sym__Atomic] = ACTIONS(3922), - [anon_sym__Noreturn] = ACTIONS(3922), - [anon_sym_noreturn] = ACTIONS(3922), - [anon_sym__Nonnull] = ACTIONS(3922), - [anon_sym_mutable] = ACTIONS(3922), - [anon_sym_constinit] = ACTIONS(3922), - [anon_sym_consteval] = ACTIONS(3922), - [anon_sym_alignas] = ACTIONS(3922), - [anon_sym__Alignas] = ACTIONS(3922), - [sym_primitive_type] = ACTIONS(3922), - [anon_sym_enum] = ACTIONS(3922), - [anon_sym_class] = ACTIONS(3922), - [anon_sym_struct] = ACTIONS(3922), - [anon_sym_union] = ACTIONS(3922), - [anon_sym_typename] = ACTIONS(3922), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3922), - [anon_sym_decltype] = ACTIONS(3922), - [anon_sym_explicit] = ACTIONS(3922), - [anon_sym_private] = ACTIONS(3922), - [anon_sym_template] = ACTIONS(3922), - [anon_sym_operator] = ACTIONS(3922), - [anon_sym_friend] = ACTIONS(3922), - [anon_sym_public] = ACTIONS(3922), - [anon_sym_protected] = ACTIONS(3922), - [anon_sym_static_assert] = ACTIONS(3922), - [anon_sym_LBRACK_COLON] = ACTIONS(3924), + [STATE(2833)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7587), + [anon_sym_COMMA] = ACTIONS(7587), + [anon_sym_RPAREN] = ACTIONS(7587), + [anon_sym_LPAREN2] = ACTIONS(7587), + [anon_sym_DASH] = ACTIONS(7585), + [anon_sym_PLUS] = ACTIONS(7585), + [anon_sym_STAR] = ACTIONS(7585), + [anon_sym_SLASH] = ACTIONS(7585), + [anon_sym_PERCENT] = ACTIONS(7585), + [anon_sym_PIPE_PIPE] = ACTIONS(7587), + [anon_sym_AMP_AMP] = ACTIONS(7587), + [anon_sym_PIPE] = ACTIONS(7585), + [anon_sym_CARET] = ACTIONS(7585), + [anon_sym_AMP] = ACTIONS(7585), + [anon_sym_EQ_EQ] = ACTIONS(7587), + [anon_sym_BANG_EQ] = ACTIONS(7587), + [anon_sym_GT] = ACTIONS(7585), + [anon_sym_GT_EQ] = ACTIONS(7587), + [anon_sym_LT_EQ] = ACTIONS(7585), + [anon_sym_LT] = ACTIONS(7585), + [anon_sym_LT_LT] = ACTIONS(7585), + [anon_sym_GT_GT] = ACTIONS(7585), + [anon_sym___extension__] = ACTIONS(7587), + [anon_sym___attribute__] = ACTIONS(7587), + [anon_sym___attribute] = ACTIONS(7585), + [anon_sym_LBRACE] = ACTIONS(7587), + [anon_sym_LBRACK] = ACTIONS(7587), + [anon_sym_EQ] = ACTIONS(7585), + [anon_sym_const] = ACTIONS(7585), + [anon_sym_constexpr] = ACTIONS(7587), + [anon_sym_volatile] = ACTIONS(7587), + [anon_sym_restrict] = ACTIONS(7587), + [anon_sym___restrict__] = ACTIONS(7587), + [anon_sym__Atomic] = ACTIONS(7587), + [anon_sym__Noreturn] = ACTIONS(7587), + [anon_sym_noreturn] = ACTIONS(7587), + [anon_sym__Nonnull] = ACTIONS(7587), + [anon_sym_mutable] = ACTIONS(7587), + [anon_sym_constinit] = ACTIONS(7587), + [anon_sym_consteval] = ACTIONS(7587), + [anon_sym_alignas] = ACTIONS(7587), + [anon_sym__Alignas] = ACTIONS(7587), + [anon_sym_QMARK] = ACTIONS(7587), + [anon_sym_STAR_EQ] = ACTIONS(7587), + [anon_sym_SLASH_EQ] = ACTIONS(7587), + [anon_sym_PERCENT_EQ] = ACTIONS(7587), + [anon_sym_PLUS_EQ] = ACTIONS(7587), + [anon_sym_DASH_EQ] = ACTIONS(7587), + [anon_sym_LT_LT_EQ] = ACTIONS(7587), + [anon_sym_GT_GT_EQ] = ACTIONS(7587), + [anon_sym_AMP_EQ] = ACTIONS(7587), + [anon_sym_CARET_EQ] = ACTIONS(7587), + [anon_sym_PIPE_EQ] = ACTIONS(7587), + [anon_sym_and_eq] = ACTIONS(7587), + [anon_sym_or_eq] = ACTIONS(7587), + [anon_sym_xor_eq] = ACTIONS(7587), + [anon_sym_LT_EQ_GT] = ACTIONS(7587), + [anon_sym_or] = ACTIONS(7585), + [anon_sym_and] = ACTIONS(7585), + [anon_sym_bitor] = ACTIONS(7587), + [anon_sym_xor] = ACTIONS(7585), + [anon_sym_bitand] = ACTIONS(7587), + [anon_sym_not_eq] = ACTIONS(7587), + [anon_sym_DASH_DASH] = ACTIONS(7587), + [anon_sym_PLUS_PLUS] = ACTIONS(7587), + [anon_sym_DOT] = ACTIONS(7585), + [anon_sym_DOT_STAR] = ACTIONS(7587), + [anon_sym_DASH_GT] = ACTIONS(7585), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7587), + [anon_sym_override] = ACTIONS(7587), + [anon_sym_requires] = ACTIONS(7587), + [anon_sym_DASH_GT_STAR] = ACTIONS(7587), }, - [STATE(3241)] = { - [sym_identifier] = ACTIONS(3922), - [aux_sym_preproc_def_token1] = ACTIONS(3922), - [aux_sym_preproc_if_token1] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3922), - [sym_preproc_directive] = ACTIONS(3922), - [anon_sym_LPAREN2] = ACTIONS(3924), - [anon_sym_TILDE] = ACTIONS(3924), - [anon_sym_STAR] = ACTIONS(3924), - [anon_sym_AMP_AMP] = ACTIONS(3924), - [anon_sym_AMP] = ACTIONS(3922), - [anon_sym_SEMI] = ACTIONS(3924), - [anon_sym___extension__] = ACTIONS(3922), - [anon_sym_typedef] = ACTIONS(3922), - [anon_sym_virtual] = ACTIONS(3922), - [anon_sym_extern] = ACTIONS(3922), - [anon_sym___attribute__] = ACTIONS(3922), - [anon_sym___attribute] = ACTIONS(3922), - [anon_sym_using] = ACTIONS(3922), - [anon_sym_COLON_COLON] = ACTIONS(3924), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3924), - [anon_sym___declspec] = ACTIONS(3922), - [anon_sym___based] = ACTIONS(3922), - [anon_sym_RBRACE] = ACTIONS(3924), - [anon_sym_signed] = ACTIONS(3922), - [anon_sym_unsigned] = ACTIONS(3922), - [anon_sym_long] = ACTIONS(3922), - [anon_sym_short] = ACTIONS(3922), - [anon_sym_LBRACK] = ACTIONS(3922), - [anon_sym_static] = ACTIONS(3922), - [anon_sym_register] = ACTIONS(3922), - [anon_sym_inline] = ACTIONS(3922), - [anon_sym___inline] = ACTIONS(3922), - [anon_sym___inline__] = ACTIONS(3922), - [anon_sym___forceinline] = ACTIONS(3922), - [anon_sym_thread_local] = ACTIONS(3922), - [anon_sym___thread] = ACTIONS(3922), - [anon_sym_const] = ACTIONS(3922), - [anon_sym_constexpr] = ACTIONS(3922), - [anon_sym_volatile] = ACTIONS(3922), - [anon_sym_restrict] = ACTIONS(3922), - [anon_sym___restrict__] = ACTIONS(3922), - [anon_sym__Atomic] = ACTIONS(3922), - [anon_sym__Noreturn] = ACTIONS(3922), - [anon_sym_noreturn] = ACTIONS(3922), - [anon_sym__Nonnull] = ACTIONS(3922), - [anon_sym_mutable] = ACTIONS(3922), - [anon_sym_constinit] = ACTIONS(3922), - [anon_sym_consteval] = ACTIONS(3922), - [anon_sym_alignas] = ACTIONS(3922), - [anon_sym__Alignas] = ACTIONS(3922), - [sym_primitive_type] = ACTIONS(3922), - [anon_sym_enum] = ACTIONS(3922), - [anon_sym_class] = ACTIONS(3922), - [anon_sym_struct] = ACTIONS(3922), - [anon_sym_union] = ACTIONS(3922), - [anon_sym_typename] = ACTIONS(3922), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3922), - [anon_sym_decltype] = ACTIONS(3922), - [anon_sym_explicit] = ACTIONS(3922), - [anon_sym_private] = ACTIONS(3922), - [anon_sym_template] = ACTIONS(3922), - [anon_sym_operator] = ACTIONS(3922), - [anon_sym_friend] = ACTIONS(3922), - [anon_sym_public] = ACTIONS(3922), - [anon_sym_protected] = ACTIONS(3922), - [anon_sym_static_assert] = ACTIONS(3922), - [anon_sym_LBRACK_COLON] = ACTIONS(3924), + [STATE(2834)] = { + [sym_attribute_specifier] = STATE(3136), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7437), + [anon_sym_COMMA] = ACTIONS(7437), + [anon_sym_LPAREN2] = ACTIONS(7437), + [anon_sym_DASH] = ACTIONS(7435), + [anon_sym_PLUS] = ACTIONS(7435), + [anon_sym_STAR] = ACTIONS(7435), + [anon_sym_SLASH] = ACTIONS(7435), + [anon_sym_PERCENT] = ACTIONS(7435), + [anon_sym_PIPE_PIPE] = ACTIONS(7437), + [anon_sym_AMP_AMP] = ACTIONS(7437), + [anon_sym_PIPE] = ACTIONS(7435), + [anon_sym_CARET] = ACTIONS(7435), + [anon_sym_AMP] = ACTIONS(7435), + [anon_sym_EQ_EQ] = ACTIONS(7437), + [anon_sym_BANG_EQ] = ACTIONS(7437), + [anon_sym_GT] = ACTIONS(7435), + [anon_sym_GT_EQ] = ACTIONS(7435), + [anon_sym_LT_EQ] = ACTIONS(7435), + [anon_sym_LT] = ACTIONS(7435), + [anon_sym_LT_LT] = ACTIONS(7435), + [anon_sym_GT_GT] = ACTIONS(7435), + [anon_sym___extension__] = ACTIONS(7437), + [anon_sym___attribute__] = ACTIONS(8265), + [anon_sym___attribute] = ACTIONS(8267), + [anon_sym_LBRACE] = ACTIONS(7437), + [anon_sym_LBRACK] = ACTIONS(7437), + [anon_sym_EQ] = ACTIONS(7435), + [anon_sym_const] = ACTIONS(7435), + [anon_sym_constexpr] = ACTIONS(7437), + [anon_sym_volatile] = ACTIONS(7437), + [anon_sym_restrict] = ACTIONS(7437), + [anon_sym___restrict__] = ACTIONS(7437), + [anon_sym__Atomic] = ACTIONS(7437), + [anon_sym__Noreturn] = ACTIONS(7437), + [anon_sym_noreturn] = ACTIONS(7437), + [anon_sym__Nonnull] = ACTIONS(7437), + [anon_sym_mutable] = ACTIONS(7437), + [anon_sym_constinit] = ACTIONS(7437), + [anon_sym_consteval] = ACTIONS(7437), + [anon_sym_alignas] = ACTIONS(7437), + [anon_sym__Alignas] = ACTIONS(7437), + [anon_sym_QMARK] = ACTIONS(7437), + [anon_sym_STAR_EQ] = ACTIONS(7437), + [anon_sym_SLASH_EQ] = ACTIONS(7437), + [anon_sym_PERCENT_EQ] = ACTIONS(7437), + [anon_sym_PLUS_EQ] = ACTIONS(7437), + [anon_sym_DASH_EQ] = ACTIONS(7437), + [anon_sym_LT_LT_EQ] = ACTIONS(7437), + [anon_sym_GT_GT_EQ] = ACTIONS(7435), + [anon_sym_AMP_EQ] = ACTIONS(7437), + [anon_sym_CARET_EQ] = ACTIONS(7437), + [anon_sym_PIPE_EQ] = ACTIONS(7437), + [anon_sym_and_eq] = ACTIONS(7437), + [anon_sym_or_eq] = ACTIONS(7437), + [anon_sym_xor_eq] = ACTIONS(7437), + [anon_sym_LT_EQ_GT] = ACTIONS(7437), + [anon_sym_or] = ACTIONS(7435), + [anon_sym_and] = ACTIONS(7435), + [anon_sym_bitor] = ACTIONS(7437), + [anon_sym_xor] = ACTIONS(7435), + [anon_sym_bitand] = ACTIONS(7437), + [anon_sym_not_eq] = ACTIONS(7437), + [anon_sym_DASH_DASH] = ACTIONS(7437), + [anon_sym_PLUS_PLUS] = ACTIONS(7437), + [anon_sym_DOT] = ACTIONS(7435), + [anon_sym_DOT_STAR] = ACTIONS(7437), + [anon_sym_DASH_GT] = ACTIONS(7437), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7437), + [anon_sym_override] = ACTIONS(7437), + [anon_sym_GT2] = ACTIONS(7437), + [anon_sym_requires] = ACTIONS(7437), }, - [STATE(3242)] = { - [sym_identifier] = ACTIONS(3998), - [aux_sym_preproc_def_token1] = ACTIONS(3998), - [aux_sym_preproc_if_token1] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), - [sym_preproc_directive] = ACTIONS(3998), - [anon_sym_LPAREN2] = ACTIONS(4000), - [anon_sym_TILDE] = ACTIONS(4000), - [anon_sym_STAR] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym___extension__] = ACTIONS(3998), - [anon_sym_typedef] = ACTIONS(3998), - [anon_sym_virtual] = ACTIONS(3998), - [anon_sym_extern] = ACTIONS(3998), - [anon_sym___attribute__] = ACTIONS(3998), - [anon_sym___attribute] = ACTIONS(3998), - [anon_sym_using] = ACTIONS(3998), - [anon_sym_COLON_COLON] = ACTIONS(4000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), - [anon_sym___declspec] = ACTIONS(3998), - [anon_sym___based] = ACTIONS(3998), - [anon_sym_RBRACE] = ACTIONS(4000), - [anon_sym_signed] = ACTIONS(3998), - [anon_sym_unsigned] = ACTIONS(3998), - [anon_sym_long] = ACTIONS(3998), - [anon_sym_short] = ACTIONS(3998), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_static] = ACTIONS(3998), - [anon_sym_register] = ACTIONS(3998), - [anon_sym_inline] = ACTIONS(3998), - [anon_sym___inline] = ACTIONS(3998), - [anon_sym___inline__] = ACTIONS(3998), - [anon_sym___forceinline] = ACTIONS(3998), - [anon_sym_thread_local] = ACTIONS(3998), - [anon_sym___thread] = ACTIONS(3998), - [anon_sym_const] = ACTIONS(3998), - [anon_sym_constexpr] = ACTIONS(3998), - [anon_sym_volatile] = ACTIONS(3998), - [anon_sym_restrict] = ACTIONS(3998), - [anon_sym___restrict__] = ACTIONS(3998), - [anon_sym__Atomic] = ACTIONS(3998), - [anon_sym__Noreturn] = ACTIONS(3998), - [anon_sym_noreturn] = ACTIONS(3998), - [anon_sym__Nonnull] = ACTIONS(3998), - [anon_sym_mutable] = ACTIONS(3998), - [anon_sym_constinit] = ACTIONS(3998), - [anon_sym_consteval] = ACTIONS(3998), - [anon_sym_alignas] = ACTIONS(3998), - [anon_sym__Alignas] = ACTIONS(3998), - [sym_primitive_type] = ACTIONS(3998), - [anon_sym_enum] = ACTIONS(3998), - [anon_sym_class] = ACTIONS(3998), - [anon_sym_struct] = ACTIONS(3998), - [anon_sym_union] = ACTIONS(3998), - [anon_sym_typename] = ACTIONS(3998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3998), - [anon_sym_decltype] = ACTIONS(3998), - [anon_sym_explicit] = ACTIONS(3998), - [anon_sym_private] = ACTIONS(3998), - [anon_sym_template] = ACTIONS(3998), - [anon_sym_operator] = ACTIONS(3998), - [anon_sym_friend] = ACTIONS(3998), - [anon_sym_public] = ACTIONS(3998), - [anon_sym_protected] = ACTIONS(3998), - [anon_sym_static_assert] = ACTIONS(3998), - [anon_sym_LBRACK_COLON] = ACTIONS(4000), + [STATE(2835)] = { + [sym_identifier] = ACTIONS(4092), + [aux_sym_preproc_def_token1] = ACTIONS(4092), + [aux_sym_preproc_if_token1] = ACTIONS(4092), + [aux_sym_preproc_if_token2] = ACTIONS(4092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4092), + [aux_sym_preproc_else_token1] = ACTIONS(4092), + [aux_sym_preproc_elif_token1] = ACTIONS(4092), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4092), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4092), + [sym_preproc_directive] = ACTIONS(4092), + [anon_sym_LPAREN2] = ACTIONS(4094), + [anon_sym_TILDE] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_AMP] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym___extension__] = ACTIONS(4092), + [anon_sym_typedef] = ACTIONS(4092), + [anon_sym_virtual] = ACTIONS(4092), + [anon_sym_extern] = ACTIONS(4092), + [anon_sym___attribute__] = ACTIONS(4092), + [anon_sym___attribute] = ACTIONS(4092), + [anon_sym_using] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4094), + [anon_sym___declspec] = ACTIONS(4092), + [anon_sym___based] = ACTIONS(4092), + [anon_sym_signed] = ACTIONS(4092), + [anon_sym_unsigned] = ACTIONS(4092), + [anon_sym_long] = ACTIONS(4092), + [anon_sym_short] = ACTIONS(4092), + [anon_sym_LBRACK] = ACTIONS(4092), + [anon_sym_static] = ACTIONS(4092), + [anon_sym_register] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym___inline] = ACTIONS(4092), + [anon_sym___inline__] = ACTIONS(4092), + [anon_sym___forceinline] = ACTIONS(4092), + [anon_sym_thread_local] = ACTIONS(4092), + [anon_sym___thread] = ACTIONS(4092), + [anon_sym_const] = ACTIONS(4092), + [anon_sym_constexpr] = ACTIONS(4092), + [anon_sym_volatile] = ACTIONS(4092), + [anon_sym_restrict] = ACTIONS(4092), + [anon_sym___restrict__] = ACTIONS(4092), + [anon_sym__Atomic] = ACTIONS(4092), + [anon_sym__Noreturn] = ACTIONS(4092), + [anon_sym_noreturn] = ACTIONS(4092), + [anon_sym__Nonnull] = ACTIONS(4092), + [anon_sym_mutable] = ACTIONS(4092), + [anon_sym_constinit] = ACTIONS(4092), + [anon_sym_consteval] = ACTIONS(4092), + [anon_sym_alignas] = ACTIONS(4092), + [anon_sym__Alignas] = ACTIONS(4092), + [sym_primitive_type] = ACTIONS(4092), + [anon_sym_enum] = ACTIONS(4092), + [anon_sym_class] = ACTIONS(4092), + [anon_sym_struct] = ACTIONS(4092), + [anon_sym_union] = ACTIONS(4092), + [anon_sym_typename] = ACTIONS(4092), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4092), + [anon_sym_decltype] = ACTIONS(4092), + [anon_sym_explicit] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_template] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_friend] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_static_assert] = ACTIONS(4092), + [anon_sym_LBRACK_COLON] = ACTIONS(4094), }, - [STATE(3243)] = { + [STATE(2836)] = { + [sym_identifier] = ACTIONS(8726), + [aux_sym_preproc_def_token1] = ACTIONS(8726), + [aux_sym_preproc_if_token1] = ACTIONS(8726), + [aux_sym_preproc_if_token2] = ACTIONS(8726), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8726), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8726), + [aux_sym_preproc_else_token1] = ACTIONS(8726), + [aux_sym_preproc_elif_token1] = ACTIONS(8726), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8726), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8726), + [sym_preproc_directive] = ACTIONS(8726), + [anon_sym_LPAREN2] = ACTIONS(8728), + [anon_sym_TILDE] = ACTIONS(8728), + [anon_sym_STAR] = ACTIONS(8728), + [anon_sym_AMP_AMP] = ACTIONS(8728), + [anon_sym_AMP] = ACTIONS(8726), + [anon_sym_SEMI] = ACTIONS(8728), + [anon_sym___extension__] = ACTIONS(8726), + [anon_sym_typedef] = ACTIONS(8726), + [anon_sym_virtual] = ACTIONS(8726), + [anon_sym_extern] = ACTIONS(8726), + [anon_sym___attribute__] = ACTIONS(8726), + [anon_sym___attribute] = ACTIONS(8726), + [anon_sym_using] = ACTIONS(8726), + [anon_sym_COLON_COLON] = ACTIONS(8728), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8728), + [anon_sym___declspec] = ACTIONS(8726), + [anon_sym___based] = ACTIONS(8726), + [anon_sym_signed] = ACTIONS(8726), + [anon_sym_unsigned] = ACTIONS(8726), + [anon_sym_long] = ACTIONS(8726), + [anon_sym_short] = ACTIONS(8726), + [anon_sym_LBRACK] = ACTIONS(8726), + [anon_sym_static] = ACTIONS(8726), + [anon_sym_register] = ACTIONS(8726), + [anon_sym_inline] = ACTIONS(8726), + [anon_sym___inline] = ACTIONS(8726), + [anon_sym___inline__] = ACTIONS(8726), + [anon_sym___forceinline] = ACTIONS(8726), + [anon_sym_thread_local] = ACTIONS(8726), + [anon_sym___thread] = ACTIONS(8726), + [anon_sym_const] = ACTIONS(8726), + [anon_sym_constexpr] = ACTIONS(8726), + [anon_sym_volatile] = ACTIONS(8726), + [anon_sym_restrict] = ACTIONS(8726), + [anon_sym___restrict__] = ACTIONS(8726), + [anon_sym__Atomic] = ACTIONS(8726), + [anon_sym__Noreturn] = ACTIONS(8726), + [anon_sym_noreturn] = ACTIONS(8726), + [anon_sym__Nonnull] = ACTIONS(8726), + [anon_sym_mutable] = ACTIONS(8726), + [anon_sym_constinit] = ACTIONS(8726), + [anon_sym_consteval] = ACTIONS(8726), + [anon_sym_alignas] = ACTIONS(8726), + [anon_sym__Alignas] = ACTIONS(8726), + [sym_primitive_type] = ACTIONS(8726), + [anon_sym_enum] = ACTIONS(8726), + [anon_sym_class] = ACTIONS(8726), + [anon_sym_struct] = ACTIONS(8726), + [anon_sym_union] = ACTIONS(8726), + [anon_sym_typename] = ACTIONS(8726), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8726), + [anon_sym_decltype] = ACTIONS(8726), + [anon_sym_explicit] = ACTIONS(8726), + [anon_sym_private] = ACTIONS(8726), + [anon_sym_template] = ACTIONS(8726), + [anon_sym_operator] = ACTIONS(8726), + [anon_sym_friend] = ACTIONS(8726), + [anon_sym_public] = ACTIONS(8726), + [anon_sym_protected] = ACTIONS(8726), + [anon_sym_static_assert] = ACTIONS(8726), + [anon_sym_LBRACK_COLON] = ACTIONS(8728), + }, + [STATE(2837)] = { + [sym_identifier] = ACTIONS(4044), + [aux_sym_preproc_def_token1] = ACTIONS(4044), + [aux_sym_preproc_if_token1] = ACTIONS(4044), + [aux_sym_preproc_if_token2] = ACTIONS(4044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4044), + [aux_sym_preproc_else_token1] = ACTIONS(4044), + [aux_sym_preproc_elif_token1] = ACTIONS(4044), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4044), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4044), + [sym_preproc_directive] = ACTIONS(4044), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_TILDE] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym___extension__] = ACTIONS(4044), + [anon_sym_typedef] = ACTIONS(4044), + [anon_sym_virtual] = ACTIONS(4044), + [anon_sym_extern] = ACTIONS(4044), + [anon_sym___attribute__] = ACTIONS(4044), + [anon_sym___attribute] = ACTIONS(4044), + [anon_sym_using] = ACTIONS(4044), + [anon_sym_COLON_COLON] = ACTIONS(4046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4046), + [anon_sym___declspec] = ACTIONS(4044), + [anon_sym___based] = ACTIONS(4044), + [anon_sym_signed] = ACTIONS(4044), + [anon_sym_unsigned] = ACTIONS(4044), + [anon_sym_long] = ACTIONS(4044), + [anon_sym_short] = ACTIONS(4044), + [anon_sym_LBRACK] = ACTIONS(4044), + [anon_sym_static] = ACTIONS(4044), + [anon_sym_register] = ACTIONS(4044), + [anon_sym_inline] = ACTIONS(4044), + [anon_sym___inline] = ACTIONS(4044), + [anon_sym___inline__] = ACTIONS(4044), + [anon_sym___forceinline] = ACTIONS(4044), + [anon_sym_thread_local] = ACTIONS(4044), + [anon_sym___thread] = ACTIONS(4044), + [anon_sym_const] = ACTIONS(4044), + [anon_sym_constexpr] = ACTIONS(4044), + [anon_sym_volatile] = ACTIONS(4044), + [anon_sym_restrict] = ACTIONS(4044), + [anon_sym___restrict__] = ACTIONS(4044), + [anon_sym__Atomic] = ACTIONS(4044), + [anon_sym__Noreturn] = ACTIONS(4044), + [anon_sym_noreturn] = ACTIONS(4044), + [anon_sym__Nonnull] = ACTIONS(4044), + [anon_sym_mutable] = ACTIONS(4044), + [anon_sym_constinit] = ACTIONS(4044), + [anon_sym_consteval] = ACTIONS(4044), + [anon_sym_alignas] = ACTIONS(4044), + [anon_sym__Alignas] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(4044), + [anon_sym_enum] = ACTIONS(4044), + [anon_sym_class] = ACTIONS(4044), + [anon_sym_struct] = ACTIONS(4044), + [anon_sym_union] = ACTIONS(4044), + [anon_sym_typename] = ACTIONS(4044), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4044), + [anon_sym_decltype] = ACTIONS(4044), + [anon_sym_explicit] = ACTIONS(4044), + [anon_sym_private] = ACTIONS(4044), + [anon_sym_template] = ACTIONS(4044), + [anon_sym_operator] = ACTIONS(4044), + [anon_sym_friend] = ACTIONS(4044), + [anon_sym_public] = ACTIONS(4044), + [anon_sym_protected] = ACTIONS(4044), + [anon_sym_static_assert] = ACTIONS(4044), + [anon_sym_LBRACK_COLON] = ACTIONS(4046), + }, + [STATE(2838)] = { [sym_identifier] = ACTIONS(4096), [aux_sym_preproc_def_token1] = ACTIONS(4096), [aux_sym_preproc_if_token1] = ACTIONS(4096), [aux_sym_preproc_if_token2] = ACTIONS(4096), [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), + [aux_sym_preproc_else_token1] = ACTIONS(4096), + [aux_sym_preproc_elif_token1] = ACTIONS(4096), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4096), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4096), [sym_preproc_directive] = ACTIONS(4096), [anon_sym_LPAREN2] = ACTIONS(4098), [anon_sym_TILDE] = ACTIONS(4098), @@ -397674,226 +381790,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(4096), [anon_sym_LBRACK_COLON] = ACTIONS(4098), }, - [STATE(3244)] = { - [sym_identifier] = ACTIONS(4042), - [aux_sym_preproc_def_token1] = ACTIONS(4042), - [aux_sym_preproc_if_token1] = ACTIONS(4042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4042), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4042), - [sym_preproc_directive] = ACTIONS(4042), - [anon_sym_LPAREN2] = ACTIONS(4044), - [anon_sym_TILDE] = ACTIONS(4044), - [anon_sym_STAR] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_SEMI] = ACTIONS(4044), - [anon_sym___extension__] = ACTIONS(4042), - [anon_sym_typedef] = ACTIONS(4042), - [anon_sym_virtual] = ACTIONS(4042), - [anon_sym_extern] = ACTIONS(4042), - [anon_sym___attribute__] = ACTIONS(4042), - [anon_sym___attribute] = ACTIONS(4042), - [anon_sym_using] = ACTIONS(4042), - [anon_sym_COLON_COLON] = ACTIONS(4044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4044), - [anon_sym___declspec] = ACTIONS(4042), - [anon_sym___based] = ACTIONS(4042), - [anon_sym_RBRACE] = ACTIONS(4044), - [anon_sym_signed] = ACTIONS(4042), - [anon_sym_unsigned] = ACTIONS(4042), - [anon_sym_long] = ACTIONS(4042), - [anon_sym_short] = ACTIONS(4042), - [anon_sym_LBRACK] = ACTIONS(4042), - [anon_sym_static] = ACTIONS(4042), - [anon_sym_register] = ACTIONS(4042), - [anon_sym_inline] = ACTIONS(4042), - [anon_sym___inline] = ACTIONS(4042), - [anon_sym___inline__] = ACTIONS(4042), - [anon_sym___forceinline] = ACTIONS(4042), - [anon_sym_thread_local] = ACTIONS(4042), - [anon_sym___thread] = ACTIONS(4042), - [anon_sym_const] = ACTIONS(4042), - [anon_sym_constexpr] = ACTIONS(4042), - [anon_sym_volatile] = ACTIONS(4042), - [anon_sym_restrict] = ACTIONS(4042), - [anon_sym___restrict__] = ACTIONS(4042), - [anon_sym__Atomic] = ACTIONS(4042), - [anon_sym__Noreturn] = ACTIONS(4042), - [anon_sym_noreturn] = ACTIONS(4042), - [anon_sym__Nonnull] = ACTIONS(4042), - [anon_sym_mutable] = ACTIONS(4042), - [anon_sym_constinit] = ACTIONS(4042), - [anon_sym_consteval] = ACTIONS(4042), - [anon_sym_alignas] = ACTIONS(4042), - [anon_sym__Alignas] = ACTIONS(4042), - [sym_primitive_type] = ACTIONS(4042), - [anon_sym_enum] = ACTIONS(4042), - [anon_sym_class] = ACTIONS(4042), - [anon_sym_struct] = ACTIONS(4042), - [anon_sym_union] = ACTIONS(4042), - [anon_sym_typename] = ACTIONS(4042), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4042), - [anon_sym_decltype] = ACTIONS(4042), - [anon_sym_explicit] = ACTIONS(4042), - [anon_sym_private] = ACTIONS(4042), - [anon_sym_template] = ACTIONS(4042), - [anon_sym_operator] = ACTIONS(4042), - [anon_sym_friend] = ACTIONS(4042), - [anon_sym_public] = ACTIONS(4042), - [anon_sym_protected] = ACTIONS(4042), - [anon_sym_static_assert] = ACTIONS(4042), - [anon_sym_LBRACK_COLON] = ACTIONS(4044), - }, - [STATE(3245)] = { - [sym_identifier] = ACTIONS(4107), - [aux_sym_preproc_def_token1] = ACTIONS(4107), - [aux_sym_preproc_if_token1] = ACTIONS(4107), - [aux_sym_preproc_if_token2] = ACTIONS(4107), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4107), - [sym_preproc_directive] = ACTIONS(4107), - [anon_sym_LPAREN2] = ACTIONS(4109), - [anon_sym_TILDE] = ACTIONS(4109), - [anon_sym_STAR] = ACTIONS(4109), - [anon_sym_AMP_AMP] = ACTIONS(4109), - [anon_sym_AMP] = ACTIONS(4107), - [anon_sym_SEMI] = ACTIONS(4109), - [anon_sym___extension__] = ACTIONS(4107), - [anon_sym_typedef] = ACTIONS(4107), - [anon_sym_virtual] = ACTIONS(4107), - [anon_sym_extern] = ACTIONS(4107), - [anon_sym___attribute__] = ACTIONS(4107), - [anon_sym___attribute] = ACTIONS(4107), - [anon_sym_using] = ACTIONS(4107), - [anon_sym_COLON_COLON] = ACTIONS(4109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4109), - [anon_sym___declspec] = ACTIONS(4107), - [anon_sym___based] = ACTIONS(4107), - [anon_sym_signed] = ACTIONS(4107), - [anon_sym_unsigned] = ACTIONS(4107), - [anon_sym_long] = ACTIONS(4107), - [anon_sym_short] = ACTIONS(4107), - [anon_sym_LBRACK] = ACTIONS(4107), - [anon_sym_static] = ACTIONS(4107), - [anon_sym_register] = ACTIONS(4107), - [anon_sym_inline] = ACTIONS(4107), - [anon_sym___inline] = ACTIONS(4107), - [anon_sym___inline__] = ACTIONS(4107), - [anon_sym___forceinline] = ACTIONS(4107), - [anon_sym_thread_local] = ACTIONS(4107), - [anon_sym___thread] = ACTIONS(4107), - [anon_sym_const] = ACTIONS(4107), - [anon_sym_constexpr] = ACTIONS(4107), - [anon_sym_volatile] = ACTIONS(4107), - [anon_sym_restrict] = ACTIONS(4107), - [anon_sym___restrict__] = ACTIONS(4107), - [anon_sym__Atomic] = ACTIONS(4107), - [anon_sym__Noreturn] = ACTIONS(4107), - [anon_sym_noreturn] = ACTIONS(4107), - [anon_sym__Nonnull] = ACTIONS(4107), - [anon_sym_mutable] = ACTIONS(4107), - [anon_sym_constinit] = ACTIONS(4107), - [anon_sym_consteval] = ACTIONS(4107), - [anon_sym_alignas] = ACTIONS(4107), - [anon_sym__Alignas] = ACTIONS(4107), - [sym_primitive_type] = ACTIONS(4107), - [anon_sym_enum] = ACTIONS(4107), - [anon_sym_class] = ACTIONS(4107), - [anon_sym_struct] = ACTIONS(4107), - [anon_sym_union] = ACTIONS(4107), - [anon_sym_typename] = ACTIONS(4107), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4107), - [anon_sym_decltype] = ACTIONS(4107), - [anon_sym_explicit] = ACTIONS(4107), - [anon_sym_private] = ACTIONS(4107), - [anon_sym_template] = ACTIONS(4107), - [anon_sym_operator] = ACTIONS(4107), - [anon_sym_friend] = ACTIONS(4107), - [anon_sym_public] = ACTIONS(4107), - [anon_sym_protected] = ACTIONS(4107), - [anon_sym_static_assert] = ACTIONS(4107), - [anon_sym_LBRACK_COLON] = ACTIONS(4109), - }, - [STATE(3246)] = { - [sym_identifier] = ACTIONS(4111), - [aux_sym_preproc_def_token1] = ACTIONS(4111), - [aux_sym_preproc_if_token1] = ACTIONS(4111), - [aux_sym_preproc_if_token2] = ACTIONS(4111), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4111), - [sym_preproc_directive] = ACTIONS(4111), - [anon_sym_LPAREN2] = ACTIONS(4113), - [anon_sym_TILDE] = ACTIONS(4113), - [anon_sym_STAR] = ACTIONS(4113), - [anon_sym_AMP_AMP] = ACTIONS(4113), - [anon_sym_AMP] = ACTIONS(4111), - [anon_sym_SEMI] = ACTIONS(4113), - [anon_sym___extension__] = ACTIONS(4111), - [anon_sym_typedef] = ACTIONS(4111), - [anon_sym_virtual] = ACTIONS(4111), - [anon_sym_extern] = ACTIONS(4111), - [anon_sym___attribute__] = ACTIONS(4111), - [anon_sym___attribute] = ACTIONS(4111), - [anon_sym_using] = ACTIONS(4111), - [anon_sym_COLON_COLON] = ACTIONS(4113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4113), - [anon_sym___declspec] = ACTIONS(4111), - [anon_sym___based] = ACTIONS(4111), - [anon_sym_signed] = ACTIONS(4111), - [anon_sym_unsigned] = ACTIONS(4111), - [anon_sym_long] = ACTIONS(4111), - [anon_sym_short] = ACTIONS(4111), - [anon_sym_LBRACK] = ACTIONS(4111), - [anon_sym_static] = ACTIONS(4111), - [anon_sym_register] = ACTIONS(4111), - [anon_sym_inline] = ACTIONS(4111), - [anon_sym___inline] = ACTIONS(4111), - [anon_sym___inline__] = ACTIONS(4111), - [anon_sym___forceinline] = ACTIONS(4111), - [anon_sym_thread_local] = ACTIONS(4111), - [anon_sym___thread] = ACTIONS(4111), - [anon_sym_const] = ACTIONS(4111), - [anon_sym_constexpr] = ACTIONS(4111), - [anon_sym_volatile] = ACTIONS(4111), - [anon_sym_restrict] = ACTIONS(4111), - [anon_sym___restrict__] = ACTIONS(4111), - [anon_sym__Atomic] = ACTIONS(4111), - [anon_sym__Noreturn] = ACTIONS(4111), - [anon_sym_noreturn] = ACTIONS(4111), - [anon_sym__Nonnull] = ACTIONS(4111), - [anon_sym_mutable] = ACTIONS(4111), - [anon_sym_constinit] = ACTIONS(4111), - [anon_sym_consteval] = ACTIONS(4111), - [anon_sym_alignas] = ACTIONS(4111), - [anon_sym__Alignas] = ACTIONS(4111), - [sym_primitive_type] = ACTIONS(4111), - [anon_sym_enum] = ACTIONS(4111), - [anon_sym_class] = ACTIONS(4111), - [anon_sym_struct] = ACTIONS(4111), - [anon_sym_union] = ACTIONS(4111), - [anon_sym_typename] = ACTIONS(4111), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4111), - [anon_sym_decltype] = ACTIONS(4111), - [anon_sym_explicit] = ACTIONS(4111), - [anon_sym_private] = ACTIONS(4111), - [anon_sym_template] = ACTIONS(4111), - [anon_sym_operator] = ACTIONS(4111), - [anon_sym_friend] = ACTIONS(4111), - [anon_sym_public] = ACTIONS(4111), - [anon_sym_protected] = ACTIONS(4111), - [anon_sym_static_assert] = ACTIONS(4111), - [anon_sym_LBRACK_COLON] = ACTIONS(4113), + [STATE(2839)] = { + [sym_identifier] = ACTIONS(4084), + [aux_sym_preproc_def_token1] = ACTIONS(4084), + [aux_sym_preproc_if_token1] = ACTIONS(4084), + [aux_sym_preproc_if_token2] = ACTIONS(4084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4084), + [aux_sym_preproc_else_token1] = ACTIONS(4084), + [aux_sym_preproc_elif_token1] = ACTIONS(4084), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4084), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4084), + [sym_preproc_directive] = ACTIONS(4084), + [anon_sym_LPAREN2] = ACTIONS(4086), + [anon_sym_TILDE] = ACTIONS(4086), + [anon_sym_STAR] = ACTIONS(4086), + [anon_sym_AMP_AMP] = ACTIONS(4086), + [anon_sym_AMP] = ACTIONS(4084), + [anon_sym_SEMI] = ACTIONS(4086), + [anon_sym___extension__] = ACTIONS(4084), + [anon_sym_typedef] = ACTIONS(4084), + [anon_sym_virtual] = ACTIONS(4084), + [anon_sym_extern] = ACTIONS(4084), + [anon_sym___attribute__] = ACTIONS(4084), + [anon_sym___attribute] = ACTIONS(4084), + [anon_sym_using] = ACTIONS(4084), + [anon_sym_COLON_COLON] = ACTIONS(4086), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4086), + [anon_sym___declspec] = ACTIONS(4084), + [anon_sym___based] = ACTIONS(4084), + [anon_sym_signed] = ACTIONS(4084), + [anon_sym_unsigned] = ACTIONS(4084), + [anon_sym_long] = ACTIONS(4084), + [anon_sym_short] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_static] = ACTIONS(4084), + [anon_sym_register] = ACTIONS(4084), + [anon_sym_inline] = ACTIONS(4084), + [anon_sym___inline] = ACTIONS(4084), + [anon_sym___inline__] = ACTIONS(4084), + [anon_sym___forceinline] = ACTIONS(4084), + [anon_sym_thread_local] = ACTIONS(4084), + [anon_sym___thread] = ACTIONS(4084), + [anon_sym_const] = ACTIONS(4084), + [anon_sym_constexpr] = ACTIONS(4084), + [anon_sym_volatile] = ACTIONS(4084), + [anon_sym_restrict] = ACTIONS(4084), + [anon_sym___restrict__] = ACTIONS(4084), + [anon_sym__Atomic] = ACTIONS(4084), + [anon_sym__Noreturn] = ACTIONS(4084), + [anon_sym_noreturn] = ACTIONS(4084), + [anon_sym__Nonnull] = ACTIONS(4084), + [anon_sym_mutable] = ACTIONS(4084), + [anon_sym_constinit] = ACTIONS(4084), + [anon_sym_consteval] = ACTIONS(4084), + [anon_sym_alignas] = ACTIONS(4084), + [anon_sym__Alignas] = ACTIONS(4084), + [sym_primitive_type] = ACTIONS(4084), + [anon_sym_enum] = ACTIONS(4084), + [anon_sym_class] = ACTIONS(4084), + [anon_sym_struct] = ACTIONS(4084), + [anon_sym_union] = ACTIONS(4084), + [anon_sym_typename] = ACTIONS(4084), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4084), + [anon_sym_decltype] = ACTIONS(4084), + [anon_sym_explicit] = ACTIONS(4084), + [anon_sym_private] = ACTIONS(4084), + [anon_sym_template] = ACTIONS(4084), + [anon_sym_operator] = ACTIONS(4084), + [anon_sym_friend] = ACTIONS(4084), + [anon_sym_public] = ACTIONS(4084), + [anon_sym_protected] = ACTIONS(4084), + [anon_sym_static_assert] = ACTIONS(4084), + [anon_sym_LBRACK_COLON] = ACTIONS(4086), }, - [STATE(3247)] = { + [STATE(2840)] = { [sym_identifier] = ACTIONS(4100), [aux_sym_preproc_def_token1] = ACTIONS(4100), [aux_sym_preproc_if_token1] = ACTIONS(4100), [aux_sym_preproc_if_token2] = ACTIONS(4100), [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), + [aux_sym_preproc_else_token1] = ACTIONS(4100), + [aux_sym_preproc_elif_token1] = ACTIONS(4100), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4100), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4100), [sym_preproc_directive] = ACTIONS(4100), [anon_sym_LPAREN2] = ACTIONS(4102), [anon_sym_TILDE] = ACTIONS(4102), @@ -397958,298 +381940,1451 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(4100), [anon_sym_LBRACK_COLON] = ACTIONS(4102), }, - [STATE(3248)] = { - [sym_virtual_specifier] = STATE(3223), - [aux_sym__function_postfix_repeat1] = STATE(3223), + [STATE(2841)] = { + [sym_identifier] = ACTIONS(3604), + [aux_sym_preproc_def_token1] = ACTIONS(3604), + [aux_sym_preproc_if_token1] = ACTIONS(3604), + [aux_sym_preproc_if_token2] = ACTIONS(3604), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3604), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3604), + [aux_sym_preproc_else_token1] = ACTIONS(3604), + [aux_sym_preproc_elif_token1] = ACTIONS(3604), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3604), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3604), + [sym_preproc_directive] = ACTIONS(3604), + [anon_sym_LPAREN2] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3606), + [anon_sym_STAR] = ACTIONS(3606), + [anon_sym_AMP_AMP] = ACTIONS(3606), + [anon_sym_AMP] = ACTIONS(3604), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym___extension__] = ACTIONS(3604), + [anon_sym_typedef] = ACTIONS(3604), + [anon_sym_virtual] = ACTIONS(3604), + [anon_sym_extern] = ACTIONS(3604), + [anon_sym___attribute__] = ACTIONS(3604), + [anon_sym___attribute] = ACTIONS(3604), + [anon_sym_using] = ACTIONS(3604), + [anon_sym_COLON_COLON] = ACTIONS(3606), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3606), + [anon_sym___declspec] = ACTIONS(3604), + [anon_sym___based] = ACTIONS(3604), + [anon_sym_signed] = ACTIONS(3604), + [anon_sym_unsigned] = ACTIONS(3604), + [anon_sym_long] = ACTIONS(3604), + [anon_sym_short] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3604), + [anon_sym_static] = ACTIONS(3604), + [anon_sym_register] = ACTIONS(3604), + [anon_sym_inline] = ACTIONS(3604), + [anon_sym___inline] = ACTIONS(3604), + [anon_sym___inline__] = ACTIONS(3604), + [anon_sym___forceinline] = ACTIONS(3604), + [anon_sym_thread_local] = ACTIONS(3604), + [anon_sym___thread] = ACTIONS(3604), + [anon_sym_const] = ACTIONS(3604), + [anon_sym_constexpr] = ACTIONS(3604), + [anon_sym_volatile] = ACTIONS(3604), + [anon_sym_restrict] = ACTIONS(3604), + [anon_sym___restrict__] = ACTIONS(3604), + [anon_sym__Atomic] = ACTIONS(3604), + [anon_sym__Noreturn] = ACTIONS(3604), + [anon_sym_noreturn] = ACTIONS(3604), + [anon_sym__Nonnull] = ACTIONS(3604), + [anon_sym_mutable] = ACTIONS(3604), + [anon_sym_constinit] = ACTIONS(3604), + [anon_sym_consteval] = ACTIONS(3604), + [anon_sym_alignas] = ACTIONS(3604), + [anon_sym__Alignas] = ACTIONS(3604), + [sym_primitive_type] = ACTIONS(3604), + [anon_sym_enum] = ACTIONS(3604), + [anon_sym_class] = ACTIONS(3604), + [anon_sym_struct] = ACTIONS(3604), + [anon_sym_union] = ACTIONS(3604), + [anon_sym_typename] = ACTIONS(3604), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3604), + [anon_sym_decltype] = ACTIONS(3604), + [anon_sym_explicit] = ACTIONS(3604), + [anon_sym_private] = ACTIONS(3604), + [anon_sym_template] = ACTIONS(3604), + [anon_sym_operator] = ACTIONS(3604), + [anon_sym_friend] = ACTIONS(3604), + [anon_sym_public] = ACTIONS(3604), + [anon_sym_protected] = ACTIONS(3604), + [anon_sym_static_assert] = ACTIONS(3604), + [anon_sym_LBRACK_COLON] = ACTIONS(3606), + }, + [STATE(2842)] = { + [sym_identifier] = ACTIONS(8734), + [aux_sym_preproc_def_token1] = ACTIONS(8734), + [aux_sym_preproc_if_token1] = ACTIONS(8734), + [aux_sym_preproc_if_token2] = ACTIONS(8734), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8734), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8734), + [aux_sym_preproc_else_token1] = ACTIONS(8734), + [aux_sym_preproc_elif_token1] = ACTIONS(8734), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8734), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8734), + [sym_preproc_directive] = ACTIONS(8734), + [anon_sym_LPAREN2] = ACTIONS(8736), + [anon_sym_TILDE] = ACTIONS(8736), + [anon_sym_STAR] = ACTIONS(8736), + [anon_sym_AMP_AMP] = ACTIONS(8736), + [anon_sym_AMP] = ACTIONS(8734), + [anon_sym_SEMI] = ACTIONS(8736), + [anon_sym___extension__] = ACTIONS(8734), + [anon_sym_typedef] = ACTIONS(8734), + [anon_sym_virtual] = ACTIONS(8734), + [anon_sym_extern] = ACTIONS(8734), + [anon_sym___attribute__] = ACTIONS(8734), + [anon_sym___attribute] = ACTIONS(8734), + [anon_sym_using] = ACTIONS(8734), + [anon_sym_COLON_COLON] = ACTIONS(8736), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8736), + [anon_sym___declspec] = ACTIONS(8734), + [anon_sym___based] = ACTIONS(8734), + [anon_sym_signed] = ACTIONS(8734), + [anon_sym_unsigned] = ACTIONS(8734), + [anon_sym_long] = ACTIONS(8734), + [anon_sym_short] = ACTIONS(8734), + [anon_sym_LBRACK] = ACTIONS(8734), + [anon_sym_static] = ACTIONS(8734), + [anon_sym_register] = ACTIONS(8734), + [anon_sym_inline] = ACTIONS(8734), + [anon_sym___inline] = ACTIONS(8734), + [anon_sym___inline__] = ACTIONS(8734), + [anon_sym___forceinline] = ACTIONS(8734), + [anon_sym_thread_local] = ACTIONS(8734), + [anon_sym___thread] = ACTIONS(8734), + [anon_sym_const] = ACTIONS(8734), + [anon_sym_constexpr] = ACTIONS(8734), + [anon_sym_volatile] = ACTIONS(8734), + [anon_sym_restrict] = ACTIONS(8734), + [anon_sym___restrict__] = ACTIONS(8734), + [anon_sym__Atomic] = ACTIONS(8734), + [anon_sym__Noreturn] = ACTIONS(8734), + [anon_sym_noreturn] = ACTIONS(8734), + [anon_sym__Nonnull] = ACTIONS(8734), + [anon_sym_mutable] = ACTIONS(8734), + [anon_sym_constinit] = ACTIONS(8734), + [anon_sym_consteval] = ACTIONS(8734), + [anon_sym_alignas] = ACTIONS(8734), + [anon_sym__Alignas] = ACTIONS(8734), + [sym_primitive_type] = ACTIONS(8734), + [anon_sym_enum] = ACTIONS(8734), + [anon_sym_class] = ACTIONS(8734), + [anon_sym_struct] = ACTIONS(8734), + [anon_sym_union] = ACTIONS(8734), + [anon_sym_typename] = ACTIONS(8734), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8734), + [anon_sym_decltype] = ACTIONS(8734), + [anon_sym_explicit] = ACTIONS(8734), + [anon_sym_private] = ACTIONS(8734), + [anon_sym_template] = ACTIONS(8734), + [anon_sym_operator] = ACTIONS(8734), + [anon_sym_friend] = ACTIONS(8734), + [anon_sym_public] = ACTIONS(8734), + [anon_sym_protected] = ACTIONS(8734), + [anon_sym_static_assert] = ACTIONS(8734), + [anon_sym_LBRACK_COLON] = ACTIONS(8736), + }, + [STATE(2843)] = { + [sym_decltype_auto] = STATE(3205), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_RBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8639), + [anon_sym_decltype] = ACTIONS(7073), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), + }, + [STATE(2844)] = { + [sym_identifier] = ACTIONS(8738), + [aux_sym_preproc_def_token1] = ACTIONS(8738), + [aux_sym_preproc_if_token1] = ACTIONS(8738), + [aux_sym_preproc_if_token2] = ACTIONS(8738), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8738), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8738), + [aux_sym_preproc_else_token1] = ACTIONS(8738), + [aux_sym_preproc_elif_token1] = ACTIONS(8738), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8738), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8738), + [sym_preproc_directive] = ACTIONS(8738), + [anon_sym_LPAREN2] = ACTIONS(8740), + [anon_sym_TILDE] = ACTIONS(8740), + [anon_sym_STAR] = ACTIONS(8740), + [anon_sym_AMP_AMP] = ACTIONS(8740), + [anon_sym_AMP] = ACTIONS(8738), + [anon_sym_SEMI] = ACTIONS(8740), + [anon_sym___extension__] = ACTIONS(8738), + [anon_sym_typedef] = ACTIONS(8738), + [anon_sym_virtual] = ACTIONS(8738), + [anon_sym_extern] = ACTIONS(8738), + [anon_sym___attribute__] = ACTIONS(8738), + [anon_sym___attribute] = ACTIONS(8738), + [anon_sym_using] = ACTIONS(8738), + [anon_sym_COLON_COLON] = ACTIONS(8740), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8740), + [anon_sym___declspec] = ACTIONS(8738), + [anon_sym___based] = ACTIONS(8738), + [anon_sym_signed] = ACTIONS(8738), + [anon_sym_unsigned] = ACTIONS(8738), + [anon_sym_long] = ACTIONS(8738), + [anon_sym_short] = ACTIONS(8738), + [anon_sym_LBRACK] = ACTIONS(8738), + [anon_sym_static] = ACTIONS(8738), + [anon_sym_register] = ACTIONS(8738), + [anon_sym_inline] = ACTIONS(8738), + [anon_sym___inline] = ACTIONS(8738), + [anon_sym___inline__] = ACTIONS(8738), + [anon_sym___forceinline] = ACTIONS(8738), + [anon_sym_thread_local] = ACTIONS(8738), + [anon_sym___thread] = ACTIONS(8738), + [anon_sym_const] = ACTIONS(8738), + [anon_sym_constexpr] = ACTIONS(8738), + [anon_sym_volatile] = ACTIONS(8738), + [anon_sym_restrict] = ACTIONS(8738), + [anon_sym___restrict__] = ACTIONS(8738), + [anon_sym__Atomic] = ACTIONS(8738), + [anon_sym__Noreturn] = ACTIONS(8738), + [anon_sym_noreturn] = ACTIONS(8738), + [anon_sym__Nonnull] = ACTIONS(8738), + [anon_sym_mutable] = ACTIONS(8738), + [anon_sym_constinit] = ACTIONS(8738), + [anon_sym_consteval] = ACTIONS(8738), + [anon_sym_alignas] = ACTIONS(8738), + [anon_sym__Alignas] = ACTIONS(8738), + [sym_primitive_type] = ACTIONS(8738), + [anon_sym_enum] = ACTIONS(8738), + [anon_sym_class] = ACTIONS(8738), + [anon_sym_struct] = ACTIONS(8738), + [anon_sym_union] = ACTIONS(8738), + [anon_sym_typename] = ACTIONS(8738), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8738), + [anon_sym_decltype] = ACTIONS(8738), + [anon_sym_explicit] = ACTIONS(8738), + [anon_sym_private] = ACTIONS(8738), + [anon_sym_template] = ACTIONS(8738), + [anon_sym_operator] = ACTIONS(8738), + [anon_sym_friend] = ACTIONS(8738), + [anon_sym_public] = ACTIONS(8738), + [anon_sym_protected] = ACTIONS(8738), + [anon_sym_static_assert] = ACTIONS(8738), + [anon_sym_LBRACK_COLON] = ACTIONS(8740), + }, + [STATE(2845)] = { + [sym_identifier] = ACTIONS(4266), + [aux_sym_preproc_def_token1] = ACTIONS(4266), + [aux_sym_preproc_if_token1] = ACTIONS(4266), + [aux_sym_preproc_if_token2] = ACTIONS(4266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4266), + [aux_sym_preproc_else_token1] = ACTIONS(4266), + [aux_sym_preproc_elif_token1] = ACTIONS(4266), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4266), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4266), + [sym_preproc_directive] = ACTIONS(4266), + [anon_sym_LPAREN2] = ACTIONS(4268), + [anon_sym_TILDE] = ACTIONS(4268), + [anon_sym_STAR] = ACTIONS(4268), + [anon_sym_AMP_AMP] = ACTIONS(4268), + [anon_sym_AMP] = ACTIONS(4266), + [anon_sym_SEMI] = ACTIONS(4268), + [anon_sym___extension__] = ACTIONS(4266), + [anon_sym_typedef] = ACTIONS(4266), + [anon_sym_virtual] = ACTIONS(4266), + [anon_sym_extern] = ACTIONS(4266), + [anon_sym___attribute__] = ACTIONS(4266), + [anon_sym___attribute] = ACTIONS(4266), + [anon_sym_using] = ACTIONS(4266), + [anon_sym_COLON_COLON] = ACTIONS(4268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4268), + [anon_sym___declspec] = ACTIONS(4266), + [anon_sym___based] = ACTIONS(4266), + [anon_sym_signed] = ACTIONS(4266), + [anon_sym_unsigned] = ACTIONS(4266), + [anon_sym_long] = ACTIONS(4266), + [anon_sym_short] = ACTIONS(4266), + [anon_sym_LBRACK] = ACTIONS(4266), + [anon_sym_static] = ACTIONS(4266), + [anon_sym_register] = ACTIONS(4266), + [anon_sym_inline] = ACTIONS(4266), + [anon_sym___inline] = ACTIONS(4266), + [anon_sym___inline__] = ACTIONS(4266), + [anon_sym___forceinline] = ACTIONS(4266), + [anon_sym_thread_local] = ACTIONS(4266), + [anon_sym___thread] = ACTIONS(4266), + [anon_sym_const] = ACTIONS(4266), + [anon_sym_constexpr] = ACTIONS(4266), + [anon_sym_volatile] = ACTIONS(4266), + [anon_sym_restrict] = ACTIONS(4266), + [anon_sym___restrict__] = ACTIONS(4266), + [anon_sym__Atomic] = ACTIONS(4266), + [anon_sym__Noreturn] = ACTIONS(4266), + [anon_sym_noreturn] = ACTIONS(4266), + [anon_sym__Nonnull] = ACTIONS(4266), + [anon_sym_mutable] = ACTIONS(4266), + [anon_sym_constinit] = ACTIONS(4266), + [anon_sym_consteval] = ACTIONS(4266), + [anon_sym_alignas] = ACTIONS(4266), + [anon_sym__Alignas] = ACTIONS(4266), + [sym_primitive_type] = ACTIONS(4266), + [anon_sym_enum] = ACTIONS(4266), + [anon_sym_class] = ACTIONS(4266), + [anon_sym_struct] = ACTIONS(4266), + [anon_sym_union] = ACTIONS(4266), + [anon_sym_typename] = ACTIONS(4266), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4266), + [anon_sym_decltype] = ACTIONS(4266), + [anon_sym_explicit] = ACTIONS(4266), + [anon_sym_private] = ACTIONS(4266), + [anon_sym_template] = ACTIONS(4266), + [anon_sym_operator] = ACTIONS(4266), + [anon_sym_friend] = ACTIONS(4266), + [anon_sym_public] = ACTIONS(4266), + [anon_sym_protected] = ACTIONS(4266), + [anon_sym_static_assert] = ACTIONS(4266), + [anon_sym_LBRACK_COLON] = ACTIONS(4268), + }, + [STATE(2846)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6596), + [anon_sym_COMMA] = ACTIONS(6596), + [anon_sym_RPAREN] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6603), + [anon_sym_PLUS] = ACTIONS(6603), + [anon_sym_STAR] = ACTIONS(6605), + [anon_sym_SLASH] = ACTIONS(6603), + [anon_sym_PERCENT] = ACTIONS(6603), + [anon_sym_PIPE_PIPE] = ACTIONS(6596), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6603), + [anon_sym_CARET] = ACTIONS(6603), + [anon_sym_AMP] = ACTIONS(6605), + [anon_sym_EQ_EQ] = ACTIONS(6596), + [anon_sym_BANG_EQ] = ACTIONS(6596), + [anon_sym_GT] = ACTIONS(6603), + [anon_sym_GT_EQ] = ACTIONS(6596), + [anon_sym_LT_EQ] = ACTIONS(6603), + [anon_sym_LT] = ACTIONS(6603), + [anon_sym_LT_LT] = ACTIONS(6603), + [anon_sym_GT_GT] = ACTIONS(6603), + [anon_sym_SEMI] = ACTIONS(6596), + [anon_sym___extension__] = ACTIONS(6601), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6596), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_LBRACK] = ACTIONS(6605), + [anon_sym_EQ] = ACTIONS(6603), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6601), + [anon_sym_volatile] = ACTIONS(6601), + [anon_sym_restrict] = ACTIONS(6601), + [anon_sym___restrict__] = ACTIONS(6601), + [anon_sym__Atomic] = ACTIONS(6601), + [anon_sym__Noreturn] = ACTIONS(6601), + [anon_sym_noreturn] = ACTIONS(6601), + [anon_sym__Nonnull] = ACTIONS(6601), + [anon_sym_mutable] = ACTIONS(6601), + [anon_sym_constinit] = ACTIONS(6601), + [anon_sym_consteval] = ACTIONS(6601), + [anon_sym_alignas] = ACTIONS(6601), + [anon_sym__Alignas] = ACTIONS(6601), + [anon_sym_QMARK] = ACTIONS(6596), + [anon_sym_STAR_EQ] = ACTIONS(6596), + [anon_sym_SLASH_EQ] = ACTIONS(6596), + [anon_sym_PERCENT_EQ] = ACTIONS(6596), + [anon_sym_PLUS_EQ] = ACTIONS(6596), + [anon_sym_DASH_EQ] = ACTIONS(6596), + [anon_sym_LT_LT_EQ] = ACTIONS(6596), + [anon_sym_GT_GT_EQ] = ACTIONS(6596), + [anon_sym_AMP_EQ] = ACTIONS(6596), + [anon_sym_CARET_EQ] = ACTIONS(6596), + [anon_sym_PIPE_EQ] = ACTIONS(6596), + [anon_sym_and_eq] = ACTIONS(6596), + [anon_sym_or_eq] = ACTIONS(6596), + [anon_sym_xor_eq] = ACTIONS(6596), + [anon_sym_LT_EQ_GT] = ACTIONS(6596), + [anon_sym_or] = ACTIONS(6603), + [anon_sym_and] = ACTIONS(6603), + [anon_sym_bitor] = ACTIONS(6596), + [anon_sym_xor] = ACTIONS(6603), + [anon_sym_bitand] = ACTIONS(6596), + [anon_sym_not_eq] = ACTIONS(6596), + [anon_sym_DASH_DASH] = ACTIONS(6596), + [anon_sym_PLUS_PLUS] = ACTIONS(6596), + [anon_sym_DOT] = ACTIONS(6603), + [anon_sym_DOT_STAR] = ACTIONS(6596), + [anon_sym_DASH_GT] = ACTIONS(6603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6601), + [anon_sym_decltype] = ACTIONS(6601), + [anon_sym_DASH_GT_STAR] = ACTIONS(6596), + }, + [STATE(2847)] = { + [sym_attribute_specifier] = STATE(3102), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7549), + [anon_sym_COMMA] = ACTIONS(7549), + [anon_sym_LPAREN2] = ACTIONS(7549), + [anon_sym_DASH] = ACTIONS(7547), + [anon_sym_PLUS] = ACTIONS(7547), + [anon_sym_STAR] = ACTIONS(7547), + [anon_sym_SLASH] = ACTIONS(7547), + [anon_sym_PERCENT] = ACTIONS(7547), + [anon_sym_PIPE_PIPE] = ACTIONS(7549), + [anon_sym_AMP_AMP] = ACTIONS(7549), + [anon_sym_PIPE] = ACTIONS(7547), + [anon_sym_CARET] = ACTIONS(7547), + [anon_sym_AMP] = ACTIONS(7547), + [anon_sym_EQ_EQ] = ACTIONS(7549), + [anon_sym_BANG_EQ] = ACTIONS(7549), + [anon_sym_GT] = ACTIONS(7547), + [anon_sym_GT_EQ] = ACTIONS(7549), + [anon_sym_LT_EQ] = ACTIONS(7547), + [anon_sym_LT] = ACTIONS(7547), + [anon_sym_LT_LT] = ACTIONS(7547), + [anon_sym_GT_GT] = ACTIONS(7547), + [anon_sym___extension__] = ACTIONS(7549), + [anon_sym___attribute__] = ACTIONS(8293), + [anon_sym___attribute] = ACTIONS(8295), + [anon_sym_LBRACE] = ACTIONS(7549), + [anon_sym_LBRACK] = ACTIONS(7549), + [anon_sym_RBRACK] = ACTIONS(7549), + [anon_sym_EQ] = ACTIONS(7547), + [anon_sym_const] = ACTIONS(7547), + [anon_sym_constexpr] = ACTIONS(7549), + [anon_sym_volatile] = ACTIONS(7549), + [anon_sym_restrict] = ACTIONS(7549), + [anon_sym___restrict__] = ACTIONS(7549), + [anon_sym__Atomic] = ACTIONS(7549), + [anon_sym__Noreturn] = ACTIONS(7549), + [anon_sym_noreturn] = ACTIONS(7549), + [anon_sym__Nonnull] = ACTIONS(7549), + [anon_sym_mutable] = ACTIONS(7549), + [anon_sym_constinit] = ACTIONS(7549), + [anon_sym_consteval] = ACTIONS(7549), + [anon_sym_alignas] = ACTIONS(7549), + [anon_sym__Alignas] = ACTIONS(7549), + [anon_sym_QMARK] = ACTIONS(7549), + [anon_sym_STAR_EQ] = ACTIONS(7549), + [anon_sym_SLASH_EQ] = ACTIONS(7549), + [anon_sym_PERCENT_EQ] = ACTIONS(7549), + [anon_sym_PLUS_EQ] = ACTIONS(7549), + [anon_sym_DASH_EQ] = ACTIONS(7549), + [anon_sym_LT_LT_EQ] = ACTIONS(7549), + [anon_sym_GT_GT_EQ] = ACTIONS(7549), + [anon_sym_AMP_EQ] = ACTIONS(7549), + [anon_sym_CARET_EQ] = ACTIONS(7549), + [anon_sym_PIPE_EQ] = ACTIONS(7549), + [anon_sym_and_eq] = ACTIONS(7549), + [anon_sym_or_eq] = ACTIONS(7549), + [anon_sym_xor_eq] = ACTIONS(7549), + [anon_sym_LT_EQ_GT] = ACTIONS(7549), + [anon_sym_or] = ACTIONS(7547), + [anon_sym_and] = ACTIONS(7547), + [anon_sym_bitor] = ACTIONS(7549), + [anon_sym_xor] = ACTIONS(7547), + [anon_sym_bitand] = ACTIONS(7549), + [anon_sym_not_eq] = ACTIONS(7549), + [anon_sym_DASH_DASH] = ACTIONS(7549), + [anon_sym_PLUS_PLUS] = ACTIONS(7549), + [anon_sym_DOT] = ACTIONS(7547), + [anon_sym_DOT_STAR] = ACTIONS(7549), + [anon_sym_DASH_GT] = ACTIONS(7549), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7549), + [anon_sym_override] = ACTIONS(7549), + [anon_sym_requires] = ACTIONS(7549), + }, + [STATE(2848)] = { + [sym_attribute_specifier] = STATE(3196), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7553), + [anon_sym_COMMA] = ACTIONS(7553), + [anon_sym_LPAREN2] = ACTIONS(7553), + [anon_sym_DASH] = ACTIONS(7551), + [anon_sym_PLUS] = ACTIONS(7551), + [anon_sym_STAR] = ACTIONS(7551), + [anon_sym_SLASH] = ACTIONS(7551), + [anon_sym_PERCENT] = ACTIONS(7551), + [anon_sym_PIPE_PIPE] = ACTIONS(7553), + [anon_sym_AMP_AMP] = ACTIONS(7553), + [anon_sym_PIPE] = ACTIONS(7551), + [anon_sym_CARET] = ACTIONS(7551), + [anon_sym_AMP] = ACTIONS(7551), + [anon_sym_EQ_EQ] = ACTIONS(7553), + [anon_sym_BANG_EQ] = ACTIONS(7553), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_GT_EQ] = ACTIONS(7553), + [anon_sym_LT_EQ] = ACTIONS(7551), + [anon_sym_LT] = ACTIONS(7551), + [anon_sym_LT_LT] = ACTIONS(7551), + [anon_sym_GT_GT] = ACTIONS(7551), + [anon_sym___extension__] = ACTIONS(7553), + [anon_sym___attribute__] = ACTIONS(8293), + [anon_sym___attribute] = ACTIONS(8295), + [anon_sym_LBRACE] = ACTIONS(7553), + [anon_sym_LBRACK] = ACTIONS(7553), + [anon_sym_RBRACK] = ACTIONS(7553), + [anon_sym_EQ] = ACTIONS(7551), + [anon_sym_const] = ACTIONS(7551), + [anon_sym_constexpr] = ACTIONS(7553), + [anon_sym_volatile] = ACTIONS(7553), + [anon_sym_restrict] = ACTIONS(7553), + [anon_sym___restrict__] = ACTIONS(7553), + [anon_sym__Atomic] = ACTIONS(7553), + [anon_sym__Noreturn] = ACTIONS(7553), + [anon_sym_noreturn] = ACTIONS(7553), + [anon_sym__Nonnull] = ACTIONS(7553), + [anon_sym_mutable] = ACTIONS(7553), + [anon_sym_constinit] = ACTIONS(7553), + [anon_sym_consteval] = ACTIONS(7553), + [anon_sym_alignas] = ACTIONS(7553), + [anon_sym__Alignas] = ACTIONS(7553), + [anon_sym_QMARK] = ACTIONS(7553), + [anon_sym_STAR_EQ] = ACTIONS(7553), + [anon_sym_SLASH_EQ] = ACTIONS(7553), + [anon_sym_PERCENT_EQ] = ACTIONS(7553), + [anon_sym_PLUS_EQ] = ACTIONS(7553), + [anon_sym_DASH_EQ] = ACTIONS(7553), + [anon_sym_LT_LT_EQ] = ACTIONS(7553), + [anon_sym_GT_GT_EQ] = ACTIONS(7553), + [anon_sym_AMP_EQ] = ACTIONS(7553), + [anon_sym_CARET_EQ] = ACTIONS(7553), + [anon_sym_PIPE_EQ] = ACTIONS(7553), + [anon_sym_and_eq] = ACTIONS(7553), + [anon_sym_or_eq] = ACTIONS(7553), + [anon_sym_xor_eq] = ACTIONS(7553), + [anon_sym_LT_EQ_GT] = ACTIONS(7553), + [anon_sym_or] = ACTIONS(7551), + [anon_sym_and] = ACTIONS(7551), + [anon_sym_bitor] = ACTIONS(7553), + [anon_sym_xor] = ACTIONS(7551), + [anon_sym_bitand] = ACTIONS(7553), + [anon_sym_not_eq] = ACTIONS(7553), + [anon_sym_DASH_DASH] = ACTIONS(7553), + [anon_sym_PLUS_PLUS] = ACTIONS(7553), + [anon_sym_DOT] = ACTIONS(7551), + [anon_sym_DOT_STAR] = ACTIONS(7553), + [anon_sym_DASH_GT] = ACTIONS(7553), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7553), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_requires] = ACTIONS(7553), + }, + [STATE(2849)] = { + [sym_identifier] = ACTIONS(8742), + [aux_sym_preproc_def_token1] = ACTIONS(8742), + [aux_sym_preproc_if_token1] = ACTIONS(8742), + [aux_sym_preproc_if_token2] = ACTIONS(8742), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8742), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8742), + [aux_sym_preproc_else_token1] = ACTIONS(8742), + [aux_sym_preproc_elif_token1] = ACTIONS(8742), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8742), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8742), + [sym_preproc_directive] = ACTIONS(8742), + [anon_sym_LPAREN2] = ACTIONS(8744), + [anon_sym_TILDE] = ACTIONS(8744), + [anon_sym_STAR] = ACTIONS(8744), + [anon_sym_AMP_AMP] = ACTIONS(8744), + [anon_sym_AMP] = ACTIONS(8742), + [anon_sym_SEMI] = ACTIONS(8744), + [anon_sym___extension__] = ACTIONS(8742), + [anon_sym_typedef] = ACTIONS(8742), + [anon_sym_virtual] = ACTIONS(8742), + [anon_sym_extern] = ACTIONS(8742), + [anon_sym___attribute__] = ACTIONS(8742), + [anon_sym___attribute] = ACTIONS(8742), + [anon_sym_using] = ACTIONS(8742), + [anon_sym_COLON_COLON] = ACTIONS(8744), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8744), + [anon_sym___declspec] = ACTIONS(8742), + [anon_sym___based] = ACTIONS(8742), + [anon_sym_signed] = ACTIONS(8742), + [anon_sym_unsigned] = ACTIONS(8742), + [anon_sym_long] = ACTIONS(8742), + [anon_sym_short] = ACTIONS(8742), + [anon_sym_LBRACK] = ACTIONS(8742), + [anon_sym_static] = ACTIONS(8742), + [anon_sym_register] = ACTIONS(8742), + [anon_sym_inline] = ACTIONS(8742), + [anon_sym___inline] = ACTIONS(8742), + [anon_sym___inline__] = ACTIONS(8742), + [anon_sym___forceinline] = ACTIONS(8742), + [anon_sym_thread_local] = ACTIONS(8742), + [anon_sym___thread] = ACTIONS(8742), + [anon_sym_const] = ACTIONS(8742), + [anon_sym_constexpr] = ACTIONS(8742), + [anon_sym_volatile] = ACTIONS(8742), + [anon_sym_restrict] = ACTIONS(8742), + [anon_sym___restrict__] = ACTIONS(8742), + [anon_sym__Atomic] = ACTIONS(8742), + [anon_sym__Noreturn] = ACTIONS(8742), + [anon_sym_noreturn] = ACTIONS(8742), + [anon_sym__Nonnull] = ACTIONS(8742), + [anon_sym_mutable] = ACTIONS(8742), + [anon_sym_constinit] = ACTIONS(8742), + [anon_sym_consteval] = ACTIONS(8742), + [anon_sym_alignas] = ACTIONS(8742), + [anon_sym__Alignas] = ACTIONS(8742), + [sym_primitive_type] = ACTIONS(8742), + [anon_sym_enum] = ACTIONS(8742), + [anon_sym_class] = ACTIONS(8742), + [anon_sym_struct] = ACTIONS(8742), + [anon_sym_union] = ACTIONS(8742), + [anon_sym_typename] = ACTIONS(8742), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8742), + [anon_sym_decltype] = ACTIONS(8742), + [anon_sym_explicit] = ACTIONS(8742), + [anon_sym_private] = ACTIONS(8742), + [anon_sym_template] = ACTIONS(8742), + [anon_sym_operator] = ACTIONS(8742), + [anon_sym_friend] = ACTIONS(8742), + [anon_sym_public] = ACTIONS(8742), + [anon_sym_protected] = ACTIONS(8742), + [anon_sym_static_assert] = ACTIONS(8742), + [anon_sym_LBRACK_COLON] = ACTIONS(8744), + }, + [STATE(2850)] = { + [sym_identifier] = ACTIONS(8746), + [aux_sym_preproc_def_token1] = ACTIONS(8746), + [aux_sym_preproc_if_token1] = ACTIONS(8746), + [aux_sym_preproc_if_token2] = ACTIONS(8746), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8746), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8746), + [aux_sym_preproc_else_token1] = ACTIONS(8746), + [aux_sym_preproc_elif_token1] = ACTIONS(8746), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8746), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8746), + [sym_preproc_directive] = ACTIONS(8746), + [anon_sym_LPAREN2] = ACTIONS(8748), + [anon_sym_TILDE] = ACTIONS(8748), + [anon_sym_STAR] = ACTIONS(8748), + [anon_sym_AMP_AMP] = ACTIONS(8748), + [anon_sym_AMP] = ACTIONS(8746), + [anon_sym_SEMI] = ACTIONS(8748), + [anon_sym___extension__] = ACTIONS(8746), + [anon_sym_typedef] = ACTIONS(8746), + [anon_sym_virtual] = ACTIONS(8746), + [anon_sym_extern] = ACTIONS(8746), + [anon_sym___attribute__] = ACTIONS(8746), + [anon_sym___attribute] = ACTIONS(8746), + [anon_sym_using] = ACTIONS(8746), + [anon_sym_COLON_COLON] = ACTIONS(8748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8748), + [anon_sym___declspec] = ACTIONS(8746), + [anon_sym___based] = ACTIONS(8746), + [anon_sym_signed] = ACTIONS(8746), + [anon_sym_unsigned] = ACTIONS(8746), + [anon_sym_long] = ACTIONS(8746), + [anon_sym_short] = ACTIONS(8746), + [anon_sym_LBRACK] = ACTIONS(8746), + [anon_sym_static] = ACTIONS(8746), + [anon_sym_register] = ACTIONS(8746), + [anon_sym_inline] = ACTIONS(8746), + [anon_sym___inline] = ACTIONS(8746), + [anon_sym___inline__] = ACTIONS(8746), + [anon_sym___forceinline] = ACTIONS(8746), + [anon_sym_thread_local] = ACTIONS(8746), + [anon_sym___thread] = ACTIONS(8746), + [anon_sym_const] = ACTIONS(8746), + [anon_sym_constexpr] = ACTIONS(8746), + [anon_sym_volatile] = ACTIONS(8746), + [anon_sym_restrict] = ACTIONS(8746), + [anon_sym___restrict__] = ACTIONS(8746), + [anon_sym__Atomic] = ACTIONS(8746), + [anon_sym__Noreturn] = ACTIONS(8746), + [anon_sym_noreturn] = ACTIONS(8746), + [anon_sym__Nonnull] = ACTIONS(8746), + [anon_sym_mutable] = ACTIONS(8746), + [anon_sym_constinit] = ACTIONS(8746), + [anon_sym_consteval] = ACTIONS(8746), + [anon_sym_alignas] = ACTIONS(8746), + [anon_sym__Alignas] = ACTIONS(8746), + [sym_primitive_type] = ACTIONS(8746), + [anon_sym_enum] = ACTIONS(8746), + [anon_sym_class] = ACTIONS(8746), + [anon_sym_struct] = ACTIONS(8746), + [anon_sym_union] = ACTIONS(8746), + [anon_sym_typename] = ACTIONS(8746), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8746), + [anon_sym_decltype] = ACTIONS(8746), + [anon_sym_explicit] = ACTIONS(8746), + [anon_sym_private] = ACTIONS(8746), + [anon_sym_template] = ACTIONS(8746), + [anon_sym_operator] = ACTIONS(8746), + [anon_sym_friend] = ACTIONS(8746), + [anon_sym_public] = ACTIONS(8746), + [anon_sym_protected] = ACTIONS(8746), + [anon_sym_static_assert] = ACTIONS(8746), + [anon_sym_LBRACK_COLON] = ACTIONS(8748), + }, + [STATE(2851)] = { + [sym_identifier] = ACTIONS(8750), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8752), + [anon_sym_COMMA] = ACTIONS(8752), + [anon_sym_RPAREN] = ACTIONS(8752), + [aux_sym_preproc_if_token2] = ACTIONS(8752), + [aux_sym_preproc_else_token1] = ACTIONS(8752), + [aux_sym_preproc_elif_token1] = ACTIONS(8750), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8752), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8752), + [anon_sym_LPAREN2] = ACTIONS(8752), + [anon_sym_DASH] = ACTIONS(8750), + [anon_sym_PLUS] = ACTIONS(8750), + [anon_sym_STAR] = ACTIONS(8750), + [anon_sym_SLASH] = ACTIONS(8750), + [anon_sym_PERCENT] = ACTIONS(8750), + [anon_sym_PIPE_PIPE] = ACTIONS(8752), + [anon_sym_AMP_AMP] = ACTIONS(8752), + [anon_sym_PIPE] = ACTIONS(8750), + [anon_sym_CARET] = ACTIONS(8750), + [anon_sym_AMP] = ACTIONS(8750), + [anon_sym_EQ_EQ] = ACTIONS(8752), + [anon_sym_BANG_EQ] = ACTIONS(8752), + [anon_sym_GT] = ACTIONS(8750), + [anon_sym_GT_EQ] = ACTIONS(8752), + [anon_sym_LT_EQ] = ACTIONS(8750), + [anon_sym_LT] = ACTIONS(8750), + [anon_sym_LT_LT] = ACTIONS(8750), + [anon_sym_GT_GT] = ACTIONS(8750), + [anon_sym_SEMI] = ACTIONS(8752), + [anon_sym_COLON] = ACTIONS(8750), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8752), + [anon_sym_RBRACE] = ACTIONS(8752), + [anon_sym_LBRACK] = ACTIONS(8752), + [anon_sym_EQ] = ACTIONS(8750), + [anon_sym_QMARK] = ACTIONS(8752), + [anon_sym_STAR_EQ] = ACTIONS(8752), + [anon_sym_SLASH_EQ] = ACTIONS(8752), + [anon_sym_PERCENT_EQ] = ACTIONS(8752), + [anon_sym_PLUS_EQ] = ACTIONS(8752), + [anon_sym_DASH_EQ] = ACTIONS(8752), + [anon_sym_LT_LT_EQ] = ACTIONS(8752), + [anon_sym_GT_GT_EQ] = ACTIONS(8752), + [anon_sym_AMP_EQ] = ACTIONS(8752), + [anon_sym_CARET_EQ] = ACTIONS(8752), + [anon_sym_PIPE_EQ] = ACTIONS(8752), + [anon_sym_and_eq] = ACTIONS(8750), + [anon_sym_or_eq] = ACTIONS(8750), + [anon_sym_xor_eq] = ACTIONS(8750), + [anon_sym_LT_EQ_GT] = ACTIONS(8752), + [anon_sym_or] = ACTIONS(8750), + [anon_sym_and] = ACTIONS(8750), + [anon_sym_bitor] = ACTIONS(8750), + [anon_sym_xor] = ACTIONS(8750), + [anon_sym_bitand] = ACTIONS(8750), + [anon_sym_not_eq] = ACTIONS(8750), + [anon_sym_DASH_DASH] = ACTIONS(8752), + [anon_sym_PLUS_PLUS] = ACTIONS(8752), + [anon_sym_DOT] = ACTIONS(8750), + [anon_sym_DOT_STAR] = ACTIONS(8752), + [anon_sym_DASH_GT] = ACTIONS(8752), + [anon_sym_L_DQUOTE] = ACTIONS(8752), + [anon_sym_u_DQUOTE] = ACTIONS(8752), + [anon_sym_U_DQUOTE] = ACTIONS(8752), + [anon_sym_u8_DQUOTE] = ACTIONS(8752), + [anon_sym_DQUOTE] = ACTIONS(8752), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8752), + [anon_sym_LR_DQUOTE] = ACTIONS(8752), + [anon_sym_uR_DQUOTE] = ACTIONS(8752), + [anon_sym_UR_DQUOTE] = ACTIONS(8752), + [anon_sym_u8R_DQUOTE] = ACTIONS(8752), + [anon_sym_COLON_RBRACK] = ACTIONS(8752), + [sym_literal_suffix] = ACTIONS(8750), + }, + [STATE(2852)] = { + [sym_type_qualifier] = STATE(2818), + [sym_alignas_qualifier] = STATE(2726), + [aux_sym__type_definition_type_repeat1] = STATE(2818), + [aux_sym_sized_type_specifier_repeat1] = STATE(3156), + [sym_identifier] = ACTIONS(8754), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), + [anon_sym_COMMA] = ACTIONS(7249), + [anon_sym_RPAREN] = ACTIONS(7249), + [anon_sym_LPAREN2] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7251), + [anon_sym_PLUS] = ACTIONS(7251), + [anon_sym_STAR] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7251), + [anon_sym_PERCENT] = ACTIONS(7249), + [anon_sym_PIPE_PIPE] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7249), + [anon_sym_PIPE] = ACTIONS(7251), + [anon_sym_CARET] = ACTIONS(7249), + [anon_sym_AMP] = ACTIONS(7251), + [anon_sym_EQ_EQ] = ACTIONS(7249), + [anon_sym_BANG_EQ] = ACTIONS(7249), + [anon_sym_GT] = ACTIONS(7251), + [anon_sym_GT_EQ] = ACTIONS(7249), + [anon_sym_LT_EQ] = ACTIONS(7251), + [anon_sym_LT] = ACTIONS(7251), + [anon_sym_LT_LT] = ACTIONS(7249), + [anon_sym_GT_GT] = ACTIONS(7249), + [anon_sym_SEMI] = ACTIONS(7249), + [anon_sym___extension__] = ACTIONS(8756), + [anon_sym___attribute__] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7251), + [anon_sym_COLON] = ACTIONS(7251), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7249), + [anon_sym_LBRACE] = ACTIONS(7249), + [anon_sym_RBRACE] = ACTIONS(7249), + [anon_sym_signed] = ACTIONS(8759), + [anon_sym_unsigned] = ACTIONS(8759), + [anon_sym_long] = ACTIONS(8759), + [anon_sym_short] = ACTIONS(8759), + [anon_sym_LBRACK] = ACTIONS(7249), + [anon_sym_const] = ACTIONS(8756), + [anon_sym_constexpr] = ACTIONS(8756), + [anon_sym_volatile] = ACTIONS(8756), + [anon_sym_restrict] = ACTIONS(8756), + [anon_sym___restrict__] = ACTIONS(8756), + [anon_sym__Atomic] = ACTIONS(8756), + [anon_sym__Noreturn] = ACTIONS(8756), + [anon_sym_noreturn] = ACTIONS(8756), + [anon_sym__Nonnull] = ACTIONS(8756), + [anon_sym_mutable] = ACTIONS(8756), + [anon_sym_constinit] = ACTIONS(8756), + [anon_sym_consteval] = ACTIONS(8756), + [anon_sym_alignas] = ACTIONS(8761), + [anon_sym__Alignas] = ACTIONS(8761), + [sym_primitive_type] = ACTIONS(8764), + [anon_sym_QMARK] = ACTIONS(7249), + [anon_sym_LT_EQ_GT] = ACTIONS(7249), + [anon_sym_or] = ACTIONS(7251), + [anon_sym_and] = ACTIONS(7251), + [anon_sym_bitor] = ACTIONS(7251), + [anon_sym_xor] = ACTIONS(7251), + [anon_sym_bitand] = ACTIONS(7251), + [anon_sym_not_eq] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7249), + [anon_sym_PLUS_PLUS] = ACTIONS(7249), + [anon_sym_DOT] = ACTIONS(7251), + [anon_sym_DOT_STAR] = ACTIONS(7249), + [anon_sym_DASH_GT] = ACTIONS(7249), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7251), + [anon_sym_override] = ACTIONS(7251), + [anon_sym_requires] = ACTIONS(7251), + [anon_sym_COLON_RBRACK] = ACTIONS(7249), + }, + [STATE(2853)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2784), + [sym_ms_pointer_modifier] = STATE(2595), + [sym__abstract_declarator] = STATE(6548), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3778), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2274), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3778), + [aux_sym_pointer_declarator_repeat1] = STATE(2595), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(8677), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6823), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(8679), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6823), + [anon_sym_AMP] = ACTIONS(8681), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6823), + [anon_sym_GT_GT] = ACTIONS(6823), + [anon_sym_SEMI] = ACTIONS(6823), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym___attribute__] = ACTIONS(6823), + [anon_sym___attribute] = ACTIONS(6821), + [sym_ms_restrict_modifier] = ACTIONS(8094), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8119), + [sym_ms_signed_ptr_modifier] = ACTIONS(8119), + [anon_sym__unaligned] = ACTIONS(8121), + [anon_sym___unaligned] = ACTIONS(8121), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6823), + [anon_sym_and] = ACTIONS(6823), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6823), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + }, + [STATE(2854)] = { + [sym_identifier] = ACTIONS(8766), + [aux_sym_preproc_def_token1] = ACTIONS(8766), + [aux_sym_preproc_if_token1] = ACTIONS(8766), + [aux_sym_preproc_if_token2] = ACTIONS(8766), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8766), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8766), + [aux_sym_preproc_else_token1] = ACTIONS(8766), + [aux_sym_preproc_elif_token1] = ACTIONS(8766), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8766), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8766), + [sym_preproc_directive] = ACTIONS(8766), + [anon_sym_LPAREN2] = ACTIONS(8768), + [anon_sym_TILDE] = ACTIONS(8768), + [anon_sym_STAR] = ACTIONS(8768), + [anon_sym_AMP_AMP] = ACTIONS(8768), + [anon_sym_AMP] = ACTIONS(8766), + [anon_sym_SEMI] = ACTIONS(8768), + [anon_sym___extension__] = ACTIONS(8766), + [anon_sym_typedef] = ACTIONS(8766), + [anon_sym_virtual] = ACTIONS(8766), + [anon_sym_extern] = ACTIONS(8766), + [anon_sym___attribute__] = ACTIONS(8766), + [anon_sym___attribute] = ACTIONS(8766), + [anon_sym_using] = ACTIONS(8766), + [anon_sym_COLON_COLON] = ACTIONS(8768), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8768), + [anon_sym___declspec] = ACTIONS(8766), + [anon_sym___based] = ACTIONS(8766), + [anon_sym_signed] = ACTIONS(8766), + [anon_sym_unsigned] = ACTIONS(8766), + [anon_sym_long] = ACTIONS(8766), + [anon_sym_short] = ACTIONS(8766), + [anon_sym_LBRACK] = ACTIONS(8766), + [anon_sym_static] = ACTIONS(8766), + [anon_sym_register] = ACTIONS(8766), + [anon_sym_inline] = ACTIONS(8766), + [anon_sym___inline] = ACTIONS(8766), + [anon_sym___inline__] = ACTIONS(8766), + [anon_sym___forceinline] = ACTIONS(8766), + [anon_sym_thread_local] = ACTIONS(8766), + [anon_sym___thread] = ACTIONS(8766), + [anon_sym_const] = ACTIONS(8766), + [anon_sym_constexpr] = ACTIONS(8766), + [anon_sym_volatile] = ACTIONS(8766), + [anon_sym_restrict] = ACTIONS(8766), + [anon_sym___restrict__] = ACTIONS(8766), + [anon_sym__Atomic] = ACTIONS(8766), + [anon_sym__Noreturn] = ACTIONS(8766), + [anon_sym_noreturn] = ACTIONS(8766), + [anon_sym__Nonnull] = ACTIONS(8766), + [anon_sym_mutable] = ACTIONS(8766), + [anon_sym_constinit] = ACTIONS(8766), + [anon_sym_consteval] = ACTIONS(8766), + [anon_sym_alignas] = ACTIONS(8766), + [anon_sym__Alignas] = ACTIONS(8766), + [sym_primitive_type] = ACTIONS(8766), + [anon_sym_enum] = ACTIONS(8766), + [anon_sym_class] = ACTIONS(8766), + [anon_sym_struct] = ACTIONS(8766), + [anon_sym_union] = ACTIONS(8766), + [anon_sym_typename] = ACTIONS(8766), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8766), + [anon_sym_decltype] = ACTIONS(8766), + [anon_sym_explicit] = ACTIONS(8766), + [anon_sym_private] = ACTIONS(8766), + [anon_sym_template] = ACTIONS(8766), + [anon_sym_operator] = ACTIONS(8766), + [anon_sym_friend] = ACTIONS(8766), + [anon_sym_public] = ACTIONS(8766), + [anon_sym_protected] = ACTIONS(8766), + [anon_sym_static_assert] = ACTIONS(8766), + [anon_sym_LBRACK_COLON] = ACTIONS(8768), + }, + [STATE(2855)] = { + [sym_identifier] = ACTIONS(4080), + [aux_sym_preproc_def_token1] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(4080), + [aux_sym_preproc_if_token2] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), + [aux_sym_preproc_else_token1] = ACTIONS(4080), + [aux_sym_preproc_elif_token1] = ACTIONS(4080), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4080), + [sym_preproc_directive] = ACTIONS(4080), + [anon_sym_LPAREN2] = ACTIONS(4082), + [anon_sym_TILDE] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [anon_sym_AMP_AMP] = ACTIONS(4082), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_SEMI] = ACTIONS(4082), + [anon_sym___extension__] = ACTIONS(4080), + [anon_sym_typedef] = ACTIONS(4080), + [anon_sym_virtual] = ACTIONS(4080), + [anon_sym_extern] = ACTIONS(4080), + [anon_sym___attribute__] = ACTIONS(4080), + [anon_sym___attribute] = ACTIONS(4080), + [anon_sym_using] = ACTIONS(4080), + [anon_sym_COLON_COLON] = ACTIONS(4082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), + [anon_sym___declspec] = ACTIONS(4080), + [anon_sym___based] = ACTIONS(4080), + [anon_sym_signed] = ACTIONS(4080), + [anon_sym_unsigned] = ACTIONS(4080), + [anon_sym_long] = ACTIONS(4080), + [anon_sym_short] = ACTIONS(4080), + [anon_sym_LBRACK] = ACTIONS(4080), + [anon_sym_static] = ACTIONS(4080), + [anon_sym_register] = ACTIONS(4080), + [anon_sym_inline] = ACTIONS(4080), + [anon_sym___inline] = ACTIONS(4080), + [anon_sym___inline__] = ACTIONS(4080), + [anon_sym___forceinline] = ACTIONS(4080), + [anon_sym_thread_local] = ACTIONS(4080), + [anon_sym___thread] = ACTIONS(4080), + [anon_sym_const] = ACTIONS(4080), + [anon_sym_constexpr] = ACTIONS(4080), + [anon_sym_volatile] = ACTIONS(4080), + [anon_sym_restrict] = ACTIONS(4080), + [anon_sym___restrict__] = ACTIONS(4080), + [anon_sym__Atomic] = ACTIONS(4080), + [anon_sym__Noreturn] = ACTIONS(4080), + [anon_sym_noreturn] = ACTIONS(4080), + [anon_sym__Nonnull] = ACTIONS(4080), + [anon_sym_mutable] = ACTIONS(4080), + [anon_sym_constinit] = ACTIONS(4080), + [anon_sym_consteval] = ACTIONS(4080), + [anon_sym_alignas] = ACTIONS(4080), + [anon_sym__Alignas] = ACTIONS(4080), + [sym_primitive_type] = ACTIONS(4080), + [anon_sym_enum] = ACTIONS(4080), + [anon_sym_class] = ACTIONS(4080), + [anon_sym_struct] = ACTIONS(4080), + [anon_sym_union] = ACTIONS(4080), + [anon_sym_typename] = ACTIONS(4080), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4080), + [anon_sym_decltype] = ACTIONS(4080), + [anon_sym_explicit] = ACTIONS(4080), + [anon_sym_private] = ACTIONS(4080), + [anon_sym_template] = ACTIONS(4080), + [anon_sym_operator] = ACTIONS(4080), + [anon_sym_friend] = ACTIONS(4080), + [anon_sym_public] = ACTIONS(4080), + [anon_sym_protected] = ACTIONS(4080), + [anon_sym_static_assert] = ACTIONS(4080), + [anon_sym_LBRACK_COLON] = ACTIONS(4082), + }, + [STATE(2856)] = { + [sym__declaration_modifiers] = STATE(5048), + [sym_attribute_specifier] = STATE(5048), + [sym_attribute_declaration] = STATE(5048), + [sym_ms_declspec_modifier] = STATE(5048), + [sym_storage_class_specifier] = STATE(5048), + [sym_type_qualifier] = STATE(5048), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4006), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(5048), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(5936), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(8641), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), + }, + [STATE(2857)] = { + [sym_identifier] = ACTIONS(8770), + [aux_sym_preproc_def_token1] = ACTIONS(8770), + [aux_sym_preproc_if_token1] = ACTIONS(8770), + [aux_sym_preproc_if_token2] = ACTIONS(8770), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8770), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8770), + [aux_sym_preproc_else_token1] = ACTIONS(8770), + [aux_sym_preproc_elif_token1] = ACTIONS(8770), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8770), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8770), + [sym_preproc_directive] = ACTIONS(8770), + [anon_sym_LPAREN2] = ACTIONS(8772), + [anon_sym_TILDE] = ACTIONS(8772), + [anon_sym_STAR] = ACTIONS(8772), + [anon_sym_AMP_AMP] = ACTIONS(8772), + [anon_sym_AMP] = ACTIONS(8770), + [anon_sym_SEMI] = ACTIONS(8772), + [anon_sym___extension__] = ACTIONS(8770), + [anon_sym_typedef] = ACTIONS(8770), + [anon_sym_virtual] = ACTIONS(8770), + [anon_sym_extern] = ACTIONS(8770), + [anon_sym___attribute__] = ACTIONS(8770), + [anon_sym___attribute] = ACTIONS(8770), + [anon_sym_using] = ACTIONS(8770), + [anon_sym_COLON_COLON] = ACTIONS(8772), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8772), + [anon_sym___declspec] = ACTIONS(8770), + [anon_sym___based] = ACTIONS(8770), + [anon_sym_signed] = ACTIONS(8770), + [anon_sym_unsigned] = ACTIONS(8770), + [anon_sym_long] = ACTIONS(8770), + [anon_sym_short] = ACTIONS(8770), + [anon_sym_LBRACK] = ACTIONS(8770), + [anon_sym_static] = ACTIONS(8770), + [anon_sym_register] = ACTIONS(8770), + [anon_sym_inline] = ACTIONS(8770), + [anon_sym___inline] = ACTIONS(8770), + [anon_sym___inline__] = ACTIONS(8770), + [anon_sym___forceinline] = ACTIONS(8770), + [anon_sym_thread_local] = ACTIONS(8770), + [anon_sym___thread] = ACTIONS(8770), + [anon_sym_const] = ACTIONS(8770), + [anon_sym_constexpr] = ACTIONS(8770), + [anon_sym_volatile] = ACTIONS(8770), + [anon_sym_restrict] = ACTIONS(8770), + [anon_sym___restrict__] = ACTIONS(8770), + [anon_sym__Atomic] = ACTIONS(8770), + [anon_sym__Noreturn] = ACTIONS(8770), + [anon_sym_noreturn] = ACTIONS(8770), + [anon_sym__Nonnull] = ACTIONS(8770), + [anon_sym_mutable] = ACTIONS(8770), + [anon_sym_constinit] = ACTIONS(8770), + [anon_sym_consteval] = ACTIONS(8770), + [anon_sym_alignas] = ACTIONS(8770), + [anon_sym__Alignas] = ACTIONS(8770), + [sym_primitive_type] = ACTIONS(8770), + [anon_sym_enum] = ACTIONS(8770), + [anon_sym_class] = ACTIONS(8770), + [anon_sym_struct] = ACTIONS(8770), + [anon_sym_union] = ACTIONS(8770), + [anon_sym_typename] = ACTIONS(8770), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8770), + [anon_sym_decltype] = ACTIONS(8770), + [anon_sym_explicit] = ACTIONS(8770), + [anon_sym_private] = ACTIONS(8770), + [anon_sym_template] = ACTIONS(8770), + [anon_sym_operator] = ACTIONS(8770), + [anon_sym_friend] = ACTIONS(8770), + [anon_sym_public] = ACTIONS(8770), + [anon_sym_protected] = ACTIONS(8770), + [anon_sym_static_assert] = ACTIONS(8770), + [anon_sym_LBRACK_COLON] = ACTIONS(8772), + }, + [STATE(2858)] = { + [sym_attribute_specifier] = STATE(3158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7455), + [anon_sym_COMMA] = ACTIONS(7455), + [anon_sym_LPAREN2] = ACTIONS(7455), + [anon_sym_DASH] = ACTIONS(7453), + [anon_sym_PLUS] = ACTIONS(7453), + [anon_sym_STAR] = ACTIONS(7453), + [anon_sym_SLASH] = ACTIONS(7453), + [anon_sym_PERCENT] = ACTIONS(7453), + [anon_sym_PIPE_PIPE] = ACTIONS(7455), + [anon_sym_AMP_AMP] = ACTIONS(7455), + [anon_sym_PIPE] = ACTIONS(7453), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_AMP] = ACTIONS(7453), + [anon_sym_EQ_EQ] = ACTIONS(7455), + [anon_sym_BANG_EQ] = ACTIONS(7455), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_GT_EQ] = ACTIONS(7453), + [anon_sym_LT_EQ] = ACTIONS(7453), + [anon_sym_LT] = ACTIONS(7453), + [anon_sym_LT_LT] = ACTIONS(7453), + [anon_sym_GT_GT] = ACTIONS(7453), + [anon_sym___extension__] = ACTIONS(7455), + [anon_sym___attribute__] = ACTIONS(8265), + [anon_sym___attribute] = ACTIONS(8267), + [anon_sym_LBRACE] = ACTIONS(7455), + [anon_sym_LBRACK] = ACTIONS(7455), + [anon_sym_EQ] = ACTIONS(7453), + [anon_sym_const] = ACTIONS(7453), + [anon_sym_constexpr] = ACTIONS(7455), + [anon_sym_volatile] = ACTIONS(7455), + [anon_sym_restrict] = ACTIONS(7455), + [anon_sym___restrict__] = ACTIONS(7455), + [anon_sym__Atomic] = ACTIONS(7455), + [anon_sym__Noreturn] = ACTIONS(7455), + [anon_sym_noreturn] = ACTIONS(7455), + [anon_sym__Nonnull] = ACTIONS(7455), + [anon_sym_mutable] = ACTIONS(7455), + [anon_sym_constinit] = ACTIONS(7455), + [anon_sym_consteval] = ACTIONS(7455), + [anon_sym_alignas] = ACTIONS(7455), + [anon_sym__Alignas] = ACTIONS(7455), + [anon_sym_QMARK] = ACTIONS(7455), + [anon_sym_STAR_EQ] = ACTIONS(7455), + [anon_sym_SLASH_EQ] = ACTIONS(7455), + [anon_sym_PERCENT_EQ] = ACTIONS(7455), + [anon_sym_PLUS_EQ] = ACTIONS(7455), + [anon_sym_DASH_EQ] = ACTIONS(7455), + [anon_sym_LT_LT_EQ] = ACTIONS(7455), + [anon_sym_GT_GT_EQ] = ACTIONS(7453), + [anon_sym_AMP_EQ] = ACTIONS(7455), + [anon_sym_CARET_EQ] = ACTIONS(7455), + [anon_sym_PIPE_EQ] = ACTIONS(7455), + [anon_sym_and_eq] = ACTIONS(7455), + [anon_sym_or_eq] = ACTIONS(7455), + [anon_sym_xor_eq] = ACTIONS(7455), + [anon_sym_LT_EQ_GT] = ACTIONS(7455), + [anon_sym_or] = ACTIONS(7453), + [anon_sym_and] = ACTIONS(7453), + [anon_sym_bitor] = ACTIONS(7455), + [anon_sym_xor] = ACTIONS(7453), + [anon_sym_bitand] = ACTIONS(7455), + [anon_sym_not_eq] = ACTIONS(7455), + [anon_sym_DASH_DASH] = ACTIONS(7455), + [anon_sym_PLUS_PLUS] = ACTIONS(7455), + [anon_sym_DOT] = ACTIONS(7453), + [anon_sym_DOT_STAR] = ACTIONS(7455), + [anon_sym_DASH_GT] = ACTIONS(7455), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7455), + [anon_sym_override] = ACTIONS(7455), + [anon_sym_GT2] = ACTIONS(7455), + [anon_sym_requires] = ACTIONS(7455), + }, + [STATE(2859)] = { [sym_identifier] = ACTIONS(8774), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8776), - [anon_sym_COMMA] = ACTIONS(8776), - [anon_sym_RPAREN] = ACTIONS(8776), - [aux_sym_preproc_if_token2] = ACTIONS(8776), - [aux_sym_preproc_else_token1] = ACTIONS(8776), + [aux_sym_preproc_def_token1] = ACTIONS(8774), + [aux_sym_preproc_if_token1] = ACTIONS(8774), + [aux_sym_preproc_if_token2] = ACTIONS(8774), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8774), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8774), + [aux_sym_preproc_else_token1] = ACTIONS(8774), [aux_sym_preproc_elif_token1] = ACTIONS(8774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8776), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8776), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8774), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8774), + [sym_preproc_directive] = ACTIONS(8774), [anon_sym_LPAREN2] = ACTIONS(8776), - [anon_sym_DASH] = ACTIONS(8774), - [anon_sym_PLUS] = ACTIONS(8774), - [anon_sym_STAR] = ACTIONS(8774), - [anon_sym_SLASH] = ACTIONS(8774), - [anon_sym_PERCENT] = ACTIONS(8774), - [anon_sym_PIPE_PIPE] = ACTIONS(8776), + [anon_sym_TILDE] = ACTIONS(8776), + [anon_sym_STAR] = ACTIONS(8776), [anon_sym_AMP_AMP] = ACTIONS(8776), - [anon_sym_PIPE] = ACTIONS(8774), - [anon_sym_CARET] = ACTIONS(8774), [anon_sym_AMP] = ACTIONS(8774), - [anon_sym_EQ_EQ] = ACTIONS(8776), - [anon_sym_BANG_EQ] = ACTIONS(8776), - [anon_sym_GT] = ACTIONS(8774), - [anon_sym_GT_EQ] = ACTIONS(8776), - [anon_sym_LT_EQ] = ACTIONS(8774), - [anon_sym_LT] = ACTIONS(8774), - [anon_sym_LT_LT] = ACTIONS(8774), - [anon_sym_GT_GT] = ACTIONS(8774), [anon_sym_SEMI] = ACTIONS(8776), + [anon_sym___extension__] = ACTIONS(8774), + [anon_sym_typedef] = ACTIONS(8774), + [anon_sym_virtual] = ACTIONS(8774), + [anon_sym_extern] = ACTIONS(8774), [anon_sym___attribute__] = ACTIONS(8774), [anon_sym___attribute] = ACTIONS(8774), - [anon_sym_COLON] = ACTIONS(8774), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8776), - [anon_sym_RBRACE] = ACTIONS(8776), - [anon_sym_LBRACK] = ACTIONS(8776), - [anon_sym_EQ] = ACTIONS(8774), - [anon_sym_QMARK] = ACTIONS(8776), - [anon_sym_STAR_EQ] = ACTIONS(8776), - [anon_sym_SLASH_EQ] = ACTIONS(8776), - [anon_sym_PERCENT_EQ] = ACTIONS(8776), - [anon_sym_PLUS_EQ] = ACTIONS(8776), - [anon_sym_DASH_EQ] = ACTIONS(8776), - [anon_sym_LT_LT_EQ] = ACTIONS(8776), - [anon_sym_GT_GT_EQ] = ACTIONS(8776), - [anon_sym_AMP_EQ] = ACTIONS(8776), - [anon_sym_CARET_EQ] = ACTIONS(8776), - [anon_sym_PIPE_EQ] = ACTIONS(8776), - [anon_sym_and_eq] = ACTIONS(8774), - [anon_sym_or_eq] = ACTIONS(8774), - [anon_sym_xor_eq] = ACTIONS(8774), - [anon_sym_LT_EQ_GT] = ACTIONS(8776), - [anon_sym_or] = ACTIONS(8774), - [anon_sym_and] = ACTIONS(8774), - [anon_sym_bitor] = ACTIONS(8774), - [anon_sym_xor] = ACTIONS(8774), - [anon_sym_bitand] = ACTIONS(8774), - [anon_sym_not_eq] = ACTIONS(8774), - [anon_sym_DASH_DASH] = ACTIONS(8776), - [anon_sym_PLUS_PLUS] = ACTIONS(8776), - [anon_sym_DOT] = ACTIONS(8774), - [anon_sym_DOT_STAR] = ACTIONS(8776), - [anon_sym_DASH_GT] = ACTIONS(8776), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6134), - [anon_sym_override] = ACTIONS(6134), - [anon_sym_requires] = ACTIONS(8774), - [anon_sym_COLON_RBRACK] = ACTIONS(8776), - }, - [STATE(3249)] = { - [sym_identifier] = ACTIONS(3998), - [aux_sym_preproc_def_token1] = ACTIONS(3998), - [aux_sym_preproc_if_token1] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3998), - [sym_preproc_directive] = ACTIONS(3998), - [anon_sym_LPAREN2] = ACTIONS(4000), - [anon_sym_TILDE] = ACTIONS(4000), - [anon_sym_STAR] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym___extension__] = ACTIONS(3998), - [anon_sym_typedef] = ACTIONS(3998), - [anon_sym_virtual] = ACTIONS(3998), - [anon_sym_extern] = ACTIONS(3998), - [anon_sym___attribute__] = ACTIONS(3998), - [anon_sym___attribute] = ACTIONS(3998), - [anon_sym_using] = ACTIONS(3998), - [anon_sym_COLON_COLON] = ACTIONS(4000), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4000), - [anon_sym___declspec] = ACTIONS(3998), - [anon_sym___based] = ACTIONS(3998), - [anon_sym_RBRACE] = ACTIONS(4000), - [anon_sym_signed] = ACTIONS(3998), - [anon_sym_unsigned] = ACTIONS(3998), - [anon_sym_long] = ACTIONS(3998), - [anon_sym_short] = ACTIONS(3998), - [anon_sym_LBRACK] = ACTIONS(3998), - [anon_sym_static] = ACTIONS(3998), - [anon_sym_register] = ACTIONS(3998), - [anon_sym_inline] = ACTIONS(3998), - [anon_sym___inline] = ACTIONS(3998), - [anon_sym___inline__] = ACTIONS(3998), - [anon_sym___forceinline] = ACTIONS(3998), - [anon_sym_thread_local] = ACTIONS(3998), - [anon_sym___thread] = ACTIONS(3998), - [anon_sym_const] = ACTIONS(3998), - [anon_sym_constexpr] = ACTIONS(3998), - [anon_sym_volatile] = ACTIONS(3998), - [anon_sym_restrict] = ACTIONS(3998), - [anon_sym___restrict__] = ACTIONS(3998), - [anon_sym__Atomic] = ACTIONS(3998), - [anon_sym__Noreturn] = ACTIONS(3998), - [anon_sym_noreturn] = ACTIONS(3998), - [anon_sym__Nonnull] = ACTIONS(3998), - [anon_sym_mutable] = ACTIONS(3998), - [anon_sym_constinit] = ACTIONS(3998), - [anon_sym_consteval] = ACTIONS(3998), - [anon_sym_alignas] = ACTIONS(3998), - [anon_sym__Alignas] = ACTIONS(3998), - [sym_primitive_type] = ACTIONS(3998), - [anon_sym_enum] = ACTIONS(3998), - [anon_sym_class] = ACTIONS(3998), - [anon_sym_struct] = ACTIONS(3998), - [anon_sym_union] = ACTIONS(3998), - [anon_sym_typename] = ACTIONS(3998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3998), - [anon_sym_decltype] = ACTIONS(3998), - [anon_sym_explicit] = ACTIONS(3998), - [anon_sym_private] = ACTIONS(3998), - [anon_sym_template] = ACTIONS(3998), - [anon_sym_operator] = ACTIONS(3998), - [anon_sym_friend] = ACTIONS(3998), - [anon_sym_public] = ACTIONS(3998), - [anon_sym_protected] = ACTIONS(3998), - [anon_sym_static_assert] = ACTIONS(3998), - [anon_sym_LBRACK_COLON] = ACTIONS(4000), + [anon_sym_using] = ACTIONS(8774), + [anon_sym_COLON_COLON] = ACTIONS(8776), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8776), + [anon_sym___declspec] = ACTIONS(8774), + [anon_sym___based] = ACTIONS(8774), + [anon_sym_signed] = ACTIONS(8774), + [anon_sym_unsigned] = ACTIONS(8774), + [anon_sym_long] = ACTIONS(8774), + [anon_sym_short] = ACTIONS(8774), + [anon_sym_LBRACK] = ACTIONS(8774), + [anon_sym_static] = ACTIONS(8774), + [anon_sym_register] = ACTIONS(8774), + [anon_sym_inline] = ACTIONS(8774), + [anon_sym___inline] = ACTIONS(8774), + [anon_sym___inline__] = ACTIONS(8774), + [anon_sym___forceinline] = ACTIONS(8774), + [anon_sym_thread_local] = ACTIONS(8774), + [anon_sym___thread] = ACTIONS(8774), + [anon_sym_const] = ACTIONS(8774), + [anon_sym_constexpr] = ACTIONS(8774), + [anon_sym_volatile] = ACTIONS(8774), + [anon_sym_restrict] = ACTIONS(8774), + [anon_sym___restrict__] = ACTIONS(8774), + [anon_sym__Atomic] = ACTIONS(8774), + [anon_sym__Noreturn] = ACTIONS(8774), + [anon_sym_noreturn] = ACTIONS(8774), + [anon_sym__Nonnull] = ACTIONS(8774), + [anon_sym_mutable] = ACTIONS(8774), + [anon_sym_constinit] = ACTIONS(8774), + [anon_sym_consteval] = ACTIONS(8774), + [anon_sym_alignas] = ACTIONS(8774), + [anon_sym__Alignas] = ACTIONS(8774), + [sym_primitive_type] = ACTIONS(8774), + [anon_sym_enum] = ACTIONS(8774), + [anon_sym_class] = ACTIONS(8774), + [anon_sym_struct] = ACTIONS(8774), + [anon_sym_union] = ACTIONS(8774), + [anon_sym_typename] = ACTIONS(8774), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8774), + [anon_sym_decltype] = ACTIONS(8774), + [anon_sym_explicit] = ACTIONS(8774), + [anon_sym_private] = ACTIONS(8774), + [anon_sym_template] = ACTIONS(8774), + [anon_sym_operator] = ACTIONS(8774), + [anon_sym_friend] = ACTIONS(8774), + [anon_sym_public] = ACTIONS(8774), + [anon_sym_protected] = ACTIONS(8774), + [anon_sym_static_assert] = ACTIONS(8774), + [anon_sym_LBRACK_COLON] = ACTIONS(8776), }, - [STATE(3250)] = { - [sym_attribute_specifier] = STATE(4247), - [sym_attribute_declaration] = STATE(4729), - [sym_gnu_asm_expression] = STATE(8972), - [sym_virtual_specifier] = STATE(4992), - [sym__function_attributes_end] = STATE(4448), - [sym__function_postfix] = STATE(5531), - [sym_trailing_return_type] = STATE(4529), - [sym_requires_clause] = STATE(5531), - [aux_sym_type_definition_repeat1] = STATE(4247), - [aux_sym_attributed_declarator_repeat1] = STATE(4729), - [aux_sym__function_postfix_repeat1] = STATE(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6410), - [anon_sym___attribute] = ACTIONS(6412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7544), - [anon_sym_and] = ACTIONS(7544), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7544), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(8164), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6453), - [anon_sym_override] = ACTIONS(6453), - [anon_sym_requires] = ACTIONS(6455), - [anon_sym_DASH_GT_STAR] = ACTIONS(7544), - }, - [STATE(3251)] = { - [sym_template_argument_list] = STATE(2570), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), - [anon_sym_COMMA] = ACTIONS(6748), - [anon_sym_LPAREN2] = ACTIONS(6748), - [anon_sym_DASH] = ACTIONS(6755), - [anon_sym_PLUS] = ACTIONS(6755), - [anon_sym_STAR] = ACTIONS(6755), - [anon_sym_SLASH] = ACTIONS(6755), - [anon_sym_PERCENT] = ACTIONS(6755), - [anon_sym_PIPE_PIPE] = ACTIONS(6748), - [anon_sym_AMP_AMP] = ACTIONS(6748), - [anon_sym_PIPE] = ACTIONS(6755), - [anon_sym_CARET] = ACTIONS(6755), - [anon_sym_AMP] = ACTIONS(6755), - [anon_sym_EQ_EQ] = ACTIONS(6748), - [anon_sym_BANG_EQ] = ACTIONS(6748), - [anon_sym_GT] = ACTIONS(6755), - [anon_sym_GT_EQ] = ACTIONS(6755), - [anon_sym_LT_EQ] = ACTIONS(6755), - [anon_sym_LT] = ACTIONS(7718), - [anon_sym_LT_LT] = ACTIONS(6755), - [anon_sym_GT_GT] = ACTIONS(6755), - [anon_sym___extension__] = ACTIONS(6751), - [anon_sym_COLON_COLON] = ACTIONS(6748), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_LBRACK] = ACTIONS(6748), - [anon_sym_EQ] = ACTIONS(6755), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6751), - [anon_sym_volatile] = ACTIONS(6751), - [anon_sym_restrict] = ACTIONS(6751), - [anon_sym___restrict__] = ACTIONS(6751), - [anon_sym__Atomic] = ACTIONS(6751), - [anon_sym__Noreturn] = ACTIONS(6751), - [anon_sym_noreturn] = ACTIONS(6751), - [anon_sym__Nonnull] = ACTIONS(6751), - [anon_sym_mutable] = ACTIONS(6751), - [anon_sym_constinit] = ACTIONS(6751), - [anon_sym_consteval] = ACTIONS(6751), - [anon_sym_alignas] = ACTIONS(6751), - [anon_sym__Alignas] = ACTIONS(6751), - [anon_sym_QMARK] = ACTIONS(6748), - [anon_sym_STAR_EQ] = ACTIONS(6748), - [anon_sym_SLASH_EQ] = ACTIONS(6748), - [anon_sym_PERCENT_EQ] = ACTIONS(6748), - [anon_sym_PLUS_EQ] = ACTIONS(6748), - [anon_sym_DASH_EQ] = ACTIONS(6748), - [anon_sym_LT_LT_EQ] = ACTIONS(6748), - [anon_sym_GT_GT_EQ] = ACTIONS(6755), - [anon_sym_AMP_EQ] = ACTIONS(6748), - [anon_sym_CARET_EQ] = ACTIONS(6748), - [anon_sym_PIPE_EQ] = ACTIONS(6748), - [anon_sym_and_eq] = ACTIONS(6748), - [anon_sym_or_eq] = ACTIONS(6748), - [anon_sym_xor_eq] = ACTIONS(6748), - [anon_sym_LT_EQ_GT] = ACTIONS(6748), - [anon_sym_or] = ACTIONS(6755), - [anon_sym_and] = ACTIONS(6755), - [anon_sym_bitor] = ACTIONS(6748), - [anon_sym_xor] = ACTIONS(6755), - [anon_sym_bitand] = ACTIONS(6748), - [anon_sym_not_eq] = ACTIONS(6748), - [anon_sym_DASH_DASH] = ACTIONS(6748), - [anon_sym_PLUS_PLUS] = ACTIONS(6748), - [anon_sym_DOT] = ACTIONS(6755), - [anon_sym_DOT_STAR] = ACTIONS(6748), - [anon_sym_DASH_GT] = ACTIONS(6748), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(6748), - }, - [STATE(3252)] = { + [STATE(2860)] = { [sym_identifier] = ACTIONS(8778), + [aux_sym_preproc_def_token1] = ACTIONS(8778), + [aux_sym_preproc_if_token1] = ACTIONS(8778), + [aux_sym_preproc_if_token2] = ACTIONS(8778), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8778), + [aux_sym_preproc_else_token1] = ACTIONS(8778), + [aux_sym_preproc_elif_token1] = ACTIONS(8778), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8778), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8778), + [sym_preproc_directive] = ACTIONS(8778), [anon_sym_LPAREN2] = ACTIONS(8780), [anon_sym_TILDE] = ACTIONS(8780), [anon_sym_STAR] = ACTIONS(8780), [anon_sym_AMP_AMP] = ACTIONS(8780), [anon_sym_AMP] = ACTIONS(8778), + [anon_sym_SEMI] = ACTIONS(8780), [anon_sym___extension__] = ACTIONS(8778), + [anon_sym_typedef] = ACTIONS(8778), [anon_sym_virtual] = ACTIONS(8778), [anon_sym_extern] = ACTIONS(8778), [anon_sym___attribute__] = ACTIONS(8778), @@ -398259,13 +383394,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(8780), [anon_sym___declspec] = ACTIONS(8778), [anon_sym___based] = ACTIONS(8778), - [anon_sym___cdecl] = ACTIONS(8778), - [anon_sym___clrcall] = ACTIONS(8778), - [anon_sym___stdcall] = ACTIONS(8778), - [anon_sym___fastcall] = ACTIONS(8778), - [anon_sym___thiscall] = ACTIONS(8778), - [anon_sym___vectorcall] = ACTIONS(8778), - [anon_sym_LBRACE] = ACTIONS(8780), [anon_sym_signed] = ACTIONS(8778), [anon_sym_unsigned] = ACTIONS(8778), [anon_sym_long] = ACTIONS(8778), @@ -398299,5280 +383427,630 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(8778), [anon_sym_union] = ACTIONS(8778), [anon_sym_typename] = ACTIONS(8778), - [anon_sym_DASH_GT] = ACTIONS(8780), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(8778), [anon_sym_decltype] = ACTIONS(8778), [anon_sym_explicit] = ACTIONS(8778), + [anon_sym_private] = ACTIONS(8778), [anon_sym_template] = ACTIONS(8778), [anon_sym_operator] = ACTIONS(8778), [anon_sym_friend] = ACTIONS(8778), - [anon_sym_noexcept] = ACTIONS(8778), - [anon_sym_throw] = ACTIONS(8778), - [anon_sym_concept] = ACTIONS(8778), - [anon_sym_requires] = ACTIONS(8778), + [anon_sym_public] = ACTIONS(8778), + [anon_sym_protected] = ACTIONS(8778), + [anon_sym_static_assert] = ACTIONS(8778), [anon_sym_LBRACK_COLON] = ACTIONS(8780), }, - [STATE(3253)] = { - [sym_identifier] = ACTIONS(4176), - [aux_sym_preproc_def_token1] = ACTIONS(4176), - [aux_sym_preproc_if_token1] = ACTIONS(4176), - [aux_sym_preproc_if_token2] = ACTIONS(4176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4176), - [sym_preproc_directive] = ACTIONS(4176), - [anon_sym_LPAREN2] = ACTIONS(4178), - [anon_sym_TILDE] = ACTIONS(4178), - [anon_sym_STAR] = ACTIONS(4178), - [anon_sym_AMP_AMP] = ACTIONS(4178), - [anon_sym_AMP] = ACTIONS(4176), - [anon_sym_SEMI] = ACTIONS(4178), - [anon_sym___extension__] = ACTIONS(4176), - [anon_sym_typedef] = ACTIONS(4176), - [anon_sym_virtual] = ACTIONS(4176), - [anon_sym_extern] = ACTIONS(4176), - [anon_sym___attribute__] = ACTIONS(4176), - [anon_sym___attribute] = ACTIONS(4176), - [anon_sym_using] = ACTIONS(4176), - [anon_sym_COLON_COLON] = ACTIONS(4178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4178), - [anon_sym___declspec] = ACTIONS(4176), - [anon_sym___based] = ACTIONS(4176), - [anon_sym_signed] = ACTIONS(4176), - [anon_sym_unsigned] = ACTIONS(4176), - [anon_sym_long] = ACTIONS(4176), - [anon_sym_short] = ACTIONS(4176), - [anon_sym_LBRACK] = ACTIONS(4176), - [anon_sym_static] = ACTIONS(4176), - [anon_sym_register] = ACTIONS(4176), - [anon_sym_inline] = ACTIONS(4176), - [anon_sym___inline] = ACTIONS(4176), - [anon_sym___inline__] = ACTIONS(4176), - [anon_sym___forceinline] = ACTIONS(4176), - [anon_sym_thread_local] = ACTIONS(4176), - [anon_sym___thread] = ACTIONS(4176), - [anon_sym_const] = ACTIONS(4176), - [anon_sym_constexpr] = ACTIONS(4176), - [anon_sym_volatile] = ACTIONS(4176), - [anon_sym_restrict] = ACTIONS(4176), - [anon_sym___restrict__] = ACTIONS(4176), - [anon_sym__Atomic] = ACTIONS(4176), - [anon_sym__Noreturn] = ACTIONS(4176), - [anon_sym_noreturn] = ACTIONS(4176), - [anon_sym__Nonnull] = ACTIONS(4176), - [anon_sym_mutable] = ACTIONS(4176), - [anon_sym_constinit] = ACTIONS(4176), - [anon_sym_consteval] = ACTIONS(4176), - [anon_sym_alignas] = ACTIONS(4176), - [anon_sym__Alignas] = ACTIONS(4176), - [sym_primitive_type] = ACTIONS(4176), - [anon_sym_enum] = ACTIONS(4176), - [anon_sym_class] = ACTIONS(4176), - [anon_sym_struct] = ACTIONS(4176), - [anon_sym_union] = ACTIONS(4176), - [anon_sym_typename] = ACTIONS(4176), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4176), - [anon_sym_decltype] = ACTIONS(4176), - [anon_sym_explicit] = ACTIONS(4176), - [anon_sym_private] = ACTIONS(4176), - [anon_sym_template] = ACTIONS(4176), - [anon_sym_operator] = ACTIONS(4176), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(4176), - [anon_sym_protected] = ACTIONS(4176), - [anon_sym_static_assert] = ACTIONS(4176), - [anon_sym_LBRACK_COLON] = ACTIONS(4178), - }, - [STATE(3254)] = { - [sym_identifier] = ACTIONS(4184), - [aux_sym_preproc_def_token1] = ACTIONS(4184), - [aux_sym_preproc_if_token1] = ACTIONS(4184), - [aux_sym_preproc_if_token2] = ACTIONS(4184), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4184), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4184), - [sym_preproc_directive] = ACTIONS(4184), - [anon_sym_LPAREN2] = ACTIONS(4186), - [anon_sym_TILDE] = ACTIONS(4186), - [anon_sym_STAR] = ACTIONS(4186), - [anon_sym_AMP_AMP] = ACTIONS(4186), - [anon_sym_AMP] = ACTIONS(4184), - [anon_sym_SEMI] = ACTIONS(4186), - [anon_sym___extension__] = ACTIONS(4184), - [anon_sym_typedef] = ACTIONS(4184), - [anon_sym_virtual] = ACTIONS(4184), - [anon_sym_extern] = ACTIONS(4184), - [anon_sym___attribute__] = ACTIONS(4184), - [anon_sym___attribute] = ACTIONS(4184), - [anon_sym_using] = ACTIONS(4184), - [anon_sym_COLON_COLON] = ACTIONS(4186), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4186), - [anon_sym___declspec] = ACTIONS(4184), - [anon_sym___based] = ACTIONS(4184), - [anon_sym_signed] = ACTIONS(4184), - [anon_sym_unsigned] = ACTIONS(4184), - [anon_sym_long] = ACTIONS(4184), - [anon_sym_short] = ACTIONS(4184), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_static] = ACTIONS(4184), - [anon_sym_register] = ACTIONS(4184), - [anon_sym_inline] = ACTIONS(4184), - [anon_sym___inline] = ACTIONS(4184), - [anon_sym___inline__] = ACTIONS(4184), - [anon_sym___forceinline] = ACTIONS(4184), - [anon_sym_thread_local] = ACTIONS(4184), - [anon_sym___thread] = ACTIONS(4184), - [anon_sym_const] = ACTIONS(4184), - [anon_sym_constexpr] = ACTIONS(4184), - [anon_sym_volatile] = ACTIONS(4184), - [anon_sym_restrict] = ACTIONS(4184), - [anon_sym___restrict__] = ACTIONS(4184), - [anon_sym__Atomic] = ACTIONS(4184), - [anon_sym__Noreturn] = ACTIONS(4184), - [anon_sym_noreturn] = ACTIONS(4184), - [anon_sym__Nonnull] = ACTIONS(4184), - [anon_sym_mutable] = ACTIONS(4184), - [anon_sym_constinit] = ACTIONS(4184), - [anon_sym_consteval] = ACTIONS(4184), - [anon_sym_alignas] = ACTIONS(4184), - [anon_sym__Alignas] = ACTIONS(4184), - [sym_primitive_type] = ACTIONS(4184), - [anon_sym_enum] = ACTIONS(4184), - [anon_sym_class] = ACTIONS(4184), - [anon_sym_struct] = ACTIONS(4184), - [anon_sym_union] = ACTIONS(4184), - [anon_sym_typename] = ACTIONS(4184), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4184), - [anon_sym_decltype] = ACTIONS(4184), - [anon_sym_explicit] = ACTIONS(4184), - [anon_sym_private] = ACTIONS(4184), - [anon_sym_template] = ACTIONS(4184), - [anon_sym_operator] = ACTIONS(4184), - [anon_sym_friend] = ACTIONS(4184), - [anon_sym_public] = ACTIONS(4184), - [anon_sym_protected] = ACTIONS(4184), - [anon_sym_static_assert] = ACTIONS(4184), - [anon_sym_LBRACK_COLON] = ACTIONS(4186), - }, - [STATE(3255)] = { - [sym_identifier] = ACTIONS(8386), - [aux_sym_preproc_def_token1] = ACTIONS(8386), - [aux_sym_preproc_if_token1] = ACTIONS(8386), - [aux_sym_preproc_if_token2] = ACTIONS(8386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8386), - [sym_preproc_directive] = ACTIONS(8386), - [anon_sym_LPAREN2] = ACTIONS(8388), - [anon_sym_TILDE] = ACTIONS(8388), - [anon_sym_STAR] = ACTIONS(8388), - [anon_sym_AMP_AMP] = ACTIONS(8388), - [anon_sym_AMP] = ACTIONS(8386), - [anon_sym_SEMI] = ACTIONS(8388), - [anon_sym___extension__] = ACTIONS(8386), - [anon_sym_typedef] = ACTIONS(8386), - [anon_sym_virtual] = ACTIONS(8386), - [anon_sym_extern] = ACTIONS(8386), - [anon_sym___attribute__] = ACTIONS(8386), - [anon_sym___attribute] = ACTIONS(8386), - [anon_sym_using] = ACTIONS(8386), - [anon_sym_COLON_COLON] = ACTIONS(8388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8388), - [anon_sym___declspec] = ACTIONS(8386), - [anon_sym___based] = ACTIONS(8386), - [anon_sym_signed] = ACTIONS(8386), - [anon_sym_unsigned] = ACTIONS(8386), - [anon_sym_long] = ACTIONS(8386), - [anon_sym_short] = ACTIONS(8386), - [anon_sym_LBRACK] = ACTIONS(8386), - [anon_sym_static] = ACTIONS(8386), - [anon_sym_register] = ACTIONS(8386), - [anon_sym_inline] = ACTIONS(8386), - [anon_sym___inline] = ACTIONS(8386), - [anon_sym___inline__] = ACTIONS(8386), - [anon_sym___forceinline] = ACTIONS(8386), - [anon_sym_thread_local] = ACTIONS(8386), - [anon_sym___thread] = ACTIONS(8386), - [anon_sym_const] = ACTIONS(8386), - [anon_sym_constexpr] = ACTIONS(8386), - [anon_sym_volatile] = ACTIONS(8386), - [anon_sym_restrict] = ACTIONS(8386), - [anon_sym___restrict__] = ACTIONS(8386), - [anon_sym__Atomic] = ACTIONS(8386), - [anon_sym__Noreturn] = ACTIONS(8386), - [anon_sym_noreturn] = ACTIONS(8386), - [anon_sym__Nonnull] = ACTIONS(8386), - [anon_sym_mutable] = ACTIONS(8386), - [anon_sym_constinit] = ACTIONS(8386), - [anon_sym_consteval] = ACTIONS(8386), - [anon_sym_alignas] = ACTIONS(8386), - [anon_sym__Alignas] = ACTIONS(8386), - [sym_primitive_type] = ACTIONS(8386), - [anon_sym_enum] = ACTIONS(8386), - [anon_sym_class] = ACTIONS(8386), - [anon_sym_struct] = ACTIONS(8386), - [anon_sym_union] = ACTIONS(8386), - [anon_sym_typename] = ACTIONS(8386), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8386), - [anon_sym_decltype] = ACTIONS(8386), - [anon_sym_explicit] = ACTIONS(8386), - [anon_sym_private] = ACTIONS(8386), - [anon_sym_template] = ACTIONS(8386), - [anon_sym_operator] = ACTIONS(8386), - [anon_sym_friend] = ACTIONS(8386), - [anon_sym_public] = ACTIONS(8386), - [anon_sym_protected] = ACTIONS(8386), - [anon_sym_static_assert] = ACTIONS(8386), - [anon_sym_LBRACK_COLON] = ACTIONS(8388), - }, - [STATE(3256)] = { - [sym_identifier] = ACTIONS(4062), - [aux_sym_preproc_def_token1] = ACTIONS(4062), - [aux_sym_preproc_if_token1] = ACTIONS(4062), - [aux_sym_preproc_if_token2] = ACTIONS(4062), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4062), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4062), - [sym_preproc_directive] = ACTIONS(4062), - [anon_sym_LPAREN2] = ACTIONS(4064), - [anon_sym_TILDE] = ACTIONS(4064), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_AMP_AMP] = ACTIONS(4064), - [anon_sym_AMP] = ACTIONS(4062), - [anon_sym_SEMI] = ACTIONS(4064), - [anon_sym___extension__] = ACTIONS(4062), - [anon_sym_typedef] = ACTIONS(4062), - [anon_sym_virtual] = ACTIONS(4062), - [anon_sym_extern] = ACTIONS(4062), - [anon_sym___attribute__] = ACTIONS(4062), - [anon_sym___attribute] = ACTIONS(4062), - [anon_sym_using] = ACTIONS(4062), - [anon_sym_COLON_COLON] = ACTIONS(4064), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4064), - [anon_sym___declspec] = ACTIONS(4062), - [anon_sym___based] = ACTIONS(4062), - [anon_sym_signed] = ACTIONS(4062), - [anon_sym_unsigned] = ACTIONS(4062), - [anon_sym_long] = ACTIONS(4062), - [anon_sym_short] = ACTIONS(4062), - [anon_sym_LBRACK] = ACTIONS(4062), - [anon_sym_static] = ACTIONS(4062), - [anon_sym_register] = ACTIONS(4062), - [anon_sym_inline] = ACTIONS(4062), - [anon_sym___inline] = ACTIONS(4062), - [anon_sym___inline__] = ACTIONS(4062), - [anon_sym___forceinline] = ACTIONS(4062), - [anon_sym_thread_local] = ACTIONS(4062), - [anon_sym___thread] = ACTIONS(4062), - [anon_sym_const] = ACTIONS(4062), - [anon_sym_constexpr] = ACTIONS(4062), - [anon_sym_volatile] = ACTIONS(4062), - [anon_sym_restrict] = ACTIONS(4062), - [anon_sym___restrict__] = ACTIONS(4062), - [anon_sym__Atomic] = ACTIONS(4062), - [anon_sym__Noreturn] = ACTIONS(4062), - [anon_sym_noreturn] = ACTIONS(4062), - [anon_sym__Nonnull] = ACTIONS(4062), - [anon_sym_mutable] = ACTIONS(4062), - [anon_sym_constinit] = ACTIONS(4062), - [anon_sym_consteval] = ACTIONS(4062), - [anon_sym_alignas] = ACTIONS(4062), - [anon_sym__Alignas] = ACTIONS(4062), - [sym_primitive_type] = ACTIONS(4062), - [anon_sym_enum] = ACTIONS(4062), - [anon_sym_class] = ACTIONS(4062), - [anon_sym_struct] = ACTIONS(4062), - [anon_sym_union] = ACTIONS(4062), - [anon_sym_typename] = ACTIONS(4062), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4062), - [anon_sym_decltype] = ACTIONS(4062), - [anon_sym_explicit] = ACTIONS(4062), - [anon_sym_private] = ACTIONS(4062), - [anon_sym_template] = ACTIONS(4062), - [anon_sym_operator] = ACTIONS(4062), - [anon_sym_friend] = ACTIONS(4062), - [anon_sym_public] = ACTIONS(4062), - [anon_sym_protected] = ACTIONS(4062), - [anon_sym_static_assert] = ACTIONS(4062), - [anon_sym_LBRACK_COLON] = ACTIONS(4064), - }, - [STATE(3257)] = { - [sym_identifier] = ACTIONS(4066), - [aux_sym_preproc_def_token1] = ACTIONS(4066), - [aux_sym_preproc_if_token1] = ACTIONS(4066), - [aux_sym_preproc_if_token2] = ACTIONS(4066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4066), - [sym_preproc_directive] = ACTIONS(4066), - [anon_sym_LPAREN2] = ACTIONS(4068), - [anon_sym_TILDE] = ACTIONS(4068), - [anon_sym_STAR] = ACTIONS(4068), - [anon_sym_AMP_AMP] = ACTIONS(4068), - [anon_sym_AMP] = ACTIONS(4066), - [anon_sym_SEMI] = ACTIONS(4068), - [anon_sym___extension__] = ACTIONS(4066), - [anon_sym_typedef] = ACTIONS(4066), - [anon_sym_virtual] = ACTIONS(4066), - [anon_sym_extern] = ACTIONS(4066), - [anon_sym___attribute__] = ACTIONS(4066), - [anon_sym___attribute] = ACTIONS(4066), - [anon_sym_using] = ACTIONS(4066), - [anon_sym_COLON_COLON] = ACTIONS(4068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4068), - [anon_sym___declspec] = ACTIONS(4066), - [anon_sym___based] = ACTIONS(4066), - [anon_sym_signed] = ACTIONS(4066), - [anon_sym_unsigned] = ACTIONS(4066), - [anon_sym_long] = ACTIONS(4066), - [anon_sym_short] = ACTIONS(4066), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_static] = ACTIONS(4066), - [anon_sym_register] = ACTIONS(4066), - [anon_sym_inline] = ACTIONS(4066), - [anon_sym___inline] = ACTIONS(4066), - [anon_sym___inline__] = ACTIONS(4066), - [anon_sym___forceinline] = ACTIONS(4066), - [anon_sym_thread_local] = ACTIONS(4066), - [anon_sym___thread] = ACTIONS(4066), - [anon_sym_const] = ACTIONS(4066), - [anon_sym_constexpr] = ACTIONS(4066), - [anon_sym_volatile] = ACTIONS(4066), - [anon_sym_restrict] = ACTIONS(4066), - [anon_sym___restrict__] = ACTIONS(4066), - [anon_sym__Atomic] = ACTIONS(4066), - [anon_sym__Noreturn] = ACTIONS(4066), - [anon_sym_noreturn] = ACTIONS(4066), - [anon_sym__Nonnull] = ACTIONS(4066), - [anon_sym_mutable] = ACTIONS(4066), - [anon_sym_constinit] = ACTIONS(4066), - [anon_sym_consteval] = ACTIONS(4066), - [anon_sym_alignas] = ACTIONS(4066), - [anon_sym__Alignas] = ACTIONS(4066), - [sym_primitive_type] = ACTIONS(4066), - [anon_sym_enum] = ACTIONS(4066), - [anon_sym_class] = ACTIONS(4066), - [anon_sym_struct] = ACTIONS(4066), - [anon_sym_union] = ACTIONS(4066), - [anon_sym_typename] = ACTIONS(4066), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4066), - [anon_sym_decltype] = ACTIONS(4066), - [anon_sym_explicit] = ACTIONS(4066), - [anon_sym_private] = ACTIONS(4066), - [anon_sym_template] = ACTIONS(4066), - [anon_sym_operator] = ACTIONS(4066), - [anon_sym_friend] = ACTIONS(4066), - [anon_sym_public] = ACTIONS(4066), - [anon_sym_protected] = ACTIONS(4066), - [anon_sym_static_assert] = ACTIONS(4066), - [anon_sym_LBRACK_COLON] = ACTIONS(4068), - }, - [STATE(3258)] = { - [sym_identifier] = ACTIONS(4070), - [aux_sym_preproc_def_token1] = ACTIONS(4070), - [aux_sym_preproc_if_token1] = ACTIONS(4070), - [aux_sym_preproc_if_token2] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), - [sym_preproc_directive] = ACTIONS(4070), - [anon_sym_LPAREN2] = ACTIONS(4072), - [anon_sym_TILDE] = ACTIONS(4072), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4070), - [anon_sym_SEMI] = ACTIONS(4072), - [anon_sym___extension__] = ACTIONS(4070), - [anon_sym_typedef] = ACTIONS(4070), - [anon_sym_virtual] = ACTIONS(4070), - [anon_sym_extern] = ACTIONS(4070), - [anon_sym___attribute__] = ACTIONS(4070), - [anon_sym___attribute] = ACTIONS(4070), - [anon_sym_using] = ACTIONS(4070), - [anon_sym_COLON_COLON] = ACTIONS(4072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), - [anon_sym___declspec] = ACTIONS(4070), - [anon_sym___based] = ACTIONS(4070), - [anon_sym_signed] = ACTIONS(4070), - [anon_sym_unsigned] = ACTIONS(4070), - [anon_sym_long] = ACTIONS(4070), - [anon_sym_short] = ACTIONS(4070), - [anon_sym_LBRACK] = ACTIONS(4070), - [anon_sym_static] = ACTIONS(4070), - [anon_sym_register] = ACTIONS(4070), - [anon_sym_inline] = ACTIONS(4070), - [anon_sym___inline] = ACTIONS(4070), - [anon_sym___inline__] = ACTIONS(4070), - [anon_sym___forceinline] = ACTIONS(4070), - [anon_sym_thread_local] = ACTIONS(4070), - [anon_sym___thread] = ACTIONS(4070), - [anon_sym_const] = ACTIONS(4070), - [anon_sym_constexpr] = ACTIONS(4070), - [anon_sym_volatile] = ACTIONS(4070), - [anon_sym_restrict] = ACTIONS(4070), - [anon_sym___restrict__] = ACTIONS(4070), - [anon_sym__Atomic] = ACTIONS(4070), - [anon_sym__Noreturn] = ACTIONS(4070), - [anon_sym_noreturn] = ACTIONS(4070), - [anon_sym__Nonnull] = ACTIONS(4070), - [anon_sym_mutable] = ACTIONS(4070), - [anon_sym_constinit] = ACTIONS(4070), - [anon_sym_consteval] = ACTIONS(4070), - [anon_sym_alignas] = ACTIONS(4070), - [anon_sym__Alignas] = ACTIONS(4070), - [sym_primitive_type] = ACTIONS(4070), - [anon_sym_enum] = ACTIONS(4070), - [anon_sym_class] = ACTIONS(4070), - [anon_sym_struct] = ACTIONS(4070), - [anon_sym_union] = ACTIONS(4070), - [anon_sym_typename] = ACTIONS(4070), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4070), - [anon_sym_decltype] = ACTIONS(4070), - [anon_sym_explicit] = ACTIONS(4070), - [anon_sym_private] = ACTIONS(4070), - [anon_sym_template] = ACTIONS(4070), - [anon_sym_operator] = ACTIONS(4070), - [anon_sym_friend] = ACTIONS(4070), - [anon_sym_public] = ACTIONS(4070), - [anon_sym_protected] = ACTIONS(4070), - [anon_sym_static_assert] = ACTIONS(4070), - [anon_sym_LBRACK_COLON] = ACTIONS(4072), - }, - [STATE(3259)] = { - [sym_attribute_specifier] = STATE(4247), - [sym_attribute_declaration] = STATE(4729), - [sym_gnu_asm_expression] = STATE(8972), - [sym_virtual_specifier] = STATE(4992), - [sym__function_attributes_end] = STATE(4511), - [sym__function_postfix] = STATE(5590), - [sym_trailing_return_type] = STATE(4551), - [sym_requires_clause] = STATE(5590), - [aux_sym_type_definition_repeat1] = STATE(4247), - [aux_sym_attributed_declarator_repeat1] = STATE(4729), - [aux_sym__function_postfix_repeat1] = STATE(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_RPAREN] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym___attribute__] = ACTIONS(6410), - [anon_sym___attribute] = ACTIONS(6412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7627), - [anon_sym_and] = ACTIONS(7627), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7627), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(8210), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6453), - [anon_sym_override] = ACTIONS(6453), - [anon_sym_requires] = ACTIONS(6455), - [anon_sym_DASH_GT_STAR] = ACTIONS(7627), - }, - [STATE(3260)] = { - [sym_string_literal] = STATE(4004), - [sym_template_argument_list] = STATE(5595), - [sym_raw_string_literal] = STATE(4004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_RPAREN] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(6713), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_RBRACE] = ACTIONS(5253), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(5276), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5278), - [anon_sym_or_eq] = ACTIONS(5278), - [anon_sym_xor_eq] = ACTIONS(5278), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - [anon_sym_COLON_RBRACK] = ACTIONS(5253), - }, - [STATE(3261)] = { - [sym_identifier] = ACTIONS(4070), - [aux_sym_preproc_def_token1] = ACTIONS(4070), - [aux_sym_preproc_if_token1] = ACTIONS(4070), - [aux_sym_preproc_if_token2] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4070), - [sym_preproc_directive] = ACTIONS(4070), - [anon_sym_LPAREN2] = ACTIONS(4072), - [anon_sym_TILDE] = ACTIONS(4072), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4070), - [anon_sym_SEMI] = ACTIONS(4072), - [anon_sym___extension__] = ACTIONS(4070), - [anon_sym_typedef] = ACTIONS(4070), - [anon_sym_virtual] = ACTIONS(4070), - [anon_sym_extern] = ACTIONS(4070), - [anon_sym___attribute__] = ACTIONS(4070), - [anon_sym___attribute] = ACTIONS(4070), - [anon_sym_using] = ACTIONS(4070), - [anon_sym_COLON_COLON] = ACTIONS(4072), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4072), - [anon_sym___declspec] = ACTIONS(4070), - [anon_sym___based] = ACTIONS(4070), - [anon_sym_signed] = ACTIONS(4070), - [anon_sym_unsigned] = ACTIONS(4070), - [anon_sym_long] = ACTIONS(4070), - [anon_sym_short] = ACTIONS(4070), - [anon_sym_LBRACK] = ACTIONS(4070), - [anon_sym_static] = ACTIONS(4070), - [anon_sym_register] = ACTIONS(4070), - [anon_sym_inline] = ACTIONS(4070), - [anon_sym___inline] = ACTIONS(4070), - [anon_sym___inline__] = ACTIONS(4070), - [anon_sym___forceinline] = ACTIONS(4070), - [anon_sym_thread_local] = ACTIONS(4070), - [anon_sym___thread] = ACTIONS(4070), - [anon_sym_const] = ACTIONS(4070), - [anon_sym_constexpr] = ACTIONS(4070), - [anon_sym_volatile] = ACTIONS(4070), - [anon_sym_restrict] = ACTIONS(4070), - [anon_sym___restrict__] = ACTIONS(4070), - [anon_sym__Atomic] = ACTIONS(4070), - [anon_sym__Noreturn] = ACTIONS(4070), - [anon_sym_noreturn] = ACTIONS(4070), - [anon_sym__Nonnull] = ACTIONS(4070), - [anon_sym_mutable] = ACTIONS(4070), - [anon_sym_constinit] = ACTIONS(4070), - [anon_sym_consteval] = ACTIONS(4070), - [anon_sym_alignas] = ACTIONS(4070), - [anon_sym__Alignas] = ACTIONS(4070), - [sym_primitive_type] = ACTIONS(4070), - [anon_sym_enum] = ACTIONS(4070), - [anon_sym_class] = ACTIONS(4070), - [anon_sym_struct] = ACTIONS(4070), - [anon_sym_union] = ACTIONS(4070), - [anon_sym_typename] = ACTIONS(4070), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4070), - [anon_sym_decltype] = ACTIONS(4070), - [anon_sym_explicit] = ACTIONS(4070), - [anon_sym_private] = ACTIONS(4070), - [anon_sym_template] = ACTIONS(4070), - [anon_sym_operator] = ACTIONS(4070), - [anon_sym_friend] = ACTIONS(4070), - [anon_sym_public] = ACTIONS(4070), - [anon_sym_protected] = ACTIONS(4070), - [anon_sym_static_assert] = ACTIONS(4070), - [anon_sym_LBRACK_COLON] = ACTIONS(4072), - }, - [STATE(3262)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6800), - [anon_sym_and] = ACTIONS(6800), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6800), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6798), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6800), - [anon_sym_override] = ACTIONS(6800), - [anon_sym_requires] = ACTIONS(6800), - [anon_sym_DASH_GT_STAR] = ACTIONS(6800), - }, - [STATE(3263)] = { - [sym_attribute_specifier] = STATE(4247), - [sym_attribute_declaration] = STATE(4729), - [sym_gnu_asm_expression] = STATE(8972), - [sym_virtual_specifier] = STATE(4992), - [sym__function_attributes_end] = STATE(4457), - [sym__function_postfix] = STATE(5603), - [sym_trailing_return_type] = STATE(4563), - [sym_requires_clause] = STATE(5603), - [aux_sym_type_definition_repeat1] = STATE(4247), - [aux_sym_attributed_declarator_repeat1] = STATE(4729), - [aux_sym__function_postfix_repeat1] = STATE(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), - [anon_sym_COMMA] = ACTIONS(8089), - [anon_sym_RPAREN] = ACTIONS(8089), - [anon_sym_LPAREN2] = ACTIONS(8089), - [anon_sym_DASH] = ACTIONS(8087), - [anon_sym_PLUS] = ACTIONS(8087), - [anon_sym_STAR] = ACTIONS(8087), - [anon_sym_SLASH] = ACTIONS(8087), - [anon_sym_PERCENT] = ACTIONS(8087), - [anon_sym_PIPE_PIPE] = ACTIONS(8089), - [anon_sym_AMP_AMP] = ACTIONS(8089), - [anon_sym_PIPE] = ACTIONS(8087), - [anon_sym_CARET] = ACTIONS(8087), - [anon_sym_AMP] = ACTIONS(8087), - [anon_sym_EQ_EQ] = ACTIONS(8089), - [anon_sym_BANG_EQ] = ACTIONS(8089), - [anon_sym_GT] = ACTIONS(8087), - [anon_sym_GT_EQ] = ACTIONS(8089), - [anon_sym_LT_EQ] = ACTIONS(8087), - [anon_sym_LT] = ACTIONS(8087), - [anon_sym_LT_LT] = ACTIONS(8087), - [anon_sym_GT_GT] = ACTIONS(8087), - [anon_sym___attribute__] = ACTIONS(6410), - [anon_sym___attribute] = ACTIONS(6412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), - [anon_sym_LBRACK] = ACTIONS(8087), - [anon_sym_EQ] = ACTIONS(8087), - [anon_sym_QMARK] = ACTIONS(8089), - [anon_sym_STAR_EQ] = ACTIONS(8089), - [anon_sym_SLASH_EQ] = ACTIONS(8089), - [anon_sym_PERCENT_EQ] = ACTIONS(8089), - [anon_sym_PLUS_EQ] = ACTIONS(8089), - [anon_sym_DASH_EQ] = ACTIONS(8089), - [anon_sym_LT_LT_EQ] = ACTIONS(8089), - [anon_sym_GT_GT_EQ] = ACTIONS(8089), - [anon_sym_AMP_EQ] = ACTIONS(8089), - [anon_sym_CARET_EQ] = ACTIONS(8089), - [anon_sym_PIPE_EQ] = ACTIONS(8089), - [anon_sym_LT_EQ_GT] = ACTIONS(8089), - [anon_sym_or] = ACTIONS(8089), - [anon_sym_and] = ACTIONS(8089), - [anon_sym_bitor] = ACTIONS(8089), - [anon_sym_xor] = ACTIONS(8089), - [anon_sym_bitand] = ACTIONS(8089), - [anon_sym_not_eq] = ACTIONS(8089), - [anon_sym_DASH_DASH] = ACTIONS(8089), - [anon_sym_PLUS_PLUS] = ACTIONS(8089), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(8087), - [anon_sym_DOT_STAR] = ACTIONS(8089), - [anon_sym_DASH_GT] = ACTIONS(8762), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6453), - [anon_sym_override] = ACTIONS(6453), - [anon_sym_requires] = ACTIONS(6455), - [anon_sym_DASH_GT_STAR] = ACTIONS(8089), - }, - [STATE(3264)] = { - [sym_decltype_auto] = STATE(3396), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(7183), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6800), - [anon_sym_and] = ACTIONS(6800), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6800), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6798), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8495), - [anon_sym_decltype] = ACTIONS(6592), - [anon_sym_DASH_GT_STAR] = ACTIONS(6800), - }, - [STATE(3265)] = { - [sym_identifier] = ACTIONS(8450), - [aux_sym_preproc_def_token1] = ACTIONS(8450), - [aux_sym_preproc_if_token1] = ACTIONS(8450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8450), - [sym_preproc_directive] = ACTIONS(8450), - [anon_sym_LPAREN2] = ACTIONS(8452), - [anon_sym_TILDE] = ACTIONS(8452), - [anon_sym_STAR] = ACTIONS(8452), - [anon_sym_AMP_AMP] = ACTIONS(8452), - [anon_sym_AMP] = ACTIONS(8450), - [anon_sym_SEMI] = ACTIONS(8452), - [anon_sym___extension__] = ACTIONS(8450), - [anon_sym_typedef] = ACTIONS(8450), - [anon_sym_virtual] = ACTIONS(8450), - [anon_sym_extern] = ACTIONS(8450), - [anon_sym___attribute__] = ACTIONS(8450), - [anon_sym___attribute] = ACTIONS(8450), - [anon_sym_using] = ACTIONS(8450), - [anon_sym_COLON_COLON] = ACTIONS(8452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8452), - [anon_sym___declspec] = ACTIONS(8450), - [anon_sym___based] = ACTIONS(8450), - [anon_sym_RBRACE] = ACTIONS(8452), - [anon_sym_signed] = ACTIONS(8450), - [anon_sym_unsigned] = ACTIONS(8450), - [anon_sym_long] = ACTIONS(8450), - [anon_sym_short] = ACTIONS(8450), - [anon_sym_LBRACK] = ACTIONS(8450), - [anon_sym_static] = ACTIONS(8450), - [anon_sym_register] = ACTIONS(8450), - [anon_sym_inline] = ACTIONS(8450), - [anon_sym___inline] = ACTIONS(8450), - [anon_sym___inline__] = ACTIONS(8450), - [anon_sym___forceinline] = ACTIONS(8450), - [anon_sym_thread_local] = ACTIONS(8450), - [anon_sym___thread] = ACTIONS(8450), - [anon_sym_const] = ACTIONS(8450), - [anon_sym_constexpr] = ACTIONS(8450), - [anon_sym_volatile] = ACTIONS(8450), - [anon_sym_restrict] = ACTIONS(8450), - [anon_sym___restrict__] = ACTIONS(8450), - [anon_sym__Atomic] = ACTIONS(8450), - [anon_sym__Noreturn] = ACTIONS(8450), - [anon_sym_noreturn] = ACTIONS(8450), - [anon_sym__Nonnull] = ACTIONS(8450), - [anon_sym_mutable] = ACTIONS(8450), - [anon_sym_constinit] = ACTIONS(8450), - [anon_sym_consteval] = ACTIONS(8450), - [anon_sym_alignas] = ACTIONS(8450), - [anon_sym__Alignas] = ACTIONS(8450), - [sym_primitive_type] = ACTIONS(8450), - [anon_sym_enum] = ACTIONS(8450), - [anon_sym_class] = ACTIONS(8450), - [anon_sym_struct] = ACTIONS(8450), - [anon_sym_union] = ACTIONS(8450), - [anon_sym_typename] = ACTIONS(8450), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8450), - [anon_sym_decltype] = ACTIONS(8450), - [anon_sym_explicit] = ACTIONS(8450), - [anon_sym_private] = ACTIONS(8450), - [anon_sym_template] = ACTIONS(8450), - [anon_sym_operator] = ACTIONS(8450), - [anon_sym_friend] = ACTIONS(8450), - [anon_sym_public] = ACTIONS(8450), - [anon_sym_protected] = ACTIONS(8450), - [anon_sym_static_assert] = ACTIONS(8450), - [anon_sym_LBRACK_COLON] = ACTIONS(8452), - }, - [STATE(3266)] = { - [sym_identifier] = ACTIONS(3990), - [aux_sym_preproc_def_token1] = ACTIONS(3990), - [aux_sym_preproc_if_token1] = ACTIONS(3990), - [aux_sym_preproc_if_token2] = ACTIONS(3990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3990), - [sym_preproc_directive] = ACTIONS(3990), - [anon_sym_LPAREN2] = ACTIONS(3992), - [anon_sym_TILDE] = ACTIONS(3992), - [anon_sym_STAR] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3992), - [anon_sym_AMP] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(3992), - [anon_sym___extension__] = ACTIONS(3990), - [anon_sym_typedef] = ACTIONS(3990), - [anon_sym_virtual] = ACTIONS(3990), - [anon_sym_extern] = ACTIONS(3990), - [anon_sym___attribute__] = ACTIONS(3990), - [anon_sym___attribute] = ACTIONS(3990), - [anon_sym_using] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3992), - [anon_sym___declspec] = ACTIONS(3990), - [anon_sym___based] = ACTIONS(3990), - [anon_sym_signed] = ACTIONS(3990), - [anon_sym_unsigned] = ACTIONS(3990), - [anon_sym_long] = ACTIONS(3990), - [anon_sym_short] = ACTIONS(3990), - [anon_sym_LBRACK] = ACTIONS(3990), - [anon_sym_static] = ACTIONS(3990), - [anon_sym_register] = ACTIONS(3990), - [anon_sym_inline] = ACTIONS(3990), - [anon_sym___inline] = ACTIONS(3990), - [anon_sym___inline__] = ACTIONS(3990), - [anon_sym___forceinline] = ACTIONS(3990), - [anon_sym_thread_local] = ACTIONS(3990), - [anon_sym___thread] = ACTIONS(3990), - [anon_sym_const] = ACTIONS(3990), - [anon_sym_constexpr] = ACTIONS(3990), - [anon_sym_volatile] = ACTIONS(3990), - [anon_sym_restrict] = ACTIONS(3990), - [anon_sym___restrict__] = ACTIONS(3990), - [anon_sym__Atomic] = ACTIONS(3990), - [anon_sym__Noreturn] = ACTIONS(3990), - [anon_sym_noreturn] = ACTIONS(3990), - [anon_sym__Nonnull] = ACTIONS(3990), - [anon_sym_mutable] = ACTIONS(3990), - [anon_sym_constinit] = ACTIONS(3990), - [anon_sym_consteval] = ACTIONS(3990), - [anon_sym_alignas] = ACTIONS(3990), - [anon_sym__Alignas] = ACTIONS(3990), - [sym_primitive_type] = ACTIONS(3990), - [anon_sym_enum] = ACTIONS(3990), - [anon_sym_class] = ACTIONS(3990), - [anon_sym_struct] = ACTIONS(3990), - [anon_sym_union] = ACTIONS(3990), - [anon_sym_typename] = ACTIONS(3990), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3990), - [anon_sym_decltype] = ACTIONS(3990), - [anon_sym_explicit] = ACTIONS(3990), - [anon_sym_private] = ACTIONS(3990), - [anon_sym_template] = ACTIONS(3990), - [anon_sym_operator] = ACTIONS(3990), - [anon_sym_friend] = ACTIONS(3990), - [anon_sym_public] = ACTIONS(3990), - [anon_sym_protected] = ACTIONS(3990), - [anon_sym_static_assert] = ACTIONS(3990), - [anon_sym_LBRACK_COLON] = ACTIONS(3992), - }, - [STATE(3267)] = { - [sym_identifier] = ACTIONS(3876), - [aux_sym_preproc_def_token1] = ACTIONS(3876), - [aux_sym_preproc_if_token1] = ACTIONS(3876), - [aux_sym_preproc_if_token2] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), - [sym_preproc_directive] = ACTIONS(3876), - [anon_sym_LPAREN2] = ACTIONS(3878), - [anon_sym_TILDE] = ACTIONS(3878), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_AMP_AMP] = ACTIONS(3878), - [anon_sym_AMP] = ACTIONS(3876), - [anon_sym_SEMI] = ACTIONS(3878), - [anon_sym___extension__] = ACTIONS(3876), - [anon_sym_typedef] = ACTIONS(3876), - [anon_sym_virtual] = ACTIONS(3876), - [anon_sym_extern] = ACTIONS(3876), - [anon_sym___attribute__] = ACTIONS(3876), - [anon_sym___attribute] = ACTIONS(3876), - [anon_sym_using] = ACTIONS(3876), - [anon_sym_COLON_COLON] = ACTIONS(3878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), - [anon_sym___declspec] = ACTIONS(3876), - [anon_sym___based] = ACTIONS(3876), - [anon_sym_signed] = ACTIONS(3876), - [anon_sym_unsigned] = ACTIONS(3876), - [anon_sym_long] = ACTIONS(3876), - [anon_sym_short] = ACTIONS(3876), - [anon_sym_LBRACK] = ACTIONS(3876), - [anon_sym_static] = ACTIONS(3876), - [anon_sym_register] = ACTIONS(3876), - [anon_sym_inline] = ACTIONS(3876), - [anon_sym___inline] = ACTIONS(3876), - [anon_sym___inline__] = ACTIONS(3876), - [anon_sym___forceinline] = ACTIONS(3876), - [anon_sym_thread_local] = ACTIONS(3876), - [anon_sym___thread] = ACTIONS(3876), - [anon_sym_const] = ACTIONS(3876), - [anon_sym_constexpr] = ACTIONS(3876), - [anon_sym_volatile] = ACTIONS(3876), - [anon_sym_restrict] = ACTIONS(3876), - [anon_sym___restrict__] = ACTIONS(3876), - [anon_sym__Atomic] = ACTIONS(3876), - [anon_sym__Noreturn] = ACTIONS(3876), - [anon_sym_noreturn] = ACTIONS(3876), - [anon_sym__Nonnull] = ACTIONS(3876), - [anon_sym_mutable] = ACTIONS(3876), - [anon_sym_constinit] = ACTIONS(3876), - [anon_sym_consteval] = ACTIONS(3876), - [anon_sym_alignas] = ACTIONS(3876), - [anon_sym__Alignas] = ACTIONS(3876), - [sym_primitive_type] = ACTIONS(3876), - [anon_sym_enum] = ACTIONS(3876), - [anon_sym_class] = ACTIONS(3876), - [anon_sym_struct] = ACTIONS(3876), - [anon_sym_union] = ACTIONS(3876), - [anon_sym_typename] = ACTIONS(3876), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3876), - [anon_sym_decltype] = ACTIONS(3876), - [anon_sym_explicit] = ACTIONS(3876), - [anon_sym_private] = ACTIONS(3876), - [anon_sym_template] = ACTIONS(3876), - [anon_sym_operator] = ACTIONS(3876), - [anon_sym_friend] = ACTIONS(3876), - [anon_sym_public] = ACTIONS(3876), - [anon_sym_protected] = ACTIONS(3876), - [anon_sym_static_assert] = ACTIONS(3876), - [anon_sym_LBRACK_COLON] = ACTIONS(3878), - }, - [STATE(3268)] = { - [sym_identifier] = ACTIONS(8321), - [aux_sym_preproc_def_token1] = ACTIONS(8321), - [aux_sym_preproc_if_token1] = ACTIONS(8321), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8321), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8321), - [sym_preproc_directive] = ACTIONS(8321), - [anon_sym_LPAREN2] = ACTIONS(8323), - [anon_sym_TILDE] = ACTIONS(8323), - [anon_sym_STAR] = ACTIONS(8323), - [anon_sym_AMP_AMP] = ACTIONS(8323), - [anon_sym_AMP] = ACTIONS(8321), - [anon_sym_SEMI] = ACTIONS(8323), - [anon_sym___extension__] = ACTIONS(8321), - [anon_sym_typedef] = ACTIONS(8321), - [anon_sym_virtual] = ACTIONS(8321), - [anon_sym_extern] = ACTIONS(8321), - [anon_sym___attribute__] = ACTIONS(8321), - [anon_sym___attribute] = ACTIONS(8321), - [anon_sym_using] = ACTIONS(8321), - [anon_sym_COLON_COLON] = ACTIONS(8323), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8323), - [anon_sym___declspec] = ACTIONS(8321), - [anon_sym___based] = ACTIONS(8321), - [anon_sym_RBRACE] = ACTIONS(8323), - [anon_sym_signed] = ACTIONS(8321), - [anon_sym_unsigned] = ACTIONS(8321), - [anon_sym_long] = ACTIONS(8321), - [anon_sym_short] = ACTIONS(8321), - [anon_sym_LBRACK] = ACTIONS(8321), - [anon_sym_static] = ACTIONS(8321), - [anon_sym_register] = ACTIONS(8321), - [anon_sym_inline] = ACTIONS(8321), - [anon_sym___inline] = ACTIONS(8321), - [anon_sym___inline__] = ACTIONS(8321), - [anon_sym___forceinline] = ACTIONS(8321), - [anon_sym_thread_local] = ACTIONS(8321), - [anon_sym___thread] = ACTIONS(8321), - [anon_sym_const] = ACTIONS(8321), - [anon_sym_constexpr] = ACTIONS(8321), - [anon_sym_volatile] = ACTIONS(8321), - [anon_sym_restrict] = ACTIONS(8321), - [anon_sym___restrict__] = ACTIONS(8321), - [anon_sym__Atomic] = ACTIONS(8321), - [anon_sym__Noreturn] = ACTIONS(8321), - [anon_sym_noreturn] = ACTIONS(8321), - [anon_sym__Nonnull] = ACTIONS(8321), - [anon_sym_mutable] = ACTIONS(8321), - [anon_sym_constinit] = ACTIONS(8321), - [anon_sym_consteval] = ACTIONS(8321), - [anon_sym_alignas] = ACTIONS(8321), - [anon_sym__Alignas] = ACTIONS(8321), - [sym_primitive_type] = ACTIONS(8321), - [anon_sym_enum] = ACTIONS(8321), - [anon_sym_class] = ACTIONS(8321), - [anon_sym_struct] = ACTIONS(8321), - [anon_sym_union] = ACTIONS(8321), - [anon_sym_typename] = ACTIONS(8321), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8321), - [anon_sym_decltype] = ACTIONS(8321), - [anon_sym_explicit] = ACTIONS(8321), - [anon_sym_private] = ACTIONS(8321), - [anon_sym_template] = ACTIONS(8321), - [anon_sym_operator] = ACTIONS(8321), - [anon_sym_friend] = ACTIONS(8321), - [anon_sym_public] = ACTIONS(8321), - [anon_sym_protected] = ACTIONS(8321), - [anon_sym_static_assert] = ACTIONS(8321), - [anon_sym_LBRACK_COLON] = ACTIONS(8323), - }, - [STATE(3269)] = { - [sym_identifier] = ACTIONS(8396), - [aux_sym_preproc_def_token1] = ACTIONS(8396), - [aux_sym_preproc_if_token1] = ACTIONS(8396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8396), - [sym_preproc_directive] = ACTIONS(8396), - [anon_sym_LPAREN2] = ACTIONS(8398), - [anon_sym_TILDE] = ACTIONS(8398), - [anon_sym_STAR] = ACTIONS(8398), - [anon_sym_AMP_AMP] = ACTIONS(8398), - [anon_sym_AMP] = ACTIONS(8396), - [anon_sym_SEMI] = ACTIONS(8398), - [anon_sym___extension__] = ACTIONS(8396), - [anon_sym_typedef] = ACTIONS(8396), - [anon_sym_virtual] = ACTIONS(8396), - [anon_sym_extern] = ACTIONS(8396), - [anon_sym___attribute__] = ACTIONS(8396), - [anon_sym___attribute] = ACTIONS(8396), - [anon_sym_using] = ACTIONS(8396), - [anon_sym_COLON_COLON] = ACTIONS(8398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8398), - [anon_sym___declspec] = ACTIONS(8396), - [anon_sym___based] = ACTIONS(8396), - [anon_sym_RBRACE] = ACTIONS(8398), - [anon_sym_signed] = ACTIONS(8396), - [anon_sym_unsigned] = ACTIONS(8396), - [anon_sym_long] = ACTIONS(8396), - [anon_sym_short] = ACTIONS(8396), - [anon_sym_LBRACK] = ACTIONS(8396), - [anon_sym_static] = ACTIONS(8396), - [anon_sym_register] = ACTIONS(8396), - [anon_sym_inline] = ACTIONS(8396), - [anon_sym___inline] = ACTIONS(8396), - [anon_sym___inline__] = ACTIONS(8396), - [anon_sym___forceinline] = ACTIONS(8396), - [anon_sym_thread_local] = ACTIONS(8396), - [anon_sym___thread] = ACTIONS(8396), - [anon_sym_const] = ACTIONS(8396), - [anon_sym_constexpr] = ACTIONS(8396), - [anon_sym_volatile] = ACTIONS(8396), - [anon_sym_restrict] = ACTIONS(8396), - [anon_sym___restrict__] = ACTIONS(8396), - [anon_sym__Atomic] = ACTIONS(8396), - [anon_sym__Noreturn] = ACTIONS(8396), - [anon_sym_noreturn] = ACTIONS(8396), - [anon_sym__Nonnull] = ACTIONS(8396), - [anon_sym_mutable] = ACTIONS(8396), - [anon_sym_constinit] = ACTIONS(8396), - [anon_sym_consteval] = ACTIONS(8396), - [anon_sym_alignas] = ACTIONS(8396), - [anon_sym__Alignas] = ACTIONS(8396), - [sym_primitive_type] = ACTIONS(8396), - [anon_sym_enum] = ACTIONS(8396), - [anon_sym_class] = ACTIONS(8396), - [anon_sym_struct] = ACTIONS(8396), - [anon_sym_union] = ACTIONS(8396), - [anon_sym_typename] = ACTIONS(8396), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8396), - [anon_sym_decltype] = ACTIONS(8396), - [anon_sym_explicit] = ACTIONS(8396), - [anon_sym_private] = ACTIONS(8396), - [anon_sym_template] = ACTIONS(8396), - [anon_sym_operator] = ACTIONS(8396), - [anon_sym_friend] = ACTIONS(8396), - [anon_sym_public] = ACTIONS(8396), - [anon_sym_protected] = ACTIONS(8396), - [anon_sym_static_assert] = ACTIONS(8396), - [anon_sym_LBRACK_COLON] = ACTIONS(8398), - }, - [STATE(3270)] = { - [sym_type_qualifier] = STATE(3293), - [sym_alignas_qualifier] = STATE(2592), - [aux_sym__type_definition_type_repeat1] = STATE(3293), - [aux_sym_sized_type_specifier_repeat1] = STATE(3614), - [sym_identifier] = ACTIONS(8505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), - [anon_sym_COMMA] = ACTIONS(6812), - [aux_sym_preproc_if_token2] = ACTIONS(6812), - [aux_sym_preproc_else_token1] = ACTIONS(6812), - [aux_sym_preproc_elif_token1] = ACTIONS(6814), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6812), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6812), - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_STAR] = ACTIONS(6812), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_PERCENT] = ACTIONS(6812), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_CARET] = ACTIONS(6812), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_LT_LT] = ACTIONS(6812), - [anon_sym_GT_GT] = ACTIONS(6812), - [anon_sym___extension__] = ACTIONS(7784), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6812), + [STATE(2861)] = { + [sym_identifier] = ACTIONS(8782), + [aux_sym_preproc_def_token1] = ACTIONS(8782), + [aux_sym_preproc_if_token1] = ACTIONS(8782), + [aux_sym_preproc_if_token2] = ACTIONS(8782), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8782), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8782), + [aux_sym_preproc_else_token1] = ACTIONS(8782), + [aux_sym_preproc_elif_token1] = ACTIONS(8782), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8782), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8782), + [sym_preproc_directive] = ACTIONS(8782), + [anon_sym_LPAREN2] = ACTIONS(8784), + [anon_sym_TILDE] = ACTIONS(8784), + [anon_sym_STAR] = ACTIONS(8784), + [anon_sym_AMP_AMP] = ACTIONS(8784), + [anon_sym_AMP] = ACTIONS(8782), + [anon_sym_SEMI] = ACTIONS(8784), + [anon_sym___extension__] = ACTIONS(8782), + [anon_sym_typedef] = ACTIONS(8782), + [anon_sym_virtual] = ACTIONS(8782), + [anon_sym_extern] = ACTIONS(8782), + [anon_sym___attribute__] = ACTIONS(8782), + [anon_sym___attribute] = ACTIONS(8782), + [anon_sym_using] = ACTIONS(8782), + [anon_sym_COLON_COLON] = ACTIONS(8784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8784), + [anon_sym___declspec] = ACTIONS(8782), + [anon_sym___based] = ACTIONS(8782), [anon_sym_signed] = ACTIONS(8782), [anon_sym_unsigned] = ACTIONS(8782), [anon_sym_long] = ACTIONS(8782), [anon_sym_short] = ACTIONS(8782), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7784), - [anon_sym_volatile] = ACTIONS(7784), - [anon_sym_restrict] = ACTIONS(7784), - [anon_sym___restrict__] = ACTIONS(7784), - [anon_sym__Atomic] = ACTIONS(7784), - [anon_sym__Noreturn] = ACTIONS(7784), - [anon_sym_noreturn] = ACTIONS(7784), - [anon_sym__Nonnull] = ACTIONS(7784), - [anon_sym_mutable] = ACTIONS(7784), - [anon_sym_constinit] = ACTIONS(7784), - [anon_sym_consteval] = ACTIONS(7784), - [anon_sym_alignas] = ACTIONS(8669), - [anon_sym__Alignas] = ACTIONS(8669), - [sym_primitive_type] = ACTIONS(8510), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_LT_EQ_GT] = ACTIONS(6812), - [anon_sym_or] = ACTIONS(6814), - [anon_sym_and] = ACTIONS(6814), - [anon_sym_bitor] = ACTIONS(6814), - [anon_sym_xor] = ACTIONS(6814), - [anon_sym_bitand] = ACTIONS(6814), - [anon_sym_not_eq] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6814), - [anon_sym_DOT_STAR] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6812), - [sym_comment] = ACTIONS(3), - }, - [STATE(3271)] = { - [sym_identifier] = ACTIONS(3676), - [aux_sym_preproc_def_token1] = ACTIONS(3676), - [aux_sym_preproc_if_token1] = ACTIONS(3676), - [aux_sym_preproc_if_token2] = ACTIONS(3676), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3676), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3676), - [sym_preproc_directive] = ACTIONS(3676), - [anon_sym_LPAREN2] = ACTIONS(3678), - [anon_sym_TILDE] = ACTIONS(3678), - [anon_sym_STAR] = ACTIONS(3678), - [anon_sym_AMP_AMP] = ACTIONS(3678), - [anon_sym_AMP] = ACTIONS(3676), - [anon_sym_SEMI] = ACTIONS(3678), - [anon_sym___extension__] = ACTIONS(3676), - [anon_sym_typedef] = ACTIONS(3676), - [anon_sym_virtual] = ACTIONS(3676), - [anon_sym_extern] = ACTIONS(3676), - [anon_sym___attribute__] = ACTIONS(3676), - [anon_sym___attribute] = ACTIONS(3676), - [anon_sym_using] = ACTIONS(3676), - [anon_sym_COLON_COLON] = ACTIONS(3678), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3678), - [anon_sym___declspec] = ACTIONS(3676), - [anon_sym___based] = ACTIONS(3676), - [anon_sym_signed] = ACTIONS(3676), - [anon_sym_unsigned] = ACTIONS(3676), - [anon_sym_long] = ACTIONS(3676), - [anon_sym_short] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3676), - [anon_sym_static] = ACTIONS(3676), - [anon_sym_register] = ACTIONS(3676), - [anon_sym_inline] = ACTIONS(3676), - [anon_sym___inline] = ACTIONS(3676), - [anon_sym___inline__] = ACTIONS(3676), - [anon_sym___forceinline] = ACTIONS(3676), - [anon_sym_thread_local] = ACTIONS(3676), - [anon_sym___thread] = ACTIONS(3676), - [anon_sym_const] = ACTIONS(3676), - [anon_sym_constexpr] = ACTIONS(3676), - [anon_sym_volatile] = ACTIONS(3676), - [anon_sym_restrict] = ACTIONS(3676), - [anon_sym___restrict__] = ACTIONS(3676), - [anon_sym__Atomic] = ACTIONS(3676), - [anon_sym__Noreturn] = ACTIONS(3676), - [anon_sym_noreturn] = ACTIONS(3676), - [anon_sym__Nonnull] = ACTIONS(3676), - [anon_sym_mutable] = ACTIONS(3676), - [anon_sym_constinit] = ACTIONS(3676), - [anon_sym_consteval] = ACTIONS(3676), - [anon_sym_alignas] = ACTIONS(3676), - [anon_sym__Alignas] = ACTIONS(3676), - [sym_primitive_type] = ACTIONS(3676), - [anon_sym_enum] = ACTIONS(3676), - [anon_sym_class] = ACTIONS(3676), - [anon_sym_struct] = ACTIONS(3676), - [anon_sym_union] = ACTIONS(3676), - [anon_sym_typename] = ACTIONS(3676), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3676), - [anon_sym_decltype] = ACTIONS(3676), - [anon_sym_explicit] = ACTIONS(3676), - [anon_sym_private] = ACTIONS(3676), - [anon_sym_template] = ACTIONS(3676), - [anon_sym_operator] = ACTIONS(3676), - [anon_sym_friend] = ACTIONS(3676), - [anon_sym_public] = ACTIONS(3676), - [anon_sym_protected] = ACTIONS(3676), - [anon_sym_static_assert] = ACTIONS(3676), - [anon_sym_LBRACK_COLON] = ACTIONS(3678), - }, - [STATE(3272)] = { - [sym_identifier] = ACTIONS(3876), - [aux_sym_preproc_def_token1] = ACTIONS(3876), - [aux_sym_preproc_if_token1] = ACTIONS(3876), - [aux_sym_preproc_if_token2] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3876), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3876), - [sym_preproc_directive] = ACTIONS(3876), - [anon_sym_LPAREN2] = ACTIONS(3878), - [anon_sym_TILDE] = ACTIONS(3878), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_AMP_AMP] = ACTIONS(3878), - [anon_sym_AMP] = ACTIONS(3876), - [anon_sym_SEMI] = ACTIONS(3878), - [anon_sym___extension__] = ACTIONS(3876), - [anon_sym_typedef] = ACTIONS(3876), - [anon_sym_virtual] = ACTIONS(3876), - [anon_sym_extern] = ACTIONS(3876), - [anon_sym___attribute__] = ACTIONS(3876), - [anon_sym___attribute] = ACTIONS(3876), - [anon_sym_using] = ACTIONS(3876), - [anon_sym_COLON_COLON] = ACTIONS(3878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3878), - [anon_sym___declspec] = ACTIONS(3876), - [anon_sym___based] = ACTIONS(3876), - [anon_sym_signed] = ACTIONS(3876), - [anon_sym_unsigned] = ACTIONS(3876), - [anon_sym_long] = ACTIONS(3876), - [anon_sym_short] = ACTIONS(3876), - [anon_sym_LBRACK] = ACTIONS(3876), - [anon_sym_static] = ACTIONS(3876), - [anon_sym_register] = ACTIONS(3876), - [anon_sym_inline] = ACTIONS(3876), - [anon_sym___inline] = ACTIONS(3876), - [anon_sym___inline__] = ACTIONS(3876), - [anon_sym___forceinline] = ACTIONS(3876), - [anon_sym_thread_local] = ACTIONS(3876), - [anon_sym___thread] = ACTIONS(3876), - [anon_sym_const] = ACTIONS(3876), - [anon_sym_constexpr] = ACTIONS(3876), - [anon_sym_volatile] = ACTIONS(3876), - [anon_sym_restrict] = ACTIONS(3876), - [anon_sym___restrict__] = ACTIONS(3876), - [anon_sym__Atomic] = ACTIONS(3876), - [anon_sym__Noreturn] = ACTIONS(3876), - [anon_sym_noreturn] = ACTIONS(3876), - [anon_sym__Nonnull] = ACTIONS(3876), - [anon_sym_mutable] = ACTIONS(3876), - [anon_sym_constinit] = ACTIONS(3876), - [anon_sym_consteval] = ACTIONS(3876), - [anon_sym_alignas] = ACTIONS(3876), - [anon_sym__Alignas] = ACTIONS(3876), - [sym_primitive_type] = ACTIONS(3876), - [anon_sym_enum] = ACTIONS(3876), - [anon_sym_class] = ACTIONS(3876), - [anon_sym_struct] = ACTIONS(3876), - [anon_sym_union] = ACTIONS(3876), - [anon_sym_typename] = ACTIONS(3876), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3876), - [anon_sym_decltype] = ACTIONS(3876), - [anon_sym_explicit] = ACTIONS(3876), - [anon_sym_private] = ACTIONS(3876), - [anon_sym_template] = ACTIONS(3876), - [anon_sym_operator] = ACTIONS(3876), - [anon_sym_friend] = ACTIONS(3876), - [anon_sym_public] = ACTIONS(3876), - [anon_sym_protected] = ACTIONS(3876), - [anon_sym_static_assert] = ACTIONS(3876), - [anon_sym_LBRACK_COLON] = ACTIONS(3878), - }, - [STATE(3273)] = { - [sym_identifier] = ACTIONS(4010), - [aux_sym_preproc_def_token1] = ACTIONS(4010), - [aux_sym_preproc_if_token1] = ACTIONS(4010), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4010), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4010), - [sym_preproc_directive] = ACTIONS(4010), - [anon_sym_LPAREN2] = ACTIONS(4012), - [anon_sym_TILDE] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4012), - [anon_sym_AMP_AMP] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4010), - [anon_sym_SEMI] = ACTIONS(4012), - [anon_sym___extension__] = ACTIONS(4010), - [anon_sym_typedef] = ACTIONS(4010), - [anon_sym_virtual] = ACTIONS(4010), - [anon_sym_extern] = ACTIONS(4010), - [anon_sym___attribute__] = ACTIONS(4010), - [anon_sym___attribute] = ACTIONS(4010), - [anon_sym_using] = ACTIONS(4010), - [anon_sym_COLON_COLON] = ACTIONS(4012), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4012), - [anon_sym___declspec] = ACTIONS(4010), - [anon_sym___based] = ACTIONS(4010), - [anon_sym_RBRACE] = ACTIONS(4012), - [anon_sym_signed] = ACTIONS(4010), - [anon_sym_unsigned] = ACTIONS(4010), - [anon_sym_long] = ACTIONS(4010), - [anon_sym_short] = ACTIONS(4010), - [anon_sym_LBRACK] = ACTIONS(4010), - [anon_sym_static] = ACTIONS(4010), - [anon_sym_register] = ACTIONS(4010), - [anon_sym_inline] = ACTIONS(4010), - [anon_sym___inline] = ACTIONS(4010), - [anon_sym___inline__] = ACTIONS(4010), - [anon_sym___forceinline] = ACTIONS(4010), - [anon_sym_thread_local] = ACTIONS(4010), - [anon_sym___thread] = ACTIONS(4010), - [anon_sym_const] = ACTIONS(4010), - [anon_sym_constexpr] = ACTIONS(4010), - [anon_sym_volatile] = ACTIONS(4010), - [anon_sym_restrict] = ACTIONS(4010), - [anon_sym___restrict__] = ACTIONS(4010), - [anon_sym__Atomic] = ACTIONS(4010), - [anon_sym__Noreturn] = ACTIONS(4010), - [anon_sym_noreturn] = ACTIONS(4010), - [anon_sym__Nonnull] = ACTIONS(4010), - [anon_sym_mutable] = ACTIONS(4010), - [anon_sym_constinit] = ACTIONS(4010), - [anon_sym_consteval] = ACTIONS(4010), - [anon_sym_alignas] = ACTIONS(4010), - [anon_sym__Alignas] = ACTIONS(4010), - [sym_primitive_type] = ACTIONS(4010), - [anon_sym_enum] = ACTIONS(4010), - [anon_sym_class] = ACTIONS(4010), - [anon_sym_struct] = ACTIONS(4010), - [anon_sym_union] = ACTIONS(4010), - [anon_sym_typename] = ACTIONS(4010), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4010), - [anon_sym_decltype] = ACTIONS(4010), - [anon_sym_explicit] = ACTIONS(4010), - [anon_sym_private] = ACTIONS(4010), - [anon_sym_template] = ACTIONS(4010), - [anon_sym_operator] = ACTIONS(4010), - [anon_sym_friend] = ACTIONS(4010), - [anon_sym_public] = ACTIONS(4010), - [anon_sym_protected] = ACTIONS(4010), - [anon_sym_static_assert] = ACTIONS(4010), - [anon_sym_LBRACK_COLON] = ACTIONS(4012), - }, - [STATE(3274)] = { - [sym_identifier] = ACTIONS(4192), - [aux_sym_preproc_def_token1] = ACTIONS(4192), - [aux_sym_preproc_if_token1] = ACTIONS(4192), - [aux_sym_preproc_if_token2] = ACTIONS(4192), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4192), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4192), - [sym_preproc_directive] = ACTIONS(4192), - [anon_sym_LPAREN2] = ACTIONS(4194), - [anon_sym_TILDE] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [anon_sym_AMP_AMP] = ACTIONS(4194), - [anon_sym_AMP] = ACTIONS(4192), - [anon_sym_SEMI] = ACTIONS(4194), - [anon_sym___extension__] = ACTIONS(4192), - [anon_sym_typedef] = ACTIONS(4192), - [anon_sym_virtual] = ACTIONS(4192), - [anon_sym_extern] = ACTIONS(4192), - [anon_sym___attribute__] = ACTIONS(4192), - [anon_sym___attribute] = ACTIONS(4192), - [anon_sym_using] = ACTIONS(4192), - [anon_sym_COLON_COLON] = ACTIONS(4194), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), - [anon_sym___declspec] = ACTIONS(4192), - [anon_sym___based] = ACTIONS(4192), - [anon_sym_signed] = ACTIONS(4192), - [anon_sym_unsigned] = ACTIONS(4192), - [anon_sym_long] = ACTIONS(4192), - [anon_sym_short] = ACTIONS(4192), - [anon_sym_LBRACK] = ACTIONS(4192), - [anon_sym_static] = ACTIONS(4192), - [anon_sym_register] = ACTIONS(4192), - [anon_sym_inline] = ACTIONS(4192), - [anon_sym___inline] = ACTIONS(4192), - [anon_sym___inline__] = ACTIONS(4192), - [anon_sym___forceinline] = ACTIONS(4192), - [anon_sym_thread_local] = ACTIONS(4192), - [anon_sym___thread] = ACTIONS(4192), - [anon_sym_const] = ACTIONS(4192), - [anon_sym_constexpr] = ACTIONS(4192), - [anon_sym_volatile] = ACTIONS(4192), - [anon_sym_restrict] = ACTIONS(4192), - [anon_sym___restrict__] = ACTIONS(4192), - [anon_sym__Atomic] = ACTIONS(4192), - [anon_sym__Noreturn] = ACTIONS(4192), - [anon_sym_noreturn] = ACTIONS(4192), - [anon_sym__Nonnull] = ACTIONS(4192), - [anon_sym_mutable] = ACTIONS(4192), - [anon_sym_constinit] = ACTIONS(4192), - [anon_sym_consteval] = ACTIONS(4192), - [anon_sym_alignas] = ACTIONS(4192), - [anon_sym__Alignas] = ACTIONS(4192), - [sym_primitive_type] = ACTIONS(4192), - [anon_sym_enum] = ACTIONS(4192), - [anon_sym_class] = ACTIONS(4192), - [anon_sym_struct] = ACTIONS(4192), - [anon_sym_union] = ACTIONS(4192), - [anon_sym_typename] = ACTIONS(4192), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4192), - [anon_sym_decltype] = ACTIONS(4192), - [anon_sym_explicit] = ACTIONS(4192), - [anon_sym_private] = ACTIONS(4192), - [anon_sym_template] = ACTIONS(4192), - [anon_sym_operator] = ACTIONS(4192), - [anon_sym_friend] = ACTIONS(4192), - [anon_sym_public] = ACTIONS(4192), - [anon_sym_protected] = ACTIONS(4192), - [anon_sym_static_assert] = ACTIONS(4192), - [anon_sym_LBRACK_COLON] = ACTIONS(4194), - }, - [STATE(3275)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6228), - [anon_sym_RPAREN] = ACTIONS(6230), - [anon_sym_LPAREN2] = ACTIONS(6230), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6237), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_PERCENT] = ACTIONS(6235), - [anon_sym_PIPE_PIPE] = ACTIONS(6228), - [anon_sym_AMP_AMP] = ACTIONS(6230), - [anon_sym_PIPE] = ACTIONS(6235), - [anon_sym_CARET] = ACTIONS(6235), - [anon_sym_AMP] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6228), - [anon_sym_BANG_EQ] = ACTIONS(6228), - [anon_sym_GT] = ACTIONS(6235), - [anon_sym_GT_EQ] = ACTIONS(6228), - [anon_sym_LT_EQ] = ACTIONS(6235), - [anon_sym_LT] = ACTIONS(6235), - [anon_sym_LT_LT] = ACTIONS(6235), - [anon_sym_GT_GT] = ACTIONS(6235), - [anon_sym___extension__] = ACTIONS(6233), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6230), - [anon_sym_EQ] = ACTIONS(6235), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6233), - [anon_sym_volatile] = ACTIONS(6233), - [anon_sym_restrict] = ACTIONS(6233), - [anon_sym___restrict__] = ACTIONS(6233), - [anon_sym__Atomic] = ACTIONS(6233), - [anon_sym__Noreturn] = ACTIONS(6233), - [anon_sym_noreturn] = ACTIONS(6233), - [anon_sym__Nonnull] = ACTIONS(6233), - [anon_sym_mutable] = ACTIONS(6233), - [anon_sym_constinit] = ACTIONS(6233), - [anon_sym_consteval] = ACTIONS(6233), - [anon_sym_alignas] = ACTIONS(6233), - [anon_sym__Alignas] = ACTIONS(6233), - [anon_sym_QMARK] = ACTIONS(6228), - [anon_sym_STAR_EQ] = ACTIONS(6228), - [anon_sym_SLASH_EQ] = ACTIONS(6228), - [anon_sym_PERCENT_EQ] = ACTIONS(6228), - [anon_sym_PLUS_EQ] = ACTIONS(6228), - [anon_sym_DASH_EQ] = ACTIONS(6228), - [anon_sym_LT_LT_EQ] = ACTIONS(6228), - [anon_sym_GT_GT_EQ] = ACTIONS(6228), - [anon_sym_AMP_EQ] = ACTIONS(6228), - [anon_sym_CARET_EQ] = ACTIONS(6228), - [anon_sym_PIPE_EQ] = ACTIONS(6228), - [anon_sym_and_eq] = ACTIONS(6228), - [anon_sym_or_eq] = ACTIONS(6228), - [anon_sym_xor_eq] = ACTIONS(6228), - [anon_sym_LT_EQ_GT] = ACTIONS(6228), - [anon_sym_or] = ACTIONS(6235), - [anon_sym_and] = ACTIONS(6235), - [anon_sym_bitor] = ACTIONS(6228), - [anon_sym_xor] = ACTIONS(6235), - [anon_sym_bitand] = ACTIONS(6228), - [anon_sym_not_eq] = ACTIONS(6228), - [anon_sym_DASH_DASH] = ACTIONS(6228), - [anon_sym_PLUS_PLUS] = ACTIONS(6228), - [anon_sym_DOT] = ACTIONS(6235), - [anon_sym_DOT_STAR] = ACTIONS(6228), - [anon_sym_DASH_GT] = ACTIONS(6228), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6233), - [anon_sym_decltype] = ACTIONS(6233), - }, - [STATE(3276)] = { - [sym_identifier] = ACTIONS(4107), - [aux_sym_preproc_def_token1] = ACTIONS(4107), - [aux_sym_preproc_if_token1] = ACTIONS(4107), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4107), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4107), - [sym_preproc_directive] = ACTIONS(4107), - [anon_sym_LPAREN2] = ACTIONS(4109), - [anon_sym_TILDE] = ACTIONS(4109), - [anon_sym_STAR] = ACTIONS(4109), - [anon_sym_AMP_AMP] = ACTIONS(4109), - [anon_sym_AMP] = ACTIONS(4107), - [anon_sym_SEMI] = ACTIONS(4109), - [anon_sym___extension__] = ACTIONS(4107), - [anon_sym_typedef] = ACTIONS(4107), - [anon_sym_virtual] = ACTIONS(4107), - [anon_sym_extern] = ACTIONS(4107), - [anon_sym___attribute__] = ACTIONS(4107), - [anon_sym___attribute] = ACTIONS(4107), - [anon_sym_using] = ACTIONS(4107), - [anon_sym_COLON_COLON] = ACTIONS(4109), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4109), - [anon_sym___declspec] = ACTIONS(4107), - [anon_sym___based] = ACTIONS(4107), - [anon_sym_RBRACE] = ACTIONS(4109), - [anon_sym_signed] = ACTIONS(4107), - [anon_sym_unsigned] = ACTIONS(4107), - [anon_sym_long] = ACTIONS(4107), - [anon_sym_short] = ACTIONS(4107), - [anon_sym_LBRACK] = ACTIONS(4107), - [anon_sym_static] = ACTIONS(4107), - [anon_sym_register] = ACTIONS(4107), - [anon_sym_inline] = ACTIONS(4107), - [anon_sym___inline] = ACTIONS(4107), - [anon_sym___inline__] = ACTIONS(4107), - [anon_sym___forceinline] = ACTIONS(4107), - [anon_sym_thread_local] = ACTIONS(4107), - [anon_sym___thread] = ACTIONS(4107), - [anon_sym_const] = ACTIONS(4107), - [anon_sym_constexpr] = ACTIONS(4107), - [anon_sym_volatile] = ACTIONS(4107), - [anon_sym_restrict] = ACTIONS(4107), - [anon_sym___restrict__] = ACTIONS(4107), - [anon_sym__Atomic] = ACTIONS(4107), - [anon_sym__Noreturn] = ACTIONS(4107), - [anon_sym_noreturn] = ACTIONS(4107), - [anon_sym__Nonnull] = ACTIONS(4107), - [anon_sym_mutable] = ACTIONS(4107), - [anon_sym_constinit] = ACTIONS(4107), - [anon_sym_consteval] = ACTIONS(4107), - [anon_sym_alignas] = ACTIONS(4107), - [anon_sym__Alignas] = ACTIONS(4107), - [sym_primitive_type] = ACTIONS(4107), - [anon_sym_enum] = ACTIONS(4107), - [anon_sym_class] = ACTIONS(4107), - [anon_sym_struct] = ACTIONS(4107), - [anon_sym_union] = ACTIONS(4107), - [anon_sym_typename] = ACTIONS(4107), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4107), - [anon_sym_decltype] = ACTIONS(4107), - [anon_sym_explicit] = ACTIONS(4107), - [anon_sym_private] = ACTIONS(4107), - [anon_sym_template] = ACTIONS(4107), - [anon_sym_operator] = ACTIONS(4107), - [anon_sym_friend] = ACTIONS(4107), - [anon_sym_public] = ACTIONS(4107), - [anon_sym_protected] = ACTIONS(4107), - [anon_sym_static_assert] = ACTIONS(4107), - [anon_sym_LBRACK_COLON] = ACTIONS(4109), - }, - [STATE(3277)] = { - [sym_identifier] = ACTIONS(3906), - [aux_sym_preproc_def_token1] = ACTIONS(3906), - [aux_sym_preproc_if_token1] = ACTIONS(3906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3906), - [sym_preproc_directive] = ACTIONS(3906), - [anon_sym_LPAREN2] = ACTIONS(3908), - [anon_sym_TILDE] = ACTIONS(3908), - [anon_sym_STAR] = ACTIONS(3908), - [anon_sym_AMP_AMP] = ACTIONS(3908), - [anon_sym_AMP] = ACTIONS(3906), - [anon_sym_SEMI] = ACTIONS(3908), - [anon_sym___extension__] = ACTIONS(3906), - [anon_sym_typedef] = ACTIONS(3906), - [anon_sym_virtual] = ACTIONS(3906), - [anon_sym_extern] = ACTIONS(3906), - [anon_sym___attribute__] = ACTIONS(3906), - [anon_sym___attribute] = ACTIONS(3906), - [anon_sym_using] = ACTIONS(3906), - [anon_sym_COLON_COLON] = ACTIONS(3908), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3908), - [anon_sym___declspec] = ACTIONS(3906), - [anon_sym___based] = ACTIONS(3906), - [anon_sym_RBRACE] = ACTIONS(3908), - [anon_sym_signed] = ACTIONS(3906), - [anon_sym_unsigned] = ACTIONS(3906), - [anon_sym_long] = ACTIONS(3906), - [anon_sym_short] = ACTIONS(3906), - [anon_sym_LBRACK] = ACTIONS(3906), - [anon_sym_static] = ACTIONS(3906), - [anon_sym_register] = ACTIONS(3906), - [anon_sym_inline] = ACTIONS(3906), - [anon_sym___inline] = ACTIONS(3906), - [anon_sym___inline__] = ACTIONS(3906), - [anon_sym___forceinline] = ACTIONS(3906), - [anon_sym_thread_local] = ACTIONS(3906), - [anon_sym___thread] = ACTIONS(3906), - [anon_sym_const] = ACTIONS(3906), - [anon_sym_constexpr] = ACTIONS(3906), - [anon_sym_volatile] = ACTIONS(3906), - [anon_sym_restrict] = ACTIONS(3906), - [anon_sym___restrict__] = ACTIONS(3906), - [anon_sym__Atomic] = ACTIONS(3906), - [anon_sym__Noreturn] = ACTIONS(3906), - [anon_sym_noreturn] = ACTIONS(3906), - [anon_sym__Nonnull] = ACTIONS(3906), - [anon_sym_mutable] = ACTIONS(3906), - [anon_sym_constinit] = ACTIONS(3906), - [anon_sym_consteval] = ACTIONS(3906), - [anon_sym_alignas] = ACTIONS(3906), - [anon_sym__Alignas] = ACTIONS(3906), - [sym_primitive_type] = ACTIONS(3906), - [anon_sym_enum] = ACTIONS(3906), - [anon_sym_class] = ACTIONS(3906), - [anon_sym_struct] = ACTIONS(3906), - [anon_sym_union] = ACTIONS(3906), - [anon_sym_typename] = ACTIONS(3906), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3906), - [anon_sym_decltype] = ACTIONS(3906), - [anon_sym_explicit] = ACTIONS(3906), - [anon_sym_private] = ACTIONS(3906), - [anon_sym_template] = ACTIONS(3906), - [anon_sym_operator] = ACTIONS(3906), - [anon_sym_friend] = ACTIONS(3906), - [anon_sym_public] = ACTIONS(3906), - [anon_sym_protected] = ACTIONS(3906), - [anon_sym_static_assert] = ACTIONS(3906), - [anon_sym_LBRACK_COLON] = ACTIONS(3908), - }, - [STATE(3278)] = { - [sym_identifier] = ACTIONS(8392), - [aux_sym_preproc_def_token1] = ACTIONS(8392), - [aux_sym_preproc_if_token1] = ACTIONS(8392), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8392), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8392), - [sym_preproc_directive] = ACTIONS(8392), - [anon_sym_LPAREN2] = ACTIONS(8394), - [anon_sym_TILDE] = ACTIONS(8394), - [anon_sym_STAR] = ACTIONS(8394), - [anon_sym_AMP_AMP] = ACTIONS(8394), - [anon_sym_AMP] = ACTIONS(8392), - [anon_sym_SEMI] = ACTIONS(8394), - [anon_sym___extension__] = ACTIONS(8392), - [anon_sym_typedef] = ACTIONS(8392), - [anon_sym_virtual] = ACTIONS(8392), - [anon_sym_extern] = ACTIONS(8392), - [anon_sym___attribute__] = ACTIONS(8392), - [anon_sym___attribute] = ACTIONS(8392), - [anon_sym_using] = ACTIONS(8392), - [anon_sym_COLON_COLON] = ACTIONS(8394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8394), - [anon_sym___declspec] = ACTIONS(8392), - [anon_sym___based] = ACTIONS(8392), - [anon_sym_RBRACE] = ACTIONS(8394), - [anon_sym_signed] = ACTIONS(8392), - [anon_sym_unsigned] = ACTIONS(8392), - [anon_sym_long] = ACTIONS(8392), - [anon_sym_short] = ACTIONS(8392), - [anon_sym_LBRACK] = ACTIONS(8392), - [anon_sym_static] = ACTIONS(8392), - [anon_sym_register] = ACTIONS(8392), - [anon_sym_inline] = ACTIONS(8392), - [anon_sym___inline] = ACTIONS(8392), - [anon_sym___inline__] = ACTIONS(8392), - [anon_sym___forceinline] = ACTIONS(8392), - [anon_sym_thread_local] = ACTIONS(8392), - [anon_sym___thread] = ACTIONS(8392), - [anon_sym_const] = ACTIONS(8392), - [anon_sym_constexpr] = ACTIONS(8392), - [anon_sym_volatile] = ACTIONS(8392), - [anon_sym_restrict] = ACTIONS(8392), - [anon_sym___restrict__] = ACTIONS(8392), - [anon_sym__Atomic] = ACTIONS(8392), - [anon_sym__Noreturn] = ACTIONS(8392), - [anon_sym_noreturn] = ACTIONS(8392), - [anon_sym__Nonnull] = ACTIONS(8392), - [anon_sym_mutable] = ACTIONS(8392), - [anon_sym_constinit] = ACTIONS(8392), - [anon_sym_consteval] = ACTIONS(8392), - [anon_sym_alignas] = ACTIONS(8392), - [anon_sym__Alignas] = ACTIONS(8392), - [sym_primitive_type] = ACTIONS(8392), - [anon_sym_enum] = ACTIONS(8392), - [anon_sym_class] = ACTIONS(8392), - [anon_sym_struct] = ACTIONS(8392), - [anon_sym_union] = ACTIONS(8392), - [anon_sym_typename] = ACTIONS(8392), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8392), - [anon_sym_decltype] = ACTIONS(8392), - [anon_sym_explicit] = ACTIONS(8392), - [anon_sym_private] = ACTIONS(8392), - [anon_sym_template] = ACTIONS(8392), - [anon_sym_operator] = ACTIONS(8392), - [anon_sym_friend] = ACTIONS(8392), - [anon_sym_public] = ACTIONS(8392), - [anon_sym_protected] = ACTIONS(8392), - [anon_sym_static_assert] = ACTIONS(8392), - [anon_sym_LBRACK_COLON] = ACTIONS(8394), - }, - [STATE(3279)] = { - [sym_identifier] = ACTIONS(4074), - [aux_sym_preproc_def_token1] = ACTIONS(4074), - [aux_sym_preproc_if_token1] = ACTIONS(4074), - [aux_sym_preproc_if_token2] = ACTIONS(4074), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4074), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4074), - [sym_preproc_directive] = ACTIONS(4074), - [anon_sym_LPAREN2] = ACTIONS(4076), - [anon_sym_TILDE] = ACTIONS(4076), - [anon_sym_STAR] = ACTIONS(4076), - [anon_sym_AMP_AMP] = ACTIONS(4076), - [anon_sym_AMP] = ACTIONS(4074), - [anon_sym_SEMI] = ACTIONS(4076), - [anon_sym___extension__] = ACTIONS(4074), - [anon_sym_typedef] = ACTIONS(4074), - [anon_sym_virtual] = ACTIONS(4074), - [anon_sym_extern] = ACTIONS(4074), - [anon_sym___attribute__] = ACTIONS(4074), - [anon_sym___attribute] = ACTIONS(4074), - [anon_sym_using] = ACTIONS(4074), - [anon_sym_COLON_COLON] = ACTIONS(4076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4076), - [anon_sym___declspec] = ACTIONS(4074), - [anon_sym___based] = ACTIONS(4074), - [anon_sym_signed] = ACTIONS(4074), - [anon_sym_unsigned] = ACTIONS(4074), - [anon_sym_long] = ACTIONS(4074), - [anon_sym_short] = ACTIONS(4074), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_static] = ACTIONS(4074), - [anon_sym_register] = ACTIONS(4074), - [anon_sym_inline] = ACTIONS(4074), - [anon_sym___inline] = ACTIONS(4074), - [anon_sym___inline__] = ACTIONS(4074), - [anon_sym___forceinline] = ACTIONS(4074), - [anon_sym_thread_local] = ACTIONS(4074), - [anon_sym___thread] = ACTIONS(4074), - [anon_sym_const] = ACTIONS(4074), - [anon_sym_constexpr] = ACTIONS(4074), - [anon_sym_volatile] = ACTIONS(4074), - [anon_sym_restrict] = ACTIONS(4074), - [anon_sym___restrict__] = ACTIONS(4074), - [anon_sym__Atomic] = ACTIONS(4074), - [anon_sym__Noreturn] = ACTIONS(4074), - [anon_sym_noreturn] = ACTIONS(4074), - [anon_sym__Nonnull] = ACTIONS(4074), - [anon_sym_mutable] = ACTIONS(4074), - [anon_sym_constinit] = ACTIONS(4074), - [anon_sym_consteval] = ACTIONS(4074), - [anon_sym_alignas] = ACTIONS(4074), - [anon_sym__Alignas] = ACTIONS(4074), - [sym_primitive_type] = ACTIONS(4074), - [anon_sym_enum] = ACTIONS(4074), - [anon_sym_class] = ACTIONS(4074), - [anon_sym_struct] = ACTIONS(4074), - [anon_sym_union] = ACTIONS(4074), - [anon_sym_typename] = ACTIONS(4074), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4074), - [anon_sym_decltype] = ACTIONS(4074), - [anon_sym_explicit] = ACTIONS(4074), - [anon_sym_private] = ACTIONS(4074), - [anon_sym_template] = ACTIONS(4074), - [anon_sym_operator] = ACTIONS(4074), - [anon_sym_friend] = ACTIONS(4074), - [anon_sym_public] = ACTIONS(4074), - [anon_sym_protected] = ACTIONS(4074), - [anon_sym_static_assert] = ACTIONS(4074), - [anon_sym_LBRACK_COLON] = ACTIONS(4076), - }, - [STATE(3280)] = { - [sym_identifier] = ACTIONS(8325), - [aux_sym_preproc_def_token1] = ACTIONS(8325), - [aux_sym_preproc_if_token1] = ACTIONS(8325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8325), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8325), - [sym_preproc_directive] = ACTIONS(8325), - [anon_sym_LPAREN2] = ACTIONS(8327), - [anon_sym_TILDE] = ACTIONS(8327), - [anon_sym_STAR] = ACTIONS(8327), - [anon_sym_AMP_AMP] = ACTIONS(8327), - [anon_sym_AMP] = ACTIONS(8325), - [anon_sym_SEMI] = ACTIONS(8327), - [anon_sym___extension__] = ACTIONS(8325), - [anon_sym_typedef] = ACTIONS(8325), - [anon_sym_virtual] = ACTIONS(8325), - [anon_sym_extern] = ACTIONS(8325), - [anon_sym___attribute__] = ACTIONS(8325), - [anon_sym___attribute] = ACTIONS(8325), - [anon_sym_using] = ACTIONS(8325), - [anon_sym_COLON_COLON] = ACTIONS(8327), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8327), - [anon_sym___declspec] = ACTIONS(8325), - [anon_sym___based] = ACTIONS(8325), - [anon_sym_RBRACE] = ACTIONS(8327), - [anon_sym_signed] = ACTIONS(8325), - [anon_sym_unsigned] = ACTIONS(8325), - [anon_sym_long] = ACTIONS(8325), - [anon_sym_short] = ACTIONS(8325), - [anon_sym_LBRACK] = ACTIONS(8325), - [anon_sym_static] = ACTIONS(8325), - [anon_sym_register] = ACTIONS(8325), - [anon_sym_inline] = ACTIONS(8325), - [anon_sym___inline] = ACTIONS(8325), - [anon_sym___inline__] = ACTIONS(8325), - [anon_sym___forceinline] = ACTIONS(8325), - [anon_sym_thread_local] = ACTIONS(8325), - [anon_sym___thread] = ACTIONS(8325), - [anon_sym_const] = ACTIONS(8325), - [anon_sym_constexpr] = ACTIONS(8325), - [anon_sym_volatile] = ACTIONS(8325), - [anon_sym_restrict] = ACTIONS(8325), - [anon_sym___restrict__] = ACTIONS(8325), - [anon_sym__Atomic] = ACTIONS(8325), - [anon_sym__Noreturn] = ACTIONS(8325), - [anon_sym_noreturn] = ACTIONS(8325), - [anon_sym__Nonnull] = ACTIONS(8325), - [anon_sym_mutable] = ACTIONS(8325), - [anon_sym_constinit] = ACTIONS(8325), - [anon_sym_consteval] = ACTIONS(8325), - [anon_sym_alignas] = ACTIONS(8325), - [anon_sym__Alignas] = ACTIONS(8325), - [sym_primitive_type] = ACTIONS(8325), - [anon_sym_enum] = ACTIONS(8325), - [anon_sym_class] = ACTIONS(8325), - [anon_sym_struct] = ACTIONS(8325), - [anon_sym_union] = ACTIONS(8325), - [anon_sym_typename] = ACTIONS(8325), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8325), - [anon_sym_decltype] = ACTIONS(8325), - [anon_sym_explicit] = ACTIONS(8325), - [anon_sym_private] = ACTIONS(8325), - [anon_sym_template] = ACTIONS(8325), - [anon_sym_operator] = ACTIONS(8325), - [anon_sym_friend] = ACTIONS(8325), - [anon_sym_public] = ACTIONS(8325), - [anon_sym_protected] = ACTIONS(8325), - [anon_sym_static_assert] = ACTIONS(8325), - [anon_sym_LBRACK_COLON] = ACTIONS(8327), - }, - [STATE(3281)] = { - [sym_identifier] = ACTIONS(4156), - [aux_sym_preproc_def_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token2] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), - [sym_preproc_directive] = ACTIONS(4156), - [anon_sym_LPAREN2] = ACTIONS(4158), - [anon_sym_TILDE] = ACTIONS(4158), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_SEMI] = ACTIONS(4158), - [anon_sym___extension__] = ACTIONS(4156), - [anon_sym_typedef] = ACTIONS(4156), - [anon_sym_virtual] = ACTIONS(4156), - [anon_sym_extern] = ACTIONS(4156), - [anon_sym___attribute__] = ACTIONS(4156), - [anon_sym___attribute] = ACTIONS(4156), - [anon_sym_using] = ACTIONS(4156), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), - [anon_sym___declspec] = ACTIONS(4156), - [anon_sym___based] = ACTIONS(4156), - [anon_sym_signed] = ACTIONS(4156), - [anon_sym_unsigned] = ACTIONS(4156), - [anon_sym_long] = ACTIONS(4156), - [anon_sym_short] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4156), - [anon_sym_register] = ACTIONS(4156), - [anon_sym_inline] = ACTIONS(4156), - [anon_sym___inline] = ACTIONS(4156), - [anon_sym___inline__] = ACTIONS(4156), - [anon_sym___forceinline] = ACTIONS(4156), - [anon_sym_thread_local] = ACTIONS(4156), - [anon_sym___thread] = ACTIONS(4156), - [anon_sym_const] = ACTIONS(4156), - [anon_sym_constexpr] = ACTIONS(4156), - [anon_sym_volatile] = ACTIONS(4156), - [anon_sym_restrict] = ACTIONS(4156), - [anon_sym___restrict__] = ACTIONS(4156), - [anon_sym__Atomic] = ACTIONS(4156), - [anon_sym__Noreturn] = ACTIONS(4156), - [anon_sym_noreturn] = ACTIONS(4156), - [anon_sym__Nonnull] = ACTIONS(4156), - [anon_sym_mutable] = ACTIONS(4156), - [anon_sym_constinit] = ACTIONS(4156), - [anon_sym_consteval] = ACTIONS(4156), - [anon_sym_alignas] = ACTIONS(4156), - [anon_sym__Alignas] = ACTIONS(4156), - [sym_primitive_type] = ACTIONS(4156), - [anon_sym_enum] = ACTIONS(4156), - [anon_sym_class] = ACTIONS(4156), - [anon_sym_struct] = ACTIONS(4156), - [anon_sym_union] = ACTIONS(4156), - [anon_sym_typename] = ACTIONS(4156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4156), - [anon_sym_decltype] = ACTIONS(4156), - [anon_sym_explicit] = ACTIONS(4156), - [anon_sym_private] = ACTIONS(4156), - [anon_sym_template] = ACTIONS(4156), - [anon_sym_operator] = ACTIONS(4156), - [anon_sym_friend] = ACTIONS(4156), - [anon_sym_public] = ACTIONS(4156), - [anon_sym_protected] = ACTIONS(4156), - [anon_sym_static_assert] = ACTIONS(4156), - [anon_sym_LBRACK_COLON] = ACTIONS(4158), - }, - [STATE(3282)] = { - [sym_identifier] = ACTIONS(8329), - [aux_sym_preproc_def_token1] = ACTIONS(8329), - [aux_sym_preproc_if_token1] = ACTIONS(8329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8329), - [sym_preproc_directive] = ACTIONS(8329), - [anon_sym_LPAREN2] = ACTIONS(8331), - [anon_sym_TILDE] = ACTIONS(8331), - [anon_sym_STAR] = ACTIONS(8331), - [anon_sym_AMP_AMP] = ACTIONS(8331), - [anon_sym_AMP] = ACTIONS(8329), - [anon_sym_SEMI] = ACTIONS(8331), - [anon_sym___extension__] = ACTIONS(8329), - [anon_sym_typedef] = ACTIONS(8329), - [anon_sym_virtual] = ACTIONS(8329), - [anon_sym_extern] = ACTIONS(8329), - [anon_sym___attribute__] = ACTIONS(8329), - [anon_sym___attribute] = ACTIONS(8329), - [anon_sym_using] = ACTIONS(8329), - [anon_sym_COLON_COLON] = ACTIONS(8331), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8331), - [anon_sym___declspec] = ACTIONS(8329), - [anon_sym___based] = ACTIONS(8329), - [anon_sym_RBRACE] = ACTIONS(8331), - [anon_sym_signed] = ACTIONS(8329), - [anon_sym_unsigned] = ACTIONS(8329), - [anon_sym_long] = ACTIONS(8329), - [anon_sym_short] = ACTIONS(8329), - [anon_sym_LBRACK] = ACTIONS(8329), - [anon_sym_static] = ACTIONS(8329), - [anon_sym_register] = ACTIONS(8329), - [anon_sym_inline] = ACTIONS(8329), - [anon_sym___inline] = ACTIONS(8329), - [anon_sym___inline__] = ACTIONS(8329), - [anon_sym___forceinline] = ACTIONS(8329), - [anon_sym_thread_local] = ACTIONS(8329), - [anon_sym___thread] = ACTIONS(8329), - [anon_sym_const] = ACTIONS(8329), - [anon_sym_constexpr] = ACTIONS(8329), - [anon_sym_volatile] = ACTIONS(8329), - [anon_sym_restrict] = ACTIONS(8329), - [anon_sym___restrict__] = ACTIONS(8329), - [anon_sym__Atomic] = ACTIONS(8329), - [anon_sym__Noreturn] = ACTIONS(8329), - [anon_sym_noreturn] = ACTIONS(8329), - [anon_sym__Nonnull] = ACTIONS(8329), - [anon_sym_mutable] = ACTIONS(8329), - [anon_sym_constinit] = ACTIONS(8329), - [anon_sym_consteval] = ACTIONS(8329), - [anon_sym_alignas] = ACTIONS(8329), - [anon_sym__Alignas] = ACTIONS(8329), - [sym_primitive_type] = ACTIONS(8329), - [anon_sym_enum] = ACTIONS(8329), - [anon_sym_class] = ACTIONS(8329), - [anon_sym_struct] = ACTIONS(8329), - [anon_sym_union] = ACTIONS(8329), - [anon_sym_typename] = ACTIONS(8329), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8329), - [anon_sym_decltype] = ACTIONS(8329), - [anon_sym_explicit] = ACTIONS(8329), - [anon_sym_private] = ACTIONS(8329), - [anon_sym_template] = ACTIONS(8329), - [anon_sym_operator] = ACTIONS(8329), - [anon_sym_friend] = ACTIONS(8329), - [anon_sym_public] = ACTIONS(8329), - [anon_sym_protected] = ACTIONS(8329), - [anon_sym_static_assert] = ACTIONS(8329), - [anon_sym_LBRACK_COLON] = ACTIONS(8331), - }, - [STATE(3283)] = { - [sym_identifier] = ACTIONS(4160), - [aux_sym_preproc_def_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), - [sym_preproc_directive] = ACTIONS(4160), - [anon_sym_LPAREN2] = ACTIONS(4162), - [anon_sym_TILDE] = ACTIONS(4162), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym___extension__] = ACTIONS(4160), - [anon_sym_typedef] = ACTIONS(4160), - [anon_sym_virtual] = ACTIONS(4160), - [anon_sym_extern] = ACTIONS(4160), - [anon_sym___attribute__] = ACTIONS(4160), - [anon_sym___attribute] = ACTIONS(4160), - [anon_sym_using] = ACTIONS(4160), - [anon_sym_COLON_COLON] = ACTIONS(4162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), - [anon_sym___declspec] = ACTIONS(4160), - [anon_sym___based] = ACTIONS(4160), - [anon_sym_RBRACE] = ACTIONS(4162), - [anon_sym_signed] = ACTIONS(4160), - [anon_sym_unsigned] = ACTIONS(4160), - [anon_sym_long] = ACTIONS(4160), - [anon_sym_short] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(4160), - [anon_sym_static] = ACTIONS(4160), - [anon_sym_register] = ACTIONS(4160), - [anon_sym_inline] = ACTIONS(4160), - [anon_sym___inline] = ACTIONS(4160), - [anon_sym___inline__] = ACTIONS(4160), - [anon_sym___forceinline] = ACTIONS(4160), - [anon_sym_thread_local] = ACTIONS(4160), - [anon_sym___thread] = ACTIONS(4160), - [anon_sym_const] = ACTIONS(4160), - [anon_sym_constexpr] = ACTIONS(4160), - [anon_sym_volatile] = ACTIONS(4160), - [anon_sym_restrict] = ACTIONS(4160), - [anon_sym___restrict__] = ACTIONS(4160), - [anon_sym__Atomic] = ACTIONS(4160), - [anon_sym__Noreturn] = ACTIONS(4160), - [anon_sym_noreturn] = ACTIONS(4160), - [anon_sym__Nonnull] = ACTIONS(4160), - [anon_sym_mutable] = ACTIONS(4160), - [anon_sym_constinit] = ACTIONS(4160), - [anon_sym_consteval] = ACTIONS(4160), - [anon_sym_alignas] = ACTIONS(4160), - [anon_sym__Alignas] = ACTIONS(4160), - [sym_primitive_type] = ACTIONS(4160), - [anon_sym_enum] = ACTIONS(4160), - [anon_sym_class] = ACTIONS(4160), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_union] = ACTIONS(4160), - [anon_sym_typename] = ACTIONS(4160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4160), - [anon_sym_decltype] = ACTIONS(4160), - [anon_sym_explicit] = ACTIONS(4160), - [anon_sym_private] = ACTIONS(4160), - [anon_sym_template] = ACTIONS(4160), - [anon_sym_operator] = ACTIONS(4160), - [anon_sym_friend] = ACTIONS(4160), - [anon_sym_public] = ACTIONS(4160), - [anon_sym_protected] = ACTIONS(4160), - [anon_sym_static_assert] = ACTIONS(4160), - [anon_sym_LBRACK_COLON] = ACTIONS(4162), - }, - [STATE(3284)] = { - [sym_identifier] = ACTIONS(4078), - [aux_sym_preproc_def_token1] = ACTIONS(4078), - [aux_sym_preproc_if_token1] = ACTIONS(4078), - [aux_sym_preproc_if_token2] = ACTIONS(4078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4078), - [sym_preproc_directive] = ACTIONS(4078), - [anon_sym_LPAREN2] = ACTIONS(4080), - [anon_sym_TILDE] = ACTIONS(4080), - [anon_sym_STAR] = ACTIONS(4080), - [anon_sym_AMP_AMP] = ACTIONS(4080), - [anon_sym_AMP] = ACTIONS(4078), - [anon_sym_SEMI] = ACTIONS(4080), - [anon_sym___extension__] = ACTIONS(4078), - [anon_sym_typedef] = ACTIONS(4078), - [anon_sym_virtual] = ACTIONS(4078), - [anon_sym_extern] = ACTIONS(4078), - [anon_sym___attribute__] = ACTIONS(4078), - [anon_sym___attribute] = ACTIONS(4078), - [anon_sym_using] = ACTIONS(4078), - [anon_sym_COLON_COLON] = ACTIONS(4080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4080), - [anon_sym___declspec] = ACTIONS(4078), - [anon_sym___based] = ACTIONS(4078), - [anon_sym_signed] = ACTIONS(4078), - [anon_sym_unsigned] = ACTIONS(4078), - [anon_sym_long] = ACTIONS(4078), - [anon_sym_short] = ACTIONS(4078), - [anon_sym_LBRACK] = ACTIONS(4078), - [anon_sym_static] = ACTIONS(4078), - [anon_sym_register] = ACTIONS(4078), - [anon_sym_inline] = ACTIONS(4078), - [anon_sym___inline] = ACTIONS(4078), - [anon_sym___inline__] = ACTIONS(4078), - [anon_sym___forceinline] = ACTIONS(4078), - [anon_sym_thread_local] = ACTIONS(4078), - [anon_sym___thread] = ACTIONS(4078), - [anon_sym_const] = ACTIONS(4078), - [anon_sym_constexpr] = ACTIONS(4078), - [anon_sym_volatile] = ACTIONS(4078), - [anon_sym_restrict] = ACTIONS(4078), - [anon_sym___restrict__] = ACTIONS(4078), - [anon_sym__Atomic] = ACTIONS(4078), - [anon_sym__Noreturn] = ACTIONS(4078), - [anon_sym_noreturn] = ACTIONS(4078), - [anon_sym__Nonnull] = ACTIONS(4078), - [anon_sym_mutable] = ACTIONS(4078), - [anon_sym_constinit] = ACTIONS(4078), - [anon_sym_consteval] = ACTIONS(4078), - [anon_sym_alignas] = ACTIONS(4078), - [anon_sym__Alignas] = ACTIONS(4078), - [sym_primitive_type] = ACTIONS(4078), - [anon_sym_enum] = ACTIONS(4078), - [anon_sym_class] = ACTIONS(4078), - [anon_sym_struct] = ACTIONS(4078), - [anon_sym_union] = ACTIONS(4078), - [anon_sym_typename] = ACTIONS(4078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4078), - [anon_sym_decltype] = ACTIONS(4078), - [anon_sym_explicit] = ACTIONS(4078), - [anon_sym_private] = ACTIONS(4078), - [anon_sym_template] = ACTIONS(4078), - [anon_sym_operator] = ACTIONS(4078), - [anon_sym_friend] = ACTIONS(4078), - [anon_sym_public] = ACTIONS(4078), - [anon_sym_protected] = ACTIONS(4078), - [anon_sym_static_assert] = ACTIONS(4078), - [anon_sym_LBRACK_COLON] = ACTIONS(4080), - }, - [STATE(3285)] = { - [sym_identifier] = ACTIONS(8392), - [aux_sym_preproc_def_token1] = ACTIONS(8392), - [aux_sym_preproc_if_token1] = ACTIONS(8392), - [aux_sym_preproc_if_token2] = ACTIONS(8392), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8392), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8392), - [sym_preproc_directive] = ACTIONS(8392), - [anon_sym_LPAREN2] = ACTIONS(8394), - [anon_sym_TILDE] = ACTIONS(8394), - [anon_sym_STAR] = ACTIONS(8394), - [anon_sym_AMP_AMP] = ACTIONS(8394), - [anon_sym_AMP] = ACTIONS(8392), - [anon_sym_SEMI] = ACTIONS(8394), - [anon_sym___extension__] = ACTIONS(8392), - [anon_sym_typedef] = ACTIONS(8392), - [anon_sym_virtual] = ACTIONS(8392), - [anon_sym_extern] = ACTIONS(8392), - [anon_sym___attribute__] = ACTIONS(8392), - [anon_sym___attribute] = ACTIONS(8392), - [anon_sym_using] = ACTIONS(8392), - [anon_sym_COLON_COLON] = ACTIONS(8394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8394), - [anon_sym___declspec] = ACTIONS(8392), - [anon_sym___based] = ACTIONS(8392), - [anon_sym_signed] = ACTIONS(8392), - [anon_sym_unsigned] = ACTIONS(8392), - [anon_sym_long] = ACTIONS(8392), - [anon_sym_short] = ACTIONS(8392), - [anon_sym_LBRACK] = ACTIONS(8392), - [anon_sym_static] = ACTIONS(8392), - [anon_sym_register] = ACTIONS(8392), - [anon_sym_inline] = ACTIONS(8392), - [anon_sym___inline] = ACTIONS(8392), - [anon_sym___inline__] = ACTIONS(8392), - [anon_sym___forceinline] = ACTIONS(8392), - [anon_sym_thread_local] = ACTIONS(8392), - [anon_sym___thread] = ACTIONS(8392), - [anon_sym_const] = ACTIONS(8392), - [anon_sym_constexpr] = ACTIONS(8392), - [anon_sym_volatile] = ACTIONS(8392), - [anon_sym_restrict] = ACTIONS(8392), - [anon_sym___restrict__] = ACTIONS(8392), - [anon_sym__Atomic] = ACTIONS(8392), - [anon_sym__Noreturn] = ACTIONS(8392), - [anon_sym_noreturn] = ACTIONS(8392), - [anon_sym__Nonnull] = ACTIONS(8392), - [anon_sym_mutable] = ACTIONS(8392), - [anon_sym_constinit] = ACTIONS(8392), - [anon_sym_consteval] = ACTIONS(8392), - [anon_sym_alignas] = ACTIONS(8392), - [anon_sym__Alignas] = ACTIONS(8392), - [sym_primitive_type] = ACTIONS(8392), - [anon_sym_enum] = ACTIONS(8392), - [anon_sym_class] = ACTIONS(8392), - [anon_sym_struct] = ACTIONS(8392), - [anon_sym_union] = ACTIONS(8392), - [anon_sym_typename] = ACTIONS(8392), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8392), - [anon_sym_decltype] = ACTIONS(8392), - [anon_sym_explicit] = ACTIONS(8392), - [anon_sym_private] = ACTIONS(8392), - [anon_sym_template] = ACTIONS(8392), - [anon_sym_operator] = ACTIONS(8392), - [anon_sym_friend] = ACTIONS(8392), - [anon_sym_public] = ACTIONS(8392), - [anon_sym_protected] = ACTIONS(8392), - [anon_sym_static_assert] = ACTIONS(8392), - [anon_sym_LBRACK_COLON] = ACTIONS(8394), - }, - [STATE(3286)] = { - [sym_identifier] = ACTIONS(8450), - [aux_sym_preproc_def_token1] = ACTIONS(8450), - [aux_sym_preproc_if_token1] = ACTIONS(8450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8450), - [sym_preproc_directive] = ACTIONS(8450), - [anon_sym_LPAREN2] = ACTIONS(8452), - [anon_sym_TILDE] = ACTIONS(8452), - [anon_sym_STAR] = ACTIONS(8452), - [anon_sym_AMP_AMP] = ACTIONS(8452), - [anon_sym_AMP] = ACTIONS(8450), - [anon_sym_SEMI] = ACTIONS(8452), - [anon_sym___extension__] = ACTIONS(8450), - [anon_sym_typedef] = ACTIONS(8450), - [anon_sym_virtual] = ACTIONS(8450), - [anon_sym_extern] = ACTIONS(8450), - [anon_sym___attribute__] = ACTIONS(8450), - [anon_sym___attribute] = ACTIONS(8450), - [anon_sym_using] = ACTIONS(8450), - [anon_sym_COLON_COLON] = ACTIONS(8452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8452), - [anon_sym___declspec] = ACTIONS(8450), - [anon_sym___based] = ACTIONS(8450), - [anon_sym_RBRACE] = ACTIONS(8452), - [anon_sym_signed] = ACTIONS(8450), - [anon_sym_unsigned] = ACTIONS(8450), - [anon_sym_long] = ACTIONS(8450), - [anon_sym_short] = ACTIONS(8450), - [anon_sym_LBRACK] = ACTIONS(8450), - [anon_sym_static] = ACTIONS(8450), - [anon_sym_register] = ACTIONS(8450), - [anon_sym_inline] = ACTIONS(8450), - [anon_sym___inline] = ACTIONS(8450), - [anon_sym___inline__] = ACTIONS(8450), - [anon_sym___forceinline] = ACTIONS(8450), - [anon_sym_thread_local] = ACTIONS(8450), - [anon_sym___thread] = ACTIONS(8450), - [anon_sym_const] = ACTIONS(8450), - [anon_sym_constexpr] = ACTIONS(8450), - [anon_sym_volatile] = ACTIONS(8450), - [anon_sym_restrict] = ACTIONS(8450), - [anon_sym___restrict__] = ACTIONS(8450), - [anon_sym__Atomic] = ACTIONS(8450), - [anon_sym__Noreturn] = ACTIONS(8450), - [anon_sym_noreturn] = ACTIONS(8450), - [anon_sym__Nonnull] = ACTIONS(8450), - [anon_sym_mutable] = ACTIONS(8450), - [anon_sym_constinit] = ACTIONS(8450), - [anon_sym_consteval] = ACTIONS(8450), - [anon_sym_alignas] = ACTIONS(8450), - [anon_sym__Alignas] = ACTIONS(8450), - [sym_primitive_type] = ACTIONS(8450), - [anon_sym_enum] = ACTIONS(8450), - [anon_sym_class] = ACTIONS(8450), - [anon_sym_struct] = ACTIONS(8450), - [anon_sym_union] = ACTIONS(8450), - [anon_sym_typename] = ACTIONS(8450), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8450), - [anon_sym_decltype] = ACTIONS(8450), - [anon_sym_explicit] = ACTIONS(8450), - [anon_sym_private] = ACTIONS(8450), - [anon_sym_template] = ACTIONS(8450), - [anon_sym_operator] = ACTIONS(8450), - [anon_sym_friend] = ACTIONS(8450), - [anon_sym_public] = ACTIONS(8450), - [anon_sym_protected] = ACTIONS(8450), - [anon_sym_static_assert] = ACTIONS(8450), - [anon_sym_LBRACK_COLON] = ACTIONS(8452), - }, - [STATE(3287)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3239), - [sym_identifier] = ACTIONS(7387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), - [anon_sym_COMMA] = ACTIONS(7389), - [aux_sym_preproc_if_token2] = ACTIONS(7389), - [aux_sym_preproc_else_token1] = ACTIONS(7389), - [aux_sym_preproc_elif_token1] = ACTIONS(7387), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7389), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7389), - [anon_sym_LPAREN2] = ACTIONS(7389), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_STAR] = ACTIONS(7389), - [anon_sym_SLASH] = ACTIONS(7387), - [anon_sym_PERCENT] = ACTIONS(7389), - [anon_sym_PIPE_PIPE] = ACTIONS(7389), - [anon_sym_AMP_AMP] = ACTIONS(7389), - [anon_sym_PIPE] = ACTIONS(7387), - [anon_sym_CARET] = ACTIONS(7389), - [anon_sym_AMP] = ACTIONS(7387), - [anon_sym_EQ_EQ] = ACTIONS(7389), - [anon_sym_BANG_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_LT_EQ] = ACTIONS(7387), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_LT] = ACTIONS(7389), - [anon_sym_GT_GT] = ACTIONS(7389), - [anon_sym___extension__] = ACTIONS(7387), - [anon_sym___attribute__] = ACTIONS(7387), - [anon_sym___attribute] = ACTIONS(7387), - [anon_sym_LBRACE] = ACTIONS(7389), - [anon_sym_signed] = ACTIONS(8735), - [anon_sym_unsigned] = ACTIONS(8735), - [anon_sym_long] = ACTIONS(8735), - [anon_sym_short] = ACTIONS(8735), - [anon_sym_LBRACK] = ACTIONS(7389), - [anon_sym_RBRACK] = ACTIONS(7389), - [anon_sym_const] = ACTIONS(7387), - [anon_sym_constexpr] = ACTIONS(7387), - [anon_sym_volatile] = ACTIONS(7387), - [anon_sym_restrict] = ACTIONS(7387), - [anon_sym___restrict__] = ACTIONS(7387), - [anon_sym__Atomic] = ACTIONS(7387), - [anon_sym__Noreturn] = ACTIONS(7387), - [anon_sym_noreturn] = ACTIONS(7387), - [anon_sym__Nonnull] = ACTIONS(7387), - [anon_sym_mutable] = ACTIONS(7387), - [anon_sym_constinit] = ACTIONS(7387), - [anon_sym_consteval] = ACTIONS(7387), - [anon_sym_alignas] = ACTIONS(7387), - [anon_sym__Alignas] = ACTIONS(7387), - [anon_sym_QMARK] = ACTIONS(7389), - [anon_sym_LT_EQ_GT] = ACTIONS(7389), - [anon_sym_or] = ACTIONS(7387), - [anon_sym_and] = ACTIONS(7387), - [anon_sym_bitor] = ACTIONS(7387), - [anon_sym_xor] = ACTIONS(7387), - [anon_sym_bitand] = ACTIONS(7387), - [anon_sym_not_eq] = ACTIONS(7387), - [anon_sym_DASH_DASH] = ACTIONS(7389), - [anon_sym_PLUS_PLUS] = ACTIONS(7389), - [anon_sym_DOT] = ACTIONS(7387), - [anon_sym_DOT_STAR] = ACTIONS(7389), - [anon_sym_DASH_GT] = ACTIONS(7389), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7387), - [anon_sym_override] = ACTIONS(7387), - [anon_sym_requires] = ACTIONS(7387), - }, - [STATE(3288)] = { - [sym_identifier] = ACTIONS(8333), - [aux_sym_preproc_def_token1] = ACTIONS(8333), - [aux_sym_preproc_if_token1] = ACTIONS(8333), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8333), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8333), - [sym_preproc_directive] = ACTIONS(8333), - [anon_sym_LPAREN2] = ACTIONS(8335), - [anon_sym_TILDE] = ACTIONS(8335), - [anon_sym_STAR] = ACTIONS(8335), - [anon_sym_AMP_AMP] = ACTIONS(8335), - [anon_sym_AMP] = ACTIONS(8333), - [anon_sym_SEMI] = ACTIONS(8335), - [anon_sym___extension__] = ACTIONS(8333), - [anon_sym_typedef] = ACTIONS(8333), - [anon_sym_virtual] = ACTIONS(8333), - [anon_sym_extern] = ACTIONS(8333), - [anon_sym___attribute__] = ACTIONS(8333), - [anon_sym___attribute] = ACTIONS(8333), - [anon_sym_using] = ACTIONS(8333), - [anon_sym_COLON_COLON] = ACTIONS(8335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8335), - [anon_sym___declspec] = ACTIONS(8333), - [anon_sym___based] = ACTIONS(8333), - [anon_sym_RBRACE] = ACTIONS(8335), - [anon_sym_signed] = ACTIONS(8333), - [anon_sym_unsigned] = ACTIONS(8333), - [anon_sym_long] = ACTIONS(8333), - [anon_sym_short] = ACTIONS(8333), - [anon_sym_LBRACK] = ACTIONS(8333), - [anon_sym_static] = ACTIONS(8333), - [anon_sym_register] = ACTIONS(8333), - [anon_sym_inline] = ACTIONS(8333), - [anon_sym___inline] = ACTIONS(8333), - [anon_sym___inline__] = ACTIONS(8333), - [anon_sym___forceinline] = ACTIONS(8333), - [anon_sym_thread_local] = ACTIONS(8333), - [anon_sym___thread] = ACTIONS(8333), - [anon_sym_const] = ACTIONS(8333), - [anon_sym_constexpr] = ACTIONS(8333), - [anon_sym_volatile] = ACTIONS(8333), - [anon_sym_restrict] = ACTIONS(8333), - [anon_sym___restrict__] = ACTIONS(8333), - [anon_sym__Atomic] = ACTIONS(8333), - [anon_sym__Noreturn] = ACTIONS(8333), - [anon_sym_noreturn] = ACTIONS(8333), - [anon_sym__Nonnull] = ACTIONS(8333), - [anon_sym_mutable] = ACTIONS(8333), - [anon_sym_constinit] = ACTIONS(8333), - [anon_sym_consteval] = ACTIONS(8333), - [anon_sym_alignas] = ACTIONS(8333), - [anon_sym__Alignas] = ACTIONS(8333), - [sym_primitive_type] = ACTIONS(8333), - [anon_sym_enum] = ACTIONS(8333), - [anon_sym_class] = ACTIONS(8333), - [anon_sym_struct] = ACTIONS(8333), - [anon_sym_union] = ACTIONS(8333), - [anon_sym_typename] = ACTIONS(8333), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8333), - [anon_sym_decltype] = ACTIONS(8333), - [anon_sym_explicit] = ACTIONS(8333), - [anon_sym_private] = ACTIONS(8333), - [anon_sym_template] = ACTIONS(8333), - [anon_sym_operator] = ACTIONS(8333), - [anon_sym_friend] = ACTIONS(8333), - [anon_sym_public] = ACTIONS(8333), - [anon_sym_protected] = ACTIONS(8333), - [anon_sym_static_assert] = ACTIONS(8333), - [anon_sym_LBRACK_COLON] = ACTIONS(8335), - }, - [STATE(3289)] = { - [sym_identifier] = ACTIONS(8337), - [aux_sym_preproc_def_token1] = ACTIONS(8337), - [aux_sym_preproc_if_token1] = ACTIONS(8337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8337), - [sym_preproc_directive] = ACTIONS(8337), - [anon_sym_LPAREN2] = ACTIONS(8339), - [anon_sym_TILDE] = ACTIONS(8339), - [anon_sym_STAR] = ACTIONS(8339), - [anon_sym_AMP_AMP] = ACTIONS(8339), - [anon_sym_AMP] = ACTIONS(8337), - [anon_sym_SEMI] = ACTIONS(8339), - [anon_sym___extension__] = ACTIONS(8337), - [anon_sym_typedef] = ACTIONS(8337), - [anon_sym_virtual] = ACTIONS(8337), - [anon_sym_extern] = ACTIONS(8337), - [anon_sym___attribute__] = ACTIONS(8337), - [anon_sym___attribute] = ACTIONS(8337), - [anon_sym_using] = ACTIONS(8337), - [anon_sym_COLON_COLON] = ACTIONS(8339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8339), - [anon_sym___declspec] = ACTIONS(8337), - [anon_sym___based] = ACTIONS(8337), - [anon_sym_RBRACE] = ACTIONS(8339), - [anon_sym_signed] = ACTIONS(8337), - [anon_sym_unsigned] = ACTIONS(8337), - [anon_sym_long] = ACTIONS(8337), - [anon_sym_short] = ACTIONS(8337), - [anon_sym_LBRACK] = ACTIONS(8337), - [anon_sym_static] = ACTIONS(8337), - [anon_sym_register] = ACTIONS(8337), - [anon_sym_inline] = ACTIONS(8337), - [anon_sym___inline] = ACTIONS(8337), - [anon_sym___inline__] = ACTIONS(8337), - [anon_sym___forceinline] = ACTIONS(8337), - [anon_sym_thread_local] = ACTIONS(8337), - [anon_sym___thread] = ACTIONS(8337), - [anon_sym_const] = ACTIONS(8337), - [anon_sym_constexpr] = ACTIONS(8337), - [anon_sym_volatile] = ACTIONS(8337), - [anon_sym_restrict] = ACTIONS(8337), - [anon_sym___restrict__] = ACTIONS(8337), - [anon_sym__Atomic] = ACTIONS(8337), - [anon_sym__Noreturn] = ACTIONS(8337), - [anon_sym_noreturn] = ACTIONS(8337), - [anon_sym__Nonnull] = ACTIONS(8337), - [anon_sym_mutable] = ACTIONS(8337), - [anon_sym_constinit] = ACTIONS(8337), - [anon_sym_consteval] = ACTIONS(8337), - [anon_sym_alignas] = ACTIONS(8337), - [anon_sym__Alignas] = ACTIONS(8337), - [sym_primitive_type] = ACTIONS(8337), - [anon_sym_enum] = ACTIONS(8337), - [anon_sym_class] = ACTIONS(8337), - [anon_sym_struct] = ACTIONS(8337), - [anon_sym_union] = ACTIONS(8337), - [anon_sym_typename] = ACTIONS(8337), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8337), - [anon_sym_decltype] = ACTIONS(8337), - [anon_sym_explicit] = ACTIONS(8337), - [anon_sym_private] = ACTIONS(8337), - [anon_sym_template] = ACTIONS(8337), - [anon_sym_operator] = ACTIONS(8337), - [anon_sym_friend] = ACTIONS(8337), - [anon_sym_public] = ACTIONS(8337), - [anon_sym_protected] = ACTIONS(8337), - [anon_sym_static_assert] = ACTIONS(8337), - [anon_sym_LBRACK_COLON] = ACTIONS(8339), - }, - [STATE(3290)] = { - [sym_identifier] = ACTIONS(8362), - [aux_sym_preproc_def_token1] = ACTIONS(8362), - [aux_sym_preproc_if_token1] = ACTIONS(8362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8362), - [sym_preproc_directive] = ACTIONS(8362), - [anon_sym_LPAREN2] = ACTIONS(8364), - [anon_sym_TILDE] = ACTIONS(8364), - [anon_sym_STAR] = ACTIONS(8364), - [anon_sym_AMP_AMP] = ACTIONS(8364), - [anon_sym_AMP] = ACTIONS(8362), - [anon_sym_SEMI] = ACTIONS(8364), - [anon_sym___extension__] = ACTIONS(8362), - [anon_sym_typedef] = ACTIONS(8362), - [anon_sym_virtual] = ACTIONS(8362), - [anon_sym_extern] = ACTIONS(8362), - [anon_sym___attribute__] = ACTIONS(8362), - [anon_sym___attribute] = ACTIONS(8362), - [anon_sym_using] = ACTIONS(8362), - [anon_sym_COLON_COLON] = ACTIONS(8364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8364), - [anon_sym___declspec] = ACTIONS(8362), - [anon_sym___based] = ACTIONS(8362), - [anon_sym_RBRACE] = ACTIONS(8364), - [anon_sym_signed] = ACTIONS(8362), - [anon_sym_unsigned] = ACTIONS(8362), - [anon_sym_long] = ACTIONS(8362), - [anon_sym_short] = ACTIONS(8362), - [anon_sym_LBRACK] = ACTIONS(8362), - [anon_sym_static] = ACTIONS(8362), - [anon_sym_register] = ACTIONS(8362), - [anon_sym_inline] = ACTIONS(8362), - [anon_sym___inline] = ACTIONS(8362), - [anon_sym___inline__] = ACTIONS(8362), - [anon_sym___forceinline] = ACTIONS(8362), - [anon_sym_thread_local] = ACTIONS(8362), - [anon_sym___thread] = ACTIONS(8362), - [anon_sym_const] = ACTIONS(8362), - [anon_sym_constexpr] = ACTIONS(8362), - [anon_sym_volatile] = ACTIONS(8362), - [anon_sym_restrict] = ACTIONS(8362), - [anon_sym___restrict__] = ACTIONS(8362), - [anon_sym__Atomic] = ACTIONS(8362), - [anon_sym__Noreturn] = ACTIONS(8362), - [anon_sym_noreturn] = ACTIONS(8362), - [anon_sym__Nonnull] = ACTIONS(8362), - [anon_sym_mutable] = ACTIONS(8362), - [anon_sym_constinit] = ACTIONS(8362), - [anon_sym_consteval] = ACTIONS(8362), - [anon_sym_alignas] = ACTIONS(8362), - [anon_sym__Alignas] = ACTIONS(8362), - [sym_primitive_type] = ACTIONS(8362), - [anon_sym_enum] = ACTIONS(8362), - [anon_sym_class] = ACTIONS(8362), - [anon_sym_struct] = ACTIONS(8362), - [anon_sym_union] = ACTIONS(8362), - [anon_sym_typename] = ACTIONS(8362), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8362), - [anon_sym_decltype] = ACTIONS(8362), - [anon_sym_explicit] = ACTIONS(8362), - [anon_sym_private] = ACTIONS(8362), - [anon_sym_template] = ACTIONS(8362), - [anon_sym_operator] = ACTIONS(8362), - [anon_sym_friend] = ACTIONS(8362), - [anon_sym_public] = ACTIONS(8362), - [anon_sym_protected] = ACTIONS(8362), - [anon_sym_static_assert] = ACTIONS(8362), - [anon_sym_LBRACK_COLON] = ACTIONS(8364), - }, - [STATE(3291)] = { - [sym_identifier] = ACTIONS(4066), - [aux_sym_preproc_def_token1] = ACTIONS(4066), - [aux_sym_preproc_if_token1] = ACTIONS(4066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4066), - [sym_preproc_directive] = ACTIONS(4066), - [anon_sym_LPAREN2] = ACTIONS(4068), - [anon_sym_TILDE] = ACTIONS(4068), - [anon_sym_STAR] = ACTIONS(4068), - [anon_sym_AMP_AMP] = ACTIONS(4068), - [anon_sym_AMP] = ACTIONS(4066), - [anon_sym_SEMI] = ACTIONS(4068), - [anon_sym___extension__] = ACTIONS(4066), - [anon_sym_typedef] = ACTIONS(4066), - [anon_sym_virtual] = ACTIONS(4066), - [anon_sym_extern] = ACTIONS(4066), - [anon_sym___attribute__] = ACTIONS(4066), - [anon_sym___attribute] = ACTIONS(4066), - [anon_sym_using] = ACTIONS(4066), - [anon_sym_COLON_COLON] = ACTIONS(4068), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4068), - [anon_sym___declspec] = ACTIONS(4066), - [anon_sym___based] = ACTIONS(4066), - [anon_sym_RBRACE] = ACTIONS(4068), - [anon_sym_signed] = ACTIONS(4066), - [anon_sym_unsigned] = ACTIONS(4066), - [anon_sym_long] = ACTIONS(4066), - [anon_sym_short] = ACTIONS(4066), - [anon_sym_LBRACK] = ACTIONS(4066), - [anon_sym_static] = ACTIONS(4066), - [anon_sym_register] = ACTIONS(4066), - [anon_sym_inline] = ACTIONS(4066), - [anon_sym___inline] = ACTIONS(4066), - [anon_sym___inline__] = ACTIONS(4066), - [anon_sym___forceinline] = ACTIONS(4066), - [anon_sym_thread_local] = ACTIONS(4066), - [anon_sym___thread] = ACTIONS(4066), - [anon_sym_const] = ACTIONS(4066), - [anon_sym_constexpr] = ACTIONS(4066), - [anon_sym_volatile] = ACTIONS(4066), - [anon_sym_restrict] = ACTIONS(4066), - [anon_sym___restrict__] = ACTIONS(4066), - [anon_sym__Atomic] = ACTIONS(4066), - [anon_sym__Noreturn] = ACTIONS(4066), - [anon_sym_noreturn] = ACTIONS(4066), - [anon_sym__Nonnull] = ACTIONS(4066), - [anon_sym_mutable] = ACTIONS(4066), - [anon_sym_constinit] = ACTIONS(4066), - [anon_sym_consteval] = ACTIONS(4066), - [anon_sym_alignas] = ACTIONS(4066), - [anon_sym__Alignas] = ACTIONS(4066), - [sym_primitive_type] = ACTIONS(4066), - [anon_sym_enum] = ACTIONS(4066), - [anon_sym_class] = ACTIONS(4066), - [anon_sym_struct] = ACTIONS(4066), - [anon_sym_union] = ACTIONS(4066), - [anon_sym_typename] = ACTIONS(4066), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4066), - [anon_sym_decltype] = ACTIONS(4066), - [anon_sym_explicit] = ACTIONS(4066), - [anon_sym_private] = ACTIONS(4066), - [anon_sym_template] = ACTIONS(4066), - [anon_sym_operator] = ACTIONS(4066), - [anon_sym_friend] = ACTIONS(4066), - [anon_sym_public] = ACTIONS(4066), - [anon_sym_protected] = ACTIONS(4066), - [anon_sym_static_assert] = ACTIONS(4066), - [anon_sym_LBRACK_COLON] = ACTIONS(4068), - }, - [STATE(3292)] = { - [sym_identifier] = ACTIONS(8462), - [aux_sym_preproc_def_token1] = ACTIONS(8462), - [aux_sym_preproc_if_token1] = ACTIONS(8462), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8462), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8462), - [sym_preproc_directive] = ACTIONS(8462), - [anon_sym_LPAREN2] = ACTIONS(8464), - [anon_sym_TILDE] = ACTIONS(8464), - [anon_sym_STAR] = ACTIONS(8464), - [anon_sym_AMP_AMP] = ACTIONS(8464), - [anon_sym_AMP] = ACTIONS(8462), - [anon_sym_SEMI] = ACTIONS(8464), - [anon_sym___extension__] = ACTIONS(8462), - [anon_sym_typedef] = ACTIONS(8462), - [anon_sym_virtual] = ACTIONS(8462), - [anon_sym_extern] = ACTIONS(8462), - [anon_sym___attribute__] = ACTIONS(8462), - [anon_sym___attribute] = ACTIONS(8462), - [anon_sym_using] = ACTIONS(8462), - [anon_sym_COLON_COLON] = ACTIONS(8464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8464), - [anon_sym___declspec] = ACTIONS(8462), - [anon_sym___based] = ACTIONS(8462), - [anon_sym_RBRACE] = ACTIONS(8464), - [anon_sym_signed] = ACTIONS(8462), - [anon_sym_unsigned] = ACTIONS(8462), - [anon_sym_long] = ACTIONS(8462), - [anon_sym_short] = ACTIONS(8462), - [anon_sym_LBRACK] = ACTIONS(8462), - [anon_sym_static] = ACTIONS(8462), - [anon_sym_register] = ACTIONS(8462), - [anon_sym_inline] = ACTIONS(8462), - [anon_sym___inline] = ACTIONS(8462), - [anon_sym___inline__] = ACTIONS(8462), - [anon_sym___forceinline] = ACTIONS(8462), - [anon_sym_thread_local] = ACTIONS(8462), - [anon_sym___thread] = ACTIONS(8462), - [anon_sym_const] = ACTIONS(8462), - [anon_sym_constexpr] = ACTIONS(8462), - [anon_sym_volatile] = ACTIONS(8462), - [anon_sym_restrict] = ACTIONS(8462), - [anon_sym___restrict__] = ACTIONS(8462), - [anon_sym__Atomic] = ACTIONS(8462), - [anon_sym__Noreturn] = ACTIONS(8462), - [anon_sym_noreturn] = ACTIONS(8462), - [anon_sym__Nonnull] = ACTIONS(8462), - [anon_sym_mutable] = ACTIONS(8462), - [anon_sym_constinit] = ACTIONS(8462), - [anon_sym_consteval] = ACTIONS(8462), - [anon_sym_alignas] = ACTIONS(8462), - [anon_sym__Alignas] = ACTIONS(8462), - [sym_primitive_type] = ACTIONS(8462), - [anon_sym_enum] = ACTIONS(8462), - [anon_sym_class] = ACTIONS(8462), - [anon_sym_struct] = ACTIONS(8462), - [anon_sym_union] = ACTIONS(8462), - [anon_sym_typename] = ACTIONS(8462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8462), - [anon_sym_decltype] = ACTIONS(8462), - [anon_sym_explicit] = ACTIONS(8462), - [anon_sym_private] = ACTIONS(8462), - [anon_sym_template] = ACTIONS(8462), - [anon_sym_operator] = ACTIONS(8462), - [anon_sym_friend] = ACTIONS(8462), - [anon_sym_public] = ACTIONS(8462), - [anon_sym_protected] = ACTIONS(8462), - [anon_sym_static_assert] = ACTIONS(8462), - [anon_sym_LBRACK_COLON] = ACTIONS(8464), - }, - [STATE(3293)] = { - [sym_type_qualifier] = STATE(2399), - [sym_alignas_qualifier] = STATE(2592), - [aux_sym__type_definition_type_repeat1] = STATE(2399), - [aux_sym_sized_type_specifier_repeat1] = STATE(3322), - [sym_identifier] = ACTIONS(8483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), - [anon_sym_COMMA] = ACTIONS(6884), - [aux_sym_preproc_if_token2] = ACTIONS(6884), - [aux_sym_preproc_else_token1] = ACTIONS(6884), - [aux_sym_preproc_elif_token1] = ACTIONS(6886), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6884), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6884), - [anon_sym_LPAREN2] = ACTIONS(6884), - [anon_sym_DASH] = ACTIONS(6886), - [anon_sym_PLUS] = ACTIONS(6886), - [anon_sym_STAR] = ACTIONS(6884), - [anon_sym_SLASH] = ACTIONS(6886), - [anon_sym_PERCENT] = ACTIONS(6884), - [anon_sym_PIPE_PIPE] = ACTIONS(6884), - [anon_sym_AMP_AMP] = ACTIONS(6884), - [anon_sym_PIPE] = ACTIONS(6886), - [anon_sym_CARET] = ACTIONS(6884), - [anon_sym_AMP] = ACTIONS(6886), - [anon_sym_EQ_EQ] = ACTIONS(6884), - [anon_sym_BANG_EQ] = ACTIONS(6884), - [anon_sym_GT] = ACTIONS(6886), - [anon_sym_GT_EQ] = ACTIONS(6884), - [anon_sym_LT_EQ] = ACTIONS(6886), - [anon_sym_LT] = ACTIONS(6886), - [anon_sym_LT_LT] = ACTIONS(6884), - [anon_sym_GT_GT] = ACTIONS(6884), - [anon_sym___extension__] = ACTIONS(7784), - [anon_sym___attribute__] = ACTIONS(6886), - [anon_sym___attribute] = ACTIONS(6886), - [anon_sym_LBRACE] = ACTIONS(6884), - [anon_sym_signed] = ACTIONS(8486), - [anon_sym_unsigned] = ACTIONS(8486), - [anon_sym_long] = ACTIONS(8486), - [anon_sym_short] = ACTIONS(8486), - [anon_sym_LBRACK] = ACTIONS(6884), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7784), - [anon_sym_volatile] = ACTIONS(7784), - [anon_sym_restrict] = ACTIONS(7784), - [anon_sym___restrict__] = ACTIONS(7784), - [anon_sym__Atomic] = ACTIONS(7784), - [anon_sym__Noreturn] = ACTIONS(7784), - [anon_sym_noreturn] = ACTIONS(7784), - [anon_sym__Nonnull] = ACTIONS(7784), - [anon_sym_mutable] = ACTIONS(7784), - [anon_sym_constinit] = ACTIONS(7784), - [anon_sym_consteval] = ACTIONS(7784), - [anon_sym_alignas] = ACTIONS(8669), - [anon_sym__Alignas] = ACTIONS(8669), - [sym_primitive_type] = ACTIONS(8488), - [anon_sym_QMARK] = ACTIONS(6884), - [anon_sym_LT_EQ_GT] = ACTIONS(6884), - [anon_sym_or] = ACTIONS(6886), - [anon_sym_and] = ACTIONS(6886), - [anon_sym_bitor] = ACTIONS(6886), - [anon_sym_xor] = ACTIONS(6886), - [anon_sym_bitand] = ACTIONS(6886), - [anon_sym_not_eq] = ACTIONS(6886), - [anon_sym_DASH_DASH] = ACTIONS(6884), - [anon_sym_PLUS_PLUS] = ACTIONS(6884), - [anon_sym_DOT] = ACTIONS(6886), - [anon_sym_DOT_STAR] = ACTIONS(6884), - [anon_sym_DASH_GT] = ACTIONS(6884), - [sym_comment] = ACTIONS(3), - }, - [STATE(3294)] = { - [sym_identifier] = ACTIONS(3926), - [aux_sym_preproc_def_token1] = ACTIONS(3926), - [aux_sym_preproc_if_token1] = ACTIONS(3926), - [aux_sym_preproc_if_token2] = ACTIONS(3926), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3926), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3926), - [sym_preproc_directive] = ACTIONS(3926), - [anon_sym_LPAREN2] = ACTIONS(3928), - [anon_sym_TILDE] = ACTIONS(3928), - [anon_sym_STAR] = ACTIONS(3928), - [anon_sym_AMP_AMP] = ACTIONS(3928), - [anon_sym_AMP] = ACTIONS(3926), - [anon_sym_SEMI] = ACTIONS(3928), - [anon_sym___extension__] = ACTIONS(3926), - [anon_sym_typedef] = ACTIONS(3926), - [anon_sym_virtual] = ACTIONS(3926), - [anon_sym_extern] = ACTIONS(3926), - [anon_sym___attribute__] = ACTIONS(3926), - [anon_sym___attribute] = ACTIONS(3926), - [anon_sym_using] = ACTIONS(3926), - [anon_sym_COLON_COLON] = ACTIONS(3928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3928), - [anon_sym___declspec] = ACTIONS(3926), - [anon_sym___based] = ACTIONS(3926), - [anon_sym_signed] = ACTIONS(3926), - [anon_sym_unsigned] = ACTIONS(3926), - [anon_sym_long] = ACTIONS(3926), - [anon_sym_short] = ACTIONS(3926), - [anon_sym_LBRACK] = ACTIONS(3926), - [anon_sym_static] = ACTIONS(3926), - [anon_sym_register] = ACTIONS(3926), - [anon_sym_inline] = ACTIONS(3926), - [anon_sym___inline] = ACTIONS(3926), - [anon_sym___inline__] = ACTIONS(3926), - [anon_sym___forceinline] = ACTIONS(3926), - [anon_sym_thread_local] = ACTIONS(3926), - [anon_sym___thread] = ACTIONS(3926), - [anon_sym_const] = ACTIONS(3926), - [anon_sym_constexpr] = ACTIONS(3926), - [anon_sym_volatile] = ACTIONS(3926), - [anon_sym_restrict] = ACTIONS(3926), - [anon_sym___restrict__] = ACTIONS(3926), - [anon_sym__Atomic] = ACTIONS(3926), - [anon_sym__Noreturn] = ACTIONS(3926), - [anon_sym_noreturn] = ACTIONS(3926), - [anon_sym__Nonnull] = ACTIONS(3926), - [anon_sym_mutable] = ACTIONS(3926), - [anon_sym_constinit] = ACTIONS(3926), - [anon_sym_consteval] = ACTIONS(3926), - [anon_sym_alignas] = ACTIONS(3926), - [anon_sym__Alignas] = ACTIONS(3926), - [sym_primitive_type] = ACTIONS(3926), - [anon_sym_enum] = ACTIONS(3926), - [anon_sym_class] = ACTIONS(3926), - [anon_sym_struct] = ACTIONS(3926), - [anon_sym_union] = ACTIONS(3926), - [anon_sym_typename] = ACTIONS(3926), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3926), - [anon_sym_decltype] = ACTIONS(3926), - [anon_sym_explicit] = ACTIONS(3926), - [anon_sym_private] = ACTIONS(3926), - [anon_sym_template] = ACTIONS(3926), - [anon_sym_operator] = ACTIONS(3926), - [anon_sym_friend] = ACTIONS(3926), - [anon_sym_public] = ACTIONS(3926), - [anon_sym_protected] = ACTIONS(3926), - [anon_sym_static_assert] = ACTIONS(3926), - [anon_sym_LBRACK_COLON] = ACTIONS(3928), - }, - [STATE(3295)] = { - [sym_identifier] = ACTIONS(8285), - [aux_sym_preproc_def_token1] = ACTIONS(8285), - [aux_sym_preproc_if_token1] = ACTIONS(8285), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8285), - [sym_preproc_directive] = ACTIONS(8285), - [anon_sym_LPAREN2] = ACTIONS(8287), - [anon_sym_TILDE] = ACTIONS(8287), - [anon_sym_STAR] = ACTIONS(8287), - [anon_sym_AMP_AMP] = ACTIONS(8287), - [anon_sym_AMP] = ACTIONS(8285), - [anon_sym_SEMI] = ACTIONS(8287), - [anon_sym___extension__] = ACTIONS(8285), - [anon_sym_typedef] = ACTIONS(8285), - [anon_sym_virtual] = ACTIONS(8285), - [anon_sym_extern] = ACTIONS(8285), - [anon_sym___attribute__] = ACTIONS(8285), - [anon_sym___attribute] = ACTIONS(8285), - [anon_sym_using] = ACTIONS(8285), - [anon_sym_COLON_COLON] = ACTIONS(8287), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8287), - [anon_sym___declspec] = ACTIONS(8285), - [anon_sym___based] = ACTIONS(8285), - [anon_sym_RBRACE] = ACTIONS(8287), - [anon_sym_signed] = ACTIONS(8285), - [anon_sym_unsigned] = ACTIONS(8285), - [anon_sym_long] = ACTIONS(8285), - [anon_sym_short] = ACTIONS(8285), - [anon_sym_LBRACK] = ACTIONS(8285), - [anon_sym_static] = ACTIONS(8285), - [anon_sym_register] = ACTIONS(8285), - [anon_sym_inline] = ACTIONS(8285), - [anon_sym___inline] = ACTIONS(8285), - [anon_sym___inline__] = ACTIONS(8285), - [anon_sym___forceinline] = ACTIONS(8285), - [anon_sym_thread_local] = ACTIONS(8285), - [anon_sym___thread] = ACTIONS(8285), - [anon_sym_const] = ACTIONS(8285), - [anon_sym_constexpr] = ACTIONS(8285), - [anon_sym_volatile] = ACTIONS(8285), - [anon_sym_restrict] = ACTIONS(8285), - [anon_sym___restrict__] = ACTIONS(8285), - [anon_sym__Atomic] = ACTIONS(8285), - [anon_sym__Noreturn] = ACTIONS(8285), - [anon_sym_noreturn] = ACTIONS(8285), - [anon_sym__Nonnull] = ACTIONS(8285), - [anon_sym_mutable] = ACTIONS(8285), - [anon_sym_constinit] = ACTIONS(8285), - [anon_sym_consteval] = ACTIONS(8285), - [anon_sym_alignas] = ACTIONS(8285), - [anon_sym__Alignas] = ACTIONS(8285), - [sym_primitive_type] = ACTIONS(8285), - [anon_sym_enum] = ACTIONS(8285), - [anon_sym_class] = ACTIONS(8285), - [anon_sym_struct] = ACTIONS(8285), - [anon_sym_union] = ACTIONS(8285), - [anon_sym_typename] = ACTIONS(8285), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8285), - [anon_sym_decltype] = ACTIONS(8285), - [anon_sym_explicit] = ACTIONS(8285), - [anon_sym_private] = ACTIONS(8285), - [anon_sym_template] = ACTIONS(8285), - [anon_sym_operator] = ACTIONS(8285), - [anon_sym_friend] = ACTIONS(8285), - [anon_sym_public] = ACTIONS(8285), - [anon_sym_protected] = ACTIONS(8285), - [anon_sym_static_assert] = ACTIONS(8285), - [anon_sym_LBRACK_COLON] = ACTIONS(8287), - }, - [STATE(3296)] = { - [sym_identifier] = ACTIONS(4115), - [aux_sym_preproc_def_token1] = ACTIONS(4115), - [aux_sym_preproc_if_token1] = ACTIONS(4115), - [aux_sym_preproc_if_token2] = ACTIONS(4115), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4115), - [sym_preproc_directive] = ACTIONS(4115), - [anon_sym_LPAREN2] = ACTIONS(4117), - [anon_sym_TILDE] = ACTIONS(4117), - [anon_sym_STAR] = ACTIONS(4117), - [anon_sym_AMP_AMP] = ACTIONS(4117), - [anon_sym_AMP] = ACTIONS(4115), - [anon_sym_SEMI] = ACTIONS(4117), - [anon_sym___extension__] = ACTIONS(4115), - [anon_sym_typedef] = ACTIONS(4115), - [anon_sym_virtual] = ACTIONS(4115), - [anon_sym_extern] = ACTIONS(4115), - [anon_sym___attribute__] = ACTIONS(4115), - [anon_sym___attribute] = ACTIONS(4115), - [anon_sym_using] = ACTIONS(4115), - [anon_sym_COLON_COLON] = ACTIONS(4117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4117), - [anon_sym___declspec] = ACTIONS(4115), - [anon_sym___based] = ACTIONS(4115), - [anon_sym_signed] = ACTIONS(4115), - [anon_sym_unsigned] = ACTIONS(4115), - [anon_sym_long] = ACTIONS(4115), - [anon_sym_short] = ACTIONS(4115), - [anon_sym_LBRACK] = ACTIONS(4115), - [anon_sym_static] = ACTIONS(4115), - [anon_sym_register] = ACTIONS(4115), - [anon_sym_inline] = ACTIONS(4115), - [anon_sym___inline] = ACTIONS(4115), - [anon_sym___inline__] = ACTIONS(4115), - [anon_sym___forceinline] = ACTIONS(4115), - [anon_sym_thread_local] = ACTIONS(4115), - [anon_sym___thread] = ACTIONS(4115), - [anon_sym_const] = ACTIONS(4115), - [anon_sym_constexpr] = ACTIONS(4115), - [anon_sym_volatile] = ACTIONS(4115), - [anon_sym_restrict] = ACTIONS(4115), - [anon_sym___restrict__] = ACTIONS(4115), - [anon_sym__Atomic] = ACTIONS(4115), - [anon_sym__Noreturn] = ACTIONS(4115), - [anon_sym_noreturn] = ACTIONS(4115), - [anon_sym__Nonnull] = ACTIONS(4115), - [anon_sym_mutable] = ACTIONS(4115), - [anon_sym_constinit] = ACTIONS(4115), - [anon_sym_consteval] = ACTIONS(4115), - [anon_sym_alignas] = ACTIONS(4115), - [anon_sym__Alignas] = ACTIONS(4115), - [sym_primitive_type] = ACTIONS(4115), - [anon_sym_enum] = ACTIONS(4115), - [anon_sym_class] = ACTIONS(4115), - [anon_sym_struct] = ACTIONS(4115), - [anon_sym_union] = ACTIONS(4115), - [anon_sym_typename] = ACTIONS(4115), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4115), - [anon_sym_decltype] = ACTIONS(4115), - [anon_sym_explicit] = ACTIONS(4115), - [anon_sym_private] = ACTIONS(4115), - [anon_sym_template] = ACTIONS(4115), - [anon_sym_operator] = ACTIONS(4115), - [anon_sym_friend] = ACTIONS(4115), - [anon_sym_public] = ACTIONS(4115), - [anon_sym_protected] = ACTIONS(4115), - [anon_sym_static_assert] = ACTIONS(4115), - [anon_sym_LBRACK_COLON] = ACTIONS(4117), - }, - [STATE(3297)] = { - [sym_identifier] = ACTIONS(3636), - [aux_sym_preproc_def_token1] = ACTIONS(3636), - [aux_sym_preproc_if_token1] = ACTIONS(3636), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3636), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3636), - [sym_preproc_directive] = ACTIONS(3636), - [anon_sym_LPAREN2] = ACTIONS(3638), - [anon_sym_TILDE] = ACTIONS(3638), - [anon_sym_STAR] = ACTIONS(3638), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym___extension__] = ACTIONS(3636), - [anon_sym_typedef] = ACTIONS(3636), - [anon_sym_virtual] = ACTIONS(3636), - [anon_sym_extern] = ACTIONS(3636), - [anon_sym___attribute__] = ACTIONS(3636), - [anon_sym___attribute] = ACTIONS(3636), - [anon_sym_using] = ACTIONS(3636), - [anon_sym_COLON_COLON] = ACTIONS(3638), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3638), - [anon_sym___declspec] = ACTIONS(3636), - [anon_sym___based] = ACTIONS(3636), - [anon_sym_RBRACE] = ACTIONS(3638), - [anon_sym_signed] = ACTIONS(3636), - [anon_sym_unsigned] = ACTIONS(3636), - [anon_sym_long] = ACTIONS(3636), - [anon_sym_short] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_static] = ACTIONS(3636), - [anon_sym_register] = ACTIONS(3636), - [anon_sym_inline] = ACTIONS(3636), - [anon_sym___inline] = ACTIONS(3636), - [anon_sym___inline__] = ACTIONS(3636), - [anon_sym___forceinline] = ACTIONS(3636), - [anon_sym_thread_local] = ACTIONS(3636), - [anon_sym___thread] = ACTIONS(3636), - [anon_sym_const] = ACTIONS(3636), - [anon_sym_constexpr] = ACTIONS(3636), - [anon_sym_volatile] = ACTIONS(3636), - [anon_sym_restrict] = ACTIONS(3636), - [anon_sym___restrict__] = ACTIONS(3636), - [anon_sym__Atomic] = ACTIONS(3636), - [anon_sym__Noreturn] = ACTIONS(3636), - [anon_sym_noreturn] = ACTIONS(3636), - [anon_sym__Nonnull] = ACTIONS(3636), - [anon_sym_mutable] = ACTIONS(3636), - [anon_sym_constinit] = ACTIONS(3636), - [anon_sym_consteval] = ACTIONS(3636), - [anon_sym_alignas] = ACTIONS(3636), - [anon_sym__Alignas] = ACTIONS(3636), - [sym_primitive_type] = ACTIONS(3636), - [anon_sym_enum] = ACTIONS(3636), - [anon_sym_class] = ACTIONS(3636), - [anon_sym_struct] = ACTIONS(3636), - [anon_sym_union] = ACTIONS(3636), - [anon_sym_typename] = ACTIONS(3636), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3636), - [anon_sym_decltype] = ACTIONS(3636), - [anon_sym_explicit] = ACTIONS(3636), - [anon_sym_private] = ACTIONS(3636), - [anon_sym_template] = ACTIONS(3636), - [anon_sym_operator] = ACTIONS(3636), - [anon_sym_friend] = ACTIONS(3636), - [anon_sym_public] = ACTIONS(3636), - [anon_sym_protected] = ACTIONS(3636), - [anon_sym_static_assert] = ACTIONS(3636), - [anon_sym_LBRACK_COLON] = ACTIONS(3638), - }, - [STATE(3298)] = { - [sym_identifier] = ACTIONS(8430), - [aux_sym_preproc_def_token1] = ACTIONS(8430), - [aux_sym_preproc_if_token1] = ACTIONS(8430), - [aux_sym_preproc_if_token2] = ACTIONS(8430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8430), - [sym_preproc_directive] = ACTIONS(8430), - [anon_sym_LPAREN2] = ACTIONS(8432), - [anon_sym_TILDE] = ACTIONS(8432), - [anon_sym_STAR] = ACTIONS(8432), - [anon_sym_AMP_AMP] = ACTIONS(8432), - [anon_sym_AMP] = ACTIONS(8430), - [anon_sym_SEMI] = ACTIONS(8432), - [anon_sym___extension__] = ACTIONS(8430), - [anon_sym_typedef] = ACTIONS(8430), - [anon_sym_virtual] = ACTIONS(8430), - [anon_sym_extern] = ACTIONS(8430), - [anon_sym___attribute__] = ACTIONS(8430), - [anon_sym___attribute] = ACTIONS(8430), - [anon_sym_using] = ACTIONS(8430), - [anon_sym_COLON_COLON] = ACTIONS(8432), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8432), - [anon_sym___declspec] = ACTIONS(8430), - [anon_sym___based] = ACTIONS(8430), - [anon_sym_signed] = ACTIONS(8430), - [anon_sym_unsigned] = ACTIONS(8430), - [anon_sym_long] = ACTIONS(8430), - [anon_sym_short] = ACTIONS(8430), - [anon_sym_LBRACK] = ACTIONS(8430), - [anon_sym_static] = ACTIONS(8430), - [anon_sym_register] = ACTIONS(8430), - [anon_sym_inline] = ACTIONS(8430), - [anon_sym___inline] = ACTIONS(8430), - [anon_sym___inline__] = ACTIONS(8430), - [anon_sym___forceinline] = ACTIONS(8430), - [anon_sym_thread_local] = ACTIONS(8430), - [anon_sym___thread] = ACTIONS(8430), - [anon_sym_const] = ACTIONS(8430), - [anon_sym_constexpr] = ACTIONS(8430), - [anon_sym_volatile] = ACTIONS(8430), - [anon_sym_restrict] = ACTIONS(8430), - [anon_sym___restrict__] = ACTIONS(8430), - [anon_sym__Atomic] = ACTIONS(8430), - [anon_sym__Noreturn] = ACTIONS(8430), - [anon_sym_noreturn] = ACTIONS(8430), - [anon_sym__Nonnull] = ACTIONS(8430), - [anon_sym_mutable] = ACTIONS(8430), - [anon_sym_constinit] = ACTIONS(8430), - [anon_sym_consteval] = ACTIONS(8430), - [anon_sym_alignas] = ACTIONS(8430), - [anon_sym__Alignas] = ACTIONS(8430), - [sym_primitive_type] = ACTIONS(8430), - [anon_sym_enum] = ACTIONS(8430), - [anon_sym_class] = ACTIONS(8430), - [anon_sym_struct] = ACTIONS(8430), - [anon_sym_union] = ACTIONS(8430), - [anon_sym_typename] = ACTIONS(8430), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8430), - [anon_sym_decltype] = ACTIONS(8430), - [anon_sym_explicit] = ACTIONS(8430), - [anon_sym_private] = ACTIONS(8430), - [anon_sym_template] = ACTIONS(8430), - [anon_sym_operator] = ACTIONS(8430), - [anon_sym_friend] = ACTIONS(8430), - [anon_sym_public] = ACTIONS(8430), - [anon_sym_protected] = ACTIONS(8430), - [anon_sym_static_assert] = ACTIONS(8430), - [anon_sym_LBRACK_COLON] = ACTIONS(8432), - }, - [STATE(3299)] = { - [sym_identifier] = ACTIONS(8337), - [aux_sym_preproc_def_token1] = ACTIONS(8337), - [aux_sym_preproc_if_token1] = ACTIONS(8337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8337), - [sym_preproc_directive] = ACTIONS(8337), - [anon_sym_LPAREN2] = ACTIONS(8339), - [anon_sym_TILDE] = ACTIONS(8339), - [anon_sym_STAR] = ACTIONS(8339), - [anon_sym_AMP_AMP] = ACTIONS(8339), - [anon_sym_AMP] = ACTIONS(8337), - [anon_sym_SEMI] = ACTIONS(8339), - [anon_sym___extension__] = ACTIONS(8337), - [anon_sym_typedef] = ACTIONS(8337), - [anon_sym_virtual] = ACTIONS(8337), - [anon_sym_extern] = ACTIONS(8337), - [anon_sym___attribute__] = ACTIONS(8337), - [anon_sym___attribute] = ACTIONS(8337), - [anon_sym_using] = ACTIONS(8337), - [anon_sym_COLON_COLON] = ACTIONS(8339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8339), - [anon_sym___declspec] = ACTIONS(8337), - [anon_sym___based] = ACTIONS(8337), - [anon_sym_RBRACE] = ACTIONS(8339), - [anon_sym_signed] = ACTIONS(8337), - [anon_sym_unsigned] = ACTIONS(8337), - [anon_sym_long] = ACTIONS(8337), - [anon_sym_short] = ACTIONS(8337), - [anon_sym_LBRACK] = ACTIONS(8337), - [anon_sym_static] = ACTIONS(8337), - [anon_sym_register] = ACTIONS(8337), - [anon_sym_inline] = ACTIONS(8337), - [anon_sym___inline] = ACTIONS(8337), - [anon_sym___inline__] = ACTIONS(8337), - [anon_sym___forceinline] = ACTIONS(8337), - [anon_sym_thread_local] = ACTIONS(8337), - [anon_sym___thread] = ACTIONS(8337), - [anon_sym_const] = ACTIONS(8337), - [anon_sym_constexpr] = ACTIONS(8337), - [anon_sym_volatile] = ACTIONS(8337), - [anon_sym_restrict] = ACTIONS(8337), - [anon_sym___restrict__] = ACTIONS(8337), - [anon_sym__Atomic] = ACTIONS(8337), - [anon_sym__Noreturn] = ACTIONS(8337), - [anon_sym_noreturn] = ACTIONS(8337), - [anon_sym__Nonnull] = ACTIONS(8337), - [anon_sym_mutable] = ACTIONS(8337), - [anon_sym_constinit] = ACTIONS(8337), - [anon_sym_consteval] = ACTIONS(8337), - [anon_sym_alignas] = ACTIONS(8337), - [anon_sym__Alignas] = ACTIONS(8337), - [sym_primitive_type] = ACTIONS(8337), - [anon_sym_enum] = ACTIONS(8337), - [anon_sym_class] = ACTIONS(8337), - [anon_sym_struct] = ACTIONS(8337), - [anon_sym_union] = ACTIONS(8337), - [anon_sym_typename] = ACTIONS(8337), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8337), - [anon_sym_decltype] = ACTIONS(8337), - [anon_sym_explicit] = ACTIONS(8337), - [anon_sym_private] = ACTIONS(8337), - [anon_sym_template] = ACTIONS(8337), - [anon_sym_operator] = ACTIONS(8337), - [anon_sym_friend] = ACTIONS(8337), - [anon_sym_public] = ACTIONS(8337), - [anon_sym_protected] = ACTIONS(8337), - [anon_sym_static_assert] = ACTIONS(8337), - [anon_sym_LBRACK_COLON] = ACTIONS(8339), - }, - [STATE(3300)] = { - [sym_identifier] = ACTIONS(4196), - [aux_sym_preproc_def_token1] = ACTIONS(4196), - [aux_sym_preproc_if_token1] = ACTIONS(4196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4196), - [sym_preproc_directive] = ACTIONS(4196), - [anon_sym_LPAREN2] = ACTIONS(4198), - [anon_sym_TILDE] = ACTIONS(4198), - [anon_sym_STAR] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_AMP] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym___extension__] = ACTIONS(4196), - [anon_sym_typedef] = ACTIONS(4196), - [anon_sym_virtual] = ACTIONS(4196), - [anon_sym_extern] = ACTIONS(4196), - [anon_sym___attribute__] = ACTIONS(4196), - [anon_sym___attribute] = ACTIONS(4196), - [anon_sym_using] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4198), - [anon_sym___declspec] = ACTIONS(4196), - [anon_sym___based] = ACTIONS(4196), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_signed] = ACTIONS(4196), - [anon_sym_unsigned] = ACTIONS(4196), - [anon_sym_long] = ACTIONS(4196), - [anon_sym_short] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_static] = ACTIONS(4196), - [anon_sym_register] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym___inline] = ACTIONS(4196), - [anon_sym___inline__] = ACTIONS(4196), - [anon_sym___forceinline] = ACTIONS(4196), - [anon_sym_thread_local] = ACTIONS(4196), - [anon_sym___thread] = ACTIONS(4196), - [anon_sym_const] = ACTIONS(4196), - [anon_sym_constexpr] = ACTIONS(4196), - [anon_sym_volatile] = ACTIONS(4196), - [anon_sym_restrict] = ACTIONS(4196), - [anon_sym___restrict__] = ACTIONS(4196), - [anon_sym__Atomic] = ACTIONS(4196), - [anon_sym__Noreturn] = ACTIONS(4196), - [anon_sym_noreturn] = ACTIONS(4196), - [anon_sym__Nonnull] = ACTIONS(4196), - [anon_sym_mutable] = ACTIONS(4196), - [anon_sym_constinit] = ACTIONS(4196), - [anon_sym_consteval] = ACTIONS(4196), - [anon_sym_alignas] = ACTIONS(4196), - [anon_sym__Alignas] = ACTIONS(4196), - [sym_primitive_type] = ACTIONS(4196), - [anon_sym_enum] = ACTIONS(4196), - [anon_sym_class] = ACTIONS(4196), - [anon_sym_struct] = ACTIONS(4196), - [anon_sym_union] = ACTIONS(4196), - [anon_sym_typename] = ACTIONS(4196), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4196), - [anon_sym_decltype] = ACTIONS(4196), - [anon_sym_explicit] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_template] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_friend] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_static_assert] = ACTIONS(4196), - [anon_sym_LBRACK_COLON] = ACTIONS(4198), - }, - [STATE(3301)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2546), - [sym_identifier] = ACTIONS(7084), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), - [anon_sym_COMMA] = ACTIONS(7081), - [aux_sym_preproc_if_token2] = ACTIONS(7081), - [aux_sym_preproc_else_token1] = ACTIONS(7081), - [aux_sym_preproc_elif_token1] = ACTIONS(7084), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7081), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7081), - [anon_sym_LPAREN2] = ACTIONS(7081), - [anon_sym_DASH] = ACTIONS(7084), - [anon_sym_PLUS] = ACTIONS(7084), - [anon_sym_STAR] = ACTIONS(7081), - [anon_sym_SLASH] = ACTIONS(7084), - [anon_sym_PERCENT] = ACTIONS(7081), - [anon_sym_PIPE_PIPE] = ACTIONS(7081), - [anon_sym_AMP_AMP] = ACTIONS(7081), - [anon_sym_PIPE] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7081), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_EQ_EQ] = ACTIONS(7081), - [anon_sym_BANG_EQ] = ACTIONS(7081), - [anon_sym_GT] = ACTIONS(7084), - [anon_sym_GT_EQ] = ACTIONS(7081), - [anon_sym_LT_EQ] = ACTIONS(7084), - [anon_sym_LT] = ACTIONS(7084), - [anon_sym_LT_LT] = ACTIONS(7081), - [anon_sym_GT_GT] = ACTIONS(7081), - [anon_sym___extension__] = ACTIONS(7084), - [anon_sym___attribute__] = ACTIONS(7084), - [anon_sym___attribute] = ACTIONS(7084), - [anon_sym_LBRACE] = ACTIONS(7081), - [anon_sym_signed] = ACTIONS(8205), - [anon_sym_unsigned] = ACTIONS(8205), - [anon_sym_long] = ACTIONS(8205), - [anon_sym_short] = ACTIONS(8205), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_const] = ACTIONS(7084), - [anon_sym_constexpr] = ACTIONS(7084), - [anon_sym_volatile] = ACTIONS(7084), - [anon_sym_restrict] = ACTIONS(7084), - [anon_sym___restrict__] = ACTIONS(7084), - [anon_sym__Atomic] = ACTIONS(7084), - [anon_sym__Noreturn] = ACTIONS(7084), - [anon_sym_noreturn] = ACTIONS(7084), - [anon_sym__Nonnull] = ACTIONS(7084), - [anon_sym_mutable] = ACTIONS(7084), - [anon_sym_constinit] = ACTIONS(7084), - [anon_sym_consteval] = ACTIONS(7084), - [anon_sym_alignas] = ACTIONS(7084), - [anon_sym__Alignas] = ACTIONS(7084), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(7081), - [anon_sym_LT_EQ_GT] = ACTIONS(7081), - [anon_sym_or] = ACTIONS(7084), - [anon_sym_and] = ACTIONS(7084), - [anon_sym_bitor] = ACTIONS(7084), - [anon_sym_xor] = ACTIONS(7084), - [anon_sym_bitand] = ACTIONS(7084), - [anon_sym_not_eq] = ACTIONS(7084), - [anon_sym_DASH_DASH] = ACTIONS(7081), - [anon_sym_PLUS_PLUS] = ACTIONS(7081), - [anon_sym_DOT] = ACTIONS(7084), - [anon_sym_DOT_STAR] = ACTIONS(7081), - [anon_sym_DASH_GT] = ACTIONS(7081), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7084), - [anon_sym_override] = ACTIONS(7084), - [anon_sym_requires] = ACTIONS(7084), - }, - [STATE(3302)] = { - [sym_identifier] = ACTIONS(4074), - [aux_sym_preproc_def_token1] = ACTIONS(4074), - [aux_sym_preproc_if_token1] = ACTIONS(4074), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4074), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4074), - [sym_preproc_directive] = ACTIONS(4074), - [anon_sym_LPAREN2] = ACTIONS(4076), - [anon_sym_TILDE] = ACTIONS(4076), - [anon_sym_STAR] = ACTIONS(4076), - [anon_sym_AMP_AMP] = ACTIONS(4076), - [anon_sym_AMP] = ACTIONS(4074), - [anon_sym_SEMI] = ACTIONS(4076), - [anon_sym___extension__] = ACTIONS(4074), - [anon_sym_typedef] = ACTIONS(4074), - [anon_sym_virtual] = ACTIONS(4074), - [anon_sym_extern] = ACTIONS(4074), - [anon_sym___attribute__] = ACTIONS(4074), - [anon_sym___attribute] = ACTIONS(4074), - [anon_sym_using] = ACTIONS(4074), - [anon_sym_COLON_COLON] = ACTIONS(4076), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4076), - [anon_sym___declspec] = ACTIONS(4074), - [anon_sym___based] = ACTIONS(4074), - [anon_sym_RBRACE] = ACTIONS(4076), - [anon_sym_signed] = ACTIONS(4074), - [anon_sym_unsigned] = ACTIONS(4074), - [anon_sym_long] = ACTIONS(4074), - [anon_sym_short] = ACTIONS(4074), - [anon_sym_LBRACK] = ACTIONS(4074), - [anon_sym_static] = ACTIONS(4074), - [anon_sym_register] = ACTIONS(4074), - [anon_sym_inline] = ACTIONS(4074), - [anon_sym___inline] = ACTIONS(4074), - [anon_sym___inline__] = ACTIONS(4074), - [anon_sym___forceinline] = ACTIONS(4074), - [anon_sym_thread_local] = ACTIONS(4074), - [anon_sym___thread] = ACTIONS(4074), - [anon_sym_const] = ACTIONS(4074), - [anon_sym_constexpr] = ACTIONS(4074), - [anon_sym_volatile] = ACTIONS(4074), - [anon_sym_restrict] = ACTIONS(4074), - [anon_sym___restrict__] = ACTIONS(4074), - [anon_sym__Atomic] = ACTIONS(4074), - [anon_sym__Noreturn] = ACTIONS(4074), - [anon_sym_noreturn] = ACTIONS(4074), - [anon_sym__Nonnull] = ACTIONS(4074), - [anon_sym_mutable] = ACTIONS(4074), - [anon_sym_constinit] = ACTIONS(4074), - [anon_sym_consteval] = ACTIONS(4074), - [anon_sym_alignas] = ACTIONS(4074), - [anon_sym__Alignas] = ACTIONS(4074), - [sym_primitive_type] = ACTIONS(4074), - [anon_sym_enum] = ACTIONS(4074), - [anon_sym_class] = ACTIONS(4074), - [anon_sym_struct] = ACTIONS(4074), - [anon_sym_union] = ACTIONS(4074), - [anon_sym_typename] = ACTIONS(4074), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4074), - [anon_sym_decltype] = ACTIONS(4074), - [anon_sym_explicit] = ACTIONS(4074), - [anon_sym_private] = ACTIONS(4074), - [anon_sym_template] = ACTIONS(4074), - [anon_sym_operator] = ACTIONS(4074), - [anon_sym_friend] = ACTIONS(4074), - [anon_sym_public] = ACTIONS(4074), - [anon_sym_protected] = ACTIONS(4074), - [anon_sym_static_assert] = ACTIONS(4074), - [anon_sym_LBRACK_COLON] = ACTIONS(4076), - }, - [STATE(3303)] = { - [sym_identifier] = ACTIONS(4078), - [aux_sym_preproc_def_token1] = ACTIONS(4078), - [aux_sym_preproc_if_token1] = ACTIONS(4078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4078), - [sym_preproc_directive] = ACTIONS(4078), - [anon_sym_LPAREN2] = ACTIONS(4080), - [anon_sym_TILDE] = ACTIONS(4080), - [anon_sym_STAR] = ACTIONS(4080), - [anon_sym_AMP_AMP] = ACTIONS(4080), - [anon_sym_AMP] = ACTIONS(4078), - [anon_sym_SEMI] = ACTIONS(4080), - [anon_sym___extension__] = ACTIONS(4078), - [anon_sym_typedef] = ACTIONS(4078), - [anon_sym_virtual] = ACTIONS(4078), - [anon_sym_extern] = ACTIONS(4078), - [anon_sym___attribute__] = ACTIONS(4078), - [anon_sym___attribute] = ACTIONS(4078), - [anon_sym_using] = ACTIONS(4078), - [anon_sym_COLON_COLON] = ACTIONS(4080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4080), - [anon_sym___declspec] = ACTIONS(4078), - [anon_sym___based] = ACTIONS(4078), - [anon_sym_RBRACE] = ACTIONS(4080), - [anon_sym_signed] = ACTIONS(4078), - [anon_sym_unsigned] = ACTIONS(4078), - [anon_sym_long] = ACTIONS(4078), - [anon_sym_short] = ACTIONS(4078), - [anon_sym_LBRACK] = ACTIONS(4078), - [anon_sym_static] = ACTIONS(4078), - [anon_sym_register] = ACTIONS(4078), - [anon_sym_inline] = ACTIONS(4078), - [anon_sym___inline] = ACTIONS(4078), - [anon_sym___inline__] = ACTIONS(4078), - [anon_sym___forceinline] = ACTIONS(4078), - [anon_sym_thread_local] = ACTIONS(4078), - [anon_sym___thread] = ACTIONS(4078), - [anon_sym_const] = ACTIONS(4078), - [anon_sym_constexpr] = ACTIONS(4078), - [anon_sym_volatile] = ACTIONS(4078), - [anon_sym_restrict] = ACTIONS(4078), - [anon_sym___restrict__] = ACTIONS(4078), - [anon_sym__Atomic] = ACTIONS(4078), - [anon_sym__Noreturn] = ACTIONS(4078), - [anon_sym_noreturn] = ACTIONS(4078), - [anon_sym__Nonnull] = ACTIONS(4078), - [anon_sym_mutable] = ACTIONS(4078), - [anon_sym_constinit] = ACTIONS(4078), - [anon_sym_consteval] = ACTIONS(4078), - [anon_sym_alignas] = ACTIONS(4078), - [anon_sym__Alignas] = ACTIONS(4078), - [sym_primitive_type] = ACTIONS(4078), - [anon_sym_enum] = ACTIONS(4078), - [anon_sym_class] = ACTIONS(4078), - [anon_sym_struct] = ACTIONS(4078), - [anon_sym_union] = ACTIONS(4078), - [anon_sym_typename] = ACTIONS(4078), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4078), - [anon_sym_decltype] = ACTIONS(4078), - [anon_sym_explicit] = ACTIONS(4078), - [anon_sym_private] = ACTIONS(4078), - [anon_sym_template] = ACTIONS(4078), - [anon_sym_operator] = ACTIONS(4078), - [anon_sym_friend] = ACTIONS(4078), - [anon_sym_public] = ACTIONS(4078), - [anon_sym_protected] = ACTIONS(4078), - [anon_sym_static_assert] = ACTIONS(4078), - [anon_sym_LBRACK_COLON] = ACTIONS(4080), - }, - [STATE(3304)] = { - [sym_identifier] = ACTIONS(8337), - [aux_sym_preproc_def_token1] = ACTIONS(8337), - [aux_sym_preproc_if_token1] = ACTIONS(8337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8337), - [sym_preproc_directive] = ACTIONS(8337), - [anon_sym_LPAREN2] = ACTIONS(8339), - [anon_sym_TILDE] = ACTIONS(8339), - [anon_sym_STAR] = ACTIONS(8339), - [anon_sym_AMP_AMP] = ACTIONS(8339), - [anon_sym_AMP] = ACTIONS(8337), - [anon_sym_SEMI] = ACTIONS(8339), - [anon_sym___extension__] = ACTIONS(8337), - [anon_sym_typedef] = ACTIONS(8337), - [anon_sym_virtual] = ACTIONS(8337), - [anon_sym_extern] = ACTIONS(8337), - [anon_sym___attribute__] = ACTIONS(8337), - [anon_sym___attribute] = ACTIONS(8337), - [anon_sym_using] = ACTIONS(8337), - [anon_sym_COLON_COLON] = ACTIONS(8339), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8339), - [anon_sym___declspec] = ACTIONS(8337), - [anon_sym___based] = ACTIONS(8337), - [anon_sym_RBRACE] = ACTIONS(8339), - [anon_sym_signed] = ACTIONS(8337), - [anon_sym_unsigned] = ACTIONS(8337), - [anon_sym_long] = ACTIONS(8337), - [anon_sym_short] = ACTIONS(8337), - [anon_sym_LBRACK] = ACTIONS(8337), - [anon_sym_static] = ACTIONS(8337), - [anon_sym_register] = ACTIONS(8337), - [anon_sym_inline] = ACTIONS(8337), - [anon_sym___inline] = ACTIONS(8337), - [anon_sym___inline__] = ACTIONS(8337), - [anon_sym___forceinline] = ACTIONS(8337), - [anon_sym_thread_local] = ACTIONS(8337), - [anon_sym___thread] = ACTIONS(8337), - [anon_sym_const] = ACTIONS(8337), - [anon_sym_constexpr] = ACTIONS(8337), - [anon_sym_volatile] = ACTIONS(8337), - [anon_sym_restrict] = ACTIONS(8337), - [anon_sym___restrict__] = ACTIONS(8337), - [anon_sym__Atomic] = ACTIONS(8337), - [anon_sym__Noreturn] = ACTIONS(8337), - [anon_sym_noreturn] = ACTIONS(8337), - [anon_sym__Nonnull] = ACTIONS(8337), - [anon_sym_mutable] = ACTIONS(8337), - [anon_sym_constinit] = ACTIONS(8337), - [anon_sym_consteval] = ACTIONS(8337), - [anon_sym_alignas] = ACTIONS(8337), - [anon_sym__Alignas] = ACTIONS(8337), - [sym_primitive_type] = ACTIONS(8337), - [anon_sym_enum] = ACTIONS(8337), - [anon_sym_class] = ACTIONS(8337), - [anon_sym_struct] = ACTIONS(8337), - [anon_sym_union] = ACTIONS(8337), - [anon_sym_typename] = ACTIONS(8337), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8337), - [anon_sym_decltype] = ACTIONS(8337), - [anon_sym_explicit] = ACTIONS(8337), - [anon_sym_private] = ACTIONS(8337), - [anon_sym_template] = ACTIONS(8337), - [anon_sym_operator] = ACTIONS(8337), - [anon_sym_friend] = ACTIONS(8337), - [anon_sym_public] = ACTIONS(8337), - [anon_sym_protected] = ACTIONS(8337), - [anon_sym_static_assert] = ACTIONS(8337), - [anon_sym_LBRACK_COLON] = ACTIONS(8339), - }, - [STATE(3305)] = { - [sym_identifier] = ACTIONS(8333), - [aux_sym_preproc_def_token1] = ACTIONS(8333), - [aux_sym_preproc_if_token1] = ACTIONS(8333), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8333), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8333), - [sym_preproc_directive] = ACTIONS(8333), - [anon_sym_LPAREN2] = ACTIONS(8335), - [anon_sym_TILDE] = ACTIONS(8335), - [anon_sym_STAR] = ACTIONS(8335), - [anon_sym_AMP_AMP] = ACTIONS(8335), - [anon_sym_AMP] = ACTIONS(8333), - [anon_sym_SEMI] = ACTIONS(8335), - [anon_sym___extension__] = ACTIONS(8333), - [anon_sym_typedef] = ACTIONS(8333), - [anon_sym_virtual] = ACTIONS(8333), - [anon_sym_extern] = ACTIONS(8333), - [anon_sym___attribute__] = ACTIONS(8333), - [anon_sym___attribute] = ACTIONS(8333), - [anon_sym_using] = ACTIONS(8333), - [anon_sym_COLON_COLON] = ACTIONS(8335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8335), - [anon_sym___declspec] = ACTIONS(8333), - [anon_sym___based] = ACTIONS(8333), - [anon_sym_RBRACE] = ACTIONS(8335), - [anon_sym_signed] = ACTIONS(8333), - [anon_sym_unsigned] = ACTIONS(8333), - [anon_sym_long] = ACTIONS(8333), - [anon_sym_short] = ACTIONS(8333), - [anon_sym_LBRACK] = ACTIONS(8333), - [anon_sym_static] = ACTIONS(8333), - [anon_sym_register] = ACTIONS(8333), - [anon_sym_inline] = ACTIONS(8333), - [anon_sym___inline] = ACTIONS(8333), - [anon_sym___inline__] = ACTIONS(8333), - [anon_sym___forceinline] = ACTIONS(8333), - [anon_sym_thread_local] = ACTIONS(8333), - [anon_sym___thread] = ACTIONS(8333), - [anon_sym_const] = ACTIONS(8333), - [anon_sym_constexpr] = ACTIONS(8333), - [anon_sym_volatile] = ACTIONS(8333), - [anon_sym_restrict] = ACTIONS(8333), - [anon_sym___restrict__] = ACTIONS(8333), - [anon_sym__Atomic] = ACTIONS(8333), - [anon_sym__Noreturn] = ACTIONS(8333), - [anon_sym_noreturn] = ACTIONS(8333), - [anon_sym__Nonnull] = ACTIONS(8333), - [anon_sym_mutable] = ACTIONS(8333), - [anon_sym_constinit] = ACTIONS(8333), - [anon_sym_consteval] = ACTIONS(8333), - [anon_sym_alignas] = ACTIONS(8333), - [anon_sym__Alignas] = ACTIONS(8333), - [sym_primitive_type] = ACTIONS(8333), - [anon_sym_enum] = ACTIONS(8333), - [anon_sym_class] = ACTIONS(8333), - [anon_sym_struct] = ACTIONS(8333), - [anon_sym_union] = ACTIONS(8333), - [anon_sym_typename] = ACTIONS(8333), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8333), - [anon_sym_decltype] = ACTIONS(8333), - [anon_sym_explicit] = ACTIONS(8333), - [anon_sym_private] = ACTIONS(8333), - [anon_sym_template] = ACTIONS(8333), - [anon_sym_operator] = ACTIONS(8333), - [anon_sym_friend] = ACTIONS(8333), - [anon_sym_public] = ACTIONS(8333), - [anon_sym_protected] = ACTIONS(8333), - [anon_sym_static_assert] = ACTIONS(8333), - [anon_sym_LBRACK_COLON] = ACTIONS(8335), - }, - [STATE(3306)] = { - [sym_identifier] = ACTIONS(4111), - [aux_sym_preproc_def_token1] = ACTIONS(4111), - [aux_sym_preproc_if_token1] = ACTIONS(4111), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4111), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4111), - [sym_preproc_directive] = ACTIONS(4111), - [anon_sym_LPAREN2] = ACTIONS(4113), - [anon_sym_TILDE] = ACTIONS(4113), - [anon_sym_STAR] = ACTIONS(4113), - [anon_sym_AMP_AMP] = ACTIONS(4113), - [anon_sym_AMP] = ACTIONS(4111), - [anon_sym_SEMI] = ACTIONS(4113), - [anon_sym___extension__] = ACTIONS(4111), - [anon_sym_typedef] = ACTIONS(4111), - [anon_sym_virtual] = ACTIONS(4111), - [anon_sym_extern] = ACTIONS(4111), - [anon_sym___attribute__] = ACTIONS(4111), - [anon_sym___attribute] = ACTIONS(4111), - [anon_sym_using] = ACTIONS(4111), - [anon_sym_COLON_COLON] = ACTIONS(4113), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4113), - [anon_sym___declspec] = ACTIONS(4111), - [anon_sym___based] = ACTIONS(4111), - [anon_sym_RBRACE] = ACTIONS(4113), - [anon_sym_signed] = ACTIONS(4111), - [anon_sym_unsigned] = ACTIONS(4111), - [anon_sym_long] = ACTIONS(4111), - [anon_sym_short] = ACTIONS(4111), - [anon_sym_LBRACK] = ACTIONS(4111), - [anon_sym_static] = ACTIONS(4111), - [anon_sym_register] = ACTIONS(4111), - [anon_sym_inline] = ACTIONS(4111), - [anon_sym___inline] = ACTIONS(4111), - [anon_sym___inline__] = ACTIONS(4111), - [anon_sym___forceinline] = ACTIONS(4111), - [anon_sym_thread_local] = ACTIONS(4111), - [anon_sym___thread] = ACTIONS(4111), - [anon_sym_const] = ACTIONS(4111), - [anon_sym_constexpr] = ACTIONS(4111), - [anon_sym_volatile] = ACTIONS(4111), - [anon_sym_restrict] = ACTIONS(4111), - [anon_sym___restrict__] = ACTIONS(4111), - [anon_sym__Atomic] = ACTIONS(4111), - [anon_sym__Noreturn] = ACTIONS(4111), - [anon_sym_noreturn] = ACTIONS(4111), - [anon_sym__Nonnull] = ACTIONS(4111), - [anon_sym_mutable] = ACTIONS(4111), - [anon_sym_constinit] = ACTIONS(4111), - [anon_sym_consteval] = ACTIONS(4111), - [anon_sym_alignas] = ACTIONS(4111), - [anon_sym__Alignas] = ACTIONS(4111), - [sym_primitive_type] = ACTIONS(4111), - [anon_sym_enum] = ACTIONS(4111), - [anon_sym_class] = ACTIONS(4111), - [anon_sym_struct] = ACTIONS(4111), - [anon_sym_union] = ACTIONS(4111), - [anon_sym_typename] = ACTIONS(4111), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4111), - [anon_sym_decltype] = ACTIONS(4111), - [anon_sym_explicit] = ACTIONS(4111), - [anon_sym_private] = ACTIONS(4111), - [anon_sym_template] = ACTIONS(4111), - [anon_sym_operator] = ACTIONS(4111), - [anon_sym_friend] = ACTIONS(4111), - [anon_sym_public] = ACTIONS(4111), - [anon_sym_protected] = ACTIONS(4111), - [anon_sym_static_assert] = ACTIONS(4111), - [anon_sym_LBRACK_COLON] = ACTIONS(4113), - }, - [STATE(3307)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7109), - [anon_sym_COMMA] = ACTIONS(7109), - [anon_sym_RPAREN] = ACTIONS(7109), - [anon_sym_LPAREN2] = ACTIONS(7109), - [anon_sym_DASH] = ACTIONS(7107), - [anon_sym_PLUS] = ACTIONS(7107), - [anon_sym_STAR] = ACTIONS(7107), - [anon_sym_SLASH] = ACTIONS(7107), - [anon_sym_PERCENT] = ACTIONS(7107), - [anon_sym_PIPE_PIPE] = ACTIONS(7109), - [anon_sym_AMP_AMP] = ACTIONS(7109), - [anon_sym_PIPE] = ACTIONS(7107), - [anon_sym_CARET] = ACTIONS(7107), - [anon_sym_AMP] = ACTIONS(7107), - [anon_sym_EQ_EQ] = ACTIONS(7109), - [anon_sym_BANG_EQ] = ACTIONS(7109), - [anon_sym_GT] = ACTIONS(7107), - [anon_sym_GT_EQ] = ACTIONS(7109), - [anon_sym_LT_EQ] = ACTIONS(7107), - [anon_sym_LT] = ACTIONS(7107), - [anon_sym_LT_LT] = ACTIONS(7107), - [anon_sym_GT_GT] = ACTIONS(7107), - [anon_sym___extension__] = ACTIONS(7109), - [anon_sym_COLON_COLON] = ACTIONS(7109), - [anon_sym_LBRACE] = ACTIONS(7109), - [anon_sym_LBRACK] = ACTIONS(7109), - [anon_sym_EQ] = ACTIONS(7107), - [anon_sym_const] = ACTIONS(7107), - [anon_sym_constexpr] = ACTIONS(7109), - [anon_sym_volatile] = ACTIONS(7109), - [anon_sym_restrict] = ACTIONS(7109), - [anon_sym___restrict__] = ACTIONS(7109), - [anon_sym__Atomic] = ACTIONS(7109), - [anon_sym__Noreturn] = ACTIONS(7109), - [anon_sym_noreturn] = ACTIONS(7109), - [anon_sym__Nonnull] = ACTIONS(7109), - [anon_sym_mutable] = ACTIONS(7109), - [anon_sym_constinit] = ACTIONS(7109), - [anon_sym_consteval] = ACTIONS(7109), - [anon_sym_alignas] = ACTIONS(7109), - [anon_sym__Alignas] = ACTIONS(7109), - [anon_sym_QMARK] = ACTIONS(7109), - [anon_sym_STAR_EQ] = ACTIONS(7109), - [anon_sym_SLASH_EQ] = ACTIONS(7109), - [anon_sym_PERCENT_EQ] = ACTIONS(7109), - [anon_sym_PLUS_EQ] = ACTIONS(7109), - [anon_sym_DASH_EQ] = ACTIONS(7109), - [anon_sym_LT_LT_EQ] = ACTIONS(7109), - [anon_sym_GT_GT_EQ] = ACTIONS(7109), - [anon_sym_AMP_EQ] = ACTIONS(7109), - [anon_sym_CARET_EQ] = ACTIONS(7109), - [anon_sym_PIPE_EQ] = ACTIONS(7109), - [anon_sym_LT_EQ_GT] = ACTIONS(7109), - [anon_sym_or] = ACTIONS(7109), - [anon_sym_and] = ACTIONS(7109), - [anon_sym_bitor] = ACTIONS(7109), - [anon_sym_xor] = ACTIONS(7109), - [anon_sym_bitand] = ACTIONS(7109), - [anon_sym_not_eq] = ACTIONS(7109), - [anon_sym_DASH_DASH] = ACTIONS(7109), - [anon_sym_PLUS_PLUS] = ACTIONS(7109), - [anon_sym_DOT] = ACTIONS(7107), - [anon_sym_DOT_STAR] = ACTIONS(7109), - [anon_sym_DASH_GT] = ACTIONS(7107), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7109), - [anon_sym_override] = ACTIONS(7109), - [anon_sym_requires] = ACTIONS(7109), - [anon_sym_DASH_GT_STAR] = ACTIONS(7109), - }, - [STATE(3308)] = { - [sym_identifier] = ACTIONS(4196), - [aux_sym_preproc_def_token1] = ACTIONS(4196), - [aux_sym_preproc_if_token1] = ACTIONS(4196), - [aux_sym_preproc_if_token2] = ACTIONS(4196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4196), - [sym_preproc_directive] = ACTIONS(4196), - [anon_sym_LPAREN2] = ACTIONS(4198), - [anon_sym_TILDE] = ACTIONS(4198), - [anon_sym_STAR] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_AMP] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym___extension__] = ACTIONS(4196), - [anon_sym_typedef] = ACTIONS(4196), - [anon_sym_virtual] = ACTIONS(4196), - [anon_sym_extern] = ACTIONS(4196), - [anon_sym___attribute__] = ACTIONS(4196), - [anon_sym___attribute] = ACTIONS(4196), - [anon_sym_using] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4198), - [anon_sym___declspec] = ACTIONS(4196), - [anon_sym___based] = ACTIONS(4196), - [anon_sym_signed] = ACTIONS(4196), - [anon_sym_unsigned] = ACTIONS(4196), - [anon_sym_long] = ACTIONS(4196), - [anon_sym_short] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_static] = ACTIONS(4196), - [anon_sym_register] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym___inline] = ACTIONS(4196), - [anon_sym___inline__] = ACTIONS(4196), - [anon_sym___forceinline] = ACTIONS(4196), - [anon_sym_thread_local] = ACTIONS(4196), - [anon_sym___thread] = ACTIONS(4196), - [anon_sym_const] = ACTIONS(4196), - [anon_sym_constexpr] = ACTIONS(4196), - [anon_sym_volatile] = ACTIONS(4196), - [anon_sym_restrict] = ACTIONS(4196), - [anon_sym___restrict__] = ACTIONS(4196), - [anon_sym__Atomic] = ACTIONS(4196), - [anon_sym__Noreturn] = ACTIONS(4196), - [anon_sym_noreturn] = ACTIONS(4196), - [anon_sym__Nonnull] = ACTIONS(4196), - [anon_sym_mutable] = ACTIONS(4196), - [anon_sym_constinit] = ACTIONS(4196), - [anon_sym_consteval] = ACTIONS(4196), - [anon_sym_alignas] = ACTIONS(4196), - [anon_sym__Alignas] = ACTIONS(4196), - [sym_primitive_type] = ACTIONS(4196), - [anon_sym_enum] = ACTIONS(4196), - [anon_sym_class] = ACTIONS(4196), - [anon_sym_struct] = ACTIONS(4196), - [anon_sym_union] = ACTIONS(4196), - [anon_sym_typename] = ACTIONS(4196), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4196), - [anon_sym_decltype] = ACTIONS(4196), - [anon_sym_explicit] = ACTIONS(4196), - [anon_sym_private] = ACTIONS(4196), - [anon_sym_template] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_friend] = ACTIONS(4196), - [anon_sym_public] = ACTIONS(4196), - [anon_sym_protected] = ACTIONS(4196), - [anon_sym_static_assert] = ACTIONS(4196), - [anon_sym_LBRACK_COLON] = ACTIONS(4198), - }, - [STATE(3309)] = { - [sym_identifier] = ACTIONS(8438), - [aux_sym_preproc_def_token1] = ACTIONS(8438), - [aux_sym_preproc_if_token1] = ACTIONS(8438), - [aux_sym_preproc_if_token2] = ACTIONS(8438), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8438), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8438), - [sym_preproc_directive] = ACTIONS(8438), - [anon_sym_LPAREN2] = ACTIONS(8440), - [anon_sym_TILDE] = ACTIONS(8440), - [anon_sym_STAR] = ACTIONS(8440), - [anon_sym_AMP_AMP] = ACTIONS(8440), - [anon_sym_AMP] = ACTIONS(8438), - [anon_sym_SEMI] = ACTIONS(8440), - [anon_sym___extension__] = ACTIONS(8438), - [anon_sym_typedef] = ACTIONS(8438), - [anon_sym_virtual] = ACTIONS(8438), - [anon_sym_extern] = ACTIONS(8438), - [anon_sym___attribute__] = ACTIONS(8438), - [anon_sym___attribute] = ACTIONS(8438), - [anon_sym_using] = ACTIONS(8438), - [anon_sym_COLON_COLON] = ACTIONS(8440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8440), - [anon_sym___declspec] = ACTIONS(8438), - [anon_sym___based] = ACTIONS(8438), - [anon_sym_signed] = ACTIONS(8438), - [anon_sym_unsigned] = ACTIONS(8438), - [anon_sym_long] = ACTIONS(8438), - [anon_sym_short] = ACTIONS(8438), - [anon_sym_LBRACK] = ACTIONS(8438), - [anon_sym_static] = ACTIONS(8438), - [anon_sym_register] = ACTIONS(8438), - [anon_sym_inline] = ACTIONS(8438), - [anon_sym___inline] = ACTIONS(8438), - [anon_sym___inline__] = ACTIONS(8438), - [anon_sym___forceinline] = ACTIONS(8438), - [anon_sym_thread_local] = ACTIONS(8438), - [anon_sym___thread] = ACTIONS(8438), - [anon_sym_const] = ACTIONS(8438), - [anon_sym_constexpr] = ACTIONS(8438), - [anon_sym_volatile] = ACTIONS(8438), - [anon_sym_restrict] = ACTIONS(8438), - [anon_sym___restrict__] = ACTIONS(8438), - [anon_sym__Atomic] = ACTIONS(8438), - [anon_sym__Noreturn] = ACTIONS(8438), - [anon_sym_noreturn] = ACTIONS(8438), - [anon_sym__Nonnull] = ACTIONS(8438), - [anon_sym_mutable] = ACTIONS(8438), - [anon_sym_constinit] = ACTIONS(8438), - [anon_sym_consteval] = ACTIONS(8438), - [anon_sym_alignas] = ACTIONS(8438), - [anon_sym__Alignas] = ACTIONS(8438), - [sym_primitive_type] = ACTIONS(8438), - [anon_sym_enum] = ACTIONS(8438), - [anon_sym_class] = ACTIONS(8438), - [anon_sym_struct] = ACTIONS(8438), - [anon_sym_union] = ACTIONS(8438), - [anon_sym_typename] = ACTIONS(8438), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8438), - [anon_sym_decltype] = ACTIONS(8438), - [anon_sym_explicit] = ACTIONS(8438), - [anon_sym_private] = ACTIONS(8438), - [anon_sym_template] = ACTIONS(8438), - [anon_sym_operator] = ACTIONS(8438), - [anon_sym_friend] = ACTIONS(8438), - [anon_sym_public] = ACTIONS(8438), - [anon_sym_protected] = ACTIONS(8438), - [anon_sym_static_assert] = ACTIONS(8438), - [anon_sym_LBRACK_COLON] = ACTIONS(8440), - }, - [STATE(3310)] = { - [sym_identifier] = ACTIONS(3728), - [aux_sym_preproc_def_token1] = ACTIONS(3728), - [aux_sym_preproc_if_token1] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), - [sym_preproc_directive] = ACTIONS(3728), - [anon_sym_LPAREN2] = ACTIONS(3730), - [anon_sym_TILDE] = ACTIONS(3730), - [anon_sym_STAR] = ACTIONS(3730), - [anon_sym_AMP_AMP] = ACTIONS(3730), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_SEMI] = ACTIONS(3730), - [anon_sym___extension__] = ACTIONS(3728), - [anon_sym_typedef] = ACTIONS(3728), - [anon_sym_virtual] = ACTIONS(3728), - [anon_sym_extern] = ACTIONS(3728), - [anon_sym___attribute__] = ACTIONS(3728), - [anon_sym___attribute] = ACTIONS(3728), - [anon_sym_using] = ACTIONS(3728), - [anon_sym_COLON_COLON] = ACTIONS(3730), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), - [anon_sym___declspec] = ACTIONS(3728), - [anon_sym___based] = ACTIONS(3728), - [anon_sym_RBRACE] = ACTIONS(3730), - [anon_sym_signed] = ACTIONS(3728), - [anon_sym_unsigned] = ACTIONS(3728), - [anon_sym_long] = ACTIONS(3728), - [anon_sym_short] = ACTIONS(3728), - [anon_sym_LBRACK] = ACTIONS(3728), - [anon_sym_static] = ACTIONS(3728), - [anon_sym_register] = ACTIONS(3728), - [anon_sym_inline] = ACTIONS(3728), - [anon_sym___inline] = ACTIONS(3728), - [anon_sym___inline__] = ACTIONS(3728), - [anon_sym___forceinline] = ACTIONS(3728), - [anon_sym_thread_local] = ACTIONS(3728), - [anon_sym___thread] = ACTIONS(3728), - [anon_sym_const] = ACTIONS(3728), - [anon_sym_constexpr] = ACTIONS(3728), - [anon_sym_volatile] = ACTIONS(3728), - [anon_sym_restrict] = ACTIONS(3728), - [anon_sym___restrict__] = ACTIONS(3728), - [anon_sym__Atomic] = ACTIONS(3728), - [anon_sym__Noreturn] = ACTIONS(3728), - [anon_sym_noreturn] = ACTIONS(3728), - [anon_sym__Nonnull] = ACTIONS(3728), - [anon_sym_mutable] = ACTIONS(3728), - [anon_sym_constinit] = ACTIONS(3728), - [anon_sym_consteval] = ACTIONS(3728), - [anon_sym_alignas] = ACTIONS(3728), - [anon_sym__Alignas] = ACTIONS(3728), - [sym_primitive_type] = ACTIONS(3728), - [anon_sym_enum] = ACTIONS(3728), - [anon_sym_class] = ACTIONS(3728), - [anon_sym_struct] = ACTIONS(3728), - [anon_sym_union] = ACTIONS(3728), - [anon_sym_typename] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3728), - [anon_sym_decltype] = ACTIONS(3728), - [anon_sym_explicit] = ACTIONS(3728), - [anon_sym_private] = ACTIONS(3728), - [anon_sym_template] = ACTIONS(3728), - [anon_sym_operator] = ACTIONS(3728), - [anon_sym_friend] = ACTIONS(3728), - [anon_sym_public] = ACTIONS(3728), - [anon_sym_protected] = ACTIONS(3728), - [anon_sym_static_assert] = ACTIONS(3728), - [anon_sym_LBRACK_COLON] = ACTIONS(3730), - }, - [STATE(3311)] = { - [sym_identifier] = ACTIONS(3728), - [aux_sym_preproc_def_token1] = ACTIONS(3728), - [aux_sym_preproc_if_token1] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), - [sym_preproc_directive] = ACTIONS(3728), - [anon_sym_LPAREN2] = ACTIONS(3730), - [anon_sym_TILDE] = ACTIONS(3730), - [anon_sym_STAR] = ACTIONS(3730), - [anon_sym_AMP_AMP] = ACTIONS(3730), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_SEMI] = ACTIONS(3730), - [anon_sym___extension__] = ACTIONS(3728), - [anon_sym_typedef] = ACTIONS(3728), - [anon_sym_virtual] = ACTIONS(3728), - [anon_sym_extern] = ACTIONS(3728), - [anon_sym___attribute__] = ACTIONS(3728), - [anon_sym___attribute] = ACTIONS(3728), - [anon_sym_using] = ACTIONS(3728), - [anon_sym_COLON_COLON] = ACTIONS(3730), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), - [anon_sym___declspec] = ACTIONS(3728), - [anon_sym___based] = ACTIONS(3728), - [anon_sym_RBRACE] = ACTIONS(3730), - [anon_sym_signed] = ACTIONS(3728), - [anon_sym_unsigned] = ACTIONS(3728), - [anon_sym_long] = ACTIONS(3728), - [anon_sym_short] = ACTIONS(3728), - [anon_sym_LBRACK] = ACTIONS(3728), - [anon_sym_static] = ACTIONS(3728), - [anon_sym_register] = ACTIONS(3728), - [anon_sym_inline] = ACTIONS(3728), - [anon_sym___inline] = ACTIONS(3728), - [anon_sym___inline__] = ACTIONS(3728), - [anon_sym___forceinline] = ACTIONS(3728), - [anon_sym_thread_local] = ACTIONS(3728), - [anon_sym___thread] = ACTIONS(3728), - [anon_sym_const] = ACTIONS(3728), - [anon_sym_constexpr] = ACTIONS(3728), - [anon_sym_volatile] = ACTIONS(3728), - [anon_sym_restrict] = ACTIONS(3728), - [anon_sym___restrict__] = ACTIONS(3728), - [anon_sym__Atomic] = ACTIONS(3728), - [anon_sym__Noreturn] = ACTIONS(3728), - [anon_sym_noreturn] = ACTIONS(3728), - [anon_sym__Nonnull] = ACTIONS(3728), - [anon_sym_mutable] = ACTIONS(3728), - [anon_sym_constinit] = ACTIONS(3728), - [anon_sym_consteval] = ACTIONS(3728), - [anon_sym_alignas] = ACTIONS(3728), - [anon_sym__Alignas] = ACTIONS(3728), - [sym_primitive_type] = ACTIONS(3728), - [anon_sym_enum] = ACTIONS(3728), - [anon_sym_class] = ACTIONS(3728), - [anon_sym_struct] = ACTIONS(3728), - [anon_sym_union] = ACTIONS(3728), - [anon_sym_typename] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3728), - [anon_sym_decltype] = ACTIONS(3728), - [anon_sym_explicit] = ACTIONS(3728), - [anon_sym_private] = ACTIONS(3728), - [anon_sym_template] = ACTIONS(3728), - [anon_sym_operator] = ACTIONS(3728), - [anon_sym_friend] = ACTIONS(3728), - [anon_sym_public] = ACTIONS(3728), - [anon_sym_protected] = ACTIONS(3728), - [anon_sym_static_assert] = ACTIONS(3728), - [anon_sym_LBRACK_COLON] = ACTIONS(3730), - }, - [STATE(3312)] = { - [sym_identifier] = ACTIONS(3704), - [aux_sym_preproc_def_token1] = ACTIONS(3704), - [aux_sym_preproc_if_token1] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), - [sym_preproc_directive] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3706), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3706), - [anon_sym___extension__] = ACTIONS(3704), - [anon_sym_typedef] = ACTIONS(3704), - [anon_sym_virtual] = ACTIONS(3704), - [anon_sym_extern] = ACTIONS(3704), - [anon_sym___attribute__] = ACTIONS(3704), - [anon_sym___attribute] = ACTIONS(3704), - [anon_sym_using] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), - [anon_sym___declspec] = ACTIONS(3704), - [anon_sym___based] = ACTIONS(3704), - [anon_sym_RBRACE] = ACTIONS(3706), - [anon_sym_signed] = ACTIONS(3704), - [anon_sym_unsigned] = ACTIONS(3704), - [anon_sym_long] = ACTIONS(3704), - [anon_sym_short] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_static] = ACTIONS(3704), - [anon_sym_register] = ACTIONS(3704), - [anon_sym_inline] = ACTIONS(3704), - [anon_sym___inline] = ACTIONS(3704), - [anon_sym___inline__] = ACTIONS(3704), - [anon_sym___forceinline] = ACTIONS(3704), - [anon_sym_thread_local] = ACTIONS(3704), - [anon_sym___thread] = ACTIONS(3704), - [anon_sym_const] = ACTIONS(3704), - [anon_sym_constexpr] = ACTIONS(3704), - [anon_sym_volatile] = ACTIONS(3704), - [anon_sym_restrict] = ACTIONS(3704), - [anon_sym___restrict__] = ACTIONS(3704), - [anon_sym__Atomic] = ACTIONS(3704), - [anon_sym__Noreturn] = ACTIONS(3704), - [anon_sym_noreturn] = ACTIONS(3704), - [anon_sym__Nonnull] = ACTIONS(3704), - [anon_sym_mutable] = ACTIONS(3704), - [anon_sym_constinit] = ACTIONS(3704), - [anon_sym_consteval] = ACTIONS(3704), - [anon_sym_alignas] = ACTIONS(3704), - [anon_sym__Alignas] = ACTIONS(3704), - [sym_primitive_type] = ACTIONS(3704), - [anon_sym_enum] = ACTIONS(3704), - [anon_sym_class] = ACTIONS(3704), - [anon_sym_struct] = ACTIONS(3704), - [anon_sym_union] = ACTIONS(3704), - [anon_sym_typename] = ACTIONS(3704), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3704), - [anon_sym_decltype] = ACTIONS(3704), - [anon_sym_explicit] = ACTIONS(3704), - [anon_sym_private] = ACTIONS(3704), - [anon_sym_template] = ACTIONS(3704), - [anon_sym_operator] = ACTIONS(3704), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3704), - [anon_sym_protected] = ACTIONS(3704), - [anon_sym_static_assert] = ACTIONS(3704), - [anon_sym_LBRACK_COLON] = ACTIONS(3706), - }, - [STATE(3313)] = { - [sym_identifier] = ACTIONS(3704), - [aux_sym_preproc_def_token1] = ACTIONS(3704), - [aux_sym_preproc_if_token1] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), - [sym_preproc_directive] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3706), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3706), - [anon_sym___extension__] = ACTIONS(3704), - [anon_sym_typedef] = ACTIONS(3704), - [anon_sym_virtual] = ACTIONS(3704), - [anon_sym_extern] = ACTIONS(3704), - [anon_sym___attribute__] = ACTIONS(3704), - [anon_sym___attribute] = ACTIONS(3704), - [anon_sym_using] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), - [anon_sym___declspec] = ACTIONS(3704), - [anon_sym___based] = ACTIONS(3704), - [anon_sym_RBRACE] = ACTIONS(3706), - [anon_sym_signed] = ACTIONS(3704), - [anon_sym_unsigned] = ACTIONS(3704), - [anon_sym_long] = ACTIONS(3704), - [anon_sym_short] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_static] = ACTIONS(3704), - [anon_sym_register] = ACTIONS(3704), - [anon_sym_inline] = ACTIONS(3704), - [anon_sym___inline] = ACTIONS(3704), - [anon_sym___inline__] = ACTIONS(3704), - [anon_sym___forceinline] = ACTIONS(3704), - [anon_sym_thread_local] = ACTIONS(3704), - [anon_sym___thread] = ACTIONS(3704), - [anon_sym_const] = ACTIONS(3704), - [anon_sym_constexpr] = ACTIONS(3704), - [anon_sym_volatile] = ACTIONS(3704), - [anon_sym_restrict] = ACTIONS(3704), - [anon_sym___restrict__] = ACTIONS(3704), - [anon_sym__Atomic] = ACTIONS(3704), - [anon_sym__Noreturn] = ACTIONS(3704), - [anon_sym_noreturn] = ACTIONS(3704), - [anon_sym__Nonnull] = ACTIONS(3704), - [anon_sym_mutable] = ACTIONS(3704), - [anon_sym_constinit] = ACTIONS(3704), - [anon_sym_consteval] = ACTIONS(3704), - [anon_sym_alignas] = ACTIONS(3704), - [anon_sym__Alignas] = ACTIONS(3704), - [sym_primitive_type] = ACTIONS(3704), - [anon_sym_enum] = ACTIONS(3704), - [anon_sym_class] = ACTIONS(3704), - [anon_sym_struct] = ACTIONS(3704), - [anon_sym_union] = ACTIONS(3704), - [anon_sym_typename] = ACTIONS(3704), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3704), - [anon_sym_decltype] = ACTIONS(3704), - [anon_sym_explicit] = ACTIONS(3704), - [anon_sym_private] = ACTIONS(3704), - [anon_sym_template] = ACTIONS(3704), - [anon_sym_operator] = ACTIONS(3704), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3704), - [anon_sym_protected] = ACTIONS(3704), - [anon_sym_static_assert] = ACTIONS(3704), - [anon_sym_LBRACK_COLON] = ACTIONS(3706), - }, - [STATE(3314)] = { - [sym_identifier] = ACTIONS(4090), - [aux_sym_preproc_def_token1] = ACTIONS(4090), - [aux_sym_preproc_if_token1] = ACTIONS(4090), - [aux_sym_preproc_if_token2] = ACTIONS(4090), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4090), - [sym_preproc_directive] = ACTIONS(4090), - [anon_sym_LPAREN2] = ACTIONS(4092), - [anon_sym_TILDE] = ACTIONS(4092), - [anon_sym_STAR] = ACTIONS(4092), - [anon_sym_AMP_AMP] = ACTIONS(4092), - [anon_sym_AMP] = ACTIONS(4090), - [anon_sym_SEMI] = ACTIONS(4092), - [anon_sym___extension__] = ACTIONS(4090), - [anon_sym_typedef] = ACTIONS(4090), - [anon_sym_virtual] = ACTIONS(4090), - [anon_sym_extern] = ACTIONS(4090), - [anon_sym___attribute__] = ACTIONS(4090), - [anon_sym___attribute] = ACTIONS(4090), - [anon_sym_using] = ACTIONS(4090), - [anon_sym_COLON_COLON] = ACTIONS(4092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4092), - [anon_sym___declspec] = ACTIONS(4090), - [anon_sym___based] = ACTIONS(4090), - [anon_sym_signed] = ACTIONS(4090), - [anon_sym_unsigned] = ACTIONS(4090), - [anon_sym_long] = ACTIONS(4090), - [anon_sym_short] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_static] = ACTIONS(4090), - [anon_sym_register] = ACTIONS(4090), - [anon_sym_inline] = ACTIONS(4090), - [anon_sym___inline] = ACTIONS(4090), - [anon_sym___inline__] = ACTIONS(4090), - [anon_sym___forceinline] = ACTIONS(4090), - [anon_sym_thread_local] = ACTIONS(4090), - [anon_sym___thread] = ACTIONS(4090), - [anon_sym_const] = ACTIONS(4090), - [anon_sym_constexpr] = ACTIONS(4090), - [anon_sym_volatile] = ACTIONS(4090), - [anon_sym_restrict] = ACTIONS(4090), - [anon_sym___restrict__] = ACTIONS(4090), - [anon_sym__Atomic] = ACTIONS(4090), - [anon_sym__Noreturn] = ACTIONS(4090), - [anon_sym_noreturn] = ACTIONS(4090), - [anon_sym__Nonnull] = ACTIONS(4090), - [anon_sym_mutable] = ACTIONS(4090), - [anon_sym_constinit] = ACTIONS(4090), - [anon_sym_consteval] = ACTIONS(4090), - [anon_sym_alignas] = ACTIONS(4090), - [anon_sym__Alignas] = ACTIONS(4090), - [sym_primitive_type] = ACTIONS(4090), - [anon_sym_enum] = ACTIONS(4090), - [anon_sym_class] = ACTIONS(4090), - [anon_sym_struct] = ACTIONS(4090), - [anon_sym_union] = ACTIONS(4090), - [anon_sym_typename] = ACTIONS(4090), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4090), - [anon_sym_decltype] = ACTIONS(4090), - [anon_sym_explicit] = ACTIONS(4090), - [anon_sym_private] = ACTIONS(4090), - [anon_sym_template] = ACTIONS(4090), - [anon_sym_operator] = ACTIONS(4090), - [anon_sym_friend] = ACTIONS(4090), - [anon_sym_public] = ACTIONS(4090), - [anon_sym_protected] = ACTIONS(4090), - [anon_sym_static_assert] = ACTIONS(4090), - [anon_sym_LBRACK_COLON] = ACTIONS(4092), - }, - [STATE(3315)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3239), - [sym_identifier] = ACTIONS(7414), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7416), - [anon_sym_COMMA] = ACTIONS(7416), - [aux_sym_preproc_if_token2] = ACTIONS(7416), - [aux_sym_preproc_else_token1] = ACTIONS(7416), - [aux_sym_preproc_elif_token1] = ACTIONS(7414), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7416), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7416), - [anon_sym_LPAREN2] = ACTIONS(7416), - [anon_sym_DASH] = ACTIONS(7414), - [anon_sym_PLUS] = ACTIONS(7414), - [anon_sym_STAR] = ACTIONS(7416), - [anon_sym_SLASH] = ACTIONS(7414), - [anon_sym_PERCENT] = ACTIONS(7416), - [anon_sym_PIPE_PIPE] = ACTIONS(7416), - [anon_sym_AMP_AMP] = ACTIONS(7416), - [anon_sym_PIPE] = ACTIONS(7414), - [anon_sym_CARET] = ACTIONS(7416), - [anon_sym_AMP] = ACTIONS(7414), - [anon_sym_EQ_EQ] = ACTIONS(7416), - [anon_sym_BANG_EQ] = ACTIONS(7416), - [anon_sym_GT] = ACTIONS(7414), - [anon_sym_GT_EQ] = ACTIONS(7416), - [anon_sym_LT_EQ] = ACTIONS(7414), - [anon_sym_LT] = ACTIONS(7414), - [anon_sym_LT_LT] = ACTIONS(7416), - [anon_sym_GT_GT] = ACTIONS(7416), - [anon_sym___extension__] = ACTIONS(7414), - [anon_sym___attribute__] = ACTIONS(7414), - [anon_sym___attribute] = ACTIONS(7414), - [anon_sym_LBRACE] = ACTIONS(7416), - [anon_sym_signed] = ACTIONS(8735), - [anon_sym_unsigned] = ACTIONS(8735), - [anon_sym_long] = ACTIONS(8735), - [anon_sym_short] = ACTIONS(8735), - [anon_sym_LBRACK] = ACTIONS(7416), - [anon_sym_RBRACK] = ACTIONS(7416), - [anon_sym_const] = ACTIONS(7414), - [anon_sym_constexpr] = ACTIONS(7414), - [anon_sym_volatile] = ACTIONS(7414), - [anon_sym_restrict] = ACTIONS(7414), - [anon_sym___restrict__] = ACTIONS(7414), - [anon_sym__Atomic] = ACTIONS(7414), - [anon_sym__Noreturn] = ACTIONS(7414), - [anon_sym_noreturn] = ACTIONS(7414), - [anon_sym__Nonnull] = ACTIONS(7414), - [anon_sym_mutable] = ACTIONS(7414), - [anon_sym_constinit] = ACTIONS(7414), - [anon_sym_consteval] = ACTIONS(7414), - [anon_sym_alignas] = ACTIONS(7414), - [anon_sym__Alignas] = ACTIONS(7414), - [anon_sym_QMARK] = ACTIONS(7416), - [anon_sym_LT_EQ_GT] = ACTIONS(7416), - [anon_sym_or] = ACTIONS(7414), - [anon_sym_and] = ACTIONS(7414), - [anon_sym_bitor] = ACTIONS(7414), - [anon_sym_xor] = ACTIONS(7414), - [anon_sym_bitand] = ACTIONS(7414), - [anon_sym_not_eq] = ACTIONS(7414), - [anon_sym_DASH_DASH] = ACTIONS(7416), - [anon_sym_PLUS_PLUS] = ACTIONS(7416), - [anon_sym_DOT] = ACTIONS(7414), - [anon_sym_DOT_STAR] = ACTIONS(7416), - [anon_sym_DASH_GT] = ACTIONS(7416), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7414), - [anon_sym_override] = ACTIONS(7414), - [anon_sym_requires] = ACTIONS(7414), - }, - [STATE(3316)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3239), - [sym_identifier] = ACTIONS(7199), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), - [anon_sym_COMMA] = ACTIONS(7201), - [aux_sym_preproc_if_token2] = ACTIONS(7201), - [aux_sym_preproc_else_token1] = ACTIONS(7201), - [aux_sym_preproc_elif_token1] = ACTIONS(7199), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7201), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7201), - [anon_sym_LPAREN2] = ACTIONS(7201), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_STAR] = ACTIONS(7201), - [anon_sym_SLASH] = ACTIONS(7199), - [anon_sym_PERCENT] = ACTIONS(7201), - [anon_sym_PIPE_PIPE] = ACTIONS(7201), - [anon_sym_AMP_AMP] = ACTIONS(7201), - [anon_sym_PIPE] = ACTIONS(7199), - [anon_sym_CARET] = ACTIONS(7201), - [anon_sym_AMP] = ACTIONS(7199), - [anon_sym_EQ_EQ] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7201), - [anon_sym_GT] = ACTIONS(7199), - [anon_sym_GT_EQ] = ACTIONS(7201), - [anon_sym_LT_EQ] = ACTIONS(7199), - [anon_sym_LT] = ACTIONS(7199), - [anon_sym_LT_LT] = ACTIONS(7201), - [anon_sym_GT_GT] = ACTIONS(7201), - [anon_sym___extension__] = ACTIONS(7199), - [anon_sym___attribute__] = ACTIONS(7199), - [anon_sym___attribute] = ACTIONS(7199), - [anon_sym_LBRACE] = ACTIONS(7201), - [anon_sym_signed] = ACTIONS(8735), - [anon_sym_unsigned] = ACTIONS(8735), - [anon_sym_long] = ACTIONS(8735), - [anon_sym_short] = ACTIONS(8735), - [anon_sym_LBRACK] = ACTIONS(7201), - [anon_sym_RBRACK] = ACTIONS(7201), - [anon_sym_const] = ACTIONS(7199), - [anon_sym_constexpr] = ACTIONS(7199), - [anon_sym_volatile] = ACTIONS(7199), - [anon_sym_restrict] = ACTIONS(7199), - [anon_sym___restrict__] = ACTIONS(7199), - [anon_sym__Atomic] = ACTIONS(7199), - [anon_sym__Noreturn] = ACTIONS(7199), - [anon_sym_noreturn] = ACTIONS(7199), - [anon_sym__Nonnull] = ACTIONS(7199), - [anon_sym_mutable] = ACTIONS(7199), - [anon_sym_constinit] = ACTIONS(7199), - [anon_sym_consteval] = ACTIONS(7199), - [anon_sym_alignas] = ACTIONS(7199), - [anon_sym__Alignas] = ACTIONS(7199), - [anon_sym_QMARK] = ACTIONS(7201), - [anon_sym_LT_EQ_GT] = ACTIONS(7201), - [anon_sym_or] = ACTIONS(7199), - [anon_sym_and] = ACTIONS(7199), - [anon_sym_bitor] = ACTIONS(7199), - [anon_sym_xor] = ACTIONS(7199), - [anon_sym_bitand] = ACTIONS(7199), - [anon_sym_not_eq] = ACTIONS(7199), - [anon_sym_DASH_DASH] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7201), - [anon_sym_DOT] = ACTIONS(7199), - [anon_sym_DOT_STAR] = ACTIONS(7201), - [anon_sym_DASH_GT] = ACTIONS(7201), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7199), - [anon_sym_override] = ACTIONS(7199), - [anon_sym_requires] = ACTIONS(7199), - }, - [STATE(3317)] = { - [sym_identifier] = ACTIONS(8442), - [aux_sym_preproc_def_token1] = ACTIONS(8442), - [aux_sym_preproc_if_token1] = ACTIONS(8442), - [aux_sym_preproc_if_token2] = ACTIONS(8442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8442), - [sym_preproc_directive] = ACTIONS(8442), - [anon_sym_LPAREN2] = ACTIONS(8444), - [anon_sym_TILDE] = ACTIONS(8444), - [anon_sym_STAR] = ACTIONS(8444), - [anon_sym_AMP_AMP] = ACTIONS(8444), - [anon_sym_AMP] = ACTIONS(8442), - [anon_sym_SEMI] = ACTIONS(8444), - [anon_sym___extension__] = ACTIONS(8442), - [anon_sym_typedef] = ACTIONS(8442), - [anon_sym_virtual] = ACTIONS(8442), - [anon_sym_extern] = ACTIONS(8442), - [anon_sym___attribute__] = ACTIONS(8442), - [anon_sym___attribute] = ACTIONS(8442), - [anon_sym_using] = ACTIONS(8442), - [anon_sym_COLON_COLON] = ACTIONS(8444), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8444), - [anon_sym___declspec] = ACTIONS(8442), - [anon_sym___based] = ACTIONS(8442), - [anon_sym_signed] = ACTIONS(8442), - [anon_sym_unsigned] = ACTIONS(8442), - [anon_sym_long] = ACTIONS(8442), - [anon_sym_short] = ACTIONS(8442), - [anon_sym_LBRACK] = ACTIONS(8442), - [anon_sym_static] = ACTIONS(8442), - [anon_sym_register] = ACTIONS(8442), - [anon_sym_inline] = ACTIONS(8442), - [anon_sym___inline] = ACTIONS(8442), - [anon_sym___inline__] = ACTIONS(8442), - [anon_sym___forceinline] = ACTIONS(8442), - [anon_sym_thread_local] = ACTIONS(8442), - [anon_sym___thread] = ACTIONS(8442), - [anon_sym_const] = ACTIONS(8442), - [anon_sym_constexpr] = ACTIONS(8442), - [anon_sym_volatile] = ACTIONS(8442), - [anon_sym_restrict] = ACTIONS(8442), - [anon_sym___restrict__] = ACTIONS(8442), - [anon_sym__Atomic] = ACTIONS(8442), - [anon_sym__Noreturn] = ACTIONS(8442), - [anon_sym_noreturn] = ACTIONS(8442), - [anon_sym__Nonnull] = ACTIONS(8442), - [anon_sym_mutable] = ACTIONS(8442), - [anon_sym_constinit] = ACTIONS(8442), - [anon_sym_consteval] = ACTIONS(8442), - [anon_sym_alignas] = ACTIONS(8442), - [anon_sym__Alignas] = ACTIONS(8442), - [sym_primitive_type] = ACTIONS(8442), - [anon_sym_enum] = ACTIONS(8442), - [anon_sym_class] = ACTIONS(8442), - [anon_sym_struct] = ACTIONS(8442), - [anon_sym_union] = ACTIONS(8442), - [anon_sym_typename] = ACTIONS(8442), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8442), - [anon_sym_decltype] = ACTIONS(8442), - [anon_sym_explicit] = ACTIONS(8442), - [anon_sym_private] = ACTIONS(8442), - [anon_sym_template] = ACTIONS(8442), - [anon_sym_operator] = ACTIONS(8442), - [anon_sym_friend] = ACTIONS(8442), - [anon_sym_public] = ACTIONS(8442), - [anon_sym_protected] = ACTIONS(8442), - [anon_sym_static_assert] = ACTIONS(8442), - [anon_sym_LBRACK_COLON] = ACTIONS(8444), - }, - [STATE(3318)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3361), - [sym_identifier] = ACTIONS(7213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7215), - [anon_sym_COMMA] = ACTIONS(7215), - [aux_sym_preproc_if_token2] = ACTIONS(7215), - [aux_sym_preproc_else_token1] = ACTIONS(7215), - [aux_sym_preproc_elif_token1] = ACTIONS(7213), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7215), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7215), - [anon_sym_LPAREN2] = ACTIONS(7215), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_STAR] = ACTIONS(7215), - [anon_sym_SLASH] = ACTIONS(7213), - [anon_sym_PERCENT] = ACTIONS(7215), - [anon_sym_PIPE_PIPE] = ACTIONS(7215), - [anon_sym_AMP_AMP] = ACTIONS(7215), - [anon_sym_PIPE] = ACTIONS(7213), - [anon_sym_CARET] = ACTIONS(7215), - [anon_sym_AMP] = ACTIONS(7213), - [anon_sym_EQ_EQ] = ACTIONS(7215), - [anon_sym_BANG_EQ] = ACTIONS(7215), - [anon_sym_GT] = ACTIONS(7213), - [anon_sym_GT_EQ] = ACTIONS(7215), - [anon_sym_LT_EQ] = ACTIONS(7213), - [anon_sym_LT] = ACTIONS(7213), - [anon_sym_LT_LT] = ACTIONS(7215), - [anon_sym_GT_GT] = ACTIONS(7215), - [anon_sym___extension__] = ACTIONS(7213), - [anon_sym___attribute__] = ACTIONS(7213), - [anon_sym___attribute] = ACTIONS(7213), - [anon_sym_LBRACE] = ACTIONS(7215), - [anon_sym_signed] = ACTIONS(8784), - [anon_sym_unsigned] = ACTIONS(8784), - [anon_sym_long] = ACTIONS(8784), - [anon_sym_short] = ACTIONS(8784), - [anon_sym_LBRACK] = ACTIONS(7215), - [anon_sym_RBRACK] = ACTIONS(7215), - [anon_sym_const] = ACTIONS(7213), - [anon_sym_constexpr] = ACTIONS(7213), - [anon_sym_volatile] = ACTIONS(7213), - [anon_sym_restrict] = ACTIONS(7213), - [anon_sym___restrict__] = ACTIONS(7213), - [anon_sym__Atomic] = ACTIONS(7213), - [anon_sym__Noreturn] = ACTIONS(7213), - [anon_sym_noreturn] = ACTIONS(7213), - [anon_sym__Nonnull] = ACTIONS(7213), - [anon_sym_mutable] = ACTIONS(7213), - [anon_sym_constinit] = ACTIONS(7213), - [anon_sym_consteval] = ACTIONS(7213), - [anon_sym_alignas] = ACTIONS(7213), - [anon_sym__Alignas] = ACTIONS(7213), - [anon_sym_QMARK] = ACTIONS(7215), - [anon_sym_LT_EQ_GT] = ACTIONS(7215), - [anon_sym_or] = ACTIONS(7213), - [anon_sym_and] = ACTIONS(7213), - [anon_sym_bitor] = ACTIONS(7213), - [anon_sym_xor] = ACTIONS(7213), - [anon_sym_bitand] = ACTIONS(7213), - [anon_sym_not_eq] = ACTIONS(7213), - [anon_sym_DASH_DASH] = ACTIONS(7215), - [anon_sym_PLUS_PLUS] = ACTIONS(7215), - [anon_sym_DOT] = ACTIONS(7213), - [anon_sym_DOT_STAR] = ACTIONS(7215), - [anon_sym_DASH_GT] = ACTIONS(7215), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7213), - [anon_sym_override] = ACTIONS(7213), - [anon_sym_requires] = ACTIONS(7213), - }, - [STATE(3319)] = { - [sym_identifier] = ACTIONS(3926), - [aux_sym_preproc_def_token1] = ACTIONS(3926), - [aux_sym_preproc_if_token1] = ACTIONS(3926), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3926), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3926), - [sym_preproc_directive] = ACTIONS(3926), - [anon_sym_LPAREN2] = ACTIONS(3928), - [anon_sym_TILDE] = ACTIONS(3928), - [anon_sym_STAR] = ACTIONS(3928), - [anon_sym_AMP_AMP] = ACTIONS(3928), - [anon_sym_AMP] = ACTIONS(3926), - [anon_sym_SEMI] = ACTIONS(3928), - [anon_sym___extension__] = ACTIONS(3926), - [anon_sym_typedef] = ACTIONS(3926), - [anon_sym_virtual] = ACTIONS(3926), - [anon_sym_extern] = ACTIONS(3926), - [anon_sym___attribute__] = ACTIONS(3926), - [anon_sym___attribute] = ACTIONS(3926), - [anon_sym_using] = ACTIONS(3926), - [anon_sym_COLON_COLON] = ACTIONS(3928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3928), - [anon_sym___declspec] = ACTIONS(3926), - [anon_sym___based] = ACTIONS(3926), - [anon_sym_RBRACE] = ACTIONS(3928), - [anon_sym_signed] = ACTIONS(3926), - [anon_sym_unsigned] = ACTIONS(3926), - [anon_sym_long] = ACTIONS(3926), - [anon_sym_short] = ACTIONS(3926), - [anon_sym_LBRACK] = ACTIONS(3926), - [anon_sym_static] = ACTIONS(3926), - [anon_sym_register] = ACTIONS(3926), - [anon_sym_inline] = ACTIONS(3926), - [anon_sym___inline] = ACTIONS(3926), - [anon_sym___inline__] = ACTIONS(3926), - [anon_sym___forceinline] = ACTIONS(3926), - [anon_sym_thread_local] = ACTIONS(3926), - [anon_sym___thread] = ACTIONS(3926), - [anon_sym_const] = ACTIONS(3926), - [anon_sym_constexpr] = ACTIONS(3926), - [anon_sym_volatile] = ACTIONS(3926), - [anon_sym_restrict] = ACTIONS(3926), - [anon_sym___restrict__] = ACTIONS(3926), - [anon_sym__Atomic] = ACTIONS(3926), - [anon_sym__Noreturn] = ACTIONS(3926), - [anon_sym_noreturn] = ACTIONS(3926), - [anon_sym__Nonnull] = ACTIONS(3926), - [anon_sym_mutable] = ACTIONS(3926), - [anon_sym_constinit] = ACTIONS(3926), - [anon_sym_consteval] = ACTIONS(3926), - [anon_sym_alignas] = ACTIONS(3926), - [anon_sym__Alignas] = ACTIONS(3926), - [sym_primitive_type] = ACTIONS(3926), - [anon_sym_enum] = ACTIONS(3926), - [anon_sym_class] = ACTIONS(3926), - [anon_sym_struct] = ACTIONS(3926), - [anon_sym_union] = ACTIONS(3926), - [anon_sym_typename] = ACTIONS(3926), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3926), - [anon_sym_decltype] = ACTIONS(3926), - [anon_sym_explicit] = ACTIONS(3926), - [anon_sym_private] = ACTIONS(3926), - [anon_sym_template] = ACTIONS(3926), - [anon_sym_operator] = ACTIONS(3926), - [anon_sym_friend] = ACTIONS(3926), - [anon_sym_public] = ACTIONS(3926), - [anon_sym_protected] = ACTIONS(3926), - [anon_sym_static_assert] = ACTIONS(3926), - [anon_sym_LBRACK_COLON] = ACTIONS(3928), + [anon_sym_LBRACK] = ACTIONS(8782), + [anon_sym_static] = ACTIONS(8782), + [anon_sym_register] = ACTIONS(8782), + [anon_sym_inline] = ACTIONS(8782), + [anon_sym___inline] = ACTIONS(8782), + [anon_sym___inline__] = ACTIONS(8782), + [anon_sym___forceinline] = ACTIONS(8782), + [anon_sym_thread_local] = ACTIONS(8782), + [anon_sym___thread] = ACTIONS(8782), + [anon_sym_const] = ACTIONS(8782), + [anon_sym_constexpr] = ACTIONS(8782), + [anon_sym_volatile] = ACTIONS(8782), + [anon_sym_restrict] = ACTIONS(8782), + [anon_sym___restrict__] = ACTIONS(8782), + [anon_sym__Atomic] = ACTIONS(8782), + [anon_sym__Noreturn] = ACTIONS(8782), + [anon_sym_noreturn] = ACTIONS(8782), + [anon_sym__Nonnull] = ACTIONS(8782), + [anon_sym_mutable] = ACTIONS(8782), + [anon_sym_constinit] = ACTIONS(8782), + [anon_sym_consteval] = ACTIONS(8782), + [anon_sym_alignas] = ACTIONS(8782), + [anon_sym__Alignas] = ACTIONS(8782), + [sym_primitive_type] = ACTIONS(8782), + [anon_sym_enum] = ACTIONS(8782), + [anon_sym_class] = ACTIONS(8782), + [anon_sym_struct] = ACTIONS(8782), + [anon_sym_union] = ACTIONS(8782), + [anon_sym_typename] = ACTIONS(8782), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8782), + [anon_sym_decltype] = ACTIONS(8782), + [anon_sym_explicit] = ACTIONS(8782), + [anon_sym_private] = ACTIONS(8782), + [anon_sym_template] = ACTIONS(8782), + [anon_sym_operator] = ACTIONS(8782), + [anon_sym_friend] = ACTIONS(8782), + [anon_sym_public] = ACTIONS(8782), + [anon_sym_protected] = ACTIONS(8782), + [anon_sym_static_assert] = ACTIONS(8782), + [anon_sym_LBRACK_COLON] = ACTIONS(8784), }, - [STATE(3320)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3362), - [sym_identifier] = ACTIONS(7239), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7241), - [anon_sym_COMMA] = ACTIONS(7241), - [aux_sym_preproc_if_token2] = ACTIONS(7241), - [aux_sym_preproc_else_token1] = ACTIONS(7241), - [aux_sym_preproc_elif_token1] = ACTIONS(7239), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7241), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7241), - [anon_sym_LPAREN2] = ACTIONS(7241), - [anon_sym_DASH] = ACTIONS(7239), - [anon_sym_PLUS] = ACTIONS(7239), - [anon_sym_STAR] = ACTIONS(7241), - [anon_sym_SLASH] = ACTIONS(7239), - [anon_sym_PERCENT] = ACTIONS(7241), - [anon_sym_PIPE_PIPE] = ACTIONS(7241), - [anon_sym_AMP_AMP] = ACTIONS(7241), - [anon_sym_PIPE] = ACTIONS(7239), - [anon_sym_CARET] = ACTIONS(7241), - [anon_sym_AMP] = ACTIONS(7239), - [anon_sym_EQ_EQ] = ACTIONS(7241), - [anon_sym_BANG_EQ] = ACTIONS(7241), - [anon_sym_GT] = ACTIONS(7239), - [anon_sym_GT_EQ] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7239), - [anon_sym_LT] = ACTIONS(7239), - [anon_sym_LT_LT] = ACTIONS(7241), - [anon_sym_GT_GT] = ACTIONS(7241), - [anon_sym___extension__] = ACTIONS(7239), - [anon_sym___attribute__] = ACTIONS(7239), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_LBRACE] = ACTIONS(7241), + [STATE(2862)] = { + [sym_identifier] = ACTIONS(8786), + [aux_sym_preproc_def_token1] = ACTIONS(8786), + [aux_sym_preproc_if_token1] = ACTIONS(8786), + [aux_sym_preproc_if_token2] = ACTIONS(8786), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8786), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8786), + [aux_sym_preproc_else_token1] = ACTIONS(8786), + [aux_sym_preproc_elif_token1] = ACTIONS(8786), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8786), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8786), + [sym_preproc_directive] = ACTIONS(8786), + [anon_sym_LPAREN2] = ACTIONS(8788), + [anon_sym_TILDE] = ACTIONS(8788), + [anon_sym_STAR] = ACTIONS(8788), + [anon_sym_AMP_AMP] = ACTIONS(8788), + [anon_sym_AMP] = ACTIONS(8786), + [anon_sym_SEMI] = ACTIONS(8788), + [anon_sym___extension__] = ACTIONS(8786), + [anon_sym_typedef] = ACTIONS(8786), + [anon_sym_virtual] = ACTIONS(8786), + [anon_sym_extern] = ACTIONS(8786), + [anon_sym___attribute__] = ACTIONS(8786), + [anon_sym___attribute] = ACTIONS(8786), + [anon_sym_using] = ACTIONS(8786), + [anon_sym_COLON_COLON] = ACTIONS(8788), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8788), + [anon_sym___declspec] = ACTIONS(8786), + [anon_sym___based] = ACTIONS(8786), [anon_sym_signed] = ACTIONS(8786), [anon_sym_unsigned] = ACTIONS(8786), [anon_sym_long] = ACTIONS(8786), [anon_sym_short] = ACTIONS(8786), - [anon_sym_LBRACK] = ACTIONS(7241), - [anon_sym_RBRACK] = ACTIONS(7241), - [anon_sym_const] = ACTIONS(7239), - [anon_sym_constexpr] = ACTIONS(7239), - [anon_sym_volatile] = ACTIONS(7239), - [anon_sym_restrict] = ACTIONS(7239), - [anon_sym___restrict__] = ACTIONS(7239), - [anon_sym__Atomic] = ACTIONS(7239), - [anon_sym__Noreturn] = ACTIONS(7239), - [anon_sym_noreturn] = ACTIONS(7239), - [anon_sym__Nonnull] = ACTIONS(7239), - [anon_sym_mutable] = ACTIONS(7239), - [anon_sym_constinit] = ACTIONS(7239), - [anon_sym_consteval] = ACTIONS(7239), - [anon_sym_alignas] = ACTIONS(7239), - [anon_sym__Alignas] = ACTIONS(7239), - [anon_sym_QMARK] = ACTIONS(7241), - [anon_sym_LT_EQ_GT] = ACTIONS(7241), - [anon_sym_or] = ACTIONS(7239), - [anon_sym_and] = ACTIONS(7239), - [anon_sym_bitor] = ACTIONS(7239), - [anon_sym_xor] = ACTIONS(7239), - [anon_sym_bitand] = ACTIONS(7239), - [anon_sym_not_eq] = ACTIONS(7239), - [anon_sym_DASH_DASH] = ACTIONS(7241), - [anon_sym_PLUS_PLUS] = ACTIONS(7241), - [anon_sym_DOT] = ACTIONS(7239), - [anon_sym_DOT_STAR] = ACTIONS(7241), - [anon_sym_DASH_GT] = ACTIONS(7241), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7239), - [anon_sym_override] = ACTIONS(7239), - [anon_sym_requires] = ACTIONS(7239), + [anon_sym_LBRACK] = ACTIONS(8786), + [anon_sym_static] = ACTIONS(8786), + [anon_sym_register] = ACTIONS(8786), + [anon_sym_inline] = ACTIONS(8786), + [anon_sym___inline] = ACTIONS(8786), + [anon_sym___inline__] = ACTIONS(8786), + [anon_sym___forceinline] = ACTIONS(8786), + [anon_sym_thread_local] = ACTIONS(8786), + [anon_sym___thread] = ACTIONS(8786), + [anon_sym_const] = ACTIONS(8786), + [anon_sym_constexpr] = ACTIONS(8786), + [anon_sym_volatile] = ACTIONS(8786), + [anon_sym_restrict] = ACTIONS(8786), + [anon_sym___restrict__] = ACTIONS(8786), + [anon_sym__Atomic] = ACTIONS(8786), + [anon_sym__Noreturn] = ACTIONS(8786), + [anon_sym_noreturn] = ACTIONS(8786), + [anon_sym__Nonnull] = ACTIONS(8786), + [anon_sym_mutable] = ACTIONS(8786), + [anon_sym_constinit] = ACTIONS(8786), + [anon_sym_consteval] = ACTIONS(8786), + [anon_sym_alignas] = ACTIONS(8786), + [anon_sym__Alignas] = ACTIONS(8786), + [sym_primitive_type] = ACTIONS(8786), + [anon_sym_enum] = ACTIONS(8786), + [anon_sym_class] = ACTIONS(8786), + [anon_sym_struct] = ACTIONS(8786), + [anon_sym_union] = ACTIONS(8786), + [anon_sym_typename] = ACTIONS(8786), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8786), + [anon_sym_decltype] = ACTIONS(8786), + [anon_sym_explicit] = ACTIONS(8786), + [anon_sym_private] = ACTIONS(8786), + [anon_sym_template] = ACTIONS(8786), + [anon_sym_operator] = ACTIONS(8786), + [anon_sym_friend] = ACTIONS(8786), + [anon_sym_public] = ACTIONS(8786), + [anon_sym_protected] = ACTIONS(8786), + [anon_sym_static_assert] = ACTIONS(8786), + [anon_sym_LBRACK_COLON] = ACTIONS(8788), }, - [STATE(3321)] = { - [sym_identifier] = ACTIONS(3930), - [aux_sym_preproc_def_token1] = ACTIONS(3930), - [aux_sym_preproc_if_token1] = ACTIONS(3930), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3930), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3930), - [sym_preproc_directive] = ACTIONS(3930), - [anon_sym_LPAREN2] = ACTIONS(3932), - [anon_sym_TILDE] = ACTIONS(3932), - [anon_sym_STAR] = ACTIONS(3932), - [anon_sym_AMP_AMP] = ACTIONS(3932), - [anon_sym_AMP] = ACTIONS(3930), - [anon_sym_SEMI] = ACTIONS(3932), - [anon_sym___extension__] = ACTIONS(3930), - [anon_sym_typedef] = ACTIONS(3930), - [anon_sym_virtual] = ACTIONS(3930), - [anon_sym_extern] = ACTIONS(3930), - [anon_sym___attribute__] = ACTIONS(3930), - [anon_sym___attribute] = ACTIONS(3930), - [anon_sym_using] = ACTIONS(3930), - [anon_sym_COLON_COLON] = ACTIONS(3932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3932), - [anon_sym___declspec] = ACTIONS(3930), - [anon_sym___based] = ACTIONS(3930), - [anon_sym_RBRACE] = ACTIONS(3932), - [anon_sym_signed] = ACTIONS(3930), - [anon_sym_unsigned] = ACTIONS(3930), - [anon_sym_long] = ACTIONS(3930), - [anon_sym_short] = ACTIONS(3930), - [anon_sym_LBRACK] = ACTIONS(3930), - [anon_sym_static] = ACTIONS(3930), - [anon_sym_register] = ACTIONS(3930), - [anon_sym_inline] = ACTIONS(3930), - [anon_sym___inline] = ACTIONS(3930), - [anon_sym___inline__] = ACTIONS(3930), - [anon_sym___forceinline] = ACTIONS(3930), - [anon_sym_thread_local] = ACTIONS(3930), - [anon_sym___thread] = ACTIONS(3930), - [anon_sym_const] = ACTIONS(3930), - [anon_sym_constexpr] = ACTIONS(3930), - [anon_sym_volatile] = ACTIONS(3930), - [anon_sym_restrict] = ACTIONS(3930), - [anon_sym___restrict__] = ACTIONS(3930), - [anon_sym__Atomic] = ACTIONS(3930), - [anon_sym__Noreturn] = ACTIONS(3930), - [anon_sym_noreturn] = ACTIONS(3930), - [anon_sym__Nonnull] = ACTIONS(3930), - [anon_sym_mutable] = ACTIONS(3930), - [anon_sym_constinit] = ACTIONS(3930), - [anon_sym_consteval] = ACTIONS(3930), - [anon_sym_alignas] = ACTIONS(3930), - [anon_sym__Alignas] = ACTIONS(3930), - [sym_primitive_type] = ACTIONS(3930), - [anon_sym_enum] = ACTIONS(3930), - [anon_sym_class] = ACTIONS(3930), - [anon_sym_struct] = ACTIONS(3930), - [anon_sym_union] = ACTIONS(3930), - [anon_sym_typename] = ACTIONS(3930), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3930), - [anon_sym_decltype] = ACTIONS(3930), - [anon_sym_explicit] = ACTIONS(3930), - [anon_sym_private] = ACTIONS(3930), - [anon_sym_template] = ACTIONS(3930), - [anon_sym_operator] = ACTIONS(3930), - [anon_sym_friend] = ACTIONS(3930), - [anon_sym_public] = ACTIONS(3930), - [anon_sym_protected] = ACTIONS(3930), - [anon_sym_static_assert] = ACTIONS(3930), - [anon_sym_LBRACK_COLON] = ACTIONS(3932), + [STATE(2863)] = { + [sym_identifier] = ACTIONS(8790), + [aux_sym_preproc_def_token1] = ACTIONS(8790), + [aux_sym_preproc_if_token1] = ACTIONS(8790), + [aux_sym_preproc_if_token2] = ACTIONS(8790), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8790), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8790), + [aux_sym_preproc_else_token1] = ACTIONS(8790), + [aux_sym_preproc_elif_token1] = ACTIONS(8790), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8790), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8790), + [sym_preproc_directive] = ACTIONS(8790), + [anon_sym_LPAREN2] = ACTIONS(8792), + [anon_sym_TILDE] = ACTIONS(8792), + [anon_sym_STAR] = ACTIONS(8792), + [anon_sym_AMP_AMP] = ACTIONS(8792), + [anon_sym_AMP] = ACTIONS(8790), + [anon_sym_SEMI] = ACTIONS(8792), + [anon_sym___extension__] = ACTIONS(8790), + [anon_sym_typedef] = ACTIONS(8790), + [anon_sym_virtual] = ACTIONS(8790), + [anon_sym_extern] = ACTIONS(8790), + [anon_sym___attribute__] = ACTIONS(8790), + [anon_sym___attribute] = ACTIONS(8790), + [anon_sym_using] = ACTIONS(8790), + [anon_sym_COLON_COLON] = ACTIONS(8792), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8792), + [anon_sym___declspec] = ACTIONS(8790), + [anon_sym___based] = ACTIONS(8790), + [anon_sym_signed] = ACTIONS(8790), + [anon_sym_unsigned] = ACTIONS(8790), + [anon_sym_long] = ACTIONS(8790), + [anon_sym_short] = ACTIONS(8790), + [anon_sym_LBRACK] = ACTIONS(8790), + [anon_sym_static] = ACTIONS(8790), + [anon_sym_register] = ACTIONS(8790), + [anon_sym_inline] = ACTIONS(8790), + [anon_sym___inline] = ACTIONS(8790), + [anon_sym___inline__] = ACTIONS(8790), + [anon_sym___forceinline] = ACTIONS(8790), + [anon_sym_thread_local] = ACTIONS(8790), + [anon_sym___thread] = ACTIONS(8790), + [anon_sym_const] = ACTIONS(8790), + [anon_sym_constexpr] = ACTIONS(8790), + [anon_sym_volatile] = ACTIONS(8790), + [anon_sym_restrict] = ACTIONS(8790), + [anon_sym___restrict__] = ACTIONS(8790), + [anon_sym__Atomic] = ACTIONS(8790), + [anon_sym__Noreturn] = ACTIONS(8790), + [anon_sym_noreturn] = ACTIONS(8790), + [anon_sym__Nonnull] = ACTIONS(8790), + [anon_sym_mutable] = ACTIONS(8790), + [anon_sym_constinit] = ACTIONS(8790), + [anon_sym_consteval] = ACTIONS(8790), + [anon_sym_alignas] = ACTIONS(8790), + [anon_sym__Alignas] = ACTIONS(8790), + [sym_primitive_type] = ACTIONS(8790), + [anon_sym_enum] = ACTIONS(8790), + [anon_sym_class] = ACTIONS(8790), + [anon_sym_struct] = ACTIONS(8790), + [anon_sym_union] = ACTIONS(8790), + [anon_sym_typename] = ACTIONS(8790), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8790), + [anon_sym_decltype] = ACTIONS(8790), + [anon_sym_explicit] = ACTIONS(8790), + [anon_sym_private] = ACTIONS(8790), + [anon_sym_template] = ACTIONS(8790), + [anon_sym_operator] = ACTIONS(8790), + [anon_sym_friend] = ACTIONS(8790), + [anon_sym_public] = ACTIONS(8790), + [anon_sym_protected] = ACTIONS(8790), + [anon_sym_static_assert] = ACTIONS(8790), + [anon_sym_LBRACK_COLON] = ACTIONS(8792), }, - [STATE(3322)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3239), - [sym_identifier] = ACTIONS(7249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7251), - [anon_sym_COMMA] = ACTIONS(7251), - [aux_sym_preproc_if_token2] = ACTIONS(7251), - [aux_sym_preproc_else_token1] = ACTIONS(7251), - [aux_sym_preproc_elif_token1] = ACTIONS(7249), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7251), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7251), - [anon_sym_LPAREN2] = ACTIONS(7251), - [anon_sym_DASH] = ACTIONS(7249), - [anon_sym_PLUS] = ACTIONS(7249), - [anon_sym_STAR] = ACTIONS(7251), - [anon_sym_SLASH] = ACTIONS(7249), - [anon_sym_PERCENT] = ACTIONS(7251), - [anon_sym_PIPE_PIPE] = ACTIONS(7251), - [anon_sym_AMP_AMP] = ACTIONS(7251), - [anon_sym_PIPE] = ACTIONS(7249), - [anon_sym_CARET] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7249), - [anon_sym_EQ_EQ] = ACTIONS(7251), - [anon_sym_BANG_EQ] = ACTIONS(7251), - [anon_sym_GT] = ACTIONS(7249), - [anon_sym_GT_EQ] = ACTIONS(7251), - [anon_sym_LT_EQ] = ACTIONS(7249), - [anon_sym_LT] = ACTIONS(7249), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_GT_GT] = ACTIONS(7251), - [anon_sym___extension__] = ACTIONS(7249), - [anon_sym___attribute__] = ACTIONS(7249), - [anon_sym___attribute] = ACTIONS(7249), - [anon_sym_LBRACE] = ACTIONS(7251), - [anon_sym_signed] = ACTIONS(8735), - [anon_sym_unsigned] = ACTIONS(8735), - [anon_sym_long] = ACTIONS(8735), - [anon_sym_short] = ACTIONS(8735), - [anon_sym_LBRACK] = ACTIONS(7251), - [anon_sym_RBRACK] = ACTIONS(7251), - [anon_sym_const] = ACTIONS(7249), - [anon_sym_constexpr] = ACTIONS(7249), - [anon_sym_volatile] = ACTIONS(7249), - [anon_sym_restrict] = ACTIONS(7249), - [anon_sym___restrict__] = ACTIONS(7249), - [anon_sym__Atomic] = ACTIONS(7249), - [anon_sym__Noreturn] = ACTIONS(7249), - [anon_sym_noreturn] = ACTIONS(7249), - [anon_sym__Nonnull] = ACTIONS(7249), - [anon_sym_mutable] = ACTIONS(7249), - [anon_sym_constinit] = ACTIONS(7249), - [anon_sym_consteval] = ACTIONS(7249), - [anon_sym_alignas] = ACTIONS(7249), - [anon_sym__Alignas] = ACTIONS(7249), - [anon_sym_QMARK] = ACTIONS(7251), - [anon_sym_LT_EQ_GT] = ACTIONS(7251), - [anon_sym_or] = ACTIONS(7249), - [anon_sym_and] = ACTIONS(7249), - [anon_sym_bitor] = ACTIONS(7249), - [anon_sym_xor] = ACTIONS(7249), - [anon_sym_bitand] = ACTIONS(7249), - [anon_sym_not_eq] = ACTIONS(7249), - [anon_sym_DASH_DASH] = ACTIONS(7251), - [anon_sym_PLUS_PLUS] = ACTIONS(7251), - [anon_sym_DOT] = ACTIONS(7249), - [anon_sym_DOT_STAR] = ACTIONS(7251), - [anon_sym_DASH_GT] = ACTIONS(7251), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7249), - [anon_sym_override] = ACTIONS(7249), - [anon_sym_requires] = ACTIONS(7249), + [STATE(2864)] = { + [sym_identifier] = ACTIONS(8794), + [aux_sym_preproc_def_token1] = ACTIONS(8794), + [aux_sym_preproc_if_token1] = ACTIONS(8794), + [aux_sym_preproc_if_token2] = ACTIONS(8794), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8794), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8794), + [aux_sym_preproc_else_token1] = ACTIONS(8794), + [aux_sym_preproc_elif_token1] = ACTIONS(8794), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8794), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8794), + [sym_preproc_directive] = ACTIONS(8794), + [anon_sym_LPAREN2] = ACTIONS(8796), + [anon_sym_TILDE] = ACTIONS(8796), + [anon_sym_STAR] = ACTIONS(8796), + [anon_sym_AMP_AMP] = ACTIONS(8796), + [anon_sym_AMP] = ACTIONS(8794), + [anon_sym_SEMI] = ACTIONS(8796), + [anon_sym___extension__] = ACTIONS(8794), + [anon_sym_typedef] = ACTIONS(8794), + [anon_sym_virtual] = ACTIONS(8794), + [anon_sym_extern] = ACTIONS(8794), + [anon_sym___attribute__] = ACTIONS(8794), + [anon_sym___attribute] = ACTIONS(8794), + [anon_sym_using] = ACTIONS(8794), + [anon_sym_COLON_COLON] = ACTIONS(8796), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8796), + [anon_sym___declspec] = ACTIONS(8794), + [anon_sym___based] = ACTIONS(8794), + [anon_sym_signed] = ACTIONS(8794), + [anon_sym_unsigned] = ACTIONS(8794), + [anon_sym_long] = ACTIONS(8794), + [anon_sym_short] = ACTIONS(8794), + [anon_sym_LBRACK] = ACTIONS(8794), + [anon_sym_static] = ACTIONS(8794), + [anon_sym_register] = ACTIONS(8794), + [anon_sym_inline] = ACTIONS(8794), + [anon_sym___inline] = ACTIONS(8794), + [anon_sym___inline__] = ACTIONS(8794), + [anon_sym___forceinline] = ACTIONS(8794), + [anon_sym_thread_local] = ACTIONS(8794), + [anon_sym___thread] = ACTIONS(8794), + [anon_sym_const] = ACTIONS(8794), + [anon_sym_constexpr] = ACTIONS(8794), + [anon_sym_volatile] = ACTIONS(8794), + [anon_sym_restrict] = ACTIONS(8794), + [anon_sym___restrict__] = ACTIONS(8794), + [anon_sym__Atomic] = ACTIONS(8794), + [anon_sym__Noreturn] = ACTIONS(8794), + [anon_sym_noreturn] = ACTIONS(8794), + [anon_sym__Nonnull] = ACTIONS(8794), + [anon_sym_mutable] = ACTIONS(8794), + [anon_sym_constinit] = ACTIONS(8794), + [anon_sym_consteval] = ACTIONS(8794), + [anon_sym_alignas] = ACTIONS(8794), + [anon_sym__Alignas] = ACTIONS(8794), + [sym_primitive_type] = ACTIONS(8794), + [anon_sym_enum] = ACTIONS(8794), + [anon_sym_class] = ACTIONS(8794), + [anon_sym_struct] = ACTIONS(8794), + [anon_sym_union] = ACTIONS(8794), + [anon_sym_typename] = ACTIONS(8794), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8794), + [anon_sym_decltype] = ACTIONS(8794), + [anon_sym_explicit] = ACTIONS(8794), + [anon_sym_private] = ACTIONS(8794), + [anon_sym_template] = ACTIONS(8794), + [anon_sym_operator] = ACTIONS(8794), + [anon_sym_friend] = ACTIONS(8794), + [anon_sym_public] = ACTIONS(8794), + [anon_sym_protected] = ACTIONS(8794), + [anon_sym_static_assert] = ACTIONS(8794), + [anon_sym_LBRACK_COLON] = ACTIONS(8796), }, - [STATE(3323)] = { - [sym_identifier] = ACTIONS(3934), - [aux_sym_preproc_def_token1] = ACTIONS(3934), - [aux_sym_preproc_if_token1] = ACTIONS(3934), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3934), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3934), - [sym_preproc_directive] = ACTIONS(3934), - [anon_sym_LPAREN2] = ACTIONS(3936), - [anon_sym_TILDE] = ACTIONS(3936), - [anon_sym_STAR] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3936), - [anon_sym_AMP] = ACTIONS(3934), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym___extension__] = ACTIONS(3934), - [anon_sym_typedef] = ACTIONS(3934), - [anon_sym_virtual] = ACTIONS(3934), - [anon_sym_extern] = ACTIONS(3934), - [anon_sym___attribute__] = ACTIONS(3934), - [anon_sym___attribute] = ACTIONS(3934), - [anon_sym_using] = ACTIONS(3934), - [anon_sym_COLON_COLON] = ACTIONS(3936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3936), - [anon_sym___declspec] = ACTIONS(3934), - [anon_sym___based] = ACTIONS(3934), - [anon_sym_RBRACE] = ACTIONS(3936), - [anon_sym_signed] = ACTIONS(3934), - [anon_sym_unsigned] = ACTIONS(3934), - [anon_sym_long] = ACTIONS(3934), - [anon_sym_short] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(3934), - [anon_sym_static] = ACTIONS(3934), - [anon_sym_register] = ACTIONS(3934), - [anon_sym_inline] = ACTIONS(3934), - [anon_sym___inline] = ACTIONS(3934), - [anon_sym___inline__] = ACTIONS(3934), - [anon_sym___forceinline] = ACTIONS(3934), - [anon_sym_thread_local] = ACTIONS(3934), - [anon_sym___thread] = ACTIONS(3934), - [anon_sym_const] = ACTIONS(3934), - [anon_sym_constexpr] = ACTIONS(3934), - [anon_sym_volatile] = ACTIONS(3934), - [anon_sym_restrict] = ACTIONS(3934), - [anon_sym___restrict__] = ACTIONS(3934), - [anon_sym__Atomic] = ACTIONS(3934), - [anon_sym__Noreturn] = ACTIONS(3934), - [anon_sym_noreturn] = ACTIONS(3934), - [anon_sym__Nonnull] = ACTIONS(3934), - [anon_sym_mutable] = ACTIONS(3934), - [anon_sym_constinit] = ACTIONS(3934), - [anon_sym_consteval] = ACTIONS(3934), - [anon_sym_alignas] = ACTIONS(3934), - [anon_sym__Alignas] = ACTIONS(3934), - [sym_primitive_type] = ACTIONS(3934), - [anon_sym_enum] = ACTIONS(3934), - [anon_sym_class] = ACTIONS(3934), - [anon_sym_struct] = ACTIONS(3934), - [anon_sym_union] = ACTIONS(3934), - [anon_sym_typename] = ACTIONS(3934), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3934), - [anon_sym_decltype] = ACTIONS(3934), - [anon_sym_explicit] = ACTIONS(3934), - [anon_sym_private] = ACTIONS(3934), - [anon_sym_template] = ACTIONS(3934), - [anon_sym_operator] = ACTIONS(3934), - [anon_sym_friend] = ACTIONS(3934), - [anon_sym_public] = ACTIONS(3934), - [anon_sym_protected] = ACTIONS(3934), - [anon_sym_static_assert] = ACTIONS(3934), - [anon_sym_LBRACK_COLON] = ACTIONS(3936), + [STATE(2865)] = { + [sym_identifier] = ACTIONS(8794), + [aux_sym_preproc_def_token1] = ACTIONS(8794), + [aux_sym_preproc_if_token1] = ACTIONS(8794), + [aux_sym_preproc_if_token2] = ACTIONS(8794), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8794), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8794), + [aux_sym_preproc_else_token1] = ACTIONS(8794), + [aux_sym_preproc_elif_token1] = ACTIONS(8794), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8794), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8794), + [sym_preproc_directive] = ACTIONS(8794), + [anon_sym_LPAREN2] = ACTIONS(8796), + [anon_sym_TILDE] = ACTIONS(8796), + [anon_sym_STAR] = ACTIONS(8796), + [anon_sym_AMP_AMP] = ACTIONS(8796), + [anon_sym_AMP] = ACTIONS(8794), + [anon_sym_SEMI] = ACTIONS(8796), + [anon_sym___extension__] = ACTIONS(8794), + [anon_sym_typedef] = ACTIONS(8794), + [anon_sym_virtual] = ACTIONS(8794), + [anon_sym_extern] = ACTIONS(8794), + [anon_sym___attribute__] = ACTIONS(8794), + [anon_sym___attribute] = ACTIONS(8794), + [anon_sym_using] = ACTIONS(8794), + [anon_sym_COLON_COLON] = ACTIONS(8796), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8796), + [anon_sym___declspec] = ACTIONS(8794), + [anon_sym___based] = ACTIONS(8794), + [anon_sym_signed] = ACTIONS(8794), + [anon_sym_unsigned] = ACTIONS(8794), + [anon_sym_long] = ACTIONS(8794), + [anon_sym_short] = ACTIONS(8794), + [anon_sym_LBRACK] = ACTIONS(8794), + [anon_sym_static] = ACTIONS(8794), + [anon_sym_register] = ACTIONS(8794), + [anon_sym_inline] = ACTIONS(8794), + [anon_sym___inline] = ACTIONS(8794), + [anon_sym___inline__] = ACTIONS(8794), + [anon_sym___forceinline] = ACTIONS(8794), + [anon_sym_thread_local] = ACTIONS(8794), + [anon_sym___thread] = ACTIONS(8794), + [anon_sym_const] = ACTIONS(8794), + [anon_sym_constexpr] = ACTIONS(8794), + [anon_sym_volatile] = ACTIONS(8794), + [anon_sym_restrict] = ACTIONS(8794), + [anon_sym___restrict__] = ACTIONS(8794), + [anon_sym__Atomic] = ACTIONS(8794), + [anon_sym__Noreturn] = ACTIONS(8794), + [anon_sym_noreturn] = ACTIONS(8794), + [anon_sym__Nonnull] = ACTIONS(8794), + [anon_sym_mutable] = ACTIONS(8794), + [anon_sym_constinit] = ACTIONS(8794), + [anon_sym_consteval] = ACTIONS(8794), + [anon_sym_alignas] = ACTIONS(8794), + [anon_sym__Alignas] = ACTIONS(8794), + [sym_primitive_type] = ACTIONS(8794), + [anon_sym_enum] = ACTIONS(8794), + [anon_sym_class] = ACTIONS(8794), + [anon_sym_struct] = ACTIONS(8794), + [anon_sym_union] = ACTIONS(8794), + [anon_sym_typename] = ACTIONS(8794), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8794), + [anon_sym_decltype] = ACTIONS(8794), + [anon_sym_explicit] = ACTIONS(8794), + [anon_sym_private] = ACTIONS(8794), + [anon_sym_template] = ACTIONS(8794), + [anon_sym_operator] = ACTIONS(8794), + [anon_sym_friend] = ACTIONS(8794), + [anon_sym_public] = ACTIONS(8794), + [anon_sym_protected] = ACTIONS(8794), + [anon_sym_static_assert] = ACTIONS(8794), + [anon_sym_LBRACK_COLON] = ACTIONS(8796), }, - [STATE(3324)] = { - [sym_identifier] = ACTIONS(3938), - [aux_sym_preproc_def_token1] = ACTIONS(3938), - [aux_sym_preproc_if_token1] = ACTIONS(3938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3938), - [sym_preproc_directive] = ACTIONS(3938), - [anon_sym_LPAREN2] = ACTIONS(3940), - [anon_sym_TILDE] = ACTIONS(3940), - [anon_sym_STAR] = ACTIONS(3940), - [anon_sym_AMP_AMP] = ACTIONS(3940), - [anon_sym_AMP] = ACTIONS(3938), - [anon_sym_SEMI] = ACTIONS(3940), - [anon_sym___extension__] = ACTIONS(3938), - [anon_sym_typedef] = ACTIONS(3938), - [anon_sym_virtual] = ACTIONS(3938), - [anon_sym_extern] = ACTIONS(3938), - [anon_sym___attribute__] = ACTIONS(3938), - [anon_sym___attribute] = ACTIONS(3938), - [anon_sym_using] = ACTIONS(3938), - [anon_sym_COLON_COLON] = ACTIONS(3940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3940), - [anon_sym___declspec] = ACTIONS(3938), - [anon_sym___based] = ACTIONS(3938), - [anon_sym_RBRACE] = ACTIONS(3940), - [anon_sym_signed] = ACTIONS(3938), - [anon_sym_unsigned] = ACTIONS(3938), - [anon_sym_long] = ACTIONS(3938), - [anon_sym_short] = ACTIONS(3938), - [anon_sym_LBRACK] = ACTIONS(3938), - [anon_sym_static] = ACTIONS(3938), - [anon_sym_register] = ACTIONS(3938), - [anon_sym_inline] = ACTIONS(3938), - [anon_sym___inline] = ACTIONS(3938), - [anon_sym___inline__] = ACTIONS(3938), - [anon_sym___forceinline] = ACTIONS(3938), - [anon_sym_thread_local] = ACTIONS(3938), - [anon_sym___thread] = ACTIONS(3938), - [anon_sym_const] = ACTIONS(3938), - [anon_sym_constexpr] = ACTIONS(3938), - [anon_sym_volatile] = ACTIONS(3938), - [anon_sym_restrict] = ACTIONS(3938), - [anon_sym___restrict__] = ACTIONS(3938), - [anon_sym__Atomic] = ACTIONS(3938), - [anon_sym__Noreturn] = ACTIONS(3938), - [anon_sym_noreturn] = ACTIONS(3938), - [anon_sym__Nonnull] = ACTIONS(3938), - [anon_sym_mutable] = ACTIONS(3938), - [anon_sym_constinit] = ACTIONS(3938), - [anon_sym_consteval] = ACTIONS(3938), - [anon_sym_alignas] = ACTIONS(3938), - [anon_sym__Alignas] = ACTIONS(3938), - [sym_primitive_type] = ACTIONS(3938), - [anon_sym_enum] = ACTIONS(3938), - [anon_sym_class] = ACTIONS(3938), - [anon_sym_struct] = ACTIONS(3938), - [anon_sym_union] = ACTIONS(3938), - [anon_sym_typename] = ACTIONS(3938), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3938), - [anon_sym_decltype] = ACTIONS(3938), - [anon_sym_explicit] = ACTIONS(3938), - [anon_sym_private] = ACTIONS(3938), - [anon_sym_template] = ACTIONS(3938), - [anon_sym_operator] = ACTIONS(3938), - [anon_sym_friend] = ACTIONS(3938), - [anon_sym_public] = ACTIONS(3938), - [anon_sym_protected] = ACTIONS(3938), - [anon_sym_static_assert] = ACTIONS(3938), - [anon_sym_LBRACK_COLON] = ACTIONS(3940), + [STATE(2866)] = { + [sym_identifier] = ACTIONS(8794), + [aux_sym_preproc_def_token1] = ACTIONS(8794), + [aux_sym_preproc_if_token1] = ACTIONS(8794), + [aux_sym_preproc_if_token2] = ACTIONS(8794), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8794), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8794), + [aux_sym_preproc_else_token1] = ACTIONS(8794), + [aux_sym_preproc_elif_token1] = ACTIONS(8794), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8794), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8794), + [sym_preproc_directive] = ACTIONS(8794), + [anon_sym_LPAREN2] = ACTIONS(8796), + [anon_sym_TILDE] = ACTIONS(8796), + [anon_sym_STAR] = ACTIONS(8796), + [anon_sym_AMP_AMP] = ACTIONS(8796), + [anon_sym_AMP] = ACTIONS(8794), + [anon_sym_SEMI] = ACTIONS(8796), + [anon_sym___extension__] = ACTIONS(8794), + [anon_sym_typedef] = ACTIONS(8794), + [anon_sym_virtual] = ACTIONS(8794), + [anon_sym_extern] = ACTIONS(8794), + [anon_sym___attribute__] = ACTIONS(8794), + [anon_sym___attribute] = ACTIONS(8794), + [anon_sym_using] = ACTIONS(8794), + [anon_sym_COLON_COLON] = ACTIONS(8796), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8796), + [anon_sym___declspec] = ACTIONS(8794), + [anon_sym___based] = ACTIONS(8794), + [anon_sym_signed] = ACTIONS(8794), + [anon_sym_unsigned] = ACTIONS(8794), + [anon_sym_long] = ACTIONS(8794), + [anon_sym_short] = ACTIONS(8794), + [anon_sym_LBRACK] = ACTIONS(8794), + [anon_sym_static] = ACTIONS(8794), + [anon_sym_register] = ACTIONS(8794), + [anon_sym_inline] = ACTIONS(8794), + [anon_sym___inline] = ACTIONS(8794), + [anon_sym___inline__] = ACTIONS(8794), + [anon_sym___forceinline] = ACTIONS(8794), + [anon_sym_thread_local] = ACTIONS(8794), + [anon_sym___thread] = ACTIONS(8794), + [anon_sym_const] = ACTIONS(8794), + [anon_sym_constexpr] = ACTIONS(8794), + [anon_sym_volatile] = ACTIONS(8794), + [anon_sym_restrict] = ACTIONS(8794), + [anon_sym___restrict__] = ACTIONS(8794), + [anon_sym__Atomic] = ACTIONS(8794), + [anon_sym__Noreturn] = ACTIONS(8794), + [anon_sym_noreturn] = ACTIONS(8794), + [anon_sym__Nonnull] = ACTIONS(8794), + [anon_sym_mutable] = ACTIONS(8794), + [anon_sym_constinit] = ACTIONS(8794), + [anon_sym_consteval] = ACTIONS(8794), + [anon_sym_alignas] = ACTIONS(8794), + [anon_sym__Alignas] = ACTIONS(8794), + [sym_primitive_type] = ACTIONS(8794), + [anon_sym_enum] = ACTIONS(8794), + [anon_sym_class] = ACTIONS(8794), + [anon_sym_struct] = ACTIONS(8794), + [anon_sym_union] = ACTIONS(8794), + [anon_sym_typename] = ACTIONS(8794), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8794), + [anon_sym_decltype] = ACTIONS(8794), + [anon_sym_explicit] = ACTIONS(8794), + [anon_sym_private] = ACTIONS(8794), + [anon_sym_template] = ACTIONS(8794), + [anon_sym_operator] = ACTIONS(8794), + [anon_sym_friend] = ACTIONS(8794), + [anon_sym_public] = ACTIONS(8794), + [anon_sym_protected] = ACTIONS(8794), + [anon_sym_static_assert] = ACTIONS(8794), + [anon_sym_LBRACK_COLON] = ACTIONS(8796), }, - [STATE(3325)] = { - [sym_identifier] = ACTIONS(3942), - [aux_sym_preproc_def_token1] = ACTIONS(3942), - [aux_sym_preproc_if_token1] = ACTIONS(3942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3942), - [sym_preproc_directive] = ACTIONS(3942), - [anon_sym_LPAREN2] = ACTIONS(3944), - [anon_sym_TILDE] = ACTIONS(3944), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_AMP_AMP] = ACTIONS(3944), - [anon_sym_AMP] = ACTIONS(3942), - [anon_sym_SEMI] = ACTIONS(3944), - [anon_sym___extension__] = ACTIONS(3942), - [anon_sym_typedef] = ACTIONS(3942), - [anon_sym_virtual] = ACTIONS(3942), - [anon_sym_extern] = ACTIONS(3942), - [anon_sym___attribute__] = ACTIONS(3942), - [anon_sym___attribute] = ACTIONS(3942), - [anon_sym_using] = ACTIONS(3942), - [anon_sym_COLON_COLON] = ACTIONS(3944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3944), - [anon_sym___declspec] = ACTIONS(3942), - [anon_sym___based] = ACTIONS(3942), - [anon_sym_RBRACE] = ACTIONS(3944), - [anon_sym_signed] = ACTIONS(3942), - [anon_sym_unsigned] = ACTIONS(3942), - [anon_sym_long] = ACTIONS(3942), - [anon_sym_short] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(3942), - [anon_sym_static] = ACTIONS(3942), - [anon_sym_register] = ACTIONS(3942), - [anon_sym_inline] = ACTIONS(3942), - [anon_sym___inline] = ACTIONS(3942), - [anon_sym___inline__] = ACTIONS(3942), - [anon_sym___forceinline] = ACTIONS(3942), - [anon_sym_thread_local] = ACTIONS(3942), - [anon_sym___thread] = ACTIONS(3942), - [anon_sym_const] = ACTIONS(3942), - [anon_sym_constexpr] = ACTIONS(3942), - [anon_sym_volatile] = ACTIONS(3942), - [anon_sym_restrict] = ACTIONS(3942), - [anon_sym___restrict__] = ACTIONS(3942), - [anon_sym__Atomic] = ACTIONS(3942), - [anon_sym__Noreturn] = ACTIONS(3942), - [anon_sym_noreturn] = ACTIONS(3942), - [anon_sym__Nonnull] = ACTIONS(3942), - [anon_sym_mutable] = ACTIONS(3942), - [anon_sym_constinit] = ACTIONS(3942), - [anon_sym_consteval] = ACTIONS(3942), - [anon_sym_alignas] = ACTIONS(3942), - [anon_sym__Alignas] = ACTIONS(3942), - [sym_primitive_type] = ACTIONS(3942), - [anon_sym_enum] = ACTIONS(3942), - [anon_sym_class] = ACTIONS(3942), - [anon_sym_struct] = ACTIONS(3942), - [anon_sym_union] = ACTIONS(3942), - [anon_sym_typename] = ACTIONS(3942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3942), - [anon_sym_decltype] = ACTIONS(3942), - [anon_sym_explicit] = ACTIONS(3942), - [anon_sym_private] = ACTIONS(3942), - [anon_sym_template] = ACTIONS(3942), - [anon_sym_operator] = ACTIONS(3942), - [anon_sym_friend] = ACTIONS(3942), - [anon_sym_public] = ACTIONS(3942), - [anon_sym_protected] = ACTIONS(3942), - [anon_sym_static_assert] = ACTIONS(3942), - [anon_sym_LBRACK_COLON] = ACTIONS(3944), + [STATE(2867)] = { + [sym_identifier] = ACTIONS(4270), + [aux_sym_preproc_def_token1] = ACTIONS(4270), + [aux_sym_preproc_if_token1] = ACTIONS(4270), + [aux_sym_preproc_if_token2] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), + [aux_sym_preproc_else_token1] = ACTIONS(4270), + [aux_sym_preproc_elif_token1] = ACTIONS(4270), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4270), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4270), + [sym_preproc_directive] = ACTIONS(4270), + [anon_sym_LPAREN2] = ACTIONS(4272), + [anon_sym_TILDE] = ACTIONS(4272), + [anon_sym_STAR] = ACTIONS(4272), + [anon_sym_AMP_AMP] = ACTIONS(4272), + [anon_sym_AMP] = ACTIONS(4270), + [anon_sym_SEMI] = ACTIONS(4272), + [anon_sym___extension__] = ACTIONS(4270), + [anon_sym_typedef] = ACTIONS(4270), + [anon_sym_virtual] = ACTIONS(4270), + [anon_sym_extern] = ACTIONS(4270), + [anon_sym___attribute__] = ACTIONS(4270), + [anon_sym___attribute] = ACTIONS(4270), + [anon_sym_using] = ACTIONS(4270), + [anon_sym_COLON_COLON] = ACTIONS(4272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), + [anon_sym___declspec] = ACTIONS(4270), + [anon_sym___based] = ACTIONS(4270), + [anon_sym_signed] = ACTIONS(4270), + [anon_sym_unsigned] = ACTIONS(4270), + [anon_sym_long] = ACTIONS(4270), + [anon_sym_short] = ACTIONS(4270), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_static] = ACTIONS(4270), + [anon_sym_register] = ACTIONS(4270), + [anon_sym_inline] = ACTIONS(4270), + [anon_sym___inline] = ACTIONS(4270), + [anon_sym___inline__] = ACTIONS(4270), + [anon_sym___forceinline] = ACTIONS(4270), + [anon_sym_thread_local] = ACTIONS(4270), + [anon_sym___thread] = ACTIONS(4270), + [anon_sym_const] = ACTIONS(4270), + [anon_sym_constexpr] = ACTIONS(4270), + [anon_sym_volatile] = ACTIONS(4270), + [anon_sym_restrict] = ACTIONS(4270), + [anon_sym___restrict__] = ACTIONS(4270), + [anon_sym__Atomic] = ACTIONS(4270), + [anon_sym__Noreturn] = ACTIONS(4270), + [anon_sym_noreturn] = ACTIONS(4270), + [anon_sym__Nonnull] = ACTIONS(4270), + [anon_sym_mutable] = ACTIONS(4270), + [anon_sym_constinit] = ACTIONS(4270), + [anon_sym_consteval] = ACTIONS(4270), + [anon_sym_alignas] = ACTIONS(4270), + [anon_sym__Alignas] = ACTIONS(4270), + [sym_primitive_type] = ACTIONS(4270), + [anon_sym_enum] = ACTIONS(4270), + [anon_sym_class] = ACTIONS(4270), + [anon_sym_struct] = ACTIONS(4270), + [anon_sym_union] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4270), + [anon_sym_decltype] = ACTIONS(4270), + [anon_sym_explicit] = ACTIONS(4270), + [anon_sym_private] = ACTIONS(4270), + [anon_sym_template] = ACTIONS(4270), + [anon_sym_operator] = ACTIONS(4270), + [anon_sym_friend] = ACTIONS(4270), + [anon_sym_public] = ACTIONS(4270), + [anon_sym_protected] = ACTIONS(4270), + [anon_sym_static_assert] = ACTIONS(4270), + [anon_sym_LBRACK_COLON] = ACTIONS(4272), }, - [STATE(3326)] = { - [sym_identifier] = ACTIONS(3946), - [aux_sym_preproc_def_token1] = ACTIONS(3946), - [aux_sym_preproc_if_token1] = ACTIONS(3946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3946), - [sym_preproc_directive] = ACTIONS(3946), - [anon_sym_LPAREN2] = ACTIONS(3948), - [anon_sym_TILDE] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym___extension__] = ACTIONS(3946), - [anon_sym_typedef] = ACTIONS(3946), - [anon_sym_virtual] = ACTIONS(3946), - [anon_sym_extern] = ACTIONS(3946), - [anon_sym___attribute__] = ACTIONS(3946), - [anon_sym___attribute] = ACTIONS(3946), - [anon_sym_using] = ACTIONS(3946), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3948), - [anon_sym___declspec] = ACTIONS(3946), - [anon_sym___based] = ACTIONS(3946), - [anon_sym_RBRACE] = ACTIONS(3948), - [anon_sym_signed] = ACTIONS(3946), - [anon_sym_unsigned] = ACTIONS(3946), - [anon_sym_long] = ACTIONS(3946), - [anon_sym_short] = ACTIONS(3946), - [anon_sym_LBRACK] = ACTIONS(3946), - [anon_sym_static] = ACTIONS(3946), - [anon_sym_register] = ACTIONS(3946), - [anon_sym_inline] = ACTIONS(3946), - [anon_sym___inline] = ACTIONS(3946), - [anon_sym___inline__] = ACTIONS(3946), - [anon_sym___forceinline] = ACTIONS(3946), - [anon_sym_thread_local] = ACTIONS(3946), - [anon_sym___thread] = ACTIONS(3946), - [anon_sym_const] = ACTIONS(3946), - [anon_sym_constexpr] = ACTIONS(3946), - [anon_sym_volatile] = ACTIONS(3946), - [anon_sym_restrict] = ACTIONS(3946), - [anon_sym___restrict__] = ACTIONS(3946), - [anon_sym__Atomic] = ACTIONS(3946), - [anon_sym__Noreturn] = ACTIONS(3946), - [anon_sym_noreturn] = ACTIONS(3946), - [anon_sym__Nonnull] = ACTIONS(3946), - [anon_sym_mutable] = ACTIONS(3946), - [anon_sym_constinit] = ACTIONS(3946), - [anon_sym_consteval] = ACTIONS(3946), - [anon_sym_alignas] = ACTIONS(3946), - [anon_sym__Alignas] = ACTIONS(3946), - [sym_primitive_type] = ACTIONS(3946), - [anon_sym_enum] = ACTIONS(3946), - [anon_sym_class] = ACTIONS(3946), - [anon_sym_struct] = ACTIONS(3946), - [anon_sym_union] = ACTIONS(3946), - [anon_sym_typename] = ACTIONS(3946), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3946), - [anon_sym_decltype] = ACTIONS(3946), - [anon_sym_explicit] = ACTIONS(3946), - [anon_sym_private] = ACTIONS(3946), - [anon_sym_template] = ACTIONS(3946), - [anon_sym_operator] = ACTIONS(3946), - [anon_sym_friend] = ACTIONS(3946), - [anon_sym_public] = ACTIONS(3946), - [anon_sym_protected] = ACTIONS(3946), - [anon_sym_static_assert] = ACTIONS(3946), - [anon_sym_LBRACK_COLON] = ACTIONS(3948), + [STATE(2868)] = { + [sym_identifier] = ACTIONS(8786), + [aux_sym_preproc_def_token1] = ACTIONS(8786), + [aux_sym_preproc_if_token1] = ACTIONS(8786), + [aux_sym_preproc_if_token2] = ACTIONS(8786), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8786), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8786), + [aux_sym_preproc_else_token1] = ACTIONS(8786), + [aux_sym_preproc_elif_token1] = ACTIONS(8786), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8786), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8786), + [sym_preproc_directive] = ACTIONS(8786), + [anon_sym_LPAREN2] = ACTIONS(8788), + [anon_sym_TILDE] = ACTIONS(8788), + [anon_sym_STAR] = ACTIONS(8788), + [anon_sym_AMP_AMP] = ACTIONS(8788), + [anon_sym_AMP] = ACTIONS(8786), + [anon_sym_SEMI] = ACTIONS(8788), + [anon_sym___extension__] = ACTIONS(8786), + [anon_sym_typedef] = ACTIONS(8786), + [anon_sym_virtual] = ACTIONS(8786), + [anon_sym_extern] = ACTIONS(8786), + [anon_sym___attribute__] = ACTIONS(8786), + [anon_sym___attribute] = ACTIONS(8786), + [anon_sym_using] = ACTIONS(8786), + [anon_sym_COLON_COLON] = ACTIONS(8788), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8788), + [anon_sym___declspec] = ACTIONS(8786), + [anon_sym___based] = ACTIONS(8786), + [anon_sym_signed] = ACTIONS(8786), + [anon_sym_unsigned] = ACTIONS(8786), + [anon_sym_long] = ACTIONS(8786), + [anon_sym_short] = ACTIONS(8786), + [anon_sym_LBRACK] = ACTIONS(8786), + [anon_sym_static] = ACTIONS(8786), + [anon_sym_register] = ACTIONS(8786), + [anon_sym_inline] = ACTIONS(8786), + [anon_sym___inline] = ACTIONS(8786), + [anon_sym___inline__] = ACTIONS(8786), + [anon_sym___forceinline] = ACTIONS(8786), + [anon_sym_thread_local] = ACTIONS(8786), + [anon_sym___thread] = ACTIONS(8786), + [anon_sym_const] = ACTIONS(8786), + [anon_sym_constexpr] = ACTIONS(8786), + [anon_sym_volatile] = ACTIONS(8786), + [anon_sym_restrict] = ACTIONS(8786), + [anon_sym___restrict__] = ACTIONS(8786), + [anon_sym__Atomic] = ACTIONS(8786), + [anon_sym__Noreturn] = ACTIONS(8786), + [anon_sym_noreturn] = ACTIONS(8786), + [anon_sym__Nonnull] = ACTIONS(8786), + [anon_sym_mutable] = ACTIONS(8786), + [anon_sym_constinit] = ACTIONS(8786), + [anon_sym_consteval] = ACTIONS(8786), + [anon_sym_alignas] = ACTIONS(8786), + [anon_sym__Alignas] = ACTIONS(8786), + [sym_primitive_type] = ACTIONS(8786), + [anon_sym_enum] = ACTIONS(8786), + [anon_sym_class] = ACTIONS(8786), + [anon_sym_struct] = ACTIONS(8786), + [anon_sym_union] = ACTIONS(8786), + [anon_sym_typename] = ACTIONS(8786), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8786), + [anon_sym_decltype] = ACTIONS(8786), + [anon_sym_explicit] = ACTIONS(8786), + [anon_sym_private] = ACTIONS(8786), + [anon_sym_template] = ACTIONS(8786), + [anon_sym_operator] = ACTIONS(8786), + [anon_sym_friend] = ACTIONS(8786), + [anon_sym_public] = ACTIONS(8786), + [anon_sym_protected] = ACTIONS(8786), + [anon_sym_static_assert] = ACTIONS(8786), + [anon_sym_LBRACK_COLON] = ACTIONS(8788), }, - [STATE(3327)] = { + [STATE(2869)] = { [sym_identifier] = ACTIONS(3950), [aux_sym_preproc_def_token1] = ACTIONS(3950), [aux_sym_preproc_if_token1] = ACTIONS(3950), + [aux_sym_preproc_if_token2] = ACTIONS(3950), [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), + [aux_sym_preproc_else_token1] = ACTIONS(3950), + [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3950), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3950), [sym_preproc_directive] = ACTIONS(3950), [anon_sym_LPAREN2] = ACTIONS(3952), [anon_sym_TILDE] = ACTIONS(3952), @@ -403591,7 +384069,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), [anon_sym___declspec] = ACTIONS(3950), [anon_sym___based] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3952), [anon_sym_signed] = ACTIONS(3950), [anon_sym_unsigned] = ACTIONS(3950), [anon_sym_long] = ACTIONS(3950), @@ -403638,2389 +384115,3471 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(3950), [anon_sym_LBRACK_COLON] = ACTIONS(3952), }, - [STATE(3328)] = { - [sym_attribute_specifier] = STATE(4247), - [sym_attribute_declaration] = STATE(4729), - [sym_gnu_asm_expression] = STATE(8972), - [sym_virtual_specifier] = STATE(4992), - [sym__function_attributes_end] = STATE(4507), - [sym__function_postfix] = STATE(5531), - [sym_trailing_return_type] = STATE(4602), - [sym_requires_clause] = STATE(5531), - [aux_sym_type_definition_repeat1] = STATE(4247), - [aux_sym_attributed_declarator_repeat1] = STATE(4729), - [aux_sym__function_postfix_repeat1] = STATE(4992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(6410), - [anon_sym___attribute] = ACTIONS(6412), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6414), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7544), - [anon_sym_and] = ACTIONS(7544), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7544), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(8164), + [STATE(2870)] = { + [sym_identifier] = ACTIONS(4164), + [aux_sym_preproc_def_token1] = ACTIONS(4164), + [aux_sym_preproc_if_token1] = ACTIONS(4164), + [aux_sym_preproc_if_token2] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), + [aux_sym_preproc_else_token1] = ACTIONS(4164), + [aux_sym_preproc_elif_token1] = ACTIONS(4164), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4164), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4164), + [sym_preproc_directive] = ACTIONS(4164), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_typedef] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_using] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym_signed] = ACTIONS(4164), + [anon_sym_unsigned] = ACTIONS(4164), + [anon_sym_long] = ACTIONS(4164), + [anon_sym_short] = ACTIONS(4164), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [sym_primitive_type] = ACTIONS(4164), + [anon_sym_enum] = ACTIONS(4164), + [anon_sym_class] = ACTIONS(4164), + [anon_sym_struct] = ACTIONS(4164), + [anon_sym_union] = ACTIONS(4164), + [anon_sym_typename] = ACTIONS(4164), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8174), - [anon_sym_override] = ACTIONS(8174), - [anon_sym_requires] = ACTIONS(8177), - [anon_sym_DASH_GT_STAR] = ACTIONS(7544), - }, - [STATE(3329)] = { - [sym_identifier] = ACTIONS(3930), - [aux_sym_preproc_def_token1] = ACTIONS(3930), - [aux_sym_preproc_if_token1] = ACTIONS(3930), - [aux_sym_preproc_if_token2] = ACTIONS(3930), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3930), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3930), - [sym_preproc_directive] = ACTIONS(3930), - [anon_sym_LPAREN2] = ACTIONS(3932), - [anon_sym_TILDE] = ACTIONS(3932), - [anon_sym_STAR] = ACTIONS(3932), - [anon_sym_AMP_AMP] = ACTIONS(3932), - [anon_sym_AMP] = ACTIONS(3930), - [anon_sym_SEMI] = ACTIONS(3932), - [anon_sym___extension__] = ACTIONS(3930), - [anon_sym_typedef] = ACTIONS(3930), - [anon_sym_virtual] = ACTIONS(3930), - [anon_sym_extern] = ACTIONS(3930), - [anon_sym___attribute__] = ACTIONS(3930), - [anon_sym___attribute] = ACTIONS(3930), - [anon_sym_using] = ACTIONS(3930), - [anon_sym_COLON_COLON] = ACTIONS(3932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3932), - [anon_sym___declspec] = ACTIONS(3930), - [anon_sym___based] = ACTIONS(3930), - [anon_sym_signed] = ACTIONS(3930), - [anon_sym_unsigned] = ACTIONS(3930), - [anon_sym_long] = ACTIONS(3930), - [anon_sym_short] = ACTIONS(3930), - [anon_sym_LBRACK] = ACTIONS(3930), - [anon_sym_static] = ACTIONS(3930), - [anon_sym_register] = ACTIONS(3930), - [anon_sym_inline] = ACTIONS(3930), - [anon_sym___inline] = ACTIONS(3930), - [anon_sym___inline__] = ACTIONS(3930), - [anon_sym___forceinline] = ACTIONS(3930), - [anon_sym_thread_local] = ACTIONS(3930), - [anon_sym___thread] = ACTIONS(3930), - [anon_sym_const] = ACTIONS(3930), - [anon_sym_constexpr] = ACTIONS(3930), - [anon_sym_volatile] = ACTIONS(3930), - [anon_sym_restrict] = ACTIONS(3930), - [anon_sym___restrict__] = ACTIONS(3930), - [anon_sym__Atomic] = ACTIONS(3930), - [anon_sym__Noreturn] = ACTIONS(3930), - [anon_sym_noreturn] = ACTIONS(3930), - [anon_sym__Nonnull] = ACTIONS(3930), - [anon_sym_mutable] = ACTIONS(3930), - [anon_sym_constinit] = ACTIONS(3930), - [anon_sym_consteval] = ACTIONS(3930), - [anon_sym_alignas] = ACTIONS(3930), - [anon_sym__Alignas] = ACTIONS(3930), - [sym_primitive_type] = ACTIONS(3930), - [anon_sym_enum] = ACTIONS(3930), - [anon_sym_class] = ACTIONS(3930), - [anon_sym_struct] = ACTIONS(3930), - [anon_sym_union] = ACTIONS(3930), - [anon_sym_typename] = ACTIONS(3930), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3930), - [anon_sym_decltype] = ACTIONS(3930), - [anon_sym_explicit] = ACTIONS(3930), - [anon_sym_private] = ACTIONS(3930), - [anon_sym_template] = ACTIONS(3930), - [anon_sym_operator] = ACTIONS(3930), - [anon_sym_friend] = ACTIONS(3930), - [anon_sym_public] = ACTIONS(3930), - [anon_sym_protected] = ACTIONS(3930), - [anon_sym_static_assert] = ACTIONS(3930), - [anon_sym_LBRACK_COLON] = ACTIONS(3932), - }, - [STATE(3330)] = { - [sym_identifier] = ACTIONS(3934), - [aux_sym_preproc_def_token1] = ACTIONS(3934), - [aux_sym_preproc_if_token1] = ACTIONS(3934), - [aux_sym_preproc_if_token2] = ACTIONS(3934), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3934), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3934), - [sym_preproc_directive] = ACTIONS(3934), - [anon_sym_LPAREN2] = ACTIONS(3936), - [anon_sym_TILDE] = ACTIONS(3936), - [anon_sym_STAR] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3936), - [anon_sym_AMP] = ACTIONS(3934), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym___extension__] = ACTIONS(3934), - [anon_sym_typedef] = ACTIONS(3934), - [anon_sym_virtual] = ACTIONS(3934), - [anon_sym_extern] = ACTIONS(3934), - [anon_sym___attribute__] = ACTIONS(3934), - [anon_sym___attribute] = ACTIONS(3934), - [anon_sym_using] = ACTIONS(3934), - [anon_sym_COLON_COLON] = ACTIONS(3936), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3936), - [anon_sym___declspec] = ACTIONS(3934), - [anon_sym___based] = ACTIONS(3934), - [anon_sym_signed] = ACTIONS(3934), - [anon_sym_unsigned] = ACTIONS(3934), - [anon_sym_long] = ACTIONS(3934), - [anon_sym_short] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(3934), - [anon_sym_static] = ACTIONS(3934), - [anon_sym_register] = ACTIONS(3934), - [anon_sym_inline] = ACTIONS(3934), - [anon_sym___inline] = ACTIONS(3934), - [anon_sym___inline__] = ACTIONS(3934), - [anon_sym___forceinline] = ACTIONS(3934), - [anon_sym_thread_local] = ACTIONS(3934), - [anon_sym___thread] = ACTIONS(3934), - [anon_sym_const] = ACTIONS(3934), - [anon_sym_constexpr] = ACTIONS(3934), - [anon_sym_volatile] = ACTIONS(3934), - [anon_sym_restrict] = ACTIONS(3934), - [anon_sym___restrict__] = ACTIONS(3934), - [anon_sym__Atomic] = ACTIONS(3934), - [anon_sym__Noreturn] = ACTIONS(3934), - [anon_sym_noreturn] = ACTIONS(3934), - [anon_sym__Nonnull] = ACTIONS(3934), - [anon_sym_mutable] = ACTIONS(3934), - [anon_sym_constinit] = ACTIONS(3934), - [anon_sym_consteval] = ACTIONS(3934), - [anon_sym_alignas] = ACTIONS(3934), - [anon_sym__Alignas] = ACTIONS(3934), - [sym_primitive_type] = ACTIONS(3934), - [anon_sym_enum] = ACTIONS(3934), - [anon_sym_class] = ACTIONS(3934), - [anon_sym_struct] = ACTIONS(3934), - [anon_sym_union] = ACTIONS(3934), - [anon_sym_typename] = ACTIONS(3934), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3934), - [anon_sym_decltype] = ACTIONS(3934), - [anon_sym_explicit] = ACTIONS(3934), - [anon_sym_private] = ACTIONS(3934), - [anon_sym_template] = ACTIONS(3934), - [anon_sym_operator] = ACTIONS(3934), - [anon_sym_friend] = ACTIONS(3934), - [anon_sym_public] = ACTIONS(3934), - [anon_sym_protected] = ACTIONS(3934), - [anon_sym_static_assert] = ACTIONS(3934), - [anon_sym_LBRACK_COLON] = ACTIONS(3936), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_explicit] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_friend] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_static_assert] = ACTIONS(4164), + [anon_sym_LBRACK_COLON] = ACTIONS(4166), }, - [STATE(3331)] = { - [sym_identifier] = ACTIONS(3884), - [aux_sym_preproc_def_token1] = ACTIONS(3884), - [aux_sym_preproc_if_token1] = ACTIONS(3884), - [aux_sym_preproc_if_token2] = ACTIONS(3884), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3884), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3884), - [sym_preproc_directive] = ACTIONS(3884), - [anon_sym_LPAREN2] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_STAR] = ACTIONS(3886), - [anon_sym_AMP_AMP] = ACTIONS(3886), - [anon_sym_AMP] = ACTIONS(3884), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym___extension__] = ACTIONS(3884), - [anon_sym_typedef] = ACTIONS(3884), - [anon_sym_virtual] = ACTIONS(3884), - [anon_sym_extern] = ACTIONS(3884), - [anon_sym___attribute__] = ACTIONS(3884), - [anon_sym___attribute] = ACTIONS(3884), - [anon_sym_using] = 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_signed] = ACTIONS(3884), - [anon_sym_unsigned] = ACTIONS(3884), - [anon_sym_long] = ACTIONS(3884), - [anon_sym_short] = ACTIONS(3884), - [anon_sym_LBRACK] = ACTIONS(3884), - [anon_sym_static] = ACTIONS(3884), - [anon_sym_register] = ACTIONS(3884), - [anon_sym_inline] = ACTIONS(3884), - [anon_sym___inline] = ACTIONS(3884), - [anon_sym___inline__] = ACTIONS(3884), - [anon_sym___forceinline] = ACTIONS(3884), - [anon_sym_thread_local] = ACTIONS(3884), - [anon_sym___thread] = ACTIONS(3884), - [anon_sym_const] = ACTIONS(3884), - [anon_sym_constexpr] = ACTIONS(3884), - [anon_sym_volatile] = ACTIONS(3884), - [anon_sym_restrict] = ACTIONS(3884), - [anon_sym___restrict__] = ACTIONS(3884), - [anon_sym__Atomic] = ACTIONS(3884), - [anon_sym__Noreturn] = ACTIONS(3884), - [anon_sym_noreturn] = ACTIONS(3884), - [anon_sym__Nonnull] = ACTIONS(3884), - [anon_sym_mutable] = ACTIONS(3884), - [anon_sym_constinit] = ACTIONS(3884), - [anon_sym_consteval] = ACTIONS(3884), - [anon_sym_alignas] = ACTIONS(3884), - [anon_sym__Alignas] = ACTIONS(3884), - [sym_primitive_type] = ACTIONS(3884), - [anon_sym_enum] = ACTIONS(3884), - [anon_sym_class] = ACTIONS(3884), - [anon_sym_struct] = ACTIONS(3884), - [anon_sym_union] = ACTIONS(3884), - [anon_sym_typename] = ACTIONS(3884), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3884), - [anon_sym_decltype] = ACTIONS(3884), - [anon_sym_explicit] = ACTIONS(3884), - [anon_sym_private] = ACTIONS(3884), - [anon_sym_template] = ACTIONS(3884), - [anon_sym_operator] = ACTIONS(3884), - [anon_sym_friend] = ACTIONS(3884), - [anon_sym_public] = ACTIONS(3884), - [anon_sym_protected] = ACTIONS(3884), - [anon_sym_static_assert] = ACTIONS(3884), - [anon_sym_LBRACK_COLON] = ACTIONS(3886), + [STATE(2871)] = { + [sym_identifier] = ACTIONS(3962), + [aux_sym_preproc_def_token1] = ACTIONS(3962), + [aux_sym_preproc_if_token1] = ACTIONS(3962), + [aux_sym_preproc_if_token2] = ACTIONS(3962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3962), + [aux_sym_preproc_else_token1] = ACTIONS(3962), + [aux_sym_preproc_elif_token1] = ACTIONS(3962), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3962), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3962), + [sym_preproc_directive] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3964), + [anon_sym_TILDE] = ACTIONS(3964), + [anon_sym_STAR] = ACTIONS(3964), + [anon_sym_AMP_AMP] = ACTIONS(3964), + [anon_sym_AMP] = ACTIONS(3962), + [anon_sym_SEMI] = ACTIONS(3964), + [anon_sym___extension__] = ACTIONS(3962), + [anon_sym_typedef] = ACTIONS(3962), + [anon_sym_virtual] = ACTIONS(3962), + [anon_sym_extern] = ACTIONS(3962), + [anon_sym___attribute__] = ACTIONS(3962), + [anon_sym___attribute] = ACTIONS(3962), + [anon_sym_using] = ACTIONS(3962), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3964), + [anon_sym___declspec] = ACTIONS(3962), + [anon_sym___based] = ACTIONS(3962), + [anon_sym_signed] = ACTIONS(3962), + [anon_sym_unsigned] = ACTIONS(3962), + [anon_sym_long] = ACTIONS(3962), + [anon_sym_short] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3962), + [anon_sym_static] = ACTIONS(3962), + [anon_sym_register] = ACTIONS(3962), + [anon_sym_inline] = ACTIONS(3962), + [anon_sym___inline] = ACTIONS(3962), + [anon_sym___inline__] = ACTIONS(3962), + [anon_sym___forceinline] = ACTIONS(3962), + [anon_sym_thread_local] = ACTIONS(3962), + [anon_sym___thread] = ACTIONS(3962), + [anon_sym_const] = ACTIONS(3962), + [anon_sym_constexpr] = ACTIONS(3962), + [anon_sym_volatile] = ACTIONS(3962), + [anon_sym_restrict] = ACTIONS(3962), + [anon_sym___restrict__] = ACTIONS(3962), + [anon_sym__Atomic] = ACTIONS(3962), + [anon_sym__Noreturn] = ACTIONS(3962), + [anon_sym_noreturn] = ACTIONS(3962), + [anon_sym__Nonnull] = ACTIONS(3962), + [anon_sym_mutable] = ACTIONS(3962), + [anon_sym_constinit] = ACTIONS(3962), + [anon_sym_consteval] = ACTIONS(3962), + [anon_sym_alignas] = ACTIONS(3962), + [anon_sym__Alignas] = ACTIONS(3962), + [sym_primitive_type] = ACTIONS(3962), + [anon_sym_enum] = ACTIONS(3962), + [anon_sym_class] = ACTIONS(3962), + [anon_sym_struct] = ACTIONS(3962), + [anon_sym_union] = ACTIONS(3962), + [anon_sym_typename] = ACTIONS(3962), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3962), + [anon_sym_decltype] = ACTIONS(3962), + [anon_sym_explicit] = ACTIONS(3962), + [anon_sym_private] = ACTIONS(3962), + [anon_sym_template] = ACTIONS(3962), + [anon_sym_operator] = ACTIONS(3962), + [anon_sym_friend] = ACTIONS(3962), + [anon_sym_public] = ACTIONS(3962), + [anon_sym_protected] = ACTIONS(3962), + [anon_sym_static_assert] = ACTIONS(3962), + [anon_sym_LBRACK_COLON] = ACTIONS(3964), }, - [STATE(3332)] = { - [sym_identifier] = ACTIONS(3884), - [aux_sym_preproc_def_token1] = ACTIONS(3884), - [aux_sym_preproc_if_token1] = ACTIONS(3884), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3884), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3884), - [sym_preproc_directive] = ACTIONS(3884), - [anon_sym_LPAREN2] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_STAR] = ACTIONS(3886), - [anon_sym_AMP_AMP] = ACTIONS(3886), - [anon_sym_AMP] = ACTIONS(3884), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym___extension__] = ACTIONS(3884), - [anon_sym_typedef] = ACTIONS(3884), - [anon_sym_virtual] = ACTIONS(3884), - [anon_sym_extern] = ACTIONS(3884), - [anon_sym___attribute__] = ACTIONS(3884), - [anon_sym___attribute] = ACTIONS(3884), - [anon_sym_using] = 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_RBRACE] = ACTIONS(3886), - [anon_sym_signed] = ACTIONS(3884), - [anon_sym_unsigned] = ACTIONS(3884), - [anon_sym_long] = ACTIONS(3884), - [anon_sym_short] = ACTIONS(3884), - [anon_sym_LBRACK] = ACTIONS(3884), - [anon_sym_static] = ACTIONS(3884), - [anon_sym_register] = ACTIONS(3884), - [anon_sym_inline] = ACTIONS(3884), - [anon_sym___inline] = ACTIONS(3884), - [anon_sym___inline__] = ACTIONS(3884), - [anon_sym___forceinline] = ACTIONS(3884), - [anon_sym_thread_local] = ACTIONS(3884), - [anon_sym___thread] = ACTIONS(3884), - [anon_sym_const] = ACTIONS(3884), - [anon_sym_constexpr] = ACTIONS(3884), - [anon_sym_volatile] = ACTIONS(3884), - [anon_sym_restrict] = ACTIONS(3884), - [anon_sym___restrict__] = ACTIONS(3884), - [anon_sym__Atomic] = ACTIONS(3884), - [anon_sym__Noreturn] = ACTIONS(3884), - [anon_sym_noreturn] = ACTIONS(3884), - [anon_sym__Nonnull] = ACTIONS(3884), - [anon_sym_mutable] = ACTIONS(3884), - [anon_sym_constinit] = ACTIONS(3884), - [anon_sym_consteval] = ACTIONS(3884), - [anon_sym_alignas] = ACTIONS(3884), - [anon_sym__Alignas] = ACTIONS(3884), - [sym_primitive_type] = ACTIONS(3884), - [anon_sym_enum] = ACTIONS(3884), - [anon_sym_class] = ACTIONS(3884), - [anon_sym_struct] = ACTIONS(3884), - [anon_sym_union] = ACTIONS(3884), - [anon_sym_typename] = ACTIONS(3884), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3884), - [anon_sym_decltype] = ACTIONS(3884), - [anon_sym_explicit] = ACTIONS(3884), - [anon_sym_private] = ACTIONS(3884), - [anon_sym_template] = ACTIONS(3884), - [anon_sym_operator] = ACTIONS(3884), - [anon_sym_friend] = ACTIONS(3884), - [anon_sym_public] = ACTIONS(3884), - [anon_sym_protected] = ACTIONS(3884), - [anon_sym_static_assert] = ACTIONS(3884), - [anon_sym_LBRACK_COLON] = ACTIONS(3886), + [STATE(2872)] = { + [sym_identifier] = ACTIONS(4270), + [aux_sym_preproc_def_token1] = ACTIONS(4270), + [aux_sym_preproc_if_token1] = ACTIONS(4270), + [aux_sym_preproc_if_token2] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), + [aux_sym_preproc_else_token1] = ACTIONS(4270), + [aux_sym_preproc_elif_token1] = ACTIONS(4270), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4270), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4270), + [sym_preproc_directive] = ACTIONS(4270), + [anon_sym_LPAREN2] = ACTIONS(4272), + [anon_sym_TILDE] = ACTIONS(4272), + [anon_sym_STAR] = ACTIONS(4272), + [anon_sym_AMP_AMP] = ACTIONS(4272), + [anon_sym_AMP] = ACTIONS(4270), + [anon_sym_SEMI] = ACTIONS(4272), + [anon_sym___extension__] = ACTIONS(4270), + [anon_sym_typedef] = ACTIONS(4270), + [anon_sym_virtual] = ACTIONS(4270), + [anon_sym_extern] = ACTIONS(4270), + [anon_sym___attribute__] = ACTIONS(4270), + [anon_sym___attribute] = ACTIONS(4270), + [anon_sym_using] = ACTIONS(4270), + [anon_sym_COLON_COLON] = ACTIONS(4272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), + [anon_sym___declspec] = ACTIONS(4270), + [anon_sym___based] = ACTIONS(4270), + [anon_sym_signed] = ACTIONS(4270), + [anon_sym_unsigned] = ACTIONS(4270), + [anon_sym_long] = ACTIONS(4270), + [anon_sym_short] = ACTIONS(4270), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_static] = ACTIONS(4270), + [anon_sym_register] = ACTIONS(4270), + [anon_sym_inline] = ACTIONS(4270), + [anon_sym___inline] = ACTIONS(4270), + [anon_sym___inline__] = ACTIONS(4270), + [anon_sym___forceinline] = ACTIONS(4270), + [anon_sym_thread_local] = ACTIONS(4270), + [anon_sym___thread] = ACTIONS(4270), + [anon_sym_const] = ACTIONS(4270), + [anon_sym_constexpr] = ACTIONS(4270), + [anon_sym_volatile] = ACTIONS(4270), + [anon_sym_restrict] = ACTIONS(4270), + [anon_sym___restrict__] = ACTIONS(4270), + [anon_sym__Atomic] = ACTIONS(4270), + [anon_sym__Noreturn] = ACTIONS(4270), + [anon_sym_noreturn] = ACTIONS(4270), + [anon_sym__Nonnull] = ACTIONS(4270), + [anon_sym_mutable] = ACTIONS(4270), + [anon_sym_constinit] = ACTIONS(4270), + [anon_sym_consteval] = ACTIONS(4270), + [anon_sym_alignas] = ACTIONS(4270), + [anon_sym__Alignas] = ACTIONS(4270), + [sym_primitive_type] = ACTIONS(4270), + [anon_sym_enum] = ACTIONS(4270), + [anon_sym_class] = ACTIONS(4270), + [anon_sym_struct] = ACTIONS(4270), + [anon_sym_union] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4270), + [anon_sym_decltype] = ACTIONS(4270), + [anon_sym_explicit] = ACTIONS(4270), + [anon_sym_private] = ACTIONS(4270), + [anon_sym_template] = ACTIONS(4270), + [anon_sym_operator] = ACTIONS(4270), + [anon_sym_friend] = ACTIONS(4270), + [anon_sym_public] = ACTIONS(4270), + [anon_sym_protected] = ACTIONS(4270), + [anon_sym_static_assert] = ACTIONS(4270), + [anon_sym_LBRACK_COLON] = ACTIONS(4272), }, - [STATE(3333)] = { - [sym_identifier] = ACTIONS(6790), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6792), - [anon_sym_COMMA] = ACTIONS(6792), - [anon_sym_RPAREN] = ACTIONS(6792), - [aux_sym_preproc_if_token2] = ACTIONS(6792), - [aux_sym_preproc_else_token1] = ACTIONS(6792), - [aux_sym_preproc_elif_token1] = ACTIONS(6790), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6792), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6792), - [anon_sym_LPAREN2] = ACTIONS(6792), - [anon_sym_DASH] = ACTIONS(6790), - [anon_sym_PLUS] = ACTIONS(6790), - [anon_sym_STAR] = ACTIONS(6792), - [anon_sym_SLASH] = ACTIONS(6790), - [anon_sym_PERCENT] = ACTIONS(6792), - [anon_sym_PIPE_PIPE] = ACTIONS(6792), - [anon_sym_AMP_AMP] = ACTIONS(6792), - [anon_sym_PIPE] = ACTIONS(6790), - [anon_sym_CARET] = ACTIONS(6792), - [anon_sym_AMP] = ACTIONS(6790), - [anon_sym_EQ_EQ] = ACTIONS(6792), - [anon_sym_BANG_EQ] = ACTIONS(6792), - [anon_sym_GT] = ACTIONS(6790), - [anon_sym_GT_EQ] = ACTIONS(6792), - [anon_sym_LT_EQ] = ACTIONS(6790), - [anon_sym_LT] = ACTIONS(6790), - [anon_sym_LT_LT] = ACTIONS(6792), - [anon_sym_GT_GT] = ACTIONS(6792), - [anon_sym_SEMI] = ACTIONS(6792), - [anon_sym___extension__] = ACTIONS(6790), - [anon_sym___attribute__] = ACTIONS(6790), - [anon_sym___attribute] = ACTIONS(6790), - [anon_sym_COLON] = ACTIONS(6790), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6792), - [anon_sym_LBRACE] = ACTIONS(6792), - [anon_sym_RBRACE] = ACTIONS(6792), - [anon_sym_LBRACK] = ACTIONS(6792), - [anon_sym_const] = ACTIONS(6790), - [anon_sym_constexpr] = ACTIONS(6790), - [anon_sym_volatile] = ACTIONS(6790), - [anon_sym_restrict] = ACTIONS(6790), - [anon_sym___restrict__] = ACTIONS(6790), - [anon_sym__Atomic] = ACTIONS(6790), - [anon_sym__Noreturn] = ACTIONS(6790), - [anon_sym_noreturn] = ACTIONS(6790), - [anon_sym__Nonnull] = ACTIONS(6790), - [anon_sym_mutable] = ACTIONS(6790), - [anon_sym_constinit] = ACTIONS(6790), - [anon_sym_consteval] = ACTIONS(6790), - [anon_sym_alignas] = ACTIONS(6790), - [anon_sym__Alignas] = ACTIONS(6790), - [anon_sym_QMARK] = ACTIONS(6792), - [anon_sym_LT_EQ_GT] = ACTIONS(6792), - [anon_sym_or] = ACTIONS(6790), - [anon_sym_and] = ACTIONS(6790), - [anon_sym_bitor] = ACTIONS(6790), - [anon_sym_xor] = ACTIONS(6790), - [anon_sym_bitand] = ACTIONS(6790), - [anon_sym_not_eq] = ACTIONS(6790), - [anon_sym_DASH_DASH] = ACTIONS(6792), - [anon_sym_PLUS_PLUS] = ACTIONS(6792), - [anon_sym_DOT] = ACTIONS(6790), - [anon_sym_DOT_STAR] = ACTIONS(6792), - [anon_sym_DASH_GT] = ACTIONS(6792), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6790), - [anon_sym_override] = ACTIONS(6790), - [anon_sym_requires] = ACTIONS(6790), - [anon_sym_COLON_RBRACK] = ACTIONS(6792), + [STATE(2873)] = { + [sym_identifier] = ACTIONS(3984), + [aux_sym_preproc_def_token1] = ACTIONS(3984), + [aux_sym_preproc_if_token1] = ACTIONS(3984), + [aux_sym_preproc_if_token2] = ACTIONS(3984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3984), + [aux_sym_preproc_else_token1] = ACTIONS(3984), + [aux_sym_preproc_elif_token1] = ACTIONS(3984), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3984), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3984), + [sym_preproc_directive] = ACTIONS(3984), + [anon_sym_LPAREN2] = ACTIONS(3986), + [anon_sym_TILDE] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3986), + [anon_sym_AMP_AMP] = ACTIONS(3986), + [anon_sym_AMP] = ACTIONS(3984), + [anon_sym_SEMI] = ACTIONS(3986), + [anon_sym___extension__] = ACTIONS(3984), + [anon_sym_typedef] = ACTIONS(3984), + [anon_sym_virtual] = ACTIONS(3984), + [anon_sym_extern] = ACTIONS(3984), + [anon_sym___attribute__] = ACTIONS(3984), + [anon_sym___attribute] = ACTIONS(3984), + [anon_sym_using] = ACTIONS(3984), + [anon_sym_COLON_COLON] = ACTIONS(3986), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3986), + [anon_sym___declspec] = ACTIONS(3984), + [anon_sym___based] = ACTIONS(3984), + [anon_sym_signed] = ACTIONS(3984), + [anon_sym_unsigned] = ACTIONS(3984), + [anon_sym_long] = ACTIONS(3984), + [anon_sym_short] = ACTIONS(3984), + [anon_sym_LBRACK] = ACTIONS(3984), + [anon_sym_static] = ACTIONS(3984), + [anon_sym_register] = ACTIONS(3984), + [anon_sym_inline] = ACTIONS(3984), + [anon_sym___inline] = ACTIONS(3984), + [anon_sym___inline__] = ACTIONS(3984), + [anon_sym___forceinline] = ACTIONS(3984), + [anon_sym_thread_local] = ACTIONS(3984), + [anon_sym___thread] = ACTIONS(3984), + [anon_sym_const] = ACTIONS(3984), + [anon_sym_constexpr] = ACTIONS(3984), + [anon_sym_volatile] = ACTIONS(3984), + [anon_sym_restrict] = ACTIONS(3984), + [anon_sym___restrict__] = ACTIONS(3984), + [anon_sym__Atomic] = ACTIONS(3984), + [anon_sym__Noreturn] = ACTIONS(3984), + [anon_sym_noreturn] = ACTIONS(3984), + [anon_sym__Nonnull] = ACTIONS(3984), + [anon_sym_mutable] = ACTIONS(3984), + [anon_sym_constinit] = ACTIONS(3984), + [anon_sym_consteval] = ACTIONS(3984), + [anon_sym_alignas] = ACTIONS(3984), + [anon_sym__Alignas] = ACTIONS(3984), + [sym_primitive_type] = ACTIONS(3984), + [anon_sym_enum] = ACTIONS(3984), + [anon_sym_class] = ACTIONS(3984), + [anon_sym_struct] = ACTIONS(3984), + [anon_sym_union] = ACTIONS(3984), + [anon_sym_typename] = ACTIONS(3984), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3984), + [anon_sym_decltype] = ACTIONS(3984), + [anon_sym_explicit] = ACTIONS(3984), + [anon_sym_private] = ACTIONS(3984), + [anon_sym_template] = ACTIONS(3984), + [anon_sym_operator] = ACTIONS(3984), + [anon_sym_friend] = ACTIONS(3984), + [anon_sym_public] = ACTIONS(3984), + [anon_sym_protected] = ACTIONS(3984), + [anon_sym_static_assert] = ACTIONS(3984), + [anon_sym_LBRACK_COLON] = ACTIONS(3986), }, - [STATE(3334)] = { - [sym_identifier] = ACTIONS(3970), - [aux_sym_preproc_def_token1] = ACTIONS(3970), - [aux_sym_preproc_if_token1] = ACTIONS(3970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3970), - [sym_preproc_directive] = ACTIONS(3970), - [anon_sym_LPAREN2] = ACTIONS(3972), - [anon_sym_TILDE] = ACTIONS(3972), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_AMP_AMP] = ACTIONS(3972), - [anon_sym_AMP] = ACTIONS(3970), - [anon_sym_SEMI] = ACTIONS(3972), - [anon_sym___extension__] = ACTIONS(3970), - [anon_sym_typedef] = ACTIONS(3970), - [anon_sym_virtual] = ACTIONS(3970), - [anon_sym_extern] = ACTIONS(3970), - [anon_sym___attribute__] = ACTIONS(3970), - [anon_sym___attribute] = ACTIONS(3970), - [anon_sym_using] = ACTIONS(3970), - [anon_sym_COLON_COLON] = ACTIONS(3972), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3972), - [anon_sym___declspec] = ACTIONS(3970), - [anon_sym___based] = ACTIONS(3970), - [anon_sym_RBRACE] = ACTIONS(3972), - [anon_sym_signed] = ACTIONS(3970), - [anon_sym_unsigned] = ACTIONS(3970), - [anon_sym_long] = ACTIONS(3970), - [anon_sym_short] = ACTIONS(3970), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_static] = ACTIONS(3970), - [anon_sym_register] = ACTIONS(3970), - [anon_sym_inline] = ACTIONS(3970), - [anon_sym___inline] = ACTIONS(3970), - [anon_sym___inline__] = ACTIONS(3970), - [anon_sym___forceinline] = ACTIONS(3970), - [anon_sym_thread_local] = ACTIONS(3970), - [anon_sym___thread] = ACTIONS(3970), - [anon_sym_const] = ACTIONS(3970), - [anon_sym_constexpr] = ACTIONS(3970), - [anon_sym_volatile] = ACTIONS(3970), - [anon_sym_restrict] = ACTIONS(3970), - [anon_sym___restrict__] = ACTIONS(3970), - [anon_sym__Atomic] = ACTIONS(3970), - [anon_sym__Noreturn] = ACTIONS(3970), - [anon_sym_noreturn] = ACTIONS(3970), - [anon_sym__Nonnull] = ACTIONS(3970), - [anon_sym_mutable] = ACTIONS(3970), - [anon_sym_constinit] = ACTIONS(3970), - [anon_sym_consteval] = ACTIONS(3970), - [anon_sym_alignas] = ACTIONS(3970), - [anon_sym__Alignas] = ACTIONS(3970), - [sym_primitive_type] = ACTIONS(3970), - [anon_sym_enum] = ACTIONS(3970), - [anon_sym_class] = ACTIONS(3970), - [anon_sym_struct] = ACTIONS(3970), - [anon_sym_union] = ACTIONS(3970), - [anon_sym_typename] = ACTIONS(3970), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3970), - [anon_sym_decltype] = ACTIONS(3970), - [anon_sym_explicit] = ACTIONS(3970), - [anon_sym_private] = ACTIONS(3970), - [anon_sym_template] = ACTIONS(3970), - [anon_sym_operator] = ACTIONS(3970), - [anon_sym_friend] = ACTIONS(3970), - [anon_sym_public] = ACTIONS(3970), - [anon_sym_protected] = ACTIONS(3970), - [anon_sym_static_assert] = ACTIONS(3970), - [anon_sym_LBRACK_COLON] = ACTIONS(3972), + [STATE(2874)] = { + [sym_identifier] = ACTIONS(4080), + [aux_sym_preproc_def_token1] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(4080), + [aux_sym_preproc_if_token2] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), + [aux_sym_preproc_else_token1] = ACTIONS(4080), + [aux_sym_preproc_elif_token1] = ACTIONS(4080), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4080), + [sym_preproc_directive] = ACTIONS(4080), + [anon_sym_LPAREN2] = ACTIONS(4082), + [anon_sym_TILDE] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [anon_sym_AMP_AMP] = ACTIONS(4082), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_SEMI] = ACTIONS(4082), + [anon_sym___extension__] = ACTIONS(4080), + [anon_sym_typedef] = ACTIONS(4080), + [anon_sym_virtual] = ACTIONS(4080), + [anon_sym_extern] = ACTIONS(4080), + [anon_sym___attribute__] = ACTIONS(4080), + [anon_sym___attribute] = ACTIONS(4080), + [anon_sym_using] = ACTIONS(4080), + [anon_sym_COLON_COLON] = ACTIONS(4082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), + [anon_sym___declspec] = ACTIONS(4080), + [anon_sym___based] = ACTIONS(4080), + [anon_sym_signed] = ACTIONS(4080), + [anon_sym_unsigned] = ACTIONS(4080), + [anon_sym_long] = ACTIONS(4080), + [anon_sym_short] = ACTIONS(4080), + [anon_sym_LBRACK] = ACTIONS(4080), + [anon_sym_static] = ACTIONS(4080), + [anon_sym_register] = ACTIONS(4080), + [anon_sym_inline] = ACTIONS(4080), + [anon_sym___inline] = ACTIONS(4080), + [anon_sym___inline__] = ACTIONS(4080), + [anon_sym___forceinline] = ACTIONS(4080), + [anon_sym_thread_local] = ACTIONS(4080), + [anon_sym___thread] = ACTIONS(4080), + [anon_sym_const] = ACTIONS(4080), + [anon_sym_constexpr] = ACTIONS(4080), + [anon_sym_volatile] = ACTIONS(4080), + [anon_sym_restrict] = ACTIONS(4080), + [anon_sym___restrict__] = ACTIONS(4080), + [anon_sym__Atomic] = ACTIONS(4080), + [anon_sym__Noreturn] = ACTIONS(4080), + [anon_sym_noreturn] = ACTIONS(4080), + [anon_sym__Nonnull] = ACTIONS(4080), + [anon_sym_mutable] = ACTIONS(4080), + [anon_sym_constinit] = ACTIONS(4080), + [anon_sym_consteval] = ACTIONS(4080), + [anon_sym_alignas] = ACTIONS(4080), + [anon_sym__Alignas] = ACTIONS(4080), + [sym_primitive_type] = ACTIONS(4080), + [anon_sym_enum] = ACTIONS(4080), + [anon_sym_class] = ACTIONS(4080), + [anon_sym_struct] = ACTIONS(4080), + [anon_sym_union] = ACTIONS(4080), + [anon_sym_typename] = ACTIONS(4080), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4080), + [anon_sym_decltype] = ACTIONS(4080), + [anon_sym_explicit] = ACTIONS(4080), + [anon_sym_private] = ACTIONS(4080), + [anon_sym_template] = ACTIONS(4080), + [anon_sym_operator] = ACTIONS(4080), + [anon_sym_friend] = ACTIONS(4080), + [anon_sym_public] = ACTIONS(4080), + [anon_sym_protected] = ACTIONS(4080), + [anon_sym_static_assert] = ACTIONS(4080), + [anon_sym_LBRACK_COLON] = ACTIONS(4082), }, - [STATE(3335)] = { - [sym_identifier] = ACTIONS(8450), - [aux_sym_preproc_def_token1] = ACTIONS(8450), - [aux_sym_preproc_if_token1] = ACTIONS(8450), - [aux_sym_preproc_if_token2] = ACTIONS(8450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8450), - [sym_preproc_directive] = ACTIONS(8450), - [anon_sym_LPAREN2] = ACTIONS(8452), - [anon_sym_TILDE] = ACTIONS(8452), - [anon_sym_STAR] = ACTIONS(8452), - [anon_sym_AMP_AMP] = ACTIONS(8452), - [anon_sym_AMP] = ACTIONS(8450), - [anon_sym_SEMI] = ACTIONS(8452), - [anon_sym___extension__] = ACTIONS(8450), - [anon_sym_typedef] = ACTIONS(8450), - [anon_sym_virtual] = ACTIONS(8450), - [anon_sym_extern] = ACTIONS(8450), - [anon_sym___attribute__] = ACTIONS(8450), - [anon_sym___attribute] = ACTIONS(8450), - [anon_sym_using] = ACTIONS(8450), - [anon_sym_COLON_COLON] = ACTIONS(8452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8452), - [anon_sym___declspec] = ACTIONS(8450), - [anon_sym___based] = ACTIONS(8450), - [anon_sym_signed] = ACTIONS(8450), - [anon_sym_unsigned] = ACTIONS(8450), - [anon_sym_long] = ACTIONS(8450), - [anon_sym_short] = ACTIONS(8450), - [anon_sym_LBRACK] = ACTIONS(8450), - [anon_sym_static] = ACTIONS(8450), - [anon_sym_register] = ACTIONS(8450), - [anon_sym_inline] = ACTIONS(8450), - [anon_sym___inline] = ACTIONS(8450), - [anon_sym___inline__] = ACTIONS(8450), - [anon_sym___forceinline] = ACTIONS(8450), - [anon_sym_thread_local] = ACTIONS(8450), - [anon_sym___thread] = ACTIONS(8450), - [anon_sym_const] = ACTIONS(8450), - [anon_sym_constexpr] = ACTIONS(8450), - [anon_sym_volatile] = ACTIONS(8450), - [anon_sym_restrict] = ACTIONS(8450), - [anon_sym___restrict__] = ACTIONS(8450), - [anon_sym__Atomic] = ACTIONS(8450), - [anon_sym__Noreturn] = ACTIONS(8450), - [anon_sym_noreturn] = ACTIONS(8450), - [anon_sym__Nonnull] = ACTIONS(8450), - [anon_sym_mutable] = ACTIONS(8450), - [anon_sym_constinit] = ACTIONS(8450), - [anon_sym_consteval] = ACTIONS(8450), - [anon_sym_alignas] = ACTIONS(8450), - [anon_sym__Alignas] = ACTIONS(8450), - [sym_primitive_type] = ACTIONS(8450), - [anon_sym_enum] = ACTIONS(8450), - [anon_sym_class] = ACTIONS(8450), - [anon_sym_struct] = ACTIONS(8450), - [anon_sym_union] = ACTIONS(8450), - [anon_sym_typename] = ACTIONS(8450), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8450), - [anon_sym_decltype] = ACTIONS(8450), - [anon_sym_explicit] = ACTIONS(8450), - [anon_sym_private] = ACTIONS(8450), - [anon_sym_template] = ACTIONS(8450), - [anon_sym_operator] = ACTIONS(8450), - [anon_sym_friend] = ACTIONS(8450), - [anon_sym_public] = ACTIONS(8450), - [anon_sym_protected] = ACTIONS(8450), - [anon_sym_static_assert] = ACTIONS(8450), - [anon_sym_LBRACK_COLON] = ACTIONS(8452), + [STATE(2875)] = { + [sym_identifier] = ACTIONS(4020), + [aux_sym_preproc_def_token1] = ACTIONS(4020), + [aux_sym_preproc_if_token1] = ACTIONS(4020), + [aux_sym_preproc_if_token2] = ACTIONS(4020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4020), + [aux_sym_preproc_else_token1] = ACTIONS(4020), + [aux_sym_preproc_elif_token1] = ACTIONS(4020), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4020), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4020), + [sym_preproc_directive] = ACTIONS(4020), + [anon_sym_LPAREN2] = ACTIONS(4022), + [anon_sym_TILDE] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_SEMI] = ACTIONS(4022), + [anon_sym___extension__] = ACTIONS(4020), + [anon_sym_typedef] = ACTIONS(4020), + [anon_sym_virtual] = ACTIONS(4020), + [anon_sym_extern] = ACTIONS(4020), + [anon_sym___attribute__] = ACTIONS(4020), + [anon_sym___attribute] = ACTIONS(4020), + [anon_sym_using] = ACTIONS(4020), + [anon_sym_COLON_COLON] = ACTIONS(4022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4022), + [anon_sym___declspec] = ACTIONS(4020), + [anon_sym___based] = ACTIONS(4020), + [anon_sym_signed] = ACTIONS(4020), + [anon_sym_unsigned] = ACTIONS(4020), + [anon_sym_long] = ACTIONS(4020), + [anon_sym_short] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(4020), + [anon_sym_static] = ACTIONS(4020), + [anon_sym_register] = ACTIONS(4020), + [anon_sym_inline] = ACTIONS(4020), + [anon_sym___inline] = ACTIONS(4020), + [anon_sym___inline__] = ACTIONS(4020), + [anon_sym___forceinline] = ACTIONS(4020), + [anon_sym_thread_local] = ACTIONS(4020), + [anon_sym___thread] = ACTIONS(4020), + [anon_sym_const] = ACTIONS(4020), + [anon_sym_constexpr] = ACTIONS(4020), + [anon_sym_volatile] = ACTIONS(4020), + [anon_sym_restrict] = ACTIONS(4020), + [anon_sym___restrict__] = ACTIONS(4020), + [anon_sym__Atomic] = ACTIONS(4020), + [anon_sym__Noreturn] = ACTIONS(4020), + [anon_sym_noreturn] = ACTIONS(4020), + [anon_sym__Nonnull] = ACTIONS(4020), + [anon_sym_mutable] = ACTIONS(4020), + [anon_sym_constinit] = ACTIONS(4020), + [anon_sym_consteval] = ACTIONS(4020), + [anon_sym_alignas] = ACTIONS(4020), + [anon_sym__Alignas] = ACTIONS(4020), + [sym_primitive_type] = ACTIONS(4020), + [anon_sym_enum] = ACTIONS(4020), + [anon_sym_class] = ACTIONS(4020), + [anon_sym_struct] = ACTIONS(4020), + [anon_sym_union] = ACTIONS(4020), + [anon_sym_typename] = ACTIONS(4020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4020), + [anon_sym_decltype] = ACTIONS(4020), + [anon_sym_explicit] = ACTIONS(4020), + [anon_sym_private] = ACTIONS(4020), + [anon_sym_template] = ACTIONS(4020), + [anon_sym_operator] = ACTIONS(4020), + [anon_sym_friend] = ACTIONS(4020), + [anon_sym_public] = ACTIONS(4020), + [anon_sym_protected] = ACTIONS(4020), + [anon_sym_static_assert] = ACTIONS(4020), + [anon_sym_LBRACK_COLON] = ACTIONS(4022), }, - [STATE(3336)] = { - [sym_identifier] = ACTIONS(8450), - [aux_sym_preproc_def_token1] = ACTIONS(8450), - [aux_sym_preproc_if_token1] = ACTIONS(8450), - [aux_sym_preproc_if_token2] = ACTIONS(8450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8450), - [sym_preproc_directive] = ACTIONS(8450), - [anon_sym_LPAREN2] = ACTIONS(8452), - [anon_sym_TILDE] = ACTIONS(8452), - [anon_sym_STAR] = ACTIONS(8452), - [anon_sym_AMP_AMP] = ACTIONS(8452), - [anon_sym_AMP] = ACTIONS(8450), - [anon_sym_SEMI] = ACTIONS(8452), - [anon_sym___extension__] = ACTIONS(8450), - [anon_sym_typedef] = ACTIONS(8450), - [anon_sym_virtual] = ACTIONS(8450), - [anon_sym_extern] = ACTIONS(8450), - [anon_sym___attribute__] = ACTIONS(8450), - [anon_sym___attribute] = ACTIONS(8450), - [anon_sym_using] = ACTIONS(8450), - [anon_sym_COLON_COLON] = ACTIONS(8452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8452), - [anon_sym___declspec] = ACTIONS(8450), - [anon_sym___based] = ACTIONS(8450), - [anon_sym_signed] = ACTIONS(8450), - [anon_sym_unsigned] = ACTIONS(8450), - [anon_sym_long] = ACTIONS(8450), - [anon_sym_short] = ACTIONS(8450), - [anon_sym_LBRACK] = ACTIONS(8450), - [anon_sym_static] = ACTIONS(8450), - [anon_sym_register] = ACTIONS(8450), - [anon_sym_inline] = ACTIONS(8450), - [anon_sym___inline] = ACTIONS(8450), - [anon_sym___inline__] = ACTIONS(8450), - [anon_sym___forceinline] = ACTIONS(8450), - [anon_sym_thread_local] = ACTIONS(8450), - [anon_sym___thread] = ACTIONS(8450), - [anon_sym_const] = ACTIONS(8450), - [anon_sym_constexpr] = ACTIONS(8450), - [anon_sym_volatile] = ACTIONS(8450), - [anon_sym_restrict] = ACTIONS(8450), - [anon_sym___restrict__] = ACTIONS(8450), - [anon_sym__Atomic] = ACTIONS(8450), - [anon_sym__Noreturn] = ACTIONS(8450), - [anon_sym_noreturn] = ACTIONS(8450), - [anon_sym__Nonnull] = ACTIONS(8450), - [anon_sym_mutable] = ACTIONS(8450), - [anon_sym_constinit] = ACTIONS(8450), - [anon_sym_consteval] = ACTIONS(8450), - [anon_sym_alignas] = ACTIONS(8450), - [anon_sym__Alignas] = ACTIONS(8450), - [sym_primitive_type] = ACTIONS(8450), - [anon_sym_enum] = ACTIONS(8450), - [anon_sym_class] = ACTIONS(8450), - [anon_sym_struct] = ACTIONS(8450), - [anon_sym_union] = ACTIONS(8450), - [anon_sym_typename] = ACTIONS(8450), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8450), - [anon_sym_decltype] = ACTIONS(8450), - [anon_sym_explicit] = ACTIONS(8450), - [anon_sym_private] = ACTIONS(8450), - [anon_sym_template] = ACTIONS(8450), - [anon_sym_operator] = ACTIONS(8450), - [anon_sym_friend] = ACTIONS(8450), - [anon_sym_public] = ACTIONS(8450), - [anon_sym_protected] = ACTIONS(8450), - [anon_sym_static_assert] = ACTIONS(8450), - [anon_sym_LBRACK_COLON] = ACTIONS(8452), + [STATE(2876)] = { + [sym_identifier] = ACTIONS(8766), + [aux_sym_preproc_def_token1] = ACTIONS(8766), + [aux_sym_preproc_if_token1] = ACTIONS(8766), + [aux_sym_preproc_if_token2] = ACTIONS(8766), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8766), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8766), + [aux_sym_preproc_else_token1] = ACTIONS(8766), + [aux_sym_preproc_elif_token1] = ACTIONS(8766), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8766), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8766), + [sym_preproc_directive] = ACTIONS(8766), + [anon_sym_LPAREN2] = ACTIONS(8768), + [anon_sym_TILDE] = ACTIONS(8768), + [anon_sym_STAR] = ACTIONS(8768), + [anon_sym_AMP_AMP] = ACTIONS(8768), + [anon_sym_AMP] = ACTIONS(8766), + [anon_sym_SEMI] = ACTIONS(8768), + [anon_sym___extension__] = ACTIONS(8766), + [anon_sym_typedef] = ACTIONS(8766), + [anon_sym_virtual] = ACTIONS(8766), + [anon_sym_extern] = ACTIONS(8766), + [anon_sym___attribute__] = ACTIONS(8766), + [anon_sym___attribute] = ACTIONS(8766), + [anon_sym_using] = ACTIONS(8766), + [anon_sym_COLON_COLON] = ACTIONS(8768), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8768), + [anon_sym___declspec] = ACTIONS(8766), + [anon_sym___based] = ACTIONS(8766), + [anon_sym_signed] = ACTIONS(8766), + [anon_sym_unsigned] = ACTIONS(8766), + [anon_sym_long] = ACTIONS(8766), + [anon_sym_short] = ACTIONS(8766), + [anon_sym_LBRACK] = ACTIONS(8766), + [anon_sym_static] = ACTIONS(8766), + [anon_sym_register] = ACTIONS(8766), + [anon_sym_inline] = ACTIONS(8766), + [anon_sym___inline] = ACTIONS(8766), + [anon_sym___inline__] = ACTIONS(8766), + [anon_sym___forceinline] = ACTIONS(8766), + [anon_sym_thread_local] = ACTIONS(8766), + [anon_sym___thread] = ACTIONS(8766), + [anon_sym_const] = ACTIONS(8766), + [anon_sym_constexpr] = ACTIONS(8766), + [anon_sym_volatile] = ACTIONS(8766), + [anon_sym_restrict] = ACTIONS(8766), + [anon_sym___restrict__] = ACTIONS(8766), + [anon_sym__Atomic] = ACTIONS(8766), + [anon_sym__Noreturn] = ACTIONS(8766), + [anon_sym_noreturn] = ACTIONS(8766), + [anon_sym__Nonnull] = ACTIONS(8766), + [anon_sym_mutable] = ACTIONS(8766), + [anon_sym_constinit] = ACTIONS(8766), + [anon_sym_consteval] = ACTIONS(8766), + [anon_sym_alignas] = ACTIONS(8766), + [anon_sym__Alignas] = ACTIONS(8766), + [sym_primitive_type] = ACTIONS(8766), + [anon_sym_enum] = ACTIONS(8766), + [anon_sym_class] = ACTIONS(8766), + [anon_sym_struct] = ACTIONS(8766), + [anon_sym_union] = ACTIONS(8766), + [anon_sym_typename] = ACTIONS(8766), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8766), + [anon_sym_decltype] = ACTIONS(8766), + [anon_sym_explicit] = ACTIONS(8766), + [anon_sym_private] = ACTIONS(8766), + [anon_sym_template] = ACTIONS(8766), + [anon_sym_operator] = ACTIONS(8766), + [anon_sym_friend] = ACTIONS(8766), + [anon_sym_public] = ACTIONS(8766), + [anon_sym_protected] = ACTIONS(8766), + [anon_sym_static_assert] = ACTIONS(8766), + [anon_sym_LBRACK_COLON] = ACTIONS(8768), }, - [STATE(3337)] = { - [sym_identifier] = ACTIONS(4144), - [aux_sym_preproc_def_token1] = ACTIONS(4144), - [aux_sym_preproc_if_token1] = ACTIONS(4144), - [aux_sym_preproc_if_token2] = ACTIONS(4144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4144), - [sym_preproc_directive] = ACTIONS(4144), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_TILDE] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_AMP] = ACTIONS(4144), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_typedef] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_using] = ACTIONS(4144), - [anon_sym_COLON_COLON] = ACTIONS(4146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4146), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym_signed] = ACTIONS(4144), - [anon_sym_unsigned] = ACTIONS(4144), - [anon_sym_long] = ACTIONS(4144), - [anon_sym_short] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [sym_primitive_type] = ACTIONS(4144), - [anon_sym_enum] = ACTIONS(4144), - [anon_sym_class] = ACTIONS(4144), - [anon_sym_struct] = ACTIONS(4144), - [anon_sym_union] = ACTIONS(4144), - [anon_sym_typename] = ACTIONS(4144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_explicit] = ACTIONS(4144), - [anon_sym_private] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_friend] = ACTIONS(4144), - [anon_sym_public] = ACTIONS(4144), - [anon_sym_protected] = ACTIONS(4144), - [anon_sym_static_assert] = ACTIONS(4144), - [anon_sym_LBRACK_COLON] = ACTIONS(4146), + [STATE(2877)] = { + [sym_identifier] = ACTIONS(8798), + [aux_sym_preproc_def_token1] = ACTIONS(8798), + [aux_sym_preproc_if_token1] = ACTIONS(8798), + [aux_sym_preproc_if_token2] = ACTIONS(8798), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8798), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8798), + [aux_sym_preproc_else_token1] = ACTIONS(8798), + [aux_sym_preproc_elif_token1] = ACTIONS(8798), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8798), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8798), + [sym_preproc_directive] = ACTIONS(8798), + [anon_sym_LPAREN2] = ACTIONS(8800), + [anon_sym_TILDE] = ACTIONS(8800), + [anon_sym_STAR] = ACTIONS(8800), + [anon_sym_AMP_AMP] = ACTIONS(8800), + [anon_sym_AMP] = ACTIONS(8798), + [anon_sym_SEMI] = ACTIONS(8800), + [anon_sym___extension__] = ACTIONS(8798), + [anon_sym_typedef] = ACTIONS(8798), + [anon_sym_virtual] = ACTIONS(8798), + [anon_sym_extern] = ACTIONS(8798), + [anon_sym___attribute__] = ACTIONS(8798), + [anon_sym___attribute] = ACTIONS(8798), + [anon_sym_using] = ACTIONS(8798), + [anon_sym_COLON_COLON] = ACTIONS(8800), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8800), + [anon_sym___declspec] = ACTIONS(8798), + [anon_sym___based] = ACTIONS(8798), + [anon_sym_signed] = ACTIONS(8798), + [anon_sym_unsigned] = ACTIONS(8798), + [anon_sym_long] = ACTIONS(8798), + [anon_sym_short] = ACTIONS(8798), + [anon_sym_LBRACK] = ACTIONS(8798), + [anon_sym_static] = ACTIONS(8798), + [anon_sym_register] = ACTIONS(8798), + [anon_sym_inline] = ACTIONS(8798), + [anon_sym___inline] = ACTIONS(8798), + [anon_sym___inline__] = ACTIONS(8798), + [anon_sym___forceinline] = ACTIONS(8798), + [anon_sym_thread_local] = ACTIONS(8798), + [anon_sym___thread] = ACTIONS(8798), + [anon_sym_const] = ACTIONS(8798), + [anon_sym_constexpr] = ACTIONS(8798), + [anon_sym_volatile] = ACTIONS(8798), + [anon_sym_restrict] = ACTIONS(8798), + [anon_sym___restrict__] = ACTIONS(8798), + [anon_sym__Atomic] = ACTIONS(8798), + [anon_sym__Noreturn] = ACTIONS(8798), + [anon_sym_noreturn] = ACTIONS(8798), + [anon_sym__Nonnull] = ACTIONS(8798), + [anon_sym_mutable] = ACTIONS(8798), + [anon_sym_constinit] = ACTIONS(8798), + [anon_sym_consteval] = ACTIONS(8798), + [anon_sym_alignas] = ACTIONS(8798), + [anon_sym__Alignas] = ACTIONS(8798), + [sym_primitive_type] = ACTIONS(8798), + [anon_sym_enum] = ACTIONS(8798), + [anon_sym_class] = ACTIONS(8798), + [anon_sym_struct] = ACTIONS(8798), + [anon_sym_union] = ACTIONS(8798), + [anon_sym_typename] = ACTIONS(8798), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8798), + [anon_sym_decltype] = ACTIONS(8798), + [anon_sym_explicit] = ACTIONS(8798), + [anon_sym_private] = ACTIONS(8798), + [anon_sym_template] = ACTIONS(8798), + [anon_sym_operator] = ACTIONS(8798), + [anon_sym_friend] = ACTIONS(8798), + [anon_sym_public] = ACTIONS(8798), + [anon_sym_protected] = ACTIONS(8798), + [anon_sym_static_assert] = ACTIONS(8798), + [anon_sym_LBRACK_COLON] = ACTIONS(8800), }, - [STATE(3338)] = { - [sym_identifier] = ACTIONS(8430), - [aux_sym_preproc_def_token1] = ACTIONS(8430), - [aux_sym_preproc_if_token1] = ACTIONS(8430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8430), - [sym_preproc_directive] = ACTIONS(8430), - [anon_sym_LPAREN2] = ACTIONS(8432), - [anon_sym_TILDE] = ACTIONS(8432), - [anon_sym_STAR] = ACTIONS(8432), - [anon_sym_AMP_AMP] = ACTIONS(8432), - [anon_sym_AMP] = ACTIONS(8430), - [anon_sym_SEMI] = ACTIONS(8432), - [anon_sym___extension__] = ACTIONS(8430), - [anon_sym_typedef] = ACTIONS(8430), - [anon_sym_virtual] = ACTIONS(8430), - [anon_sym_extern] = ACTIONS(8430), - [anon_sym___attribute__] = ACTIONS(8430), - [anon_sym___attribute] = ACTIONS(8430), - [anon_sym_using] = ACTIONS(8430), - [anon_sym_COLON_COLON] = ACTIONS(8432), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8432), - [anon_sym___declspec] = ACTIONS(8430), - [anon_sym___based] = ACTIONS(8430), - [anon_sym_RBRACE] = ACTIONS(8432), - [anon_sym_signed] = ACTIONS(8430), - [anon_sym_unsigned] = ACTIONS(8430), - [anon_sym_long] = ACTIONS(8430), - [anon_sym_short] = ACTIONS(8430), - [anon_sym_LBRACK] = ACTIONS(8430), - [anon_sym_static] = ACTIONS(8430), - [anon_sym_register] = ACTIONS(8430), - [anon_sym_inline] = ACTIONS(8430), - [anon_sym___inline] = ACTIONS(8430), - [anon_sym___inline__] = ACTIONS(8430), - [anon_sym___forceinline] = ACTIONS(8430), - [anon_sym_thread_local] = ACTIONS(8430), - [anon_sym___thread] = ACTIONS(8430), - [anon_sym_const] = ACTIONS(8430), - [anon_sym_constexpr] = ACTIONS(8430), - [anon_sym_volatile] = ACTIONS(8430), - [anon_sym_restrict] = ACTIONS(8430), - [anon_sym___restrict__] = ACTIONS(8430), - [anon_sym__Atomic] = ACTIONS(8430), - [anon_sym__Noreturn] = ACTIONS(8430), - [anon_sym_noreturn] = ACTIONS(8430), - [anon_sym__Nonnull] = ACTIONS(8430), - [anon_sym_mutable] = ACTIONS(8430), - [anon_sym_constinit] = ACTIONS(8430), - [anon_sym_consteval] = ACTIONS(8430), - [anon_sym_alignas] = ACTIONS(8430), - [anon_sym__Alignas] = ACTIONS(8430), - [sym_primitive_type] = ACTIONS(8430), - [anon_sym_enum] = ACTIONS(8430), - [anon_sym_class] = ACTIONS(8430), - [anon_sym_struct] = ACTIONS(8430), - [anon_sym_union] = ACTIONS(8430), - [anon_sym_typename] = ACTIONS(8430), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8430), - [anon_sym_decltype] = ACTIONS(8430), - [anon_sym_explicit] = ACTIONS(8430), - [anon_sym_private] = ACTIONS(8430), - [anon_sym_template] = ACTIONS(8430), - [anon_sym_operator] = ACTIONS(8430), - [anon_sym_friend] = ACTIONS(8430), - [anon_sym_public] = ACTIONS(8430), - [anon_sym_protected] = ACTIONS(8430), - [anon_sym_static_assert] = ACTIONS(8430), - [anon_sym_LBRACK_COLON] = ACTIONS(8432), + [STATE(2878)] = { + [sym_identifier] = ACTIONS(8802), + [aux_sym_preproc_def_token1] = ACTIONS(8802), + [aux_sym_preproc_if_token1] = ACTIONS(8802), + [aux_sym_preproc_if_token2] = ACTIONS(8802), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8802), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8802), + [aux_sym_preproc_else_token1] = ACTIONS(8802), + [aux_sym_preproc_elif_token1] = ACTIONS(8802), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8802), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8802), + [sym_preproc_directive] = ACTIONS(8802), + [anon_sym_LPAREN2] = ACTIONS(8804), + [anon_sym_TILDE] = ACTIONS(8804), + [anon_sym_STAR] = ACTIONS(8804), + [anon_sym_AMP_AMP] = ACTIONS(8804), + [anon_sym_AMP] = ACTIONS(8802), + [anon_sym_SEMI] = ACTIONS(8804), + [anon_sym___extension__] = ACTIONS(8802), + [anon_sym_typedef] = ACTIONS(8802), + [anon_sym_virtual] = ACTIONS(8802), + [anon_sym_extern] = ACTIONS(8802), + [anon_sym___attribute__] = ACTIONS(8802), + [anon_sym___attribute] = ACTIONS(8802), + [anon_sym_using] = ACTIONS(8802), + [anon_sym_COLON_COLON] = ACTIONS(8804), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8804), + [anon_sym___declspec] = ACTIONS(8802), + [anon_sym___based] = ACTIONS(8802), + [anon_sym_signed] = ACTIONS(8802), + [anon_sym_unsigned] = ACTIONS(8802), + [anon_sym_long] = ACTIONS(8802), + [anon_sym_short] = ACTIONS(8802), + [anon_sym_LBRACK] = ACTIONS(8802), + [anon_sym_static] = ACTIONS(8802), + [anon_sym_register] = ACTIONS(8802), + [anon_sym_inline] = ACTIONS(8802), + [anon_sym___inline] = ACTIONS(8802), + [anon_sym___inline__] = ACTIONS(8802), + [anon_sym___forceinline] = ACTIONS(8802), + [anon_sym_thread_local] = ACTIONS(8802), + [anon_sym___thread] = ACTIONS(8802), + [anon_sym_const] = ACTIONS(8802), + [anon_sym_constexpr] = ACTIONS(8802), + [anon_sym_volatile] = ACTIONS(8802), + [anon_sym_restrict] = ACTIONS(8802), + [anon_sym___restrict__] = ACTIONS(8802), + [anon_sym__Atomic] = ACTIONS(8802), + [anon_sym__Noreturn] = ACTIONS(8802), + [anon_sym_noreturn] = ACTIONS(8802), + [anon_sym__Nonnull] = ACTIONS(8802), + [anon_sym_mutable] = ACTIONS(8802), + [anon_sym_constinit] = ACTIONS(8802), + [anon_sym_consteval] = ACTIONS(8802), + [anon_sym_alignas] = ACTIONS(8802), + [anon_sym__Alignas] = ACTIONS(8802), + [sym_primitive_type] = ACTIONS(8802), + [anon_sym_enum] = ACTIONS(8802), + [anon_sym_class] = ACTIONS(8802), + [anon_sym_struct] = ACTIONS(8802), + [anon_sym_union] = ACTIONS(8802), + [anon_sym_typename] = ACTIONS(8802), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8802), + [anon_sym_decltype] = ACTIONS(8802), + [anon_sym_explicit] = ACTIONS(8802), + [anon_sym_private] = ACTIONS(8802), + [anon_sym_template] = ACTIONS(8802), + [anon_sym_operator] = ACTIONS(8802), + [anon_sym_friend] = ACTIONS(8802), + [anon_sym_public] = ACTIONS(8802), + [anon_sym_protected] = ACTIONS(8802), + [anon_sym_static_assert] = ACTIONS(8802), + [anon_sym_LBRACK_COLON] = ACTIONS(8804), }, - [STATE(3339)] = { - [sym_identifier] = ACTIONS(8462), - [aux_sym_preproc_def_token1] = ACTIONS(8462), - [aux_sym_preproc_if_token1] = ACTIONS(8462), - [aux_sym_preproc_if_token2] = ACTIONS(8462), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8462), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8462), - [sym_preproc_directive] = ACTIONS(8462), - [anon_sym_LPAREN2] = ACTIONS(8464), - [anon_sym_TILDE] = ACTIONS(8464), - [anon_sym_STAR] = ACTIONS(8464), - [anon_sym_AMP_AMP] = ACTIONS(8464), - [anon_sym_AMP] = ACTIONS(8462), - [anon_sym_SEMI] = ACTIONS(8464), - [anon_sym___extension__] = ACTIONS(8462), - [anon_sym_typedef] = ACTIONS(8462), - [anon_sym_virtual] = ACTIONS(8462), - [anon_sym_extern] = ACTIONS(8462), - [anon_sym___attribute__] = ACTIONS(8462), - [anon_sym___attribute] = ACTIONS(8462), - [anon_sym_using] = ACTIONS(8462), - [anon_sym_COLON_COLON] = ACTIONS(8464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8464), - [anon_sym___declspec] = ACTIONS(8462), - [anon_sym___based] = ACTIONS(8462), - [anon_sym_signed] = ACTIONS(8462), - [anon_sym_unsigned] = ACTIONS(8462), - [anon_sym_long] = ACTIONS(8462), - [anon_sym_short] = ACTIONS(8462), - [anon_sym_LBRACK] = ACTIONS(8462), - [anon_sym_static] = ACTIONS(8462), - [anon_sym_register] = ACTIONS(8462), - [anon_sym_inline] = ACTIONS(8462), - [anon_sym___inline] = ACTIONS(8462), - [anon_sym___inline__] = ACTIONS(8462), - [anon_sym___forceinline] = ACTIONS(8462), - [anon_sym_thread_local] = ACTIONS(8462), - [anon_sym___thread] = ACTIONS(8462), - [anon_sym_const] = ACTIONS(8462), - [anon_sym_constexpr] = ACTIONS(8462), - [anon_sym_volatile] = ACTIONS(8462), - [anon_sym_restrict] = ACTIONS(8462), - [anon_sym___restrict__] = ACTIONS(8462), - [anon_sym__Atomic] = ACTIONS(8462), - [anon_sym__Noreturn] = ACTIONS(8462), - [anon_sym_noreturn] = ACTIONS(8462), - [anon_sym__Nonnull] = ACTIONS(8462), - [anon_sym_mutable] = ACTIONS(8462), - [anon_sym_constinit] = ACTIONS(8462), - [anon_sym_consteval] = ACTIONS(8462), - [anon_sym_alignas] = ACTIONS(8462), - [anon_sym__Alignas] = ACTIONS(8462), - [sym_primitive_type] = ACTIONS(8462), - [anon_sym_enum] = ACTIONS(8462), - [anon_sym_class] = ACTIONS(8462), - [anon_sym_struct] = ACTIONS(8462), - [anon_sym_union] = ACTIONS(8462), - [anon_sym_typename] = ACTIONS(8462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8462), - [anon_sym_decltype] = ACTIONS(8462), - [anon_sym_explicit] = ACTIONS(8462), - [anon_sym_private] = ACTIONS(8462), - [anon_sym_template] = ACTIONS(8462), - [anon_sym_operator] = ACTIONS(8462), - [anon_sym_friend] = ACTIONS(8462), - [anon_sym_public] = ACTIONS(8462), - [anon_sym_protected] = ACTIONS(8462), - [anon_sym_static_assert] = ACTIONS(8462), - [anon_sym_LBRACK_COLON] = ACTIONS(8464), + [STATE(2879)] = { + [sym_identifier] = ACTIONS(4048), + [aux_sym_preproc_def_token1] = ACTIONS(4048), + [aux_sym_preproc_if_token1] = ACTIONS(4048), + [aux_sym_preproc_if_token2] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4048), + [aux_sym_preproc_else_token1] = ACTIONS(4048), + [aux_sym_preproc_elif_token1] = ACTIONS(4048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4048), + [sym_preproc_directive] = ACTIONS(4048), + [anon_sym_LPAREN2] = ACTIONS(4050), + [anon_sym_TILDE] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(4050), + [anon_sym_AMP_AMP] = ACTIONS(4050), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_SEMI] = ACTIONS(4050), + [anon_sym___extension__] = ACTIONS(4048), + [anon_sym_typedef] = ACTIONS(4048), + [anon_sym_virtual] = ACTIONS(4048), + [anon_sym_extern] = ACTIONS(4048), + [anon_sym___attribute__] = ACTIONS(4048), + [anon_sym___attribute] = ACTIONS(4048), + [anon_sym_using] = ACTIONS(4048), + [anon_sym_COLON_COLON] = ACTIONS(4050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4050), + [anon_sym___declspec] = ACTIONS(4048), + [anon_sym___based] = ACTIONS(4048), + [anon_sym_signed] = ACTIONS(4048), + [anon_sym_unsigned] = ACTIONS(4048), + [anon_sym_long] = ACTIONS(4048), + [anon_sym_short] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_static] = ACTIONS(4048), + [anon_sym_register] = ACTIONS(4048), + [anon_sym_inline] = ACTIONS(4048), + [anon_sym___inline] = ACTIONS(4048), + [anon_sym___inline__] = ACTIONS(4048), + [anon_sym___forceinline] = ACTIONS(4048), + [anon_sym_thread_local] = ACTIONS(4048), + [anon_sym___thread] = ACTIONS(4048), + [anon_sym_const] = ACTIONS(4048), + [anon_sym_constexpr] = ACTIONS(4048), + [anon_sym_volatile] = ACTIONS(4048), + [anon_sym_restrict] = ACTIONS(4048), + [anon_sym___restrict__] = ACTIONS(4048), + [anon_sym__Atomic] = ACTIONS(4048), + [anon_sym__Noreturn] = ACTIONS(4048), + [anon_sym_noreturn] = ACTIONS(4048), + [anon_sym__Nonnull] = ACTIONS(4048), + [anon_sym_mutable] = ACTIONS(4048), + [anon_sym_constinit] = ACTIONS(4048), + [anon_sym_consteval] = ACTIONS(4048), + [anon_sym_alignas] = ACTIONS(4048), + [anon_sym__Alignas] = ACTIONS(4048), + [sym_primitive_type] = ACTIONS(4048), + [anon_sym_enum] = ACTIONS(4048), + [anon_sym_class] = ACTIONS(4048), + [anon_sym_struct] = ACTIONS(4048), + [anon_sym_union] = ACTIONS(4048), + [anon_sym_typename] = ACTIONS(4048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4048), + [anon_sym_decltype] = ACTIONS(4048), + [anon_sym_explicit] = ACTIONS(4048), + [anon_sym_private] = ACTIONS(4048), + [anon_sym_template] = ACTIONS(4048), + [anon_sym_operator] = ACTIONS(4048), + [anon_sym_friend] = ACTIONS(4048), + [anon_sym_public] = ACTIONS(4048), + [anon_sym_protected] = ACTIONS(4048), + [anon_sym_static_assert] = ACTIONS(4048), + [anon_sym_LBRACK_COLON] = ACTIONS(4050), }, - [STATE(3340)] = { - [sym_template_argument_list] = STATE(3582), - [sym_identifier] = ACTIONS(7031), - [anon_sym_LPAREN2] = ACTIONS(5272), - [anon_sym_TILDE] = ACTIONS(5272), - [anon_sym_STAR] = ACTIONS(5272), - [anon_sym_PIPE_PIPE] = ACTIONS(5272), - [anon_sym_AMP_AMP] = ACTIONS(5272), - [anon_sym_AMP] = ACTIONS(7031), - [anon_sym_LT] = ACTIONS(8749), - [anon_sym___extension__] = ACTIONS(7031), - [anon_sym_virtual] = ACTIONS(7031), - [anon_sym_extern] = ACTIONS(7031), - [anon_sym___attribute__] = ACTIONS(7031), - [anon_sym___attribute] = ACTIONS(7031), - [anon_sym_using] = ACTIONS(7031), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5272), - [anon_sym___declspec] = ACTIONS(7031), - [anon_sym___based] = ACTIONS(7031), - [anon_sym___cdecl] = ACTIONS(7031), - [anon_sym___clrcall] = ACTIONS(7031), - [anon_sym___stdcall] = ACTIONS(7031), - [anon_sym___fastcall] = ACTIONS(7031), - [anon_sym___thiscall] = ACTIONS(7031), - [anon_sym___vectorcall] = ACTIONS(7031), - [anon_sym_signed] = ACTIONS(7031), - [anon_sym_unsigned] = ACTIONS(7031), - [anon_sym_long] = ACTIONS(7031), - [anon_sym_short] = ACTIONS(7031), - [anon_sym_LBRACK] = ACTIONS(7031), - [anon_sym_static] = ACTIONS(7031), - [anon_sym_register] = ACTIONS(7031), - [anon_sym_inline] = ACTIONS(7031), - [anon_sym___inline] = ACTIONS(7031), - [anon_sym___inline__] = ACTIONS(7031), - [anon_sym___forceinline] = ACTIONS(7031), - [anon_sym_thread_local] = ACTIONS(7031), - [anon_sym___thread] = ACTIONS(7031), - [anon_sym_const] = ACTIONS(7031), - [anon_sym_constexpr] = ACTIONS(7031), - [anon_sym_volatile] = ACTIONS(7031), - [anon_sym_restrict] = ACTIONS(7031), - [anon_sym___restrict__] = ACTIONS(7031), - [anon_sym__Atomic] = ACTIONS(7031), - [anon_sym__Noreturn] = ACTIONS(7031), - [anon_sym_noreturn] = ACTIONS(7031), - [anon_sym__Nonnull] = ACTIONS(7031), - [anon_sym_mutable] = ACTIONS(7031), - [anon_sym_constinit] = ACTIONS(7031), - [anon_sym_consteval] = ACTIONS(7031), - [anon_sym_alignas] = ACTIONS(7031), - [anon_sym__Alignas] = ACTIONS(7031), - [sym_primitive_type] = ACTIONS(7031), - [anon_sym_enum] = ACTIONS(7031), - [anon_sym_class] = ACTIONS(7031), - [anon_sym_struct] = ACTIONS(7031), - [anon_sym_union] = ACTIONS(7031), - [anon_sym_or] = ACTIONS(7031), - [anon_sym_and] = ACTIONS(7031), - [anon_sym_typename] = ACTIONS(7031), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7031), - [anon_sym_decltype] = ACTIONS(7031), - [anon_sym_explicit] = ACTIONS(7031), - [anon_sym_template] = ACTIONS(7031), - [anon_sym_operator] = ACTIONS(7031), - [anon_sym_friend] = ACTIONS(7031), - [anon_sym_concept] = ACTIONS(7031), - [anon_sym_LBRACK_COLON] = ACTIONS(5272), + [STATE(2880)] = { + [sym_identifier] = ACTIONS(8806), + [aux_sym_preproc_def_token1] = ACTIONS(8806), + [aux_sym_preproc_if_token1] = ACTIONS(8806), + [aux_sym_preproc_if_token2] = ACTIONS(8806), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8806), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8806), + [aux_sym_preproc_else_token1] = ACTIONS(8806), + [aux_sym_preproc_elif_token1] = ACTIONS(8806), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8806), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8806), + [sym_preproc_directive] = ACTIONS(8806), + [anon_sym_LPAREN2] = ACTIONS(8808), + [anon_sym_TILDE] = ACTIONS(8808), + [anon_sym_STAR] = ACTIONS(8808), + [anon_sym_AMP_AMP] = ACTIONS(8808), + [anon_sym_AMP] = ACTIONS(8806), + [anon_sym_SEMI] = ACTIONS(8808), + [anon_sym___extension__] = ACTIONS(8806), + [anon_sym_typedef] = ACTIONS(8806), + [anon_sym_virtual] = ACTIONS(8806), + [anon_sym_extern] = ACTIONS(8806), + [anon_sym___attribute__] = ACTIONS(8806), + [anon_sym___attribute] = ACTIONS(8806), + [anon_sym_using] = ACTIONS(8806), + [anon_sym_COLON_COLON] = ACTIONS(8808), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8808), + [anon_sym___declspec] = ACTIONS(8806), + [anon_sym___based] = ACTIONS(8806), + [anon_sym_signed] = ACTIONS(8806), + [anon_sym_unsigned] = ACTIONS(8806), + [anon_sym_long] = ACTIONS(8806), + [anon_sym_short] = ACTIONS(8806), + [anon_sym_LBRACK] = ACTIONS(8806), + [anon_sym_static] = ACTIONS(8806), + [anon_sym_register] = ACTIONS(8806), + [anon_sym_inline] = ACTIONS(8806), + [anon_sym___inline] = ACTIONS(8806), + [anon_sym___inline__] = ACTIONS(8806), + [anon_sym___forceinline] = ACTIONS(8806), + [anon_sym_thread_local] = ACTIONS(8806), + [anon_sym___thread] = ACTIONS(8806), + [anon_sym_const] = ACTIONS(8806), + [anon_sym_constexpr] = ACTIONS(8806), + [anon_sym_volatile] = ACTIONS(8806), + [anon_sym_restrict] = ACTIONS(8806), + [anon_sym___restrict__] = ACTIONS(8806), + [anon_sym__Atomic] = ACTIONS(8806), + [anon_sym__Noreturn] = ACTIONS(8806), + [anon_sym_noreturn] = ACTIONS(8806), + [anon_sym__Nonnull] = ACTIONS(8806), + [anon_sym_mutable] = ACTIONS(8806), + [anon_sym_constinit] = ACTIONS(8806), + [anon_sym_consteval] = ACTIONS(8806), + [anon_sym_alignas] = ACTIONS(8806), + [anon_sym__Alignas] = ACTIONS(8806), + [sym_primitive_type] = ACTIONS(8806), + [anon_sym_enum] = ACTIONS(8806), + [anon_sym_class] = ACTIONS(8806), + [anon_sym_struct] = ACTIONS(8806), + [anon_sym_union] = ACTIONS(8806), + [anon_sym_typename] = ACTIONS(8806), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8806), + [anon_sym_decltype] = ACTIONS(8806), + [anon_sym_explicit] = ACTIONS(8806), + [anon_sym_private] = ACTIONS(8806), + [anon_sym_template] = ACTIONS(8806), + [anon_sym_operator] = ACTIONS(8806), + [anon_sym_friend] = ACTIONS(8806), + [anon_sym_public] = ACTIONS(8806), + [anon_sym_protected] = ACTIONS(8806), + [anon_sym_static_assert] = ACTIONS(8806), + [anon_sym_LBRACK_COLON] = ACTIONS(8808), }, - [STATE(3341)] = { - [sym_identifier] = ACTIONS(3938), - [aux_sym_preproc_def_token1] = ACTIONS(3938), - [aux_sym_preproc_if_token1] = ACTIONS(3938), - [aux_sym_preproc_if_token2] = ACTIONS(3938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3938), - [sym_preproc_directive] = ACTIONS(3938), - [anon_sym_LPAREN2] = ACTIONS(3940), - [anon_sym_TILDE] = ACTIONS(3940), - [anon_sym_STAR] = ACTIONS(3940), - [anon_sym_AMP_AMP] = ACTIONS(3940), - [anon_sym_AMP] = ACTIONS(3938), - [anon_sym_SEMI] = ACTIONS(3940), - [anon_sym___extension__] = ACTIONS(3938), - [anon_sym_typedef] = ACTIONS(3938), - [anon_sym_virtual] = ACTIONS(3938), - [anon_sym_extern] = ACTIONS(3938), - [anon_sym___attribute__] = ACTIONS(3938), - [anon_sym___attribute] = ACTIONS(3938), - [anon_sym_using] = ACTIONS(3938), - [anon_sym_COLON_COLON] = ACTIONS(3940), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3940), - [anon_sym___declspec] = ACTIONS(3938), - [anon_sym___based] = ACTIONS(3938), - [anon_sym_signed] = ACTIONS(3938), - [anon_sym_unsigned] = ACTIONS(3938), - [anon_sym_long] = ACTIONS(3938), - [anon_sym_short] = ACTIONS(3938), - [anon_sym_LBRACK] = ACTIONS(3938), - [anon_sym_static] = ACTIONS(3938), - [anon_sym_register] = ACTIONS(3938), - [anon_sym_inline] = ACTIONS(3938), - [anon_sym___inline] = ACTIONS(3938), - [anon_sym___inline__] = ACTIONS(3938), - [anon_sym___forceinline] = ACTIONS(3938), - [anon_sym_thread_local] = ACTIONS(3938), - [anon_sym___thread] = ACTIONS(3938), - [anon_sym_const] = ACTIONS(3938), - [anon_sym_constexpr] = ACTIONS(3938), - [anon_sym_volatile] = ACTIONS(3938), - [anon_sym_restrict] = ACTIONS(3938), - [anon_sym___restrict__] = ACTIONS(3938), - [anon_sym__Atomic] = ACTIONS(3938), - [anon_sym__Noreturn] = ACTIONS(3938), - [anon_sym_noreturn] = ACTIONS(3938), - [anon_sym__Nonnull] = ACTIONS(3938), - [anon_sym_mutable] = ACTIONS(3938), - [anon_sym_constinit] = ACTIONS(3938), - [anon_sym_consteval] = ACTIONS(3938), - [anon_sym_alignas] = ACTIONS(3938), - [anon_sym__Alignas] = ACTIONS(3938), - [sym_primitive_type] = ACTIONS(3938), - [anon_sym_enum] = ACTIONS(3938), - [anon_sym_class] = ACTIONS(3938), - [anon_sym_struct] = ACTIONS(3938), - [anon_sym_union] = ACTIONS(3938), - [anon_sym_typename] = ACTIONS(3938), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3938), - [anon_sym_decltype] = ACTIONS(3938), - [anon_sym_explicit] = ACTIONS(3938), - [anon_sym_private] = ACTIONS(3938), - [anon_sym_template] = ACTIONS(3938), - [anon_sym_operator] = ACTIONS(3938), - [anon_sym_friend] = ACTIONS(3938), - [anon_sym_public] = ACTIONS(3938), - [anon_sym_protected] = ACTIONS(3938), - [anon_sym_static_assert] = ACTIONS(3938), - [anon_sym_LBRACK_COLON] = ACTIONS(3940), + [STATE(2881)] = { + [sym_identifier] = ACTIONS(3618), + [aux_sym_preproc_def_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token2] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), + [aux_sym_preproc_else_token1] = ACTIONS(3618), + [aux_sym_preproc_elif_token1] = ACTIONS(3618), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3618), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3618), + [sym_preproc_directive] = ACTIONS(3618), + [anon_sym_LPAREN2] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_AMP] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym___extension__] = ACTIONS(3618), + [anon_sym_typedef] = ACTIONS(3618), + [anon_sym_virtual] = ACTIONS(3618), + [anon_sym_extern] = ACTIONS(3618), + [anon_sym___attribute__] = ACTIONS(3618), + [anon_sym___attribute] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_COLON_COLON] = ACTIONS(3620), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), + [anon_sym___declspec] = ACTIONS(3618), + [anon_sym___based] = ACTIONS(3618), + [anon_sym_signed] = ACTIONS(3618), + [anon_sym_unsigned] = ACTIONS(3618), + [anon_sym_long] = ACTIONS(3618), + [anon_sym_short] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_register] = ACTIONS(3618), + [anon_sym_inline] = ACTIONS(3618), + [anon_sym___inline] = ACTIONS(3618), + [anon_sym___inline__] = ACTIONS(3618), + [anon_sym___forceinline] = ACTIONS(3618), + [anon_sym_thread_local] = ACTIONS(3618), + [anon_sym___thread] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_constexpr] = ACTIONS(3618), + [anon_sym_volatile] = ACTIONS(3618), + [anon_sym_restrict] = ACTIONS(3618), + [anon_sym___restrict__] = ACTIONS(3618), + [anon_sym__Atomic] = ACTIONS(3618), + [anon_sym__Noreturn] = ACTIONS(3618), + [anon_sym_noreturn] = ACTIONS(3618), + [anon_sym__Nonnull] = ACTIONS(3618), + [anon_sym_mutable] = ACTIONS(3618), + [anon_sym_constinit] = ACTIONS(3618), + [anon_sym_consteval] = ACTIONS(3618), + [anon_sym_alignas] = ACTIONS(3618), + [anon_sym__Alignas] = ACTIONS(3618), + [sym_primitive_type] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_struct] = ACTIONS(3618), + [anon_sym_union] = ACTIONS(3618), + [anon_sym_typename] = ACTIONS(3618), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3618), + [anon_sym_decltype] = ACTIONS(3618), + [anon_sym_explicit] = ACTIONS(3618), + [anon_sym_private] = ACTIONS(3618), + [anon_sym_template] = ACTIONS(3618), + [anon_sym_operator] = ACTIONS(3618), + [anon_sym_friend] = ACTIONS(3618), + [anon_sym_public] = ACTIONS(3618), + [anon_sym_protected] = ACTIONS(3618), + [anon_sym_static_assert] = ACTIONS(3618), + [anon_sym_LBRACK_COLON] = ACTIONS(3620), }, - [STATE(3342)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3287), - [sym_identifier] = ACTIONS(7253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), - [anon_sym_COMMA] = ACTIONS(7255), - [aux_sym_preproc_if_token2] = ACTIONS(7255), - [aux_sym_preproc_else_token1] = ACTIONS(7255), - [aux_sym_preproc_elif_token1] = ACTIONS(7253), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7255), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7255), - [anon_sym_LPAREN2] = ACTIONS(7255), - [anon_sym_DASH] = ACTIONS(7253), - [anon_sym_PLUS] = ACTIONS(7253), - [anon_sym_STAR] = ACTIONS(7255), - [anon_sym_SLASH] = ACTIONS(7253), - [anon_sym_PERCENT] = ACTIONS(7255), - [anon_sym_PIPE_PIPE] = ACTIONS(7255), - [anon_sym_AMP_AMP] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7255), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_EQ_EQ] = ACTIONS(7255), - [anon_sym_BANG_EQ] = ACTIONS(7255), - [anon_sym_GT] = ACTIONS(7253), - [anon_sym_GT_EQ] = ACTIONS(7255), - [anon_sym_LT_EQ] = ACTIONS(7253), - [anon_sym_LT] = ACTIONS(7253), - [anon_sym_LT_LT] = ACTIONS(7255), - [anon_sym_GT_GT] = ACTIONS(7255), - [anon_sym___extension__] = ACTIONS(7253), - [anon_sym___attribute__] = ACTIONS(7253), - [anon_sym___attribute] = ACTIONS(7253), - [anon_sym_LBRACE] = ACTIONS(7255), - [anon_sym_signed] = ACTIONS(8788), - [anon_sym_unsigned] = ACTIONS(8788), - [anon_sym_long] = ACTIONS(8788), - [anon_sym_short] = ACTIONS(8788), - [anon_sym_LBRACK] = ACTIONS(7255), - [anon_sym_RBRACK] = ACTIONS(7255), - [anon_sym_const] = ACTIONS(7253), - [anon_sym_constexpr] = ACTIONS(7253), - [anon_sym_volatile] = ACTIONS(7253), - [anon_sym_restrict] = ACTIONS(7253), - [anon_sym___restrict__] = ACTIONS(7253), - [anon_sym__Atomic] = ACTIONS(7253), - [anon_sym__Noreturn] = ACTIONS(7253), - [anon_sym_noreturn] = ACTIONS(7253), - [anon_sym__Nonnull] = ACTIONS(7253), - [anon_sym_mutable] = ACTIONS(7253), - [anon_sym_constinit] = ACTIONS(7253), - [anon_sym_consteval] = ACTIONS(7253), - [anon_sym_alignas] = ACTIONS(7253), - [anon_sym__Alignas] = ACTIONS(7253), - [anon_sym_QMARK] = ACTIONS(7255), - [anon_sym_LT_EQ_GT] = ACTIONS(7255), - [anon_sym_or] = ACTIONS(7253), - [anon_sym_and] = ACTIONS(7253), - [anon_sym_bitor] = ACTIONS(7253), - [anon_sym_xor] = ACTIONS(7253), - [anon_sym_bitand] = ACTIONS(7253), - [anon_sym_not_eq] = ACTIONS(7253), - [anon_sym_DASH_DASH] = ACTIONS(7255), - [anon_sym_PLUS_PLUS] = ACTIONS(7255), - [anon_sym_DOT] = ACTIONS(7253), - [anon_sym_DOT_STAR] = ACTIONS(7255), - [anon_sym_DASH_GT] = ACTIONS(7255), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7253), - [anon_sym_override] = ACTIONS(7253), - [anon_sym_requires] = ACTIONS(7253), + [STATE(2882)] = { + [sym_attribute_specifier] = STATE(3096), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7415), + [anon_sym_COMMA] = ACTIONS(7415), + [anon_sym_LPAREN2] = ACTIONS(7415), + [anon_sym_DASH] = ACTIONS(7413), + [anon_sym_PLUS] = ACTIONS(7413), + [anon_sym_STAR] = ACTIONS(7413), + [anon_sym_SLASH] = ACTIONS(7413), + [anon_sym_PERCENT] = ACTIONS(7413), + [anon_sym_PIPE_PIPE] = ACTIONS(7415), + [anon_sym_AMP_AMP] = ACTIONS(7415), + [anon_sym_PIPE] = ACTIONS(7413), + [anon_sym_CARET] = ACTIONS(7413), + [anon_sym_AMP] = ACTIONS(7413), + [anon_sym_EQ_EQ] = ACTIONS(7415), + [anon_sym_BANG_EQ] = ACTIONS(7415), + [anon_sym_GT] = ACTIONS(7413), + [anon_sym_GT_EQ] = ACTIONS(7413), + [anon_sym_LT_EQ] = ACTIONS(7413), + [anon_sym_LT] = ACTIONS(7413), + [anon_sym_LT_LT] = ACTIONS(7413), + [anon_sym_GT_GT] = ACTIONS(7413), + [anon_sym___extension__] = ACTIONS(7415), + [anon_sym___attribute__] = ACTIONS(8265), + [anon_sym___attribute] = ACTIONS(8267), + [anon_sym_LBRACE] = ACTIONS(7415), + [anon_sym_LBRACK] = ACTIONS(7415), + [anon_sym_EQ] = ACTIONS(7413), + [anon_sym_const] = ACTIONS(7413), + [anon_sym_constexpr] = ACTIONS(7415), + [anon_sym_volatile] = ACTIONS(7415), + [anon_sym_restrict] = ACTIONS(7415), + [anon_sym___restrict__] = ACTIONS(7415), + [anon_sym__Atomic] = ACTIONS(7415), + [anon_sym__Noreturn] = ACTIONS(7415), + [anon_sym_noreturn] = ACTIONS(7415), + [anon_sym__Nonnull] = ACTIONS(7415), + [anon_sym_mutable] = ACTIONS(7415), + [anon_sym_constinit] = ACTIONS(7415), + [anon_sym_consteval] = ACTIONS(7415), + [anon_sym_alignas] = ACTIONS(7415), + [anon_sym__Alignas] = ACTIONS(7415), + [anon_sym_QMARK] = ACTIONS(7415), + [anon_sym_STAR_EQ] = ACTIONS(7415), + [anon_sym_SLASH_EQ] = ACTIONS(7415), + [anon_sym_PERCENT_EQ] = ACTIONS(7415), + [anon_sym_PLUS_EQ] = ACTIONS(7415), + [anon_sym_DASH_EQ] = ACTIONS(7415), + [anon_sym_LT_LT_EQ] = ACTIONS(7415), + [anon_sym_GT_GT_EQ] = ACTIONS(7413), + [anon_sym_AMP_EQ] = ACTIONS(7415), + [anon_sym_CARET_EQ] = ACTIONS(7415), + [anon_sym_PIPE_EQ] = ACTIONS(7415), + [anon_sym_and_eq] = ACTIONS(7415), + [anon_sym_or_eq] = ACTIONS(7415), + [anon_sym_xor_eq] = ACTIONS(7415), + [anon_sym_LT_EQ_GT] = ACTIONS(7415), + [anon_sym_or] = ACTIONS(7413), + [anon_sym_and] = ACTIONS(7413), + [anon_sym_bitor] = ACTIONS(7415), + [anon_sym_xor] = ACTIONS(7413), + [anon_sym_bitand] = ACTIONS(7415), + [anon_sym_not_eq] = ACTIONS(7415), + [anon_sym_DASH_DASH] = ACTIONS(7415), + [anon_sym_PLUS_PLUS] = ACTIONS(7415), + [anon_sym_DOT] = ACTIONS(7413), + [anon_sym_DOT_STAR] = ACTIONS(7415), + [anon_sym_DASH_GT] = ACTIONS(7415), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7415), + [anon_sym_override] = ACTIONS(7415), + [anon_sym_GT2] = ACTIONS(7415), + [anon_sym_requires] = ACTIONS(7415), }, - [STATE(3343)] = { - [sym_identifier] = ACTIONS(8458), - [aux_sym_preproc_def_token1] = ACTIONS(8458), - [aux_sym_preproc_if_token1] = ACTIONS(8458), - [aux_sym_preproc_if_token2] = ACTIONS(8458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8458), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8458), - [sym_preproc_directive] = ACTIONS(8458), - [anon_sym_LPAREN2] = ACTIONS(8460), - [anon_sym_TILDE] = ACTIONS(8460), - [anon_sym_STAR] = ACTIONS(8460), - [anon_sym_AMP_AMP] = ACTIONS(8460), - [anon_sym_AMP] = ACTIONS(8458), - [anon_sym_SEMI] = ACTIONS(8460), - [anon_sym___extension__] = ACTIONS(8458), - [anon_sym_typedef] = ACTIONS(8458), - [anon_sym_virtual] = ACTIONS(8458), - [anon_sym_extern] = ACTIONS(8458), - [anon_sym___attribute__] = ACTIONS(8458), - [anon_sym___attribute] = ACTIONS(8458), - [anon_sym_using] = ACTIONS(8458), - [anon_sym_COLON_COLON] = ACTIONS(8460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8460), - [anon_sym___declspec] = ACTIONS(8458), - [anon_sym___based] = ACTIONS(8458), - [anon_sym_signed] = ACTIONS(8458), - [anon_sym_unsigned] = ACTIONS(8458), - [anon_sym_long] = ACTIONS(8458), - [anon_sym_short] = ACTIONS(8458), - [anon_sym_LBRACK] = ACTIONS(8458), - [anon_sym_static] = ACTIONS(8458), - [anon_sym_register] = ACTIONS(8458), - [anon_sym_inline] = ACTIONS(8458), - [anon_sym___inline] = ACTIONS(8458), - [anon_sym___inline__] = ACTIONS(8458), - [anon_sym___forceinline] = ACTIONS(8458), - [anon_sym_thread_local] = ACTIONS(8458), - [anon_sym___thread] = ACTIONS(8458), - [anon_sym_const] = ACTIONS(8458), - [anon_sym_constexpr] = ACTIONS(8458), - [anon_sym_volatile] = ACTIONS(8458), - [anon_sym_restrict] = ACTIONS(8458), - [anon_sym___restrict__] = ACTIONS(8458), - [anon_sym__Atomic] = ACTIONS(8458), - [anon_sym__Noreturn] = ACTIONS(8458), - [anon_sym_noreturn] = ACTIONS(8458), - [anon_sym__Nonnull] = ACTIONS(8458), - [anon_sym_mutable] = ACTIONS(8458), - [anon_sym_constinit] = ACTIONS(8458), - [anon_sym_consteval] = ACTIONS(8458), - [anon_sym_alignas] = ACTIONS(8458), - [anon_sym__Alignas] = ACTIONS(8458), - [sym_primitive_type] = ACTIONS(8458), - [anon_sym_enum] = ACTIONS(8458), - [anon_sym_class] = ACTIONS(8458), - [anon_sym_struct] = ACTIONS(8458), - [anon_sym_union] = ACTIONS(8458), - [anon_sym_typename] = ACTIONS(8458), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8458), - [anon_sym_decltype] = ACTIONS(8458), - [anon_sym_explicit] = ACTIONS(8458), - [anon_sym_private] = ACTIONS(8458), - [anon_sym_template] = ACTIONS(8458), - [anon_sym_operator] = ACTIONS(8458), - [anon_sym_friend] = ACTIONS(8458), - [anon_sym_public] = ACTIONS(8458), - [anon_sym_protected] = ACTIONS(8458), - [anon_sym_static_assert] = ACTIONS(8458), - [anon_sym_LBRACK_COLON] = ACTIONS(8460), + [STATE(2883)] = { + [sym__declaration_modifiers] = STATE(5048), + [sym_attribute_specifier] = STATE(5048), + [sym_attribute_declaration] = STATE(5048), + [sym_ms_declspec_modifier] = STATE(5048), + [sym_storage_class_specifier] = STATE(5048), + [sym_type_qualifier] = STATE(5048), + [sym_alignas_qualifier] = STATE(3497), + [sym_type_specifier] = STATE(4006), + [sym_sized_type_specifier] = STATE(4935), + [sym_enum_specifier] = STATE(4935), + [sym_struct_specifier] = STATE(4935), + [sym_union_specifier] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4935), + [sym_decltype_auto] = STATE(4948), + [sym_decltype] = STATE(4830), + [sym_class_specifier] = STATE(4935), + [sym_dependent_type] = STATE(4935), + [sym_template_type] = STATE(4578), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(8716), + [sym_qualified_type_identifier] = STATE(4601), + [sym_splice_specifier] = STATE(4504), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(4830), + [sym_splice_expression] = STATE(10768), + [aux_sym__declaration_specifiers_repeat1] = STATE(5048), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(5936), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(8641), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(63), + [anon_sym___inline] = ACTIONS(63), + [anon_sym___inline__] = ACTIONS(63), + [anon_sym___forceinline] = ACTIONS(63), + [anon_sym_thread_local] = ACTIONS(63), + [anon_sym___thread] = ACTIONS(63), + [anon_sym_const] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(67), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_struct] = ACTIONS(3472), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_LBRACK_COLON] = ACTIONS(3486), }, - [STATE(3344)] = { - [sym_identifier] = ACTIONS(3728), - [aux_sym_preproc_def_token1] = ACTIONS(3728), - [aux_sym_preproc_if_token1] = ACTIONS(3728), - [aux_sym_preproc_if_token2] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), - [sym_preproc_directive] = ACTIONS(3728), - [anon_sym_LPAREN2] = ACTIONS(3730), - [anon_sym_TILDE] = ACTIONS(3730), - [anon_sym_STAR] = ACTIONS(3730), - [anon_sym_AMP_AMP] = ACTIONS(3730), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_SEMI] = ACTIONS(3730), - [anon_sym___extension__] = ACTIONS(3728), - [anon_sym_typedef] = ACTIONS(3728), - [anon_sym_virtual] = ACTIONS(3728), - [anon_sym_extern] = ACTIONS(3728), - [anon_sym___attribute__] = ACTIONS(3728), - [anon_sym___attribute] = ACTIONS(3728), - [anon_sym_using] = ACTIONS(3728), - [anon_sym_COLON_COLON] = ACTIONS(3730), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), - [anon_sym___declspec] = ACTIONS(3728), - [anon_sym___based] = ACTIONS(3728), - [anon_sym_signed] = ACTIONS(3728), - [anon_sym_unsigned] = ACTIONS(3728), - [anon_sym_long] = ACTIONS(3728), - [anon_sym_short] = ACTIONS(3728), - [anon_sym_LBRACK] = ACTIONS(3728), - [anon_sym_static] = ACTIONS(3728), - [anon_sym_register] = ACTIONS(3728), - [anon_sym_inline] = ACTIONS(3728), - [anon_sym___inline] = ACTIONS(3728), - [anon_sym___inline__] = ACTIONS(3728), - [anon_sym___forceinline] = ACTIONS(3728), - [anon_sym_thread_local] = ACTIONS(3728), - [anon_sym___thread] = ACTIONS(3728), - [anon_sym_const] = ACTIONS(3728), - [anon_sym_constexpr] = ACTIONS(3728), - [anon_sym_volatile] = ACTIONS(3728), - [anon_sym_restrict] = ACTIONS(3728), - [anon_sym___restrict__] = ACTIONS(3728), - [anon_sym__Atomic] = ACTIONS(3728), - [anon_sym__Noreturn] = ACTIONS(3728), - [anon_sym_noreturn] = ACTIONS(3728), - [anon_sym__Nonnull] = ACTIONS(3728), - [anon_sym_mutable] = ACTIONS(3728), - [anon_sym_constinit] = ACTIONS(3728), - [anon_sym_consteval] = ACTIONS(3728), - [anon_sym_alignas] = ACTIONS(3728), - [anon_sym__Alignas] = ACTIONS(3728), - [sym_primitive_type] = ACTIONS(3728), - [anon_sym_enum] = ACTIONS(3728), - [anon_sym_class] = ACTIONS(3728), - [anon_sym_struct] = ACTIONS(3728), - [anon_sym_union] = ACTIONS(3728), - [anon_sym_typename] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3728), - [anon_sym_decltype] = ACTIONS(3728), - [anon_sym_explicit] = ACTIONS(3728), - [anon_sym_private] = ACTIONS(3728), - [anon_sym_template] = ACTIONS(3728), - [anon_sym_operator] = ACTIONS(3728), - [anon_sym_friend] = ACTIONS(3728), - [anon_sym_public] = ACTIONS(3728), - [anon_sym_protected] = ACTIONS(3728), - [anon_sym_static_assert] = ACTIONS(3728), - [anon_sym_LBRACK_COLON] = ACTIONS(3730), + [STATE(2884)] = { + [sym_identifier] = ACTIONS(8810), + [aux_sym_preproc_def_token1] = ACTIONS(8810), + [aux_sym_preproc_if_token1] = ACTIONS(8810), + [aux_sym_preproc_if_token2] = ACTIONS(8810), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8810), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8810), + [aux_sym_preproc_else_token1] = ACTIONS(8810), + [aux_sym_preproc_elif_token1] = ACTIONS(8810), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8810), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8810), + [sym_preproc_directive] = ACTIONS(8810), + [anon_sym_LPAREN2] = ACTIONS(8812), + [anon_sym_TILDE] = ACTIONS(8812), + [anon_sym_STAR] = ACTIONS(8812), + [anon_sym_AMP_AMP] = ACTIONS(8812), + [anon_sym_AMP] = ACTIONS(8810), + [anon_sym_SEMI] = ACTIONS(8812), + [anon_sym___extension__] = ACTIONS(8810), + [anon_sym_typedef] = ACTIONS(8810), + [anon_sym_virtual] = ACTIONS(8810), + [anon_sym_extern] = ACTIONS(8810), + [anon_sym___attribute__] = ACTIONS(8810), + [anon_sym___attribute] = ACTIONS(8810), + [anon_sym_using] = ACTIONS(8810), + [anon_sym_COLON_COLON] = ACTIONS(8812), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8812), + [anon_sym___declspec] = ACTIONS(8810), + [anon_sym___based] = ACTIONS(8810), + [anon_sym_signed] = ACTIONS(8810), + [anon_sym_unsigned] = ACTIONS(8810), + [anon_sym_long] = ACTIONS(8810), + [anon_sym_short] = ACTIONS(8810), + [anon_sym_LBRACK] = ACTIONS(8810), + [anon_sym_static] = ACTIONS(8810), + [anon_sym_register] = ACTIONS(8810), + [anon_sym_inline] = ACTIONS(8810), + [anon_sym___inline] = ACTIONS(8810), + [anon_sym___inline__] = ACTIONS(8810), + [anon_sym___forceinline] = ACTIONS(8810), + [anon_sym_thread_local] = ACTIONS(8810), + [anon_sym___thread] = ACTIONS(8810), + [anon_sym_const] = ACTIONS(8810), + [anon_sym_constexpr] = ACTIONS(8810), + [anon_sym_volatile] = ACTIONS(8810), + [anon_sym_restrict] = ACTIONS(8810), + [anon_sym___restrict__] = ACTIONS(8810), + [anon_sym__Atomic] = ACTIONS(8810), + [anon_sym__Noreturn] = ACTIONS(8810), + [anon_sym_noreturn] = ACTIONS(8810), + [anon_sym__Nonnull] = ACTIONS(8810), + [anon_sym_mutable] = ACTIONS(8810), + [anon_sym_constinit] = ACTIONS(8810), + [anon_sym_consteval] = ACTIONS(8810), + [anon_sym_alignas] = ACTIONS(8810), + [anon_sym__Alignas] = ACTIONS(8810), + [sym_primitive_type] = ACTIONS(8810), + [anon_sym_enum] = ACTIONS(8810), + [anon_sym_class] = ACTIONS(8810), + [anon_sym_struct] = ACTIONS(8810), + [anon_sym_union] = ACTIONS(8810), + [anon_sym_typename] = ACTIONS(8810), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8810), + [anon_sym_decltype] = ACTIONS(8810), + [anon_sym_explicit] = ACTIONS(8810), + [anon_sym_private] = ACTIONS(8810), + [anon_sym_template] = ACTIONS(8810), + [anon_sym_operator] = ACTIONS(8810), + [anon_sym_friend] = ACTIONS(8810), + [anon_sym_public] = ACTIONS(8810), + [anon_sym_protected] = ACTIONS(8810), + [anon_sym_static_assert] = ACTIONS(8810), + [anon_sym_LBRACK_COLON] = ACTIONS(8812), }, - [STATE(3345)] = { - [sym_identifier] = ACTIONS(3728), - [aux_sym_preproc_def_token1] = ACTIONS(3728), - [aux_sym_preproc_if_token1] = ACTIONS(3728), - [aux_sym_preproc_if_token2] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3728), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3728), - [sym_preproc_directive] = ACTIONS(3728), - [anon_sym_LPAREN2] = ACTIONS(3730), - [anon_sym_TILDE] = ACTIONS(3730), - [anon_sym_STAR] = ACTIONS(3730), - [anon_sym_AMP_AMP] = ACTIONS(3730), - [anon_sym_AMP] = ACTIONS(3728), - [anon_sym_SEMI] = ACTIONS(3730), - [anon_sym___extension__] = ACTIONS(3728), - [anon_sym_typedef] = ACTIONS(3728), - [anon_sym_virtual] = ACTIONS(3728), - [anon_sym_extern] = ACTIONS(3728), - [anon_sym___attribute__] = ACTIONS(3728), - [anon_sym___attribute] = ACTIONS(3728), - [anon_sym_using] = ACTIONS(3728), - [anon_sym_COLON_COLON] = ACTIONS(3730), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3730), - [anon_sym___declspec] = ACTIONS(3728), - [anon_sym___based] = ACTIONS(3728), - [anon_sym_signed] = ACTIONS(3728), - [anon_sym_unsigned] = ACTIONS(3728), - [anon_sym_long] = ACTIONS(3728), - [anon_sym_short] = ACTIONS(3728), - [anon_sym_LBRACK] = ACTIONS(3728), - [anon_sym_static] = ACTIONS(3728), - [anon_sym_register] = ACTIONS(3728), - [anon_sym_inline] = ACTIONS(3728), - [anon_sym___inline] = ACTIONS(3728), - [anon_sym___inline__] = ACTIONS(3728), - [anon_sym___forceinline] = ACTIONS(3728), - [anon_sym_thread_local] = ACTIONS(3728), - [anon_sym___thread] = ACTIONS(3728), - [anon_sym_const] = ACTIONS(3728), - [anon_sym_constexpr] = ACTIONS(3728), - [anon_sym_volatile] = ACTIONS(3728), - [anon_sym_restrict] = ACTIONS(3728), - [anon_sym___restrict__] = ACTIONS(3728), - [anon_sym__Atomic] = ACTIONS(3728), - [anon_sym__Noreturn] = ACTIONS(3728), - [anon_sym_noreturn] = ACTIONS(3728), - [anon_sym__Nonnull] = ACTIONS(3728), - [anon_sym_mutable] = ACTIONS(3728), - [anon_sym_constinit] = ACTIONS(3728), - [anon_sym_consteval] = ACTIONS(3728), - [anon_sym_alignas] = ACTIONS(3728), - [anon_sym__Alignas] = ACTIONS(3728), - [sym_primitive_type] = ACTIONS(3728), - [anon_sym_enum] = ACTIONS(3728), - [anon_sym_class] = ACTIONS(3728), - [anon_sym_struct] = ACTIONS(3728), - [anon_sym_union] = ACTIONS(3728), - [anon_sym_typename] = ACTIONS(3728), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3728), - [anon_sym_decltype] = ACTIONS(3728), - [anon_sym_explicit] = ACTIONS(3728), - [anon_sym_private] = ACTIONS(3728), - [anon_sym_template] = ACTIONS(3728), - [anon_sym_operator] = ACTIONS(3728), - [anon_sym_friend] = ACTIONS(3728), - [anon_sym_public] = ACTIONS(3728), - [anon_sym_protected] = ACTIONS(3728), - [anon_sym_static_assert] = ACTIONS(3728), - [anon_sym_LBRACK_COLON] = ACTIONS(3730), + [STATE(2885)] = { + [sym_attribute_specifier] = STATE(3110), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7415), + [anon_sym_COMMA] = ACTIONS(7415), + [anon_sym_LPAREN2] = ACTIONS(7415), + [anon_sym_DASH] = ACTIONS(7413), + [anon_sym_PLUS] = ACTIONS(7413), + [anon_sym_STAR] = ACTIONS(7413), + [anon_sym_SLASH] = ACTIONS(7413), + [anon_sym_PERCENT] = ACTIONS(7413), + [anon_sym_PIPE_PIPE] = ACTIONS(7415), + [anon_sym_AMP_AMP] = ACTIONS(7415), + [anon_sym_PIPE] = ACTIONS(7413), + [anon_sym_CARET] = ACTIONS(7413), + [anon_sym_AMP] = ACTIONS(7413), + [anon_sym_EQ_EQ] = ACTIONS(7415), + [anon_sym_BANG_EQ] = ACTIONS(7415), + [anon_sym_GT] = ACTIONS(7413), + [anon_sym_GT_EQ] = ACTIONS(7415), + [anon_sym_LT_EQ] = ACTIONS(7413), + [anon_sym_LT] = ACTIONS(7413), + [anon_sym_LT_LT] = ACTIONS(7413), + [anon_sym_GT_GT] = ACTIONS(7413), + [anon_sym___extension__] = ACTIONS(7415), + [anon_sym___attribute__] = ACTIONS(8293), + [anon_sym___attribute] = ACTIONS(8295), + [anon_sym_LBRACE] = ACTIONS(7415), + [anon_sym_LBRACK] = ACTIONS(7415), + [anon_sym_RBRACK] = ACTIONS(7415), + [anon_sym_EQ] = ACTIONS(7413), + [anon_sym_const] = ACTIONS(7413), + [anon_sym_constexpr] = ACTIONS(7415), + [anon_sym_volatile] = ACTIONS(7415), + [anon_sym_restrict] = ACTIONS(7415), + [anon_sym___restrict__] = ACTIONS(7415), + [anon_sym__Atomic] = ACTIONS(7415), + [anon_sym__Noreturn] = ACTIONS(7415), + [anon_sym_noreturn] = ACTIONS(7415), + [anon_sym__Nonnull] = ACTIONS(7415), + [anon_sym_mutable] = ACTIONS(7415), + [anon_sym_constinit] = ACTIONS(7415), + [anon_sym_consteval] = ACTIONS(7415), + [anon_sym_alignas] = ACTIONS(7415), + [anon_sym__Alignas] = ACTIONS(7415), + [anon_sym_QMARK] = ACTIONS(7415), + [anon_sym_STAR_EQ] = ACTIONS(7415), + [anon_sym_SLASH_EQ] = ACTIONS(7415), + [anon_sym_PERCENT_EQ] = ACTIONS(7415), + [anon_sym_PLUS_EQ] = ACTIONS(7415), + [anon_sym_DASH_EQ] = ACTIONS(7415), + [anon_sym_LT_LT_EQ] = ACTIONS(7415), + [anon_sym_GT_GT_EQ] = ACTIONS(7415), + [anon_sym_AMP_EQ] = ACTIONS(7415), + [anon_sym_CARET_EQ] = ACTIONS(7415), + [anon_sym_PIPE_EQ] = ACTIONS(7415), + [anon_sym_and_eq] = ACTIONS(7415), + [anon_sym_or_eq] = ACTIONS(7415), + [anon_sym_xor_eq] = ACTIONS(7415), + [anon_sym_LT_EQ_GT] = ACTIONS(7415), + [anon_sym_or] = ACTIONS(7413), + [anon_sym_and] = ACTIONS(7413), + [anon_sym_bitor] = ACTIONS(7415), + [anon_sym_xor] = ACTIONS(7413), + [anon_sym_bitand] = ACTIONS(7415), + [anon_sym_not_eq] = ACTIONS(7415), + [anon_sym_DASH_DASH] = ACTIONS(7415), + [anon_sym_PLUS_PLUS] = ACTIONS(7415), + [anon_sym_DOT] = ACTIONS(7413), + [anon_sym_DOT_STAR] = ACTIONS(7415), + [anon_sym_DASH_GT] = ACTIONS(7415), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7415), + [anon_sym_override] = ACTIONS(7415), + [anon_sym_requires] = ACTIONS(7415), }, - [STATE(3346)] = { - [sym_identifier] = ACTIONS(3648), - [aux_sym_preproc_def_token1] = ACTIONS(3648), - [aux_sym_preproc_if_token1] = ACTIONS(3648), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3648), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3648), - [sym_preproc_directive] = ACTIONS(3648), - [anon_sym_LPAREN2] = ACTIONS(3650), - [anon_sym_TILDE] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_AMP_AMP] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3650), - [anon_sym___extension__] = ACTIONS(3648), - [anon_sym_typedef] = ACTIONS(3648), - [anon_sym_virtual] = ACTIONS(3648), - [anon_sym_extern] = ACTIONS(3648), - [anon_sym___attribute__] = ACTIONS(3648), - [anon_sym___attribute] = ACTIONS(3648), - [anon_sym_using] = ACTIONS(3648), - [anon_sym_COLON_COLON] = ACTIONS(3650), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), - [anon_sym___declspec] = ACTIONS(3648), - [anon_sym___based] = ACTIONS(3648), - [anon_sym_RBRACE] = ACTIONS(3650), - [anon_sym_signed] = ACTIONS(3648), - [anon_sym_unsigned] = ACTIONS(3648), - [anon_sym_long] = ACTIONS(3648), - [anon_sym_short] = ACTIONS(3648), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_static] = ACTIONS(3648), - [anon_sym_register] = ACTIONS(3648), - [anon_sym_inline] = ACTIONS(3648), - [anon_sym___inline] = ACTIONS(3648), - [anon_sym___inline__] = ACTIONS(3648), - [anon_sym___forceinline] = ACTIONS(3648), - [anon_sym_thread_local] = ACTIONS(3648), - [anon_sym___thread] = ACTIONS(3648), - [anon_sym_const] = ACTIONS(3648), - [anon_sym_constexpr] = ACTIONS(3648), - [anon_sym_volatile] = ACTIONS(3648), - [anon_sym_restrict] = ACTIONS(3648), - [anon_sym___restrict__] = ACTIONS(3648), - [anon_sym__Atomic] = ACTIONS(3648), - [anon_sym__Noreturn] = ACTIONS(3648), - [anon_sym_noreturn] = ACTIONS(3648), - [anon_sym__Nonnull] = ACTIONS(3648), - [anon_sym_mutable] = ACTIONS(3648), - [anon_sym_constinit] = ACTIONS(3648), - [anon_sym_consteval] = ACTIONS(3648), - [anon_sym_alignas] = ACTIONS(3648), - [anon_sym__Alignas] = ACTIONS(3648), - [sym_primitive_type] = ACTIONS(3648), - [anon_sym_enum] = ACTIONS(3648), - [anon_sym_class] = ACTIONS(3648), - [anon_sym_struct] = ACTIONS(3648), - [anon_sym_union] = ACTIONS(3648), - [anon_sym_typename] = ACTIONS(3648), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3648), - [anon_sym_decltype] = ACTIONS(3648), - [anon_sym_explicit] = ACTIONS(3648), - [anon_sym_private] = ACTIONS(3648), - [anon_sym_template] = ACTIONS(3648), - [anon_sym_operator] = ACTIONS(3648), - [anon_sym_friend] = ACTIONS(3648), - [anon_sym_public] = ACTIONS(3648), - [anon_sym_protected] = ACTIONS(3648), - [anon_sym_static_assert] = ACTIONS(3648), - [anon_sym_LBRACK_COLON] = ACTIONS(3650), + [STATE(2886)] = { + [sym_attribute_specifier] = STATE(3183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7429), + [anon_sym_COMMA] = ACTIONS(7429), + [anon_sym_LPAREN2] = ACTIONS(7429), + [anon_sym_DASH] = ACTIONS(7427), + [anon_sym_PLUS] = ACTIONS(7427), + [anon_sym_STAR] = ACTIONS(7427), + [anon_sym_SLASH] = ACTIONS(7427), + [anon_sym_PERCENT] = ACTIONS(7427), + [anon_sym_PIPE_PIPE] = ACTIONS(7429), + [anon_sym_AMP_AMP] = ACTIONS(7429), + [anon_sym_PIPE] = ACTIONS(7427), + [anon_sym_CARET] = ACTIONS(7427), + [anon_sym_AMP] = ACTIONS(7427), + [anon_sym_EQ_EQ] = ACTIONS(7429), + [anon_sym_BANG_EQ] = ACTIONS(7429), + [anon_sym_GT] = ACTIONS(7427), + [anon_sym_GT_EQ] = ACTIONS(7427), + [anon_sym_LT_EQ] = ACTIONS(7427), + [anon_sym_LT] = ACTIONS(7427), + [anon_sym_LT_LT] = ACTIONS(7427), + [anon_sym_GT_GT] = ACTIONS(7427), + [anon_sym___extension__] = ACTIONS(7429), + [anon_sym___attribute__] = ACTIONS(8265), + [anon_sym___attribute] = ACTIONS(8267), + [anon_sym_LBRACE] = ACTIONS(7429), + [anon_sym_LBRACK] = ACTIONS(7429), + [anon_sym_EQ] = ACTIONS(7427), + [anon_sym_const] = ACTIONS(7427), + [anon_sym_constexpr] = ACTIONS(7429), + [anon_sym_volatile] = ACTIONS(7429), + [anon_sym_restrict] = ACTIONS(7429), + [anon_sym___restrict__] = ACTIONS(7429), + [anon_sym__Atomic] = ACTIONS(7429), + [anon_sym__Noreturn] = ACTIONS(7429), + [anon_sym_noreturn] = ACTIONS(7429), + [anon_sym__Nonnull] = ACTIONS(7429), + [anon_sym_mutable] = ACTIONS(7429), + [anon_sym_constinit] = ACTIONS(7429), + [anon_sym_consteval] = ACTIONS(7429), + [anon_sym_alignas] = ACTIONS(7429), + [anon_sym__Alignas] = ACTIONS(7429), + [anon_sym_QMARK] = ACTIONS(7429), + [anon_sym_STAR_EQ] = ACTIONS(7429), + [anon_sym_SLASH_EQ] = ACTIONS(7429), + [anon_sym_PERCENT_EQ] = ACTIONS(7429), + [anon_sym_PLUS_EQ] = ACTIONS(7429), + [anon_sym_DASH_EQ] = ACTIONS(7429), + [anon_sym_LT_LT_EQ] = ACTIONS(7429), + [anon_sym_GT_GT_EQ] = ACTIONS(7427), + [anon_sym_AMP_EQ] = ACTIONS(7429), + [anon_sym_CARET_EQ] = ACTIONS(7429), + [anon_sym_PIPE_EQ] = ACTIONS(7429), + [anon_sym_and_eq] = ACTIONS(7429), + [anon_sym_or_eq] = ACTIONS(7429), + [anon_sym_xor_eq] = ACTIONS(7429), + [anon_sym_LT_EQ_GT] = ACTIONS(7429), + [anon_sym_or] = ACTIONS(7427), + [anon_sym_and] = ACTIONS(7427), + [anon_sym_bitor] = ACTIONS(7429), + [anon_sym_xor] = ACTIONS(7427), + [anon_sym_bitand] = ACTIONS(7429), + [anon_sym_not_eq] = ACTIONS(7429), + [anon_sym_DASH_DASH] = ACTIONS(7429), + [anon_sym_PLUS_PLUS] = ACTIONS(7429), + [anon_sym_DOT] = ACTIONS(7427), + [anon_sym_DOT_STAR] = ACTIONS(7429), + [anon_sym_DASH_GT] = ACTIONS(7429), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7429), + [anon_sym_override] = ACTIONS(7429), + [anon_sym_GT2] = ACTIONS(7429), + [anon_sym_requires] = ACTIONS(7429), }, - [STATE(3347)] = { - [sym_identifier] = ACTIONS(4086), - [aux_sym_preproc_def_token1] = ACTIONS(4086), - [aux_sym_preproc_if_token1] = ACTIONS(4086), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4086), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4086), - [sym_preproc_directive] = ACTIONS(4086), - [anon_sym_LPAREN2] = ACTIONS(4088), - [anon_sym_TILDE] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [anon_sym_AMP_AMP] = ACTIONS(4088), - [anon_sym_AMP] = ACTIONS(4086), - [anon_sym_SEMI] = ACTIONS(4088), - [anon_sym___extension__] = ACTIONS(4086), - [anon_sym_typedef] = ACTIONS(4086), - [anon_sym_virtual] = ACTIONS(4086), - [anon_sym_extern] = ACTIONS(4086), - [anon_sym___attribute__] = ACTIONS(4086), - [anon_sym___attribute] = ACTIONS(4086), - [anon_sym_using] = ACTIONS(4086), - [anon_sym_COLON_COLON] = ACTIONS(4088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4088), - [anon_sym___declspec] = ACTIONS(4086), - [anon_sym___based] = ACTIONS(4086), - [anon_sym_RBRACE] = ACTIONS(4088), - [anon_sym_signed] = ACTIONS(4086), - [anon_sym_unsigned] = ACTIONS(4086), - [anon_sym_long] = ACTIONS(4086), - [anon_sym_short] = ACTIONS(4086), - [anon_sym_LBRACK] = ACTIONS(4086), - [anon_sym_static] = ACTIONS(4086), - [anon_sym_register] = ACTIONS(4086), - [anon_sym_inline] = ACTIONS(4086), - [anon_sym___inline] = ACTIONS(4086), - [anon_sym___inline__] = ACTIONS(4086), - [anon_sym___forceinline] = ACTIONS(4086), - [anon_sym_thread_local] = ACTIONS(4086), - [anon_sym___thread] = ACTIONS(4086), - [anon_sym_const] = ACTIONS(4086), - [anon_sym_constexpr] = ACTIONS(4086), - [anon_sym_volatile] = ACTIONS(4086), - [anon_sym_restrict] = ACTIONS(4086), - [anon_sym___restrict__] = ACTIONS(4086), - [anon_sym__Atomic] = ACTIONS(4086), - [anon_sym__Noreturn] = ACTIONS(4086), - [anon_sym_noreturn] = ACTIONS(4086), - [anon_sym__Nonnull] = ACTIONS(4086), - [anon_sym_mutable] = ACTIONS(4086), - [anon_sym_constinit] = ACTIONS(4086), - [anon_sym_consteval] = ACTIONS(4086), - [anon_sym_alignas] = ACTIONS(4086), - [anon_sym__Alignas] = ACTIONS(4086), - [sym_primitive_type] = ACTIONS(4086), - [anon_sym_enum] = ACTIONS(4086), - [anon_sym_class] = ACTIONS(4086), - [anon_sym_struct] = ACTIONS(4086), - [anon_sym_union] = ACTIONS(4086), - [anon_sym_typename] = ACTIONS(4086), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4086), - [anon_sym_decltype] = ACTIONS(4086), - [anon_sym_explicit] = ACTIONS(4086), - [anon_sym_private] = ACTIONS(4086), - [anon_sym_template] = ACTIONS(4086), - [anon_sym_operator] = ACTIONS(4086), - [anon_sym_friend] = ACTIONS(4086), - [anon_sym_public] = ACTIONS(4086), - [anon_sym_protected] = ACTIONS(4086), - [anon_sym_static_assert] = ACTIONS(4086), - [anon_sym_LBRACK_COLON] = ACTIONS(4088), + [STATE(2887)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7633), + [anon_sym_COMMA] = ACTIONS(7633), + [anon_sym_RPAREN] = ACTIONS(7633), + [anon_sym_LPAREN2] = ACTIONS(7633), + [anon_sym_DASH] = ACTIONS(7631), + [anon_sym_PLUS] = ACTIONS(7631), + [anon_sym_STAR] = ACTIONS(7631), + [anon_sym_SLASH] = ACTIONS(7631), + [anon_sym_PERCENT] = ACTIONS(7631), + [anon_sym_PIPE_PIPE] = ACTIONS(7633), + [anon_sym_AMP_AMP] = ACTIONS(7633), + [anon_sym_PIPE] = ACTIONS(7631), + [anon_sym_CARET] = ACTIONS(7631), + [anon_sym_AMP] = ACTIONS(7631), + [anon_sym_EQ_EQ] = ACTIONS(7633), + [anon_sym_BANG_EQ] = ACTIONS(7633), + [anon_sym_GT] = ACTIONS(7631), + [anon_sym_GT_EQ] = ACTIONS(7633), + [anon_sym_LT_EQ] = ACTIONS(7631), + [anon_sym_LT] = ACTIONS(7631), + [anon_sym_LT_LT] = ACTIONS(7631), + [anon_sym_GT_GT] = ACTIONS(7631), + [anon_sym___extension__] = ACTIONS(7633), + [anon_sym___attribute__] = ACTIONS(7633), + [anon_sym___attribute] = ACTIONS(7631), + [anon_sym_LBRACE] = ACTIONS(7633), + [anon_sym_LBRACK] = ACTIONS(7633), + [anon_sym_EQ] = ACTIONS(7631), + [anon_sym_const] = ACTIONS(7631), + [anon_sym_constexpr] = ACTIONS(7633), + [anon_sym_volatile] = ACTIONS(7633), + [anon_sym_restrict] = ACTIONS(7633), + [anon_sym___restrict__] = ACTIONS(7633), + [anon_sym__Atomic] = ACTIONS(7633), + [anon_sym__Noreturn] = ACTIONS(7633), + [anon_sym_noreturn] = ACTIONS(7633), + [anon_sym__Nonnull] = ACTIONS(7633), + [anon_sym_mutable] = ACTIONS(7633), + [anon_sym_constinit] = ACTIONS(7633), + [anon_sym_consteval] = ACTIONS(7633), + [anon_sym_alignas] = ACTIONS(7633), + [anon_sym__Alignas] = ACTIONS(7633), + [anon_sym_QMARK] = ACTIONS(7633), + [anon_sym_STAR_EQ] = ACTIONS(7633), + [anon_sym_SLASH_EQ] = ACTIONS(7633), + [anon_sym_PERCENT_EQ] = ACTIONS(7633), + [anon_sym_PLUS_EQ] = ACTIONS(7633), + [anon_sym_DASH_EQ] = ACTIONS(7633), + [anon_sym_LT_LT_EQ] = ACTIONS(7633), + [anon_sym_GT_GT_EQ] = ACTIONS(7633), + [anon_sym_AMP_EQ] = ACTIONS(7633), + [anon_sym_CARET_EQ] = ACTIONS(7633), + [anon_sym_PIPE_EQ] = ACTIONS(7633), + [anon_sym_and_eq] = ACTIONS(7633), + [anon_sym_or_eq] = ACTIONS(7633), + [anon_sym_xor_eq] = ACTIONS(7633), + [anon_sym_LT_EQ_GT] = ACTIONS(7633), + [anon_sym_or] = ACTIONS(7631), + [anon_sym_and] = ACTIONS(7631), + [anon_sym_bitor] = ACTIONS(7633), + [anon_sym_xor] = ACTIONS(7631), + [anon_sym_bitand] = ACTIONS(7633), + [anon_sym_not_eq] = ACTIONS(7633), + [anon_sym_DASH_DASH] = ACTIONS(7633), + [anon_sym_PLUS_PLUS] = ACTIONS(7633), + [anon_sym_DOT] = ACTIONS(7631), + [anon_sym_DOT_STAR] = ACTIONS(7633), + [anon_sym_DASH_GT] = ACTIONS(7631), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7633), + [anon_sym_override] = ACTIONS(7633), + [anon_sym_requires] = ACTIONS(7633), + [anon_sym_DASH_GT_STAR] = ACTIONS(7633), }, - [STATE(3348)] = { - [sym_identifier] = ACTIONS(3906), - [aux_sym_preproc_def_token1] = ACTIONS(3906), - [aux_sym_preproc_if_token1] = ACTIONS(3906), - [aux_sym_preproc_if_token2] = ACTIONS(3906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3906), - [sym_preproc_directive] = ACTIONS(3906), - [anon_sym_LPAREN2] = ACTIONS(3908), - [anon_sym_TILDE] = ACTIONS(3908), - [anon_sym_STAR] = ACTIONS(3908), - [anon_sym_AMP_AMP] = ACTIONS(3908), - [anon_sym_AMP] = ACTIONS(3906), - [anon_sym_SEMI] = ACTIONS(3908), - [anon_sym___extension__] = ACTIONS(3906), - [anon_sym_typedef] = ACTIONS(3906), - [anon_sym_virtual] = ACTIONS(3906), - [anon_sym_extern] = ACTIONS(3906), - [anon_sym___attribute__] = ACTIONS(3906), - [anon_sym___attribute] = ACTIONS(3906), - [anon_sym_using] = ACTIONS(3906), - [anon_sym_COLON_COLON] = ACTIONS(3908), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3908), - [anon_sym___declspec] = ACTIONS(3906), - [anon_sym___based] = ACTIONS(3906), - [anon_sym_signed] = ACTIONS(3906), - [anon_sym_unsigned] = ACTIONS(3906), - [anon_sym_long] = ACTIONS(3906), - [anon_sym_short] = ACTIONS(3906), - [anon_sym_LBRACK] = ACTIONS(3906), - [anon_sym_static] = ACTIONS(3906), - [anon_sym_register] = ACTIONS(3906), - [anon_sym_inline] = ACTIONS(3906), - [anon_sym___inline] = ACTIONS(3906), - [anon_sym___inline__] = ACTIONS(3906), - [anon_sym___forceinline] = ACTIONS(3906), - [anon_sym_thread_local] = ACTIONS(3906), - [anon_sym___thread] = ACTIONS(3906), - [anon_sym_const] = ACTIONS(3906), - [anon_sym_constexpr] = ACTIONS(3906), - [anon_sym_volatile] = ACTIONS(3906), - [anon_sym_restrict] = ACTIONS(3906), - [anon_sym___restrict__] = ACTIONS(3906), - [anon_sym__Atomic] = ACTIONS(3906), - [anon_sym__Noreturn] = ACTIONS(3906), - [anon_sym_noreturn] = ACTIONS(3906), - [anon_sym__Nonnull] = ACTIONS(3906), - [anon_sym_mutable] = ACTIONS(3906), - [anon_sym_constinit] = ACTIONS(3906), - [anon_sym_consteval] = ACTIONS(3906), - [anon_sym_alignas] = ACTIONS(3906), - [anon_sym__Alignas] = ACTIONS(3906), - [sym_primitive_type] = ACTIONS(3906), - [anon_sym_enum] = ACTIONS(3906), - [anon_sym_class] = ACTIONS(3906), - [anon_sym_struct] = ACTIONS(3906), - [anon_sym_union] = ACTIONS(3906), - [anon_sym_typename] = ACTIONS(3906), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3906), - [anon_sym_decltype] = ACTIONS(3906), - [anon_sym_explicit] = ACTIONS(3906), - [anon_sym_private] = ACTIONS(3906), - [anon_sym_template] = ACTIONS(3906), - [anon_sym_operator] = ACTIONS(3906), - [anon_sym_friend] = ACTIONS(3906), - [anon_sym_public] = ACTIONS(3906), - [anon_sym_protected] = ACTIONS(3906), - [anon_sym_static_assert] = ACTIONS(3906), - [anon_sym_LBRACK_COLON] = ACTIONS(3908), + [STATE(2888)] = { + [sym_identifier] = ACTIONS(3618), + [aux_sym_preproc_def_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token2] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), + [aux_sym_preproc_else_token1] = ACTIONS(3618), + [aux_sym_preproc_elif_token1] = ACTIONS(3618), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3618), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3618), + [sym_preproc_directive] = ACTIONS(3618), + [anon_sym_LPAREN2] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_AMP] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym___extension__] = ACTIONS(3618), + [anon_sym_typedef] = ACTIONS(3618), + [anon_sym_virtual] = ACTIONS(3618), + [anon_sym_extern] = ACTIONS(3618), + [anon_sym___attribute__] = ACTIONS(3618), + [anon_sym___attribute] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_COLON_COLON] = ACTIONS(3620), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), + [anon_sym___declspec] = ACTIONS(3618), + [anon_sym___based] = ACTIONS(3618), + [anon_sym_signed] = ACTIONS(3618), + [anon_sym_unsigned] = ACTIONS(3618), + [anon_sym_long] = ACTIONS(3618), + [anon_sym_short] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_register] = ACTIONS(3618), + [anon_sym_inline] = ACTIONS(3618), + [anon_sym___inline] = ACTIONS(3618), + [anon_sym___inline__] = ACTIONS(3618), + [anon_sym___forceinline] = ACTIONS(3618), + [anon_sym_thread_local] = ACTIONS(3618), + [anon_sym___thread] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_constexpr] = ACTIONS(3618), + [anon_sym_volatile] = ACTIONS(3618), + [anon_sym_restrict] = ACTIONS(3618), + [anon_sym___restrict__] = ACTIONS(3618), + [anon_sym__Atomic] = ACTIONS(3618), + [anon_sym__Noreturn] = ACTIONS(3618), + [anon_sym_noreturn] = ACTIONS(3618), + [anon_sym__Nonnull] = ACTIONS(3618), + [anon_sym_mutable] = ACTIONS(3618), + [anon_sym_constinit] = ACTIONS(3618), + [anon_sym_consteval] = ACTIONS(3618), + [anon_sym_alignas] = ACTIONS(3618), + [anon_sym__Alignas] = ACTIONS(3618), + [sym_primitive_type] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_struct] = ACTIONS(3618), + [anon_sym_union] = ACTIONS(3618), + [anon_sym_typename] = ACTIONS(3618), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3618), + [anon_sym_decltype] = ACTIONS(3618), + [anon_sym_explicit] = ACTIONS(3618), + [anon_sym_private] = ACTIONS(3618), + [anon_sym_template] = ACTIONS(3618), + [anon_sym_operator] = ACTIONS(3618), + [anon_sym_friend] = ACTIONS(3618), + [anon_sym_public] = ACTIONS(3618), + [anon_sym_protected] = ACTIONS(3618), + [anon_sym_static_assert] = ACTIONS(3618), + [anon_sym_LBRACK_COLON] = ACTIONS(3620), }, - [STATE(3349)] = { - [sym_identifier] = ACTIONS(3890), - [aux_sym_preproc_def_token1] = ACTIONS(3890), - [aux_sym_preproc_if_token1] = ACTIONS(3890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3890), - [sym_preproc_directive] = ACTIONS(3890), - [anon_sym_LPAREN2] = ACTIONS(3892), - [anon_sym_TILDE] = ACTIONS(3892), - [anon_sym_STAR] = ACTIONS(3892), - [anon_sym_AMP_AMP] = ACTIONS(3892), - [anon_sym_AMP] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3892), - [anon_sym___extension__] = ACTIONS(3890), - [anon_sym_typedef] = ACTIONS(3890), - [anon_sym_virtual] = ACTIONS(3890), - [anon_sym_extern] = ACTIONS(3890), - [anon_sym___attribute__] = ACTIONS(3890), - [anon_sym___attribute] = ACTIONS(3890), - [anon_sym_using] = ACTIONS(3890), - [anon_sym_COLON_COLON] = ACTIONS(3892), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3892), - [anon_sym___declspec] = ACTIONS(3890), - [anon_sym___based] = ACTIONS(3890), - [anon_sym_RBRACE] = ACTIONS(3892), - [anon_sym_signed] = ACTIONS(3890), - [anon_sym_unsigned] = ACTIONS(3890), - [anon_sym_long] = ACTIONS(3890), - [anon_sym_short] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_static] = ACTIONS(3890), - [anon_sym_register] = ACTIONS(3890), - [anon_sym_inline] = ACTIONS(3890), - [anon_sym___inline] = ACTIONS(3890), - [anon_sym___inline__] = ACTIONS(3890), - [anon_sym___forceinline] = ACTIONS(3890), - [anon_sym_thread_local] = ACTIONS(3890), - [anon_sym___thread] = ACTIONS(3890), - [anon_sym_const] = ACTIONS(3890), - [anon_sym_constexpr] = ACTIONS(3890), - [anon_sym_volatile] = ACTIONS(3890), - [anon_sym_restrict] = ACTIONS(3890), - [anon_sym___restrict__] = ACTIONS(3890), - [anon_sym__Atomic] = ACTIONS(3890), - [anon_sym__Noreturn] = ACTIONS(3890), - [anon_sym_noreturn] = ACTIONS(3890), - [anon_sym__Nonnull] = ACTIONS(3890), - [anon_sym_mutable] = ACTIONS(3890), - [anon_sym_constinit] = ACTIONS(3890), - [anon_sym_consteval] = ACTIONS(3890), - [anon_sym_alignas] = ACTIONS(3890), - [anon_sym__Alignas] = ACTIONS(3890), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_enum] = ACTIONS(3890), - [anon_sym_class] = ACTIONS(3890), - [anon_sym_struct] = ACTIONS(3890), - [anon_sym_union] = ACTIONS(3890), - [anon_sym_typename] = ACTIONS(3890), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3890), - [anon_sym_decltype] = ACTIONS(3890), - [anon_sym_explicit] = ACTIONS(3890), - [anon_sym_private] = ACTIONS(3890), - [anon_sym_template] = ACTIONS(3890), - [anon_sym_operator] = ACTIONS(3890), - [anon_sym_friend] = ACTIONS(3890), - [anon_sym_public] = ACTIONS(3890), - [anon_sym_protected] = ACTIONS(3890), - [anon_sym_static_assert] = ACTIONS(3890), - [anon_sym_LBRACK_COLON] = ACTIONS(3892), + [STATE(2889)] = { + [sym_identifier] = ACTIONS(8814), + [aux_sym_preproc_def_token1] = ACTIONS(8814), + [aux_sym_preproc_if_token1] = ACTIONS(8814), + [aux_sym_preproc_if_token2] = ACTIONS(8814), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8814), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8814), + [aux_sym_preproc_else_token1] = ACTIONS(8814), + [aux_sym_preproc_elif_token1] = ACTIONS(8814), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8814), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8814), + [sym_preproc_directive] = ACTIONS(8814), + [anon_sym_LPAREN2] = ACTIONS(8816), + [anon_sym_TILDE] = ACTIONS(8816), + [anon_sym_STAR] = ACTIONS(8816), + [anon_sym_AMP_AMP] = ACTIONS(8816), + [anon_sym_AMP] = ACTIONS(8814), + [anon_sym_SEMI] = ACTIONS(8816), + [anon_sym___extension__] = ACTIONS(8814), + [anon_sym_typedef] = ACTIONS(8814), + [anon_sym_virtual] = ACTIONS(8814), + [anon_sym_extern] = ACTIONS(8814), + [anon_sym___attribute__] = ACTIONS(8814), + [anon_sym___attribute] = ACTIONS(8814), + [anon_sym_using] = ACTIONS(8814), + [anon_sym_COLON_COLON] = ACTIONS(8816), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8816), + [anon_sym___declspec] = ACTIONS(8814), + [anon_sym___based] = ACTIONS(8814), + [anon_sym_signed] = ACTIONS(8814), + [anon_sym_unsigned] = ACTIONS(8814), + [anon_sym_long] = ACTIONS(8814), + [anon_sym_short] = ACTIONS(8814), + [anon_sym_LBRACK] = ACTIONS(8814), + [anon_sym_static] = ACTIONS(8814), + [anon_sym_register] = ACTIONS(8814), + [anon_sym_inline] = ACTIONS(8814), + [anon_sym___inline] = ACTIONS(8814), + [anon_sym___inline__] = ACTIONS(8814), + [anon_sym___forceinline] = ACTIONS(8814), + [anon_sym_thread_local] = ACTIONS(8814), + [anon_sym___thread] = ACTIONS(8814), + [anon_sym_const] = ACTIONS(8814), + [anon_sym_constexpr] = ACTIONS(8814), + [anon_sym_volatile] = ACTIONS(8814), + [anon_sym_restrict] = ACTIONS(8814), + [anon_sym___restrict__] = ACTIONS(8814), + [anon_sym__Atomic] = ACTIONS(8814), + [anon_sym__Noreturn] = ACTIONS(8814), + [anon_sym_noreturn] = ACTIONS(8814), + [anon_sym__Nonnull] = ACTIONS(8814), + [anon_sym_mutable] = ACTIONS(8814), + [anon_sym_constinit] = ACTIONS(8814), + [anon_sym_consteval] = ACTIONS(8814), + [anon_sym_alignas] = ACTIONS(8814), + [anon_sym__Alignas] = ACTIONS(8814), + [sym_primitive_type] = ACTIONS(8814), + [anon_sym_enum] = ACTIONS(8814), + [anon_sym_class] = ACTIONS(8814), + [anon_sym_struct] = ACTIONS(8814), + [anon_sym_union] = ACTIONS(8814), + [anon_sym_typename] = ACTIONS(8814), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8814), + [anon_sym_decltype] = ACTIONS(8814), + [anon_sym_explicit] = ACTIONS(8814), + [anon_sym_private] = ACTIONS(8814), + [anon_sym_template] = ACTIONS(8814), + [anon_sym_operator] = ACTIONS(8814), + [anon_sym_friend] = ACTIONS(8814), + [anon_sym_public] = ACTIONS(8814), + [anon_sym_protected] = ACTIONS(8814), + [anon_sym_static_assert] = ACTIONS(8814), + [anon_sym_LBRACK_COLON] = ACTIONS(8816), }, - [STATE(3350)] = { - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym___attribute] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym_RBRACE] = ACTIONS(3632), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym__Nonnull] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym__Alignas] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_private] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_friend] = ACTIONS(3630), - [anon_sym_public] = ACTIONS(3630), - [anon_sym_protected] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), - [anon_sym_LBRACK_COLON] = ACTIONS(3632), + [STATE(2890)] = { + [sym_identifier] = ACTIONS(8818), + [aux_sym_preproc_def_token1] = ACTIONS(8818), + [aux_sym_preproc_if_token1] = ACTIONS(8818), + [aux_sym_preproc_if_token2] = ACTIONS(8818), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8818), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8818), + [aux_sym_preproc_else_token1] = ACTIONS(8818), + [aux_sym_preproc_elif_token1] = ACTIONS(8818), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8818), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8818), + [sym_preproc_directive] = ACTIONS(8818), + [anon_sym_LPAREN2] = ACTIONS(8820), + [anon_sym_TILDE] = ACTIONS(8820), + [anon_sym_STAR] = ACTIONS(8820), + [anon_sym_AMP_AMP] = ACTIONS(8820), + [anon_sym_AMP] = ACTIONS(8818), + [anon_sym_SEMI] = ACTIONS(8820), + [anon_sym___extension__] = ACTIONS(8818), + [anon_sym_typedef] = ACTIONS(8818), + [anon_sym_virtual] = ACTIONS(8818), + [anon_sym_extern] = ACTIONS(8818), + [anon_sym___attribute__] = ACTIONS(8818), + [anon_sym___attribute] = ACTIONS(8818), + [anon_sym_using] = ACTIONS(8818), + [anon_sym_COLON_COLON] = ACTIONS(8820), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8820), + [anon_sym___declspec] = ACTIONS(8818), + [anon_sym___based] = ACTIONS(8818), + [anon_sym_signed] = ACTIONS(8818), + [anon_sym_unsigned] = ACTIONS(8818), + [anon_sym_long] = ACTIONS(8818), + [anon_sym_short] = ACTIONS(8818), + [anon_sym_LBRACK] = ACTIONS(8818), + [anon_sym_static] = ACTIONS(8818), + [anon_sym_register] = ACTIONS(8818), + [anon_sym_inline] = ACTIONS(8818), + [anon_sym___inline] = ACTIONS(8818), + [anon_sym___inline__] = ACTIONS(8818), + [anon_sym___forceinline] = ACTIONS(8818), + [anon_sym_thread_local] = ACTIONS(8818), + [anon_sym___thread] = ACTIONS(8818), + [anon_sym_const] = ACTIONS(8818), + [anon_sym_constexpr] = ACTIONS(8818), + [anon_sym_volatile] = ACTIONS(8818), + [anon_sym_restrict] = ACTIONS(8818), + [anon_sym___restrict__] = ACTIONS(8818), + [anon_sym__Atomic] = ACTIONS(8818), + [anon_sym__Noreturn] = ACTIONS(8818), + [anon_sym_noreturn] = ACTIONS(8818), + [anon_sym__Nonnull] = ACTIONS(8818), + [anon_sym_mutable] = ACTIONS(8818), + [anon_sym_constinit] = ACTIONS(8818), + [anon_sym_consteval] = ACTIONS(8818), + [anon_sym_alignas] = ACTIONS(8818), + [anon_sym__Alignas] = ACTIONS(8818), + [sym_primitive_type] = ACTIONS(8818), + [anon_sym_enum] = ACTIONS(8818), + [anon_sym_class] = ACTIONS(8818), + [anon_sym_struct] = ACTIONS(8818), + [anon_sym_union] = ACTIONS(8818), + [anon_sym_typename] = ACTIONS(8818), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8818), + [anon_sym_decltype] = ACTIONS(8818), + [anon_sym_explicit] = ACTIONS(8818), + [anon_sym_private] = ACTIONS(8818), + [anon_sym_template] = ACTIONS(8818), + [anon_sym_operator] = ACTIONS(8818), + [anon_sym_friend] = ACTIONS(8818), + [anon_sym_public] = ACTIONS(8818), + [anon_sym_protected] = ACTIONS(8818), + [anon_sym_static_assert] = ACTIONS(8818), + [anon_sym_LBRACK_COLON] = ACTIONS(8820), }, - [STATE(3351)] = { - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym___attribute] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym_RBRACE] = ACTIONS(3632), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym__Nonnull] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym__Alignas] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), + [STATE(2891)] = { + [sym_attribute_specifier] = STATE(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7429), + [anon_sym_COMMA] = ACTIONS(7429), + [anon_sym_LPAREN2] = ACTIONS(7429), + [anon_sym_DASH] = ACTIONS(7427), + [anon_sym_PLUS] = ACTIONS(7427), + [anon_sym_STAR] = ACTIONS(7427), + [anon_sym_SLASH] = ACTIONS(7427), + [anon_sym_PERCENT] = ACTIONS(7427), + [anon_sym_PIPE_PIPE] = ACTIONS(7429), + [anon_sym_AMP_AMP] = ACTIONS(7429), + [anon_sym_PIPE] = ACTIONS(7427), + [anon_sym_CARET] = ACTIONS(7427), + [anon_sym_AMP] = ACTIONS(7427), + [anon_sym_EQ_EQ] = ACTIONS(7429), + [anon_sym_BANG_EQ] = ACTIONS(7429), + [anon_sym_GT] = ACTIONS(7427), + [anon_sym_GT_EQ] = ACTIONS(7429), + [anon_sym_LT_EQ] = ACTIONS(7427), + [anon_sym_LT] = ACTIONS(7427), + [anon_sym_LT_LT] = ACTIONS(7427), + [anon_sym_GT_GT] = ACTIONS(7427), + [anon_sym___extension__] = ACTIONS(7429), + [anon_sym___attribute__] = ACTIONS(8293), + [anon_sym___attribute] = ACTIONS(8295), + [anon_sym_LBRACE] = ACTIONS(7429), + [anon_sym_LBRACK] = ACTIONS(7429), + [anon_sym_RBRACK] = ACTIONS(7429), + [anon_sym_EQ] = ACTIONS(7427), + [anon_sym_const] = ACTIONS(7427), + [anon_sym_constexpr] = ACTIONS(7429), + [anon_sym_volatile] = ACTIONS(7429), + [anon_sym_restrict] = ACTIONS(7429), + [anon_sym___restrict__] = ACTIONS(7429), + [anon_sym__Atomic] = ACTIONS(7429), + [anon_sym__Noreturn] = ACTIONS(7429), + [anon_sym_noreturn] = ACTIONS(7429), + [anon_sym__Nonnull] = ACTIONS(7429), + [anon_sym_mutable] = ACTIONS(7429), + [anon_sym_constinit] = ACTIONS(7429), + [anon_sym_consteval] = ACTIONS(7429), + [anon_sym_alignas] = ACTIONS(7429), + [anon_sym__Alignas] = ACTIONS(7429), + [anon_sym_QMARK] = ACTIONS(7429), + [anon_sym_STAR_EQ] = ACTIONS(7429), + [anon_sym_SLASH_EQ] = ACTIONS(7429), + [anon_sym_PERCENT_EQ] = ACTIONS(7429), + [anon_sym_PLUS_EQ] = ACTIONS(7429), + [anon_sym_DASH_EQ] = ACTIONS(7429), + [anon_sym_LT_LT_EQ] = ACTIONS(7429), + [anon_sym_GT_GT_EQ] = ACTIONS(7429), + [anon_sym_AMP_EQ] = ACTIONS(7429), + [anon_sym_CARET_EQ] = ACTIONS(7429), + [anon_sym_PIPE_EQ] = ACTIONS(7429), + [anon_sym_and_eq] = ACTIONS(7429), + [anon_sym_or_eq] = ACTIONS(7429), + [anon_sym_xor_eq] = ACTIONS(7429), + [anon_sym_LT_EQ_GT] = ACTIONS(7429), + [anon_sym_or] = ACTIONS(7427), + [anon_sym_and] = ACTIONS(7427), + [anon_sym_bitor] = ACTIONS(7429), + [anon_sym_xor] = ACTIONS(7427), + [anon_sym_bitand] = ACTIONS(7429), + [anon_sym_not_eq] = ACTIONS(7429), + [anon_sym_DASH_DASH] = ACTIONS(7429), + [anon_sym_PLUS_PLUS] = ACTIONS(7429), + [anon_sym_DOT] = ACTIONS(7427), + [anon_sym_DOT_STAR] = ACTIONS(7429), + [anon_sym_DASH_GT] = ACTIONS(7429), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7429), + [anon_sym_override] = ACTIONS(7429), + [anon_sym_requires] = ACTIONS(7429), + }, + [STATE(2892)] = { + [sym_identifier] = ACTIONS(3622), + [aux_sym_preproc_def_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token2] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), + [aux_sym_preproc_else_token1] = ACTIONS(3622), + [aux_sym_preproc_elif_token1] = ACTIONS(3622), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3622), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3622), + [sym_preproc_directive] = ACTIONS(3622), + [anon_sym_LPAREN2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_STAR] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_AMP] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym___extension__] = ACTIONS(3622), + [anon_sym_typedef] = ACTIONS(3622), + [anon_sym_virtual] = ACTIONS(3622), + [anon_sym_extern] = ACTIONS(3622), + [anon_sym___attribute__] = ACTIONS(3622), + [anon_sym___attribute] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_COLON_COLON] = ACTIONS(3624), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), + [anon_sym___declspec] = ACTIONS(3622), + [anon_sym___based] = ACTIONS(3622), + [anon_sym_signed] = ACTIONS(3622), + [anon_sym_unsigned] = ACTIONS(3622), + [anon_sym_long] = ACTIONS(3622), + [anon_sym_short] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_register] = ACTIONS(3622), + [anon_sym_inline] = ACTIONS(3622), + [anon_sym___inline] = ACTIONS(3622), + [anon_sym___inline__] = ACTIONS(3622), + [anon_sym___forceinline] = ACTIONS(3622), + [anon_sym_thread_local] = ACTIONS(3622), + [anon_sym___thread] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_constexpr] = ACTIONS(3622), + [anon_sym_volatile] = ACTIONS(3622), + [anon_sym_restrict] = ACTIONS(3622), + [anon_sym___restrict__] = ACTIONS(3622), + [anon_sym__Atomic] = ACTIONS(3622), + [anon_sym__Noreturn] = ACTIONS(3622), + [anon_sym_noreturn] = ACTIONS(3622), + [anon_sym__Nonnull] = ACTIONS(3622), + [anon_sym_mutable] = ACTIONS(3622), + [anon_sym_constinit] = ACTIONS(3622), + [anon_sym_consteval] = ACTIONS(3622), + [anon_sym_alignas] = ACTIONS(3622), + [anon_sym__Alignas] = ACTIONS(3622), + [sym_primitive_type] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_struct] = ACTIONS(3622), + [anon_sym_union] = ACTIONS(3622), + [anon_sym_typename] = ACTIONS(3622), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_private] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_friend] = ACTIONS(3630), - [anon_sym_public] = ACTIONS(3630), - [anon_sym_protected] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), - [anon_sym_LBRACK_COLON] = ACTIONS(3632), + [sym_auto] = ACTIONS(3622), + [anon_sym_decltype] = ACTIONS(3622), + [anon_sym_explicit] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_template] = ACTIONS(3622), + [anon_sym_operator] = ACTIONS(3622), + [anon_sym_friend] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_static_assert] = ACTIONS(3622), + [anon_sym_LBRACK_COLON] = ACTIONS(3624), }, - [STATE(3352)] = { - [sym_identifier] = ACTIONS(3704), - [aux_sym_preproc_def_token1] = ACTIONS(3704), - [aux_sym_preproc_if_token1] = ACTIONS(3704), - [aux_sym_preproc_if_token2] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), - [sym_preproc_directive] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3706), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3706), - [anon_sym___extension__] = ACTIONS(3704), - [anon_sym_typedef] = ACTIONS(3704), - [anon_sym_virtual] = ACTIONS(3704), - [anon_sym_extern] = ACTIONS(3704), - [anon_sym___attribute__] = ACTIONS(3704), - [anon_sym___attribute] = ACTIONS(3704), - [anon_sym_using] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), - [anon_sym___declspec] = ACTIONS(3704), - [anon_sym___based] = ACTIONS(3704), - [anon_sym_signed] = ACTIONS(3704), - [anon_sym_unsigned] = ACTIONS(3704), - [anon_sym_long] = ACTIONS(3704), - [anon_sym_short] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_static] = ACTIONS(3704), - [anon_sym_register] = ACTIONS(3704), - [anon_sym_inline] = ACTIONS(3704), - [anon_sym___inline] = ACTIONS(3704), - [anon_sym___inline__] = ACTIONS(3704), - [anon_sym___forceinline] = ACTIONS(3704), - [anon_sym_thread_local] = ACTIONS(3704), - [anon_sym___thread] = ACTIONS(3704), - [anon_sym_const] = ACTIONS(3704), - [anon_sym_constexpr] = ACTIONS(3704), - [anon_sym_volatile] = ACTIONS(3704), - [anon_sym_restrict] = ACTIONS(3704), - [anon_sym___restrict__] = ACTIONS(3704), - [anon_sym__Atomic] = ACTIONS(3704), - [anon_sym__Noreturn] = ACTIONS(3704), - [anon_sym_noreturn] = ACTIONS(3704), - [anon_sym__Nonnull] = ACTIONS(3704), - [anon_sym_mutable] = ACTIONS(3704), - [anon_sym_constinit] = ACTIONS(3704), - [anon_sym_consteval] = ACTIONS(3704), - [anon_sym_alignas] = ACTIONS(3704), - [anon_sym__Alignas] = ACTIONS(3704), - [sym_primitive_type] = ACTIONS(3704), - [anon_sym_enum] = ACTIONS(3704), - [anon_sym_class] = ACTIONS(3704), - [anon_sym_struct] = ACTIONS(3704), - [anon_sym_union] = ACTIONS(3704), - [anon_sym_typename] = ACTIONS(3704), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3704), - [anon_sym_decltype] = ACTIONS(3704), - [anon_sym_explicit] = ACTIONS(3704), - [anon_sym_private] = ACTIONS(3704), - [anon_sym_template] = ACTIONS(3704), - [anon_sym_operator] = ACTIONS(3704), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3704), - [anon_sym_protected] = ACTIONS(3704), - [anon_sym_static_assert] = ACTIONS(3704), - [anon_sym_LBRACK_COLON] = ACTIONS(3706), + [STATE(2893)] = { + [sym_identifier] = ACTIONS(8822), + [aux_sym_preproc_def_token1] = ACTIONS(8822), + [aux_sym_preproc_if_token1] = ACTIONS(8822), + [aux_sym_preproc_if_token2] = ACTIONS(8822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8822), + [aux_sym_preproc_else_token1] = ACTIONS(8822), + [aux_sym_preproc_elif_token1] = ACTIONS(8822), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8822), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8822), + [sym_preproc_directive] = ACTIONS(8822), + [anon_sym_LPAREN2] = ACTIONS(8824), + [anon_sym_TILDE] = ACTIONS(8824), + [anon_sym_STAR] = ACTIONS(8824), + [anon_sym_AMP_AMP] = ACTIONS(8824), + [anon_sym_AMP] = ACTIONS(8822), + [anon_sym_SEMI] = ACTIONS(8824), + [anon_sym___extension__] = ACTIONS(8822), + [anon_sym_typedef] = ACTIONS(8822), + [anon_sym_virtual] = ACTIONS(8822), + [anon_sym_extern] = ACTIONS(8822), + [anon_sym___attribute__] = ACTIONS(8822), + [anon_sym___attribute] = ACTIONS(8822), + [anon_sym_using] = ACTIONS(8822), + [anon_sym_COLON_COLON] = ACTIONS(8824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8824), + [anon_sym___declspec] = ACTIONS(8822), + [anon_sym___based] = ACTIONS(8822), + [anon_sym_signed] = ACTIONS(8822), + [anon_sym_unsigned] = ACTIONS(8822), + [anon_sym_long] = ACTIONS(8822), + [anon_sym_short] = ACTIONS(8822), + [anon_sym_LBRACK] = ACTIONS(8822), + [anon_sym_static] = ACTIONS(8822), + [anon_sym_register] = ACTIONS(8822), + [anon_sym_inline] = ACTIONS(8822), + [anon_sym___inline] = ACTIONS(8822), + [anon_sym___inline__] = ACTIONS(8822), + [anon_sym___forceinline] = ACTIONS(8822), + [anon_sym_thread_local] = ACTIONS(8822), + [anon_sym___thread] = ACTIONS(8822), + [anon_sym_const] = ACTIONS(8822), + [anon_sym_constexpr] = ACTIONS(8822), + [anon_sym_volatile] = ACTIONS(8822), + [anon_sym_restrict] = ACTIONS(8822), + [anon_sym___restrict__] = ACTIONS(8822), + [anon_sym__Atomic] = ACTIONS(8822), + [anon_sym__Noreturn] = ACTIONS(8822), + [anon_sym_noreturn] = ACTIONS(8822), + [anon_sym__Nonnull] = ACTIONS(8822), + [anon_sym_mutable] = ACTIONS(8822), + [anon_sym_constinit] = ACTIONS(8822), + [anon_sym_consteval] = ACTIONS(8822), + [anon_sym_alignas] = ACTIONS(8822), + [anon_sym__Alignas] = ACTIONS(8822), + [sym_primitive_type] = ACTIONS(8822), + [anon_sym_enum] = ACTIONS(8822), + [anon_sym_class] = ACTIONS(8822), + [anon_sym_struct] = ACTIONS(8822), + [anon_sym_union] = ACTIONS(8822), + [anon_sym_typename] = ACTIONS(8822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8822), + [anon_sym_decltype] = ACTIONS(8822), + [anon_sym_explicit] = ACTIONS(8822), + [anon_sym_private] = ACTIONS(8822), + [anon_sym_template] = ACTIONS(8822), + [anon_sym_operator] = ACTIONS(8822), + [anon_sym_friend] = ACTIONS(8822), + [anon_sym_public] = ACTIONS(8822), + [anon_sym_protected] = ACTIONS(8822), + [anon_sym_static_assert] = ACTIONS(8822), + [anon_sym_LBRACK_COLON] = ACTIONS(8824), }, - [STATE(3353)] = { - [sym_identifier] = ACTIONS(8438), - [aux_sym_preproc_def_token1] = ACTIONS(8438), - [aux_sym_preproc_if_token1] = ACTIONS(8438), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8438), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8438), - [sym_preproc_directive] = ACTIONS(8438), - [anon_sym_LPAREN2] = ACTIONS(8440), - [anon_sym_TILDE] = ACTIONS(8440), - [anon_sym_STAR] = ACTIONS(8440), - [anon_sym_AMP_AMP] = ACTIONS(8440), - [anon_sym_AMP] = ACTIONS(8438), - [anon_sym_SEMI] = ACTIONS(8440), - [anon_sym___extension__] = ACTIONS(8438), - [anon_sym_typedef] = ACTIONS(8438), - [anon_sym_virtual] = ACTIONS(8438), - [anon_sym_extern] = ACTIONS(8438), - [anon_sym___attribute__] = ACTIONS(8438), - [anon_sym___attribute] = ACTIONS(8438), - [anon_sym_using] = ACTIONS(8438), - [anon_sym_COLON_COLON] = ACTIONS(8440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8440), - [anon_sym___declspec] = ACTIONS(8438), - [anon_sym___based] = ACTIONS(8438), - [anon_sym_RBRACE] = ACTIONS(8440), - [anon_sym_signed] = ACTIONS(8438), - [anon_sym_unsigned] = ACTIONS(8438), - [anon_sym_long] = ACTIONS(8438), - [anon_sym_short] = ACTIONS(8438), - [anon_sym_LBRACK] = ACTIONS(8438), - [anon_sym_static] = ACTIONS(8438), - [anon_sym_register] = ACTIONS(8438), - [anon_sym_inline] = ACTIONS(8438), - [anon_sym___inline] = ACTIONS(8438), - [anon_sym___inline__] = ACTIONS(8438), - [anon_sym___forceinline] = ACTIONS(8438), - [anon_sym_thread_local] = ACTIONS(8438), - [anon_sym___thread] = ACTIONS(8438), - [anon_sym_const] = ACTIONS(8438), - [anon_sym_constexpr] = ACTIONS(8438), - [anon_sym_volatile] = ACTIONS(8438), - [anon_sym_restrict] = ACTIONS(8438), - [anon_sym___restrict__] = ACTIONS(8438), - [anon_sym__Atomic] = ACTIONS(8438), - [anon_sym__Noreturn] = ACTIONS(8438), - [anon_sym_noreturn] = ACTIONS(8438), - [anon_sym__Nonnull] = ACTIONS(8438), - [anon_sym_mutable] = ACTIONS(8438), - [anon_sym_constinit] = ACTIONS(8438), - [anon_sym_consteval] = ACTIONS(8438), - [anon_sym_alignas] = ACTIONS(8438), - [anon_sym__Alignas] = ACTIONS(8438), - [sym_primitive_type] = ACTIONS(8438), - [anon_sym_enum] = ACTIONS(8438), - [anon_sym_class] = ACTIONS(8438), - [anon_sym_struct] = ACTIONS(8438), - [anon_sym_union] = ACTIONS(8438), - [anon_sym_typename] = ACTIONS(8438), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8438), - [anon_sym_decltype] = ACTIONS(8438), - [anon_sym_explicit] = ACTIONS(8438), - [anon_sym_private] = ACTIONS(8438), - [anon_sym_template] = ACTIONS(8438), - [anon_sym_operator] = ACTIONS(8438), - [anon_sym_friend] = ACTIONS(8438), - [anon_sym_public] = ACTIONS(8438), - [anon_sym_protected] = ACTIONS(8438), - [anon_sym_static_assert] = ACTIONS(8438), - [anon_sym_LBRACK_COLON] = ACTIONS(8440), + [STATE(2894)] = { + [sym_identifier] = ACTIONS(8826), + [aux_sym_preproc_def_token1] = ACTIONS(8826), + [aux_sym_preproc_if_token1] = ACTIONS(8826), + [aux_sym_preproc_if_token2] = ACTIONS(8826), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8826), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8826), + [aux_sym_preproc_else_token1] = ACTIONS(8826), + [aux_sym_preproc_elif_token1] = ACTIONS(8826), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8826), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8826), + [sym_preproc_directive] = ACTIONS(8826), + [anon_sym_LPAREN2] = ACTIONS(8828), + [anon_sym_TILDE] = ACTIONS(8828), + [anon_sym_STAR] = ACTIONS(8828), + [anon_sym_AMP_AMP] = ACTIONS(8828), + [anon_sym_AMP] = ACTIONS(8826), + [anon_sym_SEMI] = ACTIONS(8828), + [anon_sym___extension__] = ACTIONS(8826), + [anon_sym_typedef] = ACTIONS(8826), + [anon_sym_virtual] = ACTIONS(8826), + [anon_sym_extern] = ACTIONS(8826), + [anon_sym___attribute__] = ACTIONS(8826), + [anon_sym___attribute] = ACTIONS(8826), + [anon_sym_using] = ACTIONS(8826), + [anon_sym_COLON_COLON] = ACTIONS(8828), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8828), + [anon_sym___declspec] = ACTIONS(8826), + [anon_sym___based] = ACTIONS(8826), + [anon_sym_signed] = ACTIONS(8826), + [anon_sym_unsigned] = ACTIONS(8826), + [anon_sym_long] = ACTIONS(8826), + [anon_sym_short] = ACTIONS(8826), + [anon_sym_LBRACK] = ACTIONS(8826), + [anon_sym_static] = ACTIONS(8826), + [anon_sym_register] = ACTIONS(8826), + [anon_sym_inline] = ACTIONS(8826), + [anon_sym___inline] = ACTIONS(8826), + [anon_sym___inline__] = ACTIONS(8826), + [anon_sym___forceinline] = ACTIONS(8826), + [anon_sym_thread_local] = ACTIONS(8826), + [anon_sym___thread] = ACTIONS(8826), + [anon_sym_const] = ACTIONS(8826), + [anon_sym_constexpr] = ACTIONS(8826), + [anon_sym_volatile] = ACTIONS(8826), + [anon_sym_restrict] = ACTIONS(8826), + [anon_sym___restrict__] = ACTIONS(8826), + [anon_sym__Atomic] = ACTIONS(8826), + [anon_sym__Noreturn] = ACTIONS(8826), + [anon_sym_noreturn] = ACTIONS(8826), + [anon_sym__Nonnull] = ACTIONS(8826), + [anon_sym_mutable] = ACTIONS(8826), + [anon_sym_constinit] = ACTIONS(8826), + [anon_sym_consteval] = ACTIONS(8826), + [anon_sym_alignas] = ACTIONS(8826), + [anon_sym__Alignas] = ACTIONS(8826), + [sym_primitive_type] = ACTIONS(8826), + [anon_sym_enum] = ACTIONS(8826), + [anon_sym_class] = ACTIONS(8826), + [anon_sym_struct] = ACTIONS(8826), + [anon_sym_union] = ACTIONS(8826), + [anon_sym_typename] = ACTIONS(8826), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8826), + [anon_sym_decltype] = ACTIONS(8826), + [anon_sym_explicit] = ACTIONS(8826), + [anon_sym_private] = ACTIONS(8826), + [anon_sym_template] = ACTIONS(8826), + [anon_sym_operator] = ACTIONS(8826), + [anon_sym_friend] = ACTIONS(8826), + [anon_sym_public] = ACTIONS(8826), + [anon_sym_protected] = ACTIONS(8826), + [anon_sym_static_assert] = ACTIONS(8826), + [anon_sym_LBRACK_COLON] = ACTIONS(8828), }, - [STATE(3354)] = { - [sym_identifier] = ACTIONS(3704), - [aux_sym_preproc_def_token1] = ACTIONS(3704), - [aux_sym_preproc_if_token1] = ACTIONS(3704), - [aux_sym_preproc_if_token2] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), - [sym_preproc_directive] = ACTIONS(3704), - [anon_sym_LPAREN2] = ACTIONS(3706), - [anon_sym_TILDE] = ACTIONS(3706), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_AMP_AMP] = ACTIONS(3706), - [anon_sym_AMP] = ACTIONS(3704), - [anon_sym_SEMI] = ACTIONS(3706), - [anon_sym___extension__] = ACTIONS(3704), - [anon_sym_typedef] = ACTIONS(3704), - [anon_sym_virtual] = ACTIONS(3704), - [anon_sym_extern] = ACTIONS(3704), - [anon_sym___attribute__] = ACTIONS(3704), - [anon_sym___attribute] = ACTIONS(3704), - [anon_sym_using] = ACTIONS(3704), - [anon_sym_COLON_COLON] = ACTIONS(3706), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), - [anon_sym___declspec] = ACTIONS(3704), - [anon_sym___based] = ACTIONS(3704), - [anon_sym_signed] = ACTIONS(3704), - [anon_sym_unsigned] = ACTIONS(3704), - [anon_sym_long] = ACTIONS(3704), - [anon_sym_short] = ACTIONS(3704), - [anon_sym_LBRACK] = ACTIONS(3704), - [anon_sym_static] = ACTIONS(3704), - [anon_sym_register] = ACTIONS(3704), - [anon_sym_inline] = ACTIONS(3704), - [anon_sym___inline] = ACTIONS(3704), - [anon_sym___inline__] = ACTIONS(3704), - [anon_sym___forceinline] = ACTIONS(3704), - [anon_sym_thread_local] = ACTIONS(3704), - [anon_sym___thread] = ACTIONS(3704), - [anon_sym_const] = ACTIONS(3704), - [anon_sym_constexpr] = ACTIONS(3704), - [anon_sym_volatile] = ACTIONS(3704), - [anon_sym_restrict] = ACTIONS(3704), - [anon_sym___restrict__] = ACTIONS(3704), - [anon_sym__Atomic] = ACTIONS(3704), - [anon_sym__Noreturn] = ACTIONS(3704), - [anon_sym_noreturn] = ACTIONS(3704), - [anon_sym__Nonnull] = ACTIONS(3704), - [anon_sym_mutable] = ACTIONS(3704), - [anon_sym_constinit] = ACTIONS(3704), - [anon_sym_consteval] = ACTIONS(3704), - [anon_sym_alignas] = ACTIONS(3704), - [anon_sym__Alignas] = ACTIONS(3704), - [sym_primitive_type] = ACTIONS(3704), - [anon_sym_enum] = ACTIONS(3704), - [anon_sym_class] = ACTIONS(3704), - [anon_sym_struct] = ACTIONS(3704), - [anon_sym_union] = ACTIONS(3704), - [anon_sym_typename] = ACTIONS(3704), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3704), - [anon_sym_decltype] = ACTIONS(3704), - [anon_sym_explicit] = ACTIONS(3704), - [anon_sym_private] = ACTIONS(3704), - [anon_sym_template] = ACTIONS(3704), - [anon_sym_operator] = ACTIONS(3704), - [anon_sym_friend] = ACTIONS(3704), - [anon_sym_public] = ACTIONS(3704), - [anon_sym_protected] = ACTIONS(3704), - [anon_sym_static_assert] = ACTIONS(3704), - [anon_sym_LBRACK_COLON] = ACTIONS(3706), + [STATE(2895)] = { + [sym_attribute_specifier] = STATE(3122), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), + [anon_sym_COMMA] = ACTIONS(7399), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(7397), + [anon_sym_PLUS] = ACTIONS(7397), + [anon_sym_STAR] = ACTIONS(7397), + [anon_sym_SLASH] = ACTIONS(7397), + [anon_sym_PERCENT] = ACTIONS(7397), + [anon_sym_PIPE_PIPE] = ACTIONS(7399), + [anon_sym_AMP_AMP] = ACTIONS(7399), + [anon_sym_PIPE] = ACTIONS(7397), + [anon_sym_CARET] = ACTIONS(7397), + [anon_sym_AMP] = ACTIONS(7397), + [anon_sym_EQ_EQ] = ACTIONS(7399), + [anon_sym_BANG_EQ] = ACTIONS(7399), + [anon_sym_GT] = ACTIONS(7397), + [anon_sym_GT_EQ] = ACTIONS(7397), + [anon_sym_LT_EQ] = ACTIONS(7397), + [anon_sym_LT] = ACTIONS(7397), + [anon_sym_LT_LT] = ACTIONS(7397), + [anon_sym_GT_GT] = ACTIONS(7397), + [anon_sym___extension__] = ACTIONS(7399), + [anon_sym___attribute__] = ACTIONS(8265), + [anon_sym___attribute] = ACTIONS(8267), + [anon_sym_LBRACE] = ACTIONS(7399), + [anon_sym_LBRACK] = ACTIONS(7399), + [anon_sym_EQ] = ACTIONS(7397), + [anon_sym_const] = ACTIONS(7397), + [anon_sym_constexpr] = ACTIONS(7399), + [anon_sym_volatile] = ACTIONS(7399), + [anon_sym_restrict] = ACTIONS(7399), + [anon_sym___restrict__] = ACTIONS(7399), + [anon_sym__Atomic] = ACTIONS(7399), + [anon_sym__Noreturn] = ACTIONS(7399), + [anon_sym_noreturn] = ACTIONS(7399), + [anon_sym__Nonnull] = ACTIONS(7399), + [anon_sym_mutable] = ACTIONS(7399), + [anon_sym_constinit] = ACTIONS(7399), + [anon_sym_consteval] = ACTIONS(7399), + [anon_sym_alignas] = ACTIONS(7399), + [anon_sym__Alignas] = ACTIONS(7399), + [anon_sym_QMARK] = ACTIONS(7399), + [anon_sym_STAR_EQ] = ACTIONS(7399), + [anon_sym_SLASH_EQ] = ACTIONS(7399), + [anon_sym_PERCENT_EQ] = ACTIONS(7399), + [anon_sym_PLUS_EQ] = ACTIONS(7399), + [anon_sym_DASH_EQ] = ACTIONS(7399), + [anon_sym_LT_LT_EQ] = ACTIONS(7399), + [anon_sym_GT_GT_EQ] = ACTIONS(7397), + [anon_sym_AMP_EQ] = ACTIONS(7399), + [anon_sym_CARET_EQ] = ACTIONS(7399), + [anon_sym_PIPE_EQ] = ACTIONS(7399), + [anon_sym_and_eq] = ACTIONS(7399), + [anon_sym_or_eq] = ACTIONS(7399), + [anon_sym_xor_eq] = ACTIONS(7399), + [anon_sym_LT_EQ_GT] = ACTIONS(7399), + [anon_sym_or] = ACTIONS(7397), + [anon_sym_and] = ACTIONS(7397), + [anon_sym_bitor] = ACTIONS(7399), + [anon_sym_xor] = ACTIONS(7397), + [anon_sym_bitand] = ACTIONS(7399), + [anon_sym_not_eq] = ACTIONS(7399), + [anon_sym_DASH_DASH] = ACTIONS(7399), + [anon_sym_PLUS_PLUS] = ACTIONS(7399), + [anon_sym_DOT] = ACTIONS(7397), + [anon_sym_DOT_STAR] = ACTIONS(7399), + [anon_sym_DASH_GT] = ACTIONS(7399), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7399), + [anon_sym_override] = ACTIONS(7399), + [anon_sym_GT2] = ACTIONS(7399), + [anon_sym_requires] = ACTIONS(7399), }, - [STATE(3355)] = { - [sym_identifier] = ACTIONS(3942), - [aux_sym_preproc_def_token1] = ACTIONS(3942), - [aux_sym_preproc_if_token1] = ACTIONS(3942), - [aux_sym_preproc_if_token2] = ACTIONS(3942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3942), - [sym_preproc_directive] = ACTIONS(3942), - [anon_sym_LPAREN2] = ACTIONS(3944), - [anon_sym_TILDE] = ACTIONS(3944), - [anon_sym_STAR] = ACTIONS(3944), - [anon_sym_AMP_AMP] = ACTIONS(3944), - [anon_sym_AMP] = ACTIONS(3942), - [anon_sym_SEMI] = ACTIONS(3944), - [anon_sym___extension__] = ACTIONS(3942), - [anon_sym_typedef] = ACTIONS(3942), - [anon_sym_virtual] = ACTIONS(3942), - [anon_sym_extern] = ACTIONS(3942), - [anon_sym___attribute__] = ACTIONS(3942), - [anon_sym___attribute] = ACTIONS(3942), - [anon_sym_using] = ACTIONS(3942), - [anon_sym_COLON_COLON] = ACTIONS(3944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3944), - [anon_sym___declspec] = ACTIONS(3942), - [anon_sym___based] = ACTIONS(3942), - [anon_sym_signed] = ACTIONS(3942), - [anon_sym_unsigned] = ACTIONS(3942), - [anon_sym_long] = ACTIONS(3942), - [anon_sym_short] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(3942), - [anon_sym_static] = ACTIONS(3942), - [anon_sym_register] = ACTIONS(3942), - [anon_sym_inline] = ACTIONS(3942), - [anon_sym___inline] = ACTIONS(3942), - [anon_sym___inline__] = ACTIONS(3942), - [anon_sym___forceinline] = ACTIONS(3942), - [anon_sym_thread_local] = ACTIONS(3942), - [anon_sym___thread] = ACTIONS(3942), - [anon_sym_const] = ACTIONS(3942), - [anon_sym_constexpr] = ACTIONS(3942), - [anon_sym_volatile] = ACTIONS(3942), - [anon_sym_restrict] = ACTIONS(3942), - [anon_sym___restrict__] = ACTIONS(3942), - [anon_sym__Atomic] = ACTIONS(3942), - [anon_sym__Noreturn] = ACTIONS(3942), - [anon_sym_noreturn] = ACTIONS(3942), - [anon_sym__Nonnull] = ACTIONS(3942), - [anon_sym_mutable] = ACTIONS(3942), - [anon_sym_constinit] = ACTIONS(3942), - [anon_sym_consteval] = ACTIONS(3942), - [anon_sym_alignas] = ACTIONS(3942), - [anon_sym__Alignas] = ACTIONS(3942), - [sym_primitive_type] = ACTIONS(3942), - [anon_sym_enum] = ACTIONS(3942), - [anon_sym_class] = ACTIONS(3942), - [anon_sym_struct] = ACTIONS(3942), - [anon_sym_union] = ACTIONS(3942), - [anon_sym_typename] = ACTIONS(3942), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3942), - [anon_sym_decltype] = ACTIONS(3942), - [anon_sym_explicit] = ACTIONS(3942), - [anon_sym_private] = ACTIONS(3942), - [anon_sym_template] = ACTIONS(3942), - [anon_sym_operator] = ACTIONS(3942), - [anon_sym_friend] = ACTIONS(3942), - [anon_sym_public] = ACTIONS(3942), - [anon_sym_protected] = ACTIONS(3942), - [anon_sym_static_assert] = ACTIONS(3942), - [anon_sym_LBRACK_COLON] = ACTIONS(3944), + [STATE(2896)] = { + [sym_identifier] = ACTIONS(8806), + [aux_sym_preproc_def_token1] = ACTIONS(8806), + [aux_sym_preproc_if_token1] = ACTIONS(8806), + [aux_sym_preproc_if_token2] = ACTIONS(8806), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8806), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8806), + [aux_sym_preproc_else_token1] = ACTIONS(8806), + [aux_sym_preproc_elif_token1] = ACTIONS(8806), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8806), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8806), + [sym_preproc_directive] = ACTIONS(8806), + [anon_sym_LPAREN2] = ACTIONS(8808), + [anon_sym_TILDE] = ACTIONS(8808), + [anon_sym_STAR] = ACTIONS(8808), + [anon_sym_AMP_AMP] = ACTIONS(8808), + [anon_sym_AMP] = ACTIONS(8806), + [anon_sym_SEMI] = ACTIONS(8808), + [anon_sym___extension__] = ACTIONS(8806), + [anon_sym_typedef] = ACTIONS(8806), + [anon_sym_virtual] = ACTIONS(8806), + [anon_sym_extern] = ACTIONS(8806), + [anon_sym___attribute__] = ACTIONS(8806), + [anon_sym___attribute] = ACTIONS(8806), + [anon_sym_using] = ACTIONS(8806), + [anon_sym_COLON_COLON] = ACTIONS(8808), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8808), + [anon_sym___declspec] = ACTIONS(8806), + [anon_sym___based] = ACTIONS(8806), + [anon_sym_signed] = ACTIONS(8806), + [anon_sym_unsigned] = ACTIONS(8806), + [anon_sym_long] = ACTIONS(8806), + [anon_sym_short] = ACTIONS(8806), + [anon_sym_LBRACK] = ACTIONS(8806), + [anon_sym_static] = ACTIONS(8806), + [anon_sym_register] = ACTIONS(8806), + [anon_sym_inline] = ACTIONS(8806), + [anon_sym___inline] = ACTIONS(8806), + [anon_sym___inline__] = ACTIONS(8806), + [anon_sym___forceinline] = ACTIONS(8806), + [anon_sym_thread_local] = ACTIONS(8806), + [anon_sym___thread] = ACTIONS(8806), + [anon_sym_const] = ACTIONS(8806), + [anon_sym_constexpr] = ACTIONS(8806), + [anon_sym_volatile] = ACTIONS(8806), + [anon_sym_restrict] = ACTIONS(8806), + [anon_sym___restrict__] = ACTIONS(8806), + [anon_sym__Atomic] = ACTIONS(8806), + [anon_sym__Noreturn] = ACTIONS(8806), + [anon_sym_noreturn] = ACTIONS(8806), + [anon_sym__Nonnull] = ACTIONS(8806), + [anon_sym_mutable] = ACTIONS(8806), + [anon_sym_constinit] = ACTIONS(8806), + [anon_sym_consteval] = ACTIONS(8806), + [anon_sym_alignas] = ACTIONS(8806), + [anon_sym__Alignas] = ACTIONS(8806), + [sym_primitive_type] = ACTIONS(8806), + [anon_sym_enum] = ACTIONS(8806), + [anon_sym_class] = ACTIONS(8806), + [anon_sym_struct] = ACTIONS(8806), + [anon_sym_union] = ACTIONS(8806), + [anon_sym_typename] = ACTIONS(8806), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8806), + [anon_sym_decltype] = ACTIONS(8806), + [anon_sym_explicit] = ACTIONS(8806), + [anon_sym_private] = ACTIONS(8806), + [anon_sym_template] = ACTIONS(8806), + [anon_sym_operator] = ACTIONS(8806), + [anon_sym_friend] = ACTIONS(8806), + [anon_sym_public] = ACTIONS(8806), + [anon_sym_protected] = ACTIONS(8806), + [anon_sym_static_assert] = ACTIONS(8806), + [anon_sym_LBRACK_COLON] = ACTIONS(8808), }, - [STATE(3356)] = { - [sym_identifier] = ACTIONS(3946), - [aux_sym_preproc_def_token1] = ACTIONS(3946), - [aux_sym_preproc_if_token1] = ACTIONS(3946), - [aux_sym_preproc_if_token2] = ACTIONS(3946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3946), - [sym_preproc_directive] = ACTIONS(3946), - [anon_sym_LPAREN2] = ACTIONS(3948), - [anon_sym_TILDE] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym___extension__] = ACTIONS(3946), - [anon_sym_typedef] = ACTIONS(3946), - [anon_sym_virtual] = ACTIONS(3946), - [anon_sym_extern] = ACTIONS(3946), - [anon_sym___attribute__] = ACTIONS(3946), - [anon_sym___attribute] = ACTIONS(3946), - [anon_sym_using] = ACTIONS(3946), - [anon_sym_COLON_COLON] = ACTIONS(3948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3948), - [anon_sym___declspec] = ACTIONS(3946), - [anon_sym___based] = ACTIONS(3946), - [anon_sym_signed] = ACTIONS(3946), - [anon_sym_unsigned] = ACTIONS(3946), - [anon_sym_long] = ACTIONS(3946), - [anon_sym_short] = ACTIONS(3946), - [anon_sym_LBRACK] = ACTIONS(3946), - [anon_sym_static] = ACTIONS(3946), - [anon_sym_register] = ACTIONS(3946), - [anon_sym_inline] = ACTIONS(3946), - [anon_sym___inline] = ACTIONS(3946), - [anon_sym___inline__] = ACTIONS(3946), - [anon_sym___forceinline] = ACTIONS(3946), - [anon_sym_thread_local] = ACTIONS(3946), - [anon_sym___thread] = ACTIONS(3946), - [anon_sym_const] = ACTIONS(3946), - [anon_sym_constexpr] = ACTIONS(3946), - [anon_sym_volatile] = ACTIONS(3946), - [anon_sym_restrict] = ACTIONS(3946), - [anon_sym___restrict__] = ACTIONS(3946), - [anon_sym__Atomic] = ACTIONS(3946), - [anon_sym__Noreturn] = ACTIONS(3946), - [anon_sym_noreturn] = ACTIONS(3946), - [anon_sym__Nonnull] = ACTIONS(3946), - [anon_sym_mutable] = ACTIONS(3946), - [anon_sym_constinit] = ACTIONS(3946), - [anon_sym_consteval] = ACTIONS(3946), - [anon_sym_alignas] = ACTIONS(3946), - [anon_sym__Alignas] = ACTIONS(3946), - [sym_primitive_type] = ACTIONS(3946), - [anon_sym_enum] = ACTIONS(3946), - [anon_sym_class] = ACTIONS(3946), - [anon_sym_struct] = ACTIONS(3946), - [anon_sym_union] = ACTIONS(3946), - [anon_sym_typename] = ACTIONS(3946), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3946), - [anon_sym_decltype] = ACTIONS(3946), - [anon_sym_explicit] = ACTIONS(3946), - [anon_sym_private] = ACTIONS(3946), - [anon_sym_template] = ACTIONS(3946), - [anon_sym_operator] = ACTIONS(3946), - [anon_sym_friend] = ACTIONS(3946), - [anon_sym_public] = ACTIONS(3946), - [anon_sym_protected] = ACTIONS(3946), - [anon_sym_static_assert] = ACTIONS(3946), - [anon_sym_LBRACK_COLON] = ACTIONS(3948), + [STATE(2897)] = { + [sym_identifier] = ACTIONS(8822), + [aux_sym_preproc_def_token1] = ACTIONS(8822), + [aux_sym_preproc_if_token1] = ACTIONS(8822), + [aux_sym_preproc_if_token2] = ACTIONS(8822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8822), + [aux_sym_preproc_else_token1] = ACTIONS(8822), + [aux_sym_preproc_elif_token1] = ACTIONS(8822), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8822), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8822), + [sym_preproc_directive] = ACTIONS(8822), + [anon_sym_LPAREN2] = ACTIONS(8824), + [anon_sym_TILDE] = ACTIONS(8824), + [anon_sym_STAR] = ACTIONS(8824), + [anon_sym_AMP_AMP] = ACTIONS(8824), + [anon_sym_AMP] = ACTIONS(8822), + [anon_sym_SEMI] = ACTIONS(8824), + [anon_sym___extension__] = ACTIONS(8822), + [anon_sym_typedef] = ACTIONS(8822), + [anon_sym_virtual] = ACTIONS(8822), + [anon_sym_extern] = ACTIONS(8822), + [anon_sym___attribute__] = ACTIONS(8822), + [anon_sym___attribute] = ACTIONS(8822), + [anon_sym_using] = ACTIONS(8822), + [anon_sym_COLON_COLON] = ACTIONS(8824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8824), + [anon_sym___declspec] = ACTIONS(8822), + [anon_sym___based] = ACTIONS(8822), + [anon_sym_signed] = ACTIONS(8822), + [anon_sym_unsigned] = ACTIONS(8822), + [anon_sym_long] = ACTIONS(8822), + [anon_sym_short] = ACTIONS(8822), + [anon_sym_LBRACK] = ACTIONS(8822), + [anon_sym_static] = ACTIONS(8822), + [anon_sym_register] = ACTIONS(8822), + [anon_sym_inline] = ACTIONS(8822), + [anon_sym___inline] = ACTIONS(8822), + [anon_sym___inline__] = ACTIONS(8822), + [anon_sym___forceinline] = ACTIONS(8822), + [anon_sym_thread_local] = ACTIONS(8822), + [anon_sym___thread] = ACTIONS(8822), + [anon_sym_const] = ACTIONS(8822), + [anon_sym_constexpr] = ACTIONS(8822), + [anon_sym_volatile] = ACTIONS(8822), + [anon_sym_restrict] = ACTIONS(8822), + [anon_sym___restrict__] = ACTIONS(8822), + [anon_sym__Atomic] = ACTIONS(8822), + [anon_sym__Noreturn] = ACTIONS(8822), + [anon_sym_noreturn] = ACTIONS(8822), + [anon_sym__Nonnull] = ACTIONS(8822), + [anon_sym_mutable] = ACTIONS(8822), + [anon_sym_constinit] = ACTIONS(8822), + [anon_sym_consteval] = ACTIONS(8822), + [anon_sym_alignas] = ACTIONS(8822), + [anon_sym__Alignas] = ACTIONS(8822), + [sym_primitive_type] = ACTIONS(8822), + [anon_sym_enum] = ACTIONS(8822), + [anon_sym_class] = ACTIONS(8822), + [anon_sym_struct] = ACTIONS(8822), + [anon_sym_union] = ACTIONS(8822), + [anon_sym_typename] = ACTIONS(8822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8822), + [anon_sym_decltype] = ACTIONS(8822), + [anon_sym_explicit] = ACTIONS(8822), + [anon_sym_private] = ACTIONS(8822), + [anon_sym_template] = ACTIONS(8822), + [anon_sym_operator] = ACTIONS(8822), + [anon_sym_friend] = ACTIONS(8822), + [anon_sym_public] = ACTIONS(8822), + [anon_sym_protected] = ACTIONS(8822), + [anon_sym_static_assert] = ACTIONS(8822), + [anon_sym_LBRACK_COLON] = ACTIONS(8824), }, - [STATE(3357)] = { - [sym_identifier] = ACTIONS(3676), - [aux_sym_preproc_def_token1] = ACTIONS(3676), - [aux_sym_preproc_if_token1] = ACTIONS(3676), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3676), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3676), - [sym_preproc_directive] = ACTIONS(3676), - [anon_sym_LPAREN2] = ACTIONS(3678), - [anon_sym_TILDE] = ACTIONS(3678), - [anon_sym_STAR] = ACTIONS(3678), - [anon_sym_AMP_AMP] = ACTIONS(3678), - [anon_sym_AMP] = ACTIONS(3676), - [anon_sym_SEMI] = ACTIONS(3678), - [anon_sym___extension__] = ACTIONS(3676), - [anon_sym_typedef] = ACTIONS(3676), - [anon_sym_virtual] = ACTIONS(3676), - [anon_sym_extern] = ACTIONS(3676), - [anon_sym___attribute__] = ACTIONS(3676), - [anon_sym___attribute] = ACTIONS(3676), - [anon_sym_using] = ACTIONS(3676), - [anon_sym_COLON_COLON] = ACTIONS(3678), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3678), - [anon_sym___declspec] = ACTIONS(3676), - [anon_sym___based] = ACTIONS(3676), - [anon_sym_RBRACE] = ACTIONS(3678), - [anon_sym_signed] = ACTIONS(3676), - [anon_sym_unsigned] = ACTIONS(3676), - [anon_sym_long] = ACTIONS(3676), - [anon_sym_short] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3676), - [anon_sym_static] = ACTIONS(3676), - [anon_sym_register] = ACTIONS(3676), - [anon_sym_inline] = ACTIONS(3676), - [anon_sym___inline] = ACTIONS(3676), - [anon_sym___inline__] = ACTIONS(3676), - [anon_sym___forceinline] = ACTIONS(3676), - [anon_sym_thread_local] = ACTIONS(3676), - [anon_sym___thread] = ACTIONS(3676), - [anon_sym_const] = ACTIONS(3676), - [anon_sym_constexpr] = ACTIONS(3676), - [anon_sym_volatile] = ACTIONS(3676), - [anon_sym_restrict] = ACTIONS(3676), - [anon_sym___restrict__] = ACTIONS(3676), - [anon_sym__Atomic] = ACTIONS(3676), - [anon_sym__Noreturn] = ACTIONS(3676), - [anon_sym_noreturn] = ACTIONS(3676), - [anon_sym__Nonnull] = ACTIONS(3676), - [anon_sym_mutable] = ACTIONS(3676), - [anon_sym_constinit] = ACTIONS(3676), - [anon_sym_consteval] = ACTIONS(3676), - [anon_sym_alignas] = ACTIONS(3676), - [anon_sym__Alignas] = ACTIONS(3676), - [sym_primitive_type] = ACTIONS(3676), - [anon_sym_enum] = ACTIONS(3676), - [anon_sym_class] = ACTIONS(3676), - [anon_sym_struct] = ACTIONS(3676), - [anon_sym_union] = ACTIONS(3676), - [anon_sym_typename] = ACTIONS(3676), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3676), - [anon_sym_decltype] = ACTIONS(3676), - [anon_sym_explicit] = ACTIONS(3676), - [anon_sym_private] = ACTIONS(3676), - [anon_sym_template] = ACTIONS(3676), - [anon_sym_operator] = ACTIONS(3676), - [anon_sym_friend] = ACTIONS(3676), - [anon_sym_public] = ACTIONS(3676), - [anon_sym_protected] = ACTIONS(3676), - [anon_sym_static_assert] = ACTIONS(3676), - [anon_sym_LBRACK_COLON] = ACTIONS(3678), + [STATE(2898)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7737), + [anon_sym_COMMA] = ACTIONS(7737), + [anon_sym_RPAREN] = ACTIONS(7737), + [anon_sym_LPAREN2] = ACTIONS(7737), + [anon_sym_DASH] = ACTIONS(7735), + [anon_sym_PLUS] = ACTIONS(7735), + [anon_sym_STAR] = ACTIONS(7735), + [anon_sym_SLASH] = ACTIONS(7735), + [anon_sym_PERCENT] = ACTIONS(7735), + [anon_sym_PIPE_PIPE] = ACTIONS(7737), + [anon_sym_AMP_AMP] = ACTIONS(7737), + [anon_sym_PIPE] = ACTIONS(7735), + [anon_sym_CARET] = ACTIONS(7735), + [anon_sym_AMP] = ACTIONS(7735), + [anon_sym_EQ_EQ] = ACTIONS(7737), + [anon_sym_BANG_EQ] = ACTIONS(7737), + [anon_sym_GT] = ACTIONS(7735), + [anon_sym_GT_EQ] = ACTIONS(7737), + [anon_sym_LT_EQ] = ACTIONS(7735), + [anon_sym_LT] = ACTIONS(7735), + [anon_sym_LT_LT] = ACTIONS(7735), + [anon_sym_GT_GT] = ACTIONS(7735), + [anon_sym___extension__] = ACTIONS(7737), + [anon_sym___attribute__] = ACTIONS(7737), + [anon_sym___attribute] = ACTIONS(7735), + [anon_sym_LBRACE] = ACTIONS(7737), + [anon_sym_LBRACK] = ACTIONS(7737), + [anon_sym_EQ] = ACTIONS(7735), + [anon_sym_const] = ACTIONS(7735), + [anon_sym_constexpr] = ACTIONS(7737), + [anon_sym_volatile] = ACTIONS(7737), + [anon_sym_restrict] = ACTIONS(7737), + [anon_sym___restrict__] = ACTIONS(7737), + [anon_sym__Atomic] = ACTIONS(7737), + [anon_sym__Noreturn] = ACTIONS(7737), + [anon_sym_noreturn] = ACTIONS(7737), + [anon_sym__Nonnull] = ACTIONS(7737), + [anon_sym_mutable] = ACTIONS(7737), + [anon_sym_constinit] = ACTIONS(7737), + [anon_sym_consteval] = ACTIONS(7737), + [anon_sym_alignas] = ACTIONS(7737), + [anon_sym__Alignas] = ACTIONS(7737), + [anon_sym_QMARK] = ACTIONS(7737), + [anon_sym_STAR_EQ] = ACTIONS(7737), + [anon_sym_SLASH_EQ] = ACTIONS(7737), + [anon_sym_PERCENT_EQ] = ACTIONS(7737), + [anon_sym_PLUS_EQ] = ACTIONS(7737), + [anon_sym_DASH_EQ] = ACTIONS(7737), + [anon_sym_LT_LT_EQ] = ACTIONS(7737), + [anon_sym_GT_GT_EQ] = ACTIONS(7737), + [anon_sym_AMP_EQ] = ACTIONS(7737), + [anon_sym_CARET_EQ] = ACTIONS(7737), + [anon_sym_PIPE_EQ] = ACTIONS(7737), + [anon_sym_and_eq] = ACTIONS(7737), + [anon_sym_or_eq] = ACTIONS(7737), + [anon_sym_xor_eq] = ACTIONS(7737), + [anon_sym_LT_EQ_GT] = ACTIONS(7737), + [anon_sym_or] = ACTIONS(7735), + [anon_sym_and] = ACTIONS(7735), + [anon_sym_bitor] = ACTIONS(7737), + [anon_sym_xor] = ACTIONS(7735), + [anon_sym_bitand] = ACTIONS(7737), + [anon_sym_not_eq] = ACTIONS(7737), + [anon_sym_DASH_DASH] = ACTIONS(7737), + [anon_sym_PLUS_PLUS] = ACTIONS(7737), + [anon_sym_DOT] = ACTIONS(7735), + [anon_sym_DOT_STAR] = ACTIONS(7737), + [anon_sym_DASH_GT] = ACTIONS(7735), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7737), + [anon_sym_override] = ACTIONS(7737), + [anon_sym_requires] = ACTIONS(7737), + [anon_sym_DASH_GT_STAR] = ACTIONS(7737), }, - [STATE(3358)] = { - [sym_identifier] = ACTIONS(3950), - [aux_sym_preproc_def_token1] = ACTIONS(3950), - [aux_sym_preproc_if_token1] = ACTIONS(3950), - [aux_sym_preproc_if_token2] = ACTIONS(3950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), - [sym_preproc_directive] = ACTIONS(3950), - [anon_sym_LPAREN2] = ACTIONS(3952), - [anon_sym_TILDE] = ACTIONS(3952), - [anon_sym_STAR] = ACTIONS(3952), - [anon_sym_AMP_AMP] = ACTIONS(3952), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_SEMI] = ACTIONS(3952), - [anon_sym___extension__] = ACTIONS(3950), - [anon_sym_typedef] = ACTIONS(3950), - [anon_sym_virtual] = ACTIONS(3950), - [anon_sym_extern] = ACTIONS(3950), - [anon_sym___attribute__] = ACTIONS(3950), - [anon_sym___attribute] = ACTIONS(3950), - [anon_sym_using] = ACTIONS(3950), - [anon_sym_COLON_COLON] = ACTIONS(3952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), - [anon_sym___declspec] = ACTIONS(3950), - [anon_sym___based] = ACTIONS(3950), - [anon_sym_signed] = ACTIONS(3950), - [anon_sym_unsigned] = ACTIONS(3950), - [anon_sym_long] = ACTIONS(3950), - [anon_sym_short] = ACTIONS(3950), - [anon_sym_LBRACK] = ACTIONS(3950), - [anon_sym_static] = ACTIONS(3950), - [anon_sym_register] = ACTIONS(3950), - [anon_sym_inline] = ACTIONS(3950), - [anon_sym___inline] = ACTIONS(3950), - [anon_sym___inline__] = ACTIONS(3950), - [anon_sym___forceinline] = ACTIONS(3950), - [anon_sym_thread_local] = ACTIONS(3950), - [anon_sym___thread] = ACTIONS(3950), - [anon_sym_const] = ACTIONS(3950), - [anon_sym_constexpr] = ACTIONS(3950), - [anon_sym_volatile] = ACTIONS(3950), - [anon_sym_restrict] = ACTIONS(3950), - [anon_sym___restrict__] = ACTIONS(3950), - [anon_sym__Atomic] = ACTIONS(3950), - [anon_sym__Noreturn] = ACTIONS(3950), - [anon_sym_noreturn] = ACTIONS(3950), - [anon_sym__Nonnull] = ACTIONS(3950), - [anon_sym_mutable] = ACTIONS(3950), - [anon_sym_constinit] = ACTIONS(3950), - [anon_sym_consteval] = ACTIONS(3950), - [anon_sym_alignas] = ACTIONS(3950), - [anon_sym__Alignas] = ACTIONS(3950), - [sym_primitive_type] = ACTIONS(3950), - [anon_sym_enum] = ACTIONS(3950), - [anon_sym_class] = ACTIONS(3950), - [anon_sym_struct] = ACTIONS(3950), - [anon_sym_union] = ACTIONS(3950), - [anon_sym_typename] = ACTIONS(3950), + [STATE(2899)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7475), + [anon_sym_COMMA] = ACTIONS(7475), + [anon_sym_RPAREN] = ACTIONS(7475), + [anon_sym_LPAREN2] = ACTIONS(7475), + [anon_sym_DASH] = ACTIONS(7473), + [anon_sym_PLUS] = ACTIONS(7473), + [anon_sym_STAR] = ACTIONS(7473), + [anon_sym_SLASH] = ACTIONS(7473), + [anon_sym_PERCENT] = ACTIONS(7473), + [anon_sym_PIPE_PIPE] = ACTIONS(7475), + [anon_sym_AMP_AMP] = ACTIONS(7475), + [anon_sym_PIPE] = ACTIONS(7473), + [anon_sym_CARET] = ACTIONS(7473), + [anon_sym_AMP] = ACTIONS(7473), + [anon_sym_EQ_EQ] = ACTIONS(7475), + [anon_sym_BANG_EQ] = ACTIONS(7475), + [anon_sym_GT] = ACTIONS(7473), + [anon_sym_GT_EQ] = ACTIONS(7475), + [anon_sym_LT_EQ] = ACTIONS(7473), + [anon_sym_LT] = ACTIONS(7473), + [anon_sym_LT_LT] = ACTIONS(7473), + [anon_sym_GT_GT] = ACTIONS(7473), + [anon_sym___extension__] = ACTIONS(7475), + [anon_sym_COLON_COLON] = ACTIONS(7475), + [anon_sym_LBRACE] = ACTIONS(7475), + [anon_sym_LBRACK] = ACTIONS(7475), + [anon_sym_EQ] = ACTIONS(7473), + [anon_sym_const] = ACTIONS(7473), + [anon_sym_constexpr] = ACTIONS(7475), + [anon_sym_volatile] = ACTIONS(7475), + [anon_sym_restrict] = ACTIONS(7475), + [anon_sym___restrict__] = ACTIONS(7475), + [anon_sym__Atomic] = ACTIONS(7475), + [anon_sym__Noreturn] = ACTIONS(7475), + [anon_sym_noreturn] = ACTIONS(7475), + [anon_sym__Nonnull] = ACTIONS(7475), + [anon_sym_mutable] = ACTIONS(7475), + [anon_sym_constinit] = ACTIONS(7475), + [anon_sym_consteval] = ACTIONS(7475), + [anon_sym_alignas] = ACTIONS(7475), + [anon_sym__Alignas] = ACTIONS(7475), + [anon_sym_QMARK] = ACTIONS(7475), + [anon_sym_STAR_EQ] = ACTIONS(7475), + [anon_sym_SLASH_EQ] = ACTIONS(7475), + [anon_sym_PERCENT_EQ] = ACTIONS(7475), + [anon_sym_PLUS_EQ] = ACTIONS(7475), + [anon_sym_DASH_EQ] = ACTIONS(7475), + [anon_sym_LT_LT_EQ] = ACTIONS(7475), + [anon_sym_GT_GT_EQ] = ACTIONS(7475), + [anon_sym_AMP_EQ] = ACTIONS(7475), + [anon_sym_CARET_EQ] = ACTIONS(7475), + [anon_sym_PIPE_EQ] = ACTIONS(7475), + [anon_sym_and_eq] = ACTIONS(7475), + [anon_sym_or_eq] = ACTIONS(7475), + [anon_sym_xor_eq] = ACTIONS(7475), + [anon_sym_LT_EQ_GT] = ACTIONS(7475), + [anon_sym_or] = ACTIONS(7473), + [anon_sym_and] = ACTIONS(7473), + [anon_sym_bitor] = ACTIONS(7475), + [anon_sym_xor] = ACTIONS(7473), + [anon_sym_bitand] = ACTIONS(7475), + [anon_sym_not_eq] = ACTIONS(7475), + [anon_sym_DASH_DASH] = ACTIONS(7475), + [anon_sym_PLUS_PLUS] = ACTIONS(7475), + [anon_sym_DOT] = ACTIONS(7473), + [anon_sym_DOT_STAR] = ACTIONS(7475), + [anon_sym_DASH_GT] = ACTIONS(7473), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7475), + [anon_sym_override] = ACTIONS(7475), + [anon_sym_requires] = ACTIONS(7475), + [anon_sym_DASH_GT_STAR] = ACTIONS(7475), + }, + [STATE(2900)] = { + [sym_attribute_specifier] = STATE(4124), + [sym_attribute_declaration] = STATE(4490), + [sym_gnu_asm_expression] = STATE(9129), + [sym_virtual_specifier] = STATE(4610), + [sym__function_attributes_end] = STATE(4292), + [sym__function_postfix] = STATE(4840), + [sym_trailing_return_type] = STATE(4383), + [sym_requires_clause] = STATE(4840), + [aux_sym_type_definition_repeat1] = STATE(4124), + [aux_sym_attributed_declarator_repeat1] = STATE(4490), + [aux_sym__function_postfix_repeat1] = STATE(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6646), + [anon_sym___attribute] = ACTIONS(6648), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8168), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6669), + [anon_sym_override] = ACTIONS(6669), + [anon_sym_requires] = ACTIONS(6671), + [anon_sym_DASH_GT_STAR] = ACTIONS(7791), + }, + [STATE(2901)] = { + [sym_template_argument_list] = STATE(2999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6567), + [anon_sym_COMMA] = ACTIONS(6567), + [anon_sym_RPAREN] = ACTIONS(6569), + [anon_sym_LPAREN2] = ACTIONS(6569), + [anon_sym_DASH] = ACTIONS(6574), + [anon_sym_PLUS] = ACTIONS(6574), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(6574), + [anon_sym_PERCENT] = ACTIONS(6574), + [anon_sym_PIPE_PIPE] = ACTIONS(6567), + [anon_sym_AMP_AMP] = ACTIONS(6569), + [anon_sym_PIPE] = ACTIONS(6574), + [anon_sym_CARET] = ACTIONS(6574), + [anon_sym_AMP] = ACTIONS(6576), + [anon_sym_EQ_EQ] = ACTIONS(6567), + [anon_sym_BANG_EQ] = ACTIONS(6567), + [anon_sym_GT] = ACTIONS(6574), + [anon_sym_GT_EQ] = ACTIONS(6567), + [anon_sym_LT_EQ] = ACTIONS(6574), + [anon_sym_LT] = ACTIONS(8830), + [anon_sym_LT_LT] = ACTIONS(6574), + [anon_sym_GT_GT] = ACTIONS(6574), + [anon_sym___extension__] = ACTIONS(6572), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(6572), + [anon_sym_LBRACK] = ACTIONS(6569), + [anon_sym_EQ] = ACTIONS(6574), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_constexpr] = ACTIONS(6572), + [anon_sym_volatile] = ACTIONS(6572), + [anon_sym_restrict] = ACTIONS(6572), + [anon_sym___restrict__] = ACTIONS(6572), + [anon_sym__Atomic] = ACTIONS(6572), + [anon_sym__Noreturn] = ACTIONS(6572), + [anon_sym_noreturn] = ACTIONS(6572), + [anon_sym__Nonnull] = ACTIONS(6572), + [anon_sym_mutable] = ACTIONS(6572), + [anon_sym_constinit] = ACTIONS(6572), + [anon_sym_consteval] = ACTIONS(6572), + [anon_sym_alignas] = ACTIONS(6572), + [anon_sym__Alignas] = ACTIONS(6572), + [anon_sym_QMARK] = ACTIONS(6567), + [anon_sym_STAR_EQ] = ACTIONS(6567), + [anon_sym_SLASH_EQ] = ACTIONS(6567), + [anon_sym_PERCENT_EQ] = ACTIONS(6567), + [anon_sym_PLUS_EQ] = ACTIONS(6567), + [anon_sym_DASH_EQ] = ACTIONS(6567), + [anon_sym_LT_LT_EQ] = ACTIONS(6567), + [anon_sym_GT_GT_EQ] = ACTIONS(6567), + [anon_sym_AMP_EQ] = ACTIONS(6567), + [anon_sym_CARET_EQ] = ACTIONS(6567), + [anon_sym_PIPE_EQ] = ACTIONS(6567), + [anon_sym_and_eq] = ACTIONS(6567), + [anon_sym_or_eq] = ACTIONS(6567), + [anon_sym_xor_eq] = ACTIONS(6567), + [anon_sym_LT_EQ_GT] = ACTIONS(6567), + [anon_sym_or] = ACTIONS(6574), + [anon_sym_and] = ACTIONS(6574), + [anon_sym_bitor] = ACTIONS(6567), + [anon_sym_xor] = ACTIONS(6574), + [anon_sym_bitand] = ACTIONS(6567), + [anon_sym_not_eq] = ACTIONS(6567), + [anon_sym_DASH_DASH] = ACTIONS(6567), + [anon_sym_PLUS_PLUS] = ACTIONS(6567), + [anon_sym_DOT] = ACTIONS(6574), + [anon_sym_DOT_STAR] = ACTIONS(6567), + [anon_sym_DASH_GT] = ACTIONS(6574), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3950), - [anon_sym_decltype] = ACTIONS(3950), - [anon_sym_explicit] = ACTIONS(3950), - [anon_sym_private] = ACTIONS(3950), - [anon_sym_template] = ACTIONS(3950), - [anon_sym_operator] = ACTIONS(3950), - [anon_sym_friend] = ACTIONS(3950), - [anon_sym_public] = ACTIONS(3950), - [anon_sym_protected] = ACTIONS(3950), - [anon_sym_static_assert] = ACTIONS(3950), - [anon_sym_LBRACK_COLON] = ACTIONS(3952), + [sym_auto] = ACTIONS(6572), + [anon_sym_decltype] = ACTIONS(6572), + [anon_sym_DASH_GT_STAR] = ACTIONS(6567), }, - [STATE(3359)] = { - [sym_identifier] = ACTIONS(8289), - [aux_sym_preproc_def_token1] = ACTIONS(8289), - [aux_sym_preproc_if_token1] = ACTIONS(8289), - [aux_sym_preproc_if_token2] = ACTIONS(8289), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8289), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8289), - [sym_preproc_directive] = ACTIONS(8289), - [anon_sym_LPAREN2] = ACTIONS(8291), - [anon_sym_TILDE] = ACTIONS(8291), - [anon_sym_STAR] = ACTIONS(8291), - [anon_sym_AMP_AMP] = ACTIONS(8291), - [anon_sym_AMP] = ACTIONS(8289), - [anon_sym_SEMI] = ACTIONS(8291), - [anon_sym___extension__] = ACTIONS(8289), - [anon_sym_typedef] = ACTIONS(8289), - [anon_sym_virtual] = ACTIONS(8289), - [anon_sym_extern] = ACTIONS(8289), - [anon_sym___attribute__] = ACTIONS(8289), - [anon_sym___attribute] = ACTIONS(8289), - [anon_sym_using] = ACTIONS(8289), - [anon_sym_COLON_COLON] = ACTIONS(8291), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8291), - [anon_sym___declspec] = ACTIONS(8289), - [anon_sym___based] = ACTIONS(8289), - [anon_sym_signed] = ACTIONS(8289), - [anon_sym_unsigned] = ACTIONS(8289), - [anon_sym_long] = ACTIONS(8289), - [anon_sym_short] = ACTIONS(8289), - [anon_sym_LBRACK] = ACTIONS(8289), - [anon_sym_static] = ACTIONS(8289), - [anon_sym_register] = ACTIONS(8289), - [anon_sym_inline] = ACTIONS(8289), - [anon_sym___inline] = ACTIONS(8289), - [anon_sym___inline__] = ACTIONS(8289), - [anon_sym___forceinline] = ACTIONS(8289), - [anon_sym_thread_local] = ACTIONS(8289), - [anon_sym___thread] = ACTIONS(8289), - [anon_sym_const] = ACTIONS(8289), - [anon_sym_constexpr] = ACTIONS(8289), - [anon_sym_volatile] = ACTIONS(8289), - [anon_sym_restrict] = ACTIONS(8289), - [anon_sym___restrict__] = ACTIONS(8289), - [anon_sym__Atomic] = ACTIONS(8289), - [anon_sym__Noreturn] = ACTIONS(8289), - [anon_sym_noreturn] = ACTIONS(8289), - [anon_sym__Nonnull] = ACTIONS(8289), - [anon_sym_mutable] = ACTIONS(8289), - [anon_sym_constinit] = ACTIONS(8289), - [anon_sym_consteval] = ACTIONS(8289), - [anon_sym_alignas] = ACTIONS(8289), - [anon_sym__Alignas] = ACTIONS(8289), - [sym_primitive_type] = ACTIONS(8289), - [anon_sym_enum] = ACTIONS(8289), - [anon_sym_class] = ACTIONS(8289), - [anon_sym_struct] = ACTIONS(8289), - [anon_sym_union] = ACTIONS(8289), - [anon_sym_typename] = ACTIONS(8289), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8289), - [anon_sym_decltype] = ACTIONS(8289), - [anon_sym_explicit] = ACTIONS(8289), - [anon_sym_private] = ACTIONS(8289), - [anon_sym_template] = ACTIONS(8289), - [anon_sym_operator] = ACTIONS(8289), - [anon_sym_friend] = ACTIONS(8289), - [anon_sym_public] = ACTIONS(8289), - [anon_sym_protected] = ACTIONS(8289), - [anon_sym_static_assert] = ACTIONS(8289), - [anon_sym_LBRACK_COLON] = ACTIONS(8291), + [STATE(2902)] = { + [sym_attribute_specifier] = STATE(2026), + [sym_attribute_declaration] = STATE(3169), + [aux_sym_type_definition_repeat1] = STATE(2026), + [aux_sym_attributed_declarator_repeat1] = STATE(3169), + [sym_identifier] = ACTIONS(8833), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8835), + [anon_sym_COMMA] = ACTIONS(8835), + [anon_sym_RPAREN] = ACTIONS(8835), + [aux_sym_preproc_if_token2] = ACTIONS(8835), + [aux_sym_preproc_else_token1] = ACTIONS(8835), + [aux_sym_preproc_elif_token1] = ACTIONS(8833), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8835), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8835), + [anon_sym_LPAREN2] = ACTIONS(8835), + [anon_sym_DASH] = ACTIONS(8833), + [anon_sym_PLUS] = ACTIONS(8833), + [anon_sym_STAR] = ACTIONS(8833), + [anon_sym_SLASH] = ACTIONS(8833), + [anon_sym_PERCENT] = ACTIONS(8833), + [anon_sym_PIPE_PIPE] = ACTIONS(8835), + [anon_sym_AMP_AMP] = ACTIONS(8835), + [anon_sym_PIPE] = ACTIONS(8833), + [anon_sym_CARET] = ACTIONS(8833), + [anon_sym_AMP] = ACTIONS(8833), + [anon_sym_EQ_EQ] = ACTIONS(8835), + [anon_sym_BANG_EQ] = ACTIONS(8835), + [anon_sym_GT] = ACTIONS(8833), + [anon_sym_GT_EQ] = ACTIONS(8835), + [anon_sym_LT_EQ] = ACTIONS(8833), + [anon_sym_LT] = ACTIONS(8833), + [anon_sym_LT_LT] = ACTIONS(8833), + [anon_sym_GT_GT] = ACTIONS(8833), + [anon_sym_SEMI] = ACTIONS(8835), + [anon_sym___attribute__] = ACTIONS(6491), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_COLON] = ACTIONS(8833), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8835), + [anon_sym_RBRACE] = ACTIONS(8835), + [anon_sym_LBRACK] = ACTIONS(8833), + [anon_sym_EQ] = ACTIONS(8833), + [anon_sym_QMARK] = ACTIONS(8835), + [anon_sym_STAR_EQ] = ACTIONS(8835), + [anon_sym_SLASH_EQ] = ACTIONS(8835), + [anon_sym_PERCENT_EQ] = ACTIONS(8835), + [anon_sym_PLUS_EQ] = ACTIONS(8835), + [anon_sym_DASH_EQ] = ACTIONS(8835), + [anon_sym_LT_LT_EQ] = ACTIONS(8835), + [anon_sym_GT_GT_EQ] = ACTIONS(8835), + [anon_sym_AMP_EQ] = ACTIONS(8835), + [anon_sym_CARET_EQ] = ACTIONS(8835), + [anon_sym_PIPE_EQ] = ACTIONS(8835), + [anon_sym_and_eq] = ACTIONS(8833), + [anon_sym_or_eq] = ACTIONS(8833), + [anon_sym_xor_eq] = ACTIONS(8833), + [anon_sym_LT_EQ_GT] = ACTIONS(8835), + [anon_sym_or] = ACTIONS(8833), + [anon_sym_and] = ACTIONS(8833), + [anon_sym_bitor] = ACTIONS(8833), + [anon_sym_xor] = ACTIONS(8833), + [anon_sym_bitand] = ACTIONS(8833), + [anon_sym_not_eq] = ACTIONS(8833), + [anon_sym_DASH_DASH] = ACTIONS(8835), + [anon_sym_PLUS_PLUS] = ACTIONS(8835), + [anon_sym_DOT] = ACTIONS(8833), + [anon_sym_DOT_STAR] = ACTIONS(8835), + [anon_sym_DASH_GT] = ACTIONS(8835), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8833), + [anon_sym_override] = ACTIONS(8833), + [anon_sym_requires] = ACTIONS(8833), + [anon_sym_COLON_RBRACK] = ACTIONS(8835), }, - [STATE(3360)] = { - [sym_identifier] = ACTIONS(4026), - [aux_sym_preproc_def_token1] = ACTIONS(4026), - [aux_sym_preproc_if_token1] = ACTIONS(4026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4026), - [sym_preproc_directive] = ACTIONS(4026), - [anon_sym_LPAREN2] = ACTIONS(4028), - [anon_sym_TILDE] = ACTIONS(4028), - [anon_sym_STAR] = ACTIONS(4028), - [anon_sym_AMP_AMP] = ACTIONS(4028), - [anon_sym_AMP] = ACTIONS(4026), - [anon_sym_SEMI] = ACTIONS(4028), - [anon_sym___extension__] = ACTIONS(4026), - [anon_sym_typedef] = ACTIONS(4026), - [anon_sym_virtual] = ACTIONS(4026), - [anon_sym_extern] = ACTIONS(4026), - [anon_sym___attribute__] = ACTIONS(4026), - [anon_sym___attribute] = ACTIONS(4026), - [anon_sym_using] = ACTIONS(4026), - [anon_sym_COLON_COLON] = ACTIONS(4028), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4028), - [anon_sym___declspec] = ACTIONS(4026), - [anon_sym___based] = ACTIONS(4026), - [anon_sym_RBRACE] = ACTIONS(4028), - [anon_sym_signed] = ACTIONS(4026), - [anon_sym_unsigned] = ACTIONS(4026), - [anon_sym_long] = ACTIONS(4026), - [anon_sym_short] = ACTIONS(4026), - [anon_sym_LBRACK] = ACTIONS(4026), - [anon_sym_static] = ACTIONS(4026), - [anon_sym_register] = ACTIONS(4026), - [anon_sym_inline] = ACTIONS(4026), - [anon_sym___inline] = ACTIONS(4026), - [anon_sym___inline__] = ACTIONS(4026), - [anon_sym___forceinline] = ACTIONS(4026), - [anon_sym_thread_local] = ACTIONS(4026), - [anon_sym___thread] = ACTIONS(4026), - [anon_sym_const] = ACTIONS(4026), - [anon_sym_constexpr] = ACTIONS(4026), - [anon_sym_volatile] = ACTIONS(4026), - [anon_sym_restrict] = ACTIONS(4026), - [anon_sym___restrict__] = ACTIONS(4026), - [anon_sym__Atomic] = ACTIONS(4026), - [anon_sym__Noreturn] = ACTIONS(4026), - [anon_sym_noreturn] = ACTIONS(4026), - [anon_sym__Nonnull] = ACTIONS(4026), - [anon_sym_mutable] = ACTIONS(4026), - [anon_sym_constinit] = ACTIONS(4026), - [anon_sym_consteval] = ACTIONS(4026), - [anon_sym_alignas] = ACTIONS(4026), - [anon_sym__Alignas] = ACTIONS(4026), - [sym_primitive_type] = ACTIONS(4026), - [anon_sym_enum] = ACTIONS(4026), - [anon_sym_class] = ACTIONS(4026), - [anon_sym_struct] = ACTIONS(4026), - [anon_sym_union] = ACTIONS(4026), - [anon_sym_typename] = ACTIONS(4026), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4026), - [anon_sym_decltype] = ACTIONS(4026), - [anon_sym_explicit] = ACTIONS(4026), - [anon_sym_private] = ACTIONS(4026), - [anon_sym_template] = ACTIONS(4026), - [anon_sym_operator] = ACTIONS(4026), - [anon_sym_friend] = ACTIONS(4026), - [anon_sym_public] = ACTIONS(4026), - [anon_sym_protected] = ACTIONS(4026), - [anon_sym_static_assert] = ACTIONS(4026), - [anon_sym_LBRACK_COLON] = ACTIONS(4028), + [STATE(2903)] = { + [sym_attribute_specifier] = STATE(2026), + [sym_attribute_declaration] = STATE(3129), + [aux_sym_type_definition_repeat1] = STATE(2026), + [aux_sym_attributed_declarator_repeat1] = STATE(3129), + [sym_identifier] = ACTIONS(8837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8839), + [anon_sym_COMMA] = ACTIONS(8839), + [anon_sym_RPAREN] = ACTIONS(8839), + [aux_sym_preproc_if_token2] = ACTIONS(8839), + [aux_sym_preproc_else_token1] = ACTIONS(8839), + [aux_sym_preproc_elif_token1] = ACTIONS(8837), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8839), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8839), + [anon_sym_LPAREN2] = ACTIONS(8839), + [anon_sym_DASH] = ACTIONS(8837), + [anon_sym_PLUS] = ACTIONS(8837), + [anon_sym_STAR] = ACTIONS(8837), + [anon_sym_SLASH] = ACTIONS(8837), + [anon_sym_PERCENT] = ACTIONS(8837), + [anon_sym_PIPE_PIPE] = ACTIONS(8839), + [anon_sym_AMP_AMP] = ACTIONS(8839), + [anon_sym_PIPE] = ACTIONS(8837), + [anon_sym_CARET] = ACTIONS(8837), + [anon_sym_AMP] = ACTIONS(8837), + [anon_sym_EQ_EQ] = ACTIONS(8839), + [anon_sym_BANG_EQ] = ACTIONS(8839), + [anon_sym_GT] = ACTIONS(8837), + [anon_sym_GT_EQ] = ACTIONS(8839), + [anon_sym_LT_EQ] = ACTIONS(8837), + [anon_sym_LT] = ACTIONS(8837), + [anon_sym_LT_LT] = ACTIONS(8837), + [anon_sym_GT_GT] = ACTIONS(8837), + [anon_sym_SEMI] = ACTIONS(8839), + [anon_sym___attribute__] = ACTIONS(6491), + [anon_sym___attribute] = ACTIONS(6491), + [anon_sym_COLON] = ACTIONS(8837), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8839), + [anon_sym_RBRACE] = ACTIONS(8839), + [anon_sym_LBRACK] = ACTIONS(8837), + [anon_sym_EQ] = ACTIONS(8837), + [anon_sym_QMARK] = ACTIONS(8839), + [anon_sym_STAR_EQ] = ACTIONS(8839), + [anon_sym_SLASH_EQ] = ACTIONS(8839), + [anon_sym_PERCENT_EQ] = ACTIONS(8839), + [anon_sym_PLUS_EQ] = ACTIONS(8839), + [anon_sym_DASH_EQ] = ACTIONS(8839), + [anon_sym_LT_LT_EQ] = ACTIONS(8839), + [anon_sym_GT_GT_EQ] = ACTIONS(8839), + [anon_sym_AMP_EQ] = ACTIONS(8839), + [anon_sym_CARET_EQ] = ACTIONS(8839), + [anon_sym_PIPE_EQ] = ACTIONS(8839), + [anon_sym_and_eq] = ACTIONS(8837), + [anon_sym_or_eq] = ACTIONS(8837), + [anon_sym_xor_eq] = ACTIONS(8837), + [anon_sym_LT_EQ_GT] = ACTIONS(8839), + [anon_sym_or] = ACTIONS(8837), + [anon_sym_and] = ACTIONS(8837), + [anon_sym_bitor] = ACTIONS(8837), + [anon_sym_xor] = ACTIONS(8837), + [anon_sym_bitand] = ACTIONS(8837), + [anon_sym_not_eq] = ACTIONS(8837), + [anon_sym_DASH_DASH] = ACTIONS(8839), + [anon_sym_PLUS_PLUS] = ACTIONS(8839), + [anon_sym_DOT] = ACTIONS(8837), + [anon_sym_DOT_STAR] = ACTIONS(8839), + [anon_sym_DASH_GT] = ACTIONS(8839), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8837), + [anon_sym_override] = ACTIONS(8837), + [anon_sym_requires] = ACTIONS(8837), + [anon_sym_COLON_RBRACK] = ACTIONS(8839), }, - [STATE(3361)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3239), - [sym_identifier] = ACTIONS(7383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7385), - [anon_sym_COMMA] = ACTIONS(7385), - [aux_sym_preproc_if_token2] = ACTIONS(7385), - [aux_sym_preproc_else_token1] = ACTIONS(7385), - [aux_sym_preproc_elif_token1] = ACTIONS(7383), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7385), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7385), - [anon_sym_LPAREN2] = ACTIONS(7385), - [anon_sym_DASH] = ACTIONS(7383), - [anon_sym_PLUS] = ACTIONS(7383), - [anon_sym_STAR] = ACTIONS(7385), - [anon_sym_SLASH] = ACTIONS(7383), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_PIPE_PIPE] = ACTIONS(7385), - [anon_sym_AMP_AMP] = ACTIONS(7385), - [anon_sym_PIPE] = ACTIONS(7383), - [anon_sym_CARET] = ACTIONS(7385), - [anon_sym_AMP] = ACTIONS(7383), - [anon_sym_EQ_EQ] = ACTIONS(7385), - [anon_sym_BANG_EQ] = ACTIONS(7385), - [anon_sym_GT] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7385), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_LT] = ACTIONS(7383), - [anon_sym_LT_LT] = ACTIONS(7385), - [anon_sym_GT_GT] = ACTIONS(7385), + [STATE(2904)] = { + [sym_catch_clause] = STATE(2926), + [aux_sym_constructor_try_statement_repeat1] = STATE(2926), + [sym_identifier] = ACTIONS(3182), + [aux_sym_preproc_def_token1] = ACTIONS(3182), + [aux_sym_preproc_if_token1] = ACTIONS(3182), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3182), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3182), + [sym_preproc_directive] = ACTIONS(3182), + [anon_sym_LPAREN2] = ACTIONS(3184), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_STAR] = ACTIONS(3184), + [anon_sym_AMP_AMP] = ACTIONS(3184), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym___extension__] = ACTIONS(3182), + [anon_sym_typedef] = ACTIONS(3182), + [anon_sym_virtual] = ACTIONS(3182), + [anon_sym_extern] = ACTIONS(3182), + [anon_sym___attribute__] = ACTIONS(3182), + [anon_sym___attribute] = ACTIONS(3182), + [anon_sym_using] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3184), + [anon_sym___declspec] = ACTIONS(3182), + [anon_sym___based] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_signed] = ACTIONS(3182), + [anon_sym_unsigned] = ACTIONS(3182), + [anon_sym_long] = ACTIONS(3182), + [anon_sym_short] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_register] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym___inline] = ACTIONS(3182), + [anon_sym___inline__] = ACTIONS(3182), + [anon_sym___forceinline] = ACTIONS(3182), + [anon_sym_thread_local] = ACTIONS(3182), + [anon_sym___thread] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_constexpr] = ACTIONS(3182), + [anon_sym_volatile] = ACTIONS(3182), + [anon_sym_restrict] = ACTIONS(3182), + [anon_sym___restrict__] = ACTIONS(3182), + [anon_sym__Atomic] = ACTIONS(3182), + [anon_sym__Noreturn] = ACTIONS(3182), + [anon_sym_noreturn] = ACTIONS(3182), + [anon_sym__Nonnull] = ACTIONS(3182), + [anon_sym_mutable] = ACTIONS(3182), + [anon_sym_constinit] = ACTIONS(3182), + [anon_sym_consteval] = ACTIONS(3182), + [anon_sym_alignas] = ACTIONS(3182), + [anon_sym__Alignas] = ACTIONS(3182), + [sym_primitive_type] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), + [anon_sym_class] = ACTIONS(3182), + [anon_sym_struct] = ACTIONS(3182), + [anon_sym_union] = ACTIONS(3182), + [anon_sym_typename] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3182), + [anon_sym_decltype] = ACTIONS(3182), + [anon_sym_explicit] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_friend] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_static_assert] = ACTIONS(3182), + [anon_sym_catch] = ACTIONS(8841), + [anon_sym_LBRACK_COLON] = ACTIONS(3184), + }, + [STATE(2905)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7737), + [anon_sym_COMMA] = ACTIONS(7737), + [anon_sym_LPAREN2] = ACTIONS(7737), + [anon_sym_DASH] = ACTIONS(7735), + [anon_sym_PLUS] = ACTIONS(7735), + [anon_sym_STAR] = ACTIONS(7735), + [anon_sym_SLASH] = ACTIONS(7735), + [anon_sym_PERCENT] = ACTIONS(7735), + [anon_sym_PIPE_PIPE] = ACTIONS(7737), + [anon_sym_AMP_AMP] = ACTIONS(7737), + [anon_sym_PIPE] = ACTIONS(7735), + [anon_sym_CARET] = ACTIONS(7735), + [anon_sym_AMP] = ACTIONS(7735), + [anon_sym_EQ_EQ] = ACTIONS(7737), + [anon_sym_BANG_EQ] = ACTIONS(7737), + [anon_sym_GT] = ACTIONS(7735), + [anon_sym_GT_EQ] = ACTIONS(7737), + [anon_sym_LT_EQ] = ACTIONS(7735), + [anon_sym_LT] = ACTIONS(7735), + [anon_sym_LT_LT] = ACTIONS(7735), + [anon_sym_GT_GT] = ACTIONS(7735), + [anon_sym___extension__] = ACTIONS(7737), + [anon_sym___attribute__] = ACTIONS(7737), + [anon_sym___attribute] = ACTIONS(7735), + [anon_sym_LBRACE] = ACTIONS(7737), + [anon_sym_LBRACK] = ACTIONS(7737), + [anon_sym_RBRACK] = ACTIONS(7737), + [anon_sym_EQ] = ACTIONS(7735), + [anon_sym_const] = ACTIONS(7735), + [anon_sym_constexpr] = ACTIONS(7737), + [anon_sym_volatile] = ACTIONS(7737), + [anon_sym_restrict] = ACTIONS(7737), + [anon_sym___restrict__] = ACTIONS(7737), + [anon_sym__Atomic] = ACTIONS(7737), + [anon_sym__Noreturn] = ACTIONS(7737), + [anon_sym_noreturn] = ACTIONS(7737), + [anon_sym__Nonnull] = ACTIONS(7737), + [anon_sym_mutable] = ACTIONS(7737), + [anon_sym_constinit] = ACTIONS(7737), + [anon_sym_consteval] = ACTIONS(7737), + [anon_sym_alignas] = ACTIONS(7737), + [anon_sym__Alignas] = ACTIONS(7737), + [anon_sym_QMARK] = ACTIONS(7737), + [anon_sym_STAR_EQ] = ACTIONS(7737), + [anon_sym_SLASH_EQ] = ACTIONS(7737), + [anon_sym_PERCENT_EQ] = ACTIONS(7737), + [anon_sym_PLUS_EQ] = ACTIONS(7737), + [anon_sym_DASH_EQ] = ACTIONS(7737), + [anon_sym_LT_LT_EQ] = ACTIONS(7737), + [anon_sym_GT_GT_EQ] = ACTIONS(7737), + [anon_sym_AMP_EQ] = ACTIONS(7737), + [anon_sym_CARET_EQ] = ACTIONS(7737), + [anon_sym_PIPE_EQ] = ACTIONS(7737), + [anon_sym_and_eq] = ACTIONS(7737), + [anon_sym_or_eq] = ACTIONS(7737), + [anon_sym_xor_eq] = ACTIONS(7737), + [anon_sym_LT_EQ_GT] = ACTIONS(7737), + [anon_sym_or] = ACTIONS(7735), + [anon_sym_and] = ACTIONS(7735), + [anon_sym_bitor] = ACTIONS(7737), + [anon_sym_xor] = ACTIONS(7735), + [anon_sym_bitand] = ACTIONS(7737), + [anon_sym_not_eq] = ACTIONS(7737), + [anon_sym_DASH_DASH] = ACTIONS(7737), + [anon_sym_PLUS_PLUS] = ACTIONS(7737), + [anon_sym_DOT] = ACTIONS(7735), + [anon_sym_DOT_STAR] = ACTIONS(7737), + [anon_sym_DASH_GT] = ACTIONS(7737), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7737), + [anon_sym_override] = ACTIONS(7737), + [anon_sym_requires] = ACTIONS(7737), + }, + [STATE(2906)] = { + [sym_catch_clause] = STATE(2912), + [aux_sym_constructor_try_statement_repeat1] = STATE(2912), + [sym_identifier] = ACTIONS(3165), + [aux_sym_preproc_def_token1] = ACTIONS(3165), + [aux_sym_preproc_if_token1] = ACTIONS(3165), + [aux_sym_preproc_if_token2] = ACTIONS(3165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3165), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3165), + [sym_preproc_directive] = ACTIONS(3165), + [anon_sym_LPAREN2] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(3167), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym___extension__] = ACTIONS(3165), + [anon_sym_typedef] = ACTIONS(3165), + [anon_sym_virtual] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3165), + [anon_sym___attribute__] = ACTIONS(3165), + [anon_sym___attribute] = ACTIONS(3165), + [anon_sym_using] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(3167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3167), + [anon_sym___declspec] = ACTIONS(3165), + [anon_sym___based] = ACTIONS(3165), + [anon_sym_signed] = ACTIONS(3165), + [anon_sym_unsigned] = ACTIONS(3165), + [anon_sym_long] = ACTIONS(3165), + [anon_sym_short] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_static] = ACTIONS(3165), + [anon_sym_register] = ACTIONS(3165), + [anon_sym_inline] = ACTIONS(3165), + [anon_sym___inline] = ACTIONS(3165), + [anon_sym___inline__] = ACTIONS(3165), + [anon_sym___forceinline] = ACTIONS(3165), + [anon_sym_thread_local] = ACTIONS(3165), + [anon_sym___thread] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_constexpr] = ACTIONS(3165), + [anon_sym_volatile] = ACTIONS(3165), + [anon_sym_restrict] = ACTIONS(3165), + [anon_sym___restrict__] = ACTIONS(3165), + [anon_sym__Atomic] = ACTIONS(3165), + [anon_sym__Noreturn] = ACTIONS(3165), + [anon_sym_noreturn] = ACTIONS(3165), + [anon_sym__Nonnull] = ACTIONS(3165), + [anon_sym_mutable] = ACTIONS(3165), + [anon_sym_constinit] = ACTIONS(3165), + [anon_sym_consteval] = ACTIONS(3165), + [anon_sym_alignas] = ACTIONS(3165), + [anon_sym__Alignas] = ACTIONS(3165), + [sym_primitive_type] = ACTIONS(3165), + [anon_sym_enum] = ACTIONS(3165), + [anon_sym_class] = ACTIONS(3165), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3165), + [anon_sym_typename] = ACTIONS(3165), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3165), + [anon_sym_decltype] = ACTIONS(3165), + [anon_sym_explicit] = ACTIONS(3165), + [anon_sym_private] = ACTIONS(3165), + [anon_sym_template] = ACTIONS(3165), + [anon_sym_operator] = ACTIONS(3165), + [anon_sym_friend] = ACTIONS(3165), + [anon_sym_public] = ACTIONS(3165), + [anon_sym_protected] = ACTIONS(3165), + [anon_sym_static_assert] = ACTIONS(3165), + [anon_sym_catch] = ACTIONS(8843), + [anon_sym_LBRACK_COLON] = ACTIONS(3167), + }, + [STATE(2907)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7749), + [anon_sym_COMMA] = ACTIONS(7749), + [anon_sym_LPAREN2] = ACTIONS(7749), + [anon_sym_DASH] = ACTIONS(7747), + [anon_sym_PLUS] = ACTIONS(7747), + [anon_sym_STAR] = ACTIONS(7747), + [anon_sym_SLASH] = ACTIONS(7747), + [anon_sym_PERCENT] = ACTIONS(7747), + [anon_sym_PIPE_PIPE] = ACTIONS(7749), + [anon_sym_AMP_AMP] = ACTIONS(7749), + [anon_sym_PIPE] = ACTIONS(7747), + [anon_sym_CARET] = ACTIONS(7747), + [anon_sym_AMP] = ACTIONS(7747), + [anon_sym_EQ_EQ] = ACTIONS(7749), + [anon_sym_BANG_EQ] = ACTIONS(7749), + [anon_sym_GT] = ACTIONS(7747), + [anon_sym_GT_EQ] = ACTIONS(7749), + [anon_sym_LT_EQ] = ACTIONS(7747), + [anon_sym_LT] = ACTIONS(7747), + [anon_sym_LT_LT] = ACTIONS(7747), + [anon_sym_GT_GT] = ACTIONS(7747), + [anon_sym___extension__] = ACTIONS(7749), + [anon_sym___attribute__] = ACTIONS(7749), + [anon_sym___attribute] = ACTIONS(7747), + [anon_sym_LBRACE] = ACTIONS(7749), + [anon_sym_LBRACK] = ACTIONS(7749), + [anon_sym_RBRACK] = ACTIONS(7749), + [anon_sym_EQ] = ACTIONS(7747), + [anon_sym_const] = ACTIONS(7747), + [anon_sym_constexpr] = ACTIONS(7749), + [anon_sym_volatile] = ACTIONS(7749), + [anon_sym_restrict] = ACTIONS(7749), + [anon_sym___restrict__] = ACTIONS(7749), + [anon_sym__Atomic] = ACTIONS(7749), + [anon_sym__Noreturn] = ACTIONS(7749), + [anon_sym_noreturn] = ACTIONS(7749), + [anon_sym__Nonnull] = ACTIONS(7749), + [anon_sym_mutable] = ACTIONS(7749), + [anon_sym_constinit] = ACTIONS(7749), + [anon_sym_consteval] = ACTIONS(7749), + [anon_sym_alignas] = ACTIONS(7749), + [anon_sym__Alignas] = ACTIONS(7749), + [anon_sym_QMARK] = ACTIONS(7749), + [anon_sym_STAR_EQ] = ACTIONS(7749), + [anon_sym_SLASH_EQ] = ACTIONS(7749), + [anon_sym_PERCENT_EQ] = ACTIONS(7749), + [anon_sym_PLUS_EQ] = ACTIONS(7749), + [anon_sym_DASH_EQ] = ACTIONS(7749), + [anon_sym_LT_LT_EQ] = ACTIONS(7749), + [anon_sym_GT_GT_EQ] = ACTIONS(7749), + [anon_sym_AMP_EQ] = ACTIONS(7749), + [anon_sym_CARET_EQ] = ACTIONS(7749), + [anon_sym_PIPE_EQ] = ACTIONS(7749), + [anon_sym_and_eq] = ACTIONS(7749), + [anon_sym_or_eq] = ACTIONS(7749), + [anon_sym_xor_eq] = ACTIONS(7749), + [anon_sym_LT_EQ_GT] = ACTIONS(7749), + [anon_sym_or] = ACTIONS(7747), + [anon_sym_and] = ACTIONS(7747), + [anon_sym_bitor] = ACTIONS(7749), + [anon_sym_xor] = ACTIONS(7747), + [anon_sym_bitand] = ACTIONS(7749), + [anon_sym_not_eq] = ACTIONS(7749), + [anon_sym_DASH_DASH] = ACTIONS(7749), + [anon_sym_PLUS_PLUS] = ACTIONS(7749), + [anon_sym_DOT] = ACTIONS(7747), + [anon_sym_DOT_STAR] = ACTIONS(7749), + [anon_sym_DASH_GT] = ACTIONS(7749), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7749), + [anon_sym_override] = ACTIONS(7749), + [anon_sym_requires] = ACTIONS(7749), + }, + [STATE(2908)] = { + [sym_attribute_specifier] = STATE(4124), + [sym_attribute_declaration] = STATE(4490), + [sym_gnu_asm_expression] = STATE(9129), + [sym_virtual_specifier] = STATE(4610), + [sym__function_attributes_end] = STATE(4299), + [sym__function_postfix] = STATE(4890), + [sym_trailing_return_type] = STATE(4345), + [sym_requires_clause] = STATE(4890), + [aux_sym_type_definition_repeat1] = STATE(4124), + [aux_sym_attributed_declarator_repeat1] = STATE(4490), + [aux_sym__function_postfix_repeat1] = STATE(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_RPAREN] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym___attribute__] = ACTIONS(6646), + [anon_sym___attribute] = ACTIONS(6648), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7966), + [anon_sym_or_eq] = ACTIONS(7966), + [anon_sym_xor_eq] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(8271), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8301), + [anon_sym_override] = ACTIONS(8301), + [anon_sym_requires] = ACTIONS(8304), + [anon_sym_DASH_GT_STAR] = ACTIONS(7966), + }, + [STATE(2909)] = { + [sym_attribute_specifier] = STATE(4124), + [sym_attribute_declaration] = STATE(4490), + [sym_gnu_asm_expression] = STATE(9129), + [sym_virtual_specifier] = STATE(4610), + [sym__function_attributes_end] = STATE(4312), + [sym__function_postfix] = STATE(4813), + [sym_trailing_return_type] = STATE(4365), + [sym_requires_clause] = STATE(4813), + [aux_sym_type_definition_repeat1] = STATE(4124), + [aux_sym_attributed_declarator_repeat1] = STATE(4490), + [aux_sym__function_postfix_repeat1] = STATE(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), + [anon_sym_COMMA] = ACTIONS(8422), + [anon_sym_RPAREN] = ACTIONS(8422), + [anon_sym_LPAREN2] = ACTIONS(8422), + [anon_sym_DASH] = ACTIONS(8424), + [anon_sym_PLUS] = ACTIONS(8424), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_SLASH] = ACTIONS(8424), + [anon_sym_PERCENT] = ACTIONS(8424), + [anon_sym_PIPE_PIPE] = ACTIONS(8422), + [anon_sym_AMP_AMP] = ACTIONS(8422), + [anon_sym_PIPE] = ACTIONS(8424), + [anon_sym_CARET] = ACTIONS(8424), + [anon_sym_AMP] = ACTIONS(8424), + [anon_sym_EQ_EQ] = ACTIONS(8422), + [anon_sym_BANG_EQ] = ACTIONS(8422), + [anon_sym_GT] = ACTIONS(8424), + [anon_sym_GT_EQ] = ACTIONS(8422), + [anon_sym_LT_EQ] = ACTIONS(8424), + [anon_sym_LT] = ACTIONS(8424), + [anon_sym_LT_LT] = ACTIONS(8424), + [anon_sym_GT_GT] = ACTIONS(8424), + [anon_sym___attribute__] = ACTIONS(6646), + [anon_sym___attribute] = ACTIONS(6648), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), + [anon_sym_LBRACK] = ACTIONS(8424), + [anon_sym_EQ] = ACTIONS(8424), + [anon_sym_QMARK] = ACTIONS(8422), + [anon_sym_STAR_EQ] = ACTIONS(8422), + [anon_sym_SLASH_EQ] = ACTIONS(8422), + [anon_sym_PERCENT_EQ] = ACTIONS(8422), + [anon_sym_PLUS_EQ] = ACTIONS(8422), + [anon_sym_DASH_EQ] = ACTIONS(8422), + [anon_sym_LT_LT_EQ] = ACTIONS(8422), + [anon_sym_GT_GT_EQ] = ACTIONS(8422), + [anon_sym_AMP_EQ] = ACTIONS(8422), + [anon_sym_CARET_EQ] = ACTIONS(8422), + [anon_sym_PIPE_EQ] = ACTIONS(8422), + [anon_sym_and_eq] = ACTIONS(8422), + [anon_sym_or_eq] = ACTIONS(8422), + [anon_sym_xor_eq] = ACTIONS(8422), + [anon_sym_LT_EQ_GT] = ACTIONS(8422), + [anon_sym_or] = ACTIONS(8424), + [anon_sym_and] = ACTIONS(8424), + [anon_sym_bitor] = ACTIONS(8422), + [anon_sym_xor] = ACTIONS(8424), + [anon_sym_bitand] = ACTIONS(8422), + [anon_sym_not_eq] = ACTIONS(8422), + [anon_sym_DASH_DASH] = ACTIONS(8422), + [anon_sym_PLUS_PLUS] = ACTIONS(8422), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(8424), + [anon_sym_DOT_STAR] = ACTIONS(8422), + [anon_sym_DASH_GT] = ACTIONS(8845), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6669), + [anon_sym_override] = ACTIONS(6669), + [anon_sym_requires] = ACTIONS(6671), + [anon_sym_DASH_GT_STAR] = ACTIONS(8422), + }, + [STATE(2910)] = { + [sym_catch_clause] = STATE(2912), + [aux_sym_constructor_try_statement_repeat1] = STATE(2912), + [sym_identifier] = ACTIONS(3182), + [aux_sym_preproc_def_token1] = ACTIONS(3182), + [aux_sym_preproc_if_token1] = ACTIONS(3182), + [aux_sym_preproc_if_token2] = ACTIONS(3182), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3182), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3182), + [sym_preproc_directive] = ACTIONS(3182), + [anon_sym_LPAREN2] = ACTIONS(3184), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_STAR] = ACTIONS(3184), + [anon_sym_AMP_AMP] = ACTIONS(3184), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym___extension__] = ACTIONS(3182), + [anon_sym_typedef] = ACTIONS(3182), + [anon_sym_virtual] = ACTIONS(3182), + [anon_sym_extern] = ACTIONS(3182), + [anon_sym___attribute__] = ACTIONS(3182), + [anon_sym___attribute] = ACTIONS(3182), + [anon_sym_using] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3184), + [anon_sym___declspec] = ACTIONS(3182), + [anon_sym___based] = ACTIONS(3182), + [anon_sym_signed] = ACTIONS(3182), + [anon_sym_unsigned] = ACTIONS(3182), + [anon_sym_long] = ACTIONS(3182), + [anon_sym_short] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_register] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym___inline] = ACTIONS(3182), + [anon_sym___inline__] = ACTIONS(3182), + [anon_sym___forceinline] = ACTIONS(3182), + [anon_sym_thread_local] = ACTIONS(3182), + [anon_sym___thread] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_constexpr] = ACTIONS(3182), + [anon_sym_volatile] = ACTIONS(3182), + [anon_sym_restrict] = ACTIONS(3182), + [anon_sym___restrict__] = ACTIONS(3182), + [anon_sym__Atomic] = ACTIONS(3182), + [anon_sym__Noreturn] = ACTIONS(3182), + [anon_sym_noreturn] = ACTIONS(3182), + [anon_sym__Nonnull] = ACTIONS(3182), + [anon_sym_mutable] = ACTIONS(3182), + [anon_sym_constinit] = ACTIONS(3182), + [anon_sym_consteval] = ACTIONS(3182), + [anon_sym_alignas] = ACTIONS(3182), + [anon_sym__Alignas] = ACTIONS(3182), + [sym_primitive_type] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), + [anon_sym_class] = ACTIONS(3182), + [anon_sym_struct] = ACTIONS(3182), + [anon_sym_union] = ACTIONS(3182), + [anon_sym_typename] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3182), + [anon_sym_decltype] = ACTIONS(3182), + [anon_sym_explicit] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_template] = ACTIONS(3182), + [anon_sym_operator] = ACTIONS(3182), + [anon_sym_friend] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_static_assert] = ACTIONS(3182), + [anon_sym_catch] = ACTIONS(8843), + [anon_sym_LBRACK_COLON] = ACTIONS(3184), + }, + [STATE(2911)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7649), + [anon_sym_COMMA] = ACTIONS(7649), + [anon_sym_LPAREN2] = ACTIONS(7649), + [anon_sym_DASH] = ACTIONS(7647), + [anon_sym_PLUS] = ACTIONS(7647), + [anon_sym_STAR] = ACTIONS(7647), + [anon_sym_SLASH] = ACTIONS(7647), + [anon_sym_PERCENT] = ACTIONS(7647), + [anon_sym_PIPE_PIPE] = ACTIONS(7649), + [anon_sym_AMP_AMP] = ACTIONS(7649), + [anon_sym_PIPE] = ACTIONS(7647), + [anon_sym_CARET] = ACTIONS(7647), + [anon_sym_AMP] = ACTIONS(7647), + [anon_sym_EQ_EQ] = ACTIONS(7649), + [anon_sym_BANG_EQ] = ACTIONS(7649), + [anon_sym_GT] = ACTIONS(7647), + [anon_sym_GT_EQ] = ACTIONS(7649), + [anon_sym_LT_EQ] = ACTIONS(7647), + [anon_sym_LT] = ACTIONS(7647), + [anon_sym_LT_LT] = ACTIONS(7647), + [anon_sym_GT_GT] = ACTIONS(7647), + [anon_sym___extension__] = ACTIONS(7649), + [anon_sym___attribute__] = ACTIONS(7649), + [anon_sym___attribute] = ACTIONS(7647), + [anon_sym_LBRACE] = ACTIONS(7649), + [anon_sym_LBRACK] = ACTIONS(7649), + [anon_sym_RBRACK] = ACTIONS(7649), + [anon_sym_EQ] = ACTIONS(7647), + [anon_sym_const] = ACTIONS(7647), + [anon_sym_constexpr] = ACTIONS(7649), + [anon_sym_volatile] = ACTIONS(7649), + [anon_sym_restrict] = ACTIONS(7649), + [anon_sym___restrict__] = ACTIONS(7649), + [anon_sym__Atomic] = ACTIONS(7649), + [anon_sym__Noreturn] = ACTIONS(7649), + [anon_sym_noreturn] = ACTIONS(7649), + [anon_sym__Nonnull] = ACTIONS(7649), + [anon_sym_mutable] = ACTIONS(7649), + [anon_sym_constinit] = ACTIONS(7649), + [anon_sym_consteval] = ACTIONS(7649), + [anon_sym_alignas] = ACTIONS(7649), + [anon_sym__Alignas] = ACTIONS(7649), + [anon_sym_QMARK] = ACTIONS(7649), + [anon_sym_STAR_EQ] = ACTIONS(7649), + [anon_sym_SLASH_EQ] = ACTIONS(7649), + [anon_sym_PERCENT_EQ] = ACTIONS(7649), + [anon_sym_PLUS_EQ] = ACTIONS(7649), + [anon_sym_DASH_EQ] = ACTIONS(7649), + [anon_sym_LT_LT_EQ] = ACTIONS(7649), + [anon_sym_GT_GT_EQ] = ACTIONS(7649), + [anon_sym_AMP_EQ] = ACTIONS(7649), + [anon_sym_CARET_EQ] = ACTIONS(7649), + [anon_sym_PIPE_EQ] = ACTIONS(7649), + [anon_sym_and_eq] = ACTIONS(7649), + [anon_sym_or_eq] = ACTIONS(7649), + [anon_sym_xor_eq] = ACTIONS(7649), + [anon_sym_LT_EQ_GT] = ACTIONS(7649), + [anon_sym_or] = ACTIONS(7647), + [anon_sym_and] = ACTIONS(7647), + [anon_sym_bitor] = ACTIONS(7649), + [anon_sym_xor] = ACTIONS(7647), + [anon_sym_bitand] = ACTIONS(7649), + [anon_sym_not_eq] = ACTIONS(7649), + [anon_sym_DASH_DASH] = ACTIONS(7649), + [anon_sym_PLUS_PLUS] = ACTIONS(7649), + [anon_sym_DOT] = ACTIONS(7647), + [anon_sym_DOT_STAR] = ACTIONS(7649), + [anon_sym_DASH_GT] = ACTIONS(7649), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7649), + [anon_sym_override] = ACTIONS(7649), + [anon_sym_requires] = ACTIONS(7649), + }, + [STATE(2912)] = { + [sym_catch_clause] = STATE(2912), + [aux_sym_constructor_try_statement_repeat1] = STATE(2912), + [sym_identifier] = ACTIONS(3171), + [aux_sym_preproc_def_token1] = ACTIONS(3171), + [aux_sym_preproc_if_token1] = ACTIONS(3171), + [aux_sym_preproc_if_token2] = ACTIONS(3171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3171), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3171), + [sym_preproc_directive] = ACTIONS(3171), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3173), + [anon_sym_STAR] = ACTIONS(3173), + [anon_sym_AMP_AMP] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym___extension__] = ACTIONS(3171), + [anon_sym_typedef] = ACTIONS(3171), + [anon_sym_virtual] = ACTIONS(3171), + [anon_sym_extern] = ACTIONS(3171), + [anon_sym___attribute__] = ACTIONS(3171), + [anon_sym___attribute] = ACTIONS(3171), + [anon_sym_using] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3173), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), + [anon_sym___declspec] = ACTIONS(3171), + [anon_sym___based] = ACTIONS(3171), + [anon_sym_signed] = ACTIONS(3171), + [anon_sym_unsigned] = ACTIONS(3171), + [anon_sym_long] = ACTIONS(3171), + [anon_sym_short] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_register] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym___inline] = ACTIONS(3171), + [anon_sym___inline__] = ACTIONS(3171), + [anon_sym___forceinline] = ACTIONS(3171), + [anon_sym_thread_local] = ACTIONS(3171), + [anon_sym___thread] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_constexpr] = ACTIONS(3171), + [anon_sym_volatile] = ACTIONS(3171), + [anon_sym_restrict] = ACTIONS(3171), + [anon_sym___restrict__] = ACTIONS(3171), + [anon_sym__Atomic] = ACTIONS(3171), + [anon_sym__Noreturn] = ACTIONS(3171), + [anon_sym_noreturn] = ACTIONS(3171), + [anon_sym__Nonnull] = ACTIONS(3171), + [anon_sym_mutable] = ACTIONS(3171), + [anon_sym_constinit] = ACTIONS(3171), + [anon_sym_consteval] = ACTIONS(3171), + [anon_sym_alignas] = ACTIONS(3171), + [anon_sym__Alignas] = ACTIONS(3171), + [sym_primitive_type] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), + [anon_sym_class] = ACTIONS(3171), + [anon_sym_struct] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_typename] = ACTIONS(3171), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3171), + [anon_sym_decltype] = ACTIONS(3171), + [anon_sym_explicit] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_template] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_friend] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_static_assert] = ACTIONS(3171), + [anon_sym_catch] = ACTIONS(8848), + [anon_sym_LBRACK_COLON] = ACTIONS(3173), + }, + [STATE(2913)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), + [anon_sym_COMMA] = ACTIONS(7719), + [anon_sym_LPAREN2] = ACTIONS(7719), + [anon_sym_DASH] = ACTIONS(7717), + [anon_sym_PLUS] = ACTIONS(7717), + [anon_sym_STAR] = ACTIONS(7717), + [anon_sym_SLASH] = ACTIONS(7717), + [anon_sym_PERCENT] = ACTIONS(7717), + [anon_sym_PIPE_PIPE] = ACTIONS(7719), + [anon_sym_AMP_AMP] = ACTIONS(7719), + [anon_sym_PIPE] = ACTIONS(7717), + [anon_sym_CARET] = ACTIONS(7717), + [anon_sym_AMP] = ACTIONS(7717), + [anon_sym_EQ_EQ] = ACTIONS(7719), + [anon_sym_BANG_EQ] = ACTIONS(7719), + [anon_sym_GT] = ACTIONS(7717), + [anon_sym_GT_EQ] = ACTIONS(7719), + [anon_sym_LT_EQ] = ACTIONS(7717), + [anon_sym_LT] = ACTIONS(7717), + [anon_sym_LT_LT] = ACTIONS(7717), + [anon_sym_GT_GT] = ACTIONS(7717), + [anon_sym___extension__] = ACTIONS(7719), + [anon_sym___attribute__] = ACTIONS(7719), + [anon_sym___attribute] = ACTIONS(7717), + [anon_sym_LBRACE] = ACTIONS(7719), + [anon_sym_LBRACK] = ACTIONS(7719), + [anon_sym_RBRACK] = ACTIONS(7719), + [anon_sym_EQ] = ACTIONS(7717), + [anon_sym_const] = ACTIONS(7717), + [anon_sym_constexpr] = ACTIONS(7719), + [anon_sym_volatile] = ACTIONS(7719), + [anon_sym_restrict] = ACTIONS(7719), + [anon_sym___restrict__] = ACTIONS(7719), + [anon_sym__Atomic] = ACTIONS(7719), + [anon_sym__Noreturn] = ACTIONS(7719), + [anon_sym_noreturn] = ACTIONS(7719), + [anon_sym__Nonnull] = ACTIONS(7719), + [anon_sym_mutable] = ACTIONS(7719), + [anon_sym_constinit] = ACTIONS(7719), + [anon_sym_consteval] = ACTIONS(7719), + [anon_sym_alignas] = ACTIONS(7719), + [anon_sym__Alignas] = ACTIONS(7719), + [anon_sym_QMARK] = ACTIONS(7719), + [anon_sym_STAR_EQ] = ACTIONS(7719), + [anon_sym_SLASH_EQ] = ACTIONS(7719), + [anon_sym_PERCENT_EQ] = ACTIONS(7719), + [anon_sym_PLUS_EQ] = ACTIONS(7719), + [anon_sym_DASH_EQ] = ACTIONS(7719), + [anon_sym_LT_LT_EQ] = ACTIONS(7719), + [anon_sym_GT_GT_EQ] = ACTIONS(7719), + [anon_sym_AMP_EQ] = ACTIONS(7719), + [anon_sym_CARET_EQ] = ACTIONS(7719), + [anon_sym_PIPE_EQ] = ACTIONS(7719), + [anon_sym_and_eq] = ACTIONS(7719), + [anon_sym_or_eq] = ACTIONS(7719), + [anon_sym_xor_eq] = ACTIONS(7719), + [anon_sym_LT_EQ_GT] = ACTIONS(7719), + [anon_sym_or] = ACTIONS(7717), + [anon_sym_and] = ACTIONS(7717), + [anon_sym_bitor] = ACTIONS(7719), + [anon_sym_xor] = ACTIONS(7717), + [anon_sym_bitand] = ACTIONS(7719), + [anon_sym_not_eq] = ACTIONS(7719), + [anon_sym_DASH_DASH] = ACTIONS(7719), + [anon_sym_PLUS_PLUS] = ACTIONS(7719), + [anon_sym_DOT] = ACTIONS(7717), + [anon_sym_DOT_STAR] = ACTIONS(7719), + [anon_sym_DASH_GT] = ACTIONS(7719), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7719), + [anon_sym_override] = ACTIONS(7719), + [anon_sym_requires] = ACTIONS(7719), + }, + [STATE(2914)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7587), + [anon_sym_COMMA] = ACTIONS(7587), + [anon_sym_LPAREN2] = ACTIONS(7587), + [anon_sym_DASH] = ACTIONS(7585), + [anon_sym_PLUS] = ACTIONS(7585), + [anon_sym_STAR] = ACTIONS(7585), + [anon_sym_SLASH] = ACTIONS(7585), + [anon_sym_PERCENT] = ACTIONS(7585), + [anon_sym_PIPE_PIPE] = ACTIONS(7587), + [anon_sym_AMP_AMP] = ACTIONS(7587), + [anon_sym_PIPE] = ACTIONS(7585), + [anon_sym_CARET] = ACTIONS(7585), + [anon_sym_AMP] = ACTIONS(7585), + [anon_sym_EQ_EQ] = ACTIONS(7587), + [anon_sym_BANG_EQ] = ACTIONS(7587), + [anon_sym_GT] = ACTIONS(7585), + [anon_sym_GT_EQ] = ACTIONS(7587), + [anon_sym_LT_EQ] = ACTIONS(7585), + [anon_sym_LT] = ACTIONS(7585), + [anon_sym_LT_LT] = ACTIONS(7585), + [anon_sym_GT_GT] = ACTIONS(7585), + [anon_sym___extension__] = ACTIONS(7587), + [anon_sym___attribute__] = ACTIONS(7587), + [anon_sym___attribute] = ACTIONS(7585), + [anon_sym_LBRACE] = ACTIONS(7587), + [anon_sym_LBRACK] = ACTIONS(7587), + [anon_sym_RBRACK] = ACTIONS(7587), + [anon_sym_EQ] = ACTIONS(7585), + [anon_sym_const] = ACTIONS(7585), + [anon_sym_constexpr] = ACTIONS(7587), + [anon_sym_volatile] = ACTIONS(7587), + [anon_sym_restrict] = ACTIONS(7587), + [anon_sym___restrict__] = ACTIONS(7587), + [anon_sym__Atomic] = ACTIONS(7587), + [anon_sym__Noreturn] = ACTIONS(7587), + [anon_sym_noreturn] = ACTIONS(7587), + [anon_sym__Nonnull] = ACTIONS(7587), + [anon_sym_mutable] = ACTIONS(7587), + [anon_sym_constinit] = ACTIONS(7587), + [anon_sym_consteval] = ACTIONS(7587), + [anon_sym_alignas] = ACTIONS(7587), + [anon_sym__Alignas] = ACTIONS(7587), + [anon_sym_QMARK] = ACTIONS(7587), + [anon_sym_STAR_EQ] = ACTIONS(7587), + [anon_sym_SLASH_EQ] = ACTIONS(7587), + [anon_sym_PERCENT_EQ] = ACTIONS(7587), + [anon_sym_PLUS_EQ] = ACTIONS(7587), + [anon_sym_DASH_EQ] = ACTIONS(7587), + [anon_sym_LT_LT_EQ] = ACTIONS(7587), + [anon_sym_GT_GT_EQ] = ACTIONS(7587), + [anon_sym_AMP_EQ] = ACTIONS(7587), + [anon_sym_CARET_EQ] = ACTIONS(7587), + [anon_sym_PIPE_EQ] = ACTIONS(7587), + [anon_sym_and_eq] = ACTIONS(7587), + [anon_sym_or_eq] = ACTIONS(7587), + [anon_sym_xor_eq] = ACTIONS(7587), + [anon_sym_LT_EQ_GT] = ACTIONS(7587), + [anon_sym_or] = ACTIONS(7585), + [anon_sym_and] = ACTIONS(7585), + [anon_sym_bitor] = ACTIONS(7587), + [anon_sym_xor] = ACTIONS(7585), + [anon_sym_bitand] = ACTIONS(7587), + [anon_sym_not_eq] = ACTIONS(7587), + [anon_sym_DASH_DASH] = ACTIONS(7587), + [anon_sym_PLUS_PLUS] = ACTIONS(7587), + [anon_sym_DOT] = ACTIONS(7585), + [anon_sym_DOT_STAR] = ACTIONS(7587), + [anon_sym_DASH_GT] = ACTIONS(7587), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7587), + [anon_sym_override] = ACTIONS(7587), + [anon_sym_requires] = ACTIONS(7587), + }, + [STATE(2915)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7633), + [anon_sym_COMMA] = ACTIONS(7633), + [anon_sym_LPAREN2] = ACTIONS(7633), + [anon_sym_DASH] = ACTIONS(7631), + [anon_sym_PLUS] = ACTIONS(7631), + [anon_sym_STAR] = ACTIONS(7631), + [anon_sym_SLASH] = ACTIONS(7631), + [anon_sym_PERCENT] = ACTIONS(7631), + [anon_sym_PIPE_PIPE] = ACTIONS(7633), + [anon_sym_AMP_AMP] = ACTIONS(7633), + [anon_sym_PIPE] = ACTIONS(7631), + [anon_sym_CARET] = ACTIONS(7631), + [anon_sym_AMP] = ACTIONS(7631), + [anon_sym_EQ_EQ] = ACTIONS(7633), + [anon_sym_BANG_EQ] = ACTIONS(7633), + [anon_sym_GT] = ACTIONS(7631), + [anon_sym_GT_EQ] = ACTIONS(7633), + [anon_sym_LT_EQ] = ACTIONS(7631), + [anon_sym_LT] = ACTIONS(7631), + [anon_sym_LT_LT] = ACTIONS(7631), + [anon_sym_GT_GT] = ACTIONS(7631), + [anon_sym___extension__] = ACTIONS(7633), + [anon_sym___attribute__] = ACTIONS(7633), + [anon_sym___attribute] = ACTIONS(7631), + [anon_sym_LBRACE] = ACTIONS(7633), + [anon_sym_LBRACK] = ACTIONS(7633), + [anon_sym_RBRACK] = ACTIONS(7633), + [anon_sym_EQ] = ACTIONS(7631), + [anon_sym_const] = ACTIONS(7631), + [anon_sym_constexpr] = ACTIONS(7633), + [anon_sym_volatile] = ACTIONS(7633), + [anon_sym_restrict] = ACTIONS(7633), + [anon_sym___restrict__] = ACTIONS(7633), + [anon_sym__Atomic] = ACTIONS(7633), + [anon_sym__Noreturn] = ACTIONS(7633), + [anon_sym_noreturn] = ACTIONS(7633), + [anon_sym__Nonnull] = ACTIONS(7633), + [anon_sym_mutable] = ACTIONS(7633), + [anon_sym_constinit] = ACTIONS(7633), + [anon_sym_consteval] = ACTIONS(7633), + [anon_sym_alignas] = ACTIONS(7633), + [anon_sym__Alignas] = ACTIONS(7633), + [anon_sym_QMARK] = ACTIONS(7633), + [anon_sym_STAR_EQ] = ACTIONS(7633), + [anon_sym_SLASH_EQ] = ACTIONS(7633), + [anon_sym_PERCENT_EQ] = ACTIONS(7633), + [anon_sym_PLUS_EQ] = ACTIONS(7633), + [anon_sym_DASH_EQ] = ACTIONS(7633), + [anon_sym_LT_LT_EQ] = ACTIONS(7633), + [anon_sym_GT_GT_EQ] = ACTIONS(7633), + [anon_sym_AMP_EQ] = ACTIONS(7633), + [anon_sym_CARET_EQ] = ACTIONS(7633), + [anon_sym_PIPE_EQ] = ACTIONS(7633), + [anon_sym_and_eq] = ACTIONS(7633), + [anon_sym_or_eq] = ACTIONS(7633), + [anon_sym_xor_eq] = ACTIONS(7633), + [anon_sym_LT_EQ_GT] = ACTIONS(7633), + [anon_sym_or] = ACTIONS(7631), + [anon_sym_and] = ACTIONS(7631), + [anon_sym_bitor] = ACTIONS(7633), + [anon_sym_xor] = ACTIONS(7631), + [anon_sym_bitand] = ACTIONS(7633), + [anon_sym_not_eq] = ACTIONS(7633), + [anon_sym_DASH_DASH] = ACTIONS(7633), + [anon_sym_PLUS_PLUS] = ACTIONS(7633), + [anon_sym_DOT] = ACTIONS(7631), + [anon_sym_DOT_STAR] = ACTIONS(7633), + [anon_sym_DASH_GT] = ACTIONS(7633), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7633), + [anon_sym_override] = ACTIONS(7633), + [anon_sym_requires] = ACTIONS(7633), + }, + [STATE(2916)] = { + [sym_attribute_specifier] = STATE(3571), + [sym_enumerator_list] = STATE(3026), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7383), + [anon_sym_COMMA] = ACTIONS(7383), + [anon_sym_RPAREN] = ACTIONS(7383), + [anon_sym_LPAREN2] = ACTIONS(7383), + [anon_sym_DASH] = ACTIONS(7381), + [anon_sym_PLUS] = ACTIONS(7381), + [anon_sym_STAR] = ACTIONS(7381), + [anon_sym_SLASH] = ACTIONS(7381), + [anon_sym_PERCENT] = ACTIONS(7381), + [anon_sym_PIPE_PIPE] = ACTIONS(7383), + [anon_sym_AMP_AMP] = ACTIONS(7383), + [anon_sym_PIPE] = ACTIONS(7381), + [anon_sym_CARET] = ACTIONS(7381), + [anon_sym_AMP] = ACTIONS(7381), + [anon_sym_EQ_EQ] = ACTIONS(7383), + [anon_sym_BANG_EQ] = ACTIONS(7383), + [anon_sym_GT] = ACTIONS(7381), + [anon_sym_GT_EQ] = ACTIONS(7383), + [anon_sym_LT_EQ] = ACTIONS(7381), + [anon_sym_LT] = ACTIONS(7381), + [anon_sym_LT_LT] = ACTIONS(7381), + [anon_sym_GT_GT] = ACTIONS(7381), [anon_sym___extension__] = ACTIONS(7383), - [anon_sym___attribute__] = ACTIONS(7383), - [anon_sym___attribute] = ACTIONS(7383), - [anon_sym_LBRACE] = ACTIONS(7385), - [anon_sym_signed] = ACTIONS(8735), - [anon_sym_unsigned] = ACTIONS(8735), - [anon_sym_long] = ACTIONS(8735), - [anon_sym_short] = ACTIONS(8735), - [anon_sym_LBRACK] = ACTIONS(7385), - [anon_sym_RBRACK] = ACTIONS(7385), - [anon_sym_const] = ACTIONS(7383), + [anon_sym___attribute__] = ACTIONS(8499), + [anon_sym___attribute] = ACTIONS(8501), + [anon_sym_LBRACE] = ACTIONS(8624), + [anon_sym_LBRACK] = ACTIONS(7383), + [anon_sym_EQ] = ACTIONS(7381), + [anon_sym_const] = ACTIONS(7381), [anon_sym_constexpr] = ACTIONS(7383), [anon_sym_volatile] = ACTIONS(7383), [anon_sym_restrict] = ACTIONS(7383), @@ -406034,3611 +387593,1221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(7383), [anon_sym_alignas] = ACTIONS(7383), [anon_sym__Alignas] = ACTIONS(7383), - [anon_sym_QMARK] = ACTIONS(7385), - [anon_sym_LT_EQ_GT] = ACTIONS(7385), + [anon_sym_QMARK] = ACTIONS(7383), + [anon_sym_STAR_EQ] = ACTIONS(7383), + [anon_sym_SLASH_EQ] = ACTIONS(7383), + [anon_sym_PERCENT_EQ] = ACTIONS(7383), + [anon_sym_PLUS_EQ] = ACTIONS(7383), + [anon_sym_DASH_EQ] = ACTIONS(7383), + [anon_sym_LT_LT_EQ] = ACTIONS(7383), + [anon_sym_GT_GT_EQ] = ACTIONS(7383), + [anon_sym_AMP_EQ] = ACTIONS(7383), + [anon_sym_CARET_EQ] = ACTIONS(7383), + [anon_sym_PIPE_EQ] = ACTIONS(7383), + [anon_sym_LT_EQ_GT] = ACTIONS(7383), [anon_sym_or] = ACTIONS(7383), [anon_sym_and] = ACTIONS(7383), [anon_sym_bitor] = ACTIONS(7383), [anon_sym_xor] = ACTIONS(7383), [anon_sym_bitand] = ACTIONS(7383), [anon_sym_not_eq] = ACTIONS(7383), - [anon_sym_DASH_DASH] = ACTIONS(7385), - [anon_sym_PLUS_PLUS] = ACTIONS(7385), - [anon_sym_DOT] = ACTIONS(7383), - [anon_sym_DOT_STAR] = ACTIONS(7385), - [anon_sym_DASH_GT] = ACTIONS(7385), + [anon_sym_DASH_DASH] = ACTIONS(7383), + [anon_sym_PLUS_PLUS] = ACTIONS(7383), + [anon_sym_DOT] = ACTIONS(7381), + [anon_sym_DOT_STAR] = ACTIONS(7383), + [anon_sym_DASH_GT] = ACTIONS(7381), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7383), [anon_sym_override] = ACTIONS(7383), [anon_sym_requires] = ACTIONS(7383), + [anon_sym_DASH_GT_STAR] = ACTIONS(7383), }, - [STATE(3362)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3239), - [sym_identifier] = ACTIONS(7395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7397), - [anon_sym_COMMA] = ACTIONS(7397), - [aux_sym_preproc_if_token2] = ACTIONS(7397), - [aux_sym_preproc_else_token1] = ACTIONS(7397), - [aux_sym_preproc_elif_token1] = ACTIONS(7395), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7397), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7397), - [anon_sym_LPAREN2] = ACTIONS(7397), - [anon_sym_DASH] = ACTIONS(7395), - [anon_sym_PLUS] = ACTIONS(7395), - [anon_sym_STAR] = ACTIONS(7397), - [anon_sym_SLASH] = ACTIONS(7395), - [anon_sym_PERCENT] = ACTIONS(7397), - [anon_sym_PIPE_PIPE] = ACTIONS(7397), - [anon_sym_AMP_AMP] = ACTIONS(7397), - [anon_sym_PIPE] = ACTIONS(7395), - [anon_sym_CARET] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7395), - [anon_sym_EQ_EQ] = ACTIONS(7397), - [anon_sym_BANG_EQ] = ACTIONS(7397), - [anon_sym_GT] = ACTIONS(7395), - [anon_sym_GT_EQ] = ACTIONS(7397), - [anon_sym_LT_EQ] = ACTIONS(7395), - [anon_sym_LT] = ACTIONS(7395), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_GT_GT] = ACTIONS(7397), - [anon_sym___extension__] = ACTIONS(7395), - [anon_sym___attribute__] = ACTIONS(7395), - [anon_sym___attribute] = ACTIONS(7395), - [anon_sym_LBRACE] = ACTIONS(7397), - [anon_sym_signed] = ACTIONS(8735), - [anon_sym_unsigned] = ACTIONS(8735), - [anon_sym_long] = ACTIONS(8735), - [anon_sym_short] = ACTIONS(8735), - [anon_sym_LBRACK] = ACTIONS(7397), - [anon_sym_RBRACK] = ACTIONS(7397), - [anon_sym_const] = ACTIONS(7395), - [anon_sym_constexpr] = ACTIONS(7395), - [anon_sym_volatile] = ACTIONS(7395), - [anon_sym_restrict] = ACTIONS(7395), - [anon_sym___restrict__] = ACTIONS(7395), - [anon_sym__Atomic] = ACTIONS(7395), - [anon_sym__Noreturn] = ACTIONS(7395), - [anon_sym_noreturn] = ACTIONS(7395), - [anon_sym__Nonnull] = ACTIONS(7395), - [anon_sym_mutable] = ACTIONS(7395), - [anon_sym_constinit] = ACTIONS(7395), - [anon_sym_consteval] = ACTIONS(7395), - [anon_sym_alignas] = ACTIONS(7395), - [anon_sym__Alignas] = ACTIONS(7395), - [anon_sym_QMARK] = ACTIONS(7397), - [anon_sym_LT_EQ_GT] = ACTIONS(7397), - [anon_sym_or] = ACTIONS(7395), - [anon_sym_and] = ACTIONS(7395), - [anon_sym_bitor] = ACTIONS(7395), - [anon_sym_xor] = ACTIONS(7395), - [anon_sym_bitand] = ACTIONS(7395), - [anon_sym_not_eq] = ACTIONS(7395), - [anon_sym_DASH_DASH] = ACTIONS(7397), - [anon_sym_PLUS_PLUS] = ACTIONS(7397), - [anon_sym_DOT] = ACTIONS(7395), - [anon_sym_DOT_STAR] = ACTIONS(7397), - [anon_sym_DASH_GT] = ACTIONS(7397), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7395), - [anon_sym_override] = ACTIONS(7395), - [anon_sym_requires] = ACTIONS(7395), - }, - [STATE(3363)] = { - [sym_identifier] = ACTIONS(8317), - [aux_sym_preproc_def_token1] = ACTIONS(8317), - [aux_sym_preproc_if_token1] = ACTIONS(8317), - [aux_sym_preproc_if_token2] = ACTIONS(8317), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8317), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8317), - [sym_preproc_directive] = ACTIONS(8317), - [anon_sym_LPAREN2] = ACTIONS(8319), - [anon_sym_TILDE] = ACTIONS(8319), - [anon_sym_STAR] = ACTIONS(8319), - [anon_sym_AMP_AMP] = ACTIONS(8319), - [anon_sym_AMP] = ACTIONS(8317), - [anon_sym_SEMI] = ACTIONS(8319), - [anon_sym___extension__] = ACTIONS(8317), - [anon_sym_typedef] = ACTIONS(8317), - [anon_sym_virtual] = ACTIONS(8317), - [anon_sym_extern] = ACTIONS(8317), - [anon_sym___attribute__] = ACTIONS(8317), - [anon_sym___attribute] = ACTIONS(8317), - [anon_sym_using] = ACTIONS(8317), - [anon_sym_COLON_COLON] = ACTIONS(8319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8319), - [anon_sym___declspec] = ACTIONS(8317), - [anon_sym___based] = ACTIONS(8317), - [anon_sym_signed] = ACTIONS(8317), - [anon_sym_unsigned] = ACTIONS(8317), - [anon_sym_long] = ACTIONS(8317), - [anon_sym_short] = ACTIONS(8317), - [anon_sym_LBRACK] = ACTIONS(8317), - [anon_sym_static] = ACTIONS(8317), - [anon_sym_register] = ACTIONS(8317), - [anon_sym_inline] = ACTIONS(8317), - [anon_sym___inline] = ACTIONS(8317), - [anon_sym___inline__] = ACTIONS(8317), - [anon_sym___forceinline] = ACTIONS(8317), - [anon_sym_thread_local] = ACTIONS(8317), - [anon_sym___thread] = ACTIONS(8317), - [anon_sym_const] = ACTIONS(8317), - [anon_sym_constexpr] = ACTIONS(8317), - [anon_sym_volatile] = ACTIONS(8317), - [anon_sym_restrict] = ACTIONS(8317), - [anon_sym___restrict__] = ACTIONS(8317), - [anon_sym__Atomic] = ACTIONS(8317), - [anon_sym__Noreturn] = ACTIONS(8317), - [anon_sym_noreturn] = ACTIONS(8317), - [anon_sym__Nonnull] = ACTIONS(8317), - [anon_sym_mutable] = ACTIONS(8317), - [anon_sym_constinit] = ACTIONS(8317), - [anon_sym_consteval] = ACTIONS(8317), - [anon_sym_alignas] = ACTIONS(8317), - [anon_sym__Alignas] = ACTIONS(8317), - [sym_primitive_type] = ACTIONS(8317), - [anon_sym_enum] = ACTIONS(8317), - [anon_sym_class] = ACTIONS(8317), - [anon_sym_struct] = ACTIONS(8317), - [anon_sym_union] = ACTIONS(8317), - [anon_sym_typename] = ACTIONS(8317), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8317), - [anon_sym_decltype] = ACTIONS(8317), - [anon_sym_explicit] = ACTIONS(8317), - [anon_sym_private] = ACTIONS(8317), - [anon_sym_template] = ACTIONS(8317), - [anon_sym_operator] = ACTIONS(8317), - [anon_sym_friend] = ACTIONS(8317), - [anon_sym_public] = ACTIONS(8317), - [anon_sym_protected] = ACTIONS(8317), - [anon_sym_static_assert] = ACTIONS(8317), - [anon_sym_LBRACK_COLON] = ACTIONS(8319), - }, - [STATE(3364)] = { - [sym_identifier] = ACTIONS(8362), - [aux_sym_preproc_def_token1] = ACTIONS(8362), - [aux_sym_preproc_if_token1] = ACTIONS(8362), - [aux_sym_preproc_if_token2] = ACTIONS(8362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8362), - [sym_preproc_directive] = ACTIONS(8362), - [anon_sym_LPAREN2] = ACTIONS(8364), - [anon_sym_TILDE] = ACTIONS(8364), - [anon_sym_STAR] = ACTIONS(8364), - [anon_sym_AMP_AMP] = ACTIONS(8364), - [anon_sym_AMP] = ACTIONS(8362), - [anon_sym_SEMI] = ACTIONS(8364), - [anon_sym___extension__] = ACTIONS(8362), - [anon_sym_typedef] = ACTIONS(8362), - [anon_sym_virtual] = ACTIONS(8362), - [anon_sym_extern] = ACTIONS(8362), - [anon_sym___attribute__] = ACTIONS(8362), - [anon_sym___attribute] = ACTIONS(8362), - [anon_sym_using] = ACTIONS(8362), - [anon_sym_COLON_COLON] = ACTIONS(8364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8364), - [anon_sym___declspec] = ACTIONS(8362), - [anon_sym___based] = ACTIONS(8362), - [anon_sym_signed] = ACTIONS(8362), - [anon_sym_unsigned] = ACTIONS(8362), - [anon_sym_long] = ACTIONS(8362), - [anon_sym_short] = ACTIONS(8362), - [anon_sym_LBRACK] = ACTIONS(8362), - [anon_sym_static] = ACTIONS(8362), - [anon_sym_register] = ACTIONS(8362), - [anon_sym_inline] = ACTIONS(8362), - [anon_sym___inline] = ACTIONS(8362), - [anon_sym___inline__] = ACTIONS(8362), - [anon_sym___forceinline] = ACTIONS(8362), - [anon_sym_thread_local] = ACTIONS(8362), - [anon_sym___thread] = ACTIONS(8362), - [anon_sym_const] = ACTIONS(8362), - [anon_sym_constexpr] = ACTIONS(8362), - [anon_sym_volatile] = ACTIONS(8362), - [anon_sym_restrict] = ACTIONS(8362), - [anon_sym___restrict__] = ACTIONS(8362), - [anon_sym__Atomic] = ACTIONS(8362), - [anon_sym__Noreturn] = ACTIONS(8362), - [anon_sym_noreturn] = ACTIONS(8362), - [anon_sym__Nonnull] = ACTIONS(8362), - [anon_sym_mutable] = ACTIONS(8362), - [anon_sym_constinit] = ACTIONS(8362), - [anon_sym_consteval] = ACTIONS(8362), - [anon_sym_alignas] = ACTIONS(8362), - [anon_sym__Alignas] = ACTIONS(8362), - [sym_primitive_type] = ACTIONS(8362), - [anon_sym_enum] = ACTIONS(8362), - [anon_sym_class] = ACTIONS(8362), - [anon_sym_struct] = ACTIONS(8362), - [anon_sym_union] = ACTIONS(8362), - [anon_sym_typename] = ACTIONS(8362), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8362), - [anon_sym_decltype] = ACTIONS(8362), - [anon_sym_explicit] = ACTIONS(8362), - [anon_sym_private] = ACTIONS(8362), - [anon_sym_template] = ACTIONS(8362), - [anon_sym_operator] = ACTIONS(8362), - [anon_sym_friend] = ACTIONS(8362), - [anon_sym_public] = ACTIONS(8362), - [anon_sym_protected] = ACTIONS(8362), - [anon_sym_static_assert] = ACTIONS(8362), - [anon_sym_LBRACK_COLON] = ACTIONS(8364), - }, - [STATE(3365)] = { - [sym_identifier] = ACTIONS(3990), - [aux_sym_preproc_def_token1] = ACTIONS(3990), - [aux_sym_preproc_if_token1] = ACTIONS(3990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3990), - [sym_preproc_directive] = ACTIONS(3990), - [anon_sym_LPAREN2] = ACTIONS(3992), - [anon_sym_TILDE] = ACTIONS(3992), - [anon_sym_STAR] = ACTIONS(3992), - [anon_sym_AMP_AMP] = ACTIONS(3992), - [anon_sym_AMP] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(3992), - [anon_sym___extension__] = ACTIONS(3990), - [anon_sym_typedef] = ACTIONS(3990), - [anon_sym_virtual] = ACTIONS(3990), - [anon_sym_extern] = ACTIONS(3990), - [anon_sym___attribute__] = ACTIONS(3990), - [anon_sym___attribute] = ACTIONS(3990), - [anon_sym_using] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3992), - [anon_sym___declspec] = ACTIONS(3990), - [anon_sym___based] = ACTIONS(3990), - [anon_sym_RBRACE] = ACTIONS(3992), - [anon_sym_signed] = ACTIONS(3990), - [anon_sym_unsigned] = ACTIONS(3990), - [anon_sym_long] = ACTIONS(3990), - [anon_sym_short] = ACTIONS(3990), - [anon_sym_LBRACK] = ACTIONS(3990), - [anon_sym_static] = ACTIONS(3990), - [anon_sym_register] = ACTIONS(3990), - [anon_sym_inline] = ACTIONS(3990), - [anon_sym___inline] = ACTIONS(3990), - [anon_sym___inline__] = ACTIONS(3990), - [anon_sym___forceinline] = ACTIONS(3990), - [anon_sym_thread_local] = ACTIONS(3990), - [anon_sym___thread] = ACTIONS(3990), - [anon_sym_const] = ACTIONS(3990), - [anon_sym_constexpr] = ACTIONS(3990), - [anon_sym_volatile] = ACTIONS(3990), - [anon_sym_restrict] = ACTIONS(3990), - [anon_sym___restrict__] = ACTIONS(3990), - [anon_sym__Atomic] = ACTIONS(3990), - [anon_sym__Noreturn] = ACTIONS(3990), - [anon_sym_noreturn] = ACTIONS(3990), - [anon_sym__Nonnull] = ACTIONS(3990), - [anon_sym_mutable] = ACTIONS(3990), - [anon_sym_constinit] = ACTIONS(3990), - [anon_sym_consteval] = ACTIONS(3990), - [anon_sym_alignas] = ACTIONS(3990), - [anon_sym__Alignas] = ACTIONS(3990), - [sym_primitive_type] = ACTIONS(3990), - [anon_sym_enum] = ACTIONS(3990), - [anon_sym_class] = ACTIONS(3990), - [anon_sym_struct] = ACTIONS(3990), - [anon_sym_union] = ACTIONS(3990), - [anon_sym_typename] = ACTIONS(3990), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3990), - [anon_sym_decltype] = ACTIONS(3990), - [anon_sym_explicit] = ACTIONS(3990), - [anon_sym_private] = ACTIONS(3990), - [anon_sym_template] = ACTIONS(3990), - [anon_sym_operator] = ACTIONS(3990), - [anon_sym_friend] = ACTIONS(3990), - [anon_sym_public] = ACTIONS(3990), - [anon_sym_protected] = ACTIONS(3990), - [anon_sym_static_assert] = ACTIONS(3990), - [anon_sym_LBRACK_COLON] = ACTIONS(3992), - }, - [STATE(3366)] = { - [sym_identifier] = ACTIONS(4086), - [aux_sym_preproc_def_token1] = ACTIONS(4086), - [aux_sym_preproc_if_token1] = ACTIONS(4086), - [aux_sym_preproc_if_token2] = ACTIONS(4086), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4086), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4086), - [sym_preproc_directive] = ACTIONS(4086), - [anon_sym_LPAREN2] = ACTIONS(4088), - [anon_sym_TILDE] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [anon_sym_AMP_AMP] = ACTIONS(4088), - [anon_sym_AMP] = ACTIONS(4086), - [anon_sym_SEMI] = ACTIONS(4088), - [anon_sym___extension__] = ACTIONS(4086), - [anon_sym_typedef] = ACTIONS(4086), - [anon_sym_virtual] = ACTIONS(4086), - [anon_sym_extern] = ACTIONS(4086), - [anon_sym___attribute__] = ACTIONS(4086), - [anon_sym___attribute] = ACTIONS(4086), - [anon_sym_using] = ACTIONS(4086), - [anon_sym_COLON_COLON] = ACTIONS(4088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4088), - [anon_sym___declspec] = ACTIONS(4086), - [anon_sym___based] = ACTIONS(4086), - [anon_sym_signed] = ACTIONS(4086), - [anon_sym_unsigned] = ACTIONS(4086), - [anon_sym_long] = ACTIONS(4086), - [anon_sym_short] = ACTIONS(4086), - [anon_sym_LBRACK] = ACTIONS(4086), - [anon_sym_static] = ACTIONS(4086), - [anon_sym_register] = ACTIONS(4086), - [anon_sym_inline] = ACTIONS(4086), - [anon_sym___inline] = ACTIONS(4086), - [anon_sym___inline__] = ACTIONS(4086), - [anon_sym___forceinline] = ACTIONS(4086), - [anon_sym_thread_local] = ACTIONS(4086), - [anon_sym___thread] = ACTIONS(4086), - [anon_sym_const] = ACTIONS(4086), - [anon_sym_constexpr] = ACTIONS(4086), - [anon_sym_volatile] = ACTIONS(4086), - [anon_sym_restrict] = ACTIONS(4086), - [anon_sym___restrict__] = ACTIONS(4086), - [anon_sym__Atomic] = ACTIONS(4086), - [anon_sym__Noreturn] = ACTIONS(4086), - [anon_sym_noreturn] = ACTIONS(4086), - [anon_sym__Nonnull] = ACTIONS(4086), - [anon_sym_mutable] = ACTIONS(4086), - [anon_sym_constinit] = ACTIONS(4086), - [anon_sym_consteval] = ACTIONS(4086), - [anon_sym_alignas] = ACTIONS(4086), - [anon_sym__Alignas] = ACTIONS(4086), - [sym_primitive_type] = ACTIONS(4086), - [anon_sym_enum] = ACTIONS(4086), - [anon_sym_class] = ACTIONS(4086), - [anon_sym_struct] = ACTIONS(4086), - [anon_sym_union] = ACTIONS(4086), - [anon_sym_typename] = ACTIONS(4086), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4086), - [anon_sym_decltype] = ACTIONS(4086), - [anon_sym_explicit] = ACTIONS(4086), - [anon_sym_private] = ACTIONS(4086), - [anon_sym_template] = ACTIONS(4086), - [anon_sym_operator] = ACTIONS(4086), - [anon_sym_friend] = ACTIONS(4086), - [anon_sym_public] = ACTIONS(4086), - [anon_sym_protected] = ACTIONS(4086), - [anon_sym_static_assert] = ACTIONS(4086), - [anon_sym_LBRACK_COLON] = ACTIONS(4088), - }, - [STATE(3367)] = { - [sym_identifier] = ACTIONS(8396), - [aux_sym_preproc_def_token1] = ACTIONS(8396), - [aux_sym_preproc_if_token1] = ACTIONS(8396), - [aux_sym_preproc_if_token2] = ACTIONS(8396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8396), - [sym_preproc_directive] = ACTIONS(8396), - [anon_sym_LPAREN2] = ACTIONS(8398), - [anon_sym_TILDE] = ACTIONS(8398), - [anon_sym_STAR] = ACTIONS(8398), - [anon_sym_AMP_AMP] = ACTIONS(8398), - [anon_sym_AMP] = ACTIONS(8396), - [anon_sym_SEMI] = ACTIONS(8398), - [anon_sym___extension__] = ACTIONS(8396), - [anon_sym_typedef] = ACTIONS(8396), - [anon_sym_virtual] = ACTIONS(8396), - [anon_sym_extern] = ACTIONS(8396), - [anon_sym___attribute__] = ACTIONS(8396), - [anon_sym___attribute] = ACTIONS(8396), - [anon_sym_using] = ACTIONS(8396), - [anon_sym_COLON_COLON] = ACTIONS(8398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8398), - [anon_sym___declspec] = ACTIONS(8396), - [anon_sym___based] = ACTIONS(8396), - [anon_sym_signed] = ACTIONS(8396), - [anon_sym_unsigned] = ACTIONS(8396), - [anon_sym_long] = ACTIONS(8396), - [anon_sym_short] = ACTIONS(8396), - [anon_sym_LBRACK] = ACTIONS(8396), - [anon_sym_static] = ACTIONS(8396), - [anon_sym_register] = ACTIONS(8396), - [anon_sym_inline] = ACTIONS(8396), - [anon_sym___inline] = ACTIONS(8396), - [anon_sym___inline__] = ACTIONS(8396), - [anon_sym___forceinline] = ACTIONS(8396), - [anon_sym_thread_local] = ACTIONS(8396), - [anon_sym___thread] = ACTIONS(8396), - [anon_sym_const] = ACTIONS(8396), - [anon_sym_constexpr] = ACTIONS(8396), - [anon_sym_volatile] = ACTIONS(8396), - [anon_sym_restrict] = ACTIONS(8396), - [anon_sym___restrict__] = ACTIONS(8396), - [anon_sym__Atomic] = ACTIONS(8396), - [anon_sym__Noreturn] = ACTIONS(8396), - [anon_sym_noreturn] = ACTIONS(8396), - [anon_sym__Nonnull] = ACTIONS(8396), - [anon_sym_mutable] = ACTIONS(8396), - [anon_sym_constinit] = ACTIONS(8396), - [anon_sym_consteval] = ACTIONS(8396), - [anon_sym_alignas] = ACTIONS(8396), - [anon_sym__Alignas] = ACTIONS(8396), - [sym_primitive_type] = ACTIONS(8396), - [anon_sym_enum] = ACTIONS(8396), - [anon_sym_class] = ACTIONS(8396), - [anon_sym_struct] = ACTIONS(8396), - [anon_sym_union] = ACTIONS(8396), - [anon_sym_typename] = ACTIONS(8396), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8396), - [anon_sym_decltype] = ACTIONS(8396), - [anon_sym_explicit] = ACTIONS(8396), - [anon_sym_private] = ACTIONS(8396), - [anon_sym_template] = ACTIONS(8396), - [anon_sym_operator] = ACTIONS(8396), - [anon_sym_friend] = ACTIONS(8396), - [anon_sym_public] = ACTIONS(8396), - [anon_sym_protected] = ACTIONS(8396), - [anon_sym_static_assert] = ACTIONS(8396), - [anon_sym_LBRACK_COLON] = ACTIONS(8398), - }, - [STATE(3368)] = { - [sym_identifier] = ACTIONS(3680), - [aux_sym_preproc_def_token1] = ACTIONS(3680), - [aux_sym_preproc_if_token1] = ACTIONS(3680), - [aux_sym_preproc_if_token2] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3680), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3680), - [sym_preproc_directive] = ACTIONS(3680), - [anon_sym_LPAREN2] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(3682), - [anon_sym_STAR] = ACTIONS(3682), - [anon_sym_AMP_AMP] = ACTIONS(3682), - [anon_sym_AMP] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym___extension__] = ACTIONS(3680), - [anon_sym_typedef] = ACTIONS(3680), - [anon_sym_virtual] = ACTIONS(3680), - [anon_sym_extern] = ACTIONS(3680), - [anon_sym___attribute__] = ACTIONS(3680), - [anon_sym___attribute] = ACTIONS(3680), - [anon_sym_using] = ACTIONS(3680), - [anon_sym_COLON_COLON] = ACTIONS(3682), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3682), - [anon_sym___declspec] = ACTIONS(3680), - [anon_sym___based] = ACTIONS(3680), - [anon_sym_signed] = ACTIONS(3680), - [anon_sym_unsigned] = ACTIONS(3680), - [anon_sym_long] = ACTIONS(3680), - [anon_sym_short] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3680), - [anon_sym_static] = ACTIONS(3680), - [anon_sym_register] = ACTIONS(3680), - [anon_sym_inline] = ACTIONS(3680), - [anon_sym___inline] = ACTIONS(3680), - [anon_sym___inline__] = ACTIONS(3680), - [anon_sym___forceinline] = ACTIONS(3680), - [anon_sym_thread_local] = ACTIONS(3680), - [anon_sym___thread] = ACTIONS(3680), - [anon_sym_const] = ACTIONS(3680), - [anon_sym_constexpr] = ACTIONS(3680), - [anon_sym_volatile] = ACTIONS(3680), - [anon_sym_restrict] = ACTIONS(3680), - [anon_sym___restrict__] = ACTIONS(3680), - [anon_sym__Atomic] = ACTIONS(3680), - [anon_sym__Noreturn] = ACTIONS(3680), - [anon_sym_noreturn] = ACTIONS(3680), - [anon_sym__Nonnull] = ACTIONS(3680), - [anon_sym_mutable] = ACTIONS(3680), - [anon_sym_constinit] = ACTIONS(3680), - [anon_sym_consteval] = ACTIONS(3680), - [anon_sym_alignas] = ACTIONS(3680), - [anon_sym__Alignas] = ACTIONS(3680), - [sym_primitive_type] = ACTIONS(3680), - [anon_sym_enum] = ACTIONS(3680), - [anon_sym_class] = ACTIONS(3680), - [anon_sym_struct] = ACTIONS(3680), - [anon_sym_union] = ACTIONS(3680), - [anon_sym_typename] = ACTIONS(3680), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3680), - [anon_sym_decltype] = ACTIONS(3680), - [anon_sym_explicit] = ACTIONS(3680), - [anon_sym_private] = ACTIONS(3680), - [anon_sym_template] = ACTIONS(3680), - [anon_sym_operator] = ACTIONS(3680), - [anon_sym_friend] = ACTIONS(3680), - [anon_sym_public] = ACTIONS(3680), - [anon_sym_protected] = ACTIONS(3680), - [anon_sym_static_assert] = ACTIONS(3680), - [anon_sym_LBRACK_COLON] = ACTIONS(3682), - }, - [STATE(3369)] = { - [sym_identifier] = ACTIONS(4042), - [aux_sym_preproc_def_token1] = ACTIONS(4042), - [aux_sym_preproc_if_token1] = ACTIONS(4042), - [aux_sym_preproc_if_token2] = ACTIONS(4042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4042), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4042), - [sym_preproc_directive] = ACTIONS(4042), - [anon_sym_LPAREN2] = ACTIONS(4044), - [anon_sym_TILDE] = ACTIONS(4044), - [anon_sym_STAR] = ACTIONS(4044), - [anon_sym_AMP_AMP] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_SEMI] = ACTIONS(4044), - [anon_sym___extension__] = ACTIONS(4042), - [anon_sym_typedef] = ACTIONS(4042), - [anon_sym_virtual] = ACTIONS(4042), - [anon_sym_extern] = ACTIONS(4042), - [anon_sym___attribute__] = ACTIONS(4042), - [anon_sym___attribute] = ACTIONS(4042), - [anon_sym_using] = ACTIONS(4042), - [anon_sym_COLON_COLON] = ACTIONS(4044), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4044), - [anon_sym___declspec] = ACTIONS(4042), - [anon_sym___based] = ACTIONS(4042), - [anon_sym_signed] = ACTIONS(4042), - [anon_sym_unsigned] = ACTIONS(4042), - [anon_sym_long] = ACTIONS(4042), - [anon_sym_short] = ACTIONS(4042), - [anon_sym_LBRACK] = ACTIONS(4042), - [anon_sym_static] = ACTIONS(4042), - [anon_sym_register] = ACTIONS(4042), - [anon_sym_inline] = ACTIONS(4042), - [anon_sym___inline] = ACTIONS(4042), - [anon_sym___inline__] = ACTIONS(4042), - [anon_sym___forceinline] = ACTIONS(4042), - [anon_sym_thread_local] = ACTIONS(4042), - [anon_sym___thread] = ACTIONS(4042), - [anon_sym_const] = ACTIONS(4042), - [anon_sym_constexpr] = ACTIONS(4042), - [anon_sym_volatile] = ACTIONS(4042), - [anon_sym_restrict] = ACTIONS(4042), - [anon_sym___restrict__] = ACTIONS(4042), - [anon_sym__Atomic] = ACTIONS(4042), - [anon_sym__Noreturn] = ACTIONS(4042), - [anon_sym_noreturn] = ACTIONS(4042), - [anon_sym__Nonnull] = ACTIONS(4042), - [anon_sym_mutable] = ACTIONS(4042), - [anon_sym_constinit] = ACTIONS(4042), - [anon_sym_consteval] = ACTIONS(4042), - [anon_sym_alignas] = ACTIONS(4042), - [anon_sym__Alignas] = ACTIONS(4042), - [sym_primitive_type] = ACTIONS(4042), - [anon_sym_enum] = ACTIONS(4042), - [anon_sym_class] = ACTIONS(4042), - [anon_sym_struct] = ACTIONS(4042), - [anon_sym_union] = ACTIONS(4042), - [anon_sym_typename] = ACTIONS(4042), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4042), - [anon_sym_decltype] = ACTIONS(4042), - [anon_sym_explicit] = ACTIONS(4042), - [anon_sym_private] = ACTIONS(4042), - [anon_sym_template] = ACTIONS(4042), - [anon_sym_operator] = ACTIONS(4042), - [anon_sym_friend] = ACTIONS(4042), - [anon_sym_public] = ACTIONS(4042), - [anon_sym_protected] = ACTIONS(4042), - [anon_sym_static_assert] = ACTIONS(4042), - [anon_sym_LBRACK_COLON] = ACTIONS(4044), - }, - [STATE(3370)] = { - [sym_identifier] = ACTIONS(3890), - [aux_sym_preproc_def_token1] = ACTIONS(3890), - [aux_sym_preproc_if_token1] = ACTIONS(3890), - [aux_sym_preproc_if_token2] = ACTIONS(3890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3890), - [sym_preproc_directive] = ACTIONS(3890), - [anon_sym_LPAREN2] = ACTIONS(3892), - [anon_sym_TILDE] = ACTIONS(3892), - [anon_sym_STAR] = ACTIONS(3892), - [anon_sym_AMP_AMP] = ACTIONS(3892), - [anon_sym_AMP] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3892), - [anon_sym___extension__] = ACTIONS(3890), - [anon_sym_typedef] = ACTIONS(3890), - [anon_sym_virtual] = ACTIONS(3890), - [anon_sym_extern] = ACTIONS(3890), - [anon_sym___attribute__] = ACTIONS(3890), - [anon_sym___attribute] = ACTIONS(3890), - [anon_sym_using] = ACTIONS(3890), - [anon_sym_COLON_COLON] = ACTIONS(3892), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3892), - [anon_sym___declspec] = ACTIONS(3890), - [anon_sym___based] = ACTIONS(3890), - [anon_sym_signed] = ACTIONS(3890), - [anon_sym_unsigned] = ACTIONS(3890), - [anon_sym_long] = ACTIONS(3890), - [anon_sym_short] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(3890), - [anon_sym_static] = ACTIONS(3890), - [anon_sym_register] = ACTIONS(3890), - [anon_sym_inline] = ACTIONS(3890), - [anon_sym___inline] = ACTIONS(3890), - [anon_sym___inline__] = ACTIONS(3890), - [anon_sym___forceinline] = ACTIONS(3890), - [anon_sym_thread_local] = ACTIONS(3890), - [anon_sym___thread] = ACTIONS(3890), - [anon_sym_const] = ACTIONS(3890), - [anon_sym_constexpr] = ACTIONS(3890), - [anon_sym_volatile] = ACTIONS(3890), - [anon_sym_restrict] = ACTIONS(3890), - [anon_sym___restrict__] = ACTIONS(3890), - [anon_sym__Atomic] = ACTIONS(3890), - [anon_sym__Noreturn] = ACTIONS(3890), - [anon_sym_noreturn] = ACTIONS(3890), - [anon_sym__Nonnull] = ACTIONS(3890), - [anon_sym_mutable] = ACTIONS(3890), - [anon_sym_constinit] = ACTIONS(3890), - [anon_sym_consteval] = ACTIONS(3890), - [anon_sym_alignas] = ACTIONS(3890), - [anon_sym__Alignas] = ACTIONS(3890), - [sym_primitive_type] = ACTIONS(3890), - [anon_sym_enum] = ACTIONS(3890), - [anon_sym_class] = ACTIONS(3890), - [anon_sym_struct] = ACTIONS(3890), - [anon_sym_union] = ACTIONS(3890), - [anon_sym_typename] = ACTIONS(3890), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3890), - [anon_sym_decltype] = ACTIONS(3890), - [anon_sym_explicit] = ACTIONS(3890), - [anon_sym_private] = ACTIONS(3890), - [anon_sym_template] = ACTIONS(3890), - [anon_sym_operator] = ACTIONS(3890), - [anon_sym_friend] = ACTIONS(3890), - [anon_sym_public] = ACTIONS(3890), - [anon_sym_protected] = ACTIONS(3890), - [anon_sym_static_assert] = ACTIONS(3890), - [anon_sym_LBRACK_COLON] = ACTIONS(3892), - }, - [STATE(3371)] = { - [sym_identifier] = ACTIONS(4134), - [aux_sym_preproc_def_token1] = ACTIONS(4134), - [aux_sym_preproc_if_token1] = ACTIONS(4134), - [aux_sym_preproc_if_token2] = ACTIONS(4134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4134), - [sym_preproc_directive] = ACTIONS(4134), - [anon_sym_LPAREN2] = ACTIONS(4136), - [anon_sym_TILDE] = ACTIONS(4136), - [anon_sym_STAR] = ACTIONS(4136), - [anon_sym_AMP_AMP] = ACTIONS(4136), - [anon_sym_AMP] = ACTIONS(4134), - [anon_sym_SEMI] = ACTIONS(4136), - [anon_sym___extension__] = ACTIONS(4134), - [anon_sym_typedef] = ACTIONS(4134), - [anon_sym_virtual] = ACTIONS(4134), - [anon_sym_extern] = ACTIONS(4134), - [anon_sym___attribute__] = ACTIONS(4134), - [anon_sym___attribute] = ACTIONS(4134), - [anon_sym_using] = ACTIONS(4134), - [anon_sym_COLON_COLON] = ACTIONS(4136), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4136), - [anon_sym___declspec] = ACTIONS(4134), - [anon_sym___based] = ACTIONS(4134), - [anon_sym_signed] = ACTIONS(4134), - [anon_sym_unsigned] = ACTIONS(4134), - [anon_sym_long] = ACTIONS(4134), - [anon_sym_short] = ACTIONS(4134), - [anon_sym_LBRACK] = ACTIONS(4134), - [anon_sym_static] = ACTIONS(4134), - [anon_sym_register] = ACTIONS(4134), - [anon_sym_inline] = ACTIONS(4134), - [anon_sym___inline] = ACTIONS(4134), - [anon_sym___inline__] = ACTIONS(4134), - [anon_sym___forceinline] = ACTIONS(4134), - [anon_sym_thread_local] = ACTIONS(4134), - [anon_sym___thread] = ACTIONS(4134), - [anon_sym_const] = ACTIONS(4134), - [anon_sym_constexpr] = ACTIONS(4134), - [anon_sym_volatile] = ACTIONS(4134), - [anon_sym_restrict] = ACTIONS(4134), - [anon_sym___restrict__] = ACTIONS(4134), - [anon_sym__Atomic] = ACTIONS(4134), - [anon_sym__Noreturn] = ACTIONS(4134), - [anon_sym_noreturn] = ACTIONS(4134), - [anon_sym__Nonnull] = ACTIONS(4134), - [anon_sym_mutable] = ACTIONS(4134), - [anon_sym_constinit] = ACTIONS(4134), - [anon_sym_consteval] = ACTIONS(4134), - [anon_sym_alignas] = ACTIONS(4134), - [anon_sym__Alignas] = ACTIONS(4134), - [sym_primitive_type] = ACTIONS(4134), - [anon_sym_enum] = ACTIONS(4134), - [anon_sym_class] = ACTIONS(4134), - [anon_sym_struct] = ACTIONS(4134), - [anon_sym_union] = ACTIONS(4134), - [anon_sym_typename] = ACTIONS(4134), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4134), - [anon_sym_decltype] = ACTIONS(4134), - [anon_sym_explicit] = ACTIONS(4134), - [anon_sym_private] = ACTIONS(4134), - [anon_sym_template] = ACTIONS(4134), - [anon_sym_operator] = ACTIONS(4134), - [anon_sym_friend] = ACTIONS(4134), - [anon_sym_public] = ACTIONS(4134), - [anon_sym_protected] = ACTIONS(4134), - [anon_sym_static_assert] = ACTIONS(4134), - [anon_sym_LBRACK_COLON] = ACTIONS(4136), + [STATE(2917)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7633), + [anon_sym_COMMA] = ACTIONS(7633), + [anon_sym_LPAREN2] = ACTIONS(7633), + [anon_sym_DASH] = ACTIONS(7631), + [anon_sym_PLUS] = ACTIONS(7631), + [anon_sym_STAR] = ACTIONS(7631), + [anon_sym_SLASH] = ACTIONS(7631), + [anon_sym_PERCENT] = ACTIONS(7631), + [anon_sym_PIPE_PIPE] = ACTIONS(7633), + [anon_sym_AMP_AMP] = ACTIONS(7633), + [anon_sym_PIPE] = ACTIONS(7631), + [anon_sym_CARET] = ACTIONS(7631), + [anon_sym_AMP] = ACTIONS(7631), + [anon_sym_EQ_EQ] = ACTIONS(7633), + [anon_sym_BANG_EQ] = ACTIONS(7633), + [anon_sym_GT] = ACTIONS(7631), + [anon_sym_GT_EQ] = ACTIONS(7631), + [anon_sym_LT_EQ] = ACTIONS(7631), + [anon_sym_LT] = ACTIONS(7631), + [anon_sym_LT_LT] = ACTIONS(7631), + [anon_sym_GT_GT] = ACTIONS(7631), + [anon_sym___extension__] = ACTIONS(7633), + [anon_sym___attribute__] = ACTIONS(7633), + [anon_sym___attribute] = ACTIONS(7631), + [anon_sym_LBRACE] = ACTIONS(7633), + [anon_sym_LBRACK] = ACTIONS(7633), + [anon_sym_EQ] = ACTIONS(7631), + [anon_sym_const] = ACTIONS(7631), + [anon_sym_constexpr] = ACTIONS(7633), + [anon_sym_volatile] = ACTIONS(7633), + [anon_sym_restrict] = ACTIONS(7633), + [anon_sym___restrict__] = ACTIONS(7633), + [anon_sym__Atomic] = ACTIONS(7633), + [anon_sym__Noreturn] = ACTIONS(7633), + [anon_sym_noreturn] = ACTIONS(7633), + [anon_sym__Nonnull] = ACTIONS(7633), + [anon_sym_mutable] = ACTIONS(7633), + [anon_sym_constinit] = ACTIONS(7633), + [anon_sym_consteval] = ACTIONS(7633), + [anon_sym_alignas] = ACTIONS(7633), + [anon_sym__Alignas] = ACTIONS(7633), + [anon_sym_QMARK] = ACTIONS(7633), + [anon_sym_STAR_EQ] = ACTIONS(7633), + [anon_sym_SLASH_EQ] = ACTIONS(7633), + [anon_sym_PERCENT_EQ] = ACTIONS(7633), + [anon_sym_PLUS_EQ] = ACTIONS(7633), + [anon_sym_DASH_EQ] = ACTIONS(7633), + [anon_sym_LT_LT_EQ] = ACTIONS(7633), + [anon_sym_GT_GT_EQ] = ACTIONS(7631), + [anon_sym_AMP_EQ] = ACTIONS(7633), + [anon_sym_CARET_EQ] = ACTIONS(7633), + [anon_sym_PIPE_EQ] = ACTIONS(7633), + [anon_sym_and_eq] = ACTIONS(7633), + [anon_sym_or_eq] = ACTIONS(7633), + [anon_sym_xor_eq] = ACTIONS(7633), + [anon_sym_LT_EQ_GT] = ACTIONS(7633), + [anon_sym_or] = ACTIONS(7631), + [anon_sym_and] = ACTIONS(7631), + [anon_sym_bitor] = ACTIONS(7633), + [anon_sym_xor] = ACTIONS(7631), + [anon_sym_bitand] = ACTIONS(7633), + [anon_sym_not_eq] = ACTIONS(7633), + [anon_sym_DASH_DASH] = ACTIONS(7633), + [anon_sym_PLUS_PLUS] = ACTIONS(7633), + [anon_sym_DOT] = ACTIONS(7631), + [anon_sym_DOT_STAR] = ACTIONS(7633), + [anon_sym_DASH_GT] = ACTIONS(7633), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7633), + [anon_sym_override] = ACTIONS(7633), + [anon_sym_GT2] = ACTIONS(7633), + [anon_sym_requires] = ACTIONS(7633), }, - [STATE(3372)] = { - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token2] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym___attribute] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym__Nonnull] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym__Alignas] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_private] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_friend] = ACTIONS(3630), - [anon_sym_public] = ACTIONS(3630), - [anon_sym_protected] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), - [anon_sym_LBRACK_COLON] = ACTIONS(3632), + [STATE(2918)] = { + [sym_attribute_specifier] = STATE(4124), + [sym_attribute_declaration] = STATE(4490), + [sym_gnu_asm_expression] = STATE(9129), + [sym_virtual_specifier] = STATE(4610), + [sym__function_attributes_end] = STATE(4301), + [sym__function_postfix] = STATE(4813), + [sym_trailing_return_type] = STATE(4349), + [sym_requires_clause] = STATE(4813), + [aux_sym_type_definition_repeat1] = STATE(4124), + [aux_sym_attributed_declarator_repeat1] = STATE(4490), + [aux_sym__function_postfix_repeat1] = STATE(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), + [anon_sym_COMMA] = ACTIONS(8422), + [anon_sym_RPAREN] = ACTIONS(8422), + [anon_sym_LPAREN2] = ACTIONS(8422), + [anon_sym_DASH] = ACTIONS(8424), + [anon_sym_PLUS] = ACTIONS(8424), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_SLASH] = ACTIONS(8424), + [anon_sym_PERCENT] = ACTIONS(8424), + [anon_sym_PIPE_PIPE] = ACTIONS(8422), + [anon_sym_AMP_AMP] = ACTIONS(8422), + [anon_sym_PIPE] = ACTIONS(8424), + [anon_sym_CARET] = ACTIONS(8424), + [anon_sym_AMP] = ACTIONS(8424), + [anon_sym_EQ_EQ] = ACTIONS(8422), + [anon_sym_BANG_EQ] = ACTIONS(8422), + [anon_sym_GT] = ACTIONS(8424), + [anon_sym_GT_EQ] = ACTIONS(8422), + [anon_sym_LT_EQ] = ACTIONS(8424), + [anon_sym_LT] = ACTIONS(8424), + [anon_sym_LT_LT] = ACTIONS(8424), + [anon_sym_GT_GT] = ACTIONS(8424), + [anon_sym___attribute__] = ACTIONS(6646), + [anon_sym___attribute] = ACTIONS(6648), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), + [anon_sym_LBRACK] = ACTIONS(8424), + [anon_sym_EQ] = ACTIONS(8424), + [anon_sym_QMARK] = ACTIONS(8422), + [anon_sym_STAR_EQ] = ACTIONS(8422), + [anon_sym_SLASH_EQ] = ACTIONS(8422), + [anon_sym_PERCENT_EQ] = ACTIONS(8422), + [anon_sym_PLUS_EQ] = ACTIONS(8422), + [anon_sym_DASH_EQ] = ACTIONS(8422), + [anon_sym_LT_LT_EQ] = ACTIONS(8422), + [anon_sym_GT_GT_EQ] = ACTIONS(8422), + [anon_sym_AMP_EQ] = ACTIONS(8422), + [anon_sym_CARET_EQ] = ACTIONS(8422), + [anon_sym_PIPE_EQ] = ACTIONS(8422), + [anon_sym_and_eq] = ACTIONS(8422), + [anon_sym_or_eq] = ACTIONS(8422), + [anon_sym_xor_eq] = ACTIONS(8422), + [anon_sym_LT_EQ_GT] = ACTIONS(8422), + [anon_sym_or] = ACTIONS(8424), + [anon_sym_and] = ACTIONS(8424), + [anon_sym_bitor] = ACTIONS(8422), + [anon_sym_xor] = ACTIONS(8424), + [anon_sym_bitand] = ACTIONS(8422), + [anon_sym_not_eq] = ACTIONS(8422), + [anon_sym_DASH_DASH] = ACTIONS(8422), + [anon_sym_PLUS_PLUS] = ACTIONS(8422), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(8424), + [anon_sym_DOT_STAR] = ACTIONS(8422), + [anon_sym_DASH_GT] = ACTIONS(8845), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8851), + [anon_sym_override] = ACTIONS(8851), + [anon_sym_requires] = ACTIONS(8854), + [anon_sym_DASH_GT_STAR] = ACTIONS(8422), }, - [STATE(3373)] = { - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token2] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym___attribute] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym__Nonnull] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym__Alignas] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), + [STATE(2919)] = { + [sym_template_argument_list] = STATE(2998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6569), + [anon_sym_COMMA] = ACTIONS(6569), + [anon_sym_RPAREN] = ACTIONS(6569), + [anon_sym_LPAREN2] = ACTIONS(6569), + [anon_sym_DASH] = ACTIONS(6576), + [anon_sym_PLUS] = ACTIONS(6576), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(6576), + [anon_sym_PERCENT] = ACTIONS(6576), + [anon_sym_PIPE_PIPE] = ACTIONS(6569), + [anon_sym_AMP_AMP] = ACTIONS(6569), + [anon_sym_PIPE] = ACTIONS(6576), + [anon_sym_CARET] = ACTIONS(6576), + [anon_sym_AMP] = ACTIONS(6576), + [anon_sym_EQ_EQ] = ACTIONS(6569), + [anon_sym_BANG_EQ] = ACTIONS(6569), + [anon_sym_GT] = ACTIONS(6576), + [anon_sym_GT_EQ] = ACTIONS(6569), + [anon_sym_LT_EQ] = ACTIONS(6576), + [anon_sym_LT] = ACTIONS(8857), + [anon_sym_LT_LT] = ACTIONS(6576), + [anon_sym_GT_GT] = ACTIONS(6576), + [anon_sym___extension__] = ACTIONS(6572), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(6572), + [anon_sym_LBRACK] = ACTIONS(6569), + [anon_sym_EQ] = ACTIONS(6576), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_constexpr] = ACTIONS(6572), + [anon_sym_volatile] = ACTIONS(6572), + [anon_sym_restrict] = ACTIONS(6572), + [anon_sym___restrict__] = ACTIONS(6572), + [anon_sym__Atomic] = ACTIONS(6572), + [anon_sym__Noreturn] = ACTIONS(6572), + [anon_sym_noreturn] = ACTIONS(6572), + [anon_sym__Nonnull] = ACTIONS(6572), + [anon_sym_mutable] = ACTIONS(6572), + [anon_sym_constinit] = ACTIONS(6572), + [anon_sym_consteval] = ACTIONS(6572), + [anon_sym_alignas] = ACTIONS(6572), + [anon_sym__Alignas] = ACTIONS(6572), + [anon_sym_QMARK] = ACTIONS(6569), + [anon_sym_STAR_EQ] = ACTIONS(6569), + [anon_sym_SLASH_EQ] = ACTIONS(6569), + [anon_sym_PERCENT_EQ] = ACTIONS(6569), + [anon_sym_PLUS_EQ] = ACTIONS(6569), + [anon_sym_DASH_EQ] = ACTIONS(6569), + [anon_sym_LT_LT_EQ] = ACTIONS(6569), + [anon_sym_GT_GT_EQ] = ACTIONS(6569), + [anon_sym_AMP_EQ] = ACTIONS(6569), + [anon_sym_CARET_EQ] = ACTIONS(6569), + [anon_sym_PIPE_EQ] = ACTIONS(6569), + [anon_sym_and_eq] = ACTIONS(6567), + [anon_sym_or_eq] = ACTIONS(6567), + [anon_sym_xor_eq] = ACTIONS(6567), + [anon_sym_LT_EQ_GT] = ACTIONS(6569), + [anon_sym_or] = ACTIONS(6576), + [anon_sym_and] = ACTIONS(6576), + [anon_sym_bitor] = ACTIONS(6569), + [anon_sym_xor] = ACTIONS(6576), + [anon_sym_bitand] = ACTIONS(6569), + [anon_sym_not_eq] = ACTIONS(6569), + [anon_sym_DASH_DASH] = ACTIONS(6569), + [anon_sym_PLUS_PLUS] = ACTIONS(6569), + [anon_sym_DOT] = ACTIONS(6576), + [anon_sym_DOT_STAR] = ACTIONS(6569), + [anon_sym_DASH_GT] = ACTIONS(6576), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_private] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_friend] = ACTIONS(3630), - [anon_sym_public] = ACTIONS(3630), - [anon_sym_protected] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), - [anon_sym_LBRACK_COLON] = ACTIONS(3632), - }, - [STATE(3374)] = { - [sym_identifier] = ACTIONS(8396), - [aux_sym_preproc_def_token1] = ACTIONS(8396), - [aux_sym_preproc_if_token1] = ACTIONS(8396), - [aux_sym_preproc_if_token2] = ACTIONS(8396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8396), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8396), - [sym_preproc_directive] = ACTIONS(8396), - [anon_sym_LPAREN2] = ACTIONS(8398), - [anon_sym_TILDE] = ACTIONS(8398), - [anon_sym_STAR] = ACTIONS(8398), - [anon_sym_AMP_AMP] = ACTIONS(8398), - [anon_sym_AMP] = ACTIONS(8396), - [anon_sym_SEMI] = ACTIONS(8398), - [anon_sym___extension__] = ACTIONS(8396), - [anon_sym_typedef] = ACTIONS(8396), - [anon_sym_virtual] = ACTIONS(8396), - [anon_sym_extern] = ACTIONS(8396), - [anon_sym___attribute__] = ACTIONS(8396), - [anon_sym___attribute] = ACTIONS(8396), - [anon_sym_using] = ACTIONS(8396), - [anon_sym_COLON_COLON] = ACTIONS(8398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8398), - [anon_sym___declspec] = ACTIONS(8396), - [anon_sym___based] = ACTIONS(8396), - [anon_sym_signed] = ACTIONS(8396), - [anon_sym_unsigned] = ACTIONS(8396), - [anon_sym_long] = ACTIONS(8396), - [anon_sym_short] = ACTIONS(8396), - [anon_sym_LBRACK] = ACTIONS(8396), - [anon_sym_static] = ACTIONS(8396), - [anon_sym_register] = ACTIONS(8396), - [anon_sym_inline] = ACTIONS(8396), - [anon_sym___inline] = ACTIONS(8396), - [anon_sym___inline__] = ACTIONS(8396), - [anon_sym___forceinline] = ACTIONS(8396), - [anon_sym_thread_local] = ACTIONS(8396), - [anon_sym___thread] = ACTIONS(8396), - [anon_sym_const] = ACTIONS(8396), - [anon_sym_constexpr] = ACTIONS(8396), - [anon_sym_volatile] = ACTIONS(8396), - [anon_sym_restrict] = ACTIONS(8396), - [anon_sym___restrict__] = ACTIONS(8396), - [anon_sym__Atomic] = ACTIONS(8396), - [anon_sym__Noreturn] = ACTIONS(8396), - [anon_sym_noreturn] = ACTIONS(8396), - [anon_sym__Nonnull] = ACTIONS(8396), - [anon_sym_mutable] = ACTIONS(8396), - [anon_sym_constinit] = ACTIONS(8396), - [anon_sym_consteval] = ACTIONS(8396), - [anon_sym_alignas] = ACTIONS(8396), - [anon_sym__Alignas] = ACTIONS(8396), - [sym_primitive_type] = ACTIONS(8396), - [anon_sym_enum] = ACTIONS(8396), - [anon_sym_class] = ACTIONS(8396), - [anon_sym_struct] = ACTIONS(8396), - [anon_sym_union] = ACTIONS(8396), - [anon_sym_typename] = ACTIONS(8396), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8396), - [anon_sym_decltype] = ACTIONS(8396), - [anon_sym_explicit] = ACTIONS(8396), - [anon_sym_private] = ACTIONS(8396), - [anon_sym_template] = ACTIONS(8396), - [anon_sym_operator] = ACTIONS(8396), - [anon_sym_friend] = ACTIONS(8396), - [anon_sym_public] = ACTIONS(8396), - [anon_sym_protected] = ACTIONS(8396), - [anon_sym_static_assert] = ACTIONS(8396), - [anon_sym_LBRACK_COLON] = ACTIONS(8398), - }, - [STATE(3375)] = { - [sym_identifier] = ACTIONS(3648), - [aux_sym_preproc_def_token1] = ACTIONS(3648), - [aux_sym_preproc_if_token1] = ACTIONS(3648), - [aux_sym_preproc_if_token2] = ACTIONS(3648), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3648), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3648), - [sym_preproc_directive] = ACTIONS(3648), - [anon_sym_LPAREN2] = ACTIONS(3650), - [anon_sym_TILDE] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3650), - [anon_sym_AMP_AMP] = ACTIONS(3650), - [anon_sym_AMP] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3650), - [anon_sym___extension__] = ACTIONS(3648), - [anon_sym_typedef] = ACTIONS(3648), - [anon_sym_virtual] = ACTIONS(3648), - [anon_sym_extern] = ACTIONS(3648), - [anon_sym___attribute__] = ACTIONS(3648), - [anon_sym___attribute] = ACTIONS(3648), - [anon_sym_using] = ACTIONS(3648), - [anon_sym_COLON_COLON] = ACTIONS(3650), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), - [anon_sym___declspec] = ACTIONS(3648), - [anon_sym___based] = ACTIONS(3648), - [anon_sym_signed] = ACTIONS(3648), - [anon_sym_unsigned] = ACTIONS(3648), - [anon_sym_long] = ACTIONS(3648), - [anon_sym_short] = ACTIONS(3648), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_static] = ACTIONS(3648), - [anon_sym_register] = ACTIONS(3648), - [anon_sym_inline] = ACTIONS(3648), - [anon_sym___inline] = ACTIONS(3648), - [anon_sym___inline__] = ACTIONS(3648), - [anon_sym___forceinline] = ACTIONS(3648), - [anon_sym_thread_local] = ACTIONS(3648), - [anon_sym___thread] = ACTIONS(3648), - [anon_sym_const] = ACTIONS(3648), - [anon_sym_constexpr] = ACTIONS(3648), - [anon_sym_volatile] = ACTIONS(3648), - [anon_sym_restrict] = ACTIONS(3648), - [anon_sym___restrict__] = ACTIONS(3648), - [anon_sym__Atomic] = ACTIONS(3648), - [anon_sym__Noreturn] = ACTIONS(3648), - [anon_sym_noreturn] = ACTIONS(3648), - [anon_sym__Nonnull] = ACTIONS(3648), - [anon_sym_mutable] = ACTIONS(3648), - [anon_sym_constinit] = ACTIONS(3648), - [anon_sym_consteval] = ACTIONS(3648), - [anon_sym_alignas] = ACTIONS(3648), - [anon_sym__Alignas] = ACTIONS(3648), - [sym_primitive_type] = ACTIONS(3648), - [anon_sym_enum] = ACTIONS(3648), - [anon_sym_class] = ACTIONS(3648), - [anon_sym_struct] = ACTIONS(3648), - [anon_sym_union] = ACTIONS(3648), - [anon_sym_typename] = ACTIONS(3648), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3648), - [anon_sym_decltype] = ACTIONS(3648), - [anon_sym_explicit] = ACTIONS(3648), - [anon_sym_private] = ACTIONS(3648), - [anon_sym_template] = ACTIONS(3648), - [anon_sym_operator] = ACTIONS(3648), - [anon_sym_friend] = ACTIONS(3648), - [anon_sym_public] = ACTIONS(3648), - [anon_sym_protected] = ACTIONS(3648), - [anon_sym_static_assert] = ACTIONS(3648), - [anon_sym_LBRACK_COLON] = ACTIONS(3650), - }, - [STATE(3376)] = { - [sym_identifier] = ACTIONS(8408), - [aux_sym_preproc_def_token1] = ACTIONS(8408), - [aux_sym_preproc_if_token1] = ACTIONS(8408), - [aux_sym_preproc_if_token2] = ACTIONS(8408), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8408), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8408), - [sym_preproc_directive] = ACTIONS(8408), - [anon_sym_LPAREN2] = ACTIONS(8410), - [anon_sym_TILDE] = ACTIONS(8410), - [anon_sym_STAR] = ACTIONS(8410), - [anon_sym_AMP_AMP] = ACTIONS(8410), - [anon_sym_AMP] = ACTIONS(8408), - [anon_sym_SEMI] = ACTIONS(8410), - [anon_sym___extension__] = ACTIONS(8408), - [anon_sym_typedef] = ACTIONS(8408), - [anon_sym_virtual] = ACTIONS(8408), - [anon_sym_extern] = ACTIONS(8408), - [anon_sym___attribute__] = ACTIONS(8408), - [anon_sym___attribute] = ACTIONS(8408), - [anon_sym_using] = ACTIONS(8408), - [anon_sym_COLON_COLON] = ACTIONS(8410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8410), - [anon_sym___declspec] = ACTIONS(8408), - [anon_sym___based] = ACTIONS(8408), - [anon_sym_signed] = ACTIONS(8408), - [anon_sym_unsigned] = ACTIONS(8408), - [anon_sym_long] = ACTIONS(8408), - [anon_sym_short] = ACTIONS(8408), - [anon_sym_LBRACK] = ACTIONS(8408), - [anon_sym_static] = ACTIONS(8408), - [anon_sym_register] = ACTIONS(8408), - [anon_sym_inline] = ACTIONS(8408), - [anon_sym___inline] = ACTIONS(8408), - [anon_sym___inline__] = ACTIONS(8408), - [anon_sym___forceinline] = ACTIONS(8408), - [anon_sym_thread_local] = ACTIONS(8408), - [anon_sym___thread] = ACTIONS(8408), - [anon_sym_const] = ACTIONS(8408), - [anon_sym_constexpr] = ACTIONS(8408), - [anon_sym_volatile] = ACTIONS(8408), - [anon_sym_restrict] = ACTIONS(8408), - [anon_sym___restrict__] = ACTIONS(8408), - [anon_sym__Atomic] = ACTIONS(8408), - [anon_sym__Noreturn] = ACTIONS(8408), - [anon_sym_noreturn] = ACTIONS(8408), - [anon_sym__Nonnull] = ACTIONS(8408), - [anon_sym_mutable] = ACTIONS(8408), - [anon_sym_constinit] = ACTIONS(8408), - [anon_sym_consteval] = ACTIONS(8408), - [anon_sym_alignas] = ACTIONS(8408), - [anon_sym__Alignas] = ACTIONS(8408), - [sym_primitive_type] = ACTIONS(8408), - [anon_sym_enum] = ACTIONS(8408), - [anon_sym_class] = ACTIONS(8408), - [anon_sym_struct] = ACTIONS(8408), - [anon_sym_union] = ACTIONS(8408), - [anon_sym_typename] = ACTIONS(8408), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8408), - [anon_sym_decltype] = ACTIONS(8408), - [anon_sym_explicit] = ACTIONS(8408), - [anon_sym_private] = ACTIONS(8408), - [anon_sym_template] = ACTIONS(8408), - [anon_sym_operator] = ACTIONS(8408), - [anon_sym_friend] = ACTIONS(8408), - [anon_sym_public] = ACTIONS(8408), - [anon_sym_protected] = ACTIONS(8408), - [anon_sym_static_assert] = ACTIONS(8408), - [anon_sym_LBRACK_COLON] = ACTIONS(8410), - }, - [STATE(3377)] = { - [sym_identifier] = ACTIONS(8317), - [aux_sym_preproc_def_token1] = ACTIONS(8317), - [aux_sym_preproc_if_token1] = ACTIONS(8317), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8317), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8317), - [sym_preproc_directive] = ACTIONS(8317), - [anon_sym_LPAREN2] = ACTIONS(8319), - [anon_sym_TILDE] = ACTIONS(8319), - [anon_sym_STAR] = ACTIONS(8319), - [anon_sym_AMP_AMP] = ACTIONS(8319), - [anon_sym_AMP] = ACTIONS(8317), - [anon_sym_SEMI] = ACTIONS(8319), - [anon_sym___extension__] = ACTIONS(8317), - [anon_sym_typedef] = ACTIONS(8317), - [anon_sym_virtual] = ACTIONS(8317), - [anon_sym_extern] = ACTIONS(8317), - [anon_sym___attribute__] = ACTIONS(8317), - [anon_sym___attribute] = ACTIONS(8317), - [anon_sym_using] = ACTIONS(8317), - [anon_sym_COLON_COLON] = ACTIONS(8319), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8319), - [anon_sym___declspec] = ACTIONS(8317), - [anon_sym___based] = ACTIONS(8317), - [anon_sym_RBRACE] = ACTIONS(8319), - [anon_sym_signed] = ACTIONS(8317), - [anon_sym_unsigned] = ACTIONS(8317), - [anon_sym_long] = ACTIONS(8317), - [anon_sym_short] = ACTIONS(8317), - [anon_sym_LBRACK] = ACTIONS(8317), - [anon_sym_static] = ACTIONS(8317), - [anon_sym_register] = ACTIONS(8317), - [anon_sym_inline] = ACTIONS(8317), - [anon_sym___inline] = ACTIONS(8317), - [anon_sym___inline__] = ACTIONS(8317), - [anon_sym___forceinline] = ACTIONS(8317), - [anon_sym_thread_local] = ACTIONS(8317), - [anon_sym___thread] = ACTIONS(8317), - [anon_sym_const] = ACTIONS(8317), - [anon_sym_constexpr] = ACTIONS(8317), - [anon_sym_volatile] = ACTIONS(8317), - [anon_sym_restrict] = ACTIONS(8317), - [anon_sym___restrict__] = ACTIONS(8317), - [anon_sym__Atomic] = ACTIONS(8317), - [anon_sym__Noreturn] = ACTIONS(8317), - [anon_sym_noreturn] = ACTIONS(8317), - [anon_sym__Nonnull] = ACTIONS(8317), - [anon_sym_mutable] = ACTIONS(8317), - [anon_sym_constinit] = ACTIONS(8317), - [anon_sym_consteval] = ACTIONS(8317), - [anon_sym_alignas] = ACTIONS(8317), - [anon_sym__Alignas] = ACTIONS(8317), - [sym_primitive_type] = ACTIONS(8317), - [anon_sym_enum] = ACTIONS(8317), - [anon_sym_class] = ACTIONS(8317), - [anon_sym_struct] = ACTIONS(8317), - [anon_sym_union] = ACTIONS(8317), - [anon_sym_typename] = ACTIONS(8317), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8317), - [anon_sym_decltype] = ACTIONS(8317), - [anon_sym_explicit] = ACTIONS(8317), - [anon_sym_private] = ACTIONS(8317), - [anon_sym_template] = ACTIONS(8317), - [anon_sym_operator] = ACTIONS(8317), - [anon_sym_friend] = ACTIONS(8317), - [anon_sym_public] = ACTIONS(8317), - [anon_sym_protected] = ACTIONS(8317), - [anon_sym_static_assert] = ACTIONS(8317), - [anon_sym_LBRACK_COLON] = ACTIONS(8319), - }, - [STATE(3378)] = { - [sym_type_qualifier] = STATE(3487), - [sym_alignas_qualifier] = STATE(3785), - [aux_sym__type_definition_type_repeat1] = STATE(3487), - [aux_sym_sized_type_specifier_repeat1] = STATE(3679), - [sym_identifier] = ACTIONS(8790), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), - [anon_sym_COMMA] = ACTIONS(6812), - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_STAR] = ACTIONS(6812), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_PERCENT] = ACTIONS(6812), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_CARET] = ACTIONS(6812), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6814), - [anon_sym_LT_EQ] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_LT_LT] = ACTIONS(6812), - [anon_sym_GT_GT] = ACTIONS(6814), - [anon_sym___extension__] = ACTIONS(8792), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_signed] = ACTIONS(8795), - [anon_sym_unsigned] = ACTIONS(8795), - [anon_sym_long] = ACTIONS(8795), - [anon_sym_short] = ACTIONS(8795), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_const] = ACTIONS(8792), - [anon_sym_constexpr] = ACTIONS(8792), - [anon_sym_volatile] = ACTIONS(8792), - [anon_sym_restrict] = ACTIONS(8792), - [anon_sym___restrict__] = ACTIONS(8792), - [anon_sym__Atomic] = ACTIONS(8792), - [anon_sym__Noreturn] = ACTIONS(8792), - [anon_sym_noreturn] = ACTIONS(8792), - [anon_sym__Nonnull] = ACTIONS(8792), - [anon_sym_mutable] = ACTIONS(8792), - [anon_sym_constinit] = ACTIONS(8792), - [anon_sym_consteval] = ACTIONS(8792), - [anon_sym_alignas] = ACTIONS(8797), - [anon_sym__Alignas] = ACTIONS(8797), - [sym_primitive_type] = ACTIONS(8800), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_LT_EQ_GT] = ACTIONS(6812), - [anon_sym_or] = ACTIONS(6814), - [anon_sym_and] = ACTIONS(6814), - [anon_sym_bitor] = ACTIONS(6814), - [anon_sym_xor] = ACTIONS(6814), - [anon_sym_bitand] = ACTIONS(6814), - [anon_sym_not_eq] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6814), - [anon_sym_DOT_STAR] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6812), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6814), - [anon_sym_override] = ACTIONS(6814), - [anon_sym_GT2] = ACTIONS(6812), - [anon_sym_requires] = ACTIONS(6814), - }, - [STATE(3379)] = { - [sym_string_literal] = STATE(3400), - [sym_raw_string_literal] = STATE(3400), - [aux_sym_concatenated_string_repeat1] = STATE(3400), - [sym_identifier] = ACTIONS(8802), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8125), - [anon_sym_COMMA] = ACTIONS(8125), - [anon_sym_LPAREN2] = ACTIONS(8125), - [anon_sym_DASH] = ACTIONS(8127), - [anon_sym_PLUS] = ACTIONS(8127), - [anon_sym_STAR] = ACTIONS(8127), - [anon_sym_SLASH] = ACTIONS(8127), - [anon_sym_PERCENT] = ACTIONS(8127), - [anon_sym_PIPE_PIPE] = ACTIONS(8125), - [anon_sym_AMP_AMP] = ACTIONS(8125), - [anon_sym_PIPE] = ACTIONS(8127), - [anon_sym_CARET] = ACTIONS(8127), - [anon_sym_AMP] = ACTIONS(8127), - [anon_sym_EQ_EQ] = ACTIONS(8125), - [anon_sym_BANG_EQ] = ACTIONS(8125), - [anon_sym_GT] = ACTIONS(8127), - [anon_sym_GT_EQ] = ACTIONS(8125), - [anon_sym_LT_EQ] = ACTIONS(8127), - [anon_sym_LT] = ACTIONS(8127), - [anon_sym_LT_LT] = ACTIONS(8127), - [anon_sym_GT_GT] = ACTIONS(8127), - [anon_sym_SEMI] = ACTIONS(8125), - [anon_sym___attribute__] = ACTIONS(8127), - [anon_sym___attribute] = ACTIONS(8127), - [anon_sym_LBRACK] = ACTIONS(8125), - [anon_sym_EQ] = ACTIONS(8127), - [anon_sym_QMARK] = ACTIONS(8125), - [anon_sym_STAR_EQ] = ACTIONS(8125), - [anon_sym_SLASH_EQ] = ACTIONS(8125), - [anon_sym_PERCENT_EQ] = ACTIONS(8125), - [anon_sym_PLUS_EQ] = ACTIONS(8125), - [anon_sym_DASH_EQ] = ACTIONS(8125), - [anon_sym_LT_LT_EQ] = ACTIONS(8125), - [anon_sym_GT_GT_EQ] = ACTIONS(8125), - [anon_sym_AMP_EQ] = ACTIONS(8125), - [anon_sym_CARET_EQ] = ACTIONS(8125), - [anon_sym_PIPE_EQ] = ACTIONS(8125), - [anon_sym_and_eq] = ACTIONS(8127), - [anon_sym_or_eq] = ACTIONS(8127), - [anon_sym_xor_eq] = ACTIONS(8127), - [anon_sym_LT_EQ_GT] = ACTIONS(8125), - [anon_sym_or] = ACTIONS(8127), - [anon_sym_and] = ACTIONS(8127), - [anon_sym_bitor] = ACTIONS(8127), - [anon_sym_xor] = ACTIONS(8127), - [anon_sym_bitand] = ACTIONS(8127), - [anon_sym_not_eq] = ACTIONS(8127), - [anon_sym_DASH_DASH] = ACTIONS(8125), - [anon_sym_PLUS_PLUS] = ACTIONS(8125), - [anon_sym_DOT] = ACTIONS(8127), - [anon_sym_DOT_STAR] = ACTIONS(8125), - [anon_sym_DASH_GT] = ACTIONS(8125), - [anon_sym_L_DQUOTE] = ACTIONS(6543), - [anon_sym_u_DQUOTE] = ACTIONS(6543), - [anon_sym_U_DQUOTE] = ACTIONS(6543), - [anon_sym_u8_DQUOTE] = ACTIONS(6543), - [anon_sym_DQUOTE] = ACTIONS(6543), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6545), - [anon_sym_LR_DQUOTE] = ACTIONS(6545), - [anon_sym_uR_DQUOTE] = ACTIONS(6545), - [anon_sym_UR_DQUOTE] = ACTIONS(6545), - [anon_sym_u8R_DQUOTE] = ACTIONS(6545), - [sym_literal_suffix] = ACTIONS(8127), - }, - [STATE(3380)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7281), - [anon_sym_COMMA] = ACTIONS(7281), - [anon_sym_RPAREN] = ACTIONS(7281), - [anon_sym_LPAREN2] = ACTIONS(7281), - [anon_sym_DASH] = ACTIONS(7279), - [anon_sym_PLUS] = ACTIONS(7279), - [anon_sym_STAR] = ACTIONS(7279), - [anon_sym_SLASH] = ACTIONS(7279), - [anon_sym_PERCENT] = ACTIONS(7279), - [anon_sym_PIPE_PIPE] = ACTIONS(7281), - [anon_sym_AMP_AMP] = ACTIONS(7281), - [anon_sym_PIPE] = ACTIONS(7279), - [anon_sym_CARET] = ACTIONS(7279), - [anon_sym_AMP] = ACTIONS(7279), - [anon_sym_EQ_EQ] = ACTIONS(7281), - [anon_sym_BANG_EQ] = ACTIONS(7281), - [anon_sym_GT] = ACTIONS(7279), - [anon_sym_GT_EQ] = ACTIONS(7281), - [anon_sym_LT_EQ] = ACTIONS(7279), - [anon_sym_LT] = ACTIONS(7279), - [anon_sym_LT_LT] = ACTIONS(7279), - [anon_sym_GT_GT] = ACTIONS(7279), - [anon_sym___extension__] = ACTIONS(7281), - [anon_sym_LBRACE] = ACTIONS(7281), - [anon_sym_LBRACK] = ACTIONS(7281), - [anon_sym_EQ] = ACTIONS(7279), - [anon_sym_const] = ACTIONS(7279), - [anon_sym_constexpr] = ACTIONS(7281), - [anon_sym_volatile] = ACTIONS(7281), - [anon_sym_restrict] = ACTIONS(7281), - [anon_sym___restrict__] = ACTIONS(7281), - [anon_sym__Atomic] = ACTIONS(7281), - [anon_sym__Noreturn] = ACTIONS(7281), - [anon_sym_noreturn] = ACTIONS(7281), - [anon_sym__Nonnull] = ACTIONS(7281), - [anon_sym_mutable] = ACTIONS(7281), - [anon_sym_constinit] = ACTIONS(7281), - [anon_sym_consteval] = ACTIONS(7281), - [anon_sym_alignas] = ACTIONS(7281), - [anon_sym__Alignas] = ACTIONS(7281), - [anon_sym_QMARK] = ACTIONS(7281), - [anon_sym_STAR_EQ] = ACTIONS(7281), - [anon_sym_SLASH_EQ] = ACTIONS(7281), - [anon_sym_PERCENT_EQ] = ACTIONS(7281), - [anon_sym_PLUS_EQ] = ACTIONS(7281), - [anon_sym_DASH_EQ] = ACTIONS(7281), - [anon_sym_LT_LT_EQ] = ACTIONS(7281), - [anon_sym_GT_GT_EQ] = ACTIONS(7281), - [anon_sym_AMP_EQ] = ACTIONS(7281), - [anon_sym_CARET_EQ] = ACTIONS(7281), - [anon_sym_PIPE_EQ] = ACTIONS(7281), - [anon_sym_LT_EQ_GT] = ACTIONS(7281), - [anon_sym_or] = ACTIONS(7281), - [anon_sym_and] = ACTIONS(7281), - [anon_sym_bitor] = ACTIONS(7281), - [anon_sym_xor] = ACTIONS(7281), - [anon_sym_bitand] = ACTIONS(7281), - [anon_sym_not_eq] = ACTIONS(7281), - [anon_sym_DASH_DASH] = ACTIONS(7281), - [anon_sym_PLUS_PLUS] = ACTIONS(7281), - [anon_sym_DOT] = ACTIONS(7279), - [anon_sym_DOT_STAR] = ACTIONS(7281), - [anon_sym_DASH_GT] = ACTIONS(7279), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7281), - [anon_sym_override] = ACTIONS(7281), - [anon_sym_requires] = ACTIONS(7281), - [anon_sym_DASH_GT_STAR] = ACTIONS(7281), + [sym_auto] = ACTIONS(6572), + [anon_sym_decltype] = ACTIONS(6572), + [anon_sym_DASH_GT_STAR] = ACTIONS(6569), }, - [STATE(3381)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7423), - [anon_sym_COMMA] = ACTIONS(7423), - [anon_sym_RPAREN] = ACTIONS(7423), - [anon_sym_LPAREN2] = ACTIONS(7423), - [anon_sym_DASH] = ACTIONS(7421), - [anon_sym_PLUS] = ACTIONS(7421), - [anon_sym_STAR] = ACTIONS(7421), - [anon_sym_SLASH] = ACTIONS(7421), - [anon_sym_PERCENT] = ACTIONS(7421), - [anon_sym_PIPE_PIPE] = ACTIONS(7423), - [anon_sym_AMP_AMP] = ACTIONS(7423), - [anon_sym_PIPE] = ACTIONS(7421), - [anon_sym_CARET] = ACTIONS(7421), - [anon_sym_AMP] = ACTIONS(7421), - [anon_sym_EQ_EQ] = ACTIONS(7423), - [anon_sym_BANG_EQ] = ACTIONS(7423), - [anon_sym_GT] = ACTIONS(7421), - [anon_sym_GT_EQ] = ACTIONS(7423), - [anon_sym_LT_EQ] = ACTIONS(7421), - [anon_sym_LT] = ACTIONS(7421), - [anon_sym_LT_LT] = ACTIONS(7421), - [anon_sym_GT_GT] = ACTIONS(7421), - [anon_sym___extension__] = ACTIONS(7423), - [anon_sym_LBRACE] = ACTIONS(7423), - [anon_sym_LBRACK] = ACTIONS(7423), - [anon_sym_EQ] = ACTIONS(7421), - [anon_sym_const] = ACTIONS(7421), - [anon_sym_constexpr] = ACTIONS(7423), - [anon_sym_volatile] = ACTIONS(7423), - [anon_sym_restrict] = ACTIONS(7423), - [anon_sym___restrict__] = ACTIONS(7423), - [anon_sym__Atomic] = ACTIONS(7423), - [anon_sym__Noreturn] = ACTIONS(7423), - [anon_sym_noreturn] = ACTIONS(7423), - [anon_sym__Nonnull] = ACTIONS(7423), - [anon_sym_mutable] = ACTIONS(7423), - [anon_sym_constinit] = ACTIONS(7423), - [anon_sym_consteval] = ACTIONS(7423), - [anon_sym_alignas] = ACTIONS(7423), - [anon_sym__Alignas] = ACTIONS(7423), - [anon_sym_QMARK] = ACTIONS(7423), - [anon_sym_STAR_EQ] = ACTIONS(7423), - [anon_sym_SLASH_EQ] = ACTIONS(7423), - [anon_sym_PERCENT_EQ] = ACTIONS(7423), - [anon_sym_PLUS_EQ] = ACTIONS(7423), - [anon_sym_DASH_EQ] = ACTIONS(7423), - [anon_sym_LT_LT_EQ] = ACTIONS(7423), - [anon_sym_GT_GT_EQ] = ACTIONS(7423), - [anon_sym_AMP_EQ] = ACTIONS(7423), - [anon_sym_CARET_EQ] = ACTIONS(7423), - [anon_sym_PIPE_EQ] = ACTIONS(7423), - [anon_sym_LT_EQ_GT] = ACTIONS(7423), - [anon_sym_or] = ACTIONS(7423), - [anon_sym_and] = ACTIONS(7423), - [anon_sym_bitor] = ACTIONS(7423), - [anon_sym_xor] = ACTIONS(7423), - [anon_sym_bitand] = ACTIONS(7423), - [anon_sym_not_eq] = ACTIONS(7423), - [anon_sym_DASH_DASH] = ACTIONS(7423), - [anon_sym_PLUS_PLUS] = ACTIONS(7423), - [anon_sym_DOT] = ACTIONS(7421), - [anon_sym_DOT_STAR] = ACTIONS(7423), - [anon_sym_DASH_GT] = ACTIONS(7421), + [STATE(2920)] = { + [sym_identifier] = ACTIONS(7291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_RPAREN] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7293), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7293), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7293), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7293), + [anon_sym_GT_GT] = ACTIONS(7293), + [anon_sym_SEMI] = ACTIONS(7293), + [anon_sym___extension__] = ACTIONS(7291), + [anon_sym___attribute__] = ACTIONS(7291), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_COLON] = ACTIONS(7291), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7293), + [anon_sym___based] = ACTIONS(7291), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_RBRACE] = ACTIONS(7293), + [anon_sym_signed] = ACTIONS(7291), + [anon_sym_unsigned] = ACTIONS(7291), + [anon_sym_long] = ACTIONS(7291), + [anon_sym_short] = ACTIONS(7291), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7291), + [anon_sym_volatile] = ACTIONS(7291), + [anon_sym_restrict] = ACTIONS(7291), + [anon_sym___restrict__] = ACTIONS(7291), + [anon_sym__Atomic] = ACTIONS(7291), + [anon_sym__Noreturn] = ACTIONS(7291), + [anon_sym_noreturn] = ACTIONS(7291), + [anon_sym__Nonnull] = ACTIONS(7291), + [anon_sym_mutable] = ACTIONS(7291), + [anon_sym_constinit] = ACTIONS(7291), + [anon_sym_consteval] = ACTIONS(7291), + [anon_sym_alignas] = ACTIONS(7291), + [anon_sym__Alignas] = ACTIONS(7291), + [sym_primitive_type] = ACTIONS(7291), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_bitor] = ACTIONS(7291), + [anon_sym_xor] = ACTIONS(7291), + [anon_sym_bitand] = ACTIONS(7291), + [anon_sym_not_eq] = ACTIONS(7291), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7293), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7423), - [anon_sym_override] = ACTIONS(7423), - [anon_sym_requires] = ACTIONS(7423), - [anon_sym_DASH_GT_STAR] = ACTIONS(7423), + [sym_auto] = ACTIONS(7291), + [anon_sym_decltype] = ACTIONS(7291), + [anon_sym_final] = ACTIONS(7291), + [anon_sym_override] = ACTIONS(7291), + [anon_sym_requires] = ACTIONS(7291), + [anon_sym_COLON_RBRACK] = ACTIONS(7293), }, - [STATE(3382)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7327), - [anon_sym_COMMA] = ACTIONS(7327), - [anon_sym_RPAREN] = ACTIONS(7327), - [anon_sym_LPAREN2] = ACTIONS(7327), - [anon_sym_DASH] = ACTIONS(7325), - [anon_sym_PLUS] = ACTIONS(7325), - [anon_sym_STAR] = ACTIONS(7325), - [anon_sym_SLASH] = ACTIONS(7325), - [anon_sym_PERCENT] = ACTIONS(7325), - [anon_sym_PIPE_PIPE] = ACTIONS(7327), - [anon_sym_AMP_AMP] = ACTIONS(7327), - [anon_sym_PIPE] = ACTIONS(7325), - [anon_sym_CARET] = ACTIONS(7325), - [anon_sym_AMP] = ACTIONS(7325), - [anon_sym_EQ_EQ] = ACTIONS(7327), - [anon_sym_BANG_EQ] = ACTIONS(7327), - [anon_sym_GT] = ACTIONS(7325), - [anon_sym_GT_EQ] = ACTIONS(7327), - [anon_sym_LT_EQ] = ACTIONS(7325), - [anon_sym_LT] = ACTIONS(7325), - [anon_sym_LT_LT] = ACTIONS(7325), - [anon_sym_GT_GT] = ACTIONS(7325), - [anon_sym___extension__] = ACTIONS(7327), - [anon_sym_LBRACE] = ACTIONS(7327), - [anon_sym_LBRACK] = ACTIONS(7327), - [anon_sym_EQ] = ACTIONS(7325), - [anon_sym_const] = ACTIONS(7325), - [anon_sym_constexpr] = ACTIONS(7327), - [anon_sym_volatile] = ACTIONS(7327), - [anon_sym_restrict] = ACTIONS(7327), - [anon_sym___restrict__] = ACTIONS(7327), - [anon_sym__Atomic] = ACTIONS(7327), - [anon_sym__Noreturn] = ACTIONS(7327), - [anon_sym_noreturn] = ACTIONS(7327), - [anon_sym__Nonnull] = ACTIONS(7327), - [anon_sym_mutable] = ACTIONS(7327), - [anon_sym_constinit] = ACTIONS(7327), - [anon_sym_consteval] = ACTIONS(7327), - [anon_sym_alignas] = ACTIONS(7327), - [anon_sym__Alignas] = ACTIONS(7327), - [anon_sym_QMARK] = ACTIONS(7327), - [anon_sym_STAR_EQ] = ACTIONS(7327), - [anon_sym_SLASH_EQ] = ACTIONS(7327), - [anon_sym_PERCENT_EQ] = ACTIONS(7327), - [anon_sym_PLUS_EQ] = ACTIONS(7327), - [anon_sym_DASH_EQ] = ACTIONS(7327), - [anon_sym_LT_LT_EQ] = ACTIONS(7327), - [anon_sym_GT_GT_EQ] = ACTIONS(7327), - [anon_sym_AMP_EQ] = ACTIONS(7327), - [anon_sym_CARET_EQ] = ACTIONS(7327), - [anon_sym_PIPE_EQ] = ACTIONS(7327), - [anon_sym_LT_EQ_GT] = ACTIONS(7327), - [anon_sym_or] = ACTIONS(7327), - [anon_sym_and] = ACTIONS(7327), - [anon_sym_bitor] = ACTIONS(7327), - [anon_sym_xor] = ACTIONS(7327), - [anon_sym_bitand] = ACTIONS(7327), - [anon_sym_not_eq] = ACTIONS(7327), - [anon_sym_DASH_DASH] = ACTIONS(7327), - [anon_sym_PLUS_PLUS] = ACTIONS(7327), - [anon_sym_DOT] = ACTIONS(7325), - [anon_sym_DOT_STAR] = ACTIONS(7327), - [anon_sym_DASH_GT] = ACTIONS(7325), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7327), - [anon_sym_override] = ACTIONS(7327), - [anon_sym_requires] = ACTIONS(7327), - [anon_sym_DASH_GT_STAR] = ACTIONS(7327), + [STATE(2921)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), + [anon_sym_COMMA] = ACTIONS(7090), + [anon_sym_RPAREN] = ACTIONS(7090), + [anon_sym_LPAREN2] = ACTIONS(7090), + [anon_sym_DASH] = ACTIONS(7085), + [anon_sym_PLUS] = ACTIONS(7085), + [anon_sym_STAR] = ACTIONS(7085), + [anon_sym_SLASH] = ACTIONS(7085), + [anon_sym_PERCENT] = ACTIONS(7085), + [anon_sym_PIPE_PIPE] = ACTIONS(7090), + [anon_sym_AMP_AMP] = ACTIONS(7090), + [anon_sym_PIPE] = ACTIONS(7085), + [anon_sym_CARET] = ACTIONS(7085), + [anon_sym_AMP] = ACTIONS(7085), + [anon_sym_EQ_EQ] = ACTIONS(7090), + [anon_sym_BANG_EQ] = ACTIONS(7090), + [anon_sym_GT] = ACTIONS(7085), + [anon_sym_GT_EQ] = ACTIONS(7090), + [anon_sym_LT_EQ] = ACTIONS(7085), + [anon_sym_LT] = ACTIONS(7085), + [anon_sym_LT_LT] = ACTIONS(7085), + [anon_sym_GT_GT] = ACTIONS(7085), + [anon_sym___extension__] = ACTIONS(7090), + [anon_sym___attribute__] = ACTIONS(7090), + [anon_sym___attribute] = ACTIONS(7085), + [anon_sym_COLON] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7090), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_LBRACK] = ACTIONS(7090), + [anon_sym_EQ] = ACTIONS(7085), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7090), + [anon_sym_volatile] = ACTIONS(7090), + [anon_sym_restrict] = ACTIONS(7090), + [anon_sym___restrict__] = ACTIONS(7090), + [anon_sym__Atomic] = ACTIONS(7090), + [anon_sym__Noreturn] = ACTIONS(7090), + [anon_sym_noreturn] = ACTIONS(7090), + [anon_sym__Nonnull] = ACTIONS(7090), + [anon_sym_mutable] = ACTIONS(7090), + [anon_sym_constinit] = ACTIONS(7090), + [anon_sym_consteval] = ACTIONS(7090), + [anon_sym_alignas] = ACTIONS(7090), + [anon_sym__Alignas] = ACTIONS(7090), + [anon_sym_QMARK] = ACTIONS(7090), + [anon_sym_STAR_EQ] = ACTIONS(7090), + [anon_sym_SLASH_EQ] = ACTIONS(7090), + [anon_sym_PERCENT_EQ] = ACTIONS(7090), + [anon_sym_PLUS_EQ] = ACTIONS(7090), + [anon_sym_DASH_EQ] = ACTIONS(7090), + [anon_sym_LT_LT_EQ] = ACTIONS(7090), + [anon_sym_GT_GT_EQ] = ACTIONS(7090), + [anon_sym_AMP_EQ] = ACTIONS(7090), + [anon_sym_CARET_EQ] = ACTIONS(7090), + [anon_sym_PIPE_EQ] = ACTIONS(7090), + [anon_sym_LT_EQ_GT] = ACTIONS(7090), + [anon_sym_or] = ACTIONS(7090), + [anon_sym_and] = ACTIONS(7090), + [anon_sym_bitor] = ACTIONS(7090), + [anon_sym_xor] = ACTIONS(7090), + [anon_sym_bitand] = ACTIONS(7090), + [anon_sym_not_eq] = ACTIONS(7090), + [anon_sym_DASH_DASH] = ACTIONS(7090), + [anon_sym_PLUS_PLUS] = ACTIONS(7090), + [anon_sym_DOT] = ACTIONS(7085), + [anon_sym_DOT_STAR] = ACTIONS(7090), + [anon_sym_DASH_GT] = ACTIONS(7085), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7090), + [anon_sym_override] = ACTIONS(7090), + [anon_sym_requires] = ACTIONS(7090), + [anon_sym_DASH_GT_STAR] = ACTIONS(7090), }, - [STATE(3383)] = { - [sym_argument_list] = STATE(3819), - [sym_initializer_list] = STATE(3819), - [sym_new_declarator] = STATE(3595), - [sym_identifier] = ACTIONS(8804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8806), - [anon_sym_COMMA] = ACTIONS(8806), - [anon_sym_RPAREN] = ACTIONS(8806), - [aux_sym_preproc_if_token2] = ACTIONS(8806), - [aux_sym_preproc_else_token1] = ACTIONS(8806), - [aux_sym_preproc_elif_token1] = ACTIONS(8804), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8806), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8806), - [anon_sym_LPAREN2] = ACTIONS(8808), - [anon_sym_DASH] = ACTIONS(8804), - [anon_sym_PLUS] = ACTIONS(8804), - [anon_sym_STAR] = ACTIONS(8804), - [anon_sym_SLASH] = ACTIONS(8804), - [anon_sym_PERCENT] = ACTIONS(8804), - [anon_sym_PIPE_PIPE] = ACTIONS(8806), - [anon_sym_AMP_AMP] = ACTIONS(8806), - [anon_sym_PIPE] = ACTIONS(8804), - [anon_sym_CARET] = ACTIONS(8804), - [anon_sym_AMP] = ACTIONS(8804), - [anon_sym_EQ_EQ] = ACTIONS(8806), - [anon_sym_BANG_EQ] = ACTIONS(8806), - [anon_sym_GT] = ACTIONS(8804), - [anon_sym_GT_EQ] = ACTIONS(8806), - [anon_sym_LT_EQ] = ACTIONS(8804), - [anon_sym_LT] = ACTIONS(8804), - [anon_sym_LT_LT] = ACTIONS(8804), - [anon_sym_GT_GT] = ACTIONS(8804), - [anon_sym_SEMI] = ACTIONS(8806), - [anon_sym___attribute__] = ACTIONS(8804), - [anon_sym___attribute] = ACTIONS(8804), - [anon_sym_COLON] = ACTIONS(8804), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8806), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_RBRACE] = ACTIONS(8806), - [anon_sym_LBRACK] = ACTIONS(8810), - [anon_sym_EQ] = ACTIONS(8804), - [anon_sym_QMARK] = ACTIONS(8806), - [anon_sym_STAR_EQ] = ACTIONS(8806), - [anon_sym_SLASH_EQ] = ACTIONS(8806), - [anon_sym_PERCENT_EQ] = ACTIONS(8806), - [anon_sym_PLUS_EQ] = ACTIONS(8806), - [anon_sym_DASH_EQ] = ACTIONS(8806), - [anon_sym_LT_LT_EQ] = ACTIONS(8806), - [anon_sym_GT_GT_EQ] = ACTIONS(8806), - [anon_sym_AMP_EQ] = ACTIONS(8806), - [anon_sym_CARET_EQ] = ACTIONS(8806), - [anon_sym_PIPE_EQ] = ACTIONS(8806), - [anon_sym_and_eq] = ACTIONS(8804), - [anon_sym_or_eq] = ACTIONS(8804), - [anon_sym_xor_eq] = ACTIONS(8804), - [anon_sym_LT_EQ_GT] = ACTIONS(8806), - [anon_sym_or] = ACTIONS(8804), - [anon_sym_and] = ACTIONS(8804), - [anon_sym_bitor] = ACTIONS(8804), - [anon_sym_xor] = ACTIONS(8804), - [anon_sym_bitand] = ACTIONS(8804), - [anon_sym_not_eq] = ACTIONS(8804), - [anon_sym_DASH_DASH] = ACTIONS(8806), - [anon_sym_PLUS_PLUS] = ACTIONS(8806), - [anon_sym_DOT] = ACTIONS(8804), - [anon_sym_DOT_STAR] = ACTIONS(8806), - [anon_sym_DASH_GT] = ACTIONS(8806), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(8806), + [STATE(2922)] = { + [sym_catch_clause] = STATE(2926), + [aux_sym_constructor_try_statement_repeat1] = STATE(2926), + [sym_identifier] = ACTIONS(3178), + [aux_sym_preproc_def_token1] = ACTIONS(3178), + [aux_sym_preproc_if_token1] = ACTIONS(3178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3178), + [sym_preproc_directive] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3180), + [anon_sym_TILDE] = ACTIONS(3180), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_AMP_AMP] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym___extension__] = ACTIONS(3178), + [anon_sym_typedef] = ACTIONS(3178), + [anon_sym_virtual] = ACTIONS(3178), + [anon_sym_extern] = ACTIONS(3178), + [anon_sym___attribute__] = ACTIONS(3178), + [anon_sym___attribute] = ACTIONS(3178), + [anon_sym_using] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3180), + [anon_sym___declspec] = ACTIONS(3178), + [anon_sym___based] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3180), + [anon_sym_signed] = ACTIONS(3178), + [anon_sym_unsigned] = ACTIONS(3178), + [anon_sym_long] = ACTIONS(3178), + [anon_sym_short] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_static] = ACTIONS(3178), + [anon_sym_register] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym___inline] = ACTIONS(3178), + [anon_sym___inline__] = ACTIONS(3178), + [anon_sym___forceinline] = ACTIONS(3178), + [anon_sym_thread_local] = ACTIONS(3178), + [anon_sym___thread] = ACTIONS(3178), + [anon_sym_const] = ACTIONS(3178), + [anon_sym_constexpr] = ACTIONS(3178), + [anon_sym_volatile] = ACTIONS(3178), + [anon_sym_restrict] = ACTIONS(3178), + [anon_sym___restrict__] = ACTIONS(3178), + [anon_sym__Atomic] = ACTIONS(3178), + [anon_sym__Noreturn] = ACTIONS(3178), + [anon_sym_noreturn] = ACTIONS(3178), + [anon_sym__Nonnull] = ACTIONS(3178), + [anon_sym_mutable] = ACTIONS(3178), + [anon_sym_constinit] = ACTIONS(3178), + [anon_sym_consteval] = ACTIONS(3178), + [anon_sym_alignas] = ACTIONS(3178), + [anon_sym__Alignas] = ACTIONS(3178), + [sym_primitive_type] = ACTIONS(3178), + [anon_sym_enum] = ACTIONS(3178), + [anon_sym_class] = ACTIONS(3178), + [anon_sym_struct] = ACTIONS(3178), + [anon_sym_union] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3178), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3178), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_explicit] = ACTIONS(3178), + [anon_sym_private] = ACTIONS(3178), + [anon_sym_template] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_friend] = ACTIONS(3178), + [anon_sym_public] = ACTIONS(3178), + [anon_sym_protected] = ACTIONS(3178), + [anon_sym_static_assert] = ACTIONS(3178), + [anon_sym_catch] = ACTIONS(8841), + [anon_sym_LBRACK_COLON] = ACTIONS(3180), }, - [STATE(3384)] = { - [sym__abstract_declarator] = STATE(6229), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(3397), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(1970), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(3397), - [sym_identifier] = ACTIONS(6993), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), - [anon_sym_COMMA] = ACTIONS(6991), - [aux_sym_preproc_if_token2] = ACTIONS(6991), - [aux_sym_preproc_else_token1] = ACTIONS(6991), - [aux_sym_preproc_elif_token1] = ACTIONS(6993), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6991), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6991), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6993), - [anon_sym_PLUS] = ACTIONS(6993), - [anon_sym_STAR] = ACTIONS(8081), - [anon_sym_SLASH] = ACTIONS(6993), - [anon_sym_PERCENT] = ACTIONS(6991), - [anon_sym_PIPE_PIPE] = ACTIONS(6991), - [anon_sym_AMP_AMP] = ACTIONS(8083), - [anon_sym_PIPE] = ACTIONS(6993), - [anon_sym_CARET] = ACTIONS(6991), - [anon_sym_AMP] = ACTIONS(8085), - [anon_sym_EQ_EQ] = ACTIONS(6991), - [anon_sym_BANG_EQ] = ACTIONS(6991), - [anon_sym_GT] = ACTIONS(6993), - [anon_sym_GT_EQ] = ACTIONS(6991), - [anon_sym_LT_EQ] = ACTIONS(6993), - [anon_sym_LT] = ACTIONS(6993), - [anon_sym_LT_LT] = ACTIONS(6991), - [anon_sym_GT_GT] = ACTIONS(6991), - [anon_sym___extension__] = ACTIONS(7739), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(7739), - [anon_sym_volatile] = ACTIONS(7739), - [anon_sym_restrict] = ACTIONS(7739), - [anon_sym___restrict__] = ACTIONS(7739), - [anon_sym__Atomic] = ACTIONS(7739), - [anon_sym__Noreturn] = ACTIONS(7739), - [anon_sym_noreturn] = ACTIONS(7739), - [anon_sym__Nonnull] = ACTIONS(7739), - [anon_sym_mutable] = ACTIONS(7739), - [anon_sym_constinit] = ACTIONS(7739), - [anon_sym_consteval] = ACTIONS(7739), - [anon_sym_alignas] = ACTIONS(7747), - [anon_sym__Alignas] = ACTIONS(7747), - [anon_sym_QMARK] = ACTIONS(6991), - [anon_sym_LT_EQ_GT] = ACTIONS(6991), - [anon_sym_or] = ACTIONS(6993), - [anon_sym_and] = ACTIONS(6993), - [anon_sym_bitor] = ACTIONS(6993), - [anon_sym_xor] = ACTIONS(6993), - [anon_sym_bitand] = ACTIONS(6993), - [anon_sym_not_eq] = ACTIONS(6993), - [anon_sym_DASH_DASH] = ACTIONS(6991), - [anon_sym_PLUS_PLUS] = ACTIONS(6991), - [anon_sym_DOT] = ACTIONS(6993), - [anon_sym_DOT_STAR] = ACTIONS(6991), - [anon_sym_DASH_GT] = ACTIONS(6991), + [STATE(2923)] = { + [sym_type_qualifier] = STATE(2488), + [sym_alignas_qualifier] = STATE(2726), + [aux_sym__type_definition_type_repeat1] = STATE(2488), + [aux_sym_sized_type_specifier_repeat1] = STATE(3303), + [sym_identifier] = ACTIONS(8861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), + [anon_sym_COMMA] = ACTIONS(7205), + [aux_sym_preproc_if_token2] = ACTIONS(7205), + [aux_sym_preproc_else_token1] = ACTIONS(7205), + [aux_sym_preproc_elif_token1] = ACTIONS(7207), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7205), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7205), + [anon_sym_LPAREN2] = ACTIONS(7205), + [anon_sym_DASH] = ACTIONS(7207), + [anon_sym_PLUS] = ACTIONS(7207), + [anon_sym_STAR] = ACTIONS(7205), + [anon_sym_SLASH] = ACTIONS(7207), + [anon_sym_PERCENT] = ACTIONS(7205), + [anon_sym_PIPE_PIPE] = ACTIONS(7205), + [anon_sym_AMP_AMP] = ACTIONS(7205), + [anon_sym_PIPE] = ACTIONS(7207), + [anon_sym_CARET] = ACTIONS(7205), + [anon_sym_AMP] = ACTIONS(7207), + [anon_sym_EQ_EQ] = ACTIONS(7205), + [anon_sym_BANG_EQ] = ACTIONS(7205), + [anon_sym_GT] = ACTIONS(7207), + [anon_sym_GT_EQ] = ACTIONS(7205), + [anon_sym_LT_EQ] = ACTIONS(7207), + [anon_sym_LT] = ACTIONS(7207), + [anon_sym_LT_LT] = ACTIONS(7205), + [anon_sym_GT_GT] = ACTIONS(7205), + [anon_sym___extension__] = ACTIONS(8716), + [anon_sym___attribute__] = ACTIONS(7207), + [anon_sym___attribute] = ACTIONS(7207), + [anon_sym_LBRACE] = ACTIONS(7205), + [anon_sym_signed] = ACTIONS(8864), + [anon_sym_unsigned] = ACTIONS(8864), + [anon_sym_long] = ACTIONS(8864), + [anon_sym_short] = ACTIONS(8864), + [anon_sym_LBRACK] = ACTIONS(7205), + [anon_sym_const] = ACTIONS(8716), + [anon_sym_constexpr] = ACTIONS(8716), + [anon_sym_volatile] = ACTIONS(8716), + [anon_sym_restrict] = ACTIONS(8716), + [anon_sym___restrict__] = ACTIONS(8716), + [anon_sym__Atomic] = ACTIONS(8716), + [anon_sym__Noreturn] = ACTIONS(8716), + [anon_sym_noreturn] = ACTIONS(8716), + [anon_sym__Nonnull] = ACTIONS(8716), + [anon_sym_mutable] = ACTIONS(8716), + [anon_sym_constinit] = ACTIONS(8716), + [anon_sym_consteval] = ACTIONS(8716), + [anon_sym_alignas] = ACTIONS(8721), + [anon_sym__Alignas] = ACTIONS(8721), + [sym_primitive_type] = ACTIONS(8866), + [anon_sym_QMARK] = ACTIONS(7205), + [anon_sym_LT_EQ_GT] = ACTIONS(7205), + [anon_sym_or] = ACTIONS(7207), + [anon_sym_and] = ACTIONS(7207), + [anon_sym_bitor] = ACTIONS(7207), + [anon_sym_xor] = ACTIONS(7207), + [anon_sym_bitand] = ACTIONS(7207), + [anon_sym_not_eq] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7205), + [anon_sym_PLUS_PLUS] = ACTIONS(7205), + [anon_sym_DOT] = ACTIONS(7207), + [anon_sym_DOT_STAR] = ACTIONS(7205), + [anon_sym_DASH_GT] = ACTIONS(7205), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7207), + [anon_sym_override] = ACTIONS(7207), + [anon_sym_requires] = ACTIONS(7207), }, - [STATE(3385)] = { - [sym_attribute_specifier] = STATE(4374), - [sym_attribute_declaration] = STATE(4622), - [sym_gnu_asm_expression] = STATE(8992), - [sym_virtual_specifier] = STATE(4709), - [sym_ref_qualifier] = STATE(3512), - [sym__function_exception_specification] = STATE(3993), - [sym__function_attributes_end] = STATE(5837), - [sym__function_postfix] = STATE(5258), - [sym_trailing_return_type] = STATE(5711), - [sym_noexcept] = STATE(3993), - [sym_throw_specifier] = STATE(3993), - [sym_requires_clause] = STATE(5258), - [aux_sym_type_definition_repeat1] = STATE(4374), - [aux_sym_attributed_declarator_repeat1] = STATE(4622), - [aux_sym__function_postfix_repeat1] = STATE(4709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7544), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7544), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(8812), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7544), - [anon_sym_AMP] = ACTIONS(8815), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7544), - [anon_sym_GT_GT] = ACTIONS(7544), - [anon_sym_SEMI] = ACTIONS(7544), - [anon_sym___attribute__] = ACTIONS(6906), - [anon_sym___attribute] = ACTIONS(6859), - [anon_sym_COLON] = ACTIONS(7546), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), - [anon_sym_RBRACE] = ACTIONS(7544), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7544), - [anon_sym_and] = ACTIONS(7544), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7544), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(8818), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8821), - [anon_sym_override] = ACTIONS(8821), - [anon_sym_noexcept] = ACTIONS(6915), - [anon_sym_throw] = ACTIONS(6917), - [anon_sym_requires] = ACTIONS(8824), - [anon_sym_COLON_RBRACK] = ACTIONS(7544), - }, - [STATE(3386)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7331), - [anon_sym_COMMA] = ACTIONS(7331), - [anon_sym_RPAREN] = ACTIONS(7331), - [anon_sym_LPAREN2] = ACTIONS(7331), - [anon_sym_DASH] = ACTIONS(7329), - [anon_sym_PLUS] = ACTIONS(7329), - [anon_sym_STAR] = ACTIONS(7329), - [anon_sym_SLASH] = ACTIONS(7329), - [anon_sym_PERCENT] = ACTIONS(7329), - [anon_sym_PIPE_PIPE] = ACTIONS(7331), - [anon_sym_AMP_AMP] = ACTIONS(7331), - [anon_sym_PIPE] = ACTIONS(7329), - [anon_sym_CARET] = ACTIONS(7329), - [anon_sym_AMP] = ACTIONS(7329), - [anon_sym_EQ_EQ] = ACTIONS(7331), - [anon_sym_BANG_EQ] = ACTIONS(7331), - [anon_sym_GT] = ACTIONS(7329), - [anon_sym_GT_EQ] = ACTIONS(7331), - [anon_sym_LT_EQ] = ACTIONS(7329), - [anon_sym_LT] = ACTIONS(7329), - [anon_sym_LT_LT] = ACTIONS(7329), - [anon_sym_GT_GT] = ACTIONS(7329), - [anon_sym___extension__] = ACTIONS(7331), - [anon_sym_LBRACE] = ACTIONS(7331), - [anon_sym_LBRACK] = ACTIONS(7331), - [anon_sym_EQ] = ACTIONS(7329), - [anon_sym_const] = ACTIONS(7329), - [anon_sym_constexpr] = ACTIONS(7331), - [anon_sym_volatile] = ACTIONS(7331), - [anon_sym_restrict] = ACTIONS(7331), - [anon_sym___restrict__] = ACTIONS(7331), - [anon_sym__Atomic] = ACTIONS(7331), - [anon_sym__Noreturn] = ACTIONS(7331), - [anon_sym_noreturn] = ACTIONS(7331), - [anon_sym__Nonnull] = ACTIONS(7331), - [anon_sym_mutable] = ACTIONS(7331), - [anon_sym_constinit] = ACTIONS(7331), - [anon_sym_consteval] = ACTIONS(7331), - [anon_sym_alignas] = ACTIONS(7331), - [anon_sym__Alignas] = ACTIONS(7331), - [anon_sym_QMARK] = ACTIONS(7331), - [anon_sym_STAR_EQ] = ACTIONS(7331), - [anon_sym_SLASH_EQ] = ACTIONS(7331), - [anon_sym_PERCENT_EQ] = ACTIONS(7331), - [anon_sym_PLUS_EQ] = ACTIONS(7331), - [anon_sym_DASH_EQ] = ACTIONS(7331), - [anon_sym_LT_LT_EQ] = ACTIONS(7331), - [anon_sym_GT_GT_EQ] = ACTIONS(7331), - [anon_sym_AMP_EQ] = ACTIONS(7331), - [anon_sym_CARET_EQ] = ACTIONS(7331), - [anon_sym_PIPE_EQ] = ACTIONS(7331), - [anon_sym_LT_EQ_GT] = ACTIONS(7331), - [anon_sym_or] = ACTIONS(7331), - [anon_sym_and] = ACTIONS(7331), - [anon_sym_bitor] = ACTIONS(7331), - [anon_sym_xor] = ACTIONS(7331), - [anon_sym_bitand] = ACTIONS(7331), - [anon_sym_not_eq] = ACTIONS(7331), - [anon_sym_DASH_DASH] = ACTIONS(7331), - [anon_sym_PLUS_PLUS] = ACTIONS(7331), - [anon_sym_DOT] = ACTIONS(7329), - [anon_sym_DOT_STAR] = ACTIONS(7331), - [anon_sym_DASH_GT] = ACTIONS(7329), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7331), - [anon_sym_override] = ACTIONS(7331), - [anon_sym_requires] = ACTIONS(7331), - [anon_sym_DASH_GT_STAR] = ACTIONS(7331), + [STATE(2924)] = { + [sym_catch_clause] = STATE(2912), + [aux_sym_constructor_try_statement_repeat1] = STATE(2912), + [sym_identifier] = ACTIONS(3178), + [aux_sym_preproc_def_token1] = ACTIONS(3178), + [aux_sym_preproc_if_token1] = ACTIONS(3178), + [aux_sym_preproc_if_token2] = ACTIONS(3178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3178), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3178), + [sym_preproc_directive] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3180), + [anon_sym_TILDE] = ACTIONS(3180), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_AMP_AMP] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym___extension__] = ACTIONS(3178), + [anon_sym_typedef] = ACTIONS(3178), + [anon_sym_virtual] = ACTIONS(3178), + [anon_sym_extern] = ACTIONS(3178), + [anon_sym___attribute__] = ACTIONS(3178), + [anon_sym___attribute] = ACTIONS(3178), + [anon_sym_using] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3180), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3180), + [anon_sym___declspec] = ACTIONS(3178), + [anon_sym___based] = ACTIONS(3178), + [anon_sym_signed] = ACTIONS(3178), + [anon_sym_unsigned] = ACTIONS(3178), + [anon_sym_long] = ACTIONS(3178), + [anon_sym_short] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_static] = ACTIONS(3178), + [anon_sym_register] = ACTIONS(3178), + [anon_sym_inline] = ACTIONS(3178), + [anon_sym___inline] = ACTIONS(3178), + [anon_sym___inline__] = ACTIONS(3178), + [anon_sym___forceinline] = ACTIONS(3178), + [anon_sym_thread_local] = ACTIONS(3178), + [anon_sym___thread] = ACTIONS(3178), + [anon_sym_const] = ACTIONS(3178), + [anon_sym_constexpr] = ACTIONS(3178), + [anon_sym_volatile] = ACTIONS(3178), + [anon_sym_restrict] = ACTIONS(3178), + [anon_sym___restrict__] = ACTIONS(3178), + [anon_sym__Atomic] = ACTIONS(3178), + [anon_sym__Noreturn] = ACTIONS(3178), + [anon_sym_noreturn] = ACTIONS(3178), + [anon_sym__Nonnull] = ACTIONS(3178), + [anon_sym_mutable] = ACTIONS(3178), + [anon_sym_constinit] = ACTIONS(3178), + [anon_sym_consteval] = ACTIONS(3178), + [anon_sym_alignas] = ACTIONS(3178), + [anon_sym__Alignas] = ACTIONS(3178), + [sym_primitive_type] = ACTIONS(3178), + [anon_sym_enum] = ACTIONS(3178), + [anon_sym_class] = ACTIONS(3178), + [anon_sym_struct] = ACTIONS(3178), + [anon_sym_union] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3178), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3178), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_explicit] = ACTIONS(3178), + [anon_sym_private] = ACTIONS(3178), + [anon_sym_template] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_friend] = ACTIONS(3178), + [anon_sym_public] = ACTIONS(3178), + [anon_sym_protected] = ACTIONS(3178), + [anon_sym_static_assert] = ACTIONS(3178), + [anon_sym_catch] = ACTIONS(8843), + [anon_sym_LBRACK_COLON] = ACTIONS(3180), }, - [STATE(3387)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), - [anon_sym_COMMA] = ACTIONS(7237), - [anon_sym_RPAREN] = ACTIONS(7237), - [anon_sym_LPAREN2] = ACTIONS(7237), - [anon_sym_DASH] = ACTIONS(7235), - [anon_sym_PLUS] = ACTIONS(7235), - [anon_sym_STAR] = ACTIONS(7235), - [anon_sym_SLASH] = ACTIONS(7235), - [anon_sym_PERCENT] = ACTIONS(7235), - [anon_sym_PIPE_PIPE] = ACTIONS(7237), - [anon_sym_AMP_AMP] = ACTIONS(7237), - [anon_sym_PIPE] = ACTIONS(7235), - [anon_sym_CARET] = ACTIONS(7235), - [anon_sym_AMP] = ACTIONS(7235), - [anon_sym_EQ_EQ] = ACTIONS(7237), - [anon_sym_BANG_EQ] = ACTIONS(7237), - [anon_sym_GT] = ACTIONS(7235), - [anon_sym_GT_EQ] = ACTIONS(7237), - [anon_sym_LT_EQ] = ACTIONS(7235), - [anon_sym_LT] = ACTIONS(7235), - [anon_sym_LT_LT] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7235), - [anon_sym___extension__] = ACTIONS(7237), - [anon_sym_LBRACE] = ACTIONS(7237), - [anon_sym_LBRACK] = ACTIONS(7237), - [anon_sym_EQ] = ACTIONS(7235), - [anon_sym_const] = ACTIONS(7235), - [anon_sym_constexpr] = ACTIONS(7237), - [anon_sym_volatile] = ACTIONS(7237), - [anon_sym_restrict] = ACTIONS(7237), - [anon_sym___restrict__] = ACTIONS(7237), - [anon_sym__Atomic] = ACTIONS(7237), - [anon_sym__Noreturn] = ACTIONS(7237), - [anon_sym_noreturn] = ACTIONS(7237), - [anon_sym__Nonnull] = ACTIONS(7237), - [anon_sym_mutable] = ACTIONS(7237), - [anon_sym_constinit] = ACTIONS(7237), - [anon_sym_consteval] = ACTIONS(7237), - [anon_sym_alignas] = ACTIONS(7237), - [anon_sym__Alignas] = ACTIONS(7237), - [anon_sym_QMARK] = ACTIONS(7237), - [anon_sym_STAR_EQ] = ACTIONS(7237), - [anon_sym_SLASH_EQ] = ACTIONS(7237), - [anon_sym_PERCENT_EQ] = ACTIONS(7237), - [anon_sym_PLUS_EQ] = ACTIONS(7237), - [anon_sym_DASH_EQ] = ACTIONS(7237), - [anon_sym_LT_LT_EQ] = ACTIONS(7237), - [anon_sym_GT_GT_EQ] = ACTIONS(7237), - [anon_sym_AMP_EQ] = ACTIONS(7237), - [anon_sym_CARET_EQ] = ACTIONS(7237), - [anon_sym_PIPE_EQ] = ACTIONS(7237), - [anon_sym_LT_EQ_GT] = ACTIONS(7237), - [anon_sym_or] = ACTIONS(7237), - [anon_sym_and] = ACTIONS(7237), - [anon_sym_bitor] = ACTIONS(7237), - [anon_sym_xor] = ACTIONS(7237), - [anon_sym_bitand] = ACTIONS(7237), - [anon_sym_not_eq] = ACTIONS(7237), - [anon_sym_DASH_DASH] = ACTIONS(7237), - [anon_sym_PLUS_PLUS] = ACTIONS(7237), - [anon_sym_DOT] = ACTIONS(7235), - [anon_sym_DOT_STAR] = ACTIONS(7237), - [anon_sym_DASH_GT] = ACTIONS(7235), + [STATE(2925)] = { + [sym_template_argument_list] = STATE(2985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6569), + [anon_sym_COMMA] = ACTIONS(6569), + [anon_sym_RPAREN] = ACTIONS(6569), + [anon_sym_LPAREN2] = ACTIONS(6569), + [anon_sym_DASH] = ACTIONS(6576), + [anon_sym_PLUS] = ACTIONS(6576), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(6576), + [anon_sym_PERCENT] = ACTIONS(6576), + [anon_sym_PIPE_PIPE] = ACTIONS(6569), + [anon_sym_AMP_AMP] = ACTIONS(6569), + [anon_sym_PIPE] = ACTIONS(6576), + [anon_sym_CARET] = ACTIONS(6576), + [anon_sym_AMP] = ACTIONS(6576), + [anon_sym_EQ_EQ] = ACTIONS(6569), + [anon_sym_BANG_EQ] = ACTIONS(6569), + [anon_sym_GT] = ACTIONS(6576), + [anon_sym_GT_EQ] = ACTIONS(6569), + [anon_sym_LT_EQ] = ACTIONS(6576), + [anon_sym_LT] = ACTIONS(8857), + [anon_sym_LT_LT] = ACTIONS(6576), + [anon_sym_GT_GT] = ACTIONS(6576), + [anon_sym___extension__] = ACTIONS(6572), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(6572), + [anon_sym_LBRACK] = ACTIONS(6569), + [anon_sym_EQ] = ACTIONS(6576), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_constexpr] = ACTIONS(6572), + [anon_sym_volatile] = ACTIONS(6572), + [anon_sym_restrict] = ACTIONS(6572), + [anon_sym___restrict__] = ACTIONS(6572), + [anon_sym__Atomic] = ACTIONS(6572), + [anon_sym__Noreturn] = ACTIONS(6572), + [anon_sym_noreturn] = ACTIONS(6572), + [anon_sym__Nonnull] = ACTIONS(6572), + [anon_sym_mutable] = ACTIONS(6572), + [anon_sym_constinit] = ACTIONS(6572), + [anon_sym_consteval] = ACTIONS(6572), + [anon_sym_alignas] = ACTIONS(6572), + [anon_sym__Alignas] = ACTIONS(6572), + [anon_sym_QMARK] = ACTIONS(6569), + [anon_sym_STAR_EQ] = ACTIONS(6569), + [anon_sym_SLASH_EQ] = ACTIONS(6569), + [anon_sym_PERCENT_EQ] = ACTIONS(6569), + [anon_sym_PLUS_EQ] = ACTIONS(6569), + [anon_sym_DASH_EQ] = ACTIONS(6569), + [anon_sym_LT_LT_EQ] = ACTIONS(6569), + [anon_sym_GT_GT_EQ] = ACTIONS(6569), + [anon_sym_AMP_EQ] = ACTIONS(6569), + [anon_sym_CARET_EQ] = ACTIONS(6569), + [anon_sym_PIPE_EQ] = ACTIONS(6569), + [anon_sym_and_eq] = ACTIONS(6569), + [anon_sym_or_eq] = ACTIONS(6569), + [anon_sym_xor_eq] = ACTIONS(6569), + [anon_sym_LT_EQ_GT] = ACTIONS(6569), + [anon_sym_or] = ACTIONS(6576), + [anon_sym_and] = ACTIONS(6576), + [anon_sym_bitor] = ACTIONS(6569), + [anon_sym_xor] = ACTIONS(6576), + [anon_sym_bitand] = ACTIONS(6569), + [anon_sym_not_eq] = ACTIONS(6569), + [anon_sym_DASH_DASH] = ACTIONS(6569), + [anon_sym_PLUS_PLUS] = ACTIONS(6569), + [anon_sym_DOT] = ACTIONS(6576), + [anon_sym_DOT_STAR] = ACTIONS(6569), + [anon_sym_DASH_GT] = ACTIONS(6576), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7237), - [anon_sym_override] = ACTIONS(7237), - [anon_sym_requires] = ACTIONS(7237), - [anon_sym_DASH_GT_STAR] = ACTIONS(7237), - }, - [STATE(3388)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7247), - [anon_sym_COMMA] = ACTIONS(7247), - [anon_sym_RPAREN] = ACTIONS(7247), - [anon_sym_LPAREN2] = ACTIONS(7247), - [anon_sym_DASH] = ACTIONS(7245), - [anon_sym_PLUS] = ACTIONS(7245), - [anon_sym_STAR] = ACTIONS(7245), - [anon_sym_SLASH] = ACTIONS(7245), - [anon_sym_PERCENT] = ACTIONS(7245), - [anon_sym_PIPE_PIPE] = ACTIONS(7247), - [anon_sym_AMP_AMP] = ACTIONS(7247), - [anon_sym_PIPE] = ACTIONS(7245), - [anon_sym_CARET] = ACTIONS(7245), - [anon_sym_AMP] = ACTIONS(7245), - [anon_sym_EQ_EQ] = ACTIONS(7247), - [anon_sym_BANG_EQ] = ACTIONS(7247), - [anon_sym_GT] = ACTIONS(7245), - [anon_sym_GT_EQ] = ACTIONS(7247), - [anon_sym_LT_EQ] = ACTIONS(7245), - [anon_sym_LT] = ACTIONS(7245), - [anon_sym_LT_LT] = ACTIONS(7245), - [anon_sym_GT_GT] = ACTIONS(7245), - [anon_sym___extension__] = ACTIONS(7247), - [anon_sym_LBRACE] = ACTIONS(7247), - [anon_sym_LBRACK] = ACTIONS(7247), - [anon_sym_EQ] = ACTIONS(7245), - [anon_sym_const] = ACTIONS(7245), - [anon_sym_constexpr] = ACTIONS(7247), - [anon_sym_volatile] = ACTIONS(7247), - [anon_sym_restrict] = ACTIONS(7247), - [anon_sym___restrict__] = ACTIONS(7247), - [anon_sym__Atomic] = ACTIONS(7247), - [anon_sym__Noreturn] = ACTIONS(7247), - [anon_sym_noreturn] = ACTIONS(7247), - [anon_sym__Nonnull] = ACTIONS(7247), - [anon_sym_mutable] = ACTIONS(7247), - [anon_sym_constinit] = ACTIONS(7247), - [anon_sym_consteval] = ACTIONS(7247), - [anon_sym_alignas] = ACTIONS(7247), - [anon_sym__Alignas] = ACTIONS(7247), - [anon_sym_QMARK] = ACTIONS(7247), - [anon_sym_STAR_EQ] = ACTIONS(7247), - [anon_sym_SLASH_EQ] = ACTIONS(7247), - [anon_sym_PERCENT_EQ] = ACTIONS(7247), - [anon_sym_PLUS_EQ] = ACTIONS(7247), - [anon_sym_DASH_EQ] = ACTIONS(7247), - [anon_sym_LT_LT_EQ] = ACTIONS(7247), - [anon_sym_GT_GT_EQ] = ACTIONS(7247), - [anon_sym_AMP_EQ] = ACTIONS(7247), - [anon_sym_CARET_EQ] = ACTIONS(7247), - [anon_sym_PIPE_EQ] = ACTIONS(7247), - [anon_sym_LT_EQ_GT] = ACTIONS(7247), - [anon_sym_or] = ACTIONS(7247), - [anon_sym_and] = ACTIONS(7247), - [anon_sym_bitor] = ACTIONS(7247), - [anon_sym_xor] = ACTIONS(7247), - [anon_sym_bitand] = ACTIONS(7247), - [anon_sym_not_eq] = ACTIONS(7247), - [anon_sym_DASH_DASH] = ACTIONS(7247), - [anon_sym_PLUS_PLUS] = ACTIONS(7247), - [anon_sym_DOT] = ACTIONS(7245), - [anon_sym_DOT_STAR] = ACTIONS(7247), - [anon_sym_DASH_GT] = ACTIONS(7245), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7247), - [anon_sym_override] = ACTIONS(7247), - [anon_sym_requires] = ACTIONS(7247), - [anon_sym_DASH_GT_STAR] = ACTIONS(7247), - }, - [STATE(3389)] = { - [sym__abstract_declarator] = STATE(6201), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(3432), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(2157), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(3432), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), - [anon_sym_COMMA] = ACTIONS(6991), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6993), - [anon_sym_PLUS] = ACTIONS(6993), - [anon_sym_STAR] = ACTIONS(8108), - [anon_sym_SLASH] = ACTIONS(6993), - [anon_sym_PERCENT] = ACTIONS(6991), - [anon_sym_PIPE_PIPE] = ACTIONS(6991), - [anon_sym_AMP_AMP] = ACTIONS(8110), - [anon_sym_PIPE] = ACTIONS(6993), - [anon_sym_CARET] = ACTIONS(6991), - [anon_sym_AMP] = ACTIONS(8112), - [anon_sym_EQ_EQ] = ACTIONS(6991), - [anon_sym_BANG_EQ] = ACTIONS(6991), - [anon_sym_GT] = ACTIONS(6993), - [anon_sym_GT_EQ] = ACTIONS(6991), - [anon_sym_LT_EQ] = ACTIONS(6993), - [anon_sym_LT] = ACTIONS(6993), - [anon_sym_LT_LT] = ACTIONS(6991), - [anon_sym_GT_GT] = ACTIONS(6991), - [anon_sym_SEMI] = ACTIONS(6991), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym___attribute__] = ACTIONS(6991), - [anon_sym___attribute] = ACTIONS(6993), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(6991), - [anon_sym_LT_EQ_GT] = ACTIONS(6991), - [anon_sym_or] = ACTIONS(6991), - [anon_sym_and] = ACTIONS(6991), - [anon_sym_bitor] = ACTIONS(6991), - [anon_sym_xor] = ACTIONS(6991), - [anon_sym_bitand] = ACTIONS(6991), - [anon_sym_not_eq] = ACTIONS(6991), - [anon_sym_DASH_DASH] = ACTIONS(6991), - [anon_sym_PLUS_PLUS] = ACTIONS(6991), - [anon_sym_DOT] = ACTIONS(6993), - [anon_sym_DOT_STAR] = ACTIONS(6991), - [anon_sym_DASH_GT] = ACTIONS(6991), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6991), - [anon_sym_override] = ACTIONS(6991), - [anon_sym_requires] = ACTIONS(6991), - }, - [STATE(3390)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6800), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6800), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6800), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6800), - [anon_sym_GT_GT] = ACTIONS(6800), - [anon_sym_SEMI] = ACTIONS(6800), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym___attribute__] = ACTIONS(6800), - [anon_sym___attribute] = ACTIONS(6798), - [anon_sym_COLON] = ACTIONS(6798), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_RBRACE] = ACTIONS(6800), - [anon_sym_signed] = ACTIONS(8827), - [anon_sym_unsigned] = ACTIONS(8827), - [anon_sym_long] = ACTIONS(8827), - [anon_sym_short] = ACTIONS(8827), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6800), - [anon_sym_and] = ACTIONS(6800), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6800), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6800), - [anon_sym_override] = ACTIONS(6800), - [anon_sym_requires] = ACTIONS(6800), - [anon_sym_COLON_RBRACK] = ACTIONS(6800), - }, - [STATE(3391)] = { - [sym_argument_list] = STATE(5523), - [sym_initializer_list] = STATE(5932), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(8167), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6800), - [anon_sym_and] = ACTIONS(6800), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6800), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6798), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6800), - }, - [STATE(3392)] = { - [sym_string_literal] = STATE(3557), - [sym_template_argument_list] = STATE(5009), - [sym_raw_string_literal] = STATE(3557), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_RPAREN] = ACTIONS(8829), - [anon_sym_LPAREN2] = ACTIONS(8829), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(6610), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8829), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(8831), - [anon_sym_EQ] = ACTIONS(5260), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5253), - [anon_sym_SLASH_EQ] = ACTIONS(5253), - [anon_sym_PERCENT_EQ] = ACTIONS(5253), - [anon_sym_PLUS_EQ] = ACTIONS(5253), - [anon_sym_DASH_EQ] = ACTIONS(5253), - [anon_sym_LT_LT_EQ] = ACTIONS(5253), - [anon_sym_GT_GT_EQ] = ACTIONS(5253), - [anon_sym_AMP_EQ] = ACTIONS(5253), - [anon_sym_CARET_EQ] = ACTIONS(5253), - [anon_sym_PIPE_EQ] = ACTIONS(5253), - [anon_sym_and_eq] = ACTIONS(5253), - [anon_sym_or_eq] = ACTIONS(5253), - [anon_sym_xor_eq] = ACTIONS(5253), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5260), - [anon_sym_L_DQUOTE] = ACTIONS(6517), - [anon_sym_u_DQUOTE] = ACTIONS(6517), - [anon_sym_U_DQUOTE] = ACTIONS(6517), - [anon_sym_u8_DQUOTE] = ACTIONS(6517), - [anon_sym_DQUOTE] = ACTIONS(6517), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6519), - [anon_sym_LR_DQUOTE] = ACTIONS(6519), - [anon_sym_uR_DQUOTE] = ACTIONS(6519), - [anon_sym_UR_DQUOTE] = ACTIONS(6519), - [anon_sym_u8R_DQUOTE] = ACTIONS(6519), - [anon_sym_DASH_GT_STAR] = ACTIONS(5253), + [sym_auto] = ACTIONS(6572), + [anon_sym_decltype] = ACTIONS(6572), + [anon_sym_DASH_GT_STAR] = ACTIONS(6569), }, - [STATE(3393)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7404), - [anon_sym_COMMA] = ACTIONS(7404), - [anon_sym_RPAREN] = ACTIONS(7404), - [anon_sym_LPAREN2] = ACTIONS(7404), - [anon_sym_DASH] = ACTIONS(7402), - [anon_sym_PLUS] = ACTIONS(7402), - [anon_sym_STAR] = ACTIONS(7404), - [anon_sym_SLASH] = ACTIONS(7402), - [anon_sym_PERCENT] = ACTIONS(7404), - [anon_sym_PIPE_PIPE] = ACTIONS(7404), - [anon_sym_AMP_AMP] = ACTIONS(7404), - [anon_sym_PIPE] = ACTIONS(7402), - [anon_sym_CARET] = ACTIONS(7404), - [anon_sym_AMP] = ACTIONS(7402), - [anon_sym_EQ_EQ] = ACTIONS(7404), - [anon_sym_BANG_EQ] = ACTIONS(7404), - [anon_sym_GT] = ACTIONS(7402), - [anon_sym_GT_EQ] = ACTIONS(7404), - [anon_sym_LT_EQ] = ACTIONS(7402), - [anon_sym_LT] = ACTIONS(7402), - [anon_sym_LT_LT] = ACTIONS(7404), - [anon_sym_GT_GT] = ACTIONS(7404), - [anon_sym_SEMI] = ACTIONS(7404), - [anon_sym___extension__] = ACTIONS(7404), - [anon_sym___attribute__] = ACTIONS(7404), - [anon_sym___attribute] = ACTIONS(7402), - [anon_sym_COLON] = ACTIONS(7402), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7404), - [anon_sym_LBRACE] = ACTIONS(7404), - [anon_sym_RBRACE] = ACTIONS(7404), - [anon_sym_signed] = ACTIONS(8833), - [anon_sym_unsigned] = ACTIONS(8833), - [anon_sym_long] = ACTIONS(8833), - [anon_sym_short] = ACTIONS(8833), - [anon_sym_LBRACK] = ACTIONS(7404), - [anon_sym_const] = ACTIONS(7402), - [anon_sym_constexpr] = ACTIONS(7404), - [anon_sym_volatile] = ACTIONS(7404), - [anon_sym_restrict] = ACTIONS(7404), - [anon_sym___restrict__] = ACTIONS(7404), - [anon_sym__Atomic] = ACTIONS(7404), - [anon_sym__Noreturn] = ACTIONS(7404), - [anon_sym_noreturn] = ACTIONS(7404), - [anon_sym__Nonnull] = ACTIONS(7404), - [anon_sym_mutable] = ACTIONS(7404), - [anon_sym_constinit] = ACTIONS(7404), - [anon_sym_consteval] = ACTIONS(7404), - [anon_sym_alignas] = ACTIONS(7404), - [anon_sym__Alignas] = ACTIONS(7404), - [anon_sym_QMARK] = ACTIONS(7404), - [anon_sym_LT_EQ_GT] = ACTIONS(7404), - [anon_sym_or] = ACTIONS(7404), - [anon_sym_and] = ACTIONS(7404), - [anon_sym_bitor] = ACTIONS(7404), - [anon_sym_xor] = ACTIONS(7404), - [anon_sym_bitand] = ACTIONS(7404), - [anon_sym_not_eq] = ACTIONS(7404), - [anon_sym_DASH_DASH] = ACTIONS(7404), - [anon_sym_PLUS_PLUS] = ACTIONS(7404), - [anon_sym_DOT] = ACTIONS(7402), - [anon_sym_DOT_STAR] = ACTIONS(7404), - [anon_sym_DASH_GT] = ACTIONS(7404), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7404), - [anon_sym_override] = ACTIONS(7404), - [anon_sym_requires] = ACTIONS(7404), - [anon_sym_COLON_RBRACK] = ACTIONS(7404), + [STATE(2926)] = { + [sym_catch_clause] = STATE(2926), + [aux_sym_constructor_try_statement_repeat1] = STATE(2926), + [sym_identifier] = ACTIONS(3171), + [aux_sym_preproc_def_token1] = ACTIONS(3171), + [aux_sym_preproc_if_token1] = ACTIONS(3171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3171), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3171), + [sym_preproc_directive] = ACTIONS(3171), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3173), + [anon_sym_STAR] = ACTIONS(3173), + [anon_sym_AMP_AMP] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym___extension__] = ACTIONS(3171), + [anon_sym_typedef] = ACTIONS(3171), + [anon_sym_virtual] = ACTIONS(3171), + [anon_sym_extern] = ACTIONS(3171), + [anon_sym___attribute__] = ACTIONS(3171), + [anon_sym___attribute] = ACTIONS(3171), + [anon_sym_using] = ACTIONS(3171), + [anon_sym_COLON_COLON] = ACTIONS(3173), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), + [anon_sym___declspec] = ACTIONS(3171), + [anon_sym___based] = ACTIONS(3171), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_signed] = ACTIONS(3171), + [anon_sym_unsigned] = ACTIONS(3171), + [anon_sym_long] = ACTIONS(3171), + [anon_sym_short] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_register] = ACTIONS(3171), + [anon_sym_inline] = ACTIONS(3171), + [anon_sym___inline] = ACTIONS(3171), + [anon_sym___inline__] = ACTIONS(3171), + [anon_sym___forceinline] = ACTIONS(3171), + [anon_sym_thread_local] = ACTIONS(3171), + [anon_sym___thread] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_constexpr] = ACTIONS(3171), + [anon_sym_volatile] = ACTIONS(3171), + [anon_sym_restrict] = ACTIONS(3171), + [anon_sym___restrict__] = ACTIONS(3171), + [anon_sym__Atomic] = ACTIONS(3171), + [anon_sym__Noreturn] = ACTIONS(3171), + [anon_sym_noreturn] = ACTIONS(3171), + [anon_sym__Nonnull] = ACTIONS(3171), + [anon_sym_mutable] = ACTIONS(3171), + [anon_sym_constinit] = ACTIONS(3171), + [anon_sym_consteval] = ACTIONS(3171), + [anon_sym_alignas] = ACTIONS(3171), + [anon_sym__Alignas] = ACTIONS(3171), + [sym_primitive_type] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), + [anon_sym_class] = ACTIONS(3171), + [anon_sym_struct] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_typename] = ACTIONS(3171), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3171), + [anon_sym_decltype] = ACTIONS(3171), + [anon_sym_explicit] = ACTIONS(3171), + [anon_sym_private] = ACTIONS(3171), + [anon_sym_template] = ACTIONS(3171), + [anon_sym_operator] = ACTIONS(3171), + [anon_sym_friend] = ACTIONS(3171), + [anon_sym_public] = ACTIONS(3171), + [anon_sym_protected] = ACTIONS(3171), + [anon_sym_static_assert] = ACTIONS(3171), + [anon_sym_catch] = ACTIONS(8868), + [anon_sym_LBRACK_COLON] = ACTIONS(3173), }, - [STATE(3394)] = { - [sym_string_literal] = STATE(3557), - [sym_template_argument_list] = STATE(4731), - [sym_raw_string_literal] = STATE(3557), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_RPAREN] = ACTIONS(8835), - [anon_sym_LPAREN2] = ACTIONS(8835), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(6512), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6515), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(8838), - [anon_sym_EQ] = ACTIONS(5260), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5253), - [anon_sym_SLASH_EQ] = ACTIONS(5253), - [anon_sym_PERCENT_EQ] = ACTIONS(5253), - [anon_sym_PLUS_EQ] = ACTIONS(5253), - [anon_sym_DASH_EQ] = ACTIONS(5253), - [anon_sym_LT_LT_EQ] = ACTIONS(5253), - [anon_sym_GT_GT_EQ] = ACTIONS(5253), - [anon_sym_AMP_EQ] = ACTIONS(5253), - [anon_sym_CARET_EQ] = ACTIONS(5253), - [anon_sym_PIPE_EQ] = ACTIONS(5253), - [anon_sym_and_eq] = ACTIONS(5253), - [anon_sym_or_eq] = ACTIONS(5253), - [anon_sym_xor_eq] = ACTIONS(5253), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5260), - [anon_sym_L_DQUOTE] = ACTIONS(6517), - [anon_sym_u_DQUOTE] = ACTIONS(6517), - [anon_sym_U_DQUOTE] = ACTIONS(6517), - [anon_sym_u8_DQUOTE] = ACTIONS(6517), - [anon_sym_DQUOTE] = ACTIONS(6517), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6519), - [anon_sym_LR_DQUOTE] = ACTIONS(6519), - [anon_sym_uR_DQUOTE] = ACTIONS(6519), - [anon_sym_UR_DQUOTE] = ACTIONS(6519), - [anon_sym_u8R_DQUOTE] = ACTIONS(6519), - [anon_sym_DASH_GT_STAR] = ACTIONS(5253), + [STATE(2927)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7587), + [anon_sym_COMMA] = ACTIONS(7587), + [anon_sym_LPAREN2] = ACTIONS(7587), + [anon_sym_DASH] = ACTIONS(7585), + [anon_sym_PLUS] = ACTIONS(7585), + [anon_sym_STAR] = ACTIONS(7585), + [anon_sym_SLASH] = ACTIONS(7585), + [anon_sym_PERCENT] = ACTIONS(7585), + [anon_sym_PIPE_PIPE] = ACTIONS(7587), + [anon_sym_AMP_AMP] = ACTIONS(7587), + [anon_sym_PIPE] = ACTIONS(7585), + [anon_sym_CARET] = ACTIONS(7585), + [anon_sym_AMP] = ACTIONS(7585), + [anon_sym_EQ_EQ] = ACTIONS(7587), + [anon_sym_BANG_EQ] = ACTIONS(7587), + [anon_sym_GT] = ACTIONS(7585), + [anon_sym_GT_EQ] = ACTIONS(7585), + [anon_sym_LT_EQ] = ACTIONS(7585), + [anon_sym_LT] = ACTIONS(7585), + [anon_sym_LT_LT] = ACTIONS(7585), + [anon_sym_GT_GT] = ACTIONS(7585), + [anon_sym___extension__] = ACTIONS(7587), + [anon_sym___attribute__] = ACTIONS(7587), + [anon_sym___attribute] = ACTIONS(7585), + [anon_sym_LBRACE] = ACTIONS(7587), + [anon_sym_LBRACK] = ACTIONS(7587), + [anon_sym_EQ] = ACTIONS(7585), + [anon_sym_const] = ACTIONS(7585), + [anon_sym_constexpr] = ACTIONS(7587), + [anon_sym_volatile] = ACTIONS(7587), + [anon_sym_restrict] = ACTIONS(7587), + [anon_sym___restrict__] = ACTIONS(7587), + [anon_sym__Atomic] = ACTIONS(7587), + [anon_sym__Noreturn] = ACTIONS(7587), + [anon_sym_noreturn] = ACTIONS(7587), + [anon_sym__Nonnull] = ACTIONS(7587), + [anon_sym_mutable] = ACTIONS(7587), + [anon_sym_constinit] = ACTIONS(7587), + [anon_sym_consteval] = ACTIONS(7587), + [anon_sym_alignas] = ACTIONS(7587), + [anon_sym__Alignas] = ACTIONS(7587), + [anon_sym_QMARK] = ACTIONS(7587), + [anon_sym_STAR_EQ] = ACTIONS(7587), + [anon_sym_SLASH_EQ] = ACTIONS(7587), + [anon_sym_PERCENT_EQ] = ACTIONS(7587), + [anon_sym_PLUS_EQ] = ACTIONS(7587), + [anon_sym_DASH_EQ] = ACTIONS(7587), + [anon_sym_LT_LT_EQ] = ACTIONS(7587), + [anon_sym_GT_GT_EQ] = ACTIONS(7585), + [anon_sym_AMP_EQ] = ACTIONS(7587), + [anon_sym_CARET_EQ] = ACTIONS(7587), + [anon_sym_PIPE_EQ] = ACTIONS(7587), + [anon_sym_and_eq] = ACTIONS(7587), + [anon_sym_or_eq] = ACTIONS(7587), + [anon_sym_xor_eq] = ACTIONS(7587), + [anon_sym_LT_EQ_GT] = ACTIONS(7587), + [anon_sym_or] = ACTIONS(7585), + [anon_sym_and] = ACTIONS(7585), + [anon_sym_bitor] = ACTIONS(7587), + [anon_sym_xor] = ACTIONS(7585), + [anon_sym_bitand] = ACTIONS(7587), + [anon_sym_not_eq] = ACTIONS(7587), + [anon_sym_DASH_DASH] = ACTIONS(7587), + [anon_sym_PLUS_PLUS] = ACTIONS(7587), + [anon_sym_DOT] = ACTIONS(7585), + [anon_sym_DOT_STAR] = ACTIONS(7587), + [anon_sym_DASH_GT] = ACTIONS(7587), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7587), + [anon_sym_override] = ACTIONS(7587), + [anon_sym_GT2] = ACTIONS(7587), + [anon_sym_requires] = ACTIONS(7587), }, - [STATE(3395)] = { - [sym_argument_list] = STATE(3765), - [sym_initializer_list] = STATE(3765), - [sym_new_declarator] = STATE(3588), - [sym_identifier] = ACTIONS(8841), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8843), - [anon_sym_COMMA] = ACTIONS(8843), - [anon_sym_RPAREN] = ACTIONS(8843), - [aux_sym_preproc_if_token2] = ACTIONS(8843), - [aux_sym_preproc_else_token1] = ACTIONS(8843), - [aux_sym_preproc_elif_token1] = ACTIONS(8841), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8843), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8843), - [anon_sym_LPAREN2] = ACTIONS(8808), - [anon_sym_DASH] = ACTIONS(8841), - [anon_sym_PLUS] = ACTIONS(8841), - [anon_sym_STAR] = ACTIONS(8841), - [anon_sym_SLASH] = ACTIONS(8841), - [anon_sym_PERCENT] = ACTIONS(8841), - [anon_sym_PIPE_PIPE] = ACTIONS(8843), - [anon_sym_AMP_AMP] = ACTIONS(8843), - [anon_sym_PIPE] = ACTIONS(8841), - [anon_sym_CARET] = ACTIONS(8841), - [anon_sym_AMP] = ACTIONS(8841), - [anon_sym_EQ_EQ] = ACTIONS(8843), - [anon_sym_BANG_EQ] = ACTIONS(8843), - [anon_sym_GT] = ACTIONS(8841), - [anon_sym_GT_EQ] = ACTIONS(8843), - [anon_sym_LT_EQ] = ACTIONS(8841), - [anon_sym_LT] = ACTIONS(8841), - [anon_sym_LT_LT] = ACTIONS(8841), - [anon_sym_GT_GT] = ACTIONS(8841), - [anon_sym_SEMI] = ACTIONS(8843), - [anon_sym___attribute__] = ACTIONS(8841), - [anon_sym___attribute] = ACTIONS(8841), - [anon_sym_COLON] = ACTIONS(8841), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8843), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_RBRACE] = ACTIONS(8843), - [anon_sym_LBRACK] = ACTIONS(8810), - [anon_sym_EQ] = ACTIONS(8841), - [anon_sym_QMARK] = ACTIONS(8843), - [anon_sym_STAR_EQ] = ACTIONS(8843), - [anon_sym_SLASH_EQ] = ACTIONS(8843), - [anon_sym_PERCENT_EQ] = ACTIONS(8843), - [anon_sym_PLUS_EQ] = ACTIONS(8843), - [anon_sym_DASH_EQ] = ACTIONS(8843), - [anon_sym_LT_LT_EQ] = ACTIONS(8843), - [anon_sym_GT_GT_EQ] = ACTIONS(8843), - [anon_sym_AMP_EQ] = ACTIONS(8843), - [anon_sym_CARET_EQ] = ACTIONS(8843), - [anon_sym_PIPE_EQ] = ACTIONS(8843), - [anon_sym_and_eq] = ACTIONS(8841), - [anon_sym_or_eq] = ACTIONS(8841), - [anon_sym_xor_eq] = ACTIONS(8841), - [anon_sym_LT_EQ_GT] = ACTIONS(8843), - [anon_sym_or] = ACTIONS(8841), - [anon_sym_and] = ACTIONS(8841), - [anon_sym_bitor] = ACTIONS(8841), - [anon_sym_xor] = ACTIONS(8841), - [anon_sym_bitand] = ACTIONS(8841), - [anon_sym_not_eq] = ACTIONS(8841), - [anon_sym_DASH_DASH] = ACTIONS(8843), - [anon_sym_PLUS_PLUS] = ACTIONS(8843), - [anon_sym_DOT] = ACTIONS(8841), - [anon_sym_DOT_STAR] = ACTIONS(8843), - [anon_sym_DASH_GT] = ACTIONS(8843), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(8843), + [STATE(2928)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7106), + [anon_sym_COMMA] = ACTIONS(7106), + [anon_sym_RPAREN] = ACTIONS(7106), + [anon_sym_LPAREN2] = ACTIONS(7106), + [anon_sym_DASH] = ACTIONS(7104), + [anon_sym_PLUS] = ACTIONS(7104), + [anon_sym_STAR] = ACTIONS(7104), + [anon_sym_SLASH] = ACTIONS(7104), + [anon_sym_PERCENT] = ACTIONS(7104), + [anon_sym_PIPE_PIPE] = ACTIONS(7106), + [anon_sym_AMP_AMP] = ACTIONS(7106), + [anon_sym_PIPE] = ACTIONS(7104), + [anon_sym_CARET] = ACTIONS(7104), + [anon_sym_AMP] = ACTIONS(7104), + [anon_sym_EQ_EQ] = ACTIONS(7106), + [anon_sym_BANG_EQ] = ACTIONS(7106), + [anon_sym_GT] = ACTIONS(7104), + [anon_sym_GT_EQ] = ACTIONS(7106), + [anon_sym_LT_EQ] = ACTIONS(7104), + [anon_sym_LT] = ACTIONS(7104), + [anon_sym_LT_LT] = ACTIONS(7104), + [anon_sym_GT_GT] = ACTIONS(7104), + [anon_sym___extension__] = ACTIONS(7106), + [anon_sym___attribute__] = ACTIONS(7106), + [anon_sym___attribute] = ACTIONS(7104), + [anon_sym_COLON] = ACTIONS(7104), + [anon_sym_COLON_COLON] = ACTIONS(7106), + [anon_sym_LBRACE] = ACTIONS(7106), + [anon_sym_LBRACK] = ACTIONS(7106), + [anon_sym_EQ] = ACTIONS(7104), + [anon_sym_const] = ACTIONS(7104), + [anon_sym_constexpr] = ACTIONS(7106), + [anon_sym_volatile] = ACTIONS(7106), + [anon_sym_restrict] = ACTIONS(7106), + [anon_sym___restrict__] = ACTIONS(7106), + [anon_sym__Atomic] = ACTIONS(7106), + [anon_sym__Noreturn] = ACTIONS(7106), + [anon_sym_noreturn] = ACTIONS(7106), + [anon_sym__Nonnull] = ACTIONS(7106), + [anon_sym_mutable] = ACTIONS(7106), + [anon_sym_constinit] = ACTIONS(7106), + [anon_sym_consteval] = ACTIONS(7106), + [anon_sym_alignas] = ACTIONS(7106), + [anon_sym__Alignas] = ACTIONS(7106), + [anon_sym_QMARK] = ACTIONS(7106), + [anon_sym_STAR_EQ] = ACTIONS(7106), + [anon_sym_SLASH_EQ] = ACTIONS(7106), + [anon_sym_PERCENT_EQ] = ACTIONS(7106), + [anon_sym_PLUS_EQ] = ACTIONS(7106), + [anon_sym_DASH_EQ] = ACTIONS(7106), + [anon_sym_LT_LT_EQ] = ACTIONS(7106), + [anon_sym_GT_GT_EQ] = ACTIONS(7106), + [anon_sym_AMP_EQ] = ACTIONS(7106), + [anon_sym_CARET_EQ] = ACTIONS(7106), + [anon_sym_PIPE_EQ] = ACTIONS(7106), + [anon_sym_LT_EQ_GT] = ACTIONS(7106), + [anon_sym_or] = ACTIONS(7106), + [anon_sym_and] = ACTIONS(7106), + [anon_sym_bitor] = ACTIONS(7106), + [anon_sym_xor] = ACTIONS(7106), + [anon_sym_bitand] = ACTIONS(7106), + [anon_sym_not_eq] = ACTIONS(7106), + [anon_sym_DASH_DASH] = ACTIONS(7106), + [anon_sym_PLUS_PLUS] = ACTIONS(7106), + [anon_sym_DOT] = ACTIONS(7104), + [anon_sym_DOT_STAR] = ACTIONS(7106), + [anon_sym_DASH_GT] = ACTIONS(7104), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7106), + [anon_sym_override] = ACTIONS(7106), + [anon_sym_requires] = ACTIONS(7106), + [anon_sym_DASH_GT_STAR] = ACTIONS(7106), }, - [STATE(3396)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7297), - [anon_sym_COMMA] = ACTIONS(7297), - [anon_sym_RPAREN] = ACTIONS(7297), - [anon_sym_LPAREN2] = ACTIONS(7297), - [anon_sym_DASH] = ACTIONS(7295), - [anon_sym_PLUS] = ACTIONS(7295), - [anon_sym_STAR] = ACTIONS(7295), - [anon_sym_SLASH] = ACTIONS(7295), - [anon_sym_PERCENT] = ACTIONS(7295), - [anon_sym_PIPE_PIPE] = ACTIONS(7297), - [anon_sym_AMP_AMP] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7295), - [anon_sym_CARET] = ACTIONS(7295), - [anon_sym_AMP] = ACTIONS(7295), - [anon_sym_EQ_EQ] = ACTIONS(7297), - [anon_sym_BANG_EQ] = ACTIONS(7297), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_GT_EQ] = ACTIONS(7297), - [anon_sym_LT_EQ] = ACTIONS(7295), - [anon_sym_LT] = ACTIONS(7295), - [anon_sym_LT_LT] = ACTIONS(7295), - [anon_sym_GT_GT] = ACTIONS(7295), - [anon_sym___extension__] = ACTIONS(7297), - [anon_sym_LBRACE] = ACTIONS(7297), - [anon_sym_LBRACK] = ACTIONS(7297), - [anon_sym_EQ] = ACTIONS(7295), - [anon_sym_const] = ACTIONS(7295), - [anon_sym_constexpr] = ACTIONS(7297), - [anon_sym_volatile] = ACTIONS(7297), - [anon_sym_restrict] = ACTIONS(7297), - [anon_sym___restrict__] = ACTIONS(7297), - [anon_sym__Atomic] = ACTIONS(7297), - [anon_sym__Noreturn] = ACTIONS(7297), - [anon_sym_noreturn] = ACTIONS(7297), - [anon_sym__Nonnull] = ACTIONS(7297), - [anon_sym_mutable] = ACTIONS(7297), - [anon_sym_constinit] = ACTIONS(7297), - [anon_sym_consteval] = ACTIONS(7297), - [anon_sym_alignas] = ACTIONS(7297), - [anon_sym__Alignas] = ACTIONS(7297), - [anon_sym_QMARK] = ACTIONS(7297), - [anon_sym_STAR_EQ] = ACTIONS(7297), - [anon_sym_SLASH_EQ] = ACTIONS(7297), - [anon_sym_PERCENT_EQ] = ACTIONS(7297), - [anon_sym_PLUS_EQ] = ACTIONS(7297), - [anon_sym_DASH_EQ] = ACTIONS(7297), - [anon_sym_LT_LT_EQ] = ACTIONS(7297), - [anon_sym_GT_GT_EQ] = ACTIONS(7297), - [anon_sym_AMP_EQ] = ACTIONS(7297), - [anon_sym_CARET_EQ] = ACTIONS(7297), - [anon_sym_PIPE_EQ] = ACTIONS(7297), - [anon_sym_LT_EQ_GT] = ACTIONS(7297), - [anon_sym_or] = ACTIONS(7297), - [anon_sym_and] = ACTIONS(7297), - [anon_sym_bitor] = ACTIONS(7297), - [anon_sym_xor] = ACTIONS(7297), - [anon_sym_bitand] = ACTIONS(7297), - [anon_sym_not_eq] = ACTIONS(7297), - [anon_sym_DASH_DASH] = ACTIONS(7297), - [anon_sym_PLUS_PLUS] = ACTIONS(7297), - [anon_sym_DOT] = ACTIONS(7295), - [anon_sym_DOT_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(7295), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7297), - [anon_sym_override] = ACTIONS(7297), - [anon_sym_requires] = ACTIONS(7297), - [anon_sym_DASH_GT_STAR] = ACTIONS(7297), - }, - [STATE(3397)] = { - [sym__abstract_declarator] = STATE(6230), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(3734), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(1970), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(3734), - [sym_identifier] = ACTIONS(6997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), - [anon_sym_COMMA] = ACTIONS(6995), - [aux_sym_preproc_if_token2] = ACTIONS(6995), - [aux_sym_preproc_else_token1] = ACTIONS(6995), - [aux_sym_preproc_elif_token1] = ACTIONS(6997), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6995), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6995), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6997), - [anon_sym_PLUS] = ACTIONS(6997), - [anon_sym_STAR] = ACTIONS(8081), - [anon_sym_SLASH] = ACTIONS(6997), - [anon_sym_PERCENT] = ACTIONS(6995), - [anon_sym_PIPE_PIPE] = ACTIONS(6995), - [anon_sym_AMP_AMP] = ACTIONS(8083), - [anon_sym_PIPE] = ACTIONS(6997), - [anon_sym_CARET] = ACTIONS(6995), - [anon_sym_AMP] = ACTIONS(8085), - [anon_sym_EQ_EQ] = ACTIONS(6995), - [anon_sym_BANG_EQ] = ACTIONS(6995), - [anon_sym_GT] = ACTIONS(6997), - [anon_sym_GT_EQ] = ACTIONS(6995), - [anon_sym_LT_EQ] = ACTIONS(6997), - [anon_sym_LT] = ACTIONS(6997), - [anon_sym_LT_LT] = ACTIONS(6995), - [anon_sym_GT_GT] = ACTIONS(6995), - [anon_sym___extension__] = ACTIONS(7739), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(7739), - [anon_sym_volatile] = ACTIONS(7739), - [anon_sym_restrict] = ACTIONS(7739), - [anon_sym___restrict__] = ACTIONS(7739), - [anon_sym__Atomic] = ACTIONS(7739), - [anon_sym__Noreturn] = ACTIONS(7739), - [anon_sym_noreturn] = ACTIONS(7739), - [anon_sym__Nonnull] = ACTIONS(7739), - [anon_sym_mutable] = ACTIONS(7739), - [anon_sym_constinit] = ACTIONS(7739), - [anon_sym_consteval] = ACTIONS(7739), - [anon_sym_alignas] = ACTIONS(7747), - [anon_sym__Alignas] = ACTIONS(7747), - [anon_sym_QMARK] = ACTIONS(6995), - [anon_sym_LT_EQ_GT] = ACTIONS(6995), - [anon_sym_or] = ACTIONS(6997), - [anon_sym_and] = ACTIONS(6997), - [anon_sym_bitor] = ACTIONS(6997), - [anon_sym_xor] = ACTIONS(6997), - [anon_sym_bitand] = ACTIONS(6997), - [anon_sym_not_eq] = ACTIONS(6997), - [anon_sym_DASH_DASH] = ACTIONS(6995), - [anon_sym_PLUS_PLUS] = ACTIONS(6995), - [anon_sym_DOT] = ACTIONS(6997), - [anon_sym_DOT_STAR] = ACTIONS(6995), - [anon_sym_DASH_GT] = ACTIONS(6995), - [sym_comment] = ACTIONS(3), - }, - [STATE(3398)] = { - [sym__abstract_declarator] = STATE(6231), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(3401), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(1970), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(3401), - [sym_identifier] = ACTIONS(7001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), - [anon_sym_COMMA] = ACTIONS(6999), - [aux_sym_preproc_if_token2] = ACTIONS(6999), - [aux_sym_preproc_else_token1] = ACTIONS(6999), - [aux_sym_preproc_elif_token1] = ACTIONS(7001), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6999), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6999), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(7001), - [anon_sym_PLUS] = ACTIONS(7001), - [anon_sym_STAR] = ACTIONS(8081), - [anon_sym_SLASH] = ACTIONS(7001), - [anon_sym_PERCENT] = ACTIONS(6999), - [anon_sym_PIPE_PIPE] = ACTIONS(6999), - [anon_sym_AMP_AMP] = ACTIONS(8083), - [anon_sym_PIPE] = ACTIONS(7001), - [anon_sym_CARET] = ACTIONS(6999), - [anon_sym_AMP] = ACTIONS(8085), - [anon_sym_EQ_EQ] = ACTIONS(6999), - [anon_sym_BANG_EQ] = ACTIONS(6999), - [anon_sym_GT] = ACTIONS(7001), - [anon_sym_GT_EQ] = ACTIONS(6999), - [anon_sym_LT_EQ] = ACTIONS(7001), - [anon_sym_LT] = ACTIONS(7001), - [anon_sym_LT_LT] = ACTIONS(6999), - [anon_sym_GT_GT] = ACTIONS(6999), - [anon_sym___extension__] = ACTIONS(7739), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(7739), - [anon_sym_volatile] = ACTIONS(7739), - [anon_sym_restrict] = ACTIONS(7739), - [anon_sym___restrict__] = ACTIONS(7739), - [anon_sym__Atomic] = ACTIONS(7739), - [anon_sym__Noreturn] = ACTIONS(7739), - [anon_sym_noreturn] = ACTIONS(7739), - [anon_sym__Nonnull] = ACTIONS(7739), - [anon_sym_mutable] = ACTIONS(7739), - [anon_sym_constinit] = ACTIONS(7739), - [anon_sym_consteval] = ACTIONS(7739), - [anon_sym_alignas] = ACTIONS(7747), - [anon_sym__Alignas] = ACTIONS(7747), - [anon_sym_QMARK] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(6999), - [anon_sym_or] = ACTIONS(7001), - [anon_sym_and] = ACTIONS(7001), - [anon_sym_bitor] = ACTIONS(7001), - [anon_sym_xor] = ACTIONS(7001), - [anon_sym_bitand] = ACTIONS(7001), - [anon_sym_not_eq] = ACTIONS(7001), - [anon_sym_DASH_DASH] = ACTIONS(6999), - [anon_sym_PLUS_PLUS] = ACTIONS(6999), - [anon_sym_DOT] = ACTIONS(7001), - [anon_sym_DOT_STAR] = ACTIONS(6999), - [anon_sym_DASH_GT] = ACTIONS(6999), - [sym_comment] = ACTIONS(3), - }, - [STATE(3399)] = { - [sym__abstract_declarator] = STATE(6261), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(3734), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(1970), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(3734), - [sym_identifier] = ACTIONS(6495), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [aux_sym_preproc_if_token2] = ACTIONS(6497), - [aux_sym_preproc_else_token1] = ACTIONS(6497), - [aux_sym_preproc_elif_token1] = ACTIONS(6495), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6497), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(8081), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6497), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(8083), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6497), - [anon_sym_AMP] = ACTIONS(8085), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6497), - [anon_sym_GT_GT] = ACTIONS(6497), - [anon_sym___extension__] = ACTIONS(7739), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(7739), - [anon_sym_volatile] = ACTIONS(7739), - [anon_sym_restrict] = ACTIONS(7739), - [anon_sym___restrict__] = ACTIONS(7739), - [anon_sym__Atomic] = ACTIONS(7739), - [anon_sym__Noreturn] = ACTIONS(7739), - [anon_sym_noreturn] = ACTIONS(7739), - [anon_sym__Nonnull] = ACTIONS(7739), - [anon_sym_mutable] = ACTIONS(7739), - [anon_sym_constinit] = ACTIONS(7739), - [anon_sym_consteval] = ACTIONS(7739), - [anon_sym_alignas] = ACTIONS(7747), - [anon_sym__Alignas] = ACTIONS(7747), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6495), - [anon_sym_and] = ACTIONS(6495), - [anon_sym_bitor] = ACTIONS(6495), - [anon_sym_xor] = ACTIONS(6495), - [anon_sym_bitand] = ACTIONS(6495), - [anon_sym_not_eq] = ACTIONS(6495), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), + [STATE(2929)] = { + [sym_attribute_specifier] = STATE(3557), + [sym_enumerator_list] = STATE(3003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), + [anon_sym_COMMA] = ACTIONS(7389), + [anon_sym_RPAREN] = ACTIONS(7389), + [anon_sym_LPAREN2] = ACTIONS(7389), + [anon_sym_DASH] = ACTIONS(7387), + [anon_sym_PLUS] = ACTIONS(7387), + [anon_sym_STAR] = ACTIONS(7387), + [anon_sym_SLASH] = ACTIONS(7387), + [anon_sym_PERCENT] = ACTIONS(7387), + [anon_sym_PIPE_PIPE] = ACTIONS(7389), + [anon_sym_AMP_AMP] = ACTIONS(7389), + [anon_sym_PIPE] = ACTIONS(7387), + [anon_sym_CARET] = ACTIONS(7387), + [anon_sym_AMP] = ACTIONS(7387), + [anon_sym_EQ_EQ] = ACTIONS(7389), + [anon_sym_BANG_EQ] = ACTIONS(7389), + [anon_sym_GT] = ACTIONS(7387), + [anon_sym_GT_EQ] = ACTIONS(7389), + [anon_sym_LT_EQ] = ACTIONS(7387), + [anon_sym_LT] = ACTIONS(7387), + [anon_sym_LT_LT] = ACTIONS(7387), + [anon_sym_GT_GT] = ACTIONS(7387), + [anon_sym___extension__] = ACTIONS(7389), + [anon_sym___attribute__] = ACTIONS(8499), + [anon_sym___attribute] = ACTIONS(8501), + [anon_sym_LBRACE] = ACTIONS(8624), + [anon_sym_LBRACK] = ACTIONS(7389), + [anon_sym_EQ] = ACTIONS(7387), + [anon_sym_const] = ACTIONS(7387), + [anon_sym_constexpr] = ACTIONS(7389), + [anon_sym_volatile] = ACTIONS(7389), + [anon_sym_restrict] = ACTIONS(7389), + [anon_sym___restrict__] = ACTIONS(7389), + [anon_sym__Atomic] = ACTIONS(7389), + [anon_sym__Noreturn] = ACTIONS(7389), + [anon_sym_noreturn] = ACTIONS(7389), + [anon_sym__Nonnull] = ACTIONS(7389), + [anon_sym_mutable] = ACTIONS(7389), + [anon_sym_constinit] = ACTIONS(7389), + [anon_sym_consteval] = ACTIONS(7389), + [anon_sym_alignas] = ACTIONS(7389), + [anon_sym__Alignas] = ACTIONS(7389), + [anon_sym_QMARK] = ACTIONS(7389), + [anon_sym_STAR_EQ] = ACTIONS(7389), + [anon_sym_SLASH_EQ] = ACTIONS(7389), + [anon_sym_PERCENT_EQ] = ACTIONS(7389), + [anon_sym_PLUS_EQ] = ACTIONS(7389), + [anon_sym_DASH_EQ] = ACTIONS(7389), + [anon_sym_LT_LT_EQ] = ACTIONS(7389), + [anon_sym_GT_GT_EQ] = ACTIONS(7389), + [anon_sym_AMP_EQ] = ACTIONS(7389), + [anon_sym_CARET_EQ] = ACTIONS(7389), + [anon_sym_PIPE_EQ] = ACTIONS(7389), + [anon_sym_LT_EQ_GT] = ACTIONS(7389), + [anon_sym_or] = ACTIONS(7389), + [anon_sym_and] = ACTIONS(7389), + [anon_sym_bitor] = ACTIONS(7389), + [anon_sym_xor] = ACTIONS(7389), + [anon_sym_bitand] = ACTIONS(7389), + [anon_sym_not_eq] = ACTIONS(7389), + [anon_sym_DASH_DASH] = ACTIONS(7389), + [anon_sym_PLUS_PLUS] = ACTIONS(7389), + [anon_sym_DOT] = ACTIONS(7387), + [anon_sym_DOT_STAR] = ACTIONS(7389), + [anon_sym_DASH_GT] = ACTIONS(7387), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7389), + [anon_sym_override] = ACTIONS(7389), + [anon_sym_requires] = ACTIONS(7389), + [anon_sym_DASH_GT_STAR] = ACTIONS(7389), }, - [STATE(3400)] = { - [sym_string_literal] = STATE(3404), - [sym_raw_string_literal] = STATE(3404), - [aux_sym_concatenated_string_repeat1] = STATE(3404), - [sym_identifier] = ACTIONS(8845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8116), - [anon_sym_COMMA] = ACTIONS(8116), - [anon_sym_LPAREN2] = ACTIONS(8116), - [anon_sym_DASH] = ACTIONS(8118), - [anon_sym_PLUS] = ACTIONS(8118), - [anon_sym_STAR] = ACTIONS(8118), - [anon_sym_SLASH] = ACTIONS(8118), - [anon_sym_PERCENT] = ACTIONS(8118), - [anon_sym_PIPE_PIPE] = ACTIONS(8116), - [anon_sym_AMP_AMP] = ACTIONS(8116), - [anon_sym_PIPE] = ACTIONS(8118), - [anon_sym_CARET] = ACTIONS(8118), - [anon_sym_AMP] = ACTIONS(8118), - [anon_sym_EQ_EQ] = ACTIONS(8116), - [anon_sym_BANG_EQ] = ACTIONS(8116), - [anon_sym_GT] = ACTIONS(8118), - [anon_sym_GT_EQ] = ACTIONS(8116), - [anon_sym_LT_EQ] = ACTIONS(8118), - [anon_sym_LT] = ACTIONS(8118), - [anon_sym_LT_LT] = ACTIONS(8118), - [anon_sym_GT_GT] = ACTIONS(8118), - [anon_sym_SEMI] = ACTIONS(8116), - [anon_sym___attribute__] = ACTIONS(8118), - [anon_sym___attribute] = ACTIONS(8118), - [anon_sym_LBRACK] = ACTIONS(8116), - [anon_sym_EQ] = ACTIONS(8118), - [anon_sym_QMARK] = ACTIONS(8116), - [anon_sym_STAR_EQ] = ACTIONS(8116), - [anon_sym_SLASH_EQ] = ACTIONS(8116), - [anon_sym_PERCENT_EQ] = ACTIONS(8116), - [anon_sym_PLUS_EQ] = ACTIONS(8116), - [anon_sym_DASH_EQ] = ACTIONS(8116), - [anon_sym_LT_LT_EQ] = ACTIONS(8116), - [anon_sym_GT_GT_EQ] = ACTIONS(8116), - [anon_sym_AMP_EQ] = ACTIONS(8116), - [anon_sym_CARET_EQ] = ACTIONS(8116), - [anon_sym_PIPE_EQ] = ACTIONS(8116), - [anon_sym_and_eq] = ACTIONS(8118), - [anon_sym_or_eq] = ACTIONS(8118), - [anon_sym_xor_eq] = ACTIONS(8118), - [anon_sym_LT_EQ_GT] = ACTIONS(8116), - [anon_sym_or] = ACTIONS(8118), - [anon_sym_and] = ACTIONS(8118), - [anon_sym_bitor] = ACTIONS(8118), - [anon_sym_xor] = ACTIONS(8118), - [anon_sym_bitand] = ACTIONS(8118), - [anon_sym_not_eq] = ACTIONS(8118), - [anon_sym_DASH_DASH] = ACTIONS(8116), - [anon_sym_PLUS_PLUS] = ACTIONS(8116), - [anon_sym_DOT] = ACTIONS(8118), - [anon_sym_DOT_STAR] = ACTIONS(8116), - [anon_sym_DASH_GT] = ACTIONS(8116), - [anon_sym_L_DQUOTE] = ACTIONS(6543), - [anon_sym_u_DQUOTE] = ACTIONS(6543), - [anon_sym_U_DQUOTE] = ACTIONS(6543), - [anon_sym_u8_DQUOTE] = ACTIONS(6543), - [anon_sym_DQUOTE] = ACTIONS(6543), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6545), - [anon_sym_LR_DQUOTE] = ACTIONS(6545), - [anon_sym_uR_DQUOTE] = ACTIONS(6545), - [anon_sym_UR_DQUOTE] = ACTIONS(6545), - [anon_sym_u8R_DQUOTE] = ACTIONS(6545), - [sym_literal_suffix] = ACTIONS(8118), - }, - [STATE(3401)] = { - [sym__abstract_declarator] = STATE(6232), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(3734), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(1970), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(3734), - [sym_identifier] = ACTIONS(7005), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), - [anon_sym_COMMA] = ACTIONS(7003), - [aux_sym_preproc_if_token2] = ACTIONS(7003), - [aux_sym_preproc_else_token1] = ACTIONS(7003), - [aux_sym_preproc_elif_token1] = ACTIONS(7005), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7003), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7003), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(8081), - [anon_sym_SLASH] = ACTIONS(7005), - [anon_sym_PERCENT] = ACTIONS(7003), - [anon_sym_PIPE_PIPE] = ACTIONS(7003), - [anon_sym_AMP_AMP] = ACTIONS(8083), - [anon_sym_PIPE] = ACTIONS(7005), - [anon_sym_CARET] = ACTIONS(7003), - [anon_sym_AMP] = ACTIONS(8085), - [anon_sym_EQ_EQ] = ACTIONS(7003), - [anon_sym_BANG_EQ] = ACTIONS(7003), - [anon_sym_GT] = ACTIONS(7005), - [anon_sym_GT_EQ] = ACTIONS(7003), - [anon_sym_LT_EQ] = ACTIONS(7005), - [anon_sym_LT] = ACTIONS(7005), - [anon_sym_LT_LT] = ACTIONS(7003), - [anon_sym_GT_GT] = ACTIONS(7003), - [anon_sym___extension__] = ACTIONS(7739), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(7739), - [anon_sym_volatile] = ACTIONS(7739), - [anon_sym_restrict] = ACTIONS(7739), - [anon_sym___restrict__] = ACTIONS(7739), - [anon_sym__Atomic] = ACTIONS(7739), - [anon_sym__Noreturn] = ACTIONS(7739), - [anon_sym_noreturn] = ACTIONS(7739), - [anon_sym__Nonnull] = ACTIONS(7739), - [anon_sym_mutable] = ACTIONS(7739), - [anon_sym_constinit] = ACTIONS(7739), - [anon_sym_consteval] = ACTIONS(7739), - [anon_sym_alignas] = ACTIONS(7747), - [anon_sym__Alignas] = ACTIONS(7747), - [anon_sym_QMARK] = ACTIONS(7003), - [anon_sym_LT_EQ_GT] = ACTIONS(7003), - [anon_sym_or] = ACTIONS(7005), - [anon_sym_and] = ACTIONS(7005), - [anon_sym_bitor] = ACTIONS(7005), - [anon_sym_xor] = ACTIONS(7005), - [anon_sym_bitand] = ACTIONS(7005), - [anon_sym_not_eq] = ACTIONS(7005), - [anon_sym_DASH_DASH] = ACTIONS(7003), - [anon_sym_PLUS_PLUS] = ACTIONS(7003), - [anon_sym_DOT] = ACTIONS(7005), - [anon_sym_DOT_STAR] = ACTIONS(7003), - [anon_sym_DASH_GT] = ACTIONS(7003), + [STATE(2930)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), + [anon_sym_COMMA] = ACTIONS(7233), + [anon_sym_RPAREN] = ACTIONS(7233), + [anon_sym_LPAREN2] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7231), + [anon_sym_PLUS] = ACTIONS(7231), + [anon_sym_STAR] = ACTIONS(7231), + [anon_sym_SLASH] = ACTIONS(7231), + [anon_sym_PERCENT] = ACTIONS(7231), + [anon_sym_PIPE_PIPE] = ACTIONS(7233), + [anon_sym_AMP_AMP] = ACTIONS(7233), + [anon_sym_PIPE] = ACTIONS(7231), + [anon_sym_CARET] = ACTIONS(7231), + [anon_sym_AMP] = ACTIONS(7231), + [anon_sym_EQ_EQ] = ACTIONS(7233), + [anon_sym_BANG_EQ] = ACTIONS(7233), + [anon_sym_GT] = ACTIONS(7231), + [anon_sym_GT_EQ] = ACTIONS(7233), + [anon_sym_LT_EQ] = ACTIONS(7231), + [anon_sym_LT] = ACTIONS(7231), + [anon_sym_LT_LT] = ACTIONS(7231), + [anon_sym_GT_GT] = ACTIONS(7231), + [anon_sym___extension__] = ACTIONS(7233), + [anon_sym___attribute__] = ACTIONS(7233), + [anon_sym___attribute] = ACTIONS(7231), + [anon_sym_COLON] = ACTIONS(7231), + [anon_sym_COLON_COLON] = ACTIONS(7233), + [anon_sym_LBRACE] = ACTIONS(7233), + [anon_sym_LBRACK] = ACTIONS(7233), + [anon_sym_EQ] = ACTIONS(7231), + [anon_sym_const] = ACTIONS(7231), + [anon_sym_constexpr] = ACTIONS(7233), + [anon_sym_volatile] = ACTIONS(7233), + [anon_sym_restrict] = ACTIONS(7233), + [anon_sym___restrict__] = ACTIONS(7233), + [anon_sym__Atomic] = ACTIONS(7233), + [anon_sym__Noreturn] = ACTIONS(7233), + [anon_sym_noreturn] = ACTIONS(7233), + [anon_sym__Nonnull] = ACTIONS(7233), + [anon_sym_mutable] = ACTIONS(7233), + [anon_sym_constinit] = ACTIONS(7233), + [anon_sym_consteval] = ACTIONS(7233), + [anon_sym_alignas] = ACTIONS(7233), + [anon_sym__Alignas] = ACTIONS(7233), + [anon_sym_QMARK] = ACTIONS(7233), + [anon_sym_STAR_EQ] = ACTIONS(7233), + [anon_sym_SLASH_EQ] = ACTIONS(7233), + [anon_sym_PERCENT_EQ] = ACTIONS(7233), + [anon_sym_PLUS_EQ] = ACTIONS(7233), + [anon_sym_DASH_EQ] = ACTIONS(7233), + [anon_sym_LT_LT_EQ] = ACTIONS(7233), + [anon_sym_GT_GT_EQ] = ACTIONS(7233), + [anon_sym_AMP_EQ] = ACTIONS(7233), + [anon_sym_CARET_EQ] = ACTIONS(7233), + [anon_sym_PIPE_EQ] = ACTIONS(7233), + [anon_sym_LT_EQ_GT] = ACTIONS(7233), + [anon_sym_or] = ACTIONS(7233), + [anon_sym_and] = ACTIONS(7233), + [anon_sym_bitor] = ACTIONS(7233), + [anon_sym_xor] = ACTIONS(7233), + [anon_sym_bitand] = ACTIONS(7233), + [anon_sym_not_eq] = ACTIONS(7233), + [anon_sym_DASH_DASH] = ACTIONS(7233), + [anon_sym_PLUS_PLUS] = ACTIONS(7233), + [anon_sym_DOT] = ACTIONS(7231), + [anon_sym_DOT_STAR] = ACTIONS(7233), + [anon_sym_DASH_GT] = ACTIONS(7231), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7233), + [anon_sym_override] = ACTIONS(7233), + [anon_sym_requires] = ACTIONS(7233), + [anon_sym_DASH_GT_STAR] = ACTIONS(7233), }, - [STATE(3402)] = { - [sym__abstract_declarator] = STATE(6262), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(3734), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(1970), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(3734), - [sym_identifier] = ACTIONS(7009), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), - [anon_sym_COMMA] = ACTIONS(7007), - [aux_sym_preproc_if_token2] = ACTIONS(7007), - [aux_sym_preproc_else_token1] = ACTIONS(7007), - [aux_sym_preproc_elif_token1] = ACTIONS(7009), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7007), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7007), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(7009), - [anon_sym_PLUS] = ACTIONS(7009), - [anon_sym_STAR] = ACTIONS(8081), - [anon_sym_SLASH] = ACTIONS(7009), - [anon_sym_PERCENT] = ACTIONS(7007), - [anon_sym_PIPE_PIPE] = ACTIONS(7007), - [anon_sym_AMP_AMP] = ACTIONS(8083), - [anon_sym_PIPE] = ACTIONS(7009), - [anon_sym_CARET] = ACTIONS(7007), - [anon_sym_AMP] = ACTIONS(8085), - [anon_sym_EQ_EQ] = ACTIONS(7007), - [anon_sym_BANG_EQ] = ACTIONS(7007), - [anon_sym_GT] = ACTIONS(7009), - [anon_sym_GT_EQ] = ACTIONS(7007), - [anon_sym_LT_EQ] = ACTIONS(7009), - [anon_sym_LT] = ACTIONS(7009), - [anon_sym_LT_LT] = ACTIONS(7007), - [anon_sym_GT_GT] = ACTIONS(7007), - [anon_sym___extension__] = ACTIONS(7739), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(7739), - [anon_sym_volatile] = ACTIONS(7739), - [anon_sym_restrict] = ACTIONS(7739), - [anon_sym___restrict__] = ACTIONS(7739), - [anon_sym__Atomic] = ACTIONS(7739), - [anon_sym__Noreturn] = ACTIONS(7739), - [anon_sym_noreturn] = ACTIONS(7739), - [anon_sym__Nonnull] = ACTIONS(7739), - [anon_sym_mutable] = ACTIONS(7739), - [anon_sym_constinit] = ACTIONS(7739), - [anon_sym_consteval] = ACTIONS(7739), - [anon_sym_alignas] = ACTIONS(7747), - [anon_sym__Alignas] = ACTIONS(7747), - [anon_sym_QMARK] = ACTIONS(7007), - [anon_sym_LT_EQ_GT] = ACTIONS(7007), - [anon_sym_or] = ACTIONS(7009), - [anon_sym_and] = ACTIONS(7009), - [anon_sym_bitor] = ACTIONS(7009), - [anon_sym_xor] = ACTIONS(7009), - [anon_sym_bitand] = ACTIONS(7009), - [anon_sym_not_eq] = ACTIONS(7009), - [anon_sym_DASH_DASH] = ACTIONS(7007), - [anon_sym_PLUS_PLUS] = ACTIONS(7007), - [anon_sym_DOT] = ACTIONS(7009), - [anon_sym_DOT_STAR] = ACTIONS(7007), - [anon_sym_DASH_GT] = ACTIONS(7007), + [STATE(2931)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), + [anon_sym_COMMA] = ACTIONS(7289), + [anon_sym_RPAREN] = ACTIONS(7289), + [anon_sym_LPAREN2] = ACTIONS(7289), + [anon_sym_DASH] = ACTIONS(7287), + [anon_sym_PLUS] = ACTIONS(7287), + [anon_sym_STAR] = ACTIONS(7287), + [anon_sym_SLASH] = ACTIONS(7287), + [anon_sym_PERCENT] = ACTIONS(7287), + [anon_sym_PIPE_PIPE] = ACTIONS(7289), + [anon_sym_AMP_AMP] = ACTIONS(7289), + [anon_sym_PIPE] = ACTIONS(7287), + [anon_sym_CARET] = ACTIONS(7287), + [anon_sym_AMP] = ACTIONS(7287), + [anon_sym_EQ_EQ] = ACTIONS(7289), + [anon_sym_BANG_EQ] = ACTIONS(7289), + [anon_sym_GT] = ACTIONS(7287), + [anon_sym_GT_EQ] = ACTIONS(7289), + [anon_sym_LT_EQ] = ACTIONS(7287), + [anon_sym_LT] = ACTIONS(7287), + [anon_sym_LT_LT] = ACTIONS(7287), + [anon_sym_GT_GT] = ACTIONS(7287), + [anon_sym___extension__] = ACTIONS(7289), + [sym_ms_restrict_modifier] = ACTIONS(7287), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7289), + [sym_ms_signed_ptr_modifier] = ACTIONS(7289), + [anon_sym__unaligned] = ACTIONS(7289), + [anon_sym___unaligned] = ACTIONS(7289), + [anon_sym_LBRACK] = ACTIONS(7289), + [anon_sym_EQ] = ACTIONS(7287), + [anon_sym_const] = ACTIONS(7287), + [anon_sym_constexpr] = ACTIONS(7289), + [anon_sym_volatile] = ACTIONS(7289), + [anon_sym_restrict] = ACTIONS(7289), + [anon_sym___restrict__] = ACTIONS(7289), + [anon_sym__Atomic] = ACTIONS(7289), + [anon_sym__Noreturn] = ACTIONS(7289), + [anon_sym_noreturn] = ACTIONS(7289), + [anon_sym__Nonnull] = ACTIONS(7289), + [anon_sym_mutable] = ACTIONS(7289), + [anon_sym_constinit] = ACTIONS(7289), + [anon_sym_consteval] = ACTIONS(7289), + [anon_sym_alignas] = ACTIONS(7289), + [anon_sym__Alignas] = ACTIONS(7289), + [anon_sym_QMARK] = ACTIONS(7289), + [anon_sym_STAR_EQ] = ACTIONS(7289), + [anon_sym_SLASH_EQ] = ACTIONS(7289), + [anon_sym_PERCENT_EQ] = ACTIONS(7289), + [anon_sym_PLUS_EQ] = ACTIONS(7289), + [anon_sym_DASH_EQ] = ACTIONS(7289), + [anon_sym_LT_LT_EQ] = ACTIONS(7289), + [anon_sym_GT_GT_EQ] = ACTIONS(7289), + [anon_sym_AMP_EQ] = ACTIONS(7289), + [anon_sym_CARET_EQ] = ACTIONS(7289), + [anon_sym_PIPE_EQ] = ACTIONS(7289), + [anon_sym_LT_EQ_GT] = ACTIONS(7289), + [anon_sym_or] = ACTIONS(7289), + [anon_sym_and] = ACTIONS(7289), + [anon_sym_bitor] = ACTIONS(7289), + [anon_sym_xor] = ACTIONS(7289), + [anon_sym_bitand] = ACTIONS(7289), + [anon_sym_not_eq] = ACTIONS(7289), + [anon_sym_DASH_DASH] = ACTIONS(7289), + [anon_sym_PLUS_PLUS] = ACTIONS(7289), + [anon_sym_DOT] = ACTIONS(7287), + [anon_sym_DOT_STAR] = ACTIONS(7289), + [anon_sym_DASH_GT] = ACTIONS(7287), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7289), + [anon_sym_override] = ACTIONS(7289), + [anon_sym_requires] = ACTIONS(7289), + [anon_sym_DASH_GT_STAR] = ACTIONS(7289), }, - [STATE(3403)] = { - [sym_type_qualifier] = STATE(3438), - [sym_alignas_qualifier] = STATE(3736), - [aux_sym__type_definition_type_repeat1] = STATE(3438), - [aux_sym_sized_type_specifier_repeat1] = STATE(3669), - [sym_identifier] = ACTIONS(8847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), - [anon_sym_COMMA] = ACTIONS(6812), - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_STAR] = ACTIONS(6812), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_PERCENT] = ACTIONS(6812), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_CARET] = ACTIONS(6812), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_LT_LT] = ACTIONS(6812), - [anon_sym_GT_GT] = ACTIONS(6812), - [anon_sym___extension__] = ACTIONS(8849), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_signed] = ACTIONS(8852), - [anon_sym_unsigned] = ACTIONS(8852), - [anon_sym_long] = ACTIONS(8852), - [anon_sym_short] = ACTIONS(8852), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_RBRACK] = ACTIONS(6812), - [anon_sym_const] = ACTIONS(8849), - [anon_sym_constexpr] = ACTIONS(8849), - [anon_sym_volatile] = ACTIONS(8849), - [anon_sym_restrict] = ACTIONS(8849), - [anon_sym___restrict__] = ACTIONS(8849), - [anon_sym__Atomic] = ACTIONS(8849), - [anon_sym__Noreturn] = ACTIONS(8849), - [anon_sym_noreturn] = ACTIONS(8849), - [anon_sym__Nonnull] = ACTIONS(8849), - [anon_sym_mutable] = ACTIONS(8849), - [anon_sym_constinit] = ACTIONS(8849), - [anon_sym_consteval] = ACTIONS(8849), - [anon_sym_alignas] = ACTIONS(8854), - [anon_sym__Alignas] = ACTIONS(8854), - [sym_primitive_type] = ACTIONS(8510), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_LT_EQ_GT] = ACTIONS(6812), - [anon_sym_or] = ACTIONS(6814), - [anon_sym_and] = ACTIONS(6814), - [anon_sym_bitor] = ACTIONS(6814), - [anon_sym_xor] = ACTIONS(6814), - [anon_sym_bitand] = ACTIONS(6814), - [anon_sym_not_eq] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6814), - [anon_sym_DOT_STAR] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6812), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6814), - [anon_sym_override] = ACTIONS(6814), - [anon_sym_requires] = ACTIONS(6814), - }, - [STATE(3404)] = { - [sym_string_literal] = STATE(3404), - [sym_raw_string_literal] = STATE(3404), - [aux_sym_concatenated_string_repeat1] = STATE(3404), - [sym_identifier] = ACTIONS(8857), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8045), - [anon_sym_COMMA] = ACTIONS(8045), - [anon_sym_LPAREN2] = ACTIONS(8045), - [anon_sym_DASH] = ACTIONS(8047), - [anon_sym_PLUS] = ACTIONS(8047), - [anon_sym_STAR] = ACTIONS(8047), - [anon_sym_SLASH] = ACTIONS(8047), - [anon_sym_PERCENT] = ACTIONS(8047), - [anon_sym_PIPE_PIPE] = ACTIONS(8045), - [anon_sym_AMP_AMP] = ACTIONS(8045), - [anon_sym_PIPE] = ACTIONS(8047), - [anon_sym_CARET] = ACTIONS(8047), - [anon_sym_AMP] = ACTIONS(8047), - [anon_sym_EQ_EQ] = ACTIONS(8045), - [anon_sym_BANG_EQ] = ACTIONS(8045), - [anon_sym_GT] = ACTIONS(8047), - [anon_sym_GT_EQ] = ACTIONS(8045), - [anon_sym_LT_EQ] = ACTIONS(8047), - [anon_sym_LT] = ACTIONS(8047), - [anon_sym_LT_LT] = ACTIONS(8047), - [anon_sym_GT_GT] = ACTIONS(8047), - [anon_sym_SEMI] = ACTIONS(8045), - [anon_sym___attribute__] = ACTIONS(8047), - [anon_sym___attribute] = ACTIONS(8047), - [anon_sym_LBRACK] = ACTIONS(8045), - [anon_sym_EQ] = ACTIONS(8047), - [anon_sym_QMARK] = ACTIONS(8045), - [anon_sym_STAR_EQ] = ACTIONS(8045), - [anon_sym_SLASH_EQ] = ACTIONS(8045), - [anon_sym_PERCENT_EQ] = ACTIONS(8045), - [anon_sym_PLUS_EQ] = ACTIONS(8045), - [anon_sym_DASH_EQ] = ACTIONS(8045), - [anon_sym_LT_LT_EQ] = ACTIONS(8045), - [anon_sym_GT_GT_EQ] = ACTIONS(8045), - [anon_sym_AMP_EQ] = ACTIONS(8045), - [anon_sym_CARET_EQ] = ACTIONS(8045), - [anon_sym_PIPE_EQ] = ACTIONS(8045), - [anon_sym_and_eq] = ACTIONS(8047), - [anon_sym_or_eq] = ACTIONS(8047), - [anon_sym_xor_eq] = ACTIONS(8047), - [anon_sym_LT_EQ_GT] = ACTIONS(8045), - [anon_sym_or] = ACTIONS(8047), - [anon_sym_and] = ACTIONS(8047), - [anon_sym_bitor] = ACTIONS(8047), - [anon_sym_xor] = ACTIONS(8047), - [anon_sym_bitand] = ACTIONS(8047), - [anon_sym_not_eq] = ACTIONS(8047), - [anon_sym_DASH_DASH] = ACTIONS(8045), - [anon_sym_PLUS_PLUS] = ACTIONS(8045), - [anon_sym_DOT] = ACTIONS(8047), - [anon_sym_DOT_STAR] = ACTIONS(8045), - [anon_sym_DASH_GT] = ACTIONS(8045), - [anon_sym_L_DQUOTE] = ACTIONS(8860), - [anon_sym_u_DQUOTE] = ACTIONS(8860), - [anon_sym_U_DQUOTE] = ACTIONS(8860), - [anon_sym_u8_DQUOTE] = ACTIONS(8860), - [anon_sym_DQUOTE] = ACTIONS(8860), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8863), - [anon_sym_LR_DQUOTE] = ACTIONS(8863), - [anon_sym_uR_DQUOTE] = ACTIONS(8863), - [anon_sym_UR_DQUOTE] = ACTIONS(8863), - [anon_sym_u8R_DQUOTE] = ACTIONS(8863), - [sym_literal_suffix] = ACTIONS(8047), - }, - [STATE(3405)] = { - [sym_argument_list] = STATE(3759), - [sym_initializer_list] = STATE(3759), - [sym_new_declarator] = STATE(3576), - [sym_identifier] = ACTIONS(8866), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8868), - [anon_sym_COMMA] = ACTIONS(8868), - [anon_sym_RPAREN] = ACTIONS(8868), - [aux_sym_preproc_if_token2] = ACTIONS(8868), - [aux_sym_preproc_else_token1] = ACTIONS(8868), - [aux_sym_preproc_elif_token1] = ACTIONS(8866), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8868), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8868), - [anon_sym_LPAREN2] = ACTIONS(8808), - [anon_sym_DASH] = ACTIONS(8866), - [anon_sym_PLUS] = ACTIONS(8866), - [anon_sym_STAR] = ACTIONS(8866), - [anon_sym_SLASH] = ACTIONS(8866), - [anon_sym_PERCENT] = ACTIONS(8866), - [anon_sym_PIPE_PIPE] = ACTIONS(8868), - [anon_sym_AMP_AMP] = ACTIONS(8868), - [anon_sym_PIPE] = ACTIONS(8866), - [anon_sym_CARET] = ACTIONS(8866), - [anon_sym_AMP] = ACTIONS(8866), - [anon_sym_EQ_EQ] = ACTIONS(8868), - [anon_sym_BANG_EQ] = ACTIONS(8868), - [anon_sym_GT] = ACTIONS(8866), - [anon_sym_GT_EQ] = ACTIONS(8868), - [anon_sym_LT_EQ] = ACTIONS(8866), - [anon_sym_LT] = ACTIONS(8866), - [anon_sym_LT_LT] = ACTIONS(8866), - [anon_sym_GT_GT] = ACTIONS(8866), - [anon_sym_SEMI] = ACTIONS(8868), - [anon_sym___attribute__] = ACTIONS(8866), - [anon_sym___attribute] = ACTIONS(8866), - [anon_sym_COLON] = ACTIONS(8866), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8868), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_RBRACE] = ACTIONS(8868), - [anon_sym_LBRACK] = ACTIONS(8810), - [anon_sym_EQ] = ACTIONS(8866), - [anon_sym_QMARK] = ACTIONS(8868), - [anon_sym_STAR_EQ] = ACTIONS(8868), - [anon_sym_SLASH_EQ] = ACTIONS(8868), - [anon_sym_PERCENT_EQ] = ACTIONS(8868), - [anon_sym_PLUS_EQ] = ACTIONS(8868), - [anon_sym_DASH_EQ] = ACTIONS(8868), - [anon_sym_LT_LT_EQ] = ACTIONS(8868), - [anon_sym_GT_GT_EQ] = ACTIONS(8868), - [anon_sym_AMP_EQ] = ACTIONS(8868), - [anon_sym_CARET_EQ] = ACTIONS(8868), - [anon_sym_PIPE_EQ] = ACTIONS(8868), - [anon_sym_and_eq] = ACTIONS(8866), - [anon_sym_or_eq] = ACTIONS(8866), - [anon_sym_xor_eq] = ACTIONS(8866), - [anon_sym_LT_EQ_GT] = ACTIONS(8868), - [anon_sym_or] = ACTIONS(8866), - [anon_sym_and] = ACTIONS(8866), - [anon_sym_bitor] = ACTIONS(8866), - [anon_sym_xor] = ACTIONS(8866), - [anon_sym_bitand] = ACTIONS(8866), - [anon_sym_not_eq] = ACTIONS(8866), - [anon_sym_DASH_DASH] = ACTIONS(8868), - [anon_sym_PLUS_PLUS] = ACTIONS(8868), - [anon_sym_DOT] = ACTIONS(8866), - [anon_sym_DOT_STAR] = ACTIONS(8868), - [anon_sym_DASH_GT] = ACTIONS(8868), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(8868), - }, - [STATE(3406)] = { - [sym_string_literal] = STATE(4004), - [sym_template_argument_list] = STATE(5595), - [sym_raw_string_literal] = STATE(4004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(8829), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(6713), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8829), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_RBRACE] = ACTIONS(5253), - [anon_sym_LBRACK] = ACTIONS(8831), - [anon_sym_EQ] = ACTIONS(5276), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5278), - [anon_sym_or_eq] = ACTIONS(5278), - [anon_sym_xor_eq] = ACTIONS(5278), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - }, - [STATE(3407)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7410), - [anon_sym_COMMA] = ACTIONS(7410), - [anon_sym_RPAREN] = ACTIONS(7410), - [anon_sym_LPAREN2] = ACTIONS(7410), - [anon_sym_DASH] = ACTIONS(7408), - [anon_sym_PLUS] = ACTIONS(7408), - [anon_sym_STAR] = ACTIONS(7410), - [anon_sym_SLASH] = ACTIONS(7408), - [anon_sym_PERCENT] = ACTIONS(7410), - [anon_sym_PIPE_PIPE] = ACTIONS(7410), - [anon_sym_AMP_AMP] = ACTIONS(7410), - [anon_sym_PIPE] = ACTIONS(7408), - [anon_sym_CARET] = ACTIONS(7410), - [anon_sym_AMP] = ACTIONS(7408), - [anon_sym_EQ_EQ] = ACTIONS(7410), - [anon_sym_BANG_EQ] = ACTIONS(7410), - [anon_sym_GT] = ACTIONS(7408), - [anon_sym_GT_EQ] = ACTIONS(7410), - [anon_sym_LT_EQ] = ACTIONS(7408), - [anon_sym_LT] = ACTIONS(7408), - [anon_sym_LT_LT] = ACTIONS(7410), - [anon_sym_GT_GT] = ACTIONS(7410), - [anon_sym_SEMI] = ACTIONS(7410), - [anon_sym___extension__] = ACTIONS(7410), - [anon_sym___attribute__] = ACTIONS(7410), - [anon_sym___attribute] = ACTIONS(7408), - [anon_sym_COLON] = ACTIONS(7408), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7410), - [anon_sym_LBRACE] = ACTIONS(7410), - [anon_sym_RBRACE] = ACTIONS(7410), - [anon_sym_signed] = ACTIONS(8870), - [anon_sym_unsigned] = ACTIONS(8870), - [anon_sym_long] = ACTIONS(8870), - [anon_sym_short] = ACTIONS(8870), - [anon_sym_LBRACK] = ACTIONS(7410), - [anon_sym_const] = ACTIONS(7408), - [anon_sym_constexpr] = ACTIONS(7410), - [anon_sym_volatile] = ACTIONS(7410), - [anon_sym_restrict] = ACTIONS(7410), - [anon_sym___restrict__] = ACTIONS(7410), - [anon_sym__Atomic] = ACTIONS(7410), - [anon_sym__Noreturn] = ACTIONS(7410), - [anon_sym_noreturn] = ACTIONS(7410), - [anon_sym__Nonnull] = ACTIONS(7410), - [anon_sym_mutable] = ACTIONS(7410), - [anon_sym_constinit] = ACTIONS(7410), - [anon_sym_consteval] = ACTIONS(7410), - [anon_sym_alignas] = ACTIONS(7410), - [anon_sym__Alignas] = ACTIONS(7410), - [anon_sym_QMARK] = ACTIONS(7410), - [anon_sym_LT_EQ_GT] = ACTIONS(7410), - [anon_sym_or] = ACTIONS(7410), - [anon_sym_and] = ACTIONS(7410), - [anon_sym_bitor] = ACTIONS(7410), - [anon_sym_xor] = ACTIONS(7410), - [anon_sym_bitand] = ACTIONS(7410), - [anon_sym_not_eq] = ACTIONS(7410), - [anon_sym_DASH_DASH] = ACTIONS(7410), - [anon_sym_PLUS_PLUS] = ACTIONS(7410), - [anon_sym_DOT] = ACTIONS(7408), - [anon_sym_DOT_STAR] = ACTIONS(7410), - [anon_sym_DASH_GT] = ACTIONS(7410), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7410), - [anon_sym_override] = ACTIONS(7410), - [anon_sym_requires] = ACTIONS(7410), - [anon_sym_COLON_RBRACK] = ACTIONS(7410), - }, - [STATE(3408)] = { - [sym_identifier] = ACTIONS(5229), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5231), - [anon_sym_COMMA] = ACTIONS(5231), - [anon_sym_RPAREN] = ACTIONS(5231), - [aux_sym_preproc_if_token2] = ACTIONS(5231), - [aux_sym_preproc_else_token1] = ACTIONS(5231), - [aux_sym_preproc_elif_token1] = ACTIONS(5229), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5231), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5231), - [anon_sym_LPAREN2] = ACTIONS(5231), - [anon_sym_DASH] = ACTIONS(5229), - [anon_sym_PLUS] = ACTIONS(5229), - [anon_sym_STAR] = ACTIONS(5229), - [anon_sym_SLASH] = ACTIONS(5229), - [anon_sym_PERCENT] = ACTIONS(5229), - [anon_sym_PIPE_PIPE] = ACTIONS(5231), - [anon_sym_AMP_AMP] = ACTIONS(5231), - [anon_sym_PIPE] = ACTIONS(5229), - [anon_sym_CARET] = ACTIONS(5229), - [anon_sym_AMP] = ACTIONS(5229), - [anon_sym_EQ_EQ] = ACTIONS(5231), - [anon_sym_BANG_EQ] = ACTIONS(5231), - [anon_sym_GT] = ACTIONS(5229), - [anon_sym_GT_EQ] = ACTIONS(5231), - [anon_sym_LT_EQ] = ACTIONS(5229), - [anon_sym_LT] = ACTIONS(5229), - [anon_sym_LT_LT] = ACTIONS(5229), - [anon_sym_GT_GT] = ACTIONS(5229), - [anon_sym_SEMI] = ACTIONS(5231), - [anon_sym___attribute__] = ACTIONS(5229), - [anon_sym___attribute] = ACTIONS(5229), - [anon_sym_COLON] = ACTIONS(5229), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5231), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5231), - [anon_sym_RBRACE] = ACTIONS(5231), - [anon_sym_LBRACK] = ACTIONS(5229), - [anon_sym_EQ] = ACTIONS(5229), - [anon_sym_QMARK] = ACTIONS(5231), - [anon_sym_STAR_EQ] = ACTIONS(5231), - [anon_sym_SLASH_EQ] = ACTIONS(5231), - [anon_sym_PERCENT_EQ] = ACTIONS(5231), - [anon_sym_PLUS_EQ] = ACTIONS(5231), - [anon_sym_DASH_EQ] = ACTIONS(5231), - [anon_sym_LT_LT_EQ] = ACTIONS(5231), - [anon_sym_GT_GT_EQ] = ACTIONS(5231), - [anon_sym_AMP_EQ] = ACTIONS(5231), - [anon_sym_CARET_EQ] = ACTIONS(5231), - [anon_sym_PIPE_EQ] = ACTIONS(5231), - [anon_sym_and_eq] = ACTIONS(5229), - [anon_sym_or_eq] = ACTIONS(5229), - [anon_sym_xor_eq] = ACTIONS(5229), - [anon_sym_LT_EQ_GT] = ACTIONS(5231), - [anon_sym_or] = ACTIONS(5229), - [anon_sym_and] = ACTIONS(5229), - [anon_sym_bitor] = ACTIONS(5229), - [anon_sym_xor] = ACTIONS(5229), - [anon_sym_bitand] = ACTIONS(5229), - [anon_sym_not_eq] = ACTIONS(5229), - [anon_sym_DASH_DASH] = ACTIONS(5231), - [anon_sym_PLUS_PLUS] = ACTIONS(5231), - [anon_sym_DOT] = ACTIONS(5229), - [anon_sym_DOT_STAR] = ACTIONS(5231), - [anon_sym_DASH_GT] = ACTIONS(5231), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5229), - [anon_sym_override] = ACTIONS(5229), - [anon_sym_requires] = ACTIONS(5229), - [anon_sym_COLON_RBRACK] = ACTIONS(5231), - }, - [STATE(3409)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7207), - [anon_sym_COMMA] = ACTIONS(7207), - [anon_sym_RPAREN] = ACTIONS(7207), - [anon_sym_LPAREN2] = ACTIONS(7207), - [anon_sym_DASH] = ACTIONS(7205), - [anon_sym_PLUS] = ACTIONS(7205), - [anon_sym_STAR] = ACTIONS(7205), - [anon_sym_SLASH] = ACTIONS(7205), - [anon_sym_PERCENT] = ACTIONS(7205), - [anon_sym_PIPE_PIPE] = ACTIONS(7207), - [anon_sym_AMP_AMP] = ACTIONS(7207), - [anon_sym_PIPE] = ACTIONS(7205), - [anon_sym_CARET] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7205), - [anon_sym_EQ_EQ] = ACTIONS(7207), - [anon_sym_BANG_EQ] = ACTIONS(7207), - [anon_sym_GT] = ACTIONS(7205), - [anon_sym_GT_EQ] = ACTIONS(7207), - [anon_sym_LT_EQ] = ACTIONS(7205), - [anon_sym_LT] = ACTIONS(7205), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_GT_GT] = ACTIONS(7205), - [anon_sym___extension__] = ACTIONS(7207), - [anon_sym_LBRACE] = ACTIONS(7207), - [anon_sym_LBRACK] = ACTIONS(7207), - [anon_sym_EQ] = ACTIONS(7205), - [anon_sym_const] = ACTIONS(7205), - [anon_sym_constexpr] = ACTIONS(7207), - [anon_sym_volatile] = ACTIONS(7207), - [anon_sym_restrict] = ACTIONS(7207), - [anon_sym___restrict__] = ACTIONS(7207), - [anon_sym__Atomic] = ACTIONS(7207), - [anon_sym__Noreturn] = ACTIONS(7207), - [anon_sym_noreturn] = ACTIONS(7207), - [anon_sym__Nonnull] = ACTIONS(7207), - [anon_sym_mutable] = ACTIONS(7207), - [anon_sym_constinit] = ACTIONS(7207), - [anon_sym_consteval] = ACTIONS(7207), - [anon_sym_alignas] = ACTIONS(7207), - [anon_sym__Alignas] = ACTIONS(7207), - [anon_sym_QMARK] = ACTIONS(7207), - [anon_sym_STAR_EQ] = ACTIONS(7207), - [anon_sym_SLASH_EQ] = ACTIONS(7207), - [anon_sym_PERCENT_EQ] = ACTIONS(7207), - [anon_sym_PLUS_EQ] = ACTIONS(7207), - [anon_sym_DASH_EQ] = ACTIONS(7207), - [anon_sym_LT_LT_EQ] = ACTIONS(7207), - [anon_sym_GT_GT_EQ] = ACTIONS(7207), - [anon_sym_AMP_EQ] = ACTIONS(7207), - [anon_sym_CARET_EQ] = ACTIONS(7207), - [anon_sym_PIPE_EQ] = ACTIONS(7207), - [anon_sym_LT_EQ_GT] = ACTIONS(7207), - [anon_sym_or] = ACTIONS(7207), - [anon_sym_and] = ACTIONS(7207), - [anon_sym_bitor] = ACTIONS(7207), - [anon_sym_xor] = ACTIONS(7207), - [anon_sym_bitand] = ACTIONS(7207), - [anon_sym_not_eq] = ACTIONS(7207), - [anon_sym_DASH_DASH] = ACTIONS(7207), - [anon_sym_PLUS_PLUS] = ACTIONS(7207), - [anon_sym_DOT] = ACTIONS(7205), - [anon_sym_DOT_STAR] = ACTIONS(7207), - [anon_sym_DASH_GT] = ACTIONS(7205), + [STATE(2932)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), + [anon_sym_COMMA] = ACTIONS(7201), + [anon_sym_RPAREN] = ACTIONS(7201), + [anon_sym_LPAREN2] = ACTIONS(7201), + [anon_sym_DASH] = ACTIONS(7199), + [anon_sym_PLUS] = ACTIONS(7199), + [anon_sym_STAR] = ACTIONS(7199), + [anon_sym_SLASH] = ACTIONS(7199), + [anon_sym_PERCENT] = ACTIONS(7199), + [anon_sym_PIPE_PIPE] = ACTIONS(7201), + [anon_sym_AMP_AMP] = ACTIONS(7201), + [anon_sym_PIPE] = ACTIONS(7199), + [anon_sym_CARET] = ACTIONS(7199), + [anon_sym_AMP] = ACTIONS(7199), + [anon_sym_EQ_EQ] = ACTIONS(7201), + [anon_sym_BANG_EQ] = ACTIONS(7201), + [anon_sym_GT] = ACTIONS(7199), + [anon_sym_GT_EQ] = ACTIONS(7201), + [anon_sym_LT_EQ] = ACTIONS(7199), + [anon_sym_LT] = ACTIONS(7199), + [anon_sym_LT_LT] = ACTIONS(7199), + [anon_sym_GT_GT] = ACTIONS(7199), + [anon_sym___extension__] = ACTIONS(7201), + [sym_ms_restrict_modifier] = ACTIONS(7199), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7201), + [sym_ms_signed_ptr_modifier] = ACTIONS(7201), + [anon_sym__unaligned] = ACTIONS(7201), + [anon_sym___unaligned] = ACTIONS(7201), + [anon_sym_LBRACK] = ACTIONS(7201), + [anon_sym_EQ] = ACTIONS(7199), + [anon_sym_const] = ACTIONS(7199), + [anon_sym_constexpr] = ACTIONS(7201), + [anon_sym_volatile] = ACTIONS(7201), + [anon_sym_restrict] = ACTIONS(7201), + [anon_sym___restrict__] = ACTIONS(7201), + [anon_sym__Atomic] = ACTIONS(7201), + [anon_sym__Noreturn] = ACTIONS(7201), + [anon_sym_noreturn] = ACTIONS(7201), + [anon_sym__Nonnull] = ACTIONS(7201), + [anon_sym_mutable] = ACTIONS(7201), + [anon_sym_constinit] = ACTIONS(7201), + [anon_sym_consteval] = ACTIONS(7201), + [anon_sym_alignas] = ACTIONS(7201), + [anon_sym__Alignas] = ACTIONS(7201), + [anon_sym_QMARK] = ACTIONS(7201), + [anon_sym_STAR_EQ] = ACTIONS(7201), + [anon_sym_SLASH_EQ] = ACTIONS(7201), + [anon_sym_PERCENT_EQ] = ACTIONS(7201), + [anon_sym_PLUS_EQ] = ACTIONS(7201), + [anon_sym_DASH_EQ] = ACTIONS(7201), + [anon_sym_LT_LT_EQ] = ACTIONS(7201), + [anon_sym_GT_GT_EQ] = ACTIONS(7201), + [anon_sym_AMP_EQ] = ACTIONS(7201), + [anon_sym_CARET_EQ] = ACTIONS(7201), + [anon_sym_PIPE_EQ] = ACTIONS(7201), + [anon_sym_LT_EQ_GT] = ACTIONS(7201), + [anon_sym_or] = ACTIONS(7201), + [anon_sym_and] = ACTIONS(7201), + [anon_sym_bitor] = ACTIONS(7201), + [anon_sym_xor] = ACTIONS(7201), + [anon_sym_bitand] = ACTIONS(7201), + [anon_sym_not_eq] = ACTIONS(7201), + [anon_sym_DASH_DASH] = ACTIONS(7201), + [anon_sym_PLUS_PLUS] = ACTIONS(7201), + [anon_sym_DOT] = ACTIONS(7199), + [anon_sym_DOT_STAR] = ACTIONS(7201), + [anon_sym_DASH_GT] = ACTIONS(7199), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7207), - [anon_sym_override] = ACTIONS(7207), - [anon_sym_requires] = ACTIONS(7207), - [anon_sym_DASH_GT_STAR] = ACTIONS(7207), - }, - [STATE(3410)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7211), - [anon_sym_COMMA] = ACTIONS(7211), - [anon_sym_RPAREN] = ACTIONS(7211), - [anon_sym_LPAREN2] = ACTIONS(7211), - [anon_sym_DASH] = ACTIONS(7209), - [anon_sym_PLUS] = ACTIONS(7209), - [anon_sym_STAR] = ACTIONS(7209), - [anon_sym_SLASH] = ACTIONS(7209), - [anon_sym_PERCENT] = ACTIONS(7209), - [anon_sym_PIPE_PIPE] = ACTIONS(7211), - [anon_sym_AMP_AMP] = ACTIONS(7211), - [anon_sym_PIPE] = ACTIONS(7209), - [anon_sym_CARET] = ACTIONS(7209), - [anon_sym_AMP] = ACTIONS(7209), - [anon_sym_EQ_EQ] = ACTIONS(7211), - [anon_sym_BANG_EQ] = ACTIONS(7211), - [anon_sym_GT] = ACTIONS(7209), - [anon_sym_GT_EQ] = ACTIONS(7211), - [anon_sym_LT_EQ] = ACTIONS(7209), - [anon_sym_LT] = ACTIONS(7209), - [anon_sym_LT_LT] = ACTIONS(7209), - [anon_sym_GT_GT] = ACTIONS(7209), - [anon_sym___extension__] = ACTIONS(7211), - [anon_sym_LBRACE] = ACTIONS(7211), - [anon_sym_LBRACK] = ACTIONS(7211), - [anon_sym_EQ] = ACTIONS(7209), - [anon_sym_const] = ACTIONS(7209), - [anon_sym_constexpr] = ACTIONS(7211), - [anon_sym_volatile] = ACTIONS(7211), - [anon_sym_restrict] = ACTIONS(7211), - [anon_sym___restrict__] = ACTIONS(7211), - [anon_sym__Atomic] = ACTIONS(7211), - [anon_sym__Noreturn] = ACTIONS(7211), - [anon_sym_noreturn] = ACTIONS(7211), - [anon_sym__Nonnull] = ACTIONS(7211), - [anon_sym_mutable] = ACTIONS(7211), - [anon_sym_constinit] = ACTIONS(7211), - [anon_sym_consteval] = ACTIONS(7211), - [anon_sym_alignas] = ACTIONS(7211), - [anon_sym__Alignas] = ACTIONS(7211), - [anon_sym_QMARK] = ACTIONS(7211), - [anon_sym_STAR_EQ] = ACTIONS(7211), - [anon_sym_SLASH_EQ] = ACTIONS(7211), - [anon_sym_PERCENT_EQ] = ACTIONS(7211), - [anon_sym_PLUS_EQ] = ACTIONS(7211), - [anon_sym_DASH_EQ] = ACTIONS(7211), - [anon_sym_LT_LT_EQ] = ACTIONS(7211), - [anon_sym_GT_GT_EQ] = ACTIONS(7211), - [anon_sym_AMP_EQ] = ACTIONS(7211), - [anon_sym_CARET_EQ] = ACTIONS(7211), - [anon_sym_PIPE_EQ] = ACTIONS(7211), - [anon_sym_LT_EQ_GT] = ACTIONS(7211), - [anon_sym_or] = ACTIONS(7211), - [anon_sym_and] = ACTIONS(7211), - [anon_sym_bitor] = ACTIONS(7211), - [anon_sym_xor] = ACTIONS(7211), - [anon_sym_bitand] = ACTIONS(7211), - [anon_sym_not_eq] = ACTIONS(7211), - [anon_sym_DASH_DASH] = ACTIONS(7211), - [anon_sym_PLUS_PLUS] = ACTIONS(7211), - [anon_sym_DOT] = ACTIONS(7209), - [anon_sym_DOT_STAR] = ACTIONS(7211), - [anon_sym_DASH_GT] = ACTIONS(7209), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7211), - [anon_sym_override] = ACTIONS(7211), - [anon_sym_requires] = ACTIONS(7211), - [anon_sym_DASH_GT_STAR] = ACTIONS(7211), - }, - [STATE(3411)] = { - [sym_identifier] = ACTIONS(6949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), - [anon_sym_COMMA] = ACTIONS(6951), - [aux_sym_preproc_if_token2] = ACTIONS(6951), - [aux_sym_preproc_else_token1] = ACTIONS(6951), - [aux_sym_preproc_elif_token1] = ACTIONS(6949), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6951), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6951), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_DASH] = ACTIONS(6949), - [anon_sym_PLUS] = ACTIONS(6949), - [anon_sym_STAR] = ACTIONS(6951), - [anon_sym_SLASH] = ACTIONS(6949), - [anon_sym_PERCENT] = ACTIONS(6951), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_PIPE] = ACTIONS(6949), - [anon_sym_CARET] = ACTIONS(6951), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_GT] = ACTIONS(6949), - [anon_sym_GT_EQ] = ACTIONS(6951), - [anon_sym_LT_EQ] = ACTIONS(6949), - [anon_sym_LT] = ACTIONS(6949), - [anon_sym_LT_LT] = ACTIONS(6951), - [anon_sym_GT_GT] = ACTIONS(6951), - [anon_sym___extension__] = ACTIONS(6949), - [anon_sym___attribute__] = ACTIONS(6949), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_COLON] = ACTIONS(6949), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(6951), - [anon_sym_LBRACK] = ACTIONS(6951), - [anon_sym_RBRACK] = ACTIONS(6951), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6949), - [anon_sym_volatile] = ACTIONS(6949), - [anon_sym_restrict] = ACTIONS(6949), - [anon_sym___restrict__] = ACTIONS(6949), - [anon_sym__Atomic] = ACTIONS(6949), - [anon_sym__Noreturn] = ACTIONS(6949), - [anon_sym_noreturn] = ACTIONS(6949), - [anon_sym__Nonnull] = ACTIONS(6949), - [anon_sym_mutable] = ACTIONS(6949), - [anon_sym_constinit] = ACTIONS(6949), - [anon_sym_consteval] = ACTIONS(6949), - [anon_sym_alignas] = ACTIONS(6949), - [anon_sym__Alignas] = ACTIONS(6949), - [anon_sym_QMARK] = ACTIONS(6951), - [anon_sym_LT_EQ_GT] = ACTIONS(6951), - [anon_sym_or] = ACTIONS(6949), - [anon_sym_and] = ACTIONS(6949), - [anon_sym_bitor] = ACTIONS(6949), - [anon_sym_xor] = ACTIONS(6949), - [anon_sym_bitand] = ACTIONS(6949), - [anon_sym_not_eq] = ACTIONS(6949), - [anon_sym_DASH_DASH] = ACTIONS(6951), - [anon_sym_PLUS_PLUS] = ACTIONS(6951), - [anon_sym_DOT] = ACTIONS(6949), - [anon_sym_DOT_STAR] = ACTIONS(6951), - [anon_sym_DASH_GT] = ACTIONS(6951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6949), - [anon_sym_decltype] = ACTIONS(6949), - [anon_sym_final] = ACTIONS(6949), - [anon_sym_override] = ACTIONS(6949), - [anon_sym_requires] = ACTIONS(6949), - }, - [STATE(3412)] = { - [sym_identifier] = ACTIONS(6270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6272), - [anon_sym_COMMA] = ACTIONS(6272), - [aux_sym_preproc_if_token2] = ACTIONS(6272), - [aux_sym_preproc_else_token1] = ACTIONS(6272), - [aux_sym_preproc_elif_token1] = ACTIONS(6270), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6272), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6272), - [anon_sym_LPAREN2] = ACTIONS(6272), - [anon_sym_DASH] = ACTIONS(6270), - [anon_sym_PLUS] = ACTIONS(6270), - [anon_sym_STAR] = ACTIONS(6272), - [anon_sym_SLASH] = ACTIONS(6270), - [anon_sym_PERCENT] = ACTIONS(6272), - [anon_sym_PIPE_PIPE] = ACTIONS(6272), - [anon_sym_AMP_AMP] = ACTIONS(6272), - [anon_sym_PIPE] = ACTIONS(6270), - [anon_sym_CARET] = ACTIONS(6272), - [anon_sym_AMP] = ACTIONS(6270), - [anon_sym_EQ_EQ] = ACTIONS(6272), - [anon_sym_BANG_EQ] = ACTIONS(6272), - [anon_sym_GT] = ACTIONS(6270), - [anon_sym_GT_EQ] = ACTIONS(6272), - [anon_sym_LT_EQ] = ACTIONS(6270), - [anon_sym_LT] = ACTIONS(6270), - [anon_sym_LT_LT] = ACTIONS(6272), - [anon_sym_GT_GT] = ACTIONS(6272), - [anon_sym___extension__] = ACTIONS(6270), - [anon_sym___attribute__] = ACTIONS(6270), - [anon_sym___attribute] = ACTIONS(6270), - [anon_sym_COLON] = ACTIONS(6270), - [anon_sym_COLON_COLON] = ACTIONS(6272), - [anon_sym_LBRACE] = ACTIONS(6272), - [anon_sym_LBRACK] = ACTIONS(6272), - [anon_sym_RBRACK] = ACTIONS(6272), - [anon_sym_const] = ACTIONS(6270), - [anon_sym_constexpr] = ACTIONS(6270), - [anon_sym_volatile] = ACTIONS(6270), - [anon_sym_restrict] = ACTIONS(6270), - [anon_sym___restrict__] = ACTIONS(6270), - [anon_sym__Atomic] = ACTIONS(6270), - [anon_sym__Noreturn] = ACTIONS(6270), - [anon_sym_noreturn] = ACTIONS(6270), - [anon_sym__Nonnull] = ACTIONS(6270), - [anon_sym_mutable] = ACTIONS(6270), - [anon_sym_constinit] = ACTIONS(6270), - [anon_sym_consteval] = ACTIONS(6270), - [anon_sym_alignas] = ACTIONS(6270), - [anon_sym__Alignas] = ACTIONS(6270), - [anon_sym_QMARK] = ACTIONS(6272), - [anon_sym_LT_EQ_GT] = ACTIONS(6272), - [anon_sym_or] = ACTIONS(6270), - [anon_sym_and] = ACTIONS(6270), - [anon_sym_bitor] = ACTIONS(6270), - [anon_sym_xor] = ACTIONS(6270), - [anon_sym_bitand] = ACTIONS(6270), - [anon_sym_not_eq] = ACTIONS(6270), - [anon_sym_DASH_DASH] = ACTIONS(6272), - [anon_sym_PLUS_PLUS] = ACTIONS(6272), - [anon_sym_DOT] = ACTIONS(6270), - [anon_sym_DOT_STAR] = ACTIONS(6272), - [anon_sym_DASH_GT] = ACTIONS(6272), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6270), - [anon_sym_decltype] = ACTIONS(6270), - [anon_sym_final] = ACTIONS(6270), - [anon_sym_override] = ACTIONS(6270), - [anon_sym_requires] = ACTIONS(6270), + [anon_sym_final] = ACTIONS(7201), + [anon_sym_override] = ACTIONS(7201), + [anon_sym_requires] = ACTIONS(7201), + [anon_sym_DASH_GT_STAR] = ACTIONS(7201), }, - [STATE(3413)] = { + [STATE(2933)] = { + [sym_decltype_auto] = STATE(3593), [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), [anon_sym_COMMA] = ACTIONS(7225), [anon_sym_RPAREN] = ACTIONS(7225), @@ -409662,6 +388831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(7223), [anon_sym_GT_GT] = ACTIONS(7223), [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_COLON_COLON] = ACTIONS(7227), [anon_sym_LBRACE] = ACTIONS(7225), [anon_sym_LBRACK] = ACTIONS(7225), [anon_sym_EQ] = ACTIONS(7223), @@ -409703,222 +388873,606 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7225), [anon_sym_DASH_GT] = ACTIONS(7223), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8871), + [anon_sym_decltype] = ACTIONS(6962), [anon_sym_final] = ACTIONS(7225), [anon_sym_override] = ACTIONS(7225), [anon_sym_requires] = ACTIONS(7225), [anon_sym_DASH_GT_STAR] = ACTIONS(7225), }, - [STATE(3414)] = { - [sym_string_literal] = STATE(2486), - [sym_template_argument_list] = STATE(3966), - [sym_raw_string_literal] = STATE(2486), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(8835), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(8872), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6515), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_RBRACE] = ACTIONS(5253), - [anon_sym_LBRACK] = ACTIONS(8838), - [anon_sym_EQ] = ACTIONS(5260), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5253), - [anon_sym_SLASH_EQ] = ACTIONS(5253), - [anon_sym_PERCENT_EQ] = ACTIONS(5253), - [anon_sym_PLUS_EQ] = ACTIONS(5253), - [anon_sym_DASH_EQ] = ACTIONS(5253), - [anon_sym_LT_LT_EQ] = ACTIONS(5253), - [anon_sym_GT_GT_EQ] = ACTIONS(5253), - [anon_sym_AMP_EQ] = ACTIONS(5253), - [anon_sym_CARET_EQ] = ACTIONS(5253), - [anon_sym_PIPE_EQ] = ACTIONS(5253), - [anon_sym_and_eq] = ACTIONS(5253), - [anon_sym_or_eq] = ACTIONS(5253), - [anon_sym_xor_eq] = ACTIONS(5253), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [STATE(2934)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7457), + [anon_sym_COMMA] = ACTIONS(7457), + [anon_sym_RPAREN] = ACTIONS(7457), + [anon_sym_LPAREN2] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7459), + [anon_sym_PLUS] = ACTIONS(7459), + [anon_sym_STAR] = ACTIONS(7459), + [anon_sym_SLASH] = ACTIONS(7459), + [anon_sym_PERCENT] = ACTIONS(7459), + [anon_sym_PIPE_PIPE] = ACTIONS(7457), + [anon_sym_AMP_AMP] = ACTIONS(7457), + [anon_sym_PIPE] = ACTIONS(7459), + [anon_sym_CARET] = ACTIONS(7459), + [anon_sym_AMP] = ACTIONS(7459), + [anon_sym_EQ_EQ] = ACTIONS(7457), + [anon_sym_BANG_EQ] = ACTIONS(7457), + [anon_sym_GT] = ACTIONS(7459), + [anon_sym_GT_EQ] = ACTIONS(7457), + [anon_sym_LT_EQ] = ACTIONS(7459), + [anon_sym_LT] = ACTIONS(7459), + [anon_sym_LT_LT] = ACTIONS(7459), + [anon_sym_GT_GT] = ACTIONS(7459), + [anon_sym___extension__] = ACTIONS(7457), + [anon_sym___attribute__] = ACTIONS(7457), + [anon_sym___attribute] = ACTIONS(7459), + [anon_sym_COLON] = ACTIONS(7459), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(7457), + [anon_sym_LBRACK] = ACTIONS(7457), + [anon_sym_EQ] = ACTIONS(7459), + [anon_sym_const] = ACTIONS(7459), + [anon_sym_constexpr] = ACTIONS(7457), + [anon_sym_volatile] = ACTIONS(7457), + [anon_sym_restrict] = ACTIONS(7457), + [anon_sym___restrict__] = ACTIONS(7457), + [anon_sym__Atomic] = ACTIONS(7457), + [anon_sym__Noreturn] = ACTIONS(7457), + [anon_sym_noreturn] = ACTIONS(7457), + [anon_sym__Nonnull] = ACTIONS(7457), + [anon_sym_mutable] = ACTIONS(7457), + [anon_sym_constinit] = ACTIONS(7457), + [anon_sym_consteval] = ACTIONS(7457), + [anon_sym_alignas] = ACTIONS(7457), + [anon_sym__Alignas] = ACTIONS(7457), + [anon_sym_QMARK] = ACTIONS(7457), + [anon_sym_STAR_EQ] = ACTIONS(7457), + [anon_sym_SLASH_EQ] = ACTIONS(7457), + [anon_sym_PERCENT_EQ] = ACTIONS(7457), + [anon_sym_PLUS_EQ] = ACTIONS(7457), + [anon_sym_DASH_EQ] = ACTIONS(7457), + [anon_sym_LT_LT_EQ] = ACTIONS(7457), + [anon_sym_GT_GT_EQ] = ACTIONS(7457), + [anon_sym_AMP_EQ] = ACTIONS(7457), + [anon_sym_CARET_EQ] = ACTIONS(7457), + [anon_sym_PIPE_EQ] = ACTIONS(7457), + [anon_sym_LT_EQ_GT] = ACTIONS(7457), + [anon_sym_or] = ACTIONS(7457), + [anon_sym_and] = ACTIONS(7457), + [anon_sym_bitor] = ACTIONS(7457), + [anon_sym_xor] = ACTIONS(7457), + [anon_sym_bitand] = ACTIONS(7457), + [anon_sym_not_eq] = ACTIONS(7457), + [anon_sym_DASH_DASH] = ACTIONS(7457), + [anon_sym_PLUS_PLUS] = ACTIONS(7457), + [anon_sym_DOT] = ACTIONS(7459), + [anon_sym_DOT_STAR] = ACTIONS(7457), + [anon_sym_DASH_GT] = ACTIONS(7459), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7457), + [anon_sym_override] = ACTIONS(7457), + [anon_sym_requires] = ACTIONS(7457), + [anon_sym_DASH_GT_STAR] = ACTIONS(7457), }, - [STATE(3415)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7229), - [anon_sym_COMMA] = ACTIONS(7229), - [anon_sym_RPAREN] = ACTIONS(7229), - [anon_sym_LPAREN2] = ACTIONS(7229), - [anon_sym_DASH] = ACTIONS(7227), - [anon_sym_PLUS] = ACTIONS(7227), - [anon_sym_STAR] = ACTIONS(7227), - [anon_sym_SLASH] = ACTIONS(7227), - [anon_sym_PERCENT] = ACTIONS(7227), - [anon_sym_PIPE_PIPE] = ACTIONS(7229), - [anon_sym_AMP_AMP] = ACTIONS(7229), - [anon_sym_PIPE] = ACTIONS(7227), - [anon_sym_CARET] = ACTIONS(7227), - [anon_sym_AMP] = ACTIONS(7227), - [anon_sym_EQ_EQ] = ACTIONS(7229), - [anon_sym_BANG_EQ] = ACTIONS(7229), - [anon_sym_GT] = ACTIONS(7227), - [anon_sym_GT_EQ] = ACTIONS(7229), - [anon_sym_LT_EQ] = ACTIONS(7227), - [anon_sym_LT] = ACTIONS(7227), - [anon_sym_LT_LT] = ACTIONS(7227), - [anon_sym_GT_GT] = ACTIONS(7227), - [anon_sym___extension__] = ACTIONS(7229), - [anon_sym_LBRACE] = ACTIONS(7229), - [anon_sym_LBRACK] = ACTIONS(7229), - [anon_sym_EQ] = ACTIONS(7227), - [anon_sym_const] = ACTIONS(7227), - [anon_sym_constexpr] = ACTIONS(7229), - [anon_sym_volatile] = ACTIONS(7229), - [anon_sym_restrict] = ACTIONS(7229), - [anon_sym___restrict__] = ACTIONS(7229), - [anon_sym__Atomic] = ACTIONS(7229), - [anon_sym__Noreturn] = ACTIONS(7229), - [anon_sym_noreturn] = ACTIONS(7229), - [anon_sym__Nonnull] = ACTIONS(7229), - [anon_sym_mutable] = ACTIONS(7229), - [anon_sym_constinit] = ACTIONS(7229), - [anon_sym_consteval] = ACTIONS(7229), - [anon_sym_alignas] = ACTIONS(7229), - [anon_sym__Alignas] = ACTIONS(7229), - [anon_sym_QMARK] = ACTIONS(7229), - [anon_sym_STAR_EQ] = ACTIONS(7229), - [anon_sym_SLASH_EQ] = ACTIONS(7229), - [anon_sym_PERCENT_EQ] = ACTIONS(7229), - [anon_sym_PLUS_EQ] = ACTIONS(7229), - [anon_sym_DASH_EQ] = ACTIONS(7229), - [anon_sym_LT_LT_EQ] = ACTIONS(7229), - [anon_sym_GT_GT_EQ] = ACTIONS(7229), - [anon_sym_AMP_EQ] = ACTIONS(7229), - [anon_sym_CARET_EQ] = ACTIONS(7229), - [anon_sym_PIPE_EQ] = ACTIONS(7229), - [anon_sym_LT_EQ_GT] = ACTIONS(7229), - [anon_sym_or] = ACTIONS(7229), - [anon_sym_and] = ACTIONS(7229), - [anon_sym_bitor] = ACTIONS(7229), - [anon_sym_xor] = ACTIONS(7229), - [anon_sym_bitand] = ACTIONS(7229), - [anon_sym_not_eq] = ACTIONS(7229), - [anon_sym_DASH_DASH] = ACTIONS(7229), - [anon_sym_PLUS_PLUS] = ACTIONS(7229), - [anon_sym_DOT] = ACTIONS(7227), - [anon_sym_DOT_STAR] = ACTIONS(7229), - [anon_sym_DASH_GT] = ACTIONS(7227), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7229), - [anon_sym_override] = ACTIONS(7229), - [anon_sym_requires] = ACTIONS(7229), - [anon_sym_DASH_GT_STAR] = ACTIONS(7229), + [STATE(2935)] = { + [sym_decltype_auto] = STATE(3016), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(7457), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7223), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8529), + [anon_sym_decltype] = ACTIONS(6975), + [anon_sym_DASH_GT_STAR] = ACTIONS(7225), }, - [STATE(3416)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), - [anon_sym_COMMA] = ACTIONS(7233), - [anon_sym_RPAREN] = ACTIONS(7233), - [anon_sym_LPAREN2] = ACTIONS(7233), - [anon_sym_DASH] = ACTIONS(7231), - [anon_sym_PLUS] = ACTIONS(7231), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7231), - [anon_sym_PIPE_PIPE] = ACTIONS(7233), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE] = ACTIONS(7231), - [anon_sym_CARET] = ACTIONS(7231), - [anon_sym_AMP] = ACTIONS(7231), - [anon_sym_EQ_EQ] = ACTIONS(7233), - [anon_sym_BANG_EQ] = ACTIONS(7233), - [anon_sym_GT] = ACTIONS(7231), - [anon_sym_GT_EQ] = ACTIONS(7233), - [anon_sym_LT_EQ] = ACTIONS(7231), - [anon_sym_LT] = ACTIONS(7231), - [anon_sym_LT_LT] = ACTIONS(7231), - [anon_sym_GT_GT] = ACTIONS(7231), - [anon_sym___extension__] = ACTIONS(7233), - [anon_sym_LBRACE] = ACTIONS(7233), - [anon_sym_LBRACK] = ACTIONS(7233), - [anon_sym_EQ] = ACTIONS(7231), - [anon_sym_const] = ACTIONS(7231), - [anon_sym_constexpr] = ACTIONS(7233), - [anon_sym_volatile] = ACTIONS(7233), - [anon_sym_restrict] = ACTIONS(7233), - [anon_sym___restrict__] = ACTIONS(7233), - [anon_sym__Atomic] = ACTIONS(7233), - [anon_sym__Noreturn] = ACTIONS(7233), - [anon_sym_noreturn] = ACTIONS(7233), - [anon_sym__Nonnull] = ACTIONS(7233), - [anon_sym_mutable] = ACTIONS(7233), - [anon_sym_constinit] = ACTIONS(7233), - [anon_sym_consteval] = ACTIONS(7233), - [anon_sym_alignas] = ACTIONS(7233), - [anon_sym__Alignas] = ACTIONS(7233), - [anon_sym_QMARK] = ACTIONS(7233), - [anon_sym_STAR_EQ] = ACTIONS(7233), - [anon_sym_SLASH_EQ] = ACTIONS(7233), - [anon_sym_PERCENT_EQ] = ACTIONS(7233), - [anon_sym_PLUS_EQ] = ACTIONS(7233), - [anon_sym_DASH_EQ] = ACTIONS(7233), - [anon_sym_LT_LT_EQ] = ACTIONS(7233), - [anon_sym_GT_GT_EQ] = ACTIONS(7233), - [anon_sym_AMP_EQ] = ACTIONS(7233), - [anon_sym_CARET_EQ] = ACTIONS(7233), - [anon_sym_PIPE_EQ] = ACTIONS(7233), - [anon_sym_LT_EQ_GT] = ACTIONS(7233), - [anon_sym_or] = ACTIONS(7233), - [anon_sym_and] = ACTIONS(7233), - [anon_sym_bitor] = ACTIONS(7233), - [anon_sym_xor] = ACTIONS(7233), - [anon_sym_bitand] = ACTIONS(7233), - [anon_sym_not_eq] = ACTIONS(7233), - [anon_sym_DASH_DASH] = ACTIONS(7233), - [anon_sym_PLUS_PLUS] = ACTIONS(7233), - [anon_sym_DOT] = ACTIONS(7231), - [anon_sym_DOT_STAR] = ACTIONS(7233), - [anon_sym_DASH_GT] = ACTIONS(7231), + [STATE(2936)] = { + [sym_attribute_specifier] = STATE(4124), + [sym_attribute_declaration] = STATE(4490), + [sym_gnu_asm_expression] = STATE(9129), + [sym_virtual_specifier] = STATE(4610), + [sym__function_attributes_end] = STATE(4298), + [sym__function_postfix] = STATE(4840), + [sym_trailing_return_type] = STATE(4339), + [sym_requires_clause] = STATE(4840), + [aux_sym_type_definition_repeat1] = STATE(4124), + [aux_sym_attributed_declarator_repeat1] = STATE(4490), + [aux_sym__function_postfix_repeat1] = STATE(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6646), + [anon_sym___attribute] = ACTIONS(6648), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8168), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7233), - [anon_sym_override] = ACTIONS(7233), - [anon_sym_requires] = ACTIONS(7233), - [anon_sym_DASH_GT_STAR] = ACTIONS(7233), + [anon_sym_final] = ACTIONS(8174), + [anon_sym_override] = ACTIONS(8174), + [anon_sym_requires] = ACTIONS(8177), + [anon_sym_DASH_GT_STAR] = ACTIONS(7791), }, - [STATE(3417)] = { + [STATE(2937)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7737), + [anon_sym_COMMA] = ACTIONS(7737), + [anon_sym_LPAREN2] = ACTIONS(7737), + [anon_sym_DASH] = ACTIONS(7735), + [anon_sym_PLUS] = ACTIONS(7735), + [anon_sym_STAR] = ACTIONS(7735), + [anon_sym_SLASH] = ACTIONS(7735), + [anon_sym_PERCENT] = ACTIONS(7735), + [anon_sym_PIPE_PIPE] = ACTIONS(7737), + [anon_sym_AMP_AMP] = ACTIONS(7737), + [anon_sym_PIPE] = ACTIONS(7735), + [anon_sym_CARET] = ACTIONS(7735), + [anon_sym_AMP] = ACTIONS(7735), + [anon_sym_EQ_EQ] = ACTIONS(7737), + [anon_sym_BANG_EQ] = ACTIONS(7737), + [anon_sym_GT] = ACTIONS(7735), + [anon_sym_GT_EQ] = ACTIONS(7735), + [anon_sym_LT_EQ] = ACTIONS(7735), + [anon_sym_LT] = ACTIONS(7735), + [anon_sym_LT_LT] = ACTIONS(7735), + [anon_sym_GT_GT] = ACTIONS(7735), + [anon_sym___extension__] = ACTIONS(7737), + [anon_sym___attribute__] = ACTIONS(7737), + [anon_sym___attribute] = ACTIONS(7735), + [anon_sym_LBRACE] = ACTIONS(7737), + [anon_sym_LBRACK] = ACTIONS(7737), + [anon_sym_EQ] = ACTIONS(7735), + [anon_sym_const] = ACTIONS(7735), + [anon_sym_constexpr] = ACTIONS(7737), + [anon_sym_volatile] = ACTIONS(7737), + [anon_sym_restrict] = ACTIONS(7737), + [anon_sym___restrict__] = ACTIONS(7737), + [anon_sym__Atomic] = ACTIONS(7737), + [anon_sym__Noreturn] = ACTIONS(7737), + [anon_sym_noreturn] = ACTIONS(7737), + [anon_sym__Nonnull] = ACTIONS(7737), + [anon_sym_mutable] = ACTIONS(7737), + [anon_sym_constinit] = ACTIONS(7737), + [anon_sym_consteval] = ACTIONS(7737), + [anon_sym_alignas] = ACTIONS(7737), + [anon_sym__Alignas] = ACTIONS(7737), + [anon_sym_QMARK] = ACTIONS(7737), + [anon_sym_STAR_EQ] = ACTIONS(7737), + [anon_sym_SLASH_EQ] = ACTIONS(7737), + [anon_sym_PERCENT_EQ] = ACTIONS(7737), + [anon_sym_PLUS_EQ] = ACTIONS(7737), + [anon_sym_DASH_EQ] = ACTIONS(7737), + [anon_sym_LT_LT_EQ] = ACTIONS(7737), + [anon_sym_GT_GT_EQ] = ACTIONS(7735), + [anon_sym_AMP_EQ] = ACTIONS(7737), + [anon_sym_CARET_EQ] = ACTIONS(7737), + [anon_sym_PIPE_EQ] = ACTIONS(7737), + [anon_sym_and_eq] = ACTIONS(7737), + [anon_sym_or_eq] = ACTIONS(7737), + [anon_sym_xor_eq] = ACTIONS(7737), + [anon_sym_LT_EQ_GT] = ACTIONS(7737), + [anon_sym_or] = ACTIONS(7735), + [anon_sym_and] = ACTIONS(7735), + [anon_sym_bitor] = ACTIONS(7737), + [anon_sym_xor] = ACTIONS(7735), + [anon_sym_bitand] = ACTIONS(7737), + [anon_sym_not_eq] = ACTIONS(7737), + [anon_sym_DASH_DASH] = ACTIONS(7737), + [anon_sym_PLUS_PLUS] = ACTIONS(7737), + [anon_sym_DOT] = ACTIONS(7735), + [anon_sym_DOT_STAR] = ACTIONS(7737), + [anon_sym_DASH_GT] = ACTIONS(7737), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7737), + [anon_sym_override] = ACTIONS(7737), + [anon_sym_GT2] = ACTIONS(7737), + [anon_sym_requires] = ACTIONS(7737), + }, + [STATE(2938)] = { + [sym_identifier] = ACTIONS(6594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6601), + [anon_sym_COMMA] = ACTIONS(6601), + [anon_sym_RPAREN] = ACTIONS(6601), + [aux_sym_preproc_if_token2] = ACTIONS(6601), + [aux_sym_preproc_else_token1] = ACTIONS(6601), + [aux_sym_preproc_elif_token1] = ACTIONS(6594), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6601), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6601), + [anon_sym_LPAREN2] = ACTIONS(6601), + [anon_sym_DASH] = ACTIONS(6594), + [anon_sym_PLUS] = ACTIONS(6594), + [anon_sym_STAR] = ACTIONS(6601), + [anon_sym_SLASH] = ACTIONS(6594), + [anon_sym_PERCENT] = ACTIONS(6601), + [anon_sym_PIPE_PIPE] = ACTIONS(6601), + [anon_sym_AMP_AMP] = ACTIONS(6601), + [anon_sym_PIPE] = ACTIONS(6594), + [anon_sym_CARET] = ACTIONS(6601), + [anon_sym_AMP] = ACTIONS(6594), + [anon_sym_EQ_EQ] = ACTIONS(6601), + [anon_sym_BANG_EQ] = ACTIONS(6601), + [anon_sym_GT] = ACTIONS(6594), + [anon_sym_GT_EQ] = ACTIONS(6601), + [anon_sym_LT_EQ] = ACTIONS(6594), + [anon_sym_LT] = ACTIONS(6594), + [anon_sym_LT_LT] = ACTIONS(6601), + [anon_sym_GT_GT] = ACTIONS(6601), + [anon_sym_SEMI] = ACTIONS(6601), + [anon_sym___extension__] = ACTIONS(6594), + [anon_sym___attribute__] = ACTIONS(6594), + [anon_sym___attribute] = ACTIONS(6594), + [anon_sym_COLON] = ACTIONS(6594), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6601), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_RBRACE] = ACTIONS(6601), + [anon_sym_LBRACK] = ACTIONS(6601), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6594), + [anon_sym_volatile] = ACTIONS(6594), + [anon_sym_restrict] = ACTIONS(6594), + [anon_sym___restrict__] = ACTIONS(6594), + [anon_sym__Atomic] = ACTIONS(6594), + [anon_sym__Noreturn] = ACTIONS(6594), + [anon_sym_noreturn] = ACTIONS(6594), + [anon_sym__Nonnull] = ACTIONS(6594), + [anon_sym_mutable] = ACTIONS(6594), + [anon_sym_constinit] = ACTIONS(6594), + [anon_sym_consteval] = ACTIONS(6594), + [anon_sym_alignas] = ACTIONS(6594), + [anon_sym__Alignas] = ACTIONS(6594), + [anon_sym_QMARK] = ACTIONS(6601), + [anon_sym_LT_EQ_GT] = ACTIONS(6601), + [anon_sym_or] = ACTIONS(6594), + [anon_sym_and] = ACTIONS(6594), + [anon_sym_bitor] = ACTIONS(6594), + [anon_sym_xor] = ACTIONS(6594), + [anon_sym_bitand] = ACTIONS(6594), + [anon_sym_not_eq] = ACTIONS(6594), + [anon_sym_DASH_DASH] = ACTIONS(6601), + [anon_sym_PLUS_PLUS] = ACTIONS(6601), + [anon_sym_DOT] = ACTIONS(6594), + [anon_sym_DOT_STAR] = ACTIONS(6601), + [anon_sym_DASH_GT] = ACTIONS(6601), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6594), + [anon_sym_decltype] = ACTIONS(6594), + [anon_sym_final] = ACTIONS(6594), + [anon_sym_override] = ACTIONS(6594), + [anon_sym_requires] = ACTIONS(6594), + [anon_sym_COLON_RBRACK] = ACTIONS(6601), + }, + [STATE(2939)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7649), + [anon_sym_COMMA] = ACTIONS(7649), + [anon_sym_LPAREN2] = ACTIONS(7649), + [anon_sym_DASH] = ACTIONS(7647), + [anon_sym_PLUS] = ACTIONS(7647), + [anon_sym_STAR] = ACTIONS(7647), + [anon_sym_SLASH] = ACTIONS(7647), + [anon_sym_PERCENT] = ACTIONS(7647), + [anon_sym_PIPE_PIPE] = ACTIONS(7649), + [anon_sym_AMP_AMP] = ACTIONS(7649), + [anon_sym_PIPE] = ACTIONS(7647), + [anon_sym_CARET] = ACTIONS(7647), + [anon_sym_AMP] = ACTIONS(7647), + [anon_sym_EQ_EQ] = ACTIONS(7649), + [anon_sym_BANG_EQ] = ACTIONS(7649), + [anon_sym_GT] = ACTIONS(7647), + [anon_sym_GT_EQ] = ACTIONS(7647), + [anon_sym_LT_EQ] = ACTIONS(7647), + [anon_sym_LT] = ACTIONS(7647), + [anon_sym_LT_LT] = ACTIONS(7647), + [anon_sym_GT_GT] = ACTIONS(7647), + [anon_sym___extension__] = ACTIONS(7649), + [anon_sym___attribute__] = ACTIONS(7649), + [anon_sym___attribute] = ACTIONS(7647), + [anon_sym_LBRACE] = ACTIONS(7649), + [anon_sym_LBRACK] = ACTIONS(7649), + [anon_sym_EQ] = ACTIONS(7647), + [anon_sym_const] = ACTIONS(7647), + [anon_sym_constexpr] = ACTIONS(7649), + [anon_sym_volatile] = ACTIONS(7649), + [anon_sym_restrict] = ACTIONS(7649), + [anon_sym___restrict__] = ACTIONS(7649), + [anon_sym__Atomic] = ACTIONS(7649), + [anon_sym__Noreturn] = ACTIONS(7649), + [anon_sym_noreturn] = ACTIONS(7649), + [anon_sym__Nonnull] = ACTIONS(7649), + [anon_sym_mutable] = ACTIONS(7649), + [anon_sym_constinit] = ACTIONS(7649), + [anon_sym_consteval] = ACTIONS(7649), + [anon_sym_alignas] = ACTIONS(7649), + [anon_sym__Alignas] = ACTIONS(7649), + [anon_sym_QMARK] = ACTIONS(7649), + [anon_sym_STAR_EQ] = ACTIONS(7649), + [anon_sym_SLASH_EQ] = ACTIONS(7649), + [anon_sym_PERCENT_EQ] = ACTIONS(7649), + [anon_sym_PLUS_EQ] = ACTIONS(7649), + [anon_sym_DASH_EQ] = ACTIONS(7649), + [anon_sym_LT_LT_EQ] = ACTIONS(7649), + [anon_sym_GT_GT_EQ] = ACTIONS(7647), + [anon_sym_AMP_EQ] = ACTIONS(7649), + [anon_sym_CARET_EQ] = ACTIONS(7649), + [anon_sym_PIPE_EQ] = ACTIONS(7649), + [anon_sym_and_eq] = ACTIONS(7649), + [anon_sym_or_eq] = ACTIONS(7649), + [anon_sym_xor_eq] = ACTIONS(7649), + [anon_sym_LT_EQ_GT] = ACTIONS(7649), + [anon_sym_or] = ACTIONS(7647), + [anon_sym_and] = ACTIONS(7647), + [anon_sym_bitor] = ACTIONS(7649), + [anon_sym_xor] = ACTIONS(7647), + [anon_sym_bitand] = ACTIONS(7649), + [anon_sym_not_eq] = ACTIONS(7649), + [anon_sym_DASH_DASH] = ACTIONS(7649), + [anon_sym_PLUS_PLUS] = ACTIONS(7649), + [anon_sym_DOT] = ACTIONS(7647), + [anon_sym_DOT_STAR] = ACTIONS(7649), + [anon_sym_DASH_GT] = ACTIONS(7649), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7649), + [anon_sym_override] = ACTIONS(7649), + [anon_sym_GT2] = ACTIONS(7649), + [anon_sym_requires] = ACTIONS(7649), + }, + [STATE(2940)] = { + [sym_catch_clause] = STATE(2926), + [aux_sym_constructor_try_statement_repeat1] = STATE(2926), + [sym_identifier] = ACTIONS(3165), + [aux_sym_preproc_def_token1] = ACTIONS(3165), + [aux_sym_preproc_if_token1] = ACTIONS(3165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3165), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3165), + [sym_preproc_directive] = ACTIONS(3165), + [anon_sym_LPAREN2] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(3167), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym___extension__] = ACTIONS(3165), + [anon_sym_typedef] = ACTIONS(3165), + [anon_sym_virtual] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3165), + [anon_sym___attribute__] = ACTIONS(3165), + [anon_sym___attribute] = ACTIONS(3165), + [anon_sym_using] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(3167), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3167), + [anon_sym___declspec] = ACTIONS(3165), + [anon_sym___based] = ACTIONS(3165), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_signed] = ACTIONS(3165), + [anon_sym_unsigned] = ACTIONS(3165), + [anon_sym_long] = ACTIONS(3165), + [anon_sym_short] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_static] = ACTIONS(3165), + [anon_sym_register] = ACTIONS(3165), + [anon_sym_inline] = ACTIONS(3165), + [anon_sym___inline] = ACTIONS(3165), + [anon_sym___inline__] = ACTIONS(3165), + [anon_sym___forceinline] = ACTIONS(3165), + [anon_sym_thread_local] = ACTIONS(3165), + [anon_sym___thread] = ACTIONS(3165), + [anon_sym_const] = ACTIONS(3165), + [anon_sym_constexpr] = ACTIONS(3165), + [anon_sym_volatile] = ACTIONS(3165), + [anon_sym_restrict] = ACTIONS(3165), + [anon_sym___restrict__] = ACTIONS(3165), + [anon_sym__Atomic] = ACTIONS(3165), + [anon_sym__Noreturn] = ACTIONS(3165), + [anon_sym_noreturn] = ACTIONS(3165), + [anon_sym__Nonnull] = ACTIONS(3165), + [anon_sym_mutable] = ACTIONS(3165), + [anon_sym_constinit] = ACTIONS(3165), + [anon_sym_consteval] = ACTIONS(3165), + [anon_sym_alignas] = ACTIONS(3165), + [anon_sym__Alignas] = ACTIONS(3165), + [sym_primitive_type] = ACTIONS(3165), + [anon_sym_enum] = ACTIONS(3165), + [anon_sym_class] = ACTIONS(3165), + [anon_sym_struct] = ACTIONS(3165), + [anon_sym_union] = ACTIONS(3165), + [anon_sym_typename] = ACTIONS(3165), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3165), + [anon_sym_decltype] = ACTIONS(3165), + [anon_sym_explicit] = ACTIONS(3165), + [anon_sym_private] = ACTIONS(3165), + [anon_sym_template] = ACTIONS(3165), + [anon_sym_operator] = ACTIONS(3165), + [anon_sym_friend] = ACTIONS(3165), + [anon_sym_public] = ACTIONS(3165), + [anon_sym_protected] = ACTIONS(3165), + [anon_sym_static_assert] = ACTIONS(3165), + [anon_sym_catch] = ACTIONS(8841), + [anon_sym_LBRACK_COLON] = ACTIONS(3167), + }, + [STATE(2941)] = { + [sym_type_qualifier] = STATE(2923), + [sym_alignas_qualifier] = STATE(2726), + [aux_sym__type_definition_type_repeat1] = STATE(2923), + [aux_sym_sized_type_specifier_repeat1] = STATE(3378), + [sym_identifier] = ACTIONS(8873), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), + [anon_sym_COMMA] = ACTIONS(7249), + [aux_sym_preproc_if_token2] = ACTIONS(7249), + [aux_sym_preproc_else_token1] = ACTIONS(7249), + [aux_sym_preproc_elif_token1] = ACTIONS(7251), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7249), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7249), + [anon_sym_LPAREN2] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7251), + [anon_sym_PLUS] = ACTIONS(7251), + [anon_sym_STAR] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7251), + [anon_sym_PERCENT] = ACTIONS(7249), + [anon_sym_PIPE_PIPE] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7249), + [anon_sym_PIPE] = ACTIONS(7251), + [anon_sym_CARET] = ACTIONS(7249), + [anon_sym_AMP] = ACTIONS(7251), + [anon_sym_EQ_EQ] = ACTIONS(7249), + [anon_sym_BANG_EQ] = ACTIONS(7249), + [anon_sym_GT] = ACTIONS(7251), + [anon_sym_GT_EQ] = ACTIONS(7249), + [anon_sym_LT_EQ] = ACTIONS(7251), + [anon_sym_LT] = ACTIONS(7251), + [anon_sym_LT_LT] = ACTIONS(7249), + [anon_sym_GT_GT] = ACTIONS(7249), + [anon_sym___extension__] = ACTIONS(8756), + [anon_sym___attribute__] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7251), + [anon_sym_LBRACE] = ACTIONS(7249), + [anon_sym_signed] = ACTIONS(8876), + [anon_sym_unsigned] = ACTIONS(8876), + [anon_sym_long] = ACTIONS(8876), + [anon_sym_short] = ACTIONS(8876), + [anon_sym_LBRACK] = ACTIONS(7249), + [anon_sym_const] = ACTIONS(8756), + [anon_sym_constexpr] = ACTIONS(8756), + [anon_sym_volatile] = ACTIONS(8756), + [anon_sym_restrict] = ACTIONS(8756), + [anon_sym___restrict__] = ACTIONS(8756), + [anon_sym__Atomic] = ACTIONS(8756), + [anon_sym__Noreturn] = ACTIONS(8756), + [anon_sym_noreturn] = ACTIONS(8756), + [anon_sym__Nonnull] = ACTIONS(8756), + [anon_sym_mutable] = ACTIONS(8756), + [anon_sym_constinit] = ACTIONS(8756), + [anon_sym_consteval] = ACTIONS(8756), + [anon_sym_alignas] = ACTIONS(8761), + [anon_sym__Alignas] = ACTIONS(8761), + [sym_primitive_type] = ACTIONS(8878), + [anon_sym_QMARK] = ACTIONS(7249), + [anon_sym_LT_EQ_GT] = ACTIONS(7249), + [anon_sym_or] = ACTIONS(7251), + [anon_sym_and] = ACTIONS(7251), + [anon_sym_bitor] = ACTIONS(7251), + [anon_sym_xor] = ACTIONS(7251), + [anon_sym_bitand] = ACTIONS(7251), + [anon_sym_not_eq] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7249), + [anon_sym_PLUS_PLUS] = ACTIONS(7249), + [anon_sym_DOT] = ACTIONS(7251), + [anon_sym_DOT_STAR] = ACTIONS(7249), + [anon_sym_DASH_GT] = ACTIONS(7249), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7251), + [anon_sym_override] = ACTIONS(7251), + [anon_sym_requires] = ACTIONS(7251), + }, + [STATE(2942)] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), [anon_sym_COMMA] = ACTIONS(7225), [anon_sym_RPAREN] = ACTIONS(7225), @@ -409942,6 +389496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(7223), [anon_sym_GT_GT] = ACTIONS(7223), [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_COLON_COLON] = ACTIONS(7227), [anon_sym_LBRACE] = ACTIONS(7225), [anon_sym_LBRACK] = ACTIONS(7225), [anon_sym_EQ] = ACTIONS(7223), @@ -409970,11 +389525,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(7225), [anon_sym_CARET_EQ] = ACTIONS(7225), [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7225), - [anon_sym_and] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), [anon_sym_bitand] = ACTIONS(7225), [anon_sym_not_eq] = ACTIONS(7225), [anon_sym_DASH_DASH] = ACTIONS(7225), @@ -409988,11 +389546,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(7225), [anon_sym_DASH_GT_STAR] = ACTIONS(7225), }, - [STATE(3418)] = { + [STATE(2943)] = { + [sym_attribute_specifier] = STATE(4124), + [sym_attribute_declaration] = STATE(4490), + [sym_gnu_asm_expression] = STATE(9129), + [sym_virtual_specifier] = STATE(4610), + [sym__function_attributes_end] = STATE(4300), + [sym__function_postfix] = STATE(4890), + [sym_trailing_return_type] = STATE(4347), + [sym_requires_clause] = STATE(4890), + [aux_sym_type_definition_repeat1] = STATE(4124), + [aux_sym_attributed_declarator_repeat1] = STATE(4490), + [aux_sym__function_postfix_repeat1] = STATE(4610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_RPAREN] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym___attribute__] = ACTIONS(6646), + [anon_sym___attribute] = ACTIONS(6648), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7966), + [anon_sym_or_eq] = ACTIONS(7966), + [anon_sym_xor_eq] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(8271), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6669), + [anon_sym_override] = ACTIONS(6669), + [anon_sym_requires] = ACTIONS(6671), + [anon_sym_DASH_GT_STAR] = ACTIONS(7966), + }, + [STATE(2944)] = { + [sym_argument_list] = STATE(5537), + [sym_initializer_list] = STATE(6093), + [aux_sym_sized_type_specifier_repeat1] = STATE(2614), [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), [anon_sym_COMMA] = ACTIONS(7225), [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(8569), [anon_sym_DASH] = ACTIONS(7223), [anon_sym_PLUS] = ACTIONS(7223), [anon_sym_STAR] = ACTIONS(7223), @@ -410012,7 +389647,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(7223), [anon_sym_GT_GT] = ACTIONS(7223), [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_signed] = ACTIONS(8535), + [anon_sym_unsigned] = ACTIONS(8535), + [anon_sym_long] = ACTIONS(8535), + [anon_sym_short] = ACTIONS(8535), [anon_sym_LBRACK] = ACTIONS(7225), [anon_sym_EQ] = ACTIONS(7223), [anon_sym_const] = ACTIONS(7223), @@ -410053,1378 +389692,924 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7225), [anon_sym_DASH_GT] = ACTIONS(7223), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), [anon_sym_DASH_GT_STAR] = ACTIONS(7225), }, - [STATE(3419)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7385), - [anon_sym_COMMA] = ACTIONS(7385), - [anon_sym_RPAREN] = ACTIONS(7385), - [anon_sym_LPAREN2] = ACTIONS(7385), - [anon_sym_DASH] = ACTIONS(7383), - [anon_sym_PLUS] = ACTIONS(7383), - [anon_sym_STAR] = ACTIONS(7385), - [anon_sym_SLASH] = ACTIONS(7383), - [anon_sym_PERCENT] = ACTIONS(7385), - [anon_sym_PIPE_PIPE] = ACTIONS(7385), - [anon_sym_AMP_AMP] = ACTIONS(7385), - [anon_sym_PIPE] = ACTIONS(7383), - [anon_sym_CARET] = ACTIONS(7385), - [anon_sym_AMP] = ACTIONS(7383), - [anon_sym_EQ_EQ] = ACTIONS(7385), - [anon_sym_BANG_EQ] = ACTIONS(7385), - [anon_sym_GT] = ACTIONS(7383), - [anon_sym_GT_EQ] = ACTIONS(7385), - [anon_sym_LT_EQ] = ACTIONS(7383), - [anon_sym_LT] = ACTIONS(7383), - [anon_sym_LT_LT] = ACTIONS(7385), - [anon_sym_GT_GT] = ACTIONS(7385), - [anon_sym_SEMI] = ACTIONS(7385), - [anon_sym___extension__] = ACTIONS(7385), - [anon_sym___attribute__] = ACTIONS(7385), - [anon_sym___attribute] = ACTIONS(7383), - [anon_sym_COLON] = ACTIONS(7383), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7385), - [anon_sym_LBRACE] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7385), - [anon_sym_signed] = ACTIONS(8875), - [anon_sym_unsigned] = ACTIONS(8875), - [anon_sym_long] = ACTIONS(8875), - [anon_sym_short] = ACTIONS(8875), - [anon_sym_LBRACK] = ACTIONS(7385), - [anon_sym_const] = ACTIONS(7383), - [anon_sym_constexpr] = ACTIONS(7385), - [anon_sym_volatile] = ACTIONS(7385), - [anon_sym_restrict] = ACTIONS(7385), - [anon_sym___restrict__] = ACTIONS(7385), - [anon_sym__Atomic] = ACTIONS(7385), - [anon_sym__Noreturn] = ACTIONS(7385), - [anon_sym_noreturn] = ACTIONS(7385), - [anon_sym__Nonnull] = ACTIONS(7385), - [anon_sym_mutable] = ACTIONS(7385), - [anon_sym_constinit] = ACTIONS(7385), - [anon_sym_consteval] = ACTIONS(7385), - [anon_sym_alignas] = ACTIONS(7385), - [anon_sym__Alignas] = ACTIONS(7385), - [anon_sym_QMARK] = ACTIONS(7385), - [anon_sym_LT_EQ_GT] = ACTIONS(7385), - [anon_sym_or] = ACTIONS(7385), - [anon_sym_and] = ACTIONS(7385), - [anon_sym_bitor] = ACTIONS(7385), - [anon_sym_xor] = ACTIONS(7385), - [anon_sym_bitand] = ACTIONS(7385), - [anon_sym_not_eq] = ACTIONS(7385), - [anon_sym_DASH_DASH] = ACTIONS(7385), - [anon_sym_PLUS_PLUS] = ACTIONS(7385), - [anon_sym_DOT] = ACTIONS(7383), - [anon_sym_DOT_STAR] = ACTIONS(7385), - [anon_sym_DASH_GT] = ACTIONS(7385), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7385), - [anon_sym_override] = ACTIONS(7385), - [anon_sym_requires] = ACTIONS(7385), - [anon_sym_COLON_RBRACK] = ACTIONS(7385), - }, - [STATE(3420)] = { - [sym__abstract_declarator] = STATE(6196), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(2399), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(1976), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(2399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), - [anon_sym_COMMA] = ACTIONS(6995), - [anon_sym_RPAREN] = ACTIONS(6995), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6997), - [anon_sym_PLUS] = ACTIONS(6997), - [anon_sym_STAR] = ACTIONS(8030), - [anon_sym_SLASH] = ACTIONS(6997), - [anon_sym_PERCENT] = ACTIONS(6995), - [anon_sym_PIPE_PIPE] = ACTIONS(6995), - [anon_sym_AMP_AMP] = ACTIONS(8032), - [anon_sym_PIPE] = ACTIONS(6997), - [anon_sym_CARET] = ACTIONS(6995), - [anon_sym_AMP] = ACTIONS(8034), - [anon_sym_EQ_EQ] = ACTIONS(6995), - [anon_sym_BANG_EQ] = ACTIONS(6995), - [anon_sym_GT] = ACTIONS(6997), - [anon_sym_GT_EQ] = ACTIONS(6995), - [anon_sym_LT_EQ] = ACTIONS(6997), - [anon_sym_LT] = ACTIONS(6997), - [anon_sym_LT_LT] = ACTIONS(6995), - [anon_sym_GT_GT] = ACTIONS(6995), - [anon_sym_SEMI] = ACTIONS(6995), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym_COLON] = ACTIONS(6997), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6995), - [anon_sym_RBRACE] = ACTIONS(6995), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(6995), - [anon_sym_LT_EQ_GT] = ACTIONS(6995), - [anon_sym_or] = ACTIONS(6995), - [anon_sym_and] = ACTIONS(6995), - [anon_sym_bitor] = ACTIONS(6995), - [anon_sym_xor] = ACTIONS(6995), - [anon_sym_bitand] = ACTIONS(6995), - [anon_sym_not_eq] = ACTIONS(6995), - [anon_sym_DASH_DASH] = ACTIONS(6995), - [anon_sym_PLUS_PLUS] = ACTIONS(6995), - [anon_sym_DOT] = ACTIONS(6997), - [anon_sym_DOT_STAR] = ACTIONS(6995), - [anon_sym_DASH_GT] = ACTIONS(6995), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6995), - }, - [STATE(3421)] = { - [sym_string_literal] = STATE(4004), - [sym_template_argument_list] = STATE(5595), - [sym_raw_string_literal] = STATE(4004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(6713), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym_COLON] = ACTIONS(8877), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_RBRACE] = ACTIONS(5253), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(5276), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5278), - [anon_sym_or_eq] = ACTIONS(5278), - [anon_sym_xor_eq] = ACTIONS(5278), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - }, - [STATE(3422)] = { - [sym_argument_list] = STATE(3783), - [sym_initializer_list] = STATE(5860), - [sym_identifier] = ACTIONS(6798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [aux_sym_preproc_if_token2] = ACTIONS(6800), - [aux_sym_preproc_else_token1] = ACTIONS(6800), - [aux_sym_preproc_elif_token1] = ACTIONS(6798), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(7399), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6800), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6800), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6800), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6800), - [anon_sym_GT_GT] = ACTIONS(6800), - [anon_sym_SEMI] = ACTIONS(6800), - [anon_sym___extension__] = ACTIONS(6798), - [anon_sym___attribute__] = ACTIONS(6798), - [anon_sym___attribute] = ACTIONS(6798), - [anon_sym_COLON] = ACTIONS(6798), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6798), - [anon_sym_volatile] = ACTIONS(6798), - [anon_sym_restrict] = ACTIONS(6798), - [anon_sym___restrict__] = ACTIONS(6798), - [anon_sym__Atomic] = ACTIONS(6798), - [anon_sym__Noreturn] = ACTIONS(6798), - [anon_sym_noreturn] = ACTIONS(6798), - [anon_sym__Nonnull] = ACTIONS(6798), - [anon_sym_mutable] = ACTIONS(6798), - [anon_sym_constinit] = ACTIONS(6798), - [anon_sym_consteval] = ACTIONS(6798), - [anon_sym_alignas] = ACTIONS(6798), - [anon_sym__Alignas] = ACTIONS(6798), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6798), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6798), - [anon_sym_not_eq] = ACTIONS(6798), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6800), - }, - [STATE(3423)] = { - [sym_identifier] = ACTIONS(6242), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), - [anon_sym_COMMA] = ACTIONS(6244), - [aux_sym_preproc_if_token2] = ACTIONS(6244), - [aux_sym_preproc_else_token1] = ACTIONS(6244), - [aux_sym_preproc_elif_token1] = ACTIONS(6242), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6244), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6244), - [anon_sym_LPAREN2] = ACTIONS(6244), - [anon_sym_DASH] = ACTIONS(6242), - [anon_sym_PLUS] = ACTIONS(6242), - [anon_sym_STAR] = ACTIONS(6244), - [anon_sym_SLASH] = ACTIONS(6242), - [anon_sym_PERCENT] = ACTIONS(6244), - [anon_sym_PIPE_PIPE] = ACTIONS(6244), - [anon_sym_AMP_AMP] = ACTIONS(6244), - [anon_sym_PIPE] = ACTIONS(6242), - [anon_sym_CARET] = ACTIONS(6244), - [anon_sym_AMP] = ACTIONS(6242), - [anon_sym_EQ_EQ] = ACTIONS(6244), - [anon_sym_BANG_EQ] = ACTIONS(6244), - [anon_sym_GT] = ACTIONS(6242), - [anon_sym_GT_EQ] = ACTIONS(6244), - [anon_sym_LT_EQ] = ACTIONS(6242), - [anon_sym_LT] = ACTIONS(6242), - [anon_sym_LT_LT] = ACTIONS(6244), - [anon_sym_GT_GT] = ACTIONS(6244), - [anon_sym___extension__] = ACTIONS(6242), - [anon_sym___attribute__] = ACTIONS(6242), - [anon_sym___attribute] = ACTIONS(6242), - [anon_sym_COLON] = ACTIONS(6242), - [anon_sym_COLON_COLON] = ACTIONS(6244), - [anon_sym_LBRACE] = ACTIONS(6244), - [anon_sym_LBRACK] = ACTIONS(6244), - [anon_sym_RBRACK] = ACTIONS(6244), - [anon_sym_const] = ACTIONS(6242), - [anon_sym_constexpr] = ACTIONS(6242), - [anon_sym_volatile] = ACTIONS(6242), - [anon_sym_restrict] = ACTIONS(6242), - [anon_sym___restrict__] = ACTIONS(6242), - [anon_sym__Atomic] = ACTIONS(6242), - [anon_sym__Noreturn] = ACTIONS(6242), - [anon_sym_noreturn] = ACTIONS(6242), - [anon_sym__Nonnull] = ACTIONS(6242), - [anon_sym_mutable] = ACTIONS(6242), - [anon_sym_constinit] = ACTIONS(6242), - [anon_sym_consteval] = ACTIONS(6242), - [anon_sym_alignas] = ACTIONS(6242), - [anon_sym__Alignas] = ACTIONS(6242), - [anon_sym_QMARK] = ACTIONS(6244), - [anon_sym_LT_EQ_GT] = ACTIONS(6244), - [anon_sym_or] = ACTIONS(6242), - [anon_sym_and] = ACTIONS(6242), - [anon_sym_bitor] = ACTIONS(6242), - [anon_sym_xor] = ACTIONS(6242), - [anon_sym_bitand] = ACTIONS(6242), - [anon_sym_not_eq] = ACTIONS(6242), - [anon_sym_DASH_DASH] = ACTIONS(6244), - [anon_sym_PLUS_PLUS] = ACTIONS(6244), - [anon_sym_DOT] = ACTIONS(6242), - [anon_sym_DOT_STAR] = ACTIONS(6244), - [anon_sym_DASH_GT] = ACTIONS(6244), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6242), - [anon_sym_decltype] = ACTIONS(6242), - [anon_sym_final] = ACTIONS(6242), - [anon_sym_override] = ACTIONS(6242), - [anon_sym_requires] = ACTIONS(6242), - }, - [STATE(3424)] = { - [sym_argument_list] = STATE(3723), - [sym_initializer_list] = STATE(5901), - [sym_identifier] = ACTIONS(6798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [aux_sym_preproc_if_token2] = ACTIONS(6800), - [aux_sym_preproc_else_token1] = ACTIONS(6800), - [aux_sym_preproc_elif_token1] = ACTIONS(6798), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(7399), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6800), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6800), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6800), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6800), - [anon_sym_GT_GT] = ACTIONS(6800), - [anon_sym_SEMI] = ACTIONS(6800), - [anon_sym___extension__] = ACTIONS(6798), - [anon_sym___attribute__] = ACTIONS(6798), - [anon_sym___attribute] = ACTIONS(6798), - [anon_sym_COLON] = ACTIONS(6798), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6798), - [anon_sym_volatile] = ACTIONS(6798), - [anon_sym_restrict] = ACTIONS(6798), - [anon_sym___restrict__] = ACTIONS(6798), - [anon_sym__Atomic] = ACTIONS(6798), - [anon_sym__Noreturn] = ACTIONS(6798), - [anon_sym_noreturn] = ACTIONS(6798), - [anon_sym__Nonnull] = ACTIONS(6798), - [anon_sym_mutable] = ACTIONS(6798), - [anon_sym_constinit] = ACTIONS(6798), - [anon_sym_consteval] = ACTIONS(6798), - [anon_sym_alignas] = ACTIONS(6798), - [anon_sym__Alignas] = ACTIONS(6798), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6798), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6798), - [anon_sym_not_eq] = ACTIONS(6798), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6800), - }, - [STATE(3425)] = { - [sym_template_argument_list] = STATE(2824), - [sym_identifier] = ACTIONS(6201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6208), - [anon_sym_COMMA] = ACTIONS(6208), - [aux_sym_preproc_if_token2] = ACTIONS(6208), - [aux_sym_preproc_else_token1] = ACTIONS(6208), - [aux_sym_preproc_elif_token1] = ACTIONS(6201), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6208), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6208), - [anon_sym_LPAREN2] = ACTIONS(6208), - [anon_sym_DASH] = ACTIONS(6201), - [anon_sym_PLUS] = ACTIONS(6201), - [anon_sym_STAR] = ACTIONS(6208), - [anon_sym_SLASH] = ACTIONS(6201), - [anon_sym_PERCENT] = ACTIONS(6208), - [anon_sym_PIPE_PIPE] = ACTIONS(6208), - [anon_sym_AMP_AMP] = ACTIONS(6208), - [anon_sym_PIPE] = ACTIONS(6201), - [anon_sym_CARET] = ACTIONS(6208), - [anon_sym_AMP] = ACTIONS(6201), - [anon_sym_EQ_EQ] = ACTIONS(6208), - [anon_sym_BANG_EQ] = ACTIONS(6208), - [anon_sym_GT] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6208), - [anon_sym_LT_EQ] = ACTIONS(6201), - [anon_sym_LT] = ACTIONS(8879), - [anon_sym_LT_LT] = ACTIONS(6208), - [anon_sym_GT_GT] = ACTIONS(6208), - [anon_sym___extension__] = ACTIONS(6201), - [anon_sym___attribute__] = ACTIONS(6201), - [anon_sym___attribute] = ACTIONS(6201), - [anon_sym_COLON] = ACTIONS(6201), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(6208), - [anon_sym_LBRACK] = ACTIONS(6208), - [anon_sym_const] = ACTIONS(6201), - [anon_sym_constexpr] = ACTIONS(6201), - [anon_sym_volatile] = ACTIONS(6201), - [anon_sym_restrict] = ACTIONS(6201), - [anon_sym___restrict__] = ACTIONS(6201), - [anon_sym__Atomic] = ACTIONS(6201), - [anon_sym__Noreturn] = ACTIONS(6201), - [anon_sym_noreturn] = ACTIONS(6201), - [anon_sym__Nonnull] = ACTIONS(6201), - [anon_sym_mutable] = ACTIONS(6201), - [anon_sym_constinit] = ACTIONS(6201), - [anon_sym_consteval] = ACTIONS(6201), - [anon_sym_alignas] = ACTIONS(6201), - [anon_sym__Alignas] = ACTIONS(6201), - [anon_sym_QMARK] = ACTIONS(6208), - [anon_sym_LT_EQ_GT] = ACTIONS(6208), - [anon_sym_or] = ACTIONS(6201), - [anon_sym_and] = ACTIONS(6201), - [anon_sym_bitor] = ACTIONS(6201), - [anon_sym_xor] = ACTIONS(6201), - [anon_sym_bitand] = ACTIONS(6201), - [anon_sym_not_eq] = ACTIONS(6201), - [anon_sym_DASH_DASH] = ACTIONS(6208), - [anon_sym_PLUS_PLUS] = ACTIONS(6208), - [anon_sym_DOT] = ACTIONS(6201), - [anon_sym_DOT_STAR] = ACTIONS(6208), - [anon_sym_DASH_GT] = ACTIONS(6208), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6201), - [anon_sym_decltype] = ACTIONS(6201), - [anon_sym_final] = ACTIONS(6201), - [anon_sym_override] = ACTIONS(6201), - [anon_sym_requires] = ACTIONS(6201), - }, - [STATE(3426)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7397), - [anon_sym_COMMA] = ACTIONS(7397), - [anon_sym_RPAREN] = ACTIONS(7397), - [anon_sym_LPAREN2] = ACTIONS(7397), - [anon_sym_DASH] = ACTIONS(7395), - [anon_sym_PLUS] = ACTIONS(7395), - [anon_sym_STAR] = ACTIONS(7397), - [anon_sym_SLASH] = ACTIONS(7395), - [anon_sym_PERCENT] = ACTIONS(7397), - [anon_sym_PIPE_PIPE] = ACTIONS(7397), - [anon_sym_AMP_AMP] = ACTIONS(7397), - [anon_sym_PIPE] = ACTIONS(7395), - [anon_sym_CARET] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7395), - [anon_sym_EQ_EQ] = ACTIONS(7397), - [anon_sym_BANG_EQ] = ACTIONS(7397), - [anon_sym_GT] = ACTIONS(7395), - [anon_sym_GT_EQ] = ACTIONS(7397), - [anon_sym_LT_EQ] = ACTIONS(7395), - [anon_sym_LT] = ACTIONS(7395), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_GT_GT] = ACTIONS(7397), - [anon_sym_SEMI] = ACTIONS(7397), - [anon_sym___extension__] = ACTIONS(7397), - [anon_sym___attribute__] = ACTIONS(7397), - [anon_sym___attribute] = ACTIONS(7395), - [anon_sym_COLON] = ACTIONS(7395), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7397), - [anon_sym_LBRACE] = ACTIONS(7397), - [anon_sym_RBRACE] = ACTIONS(7397), - [anon_sym_signed] = ACTIONS(8875), - [anon_sym_unsigned] = ACTIONS(8875), - [anon_sym_long] = ACTIONS(8875), - [anon_sym_short] = ACTIONS(8875), - [anon_sym_LBRACK] = ACTIONS(7397), - [anon_sym_const] = ACTIONS(7395), - [anon_sym_constexpr] = ACTIONS(7397), - [anon_sym_volatile] = ACTIONS(7397), - [anon_sym_restrict] = ACTIONS(7397), - [anon_sym___restrict__] = ACTIONS(7397), - [anon_sym__Atomic] = ACTIONS(7397), - [anon_sym__Noreturn] = ACTIONS(7397), - [anon_sym_noreturn] = ACTIONS(7397), - [anon_sym__Nonnull] = ACTIONS(7397), - [anon_sym_mutable] = ACTIONS(7397), - [anon_sym_constinit] = ACTIONS(7397), - [anon_sym_consteval] = ACTIONS(7397), - [anon_sym_alignas] = ACTIONS(7397), - [anon_sym__Alignas] = ACTIONS(7397), - [anon_sym_QMARK] = ACTIONS(7397), - [anon_sym_LT_EQ_GT] = ACTIONS(7397), - [anon_sym_or] = ACTIONS(7397), - [anon_sym_and] = ACTIONS(7397), - [anon_sym_bitor] = ACTIONS(7397), - [anon_sym_xor] = ACTIONS(7397), - [anon_sym_bitand] = ACTIONS(7397), - [anon_sym_not_eq] = ACTIONS(7397), - [anon_sym_DASH_DASH] = ACTIONS(7397), - [anon_sym_PLUS_PLUS] = ACTIONS(7397), - [anon_sym_DOT] = ACTIONS(7395), - [anon_sym_DOT_STAR] = ACTIONS(7397), - [anon_sym_DASH_GT] = ACTIONS(7397), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7397), - [anon_sym_override] = ACTIONS(7397), - [anon_sym_requires] = ACTIONS(7397), - [anon_sym_COLON_RBRACK] = ACTIONS(7397), + [STATE(2945)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7749), + [anon_sym_COMMA] = ACTIONS(7749), + [anon_sym_LPAREN2] = ACTIONS(7749), + [anon_sym_DASH] = ACTIONS(7747), + [anon_sym_PLUS] = ACTIONS(7747), + [anon_sym_STAR] = ACTIONS(7747), + [anon_sym_SLASH] = ACTIONS(7747), + [anon_sym_PERCENT] = ACTIONS(7747), + [anon_sym_PIPE_PIPE] = ACTIONS(7749), + [anon_sym_AMP_AMP] = ACTIONS(7749), + [anon_sym_PIPE] = ACTIONS(7747), + [anon_sym_CARET] = ACTIONS(7747), + [anon_sym_AMP] = ACTIONS(7747), + [anon_sym_EQ_EQ] = ACTIONS(7749), + [anon_sym_BANG_EQ] = ACTIONS(7749), + [anon_sym_GT] = ACTIONS(7747), + [anon_sym_GT_EQ] = ACTIONS(7747), + [anon_sym_LT_EQ] = ACTIONS(7747), + [anon_sym_LT] = ACTIONS(7747), + [anon_sym_LT_LT] = ACTIONS(7747), + [anon_sym_GT_GT] = ACTIONS(7747), + [anon_sym___extension__] = ACTIONS(7749), + [anon_sym___attribute__] = ACTIONS(7749), + [anon_sym___attribute] = ACTIONS(7747), + [anon_sym_LBRACE] = ACTIONS(7749), + [anon_sym_LBRACK] = ACTIONS(7749), + [anon_sym_EQ] = ACTIONS(7747), + [anon_sym_const] = ACTIONS(7747), + [anon_sym_constexpr] = ACTIONS(7749), + [anon_sym_volatile] = ACTIONS(7749), + [anon_sym_restrict] = ACTIONS(7749), + [anon_sym___restrict__] = ACTIONS(7749), + [anon_sym__Atomic] = ACTIONS(7749), + [anon_sym__Noreturn] = ACTIONS(7749), + [anon_sym_noreturn] = ACTIONS(7749), + [anon_sym__Nonnull] = ACTIONS(7749), + [anon_sym_mutable] = ACTIONS(7749), + [anon_sym_constinit] = ACTIONS(7749), + [anon_sym_consteval] = ACTIONS(7749), + [anon_sym_alignas] = ACTIONS(7749), + [anon_sym__Alignas] = ACTIONS(7749), + [anon_sym_QMARK] = ACTIONS(7749), + [anon_sym_STAR_EQ] = ACTIONS(7749), + [anon_sym_SLASH_EQ] = ACTIONS(7749), + [anon_sym_PERCENT_EQ] = ACTIONS(7749), + [anon_sym_PLUS_EQ] = ACTIONS(7749), + [anon_sym_DASH_EQ] = ACTIONS(7749), + [anon_sym_LT_LT_EQ] = ACTIONS(7749), + [anon_sym_GT_GT_EQ] = ACTIONS(7747), + [anon_sym_AMP_EQ] = ACTIONS(7749), + [anon_sym_CARET_EQ] = ACTIONS(7749), + [anon_sym_PIPE_EQ] = ACTIONS(7749), + [anon_sym_and_eq] = ACTIONS(7749), + [anon_sym_or_eq] = ACTIONS(7749), + [anon_sym_xor_eq] = ACTIONS(7749), + [anon_sym_LT_EQ_GT] = ACTIONS(7749), + [anon_sym_or] = ACTIONS(7747), + [anon_sym_and] = ACTIONS(7747), + [anon_sym_bitor] = ACTIONS(7749), + [anon_sym_xor] = ACTIONS(7747), + [anon_sym_bitand] = ACTIONS(7749), + [anon_sym_not_eq] = ACTIONS(7749), + [anon_sym_DASH_DASH] = ACTIONS(7749), + [anon_sym_PLUS_PLUS] = ACTIONS(7749), + [anon_sym_DOT] = ACTIONS(7747), + [anon_sym_DOT_STAR] = ACTIONS(7749), + [anon_sym_DASH_GT] = ACTIONS(7749), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7749), + [anon_sym_override] = ACTIONS(7749), + [anon_sym_GT2] = ACTIONS(7749), + [anon_sym_requires] = ACTIONS(7749), }, - [STATE(3427)] = { - [sym_attribute_specifier] = STATE(4374), - [sym_attribute_declaration] = STATE(4622), - [sym_gnu_asm_expression] = STATE(8992), - [sym_virtual_specifier] = STATE(4709), - [sym_ref_qualifier] = STATE(3518), - [sym__function_exception_specification] = STATE(4017), - [sym__function_attributes_end] = STATE(5849), - [sym__function_postfix] = STATE(5258), - [sym_trailing_return_type] = STATE(5969), - [sym_noexcept] = STATE(4017), - [sym_throw_specifier] = STATE(4017), - [sym_requires_clause] = STATE(5258), - [aux_sym_type_definition_repeat1] = STATE(4374), - [aux_sym_attributed_declarator_repeat1] = STATE(4622), - [aux_sym__function_postfix_repeat1] = STATE(4709), - [sym_identifier] = ACTIONS(7546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [aux_sym_preproc_if_token2] = ACTIONS(7544), - [aux_sym_preproc_else_token1] = ACTIONS(7544), - [aux_sym_preproc_elif_token1] = ACTIONS(7546), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7544), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7544), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(8812), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7544), - [anon_sym_AMP] = ACTIONS(8815), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7544), - [anon_sym_GT_GT] = ACTIONS(7544), - [anon_sym___attribute__] = ACTIONS(6859), - [anon_sym___attribute] = ACTIONS(6859), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7546), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7546), - [anon_sym_not_eq] = ACTIONS(7546), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6129), - [anon_sym___asm__] = ACTIONS(6129), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(8882), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6868), - [anon_sym_override] = ACTIONS(6868), - [anon_sym_noexcept] = ACTIONS(6870), - [anon_sym_throw] = ACTIONS(6872), - [anon_sym_requires] = ACTIONS(6874), + [STATE(2946)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), + [anon_sym_COMMA] = ACTIONS(7719), + [anon_sym_LPAREN2] = ACTIONS(7719), + [anon_sym_DASH] = ACTIONS(7717), + [anon_sym_PLUS] = ACTIONS(7717), + [anon_sym_STAR] = ACTIONS(7717), + [anon_sym_SLASH] = ACTIONS(7717), + [anon_sym_PERCENT] = ACTIONS(7717), + [anon_sym_PIPE_PIPE] = ACTIONS(7719), + [anon_sym_AMP_AMP] = ACTIONS(7719), + [anon_sym_PIPE] = ACTIONS(7717), + [anon_sym_CARET] = ACTIONS(7717), + [anon_sym_AMP] = ACTIONS(7717), + [anon_sym_EQ_EQ] = ACTIONS(7719), + [anon_sym_BANG_EQ] = ACTIONS(7719), + [anon_sym_GT] = ACTIONS(7717), + [anon_sym_GT_EQ] = ACTIONS(7717), + [anon_sym_LT_EQ] = ACTIONS(7717), + [anon_sym_LT] = ACTIONS(7717), + [anon_sym_LT_LT] = ACTIONS(7717), + [anon_sym_GT_GT] = ACTIONS(7717), + [anon_sym___extension__] = ACTIONS(7719), + [anon_sym___attribute__] = ACTIONS(7719), + [anon_sym___attribute] = ACTIONS(7717), + [anon_sym_LBRACE] = ACTIONS(7719), + [anon_sym_LBRACK] = ACTIONS(7719), + [anon_sym_EQ] = ACTIONS(7717), + [anon_sym_const] = ACTIONS(7717), + [anon_sym_constexpr] = ACTIONS(7719), + [anon_sym_volatile] = ACTIONS(7719), + [anon_sym_restrict] = ACTIONS(7719), + [anon_sym___restrict__] = ACTIONS(7719), + [anon_sym__Atomic] = ACTIONS(7719), + [anon_sym__Noreturn] = ACTIONS(7719), + [anon_sym_noreturn] = ACTIONS(7719), + [anon_sym__Nonnull] = ACTIONS(7719), + [anon_sym_mutable] = ACTIONS(7719), + [anon_sym_constinit] = ACTIONS(7719), + [anon_sym_consteval] = ACTIONS(7719), + [anon_sym_alignas] = ACTIONS(7719), + [anon_sym__Alignas] = ACTIONS(7719), + [anon_sym_QMARK] = ACTIONS(7719), + [anon_sym_STAR_EQ] = ACTIONS(7719), + [anon_sym_SLASH_EQ] = ACTIONS(7719), + [anon_sym_PERCENT_EQ] = ACTIONS(7719), + [anon_sym_PLUS_EQ] = ACTIONS(7719), + [anon_sym_DASH_EQ] = ACTIONS(7719), + [anon_sym_LT_LT_EQ] = ACTIONS(7719), + [anon_sym_GT_GT_EQ] = ACTIONS(7717), + [anon_sym_AMP_EQ] = ACTIONS(7719), + [anon_sym_CARET_EQ] = ACTIONS(7719), + [anon_sym_PIPE_EQ] = ACTIONS(7719), + [anon_sym_and_eq] = ACTIONS(7719), + [anon_sym_or_eq] = ACTIONS(7719), + [anon_sym_xor_eq] = ACTIONS(7719), + [anon_sym_LT_EQ_GT] = ACTIONS(7719), + [anon_sym_or] = ACTIONS(7717), + [anon_sym_and] = ACTIONS(7717), + [anon_sym_bitor] = ACTIONS(7719), + [anon_sym_xor] = ACTIONS(7717), + [anon_sym_bitand] = ACTIONS(7719), + [anon_sym_not_eq] = ACTIONS(7719), + [anon_sym_DASH_DASH] = ACTIONS(7719), + [anon_sym_PLUS_PLUS] = ACTIONS(7719), + [anon_sym_DOT] = ACTIONS(7717), + [anon_sym_DOT_STAR] = ACTIONS(7719), + [anon_sym_DASH_GT] = ACTIONS(7719), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7719), + [anon_sym_override] = ACTIONS(7719), + [anon_sym_GT2] = ACTIONS(7719), + [anon_sym_requires] = ACTIONS(7719), }, - [STATE(3428)] = { - [sym_identifier] = ACTIONS(6246), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6248), - [anon_sym_COMMA] = ACTIONS(6248), - [aux_sym_preproc_if_token2] = ACTIONS(6248), - [aux_sym_preproc_else_token1] = ACTIONS(6248), - [aux_sym_preproc_elif_token1] = ACTIONS(6246), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6248), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6248), - [anon_sym_LPAREN2] = ACTIONS(6248), - [anon_sym_DASH] = ACTIONS(6246), - [anon_sym_PLUS] = ACTIONS(6246), - [anon_sym_STAR] = ACTIONS(6248), - [anon_sym_SLASH] = ACTIONS(6246), - [anon_sym_PERCENT] = ACTIONS(6248), - [anon_sym_PIPE_PIPE] = ACTIONS(6248), - [anon_sym_AMP_AMP] = ACTIONS(6248), - [anon_sym_PIPE] = ACTIONS(6246), - [anon_sym_CARET] = ACTIONS(6248), - [anon_sym_AMP] = ACTIONS(6246), - [anon_sym_EQ_EQ] = ACTIONS(6248), - [anon_sym_BANG_EQ] = ACTIONS(6248), - [anon_sym_GT] = ACTIONS(6246), - [anon_sym_GT_EQ] = ACTIONS(6248), - [anon_sym_LT_EQ] = ACTIONS(6246), - [anon_sym_LT] = ACTIONS(6246), - [anon_sym_LT_LT] = ACTIONS(6248), - [anon_sym_GT_GT] = ACTIONS(6248), - [anon_sym___extension__] = ACTIONS(6246), - [anon_sym___attribute__] = ACTIONS(6246), - [anon_sym___attribute] = ACTIONS(6246), - [anon_sym_COLON] = ACTIONS(6246), - [anon_sym_COLON_COLON] = ACTIONS(6248), - [anon_sym_LBRACE] = ACTIONS(6248), - [anon_sym_LBRACK] = ACTIONS(6248), - [anon_sym_RBRACK] = ACTIONS(6248), - [anon_sym_const] = ACTIONS(6246), - [anon_sym_constexpr] = ACTIONS(6246), - [anon_sym_volatile] = ACTIONS(6246), - [anon_sym_restrict] = ACTIONS(6246), - [anon_sym___restrict__] = ACTIONS(6246), - [anon_sym__Atomic] = ACTIONS(6246), - [anon_sym__Noreturn] = ACTIONS(6246), - [anon_sym_noreturn] = ACTIONS(6246), - [anon_sym__Nonnull] = ACTIONS(6246), - [anon_sym_mutable] = ACTIONS(6246), - [anon_sym_constinit] = ACTIONS(6246), - [anon_sym_consteval] = ACTIONS(6246), - [anon_sym_alignas] = ACTIONS(6246), - [anon_sym__Alignas] = ACTIONS(6246), - [anon_sym_QMARK] = ACTIONS(6248), - [anon_sym_LT_EQ_GT] = ACTIONS(6248), - [anon_sym_or] = ACTIONS(6246), - [anon_sym_and] = ACTIONS(6246), - [anon_sym_bitor] = ACTIONS(6246), - [anon_sym_xor] = ACTIONS(6246), - [anon_sym_bitand] = ACTIONS(6246), - [anon_sym_not_eq] = ACTIONS(6246), - [anon_sym_DASH_DASH] = ACTIONS(6248), - [anon_sym_PLUS_PLUS] = ACTIONS(6248), - [anon_sym_DOT] = ACTIONS(6246), - [anon_sym_DOT_STAR] = ACTIONS(6248), - [anon_sym_DASH_GT] = ACTIONS(6248), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6246), - [anon_sym_decltype] = ACTIONS(6246), - [anon_sym_final] = ACTIONS(6246), - [anon_sym_override] = ACTIONS(6246), - [anon_sym_requires] = ACTIONS(6246), + [STATE(2947)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7637), + [anon_sym_COMMA] = ACTIONS(7637), + [anon_sym_RPAREN] = ACTIONS(7637), + [anon_sym_LPAREN2] = ACTIONS(7637), + [anon_sym_DASH] = ACTIONS(7635), + [anon_sym_PLUS] = ACTIONS(7635), + [anon_sym_STAR] = ACTIONS(7635), + [anon_sym_SLASH] = ACTIONS(7635), + [anon_sym_PERCENT] = ACTIONS(7635), + [anon_sym_PIPE_PIPE] = ACTIONS(7637), + [anon_sym_AMP_AMP] = ACTIONS(7637), + [anon_sym_PIPE] = ACTIONS(7635), + [anon_sym_CARET] = ACTIONS(7635), + [anon_sym_AMP] = ACTIONS(7635), + [anon_sym_EQ_EQ] = ACTIONS(7637), + [anon_sym_BANG_EQ] = ACTIONS(7637), + [anon_sym_GT] = ACTIONS(7635), + [anon_sym_GT_EQ] = ACTIONS(7637), + [anon_sym_LT_EQ] = ACTIONS(7635), + [anon_sym_LT] = ACTIONS(7635), + [anon_sym_LT_LT] = ACTIONS(7635), + [anon_sym_GT_GT] = ACTIONS(7635), + [anon_sym___extension__] = ACTIONS(7637), + [anon_sym_LBRACE] = ACTIONS(7637), + [anon_sym_LBRACK] = ACTIONS(7637), + [anon_sym_EQ] = ACTIONS(7635), + [anon_sym_const] = ACTIONS(7635), + [anon_sym_constexpr] = ACTIONS(7637), + [anon_sym_volatile] = ACTIONS(7637), + [anon_sym_restrict] = ACTIONS(7637), + [anon_sym___restrict__] = ACTIONS(7637), + [anon_sym__Atomic] = ACTIONS(7637), + [anon_sym__Noreturn] = ACTIONS(7637), + [anon_sym_noreturn] = ACTIONS(7637), + [anon_sym__Nonnull] = ACTIONS(7637), + [anon_sym_mutable] = ACTIONS(7637), + [anon_sym_constinit] = ACTIONS(7637), + [anon_sym_consteval] = ACTIONS(7637), + [anon_sym_alignas] = ACTIONS(7637), + [anon_sym__Alignas] = ACTIONS(7637), + [anon_sym_QMARK] = ACTIONS(7637), + [anon_sym_STAR_EQ] = ACTIONS(7637), + [anon_sym_SLASH_EQ] = ACTIONS(7637), + [anon_sym_PERCENT_EQ] = ACTIONS(7637), + [anon_sym_PLUS_EQ] = ACTIONS(7637), + [anon_sym_DASH_EQ] = ACTIONS(7637), + [anon_sym_LT_LT_EQ] = ACTIONS(7637), + [anon_sym_GT_GT_EQ] = ACTIONS(7637), + [anon_sym_AMP_EQ] = ACTIONS(7637), + [anon_sym_CARET_EQ] = ACTIONS(7637), + [anon_sym_PIPE_EQ] = ACTIONS(7637), + [anon_sym_and_eq] = ACTIONS(7637), + [anon_sym_or_eq] = ACTIONS(7637), + [anon_sym_xor_eq] = ACTIONS(7637), + [anon_sym_LT_EQ_GT] = ACTIONS(7637), + [anon_sym_or] = ACTIONS(7635), + [anon_sym_and] = ACTIONS(7635), + [anon_sym_bitor] = ACTIONS(7637), + [anon_sym_xor] = ACTIONS(7635), + [anon_sym_bitand] = ACTIONS(7637), + [anon_sym_not_eq] = ACTIONS(7637), + [anon_sym_DASH_DASH] = ACTIONS(7637), + [anon_sym_PLUS_PLUS] = ACTIONS(7637), + [anon_sym_DOT] = ACTIONS(7635), + [anon_sym_DOT_STAR] = ACTIONS(7637), + [anon_sym_DASH_GT] = ACTIONS(7635), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7637), + [anon_sym_override] = ACTIONS(7637), + [anon_sym_requires] = ACTIONS(7637), + [anon_sym_DASH_GT_STAR] = ACTIONS(7637), }, - [STATE(3429)] = { - [sym_identifier] = ACTIONS(6250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6252), - [anon_sym_COMMA] = ACTIONS(6252), - [aux_sym_preproc_if_token2] = ACTIONS(6252), - [aux_sym_preproc_else_token1] = ACTIONS(6252), - [aux_sym_preproc_elif_token1] = ACTIONS(6250), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6252), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6252), - [anon_sym_LPAREN2] = ACTIONS(6252), - [anon_sym_DASH] = ACTIONS(6250), - [anon_sym_PLUS] = ACTIONS(6250), - [anon_sym_STAR] = ACTIONS(6252), - [anon_sym_SLASH] = ACTIONS(6250), - [anon_sym_PERCENT] = ACTIONS(6252), - [anon_sym_PIPE_PIPE] = ACTIONS(6252), - [anon_sym_AMP_AMP] = ACTIONS(6252), - [anon_sym_PIPE] = ACTIONS(6250), - [anon_sym_CARET] = ACTIONS(6252), - [anon_sym_AMP] = ACTIONS(6250), - [anon_sym_EQ_EQ] = ACTIONS(6252), - [anon_sym_BANG_EQ] = ACTIONS(6252), - [anon_sym_GT] = ACTIONS(6250), - [anon_sym_GT_EQ] = ACTIONS(6252), - [anon_sym_LT_EQ] = ACTIONS(6250), - [anon_sym_LT] = ACTIONS(6250), - [anon_sym_LT_LT] = ACTIONS(6252), - [anon_sym_GT_GT] = ACTIONS(6252), - [anon_sym___extension__] = ACTIONS(6250), - [anon_sym___attribute__] = ACTIONS(6250), - [anon_sym___attribute] = ACTIONS(6250), - [anon_sym_COLON] = ACTIONS(6250), - [anon_sym_COLON_COLON] = ACTIONS(6252), - [anon_sym_LBRACE] = ACTIONS(6252), - [anon_sym_LBRACK] = ACTIONS(6252), - [anon_sym_RBRACK] = ACTIONS(6252), - [anon_sym_const] = ACTIONS(6250), - [anon_sym_constexpr] = ACTIONS(6250), - [anon_sym_volatile] = ACTIONS(6250), - [anon_sym_restrict] = ACTIONS(6250), - [anon_sym___restrict__] = ACTIONS(6250), - [anon_sym__Atomic] = ACTIONS(6250), - [anon_sym__Noreturn] = ACTIONS(6250), - [anon_sym_noreturn] = ACTIONS(6250), - [anon_sym__Nonnull] = ACTIONS(6250), - [anon_sym_mutable] = ACTIONS(6250), - [anon_sym_constinit] = ACTIONS(6250), - [anon_sym_consteval] = ACTIONS(6250), - [anon_sym_alignas] = ACTIONS(6250), - [anon_sym__Alignas] = ACTIONS(6250), - [anon_sym_QMARK] = ACTIONS(6252), - [anon_sym_LT_EQ_GT] = ACTIONS(6252), - [anon_sym_or] = ACTIONS(6250), - [anon_sym_and] = ACTIONS(6250), - [anon_sym_bitor] = ACTIONS(6250), - [anon_sym_xor] = ACTIONS(6250), - [anon_sym_bitand] = ACTIONS(6250), - [anon_sym_not_eq] = ACTIONS(6250), - [anon_sym_DASH_DASH] = ACTIONS(6252), - [anon_sym_PLUS_PLUS] = ACTIONS(6252), - [anon_sym_DOT] = ACTIONS(6250), - [anon_sym_DOT_STAR] = ACTIONS(6252), - [anon_sym_DASH_GT] = ACTIONS(6252), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6250), - [anon_sym_decltype] = ACTIONS(6250), - [anon_sym_final] = ACTIONS(6250), - [anon_sym_override] = ACTIONS(6250), - [anon_sym_requires] = ACTIONS(6250), + [STATE(2948)] = { + [sym_attribute_specifier] = STATE(4179), + [sym_attribute_declaration] = STATE(4554), + [sym_gnu_asm_expression] = STATE(9153), + [sym_virtual_specifier] = STATE(4653), + [sym__function_attributes_end] = STATE(4366), + [sym__function_postfix] = STATE(5110), + [sym_trailing_return_type] = STATE(4476), + [sym_requires_clause] = STATE(5110), + [aux_sym_type_definition_repeat1] = STATE(4179), + [aux_sym_attributed_declarator_repeat1] = STATE(4554), + [aux_sym__function_postfix_repeat1] = STATE(4653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6719), + [anon_sym___attribute] = ACTIONS(6721), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_RBRACK] = ACTIONS(7791), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8360), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8363), + [anon_sym_override] = ACTIONS(8363), + [anon_sym_requires] = ACTIONS(8366), }, - [STATE(3430)] = { - [sym_identifier] = ACTIONS(6254), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6256), - [anon_sym_COMMA] = ACTIONS(6256), - [aux_sym_preproc_if_token2] = ACTIONS(6256), - [aux_sym_preproc_else_token1] = ACTIONS(6256), - [aux_sym_preproc_elif_token1] = ACTIONS(6254), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6256), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6256), - [anon_sym_LPAREN2] = ACTIONS(6256), - [anon_sym_DASH] = ACTIONS(6254), - [anon_sym_PLUS] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(6256), - [anon_sym_SLASH] = ACTIONS(6254), - [anon_sym_PERCENT] = ACTIONS(6256), - [anon_sym_PIPE_PIPE] = ACTIONS(6256), - [anon_sym_AMP_AMP] = ACTIONS(6256), - [anon_sym_PIPE] = ACTIONS(6254), - [anon_sym_CARET] = ACTIONS(6256), - [anon_sym_AMP] = ACTIONS(6254), - [anon_sym_EQ_EQ] = ACTIONS(6256), - [anon_sym_BANG_EQ] = ACTIONS(6256), - [anon_sym_GT] = ACTIONS(6254), - [anon_sym_GT_EQ] = ACTIONS(6256), - [anon_sym_LT_EQ] = ACTIONS(6254), - [anon_sym_LT] = ACTIONS(6254), - [anon_sym_LT_LT] = ACTIONS(6256), - [anon_sym_GT_GT] = ACTIONS(6256), - [anon_sym___extension__] = ACTIONS(6254), - [anon_sym___attribute__] = ACTIONS(6254), - [anon_sym___attribute] = ACTIONS(6254), - [anon_sym_COLON] = ACTIONS(6254), - [anon_sym_COLON_COLON] = ACTIONS(6256), - [anon_sym_LBRACE] = ACTIONS(6256), - [anon_sym_LBRACK] = ACTIONS(6256), - [anon_sym_RBRACK] = ACTIONS(6256), - [anon_sym_const] = ACTIONS(6254), - [anon_sym_constexpr] = ACTIONS(6254), - [anon_sym_volatile] = ACTIONS(6254), - [anon_sym_restrict] = ACTIONS(6254), - [anon_sym___restrict__] = ACTIONS(6254), - [anon_sym__Atomic] = ACTIONS(6254), - [anon_sym__Noreturn] = ACTIONS(6254), - [anon_sym_noreturn] = ACTIONS(6254), - [anon_sym__Nonnull] = ACTIONS(6254), - [anon_sym_mutable] = ACTIONS(6254), - [anon_sym_constinit] = ACTIONS(6254), - [anon_sym_consteval] = ACTIONS(6254), - [anon_sym_alignas] = ACTIONS(6254), - [anon_sym__Alignas] = ACTIONS(6254), - [anon_sym_QMARK] = ACTIONS(6256), - [anon_sym_LT_EQ_GT] = ACTIONS(6256), - [anon_sym_or] = ACTIONS(6254), - [anon_sym_and] = ACTIONS(6254), - [anon_sym_bitor] = ACTIONS(6254), - [anon_sym_xor] = ACTIONS(6254), - [anon_sym_bitand] = ACTIONS(6254), - [anon_sym_not_eq] = ACTIONS(6254), - [anon_sym_DASH_DASH] = ACTIONS(6256), - [anon_sym_PLUS_PLUS] = ACTIONS(6256), - [anon_sym_DOT] = ACTIONS(6254), - [anon_sym_DOT_STAR] = ACTIONS(6256), - [anon_sym_DASH_GT] = ACTIONS(6256), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6254), - [anon_sym_decltype] = ACTIONS(6254), - [anon_sym_final] = ACTIONS(6254), - [anon_sym_override] = ACTIONS(6254), - [anon_sym_requires] = ACTIONS(6254), + [STATE(2949)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), + [anon_sym_COMMA] = ACTIONS(7563), + [anon_sym_RPAREN] = ACTIONS(7563), + [anon_sym_LPAREN2] = ACTIONS(7563), + [anon_sym_DASH] = ACTIONS(7561), + [anon_sym_PLUS] = ACTIONS(7561), + [anon_sym_STAR] = ACTIONS(7561), + [anon_sym_SLASH] = ACTIONS(7561), + [anon_sym_PERCENT] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_AMP_AMP] = ACTIONS(7563), + [anon_sym_PIPE] = ACTIONS(7561), + [anon_sym_CARET] = ACTIONS(7561), + [anon_sym_AMP] = ACTIONS(7561), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_GT] = ACTIONS(7561), + [anon_sym_GT_EQ] = ACTIONS(7563), + [anon_sym_LT_EQ] = ACTIONS(7561), + [anon_sym_LT] = ACTIONS(7561), + [anon_sym_LT_LT] = ACTIONS(7561), + [anon_sym_GT_GT] = ACTIONS(7561), + [anon_sym___extension__] = ACTIONS(7563), + [anon_sym_LBRACE] = ACTIONS(7563), + [anon_sym_LBRACK] = ACTIONS(7563), + [anon_sym_EQ] = ACTIONS(7561), + [anon_sym_const] = ACTIONS(7561), + [anon_sym_constexpr] = ACTIONS(7563), + [anon_sym_volatile] = ACTIONS(7563), + [anon_sym_restrict] = ACTIONS(7563), + [anon_sym___restrict__] = ACTIONS(7563), + [anon_sym__Atomic] = ACTIONS(7563), + [anon_sym__Noreturn] = ACTIONS(7563), + [anon_sym_noreturn] = ACTIONS(7563), + [anon_sym__Nonnull] = ACTIONS(7563), + [anon_sym_mutable] = ACTIONS(7563), + [anon_sym_constinit] = ACTIONS(7563), + [anon_sym_consteval] = ACTIONS(7563), + [anon_sym_alignas] = ACTIONS(7563), + [anon_sym__Alignas] = ACTIONS(7563), + [anon_sym_QMARK] = ACTIONS(7563), + [anon_sym_STAR_EQ] = ACTIONS(7563), + [anon_sym_SLASH_EQ] = ACTIONS(7563), + [anon_sym_PERCENT_EQ] = ACTIONS(7563), + [anon_sym_PLUS_EQ] = ACTIONS(7563), + [anon_sym_DASH_EQ] = ACTIONS(7563), + [anon_sym_LT_LT_EQ] = ACTIONS(7563), + [anon_sym_GT_GT_EQ] = ACTIONS(7563), + [anon_sym_AMP_EQ] = ACTIONS(7563), + [anon_sym_CARET_EQ] = ACTIONS(7563), + [anon_sym_PIPE_EQ] = ACTIONS(7563), + [anon_sym_and_eq] = ACTIONS(7563), + [anon_sym_or_eq] = ACTIONS(7563), + [anon_sym_xor_eq] = ACTIONS(7563), + [anon_sym_LT_EQ_GT] = ACTIONS(7563), + [anon_sym_or] = ACTIONS(7561), + [anon_sym_and] = ACTIONS(7561), + [anon_sym_bitor] = ACTIONS(7563), + [anon_sym_xor] = ACTIONS(7561), + [anon_sym_bitand] = ACTIONS(7563), + [anon_sym_not_eq] = ACTIONS(7563), + [anon_sym_DASH_DASH] = ACTIONS(7563), + [anon_sym_PLUS_PLUS] = ACTIONS(7563), + [anon_sym_DOT] = ACTIONS(7561), + [anon_sym_DOT_STAR] = ACTIONS(7563), + [anon_sym_DASH_GT] = ACTIONS(7561), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7563), + [anon_sym_override] = ACTIONS(7563), + [anon_sym_requires] = ACTIONS(7563), + [anon_sym_DASH_GT_STAR] = ACTIONS(7563), }, - [STATE(3431)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), - [anon_sym_COMMA] = ACTIONS(7255), - [anon_sym_RPAREN] = ACTIONS(7255), - [anon_sym_LPAREN2] = ACTIONS(7255), - [anon_sym_DASH] = ACTIONS(7253), - [anon_sym_PLUS] = ACTIONS(7253), - [anon_sym_STAR] = ACTIONS(7255), - [anon_sym_SLASH] = ACTIONS(7253), - [anon_sym_PERCENT] = ACTIONS(7255), - [anon_sym_PIPE_PIPE] = ACTIONS(7255), - [anon_sym_AMP_AMP] = ACTIONS(7255), - [anon_sym_PIPE] = ACTIONS(7253), - [anon_sym_CARET] = ACTIONS(7255), - [anon_sym_AMP] = ACTIONS(7253), - [anon_sym_EQ_EQ] = ACTIONS(7255), - [anon_sym_BANG_EQ] = ACTIONS(7255), - [anon_sym_GT] = ACTIONS(7253), - [anon_sym_GT_EQ] = ACTIONS(7255), - [anon_sym_LT_EQ] = ACTIONS(7253), - [anon_sym_LT] = ACTIONS(7253), - [anon_sym_LT_LT] = ACTIONS(7255), - [anon_sym_GT_GT] = ACTIONS(7255), - [anon_sym_SEMI] = ACTIONS(7255), - [anon_sym___extension__] = ACTIONS(7255), - [anon_sym___attribute__] = ACTIONS(7255), - [anon_sym___attribute] = ACTIONS(7253), - [anon_sym_COLON] = ACTIONS(7253), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7255), - [anon_sym_LBRACE] = ACTIONS(7255), - [anon_sym_RBRACE] = ACTIONS(7255), - [anon_sym_signed] = ACTIONS(8827), - [anon_sym_unsigned] = ACTIONS(8827), - [anon_sym_long] = ACTIONS(8827), - [anon_sym_short] = ACTIONS(8827), - [anon_sym_LBRACK] = ACTIONS(7255), - [anon_sym_const] = ACTIONS(7253), - [anon_sym_constexpr] = ACTIONS(7255), - [anon_sym_volatile] = ACTIONS(7255), - [anon_sym_restrict] = ACTIONS(7255), - [anon_sym___restrict__] = ACTIONS(7255), - [anon_sym__Atomic] = ACTIONS(7255), - [anon_sym__Noreturn] = ACTIONS(7255), - [anon_sym_noreturn] = ACTIONS(7255), - [anon_sym__Nonnull] = ACTIONS(7255), - [anon_sym_mutable] = ACTIONS(7255), - [anon_sym_constinit] = ACTIONS(7255), - [anon_sym_consteval] = ACTIONS(7255), - [anon_sym_alignas] = ACTIONS(7255), - [anon_sym__Alignas] = ACTIONS(7255), - [anon_sym_QMARK] = ACTIONS(7255), - [anon_sym_LT_EQ_GT] = ACTIONS(7255), - [anon_sym_or] = ACTIONS(7255), - [anon_sym_and] = ACTIONS(7255), - [anon_sym_bitor] = ACTIONS(7255), - [anon_sym_xor] = ACTIONS(7255), - [anon_sym_bitand] = ACTIONS(7255), - [anon_sym_not_eq] = ACTIONS(7255), - [anon_sym_DASH_DASH] = ACTIONS(7255), - [anon_sym_PLUS_PLUS] = ACTIONS(7255), - [anon_sym_DOT] = ACTIONS(7253), - [anon_sym_DOT_STAR] = ACTIONS(7255), - [anon_sym_DASH_GT] = ACTIONS(7255), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7255), - [anon_sym_override] = ACTIONS(7255), - [anon_sym_requires] = ACTIONS(7255), - [anon_sym_COLON_RBRACK] = ACTIONS(7255), + [STATE(2950)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7665), + [anon_sym_COMMA] = ACTIONS(7665), + [anon_sym_RPAREN] = ACTIONS(7665), + [anon_sym_LPAREN2] = ACTIONS(7665), + [anon_sym_DASH] = ACTIONS(7663), + [anon_sym_PLUS] = ACTIONS(7663), + [anon_sym_STAR] = ACTIONS(7663), + [anon_sym_SLASH] = ACTIONS(7663), + [anon_sym_PERCENT] = ACTIONS(7663), + [anon_sym_PIPE_PIPE] = ACTIONS(7665), + [anon_sym_AMP_AMP] = ACTIONS(7665), + [anon_sym_PIPE] = ACTIONS(7663), + [anon_sym_CARET] = ACTIONS(7663), + [anon_sym_AMP] = ACTIONS(7663), + [anon_sym_EQ_EQ] = ACTIONS(7665), + [anon_sym_BANG_EQ] = ACTIONS(7665), + [anon_sym_GT] = ACTIONS(7663), + [anon_sym_GT_EQ] = ACTIONS(7665), + [anon_sym_LT_EQ] = ACTIONS(7663), + [anon_sym_LT] = ACTIONS(7663), + [anon_sym_LT_LT] = ACTIONS(7663), + [anon_sym_GT_GT] = ACTIONS(7663), + [anon_sym___extension__] = ACTIONS(7665), + [anon_sym_LBRACE] = ACTIONS(7665), + [anon_sym_LBRACK] = ACTIONS(7665), + [anon_sym_EQ] = ACTIONS(7663), + [anon_sym_const] = ACTIONS(7663), + [anon_sym_constexpr] = ACTIONS(7665), + [anon_sym_volatile] = ACTIONS(7665), + [anon_sym_restrict] = ACTIONS(7665), + [anon_sym___restrict__] = ACTIONS(7665), + [anon_sym__Atomic] = ACTIONS(7665), + [anon_sym__Noreturn] = ACTIONS(7665), + [anon_sym_noreturn] = ACTIONS(7665), + [anon_sym__Nonnull] = ACTIONS(7665), + [anon_sym_mutable] = ACTIONS(7665), + [anon_sym_constinit] = ACTIONS(7665), + [anon_sym_consteval] = ACTIONS(7665), + [anon_sym_alignas] = ACTIONS(7665), + [anon_sym__Alignas] = ACTIONS(7665), + [anon_sym_QMARK] = ACTIONS(7665), + [anon_sym_STAR_EQ] = ACTIONS(7665), + [anon_sym_SLASH_EQ] = ACTIONS(7665), + [anon_sym_PERCENT_EQ] = ACTIONS(7665), + [anon_sym_PLUS_EQ] = ACTIONS(7665), + [anon_sym_DASH_EQ] = ACTIONS(7665), + [anon_sym_LT_LT_EQ] = ACTIONS(7665), + [anon_sym_GT_GT_EQ] = ACTIONS(7665), + [anon_sym_AMP_EQ] = ACTIONS(7665), + [anon_sym_CARET_EQ] = ACTIONS(7665), + [anon_sym_PIPE_EQ] = ACTIONS(7665), + [anon_sym_and_eq] = ACTIONS(7665), + [anon_sym_or_eq] = ACTIONS(7665), + [anon_sym_xor_eq] = ACTIONS(7665), + [anon_sym_LT_EQ_GT] = ACTIONS(7665), + [anon_sym_or] = ACTIONS(7663), + [anon_sym_and] = ACTIONS(7663), + [anon_sym_bitor] = ACTIONS(7665), + [anon_sym_xor] = ACTIONS(7663), + [anon_sym_bitand] = ACTIONS(7665), + [anon_sym_not_eq] = ACTIONS(7665), + [anon_sym_DASH_DASH] = ACTIONS(7665), + [anon_sym_PLUS_PLUS] = ACTIONS(7665), + [anon_sym_DOT] = ACTIONS(7663), + [anon_sym_DOT_STAR] = ACTIONS(7665), + [anon_sym_DASH_GT] = ACTIONS(7663), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7665), + [anon_sym_override] = ACTIONS(7665), + [anon_sym_requires] = ACTIONS(7665), + [anon_sym_DASH_GT_STAR] = ACTIONS(7665), }, - [STATE(3432)] = { - [sym__abstract_declarator] = STATE(6203), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(2399), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(2157), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(2399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), - [anon_sym_COMMA] = ACTIONS(6995), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6997), - [anon_sym_PLUS] = ACTIONS(6997), - [anon_sym_STAR] = ACTIONS(8108), - [anon_sym_SLASH] = ACTIONS(6997), - [anon_sym_PERCENT] = ACTIONS(6995), - [anon_sym_PIPE_PIPE] = ACTIONS(6995), - [anon_sym_AMP_AMP] = ACTIONS(8110), - [anon_sym_PIPE] = ACTIONS(6997), - [anon_sym_CARET] = ACTIONS(6995), - [anon_sym_AMP] = ACTIONS(8112), - [anon_sym_EQ_EQ] = ACTIONS(6995), - [anon_sym_BANG_EQ] = ACTIONS(6995), - [anon_sym_GT] = ACTIONS(6997), - [anon_sym_GT_EQ] = ACTIONS(6995), - [anon_sym_LT_EQ] = ACTIONS(6997), - [anon_sym_LT] = ACTIONS(6997), - [anon_sym_LT_LT] = ACTIONS(6995), - [anon_sym_GT_GT] = ACTIONS(6995), - [anon_sym_SEMI] = ACTIONS(6995), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym___attribute__] = ACTIONS(6995), - [anon_sym___attribute] = ACTIONS(6997), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(6995), - [anon_sym_LT_EQ_GT] = ACTIONS(6995), - [anon_sym_or] = ACTIONS(6995), - [anon_sym_and] = ACTIONS(6995), - [anon_sym_bitor] = ACTIONS(6995), - [anon_sym_xor] = ACTIONS(6995), - [anon_sym_bitand] = ACTIONS(6995), - [anon_sym_not_eq] = ACTIONS(6995), - [anon_sym_DASH_DASH] = ACTIONS(6995), - [anon_sym_PLUS_PLUS] = ACTIONS(6995), - [anon_sym_DOT] = ACTIONS(6997), - [anon_sym_DOT_STAR] = ACTIONS(6995), - [anon_sym_DASH_GT] = ACTIONS(6995), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6995), - [anon_sym_override] = ACTIONS(6995), - [anon_sym_requires] = ACTIONS(6995), + [STATE(2951)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7475), + [anon_sym_COMMA] = ACTIONS(7475), + [anon_sym_LPAREN2] = ACTIONS(7475), + [anon_sym_DASH] = ACTIONS(7473), + [anon_sym_PLUS] = ACTIONS(7473), + [anon_sym_STAR] = ACTIONS(7473), + [anon_sym_SLASH] = ACTIONS(7473), + [anon_sym_PERCENT] = ACTIONS(7473), + [anon_sym_PIPE_PIPE] = ACTIONS(7475), + [anon_sym_AMP_AMP] = ACTIONS(7475), + [anon_sym_PIPE] = ACTIONS(7473), + [anon_sym_CARET] = ACTIONS(7473), + [anon_sym_AMP] = ACTIONS(7473), + [anon_sym_EQ_EQ] = ACTIONS(7475), + [anon_sym_BANG_EQ] = ACTIONS(7475), + [anon_sym_GT] = ACTIONS(7473), + [anon_sym_GT_EQ] = ACTIONS(7473), + [anon_sym_LT_EQ] = ACTIONS(7473), + [anon_sym_LT] = ACTIONS(7473), + [anon_sym_LT_LT] = ACTIONS(7473), + [anon_sym_GT_GT] = ACTIONS(7473), + [anon_sym___extension__] = ACTIONS(7475), + [anon_sym_COLON_COLON] = ACTIONS(7475), + [anon_sym_LBRACE] = ACTIONS(7475), + [anon_sym_LBRACK] = ACTIONS(7475), + [anon_sym_EQ] = ACTIONS(7473), + [anon_sym_const] = ACTIONS(7473), + [anon_sym_constexpr] = ACTIONS(7475), + [anon_sym_volatile] = ACTIONS(7475), + [anon_sym_restrict] = ACTIONS(7475), + [anon_sym___restrict__] = ACTIONS(7475), + [anon_sym__Atomic] = ACTIONS(7475), + [anon_sym__Noreturn] = ACTIONS(7475), + [anon_sym_noreturn] = ACTIONS(7475), + [anon_sym__Nonnull] = ACTIONS(7475), + [anon_sym_mutable] = ACTIONS(7475), + [anon_sym_constinit] = ACTIONS(7475), + [anon_sym_consteval] = ACTIONS(7475), + [anon_sym_alignas] = ACTIONS(7475), + [anon_sym__Alignas] = ACTIONS(7475), + [anon_sym_QMARK] = ACTIONS(7475), + [anon_sym_STAR_EQ] = ACTIONS(7475), + [anon_sym_SLASH_EQ] = ACTIONS(7475), + [anon_sym_PERCENT_EQ] = ACTIONS(7475), + [anon_sym_PLUS_EQ] = ACTIONS(7475), + [anon_sym_DASH_EQ] = ACTIONS(7475), + [anon_sym_LT_LT_EQ] = ACTIONS(7475), + [anon_sym_GT_GT_EQ] = ACTIONS(7473), + [anon_sym_AMP_EQ] = ACTIONS(7475), + [anon_sym_CARET_EQ] = ACTIONS(7475), + [anon_sym_PIPE_EQ] = ACTIONS(7475), + [anon_sym_and_eq] = ACTIONS(7475), + [anon_sym_or_eq] = ACTIONS(7475), + [anon_sym_xor_eq] = ACTIONS(7475), + [anon_sym_LT_EQ_GT] = ACTIONS(7475), + [anon_sym_or] = ACTIONS(7473), + [anon_sym_and] = ACTIONS(7473), + [anon_sym_bitor] = ACTIONS(7475), + [anon_sym_xor] = ACTIONS(7473), + [anon_sym_bitand] = ACTIONS(7475), + [anon_sym_not_eq] = ACTIONS(7475), + [anon_sym_DASH_DASH] = ACTIONS(7475), + [anon_sym_PLUS_PLUS] = ACTIONS(7475), + [anon_sym_DOT] = ACTIONS(7473), + [anon_sym_DOT_STAR] = ACTIONS(7475), + [anon_sym_DASH_GT] = ACTIONS(7475), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7475), + [anon_sym_override] = ACTIONS(7475), + [anon_sym_GT2] = ACTIONS(7475), + [anon_sym_requires] = ACTIONS(7475), }, - [STATE(3433)] = { - [sym__abstract_declarator] = STATE(6204), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(3436), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(2157), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(3436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), - [anon_sym_COMMA] = ACTIONS(6999), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(7001), - [anon_sym_PLUS] = ACTIONS(7001), - [anon_sym_STAR] = ACTIONS(8108), - [anon_sym_SLASH] = ACTIONS(7001), - [anon_sym_PERCENT] = ACTIONS(6999), - [anon_sym_PIPE_PIPE] = ACTIONS(6999), - [anon_sym_AMP_AMP] = ACTIONS(8110), - [anon_sym_PIPE] = ACTIONS(7001), - [anon_sym_CARET] = ACTIONS(6999), - [anon_sym_AMP] = ACTIONS(8112), - [anon_sym_EQ_EQ] = ACTIONS(6999), - [anon_sym_BANG_EQ] = ACTIONS(6999), - [anon_sym_GT] = ACTIONS(7001), - [anon_sym_GT_EQ] = ACTIONS(6999), - [anon_sym_LT_EQ] = ACTIONS(7001), - [anon_sym_LT] = ACTIONS(7001), - [anon_sym_LT_LT] = ACTIONS(6999), - [anon_sym_GT_GT] = ACTIONS(6999), - [anon_sym_SEMI] = ACTIONS(6999), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym___attribute__] = ACTIONS(6999), - [anon_sym___attribute] = ACTIONS(7001), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(6999), - [anon_sym_or] = ACTIONS(6999), - [anon_sym_and] = ACTIONS(6999), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(6999), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(6999), - [anon_sym_PLUS_PLUS] = ACTIONS(6999), - [anon_sym_DOT] = ACTIONS(7001), - [anon_sym_DOT_STAR] = ACTIONS(6999), - [anon_sym_DASH_GT] = ACTIONS(6999), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6999), - [anon_sym_override] = ACTIONS(6999), - [anon_sym_requires] = ACTIONS(6999), + [STATE(2952)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7765), + [anon_sym_COMMA] = ACTIONS(7765), + [anon_sym_RPAREN] = ACTIONS(7765), + [anon_sym_LPAREN2] = ACTIONS(7765), + [anon_sym_DASH] = ACTIONS(7763), + [anon_sym_PLUS] = ACTIONS(7763), + [anon_sym_STAR] = ACTIONS(7763), + [anon_sym_SLASH] = ACTIONS(7763), + [anon_sym_PERCENT] = ACTIONS(7763), + [anon_sym_PIPE_PIPE] = ACTIONS(7765), + [anon_sym_AMP_AMP] = ACTIONS(7765), + [anon_sym_PIPE] = ACTIONS(7763), + [anon_sym_CARET] = ACTIONS(7763), + [anon_sym_AMP] = ACTIONS(7763), + [anon_sym_EQ_EQ] = ACTIONS(7765), + [anon_sym_BANG_EQ] = ACTIONS(7765), + [anon_sym_GT] = ACTIONS(7763), + [anon_sym_GT_EQ] = ACTIONS(7765), + [anon_sym_LT_EQ] = ACTIONS(7763), + [anon_sym_LT] = ACTIONS(7763), + [anon_sym_LT_LT] = ACTIONS(7763), + [anon_sym_GT_GT] = ACTIONS(7763), + [anon_sym___extension__] = ACTIONS(7765), + [anon_sym_LBRACE] = ACTIONS(7765), + [anon_sym_LBRACK] = ACTIONS(7765), + [anon_sym_EQ] = ACTIONS(7763), + [anon_sym_const] = ACTIONS(7763), + [anon_sym_constexpr] = ACTIONS(7765), + [anon_sym_volatile] = ACTIONS(7765), + [anon_sym_restrict] = ACTIONS(7765), + [anon_sym___restrict__] = ACTIONS(7765), + [anon_sym__Atomic] = ACTIONS(7765), + [anon_sym__Noreturn] = ACTIONS(7765), + [anon_sym_noreturn] = ACTIONS(7765), + [anon_sym__Nonnull] = ACTIONS(7765), + [anon_sym_mutable] = ACTIONS(7765), + [anon_sym_constinit] = ACTIONS(7765), + [anon_sym_consteval] = ACTIONS(7765), + [anon_sym_alignas] = ACTIONS(7765), + [anon_sym__Alignas] = ACTIONS(7765), + [anon_sym_QMARK] = ACTIONS(7765), + [anon_sym_STAR_EQ] = ACTIONS(7765), + [anon_sym_SLASH_EQ] = ACTIONS(7765), + [anon_sym_PERCENT_EQ] = ACTIONS(7765), + [anon_sym_PLUS_EQ] = ACTIONS(7765), + [anon_sym_DASH_EQ] = ACTIONS(7765), + [anon_sym_LT_LT_EQ] = ACTIONS(7765), + [anon_sym_GT_GT_EQ] = ACTIONS(7765), + [anon_sym_AMP_EQ] = ACTIONS(7765), + [anon_sym_CARET_EQ] = ACTIONS(7765), + [anon_sym_PIPE_EQ] = ACTIONS(7765), + [anon_sym_and_eq] = ACTIONS(7765), + [anon_sym_or_eq] = ACTIONS(7765), + [anon_sym_xor_eq] = ACTIONS(7765), + [anon_sym_LT_EQ_GT] = ACTIONS(7765), + [anon_sym_or] = ACTIONS(7763), + [anon_sym_and] = ACTIONS(7763), + [anon_sym_bitor] = ACTIONS(7765), + [anon_sym_xor] = ACTIONS(7763), + [anon_sym_bitand] = ACTIONS(7765), + [anon_sym_not_eq] = ACTIONS(7765), + [anon_sym_DASH_DASH] = ACTIONS(7765), + [anon_sym_PLUS_PLUS] = ACTIONS(7765), + [anon_sym_DOT] = ACTIONS(7763), + [anon_sym_DOT_STAR] = ACTIONS(7765), + [anon_sym_DASH_GT] = ACTIONS(7763), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7765), + [anon_sym_override] = ACTIONS(7765), + [anon_sym_requires] = ACTIONS(7765), + [anon_sym_DASH_GT_STAR] = ACTIONS(7765), }, - [STATE(3434)] = { - [sym_attribute_specifier] = STATE(4374), - [sym_attribute_declaration] = STATE(4622), - [sym_gnu_asm_expression] = STATE(8992), - [sym_virtual_specifier] = STATE(4709), - [sym_ref_qualifier] = STATE(3597), - [sym__function_exception_specification] = STATE(3986), - [sym__function_attributes_end] = STATE(5908), - [sym__function_postfix] = STATE(5258), - [sym_trailing_return_type] = STATE(6005), - [sym_noexcept] = STATE(3986), - [sym_throw_specifier] = STATE(3986), - [sym_requires_clause] = STATE(5258), - [aux_sym_type_definition_repeat1] = STATE(4374), - [aux_sym_attributed_declarator_repeat1] = STATE(4622), - [aux_sym__function_postfix_repeat1] = STATE(4709), - [sym_identifier] = ACTIONS(7546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [aux_sym_preproc_if_token2] = ACTIONS(7544), - [aux_sym_preproc_else_token1] = ACTIONS(7544), - [aux_sym_preproc_elif_token1] = ACTIONS(7546), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7544), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7544), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(8812), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7544), - [anon_sym_AMP] = ACTIONS(8815), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7544), - [anon_sym_GT_GT] = ACTIONS(7544), - [anon_sym___attribute__] = ACTIONS(6859), - [anon_sym___attribute] = ACTIONS(6859), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7546), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7546), - [anon_sym_not_eq] = ACTIONS(7546), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6129), - [anon_sym___asm__] = ACTIONS(6129), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(8882), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8885), - [anon_sym_override] = ACTIONS(8885), - [anon_sym_noexcept] = ACTIONS(6870), - [anon_sym_throw] = ACTIONS(6872), - [anon_sym_requires] = ACTIONS(8888), + [STATE(2953)] = { + [sym_attribute_specifier] = STATE(4179), + [sym_attribute_declaration] = STATE(4554), + [sym_gnu_asm_expression] = STATE(9153), + [sym_virtual_specifier] = STATE(4653), + [sym__function_attributes_end] = STATE(4326), + [sym__function_postfix] = STATE(5126), + [sym_trailing_return_type] = STATE(4535), + [sym_requires_clause] = STATE(5126), + [aux_sym_type_definition_repeat1] = STATE(4179), + [aux_sym_attributed_declarator_repeat1] = STATE(4554), + [aux_sym__function_postfix_repeat1] = STATE(4653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), + [anon_sym_COMMA] = ACTIONS(8422), + [anon_sym_LPAREN2] = ACTIONS(8422), + [anon_sym_DASH] = ACTIONS(8424), + [anon_sym_PLUS] = ACTIONS(8424), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_SLASH] = ACTIONS(8424), + [anon_sym_PERCENT] = ACTIONS(8424), + [anon_sym_PIPE_PIPE] = ACTIONS(8422), + [anon_sym_AMP_AMP] = ACTIONS(8422), + [anon_sym_PIPE] = ACTIONS(8424), + [anon_sym_CARET] = ACTIONS(8424), + [anon_sym_AMP] = ACTIONS(8424), + [anon_sym_EQ_EQ] = ACTIONS(8422), + [anon_sym_BANG_EQ] = ACTIONS(8422), + [anon_sym_GT] = ACTIONS(8424), + [anon_sym_GT_EQ] = ACTIONS(8422), + [anon_sym_LT_EQ] = ACTIONS(8424), + [anon_sym_LT] = ACTIONS(8424), + [anon_sym_LT_LT] = ACTIONS(8424), + [anon_sym_GT_GT] = ACTIONS(8424), + [anon_sym___attribute__] = ACTIONS(6719), + [anon_sym___attribute] = ACTIONS(6721), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), + [anon_sym_LBRACK] = ACTIONS(8424), + [anon_sym_RBRACK] = ACTIONS(8422), + [anon_sym_EQ] = ACTIONS(8424), + [anon_sym_QMARK] = ACTIONS(8422), + [anon_sym_STAR_EQ] = ACTIONS(8422), + [anon_sym_SLASH_EQ] = ACTIONS(8422), + [anon_sym_PERCENT_EQ] = ACTIONS(8422), + [anon_sym_PLUS_EQ] = ACTIONS(8422), + [anon_sym_DASH_EQ] = ACTIONS(8422), + [anon_sym_LT_LT_EQ] = ACTIONS(8422), + [anon_sym_GT_GT_EQ] = ACTIONS(8422), + [anon_sym_AMP_EQ] = ACTIONS(8422), + [anon_sym_CARET_EQ] = ACTIONS(8422), + [anon_sym_PIPE_EQ] = ACTIONS(8422), + [anon_sym_and_eq] = ACTIONS(8422), + [anon_sym_or_eq] = ACTIONS(8422), + [anon_sym_xor_eq] = ACTIONS(8422), + [anon_sym_LT_EQ_GT] = ACTIONS(8422), + [anon_sym_or] = ACTIONS(8424), + [anon_sym_and] = ACTIONS(8424), + [anon_sym_bitor] = ACTIONS(8422), + [anon_sym_xor] = ACTIONS(8424), + [anon_sym_bitand] = ACTIONS(8422), + [anon_sym_not_eq] = ACTIONS(8422), + [anon_sym_DASH_DASH] = ACTIONS(8422), + [anon_sym_PLUS_PLUS] = ACTIONS(8422), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(8424), + [anon_sym_DOT_STAR] = ACTIONS(8422), + [anon_sym_DASH_GT] = ACTIONS(8880), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6742), + [anon_sym_override] = ACTIONS(6742), + [anon_sym_requires] = ACTIONS(6744), }, - [STATE(3435)] = { - [sym_identifier] = ACTIONS(5233), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5235), - [anon_sym_COMMA] = ACTIONS(5235), - [anon_sym_RPAREN] = ACTIONS(5235), - [aux_sym_preproc_if_token2] = ACTIONS(5235), - [aux_sym_preproc_else_token1] = ACTIONS(5235), - [aux_sym_preproc_elif_token1] = ACTIONS(5233), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5235), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5235), - [anon_sym_LPAREN2] = ACTIONS(5235), - [anon_sym_DASH] = ACTIONS(5233), - [anon_sym_PLUS] = ACTIONS(5233), - [anon_sym_STAR] = ACTIONS(5233), - [anon_sym_SLASH] = ACTIONS(5233), - [anon_sym_PERCENT] = ACTIONS(5233), - [anon_sym_PIPE_PIPE] = ACTIONS(5235), - [anon_sym_AMP_AMP] = ACTIONS(5235), - [anon_sym_PIPE] = ACTIONS(5233), - [anon_sym_CARET] = ACTIONS(5233), - [anon_sym_AMP] = ACTIONS(5233), - [anon_sym_EQ_EQ] = ACTIONS(5235), - [anon_sym_BANG_EQ] = ACTIONS(5235), - [anon_sym_GT] = ACTIONS(5233), - [anon_sym_GT_EQ] = ACTIONS(5235), - [anon_sym_LT_EQ] = ACTIONS(5233), - [anon_sym_LT] = ACTIONS(5233), - [anon_sym_LT_LT] = ACTIONS(5233), - [anon_sym_GT_GT] = ACTIONS(5233), - [anon_sym_SEMI] = ACTIONS(5235), - [anon_sym___attribute__] = ACTIONS(5233), - [anon_sym___attribute] = ACTIONS(5233), - [anon_sym_COLON] = ACTIONS(5233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5235), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5235), - [anon_sym_RBRACE] = ACTIONS(5235), - [anon_sym_LBRACK] = ACTIONS(5233), - [anon_sym_EQ] = ACTIONS(5233), - [anon_sym_QMARK] = ACTIONS(5235), - [anon_sym_STAR_EQ] = ACTIONS(5235), - [anon_sym_SLASH_EQ] = ACTIONS(5235), - [anon_sym_PERCENT_EQ] = ACTIONS(5235), - [anon_sym_PLUS_EQ] = ACTIONS(5235), - [anon_sym_DASH_EQ] = ACTIONS(5235), - [anon_sym_LT_LT_EQ] = ACTIONS(5235), - [anon_sym_GT_GT_EQ] = ACTIONS(5235), - [anon_sym_AMP_EQ] = ACTIONS(5235), - [anon_sym_CARET_EQ] = ACTIONS(5235), - [anon_sym_PIPE_EQ] = ACTIONS(5235), - [anon_sym_and_eq] = ACTIONS(5233), - [anon_sym_or_eq] = ACTIONS(5233), - [anon_sym_xor_eq] = ACTIONS(5233), - [anon_sym_LT_EQ_GT] = ACTIONS(5235), - [anon_sym_or] = ACTIONS(5233), - [anon_sym_and] = ACTIONS(5233), - [anon_sym_bitor] = ACTIONS(5233), - [anon_sym_xor] = ACTIONS(5233), - [anon_sym_bitand] = ACTIONS(5233), - [anon_sym_not_eq] = ACTIONS(5233), - [anon_sym_DASH_DASH] = ACTIONS(5235), - [anon_sym_PLUS_PLUS] = ACTIONS(5235), - [anon_sym_DOT] = ACTIONS(5233), - [anon_sym_DOT_STAR] = ACTIONS(5235), - [anon_sym_DASH_GT] = ACTIONS(5235), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5233), - [anon_sym_override] = ACTIONS(5233), - [anon_sym_requires] = ACTIONS(5233), - [anon_sym_COLON_RBRACK] = ACTIONS(5235), + [STATE(2954)] = { + [sym_decltype_auto] = STATE(4116), + [sym_template_argument_list] = STATE(2938), + [aux_sym_sized_type_specifier_repeat1] = STATE(3285), + [sym_identifier] = ACTIONS(5636), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), + [anon_sym_COMMA] = ACTIONS(5643), + [aux_sym_preproc_if_token2] = ACTIONS(5643), + [aux_sym_preproc_else_token1] = ACTIONS(5643), + [aux_sym_preproc_elif_token1] = ACTIONS(5636), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5643), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5643), + [anon_sym_LPAREN2] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5636), + [anon_sym_PLUS] = ACTIONS(5636), + [anon_sym_STAR] = ACTIONS(5643), + [anon_sym_SLASH] = ACTIONS(5636), + [anon_sym_PERCENT] = ACTIONS(5643), + [anon_sym_PIPE_PIPE] = ACTIONS(5643), + [anon_sym_AMP_AMP] = ACTIONS(5643), + [anon_sym_PIPE] = ACTIONS(5636), + [anon_sym_CARET] = ACTIONS(5643), + [anon_sym_AMP] = ACTIONS(5636), + [anon_sym_EQ_EQ] = ACTIONS(5643), + [anon_sym_BANG_EQ] = ACTIONS(5643), + [anon_sym_GT] = ACTIONS(5636), + [anon_sym_GT_EQ] = ACTIONS(5643), + [anon_sym_LT_EQ] = ACTIONS(5636), + [anon_sym_LT] = ACTIONS(8883), + [anon_sym_LT_LT] = ACTIONS(5643), + [anon_sym_GT_GT] = ACTIONS(5643), + [anon_sym___extension__] = ACTIONS(5636), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5643), + [anon_sym_signed] = ACTIONS(6805), + [anon_sym_unsigned] = ACTIONS(6805), + [anon_sym_long] = ACTIONS(6805), + [anon_sym_short] = ACTIONS(6805), + [anon_sym_LBRACK] = ACTIONS(5643), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5636), + [anon_sym_volatile] = ACTIONS(5636), + [anon_sym_restrict] = ACTIONS(5636), + [anon_sym___restrict__] = ACTIONS(5636), + [anon_sym__Atomic] = ACTIONS(5636), + [anon_sym__Noreturn] = ACTIONS(5636), + [anon_sym_noreturn] = ACTIONS(5636), + [anon_sym__Nonnull] = ACTIONS(5636), + [anon_sym_mutable] = ACTIONS(5636), + [anon_sym_constinit] = ACTIONS(5636), + [anon_sym_consteval] = ACTIONS(5636), + [anon_sym_alignas] = ACTIONS(5636), + [anon_sym__Alignas] = ACTIONS(5636), + [anon_sym_QMARK] = ACTIONS(5643), + [anon_sym_LT_EQ_GT] = ACTIONS(5643), + [anon_sym_or] = ACTIONS(5636), + [anon_sym_and] = ACTIONS(5636), + [anon_sym_bitor] = ACTIONS(5636), + [anon_sym_xor] = ACTIONS(5636), + [anon_sym_bitand] = ACTIONS(5636), + [anon_sym_not_eq] = ACTIONS(5636), + [anon_sym_DASH_DASH] = ACTIONS(5643), + [anon_sym_PLUS_PLUS] = ACTIONS(5643), + [anon_sym_DOT] = ACTIONS(5636), + [anon_sym_DOT_STAR] = ACTIONS(5643), + [anon_sym_DASH_GT] = ACTIONS(5643), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6811), + [anon_sym_decltype] = ACTIONS(6813), + [anon_sym_final] = ACTIONS(5636), + [anon_sym_override] = ACTIONS(5636), + [anon_sym_requires] = ACTIONS(5636), }, - [STATE(3436)] = { - [sym__abstract_declarator] = STATE(6205), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(2399), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(2157), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(2399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), - [anon_sym_COMMA] = ACTIONS(7003), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(8108), - [anon_sym_SLASH] = ACTIONS(7005), - [anon_sym_PERCENT] = ACTIONS(7003), - [anon_sym_PIPE_PIPE] = ACTIONS(7003), - [anon_sym_AMP_AMP] = ACTIONS(8110), - [anon_sym_PIPE] = ACTIONS(7005), - [anon_sym_CARET] = ACTIONS(7003), - [anon_sym_AMP] = ACTIONS(8112), - [anon_sym_EQ_EQ] = ACTIONS(7003), - [anon_sym_BANG_EQ] = ACTIONS(7003), - [anon_sym_GT] = ACTIONS(7005), - [anon_sym_GT_EQ] = ACTIONS(7003), - [anon_sym_LT_EQ] = ACTIONS(7005), - [anon_sym_LT] = ACTIONS(7005), - [anon_sym_LT_LT] = ACTIONS(7003), - [anon_sym_GT_GT] = ACTIONS(7003), - [anon_sym_SEMI] = ACTIONS(7003), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym___attribute__] = ACTIONS(7003), - [anon_sym___attribute] = ACTIONS(7005), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(7003), - [anon_sym_LT_EQ_GT] = ACTIONS(7003), - [anon_sym_or] = ACTIONS(7003), - [anon_sym_and] = ACTIONS(7003), - [anon_sym_bitor] = ACTIONS(7003), - [anon_sym_xor] = ACTIONS(7003), - [anon_sym_bitand] = ACTIONS(7003), - [anon_sym_not_eq] = ACTIONS(7003), - [anon_sym_DASH_DASH] = ACTIONS(7003), - [anon_sym_PLUS_PLUS] = ACTIONS(7003), - [anon_sym_DOT] = ACTIONS(7005), - [anon_sym_DOT_STAR] = ACTIONS(7003), - [anon_sym_DASH_GT] = ACTIONS(7003), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7003), - [anon_sym_override] = ACTIONS(7003), - [anon_sym_requires] = ACTIONS(7003), + [STATE(2955)] = { + [sym_identifier] = ACTIONS(8885), + [anon_sym_LPAREN2] = ACTIONS(8887), + [anon_sym_TILDE] = ACTIONS(8887), + [anon_sym_STAR] = ACTIONS(8887), + [anon_sym_PIPE_PIPE] = ACTIONS(8887), + [anon_sym_AMP_AMP] = ACTIONS(8887), + [anon_sym_AMP] = ACTIONS(8885), + [anon_sym___extension__] = ACTIONS(8885), + [anon_sym_virtual] = ACTIONS(8885), + [anon_sym_extern] = ACTIONS(8885), + [anon_sym___attribute__] = ACTIONS(8885), + [anon_sym___attribute] = ACTIONS(8885), + [anon_sym_using] = ACTIONS(8885), + [anon_sym_COLON_COLON] = ACTIONS(8887), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8887), + [anon_sym___declspec] = ACTIONS(8885), + [anon_sym___based] = ACTIONS(8885), + [anon_sym___cdecl] = ACTIONS(8885), + [anon_sym___clrcall] = ACTIONS(8885), + [anon_sym___stdcall] = ACTIONS(8885), + [anon_sym___fastcall] = ACTIONS(8885), + [anon_sym___thiscall] = ACTIONS(8885), + [anon_sym___vectorcall] = ACTIONS(8885), + [anon_sym_LBRACE] = ACTIONS(8887), + [anon_sym_signed] = ACTIONS(8885), + [anon_sym_unsigned] = ACTIONS(8885), + [anon_sym_long] = ACTIONS(8885), + [anon_sym_short] = ACTIONS(8885), + [anon_sym_LBRACK] = ACTIONS(8885), + [anon_sym_static] = ACTIONS(8885), + [anon_sym_register] = ACTIONS(8885), + [anon_sym_inline] = ACTIONS(8885), + [anon_sym___inline] = ACTIONS(8885), + [anon_sym___inline__] = ACTIONS(8885), + [anon_sym___forceinline] = ACTIONS(8885), + [anon_sym_thread_local] = ACTIONS(8885), + [anon_sym___thread] = ACTIONS(8885), + [anon_sym_const] = ACTIONS(8885), + [anon_sym_constexpr] = ACTIONS(8885), + [anon_sym_volatile] = ACTIONS(8885), + [anon_sym_restrict] = ACTIONS(8885), + [anon_sym___restrict__] = ACTIONS(8885), + [anon_sym__Atomic] = ACTIONS(8885), + [anon_sym__Noreturn] = ACTIONS(8885), + [anon_sym_noreturn] = ACTIONS(8885), + [anon_sym__Nonnull] = ACTIONS(8885), + [anon_sym_mutable] = ACTIONS(8885), + [anon_sym_constinit] = ACTIONS(8885), + [anon_sym_consteval] = ACTIONS(8885), + [anon_sym_alignas] = ACTIONS(8885), + [anon_sym__Alignas] = ACTIONS(8885), + [sym_primitive_type] = ACTIONS(8885), + [anon_sym_enum] = ACTIONS(8885), + [anon_sym_class] = ACTIONS(8885), + [anon_sym_struct] = ACTIONS(8885), + [anon_sym_union] = ACTIONS(8885), + [anon_sym_or] = ACTIONS(8885), + [anon_sym_and] = ACTIONS(8885), + [anon_sym_typename] = ACTIONS(8885), + [anon_sym_DASH_GT] = ACTIONS(8887), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8885), + [anon_sym_decltype] = ACTIONS(8885), + [anon_sym_explicit] = ACTIONS(8885), + [anon_sym_template] = ACTIONS(8885), + [anon_sym_operator] = ACTIONS(8885), + [anon_sym_friend] = ACTIONS(8885), + [anon_sym_noexcept] = ACTIONS(8885), + [anon_sym_throw] = ACTIONS(8885), + [anon_sym_concept] = ACTIONS(8885), + [anon_sym_LBRACK_COLON] = ACTIONS(8887), }, - [STATE(3437)] = { - [sym__abstract_declarator] = STATE(6188), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(2399), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(2157), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(2399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), - [anon_sym_COMMA] = ACTIONS(7007), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(7009), - [anon_sym_PLUS] = ACTIONS(7009), - [anon_sym_STAR] = ACTIONS(8108), - [anon_sym_SLASH] = ACTIONS(7009), - [anon_sym_PERCENT] = ACTIONS(7007), - [anon_sym_PIPE_PIPE] = ACTIONS(7007), - [anon_sym_AMP_AMP] = ACTIONS(8110), - [anon_sym_PIPE] = ACTIONS(7009), - [anon_sym_CARET] = ACTIONS(7007), - [anon_sym_AMP] = ACTIONS(8112), - [anon_sym_EQ_EQ] = ACTIONS(7007), - [anon_sym_BANG_EQ] = ACTIONS(7007), - [anon_sym_GT] = ACTIONS(7009), - [anon_sym_GT_EQ] = ACTIONS(7007), - [anon_sym_LT_EQ] = ACTIONS(7009), - [anon_sym_LT] = ACTIONS(7009), - [anon_sym_LT_LT] = ACTIONS(7007), - [anon_sym_GT_GT] = ACTIONS(7007), - [anon_sym_SEMI] = ACTIONS(7007), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym___attribute__] = ACTIONS(7007), - [anon_sym___attribute] = ACTIONS(7009), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(7007), - [anon_sym_LT_EQ_GT] = ACTIONS(7007), - [anon_sym_or] = ACTIONS(7007), - [anon_sym_and] = ACTIONS(7007), - [anon_sym_bitor] = ACTIONS(7007), - [anon_sym_xor] = ACTIONS(7007), - [anon_sym_bitand] = ACTIONS(7007), - [anon_sym_not_eq] = ACTIONS(7007), - [anon_sym_DASH_DASH] = ACTIONS(7007), - [anon_sym_PLUS_PLUS] = ACTIONS(7007), - [anon_sym_DOT] = ACTIONS(7009), - [anon_sym_DOT_STAR] = ACTIONS(7007), - [anon_sym_DASH_GT] = ACTIONS(7007), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7007), - [anon_sym_override] = ACTIONS(7007), - [anon_sym_requires] = ACTIONS(7007), + [STATE(2956)] = { + [sym_identifier] = ACTIONS(8889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8891), + [anon_sym_COMMA] = ACTIONS(8891), + [anon_sym_RPAREN] = ACTIONS(8891), + [aux_sym_preproc_if_token2] = ACTIONS(8891), + [aux_sym_preproc_else_token1] = ACTIONS(8891), + [aux_sym_preproc_elif_token1] = ACTIONS(8889), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8891), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8891), + [anon_sym_LPAREN2] = ACTIONS(8891), + [anon_sym_DASH] = ACTIONS(8889), + [anon_sym_PLUS] = ACTIONS(8889), + [anon_sym_STAR] = ACTIONS(8889), + [anon_sym_SLASH] = ACTIONS(8889), + [anon_sym_PERCENT] = ACTIONS(8889), + [anon_sym_PIPE_PIPE] = ACTIONS(8891), + [anon_sym_AMP_AMP] = ACTIONS(8891), + [anon_sym_PIPE] = ACTIONS(8889), + [anon_sym_CARET] = ACTIONS(8889), + [anon_sym_AMP] = ACTIONS(8889), + [anon_sym_EQ_EQ] = ACTIONS(8891), + [anon_sym_BANG_EQ] = ACTIONS(8891), + [anon_sym_GT] = ACTIONS(8889), + [anon_sym_GT_EQ] = ACTIONS(8891), + [anon_sym_LT_EQ] = ACTIONS(8889), + [anon_sym_LT] = ACTIONS(8889), + [anon_sym_LT_LT] = ACTIONS(8889), + [anon_sym_GT_GT] = ACTIONS(8889), + [anon_sym_SEMI] = ACTIONS(8891), + [anon_sym___attribute__] = ACTIONS(8889), + [anon_sym___attribute] = ACTIONS(8889), + [anon_sym_COLON] = ACTIONS(8889), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8891), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8891), + [anon_sym_RBRACE] = ACTIONS(8891), + [anon_sym_LBRACK] = ACTIONS(8889), + [anon_sym_EQ] = ACTIONS(8889), + [anon_sym_QMARK] = ACTIONS(8891), + [anon_sym_STAR_EQ] = ACTIONS(8891), + [anon_sym_SLASH_EQ] = ACTIONS(8891), + [anon_sym_PERCENT_EQ] = ACTIONS(8891), + [anon_sym_PLUS_EQ] = ACTIONS(8891), + [anon_sym_DASH_EQ] = ACTIONS(8891), + [anon_sym_LT_LT_EQ] = ACTIONS(8891), + [anon_sym_GT_GT_EQ] = ACTIONS(8891), + [anon_sym_AMP_EQ] = ACTIONS(8891), + [anon_sym_CARET_EQ] = ACTIONS(8891), + [anon_sym_PIPE_EQ] = ACTIONS(8891), + [anon_sym_and_eq] = ACTIONS(8889), + [anon_sym_or_eq] = ACTIONS(8889), + [anon_sym_xor_eq] = ACTIONS(8889), + [anon_sym_LT_EQ_GT] = ACTIONS(8891), + [anon_sym_or] = ACTIONS(8889), + [anon_sym_and] = ACTIONS(8889), + [anon_sym_bitor] = ACTIONS(8889), + [anon_sym_xor] = ACTIONS(8889), + [anon_sym_bitand] = ACTIONS(8889), + [anon_sym_not_eq] = ACTIONS(8889), + [anon_sym_DASH_DASH] = ACTIONS(8891), + [anon_sym_PLUS_PLUS] = ACTIONS(8891), + [anon_sym_asm] = ACTIONS(8889), + [anon_sym___asm__] = ACTIONS(8889), + [anon_sym___asm] = ACTIONS(8889), + [anon_sym_DOT] = ACTIONS(8889), + [anon_sym_DOT_STAR] = ACTIONS(8891), + [anon_sym_DASH_GT] = ACTIONS(8891), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8889), + [anon_sym_override] = ACTIONS(8889), + [anon_sym_requires] = ACTIONS(8889), + [anon_sym_COLON_RBRACK] = ACTIONS(8891), }, - [STATE(3438)] = { - [sym_type_qualifier] = STATE(3559), - [sym_alignas_qualifier] = STATE(3736), - [aux_sym__type_definition_type_repeat1] = STATE(3559), - [aux_sym_sized_type_specifier_repeat1] = STATE(3322), - [sym_identifier] = ACTIONS(8891), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), - [anon_sym_COMMA] = ACTIONS(6884), - [anon_sym_LPAREN2] = ACTIONS(6884), - [anon_sym_DASH] = ACTIONS(6886), - [anon_sym_PLUS] = ACTIONS(6886), - [anon_sym_STAR] = ACTIONS(6884), - [anon_sym_SLASH] = ACTIONS(6886), - [anon_sym_PERCENT] = ACTIONS(6884), - [anon_sym_PIPE_PIPE] = ACTIONS(6884), - [anon_sym_AMP_AMP] = ACTIONS(6884), - [anon_sym_PIPE] = ACTIONS(6886), - [anon_sym_CARET] = ACTIONS(6884), - [anon_sym_AMP] = ACTIONS(6886), - [anon_sym_EQ_EQ] = ACTIONS(6884), - [anon_sym_BANG_EQ] = ACTIONS(6884), - [anon_sym_GT] = ACTIONS(6886), - [anon_sym_GT_EQ] = ACTIONS(6884), - [anon_sym_LT_EQ] = ACTIONS(6886), - [anon_sym_LT] = ACTIONS(6886), - [anon_sym_LT_LT] = ACTIONS(6884), - [anon_sym_GT_GT] = ACTIONS(6884), + [STATE(2957)] = { + [sym_identifier] = ACTIONS(8893), + [anon_sym_LPAREN2] = ACTIONS(8895), + [anon_sym_TILDE] = ACTIONS(8895), + [anon_sym_STAR] = ACTIONS(8895), + [anon_sym_PIPE_PIPE] = ACTIONS(8895), + [anon_sym_AMP_AMP] = ACTIONS(8895), + [anon_sym_AMP] = ACTIONS(8893), [anon_sym___extension__] = ACTIONS(8893), - [anon_sym___attribute__] = ACTIONS(6886), - [anon_sym___attribute] = ACTIONS(6886), - [anon_sym_LBRACE] = ACTIONS(6884), - [anon_sym_signed] = ACTIONS(8486), - [anon_sym_unsigned] = ACTIONS(8486), - [anon_sym_long] = ACTIONS(8486), - [anon_sym_short] = ACTIONS(8486), - [anon_sym_LBRACK] = ACTIONS(6884), - [anon_sym_RBRACK] = ACTIONS(6884), + [anon_sym_virtual] = ACTIONS(8893), + [anon_sym_extern] = ACTIONS(8893), + [anon_sym___attribute__] = ACTIONS(8893), + [anon_sym___attribute] = ACTIONS(8893), + [anon_sym_using] = ACTIONS(8893), + [anon_sym_COLON_COLON] = ACTIONS(8895), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8895), + [anon_sym___declspec] = ACTIONS(8893), + [anon_sym___based] = ACTIONS(8893), + [anon_sym___cdecl] = ACTIONS(8893), + [anon_sym___clrcall] = ACTIONS(8893), + [anon_sym___stdcall] = ACTIONS(8893), + [anon_sym___fastcall] = ACTIONS(8893), + [anon_sym___thiscall] = ACTIONS(8893), + [anon_sym___vectorcall] = ACTIONS(8893), + [anon_sym_LBRACE] = ACTIONS(8895), + [anon_sym_signed] = ACTIONS(8893), + [anon_sym_unsigned] = ACTIONS(8893), + [anon_sym_long] = ACTIONS(8893), + [anon_sym_short] = ACTIONS(8893), + [anon_sym_LBRACK] = ACTIONS(8893), + [anon_sym_static] = ACTIONS(8893), + [anon_sym_register] = ACTIONS(8893), + [anon_sym_inline] = ACTIONS(8893), + [anon_sym___inline] = ACTIONS(8893), + [anon_sym___inline__] = ACTIONS(8893), + [anon_sym___forceinline] = ACTIONS(8893), + [anon_sym_thread_local] = ACTIONS(8893), + [anon_sym___thread] = ACTIONS(8893), [anon_sym_const] = ACTIONS(8893), [anon_sym_constexpr] = ACTIONS(8893), [anon_sym_volatile] = ACTIONS(8893), @@ -411437,2645 +390622,2407 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(8893), [anon_sym_constinit] = ACTIONS(8893), [anon_sym_consteval] = ACTIONS(8893), - [anon_sym_alignas] = ACTIONS(8896), - [anon_sym__Alignas] = ACTIONS(8896), - [sym_primitive_type] = ACTIONS(8488), - [anon_sym_QMARK] = ACTIONS(6884), - [anon_sym_LT_EQ_GT] = ACTIONS(6884), - [anon_sym_or] = ACTIONS(6886), - [anon_sym_and] = ACTIONS(6886), - [anon_sym_bitor] = ACTIONS(6886), - [anon_sym_xor] = ACTIONS(6886), - [anon_sym_bitand] = ACTIONS(6886), - [anon_sym_not_eq] = ACTIONS(6886), - [anon_sym_DASH_DASH] = ACTIONS(6884), - [anon_sym_PLUS_PLUS] = ACTIONS(6884), - [anon_sym_DOT] = ACTIONS(6886), - [anon_sym_DOT_STAR] = ACTIONS(6884), - [anon_sym_DASH_GT] = ACTIONS(6884), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6886), - [anon_sym_override] = ACTIONS(6886), - [anon_sym_requires] = ACTIONS(6886), + [anon_sym_alignas] = ACTIONS(8893), + [anon_sym__Alignas] = ACTIONS(8893), + [sym_primitive_type] = ACTIONS(8893), + [anon_sym_enum] = ACTIONS(8893), + [anon_sym_class] = ACTIONS(8893), + [anon_sym_struct] = ACTIONS(8893), + [anon_sym_union] = ACTIONS(8893), + [anon_sym_or] = ACTIONS(8893), + [anon_sym_and] = ACTIONS(8893), + [anon_sym_typename] = ACTIONS(8893), + [anon_sym_DASH_GT] = ACTIONS(8895), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8893), + [anon_sym_decltype] = ACTIONS(8893), + [anon_sym_explicit] = ACTIONS(8893), + [anon_sym_template] = ACTIONS(8893), + [anon_sym_operator] = ACTIONS(8893), + [anon_sym_friend] = ACTIONS(8893), + [anon_sym_noexcept] = ACTIONS(8893), + [anon_sym_throw] = ACTIONS(8893), + [anon_sym_concept] = ACTIONS(8893), + [anon_sym_LBRACK_COLON] = ACTIONS(8895), }, - [STATE(3439)] = { - [sym_identifier] = ACTIONS(6949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), - [anon_sym_COMMA] = ACTIONS(6951), - [aux_sym_preproc_if_token2] = ACTIONS(6951), - [aux_sym_preproc_else_token1] = ACTIONS(6951), - [aux_sym_preproc_elif_token1] = ACTIONS(6949), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6951), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6951), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_DASH] = ACTIONS(6949), - [anon_sym_PLUS] = ACTIONS(6949), - [anon_sym_STAR] = ACTIONS(6951), - [anon_sym_SLASH] = ACTIONS(6949), - [anon_sym_PERCENT] = ACTIONS(6951), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_PIPE] = ACTIONS(6949), - [anon_sym_CARET] = ACTIONS(6951), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_GT] = ACTIONS(6949), - [anon_sym_GT_EQ] = ACTIONS(6951), - [anon_sym_LT_EQ] = ACTIONS(6949), - [anon_sym_LT] = ACTIONS(6949), - [anon_sym_LT_LT] = ACTIONS(6951), - [anon_sym_GT_GT] = ACTIONS(6951), - [anon_sym___extension__] = ACTIONS(6949), - [anon_sym___attribute__] = ACTIONS(6949), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_COLON] = ACTIONS(6949), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(6951), - [anon_sym_LBRACK] = ACTIONS(6951), - [anon_sym_RBRACK] = ACTIONS(6951), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6949), - [anon_sym_volatile] = ACTIONS(6949), - [anon_sym_restrict] = ACTIONS(6949), - [anon_sym___restrict__] = ACTIONS(6949), - [anon_sym__Atomic] = ACTIONS(6949), - [anon_sym__Noreturn] = ACTIONS(6949), - [anon_sym_noreturn] = ACTIONS(6949), - [anon_sym__Nonnull] = ACTIONS(6949), - [anon_sym_mutable] = ACTIONS(6949), - [anon_sym_constinit] = ACTIONS(6949), - [anon_sym_consteval] = ACTIONS(6949), - [anon_sym_alignas] = ACTIONS(6949), - [anon_sym__Alignas] = ACTIONS(6949), - [anon_sym_QMARK] = ACTIONS(6951), - [anon_sym_LT_EQ_GT] = ACTIONS(6951), - [anon_sym_or] = ACTIONS(6949), - [anon_sym_and] = ACTIONS(6949), - [anon_sym_bitor] = ACTIONS(6949), - [anon_sym_xor] = ACTIONS(6949), - [anon_sym_bitand] = ACTIONS(6949), - [anon_sym_not_eq] = ACTIONS(6949), - [anon_sym_DASH_DASH] = ACTIONS(6951), - [anon_sym_PLUS_PLUS] = ACTIONS(6951), - [anon_sym_DOT] = ACTIONS(6949), - [anon_sym_DOT_STAR] = ACTIONS(6951), - [anon_sym_DASH_GT] = ACTIONS(6951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6949), - [anon_sym_decltype] = ACTIONS(6949), - [anon_sym_final] = ACTIONS(6949), - [anon_sym_override] = ACTIONS(6949), - [anon_sym_requires] = ACTIONS(6949), + [STATE(2958)] = { + [sym_identifier] = ACTIONS(8897), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8899), + [anon_sym_COMMA] = ACTIONS(8899), + [anon_sym_RPAREN] = ACTIONS(8899), + [aux_sym_preproc_if_token2] = ACTIONS(8899), + [aux_sym_preproc_else_token1] = ACTIONS(8899), + [aux_sym_preproc_elif_token1] = ACTIONS(8897), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8899), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8899), + [anon_sym_LPAREN2] = ACTIONS(8899), + [anon_sym_DASH] = ACTIONS(8897), + [anon_sym_PLUS] = ACTIONS(8897), + [anon_sym_STAR] = ACTIONS(8897), + [anon_sym_SLASH] = ACTIONS(8897), + [anon_sym_PERCENT] = ACTIONS(8897), + [anon_sym_PIPE_PIPE] = ACTIONS(8899), + [anon_sym_AMP_AMP] = ACTIONS(8899), + [anon_sym_PIPE] = ACTIONS(8897), + [anon_sym_CARET] = ACTIONS(8897), + [anon_sym_AMP] = ACTIONS(8897), + [anon_sym_EQ_EQ] = ACTIONS(8899), + [anon_sym_BANG_EQ] = ACTIONS(8899), + [anon_sym_GT] = ACTIONS(8897), + [anon_sym_GT_EQ] = ACTIONS(8899), + [anon_sym_LT_EQ] = ACTIONS(8897), + [anon_sym_LT] = ACTIONS(8897), + [anon_sym_LT_LT] = ACTIONS(8897), + [anon_sym_GT_GT] = ACTIONS(8897), + [anon_sym_SEMI] = ACTIONS(8899), + [anon_sym___attribute__] = ACTIONS(8897), + [anon_sym___attribute] = ACTIONS(8897), + [anon_sym_COLON] = ACTIONS(8897), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8899), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8899), + [anon_sym_RBRACE] = ACTIONS(8899), + [anon_sym_LBRACK] = ACTIONS(8897), + [anon_sym_EQ] = ACTIONS(8897), + [anon_sym_QMARK] = ACTIONS(8899), + [anon_sym_STAR_EQ] = ACTIONS(8899), + [anon_sym_SLASH_EQ] = ACTIONS(8899), + [anon_sym_PERCENT_EQ] = ACTIONS(8899), + [anon_sym_PLUS_EQ] = ACTIONS(8899), + [anon_sym_DASH_EQ] = ACTIONS(8899), + [anon_sym_LT_LT_EQ] = ACTIONS(8899), + [anon_sym_GT_GT_EQ] = ACTIONS(8899), + [anon_sym_AMP_EQ] = ACTIONS(8899), + [anon_sym_CARET_EQ] = ACTIONS(8899), + [anon_sym_PIPE_EQ] = ACTIONS(8899), + [anon_sym_and_eq] = ACTIONS(8897), + [anon_sym_or_eq] = ACTIONS(8897), + [anon_sym_xor_eq] = ACTIONS(8897), + [anon_sym_LT_EQ_GT] = ACTIONS(8899), + [anon_sym_or] = ACTIONS(8897), + [anon_sym_and] = ACTIONS(8897), + [anon_sym_bitor] = ACTIONS(8897), + [anon_sym_xor] = ACTIONS(8897), + [anon_sym_bitand] = ACTIONS(8897), + [anon_sym_not_eq] = ACTIONS(8897), + [anon_sym_DASH_DASH] = ACTIONS(8899), + [anon_sym_PLUS_PLUS] = ACTIONS(8899), + [anon_sym_asm] = ACTIONS(8897), + [anon_sym___asm__] = ACTIONS(8897), + [anon_sym___asm] = ACTIONS(8897), + [anon_sym_DOT] = ACTIONS(8897), + [anon_sym_DOT_STAR] = ACTIONS(8899), + [anon_sym_DASH_GT] = ACTIONS(8899), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8897), + [anon_sym_override] = ACTIONS(8897), + [anon_sym_requires] = ACTIONS(8897), + [anon_sym_COLON_RBRACK] = ACTIONS(8899), }, - [STATE(3440)] = { - [sym__abstract_declarator] = STATE(6193), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(3420), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(1976), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(3420), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), - [anon_sym_COMMA] = ACTIONS(6991), - [anon_sym_RPAREN] = ACTIONS(6991), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6993), - [anon_sym_PLUS] = ACTIONS(6993), - [anon_sym_STAR] = ACTIONS(8030), - [anon_sym_SLASH] = ACTIONS(6993), - [anon_sym_PERCENT] = ACTIONS(6991), - [anon_sym_PIPE_PIPE] = ACTIONS(6991), - [anon_sym_AMP_AMP] = ACTIONS(8032), - [anon_sym_PIPE] = ACTIONS(6993), - [anon_sym_CARET] = ACTIONS(6991), - [anon_sym_AMP] = ACTIONS(8034), - [anon_sym_EQ_EQ] = ACTIONS(6991), - [anon_sym_BANG_EQ] = ACTIONS(6991), - [anon_sym_GT] = ACTIONS(6993), - [anon_sym_GT_EQ] = ACTIONS(6991), - [anon_sym_LT_EQ] = ACTIONS(6993), - [anon_sym_LT] = ACTIONS(6993), - [anon_sym_LT_LT] = ACTIONS(6991), - [anon_sym_GT_GT] = ACTIONS(6991), - [anon_sym_SEMI] = ACTIONS(6991), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym_COLON] = ACTIONS(6993), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6991), - [anon_sym_RBRACE] = ACTIONS(6991), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(6991), - [anon_sym_LT_EQ_GT] = ACTIONS(6991), - [anon_sym_or] = ACTIONS(6991), - [anon_sym_and] = ACTIONS(6991), - [anon_sym_bitor] = ACTIONS(6991), - [anon_sym_xor] = ACTIONS(6991), - [anon_sym_bitand] = ACTIONS(6991), - [anon_sym_not_eq] = ACTIONS(6991), - [anon_sym_DASH_DASH] = ACTIONS(6991), - [anon_sym_PLUS_PLUS] = ACTIONS(6991), - [anon_sym_DOT] = ACTIONS(6993), - [anon_sym_DOT_STAR] = ACTIONS(6991), - [anon_sym_DASH_GT] = ACTIONS(6991), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6991), + [STATE(2959)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7629), + [anon_sym_COMMA] = ACTIONS(7629), + [anon_sym_RPAREN] = ACTIONS(7629), + [anon_sym_LPAREN2] = ACTIONS(7629), + [anon_sym_DASH] = ACTIONS(7627), + [anon_sym_PLUS] = ACTIONS(7627), + [anon_sym_STAR] = ACTIONS(7627), + [anon_sym_SLASH] = ACTIONS(7627), + [anon_sym_PERCENT] = ACTIONS(7627), + [anon_sym_PIPE_PIPE] = ACTIONS(7629), + [anon_sym_AMP_AMP] = ACTIONS(7629), + [anon_sym_PIPE] = ACTIONS(7627), + [anon_sym_CARET] = ACTIONS(7627), + [anon_sym_AMP] = ACTIONS(7627), + [anon_sym_EQ_EQ] = ACTIONS(7629), + [anon_sym_BANG_EQ] = ACTIONS(7629), + [anon_sym_GT] = ACTIONS(7627), + [anon_sym_GT_EQ] = ACTIONS(7629), + [anon_sym_LT_EQ] = ACTIONS(7627), + [anon_sym_LT] = ACTIONS(7627), + [anon_sym_LT_LT] = ACTIONS(7627), + [anon_sym_GT_GT] = ACTIONS(7627), + [anon_sym___extension__] = ACTIONS(7629), + [anon_sym_LBRACE] = ACTIONS(7629), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7627), + [anon_sym_const] = ACTIONS(7627), + [anon_sym_constexpr] = ACTIONS(7629), + [anon_sym_volatile] = ACTIONS(7629), + [anon_sym_restrict] = ACTIONS(7629), + [anon_sym___restrict__] = ACTIONS(7629), + [anon_sym__Atomic] = ACTIONS(7629), + [anon_sym__Noreturn] = ACTIONS(7629), + [anon_sym_noreturn] = ACTIONS(7629), + [anon_sym__Nonnull] = ACTIONS(7629), + [anon_sym_mutable] = ACTIONS(7629), + [anon_sym_constinit] = ACTIONS(7629), + [anon_sym_consteval] = ACTIONS(7629), + [anon_sym_alignas] = ACTIONS(7629), + [anon_sym__Alignas] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7629), + [anon_sym_STAR_EQ] = ACTIONS(7629), + [anon_sym_SLASH_EQ] = ACTIONS(7629), + [anon_sym_PERCENT_EQ] = ACTIONS(7629), + [anon_sym_PLUS_EQ] = ACTIONS(7629), + [anon_sym_DASH_EQ] = ACTIONS(7629), + [anon_sym_LT_LT_EQ] = ACTIONS(7629), + [anon_sym_GT_GT_EQ] = ACTIONS(7629), + [anon_sym_AMP_EQ] = ACTIONS(7629), + [anon_sym_CARET_EQ] = ACTIONS(7629), + [anon_sym_PIPE_EQ] = ACTIONS(7629), + [anon_sym_and_eq] = ACTIONS(7629), + [anon_sym_or_eq] = ACTIONS(7629), + [anon_sym_xor_eq] = ACTIONS(7629), + [anon_sym_LT_EQ_GT] = ACTIONS(7629), + [anon_sym_or] = ACTIONS(7627), + [anon_sym_and] = ACTIONS(7627), + [anon_sym_bitor] = ACTIONS(7629), + [anon_sym_xor] = ACTIONS(7627), + [anon_sym_bitand] = ACTIONS(7629), + [anon_sym_not_eq] = ACTIONS(7629), + [anon_sym_DASH_DASH] = ACTIONS(7629), + [anon_sym_PLUS_PLUS] = ACTIONS(7629), + [anon_sym_DOT] = ACTIONS(7627), + [anon_sym_DOT_STAR] = ACTIONS(7629), + [anon_sym_DASH_GT] = ACTIONS(7627), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7629), + [anon_sym_override] = ACTIONS(7629), + [anon_sym_requires] = ACTIONS(7629), + [anon_sym_DASH_GT_STAR] = ACTIONS(7629), }, - [STATE(3441)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7265), - [anon_sym_COMMA] = ACTIONS(7265), - [anon_sym_RPAREN] = ACTIONS(7265), - [anon_sym_LPAREN2] = ACTIONS(7265), - [anon_sym_DASH] = ACTIONS(7263), - [anon_sym_PLUS] = ACTIONS(7263), - [anon_sym_STAR] = ACTIONS(7263), - [anon_sym_SLASH] = ACTIONS(7263), - [anon_sym_PERCENT] = ACTIONS(7263), - [anon_sym_PIPE_PIPE] = ACTIONS(7265), - [anon_sym_AMP_AMP] = ACTIONS(7265), - [anon_sym_PIPE] = ACTIONS(7263), - [anon_sym_CARET] = ACTIONS(7263), - [anon_sym_AMP] = ACTIONS(7263), - [anon_sym_EQ_EQ] = ACTIONS(7265), - [anon_sym_BANG_EQ] = ACTIONS(7265), - [anon_sym_GT] = ACTIONS(7263), - [anon_sym_GT_EQ] = ACTIONS(7265), - [anon_sym_LT_EQ] = ACTIONS(7263), - [anon_sym_LT] = ACTIONS(7263), - [anon_sym_LT_LT] = ACTIONS(7263), - [anon_sym_GT_GT] = ACTIONS(7263), - [anon_sym___extension__] = ACTIONS(7265), - [anon_sym_LBRACE] = ACTIONS(7265), - [anon_sym_LBRACK] = ACTIONS(7265), - [anon_sym_EQ] = ACTIONS(7263), - [anon_sym_const] = ACTIONS(7263), - [anon_sym_constexpr] = ACTIONS(7265), - [anon_sym_volatile] = ACTIONS(7265), - [anon_sym_restrict] = ACTIONS(7265), - [anon_sym___restrict__] = ACTIONS(7265), - [anon_sym__Atomic] = ACTIONS(7265), - [anon_sym__Noreturn] = ACTIONS(7265), - [anon_sym_noreturn] = ACTIONS(7265), - [anon_sym__Nonnull] = ACTIONS(7265), - [anon_sym_mutable] = ACTIONS(7265), - [anon_sym_constinit] = ACTIONS(7265), - [anon_sym_consteval] = ACTIONS(7265), - [anon_sym_alignas] = ACTIONS(7265), - [anon_sym__Alignas] = ACTIONS(7265), - [anon_sym_QMARK] = ACTIONS(7265), - [anon_sym_STAR_EQ] = ACTIONS(7265), - [anon_sym_SLASH_EQ] = ACTIONS(7265), - [anon_sym_PERCENT_EQ] = ACTIONS(7265), - [anon_sym_PLUS_EQ] = ACTIONS(7265), - [anon_sym_DASH_EQ] = ACTIONS(7265), - [anon_sym_LT_LT_EQ] = ACTIONS(7265), - [anon_sym_GT_GT_EQ] = ACTIONS(7265), - [anon_sym_AMP_EQ] = ACTIONS(7265), - [anon_sym_CARET_EQ] = ACTIONS(7265), - [anon_sym_PIPE_EQ] = ACTIONS(7265), - [anon_sym_LT_EQ_GT] = ACTIONS(7265), - [anon_sym_or] = ACTIONS(7265), - [anon_sym_and] = ACTIONS(7265), - [anon_sym_bitor] = ACTIONS(7265), - [anon_sym_xor] = ACTIONS(7265), - [anon_sym_bitand] = ACTIONS(7265), - [anon_sym_not_eq] = ACTIONS(7265), - [anon_sym_DASH_DASH] = ACTIONS(7265), - [anon_sym_PLUS_PLUS] = ACTIONS(7265), - [anon_sym_DOT] = ACTIONS(7263), - [anon_sym_DOT_STAR] = ACTIONS(7265), - [anon_sym_DASH_GT] = ACTIONS(7263), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7265), - [anon_sym_override] = ACTIONS(7265), - [anon_sym_requires] = ACTIONS(7265), - [anon_sym_DASH_GT_STAR] = ACTIONS(7265), + [STATE(2960)] = { + [sym_identifier] = ACTIONS(8901), + [anon_sym_LPAREN2] = ACTIONS(8903), + [anon_sym_TILDE] = ACTIONS(8903), + [anon_sym_STAR] = ACTIONS(8903), + [anon_sym_PIPE_PIPE] = ACTIONS(8903), + [anon_sym_AMP_AMP] = ACTIONS(8903), + [anon_sym_AMP] = ACTIONS(8901), + [anon_sym___extension__] = ACTIONS(8901), + [anon_sym_virtual] = ACTIONS(8901), + [anon_sym_extern] = ACTIONS(8901), + [anon_sym___attribute__] = ACTIONS(8901), + [anon_sym___attribute] = ACTIONS(8901), + [anon_sym_using] = ACTIONS(8901), + [anon_sym_COLON_COLON] = ACTIONS(8903), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8903), + [anon_sym___declspec] = ACTIONS(8901), + [anon_sym___based] = ACTIONS(8901), + [anon_sym___cdecl] = ACTIONS(8901), + [anon_sym___clrcall] = ACTIONS(8901), + [anon_sym___stdcall] = ACTIONS(8901), + [anon_sym___fastcall] = ACTIONS(8901), + [anon_sym___thiscall] = ACTIONS(8901), + [anon_sym___vectorcall] = ACTIONS(8901), + [anon_sym_LBRACE] = ACTIONS(8903), + [anon_sym_signed] = ACTIONS(8901), + [anon_sym_unsigned] = ACTIONS(8901), + [anon_sym_long] = ACTIONS(8901), + [anon_sym_short] = ACTIONS(8901), + [anon_sym_LBRACK] = ACTIONS(8901), + [anon_sym_static] = ACTIONS(8901), + [anon_sym_register] = ACTIONS(8901), + [anon_sym_inline] = ACTIONS(8901), + [anon_sym___inline] = ACTIONS(8901), + [anon_sym___inline__] = ACTIONS(8901), + [anon_sym___forceinline] = ACTIONS(8901), + [anon_sym_thread_local] = ACTIONS(8901), + [anon_sym___thread] = ACTIONS(8901), + [anon_sym_const] = ACTIONS(8901), + [anon_sym_constexpr] = ACTIONS(8901), + [anon_sym_volatile] = ACTIONS(8901), + [anon_sym_restrict] = ACTIONS(8901), + [anon_sym___restrict__] = ACTIONS(8901), + [anon_sym__Atomic] = ACTIONS(8901), + [anon_sym__Noreturn] = ACTIONS(8901), + [anon_sym_noreturn] = ACTIONS(8901), + [anon_sym__Nonnull] = ACTIONS(8901), + [anon_sym_mutable] = ACTIONS(8901), + [anon_sym_constinit] = ACTIONS(8901), + [anon_sym_consteval] = ACTIONS(8901), + [anon_sym_alignas] = ACTIONS(8901), + [anon_sym__Alignas] = ACTIONS(8901), + [sym_primitive_type] = ACTIONS(8901), + [anon_sym_enum] = ACTIONS(8901), + [anon_sym_class] = ACTIONS(8901), + [anon_sym_struct] = ACTIONS(8901), + [anon_sym_union] = ACTIONS(8901), + [anon_sym_or] = ACTIONS(8901), + [anon_sym_and] = ACTIONS(8901), + [anon_sym_typename] = ACTIONS(8901), + [anon_sym_DASH_GT] = ACTIONS(8903), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8901), + [anon_sym_decltype] = ACTIONS(8901), + [anon_sym_explicit] = ACTIONS(8901), + [anon_sym_template] = ACTIONS(8901), + [anon_sym_operator] = ACTIONS(8901), + [anon_sym_friend] = ACTIONS(8901), + [anon_sym_noexcept] = ACTIONS(8901), + [anon_sym_throw] = ACTIONS(8901), + [anon_sym_concept] = ACTIONS(8901), + [anon_sym_LBRACK_COLON] = ACTIONS(8903), }, - [STATE(3442)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7269), - [anon_sym_COMMA] = ACTIONS(7269), - [anon_sym_RPAREN] = ACTIONS(7269), - [anon_sym_LPAREN2] = ACTIONS(7269), - [anon_sym_DASH] = ACTIONS(7267), - [anon_sym_PLUS] = ACTIONS(7267), - [anon_sym_STAR] = ACTIONS(7267), - [anon_sym_SLASH] = ACTIONS(7267), - [anon_sym_PERCENT] = ACTIONS(7267), - [anon_sym_PIPE_PIPE] = ACTIONS(7269), - [anon_sym_AMP_AMP] = ACTIONS(7269), - [anon_sym_PIPE] = ACTIONS(7267), - [anon_sym_CARET] = ACTIONS(7267), - [anon_sym_AMP] = ACTIONS(7267), - [anon_sym_EQ_EQ] = ACTIONS(7269), - [anon_sym_BANG_EQ] = ACTIONS(7269), - [anon_sym_GT] = ACTIONS(7267), - [anon_sym_GT_EQ] = ACTIONS(7269), - [anon_sym_LT_EQ] = ACTIONS(7267), - [anon_sym_LT] = ACTIONS(7267), - [anon_sym_LT_LT] = ACTIONS(7267), - [anon_sym_GT_GT] = ACTIONS(7267), - [anon_sym___extension__] = ACTIONS(7269), - [anon_sym_LBRACE] = ACTIONS(7269), - [anon_sym_LBRACK] = ACTIONS(7269), - [anon_sym_EQ] = ACTIONS(7267), - [anon_sym_const] = ACTIONS(7267), - [anon_sym_constexpr] = ACTIONS(7269), - [anon_sym_volatile] = ACTIONS(7269), - [anon_sym_restrict] = ACTIONS(7269), - [anon_sym___restrict__] = ACTIONS(7269), - [anon_sym__Atomic] = ACTIONS(7269), - [anon_sym__Noreturn] = ACTIONS(7269), - [anon_sym_noreturn] = ACTIONS(7269), - [anon_sym__Nonnull] = ACTIONS(7269), - [anon_sym_mutable] = ACTIONS(7269), - [anon_sym_constinit] = ACTIONS(7269), - [anon_sym_consteval] = ACTIONS(7269), - [anon_sym_alignas] = ACTIONS(7269), - [anon_sym__Alignas] = ACTIONS(7269), - [anon_sym_QMARK] = ACTIONS(7269), - [anon_sym_STAR_EQ] = ACTIONS(7269), - [anon_sym_SLASH_EQ] = ACTIONS(7269), - [anon_sym_PERCENT_EQ] = ACTIONS(7269), - [anon_sym_PLUS_EQ] = ACTIONS(7269), - [anon_sym_DASH_EQ] = ACTIONS(7269), - [anon_sym_LT_LT_EQ] = ACTIONS(7269), - [anon_sym_GT_GT_EQ] = ACTIONS(7269), - [anon_sym_AMP_EQ] = ACTIONS(7269), - [anon_sym_CARET_EQ] = ACTIONS(7269), - [anon_sym_PIPE_EQ] = ACTIONS(7269), - [anon_sym_LT_EQ_GT] = ACTIONS(7269), - [anon_sym_or] = ACTIONS(7269), - [anon_sym_and] = ACTIONS(7269), - [anon_sym_bitor] = ACTIONS(7269), - [anon_sym_xor] = ACTIONS(7269), - [anon_sym_bitand] = ACTIONS(7269), - [anon_sym_not_eq] = ACTIONS(7269), - [anon_sym_DASH_DASH] = ACTIONS(7269), - [anon_sym_PLUS_PLUS] = ACTIONS(7269), - [anon_sym_DOT] = ACTIONS(7267), - [anon_sym_DOT_STAR] = ACTIONS(7269), - [anon_sym_DASH_GT] = ACTIONS(7267), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7269), - [anon_sym_override] = ACTIONS(7269), - [anon_sym_requires] = ACTIONS(7269), - [anon_sym_DASH_GT_STAR] = ACTIONS(7269), + [STATE(2961)] = { + [sym_attribute_specifier] = STATE(4179), + [sym_attribute_declaration] = STATE(4554), + [sym_gnu_asm_expression] = STATE(9153), + [sym_virtual_specifier] = STATE(4653), + [sym__function_attributes_end] = STATE(4367), + [sym__function_postfix] = STATE(5121), + [sym_trailing_return_type] = STATE(4477), + [sym_requires_clause] = STATE(5121), + [aux_sym_type_definition_repeat1] = STATE(4179), + [aux_sym_attributed_declarator_repeat1] = STATE(4554), + [aux_sym__function_postfix_repeat1] = STATE(4653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym___attribute__] = ACTIONS(6719), + [anon_sym___attribute] = ACTIONS(6721), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_RBRACK] = ACTIONS(7966), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7966), + [anon_sym_or_eq] = ACTIONS(7966), + [anon_sym_xor_eq] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(8440), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8443), + [anon_sym_override] = ACTIONS(8443), + [anon_sym_requires] = ACTIONS(8446), }, - [STATE(3443)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7273), - [anon_sym_COMMA] = ACTIONS(7273), - [anon_sym_RPAREN] = ACTIONS(7273), - [anon_sym_LPAREN2] = ACTIONS(7273), - [anon_sym_DASH] = ACTIONS(7271), - [anon_sym_PLUS] = ACTIONS(7271), - [anon_sym_STAR] = ACTIONS(7271), - [anon_sym_SLASH] = ACTIONS(7271), - [anon_sym_PERCENT] = ACTIONS(7271), - [anon_sym_PIPE_PIPE] = ACTIONS(7273), - [anon_sym_AMP_AMP] = ACTIONS(7273), - [anon_sym_PIPE] = ACTIONS(7271), - [anon_sym_CARET] = ACTIONS(7271), - [anon_sym_AMP] = ACTIONS(7271), - [anon_sym_EQ_EQ] = ACTIONS(7273), - [anon_sym_BANG_EQ] = ACTIONS(7273), - [anon_sym_GT] = ACTIONS(7271), - [anon_sym_GT_EQ] = ACTIONS(7273), - [anon_sym_LT_EQ] = ACTIONS(7271), - [anon_sym_LT] = ACTIONS(7271), - [anon_sym_LT_LT] = ACTIONS(7271), - [anon_sym_GT_GT] = ACTIONS(7271), - [anon_sym___extension__] = ACTIONS(7273), - [anon_sym_LBRACE] = ACTIONS(7273), - [anon_sym_LBRACK] = ACTIONS(7273), - [anon_sym_EQ] = ACTIONS(7271), - [anon_sym_const] = ACTIONS(7271), - [anon_sym_constexpr] = ACTIONS(7273), - [anon_sym_volatile] = ACTIONS(7273), - [anon_sym_restrict] = ACTIONS(7273), - [anon_sym___restrict__] = ACTIONS(7273), - [anon_sym__Atomic] = ACTIONS(7273), - [anon_sym__Noreturn] = ACTIONS(7273), - [anon_sym_noreturn] = ACTIONS(7273), - [anon_sym__Nonnull] = ACTIONS(7273), - [anon_sym_mutable] = ACTIONS(7273), - [anon_sym_constinit] = ACTIONS(7273), - [anon_sym_consteval] = ACTIONS(7273), - [anon_sym_alignas] = ACTIONS(7273), - [anon_sym__Alignas] = ACTIONS(7273), - [anon_sym_QMARK] = ACTIONS(7273), - [anon_sym_STAR_EQ] = ACTIONS(7273), - [anon_sym_SLASH_EQ] = ACTIONS(7273), - [anon_sym_PERCENT_EQ] = ACTIONS(7273), - [anon_sym_PLUS_EQ] = ACTIONS(7273), - [anon_sym_DASH_EQ] = ACTIONS(7273), - [anon_sym_LT_LT_EQ] = ACTIONS(7273), - [anon_sym_GT_GT_EQ] = ACTIONS(7273), - [anon_sym_AMP_EQ] = ACTIONS(7273), - [anon_sym_CARET_EQ] = ACTIONS(7273), - [anon_sym_PIPE_EQ] = ACTIONS(7273), - [anon_sym_LT_EQ_GT] = ACTIONS(7273), - [anon_sym_or] = ACTIONS(7273), - [anon_sym_and] = ACTIONS(7273), - [anon_sym_bitor] = ACTIONS(7273), - [anon_sym_xor] = ACTIONS(7273), - [anon_sym_bitand] = ACTIONS(7273), - [anon_sym_not_eq] = ACTIONS(7273), - [anon_sym_DASH_DASH] = ACTIONS(7273), - [anon_sym_PLUS_PLUS] = ACTIONS(7273), - [anon_sym_DOT] = ACTIONS(7271), - [anon_sym_DOT_STAR] = ACTIONS(7273), - [anon_sym_DASH_GT] = ACTIONS(7271), + [STATE(2962)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7645), + [anon_sym_COMMA] = ACTIONS(7645), + [anon_sym_RPAREN] = ACTIONS(7645), + [anon_sym_LPAREN2] = ACTIONS(7645), + [anon_sym_DASH] = ACTIONS(7643), + [anon_sym_PLUS] = ACTIONS(7643), + [anon_sym_STAR] = ACTIONS(7643), + [anon_sym_SLASH] = ACTIONS(7643), + [anon_sym_PERCENT] = ACTIONS(7643), + [anon_sym_PIPE_PIPE] = ACTIONS(7645), + [anon_sym_AMP_AMP] = ACTIONS(7645), + [anon_sym_PIPE] = ACTIONS(7643), + [anon_sym_CARET] = ACTIONS(7643), + [anon_sym_AMP] = ACTIONS(7643), + [anon_sym_EQ_EQ] = ACTIONS(7645), + [anon_sym_BANG_EQ] = ACTIONS(7645), + [anon_sym_GT] = ACTIONS(7643), + [anon_sym_GT_EQ] = ACTIONS(7645), + [anon_sym_LT_EQ] = ACTIONS(7643), + [anon_sym_LT] = ACTIONS(7643), + [anon_sym_LT_LT] = ACTIONS(7643), + [anon_sym_GT_GT] = ACTIONS(7643), + [anon_sym___extension__] = ACTIONS(7645), + [anon_sym_LBRACE] = ACTIONS(7645), + [anon_sym_LBRACK] = ACTIONS(7645), + [anon_sym_EQ] = ACTIONS(7643), + [anon_sym_const] = ACTIONS(7643), + [anon_sym_constexpr] = ACTIONS(7645), + [anon_sym_volatile] = ACTIONS(7645), + [anon_sym_restrict] = ACTIONS(7645), + [anon_sym___restrict__] = ACTIONS(7645), + [anon_sym__Atomic] = ACTIONS(7645), + [anon_sym__Noreturn] = ACTIONS(7645), + [anon_sym_noreturn] = ACTIONS(7645), + [anon_sym__Nonnull] = ACTIONS(7645), + [anon_sym_mutable] = ACTIONS(7645), + [anon_sym_constinit] = ACTIONS(7645), + [anon_sym_consteval] = ACTIONS(7645), + [anon_sym_alignas] = ACTIONS(7645), + [anon_sym__Alignas] = ACTIONS(7645), + [anon_sym_QMARK] = ACTIONS(7645), + [anon_sym_STAR_EQ] = ACTIONS(7645), + [anon_sym_SLASH_EQ] = ACTIONS(7645), + [anon_sym_PERCENT_EQ] = ACTIONS(7645), + [anon_sym_PLUS_EQ] = ACTIONS(7645), + [anon_sym_DASH_EQ] = ACTIONS(7645), + [anon_sym_LT_LT_EQ] = ACTIONS(7645), + [anon_sym_GT_GT_EQ] = ACTIONS(7645), + [anon_sym_AMP_EQ] = ACTIONS(7645), + [anon_sym_CARET_EQ] = ACTIONS(7645), + [anon_sym_PIPE_EQ] = ACTIONS(7645), + [anon_sym_and_eq] = ACTIONS(7645), + [anon_sym_or_eq] = ACTIONS(7645), + [anon_sym_xor_eq] = ACTIONS(7645), + [anon_sym_LT_EQ_GT] = ACTIONS(7645), + [anon_sym_or] = ACTIONS(7643), + [anon_sym_and] = ACTIONS(7643), + [anon_sym_bitor] = ACTIONS(7645), + [anon_sym_xor] = ACTIONS(7643), + [anon_sym_bitand] = ACTIONS(7645), + [anon_sym_not_eq] = ACTIONS(7645), + [anon_sym_DASH_DASH] = ACTIONS(7645), + [anon_sym_PLUS_PLUS] = ACTIONS(7645), + [anon_sym_DOT] = ACTIONS(7643), + [anon_sym_DOT_STAR] = ACTIONS(7645), + [anon_sym_DASH_GT] = ACTIONS(7643), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7273), - [anon_sym_override] = ACTIONS(7273), - [anon_sym_requires] = ACTIONS(7273), - [anon_sym_DASH_GT_STAR] = ACTIONS(7273), - }, - [STATE(3444)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7277), - [anon_sym_COMMA] = ACTIONS(7277), - [anon_sym_RPAREN] = ACTIONS(7277), - [anon_sym_LPAREN2] = ACTIONS(7277), - [anon_sym_DASH] = ACTIONS(7275), - [anon_sym_PLUS] = ACTIONS(7275), - [anon_sym_STAR] = ACTIONS(7275), - [anon_sym_SLASH] = ACTIONS(7275), - [anon_sym_PERCENT] = ACTIONS(7275), - [anon_sym_PIPE_PIPE] = ACTIONS(7277), - [anon_sym_AMP_AMP] = ACTIONS(7277), - [anon_sym_PIPE] = ACTIONS(7275), - [anon_sym_CARET] = ACTIONS(7275), - [anon_sym_AMP] = ACTIONS(7275), - [anon_sym_EQ_EQ] = ACTIONS(7277), - [anon_sym_BANG_EQ] = ACTIONS(7277), - [anon_sym_GT] = ACTIONS(7275), - [anon_sym_GT_EQ] = ACTIONS(7277), - [anon_sym_LT_EQ] = ACTIONS(7275), - [anon_sym_LT] = ACTIONS(7275), - [anon_sym_LT_LT] = ACTIONS(7275), - [anon_sym_GT_GT] = ACTIONS(7275), - [anon_sym___extension__] = ACTIONS(7277), - [anon_sym_LBRACE] = ACTIONS(7277), - [anon_sym_LBRACK] = ACTIONS(7277), - [anon_sym_EQ] = ACTIONS(7275), - [anon_sym_const] = ACTIONS(7275), - [anon_sym_constexpr] = ACTIONS(7277), - [anon_sym_volatile] = ACTIONS(7277), - [anon_sym_restrict] = ACTIONS(7277), - [anon_sym___restrict__] = ACTIONS(7277), - [anon_sym__Atomic] = ACTIONS(7277), - [anon_sym__Noreturn] = ACTIONS(7277), - [anon_sym_noreturn] = ACTIONS(7277), - [anon_sym__Nonnull] = ACTIONS(7277), - [anon_sym_mutable] = ACTIONS(7277), - [anon_sym_constinit] = ACTIONS(7277), - [anon_sym_consteval] = ACTIONS(7277), - [anon_sym_alignas] = ACTIONS(7277), - [anon_sym__Alignas] = ACTIONS(7277), - [anon_sym_QMARK] = ACTIONS(7277), - [anon_sym_STAR_EQ] = ACTIONS(7277), - [anon_sym_SLASH_EQ] = ACTIONS(7277), - [anon_sym_PERCENT_EQ] = ACTIONS(7277), - [anon_sym_PLUS_EQ] = ACTIONS(7277), - [anon_sym_DASH_EQ] = ACTIONS(7277), - [anon_sym_LT_LT_EQ] = ACTIONS(7277), - [anon_sym_GT_GT_EQ] = ACTIONS(7277), - [anon_sym_AMP_EQ] = ACTIONS(7277), - [anon_sym_CARET_EQ] = ACTIONS(7277), - [anon_sym_PIPE_EQ] = ACTIONS(7277), - [anon_sym_LT_EQ_GT] = ACTIONS(7277), - [anon_sym_or] = ACTIONS(7277), - [anon_sym_and] = ACTIONS(7277), - [anon_sym_bitor] = ACTIONS(7277), - [anon_sym_xor] = ACTIONS(7277), - [anon_sym_bitand] = ACTIONS(7277), - [anon_sym_not_eq] = ACTIONS(7277), - [anon_sym_DASH_DASH] = ACTIONS(7277), - [anon_sym_PLUS_PLUS] = ACTIONS(7277), - [anon_sym_DOT] = ACTIONS(7275), - [anon_sym_DOT_STAR] = ACTIONS(7277), - [anon_sym_DASH_GT] = ACTIONS(7275), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7277), - [anon_sym_override] = ACTIONS(7277), - [anon_sym_requires] = ACTIONS(7277), - [anon_sym_DASH_GT_STAR] = ACTIONS(7277), + [anon_sym_final] = ACTIONS(7645), + [anon_sym_override] = ACTIONS(7645), + [anon_sym_requires] = ACTIONS(7645), + [anon_sym_DASH_GT_STAR] = ACTIONS(7645), }, - [STATE(3445)] = { - [sym_identifier] = ACTIONS(6716), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), - [anon_sym_COMMA] = ACTIONS(6718), - [anon_sym_RPAREN] = ACTIONS(6718), - [anon_sym_LPAREN2] = ACTIONS(6718), - [anon_sym_TILDE] = ACTIONS(6718), - [anon_sym_STAR] = ACTIONS(6718), - [anon_sym_AMP_AMP] = ACTIONS(6718), - [anon_sym_AMP] = ACTIONS(6716), - [anon_sym_SEMI] = ACTIONS(6718), - [anon_sym___extension__] = ACTIONS(6716), - [anon_sym_virtual] = ACTIONS(6716), - [anon_sym_extern] = ACTIONS(6716), - [anon_sym___attribute__] = ACTIONS(6716), - [anon_sym___attribute] = ACTIONS(6716), - [anon_sym_COLON_COLON] = ACTIONS(6718), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6718), - [anon_sym___declspec] = ACTIONS(6716), - [anon_sym___based] = ACTIONS(6716), - [anon_sym___cdecl] = ACTIONS(6716), - [anon_sym___clrcall] = ACTIONS(6716), - [anon_sym___stdcall] = ACTIONS(6716), - [anon_sym___fastcall] = ACTIONS(6716), - [anon_sym___thiscall] = ACTIONS(6716), - [anon_sym___vectorcall] = ACTIONS(6716), - [anon_sym_LBRACE] = ACTIONS(6718), - [anon_sym_signed] = ACTIONS(6716), - [anon_sym_unsigned] = ACTIONS(6716), - [anon_sym_long] = ACTIONS(6716), - [anon_sym_short] = ACTIONS(6716), - [anon_sym_LBRACK] = ACTIONS(6716), - [anon_sym_static] = ACTIONS(6716), - [anon_sym_EQ] = ACTIONS(6718), - [anon_sym_register] = ACTIONS(6716), - [anon_sym_inline] = ACTIONS(6716), - [anon_sym___inline] = ACTIONS(6716), - [anon_sym___inline__] = ACTIONS(6716), - [anon_sym___forceinline] = ACTIONS(6716), - [anon_sym_thread_local] = ACTIONS(6716), - [anon_sym___thread] = ACTIONS(6716), - [anon_sym_const] = ACTIONS(6716), - [anon_sym_constexpr] = ACTIONS(6716), - [anon_sym_volatile] = ACTIONS(6716), - [anon_sym_restrict] = ACTIONS(6716), - [anon_sym___restrict__] = ACTIONS(6716), - [anon_sym__Atomic] = ACTIONS(6716), - [anon_sym__Noreturn] = ACTIONS(6716), - [anon_sym_noreturn] = ACTIONS(6716), - [anon_sym__Nonnull] = ACTIONS(6716), - [anon_sym_mutable] = ACTIONS(6716), - [anon_sym_constinit] = ACTIONS(6716), - [anon_sym_consteval] = ACTIONS(6716), - [anon_sym_alignas] = ACTIONS(6716), - [anon_sym__Alignas] = ACTIONS(6716), - [sym_primitive_type] = ACTIONS(6716), - [anon_sym_enum] = ACTIONS(6716), - [anon_sym_class] = ACTIONS(6716), - [anon_sym_struct] = ACTIONS(6716), - [anon_sym_union] = ACTIONS(6716), - [anon_sym_typename] = ACTIONS(6716), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6716), - [anon_sym_decltype] = ACTIONS(6716), - [anon_sym_explicit] = ACTIONS(6716), - [anon_sym_template] = ACTIONS(6716), - [anon_sym_GT2] = ACTIONS(6718), - [anon_sym_operator] = ACTIONS(6716), - [anon_sym_LBRACK_COLON] = ACTIONS(6718), + [STATE(2963)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7669), + [anon_sym_COMMA] = ACTIONS(7669), + [anon_sym_RPAREN] = ACTIONS(7669), + [anon_sym_LPAREN2] = ACTIONS(7669), + [anon_sym_DASH] = ACTIONS(7667), + [anon_sym_PLUS] = ACTIONS(7667), + [anon_sym_STAR] = ACTIONS(7667), + [anon_sym_SLASH] = ACTIONS(7667), + [anon_sym_PERCENT] = ACTIONS(7667), + [anon_sym_PIPE_PIPE] = ACTIONS(7669), + [anon_sym_AMP_AMP] = ACTIONS(7669), + [anon_sym_PIPE] = ACTIONS(7667), + [anon_sym_CARET] = ACTIONS(7667), + [anon_sym_AMP] = ACTIONS(7667), + [anon_sym_EQ_EQ] = ACTIONS(7669), + [anon_sym_BANG_EQ] = ACTIONS(7669), + [anon_sym_GT] = ACTIONS(7667), + [anon_sym_GT_EQ] = ACTIONS(7669), + [anon_sym_LT_EQ] = ACTIONS(7667), + [anon_sym_LT] = ACTIONS(7667), + [anon_sym_LT_LT] = ACTIONS(7667), + [anon_sym_GT_GT] = ACTIONS(7667), + [anon_sym___extension__] = ACTIONS(7669), + [anon_sym_LBRACE] = ACTIONS(7669), + [anon_sym_LBRACK] = ACTIONS(7669), + [anon_sym_EQ] = ACTIONS(7667), + [anon_sym_const] = ACTIONS(7667), + [anon_sym_constexpr] = ACTIONS(7669), + [anon_sym_volatile] = ACTIONS(7669), + [anon_sym_restrict] = ACTIONS(7669), + [anon_sym___restrict__] = ACTIONS(7669), + [anon_sym__Atomic] = ACTIONS(7669), + [anon_sym__Noreturn] = ACTIONS(7669), + [anon_sym_noreturn] = ACTIONS(7669), + [anon_sym__Nonnull] = ACTIONS(7669), + [anon_sym_mutable] = ACTIONS(7669), + [anon_sym_constinit] = ACTIONS(7669), + [anon_sym_consteval] = ACTIONS(7669), + [anon_sym_alignas] = ACTIONS(7669), + [anon_sym__Alignas] = ACTIONS(7669), + [anon_sym_QMARK] = ACTIONS(7669), + [anon_sym_STAR_EQ] = ACTIONS(7669), + [anon_sym_SLASH_EQ] = ACTIONS(7669), + [anon_sym_PERCENT_EQ] = ACTIONS(7669), + [anon_sym_PLUS_EQ] = ACTIONS(7669), + [anon_sym_DASH_EQ] = ACTIONS(7669), + [anon_sym_LT_LT_EQ] = ACTIONS(7669), + [anon_sym_GT_GT_EQ] = ACTIONS(7669), + [anon_sym_AMP_EQ] = ACTIONS(7669), + [anon_sym_CARET_EQ] = ACTIONS(7669), + [anon_sym_PIPE_EQ] = ACTIONS(7669), + [anon_sym_and_eq] = ACTIONS(7669), + [anon_sym_or_eq] = ACTIONS(7669), + [anon_sym_xor_eq] = ACTIONS(7669), + [anon_sym_LT_EQ_GT] = ACTIONS(7669), + [anon_sym_or] = ACTIONS(7667), + [anon_sym_and] = ACTIONS(7667), + [anon_sym_bitor] = ACTIONS(7669), + [anon_sym_xor] = ACTIONS(7667), + [anon_sym_bitand] = ACTIONS(7669), + [anon_sym_not_eq] = ACTIONS(7669), + [anon_sym_DASH_DASH] = ACTIONS(7669), + [anon_sym_PLUS_PLUS] = ACTIONS(7669), + [anon_sym_DOT] = ACTIONS(7667), + [anon_sym_DOT_STAR] = ACTIONS(7669), + [anon_sym_DASH_GT] = ACTIONS(7667), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7669), + [anon_sym_override] = ACTIONS(7669), + [anon_sym_requires] = ACTIONS(7669), + [anon_sym_DASH_GT_STAR] = ACTIONS(7669), }, - [STATE(3446)] = { - [sym_string_literal] = STATE(5056), - [sym_template_argument_list] = STATE(5595), - [sym_raw_string_literal] = STATE(5056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(6713), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym___attribute__] = ACTIONS(5253), - [anon_sym___attribute] = ACTIONS(5260), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(6535), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(6537), - [anon_sym_SLASH_EQ] = ACTIONS(6537), - [anon_sym_PERCENT_EQ] = ACTIONS(6537), - [anon_sym_PLUS_EQ] = ACTIONS(6537), - [anon_sym_DASH_EQ] = ACTIONS(6537), - [anon_sym_LT_LT_EQ] = ACTIONS(6537), - [anon_sym_GT_GT_EQ] = ACTIONS(6537), - [anon_sym_AMP_EQ] = ACTIONS(6537), - [anon_sym_CARET_EQ] = ACTIONS(6537), - [anon_sym_PIPE_EQ] = ACTIONS(6537), - [anon_sym_and_eq] = ACTIONS(6537), - [anon_sym_or_eq] = ACTIONS(6537), - [anon_sym_xor_eq] = ACTIONS(6537), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(6539), - [anon_sym_u_DQUOTE] = ACTIONS(6539), - [anon_sym_U_DQUOTE] = ACTIONS(6539), - [anon_sym_u8_DQUOTE] = ACTIONS(6539), - [anon_sym_DQUOTE] = ACTIONS(6539), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6541), - [anon_sym_LR_DQUOTE] = ACTIONS(6541), - [anon_sym_uR_DQUOTE] = ACTIONS(6541), - [anon_sym_UR_DQUOTE] = ACTIONS(6541), - [anon_sym_u8R_DQUOTE] = ACTIONS(6541), + [STATE(2964)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7673), + [anon_sym_COMMA] = ACTIONS(7673), + [anon_sym_RPAREN] = ACTIONS(7673), + [anon_sym_LPAREN2] = ACTIONS(7673), + [anon_sym_DASH] = ACTIONS(7671), + [anon_sym_PLUS] = ACTIONS(7671), + [anon_sym_STAR] = ACTIONS(7671), + [anon_sym_SLASH] = ACTIONS(7671), + [anon_sym_PERCENT] = ACTIONS(7671), + [anon_sym_PIPE_PIPE] = ACTIONS(7673), + [anon_sym_AMP_AMP] = ACTIONS(7673), + [anon_sym_PIPE] = ACTIONS(7671), + [anon_sym_CARET] = ACTIONS(7671), + [anon_sym_AMP] = ACTIONS(7671), + [anon_sym_EQ_EQ] = ACTIONS(7673), + [anon_sym_BANG_EQ] = ACTIONS(7673), + [anon_sym_GT] = ACTIONS(7671), + [anon_sym_GT_EQ] = ACTIONS(7673), + [anon_sym_LT_EQ] = ACTIONS(7671), + [anon_sym_LT] = ACTIONS(7671), + [anon_sym_LT_LT] = ACTIONS(7671), + [anon_sym_GT_GT] = ACTIONS(7671), + [anon_sym___extension__] = ACTIONS(7673), + [anon_sym_LBRACE] = ACTIONS(7673), + [anon_sym_LBRACK] = ACTIONS(7673), + [anon_sym_EQ] = ACTIONS(7671), + [anon_sym_const] = ACTIONS(7671), + [anon_sym_constexpr] = ACTIONS(7673), + [anon_sym_volatile] = ACTIONS(7673), + [anon_sym_restrict] = ACTIONS(7673), + [anon_sym___restrict__] = ACTIONS(7673), + [anon_sym__Atomic] = ACTIONS(7673), + [anon_sym__Noreturn] = ACTIONS(7673), + [anon_sym_noreturn] = ACTIONS(7673), + [anon_sym__Nonnull] = ACTIONS(7673), + [anon_sym_mutable] = ACTIONS(7673), + [anon_sym_constinit] = ACTIONS(7673), + [anon_sym_consteval] = ACTIONS(7673), + [anon_sym_alignas] = ACTIONS(7673), + [anon_sym__Alignas] = ACTIONS(7673), + [anon_sym_QMARK] = ACTIONS(7673), + [anon_sym_STAR_EQ] = ACTIONS(7673), + [anon_sym_SLASH_EQ] = ACTIONS(7673), + [anon_sym_PERCENT_EQ] = ACTIONS(7673), + [anon_sym_PLUS_EQ] = ACTIONS(7673), + [anon_sym_DASH_EQ] = ACTIONS(7673), + [anon_sym_LT_LT_EQ] = ACTIONS(7673), + [anon_sym_GT_GT_EQ] = ACTIONS(7673), + [anon_sym_AMP_EQ] = ACTIONS(7673), + [anon_sym_CARET_EQ] = ACTIONS(7673), + [anon_sym_PIPE_EQ] = ACTIONS(7673), + [anon_sym_and_eq] = ACTIONS(7673), + [anon_sym_or_eq] = ACTIONS(7673), + [anon_sym_xor_eq] = ACTIONS(7673), + [anon_sym_LT_EQ_GT] = ACTIONS(7673), + [anon_sym_or] = ACTIONS(7671), + [anon_sym_and] = ACTIONS(7671), + [anon_sym_bitor] = ACTIONS(7673), + [anon_sym_xor] = ACTIONS(7671), + [anon_sym_bitand] = ACTIONS(7673), + [anon_sym_not_eq] = ACTIONS(7673), + [anon_sym_DASH_DASH] = ACTIONS(7673), + [anon_sym_PLUS_PLUS] = ACTIONS(7673), + [anon_sym_DOT] = ACTIONS(7671), + [anon_sym_DOT_STAR] = ACTIONS(7673), + [anon_sym_DASH_GT] = ACTIONS(7671), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7673), + [anon_sym_override] = ACTIONS(7673), + [anon_sym_requires] = ACTIONS(7673), + [anon_sym_DASH_GT_STAR] = ACTIONS(7673), }, - [STATE(3447)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), - [anon_sym_COMMA] = ACTIONS(7289), - [anon_sym_RPAREN] = ACTIONS(7289), - [anon_sym_LPAREN2] = ACTIONS(7289), - [anon_sym_DASH] = ACTIONS(7287), - [anon_sym_PLUS] = ACTIONS(7287), - [anon_sym_STAR] = ACTIONS(7287), - [anon_sym_SLASH] = ACTIONS(7287), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_PIPE_PIPE] = ACTIONS(7289), - [anon_sym_AMP_AMP] = ACTIONS(7289), - [anon_sym_PIPE] = ACTIONS(7287), - [anon_sym_CARET] = ACTIONS(7287), - [anon_sym_AMP] = ACTIONS(7287), - [anon_sym_EQ_EQ] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7289), - [anon_sym_GT] = ACTIONS(7287), - [anon_sym_GT_EQ] = ACTIONS(7289), - [anon_sym_LT_EQ] = ACTIONS(7287), - [anon_sym_LT] = ACTIONS(7287), - [anon_sym_LT_LT] = ACTIONS(7287), - [anon_sym_GT_GT] = ACTIONS(7287), - [anon_sym___extension__] = ACTIONS(7289), - [anon_sym_LBRACE] = ACTIONS(7289), - [anon_sym_LBRACK] = ACTIONS(7289), - [anon_sym_EQ] = ACTIONS(7287), - [anon_sym_const] = ACTIONS(7287), - [anon_sym_constexpr] = ACTIONS(7289), - [anon_sym_volatile] = ACTIONS(7289), - [anon_sym_restrict] = ACTIONS(7289), - [anon_sym___restrict__] = ACTIONS(7289), - [anon_sym__Atomic] = ACTIONS(7289), - [anon_sym__Noreturn] = ACTIONS(7289), - [anon_sym_noreturn] = ACTIONS(7289), - [anon_sym__Nonnull] = ACTIONS(7289), - [anon_sym_mutable] = ACTIONS(7289), - [anon_sym_constinit] = ACTIONS(7289), - [anon_sym_consteval] = ACTIONS(7289), - [anon_sym_alignas] = ACTIONS(7289), - [anon_sym__Alignas] = ACTIONS(7289), - [anon_sym_QMARK] = ACTIONS(7289), - [anon_sym_STAR_EQ] = ACTIONS(7289), - [anon_sym_SLASH_EQ] = ACTIONS(7289), - [anon_sym_PERCENT_EQ] = ACTIONS(7289), - [anon_sym_PLUS_EQ] = ACTIONS(7289), - [anon_sym_DASH_EQ] = ACTIONS(7289), - [anon_sym_LT_LT_EQ] = ACTIONS(7289), - [anon_sym_GT_GT_EQ] = ACTIONS(7289), - [anon_sym_AMP_EQ] = ACTIONS(7289), - [anon_sym_CARET_EQ] = ACTIONS(7289), - [anon_sym_PIPE_EQ] = ACTIONS(7289), - [anon_sym_LT_EQ_GT] = ACTIONS(7289), - [anon_sym_or] = ACTIONS(7289), - [anon_sym_and] = ACTIONS(7289), - [anon_sym_bitor] = ACTIONS(7289), - [anon_sym_xor] = ACTIONS(7289), - [anon_sym_bitand] = ACTIONS(7289), - [anon_sym_not_eq] = ACTIONS(7289), - [anon_sym_DASH_DASH] = ACTIONS(7289), - [anon_sym_PLUS_PLUS] = ACTIONS(7289), - [anon_sym_DOT] = ACTIONS(7287), - [anon_sym_DOT_STAR] = ACTIONS(7289), - [anon_sym_DASH_GT] = ACTIONS(7287), + [STATE(2965)] = { + [sym_attribute_specifier] = STATE(3570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7425), + [anon_sym_COMMA] = ACTIONS(7425), + [anon_sym_RPAREN] = ACTIONS(7425), + [anon_sym_LPAREN2] = ACTIONS(7425), + [anon_sym_DASH] = ACTIONS(7423), + [anon_sym_PLUS] = ACTIONS(7423), + [anon_sym_STAR] = ACTIONS(7423), + [anon_sym_SLASH] = ACTIONS(7423), + [anon_sym_PERCENT] = ACTIONS(7423), + [anon_sym_PIPE_PIPE] = ACTIONS(7425), + [anon_sym_AMP_AMP] = ACTIONS(7425), + [anon_sym_PIPE] = ACTIONS(7423), + [anon_sym_CARET] = ACTIONS(7423), + [anon_sym_AMP] = ACTIONS(7423), + [anon_sym_EQ_EQ] = ACTIONS(7425), + [anon_sym_BANG_EQ] = ACTIONS(7425), + [anon_sym_GT] = ACTIONS(7423), + [anon_sym_GT_EQ] = ACTIONS(7425), + [anon_sym_LT_EQ] = ACTIONS(7423), + [anon_sym_LT] = ACTIONS(7423), + [anon_sym_LT_LT] = ACTIONS(7423), + [anon_sym_GT_GT] = ACTIONS(7423), + [anon_sym___extension__] = ACTIONS(7425), + [anon_sym___attribute__] = ACTIONS(8499), + [anon_sym___attribute] = ACTIONS(8501), + [anon_sym_LBRACE] = ACTIONS(7425), + [anon_sym_LBRACK] = ACTIONS(7425), + [anon_sym_EQ] = ACTIONS(7423), + [anon_sym_const] = ACTIONS(7423), + [anon_sym_constexpr] = ACTIONS(7425), + [anon_sym_volatile] = ACTIONS(7425), + [anon_sym_restrict] = ACTIONS(7425), + [anon_sym___restrict__] = ACTIONS(7425), + [anon_sym__Atomic] = ACTIONS(7425), + [anon_sym__Noreturn] = ACTIONS(7425), + [anon_sym_noreturn] = ACTIONS(7425), + [anon_sym__Nonnull] = ACTIONS(7425), + [anon_sym_mutable] = ACTIONS(7425), + [anon_sym_constinit] = ACTIONS(7425), + [anon_sym_consteval] = ACTIONS(7425), + [anon_sym_alignas] = ACTIONS(7425), + [anon_sym__Alignas] = ACTIONS(7425), + [anon_sym_QMARK] = ACTIONS(7425), + [anon_sym_STAR_EQ] = ACTIONS(7425), + [anon_sym_SLASH_EQ] = ACTIONS(7425), + [anon_sym_PERCENT_EQ] = ACTIONS(7425), + [anon_sym_PLUS_EQ] = ACTIONS(7425), + [anon_sym_DASH_EQ] = ACTIONS(7425), + [anon_sym_LT_LT_EQ] = ACTIONS(7425), + [anon_sym_GT_GT_EQ] = ACTIONS(7425), + [anon_sym_AMP_EQ] = ACTIONS(7425), + [anon_sym_CARET_EQ] = ACTIONS(7425), + [anon_sym_PIPE_EQ] = ACTIONS(7425), + [anon_sym_LT_EQ_GT] = ACTIONS(7425), + [anon_sym_or] = ACTIONS(7425), + [anon_sym_and] = ACTIONS(7425), + [anon_sym_bitor] = ACTIONS(7425), + [anon_sym_xor] = ACTIONS(7425), + [anon_sym_bitand] = ACTIONS(7425), + [anon_sym_not_eq] = ACTIONS(7425), + [anon_sym_DASH_DASH] = ACTIONS(7425), + [anon_sym_PLUS_PLUS] = ACTIONS(7425), + [anon_sym_DOT] = ACTIONS(7423), + [anon_sym_DOT_STAR] = ACTIONS(7425), + [anon_sym_DASH_GT] = ACTIONS(7423), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7289), - [anon_sym_override] = ACTIONS(7289), - [anon_sym_requires] = ACTIONS(7289), - [anon_sym_DASH_GT_STAR] = ACTIONS(7289), + [anon_sym_final] = ACTIONS(7425), + [anon_sym_override] = ACTIONS(7425), + [anon_sym_requires] = ACTIONS(7425), + [anon_sym_DASH_GT_STAR] = ACTIONS(7425), }, - [STATE(3448)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_RPAREN] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7291), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7291), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7291), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7291), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym___extension__] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_EQ] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7293), - [anon_sym_volatile] = ACTIONS(7293), - [anon_sym_restrict] = ACTIONS(7293), - [anon_sym___restrict__] = ACTIONS(7293), - [anon_sym__Atomic] = ACTIONS(7293), - [anon_sym__Noreturn] = ACTIONS(7293), - [anon_sym_noreturn] = ACTIONS(7293), - [anon_sym__Nonnull] = ACTIONS(7293), - [anon_sym_mutable] = ACTIONS(7293), - [anon_sym_constinit] = ACTIONS(7293), - [anon_sym_consteval] = ACTIONS(7293), - [anon_sym_alignas] = ACTIONS(7293), - [anon_sym__Alignas] = ACTIONS(7293), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_STAR_EQ] = ACTIONS(7293), - [anon_sym_SLASH_EQ] = ACTIONS(7293), - [anon_sym_PERCENT_EQ] = ACTIONS(7293), - [anon_sym_PLUS_EQ] = ACTIONS(7293), - [anon_sym_DASH_EQ] = ACTIONS(7293), - [anon_sym_LT_LT_EQ] = ACTIONS(7293), - [anon_sym_GT_GT_EQ] = ACTIONS(7293), - [anon_sym_AMP_EQ] = ACTIONS(7293), - [anon_sym_CARET_EQ] = ACTIONS(7293), - [anon_sym_PIPE_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7293), - [anon_sym_and] = ACTIONS(7293), - [anon_sym_bitor] = ACTIONS(7293), - [anon_sym_xor] = ACTIONS(7293), - [anon_sym_bitand] = ACTIONS(7293), - [anon_sym_not_eq] = ACTIONS(7293), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7291), + [STATE(2966)] = { + [sym__abstract_declarator] = STATE(6166), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3860), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2079), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3860), + [sym_identifier] = ACTIONS(7349), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), + [anon_sym_COMMA] = ACTIONS(7351), + [aux_sym_preproc_if_token2] = ACTIONS(7351), + [aux_sym_preproc_else_token1] = ACTIONS(7351), + [aux_sym_preproc_elif_token1] = ACTIONS(7349), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7351), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7351), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_PLUS] = ACTIONS(7349), + [anon_sym_STAR] = ACTIONS(8086), + [anon_sym_SLASH] = ACTIONS(7349), + [anon_sym_PERCENT] = ACTIONS(7351), + [anon_sym_PIPE_PIPE] = ACTIONS(7351), + [anon_sym_AMP_AMP] = ACTIONS(8088), + [anon_sym_PIPE] = ACTIONS(7349), + [anon_sym_CARET] = ACTIONS(7351), + [anon_sym_AMP] = ACTIONS(8090), + [anon_sym_EQ_EQ] = ACTIONS(7351), + [anon_sym_BANG_EQ] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7349), + [anon_sym_GT_EQ] = ACTIONS(7351), + [anon_sym_LT_EQ] = ACTIONS(7349), + [anon_sym_LT] = ACTIONS(7349), + [anon_sym_LT_LT] = ACTIONS(7351), + [anon_sym_GT_GT] = ACTIONS(7351), + [anon_sym___extension__] = ACTIONS(8092), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8092), + [anon_sym_volatile] = ACTIONS(8092), + [anon_sym_restrict] = ACTIONS(8092), + [anon_sym___restrict__] = ACTIONS(8092), + [anon_sym__Atomic] = ACTIONS(8092), + [anon_sym__Noreturn] = ACTIONS(8092), + [anon_sym_noreturn] = ACTIONS(8092), + [anon_sym__Nonnull] = ACTIONS(8092), + [anon_sym_mutable] = ACTIONS(8092), + [anon_sym_constinit] = ACTIONS(8092), + [anon_sym_consteval] = ACTIONS(8092), + [anon_sym_alignas] = ACTIONS(8100), + [anon_sym__Alignas] = ACTIONS(8100), + [anon_sym_QMARK] = ACTIONS(7351), + [anon_sym_LT_EQ_GT] = ACTIONS(7351), + [anon_sym_or] = ACTIONS(7349), + [anon_sym_and] = ACTIONS(7349), + [anon_sym_bitor] = ACTIONS(7349), + [anon_sym_xor] = ACTIONS(7349), + [anon_sym_bitand] = ACTIONS(7349), + [anon_sym_not_eq] = ACTIONS(7349), + [anon_sym_DASH_DASH] = ACTIONS(7351), + [anon_sym_PLUS_PLUS] = ACTIONS(7351), + [anon_sym_DOT] = ACTIONS(7349), + [anon_sym_DOT_STAR] = ACTIONS(7351), + [anon_sym_DASH_GT] = ACTIONS(7351), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7293), - [anon_sym_override] = ACTIONS(7293), - [anon_sym_requires] = ACTIONS(7293), - [anon_sym_DASH_GT_STAR] = ACTIONS(7293), - }, - [STATE(3449)] = { - [sym_identifier] = ACTIONS(6258), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), - [anon_sym_COMMA] = ACTIONS(6260), - [aux_sym_preproc_if_token2] = ACTIONS(6260), - [aux_sym_preproc_else_token1] = ACTIONS(6260), - [aux_sym_preproc_elif_token1] = ACTIONS(6258), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6260), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6260), - [anon_sym_LPAREN2] = ACTIONS(6260), - [anon_sym_DASH] = ACTIONS(6258), - [anon_sym_PLUS] = ACTIONS(6258), - [anon_sym_STAR] = ACTIONS(6260), - [anon_sym_SLASH] = ACTIONS(6258), - [anon_sym_PERCENT] = ACTIONS(6260), - [anon_sym_PIPE_PIPE] = ACTIONS(6260), - [anon_sym_AMP_AMP] = ACTIONS(6260), - [anon_sym_PIPE] = ACTIONS(6258), - [anon_sym_CARET] = ACTIONS(6260), - [anon_sym_AMP] = ACTIONS(6258), - [anon_sym_EQ_EQ] = ACTIONS(6260), - [anon_sym_BANG_EQ] = ACTIONS(6260), - [anon_sym_GT] = ACTIONS(6258), - [anon_sym_GT_EQ] = ACTIONS(6260), - [anon_sym_LT_EQ] = ACTIONS(6258), - [anon_sym_LT] = ACTIONS(6258), - [anon_sym_LT_LT] = ACTIONS(6260), - [anon_sym_GT_GT] = ACTIONS(6260), - [anon_sym___extension__] = ACTIONS(6258), - [anon_sym___attribute__] = ACTIONS(6258), - [anon_sym___attribute] = ACTIONS(6258), - [anon_sym_COLON] = ACTIONS(6258), - [anon_sym_COLON_COLON] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(6260), - [anon_sym_LBRACK] = ACTIONS(6260), - [anon_sym_RBRACK] = ACTIONS(6260), - [anon_sym_const] = ACTIONS(6258), - [anon_sym_constexpr] = ACTIONS(6258), - [anon_sym_volatile] = ACTIONS(6258), - [anon_sym_restrict] = ACTIONS(6258), - [anon_sym___restrict__] = ACTIONS(6258), - [anon_sym__Atomic] = ACTIONS(6258), - [anon_sym__Noreturn] = ACTIONS(6258), - [anon_sym_noreturn] = ACTIONS(6258), - [anon_sym__Nonnull] = ACTIONS(6258), - [anon_sym_mutable] = ACTIONS(6258), - [anon_sym_constinit] = ACTIONS(6258), - [anon_sym_consteval] = ACTIONS(6258), - [anon_sym_alignas] = ACTIONS(6258), - [anon_sym__Alignas] = ACTIONS(6258), - [anon_sym_QMARK] = ACTIONS(6260), - [anon_sym_LT_EQ_GT] = ACTIONS(6260), - [anon_sym_or] = ACTIONS(6258), - [anon_sym_and] = ACTIONS(6258), - [anon_sym_bitor] = ACTIONS(6258), - [anon_sym_xor] = ACTIONS(6258), - [anon_sym_bitand] = ACTIONS(6258), - [anon_sym_not_eq] = ACTIONS(6258), - [anon_sym_DASH_DASH] = ACTIONS(6260), - [anon_sym_PLUS_PLUS] = ACTIONS(6260), - [anon_sym_DOT] = ACTIONS(6258), - [anon_sym_DOT_STAR] = ACTIONS(6260), - [anon_sym_DASH_GT] = ACTIONS(6260), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6258), - [anon_sym_decltype] = ACTIONS(6258), - [anon_sym_final] = ACTIONS(6258), - [anon_sym_override] = ACTIONS(6258), - [anon_sym_requires] = ACTIONS(6258), + [anon_sym_final] = ACTIONS(7349), + [anon_sym_override] = ACTIONS(7349), + [anon_sym_requires] = ACTIONS(7349), }, - [STATE(3450)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7301), - [anon_sym_COMMA] = ACTIONS(7301), - [anon_sym_RPAREN] = ACTIONS(7301), - [anon_sym_LPAREN2] = ACTIONS(7301), - [anon_sym_DASH] = ACTIONS(7299), - [anon_sym_PLUS] = ACTIONS(7299), - [anon_sym_STAR] = ACTIONS(7299), - [anon_sym_SLASH] = ACTIONS(7299), - [anon_sym_PERCENT] = ACTIONS(7299), - [anon_sym_PIPE_PIPE] = ACTIONS(7301), - [anon_sym_AMP_AMP] = ACTIONS(7301), - [anon_sym_PIPE] = ACTIONS(7299), - [anon_sym_CARET] = ACTIONS(7299), - [anon_sym_AMP] = ACTIONS(7299), - [anon_sym_EQ_EQ] = ACTIONS(7301), - [anon_sym_BANG_EQ] = ACTIONS(7301), - [anon_sym_GT] = ACTIONS(7299), - [anon_sym_GT_EQ] = ACTIONS(7301), - [anon_sym_LT_EQ] = ACTIONS(7299), - [anon_sym_LT] = ACTIONS(7299), - [anon_sym_LT_LT] = ACTIONS(7299), - [anon_sym_GT_GT] = ACTIONS(7299), - [anon_sym___extension__] = ACTIONS(7301), - [anon_sym_LBRACE] = ACTIONS(7301), - [anon_sym_LBRACK] = ACTIONS(7301), - [anon_sym_EQ] = ACTIONS(7299), - [anon_sym_const] = ACTIONS(7299), - [anon_sym_constexpr] = ACTIONS(7301), - [anon_sym_volatile] = ACTIONS(7301), - [anon_sym_restrict] = ACTIONS(7301), - [anon_sym___restrict__] = ACTIONS(7301), - [anon_sym__Atomic] = ACTIONS(7301), - [anon_sym__Noreturn] = ACTIONS(7301), - [anon_sym_noreturn] = ACTIONS(7301), - [anon_sym__Nonnull] = ACTIONS(7301), - [anon_sym_mutable] = ACTIONS(7301), - [anon_sym_constinit] = ACTIONS(7301), - [anon_sym_consteval] = ACTIONS(7301), - [anon_sym_alignas] = ACTIONS(7301), - [anon_sym__Alignas] = ACTIONS(7301), - [anon_sym_QMARK] = ACTIONS(7301), - [anon_sym_STAR_EQ] = ACTIONS(7301), - [anon_sym_SLASH_EQ] = ACTIONS(7301), - [anon_sym_PERCENT_EQ] = ACTIONS(7301), - [anon_sym_PLUS_EQ] = ACTIONS(7301), - [anon_sym_DASH_EQ] = ACTIONS(7301), - [anon_sym_LT_LT_EQ] = ACTIONS(7301), - [anon_sym_GT_GT_EQ] = ACTIONS(7301), - [anon_sym_AMP_EQ] = ACTIONS(7301), - [anon_sym_CARET_EQ] = ACTIONS(7301), - [anon_sym_PIPE_EQ] = ACTIONS(7301), - [anon_sym_LT_EQ_GT] = ACTIONS(7301), - [anon_sym_or] = ACTIONS(7301), - [anon_sym_and] = ACTIONS(7301), - [anon_sym_bitor] = ACTIONS(7301), - [anon_sym_xor] = ACTIONS(7301), - [anon_sym_bitand] = ACTIONS(7301), - [anon_sym_not_eq] = ACTIONS(7301), - [anon_sym_DASH_DASH] = ACTIONS(7301), - [anon_sym_PLUS_PLUS] = ACTIONS(7301), - [anon_sym_DOT] = ACTIONS(7299), - [anon_sym_DOT_STAR] = ACTIONS(7301), - [anon_sym_DASH_GT] = ACTIONS(7299), + [STATE(2967)] = { + [sym__abstract_declarator] = STATE(6171), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(2971), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2079), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(2971), + [sym_identifier] = ACTIONS(7341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [aux_sym_preproc_if_token2] = ACTIONS(7343), + [aux_sym_preproc_else_token1] = ACTIONS(7343), + [aux_sym_preproc_elif_token1] = ACTIONS(7341), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7343), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(8086), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7343), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(8088), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7343), + [anon_sym_AMP] = ACTIONS(8090), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7343), + [anon_sym_GT_GT] = ACTIONS(7343), + [anon_sym___extension__] = ACTIONS(8092), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8092), + [anon_sym_volatile] = ACTIONS(8092), + [anon_sym_restrict] = ACTIONS(8092), + [anon_sym___restrict__] = ACTIONS(8092), + [anon_sym__Atomic] = ACTIONS(8092), + [anon_sym__Noreturn] = ACTIONS(8092), + [anon_sym_noreturn] = ACTIONS(8092), + [anon_sym__Nonnull] = ACTIONS(8092), + [anon_sym_mutable] = ACTIONS(8092), + [anon_sym_constinit] = ACTIONS(8092), + [anon_sym_consteval] = ACTIONS(8092), + [anon_sym_alignas] = ACTIONS(8100), + [anon_sym__Alignas] = ACTIONS(8100), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7341), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7341), + [anon_sym_not_eq] = ACTIONS(7341), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7343), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7301), - [anon_sym_override] = ACTIONS(7301), - [anon_sym_requires] = ACTIONS(7301), - [anon_sym_DASH_GT_STAR] = ACTIONS(7301), + [anon_sym_final] = ACTIONS(7341), + [anon_sym_override] = ACTIONS(7341), + [anon_sym_requires] = ACTIONS(7341), }, - [STATE(3451)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), - [anon_sym_COMMA] = ACTIONS(7289), - [anon_sym_RPAREN] = ACTIONS(7289), - [anon_sym_LPAREN2] = ACTIONS(7289), - [anon_sym_DASH] = ACTIONS(7287), - [anon_sym_PLUS] = ACTIONS(7287), - [anon_sym_STAR] = ACTIONS(7287), - [anon_sym_SLASH] = ACTIONS(7287), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_PIPE_PIPE] = ACTIONS(7289), - [anon_sym_AMP_AMP] = ACTIONS(7289), - [anon_sym_PIPE] = ACTIONS(7287), - [anon_sym_CARET] = ACTIONS(7287), - [anon_sym_AMP] = ACTIONS(7287), - [anon_sym_EQ_EQ] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7289), - [anon_sym_GT] = ACTIONS(7287), - [anon_sym_GT_EQ] = ACTIONS(7289), - [anon_sym_LT_EQ] = ACTIONS(7287), - [anon_sym_LT] = ACTIONS(7287), - [anon_sym_LT_LT] = ACTIONS(7287), - [anon_sym_GT_GT] = ACTIONS(7287), - [anon_sym___extension__] = ACTIONS(7289), - [anon_sym_LBRACE] = ACTIONS(7289), - [anon_sym_LBRACK] = ACTIONS(7289), - [anon_sym_EQ] = ACTIONS(7287), - [anon_sym_const] = ACTIONS(7287), - [anon_sym_constexpr] = ACTIONS(7289), - [anon_sym_volatile] = ACTIONS(7289), - [anon_sym_restrict] = ACTIONS(7289), - [anon_sym___restrict__] = ACTIONS(7289), - [anon_sym__Atomic] = ACTIONS(7289), - [anon_sym__Noreturn] = ACTIONS(7289), - [anon_sym_noreturn] = ACTIONS(7289), - [anon_sym__Nonnull] = ACTIONS(7289), - [anon_sym_mutable] = ACTIONS(7289), - [anon_sym_constinit] = ACTIONS(7289), - [anon_sym_consteval] = ACTIONS(7289), - [anon_sym_alignas] = ACTIONS(7289), - [anon_sym__Alignas] = ACTIONS(7289), - [anon_sym_QMARK] = ACTIONS(7289), - [anon_sym_STAR_EQ] = ACTIONS(7289), - [anon_sym_SLASH_EQ] = ACTIONS(7289), - [anon_sym_PERCENT_EQ] = ACTIONS(7289), - [anon_sym_PLUS_EQ] = ACTIONS(7289), - [anon_sym_DASH_EQ] = ACTIONS(7289), - [anon_sym_LT_LT_EQ] = ACTIONS(7289), - [anon_sym_GT_GT_EQ] = ACTIONS(7289), - [anon_sym_AMP_EQ] = ACTIONS(7289), - [anon_sym_CARET_EQ] = ACTIONS(7289), - [anon_sym_PIPE_EQ] = ACTIONS(7289), - [anon_sym_LT_EQ_GT] = ACTIONS(7289), - [anon_sym_or] = ACTIONS(7289), - [anon_sym_and] = ACTIONS(7289), - [anon_sym_bitor] = ACTIONS(7289), - [anon_sym_xor] = ACTIONS(7289), - [anon_sym_bitand] = ACTIONS(7289), - [anon_sym_not_eq] = ACTIONS(7289), - [anon_sym_DASH_DASH] = ACTIONS(7289), - [anon_sym_PLUS_PLUS] = ACTIONS(7289), - [anon_sym_DOT] = ACTIONS(7287), - [anon_sym_DOT_STAR] = ACTIONS(7289), - [anon_sym_DASH_GT] = ACTIONS(7287), + [STATE(2968)] = { + [sym__abstract_declarator] = STATE(6150), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3860), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2079), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3860), + [sym_identifier] = ACTIONS(6821), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [aux_sym_preproc_if_token2] = ACTIONS(6823), + [aux_sym_preproc_else_token1] = ACTIONS(6823), + [aux_sym_preproc_elif_token1] = ACTIONS(6821), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6823), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(8086), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6823), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(8088), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6823), + [anon_sym_AMP] = ACTIONS(8090), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6823), + [anon_sym_GT_GT] = ACTIONS(6823), + [anon_sym___extension__] = ACTIONS(8092), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8092), + [anon_sym_volatile] = ACTIONS(8092), + [anon_sym_restrict] = ACTIONS(8092), + [anon_sym___restrict__] = ACTIONS(8092), + [anon_sym__Atomic] = ACTIONS(8092), + [anon_sym__Noreturn] = ACTIONS(8092), + [anon_sym_noreturn] = ACTIONS(8092), + [anon_sym__Nonnull] = ACTIONS(8092), + [anon_sym_mutable] = ACTIONS(8092), + [anon_sym_constinit] = ACTIONS(8092), + [anon_sym_consteval] = ACTIONS(8092), + [anon_sym_alignas] = ACTIONS(8100), + [anon_sym__Alignas] = ACTIONS(8100), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6821), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6821), + [anon_sym_not_eq] = ACTIONS(6821), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6821), + [anon_sym_override] = ACTIONS(6821), + [anon_sym_requires] = ACTIONS(6821), + }, + [STATE(2969)] = { + [sym_argument_list] = STATE(5569), + [sym_initializer_list] = STATE(5579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(2952), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7223), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7289), - [anon_sym_override] = ACTIONS(7289), - [anon_sym_requires] = ACTIONS(7289), - [anon_sym_DASH_GT_STAR] = ACTIONS(7289), + [anon_sym_DASH_GT_STAR] = ACTIONS(7225), }, - [STATE(3452)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7305), - [anon_sym_COMMA] = ACTIONS(7305), - [anon_sym_RPAREN] = ACTIONS(7305), - [anon_sym_LPAREN2] = ACTIONS(7305), - [anon_sym_DASH] = ACTIONS(7303), - [anon_sym_PLUS] = ACTIONS(7303), - [anon_sym_STAR] = ACTIONS(7303), - [anon_sym_SLASH] = ACTIONS(7303), - [anon_sym_PERCENT] = ACTIONS(7303), - [anon_sym_PIPE_PIPE] = ACTIONS(7305), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE] = ACTIONS(7303), - [anon_sym_CARET] = ACTIONS(7303), - [anon_sym_AMP] = ACTIONS(7303), - [anon_sym_EQ_EQ] = ACTIONS(7305), - [anon_sym_BANG_EQ] = ACTIONS(7305), - [anon_sym_GT] = ACTIONS(7303), - [anon_sym_GT_EQ] = ACTIONS(7305), - [anon_sym_LT_EQ] = ACTIONS(7303), - [anon_sym_LT] = ACTIONS(7303), - [anon_sym_LT_LT] = ACTIONS(7303), - [anon_sym_GT_GT] = ACTIONS(7303), - [anon_sym___extension__] = ACTIONS(7305), - [anon_sym_LBRACE] = ACTIONS(7305), - [anon_sym_LBRACK] = ACTIONS(7305), - [anon_sym_EQ] = ACTIONS(7303), - [anon_sym_const] = ACTIONS(7303), - [anon_sym_constexpr] = ACTIONS(7305), - [anon_sym_volatile] = ACTIONS(7305), - [anon_sym_restrict] = ACTIONS(7305), - [anon_sym___restrict__] = ACTIONS(7305), - [anon_sym__Atomic] = ACTIONS(7305), - [anon_sym__Noreturn] = ACTIONS(7305), - [anon_sym_noreturn] = ACTIONS(7305), - [anon_sym__Nonnull] = ACTIONS(7305), - [anon_sym_mutable] = ACTIONS(7305), - [anon_sym_constinit] = ACTIONS(7305), - [anon_sym_consteval] = ACTIONS(7305), - [anon_sym_alignas] = ACTIONS(7305), - [anon_sym__Alignas] = ACTIONS(7305), - [anon_sym_QMARK] = ACTIONS(7305), - [anon_sym_STAR_EQ] = ACTIONS(7305), - [anon_sym_SLASH_EQ] = ACTIONS(7305), - [anon_sym_PERCENT_EQ] = ACTIONS(7305), - [anon_sym_PLUS_EQ] = ACTIONS(7305), - [anon_sym_DASH_EQ] = ACTIONS(7305), - [anon_sym_LT_LT_EQ] = ACTIONS(7305), - [anon_sym_GT_GT_EQ] = ACTIONS(7305), - [anon_sym_AMP_EQ] = ACTIONS(7305), - [anon_sym_CARET_EQ] = ACTIONS(7305), - [anon_sym_PIPE_EQ] = ACTIONS(7305), - [anon_sym_LT_EQ_GT] = ACTIONS(7305), - [anon_sym_or] = ACTIONS(7305), - [anon_sym_and] = ACTIONS(7305), - [anon_sym_bitor] = ACTIONS(7305), - [anon_sym_xor] = ACTIONS(7305), - [anon_sym_bitand] = ACTIONS(7305), - [anon_sym_not_eq] = ACTIONS(7305), - [anon_sym_DASH_DASH] = ACTIONS(7305), - [anon_sym_PLUS_PLUS] = ACTIONS(7305), - [anon_sym_DOT] = ACTIONS(7303), - [anon_sym_DOT_STAR] = ACTIONS(7305), - [anon_sym_DASH_GT] = ACTIONS(7303), + [STATE(2970)] = { + [sym__abstract_declarator] = STATE(6182), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(2488), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2069), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(2488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_RPAREN] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(8111), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7345), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(8113), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7345), + [anon_sym_AMP] = ACTIONS(8115), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7345), + [anon_sym_GT_GT] = ACTIONS(7345), + [anon_sym_SEMI] = ACTIONS(7345), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym_COLON] = ACTIONS(7347), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7345), + [anon_sym_RBRACE] = ACTIONS(7345), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7345), + [anon_sym_and] = ACTIONS(7345), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7345), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7305), - [anon_sym_override] = ACTIONS(7305), - [anon_sym_requires] = ACTIONS(7305), - [anon_sym_DASH_GT_STAR] = ACTIONS(7305), + [anon_sym_final] = ACTIONS(7345), + [anon_sym_override] = ACTIONS(7345), + [anon_sym_requires] = ACTIONS(7345), + [anon_sym_COLON_RBRACK] = ACTIONS(7345), }, - [STATE(3453)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), - [anon_sym_COMMA] = ACTIONS(7193), - [anon_sym_RPAREN] = ACTIONS(7193), - [anon_sym_LPAREN2] = ACTIONS(7193), - [anon_sym_DASH] = ACTIONS(7191), - [anon_sym_PLUS] = ACTIONS(7191), - [anon_sym_STAR] = ACTIONS(7191), - [anon_sym_SLASH] = ACTIONS(7191), - [anon_sym_PERCENT] = ACTIONS(7191), - [anon_sym_PIPE_PIPE] = ACTIONS(7193), - [anon_sym_AMP_AMP] = ACTIONS(7193), - [anon_sym_PIPE] = ACTIONS(7191), - [anon_sym_CARET] = ACTIONS(7191), - [anon_sym_AMP] = ACTIONS(7191), - [anon_sym_EQ_EQ] = ACTIONS(7193), - [anon_sym_BANG_EQ] = ACTIONS(7193), - [anon_sym_GT] = ACTIONS(7191), - [anon_sym_GT_EQ] = ACTIONS(7193), - [anon_sym_LT_EQ] = ACTIONS(7191), - [anon_sym_LT] = ACTIONS(7191), - [anon_sym_LT_LT] = ACTIONS(7191), - [anon_sym_GT_GT] = ACTIONS(7191), - [anon_sym___extension__] = ACTIONS(7193), - [anon_sym_LBRACE] = ACTIONS(7193), - [anon_sym_LBRACK] = ACTIONS(7193), - [anon_sym_EQ] = ACTIONS(7191), - [anon_sym_const] = ACTIONS(7191), - [anon_sym_constexpr] = ACTIONS(7193), - [anon_sym_volatile] = ACTIONS(7193), - [anon_sym_restrict] = ACTIONS(7193), - [anon_sym___restrict__] = ACTIONS(7193), - [anon_sym__Atomic] = ACTIONS(7193), - [anon_sym__Noreturn] = ACTIONS(7193), - [anon_sym_noreturn] = ACTIONS(7193), - [anon_sym__Nonnull] = ACTIONS(7193), - [anon_sym_mutable] = ACTIONS(7193), - [anon_sym_constinit] = ACTIONS(7193), - [anon_sym_consteval] = ACTIONS(7193), - [anon_sym_alignas] = ACTIONS(7193), - [anon_sym__Alignas] = ACTIONS(7193), - [anon_sym_QMARK] = ACTIONS(7193), - [anon_sym_STAR_EQ] = ACTIONS(7193), - [anon_sym_SLASH_EQ] = ACTIONS(7193), - [anon_sym_PERCENT_EQ] = ACTIONS(7193), - [anon_sym_PLUS_EQ] = ACTIONS(7193), - [anon_sym_DASH_EQ] = ACTIONS(7193), - [anon_sym_LT_LT_EQ] = ACTIONS(7193), - [anon_sym_GT_GT_EQ] = ACTIONS(7193), - [anon_sym_AMP_EQ] = ACTIONS(7193), - [anon_sym_CARET_EQ] = ACTIONS(7193), - [anon_sym_PIPE_EQ] = ACTIONS(7193), - [anon_sym_LT_EQ_GT] = ACTIONS(7193), - [anon_sym_or] = ACTIONS(7193), - [anon_sym_and] = ACTIONS(7193), - [anon_sym_bitor] = ACTIONS(7193), - [anon_sym_xor] = ACTIONS(7193), - [anon_sym_bitand] = ACTIONS(7193), - [anon_sym_not_eq] = ACTIONS(7193), - [anon_sym_DASH_DASH] = ACTIONS(7193), - [anon_sym_PLUS_PLUS] = ACTIONS(7193), - [anon_sym_DOT] = ACTIONS(7191), - [anon_sym_DOT_STAR] = ACTIONS(7193), - [anon_sym_DASH_GT] = ACTIONS(7191), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7193), - [anon_sym_override] = ACTIONS(7193), - [anon_sym_requires] = ACTIONS(7193), - [anon_sym_DASH_GT_STAR] = ACTIONS(7193), + [STATE(2971)] = { + [sym__abstract_declarator] = STATE(6177), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3860), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2079), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3860), + [sym_identifier] = ACTIONS(7353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), + [anon_sym_COMMA] = ACTIONS(7355), + [aux_sym_preproc_if_token2] = ACTIONS(7355), + [aux_sym_preproc_else_token1] = ACTIONS(7355), + [aux_sym_preproc_elif_token1] = ACTIONS(7353), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7355), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7355), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7353), + [anon_sym_PLUS] = ACTIONS(7353), + [anon_sym_STAR] = ACTIONS(8086), + [anon_sym_SLASH] = ACTIONS(7353), + [anon_sym_PERCENT] = ACTIONS(7355), + [anon_sym_PIPE_PIPE] = ACTIONS(7355), + [anon_sym_AMP_AMP] = ACTIONS(8088), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_CARET] = ACTIONS(7355), + [anon_sym_AMP] = ACTIONS(8090), + [anon_sym_EQ_EQ] = ACTIONS(7355), + [anon_sym_BANG_EQ] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_EQ] = ACTIONS(7355), + [anon_sym_LT_EQ] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_LT_LT] = ACTIONS(7355), + [anon_sym_GT_GT] = ACTIONS(7355), + [anon_sym___extension__] = ACTIONS(8092), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8092), + [anon_sym_volatile] = ACTIONS(8092), + [anon_sym_restrict] = ACTIONS(8092), + [anon_sym___restrict__] = ACTIONS(8092), + [anon_sym__Atomic] = ACTIONS(8092), + [anon_sym__Noreturn] = ACTIONS(8092), + [anon_sym_noreturn] = ACTIONS(8092), + [anon_sym__Nonnull] = ACTIONS(8092), + [anon_sym_mutable] = ACTIONS(8092), + [anon_sym_constinit] = ACTIONS(8092), + [anon_sym_consteval] = ACTIONS(8092), + [anon_sym_alignas] = ACTIONS(8100), + [anon_sym__Alignas] = ACTIONS(8100), + [anon_sym_QMARK] = ACTIONS(7355), + [anon_sym_LT_EQ_GT] = ACTIONS(7355), + [anon_sym_or] = ACTIONS(7353), + [anon_sym_and] = ACTIONS(7353), + [anon_sym_bitor] = ACTIONS(7353), + [anon_sym_xor] = ACTIONS(7353), + [anon_sym_bitand] = ACTIONS(7353), + [anon_sym_not_eq] = ACTIONS(7353), + [anon_sym_DASH_DASH] = ACTIONS(7355), + [anon_sym_PLUS_PLUS] = ACTIONS(7355), + [anon_sym_DOT] = ACTIONS(7353), + [anon_sym_DOT_STAR] = ACTIONS(7355), + [anon_sym_DASH_GT] = ACTIONS(7355), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7353), + [anon_sym_override] = ACTIONS(7353), + [anon_sym_requires] = ACTIONS(7353), }, - [STATE(3454)] = { - [sym_identifier] = ACTIONS(6262), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), - [anon_sym_COMMA] = ACTIONS(6264), - [aux_sym_preproc_if_token2] = ACTIONS(6264), - [aux_sym_preproc_else_token1] = ACTIONS(6264), - [aux_sym_preproc_elif_token1] = ACTIONS(6262), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6264), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6264), - [anon_sym_LPAREN2] = ACTIONS(6264), - [anon_sym_DASH] = ACTIONS(6262), - [anon_sym_PLUS] = ACTIONS(6262), - [anon_sym_STAR] = ACTIONS(6264), - [anon_sym_SLASH] = ACTIONS(6262), - [anon_sym_PERCENT] = ACTIONS(6264), - [anon_sym_PIPE_PIPE] = ACTIONS(6264), - [anon_sym_AMP_AMP] = ACTIONS(6264), - [anon_sym_PIPE] = ACTIONS(6262), - [anon_sym_CARET] = ACTIONS(6264), - [anon_sym_AMP] = ACTIONS(6262), - [anon_sym_EQ_EQ] = ACTIONS(6264), - [anon_sym_BANG_EQ] = ACTIONS(6264), - [anon_sym_GT] = ACTIONS(6262), - [anon_sym_GT_EQ] = ACTIONS(6264), - [anon_sym_LT_EQ] = ACTIONS(6262), - [anon_sym_LT] = ACTIONS(6262), - [anon_sym_LT_LT] = ACTIONS(6264), - [anon_sym_GT_GT] = ACTIONS(6264), - [anon_sym___extension__] = ACTIONS(6262), - [anon_sym___attribute__] = ACTIONS(6262), - [anon_sym___attribute] = ACTIONS(6262), - [anon_sym_COLON] = ACTIONS(6262), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACE] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(6264), - [anon_sym_RBRACK] = ACTIONS(6264), - [anon_sym_const] = ACTIONS(6262), - [anon_sym_constexpr] = ACTIONS(6262), - [anon_sym_volatile] = ACTIONS(6262), - [anon_sym_restrict] = ACTIONS(6262), - [anon_sym___restrict__] = ACTIONS(6262), - [anon_sym__Atomic] = ACTIONS(6262), - [anon_sym__Noreturn] = ACTIONS(6262), - [anon_sym_noreturn] = ACTIONS(6262), - [anon_sym__Nonnull] = ACTIONS(6262), - [anon_sym_mutable] = ACTIONS(6262), - [anon_sym_constinit] = ACTIONS(6262), - [anon_sym_consteval] = ACTIONS(6262), - [anon_sym_alignas] = ACTIONS(6262), - [anon_sym__Alignas] = ACTIONS(6262), - [anon_sym_QMARK] = ACTIONS(6264), - [anon_sym_LT_EQ_GT] = ACTIONS(6264), - [anon_sym_or] = ACTIONS(6262), - [anon_sym_and] = ACTIONS(6262), - [anon_sym_bitor] = ACTIONS(6262), - [anon_sym_xor] = ACTIONS(6262), - [anon_sym_bitand] = ACTIONS(6262), - [anon_sym_not_eq] = ACTIONS(6262), - [anon_sym_DASH_DASH] = ACTIONS(6264), - [anon_sym_PLUS_PLUS] = ACTIONS(6264), - [anon_sym_DOT] = ACTIONS(6262), - [anon_sym_DOT_STAR] = ACTIONS(6264), - [anon_sym_DASH_GT] = ACTIONS(6264), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6262), - [anon_sym_decltype] = ACTIONS(6262), - [anon_sym_final] = ACTIONS(6262), - [anon_sym_override] = ACTIONS(6262), - [anon_sym_requires] = ACTIONS(6262), + [STATE(2972)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7475), + [anon_sym_COMMA] = ACTIONS(7475), + [anon_sym_LPAREN2] = ACTIONS(7475), + [anon_sym_DASH] = ACTIONS(7473), + [anon_sym_PLUS] = ACTIONS(7473), + [anon_sym_STAR] = ACTIONS(7473), + [anon_sym_SLASH] = ACTIONS(7473), + [anon_sym_PERCENT] = ACTIONS(7473), + [anon_sym_PIPE_PIPE] = ACTIONS(7475), + [anon_sym_AMP_AMP] = ACTIONS(7475), + [anon_sym_PIPE] = ACTIONS(7473), + [anon_sym_CARET] = ACTIONS(7473), + [anon_sym_AMP] = ACTIONS(7473), + [anon_sym_EQ_EQ] = ACTIONS(7475), + [anon_sym_BANG_EQ] = ACTIONS(7475), + [anon_sym_GT] = ACTIONS(7473), + [anon_sym_GT_EQ] = ACTIONS(7475), + [anon_sym_LT_EQ] = ACTIONS(7473), + [anon_sym_LT] = ACTIONS(7473), + [anon_sym_LT_LT] = ACTIONS(7473), + [anon_sym_GT_GT] = ACTIONS(7473), + [anon_sym___extension__] = ACTIONS(7475), + [anon_sym_COLON_COLON] = ACTIONS(7475), + [anon_sym_LBRACE] = ACTIONS(7475), + [anon_sym_LBRACK] = ACTIONS(7475), + [anon_sym_RBRACK] = ACTIONS(7475), + [anon_sym_EQ] = ACTIONS(7473), + [anon_sym_const] = ACTIONS(7473), + [anon_sym_constexpr] = ACTIONS(7475), + [anon_sym_volatile] = ACTIONS(7475), + [anon_sym_restrict] = ACTIONS(7475), + [anon_sym___restrict__] = ACTIONS(7475), + [anon_sym__Atomic] = ACTIONS(7475), + [anon_sym__Noreturn] = ACTIONS(7475), + [anon_sym_noreturn] = ACTIONS(7475), + [anon_sym__Nonnull] = ACTIONS(7475), + [anon_sym_mutable] = ACTIONS(7475), + [anon_sym_constinit] = ACTIONS(7475), + [anon_sym_consteval] = ACTIONS(7475), + [anon_sym_alignas] = ACTIONS(7475), + [anon_sym__Alignas] = ACTIONS(7475), + [anon_sym_QMARK] = ACTIONS(7475), + [anon_sym_STAR_EQ] = ACTIONS(7475), + [anon_sym_SLASH_EQ] = ACTIONS(7475), + [anon_sym_PERCENT_EQ] = ACTIONS(7475), + [anon_sym_PLUS_EQ] = ACTIONS(7475), + [anon_sym_DASH_EQ] = ACTIONS(7475), + [anon_sym_LT_LT_EQ] = ACTIONS(7475), + [anon_sym_GT_GT_EQ] = ACTIONS(7475), + [anon_sym_AMP_EQ] = ACTIONS(7475), + [anon_sym_CARET_EQ] = ACTIONS(7475), + [anon_sym_PIPE_EQ] = ACTIONS(7475), + [anon_sym_and_eq] = ACTIONS(7475), + [anon_sym_or_eq] = ACTIONS(7475), + [anon_sym_xor_eq] = ACTIONS(7475), + [anon_sym_LT_EQ_GT] = ACTIONS(7475), + [anon_sym_or] = ACTIONS(7473), + [anon_sym_and] = ACTIONS(7473), + [anon_sym_bitor] = ACTIONS(7475), + [anon_sym_xor] = ACTIONS(7473), + [anon_sym_bitand] = ACTIONS(7475), + [anon_sym_not_eq] = ACTIONS(7475), + [anon_sym_DASH_DASH] = ACTIONS(7475), + [anon_sym_PLUS_PLUS] = ACTIONS(7475), + [anon_sym_DOT] = ACTIONS(7473), + [anon_sym_DOT_STAR] = ACTIONS(7475), + [anon_sym_DASH_GT] = ACTIONS(7475), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7475), + [anon_sym_override] = ACTIONS(7475), + [anon_sym_requires] = ACTIONS(7475), }, - [STATE(3455)] = { - [sym_string_literal] = STATE(3379), - [sym_template_argument_list] = STATE(3611), - [sym_raw_string_literal] = STATE(3379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(8018), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym___attribute__] = ACTIONS(5253), - [anon_sym___attribute] = ACTIONS(5260), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(5260), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5253), - [anon_sym_SLASH_EQ] = ACTIONS(5253), - [anon_sym_PERCENT_EQ] = ACTIONS(5253), - [anon_sym_PLUS_EQ] = ACTIONS(5253), - [anon_sym_DASH_EQ] = ACTIONS(5253), - [anon_sym_LT_LT_EQ] = ACTIONS(5253), - [anon_sym_GT_GT_EQ] = ACTIONS(5253), - [anon_sym_AMP_EQ] = ACTIONS(5253), - [anon_sym_CARET_EQ] = ACTIONS(5253), - [anon_sym_PIPE_EQ] = ACTIONS(5253), - [anon_sym_and_eq] = ACTIONS(5253), - [anon_sym_or_eq] = ACTIONS(5253), - [anon_sym_xor_eq] = ACTIONS(5253), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(6543), - [anon_sym_u_DQUOTE] = ACTIONS(6543), - [anon_sym_U_DQUOTE] = ACTIONS(6543), - [anon_sym_u8_DQUOTE] = ACTIONS(6543), - [anon_sym_DQUOTE] = ACTIONS(6543), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6545), - [anon_sym_LR_DQUOTE] = ACTIONS(6545), - [anon_sym_uR_DQUOTE] = ACTIONS(6545), - [anon_sym_UR_DQUOTE] = ACTIONS(6545), - [anon_sym_u8R_DQUOTE] = ACTIONS(6545), + [STATE(2973)] = { + [sym_virtual_specifier] = STATE(3433), + [sym__function_postfix] = STATE(3687), + [sym_requires_clause] = STATE(3687), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(8905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8907), + [anon_sym_COMMA] = ACTIONS(8907), + [anon_sym_RPAREN] = ACTIONS(8907), + [aux_sym_preproc_if_token2] = ACTIONS(8907), + [aux_sym_preproc_else_token1] = ACTIONS(8907), + [aux_sym_preproc_elif_token1] = ACTIONS(8905), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8907), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8907), + [anon_sym_LPAREN2] = ACTIONS(8907), + [anon_sym_DASH] = ACTIONS(8905), + [anon_sym_PLUS] = ACTIONS(8905), + [anon_sym_STAR] = ACTIONS(8905), + [anon_sym_SLASH] = ACTIONS(8905), + [anon_sym_PERCENT] = ACTIONS(8905), + [anon_sym_PIPE_PIPE] = ACTIONS(8907), + [anon_sym_AMP_AMP] = ACTIONS(8907), + [anon_sym_PIPE] = ACTIONS(8905), + [anon_sym_CARET] = ACTIONS(8905), + [anon_sym_AMP] = ACTIONS(8905), + [anon_sym_EQ_EQ] = ACTIONS(8907), + [anon_sym_BANG_EQ] = ACTIONS(8907), + [anon_sym_GT] = ACTIONS(8905), + [anon_sym_GT_EQ] = ACTIONS(8907), + [anon_sym_LT_EQ] = ACTIONS(8905), + [anon_sym_LT] = ACTIONS(8905), + [anon_sym_LT_LT] = ACTIONS(8905), + [anon_sym_GT_GT] = ACTIONS(8905), + [anon_sym_SEMI] = ACTIONS(8907), + [anon_sym___attribute__] = ACTIONS(8905), + [anon_sym___attribute] = ACTIONS(8905), + [anon_sym_COLON] = ACTIONS(8905), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8907), + [anon_sym_RBRACE] = ACTIONS(8907), + [anon_sym_LBRACK] = ACTIONS(8907), + [anon_sym_EQ] = ACTIONS(8905), + [anon_sym_QMARK] = ACTIONS(8907), + [anon_sym_STAR_EQ] = ACTIONS(8907), + [anon_sym_SLASH_EQ] = ACTIONS(8907), + [anon_sym_PERCENT_EQ] = ACTIONS(8907), + [anon_sym_PLUS_EQ] = ACTIONS(8907), + [anon_sym_DASH_EQ] = ACTIONS(8907), + [anon_sym_LT_LT_EQ] = ACTIONS(8907), + [anon_sym_GT_GT_EQ] = ACTIONS(8907), + [anon_sym_AMP_EQ] = ACTIONS(8907), + [anon_sym_CARET_EQ] = ACTIONS(8907), + [anon_sym_PIPE_EQ] = ACTIONS(8907), + [anon_sym_and_eq] = ACTIONS(8905), + [anon_sym_or_eq] = ACTIONS(8905), + [anon_sym_xor_eq] = ACTIONS(8905), + [anon_sym_LT_EQ_GT] = ACTIONS(8907), + [anon_sym_or] = ACTIONS(8905), + [anon_sym_and] = ACTIONS(8905), + [anon_sym_bitor] = ACTIONS(8905), + [anon_sym_xor] = ACTIONS(8905), + [anon_sym_bitand] = ACTIONS(8905), + [anon_sym_not_eq] = ACTIONS(8905), + [anon_sym_DASH_DASH] = ACTIONS(8907), + [anon_sym_PLUS_PLUS] = ACTIONS(8907), + [anon_sym_DOT] = ACTIONS(8905), + [anon_sym_DOT_STAR] = ACTIONS(8907), + [anon_sym_DASH_GT] = ACTIONS(8907), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6502), + [anon_sym_override] = ACTIONS(6502), + [anon_sym_requires] = ACTIONS(6508), + [anon_sym_COLON_RBRACK] = ACTIONS(8907), }, - [STATE(3456)] = { - [sym_identifier] = ACTIONS(6967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6969), - [anon_sym_COMMA] = ACTIONS(6969), - [aux_sym_preproc_if_token2] = ACTIONS(6969), - [aux_sym_preproc_else_token1] = ACTIONS(6969), - [aux_sym_preproc_elif_token1] = ACTIONS(6967), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6969), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6969), - [anon_sym_LPAREN2] = ACTIONS(6969), - [anon_sym_DASH] = ACTIONS(6967), - [anon_sym_PLUS] = ACTIONS(6967), - [anon_sym_STAR] = ACTIONS(6969), - [anon_sym_SLASH] = ACTIONS(6967), - [anon_sym_PERCENT] = ACTIONS(6969), - [anon_sym_PIPE_PIPE] = ACTIONS(6969), - [anon_sym_AMP_AMP] = ACTIONS(6969), - [anon_sym_PIPE] = ACTIONS(6967), - [anon_sym_CARET] = ACTIONS(6969), - [anon_sym_AMP] = ACTIONS(6967), - [anon_sym_EQ_EQ] = ACTIONS(6969), - [anon_sym_BANG_EQ] = ACTIONS(6969), - [anon_sym_GT] = ACTIONS(6967), - [anon_sym_GT_EQ] = ACTIONS(6969), - [anon_sym_LT_EQ] = ACTIONS(6967), - [anon_sym_LT] = ACTIONS(6967), - [anon_sym_LT_LT] = ACTIONS(6969), - [anon_sym_GT_GT] = ACTIONS(6969), - [anon_sym___extension__] = ACTIONS(6967), - [anon_sym___attribute__] = ACTIONS(6967), - [anon_sym___attribute] = ACTIONS(6967), - [anon_sym_COLON] = ACTIONS(6967), - [anon_sym_COLON_COLON] = ACTIONS(6969), - [anon_sym_LBRACE] = ACTIONS(6969), - [anon_sym_LBRACK] = ACTIONS(6969), - [anon_sym_RBRACK] = ACTIONS(6969), - [anon_sym_const] = ACTIONS(6967), - [anon_sym_constexpr] = ACTIONS(6967), - [anon_sym_volatile] = ACTIONS(6967), - [anon_sym_restrict] = ACTIONS(6967), - [anon_sym___restrict__] = ACTIONS(6967), - [anon_sym__Atomic] = ACTIONS(6967), - [anon_sym__Noreturn] = ACTIONS(6967), - [anon_sym_noreturn] = ACTIONS(6967), - [anon_sym__Nonnull] = ACTIONS(6967), - [anon_sym_mutable] = ACTIONS(6967), - [anon_sym_constinit] = ACTIONS(6967), - [anon_sym_consteval] = ACTIONS(6967), - [anon_sym_alignas] = ACTIONS(6967), - [anon_sym__Alignas] = ACTIONS(6967), - [anon_sym_QMARK] = ACTIONS(6969), - [anon_sym_LT_EQ_GT] = ACTIONS(6969), - [anon_sym_or] = ACTIONS(6967), - [anon_sym_and] = ACTIONS(6967), - [anon_sym_bitor] = ACTIONS(6967), - [anon_sym_xor] = ACTIONS(6967), - [anon_sym_bitand] = ACTIONS(6967), - [anon_sym_not_eq] = ACTIONS(6967), - [anon_sym_DASH_DASH] = ACTIONS(6969), - [anon_sym_PLUS_PLUS] = ACTIONS(6969), - [anon_sym_DOT] = ACTIONS(6967), - [anon_sym_DOT_STAR] = ACTIONS(6969), - [anon_sym_DASH_GT] = ACTIONS(6969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6967), - [anon_sym_decltype] = ACTIONS(6967), - [anon_sym_final] = ACTIONS(6967), - [anon_sym_override] = ACTIONS(6967), - [anon_sym_requires] = ACTIONS(6967), + [STATE(2974)] = { + [sym__abstract_declarator] = STATE(6151), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3860), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2079), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3860), + [sym_identifier] = ACTIONS(7347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [aux_sym_preproc_if_token2] = ACTIONS(7345), + [aux_sym_preproc_else_token1] = ACTIONS(7345), + [aux_sym_preproc_elif_token1] = ACTIONS(7347), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7345), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(8086), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7345), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(8088), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7345), + [anon_sym_AMP] = ACTIONS(8090), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7345), + [anon_sym_GT_GT] = ACTIONS(7345), + [anon_sym___extension__] = ACTIONS(8092), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8092), + [anon_sym_volatile] = ACTIONS(8092), + [anon_sym_restrict] = ACTIONS(8092), + [anon_sym___restrict__] = ACTIONS(8092), + [anon_sym__Atomic] = ACTIONS(8092), + [anon_sym__Noreturn] = ACTIONS(8092), + [anon_sym_noreturn] = ACTIONS(8092), + [anon_sym__Nonnull] = ACTIONS(8092), + [anon_sym_mutable] = ACTIONS(8092), + [anon_sym_constinit] = ACTIONS(8092), + [anon_sym_consteval] = ACTIONS(8092), + [anon_sym_alignas] = ACTIONS(8100), + [anon_sym__Alignas] = ACTIONS(8100), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7347), + [anon_sym_and] = ACTIONS(7347), + [anon_sym_bitor] = ACTIONS(7347), + [anon_sym_xor] = ACTIONS(7347), + [anon_sym_bitand] = ACTIONS(7347), + [anon_sym_not_eq] = ACTIONS(7347), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7347), + [anon_sym_override] = ACTIONS(7347), + [anon_sym_requires] = ACTIONS(7347), }, - [STATE(3457)] = { - [sym_attribute_specifier] = STATE(4374), - [sym_attribute_declaration] = STATE(4622), - [sym_gnu_asm_expression] = STATE(8992), - [sym_virtual_specifier] = STATE(4709), - [sym_ref_qualifier] = STATE(3548), - [sym__function_exception_specification] = STATE(3980), - [sym__function_attributes_end] = STATE(5867), + [STATE(2975)] = { + [sym_attribute_specifier] = STATE(4161), + [sym_attribute_declaration] = STATE(4617), + [sym_gnu_asm_expression] = STATE(9112), + [sym_virtual_specifier] = STATE(4705), + [sym__function_attributes_end] = STATE(4353), [sym__function_postfix] = STATE(5258), - [sym_trailing_return_type] = STATE(5718), - [sym_noexcept] = STATE(3980), - [sym_throw_specifier] = STATE(3980), + [sym_trailing_return_type] = STATE(4468), [sym_requires_clause] = STATE(5258), - [aux_sym_type_definition_repeat1] = STATE(4374), - [aux_sym_attributed_declarator_repeat1] = STATE(4622), - [aux_sym__function_postfix_repeat1] = STATE(4709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7544), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7544), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(8812), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7544), - [anon_sym_AMP] = ACTIONS(8815), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7544), - [anon_sym_GT_GT] = ACTIONS(7544), - [anon_sym_SEMI] = ACTIONS(7544), - [anon_sym___attribute__] = ACTIONS(6906), - [anon_sym___attribute] = ACTIONS(6859), - [anon_sym_COLON] = ACTIONS(7546), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), - [anon_sym_RBRACE] = ACTIONS(7544), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7544), - [anon_sym_and] = ACTIONS(7544), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7544), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(8818), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6913), - [anon_sym_override] = ACTIONS(6913), - [anon_sym_noexcept] = ACTIONS(6915), - [anon_sym_throw] = ACTIONS(6917), - [anon_sym_requires] = ACTIONS(6919), - [anon_sym_COLON_RBRACK] = ACTIONS(7544), - }, - [STATE(3458)] = { - [sym__abstract_declarator] = STATE(6197), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(3485), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(1976), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(3485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), - [anon_sym_COMMA] = ACTIONS(6999), - [anon_sym_RPAREN] = ACTIONS(6999), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(7001), - [anon_sym_PLUS] = ACTIONS(7001), - [anon_sym_STAR] = ACTIONS(8030), - [anon_sym_SLASH] = ACTIONS(7001), - [anon_sym_PERCENT] = ACTIONS(6999), - [anon_sym_PIPE_PIPE] = ACTIONS(6999), - [anon_sym_AMP_AMP] = ACTIONS(8032), - [anon_sym_PIPE] = ACTIONS(7001), - [anon_sym_CARET] = ACTIONS(6999), - [anon_sym_AMP] = ACTIONS(8034), - [anon_sym_EQ_EQ] = ACTIONS(6999), - [anon_sym_BANG_EQ] = ACTIONS(6999), - [anon_sym_GT] = ACTIONS(7001), - [anon_sym_GT_EQ] = ACTIONS(6999), - [anon_sym_LT_EQ] = ACTIONS(7001), - [anon_sym_LT] = ACTIONS(7001), - [anon_sym_LT_LT] = ACTIONS(6999), - [anon_sym_GT_GT] = ACTIONS(6999), - [anon_sym_SEMI] = ACTIONS(6999), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym_COLON] = ACTIONS(7001), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6999), - [anon_sym_RBRACE] = ACTIONS(6999), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(6999), - [anon_sym_or] = ACTIONS(6999), - [anon_sym_and] = ACTIONS(6999), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(6999), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(6999), - [anon_sym_PLUS_PLUS] = ACTIONS(6999), - [anon_sym_DOT] = ACTIONS(7001), - [anon_sym_DOT_STAR] = ACTIONS(6999), - [anon_sym_DASH_GT] = ACTIONS(6999), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6999), - }, - [STATE(3459)] = { - [sym__abstract_declarator] = STATE(6225), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(2399), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(1976), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(2399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), - [anon_sym_COMMA] = ACTIONS(7007), - [anon_sym_RPAREN] = ACTIONS(7007), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(7009), - [anon_sym_PLUS] = ACTIONS(7009), - [anon_sym_STAR] = ACTIONS(8030), - [anon_sym_SLASH] = ACTIONS(7009), - [anon_sym_PERCENT] = ACTIONS(7007), - [anon_sym_PIPE_PIPE] = ACTIONS(7007), - [anon_sym_AMP_AMP] = ACTIONS(8032), - [anon_sym_PIPE] = ACTIONS(7009), - [anon_sym_CARET] = ACTIONS(7007), - [anon_sym_AMP] = ACTIONS(8034), - [anon_sym_EQ_EQ] = ACTIONS(7007), - [anon_sym_BANG_EQ] = ACTIONS(7007), - [anon_sym_GT] = ACTIONS(7009), - [anon_sym_GT_EQ] = ACTIONS(7007), - [anon_sym_LT_EQ] = ACTIONS(7009), - [anon_sym_LT] = ACTIONS(7009), - [anon_sym_LT_LT] = ACTIONS(7007), - [anon_sym_GT_GT] = ACTIONS(7007), - [anon_sym_SEMI] = ACTIONS(7007), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym_COLON] = ACTIONS(7009), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7007), - [anon_sym_RBRACE] = ACTIONS(7007), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(7007), - [anon_sym_LT_EQ_GT] = ACTIONS(7007), - [anon_sym_or] = ACTIONS(7007), - [anon_sym_and] = ACTIONS(7007), - [anon_sym_bitor] = ACTIONS(7007), - [anon_sym_xor] = ACTIONS(7007), - [anon_sym_bitand] = ACTIONS(7007), - [anon_sym_not_eq] = ACTIONS(7007), - [anon_sym_DASH_DASH] = ACTIONS(7007), - [anon_sym_PLUS_PLUS] = ACTIONS(7007), - [anon_sym_DOT] = ACTIONS(7009), - [anon_sym_DOT_STAR] = ACTIONS(7007), - [anon_sym_DASH_GT] = ACTIONS(7007), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7007), - }, - [STATE(3460)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6800), - [anon_sym_and] = ACTIONS(6800), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6800), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6798), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6800), - [anon_sym_override] = ACTIONS(6800), - [anon_sym_requires] = ACTIONS(6800), - [anon_sym_DASH_GT_STAR] = ACTIONS(6800), - }, - [STATE(3461)] = { - [sym_decltype_auto] = STATE(3396), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(7183), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6800), - [anon_sym_and] = ACTIONS(6800), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6800), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6798), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8495), - [anon_sym_decltype] = ACTIONS(6592), - [anon_sym_DASH_GT_STAR] = ACTIONS(6800), + [aux_sym_type_definition_repeat1] = STATE(4161), + [aux_sym_attributed_declarator_repeat1] = STATE(4617), + [aux_sym__function_postfix_repeat1] = STATE(4705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7789), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6681), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7789), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8318), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8321), + [anon_sym_override] = ACTIONS(8321), + [anon_sym_GT2] = ACTIONS(7791), + [anon_sym_requires] = ACTIONS(8324), }, - [STATE(3462)] = { - [sym_identifier] = ACTIONS(6844), - [anon_sym_LPAREN2] = ACTIONS(6846), - [anon_sym_TILDE] = ACTIONS(6846), - [anon_sym_STAR] = ACTIONS(6846), - [anon_sym_PIPE_PIPE] = ACTIONS(6846), - [anon_sym_AMP_AMP] = ACTIONS(6846), - [anon_sym_AMP] = ACTIONS(6844), - [anon_sym_LT] = ACTIONS(6846), - [anon_sym___extension__] = ACTIONS(6844), - [anon_sym_virtual] = ACTIONS(6844), - [anon_sym_extern] = ACTIONS(6844), - [anon_sym___attribute__] = ACTIONS(6844), - [anon_sym___attribute] = ACTIONS(6844), - [anon_sym_using] = ACTIONS(6844), - [anon_sym_COLON_COLON] = ACTIONS(6846), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6846), - [anon_sym___declspec] = ACTIONS(6844), - [anon_sym___based] = ACTIONS(6844), - [anon_sym___cdecl] = ACTIONS(6844), - [anon_sym___clrcall] = ACTIONS(6844), - [anon_sym___stdcall] = ACTIONS(6844), - [anon_sym___fastcall] = ACTIONS(6844), - [anon_sym___thiscall] = ACTIONS(6844), - [anon_sym___vectorcall] = ACTIONS(6844), - [anon_sym_signed] = ACTIONS(6844), - [anon_sym_unsigned] = ACTIONS(6844), - [anon_sym_long] = ACTIONS(6844), - [anon_sym_short] = ACTIONS(6844), - [anon_sym_LBRACK] = ACTIONS(6844), - [anon_sym_static] = ACTIONS(6844), - [anon_sym_register] = ACTIONS(6844), - [anon_sym_inline] = ACTIONS(6844), - [anon_sym___inline] = ACTIONS(6844), - [anon_sym___inline__] = ACTIONS(6844), - [anon_sym___forceinline] = ACTIONS(6844), - [anon_sym_thread_local] = ACTIONS(6844), - [anon_sym___thread] = ACTIONS(6844), - [anon_sym_const] = ACTIONS(6844), - [anon_sym_constexpr] = ACTIONS(6844), - [anon_sym_volatile] = ACTIONS(6844), - [anon_sym_restrict] = ACTIONS(6844), - [anon_sym___restrict__] = ACTIONS(6844), - [anon_sym__Atomic] = ACTIONS(6844), - [anon_sym__Noreturn] = ACTIONS(6844), - [anon_sym_noreturn] = ACTIONS(6844), - [anon_sym__Nonnull] = ACTIONS(6844), - [anon_sym_mutable] = ACTIONS(6844), - [anon_sym_constinit] = ACTIONS(6844), - [anon_sym_consteval] = ACTIONS(6844), - [anon_sym_alignas] = ACTIONS(6844), - [anon_sym__Alignas] = ACTIONS(6844), - [sym_primitive_type] = ACTIONS(6844), - [anon_sym_enum] = ACTIONS(6844), - [anon_sym_class] = ACTIONS(6844), - [anon_sym_struct] = ACTIONS(6844), - [anon_sym_union] = ACTIONS(6844), - [anon_sym_or] = ACTIONS(6844), - [anon_sym_and] = ACTIONS(6844), - [anon_sym_typename] = ACTIONS(6844), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6844), - [anon_sym_decltype] = ACTIONS(6844), - [anon_sym_explicit] = ACTIONS(6844), - [anon_sym_template] = ACTIONS(6844), - [anon_sym_operator] = ACTIONS(6844), - [anon_sym_friend] = ACTIONS(6844), - [anon_sym_concept] = ACTIONS(6844), - [anon_sym_LBRACK_COLON] = ACTIONS(6846), + [STATE(2976)] = { + [sym_identifier] = ACTIONS(8909), + [anon_sym_LPAREN2] = ACTIONS(8911), + [anon_sym_TILDE] = ACTIONS(8911), + [anon_sym_STAR] = ACTIONS(8911), + [anon_sym_PIPE_PIPE] = ACTIONS(8911), + [anon_sym_AMP_AMP] = ACTIONS(8911), + [anon_sym_AMP] = ACTIONS(8909), + [anon_sym___extension__] = ACTIONS(8909), + [anon_sym_virtual] = ACTIONS(8909), + [anon_sym_extern] = ACTIONS(8909), + [anon_sym___attribute__] = ACTIONS(8909), + [anon_sym___attribute] = ACTIONS(8909), + [anon_sym_using] = ACTIONS(8909), + [anon_sym_COLON_COLON] = ACTIONS(8911), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8911), + [anon_sym___declspec] = ACTIONS(8909), + [anon_sym___based] = ACTIONS(8909), + [anon_sym___cdecl] = ACTIONS(8909), + [anon_sym___clrcall] = ACTIONS(8909), + [anon_sym___stdcall] = ACTIONS(8909), + [anon_sym___fastcall] = ACTIONS(8909), + [anon_sym___thiscall] = ACTIONS(8909), + [anon_sym___vectorcall] = ACTIONS(8909), + [anon_sym_LBRACE] = ACTIONS(8911), + [anon_sym_signed] = ACTIONS(8909), + [anon_sym_unsigned] = ACTIONS(8909), + [anon_sym_long] = ACTIONS(8909), + [anon_sym_short] = ACTIONS(8909), + [anon_sym_LBRACK] = ACTIONS(8909), + [anon_sym_static] = ACTIONS(8909), + [anon_sym_register] = ACTIONS(8909), + [anon_sym_inline] = ACTIONS(8909), + [anon_sym___inline] = ACTIONS(8909), + [anon_sym___inline__] = ACTIONS(8909), + [anon_sym___forceinline] = ACTIONS(8909), + [anon_sym_thread_local] = ACTIONS(8909), + [anon_sym___thread] = ACTIONS(8909), + [anon_sym_const] = ACTIONS(8909), + [anon_sym_constexpr] = ACTIONS(8909), + [anon_sym_volatile] = ACTIONS(8909), + [anon_sym_restrict] = ACTIONS(8909), + [anon_sym___restrict__] = ACTIONS(8909), + [anon_sym__Atomic] = ACTIONS(8909), + [anon_sym__Noreturn] = ACTIONS(8909), + [anon_sym_noreturn] = ACTIONS(8909), + [anon_sym__Nonnull] = ACTIONS(8909), + [anon_sym_mutable] = ACTIONS(8909), + [anon_sym_constinit] = ACTIONS(8909), + [anon_sym_consteval] = ACTIONS(8909), + [anon_sym_alignas] = ACTIONS(8909), + [anon_sym__Alignas] = ACTIONS(8909), + [sym_primitive_type] = ACTIONS(8909), + [anon_sym_enum] = ACTIONS(8909), + [anon_sym_class] = ACTIONS(8909), + [anon_sym_struct] = ACTIONS(8909), + [anon_sym_union] = ACTIONS(8909), + [anon_sym_or] = ACTIONS(8909), + [anon_sym_and] = ACTIONS(8909), + [anon_sym_typename] = ACTIONS(8909), + [anon_sym_DASH_GT] = ACTIONS(8911), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8909), + [anon_sym_decltype] = ACTIONS(8909), + [anon_sym_explicit] = ACTIONS(8909), + [anon_sym_template] = ACTIONS(8909), + [anon_sym_operator] = ACTIONS(8909), + [anon_sym_friend] = ACTIONS(8909), + [anon_sym_noexcept] = ACTIONS(8909), + [anon_sym_throw] = ACTIONS(8909), + [anon_sym_concept] = ACTIONS(8909), + [anon_sym_LBRACK_COLON] = ACTIONS(8911), }, - [STATE(3463)] = { - [sym_string_literal] = STATE(2486), - [sym_template_argument_list] = STATE(3611), - [sym_raw_string_literal] = STATE(2486), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(8829), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(8018), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8829), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_RBRACE] = ACTIONS(5253), - [anon_sym_LBRACK] = ACTIONS(8831), - [anon_sym_EQ] = ACTIONS(5260), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5253), - [anon_sym_SLASH_EQ] = ACTIONS(5253), - [anon_sym_PERCENT_EQ] = ACTIONS(5253), - [anon_sym_PLUS_EQ] = ACTIONS(5253), - [anon_sym_DASH_EQ] = ACTIONS(5253), - [anon_sym_LT_LT_EQ] = ACTIONS(5253), - [anon_sym_GT_GT_EQ] = ACTIONS(5253), - [anon_sym_AMP_EQ] = ACTIONS(5253), - [anon_sym_CARET_EQ] = ACTIONS(5253), - [anon_sym_PIPE_EQ] = ACTIONS(5253), - [anon_sym_and_eq] = ACTIONS(5253), - [anon_sym_or_eq] = ACTIONS(5253), - [anon_sym_xor_eq] = ACTIONS(5253), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2068), - [anon_sym_LR_DQUOTE] = ACTIONS(2068), - [anon_sym_uR_DQUOTE] = ACTIONS(2068), - [anon_sym_UR_DQUOTE] = ACTIONS(2068), - [anon_sym_u8R_DQUOTE] = ACTIONS(2068), + [STATE(2977)] = { + [sym_virtual_specifier] = STATE(3433), + [sym__function_postfix] = STATE(3688), + [sym_requires_clause] = STATE(3688), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(8913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8915), + [anon_sym_COMMA] = ACTIONS(8915), + [anon_sym_RPAREN] = ACTIONS(8915), + [aux_sym_preproc_if_token2] = ACTIONS(8915), + [aux_sym_preproc_else_token1] = ACTIONS(8915), + [aux_sym_preproc_elif_token1] = ACTIONS(8913), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8915), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8915), + [anon_sym_LPAREN2] = ACTIONS(8915), + [anon_sym_DASH] = ACTIONS(8913), + [anon_sym_PLUS] = ACTIONS(8913), + [anon_sym_STAR] = ACTIONS(8913), + [anon_sym_SLASH] = ACTIONS(8913), + [anon_sym_PERCENT] = ACTIONS(8913), + [anon_sym_PIPE_PIPE] = ACTIONS(8915), + [anon_sym_AMP_AMP] = ACTIONS(8915), + [anon_sym_PIPE] = ACTIONS(8913), + [anon_sym_CARET] = ACTIONS(8913), + [anon_sym_AMP] = ACTIONS(8913), + [anon_sym_EQ_EQ] = ACTIONS(8915), + [anon_sym_BANG_EQ] = ACTIONS(8915), + [anon_sym_GT] = ACTIONS(8913), + [anon_sym_GT_EQ] = ACTIONS(8915), + [anon_sym_LT_EQ] = ACTIONS(8913), + [anon_sym_LT] = ACTIONS(8913), + [anon_sym_LT_LT] = ACTIONS(8913), + [anon_sym_GT_GT] = ACTIONS(8913), + [anon_sym_SEMI] = ACTIONS(8915), + [anon_sym___attribute__] = ACTIONS(8913), + [anon_sym___attribute] = ACTIONS(8913), + [anon_sym_COLON] = ACTIONS(8913), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8915), + [anon_sym_RBRACE] = ACTIONS(8915), + [anon_sym_LBRACK] = ACTIONS(8915), + [anon_sym_EQ] = ACTIONS(8913), + [anon_sym_QMARK] = ACTIONS(8915), + [anon_sym_STAR_EQ] = ACTIONS(8915), + [anon_sym_SLASH_EQ] = ACTIONS(8915), + [anon_sym_PERCENT_EQ] = ACTIONS(8915), + [anon_sym_PLUS_EQ] = ACTIONS(8915), + [anon_sym_DASH_EQ] = ACTIONS(8915), + [anon_sym_LT_LT_EQ] = ACTIONS(8915), + [anon_sym_GT_GT_EQ] = ACTIONS(8915), + [anon_sym_AMP_EQ] = ACTIONS(8915), + [anon_sym_CARET_EQ] = ACTIONS(8915), + [anon_sym_PIPE_EQ] = ACTIONS(8915), + [anon_sym_and_eq] = ACTIONS(8913), + [anon_sym_or_eq] = ACTIONS(8913), + [anon_sym_xor_eq] = ACTIONS(8913), + [anon_sym_LT_EQ_GT] = ACTIONS(8915), + [anon_sym_or] = ACTIONS(8913), + [anon_sym_and] = ACTIONS(8913), + [anon_sym_bitor] = ACTIONS(8913), + [anon_sym_xor] = ACTIONS(8913), + [anon_sym_bitand] = ACTIONS(8913), + [anon_sym_not_eq] = ACTIONS(8913), + [anon_sym_DASH_DASH] = ACTIONS(8915), + [anon_sym_PLUS_PLUS] = ACTIONS(8915), + [anon_sym_DOT] = ACTIONS(8913), + [anon_sym_DOT_STAR] = ACTIONS(8915), + [anon_sym_DASH_GT] = ACTIONS(8915), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6502), + [anon_sym_override] = ACTIONS(6502), + [anon_sym_requires] = ACTIONS(6508), + [anon_sym_COLON_RBRACK] = ACTIONS(8915), }, - [STATE(3464)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7393), - [anon_sym_COMMA] = ACTIONS(7393), - [anon_sym_RPAREN] = ACTIONS(7393), - [anon_sym_LPAREN2] = ACTIONS(7393), - [anon_sym_DASH] = ACTIONS(7391), - [anon_sym_PLUS] = ACTIONS(7391), - [anon_sym_STAR] = ACTIONS(7393), - [anon_sym_SLASH] = ACTIONS(7391), - [anon_sym_PERCENT] = ACTIONS(7393), - [anon_sym_PIPE_PIPE] = ACTIONS(7393), - [anon_sym_AMP_AMP] = ACTIONS(7393), - [anon_sym_PIPE] = ACTIONS(7391), - [anon_sym_CARET] = ACTIONS(7393), - [anon_sym_AMP] = ACTIONS(7391), - [anon_sym_EQ_EQ] = ACTIONS(7393), - [anon_sym_BANG_EQ] = ACTIONS(7393), - [anon_sym_GT] = ACTIONS(7391), - [anon_sym_GT_EQ] = ACTIONS(7393), - [anon_sym_LT_EQ] = ACTIONS(7391), - [anon_sym_LT] = ACTIONS(7391), - [anon_sym_LT_LT] = ACTIONS(7393), - [anon_sym_GT_GT] = ACTIONS(7393), - [anon_sym_SEMI] = ACTIONS(7393), - [anon_sym___extension__] = ACTIONS(7393), - [anon_sym___attribute__] = ACTIONS(7393), - [anon_sym___attribute] = ACTIONS(7391), - [anon_sym_COLON] = ACTIONS(7391), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7393), - [anon_sym_LBRACE] = ACTIONS(7393), - [anon_sym_RBRACE] = ACTIONS(7393), - [anon_sym_signed] = ACTIONS(8875), - [anon_sym_unsigned] = ACTIONS(8875), - [anon_sym_long] = ACTIONS(8875), - [anon_sym_short] = ACTIONS(8875), - [anon_sym_LBRACK] = ACTIONS(7393), - [anon_sym_const] = ACTIONS(7391), - [anon_sym_constexpr] = ACTIONS(7393), - [anon_sym_volatile] = ACTIONS(7393), - [anon_sym_restrict] = ACTIONS(7393), - [anon_sym___restrict__] = ACTIONS(7393), - [anon_sym__Atomic] = ACTIONS(7393), - [anon_sym__Noreturn] = ACTIONS(7393), - [anon_sym_noreturn] = ACTIONS(7393), - [anon_sym__Nonnull] = ACTIONS(7393), - [anon_sym_mutable] = ACTIONS(7393), - [anon_sym_constinit] = ACTIONS(7393), - [anon_sym_consteval] = ACTIONS(7393), - [anon_sym_alignas] = ACTIONS(7393), - [anon_sym__Alignas] = ACTIONS(7393), - [anon_sym_QMARK] = ACTIONS(7393), - [anon_sym_LT_EQ_GT] = ACTIONS(7393), - [anon_sym_or] = ACTIONS(7393), - [anon_sym_and] = ACTIONS(7393), - [anon_sym_bitor] = ACTIONS(7393), - [anon_sym_xor] = ACTIONS(7393), - [anon_sym_bitand] = ACTIONS(7393), - [anon_sym_not_eq] = ACTIONS(7393), - [anon_sym_DASH_DASH] = ACTIONS(7393), - [anon_sym_PLUS_PLUS] = ACTIONS(7393), - [anon_sym_DOT] = ACTIONS(7391), - [anon_sym_DOT_STAR] = ACTIONS(7393), - [anon_sym_DASH_GT] = ACTIONS(7393), + [STATE(2978)] = { + [sym_template_argument_list] = STATE(3137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6569), + [anon_sym_COMMA] = ACTIONS(6569), + [anon_sym_LPAREN2] = ACTIONS(6569), + [anon_sym_DASH] = ACTIONS(6576), + [anon_sym_PLUS] = ACTIONS(6576), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(6576), + [anon_sym_PERCENT] = ACTIONS(6576), + [anon_sym_PIPE_PIPE] = ACTIONS(6569), + [anon_sym_AMP_AMP] = ACTIONS(6569), + [anon_sym_PIPE] = ACTIONS(6576), + [anon_sym_CARET] = ACTIONS(6576), + [anon_sym_AMP] = ACTIONS(6576), + [anon_sym_EQ_EQ] = ACTIONS(6569), + [anon_sym_BANG_EQ] = ACTIONS(6569), + [anon_sym_GT] = ACTIONS(6576), + [anon_sym_GT_EQ] = ACTIONS(6569), + [anon_sym_LT_EQ] = ACTIONS(6576), + [anon_sym_LT] = ACTIONS(8917), + [anon_sym_LT_LT] = ACTIONS(6576), + [anon_sym_GT_GT] = ACTIONS(6576), + [anon_sym___extension__] = ACTIONS(6572), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(6572), + [anon_sym_LBRACK] = ACTIONS(6569), + [anon_sym_RBRACK] = ACTIONS(6569), + [anon_sym_EQ] = ACTIONS(6574), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_constexpr] = ACTIONS(6572), + [anon_sym_volatile] = ACTIONS(6572), + [anon_sym_restrict] = ACTIONS(6572), + [anon_sym___restrict__] = ACTIONS(6572), + [anon_sym__Atomic] = ACTIONS(6572), + [anon_sym__Noreturn] = ACTIONS(6572), + [anon_sym_noreturn] = ACTIONS(6572), + [anon_sym__Nonnull] = ACTIONS(6572), + [anon_sym_mutable] = ACTIONS(6572), + [anon_sym_constinit] = ACTIONS(6572), + [anon_sym_consteval] = ACTIONS(6572), + [anon_sym_alignas] = ACTIONS(6572), + [anon_sym__Alignas] = ACTIONS(6572), + [anon_sym_QMARK] = ACTIONS(6569), + [anon_sym_STAR_EQ] = ACTIONS(6567), + [anon_sym_SLASH_EQ] = ACTIONS(6567), + [anon_sym_PERCENT_EQ] = ACTIONS(6567), + [anon_sym_PLUS_EQ] = ACTIONS(6567), + [anon_sym_DASH_EQ] = ACTIONS(6567), + [anon_sym_LT_LT_EQ] = ACTIONS(6567), + [anon_sym_GT_GT_EQ] = ACTIONS(6567), + [anon_sym_AMP_EQ] = ACTIONS(6567), + [anon_sym_CARET_EQ] = ACTIONS(6567), + [anon_sym_PIPE_EQ] = ACTIONS(6567), + [anon_sym_and_eq] = ACTIONS(6567), + [anon_sym_or_eq] = ACTIONS(6567), + [anon_sym_xor_eq] = ACTIONS(6567), + [anon_sym_LT_EQ_GT] = ACTIONS(6569), + [anon_sym_or] = ACTIONS(6576), + [anon_sym_and] = ACTIONS(6576), + [anon_sym_bitor] = ACTIONS(6569), + [anon_sym_xor] = ACTIONS(6576), + [anon_sym_bitand] = ACTIONS(6569), + [anon_sym_not_eq] = ACTIONS(6569), + [anon_sym_DASH_DASH] = ACTIONS(6569), + [anon_sym_PLUS_PLUS] = ACTIONS(6569), + [anon_sym_DOT] = ACTIONS(6576), + [anon_sym_DOT_STAR] = ACTIONS(6569), + [anon_sym_DASH_GT] = ACTIONS(6569), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7393), - [anon_sym_override] = ACTIONS(7393), - [anon_sym_requires] = ACTIONS(7393), - [anon_sym_COLON_RBRACK] = ACTIONS(7393), + [sym_auto] = ACTIONS(6572), + [anon_sym_decltype] = ACTIONS(6572), }, - [STATE(3465)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7416), - [anon_sym_COMMA] = ACTIONS(7416), - [anon_sym_RPAREN] = ACTIONS(7416), - [anon_sym_LPAREN2] = ACTIONS(7416), - [anon_sym_DASH] = ACTIONS(7414), - [anon_sym_PLUS] = ACTIONS(7414), - [anon_sym_STAR] = ACTIONS(7416), - [anon_sym_SLASH] = ACTIONS(7414), - [anon_sym_PERCENT] = ACTIONS(7416), - [anon_sym_PIPE_PIPE] = ACTIONS(7416), - [anon_sym_AMP_AMP] = ACTIONS(7416), - [anon_sym_PIPE] = ACTIONS(7414), - [anon_sym_CARET] = ACTIONS(7416), - [anon_sym_AMP] = ACTIONS(7414), - [anon_sym_EQ_EQ] = ACTIONS(7416), - [anon_sym_BANG_EQ] = ACTIONS(7416), - [anon_sym_GT] = ACTIONS(7414), - [anon_sym_GT_EQ] = ACTIONS(7416), - [anon_sym_LT_EQ] = ACTIONS(7414), - [anon_sym_LT] = ACTIONS(7414), - [anon_sym_LT_LT] = ACTIONS(7416), - [anon_sym_GT_GT] = ACTIONS(7416), - [anon_sym_SEMI] = ACTIONS(7416), - [anon_sym___extension__] = ACTIONS(7416), - [anon_sym___attribute__] = ACTIONS(7416), - [anon_sym___attribute] = ACTIONS(7414), - [anon_sym_COLON] = ACTIONS(7414), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7416), - [anon_sym_LBRACE] = ACTIONS(7416), - [anon_sym_RBRACE] = ACTIONS(7416), - [anon_sym_signed] = ACTIONS(8875), - [anon_sym_unsigned] = ACTIONS(8875), - [anon_sym_long] = ACTIONS(8875), - [anon_sym_short] = ACTIONS(8875), - [anon_sym_LBRACK] = ACTIONS(7416), - [anon_sym_const] = ACTIONS(7414), - [anon_sym_constexpr] = ACTIONS(7416), - [anon_sym_volatile] = ACTIONS(7416), - [anon_sym_restrict] = ACTIONS(7416), - [anon_sym___restrict__] = ACTIONS(7416), - [anon_sym__Atomic] = ACTIONS(7416), - [anon_sym__Noreturn] = ACTIONS(7416), - [anon_sym_noreturn] = ACTIONS(7416), - [anon_sym__Nonnull] = ACTIONS(7416), - [anon_sym_mutable] = ACTIONS(7416), - [anon_sym_constinit] = ACTIONS(7416), - [anon_sym_consteval] = ACTIONS(7416), - [anon_sym_alignas] = ACTIONS(7416), - [anon_sym__Alignas] = ACTIONS(7416), - [anon_sym_QMARK] = ACTIONS(7416), - [anon_sym_LT_EQ_GT] = ACTIONS(7416), - [anon_sym_or] = ACTIONS(7416), - [anon_sym_and] = ACTIONS(7416), - [anon_sym_bitor] = ACTIONS(7416), - [anon_sym_xor] = ACTIONS(7416), - [anon_sym_bitand] = ACTIONS(7416), - [anon_sym_not_eq] = ACTIONS(7416), - [anon_sym_DASH_DASH] = ACTIONS(7416), - [anon_sym_PLUS_PLUS] = ACTIONS(7416), - [anon_sym_DOT] = ACTIONS(7414), - [anon_sym_DOT_STAR] = ACTIONS(7416), - [anon_sym_DASH_GT] = ACTIONS(7416), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7416), - [anon_sym_override] = ACTIONS(7416), - [anon_sym_requires] = ACTIONS(7416), - [anon_sym_COLON_RBRACK] = ACTIONS(7416), + [STATE(2979)] = { + [sym_attribute_specifier] = STATE(4179), + [sym_attribute_declaration] = STATE(4554), + [sym_gnu_asm_expression] = STATE(9153), + [sym_virtual_specifier] = STATE(4653), + [sym__function_attributes_end] = STATE(4394), + [sym__function_postfix] = STATE(5110), + [sym_trailing_return_type] = STATE(4532), + [sym_requires_clause] = STATE(5110), + [aux_sym_type_definition_repeat1] = STATE(4179), + [aux_sym_attributed_declarator_repeat1] = STATE(4554), + [aux_sym__function_postfix_repeat1] = STATE(4653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6719), + [anon_sym___attribute] = ACTIONS(6721), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_RBRACK] = ACTIONS(7791), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8360), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6742), + [anon_sym_override] = ACTIONS(6742), + [anon_sym_requires] = ACTIONS(6744), }, - [STATE(3466)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), - [anon_sym_COMMA] = ACTIONS(7201), - [anon_sym_RPAREN] = ACTIONS(7201), - [anon_sym_LPAREN2] = ACTIONS(7201), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_STAR] = ACTIONS(7201), - [anon_sym_SLASH] = ACTIONS(7199), - [anon_sym_PERCENT] = ACTIONS(7201), - [anon_sym_PIPE_PIPE] = ACTIONS(7201), - [anon_sym_AMP_AMP] = ACTIONS(7201), - [anon_sym_PIPE] = ACTIONS(7199), - [anon_sym_CARET] = ACTIONS(7201), - [anon_sym_AMP] = ACTIONS(7199), - [anon_sym_EQ_EQ] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7201), - [anon_sym_GT] = ACTIONS(7199), - [anon_sym_GT_EQ] = ACTIONS(7201), - [anon_sym_LT_EQ] = ACTIONS(7199), - [anon_sym_LT] = ACTIONS(7199), - [anon_sym_LT_LT] = ACTIONS(7201), - [anon_sym_GT_GT] = ACTIONS(7201), - [anon_sym_SEMI] = ACTIONS(7201), - [anon_sym___extension__] = ACTIONS(7201), - [anon_sym___attribute__] = ACTIONS(7201), - [anon_sym___attribute] = ACTIONS(7199), - [anon_sym_COLON] = ACTIONS(7199), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7201), - [anon_sym_LBRACE] = ACTIONS(7201), - [anon_sym_RBRACE] = ACTIONS(7201), - [anon_sym_signed] = ACTIONS(8875), - [anon_sym_unsigned] = ACTIONS(8875), - [anon_sym_long] = ACTIONS(8875), - [anon_sym_short] = ACTIONS(8875), - [anon_sym_LBRACK] = ACTIONS(7201), - [anon_sym_const] = ACTIONS(7199), - [anon_sym_constexpr] = ACTIONS(7201), - [anon_sym_volatile] = ACTIONS(7201), - [anon_sym_restrict] = ACTIONS(7201), - [anon_sym___restrict__] = ACTIONS(7201), - [anon_sym__Atomic] = ACTIONS(7201), - [anon_sym__Noreturn] = ACTIONS(7201), - [anon_sym_noreturn] = ACTIONS(7201), - [anon_sym__Nonnull] = ACTIONS(7201), - [anon_sym_mutable] = ACTIONS(7201), - [anon_sym_constinit] = ACTIONS(7201), - [anon_sym_consteval] = ACTIONS(7201), - [anon_sym_alignas] = ACTIONS(7201), - [anon_sym__Alignas] = ACTIONS(7201), - [anon_sym_QMARK] = ACTIONS(7201), - [anon_sym_LT_EQ_GT] = ACTIONS(7201), - [anon_sym_or] = ACTIONS(7201), - [anon_sym_and] = ACTIONS(7201), - [anon_sym_bitor] = ACTIONS(7201), - [anon_sym_xor] = ACTIONS(7201), - [anon_sym_bitand] = ACTIONS(7201), - [anon_sym_not_eq] = ACTIONS(7201), - [anon_sym_DASH_DASH] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7201), - [anon_sym_DOT] = ACTIONS(7199), - [anon_sym_DOT_STAR] = ACTIONS(7201), - [anon_sym_DASH_GT] = ACTIONS(7201), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7201), - [anon_sym_override] = ACTIONS(7201), - [anon_sym_requires] = ACTIONS(7201), - [anon_sym_COLON_RBRACK] = ACTIONS(7201), + [STATE(2980)] = { + [sym__abstract_declarator] = STATE(6179), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(2488), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2069), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(2488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(8111), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6823), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(8113), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6823), + [anon_sym_AMP] = ACTIONS(8115), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6823), + [anon_sym_GT_GT] = ACTIONS(6823), + [anon_sym_SEMI] = ACTIONS(6823), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym_COLON] = ACTIONS(6821), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6823), + [anon_sym_RBRACE] = ACTIONS(6823), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6823), + [anon_sym_and] = ACTIONS(6823), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6823), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6823), + [anon_sym_override] = ACTIONS(6823), + [anon_sym_requires] = ACTIONS(6823), + [anon_sym_COLON_RBRACK] = ACTIONS(6823), }, - [STATE(3467)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6792), - [anon_sym_COMMA] = ACTIONS(6792), - [anon_sym_RPAREN] = ACTIONS(6792), - [anon_sym_LPAREN2] = ACTIONS(6792), - [anon_sym_DASH] = ACTIONS(6790), - [anon_sym_PLUS] = ACTIONS(6790), - [anon_sym_STAR] = ACTIONS(6790), - [anon_sym_SLASH] = ACTIONS(6790), - [anon_sym_PERCENT] = ACTIONS(6790), - [anon_sym_PIPE_PIPE] = ACTIONS(6792), - [anon_sym_AMP_AMP] = ACTIONS(6792), - [anon_sym_PIPE] = ACTIONS(6790), - [anon_sym_CARET] = ACTIONS(6790), - [anon_sym_AMP] = ACTIONS(6790), - [anon_sym_EQ_EQ] = ACTIONS(6792), - [anon_sym_BANG_EQ] = ACTIONS(6792), - [anon_sym_GT] = ACTIONS(6790), - [anon_sym_GT_EQ] = ACTIONS(6792), - [anon_sym_LT_EQ] = ACTIONS(6790), - [anon_sym_LT] = ACTIONS(6790), - [anon_sym_LT_LT] = ACTIONS(6790), - [anon_sym_GT_GT] = ACTIONS(6790), - [anon_sym___extension__] = ACTIONS(6792), - [anon_sym_LBRACE] = ACTIONS(6792), - [anon_sym_LBRACK] = ACTIONS(6792), - [anon_sym_EQ] = ACTIONS(6790), - [anon_sym_const] = ACTIONS(6790), - [anon_sym_constexpr] = ACTIONS(6792), - [anon_sym_volatile] = ACTIONS(6792), - [anon_sym_restrict] = ACTIONS(6792), - [anon_sym___restrict__] = ACTIONS(6792), - [anon_sym__Atomic] = ACTIONS(6792), - [anon_sym__Noreturn] = ACTIONS(6792), - [anon_sym_noreturn] = ACTIONS(6792), - [anon_sym__Nonnull] = ACTIONS(6792), - [anon_sym_mutable] = ACTIONS(6792), - [anon_sym_constinit] = ACTIONS(6792), - [anon_sym_consteval] = ACTIONS(6792), - [anon_sym_alignas] = ACTIONS(6792), - [anon_sym__Alignas] = ACTIONS(6792), - [anon_sym_QMARK] = ACTIONS(6792), - [anon_sym_STAR_EQ] = ACTIONS(6792), - [anon_sym_SLASH_EQ] = ACTIONS(6792), - [anon_sym_PERCENT_EQ] = ACTIONS(6792), - [anon_sym_PLUS_EQ] = ACTIONS(6792), - [anon_sym_DASH_EQ] = ACTIONS(6792), - [anon_sym_LT_LT_EQ] = ACTIONS(6792), - [anon_sym_GT_GT_EQ] = ACTIONS(6792), - [anon_sym_AMP_EQ] = ACTIONS(6792), - [anon_sym_CARET_EQ] = ACTIONS(6792), - [anon_sym_PIPE_EQ] = ACTIONS(6792), - [anon_sym_LT_EQ_GT] = ACTIONS(6792), - [anon_sym_or] = ACTIONS(6792), - [anon_sym_and] = ACTIONS(6792), - [anon_sym_bitor] = ACTIONS(6792), - [anon_sym_xor] = ACTIONS(6792), - [anon_sym_bitand] = ACTIONS(6792), - [anon_sym_not_eq] = ACTIONS(6792), - [anon_sym_DASH_DASH] = ACTIONS(6792), - [anon_sym_PLUS_PLUS] = ACTIONS(6792), - [anon_sym_DOT] = ACTIONS(6790), - [anon_sym_DOT_STAR] = ACTIONS(6792), - [anon_sym_DASH_GT] = ACTIONS(6790), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6792), - [anon_sym_override] = ACTIONS(6792), - [anon_sym_requires] = ACTIONS(6792), - [anon_sym_DASH_GT_STAR] = ACTIONS(6792), + [STATE(2981)] = { + [sym_attribute_specifier] = STATE(4161), + [sym_attribute_declaration] = STATE(4617), + [sym_gnu_asm_expression] = STATE(9112), + [sym_virtual_specifier] = STATE(4705), + [sym__function_attributes_end] = STATE(4354), + [sym__function_postfix] = STATE(5047), + [sym_trailing_return_type] = STATE(4470), + [sym_requires_clause] = STATE(5047), + [aux_sym_type_definition_repeat1] = STATE(4161), + [aux_sym_attributed_declarator_repeat1] = STATE(4617), + [aux_sym__function_postfix_repeat1] = STATE(4705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7968), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym___attribute__] = ACTIONS(6681), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7968), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7966), + [anon_sym_or_eq] = ACTIONS(7966), + [anon_sym_xor_eq] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(8429), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8432), + [anon_sym_override] = ACTIONS(8432), + [anon_sym_GT2] = ACTIONS(7966), + [anon_sym_requires] = ACTIONS(8435), }, - [STATE(3468)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7215), - [anon_sym_COMMA] = ACTIONS(7215), - [anon_sym_RPAREN] = ACTIONS(7215), - [anon_sym_LPAREN2] = ACTIONS(7215), - [anon_sym_DASH] = ACTIONS(7213), - [anon_sym_PLUS] = ACTIONS(7213), - [anon_sym_STAR] = ACTIONS(7215), - [anon_sym_SLASH] = ACTIONS(7213), - [anon_sym_PERCENT] = ACTIONS(7215), - [anon_sym_PIPE_PIPE] = ACTIONS(7215), - [anon_sym_AMP_AMP] = ACTIONS(7215), - [anon_sym_PIPE] = ACTIONS(7213), - [anon_sym_CARET] = ACTIONS(7215), - [anon_sym_AMP] = ACTIONS(7213), - [anon_sym_EQ_EQ] = ACTIONS(7215), - [anon_sym_BANG_EQ] = ACTIONS(7215), - [anon_sym_GT] = ACTIONS(7213), - [anon_sym_GT_EQ] = ACTIONS(7215), - [anon_sym_LT_EQ] = ACTIONS(7213), - [anon_sym_LT] = ACTIONS(7213), - [anon_sym_LT_LT] = ACTIONS(7215), - [anon_sym_GT_GT] = ACTIONS(7215), - [anon_sym_SEMI] = ACTIONS(7215), - [anon_sym___extension__] = ACTIONS(7215), - [anon_sym___attribute__] = ACTIONS(7215), - [anon_sym___attribute] = ACTIONS(7213), - [anon_sym_COLON] = ACTIONS(7213), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7215), - [anon_sym_LBRACE] = ACTIONS(7215), - [anon_sym_RBRACE] = ACTIONS(7215), - [anon_sym_signed] = ACTIONS(8899), - [anon_sym_unsigned] = ACTIONS(8899), - [anon_sym_long] = ACTIONS(8899), - [anon_sym_short] = ACTIONS(8899), - [anon_sym_LBRACK] = ACTIONS(7215), - [anon_sym_const] = ACTIONS(7213), - [anon_sym_constexpr] = ACTIONS(7215), - [anon_sym_volatile] = ACTIONS(7215), - [anon_sym_restrict] = ACTIONS(7215), - [anon_sym___restrict__] = ACTIONS(7215), - [anon_sym__Atomic] = ACTIONS(7215), - [anon_sym__Noreturn] = ACTIONS(7215), - [anon_sym_noreturn] = ACTIONS(7215), - [anon_sym__Nonnull] = ACTIONS(7215), - [anon_sym_mutable] = ACTIONS(7215), - [anon_sym_constinit] = ACTIONS(7215), - [anon_sym_consteval] = ACTIONS(7215), - [anon_sym_alignas] = ACTIONS(7215), - [anon_sym__Alignas] = ACTIONS(7215), - [anon_sym_QMARK] = ACTIONS(7215), - [anon_sym_LT_EQ_GT] = ACTIONS(7215), - [anon_sym_or] = ACTIONS(7215), - [anon_sym_and] = ACTIONS(7215), - [anon_sym_bitor] = ACTIONS(7215), - [anon_sym_xor] = ACTIONS(7215), - [anon_sym_bitand] = ACTIONS(7215), - [anon_sym_not_eq] = ACTIONS(7215), - [anon_sym_DASH_DASH] = ACTIONS(7215), - [anon_sym_PLUS_PLUS] = ACTIONS(7215), - [anon_sym_DOT] = ACTIONS(7213), - [anon_sym_DOT_STAR] = ACTIONS(7215), - [anon_sym_DASH_GT] = ACTIONS(7215), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7215), - [anon_sym_override] = ACTIONS(7215), - [anon_sym_requires] = ACTIONS(7215), - [anon_sym_COLON_RBRACK] = ACTIONS(7215), + [STATE(2982)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), + [anon_sym_COMMA] = ACTIONS(7563), + [anon_sym_RPAREN] = ACTIONS(7563), + [anon_sym_LPAREN2] = ACTIONS(7563), + [anon_sym_DASH] = ACTIONS(7561), + [anon_sym_PLUS] = ACTIONS(7561), + [anon_sym_STAR] = ACTIONS(7561), + [anon_sym_SLASH] = ACTIONS(7561), + [anon_sym_PERCENT] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_AMP_AMP] = ACTIONS(7563), + [anon_sym_PIPE] = ACTIONS(7561), + [anon_sym_CARET] = ACTIONS(7561), + [anon_sym_AMP] = ACTIONS(7561), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_GT] = ACTIONS(7561), + [anon_sym_GT_EQ] = ACTIONS(7563), + [anon_sym_LT_EQ] = ACTIONS(7561), + [anon_sym_LT] = ACTIONS(7561), + [anon_sym_LT_LT] = ACTIONS(7561), + [anon_sym_GT_GT] = ACTIONS(7561), + [anon_sym___extension__] = ACTIONS(7563), + [anon_sym_LBRACE] = ACTIONS(7563), + [anon_sym_LBRACK] = ACTIONS(7563), + [anon_sym_EQ] = ACTIONS(7561), + [anon_sym_const] = ACTIONS(7561), + [anon_sym_constexpr] = ACTIONS(7563), + [anon_sym_volatile] = ACTIONS(7563), + [anon_sym_restrict] = ACTIONS(7563), + [anon_sym___restrict__] = ACTIONS(7563), + [anon_sym__Atomic] = ACTIONS(7563), + [anon_sym__Noreturn] = ACTIONS(7563), + [anon_sym_noreturn] = ACTIONS(7563), + [anon_sym__Nonnull] = ACTIONS(7563), + [anon_sym_mutable] = ACTIONS(7563), + [anon_sym_constinit] = ACTIONS(7563), + [anon_sym_consteval] = ACTIONS(7563), + [anon_sym_alignas] = ACTIONS(7563), + [anon_sym__Alignas] = ACTIONS(7563), + [anon_sym_QMARK] = ACTIONS(7563), + [anon_sym_STAR_EQ] = ACTIONS(7563), + [anon_sym_SLASH_EQ] = ACTIONS(7563), + [anon_sym_PERCENT_EQ] = ACTIONS(7563), + [anon_sym_PLUS_EQ] = ACTIONS(7563), + [anon_sym_DASH_EQ] = ACTIONS(7563), + [anon_sym_LT_LT_EQ] = ACTIONS(7563), + [anon_sym_GT_GT_EQ] = ACTIONS(7563), + [anon_sym_AMP_EQ] = ACTIONS(7563), + [anon_sym_CARET_EQ] = ACTIONS(7563), + [anon_sym_PIPE_EQ] = ACTIONS(7563), + [anon_sym_and_eq] = ACTIONS(7563), + [anon_sym_or_eq] = ACTIONS(7563), + [anon_sym_xor_eq] = ACTIONS(7563), + [anon_sym_LT_EQ_GT] = ACTIONS(7563), + [anon_sym_or] = ACTIONS(7561), + [anon_sym_and] = ACTIONS(7561), + [anon_sym_bitor] = ACTIONS(7563), + [anon_sym_xor] = ACTIONS(7561), + [anon_sym_bitand] = ACTIONS(7563), + [anon_sym_not_eq] = ACTIONS(7563), + [anon_sym_DASH_DASH] = ACTIONS(7563), + [anon_sym_PLUS_PLUS] = ACTIONS(7563), + [anon_sym_DOT] = ACTIONS(7561), + [anon_sym_DOT_STAR] = ACTIONS(7563), + [anon_sym_DASH_GT] = ACTIONS(7561), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7563), + [anon_sym_override] = ACTIONS(7563), + [anon_sym_requires] = ACTIONS(7563), + [anon_sym_DASH_GT_STAR] = ACTIONS(7563), }, - [STATE(3469)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3426), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7241), - [anon_sym_COMMA] = ACTIONS(7241), - [anon_sym_RPAREN] = ACTIONS(7241), - [anon_sym_LPAREN2] = ACTIONS(7241), - [anon_sym_DASH] = ACTIONS(7239), - [anon_sym_PLUS] = ACTIONS(7239), - [anon_sym_STAR] = ACTIONS(7241), - [anon_sym_SLASH] = ACTIONS(7239), - [anon_sym_PERCENT] = ACTIONS(7241), - [anon_sym_PIPE_PIPE] = ACTIONS(7241), - [anon_sym_AMP_AMP] = ACTIONS(7241), - [anon_sym_PIPE] = ACTIONS(7239), - [anon_sym_CARET] = ACTIONS(7241), - [anon_sym_AMP] = ACTIONS(7239), - [anon_sym_EQ_EQ] = ACTIONS(7241), - [anon_sym_BANG_EQ] = ACTIONS(7241), - [anon_sym_GT] = ACTIONS(7239), - [anon_sym_GT_EQ] = ACTIONS(7241), - [anon_sym_LT_EQ] = ACTIONS(7239), - [anon_sym_LT] = ACTIONS(7239), - [anon_sym_LT_LT] = ACTIONS(7241), - [anon_sym_GT_GT] = ACTIONS(7241), - [anon_sym_SEMI] = ACTIONS(7241), - [anon_sym___extension__] = ACTIONS(7241), - [anon_sym___attribute__] = ACTIONS(7241), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_COLON] = ACTIONS(7239), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7241), - [anon_sym_LBRACE] = ACTIONS(7241), - [anon_sym_RBRACE] = ACTIONS(7241), - [anon_sym_signed] = ACTIONS(8901), - [anon_sym_unsigned] = ACTIONS(8901), - [anon_sym_long] = ACTIONS(8901), - [anon_sym_short] = ACTIONS(8901), - [anon_sym_LBRACK] = ACTIONS(7241), - [anon_sym_const] = ACTIONS(7239), - [anon_sym_constexpr] = ACTIONS(7241), - [anon_sym_volatile] = ACTIONS(7241), - [anon_sym_restrict] = ACTIONS(7241), - [anon_sym___restrict__] = ACTIONS(7241), - [anon_sym__Atomic] = ACTIONS(7241), - [anon_sym__Noreturn] = ACTIONS(7241), - [anon_sym_noreturn] = ACTIONS(7241), - [anon_sym__Nonnull] = ACTIONS(7241), - [anon_sym_mutable] = ACTIONS(7241), - [anon_sym_constinit] = ACTIONS(7241), - [anon_sym_consteval] = ACTIONS(7241), - [anon_sym_alignas] = ACTIONS(7241), - [anon_sym__Alignas] = ACTIONS(7241), - [anon_sym_QMARK] = ACTIONS(7241), - [anon_sym_LT_EQ_GT] = ACTIONS(7241), - [anon_sym_or] = ACTIONS(7241), - [anon_sym_and] = ACTIONS(7241), - [anon_sym_bitor] = ACTIONS(7241), - [anon_sym_xor] = ACTIONS(7241), - [anon_sym_bitand] = ACTIONS(7241), - [anon_sym_not_eq] = ACTIONS(7241), - [anon_sym_DASH_DASH] = ACTIONS(7241), - [anon_sym_PLUS_PLUS] = ACTIONS(7241), - [anon_sym_DOT] = ACTIONS(7239), - [anon_sym_DOT_STAR] = ACTIONS(7241), - [anon_sym_DASH_GT] = ACTIONS(7241), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7241), - [anon_sym_override] = ACTIONS(7241), - [anon_sym_requires] = ACTIONS(7241), - [anon_sym_COLON_RBRACK] = ACTIONS(7241), + [STATE(2983)] = { + [sym_identifier] = ACTIONS(8921), + [anon_sym_LPAREN2] = ACTIONS(8923), + [anon_sym_TILDE] = ACTIONS(8923), + [anon_sym_STAR] = ACTIONS(8923), + [anon_sym_PIPE_PIPE] = ACTIONS(8923), + [anon_sym_AMP_AMP] = ACTIONS(8923), + [anon_sym_AMP] = ACTIONS(8921), + [anon_sym___extension__] = ACTIONS(8921), + [anon_sym_virtual] = ACTIONS(8921), + [anon_sym_extern] = ACTIONS(8921), + [anon_sym___attribute__] = ACTIONS(8921), + [anon_sym___attribute] = ACTIONS(8921), + [anon_sym_using] = ACTIONS(8921), + [anon_sym_COLON_COLON] = ACTIONS(8923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8923), + [anon_sym___declspec] = ACTIONS(8921), + [anon_sym___based] = ACTIONS(8921), + [anon_sym___cdecl] = ACTIONS(8921), + [anon_sym___clrcall] = ACTIONS(8921), + [anon_sym___stdcall] = ACTIONS(8921), + [anon_sym___fastcall] = ACTIONS(8921), + [anon_sym___thiscall] = ACTIONS(8921), + [anon_sym___vectorcall] = ACTIONS(8921), + [anon_sym_LBRACE] = ACTIONS(8923), + [anon_sym_signed] = ACTIONS(8921), + [anon_sym_unsigned] = ACTIONS(8921), + [anon_sym_long] = ACTIONS(8921), + [anon_sym_short] = ACTIONS(8921), + [anon_sym_LBRACK] = ACTIONS(8921), + [anon_sym_static] = ACTIONS(8921), + [anon_sym_register] = ACTIONS(8921), + [anon_sym_inline] = ACTIONS(8921), + [anon_sym___inline] = ACTIONS(8921), + [anon_sym___inline__] = ACTIONS(8921), + [anon_sym___forceinline] = ACTIONS(8921), + [anon_sym_thread_local] = ACTIONS(8921), + [anon_sym___thread] = ACTIONS(8921), + [anon_sym_const] = ACTIONS(8921), + [anon_sym_constexpr] = ACTIONS(8921), + [anon_sym_volatile] = ACTIONS(8921), + [anon_sym_restrict] = ACTIONS(8921), + [anon_sym___restrict__] = ACTIONS(8921), + [anon_sym__Atomic] = ACTIONS(8921), + [anon_sym__Noreturn] = ACTIONS(8921), + [anon_sym_noreturn] = ACTIONS(8921), + [anon_sym__Nonnull] = ACTIONS(8921), + [anon_sym_mutable] = ACTIONS(8921), + [anon_sym_constinit] = ACTIONS(8921), + [anon_sym_consteval] = ACTIONS(8921), + [anon_sym_alignas] = ACTIONS(8921), + [anon_sym__Alignas] = ACTIONS(8921), + [sym_primitive_type] = ACTIONS(8921), + [anon_sym_enum] = ACTIONS(8921), + [anon_sym_class] = ACTIONS(8921), + [anon_sym_struct] = ACTIONS(8921), + [anon_sym_union] = ACTIONS(8921), + [anon_sym_or] = ACTIONS(8921), + [anon_sym_and] = ACTIONS(8921), + [anon_sym_typename] = ACTIONS(8921), + [anon_sym_DASH_GT] = ACTIONS(8923), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8921), + [anon_sym_decltype] = ACTIONS(8921), + [anon_sym_explicit] = ACTIONS(8921), + [anon_sym_template] = ACTIONS(8921), + [anon_sym_operator] = ACTIONS(8921), + [anon_sym_friend] = ACTIONS(8921), + [anon_sym_noexcept] = ACTIONS(8921), + [anon_sym_throw] = ACTIONS(8921), + [anon_sym_concept] = ACTIONS(8921), + [anon_sym_LBRACK_COLON] = ACTIONS(8923), }, - [STATE(3470)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7251), - [anon_sym_COMMA] = ACTIONS(7251), - [anon_sym_RPAREN] = ACTIONS(7251), - [anon_sym_LPAREN2] = ACTIONS(7251), - [anon_sym_DASH] = ACTIONS(7249), - [anon_sym_PLUS] = ACTIONS(7249), - [anon_sym_STAR] = ACTIONS(7251), - [anon_sym_SLASH] = ACTIONS(7249), - [anon_sym_PERCENT] = ACTIONS(7251), - [anon_sym_PIPE_PIPE] = ACTIONS(7251), - [anon_sym_AMP_AMP] = ACTIONS(7251), - [anon_sym_PIPE] = ACTIONS(7249), - [anon_sym_CARET] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7249), - [anon_sym_EQ_EQ] = ACTIONS(7251), - [anon_sym_BANG_EQ] = ACTIONS(7251), - [anon_sym_GT] = ACTIONS(7249), - [anon_sym_GT_EQ] = ACTIONS(7251), - [anon_sym_LT_EQ] = ACTIONS(7249), - [anon_sym_LT] = ACTIONS(7249), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_GT_GT] = ACTIONS(7251), - [anon_sym_SEMI] = ACTIONS(7251), - [anon_sym___extension__] = ACTIONS(7251), - [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7249), - [anon_sym_COLON] = ACTIONS(7249), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7251), - [anon_sym_LBRACE] = ACTIONS(7251), - [anon_sym_RBRACE] = ACTIONS(7251), - [anon_sym_signed] = ACTIONS(8875), - [anon_sym_unsigned] = ACTIONS(8875), - [anon_sym_long] = ACTIONS(8875), - [anon_sym_short] = ACTIONS(8875), - [anon_sym_LBRACK] = ACTIONS(7251), - [anon_sym_const] = ACTIONS(7249), - [anon_sym_constexpr] = ACTIONS(7251), - [anon_sym_volatile] = ACTIONS(7251), - [anon_sym_restrict] = ACTIONS(7251), - [anon_sym___restrict__] = ACTIONS(7251), - [anon_sym__Atomic] = ACTIONS(7251), - [anon_sym__Noreturn] = ACTIONS(7251), - [anon_sym_noreturn] = ACTIONS(7251), - [anon_sym__Nonnull] = ACTIONS(7251), - [anon_sym_mutable] = ACTIONS(7251), - [anon_sym_constinit] = ACTIONS(7251), - [anon_sym_consteval] = ACTIONS(7251), - [anon_sym_alignas] = ACTIONS(7251), - [anon_sym__Alignas] = ACTIONS(7251), - [anon_sym_QMARK] = ACTIONS(7251), - [anon_sym_LT_EQ_GT] = ACTIONS(7251), - [anon_sym_or] = ACTIONS(7251), - [anon_sym_and] = ACTIONS(7251), - [anon_sym_bitor] = ACTIONS(7251), - [anon_sym_xor] = ACTIONS(7251), - [anon_sym_bitand] = ACTIONS(7251), - [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7251), - [anon_sym_PLUS_PLUS] = ACTIONS(7251), - [anon_sym_DOT] = ACTIONS(7249), - [anon_sym_DOT_STAR] = ACTIONS(7251), - [anon_sym_DASH_GT] = ACTIONS(7251), + [STATE(2984)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7223), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7223), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7251), - [anon_sym_override] = ACTIONS(7251), - [anon_sym_requires] = ACTIONS(7251), - [anon_sym_COLON_RBRACK] = ACTIONS(7251), - }, - [STATE(3471)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7339), - [anon_sym_COMMA] = ACTIONS(7339), - [anon_sym_RPAREN] = ACTIONS(7339), - [anon_sym_LPAREN2] = ACTIONS(7339), - [anon_sym_DASH] = ACTIONS(7337), - [anon_sym_PLUS] = ACTIONS(7337), - [anon_sym_STAR] = ACTIONS(7337), - [anon_sym_SLASH] = ACTIONS(7337), - [anon_sym_PERCENT] = ACTIONS(7337), - [anon_sym_PIPE_PIPE] = ACTIONS(7339), - [anon_sym_AMP_AMP] = ACTIONS(7339), - [anon_sym_PIPE] = ACTIONS(7337), - [anon_sym_CARET] = ACTIONS(7337), - [anon_sym_AMP] = ACTIONS(7337), - [anon_sym_EQ_EQ] = ACTIONS(7339), - [anon_sym_BANG_EQ] = ACTIONS(7339), - [anon_sym_GT] = ACTIONS(7337), - [anon_sym_GT_EQ] = ACTIONS(7339), - [anon_sym_LT_EQ] = ACTIONS(7337), - [anon_sym_LT] = ACTIONS(7337), - [anon_sym_LT_LT] = ACTIONS(7337), - [anon_sym_GT_GT] = ACTIONS(7337), - [anon_sym___extension__] = ACTIONS(7339), - [anon_sym_LBRACE] = ACTIONS(7339), - [anon_sym_LBRACK] = ACTIONS(7339), - [anon_sym_EQ] = ACTIONS(7337), - [anon_sym_const] = ACTIONS(7337), - [anon_sym_constexpr] = ACTIONS(7339), - [anon_sym_volatile] = ACTIONS(7339), - [anon_sym_restrict] = ACTIONS(7339), - [anon_sym___restrict__] = ACTIONS(7339), - [anon_sym__Atomic] = ACTIONS(7339), - [anon_sym__Noreturn] = ACTIONS(7339), - [anon_sym_noreturn] = ACTIONS(7339), - [anon_sym__Nonnull] = ACTIONS(7339), - [anon_sym_mutable] = ACTIONS(7339), - [anon_sym_constinit] = ACTIONS(7339), - [anon_sym_consteval] = ACTIONS(7339), - [anon_sym_alignas] = ACTIONS(7339), - [anon_sym__Alignas] = ACTIONS(7339), - [anon_sym_QMARK] = ACTIONS(7339), - [anon_sym_STAR_EQ] = ACTIONS(7339), - [anon_sym_SLASH_EQ] = ACTIONS(7339), - [anon_sym_PERCENT_EQ] = ACTIONS(7339), - [anon_sym_PLUS_EQ] = ACTIONS(7339), - [anon_sym_DASH_EQ] = ACTIONS(7339), - [anon_sym_LT_LT_EQ] = ACTIONS(7339), - [anon_sym_GT_GT_EQ] = ACTIONS(7339), - [anon_sym_AMP_EQ] = ACTIONS(7339), - [anon_sym_CARET_EQ] = ACTIONS(7339), - [anon_sym_PIPE_EQ] = ACTIONS(7339), - [anon_sym_LT_EQ_GT] = ACTIONS(7339), - [anon_sym_or] = ACTIONS(7339), - [anon_sym_and] = ACTIONS(7339), - [anon_sym_bitor] = ACTIONS(7339), - [anon_sym_xor] = ACTIONS(7339), - [anon_sym_bitand] = ACTIONS(7339), - [anon_sym_not_eq] = ACTIONS(7339), - [anon_sym_DASH_DASH] = ACTIONS(7339), - [anon_sym_PLUS_PLUS] = ACTIONS(7339), - [anon_sym_DOT] = ACTIONS(7337), - [anon_sym_DOT_STAR] = ACTIONS(7339), - [anon_sym_DASH_GT] = ACTIONS(7337), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7339), - [anon_sym_override] = ACTIONS(7339), - [anon_sym_requires] = ACTIONS(7339), - [anon_sym_DASH_GT_STAR] = ACTIONS(7339), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_GT2] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), }, - [STATE(3472)] = { - [sym_argument_list] = STATE(3847), - [sym_initializer_list] = STATE(3847), - [sym_new_declarator] = STATE(3507), - [sym_identifier] = ACTIONS(8903), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8905), - [anon_sym_COMMA] = ACTIONS(8905), - [anon_sym_RPAREN] = ACTIONS(8905), - [aux_sym_preproc_if_token2] = ACTIONS(8905), - [aux_sym_preproc_else_token1] = ACTIONS(8905), - [aux_sym_preproc_elif_token1] = ACTIONS(8903), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8905), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8905), - [anon_sym_LPAREN2] = ACTIONS(8808), - [anon_sym_DASH] = ACTIONS(8903), - [anon_sym_PLUS] = ACTIONS(8903), - [anon_sym_STAR] = ACTIONS(8903), - [anon_sym_SLASH] = ACTIONS(8903), - [anon_sym_PERCENT] = ACTIONS(8903), - [anon_sym_PIPE_PIPE] = ACTIONS(8905), - [anon_sym_AMP_AMP] = ACTIONS(8905), - [anon_sym_PIPE] = ACTIONS(8903), - [anon_sym_CARET] = ACTIONS(8903), - [anon_sym_AMP] = ACTIONS(8903), - [anon_sym_EQ_EQ] = ACTIONS(8905), - [anon_sym_BANG_EQ] = ACTIONS(8905), - [anon_sym_GT] = ACTIONS(8903), - [anon_sym_GT_EQ] = ACTIONS(8905), - [anon_sym_LT_EQ] = ACTIONS(8903), - [anon_sym_LT] = ACTIONS(8903), - [anon_sym_LT_LT] = ACTIONS(8903), - [anon_sym_GT_GT] = ACTIONS(8903), - [anon_sym_SEMI] = ACTIONS(8905), - [anon_sym___attribute__] = ACTIONS(8903), - [anon_sym___attribute] = ACTIONS(8903), - [anon_sym_COLON] = ACTIONS(8903), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8905), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_RBRACE] = ACTIONS(8905), - [anon_sym_LBRACK] = ACTIONS(8810), - [anon_sym_EQ] = ACTIONS(8903), - [anon_sym_QMARK] = ACTIONS(8905), - [anon_sym_STAR_EQ] = ACTIONS(8905), - [anon_sym_SLASH_EQ] = ACTIONS(8905), - [anon_sym_PERCENT_EQ] = ACTIONS(8905), - [anon_sym_PLUS_EQ] = ACTIONS(8905), - [anon_sym_DASH_EQ] = ACTIONS(8905), - [anon_sym_LT_LT_EQ] = ACTIONS(8905), - [anon_sym_GT_GT_EQ] = ACTIONS(8905), - [anon_sym_AMP_EQ] = ACTIONS(8905), - [anon_sym_CARET_EQ] = ACTIONS(8905), - [anon_sym_PIPE_EQ] = ACTIONS(8905), - [anon_sym_and_eq] = ACTIONS(8903), - [anon_sym_or_eq] = ACTIONS(8903), - [anon_sym_xor_eq] = ACTIONS(8903), - [anon_sym_LT_EQ_GT] = ACTIONS(8905), - [anon_sym_or] = ACTIONS(8903), - [anon_sym_and] = ACTIONS(8903), - [anon_sym_bitor] = ACTIONS(8903), - [anon_sym_xor] = ACTIONS(8903), - [anon_sym_bitand] = ACTIONS(8903), - [anon_sym_not_eq] = ACTIONS(8903), - [anon_sym_DASH_DASH] = ACTIONS(8905), - [anon_sym_PLUS_PLUS] = ACTIONS(8905), - [anon_sym_DOT] = ACTIONS(8903), - [anon_sym_DOT_STAR] = ACTIONS(8905), - [anon_sym_DASH_GT] = ACTIONS(8905), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(8905), + [STATE(2985)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_RPAREN] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6605), + [anon_sym_PLUS] = ACTIONS(6605), + [anon_sym_STAR] = ACTIONS(6605), + [anon_sym_SLASH] = ACTIONS(6605), + [anon_sym_PERCENT] = ACTIONS(6605), + [anon_sym_PIPE_PIPE] = ACTIONS(6598), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6605), + [anon_sym_CARET] = ACTIONS(6605), + [anon_sym_AMP] = ACTIONS(6605), + [anon_sym_EQ_EQ] = ACTIONS(6598), + [anon_sym_BANG_EQ] = ACTIONS(6598), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6598), + [anon_sym_LT_EQ] = ACTIONS(6605), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6605), + [anon_sym_GT_GT] = ACTIONS(6605), + [anon_sym___extension__] = ACTIONS(6601), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_LBRACK] = ACTIONS(6598), + [anon_sym_EQ] = ACTIONS(6605), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6601), + [anon_sym_volatile] = ACTIONS(6601), + [anon_sym_restrict] = ACTIONS(6601), + [anon_sym___restrict__] = ACTIONS(6601), + [anon_sym__Atomic] = ACTIONS(6601), + [anon_sym__Noreturn] = ACTIONS(6601), + [anon_sym_noreturn] = ACTIONS(6601), + [anon_sym__Nonnull] = ACTIONS(6601), + [anon_sym_mutable] = ACTIONS(6601), + [anon_sym_constinit] = ACTIONS(6601), + [anon_sym_consteval] = ACTIONS(6601), + [anon_sym_alignas] = ACTIONS(6601), + [anon_sym__Alignas] = ACTIONS(6601), + [anon_sym_QMARK] = ACTIONS(6598), + [anon_sym_STAR_EQ] = ACTIONS(6598), + [anon_sym_SLASH_EQ] = ACTIONS(6598), + [anon_sym_PERCENT_EQ] = ACTIONS(6598), + [anon_sym_PLUS_EQ] = ACTIONS(6598), + [anon_sym_DASH_EQ] = ACTIONS(6598), + [anon_sym_LT_LT_EQ] = ACTIONS(6598), + [anon_sym_GT_GT_EQ] = ACTIONS(6598), + [anon_sym_AMP_EQ] = ACTIONS(6598), + [anon_sym_CARET_EQ] = ACTIONS(6598), + [anon_sym_PIPE_EQ] = ACTIONS(6598), + [anon_sym_and_eq] = ACTIONS(6598), + [anon_sym_or_eq] = ACTIONS(6598), + [anon_sym_xor_eq] = ACTIONS(6598), + [anon_sym_LT_EQ_GT] = ACTIONS(6598), + [anon_sym_or] = ACTIONS(6605), + [anon_sym_and] = ACTIONS(6605), + [anon_sym_bitor] = ACTIONS(6598), + [anon_sym_xor] = ACTIONS(6605), + [anon_sym_bitand] = ACTIONS(6598), + [anon_sym_not_eq] = ACTIONS(6598), + [anon_sym_DASH_DASH] = ACTIONS(6598), + [anon_sym_PLUS_PLUS] = ACTIONS(6598), + [anon_sym_DOT] = ACTIONS(6605), + [anon_sym_DOT_STAR] = ACTIONS(6598), + [anon_sym_DASH_GT] = ACTIONS(6605), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6601), + [anon_sym_decltype] = ACTIONS(6601), + [anon_sym_DASH_GT_STAR] = ACTIONS(6598), }, - [STATE(3473)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_RPAREN] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(7343), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(7341), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(7343), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7341), - [anon_sym_AMP] = ACTIONS(7341), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7341), - [anon_sym_GT_GT] = ACTIONS(7341), - [anon_sym___extension__] = ACTIONS(7343), - [anon_sym_LBRACE] = ACTIONS(7343), - [anon_sym_LBRACK] = ACTIONS(7343), - [anon_sym_EQ] = ACTIONS(7341), - [anon_sym_const] = ACTIONS(7341), - [anon_sym_constexpr] = ACTIONS(7343), - [anon_sym_volatile] = ACTIONS(7343), - [anon_sym_restrict] = ACTIONS(7343), - [anon_sym___restrict__] = ACTIONS(7343), - [anon_sym__Atomic] = ACTIONS(7343), - [anon_sym__Noreturn] = ACTIONS(7343), - [anon_sym_noreturn] = ACTIONS(7343), - [anon_sym__Nonnull] = ACTIONS(7343), - [anon_sym_mutable] = ACTIONS(7343), - [anon_sym_constinit] = ACTIONS(7343), - [anon_sym_consteval] = ACTIONS(7343), - [anon_sym_alignas] = ACTIONS(7343), - [anon_sym__Alignas] = ACTIONS(7343), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_STAR_EQ] = ACTIONS(7343), - [anon_sym_SLASH_EQ] = ACTIONS(7343), - [anon_sym_PERCENT_EQ] = ACTIONS(7343), - [anon_sym_PLUS_EQ] = ACTIONS(7343), - [anon_sym_DASH_EQ] = ACTIONS(7343), - [anon_sym_LT_LT_EQ] = ACTIONS(7343), - [anon_sym_GT_GT_EQ] = ACTIONS(7343), - [anon_sym_AMP_EQ] = ACTIONS(7343), - [anon_sym_CARET_EQ] = ACTIONS(7343), - [anon_sym_PIPE_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7343), - [anon_sym_and] = ACTIONS(7343), - [anon_sym_bitor] = ACTIONS(7343), - [anon_sym_xor] = ACTIONS(7343), - [anon_sym_bitand] = ACTIONS(7343), - [anon_sym_not_eq] = ACTIONS(7343), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7341), + [STATE(2986)] = { + [sym_decltype_auto] = STATE(3095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7223), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(7457), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7223), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7343), - [anon_sym_override] = ACTIONS(7343), - [anon_sym_requires] = ACTIONS(7343), - [anon_sym_DASH_GT_STAR] = ACTIONS(7343), + [sym_auto] = ACTIONS(8631), + [anon_sym_decltype] = ACTIONS(7038), + [anon_sym_GT2] = ACTIONS(7225), }, - [STATE(3474)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7347), - [anon_sym_COMMA] = ACTIONS(7347), - [anon_sym_RPAREN] = ACTIONS(7347), - [anon_sym_LPAREN2] = ACTIONS(7347), - [anon_sym_DASH] = ACTIONS(7345), - [anon_sym_PLUS] = ACTIONS(7345), - [anon_sym_STAR] = ACTIONS(7345), - [anon_sym_SLASH] = ACTIONS(7345), - [anon_sym_PERCENT] = ACTIONS(7345), - [anon_sym_PIPE_PIPE] = ACTIONS(7347), - [anon_sym_AMP_AMP] = ACTIONS(7347), - [anon_sym_PIPE] = ACTIONS(7345), - [anon_sym_CARET] = ACTIONS(7345), - [anon_sym_AMP] = ACTIONS(7345), - [anon_sym_EQ_EQ] = ACTIONS(7347), - [anon_sym_BANG_EQ] = ACTIONS(7347), - [anon_sym_GT] = ACTIONS(7345), - [anon_sym_GT_EQ] = ACTIONS(7347), - [anon_sym_LT_EQ] = ACTIONS(7345), - [anon_sym_LT] = ACTIONS(7345), - [anon_sym_LT_LT] = ACTIONS(7345), - [anon_sym_GT_GT] = ACTIONS(7345), - [anon_sym___extension__] = ACTIONS(7347), - [anon_sym_LBRACE] = ACTIONS(7347), - [anon_sym_LBRACK] = ACTIONS(7347), - [anon_sym_EQ] = ACTIONS(7345), - [anon_sym_const] = ACTIONS(7345), - [anon_sym_constexpr] = ACTIONS(7347), - [anon_sym_volatile] = ACTIONS(7347), - [anon_sym_restrict] = ACTIONS(7347), - [anon_sym___restrict__] = ACTIONS(7347), - [anon_sym__Atomic] = ACTIONS(7347), - [anon_sym__Noreturn] = ACTIONS(7347), - [anon_sym_noreturn] = ACTIONS(7347), - [anon_sym__Nonnull] = ACTIONS(7347), - [anon_sym_mutable] = ACTIONS(7347), - [anon_sym_constinit] = ACTIONS(7347), - [anon_sym_consteval] = ACTIONS(7347), - [anon_sym_alignas] = ACTIONS(7347), - [anon_sym__Alignas] = ACTIONS(7347), - [anon_sym_QMARK] = ACTIONS(7347), - [anon_sym_STAR_EQ] = ACTIONS(7347), - [anon_sym_SLASH_EQ] = ACTIONS(7347), - [anon_sym_PERCENT_EQ] = ACTIONS(7347), - [anon_sym_PLUS_EQ] = ACTIONS(7347), - [anon_sym_DASH_EQ] = ACTIONS(7347), - [anon_sym_LT_LT_EQ] = ACTIONS(7347), - [anon_sym_GT_GT_EQ] = ACTIONS(7347), - [anon_sym_AMP_EQ] = ACTIONS(7347), - [anon_sym_CARET_EQ] = ACTIONS(7347), - [anon_sym_PIPE_EQ] = ACTIONS(7347), - [anon_sym_LT_EQ_GT] = ACTIONS(7347), - [anon_sym_or] = ACTIONS(7347), - [anon_sym_and] = ACTIONS(7347), - [anon_sym_bitor] = ACTIONS(7347), - [anon_sym_xor] = ACTIONS(7347), - [anon_sym_bitand] = ACTIONS(7347), - [anon_sym_not_eq] = ACTIONS(7347), - [anon_sym_DASH_DASH] = ACTIONS(7347), - [anon_sym_PLUS_PLUS] = ACTIONS(7347), - [anon_sym_DOT] = ACTIONS(7345), - [anon_sym_DOT_STAR] = ACTIONS(7347), - [anon_sym_DASH_GT] = ACTIONS(7345), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7347), - [anon_sym_override] = ACTIONS(7347), - [anon_sym_requires] = ACTIONS(7347), - [anon_sym_DASH_GT_STAR] = ACTIONS(7347), + [STATE(2987)] = { + [sym_attribute_specifier] = STATE(4179), + [sym_attribute_declaration] = STATE(4554), + [sym_gnu_asm_expression] = STATE(9153), + [sym_virtual_specifier] = STATE(4653), + [sym__function_attributes_end] = STATE(4364), + [sym__function_postfix] = STATE(5121), + [sym_trailing_return_type] = STATE(4534), + [sym_requires_clause] = STATE(5121), + [aux_sym_type_definition_repeat1] = STATE(4179), + [aux_sym_attributed_declarator_repeat1] = STATE(4554), + [aux_sym__function_postfix_repeat1] = STATE(4653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym___attribute__] = ACTIONS(6719), + [anon_sym___attribute] = ACTIONS(6721), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_RBRACK] = ACTIONS(7966), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7966), + [anon_sym_or_eq] = ACTIONS(7966), + [anon_sym_xor_eq] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(8440), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6742), + [anon_sym_override] = ACTIONS(6742), + [anon_sym_requires] = ACTIONS(6744), }, - [STATE(3475)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7353), - [anon_sym_COMMA] = ACTIONS(7353), - [anon_sym_RPAREN] = ACTIONS(7353), - [anon_sym_LPAREN2] = ACTIONS(7353), - [anon_sym_DASH] = ACTIONS(7351), - [anon_sym_PLUS] = ACTIONS(7351), - [anon_sym_STAR] = ACTIONS(7351), - [anon_sym_SLASH] = ACTIONS(7351), - [anon_sym_PERCENT] = ACTIONS(7351), - [anon_sym_PIPE_PIPE] = ACTIONS(7353), - [anon_sym_AMP_AMP] = ACTIONS(7353), - [anon_sym_PIPE] = ACTIONS(7351), - [anon_sym_CARET] = ACTIONS(7351), - [anon_sym_AMP] = ACTIONS(7351), - [anon_sym_EQ_EQ] = ACTIONS(7353), - [anon_sym_BANG_EQ] = ACTIONS(7353), - [anon_sym_GT] = ACTIONS(7351), - [anon_sym_GT_EQ] = ACTIONS(7353), - [anon_sym_LT_EQ] = ACTIONS(7351), - [anon_sym_LT] = ACTIONS(7351), - [anon_sym_LT_LT] = ACTIONS(7351), - [anon_sym_GT_GT] = ACTIONS(7351), - [anon_sym___extension__] = ACTIONS(7353), - [anon_sym_LBRACE] = ACTIONS(7353), - [anon_sym_LBRACK] = ACTIONS(7353), - [anon_sym_EQ] = ACTIONS(7351), - [anon_sym_const] = ACTIONS(7351), - [anon_sym_constexpr] = ACTIONS(7353), - [anon_sym_volatile] = ACTIONS(7353), - [anon_sym_restrict] = ACTIONS(7353), - [anon_sym___restrict__] = ACTIONS(7353), - [anon_sym__Atomic] = ACTIONS(7353), - [anon_sym__Noreturn] = ACTIONS(7353), - [anon_sym_noreturn] = ACTIONS(7353), - [anon_sym__Nonnull] = ACTIONS(7353), - [anon_sym_mutable] = ACTIONS(7353), - [anon_sym_constinit] = ACTIONS(7353), - [anon_sym_consteval] = ACTIONS(7353), - [anon_sym_alignas] = ACTIONS(7353), - [anon_sym__Alignas] = ACTIONS(7353), - [anon_sym_QMARK] = ACTIONS(7353), - [anon_sym_STAR_EQ] = ACTIONS(7353), - [anon_sym_SLASH_EQ] = ACTIONS(7353), - [anon_sym_PERCENT_EQ] = ACTIONS(7353), - [anon_sym_PLUS_EQ] = ACTIONS(7353), - [anon_sym_DASH_EQ] = ACTIONS(7353), - [anon_sym_LT_LT_EQ] = ACTIONS(7353), - [anon_sym_GT_GT_EQ] = ACTIONS(7353), - [anon_sym_AMP_EQ] = ACTIONS(7353), - [anon_sym_CARET_EQ] = ACTIONS(7353), - [anon_sym_PIPE_EQ] = ACTIONS(7353), - [anon_sym_LT_EQ_GT] = ACTIONS(7353), - [anon_sym_or] = ACTIONS(7353), - [anon_sym_and] = ACTIONS(7353), - [anon_sym_bitor] = ACTIONS(7353), - [anon_sym_xor] = ACTIONS(7353), - [anon_sym_bitand] = ACTIONS(7353), - [anon_sym_not_eq] = ACTIONS(7353), - [anon_sym_DASH_DASH] = ACTIONS(7353), - [anon_sym_PLUS_PLUS] = ACTIONS(7353), - [anon_sym_DOT] = ACTIONS(7351), - [anon_sym_DOT_STAR] = ACTIONS(7353), - [anon_sym_DASH_GT] = ACTIONS(7351), + [STATE(2988)] = { + [sym_string_literal] = STATE(4105), + [sym_template_argument_list] = STATE(5616), + [sym_raw_string_literal] = STATE(4105), + [sym_identifier] = ACTIONS(5645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [aux_sym_preproc_if_token2] = ACTIONS(5638), + [aux_sym_preproc_else_token1] = ACTIONS(5638), + [aux_sym_preproc_elif_token1] = ACTIONS(5645), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5638), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(8925), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(6807), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(6809), + [anon_sym_SLASH_EQ] = ACTIONS(6809), + [anon_sym_PERCENT_EQ] = ACTIONS(6809), + [anon_sym_PLUS_EQ] = ACTIONS(6809), + [anon_sym_DASH_EQ] = ACTIONS(6809), + [anon_sym_LT_LT_EQ] = ACTIONS(6809), + [anon_sym_GT_GT_EQ] = ACTIONS(6809), + [anon_sym_AMP_EQ] = ACTIONS(6809), + [anon_sym_CARET_EQ] = ACTIONS(6809), + [anon_sym_PIPE_EQ] = ACTIONS(6809), + [anon_sym_and_eq] = ACTIONS(6807), + [anon_sym_or_eq] = ACTIONS(6807), + [anon_sym_xor_eq] = ACTIONS(6807), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5645), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5645), + [anon_sym_not_eq] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + }, + [STATE(2989)] = { + [sym_template_argument_list] = STATE(3131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6569), + [anon_sym_COMMA] = ACTIONS(6569), + [anon_sym_LPAREN2] = ACTIONS(6569), + [anon_sym_DASH] = ACTIONS(6576), + [anon_sym_PLUS] = ACTIONS(6576), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(6576), + [anon_sym_PERCENT] = ACTIONS(6576), + [anon_sym_PIPE_PIPE] = ACTIONS(6569), + [anon_sym_AMP_AMP] = ACTIONS(6569), + [anon_sym_PIPE] = ACTIONS(6576), + [anon_sym_CARET] = ACTIONS(6576), + [anon_sym_AMP] = ACTIONS(6576), + [anon_sym_EQ_EQ] = ACTIONS(6569), + [anon_sym_BANG_EQ] = ACTIONS(6569), + [anon_sym_GT] = ACTIONS(6576), + [anon_sym_GT_EQ] = ACTIONS(6569), + [anon_sym_LT_EQ] = ACTIONS(6576), + [anon_sym_LT] = ACTIONS(8917), + [anon_sym_LT_LT] = ACTIONS(6576), + [anon_sym_GT_GT] = ACTIONS(6576), + [anon_sym___extension__] = ACTIONS(6572), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(6572), + [anon_sym_LBRACK] = ACTIONS(6569), + [anon_sym_RBRACK] = ACTIONS(6569), + [anon_sym_EQ] = ACTIONS(6576), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_constexpr] = ACTIONS(6572), + [anon_sym_volatile] = ACTIONS(6572), + [anon_sym_restrict] = ACTIONS(6572), + [anon_sym___restrict__] = ACTIONS(6572), + [anon_sym__Atomic] = ACTIONS(6572), + [anon_sym__Noreturn] = ACTIONS(6572), + [anon_sym_noreturn] = ACTIONS(6572), + [anon_sym__Nonnull] = ACTIONS(6572), + [anon_sym_mutable] = ACTIONS(6572), + [anon_sym_constinit] = ACTIONS(6572), + [anon_sym_consteval] = ACTIONS(6572), + [anon_sym_alignas] = ACTIONS(6572), + [anon_sym__Alignas] = ACTIONS(6572), + [anon_sym_QMARK] = ACTIONS(6569), + [anon_sym_STAR_EQ] = ACTIONS(6569), + [anon_sym_SLASH_EQ] = ACTIONS(6569), + [anon_sym_PERCENT_EQ] = ACTIONS(6569), + [anon_sym_PLUS_EQ] = ACTIONS(6569), + [anon_sym_DASH_EQ] = ACTIONS(6569), + [anon_sym_LT_LT_EQ] = ACTIONS(6569), + [anon_sym_GT_GT_EQ] = ACTIONS(6569), + [anon_sym_AMP_EQ] = ACTIONS(6569), + [anon_sym_CARET_EQ] = ACTIONS(6569), + [anon_sym_PIPE_EQ] = ACTIONS(6569), + [anon_sym_and_eq] = ACTIONS(6569), + [anon_sym_or_eq] = ACTIONS(6569), + [anon_sym_xor_eq] = ACTIONS(6569), + [anon_sym_LT_EQ_GT] = ACTIONS(6569), + [anon_sym_or] = ACTIONS(6576), + [anon_sym_and] = ACTIONS(6576), + [anon_sym_bitor] = ACTIONS(6569), + [anon_sym_xor] = ACTIONS(6576), + [anon_sym_bitand] = ACTIONS(6569), + [anon_sym_not_eq] = ACTIONS(6569), + [anon_sym_DASH_DASH] = ACTIONS(6569), + [anon_sym_PLUS_PLUS] = ACTIONS(6569), + [anon_sym_DOT] = ACTIONS(6576), + [anon_sym_DOT_STAR] = ACTIONS(6569), + [anon_sym_DASH_GT] = ACTIONS(6569), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7353), - [anon_sym_override] = ACTIONS(7353), - [anon_sym_requires] = ACTIONS(7353), - [anon_sym_DASH_GT_STAR] = ACTIONS(7353), + [sym_auto] = ACTIONS(6572), + [anon_sym_decltype] = ACTIONS(6572), }, - [STATE(3476)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7357), - [anon_sym_COMMA] = ACTIONS(7357), - [anon_sym_RPAREN] = ACTIONS(7357), - [anon_sym_LPAREN2] = ACTIONS(7357), - [anon_sym_DASH] = ACTIONS(7355), - [anon_sym_PLUS] = ACTIONS(7355), - [anon_sym_STAR] = ACTIONS(7355), - [anon_sym_SLASH] = ACTIONS(7355), - [anon_sym_PERCENT] = ACTIONS(7355), - [anon_sym_PIPE_PIPE] = ACTIONS(7357), - [anon_sym_AMP_AMP] = ACTIONS(7357), - [anon_sym_PIPE] = ACTIONS(7355), - [anon_sym_CARET] = ACTIONS(7355), - [anon_sym_AMP] = ACTIONS(7355), - [anon_sym_EQ_EQ] = ACTIONS(7357), - [anon_sym_BANG_EQ] = ACTIONS(7357), - [anon_sym_GT] = ACTIONS(7355), - [anon_sym_GT_EQ] = ACTIONS(7357), - [anon_sym_LT_EQ] = ACTIONS(7355), - [anon_sym_LT] = ACTIONS(7355), - [anon_sym_LT_LT] = ACTIONS(7355), - [anon_sym_GT_GT] = ACTIONS(7355), + [STATE(2990)] = { + [sym_template_argument_list] = STATE(3735), + [aux_sym_sized_type_specifier_repeat1] = STATE(3285), + [sym_identifier] = ACTIONS(7357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7359), + [anon_sym_COMMA] = ACTIONS(7359), + [aux_sym_preproc_if_token2] = ACTIONS(7359), + [aux_sym_preproc_else_token1] = ACTIONS(7359), + [aux_sym_preproc_elif_token1] = ACTIONS(7357), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7359), + [anon_sym_LPAREN2] = ACTIONS(7359), + [anon_sym_DASH] = ACTIONS(7357), + [anon_sym_PLUS] = ACTIONS(7357), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7357), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7359), + [anon_sym_AMP_AMP] = ACTIONS(7359), + [anon_sym_PIPE] = ACTIONS(7357), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7357), + [anon_sym_EQ_EQ] = ACTIONS(7359), + [anon_sym_BANG_EQ] = ACTIONS(7359), + [anon_sym_GT] = ACTIONS(7357), + [anon_sym_GT_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ] = ACTIONS(7357), + [anon_sym_LT] = ACTIONS(7357), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), [anon_sym___extension__] = ACTIONS(7357), - [anon_sym_LBRACE] = ACTIONS(7357), - [anon_sym_LBRACK] = ACTIONS(7357), - [anon_sym_EQ] = ACTIONS(7355), - [anon_sym_const] = ACTIONS(7355), + [anon_sym___attribute__] = ACTIONS(7357), + [anon_sym___attribute] = ACTIONS(7357), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(7359), + [anon_sym_signed] = ACTIONS(6805), + [anon_sym_unsigned] = ACTIONS(6805), + [anon_sym_long] = ACTIONS(6805), + [anon_sym_short] = ACTIONS(6805), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_RBRACK] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7357), [anon_sym_constexpr] = ACTIONS(7357), [anon_sym_volatile] = ACTIONS(7357), [anon_sym_restrict] = ACTIONS(7357), @@ -414089,3222 +393036,5427 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(7357), [anon_sym_alignas] = ACTIONS(7357), [anon_sym__Alignas] = ACTIONS(7357), - [anon_sym_QMARK] = ACTIONS(7357), - [anon_sym_STAR_EQ] = ACTIONS(7357), - [anon_sym_SLASH_EQ] = ACTIONS(7357), - [anon_sym_PERCENT_EQ] = ACTIONS(7357), - [anon_sym_PLUS_EQ] = ACTIONS(7357), - [anon_sym_DASH_EQ] = ACTIONS(7357), - [anon_sym_LT_LT_EQ] = ACTIONS(7357), - [anon_sym_GT_GT_EQ] = ACTIONS(7357), - [anon_sym_AMP_EQ] = ACTIONS(7357), - [anon_sym_CARET_EQ] = ACTIONS(7357), - [anon_sym_PIPE_EQ] = ACTIONS(7357), - [anon_sym_LT_EQ_GT] = ACTIONS(7357), + [anon_sym_QMARK] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7359), [anon_sym_or] = ACTIONS(7357), [anon_sym_and] = ACTIONS(7357), [anon_sym_bitor] = ACTIONS(7357), [anon_sym_xor] = ACTIONS(7357), [anon_sym_bitand] = ACTIONS(7357), [anon_sym_not_eq] = ACTIONS(7357), - [anon_sym_DASH_DASH] = ACTIONS(7357), - [anon_sym_PLUS_PLUS] = ACTIONS(7357), - [anon_sym_DOT] = ACTIONS(7355), - [anon_sym_DOT_STAR] = ACTIONS(7357), - [anon_sym_DASH_GT] = ACTIONS(7355), + [anon_sym_DASH_DASH] = ACTIONS(7359), + [anon_sym_PLUS_PLUS] = ACTIONS(7359), + [anon_sym_DOT] = ACTIONS(7357), + [anon_sym_DOT_STAR] = ACTIONS(7359), + [anon_sym_DASH_GT] = ACTIONS(7359), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7357), [anon_sym_override] = ACTIONS(7357), [anon_sym_requires] = ACTIONS(7357), - [anon_sym_DASH_GT_STAR] = ACTIONS(7357), - }, - [STATE(3477)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), - [anon_sym_COMMA] = ACTIONS(7361), - [anon_sym_RPAREN] = ACTIONS(7361), - [anon_sym_LPAREN2] = ACTIONS(7361), - [anon_sym_DASH] = ACTIONS(7359), - [anon_sym_PLUS] = ACTIONS(7359), - [anon_sym_STAR] = ACTIONS(7359), - [anon_sym_SLASH] = ACTIONS(7359), - [anon_sym_PERCENT] = ACTIONS(7359), - [anon_sym_PIPE_PIPE] = ACTIONS(7361), - [anon_sym_AMP_AMP] = ACTIONS(7361), - [anon_sym_PIPE] = ACTIONS(7359), - [anon_sym_CARET] = ACTIONS(7359), - [anon_sym_AMP] = ACTIONS(7359), - [anon_sym_EQ_EQ] = ACTIONS(7361), - [anon_sym_BANG_EQ] = ACTIONS(7361), - [anon_sym_GT] = ACTIONS(7359), - [anon_sym_GT_EQ] = ACTIONS(7361), - [anon_sym_LT_EQ] = ACTIONS(7359), - [anon_sym_LT] = ACTIONS(7359), - [anon_sym_LT_LT] = ACTIONS(7359), - [anon_sym_GT_GT] = ACTIONS(7359), - [anon_sym___extension__] = ACTIONS(7361), - [anon_sym_LBRACE] = ACTIONS(7361), - [anon_sym_LBRACK] = ACTIONS(7361), - [anon_sym_EQ] = ACTIONS(7359), - [anon_sym_const] = ACTIONS(7359), - [anon_sym_constexpr] = ACTIONS(7361), - [anon_sym_volatile] = ACTIONS(7361), - [anon_sym_restrict] = ACTIONS(7361), - [anon_sym___restrict__] = ACTIONS(7361), - [anon_sym__Atomic] = ACTIONS(7361), - [anon_sym__Noreturn] = ACTIONS(7361), - [anon_sym_noreturn] = ACTIONS(7361), - [anon_sym__Nonnull] = ACTIONS(7361), - [anon_sym_mutable] = ACTIONS(7361), - [anon_sym_constinit] = ACTIONS(7361), - [anon_sym_consteval] = ACTIONS(7361), - [anon_sym_alignas] = ACTIONS(7361), - [anon_sym__Alignas] = ACTIONS(7361), - [anon_sym_QMARK] = ACTIONS(7361), - [anon_sym_STAR_EQ] = ACTIONS(7361), - [anon_sym_SLASH_EQ] = ACTIONS(7361), - [anon_sym_PERCENT_EQ] = ACTIONS(7361), - [anon_sym_PLUS_EQ] = ACTIONS(7361), - [anon_sym_DASH_EQ] = ACTIONS(7361), - [anon_sym_LT_LT_EQ] = ACTIONS(7361), - [anon_sym_GT_GT_EQ] = ACTIONS(7361), - [anon_sym_AMP_EQ] = ACTIONS(7361), - [anon_sym_CARET_EQ] = ACTIONS(7361), - [anon_sym_PIPE_EQ] = ACTIONS(7361), - [anon_sym_LT_EQ_GT] = ACTIONS(7361), - [anon_sym_or] = ACTIONS(7361), - [anon_sym_and] = ACTIONS(7361), - [anon_sym_bitor] = ACTIONS(7361), - [anon_sym_xor] = ACTIONS(7361), - [anon_sym_bitand] = ACTIONS(7361), - [anon_sym_not_eq] = ACTIONS(7361), - [anon_sym_DASH_DASH] = ACTIONS(7361), - [anon_sym_PLUS_PLUS] = ACTIONS(7361), - [anon_sym_DOT] = ACTIONS(7359), - [anon_sym_DOT_STAR] = ACTIONS(7361), - [anon_sym_DASH_GT] = ACTIONS(7359), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7361), - [anon_sym_override] = ACTIONS(7361), - [anon_sym_requires] = ACTIONS(7361), - [anon_sym_DASH_GT_STAR] = ACTIONS(7361), - }, - [STATE(3478)] = { - [sym_argument_list] = STATE(5546), - [sym_initializer_list] = STATE(5981), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(8167), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6798), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6798), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6798), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6798), - [anon_sym_GT_GT] = ACTIONS(6798), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_EQ] = ACTIONS(6798), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_STAR_EQ] = ACTIONS(6800), - [anon_sym_SLASH_EQ] = ACTIONS(6800), - [anon_sym_PERCENT_EQ] = ACTIONS(6800), - [anon_sym_PLUS_EQ] = ACTIONS(6800), - [anon_sym_DASH_EQ] = ACTIONS(6800), - [anon_sym_LT_LT_EQ] = ACTIONS(6800), - [anon_sym_GT_GT_EQ] = ACTIONS(6800), - [anon_sym_AMP_EQ] = ACTIONS(6800), - [anon_sym_CARET_EQ] = ACTIONS(6800), - [anon_sym_PIPE_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6800), - [anon_sym_and] = ACTIONS(6800), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6800), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6798), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6800), - }, - [STATE(3479)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), - [anon_sym_COMMA] = ACTIONS(6230), - [anon_sym_RPAREN] = ACTIONS(6230), - [anon_sym_LPAREN2] = ACTIONS(6230), - [anon_sym_DASH] = ACTIONS(6237), - [anon_sym_PLUS] = ACTIONS(6237), - [anon_sym_STAR] = ACTIONS(6237), - [anon_sym_SLASH] = ACTIONS(6237), - [anon_sym_PERCENT] = ACTIONS(6237), - [anon_sym_PIPE_PIPE] = ACTIONS(6230), - [anon_sym_AMP_AMP] = ACTIONS(6230), - [anon_sym_PIPE] = ACTIONS(6237), - [anon_sym_CARET] = ACTIONS(6237), - [anon_sym_AMP] = ACTIONS(6237), - [anon_sym_EQ_EQ] = ACTIONS(6230), - [anon_sym_BANG_EQ] = ACTIONS(6230), - [anon_sym_GT] = ACTIONS(6237), - [anon_sym_GT_EQ] = ACTIONS(6230), - [anon_sym_LT_EQ] = ACTIONS(6237), - [anon_sym_LT] = ACTIONS(6237), - [anon_sym_LT_LT] = ACTIONS(6237), - [anon_sym_GT_GT] = ACTIONS(6237), - [anon_sym___extension__] = ACTIONS(6233), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6230), - [anon_sym_EQ] = ACTIONS(6237), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6233), - [anon_sym_volatile] = ACTIONS(6233), - [anon_sym_restrict] = ACTIONS(6233), - [anon_sym___restrict__] = ACTIONS(6233), - [anon_sym__Atomic] = ACTIONS(6233), - [anon_sym__Noreturn] = ACTIONS(6233), - [anon_sym_noreturn] = ACTIONS(6233), - [anon_sym__Nonnull] = ACTIONS(6233), - [anon_sym_mutable] = ACTIONS(6233), - [anon_sym_constinit] = ACTIONS(6233), - [anon_sym_consteval] = ACTIONS(6233), - [anon_sym_alignas] = ACTIONS(6233), - [anon_sym__Alignas] = ACTIONS(6233), - [anon_sym_QMARK] = ACTIONS(6230), - [anon_sym_STAR_EQ] = ACTIONS(6230), - [anon_sym_SLASH_EQ] = ACTIONS(6230), - [anon_sym_PERCENT_EQ] = ACTIONS(6230), - [anon_sym_PLUS_EQ] = ACTIONS(6230), - [anon_sym_DASH_EQ] = ACTIONS(6230), - [anon_sym_LT_LT_EQ] = ACTIONS(6230), - [anon_sym_GT_GT_EQ] = ACTIONS(6230), - [anon_sym_AMP_EQ] = ACTIONS(6230), - [anon_sym_CARET_EQ] = ACTIONS(6230), - [anon_sym_PIPE_EQ] = ACTIONS(6230), - [anon_sym_LT_EQ_GT] = ACTIONS(6230), - [anon_sym_or] = ACTIONS(6230), - [anon_sym_and] = ACTIONS(6230), - [anon_sym_bitor] = ACTIONS(6230), - [anon_sym_xor] = ACTIONS(6230), - [anon_sym_bitand] = ACTIONS(6230), - [anon_sym_not_eq] = ACTIONS(6230), - [anon_sym_DASH_DASH] = ACTIONS(6230), - [anon_sym_PLUS_PLUS] = ACTIONS(6230), - [anon_sym_DOT] = ACTIONS(6237), - [anon_sym_DOT_STAR] = ACTIONS(6230), - [anon_sym_DASH_GT] = ACTIONS(6237), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6233), - [anon_sym_decltype] = ACTIONS(6233), - [anon_sym_DASH_GT_STAR] = ACTIONS(6230), - }, - [STATE(3480)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7377), - [anon_sym_COMMA] = ACTIONS(7377), - [anon_sym_RPAREN] = ACTIONS(7377), - [anon_sym_LPAREN2] = ACTIONS(7377), - [anon_sym_DASH] = ACTIONS(7375), - [anon_sym_PLUS] = ACTIONS(7375), - [anon_sym_STAR] = ACTIONS(7375), - [anon_sym_SLASH] = ACTIONS(7375), - [anon_sym_PERCENT] = ACTIONS(7375), - [anon_sym_PIPE_PIPE] = ACTIONS(7377), - [anon_sym_AMP_AMP] = ACTIONS(7377), - [anon_sym_PIPE] = ACTIONS(7375), - [anon_sym_CARET] = ACTIONS(7375), - [anon_sym_AMP] = ACTIONS(7375), - [anon_sym_EQ_EQ] = ACTIONS(7377), - [anon_sym_BANG_EQ] = ACTIONS(7377), - [anon_sym_GT] = ACTIONS(7375), - [anon_sym_GT_EQ] = ACTIONS(7377), - [anon_sym_LT_EQ] = ACTIONS(7375), - [anon_sym_LT] = ACTIONS(7375), - [anon_sym_LT_LT] = ACTIONS(7375), - [anon_sym_GT_GT] = ACTIONS(7375), - [anon_sym___extension__] = ACTIONS(7377), - [anon_sym_LBRACE] = ACTIONS(7377), - [anon_sym_LBRACK] = ACTIONS(7377), - [anon_sym_EQ] = ACTIONS(7375), - [anon_sym_const] = ACTIONS(7375), - [anon_sym_constexpr] = ACTIONS(7377), - [anon_sym_volatile] = ACTIONS(7377), - [anon_sym_restrict] = ACTIONS(7377), - [anon_sym___restrict__] = ACTIONS(7377), - [anon_sym__Atomic] = ACTIONS(7377), - [anon_sym__Noreturn] = ACTIONS(7377), - [anon_sym_noreturn] = ACTIONS(7377), - [anon_sym__Nonnull] = ACTIONS(7377), - [anon_sym_mutable] = ACTIONS(7377), - [anon_sym_constinit] = ACTIONS(7377), - [anon_sym_consteval] = ACTIONS(7377), - [anon_sym_alignas] = ACTIONS(7377), - [anon_sym__Alignas] = ACTIONS(7377), - [anon_sym_QMARK] = ACTIONS(7377), - [anon_sym_STAR_EQ] = ACTIONS(7377), - [anon_sym_SLASH_EQ] = ACTIONS(7377), - [anon_sym_PERCENT_EQ] = ACTIONS(7377), - [anon_sym_PLUS_EQ] = ACTIONS(7377), - [anon_sym_DASH_EQ] = ACTIONS(7377), - [anon_sym_LT_LT_EQ] = ACTIONS(7377), - [anon_sym_GT_GT_EQ] = ACTIONS(7377), - [anon_sym_AMP_EQ] = ACTIONS(7377), - [anon_sym_CARET_EQ] = ACTIONS(7377), - [anon_sym_PIPE_EQ] = ACTIONS(7377), - [anon_sym_LT_EQ_GT] = ACTIONS(7377), - [anon_sym_or] = ACTIONS(7377), - [anon_sym_and] = ACTIONS(7377), - [anon_sym_bitor] = ACTIONS(7377), - [anon_sym_xor] = ACTIONS(7377), - [anon_sym_bitand] = ACTIONS(7377), - [anon_sym_not_eq] = ACTIONS(7377), - [anon_sym_DASH_DASH] = ACTIONS(7377), - [anon_sym_PLUS_PLUS] = ACTIONS(7377), - [anon_sym_DOT] = ACTIONS(7375), - [anon_sym_DOT_STAR] = ACTIONS(7377), - [anon_sym_DASH_GT] = ACTIONS(7375), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7377), - [anon_sym_override] = ACTIONS(7377), - [anon_sym_requires] = ACTIONS(7377), - [anon_sym_DASH_GT_STAR] = ACTIONS(7377), }, - [STATE(3481)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7381), - [anon_sym_COMMA] = ACTIONS(7381), - [anon_sym_RPAREN] = ACTIONS(7381), - [anon_sym_LPAREN2] = ACTIONS(7381), - [anon_sym_DASH] = ACTIONS(7379), - [anon_sym_PLUS] = ACTIONS(7379), - [anon_sym_STAR] = ACTIONS(7379), - [anon_sym_SLASH] = ACTIONS(7379), - [anon_sym_PERCENT] = ACTIONS(7379), - [anon_sym_PIPE_PIPE] = ACTIONS(7381), - [anon_sym_AMP_AMP] = ACTIONS(7381), - [anon_sym_PIPE] = ACTIONS(7379), - [anon_sym_CARET] = ACTIONS(7379), - [anon_sym_AMP] = ACTIONS(7379), - [anon_sym_EQ_EQ] = ACTIONS(7381), - [anon_sym_BANG_EQ] = ACTIONS(7381), - [anon_sym_GT] = ACTIONS(7379), - [anon_sym_GT_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ] = ACTIONS(7379), - [anon_sym_LT] = ACTIONS(7379), - [anon_sym_LT_LT] = ACTIONS(7379), - [anon_sym_GT_GT] = ACTIONS(7379), - [anon_sym___extension__] = ACTIONS(7381), - [anon_sym_LBRACE] = ACTIONS(7381), - [anon_sym_LBRACK] = ACTIONS(7381), - [anon_sym_EQ] = ACTIONS(7379), - [anon_sym_const] = ACTIONS(7379), - [anon_sym_constexpr] = ACTIONS(7381), - [anon_sym_volatile] = ACTIONS(7381), - [anon_sym_restrict] = ACTIONS(7381), - [anon_sym___restrict__] = ACTIONS(7381), - [anon_sym__Atomic] = ACTIONS(7381), - [anon_sym__Noreturn] = ACTIONS(7381), - [anon_sym_noreturn] = ACTIONS(7381), - [anon_sym__Nonnull] = ACTIONS(7381), - [anon_sym_mutable] = ACTIONS(7381), - [anon_sym_constinit] = ACTIONS(7381), - [anon_sym_consteval] = ACTIONS(7381), - [anon_sym_alignas] = ACTIONS(7381), - [anon_sym__Alignas] = ACTIONS(7381), - [anon_sym_QMARK] = ACTIONS(7381), - [anon_sym_STAR_EQ] = ACTIONS(7381), - [anon_sym_SLASH_EQ] = ACTIONS(7381), - [anon_sym_PERCENT_EQ] = ACTIONS(7381), - [anon_sym_PLUS_EQ] = ACTIONS(7381), - [anon_sym_DASH_EQ] = ACTIONS(7381), - [anon_sym_LT_LT_EQ] = ACTIONS(7381), - [anon_sym_GT_GT_EQ] = ACTIONS(7381), - [anon_sym_AMP_EQ] = ACTIONS(7381), - [anon_sym_CARET_EQ] = ACTIONS(7381), - [anon_sym_PIPE_EQ] = ACTIONS(7381), - [anon_sym_LT_EQ_GT] = ACTIONS(7381), - [anon_sym_or] = ACTIONS(7381), - [anon_sym_and] = ACTIONS(7381), - [anon_sym_bitor] = ACTIONS(7381), - [anon_sym_xor] = ACTIONS(7381), - [anon_sym_bitand] = ACTIONS(7381), - [anon_sym_not_eq] = ACTIONS(7381), - [anon_sym_DASH_DASH] = ACTIONS(7381), - [anon_sym_PLUS_PLUS] = ACTIONS(7381), - [anon_sym_DOT] = ACTIONS(7379), - [anon_sym_DOT_STAR] = ACTIONS(7381), - [anon_sym_DASH_GT] = ACTIONS(7379), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7381), - [anon_sym_override] = ACTIONS(7381), - [anon_sym_requires] = ACTIONS(7381), - [anon_sym_DASH_GT_STAR] = ACTIONS(7381), + [STATE(2991)] = { + [sym_identifier] = ACTIONS(7473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7475), + [anon_sym_COMMA] = ACTIONS(7475), + [anon_sym_RPAREN] = ACTIONS(7475), + [anon_sym_LPAREN2] = ACTIONS(7475), + [anon_sym_DASH] = ACTIONS(7473), + [anon_sym_PLUS] = ACTIONS(7473), + [anon_sym_STAR] = ACTIONS(7475), + [anon_sym_SLASH] = ACTIONS(7473), + [anon_sym_PERCENT] = ACTIONS(7475), + [anon_sym_PIPE_PIPE] = ACTIONS(7475), + [anon_sym_AMP_AMP] = ACTIONS(7475), + [anon_sym_PIPE] = ACTIONS(7473), + [anon_sym_CARET] = ACTIONS(7475), + [anon_sym_AMP] = ACTIONS(7473), + [anon_sym_EQ_EQ] = ACTIONS(7475), + [anon_sym_BANG_EQ] = ACTIONS(7475), + [anon_sym_GT] = ACTIONS(7473), + [anon_sym_GT_EQ] = ACTIONS(7475), + [anon_sym_LT_EQ] = ACTIONS(7473), + [anon_sym_LT] = ACTIONS(7473), + [anon_sym_LT_LT] = ACTIONS(7475), + [anon_sym_GT_GT] = ACTIONS(7475), + [anon_sym_SEMI] = ACTIONS(7475), + [anon_sym___extension__] = ACTIONS(7473), + [anon_sym___attribute__] = ACTIONS(7473), + [anon_sym___attribute] = ACTIONS(7473), + [anon_sym_COLON] = ACTIONS(7473), + [anon_sym_COLON_COLON] = ACTIONS(7475), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7475), + [anon_sym___based] = ACTIONS(7473), + [anon_sym_LBRACE] = ACTIONS(7475), + [anon_sym_RBRACE] = ACTIONS(7475), + [anon_sym_signed] = ACTIONS(7473), + [anon_sym_unsigned] = ACTIONS(7473), + [anon_sym_long] = ACTIONS(7473), + [anon_sym_short] = ACTIONS(7473), + [anon_sym_LBRACK] = ACTIONS(7475), + [anon_sym_const] = ACTIONS(7473), + [anon_sym_constexpr] = ACTIONS(7473), + [anon_sym_volatile] = ACTIONS(7473), + [anon_sym_restrict] = ACTIONS(7473), + [anon_sym___restrict__] = ACTIONS(7473), + [anon_sym__Atomic] = ACTIONS(7473), + [anon_sym__Noreturn] = ACTIONS(7473), + [anon_sym_noreturn] = ACTIONS(7473), + [anon_sym__Nonnull] = ACTIONS(7473), + [anon_sym_mutable] = ACTIONS(7473), + [anon_sym_constinit] = ACTIONS(7473), + [anon_sym_consteval] = ACTIONS(7473), + [anon_sym_alignas] = ACTIONS(7473), + [anon_sym__Alignas] = ACTIONS(7473), + [sym_primitive_type] = ACTIONS(7473), + [anon_sym_QMARK] = ACTIONS(7475), + [anon_sym_LT_EQ_GT] = ACTIONS(7475), + [anon_sym_or] = ACTIONS(7473), + [anon_sym_and] = ACTIONS(7473), + [anon_sym_bitor] = ACTIONS(7473), + [anon_sym_xor] = ACTIONS(7473), + [anon_sym_bitand] = ACTIONS(7473), + [anon_sym_not_eq] = ACTIONS(7473), + [anon_sym_DASH_DASH] = ACTIONS(7475), + [anon_sym_PLUS_PLUS] = ACTIONS(7475), + [anon_sym_DOT] = ACTIONS(7473), + [anon_sym_DOT_STAR] = ACTIONS(7475), + [anon_sym_DASH_GT] = ACTIONS(7475), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7473), + [anon_sym_override] = ACTIONS(7473), + [anon_sym_requires] = ACTIONS(7473), + [anon_sym_COLON_RBRACK] = ACTIONS(7475), }, - [STATE(3482)] = { - [sym_identifier] = ACTIONS(2768), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2758), - [anon_sym_COMMA] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_LPAREN2] = ACTIONS(2758), - [anon_sym_TILDE] = ACTIONS(2758), - [anon_sym_STAR] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym___extension__] = ACTIONS(2768), - [anon_sym_virtual] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym___attribute__] = ACTIONS(2768), - [anon_sym___attribute] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2758), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2758), - [anon_sym___declspec] = ACTIONS(2768), - [anon_sym___based] = ACTIONS(2768), - [anon_sym___cdecl] = ACTIONS(2768), - [anon_sym___clrcall] = ACTIONS(2768), - [anon_sym___stdcall] = ACTIONS(2768), - [anon_sym___fastcall] = ACTIONS(2768), - [anon_sym___thiscall] = ACTIONS(2768), - [anon_sym___vectorcall] = ACTIONS(2768), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_signed] = ACTIONS(2768), - [anon_sym_unsigned] = ACTIONS(2768), - [anon_sym_long] = ACTIONS(2768), - [anon_sym_short] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_EQ] = ACTIONS(2758), - [anon_sym_register] = ACTIONS(2768), - [anon_sym_inline] = ACTIONS(2768), - [anon_sym___inline] = ACTIONS(2768), - [anon_sym___inline__] = ACTIONS(2768), - [anon_sym___forceinline] = ACTIONS(2768), - [anon_sym_thread_local] = ACTIONS(2768), - [anon_sym___thread] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_constexpr] = ACTIONS(2768), - [anon_sym_volatile] = ACTIONS(2768), - [anon_sym_restrict] = ACTIONS(2768), - [anon_sym___restrict__] = ACTIONS(2768), - [anon_sym__Atomic] = ACTIONS(2768), - [anon_sym__Noreturn] = ACTIONS(2768), - [anon_sym_noreturn] = ACTIONS(2768), - [anon_sym__Nonnull] = ACTIONS(2768), - [anon_sym_mutable] = ACTIONS(2768), - [anon_sym_constinit] = ACTIONS(2768), - [anon_sym_consteval] = ACTIONS(2768), - [anon_sym_alignas] = ACTIONS(2768), - [anon_sym__Alignas] = ACTIONS(2768), - [sym_primitive_type] = ACTIONS(2768), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_typename] = ACTIONS(2768), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2768), - [anon_sym_decltype] = ACTIONS(2768), - [anon_sym_explicit] = ACTIONS(2768), - [anon_sym_template] = ACTIONS(2768), - [anon_sym_GT2] = ACTIONS(2758), - [anon_sym_operator] = ACTIONS(2768), - [anon_sym_LBRACK_COLON] = ACTIONS(2758), + [STATE(2992)] = { + [sym_identifier] = ACTIONS(7104), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7106), + [anon_sym_COMMA] = ACTIONS(7106), + [anon_sym_RPAREN] = ACTIONS(7106), + [anon_sym_LPAREN2] = ACTIONS(7106), + [anon_sym_DASH] = ACTIONS(7104), + [anon_sym_PLUS] = ACTIONS(7104), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_SLASH] = ACTIONS(7104), + [anon_sym_PERCENT] = ACTIONS(7106), + [anon_sym_PIPE_PIPE] = ACTIONS(7106), + [anon_sym_AMP_AMP] = ACTIONS(7106), + [anon_sym_PIPE] = ACTIONS(7104), + [anon_sym_CARET] = ACTIONS(7106), + [anon_sym_AMP] = ACTIONS(7104), + [anon_sym_EQ_EQ] = ACTIONS(7106), + [anon_sym_BANG_EQ] = ACTIONS(7106), + [anon_sym_GT] = ACTIONS(7104), + [anon_sym_GT_EQ] = ACTIONS(7106), + [anon_sym_LT_EQ] = ACTIONS(7104), + [anon_sym_LT] = ACTIONS(7104), + [anon_sym_LT_LT] = ACTIONS(7106), + [anon_sym_GT_GT] = ACTIONS(7106), + [anon_sym_SEMI] = ACTIONS(7106), + [anon_sym___extension__] = ACTIONS(7104), + [anon_sym___attribute__] = ACTIONS(7104), + [anon_sym___attribute] = ACTIONS(7104), + [anon_sym_COLON] = ACTIONS(7104), + [anon_sym_COLON_COLON] = ACTIONS(7106), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7106), + [anon_sym___based] = ACTIONS(7104), + [anon_sym_LBRACE] = ACTIONS(7106), + [anon_sym_RBRACE] = ACTIONS(7106), + [anon_sym_signed] = ACTIONS(7104), + [anon_sym_unsigned] = ACTIONS(7104), + [anon_sym_long] = ACTIONS(7104), + [anon_sym_short] = ACTIONS(7104), + [anon_sym_LBRACK] = ACTIONS(7106), + [anon_sym_const] = ACTIONS(7104), + [anon_sym_constexpr] = ACTIONS(7104), + [anon_sym_volatile] = ACTIONS(7104), + [anon_sym_restrict] = ACTIONS(7104), + [anon_sym___restrict__] = ACTIONS(7104), + [anon_sym__Atomic] = ACTIONS(7104), + [anon_sym__Noreturn] = ACTIONS(7104), + [anon_sym_noreturn] = ACTIONS(7104), + [anon_sym__Nonnull] = ACTIONS(7104), + [anon_sym_mutable] = ACTIONS(7104), + [anon_sym_constinit] = ACTIONS(7104), + [anon_sym_consteval] = ACTIONS(7104), + [anon_sym_alignas] = ACTIONS(7104), + [anon_sym__Alignas] = ACTIONS(7104), + [sym_primitive_type] = ACTIONS(7104), + [anon_sym_QMARK] = ACTIONS(7106), + [anon_sym_LT_EQ_GT] = ACTIONS(7106), + [anon_sym_or] = ACTIONS(7104), + [anon_sym_and] = ACTIONS(7104), + [anon_sym_bitor] = ACTIONS(7104), + [anon_sym_xor] = ACTIONS(7104), + [anon_sym_bitand] = ACTIONS(7104), + [anon_sym_not_eq] = ACTIONS(7104), + [anon_sym_DASH_DASH] = ACTIONS(7106), + [anon_sym_PLUS_PLUS] = ACTIONS(7106), + [anon_sym_DOT] = ACTIONS(7104), + [anon_sym_DOT_STAR] = ACTIONS(7106), + [anon_sym_DASH_GT] = ACTIONS(7106), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7104), + [anon_sym_override] = ACTIONS(7104), + [anon_sym_requires] = ACTIONS(7104), + [anon_sym_COLON_RBRACK] = ACTIONS(7106), }, - [STATE(3483)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), - [anon_sym_COMMA] = ACTIONS(7389), - [anon_sym_RPAREN] = ACTIONS(7389), - [anon_sym_LPAREN2] = ACTIONS(7389), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_STAR] = ACTIONS(7389), - [anon_sym_SLASH] = ACTIONS(7387), - [anon_sym_PERCENT] = ACTIONS(7389), - [anon_sym_PIPE_PIPE] = ACTIONS(7389), - [anon_sym_AMP_AMP] = ACTIONS(7389), - [anon_sym_PIPE] = ACTIONS(7387), - [anon_sym_CARET] = ACTIONS(7389), - [anon_sym_AMP] = ACTIONS(7387), - [anon_sym_EQ_EQ] = ACTIONS(7389), - [anon_sym_BANG_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_LT_EQ] = ACTIONS(7387), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_LT] = ACTIONS(7389), - [anon_sym_GT_GT] = ACTIONS(7389), - [anon_sym_SEMI] = ACTIONS(7389), - [anon_sym___extension__] = ACTIONS(7389), - [anon_sym___attribute__] = ACTIONS(7389), - [anon_sym___attribute] = ACTIONS(7387), - [anon_sym_COLON] = ACTIONS(7387), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7389), - [anon_sym_LBRACE] = ACTIONS(7389), - [anon_sym_RBRACE] = ACTIONS(7389), - [anon_sym_signed] = ACTIONS(8875), - [anon_sym_unsigned] = ACTIONS(8875), - [anon_sym_long] = ACTIONS(8875), - [anon_sym_short] = ACTIONS(8875), - [anon_sym_LBRACK] = ACTIONS(7389), - [anon_sym_const] = ACTIONS(7387), - [anon_sym_constexpr] = ACTIONS(7389), - [anon_sym_volatile] = ACTIONS(7389), - [anon_sym_restrict] = ACTIONS(7389), - [anon_sym___restrict__] = ACTIONS(7389), - [anon_sym__Atomic] = ACTIONS(7389), - [anon_sym__Noreturn] = ACTIONS(7389), - [anon_sym_noreturn] = ACTIONS(7389), - [anon_sym__Nonnull] = ACTIONS(7389), - [anon_sym_mutable] = ACTIONS(7389), - [anon_sym_constinit] = ACTIONS(7389), - [anon_sym_consteval] = ACTIONS(7389), - [anon_sym_alignas] = ACTIONS(7389), - [anon_sym__Alignas] = ACTIONS(7389), - [anon_sym_QMARK] = ACTIONS(7389), - [anon_sym_LT_EQ_GT] = ACTIONS(7389), - [anon_sym_or] = ACTIONS(7389), - [anon_sym_and] = ACTIONS(7389), - [anon_sym_bitor] = ACTIONS(7389), - [anon_sym_xor] = ACTIONS(7389), - [anon_sym_bitand] = ACTIONS(7389), - [anon_sym_not_eq] = ACTIONS(7389), - [anon_sym_DASH_DASH] = ACTIONS(7389), - [anon_sym_PLUS_PLUS] = ACTIONS(7389), - [anon_sym_DOT] = ACTIONS(7387), - [anon_sym_DOT_STAR] = ACTIONS(7389), - [anon_sym_DASH_GT] = ACTIONS(7389), + [STATE(2993)] = { + [sym__abstract_declarator] = STATE(6181), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3083), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2069), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3083), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), + [anon_sym_COMMA] = ACTIONS(7391), + [anon_sym_RPAREN] = ACTIONS(7391), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7393), + [anon_sym_PLUS] = ACTIONS(7393), + [anon_sym_STAR] = ACTIONS(8111), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_PERCENT] = ACTIONS(7391), + [anon_sym_PIPE_PIPE] = ACTIONS(7391), + [anon_sym_AMP_AMP] = ACTIONS(8113), + [anon_sym_PIPE] = ACTIONS(7393), + [anon_sym_CARET] = ACTIONS(7391), + [anon_sym_AMP] = ACTIONS(8115), + [anon_sym_EQ_EQ] = ACTIONS(7391), + [anon_sym_BANG_EQ] = ACTIONS(7391), + [anon_sym_GT] = ACTIONS(7393), + [anon_sym_GT_EQ] = ACTIONS(7391), + [anon_sym_LT_EQ] = ACTIONS(7393), + [anon_sym_LT] = ACTIONS(7393), + [anon_sym_LT_LT] = ACTIONS(7391), + [anon_sym_GT_GT] = ACTIONS(7391), + [anon_sym_SEMI] = ACTIONS(7391), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym_COLON] = ACTIONS(7393), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7391), + [anon_sym_RBRACE] = ACTIONS(7391), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(7391), + [anon_sym_LT_EQ_GT] = ACTIONS(7391), + [anon_sym_or] = ACTIONS(7391), + [anon_sym_and] = ACTIONS(7391), + [anon_sym_bitor] = ACTIONS(7391), + [anon_sym_xor] = ACTIONS(7391), + [anon_sym_bitand] = ACTIONS(7391), + [anon_sym_not_eq] = ACTIONS(7391), + [anon_sym_DASH_DASH] = ACTIONS(7391), + [anon_sym_PLUS_PLUS] = ACTIONS(7391), + [anon_sym_DOT] = ACTIONS(7393), + [anon_sym_DOT_STAR] = ACTIONS(7391), + [anon_sym_DASH_GT] = ACTIONS(7391), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7389), - [anon_sym_override] = ACTIONS(7389), - [anon_sym_requires] = ACTIONS(7389), - [anon_sym_COLON_RBRACK] = ACTIONS(7389), + [anon_sym_final] = ACTIONS(7391), + [anon_sym_override] = ACTIONS(7391), + [anon_sym_requires] = ACTIONS(7391), + [anon_sym_COLON_RBRACK] = ACTIONS(7391), }, - [STATE(3484)] = { - [sym__abstract_declarator] = STATE(6206), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(2399), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(1976), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(2399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_RPAREN] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(8030), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6497), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(8032), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6497), - [anon_sym_AMP] = ACTIONS(8034), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6497), - [anon_sym_GT_GT] = ACTIONS(6497), - [anon_sym_SEMI] = ACTIONS(6497), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym_COLON] = ACTIONS(6495), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6497), - [anon_sym_RBRACE] = ACTIONS(6497), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6497), - [anon_sym_and] = ACTIONS(6497), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6497), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6497), + [STATE(2994)] = { + [sym_virtual_specifier] = STATE(3433), + [sym__function_postfix] = STATE(3628), + [sym_requires_clause] = STATE(3628), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(7789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [aux_sym_preproc_if_token2] = ACTIONS(7791), + [aux_sym_preproc_else_token1] = ACTIONS(7791), + [aux_sym_preproc_elif_token1] = ACTIONS(7789), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym_SEMI] = ACTIONS(7791), + [anon_sym___attribute__] = ACTIONS(7789), + [anon_sym___attribute] = ACTIONS(7789), + [anon_sym_COLON] = ACTIONS(7789), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), + [anon_sym_RBRACE] = ACTIONS(7791), + [anon_sym_LBRACK] = ACTIONS(7791), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7789), + [anon_sym_or_eq] = ACTIONS(7789), + [anon_sym_xor_eq] = ACTIONS(7789), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7789), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7789), + [anon_sym_not_eq] = ACTIONS(7789), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(7791), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6502), + [anon_sym_override] = ACTIONS(6502), + [anon_sym_requires] = ACTIONS(6508), + [anon_sym_COLON_RBRACK] = ACTIONS(7791), }, - [STATE(3485)] = { - [sym__abstract_declarator] = STATE(6198), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(2399), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(1976), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(2399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), - [anon_sym_COMMA] = ACTIONS(7003), - [anon_sym_RPAREN] = ACTIONS(7003), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(8030), - [anon_sym_SLASH] = ACTIONS(7005), - [anon_sym_PERCENT] = ACTIONS(7003), - [anon_sym_PIPE_PIPE] = ACTIONS(7003), - [anon_sym_AMP_AMP] = ACTIONS(8032), - [anon_sym_PIPE] = ACTIONS(7005), - [anon_sym_CARET] = ACTIONS(7003), - [anon_sym_AMP] = ACTIONS(8034), - [anon_sym_EQ_EQ] = ACTIONS(7003), - [anon_sym_BANG_EQ] = ACTIONS(7003), - [anon_sym_GT] = ACTIONS(7005), - [anon_sym_GT_EQ] = ACTIONS(7003), - [anon_sym_LT_EQ] = ACTIONS(7005), - [anon_sym_LT] = ACTIONS(7005), - [anon_sym_LT_LT] = ACTIONS(7003), - [anon_sym_GT_GT] = ACTIONS(7003), - [anon_sym_SEMI] = ACTIONS(7003), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym_COLON] = ACTIONS(7005), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7003), - [anon_sym_RBRACE] = ACTIONS(7003), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(7003), - [anon_sym_LT_EQ_GT] = ACTIONS(7003), - [anon_sym_or] = ACTIONS(7003), - [anon_sym_and] = ACTIONS(7003), - [anon_sym_bitor] = ACTIONS(7003), - [anon_sym_xor] = ACTIONS(7003), - [anon_sym_bitand] = ACTIONS(7003), - [anon_sym_not_eq] = ACTIONS(7003), - [anon_sym_DASH_DASH] = ACTIONS(7003), - [anon_sym_PLUS_PLUS] = ACTIONS(7003), - [anon_sym_DOT] = ACTIONS(7005), - [anon_sym_DOT_STAR] = ACTIONS(7003), - [anon_sym_DASH_GT] = ACTIONS(7003), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7003), + [STATE(2995)] = { + [sym_attribute_specifier] = STATE(4179), + [sym_attribute_declaration] = STATE(4554), + [sym_gnu_asm_expression] = STATE(9153), + [sym_virtual_specifier] = STATE(4653), + [sym__function_attributes_end] = STATE(4369), + [sym__function_postfix] = STATE(5126), + [sym_trailing_return_type] = STATE(4549), + [sym_requires_clause] = STATE(5126), + [aux_sym_type_definition_repeat1] = STATE(4179), + [aux_sym_attributed_declarator_repeat1] = STATE(4554), + [aux_sym__function_postfix_repeat1] = STATE(4653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), + [anon_sym_COMMA] = ACTIONS(8422), + [anon_sym_LPAREN2] = ACTIONS(8422), + [anon_sym_DASH] = ACTIONS(8424), + [anon_sym_PLUS] = ACTIONS(8424), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_SLASH] = ACTIONS(8424), + [anon_sym_PERCENT] = ACTIONS(8424), + [anon_sym_PIPE_PIPE] = ACTIONS(8422), + [anon_sym_AMP_AMP] = ACTIONS(8422), + [anon_sym_PIPE] = ACTIONS(8424), + [anon_sym_CARET] = ACTIONS(8424), + [anon_sym_AMP] = ACTIONS(8424), + [anon_sym_EQ_EQ] = ACTIONS(8422), + [anon_sym_BANG_EQ] = ACTIONS(8422), + [anon_sym_GT] = ACTIONS(8424), + [anon_sym_GT_EQ] = ACTIONS(8422), + [anon_sym_LT_EQ] = ACTIONS(8424), + [anon_sym_LT] = ACTIONS(8424), + [anon_sym_LT_LT] = ACTIONS(8424), + [anon_sym_GT_GT] = ACTIONS(8424), + [anon_sym___attribute__] = ACTIONS(6719), + [anon_sym___attribute] = ACTIONS(6721), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), + [anon_sym_LBRACK] = ACTIONS(8424), + [anon_sym_RBRACK] = ACTIONS(8422), + [anon_sym_EQ] = ACTIONS(8424), + [anon_sym_QMARK] = ACTIONS(8422), + [anon_sym_STAR_EQ] = ACTIONS(8422), + [anon_sym_SLASH_EQ] = ACTIONS(8422), + [anon_sym_PERCENT_EQ] = ACTIONS(8422), + [anon_sym_PLUS_EQ] = ACTIONS(8422), + [anon_sym_DASH_EQ] = ACTIONS(8422), + [anon_sym_LT_LT_EQ] = ACTIONS(8422), + [anon_sym_GT_GT_EQ] = ACTIONS(8422), + [anon_sym_AMP_EQ] = ACTIONS(8422), + [anon_sym_CARET_EQ] = ACTIONS(8422), + [anon_sym_PIPE_EQ] = ACTIONS(8422), + [anon_sym_and_eq] = ACTIONS(8422), + [anon_sym_or_eq] = ACTIONS(8422), + [anon_sym_xor_eq] = ACTIONS(8422), + [anon_sym_LT_EQ_GT] = ACTIONS(8422), + [anon_sym_or] = ACTIONS(8424), + [anon_sym_and] = ACTIONS(8424), + [anon_sym_bitor] = ACTIONS(8422), + [anon_sym_xor] = ACTIONS(8424), + [anon_sym_bitand] = ACTIONS(8422), + [anon_sym_not_eq] = ACTIONS(8422), + [anon_sym_DASH_DASH] = ACTIONS(8422), + [anon_sym_PLUS_PLUS] = ACTIONS(8422), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(8424), + [anon_sym_DOT_STAR] = ACTIONS(8422), + [anon_sym_DASH_GT] = ACTIONS(8880), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8928), + [anon_sym_override] = ACTIONS(8928), + [anon_sym_requires] = ACTIONS(8931), }, - [STATE(3486)] = { - [sym_attribute_specifier] = STATE(4006), - [sym_field_declaration_list] = STATE(3732), - [sym_virtual_specifier] = STATE(9499), - [sym_base_class_clause] = STATE(10436), - [sym_identifier] = ACTIONS(6826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(6828), - [aux_sym_preproc_if_token2] = ACTIONS(6828), - [aux_sym_preproc_else_token1] = ACTIONS(6828), - [aux_sym_preproc_elif_token1] = ACTIONS(6826), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6828), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6828), - [anon_sym_LPAREN2] = ACTIONS(6828), - [anon_sym_DASH] = ACTIONS(6826), - [anon_sym_PLUS] = ACTIONS(6826), - [anon_sym_STAR] = ACTIONS(6828), - [anon_sym_SLASH] = ACTIONS(6826), - [anon_sym_PERCENT] = ACTIONS(6828), - [anon_sym_PIPE_PIPE] = ACTIONS(6828), - [anon_sym_AMP_AMP] = ACTIONS(6828), - [anon_sym_PIPE] = ACTIONS(6826), - [anon_sym_CARET] = ACTIONS(6828), - [anon_sym_AMP] = ACTIONS(6826), - [anon_sym_EQ_EQ] = ACTIONS(6828), - [anon_sym_BANG_EQ] = ACTIONS(6828), - [anon_sym_GT] = ACTIONS(6826), - [anon_sym_GT_EQ] = ACTIONS(6828), - [anon_sym_LT_EQ] = ACTIONS(6826), - [anon_sym_LT] = ACTIONS(6826), - [anon_sym_LT_LT] = ACTIONS(6828), - [anon_sym_GT_GT] = ACTIONS(6828), - [anon_sym___extension__] = ACTIONS(6826), - [anon_sym___attribute__] = ACTIONS(8907), - [anon_sym___attribute] = ACTIONS(8907), - [anon_sym_COLON] = ACTIONS(7817), - [anon_sym_LBRACE] = ACTIONS(8909), - [anon_sym_LBRACK] = ACTIONS(6828), - [anon_sym_const] = ACTIONS(6826), - [anon_sym_constexpr] = ACTIONS(6826), - [anon_sym_volatile] = ACTIONS(6826), - [anon_sym_restrict] = ACTIONS(6826), - [anon_sym___restrict__] = ACTIONS(6826), - [anon_sym__Atomic] = ACTIONS(6826), - [anon_sym__Noreturn] = ACTIONS(6826), - [anon_sym_noreturn] = ACTIONS(6826), - [anon_sym__Nonnull] = ACTIONS(6826), - [anon_sym_mutable] = ACTIONS(6826), - [anon_sym_constinit] = ACTIONS(6826), - [anon_sym_consteval] = ACTIONS(6826), - [anon_sym_alignas] = ACTIONS(6826), - [anon_sym__Alignas] = ACTIONS(6826), - [anon_sym_QMARK] = ACTIONS(6828), - [anon_sym_LT_EQ_GT] = ACTIONS(6828), - [anon_sym_or] = ACTIONS(6826), - [anon_sym_and] = ACTIONS(6826), - [anon_sym_bitor] = ACTIONS(6826), - [anon_sym_xor] = ACTIONS(6826), - [anon_sym_bitand] = ACTIONS(6826), - [anon_sym_not_eq] = ACTIONS(6826), - [anon_sym_DASH_DASH] = ACTIONS(6828), - [anon_sym_PLUS_PLUS] = ACTIONS(6828), - [anon_sym_DOT] = ACTIONS(6826), - [anon_sym_DOT_STAR] = ACTIONS(6828), - [anon_sym_DASH_GT] = ACTIONS(6828), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6836), - [anon_sym_override] = ACTIONS(6836), - [anon_sym_requires] = ACTIONS(6826), + [STATE(2996)] = { + [sym_template_argument_list] = STATE(3193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6569), + [anon_sym_COMMA] = ACTIONS(6569), + [anon_sym_LPAREN2] = ACTIONS(6569), + [anon_sym_DASH] = ACTIONS(6576), + [anon_sym_PLUS] = ACTIONS(6576), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(6576), + [anon_sym_PERCENT] = ACTIONS(6576), + [anon_sym_PIPE_PIPE] = ACTIONS(6569), + [anon_sym_AMP_AMP] = ACTIONS(6569), + [anon_sym_PIPE] = ACTIONS(6576), + [anon_sym_CARET] = ACTIONS(6576), + [anon_sym_AMP] = ACTIONS(6576), + [anon_sym_EQ_EQ] = ACTIONS(6569), + [anon_sym_BANG_EQ] = ACTIONS(6569), + [anon_sym_GT] = ACTIONS(6576), + [anon_sym_GT_EQ] = ACTIONS(6576), + [anon_sym_LT_EQ] = ACTIONS(6576), + [anon_sym_LT] = ACTIONS(8934), + [anon_sym_LT_LT] = ACTIONS(6576), + [anon_sym_GT_GT] = ACTIONS(6576), + [anon_sym___extension__] = ACTIONS(6572), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(6572), + [anon_sym_LBRACK] = ACTIONS(6569), + [anon_sym_EQ] = ACTIONS(6576), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_constexpr] = ACTIONS(6572), + [anon_sym_volatile] = ACTIONS(6572), + [anon_sym_restrict] = ACTIONS(6572), + [anon_sym___restrict__] = ACTIONS(6572), + [anon_sym__Atomic] = ACTIONS(6572), + [anon_sym__Noreturn] = ACTIONS(6572), + [anon_sym_noreturn] = ACTIONS(6572), + [anon_sym__Nonnull] = ACTIONS(6572), + [anon_sym_mutable] = ACTIONS(6572), + [anon_sym_constinit] = ACTIONS(6572), + [anon_sym_consteval] = ACTIONS(6572), + [anon_sym_alignas] = ACTIONS(6572), + [anon_sym__Alignas] = ACTIONS(6572), + [anon_sym_QMARK] = ACTIONS(6569), + [anon_sym_STAR_EQ] = ACTIONS(6569), + [anon_sym_SLASH_EQ] = ACTIONS(6569), + [anon_sym_PERCENT_EQ] = ACTIONS(6569), + [anon_sym_PLUS_EQ] = ACTIONS(6569), + [anon_sym_DASH_EQ] = ACTIONS(6569), + [anon_sym_LT_LT_EQ] = ACTIONS(6569), + [anon_sym_GT_GT_EQ] = ACTIONS(6576), + [anon_sym_AMP_EQ] = ACTIONS(6569), + [anon_sym_CARET_EQ] = ACTIONS(6569), + [anon_sym_PIPE_EQ] = ACTIONS(6569), + [anon_sym_and_eq] = ACTIONS(6569), + [anon_sym_or_eq] = ACTIONS(6569), + [anon_sym_xor_eq] = ACTIONS(6569), + [anon_sym_LT_EQ_GT] = ACTIONS(6569), + [anon_sym_or] = ACTIONS(6576), + [anon_sym_and] = ACTIONS(6576), + [anon_sym_bitor] = ACTIONS(6569), + [anon_sym_xor] = ACTIONS(6576), + [anon_sym_bitand] = ACTIONS(6569), + [anon_sym_not_eq] = ACTIONS(6569), + [anon_sym_DASH_DASH] = ACTIONS(6569), + [anon_sym_PLUS_PLUS] = ACTIONS(6569), + [anon_sym_DOT] = ACTIONS(6576), + [anon_sym_DOT_STAR] = ACTIONS(6569), + [anon_sym_DASH_GT] = ACTIONS(6569), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6572), + [anon_sym_decltype] = ACTIONS(6572), + [anon_sym_GT2] = ACTIONS(6569), }, - [STATE(3487)] = { - [sym_type_qualifier] = STATE(3553), - [sym_alignas_qualifier] = STATE(3785), - [aux_sym__type_definition_type_repeat1] = STATE(3553), - [aux_sym_sized_type_specifier_repeat1] = STATE(3926), - [sym_identifier] = ACTIONS(8911), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), - [anon_sym_COMMA] = ACTIONS(6884), - [anon_sym_LPAREN2] = ACTIONS(6884), - [anon_sym_DASH] = ACTIONS(6886), - [anon_sym_PLUS] = ACTIONS(6886), - [anon_sym_STAR] = ACTIONS(6884), - [anon_sym_SLASH] = ACTIONS(6886), - [anon_sym_PERCENT] = ACTIONS(6884), - [anon_sym_PIPE_PIPE] = ACTIONS(6884), - [anon_sym_AMP_AMP] = ACTIONS(6884), - [anon_sym_PIPE] = ACTIONS(6886), - [anon_sym_CARET] = ACTIONS(6884), - [anon_sym_AMP] = ACTIONS(6886), - [anon_sym_EQ_EQ] = ACTIONS(6884), - [anon_sym_BANG_EQ] = ACTIONS(6884), - [anon_sym_GT] = ACTIONS(6886), - [anon_sym_GT_EQ] = ACTIONS(6886), - [anon_sym_LT_EQ] = ACTIONS(6886), - [anon_sym_LT] = ACTIONS(6886), - [anon_sym_LT_LT] = ACTIONS(6884), - [anon_sym_GT_GT] = ACTIONS(6886), - [anon_sym___extension__] = ACTIONS(8913), - [anon_sym___attribute__] = ACTIONS(6886), - [anon_sym___attribute] = ACTIONS(6886), - [anon_sym_LBRACE] = ACTIONS(6884), - [anon_sym_signed] = ACTIONS(8916), - [anon_sym_unsigned] = ACTIONS(8916), - [anon_sym_long] = ACTIONS(8916), - [anon_sym_short] = ACTIONS(8916), - [anon_sym_LBRACK] = ACTIONS(6884), - [anon_sym_const] = ACTIONS(8913), - [anon_sym_constexpr] = ACTIONS(8913), - [anon_sym_volatile] = ACTIONS(8913), - [anon_sym_restrict] = ACTIONS(8913), - [anon_sym___restrict__] = ACTIONS(8913), - [anon_sym__Atomic] = ACTIONS(8913), - [anon_sym__Noreturn] = ACTIONS(8913), - [anon_sym_noreturn] = ACTIONS(8913), - [anon_sym__Nonnull] = ACTIONS(8913), - [anon_sym_mutable] = ACTIONS(8913), - [anon_sym_constinit] = ACTIONS(8913), - [anon_sym_consteval] = ACTIONS(8913), - [anon_sym_alignas] = ACTIONS(8918), - [anon_sym__Alignas] = ACTIONS(8918), - [sym_primitive_type] = ACTIONS(8921), - [anon_sym_QMARK] = ACTIONS(6884), - [anon_sym_LT_EQ_GT] = ACTIONS(6884), - [anon_sym_or] = ACTIONS(6886), - [anon_sym_and] = ACTIONS(6886), - [anon_sym_bitor] = ACTIONS(6886), - [anon_sym_xor] = ACTIONS(6886), - [anon_sym_bitand] = ACTIONS(6886), - [anon_sym_not_eq] = ACTIONS(6886), - [anon_sym_DASH_DASH] = ACTIONS(6884), - [anon_sym_PLUS_PLUS] = ACTIONS(6884), - [anon_sym_DOT] = ACTIONS(6886), - [anon_sym_DOT_STAR] = ACTIONS(6884), - [anon_sym_DASH_GT] = ACTIONS(6884), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6886), - [anon_sym_override] = ACTIONS(6886), - [anon_sym_GT2] = ACTIONS(6884), - [anon_sym_requires] = ACTIONS(6886), + [STATE(2997)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7733), + [anon_sym_COMMA] = ACTIONS(7733), + [anon_sym_RPAREN] = ACTIONS(7733), + [anon_sym_LPAREN2] = ACTIONS(7733), + [anon_sym_DASH] = ACTIONS(7731), + [anon_sym_PLUS] = ACTIONS(7731), + [anon_sym_STAR] = ACTIONS(7731), + [anon_sym_SLASH] = ACTIONS(7731), + [anon_sym_PERCENT] = ACTIONS(7731), + [anon_sym_PIPE_PIPE] = ACTIONS(7733), + [anon_sym_AMP_AMP] = ACTIONS(7733), + [anon_sym_PIPE] = ACTIONS(7731), + [anon_sym_CARET] = ACTIONS(7731), + [anon_sym_AMP] = ACTIONS(7731), + [anon_sym_EQ_EQ] = ACTIONS(7733), + [anon_sym_BANG_EQ] = ACTIONS(7733), + [anon_sym_GT] = ACTIONS(7731), + [anon_sym_GT_EQ] = ACTIONS(7733), + [anon_sym_LT_EQ] = ACTIONS(7731), + [anon_sym_LT] = ACTIONS(7731), + [anon_sym_LT_LT] = ACTIONS(7731), + [anon_sym_GT_GT] = ACTIONS(7731), + [anon_sym___extension__] = ACTIONS(7733), + [anon_sym_LBRACE] = ACTIONS(7733), + [anon_sym_LBRACK] = ACTIONS(7733), + [anon_sym_EQ] = ACTIONS(7731), + [anon_sym_const] = ACTIONS(7731), + [anon_sym_constexpr] = ACTIONS(7733), + [anon_sym_volatile] = ACTIONS(7733), + [anon_sym_restrict] = ACTIONS(7733), + [anon_sym___restrict__] = ACTIONS(7733), + [anon_sym__Atomic] = ACTIONS(7733), + [anon_sym__Noreturn] = ACTIONS(7733), + [anon_sym_noreturn] = ACTIONS(7733), + [anon_sym__Nonnull] = ACTIONS(7733), + [anon_sym_mutable] = ACTIONS(7733), + [anon_sym_constinit] = ACTIONS(7733), + [anon_sym_consteval] = ACTIONS(7733), + [anon_sym_alignas] = ACTIONS(7733), + [anon_sym__Alignas] = ACTIONS(7733), + [anon_sym_QMARK] = ACTIONS(7733), + [anon_sym_STAR_EQ] = ACTIONS(7733), + [anon_sym_SLASH_EQ] = ACTIONS(7733), + [anon_sym_PERCENT_EQ] = ACTIONS(7733), + [anon_sym_PLUS_EQ] = ACTIONS(7733), + [anon_sym_DASH_EQ] = ACTIONS(7733), + [anon_sym_LT_LT_EQ] = ACTIONS(7733), + [anon_sym_GT_GT_EQ] = ACTIONS(7733), + [anon_sym_AMP_EQ] = ACTIONS(7733), + [anon_sym_CARET_EQ] = ACTIONS(7733), + [anon_sym_PIPE_EQ] = ACTIONS(7733), + [anon_sym_and_eq] = ACTIONS(7733), + [anon_sym_or_eq] = ACTIONS(7733), + [anon_sym_xor_eq] = ACTIONS(7733), + [anon_sym_LT_EQ_GT] = ACTIONS(7733), + [anon_sym_or] = ACTIONS(7731), + [anon_sym_and] = ACTIONS(7731), + [anon_sym_bitor] = ACTIONS(7733), + [anon_sym_xor] = ACTIONS(7731), + [anon_sym_bitand] = ACTIONS(7733), + [anon_sym_not_eq] = ACTIONS(7733), + [anon_sym_DASH_DASH] = ACTIONS(7733), + [anon_sym_PLUS_PLUS] = ACTIONS(7733), + [anon_sym_DOT] = ACTIONS(7731), + [anon_sym_DOT_STAR] = ACTIONS(7733), + [anon_sym_DASH_GT] = ACTIONS(7731), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7733), + [anon_sym_override] = ACTIONS(7733), + [anon_sym_requires] = ACTIONS(7733), + [anon_sym_DASH_GT_STAR] = ACTIONS(7733), }, - [STATE(3488)] = { - [sym__abstract_declarator] = STATE(6183), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(2399), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(2157), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(2399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(8108), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6497), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(8110), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6497), - [anon_sym_AMP] = ACTIONS(8112), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6497), - [anon_sym_GT_GT] = ACTIONS(6497), - [anon_sym_SEMI] = ACTIONS(6497), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym___attribute__] = ACTIONS(6497), - [anon_sym___attribute] = ACTIONS(6495), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6497), - [anon_sym_and] = ACTIONS(6497), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6497), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6497), - [anon_sym_override] = ACTIONS(6497), - [anon_sym_requires] = ACTIONS(6497), + [STATE(2998)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_RPAREN] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6605), + [anon_sym_PLUS] = ACTIONS(6605), + [anon_sym_STAR] = ACTIONS(6605), + [anon_sym_SLASH] = ACTIONS(6605), + [anon_sym_PERCENT] = ACTIONS(6605), + [anon_sym_PIPE_PIPE] = ACTIONS(6598), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6605), + [anon_sym_CARET] = ACTIONS(6605), + [anon_sym_AMP] = ACTIONS(6605), + [anon_sym_EQ_EQ] = ACTIONS(6598), + [anon_sym_BANG_EQ] = ACTIONS(6598), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6598), + [anon_sym_LT_EQ] = ACTIONS(6605), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6605), + [anon_sym_GT_GT] = ACTIONS(6605), + [anon_sym___extension__] = ACTIONS(6601), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_LBRACK] = ACTIONS(6598), + [anon_sym_EQ] = ACTIONS(6605), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6601), + [anon_sym_volatile] = ACTIONS(6601), + [anon_sym_restrict] = ACTIONS(6601), + [anon_sym___restrict__] = ACTIONS(6601), + [anon_sym__Atomic] = ACTIONS(6601), + [anon_sym__Noreturn] = ACTIONS(6601), + [anon_sym_noreturn] = ACTIONS(6601), + [anon_sym__Nonnull] = ACTIONS(6601), + [anon_sym_mutable] = ACTIONS(6601), + [anon_sym_constinit] = ACTIONS(6601), + [anon_sym_consteval] = ACTIONS(6601), + [anon_sym_alignas] = ACTIONS(6601), + [anon_sym__Alignas] = ACTIONS(6601), + [anon_sym_QMARK] = ACTIONS(6598), + [anon_sym_STAR_EQ] = ACTIONS(6598), + [anon_sym_SLASH_EQ] = ACTIONS(6598), + [anon_sym_PERCENT_EQ] = ACTIONS(6598), + [anon_sym_PLUS_EQ] = ACTIONS(6598), + [anon_sym_DASH_EQ] = ACTIONS(6598), + [anon_sym_LT_LT_EQ] = ACTIONS(6598), + [anon_sym_GT_GT_EQ] = ACTIONS(6598), + [anon_sym_AMP_EQ] = ACTIONS(6598), + [anon_sym_CARET_EQ] = ACTIONS(6598), + [anon_sym_PIPE_EQ] = ACTIONS(6598), + [anon_sym_and_eq] = ACTIONS(6596), + [anon_sym_or_eq] = ACTIONS(6596), + [anon_sym_xor_eq] = ACTIONS(6596), + [anon_sym_LT_EQ_GT] = ACTIONS(6598), + [anon_sym_or] = ACTIONS(6605), + [anon_sym_and] = ACTIONS(6605), + [anon_sym_bitor] = ACTIONS(6598), + [anon_sym_xor] = ACTIONS(6605), + [anon_sym_bitand] = ACTIONS(6598), + [anon_sym_not_eq] = ACTIONS(6598), + [anon_sym_DASH_DASH] = ACTIONS(6598), + [anon_sym_PLUS_PLUS] = ACTIONS(6598), + [anon_sym_DOT] = ACTIONS(6605), + [anon_sym_DOT_STAR] = ACTIONS(6598), + [anon_sym_DASH_GT] = ACTIONS(6605), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6601), + [anon_sym_decltype] = ACTIONS(6601), + [anon_sym_DASH_GT_STAR] = ACTIONS(6598), }, - [STATE(3489)] = { - [sym_identifier] = ACTIONS(8622), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8624), - [anon_sym_COMMA] = ACTIONS(8624), - [anon_sym_RPAREN] = ACTIONS(8624), - [aux_sym_preproc_if_token2] = ACTIONS(8624), - [aux_sym_preproc_else_token1] = ACTIONS(8624), - [aux_sym_preproc_elif_token1] = ACTIONS(8622), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8624), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8624), - [anon_sym_LPAREN2] = ACTIONS(8624), - [anon_sym_DASH] = ACTIONS(8622), - [anon_sym_PLUS] = ACTIONS(8622), - [anon_sym_STAR] = ACTIONS(8622), - [anon_sym_SLASH] = ACTIONS(8622), - [anon_sym_PERCENT] = ACTIONS(8622), - [anon_sym_PIPE_PIPE] = ACTIONS(8624), - [anon_sym_AMP_AMP] = ACTIONS(8624), - [anon_sym_PIPE] = ACTIONS(8622), - [anon_sym_CARET] = ACTIONS(8622), - [anon_sym_AMP] = ACTIONS(8622), - [anon_sym_EQ_EQ] = ACTIONS(8624), - [anon_sym_BANG_EQ] = ACTIONS(8624), - [anon_sym_GT] = ACTIONS(8622), - [anon_sym_GT_EQ] = ACTIONS(8624), - [anon_sym_LT_EQ] = ACTIONS(8622), - [anon_sym_LT] = ACTIONS(8622), - [anon_sym_LT_LT] = ACTIONS(8622), - [anon_sym_GT_GT] = ACTIONS(8622), - [anon_sym_SEMI] = ACTIONS(8624), - [anon_sym___attribute__] = ACTIONS(8622), - [anon_sym___attribute] = ACTIONS(8622), - [anon_sym_COLON] = ACTIONS(8622), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8624), - [anon_sym_RBRACE] = ACTIONS(8624), - [anon_sym_LBRACK] = ACTIONS(8624), - [anon_sym_EQ] = ACTIONS(8622), - [anon_sym_QMARK] = ACTIONS(8624), - [anon_sym_STAR_EQ] = ACTIONS(8624), - [anon_sym_SLASH_EQ] = ACTIONS(8624), - [anon_sym_PERCENT_EQ] = ACTIONS(8624), - [anon_sym_PLUS_EQ] = ACTIONS(8624), - [anon_sym_DASH_EQ] = ACTIONS(8624), - [anon_sym_LT_LT_EQ] = ACTIONS(8624), - [anon_sym_GT_GT_EQ] = ACTIONS(8624), - [anon_sym_AMP_EQ] = ACTIONS(8624), - [anon_sym_CARET_EQ] = ACTIONS(8624), - [anon_sym_PIPE_EQ] = ACTIONS(8624), - [anon_sym_and_eq] = ACTIONS(8622), - [anon_sym_or_eq] = ACTIONS(8622), - [anon_sym_xor_eq] = ACTIONS(8622), - [anon_sym_LT_EQ_GT] = ACTIONS(8624), - [anon_sym_or] = ACTIONS(8622), - [anon_sym_and] = ACTIONS(8622), - [anon_sym_bitor] = ACTIONS(8622), - [anon_sym_xor] = ACTIONS(8622), - [anon_sym_bitand] = ACTIONS(8622), - [anon_sym_not_eq] = ACTIONS(8622), - [anon_sym_DASH_DASH] = ACTIONS(8624), - [anon_sym_PLUS_PLUS] = ACTIONS(8624), - [anon_sym_DOT] = ACTIONS(8622), - [anon_sym_DOT_STAR] = ACTIONS(8624), - [anon_sym_DASH_GT] = ACTIONS(8624), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8622), - [anon_sym_override] = ACTIONS(8622), - [anon_sym_requires] = ACTIONS(8622), - [anon_sym_COLON_RBRACK] = ACTIONS(8624), + [STATE(2999)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6596), + [anon_sym_COMMA] = ACTIONS(6596), + [anon_sym_RPAREN] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6603), + [anon_sym_PLUS] = ACTIONS(6603), + [anon_sym_STAR] = ACTIONS(6605), + [anon_sym_SLASH] = ACTIONS(6603), + [anon_sym_PERCENT] = ACTIONS(6603), + [anon_sym_PIPE_PIPE] = ACTIONS(6596), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6603), + [anon_sym_CARET] = ACTIONS(6603), + [anon_sym_AMP] = ACTIONS(6605), + [anon_sym_EQ_EQ] = ACTIONS(6596), + [anon_sym_BANG_EQ] = ACTIONS(6596), + [anon_sym_GT] = ACTIONS(6603), + [anon_sym_GT_EQ] = ACTIONS(6596), + [anon_sym_LT_EQ] = ACTIONS(6603), + [anon_sym_LT] = ACTIONS(6603), + [anon_sym_LT_LT] = ACTIONS(6603), + [anon_sym_GT_GT] = ACTIONS(6603), + [anon_sym___extension__] = ACTIONS(6601), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_LBRACK] = ACTIONS(6598), + [anon_sym_EQ] = ACTIONS(6603), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6601), + [anon_sym_volatile] = ACTIONS(6601), + [anon_sym_restrict] = ACTIONS(6601), + [anon_sym___restrict__] = ACTIONS(6601), + [anon_sym__Atomic] = ACTIONS(6601), + [anon_sym__Noreturn] = ACTIONS(6601), + [anon_sym_noreturn] = ACTIONS(6601), + [anon_sym__Nonnull] = ACTIONS(6601), + [anon_sym_mutable] = ACTIONS(6601), + [anon_sym_constinit] = ACTIONS(6601), + [anon_sym_consteval] = ACTIONS(6601), + [anon_sym_alignas] = ACTIONS(6601), + [anon_sym__Alignas] = ACTIONS(6601), + [anon_sym_QMARK] = ACTIONS(6596), + [anon_sym_STAR_EQ] = ACTIONS(6596), + [anon_sym_SLASH_EQ] = ACTIONS(6596), + [anon_sym_PERCENT_EQ] = ACTIONS(6596), + [anon_sym_PLUS_EQ] = ACTIONS(6596), + [anon_sym_DASH_EQ] = ACTIONS(6596), + [anon_sym_LT_LT_EQ] = ACTIONS(6596), + [anon_sym_GT_GT_EQ] = ACTIONS(6596), + [anon_sym_AMP_EQ] = ACTIONS(6596), + [anon_sym_CARET_EQ] = ACTIONS(6596), + [anon_sym_PIPE_EQ] = ACTIONS(6596), + [anon_sym_and_eq] = ACTIONS(6596), + [anon_sym_or_eq] = ACTIONS(6596), + [anon_sym_xor_eq] = ACTIONS(6596), + [anon_sym_LT_EQ_GT] = ACTIONS(6596), + [anon_sym_or] = ACTIONS(6603), + [anon_sym_and] = ACTIONS(6603), + [anon_sym_bitor] = ACTIONS(6596), + [anon_sym_xor] = ACTIONS(6603), + [anon_sym_bitand] = ACTIONS(6596), + [anon_sym_not_eq] = ACTIONS(6596), + [anon_sym_DASH_DASH] = ACTIONS(6596), + [anon_sym_PLUS_PLUS] = ACTIONS(6596), + [anon_sym_DOT] = ACTIONS(6603), + [anon_sym_DOT_STAR] = ACTIONS(6596), + [anon_sym_DASH_GT] = ACTIONS(6603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6601), + [anon_sym_decltype] = ACTIONS(6601), + [anon_sym_DASH_GT_STAR] = ACTIONS(6596), }, - [STATE(3490)] = { - [sym_attribute_declaration] = STATE(3648), - [sym_parameter_list] = STATE(3121), - [aux_sym_attributed_declarator_repeat1] = STATE(3648), - [sym_identifier] = ACTIONS(8923), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8925), - [anon_sym_COMMA] = ACTIONS(8925), - [anon_sym_RPAREN] = ACTIONS(8925), - [aux_sym_preproc_if_token2] = ACTIONS(8925), - [aux_sym_preproc_else_token1] = ACTIONS(8925), - [aux_sym_preproc_elif_token1] = ACTIONS(8923), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8925), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8925), - [anon_sym_LPAREN2] = ACTIONS(8927), - [anon_sym_DASH] = ACTIONS(8923), - [anon_sym_PLUS] = ACTIONS(8923), - [anon_sym_STAR] = ACTIONS(8923), - [anon_sym_SLASH] = ACTIONS(8923), - [anon_sym_PERCENT] = ACTIONS(8923), - [anon_sym_PIPE_PIPE] = ACTIONS(8925), - [anon_sym_AMP_AMP] = ACTIONS(8925), - [anon_sym_PIPE] = ACTIONS(8923), - [anon_sym_CARET] = ACTIONS(8923), - [anon_sym_AMP] = ACTIONS(8923), - [anon_sym_EQ_EQ] = ACTIONS(8925), - [anon_sym_BANG_EQ] = ACTIONS(8925), - [anon_sym_GT] = ACTIONS(8923), - [anon_sym_GT_EQ] = ACTIONS(8925), - [anon_sym_LT_EQ] = ACTIONS(8923), - [anon_sym_LT] = ACTIONS(8923), - [anon_sym_LT_LT] = ACTIONS(8923), - [anon_sym_GT_GT] = ACTIONS(8923), - [anon_sym_SEMI] = ACTIONS(8925), - [anon_sym___attribute__] = ACTIONS(8923), - [anon_sym___attribute] = ACTIONS(8923), - [anon_sym_COLON] = ACTIONS(8923), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_RBRACE] = ACTIONS(8925), - [anon_sym_LBRACK] = ACTIONS(8929), - [anon_sym_EQ] = ACTIONS(8923), - [anon_sym_QMARK] = ACTIONS(8925), - [anon_sym_STAR_EQ] = ACTIONS(8925), - [anon_sym_SLASH_EQ] = ACTIONS(8925), - [anon_sym_PERCENT_EQ] = ACTIONS(8925), - [anon_sym_PLUS_EQ] = ACTIONS(8925), - [anon_sym_DASH_EQ] = ACTIONS(8925), - [anon_sym_LT_LT_EQ] = ACTIONS(8925), - [anon_sym_GT_GT_EQ] = ACTIONS(8925), - [anon_sym_AMP_EQ] = ACTIONS(8925), - [anon_sym_CARET_EQ] = ACTIONS(8925), - [anon_sym_PIPE_EQ] = ACTIONS(8925), - [anon_sym_and_eq] = ACTIONS(8923), - [anon_sym_or_eq] = ACTIONS(8923), - [anon_sym_xor_eq] = ACTIONS(8923), - [anon_sym_LT_EQ_GT] = ACTIONS(8925), - [anon_sym_or] = ACTIONS(8923), - [anon_sym_and] = ACTIONS(8923), - [anon_sym_bitor] = ACTIONS(8923), - [anon_sym_xor] = ACTIONS(8923), - [anon_sym_bitand] = ACTIONS(8923), - [anon_sym_not_eq] = ACTIONS(8923), - [anon_sym_DASH_DASH] = ACTIONS(8925), - [anon_sym_PLUS_PLUS] = ACTIONS(8925), - [anon_sym_DOT] = ACTIONS(8923), - [anon_sym_DOT_STAR] = ACTIONS(8925), - [anon_sym_DASH_GT] = ACTIONS(8925), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(8925), + [STATE(3000)] = { + [sym_identifier] = ACTIONS(8938), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8940), + [anon_sym_COMMA] = ACTIONS(8940), + [anon_sym_RPAREN] = ACTIONS(8940), + [aux_sym_preproc_if_token2] = ACTIONS(8940), + [aux_sym_preproc_else_token1] = ACTIONS(8940), + [aux_sym_preproc_elif_token1] = ACTIONS(8938), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8940), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8940), + [anon_sym_LPAREN2] = ACTIONS(8940), + [anon_sym_DASH] = ACTIONS(8938), + [anon_sym_PLUS] = ACTIONS(8938), + [anon_sym_STAR] = ACTIONS(8938), + [anon_sym_SLASH] = ACTIONS(8938), + [anon_sym_PERCENT] = ACTIONS(8938), + [anon_sym_PIPE_PIPE] = ACTIONS(8940), + [anon_sym_AMP_AMP] = ACTIONS(8940), + [anon_sym_PIPE] = ACTIONS(8938), + [anon_sym_CARET] = ACTIONS(8938), + [anon_sym_AMP] = ACTIONS(8938), + [anon_sym_EQ_EQ] = ACTIONS(8940), + [anon_sym_BANG_EQ] = ACTIONS(8940), + [anon_sym_GT] = ACTIONS(8938), + [anon_sym_GT_EQ] = ACTIONS(8940), + [anon_sym_LT_EQ] = ACTIONS(8938), + [anon_sym_LT] = ACTIONS(8938), + [anon_sym_LT_LT] = ACTIONS(8938), + [anon_sym_GT_GT] = ACTIONS(8938), + [anon_sym_SEMI] = ACTIONS(8940), + [anon_sym___attribute__] = ACTIONS(8938), + [anon_sym___attribute] = ACTIONS(8938), + [anon_sym_COLON] = ACTIONS(8938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8940), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8940), + [anon_sym_RBRACE] = ACTIONS(8940), + [anon_sym_LBRACK] = ACTIONS(8938), + [anon_sym_EQ] = ACTIONS(8938), + [anon_sym_QMARK] = ACTIONS(8940), + [anon_sym_STAR_EQ] = ACTIONS(8940), + [anon_sym_SLASH_EQ] = ACTIONS(8940), + [anon_sym_PERCENT_EQ] = ACTIONS(8940), + [anon_sym_PLUS_EQ] = ACTIONS(8940), + [anon_sym_DASH_EQ] = ACTIONS(8940), + [anon_sym_LT_LT_EQ] = ACTIONS(8940), + [anon_sym_GT_GT_EQ] = ACTIONS(8940), + [anon_sym_AMP_EQ] = ACTIONS(8940), + [anon_sym_CARET_EQ] = ACTIONS(8940), + [anon_sym_PIPE_EQ] = ACTIONS(8940), + [anon_sym_and_eq] = ACTIONS(8938), + [anon_sym_or_eq] = ACTIONS(8938), + [anon_sym_xor_eq] = ACTIONS(8938), + [anon_sym_LT_EQ_GT] = ACTIONS(8940), + [anon_sym_or] = ACTIONS(8938), + [anon_sym_and] = ACTIONS(8938), + [anon_sym_bitor] = ACTIONS(8938), + [anon_sym_xor] = ACTIONS(8938), + [anon_sym_bitand] = ACTIONS(8938), + [anon_sym_not_eq] = ACTIONS(8938), + [anon_sym_DASH_DASH] = ACTIONS(8940), + [anon_sym_PLUS_PLUS] = ACTIONS(8940), + [anon_sym_asm] = ACTIONS(8938), + [anon_sym___asm__] = ACTIONS(8938), + [anon_sym___asm] = ACTIONS(8938), + [anon_sym_DOT] = ACTIONS(8938), + [anon_sym_DOT_STAR] = ACTIONS(8940), + [anon_sym_DASH_GT] = ACTIONS(8940), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8938), + [anon_sym_override] = ACTIONS(8938), + [anon_sym_requires] = ACTIONS(8938), + [anon_sym_COLON_RBRACK] = ACTIONS(8940), }, - [STATE(3491)] = { - [sym_attribute_declaration] = STATE(3648), - [sym_parameter_list] = STATE(3121), - [aux_sym_attributed_declarator_repeat1] = STATE(3648), - [sym_identifier] = ACTIONS(8931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8933), - [anon_sym_COMMA] = ACTIONS(8933), - [anon_sym_RPAREN] = ACTIONS(8933), - [aux_sym_preproc_if_token2] = ACTIONS(8933), - [aux_sym_preproc_else_token1] = ACTIONS(8933), - [aux_sym_preproc_elif_token1] = ACTIONS(8931), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8933), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8933), - [anon_sym_LPAREN2] = ACTIONS(8927), - [anon_sym_DASH] = ACTIONS(8931), - [anon_sym_PLUS] = ACTIONS(8931), - [anon_sym_STAR] = ACTIONS(8931), - [anon_sym_SLASH] = ACTIONS(8931), - [anon_sym_PERCENT] = ACTIONS(8931), - [anon_sym_PIPE_PIPE] = ACTIONS(8933), - [anon_sym_AMP_AMP] = ACTIONS(8933), - [anon_sym_PIPE] = ACTIONS(8931), - [anon_sym_CARET] = ACTIONS(8931), - [anon_sym_AMP] = ACTIONS(8931), - [anon_sym_EQ_EQ] = ACTIONS(8933), - [anon_sym_BANG_EQ] = ACTIONS(8933), - [anon_sym_GT] = ACTIONS(8931), - [anon_sym_GT_EQ] = ACTIONS(8933), - [anon_sym_LT_EQ] = ACTIONS(8931), - [anon_sym_LT] = ACTIONS(8931), - [anon_sym_LT_LT] = ACTIONS(8931), - [anon_sym_GT_GT] = ACTIONS(8931), - [anon_sym_SEMI] = ACTIONS(8933), - [anon_sym___attribute__] = ACTIONS(8931), - [anon_sym___attribute] = ACTIONS(8931), - [anon_sym_COLON] = ACTIONS(8931), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_RBRACE] = ACTIONS(8933), - [anon_sym_LBRACK] = ACTIONS(8929), - [anon_sym_EQ] = ACTIONS(8931), - [anon_sym_QMARK] = ACTIONS(8933), - [anon_sym_STAR_EQ] = ACTIONS(8933), - [anon_sym_SLASH_EQ] = ACTIONS(8933), - [anon_sym_PERCENT_EQ] = ACTIONS(8933), - [anon_sym_PLUS_EQ] = ACTIONS(8933), - [anon_sym_DASH_EQ] = ACTIONS(8933), - [anon_sym_LT_LT_EQ] = ACTIONS(8933), - [anon_sym_GT_GT_EQ] = ACTIONS(8933), - [anon_sym_AMP_EQ] = ACTIONS(8933), - [anon_sym_CARET_EQ] = ACTIONS(8933), - [anon_sym_PIPE_EQ] = ACTIONS(8933), - [anon_sym_and_eq] = ACTIONS(8931), - [anon_sym_or_eq] = ACTIONS(8931), - [anon_sym_xor_eq] = ACTIONS(8931), - [anon_sym_LT_EQ_GT] = ACTIONS(8933), - [anon_sym_or] = ACTIONS(8931), - [anon_sym_and] = ACTIONS(8931), - [anon_sym_bitor] = ACTIONS(8931), - [anon_sym_xor] = ACTIONS(8931), - [anon_sym_bitand] = ACTIONS(8931), - [anon_sym_not_eq] = ACTIONS(8931), - [anon_sym_DASH_DASH] = ACTIONS(8933), - [anon_sym_PLUS_PLUS] = ACTIONS(8933), - [anon_sym_DOT] = ACTIONS(8931), - [anon_sym_DOT_STAR] = ACTIONS(8933), - [anon_sym_DASH_GT] = ACTIONS(8933), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(8933), + [STATE(3001)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7769), + [anon_sym_COMMA] = ACTIONS(7769), + [anon_sym_RPAREN] = ACTIONS(7769), + [anon_sym_LPAREN2] = ACTIONS(7769), + [anon_sym_DASH] = ACTIONS(7767), + [anon_sym_PLUS] = ACTIONS(7767), + [anon_sym_STAR] = ACTIONS(7767), + [anon_sym_SLASH] = ACTIONS(7767), + [anon_sym_PERCENT] = ACTIONS(7767), + [anon_sym_PIPE_PIPE] = ACTIONS(7769), + [anon_sym_AMP_AMP] = ACTIONS(7769), + [anon_sym_PIPE] = ACTIONS(7767), + [anon_sym_CARET] = ACTIONS(7767), + [anon_sym_AMP] = ACTIONS(7767), + [anon_sym_EQ_EQ] = ACTIONS(7769), + [anon_sym_BANG_EQ] = ACTIONS(7769), + [anon_sym_GT] = ACTIONS(7767), + [anon_sym_GT_EQ] = ACTIONS(7769), + [anon_sym_LT_EQ] = ACTIONS(7767), + [anon_sym_LT] = ACTIONS(7767), + [anon_sym_LT_LT] = ACTIONS(7767), + [anon_sym_GT_GT] = ACTIONS(7767), + [anon_sym___extension__] = ACTIONS(7769), + [anon_sym_LBRACE] = ACTIONS(7769), + [anon_sym_LBRACK] = ACTIONS(7769), + [anon_sym_EQ] = ACTIONS(7767), + [anon_sym_const] = ACTIONS(7767), + [anon_sym_constexpr] = ACTIONS(7769), + [anon_sym_volatile] = ACTIONS(7769), + [anon_sym_restrict] = ACTIONS(7769), + [anon_sym___restrict__] = ACTIONS(7769), + [anon_sym__Atomic] = ACTIONS(7769), + [anon_sym__Noreturn] = ACTIONS(7769), + [anon_sym_noreturn] = ACTIONS(7769), + [anon_sym__Nonnull] = ACTIONS(7769), + [anon_sym_mutable] = ACTIONS(7769), + [anon_sym_constinit] = ACTIONS(7769), + [anon_sym_consteval] = ACTIONS(7769), + [anon_sym_alignas] = ACTIONS(7769), + [anon_sym__Alignas] = ACTIONS(7769), + [anon_sym_QMARK] = ACTIONS(7769), + [anon_sym_STAR_EQ] = ACTIONS(7769), + [anon_sym_SLASH_EQ] = ACTIONS(7769), + [anon_sym_PERCENT_EQ] = ACTIONS(7769), + [anon_sym_PLUS_EQ] = ACTIONS(7769), + [anon_sym_DASH_EQ] = ACTIONS(7769), + [anon_sym_LT_LT_EQ] = ACTIONS(7769), + [anon_sym_GT_GT_EQ] = ACTIONS(7769), + [anon_sym_AMP_EQ] = ACTIONS(7769), + [anon_sym_CARET_EQ] = ACTIONS(7769), + [anon_sym_PIPE_EQ] = ACTIONS(7769), + [anon_sym_and_eq] = ACTIONS(7769), + [anon_sym_or_eq] = ACTIONS(7769), + [anon_sym_xor_eq] = ACTIONS(7769), + [anon_sym_LT_EQ_GT] = ACTIONS(7769), + [anon_sym_or] = ACTIONS(7767), + [anon_sym_and] = ACTIONS(7767), + [anon_sym_bitor] = ACTIONS(7769), + [anon_sym_xor] = ACTIONS(7767), + [anon_sym_bitand] = ACTIONS(7769), + [anon_sym_not_eq] = ACTIONS(7769), + [anon_sym_DASH_DASH] = ACTIONS(7769), + [anon_sym_PLUS_PLUS] = ACTIONS(7769), + [anon_sym_DOT] = ACTIONS(7767), + [anon_sym_DOT_STAR] = ACTIONS(7769), + [anon_sym_DASH_GT] = ACTIONS(7767), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7769), + [anon_sym_override] = ACTIONS(7769), + [anon_sym_requires] = ACTIONS(7769), + [anon_sym_DASH_GT_STAR] = ACTIONS(7769), }, - [STATE(3492)] = { - [sym_identifier] = ACTIONS(8935), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8937), - [anon_sym_COMMA] = ACTIONS(8937), - [anon_sym_RPAREN] = ACTIONS(8937), - [aux_sym_preproc_if_token2] = ACTIONS(8937), - [aux_sym_preproc_else_token1] = ACTIONS(8937), - [aux_sym_preproc_elif_token1] = ACTIONS(8935), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8937), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8937), - [anon_sym_LPAREN2] = ACTIONS(8937), - [anon_sym_DASH] = ACTIONS(8935), - [anon_sym_PLUS] = ACTIONS(8935), - [anon_sym_STAR] = ACTIONS(8935), - [anon_sym_SLASH] = ACTIONS(8935), - [anon_sym_PERCENT] = ACTIONS(8935), - [anon_sym_PIPE_PIPE] = ACTIONS(8937), - [anon_sym_AMP_AMP] = ACTIONS(8937), - [anon_sym_PIPE] = ACTIONS(8935), - [anon_sym_CARET] = ACTIONS(8935), - [anon_sym_AMP] = ACTIONS(8935), - [anon_sym_EQ_EQ] = ACTIONS(8937), - [anon_sym_BANG_EQ] = ACTIONS(8937), - [anon_sym_GT] = ACTIONS(8935), - [anon_sym_GT_EQ] = ACTIONS(8937), - [anon_sym_LT_EQ] = ACTIONS(8935), - [anon_sym_LT] = ACTIONS(8935), - [anon_sym_LT_LT] = ACTIONS(8935), - [anon_sym_GT_GT] = ACTIONS(8935), - [anon_sym_SEMI] = ACTIONS(8937), - [anon_sym___attribute__] = ACTIONS(8935), - [anon_sym___attribute] = ACTIONS(8935), - [anon_sym_COLON] = ACTIONS(8935), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8937), - [anon_sym_RBRACE] = ACTIONS(8937), - [anon_sym_LBRACK] = ACTIONS(8937), - [anon_sym_EQ] = ACTIONS(8935), - [anon_sym_QMARK] = ACTIONS(8937), - [anon_sym_STAR_EQ] = ACTIONS(8937), - [anon_sym_SLASH_EQ] = ACTIONS(8937), - [anon_sym_PERCENT_EQ] = ACTIONS(8937), - [anon_sym_PLUS_EQ] = ACTIONS(8937), - [anon_sym_DASH_EQ] = ACTIONS(8937), - [anon_sym_LT_LT_EQ] = ACTIONS(8937), - [anon_sym_GT_GT_EQ] = ACTIONS(8937), - [anon_sym_AMP_EQ] = ACTIONS(8937), - [anon_sym_CARET_EQ] = ACTIONS(8937), - [anon_sym_PIPE_EQ] = ACTIONS(8937), - [anon_sym_and_eq] = ACTIONS(8935), - [anon_sym_or_eq] = ACTIONS(8935), - [anon_sym_xor_eq] = ACTIONS(8935), - [anon_sym_LT_EQ_GT] = ACTIONS(8937), - [anon_sym_or] = ACTIONS(8935), - [anon_sym_and] = ACTIONS(8935), - [anon_sym_bitor] = ACTIONS(8935), - [anon_sym_xor] = ACTIONS(8935), - [anon_sym_bitand] = ACTIONS(8935), - [anon_sym_not_eq] = ACTIONS(8935), - [anon_sym_DASH_DASH] = ACTIONS(8937), - [anon_sym_PLUS_PLUS] = ACTIONS(8937), - [anon_sym_DOT] = ACTIONS(8935), - [anon_sym_DOT_STAR] = ACTIONS(8937), - [anon_sym_DASH_GT] = ACTIONS(8937), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8935), - [anon_sym_override] = ACTIONS(8935), - [anon_sym_requires] = ACTIONS(8935), - [anon_sym_COLON_RBRACK] = ACTIONS(8937), + [STATE(3002)] = { + [sym_identifier] = ACTIONS(8942), + [anon_sym_LPAREN2] = ACTIONS(8944), + [anon_sym_TILDE] = ACTIONS(8944), + [anon_sym_STAR] = ACTIONS(8944), + [anon_sym_PIPE_PIPE] = ACTIONS(8944), + [anon_sym_AMP_AMP] = ACTIONS(8944), + [anon_sym_AMP] = ACTIONS(8942), + [anon_sym___extension__] = ACTIONS(8942), + [anon_sym_virtual] = ACTIONS(8942), + [anon_sym_extern] = ACTIONS(8942), + [anon_sym___attribute__] = ACTIONS(8942), + [anon_sym___attribute] = ACTIONS(8942), + [anon_sym_using] = ACTIONS(8942), + [anon_sym_COLON_COLON] = ACTIONS(8944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8944), + [anon_sym___declspec] = ACTIONS(8942), + [anon_sym___based] = ACTIONS(8942), + [anon_sym___cdecl] = ACTIONS(8942), + [anon_sym___clrcall] = ACTIONS(8942), + [anon_sym___stdcall] = ACTIONS(8942), + [anon_sym___fastcall] = ACTIONS(8942), + [anon_sym___thiscall] = ACTIONS(8942), + [anon_sym___vectorcall] = ACTIONS(8942), + [anon_sym_LBRACE] = ACTIONS(8944), + [anon_sym_signed] = ACTIONS(8942), + [anon_sym_unsigned] = ACTIONS(8942), + [anon_sym_long] = ACTIONS(8942), + [anon_sym_short] = ACTIONS(8942), + [anon_sym_LBRACK] = ACTIONS(8942), + [anon_sym_static] = ACTIONS(8942), + [anon_sym_register] = ACTIONS(8942), + [anon_sym_inline] = ACTIONS(8942), + [anon_sym___inline] = ACTIONS(8942), + [anon_sym___inline__] = ACTIONS(8942), + [anon_sym___forceinline] = ACTIONS(8942), + [anon_sym_thread_local] = ACTIONS(8942), + [anon_sym___thread] = ACTIONS(8942), + [anon_sym_const] = ACTIONS(8942), + [anon_sym_constexpr] = ACTIONS(8942), + [anon_sym_volatile] = ACTIONS(8942), + [anon_sym_restrict] = ACTIONS(8942), + [anon_sym___restrict__] = ACTIONS(8942), + [anon_sym__Atomic] = ACTIONS(8942), + [anon_sym__Noreturn] = ACTIONS(8942), + [anon_sym_noreturn] = ACTIONS(8942), + [anon_sym__Nonnull] = ACTIONS(8942), + [anon_sym_mutable] = ACTIONS(8942), + [anon_sym_constinit] = ACTIONS(8942), + [anon_sym_consteval] = ACTIONS(8942), + [anon_sym_alignas] = ACTIONS(8942), + [anon_sym__Alignas] = ACTIONS(8942), + [sym_primitive_type] = ACTIONS(8942), + [anon_sym_enum] = ACTIONS(8942), + [anon_sym_class] = ACTIONS(8942), + [anon_sym_struct] = ACTIONS(8942), + [anon_sym_union] = ACTIONS(8942), + [anon_sym_or] = ACTIONS(8942), + [anon_sym_and] = ACTIONS(8942), + [anon_sym_typename] = ACTIONS(8942), + [anon_sym_DASH_GT] = ACTIONS(8944), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8942), + [anon_sym_decltype] = ACTIONS(8942), + [anon_sym_explicit] = ACTIONS(8942), + [anon_sym_template] = ACTIONS(8942), + [anon_sym_operator] = ACTIONS(8942), + [anon_sym_friend] = ACTIONS(8942), + [anon_sym_noexcept] = ACTIONS(8942), + [anon_sym_throw] = ACTIONS(8942), + [anon_sym_concept] = ACTIONS(8942), + [anon_sym_LBRACK_COLON] = ACTIONS(8944), }, - [STATE(3493)] = { - [sym_identifier] = ACTIONS(8606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8608), - [anon_sym_COMMA] = ACTIONS(8608), - [anon_sym_RPAREN] = ACTIONS(8608), - [aux_sym_preproc_if_token2] = ACTIONS(8608), - [aux_sym_preproc_else_token1] = ACTIONS(8608), - [aux_sym_preproc_elif_token1] = ACTIONS(8606), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8608), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8608), - [anon_sym_LPAREN2] = ACTIONS(8608), - [anon_sym_DASH] = ACTIONS(8606), - [anon_sym_PLUS] = ACTIONS(8606), - [anon_sym_STAR] = ACTIONS(8606), - [anon_sym_SLASH] = ACTIONS(8606), - [anon_sym_PERCENT] = ACTIONS(8606), - [anon_sym_PIPE_PIPE] = ACTIONS(8608), - [anon_sym_AMP_AMP] = ACTIONS(8608), - [anon_sym_PIPE] = ACTIONS(8606), - [anon_sym_CARET] = ACTIONS(8606), - [anon_sym_AMP] = ACTIONS(8606), - [anon_sym_EQ_EQ] = ACTIONS(8608), - [anon_sym_BANG_EQ] = ACTIONS(8608), - [anon_sym_GT] = ACTIONS(8606), - [anon_sym_GT_EQ] = ACTIONS(8608), - [anon_sym_LT_EQ] = ACTIONS(8606), - [anon_sym_LT] = ACTIONS(8606), - [anon_sym_LT_LT] = ACTIONS(8606), - [anon_sym_GT_GT] = ACTIONS(8606), - [anon_sym_SEMI] = ACTIONS(8608), - [anon_sym___attribute__] = ACTIONS(8606), - [anon_sym___attribute] = ACTIONS(8606), - [anon_sym_COLON] = ACTIONS(8606), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8608), - [anon_sym_RBRACE] = ACTIONS(8608), - [anon_sym_LBRACK] = ACTIONS(8608), - [anon_sym_EQ] = ACTIONS(8606), - [anon_sym_QMARK] = ACTIONS(8608), - [anon_sym_STAR_EQ] = ACTIONS(8608), - [anon_sym_SLASH_EQ] = ACTIONS(8608), - [anon_sym_PERCENT_EQ] = ACTIONS(8608), - [anon_sym_PLUS_EQ] = ACTIONS(8608), - [anon_sym_DASH_EQ] = ACTIONS(8608), - [anon_sym_LT_LT_EQ] = ACTIONS(8608), - [anon_sym_GT_GT_EQ] = ACTIONS(8608), - [anon_sym_AMP_EQ] = ACTIONS(8608), - [anon_sym_CARET_EQ] = ACTIONS(8608), - [anon_sym_PIPE_EQ] = ACTIONS(8608), - [anon_sym_and_eq] = ACTIONS(8606), - [anon_sym_or_eq] = ACTIONS(8606), - [anon_sym_xor_eq] = ACTIONS(8606), - [anon_sym_LT_EQ_GT] = ACTIONS(8608), - [anon_sym_or] = ACTIONS(8606), - [anon_sym_and] = ACTIONS(8606), - [anon_sym_bitor] = ACTIONS(8606), - [anon_sym_xor] = ACTIONS(8606), - [anon_sym_bitand] = ACTIONS(8606), - [anon_sym_not_eq] = ACTIONS(8606), - [anon_sym_DASH_DASH] = ACTIONS(8608), - [anon_sym_PLUS_PLUS] = ACTIONS(8608), - [anon_sym_DOT] = ACTIONS(8606), - [anon_sym_DOT_STAR] = ACTIONS(8608), - [anon_sym_DASH_GT] = ACTIONS(8608), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8606), - [anon_sym_override] = ACTIONS(8606), - [anon_sym_requires] = ACTIONS(8606), - [anon_sym_COLON_RBRACK] = ACTIONS(8608), + [STATE(3003)] = { + [sym_attribute_specifier] = STATE(3572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7433), + [anon_sym_COMMA] = ACTIONS(7433), + [anon_sym_RPAREN] = ACTIONS(7433), + [anon_sym_LPAREN2] = ACTIONS(7433), + [anon_sym_DASH] = ACTIONS(7431), + [anon_sym_PLUS] = ACTIONS(7431), + [anon_sym_STAR] = ACTIONS(7431), + [anon_sym_SLASH] = ACTIONS(7431), + [anon_sym_PERCENT] = ACTIONS(7431), + [anon_sym_PIPE_PIPE] = ACTIONS(7433), + [anon_sym_AMP_AMP] = ACTIONS(7433), + [anon_sym_PIPE] = ACTIONS(7431), + [anon_sym_CARET] = ACTIONS(7431), + [anon_sym_AMP] = ACTIONS(7431), + [anon_sym_EQ_EQ] = ACTIONS(7433), + [anon_sym_BANG_EQ] = ACTIONS(7433), + [anon_sym_GT] = ACTIONS(7431), + [anon_sym_GT_EQ] = ACTIONS(7433), + [anon_sym_LT_EQ] = ACTIONS(7431), + [anon_sym_LT] = ACTIONS(7431), + [anon_sym_LT_LT] = ACTIONS(7431), + [anon_sym_GT_GT] = ACTIONS(7431), + [anon_sym___extension__] = ACTIONS(7433), + [anon_sym___attribute__] = ACTIONS(8499), + [anon_sym___attribute] = ACTIONS(8501), + [anon_sym_LBRACE] = ACTIONS(7433), + [anon_sym_LBRACK] = ACTIONS(7433), + [anon_sym_EQ] = ACTIONS(7431), + [anon_sym_const] = ACTIONS(7431), + [anon_sym_constexpr] = ACTIONS(7433), + [anon_sym_volatile] = ACTIONS(7433), + [anon_sym_restrict] = ACTIONS(7433), + [anon_sym___restrict__] = ACTIONS(7433), + [anon_sym__Atomic] = ACTIONS(7433), + [anon_sym__Noreturn] = ACTIONS(7433), + [anon_sym_noreturn] = ACTIONS(7433), + [anon_sym__Nonnull] = ACTIONS(7433), + [anon_sym_mutable] = ACTIONS(7433), + [anon_sym_constinit] = ACTIONS(7433), + [anon_sym_consteval] = ACTIONS(7433), + [anon_sym_alignas] = ACTIONS(7433), + [anon_sym__Alignas] = ACTIONS(7433), + [anon_sym_QMARK] = ACTIONS(7433), + [anon_sym_STAR_EQ] = ACTIONS(7433), + [anon_sym_SLASH_EQ] = ACTIONS(7433), + [anon_sym_PERCENT_EQ] = ACTIONS(7433), + [anon_sym_PLUS_EQ] = ACTIONS(7433), + [anon_sym_DASH_EQ] = ACTIONS(7433), + [anon_sym_LT_LT_EQ] = ACTIONS(7433), + [anon_sym_GT_GT_EQ] = ACTIONS(7433), + [anon_sym_AMP_EQ] = ACTIONS(7433), + [anon_sym_CARET_EQ] = ACTIONS(7433), + [anon_sym_PIPE_EQ] = ACTIONS(7433), + [anon_sym_LT_EQ_GT] = ACTIONS(7433), + [anon_sym_or] = ACTIONS(7433), + [anon_sym_and] = ACTIONS(7433), + [anon_sym_bitor] = ACTIONS(7433), + [anon_sym_xor] = ACTIONS(7433), + [anon_sym_bitand] = ACTIONS(7433), + [anon_sym_not_eq] = ACTIONS(7433), + [anon_sym_DASH_DASH] = ACTIONS(7433), + [anon_sym_PLUS_PLUS] = ACTIONS(7433), + [anon_sym_DOT] = ACTIONS(7431), + [anon_sym_DOT_STAR] = ACTIONS(7433), + [anon_sym_DASH_GT] = ACTIONS(7431), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7433), + [anon_sym_override] = ACTIONS(7433), + [anon_sym_requires] = ACTIONS(7433), + [anon_sym_DASH_GT_STAR] = ACTIONS(7433), }, - [STATE(3494)] = { - [sym_identifier] = ACTIONS(8939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8941), - [anon_sym_COMMA] = ACTIONS(8941), - [anon_sym_RPAREN] = ACTIONS(8941), - [aux_sym_preproc_if_token2] = ACTIONS(8941), - [aux_sym_preproc_else_token1] = ACTIONS(8941), - [aux_sym_preproc_elif_token1] = ACTIONS(8939), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8941), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8941), - [anon_sym_LPAREN2] = ACTIONS(8941), - [anon_sym_DASH] = ACTIONS(8939), - [anon_sym_PLUS] = ACTIONS(8939), - [anon_sym_STAR] = ACTIONS(8939), - [anon_sym_SLASH] = ACTIONS(8939), - [anon_sym_PERCENT] = ACTIONS(8939), - [anon_sym_PIPE_PIPE] = ACTIONS(8941), - [anon_sym_AMP_AMP] = ACTIONS(8943), - [anon_sym_PIPE] = ACTIONS(8939), - [anon_sym_CARET] = ACTIONS(8939), - [anon_sym_AMP] = ACTIONS(8939), - [anon_sym_EQ_EQ] = ACTIONS(8941), - [anon_sym_BANG_EQ] = ACTIONS(8941), - [anon_sym_GT] = ACTIONS(8939), - [anon_sym_GT_EQ] = ACTIONS(8941), - [anon_sym_LT_EQ] = ACTIONS(8939), - [anon_sym_LT] = ACTIONS(8939), - [anon_sym_LT_LT] = ACTIONS(8939), - [anon_sym_GT_GT] = ACTIONS(8939), - [anon_sym_SEMI] = ACTIONS(8941), - [anon_sym___attribute__] = ACTIONS(8939), - [anon_sym___attribute] = ACTIONS(8939), - [anon_sym_COLON] = ACTIONS(8939), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8941), - [anon_sym_RBRACE] = ACTIONS(8941), - [anon_sym_LBRACK] = ACTIONS(8941), - [anon_sym_EQ] = ACTIONS(8939), - [anon_sym_QMARK] = ACTIONS(8941), - [anon_sym_STAR_EQ] = ACTIONS(8941), - [anon_sym_SLASH_EQ] = ACTIONS(8941), - [anon_sym_PERCENT_EQ] = ACTIONS(8941), - [anon_sym_PLUS_EQ] = ACTIONS(8941), - [anon_sym_DASH_EQ] = ACTIONS(8941), - [anon_sym_LT_LT_EQ] = ACTIONS(8941), - [anon_sym_GT_GT_EQ] = ACTIONS(8941), - [anon_sym_AMP_EQ] = ACTIONS(8941), - [anon_sym_CARET_EQ] = ACTIONS(8941), - [anon_sym_PIPE_EQ] = ACTIONS(8941), - [anon_sym_and_eq] = ACTIONS(8939), - [anon_sym_or_eq] = ACTIONS(8939), - [anon_sym_xor_eq] = ACTIONS(8939), - [anon_sym_LT_EQ_GT] = ACTIONS(8941), - [anon_sym_or] = ACTIONS(8939), - [anon_sym_and] = ACTIONS(8945), - [anon_sym_bitor] = ACTIONS(8939), - [anon_sym_xor] = ACTIONS(8939), - [anon_sym_bitand] = ACTIONS(8939), - [anon_sym_not_eq] = ACTIONS(8939), - [anon_sym_DASH_DASH] = ACTIONS(8941), - [anon_sym_PLUS_PLUS] = ACTIONS(8941), - [anon_sym_DOT] = ACTIONS(8939), - [anon_sym_DOT_STAR] = ACTIONS(8941), - [anon_sym_DASH_GT] = ACTIONS(8941), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8939), - [anon_sym_override] = ACTIONS(8939), - [anon_sym_requires] = ACTIONS(8939), - [anon_sym_COLON_RBRACK] = ACTIONS(8941), + [STATE(3004)] = { + [sym_identifier] = ACTIONS(8946), + [anon_sym_LPAREN2] = ACTIONS(8948), + [anon_sym_TILDE] = ACTIONS(8948), + [anon_sym_STAR] = ACTIONS(8948), + [anon_sym_PIPE_PIPE] = ACTIONS(8948), + [anon_sym_AMP_AMP] = ACTIONS(8948), + [anon_sym_AMP] = ACTIONS(8946), + [anon_sym___extension__] = ACTIONS(8946), + [anon_sym_virtual] = ACTIONS(8946), + [anon_sym_extern] = ACTIONS(8946), + [anon_sym___attribute__] = ACTIONS(8946), + [anon_sym___attribute] = ACTIONS(8946), + [anon_sym_using] = ACTIONS(8946), + [anon_sym_COLON_COLON] = ACTIONS(8948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8948), + [anon_sym___declspec] = ACTIONS(8946), + [anon_sym___based] = ACTIONS(8946), + [anon_sym___cdecl] = ACTIONS(8946), + [anon_sym___clrcall] = ACTIONS(8946), + [anon_sym___stdcall] = ACTIONS(8946), + [anon_sym___fastcall] = ACTIONS(8946), + [anon_sym___thiscall] = ACTIONS(8946), + [anon_sym___vectorcall] = ACTIONS(8946), + [anon_sym_LBRACE] = ACTIONS(8948), + [anon_sym_signed] = ACTIONS(8946), + [anon_sym_unsigned] = ACTIONS(8946), + [anon_sym_long] = ACTIONS(8946), + [anon_sym_short] = ACTIONS(8946), + [anon_sym_LBRACK] = ACTIONS(8946), + [anon_sym_static] = ACTIONS(8946), + [anon_sym_register] = ACTIONS(8946), + [anon_sym_inline] = ACTIONS(8946), + [anon_sym___inline] = ACTIONS(8946), + [anon_sym___inline__] = ACTIONS(8946), + [anon_sym___forceinline] = ACTIONS(8946), + [anon_sym_thread_local] = ACTIONS(8946), + [anon_sym___thread] = ACTIONS(8946), + [anon_sym_const] = ACTIONS(8946), + [anon_sym_constexpr] = ACTIONS(8946), + [anon_sym_volatile] = ACTIONS(8946), + [anon_sym_restrict] = ACTIONS(8946), + [anon_sym___restrict__] = ACTIONS(8946), + [anon_sym__Atomic] = ACTIONS(8946), + [anon_sym__Noreturn] = ACTIONS(8946), + [anon_sym_noreturn] = ACTIONS(8946), + [anon_sym__Nonnull] = ACTIONS(8946), + [anon_sym_mutable] = ACTIONS(8946), + [anon_sym_constinit] = ACTIONS(8946), + [anon_sym_consteval] = ACTIONS(8946), + [anon_sym_alignas] = ACTIONS(8946), + [anon_sym__Alignas] = ACTIONS(8946), + [sym_primitive_type] = ACTIONS(8946), + [anon_sym_enum] = ACTIONS(8946), + [anon_sym_class] = ACTIONS(8946), + [anon_sym_struct] = ACTIONS(8946), + [anon_sym_union] = ACTIONS(8946), + [anon_sym_or] = ACTIONS(8946), + [anon_sym_and] = ACTIONS(8946), + [anon_sym_typename] = ACTIONS(8946), + [anon_sym_DASH_GT] = ACTIONS(8948), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8946), + [anon_sym_decltype] = ACTIONS(8946), + [anon_sym_explicit] = ACTIONS(8946), + [anon_sym_template] = ACTIONS(8946), + [anon_sym_operator] = ACTIONS(8946), + [anon_sym_friend] = ACTIONS(8946), + [anon_sym_noexcept] = ACTIONS(8946), + [anon_sym_throw] = ACTIONS(8946), + [anon_sym_concept] = ACTIONS(8946), + [anon_sym_LBRACK_COLON] = ACTIONS(8948), }, - [STATE(3495)] = { - [sym_attribute_declaration] = STATE(3648), - [sym_parameter_list] = STATE(3121), - [aux_sym_attributed_declarator_repeat1] = STATE(3648), - [sym_identifier] = ACTIONS(8947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8949), - [anon_sym_COMMA] = ACTIONS(8949), - [anon_sym_RPAREN] = ACTIONS(8949), - [aux_sym_preproc_if_token2] = ACTIONS(8949), - [aux_sym_preproc_else_token1] = ACTIONS(8949), - [aux_sym_preproc_elif_token1] = ACTIONS(8947), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8949), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8949), - [anon_sym_LPAREN2] = ACTIONS(8927), - [anon_sym_DASH] = ACTIONS(8947), - [anon_sym_PLUS] = ACTIONS(8947), - [anon_sym_STAR] = ACTIONS(8947), - [anon_sym_SLASH] = ACTIONS(8947), - [anon_sym_PERCENT] = ACTIONS(8947), - [anon_sym_PIPE_PIPE] = ACTIONS(8949), - [anon_sym_AMP_AMP] = ACTIONS(8949), - [anon_sym_PIPE] = ACTIONS(8947), - [anon_sym_CARET] = ACTIONS(8947), - [anon_sym_AMP] = ACTIONS(8947), - [anon_sym_EQ_EQ] = ACTIONS(8949), - [anon_sym_BANG_EQ] = ACTIONS(8949), - [anon_sym_GT] = ACTIONS(8947), - [anon_sym_GT_EQ] = ACTIONS(8949), - [anon_sym_LT_EQ] = ACTIONS(8947), - [anon_sym_LT] = ACTIONS(8947), - [anon_sym_LT_LT] = ACTIONS(8947), - [anon_sym_GT_GT] = ACTIONS(8947), - [anon_sym_SEMI] = ACTIONS(8949), - [anon_sym___attribute__] = ACTIONS(8947), - [anon_sym___attribute] = ACTIONS(8947), - [anon_sym_COLON] = ACTIONS(8947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_RBRACE] = ACTIONS(8949), - [anon_sym_LBRACK] = ACTIONS(8929), - [anon_sym_EQ] = ACTIONS(8947), - [anon_sym_QMARK] = ACTIONS(8949), - [anon_sym_STAR_EQ] = ACTIONS(8949), - [anon_sym_SLASH_EQ] = ACTIONS(8949), - [anon_sym_PERCENT_EQ] = ACTIONS(8949), - [anon_sym_PLUS_EQ] = ACTIONS(8949), - [anon_sym_DASH_EQ] = ACTIONS(8949), - [anon_sym_LT_LT_EQ] = ACTIONS(8949), - [anon_sym_GT_GT_EQ] = ACTIONS(8949), - [anon_sym_AMP_EQ] = ACTIONS(8949), - [anon_sym_CARET_EQ] = ACTIONS(8949), - [anon_sym_PIPE_EQ] = ACTIONS(8949), - [anon_sym_and_eq] = ACTIONS(8947), - [anon_sym_or_eq] = ACTIONS(8947), - [anon_sym_xor_eq] = ACTIONS(8947), - [anon_sym_LT_EQ_GT] = ACTIONS(8949), - [anon_sym_or] = ACTIONS(8947), - [anon_sym_and] = ACTIONS(8947), - [anon_sym_bitor] = ACTIONS(8947), - [anon_sym_xor] = ACTIONS(8947), - [anon_sym_bitand] = ACTIONS(8947), - [anon_sym_not_eq] = ACTIONS(8947), - [anon_sym_DASH_DASH] = ACTIONS(8949), - [anon_sym_PLUS_PLUS] = ACTIONS(8949), - [anon_sym_DOT] = ACTIONS(8947), - [anon_sym_DOT_STAR] = ACTIONS(8949), - [anon_sym_DASH_GT] = ACTIONS(8949), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(8949), + [STATE(3005)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7773), + [anon_sym_COMMA] = ACTIONS(7773), + [anon_sym_RPAREN] = ACTIONS(7773), + [anon_sym_LPAREN2] = ACTIONS(7773), + [anon_sym_DASH] = ACTIONS(7771), + [anon_sym_PLUS] = ACTIONS(7771), + [anon_sym_STAR] = ACTIONS(7771), + [anon_sym_SLASH] = ACTIONS(7771), + [anon_sym_PERCENT] = ACTIONS(7771), + [anon_sym_PIPE_PIPE] = ACTIONS(7773), + [anon_sym_AMP_AMP] = ACTIONS(7773), + [anon_sym_PIPE] = ACTIONS(7771), + [anon_sym_CARET] = ACTIONS(7771), + [anon_sym_AMP] = ACTIONS(7771), + [anon_sym_EQ_EQ] = ACTIONS(7773), + [anon_sym_BANG_EQ] = ACTIONS(7773), + [anon_sym_GT] = ACTIONS(7771), + [anon_sym_GT_EQ] = ACTIONS(7773), + [anon_sym_LT_EQ] = ACTIONS(7771), + [anon_sym_LT] = ACTIONS(7771), + [anon_sym_LT_LT] = ACTIONS(7771), + [anon_sym_GT_GT] = ACTIONS(7771), + [anon_sym___extension__] = ACTIONS(7773), + [anon_sym_LBRACE] = ACTIONS(7773), + [anon_sym_LBRACK] = ACTIONS(7773), + [anon_sym_EQ] = ACTIONS(7771), + [anon_sym_const] = ACTIONS(7771), + [anon_sym_constexpr] = ACTIONS(7773), + [anon_sym_volatile] = ACTIONS(7773), + [anon_sym_restrict] = ACTIONS(7773), + [anon_sym___restrict__] = ACTIONS(7773), + [anon_sym__Atomic] = ACTIONS(7773), + [anon_sym__Noreturn] = ACTIONS(7773), + [anon_sym_noreturn] = ACTIONS(7773), + [anon_sym__Nonnull] = ACTIONS(7773), + [anon_sym_mutable] = ACTIONS(7773), + [anon_sym_constinit] = ACTIONS(7773), + [anon_sym_consteval] = ACTIONS(7773), + [anon_sym_alignas] = ACTIONS(7773), + [anon_sym__Alignas] = ACTIONS(7773), + [anon_sym_QMARK] = ACTIONS(7773), + [anon_sym_STAR_EQ] = ACTIONS(7773), + [anon_sym_SLASH_EQ] = ACTIONS(7773), + [anon_sym_PERCENT_EQ] = ACTIONS(7773), + [anon_sym_PLUS_EQ] = ACTIONS(7773), + [anon_sym_DASH_EQ] = ACTIONS(7773), + [anon_sym_LT_LT_EQ] = ACTIONS(7773), + [anon_sym_GT_GT_EQ] = ACTIONS(7773), + [anon_sym_AMP_EQ] = ACTIONS(7773), + [anon_sym_CARET_EQ] = ACTIONS(7773), + [anon_sym_PIPE_EQ] = ACTIONS(7773), + [anon_sym_and_eq] = ACTIONS(7773), + [anon_sym_or_eq] = ACTIONS(7773), + [anon_sym_xor_eq] = ACTIONS(7773), + [anon_sym_LT_EQ_GT] = ACTIONS(7773), + [anon_sym_or] = ACTIONS(7771), + [anon_sym_and] = ACTIONS(7771), + [anon_sym_bitor] = ACTIONS(7773), + [anon_sym_xor] = ACTIONS(7771), + [anon_sym_bitand] = ACTIONS(7773), + [anon_sym_not_eq] = ACTIONS(7773), + [anon_sym_DASH_DASH] = ACTIONS(7773), + [anon_sym_PLUS_PLUS] = ACTIONS(7773), + [anon_sym_DOT] = ACTIONS(7771), + [anon_sym_DOT_STAR] = ACTIONS(7773), + [anon_sym_DASH_GT] = ACTIONS(7771), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7773), + [anon_sym_override] = ACTIONS(7773), + [anon_sym_requires] = ACTIONS(7773), + [anon_sym_DASH_GT_STAR] = ACTIONS(7773), }, - [STATE(3496)] = { - [sym_identifier] = ACTIONS(2795), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2793), - [anon_sym_COMMA] = ACTIONS(2793), - [anon_sym_RPAREN] = ACTIONS(2793), - [aux_sym_preproc_if_token2] = ACTIONS(2793), - [aux_sym_preproc_else_token1] = ACTIONS(2793), - [aux_sym_preproc_elif_token1] = ACTIONS(2795), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2793), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2793), - [anon_sym_LPAREN2] = ACTIONS(2793), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2795), - [anon_sym_SLASH] = ACTIONS(2795), - [anon_sym_PERCENT] = ACTIONS(2795), - [anon_sym_PIPE_PIPE] = ACTIONS(2793), - [anon_sym_AMP_AMP] = ACTIONS(2793), - [anon_sym_PIPE] = ACTIONS(2795), - [anon_sym_CARET] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2795), - [anon_sym_EQ_EQ] = ACTIONS(2793), - [anon_sym_BANG_EQ] = ACTIONS(2793), - [anon_sym_GT] = ACTIONS(2795), - [anon_sym_GT_EQ] = ACTIONS(2793), - [anon_sym_LT_EQ] = ACTIONS(2795), - [anon_sym_LT] = ACTIONS(2795), - [anon_sym_LT_LT] = ACTIONS(2795), - [anon_sym_GT_GT] = ACTIONS(2795), - [anon_sym_SEMI] = ACTIONS(2793), - [anon_sym___attribute__] = ACTIONS(2795), - [anon_sym___attribute] = ACTIONS(2795), - [anon_sym_COLON] = ACTIONS(2795), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2793), - [anon_sym_RBRACE] = ACTIONS(2793), - [anon_sym_LBRACK] = ACTIONS(2793), - [anon_sym_EQ] = ACTIONS(2795), - [anon_sym_QMARK] = ACTIONS(2793), - [anon_sym_STAR_EQ] = ACTIONS(2793), - [anon_sym_SLASH_EQ] = ACTIONS(2793), - [anon_sym_PERCENT_EQ] = ACTIONS(2793), - [anon_sym_PLUS_EQ] = ACTIONS(2793), - [anon_sym_DASH_EQ] = ACTIONS(2793), - [anon_sym_LT_LT_EQ] = ACTIONS(2793), - [anon_sym_GT_GT_EQ] = ACTIONS(2793), - [anon_sym_AMP_EQ] = ACTIONS(2793), - [anon_sym_CARET_EQ] = ACTIONS(2793), - [anon_sym_PIPE_EQ] = ACTIONS(2793), - [anon_sym_and_eq] = ACTIONS(2795), - [anon_sym_or_eq] = ACTIONS(2795), - [anon_sym_xor_eq] = ACTIONS(2795), - [anon_sym_LT_EQ_GT] = ACTIONS(2793), - [anon_sym_or] = ACTIONS(2795), - [anon_sym_and] = ACTIONS(2795), - [anon_sym_bitor] = ACTIONS(2795), - [anon_sym_xor] = ACTIONS(2795), - [anon_sym_bitand] = ACTIONS(2795), - [anon_sym_not_eq] = ACTIONS(2795), - [anon_sym_DASH_DASH] = ACTIONS(2793), - [anon_sym_PLUS_PLUS] = ACTIONS(2793), - [anon_sym_DOT] = ACTIONS(2795), - [anon_sym_DOT_STAR] = ACTIONS(2793), - [anon_sym_DASH_GT] = ACTIONS(2793), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2795), - [anon_sym_override] = ACTIONS(2795), - [anon_sym_requires] = ACTIONS(2795), - [anon_sym_COLON_RBRACK] = ACTIONS(2793), + [STATE(3006)] = { + [sym_identifier] = ACTIONS(8950), + [anon_sym_LPAREN2] = ACTIONS(8952), + [anon_sym_TILDE] = ACTIONS(8952), + [anon_sym_STAR] = ACTIONS(8952), + [anon_sym_PIPE_PIPE] = ACTIONS(8952), + [anon_sym_AMP_AMP] = ACTIONS(8952), + [anon_sym_AMP] = ACTIONS(8950), + [anon_sym___extension__] = ACTIONS(8950), + [anon_sym_virtual] = ACTIONS(8950), + [anon_sym_extern] = ACTIONS(8950), + [anon_sym___attribute__] = ACTIONS(8950), + [anon_sym___attribute] = ACTIONS(8950), + [anon_sym_using] = ACTIONS(8950), + [anon_sym_COLON_COLON] = ACTIONS(8952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8952), + [anon_sym___declspec] = ACTIONS(8950), + [anon_sym___based] = ACTIONS(8950), + [anon_sym___cdecl] = ACTIONS(8950), + [anon_sym___clrcall] = ACTIONS(8950), + [anon_sym___stdcall] = ACTIONS(8950), + [anon_sym___fastcall] = ACTIONS(8950), + [anon_sym___thiscall] = ACTIONS(8950), + [anon_sym___vectorcall] = ACTIONS(8950), + [anon_sym_LBRACE] = ACTIONS(8952), + [anon_sym_signed] = ACTIONS(8950), + [anon_sym_unsigned] = ACTIONS(8950), + [anon_sym_long] = ACTIONS(8950), + [anon_sym_short] = ACTIONS(8950), + [anon_sym_LBRACK] = ACTIONS(8950), + [anon_sym_static] = ACTIONS(8950), + [anon_sym_register] = ACTIONS(8950), + [anon_sym_inline] = ACTIONS(8950), + [anon_sym___inline] = ACTIONS(8950), + [anon_sym___inline__] = ACTIONS(8950), + [anon_sym___forceinline] = ACTIONS(8950), + [anon_sym_thread_local] = ACTIONS(8950), + [anon_sym___thread] = ACTIONS(8950), + [anon_sym_const] = ACTIONS(8950), + [anon_sym_constexpr] = ACTIONS(8950), + [anon_sym_volatile] = ACTIONS(8950), + [anon_sym_restrict] = ACTIONS(8950), + [anon_sym___restrict__] = ACTIONS(8950), + [anon_sym__Atomic] = ACTIONS(8950), + [anon_sym__Noreturn] = ACTIONS(8950), + [anon_sym_noreturn] = ACTIONS(8950), + [anon_sym__Nonnull] = ACTIONS(8950), + [anon_sym_mutable] = ACTIONS(8950), + [anon_sym_constinit] = ACTIONS(8950), + [anon_sym_consteval] = ACTIONS(8950), + [anon_sym_alignas] = ACTIONS(8950), + [anon_sym__Alignas] = ACTIONS(8950), + [sym_primitive_type] = ACTIONS(8950), + [anon_sym_enum] = ACTIONS(8950), + [anon_sym_class] = ACTIONS(8950), + [anon_sym_struct] = ACTIONS(8950), + [anon_sym_union] = ACTIONS(8950), + [anon_sym_or] = ACTIONS(8950), + [anon_sym_and] = ACTIONS(8950), + [anon_sym_typename] = ACTIONS(8950), + [anon_sym_DASH_GT] = ACTIONS(8952), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8950), + [anon_sym_decltype] = ACTIONS(8950), + [anon_sym_explicit] = ACTIONS(8950), + [anon_sym_template] = ACTIONS(8950), + [anon_sym_operator] = ACTIONS(8950), + [anon_sym_friend] = ACTIONS(8950), + [anon_sym_noexcept] = ACTIONS(8950), + [anon_sym_throw] = ACTIONS(8950), + [anon_sym_concept] = ACTIONS(8950), + [anon_sym_LBRACK_COLON] = ACTIONS(8952), }, - [STATE(3497)] = { - [sym_identifier] = ACTIONS(8087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8089), - [anon_sym_COMMA] = ACTIONS(8089), - [anon_sym_RPAREN] = ACTIONS(8089), - [aux_sym_preproc_if_token2] = ACTIONS(8089), - [aux_sym_preproc_else_token1] = ACTIONS(8089), - [aux_sym_preproc_elif_token1] = ACTIONS(8087), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8089), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8089), - [anon_sym_LPAREN2] = ACTIONS(8089), - [anon_sym_DASH] = ACTIONS(8087), - [anon_sym_PLUS] = ACTIONS(8087), - [anon_sym_STAR] = ACTIONS(8087), - [anon_sym_SLASH] = ACTIONS(8087), - [anon_sym_PERCENT] = ACTIONS(8087), - [anon_sym_PIPE_PIPE] = ACTIONS(8089), - [anon_sym_AMP_AMP] = ACTIONS(8089), - [anon_sym_PIPE] = ACTIONS(8087), - [anon_sym_CARET] = ACTIONS(8087), - [anon_sym_AMP] = ACTIONS(8087), - [anon_sym_EQ_EQ] = ACTIONS(8089), - [anon_sym_BANG_EQ] = ACTIONS(8089), - [anon_sym_GT] = ACTIONS(8087), - [anon_sym_GT_EQ] = ACTIONS(8089), - [anon_sym_LT_EQ] = ACTIONS(8087), - [anon_sym_LT] = ACTIONS(8087), - [anon_sym_LT_LT] = ACTIONS(8087), - [anon_sym_GT_GT] = ACTIONS(8087), - [anon_sym_SEMI] = ACTIONS(8089), - [anon_sym___attribute__] = ACTIONS(8087), - [anon_sym___attribute] = ACTIONS(8087), - [anon_sym_COLON] = ACTIONS(8087), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8089), - [anon_sym_RBRACE] = ACTIONS(8089), - [anon_sym_LBRACK] = ACTIONS(8089), - [anon_sym_EQ] = ACTIONS(8087), - [anon_sym_QMARK] = ACTIONS(8089), - [anon_sym_STAR_EQ] = ACTIONS(8089), - [anon_sym_SLASH_EQ] = ACTIONS(8089), - [anon_sym_PERCENT_EQ] = ACTIONS(8089), - [anon_sym_PLUS_EQ] = ACTIONS(8089), - [anon_sym_DASH_EQ] = ACTIONS(8089), - [anon_sym_LT_LT_EQ] = ACTIONS(8089), - [anon_sym_GT_GT_EQ] = ACTIONS(8089), - [anon_sym_AMP_EQ] = ACTIONS(8089), - [anon_sym_CARET_EQ] = ACTIONS(8089), - [anon_sym_PIPE_EQ] = ACTIONS(8089), - [anon_sym_and_eq] = ACTIONS(8087), - [anon_sym_or_eq] = ACTIONS(8087), - [anon_sym_xor_eq] = ACTIONS(8087), - [anon_sym_LT_EQ_GT] = ACTIONS(8089), - [anon_sym_or] = ACTIONS(8087), - [anon_sym_and] = ACTIONS(8087), - [anon_sym_bitor] = ACTIONS(8087), - [anon_sym_xor] = ACTIONS(8087), - [anon_sym_bitand] = ACTIONS(8087), - [anon_sym_not_eq] = ACTIONS(8087), - [anon_sym_DASH_DASH] = ACTIONS(8089), - [anon_sym_PLUS_PLUS] = ACTIONS(8089), - [anon_sym_DOT] = ACTIONS(8087), - [anon_sym_DOT_STAR] = ACTIONS(8089), - [anon_sym_DASH_GT] = ACTIONS(8089), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8087), - [anon_sym_override] = ACTIONS(8087), - [anon_sym_requires] = ACTIONS(8087), - [anon_sym_COLON_RBRACK] = ACTIONS(8089), + [STATE(3007)] = { + [sym_attribute_specifier] = STATE(3554), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7415), + [anon_sym_COMMA] = ACTIONS(7415), + [anon_sym_RPAREN] = ACTIONS(7415), + [anon_sym_LPAREN2] = ACTIONS(7415), + [anon_sym_DASH] = ACTIONS(7413), + [anon_sym_PLUS] = ACTIONS(7413), + [anon_sym_STAR] = ACTIONS(7413), + [anon_sym_SLASH] = ACTIONS(7413), + [anon_sym_PERCENT] = ACTIONS(7413), + [anon_sym_PIPE_PIPE] = ACTIONS(7415), + [anon_sym_AMP_AMP] = ACTIONS(7415), + [anon_sym_PIPE] = ACTIONS(7413), + [anon_sym_CARET] = ACTIONS(7413), + [anon_sym_AMP] = ACTIONS(7413), + [anon_sym_EQ_EQ] = ACTIONS(7415), + [anon_sym_BANG_EQ] = ACTIONS(7415), + [anon_sym_GT] = ACTIONS(7413), + [anon_sym_GT_EQ] = ACTIONS(7415), + [anon_sym_LT_EQ] = ACTIONS(7413), + [anon_sym_LT] = ACTIONS(7413), + [anon_sym_LT_LT] = ACTIONS(7413), + [anon_sym_GT_GT] = ACTIONS(7413), + [anon_sym___extension__] = ACTIONS(7415), + [anon_sym___attribute__] = ACTIONS(8499), + [anon_sym___attribute] = ACTIONS(8501), + [anon_sym_LBRACE] = ACTIONS(7415), + [anon_sym_LBRACK] = ACTIONS(7415), + [anon_sym_EQ] = ACTIONS(7413), + [anon_sym_const] = ACTIONS(7413), + [anon_sym_constexpr] = ACTIONS(7415), + [anon_sym_volatile] = ACTIONS(7415), + [anon_sym_restrict] = ACTIONS(7415), + [anon_sym___restrict__] = ACTIONS(7415), + [anon_sym__Atomic] = ACTIONS(7415), + [anon_sym__Noreturn] = ACTIONS(7415), + [anon_sym_noreturn] = ACTIONS(7415), + [anon_sym__Nonnull] = ACTIONS(7415), + [anon_sym_mutable] = ACTIONS(7415), + [anon_sym_constinit] = ACTIONS(7415), + [anon_sym_consteval] = ACTIONS(7415), + [anon_sym_alignas] = ACTIONS(7415), + [anon_sym__Alignas] = ACTIONS(7415), + [anon_sym_QMARK] = ACTIONS(7415), + [anon_sym_STAR_EQ] = ACTIONS(7415), + [anon_sym_SLASH_EQ] = ACTIONS(7415), + [anon_sym_PERCENT_EQ] = ACTIONS(7415), + [anon_sym_PLUS_EQ] = ACTIONS(7415), + [anon_sym_DASH_EQ] = ACTIONS(7415), + [anon_sym_LT_LT_EQ] = ACTIONS(7415), + [anon_sym_GT_GT_EQ] = ACTIONS(7415), + [anon_sym_AMP_EQ] = ACTIONS(7415), + [anon_sym_CARET_EQ] = ACTIONS(7415), + [anon_sym_PIPE_EQ] = ACTIONS(7415), + [anon_sym_LT_EQ_GT] = ACTIONS(7415), + [anon_sym_or] = ACTIONS(7415), + [anon_sym_and] = ACTIONS(7415), + [anon_sym_bitor] = ACTIONS(7415), + [anon_sym_xor] = ACTIONS(7415), + [anon_sym_bitand] = ACTIONS(7415), + [anon_sym_not_eq] = ACTIONS(7415), + [anon_sym_DASH_DASH] = ACTIONS(7415), + [anon_sym_PLUS_PLUS] = ACTIONS(7415), + [anon_sym_DOT] = ACTIONS(7413), + [anon_sym_DOT_STAR] = ACTIONS(7415), + [anon_sym_DASH_GT] = ACTIONS(7413), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7415), + [anon_sym_override] = ACTIONS(7415), + [anon_sym_requires] = ACTIONS(7415), + [anon_sym_DASH_GT_STAR] = ACTIONS(7415), }, - [STATE(3498)] = { - [sym_identifier] = ACTIONS(8665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8667), - [anon_sym_COMMA] = ACTIONS(8667), - [anon_sym_RPAREN] = ACTIONS(8667), - [aux_sym_preproc_if_token2] = ACTIONS(8667), - [aux_sym_preproc_else_token1] = ACTIONS(8667), - [aux_sym_preproc_elif_token1] = ACTIONS(8665), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8667), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8667), - [anon_sym_LPAREN2] = ACTIONS(8667), - [anon_sym_DASH] = ACTIONS(8665), - [anon_sym_PLUS] = ACTIONS(8665), - [anon_sym_STAR] = ACTIONS(8665), - [anon_sym_SLASH] = ACTIONS(8665), - [anon_sym_PERCENT] = ACTIONS(8665), - [anon_sym_PIPE_PIPE] = ACTIONS(8667), - [anon_sym_AMP_AMP] = ACTIONS(8667), - [anon_sym_PIPE] = ACTIONS(8665), - [anon_sym_CARET] = ACTIONS(8665), - [anon_sym_AMP] = ACTIONS(8665), - [anon_sym_EQ_EQ] = ACTIONS(8667), - [anon_sym_BANG_EQ] = ACTIONS(8667), - [anon_sym_GT] = ACTIONS(8665), - [anon_sym_GT_EQ] = ACTIONS(8667), - [anon_sym_LT_EQ] = ACTIONS(8665), - [anon_sym_LT] = ACTIONS(8665), - [anon_sym_LT_LT] = ACTIONS(8665), - [anon_sym_GT_GT] = ACTIONS(8665), - [anon_sym_SEMI] = ACTIONS(8667), - [anon_sym___attribute__] = ACTIONS(8665), - [anon_sym___attribute] = ACTIONS(8665), - [anon_sym_COLON] = ACTIONS(8665), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8667), - [anon_sym_RBRACE] = ACTIONS(8667), - [anon_sym_LBRACK] = ACTIONS(8667), - [anon_sym_EQ] = ACTIONS(8665), - [anon_sym_QMARK] = ACTIONS(8667), - [anon_sym_STAR_EQ] = ACTIONS(8667), - [anon_sym_SLASH_EQ] = ACTIONS(8667), - [anon_sym_PERCENT_EQ] = ACTIONS(8667), - [anon_sym_PLUS_EQ] = ACTIONS(8667), - [anon_sym_DASH_EQ] = ACTIONS(8667), - [anon_sym_LT_LT_EQ] = ACTIONS(8667), - [anon_sym_GT_GT_EQ] = ACTIONS(8667), - [anon_sym_AMP_EQ] = ACTIONS(8667), - [anon_sym_CARET_EQ] = ACTIONS(8667), - [anon_sym_PIPE_EQ] = ACTIONS(8667), - [anon_sym_and_eq] = ACTIONS(8665), - [anon_sym_or_eq] = ACTIONS(8665), - [anon_sym_xor_eq] = ACTIONS(8665), - [anon_sym_LT_EQ_GT] = ACTIONS(8667), - [anon_sym_or] = ACTIONS(8665), - [anon_sym_and] = ACTIONS(8665), - [anon_sym_bitor] = ACTIONS(8665), - [anon_sym_xor] = ACTIONS(8665), - [anon_sym_bitand] = ACTIONS(8665), - [anon_sym_not_eq] = ACTIONS(8665), - [anon_sym_DASH_DASH] = ACTIONS(8667), - [anon_sym_PLUS_PLUS] = ACTIONS(8667), - [anon_sym_DOT] = ACTIONS(8665), - [anon_sym_DOT_STAR] = ACTIONS(8667), - [anon_sym_DASH_GT] = ACTIONS(8667), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8665), - [anon_sym_override] = ACTIONS(8665), - [anon_sym_requires] = ACTIONS(8665), - [anon_sym_COLON_RBRACK] = ACTIONS(8667), + [STATE(3008)] = { + [sym_attribute_specifier] = STATE(3556), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7429), + [anon_sym_COMMA] = ACTIONS(7429), + [anon_sym_RPAREN] = ACTIONS(7429), + [anon_sym_LPAREN2] = ACTIONS(7429), + [anon_sym_DASH] = ACTIONS(7427), + [anon_sym_PLUS] = ACTIONS(7427), + [anon_sym_STAR] = ACTIONS(7427), + [anon_sym_SLASH] = ACTIONS(7427), + [anon_sym_PERCENT] = ACTIONS(7427), + [anon_sym_PIPE_PIPE] = ACTIONS(7429), + [anon_sym_AMP_AMP] = ACTIONS(7429), + [anon_sym_PIPE] = ACTIONS(7427), + [anon_sym_CARET] = ACTIONS(7427), + [anon_sym_AMP] = ACTIONS(7427), + [anon_sym_EQ_EQ] = ACTIONS(7429), + [anon_sym_BANG_EQ] = ACTIONS(7429), + [anon_sym_GT] = ACTIONS(7427), + [anon_sym_GT_EQ] = ACTIONS(7429), + [anon_sym_LT_EQ] = ACTIONS(7427), + [anon_sym_LT] = ACTIONS(7427), + [anon_sym_LT_LT] = ACTIONS(7427), + [anon_sym_GT_GT] = ACTIONS(7427), + [anon_sym___extension__] = ACTIONS(7429), + [anon_sym___attribute__] = ACTIONS(8499), + [anon_sym___attribute] = ACTIONS(8501), + [anon_sym_LBRACE] = ACTIONS(7429), + [anon_sym_LBRACK] = ACTIONS(7429), + [anon_sym_EQ] = ACTIONS(7427), + [anon_sym_const] = ACTIONS(7427), + [anon_sym_constexpr] = ACTIONS(7429), + [anon_sym_volatile] = ACTIONS(7429), + [anon_sym_restrict] = ACTIONS(7429), + [anon_sym___restrict__] = ACTIONS(7429), + [anon_sym__Atomic] = ACTIONS(7429), + [anon_sym__Noreturn] = ACTIONS(7429), + [anon_sym_noreturn] = ACTIONS(7429), + [anon_sym__Nonnull] = ACTIONS(7429), + [anon_sym_mutable] = ACTIONS(7429), + [anon_sym_constinit] = ACTIONS(7429), + [anon_sym_consteval] = ACTIONS(7429), + [anon_sym_alignas] = ACTIONS(7429), + [anon_sym__Alignas] = ACTIONS(7429), + [anon_sym_QMARK] = ACTIONS(7429), + [anon_sym_STAR_EQ] = ACTIONS(7429), + [anon_sym_SLASH_EQ] = ACTIONS(7429), + [anon_sym_PERCENT_EQ] = ACTIONS(7429), + [anon_sym_PLUS_EQ] = ACTIONS(7429), + [anon_sym_DASH_EQ] = ACTIONS(7429), + [anon_sym_LT_LT_EQ] = ACTIONS(7429), + [anon_sym_GT_GT_EQ] = ACTIONS(7429), + [anon_sym_AMP_EQ] = ACTIONS(7429), + [anon_sym_CARET_EQ] = ACTIONS(7429), + [anon_sym_PIPE_EQ] = ACTIONS(7429), + [anon_sym_LT_EQ_GT] = ACTIONS(7429), + [anon_sym_or] = ACTIONS(7429), + [anon_sym_and] = ACTIONS(7429), + [anon_sym_bitor] = ACTIONS(7429), + [anon_sym_xor] = ACTIONS(7429), + [anon_sym_bitand] = ACTIONS(7429), + [anon_sym_not_eq] = ACTIONS(7429), + [anon_sym_DASH_DASH] = ACTIONS(7429), + [anon_sym_PLUS_PLUS] = ACTIONS(7429), + [anon_sym_DOT] = ACTIONS(7427), + [anon_sym_DOT_STAR] = ACTIONS(7429), + [anon_sym_DASH_GT] = ACTIONS(7427), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7429), + [anon_sym_override] = ACTIONS(7429), + [anon_sym_requires] = ACTIONS(7429), + [anon_sym_DASH_GT_STAR] = ACTIONS(7429), }, - [STATE(3499)] = { - [sym_identifier] = ACTIONS(8516), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8518), - [anon_sym_COMMA] = ACTIONS(8518), - [anon_sym_RPAREN] = ACTIONS(8518), - [aux_sym_preproc_if_token2] = ACTIONS(8518), - [aux_sym_preproc_else_token1] = ACTIONS(8518), - [aux_sym_preproc_elif_token1] = ACTIONS(8516), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8518), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8518), - [anon_sym_LPAREN2] = ACTIONS(8518), - [anon_sym_DASH] = ACTIONS(8516), - [anon_sym_PLUS] = ACTIONS(8516), - [anon_sym_STAR] = ACTIONS(8516), - [anon_sym_SLASH] = ACTIONS(8516), - [anon_sym_PERCENT] = ACTIONS(8516), - [anon_sym_PIPE_PIPE] = ACTIONS(8518), - [anon_sym_AMP_AMP] = ACTIONS(8518), - [anon_sym_PIPE] = ACTIONS(8516), - [anon_sym_CARET] = ACTIONS(8516), - [anon_sym_AMP] = ACTIONS(8516), - [anon_sym_EQ_EQ] = ACTIONS(8518), - [anon_sym_BANG_EQ] = ACTIONS(8518), - [anon_sym_GT] = ACTIONS(8516), - [anon_sym_GT_EQ] = ACTIONS(8518), - [anon_sym_LT_EQ] = ACTIONS(8516), - [anon_sym_LT] = ACTIONS(8516), - [anon_sym_LT_LT] = ACTIONS(8516), - [anon_sym_GT_GT] = ACTIONS(8516), - [anon_sym_SEMI] = ACTIONS(8518), - [anon_sym___attribute__] = ACTIONS(8516), - [anon_sym___attribute] = ACTIONS(8516), - [anon_sym_COLON] = ACTIONS(8516), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8518), - [anon_sym_RBRACE] = ACTIONS(8518), - [anon_sym_LBRACK] = ACTIONS(8518), - [anon_sym_EQ] = ACTIONS(8516), - [anon_sym_QMARK] = ACTIONS(8518), - [anon_sym_STAR_EQ] = ACTIONS(8518), - [anon_sym_SLASH_EQ] = ACTIONS(8518), - [anon_sym_PERCENT_EQ] = ACTIONS(8518), - [anon_sym_PLUS_EQ] = ACTIONS(8518), - [anon_sym_DASH_EQ] = ACTIONS(8518), - [anon_sym_LT_LT_EQ] = ACTIONS(8518), - [anon_sym_GT_GT_EQ] = ACTIONS(8518), - [anon_sym_AMP_EQ] = ACTIONS(8518), - [anon_sym_CARET_EQ] = ACTIONS(8518), - [anon_sym_PIPE_EQ] = ACTIONS(8518), - [anon_sym_and_eq] = ACTIONS(8516), - [anon_sym_or_eq] = ACTIONS(8516), - [anon_sym_xor_eq] = ACTIONS(8516), - [anon_sym_LT_EQ_GT] = ACTIONS(8518), - [anon_sym_or] = ACTIONS(8516), - [anon_sym_and] = ACTIONS(8516), - [anon_sym_bitor] = ACTIONS(8516), - [anon_sym_xor] = ACTIONS(8516), - [anon_sym_bitand] = ACTIONS(8516), - [anon_sym_not_eq] = ACTIONS(8516), - [anon_sym_DASH_DASH] = ACTIONS(8518), - [anon_sym_PLUS_PLUS] = ACTIONS(8518), - [anon_sym_DOT] = ACTIONS(8516), - [anon_sym_DOT_STAR] = ACTIONS(8518), - [anon_sym_DASH_GT] = ACTIONS(8518), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8516), - [anon_sym_override] = ACTIONS(8516), - [anon_sym_requires] = ACTIONS(8516), - [anon_sym_COLON_RBRACK] = ACTIONS(8518), + [STATE(3009)] = { + [sym_identifier] = ACTIONS(8954), + [anon_sym_LPAREN2] = ACTIONS(8956), + [anon_sym_TILDE] = ACTIONS(8956), + [anon_sym_STAR] = ACTIONS(8956), + [anon_sym_PIPE_PIPE] = ACTIONS(8956), + [anon_sym_AMP_AMP] = ACTIONS(8956), + [anon_sym_AMP] = ACTIONS(8954), + [anon_sym___extension__] = ACTIONS(8954), + [anon_sym_virtual] = ACTIONS(8954), + [anon_sym_extern] = ACTIONS(8954), + [anon_sym___attribute__] = ACTIONS(8954), + [anon_sym___attribute] = ACTIONS(8954), + [anon_sym_using] = ACTIONS(8954), + [anon_sym_COLON_COLON] = ACTIONS(8956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8956), + [anon_sym___declspec] = ACTIONS(8954), + [anon_sym___based] = ACTIONS(8954), + [anon_sym___cdecl] = ACTIONS(8954), + [anon_sym___clrcall] = ACTIONS(8954), + [anon_sym___stdcall] = ACTIONS(8954), + [anon_sym___fastcall] = ACTIONS(8954), + [anon_sym___thiscall] = ACTIONS(8954), + [anon_sym___vectorcall] = ACTIONS(8954), + [anon_sym_LBRACE] = ACTIONS(8956), + [anon_sym_signed] = ACTIONS(8954), + [anon_sym_unsigned] = ACTIONS(8954), + [anon_sym_long] = ACTIONS(8954), + [anon_sym_short] = ACTIONS(8954), + [anon_sym_LBRACK] = ACTIONS(8954), + [anon_sym_static] = ACTIONS(8954), + [anon_sym_register] = ACTIONS(8954), + [anon_sym_inline] = ACTIONS(8954), + [anon_sym___inline] = ACTIONS(8954), + [anon_sym___inline__] = ACTIONS(8954), + [anon_sym___forceinline] = ACTIONS(8954), + [anon_sym_thread_local] = ACTIONS(8954), + [anon_sym___thread] = ACTIONS(8954), + [anon_sym_const] = ACTIONS(8954), + [anon_sym_constexpr] = ACTIONS(8954), + [anon_sym_volatile] = ACTIONS(8954), + [anon_sym_restrict] = ACTIONS(8954), + [anon_sym___restrict__] = ACTIONS(8954), + [anon_sym__Atomic] = ACTIONS(8954), + [anon_sym__Noreturn] = ACTIONS(8954), + [anon_sym_noreturn] = ACTIONS(8954), + [anon_sym__Nonnull] = ACTIONS(8954), + [anon_sym_mutable] = ACTIONS(8954), + [anon_sym_constinit] = ACTIONS(8954), + [anon_sym_consteval] = ACTIONS(8954), + [anon_sym_alignas] = ACTIONS(8954), + [anon_sym__Alignas] = ACTIONS(8954), + [sym_primitive_type] = ACTIONS(8954), + [anon_sym_enum] = ACTIONS(8954), + [anon_sym_class] = ACTIONS(8954), + [anon_sym_struct] = ACTIONS(8954), + [anon_sym_union] = ACTIONS(8954), + [anon_sym_or] = ACTIONS(8954), + [anon_sym_and] = ACTIONS(8954), + [anon_sym_typename] = ACTIONS(8954), + [anon_sym_DASH_GT] = ACTIONS(8956), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8954), + [anon_sym_decltype] = ACTIONS(8954), + [anon_sym_explicit] = ACTIONS(8954), + [anon_sym_template] = ACTIONS(8954), + [anon_sym_operator] = ACTIONS(8954), + [anon_sym_friend] = ACTIONS(8954), + [anon_sym_noexcept] = ACTIONS(8954), + [anon_sym_throw] = ACTIONS(8954), + [anon_sym_concept] = ACTIONS(8954), + [anon_sym_LBRACK_COLON] = ACTIONS(8956), }, - [STATE(3500)] = { - [sym_identifier] = ACTIONS(8614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8616), - [anon_sym_COMMA] = ACTIONS(8616), - [anon_sym_RPAREN] = ACTIONS(8616), - [aux_sym_preproc_if_token2] = ACTIONS(8616), - [aux_sym_preproc_else_token1] = ACTIONS(8616), - [aux_sym_preproc_elif_token1] = ACTIONS(8614), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8616), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8616), - [anon_sym_LPAREN2] = ACTIONS(8616), - [anon_sym_DASH] = ACTIONS(8614), - [anon_sym_PLUS] = ACTIONS(8614), - [anon_sym_STAR] = ACTIONS(8614), - [anon_sym_SLASH] = ACTIONS(8614), - [anon_sym_PERCENT] = ACTIONS(8614), - [anon_sym_PIPE_PIPE] = ACTIONS(8616), - [anon_sym_AMP_AMP] = ACTIONS(8616), - [anon_sym_PIPE] = ACTIONS(8614), - [anon_sym_CARET] = ACTIONS(8614), - [anon_sym_AMP] = ACTIONS(8614), - [anon_sym_EQ_EQ] = ACTIONS(8616), - [anon_sym_BANG_EQ] = ACTIONS(8616), - [anon_sym_GT] = ACTIONS(8614), - [anon_sym_GT_EQ] = ACTIONS(8616), - [anon_sym_LT_EQ] = ACTIONS(8614), - [anon_sym_LT] = ACTIONS(8614), - [anon_sym_LT_LT] = ACTIONS(8614), - [anon_sym_GT_GT] = ACTIONS(8614), - [anon_sym_SEMI] = ACTIONS(8616), - [anon_sym___attribute__] = ACTIONS(8614), - [anon_sym___attribute] = ACTIONS(8614), - [anon_sym_COLON] = ACTIONS(8614), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8616), - [anon_sym_RBRACE] = ACTIONS(8616), + [STATE(3010)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4321), + [sym_ms_pointer_modifier] = STATE(3970), + [sym__abstract_declarator] = STATE(6902), + [sym_abstract_parenthesized_declarator] = STATE(6708), + [sym_abstract_pointer_declarator] = STATE(6708), + [sym_abstract_function_declarator] = STATE(6708), + [sym_abstract_array_declarator] = STATE(6708), + [sym_type_qualifier] = STATE(3986), + [sym_alignas_qualifier] = STATE(3945), + [sym_parameter_list] = STATE(2249), + [sym_abstract_reference_declarator] = STATE(6708), + [sym__function_declarator_seq] = STATE(6709), + [aux_sym__type_definition_type_repeat1] = STATE(3986), + [aux_sym_pointer_declarator_repeat1] = STATE(3970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(8600), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(8958), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6823), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(8960), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6823), + [anon_sym_AMP] = ACTIONS(8962), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6821), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6823), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(8608), + [sym_ms_restrict_modifier] = ACTIONS(8610), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8612), + [sym_ms_signed_ptr_modifier] = ACTIONS(8612), + [anon_sym__unaligned] = ACTIONS(8614), + [anon_sym___unaligned] = ACTIONS(8614), [anon_sym_LBRACK] = ACTIONS(8616), - [anon_sym_EQ] = ACTIONS(8614), - [anon_sym_QMARK] = ACTIONS(8616), - [anon_sym_STAR_EQ] = ACTIONS(8616), - [anon_sym_SLASH_EQ] = ACTIONS(8616), - [anon_sym_PERCENT_EQ] = ACTIONS(8616), - [anon_sym_PLUS_EQ] = ACTIONS(8616), - [anon_sym_DASH_EQ] = ACTIONS(8616), - [anon_sym_LT_LT_EQ] = ACTIONS(8616), - [anon_sym_GT_GT_EQ] = ACTIONS(8616), - [anon_sym_AMP_EQ] = ACTIONS(8616), - [anon_sym_CARET_EQ] = ACTIONS(8616), - [anon_sym_PIPE_EQ] = ACTIONS(8616), - [anon_sym_and_eq] = ACTIONS(8614), - [anon_sym_or_eq] = ACTIONS(8614), - [anon_sym_xor_eq] = ACTIONS(8614), - [anon_sym_LT_EQ_GT] = ACTIONS(8616), - [anon_sym_or] = ACTIONS(8614), - [anon_sym_and] = ACTIONS(8614), - [anon_sym_bitor] = ACTIONS(8614), - [anon_sym_xor] = ACTIONS(8614), - [anon_sym_bitand] = ACTIONS(8614), - [anon_sym_not_eq] = ACTIONS(8614), - [anon_sym_DASH_DASH] = ACTIONS(8616), - [anon_sym_PLUS_PLUS] = ACTIONS(8616), - [anon_sym_DOT] = ACTIONS(8614), - [anon_sym_DOT_STAR] = ACTIONS(8616), - [anon_sym_DASH_GT] = ACTIONS(8616), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8614), - [anon_sym_override] = ACTIONS(8614), - [anon_sym_requires] = ACTIONS(8614), - [anon_sym_COLON_RBRACK] = ACTIONS(8616), - }, - [STATE(3501)] = { - [sym_identifier] = ACTIONS(8599), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8601), - [anon_sym_COMMA] = ACTIONS(8601), - [anon_sym_RPAREN] = ACTIONS(8601), - [aux_sym_preproc_if_token2] = ACTIONS(8601), - [aux_sym_preproc_else_token1] = ACTIONS(8601), - [aux_sym_preproc_elif_token1] = ACTIONS(8599), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8601), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8601), - [anon_sym_LPAREN2] = ACTIONS(8601), - [anon_sym_DASH] = ACTIONS(8599), - [anon_sym_PLUS] = ACTIONS(8599), - [anon_sym_STAR] = ACTIONS(8599), - [anon_sym_SLASH] = ACTIONS(8599), - [anon_sym_PERCENT] = ACTIONS(8599), - [anon_sym_PIPE_PIPE] = ACTIONS(8601), - [anon_sym_AMP_AMP] = ACTIONS(8601), - [anon_sym_PIPE] = ACTIONS(8599), - [anon_sym_CARET] = ACTIONS(8599), - [anon_sym_AMP] = ACTIONS(8599), - [anon_sym_EQ_EQ] = ACTIONS(8601), - [anon_sym_BANG_EQ] = ACTIONS(8601), - [anon_sym_GT] = ACTIONS(8599), - [anon_sym_GT_EQ] = ACTIONS(8601), - [anon_sym_LT_EQ] = ACTIONS(8599), - [anon_sym_LT] = ACTIONS(8599), - [anon_sym_LT_LT] = ACTIONS(8599), - [anon_sym_GT_GT] = ACTIONS(8599), - [anon_sym_SEMI] = ACTIONS(8601), - [anon_sym___attribute__] = ACTIONS(8599), - [anon_sym___attribute] = ACTIONS(8599), - [anon_sym_COLON] = ACTIONS(8599), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8601), - [anon_sym_RBRACE] = ACTIONS(8601), - [anon_sym_LBRACK] = ACTIONS(8601), - [anon_sym_EQ] = ACTIONS(8599), - [anon_sym_QMARK] = ACTIONS(8601), - [anon_sym_STAR_EQ] = ACTIONS(8601), - [anon_sym_SLASH_EQ] = ACTIONS(8601), - [anon_sym_PERCENT_EQ] = ACTIONS(8601), - [anon_sym_PLUS_EQ] = ACTIONS(8601), - [anon_sym_DASH_EQ] = ACTIONS(8601), - [anon_sym_LT_LT_EQ] = ACTIONS(8601), - [anon_sym_GT_GT_EQ] = ACTIONS(8601), - [anon_sym_AMP_EQ] = ACTIONS(8601), - [anon_sym_CARET_EQ] = ACTIONS(8601), - [anon_sym_PIPE_EQ] = ACTIONS(8601), - [anon_sym_and_eq] = ACTIONS(8599), - [anon_sym_or_eq] = ACTIONS(8599), - [anon_sym_xor_eq] = ACTIONS(8599), - [anon_sym_LT_EQ_GT] = ACTIONS(8601), - [anon_sym_or] = ACTIONS(8599), - [anon_sym_and] = ACTIONS(8599), - [anon_sym_bitor] = ACTIONS(8599), - [anon_sym_xor] = ACTIONS(8599), - [anon_sym_bitand] = ACTIONS(8599), - [anon_sym_not_eq] = ACTIONS(8599), - [anon_sym_DASH_DASH] = ACTIONS(8601), - [anon_sym_PLUS_PLUS] = ACTIONS(8601), - [anon_sym_DOT] = ACTIONS(8599), - [anon_sym_DOT_STAR] = ACTIONS(8601), - [anon_sym_DASH_GT] = ACTIONS(8601), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8599), - [anon_sym_override] = ACTIONS(8599), - [anon_sym_requires] = ACTIONS(8599), - [anon_sym_COLON_RBRACK] = ACTIONS(8601), - }, - [STATE(3502)] = { - [sym_identifier] = ACTIONS(8618), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8620), - [anon_sym_COMMA] = ACTIONS(8620), - [anon_sym_RPAREN] = ACTIONS(8620), - [aux_sym_preproc_if_token2] = ACTIONS(8620), - [aux_sym_preproc_else_token1] = ACTIONS(8620), - [aux_sym_preproc_elif_token1] = ACTIONS(8618), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8620), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8620), - [anon_sym_LPAREN2] = ACTIONS(8620), - [anon_sym_DASH] = ACTIONS(8618), - [anon_sym_PLUS] = ACTIONS(8618), - [anon_sym_STAR] = ACTIONS(8618), - [anon_sym_SLASH] = ACTIONS(8618), - [anon_sym_PERCENT] = ACTIONS(8618), - [anon_sym_PIPE_PIPE] = ACTIONS(8620), - [anon_sym_AMP_AMP] = ACTIONS(8620), - [anon_sym_PIPE] = ACTIONS(8618), - [anon_sym_CARET] = ACTIONS(8618), - [anon_sym_AMP] = ACTIONS(8618), - [anon_sym_EQ_EQ] = ACTIONS(8620), - [anon_sym_BANG_EQ] = ACTIONS(8620), - [anon_sym_GT] = ACTIONS(8618), - [anon_sym_GT_EQ] = ACTIONS(8620), - [anon_sym_LT_EQ] = ACTIONS(8618), - [anon_sym_LT] = ACTIONS(8618), - [anon_sym_LT_LT] = ACTIONS(8618), - [anon_sym_GT_GT] = ACTIONS(8618), - [anon_sym_SEMI] = ACTIONS(8620), - [anon_sym___attribute__] = ACTIONS(8618), - [anon_sym___attribute] = ACTIONS(8618), - [anon_sym_COLON] = ACTIONS(8618), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8620), - [anon_sym_RBRACE] = ACTIONS(8620), - [anon_sym_LBRACK] = ACTIONS(8620), - [anon_sym_EQ] = ACTIONS(8618), - [anon_sym_QMARK] = ACTIONS(8620), - [anon_sym_STAR_EQ] = ACTIONS(8620), - [anon_sym_SLASH_EQ] = ACTIONS(8620), - [anon_sym_PERCENT_EQ] = ACTIONS(8620), - [anon_sym_PLUS_EQ] = ACTIONS(8620), - [anon_sym_DASH_EQ] = ACTIONS(8620), - [anon_sym_LT_LT_EQ] = ACTIONS(8620), - [anon_sym_GT_GT_EQ] = ACTIONS(8620), - [anon_sym_AMP_EQ] = ACTIONS(8620), - [anon_sym_CARET_EQ] = ACTIONS(8620), - [anon_sym_PIPE_EQ] = ACTIONS(8620), - [anon_sym_and_eq] = ACTIONS(8618), - [anon_sym_or_eq] = ACTIONS(8618), - [anon_sym_xor_eq] = ACTIONS(8618), - [anon_sym_LT_EQ_GT] = ACTIONS(8620), - [anon_sym_or] = ACTIONS(8618), - [anon_sym_and] = ACTIONS(8618), - [anon_sym_bitor] = ACTIONS(8618), - [anon_sym_xor] = ACTIONS(8618), - [anon_sym_bitand] = ACTIONS(8618), - [anon_sym_not_eq] = ACTIONS(8618), - [anon_sym_DASH_DASH] = ACTIONS(8620), - [anon_sym_PLUS_PLUS] = ACTIONS(8620), - [anon_sym_DOT] = ACTIONS(8618), - [anon_sym_DOT_STAR] = ACTIONS(8620), - [anon_sym_DASH_GT] = ACTIONS(8620), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8618), - [anon_sym_override] = ACTIONS(8618), - [anon_sym_requires] = ACTIONS(8618), - [anon_sym_COLON_RBRACK] = ACTIONS(8620), + [anon_sym_const] = ACTIONS(8618), + [anon_sym_constexpr] = ACTIONS(8608), + [anon_sym_volatile] = ACTIONS(8608), + [anon_sym_restrict] = ACTIONS(8608), + [anon_sym___restrict__] = ACTIONS(8608), + [anon_sym__Atomic] = ACTIONS(8608), + [anon_sym__Noreturn] = ACTIONS(8608), + [anon_sym_noreturn] = ACTIONS(8608), + [anon_sym__Nonnull] = ACTIONS(8608), + [anon_sym_mutable] = ACTIONS(8608), + [anon_sym_constinit] = ACTIONS(8608), + [anon_sym_consteval] = ACTIONS(8608), + [anon_sym_alignas] = ACTIONS(8620), + [anon_sym__Alignas] = ACTIONS(8620), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6823), + [anon_sym_and] = ACTIONS(6823), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6823), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6823), }, - [STATE(3503)] = { - [sym_string_literal] = STATE(4004), - [sym_template_argument_list] = STATE(5595), - [sym_raw_string_literal] = STATE(4004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(6713), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym_COLON] = ACTIONS(5268), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(5276), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5278), - [anon_sym_or_eq] = ACTIONS(5278), - [anon_sym_xor_eq] = ACTIONS(5278), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [STATE(3011)] = { + [sym__abstract_declarator] = STATE(6152), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(2488), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2069), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(2488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), + [anon_sym_COMMA] = ACTIONS(7355), + [anon_sym_RPAREN] = ACTIONS(7355), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7353), + [anon_sym_PLUS] = ACTIONS(7353), + [anon_sym_STAR] = ACTIONS(8111), + [anon_sym_SLASH] = ACTIONS(7353), + [anon_sym_PERCENT] = ACTIONS(7355), + [anon_sym_PIPE_PIPE] = ACTIONS(7355), + [anon_sym_AMP_AMP] = ACTIONS(8113), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_CARET] = ACTIONS(7355), + [anon_sym_AMP] = ACTIONS(8115), + [anon_sym_EQ_EQ] = ACTIONS(7355), + [anon_sym_BANG_EQ] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_EQ] = ACTIONS(7355), + [anon_sym_LT_EQ] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_LT_LT] = ACTIONS(7355), + [anon_sym_GT_GT] = ACTIONS(7355), + [anon_sym_SEMI] = ACTIONS(7355), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym_COLON] = ACTIONS(7353), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7355), + [anon_sym_RBRACE] = ACTIONS(7355), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(7355), + [anon_sym_LT_EQ_GT] = ACTIONS(7355), + [anon_sym_or] = ACTIONS(7355), + [anon_sym_and] = ACTIONS(7355), + [anon_sym_bitor] = ACTIONS(7355), + [anon_sym_xor] = ACTIONS(7355), + [anon_sym_bitand] = ACTIONS(7355), + [anon_sym_not_eq] = ACTIONS(7355), + [anon_sym_DASH_DASH] = ACTIONS(7355), + [anon_sym_PLUS_PLUS] = ACTIONS(7355), + [anon_sym_DOT] = ACTIONS(7353), + [anon_sym_DOT_STAR] = ACTIONS(7355), + [anon_sym_DASH_GT] = ACTIONS(7355), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7355), + [anon_sym_override] = ACTIONS(7355), + [anon_sym_requires] = ACTIONS(7355), + [anon_sym_COLON_RBRACK] = ACTIONS(7355), }, - [STATE(3504)] = { - [sym_identifier] = ACTIONS(6254), - [anon_sym_LPAREN2] = ACTIONS(6256), - [anon_sym_TILDE] = ACTIONS(6256), - [anon_sym_STAR] = ACTIONS(6256), - [anon_sym_PIPE_PIPE] = ACTIONS(6256), - [anon_sym_AMP_AMP] = ACTIONS(6256), - [anon_sym_AMP] = ACTIONS(6254), - [anon_sym___extension__] = ACTIONS(6254), - [anon_sym_virtual] = ACTIONS(6254), - [anon_sym_extern] = ACTIONS(6254), - [anon_sym___attribute__] = ACTIONS(6254), - [anon_sym___attribute] = ACTIONS(6254), - [anon_sym_using] = ACTIONS(6254), - [anon_sym_COLON_COLON] = ACTIONS(6256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6256), - [anon_sym___declspec] = ACTIONS(6254), - [anon_sym___based] = ACTIONS(6254), - [anon_sym___cdecl] = ACTIONS(6254), - [anon_sym___clrcall] = ACTIONS(6254), - [anon_sym___stdcall] = ACTIONS(6254), - [anon_sym___fastcall] = ACTIONS(6254), - [anon_sym___thiscall] = ACTIONS(6254), - [anon_sym___vectorcall] = ACTIONS(6254), - [anon_sym_signed] = ACTIONS(6254), - [anon_sym_unsigned] = ACTIONS(6254), - [anon_sym_long] = ACTIONS(6254), - [anon_sym_short] = ACTIONS(6254), - [anon_sym_LBRACK] = ACTIONS(6254), - [anon_sym_static] = ACTIONS(6254), - [anon_sym_register] = ACTIONS(6254), - [anon_sym_inline] = ACTIONS(6254), - [anon_sym___inline] = ACTIONS(6254), - [anon_sym___inline__] = ACTIONS(6254), - [anon_sym___forceinline] = ACTIONS(6254), - [anon_sym_thread_local] = ACTIONS(6254), - [anon_sym___thread] = ACTIONS(6254), - [anon_sym_const] = ACTIONS(6254), - [anon_sym_constexpr] = ACTIONS(6254), - [anon_sym_volatile] = ACTIONS(6254), - [anon_sym_restrict] = ACTIONS(6254), - [anon_sym___restrict__] = ACTIONS(6254), - [anon_sym__Atomic] = ACTIONS(6254), - [anon_sym__Noreturn] = ACTIONS(6254), - [anon_sym_noreturn] = ACTIONS(6254), - [anon_sym__Nonnull] = ACTIONS(6254), - [anon_sym_mutable] = ACTIONS(6254), - [anon_sym_constinit] = ACTIONS(6254), - [anon_sym_consteval] = ACTIONS(6254), - [anon_sym_alignas] = ACTIONS(6254), - [anon_sym__Alignas] = ACTIONS(6254), - [sym_primitive_type] = ACTIONS(6254), - [anon_sym_enum] = ACTIONS(6254), - [anon_sym_class] = ACTIONS(6254), - [anon_sym_struct] = ACTIONS(6254), - [anon_sym_union] = ACTIONS(6254), - [anon_sym_or] = ACTIONS(6254), - [anon_sym_and] = ACTIONS(6254), - [anon_sym_typename] = ACTIONS(6254), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6254), - [anon_sym_decltype] = ACTIONS(6254), - [anon_sym_explicit] = ACTIONS(6254), - [anon_sym_template] = ACTIONS(6254), - [anon_sym_operator] = ACTIONS(6254), - [anon_sym_friend] = ACTIONS(6254), - [anon_sym_concept] = ACTIONS(6254), - [anon_sym_LBRACK_COLON] = ACTIONS(6256), + [STATE(3012)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4309), + [sym_ms_pointer_modifier] = STATE(3032), + [sym__abstract_declarator] = STATE(6750), + [sym_abstract_parenthesized_declarator] = STATE(6607), + [sym_abstract_pointer_declarator] = STATE(6607), + [sym_abstract_function_declarator] = STATE(6607), + [sym_abstract_array_declarator] = STATE(6607), + [sym_type_qualifier] = STATE(3969), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2267), + [sym_abstract_reference_declarator] = STATE(6607), + [sym__function_declarator_seq] = STATE(6608), + [aux_sym__type_definition_type_repeat1] = STATE(3969), + [aux_sym_pointer_declarator_repeat1] = STATE(3032), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(8572), + [anon_sym_DASH] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6861), + [anon_sym_STAR] = ACTIONS(8964), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6859), + [anon_sym_PIPE_PIPE] = ACTIONS(6859), + [anon_sym_AMP_AMP] = ACTIONS(8966), + [anon_sym_PIPE] = ACTIONS(6861), + [anon_sym_CARET] = ACTIONS(6859), + [anon_sym_AMP] = ACTIONS(8968), + [anon_sym_EQ_EQ] = ACTIONS(6859), + [anon_sym_BANG_EQ] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6861), + [anon_sym_GT_EQ] = ACTIONS(6859), + [anon_sym_LT_EQ] = ACTIONS(6861), + [anon_sym_LT] = ACTIONS(6861), + [anon_sym_LT_LT] = ACTIONS(6859), + [anon_sym_GT_GT] = ACTIONS(6859), + [anon_sym___extension__] = ACTIONS(8580), + [sym_ms_restrict_modifier] = ACTIONS(8582), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8584), + [sym_ms_signed_ptr_modifier] = ACTIONS(8584), + [anon_sym__unaligned] = ACTIONS(8586), + [anon_sym___unaligned] = ACTIONS(8586), + [anon_sym_LBRACK] = ACTIONS(8588), + [anon_sym_RBRACK] = ACTIONS(6859), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8580), + [anon_sym_volatile] = ACTIONS(8580), + [anon_sym_restrict] = ACTIONS(8580), + [anon_sym___restrict__] = ACTIONS(8580), + [anon_sym__Atomic] = ACTIONS(8580), + [anon_sym__Noreturn] = ACTIONS(8580), + [anon_sym_noreturn] = ACTIONS(8580), + [anon_sym__Nonnull] = ACTIONS(8580), + [anon_sym_mutable] = ACTIONS(8580), + [anon_sym_constinit] = ACTIONS(8580), + [anon_sym_consteval] = ACTIONS(8580), + [anon_sym_alignas] = ACTIONS(8590), + [anon_sym__Alignas] = ACTIONS(8590), + [anon_sym_QMARK] = ACTIONS(6859), + [anon_sym_LT_EQ_GT] = ACTIONS(6859), + [anon_sym_or] = ACTIONS(6859), + [anon_sym_and] = ACTIONS(6859), + [anon_sym_bitor] = ACTIONS(6859), + [anon_sym_xor] = ACTIONS(6859), + [anon_sym_bitand] = ACTIONS(6859), + [anon_sym_not_eq] = ACTIONS(6859), + [anon_sym_DASH_DASH] = ACTIONS(6859), + [anon_sym_PLUS_PLUS] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6861), + [anon_sym_DOT_STAR] = ACTIONS(6859), + [anon_sym_DASH_GT] = ACTIONS(6859), + [sym_comment] = ACTIONS(3), }, - [STATE(3505)] = { - [sym_string_literal] = STATE(4004), - [sym_template_argument_list] = STATE(5595), - [sym_raw_string_literal] = STATE(4004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(6713), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym_COLON] = ACTIONS(5372), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(5276), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5278), - [anon_sym_or_eq] = ACTIONS(5278), - [anon_sym_xor_eq] = ACTIONS(5278), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [STATE(3013)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_attributes_end] = STATE(4235), + [sym__function_postfix] = STATE(3628), + [sym_trailing_return_type] = STATE(3075), + [sym_requires_clause] = STATE(3628), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym_SEMI] = ACTIONS(7791), + [anon_sym___attribute__] = ACTIONS(8330), + [anon_sym___attribute] = ACTIONS(8333), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8336), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7870), + [anon_sym_override] = ACTIONS(7870), + [anon_sym_requires] = ACTIONS(7873), }, - [STATE(3506)] = { - [sym_template_argument_list] = STATE(1956), - [sym_identifier] = ACTIONS(6753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6758), - [anon_sym_COMMA] = ACTIONS(6758), - [anon_sym_RPAREN] = ACTIONS(6758), - [aux_sym_preproc_if_token2] = ACTIONS(6758), - [aux_sym_preproc_else_token1] = ACTIONS(6758), - [aux_sym_preproc_elif_token1] = ACTIONS(6753), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6758), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6758), - [anon_sym_LPAREN2] = ACTIONS(6748), - [anon_sym_DASH] = ACTIONS(6753), - [anon_sym_PLUS] = ACTIONS(6753), - [anon_sym_STAR] = ACTIONS(6753), - [anon_sym_SLASH] = ACTIONS(6753), - [anon_sym_PERCENT] = ACTIONS(6753), - [anon_sym_PIPE_PIPE] = ACTIONS(6758), - [anon_sym_AMP_AMP] = ACTIONS(6758), - [anon_sym_PIPE] = ACTIONS(6753), - [anon_sym_CARET] = ACTIONS(6753), - [anon_sym_AMP] = ACTIONS(6753), - [anon_sym_EQ_EQ] = ACTIONS(6758), - [anon_sym_BANG_EQ] = ACTIONS(6758), - [anon_sym_GT] = ACTIONS(6753), - [anon_sym_GT_EQ] = ACTIONS(6758), - [anon_sym_LT_EQ] = ACTIONS(6753), - [anon_sym_LT] = ACTIONS(7037), - [anon_sym_LT_LT] = ACTIONS(6753), - [anon_sym_GT_GT] = ACTIONS(6753), - [anon_sym_SEMI] = ACTIONS(6758), - [anon_sym___attribute__] = ACTIONS(6753), - [anon_sym___attribute] = ACTIONS(6753), - [anon_sym_COLON] = ACTIONS(6753), - [anon_sym_COLON_COLON] = ACTIONS(6748), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6758), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_RBRACE] = ACTIONS(6758), - [anon_sym_LBRACK] = ACTIONS(6758), - [anon_sym_EQ] = ACTIONS(6753), - [anon_sym_QMARK] = ACTIONS(6758), - [anon_sym_STAR_EQ] = ACTIONS(6758), - [anon_sym_SLASH_EQ] = ACTIONS(6758), - [anon_sym_PERCENT_EQ] = ACTIONS(6758), - [anon_sym_PLUS_EQ] = ACTIONS(6758), - [anon_sym_DASH_EQ] = ACTIONS(6758), - [anon_sym_LT_LT_EQ] = ACTIONS(6758), - [anon_sym_GT_GT_EQ] = ACTIONS(6758), - [anon_sym_AMP_EQ] = ACTIONS(6758), - [anon_sym_CARET_EQ] = ACTIONS(6758), - [anon_sym_PIPE_EQ] = ACTIONS(6758), - [anon_sym_and_eq] = ACTIONS(6753), - [anon_sym_or_eq] = ACTIONS(6753), - [anon_sym_xor_eq] = ACTIONS(6753), - [anon_sym_LT_EQ_GT] = ACTIONS(6758), - [anon_sym_or] = ACTIONS(6753), - [anon_sym_and] = ACTIONS(6753), - [anon_sym_bitor] = ACTIONS(6753), - [anon_sym_xor] = ACTIONS(6753), - [anon_sym_bitand] = ACTIONS(6753), - [anon_sym_not_eq] = ACTIONS(6753), - [anon_sym_DASH_DASH] = ACTIONS(6758), - [anon_sym_PLUS_PLUS] = ACTIONS(6758), - [anon_sym_DOT] = ACTIONS(6753), - [anon_sym_DOT_STAR] = ACTIONS(6758), - [anon_sym_DASH_GT] = ACTIONS(6758), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6758), + [STATE(3014)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_attributes_end] = STATE(4236), + [sym__function_postfix] = STATE(3655), + [sym_trailing_return_type] = STATE(3076), + [sym_requires_clause] = STATE(3655), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym_SEMI] = ACTIONS(7966), + [anon_sym___attribute__] = ACTIONS(8391), + [anon_sym___attribute] = ACTIONS(8394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7966), + [anon_sym_or_eq] = ACTIONS(7966), + [anon_sym_xor_eq] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(8397), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7973), + [anon_sym_override] = ACTIONS(7973), + [anon_sym_requires] = ACTIONS(7976), }, - [STATE(3507)] = { - [sym_argument_list] = STATE(3794), - [sym_initializer_list] = STATE(3794), - [sym_identifier] = ACTIONS(8951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8953), - [anon_sym_COMMA] = ACTIONS(8953), - [anon_sym_RPAREN] = ACTIONS(8953), - [aux_sym_preproc_if_token2] = ACTIONS(8953), - [aux_sym_preproc_else_token1] = ACTIONS(8953), - [aux_sym_preproc_elif_token1] = ACTIONS(8951), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8953), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8953), - [anon_sym_LPAREN2] = ACTIONS(8808), - [anon_sym_DASH] = ACTIONS(8951), - [anon_sym_PLUS] = ACTIONS(8951), - [anon_sym_STAR] = ACTIONS(8951), - [anon_sym_SLASH] = ACTIONS(8951), - [anon_sym_PERCENT] = ACTIONS(8951), - [anon_sym_PIPE_PIPE] = ACTIONS(8953), - [anon_sym_AMP_AMP] = ACTIONS(8953), - [anon_sym_PIPE] = ACTIONS(8951), - [anon_sym_CARET] = ACTIONS(8951), - [anon_sym_AMP] = ACTIONS(8951), - [anon_sym_EQ_EQ] = ACTIONS(8953), - [anon_sym_BANG_EQ] = ACTIONS(8953), - [anon_sym_GT] = ACTIONS(8951), - [anon_sym_GT_EQ] = ACTIONS(8953), - [anon_sym_LT_EQ] = ACTIONS(8951), - [anon_sym_LT] = ACTIONS(8951), - [anon_sym_LT_LT] = ACTIONS(8951), - [anon_sym_GT_GT] = ACTIONS(8951), - [anon_sym_SEMI] = ACTIONS(8953), - [anon_sym___attribute__] = ACTIONS(8951), - [anon_sym___attribute] = ACTIONS(8951), - [anon_sym_COLON] = ACTIONS(8951), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8953), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_RBRACE] = ACTIONS(8953), - [anon_sym_LBRACK] = ACTIONS(8953), - [anon_sym_EQ] = ACTIONS(8951), - [anon_sym_QMARK] = ACTIONS(8953), - [anon_sym_STAR_EQ] = ACTIONS(8953), - [anon_sym_SLASH_EQ] = ACTIONS(8953), - [anon_sym_PERCENT_EQ] = ACTIONS(8953), - [anon_sym_PLUS_EQ] = ACTIONS(8953), - [anon_sym_DASH_EQ] = ACTIONS(8953), - [anon_sym_LT_LT_EQ] = ACTIONS(8953), - [anon_sym_GT_GT_EQ] = ACTIONS(8953), - [anon_sym_AMP_EQ] = ACTIONS(8953), - [anon_sym_CARET_EQ] = ACTIONS(8953), - [anon_sym_PIPE_EQ] = ACTIONS(8953), - [anon_sym_and_eq] = ACTIONS(8951), - [anon_sym_or_eq] = ACTIONS(8951), - [anon_sym_xor_eq] = ACTIONS(8951), - [anon_sym_LT_EQ_GT] = ACTIONS(8953), - [anon_sym_or] = ACTIONS(8951), - [anon_sym_and] = ACTIONS(8951), - [anon_sym_bitor] = ACTIONS(8951), - [anon_sym_xor] = ACTIONS(8951), - [anon_sym_bitand] = ACTIONS(8951), - [anon_sym_not_eq] = ACTIONS(8951), - [anon_sym_DASH_DASH] = ACTIONS(8953), - [anon_sym_PLUS_PLUS] = ACTIONS(8953), - [anon_sym_DOT] = ACTIONS(8951), - [anon_sym_DOT_STAR] = ACTIONS(8953), - [anon_sym_DASH_GT] = ACTIONS(8953), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(8953), + [STATE(3015)] = { + [sym_identifier] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_PIPE_PIPE] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_extern] = ACTIONS(3163), + [anon_sym___attribute__] = ACTIONS(3163), + [anon_sym___attribute] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3163), + [anon_sym___based] = ACTIONS(3163), + [anon_sym___cdecl] = ACTIONS(3163), + [anon_sym___clrcall] = ACTIONS(3163), + [anon_sym___stdcall] = ACTIONS(3163), + [anon_sym___fastcall] = ACTIONS(3163), + [anon_sym___thiscall] = ACTIONS(3163), + [anon_sym___vectorcall] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym___inline] = ACTIONS(3163), + [anon_sym___inline__] = ACTIONS(3163), + [anon_sym___forceinline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym___thread] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym___restrict__] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym__Noreturn] = ACTIONS(3163), + [anon_sym_noreturn] = ACTIONS(3163), + [anon_sym__Nonnull] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym__Alignas] = ACTIONS(3163), + [sym_primitive_type] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_or] = ACTIONS(3163), + [anon_sym_and] = ACTIONS(3163), + [anon_sym_typename] = ACTIONS(3163), + [anon_sym_DASH_GT] = ACTIONS(3161), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_template] = ACTIONS(3163), + [anon_sym_operator] = ACTIONS(3163), + [anon_sym_friend] = ACTIONS(3163), + [anon_sym_noexcept] = ACTIONS(3163), + [anon_sym_throw] = ACTIONS(3163), + [anon_sym_concept] = ACTIONS(3163), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), }, - [STATE(3508)] = { - [sym_identifier] = ACTIONS(8610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8612), - [anon_sym_COMMA] = ACTIONS(8612), - [anon_sym_RPAREN] = ACTIONS(8612), - [aux_sym_preproc_if_token2] = ACTIONS(8612), - [aux_sym_preproc_else_token1] = ACTIONS(8612), - [aux_sym_preproc_elif_token1] = ACTIONS(8610), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8612), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8612), - [anon_sym_LPAREN2] = ACTIONS(8612), - [anon_sym_DASH] = ACTIONS(8610), - [anon_sym_PLUS] = ACTIONS(8610), - [anon_sym_STAR] = ACTIONS(8610), - [anon_sym_SLASH] = ACTIONS(8610), - [anon_sym_PERCENT] = ACTIONS(8610), - [anon_sym_PIPE_PIPE] = ACTIONS(8612), - [anon_sym_AMP_AMP] = ACTIONS(8612), - [anon_sym_PIPE] = ACTIONS(8610), - [anon_sym_CARET] = ACTIONS(8610), - [anon_sym_AMP] = ACTIONS(8610), - [anon_sym_EQ_EQ] = ACTIONS(8612), - [anon_sym_BANG_EQ] = ACTIONS(8612), - [anon_sym_GT] = ACTIONS(8610), - [anon_sym_GT_EQ] = ACTIONS(8612), - [anon_sym_LT_EQ] = ACTIONS(8610), - [anon_sym_LT] = ACTIONS(8610), - [anon_sym_LT_LT] = ACTIONS(8610), - [anon_sym_GT_GT] = ACTIONS(8610), - [anon_sym_SEMI] = ACTIONS(8612), - [anon_sym___attribute__] = ACTIONS(8610), - [anon_sym___attribute] = ACTIONS(8610), - [anon_sym_COLON] = ACTIONS(8610), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8612), - [anon_sym_RBRACE] = ACTIONS(8612), - [anon_sym_LBRACK] = ACTIONS(8612), - [anon_sym_EQ] = ACTIONS(8610), - [anon_sym_QMARK] = ACTIONS(8612), - [anon_sym_STAR_EQ] = ACTIONS(8612), - [anon_sym_SLASH_EQ] = ACTIONS(8612), - [anon_sym_PERCENT_EQ] = ACTIONS(8612), - [anon_sym_PLUS_EQ] = ACTIONS(8612), - [anon_sym_DASH_EQ] = ACTIONS(8612), - [anon_sym_LT_LT_EQ] = ACTIONS(8612), - [anon_sym_GT_GT_EQ] = ACTIONS(8612), - [anon_sym_AMP_EQ] = ACTIONS(8612), - [anon_sym_CARET_EQ] = ACTIONS(8612), - [anon_sym_PIPE_EQ] = ACTIONS(8612), - [anon_sym_and_eq] = ACTIONS(8610), - [anon_sym_or_eq] = ACTIONS(8610), - [anon_sym_xor_eq] = ACTIONS(8610), - [anon_sym_LT_EQ_GT] = ACTIONS(8612), - [anon_sym_or] = ACTIONS(8610), - [anon_sym_and] = ACTIONS(8610), - [anon_sym_bitor] = ACTIONS(8610), - [anon_sym_xor] = ACTIONS(8610), - [anon_sym_bitand] = ACTIONS(8610), - [anon_sym_not_eq] = ACTIONS(8610), - [anon_sym_DASH_DASH] = ACTIONS(8612), - [anon_sym_PLUS_PLUS] = ACTIONS(8612), - [anon_sym_DOT] = ACTIONS(8610), - [anon_sym_DOT_STAR] = ACTIONS(8612), - [anon_sym_DASH_GT] = ACTIONS(8612), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8610), - [anon_sym_override] = ACTIONS(8610), - [anon_sym_requires] = ACTIONS(8610), - [anon_sym_COLON_RBRACK] = ACTIONS(8612), + [STATE(3016)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7781), + [anon_sym_COMMA] = ACTIONS(7781), + [anon_sym_RPAREN] = ACTIONS(7781), + [anon_sym_LPAREN2] = ACTIONS(7781), + [anon_sym_DASH] = ACTIONS(7779), + [anon_sym_PLUS] = ACTIONS(7779), + [anon_sym_STAR] = ACTIONS(7779), + [anon_sym_SLASH] = ACTIONS(7779), + [anon_sym_PERCENT] = ACTIONS(7779), + [anon_sym_PIPE_PIPE] = ACTIONS(7781), + [anon_sym_AMP_AMP] = ACTIONS(7781), + [anon_sym_PIPE] = ACTIONS(7779), + [anon_sym_CARET] = ACTIONS(7779), + [anon_sym_AMP] = ACTIONS(7779), + [anon_sym_EQ_EQ] = ACTIONS(7781), + [anon_sym_BANG_EQ] = ACTIONS(7781), + [anon_sym_GT] = ACTIONS(7779), + [anon_sym_GT_EQ] = ACTIONS(7781), + [anon_sym_LT_EQ] = ACTIONS(7779), + [anon_sym_LT] = ACTIONS(7779), + [anon_sym_LT_LT] = ACTIONS(7779), + [anon_sym_GT_GT] = ACTIONS(7779), + [anon_sym___extension__] = ACTIONS(7781), + [anon_sym_LBRACE] = ACTIONS(7781), + [anon_sym_LBRACK] = ACTIONS(7781), + [anon_sym_EQ] = ACTIONS(7779), + [anon_sym_const] = ACTIONS(7779), + [anon_sym_constexpr] = ACTIONS(7781), + [anon_sym_volatile] = ACTIONS(7781), + [anon_sym_restrict] = ACTIONS(7781), + [anon_sym___restrict__] = ACTIONS(7781), + [anon_sym__Atomic] = ACTIONS(7781), + [anon_sym__Noreturn] = ACTIONS(7781), + [anon_sym_noreturn] = ACTIONS(7781), + [anon_sym__Nonnull] = ACTIONS(7781), + [anon_sym_mutable] = ACTIONS(7781), + [anon_sym_constinit] = ACTIONS(7781), + [anon_sym_consteval] = ACTIONS(7781), + [anon_sym_alignas] = ACTIONS(7781), + [anon_sym__Alignas] = ACTIONS(7781), + [anon_sym_QMARK] = ACTIONS(7781), + [anon_sym_STAR_EQ] = ACTIONS(7781), + [anon_sym_SLASH_EQ] = ACTIONS(7781), + [anon_sym_PERCENT_EQ] = ACTIONS(7781), + [anon_sym_PLUS_EQ] = ACTIONS(7781), + [anon_sym_DASH_EQ] = ACTIONS(7781), + [anon_sym_LT_LT_EQ] = ACTIONS(7781), + [anon_sym_GT_GT_EQ] = ACTIONS(7781), + [anon_sym_AMP_EQ] = ACTIONS(7781), + [anon_sym_CARET_EQ] = ACTIONS(7781), + [anon_sym_PIPE_EQ] = ACTIONS(7781), + [anon_sym_and_eq] = ACTIONS(7781), + [anon_sym_or_eq] = ACTIONS(7781), + [anon_sym_xor_eq] = ACTIONS(7781), + [anon_sym_LT_EQ_GT] = ACTIONS(7781), + [anon_sym_or] = ACTIONS(7779), + [anon_sym_and] = ACTIONS(7779), + [anon_sym_bitor] = ACTIONS(7781), + [anon_sym_xor] = ACTIONS(7779), + [anon_sym_bitand] = ACTIONS(7781), + [anon_sym_not_eq] = ACTIONS(7781), + [anon_sym_DASH_DASH] = ACTIONS(7781), + [anon_sym_PLUS_PLUS] = ACTIONS(7781), + [anon_sym_DOT] = ACTIONS(7779), + [anon_sym_DOT_STAR] = ACTIONS(7781), + [anon_sym_DASH_GT] = ACTIONS(7779), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7781), + [anon_sym_override] = ACTIONS(7781), + [anon_sym_requires] = ACTIONS(7781), + [anon_sym_DASH_GT_STAR] = ACTIONS(7781), }, - [STATE(3509)] = { - [sym_template_argument_list] = STATE(3611), - [sym_identifier] = ACTIONS(6210), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6203), - [anon_sym_COMMA] = ACTIONS(6203), - [anon_sym_RPAREN] = ACTIONS(6203), - [aux_sym_preproc_if_token2] = ACTIONS(6203), - [aux_sym_preproc_else_token1] = ACTIONS(6203), - [aux_sym_preproc_elif_token1] = ACTIONS(6210), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6203), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6203), - [anon_sym_LPAREN2] = ACTIONS(6203), - [anon_sym_DASH] = ACTIONS(6210), - [anon_sym_PLUS] = ACTIONS(6210), - [anon_sym_STAR] = ACTIONS(6210), - [anon_sym_SLASH] = ACTIONS(6210), - [anon_sym_PERCENT] = ACTIONS(6210), - [anon_sym_PIPE_PIPE] = ACTIONS(6203), - [anon_sym_AMP_AMP] = ACTIONS(6203), - [anon_sym_PIPE] = ACTIONS(6210), - [anon_sym_CARET] = ACTIONS(6210), - [anon_sym_AMP] = ACTIONS(6210), - [anon_sym_EQ_EQ] = ACTIONS(6203), - [anon_sym_BANG_EQ] = ACTIONS(6203), - [anon_sym_GT] = ACTIONS(6210), - [anon_sym_GT_EQ] = ACTIONS(6203), - [anon_sym_LT_EQ] = ACTIONS(6210), - [anon_sym_LT] = ACTIONS(8697), - [anon_sym_LT_LT] = ACTIONS(6210), - [anon_sym_GT_GT] = ACTIONS(6210), - [anon_sym_SEMI] = ACTIONS(6203), - [anon_sym___attribute__] = ACTIONS(6210), - [anon_sym___attribute] = ACTIONS(6210), - [anon_sym_COLON] = ACTIONS(6210), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6203), - [anon_sym_LBRACE] = ACTIONS(6208), - [anon_sym_RBRACE] = ACTIONS(6203), - [anon_sym_LBRACK] = ACTIONS(6203), - [anon_sym_EQ] = ACTIONS(6210), - [anon_sym_QMARK] = ACTIONS(6203), - [anon_sym_STAR_EQ] = ACTIONS(6203), - [anon_sym_SLASH_EQ] = ACTIONS(6203), - [anon_sym_PERCENT_EQ] = ACTIONS(6203), - [anon_sym_PLUS_EQ] = ACTIONS(6203), - [anon_sym_DASH_EQ] = ACTIONS(6203), - [anon_sym_LT_LT_EQ] = ACTIONS(6203), - [anon_sym_GT_GT_EQ] = ACTIONS(6203), - [anon_sym_AMP_EQ] = ACTIONS(6203), - [anon_sym_CARET_EQ] = ACTIONS(6203), - [anon_sym_PIPE_EQ] = ACTIONS(6203), - [anon_sym_and_eq] = ACTIONS(6210), - [anon_sym_or_eq] = ACTIONS(6210), - [anon_sym_xor_eq] = ACTIONS(6210), - [anon_sym_LT_EQ_GT] = ACTIONS(6203), - [anon_sym_or] = ACTIONS(6210), - [anon_sym_and] = ACTIONS(6210), - [anon_sym_bitor] = ACTIONS(6210), - [anon_sym_xor] = ACTIONS(6210), - [anon_sym_bitand] = ACTIONS(6210), - [anon_sym_not_eq] = ACTIONS(6210), - [anon_sym_DASH_DASH] = ACTIONS(6203), - [anon_sym_PLUS_PLUS] = ACTIONS(6203), - [anon_sym_DOT] = ACTIONS(6210), - [anon_sym_DOT_STAR] = ACTIONS(6203), - [anon_sym_DASH_GT] = ACTIONS(6203), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6203), + [STATE(3017)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_attributes_end] = STATE(4237), + [sym__function_postfix] = STATE(3675), + [sym_trailing_return_type] = STATE(3077), + [sym_requires_clause] = STATE(3675), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), + [anon_sym_COMMA] = ACTIONS(8422), + [anon_sym_LPAREN2] = ACTIONS(8422), + [anon_sym_DASH] = ACTIONS(8424), + [anon_sym_PLUS] = ACTIONS(8424), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_SLASH] = ACTIONS(8424), + [anon_sym_PERCENT] = ACTIONS(8424), + [anon_sym_PIPE_PIPE] = ACTIONS(8422), + [anon_sym_AMP_AMP] = ACTIONS(8422), + [anon_sym_PIPE] = ACTIONS(8424), + [anon_sym_CARET] = ACTIONS(8424), + [anon_sym_AMP] = ACTIONS(8424), + [anon_sym_EQ_EQ] = ACTIONS(8422), + [anon_sym_BANG_EQ] = ACTIONS(8422), + [anon_sym_GT] = ACTIONS(8424), + [anon_sym_GT_EQ] = ACTIONS(8422), + [anon_sym_LT_EQ] = ACTIONS(8424), + [anon_sym_LT] = ACTIONS(8424), + [anon_sym_LT_LT] = ACTIONS(8424), + [anon_sym_GT_GT] = ACTIONS(8424), + [anon_sym_SEMI] = ACTIONS(8422), + [anon_sym___attribute__] = ACTIONS(8970), + [anon_sym___attribute] = ACTIONS(8973), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(8424), + [anon_sym_EQ] = ACTIONS(8424), + [anon_sym_QMARK] = ACTIONS(8422), + [anon_sym_STAR_EQ] = ACTIONS(8422), + [anon_sym_SLASH_EQ] = ACTIONS(8422), + [anon_sym_PERCENT_EQ] = ACTIONS(8422), + [anon_sym_PLUS_EQ] = ACTIONS(8422), + [anon_sym_DASH_EQ] = ACTIONS(8422), + [anon_sym_LT_LT_EQ] = ACTIONS(8422), + [anon_sym_GT_GT_EQ] = ACTIONS(8422), + [anon_sym_AMP_EQ] = ACTIONS(8422), + [anon_sym_CARET_EQ] = ACTIONS(8422), + [anon_sym_PIPE_EQ] = ACTIONS(8422), + [anon_sym_and_eq] = ACTIONS(8422), + [anon_sym_or_eq] = ACTIONS(8422), + [anon_sym_xor_eq] = ACTIONS(8422), + [anon_sym_LT_EQ_GT] = ACTIONS(8422), + [anon_sym_or] = ACTIONS(8424), + [anon_sym_and] = ACTIONS(8424), + [anon_sym_bitor] = ACTIONS(8422), + [anon_sym_xor] = ACTIONS(8424), + [anon_sym_bitand] = ACTIONS(8422), + [anon_sym_not_eq] = ACTIONS(8422), + [anon_sym_DASH_DASH] = ACTIONS(8422), + [anon_sym_PLUS_PLUS] = ACTIONS(8422), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(8424), + [anon_sym_DOT_STAR] = ACTIONS(8422), + [anon_sym_DASH_GT] = ACTIONS(8976), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8458), + [anon_sym_override] = ACTIONS(8458), + [anon_sym_requires] = ACTIONS(8461), }, - [STATE(3510)] = { - [sym_identifier] = ACTIONS(8955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8957), - [anon_sym_COMMA] = ACTIONS(8957), - [anon_sym_RPAREN] = ACTIONS(8957), - [aux_sym_preproc_if_token2] = ACTIONS(8957), - [aux_sym_preproc_else_token1] = ACTIONS(8957), - [aux_sym_preproc_elif_token1] = ACTIONS(8955), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8957), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8957), - [anon_sym_LPAREN2] = ACTIONS(8957), - [anon_sym_DASH] = ACTIONS(8955), - [anon_sym_PLUS] = ACTIONS(8955), - [anon_sym_STAR] = ACTIONS(8955), - [anon_sym_SLASH] = ACTIONS(8955), - [anon_sym_PERCENT] = ACTIONS(8955), - [anon_sym_PIPE_PIPE] = ACTIONS(8957), - [anon_sym_AMP_AMP] = ACTIONS(8957), - [anon_sym_PIPE] = ACTIONS(8955), - [anon_sym_CARET] = ACTIONS(8955), - [anon_sym_AMP] = ACTIONS(8955), - [anon_sym_EQ_EQ] = ACTIONS(8957), - [anon_sym_BANG_EQ] = ACTIONS(8957), - [anon_sym_GT] = ACTIONS(8955), - [anon_sym_GT_EQ] = ACTIONS(8957), - [anon_sym_LT_EQ] = ACTIONS(8955), - [anon_sym_LT] = ACTIONS(8955), - [anon_sym_LT_LT] = ACTIONS(8955), - [anon_sym_GT_GT] = ACTIONS(8955), - [anon_sym_SEMI] = ACTIONS(8957), - [anon_sym___attribute__] = ACTIONS(8955), - [anon_sym___attribute] = ACTIONS(8955), - [anon_sym_COLON] = ACTIONS(8955), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8957), - [anon_sym_RBRACE] = ACTIONS(8957), - [anon_sym_LBRACK] = ACTIONS(8957), - [anon_sym_EQ] = ACTIONS(8955), - [anon_sym_QMARK] = ACTIONS(8957), - [anon_sym_STAR_EQ] = ACTIONS(8957), - [anon_sym_SLASH_EQ] = ACTIONS(8957), - [anon_sym_PERCENT_EQ] = ACTIONS(8957), - [anon_sym_PLUS_EQ] = ACTIONS(8957), - [anon_sym_DASH_EQ] = ACTIONS(8957), - [anon_sym_LT_LT_EQ] = ACTIONS(8957), - [anon_sym_GT_GT_EQ] = ACTIONS(8957), - [anon_sym_AMP_EQ] = ACTIONS(8957), - [anon_sym_CARET_EQ] = ACTIONS(8957), - [anon_sym_PIPE_EQ] = ACTIONS(8957), - [anon_sym_and_eq] = ACTIONS(8955), - [anon_sym_or_eq] = ACTIONS(8955), - [anon_sym_xor_eq] = ACTIONS(8955), - [anon_sym_LT_EQ_GT] = ACTIONS(8957), - [anon_sym_or] = ACTIONS(8955), - [anon_sym_and] = ACTIONS(8955), - [anon_sym_bitor] = ACTIONS(8955), - [anon_sym_xor] = ACTIONS(8955), - [anon_sym_bitand] = ACTIONS(8955), - [anon_sym_not_eq] = ACTIONS(8955), - [anon_sym_DASH_DASH] = ACTIONS(8957), - [anon_sym_PLUS_PLUS] = ACTIONS(8957), - [anon_sym_DOT] = ACTIONS(8955), - [anon_sym_DOT_STAR] = ACTIONS(8957), - [anon_sym_DASH_GT] = ACTIONS(8957), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8955), - [anon_sym_override] = ACTIONS(8955), - [anon_sym_requires] = ACTIONS(8955), - [anon_sym_COLON_RBRACK] = ACTIONS(8957), + [STATE(3018)] = { + [sym_identifier] = ACTIONS(8979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8981), + [anon_sym_COMMA] = ACTIONS(8981), + [anon_sym_RPAREN] = ACTIONS(8981), + [aux_sym_preproc_if_token2] = ACTIONS(8981), + [aux_sym_preproc_else_token1] = ACTIONS(8981), + [aux_sym_preproc_elif_token1] = ACTIONS(8979), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8981), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8981), + [anon_sym_LPAREN2] = ACTIONS(8981), + [anon_sym_DASH] = ACTIONS(8979), + [anon_sym_PLUS] = ACTIONS(8979), + [anon_sym_STAR] = ACTIONS(8979), + [anon_sym_SLASH] = ACTIONS(8979), + [anon_sym_PERCENT] = ACTIONS(8979), + [anon_sym_PIPE_PIPE] = ACTIONS(8981), + [anon_sym_AMP_AMP] = ACTIONS(8981), + [anon_sym_PIPE] = ACTIONS(8979), + [anon_sym_CARET] = ACTIONS(8979), + [anon_sym_AMP] = ACTIONS(8979), + [anon_sym_EQ_EQ] = ACTIONS(8981), + [anon_sym_BANG_EQ] = ACTIONS(8981), + [anon_sym_GT] = ACTIONS(8979), + [anon_sym_GT_EQ] = ACTIONS(8981), + [anon_sym_LT_EQ] = ACTIONS(8979), + [anon_sym_LT] = ACTIONS(8979), + [anon_sym_LT_LT] = ACTIONS(8979), + [anon_sym_GT_GT] = ACTIONS(8979), + [anon_sym_SEMI] = ACTIONS(8981), + [anon_sym___attribute__] = ACTIONS(8979), + [anon_sym___attribute] = ACTIONS(8979), + [anon_sym_COLON] = ACTIONS(8979), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8981), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8981), + [anon_sym_RBRACE] = ACTIONS(8981), + [anon_sym_LBRACK] = ACTIONS(8979), + [anon_sym_EQ] = ACTIONS(8979), + [anon_sym_QMARK] = ACTIONS(8981), + [anon_sym_STAR_EQ] = ACTIONS(8981), + [anon_sym_SLASH_EQ] = ACTIONS(8981), + [anon_sym_PERCENT_EQ] = ACTIONS(8981), + [anon_sym_PLUS_EQ] = ACTIONS(8981), + [anon_sym_DASH_EQ] = ACTIONS(8981), + [anon_sym_LT_LT_EQ] = ACTIONS(8981), + [anon_sym_GT_GT_EQ] = ACTIONS(8981), + [anon_sym_AMP_EQ] = ACTIONS(8981), + [anon_sym_CARET_EQ] = ACTIONS(8981), + [anon_sym_PIPE_EQ] = ACTIONS(8981), + [anon_sym_and_eq] = ACTIONS(8979), + [anon_sym_or_eq] = ACTIONS(8979), + [anon_sym_xor_eq] = ACTIONS(8979), + [anon_sym_LT_EQ_GT] = ACTIONS(8981), + [anon_sym_or] = ACTIONS(8979), + [anon_sym_and] = ACTIONS(8979), + [anon_sym_bitor] = ACTIONS(8979), + [anon_sym_xor] = ACTIONS(8979), + [anon_sym_bitand] = ACTIONS(8979), + [anon_sym_not_eq] = ACTIONS(8979), + [anon_sym_DASH_DASH] = ACTIONS(8981), + [anon_sym_PLUS_PLUS] = ACTIONS(8981), + [anon_sym_asm] = ACTIONS(8979), + [anon_sym___asm__] = ACTIONS(8979), + [anon_sym___asm] = ACTIONS(8979), + [anon_sym_DOT] = ACTIONS(8979), + [anon_sym_DOT_STAR] = ACTIONS(8981), + [anon_sym_DASH_GT] = ACTIONS(8981), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8979), + [anon_sym_override] = ACTIONS(8979), + [anon_sym_requires] = ACTIONS(8979), + [anon_sym_COLON_RBRACK] = ACTIONS(8981), }, - [STATE(3511)] = { - [sym_identifier] = ACTIONS(8959), - [anon_sym_LPAREN2] = ACTIONS(8961), - [anon_sym_TILDE] = ACTIONS(8961), - [anon_sym_STAR] = ACTIONS(8961), - [anon_sym_PIPE_PIPE] = ACTIONS(8963), - [anon_sym_AMP_AMP] = ACTIONS(8965), - [anon_sym_AMP] = ACTIONS(8959), - [anon_sym___extension__] = ACTIONS(8959), - [anon_sym_virtual] = ACTIONS(8959), - [anon_sym_extern] = ACTIONS(8959), - [anon_sym___attribute__] = ACTIONS(8959), - [anon_sym___attribute] = ACTIONS(8959), - [anon_sym_using] = ACTIONS(8959), - [anon_sym_COLON_COLON] = ACTIONS(8961), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8961), - [anon_sym___declspec] = ACTIONS(8959), - [anon_sym___based] = ACTIONS(8959), - [anon_sym___cdecl] = ACTIONS(8959), - [anon_sym___clrcall] = ACTIONS(8959), - [anon_sym___stdcall] = ACTIONS(8959), - [anon_sym___fastcall] = ACTIONS(8959), - [anon_sym___thiscall] = ACTIONS(8959), - [anon_sym___vectorcall] = ACTIONS(8959), - [anon_sym_signed] = ACTIONS(8959), - [anon_sym_unsigned] = ACTIONS(8959), - [anon_sym_long] = ACTIONS(8959), - [anon_sym_short] = ACTIONS(8959), - [anon_sym_LBRACK] = ACTIONS(8959), - [anon_sym_static] = ACTIONS(8959), - [anon_sym_register] = ACTIONS(8959), - [anon_sym_inline] = ACTIONS(8959), - [anon_sym___inline] = ACTIONS(8959), - [anon_sym___inline__] = ACTIONS(8959), - [anon_sym___forceinline] = ACTIONS(8959), - [anon_sym_thread_local] = ACTIONS(8959), - [anon_sym___thread] = ACTIONS(8959), - [anon_sym_const] = ACTIONS(8959), - [anon_sym_constexpr] = ACTIONS(8959), - [anon_sym_volatile] = ACTIONS(8959), - [anon_sym_restrict] = ACTIONS(8959), - [anon_sym___restrict__] = ACTIONS(8959), - [anon_sym__Atomic] = ACTIONS(8959), - [anon_sym__Noreturn] = ACTIONS(8959), - [anon_sym_noreturn] = ACTIONS(8959), - [anon_sym__Nonnull] = ACTIONS(8959), - [anon_sym_mutable] = ACTIONS(8959), - [anon_sym_constinit] = ACTIONS(8959), - [anon_sym_consteval] = ACTIONS(8959), - [anon_sym_alignas] = ACTIONS(8959), - [anon_sym__Alignas] = ACTIONS(8959), - [sym_primitive_type] = ACTIONS(8959), - [anon_sym_enum] = ACTIONS(8959), - [anon_sym_class] = ACTIONS(8959), - [anon_sym_struct] = ACTIONS(8959), - [anon_sym_union] = ACTIONS(8959), - [anon_sym_or] = ACTIONS(8967), - [anon_sym_and] = ACTIONS(8969), - [anon_sym_typename] = ACTIONS(8959), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8959), - [anon_sym_decltype] = ACTIONS(8959), - [anon_sym_explicit] = ACTIONS(8959), - [anon_sym_template] = ACTIONS(8959), - [anon_sym_operator] = ACTIONS(8959), - [anon_sym_friend] = ACTIONS(8959), - [anon_sym_concept] = ACTIONS(8959), - [anon_sym_LBRACK_COLON] = ACTIONS(8961), + [STATE(3019)] = { + [sym_attribute_specifier] = STATE(4161), + [sym_attribute_declaration] = STATE(4617), + [sym_gnu_asm_expression] = STATE(9112), + [sym_virtual_specifier] = STATE(4705), + [sym__function_attributes_end] = STATE(4356), + [sym__function_postfix] = STATE(5066), + [sym_trailing_return_type] = STATE(4471), + [sym_requires_clause] = STATE(5066), + [aux_sym_type_definition_repeat1] = STATE(4161), + [aux_sym_attributed_declarator_repeat1] = STATE(4617), + [aux_sym__function_postfix_repeat1] = STATE(4705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), + [anon_sym_COMMA] = ACTIONS(8422), + [anon_sym_LPAREN2] = ACTIONS(8422), + [anon_sym_DASH] = ACTIONS(8424), + [anon_sym_PLUS] = ACTIONS(8424), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_SLASH] = ACTIONS(8424), + [anon_sym_PERCENT] = ACTIONS(8424), + [anon_sym_PIPE_PIPE] = ACTIONS(8422), + [anon_sym_AMP_AMP] = ACTIONS(8422), + [anon_sym_PIPE] = ACTIONS(8424), + [anon_sym_CARET] = ACTIONS(8424), + [anon_sym_AMP] = ACTIONS(8424), + [anon_sym_EQ_EQ] = ACTIONS(8422), + [anon_sym_BANG_EQ] = ACTIONS(8422), + [anon_sym_GT] = ACTIONS(8424), + [anon_sym_GT_EQ] = ACTIONS(8424), + [anon_sym_LT_EQ] = ACTIONS(8424), + [anon_sym_LT] = ACTIONS(8424), + [anon_sym_LT_LT] = ACTIONS(8424), + [anon_sym_GT_GT] = ACTIONS(8424), + [anon_sym___attribute__] = ACTIONS(6681), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), + [anon_sym_LBRACK] = ACTIONS(8424), + [anon_sym_EQ] = ACTIONS(8424), + [anon_sym_QMARK] = ACTIONS(8422), + [anon_sym_STAR_EQ] = ACTIONS(8422), + [anon_sym_SLASH_EQ] = ACTIONS(8422), + [anon_sym_PERCENT_EQ] = ACTIONS(8422), + [anon_sym_PLUS_EQ] = ACTIONS(8422), + [anon_sym_DASH_EQ] = ACTIONS(8422), + [anon_sym_LT_LT_EQ] = ACTIONS(8422), + [anon_sym_GT_GT_EQ] = ACTIONS(8424), + [anon_sym_AMP_EQ] = ACTIONS(8422), + [anon_sym_CARET_EQ] = ACTIONS(8422), + [anon_sym_PIPE_EQ] = ACTIONS(8422), + [anon_sym_and_eq] = ACTIONS(8422), + [anon_sym_or_eq] = ACTIONS(8422), + [anon_sym_xor_eq] = ACTIONS(8422), + [anon_sym_LT_EQ_GT] = ACTIONS(8422), + [anon_sym_or] = ACTIONS(8424), + [anon_sym_and] = ACTIONS(8424), + [anon_sym_bitor] = ACTIONS(8422), + [anon_sym_xor] = ACTIONS(8424), + [anon_sym_bitand] = ACTIONS(8422), + [anon_sym_not_eq] = ACTIONS(8422), + [anon_sym_DASH_DASH] = ACTIONS(8422), + [anon_sym_PLUS_PLUS] = ACTIONS(8422), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(8424), + [anon_sym_DOT_STAR] = ACTIONS(8422), + [anon_sym_DASH_GT] = ACTIONS(8983), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8986), + [anon_sym_override] = ACTIONS(8986), + [anon_sym_GT2] = ACTIONS(8422), + [anon_sym_requires] = ACTIONS(8989), }, - [STATE(3512)] = { - [sym_attribute_specifier] = STATE(4374), - [sym_attribute_declaration] = STATE(4622), - [sym_gnu_asm_expression] = STATE(8992), - [sym_virtual_specifier] = STATE(4709), - [sym__function_exception_specification] = STATE(3939), - [sym__function_attributes_end] = STATE(5841), - [sym__function_postfix] = STATE(5305), - [sym_trailing_return_type] = STATE(5719), - [sym_noexcept] = STATE(3939), - [sym_throw_specifier] = STATE(3939), - [sym_requires_clause] = STATE(5305), - [aux_sym_type_definition_repeat1] = STATE(4374), - [aux_sym_attributed_declarator_repeat1] = STATE(4622), - [aux_sym__function_postfix_repeat1] = STATE(4709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_RPAREN] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7627), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7627), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7627), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7627), - [anon_sym_GT_GT] = ACTIONS(7627), - [anon_sym_SEMI] = ACTIONS(7627), - [anon_sym___attribute__] = ACTIONS(6906), - [anon_sym___attribute] = ACTIONS(6859), - [anon_sym_COLON] = ACTIONS(7629), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7627), - [anon_sym_RBRACE] = ACTIONS(7627), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7627), - [anon_sym_and] = ACTIONS(7627), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7627), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(8971), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8974), - [anon_sym_override] = ACTIONS(8974), - [anon_sym_noexcept] = ACTIONS(6915), - [anon_sym_throw] = ACTIONS(6917), - [anon_sym_requires] = ACTIONS(8977), - [anon_sym_COLON_RBRACK] = ACTIONS(7627), + [STATE(3020)] = { + [sym_attribute_specifier] = STATE(3559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), + [anon_sym_COMMA] = ACTIONS(7399), + [anon_sym_RPAREN] = ACTIONS(7399), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(7397), + [anon_sym_PLUS] = ACTIONS(7397), + [anon_sym_STAR] = ACTIONS(7397), + [anon_sym_SLASH] = ACTIONS(7397), + [anon_sym_PERCENT] = ACTIONS(7397), + [anon_sym_PIPE_PIPE] = ACTIONS(7399), + [anon_sym_AMP_AMP] = ACTIONS(7399), + [anon_sym_PIPE] = ACTIONS(7397), + [anon_sym_CARET] = ACTIONS(7397), + [anon_sym_AMP] = ACTIONS(7397), + [anon_sym_EQ_EQ] = ACTIONS(7399), + [anon_sym_BANG_EQ] = ACTIONS(7399), + [anon_sym_GT] = ACTIONS(7397), + [anon_sym_GT_EQ] = ACTIONS(7399), + [anon_sym_LT_EQ] = ACTIONS(7397), + [anon_sym_LT] = ACTIONS(7397), + [anon_sym_LT_LT] = ACTIONS(7397), + [anon_sym_GT_GT] = ACTIONS(7397), + [anon_sym___extension__] = ACTIONS(7399), + [anon_sym___attribute__] = ACTIONS(8499), + [anon_sym___attribute] = ACTIONS(8501), + [anon_sym_LBRACE] = ACTIONS(7399), + [anon_sym_LBRACK] = ACTIONS(7399), + [anon_sym_EQ] = ACTIONS(7397), + [anon_sym_const] = ACTIONS(7397), + [anon_sym_constexpr] = ACTIONS(7399), + [anon_sym_volatile] = ACTIONS(7399), + [anon_sym_restrict] = ACTIONS(7399), + [anon_sym___restrict__] = ACTIONS(7399), + [anon_sym__Atomic] = ACTIONS(7399), + [anon_sym__Noreturn] = ACTIONS(7399), + [anon_sym_noreturn] = ACTIONS(7399), + [anon_sym__Nonnull] = ACTIONS(7399), + [anon_sym_mutable] = ACTIONS(7399), + [anon_sym_constinit] = ACTIONS(7399), + [anon_sym_consteval] = ACTIONS(7399), + [anon_sym_alignas] = ACTIONS(7399), + [anon_sym__Alignas] = ACTIONS(7399), + [anon_sym_QMARK] = ACTIONS(7399), + [anon_sym_STAR_EQ] = ACTIONS(7399), + [anon_sym_SLASH_EQ] = ACTIONS(7399), + [anon_sym_PERCENT_EQ] = ACTIONS(7399), + [anon_sym_PLUS_EQ] = ACTIONS(7399), + [anon_sym_DASH_EQ] = ACTIONS(7399), + [anon_sym_LT_LT_EQ] = ACTIONS(7399), + [anon_sym_GT_GT_EQ] = ACTIONS(7399), + [anon_sym_AMP_EQ] = ACTIONS(7399), + [anon_sym_CARET_EQ] = ACTIONS(7399), + [anon_sym_PIPE_EQ] = ACTIONS(7399), + [anon_sym_LT_EQ_GT] = ACTIONS(7399), + [anon_sym_or] = ACTIONS(7399), + [anon_sym_and] = ACTIONS(7399), + [anon_sym_bitor] = ACTIONS(7399), + [anon_sym_xor] = ACTIONS(7399), + [anon_sym_bitand] = ACTIONS(7399), + [anon_sym_not_eq] = ACTIONS(7399), + [anon_sym_DASH_DASH] = ACTIONS(7399), + [anon_sym_PLUS_PLUS] = ACTIONS(7399), + [anon_sym_DOT] = ACTIONS(7397), + [anon_sym_DOT_STAR] = ACTIONS(7399), + [anon_sym_DASH_GT] = ACTIONS(7397), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7399), + [anon_sym_override] = ACTIONS(7399), + [anon_sym_requires] = ACTIONS(7399), + [anon_sym_DASH_GT_STAR] = ACTIONS(7399), }, - [STATE(3513)] = { - [sym_identifier] = ACTIONS(7629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_RPAREN] = ACTIONS(7627), - [aux_sym_preproc_if_token2] = ACTIONS(7627), - [aux_sym_preproc_else_token1] = ACTIONS(7627), - [aux_sym_preproc_elif_token1] = ACTIONS(7629), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7627), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym_SEMI] = ACTIONS(7627), - [anon_sym___attribute__] = ACTIONS(7629), - [anon_sym___attribute] = ACTIONS(7629), - [anon_sym_COLON] = ACTIONS(7629), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7627), - [anon_sym_RBRACE] = ACTIONS(7627), - [anon_sym_LBRACK] = ACTIONS(7627), - [anon_sym_EQ] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_STAR_EQ] = ACTIONS(7627), - [anon_sym_SLASH_EQ] = ACTIONS(7627), - [anon_sym_PERCENT_EQ] = ACTIONS(7627), - [anon_sym_PLUS_EQ] = ACTIONS(7627), - [anon_sym_DASH_EQ] = ACTIONS(7627), - [anon_sym_LT_LT_EQ] = ACTIONS(7627), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7627), - [anon_sym_CARET_EQ] = ACTIONS(7627), - [anon_sym_PIPE_EQ] = ACTIONS(7627), - [anon_sym_and_eq] = ACTIONS(7629), - [anon_sym_or_eq] = ACTIONS(7629), - [anon_sym_xor_eq] = ACTIONS(7629), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7629), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7629), - [anon_sym_not_eq] = ACTIONS(7629), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(7627), + [STATE(3021)] = { + [sym_identifier] = ACTIONS(7223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7225), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7225), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7225), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7225), + [anon_sym_GT_GT] = ACTIONS(7225), + [anon_sym_SEMI] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym___attribute__] = ACTIONS(7223), + [anon_sym___attribute] = ACTIONS(7223), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), + [anon_sym___based] = ACTIONS(7223), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_RBRACE] = ACTIONS(7225), + [anon_sym_signed] = ACTIONS(7223), + [anon_sym_unsigned] = ACTIONS(7223), + [anon_sym_long] = ACTIONS(7223), + [anon_sym_short] = ACTIONS(7223), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7223), + [anon_sym__Alignas] = ACTIONS(7223), + [sym_primitive_type] = ACTIONS(7223), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7223), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7223), + [anon_sym_not_eq] = ACTIONS(7223), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7629), - [anon_sym_override] = ACTIONS(7629), - [anon_sym_requires] = ACTIONS(7629), - [anon_sym_COLON_RBRACK] = ACTIONS(7627), + [anon_sym_final] = ACTIONS(7223), + [anon_sym_override] = ACTIONS(7223), + [anon_sym_requires] = ACTIONS(7223), + [anon_sym_COLON_RBRACK] = ACTIONS(7225), }, - [STATE(3514)] = { - [sym_string_literal] = STATE(5466), - [sym_template_argument_list] = STATE(6719), - [sym_raw_string_literal] = STATE(5466), - [aux_sym_structured_binding_declarator_repeat1] = STATE(10037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8980), - [anon_sym_COMMA] = ACTIONS(8983), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(8603), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_RBRACK] = ACTIONS(8986), - [anon_sym_EQ] = ACTIONS(8990), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(6617), - [anon_sym_SLASH_EQ] = ACTIONS(6617), - [anon_sym_PERCENT_EQ] = ACTIONS(6617), - [anon_sym_PLUS_EQ] = ACTIONS(6617), - [anon_sym_DASH_EQ] = ACTIONS(6617), - [anon_sym_LT_LT_EQ] = ACTIONS(6617), - [anon_sym_GT_GT_EQ] = ACTIONS(6617), - [anon_sym_AMP_EQ] = ACTIONS(6617), - [anon_sym_CARET_EQ] = ACTIONS(6617), - [anon_sym_PIPE_EQ] = ACTIONS(6617), - [anon_sym_and_eq] = ACTIONS(6617), - [anon_sym_or_eq] = ACTIONS(6617), - [anon_sym_xor_eq] = ACTIONS(6617), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(6619), - [anon_sym_u_DQUOTE] = ACTIONS(6619), - [anon_sym_U_DQUOTE] = ACTIONS(6619), - [anon_sym_u8_DQUOTE] = ACTIONS(6619), - [anon_sym_DQUOTE] = ACTIONS(6619), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6625), - [anon_sym_LR_DQUOTE] = ACTIONS(6625), - [anon_sym_uR_DQUOTE] = ACTIONS(6625), - [anon_sym_UR_DQUOTE] = ACTIONS(6625), - [anon_sym_u8R_DQUOTE] = ACTIONS(6625), + [STATE(3022)] = { + [sym_identifier] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_PIPE_PIPE] = ACTIONS(3153), + [anon_sym_AMP_AMP] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym___extension__] = ACTIONS(3155), + [anon_sym_virtual] = ACTIONS(3155), + [anon_sym_extern] = ACTIONS(3155), + [anon_sym___attribute__] = ACTIONS(3155), + [anon_sym___attribute] = ACTIONS(3155), + [anon_sym_using] = ACTIONS(3155), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), + [anon_sym___declspec] = ACTIONS(3155), + [anon_sym___based] = ACTIONS(3155), + [anon_sym___cdecl] = ACTIONS(3155), + [anon_sym___clrcall] = ACTIONS(3155), + [anon_sym___stdcall] = ACTIONS(3155), + [anon_sym___fastcall] = ACTIONS(3155), + [anon_sym___thiscall] = ACTIONS(3155), + [anon_sym___vectorcall] = ACTIONS(3155), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_static] = ACTIONS(3155), + [anon_sym_register] = ACTIONS(3155), + [anon_sym_inline] = ACTIONS(3155), + [anon_sym___inline] = ACTIONS(3155), + [anon_sym___inline__] = ACTIONS(3155), + [anon_sym___forceinline] = ACTIONS(3155), + [anon_sym_thread_local] = ACTIONS(3155), + [anon_sym___thread] = ACTIONS(3155), + [anon_sym_const] = ACTIONS(3155), + [anon_sym_constexpr] = ACTIONS(3155), + [anon_sym_volatile] = ACTIONS(3155), + [anon_sym_restrict] = ACTIONS(3155), + [anon_sym___restrict__] = ACTIONS(3155), + [anon_sym__Atomic] = ACTIONS(3155), + [anon_sym__Noreturn] = ACTIONS(3155), + [anon_sym_noreturn] = ACTIONS(3155), + [anon_sym__Nonnull] = ACTIONS(3155), + [anon_sym_mutable] = ACTIONS(3155), + [anon_sym_constinit] = ACTIONS(3155), + [anon_sym_consteval] = ACTIONS(3155), + [anon_sym_alignas] = ACTIONS(3155), + [anon_sym__Alignas] = ACTIONS(3155), + [sym_primitive_type] = ACTIONS(3155), + [anon_sym_enum] = ACTIONS(3155), + [anon_sym_class] = ACTIONS(3155), + [anon_sym_struct] = ACTIONS(3155), + [anon_sym_union] = ACTIONS(3155), + [anon_sym_or] = ACTIONS(3155), + [anon_sym_and] = ACTIONS(3155), + [anon_sym_typename] = ACTIONS(3155), + [anon_sym_DASH_GT] = ACTIONS(3153), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3155), + [anon_sym_decltype] = ACTIONS(3155), + [anon_sym_explicit] = ACTIONS(3155), + [anon_sym_template] = ACTIONS(3155), + [anon_sym_operator] = ACTIONS(3155), + [anon_sym_friend] = ACTIONS(3155), + [anon_sym_noexcept] = ACTIONS(3155), + [anon_sym_throw] = ACTIONS(3155), + [anon_sym_concept] = ACTIONS(3155), + [anon_sym_LBRACK_COLON] = ACTIONS(3153), }, - [STATE(3515)] = { + [STATE(3023)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7761), + [anon_sym_COMMA] = ACTIONS(7761), + [anon_sym_RPAREN] = ACTIONS(7761), + [anon_sym_LPAREN2] = ACTIONS(7761), + [anon_sym_DASH] = ACTIONS(7759), + [anon_sym_PLUS] = ACTIONS(7759), + [anon_sym_STAR] = ACTIONS(7759), + [anon_sym_SLASH] = ACTIONS(7759), + [anon_sym_PERCENT] = ACTIONS(7759), + [anon_sym_PIPE_PIPE] = ACTIONS(7761), + [anon_sym_AMP_AMP] = ACTIONS(7761), + [anon_sym_PIPE] = ACTIONS(7759), + [anon_sym_CARET] = ACTIONS(7759), + [anon_sym_AMP] = ACTIONS(7759), + [anon_sym_EQ_EQ] = ACTIONS(7761), + [anon_sym_BANG_EQ] = ACTIONS(7761), + [anon_sym_GT] = ACTIONS(7759), + [anon_sym_GT_EQ] = ACTIONS(7761), + [anon_sym_LT_EQ] = ACTIONS(7759), + [anon_sym_LT] = ACTIONS(7759), + [anon_sym_LT_LT] = ACTIONS(7759), + [anon_sym_GT_GT] = ACTIONS(7759), + [anon_sym___extension__] = ACTIONS(7761), + [anon_sym_LBRACE] = ACTIONS(7761), + [anon_sym_LBRACK] = ACTIONS(7761), + [anon_sym_EQ] = ACTIONS(7759), + [anon_sym_const] = ACTIONS(7759), + [anon_sym_constexpr] = ACTIONS(7761), + [anon_sym_volatile] = ACTIONS(7761), + [anon_sym_restrict] = ACTIONS(7761), + [anon_sym___restrict__] = ACTIONS(7761), + [anon_sym__Atomic] = ACTIONS(7761), + [anon_sym__Noreturn] = ACTIONS(7761), + [anon_sym_noreturn] = ACTIONS(7761), + [anon_sym__Nonnull] = ACTIONS(7761), + [anon_sym_mutable] = ACTIONS(7761), + [anon_sym_constinit] = ACTIONS(7761), + [anon_sym_consteval] = ACTIONS(7761), + [anon_sym_alignas] = ACTIONS(7761), + [anon_sym__Alignas] = ACTIONS(7761), + [anon_sym_QMARK] = ACTIONS(7761), + [anon_sym_STAR_EQ] = ACTIONS(7761), + [anon_sym_SLASH_EQ] = ACTIONS(7761), + [anon_sym_PERCENT_EQ] = ACTIONS(7761), + [anon_sym_PLUS_EQ] = ACTIONS(7761), + [anon_sym_DASH_EQ] = ACTIONS(7761), + [anon_sym_LT_LT_EQ] = ACTIONS(7761), + [anon_sym_GT_GT_EQ] = ACTIONS(7761), + [anon_sym_AMP_EQ] = ACTIONS(7761), + [anon_sym_CARET_EQ] = ACTIONS(7761), + [anon_sym_PIPE_EQ] = ACTIONS(7761), + [anon_sym_and_eq] = ACTIONS(7761), + [anon_sym_or_eq] = ACTIONS(7761), + [anon_sym_xor_eq] = ACTIONS(7761), + [anon_sym_LT_EQ_GT] = ACTIONS(7761), + [anon_sym_or] = ACTIONS(7759), + [anon_sym_and] = ACTIONS(7759), + [anon_sym_bitor] = ACTIONS(7761), + [anon_sym_xor] = ACTIONS(7759), + [anon_sym_bitand] = ACTIONS(7761), + [anon_sym_not_eq] = ACTIONS(7761), + [anon_sym_DASH_DASH] = ACTIONS(7761), + [anon_sym_PLUS_PLUS] = ACTIONS(7761), + [anon_sym_DOT] = ACTIONS(7759), + [anon_sym_DOT_STAR] = ACTIONS(7761), + [anon_sym_DASH_GT] = ACTIONS(7759), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7761), + [anon_sym_override] = ACTIONS(7761), + [anon_sym_requires] = ACTIONS(7761), + [anon_sym_DASH_GT_STAR] = ACTIONS(7761), + }, + [STATE(3024)] = { [sym_identifier] = ACTIONS(8992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8994), - [anon_sym_COMMA] = ACTIONS(8994), - [anon_sym_RPAREN] = ACTIONS(8994), - [aux_sym_preproc_if_token2] = ACTIONS(8994), - [aux_sym_preproc_else_token1] = ACTIONS(8994), - [aux_sym_preproc_elif_token1] = ACTIONS(8992), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8994), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8994), [anon_sym_LPAREN2] = ACTIONS(8994), - [anon_sym_DASH] = ACTIONS(8992), - [anon_sym_PLUS] = ACTIONS(8992), - [anon_sym_STAR] = ACTIONS(8992), - [anon_sym_SLASH] = ACTIONS(8992), - [anon_sym_PERCENT] = ACTIONS(8992), + [anon_sym_TILDE] = ACTIONS(8994), + [anon_sym_STAR] = ACTIONS(8994), [anon_sym_PIPE_PIPE] = ACTIONS(8994), [anon_sym_AMP_AMP] = ACTIONS(8994), - [anon_sym_PIPE] = ACTIONS(8992), - [anon_sym_CARET] = ACTIONS(8992), [anon_sym_AMP] = ACTIONS(8992), - [anon_sym_EQ_EQ] = ACTIONS(8994), - [anon_sym_BANG_EQ] = ACTIONS(8994), - [anon_sym_GT] = ACTIONS(8992), - [anon_sym_GT_EQ] = ACTIONS(8994), - [anon_sym_LT_EQ] = ACTIONS(8992), - [anon_sym_LT] = ACTIONS(8992), - [anon_sym_LT_LT] = ACTIONS(8992), - [anon_sym_GT_GT] = ACTIONS(8992), - [anon_sym_SEMI] = ACTIONS(8994), + [anon_sym___extension__] = ACTIONS(8992), + [anon_sym_virtual] = ACTIONS(8992), + [anon_sym_extern] = ACTIONS(8992), [anon_sym___attribute__] = ACTIONS(8992), [anon_sym___attribute] = ACTIONS(8992), - [anon_sym_COLON] = ACTIONS(8992), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8994), - [anon_sym_RBRACE] = ACTIONS(8994), - [anon_sym_LBRACK] = ACTIONS(8994), - [anon_sym_EQ] = ACTIONS(8992), - [anon_sym_QMARK] = ACTIONS(8994), - [anon_sym_STAR_EQ] = ACTIONS(8994), - [anon_sym_SLASH_EQ] = ACTIONS(8994), - [anon_sym_PERCENT_EQ] = ACTIONS(8994), - [anon_sym_PLUS_EQ] = ACTIONS(8994), - [anon_sym_DASH_EQ] = ACTIONS(8994), - [anon_sym_LT_LT_EQ] = ACTIONS(8994), - [anon_sym_GT_GT_EQ] = ACTIONS(8994), - [anon_sym_AMP_EQ] = ACTIONS(8994), - [anon_sym_CARET_EQ] = ACTIONS(8994), - [anon_sym_PIPE_EQ] = ACTIONS(8994), - [anon_sym_and_eq] = ACTIONS(8992), - [anon_sym_or_eq] = ACTIONS(8992), - [anon_sym_xor_eq] = ACTIONS(8992), - [anon_sym_LT_EQ_GT] = ACTIONS(8994), + [anon_sym_using] = ACTIONS(8992), + [anon_sym_COLON_COLON] = ACTIONS(8994), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8994), + [anon_sym___declspec] = ACTIONS(8992), + [anon_sym___based] = ACTIONS(8992), + [anon_sym___cdecl] = ACTIONS(8992), + [anon_sym___clrcall] = ACTIONS(8992), + [anon_sym___stdcall] = ACTIONS(8992), + [anon_sym___fastcall] = ACTIONS(8992), + [anon_sym___thiscall] = ACTIONS(8992), + [anon_sym___vectorcall] = ACTIONS(8992), + [anon_sym_LBRACE] = ACTIONS(8994), + [anon_sym_signed] = ACTIONS(8992), + [anon_sym_unsigned] = ACTIONS(8992), + [anon_sym_long] = ACTIONS(8992), + [anon_sym_short] = ACTIONS(8992), + [anon_sym_LBRACK] = ACTIONS(8992), + [anon_sym_static] = ACTIONS(8992), + [anon_sym_register] = ACTIONS(8992), + [anon_sym_inline] = ACTIONS(8992), + [anon_sym___inline] = ACTIONS(8992), + [anon_sym___inline__] = ACTIONS(8992), + [anon_sym___forceinline] = ACTIONS(8992), + [anon_sym_thread_local] = ACTIONS(8992), + [anon_sym___thread] = ACTIONS(8992), + [anon_sym_const] = ACTIONS(8992), + [anon_sym_constexpr] = ACTIONS(8992), + [anon_sym_volatile] = ACTIONS(8992), + [anon_sym_restrict] = ACTIONS(8992), + [anon_sym___restrict__] = ACTIONS(8992), + [anon_sym__Atomic] = ACTIONS(8992), + [anon_sym__Noreturn] = ACTIONS(8992), + [anon_sym_noreturn] = ACTIONS(8992), + [anon_sym__Nonnull] = ACTIONS(8992), + [anon_sym_mutable] = ACTIONS(8992), + [anon_sym_constinit] = ACTIONS(8992), + [anon_sym_consteval] = ACTIONS(8992), + [anon_sym_alignas] = ACTIONS(8992), + [anon_sym__Alignas] = ACTIONS(8992), + [sym_primitive_type] = ACTIONS(8992), + [anon_sym_enum] = ACTIONS(8992), + [anon_sym_class] = ACTIONS(8992), + [anon_sym_struct] = ACTIONS(8992), + [anon_sym_union] = ACTIONS(8992), [anon_sym_or] = ACTIONS(8992), [anon_sym_and] = ACTIONS(8992), - [anon_sym_bitor] = ACTIONS(8992), - [anon_sym_xor] = ACTIONS(8992), - [anon_sym_bitand] = ACTIONS(8992), - [anon_sym_not_eq] = ACTIONS(8992), - [anon_sym_DASH_DASH] = ACTIONS(8994), - [anon_sym_PLUS_PLUS] = ACTIONS(8994), - [anon_sym_DOT] = ACTIONS(8992), - [anon_sym_DOT_STAR] = ACTIONS(8994), + [anon_sym_typename] = ACTIONS(8992), [anon_sym_DASH_GT] = ACTIONS(8994), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8992), - [anon_sym_override] = ACTIONS(8992), - [anon_sym_requires] = ACTIONS(8992), - [anon_sym_COLON_RBRACK] = ACTIONS(8994), + [sym_auto] = ACTIONS(8992), + [anon_sym_decltype] = ACTIONS(8992), + [anon_sym_explicit] = ACTIONS(8992), + [anon_sym_template] = ACTIONS(8992), + [anon_sym_operator] = ACTIONS(8992), + [anon_sym_friend] = ACTIONS(8992), + [anon_sym_noexcept] = ACTIONS(8992), + [anon_sym_throw] = ACTIONS(8992), + [anon_sym_concept] = ACTIONS(8992), + [anon_sym_LBRACK_COLON] = ACTIONS(8994), }, - [STATE(3516)] = { - [sym_identifier] = ACTIONS(7546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [aux_sym_preproc_if_token2] = ACTIONS(7544), - [aux_sym_preproc_else_token1] = ACTIONS(7544), - [aux_sym_preproc_elif_token1] = ACTIONS(7546), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7546), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7546), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7546), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7546), - [anon_sym_GT_GT] = ACTIONS(7546), - [anon_sym_SEMI] = ACTIONS(7544), - [anon_sym___attribute__] = ACTIONS(7546), - [anon_sym___attribute] = ACTIONS(7546), - [anon_sym_COLON] = ACTIONS(7546), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), - [anon_sym_RBRACE] = ACTIONS(7544), - [anon_sym_LBRACK] = ACTIONS(7544), - [anon_sym_EQ] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_STAR_EQ] = ACTIONS(7544), - [anon_sym_SLASH_EQ] = ACTIONS(7544), - [anon_sym_PERCENT_EQ] = ACTIONS(7544), - [anon_sym_PLUS_EQ] = ACTIONS(7544), - [anon_sym_DASH_EQ] = ACTIONS(7544), - [anon_sym_LT_LT_EQ] = ACTIONS(7544), - [anon_sym_GT_GT_EQ] = ACTIONS(7544), - [anon_sym_AMP_EQ] = ACTIONS(7544), - [anon_sym_CARET_EQ] = ACTIONS(7544), - [anon_sym_PIPE_EQ] = ACTIONS(7544), - [anon_sym_and_eq] = ACTIONS(7546), - [anon_sym_or_eq] = ACTIONS(7546), - [anon_sym_xor_eq] = ACTIONS(7546), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7546), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7546), - [anon_sym_not_eq] = ACTIONS(7546), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(7544), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7546), - [anon_sym_override] = ACTIONS(7546), - [anon_sym_requires] = ACTIONS(7546), - [anon_sym_COLON_RBRACK] = ACTIONS(7544), + [STATE(3025)] = { + [sym_attribute_specifier] = STATE(3573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7437), + [anon_sym_COMMA] = ACTIONS(7437), + [anon_sym_RPAREN] = ACTIONS(7437), + [anon_sym_LPAREN2] = ACTIONS(7437), + [anon_sym_DASH] = ACTIONS(7435), + [anon_sym_PLUS] = ACTIONS(7435), + [anon_sym_STAR] = ACTIONS(7435), + [anon_sym_SLASH] = ACTIONS(7435), + [anon_sym_PERCENT] = ACTIONS(7435), + [anon_sym_PIPE_PIPE] = ACTIONS(7437), + [anon_sym_AMP_AMP] = ACTIONS(7437), + [anon_sym_PIPE] = ACTIONS(7435), + [anon_sym_CARET] = ACTIONS(7435), + [anon_sym_AMP] = ACTIONS(7435), + [anon_sym_EQ_EQ] = ACTIONS(7437), + [anon_sym_BANG_EQ] = ACTIONS(7437), + [anon_sym_GT] = ACTIONS(7435), + [anon_sym_GT_EQ] = ACTIONS(7437), + [anon_sym_LT_EQ] = ACTIONS(7435), + [anon_sym_LT] = ACTIONS(7435), + [anon_sym_LT_LT] = ACTIONS(7435), + [anon_sym_GT_GT] = ACTIONS(7435), + [anon_sym___extension__] = ACTIONS(7437), + [anon_sym___attribute__] = ACTIONS(8499), + [anon_sym___attribute] = ACTIONS(8501), + [anon_sym_LBRACE] = ACTIONS(7437), + [anon_sym_LBRACK] = ACTIONS(7437), + [anon_sym_EQ] = ACTIONS(7435), + [anon_sym_const] = ACTIONS(7435), + [anon_sym_constexpr] = ACTIONS(7437), + [anon_sym_volatile] = ACTIONS(7437), + [anon_sym_restrict] = ACTIONS(7437), + [anon_sym___restrict__] = ACTIONS(7437), + [anon_sym__Atomic] = ACTIONS(7437), + [anon_sym__Noreturn] = ACTIONS(7437), + [anon_sym_noreturn] = ACTIONS(7437), + [anon_sym__Nonnull] = ACTIONS(7437), + [anon_sym_mutable] = ACTIONS(7437), + [anon_sym_constinit] = ACTIONS(7437), + [anon_sym_consteval] = ACTIONS(7437), + [anon_sym_alignas] = ACTIONS(7437), + [anon_sym__Alignas] = ACTIONS(7437), + [anon_sym_QMARK] = ACTIONS(7437), + [anon_sym_STAR_EQ] = ACTIONS(7437), + [anon_sym_SLASH_EQ] = ACTIONS(7437), + [anon_sym_PERCENT_EQ] = ACTIONS(7437), + [anon_sym_PLUS_EQ] = ACTIONS(7437), + [anon_sym_DASH_EQ] = ACTIONS(7437), + [anon_sym_LT_LT_EQ] = ACTIONS(7437), + [anon_sym_GT_GT_EQ] = ACTIONS(7437), + [anon_sym_AMP_EQ] = ACTIONS(7437), + [anon_sym_CARET_EQ] = ACTIONS(7437), + [anon_sym_PIPE_EQ] = ACTIONS(7437), + [anon_sym_LT_EQ_GT] = ACTIONS(7437), + [anon_sym_or] = ACTIONS(7437), + [anon_sym_and] = ACTIONS(7437), + [anon_sym_bitor] = ACTIONS(7437), + [anon_sym_xor] = ACTIONS(7437), + [anon_sym_bitand] = ACTIONS(7437), + [anon_sym_not_eq] = ACTIONS(7437), + [anon_sym_DASH_DASH] = ACTIONS(7437), + [anon_sym_PLUS_PLUS] = ACTIONS(7437), + [anon_sym_DOT] = ACTIONS(7435), + [anon_sym_DOT_STAR] = ACTIONS(7437), + [anon_sym_DASH_GT] = ACTIONS(7435), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7437), + [anon_sym_override] = ACTIONS(7437), + [anon_sym_requires] = ACTIONS(7437), + [anon_sym_DASH_GT_STAR] = ACTIONS(7437), }, - [STATE(3517)] = { - [sym_attribute_specifier] = STATE(4374), - [sym_attribute_declaration] = STATE(4622), - [sym_gnu_asm_expression] = STATE(8992), - [sym_virtual_specifier] = STATE(4709), - [sym__function_exception_specification] = STATE(4017), - [sym__function_attributes_end] = STATE(5849), - [sym__function_postfix] = STATE(5258), - [sym_trailing_return_type] = STATE(5969), - [sym_noexcept] = STATE(4017), - [sym_throw_specifier] = STATE(4017), - [sym_requires_clause] = STATE(5258), - [aux_sym_type_definition_repeat1] = STATE(4374), - [aux_sym_attributed_declarator_repeat1] = STATE(4622), - [aux_sym__function_postfix_repeat1] = STATE(4709), - [sym_identifier] = ACTIONS(7546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [aux_sym_preproc_if_token2] = ACTIONS(7544), - [aux_sym_preproc_else_token1] = ACTIONS(7544), - [aux_sym_preproc_elif_token1] = ACTIONS(7546), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7544), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7544), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7544), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7544), - [anon_sym_GT_GT] = ACTIONS(7544), - [anon_sym___attribute__] = ACTIONS(6859), - [anon_sym___attribute] = ACTIONS(6859), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7546), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7546), - [anon_sym_not_eq] = ACTIONS(7546), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6129), - [anon_sym___asm__] = ACTIONS(6129), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(8882), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6868), - [anon_sym_override] = ACTIONS(6868), - [anon_sym_noexcept] = ACTIONS(6870), - [anon_sym_throw] = ACTIONS(6872), - [anon_sym_requires] = ACTIONS(6874), + [STATE(3026)] = { + [sym_attribute_specifier] = STATE(3577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7523), + [anon_sym_COMMA] = ACTIONS(7523), + [anon_sym_RPAREN] = ACTIONS(7523), + [anon_sym_LPAREN2] = ACTIONS(7523), + [anon_sym_DASH] = ACTIONS(7521), + [anon_sym_PLUS] = ACTIONS(7521), + [anon_sym_STAR] = ACTIONS(7521), + [anon_sym_SLASH] = ACTIONS(7521), + [anon_sym_PERCENT] = ACTIONS(7521), + [anon_sym_PIPE_PIPE] = ACTIONS(7523), + [anon_sym_AMP_AMP] = ACTIONS(7523), + [anon_sym_PIPE] = ACTIONS(7521), + [anon_sym_CARET] = ACTIONS(7521), + [anon_sym_AMP] = ACTIONS(7521), + [anon_sym_EQ_EQ] = ACTIONS(7523), + [anon_sym_BANG_EQ] = ACTIONS(7523), + [anon_sym_GT] = ACTIONS(7521), + [anon_sym_GT_EQ] = ACTIONS(7523), + [anon_sym_LT_EQ] = ACTIONS(7521), + [anon_sym_LT] = ACTIONS(7521), + [anon_sym_LT_LT] = ACTIONS(7521), + [anon_sym_GT_GT] = ACTIONS(7521), + [anon_sym___extension__] = ACTIONS(7523), + [anon_sym___attribute__] = ACTIONS(8499), + [anon_sym___attribute] = ACTIONS(8501), + [anon_sym_LBRACE] = ACTIONS(7523), + [anon_sym_LBRACK] = ACTIONS(7523), + [anon_sym_EQ] = ACTIONS(7521), + [anon_sym_const] = ACTIONS(7521), + [anon_sym_constexpr] = ACTIONS(7523), + [anon_sym_volatile] = ACTIONS(7523), + [anon_sym_restrict] = ACTIONS(7523), + [anon_sym___restrict__] = ACTIONS(7523), + [anon_sym__Atomic] = ACTIONS(7523), + [anon_sym__Noreturn] = ACTIONS(7523), + [anon_sym_noreturn] = ACTIONS(7523), + [anon_sym__Nonnull] = ACTIONS(7523), + [anon_sym_mutable] = ACTIONS(7523), + [anon_sym_constinit] = ACTIONS(7523), + [anon_sym_consteval] = ACTIONS(7523), + [anon_sym_alignas] = ACTIONS(7523), + [anon_sym__Alignas] = ACTIONS(7523), + [anon_sym_QMARK] = ACTIONS(7523), + [anon_sym_STAR_EQ] = ACTIONS(7523), + [anon_sym_SLASH_EQ] = ACTIONS(7523), + [anon_sym_PERCENT_EQ] = ACTIONS(7523), + [anon_sym_PLUS_EQ] = ACTIONS(7523), + [anon_sym_DASH_EQ] = ACTIONS(7523), + [anon_sym_LT_LT_EQ] = ACTIONS(7523), + [anon_sym_GT_GT_EQ] = ACTIONS(7523), + [anon_sym_AMP_EQ] = ACTIONS(7523), + [anon_sym_CARET_EQ] = ACTIONS(7523), + [anon_sym_PIPE_EQ] = ACTIONS(7523), + [anon_sym_LT_EQ_GT] = ACTIONS(7523), + [anon_sym_or] = ACTIONS(7523), + [anon_sym_and] = ACTIONS(7523), + [anon_sym_bitor] = ACTIONS(7523), + [anon_sym_xor] = ACTIONS(7523), + [anon_sym_bitand] = ACTIONS(7523), + [anon_sym_not_eq] = ACTIONS(7523), + [anon_sym_DASH_DASH] = ACTIONS(7523), + [anon_sym_PLUS_PLUS] = ACTIONS(7523), + [anon_sym_DOT] = ACTIONS(7521), + [anon_sym_DOT_STAR] = ACTIONS(7523), + [anon_sym_DASH_GT] = ACTIONS(7521), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7523), + [anon_sym_override] = ACTIONS(7523), + [anon_sym_requires] = ACTIONS(7523), + [anon_sym_DASH_GT_STAR] = ACTIONS(7523), }, - [STATE(3518)] = { - [sym_attribute_specifier] = STATE(4374), - [sym_attribute_declaration] = STATE(4622), - [sym_gnu_asm_expression] = STATE(8992), - [sym_virtual_specifier] = STATE(4709), - [sym__function_exception_specification] = STATE(4018), - [sym__function_attributes_end] = STATE(5850), - [sym__function_postfix] = STATE(5305), - [sym_trailing_return_type] = STATE(5924), - [sym_noexcept] = STATE(4018), - [sym_throw_specifier] = STATE(4018), - [sym_requires_clause] = STATE(5305), - [aux_sym_type_definition_repeat1] = STATE(4374), - [aux_sym_attributed_declarator_repeat1] = STATE(4622), - [aux_sym__function_postfix_repeat1] = STATE(4709), - [sym_identifier] = ACTIONS(7629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [aux_sym_preproc_if_token2] = ACTIONS(7627), - [aux_sym_preproc_else_token1] = ACTIONS(7627), - [aux_sym_preproc_elif_token1] = ACTIONS(7629), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7627), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7627), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7627), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7627), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7627), - [anon_sym_GT_GT] = ACTIONS(7627), - [anon_sym___attribute__] = ACTIONS(6859), - [anon_sym___attribute] = ACTIONS(6859), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7629), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7629), - [anon_sym_not_eq] = ACTIONS(7629), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6129), - [anon_sym___asm__] = ACTIONS(6129), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(8996), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6868), - [anon_sym_override] = ACTIONS(6868), - [anon_sym_noexcept] = ACTIONS(6870), - [anon_sym_throw] = ACTIONS(6872), - [anon_sym_requires] = ACTIONS(6874), + [STATE(3027)] = { + [sym_identifier] = ACTIONS(8996), + [anon_sym_LPAREN2] = ACTIONS(8998), + [anon_sym_TILDE] = ACTIONS(8998), + [anon_sym_STAR] = ACTIONS(8998), + [anon_sym_PIPE_PIPE] = ACTIONS(8998), + [anon_sym_AMP_AMP] = ACTIONS(8998), + [anon_sym_AMP] = ACTIONS(8996), + [anon_sym___extension__] = ACTIONS(8996), + [anon_sym_virtual] = ACTIONS(8996), + [anon_sym_extern] = ACTIONS(8996), + [anon_sym___attribute__] = ACTIONS(8996), + [anon_sym___attribute] = ACTIONS(8996), + [anon_sym_using] = ACTIONS(8996), + [anon_sym_COLON_COLON] = ACTIONS(8998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8998), + [anon_sym___declspec] = ACTIONS(8996), + [anon_sym___based] = ACTIONS(8996), + [anon_sym___cdecl] = ACTIONS(8996), + [anon_sym___clrcall] = ACTIONS(8996), + [anon_sym___stdcall] = ACTIONS(8996), + [anon_sym___fastcall] = ACTIONS(8996), + [anon_sym___thiscall] = ACTIONS(8996), + [anon_sym___vectorcall] = ACTIONS(8996), + [anon_sym_LBRACE] = ACTIONS(8998), + [anon_sym_signed] = ACTIONS(8996), + [anon_sym_unsigned] = ACTIONS(8996), + [anon_sym_long] = ACTIONS(8996), + [anon_sym_short] = ACTIONS(8996), + [anon_sym_LBRACK] = ACTIONS(8996), + [anon_sym_static] = ACTIONS(8996), + [anon_sym_register] = ACTIONS(8996), + [anon_sym_inline] = ACTIONS(8996), + [anon_sym___inline] = ACTIONS(8996), + [anon_sym___inline__] = ACTIONS(8996), + [anon_sym___forceinline] = ACTIONS(8996), + [anon_sym_thread_local] = ACTIONS(8996), + [anon_sym___thread] = ACTIONS(8996), + [anon_sym_const] = ACTIONS(8996), + [anon_sym_constexpr] = ACTIONS(8996), + [anon_sym_volatile] = ACTIONS(8996), + [anon_sym_restrict] = ACTIONS(8996), + [anon_sym___restrict__] = ACTIONS(8996), + [anon_sym__Atomic] = ACTIONS(8996), + [anon_sym__Noreturn] = ACTIONS(8996), + [anon_sym_noreturn] = ACTIONS(8996), + [anon_sym__Nonnull] = ACTIONS(8996), + [anon_sym_mutable] = ACTIONS(8996), + [anon_sym_constinit] = ACTIONS(8996), + [anon_sym_consteval] = ACTIONS(8996), + [anon_sym_alignas] = ACTIONS(8996), + [anon_sym__Alignas] = ACTIONS(8996), + [sym_primitive_type] = ACTIONS(8996), + [anon_sym_enum] = ACTIONS(8996), + [anon_sym_class] = ACTIONS(8996), + [anon_sym_struct] = ACTIONS(8996), + [anon_sym_union] = ACTIONS(8996), + [anon_sym_or] = ACTIONS(8996), + [anon_sym_and] = ACTIONS(8996), + [anon_sym_typename] = ACTIONS(8996), + [anon_sym_DASH_GT] = ACTIONS(8998), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8996), + [anon_sym_decltype] = ACTIONS(8996), + [anon_sym_explicit] = ACTIONS(8996), + [anon_sym_template] = ACTIONS(8996), + [anon_sym_operator] = ACTIONS(8996), + [anon_sym_friend] = ACTIONS(8996), + [anon_sym_noexcept] = ACTIONS(8996), + [anon_sym_throw] = ACTIONS(8996), + [anon_sym_concept] = ACTIONS(8996), + [anon_sym_LBRACK_COLON] = ACTIONS(8998), }, - [STATE(3519)] = { - [sym_attribute_specifier] = STATE(4374), - [sym_attribute_declaration] = STATE(4622), - [sym_gnu_asm_expression] = STATE(8992), - [sym_virtual_specifier] = STATE(4709), - [sym__function_exception_specification] = STATE(3986), - [sym__function_attributes_end] = STATE(5908), - [sym__function_postfix] = STATE(5258), - [sym_trailing_return_type] = STATE(6005), - [sym_noexcept] = STATE(3986), - [sym_throw_specifier] = STATE(3986), - [sym_requires_clause] = STATE(5258), - [aux_sym_type_definition_repeat1] = STATE(4374), - [aux_sym_attributed_declarator_repeat1] = STATE(4622), - [aux_sym__function_postfix_repeat1] = STATE(4709), - [sym_identifier] = ACTIONS(7546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [aux_sym_preproc_if_token2] = ACTIONS(7544), - [aux_sym_preproc_else_token1] = ACTIONS(7544), - [aux_sym_preproc_elif_token1] = ACTIONS(7546), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7544), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7544), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7544), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7544), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7544), - [anon_sym_GT_GT] = ACTIONS(7544), - [anon_sym___attribute__] = ACTIONS(6859), - [anon_sym___attribute] = ACTIONS(6859), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7546), - [anon_sym_and] = ACTIONS(7546), - [anon_sym_bitor] = ACTIONS(7546), - [anon_sym_xor] = ACTIONS(7546), - [anon_sym_bitand] = ACTIONS(7546), - [anon_sym_not_eq] = ACTIONS(7546), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6129), - [anon_sym___asm__] = ACTIONS(6129), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(8882), + [STATE(3028)] = { + [sym_identifier] = ACTIONS(7085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), + [anon_sym_COMMA] = ACTIONS(7090), + [anon_sym_RPAREN] = ACTIONS(7090), + [anon_sym_LPAREN2] = ACTIONS(7090), + [anon_sym_DASH] = ACTIONS(7085), + [anon_sym_PLUS] = ACTIONS(7085), + [anon_sym_STAR] = ACTIONS(7090), + [anon_sym_SLASH] = ACTIONS(7085), + [anon_sym_PERCENT] = ACTIONS(7090), + [anon_sym_PIPE_PIPE] = ACTIONS(7090), + [anon_sym_AMP_AMP] = ACTIONS(7090), + [anon_sym_PIPE] = ACTIONS(7085), + [anon_sym_CARET] = ACTIONS(7090), + [anon_sym_AMP] = ACTIONS(7085), + [anon_sym_EQ_EQ] = ACTIONS(7090), + [anon_sym_BANG_EQ] = ACTIONS(7090), + [anon_sym_GT] = ACTIONS(7085), + [anon_sym_GT_EQ] = ACTIONS(7090), + [anon_sym_LT_EQ] = ACTIONS(7085), + [anon_sym_LT] = ACTIONS(7085), + [anon_sym_LT_LT] = ACTIONS(7090), + [anon_sym_GT_GT] = ACTIONS(7090), + [anon_sym_SEMI] = ACTIONS(7090), + [anon_sym___extension__] = ACTIONS(7085), + [anon_sym___attribute__] = ACTIONS(7085), + [anon_sym___attribute] = ACTIONS(7085), + [anon_sym_COLON] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7090), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7090), + [anon_sym___based] = ACTIONS(7085), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_RBRACE] = ACTIONS(7090), + [anon_sym_signed] = ACTIONS(7085), + [anon_sym_unsigned] = ACTIONS(7085), + [anon_sym_long] = ACTIONS(7085), + [anon_sym_short] = ACTIONS(7085), + [anon_sym_LBRACK] = ACTIONS(7090), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7085), + [anon_sym_volatile] = ACTIONS(7085), + [anon_sym_restrict] = ACTIONS(7085), + [anon_sym___restrict__] = ACTIONS(7085), + [anon_sym__Atomic] = ACTIONS(7085), + [anon_sym__Noreturn] = ACTIONS(7085), + [anon_sym_noreturn] = ACTIONS(7085), + [anon_sym__Nonnull] = ACTIONS(7085), + [anon_sym_mutable] = ACTIONS(7085), + [anon_sym_constinit] = ACTIONS(7085), + [anon_sym_consteval] = ACTIONS(7085), + [anon_sym_alignas] = ACTIONS(7085), + [anon_sym__Alignas] = ACTIONS(7085), + [sym_primitive_type] = ACTIONS(7085), + [anon_sym_QMARK] = ACTIONS(7090), + [anon_sym_LT_EQ_GT] = ACTIONS(7090), + [anon_sym_or] = ACTIONS(7085), + [anon_sym_and] = ACTIONS(7085), + [anon_sym_bitor] = ACTIONS(7085), + [anon_sym_xor] = ACTIONS(7085), + [anon_sym_bitand] = ACTIONS(7085), + [anon_sym_not_eq] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7090), + [anon_sym_PLUS_PLUS] = ACTIONS(7090), + [anon_sym_DOT] = ACTIONS(7085), + [anon_sym_DOT_STAR] = ACTIONS(7090), + [anon_sym_DASH_GT] = ACTIONS(7090), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7085), + [anon_sym_override] = ACTIONS(7085), + [anon_sym_requires] = ACTIONS(7085), + [anon_sym_COLON_RBRACK] = ACTIONS(7090), + }, + [STATE(3029)] = { + [sym_virtual_specifier] = STATE(3433), + [sym__function_postfix] = STATE(3675), + [sym_requires_clause] = STATE(3675), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(8424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), + [anon_sym_COMMA] = ACTIONS(8422), + [anon_sym_RPAREN] = ACTIONS(8422), + [aux_sym_preproc_if_token2] = ACTIONS(8422), + [aux_sym_preproc_else_token1] = ACTIONS(8422), + [aux_sym_preproc_elif_token1] = ACTIONS(8424), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8422), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8422), + [anon_sym_LPAREN2] = ACTIONS(8422), + [anon_sym_DASH] = ACTIONS(8424), + [anon_sym_PLUS] = ACTIONS(8424), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_SLASH] = ACTIONS(8424), + [anon_sym_PERCENT] = ACTIONS(8424), + [anon_sym_PIPE_PIPE] = ACTIONS(8422), + [anon_sym_AMP_AMP] = ACTIONS(8422), + [anon_sym_PIPE] = ACTIONS(8424), + [anon_sym_CARET] = ACTIONS(8424), + [anon_sym_AMP] = ACTIONS(8424), + [anon_sym_EQ_EQ] = ACTIONS(8422), + [anon_sym_BANG_EQ] = ACTIONS(8422), + [anon_sym_GT] = ACTIONS(8424), + [anon_sym_GT_EQ] = ACTIONS(8422), + [anon_sym_LT_EQ] = ACTIONS(8424), + [anon_sym_LT] = ACTIONS(8424), + [anon_sym_LT_LT] = ACTIONS(8424), + [anon_sym_GT_GT] = ACTIONS(8424), + [anon_sym_SEMI] = ACTIONS(8422), + [anon_sym___attribute__] = ACTIONS(8424), + [anon_sym___attribute] = ACTIONS(8424), + [anon_sym_COLON] = ACTIONS(8424), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8422), + [anon_sym_RBRACE] = ACTIONS(8422), + [anon_sym_LBRACK] = ACTIONS(8422), + [anon_sym_EQ] = ACTIONS(8424), + [anon_sym_QMARK] = ACTIONS(8422), + [anon_sym_STAR_EQ] = ACTIONS(8422), + [anon_sym_SLASH_EQ] = ACTIONS(8422), + [anon_sym_PERCENT_EQ] = ACTIONS(8422), + [anon_sym_PLUS_EQ] = ACTIONS(8422), + [anon_sym_DASH_EQ] = ACTIONS(8422), + [anon_sym_LT_LT_EQ] = ACTIONS(8422), + [anon_sym_GT_GT_EQ] = ACTIONS(8422), + [anon_sym_AMP_EQ] = ACTIONS(8422), + [anon_sym_CARET_EQ] = ACTIONS(8422), + [anon_sym_PIPE_EQ] = ACTIONS(8422), + [anon_sym_and_eq] = ACTIONS(8424), + [anon_sym_or_eq] = ACTIONS(8424), + [anon_sym_xor_eq] = ACTIONS(8424), + [anon_sym_LT_EQ_GT] = ACTIONS(8422), + [anon_sym_or] = ACTIONS(8424), + [anon_sym_and] = ACTIONS(8424), + [anon_sym_bitor] = ACTIONS(8424), + [anon_sym_xor] = ACTIONS(8424), + [anon_sym_bitand] = ACTIONS(8424), + [anon_sym_not_eq] = ACTIONS(8424), + [anon_sym_DASH_DASH] = ACTIONS(8422), + [anon_sym_PLUS_PLUS] = ACTIONS(8422), + [anon_sym_DOT] = ACTIONS(8424), + [anon_sym_DOT_STAR] = ACTIONS(8422), + [anon_sym_DASH_GT] = ACTIONS(8422), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6502), + [anon_sym_override] = ACTIONS(6502), + [anon_sym_requires] = ACTIONS(6508), + [anon_sym_COLON_RBRACK] = ACTIONS(8422), + }, + [STATE(3030)] = { + [sym_attribute_specifier] = STATE(3578), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7533), + [anon_sym_COMMA] = ACTIONS(7533), + [anon_sym_RPAREN] = ACTIONS(7533), + [anon_sym_LPAREN2] = ACTIONS(7533), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_STAR] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7531), + [anon_sym_PERCENT] = ACTIONS(7531), + [anon_sym_PIPE_PIPE] = ACTIONS(7533), + [anon_sym_AMP_AMP] = ACTIONS(7533), + [anon_sym_PIPE] = ACTIONS(7531), + [anon_sym_CARET] = ACTIONS(7531), + [anon_sym_AMP] = ACTIONS(7531), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_GT] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7533), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_LT] = ACTIONS(7531), + [anon_sym_LT_LT] = ACTIONS(7531), + [anon_sym_GT_GT] = ACTIONS(7531), + [anon_sym___extension__] = ACTIONS(7533), + [anon_sym___attribute__] = ACTIONS(8499), + [anon_sym___attribute] = ACTIONS(8501), + [anon_sym_LBRACE] = ACTIONS(7533), + [anon_sym_LBRACK] = ACTIONS(7533), + [anon_sym_EQ] = ACTIONS(7531), + [anon_sym_const] = ACTIONS(7531), + [anon_sym_constexpr] = ACTIONS(7533), + [anon_sym_volatile] = ACTIONS(7533), + [anon_sym_restrict] = ACTIONS(7533), + [anon_sym___restrict__] = ACTIONS(7533), + [anon_sym__Atomic] = ACTIONS(7533), + [anon_sym__Noreturn] = ACTIONS(7533), + [anon_sym_noreturn] = ACTIONS(7533), + [anon_sym__Nonnull] = ACTIONS(7533), + [anon_sym_mutable] = ACTIONS(7533), + [anon_sym_constinit] = ACTIONS(7533), + [anon_sym_consteval] = ACTIONS(7533), + [anon_sym_alignas] = ACTIONS(7533), + [anon_sym__Alignas] = ACTIONS(7533), + [anon_sym_QMARK] = ACTIONS(7533), + [anon_sym_STAR_EQ] = ACTIONS(7533), + [anon_sym_SLASH_EQ] = ACTIONS(7533), + [anon_sym_PERCENT_EQ] = ACTIONS(7533), + [anon_sym_PLUS_EQ] = ACTIONS(7533), + [anon_sym_DASH_EQ] = ACTIONS(7533), + [anon_sym_LT_LT_EQ] = ACTIONS(7533), + [anon_sym_GT_GT_EQ] = ACTIONS(7533), + [anon_sym_AMP_EQ] = ACTIONS(7533), + [anon_sym_CARET_EQ] = ACTIONS(7533), + [anon_sym_PIPE_EQ] = ACTIONS(7533), + [anon_sym_LT_EQ_GT] = ACTIONS(7533), + [anon_sym_or] = ACTIONS(7533), + [anon_sym_and] = ACTIONS(7533), + [anon_sym_bitor] = ACTIONS(7533), + [anon_sym_xor] = ACTIONS(7533), + [anon_sym_bitand] = ACTIONS(7533), + [anon_sym_not_eq] = ACTIONS(7533), + [anon_sym_DASH_DASH] = ACTIONS(7533), + [anon_sym_PLUS_PLUS] = ACTIONS(7533), + [anon_sym_DOT] = ACTIONS(7531), + [anon_sym_DOT_STAR] = ACTIONS(7533), + [anon_sym_DASH_GT] = ACTIONS(7531), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7533), + [anon_sym_override] = ACTIONS(7533), + [anon_sym_requires] = ACTIONS(7533), + [anon_sym_DASH_GT_STAR] = ACTIONS(7533), + }, + [STATE(3031)] = { + [sym_decltype_auto] = STATE(3593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7225), + [anon_sym_and] = ACTIONS(7225), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7225), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7223), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8885), - [anon_sym_override] = ACTIONS(8885), - [anon_sym_noexcept] = ACTIONS(6870), - [anon_sym_throw] = ACTIONS(6872), - [anon_sym_requires] = ACTIONS(8888), + [sym_auto] = ACTIONS(8871), + [anon_sym_decltype] = ACTIONS(6962), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), + [anon_sym_DASH_GT_STAR] = ACTIONS(7225), }, - [STATE(3520)] = { - [sym_identifier] = ACTIONS(6250), - [anon_sym_LPAREN2] = ACTIONS(6252), - [anon_sym_TILDE] = ACTIONS(6252), - [anon_sym_STAR] = ACTIONS(6252), - [anon_sym_PIPE_PIPE] = ACTIONS(6252), - [anon_sym_AMP_AMP] = ACTIONS(6252), - [anon_sym_AMP] = ACTIONS(6250), - [anon_sym___extension__] = ACTIONS(6250), - [anon_sym_virtual] = ACTIONS(6250), - [anon_sym_extern] = ACTIONS(6250), - [anon_sym___attribute__] = ACTIONS(6250), - [anon_sym___attribute] = ACTIONS(6250), - [anon_sym_using] = ACTIONS(6250), - [anon_sym_COLON_COLON] = ACTIONS(6252), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6252), - [anon_sym___declspec] = ACTIONS(6250), - [anon_sym___based] = ACTIONS(6250), - [anon_sym___cdecl] = ACTIONS(6250), - [anon_sym___clrcall] = ACTIONS(6250), - [anon_sym___stdcall] = ACTIONS(6250), - [anon_sym___fastcall] = ACTIONS(6250), - [anon_sym___thiscall] = ACTIONS(6250), - [anon_sym___vectorcall] = ACTIONS(6250), - [anon_sym_signed] = ACTIONS(6250), - [anon_sym_unsigned] = ACTIONS(6250), - [anon_sym_long] = ACTIONS(6250), - [anon_sym_short] = ACTIONS(6250), - [anon_sym_LBRACK] = ACTIONS(6250), - [anon_sym_static] = ACTIONS(6250), - [anon_sym_register] = ACTIONS(6250), - [anon_sym_inline] = ACTIONS(6250), - [anon_sym___inline] = ACTIONS(6250), - [anon_sym___inline__] = ACTIONS(6250), - [anon_sym___forceinline] = ACTIONS(6250), - [anon_sym_thread_local] = ACTIONS(6250), - [anon_sym___thread] = ACTIONS(6250), - [anon_sym_const] = ACTIONS(6250), - [anon_sym_constexpr] = ACTIONS(6250), - [anon_sym_volatile] = ACTIONS(6250), - [anon_sym_restrict] = ACTIONS(6250), - [anon_sym___restrict__] = ACTIONS(6250), - [anon_sym__Atomic] = ACTIONS(6250), - [anon_sym__Noreturn] = ACTIONS(6250), - [anon_sym_noreturn] = ACTIONS(6250), - [anon_sym__Nonnull] = ACTIONS(6250), - [anon_sym_mutable] = ACTIONS(6250), - [anon_sym_constinit] = ACTIONS(6250), - [anon_sym_consteval] = ACTIONS(6250), - [anon_sym_alignas] = ACTIONS(6250), - [anon_sym__Alignas] = ACTIONS(6250), - [sym_primitive_type] = ACTIONS(6250), - [anon_sym_enum] = ACTIONS(6250), - [anon_sym_class] = ACTIONS(6250), - [anon_sym_struct] = ACTIONS(6250), - [anon_sym_union] = ACTIONS(6250), - [anon_sym_or] = ACTIONS(6250), - [anon_sym_and] = ACTIONS(6250), - [anon_sym_typename] = ACTIONS(6250), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6250), - [anon_sym_decltype] = ACTIONS(6250), - [anon_sym_explicit] = ACTIONS(6250), - [anon_sym_template] = ACTIONS(6250), - [anon_sym_operator] = ACTIONS(6250), - [anon_sym_friend] = ACTIONS(6250), - [anon_sym_concept] = ACTIONS(6250), - [anon_sym_LBRACK_COLON] = ACTIONS(6252), + [STATE(3032)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4309), + [sym_ms_pointer_modifier] = STATE(3965), + [sym__abstract_declarator] = STATE(6772), + [sym_abstract_parenthesized_declarator] = STATE(6607), + [sym_abstract_pointer_declarator] = STATE(6607), + [sym_abstract_function_declarator] = STATE(6607), + [sym_abstract_array_declarator] = STATE(6607), + [sym_type_qualifier] = STATE(3959), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2267), + [sym_abstract_reference_declarator] = STATE(6607), + [sym__function_declarator_seq] = STATE(6608), + [aux_sym__type_definition_type_repeat1] = STATE(3959), + [aux_sym_pointer_declarator_repeat1] = STATE(3965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(8572), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(8964), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6823), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(8966), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6823), + [anon_sym_AMP] = ACTIONS(8968), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6823), + [anon_sym_GT_GT] = ACTIONS(6823), + [anon_sym___extension__] = ACTIONS(8580), + [sym_ms_restrict_modifier] = ACTIONS(8582), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8584), + [sym_ms_signed_ptr_modifier] = ACTIONS(8584), + [anon_sym__unaligned] = ACTIONS(8586), + [anon_sym___unaligned] = ACTIONS(8586), + [anon_sym_LBRACK] = ACTIONS(8588), + [anon_sym_RBRACK] = ACTIONS(6823), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8580), + [anon_sym_volatile] = ACTIONS(8580), + [anon_sym_restrict] = ACTIONS(8580), + [anon_sym___restrict__] = ACTIONS(8580), + [anon_sym__Atomic] = ACTIONS(8580), + [anon_sym__Noreturn] = ACTIONS(8580), + [anon_sym_noreturn] = ACTIONS(8580), + [anon_sym__Nonnull] = ACTIONS(8580), + [anon_sym_mutable] = ACTIONS(8580), + [anon_sym_constinit] = ACTIONS(8580), + [anon_sym_consteval] = ACTIONS(8580), + [anon_sym_alignas] = ACTIONS(8590), + [anon_sym__Alignas] = ACTIONS(8590), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6823), + [anon_sym_and] = ACTIONS(6823), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6823), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), }, - [STATE(3521)] = { - [sym_identifier] = ACTIONS(8999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9001), - [anon_sym_COMMA] = ACTIONS(9001), - [anon_sym_RPAREN] = ACTIONS(9001), - [aux_sym_preproc_if_token2] = ACTIONS(9001), - [aux_sym_preproc_else_token1] = ACTIONS(9001), - [aux_sym_preproc_elif_token1] = ACTIONS(8999), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9001), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9001), - [anon_sym_LPAREN2] = ACTIONS(9001), - [anon_sym_DASH] = ACTIONS(8999), - [anon_sym_PLUS] = ACTIONS(8999), - [anon_sym_STAR] = ACTIONS(8999), - [anon_sym_SLASH] = ACTIONS(8999), - [anon_sym_PERCENT] = ACTIONS(8999), - [anon_sym_PIPE_PIPE] = ACTIONS(9001), - [anon_sym_AMP_AMP] = ACTIONS(9001), - [anon_sym_PIPE] = ACTIONS(8999), - [anon_sym_CARET] = ACTIONS(8999), - [anon_sym_AMP] = ACTIONS(8999), - [anon_sym_EQ_EQ] = ACTIONS(9001), - [anon_sym_BANG_EQ] = ACTIONS(9001), - [anon_sym_GT] = ACTIONS(8999), - [anon_sym_GT_EQ] = ACTIONS(9001), - [anon_sym_LT_EQ] = ACTIONS(8999), - [anon_sym_LT] = ACTIONS(8999), - [anon_sym_LT_LT] = ACTIONS(8999), - [anon_sym_GT_GT] = ACTIONS(8999), - [anon_sym_SEMI] = ACTIONS(9001), - [anon_sym___attribute__] = ACTIONS(8999), - [anon_sym___attribute] = ACTIONS(8999), - [anon_sym_COLON] = ACTIONS(8999), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9001), - [anon_sym_RBRACE] = ACTIONS(9001), - [anon_sym_LBRACK] = ACTIONS(9001), - [anon_sym_EQ] = ACTIONS(8999), - [anon_sym_QMARK] = ACTIONS(9001), - [anon_sym_STAR_EQ] = ACTIONS(9001), - [anon_sym_SLASH_EQ] = ACTIONS(9001), - [anon_sym_PERCENT_EQ] = ACTIONS(9001), - [anon_sym_PLUS_EQ] = ACTIONS(9001), - [anon_sym_DASH_EQ] = ACTIONS(9001), - [anon_sym_LT_LT_EQ] = ACTIONS(9001), - [anon_sym_GT_GT_EQ] = ACTIONS(9001), - [anon_sym_AMP_EQ] = ACTIONS(9001), - [anon_sym_CARET_EQ] = ACTIONS(9001), - [anon_sym_PIPE_EQ] = ACTIONS(9001), - [anon_sym_and_eq] = ACTIONS(8999), - [anon_sym_or_eq] = ACTIONS(8999), - [anon_sym_xor_eq] = ACTIONS(8999), - [anon_sym_LT_EQ_GT] = ACTIONS(9001), - [anon_sym_or] = ACTIONS(8999), - [anon_sym_and] = ACTIONS(8999), - [anon_sym_bitor] = ACTIONS(8999), - [anon_sym_xor] = ACTIONS(8999), - [anon_sym_bitand] = ACTIONS(8999), - [anon_sym_not_eq] = ACTIONS(8999), - [anon_sym_DASH_DASH] = ACTIONS(9001), - [anon_sym_PLUS_PLUS] = ACTIONS(9001), - [anon_sym_DOT] = ACTIONS(8999), - [anon_sym_DOT_STAR] = ACTIONS(9001), - [anon_sym_DASH_GT] = ACTIONS(9001), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8999), - [anon_sym_override] = ACTIONS(8999), - [anon_sym_requires] = ACTIONS(8999), - [anon_sym_COLON_RBRACK] = ACTIONS(9001), + [STATE(3033)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7641), + [anon_sym_COMMA] = ACTIONS(7641), + [anon_sym_RPAREN] = ACTIONS(7641), + [anon_sym_LPAREN2] = ACTIONS(7641), + [anon_sym_DASH] = ACTIONS(7639), + [anon_sym_PLUS] = ACTIONS(7639), + [anon_sym_STAR] = ACTIONS(7639), + [anon_sym_SLASH] = ACTIONS(7639), + [anon_sym_PERCENT] = ACTIONS(7639), + [anon_sym_PIPE_PIPE] = ACTIONS(7641), + [anon_sym_AMP_AMP] = ACTIONS(7641), + [anon_sym_PIPE] = ACTIONS(7639), + [anon_sym_CARET] = ACTIONS(7639), + [anon_sym_AMP] = ACTIONS(7639), + [anon_sym_EQ_EQ] = ACTIONS(7641), + [anon_sym_BANG_EQ] = ACTIONS(7641), + [anon_sym_GT] = ACTIONS(7639), + [anon_sym_GT_EQ] = ACTIONS(7641), + [anon_sym_LT_EQ] = ACTIONS(7639), + [anon_sym_LT] = ACTIONS(7639), + [anon_sym_LT_LT] = ACTIONS(7639), + [anon_sym_GT_GT] = ACTIONS(7639), + [anon_sym___extension__] = ACTIONS(7641), + [anon_sym_LBRACE] = ACTIONS(7641), + [anon_sym_LBRACK] = ACTIONS(7641), + [anon_sym_EQ] = ACTIONS(7639), + [anon_sym_const] = ACTIONS(7639), + [anon_sym_constexpr] = ACTIONS(7641), + [anon_sym_volatile] = ACTIONS(7641), + [anon_sym_restrict] = ACTIONS(7641), + [anon_sym___restrict__] = ACTIONS(7641), + [anon_sym__Atomic] = ACTIONS(7641), + [anon_sym__Noreturn] = ACTIONS(7641), + [anon_sym_noreturn] = ACTIONS(7641), + [anon_sym__Nonnull] = ACTIONS(7641), + [anon_sym_mutable] = ACTIONS(7641), + [anon_sym_constinit] = ACTIONS(7641), + [anon_sym_consteval] = ACTIONS(7641), + [anon_sym_alignas] = ACTIONS(7641), + [anon_sym__Alignas] = ACTIONS(7641), + [anon_sym_QMARK] = ACTIONS(7641), + [anon_sym_STAR_EQ] = ACTIONS(7641), + [anon_sym_SLASH_EQ] = ACTIONS(7641), + [anon_sym_PERCENT_EQ] = ACTIONS(7641), + [anon_sym_PLUS_EQ] = ACTIONS(7641), + [anon_sym_DASH_EQ] = ACTIONS(7641), + [anon_sym_LT_LT_EQ] = ACTIONS(7641), + [anon_sym_GT_GT_EQ] = ACTIONS(7641), + [anon_sym_AMP_EQ] = ACTIONS(7641), + [anon_sym_CARET_EQ] = ACTIONS(7641), + [anon_sym_PIPE_EQ] = ACTIONS(7641), + [anon_sym_and_eq] = ACTIONS(7641), + [anon_sym_or_eq] = ACTIONS(7641), + [anon_sym_xor_eq] = ACTIONS(7641), + [anon_sym_LT_EQ_GT] = ACTIONS(7641), + [anon_sym_or] = ACTIONS(7639), + [anon_sym_and] = ACTIONS(7639), + [anon_sym_bitor] = ACTIONS(7641), + [anon_sym_xor] = ACTIONS(7639), + [anon_sym_bitand] = ACTIONS(7641), + [anon_sym_not_eq] = ACTIONS(7641), + [anon_sym_DASH_DASH] = ACTIONS(7641), + [anon_sym_PLUS_PLUS] = ACTIONS(7641), + [anon_sym_DOT] = ACTIONS(7639), + [anon_sym_DOT_STAR] = ACTIONS(7641), + [anon_sym_DASH_GT] = ACTIONS(7639), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7641), + [anon_sym_override] = ACTIONS(7641), + [anon_sym_requires] = ACTIONS(7641), + [anon_sym_DASH_GT_STAR] = ACTIONS(7641), }, - [STATE(3522)] = { - [sym_identifier] = ACTIONS(9003), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9005), - [anon_sym_COMMA] = ACTIONS(9005), - [anon_sym_RPAREN] = ACTIONS(9005), - [aux_sym_preproc_if_token2] = ACTIONS(9005), - [aux_sym_preproc_else_token1] = ACTIONS(9005), - [aux_sym_preproc_elif_token1] = ACTIONS(9003), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9005), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9005), - [anon_sym_LPAREN2] = ACTIONS(9005), - [anon_sym_DASH] = ACTIONS(9003), - [anon_sym_PLUS] = ACTIONS(9003), - [anon_sym_STAR] = ACTIONS(9003), - [anon_sym_SLASH] = ACTIONS(9003), - [anon_sym_PERCENT] = ACTIONS(9003), - [anon_sym_PIPE_PIPE] = ACTIONS(9005), - [anon_sym_AMP_AMP] = ACTIONS(9005), - [anon_sym_PIPE] = ACTIONS(9003), - [anon_sym_CARET] = ACTIONS(9003), - [anon_sym_AMP] = ACTIONS(9003), - [anon_sym_EQ_EQ] = ACTIONS(9005), - [anon_sym_BANG_EQ] = ACTIONS(9005), - [anon_sym_GT] = ACTIONS(9003), - [anon_sym_GT_EQ] = ACTIONS(9005), - [anon_sym_LT_EQ] = ACTIONS(9003), - [anon_sym_LT] = ACTIONS(9003), - [anon_sym_LT_LT] = ACTIONS(9003), - [anon_sym_GT_GT] = ACTIONS(9003), - [anon_sym_SEMI] = ACTIONS(9005), - [anon_sym___attribute__] = ACTIONS(9003), - [anon_sym___attribute] = ACTIONS(9003), - [anon_sym_COLON] = ACTIONS(9003), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9005), - [anon_sym_RBRACE] = ACTIONS(9005), - [anon_sym_LBRACK] = ACTIONS(9005), - [anon_sym_EQ] = ACTIONS(9003), - [anon_sym_QMARK] = ACTIONS(9005), - [anon_sym_STAR_EQ] = ACTIONS(9005), - [anon_sym_SLASH_EQ] = ACTIONS(9005), - [anon_sym_PERCENT_EQ] = ACTIONS(9005), - [anon_sym_PLUS_EQ] = ACTIONS(9005), - [anon_sym_DASH_EQ] = ACTIONS(9005), - [anon_sym_LT_LT_EQ] = ACTIONS(9005), - [anon_sym_GT_GT_EQ] = ACTIONS(9005), - [anon_sym_AMP_EQ] = ACTIONS(9005), - [anon_sym_CARET_EQ] = ACTIONS(9005), - [anon_sym_PIPE_EQ] = ACTIONS(9005), - [anon_sym_and_eq] = ACTIONS(9003), - [anon_sym_or_eq] = ACTIONS(9003), - [anon_sym_xor_eq] = ACTIONS(9003), - [anon_sym_LT_EQ_GT] = ACTIONS(9005), - [anon_sym_or] = ACTIONS(9003), - [anon_sym_and] = ACTIONS(9003), - [anon_sym_bitor] = ACTIONS(9003), - [anon_sym_xor] = ACTIONS(9003), - [anon_sym_bitand] = ACTIONS(9003), - [anon_sym_not_eq] = ACTIONS(9003), - [anon_sym_DASH_DASH] = ACTIONS(9005), - [anon_sym_PLUS_PLUS] = ACTIONS(9005), - [anon_sym_DOT] = ACTIONS(9003), - [anon_sym_DOT_STAR] = ACTIONS(9005), - [anon_sym_DASH_GT] = ACTIONS(9005), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9003), - [anon_sym_override] = ACTIONS(9003), - [anon_sym_requires] = ACTIONS(9003), - [anon_sym_COLON_RBRACK] = ACTIONS(9005), + [STATE(3034)] = { + [sym_identifier] = ACTIONS(8992), + [anon_sym_LPAREN2] = ACTIONS(8994), + [anon_sym_TILDE] = ACTIONS(8994), + [anon_sym_STAR] = ACTIONS(8994), + [anon_sym_PIPE_PIPE] = ACTIONS(8994), + [anon_sym_AMP_AMP] = ACTIONS(8994), + [anon_sym_AMP] = ACTIONS(8992), + [anon_sym___extension__] = ACTIONS(8992), + [anon_sym_virtual] = ACTIONS(8992), + [anon_sym_extern] = ACTIONS(8992), + [anon_sym___attribute__] = ACTIONS(8992), + [anon_sym___attribute] = ACTIONS(8992), + [anon_sym_using] = ACTIONS(8992), + [anon_sym_COLON_COLON] = ACTIONS(8994), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8994), + [anon_sym___declspec] = ACTIONS(8992), + [anon_sym___based] = ACTIONS(8992), + [anon_sym___cdecl] = ACTIONS(8992), + [anon_sym___clrcall] = ACTIONS(8992), + [anon_sym___stdcall] = ACTIONS(8992), + [anon_sym___fastcall] = ACTIONS(8992), + [anon_sym___thiscall] = ACTIONS(8992), + [anon_sym___vectorcall] = ACTIONS(8992), + [anon_sym_LBRACE] = ACTIONS(8994), + [anon_sym_signed] = ACTIONS(8992), + [anon_sym_unsigned] = ACTIONS(8992), + [anon_sym_long] = ACTIONS(8992), + [anon_sym_short] = ACTIONS(8992), + [anon_sym_LBRACK] = ACTIONS(8992), + [anon_sym_static] = ACTIONS(8992), + [anon_sym_register] = ACTIONS(8992), + [anon_sym_inline] = ACTIONS(8992), + [anon_sym___inline] = ACTIONS(8992), + [anon_sym___inline__] = ACTIONS(8992), + [anon_sym___forceinline] = ACTIONS(8992), + [anon_sym_thread_local] = ACTIONS(8992), + [anon_sym___thread] = ACTIONS(8992), + [anon_sym_const] = ACTIONS(8992), + [anon_sym_constexpr] = ACTIONS(8992), + [anon_sym_volatile] = ACTIONS(8992), + [anon_sym_restrict] = ACTIONS(8992), + [anon_sym___restrict__] = ACTIONS(8992), + [anon_sym__Atomic] = ACTIONS(8992), + [anon_sym__Noreturn] = ACTIONS(8992), + [anon_sym_noreturn] = ACTIONS(8992), + [anon_sym__Nonnull] = ACTIONS(8992), + [anon_sym_mutable] = ACTIONS(8992), + [anon_sym_constinit] = ACTIONS(8992), + [anon_sym_consteval] = ACTIONS(8992), + [anon_sym_alignas] = ACTIONS(8992), + [anon_sym__Alignas] = ACTIONS(8992), + [sym_primitive_type] = ACTIONS(8992), + [anon_sym_enum] = ACTIONS(8992), + [anon_sym_class] = ACTIONS(8992), + [anon_sym_struct] = ACTIONS(8992), + [anon_sym_union] = ACTIONS(8992), + [anon_sym_or] = ACTIONS(8992), + [anon_sym_and] = ACTIONS(8992), + [anon_sym_typename] = ACTIONS(8992), + [anon_sym_DASH_GT] = ACTIONS(8994), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8992), + [anon_sym_decltype] = ACTIONS(8992), + [anon_sym_explicit] = ACTIONS(8992), + [anon_sym_template] = ACTIONS(8992), + [anon_sym_operator] = ACTIONS(8992), + [anon_sym_friend] = ACTIONS(8992), + [anon_sym_noexcept] = ACTIONS(8992), + [anon_sym_throw] = ACTIONS(8992), + [anon_sym_concept] = ACTIONS(8992), + [anon_sym_LBRACK_COLON] = ACTIONS(8994), }, - [STATE(3523)] = { + [STATE(3035)] = { + [sym_attribute_specifier] = STATE(3574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7455), + [anon_sym_COMMA] = ACTIONS(7455), + [anon_sym_RPAREN] = ACTIONS(7455), + [anon_sym_LPAREN2] = ACTIONS(7455), + [anon_sym_DASH] = ACTIONS(7453), + [anon_sym_PLUS] = ACTIONS(7453), + [anon_sym_STAR] = ACTIONS(7453), + [anon_sym_SLASH] = ACTIONS(7453), + [anon_sym_PERCENT] = ACTIONS(7453), + [anon_sym_PIPE_PIPE] = ACTIONS(7455), + [anon_sym_AMP_AMP] = ACTIONS(7455), + [anon_sym_PIPE] = ACTIONS(7453), + [anon_sym_CARET] = ACTIONS(7453), + [anon_sym_AMP] = ACTIONS(7453), + [anon_sym_EQ_EQ] = ACTIONS(7455), + [anon_sym_BANG_EQ] = ACTIONS(7455), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_GT_EQ] = ACTIONS(7455), + [anon_sym_LT_EQ] = ACTIONS(7453), + [anon_sym_LT] = ACTIONS(7453), + [anon_sym_LT_LT] = ACTIONS(7453), + [anon_sym_GT_GT] = ACTIONS(7453), + [anon_sym___extension__] = ACTIONS(7455), + [anon_sym___attribute__] = ACTIONS(8499), + [anon_sym___attribute] = ACTIONS(8501), + [anon_sym_LBRACE] = ACTIONS(7455), + [anon_sym_LBRACK] = ACTIONS(7455), + [anon_sym_EQ] = ACTIONS(7453), + [anon_sym_const] = ACTIONS(7453), + [anon_sym_constexpr] = ACTIONS(7455), + [anon_sym_volatile] = ACTIONS(7455), + [anon_sym_restrict] = ACTIONS(7455), + [anon_sym___restrict__] = ACTIONS(7455), + [anon_sym__Atomic] = ACTIONS(7455), + [anon_sym__Noreturn] = ACTIONS(7455), + [anon_sym_noreturn] = ACTIONS(7455), + [anon_sym__Nonnull] = ACTIONS(7455), + [anon_sym_mutable] = ACTIONS(7455), + [anon_sym_constinit] = ACTIONS(7455), + [anon_sym_consteval] = ACTIONS(7455), + [anon_sym_alignas] = ACTIONS(7455), + [anon_sym__Alignas] = ACTIONS(7455), + [anon_sym_QMARK] = ACTIONS(7455), + [anon_sym_STAR_EQ] = ACTIONS(7455), + [anon_sym_SLASH_EQ] = ACTIONS(7455), + [anon_sym_PERCENT_EQ] = ACTIONS(7455), + [anon_sym_PLUS_EQ] = ACTIONS(7455), + [anon_sym_DASH_EQ] = ACTIONS(7455), + [anon_sym_LT_LT_EQ] = ACTIONS(7455), + [anon_sym_GT_GT_EQ] = ACTIONS(7455), + [anon_sym_AMP_EQ] = ACTIONS(7455), + [anon_sym_CARET_EQ] = ACTIONS(7455), + [anon_sym_PIPE_EQ] = ACTIONS(7455), + [anon_sym_LT_EQ_GT] = ACTIONS(7455), + [anon_sym_or] = ACTIONS(7455), + [anon_sym_and] = ACTIONS(7455), + [anon_sym_bitor] = ACTIONS(7455), + [anon_sym_xor] = ACTIONS(7455), + [anon_sym_bitand] = ACTIONS(7455), + [anon_sym_not_eq] = ACTIONS(7455), + [anon_sym_DASH_DASH] = ACTIONS(7455), + [anon_sym_PLUS_PLUS] = ACTIONS(7455), + [anon_sym_DOT] = ACTIONS(7453), + [anon_sym_DOT_STAR] = ACTIONS(7455), + [anon_sym_DASH_GT] = ACTIONS(7453), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7455), + [anon_sym_override] = ACTIONS(7455), + [anon_sym_requires] = ACTIONS(7455), + [anon_sym_DASH_GT_STAR] = ACTIONS(7455), + }, + [STATE(3036)] = { + [sym_attribute_specifier] = STATE(3560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7507), + [anon_sym_COMMA] = ACTIONS(7507), + [anon_sym_RPAREN] = ACTIONS(7507), + [anon_sym_LPAREN2] = ACTIONS(7507), + [anon_sym_DASH] = ACTIONS(7505), + [anon_sym_PLUS] = ACTIONS(7505), + [anon_sym_STAR] = ACTIONS(7505), + [anon_sym_SLASH] = ACTIONS(7505), + [anon_sym_PERCENT] = ACTIONS(7505), + [anon_sym_PIPE_PIPE] = ACTIONS(7507), + [anon_sym_AMP_AMP] = ACTIONS(7507), + [anon_sym_PIPE] = ACTIONS(7505), + [anon_sym_CARET] = ACTIONS(7505), + [anon_sym_AMP] = ACTIONS(7505), + [anon_sym_EQ_EQ] = ACTIONS(7507), + [anon_sym_BANG_EQ] = ACTIONS(7507), + [anon_sym_GT] = ACTIONS(7505), + [anon_sym_GT_EQ] = ACTIONS(7507), + [anon_sym_LT_EQ] = ACTIONS(7505), + [anon_sym_LT] = ACTIONS(7505), + [anon_sym_LT_LT] = ACTIONS(7505), + [anon_sym_GT_GT] = ACTIONS(7505), + [anon_sym___extension__] = ACTIONS(7507), + [anon_sym___attribute__] = ACTIONS(8499), + [anon_sym___attribute] = ACTIONS(8501), + [anon_sym_LBRACE] = ACTIONS(7507), + [anon_sym_LBRACK] = ACTIONS(7507), + [anon_sym_EQ] = ACTIONS(7505), + [anon_sym_const] = ACTIONS(7505), + [anon_sym_constexpr] = ACTIONS(7507), + [anon_sym_volatile] = ACTIONS(7507), + [anon_sym_restrict] = ACTIONS(7507), + [anon_sym___restrict__] = ACTIONS(7507), + [anon_sym__Atomic] = ACTIONS(7507), + [anon_sym__Noreturn] = ACTIONS(7507), + [anon_sym_noreturn] = ACTIONS(7507), + [anon_sym__Nonnull] = ACTIONS(7507), + [anon_sym_mutable] = ACTIONS(7507), + [anon_sym_constinit] = ACTIONS(7507), + [anon_sym_consteval] = ACTIONS(7507), + [anon_sym_alignas] = ACTIONS(7507), + [anon_sym__Alignas] = ACTIONS(7507), + [anon_sym_QMARK] = ACTIONS(7507), + [anon_sym_STAR_EQ] = ACTIONS(7507), + [anon_sym_SLASH_EQ] = ACTIONS(7507), + [anon_sym_PERCENT_EQ] = ACTIONS(7507), + [anon_sym_PLUS_EQ] = ACTIONS(7507), + [anon_sym_DASH_EQ] = ACTIONS(7507), + [anon_sym_LT_LT_EQ] = ACTIONS(7507), + [anon_sym_GT_GT_EQ] = ACTIONS(7507), + [anon_sym_AMP_EQ] = ACTIONS(7507), + [anon_sym_CARET_EQ] = ACTIONS(7507), + [anon_sym_PIPE_EQ] = ACTIONS(7507), + [anon_sym_LT_EQ_GT] = ACTIONS(7507), + [anon_sym_or] = ACTIONS(7507), + [anon_sym_and] = ACTIONS(7507), + [anon_sym_bitor] = ACTIONS(7507), + [anon_sym_xor] = ACTIONS(7507), + [anon_sym_bitand] = ACTIONS(7507), + [anon_sym_not_eq] = ACTIONS(7507), + [anon_sym_DASH_DASH] = ACTIONS(7507), + [anon_sym_PLUS_PLUS] = ACTIONS(7507), + [anon_sym_DOT] = ACTIONS(7505), + [anon_sym_DOT_STAR] = ACTIONS(7507), + [anon_sym_DASH_GT] = ACTIONS(7505), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7507), + [anon_sym_override] = ACTIONS(7507), + [anon_sym_requires] = ACTIONS(7507), + [anon_sym_DASH_GT_STAR] = ACTIONS(7507), + }, + [STATE(3037)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7160), + [anon_sym_COMMA] = ACTIONS(7160), + [anon_sym_RPAREN] = ACTIONS(7160), + [anon_sym_LPAREN2] = ACTIONS(7160), + [anon_sym_DASH] = ACTIONS(7158), + [anon_sym_PLUS] = ACTIONS(7158), + [anon_sym_STAR] = ACTIONS(7158), + [anon_sym_SLASH] = ACTIONS(7158), + [anon_sym_PERCENT] = ACTIONS(7158), + [anon_sym_PIPE_PIPE] = ACTIONS(7160), + [anon_sym_AMP_AMP] = ACTIONS(7160), + [anon_sym_PIPE] = ACTIONS(7158), + [anon_sym_CARET] = ACTIONS(7158), + [anon_sym_AMP] = ACTIONS(7158), + [anon_sym_EQ_EQ] = ACTIONS(7160), + [anon_sym_BANG_EQ] = ACTIONS(7160), + [anon_sym_GT] = ACTIONS(7158), + [anon_sym_GT_EQ] = ACTIONS(7160), + [anon_sym_LT_EQ] = ACTIONS(7158), + [anon_sym_LT] = ACTIONS(7158), + [anon_sym_LT_LT] = ACTIONS(7158), + [anon_sym_GT_GT] = ACTIONS(7158), + [anon_sym___extension__] = ACTIONS(7160), + [anon_sym_LBRACE] = ACTIONS(7160), + [anon_sym_LBRACK] = ACTIONS(7160), + [anon_sym_EQ] = ACTIONS(7158), + [anon_sym_const] = ACTIONS(7158), + [anon_sym_constexpr] = ACTIONS(7160), + [anon_sym_volatile] = ACTIONS(7160), + [anon_sym_restrict] = ACTIONS(7160), + [anon_sym___restrict__] = ACTIONS(7160), + [anon_sym__Atomic] = ACTIONS(7160), + [anon_sym__Noreturn] = ACTIONS(7160), + [anon_sym_noreturn] = ACTIONS(7160), + [anon_sym__Nonnull] = ACTIONS(7160), + [anon_sym_mutable] = ACTIONS(7160), + [anon_sym_constinit] = ACTIONS(7160), + [anon_sym_consteval] = ACTIONS(7160), + [anon_sym_alignas] = ACTIONS(7160), + [anon_sym__Alignas] = ACTIONS(7160), + [anon_sym_QMARK] = ACTIONS(7160), + [anon_sym_STAR_EQ] = ACTIONS(7160), + [anon_sym_SLASH_EQ] = ACTIONS(7160), + [anon_sym_PERCENT_EQ] = ACTIONS(7160), + [anon_sym_PLUS_EQ] = ACTIONS(7160), + [anon_sym_DASH_EQ] = ACTIONS(7160), + [anon_sym_LT_LT_EQ] = ACTIONS(7160), + [anon_sym_GT_GT_EQ] = ACTIONS(7160), + [anon_sym_AMP_EQ] = ACTIONS(7160), + [anon_sym_CARET_EQ] = ACTIONS(7160), + [anon_sym_PIPE_EQ] = ACTIONS(7160), + [anon_sym_and_eq] = ACTIONS(7160), + [anon_sym_or_eq] = ACTIONS(7160), + [anon_sym_xor_eq] = ACTIONS(7160), + [anon_sym_LT_EQ_GT] = ACTIONS(7160), + [anon_sym_or] = ACTIONS(7158), + [anon_sym_and] = ACTIONS(7158), + [anon_sym_bitor] = ACTIONS(7160), + [anon_sym_xor] = ACTIONS(7158), + [anon_sym_bitand] = ACTIONS(7160), + [anon_sym_not_eq] = ACTIONS(7160), + [anon_sym_DASH_DASH] = ACTIONS(7160), + [anon_sym_PLUS_PLUS] = ACTIONS(7160), + [anon_sym_DOT] = ACTIONS(7158), + [anon_sym_DOT_STAR] = ACTIONS(7160), + [anon_sym_DASH_GT] = ACTIONS(7158), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7160), + [anon_sym_override] = ACTIONS(7160), + [anon_sym_requires] = ACTIONS(7160), + [anon_sym_DASH_GT_STAR] = ACTIONS(7160), + }, + [STATE(3038)] = { + [sym_identifier] = ACTIONS(9000), + [anon_sym_LPAREN2] = ACTIONS(9002), + [anon_sym_TILDE] = ACTIONS(9002), + [anon_sym_STAR] = ACTIONS(9002), + [anon_sym_PIPE_PIPE] = ACTIONS(9002), + [anon_sym_AMP_AMP] = ACTIONS(9002), + [anon_sym_AMP] = ACTIONS(9000), + [anon_sym___extension__] = ACTIONS(9000), + [anon_sym_virtual] = ACTIONS(9000), + [anon_sym_extern] = ACTIONS(9000), + [anon_sym___attribute__] = ACTIONS(9000), + [anon_sym___attribute] = ACTIONS(9000), + [anon_sym_using] = ACTIONS(9000), + [anon_sym_COLON_COLON] = ACTIONS(9002), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9002), + [anon_sym___declspec] = ACTIONS(9000), + [anon_sym___based] = ACTIONS(9000), + [anon_sym___cdecl] = ACTIONS(9000), + [anon_sym___clrcall] = ACTIONS(9000), + [anon_sym___stdcall] = ACTIONS(9000), + [anon_sym___fastcall] = ACTIONS(9000), + [anon_sym___thiscall] = ACTIONS(9000), + [anon_sym___vectorcall] = ACTIONS(9000), + [anon_sym_LBRACE] = ACTIONS(9002), + [anon_sym_signed] = ACTIONS(9000), + [anon_sym_unsigned] = ACTIONS(9000), + [anon_sym_long] = ACTIONS(9000), + [anon_sym_short] = ACTIONS(9000), + [anon_sym_LBRACK] = ACTIONS(9000), + [anon_sym_static] = ACTIONS(9000), + [anon_sym_register] = ACTIONS(9000), + [anon_sym_inline] = ACTIONS(9000), + [anon_sym___inline] = ACTIONS(9000), + [anon_sym___inline__] = ACTIONS(9000), + [anon_sym___forceinline] = ACTIONS(9000), + [anon_sym_thread_local] = ACTIONS(9000), + [anon_sym___thread] = ACTIONS(9000), + [anon_sym_const] = ACTIONS(9000), + [anon_sym_constexpr] = ACTIONS(9000), + [anon_sym_volatile] = ACTIONS(9000), + [anon_sym_restrict] = ACTIONS(9000), + [anon_sym___restrict__] = ACTIONS(9000), + [anon_sym__Atomic] = ACTIONS(9000), + [anon_sym__Noreturn] = ACTIONS(9000), + [anon_sym_noreturn] = ACTIONS(9000), + [anon_sym__Nonnull] = ACTIONS(9000), + [anon_sym_mutable] = ACTIONS(9000), + [anon_sym_constinit] = ACTIONS(9000), + [anon_sym_consteval] = ACTIONS(9000), + [anon_sym_alignas] = ACTIONS(9000), + [anon_sym__Alignas] = ACTIONS(9000), + [sym_primitive_type] = ACTIONS(9000), + [anon_sym_enum] = ACTIONS(9000), + [anon_sym_class] = ACTIONS(9000), + [anon_sym_struct] = ACTIONS(9000), + [anon_sym_union] = ACTIONS(9000), + [anon_sym_or] = ACTIONS(9000), + [anon_sym_and] = ACTIONS(9000), + [anon_sym_typename] = ACTIONS(9000), + [anon_sym_DASH_GT] = ACTIONS(9002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9000), + [anon_sym_decltype] = ACTIONS(9000), + [anon_sym_explicit] = ACTIONS(9000), + [anon_sym_template] = ACTIONS(9000), + [anon_sym_operator] = ACTIONS(9000), + [anon_sym_friend] = ACTIONS(9000), + [anon_sym_noexcept] = ACTIONS(9000), + [anon_sym_throw] = ACTIONS(9000), + [anon_sym_concept] = ACTIONS(9000), + [anon_sym_LBRACK_COLON] = ACTIONS(9002), + }, + [STATE(3039)] = { + [sym_attribute_specifier] = STATE(3543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7549), + [anon_sym_COMMA] = ACTIONS(7549), + [anon_sym_RPAREN] = ACTIONS(7549), + [anon_sym_LPAREN2] = ACTIONS(7549), + [anon_sym_DASH] = ACTIONS(7547), + [anon_sym_PLUS] = ACTIONS(7547), + [anon_sym_STAR] = ACTIONS(7547), + [anon_sym_SLASH] = ACTIONS(7547), + [anon_sym_PERCENT] = ACTIONS(7547), + [anon_sym_PIPE_PIPE] = ACTIONS(7549), + [anon_sym_AMP_AMP] = ACTIONS(7549), + [anon_sym_PIPE] = ACTIONS(7547), + [anon_sym_CARET] = ACTIONS(7547), + [anon_sym_AMP] = ACTIONS(7547), + [anon_sym_EQ_EQ] = ACTIONS(7549), + [anon_sym_BANG_EQ] = ACTIONS(7549), + [anon_sym_GT] = ACTIONS(7547), + [anon_sym_GT_EQ] = ACTIONS(7549), + [anon_sym_LT_EQ] = ACTIONS(7547), + [anon_sym_LT] = ACTIONS(7547), + [anon_sym_LT_LT] = ACTIONS(7547), + [anon_sym_GT_GT] = ACTIONS(7547), + [anon_sym___extension__] = ACTIONS(7549), + [anon_sym___attribute__] = ACTIONS(8499), + [anon_sym___attribute] = ACTIONS(8501), + [anon_sym_LBRACE] = ACTIONS(7549), + [anon_sym_LBRACK] = ACTIONS(7549), + [anon_sym_EQ] = ACTIONS(7547), + [anon_sym_const] = ACTIONS(7547), + [anon_sym_constexpr] = ACTIONS(7549), + [anon_sym_volatile] = ACTIONS(7549), + [anon_sym_restrict] = ACTIONS(7549), + [anon_sym___restrict__] = ACTIONS(7549), + [anon_sym__Atomic] = ACTIONS(7549), + [anon_sym__Noreturn] = ACTIONS(7549), + [anon_sym_noreturn] = ACTIONS(7549), + [anon_sym__Nonnull] = ACTIONS(7549), + [anon_sym_mutable] = ACTIONS(7549), + [anon_sym_constinit] = ACTIONS(7549), + [anon_sym_consteval] = ACTIONS(7549), + [anon_sym_alignas] = ACTIONS(7549), + [anon_sym__Alignas] = ACTIONS(7549), + [anon_sym_QMARK] = ACTIONS(7549), + [anon_sym_STAR_EQ] = ACTIONS(7549), + [anon_sym_SLASH_EQ] = ACTIONS(7549), + [anon_sym_PERCENT_EQ] = ACTIONS(7549), + [anon_sym_PLUS_EQ] = ACTIONS(7549), + [anon_sym_DASH_EQ] = ACTIONS(7549), + [anon_sym_LT_LT_EQ] = ACTIONS(7549), + [anon_sym_GT_GT_EQ] = ACTIONS(7549), + [anon_sym_AMP_EQ] = ACTIONS(7549), + [anon_sym_CARET_EQ] = ACTIONS(7549), + [anon_sym_PIPE_EQ] = ACTIONS(7549), + [anon_sym_LT_EQ_GT] = ACTIONS(7549), + [anon_sym_or] = ACTIONS(7549), + [anon_sym_and] = ACTIONS(7549), + [anon_sym_bitor] = ACTIONS(7549), + [anon_sym_xor] = ACTIONS(7549), + [anon_sym_bitand] = ACTIONS(7549), + [anon_sym_not_eq] = ACTIONS(7549), + [anon_sym_DASH_DASH] = ACTIONS(7549), + [anon_sym_PLUS_PLUS] = ACTIONS(7549), + [anon_sym_DOT] = ACTIONS(7547), + [anon_sym_DOT_STAR] = ACTIONS(7549), + [anon_sym_DASH_GT] = ACTIONS(7547), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7549), + [anon_sym_override] = ACTIONS(7549), + [anon_sym_requires] = ACTIONS(7549), + [anon_sym_DASH_GT_STAR] = ACTIONS(7549), + }, + [STATE(3040)] = { + [sym_attribute_specifier] = STATE(3546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7553), + [anon_sym_COMMA] = ACTIONS(7553), + [anon_sym_RPAREN] = ACTIONS(7553), + [anon_sym_LPAREN2] = ACTIONS(7553), + [anon_sym_DASH] = ACTIONS(7551), + [anon_sym_PLUS] = ACTIONS(7551), + [anon_sym_STAR] = ACTIONS(7551), + [anon_sym_SLASH] = ACTIONS(7551), + [anon_sym_PERCENT] = ACTIONS(7551), + [anon_sym_PIPE_PIPE] = ACTIONS(7553), + [anon_sym_AMP_AMP] = ACTIONS(7553), + [anon_sym_PIPE] = ACTIONS(7551), + [anon_sym_CARET] = ACTIONS(7551), + [anon_sym_AMP] = ACTIONS(7551), + [anon_sym_EQ_EQ] = ACTIONS(7553), + [anon_sym_BANG_EQ] = ACTIONS(7553), + [anon_sym_GT] = ACTIONS(7551), + [anon_sym_GT_EQ] = ACTIONS(7553), + [anon_sym_LT_EQ] = ACTIONS(7551), + [anon_sym_LT] = ACTIONS(7551), + [anon_sym_LT_LT] = ACTIONS(7551), + [anon_sym_GT_GT] = ACTIONS(7551), + [anon_sym___extension__] = ACTIONS(7553), + [anon_sym___attribute__] = ACTIONS(8499), + [anon_sym___attribute] = ACTIONS(8501), + [anon_sym_LBRACE] = ACTIONS(7553), + [anon_sym_LBRACK] = ACTIONS(7553), + [anon_sym_EQ] = ACTIONS(7551), + [anon_sym_const] = ACTIONS(7551), + [anon_sym_constexpr] = ACTIONS(7553), + [anon_sym_volatile] = ACTIONS(7553), + [anon_sym_restrict] = ACTIONS(7553), + [anon_sym___restrict__] = ACTIONS(7553), + [anon_sym__Atomic] = ACTIONS(7553), + [anon_sym__Noreturn] = ACTIONS(7553), + [anon_sym_noreturn] = ACTIONS(7553), + [anon_sym__Nonnull] = ACTIONS(7553), + [anon_sym_mutable] = ACTIONS(7553), + [anon_sym_constinit] = ACTIONS(7553), + [anon_sym_consteval] = ACTIONS(7553), + [anon_sym_alignas] = ACTIONS(7553), + [anon_sym__Alignas] = ACTIONS(7553), + [anon_sym_QMARK] = ACTIONS(7553), + [anon_sym_STAR_EQ] = ACTIONS(7553), + [anon_sym_SLASH_EQ] = ACTIONS(7553), + [anon_sym_PERCENT_EQ] = ACTIONS(7553), + [anon_sym_PLUS_EQ] = ACTIONS(7553), + [anon_sym_DASH_EQ] = ACTIONS(7553), + [anon_sym_LT_LT_EQ] = ACTIONS(7553), + [anon_sym_GT_GT_EQ] = ACTIONS(7553), + [anon_sym_AMP_EQ] = ACTIONS(7553), + [anon_sym_CARET_EQ] = ACTIONS(7553), + [anon_sym_PIPE_EQ] = ACTIONS(7553), + [anon_sym_LT_EQ_GT] = ACTIONS(7553), + [anon_sym_or] = ACTIONS(7553), + [anon_sym_and] = ACTIONS(7553), + [anon_sym_bitor] = ACTIONS(7553), + [anon_sym_xor] = ACTIONS(7553), + [anon_sym_bitand] = ACTIONS(7553), + [anon_sym_not_eq] = ACTIONS(7553), + [anon_sym_DASH_DASH] = ACTIONS(7553), + [anon_sym_PLUS_PLUS] = ACTIONS(7553), + [anon_sym_DOT] = ACTIONS(7551), + [anon_sym_DOT_STAR] = ACTIONS(7553), + [anon_sym_DASH_GT] = ACTIONS(7551), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7553), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_requires] = ACTIONS(7553), + [anon_sym_DASH_GT_STAR] = ACTIONS(7553), + }, + [STATE(3041)] = { + [sym_argument_list] = STATE(5537), + [sym_initializer_list] = STATE(5538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(2952), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7223), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + }, + [STATE(3042)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), + [anon_sym_COMMA] = ACTIONS(7563), + [anon_sym_RPAREN] = ACTIONS(7563), + [anon_sym_LPAREN2] = ACTIONS(7563), + [anon_sym_DASH] = ACTIONS(7561), + [anon_sym_PLUS] = ACTIONS(7561), + [anon_sym_STAR] = ACTIONS(7561), + [anon_sym_SLASH] = ACTIONS(7561), + [anon_sym_PERCENT] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_AMP_AMP] = ACTIONS(7563), + [anon_sym_PIPE] = ACTIONS(7561), + [anon_sym_CARET] = ACTIONS(7561), + [anon_sym_AMP] = ACTIONS(7561), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_GT] = ACTIONS(7561), + [anon_sym_GT_EQ] = ACTIONS(7563), + [anon_sym_LT_EQ] = ACTIONS(7561), + [anon_sym_LT] = ACTIONS(7561), + [anon_sym_LT_LT] = ACTIONS(7561), + [anon_sym_GT_GT] = ACTIONS(7561), + [anon_sym___extension__] = ACTIONS(7563), + [anon_sym_LBRACE] = ACTIONS(7563), + [anon_sym_LBRACK] = ACTIONS(7563), + [anon_sym_EQ] = ACTIONS(7561), + [anon_sym_const] = ACTIONS(7561), + [anon_sym_constexpr] = ACTIONS(7563), + [anon_sym_volatile] = ACTIONS(7563), + [anon_sym_restrict] = ACTIONS(7563), + [anon_sym___restrict__] = ACTIONS(7563), + [anon_sym__Atomic] = ACTIONS(7563), + [anon_sym__Noreturn] = ACTIONS(7563), + [anon_sym_noreturn] = ACTIONS(7563), + [anon_sym__Nonnull] = ACTIONS(7563), + [anon_sym_mutable] = ACTIONS(7563), + [anon_sym_constinit] = ACTIONS(7563), + [anon_sym_consteval] = ACTIONS(7563), + [anon_sym_alignas] = ACTIONS(7563), + [anon_sym__Alignas] = ACTIONS(7563), + [anon_sym_QMARK] = ACTIONS(7563), + [anon_sym_STAR_EQ] = ACTIONS(7563), + [anon_sym_SLASH_EQ] = ACTIONS(7563), + [anon_sym_PERCENT_EQ] = ACTIONS(7563), + [anon_sym_PLUS_EQ] = ACTIONS(7563), + [anon_sym_DASH_EQ] = ACTIONS(7563), + [anon_sym_LT_LT_EQ] = ACTIONS(7563), + [anon_sym_GT_GT_EQ] = ACTIONS(7563), + [anon_sym_AMP_EQ] = ACTIONS(7563), + [anon_sym_CARET_EQ] = ACTIONS(7563), + [anon_sym_PIPE_EQ] = ACTIONS(7563), + [anon_sym_and_eq] = ACTIONS(7563), + [anon_sym_or_eq] = ACTIONS(7563), + [anon_sym_xor_eq] = ACTIONS(7563), + [anon_sym_LT_EQ_GT] = ACTIONS(7563), + [anon_sym_or] = ACTIONS(7561), + [anon_sym_and] = ACTIONS(7561), + [anon_sym_bitor] = ACTIONS(7563), + [anon_sym_xor] = ACTIONS(7561), + [anon_sym_bitand] = ACTIONS(7563), + [anon_sym_not_eq] = ACTIONS(7563), + [anon_sym_DASH_DASH] = ACTIONS(7563), + [anon_sym_PLUS_PLUS] = ACTIONS(7563), + [anon_sym_DOT] = ACTIONS(7561), + [anon_sym_DOT_STAR] = ACTIONS(7563), + [anon_sym_DASH_GT] = ACTIONS(7561), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7563), + [anon_sym_override] = ACTIONS(7563), + [anon_sym_requires] = ACTIONS(7563), + [anon_sym_DASH_GT_STAR] = ACTIONS(7563), + }, + [STATE(3043)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_attributes_end] = STATE(4231), + [sym__function_postfix] = STATE(3628), + [sym_trailing_return_type] = STATE(3071), + [sym_requires_clause] = STATE(3628), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym_SEMI] = ACTIONS(7791), + [anon_sym___attribute__] = ACTIONS(8330), + [anon_sym___attribute] = ACTIONS(8333), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8336), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6561), + [anon_sym_override] = ACTIONS(6561), + [anon_sym_requires] = ACTIONS(6563), + }, + [STATE(3044)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_attributes_end] = STATE(4232), + [sym__function_postfix] = STATE(3655), + [sym_trailing_return_type] = STATE(3029), + [sym_requires_clause] = STATE(3655), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym_SEMI] = ACTIONS(7966), + [anon_sym___attribute__] = ACTIONS(8391), + [anon_sym___attribute] = ACTIONS(8394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7966), + [anon_sym_or_eq] = ACTIONS(7966), + [anon_sym_xor_eq] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(8397), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6561), + [anon_sym_override] = ACTIONS(6561), + [anon_sym_requires] = ACTIONS(6563), + }, + [STATE(3045)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7741), + [anon_sym_COMMA] = ACTIONS(7741), + [anon_sym_RPAREN] = ACTIONS(7741), + [anon_sym_LPAREN2] = ACTIONS(7741), + [anon_sym_DASH] = ACTIONS(7739), + [anon_sym_PLUS] = ACTIONS(7739), + [anon_sym_STAR] = ACTIONS(7739), + [anon_sym_SLASH] = ACTIONS(7739), + [anon_sym_PERCENT] = ACTIONS(7739), + [anon_sym_PIPE_PIPE] = ACTIONS(7741), + [anon_sym_AMP_AMP] = ACTIONS(7741), + [anon_sym_PIPE] = ACTIONS(7739), + [anon_sym_CARET] = ACTIONS(7739), + [anon_sym_AMP] = ACTIONS(7739), + [anon_sym_EQ_EQ] = ACTIONS(7741), + [anon_sym_BANG_EQ] = ACTIONS(7741), + [anon_sym_GT] = ACTIONS(7739), + [anon_sym_GT_EQ] = ACTIONS(7741), + [anon_sym_LT_EQ] = ACTIONS(7739), + [anon_sym_LT] = ACTIONS(7739), + [anon_sym_LT_LT] = ACTIONS(7739), + [anon_sym_GT_GT] = ACTIONS(7739), + [anon_sym___extension__] = ACTIONS(7741), + [anon_sym_LBRACE] = ACTIONS(7741), + [anon_sym_LBRACK] = ACTIONS(7741), + [anon_sym_EQ] = ACTIONS(7739), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7741), + [anon_sym_volatile] = ACTIONS(7741), + [anon_sym_restrict] = ACTIONS(7741), + [anon_sym___restrict__] = ACTIONS(7741), + [anon_sym__Atomic] = ACTIONS(7741), + [anon_sym__Noreturn] = ACTIONS(7741), + [anon_sym_noreturn] = ACTIONS(7741), + [anon_sym__Nonnull] = ACTIONS(7741), + [anon_sym_mutable] = ACTIONS(7741), + [anon_sym_constinit] = ACTIONS(7741), + [anon_sym_consteval] = ACTIONS(7741), + [anon_sym_alignas] = ACTIONS(7741), + [anon_sym__Alignas] = ACTIONS(7741), + [anon_sym_QMARK] = ACTIONS(7741), + [anon_sym_STAR_EQ] = ACTIONS(7741), + [anon_sym_SLASH_EQ] = ACTIONS(7741), + [anon_sym_PERCENT_EQ] = ACTIONS(7741), + [anon_sym_PLUS_EQ] = ACTIONS(7741), + [anon_sym_DASH_EQ] = ACTIONS(7741), + [anon_sym_LT_LT_EQ] = ACTIONS(7741), + [anon_sym_GT_GT_EQ] = ACTIONS(7741), + [anon_sym_AMP_EQ] = ACTIONS(7741), + [anon_sym_CARET_EQ] = ACTIONS(7741), + [anon_sym_PIPE_EQ] = ACTIONS(7741), + [anon_sym_and_eq] = ACTIONS(7741), + [anon_sym_or_eq] = ACTIONS(7741), + [anon_sym_xor_eq] = ACTIONS(7741), + [anon_sym_LT_EQ_GT] = ACTIONS(7741), + [anon_sym_or] = ACTIONS(7739), + [anon_sym_and] = ACTIONS(7739), + [anon_sym_bitor] = ACTIONS(7741), + [anon_sym_xor] = ACTIONS(7739), + [anon_sym_bitand] = ACTIONS(7741), + [anon_sym_not_eq] = ACTIONS(7741), + [anon_sym_DASH_DASH] = ACTIONS(7741), + [anon_sym_PLUS_PLUS] = ACTIONS(7741), + [anon_sym_DOT] = ACTIONS(7739), + [anon_sym_DOT_STAR] = ACTIONS(7741), + [anon_sym_DASH_GT] = ACTIONS(7739), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7741), + [anon_sym_override] = ACTIONS(7741), + [anon_sym_requires] = ACTIONS(7741), + [anon_sym_DASH_GT_STAR] = ACTIONS(7741), + }, + [STATE(3046)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), + [anon_sym_COMMA] = ACTIONS(7653), + [anon_sym_RPAREN] = ACTIONS(7653), + [anon_sym_LPAREN2] = ACTIONS(7653), + [anon_sym_DASH] = ACTIONS(7651), + [anon_sym_PLUS] = ACTIONS(7651), + [anon_sym_STAR] = ACTIONS(7651), + [anon_sym_SLASH] = ACTIONS(7651), + [anon_sym_PERCENT] = ACTIONS(7651), + [anon_sym_PIPE_PIPE] = ACTIONS(7653), + [anon_sym_AMP_AMP] = ACTIONS(7653), + [anon_sym_PIPE] = ACTIONS(7651), + [anon_sym_CARET] = ACTIONS(7651), + [anon_sym_AMP] = ACTIONS(7651), + [anon_sym_EQ_EQ] = ACTIONS(7653), + [anon_sym_BANG_EQ] = ACTIONS(7653), + [anon_sym_GT] = ACTIONS(7651), + [anon_sym_GT_EQ] = ACTIONS(7653), + [anon_sym_LT_EQ] = ACTIONS(7651), + [anon_sym_LT] = ACTIONS(7651), + [anon_sym_LT_LT] = ACTIONS(7651), + [anon_sym_GT_GT] = ACTIONS(7651), + [anon_sym___extension__] = ACTIONS(7653), + [anon_sym_LBRACE] = ACTIONS(7653), + [anon_sym_LBRACK] = ACTIONS(7653), + [anon_sym_EQ] = ACTIONS(7651), + [anon_sym_const] = ACTIONS(7651), + [anon_sym_constexpr] = ACTIONS(7653), + [anon_sym_volatile] = ACTIONS(7653), + [anon_sym_restrict] = ACTIONS(7653), + [anon_sym___restrict__] = ACTIONS(7653), + [anon_sym__Atomic] = ACTIONS(7653), + [anon_sym__Noreturn] = ACTIONS(7653), + [anon_sym_noreturn] = ACTIONS(7653), + [anon_sym__Nonnull] = ACTIONS(7653), + [anon_sym_mutable] = ACTIONS(7653), + [anon_sym_constinit] = ACTIONS(7653), + [anon_sym_consteval] = ACTIONS(7653), + [anon_sym_alignas] = ACTIONS(7653), + [anon_sym__Alignas] = ACTIONS(7653), + [anon_sym_QMARK] = ACTIONS(7653), + [anon_sym_STAR_EQ] = ACTIONS(7653), + [anon_sym_SLASH_EQ] = ACTIONS(7653), + [anon_sym_PERCENT_EQ] = ACTIONS(7653), + [anon_sym_PLUS_EQ] = ACTIONS(7653), + [anon_sym_DASH_EQ] = ACTIONS(7653), + [anon_sym_LT_LT_EQ] = ACTIONS(7653), + [anon_sym_GT_GT_EQ] = ACTIONS(7653), + [anon_sym_AMP_EQ] = ACTIONS(7653), + [anon_sym_CARET_EQ] = ACTIONS(7653), + [anon_sym_PIPE_EQ] = ACTIONS(7653), + [anon_sym_and_eq] = ACTIONS(7653), + [anon_sym_or_eq] = ACTIONS(7653), + [anon_sym_xor_eq] = ACTIONS(7653), + [anon_sym_LT_EQ_GT] = ACTIONS(7653), + [anon_sym_or] = ACTIONS(7651), + [anon_sym_and] = ACTIONS(7651), + [anon_sym_bitor] = ACTIONS(7653), + [anon_sym_xor] = ACTIONS(7651), + [anon_sym_bitand] = ACTIONS(7653), + [anon_sym_not_eq] = ACTIONS(7653), + [anon_sym_DASH_DASH] = ACTIONS(7653), + [anon_sym_PLUS_PLUS] = ACTIONS(7653), + [anon_sym_DOT] = ACTIONS(7651), + [anon_sym_DOT_STAR] = ACTIONS(7653), + [anon_sym_DASH_GT] = ACTIONS(7651), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7653), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_requires] = ACTIONS(7653), + [anon_sym_DASH_GT_STAR] = ACTIONS(7653), + }, + [STATE(3047)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7661), + [anon_sym_COMMA] = ACTIONS(7661), + [anon_sym_RPAREN] = ACTIONS(7661), + [anon_sym_LPAREN2] = ACTIONS(7661), + [anon_sym_DASH] = ACTIONS(7659), + [anon_sym_PLUS] = ACTIONS(7659), + [anon_sym_STAR] = ACTIONS(7659), + [anon_sym_SLASH] = ACTIONS(7659), + [anon_sym_PERCENT] = ACTIONS(7659), + [anon_sym_PIPE_PIPE] = ACTIONS(7661), + [anon_sym_AMP_AMP] = ACTIONS(7661), + [anon_sym_PIPE] = ACTIONS(7659), + [anon_sym_CARET] = ACTIONS(7659), + [anon_sym_AMP] = ACTIONS(7659), + [anon_sym_EQ_EQ] = ACTIONS(7661), + [anon_sym_BANG_EQ] = ACTIONS(7661), + [anon_sym_GT] = ACTIONS(7659), + [anon_sym_GT_EQ] = ACTIONS(7661), + [anon_sym_LT_EQ] = ACTIONS(7659), + [anon_sym_LT] = ACTIONS(7659), + [anon_sym_LT_LT] = ACTIONS(7659), + [anon_sym_GT_GT] = ACTIONS(7659), + [anon_sym___extension__] = ACTIONS(7661), + [anon_sym_LBRACE] = ACTIONS(7661), + [anon_sym_LBRACK] = ACTIONS(7661), + [anon_sym_EQ] = ACTIONS(7659), + [anon_sym_const] = ACTIONS(7659), + [anon_sym_constexpr] = ACTIONS(7661), + [anon_sym_volatile] = ACTIONS(7661), + [anon_sym_restrict] = ACTIONS(7661), + [anon_sym___restrict__] = ACTIONS(7661), + [anon_sym__Atomic] = ACTIONS(7661), + [anon_sym__Noreturn] = ACTIONS(7661), + [anon_sym_noreturn] = ACTIONS(7661), + [anon_sym__Nonnull] = ACTIONS(7661), + [anon_sym_mutable] = ACTIONS(7661), + [anon_sym_constinit] = ACTIONS(7661), + [anon_sym_consteval] = ACTIONS(7661), + [anon_sym_alignas] = ACTIONS(7661), + [anon_sym__Alignas] = ACTIONS(7661), + [anon_sym_QMARK] = ACTIONS(7661), + [anon_sym_STAR_EQ] = ACTIONS(7661), + [anon_sym_SLASH_EQ] = ACTIONS(7661), + [anon_sym_PERCENT_EQ] = ACTIONS(7661), + [anon_sym_PLUS_EQ] = ACTIONS(7661), + [anon_sym_DASH_EQ] = ACTIONS(7661), + [anon_sym_LT_LT_EQ] = ACTIONS(7661), + [anon_sym_GT_GT_EQ] = ACTIONS(7661), + [anon_sym_AMP_EQ] = ACTIONS(7661), + [anon_sym_CARET_EQ] = ACTIONS(7661), + [anon_sym_PIPE_EQ] = ACTIONS(7661), + [anon_sym_and_eq] = ACTIONS(7661), + [anon_sym_or_eq] = ACTIONS(7661), + [anon_sym_xor_eq] = ACTIONS(7661), + [anon_sym_LT_EQ_GT] = ACTIONS(7661), + [anon_sym_or] = ACTIONS(7659), + [anon_sym_and] = ACTIONS(7659), + [anon_sym_bitor] = ACTIONS(7661), + [anon_sym_xor] = ACTIONS(7659), + [anon_sym_bitand] = ACTIONS(7661), + [anon_sym_not_eq] = ACTIONS(7661), + [anon_sym_DASH_DASH] = ACTIONS(7661), + [anon_sym_PLUS_PLUS] = ACTIONS(7661), + [anon_sym_DOT] = ACTIONS(7659), + [anon_sym_DOT_STAR] = ACTIONS(7661), + [anon_sym_DASH_GT] = ACTIONS(7659), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7661), + [anon_sym_override] = ACTIONS(7661), + [anon_sym_requires] = ACTIONS(7661), + [anon_sym_DASH_GT_STAR] = ACTIONS(7661), + }, + [STATE(3048)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7745), + [anon_sym_COMMA] = ACTIONS(7745), + [anon_sym_RPAREN] = ACTIONS(7745), + [anon_sym_LPAREN2] = ACTIONS(7745), + [anon_sym_DASH] = ACTIONS(7743), + [anon_sym_PLUS] = ACTIONS(7743), + [anon_sym_STAR] = ACTIONS(7743), + [anon_sym_SLASH] = ACTIONS(7743), + [anon_sym_PERCENT] = ACTIONS(7743), + [anon_sym_PIPE_PIPE] = ACTIONS(7745), + [anon_sym_AMP_AMP] = ACTIONS(7745), + [anon_sym_PIPE] = ACTIONS(7743), + [anon_sym_CARET] = ACTIONS(7743), + [anon_sym_AMP] = ACTIONS(7743), + [anon_sym_EQ_EQ] = ACTIONS(7745), + [anon_sym_BANG_EQ] = ACTIONS(7745), + [anon_sym_GT] = ACTIONS(7743), + [anon_sym_GT_EQ] = ACTIONS(7745), + [anon_sym_LT_EQ] = ACTIONS(7743), + [anon_sym_LT] = ACTIONS(7743), + [anon_sym_LT_LT] = ACTIONS(7743), + [anon_sym_GT_GT] = ACTIONS(7743), + [anon_sym___extension__] = ACTIONS(7745), + [anon_sym_LBRACE] = ACTIONS(7745), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_EQ] = ACTIONS(7743), + [anon_sym_const] = ACTIONS(7743), + [anon_sym_constexpr] = ACTIONS(7745), + [anon_sym_volatile] = ACTIONS(7745), + [anon_sym_restrict] = ACTIONS(7745), + [anon_sym___restrict__] = ACTIONS(7745), + [anon_sym__Atomic] = ACTIONS(7745), + [anon_sym__Noreturn] = ACTIONS(7745), + [anon_sym_noreturn] = ACTIONS(7745), + [anon_sym__Nonnull] = ACTIONS(7745), + [anon_sym_mutable] = ACTIONS(7745), + [anon_sym_constinit] = ACTIONS(7745), + [anon_sym_consteval] = ACTIONS(7745), + [anon_sym_alignas] = ACTIONS(7745), + [anon_sym__Alignas] = ACTIONS(7745), + [anon_sym_QMARK] = ACTIONS(7745), + [anon_sym_STAR_EQ] = ACTIONS(7745), + [anon_sym_SLASH_EQ] = ACTIONS(7745), + [anon_sym_PERCENT_EQ] = ACTIONS(7745), + [anon_sym_PLUS_EQ] = ACTIONS(7745), + [anon_sym_DASH_EQ] = ACTIONS(7745), + [anon_sym_LT_LT_EQ] = ACTIONS(7745), + [anon_sym_GT_GT_EQ] = ACTIONS(7745), + [anon_sym_AMP_EQ] = ACTIONS(7745), + [anon_sym_CARET_EQ] = ACTIONS(7745), + [anon_sym_PIPE_EQ] = ACTIONS(7745), + [anon_sym_and_eq] = ACTIONS(7745), + [anon_sym_or_eq] = ACTIONS(7745), + [anon_sym_xor_eq] = ACTIONS(7745), + [anon_sym_LT_EQ_GT] = ACTIONS(7745), + [anon_sym_or] = ACTIONS(7743), + [anon_sym_and] = ACTIONS(7743), + [anon_sym_bitor] = ACTIONS(7745), + [anon_sym_xor] = ACTIONS(7743), + [anon_sym_bitand] = ACTIONS(7745), + [anon_sym_not_eq] = ACTIONS(7745), + [anon_sym_DASH_DASH] = ACTIONS(7745), + [anon_sym_PLUS_PLUS] = ACTIONS(7745), + [anon_sym_DOT] = ACTIONS(7743), + [anon_sym_DOT_STAR] = ACTIONS(7745), + [anon_sym_DASH_GT] = ACTIONS(7743), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7745), + [anon_sym_override] = ACTIONS(7745), + [anon_sym_requires] = ACTIONS(7745), + [anon_sym_DASH_GT_STAR] = ACTIONS(7745), + }, + [STATE(3049)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7753), + [anon_sym_COMMA] = ACTIONS(7753), + [anon_sym_RPAREN] = ACTIONS(7753), + [anon_sym_LPAREN2] = ACTIONS(7753), + [anon_sym_DASH] = ACTIONS(7751), + [anon_sym_PLUS] = ACTIONS(7751), + [anon_sym_STAR] = ACTIONS(7751), + [anon_sym_SLASH] = ACTIONS(7751), + [anon_sym_PERCENT] = ACTIONS(7751), + [anon_sym_PIPE_PIPE] = ACTIONS(7753), + [anon_sym_AMP_AMP] = ACTIONS(7753), + [anon_sym_PIPE] = ACTIONS(7751), + [anon_sym_CARET] = ACTIONS(7751), + [anon_sym_AMP] = ACTIONS(7751), + [anon_sym_EQ_EQ] = ACTIONS(7753), + [anon_sym_BANG_EQ] = ACTIONS(7753), + [anon_sym_GT] = ACTIONS(7751), + [anon_sym_GT_EQ] = ACTIONS(7753), + [anon_sym_LT_EQ] = ACTIONS(7751), + [anon_sym_LT] = ACTIONS(7751), + [anon_sym_LT_LT] = ACTIONS(7751), + [anon_sym_GT_GT] = ACTIONS(7751), + [anon_sym___extension__] = ACTIONS(7753), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_LBRACK] = ACTIONS(7753), + [anon_sym_EQ] = ACTIONS(7751), + [anon_sym_const] = ACTIONS(7751), + [anon_sym_constexpr] = ACTIONS(7753), + [anon_sym_volatile] = ACTIONS(7753), + [anon_sym_restrict] = ACTIONS(7753), + [anon_sym___restrict__] = ACTIONS(7753), + [anon_sym__Atomic] = ACTIONS(7753), + [anon_sym__Noreturn] = ACTIONS(7753), + [anon_sym_noreturn] = ACTIONS(7753), + [anon_sym__Nonnull] = ACTIONS(7753), + [anon_sym_mutable] = ACTIONS(7753), + [anon_sym_constinit] = ACTIONS(7753), + [anon_sym_consteval] = ACTIONS(7753), + [anon_sym_alignas] = ACTIONS(7753), + [anon_sym__Alignas] = ACTIONS(7753), + [anon_sym_QMARK] = ACTIONS(7753), + [anon_sym_STAR_EQ] = ACTIONS(7753), + [anon_sym_SLASH_EQ] = ACTIONS(7753), + [anon_sym_PERCENT_EQ] = ACTIONS(7753), + [anon_sym_PLUS_EQ] = ACTIONS(7753), + [anon_sym_DASH_EQ] = ACTIONS(7753), + [anon_sym_LT_LT_EQ] = ACTIONS(7753), + [anon_sym_GT_GT_EQ] = ACTIONS(7753), + [anon_sym_AMP_EQ] = ACTIONS(7753), + [anon_sym_CARET_EQ] = ACTIONS(7753), + [anon_sym_PIPE_EQ] = ACTIONS(7753), + [anon_sym_and_eq] = ACTIONS(7753), + [anon_sym_or_eq] = ACTIONS(7753), + [anon_sym_xor_eq] = ACTIONS(7753), + [anon_sym_LT_EQ_GT] = ACTIONS(7753), + [anon_sym_or] = ACTIONS(7751), + [anon_sym_and] = ACTIONS(7751), + [anon_sym_bitor] = ACTIONS(7753), + [anon_sym_xor] = ACTIONS(7751), + [anon_sym_bitand] = ACTIONS(7753), + [anon_sym_not_eq] = ACTIONS(7753), + [anon_sym_DASH_DASH] = ACTIONS(7753), + [anon_sym_PLUS_PLUS] = ACTIONS(7753), + [anon_sym_DOT] = ACTIONS(7751), + [anon_sym_DOT_STAR] = ACTIONS(7753), + [anon_sym_DASH_GT] = ACTIONS(7751), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7753), + [anon_sym_override] = ACTIONS(7753), + [anon_sym_requires] = ACTIONS(7753), + [anon_sym_DASH_GT_STAR] = ACTIONS(7753), + }, + [STATE(3050)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7777), + [anon_sym_COMMA] = ACTIONS(7777), + [anon_sym_RPAREN] = ACTIONS(7777), + [anon_sym_LPAREN2] = ACTIONS(7777), + [anon_sym_DASH] = ACTIONS(7775), + [anon_sym_PLUS] = ACTIONS(7775), + [anon_sym_STAR] = ACTIONS(7775), + [anon_sym_SLASH] = ACTIONS(7775), + [anon_sym_PERCENT] = ACTIONS(7775), + [anon_sym_PIPE_PIPE] = ACTIONS(7777), + [anon_sym_AMP_AMP] = ACTIONS(7777), + [anon_sym_PIPE] = ACTIONS(7775), + [anon_sym_CARET] = ACTIONS(7775), + [anon_sym_AMP] = ACTIONS(7775), + [anon_sym_EQ_EQ] = ACTIONS(7777), + [anon_sym_BANG_EQ] = ACTIONS(7777), + [anon_sym_GT] = ACTIONS(7775), + [anon_sym_GT_EQ] = ACTIONS(7777), + [anon_sym_LT_EQ] = ACTIONS(7775), + [anon_sym_LT] = ACTIONS(7775), + [anon_sym_LT_LT] = ACTIONS(7775), + [anon_sym_GT_GT] = ACTIONS(7775), + [anon_sym___extension__] = ACTIONS(7777), + [anon_sym_LBRACE] = ACTIONS(7777), + [anon_sym_LBRACK] = ACTIONS(7777), + [anon_sym_EQ] = ACTIONS(7775), + [anon_sym_const] = ACTIONS(7775), + [anon_sym_constexpr] = ACTIONS(7777), + [anon_sym_volatile] = ACTIONS(7777), + [anon_sym_restrict] = ACTIONS(7777), + [anon_sym___restrict__] = ACTIONS(7777), + [anon_sym__Atomic] = ACTIONS(7777), + [anon_sym__Noreturn] = ACTIONS(7777), + [anon_sym_noreturn] = ACTIONS(7777), + [anon_sym__Nonnull] = ACTIONS(7777), + [anon_sym_mutable] = ACTIONS(7777), + [anon_sym_constinit] = ACTIONS(7777), + [anon_sym_consteval] = ACTIONS(7777), + [anon_sym_alignas] = ACTIONS(7777), + [anon_sym__Alignas] = ACTIONS(7777), + [anon_sym_QMARK] = ACTIONS(7777), + [anon_sym_STAR_EQ] = ACTIONS(7777), + [anon_sym_SLASH_EQ] = ACTIONS(7777), + [anon_sym_PERCENT_EQ] = ACTIONS(7777), + [anon_sym_PLUS_EQ] = ACTIONS(7777), + [anon_sym_DASH_EQ] = ACTIONS(7777), + [anon_sym_LT_LT_EQ] = ACTIONS(7777), + [anon_sym_GT_GT_EQ] = ACTIONS(7777), + [anon_sym_AMP_EQ] = ACTIONS(7777), + [anon_sym_CARET_EQ] = ACTIONS(7777), + [anon_sym_PIPE_EQ] = ACTIONS(7777), + [anon_sym_and_eq] = ACTIONS(7777), + [anon_sym_or_eq] = ACTIONS(7777), + [anon_sym_xor_eq] = ACTIONS(7777), + [anon_sym_LT_EQ_GT] = ACTIONS(7777), + [anon_sym_or] = ACTIONS(7775), + [anon_sym_and] = ACTIONS(7775), + [anon_sym_bitor] = ACTIONS(7777), + [anon_sym_xor] = ACTIONS(7775), + [anon_sym_bitand] = ACTIONS(7777), + [anon_sym_not_eq] = ACTIONS(7777), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(7775), + [anon_sym_DOT_STAR] = ACTIONS(7777), + [anon_sym_DASH_GT] = ACTIONS(7775), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7777), + [anon_sym_override] = ACTIONS(7777), + [anon_sym_requires] = ACTIONS(7777), + [anon_sym_DASH_GT_STAR] = ACTIONS(7777), + }, + [STATE(3051)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7571), + [anon_sym_COMMA] = ACTIONS(7571), + [anon_sym_RPAREN] = ACTIONS(7571), + [anon_sym_LPAREN2] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7569), + [anon_sym_PLUS] = ACTIONS(7569), + [anon_sym_STAR] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7569), + [anon_sym_PERCENT] = ACTIONS(7569), + [anon_sym_PIPE_PIPE] = ACTIONS(7571), + [anon_sym_AMP_AMP] = ACTIONS(7571), + [anon_sym_PIPE] = ACTIONS(7569), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_AMP] = ACTIONS(7569), + [anon_sym_EQ_EQ] = ACTIONS(7571), + [anon_sym_BANG_EQ] = ACTIONS(7571), + [anon_sym_GT] = ACTIONS(7569), + [anon_sym_GT_EQ] = ACTIONS(7571), + [anon_sym_LT_EQ] = ACTIONS(7569), + [anon_sym_LT] = ACTIONS(7569), + [anon_sym_LT_LT] = ACTIONS(7569), + [anon_sym_GT_GT] = ACTIONS(7569), + [anon_sym___extension__] = ACTIONS(7571), + [anon_sym_LBRACE] = ACTIONS(7571), + [anon_sym_LBRACK] = ACTIONS(7571), + [anon_sym_EQ] = ACTIONS(7569), + [anon_sym_const] = ACTIONS(7569), + [anon_sym_constexpr] = ACTIONS(7571), + [anon_sym_volatile] = ACTIONS(7571), + [anon_sym_restrict] = ACTIONS(7571), + [anon_sym___restrict__] = ACTIONS(7571), + [anon_sym__Atomic] = ACTIONS(7571), + [anon_sym__Noreturn] = ACTIONS(7571), + [anon_sym_noreturn] = ACTIONS(7571), + [anon_sym__Nonnull] = ACTIONS(7571), + [anon_sym_mutable] = ACTIONS(7571), + [anon_sym_constinit] = ACTIONS(7571), + [anon_sym_consteval] = ACTIONS(7571), + [anon_sym_alignas] = ACTIONS(7571), + [anon_sym__Alignas] = ACTIONS(7571), + [anon_sym_QMARK] = ACTIONS(7571), + [anon_sym_STAR_EQ] = ACTIONS(7571), + [anon_sym_SLASH_EQ] = ACTIONS(7571), + [anon_sym_PERCENT_EQ] = ACTIONS(7571), + [anon_sym_PLUS_EQ] = ACTIONS(7571), + [anon_sym_DASH_EQ] = ACTIONS(7571), + [anon_sym_LT_LT_EQ] = ACTIONS(7571), + [anon_sym_GT_GT_EQ] = ACTIONS(7571), + [anon_sym_AMP_EQ] = ACTIONS(7571), + [anon_sym_CARET_EQ] = ACTIONS(7571), + [anon_sym_PIPE_EQ] = ACTIONS(7571), + [anon_sym_and_eq] = ACTIONS(7571), + [anon_sym_or_eq] = ACTIONS(7571), + [anon_sym_xor_eq] = ACTIONS(7571), + [anon_sym_LT_EQ_GT] = ACTIONS(7571), + [anon_sym_or] = ACTIONS(7569), + [anon_sym_and] = ACTIONS(7569), + [anon_sym_bitor] = ACTIONS(7571), + [anon_sym_xor] = ACTIONS(7569), + [anon_sym_bitand] = ACTIONS(7571), + [anon_sym_not_eq] = ACTIONS(7571), + [anon_sym_DASH_DASH] = ACTIONS(7571), + [anon_sym_PLUS_PLUS] = ACTIONS(7571), + [anon_sym_DOT] = ACTIONS(7569), + [anon_sym_DOT_STAR] = ACTIONS(7571), + [anon_sym_DASH_GT] = ACTIONS(7569), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7571), + [anon_sym_override] = ACTIONS(7571), + [anon_sym_requires] = ACTIONS(7571), + [anon_sym_DASH_GT_STAR] = ACTIONS(7571), + }, + [STATE(3052)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7601), + [anon_sym_COMMA] = ACTIONS(7601), + [anon_sym_RPAREN] = ACTIONS(7601), + [anon_sym_LPAREN2] = ACTIONS(7601), + [anon_sym_DASH] = ACTIONS(7599), + [anon_sym_PLUS] = ACTIONS(7599), + [anon_sym_STAR] = ACTIONS(7599), + [anon_sym_SLASH] = ACTIONS(7599), + [anon_sym_PERCENT] = ACTIONS(7599), + [anon_sym_PIPE_PIPE] = ACTIONS(7601), + [anon_sym_AMP_AMP] = ACTIONS(7601), + [anon_sym_PIPE] = ACTIONS(7599), + [anon_sym_CARET] = ACTIONS(7599), + [anon_sym_AMP] = ACTIONS(7599), + [anon_sym_EQ_EQ] = ACTIONS(7601), + [anon_sym_BANG_EQ] = ACTIONS(7601), + [anon_sym_GT] = ACTIONS(7599), + [anon_sym_GT_EQ] = ACTIONS(7601), + [anon_sym_LT_EQ] = ACTIONS(7599), + [anon_sym_LT] = ACTIONS(7599), + [anon_sym_LT_LT] = ACTIONS(7599), + [anon_sym_GT_GT] = ACTIONS(7599), + [anon_sym___extension__] = ACTIONS(7601), + [anon_sym_LBRACE] = ACTIONS(7601), + [anon_sym_LBRACK] = ACTIONS(7601), + [anon_sym_EQ] = ACTIONS(7599), + [anon_sym_const] = ACTIONS(7599), + [anon_sym_constexpr] = ACTIONS(7601), + [anon_sym_volatile] = ACTIONS(7601), + [anon_sym_restrict] = ACTIONS(7601), + [anon_sym___restrict__] = ACTIONS(7601), + [anon_sym__Atomic] = ACTIONS(7601), + [anon_sym__Noreturn] = ACTIONS(7601), + [anon_sym_noreturn] = ACTIONS(7601), + [anon_sym__Nonnull] = ACTIONS(7601), + [anon_sym_mutable] = ACTIONS(7601), + [anon_sym_constinit] = ACTIONS(7601), + [anon_sym_consteval] = ACTIONS(7601), + [anon_sym_alignas] = ACTIONS(7601), + [anon_sym__Alignas] = ACTIONS(7601), + [anon_sym_QMARK] = ACTIONS(7601), + [anon_sym_STAR_EQ] = ACTIONS(7601), + [anon_sym_SLASH_EQ] = ACTIONS(7601), + [anon_sym_PERCENT_EQ] = ACTIONS(7601), + [anon_sym_PLUS_EQ] = ACTIONS(7601), + [anon_sym_DASH_EQ] = ACTIONS(7601), + [anon_sym_LT_LT_EQ] = ACTIONS(7601), + [anon_sym_GT_GT_EQ] = ACTIONS(7601), + [anon_sym_AMP_EQ] = ACTIONS(7601), + [anon_sym_CARET_EQ] = ACTIONS(7601), + [anon_sym_PIPE_EQ] = ACTIONS(7601), + [anon_sym_and_eq] = ACTIONS(7601), + [anon_sym_or_eq] = ACTIONS(7601), + [anon_sym_xor_eq] = ACTIONS(7601), + [anon_sym_LT_EQ_GT] = ACTIONS(7601), + [anon_sym_or] = ACTIONS(7599), + [anon_sym_and] = ACTIONS(7599), + [anon_sym_bitor] = ACTIONS(7601), + [anon_sym_xor] = ACTIONS(7599), + [anon_sym_bitand] = ACTIONS(7601), + [anon_sym_not_eq] = ACTIONS(7601), + [anon_sym_DASH_DASH] = ACTIONS(7601), + [anon_sym_PLUS_PLUS] = ACTIONS(7601), + [anon_sym_DOT] = ACTIONS(7599), + [anon_sym_DOT_STAR] = ACTIONS(7601), + [anon_sym_DASH_GT] = ACTIONS(7599), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7601), + [anon_sym_override] = ACTIONS(7601), + [anon_sym_requires] = ACTIONS(7601), + [anon_sym_DASH_GT_STAR] = ACTIONS(7601), + }, + [STATE(3053)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_RBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), + }, + [STATE(3054)] = { + [sym_decltype_auto] = STATE(3205), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(7457), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_RBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8639), + [anon_sym_decltype] = ACTIONS(7073), + }, + [STATE(3055)] = { + [sym_template_argument_list] = STATE(3157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6569), + [anon_sym_COMMA] = ACTIONS(6569), + [anon_sym_LPAREN2] = ACTIONS(6569), + [anon_sym_DASH] = ACTIONS(6574), + [anon_sym_PLUS] = ACTIONS(6574), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(6574), + [anon_sym_PERCENT] = ACTIONS(6574), + [anon_sym_PIPE_PIPE] = ACTIONS(6567), + [anon_sym_AMP_AMP] = ACTIONS(6569), + [anon_sym_PIPE] = ACTIONS(6574), + [anon_sym_CARET] = ACTIONS(6574), + [anon_sym_AMP] = ACTIONS(6576), + [anon_sym_EQ_EQ] = ACTIONS(6567), + [anon_sym_BANG_EQ] = ACTIONS(6567), + [anon_sym_GT] = ACTIONS(6574), + [anon_sym_GT_EQ] = ACTIONS(6574), + [anon_sym_LT_EQ] = ACTIONS(6574), + [anon_sym_LT] = ACTIONS(9004), + [anon_sym_LT_LT] = ACTIONS(6574), + [anon_sym_GT_GT] = ACTIONS(6574), + [anon_sym___extension__] = ACTIONS(6572), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(6572), + [anon_sym_LBRACK] = ACTIONS(6569), + [anon_sym_EQ] = ACTIONS(6574), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_constexpr] = ACTIONS(6572), + [anon_sym_volatile] = ACTIONS(6572), + [anon_sym_restrict] = ACTIONS(6572), + [anon_sym___restrict__] = ACTIONS(6572), + [anon_sym__Atomic] = ACTIONS(6572), + [anon_sym__Noreturn] = ACTIONS(6572), + [anon_sym_noreturn] = ACTIONS(6572), + [anon_sym__Nonnull] = ACTIONS(6572), + [anon_sym_mutable] = ACTIONS(6572), + [anon_sym_constinit] = ACTIONS(6572), + [anon_sym_consteval] = ACTIONS(6572), + [anon_sym_alignas] = ACTIONS(6572), + [anon_sym__Alignas] = ACTIONS(6572), + [anon_sym_QMARK] = ACTIONS(6567), + [anon_sym_STAR_EQ] = ACTIONS(6567), + [anon_sym_SLASH_EQ] = ACTIONS(6567), + [anon_sym_PERCENT_EQ] = ACTIONS(6567), + [anon_sym_PLUS_EQ] = ACTIONS(6567), + [anon_sym_DASH_EQ] = ACTIONS(6567), + [anon_sym_LT_LT_EQ] = ACTIONS(6567), + [anon_sym_GT_GT_EQ] = ACTIONS(6574), + [anon_sym_AMP_EQ] = ACTIONS(6567), + [anon_sym_CARET_EQ] = ACTIONS(6567), + [anon_sym_PIPE_EQ] = ACTIONS(6567), + [anon_sym_and_eq] = ACTIONS(6567), + [anon_sym_or_eq] = ACTIONS(6567), + [anon_sym_xor_eq] = ACTIONS(6567), + [anon_sym_LT_EQ_GT] = ACTIONS(6567), + [anon_sym_or] = ACTIONS(6574), + [anon_sym_and] = ACTIONS(6574), + [anon_sym_bitor] = ACTIONS(6567), + [anon_sym_xor] = ACTIONS(6574), + [anon_sym_bitand] = ACTIONS(6567), + [anon_sym_not_eq] = ACTIONS(6567), + [anon_sym_DASH_DASH] = ACTIONS(6567), + [anon_sym_PLUS_PLUS] = ACTIONS(6567), + [anon_sym_DOT] = ACTIONS(6574), + [anon_sym_DOT_STAR] = ACTIONS(6567), + [anon_sym_DASH_GT] = ACTIONS(6567), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6572), + [anon_sym_decltype] = ACTIONS(6572), + [anon_sym_GT2] = ACTIONS(6569), + }, + [STATE(3056)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4321), + [sym_ms_pointer_modifier] = STATE(3010), + [sym__abstract_declarator] = STATE(6914), + [sym_abstract_parenthesized_declarator] = STATE(6708), + [sym_abstract_pointer_declarator] = STATE(6708), + [sym_abstract_function_declarator] = STATE(6708), + [sym_abstract_array_declarator] = STATE(6708), + [sym_type_qualifier] = STATE(3956), + [sym_alignas_qualifier] = STATE(3945), + [sym_parameter_list] = STATE(2249), + [sym_abstract_reference_declarator] = STATE(6708), + [sym__function_declarator_seq] = STATE(6709), + [aux_sym__type_definition_type_repeat1] = STATE(3956), + [aux_sym_pointer_declarator_repeat1] = STATE(3010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), + [anon_sym_COMMA] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(8600), + [anon_sym_DASH] = ACTIONS(6861), + [anon_sym_PLUS] = ACTIONS(6861), + [anon_sym_STAR] = ACTIONS(8958), + [anon_sym_SLASH] = ACTIONS(6861), + [anon_sym_PERCENT] = ACTIONS(6859), + [anon_sym_PIPE_PIPE] = ACTIONS(6859), + [anon_sym_AMP_AMP] = ACTIONS(8960), + [anon_sym_PIPE] = ACTIONS(6861), + [anon_sym_CARET] = ACTIONS(6859), + [anon_sym_AMP] = ACTIONS(8962), + [anon_sym_EQ_EQ] = ACTIONS(6859), + [anon_sym_BANG_EQ] = ACTIONS(6859), + [anon_sym_GT] = ACTIONS(6861), + [anon_sym_GT_EQ] = ACTIONS(6861), + [anon_sym_LT_EQ] = ACTIONS(6861), + [anon_sym_LT] = ACTIONS(6861), + [anon_sym_LT_LT] = ACTIONS(6859), + [anon_sym_GT_GT] = ACTIONS(6861), + [anon_sym___extension__] = ACTIONS(8608), + [sym_ms_restrict_modifier] = ACTIONS(8610), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8612), + [sym_ms_signed_ptr_modifier] = ACTIONS(8612), + [anon_sym__unaligned] = ACTIONS(8614), + [anon_sym___unaligned] = ACTIONS(8614), + [anon_sym_LBRACK] = ACTIONS(8616), + [anon_sym_const] = ACTIONS(8618), + [anon_sym_constexpr] = ACTIONS(8608), + [anon_sym_volatile] = ACTIONS(8608), + [anon_sym_restrict] = ACTIONS(8608), + [anon_sym___restrict__] = ACTIONS(8608), + [anon_sym__Atomic] = ACTIONS(8608), + [anon_sym__Noreturn] = ACTIONS(8608), + [anon_sym_noreturn] = ACTIONS(8608), + [anon_sym__Nonnull] = ACTIONS(8608), + [anon_sym_mutable] = ACTIONS(8608), + [anon_sym_constinit] = ACTIONS(8608), + [anon_sym_consteval] = ACTIONS(8608), + [anon_sym_alignas] = ACTIONS(8620), + [anon_sym__Alignas] = ACTIONS(8620), + [anon_sym_QMARK] = ACTIONS(6859), + [anon_sym_LT_EQ_GT] = ACTIONS(6859), + [anon_sym_or] = ACTIONS(6859), + [anon_sym_and] = ACTIONS(6859), + [anon_sym_bitor] = ACTIONS(6859), + [anon_sym_xor] = ACTIONS(6859), + [anon_sym_bitand] = ACTIONS(6859), + [anon_sym_not_eq] = ACTIONS(6859), + [anon_sym_DASH_DASH] = ACTIONS(6859), + [anon_sym_PLUS_PLUS] = ACTIONS(6859), + [anon_sym_DOT] = ACTIONS(6861), + [anon_sym_DOT_STAR] = ACTIONS(6859), + [anon_sym_DASH_GT] = ACTIONS(6859), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6859), + }, + [STATE(3057)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7757), + [anon_sym_COMMA] = ACTIONS(7757), + [anon_sym_RPAREN] = ACTIONS(7757), + [anon_sym_LPAREN2] = ACTIONS(7757), + [anon_sym_DASH] = ACTIONS(7755), + [anon_sym_PLUS] = ACTIONS(7755), + [anon_sym_STAR] = ACTIONS(7755), + [anon_sym_SLASH] = ACTIONS(7755), + [anon_sym_PERCENT] = ACTIONS(7755), + [anon_sym_PIPE_PIPE] = ACTIONS(7757), + [anon_sym_AMP_AMP] = ACTIONS(7757), + [anon_sym_PIPE] = ACTIONS(7755), + [anon_sym_CARET] = ACTIONS(7755), + [anon_sym_AMP] = ACTIONS(7755), + [anon_sym_EQ_EQ] = ACTIONS(7757), + [anon_sym_BANG_EQ] = ACTIONS(7757), + [anon_sym_GT] = ACTIONS(7755), + [anon_sym_GT_EQ] = ACTIONS(7757), + [anon_sym_LT_EQ] = ACTIONS(7755), + [anon_sym_LT] = ACTIONS(7755), + [anon_sym_LT_LT] = ACTIONS(7755), + [anon_sym_GT_GT] = ACTIONS(7755), + [anon_sym___extension__] = ACTIONS(7757), + [anon_sym_LBRACE] = ACTIONS(7757), + [anon_sym_LBRACK] = ACTIONS(7757), + [anon_sym_EQ] = ACTIONS(7755), + [anon_sym_const] = ACTIONS(7755), + [anon_sym_constexpr] = ACTIONS(7757), + [anon_sym_volatile] = ACTIONS(7757), + [anon_sym_restrict] = ACTIONS(7757), + [anon_sym___restrict__] = ACTIONS(7757), + [anon_sym__Atomic] = ACTIONS(7757), + [anon_sym__Noreturn] = ACTIONS(7757), + [anon_sym_noreturn] = ACTIONS(7757), + [anon_sym__Nonnull] = ACTIONS(7757), + [anon_sym_mutable] = ACTIONS(7757), + [anon_sym_constinit] = ACTIONS(7757), + [anon_sym_consteval] = ACTIONS(7757), + [anon_sym_alignas] = ACTIONS(7757), + [anon_sym__Alignas] = ACTIONS(7757), + [anon_sym_QMARK] = ACTIONS(7757), + [anon_sym_STAR_EQ] = ACTIONS(7757), + [anon_sym_SLASH_EQ] = ACTIONS(7757), + [anon_sym_PERCENT_EQ] = ACTIONS(7757), + [anon_sym_PLUS_EQ] = ACTIONS(7757), + [anon_sym_DASH_EQ] = ACTIONS(7757), + [anon_sym_LT_LT_EQ] = ACTIONS(7757), + [anon_sym_GT_GT_EQ] = ACTIONS(7757), + [anon_sym_AMP_EQ] = ACTIONS(7757), + [anon_sym_CARET_EQ] = ACTIONS(7757), + [anon_sym_PIPE_EQ] = ACTIONS(7757), + [anon_sym_and_eq] = ACTIONS(7757), + [anon_sym_or_eq] = ACTIONS(7757), + [anon_sym_xor_eq] = ACTIONS(7757), + [anon_sym_LT_EQ_GT] = ACTIONS(7757), + [anon_sym_or] = ACTIONS(7755), + [anon_sym_and] = ACTIONS(7755), + [anon_sym_bitor] = ACTIONS(7757), + [anon_sym_xor] = ACTIONS(7755), + [anon_sym_bitand] = ACTIONS(7757), + [anon_sym_not_eq] = ACTIONS(7757), + [anon_sym_DASH_DASH] = ACTIONS(7757), + [anon_sym_PLUS_PLUS] = ACTIONS(7757), + [anon_sym_DOT] = ACTIONS(7755), + [anon_sym_DOT_STAR] = ACTIONS(7757), + [anon_sym_DASH_GT] = ACTIONS(7755), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7757), + [anon_sym_override] = ACTIONS(7757), + [anon_sym_requires] = ACTIONS(7757), + [anon_sym_DASH_GT_STAR] = ACTIONS(7757), + }, + [STATE(3058)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7597), + [anon_sym_COMMA] = ACTIONS(7597), + [anon_sym_RPAREN] = ACTIONS(7597), + [anon_sym_LPAREN2] = ACTIONS(7597), + [anon_sym_DASH] = ACTIONS(7595), + [anon_sym_PLUS] = ACTIONS(7595), + [anon_sym_STAR] = ACTIONS(7595), + [anon_sym_SLASH] = ACTIONS(7595), + [anon_sym_PERCENT] = ACTIONS(7595), + [anon_sym_PIPE_PIPE] = ACTIONS(7597), + [anon_sym_AMP_AMP] = ACTIONS(7597), + [anon_sym_PIPE] = ACTIONS(7595), + [anon_sym_CARET] = ACTIONS(7595), + [anon_sym_AMP] = ACTIONS(7595), + [anon_sym_EQ_EQ] = ACTIONS(7597), + [anon_sym_BANG_EQ] = ACTIONS(7597), + [anon_sym_GT] = ACTIONS(7595), + [anon_sym_GT_EQ] = ACTIONS(7597), + [anon_sym_LT_EQ] = ACTIONS(7595), + [anon_sym_LT] = ACTIONS(7595), + [anon_sym_LT_LT] = ACTIONS(7595), + [anon_sym_GT_GT] = ACTIONS(7595), + [anon_sym___extension__] = ACTIONS(7597), + [anon_sym_LBRACE] = ACTIONS(7597), + [anon_sym_LBRACK] = ACTIONS(7597), + [anon_sym_EQ] = ACTIONS(7595), + [anon_sym_const] = ACTIONS(7595), + [anon_sym_constexpr] = ACTIONS(7597), + [anon_sym_volatile] = ACTIONS(7597), + [anon_sym_restrict] = ACTIONS(7597), + [anon_sym___restrict__] = ACTIONS(7597), + [anon_sym__Atomic] = ACTIONS(7597), + [anon_sym__Noreturn] = ACTIONS(7597), + [anon_sym_noreturn] = ACTIONS(7597), + [anon_sym__Nonnull] = ACTIONS(7597), + [anon_sym_mutable] = ACTIONS(7597), + [anon_sym_constinit] = ACTIONS(7597), + [anon_sym_consteval] = ACTIONS(7597), + [anon_sym_alignas] = ACTIONS(7597), + [anon_sym__Alignas] = ACTIONS(7597), + [anon_sym_QMARK] = ACTIONS(7597), + [anon_sym_STAR_EQ] = ACTIONS(7597), + [anon_sym_SLASH_EQ] = ACTIONS(7597), + [anon_sym_PERCENT_EQ] = ACTIONS(7597), + [anon_sym_PLUS_EQ] = ACTIONS(7597), + [anon_sym_DASH_EQ] = ACTIONS(7597), + [anon_sym_LT_LT_EQ] = ACTIONS(7597), + [anon_sym_GT_GT_EQ] = ACTIONS(7597), + [anon_sym_AMP_EQ] = ACTIONS(7597), + [anon_sym_CARET_EQ] = ACTIONS(7597), + [anon_sym_PIPE_EQ] = ACTIONS(7597), + [anon_sym_and_eq] = ACTIONS(7597), + [anon_sym_or_eq] = ACTIONS(7597), + [anon_sym_xor_eq] = ACTIONS(7597), + [anon_sym_LT_EQ_GT] = ACTIONS(7597), + [anon_sym_or] = ACTIONS(7595), + [anon_sym_and] = ACTIONS(7595), + [anon_sym_bitor] = ACTIONS(7597), + [anon_sym_xor] = ACTIONS(7595), + [anon_sym_bitand] = ACTIONS(7597), + [anon_sym_not_eq] = ACTIONS(7597), + [anon_sym_DASH_DASH] = ACTIONS(7597), + [anon_sym_PLUS_PLUS] = ACTIONS(7597), + [anon_sym_DOT] = ACTIONS(7595), + [anon_sym_DOT_STAR] = ACTIONS(7597), + [anon_sym_DASH_GT] = ACTIONS(7595), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7597), + [anon_sym_override] = ACTIONS(7597), + [anon_sym_requires] = ACTIONS(7597), + [anon_sym_DASH_GT_STAR] = ACTIONS(7597), + }, + [STATE(3059)] = { + [sym_decltype_auto] = STATE(3016), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7457), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7223), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8529), + [anon_sym_decltype] = ACTIONS(6975), + [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + }, + [STATE(3060)] = { + [sym_identifier] = ACTIONS(7459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7457), + [anon_sym_COMMA] = ACTIONS(7457), + [anon_sym_RPAREN] = ACTIONS(7457), + [anon_sym_LPAREN2] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7459), + [anon_sym_PLUS] = ACTIONS(7459), + [anon_sym_STAR] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7459), + [anon_sym_PERCENT] = ACTIONS(7457), + [anon_sym_PIPE_PIPE] = ACTIONS(7457), + [anon_sym_AMP_AMP] = ACTIONS(7457), + [anon_sym_PIPE] = ACTIONS(7459), + [anon_sym_CARET] = ACTIONS(7457), + [anon_sym_AMP] = ACTIONS(7459), + [anon_sym_EQ_EQ] = ACTIONS(7457), + [anon_sym_BANG_EQ] = ACTIONS(7457), + [anon_sym_GT] = ACTIONS(7459), + [anon_sym_GT_EQ] = ACTIONS(7457), + [anon_sym_LT_EQ] = ACTIONS(7459), + [anon_sym_LT] = ACTIONS(7459), + [anon_sym_LT_LT] = ACTIONS(7457), + [anon_sym_GT_GT] = ACTIONS(7457), + [anon_sym_SEMI] = ACTIONS(7457), + [anon_sym___extension__] = ACTIONS(7459), + [anon_sym___attribute__] = ACTIONS(7459), + [anon_sym___attribute] = ACTIONS(7459), + [anon_sym_COLON] = ACTIONS(7459), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7457), + [anon_sym___based] = ACTIONS(7459), + [anon_sym_LBRACE] = ACTIONS(7457), + [anon_sym_RBRACE] = ACTIONS(7457), + [anon_sym_signed] = ACTIONS(7459), + [anon_sym_unsigned] = ACTIONS(7459), + [anon_sym_long] = ACTIONS(7459), + [anon_sym_short] = ACTIONS(7459), + [anon_sym_LBRACK] = ACTIONS(7457), + [anon_sym_const] = ACTIONS(7459), + [anon_sym_constexpr] = ACTIONS(7459), + [anon_sym_volatile] = ACTIONS(7459), + [anon_sym_restrict] = ACTIONS(7459), + [anon_sym___restrict__] = ACTIONS(7459), + [anon_sym__Atomic] = ACTIONS(7459), + [anon_sym__Noreturn] = ACTIONS(7459), + [anon_sym_noreturn] = ACTIONS(7459), + [anon_sym__Nonnull] = ACTIONS(7459), + [anon_sym_mutable] = ACTIONS(7459), + [anon_sym_constinit] = ACTIONS(7459), + [anon_sym_consteval] = ACTIONS(7459), + [anon_sym_alignas] = ACTIONS(7459), + [anon_sym__Alignas] = ACTIONS(7459), + [sym_primitive_type] = ACTIONS(7459), + [anon_sym_QMARK] = ACTIONS(7457), + [anon_sym_LT_EQ_GT] = ACTIONS(7457), + [anon_sym_or] = ACTIONS(7459), + [anon_sym_and] = ACTIONS(7459), + [anon_sym_bitor] = ACTIONS(7459), + [anon_sym_xor] = ACTIONS(7459), + [anon_sym_bitand] = ACTIONS(7459), + [anon_sym_not_eq] = ACTIONS(7459), + [anon_sym_DASH_DASH] = ACTIONS(7457), + [anon_sym_PLUS_PLUS] = ACTIONS(7457), + [anon_sym_DOT] = ACTIONS(7459), + [anon_sym_DOT_STAR] = ACTIONS(7457), + [anon_sym_DASH_GT] = ACTIONS(7457), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7459), + [anon_sym_override] = ACTIONS(7459), + [anon_sym_requires] = ACTIONS(7459), + [anon_sym_COLON_RBRACK] = ACTIONS(7457), + }, + [STATE(3061)] = { + [sym_attribute_specifier] = STATE(2903), + [sym_attribute_declaration] = STATE(3125), + [sym_gnu_asm_expression] = STATE(9090), + [sym_virtual_specifier] = STATE(3433), + [sym__function_attributes_end] = STATE(4233), + [sym__function_postfix] = STATE(3675), + [sym_trailing_return_type] = STATE(2973), + [sym_requires_clause] = STATE(3675), + [aux_sym_type_definition_repeat1] = STATE(2903), + [aux_sym_attributed_declarator_repeat1] = STATE(3125), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), + [anon_sym_COMMA] = ACTIONS(8422), + [anon_sym_LPAREN2] = ACTIONS(8422), + [anon_sym_DASH] = ACTIONS(8424), + [anon_sym_PLUS] = ACTIONS(8424), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_SLASH] = ACTIONS(8424), + [anon_sym_PERCENT] = ACTIONS(8424), + [anon_sym_PIPE_PIPE] = ACTIONS(8422), + [anon_sym_AMP_AMP] = ACTIONS(8422), + [anon_sym_PIPE] = ACTIONS(8424), + [anon_sym_CARET] = ACTIONS(8424), + [anon_sym_AMP] = ACTIONS(8424), + [anon_sym_EQ_EQ] = ACTIONS(8422), + [anon_sym_BANG_EQ] = ACTIONS(8422), + [anon_sym_GT] = ACTIONS(8424), + [anon_sym_GT_EQ] = ACTIONS(8422), + [anon_sym_LT_EQ] = ACTIONS(8424), + [anon_sym_LT] = ACTIONS(8424), + [anon_sym_LT_LT] = ACTIONS(8424), + [anon_sym_GT_GT] = ACTIONS(8424), + [anon_sym_SEMI] = ACTIONS(8422), + [anon_sym___attribute__] = ACTIONS(8970), + [anon_sym___attribute] = ACTIONS(8973), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_LBRACK] = ACTIONS(8424), + [anon_sym_EQ] = ACTIONS(8424), + [anon_sym_QMARK] = ACTIONS(8422), + [anon_sym_STAR_EQ] = ACTIONS(8422), + [anon_sym_SLASH_EQ] = ACTIONS(8422), + [anon_sym_PERCENT_EQ] = ACTIONS(8422), + [anon_sym_PLUS_EQ] = ACTIONS(8422), + [anon_sym_DASH_EQ] = ACTIONS(8422), + [anon_sym_LT_LT_EQ] = ACTIONS(8422), + [anon_sym_GT_GT_EQ] = ACTIONS(8422), + [anon_sym_AMP_EQ] = ACTIONS(8422), + [anon_sym_CARET_EQ] = ACTIONS(8422), + [anon_sym_PIPE_EQ] = ACTIONS(8422), + [anon_sym_and_eq] = ACTIONS(8422), + [anon_sym_or_eq] = ACTIONS(8422), + [anon_sym_xor_eq] = ACTIONS(8422), + [anon_sym_LT_EQ_GT] = ACTIONS(8422), + [anon_sym_or] = ACTIONS(8424), + [anon_sym_and] = ACTIONS(8424), + [anon_sym_bitor] = ACTIONS(8422), + [anon_sym_xor] = ACTIONS(8424), + [anon_sym_bitand] = ACTIONS(8422), + [anon_sym_not_eq] = ACTIONS(8422), + [anon_sym_DASH_DASH] = ACTIONS(8422), + [anon_sym_PLUS_PLUS] = ACTIONS(8422), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(8424), + [anon_sym_DOT_STAR] = ACTIONS(8422), + [anon_sym_DASH_GT] = ACTIONS(8976), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6561), + [anon_sym_override] = ACTIONS(6561), + [anon_sym_requires] = ACTIONS(6563), + }, + [STATE(3062)] = { + [sym__abstract_declarator] = STATE(6158), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(2966), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2079), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(2966), + [sym_identifier] = ACTIONS(7393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), + [anon_sym_COMMA] = ACTIONS(7391), + [aux_sym_preproc_if_token2] = ACTIONS(7391), + [aux_sym_preproc_else_token1] = ACTIONS(7391), + [aux_sym_preproc_elif_token1] = ACTIONS(7393), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7391), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7391), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7393), + [anon_sym_PLUS] = ACTIONS(7393), + [anon_sym_STAR] = ACTIONS(8086), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_PERCENT] = ACTIONS(7391), + [anon_sym_PIPE_PIPE] = ACTIONS(7391), + [anon_sym_AMP_AMP] = ACTIONS(8088), + [anon_sym_PIPE] = ACTIONS(7393), + [anon_sym_CARET] = ACTIONS(7391), + [anon_sym_AMP] = ACTIONS(8090), + [anon_sym_EQ_EQ] = ACTIONS(7391), + [anon_sym_BANG_EQ] = ACTIONS(7391), + [anon_sym_GT] = ACTIONS(7393), + [anon_sym_GT_EQ] = ACTIONS(7391), + [anon_sym_LT_EQ] = ACTIONS(7393), + [anon_sym_LT] = ACTIONS(7393), + [anon_sym_LT_LT] = ACTIONS(7391), + [anon_sym_GT_GT] = ACTIONS(7391), + [anon_sym___extension__] = ACTIONS(8092), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8092), + [anon_sym_volatile] = ACTIONS(8092), + [anon_sym_restrict] = ACTIONS(8092), + [anon_sym___restrict__] = ACTIONS(8092), + [anon_sym__Atomic] = ACTIONS(8092), + [anon_sym__Noreturn] = ACTIONS(8092), + [anon_sym_noreturn] = ACTIONS(8092), + [anon_sym__Nonnull] = ACTIONS(8092), + [anon_sym_mutable] = ACTIONS(8092), + [anon_sym_constinit] = ACTIONS(8092), + [anon_sym_consteval] = ACTIONS(8092), + [anon_sym_alignas] = ACTIONS(8100), + [anon_sym__Alignas] = ACTIONS(8100), + [anon_sym_QMARK] = ACTIONS(7391), + [anon_sym_LT_EQ_GT] = ACTIONS(7391), + [anon_sym_or] = ACTIONS(7393), + [anon_sym_and] = ACTIONS(7393), + [anon_sym_bitor] = ACTIONS(7393), + [anon_sym_xor] = ACTIONS(7393), + [anon_sym_bitand] = ACTIONS(7393), + [anon_sym_not_eq] = ACTIONS(7393), + [anon_sym_DASH_DASH] = ACTIONS(7391), + [anon_sym_PLUS_PLUS] = ACTIONS(7391), + [anon_sym_DOT] = ACTIONS(7393), + [anon_sym_DOT_STAR] = ACTIONS(7391), + [anon_sym_DASH_GT] = ACTIONS(7391), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7393), + [anon_sym_override] = ACTIONS(7393), + [anon_sym_requires] = ACTIONS(7393), + }, + [STATE(3063)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7609), + [anon_sym_COMMA] = ACTIONS(7609), + [anon_sym_RPAREN] = ACTIONS(7609), + [anon_sym_LPAREN2] = ACTIONS(7609), + [anon_sym_DASH] = ACTIONS(7607), + [anon_sym_PLUS] = ACTIONS(7607), + [anon_sym_STAR] = ACTIONS(7607), + [anon_sym_SLASH] = ACTIONS(7607), + [anon_sym_PERCENT] = ACTIONS(7607), + [anon_sym_PIPE_PIPE] = ACTIONS(7609), + [anon_sym_AMP_AMP] = ACTIONS(7609), + [anon_sym_PIPE] = ACTIONS(7607), + [anon_sym_CARET] = ACTIONS(7607), + [anon_sym_AMP] = ACTIONS(7607), + [anon_sym_EQ_EQ] = ACTIONS(7609), + [anon_sym_BANG_EQ] = ACTIONS(7609), + [anon_sym_GT] = ACTIONS(7607), + [anon_sym_GT_EQ] = ACTIONS(7609), + [anon_sym_LT_EQ] = ACTIONS(7607), + [anon_sym_LT] = ACTIONS(7607), + [anon_sym_LT_LT] = ACTIONS(7607), + [anon_sym_GT_GT] = ACTIONS(7607), + [anon_sym___extension__] = ACTIONS(7609), + [anon_sym_LBRACE] = ACTIONS(7609), + [anon_sym_LBRACK] = ACTIONS(7609), + [anon_sym_EQ] = ACTIONS(7607), + [anon_sym_const] = ACTIONS(7607), + [anon_sym_constexpr] = ACTIONS(7609), + [anon_sym_volatile] = ACTIONS(7609), + [anon_sym_restrict] = ACTIONS(7609), + [anon_sym___restrict__] = ACTIONS(7609), + [anon_sym__Atomic] = ACTIONS(7609), + [anon_sym__Noreturn] = ACTIONS(7609), + [anon_sym_noreturn] = ACTIONS(7609), + [anon_sym__Nonnull] = ACTIONS(7609), + [anon_sym_mutable] = ACTIONS(7609), + [anon_sym_constinit] = ACTIONS(7609), + [anon_sym_consteval] = ACTIONS(7609), + [anon_sym_alignas] = ACTIONS(7609), + [anon_sym__Alignas] = ACTIONS(7609), + [anon_sym_QMARK] = ACTIONS(7609), + [anon_sym_STAR_EQ] = ACTIONS(7609), + [anon_sym_SLASH_EQ] = ACTIONS(7609), + [anon_sym_PERCENT_EQ] = ACTIONS(7609), + [anon_sym_PLUS_EQ] = ACTIONS(7609), + [anon_sym_DASH_EQ] = ACTIONS(7609), + [anon_sym_LT_LT_EQ] = ACTIONS(7609), + [anon_sym_GT_GT_EQ] = ACTIONS(7609), + [anon_sym_AMP_EQ] = ACTIONS(7609), + [anon_sym_CARET_EQ] = ACTIONS(7609), + [anon_sym_PIPE_EQ] = ACTIONS(7609), + [anon_sym_and_eq] = ACTIONS(7609), + [anon_sym_or_eq] = ACTIONS(7609), + [anon_sym_xor_eq] = ACTIONS(7609), + [anon_sym_LT_EQ_GT] = ACTIONS(7609), + [anon_sym_or] = ACTIONS(7607), + [anon_sym_and] = ACTIONS(7607), + [anon_sym_bitor] = ACTIONS(7609), + [anon_sym_xor] = ACTIONS(7607), + [anon_sym_bitand] = ACTIONS(7609), + [anon_sym_not_eq] = ACTIONS(7609), + [anon_sym_DASH_DASH] = ACTIONS(7609), + [anon_sym_PLUS_PLUS] = ACTIONS(7609), + [anon_sym_DOT] = ACTIONS(7607), + [anon_sym_DOT_STAR] = ACTIONS(7609), + [anon_sym_DASH_GT] = ACTIONS(7607), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7609), + [anon_sym_override] = ACTIONS(7609), + [anon_sym_requires] = ACTIONS(7609), + [anon_sym_DASH_GT_STAR] = ACTIONS(7609), + }, + [STATE(3064)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7625), + [anon_sym_COMMA] = ACTIONS(7625), + [anon_sym_RPAREN] = ACTIONS(7625), + [anon_sym_LPAREN2] = ACTIONS(7625), + [anon_sym_DASH] = ACTIONS(7623), + [anon_sym_PLUS] = ACTIONS(7623), + [anon_sym_STAR] = ACTIONS(7623), + [anon_sym_SLASH] = ACTIONS(7623), + [anon_sym_PERCENT] = ACTIONS(7623), + [anon_sym_PIPE_PIPE] = ACTIONS(7625), + [anon_sym_AMP_AMP] = ACTIONS(7625), + [anon_sym_PIPE] = ACTIONS(7623), + [anon_sym_CARET] = ACTIONS(7623), + [anon_sym_AMP] = ACTIONS(7623), + [anon_sym_EQ_EQ] = ACTIONS(7625), + [anon_sym_BANG_EQ] = ACTIONS(7625), + [anon_sym_GT] = ACTIONS(7623), + [anon_sym_GT_EQ] = ACTIONS(7625), + [anon_sym_LT_EQ] = ACTIONS(7623), + [anon_sym_LT] = ACTIONS(7623), + [anon_sym_LT_LT] = ACTIONS(7623), + [anon_sym_GT_GT] = ACTIONS(7623), + [anon_sym___extension__] = ACTIONS(7625), + [anon_sym_LBRACE] = ACTIONS(7625), + [anon_sym_LBRACK] = ACTIONS(7625), + [anon_sym_EQ] = ACTIONS(7623), + [anon_sym_const] = ACTIONS(7623), + [anon_sym_constexpr] = ACTIONS(7625), + [anon_sym_volatile] = ACTIONS(7625), + [anon_sym_restrict] = ACTIONS(7625), + [anon_sym___restrict__] = ACTIONS(7625), + [anon_sym__Atomic] = ACTIONS(7625), + [anon_sym__Noreturn] = ACTIONS(7625), + [anon_sym_noreturn] = ACTIONS(7625), + [anon_sym__Nonnull] = ACTIONS(7625), + [anon_sym_mutable] = ACTIONS(7625), + [anon_sym_constinit] = ACTIONS(7625), + [anon_sym_consteval] = ACTIONS(7625), + [anon_sym_alignas] = ACTIONS(7625), + [anon_sym__Alignas] = ACTIONS(7625), + [anon_sym_QMARK] = ACTIONS(7625), + [anon_sym_STAR_EQ] = ACTIONS(7625), + [anon_sym_SLASH_EQ] = ACTIONS(7625), + [anon_sym_PERCENT_EQ] = ACTIONS(7625), + [anon_sym_PLUS_EQ] = ACTIONS(7625), + [anon_sym_DASH_EQ] = ACTIONS(7625), + [anon_sym_LT_LT_EQ] = ACTIONS(7625), + [anon_sym_GT_GT_EQ] = ACTIONS(7625), + [anon_sym_AMP_EQ] = ACTIONS(7625), + [anon_sym_CARET_EQ] = ACTIONS(7625), + [anon_sym_PIPE_EQ] = ACTIONS(7625), + [anon_sym_and_eq] = ACTIONS(7625), + [anon_sym_or_eq] = ACTIONS(7625), + [anon_sym_xor_eq] = ACTIONS(7625), + [anon_sym_LT_EQ_GT] = ACTIONS(7625), + [anon_sym_or] = ACTIONS(7623), + [anon_sym_and] = ACTIONS(7623), + [anon_sym_bitor] = ACTIONS(7625), + [anon_sym_xor] = ACTIONS(7623), + [anon_sym_bitand] = ACTIONS(7625), + [anon_sym_not_eq] = ACTIONS(7625), + [anon_sym_DASH_DASH] = ACTIONS(7625), + [anon_sym_PLUS_PLUS] = ACTIONS(7625), + [anon_sym_DOT] = ACTIONS(7623), + [anon_sym_DOT_STAR] = ACTIONS(7625), + [anon_sym_DASH_GT] = ACTIONS(7623), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_override] = ACTIONS(7625), + [anon_sym_requires] = ACTIONS(7625), + [anon_sym_DASH_GT_STAR] = ACTIONS(7625), + }, + [STATE(3065)] = { [sym_identifier] = ACTIONS(9007), [anon_sym_DOT_DOT_DOT] = ACTIONS(9009), [anon_sym_COMMA] = ACTIONS(9009), @@ -417337,9 +398489,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(9007), [anon_sym___attribute] = ACTIONS(9007), [anon_sym_COLON] = ACTIONS(9007), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9009), [anon_sym_RBRACK_RBRACK] = ACTIONS(9009), [anon_sym_RBRACE] = ACTIONS(9009), - [anon_sym_LBRACK] = ACTIONS(9009), + [anon_sym_LBRACK] = ACTIONS(9007), [anon_sym_EQ] = ACTIONS(9007), [anon_sym_QMARK] = ACTIONS(9009), [anon_sym_STAR_EQ] = ACTIONS(9009), @@ -417364,6 +398517,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_eq] = ACTIONS(9007), [anon_sym_DASH_DASH] = ACTIONS(9009), [anon_sym_PLUS_PLUS] = ACTIONS(9009), + [anon_sym_asm] = ACTIONS(9007), + [anon_sym___asm__] = ACTIONS(9007), + [anon_sym___asm] = ACTIONS(9007), [anon_sym_DOT] = ACTIONS(9007), [anon_sym_DOT_STAR] = ACTIONS(9009), [anon_sym_DASH_GT] = ACTIONS(9009), @@ -417373,1114 +398529,2043 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(9007), [anon_sym_COLON_RBRACK] = ACTIONS(9009), }, - [STATE(3524)] = { - [sym_identifier] = ACTIONS(6258), - [anon_sym_LPAREN2] = ACTIONS(6260), - [anon_sym_TILDE] = ACTIONS(6260), - [anon_sym_STAR] = ACTIONS(6260), - [anon_sym_PIPE_PIPE] = ACTIONS(6260), - [anon_sym_AMP_AMP] = ACTIONS(6260), - [anon_sym_AMP] = ACTIONS(6258), - [anon_sym___extension__] = ACTIONS(6258), - [anon_sym_virtual] = ACTIONS(6258), - [anon_sym_extern] = ACTIONS(6258), - [anon_sym___attribute__] = ACTIONS(6258), - [anon_sym___attribute] = ACTIONS(6258), - [anon_sym_using] = ACTIONS(6258), - [anon_sym_COLON_COLON] = ACTIONS(6260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6260), - [anon_sym___declspec] = ACTIONS(6258), - [anon_sym___based] = ACTIONS(6258), - [anon_sym___cdecl] = ACTIONS(6258), - [anon_sym___clrcall] = ACTIONS(6258), - [anon_sym___stdcall] = ACTIONS(6258), - [anon_sym___fastcall] = ACTIONS(6258), - [anon_sym___thiscall] = ACTIONS(6258), - [anon_sym___vectorcall] = ACTIONS(6258), - [anon_sym_signed] = ACTIONS(6258), - [anon_sym_unsigned] = ACTIONS(6258), - [anon_sym_long] = ACTIONS(6258), - [anon_sym_short] = ACTIONS(6258), - [anon_sym_LBRACK] = ACTIONS(6258), - [anon_sym_static] = ACTIONS(6258), - [anon_sym_register] = ACTIONS(6258), - [anon_sym_inline] = ACTIONS(6258), - [anon_sym___inline] = ACTIONS(6258), - [anon_sym___inline__] = ACTIONS(6258), - [anon_sym___forceinline] = ACTIONS(6258), - [anon_sym_thread_local] = ACTIONS(6258), - [anon_sym___thread] = ACTIONS(6258), - [anon_sym_const] = ACTIONS(6258), - [anon_sym_constexpr] = ACTIONS(6258), - [anon_sym_volatile] = ACTIONS(6258), - [anon_sym_restrict] = ACTIONS(6258), - [anon_sym___restrict__] = ACTIONS(6258), - [anon_sym__Atomic] = ACTIONS(6258), - [anon_sym__Noreturn] = ACTIONS(6258), - [anon_sym_noreturn] = ACTIONS(6258), - [anon_sym__Nonnull] = ACTIONS(6258), - [anon_sym_mutable] = ACTIONS(6258), - [anon_sym_constinit] = ACTIONS(6258), - [anon_sym_consteval] = ACTIONS(6258), - [anon_sym_alignas] = ACTIONS(6258), - [anon_sym__Alignas] = ACTIONS(6258), - [sym_primitive_type] = ACTIONS(6258), - [anon_sym_enum] = ACTIONS(6258), - [anon_sym_class] = ACTIONS(6258), - [anon_sym_struct] = ACTIONS(6258), - [anon_sym_union] = ACTIONS(6258), - [anon_sym_or] = ACTIONS(6258), - [anon_sym_and] = ACTIONS(6258), - [anon_sym_typename] = ACTIONS(6258), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6258), - [anon_sym_decltype] = ACTIONS(6258), - [anon_sym_explicit] = ACTIONS(6258), - [anon_sym_template] = ACTIONS(6258), - [anon_sym_operator] = ACTIONS(6258), - [anon_sym_friend] = ACTIONS(6258), - [anon_sym_concept] = ACTIONS(6258), - [anon_sym_LBRACK_COLON] = ACTIONS(6260), + [STATE(3066)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7597), + [anon_sym_COMMA] = ACTIONS(7597), + [anon_sym_RPAREN] = ACTIONS(7597), + [anon_sym_LPAREN2] = ACTIONS(7597), + [anon_sym_DASH] = ACTIONS(7595), + [anon_sym_PLUS] = ACTIONS(7595), + [anon_sym_STAR] = ACTIONS(7595), + [anon_sym_SLASH] = ACTIONS(7595), + [anon_sym_PERCENT] = ACTIONS(7595), + [anon_sym_PIPE_PIPE] = ACTIONS(7597), + [anon_sym_AMP_AMP] = ACTIONS(7597), + [anon_sym_PIPE] = ACTIONS(7595), + [anon_sym_CARET] = ACTIONS(7595), + [anon_sym_AMP] = ACTIONS(7595), + [anon_sym_EQ_EQ] = ACTIONS(7597), + [anon_sym_BANG_EQ] = ACTIONS(7597), + [anon_sym_GT] = ACTIONS(7595), + [anon_sym_GT_EQ] = ACTIONS(7597), + [anon_sym_LT_EQ] = ACTIONS(7595), + [anon_sym_LT] = ACTIONS(7595), + [anon_sym_LT_LT] = ACTIONS(7595), + [anon_sym_GT_GT] = ACTIONS(7595), + [anon_sym___extension__] = ACTIONS(7597), + [anon_sym_LBRACE] = ACTIONS(7597), + [anon_sym_LBRACK] = ACTIONS(7597), + [anon_sym_EQ] = ACTIONS(7595), + [anon_sym_const] = ACTIONS(7595), + [anon_sym_constexpr] = ACTIONS(7597), + [anon_sym_volatile] = ACTIONS(7597), + [anon_sym_restrict] = ACTIONS(7597), + [anon_sym___restrict__] = ACTIONS(7597), + [anon_sym__Atomic] = ACTIONS(7597), + [anon_sym__Noreturn] = ACTIONS(7597), + [anon_sym_noreturn] = ACTIONS(7597), + [anon_sym__Nonnull] = ACTIONS(7597), + [anon_sym_mutable] = ACTIONS(7597), + [anon_sym_constinit] = ACTIONS(7597), + [anon_sym_consteval] = ACTIONS(7597), + [anon_sym_alignas] = ACTIONS(7597), + [anon_sym__Alignas] = ACTIONS(7597), + [anon_sym_QMARK] = ACTIONS(7597), + [anon_sym_STAR_EQ] = ACTIONS(7597), + [anon_sym_SLASH_EQ] = ACTIONS(7597), + [anon_sym_PERCENT_EQ] = ACTIONS(7597), + [anon_sym_PLUS_EQ] = ACTIONS(7597), + [anon_sym_DASH_EQ] = ACTIONS(7597), + [anon_sym_LT_LT_EQ] = ACTIONS(7597), + [anon_sym_GT_GT_EQ] = ACTIONS(7597), + [anon_sym_AMP_EQ] = ACTIONS(7597), + [anon_sym_CARET_EQ] = ACTIONS(7597), + [anon_sym_PIPE_EQ] = ACTIONS(7597), + [anon_sym_and_eq] = ACTIONS(7597), + [anon_sym_or_eq] = ACTIONS(7597), + [anon_sym_xor_eq] = ACTIONS(7597), + [anon_sym_LT_EQ_GT] = ACTIONS(7597), + [anon_sym_or] = ACTIONS(7595), + [anon_sym_and] = ACTIONS(7595), + [anon_sym_bitor] = ACTIONS(7597), + [anon_sym_xor] = ACTIONS(7595), + [anon_sym_bitand] = ACTIONS(7597), + [anon_sym_not_eq] = ACTIONS(7597), + [anon_sym_DASH_DASH] = ACTIONS(7597), + [anon_sym_PLUS_PLUS] = ACTIONS(7597), + [anon_sym_DOT] = ACTIONS(7595), + [anon_sym_DOT_STAR] = ACTIONS(7597), + [anon_sym_DASH_GT] = ACTIONS(7595), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7597), + [anon_sym_override] = ACTIONS(7597), + [anon_sym_requires] = ACTIONS(7597), + [anon_sym_DASH_GT_STAR] = ACTIONS(7597), }, - [STATE(3525)] = { + [STATE(3067)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7223), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), + [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + }, + [STATE(3068)] = { [sym_identifier] = ACTIONS(9011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9013), - [anon_sym_COMMA] = ACTIONS(9013), - [anon_sym_RPAREN] = ACTIONS(9013), - [aux_sym_preproc_if_token2] = ACTIONS(9013), - [aux_sym_preproc_else_token1] = ACTIONS(9013), - [aux_sym_preproc_elif_token1] = ACTIONS(9011), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9013), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9013), [anon_sym_LPAREN2] = ACTIONS(9013), - [anon_sym_DASH] = ACTIONS(9011), - [anon_sym_PLUS] = ACTIONS(9011), - [anon_sym_STAR] = ACTIONS(9011), - [anon_sym_SLASH] = ACTIONS(9011), - [anon_sym_PERCENT] = ACTIONS(9011), + [anon_sym_TILDE] = ACTIONS(9013), + [anon_sym_STAR] = ACTIONS(9013), [anon_sym_PIPE_PIPE] = ACTIONS(9013), [anon_sym_AMP_AMP] = ACTIONS(9013), - [anon_sym_PIPE] = ACTIONS(9011), - [anon_sym_CARET] = ACTIONS(9011), [anon_sym_AMP] = ACTIONS(9011), - [anon_sym_EQ_EQ] = ACTIONS(9013), - [anon_sym_BANG_EQ] = ACTIONS(9013), - [anon_sym_GT] = ACTIONS(9011), - [anon_sym_GT_EQ] = ACTIONS(9013), - [anon_sym_LT_EQ] = ACTIONS(9011), - [anon_sym_LT] = ACTIONS(9011), - [anon_sym_LT_LT] = ACTIONS(9011), - [anon_sym_GT_GT] = ACTIONS(9011), - [anon_sym_SEMI] = ACTIONS(9013), + [anon_sym___extension__] = ACTIONS(9011), + [anon_sym_virtual] = ACTIONS(9011), + [anon_sym_extern] = ACTIONS(9011), [anon_sym___attribute__] = ACTIONS(9011), [anon_sym___attribute] = ACTIONS(9011), - [anon_sym_COLON] = ACTIONS(9011), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9013), - [anon_sym_RBRACE] = ACTIONS(9013), - [anon_sym_LBRACK] = ACTIONS(9013), - [anon_sym_EQ] = ACTIONS(9011), - [anon_sym_QMARK] = ACTIONS(9013), - [anon_sym_STAR_EQ] = ACTIONS(9013), - [anon_sym_SLASH_EQ] = ACTIONS(9013), - [anon_sym_PERCENT_EQ] = ACTIONS(9013), - [anon_sym_PLUS_EQ] = ACTIONS(9013), - [anon_sym_DASH_EQ] = ACTIONS(9013), - [anon_sym_LT_LT_EQ] = ACTIONS(9013), - [anon_sym_GT_GT_EQ] = ACTIONS(9013), - [anon_sym_AMP_EQ] = ACTIONS(9013), - [anon_sym_CARET_EQ] = ACTIONS(9013), - [anon_sym_PIPE_EQ] = ACTIONS(9013), - [anon_sym_and_eq] = ACTIONS(9011), - [anon_sym_or_eq] = ACTIONS(9011), - [anon_sym_xor_eq] = ACTIONS(9011), - [anon_sym_LT_EQ_GT] = ACTIONS(9013), + [anon_sym_using] = ACTIONS(9011), + [anon_sym_COLON_COLON] = ACTIONS(9013), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9013), + [anon_sym___declspec] = ACTIONS(9011), + [anon_sym___based] = ACTIONS(9011), + [anon_sym___cdecl] = ACTIONS(9011), + [anon_sym___clrcall] = ACTIONS(9011), + [anon_sym___stdcall] = ACTIONS(9011), + [anon_sym___fastcall] = ACTIONS(9011), + [anon_sym___thiscall] = ACTIONS(9011), + [anon_sym___vectorcall] = ACTIONS(9011), + [anon_sym_LBRACE] = ACTIONS(9013), + [anon_sym_signed] = ACTIONS(9011), + [anon_sym_unsigned] = ACTIONS(9011), + [anon_sym_long] = ACTIONS(9011), + [anon_sym_short] = ACTIONS(9011), + [anon_sym_LBRACK] = ACTIONS(9011), + [anon_sym_static] = ACTIONS(9011), + [anon_sym_register] = ACTIONS(9011), + [anon_sym_inline] = ACTIONS(9011), + [anon_sym___inline] = ACTIONS(9011), + [anon_sym___inline__] = ACTIONS(9011), + [anon_sym___forceinline] = ACTIONS(9011), + [anon_sym_thread_local] = ACTIONS(9011), + [anon_sym___thread] = ACTIONS(9011), + [anon_sym_const] = ACTIONS(9011), + [anon_sym_constexpr] = ACTIONS(9011), + [anon_sym_volatile] = ACTIONS(9011), + [anon_sym_restrict] = ACTIONS(9011), + [anon_sym___restrict__] = ACTIONS(9011), + [anon_sym__Atomic] = ACTIONS(9011), + [anon_sym__Noreturn] = ACTIONS(9011), + [anon_sym_noreturn] = ACTIONS(9011), + [anon_sym__Nonnull] = ACTIONS(9011), + [anon_sym_mutable] = ACTIONS(9011), + [anon_sym_constinit] = ACTIONS(9011), + [anon_sym_consteval] = ACTIONS(9011), + [anon_sym_alignas] = ACTIONS(9011), + [anon_sym__Alignas] = ACTIONS(9011), + [sym_primitive_type] = ACTIONS(9011), + [anon_sym_enum] = ACTIONS(9011), + [anon_sym_class] = ACTIONS(9011), + [anon_sym_struct] = ACTIONS(9011), + [anon_sym_union] = ACTIONS(9011), [anon_sym_or] = ACTIONS(9011), [anon_sym_and] = ACTIONS(9011), - [anon_sym_bitor] = ACTIONS(9011), - [anon_sym_xor] = ACTIONS(9011), - [anon_sym_bitand] = ACTIONS(9011), - [anon_sym_not_eq] = ACTIONS(9011), - [anon_sym_DASH_DASH] = ACTIONS(9013), - [anon_sym_PLUS_PLUS] = ACTIONS(9013), - [anon_sym_DOT] = ACTIONS(9011), - [anon_sym_DOT_STAR] = ACTIONS(9013), + [anon_sym_typename] = ACTIONS(9011), [anon_sym_DASH_GT] = ACTIONS(9013), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9011), - [anon_sym_override] = ACTIONS(9011), - [anon_sym_requires] = ACTIONS(9011), - [anon_sym_COLON_RBRACK] = ACTIONS(9013), + [sym_auto] = ACTIONS(9011), + [anon_sym_decltype] = ACTIONS(9011), + [anon_sym_explicit] = ACTIONS(9011), + [anon_sym_template] = ACTIONS(9011), + [anon_sym_operator] = ACTIONS(9011), + [anon_sym_friend] = ACTIONS(9011), + [anon_sym_noexcept] = ACTIONS(9011), + [anon_sym_throw] = ACTIONS(9011), + [anon_sym_concept] = ACTIONS(9011), + [anon_sym_LBRACK_COLON] = ACTIONS(9013), }, - [STATE(3526)] = { - [sym_identifier] = ACTIONS(9015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9017), - [anon_sym_COMMA] = ACTIONS(9017), - [anon_sym_RPAREN] = ACTIONS(9017), - [aux_sym_preproc_if_token2] = ACTIONS(9017), - [aux_sym_preproc_else_token1] = ACTIONS(9017), - [aux_sym_preproc_elif_token1] = ACTIONS(9015), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9017), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9017), - [anon_sym_LPAREN2] = ACTIONS(9017), - [anon_sym_DASH] = ACTIONS(9015), - [anon_sym_PLUS] = ACTIONS(9015), - [anon_sym_STAR] = ACTIONS(9015), - [anon_sym_SLASH] = ACTIONS(9015), - [anon_sym_PERCENT] = ACTIONS(9015), - [anon_sym_PIPE_PIPE] = ACTIONS(9017), - [anon_sym_AMP_AMP] = ACTIONS(9017), - [anon_sym_PIPE] = ACTIONS(9015), - [anon_sym_CARET] = ACTIONS(9015), - [anon_sym_AMP] = ACTIONS(9015), - [anon_sym_EQ_EQ] = ACTIONS(9017), - [anon_sym_BANG_EQ] = ACTIONS(9017), - [anon_sym_GT] = ACTIONS(9015), - [anon_sym_GT_EQ] = ACTIONS(9017), - [anon_sym_LT_EQ] = ACTIONS(9015), - [anon_sym_LT] = ACTIONS(9015), - [anon_sym_LT_LT] = ACTIONS(9015), - [anon_sym_GT_GT] = ACTIONS(9015), - [anon_sym_SEMI] = ACTIONS(9017), - [anon_sym___attribute__] = ACTIONS(9015), - [anon_sym___attribute] = ACTIONS(9015), - [anon_sym_COLON] = ACTIONS(9015), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9017), - [anon_sym_RBRACE] = ACTIONS(9017), - [anon_sym_LBRACK] = ACTIONS(9017), - [anon_sym_EQ] = ACTIONS(9015), - [anon_sym_QMARK] = ACTIONS(9017), - [anon_sym_STAR_EQ] = ACTIONS(9017), - [anon_sym_SLASH_EQ] = ACTIONS(9017), - [anon_sym_PERCENT_EQ] = ACTIONS(9017), - [anon_sym_PLUS_EQ] = ACTIONS(9017), - [anon_sym_DASH_EQ] = ACTIONS(9017), - [anon_sym_LT_LT_EQ] = ACTIONS(9017), - [anon_sym_GT_GT_EQ] = ACTIONS(9017), - [anon_sym_AMP_EQ] = ACTIONS(9017), - [anon_sym_CARET_EQ] = ACTIONS(9017), - [anon_sym_PIPE_EQ] = ACTIONS(9017), - [anon_sym_and_eq] = ACTIONS(9015), - [anon_sym_or_eq] = ACTIONS(9015), - [anon_sym_xor_eq] = ACTIONS(9015), - [anon_sym_LT_EQ_GT] = ACTIONS(9017), - [anon_sym_or] = ACTIONS(9015), - [anon_sym_and] = ACTIONS(9015), - [anon_sym_bitor] = ACTIONS(9015), - [anon_sym_xor] = ACTIONS(9015), - [anon_sym_bitand] = ACTIONS(9015), - [anon_sym_not_eq] = ACTIONS(9015), - [anon_sym_DASH_DASH] = ACTIONS(9017), - [anon_sym_PLUS_PLUS] = ACTIONS(9017), - [anon_sym_DOT] = ACTIONS(9015), - [anon_sym_DOT_STAR] = ACTIONS(9017), - [anon_sym_DASH_GT] = ACTIONS(9017), + [STATE(3069)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7605), + [anon_sym_COMMA] = ACTIONS(7605), + [anon_sym_RPAREN] = ACTIONS(7605), + [anon_sym_LPAREN2] = ACTIONS(7605), + [anon_sym_DASH] = ACTIONS(7603), + [anon_sym_PLUS] = ACTIONS(7603), + [anon_sym_STAR] = ACTIONS(7603), + [anon_sym_SLASH] = ACTIONS(7603), + [anon_sym_PERCENT] = ACTIONS(7603), + [anon_sym_PIPE_PIPE] = ACTIONS(7605), + [anon_sym_AMP_AMP] = ACTIONS(7605), + [anon_sym_PIPE] = ACTIONS(7603), + [anon_sym_CARET] = ACTIONS(7603), + [anon_sym_AMP] = ACTIONS(7603), + [anon_sym_EQ_EQ] = ACTIONS(7605), + [anon_sym_BANG_EQ] = ACTIONS(7605), + [anon_sym_GT] = ACTIONS(7603), + [anon_sym_GT_EQ] = ACTIONS(7605), + [anon_sym_LT_EQ] = ACTIONS(7603), + [anon_sym_LT] = ACTIONS(7603), + [anon_sym_LT_LT] = ACTIONS(7603), + [anon_sym_GT_GT] = ACTIONS(7603), + [anon_sym___extension__] = ACTIONS(7605), + [anon_sym_LBRACE] = ACTIONS(7605), + [anon_sym_LBRACK] = ACTIONS(7605), + [anon_sym_EQ] = ACTIONS(7603), + [anon_sym_const] = ACTIONS(7603), + [anon_sym_constexpr] = ACTIONS(7605), + [anon_sym_volatile] = ACTIONS(7605), + [anon_sym_restrict] = ACTIONS(7605), + [anon_sym___restrict__] = ACTIONS(7605), + [anon_sym__Atomic] = ACTIONS(7605), + [anon_sym__Noreturn] = ACTIONS(7605), + [anon_sym_noreturn] = ACTIONS(7605), + [anon_sym__Nonnull] = ACTIONS(7605), + [anon_sym_mutable] = ACTIONS(7605), + [anon_sym_constinit] = ACTIONS(7605), + [anon_sym_consteval] = ACTIONS(7605), + [anon_sym_alignas] = ACTIONS(7605), + [anon_sym__Alignas] = ACTIONS(7605), + [anon_sym_QMARK] = ACTIONS(7605), + [anon_sym_STAR_EQ] = ACTIONS(7605), + [anon_sym_SLASH_EQ] = ACTIONS(7605), + [anon_sym_PERCENT_EQ] = ACTIONS(7605), + [anon_sym_PLUS_EQ] = ACTIONS(7605), + [anon_sym_DASH_EQ] = ACTIONS(7605), + [anon_sym_LT_LT_EQ] = ACTIONS(7605), + [anon_sym_GT_GT_EQ] = ACTIONS(7605), + [anon_sym_AMP_EQ] = ACTIONS(7605), + [anon_sym_CARET_EQ] = ACTIONS(7605), + [anon_sym_PIPE_EQ] = ACTIONS(7605), + [anon_sym_and_eq] = ACTIONS(7605), + [anon_sym_or_eq] = ACTIONS(7605), + [anon_sym_xor_eq] = ACTIONS(7605), + [anon_sym_LT_EQ_GT] = ACTIONS(7605), + [anon_sym_or] = ACTIONS(7603), + [anon_sym_and] = ACTIONS(7603), + [anon_sym_bitor] = ACTIONS(7605), + [anon_sym_xor] = ACTIONS(7603), + [anon_sym_bitand] = ACTIONS(7605), + [anon_sym_not_eq] = ACTIONS(7605), + [anon_sym_DASH_DASH] = ACTIONS(7605), + [anon_sym_PLUS_PLUS] = ACTIONS(7605), + [anon_sym_DOT] = ACTIONS(7603), + [anon_sym_DOT_STAR] = ACTIONS(7605), + [anon_sym_DASH_GT] = ACTIONS(7603), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7605), + [anon_sym_override] = ACTIONS(7605), + [anon_sym_requires] = ACTIONS(7605), + [anon_sym_DASH_GT_STAR] = ACTIONS(7605), + }, + [STATE(3070)] = { + [sym_attribute_specifier] = STATE(4161), + [sym_attribute_declaration] = STATE(4617), + [sym_gnu_asm_expression] = STATE(9112), + [sym_virtual_specifier] = STATE(4705), + [sym__function_attributes_end] = STATE(4355), + [sym__function_postfix] = STATE(5258), + [sym_trailing_return_type] = STATE(4432), + [sym_requires_clause] = STATE(5258), + [aux_sym_type_definition_repeat1] = STATE(4161), + [aux_sym_attributed_declarator_repeat1] = STATE(4617), + [aux_sym__function_postfix_repeat1] = STATE(4705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7789), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6681), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7789), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7791), + [anon_sym_or_eq] = ACTIONS(7791), + [anon_sym_xor_eq] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8318), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6694), + [anon_sym_override] = ACTIONS(6694), + [anon_sym_GT2] = ACTIONS(7791), + [anon_sym_requires] = ACTIONS(6700), + }, + [STATE(3071)] = { + [sym_virtual_specifier] = STATE(3433), + [sym__function_postfix] = STATE(3655), + [sym_requires_clause] = STATE(3655), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(7968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_RPAREN] = ACTIONS(7966), + [aux_sym_preproc_if_token2] = ACTIONS(7966), + [aux_sym_preproc_else_token1] = ACTIONS(7966), + [aux_sym_preproc_elif_token1] = ACTIONS(7968), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7966), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym_SEMI] = ACTIONS(7966), + [anon_sym___attribute__] = ACTIONS(7968), + [anon_sym___attribute] = ACTIONS(7968), + [anon_sym_COLON] = ACTIONS(7968), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7966), + [anon_sym_RBRACE] = ACTIONS(7966), + [anon_sym_LBRACK] = ACTIONS(7966), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7968), + [anon_sym_or_eq] = ACTIONS(7968), + [anon_sym_xor_eq] = ACTIONS(7968), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7968), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7968), + [anon_sym_not_eq] = ACTIONS(7968), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(7966), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6502), + [anon_sym_override] = ACTIONS(6502), + [anon_sym_requires] = ACTIONS(6508), + [anon_sym_COLON_RBRACK] = ACTIONS(7966), + }, + [STATE(3072)] = { + [sym_attribute_specifier] = STATE(4161), + [sym_attribute_declaration] = STATE(4617), + [sym_gnu_asm_expression] = STATE(9112), + [sym_virtual_specifier] = STATE(4705), + [sym__function_attributes_end] = STATE(4361), + [sym__function_postfix] = STATE(5047), + [sym_trailing_return_type] = STATE(4440), + [sym_requires_clause] = STATE(5047), + [aux_sym_type_definition_repeat1] = STATE(4161), + [aux_sym_attributed_declarator_repeat1] = STATE(4617), + [aux_sym__function_postfix_repeat1] = STATE(4705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7968), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym___attribute__] = ACTIONS(6681), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7968), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7966), + [anon_sym_or_eq] = ACTIONS(7966), + [anon_sym_xor_eq] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(8429), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6694), + [anon_sym_override] = ACTIONS(6694), + [anon_sym_GT2] = ACTIONS(7966), + [anon_sym_requires] = ACTIONS(6700), + }, + [STATE(3073)] = { + [sym_attribute_specifier] = STATE(4161), + [sym_attribute_declaration] = STATE(4617), + [sym_gnu_asm_expression] = STATE(9112), + [sym_virtual_specifier] = STATE(4705), + [sym__function_attributes_end] = STATE(4331), + [sym__function_postfix] = STATE(5066), + [sym_trailing_return_type] = STATE(4443), + [sym_requires_clause] = STATE(5066), + [aux_sym_type_definition_repeat1] = STATE(4161), + [aux_sym_attributed_declarator_repeat1] = STATE(4617), + [aux_sym__function_postfix_repeat1] = STATE(4705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), + [anon_sym_COMMA] = ACTIONS(8422), + [anon_sym_LPAREN2] = ACTIONS(8422), + [anon_sym_DASH] = ACTIONS(8424), + [anon_sym_PLUS] = ACTIONS(8424), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_SLASH] = ACTIONS(8424), + [anon_sym_PERCENT] = ACTIONS(8424), + [anon_sym_PIPE_PIPE] = ACTIONS(8422), + [anon_sym_AMP_AMP] = ACTIONS(8422), + [anon_sym_PIPE] = ACTIONS(8424), + [anon_sym_CARET] = ACTIONS(8424), + [anon_sym_AMP] = ACTIONS(8424), + [anon_sym_EQ_EQ] = ACTIONS(8422), + [anon_sym_BANG_EQ] = ACTIONS(8422), + [anon_sym_GT] = ACTIONS(8424), + [anon_sym_GT_EQ] = ACTIONS(8424), + [anon_sym_LT_EQ] = ACTIONS(8424), + [anon_sym_LT] = ACTIONS(8424), + [anon_sym_LT_LT] = ACTIONS(8424), + [anon_sym_GT_GT] = ACTIONS(8424), + [anon_sym___attribute__] = ACTIONS(6681), + [anon_sym___attribute] = ACTIONS(6683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), + [anon_sym_LBRACK] = ACTIONS(8424), + [anon_sym_EQ] = ACTIONS(8424), + [anon_sym_QMARK] = ACTIONS(8422), + [anon_sym_STAR_EQ] = ACTIONS(8422), + [anon_sym_SLASH_EQ] = ACTIONS(8422), + [anon_sym_PERCENT_EQ] = ACTIONS(8422), + [anon_sym_PLUS_EQ] = ACTIONS(8422), + [anon_sym_DASH_EQ] = ACTIONS(8422), + [anon_sym_LT_LT_EQ] = ACTIONS(8422), + [anon_sym_GT_GT_EQ] = ACTIONS(8424), + [anon_sym_AMP_EQ] = ACTIONS(8422), + [anon_sym_CARET_EQ] = ACTIONS(8422), + [anon_sym_PIPE_EQ] = ACTIONS(8422), + [anon_sym_and_eq] = ACTIONS(8422), + [anon_sym_or_eq] = ACTIONS(8422), + [anon_sym_xor_eq] = ACTIONS(8422), + [anon_sym_LT_EQ_GT] = ACTIONS(8422), + [anon_sym_or] = ACTIONS(8424), + [anon_sym_and] = ACTIONS(8424), + [anon_sym_bitor] = ACTIONS(8422), + [anon_sym_xor] = ACTIONS(8424), + [anon_sym_bitand] = ACTIONS(8422), + [anon_sym_not_eq] = ACTIONS(8422), + [anon_sym_DASH_DASH] = ACTIONS(8422), + [anon_sym_PLUS_PLUS] = ACTIONS(8422), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(8424), + [anon_sym_DOT_STAR] = ACTIONS(8422), + [anon_sym_DASH_GT] = ACTIONS(8983), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6694), + [anon_sym_override] = ACTIONS(6694), + [anon_sym_GT2] = ACTIONS(8422), + [anon_sym_requires] = ACTIONS(6700), + }, + [STATE(3074)] = { + [sym_virtual_specifier] = STATE(3433), + [sym__function_postfix] = STATE(3628), + [sym_requires_clause] = STATE(3628), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(7789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [aux_sym_preproc_if_token2] = ACTIONS(7791), + [aux_sym_preproc_else_token1] = ACTIONS(7791), + [aux_sym_preproc_elif_token1] = ACTIONS(7789), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym_SEMI] = ACTIONS(7791), + [anon_sym___attribute__] = ACTIONS(7789), + [anon_sym___attribute] = ACTIONS(7789), + [anon_sym_COLON] = ACTIONS(7789), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), + [anon_sym_RBRACE] = ACTIONS(7791), + [anon_sym_LBRACK] = ACTIONS(7791), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7789), + [anon_sym_or_eq] = ACTIONS(7789), + [anon_sym_xor_eq] = ACTIONS(7789), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7789), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7789), + [anon_sym_not_eq] = ACTIONS(7789), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(7791), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7802), + [anon_sym_override] = ACTIONS(7802), + [anon_sym_requires] = ACTIONS(7805), + [anon_sym_COLON_RBRACK] = ACTIONS(7791), + }, + [STATE(3075)] = { + [sym_virtual_specifier] = STATE(3433), + [sym__function_postfix] = STATE(3655), + [sym_requires_clause] = STATE(3655), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(7968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_RPAREN] = ACTIONS(7966), + [aux_sym_preproc_if_token2] = ACTIONS(7966), + [aux_sym_preproc_else_token1] = ACTIONS(7966), + [aux_sym_preproc_elif_token1] = ACTIONS(7968), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7966), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym_SEMI] = ACTIONS(7966), + [anon_sym___attribute__] = ACTIONS(7968), + [anon_sym___attribute] = ACTIONS(7968), + [anon_sym_COLON] = ACTIONS(7968), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7966), + [anon_sym_RBRACE] = ACTIONS(7966), + [anon_sym_LBRACK] = ACTIONS(7966), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7968), + [anon_sym_or_eq] = ACTIONS(7968), + [anon_sym_xor_eq] = ACTIONS(7968), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7968), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7968), + [anon_sym_not_eq] = ACTIONS(7968), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(7966), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7994), + [anon_sym_override] = ACTIONS(7994), + [anon_sym_requires] = ACTIONS(7997), + [anon_sym_COLON_RBRACK] = ACTIONS(7966), + }, + [STATE(3076)] = { + [sym_virtual_specifier] = STATE(3433), + [sym__function_postfix] = STATE(3675), + [sym_requires_clause] = STATE(3675), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(8424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), + [anon_sym_COMMA] = ACTIONS(8422), + [anon_sym_RPAREN] = ACTIONS(8422), + [aux_sym_preproc_if_token2] = ACTIONS(8422), + [aux_sym_preproc_else_token1] = ACTIONS(8422), + [aux_sym_preproc_elif_token1] = ACTIONS(8424), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8422), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8422), + [anon_sym_LPAREN2] = ACTIONS(8422), + [anon_sym_DASH] = ACTIONS(8424), + [anon_sym_PLUS] = ACTIONS(8424), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_SLASH] = ACTIONS(8424), + [anon_sym_PERCENT] = ACTIONS(8424), + [anon_sym_PIPE_PIPE] = ACTIONS(8422), + [anon_sym_AMP_AMP] = ACTIONS(8422), + [anon_sym_PIPE] = ACTIONS(8424), + [anon_sym_CARET] = ACTIONS(8424), + [anon_sym_AMP] = ACTIONS(8424), + [anon_sym_EQ_EQ] = ACTIONS(8422), + [anon_sym_BANG_EQ] = ACTIONS(8422), + [anon_sym_GT] = ACTIONS(8424), + [anon_sym_GT_EQ] = ACTIONS(8422), + [anon_sym_LT_EQ] = ACTIONS(8424), + [anon_sym_LT] = ACTIONS(8424), + [anon_sym_LT_LT] = ACTIONS(8424), + [anon_sym_GT_GT] = ACTIONS(8424), + [anon_sym_SEMI] = ACTIONS(8422), + [anon_sym___attribute__] = ACTIONS(8424), + [anon_sym___attribute] = ACTIONS(8424), + [anon_sym_COLON] = ACTIONS(8424), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8422), + [anon_sym_RBRACE] = ACTIONS(8422), + [anon_sym_LBRACK] = ACTIONS(8422), + [anon_sym_EQ] = ACTIONS(8424), + [anon_sym_QMARK] = ACTIONS(8422), + [anon_sym_STAR_EQ] = ACTIONS(8422), + [anon_sym_SLASH_EQ] = ACTIONS(8422), + [anon_sym_PERCENT_EQ] = ACTIONS(8422), + [anon_sym_PLUS_EQ] = ACTIONS(8422), + [anon_sym_DASH_EQ] = ACTIONS(8422), + [anon_sym_LT_LT_EQ] = ACTIONS(8422), + [anon_sym_GT_GT_EQ] = ACTIONS(8422), + [anon_sym_AMP_EQ] = ACTIONS(8422), + [anon_sym_CARET_EQ] = ACTIONS(8422), + [anon_sym_PIPE_EQ] = ACTIONS(8422), + [anon_sym_and_eq] = ACTIONS(8424), + [anon_sym_or_eq] = ACTIONS(8424), + [anon_sym_xor_eq] = ACTIONS(8424), + [anon_sym_LT_EQ_GT] = ACTIONS(8422), + [anon_sym_or] = ACTIONS(8424), + [anon_sym_and] = ACTIONS(8424), + [anon_sym_bitor] = ACTIONS(8424), + [anon_sym_xor] = ACTIONS(8424), + [anon_sym_bitand] = ACTIONS(8424), + [anon_sym_not_eq] = ACTIONS(8424), + [anon_sym_DASH_DASH] = ACTIONS(8422), + [anon_sym_PLUS_PLUS] = ACTIONS(8422), + [anon_sym_DOT] = ACTIONS(8424), + [anon_sym_DOT_STAR] = ACTIONS(8422), + [anon_sym_DASH_GT] = ACTIONS(8422), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8481), + [anon_sym_override] = ACTIONS(8481), + [anon_sym_requires] = ACTIONS(8484), + [anon_sym_COLON_RBRACK] = ACTIONS(8422), + }, + [STATE(3077)] = { + [sym_virtual_specifier] = STATE(3433), + [sym__function_postfix] = STATE(3687), + [sym_requires_clause] = STATE(3687), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(8905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8907), + [anon_sym_COMMA] = ACTIONS(8907), + [anon_sym_RPAREN] = ACTIONS(8907), + [aux_sym_preproc_if_token2] = ACTIONS(8907), + [aux_sym_preproc_else_token1] = ACTIONS(8907), + [aux_sym_preproc_elif_token1] = ACTIONS(8905), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8907), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8907), + [anon_sym_LPAREN2] = ACTIONS(8907), + [anon_sym_DASH] = ACTIONS(8905), + [anon_sym_PLUS] = ACTIONS(8905), + [anon_sym_STAR] = ACTIONS(8905), + [anon_sym_SLASH] = ACTIONS(8905), + [anon_sym_PERCENT] = ACTIONS(8905), + [anon_sym_PIPE_PIPE] = ACTIONS(8907), + [anon_sym_AMP_AMP] = ACTIONS(8907), + [anon_sym_PIPE] = ACTIONS(8905), + [anon_sym_CARET] = ACTIONS(8905), + [anon_sym_AMP] = ACTIONS(8905), + [anon_sym_EQ_EQ] = ACTIONS(8907), + [anon_sym_BANG_EQ] = ACTIONS(8907), + [anon_sym_GT] = ACTIONS(8905), + [anon_sym_GT_EQ] = ACTIONS(8907), + [anon_sym_LT_EQ] = ACTIONS(8905), + [anon_sym_LT] = ACTIONS(8905), + [anon_sym_LT_LT] = ACTIONS(8905), + [anon_sym_GT_GT] = ACTIONS(8905), + [anon_sym_SEMI] = ACTIONS(8907), + [anon_sym___attribute__] = ACTIONS(8905), + [anon_sym___attribute] = ACTIONS(8905), + [anon_sym_COLON] = ACTIONS(8905), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8907), + [anon_sym_RBRACE] = ACTIONS(8907), + [anon_sym_LBRACK] = ACTIONS(8907), + [anon_sym_EQ] = ACTIONS(8905), + [anon_sym_QMARK] = ACTIONS(8907), + [anon_sym_STAR_EQ] = ACTIONS(8907), + [anon_sym_SLASH_EQ] = ACTIONS(8907), + [anon_sym_PERCENT_EQ] = ACTIONS(8907), + [anon_sym_PLUS_EQ] = ACTIONS(8907), + [anon_sym_DASH_EQ] = ACTIONS(8907), + [anon_sym_LT_LT_EQ] = ACTIONS(8907), + [anon_sym_GT_GT_EQ] = ACTIONS(8907), + [anon_sym_AMP_EQ] = ACTIONS(8907), + [anon_sym_CARET_EQ] = ACTIONS(8907), + [anon_sym_PIPE_EQ] = ACTIONS(8907), + [anon_sym_and_eq] = ACTIONS(8905), + [anon_sym_or_eq] = ACTIONS(8905), + [anon_sym_xor_eq] = ACTIONS(8905), + [anon_sym_LT_EQ_GT] = ACTIONS(8907), + [anon_sym_or] = ACTIONS(8905), + [anon_sym_and] = ACTIONS(8905), + [anon_sym_bitor] = ACTIONS(8905), + [anon_sym_xor] = ACTIONS(8905), + [anon_sym_bitand] = ACTIONS(8905), + [anon_sym_not_eq] = ACTIONS(8905), + [anon_sym_DASH_DASH] = ACTIONS(8907), + [anon_sym_PLUS_PLUS] = ACTIONS(8907), + [anon_sym_DOT] = ACTIONS(8905), + [anon_sym_DOT_STAR] = ACTIONS(8907), + [anon_sym_DASH_GT] = ACTIONS(8907), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(9015), [anon_sym_override] = ACTIONS(9015), - [anon_sym_requires] = ACTIONS(9015), - [anon_sym_COLON_RBRACK] = ACTIONS(9017), + [anon_sym_requires] = ACTIONS(9018), + [anon_sym_COLON_RBRACK] = ACTIONS(8907), }, - [STATE(3527)] = { - [sym_identifier] = ACTIONS(6242), - [anon_sym_LPAREN2] = ACTIONS(6244), - [anon_sym_TILDE] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(6244), - [anon_sym_PIPE_PIPE] = ACTIONS(6244), - [anon_sym_AMP_AMP] = ACTIONS(6244), - [anon_sym_AMP] = ACTIONS(6242), - [anon_sym___extension__] = ACTIONS(6242), - [anon_sym_virtual] = ACTIONS(6242), - [anon_sym_extern] = ACTIONS(6242), - [anon_sym___attribute__] = ACTIONS(6242), - [anon_sym___attribute] = ACTIONS(6242), - [anon_sym_using] = ACTIONS(6242), - [anon_sym_COLON_COLON] = ACTIONS(6244), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6244), - [anon_sym___declspec] = ACTIONS(6242), - [anon_sym___based] = ACTIONS(6242), - [anon_sym___cdecl] = ACTIONS(6242), - [anon_sym___clrcall] = ACTIONS(6242), - [anon_sym___stdcall] = ACTIONS(6242), - [anon_sym___fastcall] = ACTIONS(6242), - [anon_sym___thiscall] = ACTIONS(6242), - [anon_sym___vectorcall] = ACTIONS(6242), - [anon_sym_signed] = ACTIONS(6242), - [anon_sym_unsigned] = ACTIONS(6242), - [anon_sym_long] = ACTIONS(6242), - [anon_sym_short] = ACTIONS(6242), - [anon_sym_LBRACK] = ACTIONS(6242), - [anon_sym_static] = ACTIONS(6242), - [anon_sym_register] = ACTIONS(6242), - [anon_sym_inline] = ACTIONS(6242), - [anon_sym___inline] = ACTIONS(6242), - [anon_sym___inline__] = ACTIONS(6242), - [anon_sym___forceinline] = ACTIONS(6242), - [anon_sym_thread_local] = ACTIONS(6242), - [anon_sym___thread] = ACTIONS(6242), - [anon_sym_const] = ACTIONS(6242), - [anon_sym_constexpr] = ACTIONS(6242), - [anon_sym_volatile] = ACTIONS(6242), - [anon_sym_restrict] = ACTIONS(6242), - [anon_sym___restrict__] = ACTIONS(6242), - [anon_sym__Atomic] = ACTIONS(6242), - [anon_sym__Noreturn] = ACTIONS(6242), - [anon_sym_noreturn] = ACTIONS(6242), - [anon_sym__Nonnull] = ACTIONS(6242), - [anon_sym_mutable] = ACTIONS(6242), - [anon_sym_constinit] = ACTIONS(6242), - [anon_sym_consteval] = ACTIONS(6242), - [anon_sym_alignas] = ACTIONS(6242), - [anon_sym__Alignas] = ACTIONS(6242), - [sym_primitive_type] = ACTIONS(6242), - [anon_sym_enum] = ACTIONS(6242), - [anon_sym_class] = ACTIONS(6242), - [anon_sym_struct] = ACTIONS(6242), - [anon_sym_union] = ACTIONS(6242), - [anon_sym_or] = ACTIONS(6242), - [anon_sym_and] = ACTIONS(6242), - [anon_sym_typename] = ACTIONS(6242), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6242), - [anon_sym_decltype] = ACTIONS(6242), - [anon_sym_explicit] = ACTIONS(6242), - [anon_sym_template] = ACTIONS(6242), - [anon_sym_operator] = ACTIONS(6242), - [anon_sym_friend] = ACTIONS(6242), - [anon_sym_concept] = ACTIONS(6242), - [anon_sym_LBRACK_COLON] = ACTIONS(6244), + [STATE(3078)] = { + [sym_virtual_specifier] = STATE(3433), + [sym__function_postfix] = STATE(3688), + [sym_requires_clause] = STATE(3688), + [aux_sym__function_postfix_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(8913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8915), + [anon_sym_COMMA] = ACTIONS(8915), + [anon_sym_RPAREN] = ACTIONS(8915), + [aux_sym_preproc_if_token2] = ACTIONS(8915), + [aux_sym_preproc_else_token1] = ACTIONS(8915), + [aux_sym_preproc_elif_token1] = ACTIONS(8913), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8915), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8915), + [anon_sym_LPAREN2] = ACTIONS(8915), + [anon_sym_DASH] = ACTIONS(8913), + [anon_sym_PLUS] = ACTIONS(8913), + [anon_sym_STAR] = ACTIONS(8913), + [anon_sym_SLASH] = ACTIONS(8913), + [anon_sym_PERCENT] = ACTIONS(8913), + [anon_sym_PIPE_PIPE] = ACTIONS(8915), + [anon_sym_AMP_AMP] = ACTIONS(8915), + [anon_sym_PIPE] = ACTIONS(8913), + [anon_sym_CARET] = ACTIONS(8913), + [anon_sym_AMP] = ACTIONS(8913), + [anon_sym_EQ_EQ] = ACTIONS(8915), + [anon_sym_BANG_EQ] = ACTIONS(8915), + [anon_sym_GT] = ACTIONS(8913), + [anon_sym_GT_EQ] = ACTIONS(8915), + [anon_sym_LT_EQ] = ACTIONS(8913), + [anon_sym_LT] = ACTIONS(8913), + [anon_sym_LT_LT] = ACTIONS(8913), + [anon_sym_GT_GT] = ACTIONS(8913), + [anon_sym_SEMI] = ACTIONS(8915), + [anon_sym___attribute__] = ACTIONS(8913), + [anon_sym___attribute] = ACTIONS(8913), + [anon_sym_COLON] = ACTIONS(8913), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8915), + [anon_sym_RBRACE] = ACTIONS(8915), + [anon_sym_LBRACK] = ACTIONS(8915), + [anon_sym_EQ] = ACTIONS(8913), + [anon_sym_QMARK] = ACTIONS(8915), + [anon_sym_STAR_EQ] = ACTIONS(8915), + [anon_sym_SLASH_EQ] = ACTIONS(8915), + [anon_sym_PERCENT_EQ] = ACTIONS(8915), + [anon_sym_PLUS_EQ] = ACTIONS(8915), + [anon_sym_DASH_EQ] = ACTIONS(8915), + [anon_sym_LT_LT_EQ] = ACTIONS(8915), + [anon_sym_GT_GT_EQ] = ACTIONS(8915), + [anon_sym_AMP_EQ] = ACTIONS(8915), + [anon_sym_CARET_EQ] = ACTIONS(8915), + [anon_sym_PIPE_EQ] = ACTIONS(8915), + [anon_sym_and_eq] = ACTIONS(8913), + [anon_sym_or_eq] = ACTIONS(8913), + [anon_sym_xor_eq] = ACTIONS(8913), + [anon_sym_LT_EQ_GT] = ACTIONS(8915), + [anon_sym_or] = ACTIONS(8913), + [anon_sym_and] = ACTIONS(8913), + [anon_sym_bitor] = ACTIONS(8913), + [anon_sym_xor] = ACTIONS(8913), + [anon_sym_bitand] = ACTIONS(8913), + [anon_sym_not_eq] = ACTIONS(8913), + [anon_sym_DASH_DASH] = ACTIONS(8915), + [anon_sym_PLUS_PLUS] = ACTIONS(8915), + [anon_sym_DOT] = ACTIONS(8913), + [anon_sym_DOT_STAR] = ACTIONS(8915), + [anon_sym_DASH_GT] = ACTIONS(8915), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9021), + [anon_sym_override] = ACTIONS(9021), + [anon_sym_requires] = ACTIONS(9024), + [anon_sym_COLON_RBRACK] = ACTIONS(8915), }, - [STATE(3528)] = { - [sym_identifier] = ACTIONS(8541), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8543), - [anon_sym_COMMA] = ACTIONS(8543), - [anon_sym_RPAREN] = ACTIONS(8543), - [aux_sym_preproc_if_token2] = ACTIONS(8543), - [aux_sym_preproc_else_token1] = ACTIONS(8543), - [aux_sym_preproc_elif_token1] = ACTIONS(8541), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8543), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8543), - [anon_sym_LPAREN2] = ACTIONS(8543), - [anon_sym_DASH] = ACTIONS(8541), - [anon_sym_PLUS] = ACTIONS(8541), - [anon_sym_STAR] = ACTIONS(8541), - [anon_sym_SLASH] = ACTIONS(8541), - [anon_sym_PERCENT] = ACTIONS(8541), - [anon_sym_PIPE_PIPE] = ACTIONS(8543), - [anon_sym_AMP_AMP] = ACTIONS(8543), - [anon_sym_PIPE] = ACTIONS(8541), - [anon_sym_CARET] = ACTIONS(8541), - [anon_sym_AMP] = ACTIONS(8541), - [anon_sym_EQ_EQ] = ACTIONS(8543), - [anon_sym_BANG_EQ] = ACTIONS(8543), - [anon_sym_GT] = ACTIONS(8541), - [anon_sym_GT_EQ] = ACTIONS(8543), - [anon_sym_LT_EQ] = ACTIONS(8541), - [anon_sym_LT] = ACTIONS(8541), - [anon_sym_LT_LT] = ACTIONS(8541), - [anon_sym_GT_GT] = ACTIONS(8541), - [anon_sym_SEMI] = ACTIONS(8543), - [anon_sym___attribute__] = ACTIONS(8541), - [anon_sym___attribute] = ACTIONS(8541), - [anon_sym_COLON] = ACTIONS(8541), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8543), - [anon_sym_RBRACE] = ACTIONS(8543), - [anon_sym_LBRACK] = ACTIONS(8543), - [anon_sym_EQ] = ACTIONS(8541), - [anon_sym_QMARK] = ACTIONS(8543), - [anon_sym_STAR_EQ] = ACTIONS(8543), - [anon_sym_SLASH_EQ] = ACTIONS(8543), - [anon_sym_PERCENT_EQ] = ACTIONS(8543), - [anon_sym_PLUS_EQ] = ACTIONS(8543), - [anon_sym_DASH_EQ] = ACTIONS(8543), - [anon_sym_LT_LT_EQ] = ACTIONS(8543), - [anon_sym_GT_GT_EQ] = ACTIONS(8543), - [anon_sym_AMP_EQ] = ACTIONS(8543), - [anon_sym_CARET_EQ] = ACTIONS(8543), - [anon_sym_PIPE_EQ] = ACTIONS(8543), - [anon_sym_and_eq] = ACTIONS(8541), - [anon_sym_or_eq] = ACTIONS(8541), - [anon_sym_xor_eq] = ACTIONS(8541), - [anon_sym_LT_EQ_GT] = ACTIONS(8543), - [anon_sym_or] = ACTIONS(8541), - [anon_sym_and] = ACTIONS(8541), - [anon_sym_bitor] = ACTIONS(8541), - [anon_sym_xor] = ACTIONS(8541), - [anon_sym_bitand] = ACTIONS(8541), - [anon_sym_not_eq] = ACTIONS(8541), - [anon_sym_DASH_DASH] = ACTIONS(8543), - [anon_sym_PLUS_PLUS] = ACTIONS(8543), - [anon_sym_DOT] = ACTIONS(8541), - [anon_sym_DOT_STAR] = ACTIONS(8543), - [anon_sym_DASH_GT] = ACTIONS(8543), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8541), - [anon_sym_override] = ACTIONS(8541), - [anon_sym_requires] = ACTIONS(8541), - [anon_sym_COLON_RBRACK] = ACTIONS(8543), + [STATE(3079)] = { + [sym_identifier] = ACTIONS(9027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9029), + [anon_sym_COMMA] = ACTIONS(9029), + [anon_sym_RPAREN] = ACTIONS(9029), + [aux_sym_preproc_if_token2] = ACTIONS(9029), + [aux_sym_preproc_else_token1] = ACTIONS(9029), + [aux_sym_preproc_elif_token1] = ACTIONS(9027), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9029), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9029), + [anon_sym_LPAREN2] = ACTIONS(9031), + [anon_sym_DASH] = ACTIONS(9027), + [anon_sym_PLUS] = ACTIONS(9027), + [anon_sym_STAR] = ACTIONS(9027), + [anon_sym_SLASH] = ACTIONS(9027), + [anon_sym_PERCENT] = ACTIONS(9027), + [anon_sym_PIPE_PIPE] = ACTIONS(9029), + [anon_sym_AMP_AMP] = ACTIONS(9029), + [anon_sym_PIPE] = ACTIONS(9027), + [anon_sym_CARET] = ACTIONS(9027), + [anon_sym_AMP] = ACTIONS(9027), + [anon_sym_EQ_EQ] = ACTIONS(9029), + [anon_sym_BANG_EQ] = ACTIONS(9029), + [anon_sym_GT] = ACTIONS(9027), + [anon_sym_GT_EQ] = ACTIONS(9029), + [anon_sym_LT_EQ] = ACTIONS(9027), + [anon_sym_LT] = ACTIONS(9027), + [anon_sym_LT_LT] = ACTIONS(9027), + [anon_sym_GT_GT] = ACTIONS(9027), + [anon_sym_SEMI] = ACTIONS(9029), + [anon_sym___attribute__] = ACTIONS(9027), + [anon_sym___attribute] = ACTIONS(9027), + [anon_sym_COLON] = ACTIONS(9027), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9029), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9029), + [anon_sym_RBRACE] = ACTIONS(9029), + [anon_sym_LBRACK] = ACTIONS(9027), + [anon_sym_EQ] = ACTIONS(9027), + [anon_sym_QMARK] = ACTIONS(9029), + [anon_sym_STAR_EQ] = ACTIONS(9029), + [anon_sym_SLASH_EQ] = ACTIONS(9029), + [anon_sym_PERCENT_EQ] = ACTIONS(9029), + [anon_sym_PLUS_EQ] = ACTIONS(9029), + [anon_sym_DASH_EQ] = ACTIONS(9029), + [anon_sym_LT_LT_EQ] = ACTIONS(9029), + [anon_sym_GT_GT_EQ] = ACTIONS(9029), + [anon_sym_AMP_EQ] = ACTIONS(9029), + [anon_sym_CARET_EQ] = ACTIONS(9029), + [anon_sym_PIPE_EQ] = ACTIONS(9029), + [anon_sym_and_eq] = ACTIONS(9027), + [anon_sym_or_eq] = ACTIONS(9027), + [anon_sym_xor_eq] = ACTIONS(9027), + [anon_sym_LT_EQ_GT] = ACTIONS(9029), + [anon_sym_or] = ACTIONS(9027), + [anon_sym_and] = ACTIONS(9027), + [anon_sym_bitor] = ACTIONS(9027), + [anon_sym_xor] = ACTIONS(9027), + [anon_sym_bitand] = ACTIONS(9027), + [anon_sym_not_eq] = ACTIONS(9027), + [anon_sym_DASH_DASH] = ACTIONS(9029), + [anon_sym_PLUS_PLUS] = ACTIONS(9029), + [anon_sym_asm] = ACTIONS(9027), + [anon_sym___asm__] = ACTIONS(9027), + [anon_sym___asm] = ACTIONS(9027), + [anon_sym_DOT] = ACTIONS(9027), + [anon_sym_DOT_STAR] = ACTIONS(9029), + [anon_sym_DASH_GT] = ACTIONS(9029), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9027), + [anon_sym_override] = ACTIONS(9027), + [anon_sym_requires] = ACTIONS(9027), + [anon_sym_COLON_RBRACK] = ACTIONS(9029), }, - [STATE(3529)] = { - [sym_attribute_specifier] = STATE(3974), - [sym_enumerator_list] = STATE(3746), - [sym__enum_base_clause] = STATE(3694), - [sym_identifier] = ACTIONS(7600), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7602), - [anon_sym_COMMA] = ACTIONS(7602), - [aux_sym_preproc_if_token2] = ACTIONS(7602), - [aux_sym_preproc_else_token1] = ACTIONS(7602), - [aux_sym_preproc_elif_token1] = ACTIONS(7600), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7602), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7602), - [anon_sym_LPAREN2] = ACTIONS(7602), - [anon_sym_DASH] = ACTIONS(7600), - [anon_sym_PLUS] = ACTIONS(7600), - [anon_sym_STAR] = ACTIONS(7602), - [anon_sym_SLASH] = ACTIONS(7600), - [anon_sym_PERCENT] = ACTIONS(7602), - [anon_sym_PIPE_PIPE] = ACTIONS(7602), - [anon_sym_AMP_AMP] = ACTIONS(7602), - [anon_sym_PIPE] = ACTIONS(7600), - [anon_sym_CARET] = ACTIONS(7602), - [anon_sym_AMP] = ACTIONS(7600), - [anon_sym_EQ_EQ] = ACTIONS(7602), - [anon_sym_BANG_EQ] = ACTIONS(7602), - [anon_sym_GT] = ACTIONS(7600), - [anon_sym_GT_EQ] = ACTIONS(7602), - [anon_sym_LT_EQ] = ACTIONS(7600), - [anon_sym_LT] = ACTIONS(7600), - [anon_sym_LT_LT] = ACTIONS(7602), - [anon_sym_GT_GT] = ACTIONS(7602), - [anon_sym___extension__] = ACTIONS(7600), - [anon_sym___attribute__] = ACTIONS(8907), - [anon_sym___attribute] = ACTIONS(8907), - [anon_sym_COLON] = ACTIONS(9019), - [anon_sym_LBRACE] = ACTIONS(9021), - [anon_sym_LBRACK] = ACTIONS(7602), - [anon_sym_const] = ACTIONS(7600), - [anon_sym_constexpr] = ACTIONS(7600), - [anon_sym_volatile] = ACTIONS(7600), - [anon_sym_restrict] = ACTIONS(7600), - [anon_sym___restrict__] = ACTIONS(7600), - [anon_sym__Atomic] = ACTIONS(7600), - [anon_sym__Noreturn] = ACTIONS(7600), - [anon_sym_noreturn] = ACTIONS(7600), - [anon_sym__Nonnull] = ACTIONS(7600), - [anon_sym_mutable] = ACTIONS(7600), - [anon_sym_constinit] = ACTIONS(7600), - [anon_sym_consteval] = ACTIONS(7600), - [anon_sym_alignas] = ACTIONS(7600), - [anon_sym__Alignas] = ACTIONS(7600), - [anon_sym_QMARK] = ACTIONS(7602), - [anon_sym_LT_EQ_GT] = ACTIONS(7602), - [anon_sym_or] = ACTIONS(7600), - [anon_sym_and] = ACTIONS(7600), - [anon_sym_bitor] = ACTIONS(7600), - [anon_sym_xor] = ACTIONS(7600), - [anon_sym_bitand] = ACTIONS(7600), - [anon_sym_not_eq] = ACTIONS(7600), - [anon_sym_DASH_DASH] = ACTIONS(7602), - [anon_sym_PLUS_PLUS] = ACTIONS(7602), - [anon_sym_DOT] = ACTIONS(7600), - [anon_sym_DOT_STAR] = ACTIONS(7602), - [anon_sym_DASH_GT] = ACTIONS(7602), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7600), - [anon_sym_override] = ACTIONS(7600), - [anon_sym_requires] = ACTIONS(7600), + [STATE(3080)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7567), + [anon_sym_COMMA] = ACTIONS(7567), + [anon_sym_RPAREN] = ACTIONS(7567), + [anon_sym_LPAREN2] = ACTIONS(7567), + [anon_sym_DASH] = ACTIONS(7565), + [anon_sym_PLUS] = ACTIONS(7565), + [anon_sym_STAR] = ACTIONS(7565), + [anon_sym_SLASH] = ACTIONS(7565), + [anon_sym_PERCENT] = ACTIONS(7565), + [anon_sym_PIPE_PIPE] = ACTIONS(7567), + [anon_sym_AMP_AMP] = ACTIONS(7567), + [anon_sym_PIPE] = ACTIONS(7565), + [anon_sym_CARET] = ACTIONS(7565), + [anon_sym_AMP] = ACTIONS(7565), + [anon_sym_EQ_EQ] = ACTIONS(7567), + [anon_sym_BANG_EQ] = ACTIONS(7567), + [anon_sym_GT] = ACTIONS(7565), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_LT_EQ] = ACTIONS(7565), + [anon_sym_LT] = ACTIONS(7565), + [anon_sym_LT_LT] = ACTIONS(7565), + [anon_sym_GT_GT] = ACTIONS(7565), + [anon_sym___extension__] = ACTIONS(7567), + [anon_sym_LBRACE] = ACTIONS(7567), + [anon_sym_LBRACK] = ACTIONS(7567), + [anon_sym_EQ] = ACTIONS(7565), + [anon_sym_const] = ACTIONS(7565), + [anon_sym_constexpr] = ACTIONS(7567), + [anon_sym_volatile] = ACTIONS(7567), + [anon_sym_restrict] = ACTIONS(7567), + [anon_sym___restrict__] = ACTIONS(7567), + [anon_sym__Atomic] = ACTIONS(7567), + [anon_sym__Noreturn] = ACTIONS(7567), + [anon_sym_noreturn] = ACTIONS(7567), + [anon_sym__Nonnull] = ACTIONS(7567), + [anon_sym_mutable] = ACTIONS(7567), + [anon_sym_constinit] = ACTIONS(7567), + [anon_sym_consteval] = ACTIONS(7567), + [anon_sym_alignas] = ACTIONS(7567), + [anon_sym__Alignas] = ACTIONS(7567), + [anon_sym_QMARK] = ACTIONS(7567), + [anon_sym_STAR_EQ] = ACTIONS(7567), + [anon_sym_SLASH_EQ] = ACTIONS(7567), + [anon_sym_PERCENT_EQ] = ACTIONS(7567), + [anon_sym_PLUS_EQ] = ACTIONS(7567), + [anon_sym_DASH_EQ] = ACTIONS(7567), + [anon_sym_LT_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_GT_EQ] = ACTIONS(7567), + [anon_sym_AMP_EQ] = ACTIONS(7567), + [anon_sym_CARET_EQ] = ACTIONS(7567), + [anon_sym_PIPE_EQ] = ACTIONS(7567), + [anon_sym_and_eq] = ACTIONS(7567), + [anon_sym_or_eq] = ACTIONS(7567), + [anon_sym_xor_eq] = ACTIONS(7567), + [anon_sym_LT_EQ_GT] = ACTIONS(7567), + [anon_sym_or] = ACTIONS(7565), + [anon_sym_and] = ACTIONS(7565), + [anon_sym_bitor] = ACTIONS(7567), + [anon_sym_xor] = ACTIONS(7565), + [anon_sym_bitand] = ACTIONS(7567), + [anon_sym_not_eq] = ACTIONS(7567), + [anon_sym_DASH_DASH] = ACTIONS(7567), + [anon_sym_PLUS_PLUS] = ACTIONS(7567), + [anon_sym_DOT] = ACTIONS(7565), + [anon_sym_DOT_STAR] = ACTIONS(7567), + [anon_sym_DASH_GT] = ACTIONS(7565), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7567), + [anon_sym_override] = ACTIONS(7567), + [anon_sym_requires] = ACTIONS(7567), + [anon_sym_DASH_GT_STAR] = ACTIONS(7567), }, - [STATE(3530)] = { - [sym_attribute_specifier] = STATE(4024), - [sym_enumerator_list] = STATE(3795), - [sym__enum_base_clause] = STATE(3713), - [sym_identifier] = ACTIONS(7651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), - [anon_sym_COMMA] = ACTIONS(7653), - [aux_sym_preproc_if_token2] = ACTIONS(7653), - [aux_sym_preproc_else_token1] = ACTIONS(7653), - [aux_sym_preproc_elif_token1] = ACTIONS(7651), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7653), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7653), - [anon_sym_LPAREN2] = ACTIONS(7653), - [anon_sym_DASH] = ACTIONS(7651), - [anon_sym_PLUS] = ACTIONS(7651), - [anon_sym_STAR] = ACTIONS(7653), - [anon_sym_SLASH] = ACTIONS(7651), - [anon_sym_PERCENT] = ACTIONS(7653), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_AMP_AMP] = ACTIONS(7653), - [anon_sym_PIPE] = ACTIONS(7651), - [anon_sym_CARET] = ACTIONS(7653), - [anon_sym_AMP] = ACTIONS(7651), - [anon_sym_EQ_EQ] = ACTIONS(7653), - [anon_sym_BANG_EQ] = ACTIONS(7653), - [anon_sym_GT] = ACTIONS(7651), - [anon_sym_GT_EQ] = ACTIONS(7653), - [anon_sym_LT_EQ] = ACTIONS(7651), - [anon_sym_LT] = ACTIONS(7651), - [anon_sym_LT_LT] = ACTIONS(7653), - [anon_sym_GT_GT] = ACTIONS(7653), - [anon_sym___extension__] = ACTIONS(7651), - [anon_sym___attribute__] = ACTIONS(8907), - [anon_sym___attribute] = ACTIONS(8907), - [anon_sym_COLON] = ACTIONS(9019), - [anon_sym_LBRACE] = ACTIONS(9021), - [anon_sym_LBRACK] = ACTIONS(7653), - [anon_sym_const] = ACTIONS(7651), - [anon_sym_constexpr] = ACTIONS(7651), - [anon_sym_volatile] = ACTIONS(7651), - [anon_sym_restrict] = ACTIONS(7651), - [anon_sym___restrict__] = ACTIONS(7651), - [anon_sym__Atomic] = ACTIONS(7651), - [anon_sym__Noreturn] = ACTIONS(7651), - [anon_sym_noreturn] = ACTIONS(7651), - [anon_sym__Nonnull] = ACTIONS(7651), - [anon_sym_mutable] = ACTIONS(7651), - [anon_sym_constinit] = ACTIONS(7651), - [anon_sym_consteval] = ACTIONS(7651), - [anon_sym_alignas] = ACTIONS(7651), - [anon_sym__Alignas] = ACTIONS(7651), - [anon_sym_QMARK] = ACTIONS(7653), - [anon_sym_LT_EQ_GT] = ACTIONS(7653), - [anon_sym_or] = ACTIONS(7651), - [anon_sym_and] = ACTIONS(7651), - [anon_sym_bitor] = ACTIONS(7651), - [anon_sym_xor] = ACTIONS(7651), - [anon_sym_bitand] = ACTIONS(7651), - [anon_sym_not_eq] = ACTIONS(7651), - [anon_sym_DASH_DASH] = ACTIONS(7653), - [anon_sym_PLUS_PLUS] = ACTIONS(7653), - [anon_sym_DOT] = ACTIONS(7651), - [anon_sym_DOT_STAR] = ACTIONS(7653), - [anon_sym_DASH_GT] = ACTIONS(7653), + [STATE(3081)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7657), + [anon_sym_COMMA] = ACTIONS(7657), + [anon_sym_RPAREN] = ACTIONS(7657), + [anon_sym_LPAREN2] = ACTIONS(7657), + [anon_sym_DASH] = ACTIONS(7655), + [anon_sym_PLUS] = ACTIONS(7655), + [anon_sym_STAR] = ACTIONS(7655), + [anon_sym_SLASH] = ACTIONS(7655), + [anon_sym_PERCENT] = ACTIONS(7655), + [anon_sym_PIPE_PIPE] = ACTIONS(7657), + [anon_sym_AMP_AMP] = ACTIONS(7657), + [anon_sym_PIPE] = ACTIONS(7655), + [anon_sym_CARET] = ACTIONS(7655), + [anon_sym_AMP] = ACTIONS(7655), + [anon_sym_EQ_EQ] = ACTIONS(7657), + [anon_sym_BANG_EQ] = ACTIONS(7657), + [anon_sym_GT] = ACTIONS(7655), + [anon_sym_GT_EQ] = ACTIONS(7657), + [anon_sym_LT_EQ] = ACTIONS(7655), + [anon_sym_LT] = ACTIONS(7655), + [anon_sym_LT_LT] = ACTIONS(7655), + [anon_sym_GT_GT] = ACTIONS(7655), + [anon_sym___extension__] = ACTIONS(7657), + [anon_sym_LBRACE] = ACTIONS(7657), + [anon_sym_LBRACK] = ACTIONS(7657), + [anon_sym_EQ] = ACTIONS(7655), + [anon_sym_const] = ACTIONS(7655), + [anon_sym_constexpr] = ACTIONS(7657), + [anon_sym_volatile] = ACTIONS(7657), + [anon_sym_restrict] = ACTIONS(7657), + [anon_sym___restrict__] = ACTIONS(7657), + [anon_sym__Atomic] = ACTIONS(7657), + [anon_sym__Noreturn] = ACTIONS(7657), + [anon_sym_noreturn] = ACTIONS(7657), + [anon_sym__Nonnull] = ACTIONS(7657), + [anon_sym_mutable] = ACTIONS(7657), + [anon_sym_constinit] = ACTIONS(7657), + [anon_sym_consteval] = ACTIONS(7657), + [anon_sym_alignas] = ACTIONS(7657), + [anon_sym__Alignas] = ACTIONS(7657), + [anon_sym_QMARK] = ACTIONS(7657), + [anon_sym_STAR_EQ] = ACTIONS(7657), + [anon_sym_SLASH_EQ] = ACTIONS(7657), + [anon_sym_PERCENT_EQ] = ACTIONS(7657), + [anon_sym_PLUS_EQ] = ACTIONS(7657), + [anon_sym_DASH_EQ] = ACTIONS(7657), + [anon_sym_LT_LT_EQ] = ACTIONS(7657), + [anon_sym_GT_GT_EQ] = ACTIONS(7657), + [anon_sym_AMP_EQ] = ACTIONS(7657), + [anon_sym_CARET_EQ] = ACTIONS(7657), + [anon_sym_PIPE_EQ] = ACTIONS(7657), + [anon_sym_and_eq] = ACTIONS(7657), + [anon_sym_or_eq] = ACTIONS(7657), + [anon_sym_xor_eq] = ACTIONS(7657), + [anon_sym_LT_EQ_GT] = ACTIONS(7657), + [anon_sym_or] = ACTIONS(7655), + [anon_sym_and] = ACTIONS(7655), + [anon_sym_bitor] = ACTIONS(7657), + [anon_sym_xor] = ACTIONS(7655), + [anon_sym_bitand] = ACTIONS(7657), + [anon_sym_not_eq] = ACTIONS(7657), + [anon_sym_DASH_DASH] = ACTIONS(7657), + [anon_sym_PLUS_PLUS] = ACTIONS(7657), + [anon_sym_DOT] = ACTIONS(7655), + [anon_sym_DOT_STAR] = ACTIONS(7657), + [anon_sym_DASH_GT] = ACTIONS(7655), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_override] = ACTIONS(7657), + [anon_sym_requires] = ACTIONS(7657), + [anon_sym_DASH_GT_STAR] = ACTIONS(7657), + }, + [STATE(3082)] = { + [sym_template_argument_list] = STATE(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6569), + [anon_sym_COMMA] = ACTIONS(6569), + [anon_sym_LPAREN2] = ACTIONS(6569), + [anon_sym_DASH] = ACTIONS(6576), + [anon_sym_PLUS] = ACTIONS(6576), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(6576), + [anon_sym_PERCENT] = ACTIONS(6576), + [anon_sym_PIPE_PIPE] = ACTIONS(6569), + [anon_sym_AMP_AMP] = ACTIONS(6569), + [anon_sym_PIPE] = ACTIONS(6576), + [anon_sym_CARET] = ACTIONS(6576), + [anon_sym_AMP] = ACTIONS(6576), + [anon_sym_EQ_EQ] = ACTIONS(6569), + [anon_sym_BANG_EQ] = ACTIONS(6569), + [anon_sym_GT] = ACTIONS(6576), + [anon_sym_GT_EQ] = ACTIONS(6576), + [anon_sym_LT_EQ] = ACTIONS(6576), + [anon_sym_LT] = ACTIONS(8934), + [anon_sym_LT_LT] = ACTIONS(6576), + [anon_sym_GT_GT] = ACTIONS(6576), + [anon_sym___extension__] = ACTIONS(6572), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(6572), + [anon_sym_LBRACK] = ACTIONS(6569), + [anon_sym_EQ] = ACTIONS(6574), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_constexpr] = ACTIONS(6572), + [anon_sym_volatile] = ACTIONS(6572), + [anon_sym_restrict] = ACTIONS(6572), + [anon_sym___restrict__] = ACTIONS(6572), + [anon_sym__Atomic] = ACTIONS(6572), + [anon_sym__Noreturn] = ACTIONS(6572), + [anon_sym_noreturn] = ACTIONS(6572), + [anon_sym__Nonnull] = ACTIONS(6572), + [anon_sym_mutable] = ACTIONS(6572), + [anon_sym_constinit] = ACTIONS(6572), + [anon_sym_consteval] = ACTIONS(6572), + [anon_sym_alignas] = ACTIONS(6572), + [anon_sym__Alignas] = ACTIONS(6572), + [anon_sym_QMARK] = ACTIONS(6569), + [anon_sym_STAR_EQ] = ACTIONS(6567), + [anon_sym_SLASH_EQ] = ACTIONS(6567), + [anon_sym_PERCENT_EQ] = ACTIONS(6567), + [anon_sym_PLUS_EQ] = ACTIONS(6567), + [anon_sym_DASH_EQ] = ACTIONS(6567), + [anon_sym_LT_LT_EQ] = ACTIONS(6567), + [anon_sym_GT_GT_EQ] = ACTIONS(6574), + [anon_sym_AMP_EQ] = ACTIONS(6567), + [anon_sym_CARET_EQ] = ACTIONS(6567), + [anon_sym_PIPE_EQ] = ACTIONS(6567), + [anon_sym_and_eq] = ACTIONS(6567), + [anon_sym_or_eq] = ACTIONS(6567), + [anon_sym_xor_eq] = ACTIONS(6567), + [anon_sym_LT_EQ_GT] = ACTIONS(6569), + [anon_sym_or] = ACTIONS(6576), + [anon_sym_and] = ACTIONS(6576), + [anon_sym_bitor] = ACTIONS(6569), + [anon_sym_xor] = ACTIONS(6576), + [anon_sym_bitand] = ACTIONS(6569), + [anon_sym_not_eq] = ACTIONS(6569), + [anon_sym_DASH_DASH] = ACTIONS(6569), + [anon_sym_PLUS_PLUS] = ACTIONS(6569), + [anon_sym_DOT] = ACTIONS(6576), + [anon_sym_DOT_STAR] = ACTIONS(6569), + [anon_sym_DASH_GT] = ACTIONS(6569), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7651), - [anon_sym_override] = ACTIONS(7651), - [anon_sym_requires] = ACTIONS(7651), + [sym_auto] = ACTIONS(6572), + [anon_sym_decltype] = ACTIONS(6572), + [anon_sym_GT2] = ACTIONS(6569), }, - [STATE(3531)] = { - [sym_string_literal] = STATE(3552), - [sym_raw_string_literal] = STATE(3552), - [aux_sym_concatenated_string_repeat1] = STATE(3552), - [sym_identifier] = ACTIONS(9023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8116), - [anon_sym_COMMA] = ACTIONS(8116), - [anon_sym_RPAREN] = ACTIONS(8116), - [anon_sym_LPAREN2] = ACTIONS(8116), - [anon_sym_DASH] = ACTIONS(8118), - [anon_sym_PLUS] = ACTIONS(8118), - [anon_sym_STAR] = ACTIONS(8118), - [anon_sym_SLASH] = ACTIONS(8118), - [anon_sym_PERCENT] = ACTIONS(8118), - [anon_sym_PIPE_PIPE] = ACTIONS(8116), - [anon_sym_AMP_AMP] = ACTIONS(8116), - [anon_sym_PIPE] = ACTIONS(8118), - [anon_sym_CARET] = ACTIONS(8118), - [anon_sym_AMP] = ACTIONS(8118), - [anon_sym_EQ_EQ] = ACTIONS(8116), - [anon_sym_BANG_EQ] = ACTIONS(8116), - [anon_sym_GT] = ACTIONS(8118), - [anon_sym_GT_EQ] = ACTIONS(8116), - [anon_sym_LT_EQ] = ACTIONS(8118), - [anon_sym_LT] = ACTIONS(8118), - [anon_sym_LT_LT] = ACTIONS(8118), - [anon_sym_GT_GT] = ACTIONS(8118), - [anon_sym_LBRACK] = ACTIONS(8116), - [anon_sym_EQ] = ACTIONS(8118), - [anon_sym_QMARK] = ACTIONS(8116), - [anon_sym_STAR_EQ] = ACTIONS(8116), - [anon_sym_SLASH_EQ] = ACTIONS(8116), - [anon_sym_PERCENT_EQ] = ACTIONS(8116), - [anon_sym_PLUS_EQ] = ACTIONS(8116), - [anon_sym_DASH_EQ] = ACTIONS(8116), - [anon_sym_LT_LT_EQ] = ACTIONS(8116), - [anon_sym_GT_GT_EQ] = ACTIONS(8116), - [anon_sym_AMP_EQ] = ACTIONS(8116), - [anon_sym_CARET_EQ] = ACTIONS(8116), - [anon_sym_PIPE_EQ] = ACTIONS(8116), - [anon_sym_and_eq] = ACTIONS(8118), - [anon_sym_or_eq] = ACTIONS(8118), - [anon_sym_xor_eq] = ACTIONS(8118), - [anon_sym_LT_EQ_GT] = ACTIONS(8116), - [anon_sym_or] = ACTIONS(8118), - [anon_sym_and] = ACTIONS(8118), - [anon_sym_bitor] = ACTIONS(8118), - [anon_sym_xor] = ACTIONS(8118), - [anon_sym_bitand] = ACTIONS(8118), - [anon_sym_not_eq] = ACTIONS(8118), - [anon_sym_DASH_DASH] = ACTIONS(8116), - [anon_sym_PLUS_PLUS] = ACTIONS(8116), - [anon_sym_DOT] = ACTIONS(8118), - [anon_sym_DOT_STAR] = ACTIONS(8116), - [anon_sym_DASH_GT] = ACTIONS(8118), - [anon_sym_L_DQUOTE] = ACTIONS(6517), - [anon_sym_u_DQUOTE] = ACTIONS(6517), - [anon_sym_U_DQUOTE] = ACTIONS(6517), - [anon_sym_u8_DQUOTE] = ACTIONS(6517), - [anon_sym_DQUOTE] = ACTIONS(6517), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6519), - [anon_sym_LR_DQUOTE] = ACTIONS(6519), - [anon_sym_uR_DQUOTE] = ACTIONS(6519), - [anon_sym_UR_DQUOTE] = ACTIONS(6519), - [anon_sym_u8R_DQUOTE] = ACTIONS(6519), - [anon_sym_DASH_GT_STAR] = ACTIONS(8116), - [sym_literal_suffix] = ACTIONS(8118), + [STATE(3083)] = { + [sym__abstract_declarator] = STATE(6156), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(2488), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2069), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(2488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), + [anon_sym_COMMA] = ACTIONS(7351), + [anon_sym_RPAREN] = ACTIONS(7351), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_PLUS] = ACTIONS(7349), + [anon_sym_STAR] = ACTIONS(8111), + [anon_sym_SLASH] = ACTIONS(7349), + [anon_sym_PERCENT] = ACTIONS(7351), + [anon_sym_PIPE_PIPE] = ACTIONS(7351), + [anon_sym_AMP_AMP] = ACTIONS(8113), + [anon_sym_PIPE] = ACTIONS(7349), + [anon_sym_CARET] = ACTIONS(7351), + [anon_sym_AMP] = ACTIONS(8115), + [anon_sym_EQ_EQ] = ACTIONS(7351), + [anon_sym_BANG_EQ] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7349), + [anon_sym_GT_EQ] = ACTIONS(7351), + [anon_sym_LT_EQ] = ACTIONS(7349), + [anon_sym_LT] = ACTIONS(7349), + [anon_sym_LT_LT] = ACTIONS(7351), + [anon_sym_GT_GT] = ACTIONS(7351), + [anon_sym_SEMI] = ACTIONS(7351), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym_COLON] = ACTIONS(7349), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7351), + [anon_sym_RBRACE] = ACTIONS(7351), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(7351), + [anon_sym_LT_EQ_GT] = ACTIONS(7351), + [anon_sym_or] = ACTIONS(7351), + [anon_sym_and] = ACTIONS(7351), + [anon_sym_bitor] = ACTIONS(7351), + [anon_sym_xor] = ACTIONS(7351), + [anon_sym_bitand] = ACTIONS(7351), + [anon_sym_not_eq] = ACTIONS(7351), + [anon_sym_DASH_DASH] = ACTIONS(7351), + [anon_sym_PLUS_PLUS] = ACTIONS(7351), + [anon_sym_DOT] = ACTIONS(7349), + [anon_sym_DOT_STAR] = ACTIONS(7351), + [anon_sym_DASH_GT] = ACTIONS(7351), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7351), + [anon_sym_override] = ACTIONS(7351), + [anon_sym_requires] = ACTIONS(7351), + [anon_sym_COLON_RBRACK] = ACTIONS(7351), }, - [STATE(3532)] = { - [sym_identifier] = ACTIONS(8939), - [anon_sym_LPAREN2] = ACTIONS(8941), - [anon_sym_TILDE] = ACTIONS(8941), - [anon_sym_STAR] = ACTIONS(8941), - [anon_sym_PIPE_PIPE] = ACTIONS(8941), - [anon_sym_AMP_AMP] = ACTIONS(8965), - [anon_sym_AMP] = ACTIONS(8939), - [anon_sym___extension__] = ACTIONS(8939), - [anon_sym_virtual] = ACTIONS(8939), - [anon_sym_extern] = ACTIONS(8939), - [anon_sym___attribute__] = ACTIONS(8939), - [anon_sym___attribute] = ACTIONS(8939), - [anon_sym_using] = ACTIONS(8939), - [anon_sym_COLON_COLON] = ACTIONS(8941), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8941), - [anon_sym___declspec] = ACTIONS(8939), - [anon_sym___based] = ACTIONS(8939), - [anon_sym___cdecl] = ACTIONS(8939), - [anon_sym___clrcall] = ACTIONS(8939), - [anon_sym___stdcall] = ACTIONS(8939), - [anon_sym___fastcall] = ACTIONS(8939), - [anon_sym___thiscall] = ACTIONS(8939), - [anon_sym___vectorcall] = ACTIONS(8939), - [anon_sym_signed] = ACTIONS(8939), - [anon_sym_unsigned] = ACTIONS(8939), - [anon_sym_long] = ACTIONS(8939), - [anon_sym_short] = ACTIONS(8939), - [anon_sym_LBRACK] = ACTIONS(8939), - [anon_sym_static] = ACTIONS(8939), - [anon_sym_register] = ACTIONS(8939), - [anon_sym_inline] = ACTIONS(8939), - [anon_sym___inline] = ACTIONS(8939), - [anon_sym___inline__] = ACTIONS(8939), - [anon_sym___forceinline] = ACTIONS(8939), - [anon_sym_thread_local] = ACTIONS(8939), - [anon_sym___thread] = ACTIONS(8939), - [anon_sym_const] = ACTIONS(8939), - [anon_sym_constexpr] = ACTIONS(8939), - [anon_sym_volatile] = ACTIONS(8939), - [anon_sym_restrict] = ACTIONS(8939), - [anon_sym___restrict__] = ACTIONS(8939), - [anon_sym__Atomic] = ACTIONS(8939), - [anon_sym__Noreturn] = ACTIONS(8939), - [anon_sym_noreturn] = ACTIONS(8939), - [anon_sym__Nonnull] = ACTIONS(8939), - [anon_sym_mutable] = ACTIONS(8939), - [anon_sym_constinit] = ACTIONS(8939), - [anon_sym_consteval] = ACTIONS(8939), - [anon_sym_alignas] = ACTIONS(8939), - [anon_sym__Alignas] = ACTIONS(8939), - [sym_primitive_type] = ACTIONS(8939), - [anon_sym_enum] = ACTIONS(8939), - [anon_sym_class] = ACTIONS(8939), - [anon_sym_struct] = ACTIONS(8939), - [anon_sym_union] = ACTIONS(8939), - [anon_sym_or] = ACTIONS(8939), - [anon_sym_and] = ACTIONS(8969), - [anon_sym_typename] = ACTIONS(8939), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8939), - [anon_sym_decltype] = ACTIONS(8939), - [anon_sym_explicit] = ACTIONS(8939), - [anon_sym_template] = ACTIONS(8939), - [anon_sym_operator] = ACTIONS(8939), - [anon_sym_friend] = ACTIONS(8939), - [anon_sym_concept] = ACTIONS(8939), - [anon_sym_LBRACK_COLON] = ACTIONS(8941), + [STATE(3084)] = { + [sym__abstract_declarator] = STATE(6161), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3011), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2069), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_RPAREN] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(8111), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7343), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(8113), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7343), + [anon_sym_AMP] = ACTIONS(8115), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7343), + [anon_sym_GT_GT] = ACTIONS(7343), + [anon_sym_SEMI] = ACTIONS(7343), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym_COLON] = ACTIONS(7341), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7343), + [anon_sym_RBRACE] = ACTIONS(7343), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7343), + [anon_sym_and] = ACTIONS(7343), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7343), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7343), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7343), + [anon_sym_override] = ACTIONS(7343), + [anon_sym_requires] = ACTIONS(7343), + [anon_sym_COLON_RBRACK] = ACTIONS(7343), }, - [STATE(3533)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2546), - [sym_identifier] = ACTIONS(6627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), - [anon_sym_COMMA] = ACTIONS(7081), - [anon_sym_RPAREN] = ACTIONS(7081), - [anon_sym_LPAREN2] = ACTIONS(7081), - [anon_sym_DASH] = ACTIONS(7084), - [anon_sym_PLUS] = ACTIONS(7084), - [anon_sym_STAR] = ACTIONS(7081), - [anon_sym_SLASH] = ACTIONS(7084), - [anon_sym_PERCENT] = ACTIONS(7081), - [anon_sym_PIPE_PIPE] = ACTIONS(7081), - [anon_sym_AMP_AMP] = ACTIONS(7081), - [anon_sym_PIPE] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7081), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_EQ_EQ] = ACTIONS(7081), - [anon_sym_BANG_EQ] = ACTIONS(7081), - [anon_sym_GT] = ACTIONS(7084), - [anon_sym_GT_EQ] = ACTIONS(7081), - [anon_sym_LT_EQ] = ACTIONS(7084), - [anon_sym_LT] = ACTIONS(7084), - [anon_sym_LT_LT] = ACTIONS(7081), - [anon_sym_GT_GT] = ACTIONS(7081), - [anon_sym_SEMI] = ACTIONS(7081), - [anon_sym___extension__] = ACTIONS(6627), - [anon_sym___attribute__] = ACTIONS(7084), - [anon_sym___attribute] = ACTIONS(7084), - [anon_sym_COLON] = ACTIONS(7084), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7081), - [anon_sym_LBRACE] = ACTIONS(7081), - [anon_sym_RBRACE] = ACTIONS(7081), - [anon_sym_signed] = ACTIONS(8205), - [anon_sym_unsigned] = ACTIONS(8205), - [anon_sym_long] = ACTIONS(8205), - [anon_sym_short] = ACTIONS(8205), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_const] = ACTIONS(6627), - [anon_sym_constexpr] = ACTIONS(6627), - [anon_sym_volatile] = ACTIONS(6627), - [anon_sym_restrict] = ACTIONS(6627), - [anon_sym___restrict__] = ACTIONS(6627), - [anon_sym__Atomic] = ACTIONS(6627), - [anon_sym__Noreturn] = ACTIONS(6627), - [anon_sym_noreturn] = ACTIONS(6627), - [anon_sym__Nonnull] = ACTIONS(6627), - [anon_sym_mutable] = ACTIONS(6627), - [anon_sym_constinit] = ACTIONS(6627), - [anon_sym_consteval] = ACTIONS(6627), - [anon_sym_alignas] = ACTIONS(6627), - [anon_sym__Alignas] = ACTIONS(6627), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(7081), - [anon_sym_LT_EQ_GT] = ACTIONS(7081), - [anon_sym_or] = ACTIONS(7084), - [anon_sym_and] = ACTIONS(7084), - [anon_sym_bitor] = ACTIONS(7084), - [anon_sym_xor] = ACTIONS(7084), - [anon_sym_bitand] = ACTIONS(7084), - [anon_sym_not_eq] = ACTIONS(7084), - [anon_sym_DASH_DASH] = ACTIONS(7081), - [anon_sym_PLUS_PLUS] = ACTIONS(7081), - [anon_sym_DOT] = ACTIONS(7084), - [anon_sym_DOT_STAR] = ACTIONS(7081), - [anon_sym_DASH_GT] = ACTIONS(7081), + [STATE(3085)] = { + [sym_identifier] = ACTIONS(8992), + [anon_sym_LPAREN2] = ACTIONS(8994), + [anon_sym_TILDE] = ACTIONS(8994), + [anon_sym_STAR] = ACTIONS(8994), + [anon_sym_PIPE_PIPE] = ACTIONS(8994), + [anon_sym_AMP_AMP] = ACTIONS(8994), + [anon_sym_AMP] = ACTIONS(8992), + [anon_sym___extension__] = ACTIONS(8992), + [anon_sym_virtual] = ACTIONS(8992), + [anon_sym_extern] = ACTIONS(8992), + [anon_sym___attribute__] = ACTIONS(8992), + [anon_sym___attribute] = ACTIONS(8992), + [anon_sym_using] = ACTIONS(8992), + [anon_sym_COLON_COLON] = ACTIONS(8994), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8994), + [anon_sym___declspec] = ACTIONS(8992), + [anon_sym___based] = ACTIONS(8992), + [anon_sym___cdecl] = ACTIONS(8992), + [anon_sym___clrcall] = ACTIONS(8992), + [anon_sym___stdcall] = ACTIONS(8992), + [anon_sym___fastcall] = ACTIONS(8992), + [anon_sym___thiscall] = ACTIONS(8992), + [anon_sym___vectorcall] = ACTIONS(8992), + [anon_sym_LBRACE] = ACTIONS(8994), + [anon_sym_signed] = ACTIONS(8992), + [anon_sym_unsigned] = ACTIONS(8992), + [anon_sym_long] = ACTIONS(8992), + [anon_sym_short] = ACTIONS(8992), + [anon_sym_LBRACK] = ACTIONS(8992), + [anon_sym_static] = ACTIONS(8992), + [anon_sym_register] = ACTIONS(8992), + [anon_sym_inline] = ACTIONS(8992), + [anon_sym___inline] = ACTIONS(8992), + [anon_sym___inline__] = ACTIONS(8992), + [anon_sym___forceinline] = ACTIONS(8992), + [anon_sym_thread_local] = ACTIONS(8992), + [anon_sym___thread] = ACTIONS(8992), + [anon_sym_const] = ACTIONS(8992), + [anon_sym_constexpr] = ACTIONS(8992), + [anon_sym_volatile] = ACTIONS(8992), + [anon_sym_restrict] = ACTIONS(8992), + [anon_sym___restrict__] = ACTIONS(8992), + [anon_sym__Atomic] = ACTIONS(8992), + [anon_sym__Noreturn] = ACTIONS(8992), + [anon_sym_noreturn] = ACTIONS(8992), + [anon_sym__Nonnull] = ACTIONS(8992), + [anon_sym_mutable] = ACTIONS(8992), + [anon_sym_constinit] = ACTIONS(8992), + [anon_sym_consteval] = ACTIONS(8992), + [anon_sym_alignas] = ACTIONS(8992), + [anon_sym__Alignas] = ACTIONS(8992), + [sym_primitive_type] = ACTIONS(8992), + [anon_sym_enum] = ACTIONS(8992), + [anon_sym_class] = ACTIONS(8992), + [anon_sym_struct] = ACTIONS(8992), + [anon_sym_union] = ACTIONS(8992), + [anon_sym_or] = ACTIONS(8992), + [anon_sym_and] = ACTIONS(8992), + [anon_sym_typename] = ACTIONS(8992), + [anon_sym_DASH_GT] = ACTIONS(8994), [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7081), + [sym_auto] = ACTIONS(8992), + [anon_sym_decltype] = ACTIONS(8992), + [anon_sym_explicit] = ACTIONS(8992), + [anon_sym_template] = ACTIONS(8992), + [anon_sym_operator] = ACTIONS(8992), + [anon_sym_friend] = ACTIONS(8992), + [anon_sym_noexcept] = ACTIONS(8992), + [anon_sym_throw] = ACTIONS(8992), + [anon_sym_concept] = ACTIONS(8992), + [anon_sym_LBRACK_COLON] = ACTIONS(8994), }, - [STATE(3534)] = { - [sym_attribute_specifier] = STATE(3082), - [sym_field_declaration_list] = STATE(3743), - [sym_virtual_specifier] = STATE(9325), - [sym_base_class_clause] = STATE(10195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6828), - [anon_sym_COMMA] = ACTIONS(6828), - [anon_sym_RPAREN] = ACTIONS(6828), - [anon_sym_LPAREN2] = ACTIONS(6828), - [anon_sym_DASH] = ACTIONS(6826), - [anon_sym_PLUS] = ACTIONS(6826), - [anon_sym_STAR] = ACTIONS(6828), - [anon_sym_SLASH] = ACTIONS(6826), - [anon_sym_PERCENT] = ACTIONS(6828), - [anon_sym_PIPE_PIPE] = ACTIONS(6828), - [anon_sym_AMP_AMP] = ACTIONS(6828), - [anon_sym_PIPE] = ACTIONS(6826), - [anon_sym_CARET] = ACTIONS(6828), - [anon_sym_AMP] = ACTIONS(6826), - [anon_sym_EQ_EQ] = ACTIONS(6828), - [anon_sym_BANG_EQ] = ACTIONS(6828), - [anon_sym_GT] = ACTIONS(6826), - [anon_sym_GT_EQ] = ACTIONS(6828), - [anon_sym_LT_EQ] = ACTIONS(6826), - [anon_sym_LT] = ACTIONS(6826), - [anon_sym_LT_LT] = ACTIONS(6828), - [anon_sym_GT_GT] = ACTIONS(6828), - [anon_sym_SEMI] = ACTIONS(6828), - [anon_sym___extension__] = ACTIONS(6828), - [anon_sym___attribute__] = ACTIONS(9025), - [anon_sym___attribute] = ACTIONS(8907), - [anon_sym_COLON] = ACTIONS(6832), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6828), - [anon_sym_LBRACE] = ACTIONS(9027), - [anon_sym_RBRACE] = ACTIONS(6828), - [anon_sym_LBRACK] = ACTIONS(6828), - [anon_sym_const] = ACTIONS(6826), - [anon_sym_constexpr] = ACTIONS(6828), - [anon_sym_volatile] = ACTIONS(6828), - [anon_sym_restrict] = ACTIONS(6828), - [anon_sym___restrict__] = ACTIONS(6828), - [anon_sym__Atomic] = ACTIONS(6828), - [anon_sym__Noreturn] = ACTIONS(6828), - [anon_sym_noreturn] = ACTIONS(6828), - [anon_sym__Nonnull] = ACTIONS(6828), - [anon_sym_mutable] = ACTIONS(6828), - [anon_sym_constinit] = ACTIONS(6828), - [anon_sym_consteval] = ACTIONS(6828), - [anon_sym_alignas] = ACTIONS(6828), - [anon_sym__Alignas] = ACTIONS(6828), - [anon_sym_QMARK] = ACTIONS(6828), - [anon_sym_LT_EQ_GT] = ACTIONS(6828), - [anon_sym_or] = ACTIONS(6828), - [anon_sym_and] = ACTIONS(6828), - [anon_sym_bitor] = ACTIONS(6828), - [anon_sym_xor] = ACTIONS(6828), - [anon_sym_bitand] = ACTIONS(6828), - [anon_sym_not_eq] = ACTIONS(6828), - [anon_sym_DASH_DASH] = ACTIONS(6828), - [anon_sym_PLUS_PLUS] = ACTIONS(6828), - [anon_sym_DOT] = ACTIONS(6826), - [anon_sym_DOT_STAR] = ACTIONS(6828), - [anon_sym_DASH_GT] = ACTIONS(6828), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7821), - [anon_sym_override] = ACTIONS(7821), - [anon_sym_requires] = ACTIONS(6828), - [anon_sym_COLON_RBRACK] = ACTIONS(6828), + [STATE(3086)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), + [anon_sym_COMMA] = ACTIONS(7563), + [anon_sym_LPAREN2] = ACTIONS(7563), + [anon_sym_DASH] = ACTIONS(7561), + [anon_sym_PLUS] = ACTIONS(7561), + [anon_sym_STAR] = ACTIONS(7561), + [anon_sym_SLASH] = ACTIONS(7561), + [anon_sym_PERCENT] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_AMP_AMP] = ACTIONS(7563), + [anon_sym_PIPE] = ACTIONS(7561), + [anon_sym_CARET] = ACTIONS(7561), + [anon_sym_AMP] = ACTIONS(7561), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_GT] = ACTIONS(7561), + [anon_sym_GT_EQ] = ACTIONS(7561), + [anon_sym_LT_EQ] = ACTIONS(7561), + [anon_sym_LT] = ACTIONS(7561), + [anon_sym_LT_LT] = ACTIONS(7561), + [anon_sym_GT_GT] = ACTIONS(7561), + [anon_sym___extension__] = ACTIONS(7563), + [anon_sym_LBRACE] = ACTIONS(7563), + [anon_sym_LBRACK] = ACTIONS(7563), + [anon_sym_EQ] = ACTIONS(7561), + [anon_sym_const] = ACTIONS(7561), + [anon_sym_constexpr] = ACTIONS(7563), + [anon_sym_volatile] = ACTIONS(7563), + [anon_sym_restrict] = ACTIONS(7563), + [anon_sym___restrict__] = ACTIONS(7563), + [anon_sym__Atomic] = ACTIONS(7563), + [anon_sym__Noreturn] = ACTIONS(7563), + [anon_sym_noreturn] = ACTIONS(7563), + [anon_sym__Nonnull] = ACTIONS(7563), + [anon_sym_mutable] = ACTIONS(7563), + [anon_sym_constinit] = ACTIONS(7563), + [anon_sym_consteval] = ACTIONS(7563), + [anon_sym_alignas] = ACTIONS(7563), + [anon_sym__Alignas] = ACTIONS(7563), + [anon_sym_QMARK] = ACTIONS(7563), + [anon_sym_STAR_EQ] = ACTIONS(7563), + [anon_sym_SLASH_EQ] = ACTIONS(7563), + [anon_sym_PERCENT_EQ] = ACTIONS(7563), + [anon_sym_PLUS_EQ] = ACTIONS(7563), + [anon_sym_DASH_EQ] = ACTIONS(7563), + [anon_sym_LT_LT_EQ] = ACTIONS(7563), + [anon_sym_GT_GT_EQ] = ACTIONS(7561), + [anon_sym_AMP_EQ] = ACTIONS(7563), + [anon_sym_CARET_EQ] = ACTIONS(7563), + [anon_sym_PIPE_EQ] = ACTIONS(7563), + [anon_sym_and_eq] = ACTIONS(7563), + [anon_sym_or_eq] = ACTIONS(7563), + [anon_sym_xor_eq] = ACTIONS(7563), + [anon_sym_LT_EQ_GT] = ACTIONS(7563), + [anon_sym_or] = ACTIONS(7561), + [anon_sym_and] = ACTIONS(7561), + [anon_sym_bitor] = ACTIONS(7563), + [anon_sym_xor] = ACTIONS(7561), + [anon_sym_bitand] = ACTIONS(7563), + [anon_sym_not_eq] = ACTIONS(7563), + [anon_sym_DASH_DASH] = ACTIONS(7563), + [anon_sym_PLUS_PLUS] = ACTIONS(7563), + [anon_sym_DOT] = ACTIONS(7561), + [anon_sym_DOT_STAR] = ACTIONS(7563), + [anon_sym_DASH_GT] = ACTIONS(7563), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7563), + [anon_sym_override] = ACTIONS(7563), + [anon_sym_GT2] = ACTIONS(7563), + [anon_sym_requires] = ACTIONS(7563), }, - [STATE(3535)] = { - [sym_identifier] = ACTIONS(9029), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9031), - [anon_sym_COMMA] = ACTIONS(9031), - [anon_sym_RPAREN] = ACTIONS(9031), - [aux_sym_preproc_if_token2] = ACTIONS(9031), - [aux_sym_preproc_else_token1] = ACTIONS(9031), - [aux_sym_preproc_elif_token1] = ACTIONS(9029), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9031), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9031), - [anon_sym_LPAREN2] = ACTIONS(9031), - [anon_sym_DASH] = ACTIONS(9029), - [anon_sym_PLUS] = ACTIONS(9029), - [anon_sym_STAR] = ACTIONS(9029), - [anon_sym_SLASH] = ACTIONS(9029), - [anon_sym_PERCENT] = ACTIONS(9029), - [anon_sym_PIPE_PIPE] = ACTIONS(9031), - [anon_sym_AMP_AMP] = ACTIONS(9031), - [anon_sym_PIPE] = ACTIONS(9029), - [anon_sym_CARET] = ACTIONS(9029), - [anon_sym_AMP] = ACTIONS(9029), - [anon_sym_EQ_EQ] = ACTIONS(9031), - [anon_sym_BANG_EQ] = ACTIONS(9031), - [anon_sym_GT] = ACTIONS(9029), - [anon_sym_GT_EQ] = ACTIONS(9031), - [anon_sym_LT_EQ] = ACTIONS(9029), - [anon_sym_LT] = ACTIONS(9029), - [anon_sym_LT_LT] = ACTIONS(9029), - [anon_sym_GT_GT] = ACTIONS(9029), - [anon_sym_SEMI] = ACTIONS(9031), - [anon_sym___attribute__] = ACTIONS(9029), - [anon_sym___attribute] = ACTIONS(9029), - [anon_sym_COLON] = ACTIONS(9029), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9031), - [anon_sym_RBRACE] = ACTIONS(9031), - [anon_sym_LBRACK] = ACTIONS(9031), - [anon_sym_EQ] = ACTIONS(9029), - [anon_sym_QMARK] = ACTIONS(9031), - [anon_sym_STAR_EQ] = ACTIONS(9031), - [anon_sym_SLASH_EQ] = ACTIONS(9031), - [anon_sym_PERCENT_EQ] = ACTIONS(9031), - [anon_sym_PLUS_EQ] = ACTIONS(9031), - [anon_sym_DASH_EQ] = ACTIONS(9031), - [anon_sym_LT_LT_EQ] = ACTIONS(9031), - [anon_sym_GT_GT_EQ] = ACTIONS(9031), - [anon_sym_AMP_EQ] = ACTIONS(9031), - [anon_sym_CARET_EQ] = ACTIONS(9031), - [anon_sym_PIPE_EQ] = ACTIONS(9031), - [anon_sym_and_eq] = ACTIONS(9029), - [anon_sym_or_eq] = ACTIONS(9029), - [anon_sym_xor_eq] = ACTIONS(9029), - [anon_sym_LT_EQ_GT] = ACTIONS(9031), - [anon_sym_or] = ACTIONS(9029), - [anon_sym_and] = ACTIONS(9029), - [anon_sym_bitor] = ACTIONS(9029), - [anon_sym_xor] = ACTIONS(9029), - [anon_sym_bitand] = ACTIONS(9029), - [anon_sym_not_eq] = ACTIONS(9029), - [anon_sym_DASH_DASH] = ACTIONS(9031), - [anon_sym_PLUS_PLUS] = ACTIONS(9031), - [anon_sym_DOT] = ACTIONS(9029), - [anon_sym_DOT_STAR] = ACTIONS(9031), - [anon_sym_DASH_GT] = ACTIONS(9031), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9029), - [anon_sym_override] = ACTIONS(9029), - [anon_sym_requires] = ACTIONS(9029), - [anon_sym_COLON_RBRACK] = ACTIONS(9031), + [STATE(3087)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7777), + [anon_sym_COMMA] = ACTIONS(7777), + [anon_sym_LPAREN2] = ACTIONS(7777), + [anon_sym_DASH] = ACTIONS(7775), + [anon_sym_PLUS] = ACTIONS(7775), + [anon_sym_STAR] = ACTIONS(7775), + [anon_sym_SLASH] = ACTIONS(7775), + [anon_sym_PERCENT] = ACTIONS(7775), + [anon_sym_PIPE_PIPE] = ACTIONS(7777), + [anon_sym_AMP_AMP] = ACTIONS(7777), + [anon_sym_PIPE] = ACTIONS(7775), + [anon_sym_CARET] = ACTIONS(7775), + [anon_sym_AMP] = ACTIONS(7775), + [anon_sym_EQ_EQ] = ACTIONS(7777), + [anon_sym_BANG_EQ] = ACTIONS(7777), + [anon_sym_GT] = ACTIONS(7775), + [anon_sym_GT_EQ] = ACTIONS(7777), + [anon_sym_LT_EQ] = ACTIONS(7775), + [anon_sym_LT] = ACTIONS(7775), + [anon_sym_LT_LT] = ACTIONS(7775), + [anon_sym_GT_GT] = ACTIONS(7775), + [anon_sym___extension__] = ACTIONS(7777), + [anon_sym_LBRACE] = ACTIONS(7777), + [anon_sym_LBRACK] = ACTIONS(7777), + [anon_sym_RBRACK] = ACTIONS(7777), + [anon_sym_EQ] = ACTIONS(7775), + [anon_sym_const] = ACTIONS(7775), + [anon_sym_constexpr] = ACTIONS(7777), + [anon_sym_volatile] = ACTIONS(7777), + [anon_sym_restrict] = ACTIONS(7777), + [anon_sym___restrict__] = ACTIONS(7777), + [anon_sym__Atomic] = ACTIONS(7777), + [anon_sym__Noreturn] = ACTIONS(7777), + [anon_sym_noreturn] = ACTIONS(7777), + [anon_sym__Nonnull] = ACTIONS(7777), + [anon_sym_mutable] = ACTIONS(7777), + [anon_sym_constinit] = ACTIONS(7777), + [anon_sym_consteval] = ACTIONS(7777), + [anon_sym_alignas] = ACTIONS(7777), + [anon_sym__Alignas] = ACTIONS(7777), + [anon_sym_QMARK] = ACTIONS(7777), + [anon_sym_STAR_EQ] = ACTIONS(7777), + [anon_sym_SLASH_EQ] = ACTIONS(7777), + [anon_sym_PERCENT_EQ] = ACTIONS(7777), + [anon_sym_PLUS_EQ] = ACTIONS(7777), + [anon_sym_DASH_EQ] = ACTIONS(7777), + [anon_sym_LT_LT_EQ] = ACTIONS(7777), + [anon_sym_GT_GT_EQ] = ACTIONS(7777), + [anon_sym_AMP_EQ] = ACTIONS(7777), + [anon_sym_CARET_EQ] = ACTIONS(7777), + [anon_sym_PIPE_EQ] = ACTIONS(7777), + [anon_sym_and_eq] = ACTIONS(7777), + [anon_sym_or_eq] = ACTIONS(7777), + [anon_sym_xor_eq] = ACTIONS(7777), + [anon_sym_LT_EQ_GT] = ACTIONS(7777), + [anon_sym_or] = ACTIONS(7775), + [anon_sym_and] = ACTIONS(7775), + [anon_sym_bitor] = ACTIONS(7777), + [anon_sym_xor] = ACTIONS(7775), + [anon_sym_bitand] = ACTIONS(7777), + [anon_sym_not_eq] = ACTIONS(7777), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(7775), + [anon_sym_DOT_STAR] = ACTIONS(7777), + [anon_sym_DASH_GT] = ACTIONS(7777), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7777), + [anon_sym_override] = ACTIONS(7777), + [anon_sym_requires] = ACTIONS(7777), }, - [STATE(3536)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(8402), - [anon_sym_COMMA] = ACTIONS(8402), - [anon_sym_RPAREN] = ACTIONS(8402), - [anon_sym_LPAREN2] = ACTIONS(8402), - [anon_sym_DASH] = ACTIONS(8400), - [anon_sym_PLUS] = ACTIONS(8400), - [anon_sym_STAR] = ACTIONS(8400), - [anon_sym_SLASH] = ACTIONS(8400), - [anon_sym_PERCENT] = ACTIONS(8400), - [anon_sym_PIPE_PIPE] = ACTIONS(8402), - [anon_sym_AMP_AMP] = ACTIONS(8402), - [anon_sym_PIPE] = ACTIONS(8400), - [anon_sym_CARET] = ACTIONS(8400), - [anon_sym_AMP] = ACTIONS(8400), - [anon_sym_EQ_EQ] = ACTIONS(8402), - [anon_sym_BANG_EQ] = ACTIONS(8402), - [anon_sym_GT] = ACTIONS(8400), - [anon_sym_GT_EQ] = ACTIONS(8402), - [anon_sym_LT_EQ] = ACTIONS(8400), - [anon_sym_LT] = ACTIONS(8400), - [anon_sym_LT_LT] = ACTIONS(8400), - [anon_sym_GT_GT] = ACTIONS(8400), - [anon_sym_SEMI] = ACTIONS(8402), - [anon_sym_COLON] = ACTIONS(8400), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8402), - [anon_sym_RBRACE] = ACTIONS(8402), - [anon_sym_LBRACK] = ACTIONS(8402), - [anon_sym_EQ] = ACTIONS(8400), - [anon_sym_QMARK] = ACTIONS(8402), - [anon_sym_STAR_EQ] = ACTIONS(8402), - [anon_sym_SLASH_EQ] = ACTIONS(8402), - [anon_sym_PERCENT_EQ] = ACTIONS(8402), - [anon_sym_PLUS_EQ] = ACTIONS(8402), - [anon_sym_DASH_EQ] = ACTIONS(8402), - [anon_sym_LT_LT_EQ] = ACTIONS(8402), - [anon_sym_GT_GT_EQ] = ACTIONS(8402), - [anon_sym_AMP_EQ] = ACTIONS(8402), - [anon_sym_CARET_EQ] = ACTIONS(8402), - [anon_sym_PIPE_EQ] = ACTIONS(8402), - [anon_sym_and_eq] = ACTIONS(8400), - [anon_sym_or_eq] = ACTIONS(8400), - [anon_sym_xor_eq] = ACTIONS(8400), - [anon_sym_LT_EQ_GT] = ACTIONS(8402), - [anon_sym_or] = ACTIONS(8400), - [anon_sym_and] = ACTIONS(8400), - [anon_sym_bitor] = ACTIONS(8400), - [anon_sym_xor] = ACTIONS(8400), - [anon_sym_bitand] = ACTIONS(8400), - [anon_sym_not_eq] = ACTIONS(8400), - [anon_sym_DASH_DASH] = ACTIONS(8402), - [anon_sym_PLUS_PLUS] = ACTIONS(8402), - [anon_sym_DOT] = ACTIONS(8400), - [anon_sym_DOT_STAR] = ACTIONS(8402), - [anon_sym_DASH_GT] = ACTIONS(8402), - [anon_sym_L_DQUOTE] = ACTIONS(8402), - [anon_sym_u_DQUOTE] = ACTIONS(8402), - [anon_sym_U_DQUOTE] = ACTIONS(8402), - [anon_sym_u8_DQUOTE] = ACTIONS(8402), - [anon_sym_DQUOTE] = ACTIONS(8402), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8402), - [anon_sym_LR_DQUOTE] = ACTIONS(8402), - [anon_sym_uR_DQUOTE] = ACTIONS(8402), - [anon_sym_UR_DQUOTE] = ACTIONS(8402), - [anon_sym_u8R_DQUOTE] = ACTIONS(8402), - [anon_sym_COLON_RBRACK] = ACTIONS(8402), - [sym_literal_suffix] = ACTIONS(8400), + [STATE(3088)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7769), + [anon_sym_COMMA] = ACTIONS(7769), + [anon_sym_LPAREN2] = ACTIONS(7769), + [anon_sym_DASH] = ACTIONS(7767), + [anon_sym_PLUS] = ACTIONS(7767), + [anon_sym_STAR] = ACTIONS(7767), + [anon_sym_SLASH] = ACTIONS(7767), + [anon_sym_PERCENT] = ACTIONS(7767), + [anon_sym_PIPE_PIPE] = ACTIONS(7769), + [anon_sym_AMP_AMP] = ACTIONS(7769), + [anon_sym_PIPE] = ACTIONS(7767), + [anon_sym_CARET] = ACTIONS(7767), + [anon_sym_AMP] = ACTIONS(7767), + [anon_sym_EQ_EQ] = ACTIONS(7769), + [anon_sym_BANG_EQ] = ACTIONS(7769), + [anon_sym_GT] = ACTIONS(7767), + [anon_sym_GT_EQ] = ACTIONS(7767), + [anon_sym_LT_EQ] = ACTIONS(7767), + [anon_sym_LT] = ACTIONS(7767), + [anon_sym_LT_LT] = ACTIONS(7767), + [anon_sym_GT_GT] = ACTIONS(7767), + [anon_sym___extension__] = ACTIONS(7769), + [anon_sym_LBRACE] = ACTIONS(7769), + [anon_sym_LBRACK] = ACTIONS(7769), + [anon_sym_EQ] = ACTIONS(7767), + [anon_sym_const] = ACTIONS(7767), + [anon_sym_constexpr] = ACTIONS(7769), + [anon_sym_volatile] = ACTIONS(7769), + [anon_sym_restrict] = ACTIONS(7769), + [anon_sym___restrict__] = ACTIONS(7769), + [anon_sym__Atomic] = ACTIONS(7769), + [anon_sym__Noreturn] = ACTIONS(7769), + [anon_sym_noreturn] = ACTIONS(7769), + [anon_sym__Nonnull] = ACTIONS(7769), + [anon_sym_mutable] = ACTIONS(7769), + [anon_sym_constinit] = ACTIONS(7769), + [anon_sym_consteval] = ACTIONS(7769), + [anon_sym_alignas] = ACTIONS(7769), + [anon_sym__Alignas] = ACTIONS(7769), + [anon_sym_QMARK] = ACTIONS(7769), + [anon_sym_STAR_EQ] = ACTIONS(7769), + [anon_sym_SLASH_EQ] = ACTIONS(7769), + [anon_sym_PERCENT_EQ] = ACTIONS(7769), + [anon_sym_PLUS_EQ] = ACTIONS(7769), + [anon_sym_DASH_EQ] = ACTIONS(7769), + [anon_sym_LT_LT_EQ] = ACTIONS(7769), + [anon_sym_GT_GT_EQ] = ACTIONS(7767), + [anon_sym_AMP_EQ] = ACTIONS(7769), + [anon_sym_CARET_EQ] = ACTIONS(7769), + [anon_sym_PIPE_EQ] = ACTIONS(7769), + [anon_sym_and_eq] = ACTIONS(7769), + [anon_sym_or_eq] = ACTIONS(7769), + [anon_sym_xor_eq] = ACTIONS(7769), + [anon_sym_LT_EQ_GT] = ACTIONS(7769), + [anon_sym_or] = ACTIONS(7767), + [anon_sym_and] = ACTIONS(7767), + [anon_sym_bitor] = ACTIONS(7769), + [anon_sym_xor] = ACTIONS(7767), + [anon_sym_bitand] = ACTIONS(7769), + [anon_sym_not_eq] = ACTIONS(7769), + [anon_sym_DASH_DASH] = ACTIONS(7769), + [anon_sym_PLUS_PLUS] = ACTIONS(7769), + [anon_sym_DOT] = ACTIONS(7767), + [anon_sym_DOT_STAR] = ACTIONS(7769), + [anon_sym_DASH_GT] = ACTIONS(7769), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7769), + [anon_sym_override] = ACTIONS(7769), + [anon_sym_GT2] = ACTIONS(7769), + [anon_sym_requires] = ACTIONS(7769), }, - [STATE(3537)] = { - [sym_string_literal] = STATE(3557), - [sym_template_argument_list] = STATE(5009), - [sym_raw_string_literal] = STATE(3557), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_RPAREN] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(6610), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(5260), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5253), - [anon_sym_SLASH_EQ] = ACTIONS(5253), - [anon_sym_PERCENT_EQ] = ACTIONS(5253), - [anon_sym_PLUS_EQ] = ACTIONS(5253), - [anon_sym_DASH_EQ] = ACTIONS(5253), - [anon_sym_LT_LT_EQ] = ACTIONS(5253), - [anon_sym_GT_GT_EQ] = ACTIONS(5253), - [anon_sym_AMP_EQ] = ACTIONS(5253), - [anon_sym_CARET_EQ] = ACTIONS(5253), - [anon_sym_PIPE_EQ] = ACTIONS(5253), - [anon_sym_and_eq] = ACTIONS(5253), - [anon_sym_or_eq] = ACTIONS(5253), - [anon_sym_xor_eq] = ACTIONS(5253), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5260), - [anon_sym_L_DQUOTE] = ACTIONS(6517), - [anon_sym_u_DQUOTE] = ACTIONS(6517), - [anon_sym_U_DQUOTE] = ACTIONS(6517), - [anon_sym_u8_DQUOTE] = ACTIONS(6517), - [anon_sym_DQUOTE] = ACTIONS(6517), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6519), - [anon_sym_LR_DQUOTE] = ACTIONS(6519), - [anon_sym_uR_DQUOTE] = ACTIONS(6519), - [anon_sym_UR_DQUOTE] = ACTIONS(6519), - [anon_sym_u8R_DQUOTE] = ACTIONS(6519), - [anon_sym_DASH_GT_STAR] = ACTIONS(5253), + [STATE(3089)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7761), + [anon_sym_COMMA] = ACTIONS(7761), + [anon_sym_LPAREN2] = ACTIONS(7761), + [anon_sym_DASH] = ACTIONS(7759), + [anon_sym_PLUS] = ACTIONS(7759), + [anon_sym_STAR] = ACTIONS(7759), + [anon_sym_SLASH] = ACTIONS(7759), + [anon_sym_PERCENT] = ACTIONS(7759), + [anon_sym_PIPE_PIPE] = ACTIONS(7761), + [anon_sym_AMP_AMP] = ACTIONS(7761), + [anon_sym_PIPE] = ACTIONS(7759), + [anon_sym_CARET] = ACTIONS(7759), + [anon_sym_AMP] = ACTIONS(7759), + [anon_sym_EQ_EQ] = ACTIONS(7761), + [anon_sym_BANG_EQ] = ACTIONS(7761), + [anon_sym_GT] = ACTIONS(7759), + [anon_sym_GT_EQ] = ACTIONS(7759), + [anon_sym_LT_EQ] = ACTIONS(7759), + [anon_sym_LT] = ACTIONS(7759), + [anon_sym_LT_LT] = ACTIONS(7759), + [anon_sym_GT_GT] = ACTIONS(7759), + [anon_sym___extension__] = ACTIONS(7761), + [anon_sym_LBRACE] = ACTIONS(7761), + [anon_sym_LBRACK] = ACTIONS(7761), + [anon_sym_EQ] = ACTIONS(7759), + [anon_sym_const] = ACTIONS(7759), + [anon_sym_constexpr] = ACTIONS(7761), + [anon_sym_volatile] = ACTIONS(7761), + [anon_sym_restrict] = ACTIONS(7761), + [anon_sym___restrict__] = ACTIONS(7761), + [anon_sym__Atomic] = ACTIONS(7761), + [anon_sym__Noreturn] = ACTIONS(7761), + [anon_sym_noreturn] = ACTIONS(7761), + [anon_sym__Nonnull] = ACTIONS(7761), + [anon_sym_mutable] = ACTIONS(7761), + [anon_sym_constinit] = ACTIONS(7761), + [anon_sym_consteval] = ACTIONS(7761), + [anon_sym_alignas] = ACTIONS(7761), + [anon_sym__Alignas] = ACTIONS(7761), + [anon_sym_QMARK] = ACTIONS(7761), + [anon_sym_STAR_EQ] = ACTIONS(7761), + [anon_sym_SLASH_EQ] = ACTIONS(7761), + [anon_sym_PERCENT_EQ] = ACTIONS(7761), + [anon_sym_PLUS_EQ] = ACTIONS(7761), + [anon_sym_DASH_EQ] = ACTIONS(7761), + [anon_sym_LT_LT_EQ] = ACTIONS(7761), + [anon_sym_GT_GT_EQ] = ACTIONS(7759), + [anon_sym_AMP_EQ] = ACTIONS(7761), + [anon_sym_CARET_EQ] = ACTIONS(7761), + [anon_sym_PIPE_EQ] = ACTIONS(7761), + [anon_sym_and_eq] = ACTIONS(7761), + [anon_sym_or_eq] = ACTIONS(7761), + [anon_sym_xor_eq] = ACTIONS(7761), + [anon_sym_LT_EQ_GT] = ACTIONS(7761), + [anon_sym_or] = ACTIONS(7759), + [anon_sym_and] = ACTIONS(7759), + [anon_sym_bitor] = ACTIONS(7761), + [anon_sym_xor] = ACTIONS(7759), + [anon_sym_bitand] = ACTIONS(7761), + [anon_sym_not_eq] = ACTIONS(7761), + [anon_sym_DASH_DASH] = ACTIONS(7761), + [anon_sym_PLUS_PLUS] = ACTIONS(7761), + [anon_sym_DOT] = ACTIONS(7759), + [anon_sym_DOT_STAR] = ACTIONS(7761), + [anon_sym_DASH_GT] = ACTIONS(7761), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7761), + [anon_sym_override] = ACTIONS(7761), + [anon_sym_GT2] = ACTIONS(7761), + [anon_sym_requires] = ACTIONS(7761), }, - [STATE(3538)] = { - [sym_template_argument_list] = STATE(2840), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), - [anon_sym_COMMA] = ACTIONS(6748), - [anon_sym_RPAREN] = ACTIONS(6748), - [anon_sym_LPAREN2] = ACTIONS(6748), - [anon_sym_DASH] = ACTIONS(6755), - [anon_sym_PLUS] = ACTIONS(6755), - [anon_sym_STAR] = ACTIONS(6755), - [anon_sym_SLASH] = ACTIONS(6755), - [anon_sym_PERCENT] = ACTIONS(6755), - [anon_sym_PIPE_PIPE] = ACTIONS(6748), - [anon_sym_AMP_AMP] = ACTIONS(6748), - [anon_sym_PIPE] = ACTIONS(6755), - [anon_sym_CARET] = ACTIONS(6755), - [anon_sym_AMP] = ACTIONS(6755), - [anon_sym_EQ_EQ] = ACTIONS(6748), - [anon_sym_BANG_EQ] = ACTIONS(6748), - [anon_sym_GT] = ACTIONS(6755), - [anon_sym_GT_EQ] = ACTIONS(6748), - [anon_sym_LT_EQ] = ACTIONS(6755), - [anon_sym_LT] = ACTIONS(7854), - [anon_sym_LT_LT] = ACTIONS(6755), - [anon_sym_GT_GT] = ACTIONS(6755), - [anon_sym___extension__] = ACTIONS(6751), - [anon_sym_COLON_COLON] = ACTIONS(6748), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_LBRACK] = ACTIONS(6748), - [anon_sym_EQ] = ACTIONS(6755), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6751), - [anon_sym_volatile] = ACTIONS(6751), - [anon_sym_restrict] = ACTIONS(6751), - [anon_sym___restrict__] = ACTIONS(6751), - [anon_sym__Atomic] = ACTIONS(6751), - [anon_sym__Noreturn] = ACTIONS(6751), - [anon_sym_noreturn] = ACTIONS(6751), - [anon_sym__Nonnull] = ACTIONS(6751), - [anon_sym_mutable] = ACTIONS(6751), - [anon_sym_constinit] = ACTIONS(6751), - [anon_sym_consteval] = ACTIONS(6751), - [anon_sym_alignas] = ACTIONS(6751), - [anon_sym__Alignas] = ACTIONS(6751), - [anon_sym_QMARK] = ACTIONS(6748), - [anon_sym_STAR_EQ] = ACTIONS(6748), - [anon_sym_SLASH_EQ] = ACTIONS(6748), - [anon_sym_PERCENT_EQ] = ACTIONS(6748), - [anon_sym_PLUS_EQ] = ACTIONS(6748), - [anon_sym_DASH_EQ] = ACTIONS(6748), - [anon_sym_LT_LT_EQ] = ACTIONS(6748), - [anon_sym_GT_GT_EQ] = ACTIONS(6748), - [anon_sym_AMP_EQ] = ACTIONS(6748), - [anon_sym_CARET_EQ] = ACTIONS(6748), - [anon_sym_PIPE_EQ] = ACTIONS(6748), - [anon_sym_LT_EQ_GT] = ACTIONS(6748), - [anon_sym_or] = ACTIONS(6748), - [anon_sym_and] = ACTIONS(6748), - [anon_sym_bitor] = ACTIONS(6748), - [anon_sym_xor] = ACTIONS(6748), - [anon_sym_bitand] = ACTIONS(6748), - [anon_sym_not_eq] = ACTIONS(6748), - [anon_sym_DASH_DASH] = ACTIONS(6748), - [anon_sym_PLUS_PLUS] = ACTIONS(6748), - [anon_sym_DOT] = ACTIONS(6755), - [anon_sym_DOT_STAR] = ACTIONS(6748), - [anon_sym_DASH_GT] = ACTIONS(6755), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6748), + [STATE(3090)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7765), + [anon_sym_COMMA] = ACTIONS(7765), + [anon_sym_LPAREN2] = ACTIONS(7765), + [anon_sym_DASH] = ACTIONS(7763), + [anon_sym_PLUS] = ACTIONS(7763), + [anon_sym_STAR] = ACTIONS(7763), + [anon_sym_SLASH] = ACTIONS(7763), + [anon_sym_PERCENT] = ACTIONS(7763), + [anon_sym_PIPE_PIPE] = ACTIONS(7765), + [anon_sym_AMP_AMP] = ACTIONS(7765), + [anon_sym_PIPE] = ACTIONS(7763), + [anon_sym_CARET] = ACTIONS(7763), + [anon_sym_AMP] = ACTIONS(7763), + [anon_sym_EQ_EQ] = ACTIONS(7765), + [anon_sym_BANG_EQ] = ACTIONS(7765), + [anon_sym_GT] = ACTIONS(7763), + [anon_sym_GT_EQ] = ACTIONS(7763), + [anon_sym_LT_EQ] = ACTIONS(7763), + [anon_sym_LT] = ACTIONS(7763), + [anon_sym_LT_LT] = ACTIONS(7763), + [anon_sym_GT_GT] = ACTIONS(7763), + [anon_sym___extension__] = ACTIONS(7765), + [anon_sym_LBRACE] = ACTIONS(7765), + [anon_sym_LBRACK] = ACTIONS(7765), + [anon_sym_EQ] = ACTIONS(7763), + [anon_sym_const] = ACTIONS(7763), + [anon_sym_constexpr] = ACTIONS(7765), + [anon_sym_volatile] = ACTIONS(7765), + [anon_sym_restrict] = ACTIONS(7765), + [anon_sym___restrict__] = ACTIONS(7765), + [anon_sym__Atomic] = ACTIONS(7765), + [anon_sym__Noreturn] = ACTIONS(7765), + [anon_sym_noreturn] = ACTIONS(7765), + [anon_sym__Nonnull] = ACTIONS(7765), + [anon_sym_mutable] = ACTIONS(7765), + [anon_sym_constinit] = ACTIONS(7765), + [anon_sym_consteval] = ACTIONS(7765), + [anon_sym_alignas] = ACTIONS(7765), + [anon_sym__Alignas] = ACTIONS(7765), + [anon_sym_QMARK] = ACTIONS(7765), + [anon_sym_STAR_EQ] = ACTIONS(7765), + [anon_sym_SLASH_EQ] = ACTIONS(7765), + [anon_sym_PERCENT_EQ] = ACTIONS(7765), + [anon_sym_PLUS_EQ] = ACTIONS(7765), + [anon_sym_DASH_EQ] = ACTIONS(7765), + [anon_sym_LT_LT_EQ] = ACTIONS(7765), + [anon_sym_GT_GT_EQ] = ACTIONS(7763), + [anon_sym_AMP_EQ] = ACTIONS(7765), + [anon_sym_CARET_EQ] = ACTIONS(7765), + [anon_sym_PIPE_EQ] = ACTIONS(7765), + [anon_sym_and_eq] = ACTIONS(7765), + [anon_sym_or_eq] = ACTIONS(7765), + [anon_sym_xor_eq] = ACTIONS(7765), + [anon_sym_LT_EQ_GT] = ACTIONS(7765), + [anon_sym_or] = ACTIONS(7763), + [anon_sym_and] = ACTIONS(7763), + [anon_sym_bitor] = ACTIONS(7765), + [anon_sym_xor] = ACTIONS(7763), + [anon_sym_bitand] = ACTIONS(7765), + [anon_sym_not_eq] = ACTIONS(7765), + [anon_sym_DASH_DASH] = ACTIONS(7765), + [anon_sym_PLUS_PLUS] = ACTIONS(7765), + [anon_sym_DOT] = ACTIONS(7763), + [anon_sym_DOT_STAR] = ACTIONS(7765), + [anon_sym_DASH_GT] = ACTIONS(7765), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7765), + [anon_sym_override] = ACTIONS(7765), + [anon_sym_GT2] = ACTIONS(7765), + [anon_sym_requires] = ACTIONS(7765), }, - [STATE(3539)] = { - [sym_identifier] = ACTIONS(6949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), - [anon_sym_COMMA] = ACTIONS(6951), - [aux_sym_preproc_if_token2] = ACTIONS(6951), - [aux_sym_preproc_else_token1] = ACTIONS(6951), - [aux_sym_preproc_elif_token1] = ACTIONS(6949), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6951), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6951), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_DASH] = ACTIONS(6949), - [anon_sym_PLUS] = ACTIONS(6949), - [anon_sym_STAR] = ACTIONS(6951), - [anon_sym_SLASH] = ACTIONS(6949), - [anon_sym_PERCENT] = ACTIONS(6951), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_PIPE] = ACTIONS(6949), - [anon_sym_CARET] = ACTIONS(6951), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym_EQ_EQ] = ACTIONS(6951), - [anon_sym_BANG_EQ] = ACTIONS(6951), - [anon_sym_GT] = ACTIONS(6949), - [anon_sym_GT_EQ] = ACTIONS(6951), - [anon_sym_LT_EQ] = ACTIONS(6949), - [anon_sym_LT] = ACTIONS(6949), - [anon_sym_LT_LT] = ACTIONS(6951), - [anon_sym_GT_GT] = ACTIONS(6951), - [anon_sym___extension__] = ACTIONS(6949), - [anon_sym___attribute__] = ACTIONS(6949), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_COLON] = ACTIONS(6951), - [anon_sym_LBRACE] = ACTIONS(6951), - [anon_sym_LBRACK] = ACTIONS(6951), - [anon_sym_RBRACK] = ACTIONS(6951), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6949), - [anon_sym_volatile] = ACTIONS(6949), - [anon_sym_restrict] = ACTIONS(6949), - [anon_sym___restrict__] = ACTIONS(6949), - [anon_sym__Atomic] = ACTIONS(6949), - [anon_sym__Noreturn] = ACTIONS(6949), - [anon_sym_noreturn] = ACTIONS(6949), - [anon_sym__Nonnull] = ACTIONS(6949), - [anon_sym_mutable] = ACTIONS(6949), - [anon_sym_constinit] = ACTIONS(6949), - [anon_sym_consteval] = ACTIONS(6949), - [anon_sym_alignas] = ACTIONS(6949), - [anon_sym__Alignas] = ACTIONS(6949), - [anon_sym_QMARK] = ACTIONS(6951), - [anon_sym_LT_EQ_GT] = ACTIONS(6951), - [anon_sym_or] = ACTIONS(6949), - [anon_sym_and] = ACTIONS(6949), - [anon_sym_bitor] = ACTIONS(6949), - [anon_sym_xor] = ACTIONS(6949), - [anon_sym_bitand] = ACTIONS(6949), - [anon_sym_not_eq] = ACTIONS(6949), - [anon_sym_DASH_DASH] = ACTIONS(6951), - [anon_sym_PLUS_PLUS] = ACTIONS(6951), - [anon_sym_DOT] = ACTIONS(6949), - [anon_sym_DOT_STAR] = ACTIONS(6951), - [anon_sym_DASH_GT] = ACTIONS(6951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6949), - [anon_sym_decltype] = ACTIONS(6949), - [anon_sym_final] = ACTIONS(6949), - [anon_sym_override] = ACTIONS(6949), - [anon_sym_requires] = ACTIONS(6949), + [STATE(3091)] = { + [sym_identifier] = ACTIONS(7755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7757), + [anon_sym_COMMA] = ACTIONS(7757), + [anon_sym_RPAREN] = ACTIONS(7757), + [anon_sym_LPAREN2] = ACTIONS(7757), + [anon_sym_DASH] = ACTIONS(7755), + [anon_sym_PLUS] = ACTIONS(7755), + [anon_sym_STAR] = ACTIONS(7757), + [anon_sym_SLASH] = ACTIONS(7755), + [anon_sym_PERCENT] = ACTIONS(7757), + [anon_sym_PIPE_PIPE] = ACTIONS(7757), + [anon_sym_AMP_AMP] = ACTIONS(7757), + [anon_sym_PIPE] = ACTIONS(7755), + [anon_sym_CARET] = ACTIONS(7757), + [anon_sym_AMP] = ACTIONS(7755), + [anon_sym_EQ_EQ] = ACTIONS(7757), + [anon_sym_BANG_EQ] = ACTIONS(7757), + [anon_sym_GT] = ACTIONS(7755), + [anon_sym_GT_EQ] = ACTIONS(7757), + [anon_sym_LT_EQ] = ACTIONS(7755), + [anon_sym_LT] = ACTIONS(7755), + [anon_sym_LT_LT] = ACTIONS(7757), + [anon_sym_GT_GT] = ACTIONS(7757), + [anon_sym_SEMI] = ACTIONS(7757), + [anon_sym___extension__] = ACTIONS(7755), + [anon_sym___attribute__] = ACTIONS(7755), + [anon_sym___attribute] = ACTIONS(7755), + [anon_sym_COLON] = ACTIONS(7755), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7757), + [anon_sym___based] = ACTIONS(7755), + [anon_sym_LBRACE] = ACTIONS(7757), + [anon_sym_RBRACE] = ACTIONS(7757), + [anon_sym_signed] = ACTIONS(7755), + [anon_sym_unsigned] = ACTIONS(7755), + [anon_sym_long] = ACTIONS(7755), + [anon_sym_short] = ACTIONS(7755), + [anon_sym_LBRACK] = ACTIONS(7757), + [anon_sym_const] = ACTIONS(7755), + [anon_sym_constexpr] = ACTIONS(7755), + [anon_sym_volatile] = ACTIONS(7755), + [anon_sym_restrict] = ACTIONS(7755), + [anon_sym___restrict__] = ACTIONS(7755), + [anon_sym__Atomic] = ACTIONS(7755), + [anon_sym__Noreturn] = ACTIONS(7755), + [anon_sym_noreturn] = ACTIONS(7755), + [anon_sym__Nonnull] = ACTIONS(7755), + [anon_sym_mutable] = ACTIONS(7755), + [anon_sym_constinit] = ACTIONS(7755), + [anon_sym_consteval] = ACTIONS(7755), + [anon_sym_alignas] = ACTIONS(7755), + [anon_sym__Alignas] = ACTIONS(7755), + [sym_primitive_type] = ACTIONS(7755), + [anon_sym_QMARK] = ACTIONS(7757), + [anon_sym_LT_EQ_GT] = ACTIONS(7757), + [anon_sym_or] = ACTIONS(7755), + [anon_sym_and] = ACTIONS(7755), + [anon_sym_bitor] = ACTIONS(7755), + [anon_sym_xor] = ACTIONS(7755), + [anon_sym_bitand] = ACTIONS(7755), + [anon_sym_not_eq] = ACTIONS(7755), + [anon_sym_DASH_DASH] = ACTIONS(7757), + [anon_sym_PLUS_PLUS] = ACTIONS(7757), + [anon_sym_DOT] = ACTIONS(7755), + [anon_sym_DOT_STAR] = ACTIONS(7757), + [anon_sym_DASH_GT] = ACTIONS(7757), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7755), + [anon_sym_override] = ACTIONS(7755), + [anon_sym_requires] = ACTIONS(7755), + [anon_sym_COLON_RBRACK] = ACTIONS(7757), }, - [STATE(3540)] = { - [sym_attribute_declaration] = STATE(3648), - [sym_parameter_list] = STATE(3121), - [aux_sym_attributed_declarator_repeat1] = STATE(3648), + [STATE(3092)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7737), + [anon_sym_COMMA] = ACTIONS(7737), + [anon_sym_RPAREN] = ACTIONS(7737), + [anon_sym_LPAREN2] = ACTIONS(7737), + [anon_sym_DASH] = ACTIONS(7735), + [anon_sym_PLUS] = ACTIONS(7735), + [anon_sym_STAR] = ACTIONS(7735), + [anon_sym_SLASH] = ACTIONS(7735), + [anon_sym_PERCENT] = ACTIONS(7735), + [anon_sym_PIPE_PIPE] = ACTIONS(7737), + [anon_sym_AMP_AMP] = ACTIONS(7737), + [anon_sym_PIPE] = ACTIONS(7735), + [anon_sym_CARET] = ACTIONS(7735), + [anon_sym_AMP] = ACTIONS(7735), + [anon_sym_EQ_EQ] = ACTIONS(7737), + [anon_sym_BANG_EQ] = ACTIONS(7737), + [anon_sym_GT] = ACTIONS(7735), + [anon_sym_GT_EQ] = ACTIONS(7737), + [anon_sym_LT_EQ] = ACTIONS(7735), + [anon_sym_LT] = ACTIONS(7735), + [anon_sym_LT_LT] = ACTIONS(7735), + [anon_sym_GT_GT] = ACTIONS(7735), + [anon_sym___extension__] = ACTIONS(7737), + [anon_sym___attribute__] = ACTIONS(7737), + [anon_sym___attribute] = ACTIONS(7735), + [anon_sym_LBRACE] = ACTIONS(7737), + [anon_sym_LBRACK] = ACTIONS(7737), + [anon_sym_EQ] = ACTIONS(7735), + [anon_sym_const] = ACTIONS(7735), + [anon_sym_constexpr] = ACTIONS(7737), + [anon_sym_volatile] = ACTIONS(7737), + [anon_sym_restrict] = ACTIONS(7737), + [anon_sym___restrict__] = ACTIONS(7737), + [anon_sym__Atomic] = ACTIONS(7737), + [anon_sym__Noreturn] = ACTIONS(7737), + [anon_sym_noreturn] = ACTIONS(7737), + [anon_sym__Nonnull] = ACTIONS(7737), + [anon_sym_mutable] = ACTIONS(7737), + [anon_sym_constinit] = ACTIONS(7737), + [anon_sym_consteval] = ACTIONS(7737), + [anon_sym_alignas] = ACTIONS(7737), + [anon_sym__Alignas] = ACTIONS(7737), + [anon_sym_QMARK] = ACTIONS(7737), + [anon_sym_STAR_EQ] = ACTIONS(7737), + [anon_sym_SLASH_EQ] = ACTIONS(7737), + [anon_sym_PERCENT_EQ] = ACTIONS(7737), + [anon_sym_PLUS_EQ] = ACTIONS(7737), + [anon_sym_DASH_EQ] = ACTIONS(7737), + [anon_sym_LT_LT_EQ] = ACTIONS(7737), + [anon_sym_GT_GT_EQ] = ACTIONS(7737), + [anon_sym_AMP_EQ] = ACTIONS(7737), + [anon_sym_CARET_EQ] = ACTIONS(7737), + [anon_sym_PIPE_EQ] = ACTIONS(7737), + [anon_sym_LT_EQ_GT] = ACTIONS(7737), + [anon_sym_or] = ACTIONS(7737), + [anon_sym_and] = ACTIONS(7737), + [anon_sym_bitor] = ACTIONS(7737), + [anon_sym_xor] = ACTIONS(7737), + [anon_sym_bitand] = ACTIONS(7737), + [anon_sym_not_eq] = ACTIONS(7737), + [anon_sym_DASH_DASH] = ACTIONS(7737), + [anon_sym_PLUS_PLUS] = ACTIONS(7737), + [anon_sym_DOT] = ACTIONS(7735), + [anon_sym_DOT_STAR] = ACTIONS(7737), + [anon_sym_DASH_GT] = ACTIONS(7735), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7737), + [anon_sym_override] = ACTIONS(7737), + [anon_sym_requires] = ACTIONS(7737), + [anon_sym_DASH_GT_STAR] = ACTIONS(7737), + }, + [STATE(3093)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7571), + [anon_sym_COMMA] = ACTIONS(7571), + [anon_sym_LPAREN2] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7569), + [anon_sym_PLUS] = ACTIONS(7569), + [anon_sym_STAR] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7569), + [anon_sym_PERCENT] = ACTIONS(7569), + [anon_sym_PIPE_PIPE] = ACTIONS(7571), + [anon_sym_AMP_AMP] = ACTIONS(7571), + [anon_sym_PIPE] = ACTIONS(7569), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_AMP] = ACTIONS(7569), + [anon_sym_EQ_EQ] = ACTIONS(7571), + [anon_sym_BANG_EQ] = ACTIONS(7571), + [anon_sym_GT] = ACTIONS(7569), + [anon_sym_GT_EQ] = ACTIONS(7571), + [anon_sym_LT_EQ] = ACTIONS(7569), + [anon_sym_LT] = ACTIONS(7569), + [anon_sym_LT_LT] = ACTIONS(7569), + [anon_sym_GT_GT] = ACTIONS(7569), + [anon_sym___extension__] = ACTIONS(7571), + [anon_sym_LBRACE] = ACTIONS(7571), + [anon_sym_LBRACK] = ACTIONS(7571), + [anon_sym_RBRACK] = ACTIONS(7571), + [anon_sym_EQ] = ACTIONS(7569), + [anon_sym_const] = ACTIONS(7569), + [anon_sym_constexpr] = ACTIONS(7571), + [anon_sym_volatile] = ACTIONS(7571), + [anon_sym_restrict] = ACTIONS(7571), + [anon_sym___restrict__] = ACTIONS(7571), + [anon_sym__Atomic] = ACTIONS(7571), + [anon_sym__Noreturn] = ACTIONS(7571), + [anon_sym_noreturn] = ACTIONS(7571), + [anon_sym__Nonnull] = ACTIONS(7571), + [anon_sym_mutable] = ACTIONS(7571), + [anon_sym_constinit] = ACTIONS(7571), + [anon_sym_consteval] = ACTIONS(7571), + [anon_sym_alignas] = ACTIONS(7571), + [anon_sym__Alignas] = ACTIONS(7571), + [anon_sym_QMARK] = ACTIONS(7571), + [anon_sym_STAR_EQ] = ACTIONS(7571), + [anon_sym_SLASH_EQ] = ACTIONS(7571), + [anon_sym_PERCENT_EQ] = ACTIONS(7571), + [anon_sym_PLUS_EQ] = ACTIONS(7571), + [anon_sym_DASH_EQ] = ACTIONS(7571), + [anon_sym_LT_LT_EQ] = ACTIONS(7571), + [anon_sym_GT_GT_EQ] = ACTIONS(7571), + [anon_sym_AMP_EQ] = ACTIONS(7571), + [anon_sym_CARET_EQ] = ACTIONS(7571), + [anon_sym_PIPE_EQ] = ACTIONS(7571), + [anon_sym_and_eq] = ACTIONS(7571), + [anon_sym_or_eq] = ACTIONS(7571), + [anon_sym_xor_eq] = ACTIONS(7571), + [anon_sym_LT_EQ_GT] = ACTIONS(7571), + [anon_sym_or] = ACTIONS(7569), + [anon_sym_and] = ACTIONS(7569), + [anon_sym_bitor] = ACTIONS(7571), + [anon_sym_xor] = ACTIONS(7569), + [anon_sym_bitand] = ACTIONS(7571), + [anon_sym_not_eq] = ACTIONS(7571), + [anon_sym_DASH_DASH] = ACTIONS(7571), + [anon_sym_PLUS_PLUS] = ACTIONS(7571), + [anon_sym_DOT] = ACTIONS(7569), + [anon_sym_DOT_STAR] = ACTIONS(7571), + [anon_sym_DASH_GT] = ACTIONS(7571), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7571), + [anon_sym_override] = ACTIONS(7571), + [anon_sym_requires] = ACTIONS(7571), + }, + [STATE(3094)] = { [sym_identifier] = ACTIONS(9033), [anon_sym_DOT_DOT_DOT] = ACTIONS(9035), [anon_sym_COMMA] = ACTIONS(9035), @@ -418490,7 +400575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elif_token1] = ACTIONS(9033), [aux_sym_preproc_elifdef_token1] = ACTIONS(9035), [aux_sym_preproc_elifdef_token2] = ACTIONS(9035), - [anon_sym_LPAREN2] = ACTIONS(8927), + [anon_sym_LPAREN2] = ACTIONS(9035), [anon_sym_DASH] = ACTIONS(9033), [anon_sym_PLUS] = ACTIONS(9033), [anon_sym_STAR] = ACTIONS(9033), @@ -418513,9 +400598,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(9033), [anon_sym___attribute] = ACTIONS(9033), [anon_sym_COLON] = ACTIONS(9033), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9035), + [anon_sym_LBRACE] = ACTIONS(9035), [anon_sym_RBRACE] = ACTIONS(9035), - [anon_sym_LBRACK] = ACTIONS(8929), + [anon_sym_LBRACK] = ACTIONS(9033), + [anon_sym_RBRACK] = ACTIONS(9035), [anon_sym_EQ] = ACTIONS(9033), [anon_sym_QMARK] = ACTIONS(9035), [anon_sym_STAR_EQ] = ACTIONS(9035), @@ -418540,151 +400627,449 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_eq] = ACTIONS(9033), [anon_sym_DASH_DASH] = ACTIONS(9035), [anon_sym_PLUS_PLUS] = ACTIONS(9035), + [anon_sym_asm] = ACTIONS(9033), + [anon_sym___asm__] = ACTIONS(9033), + [anon_sym___asm] = ACTIONS(9033), [anon_sym_DOT] = ACTIONS(9033), [anon_sym_DOT_STAR] = ACTIONS(9035), [anon_sym_DASH_GT] = ACTIONS(9035), [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9033), [anon_sym_COLON_RBRACK] = ACTIONS(9035), }, - [STATE(3541)] = { - [sym_identifier] = ACTIONS(8559), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8561), - [anon_sym_COMMA] = ACTIONS(8561), - [anon_sym_RPAREN] = ACTIONS(8561), - [aux_sym_preproc_if_token2] = ACTIONS(8561), - [aux_sym_preproc_else_token1] = ACTIONS(8561), - [aux_sym_preproc_elif_token1] = ACTIONS(8559), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8561), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8561), - [anon_sym_LPAREN2] = ACTIONS(8561), - [anon_sym_DASH] = ACTIONS(8559), - [anon_sym_PLUS] = ACTIONS(8559), - [anon_sym_STAR] = ACTIONS(8559), - [anon_sym_SLASH] = ACTIONS(8559), - [anon_sym_PERCENT] = ACTIONS(8559), - [anon_sym_PIPE_PIPE] = ACTIONS(8561), - [anon_sym_AMP_AMP] = ACTIONS(8561), - [anon_sym_PIPE] = ACTIONS(8559), - [anon_sym_CARET] = ACTIONS(8559), - [anon_sym_AMP] = ACTIONS(8559), - [anon_sym_EQ_EQ] = ACTIONS(8561), - [anon_sym_BANG_EQ] = ACTIONS(8561), - [anon_sym_GT] = ACTIONS(8559), - [anon_sym_GT_EQ] = ACTIONS(8561), - [anon_sym_LT_EQ] = ACTIONS(8559), - [anon_sym_LT] = ACTIONS(8559), - [anon_sym_LT_LT] = ACTIONS(8559), - [anon_sym_GT_GT] = ACTIONS(8559), - [anon_sym_SEMI] = ACTIONS(8561), - [anon_sym___attribute__] = ACTIONS(8559), - [anon_sym___attribute] = ACTIONS(8559), - [anon_sym_COLON] = ACTIONS(8559), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8561), - [anon_sym_RBRACE] = ACTIONS(8561), - [anon_sym_LBRACK] = ACTIONS(8561), - [anon_sym_EQ] = ACTIONS(8559), - [anon_sym_QMARK] = ACTIONS(8561), - [anon_sym_STAR_EQ] = ACTIONS(8561), - [anon_sym_SLASH_EQ] = ACTIONS(8561), - [anon_sym_PERCENT_EQ] = ACTIONS(8561), - [anon_sym_PLUS_EQ] = ACTIONS(8561), - [anon_sym_DASH_EQ] = ACTIONS(8561), - [anon_sym_LT_LT_EQ] = ACTIONS(8561), - [anon_sym_GT_GT_EQ] = ACTIONS(8561), - [anon_sym_AMP_EQ] = ACTIONS(8561), - [anon_sym_CARET_EQ] = ACTIONS(8561), - [anon_sym_PIPE_EQ] = ACTIONS(8561), - [anon_sym_and_eq] = ACTIONS(8559), - [anon_sym_or_eq] = ACTIONS(8559), - [anon_sym_xor_eq] = ACTIONS(8559), - [anon_sym_LT_EQ_GT] = ACTIONS(8561), - [anon_sym_or] = ACTIONS(8559), - [anon_sym_and] = ACTIONS(8559), - [anon_sym_bitor] = ACTIONS(8559), - [anon_sym_xor] = ACTIONS(8559), - [anon_sym_bitand] = ACTIONS(8559), - [anon_sym_not_eq] = ACTIONS(8559), - [anon_sym_DASH_DASH] = ACTIONS(8561), - [anon_sym_PLUS_PLUS] = ACTIONS(8561), - [anon_sym_DOT] = ACTIONS(8559), - [anon_sym_DOT_STAR] = ACTIONS(8561), - [anon_sym_DASH_GT] = ACTIONS(8561), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8559), - [anon_sym_override] = ACTIONS(8559), - [anon_sym_requires] = ACTIONS(8559), - [anon_sym_COLON_RBRACK] = ACTIONS(8561), + [STATE(3095)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7781), + [anon_sym_COMMA] = ACTIONS(7781), + [anon_sym_LPAREN2] = ACTIONS(7781), + [anon_sym_DASH] = ACTIONS(7779), + [anon_sym_PLUS] = ACTIONS(7779), + [anon_sym_STAR] = ACTIONS(7779), + [anon_sym_SLASH] = ACTIONS(7779), + [anon_sym_PERCENT] = ACTIONS(7779), + [anon_sym_PIPE_PIPE] = ACTIONS(7781), + [anon_sym_AMP_AMP] = ACTIONS(7781), + [anon_sym_PIPE] = ACTIONS(7779), + [anon_sym_CARET] = ACTIONS(7779), + [anon_sym_AMP] = ACTIONS(7779), + [anon_sym_EQ_EQ] = ACTIONS(7781), + [anon_sym_BANG_EQ] = ACTIONS(7781), + [anon_sym_GT] = ACTIONS(7779), + [anon_sym_GT_EQ] = ACTIONS(7779), + [anon_sym_LT_EQ] = ACTIONS(7779), + [anon_sym_LT] = ACTIONS(7779), + [anon_sym_LT_LT] = ACTIONS(7779), + [anon_sym_GT_GT] = ACTIONS(7779), + [anon_sym___extension__] = ACTIONS(7781), + [anon_sym_LBRACE] = ACTIONS(7781), + [anon_sym_LBRACK] = ACTIONS(7781), + [anon_sym_EQ] = ACTIONS(7779), + [anon_sym_const] = ACTIONS(7779), + [anon_sym_constexpr] = ACTIONS(7781), + [anon_sym_volatile] = ACTIONS(7781), + [anon_sym_restrict] = ACTIONS(7781), + [anon_sym___restrict__] = ACTIONS(7781), + [anon_sym__Atomic] = ACTIONS(7781), + [anon_sym__Noreturn] = ACTIONS(7781), + [anon_sym_noreturn] = ACTIONS(7781), + [anon_sym__Nonnull] = ACTIONS(7781), + [anon_sym_mutable] = ACTIONS(7781), + [anon_sym_constinit] = ACTIONS(7781), + [anon_sym_consteval] = ACTIONS(7781), + [anon_sym_alignas] = ACTIONS(7781), + [anon_sym__Alignas] = ACTIONS(7781), + [anon_sym_QMARK] = ACTIONS(7781), + [anon_sym_STAR_EQ] = ACTIONS(7781), + [anon_sym_SLASH_EQ] = ACTIONS(7781), + [anon_sym_PERCENT_EQ] = ACTIONS(7781), + [anon_sym_PLUS_EQ] = ACTIONS(7781), + [anon_sym_DASH_EQ] = ACTIONS(7781), + [anon_sym_LT_LT_EQ] = ACTIONS(7781), + [anon_sym_GT_GT_EQ] = ACTIONS(7779), + [anon_sym_AMP_EQ] = ACTIONS(7781), + [anon_sym_CARET_EQ] = ACTIONS(7781), + [anon_sym_PIPE_EQ] = ACTIONS(7781), + [anon_sym_and_eq] = ACTIONS(7781), + [anon_sym_or_eq] = ACTIONS(7781), + [anon_sym_xor_eq] = ACTIONS(7781), + [anon_sym_LT_EQ_GT] = ACTIONS(7781), + [anon_sym_or] = ACTIONS(7779), + [anon_sym_and] = ACTIONS(7779), + [anon_sym_bitor] = ACTIONS(7781), + [anon_sym_xor] = ACTIONS(7779), + [anon_sym_bitand] = ACTIONS(7781), + [anon_sym_not_eq] = ACTIONS(7781), + [anon_sym_DASH_DASH] = ACTIONS(7781), + [anon_sym_PLUS_PLUS] = ACTIONS(7781), + [anon_sym_DOT] = ACTIONS(7779), + [anon_sym_DOT_STAR] = ACTIONS(7781), + [anon_sym_DASH_GT] = ACTIONS(7781), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7781), + [anon_sym_override] = ACTIONS(7781), + [anon_sym_GT2] = ACTIONS(7781), + [anon_sym_requires] = ACTIONS(7781), }, - [STATE(3542)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(8456), - [anon_sym_COMMA] = ACTIONS(8456), - [anon_sym_RPAREN] = ACTIONS(8456), - [anon_sym_LPAREN2] = ACTIONS(8456), - [anon_sym_DASH] = ACTIONS(8454), - [anon_sym_PLUS] = ACTIONS(8454), - [anon_sym_STAR] = ACTIONS(8454), - [anon_sym_SLASH] = ACTIONS(8454), - [anon_sym_PERCENT] = ACTIONS(8454), - [anon_sym_PIPE_PIPE] = ACTIONS(8456), - [anon_sym_AMP_AMP] = ACTIONS(8456), - [anon_sym_PIPE] = ACTIONS(8454), - [anon_sym_CARET] = ACTIONS(8454), - [anon_sym_AMP] = ACTIONS(8454), - [anon_sym_EQ_EQ] = ACTIONS(8456), - [anon_sym_BANG_EQ] = ACTIONS(8456), - [anon_sym_GT] = ACTIONS(8454), - [anon_sym_GT_EQ] = ACTIONS(8456), - [anon_sym_LT_EQ] = ACTIONS(8454), - [anon_sym_LT] = ACTIONS(8454), - [anon_sym_LT_LT] = ACTIONS(8454), - [anon_sym_GT_GT] = ACTIONS(8454), - [anon_sym_SEMI] = ACTIONS(8456), - [anon_sym_COLON] = ACTIONS(8454), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8456), - [anon_sym_RBRACE] = ACTIONS(8456), - [anon_sym_LBRACK] = ACTIONS(8456), - [anon_sym_EQ] = ACTIONS(8454), - [anon_sym_QMARK] = ACTIONS(8456), - [anon_sym_STAR_EQ] = ACTIONS(8456), - [anon_sym_SLASH_EQ] = ACTIONS(8456), - [anon_sym_PERCENT_EQ] = ACTIONS(8456), - [anon_sym_PLUS_EQ] = ACTIONS(8456), - [anon_sym_DASH_EQ] = ACTIONS(8456), - [anon_sym_LT_LT_EQ] = ACTIONS(8456), - [anon_sym_GT_GT_EQ] = ACTIONS(8456), - [anon_sym_AMP_EQ] = ACTIONS(8456), - [anon_sym_CARET_EQ] = ACTIONS(8456), - [anon_sym_PIPE_EQ] = ACTIONS(8456), - [anon_sym_and_eq] = ACTIONS(8454), - [anon_sym_or_eq] = ACTIONS(8454), - [anon_sym_xor_eq] = ACTIONS(8454), - [anon_sym_LT_EQ_GT] = ACTIONS(8456), - [anon_sym_or] = ACTIONS(8454), - [anon_sym_and] = ACTIONS(8454), - [anon_sym_bitor] = ACTIONS(8454), - [anon_sym_xor] = ACTIONS(8454), - [anon_sym_bitand] = ACTIONS(8454), - [anon_sym_not_eq] = ACTIONS(8454), - [anon_sym_DASH_DASH] = ACTIONS(8456), - [anon_sym_PLUS_PLUS] = ACTIONS(8456), - [anon_sym_DOT] = ACTIONS(8454), - [anon_sym_DOT_STAR] = ACTIONS(8456), - [anon_sym_DASH_GT] = ACTIONS(8456), - [anon_sym_L_DQUOTE] = ACTIONS(8456), - [anon_sym_u_DQUOTE] = ACTIONS(8456), - [anon_sym_U_DQUOTE] = ACTIONS(8456), - [anon_sym_u8_DQUOTE] = ACTIONS(8456), - [anon_sym_DQUOTE] = ACTIONS(8456), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8456), - [anon_sym_LR_DQUOTE] = ACTIONS(8456), - [anon_sym_uR_DQUOTE] = ACTIONS(8456), - [anon_sym_UR_DQUOTE] = ACTIONS(8456), - [anon_sym_u8R_DQUOTE] = ACTIONS(8456), - [anon_sym_COLON_RBRACK] = ACTIONS(8456), - [sym_literal_suffix] = ACTIONS(8454), + [STATE(3096)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), + [anon_sym_COMMA] = ACTIONS(7653), + [anon_sym_LPAREN2] = ACTIONS(7653), + [anon_sym_DASH] = ACTIONS(7651), + [anon_sym_PLUS] = ACTIONS(7651), + [anon_sym_STAR] = ACTIONS(7651), + [anon_sym_SLASH] = ACTIONS(7651), + [anon_sym_PERCENT] = ACTIONS(7651), + [anon_sym_PIPE_PIPE] = ACTIONS(7653), + [anon_sym_AMP_AMP] = ACTIONS(7653), + [anon_sym_PIPE] = ACTIONS(7651), + [anon_sym_CARET] = ACTIONS(7651), + [anon_sym_AMP] = ACTIONS(7651), + [anon_sym_EQ_EQ] = ACTIONS(7653), + [anon_sym_BANG_EQ] = ACTIONS(7653), + [anon_sym_GT] = ACTIONS(7651), + [anon_sym_GT_EQ] = ACTIONS(7651), + [anon_sym_LT_EQ] = ACTIONS(7651), + [anon_sym_LT] = ACTIONS(7651), + [anon_sym_LT_LT] = ACTIONS(7651), + [anon_sym_GT_GT] = ACTIONS(7651), + [anon_sym___extension__] = ACTIONS(7653), + [anon_sym_LBRACE] = ACTIONS(7653), + [anon_sym_LBRACK] = ACTIONS(7653), + [anon_sym_EQ] = ACTIONS(7651), + [anon_sym_const] = ACTIONS(7651), + [anon_sym_constexpr] = ACTIONS(7653), + [anon_sym_volatile] = ACTIONS(7653), + [anon_sym_restrict] = ACTIONS(7653), + [anon_sym___restrict__] = ACTIONS(7653), + [anon_sym__Atomic] = ACTIONS(7653), + [anon_sym__Noreturn] = ACTIONS(7653), + [anon_sym_noreturn] = ACTIONS(7653), + [anon_sym__Nonnull] = ACTIONS(7653), + [anon_sym_mutable] = ACTIONS(7653), + [anon_sym_constinit] = ACTIONS(7653), + [anon_sym_consteval] = ACTIONS(7653), + [anon_sym_alignas] = ACTIONS(7653), + [anon_sym__Alignas] = ACTIONS(7653), + [anon_sym_QMARK] = ACTIONS(7653), + [anon_sym_STAR_EQ] = ACTIONS(7653), + [anon_sym_SLASH_EQ] = ACTIONS(7653), + [anon_sym_PERCENT_EQ] = ACTIONS(7653), + [anon_sym_PLUS_EQ] = ACTIONS(7653), + [anon_sym_DASH_EQ] = ACTIONS(7653), + [anon_sym_LT_LT_EQ] = ACTIONS(7653), + [anon_sym_GT_GT_EQ] = ACTIONS(7651), + [anon_sym_AMP_EQ] = ACTIONS(7653), + [anon_sym_CARET_EQ] = ACTIONS(7653), + [anon_sym_PIPE_EQ] = ACTIONS(7653), + [anon_sym_and_eq] = ACTIONS(7653), + [anon_sym_or_eq] = ACTIONS(7653), + [anon_sym_xor_eq] = ACTIONS(7653), + [anon_sym_LT_EQ_GT] = ACTIONS(7653), + [anon_sym_or] = ACTIONS(7651), + [anon_sym_and] = ACTIONS(7651), + [anon_sym_bitor] = ACTIONS(7653), + [anon_sym_xor] = ACTIONS(7651), + [anon_sym_bitand] = ACTIONS(7653), + [anon_sym_not_eq] = ACTIONS(7653), + [anon_sym_DASH_DASH] = ACTIONS(7653), + [anon_sym_PLUS_PLUS] = ACTIONS(7653), + [anon_sym_DOT] = ACTIONS(7651), + [anon_sym_DOT_STAR] = ACTIONS(7653), + [anon_sym_DASH_GT] = ACTIONS(7653), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7653), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_GT2] = ACTIONS(7653), + [anon_sym_requires] = ACTIONS(7653), }, - [STATE(3543)] = { + [STATE(3097)] = { + [sym_identifier] = ACTIONS(7759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7761), + [anon_sym_COMMA] = ACTIONS(7761), + [anon_sym_RPAREN] = ACTIONS(7761), + [anon_sym_LPAREN2] = ACTIONS(7761), + [anon_sym_DASH] = ACTIONS(7759), + [anon_sym_PLUS] = ACTIONS(7759), + [anon_sym_STAR] = ACTIONS(7761), + [anon_sym_SLASH] = ACTIONS(7759), + [anon_sym_PERCENT] = ACTIONS(7761), + [anon_sym_PIPE_PIPE] = ACTIONS(7761), + [anon_sym_AMP_AMP] = ACTIONS(7761), + [anon_sym_PIPE] = ACTIONS(7759), + [anon_sym_CARET] = ACTIONS(7761), + [anon_sym_AMP] = ACTIONS(7759), + [anon_sym_EQ_EQ] = ACTIONS(7761), + [anon_sym_BANG_EQ] = ACTIONS(7761), + [anon_sym_GT] = ACTIONS(7759), + [anon_sym_GT_EQ] = ACTIONS(7761), + [anon_sym_LT_EQ] = ACTIONS(7759), + [anon_sym_LT] = ACTIONS(7759), + [anon_sym_LT_LT] = ACTIONS(7761), + [anon_sym_GT_GT] = ACTIONS(7761), + [anon_sym_SEMI] = ACTIONS(7761), + [anon_sym___extension__] = ACTIONS(7759), + [anon_sym___attribute__] = ACTIONS(7759), + [anon_sym___attribute] = ACTIONS(7759), + [anon_sym_COLON] = ACTIONS(7759), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7761), + [anon_sym___based] = ACTIONS(7759), + [anon_sym_LBRACE] = ACTIONS(7761), + [anon_sym_RBRACE] = ACTIONS(7761), + [anon_sym_signed] = ACTIONS(7759), + [anon_sym_unsigned] = ACTIONS(7759), + [anon_sym_long] = ACTIONS(7759), + [anon_sym_short] = ACTIONS(7759), + [anon_sym_LBRACK] = ACTIONS(7761), + [anon_sym_const] = ACTIONS(7759), + [anon_sym_constexpr] = ACTIONS(7759), + [anon_sym_volatile] = ACTIONS(7759), + [anon_sym_restrict] = ACTIONS(7759), + [anon_sym___restrict__] = ACTIONS(7759), + [anon_sym__Atomic] = ACTIONS(7759), + [anon_sym__Noreturn] = ACTIONS(7759), + [anon_sym_noreturn] = ACTIONS(7759), + [anon_sym__Nonnull] = ACTIONS(7759), + [anon_sym_mutable] = ACTIONS(7759), + [anon_sym_constinit] = ACTIONS(7759), + [anon_sym_consteval] = ACTIONS(7759), + [anon_sym_alignas] = ACTIONS(7759), + [anon_sym__Alignas] = ACTIONS(7759), + [sym_primitive_type] = ACTIONS(7759), + [anon_sym_QMARK] = ACTIONS(7761), + [anon_sym_LT_EQ_GT] = ACTIONS(7761), + [anon_sym_or] = ACTIONS(7759), + [anon_sym_and] = ACTIONS(7759), + [anon_sym_bitor] = ACTIONS(7759), + [anon_sym_xor] = ACTIONS(7759), + [anon_sym_bitand] = ACTIONS(7759), + [anon_sym_not_eq] = ACTIONS(7759), + [anon_sym_DASH_DASH] = ACTIONS(7761), + [anon_sym_PLUS_PLUS] = ACTIONS(7761), + [anon_sym_DOT] = ACTIONS(7759), + [anon_sym_DOT_STAR] = ACTIONS(7761), + [anon_sym_DASH_GT] = ACTIONS(7761), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7759), + [anon_sym_override] = ACTIONS(7759), + [anon_sym_requires] = ACTIONS(7759), + [anon_sym_COLON_RBRACK] = ACTIONS(7761), + }, + [STATE(3098)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7773), + [anon_sym_COMMA] = ACTIONS(7773), + [anon_sym_LPAREN2] = ACTIONS(7773), + [anon_sym_DASH] = ACTIONS(7771), + [anon_sym_PLUS] = ACTIONS(7771), + [anon_sym_STAR] = ACTIONS(7771), + [anon_sym_SLASH] = ACTIONS(7771), + [anon_sym_PERCENT] = ACTIONS(7771), + [anon_sym_PIPE_PIPE] = ACTIONS(7773), + [anon_sym_AMP_AMP] = ACTIONS(7773), + [anon_sym_PIPE] = ACTIONS(7771), + [anon_sym_CARET] = ACTIONS(7771), + [anon_sym_AMP] = ACTIONS(7771), + [anon_sym_EQ_EQ] = ACTIONS(7773), + [anon_sym_BANG_EQ] = ACTIONS(7773), + [anon_sym_GT] = ACTIONS(7771), + [anon_sym_GT_EQ] = ACTIONS(7771), + [anon_sym_LT_EQ] = ACTIONS(7771), + [anon_sym_LT] = ACTIONS(7771), + [anon_sym_LT_LT] = ACTIONS(7771), + [anon_sym_GT_GT] = ACTIONS(7771), + [anon_sym___extension__] = ACTIONS(7773), + [anon_sym_LBRACE] = ACTIONS(7773), + [anon_sym_LBRACK] = ACTIONS(7773), + [anon_sym_EQ] = ACTIONS(7771), + [anon_sym_const] = ACTIONS(7771), + [anon_sym_constexpr] = ACTIONS(7773), + [anon_sym_volatile] = ACTIONS(7773), + [anon_sym_restrict] = ACTIONS(7773), + [anon_sym___restrict__] = ACTIONS(7773), + [anon_sym__Atomic] = ACTIONS(7773), + [anon_sym__Noreturn] = ACTIONS(7773), + [anon_sym_noreturn] = ACTIONS(7773), + [anon_sym__Nonnull] = ACTIONS(7773), + [anon_sym_mutable] = ACTIONS(7773), + [anon_sym_constinit] = ACTIONS(7773), + [anon_sym_consteval] = ACTIONS(7773), + [anon_sym_alignas] = ACTIONS(7773), + [anon_sym__Alignas] = ACTIONS(7773), + [anon_sym_QMARK] = ACTIONS(7773), + [anon_sym_STAR_EQ] = ACTIONS(7773), + [anon_sym_SLASH_EQ] = ACTIONS(7773), + [anon_sym_PERCENT_EQ] = ACTIONS(7773), + [anon_sym_PLUS_EQ] = ACTIONS(7773), + [anon_sym_DASH_EQ] = ACTIONS(7773), + [anon_sym_LT_LT_EQ] = ACTIONS(7773), + [anon_sym_GT_GT_EQ] = ACTIONS(7771), + [anon_sym_AMP_EQ] = ACTIONS(7773), + [anon_sym_CARET_EQ] = ACTIONS(7773), + [anon_sym_PIPE_EQ] = ACTIONS(7773), + [anon_sym_and_eq] = ACTIONS(7773), + [anon_sym_or_eq] = ACTIONS(7773), + [anon_sym_xor_eq] = ACTIONS(7773), + [anon_sym_LT_EQ_GT] = ACTIONS(7773), + [anon_sym_or] = ACTIONS(7771), + [anon_sym_and] = ACTIONS(7771), + [anon_sym_bitor] = ACTIONS(7773), + [anon_sym_xor] = ACTIONS(7771), + [anon_sym_bitand] = ACTIONS(7773), + [anon_sym_not_eq] = ACTIONS(7773), + [anon_sym_DASH_DASH] = ACTIONS(7773), + [anon_sym_PLUS_PLUS] = ACTIONS(7773), + [anon_sym_DOT] = ACTIONS(7771), + [anon_sym_DOT_STAR] = ACTIONS(7773), + [anon_sym_DASH_GT] = ACTIONS(7773), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7773), + [anon_sym_override] = ACTIONS(7773), + [anon_sym_GT2] = ACTIONS(7773), + [anon_sym_requires] = ACTIONS(7773), + }, + [STATE(3099)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7733), + [anon_sym_COMMA] = ACTIONS(7733), + [anon_sym_LPAREN2] = ACTIONS(7733), + [anon_sym_DASH] = ACTIONS(7731), + [anon_sym_PLUS] = ACTIONS(7731), + [anon_sym_STAR] = ACTIONS(7731), + [anon_sym_SLASH] = ACTIONS(7731), + [anon_sym_PERCENT] = ACTIONS(7731), + [anon_sym_PIPE_PIPE] = ACTIONS(7733), + [anon_sym_AMP_AMP] = ACTIONS(7733), + [anon_sym_PIPE] = ACTIONS(7731), + [anon_sym_CARET] = ACTIONS(7731), + [anon_sym_AMP] = ACTIONS(7731), + [anon_sym_EQ_EQ] = ACTIONS(7733), + [anon_sym_BANG_EQ] = ACTIONS(7733), + [anon_sym_GT] = ACTIONS(7731), + [anon_sym_GT_EQ] = ACTIONS(7731), + [anon_sym_LT_EQ] = ACTIONS(7731), + [anon_sym_LT] = ACTIONS(7731), + [anon_sym_LT_LT] = ACTIONS(7731), + [anon_sym_GT_GT] = ACTIONS(7731), + [anon_sym___extension__] = ACTIONS(7733), + [anon_sym_LBRACE] = ACTIONS(7733), + [anon_sym_LBRACK] = ACTIONS(7733), + [anon_sym_EQ] = ACTIONS(7731), + [anon_sym_const] = ACTIONS(7731), + [anon_sym_constexpr] = ACTIONS(7733), + [anon_sym_volatile] = ACTIONS(7733), + [anon_sym_restrict] = ACTIONS(7733), + [anon_sym___restrict__] = ACTIONS(7733), + [anon_sym__Atomic] = ACTIONS(7733), + [anon_sym__Noreturn] = ACTIONS(7733), + [anon_sym_noreturn] = ACTIONS(7733), + [anon_sym__Nonnull] = ACTIONS(7733), + [anon_sym_mutable] = ACTIONS(7733), + [anon_sym_constinit] = ACTIONS(7733), + [anon_sym_consteval] = ACTIONS(7733), + [anon_sym_alignas] = ACTIONS(7733), + [anon_sym__Alignas] = ACTIONS(7733), + [anon_sym_QMARK] = ACTIONS(7733), + [anon_sym_STAR_EQ] = ACTIONS(7733), + [anon_sym_SLASH_EQ] = ACTIONS(7733), + [anon_sym_PERCENT_EQ] = ACTIONS(7733), + [anon_sym_PLUS_EQ] = ACTIONS(7733), + [anon_sym_DASH_EQ] = ACTIONS(7733), + [anon_sym_LT_LT_EQ] = ACTIONS(7733), + [anon_sym_GT_GT_EQ] = ACTIONS(7731), + [anon_sym_AMP_EQ] = ACTIONS(7733), + [anon_sym_CARET_EQ] = ACTIONS(7733), + [anon_sym_PIPE_EQ] = ACTIONS(7733), + [anon_sym_and_eq] = ACTIONS(7733), + [anon_sym_or_eq] = ACTIONS(7733), + [anon_sym_xor_eq] = ACTIONS(7733), + [anon_sym_LT_EQ_GT] = ACTIONS(7733), + [anon_sym_or] = ACTIONS(7731), + [anon_sym_and] = ACTIONS(7731), + [anon_sym_bitor] = ACTIONS(7733), + [anon_sym_xor] = ACTIONS(7731), + [anon_sym_bitand] = ACTIONS(7733), + [anon_sym_not_eq] = ACTIONS(7733), + [anon_sym_DASH_DASH] = ACTIONS(7733), + [anon_sym_PLUS_PLUS] = ACTIONS(7733), + [anon_sym_DOT] = ACTIONS(7731), + [anon_sym_DOT_STAR] = ACTIONS(7733), + [anon_sym_DASH_GT] = ACTIONS(7733), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7733), + [anon_sym_override] = ACTIONS(7733), + [anon_sym_GT2] = ACTIONS(7733), + [anon_sym_requires] = ACTIONS(7733), + }, + [STATE(3100)] = { + [sym_identifier] = ACTIONS(7223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7225), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7225), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7225), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7225), + [anon_sym_GT_GT] = ACTIONS(7225), + [anon_sym_SEMI] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym___attribute__] = ACTIONS(7223), + [anon_sym___attribute] = ACTIONS(7223), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), + [anon_sym___based] = ACTIONS(7223), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_RBRACE] = ACTIONS(7225), + [anon_sym_signed] = ACTIONS(7223), + [anon_sym_unsigned] = ACTIONS(7223), + [anon_sym_long] = ACTIONS(7223), + [anon_sym_short] = ACTIONS(7223), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7223), + [anon_sym__Alignas] = ACTIONS(7223), + [sym_primitive_type] = ACTIONS(7223), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7223), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7223), + [anon_sym_not_eq] = ACTIONS(7223), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7223), + [anon_sym_override] = ACTIONS(7223), + [anon_sym_requires] = ACTIONS(7223), + [anon_sym_COLON_RBRACK] = ACTIONS(7225), + }, + [STATE(3101)] = { [sym_identifier] = ACTIONS(9037), [anon_sym_DOT_DOT_DOT] = ACTIONS(9039), [anon_sym_COMMA] = ACTIONS(9039), @@ -418717,9 +401102,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(9037), [anon_sym___attribute] = ACTIONS(9037), [anon_sym_COLON] = ACTIONS(9037), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9039), + [anon_sym_LBRACE] = ACTIONS(9039), [anon_sym_RBRACE] = ACTIONS(9039), - [anon_sym_LBRACK] = ACTIONS(9039), + [anon_sym_LBRACK] = ACTIONS(9037), + [anon_sym_RBRACK] = ACTIONS(9039), [anon_sym_EQ] = ACTIONS(9037), [anon_sym_QMARK] = ACTIONS(9039), [anon_sym_STAR_EQ] = ACTIONS(9039), @@ -418744,4779 +401131,605 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_eq] = ACTIONS(9037), [anon_sym_DASH_DASH] = ACTIONS(9039), [anon_sym_PLUS_PLUS] = ACTIONS(9039), + [anon_sym_asm] = ACTIONS(9037), + [anon_sym___asm__] = ACTIONS(9037), + [anon_sym___asm] = ACTIONS(9037), [anon_sym_DOT] = ACTIONS(9037), [anon_sym_DOT_STAR] = ACTIONS(9039), [anon_sym_DASH_GT] = ACTIONS(9039), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9037), - [anon_sym_override] = ACTIONS(9037), - [anon_sym_requires] = ACTIONS(9037), + [anon_sym_try] = ACTIONS(9037), [anon_sym_COLON_RBRACK] = ACTIONS(9039), }, - [STATE(3544)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(8448), - [anon_sym_COMMA] = ACTIONS(8448), - [anon_sym_RPAREN] = ACTIONS(8448), - [anon_sym_LPAREN2] = ACTIONS(8448), - [anon_sym_DASH] = ACTIONS(8446), - [anon_sym_PLUS] = ACTIONS(8446), - [anon_sym_STAR] = ACTIONS(8446), - [anon_sym_SLASH] = ACTIONS(8446), - [anon_sym_PERCENT] = ACTIONS(8446), - [anon_sym_PIPE_PIPE] = ACTIONS(8448), - [anon_sym_AMP_AMP] = ACTIONS(8448), - [anon_sym_PIPE] = ACTIONS(8446), - [anon_sym_CARET] = ACTIONS(8446), - [anon_sym_AMP] = ACTIONS(8446), - [anon_sym_EQ_EQ] = ACTIONS(8448), - [anon_sym_BANG_EQ] = ACTIONS(8448), - [anon_sym_GT] = ACTIONS(8446), - [anon_sym_GT_EQ] = ACTIONS(8448), - [anon_sym_LT_EQ] = ACTIONS(8446), - [anon_sym_LT] = ACTIONS(8446), - [anon_sym_LT_LT] = ACTIONS(8446), - [anon_sym_GT_GT] = ACTIONS(8446), - [anon_sym_SEMI] = ACTIONS(8448), - [anon_sym_COLON] = ACTIONS(8446), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8448), - [anon_sym_RBRACE] = ACTIONS(8448), - [anon_sym_LBRACK] = ACTIONS(8448), - [anon_sym_EQ] = ACTIONS(8446), - [anon_sym_QMARK] = ACTIONS(8448), - [anon_sym_STAR_EQ] = ACTIONS(8448), - [anon_sym_SLASH_EQ] = ACTIONS(8448), - [anon_sym_PERCENT_EQ] = ACTIONS(8448), - [anon_sym_PLUS_EQ] = ACTIONS(8448), - [anon_sym_DASH_EQ] = ACTIONS(8448), - [anon_sym_LT_LT_EQ] = ACTIONS(8448), - [anon_sym_GT_GT_EQ] = ACTIONS(8448), - [anon_sym_AMP_EQ] = ACTIONS(8448), - [anon_sym_CARET_EQ] = ACTIONS(8448), - [anon_sym_PIPE_EQ] = ACTIONS(8448), - [anon_sym_and_eq] = ACTIONS(8446), - [anon_sym_or_eq] = ACTIONS(8446), - [anon_sym_xor_eq] = ACTIONS(8446), - [anon_sym_LT_EQ_GT] = ACTIONS(8448), - [anon_sym_or] = ACTIONS(8446), - [anon_sym_and] = ACTIONS(8446), - [anon_sym_bitor] = ACTIONS(8446), - [anon_sym_xor] = ACTIONS(8446), - [anon_sym_bitand] = ACTIONS(8446), - [anon_sym_not_eq] = ACTIONS(8446), - [anon_sym_DASH_DASH] = ACTIONS(8448), - [anon_sym_PLUS_PLUS] = ACTIONS(8448), - [anon_sym_DOT] = ACTIONS(8446), - [anon_sym_DOT_STAR] = ACTIONS(8448), - [anon_sym_DASH_GT] = ACTIONS(8448), - [anon_sym_L_DQUOTE] = ACTIONS(8448), - [anon_sym_u_DQUOTE] = ACTIONS(8448), - [anon_sym_U_DQUOTE] = ACTIONS(8448), - [anon_sym_u8_DQUOTE] = ACTIONS(8448), - [anon_sym_DQUOTE] = ACTIONS(8448), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8448), - [anon_sym_LR_DQUOTE] = ACTIONS(8448), - [anon_sym_uR_DQUOTE] = ACTIONS(8448), - [anon_sym_UR_DQUOTE] = ACTIONS(8448), - [anon_sym_u8R_DQUOTE] = ACTIONS(8448), - [anon_sym_COLON_RBRACK] = ACTIONS(8448), - [sym_literal_suffix] = ACTIONS(8446), - }, - [STATE(3545)] = { - [sym_string_literal] = STATE(5466), - [sym_template_argument_list] = STATE(6719), - [sym_raw_string_literal] = STATE(5466), - [aux_sym_structured_binding_declarator_repeat1] = STATE(10037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(9041), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(8603), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_RBRACK] = ACTIONS(9043), - [anon_sym_EQ] = ACTIONS(6615), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(6617), - [anon_sym_SLASH_EQ] = ACTIONS(6617), - [anon_sym_PERCENT_EQ] = ACTIONS(6617), - [anon_sym_PLUS_EQ] = ACTIONS(6617), - [anon_sym_DASH_EQ] = ACTIONS(6617), - [anon_sym_LT_LT_EQ] = ACTIONS(6617), - [anon_sym_GT_GT_EQ] = ACTIONS(6617), - [anon_sym_AMP_EQ] = ACTIONS(6617), - [anon_sym_CARET_EQ] = ACTIONS(6617), - [anon_sym_PIPE_EQ] = ACTIONS(6617), - [anon_sym_and_eq] = ACTIONS(6617), - [anon_sym_or_eq] = ACTIONS(6617), - [anon_sym_xor_eq] = ACTIONS(6617), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(6619), - [anon_sym_u_DQUOTE] = ACTIONS(6619), - [anon_sym_U_DQUOTE] = ACTIONS(6619), - [anon_sym_u8_DQUOTE] = ACTIONS(6619), - [anon_sym_DQUOTE] = ACTIONS(6619), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6625), - [anon_sym_LR_DQUOTE] = ACTIONS(6625), - [anon_sym_uR_DQUOTE] = ACTIONS(6625), - [anon_sym_UR_DQUOTE] = ACTIONS(6625), - [anon_sym_u8R_DQUOTE] = ACTIONS(6625), - }, - [STATE(3546)] = { - [sym_identifier] = ACTIONS(8629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8631), - [anon_sym_COMMA] = ACTIONS(8631), - [anon_sym_RPAREN] = ACTIONS(8631), - [aux_sym_preproc_if_token2] = ACTIONS(8631), - [aux_sym_preproc_else_token1] = ACTIONS(8631), - [aux_sym_preproc_elif_token1] = ACTIONS(8629), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8631), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8631), - [anon_sym_LPAREN2] = ACTIONS(8631), - [anon_sym_DASH] = ACTIONS(8629), - [anon_sym_PLUS] = ACTIONS(8629), - [anon_sym_STAR] = ACTIONS(8629), - [anon_sym_SLASH] = ACTIONS(8629), - [anon_sym_PERCENT] = ACTIONS(8629), - [anon_sym_PIPE_PIPE] = ACTIONS(8631), - [anon_sym_AMP_AMP] = ACTIONS(8631), - [anon_sym_PIPE] = ACTIONS(8629), - [anon_sym_CARET] = ACTIONS(8629), - [anon_sym_AMP] = ACTIONS(8629), - [anon_sym_EQ_EQ] = ACTIONS(8631), - [anon_sym_BANG_EQ] = ACTIONS(8631), - [anon_sym_GT] = ACTIONS(8629), - [anon_sym_GT_EQ] = ACTIONS(8631), - [anon_sym_LT_EQ] = ACTIONS(8629), - [anon_sym_LT] = ACTIONS(8629), - [anon_sym_LT_LT] = ACTIONS(8629), - [anon_sym_GT_GT] = ACTIONS(8629), - [anon_sym_SEMI] = ACTIONS(8631), - [anon_sym___attribute__] = ACTIONS(8629), - [anon_sym___attribute] = ACTIONS(8629), - [anon_sym_COLON] = ACTIONS(8629), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8631), - [anon_sym_RBRACE] = ACTIONS(8631), - [anon_sym_LBRACK] = ACTIONS(8631), - [anon_sym_EQ] = ACTIONS(8629), - [anon_sym_QMARK] = ACTIONS(8631), - [anon_sym_STAR_EQ] = ACTIONS(8631), - [anon_sym_SLASH_EQ] = ACTIONS(8631), - [anon_sym_PERCENT_EQ] = ACTIONS(8631), - [anon_sym_PLUS_EQ] = ACTIONS(8631), - [anon_sym_DASH_EQ] = ACTIONS(8631), - [anon_sym_LT_LT_EQ] = ACTIONS(8631), - [anon_sym_GT_GT_EQ] = ACTIONS(8631), - [anon_sym_AMP_EQ] = ACTIONS(8631), - [anon_sym_CARET_EQ] = ACTIONS(8631), - [anon_sym_PIPE_EQ] = ACTIONS(8631), - [anon_sym_and_eq] = ACTIONS(8629), - [anon_sym_or_eq] = ACTIONS(8629), - [anon_sym_xor_eq] = ACTIONS(8629), - [anon_sym_LT_EQ_GT] = ACTIONS(8631), - [anon_sym_or] = ACTIONS(8629), - [anon_sym_and] = ACTIONS(8629), - [anon_sym_bitor] = ACTIONS(8629), - [anon_sym_xor] = ACTIONS(8629), - [anon_sym_bitand] = ACTIONS(8629), - [anon_sym_not_eq] = ACTIONS(8629), - [anon_sym_DASH_DASH] = ACTIONS(8631), - [anon_sym_PLUS_PLUS] = ACTIONS(8631), - [anon_sym_DOT] = ACTIONS(8629), - [anon_sym_DOT_STAR] = ACTIONS(8631), - [anon_sym_DASH_GT] = ACTIONS(8631), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8629), - [anon_sym_override] = ACTIONS(8629), - [anon_sym_requires] = ACTIONS(8629), - [anon_sym_COLON_RBRACK] = ACTIONS(8631), - }, - [STATE(3547)] = { - [sym_identifier] = ACTIONS(8595), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8597), - [anon_sym_COMMA] = ACTIONS(8597), - [anon_sym_RPAREN] = ACTIONS(8597), - [aux_sym_preproc_if_token2] = ACTIONS(8597), - [aux_sym_preproc_else_token1] = ACTIONS(8597), - [aux_sym_preproc_elif_token1] = ACTIONS(8595), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8597), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8597), - [anon_sym_LPAREN2] = ACTIONS(8597), - [anon_sym_DASH] = ACTIONS(8595), - [anon_sym_PLUS] = ACTIONS(8595), - [anon_sym_STAR] = ACTIONS(8595), - [anon_sym_SLASH] = ACTIONS(8595), - [anon_sym_PERCENT] = ACTIONS(8595), - [anon_sym_PIPE_PIPE] = ACTIONS(8597), - [anon_sym_AMP_AMP] = ACTIONS(8597), - [anon_sym_PIPE] = ACTIONS(8595), - [anon_sym_CARET] = ACTIONS(8595), - [anon_sym_AMP] = ACTIONS(8595), - [anon_sym_EQ_EQ] = ACTIONS(8597), - [anon_sym_BANG_EQ] = ACTIONS(8597), - [anon_sym_GT] = ACTIONS(8595), - [anon_sym_GT_EQ] = ACTIONS(8597), - [anon_sym_LT_EQ] = ACTIONS(8595), - [anon_sym_LT] = ACTIONS(8595), - [anon_sym_LT_LT] = ACTIONS(8595), - [anon_sym_GT_GT] = ACTIONS(8595), - [anon_sym_SEMI] = ACTIONS(8597), - [anon_sym___attribute__] = ACTIONS(8595), - [anon_sym___attribute] = ACTIONS(8595), - [anon_sym_COLON] = ACTIONS(8595), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8597), - [anon_sym_RBRACE] = ACTIONS(8597), - [anon_sym_LBRACK] = ACTIONS(8597), - [anon_sym_EQ] = ACTIONS(8595), - [anon_sym_QMARK] = ACTIONS(8597), - [anon_sym_STAR_EQ] = ACTIONS(8597), - [anon_sym_SLASH_EQ] = ACTIONS(8597), - [anon_sym_PERCENT_EQ] = ACTIONS(8597), - [anon_sym_PLUS_EQ] = ACTIONS(8597), - [anon_sym_DASH_EQ] = ACTIONS(8597), - [anon_sym_LT_LT_EQ] = ACTIONS(8597), - [anon_sym_GT_GT_EQ] = ACTIONS(8597), - [anon_sym_AMP_EQ] = ACTIONS(8597), - [anon_sym_CARET_EQ] = ACTIONS(8597), - [anon_sym_PIPE_EQ] = ACTIONS(8597), - [anon_sym_and_eq] = ACTIONS(8595), - [anon_sym_or_eq] = ACTIONS(8595), - [anon_sym_xor_eq] = ACTIONS(8595), - [anon_sym_LT_EQ_GT] = ACTIONS(8597), - [anon_sym_or] = ACTIONS(8595), - [anon_sym_and] = ACTIONS(8595), - [anon_sym_bitor] = ACTIONS(8595), - [anon_sym_xor] = ACTIONS(8595), - [anon_sym_bitand] = ACTIONS(8595), - [anon_sym_not_eq] = ACTIONS(8595), - [anon_sym_DASH_DASH] = ACTIONS(8597), - [anon_sym_PLUS_PLUS] = ACTIONS(8597), - [anon_sym_DOT] = ACTIONS(8595), - [anon_sym_DOT_STAR] = ACTIONS(8597), - [anon_sym_DASH_GT] = ACTIONS(8597), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8595), - [anon_sym_override] = ACTIONS(8595), - [anon_sym_requires] = ACTIONS(8595), - [anon_sym_COLON_RBRACK] = ACTIONS(8597), - }, - [STATE(3548)] = { - [sym_attribute_specifier] = STATE(4374), - [sym_attribute_declaration] = STATE(4622), - [sym_gnu_asm_expression] = STATE(8992), - [sym_virtual_specifier] = STATE(4709), - [sym__function_exception_specification] = STATE(4022), - [sym__function_attributes_end] = STATE(5842), - [sym__function_postfix] = STATE(5305), - [sym_trailing_return_type] = STATE(5666), - [sym_noexcept] = STATE(4022), - [sym_throw_specifier] = STATE(4022), - [sym_requires_clause] = STATE(5305), - [aux_sym_type_definition_repeat1] = STATE(4374), - [aux_sym_attributed_declarator_repeat1] = STATE(4622), - [aux_sym__function_postfix_repeat1] = STATE(4709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [anon_sym_RPAREN] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), + [STATE(3102)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7629), + [anon_sym_COMMA] = ACTIONS(7629), + [anon_sym_LPAREN2] = ACTIONS(7629), + [anon_sym_DASH] = ACTIONS(7627), + [anon_sym_PLUS] = ACTIONS(7627), [anon_sym_STAR] = ACTIONS(7627), - [anon_sym_SLASH] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7627), [anon_sym_PERCENT] = ACTIONS(7627), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7629), + [anon_sym_AMP_AMP] = ACTIONS(7629), + [anon_sym_PIPE] = ACTIONS(7627), [anon_sym_CARET] = ACTIONS(7627), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7627), + [anon_sym_EQ_EQ] = ACTIONS(7629), + [anon_sym_BANG_EQ] = ACTIONS(7629), + [anon_sym_GT] = ACTIONS(7627), + [anon_sym_GT_EQ] = ACTIONS(7629), + [anon_sym_LT_EQ] = ACTIONS(7627), + [anon_sym_LT] = ACTIONS(7627), [anon_sym_LT_LT] = ACTIONS(7627), [anon_sym_GT_GT] = ACTIONS(7627), - [anon_sym_SEMI] = ACTIONS(7627), - [anon_sym___attribute__] = ACTIONS(6906), - [anon_sym___attribute] = ACTIONS(6859), - [anon_sym_COLON] = ACTIONS(7629), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7627), - [anon_sym_RBRACE] = ACTIONS(7627), + [anon_sym___extension__] = ACTIONS(7629), + [anon_sym_LBRACE] = ACTIONS(7629), [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), + [anon_sym_RBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7627), + [anon_sym_const] = ACTIONS(7627), + [anon_sym_constexpr] = ACTIONS(7629), + [anon_sym_volatile] = ACTIONS(7629), + [anon_sym_restrict] = ACTIONS(7629), + [anon_sym___restrict__] = ACTIONS(7629), + [anon_sym__Atomic] = ACTIONS(7629), + [anon_sym__Noreturn] = ACTIONS(7629), + [anon_sym_noreturn] = ACTIONS(7629), + [anon_sym__Nonnull] = ACTIONS(7629), + [anon_sym_mutable] = ACTIONS(7629), + [anon_sym_constinit] = ACTIONS(7629), + [anon_sym_consteval] = ACTIONS(7629), + [anon_sym_alignas] = ACTIONS(7629), + [anon_sym__Alignas] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7629), + [anon_sym_STAR_EQ] = ACTIONS(7629), + [anon_sym_SLASH_EQ] = ACTIONS(7629), + [anon_sym_PERCENT_EQ] = ACTIONS(7629), + [anon_sym_PLUS_EQ] = ACTIONS(7629), + [anon_sym_DASH_EQ] = ACTIONS(7629), + [anon_sym_LT_LT_EQ] = ACTIONS(7629), + [anon_sym_GT_GT_EQ] = ACTIONS(7629), + [anon_sym_AMP_EQ] = ACTIONS(7629), + [anon_sym_CARET_EQ] = ACTIONS(7629), + [anon_sym_PIPE_EQ] = ACTIONS(7629), + [anon_sym_and_eq] = ACTIONS(7629), + [anon_sym_or_eq] = ACTIONS(7629), + [anon_sym_xor_eq] = ACTIONS(7629), + [anon_sym_LT_EQ_GT] = ACTIONS(7629), [anon_sym_or] = ACTIONS(7627), [anon_sym_and] = ACTIONS(7627), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7627), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(8971), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6913), - [anon_sym_override] = ACTIONS(6913), - [anon_sym_noexcept] = ACTIONS(6915), - [anon_sym_throw] = ACTIONS(6917), - [anon_sym_requires] = ACTIONS(6919), - [anon_sym_COLON_RBRACK] = ACTIONS(7627), - }, - [STATE(3549)] = { - [sym_string_literal] = STATE(4004), - [sym_template_argument_list] = STATE(5595), - [sym_raw_string_literal] = STATE(4004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(6713), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym_COLON] = ACTIONS(5332), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(5276), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5278), - [anon_sym_or_eq] = ACTIONS(5278), - [anon_sym_xor_eq] = ACTIONS(5278), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - }, - [STATE(3550)] = { - [sym_identifier] = ACTIONS(8629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8631), - [anon_sym_COMMA] = ACTIONS(8631), - [anon_sym_RPAREN] = ACTIONS(8631), - [aux_sym_preproc_if_token2] = ACTIONS(8631), - [aux_sym_preproc_else_token1] = ACTIONS(8631), - [aux_sym_preproc_elif_token1] = ACTIONS(8629), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8631), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8631), - [anon_sym_LPAREN2] = ACTIONS(8631), - [anon_sym_DASH] = ACTIONS(8629), - [anon_sym_PLUS] = ACTIONS(8629), - [anon_sym_STAR] = ACTIONS(8629), - [anon_sym_SLASH] = ACTIONS(8629), - [anon_sym_PERCENT] = ACTIONS(8629), - [anon_sym_PIPE_PIPE] = ACTIONS(8631), - [anon_sym_AMP_AMP] = ACTIONS(8631), - [anon_sym_PIPE] = ACTIONS(8629), - [anon_sym_CARET] = ACTIONS(8629), - [anon_sym_AMP] = ACTIONS(8629), - [anon_sym_EQ_EQ] = ACTIONS(8631), - [anon_sym_BANG_EQ] = ACTIONS(8631), - [anon_sym_GT] = ACTIONS(8629), - [anon_sym_GT_EQ] = ACTIONS(8631), - [anon_sym_LT_EQ] = ACTIONS(8629), - [anon_sym_LT] = ACTIONS(8629), - [anon_sym_LT_LT] = ACTIONS(8629), - [anon_sym_GT_GT] = ACTIONS(8629), - [anon_sym_SEMI] = ACTIONS(8631), - [anon_sym___attribute__] = ACTIONS(8629), - [anon_sym___attribute] = ACTIONS(8629), - [anon_sym_COLON] = ACTIONS(8629), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8631), - [anon_sym_RBRACE] = ACTIONS(8631), - [anon_sym_LBRACK] = ACTIONS(8631), - [anon_sym_EQ] = ACTIONS(8629), - [anon_sym_QMARK] = ACTIONS(8631), - [anon_sym_STAR_EQ] = ACTIONS(8631), - [anon_sym_SLASH_EQ] = ACTIONS(8631), - [anon_sym_PERCENT_EQ] = ACTIONS(8631), - [anon_sym_PLUS_EQ] = ACTIONS(8631), - [anon_sym_DASH_EQ] = ACTIONS(8631), - [anon_sym_LT_LT_EQ] = ACTIONS(8631), - [anon_sym_GT_GT_EQ] = ACTIONS(8631), - [anon_sym_AMP_EQ] = ACTIONS(8631), - [anon_sym_CARET_EQ] = ACTIONS(8631), - [anon_sym_PIPE_EQ] = ACTIONS(8631), - [anon_sym_and_eq] = ACTIONS(8629), - [anon_sym_or_eq] = ACTIONS(8629), - [anon_sym_xor_eq] = ACTIONS(8629), - [anon_sym_LT_EQ_GT] = ACTIONS(8631), - [anon_sym_or] = ACTIONS(8629), - [anon_sym_and] = ACTIONS(8629), - [anon_sym_bitor] = ACTIONS(8629), - [anon_sym_xor] = ACTIONS(8629), - [anon_sym_bitand] = ACTIONS(8629), - [anon_sym_not_eq] = ACTIONS(8629), - [anon_sym_DASH_DASH] = ACTIONS(8631), - [anon_sym_PLUS_PLUS] = ACTIONS(8631), - [anon_sym_DOT] = ACTIONS(8629), - [anon_sym_DOT_STAR] = ACTIONS(8631), - [anon_sym_DASH_GT] = ACTIONS(8631), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8629), - [anon_sym_override] = ACTIONS(8629), - [anon_sym_requires] = ACTIONS(8629), - [anon_sym_COLON_RBRACK] = ACTIONS(8631), - }, - [STATE(3551)] = { - [sym_attribute_specifier] = STATE(4374), - [sym_attribute_declaration] = STATE(4622), - [sym_gnu_asm_expression] = STATE(8992), - [sym_virtual_specifier] = STATE(4709), - [sym__function_exception_specification] = STATE(3980), - [sym__function_attributes_end] = STATE(5867), - [sym__function_postfix] = STATE(5258), - [sym_trailing_return_type] = STATE(5718), - [sym_noexcept] = STATE(3980), - [sym_throw_specifier] = STATE(3980), - [sym_requires_clause] = STATE(5258), - [aux_sym_type_definition_repeat1] = STATE(4374), - [aux_sym_attributed_declarator_repeat1] = STATE(4622), - [aux_sym__function_postfix_repeat1] = STATE(4709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7544), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7544), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7544), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7544), - [anon_sym_GT_GT] = ACTIONS(7544), - [anon_sym_SEMI] = ACTIONS(7544), - [anon_sym___attribute__] = ACTIONS(6906), - [anon_sym___attribute] = ACTIONS(6859), - [anon_sym_COLON] = ACTIONS(7546), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), - [anon_sym_RBRACE] = ACTIONS(7544), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7544), - [anon_sym_and] = ACTIONS(7544), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7544), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(8818), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6913), - [anon_sym_override] = ACTIONS(6913), - [anon_sym_noexcept] = ACTIONS(6915), - [anon_sym_throw] = ACTIONS(6917), - [anon_sym_requires] = ACTIONS(6919), - [anon_sym_COLON_RBRACK] = ACTIONS(7544), - }, - [STATE(3552)] = { - [sym_string_literal] = STATE(3552), - [sym_raw_string_literal] = STATE(3552), - [aux_sym_concatenated_string_repeat1] = STATE(3552), - [sym_identifier] = ACTIONS(9046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8045), - [anon_sym_COMMA] = ACTIONS(8045), - [anon_sym_RPAREN] = ACTIONS(8045), - [anon_sym_LPAREN2] = ACTIONS(8045), - [anon_sym_DASH] = ACTIONS(8047), - [anon_sym_PLUS] = ACTIONS(8047), - [anon_sym_STAR] = ACTIONS(8047), - [anon_sym_SLASH] = ACTIONS(8047), - [anon_sym_PERCENT] = ACTIONS(8047), - [anon_sym_PIPE_PIPE] = ACTIONS(8045), - [anon_sym_AMP_AMP] = ACTIONS(8045), - [anon_sym_PIPE] = ACTIONS(8047), - [anon_sym_CARET] = ACTIONS(8047), - [anon_sym_AMP] = ACTIONS(8047), - [anon_sym_EQ_EQ] = ACTIONS(8045), - [anon_sym_BANG_EQ] = ACTIONS(8045), - [anon_sym_GT] = ACTIONS(8047), - [anon_sym_GT_EQ] = ACTIONS(8045), - [anon_sym_LT_EQ] = ACTIONS(8047), - [anon_sym_LT] = ACTIONS(8047), - [anon_sym_LT_LT] = ACTIONS(8047), - [anon_sym_GT_GT] = ACTIONS(8047), - [anon_sym_LBRACK] = ACTIONS(8045), - [anon_sym_EQ] = ACTIONS(8047), - [anon_sym_QMARK] = ACTIONS(8045), - [anon_sym_STAR_EQ] = ACTIONS(8045), - [anon_sym_SLASH_EQ] = ACTIONS(8045), - [anon_sym_PERCENT_EQ] = ACTIONS(8045), - [anon_sym_PLUS_EQ] = ACTIONS(8045), - [anon_sym_DASH_EQ] = ACTIONS(8045), - [anon_sym_LT_LT_EQ] = ACTIONS(8045), - [anon_sym_GT_GT_EQ] = ACTIONS(8045), - [anon_sym_AMP_EQ] = ACTIONS(8045), - [anon_sym_CARET_EQ] = ACTIONS(8045), - [anon_sym_PIPE_EQ] = ACTIONS(8045), - [anon_sym_and_eq] = ACTIONS(8047), - [anon_sym_or_eq] = ACTIONS(8047), - [anon_sym_xor_eq] = ACTIONS(8047), - [anon_sym_LT_EQ_GT] = ACTIONS(8045), - [anon_sym_or] = ACTIONS(8047), - [anon_sym_and] = ACTIONS(8047), - [anon_sym_bitor] = ACTIONS(8047), - [anon_sym_xor] = ACTIONS(8047), - [anon_sym_bitand] = ACTIONS(8047), - [anon_sym_not_eq] = ACTIONS(8047), - [anon_sym_DASH_DASH] = ACTIONS(8045), - [anon_sym_PLUS_PLUS] = ACTIONS(8045), - [anon_sym_DOT] = ACTIONS(8047), - [anon_sym_DOT_STAR] = ACTIONS(8045), - [anon_sym_DASH_GT] = ACTIONS(8047), - [anon_sym_L_DQUOTE] = ACTIONS(9049), - [anon_sym_u_DQUOTE] = ACTIONS(9049), - [anon_sym_U_DQUOTE] = ACTIONS(9049), - [anon_sym_u8_DQUOTE] = ACTIONS(9049), - [anon_sym_DQUOTE] = ACTIONS(9049), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(9052), - [anon_sym_LR_DQUOTE] = ACTIONS(9052), - [anon_sym_uR_DQUOTE] = ACTIONS(9052), - [anon_sym_UR_DQUOTE] = ACTIONS(9052), - [anon_sym_u8R_DQUOTE] = ACTIONS(9052), - [anon_sym_DASH_GT_STAR] = ACTIONS(8045), - [sym_literal_suffix] = ACTIONS(8047), - }, - [STATE(3553)] = { - [sym_type_qualifier] = STATE(3553), - [sym_alignas_qualifier] = STATE(3785), - [aux_sym__type_definition_type_repeat1] = STATE(3553), - [sym_identifier] = ACTIONS(6525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_LPAREN2] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6525), - [anon_sym_PLUS] = ACTIONS(6525), - [anon_sym_STAR] = ACTIONS(6527), - [anon_sym_SLASH] = ACTIONS(6525), - [anon_sym_PERCENT] = ACTIONS(6527), - [anon_sym_PIPE_PIPE] = ACTIONS(6527), - [anon_sym_AMP_AMP] = ACTIONS(6527), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_CARET] = ACTIONS(6527), - [anon_sym_AMP] = ACTIONS(6525), - [anon_sym_EQ_EQ] = ACTIONS(6527), - [anon_sym_BANG_EQ] = ACTIONS(6527), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6525), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_LT_LT] = ACTIONS(6527), - [anon_sym_GT_GT] = ACTIONS(6525), - [anon_sym___extension__] = ACTIONS(9055), - [anon_sym___attribute__] = ACTIONS(6525), - [anon_sym___attribute] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6527), - [anon_sym_signed] = ACTIONS(6525), - [anon_sym_unsigned] = ACTIONS(6525), - [anon_sym_long] = ACTIONS(6525), - [anon_sym_short] = ACTIONS(6525), - [anon_sym_LBRACK] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(9055), - [anon_sym_constexpr] = ACTIONS(9055), - [anon_sym_volatile] = ACTIONS(9055), - [anon_sym_restrict] = ACTIONS(9055), - [anon_sym___restrict__] = ACTIONS(9055), - [anon_sym__Atomic] = ACTIONS(9055), - [anon_sym__Noreturn] = ACTIONS(9055), - [anon_sym_noreturn] = ACTIONS(9055), - [anon_sym__Nonnull] = ACTIONS(9055), - [anon_sym_mutable] = ACTIONS(9055), - [anon_sym_constinit] = ACTIONS(9055), - [anon_sym_consteval] = ACTIONS(9055), - [anon_sym_alignas] = ACTIONS(9058), - [anon_sym__Alignas] = ACTIONS(9058), - [sym_primitive_type] = ACTIONS(6525), - [anon_sym_QMARK] = ACTIONS(6527), - [anon_sym_LT_EQ_GT] = ACTIONS(6527), - [anon_sym_or] = ACTIONS(6525), - [anon_sym_and] = ACTIONS(6525), - [anon_sym_bitor] = ACTIONS(6525), - [anon_sym_xor] = ACTIONS(6525), - [anon_sym_bitand] = ACTIONS(6525), - [anon_sym_not_eq] = ACTIONS(6525), - [anon_sym_DASH_DASH] = ACTIONS(6527), - [anon_sym_PLUS_PLUS] = ACTIONS(6527), - [anon_sym_DOT] = ACTIONS(6525), - [anon_sym_DOT_STAR] = ACTIONS(6527), - [anon_sym_DASH_GT] = ACTIONS(6527), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6525), - [anon_sym_override] = ACTIONS(6525), - [anon_sym_GT2] = ACTIONS(6527), - [anon_sym_requires] = ACTIONS(6525), - }, - [STATE(3554)] = { - [sym_template_argument_list] = STATE(2824), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6208), - [anon_sym_COMMA] = ACTIONS(6208), - [anon_sym_RPAREN] = ACTIONS(6208), - [anon_sym_LPAREN2] = ACTIONS(6208), - [anon_sym_DASH] = ACTIONS(6201), - [anon_sym_PLUS] = ACTIONS(6201), - [anon_sym_STAR] = ACTIONS(6208), - [anon_sym_SLASH] = ACTIONS(6201), - [anon_sym_PERCENT] = ACTIONS(6208), - [anon_sym_PIPE_PIPE] = ACTIONS(6208), - [anon_sym_AMP_AMP] = ACTIONS(6208), - [anon_sym_PIPE] = ACTIONS(6201), - [anon_sym_CARET] = ACTIONS(6208), - [anon_sym_AMP] = ACTIONS(6201), - [anon_sym_EQ_EQ] = ACTIONS(6208), - [anon_sym_BANG_EQ] = ACTIONS(6208), - [anon_sym_GT] = ACTIONS(6201), - [anon_sym_GT_EQ] = ACTIONS(6208), - [anon_sym_LT_EQ] = ACTIONS(6201), - [anon_sym_LT] = ACTIONS(9061), - [anon_sym_LT_LT] = ACTIONS(6208), - [anon_sym_GT_GT] = ACTIONS(6208), - [anon_sym_SEMI] = ACTIONS(6208), - [anon_sym___extension__] = ACTIONS(6208), - [anon_sym___attribute__] = ACTIONS(6208), - [anon_sym___attribute] = ACTIONS(6201), - [anon_sym_COLON] = ACTIONS(6201), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6208), - [anon_sym_LBRACE] = ACTIONS(6208), - [anon_sym_RBRACE] = ACTIONS(6208), - [anon_sym_LBRACK] = ACTIONS(6208), - [anon_sym_const] = ACTIONS(6201), - [anon_sym_constexpr] = ACTIONS(6208), - [anon_sym_volatile] = ACTIONS(6208), - [anon_sym_restrict] = ACTIONS(6208), - [anon_sym___restrict__] = ACTIONS(6208), - [anon_sym__Atomic] = ACTIONS(6208), - [anon_sym__Noreturn] = ACTIONS(6208), - [anon_sym_noreturn] = ACTIONS(6208), - [anon_sym__Nonnull] = ACTIONS(6208), - [anon_sym_mutable] = ACTIONS(6208), - [anon_sym_constinit] = ACTIONS(6208), - [anon_sym_consteval] = ACTIONS(6208), - [anon_sym_alignas] = ACTIONS(6208), - [anon_sym__Alignas] = ACTIONS(6208), - [anon_sym_QMARK] = ACTIONS(6208), - [anon_sym_LT_EQ_GT] = ACTIONS(6208), - [anon_sym_or] = ACTIONS(6208), - [anon_sym_and] = ACTIONS(6208), - [anon_sym_bitor] = ACTIONS(6208), - [anon_sym_xor] = ACTIONS(6208), - [anon_sym_bitand] = ACTIONS(6208), - [anon_sym_not_eq] = ACTIONS(6208), - [anon_sym_DASH_DASH] = ACTIONS(6208), - [anon_sym_PLUS_PLUS] = ACTIONS(6208), - [anon_sym_DOT] = ACTIONS(6201), - [anon_sym_DOT_STAR] = ACTIONS(6208), - [anon_sym_DASH_GT] = ACTIONS(6208), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6208), - [anon_sym_decltype] = ACTIONS(6208), - [anon_sym_final] = ACTIONS(6208), - [anon_sym_override] = ACTIONS(6208), - [anon_sym_requires] = ACTIONS(6208), - [anon_sym_COLON_RBRACK] = ACTIONS(6208), - }, - [STATE(3555)] = { - [sym_identifier] = ACTIONS(6246), - [anon_sym_LPAREN2] = ACTIONS(6248), - [anon_sym_TILDE] = ACTIONS(6248), - [anon_sym_STAR] = ACTIONS(6248), - [anon_sym_PIPE_PIPE] = ACTIONS(6248), - [anon_sym_AMP_AMP] = ACTIONS(6248), - [anon_sym_AMP] = ACTIONS(6246), - [anon_sym___extension__] = ACTIONS(6246), - [anon_sym_virtual] = ACTIONS(6246), - [anon_sym_extern] = ACTIONS(6246), - [anon_sym___attribute__] = ACTIONS(6246), - [anon_sym___attribute] = ACTIONS(6246), - [anon_sym_using] = ACTIONS(6246), - [anon_sym_COLON_COLON] = ACTIONS(6248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6248), - [anon_sym___declspec] = ACTIONS(6246), - [anon_sym___based] = ACTIONS(6246), - [anon_sym___cdecl] = ACTIONS(6246), - [anon_sym___clrcall] = ACTIONS(6246), - [anon_sym___stdcall] = ACTIONS(6246), - [anon_sym___fastcall] = ACTIONS(6246), - [anon_sym___thiscall] = ACTIONS(6246), - [anon_sym___vectorcall] = ACTIONS(6246), - [anon_sym_signed] = ACTIONS(6246), - [anon_sym_unsigned] = ACTIONS(6246), - [anon_sym_long] = ACTIONS(6246), - [anon_sym_short] = ACTIONS(6246), - [anon_sym_LBRACK] = ACTIONS(6246), - [anon_sym_static] = ACTIONS(6246), - [anon_sym_register] = ACTIONS(6246), - [anon_sym_inline] = ACTIONS(6246), - [anon_sym___inline] = ACTIONS(6246), - [anon_sym___inline__] = ACTIONS(6246), - [anon_sym___forceinline] = ACTIONS(6246), - [anon_sym_thread_local] = ACTIONS(6246), - [anon_sym___thread] = ACTIONS(6246), - [anon_sym_const] = ACTIONS(6246), - [anon_sym_constexpr] = ACTIONS(6246), - [anon_sym_volatile] = ACTIONS(6246), - [anon_sym_restrict] = ACTIONS(6246), - [anon_sym___restrict__] = ACTIONS(6246), - [anon_sym__Atomic] = ACTIONS(6246), - [anon_sym__Noreturn] = ACTIONS(6246), - [anon_sym_noreturn] = ACTIONS(6246), - [anon_sym__Nonnull] = ACTIONS(6246), - [anon_sym_mutable] = ACTIONS(6246), - [anon_sym_constinit] = ACTIONS(6246), - [anon_sym_consteval] = ACTIONS(6246), - [anon_sym_alignas] = ACTIONS(6246), - [anon_sym__Alignas] = ACTIONS(6246), - [sym_primitive_type] = ACTIONS(6246), - [anon_sym_enum] = ACTIONS(6246), - [anon_sym_class] = ACTIONS(6246), - [anon_sym_struct] = ACTIONS(6246), - [anon_sym_union] = ACTIONS(6246), - [anon_sym_or] = ACTIONS(6246), - [anon_sym_and] = ACTIONS(6246), - [anon_sym_typename] = ACTIONS(6246), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6246), - [anon_sym_decltype] = ACTIONS(6246), - [anon_sym_explicit] = ACTIONS(6246), - [anon_sym_template] = ACTIONS(6246), - [anon_sym_operator] = ACTIONS(6246), - [anon_sym_friend] = ACTIONS(6246), - [anon_sym_concept] = ACTIONS(6246), - [anon_sym_LBRACK_COLON] = ACTIONS(6248), - }, - [STATE(3556)] = { - [sym_identifier] = ACTIONS(6746), - [anon_sym_LPAREN2] = ACTIONS(6751), - [anon_sym_TILDE] = ACTIONS(6751), - [anon_sym_STAR] = ACTIONS(6751), - [anon_sym_PIPE_PIPE] = ACTIONS(6751), - [anon_sym_AMP_AMP] = ACTIONS(6751), - [anon_sym_AMP] = ACTIONS(6746), - [anon_sym___extension__] = ACTIONS(6746), - [anon_sym_virtual] = ACTIONS(6746), - [anon_sym_extern] = ACTIONS(6746), - [anon_sym___attribute__] = ACTIONS(6746), - [anon_sym___attribute] = ACTIONS(6746), - [anon_sym_using] = ACTIONS(6746), - [anon_sym_COLON_COLON] = ACTIONS(6751), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6751), - [anon_sym___declspec] = ACTIONS(6746), - [anon_sym___based] = ACTIONS(6746), - [anon_sym___cdecl] = ACTIONS(6746), - [anon_sym___clrcall] = ACTIONS(6746), - [anon_sym___stdcall] = ACTIONS(6746), - [anon_sym___fastcall] = ACTIONS(6746), - [anon_sym___thiscall] = ACTIONS(6746), - [anon_sym___vectorcall] = ACTIONS(6746), - [anon_sym_signed] = ACTIONS(6746), - [anon_sym_unsigned] = ACTIONS(6746), - [anon_sym_long] = ACTIONS(6746), - [anon_sym_short] = ACTIONS(6746), - [anon_sym_LBRACK] = ACTIONS(6746), - [anon_sym_static] = ACTIONS(6746), - [anon_sym_register] = ACTIONS(6746), - [anon_sym_inline] = ACTIONS(6746), - [anon_sym___inline] = ACTIONS(6746), - [anon_sym___inline__] = ACTIONS(6746), - [anon_sym___forceinline] = ACTIONS(6746), - [anon_sym_thread_local] = ACTIONS(6746), - [anon_sym___thread] = ACTIONS(6746), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6746), - [anon_sym_volatile] = ACTIONS(6746), - [anon_sym_restrict] = ACTIONS(6746), - [anon_sym___restrict__] = ACTIONS(6746), - [anon_sym__Atomic] = ACTIONS(6746), - [anon_sym__Noreturn] = ACTIONS(6746), - [anon_sym_noreturn] = ACTIONS(6746), - [anon_sym__Nonnull] = ACTIONS(6746), - [anon_sym_mutable] = ACTIONS(6746), - [anon_sym_constinit] = ACTIONS(6746), - [anon_sym_consteval] = ACTIONS(6746), - [anon_sym_alignas] = ACTIONS(6746), - [anon_sym__Alignas] = ACTIONS(6746), - [sym_primitive_type] = ACTIONS(6746), - [anon_sym_enum] = ACTIONS(6746), - [anon_sym_class] = ACTIONS(6746), - [anon_sym_struct] = ACTIONS(6746), - [anon_sym_union] = ACTIONS(6746), - [anon_sym_or] = ACTIONS(6746), - [anon_sym_and] = ACTIONS(6746), - [anon_sym_typename] = ACTIONS(6746), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6746), - [anon_sym_decltype] = ACTIONS(6746), - [anon_sym_explicit] = ACTIONS(6746), - [anon_sym_template] = ACTIONS(6746), - [anon_sym_operator] = ACTIONS(6746), - [anon_sym_friend] = ACTIONS(6746), - [anon_sym_concept] = ACTIONS(6746), - [anon_sym_LBRACK_COLON] = ACTIONS(6751), - }, - [STATE(3557)] = { - [sym_string_literal] = STATE(3531), - [sym_raw_string_literal] = STATE(3531), - [aux_sym_concatenated_string_repeat1] = STATE(3531), - [sym_identifier] = ACTIONS(9064), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8125), - [anon_sym_COMMA] = ACTIONS(8125), - [anon_sym_RPAREN] = ACTIONS(8125), - [anon_sym_LPAREN2] = ACTIONS(8125), - [anon_sym_DASH] = ACTIONS(8127), - [anon_sym_PLUS] = ACTIONS(8127), - [anon_sym_STAR] = ACTIONS(8127), - [anon_sym_SLASH] = ACTIONS(8127), - [anon_sym_PERCENT] = ACTIONS(8127), - [anon_sym_PIPE_PIPE] = ACTIONS(8125), - [anon_sym_AMP_AMP] = ACTIONS(8125), - [anon_sym_PIPE] = ACTIONS(8127), - [anon_sym_CARET] = ACTIONS(8127), - [anon_sym_AMP] = ACTIONS(8127), - [anon_sym_EQ_EQ] = ACTIONS(8125), - [anon_sym_BANG_EQ] = ACTIONS(8125), - [anon_sym_GT] = ACTIONS(8127), - [anon_sym_GT_EQ] = ACTIONS(8125), - [anon_sym_LT_EQ] = ACTIONS(8127), - [anon_sym_LT] = ACTIONS(8127), - [anon_sym_LT_LT] = ACTIONS(8127), - [anon_sym_GT_GT] = ACTIONS(8127), - [anon_sym_LBRACK] = ACTIONS(8125), - [anon_sym_EQ] = ACTIONS(8127), - [anon_sym_QMARK] = ACTIONS(8125), - [anon_sym_STAR_EQ] = ACTIONS(8125), - [anon_sym_SLASH_EQ] = ACTIONS(8125), - [anon_sym_PERCENT_EQ] = ACTIONS(8125), - [anon_sym_PLUS_EQ] = ACTIONS(8125), - [anon_sym_DASH_EQ] = ACTIONS(8125), - [anon_sym_LT_LT_EQ] = ACTIONS(8125), - [anon_sym_GT_GT_EQ] = ACTIONS(8125), - [anon_sym_AMP_EQ] = ACTIONS(8125), - [anon_sym_CARET_EQ] = ACTIONS(8125), - [anon_sym_PIPE_EQ] = ACTIONS(8125), - [anon_sym_and_eq] = ACTIONS(8127), - [anon_sym_or_eq] = ACTIONS(8127), - [anon_sym_xor_eq] = ACTIONS(8127), - [anon_sym_LT_EQ_GT] = ACTIONS(8125), - [anon_sym_or] = ACTIONS(8127), - [anon_sym_and] = ACTIONS(8127), - [anon_sym_bitor] = ACTIONS(8127), - [anon_sym_xor] = ACTIONS(8127), - [anon_sym_bitand] = ACTIONS(8127), - [anon_sym_not_eq] = ACTIONS(8127), - [anon_sym_DASH_DASH] = ACTIONS(8125), - [anon_sym_PLUS_PLUS] = ACTIONS(8125), - [anon_sym_DOT] = ACTIONS(8127), - [anon_sym_DOT_STAR] = ACTIONS(8125), - [anon_sym_DASH_GT] = ACTIONS(8127), - [anon_sym_L_DQUOTE] = ACTIONS(6517), - [anon_sym_u_DQUOTE] = ACTIONS(6517), - [anon_sym_U_DQUOTE] = ACTIONS(6517), - [anon_sym_u8_DQUOTE] = ACTIONS(6517), - [anon_sym_DQUOTE] = ACTIONS(6517), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6519), - [anon_sym_LR_DQUOTE] = ACTIONS(6519), - [anon_sym_uR_DQUOTE] = ACTIONS(6519), - [anon_sym_UR_DQUOTE] = ACTIONS(6519), - [anon_sym_u8R_DQUOTE] = ACTIONS(6519), - [anon_sym_DASH_GT_STAR] = ACTIONS(8125), - [sym_literal_suffix] = ACTIONS(8127), - }, - [STATE(3558)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3287), - [sym_identifier] = ACTIONS(6798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [aux_sym_preproc_if_token2] = ACTIONS(6800), - [aux_sym_preproc_else_token1] = ACTIONS(6800), - [aux_sym_preproc_elif_token1] = ACTIONS(6798), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6800), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6800), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6800), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6800), - [anon_sym_GT_GT] = ACTIONS(6800), - [anon_sym___extension__] = ACTIONS(6798), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_signed] = ACTIONS(8788), - [anon_sym_unsigned] = ACTIONS(8788), - [anon_sym_long] = ACTIONS(8788), - [anon_sym_short] = ACTIONS(8788), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_RBRACK] = ACTIONS(6800), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6798), - [anon_sym_volatile] = ACTIONS(6798), - [anon_sym_restrict] = ACTIONS(6798), - [anon_sym___restrict__] = ACTIONS(6798), - [anon_sym__Atomic] = ACTIONS(6798), - [anon_sym__Noreturn] = ACTIONS(6798), - [anon_sym_noreturn] = ACTIONS(6798), - [anon_sym__Nonnull] = ACTIONS(6798), - [anon_sym_mutable] = ACTIONS(6798), - [anon_sym_constinit] = ACTIONS(6798), - [anon_sym_consteval] = ACTIONS(6798), - [anon_sym_alignas] = ACTIONS(6798), - [anon_sym__Alignas] = ACTIONS(6798), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6798), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6798), - [anon_sym_not_eq] = ACTIONS(6798), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6798), - [anon_sym_override] = ACTIONS(6798), - [anon_sym_requires] = ACTIONS(6798), - }, - [STATE(3559)] = { - [sym_type_qualifier] = STATE(3559), - [sym_alignas_qualifier] = STATE(3736), - [aux_sym__type_definition_type_repeat1] = STATE(3559), - [sym_identifier] = ACTIONS(6525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_LPAREN2] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6525), - [anon_sym_PLUS] = ACTIONS(6525), - [anon_sym_STAR] = ACTIONS(6527), - [anon_sym_SLASH] = ACTIONS(6525), - [anon_sym_PERCENT] = ACTIONS(6527), - [anon_sym_PIPE_PIPE] = ACTIONS(6527), - [anon_sym_AMP_AMP] = ACTIONS(6527), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_CARET] = ACTIONS(6527), - [anon_sym_AMP] = ACTIONS(6525), - [anon_sym_EQ_EQ] = ACTIONS(6527), - [anon_sym_BANG_EQ] = ACTIONS(6527), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6527), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_LT_LT] = ACTIONS(6527), - [anon_sym_GT_GT] = ACTIONS(6527), - [anon_sym___extension__] = ACTIONS(9066), - [anon_sym___attribute__] = ACTIONS(6525), - [anon_sym___attribute] = ACTIONS(6525), - [anon_sym_LBRACE] = ACTIONS(6527), - [anon_sym_signed] = ACTIONS(6525), - [anon_sym_unsigned] = ACTIONS(6525), - [anon_sym_long] = ACTIONS(6525), - [anon_sym_short] = ACTIONS(6525), - [anon_sym_LBRACK] = ACTIONS(6527), - [anon_sym_RBRACK] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(9066), - [anon_sym_constexpr] = ACTIONS(9066), - [anon_sym_volatile] = ACTIONS(9066), - [anon_sym_restrict] = ACTIONS(9066), - [anon_sym___restrict__] = ACTIONS(9066), - [anon_sym__Atomic] = ACTIONS(9066), - [anon_sym__Noreturn] = ACTIONS(9066), - [anon_sym_noreturn] = ACTIONS(9066), - [anon_sym__Nonnull] = ACTIONS(9066), - [anon_sym_mutable] = ACTIONS(9066), - [anon_sym_constinit] = ACTIONS(9066), - [anon_sym_consteval] = ACTIONS(9066), - [anon_sym_alignas] = ACTIONS(9069), - [anon_sym__Alignas] = ACTIONS(9069), - [sym_primitive_type] = ACTIONS(6525), - [anon_sym_QMARK] = ACTIONS(6527), - [anon_sym_LT_EQ_GT] = ACTIONS(6527), - [anon_sym_or] = ACTIONS(6525), - [anon_sym_and] = ACTIONS(6525), - [anon_sym_bitor] = ACTIONS(6525), - [anon_sym_xor] = ACTIONS(6525), - [anon_sym_bitand] = ACTIONS(6525), - [anon_sym_not_eq] = ACTIONS(6525), - [anon_sym_DASH_DASH] = ACTIONS(6527), - [anon_sym_PLUS_PLUS] = ACTIONS(6527), - [anon_sym_DOT] = ACTIONS(6525), - [anon_sym_DOT_STAR] = ACTIONS(6527), - [anon_sym_DASH_GT] = ACTIONS(6527), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6525), - [anon_sym_override] = ACTIONS(6525), - [anon_sym_requires] = ACTIONS(6525), - }, - [STATE(3560)] = { - [sym__abstract_declarator] = STATE(4089), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_parameter_list] = STATE(1843), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9072), - [anon_sym_COMMA] = ACTIONS(9072), - [anon_sym_RPAREN] = ACTIONS(9072), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(9074), - [anon_sym_PLUS] = ACTIONS(9074), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(9074), - [anon_sym_PERCENT] = ACTIONS(9074), - [anon_sym_PIPE_PIPE] = ACTIONS(9072), - [anon_sym_AMP_AMP] = ACTIONS(6481), - [anon_sym_PIPE] = ACTIONS(9074), - [anon_sym_CARET] = ACTIONS(9074), - [anon_sym_AMP] = ACTIONS(6483), - [anon_sym_EQ_EQ] = ACTIONS(9072), - [anon_sym_BANG_EQ] = ACTIONS(9072), - [anon_sym_GT] = ACTIONS(9074), - [anon_sym_GT_EQ] = ACTIONS(9072), - [anon_sym_LT_EQ] = ACTIONS(9074), - [anon_sym_LT] = ACTIONS(9074), - [anon_sym_LT_LT] = ACTIONS(9074), - [anon_sym_GT_GT] = ACTIONS(9074), - [anon_sym_SEMI] = ACTIONS(9072), - [anon_sym_COLON] = ACTIONS(9074), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9072), - [anon_sym_RBRACE] = ACTIONS(9072), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(9074), - [anon_sym_QMARK] = ACTIONS(9072), - [anon_sym_STAR_EQ] = ACTIONS(9072), - [anon_sym_SLASH_EQ] = ACTIONS(9072), - [anon_sym_PERCENT_EQ] = ACTIONS(9072), - [anon_sym_PLUS_EQ] = ACTIONS(9072), - [anon_sym_DASH_EQ] = ACTIONS(9072), - [anon_sym_LT_LT_EQ] = ACTIONS(9072), - [anon_sym_GT_GT_EQ] = ACTIONS(9072), - [anon_sym_AMP_EQ] = ACTIONS(9072), - [anon_sym_CARET_EQ] = ACTIONS(9072), - [anon_sym_PIPE_EQ] = ACTIONS(9072), - [anon_sym_and_eq] = ACTIONS(9072), - [anon_sym_or_eq] = ACTIONS(9072), - [anon_sym_xor_eq] = ACTIONS(9072), - [anon_sym_LT_EQ_GT] = ACTIONS(9072), - [anon_sym_or] = ACTIONS(9074), - [anon_sym_and] = ACTIONS(9074), - [anon_sym_bitor] = ACTIONS(9072), - [anon_sym_xor] = ACTIONS(9074), - [anon_sym_bitand] = ACTIONS(9072), - [anon_sym_not_eq] = ACTIONS(9072), - [anon_sym_DASH_DASH] = ACTIONS(9072), - [anon_sym_PLUS_PLUS] = ACTIONS(9072), - [anon_sym_DOT] = ACTIONS(9074), - [anon_sym_DOT_STAR] = ACTIONS(9072), - [anon_sym_DASH_GT] = ACTIONS(9072), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9072), - [anon_sym_override] = ACTIONS(9072), - [anon_sym_requires] = ACTIONS(9072), - [anon_sym_COLON_RBRACK] = ACTIONS(9072), - }, - [STATE(3561)] = { - [sym_decltype_auto] = STATE(3030), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6800), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6800), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6800), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6800), - [anon_sym_GT_GT] = ACTIONS(6800), - [anon_sym_SEMI] = ACTIONS(6800), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym___attribute__] = ACTIONS(6800), - [anon_sym___attribute] = ACTIONS(6798), - [anon_sym_COLON] = ACTIONS(6798), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_RBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6800), - [anon_sym_and] = ACTIONS(6800), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6800), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(9076), - [anon_sym_decltype] = ACTIONS(6507), - [anon_sym_final] = ACTIONS(6800), - [anon_sym_override] = ACTIONS(6800), - [anon_sym_requires] = ACTIONS(6800), - [anon_sym_COLON_RBRACK] = ACTIONS(6800), - }, - [STATE(3562)] = { - [sym_string_literal] = STATE(4004), - [sym_template_argument_list] = STATE(5595), - [sym_raw_string_literal] = STATE(4004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(6713), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym_COLON] = ACTIONS(5322), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(5276), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5278), - [anon_sym_or_eq] = ACTIONS(5278), - [anon_sym_xor_eq] = ACTIONS(5278), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - }, - [STATE(3563)] = { - [sym_string_literal] = STATE(4004), - [sym_template_argument_list] = STATE(5595), - [sym_raw_string_literal] = STATE(4004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(6713), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym_COLON] = ACTIONS(5324), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(5276), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5278), - [anon_sym_or_eq] = ACTIONS(5278), - [anon_sym_xor_eq] = ACTIONS(5278), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - }, - [STATE(3564)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(8384), - [anon_sym_COMMA] = ACTIONS(8384), - [anon_sym_RPAREN] = ACTIONS(8384), - [anon_sym_LPAREN2] = ACTIONS(8384), - [anon_sym_DASH] = ACTIONS(8382), - [anon_sym_PLUS] = ACTIONS(8382), - [anon_sym_STAR] = ACTIONS(8382), - [anon_sym_SLASH] = ACTIONS(8382), - [anon_sym_PERCENT] = ACTIONS(8382), - [anon_sym_PIPE_PIPE] = ACTIONS(8384), - [anon_sym_AMP_AMP] = ACTIONS(8384), - [anon_sym_PIPE] = ACTIONS(8382), - [anon_sym_CARET] = ACTIONS(8382), - [anon_sym_AMP] = ACTIONS(8382), - [anon_sym_EQ_EQ] = ACTIONS(8384), - [anon_sym_BANG_EQ] = ACTIONS(8384), - [anon_sym_GT] = ACTIONS(8382), - [anon_sym_GT_EQ] = ACTIONS(8384), - [anon_sym_LT_EQ] = ACTIONS(8382), - [anon_sym_LT] = ACTIONS(8382), - [anon_sym_LT_LT] = ACTIONS(8382), - [anon_sym_GT_GT] = ACTIONS(8382), - [anon_sym_SEMI] = ACTIONS(8384), - [anon_sym_COLON] = ACTIONS(8382), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8384), - [anon_sym_RBRACE] = ACTIONS(8384), - [anon_sym_LBRACK] = ACTIONS(8384), - [anon_sym_EQ] = ACTIONS(8382), - [anon_sym_QMARK] = ACTIONS(8384), - [anon_sym_STAR_EQ] = ACTIONS(8384), - [anon_sym_SLASH_EQ] = ACTIONS(8384), - [anon_sym_PERCENT_EQ] = ACTIONS(8384), - [anon_sym_PLUS_EQ] = ACTIONS(8384), - [anon_sym_DASH_EQ] = ACTIONS(8384), - [anon_sym_LT_LT_EQ] = ACTIONS(8384), - [anon_sym_GT_GT_EQ] = ACTIONS(8384), - [anon_sym_AMP_EQ] = ACTIONS(8384), - [anon_sym_CARET_EQ] = ACTIONS(8384), - [anon_sym_PIPE_EQ] = ACTIONS(8384), - [anon_sym_and_eq] = ACTIONS(8382), - [anon_sym_or_eq] = ACTIONS(8382), - [anon_sym_xor_eq] = ACTIONS(8382), - [anon_sym_LT_EQ_GT] = ACTIONS(8384), - [anon_sym_or] = ACTIONS(8382), - [anon_sym_and] = ACTIONS(8382), - [anon_sym_bitor] = ACTIONS(8382), - [anon_sym_xor] = ACTIONS(8382), - [anon_sym_bitand] = ACTIONS(8382), - [anon_sym_not_eq] = ACTIONS(8382), - [anon_sym_DASH_DASH] = ACTIONS(8384), - [anon_sym_PLUS_PLUS] = ACTIONS(8384), - [anon_sym_DOT] = ACTIONS(8382), - [anon_sym_DOT_STAR] = ACTIONS(8384), - [anon_sym_DASH_GT] = ACTIONS(8384), - [anon_sym_L_DQUOTE] = ACTIONS(8384), - [anon_sym_u_DQUOTE] = ACTIONS(8384), - [anon_sym_U_DQUOTE] = ACTIONS(8384), - [anon_sym_u8_DQUOTE] = ACTIONS(8384), - [anon_sym_DQUOTE] = ACTIONS(8384), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8384), - [anon_sym_LR_DQUOTE] = ACTIONS(8384), - [anon_sym_uR_DQUOTE] = ACTIONS(8384), - [anon_sym_UR_DQUOTE] = ACTIONS(8384), - [anon_sym_u8R_DQUOTE] = ACTIONS(8384), - [anon_sym_COLON_RBRACK] = ACTIONS(8384), - [sym_literal_suffix] = ACTIONS(8382), - }, - [STATE(3565)] = { - [sym_identifier] = ACTIONS(9078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9080), - [anon_sym_COMMA] = ACTIONS(9080), - [anon_sym_RPAREN] = ACTIONS(9080), - [aux_sym_preproc_if_token2] = ACTIONS(9080), - [aux_sym_preproc_else_token1] = ACTIONS(9080), - [aux_sym_preproc_elif_token1] = ACTIONS(9078), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9080), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9080), - [anon_sym_LPAREN2] = ACTIONS(9080), - [anon_sym_DASH] = ACTIONS(9078), - [anon_sym_PLUS] = ACTIONS(9078), - [anon_sym_STAR] = ACTIONS(9078), - [anon_sym_SLASH] = ACTIONS(9078), - [anon_sym_PERCENT] = ACTIONS(9078), - [anon_sym_PIPE_PIPE] = ACTIONS(9080), - [anon_sym_AMP_AMP] = ACTIONS(9080), - [anon_sym_PIPE] = ACTIONS(9078), - [anon_sym_CARET] = ACTIONS(9078), - [anon_sym_AMP] = ACTIONS(9078), - [anon_sym_EQ_EQ] = ACTIONS(9080), - [anon_sym_BANG_EQ] = ACTIONS(9080), - [anon_sym_GT] = ACTIONS(9078), - [anon_sym_GT_EQ] = ACTIONS(9080), - [anon_sym_LT_EQ] = ACTIONS(9078), - [anon_sym_LT] = ACTIONS(9078), - [anon_sym_LT_LT] = ACTIONS(9078), - [anon_sym_GT_GT] = ACTIONS(9078), - [anon_sym_SEMI] = ACTIONS(9080), - [anon_sym___attribute__] = ACTIONS(9078), - [anon_sym___attribute] = ACTIONS(9078), - [anon_sym_COLON] = ACTIONS(9078), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9080), - [anon_sym_RBRACE] = ACTIONS(9080), - [anon_sym_LBRACK] = ACTIONS(9080), - [anon_sym_EQ] = ACTIONS(9078), - [anon_sym_QMARK] = ACTIONS(9080), - [anon_sym_STAR_EQ] = ACTIONS(9080), - [anon_sym_SLASH_EQ] = ACTIONS(9080), - [anon_sym_PERCENT_EQ] = ACTIONS(9080), - [anon_sym_PLUS_EQ] = ACTIONS(9080), - [anon_sym_DASH_EQ] = ACTIONS(9080), - [anon_sym_LT_LT_EQ] = ACTIONS(9080), - [anon_sym_GT_GT_EQ] = ACTIONS(9080), - [anon_sym_AMP_EQ] = ACTIONS(9080), - [anon_sym_CARET_EQ] = ACTIONS(9080), - [anon_sym_PIPE_EQ] = ACTIONS(9080), - [anon_sym_and_eq] = ACTIONS(9078), - [anon_sym_or_eq] = ACTIONS(9078), - [anon_sym_xor_eq] = ACTIONS(9078), - [anon_sym_LT_EQ_GT] = ACTIONS(9080), - [anon_sym_or] = ACTIONS(9078), - [anon_sym_and] = ACTIONS(9078), - [anon_sym_bitor] = ACTIONS(9078), - [anon_sym_xor] = ACTIONS(9078), - [anon_sym_bitand] = ACTIONS(9078), - [anon_sym_not_eq] = ACTIONS(9078), - [anon_sym_DASH_DASH] = ACTIONS(9080), - [anon_sym_PLUS_PLUS] = ACTIONS(9080), - [anon_sym_DOT] = ACTIONS(9078), - [anon_sym_DOT_STAR] = ACTIONS(9080), - [anon_sym_DASH_GT] = ACTIONS(9080), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9078), - [anon_sym_override] = ACTIONS(9078), - [anon_sym_requires] = ACTIONS(9078), - [anon_sym_COLON_RBRACK] = ACTIONS(9080), - }, - [STATE(3566)] = { - [sym_identifier] = ACTIONS(2803), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2801), - [anon_sym_COMMA] = ACTIONS(2801), - [anon_sym_RPAREN] = ACTIONS(2801), - [aux_sym_preproc_if_token2] = ACTIONS(2801), - [aux_sym_preproc_else_token1] = ACTIONS(2801), - [aux_sym_preproc_elif_token1] = ACTIONS(2803), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2801), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2801), - [anon_sym_LPAREN2] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2803), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_SLASH] = ACTIONS(2803), - [anon_sym_PERCENT] = ACTIONS(2803), - [anon_sym_PIPE_PIPE] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(2803), - [anon_sym_CARET] = ACTIONS(2803), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_EQ_EQ] = ACTIONS(2801), - [anon_sym_BANG_EQ] = ACTIONS(2801), - [anon_sym_GT] = ACTIONS(2803), - [anon_sym_GT_EQ] = ACTIONS(2801), - [anon_sym_LT_EQ] = ACTIONS(2803), - [anon_sym_LT] = ACTIONS(2803), - [anon_sym_LT_LT] = ACTIONS(2803), - [anon_sym_GT_GT] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym___attribute__] = ACTIONS(2803), - [anon_sym___attribute] = ACTIONS(2803), - [anon_sym_COLON] = ACTIONS(2803), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2801), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_EQ] = ACTIONS(2803), - [anon_sym_QMARK] = ACTIONS(2801), - [anon_sym_STAR_EQ] = ACTIONS(2801), - [anon_sym_SLASH_EQ] = ACTIONS(2801), - [anon_sym_PERCENT_EQ] = ACTIONS(2801), - [anon_sym_PLUS_EQ] = ACTIONS(2801), - [anon_sym_DASH_EQ] = ACTIONS(2801), - [anon_sym_LT_LT_EQ] = ACTIONS(2801), - [anon_sym_GT_GT_EQ] = ACTIONS(2801), - [anon_sym_AMP_EQ] = ACTIONS(2801), - [anon_sym_CARET_EQ] = ACTIONS(2801), - [anon_sym_PIPE_EQ] = ACTIONS(2801), - [anon_sym_and_eq] = ACTIONS(2803), - [anon_sym_or_eq] = ACTIONS(2803), - [anon_sym_xor_eq] = ACTIONS(2803), - [anon_sym_LT_EQ_GT] = ACTIONS(2801), - [anon_sym_or] = ACTIONS(2803), - [anon_sym_and] = ACTIONS(2803), - [anon_sym_bitor] = ACTIONS(2803), - [anon_sym_xor] = ACTIONS(2803), - [anon_sym_bitand] = ACTIONS(2803), - [anon_sym_not_eq] = ACTIONS(2803), - [anon_sym_DASH_DASH] = ACTIONS(2801), - [anon_sym_PLUS_PLUS] = ACTIONS(2801), - [anon_sym_DOT] = ACTIONS(2803), - [anon_sym_DOT_STAR] = ACTIONS(2801), - [anon_sym_DASH_GT] = ACTIONS(2801), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2803), - [anon_sym_override] = ACTIONS(2803), - [anon_sym_requires] = ACTIONS(2803), - [anon_sym_COLON_RBRACK] = ACTIONS(2801), - }, - [STATE(3567)] = { - [sym_identifier] = ACTIONS(8651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8653), - [anon_sym_COMMA] = ACTIONS(8653), - [anon_sym_RPAREN] = ACTIONS(8653), - [aux_sym_preproc_if_token2] = ACTIONS(8653), - [aux_sym_preproc_else_token1] = ACTIONS(8653), - [aux_sym_preproc_elif_token1] = ACTIONS(8651), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8653), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8653), - [anon_sym_LPAREN2] = ACTIONS(8653), - [anon_sym_DASH] = ACTIONS(8651), - [anon_sym_PLUS] = ACTIONS(8651), - [anon_sym_STAR] = ACTIONS(8651), - [anon_sym_SLASH] = ACTIONS(8651), - [anon_sym_PERCENT] = ACTIONS(8651), - [anon_sym_PIPE_PIPE] = ACTIONS(8653), - [anon_sym_AMP_AMP] = ACTIONS(8653), - [anon_sym_PIPE] = ACTIONS(8651), - [anon_sym_CARET] = ACTIONS(8651), - [anon_sym_AMP] = ACTIONS(8651), - [anon_sym_EQ_EQ] = ACTIONS(8653), - [anon_sym_BANG_EQ] = ACTIONS(8653), - [anon_sym_GT] = ACTIONS(8651), - [anon_sym_GT_EQ] = ACTIONS(8653), - [anon_sym_LT_EQ] = ACTIONS(8651), - [anon_sym_LT] = ACTIONS(8651), - [anon_sym_LT_LT] = ACTIONS(8651), - [anon_sym_GT_GT] = ACTIONS(8651), - [anon_sym_SEMI] = ACTIONS(8653), - [anon_sym___attribute__] = ACTIONS(8651), - [anon_sym___attribute] = ACTIONS(8651), - [anon_sym_COLON] = ACTIONS(8651), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8653), - [anon_sym_RBRACE] = ACTIONS(8653), - [anon_sym_LBRACK] = ACTIONS(8653), - [anon_sym_EQ] = ACTIONS(8651), - [anon_sym_QMARK] = ACTIONS(8653), - [anon_sym_STAR_EQ] = ACTIONS(8653), - [anon_sym_SLASH_EQ] = ACTIONS(8653), - [anon_sym_PERCENT_EQ] = ACTIONS(8653), - [anon_sym_PLUS_EQ] = ACTIONS(8653), - [anon_sym_DASH_EQ] = ACTIONS(8653), - [anon_sym_LT_LT_EQ] = ACTIONS(8653), - [anon_sym_GT_GT_EQ] = ACTIONS(8653), - [anon_sym_AMP_EQ] = ACTIONS(8653), - [anon_sym_CARET_EQ] = ACTIONS(8653), - [anon_sym_PIPE_EQ] = ACTIONS(8653), - [anon_sym_and_eq] = ACTIONS(8651), - [anon_sym_or_eq] = ACTIONS(8651), - [anon_sym_xor_eq] = ACTIONS(8651), - [anon_sym_LT_EQ_GT] = ACTIONS(8653), - [anon_sym_or] = ACTIONS(8651), - [anon_sym_and] = ACTIONS(8651), - [anon_sym_bitor] = ACTIONS(8651), - [anon_sym_xor] = ACTIONS(8651), - [anon_sym_bitand] = ACTIONS(8651), - [anon_sym_not_eq] = ACTIONS(8651), - [anon_sym_DASH_DASH] = ACTIONS(8653), - [anon_sym_PLUS_PLUS] = ACTIONS(8653), - [anon_sym_DOT] = ACTIONS(8651), - [anon_sym_DOT_STAR] = ACTIONS(8653), - [anon_sym_DASH_GT] = ACTIONS(8653), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8651), - [anon_sym_override] = ACTIONS(8651), - [anon_sym_requires] = ACTIONS(8651), - [anon_sym_COLON_RBRACK] = ACTIONS(8653), - }, - [STATE(3568)] = { - [sym_identifier] = ACTIONS(8655), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8657), - [anon_sym_COMMA] = ACTIONS(8657), - [anon_sym_RPAREN] = ACTIONS(8657), - [aux_sym_preproc_if_token2] = ACTIONS(8657), - [aux_sym_preproc_else_token1] = ACTIONS(8657), - [aux_sym_preproc_elif_token1] = ACTIONS(8655), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8657), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8657), - [anon_sym_LPAREN2] = ACTIONS(8657), - [anon_sym_DASH] = ACTIONS(8655), - [anon_sym_PLUS] = ACTIONS(8655), - [anon_sym_STAR] = ACTIONS(8655), - [anon_sym_SLASH] = ACTIONS(8655), - [anon_sym_PERCENT] = ACTIONS(8655), - [anon_sym_PIPE_PIPE] = ACTIONS(8657), - [anon_sym_AMP_AMP] = ACTIONS(8657), - [anon_sym_PIPE] = ACTIONS(8655), - [anon_sym_CARET] = ACTIONS(8655), - [anon_sym_AMP] = ACTIONS(8655), - [anon_sym_EQ_EQ] = ACTIONS(8657), - [anon_sym_BANG_EQ] = ACTIONS(8657), - [anon_sym_GT] = ACTIONS(8655), - [anon_sym_GT_EQ] = ACTIONS(8657), - [anon_sym_LT_EQ] = ACTIONS(8655), - [anon_sym_LT] = ACTIONS(8655), - [anon_sym_LT_LT] = ACTIONS(8655), - [anon_sym_GT_GT] = ACTIONS(8655), - [anon_sym_SEMI] = ACTIONS(8657), - [anon_sym___attribute__] = ACTIONS(8655), - [anon_sym___attribute] = ACTIONS(8655), - [anon_sym_COLON] = ACTIONS(8655), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8657), - [anon_sym_RBRACE] = ACTIONS(8657), - [anon_sym_LBRACK] = ACTIONS(8657), - [anon_sym_EQ] = ACTIONS(8655), - [anon_sym_QMARK] = ACTIONS(8657), - [anon_sym_STAR_EQ] = ACTIONS(8657), - [anon_sym_SLASH_EQ] = ACTIONS(8657), - [anon_sym_PERCENT_EQ] = ACTIONS(8657), - [anon_sym_PLUS_EQ] = ACTIONS(8657), - [anon_sym_DASH_EQ] = ACTIONS(8657), - [anon_sym_LT_LT_EQ] = ACTIONS(8657), - [anon_sym_GT_GT_EQ] = ACTIONS(8657), - [anon_sym_AMP_EQ] = ACTIONS(8657), - [anon_sym_CARET_EQ] = ACTIONS(8657), - [anon_sym_PIPE_EQ] = ACTIONS(8657), - [anon_sym_and_eq] = ACTIONS(8655), - [anon_sym_or_eq] = ACTIONS(8655), - [anon_sym_xor_eq] = ACTIONS(8655), - [anon_sym_LT_EQ_GT] = ACTIONS(8657), - [anon_sym_or] = ACTIONS(8655), - [anon_sym_and] = ACTIONS(8655), - [anon_sym_bitor] = ACTIONS(8655), - [anon_sym_xor] = ACTIONS(8655), - [anon_sym_bitand] = ACTIONS(8655), - [anon_sym_not_eq] = ACTIONS(8655), - [anon_sym_DASH_DASH] = ACTIONS(8657), - [anon_sym_PLUS_PLUS] = ACTIONS(8657), - [anon_sym_DOT] = ACTIONS(8655), - [anon_sym_DOT_STAR] = ACTIONS(8657), - [anon_sym_DASH_GT] = ACTIONS(8657), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8655), - [anon_sym_override] = ACTIONS(8655), - [anon_sym_requires] = ACTIONS(8655), - [anon_sym_COLON_RBRACK] = ACTIONS(8657), - }, - [STATE(3569)] = { - [sym_attribute_specifier] = STATE(4374), - [sym_attribute_declaration] = STATE(4622), - [sym_gnu_asm_expression] = STATE(8992), - [sym_virtual_specifier] = STATE(4709), - [sym__function_exception_specification] = STATE(3993), - [sym__function_attributes_end] = STATE(5837), - [sym__function_postfix] = STATE(5258), - [sym_trailing_return_type] = STATE(5711), - [sym_noexcept] = STATE(3993), - [sym_throw_specifier] = STATE(3993), - [sym_requires_clause] = STATE(5258), - [aux_sym_type_definition_repeat1] = STATE(4374), - [aux_sym_attributed_declarator_repeat1] = STATE(4622), - [aux_sym__function_postfix_repeat1] = STATE(4709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7544), - [anon_sym_COMMA] = ACTIONS(7544), - [anon_sym_RPAREN] = ACTIONS(7544), - [anon_sym_LPAREN2] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7546), - [anon_sym_PLUS] = ACTIONS(7546), - [anon_sym_STAR] = ACTIONS(7544), - [anon_sym_SLASH] = ACTIONS(7546), - [anon_sym_PERCENT] = ACTIONS(7544), - [anon_sym_PIPE_PIPE] = ACTIONS(7544), - [anon_sym_AMP_AMP] = ACTIONS(7544), - [anon_sym_PIPE] = ACTIONS(7546), - [anon_sym_CARET] = ACTIONS(7544), - [anon_sym_AMP] = ACTIONS(7546), - [anon_sym_EQ_EQ] = ACTIONS(7544), - [anon_sym_BANG_EQ] = ACTIONS(7544), - [anon_sym_GT] = ACTIONS(7546), - [anon_sym_GT_EQ] = ACTIONS(7544), - [anon_sym_LT_EQ] = ACTIONS(7546), - [anon_sym_LT] = ACTIONS(7546), - [anon_sym_LT_LT] = ACTIONS(7544), - [anon_sym_GT_GT] = ACTIONS(7544), - [anon_sym_SEMI] = ACTIONS(7544), - [anon_sym___attribute__] = ACTIONS(6906), - [anon_sym___attribute] = ACTIONS(6859), - [anon_sym_COLON] = ACTIONS(7546), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7544), - [anon_sym_RBRACE] = ACTIONS(7544), - [anon_sym_LBRACK] = ACTIONS(7546), - [anon_sym_QMARK] = ACTIONS(7544), - [anon_sym_LT_EQ_GT] = ACTIONS(7544), - [anon_sym_or] = ACTIONS(7544), - [anon_sym_and] = ACTIONS(7544), - [anon_sym_bitor] = ACTIONS(7544), - [anon_sym_xor] = ACTIONS(7544), - [anon_sym_bitand] = ACTIONS(7544), - [anon_sym_not_eq] = ACTIONS(7544), - [anon_sym_DASH_DASH] = ACTIONS(7544), - [anon_sym_PLUS_PLUS] = ACTIONS(7544), - [anon_sym_asm] = ACTIONS(6154), - [anon_sym___asm__] = ACTIONS(6154), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7546), - [anon_sym_DOT_STAR] = ACTIONS(7544), - [anon_sym_DASH_GT] = ACTIONS(8818), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8821), - [anon_sym_override] = ACTIONS(8821), - [anon_sym_noexcept] = ACTIONS(6915), - [anon_sym_throw] = ACTIONS(6917), - [anon_sym_requires] = ACTIONS(8824), - [anon_sym_COLON_RBRACK] = ACTIONS(7544), - }, - [STATE(3570)] = { - [sym_ms_based_modifier] = STATE(10656), - [sym__declarator] = STATE(8646), - [sym__abstract_declarator] = STATE(8832), - [sym_parenthesized_declarator] = STATE(8469), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_function_declarator] = STATE(8469), - [sym_abstract_function_declarator] = STATE(8389), - [sym_array_declarator] = STATE(8469), - [sym_abstract_array_declarator] = STATE(8389), - [sym_type_qualifier] = STATE(6842), - [sym_alignas_qualifier] = STATE(7436), - [sym_parameter_list] = STATE(4820), - [sym_decltype] = STATE(10976), - [sym_reference_declarator] = STATE(8469), - [sym_abstract_reference_declarator] = STATE(8389), - [sym_structured_binding_declarator] = STATE(8469), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7878), - [sym_qualified_identifier] = STATE(8469), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__type_definition_type_repeat1] = STATE(6842), - [sym_identifier] = ACTIONS(8195), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_RPAREN] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(5301), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(8197), - [anon_sym_AMP_AMP] = ACTIONS(8199), - [anon_sym_AMP] = ACTIONS(8201), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(6495), - [anon_sym___attribute] = ACTIONS(6495), - [anon_sym_COLON_COLON] = ACTIONS(8203), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(5311), - [anon_sym_EQ] = ACTIONS(6497), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym__Nonnull] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2939), - [anon_sym__Alignas] = ACTIONS(2939), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_GT2] = ACTIONS(6497), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), - }, - [STATE(3571)] = { - [sym_ms_based_modifier] = STATE(10656), - [sym__declarator] = STATE(8705), - [sym__abstract_declarator] = STATE(8833), - [sym_parenthesized_declarator] = STATE(8469), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_function_declarator] = STATE(8469), - [sym_abstract_function_declarator] = STATE(8389), - [sym_array_declarator] = STATE(8469), - [sym_abstract_array_declarator] = STATE(8389), - [sym_type_qualifier] = STATE(6842), - [sym_alignas_qualifier] = STATE(7436), - [sym_parameter_list] = STATE(4820), - [sym_decltype] = STATE(10976), - [sym_reference_declarator] = STATE(8469), - [sym_abstract_reference_declarator] = STATE(8389), - [sym_structured_binding_declarator] = STATE(8469), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7878), - [sym_qualified_identifier] = STATE(8469), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__type_definition_type_repeat1] = STATE(6842), - [sym_identifier] = ACTIONS(8195), - [anon_sym_COMMA] = ACTIONS(7007), - [anon_sym_RPAREN] = ACTIONS(7007), - [anon_sym_LPAREN2] = ACTIONS(5301), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(8197), - [anon_sym_AMP_AMP] = ACTIONS(8199), - [anon_sym_AMP] = ACTIONS(8201), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(7009), - [anon_sym___attribute] = ACTIONS(7009), - [anon_sym_COLON_COLON] = ACTIONS(8203), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(5311), - [anon_sym_EQ] = ACTIONS(7007), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym__Nonnull] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2939), - [anon_sym__Alignas] = ACTIONS(2939), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_GT2] = ACTIONS(7007), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), - }, - [STATE(3572)] = { - [sym__abstract_declarator] = STATE(4147), - [sym_abstract_parenthesized_declarator] = STATE(3510), - [sym_abstract_pointer_declarator] = STATE(3510), - [sym_abstract_function_declarator] = STATE(3510), - [sym_abstract_array_declarator] = STATE(3510), - [sym_parameter_list] = STATE(1842), - [sym_abstract_reference_declarator] = STATE(3510), - [sym__function_declarator_seq] = STATE(3515), - [sym_identifier] = ACTIONS(9074), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9072), - [anon_sym_COMMA] = ACTIONS(9072), - [aux_sym_preproc_if_token2] = ACTIONS(9072), - [aux_sym_preproc_else_token1] = ACTIONS(9072), - [aux_sym_preproc_elif_token1] = ACTIONS(9074), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9072), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9072), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_DASH] = ACTIONS(9074), - [anon_sym_PLUS] = ACTIONS(9074), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_SLASH] = ACTIONS(9074), - [anon_sym_PERCENT] = ACTIONS(9074), - [anon_sym_PIPE_PIPE] = ACTIONS(9072), - [anon_sym_AMP_AMP] = ACTIONS(6465), - [anon_sym_PIPE] = ACTIONS(9074), - [anon_sym_CARET] = ACTIONS(9074), - [anon_sym_AMP] = ACTIONS(6467), - [anon_sym_EQ_EQ] = ACTIONS(9072), - [anon_sym_BANG_EQ] = ACTIONS(9072), - [anon_sym_GT] = ACTIONS(9074), - [anon_sym_GT_EQ] = ACTIONS(9072), - [anon_sym_LT_EQ] = ACTIONS(9074), - [anon_sym_LT] = ACTIONS(9074), - [anon_sym_LT_LT] = ACTIONS(9074), - [anon_sym_GT_GT] = ACTIONS(9074), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(9074), - [anon_sym_QMARK] = ACTIONS(9072), - [anon_sym_STAR_EQ] = ACTIONS(9072), - [anon_sym_SLASH_EQ] = ACTIONS(9072), - [anon_sym_PERCENT_EQ] = ACTIONS(9072), - [anon_sym_PLUS_EQ] = ACTIONS(9072), - [anon_sym_DASH_EQ] = ACTIONS(9072), - [anon_sym_LT_LT_EQ] = ACTIONS(9072), - [anon_sym_GT_GT_EQ] = ACTIONS(9072), - [anon_sym_AMP_EQ] = ACTIONS(9072), - [anon_sym_CARET_EQ] = ACTIONS(9072), - [anon_sym_PIPE_EQ] = ACTIONS(9072), - [anon_sym_and_eq] = ACTIONS(9074), - [anon_sym_or_eq] = ACTIONS(9074), - [anon_sym_xor_eq] = ACTIONS(9074), - [anon_sym_LT_EQ_GT] = ACTIONS(9072), - [anon_sym_or] = ACTIONS(9074), - [anon_sym_and] = ACTIONS(9074), - [anon_sym_bitor] = ACTIONS(9074), - [anon_sym_xor] = ACTIONS(9074), - [anon_sym_bitand] = ACTIONS(9074), - [anon_sym_not_eq] = ACTIONS(9074), - [anon_sym_DASH_DASH] = ACTIONS(9072), - [anon_sym_PLUS_PLUS] = ACTIONS(9072), - [anon_sym_DOT] = ACTIONS(9074), - [anon_sym_DOT_STAR] = ACTIONS(9072), - [anon_sym_DASH_GT] = ACTIONS(9072), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9074), - [anon_sym_override] = ACTIONS(9074), - [anon_sym_requires] = ACTIONS(9074), - }, - [STATE(3573)] = { - [sym_identifier] = ACTIONS(9082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9084), - [anon_sym_COMMA] = ACTIONS(9084), - [anon_sym_RPAREN] = ACTIONS(9084), - [aux_sym_preproc_if_token2] = ACTIONS(9084), - [aux_sym_preproc_else_token1] = ACTIONS(9084), - [aux_sym_preproc_elif_token1] = ACTIONS(9082), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9084), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9084), - [anon_sym_LPAREN2] = ACTIONS(9084), - [anon_sym_DASH] = ACTIONS(9082), - [anon_sym_PLUS] = ACTIONS(9082), - [anon_sym_STAR] = ACTIONS(9082), - [anon_sym_SLASH] = ACTIONS(9082), - [anon_sym_PERCENT] = ACTIONS(9082), - [anon_sym_PIPE_PIPE] = ACTIONS(9084), - [anon_sym_AMP_AMP] = ACTIONS(9084), - [anon_sym_PIPE] = ACTIONS(9082), - [anon_sym_CARET] = ACTIONS(9082), - [anon_sym_AMP] = ACTIONS(9082), - [anon_sym_EQ_EQ] = ACTIONS(9084), - [anon_sym_BANG_EQ] = ACTIONS(9084), - [anon_sym_GT] = ACTIONS(9082), - [anon_sym_GT_EQ] = ACTIONS(9084), - [anon_sym_LT_EQ] = ACTIONS(9082), - [anon_sym_LT] = ACTIONS(9082), - [anon_sym_LT_LT] = ACTIONS(9082), - [anon_sym_GT_GT] = ACTIONS(9082), - [anon_sym_SEMI] = ACTIONS(9084), - [anon_sym___attribute__] = ACTIONS(9082), - [anon_sym___attribute] = ACTIONS(9082), - [anon_sym_COLON] = ACTIONS(9082), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9084), - [anon_sym_RBRACE] = ACTIONS(9084), - [anon_sym_LBRACK] = ACTIONS(9084), - [anon_sym_EQ] = ACTIONS(9082), - [anon_sym_QMARK] = ACTIONS(9084), - [anon_sym_STAR_EQ] = ACTIONS(9084), - [anon_sym_SLASH_EQ] = ACTIONS(9084), - [anon_sym_PERCENT_EQ] = ACTIONS(9084), - [anon_sym_PLUS_EQ] = ACTIONS(9084), - [anon_sym_DASH_EQ] = ACTIONS(9084), - [anon_sym_LT_LT_EQ] = ACTIONS(9084), - [anon_sym_GT_GT_EQ] = ACTIONS(9084), - [anon_sym_AMP_EQ] = ACTIONS(9084), - [anon_sym_CARET_EQ] = ACTIONS(9084), - [anon_sym_PIPE_EQ] = ACTIONS(9084), - [anon_sym_and_eq] = ACTIONS(9082), - [anon_sym_or_eq] = ACTIONS(9082), - [anon_sym_xor_eq] = ACTIONS(9082), - [anon_sym_LT_EQ_GT] = ACTIONS(9084), - [anon_sym_or] = ACTIONS(9082), - [anon_sym_and] = ACTIONS(9082), - [anon_sym_bitor] = ACTIONS(9082), - [anon_sym_xor] = ACTIONS(9082), - [anon_sym_bitand] = ACTIONS(9082), - [anon_sym_not_eq] = ACTIONS(9082), - [anon_sym_DASH_DASH] = ACTIONS(9084), - [anon_sym_PLUS_PLUS] = ACTIONS(9084), - [anon_sym_DOT] = ACTIONS(9082), - [anon_sym_DOT_STAR] = ACTIONS(9084), - [anon_sym_DASH_GT] = ACTIONS(9084), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9082), - [anon_sym_override] = ACTIONS(9082), - [anon_sym_requires] = ACTIONS(9082), - [anon_sym_COLON_RBRACK] = ACTIONS(9084), - }, - [STATE(3574)] = { - [sym_identifier] = ACTIONS(8629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8631), - [anon_sym_COMMA] = ACTIONS(8631), - [anon_sym_RPAREN] = ACTIONS(8631), - [aux_sym_preproc_if_token2] = ACTIONS(8631), - [aux_sym_preproc_else_token1] = ACTIONS(8631), - [aux_sym_preproc_elif_token1] = ACTIONS(8629), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8631), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8631), - [anon_sym_LPAREN2] = ACTIONS(8631), - [anon_sym_DASH] = ACTIONS(8629), - [anon_sym_PLUS] = ACTIONS(8629), - [anon_sym_STAR] = ACTIONS(8629), - [anon_sym_SLASH] = ACTIONS(8629), - [anon_sym_PERCENT] = ACTIONS(8629), - [anon_sym_PIPE_PIPE] = ACTIONS(8631), - [anon_sym_AMP_AMP] = ACTIONS(8631), - [anon_sym_PIPE] = ACTIONS(8629), - [anon_sym_CARET] = ACTIONS(8629), - [anon_sym_AMP] = ACTIONS(8629), - [anon_sym_EQ_EQ] = ACTIONS(8631), - [anon_sym_BANG_EQ] = ACTIONS(8631), - [anon_sym_GT] = ACTIONS(8629), - [anon_sym_GT_EQ] = ACTIONS(8631), - [anon_sym_LT_EQ] = ACTIONS(8629), - [anon_sym_LT] = ACTIONS(8629), - [anon_sym_LT_LT] = ACTIONS(8629), - [anon_sym_GT_GT] = ACTIONS(8629), - [anon_sym_SEMI] = ACTIONS(8631), - [anon_sym___attribute__] = ACTIONS(8629), - [anon_sym___attribute] = ACTIONS(8629), - [anon_sym_COLON] = ACTIONS(8629), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8631), - [anon_sym_RBRACE] = ACTIONS(8631), - [anon_sym_LBRACK] = ACTIONS(8631), - [anon_sym_EQ] = ACTIONS(8629), - [anon_sym_QMARK] = ACTIONS(8631), - [anon_sym_STAR_EQ] = ACTIONS(8631), - [anon_sym_SLASH_EQ] = ACTIONS(8631), - [anon_sym_PERCENT_EQ] = ACTIONS(8631), - [anon_sym_PLUS_EQ] = ACTIONS(8631), - [anon_sym_DASH_EQ] = ACTIONS(8631), - [anon_sym_LT_LT_EQ] = ACTIONS(8631), - [anon_sym_GT_GT_EQ] = ACTIONS(8631), - [anon_sym_AMP_EQ] = ACTIONS(8631), - [anon_sym_CARET_EQ] = ACTIONS(8631), - [anon_sym_PIPE_EQ] = ACTIONS(8631), - [anon_sym_and_eq] = ACTIONS(8629), - [anon_sym_or_eq] = ACTIONS(8629), - [anon_sym_xor_eq] = ACTIONS(8629), - [anon_sym_LT_EQ_GT] = ACTIONS(8631), - [anon_sym_or] = ACTIONS(8629), - [anon_sym_and] = ACTIONS(8629), - [anon_sym_bitor] = ACTIONS(8629), - [anon_sym_xor] = ACTIONS(8629), - [anon_sym_bitand] = ACTIONS(8629), - [anon_sym_not_eq] = ACTIONS(8629), - [anon_sym_DASH_DASH] = ACTIONS(8631), - [anon_sym_PLUS_PLUS] = ACTIONS(8631), - [anon_sym_DOT] = ACTIONS(8629), - [anon_sym_DOT_STAR] = ACTIONS(8631), - [anon_sym_DASH_GT] = ACTIONS(8631), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8629), - [anon_sym_override] = ACTIONS(8629), - [anon_sym_requires] = ACTIONS(8629), - [anon_sym_COLON_RBRACK] = ACTIONS(8631), - }, - [STATE(3575)] = { - [sym_identifier] = ACTIONS(8633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8635), - [anon_sym_COMMA] = ACTIONS(8635), - [anon_sym_RPAREN] = ACTIONS(8635), - [aux_sym_preproc_if_token2] = ACTIONS(8635), - [aux_sym_preproc_else_token1] = ACTIONS(8635), - [aux_sym_preproc_elif_token1] = ACTIONS(8633), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8635), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8635), - [anon_sym_LPAREN2] = ACTIONS(8635), - [anon_sym_DASH] = ACTIONS(8633), - [anon_sym_PLUS] = ACTIONS(8633), - [anon_sym_STAR] = ACTIONS(8633), - [anon_sym_SLASH] = ACTIONS(8633), - [anon_sym_PERCENT] = ACTIONS(8633), - [anon_sym_PIPE_PIPE] = ACTIONS(8635), - [anon_sym_AMP_AMP] = ACTIONS(8635), - [anon_sym_PIPE] = ACTIONS(8633), - [anon_sym_CARET] = ACTIONS(8633), - [anon_sym_AMP] = ACTIONS(8633), - [anon_sym_EQ_EQ] = ACTIONS(8635), - [anon_sym_BANG_EQ] = ACTIONS(8635), - [anon_sym_GT] = ACTIONS(8633), - [anon_sym_GT_EQ] = ACTIONS(8635), - [anon_sym_LT_EQ] = ACTIONS(8633), - [anon_sym_LT] = ACTIONS(8633), - [anon_sym_LT_LT] = ACTIONS(8633), - [anon_sym_GT_GT] = ACTIONS(8633), - [anon_sym_SEMI] = ACTIONS(8635), - [anon_sym___attribute__] = ACTIONS(8633), - [anon_sym___attribute] = ACTIONS(8633), - [anon_sym_COLON] = ACTIONS(8633), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8635), - [anon_sym_RBRACE] = ACTIONS(8635), - [anon_sym_LBRACK] = ACTIONS(8635), - [anon_sym_EQ] = ACTIONS(8633), - [anon_sym_QMARK] = ACTIONS(8635), - [anon_sym_STAR_EQ] = ACTIONS(8635), - [anon_sym_SLASH_EQ] = ACTIONS(8635), - [anon_sym_PERCENT_EQ] = ACTIONS(8635), - [anon_sym_PLUS_EQ] = ACTIONS(8635), - [anon_sym_DASH_EQ] = ACTIONS(8635), - [anon_sym_LT_LT_EQ] = ACTIONS(8635), - [anon_sym_GT_GT_EQ] = ACTIONS(8635), - [anon_sym_AMP_EQ] = ACTIONS(8635), - [anon_sym_CARET_EQ] = ACTIONS(8635), - [anon_sym_PIPE_EQ] = ACTIONS(8635), - [anon_sym_and_eq] = ACTIONS(8633), - [anon_sym_or_eq] = ACTIONS(8633), - [anon_sym_xor_eq] = ACTIONS(8633), - [anon_sym_LT_EQ_GT] = ACTIONS(8635), - [anon_sym_or] = ACTIONS(8633), - [anon_sym_and] = ACTIONS(8633), - [anon_sym_bitor] = ACTIONS(8633), - [anon_sym_xor] = ACTIONS(8633), - [anon_sym_bitand] = ACTIONS(8633), - [anon_sym_not_eq] = ACTIONS(8633), - [anon_sym_DASH_DASH] = ACTIONS(8635), - [anon_sym_PLUS_PLUS] = ACTIONS(8635), - [anon_sym_DOT] = ACTIONS(8633), - [anon_sym_DOT_STAR] = ACTIONS(8635), - [anon_sym_DASH_GT] = ACTIONS(8635), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8633), - [anon_sym_override] = ACTIONS(8633), - [anon_sym_requires] = ACTIONS(8633), - [anon_sym_COLON_RBRACK] = ACTIONS(8635), - }, - [STATE(3576)] = { - [sym_argument_list] = STATE(3829), - [sym_initializer_list] = STATE(3829), - [sym_identifier] = ACTIONS(9086), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9088), - [anon_sym_COMMA] = ACTIONS(9088), - [anon_sym_RPAREN] = ACTIONS(9088), - [aux_sym_preproc_if_token2] = ACTIONS(9088), - [aux_sym_preproc_else_token1] = ACTIONS(9088), - [aux_sym_preproc_elif_token1] = ACTIONS(9086), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9088), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9088), - [anon_sym_LPAREN2] = ACTIONS(8808), - [anon_sym_DASH] = ACTIONS(9086), - [anon_sym_PLUS] = ACTIONS(9086), - [anon_sym_STAR] = ACTIONS(9086), - [anon_sym_SLASH] = ACTIONS(9086), - [anon_sym_PERCENT] = ACTIONS(9086), - [anon_sym_PIPE_PIPE] = ACTIONS(9088), - [anon_sym_AMP_AMP] = ACTIONS(9088), - [anon_sym_PIPE] = ACTIONS(9086), - [anon_sym_CARET] = ACTIONS(9086), - [anon_sym_AMP] = ACTIONS(9086), - [anon_sym_EQ_EQ] = ACTIONS(9088), - [anon_sym_BANG_EQ] = ACTIONS(9088), - [anon_sym_GT] = ACTIONS(9086), - [anon_sym_GT_EQ] = ACTIONS(9088), - [anon_sym_LT_EQ] = ACTIONS(9086), - [anon_sym_LT] = ACTIONS(9086), - [anon_sym_LT_LT] = ACTIONS(9086), - [anon_sym_GT_GT] = ACTIONS(9086), - [anon_sym_SEMI] = ACTIONS(9088), - [anon_sym___attribute__] = ACTIONS(9086), - [anon_sym___attribute] = ACTIONS(9086), - [anon_sym_COLON] = ACTIONS(9086), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9088), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_RBRACE] = ACTIONS(9088), - [anon_sym_LBRACK] = ACTIONS(9088), - [anon_sym_EQ] = ACTIONS(9086), - [anon_sym_QMARK] = ACTIONS(9088), - [anon_sym_STAR_EQ] = ACTIONS(9088), - [anon_sym_SLASH_EQ] = ACTIONS(9088), - [anon_sym_PERCENT_EQ] = ACTIONS(9088), - [anon_sym_PLUS_EQ] = ACTIONS(9088), - [anon_sym_DASH_EQ] = ACTIONS(9088), - [anon_sym_LT_LT_EQ] = ACTIONS(9088), - [anon_sym_GT_GT_EQ] = ACTIONS(9088), - [anon_sym_AMP_EQ] = ACTIONS(9088), - [anon_sym_CARET_EQ] = ACTIONS(9088), - [anon_sym_PIPE_EQ] = ACTIONS(9088), - [anon_sym_and_eq] = ACTIONS(9086), - [anon_sym_or_eq] = ACTIONS(9086), - [anon_sym_xor_eq] = ACTIONS(9086), - [anon_sym_LT_EQ_GT] = ACTIONS(9088), - [anon_sym_or] = ACTIONS(9086), - [anon_sym_and] = ACTIONS(9086), - [anon_sym_bitor] = ACTIONS(9086), - [anon_sym_xor] = ACTIONS(9086), - [anon_sym_bitand] = ACTIONS(9086), - [anon_sym_not_eq] = ACTIONS(9086), - [anon_sym_DASH_DASH] = ACTIONS(9088), - [anon_sym_PLUS_PLUS] = ACTIONS(9088), - [anon_sym_DOT] = ACTIONS(9086), - [anon_sym_DOT_STAR] = ACTIONS(9088), - [anon_sym_DASH_GT] = ACTIONS(9088), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9088), - }, - [STATE(3577)] = { - [sym_string_literal] = STATE(3798), - [sym_template_argument_list] = STATE(5689), - [sym_raw_string_literal] = STATE(3798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_RPAREN] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(9090), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(5260), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5253), - [anon_sym_SLASH_EQ] = ACTIONS(5253), - [anon_sym_PERCENT_EQ] = ACTIONS(5253), - [anon_sym_PLUS_EQ] = ACTIONS(5253), - [anon_sym_DASH_EQ] = ACTIONS(5253), - [anon_sym_LT_LT_EQ] = ACTIONS(5253), - [anon_sym_GT_GT_EQ] = ACTIONS(5253), - [anon_sym_AMP_EQ] = ACTIONS(5253), - [anon_sym_CARET_EQ] = ACTIONS(5253), - [anon_sym_PIPE_EQ] = ACTIONS(5253), - [anon_sym_and_eq] = ACTIONS(6588), - [anon_sym_or_eq] = ACTIONS(6588), - [anon_sym_xor_eq] = ACTIONS(6588), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5260), - [anon_sym_L_DQUOTE] = ACTIONS(5601), - [anon_sym_u_DQUOTE] = ACTIONS(5601), - [anon_sym_U_DQUOTE] = ACTIONS(5601), - [anon_sym_u8_DQUOTE] = ACTIONS(5601), - [anon_sym_DQUOTE] = ACTIONS(5601), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5603), - [anon_sym_LR_DQUOTE] = ACTIONS(5603), - [anon_sym_uR_DQUOTE] = ACTIONS(5603), - [anon_sym_UR_DQUOTE] = ACTIONS(5603), - [anon_sym_u8R_DQUOTE] = ACTIONS(5603), - [anon_sym_DASH_GT_STAR] = ACTIONS(5253), - }, - [STATE(3578)] = { - [sym_identifier] = ACTIONS(9093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9095), - [anon_sym_COMMA] = ACTIONS(9095), - [anon_sym_RPAREN] = ACTIONS(9095), - [aux_sym_preproc_if_token2] = ACTIONS(9095), - [aux_sym_preproc_else_token1] = ACTIONS(9095), - [aux_sym_preproc_elif_token1] = ACTIONS(9093), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9095), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9095), - [anon_sym_LPAREN2] = ACTIONS(9095), - [anon_sym_DASH] = ACTIONS(9093), - [anon_sym_PLUS] = ACTIONS(9093), - [anon_sym_STAR] = ACTIONS(9093), - [anon_sym_SLASH] = ACTIONS(9093), - [anon_sym_PERCENT] = ACTIONS(9093), - [anon_sym_PIPE_PIPE] = ACTIONS(9095), - [anon_sym_AMP_AMP] = ACTIONS(9095), - [anon_sym_PIPE] = ACTIONS(9093), - [anon_sym_CARET] = ACTIONS(9093), - [anon_sym_AMP] = ACTIONS(9093), - [anon_sym_EQ_EQ] = ACTIONS(9095), - [anon_sym_BANG_EQ] = ACTIONS(9095), - [anon_sym_GT] = ACTIONS(9093), - [anon_sym_GT_EQ] = ACTIONS(9095), - [anon_sym_LT_EQ] = ACTIONS(9093), - [anon_sym_LT] = ACTIONS(9093), - [anon_sym_LT_LT] = ACTIONS(9093), - [anon_sym_GT_GT] = ACTIONS(9093), - [anon_sym_SEMI] = ACTIONS(9095), - [anon_sym___attribute__] = ACTIONS(9093), - [anon_sym___attribute] = ACTIONS(9093), - [anon_sym_COLON] = ACTIONS(9093), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9095), - [anon_sym_RBRACE] = ACTIONS(9095), - [anon_sym_LBRACK] = ACTIONS(9095), - [anon_sym_EQ] = ACTIONS(9093), - [anon_sym_QMARK] = ACTIONS(9095), - [anon_sym_STAR_EQ] = ACTIONS(9095), - [anon_sym_SLASH_EQ] = ACTIONS(9095), - [anon_sym_PERCENT_EQ] = ACTIONS(9095), - [anon_sym_PLUS_EQ] = ACTIONS(9095), - [anon_sym_DASH_EQ] = ACTIONS(9095), - [anon_sym_LT_LT_EQ] = ACTIONS(9095), - [anon_sym_GT_GT_EQ] = ACTIONS(9095), - [anon_sym_AMP_EQ] = ACTIONS(9095), - [anon_sym_CARET_EQ] = ACTIONS(9095), - [anon_sym_PIPE_EQ] = ACTIONS(9095), - [anon_sym_and_eq] = ACTIONS(9093), - [anon_sym_or_eq] = ACTIONS(9093), - [anon_sym_xor_eq] = ACTIONS(9093), - [anon_sym_LT_EQ_GT] = ACTIONS(9095), - [anon_sym_or] = ACTIONS(9093), - [anon_sym_and] = ACTIONS(9093), - [anon_sym_bitor] = ACTIONS(9093), - [anon_sym_xor] = ACTIONS(9093), - [anon_sym_bitand] = ACTIONS(9093), - [anon_sym_not_eq] = ACTIONS(9093), - [anon_sym_DASH_DASH] = ACTIONS(9095), - [anon_sym_PLUS_PLUS] = ACTIONS(9095), - [anon_sym_DOT] = ACTIONS(9093), - [anon_sym_DOT_STAR] = ACTIONS(9095), - [anon_sym_DASH_GT] = ACTIONS(9095), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9093), - [anon_sym_override] = ACTIONS(9093), - [anon_sym_requires] = ACTIONS(9093), - [anon_sym_COLON_RBRACK] = ACTIONS(9095), - }, - [STATE(3579)] = { - [sym_identifier] = ACTIONS(6949), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_TILDE] = ACTIONS(6951), - [anon_sym_STAR] = ACTIONS(6951), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym___extension__] = ACTIONS(6949), - [anon_sym_virtual] = ACTIONS(6949), - [anon_sym_extern] = ACTIONS(6949), - [anon_sym___attribute__] = ACTIONS(6949), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_using] = ACTIONS(6949), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6951), - [anon_sym___declspec] = ACTIONS(6949), - [anon_sym___based] = ACTIONS(6949), - [anon_sym___cdecl] = ACTIONS(6949), - [anon_sym___clrcall] = ACTIONS(6949), - [anon_sym___stdcall] = ACTIONS(6949), - [anon_sym___fastcall] = ACTIONS(6949), - [anon_sym___thiscall] = ACTIONS(6949), - [anon_sym___vectorcall] = ACTIONS(6949), - [anon_sym_signed] = ACTIONS(6949), - [anon_sym_unsigned] = ACTIONS(6949), - [anon_sym_long] = ACTIONS(6949), - [anon_sym_short] = ACTIONS(6949), - [anon_sym_LBRACK] = ACTIONS(6949), - [anon_sym_static] = ACTIONS(6949), - [anon_sym_register] = ACTIONS(6949), - [anon_sym_inline] = ACTIONS(6949), - [anon_sym___inline] = ACTIONS(6949), - [anon_sym___inline__] = ACTIONS(6949), - [anon_sym___forceinline] = ACTIONS(6949), - [anon_sym_thread_local] = ACTIONS(6949), - [anon_sym___thread] = ACTIONS(6949), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6949), - [anon_sym_volatile] = ACTIONS(6949), - [anon_sym_restrict] = ACTIONS(6949), - [anon_sym___restrict__] = ACTIONS(6949), - [anon_sym__Atomic] = ACTIONS(6949), - [anon_sym__Noreturn] = ACTIONS(6949), - [anon_sym_noreturn] = ACTIONS(6949), - [anon_sym__Nonnull] = ACTIONS(6949), - [anon_sym_mutable] = ACTIONS(6949), - [anon_sym_constinit] = ACTIONS(6949), - [anon_sym_consteval] = ACTIONS(6949), - [anon_sym_alignas] = ACTIONS(6949), - [anon_sym__Alignas] = ACTIONS(6949), - [sym_primitive_type] = ACTIONS(6949), - [anon_sym_enum] = ACTIONS(6949), - [anon_sym_class] = ACTIONS(6949), - [anon_sym_struct] = ACTIONS(6949), - [anon_sym_union] = ACTIONS(6949), - [anon_sym_or] = ACTIONS(6949), - [anon_sym_and] = ACTIONS(6949), - [anon_sym_typename] = ACTIONS(6949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6949), - [anon_sym_decltype] = ACTIONS(6949), - [anon_sym_explicit] = ACTIONS(6949), - [anon_sym_template] = ACTIONS(6949), - [anon_sym_operator] = ACTIONS(6949), - [anon_sym_friend] = ACTIONS(6949), - [anon_sym_concept] = ACTIONS(6949), - [anon_sym_LBRACK_COLON] = ACTIONS(6951), - }, - [STATE(3580)] = { - [sym_identifier] = ACTIONS(9097), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9099), - [anon_sym_COMMA] = ACTIONS(9099), - [anon_sym_RPAREN] = ACTIONS(9099), - [aux_sym_preproc_if_token2] = ACTIONS(9099), - [aux_sym_preproc_else_token1] = ACTIONS(9099), - [aux_sym_preproc_elif_token1] = ACTIONS(9097), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9099), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9099), - [anon_sym_LPAREN2] = ACTIONS(9099), - [anon_sym_DASH] = ACTIONS(9097), - [anon_sym_PLUS] = ACTIONS(9097), - [anon_sym_STAR] = ACTIONS(9097), - [anon_sym_SLASH] = ACTIONS(9097), - [anon_sym_PERCENT] = ACTIONS(9097), - [anon_sym_PIPE_PIPE] = ACTIONS(9099), - [anon_sym_AMP_AMP] = ACTIONS(9099), - [anon_sym_PIPE] = ACTIONS(9097), - [anon_sym_CARET] = ACTIONS(9097), - [anon_sym_AMP] = ACTIONS(9097), - [anon_sym_EQ_EQ] = ACTIONS(9099), - [anon_sym_BANG_EQ] = ACTIONS(9099), - [anon_sym_GT] = ACTIONS(9097), - [anon_sym_GT_EQ] = ACTIONS(9099), - [anon_sym_LT_EQ] = ACTIONS(9097), - [anon_sym_LT] = ACTIONS(9097), - [anon_sym_LT_LT] = ACTIONS(9097), - [anon_sym_GT_GT] = ACTIONS(9097), - [anon_sym_SEMI] = ACTIONS(9099), - [anon_sym___attribute__] = ACTIONS(9097), - [anon_sym___attribute] = ACTIONS(9097), - [anon_sym_COLON] = ACTIONS(9097), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9099), - [anon_sym_RBRACE] = ACTIONS(9099), - [anon_sym_LBRACK] = ACTIONS(9099), - [anon_sym_EQ] = ACTIONS(9097), - [anon_sym_QMARK] = ACTIONS(9099), - [anon_sym_STAR_EQ] = ACTIONS(9099), - [anon_sym_SLASH_EQ] = ACTIONS(9099), - [anon_sym_PERCENT_EQ] = ACTIONS(9099), - [anon_sym_PLUS_EQ] = ACTIONS(9099), - [anon_sym_DASH_EQ] = ACTIONS(9099), - [anon_sym_LT_LT_EQ] = ACTIONS(9099), - [anon_sym_GT_GT_EQ] = ACTIONS(9099), - [anon_sym_AMP_EQ] = ACTIONS(9099), - [anon_sym_CARET_EQ] = ACTIONS(9099), - [anon_sym_PIPE_EQ] = ACTIONS(9099), - [anon_sym_and_eq] = ACTIONS(9097), - [anon_sym_or_eq] = ACTIONS(9097), - [anon_sym_xor_eq] = ACTIONS(9097), - [anon_sym_LT_EQ_GT] = ACTIONS(9099), - [anon_sym_or] = ACTIONS(9097), - [anon_sym_and] = ACTIONS(9097), - [anon_sym_bitor] = ACTIONS(9097), - [anon_sym_xor] = ACTIONS(9097), - [anon_sym_bitand] = ACTIONS(9097), - [anon_sym_not_eq] = ACTIONS(9097), - [anon_sym_DASH_DASH] = ACTIONS(9099), - [anon_sym_PLUS_PLUS] = ACTIONS(9099), - [anon_sym_DOT] = ACTIONS(9097), - [anon_sym_DOT_STAR] = ACTIONS(9099), - [anon_sym_DASH_GT] = ACTIONS(9099), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9097), - [anon_sym_override] = ACTIONS(9097), - [anon_sym_requires] = ACTIONS(9097), - [anon_sym_COLON_RBRACK] = ACTIONS(9099), - }, - [STATE(3581)] = { - [sym_identifier] = ACTIONS(9101), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9103), - [anon_sym_COMMA] = ACTIONS(9103), - [anon_sym_RPAREN] = ACTIONS(9103), - [aux_sym_preproc_if_token2] = ACTIONS(9103), - [aux_sym_preproc_else_token1] = ACTIONS(9103), - [aux_sym_preproc_elif_token1] = ACTIONS(9101), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9103), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9103), - [anon_sym_LPAREN2] = ACTIONS(9103), - [anon_sym_DASH] = ACTIONS(9101), - [anon_sym_PLUS] = ACTIONS(9101), - [anon_sym_STAR] = ACTIONS(9101), - [anon_sym_SLASH] = ACTIONS(9101), - [anon_sym_PERCENT] = ACTIONS(9101), - [anon_sym_PIPE_PIPE] = ACTIONS(9103), - [anon_sym_AMP_AMP] = ACTIONS(9103), - [anon_sym_PIPE] = ACTIONS(9101), - [anon_sym_CARET] = ACTIONS(9101), - [anon_sym_AMP] = ACTIONS(9101), - [anon_sym_EQ_EQ] = ACTIONS(9103), - [anon_sym_BANG_EQ] = ACTIONS(9103), - [anon_sym_GT] = ACTIONS(9101), - [anon_sym_GT_EQ] = ACTIONS(9103), - [anon_sym_LT_EQ] = ACTIONS(9101), - [anon_sym_LT] = ACTIONS(9101), - [anon_sym_LT_LT] = ACTIONS(9101), - [anon_sym_GT_GT] = ACTIONS(9101), - [anon_sym_SEMI] = ACTIONS(9103), - [anon_sym___attribute__] = ACTIONS(9101), - [anon_sym___attribute] = ACTIONS(9101), - [anon_sym_COLON] = ACTIONS(9101), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9103), - [anon_sym_RBRACE] = ACTIONS(9103), - [anon_sym_LBRACK] = ACTIONS(9103), - [anon_sym_EQ] = ACTIONS(9101), - [anon_sym_QMARK] = ACTIONS(9103), - [anon_sym_STAR_EQ] = ACTIONS(9103), - [anon_sym_SLASH_EQ] = ACTIONS(9103), - [anon_sym_PERCENT_EQ] = ACTIONS(9103), - [anon_sym_PLUS_EQ] = ACTIONS(9103), - [anon_sym_DASH_EQ] = ACTIONS(9103), - [anon_sym_LT_LT_EQ] = ACTIONS(9103), - [anon_sym_GT_GT_EQ] = ACTIONS(9103), - [anon_sym_AMP_EQ] = ACTIONS(9103), - [anon_sym_CARET_EQ] = ACTIONS(9103), - [anon_sym_PIPE_EQ] = ACTIONS(9103), - [anon_sym_and_eq] = ACTIONS(9101), - [anon_sym_or_eq] = ACTIONS(9101), - [anon_sym_xor_eq] = ACTIONS(9101), - [anon_sym_LT_EQ_GT] = ACTIONS(9103), - [anon_sym_or] = ACTIONS(9101), - [anon_sym_and] = ACTIONS(9101), - [anon_sym_bitor] = ACTIONS(9101), - [anon_sym_xor] = ACTIONS(9101), - [anon_sym_bitand] = ACTIONS(9101), - [anon_sym_not_eq] = ACTIONS(9101), - [anon_sym_DASH_DASH] = ACTIONS(9103), - [anon_sym_PLUS_PLUS] = ACTIONS(9103), - [anon_sym_DOT] = ACTIONS(9101), - [anon_sym_DOT_STAR] = ACTIONS(9103), - [anon_sym_DASH_GT] = ACTIONS(9103), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9101), - [anon_sym_override] = ACTIONS(9101), - [anon_sym_requires] = ACTIONS(9101), - [anon_sym_COLON_RBRACK] = ACTIONS(9103), - }, - [STATE(3582)] = { - [sym_identifier] = ACTIONS(6226), - [anon_sym_LPAREN2] = ACTIONS(6233), - [anon_sym_TILDE] = ACTIONS(6233), - [anon_sym_STAR] = ACTIONS(6233), - [anon_sym_PIPE_PIPE] = ACTIONS(6233), - [anon_sym_AMP_AMP] = ACTIONS(6233), - [anon_sym_AMP] = ACTIONS(6226), - [anon_sym___extension__] = ACTIONS(6226), - [anon_sym_virtual] = ACTIONS(6226), - [anon_sym_extern] = ACTIONS(6226), - [anon_sym___attribute__] = ACTIONS(6226), - [anon_sym___attribute] = ACTIONS(6226), - [anon_sym_using] = ACTIONS(6226), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6233), - [anon_sym___declspec] = ACTIONS(6226), - [anon_sym___based] = ACTIONS(6226), - [anon_sym___cdecl] = ACTIONS(6226), - [anon_sym___clrcall] = ACTIONS(6226), - [anon_sym___stdcall] = ACTIONS(6226), - [anon_sym___fastcall] = ACTIONS(6226), - [anon_sym___thiscall] = ACTIONS(6226), - [anon_sym___vectorcall] = ACTIONS(6226), - [anon_sym_signed] = ACTIONS(6226), - [anon_sym_unsigned] = ACTIONS(6226), - [anon_sym_long] = ACTIONS(6226), - [anon_sym_short] = ACTIONS(6226), - [anon_sym_LBRACK] = ACTIONS(6226), - [anon_sym_static] = ACTIONS(6226), - [anon_sym_register] = ACTIONS(6226), - [anon_sym_inline] = ACTIONS(6226), - [anon_sym___inline] = ACTIONS(6226), - [anon_sym___inline__] = ACTIONS(6226), - [anon_sym___forceinline] = ACTIONS(6226), - [anon_sym_thread_local] = ACTIONS(6226), - [anon_sym___thread] = ACTIONS(6226), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6226), - [anon_sym_volatile] = ACTIONS(6226), - [anon_sym_restrict] = ACTIONS(6226), - [anon_sym___restrict__] = ACTIONS(6226), - [anon_sym__Atomic] = ACTIONS(6226), - [anon_sym__Noreturn] = ACTIONS(6226), - [anon_sym_noreturn] = ACTIONS(6226), - [anon_sym__Nonnull] = ACTIONS(6226), - [anon_sym_mutable] = ACTIONS(6226), - [anon_sym_constinit] = ACTIONS(6226), - [anon_sym_consteval] = ACTIONS(6226), - [anon_sym_alignas] = ACTIONS(6226), - [anon_sym__Alignas] = ACTIONS(6226), - [sym_primitive_type] = ACTIONS(6226), - [anon_sym_enum] = ACTIONS(6226), - [anon_sym_class] = ACTIONS(6226), - [anon_sym_struct] = ACTIONS(6226), - [anon_sym_union] = ACTIONS(6226), - [anon_sym_or] = ACTIONS(6226), - [anon_sym_and] = ACTIONS(6226), - [anon_sym_typename] = ACTIONS(6226), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6226), - [anon_sym_decltype] = ACTIONS(6226), - [anon_sym_explicit] = ACTIONS(6226), - [anon_sym_template] = ACTIONS(6226), - [anon_sym_operator] = ACTIONS(6226), - [anon_sym_friend] = ACTIONS(6226), - [anon_sym_concept] = ACTIONS(6226), - [anon_sym_LBRACK_COLON] = ACTIONS(6233), - }, - [STATE(3583)] = { - [sym_identifier] = ACTIONS(6949), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_TILDE] = ACTIONS(6951), - [anon_sym_STAR] = ACTIONS(6951), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym___extension__] = ACTIONS(6949), - [anon_sym_virtual] = ACTIONS(6949), - [anon_sym_extern] = ACTIONS(6949), - [anon_sym___attribute__] = ACTIONS(6949), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_using] = ACTIONS(6949), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6951), - [anon_sym___declspec] = ACTIONS(6949), - [anon_sym___based] = ACTIONS(6949), - [anon_sym___cdecl] = ACTIONS(6949), - [anon_sym___clrcall] = ACTIONS(6949), - [anon_sym___stdcall] = ACTIONS(6949), - [anon_sym___fastcall] = ACTIONS(6949), - [anon_sym___thiscall] = ACTIONS(6949), - [anon_sym___vectorcall] = ACTIONS(6949), - [anon_sym_signed] = ACTIONS(6949), - [anon_sym_unsigned] = ACTIONS(6949), - [anon_sym_long] = ACTIONS(6949), - [anon_sym_short] = ACTIONS(6949), - [anon_sym_LBRACK] = ACTIONS(6949), - [anon_sym_static] = ACTIONS(6949), - [anon_sym_register] = ACTIONS(6949), - [anon_sym_inline] = ACTIONS(6949), - [anon_sym___inline] = ACTIONS(6949), - [anon_sym___inline__] = ACTIONS(6949), - [anon_sym___forceinline] = ACTIONS(6949), - [anon_sym_thread_local] = ACTIONS(6949), - [anon_sym___thread] = ACTIONS(6949), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6949), - [anon_sym_volatile] = ACTIONS(6949), - [anon_sym_restrict] = ACTIONS(6949), - [anon_sym___restrict__] = ACTIONS(6949), - [anon_sym__Atomic] = ACTIONS(6949), - [anon_sym__Noreturn] = ACTIONS(6949), - [anon_sym_noreturn] = ACTIONS(6949), - [anon_sym__Nonnull] = ACTIONS(6949), - [anon_sym_mutable] = ACTIONS(6949), - [anon_sym_constinit] = ACTIONS(6949), - [anon_sym_consteval] = ACTIONS(6949), - [anon_sym_alignas] = ACTIONS(6949), - [anon_sym__Alignas] = ACTIONS(6949), - [sym_primitive_type] = ACTIONS(6949), - [anon_sym_enum] = ACTIONS(6949), - [anon_sym_class] = ACTIONS(6949), - [anon_sym_struct] = ACTIONS(6949), - [anon_sym_union] = ACTIONS(6949), - [anon_sym_or] = ACTIONS(6949), - [anon_sym_and] = ACTIONS(6949), - [anon_sym_typename] = ACTIONS(6949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6949), - [anon_sym_decltype] = ACTIONS(6949), - [anon_sym_explicit] = ACTIONS(6949), - [anon_sym_template] = ACTIONS(6949), - [anon_sym_operator] = ACTIONS(6949), - [anon_sym_friend] = ACTIONS(6949), - [anon_sym_concept] = ACTIONS(6949), - [anon_sym_LBRACK_COLON] = ACTIONS(6951), - }, - [STATE(3584)] = { - [sym_identifier] = ACTIONS(6262), - [anon_sym_LPAREN2] = ACTIONS(6264), - [anon_sym_TILDE] = ACTIONS(6264), - [anon_sym_STAR] = ACTIONS(6264), - [anon_sym_PIPE_PIPE] = ACTIONS(6264), - [anon_sym_AMP_AMP] = ACTIONS(6264), - [anon_sym_AMP] = ACTIONS(6262), - [anon_sym___extension__] = ACTIONS(6262), - [anon_sym_virtual] = ACTIONS(6262), - [anon_sym_extern] = ACTIONS(6262), - [anon_sym___attribute__] = ACTIONS(6262), - [anon_sym___attribute] = ACTIONS(6262), - [anon_sym_using] = ACTIONS(6262), - [anon_sym_COLON_COLON] = ACTIONS(6264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6264), - [anon_sym___declspec] = ACTIONS(6262), - [anon_sym___based] = ACTIONS(6262), - [anon_sym___cdecl] = ACTIONS(6262), - [anon_sym___clrcall] = ACTIONS(6262), - [anon_sym___stdcall] = ACTIONS(6262), - [anon_sym___fastcall] = ACTIONS(6262), - [anon_sym___thiscall] = ACTIONS(6262), - [anon_sym___vectorcall] = ACTIONS(6262), - [anon_sym_signed] = ACTIONS(6262), - [anon_sym_unsigned] = ACTIONS(6262), - [anon_sym_long] = ACTIONS(6262), - [anon_sym_short] = ACTIONS(6262), - [anon_sym_LBRACK] = ACTIONS(6262), - [anon_sym_static] = ACTIONS(6262), - [anon_sym_register] = ACTIONS(6262), - [anon_sym_inline] = ACTIONS(6262), - [anon_sym___inline] = ACTIONS(6262), - [anon_sym___inline__] = ACTIONS(6262), - [anon_sym___forceinline] = ACTIONS(6262), - [anon_sym_thread_local] = ACTIONS(6262), - [anon_sym___thread] = ACTIONS(6262), - [anon_sym_const] = ACTIONS(6262), - [anon_sym_constexpr] = ACTIONS(6262), - [anon_sym_volatile] = ACTIONS(6262), - [anon_sym_restrict] = ACTIONS(6262), - [anon_sym___restrict__] = ACTIONS(6262), - [anon_sym__Atomic] = ACTIONS(6262), - [anon_sym__Noreturn] = ACTIONS(6262), - [anon_sym_noreturn] = ACTIONS(6262), - [anon_sym__Nonnull] = ACTIONS(6262), - [anon_sym_mutable] = ACTIONS(6262), - [anon_sym_constinit] = ACTIONS(6262), - [anon_sym_consteval] = ACTIONS(6262), - [anon_sym_alignas] = ACTIONS(6262), - [anon_sym__Alignas] = ACTIONS(6262), - [sym_primitive_type] = ACTIONS(6262), - [anon_sym_enum] = ACTIONS(6262), - [anon_sym_class] = ACTIONS(6262), - [anon_sym_struct] = ACTIONS(6262), - [anon_sym_union] = ACTIONS(6262), - [anon_sym_or] = ACTIONS(6262), - [anon_sym_and] = ACTIONS(6262), - [anon_sym_typename] = ACTIONS(6262), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6262), - [anon_sym_decltype] = ACTIONS(6262), - [anon_sym_explicit] = ACTIONS(6262), - [anon_sym_template] = ACTIONS(6262), - [anon_sym_operator] = ACTIONS(6262), - [anon_sym_friend] = ACTIONS(6262), - [anon_sym_concept] = ACTIONS(6262), - [anon_sym_LBRACK_COLON] = ACTIONS(6264), - }, - [STATE(3585)] = { - [sym_identifier] = ACTIONS(6949), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_TILDE] = ACTIONS(6951), - [anon_sym_STAR] = ACTIONS(6951), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym___extension__] = ACTIONS(6949), - [anon_sym_virtual] = ACTIONS(6949), - [anon_sym_extern] = ACTIONS(6949), - [anon_sym___attribute__] = ACTIONS(6949), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_using] = ACTIONS(6949), - [anon_sym_COLON_COLON] = ACTIONS(6951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6951), - [anon_sym___declspec] = ACTIONS(6949), - [anon_sym___based] = ACTIONS(6949), - [anon_sym___cdecl] = ACTIONS(6949), - [anon_sym___clrcall] = ACTIONS(6949), - [anon_sym___stdcall] = ACTIONS(6949), - [anon_sym___fastcall] = ACTIONS(6949), - [anon_sym___thiscall] = ACTIONS(6949), - [anon_sym___vectorcall] = ACTIONS(6949), - [anon_sym_signed] = ACTIONS(6949), - [anon_sym_unsigned] = ACTIONS(6949), - [anon_sym_long] = ACTIONS(6949), - [anon_sym_short] = ACTIONS(6949), - [anon_sym_LBRACK] = ACTIONS(6949), - [anon_sym_static] = ACTIONS(6949), - [anon_sym_register] = ACTIONS(6949), - [anon_sym_inline] = ACTIONS(6949), - [anon_sym___inline] = ACTIONS(6949), - [anon_sym___inline__] = ACTIONS(6949), - [anon_sym___forceinline] = ACTIONS(6949), - [anon_sym_thread_local] = ACTIONS(6949), - [anon_sym___thread] = ACTIONS(6949), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6949), - [anon_sym_volatile] = ACTIONS(6949), - [anon_sym_restrict] = ACTIONS(6949), - [anon_sym___restrict__] = ACTIONS(6949), - [anon_sym__Atomic] = ACTIONS(6949), - [anon_sym__Noreturn] = ACTIONS(6949), - [anon_sym_noreturn] = ACTIONS(6949), - [anon_sym__Nonnull] = ACTIONS(6949), - [anon_sym_mutable] = ACTIONS(6949), - [anon_sym_constinit] = ACTIONS(6949), - [anon_sym_consteval] = ACTIONS(6949), - [anon_sym_alignas] = ACTIONS(6949), - [anon_sym__Alignas] = ACTIONS(6949), - [sym_primitive_type] = ACTIONS(6949), - [anon_sym_enum] = ACTIONS(6949), - [anon_sym_class] = ACTIONS(6949), - [anon_sym_struct] = ACTIONS(6949), - [anon_sym_union] = ACTIONS(6949), - [anon_sym_or] = ACTIONS(6949), - [anon_sym_and] = ACTIONS(6949), - [anon_sym_typename] = ACTIONS(6949), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6949), - [anon_sym_decltype] = ACTIONS(6949), - [anon_sym_explicit] = ACTIONS(6949), - [anon_sym_template] = ACTIONS(6949), - [anon_sym_operator] = ACTIONS(6949), - [anon_sym_friend] = ACTIONS(6949), - [anon_sym_concept] = ACTIONS(6949), - [anon_sym_LBRACK_COLON] = ACTIONS(6951), - }, - [STATE(3586)] = { - [sym_string_literal] = STATE(4004), - [sym_template_argument_list] = STATE(5595), - [sym_raw_string_literal] = STATE(4004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(6713), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym_COLON] = ACTIONS(5330), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(5276), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5278), - [anon_sym_SLASH_EQ] = ACTIONS(5278), - [anon_sym_PERCENT_EQ] = ACTIONS(5278), - [anon_sym_PLUS_EQ] = ACTIONS(5278), - [anon_sym_DASH_EQ] = ACTIONS(5278), - [anon_sym_LT_LT_EQ] = ACTIONS(5278), - [anon_sym_GT_GT_EQ] = ACTIONS(5278), - [anon_sym_AMP_EQ] = ACTIONS(5278), - [anon_sym_CARET_EQ] = ACTIONS(5278), - [anon_sym_PIPE_EQ] = ACTIONS(5278), - [anon_sym_and_eq] = ACTIONS(5278), - [anon_sym_or_eq] = ACTIONS(5278), - [anon_sym_xor_eq] = ACTIONS(5278), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - }, - [STATE(3587)] = { - [sym_identifier] = ACTIONS(6762), - [anon_sym_LPAREN2] = ACTIONS(6764), - [anon_sym_TILDE] = ACTIONS(6764), - [anon_sym_STAR] = ACTIONS(6764), - [anon_sym_PIPE_PIPE] = ACTIONS(6764), - [anon_sym_AMP_AMP] = ACTIONS(6764), - [anon_sym_AMP] = ACTIONS(6762), - [anon_sym___extension__] = ACTIONS(6762), - [anon_sym_virtual] = ACTIONS(6762), - [anon_sym_extern] = ACTIONS(6762), - [anon_sym___attribute__] = ACTIONS(6762), - [anon_sym___attribute] = ACTIONS(6762), - [anon_sym_using] = ACTIONS(6762), - [anon_sym_COLON_COLON] = ACTIONS(6764), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6764), - [anon_sym___declspec] = ACTIONS(6762), - [anon_sym___based] = ACTIONS(6762), - [anon_sym___cdecl] = ACTIONS(6762), - [anon_sym___clrcall] = ACTIONS(6762), - [anon_sym___stdcall] = ACTIONS(6762), - [anon_sym___fastcall] = ACTIONS(6762), - [anon_sym___thiscall] = ACTIONS(6762), - [anon_sym___vectorcall] = ACTIONS(6762), - [anon_sym_signed] = ACTIONS(6762), - [anon_sym_unsigned] = ACTIONS(6762), - [anon_sym_long] = ACTIONS(6762), - [anon_sym_short] = ACTIONS(6762), - [anon_sym_LBRACK] = ACTIONS(6762), - [anon_sym_static] = ACTIONS(6762), - [anon_sym_register] = ACTIONS(6762), - [anon_sym_inline] = ACTIONS(6762), - [anon_sym___inline] = ACTIONS(6762), - [anon_sym___inline__] = ACTIONS(6762), - [anon_sym___forceinline] = ACTIONS(6762), - [anon_sym_thread_local] = ACTIONS(6762), - [anon_sym___thread] = ACTIONS(6762), - [anon_sym_const] = ACTIONS(6762), - [anon_sym_constexpr] = ACTIONS(6762), - [anon_sym_volatile] = ACTIONS(6762), - [anon_sym_restrict] = ACTIONS(6762), - [anon_sym___restrict__] = ACTIONS(6762), - [anon_sym__Atomic] = ACTIONS(6762), - [anon_sym__Noreturn] = ACTIONS(6762), - [anon_sym_noreturn] = ACTIONS(6762), - [anon_sym__Nonnull] = ACTIONS(6762), - [anon_sym_mutable] = ACTIONS(6762), - [anon_sym_constinit] = ACTIONS(6762), - [anon_sym_consteval] = ACTIONS(6762), - [anon_sym_alignas] = ACTIONS(6762), - [anon_sym__Alignas] = ACTIONS(6762), - [sym_primitive_type] = ACTIONS(6762), - [anon_sym_enum] = ACTIONS(6762), - [anon_sym_class] = ACTIONS(6762), - [anon_sym_struct] = ACTIONS(6762), - [anon_sym_union] = ACTIONS(6762), - [anon_sym_or] = ACTIONS(6762), - [anon_sym_and] = ACTIONS(6762), - [anon_sym_typename] = ACTIONS(6762), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6762), - [anon_sym_decltype] = ACTIONS(6762), - [anon_sym_explicit] = ACTIONS(6762), - [anon_sym_template] = ACTIONS(6762), - [anon_sym_operator] = ACTIONS(6762), - [anon_sym_friend] = ACTIONS(6762), - [anon_sym_concept] = ACTIONS(6762), - [anon_sym_LBRACK_COLON] = ACTIONS(6764), - }, - [STATE(3588)] = { - [sym_argument_list] = STATE(3817), - [sym_initializer_list] = STATE(3817), - [sym_identifier] = ACTIONS(9105), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9107), - [anon_sym_COMMA] = ACTIONS(9107), - [anon_sym_RPAREN] = ACTIONS(9107), - [aux_sym_preproc_if_token2] = ACTIONS(9107), - [aux_sym_preproc_else_token1] = ACTIONS(9107), - [aux_sym_preproc_elif_token1] = ACTIONS(9105), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9107), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9107), - [anon_sym_LPAREN2] = ACTIONS(8808), - [anon_sym_DASH] = ACTIONS(9105), - [anon_sym_PLUS] = ACTIONS(9105), - [anon_sym_STAR] = ACTIONS(9105), - [anon_sym_SLASH] = ACTIONS(9105), - [anon_sym_PERCENT] = ACTIONS(9105), - [anon_sym_PIPE_PIPE] = ACTIONS(9107), - [anon_sym_AMP_AMP] = ACTIONS(9107), - [anon_sym_PIPE] = ACTIONS(9105), - [anon_sym_CARET] = ACTIONS(9105), - [anon_sym_AMP] = ACTIONS(9105), - [anon_sym_EQ_EQ] = ACTIONS(9107), - [anon_sym_BANG_EQ] = ACTIONS(9107), - [anon_sym_GT] = ACTIONS(9105), - [anon_sym_GT_EQ] = ACTIONS(9107), - [anon_sym_LT_EQ] = ACTIONS(9105), - [anon_sym_LT] = ACTIONS(9105), - [anon_sym_LT_LT] = ACTIONS(9105), - [anon_sym_GT_GT] = ACTIONS(9105), - [anon_sym_SEMI] = ACTIONS(9107), - [anon_sym___attribute__] = ACTIONS(9105), - [anon_sym___attribute] = ACTIONS(9105), - [anon_sym_COLON] = ACTIONS(9105), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9107), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_RBRACE] = ACTIONS(9107), - [anon_sym_LBRACK] = ACTIONS(9107), - [anon_sym_EQ] = ACTIONS(9105), - [anon_sym_QMARK] = ACTIONS(9107), - [anon_sym_STAR_EQ] = ACTIONS(9107), - [anon_sym_SLASH_EQ] = ACTIONS(9107), - [anon_sym_PERCENT_EQ] = ACTIONS(9107), - [anon_sym_PLUS_EQ] = ACTIONS(9107), - [anon_sym_DASH_EQ] = ACTIONS(9107), - [anon_sym_LT_LT_EQ] = ACTIONS(9107), - [anon_sym_GT_GT_EQ] = ACTIONS(9107), - [anon_sym_AMP_EQ] = ACTIONS(9107), - [anon_sym_CARET_EQ] = ACTIONS(9107), - [anon_sym_PIPE_EQ] = ACTIONS(9107), - [anon_sym_and_eq] = ACTIONS(9105), - [anon_sym_or_eq] = ACTIONS(9105), - [anon_sym_xor_eq] = ACTIONS(9105), - [anon_sym_LT_EQ_GT] = ACTIONS(9107), - [anon_sym_or] = ACTIONS(9105), - [anon_sym_and] = ACTIONS(9105), - [anon_sym_bitor] = ACTIONS(9105), - [anon_sym_xor] = ACTIONS(9105), - [anon_sym_bitand] = ACTIONS(9105), - [anon_sym_not_eq] = ACTIONS(9105), - [anon_sym_DASH_DASH] = ACTIONS(9107), - [anon_sym_PLUS_PLUS] = ACTIONS(9107), - [anon_sym_DOT] = ACTIONS(9105), - [anon_sym_DOT_STAR] = ACTIONS(9107), - [anon_sym_DASH_GT] = ACTIONS(9107), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9107), - }, - [STATE(3589)] = { - [sym_identifier] = ACTIONS(5229), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5231), - [anon_sym_COMMA] = ACTIONS(5231), - [anon_sym_RPAREN] = ACTIONS(5231), - [anon_sym_LPAREN2] = ACTIONS(5231), - [anon_sym_TILDE] = ACTIONS(5231), - [anon_sym_STAR] = ACTIONS(5231), - [anon_sym_AMP_AMP] = ACTIONS(5231), - [anon_sym_AMP] = ACTIONS(5229), - [anon_sym_SEMI] = ACTIONS(5231), - [anon_sym___extension__] = ACTIONS(5229), - [anon_sym_virtual] = ACTIONS(5229), - [anon_sym_extern] = ACTIONS(5229), - [anon_sym___attribute__] = ACTIONS(5229), - [anon_sym___attribute] = ACTIONS(5229), - [anon_sym_COLON] = ACTIONS(5229), - [anon_sym_COLON_COLON] = ACTIONS(5231), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5231), - [anon_sym___declspec] = ACTIONS(5229), - [anon_sym___based] = ACTIONS(5229), - [anon_sym___cdecl] = ACTIONS(5229), - [anon_sym___clrcall] = ACTIONS(5229), - [anon_sym___stdcall] = ACTIONS(5229), - [anon_sym___fastcall] = ACTIONS(5229), - [anon_sym___thiscall] = ACTIONS(5229), - [anon_sym___vectorcall] = ACTIONS(5229), - [anon_sym_LBRACE] = ACTIONS(5231), - [anon_sym_LBRACK] = ACTIONS(5229), - [anon_sym_static] = ACTIONS(5229), - [anon_sym_EQ] = ACTIONS(5231), - [anon_sym_register] = ACTIONS(5229), - [anon_sym_inline] = ACTIONS(5229), - [anon_sym___inline] = ACTIONS(5229), - [anon_sym___inline__] = ACTIONS(5229), - [anon_sym___forceinline] = ACTIONS(5229), - [anon_sym_thread_local] = ACTIONS(5229), - [anon_sym___thread] = ACTIONS(5229), - [anon_sym_const] = ACTIONS(5229), - [anon_sym_constexpr] = ACTIONS(5229), - [anon_sym_volatile] = ACTIONS(5229), - [anon_sym_restrict] = ACTIONS(5229), - [anon_sym___restrict__] = ACTIONS(5229), - [anon_sym__Atomic] = ACTIONS(5229), - [anon_sym__Noreturn] = ACTIONS(5229), - [anon_sym_noreturn] = ACTIONS(5229), - [anon_sym__Nonnull] = ACTIONS(5229), - [anon_sym_mutable] = ACTIONS(5229), - [anon_sym_constinit] = ACTIONS(5229), - [anon_sym_consteval] = ACTIONS(5229), - [anon_sym_alignas] = ACTIONS(5229), - [anon_sym__Alignas] = ACTIONS(5229), - [anon_sym_DASH_GT] = ACTIONS(5231), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5229), - [anon_sym_final] = ACTIONS(5229), - [anon_sym_override] = ACTIONS(5229), - [anon_sym_explicit] = ACTIONS(5229), - [anon_sym_private] = ACTIONS(5229), - [anon_sym_template] = ACTIONS(5229), - [anon_sym_GT2] = ACTIONS(5231), - [anon_sym_operator] = ACTIONS(5229), - [anon_sym_public] = ACTIONS(5229), - [anon_sym_protected] = ACTIONS(5229), - [anon_sym_noexcept] = ACTIONS(5229), - [anon_sym_throw] = ACTIONS(5229), - [anon_sym_requires] = ACTIONS(5229), - [anon_sym_LBRACK_COLON] = ACTIONS(5231), - }, - [STATE(3590)] = { - [sym_identifier] = ACTIONS(9109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9111), - [anon_sym_COMMA] = ACTIONS(9111), - [anon_sym_RPAREN] = ACTIONS(9111), - [aux_sym_preproc_if_token2] = ACTIONS(9111), - [aux_sym_preproc_else_token1] = ACTIONS(9111), - [aux_sym_preproc_elif_token1] = ACTIONS(9109), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9111), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9111), - [anon_sym_LPAREN2] = ACTIONS(9111), - [anon_sym_DASH] = ACTIONS(9109), - [anon_sym_PLUS] = ACTIONS(9109), - [anon_sym_STAR] = ACTIONS(9109), - [anon_sym_SLASH] = ACTIONS(9109), - [anon_sym_PERCENT] = ACTIONS(9109), - [anon_sym_PIPE_PIPE] = ACTIONS(9111), - [anon_sym_AMP_AMP] = ACTIONS(9111), - [anon_sym_PIPE] = ACTIONS(9109), - [anon_sym_CARET] = ACTIONS(9109), - [anon_sym_AMP] = ACTIONS(9109), - [anon_sym_EQ_EQ] = ACTIONS(9111), - [anon_sym_BANG_EQ] = ACTIONS(9111), - [anon_sym_GT] = ACTIONS(9109), - [anon_sym_GT_EQ] = ACTIONS(9111), - [anon_sym_LT_EQ] = ACTIONS(9109), - [anon_sym_LT] = ACTIONS(9109), - [anon_sym_LT_LT] = ACTIONS(9109), - [anon_sym_GT_GT] = ACTIONS(9109), - [anon_sym_SEMI] = ACTIONS(9111), - [anon_sym___attribute__] = ACTIONS(9109), - [anon_sym___attribute] = ACTIONS(9109), - [anon_sym_COLON] = ACTIONS(9109), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9111), - [anon_sym_RBRACE] = ACTIONS(9111), - [anon_sym_LBRACK] = ACTIONS(9111), - [anon_sym_EQ] = ACTIONS(9109), - [anon_sym_QMARK] = ACTIONS(9111), - [anon_sym_STAR_EQ] = ACTIONS(9111), - [anon_sym_SLASH_EQ] = ACTIONS(9111), - [anon_sym_PERCENT_EQ] = ACTIONS(9111), - [anon_sym_PLUS_EQ] = ACTIONS(9111), - [anon_sym_DASH_EQ] = ACTIONS(9111), - [anon_sym_LT_LT_EQ] = ACTIONS(9111), - [anon_sym_GT_GT_EQ] = ACTIONS(9111), - [anon_sym_AMP_EQ] = ACTIONS(9111), - [anon_sym_CARET_EQ] = ACTIONS(9111), - [anon_sym_PIPE_EQ] = ACTIONS(9111), - [anon_sym_and_eq] = ACTIONS(9109), - [anon_sym_or_eq] = ACTIONS(9109), - [anon_sym_xor_eq] = ACTIONS(9109), - [anon_sym_LT_EQ_GT] = ACTIONS(9111), - [anon_sym_or] = ACTIONS(9109), - [anon_sym_and] = ACTIONS(9109), - [anon_sym_bitor] = ACTIONS(9109), - [anon_sym_xor] = ACTIONS(9109), - [anon_sym_bitand] = ACTIONS(9109), - [anon_sym_not_eq] = ACTIONS(9109), - [anon_sym_DASH_DASH] = ACTIONS(9111), - [anon_sym_PLUS_PLUS] = ACTIONS(9111), - [anon_sym_DOT] = ACTIONS(9109), - [anon_sym_DOT_STAR] = ACTIONS(9111), - [anon_sym_DASH_GT] = ACTIONS(9111), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9109), - [anon_sym_override] = ACTIONS(9109), - [anon_sym_requires] = ACTIONS(9109), - [anon_sym_COLON_RBRACK] = ACTIONS(9111), - }, - [STATE(3591)] = { - [sym_identifier] = ACTIONS(6270), - [anon_sym_LPAREN2] = ACTIONS(6272), - [anon_sym_TILDE] = ACTIONS(6272), - [anon_sym_STAR] = ACTIONS(6272), - [anon_sym_PIPE_PIPE] = ACTIONS(6272), - [anon_sym_AMP_AMP] = ACTIONS(6272), - [anon_sym_AMP] = ACTIONS(6270), - [anon_sym___extension__] = ACTIONS(6270), - [anon_sym_virtual] = ACTIONS(6270), - [anon_sym_extern] = ACTIONS(6270), - [anon_sym___attribute__] = ACTIONS(6270), - [anon_sym___attribute] = ACTIONS(6270), - [anon_sym_using] = ACTIONS(6270), - [anon_sym_COLON_COLON] = ACTIONS(6272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6272), - [anon_sym___declspec] = ACTIONS(6270), - [anon_sym___based] = ACTIONS(6270), - [anon_sym___cdecl] = ACTIONS(6270), - [anon_sym___clrcall] = ACTIONS(6270), - [anon_sym___stdcall] = ACTIONS(6270), - [anon_sym___fastcall] = ACTIONS(6270), - [anon_sym___thiscall] = ACTIONS(6270), - [anon_sym___vectorcall] = ACTIONS(6270), - [anon_sym_signed] = ACTIONS(6270), - [anon_sym_unsigned] = ACTIONS(6270), - [anon_sym_long] = ACTIONS(6270), - [anon_sym_short] = ACTIONS(6270), - [anon_sym_LBRACK] = ACTIONS(6270), - [anon_sym_static] = ACTIONS(6270), - [anon_sym_register] = ACTIONS(6270), - [anon_sym_inline] = ACTIONS(6270), - [anon_sym___inline] = ACTIONS(6270), - [anon_sym___inline__] = ACTIONS(6270), - [anon_sym___forceinline] = ACTIONS(6270), - [anon_sym_thread_local] = ACTIONS(6270), - [anon_sym___thread] = ACTIONS(6270), - [anon_sym_const] = ACTIONS(6270), - [anon_sym_constexpr] = ACTIONS(6270), - [anon_sym_volatile] = ACTIONS(6270), - [anon_sym_restrict] = ACTIONS(6270), - [anon_sym___restrict__] = ACTIONS(6270), - [anon_sym__Atomic] = ACTIONS(6270), - [anon_sym__Noreturn] = ACTIONS(6270), - [anon_sym_noreturn] = ACTIONS(6270), - [anon_sym__Nonnull] = ACTIONS(6270), - [anon_sym_mutable] = ACTIONS(6270), - [anon_sym_constinit] = ACTIONS(6270), - [anon_sym_consteval] = ACTIONS(6270), - [anon_sym_alignas] = ACTIONS(6270), - [anon_sym__Alignas] = ACTIONS(6270), - [sym_primitive_type] = ACTIONS(6270), - [anon_sym_enum] = ACTIONS(6270), - [anon_sym_class] = ACTIONS(6270), - [anon_sym_struct] = ACTIONS(6270), - [anon_sym_union] = ACTIONS(6270), - [anon_sym_or] = ACTIONS(6270), - [anon_sym_and] = ACTIONS(6270), - [anon_sym_typename] = ACTIONS(6270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6270), - [anon_sym_decltype] = ACTIONS(6270), - [anon_sym_explicit] = ACTIONS(6270), - [anon_sym_template] = ACTIONS(6270), - [anon_sym_operator] = ACTIONS(6270), - [anon_sym_friend] = ACTIONS(6270), - [anon_sym_concept] = ACTIONS(6270), - [anon_sym_LBRACK_COLON] = ACTIONS(6272), - }, - [STATE(3592)] = { - [sym_identifier] = ACTIONS(8959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8961), - [anon_sym_COMMA] = ACTIONS(8961), - [anon_sym_RPAREN] = ACTIONS(8961), - [aux_sym_preproc_if_token2] = ACTIONS(8961), - [aux_sym_preproc_else_token1] = ACTIONS(8961), - [aux_sym_preproc_elif_token1] = ACTIONS(8959), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8961), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8961), - [anon_sym_LPAREN2] = ACTIONS(8961), - [anon_sym_DASH] = ACTIONS(8959), - [anon_sym_PLUS] = ACTIONS(8959), - [anon_sym_STAR] = ACTIONS(8959), - [anon_sym_SLASH] = ACTIONS(8959), - [anon_sym_PERCENT] = ACTIONS(8959), - [anon_sym_PIPE_PIPE] = ACTIONS(9113), - [anon_sym_AMP_AMP] = ACTIONS(8943), - [anon_sym_PIPE] = ACTIONS(8959), - [anon_sym_CARET] = ACTIONS(8959), - [anon_sym_AMP] = ACTIONS(8959), - [anon_sym_EQ_EQ] = ACTIONS(8961), - [anon_sym_BANG_EQ] = ACTIONS(8961), - [anon_sym_GT] = ACTIONS(8959), - [anon_sym_GT_EQ] = ACTIONS(8961), - [anon_sym_LT_EQ] = ACTIONS(8959), - [anon_sym_LT] = ACTIONS(8959), - [anon_sym_LT_LT] = ACTIONS(8959), - [anon_sym_GT_GT] = ACTIONS(8959), - [anon_sym_SEMI] = ACTIONS(8961), - [anon_sym___attribute__] = ACTIONS(8959), - [anon_sym___attribute] = ACTIONS(8959), - [anon_sym_COLON] = ACTIONS(8959), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8961), - [anon_sym_RBRACE] = ACTIONS(8961), - [anon_sym_LBRACK] = ACTIONS(8961), - [anon_sym_EQ] = ACTIONS(8959), - [anon_sym_QMARK] = ACTIONS(8961), - [anon_sym_STAR_EQ] = ACTIONS(8961), - [anon_sym_SLASH_EQ] = ACTIONS(8961), - [anon_sym_PERCENT_EQ] = ACTIONS(8961), - [anon_sym_PLUS_EQ] = ACTIONS(8961), - [anon_sym_DASH_EQ] = ACTIONS(8961), - [anon_sym_LT_LT_EQ] = ACTIONS(8961), - [anon_sym_GT_GT_EQ] = ACTIONS(8961), - [anon_sym_AMP_EQ] = ACTIONS(8961), - [anon_sym_CARET_EQ] = ACTIONS(8961), - [anon_sym_PIPE_EQ] = ACTIONS(8961), - [anon_sym_and_eq] = ACTIONS(8959), - [anon_sym_or_eq] = ACTIONS(8959), - [anon_sym_xor_eq] = ACTIONS(8959), - [anon_sym_LT_EQ_GT] = ACTIONS(8961), - [anon_sym_or] = ACTIONS(9115), - [anon_sym_and] = ACTIONS(8945), - [anon_sym_bitor] = ACTIONS(8959), - [anon_sym_xor] = ACTIONS(8959), - [anon_sym_bitand] = ACTIONS(8959), - [anon_sym_not_eq] = ACTIONS(8959), - [anon_sym_DASH_DASH] = ACTIONS(8961), - [anon_sym_PLUS_PLUS] = ACTIONS(8961), - [anon_sym_DOT] = ACTIONS(8959), - [anon_sym_DOT_STAR] = ACTIONS(8961), - [anon_sym_DASH_GT] = ACTIONS(8961), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8959), - [anon_sym_override] = ACTIONS(8959), - [anon_sym_requires] = ACTIONS(8959), - [anon_sym_COLON_RBRACK] = ACTIONS(8961), - }, - [STATE(3593)] = { - [sym_identifier] = ACTIONS(6967), - [anon_sym_LPAREN2] = ACTIONS(6969), - [anon_sym_TILDE] = ACTIONS(6969), - [anon_sym_STAR] = ACTIONS(6969), - [anon_sym_PIPE_PIPE] = ACTIONS(6969), - [anon_sym_AMP_AMP] = ACTIONS(6969), - [anon_sym_AMP] = ACTIONS(6967), - [anon_sym___extension__] = ACTIONS(6967), - [anon_sym_virtual] = ACTIONS(6967), - [anon_sym_extern] = ACTIONS(6967), - [anon_sym___attribute__] = ACTIONS(6967), - [anon_sym___attribute] = ACTIONS(6967), - [anon_sym_using] = ACTIONS(6967), - [anon_sym_COLON_COLON] = ACTIONS(6969), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6969), - [anon_sym___declspec] = ACTIONS(6967), - [anon_sym___based] = ACTIONS(6967), - [anon_sym___cdecl] = ACTIONS(6967), - [anon_sym___clrcall] = ACTIONS(6967), - [anon_sym___stdcall] = ACTIONS(6967), - [anon_sym___fastcall] = ACTIONS(6967), - [anon_sym___thiscall] = ACTIONS(6967), - [anon_sym___vectorcall] = ACTIONS(6967), - [anon_sym_signed] = ACTIONS(6967), - [anon_sym_unsigned] = ACTIONS(6967), - [anon_sym_long] = ACTIONS(6967), - [anon_sym_short] = ACTIONS(6967), - [anon_sym_LBRACK] = ACTIONS(6967), - [anon_sym_static] = ACTIONS(6967), - [anon_sym_register] = ACTIONS(6967), - [anon_sym_inline] = ACTIONS(6967), - [anon_sym___inline] = ACTIONS(6967), - [anon_sym___inline__] = ACTIONS(6967), - [anon_sym___forceinline] = ACTIONS(6967), - [anon_sym_thread_local] = ACTIONS(6967), - [anon_sym___thread] = ACTIONS(6967), - [anon_sym_const] = ACTIONS(6967), - [anon_sym_constexpr] = ACTIONS(6967), - [anon_sym_volatile] = ACTIONS(6967), - [anon_sym_restrict] = ACTIONS(6967), - [anon_sym___restrict__] = ACTIONS(6967), - [anon_sym__Atomic] = ACTIONS(6967), - [anon_sym__Noreturn] = ACTIONS(6967), - [anon_sym_noreturn] = ACTIONS(6967), - [anon_sym__Nonnull] = ACTIONS(6967), - [anon_sym_mutable] = ACTIONS(6967), - [anon_sym_constinit] = ACTIONS(6967), - [anon_sym_consteval] = ACTIONS(6967), - [anon_sym_alignas] = ACTIONS(6967), - [anon_sym__Alignas] = ACTIONS(6967), - [sym_primitive_type] = ACTIONS(6967), - [anon_sym_enum] = ACTIONS(6967), - [anon_sym_class] = ACTIONS(6967), - [anon_sym_struct] = ACTIONS(6967), - [anon_sym_union] = ACTIONS(6967), - [anon_sym_or] = ACTIONS(6967), - [anon_sym_and] = ACTIONS(6967), - [anon_sym_typename] = ACTIONS(6967), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6967), - [anon_sym_decltype] = ACTIONS(6967), - [anon_sym_explicit] = ACTIONS(6967), - [anon_sym_template] = ACTIONS(6967), - [anon_sym_operator] = ACTIONS(6967), - [anon_sym_friend] = ACTIONS(6967), - [anon_sym_concept] = ACTIONS(6967), - [anon_sym_LBRACK_COLON] = ACTIONS(6969), - }, - [STATE(3594)] = { - [sym_identifier] = ACTIONS(5233), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5235), - [anon_sym_COMMA] = ACTIONS(5235), - [anon_sym_RPAREN] = ACTIONS(5235), - [anon_sym_LPAREN2] = ACTIONS(5235), - [anon_sym_TILDE] = ACTIONS(5235), - [anon_sym_STAR] = ACTIONS(5235), - [anon_sym_AMP_AMP] = ACTIONS(5235), - [anon_sym_AMP] = ACTIONS(5233), - [anon_sym_SEMI] = ACTIONS(5235), - [anon_sym___extension__] = ACTIONS(5233), - [anon_sym_virtual] = ACTIONS(5233), - [anon_sym_extern] = ACTIONS(5233), - [anon_sym___attribute__] = ACTIONS(5233), - [anon_sym___attribute] = ACTIONS(5233), - [anon_sym_COLON] = ACTIONS(5233), - [anon_sym_COLON_COLON] = ACTIONS(5235), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5235), - [anon_sym___declspec] = ACTIONS(5233), - [anon_sym___based] = ACTIONS(5233), - [anon_sym___cdecl] = ACTIONS(5233), - [anon_sym___clrcall] = ACTIONS(5233), - [anon_sym___stdcall] = ACTIONS(5233), - [anon_sym___fastcall] = ACTIONS(5233), - [anon_sym___thiscall] = ACTIONS(5233), - [anon_sym___vectorcall] = ACTIONS(5233), - [anon_sym_LBRACE] = ACTIONS(5235), - [anon_sym_LBRACK] = ACTIONS(5233), - [anon_sym_static] = ACTIONS(5233), - [anon_sym_EQ] = ACTIONS(5235), - [anon_sym_register] = ACTIONS(5233), - [anon_sym_inline] = ACTIONS(5233), - [anon_sym___inline] = ACTIONS(5233), - [anon_sym___inline__] = ACTIONS(5233), - [anon_sym___forceinline] = ACTIONS(5233), - [anon_sym_thread_local] = ACTIONS(5233), - [anon_sym___thread] = ACTIONS(5233), - [anon_sym_const] = ACTIONS(5233), - [anon_sym_constexpr] = ACTIONS(5233), - [anon_sym_volatile] = ACTIONS(5233), - [anon_sym_restrict] = ACTIONS(5233), - [anon_sym___restrict__] = ACTIONS(5233), - [anon_sym__Atomic] = ACTIONS(5233), - [anon_sym__Noreturn] = ACTIONS(5233), - [anon_sym_noreturn] = ACTIONS(5233), - [anon_sym__Nonnull] = ACTIONS(5233), - [anon_sym_mutable] = ACTIONS(5233), - [anon_sym_constinit] = ACTIONS(5233), - [anon_sym_consteval] = ACTIONS(5233), - [anon_sym_alignas] = ACTIONS(5233), - [anon_sym__Alignas] = ACTIONS(5233), - [anon_sym_DASH_GT] = ACTIONS(5235), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5233), - [anon_sym_final] = ACTIONS(5233), - [anon_sym_override] = ACTIONS(5233), - [anon_sym_explicit] = ACTIONS(5233), - [anon_sym_private] = ACTIONS(5233), - [anon_sym_template] = ACTIONS(5233), - [anon_sym_GT2] = ACTIONS(5235), - [anon_sym_operator] = ACTIONS(5233), - [anon_sym_public] = ACTIONS(5233), - [anon_sym_protected] = ACTIONS(5233), - [anon_sym_noexcept] = ACTIONS(5233), - [anon_sym_throw] = ACTIONS(5233), - [anon_sym_requires] = ACTIONS(5233), - [anon_sym_LBRACK_COLON] = ACTIONS(5235), - }, - [STATE(3595)] = { - [sym_argument_list] = STATE(3748), - [sym_initializer_list] = STATE(3748), - [sym_identifier] = ACTIONS(9117), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9119), - [anon_sym_COMMA] = ACTIONS(9119), - [anon_sym_RPAREN] = ACTIONS(9119), - [aux_sym_preproc_if_token2] = ACTIONS(9119), - [aux_sym_preproc_else_token1] = ACTIONS(9119), - [aux_sym_preproc_elif_token1] = ACTIONS(9117), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9119), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9119), - [anon_sym_LPAREN2] = ACTIONS(8808), - [anon_sym_DASH] = ACTIONS(9117), - [anon_sym_PLUS] = ACTIONS(9117), - [anon_sym_STAR] = ACTIONS(9117), - [anon_sym_SLASH] = ACTIONS(9117), - [anon_sym_PERCENT] = ACTIONS(9117), - [anon_sym_PIPE_PIPE] = ACTIONS(9119), - [anon_sym_AMP_AMP] = ACTIONS(9119), - [anon_sym_PIPE] = ACTIONS(9117), - [anon_sym_CARET] = ACTIONS(9117), - [anon_sym_AMP] = ACTIONS(9117), - [anon_sym_EQ_EQ] = ACTIONS(9119), - [anon_sym_BANG_EQ] = ACTIONS(9119), - [anon_sym_GT] = ACTIONS(9117), - [anon_sym_GT_EQ] = ACTIONS(9119), - [anon_sym_LT_EQ] = ACTIONS(9117), - [anon_sym_LT] = ACTIONS(9117), - [anon_sym_LT_LT] = ACTIONS(9117), - [anon_sym_GT_GT] = ACTIONS(9117), - [anon_sym_SEMI] = ACTIONS(9119), - [anon_sym___attribute__] = ACTIONS(9117), - [anon_sym___attribute] = ACTIONS(9117), - [anon_sym_COLON] = ACTIONS(9117), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9119), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_RBRACE] = ACTIONS(9119), - [anon_sym_LBRACK] = ACTIONS(9119), - [anon_sym_EQ] = ACTIONS(9117), - [anon_sym_QMARK] = ACTIONS(9119), - [anon_sym_STAR_EQ] = ACTIONS(9119), - [anon_sym_SLASH_EQ] = ACTIONS(9119), - [anon_sym_PERCENT_EQ] = ACTIONS(9119), - [anon_sym_PLUS_EQ] = ACTIONS(9119), - [anon_sym_DASH_EQ] = ACTIONS(9119), - [anon_sym_LT_LT_EQ] = ACTIONS(9119), - [anon_sym_GT_GT_EQ] = ACTIONS(9119), - [anon_sym_AMP_EQ] = ACTIONS(9119), - [anon_sym_CARET_EQ] = ACTIONS(9119), - [anon_sym_PIPE_EQ] = ACTIONS(9119), - [anon_sym_and_eq] = ACTIONS(9117), - [anon_sym_or_eq] = ACTIONS(9117), - [anon_sym_xor_eq] = ACTIONS(9117), - [anon_sym_LT_EQ_GT] = ACTIONS(9119), - [anon_sym_or] = ACTIONS(9117), - [anon_sym_and] = ACTIONS(9117), - [anon_sym_bitor] = ACTIONS(9117), - [anon_sym_xor] = ACTIONS(9117), - [anon_sym_bitand] = ACTIONS(9117), - [anon_sym_not_eq] = ACTIONS(9117), - [anon_sym_DASH_DASH] = ACTIONS(9119), - [anon_sym_PLUS_PLUS] = ACTIONS(9119), - [anon_sym_DOT] = ACTIONS(9117), - [anon_sym_DOT_STAR] = ACTIONS(9119), - [anon_sym_DASH_GT] = ACTIONS(9119), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9119), - }, - [STATE(3596)] = { - [sym_identifier] = ACTIONS(7185), - [anon_sym_LPAREN2] = ACTIONS(7183), - [anon_sym_TILDE] = ACTIONS(7183), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_PIPE_PIPE] = ACTIONS(7183), - [anon_sym_AMP_AMP] = ACTIONS(7183), - [anon_sym_AMP] = ACTIONS(7185), - [anon_sym___extension__] = ACTIONS(7185), - [anon_sym_virtual] = ACTIONS(7185), - [anon_sym_extern] = ACTIONS(7185), - [anon_sym___attribute__] = ACTIONS(7185), - [anon_sym___attribute] = ACTIONS(7185), - [anon_sym_using] = ACTIONS(7185), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7183), - [anon_sym___declspec] = ACTIONS(7185), - [anon_sym___based] = ACTIONS(7185), - [anon_sym___cdecl] = ACTIONS(7185), - [anon_sym___clrcall] = ACTIONS(7185), - [anon_sym___stdcall] = ACTIONS(7185), - [anon_sym___fastcall] = ACTIONS(7185), - [anon_sym___thiscall] = ACTIONS(7185), - [anon_sym___vectorcall] = ACTIONS(7185), - [anon_sym_signed] = ACTIONS(7185), - [anon_sym_unsigned] = ACTIONS(7185), - [anon_sym_long] = ACTIONS(7185), - [anon_sym_short] = ACTIONS(7185), - [anon_sym_LBRACK] = ACTIONS(7185), - [anon_sym_static] = ACTIONS(7185), - [anon_sym_register] = ACTIONS(7185), - [anon_sym_inline] = ACTIONS(7185), - [anon_sym___inline] = ACTIONS(7185), - [anon_sym___inline__] = ACTIONS(7185), - [anon_sym___forceinline] = ACTIONS(7185), - [anon_sym_thread_local] = ACTIONS(7185), - [anon_sym___thread] = ACTIONS(7185), - [anon_sym_const] = ACTIONS(7185), - [anon_sym_constexpr] = ACTIONS(7185), - [anon_sym_volatile] = ACTIONS(7185), - [anon_sym_restrict] = ACTIONS(7185), - [anon_sym___restrict__] = ACTIONS(7185), - [anon_sym__Atomic] = ACTIONS(7185), - [anon_sym__Noreturn] = ACTIONS(7185), - [anon_sym_noreturn] = ACTIONS(7185), - [anon_sym__Nonnull] = ACTIONS(7185), - [anon_sym_mutable] = ACTIONS(7185), - [anon_sym_constinit] = ACTIONS(7185), - [anon_sym_consteval] = ACTIONS(7185), - [anon_sym_alignas] = ACTIONS(7185), - [anon_sym__Alignas] = ACTIONS(7185), - [sym_primitive_type] = ACTIONS(7185), - [anon_sym_enum] = ACTIONS(7185), - [anon_sym_class] = ACTIONS(7185), - [anon_sym_struct] = ACTIONS(7185), - [anon_sym_union] = ACTIONS(7185), - [anon_sym_or] = ACTIONS(7185), - [anon_sym_and] = ACTIONS(7185), - [anon_sym_typename] = ACTIONS(7185), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7185), - [anon_sym_decltype] = ACTIONS(7185), - [anon_sym_explicit] = ACTIONS(7185), - [anon_sym_template] = ACTIONS(7185), - [anon_sym_operator] = ACTIONS(7185), - [anon_sym_friend] = ACTIONS(7185), - [anon_sym_concept] = ACTIONS(7185), - [anon_sym_LBRACK_COLON] = ACTIONS(7183), - }, - [STATE(3597)] = { - [sym_attribute_specifier] = STATE(4374), - [sym_attribute_declaration] = STATE(4622), - [sym_gnu_asm_expression] = STATE(8992), - [sym_virtual_specifier] = STATE(4709), - [sym__function_exception_specification] = STATE(3987), - [sym__function_attributes_end] = STATE(5909), - [sym__function_postfix] = STATE(5305), - [sym_trailing_return_type] = STATE(6006), - [sym_noexcept] = STATE(3987), - [sym_throw_specifier] = STATE(3987), - [sym_requires_clause] = STATE(5305), - [aux_sym_type_definition_repeat1] = STATE(4374), - [aux_sym_attributed_declarator_repeat1] = STATE(4622), - [aux_sym__function_postfix_repeat1] = STATE(4709), - [sym_identifier] = ACTIONS(7629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7627), - [anon_sym_COMMA] = ACTIONS(7627), - [aux_sym_preproc_if_token2] = ACTIONS(7627), - [aux_sym_preproc_else_token1] = ACTIONS(7627), - [aux_sym_preproc_elif_token1] = ACTIONS(7629), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7627), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7627), - [anon_sym_LPAREN2] = ACTIONS(7627), - [anon_sym_DASH] = ACTIONS(7629), - [anon_sym_PLUS] = ACTIONS(7629), - [anon_sym_STAR] = ACTIONS(7627), - [anon_sym_SLASH] = ACTIONS(7629), - [anon_sym_PERCENT] = ACTIONS(7627), - [anon_sym_PIPE_PIPE] = ACTIONS(7627), - [anon_sym_AMP_AMP] = ACTIONS(7627), - [anon_sym_PIPE] = ACTIONS(7629), - [anon_sym_CARET] = ACTIONS(7627), - [anon_sym_AMP] = ACTIONS(7629), - [anon_sym_EQ_EQ] = ACTIONS(7627), - [anon_sym_BANG_EQ] = ACTIONS(7627), - [anon_sym_GT] = ACTIONS(7629), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7629), - [anon_sym_LT] = ACTIONS(7629), - [anon_sym_LT_LT] = ACTIONS(7627), - [anon_sym_GT_GT] = ACTIONS(7627), - [anon_sym___attribute__] = ACTIONS(6859), - [anon_sym___attribute] = ACTIONS(6859), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6861), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7627), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), [anon_sym_bitor] = ACTIONS(7629), - [anon_sym_xor] = ACTIONS(7629), + [anon_sym_xor] = ACTIONS(7627), [anon_sym_bitand] = ACTIONS(7629), [anon_sym_not_eq] = ACTIONS(7629), - [anon_sym_DASH_DASH] = ACTIONS(7627), - [anon_sym_PLUS_PLUS] = ACTIONS(7627), - [anon_sym_asm] = ACTIONS(6129), - [anon_sym___asm__] = ACTIONS(6129), - [anon_sym___asm] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(7629), - [anon_sym_DOT_STAR] = ACTIONS(7627), - [anon_sym_DASH_GT] = ACTIONS(8996), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9121), - [anon_sym_override] = ACTIONS(9121), - [anon_sym_noexcept] = ACTIONS(6870), - [anon_sym_throw] = ACTIONS(6872), - [anon_sym_requires] = ACTIONS(9124), - }, - [STATE(3598)] = { - [sym_attribute_declaration] = STATE(3648), - [sym_parameter_list] = STATE(3121), - [aux_sym_attributed_declarator_repeat1] = STATE(3648), - [sym_identifier] = ACTIONS(9127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9129), - [anon_sym_COMMA] = ACTIONS(9129), - [anon_sym_RPAREN] = ACTIONS(9129), - [aux_sym_preproc_if_token2] = ACTIONS(9129), - [aux_sym_preproc_else_token1] = ACTIONS(9129), - [aux_sym_preproc_elif_token1] = ACTIONS(9127), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9129), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9129), - [anon_sym_LPAREN2] = ACTIONS(8927), - [anon_sym_DASH] = ACTIONS(9127), - [anon_sym_PLUS] = ACTIONS(9127), - [anon_sym_STAR] = ACTIONS(9127), - [anon_sym_SLASH] = ACTIONS(9127), - [anon_sym_PERCENT] = ACTIONS(9127), - [anon_sym_PIPE_PIPE] = ACTIONS(9129), - [anon_sym_AMP_AMP] = ACTIONS(9129), - [anon_sym_PIPE] = ACTIONS(9127), - [anon_sym_CARET] = ACTIONS(9127), - [anon_sym_AMP] = ACTIONS(9127), - [anon_sym_EQ_EQ] = ACTIONS(9129), - [anon_sym_BANG_EQ] = ACTIONS(9129), - [anon_sym_GT] = ACTIONS(9127), - [anon_sym_GT_EQ] = ACTIONS(9129), - [anon_sym_LT_EQ] = ACTIONS(9127), - [anon_sym_LT] = ACTIONS(9127), - [anon_sym_LT_LT] = ACTIONS(9127), - [anon_sym_GT_GT] = ACTIONS(9127), - [anon_sym_SEMI] = ACTIONS(9129), - [anon_sym___attribute__] = ACTIONS(9127), - [anon_sym___attribute] = ACTIONS(9127), - [anon_sym_COLON] = ACTIONS(9127), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_RBRACE] = ACTIONS(9129), - [anon_sym_LBRACK] = ACTIONS(8929), - [anon_sym_EQ] = ACTIONS(9127), - [anon_sym_QMARK] = ACTIONS(9129), - [anon_sym_STAR_EQ] = ACTIONS(9129), - [anon_sym_SLASH_EQ] = ACTIONS(9129), - [anon_sym_PERCENT_EQ] = ACTIONS(9129), - [anon_sym_PLUS_EQ] = ACTIONS(9129), - [anon_sym_DASH_EQ] = ACTIONS(9129), - [anon_sym_LT_LT_EQ] = ACTIONS(9129), - [anon_sym_GT_GT_EQ] = ACTIONS(9129), - [anon_sym_AMP_EQ] = ACTIONS(9129), - [anon_sym_CARET_EQ] = ACTIONS(9129), - [anon_sym_PIPE_EQ] = ACTIONS(9129), - [anon_sym_and_eq] = ACTIONS(9127), - [anon_sym_or_eq] = ACTIONS(9127), - [anon_sym_xor_eq] = ACTIONS(9127), - [anon_sym_LT_EQ_GT] = ACTIONS(9129), - [anon_sym_or] = ACTIONS(9127), - [anon_sym_and] = ACTIONS(9127), - [anon_sym_bitor] = ACTIONS(9127), - [anon_sym_xor] = ACTIONS(9127), - [anon_sym_bitand] = ACTIONS(9127), - [anon_sym_not_eq] = ACTIONS(9127), - [anon_sym_DASH_DASH] = ACTIONS(9129), - [anon_sym_PLUS_PLUS] = ACTIONS(9129), - [anon_sym_DOT] = ACTIONS(9127), - [anon_sym_DOT_STAR] = ACTIONS(9129), - [anon_sym_DASH_GT] = ACTIONS(9129), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9129), - }, - [STATE(3599)] = { - [sym_string_literal] = STATE(4004), - [sym_template_argument_list] = STATE(5595), - [sym_raw_string_literal] = STATE(4004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(6713), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_COLON] = ACTIONS(5260), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(6702), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(6704), - [anon_sym_SLASH_EQ] = ACTIONS(6704), - [anon_sym_PERCENT_EQ] = ACTIONS(6704), - [anon_sym_PLUS_EQ] = ACTIONS(6704), - [anon_sym_DASH_EQ] = ACTIONS(6704), - [anon_sym_LT_LT_EQ] = ACTIONS(6704), - [anon_sym_GT_GT_EQ] = ACTIONS(6704), - [anon_sym_AMP_EQ] = ACTIONS(6704), - [anon_sym_CARET_EQ] = ACTIONS(6704), - [anon_sym_PIPE_EQ] = ACTIONS(6704), - [anon_sym_and_eq] = ACTIONS(6704), - [anon_sym_or_eq] = ACTIONS(6704), - [anon_sym_xor_eq] = ACTIONS(6704), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), - }, - [STATE(3600)] = { - [sym_string_literal] = STATE(3637), - [sym_raw_string_literal] = STATE(3637), - [aux_sym_concatenated_string_repeat1] = STATE(3637), - [sym_identifier] = ACTIONS(9131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8116), - [anon_sym_COMMA] = ACTIONS(8116), - [anon_sym_LPAREN2] = ACTIONS(8116), - [anon_sym_DASH] = ACTIONS(8118), - [anon_sym_PLUS] = ACTIONS(8118), - [anon_sym_STAR] = ACTIONS(8118), - [anon_sym_SLASH] = ACTIONS(8118), - [anon_sym_PERCENT] = ACTIONS(8118), - [anon_sym_PIPE_PIPE] = ACTIONS(8116), - [anon_sym_AMP_AMP] = ACTIONS(8116), - [anon_sym_PIPE] = ACTIONS(8118), - [anon_sym_CARET] = ACTIONS(8118), - [anon_sym_AMP] = ACTIONS(8118), - [anon_sym_EQ_EQ] = ACTIONS(8116), - [anon_sym_BANG_EQ] = ACTIONS(8116), - [anon_sym_GT] = ACTIONS(8118), - [anon_sym_GT_EQ] = ACTIONS(8116), - [anon_sym_LT_EQ] = ACTIONS(8118), - [anon_sym_LT] = ACTIONS(8118), - [anon_sym_LT_LT] = ACTIONS(8118), - [anon_sym_GT_GT] = ACTIONS(8118), - [anon_sym_LBRACK] = ACTIONS(8116), - [anon_sym_RBRACK] = ACTIONS(8116), - [anon_sym_EQ] = ACTIONS(8118), - [anon_sym_QMARK] = ACTIONS(8116), - [anon_sym_STAR_EQ] = ACTIONS(8116), - [anon_sym_SLASH_EQ] = ACTIONS(8116), - [anon_sym_PERCENT_EQ] = ACTIONS(8116), - [anon_sym_PLUS_EQ] = ACTIONS(8116), - [anon_sym_DASH_EQ] = ACTIONS(8116), - [anon_sym_LT_LT_EQ] = ACTIONS(8116), - [anon_sym_GT_GT_EQ] = ACTIONS(8116), - [anon_sym_AMP_EQ] = ACTIONS(8116), - [anon_sym_CARET_EQ] = ACTIONS(8116), - [anon_sym_PIPE_EQ] = ACTIONS(8116), - [anon_sym_and_eq] = ACTIONS(8118), - [anon_sym_or_eq] = ACTIONS(8118), - [anon_sym_xor_eq] = ACTIONS(8118), - [anon_sym_LT_EQ_GT] = ACTIONS(8116), - [anon_sym_or] = ACTIONS(8118), - [anon_sym_and] = ACTIONS(8118), - [anon_sym_bitor] = ACTIONS(8118), - [anon_sym_xor] = ACTIONS(8118), - [anon_sym_bitand] = ACTIONS(8118), - [anon_sym_not_eq] = ACTIONS(8118), - [anon_sym_DASH_DASH] = ACTIONS(8116), - [anon_sym_PLUS_PLUS] = ACTIONS(8116), - [anon_sym_DOT] = ACTIONS(8118), - [anon_sym_DOT_STAR] = ACTIONS(8116), - [anon_sym_DASH_GT] = ACTIONS(8116), - [anon_sym_L_DQUOTE] = ACTIONS(6676), - [anon_sym_u_DQUOTE] = ACTIONS(6676), - [anon_sym_U_DQUOTE] = ACTIONS(6676), - [anon_sym_u8_DQUOTE] = ACTIONS(6676), - [anon_sym_DQUOTE] = ACTIONS(6676), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6682), - [anon_sym_LR_DQUOTE] = ACTIONS(6682), - [anon_sym_uR_DQUOTE] = ACTIONS(6682), - [anon_sym_UR_DQUOTE] = ACTIONS(6682), - [anon_sym_u8R_DQUOTE] = ACTIONS(6682), - [sym_literal_suffix] = ACTIONS(8118), - }, - [STATE(3601)] = { - [sym_identifier] = ACTIONS(6226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6233), - [anon_sym_COMMA] = ACTIONS(6233), - [anon_sym_RPAREN] = ACTIONS(6233), - [anon_sym_LPAREN2] = ACTIONS(6233), - [anon_sym_STAR] = ACTIONS(6233), - [anon_sym_PIPE_PIPE] = ACTIONS(6233), - [anon_sym_AMP_AMP] = ACTIONS(6233), - [anon_sym_AMP] = ACTIONS(6226), - [anon_sym_SEMI] = ACTIONS(6233), - [anon_sym___extension__] = ACTIONS(6226), - [anon_sym_virtual] = ACTIONS(6226), - [anon_sym_extern] = ACTIONS(6226), - [anon_sym___attribute__] = ACTIONS(6226), - [anon_sym___attribute] = ACTIONS(6226), - [anon_sym_COLON] = ACTIONS(6226), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6233), - [anon_sym___declspec] = ACTIONS(6226), - [anon_sym___based] = ACTIONS(6226), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_signed] = ACTIONS(6226), - [anon_sym_unsigned] = ACTIONS(6226), - [anon_sym_long] = ACTIONS(6226), - [anon_sym_short] = ACTIONS(6226), - [anon_sym_LBRACK] = ACTIONS(6226), - [anon_sym_static] = ACTIONS(6226), - [anon_sym_EQ] = ACTIONS(6233), - [anon_sym_register] = ACTIONS(6226), - [anon_sym_inline] = ACTIONS(6226), - [anon_sym___inline] = ACTIONS(6226), - [anon_sym___inline__] = ACTIONS(6226), - [anon_sym___forceinline] = ACTIONS(6226), - [anon_sym_thread_local] = ACTIONS(6226), - [anon_sym___thread] = ACTIONS(6226), - [anon_sym_const] = ACTIONS(6226), - [anon_sym_constexpr] = ACTIONS(6226), - [anon_sym_volatile] = ACTIONS(6226), - [anon_sym_restrict] = ACTIONS(6226), - [anon_sym___restrict__] = ACTIONS(6226), - [anon_sym__Atomic] = ACTIONS(6226), - [anon_sym__Noreturn] = ACTIONS(6226), - [anon_sym_noreturn] = ACTIONS(6226), - [anon_sym__Nonnull] = ACTIONS(6226), - [anon_sym_mutable] = ACTIONS(6226), - [anon_sym_constinit] = ACTIONS(6226), - [anon_sym_consteval] = ACTIONS(6226), - [anon_sym_alignas] = ACTIONS(6226), - [anon_sym__Alignas] = ACTIONS(6226), - [sym_primitive_type] = ACTIONS(6226), - [anon_sym_or] = ACTIONS(6226), - [anon_sym_and] = ACTIONS(6226), - [anon_sym_asm] = ACTIONS(6226), - [anon_sym___asm__] = ACTIONS(6226), - [anon_sym___asm] = ACTIONS(6226), - [anon_sym_DASH_GT] = ACTIONS(6233), + [anon_sym_DASH_DASH] = ACTIONS(7629), + [anon_sym_PLUS_PLUS] = ACTIONS(7629), + [anon_sym_DOT] = ACTIONS(7627), + [anon_sym_DOT_STAR] = ACTIONS(7629), + [anon_sym_DASH_GT] = ACTIONS(7629), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6226), - [anon_sym_decltype] = ACTIONS(6226), - [anon_sym_final] = ACTIONS(6226), - [anon_sym_override] = ACTIONS(6226), - [anon_sym_GT2] = ACTIONS(6233), - [anon_sym_try] = ACTIONS(6226), - [anon_sym_noexcept] = ACTIONS(6226), - [anon_sym_throw] = ACTIONS(6226), - [anon_sym_requires] = ACTIONS(6226), - }, - [STATE(3602)] = { - [sym_string_literal] = STATE(5440), - [sym_template_argument_list] = STATE(6726), - [sym_raw_string_literal] = STATE(5440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5260), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(6706), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(6690), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(6692), - [anon_sym_SLASH_EQ] = ACTIONS(6692), - [anon_sym_PERCENT_EQ] = ACTIONS(6692), - [anon_sym_PLUS_EQ] = ACTIONS(6692), - [anon_sym_DASH_EQ] = ACTIONS(6692), - [anon_sym_LT_LT_EQ] = ACTIONS(6692), - [anon_sym_GT_GT_EQ] = ACTIONS(6690), - [anon_sym_AMP_EQ] = ACTIONS(6692), - [anon_sym_CARET_EQ] = ACTIONS(6692), - [anon_sym_PIPE_EQ] = ACTIONS(6692), - [anon_sym_and_eq] = ACTIONS(6692), - [anon_sym_or_eq] = ACTIONS(6692), - [anon_sym_xor_eq] = ACTIONS(6692), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(6694), - [anon_sym_u_DQUOTE] = ACTIONS(6694), - [anon_sym_U_DQUOTE] = ACTIONS(6694), - [anon_sym_u8_DQUOTE] = ACTIONS(6694), - [anon_sym_DQUOTE] = ACTIONS(6694), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5253), - [anon_sym_R_DQUOTE] = ACTIONS(6700), - [anon_sym_LR_DQUOTE] = ACTIONS(6700), - [anon_sym_uR_DQUOTE] = ACTIONS(6700), - [anon_sym_UR_DQUOTE] = ACTIONS(6700), - [anon_sym_u8R_DQUOTE] = ACTIONS(6700), - }, - [STATE(3603)] = { - [sym_string_literal] = STATE(3600), - [sym_raw_string_literal] = STATE(3600), - [aux_sym_concatenated_string_repeat1] = STATE(3600), - [sym_identifier] = ACTIONS(9133), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8125), - [anon_sym_COMMA] = ACTIONS(8125), - [anon_sym_LPAREN2] = ACTIONS(8125), - [anon_sym_DASH] = ACTIONS(8127), - [anon_sym_PLUS] = ACTIONS(8127), - [anon_sym_STAR] = ACTIONS(8127), - [anon_sym_SLASH] = ACTIONS(8127), - [anon_sym_PERCENT] = ACTIONS(8127), - [anon_sym_PIPE_PIPE] = ACTIONS(8125), - [anon_sym_AMP_AMP] = ACTIONS(8125), - [anon_sym_PIPE] = ACTIONS(8127), - [anon_sym_CARET] = ACTIONS(8127), - [anon_sym_AMP] = ACTIONS(8127), - [anon_sym_EQ_EQ] = ACTIONS(8125), - [anon_sym_BANG_EQ] = ACTIONS(8125), - [anon_sym_GT] = ACTIONS(8127), - [anon_sym_GT_EQ] = ACTIONS(8125), - [anon_sym_LT_EQ] = ACTIONS(8127), - [anon_sym_LT] = ACTIONS(8127), - [anon_sym_LT_LT] = ACTIONS(8127), - [anon_sym_GT_GT] = ACTIONS(8127), - [anon_sym_LBRACK] = ACTIONS(8125), - [anon_sym_RBRACK] = ACTIONS(8125), - [anon_sym_EQ] = ACTIONS(8127), - [anon_sym_QMARK] = ACTIONS(8125), - [anon_sym_STAR_EQ] = ACTIONS(8125), - [anon_sym_SLASH_EQ] = ACTIONS(8125), - [anon_sym_PERCENT_EQ] = ACTIONS(8125), - [anon_sym_PLUS_EQ] = ACTIONS(8125), - [anon_sym_DASH_EQ] = ACTIONS(8125), - [anon_sym_LT_LT_EQ] = ACTIONS(8125), - [anon_sym_GT_GT_EQ] = ACTIONS(8125), - [anon_sym_AMP_EQ] = ACTIONS(8125), - [anon_sym_CARET_EQ] = ACTIONS(8125), - [anon_sym_PIPE_EQ] = ACTIONS(8125), - [anon_sym_and_eq] = ACTIONS(8127), - [anon_sym_or_eq] = ACTIONS(8127), - [anon_sym_xor_eq] = ACTIONS(8127), - [anon_sym_LT_EQ_GT] = ACTIONS(8125), - [anon_sym_or] = ACTIONS(8127), - [anon_sym_and] = ACTIONS(8127), - [anon_sym_bitor] = ACTIONS(8127), - [anon_sym_xor] = ACTIONS(8127), - [anon_sym_bitand] = ACTIONS(8127), - [anon_sym_not_eq] = ACTIONS(8127), - [anon_sym_DASH_DASH] = ACTIONS(8125), - [anon_sym_PLUS_PLUS] = ACTIONS(8125), - [anon_sym_DOT] = ACTIONS(8127), - [anon_sym_DOT_STAR] = ACTIONS(8125), - [anon_sym_DASH_GT] = ACTIONS(8125), - [anon_sym_L_DQUOTE] = ACTIONS(6676), - [anon_sym_u_DQUOTE] = ACTIONS(6676), - [anon_sym_U_DQUOTE] = ACTIONS(6676), - [anon_sym_u8_DQUOTE] = ACTIONS(6676), - [anon_sym_DQUOTE] = ACTIONS(6676), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6682), - [anon_sym_LR_DQUOTE] = ACTIONS(6682), - [anon_sym_uR_DQUOTE] = ACTIONS(6682), - [anon_sym_UR_DQUOTE] = ACTIONS(6682), - [anon_sym_u8R_DQUOTE] = ACTIONS(6682), - [sym_literal_suffix] = ACTIONS(8127), - }, - [STATE(3604)] = { - [sym_template_argument_list] = STATE(3605), - [sym_identifier] = ACTIONS(9135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9137), - [anon_sym_COMMA] = ACTIONS(9137), - [anon_sym_RPAREN] = ACTIONS(9137), - [aux_sym_preproc_if_token2] = ACTIONS(9137), - [aux_sym_preproc_else_token1] = ACTIONS(9137), - [aux_sym_preproc_elif_token1] = ACTIONS(9135), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9137), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9137), - [anon_sym_LPAREN2] = ACTIONS(9137), - [anon_sym_DASH] = ACTIONS(9135), - [anon_sym_PLUS] = ACTIONS(9135), - [anon_sym_STAR] = ACTIONS(9135), - [anon_sym_SLASH] = ACTIONS(9135), - [anon_sym_PERCENT] = ACTIONS(9135), - [anon_sym_PIPE_PIPE] = ACTIONS(9137), - [anon_sym_AMP_AMP] = ACTIONS(9137), - [anon_sym_PIPE] = ACTIONS(9135), - [anon_sym_CARET] = ACTIONS(9135), - [anon_sym_AMP] = ACTIONS(9135), - [anon_sym_EQ_EQ] = ACTIONS(9137), - [anon_sym_BANG_EQ] = ACTIONS(9137), - [anon_sym_GT] = ACTIONS(9135), - [anon_sym_GT_EQ] = ACTIONS(9137), - [anon_sym_LT_EQ] = ACTIONS(9135), - [anon_sym_LT] = ACTIONS(9139), - [anon_sym_LT_LT] = ACTIONS(9135), - [anon_sym_GT_GT] = ACTIONS(9135), - [anon_sym_SEMI] = ACTIONS(9137), - [anon_sym___attribute__] = ACTIONS(9135), - [anon_sym___attribute] = ACTIONS(9135), - [anon_sym_COLON] = ACTIONS(9135), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9137), - [anon_sym_RBRACE] = ACTIONS(9137), - [anon_sym_LBRACK] = ACTIONS(9137), - [anon_sym_EQ] = ACTIONS(9135), - [anon_sym_QMARK] = ACTIONS(9137), - [anon_sym_STAR_EQ] = ACTIONS(9137), - [anon_sym_SLASH_EQ] = ACTIONS(9137), - [anon_sym_PERCENT_EQ] = ACTIONS(9137), - [anon_sym_PLUS_EQ] = ACTIONS(9137), - [anon_sym_DASH_EQ] = ACTIONS(9137), - [anon_sym_LT_LT_EQ] = ACTIONS(9137), - [anon_sym_GT_GT_EQ] = ACTIONS(9137), - [anon_sym_AMP_EQ] = ACTIONS(9137), - [anon_sym_CARET_EQ] = ACTIONS(9137), - [anon_sym_PIPE_EQ] = ACTIONS(9137), - [anon_sym_and_eq] = ACTIONS(9135), - [anon_sym_or_eq] = ACTIONS(9135), - [anon_sym_xor_eq] = ACTIONS(9135), - [anon_sym_LT_EQ_GT] = ACTIONS(9137), - [anon_sym_or] = ACTIONS(9135), - [anon_sym_and] = ACTIONS(9135), - [anon_sym_bitor] = ACTIONS(9135), - [anon_sym_xor] = ACTIONS(9135), - [anon_sym_bitand] = ACTIONS(9135), - [anon_sym_not_eq] = ACTIONS(9135), - [anon_sym_DASH_DASH] = ACTIONS(9137), - [anon_sym_PLUS_PLUS] = ACTIONS(9137), - [anon_sym_DOT] = ACTIONS(9135), - [anon_sym_DOT_STAR] = ACTIONS(9137), - [anon_sym_DASH_GT] = ACTIONS(9137), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9137), - }, - [STATE(3605)] = { - [sym_identifier] = ACTIONS(9142), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9144), - [anon_sym_COMMA] = ACTIONS(9144), - [anon_sym_RPAREN] = ACTIONS(9144), - [aux_sym_preproc_if_token2] = ACTIONS(9144), - [aux_sym_preproc_else_token1] = ACTIONS(9144), - [aux_sym_preproc_elif_token1] = ACTIONS(9142), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9144), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9144), - [anon_sym_LPAREN2] = ACTIONS(9144), - [anon_sym_DASH] = ACTIONS(9142), - [anon_sym_PLUS] = ACTIONS(9142), - [anon_sym_STAR] = ACTIONS(9142), - [anon_sym_SLASH] = ACTIONS(9142), - [anon_sym_PERCENT] = ACTIONS(9142), - [anon_sym_PIPE_PIPE] = ACTIONS(9144), - [anon_sym_AMP_AMP] = ACTIONS(9144), - [anon_sym_PIPE] = ACTIONS(9142), - [anon_sym_CARET] = ACTIONS(9142), - [anon_sym_AMP] = ACTIONS(9142), - [anon_sym_EQ_EQ] = ACTIONS(9144), - [anon_sym_BANG_EQ] = ACTIONS(9144), - [anon_sym_GT] = ACTIONS(9142), - [anon_sym_GT_EQ] = ACTIONS(9144), - [anon_sym_LT_EQ] = ACTIONS(9142), - [anon_sym_LT] = ACTIONS(9142), - [anon_sym_LT_LT] = ACTIONS(9142), - [anon_sym_GT_GT] = ACTIONS(9142), - [anon_sym_SEMI] = ACTIONS(9144), - [anon_sym___attribute__] = ACTIONS(9142), - [anon_sym___attribute] = ACTIONS(9142), - [anon_sym_COLON] = ACTIONS(9142), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9144), - [anon_sym_LBRACE] = ACTIONS(9144), - [anon_sym_RBRACE] = ACTIONS(9144), - [anon_sym_LBRACK] = ACTIONS(9144), - [anon_sym_EQ] = ACTIONS(9142), - [anon_sym_QMARK] = ACTIONS(9144), - [anon_sym_STAR_EQ] = ACTIONS(9144), - [anon_sym_SLASH_EQ] = ACTIONS(9144), - [anon_sym_PERCENT_EQ] = ACTIONS(9144), - [anon_sym_PLUS_EQ] = ACTIONS(9144), - [anon_sym_DASH_EQ] = ACTIONS(9144), - [anon_sym_LT_LT_EQ] = ACTIONS(9144), - [anon_sym_GT_GT_EQ] = ACTIONS(9144), - [anon_sym_AMP_EQ] = ACTIONS(9144), - [anon_sym_CARET_EQ] = ACTIONS(9144), - [anon_sym_PIPE_EQ] = ACTIONS(9144), - [anon_sym_and_eq] = ACTIONS(9142), - [anon_sym_or_eq] = ACTIONS(9142), - [anon_sym_xor_eq] = ACTIONS(9142), - [anon_sym_LT_EQ_GT] = ACTIONS(9144), - [anon_sym_or] = ACTIONS(9142), - [anon_sym_and] = ACTIONS(9142), - [anon_sym_bitor] = ACTIONS(9142), - [anon_sym_xor] = ACTIONS(9142), - [anon_sym_bitand] = ACTIONS(9142), - [anon_sym_not_eq] = ACTIONS(9142), - [anon_sym_DASH_DASH] = ACTIONS(9144), - [anon_sym_PLUS_PLUS] = ACTIONS(9144), - [anon_sym_DOT] = ACTIONS(9142), - [anon_sym_DOT_STAR] = ACTIONS(9144), - [anon_sym_DASH_GT] = ACTIONS(9144), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9144), + [anon_sym_final] = ACTIONS(7629), + [anon_sym_override] = ACTIONS(7629), + [anon_sym_requires] = ACTIONS(7629), }, - [STATE(3606)] = { - [sym_string_literal] = STATE(4004), - [sym_template_argument_list] = STATE(5595), - [sym_raw_string_literal] = STATE(4004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(6713), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5253), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(6709), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(6711), - [anon_sym_SLASH_EQ] = ACTIONS(6711), - [anon_sym_PERCENT_EQ] = ACTIONS(6711), - [anon_sym_PLUS_EQ] = ACTIONS(6711), - [anon_sym_DASH_EQ] = ACTIONS(6711), - [anon_sym_LT_LT_EQ] = ACTIONS(6711), - [anon_sym_GT_GT_EQ] = ACTIONS(6711), - [anon_sym_AMP_EQ] = ACTIONS(6711), - [anon_sym_CARET_EQ] = ACTIONS(6711), - [anon_sym_PIPE_EQ] = ACTIONS(6711), - [anon_sym_and_eq] = ACTIONS(6711), - [anon_sym_or_eq] = ACTIONS(6711), - [anon_sym_xor_eq] = ACTIONS(6711), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(3359), - [anon_sym_u_DQUOTE] = ACTIONS(3359), - [anon_sym_U_DQUOTE] = ACTIONS(3359), - [anon_sym_u8_DQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3369), - [anon_sym_LR_DQUOTE] = ACTIONS(3369), - [anon_sym_uR_DQUOTE] = ACTIONS(3369), - [anon_sym_UR_DQUOTE] = ACTIONS(3369), - [anon_sym_u8R_DQUOTE] = ACTIONS(3369), + [STATE(3103)] = { + [sym_identifier] = ACTIONS(7663), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7665), + [anon_sym_COMMA] = ACTIONS(7665), + [anon_sym_RPAREN] = ACTIONS(7665), + [anon_sym_LPAREN2] = ACTIONS(7665), + [anon_sym_DASH] = ACTIONS(7663), + [anon_sym_PLUS] = ACTIONS(7663), + [anon_sym_STAR] = ACTIONS(7665), + [anon_sym_SLASH] = ACTIONS(7663), + [anon_sym_PERCENT] = ACTIONS(7665), + [anon_sym_PIPE_PIPE] = ACTIONS(7665), + [anon_sym_AMP_AMP] = ACTIONS(7665), + [anon_sym_PIPE] = ACTIONS(7663), + [anon_sym_CARET] = ACTIONS(7665), + [anon_sym_AMP] = ACTIONS(7663), + [anon_sym_EQ_EQ] = ACTIONS(7665), + [anon_sym_BANG_EQ] = ACTIONS(7665), + [anon_sym_GT] = ACTIONS(7663), + [anon_sym_GT_EQ] = ACTIONS(7665), + [anon_sym_LT_EQ] = ACTIONS(7663), + [anon_sym_LT] = ACTIONS(7663), + [anon_sym_LT_LT] = ACTIONS(7665), + [anon_sym_GT_GT] = ACTIONS(7665), + [anon_sym_SEMI] = ACTIONS(7665), + [anon_sym___extension__] = ACTIONS(7663), + [anon_sym___attribute__] = ACTIONS(7663), + [anon_sym___attribute] = ACTIONS(7663), + [anon_sym_COLON] = ACTIONS(7663), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7665), + [anon_sym___based] = ACTIONS(7663), + [anon_sym_LBRACE] = ACTIONS(7665), + [anon_sym_RBRACE] = ACTIONS(7665), + [anon_sym_signed] = ACTIONS(7663), + [anon_sym_unsigned] = ACTIONS(7663), + [anon_sym_long] = ACTIONS(7663), + [anon_sym_short] = ACTIONS(7663), + [anon_sym_LBRACK] = ACTIONS(7665), + [anon_sym_const] = ACTIONS(7663), + [anon_sym_constexpr] = ACTIONS(7663), + [anon_sym_volatile] = ACTIONS(7663), + [anon_sym_restrict] = ACTIONS(7663), + [anon_sym___restrict__] = ACTIONS(7663), + [anon_sym__Atomic] = ACTIONS(7663), + [anon_sym__Noreturn] = ACTIONS(7663), + [anon_sym_noreturn] = ACTIONS(7663), + [anon_sym__Nonnull] = ACTIONS(7663), + [anon_sym_mutable] = ACTIONS(7663), + [anon_sym_constinit] = ACTIONS(7663), + [anon_sym_consteval] = ACTIONS(7663), + [anon_sym_alignas] = ACTIONS(7663), + [anon_sym__Alignas] = ACTIONS(7663), + [sym_primitive_type] = ACTIONS(7663), + [anon_sym_QMARK] = ACTIONS(7665), + [anon_sym_LT_EQ_GT] = ACTIONS(7665), + [anon_sym_or] = ACTIONS(7663), + [anon_sym_and] = ACTIONS(7663), + [anon_sym_bitor] = ACTIONS(7663), + [anon_sym_xor] = ACTIONS(7663), + [anon_sym_bitand] = ACTIONS(7663), + [anon_sym_not_eq] = ACTIONS(7663), + [anon_sym_DASH_DASH] = ACTIONS(7665), + [anon_sym_PLUS_PLUS] = ACTIONS(7665), + [anon_sym_DOT] = ACTIONS(7663), + [anon_sym_DOT_STAR] = ACTIONS(7665), + [anon_sym_DASH_GT] = ACTIONS(7665), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7663), + [anon_sym_override] = ACTIONS(7663), + [anon_sym_requires] = ACTIONS(7663), + [anon_sym_COLON_RBRACK] = ACTIONS(7665), }, - [STATE(3607)] = { - [sym_string_literal] = STATE(5466), - [sym_template_argument_list] = STATE(6719), - [sym_raw_string_literal] = STATE(5466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8980), - [anon_sym_COMMA] = ACTIONS(9146), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(8603), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_RBRACK] = ACTIONS(9148), - [anon_sym_EQ] = ACTIONS(8990), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(6617), - [anon_sym_SLASH_EQ] = ACTIONS(6617), - [anon_sym_PERCENT_EQ] = ACTIONS(6617), - [anon_sym_PLUS_EQ] = ACTIONS(6617), - [anon_sym_DASH_EQ] = ACTIONS(6617), - [anon_sym_LT_LT_EQ] = ACTIONS(6617), - [anon_sym_GT_GT_EQ] = ACTIONS(6617), - [anon_sym_AMP_EQ] = ACTIONS(6617), - [anon_sym_CARET_EQ] = ACTIONS(6617), - [anon_sym_PIPE_EQ] = ACTIONS(6617), - [anon_sym_and_eq] = ACTIONS(6617), - [anon_sym_or_eq] = ACTIONS(6617), - [anon_sym_xor_eq] = ACTIONS(6617), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(6619), - [anon_sym_u_DQUOTE] = ACTIONS(6619), - [anon_sym_U_DQUOTE] = ACTIONS(6619), - [anon_sym_u8_DQUOTE] = ACTIONS(6619), - [anon_sym_DQUOTE] = ACTIONS(6619), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6625), - [anon_sym_LR_DQUOTE] = ACTIONS(6625), - [anon_sym_uR_DQUOTE] = ACTIONS(6625), - [anon_sym_UR_DQUOTE] = ACTIONS(6625), - [anon_sym_u8R_DQUOTE] = ACTIONS(6625), + [STATE(3104)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7645), + [anon_sym_COMMA] = ACTIONS(7645), + [anon_sym_LPAREN2] = ACTIONS(7645), + [anon_sym_DASH] = ACTIONS(7643), + [anon_sym_PLUS] = ACTIONS(7643), + [anon_sym_STAR] = ACTIONS(7643), + [anon_sym_SLASH] = ACTIONS(7643), + [anon_sym_PERCENT] = ACTIONS(7643), + [anon_sym_PIPE_PIPE] = ACTIONS(7645), + [anon_sym_AMP_AMP] = ACTIONS(7645), + [anon_sym_PIPE] = ACTIONS(7643), + [anon_sym_CARET] = ACTIONS(7643), + [anon_sym_AMP] = ACTIONS(7643), + [anon_sym_EQ_EQ] = ACTIONS(7645), + [anon_sym_BANG_EQ] = ACTIONS(7645), + [anon_sym_GT] = ACTIONS(7643), + [anon_sym_GT_EQ] = ACTIONS(7645), + [anon_sym_LT_EQ] = ACTIONS(7643), + [anon_sym_LT] = ACTIONS(7643), + [anon_sym_LT_LT] = ACTIONS(7643), + [anon_sym_GT_GT] = ACTIONS(7643), + [anon_sym___extension__] = ACTIONS(7645), + [anon_sym_LBRACE] = ACTIONS(7645), + [anon_sym_LBRACK] = ACTIONS(7645), + [anon_sym_RBRACK] = ACTIONS(7645), + [anon_sym_EQ] = ACTIONS(7643), + [anon_sym_const] = ACTIONS(7643), + [anon_sym_constexpr] = ACTIONS(7645), + [anon_sym_volatile] = ACTIONS(7645), + [anon_sym_restrict] = ACTIONS(7645), + [anon_sym___restrict__] = ACTIONS(7645), + [anon_sym__Atomic] = ACTIONS(7645), + [anon_sym__Noreturn] = ACTIONS(7645), + [anon_sym_noreturn] = ACTIONS(7645), + [anon_sym__Nonnull] = ACTIONS(7645), + [anon_sym_mutable] = ACTIONS(7645), + [anon_sym_constinit] = ACTIONS(7645), + [anon_sym_consteval] = ACTIONS(7645), + [anon_sym_alignas] = ACTIONS(7645), + [anon_sym__Alignas] = ACTIONS(7645), + [anon_sym_QMARK] = ACTIONS(7645), + [anon_sym_STAR_EQ] = ACTIONS(7645), + [anon_sym_SLASH_EQ] = ACTIONS(7645), + [anon_sym_PERCENT_EQ] = ACTIONS(7645), + [anon_sym_PLUS_EQ] = ACTIONS(7645), + [anon_sym_DASH_EQ] = ACTIONS(7645), + [anon_sym_LT_LT_EQ] = ACTIONS(7645), + [anon_sym_GT_GT_EQ] = ACTIONS(7645), + [anon_sym_AMP_EQ] = ACTIONS(7645), + [anon_sym_CARET_EQ] = ACTIONS(7645), + [anon_sym_PIPE_EQ] = ACTIONS(7645), + [anon_sym_and_eq] = ACTIONS(7645), + [anon_sym_or_eq] = ACTIONS(7645), + [anon_sym_xor_eq] = ACTIONS(7645), + [anon_sym_LT_EQ_GT] = ACTIONS(7645), + [anon_sym_or] = ACTIONS(7643), + [anon_sym_and] = ACTIONS(7643), + [anon_sym_bitor] = ACTIONS(7645), + [anon_sym_xor] = ACTIONS(7643), + [anon_sym_bitand] = ACTIONS(7645), + [anon_sym_not_eq] = ACTIONS(7645), + [anon_sym_DASH_DASH] = ACTIONS(7645), + [anon_sym_PLUS_PLUS] = ACTIONS(7645), + [anon_sym_DOT] = ACTIONS(7643), + [anon_sym_DOT_STAR] = ACTIONS(7645), + [anon_sym_DASH_GT] = ACTIONS(7645), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7645), + [anon_sym_override] = ACTIONS(7645), + [anon_sym_requires] = ACTIONS(7645), }, - [STATE(3608)] = { - [sym_template_argument_list] = STATE(1956), - [sym_identifier] = ACTIONS(6753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6758), - [anon_sym_COMMA] = ACTIONS(6758), - [anon_sym_RPAREN] = ACTIONS(6758), - [aux_sym_preproc_if_token2] = ACTIONS(6758), - [aux_sym_preproc_else_token1] = ACTIONS(6758), - [aux_sym_preproc_elif_token1] = ACTIONS(6753), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6758), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6758), - [anon_sym_LPAREN2] = ACTIONS(6758), - [anon_sym_DASH] = ACTIONS(6753), - [anon_sym_PLUS] = ACTIONS(6753), - [anon_sym_STAR] = ACTIONS(6753), - [anon_sym_SLASH] = ACTIONS(6753), - [anon_sym_PERCENT] = ACTIONS(6753), - [anon_sym_PIPE_PIPE] = ACTIONS(6758), - [anon_sym_AMP_AMP] = ACTIONS(6758), - [anon_sym_PIPE] = ACTIONS(6753), - [anon_sym_CARET] = ACTIONS(6753), - [anon_sym_AMP] = ACTIONS(6753), - [anon_sym_EQ_EQ] = ACTIONS(6758), - [anon_sym_BANG_EQ] = ACTIONS(6758), - [anon_sym_GT] = ACTIONS(6753), - [anon_sym_GT_EQ] = ACTIONS(6758), - [anon_sym_LT_EQ] = ACTIONS(6753), - [anon_sym_LT] = ACTIONS(7037), - [anon_sym_LT_LT] = ACTIONS(6753), - [anon_sym_GT_GT] = ACTIONS(6753), - [anon_sym_SEMI] = ACTIONS(6758), - [anon_sym___attribute__] = ACTIONS(6753), - [anon_sym___attribute] = ACTIONS(6753), - [anon_sym_COLON] = ACTIONS(6753), - [anon_sym_COLON_COLON] = ACTIONS(6748), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6758), - [anon_sym_RBRACE] = ACTIONS(6758), - [anon_sym_LBRACK] = ACTIONS(6758), - [anon_sym_EQ] = ACTIONS(6753), - [anon_sym_QMARK] = ACTIONS(6758), - [anon_sym_STAR_EQ] = ACTIONS(6758), - [anon_sym_SLASH_EQ] = ACTIONS(6758), - [anon_sym_PERCENT_EQ] = ACTIONS(6758), - [anon_sym_PLUS_EQ] = ACTIONS(6758), - [anon_sym_DASH_EQ] = ACTIONS(6758), - [anon_sym_LT_LT_EQ] = ACTIONS(6758), - [anon_sym_GT_GT_EQ] = ACTIONS(6758), - [anon_sym_AMP_EQ] = ACTIONS(6758), - [anon_sym_CARET_EQ] = ACTIONS(6758), - [anon_sym_PIPE_EQ] = ACTIONS(6758), - [anon_sym_and_eq] = ACTIONS(6753), - [anon_sym_or_eq] = ACTIONS(6753), - [anon_sym_xor_eq] = ACTIONS(6753), - [anon_sym_LT_EQ_GT] = ACTIONS(6758), - [anon_sym_or] = ACTIONS(6753), - [anon_sym_and] = ACTIONS(6753), - [anon_sym_bitor] = ACTIONS(6753), - [anon_sym_xor] = ACTIONS(6753), - [anon_sym_bitand] = ACTIONS(6753), - [anon_sym_not_eq] = ACTIONS(6753), - [anon_sym_DASH_DASH] = ACTIONS(6758), - [anon_sym_PLUS_PLUS] = ACTIONS(6758), - [anon_sym_DOT] = ACTIONS(6753), - [anon_sym_DOT_STAR] = ACTIONS(6758), - [anon_sym_DASH_GT] = ACTIONS(6758), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6758), + [STATE(3105)] = { + [sym_identifier] = ACTIONS(7643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7645), + [anon_sym_COMMA] = ACTIONS(7645), + [anon_sym_RPAREN] = ACTIONS(7645), + [anon_sym_LPAREN2] = ACTIONS(7645), + [anon_sym_DASH] = ACTIONS(7643), + [anon_sym_PLUS] = ACTIONS(7643), + [anon_sym_STAR] = ACTIONS(7645), + [anon_sym_SLASH] = ACTIONS(7643), + [anon_sym_PERCENT] = ACTIONS(7645), + [anon_sym_PIPE_PIPE] = ACTIONS(7645), + [anon_sym_AMP_AMP] = ACTIONS(7645), + [anon_sym_PIPE] = ACTIONS(7643), + [anon_sym_CARET] = ACTIONS(7645), + [anon_sym_AMP] = ACTIONS(7643), + [anon_sym_EQ_EQ] = ACTIONS(7645), + [anon_sym_BANG_EQ] = ACTIONS(7645), + [anon_sym_GT] = ACTIONS(7643), + [anon_sym_GT_EQ] = ACTIONS(7645), + [anon_sym_LT_EQ] = ACTIONS(7643), + [anon_sym_LT] = ACTIONS(7643), + [anon_sym_LT_LT] = ACTIONS(7645), + [anon_sym_GT_GT] = ACTIONS(7645), + [anon_sym_SEMI] = ACTIONS(7645), + [anon_sym___extension__] = ACTIONS(7643), + [anon_sym___attribute__] = ACTIONS(7643), + [anon_sym___attribute] = ACTIONS(7643), + [anon_sym_COLON] = ACTIONS(7643), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7645), + [anon_sym___based] = ACTIONS(7643), + [anon_sym_LBRACE] = ACTIONS(7645), + [anon_sym_RBRACE] = ACTIONS(7645), + [anon_sym_signed] = ACTIONS(7643), + [anon_sym_unsigned] = ACTIONS(7643), + [anon_sym_long] = ACTIONS(7643), + [anon_sym_short] = ACTIONS(7643), + [anon_sym_LBRACK] = ACTIONS(7645), + [anon_sym_const] = ACTIONS(7643), + [anon_sym_constexpr] = ACTIONS(7643), + [anon_sym_volatile] = ACTIONS(7643), + [anon_sym_restrict] = ACTIONS(7643), + [anon_sym___restrict__] = ACTIONS(7643), + [anon_sym__Atomic] = ACTIONS(7643), + [anon_sym__Noreturn] = ACTIONS(7643), + [anon_sym_noreturn] = ACTIONS(7643), + [anon_sym__Nonnull] = ACTIONS(7643), + [anon_sym_mutable] = ACTIONS(7643), + [anon_sym_constinit] = ACTIONS(7643), + [anon_sym_consteval] = ACTIONS(7643), + [anon_sym_alignas] = ACTIONS(7643), + [anon_sym__Alignas] = ACTIONS(7643), + [sym_primitive_type] = ACTIONS(7643), + [anon_sym_QMARK] = ACTIONS(7645), + [anon_sym_LT_EQ_GT] = ACTIONS(7645), + [anon_sym_or] = ACTIONS(7643), + [anon_sym_and] = ACTIONS(7643), + [anon_sym_bitor] = ACTIONS(7643), + [anon_sym_xor] = ACTIONS(7643), + [anon_sym_bitand] = ACTIONS(7643), + [anon_sym_not_eq] = ACTIONS(7643), + [anon_sym_DASH_DASH] = ACTIONS(7645), + [anon_sym_PLUS_PLUS] = ACTIONS(7645), + [anon_sym_DOT] = ACTIONS(7643), + [anon_sym_DOT_STAR] = ACTIONS(7645), + [anon_sym_DASH_GT] = ACTIONS(7645), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7643), + [anon_sym_override] = ACTIONS(7643), + [anon_sym_requires] = ACTIONS(7643), + [anon_sym_COLON_RBRACK] = ACTIONS(7645), }, - [STATE(3609)] = { - [sym_string_literal] = STATE(3379), - [sym_raw_string_literal] = STATE(3379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8739), - [anon_sym_COMMA] = ACTIONS(8739), - [anon_sym_LPAREN2] = ACTIONS(8739), - [anon_sym_DASH] = ACTIONS(8737), - [anon_sym_PLUS] = ACTIONS(8737), - [anon_sym_STAR] = ACTIONS(8737), - [anon_sym_SLASH] = ACTIONS(8737), - [anon_sym_PERCENT] = ACTIONS(8737), - [anon_sym_PIPE_PIPE] = ACTIONS(8739), - [anon_sym_AMP_AMP] = ACTIONS(8739), - [anon_sym_PIPE] = ACTIONS(8737), - [anon_sym_CARET] = ACTIONS(8737), - [anon_sym_AMP] = ACTIONS(8737), - [anon_sym_EQ_EQ] = ACTIONS(8739), - [anon_sym_BANG_EQ] = ACTIONS(8739), - [anon_sym_GT] = ACTIONS(8737), - [anon_sym_GT_EQ] = ACTIONS(8739), - [anon_sym_LT_EQ] = ACTIONS(8737), - [anon_sym_LT] = ACTIONS(8737), - [anon_sym_LT_LT] = ACTIONS(8737), - [anon_sym_GT_GT] = ACTIONS(8737), - [anon_sym_SEMI] = ACTIONS(8739), - [anon_sym___attribute__] = ACTIONS(8737), - [anon_sym___attribute] = ACTIONS(8737), - [anon_sym_LBRACK] = ACTIONS(8739), - [anon_sym_EQ] = ACTIONS(8737), - [anon_sym_QMARK] = ACTIONS(8739), - [anon_sym_STAR_EQ] = ACTIONS(8739), - [anon_sym_SLASH_EQ] = ACTIONS(8739), - [anon_sym_PERCENT_EQ] = ACTIONS(8739), - [anon_sym_PLUS_EQ] = ACTIONS(8739), - [anon_sym_DASH_EQ] = ACTIONS(8739), - [anon_sym_LT_LT_EQ] = ACTIONS(8739), - [anon_sym_GT_GT_EQ] = ACTIONS(8739), - [anon_sym_AMP_EQ] = ACTIONS(8739), - [anon_sym_CARET_EQ] = ACTIONS(8739), - [anon_sym_PIPE_EQ] = ACTIONS(8739), - [anon_sym_and_eq] = ACTIONS(8737), - [anon_sym_or_eq] = ACTIONS(8737), - [anon_sym_xor_eq] = ACTIONS(8737), - [anon_sym_LT_EQ_GT] = ACTIONS(8739), - [anon_sym_or] = ACTIONS(8737), - [anon_sym_and] = ACTIONS(8737), - [anon_sym_bitor] = ACTIONS(8737), - [anon_sym_xor] = ACTIONS(8737), - [anon_sym_bitand] = ACTIONS(8737), - [anon_sym_not_eq] = ACTIONS(8737), - [anon_sym_DASH_DASH] = ACTIONS(8739), - [anon_sym_PLUS_PLUS] = ACTIONS(8739), - [anon_sym_DOT] = ACTIONS(8737), - [anon_sym_DOT_STAR] = ACTIONS(8739), - [anon_sym_DASH_GT] = ACTIONS(8739), - [anon_sym_L_DQUOTE] = ACTIONS(6543), - [anon_sym_u_DQUOTE] = ACTIONS(6543), - [anon_sym_U_DQUOTE] = ACTIONS(6543), - [anon_sym_u8_DQUOTE] = ACTIONS(6543), - [anon_sym_DQUOTE] = ACTIONS(6543), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6545), - [anon_sym_LR_DQUOTE] = ACTIONS(6545), - [anon_sym_uR_DQUOTE] = ACTIONS(6545), - [anon_sym_UR_DQUOTE] = ACTIONS(6545), - [anon_sym_u8R_DQUOTE] = ACTIONS(6545), - [sym_literal_suffix] = ACTIONS(8737), + [STATE(3106)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7597), + [anon_sym_COMMA] = ACTIONS(7597), + [anon_sym_LPAREN2] = ACTIONS(7597), + [anon_sym_DASH] = ACTIONS(7595), + [anon_sym_PLUS] = ACTIONS(7595), + [anon_sym_STAR] = ACTIONS(7595), + [anon_sym_SLASH] = ACTIONS(7595), + [anon_sym_PERCENT] = ACTIONS(7595), + [anon_sym_PIPE_PIPE] = ACTIONS(7597), + [anon_sym_AMP_AMP] = ACTIONS(7597), + [anon_sym_PIPE] = ACTIONS(7595), + [anon_sym_CARET] = ACTIONS(7595), + [anon_sym_AMP] = ACTIONS(7595), + [anon_sym_EQ_EQ] = ACTIONS(7597), + [anon_sym_BANG_EQ] = ACTIONS(7597), + [anon_sym_GT] = ACTIONS(7595), + [anon_sym_GT_EQ] = ACTIONS(7597), + [anon_sym_LT_EQ] = ACTIONS(7595), + [anon_sym_LT] = ACTIONS(7595), + [anon_sym_LT_LT] = ACTIONS(7595), + [anon_sym_GT_GT] = ACTIONS(7595), + [anon_sym___extension__] = ACTIONS(7597), + [anon_sym_LBRACE] = ACTIONS(7597), + [anon_sym_LBRACK] = ACTIONS(7597), + [anon_sym_RBRACK] = ACTIONS(7597), + [anon_sym_EQ] = ACTIONS(7595), + [anon_sym_const] = ACTIONS(7595), + [anon_sym_constexpr] = ACTIONS(7597), + [anon_sym_volatile] = ACTIONS(7597), + [anon_sym_restrict] = ACTIONS(7597), + [anon_sym___restrict__] = ACTIONS(7597), + [anon_sym__Atomic] = ACTIONS(7597), + [anon_sym__Noreturn] = ACTIONS(7597), + [anon_sym_noreturn] = ACTIONS(7597), + [anon_sym__Nonnull] = ACTIONS(7597), + [anon_sym_mutable] = ACTIONS(7597), + [anon_sym_constinit] = ACTIONS(7597), + [anon_sym_consteval] = ACTIONS(7597), + [anon_sym_alignas] = ACTIONS(7597), + [anon_sym__Alignas] = ACTIONS(7597), + [anon_sym_QMARK] = ACTIONS(7597), + [anon_sym_STAR_EQ] = ACTIONS(7597), + [anon_sym_SLASH_EQ] = ACTIONS(7597), + [anon_sym_PERCENT_EQ] = ACTIONS(7597), + [anon_sym_PLUS_EQ] = ACTIONS(7597), + [anon_sym_DASH_EQ] = ACTIONS(7597), + [anon_sym_LT_LT_EQ] = ACTIONS(7597), + [anon_sym_GT_GT_EQ] = ACTIONS(7597), + [anon_sym_AMP_EQ] = ACTIONS(7597), + [anon_sym_CARET_EQ] = ACTIONS(7597), + [anon_sym_PIPE_EQ] = ACTIONS(7597), + [anon_sym_and_eq] = ACTIONS(7597), + [anon_sym_or_eq] = ACTIONS(7597), + [anon_sym_xor_eq] = ACTIONS(7597), + [anon_sym_LT_EQ_GT] = ACTIONS(7597), + [anon_sym_or] = ACTIONS(7595), + [anon_sym_and] = ACTIONS(7595), + [anon_sym_bitor] = ACTIONS(7597), + [anon_sym_xor] = ACTIONS(7595), + [anon_sym_bitand] = ACTIONS(7597), + [anon_sym_not_eq] = ACTIONS(7597), + [anon_sym_DASH_DASH] = ACTIONS(7597), + [anon_sym_PLUS_PLUS] = ACTIONS(7597), + [anon_sym_DOT] = ACTIONS(7595), + [anon_sym_DOT_STAR] = ACTIONS(7597), + [anon_sym_DASH_GT] = ACTIONS(7597), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7597), + [anon_sym_override] = ACTIONS(7597), + [anon_sym_requires] = ACTIONS(7597), }, - [STATE(3610)] = { - [sym_string_literal] = STATE(3610), - [sym_raw_string_literal] = STATE(3610), - [aux_sym_concatenated_string_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(9151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8045), - [anon_sym_COMMA] = ACTIONS(8045), - [anon_sym_LPAREN2] = ACTIONS(8045), - [anon_sym_DASH] = ACTIONS(8047), - [anon_sym_PLUS] = ACTIONS(8047), - [anon_sym_STAR] = ACTIONS(8047), - [anon_sym_SLASH] = ACTIONS(8047), - [anon_sym_PERCENT] = ACTIONS(8047), - [anon_sym_PIPE_PIPE] = ACTIONS(8045), - [anon_sym_AMP_AMP] = ACTIONS(8045), - [anon_sym_PIPE] = ACTIONS(8047), - [anon_sym_CARET] = ACTIONS(8047), - [anon_sym_AMP] = ACTIONS(8047), - [anon_sym_EQ_EQ] = ACTIONS(8045), - [anon_sym_BANG_EQ] = ACTIONS(8045), - [anon_sym_GT] = ACTIONS(8047), - [anon_sym_GT_EQ] = ACTIONS(8047), - [anon_sym_LT_EQ] = ACTIONS(8047), - [anon_sym_LT] = ACTIONS(8047), - [anon_sym_LT_LT] = ACTIONS(8047), - [anon_sym_GT_GT] = ACTIONS(8047), - [anon_sym_LBRACK] = ACTIONS(8045), - [anon_sym_EQ] = ACTIONS(8047), - [anon_sym_QMARK] = ACTIONS(8045), - [anon_sym_STAR_EQ] = ACTIONS(8045), - [anon_sym_SLASH_EQ] = ACTIONS(8045), - [anon_sym_PERCENT_EQ] = ACTIONS(8045), - [anon_sym_PLUS_EQ] = ACTIONS(8045), - [anon_sym_DASH_EQ] = ACTIONS(8045), - [anon_sym_LT_LT_EQ] = ACTIONS(8045), - [anon_sym_GT_GT_EQ] = ACTIONS(8047), - [anon_sym_AMP_EQ] = ACTIONS(8045), - [anon_sym_CARET_EQ] = ACTIONS(8045), - [anon_sym_PIPE_EQ] = ACTIONS(8045), - [anon_sym_and_eq] = ACTIONS(8047), - [anon_sym_or_eq] = ACTIONS(8047), - [anon_sym_xor_eq] = ACTIONS(8047), - [anon_sym_LT_EQ_GT] = ACTIONS(8045), - [anon_sym_or] = ACTIONS(8047), - [anon_sym_and] = ACTIONS(8047), - [anon_sym_bitor] = ACTIONS(8047), - [anon_sym_xor] = ACTIONS(8047), - [anon_sym_bitand] = ACTIONS(8047), - [anon_sym_not_eq] = ACTIONS(8047), - [anon_sym_DASH_DASH] = ACTIONS(8045), - [anon_sym_PLUS_PLUS] = ACTIONS(8045), - [anon_sym_DOT] = ACTIONS(8047), - [anon_sym_DOT_STAR] = ACTIONS(8045), - [anon_sym_DASH_GT] = ACTIONS(8045), - [anon_sym_L_DQUOTE] = ACTIONS(9154), - [anon_sym_u_DQUOTE] = ACTIONS(9154), - [anon_sym_U_DQUOTE] = ACTIONS(9154), - [anon_sym_u8_DQUOTE] = ACTIONS(9154), - [anon_sym_DQUOTE] = ACTIONS(9154), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(8045), - [anon_sym_R_DQUOTE] = ACTIONS(9157), - [anon_sym_LR_DQUOTE] = ACTIONS(9157), - [anon_sym_uR_DQUOTE] = ACTIONS(9157), - [anon_sym_UR_DQUOTE] = ACTIONS(9157), - [anon_sym_u8R_DQUOTE] = ACTIONS(9157), - [sym_literal_suffix] = ACTIONS(8047), + [STATE(3107)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7609), + [anon_sym_COMMA] = ACTIONS(7609), + [anon_sym_LPAREN2] = ACTIONS(7609), + [anon_sym_DASH] = ACTIONS(7607), + [anon_sym_PLUS] = ACTIONS(7607), + [anon_sym_STAR] = ACTIONS(7607), + [anon_sym_SLASH] = ACTIONS(7607), + [anon_sym_PERCENT] = ACTIONS(7607), + [anon_sym_PIPE_PIPE] = ACTIONS(7609), + [anon_sym_AMP_AMP] = ACTIONS(7609), + [anon_sym_PIPE] = ACTIONS(7607), + [anon_sym_CARET] = ACTIONS(7607), + [anon_sym_AMP] = ACTIONS(7607), + [anon_sym_EQ_EQ] = ACTIONS(7609), + [anon_sym_BANG_EQ] = ACTIONS(7609), + [anon_sym_GT] = ACTIONS(7607), + [anon_sym_GT_EQ] = ACTIONS(7609), + [anon_sym_LT_EQ] = ACTIONS(7607), + [anon_sym_LT] = ACTIONS(7607), + [anon_sym_LT_LT] = ACTIONS(7607), + [anon_sym_GT_GT] = ACTIONS(7607), + [anon_sym___extension__] = ACTIONS(7609), + [anon_sym_LBRACE] = ACTIONS(7609), + [anon_sym_LBRACK] = ACTIONS(7609), + [anon_sym_RBRACK] = ACTIONS(7609), + [anon_sym_EQ] = ACTIONS(7607), + [anon_sym_const] = ACTIONS(7607), + [anon_sym_constexpr] = ACTIONS(7609), + [anon_sym_volatile] = ACTIONS(7609), + [anon_sym_restrict] = ACTIONS(7609), + [anon_sym___restrict__] = ACTIONS(7609), + [anon_sym__Atomic] = ACTIONS(7609), + [anon_sym__Noreturn] = ACTIONS(7609), + [anon_sym_noreturn] = ACTIONS(7609), + [anon_sym__Nonnull] = ACTIONS(7609), + [anon_sym_mutable] = ACTIONS(7609), + [anon_sym_constinit] = ACTIONS(7609), + [anon_sym_consteval] = ACTIONS(7609), + [anon_sym_alignas] = ACTIONS(7609), + [anon_sym__Alignas] = ACTIONS(7609), + [anon_sym_QMARK] = ACTIONS(7609), + [anon_sym_STAR_EQ] = ACTIONS(7609), + [anon_sym_SLASH_EQ] = ACTIONS(7609), + [anon_sym_PERCENT_EQ] = ACTIONS(7609), + [anon_sym_PLUS_EQ] = ACTIONS(7609), + [anon_sym_DASH_EQ] = ACTIONS(7609), + [anon_sym_LT_LT_EQ] = ACTIONS(7609), + [anon_sym_GT_GT_EQ] = ACTIONS(7609), + [anon_sym_AMP_EQ] = ACTIONS(7609), + [anon_sym_CARET_EQ] = ACTIONS(7609), + [anon_sym_PIPE_EQ] = ACTIONS(7609), + [anon_sym_and_eq] = ACTIONS(7609), + [anon_sym_or_eq] = ACTIONS(7609), + [anon_sym_xor_eq] = ACTIONS(7609), + [anon_sym_LT_EQ_GT] = ACTIONS(7609), + [anon_sym_or] = ACTIONS(7607), + [anon_sym_and] = ACTIONS(7607), + [anon_sym_bitor] = ACTIONS(7609), + [anon_sym_xor] = ACTIONS(7607), + [anon_sym_bitand] = ACTIONS(7609), + [anon_sym_not_eq] = ACTIONS(7609), + [anon_sym_DASH_DASH] = ACTIONS(7609), + [anon_sym_PLUS_PLUS] = ACTIONS(7609), + [anon_sym_DOT] = ACTIONS(7607), + [anon_sym_DOT_STAR] = ACTIONS(7609), + [anon_sym_DASH_GT] = ACTIONS(7609), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7609), + [anon_sym_override] = ACTIONS(7609), + [anon_sym_requires] = ACTIONS(7609), }, - [STATE(3611)] = { - [sym_identifier] = ACTIONS(6235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6228), - [anon_sym_COMMA] = ACTIONS(6228), - [anon_sym_RPAREN] = ACTIONS(6228), - [aux_sym_preproc_if_token2] = ACTIONS(6228), - [aux_sym_preproc_else_token1] = ACTIONS(6228), - [aux_sym_preproc_elif_token1] = ACTIONS(6235), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6228), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6228), - [anon_sym_LPAREN2] = ACTIONS(6228), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6235), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_PERCENT] = ACTIONS(6235), - [anon_sym_PIPE_PIPE] = ACTIONS(6228), - [anon_sym_AMP_AMP] = ACTIONS(6228), - [anon_sym_PIPE] = ACTIONS(6235), - [anon_sym_CARET] = ACTIONS(6235), - [anon_sym_AMP] = ACTIONS(6235), - [anon_sym_EQ_EQ] = ACTIONS(6228), - [anon_sym_BANG_EQ] = ACTIONS(6228), - [anon_sym_GT] = ACTIONS(6235), - [anon_sym_GT_EQ] = ACTIONS(6228), - [anon_sym_LT_EQ] = ACTIONS(6235), - [anon_sym_LT] = ACTIONS(6235), - [anon_sym_LT_LT] = ACTIONS(6235), - [anon_sym_GT_GT] = ACTIONS(6235), - [anon_sym_SEMI] = ACTIONS(6228), - [anon_sym___attribute__] = ACTIONS(6235), - [anon_sym___attribute] = ACTIONS(6235), - [anon_sym_COLON] = ACTIONS(6235), - [anon_sym_COLON_COLON] = ACTIONS(6233), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6228), - [anon_sym_LBRACE] = ACTIONS(6233), - [anon_sym_RBRACE] = ACTIONS(6228), - [anon_sym_LBRACK] = ACTIONS(6228), - [anon_sym_EQ] = ACTIONS(6235), - [anon_sym_QMARK] = ACTIONS(6228), - [anon_sym_STAR_EQ] = ACTIONS(6228), - [anon_sym_SLASH_EQ] = ACTIONS(6228), - [anon_sym_PERCENT_EQ] = ACTIONS(6228), - [anon_sym_PLUS_EQ] = ACTIONS(6228), - [anon_sym_DASH_EQ] = ACTIONS(6228), - [anon_sym_LT_LT_EQ] = ACTIONS(6228), - [anon_sym_GT_GT_EQ] = ACTIONS(6228), - [anon_sym_AMP_EQ] = ACTIONS(6228), - [anon_sym_CARET_EQ] = ACTIONS(6228), - [anon_sym_PIPE_EQ] = ACTIONS(6228), - [anon_sym_and_eq] = ACTIONS(6235), - [anon_sym_or_eq] = ACTIONS(6235), - [anon_sym_xor_eq] = ACTIONS(6235), - [anon_sym_LT_EQ_GT] = ACTIONS(6228), - [anon_sym_or] = ACTIONS(6235), - [anon_sym_and] = ACTIONS(6235), - [anon_sym_bitor] = ACTIONS(6235), - [anon_sym_xor] = ACTIONS(6235), - [anon_sym_bitand] = ACTIONS(6235), - [anon_sym_not_eq] = ACTIONS(6235), - [anon_sym_DASH_DASH] = ACTIONS(6228), - [anon_sym_PLUS_PLUS] = ACTIONS(6228), - [anon_sym_DOT] = ACTIONS(6235), - [anon_sym_DOT_STAR] = ACTIONS(6228), - [anon_sym_DASH_GT] = ACTIONS(6228), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6228), + [STATE(3108)] = { + [sym_identifier] = ACTIONS(7747), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7749), + [anon_sym_COMMA] = ACTIONS(7749), + [anon_sym_RPAREN] = ACTIONS(7749), + [anon_sym_LPAREN2] = ACTIONS(7749), + [anon_sym_DASH] = ACTIONS(7747), + [anon_sym_PLUS] = ACTIONS(7747), + [anon_sym_STAR] = ACTIONS(7749), + [anon_sym_SLASH] = ACTIONS(7747), + [anon_sym_PERCENT] = ACTIONS(7749), + [anon_sym_PIPE_PIPE] = ACTIONS(7749), + [anon_sym_AMP_AMP] = ACTIONS(7749), + [anon_sym_PIPE] = ACTIONS(7747), + [anon_sym_CARET] = ACTIONS(7749), + [anon_sym_AMP] = ACTIONS(7747), + [anon_sym_EQ_EQ] = ACTIONS(7749), + [anon_sym_BANG_EQ] = ACTIONS(7749), + [anon_sym_GT] = ACTIONS(7747), + [anon_sym_GT_EQ] = ACTIONS(7749), + [anon_sym_LT_EQ] = ACTIONS(7747), + [anon_sym_LT] = ACTIONS(7747), + [anon_sym_LT_LT] = ACTIONS(7749), + [anon_sym_GT_GT] = ACTIONS(7749), + [anon_sym_SEMI] = ACTIONS(7749), + [anon_sym___extension__] = ACTIONS(7747), + [anon_sym___attribute__] = ACTIONS(7747), + [anon_sym___attribute] = ACTIONS(7747), + [anon_sym_COLON] = ACTIONS(7747), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7749), + [anon_sym___based] = ACTIONS(7747), + [anon_sym_LBRACE] = ACTIONS(7749), + [anon_sym_RBRACE] = ACTIONS(7749), + [anon_sym_signed] = ACTIONS(7747), + [anon_sym_unsigned] = ACTIONS(7747), + [anon_sym_long] = ACTIONS(7747), + [anon_sym_short] = ACTIONS(7747), + [anon_sym_LBRACK] = ACTIONS(7749), + [anon_sym_const] = ACTIONS(7747), + [anon_sym_constexpr] = ACTIONS(7747), + [anon_sym_volatile] = ACTIONS(7747), + [anon_sym_restrict] = ACTIONS(7747), + [anon_sym___restrict__] = ACTIONS(7747), + [anon_sym__Atomic] = ACTIONS(7747), + [anon_sym__Noreturn] = ACTIONS(7747), + [anon_sym_noreturn] = ACTIONS(7747), + [anon_sym__Nonnull] = ACTIONS(7747), + [anon_sym_mutable] = ACTIONS(7747), + [anon_sym_constinit] = ACTIONS(7747), + [anon_sym_consteval] = ACTIONS(7747), + [anon_sym_alignas] = ACTIONS(7747), + [anon_sym__Alignas] = ACTIONS(7747), + [sym_primitive_type] = ACTIONS(7747), + [anon_sym_QMARK] = ACTIONS(7749), + [anon_sym_LT_EQ_GT] = ACTIONS(7749), + [anon_sym_or] = ACTIONS(7747), + [anon_sym_and] = ACTIONS(7747), + [anon_sym_bitor] = ACTIONS(7747), + [anon_sym_xor] = ACTIONS(7747), + [anon_sym_bitand] = ACTIONS(7747), + [anon_sym_not_eq] = ACTIONS(7747), + [anon_sym_DASH_DASH] = ACTIONS(7749), + [anon_sym_PLUS_PLUS] = ACTIONS(7749), + [anon_sym_DOT] = ACTIONS(7747), + [anon_sym_DOT_STAR] = ACTIONS(7749), + [anon_sym_DASH_GT] = ACTIONS(7749), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7747), + [anon_sym_override] = ACTIONS(7747), + [anon_sym_requires] = ACTIONS(7747), + [anon_sym_COLON_RBRACK] = ACTIONS(7749), }, - [STATE(3612)] = { - [sym_attribute_specifier] = STATE(3078), - [sym_enumerator_list] = STATE(3797), - [sym__enum_base_clause] = STATE(3687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7602), - [anon_sym_COMMA] = ACTIONS(7602), - [anon_sym_RPAREN] = ACTIONS(7602), - [anon_sym_LPAREN2] = ACTIONS(7602), - [anon_sym_DASH] = ACTIONS(7600), - [anon_sym_PLUS] = ACTIONS(7600), - [anon_sym_STAR] = ACTIONS(7602), - [anon_sym_SLASH] = ACTIONS(7600), - [anon_sym_PERCENT] = ACTIONS(7602), - [anon_sym_PIPE_PIPE] = ACTIONS(7602), - [anon_sym_AMP_AMP] = ACTIONS(7602), - [anon_sym_PIPE] = ACTIONS(7600), - [anon_sym_CARET] = ACTIONS(7602), - [anon_sym_AMP] = ACTIONS(7600), - [anon_sym_EQ_EQ] = ACTIONS(7602), - [anon_sym_BANG_EQ] = ACTIONS(7602), - [anon_sym_GT] = ACTIONS(7600), - [anon_sym_GT_EQ] = ACTIONS(7602), - [anon_sym_LT_EQ] = ACTIONS(7600), - [anon_sym_LT] = ACTIONS(7600), - [anon_sym_LT_LT] = ACTIONS(7602), - [anon_sym_GT_GT] = ACTIONS(7602), - [anon_sym_SEMI] = ACTIONS(7602), - [anon_sym___extension__] = ACTIONS(7602), - [anon_sym___attribute__] = ACTIONS(9025), - [anon_sym___attribute] = ACTIONS(8907), - [anon_sym_COLON] = ACTIONS(9160), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7602), - [anon_sym_LBRACE] = ACTIONS(9162), - [anon_sym_RBRACE] = ACTIONS(7602), - [anon_sym_LBRACK] = ACTIONS(7602), - [anon_sym_const] = ACTIONS(7600), - [anon_sym_constexpr] = ACTIONS(7602), - [anon_sym_volatile] = ACTIONS(7602), - [anon_sym_restrict] = ACTIONS(7602), - [anon_sym___restrict__] = ACTIONS(7602), - [anon_sym__Atomic] = ACTIONS(7602), - [anon_sym__Noreturn] = ACTIONS(7602), - [anon_sym_noreturn] = ACTIONS(7602), - [anon_sym__Nonnull] = ACTIONS(7602), - [anon_sym_mutable] = ACTIONS(7602), - [anon_sym_constinit] = ACTIONS(7602), - [anon_sym_consteval] = ACTIONS(7602), - [anon_sym_alignas] = ACTIONS(7602), - [anon_sym__Alignas] = ACTIONS(7602), - [anon_sym_QMARK] = ACTIONS(7602), - [anon_sym_LT_EQ_GT] = ACTIONS(7602), - [anon_sym_or] = ACTIONS(7602), - [anon_sym_and] = ACTIONS(7602), - [anon_sym_bitor] = ACTIONS(7602), - [anon_sym_xor] = ACTIONS(7602), - [anon_sym_bitand] = ACTIONS(7602), - [anon_sym_not_eq] = ACTIONS(7602), - [anon_sym_DASH_DASH] = ACTIONS(7602), - [anon_sym_PLUS_PLUS] = ACTIONS(7602), - [anon_sym_DOT] = ACTIONS(7600), - [anon_sym_DOT_STAR] = ACTIONS(7602), - [anon_sym_DASH_GT] = ACTIONS(7602), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7602), - [anon_sym_override] = ACTIONS(7602), - [anon_sym_requires] = ACTIONS(7602), - [anon_sym_COLON_RBRACK] = ACTIONS(7602), + [STATE(3109)] = { + [sym_identifier] = ACTIONS(7561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), + [anon_sym_COMMA] = ACTIONS(7563), + [anon_sym_RPAREN] = ACTIONS(7563), + [anon_sym_LPAREN2] = ACTIONS(7563), + [anon_sym_DASH] = ACTIONS(7561), + [anon_sym_PLUS] = ACTIONS(7561), + [anon_sym_STAR] = ACTIONS(7563), + [anon_sym_SLASH] = ACTIONS(7561), + [anon_sym_PERCENT] = ACTIONS(7563), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_AMP_AMP] = ACTIONS(7563), + [anon_sym_PIPE] = ACTIONS(7561), + [anon_sym_CARET] = ACTIONS(7563), + [anon_sym_AMP] = ACTIONS(7561), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_GT] = ACTIONS(7561), + [anon_sym_GT_EQ] = ACTIONS(7563), + [anon_sym_LT_EQ] = ACTIONS(7561), + [anon_sym_LT] = ACTIONS(7561), + [anon_sym_LT_LT] = ACTIONS(7563), + [anon_sym_GT_GT] = ACTIONS(7563), + [anon_sym_SEMI] = ACTIONS(7563), + [anon_sym___extension__] = ACTIONS(7561), + [anon_sym___attribute__] = ACTIONS(7561), + [anon_sym___attribute] = ACTIONS(7561), + [anon_sym_COLON] = ACTIONS(7561), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7563), + [anon_sym___based] = ACTIONS(7561), + [anon_sym_LBRACE] = ACTIONS(7563), + [anon_sym_RBRACE] = ACTIONS(7563), + [anon_sym_signed] = ACTIONS(7561), + [anon_sym_unsigned] = ACTIONS(7561), + [anon_sym_long] = ACTIONS(7561), + [anon_sym_short] = ACTIONS(7561), + [anon_sym_LBRACK] = ACTIONS(7563), + [anon_sym_const] = ACTIONS(7561), + [anon_sym_constexpr] = ACTIONS(7561), + [anon_sym_volatile] = ACTIONS(7561), + [anon_sym_restrict] = ACTIONS(7561), + [anon_sym___restrict__] = ACTIONS(7561), + [anon_sym__Atomic] = ACTIONS(7561), + [anon_sym__Noreturn] = ACTIONS(7561), + [anon_sym_noreturn] = ACTIONS(7561), + [anon_sym__Nonnull] = ACTIONS(7561), + [anon_sym_mutable] = ACTIONS(7561), + [anon_sym_constinit] = ACTIONS(7561), + [anon_sym_consteval] = ACTIONS(7561), + [anon_sym_alignas] = ACTIONS(7561), + [anon_sym__Alignas] = ACTIONS(7561), + [sym_primitive_type] = ACTIONS(7561), + [anon_sym_QMARK] = ACTIONS(7563), + [anon_sym_LT_EQ_GT] = ACTIONS(7563), + [anon_sym_or] = ACTIONS(7561), + [anon_sym_and] = ACTIONS(7561), + [anon_sym_bitor] = ACTIONS(7561), + [anon_sym_xor] = ACTIONS(7561), + [anon_sym_bitand] = ACTIONS(7561), + [anon_sym_not_eq] = ACTIONS(7561), + [anon_sym_DASH_DASH] = ACTIONS(7563), + [anon_sym_PLUS_PLUS] = ACTIONS(7563), + [anon_sym_DOT] = ACTIONS(7561), + [anon_sym_DOT_STAR] = ACTIONS(7563), + [anon_sym_DASH_GT] = ACTIONS(7563), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7561), + [anon_sym_override] = ACTIONS(7561), + [anon_sym_requires] = ACTIONS(7561), + [anon_sym_COLON_RBRACK] = ACTIONS(7563), }, - [STATE(3613)] = { - [sym_attribute_specifier] = STATE(3021), - [sym_enumerator_list] = STATE(3793), - [sym__enum_base_clause] = STATE(3671), + [STATE(3110)] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), [anon_sym_COMMA] = ACTIONS(7653), - [anon_sym_RPAREN] = ACTIONS(7653), [anon_sym_LPAREN2] = ACTIONS(7653), [anon_sym_DASH] = ACTIONS(7651), [anon_sym_PLUS] = ACTIONS(7651), - [anon_sym_STAR] = ACTIONS(7653), + [anon_sym_STAR] = ACTIONS(7651), [anon_sym_SLASH] = ACTIONS(7651), - [anon_sym_PERCENT] = ACTIONS(7653), + [anon_sym_PERCENT] = ACTIONS(7651), [anon_sym_PIPE_PIPE] = ACTIONS(7653), [anon_sym_AMP_AMP] = ACTIONS(7653), [anon_sym_PIPE] = ACTIONS(7651), - [anon_sym_CARET] = ACTIONS(7653), + [anon_sym_CARET] = ACTIONS(7651), [anon_sym_AMP] = ACTIONS(7651), [anon_sym_EQ_EQ] = ACTIONS(7653), [anon_sym_BANG_EQ] = ACTIONS(7653), @@ -423524,17 +401737,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(7653), [anon_sym_LT_EQ] = ACTIONS(7651), [anon_sym_LT] = ACTIONS(7651), - [anon_sym_LT_LT] = ACTIONS(7653), - [anon_sym_GT_GT] = ACTIONS(7653), - [anon_sym_SEMI] = ACTIONS(7653), + [anon_sym_LT_LT] = ACTIONS(7651), + [anon_sym_GT_GT] = ACTIONS(7651), [anon_sym___extension__] = ACTIONS(7653), - [anon_sym___attribute__] = ACTIONS(9025), - [anon_sym___attribute] = ACTIONS(8907), - [anon_sym_COLON] = ACTIONS(9160), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7653), - [anon_sym_LBRACE] = ACTIONS(9162), - [anon_sym_RBRACE] = ACTIONS(7653), + [anon_sym_LBRACE] = ACTIONS(7653), [anon_sym_LBRACK] = ACTIONS(7653), + [anon_sym_RBRACK] = ACTIONS(7653), + [anon_sym_EQ] = ACTIONS(7651), [anon_sym_const] = ACTIONS(7651), [anon_sym_constexpr] = ACTIONS(7653), [anon_sym_volatile] = ACTIONS(7653), @@ -423550,11 +401759,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(7653), [anon_sym__Alignas] = ACTIONS(7653), [anon_sym_QMARK] = ACTIONS(7653), + [anon_sym_STAR_EQ] = ACTIONS(7653), + [anon_sym_SLASH_EQ] = ACTIONS(7653), + [anon_sym_PERCENT_EQ] = ACTIONS(7653), + [anon_sym_PLUS_EQ] = ACTIONS(7653), + [anon_sym_DASH_EQ] = ACTIONS(7653), + [anon_sym_LT_LT_EQ] = ACTIONS(7653), + [anon_sym_GT_GT_EQ] = ACTIONS(7653), + [anon_sym_AMP_EQ] = ACTIONS(7653), + [anon_sym_CARET_EQ] = ACTIONS(7653), + [anon_sym_PIPE_EQ] = ACTIONS(7653), + [anon_sym_and_eq] = ACTIONS(7653), + [anon_sym_or_eq] = ACTIONS(7653), + [anon_sym_xor_eq] = ACTIONS(7653), [anon_sym_LT_EQ_GT] = ACTIONS(7653), - [anon_sym_or] = ACTIONS(7653), - [anon_sym_and] = ACTIONS(7653), + [anon_sym_or] = ACTIONS(7651), + [anon_sym_and] = ACTIONS(7651), [anon_sym_bitor] = ACTIONS(7653), - [anon_sym_xor] = ACTIONS(7653), + [anon_sym_xor] = ACTIONS(7651), [anon_sym_bitand] = ACTIONS(7653), [anon_sym_not_eq] = ACTIONS(7653), [anon_sym_DASH_DASH] = ACTIONS(7653), @@ -423566,9387 +401788,50156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(7653), [anon_sym_override] = ACTIONS(7653), [anon_sym_requires] = ACTIONS(7653), - [anon_sym_COLON_RBRACK] = ACTIONS(7653), - }, - [STATE(3614)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2546), - [sym_identifier] = ACTIONS(7084), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), - [anon_sym_COMMA] = ACTIONS(7081), - [aux_sym_preproc_if_token2] = ACTIONS(7081), - [aux_sym_preproc_else_token1] = ACTIONS(7081), - [aux_sym_preproc_elif_token1] = ACTIONS(7084), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7081), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7081), - [anon_sym_LPAREN2] = ACTIONS(7081), - [anon_sym_DASH] = ACTIONS(7084), - [anon_sym_PLUS] = ACTIONS(7084), - [anon_sym_STAR] = ACTIONS(7081), - [anon_sym_SLASH] = ACTIONS(7084), - [anon_sym_PERCENT] = ACTIONS(7081), - [anon_sym_PIPE_PIPE] = ACTIONS(7081), - [anon_sym_AMP_AMP] = ACTIONS(7081), - [anon_sym_PIPE] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7081), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_EQ_EQ] = ACTIONS(7081), - [anon_sym_BANG_EQ] = ACTIONS(7081), - [anon_sym_GT] = ACTIONS(7084), - [anon_sym_GT_EQ] = ACTIONS(7081), - [anon_sym_LT_EQ] = ACTIONS(7084), - [anon_sym_LT] = ACTIONS(7084), - [anon_sym_LT_LT] = ACTIONS(7081), - [anon_sym_GT_GT] = ACTIONS(7081), - [anon_sym___extension__] = ACTIONS(6627), - [anon_sym___attribute__] = ACTIONS(7084), - [anon_sym___attribute] = ACTIONS(7084), - [anon_sym_LBRACE] = ACTIONS(7081), - [anon_sym_signed] = ACTIONS(8205), - [anon_sym_unsigned] = ACTIONS(8205), - [anon_sym_long] = ACTIONS(8205), - [anon_sym_short] = ACTIONS(8205), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_const] = ACTIONS(6627), - [anon_sym_constexpr] = ACTIONS(6627), - [anon_sym_volatile] = ACTIONS(6627), - [anon_sym_restrict] = ACTIONS(6627), - [anon_sym___restrict__] = ACTIONS(6627), - [anon_sym__Atomic] = ACTIONS(6627), - [anon_sym__Noreturn] = ACTIONS(6627), - [anon_sym_noreturn] = ACTIONS(6627), - [anon_sym__Nonnull] = ACTIONS(6627), - [anon_sym_mutable] = ACTIONS(6627), - [anon_sym_constinit] = ACTIONS(6627), - [anon_sym_consteval] = ACTIONS(6627), - [anon_sym_alignas] = ACTIONS(6627), - [anon_sym__Alignas] = ACTIONS(6627), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(7081), - [anon_sym_LT_EQ_GT] = ACTIONS(7081), - [anon_sym_or] = ACTIONS(7084), - [anon_sym_and] = ACTIONS(7084), - [anon_sym_bitor] = ACTIONS(7084), - [anon_sym_xor] = ACTIONS(7084), - [anon_sym_bitand] = ACTIONS(7084), - [anon_sym_not_eq] = ACTIONS(7084), - [anon_sym_DASH_DASH] = ACTIONS(7081), - [anon_sym_PLUS_PLUS] = ACTIONS(7081), - [anon_sym_DOT] = ACTIONS(7084), - [anon_sym_DOT_STAR] = ACTIONS(7081), - [anon_sym_DASH_GT] = ACTIONS(7081), - [sym_comment] = ACTIONS(3), - }, - [STATE(3615)] = { - [sym_type_qualifier] = STATE(3615), - [sym_alignas_qualifier] = STATE(3884), - [aux_sym__type_definition_type_repeat1] = STATE(3615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_LPAREN2] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6525), - [anon_sym_PLUS] = ACTIONS(6525), - [anon_sym_STAR] = ACTIONS(6527), - [anon_sym_SLASH] = ACTIONS(6525), - [anon_sym_PERCENT] = ACTIONS(6527), - [anon_sym_PIPE_PIPE] = ACTIONS(6527), - [anon_sym_AMP_AMP] = ACTIONS(6527), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_CARET] = ACTIONS(6527), - [anon_sym_AMP] = ACTIONS(6525), - [anon_sym_EQ_EQ] = ACTIONS(6527), - [anon_sym_BANG_EQ] = ACTIONS(6527), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6527), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_LT_LT] = ACTIONS(6527), - [anon_sym_GT_GT] = ACTIONS(6527), - [anon_sym___extension__] = ACTIONS(9164), - [anon_sym___attribute__] = ACTIONS(6527), - [anon_sym___attribute] = ACTIONS(6525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6527), - [anon_sym_LBRACK] = ACTIONS(6525), - [anon_sym_RBRACK] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(9167), - [anon_sym_constexpr] = ACTIONS(9164), - [anon_sym_volatile] = ACTIONS(9164), - [anon_sym_restrict] = ACTIONS(9164), - [anon_sym___restrict__] = ACTIONS(9164), - [anon_sym__Atomic] = ACTIONS(9164), - [anon_sym__Noreturn] = ACTIONS(9164), - [anon_sym_noreturn] = ACTIONS(9164), - [anon_sym__Nonnull] = ACTIONS(9164), - [anon_sym_mutable] = ACTIONS(9164), - [anon_sym_constinit] = ACTIONS(9164), - [anon_sym_consteval] = ACTIONS(9164), - [anon_sym_alignas] = ACTIONS(9170), - [anon_sym__Alignas] = ACTIONS(9170), - [anon_sym_QMARK] = ACTIONS(6527), - [anon_sym_LT_EQ_GT] = ACTIONS(6527), - [anon_sym_or] = ACTIONS(6527), - [anon_sym_and] = ACTIONS(6527), - [anon_sym_bitor] = ACTIONS(6527), - [anon_sym_xor] = ACTIONS(6527), - [anon_sym_bitand] = ACTIONS(6527), - [anon_sym_not_eq] = ACTIONS(6527), - [anon_sym_DASH_DASH] = ACTIONS(6527), - [anon_sym_PLUS_PLUS] = ACTIONS(6527), - [anon_sym_asm] = ACTIONS(6527), - [anon_sym___asm__] = ACTIONS(6527), - [anon_sym___asm] = ACTIONS(6525), - [anon_sym_DOT] = ACTIONS(6525), - [anon_sym_DOT_STAR] = ACTIONS(6527), - [anon_sym_DASH_GT] = ACTIONS(6527), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6527), - [anon_sym_override] = ACTIONS(6527), - [anon_sym_noexcept] = ACTIONS(6527), - [anon_sym_throw] = ACTIONS(6527), - [anon_sym_requires] = ACTIONS(6527), - }, - [STATE(3616)] = { - [sym_new_declarator] = STATE(3717), - [sym_identifier] = ACTIONS(9173), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9175), - [anon_sym_COMMA] = ACTIONS(9175), - [anon_sym_RPAREN] = ACTIONS(9175), - [aux_sym_preproc_if_token2] = ACTIONS(9175), - [aux_sym_preproc_else_token1] = ACTIONS(9175), - [aux_sym_preproc_elif_token1] = ACTIONS(9173), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9175), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9175), - [anon_sym_LPAREN2] = ACTIONS(9175), - [anon_sym_DASH] = ACTIONS(9173), - [anon_sym_PLUS] = ACTIONS(9173), - [anon_sym_STAR] = ACTIONS(9173), - [anon_sym_SLASH] = ACTIONS(9173), - [anon_sym_PERCENT] = ACTIONS(9173), - [anon_sym_PIPE_PIPE] = ACTIONS(9175), - [anon_sym_AMP_AMP] = ACTIONS(9175), - [anon_sym_PIPE] = ACTIONS(9173), - [anon_sym_CARET] = ACTIONS(9173), - [anon_sym_AMP] = ACTIONS(9173), - [anon_sym_EQ_EQ] = ACTIONS(9175), - [anon_sym_BANG_EQ] = ACTIONS(9175), - [anon_sym_GT] = ACTIONS(9173), - [anon_sym_GT_EQ] = ACTIONS(9175), - [anon_sym_LT_EQ] = ACTIONS(9173), - [anon_sym_LT] = ACTIONS(9173), - [anon_sym_LT_LT] = ACTIONS(9173), - [anon_sym_GT_GT] = ACTIONS(9173), - [anon_sym_SEMI] = ACTIONS(9175), - [anon_sym___attribute__] = ACTIONS(9173), - [anon_sym___attribute] = ACTIONS(9173), - [anon_sym_COLON] = ACTIONS(9173), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9175), - [anon_sym_LBRACE] = ACTIONS(9175), - [anon_sym_RBRACE] = ACTIONS(9175), - [anon_sym_LBRACK] = ACTIONS(8810), - [anon_sym_EQ] = ACTIONS(9173), - [anon_sym_QMARK] = ACTIONS(9175), - [anon_sym_STAR_EQ] = ACTIONS(9175), - [anon_sym_SLASH_EQ] = ACTIONS(9175), - [anon_sym_PERCENT_EQ] = ACTIONS(9175), - [anon_sym_PLUS_EQ] = ACTIONS(9175), - [anon_sym_DASH_EQ] = ACTIONS(9175), - [anon_sym_LT_LT_EQ] = ACTIONS(9175), - [anon_sym_GT_GT_EQ] = ACTIONS(9175), - [anon_sym_AMP_EQ] = ACTIONS(9175), - [anon_sym_CARET_EQ] = ACTIONS(9175), - [anon_sym_PIPE_EQ] = ACTIONS(9175), - [anon_sym_and_eq] = ACTIONS(9173), - [anon_sym_or_eq] = ACTIONS(9173), - [anon_sym_xor_eq] = ACTIONS(9173), - [anon_sym_LT_EQ_GT] = ACTIONS(9175), - [anon_sym_or] = ACTIONS(9173), - [anon_sym_and] = ACTIONS(9173), - [anon_sym_bitor] = ACTIONS(9173), - [anon_sym_xor] = ACTIONS(9173), - [anon_sym_bitand] = ACTIONS(9173), - [anon_sym_not_eq] = ACTIONS(9173), - [anon_sym_DASH_DASH] = ACTIONS(9175), - [anon_sym_PLUS_PLUS] = ACTIONS(9175), - [anon_sym_DOT] = ACTIONS(9173), - [anon_sym_DOT_STAR] = ACTIONS(9175), - [anon_sym_DASH_GT] = ACTIONS(9175), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9175), }, - [STATE(3617)] = { - [sym_identifier] = ACTIONS(6967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6969), - [anon_sym_COMMA] = ACTIONS(6969), - [anon_sym_RPAREN] = ACTIONS(6969), - [anon_sym_LPAREN2] = ACTIONS(6969), - [anon_sym_TILDE] = ACTIONS(6969), - [anon_sym_STAR] = ACTIONS(6969), - [anon_sym_PIPE_PIPE] = ACTIONS(6969), - [anon_sym_AMP_AMP] = ACTIONS(6969), - [anon_sym_AMP] = ACTIONS(6967), - [anon_sym_SEMI] = ACTIONS(6969), - [anon_sym___extension__] = ACTIONS(6967), - [anon_sym_virtual] = ACTIONS(6967), - [anon_sym_extern] = ACTIONS(6967), - [anon_sym___attribute__] = ACTIONS(6967), - [anon_sym___attribute] = ACTIONS(6967), - [anon_sym_COLON] = ACTIONS(6967), - [anon_sym_COLON_COLON] = ACTIONS(6969), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6969), - [anon_sym___declspec] = ACTIONS(6967), - [anon_sym___based] = ACTIONS(6967), - [anon_sym___cdecl] = ACTIONS(6967), - [anon_sym___clrcall] = ACTIONS(6967), - [anon_sym___stdcall] = ACTIONS(6967), - [anon_sym___fastcall] = ACTIONS(6967), - [anon_sym___thiscall] = ACTIONS(6967), - [anon_sym___vectorcall] = ACTIONS(6967), - [anon_sym_LBRACE] = ACTIONS(6969), - [anon_sym_LBRACK] = ACTIONS(6967), - [anon_sym_static] = ACTIONS(6967), - [anon_sym_EQ] = ACTIONS(6969), - [anon_sym_register] = ACTIONS(6967), - [anon_sym_inline] = ACTIONS(6967), - [anon_sym___inline] = ACTIONS(6967), - [anon_sym___inline__] = ACTIONS(6967), - [anon_sym___forceinline] = ACTIONS(6967), - [anon_sym_thread_local] = ACTIONS(6967), - [anon_sym___thread] = ACTIONS(6967), - [anon_sym_const] = ACTIONS(6967), - [anon_sym_constexpr] = ACTIONS(6967), - [anon_sym_volatile] = ACTIONS(6967), - [anon_sym_restrict] = ACTIONS(6967), - [anon_sym___restrict__] = ACTIONS(6967), - [anon_sym__Atomic] = ACTIONS(6967), - [anon_sym__Noreturn] = ACTIONS(6967), - [anon_sym_noreturn] = ACTIONS(6967), - [anon_sym__Nonnull] = ACTIONS(6967), - [anon_sym_mutable] = ACTIONS(6967), - [anon_sym_constinit] = ACTIONS(6967), - [anon_sym_consteval] = ACTIONS(6967), - [anon_sym_alignas] = ACTIONS(6967), - [anon_sym__Alignas] = ACTIONS(6967), - [anon_sym_or] = ACTIONS(6967), - [anon_sym_and] = ACTIONS(6967), - [anon_sym_DASH_GT] = ACTIONS(6969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6967), - [anon_sym_decltype] = ACTIONS(6967), - [anon_sym_final] = ACTIONS(6967), - [anon_sym_override] = ACTIONS(6967), - [anon_sym_template] = ACTIONS(6967), - [anon_sym_GT2] = ACTIONS(6969), - [anon_sym_operator] = ACTIONS(6967), - [anon_sym_noexcept] = ACTIONS(6967), - [anon_sym_throw] = ACTIONS(6967), - [anon_sym_LBRACK_COLON] = ACTIONS(6969), + [STATE(3111)] = { + [sym_identifier] = ACTIONS(9041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9043), + [anon_sym_COMMA] = ACTIONS(9043), + [anon_sym_RPAREN] = ACTIONS(9043), + [aux_sym_preproc_if_token2] = ACTIONS(9043), + [aux_sym_preproc_else_token1] = ACTIONS(9043), + [aux_sym_preproc_elif_token1] = ACTIONS(9041), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9043), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9043), + [anon_sym_LPAREN2] = ACTIONS(9043), + [anon_sym_DASH] = ACTIONS(9041), + [anon_sym_PLUS] = ACTIONS(9041), + [anon_sym_STAR] = ACTIONS(9041), + [anon_sym_SLASH] = ACTIONS(9041), + [anon_sym_PERCENT] = ACTIONS(9041), + [anon_sym_PIPE_PIPE] = ACTIONS(9043), + [anon_sym_AMP_AMP] = ACTIONS(9043), + [anon_sym_PIPE] = ACTIONS(9041), + [anon_sym_CARET] = ACTIONS(9041), + [anon_sym_AMP] = ACTIONS(9041), + [anon_sym_EQ_EQ] = ACTIONS(9043), + [anon_sym_BANG_EQ] = ACTIONS(9043), + [anon_sym_GT] = ACTIONS(9041), + [anon_sym_GT_EQ] = ACTIONS(9043), + [anon_sym_LT_EQ] = ACTIONS(9041), + [anon_sym_LT] = ACTIONS(9041), + [anon_sym_LT_LT] = ACTIONS(9041), + [anon_sym_GT_GT] = ACTIONS(9041), + [anon_sym_SEMI] = ACTIONS(9043), + [anon_sym___attribute__] = ACTIONS(9041), + [anon_sym___attribute] = ACTIONS(9041), + [anon_sym_COLON] = ACTIONS(9041), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9043), + [anon_sym_LBRACE] = ACTIONS(9043), + [anon_sym_RBRACE] = ACTIONS(9043), + [anon_sym_LBRACK] = ACTIONS(9041), + [anon_sym_RBRACK] = ACTIONS(9043), + [anon_sym_EQ] = ACTIONS(9041), + [anon_sym_QMARK] = ACTIONS(9043), + [anon_sym_STAR_EQ] = ACTIONS(9043), + [anon_sym_SLASH_EQ] = ACTIONS(9043), + [anon_sym_PERCENT_EQ] = ACTIONS(9043), + [anon_sym_PLUS_EQ] = ACTIONS(9043), + [anon_sym_DASH_EQ] = ACTIONS(9043), + [anon_sym_LT_LT_EQ] = ACTIONS(9043), + [anon_sym_GT_GT_EQ] = ACTIONS(9043), + [anon_sym_AMP_EQ] = ACTIONS(9043), + [anon_sym_CARET_EQ] = ACTIONS(9043), + [anon_sym_PIPE_EQ] = ACTIONS(9043), + [anon_sym_and_eq] = ACTIONS(9041), + [anon_sym_or_eq] = ACTIONS(9041), + [anon_sym_xor_eq] = ACTIONS(9041), + [anon_sym_LT_EQ_GT] = ACTIONS(9043), + [anon_sym_or] = ACTIONS(9041), + [anon_sym_and] = ACTIONS(9041), + [anon_sym_bitor] = ACTIONS(9041), + [anon_sym_xor] = ACTIONS(9041), + [anon_sym_bitand] = ACTIONS(9041), + [anon_sym_not_eq] = ACTIONS(9041), + [anon_sym_DASH_DASH] = ACTIONS(9043), + [anon_sym_PLUS_PLUS] = ACTIONS(9043), + [anon_sym_asm] = ACTIONS(9041), + [anon_sym___asm__] = ACTIONS(9041), + [anon_sym___asm] = ACTIONS(9041), + [anon_sym_DOT] = ACTIONS(9041), + [anon_sym_DOT_STAR] = ACTIONS(9043), + [anon_sym_DASH_GT] = ACTIONS(9043), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9041), + [anon_sym_COLON_RBRACK] = ACTIONS(9043), }, - [STATE(3618)] = { - [sym_template_argument_list] = STATE(3605), - [sym_identifier] = ACTIONS(9177), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9179), - [anon_sym_COMMA] = ACTIONS(9179), - [anon_sym_RPAREN] = ACTIONS(9179), - [aux_sym_preproc_if_token2] = ACTIONS(9179), - [aux_sym_preproc_else_token1] = ACTIONS(9179), - [aux_sym_preproc_elif_token1] = ACTIONS(9177), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9179), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9179), - [anon_sym_LPAREN2] = ACTIONS(9179), - [anon_sym_DASH] = ACTIONS(9177), - [anon_sym_PLUS] = ACTIONS(9177), - [anon_sym_STAR] = ACTIONS(9177), - [anon_sym_SLASH] = ACTIONS(9177), - [anon_sym_PERCENT] = ACTIONS(9177), - [anon_sym_PIPE_PIPE] = ACTIONS(9179), - [anon_sym_AMP_AMP] = ACTIONS(9179), - [anon_sym_PIPE] = ACTIONS(9177), - [anon_sym_CARET] = ACTIONS(9177), - [anon_sym_AMP] = ACTIONS(9177), - [anon_sym_EQ_EQ] = ACTIONS(9179), - [anon_sym_BANG_EQ] = ACTIONS(9179), - [anon_sym_GT] = ACTIONS(9177), - [anon_sym_GT_EQ] = ACTIONS(9179), - [anon_sym_LT_EQ] = ACTIONS(9177), - [anon_sym_LT] = ACTIONS(9181), - [anon_sym_LT_LT] = ACTIONS(9177), - [anon_sym_GT_GT] = ACTIONS(9177), - [anon_sym_SEMI] = ACTIONS(9179), - [anon_sym___attribute__] = ACTIONS(9177), - [anon_sym___attribute] = ACTIONS(9177), - [anon_sym_COLON] = ACTIONS(9177), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9179), - [anon_sym_RBRACE] = ACTIONS(9179), - [anon_sym_LBRACK] = ACTIONS(9179), - [anon_sym_EQ] = ACTIONS(9177), - [anon_sym_QMARK] = ACTIONS(9179), - [anon_sym_STAR_EQ] = ACTIONS(9179), - [anon_sym_SLASH_EQ] = ACTIONS(9179), - [anon_sym_PERCENT_EQ] = ACTIONS(9179), - [anon_sym_PLUS_EQ] = ACTIONS(9179), - [anon_sym_DASH_EQ] = ACTIONS(9179), - [anon_sym_LT_LT_EQ] = ACTIONS(9179), - [anon_sym_GT_GT_EQ] = ACTIONS(9179), - [anon_sym_AMP_EQ] = ACTIONS(9179), - [anon_sym_CARET_EQ] = ACTIONS(9179), - [anon_sym_PIPE_EQ] = ACTIONS(9179), - [anon_sym_and_eq] = ACTIONS(9177), - [anon_sym_or_eq] = ACTIONS(9177), - [anon_sym_xor_eq] = ACTIONS(9177), - [anon_sym_LT_EQ_GT] = ACTIONS(9179), - [anon_sym_or] = ACTIONS(9177), - [anon_sym_and] = ACTIONS(9177), - [anon_sym_bitor] = ACTIONS(9177), - [anon_sym_xor] = ACTIONS(9177), - [anon_sym_bitand] = ACTIONS(9177), - [anon_sym_not_eq] = ACTIONS(9177), - [anon_sym_DASH_DASH] = ACTIONS(9179), - [anon_sym_PLUS_PLUS] = ACTIONS(9179), - [anon_sym_DOT] = ACTIONS(9177), - [anon_sym_DOT_STAR] = ACTIONS(9179), - [anon_sym_DASH_GT] = ACTIONS(9179), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9179), + [STATE(3112)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7597), + [anon_sym_COMMA] = ACTIONS(7597), + [anon_sym_LPAREN2] = ACTIONS(7597), + [anon_sym_DASH] = ACTIONS(7595), + [anon_sym_PLUS] = ACTIONS(7595), + [anon_sym_STAR] = ACTIONS(7595), + [anon_sym_SLASH] = ACTIONS(7595), + [anon_sym_PERCENT] = ACTIONS(7595), + [anon_sym_PIPE_PIPE] = ACTIONS(7597), + [anon_sym_AMP_AMP] = ACTIONS(7597), + [anon_sym_PIPE] = ACTIONS(7595), + [anon_sym_CARET] = ACTIONS(7595), + [anon_sym_AMP] = ACTIONS(7595), + [anon_sym_EQ_EQ] = ACTIONS(7597), + [anon_sym_BANG_EQ] = ACTIONS(7597), + [anon_sym_GT] = ACTIONS(7595), + [anon_sym_GT_EQ] = ACTIONS(7595), + [anon_sym_LT_EQ] = ACTIONS(7595), + [anon_sym_LT] = ACTIONS(7595), + [anon_sym_LT_LT] = ACTIONS(7595), + [anon_sym_GT_GT] = ACTIONS(7595), + [anon_sym___extension__] = ACTIONS(7597), + [anon_sym_LBRACE] = ACTIONS(7597), + [anon_sym_LBRACK] = ACTIONS(7597), + [anon_sym_EQ] = ACTIONS(7595), + [anon_sym_const] = ACTIONS(7595), + [anon_sym_constexpr] = ACTIONS(7597), + [anon_sym_volatile] = ACTIONS(7597), + [anon_sym_restrict] = ACTIONS(7597), + [anon_sym___restrict__] = ACTIONS(7597), + [anon_sym__Atomic] = ACTIONS(7597), + [anon_sym__Noreturn] = ACTIONS(7597), + [anon_sym_noreturn] = ACTIONS(7597), + [anon_sym__Nonnull] = ACTIONS(7597), + [anon_sym_mutable] = ACTIONS(7597), + [anon_sym_constinit] = ACTIONS(7597), + [anon_sym_consteval] = ACTIONS(7597), + [anon_sym_alignas] = ACTIONS(7597), + [anon_sym__Alignas] = ACTIONS(7597), + [anon_sym_QMARK] = ACTIONS(7597), + [anon_sym_STAR_EQ] = ACTIONS(7597), + [anon_sym_SLASH_EQ] = ACTIONS(7597), + [anon_sym_PERCENT_EQ] = ACTIONS(7597), + [anon_sym_PLUS_EQ] = ACTIONS(7597), + [anon_sym_DASH_EQ] = ACTIONS(7597), + [anon_sym_LT_LT_EQ] = ACTIONS(7597), + [anon_sym_GT_GT_EQ] = ACTIONS(7595), + [anon_sym_AMP_EQ] = ACTIONS(7597), + [anon_sym_CARET_EQ] = ACTIONS(7597), + [anon_sym_PIPE_EQ] = ACTIONS(7597), + [anon_sym_and_eq] = ACTIONS(7597), + [anon_sym_or_eq] = ACTIONS(7597), + [anon_sym_xor_eq] = ACTIONS(7597), + [anon_sym_LT_EQ_GT] = ACTIONS(7597), + [anon_sym_or] = ACTIONS(7595), + [anon_sym_and] = ACTIONS(7595), + [anon_sym_bitor] = ACTIONS(7597), + [anon_sym_xor] = ACTIONS(7595), + [anon_sym_bitand] = ACTIONS(7597), + [anon_sym_not_eq] = ACTIONS(7597), + [anon_sym_DASH_DASH] = ACTIONS(7597), + [anon_sym_PLUS_PLUS] = ACTIONS(7597), + [anon_sym_DOT] = ACTIONS(7595), + [anon_sym_DOT_STAR] = ACTIONS(7597), + [anon_sym_DASH_GT] = ACTIONS(7597), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7597), + [anon_sym_override] = ACTIONS(7597), + [anon_sym_GT2] = ACTIONS(7597), + [anon_sym_requires] = ACTIONS(7597), }, - [STATE(3619)] = { - [sym_identifier] = ACTIONS(6762), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6764), - [anon_sym_COMMA] = ACTIONS(6764), - [aux_sym_preproc_if_token2] = ACTIONS(6764), - [aux_sym_preproc_else_token1] = ACTIONS(6764), - [aux_sym_preproc_elif_token1] = ACTIONS(6762), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6764), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6764), - [anon_sym_LPAREN2] = ACTIONS(6764), - [anon_sym_DASH] = ACTIONS(6762), - [anon_sym_PLUS] = ACTIONS(6762), - [anon_sym_STAR] = ACTIONS(6764), - [anon_sym_SLASH] = ACTIONS(6762), - [anon_sym_PERCENT] = ACTIONS(6764), - [anon_sym_PIPE_PIPE] = ACTIONS(6764), - [anon_sym_AMP_AMP] = ACTIONS(6764), - [anon_sym_PIPE] = ACTIONS(6762), - [anon_sym_CARET] = ACTIONS(6764), - [anon_sym_AMP] = ACTIONS(6762), - [anon_sym_EQ_EQ] = ACTIONS(6764), - [anon_sym_BANG_EQ] = ACTIONS(6764), - [anon_sym_GT] = ACTIONS(6762), - [anon_sym_GT_EQ] = ACTIONS(6764), - [anon_sym_LT_EQ] = ACTIONS(6762), - [anon_sym_LT] = ACTIONS(6762), - [anon_sym_LT_LT] = ACTIONS(6764), - [anon_sym_GT_GT] = ACTIONS(6764), - [anon_sym___extension__] = ACTIONS(6762), - [anon_sym___attribute__] = ACTIONS(6762), - [anon_sym___attribute] = ACTIONS(6762), - [anon_sym_COLON] = ACTIONS(6762), - [anon_sym_COLON_COLON] = ACTIONS(6764), - [anon_sym_LBRACE] = ACTIONS(6764), - [anon_sym_LBRACK] = ACTIONS(6764), - [anon_sym_RBRACK] = ACTIONS(6764), - [anon_sym_const] = ACTIONS(6762), - [anon_sym_constexpr] = ACTIONS(6762), - [anon_sym_volatile] = ACTIONS(6762), - [anon_sym_restrict] = ACTIONS(6762), - [anon_sym___restrict__] = ACTIONS(6762), - [anon_sym__Atomic] = ACTIONS(6762), - [anon_sym__Noreturn] = ACTIONS(6762), - [anon_sym_noreturn] = ACTIONS(6762), - [anon_sym__Nonnull] = ACTIONS(6762), - [anon_sym_mutable] = ACTIONS(6762), - [anon_sym_constinit] = ACTIONS(6762), - [anon_sym_consteval] = ACTIONS(6762), - [anon_sym_alignas] = ACTIONS(6762), - [anon_sym__Alignas] = ACTIONS(6762), - [anon_sym_QMARK] = ACTIONS(6764), - [anon_sym_LT_EQ_GT] = ACTIONS(6764), - [anon_sym_or] = ACTIONS(6762), - [anon_sym_and] = ACTIONS(6762), - [anon_sym_bitor] = ACTIONS(6762), - [anon_sym_xor] = ACTIONS(6762), - [anon_sym_bitand] = ACTIONS(6762), - [anon_sym_not_eq] = ACTIONS(6762), - [anon_sym_DASH_DASH] = ACTIONS(6764), - [anon_sym_PLUS_PLUS] = ACTIONS(6764), - [anon_sym_DOT] = ACTIONS(6762), - [anon_sym_DOT_STAR] = ACTIONS(6764), - [anon_sym_DASH_GT] = ACTIONS(6764), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6762), - [anon_sym_override] = ACTIONS(6762), - [anon_sym_requires] = ACTIONS(6762), + [STATE(3113)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7637), + [anon_sym_COMMA] = ACTIONS(7637), + [anon_sym_LPAREN2] = ACTIONS(7637), + [anon_sym_DASH] = ACTIONS(7635), + [anon_sym_PLUS] = ACTIONS(7635), + [anon_sym_STAR] = ACTIONS(7635), + [anon_sym_SLASH] = ACTIONS(7635), + [anon_sym_PERCENT] = ACTIONS(7635), + [anon_sym_PIPE_PIPE] = ACTIONS(7637), + [anon_sym_AMP_AMP] = ACTIONS(7637), + [anon_sym_PIPE] = ACTIONS(7635), + [anon_sym_CARET] = ACTIONS(7635), + [anon_sym_AMP] = ACTIONS(7635), + [anon_sym_EQ_EQ] = ACTIONS(7637), + [anon_sym_BANG_EQ] = ACTIONS(7637), + [anon_sym_GT] = ACTIONS(7635), + [anon_sym_GT_EQ] = ACTIONS(7635), + [anon_sym_LT_EQ] = ACTIONS(7635), + [anon_sym_LT] = ACTIONS(7635), + [anon_sym_LT_LT] = ACTIONS(7635), + [anon_sym_GT_GT] = ACTIONS(7635), + [anon_sym___extension__] = ACTIONS(7637), + [anon_sym_LBRACE] = ACTIONS(7637), + [anon_sym_LBRACK] = ACTIONS(7637), + [anon_sym_EQ] = ACTIONS(7635), + [anon_sym_const] = ACTIONS(7635), + [anon_sym_constexpr] = ACTIONS(7637), + [anon_sym_volatile] = ACTIONS(7637), + [anon_sym_restrict] = ACTIONS(7637), + [anon_sym___restrict__] = ACTIONS(7637), + [anon_sym__Atomic] = ACTIONS(7637), + [anon_sym__Noreturn] = ACTIONS(7637), + [anon_sym_noreturn] = ACTIONS(7637), + [anon_sym__Nonnull] = ACTIONS(7637), + [anon_sym_mutable] = ACTIONS(7637), + [anon_sym_constinit] = ACTIONS(7637), + [anon_sym_consteval] = ACTIONS(7637), + [anon_sym_alignas] = ACTIONS(7637), + [anon_sym__Alignas] = ACTIONS(7637), + [anon_sym_QMARK] = ACTIONS(7637), + [anon_sym_STAR_EQ] = ACTIONS(7637), + [anon_sym_SLASH_EQ] = ACTIONS(7637), + [anon_sym_PERCENT_EQ] = ACTIONS(7637), + [anon_sym_PLUS_EQ] = ACTIONS(7637), + [anon_sym_DASH_EQ] = ACTIONS(7637), + [anon_sym_LT_LT_EQ] = ACTIONS(7637), + [anon_sym_GT_GT_EQ] = ACTIONS(7635), + [anon_sym_AMP_EQ] = ACTIONS(7637), + [anon_sym_CARET_EQ] = ACTIONS(7637), + [anon_sym_PIPE_EQ] = ACTIONS(7637), + [anon_sym_and_eq] = ACTIONS(7637), + [anon_sym_or_eq] = ACTIONS(7637), + [anon_sym_xor_eq] = ACTIONS(7637), + [anon_sym_LT_EQ_GT] = ACTIONS(7637), + [anon_sym_or] = ACTIONS(7635), + [anon_sym_and] = ACTIONS(7635), + [anon_sym_bitor] = ACTIONS(7637), + [anon_sym_xor] = ACTIONS(7635), + [anon_sym_bitand] = ACTIONS(7637), + [anon_sym_not_eq] = ACTIONS(7637), + [anon_sym_DASH_DASH] = ACTIONS(7637), + [anon_sym_PLUS_PLUS] = ACTIONS(7637), + [anon_sym_DOT] = ACTIONS(7635), + [anon_sym_DOT_STAR] = ACTIONS(7637), + [anon_sym_DASH_GT] = ACTIONS(7637), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7637), + [anon_sym_override] = ACTIONS(7637), + [anon_sym_GT2] = ACTIONS(7637), + [anon_sym_requires] = ACTIONS(7637), }, - [STATE(3620)] = { - [sym_type_qualifier] = STATE(3615), - [sym_alignas_qualifier] = STATE(3884), - [aux_sym__type_definition_type_repeat1] = STATE(3615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), - [anon_sym_COMMA] = ACTIONS(6390), - [anon_sym_LPAREN2] = ACTIONS(6390), - [anon_sym_DASH] = ACTIONS(6388), - [anon_sym_PLUS] = ACTIONS(6388), - [anon_sym_STAR] = ACTIONS(6390), - [anon_sym_SLASH] = ACTIONS(6388), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_PIPE_PIPE] = ACTIONS(6390), - [anon_sym_AMP_AMP] = ACTIONS(6390), - [anon_sym_PIPE] = ACTIONS(6388), - [anon_sym_CARET] = ACTIONS(6390), - [anon_sym_AMP] = ACTIONS(6388), - [anon_sym_EQ_EQ] = ACTIONS(6390), - [anon_sym_BANG_EQ] = ACTIONS(6390), - [anon_sym_GT] = ACTIONS(6388), - [anon_sym_GT_EQ] = ACTIONS(6390), - [anon_sym_LT_EQ] = ACTIONS(6388), - [anon_sym_LT] = ACTIONS(6388), - [anon_sym_LT_LT] = ACTIONS(6390), - [anon_sym_GT_GT] = ACTIONS(6390), - [anon_sym___extension__] = ACTIONS(7495), - [anon_sym___attribute__] = ACTIONS(6390), - [anon_sym___attribute] = ACTIONS(6388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), - [anon_sym_LBRACK] = ACTIONS(6388), - [anon_sym_RBRACK] = ACTIONS(6390), - [anon_sym_const] = ACTIONS(7503), - [anon_sym_constexpr] = ACTIONS(7495), - [anon_sym_volatile] = ACTIONS(7495), - [anon_sym_restrict] = ACTIONS(7495), - [anon_sym___restrict__] = ACTIONS(7495), - [anon_sym__Atomic] = ACTIONS(7495), - [anon_sym__Noreturn] = ACTIONS(7495), - [anon_sym_noreturn] = ACTIONS(7495), - [anon_sym__Nonnull] = ACTIONS(7495), - [anon_sym_mutable] = ACTIONS(7495), - [anon_sym_constinit] = ACTIONS(7495), - [anon_sym_consteval] = ACTIONS(7495), - [anon_sym_alignas] = ACTIONS(7505), - [anon_sym__Alignas] = ACTIONS(7505), - [anon_sym_QMARK] = ACTIONS(6390), - [anon_sym_LT_EQ_GT] = ACTIONS(6390), - [anon_sym_or] = ACTIONS(6390), - [anon_sym_and] = ACTIONS(6390), - [anon_sym_bitor] = ACTIONS(6390), - [anon_sym_xor] = ACTIONS(6390), - [anon_sym_bitand] = ACTIONS(6390), - [anon_sym_not_eq] = ACTIONS(6390), - [anon_sym_DASH_DASH] = ACTIONS(6390), - [anon_sym_PLUS_PLUS] = ACTIONS(6390), - [anon_sym_asm] = ACTIONS(6390), - [anon_sym___asm__] = ACTIONS(6390), - [anon_sym___asm] = ACTIONS(6388), - [anon_sym_DOT] = ACTIONS(6388), - [anon_sym_DOT_STAR] = ACTIONS(6390), - [anon_sym_DASH_GT] = ACTIONS(6390), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6390), - [anon_sym_override] = ACTIONS(6390), - [anon_sym_noexcept] = ACTIONS(6390), - [anon_sym_throw] = ACTIONS(6390), - [anon_sym_requires] = ACTIONS(6390), + [STATE(3114)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7633), + [anon_sym_COMMA] = ACTIONS(7633), + [anon_sym_RPAREN] = ACTIONS(7633), + [anon_sym_LPAREN2] = ACTIONS(7633), + [anon_sym_DASH] = ACTIONS(7631), + [anon_sym_PLUS] = ACTIONS(7631), + [anon_sym_STAR] = ACTIONS(7631), + [anon_sym_SLASH] = ACTIONS(7631), + [anon_sym_PERCENT] = ACTIONS(7631), + [anon_sym_PIPE_PIPE] = ACTIONS(7633), + [anon_sym_AMP_AMP] = ACTIONS(7633), + [anon_sym_PIPE] = ACTIONS(7631), + [anon_sym_CARET] = ACTIONS(7631), + [anon_sym_AMP] = ACTIONS(7631), + [anon_sym_EQ_EQ] = ACTIONS(7633), + [anon_sym_BANG_EQ] = ACTIONS(7633), + [anon_sym_GT] = ACTIONS(7631), + [anon_sym_GT_EQ] = ACTIONS(7633), + [anon_sym_LT_EQ] = ACTIONS(7631), + [anon_sym_LT] = ACTIONS(7631), + [anon_sym_LT_LT] = ACTIONS(7631), + [anon_sym_GT_GT] = ACTIONS(7631), + [anon_sym___extension__] = ACTIONS(7633), + [anon_sym___attribute__] = ACTIONS(7633), + [anon_sym___attribute] = ACTIONS(7631), + [anon_sym_LBRACE] = ACTIONS(7633), + [anon_sym_LBRACK] = ACTIONS(7633), + [anon_sym_EQ] = ACTIONS(7631), + [anon_sym_const] = ACTIONS(7631), + [anon_sym_constexpr] = ACTIONS(7633), + [anon_sym_volatile] = ACTIONS(7633), + [anon_sym_restrict] = ACTIONS(7633), + [anon_sym___restrict__] = ACTIONS(7633), + [anon_sym__Atomic] = ACTIONS(7633), + [anon_sym__Noreturn] = ACTIONS(7633), + [anon_sym_noreturn] = ACTIONS(7633), + [anon_sym__Nonnull] = ACTIONS(7633), + [anon_sym_mutable] = ACTIONS(7633), + [anon_sym_constinit] = ACTIONS(7633), + [anon_sym_consteval] = ACTIONS(7633), + [anon_sym_alignas] = ACTIONS(7633), + [anon_sym__Alignas] = ACTIONS(7633), + [anon_sym_QMARK] = ACTIONS(7633), + [anon_sym_STAR_EQ] = ACTIONS(7633), + [anon_sym_SLASH_EQ] = ACTIONS(7633), + [anon_sym_PERCENT_EQ] = ACTIONS(7633), + [anon_sym_PLUS_EQ] = ACTIONS(7633), + [anon_sym_DASH_EQ] = ACTIONS(7633), + [anon_sym_LT_LT_EQ] = ACTIONS(7633), + [anon_sym_GT_GT_EQ] = ACTIONS(7633), + [anon_sym_AMP_EQ] = ACTIONS(7633), + [anon_sym_CARET_EQ] = ACTIONS(7633), + [anon_sym_PIPE_EQ] = ACTIONS(7633), + [anon_sym_LT_EQ_GT] = ACTIONS(7633), + [anon_sym_or] = ACTIONS(7633), + [anon_sym_and] = ACTIONS(7633), + [anon_sym_bitor] = ACTIONS(7633), + [anon_sym_xor] = ACTIONS(7633), + [anon_sym_bitand] = ACTIONS(7633), + [anon_sym_not_eq] = ACTIONS(7633), + [anon_sym_DASH_DASH] = ACTIONS(7633), + [anon_sym_PLUS_PLUS] = ACTIONS(7633), + [anon_sym_DOT] = ACTIONS(7631), + [anon_sym_DOT_STAR] = ACTIONS(7633), + [anon_sym_DASH_GT] = ACTIONS(7631), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7633), + [anon_sym_override] = ACTIONS(7633), + [anon_sym_requires] = ACTIONS(7633), + [anon_sym_DASH_GT_STAR] = ACTIONS(7633), }, - [STATE(3621)] = { - [sym_string_literal] = STATE(3603), - [sym_template_argument_list] = STATE(5247), - [sym_raw_string_literal] = STATE(3603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(9184), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_RBRACK] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(5260), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5253), - [anon_sym_SLASH_EQ] = ACTIONS(5253), - [anon_sym_PERCENT_EQ] = ACTIONS(5253), - [anon_sym_PLUS_EQ] = ACTIONS(5253), - [anon_sym_DASH_EQ] = ACTIONS(5253), - [anon_sym_LT_LT_EQ] = ACTIONS(5253), - [anon_sym_GT_GT_EQ] = ACTIONS(5253), - [anon_sym_AMP_EQ] = ACTIONS(5253), - [anon_sym_CARET_EQ] = ACTIONS(5253), - [anon_sym_PIPE_EQ] = ACTIONS(5253), - [anon_sym_and_eq] = ACTIONS(5253), - [anon_sym_or_eq] = ACTIONS(5253), - [anon_sym_xor_eq] = ACTIONS(5253), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(6676), - [anon_sym_u_DQUOTE] = ACTIONS(6676), - [anon_sym_U_DQUOTE] = ACTIONS(6676), - [anon_sym_u8_DQUOTE] = ACTIONS(6676), - [anon_sym_DQUOTE] = ACTIONS(6676), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6682), - [anon_sym_LR_DQUOTE] = ACTIONS(6682), - [anon_sym_uR_DQUOTE] = ACTIONS(6682), - [anon_sym_UR_DQUOTE] = ACTIONS(6682), - [anon_sym_u8R_DQUOTE] = ACTIONS(6682), + [STATE(3115)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7749), + [anon_sym_COMMA] = ACTIONS(7749), + [anon_sym_RPAREN] = ACTIONS(7749), + [anon_sym_LPAREN2] = ACTIONS(7749), + [anon_sym_DASH] = ACTIONS(7747), + [anon_sym_PLUS] = ACTIONS(7747), + [anon_sym_STAR] = ACTIONS(7747), + [anon_sym_SLASH] = ACTIONS(7747), + [anon_sym_PERCENT] = ACTIONS(7747), + [anon_sym_PIPE_PIPE] = ACTIONS(7749), + [anon_sym_AMP_AMP] = ACTIONS(7749), + [anon_sym_PIPE] = ACTIONS(7747), + [anon_sym_CARET] = ACTIONS(7747), + [anon_sym_AMP] = ACTIONS(7747), + [anon_sym_EQ_EQ] = ACTIONS(7749), + [anon_sym_BANG_EQ] = ACTIONS(7749), + [anon_sym_GT] = ACTIONS(7747), + [anon_sym_GT_EQ] = ACTIONS(7749), + [anon_sym_LT_EQ] = ACTIONS(7747), + [anon_sym_LT] = ACTIONS(7747), + [anon_sym_LT_LT] = ACTIONS(7747), + [anon_sym_GT_GT] = ACTIONS(7747), + [anon_sym___extension__] = ACTIONS(7749), + [anon_sym___attribute__] = ACTIONS(7749), + [anon_sym___attribute] = ACTIONS(7747), + [anon_sym_LBRACE] = ACTIONS(7749), + [anon_sym_LBRACK] = ACTIONS(7749), + [anon_sym_EQ] = ACTIONS(7747), + [anon_sym_const] = ACTIONS(7747), + [anon_sym_constexpr] = ACTIONS(7749), + [anon_sym_volatile] = ACTIONS(7749), + [anon_sym_restrict] = ACTIONS(7749), + [anon_sym___restrict__] = ACTIONS(7749), + [anon_sym__Atomic] = ACTIONS(7749), + [anon_sym__Noreturn] = ACTIONS(7749), + [anon_sym_noreturn] = ACTIONS(7749), + [anon_sym__Nonnull] = ACTIONS(7749), + [anon_sym_mutable] = ACTIONS(7749), + [anon_sym_constinit] = ACTIONS(7749), + [anon_sym_consteval] = ACTIONS(7749), + [anon_sym_alignas] = ACTIONS(7749), + [anon_sym__Alignas] = ACTIONS(7749), + [anon_sym_QMARK] = ACTIONS(7749), + [anon_sym_STAR_EQ] = ACTIONS(7749), + [anon_sym_SLASH_EQ] = ACTIONS(7749), + [anon_sym_PERCENT_EQ] = ACTIONS(7749), + [anon_sym_PLUS_EQ] = ACTIONS(7749), + [anon_sym_DASH_EQ] = ACTIONS(7749), + [anon_sym_LT_LT_EQ] = ACTIONS(7749), + [anon_sym_GT_GT_EQ] = ACTIONS(7749), + [anon_sym_AMP_EQ] = ACTIONS(7749), + [anon_sym_CARET_EQ] = ACTIONS(7749), + [anon_sym_PIPE_EQ] = ACTIONS(7749), + [anon_sym_LT_EQ_GT] = ACTIONS(7749), + [anon_sym_or] = ACTIONS(7749), + [anon_sym_and] = ACTIONS(7749), + [anon_sym_bitor] = ACTIONS(7749), + [anon_sym_xor] = ACTIONS(7749), + [anon_sym_bitand] = ACTIONS(7749), + [anon_sym_not_eq] = ACTIONS(7749), + [anon_sym_DASH_DASH] = ACTIONS(7749), + [anon_sym_PLUS_PLUS] = ACTIONS(7749), + [anon_sym_DOT] = ACTIONS(7747), + [anon_sym_DOT_STAR] = ACTIONS(7749), + [anon_sym_DASH_GT] = ACTIONS(7747), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7749), + [anon_sym_override] = ACTIONS(7749), + [anon_sym_requires] = ACTIONS(7749), + [anon_sym_DASH_GT_STAR] = ACTIONS(7749), }, - [STATE(3622)] = { - [sym_decltype_auto] = STATE(4306), - [sym_template_argument_list] = STATE(3968), - [aux_sym_sized_type_specifier_repeat1] = STATE(3914), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5258), - [anon_sym_COMMA] = ACTIONS(5258), - [anon_sym_LPAREN2] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5251), - [anon_sym_PLUS] = ACTIONS(5251), - [anon_sym_STAR] = ACTIONS(5258), - [anon_sym_SLASH] = ACTIONS(5251), - [anon_sym_PERCENT] = ACTIONS(5258), - [anon_sym_PIPE_PIPE] = ACTIONS(5258), - [anon_sym_AMP_AMP] = ACTIONS(5258), - [anon_sym_PIPE] = ACTIONS(5251), - [anon_sym_CARET] = ACTIONS(5258), - [anon_sym_AMP] = ACTIONS(5251), - [anon_sym_EQ_EQ] = ACTIONS(5258), - [anon_sym_BANG_EQ] = ACTIONS(5258), - [anon_sym_GT] = ACTIONS(5251), - [anon_sym_GT_EQ] = ACTIONS(5251), - [anon_sym_LT_EQ] = ACTIONS(5251), - [anon_sym_LT] = ACTIONS(9187), - [anon_sym_LT_LT] = ACTIONS(5258), - [anon_sym_GT_GT] = ACTIONS(5251), - [anon_sym___extension__] = ACTIONS(5258), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5258), - [anon_sym_signed] = ACTIONS(6688), - [anon_sym_unsigned] = ACTIONS(6688), - [anon_sym_long] = ACTIONS(6688), - [anon_sym_short] = ACTIONS(6688), - [anon_sym_LBRACK] = ACTIONS(5258), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5258), - [anon_sym_volatile] = ACTIONS(5258), - [anon_sym_restrict] = ACTIONS(5258), - [anon_sym___restrict__] = ACTIONS(5258), - [anon_sym__Atomic] = ACTIONS(5258), - [anon_sym__Noreturn] = ACTIONS(5258), - [anon_sym_noreturn] = ACTIONS(5258), - [anon_sym__Nonnull] = ACTIONS(5258), - [anon_sym_mutable] = ACTIONS(5258), - [anon_sym_constinit] = ACTIONS(5258), - [anon_sym_consteval] = ACTIONS(5258), - [anon_sym_alignas] = ACTIONS(5258), - [anon_sym__Alignas] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5258), - [anon_sym_LT_EQ_GT] = ACTIONS(5258), - [anon_sym_or] = ACTIONS(5258), - [anon_sym_and] = ACTIONS(5258), - [anon_sym_bitor] = ACTIONS(5258), - [anon_sym_xor] = ACTIONS(5258), - [anon_sym_bitand] = ACTIONS(5258), - [anon_sym_not_eq] = ACTIONS(5258), - [anon_sym_DASH_DASH] = ACTIONS(5258), - [anon_sym_PLUS_PLUS] = ACTIONS(5258), - [anon_sym_DOT] = ACTIONS(5251), - [anon_sym_DOT_STAR] = ACTIONS(5258), - [anon_sym_DASH_GT] = ACTIONS(5258), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6696), - [anon_sym_decltype] = ACTIONS(6698), - [anon_sym_final] = ACTIONS(5258), - [anon_sym_override] = ACTIONS(5258), - [anon_sym_GT2] = ACTIONS(5258), - [anon_sym_requires] = ACTIONS(5258), + [STATE(3116)] = { + [sym_identifier] = ACTIONS(7599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7601), + [anon_sym_COMMA] = ACTIONS(7601), + [anon_sym_RPAREN] = ACTIONS(7601), + [anon_sym_LPAREN2] = ACTIONS(7601), + [anon_sym_DASH] = ACTIONS(7599), + [anon_sym_PLUS] = ACTIONS(7599), + [anon_sym_STAR] = ACTIONS(7601), + [anon_sym_SLASH] = ACTIONS(7599), + [anon_sym_PERCENT] = ACTIONS(7601), + [anon_sym_PIPE_PIPE] = ACTIONS(7601), + [anon_sym_AMP_AMP] = ACTIONS(7601), + [anon_sym_PIPE] = ACTIONS(7599), + [anon_sym_CARET] = ACTIONS(7601), + [anon_sym_AMP] = ACTIONS(7599), + [anon_sym_EQ_EQ] = ACTIONS(7601), + [anon_sym_BANG_EQ] = ACTIONS(7601), + [anon_sym_GT] = ACTIONS(7599), + [anon_sym_GT_EQ] = ACTIONS(7601), + [anon_sym_LT_EQ] = ACTIONS(7599), + [anon_sym_LT] = ACTIONS(7599), + [anon_sym_LT_LT] = ACTIONS(7601), + [anon_sym_GT_GT] = ACTIONS(7601), + [anon_sym_SEMI] = ACTIONS(7601), + [anon_sym___extension__] = ACTIONS(7599), + [anon_sym___attribute__] = ACTIONS(7599), + [anon_sym___attribute] = ACTIONS(7599), + [anon_sym_COLON] = ACTIONS(7599), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7601), + [anon_sym___based] = ACTIONS(7599), + [anon_sym_LBRACE] = ACTIONS(7601), + [anon_sym_RBRACE] = ACTIONS(7601), + [anon_sym_signed] = ACTIONS(7599), + [anon_sym_unsigned] = ACTIONS(7599), + [anon_sym_long] = ACTIONS(7599), + [anon_sym_short] = ACTIONS(7599), + [anon_sym_LBRACK] = ACTIONS(7601), + [anon_sym_const] = ACTIONS(7599), + [anon_sym_constexpr] = ACTIONS(7599), + [anon_sym_volatile] = ACTIONS(7599), + [anon_sym_restrict] = ACTIONS(7599), + [anon_sym___restrict__] = ACTIONS(7599), + [anon_sym__Atomic] = ACTIONS(7599), + [anon_sym__Noreturn] = ACTIONS(7599), + [anon_sym_noreturn] = ACTIONS(7599), + [anon_sym__Nonnull] = ACTIONS(7599), + [anon_sym_mutable] = ACTIONS(7599), + [anon_sym_constinit] = ACTIONS(7599), + [anon_sym_consteval] = ACTIONS(7599), + [anon_sym_alignas] = ACTIONS(7599), + [anon_sym__Alignas] = ACTIONS(7599), + [sym_primitive_type] = ACTIONS(7599), + [anon_sym_QMARK] = ACTIONS(7601), + [anon_sym_LT_EQ_GT] = ACTIONS(7601), + [anon_sym_or] = ACTIONS(7599), + [anon_sym_and] = ACTIONS(7599), + [anon_sym_bitor] = ACTIONS(7599), + [anon_sym_xor] = ACTIONS(7599), + [anon_sym_bitand] = ACTIONS(7599), + [anon_sym_not_eq] = ACTIONS(7599), + [anon_sym_DASH_DASH] = ACTIONS(7601), + [anon_sym_PLUS_PLUS] = ACTIONS(7601), + [anon_sym_DOT] = ACTIONS(7599), + [anon_sym_DOT_STAR] = ACTIONS(7601), + [anon_sym_DASH_GT] = ACTIONS(7601), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7599), + [anon_sym_override] = ACTIONS(7599), + [anon_sym_requires] = ACTIONS(7599), + [anon_sym_COLON_RBRACK] = ACTIONS(7601), }, - [STATE(3623)] = { - [sym_decltype_auto] = STATE(3030), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6800), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6800), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6800), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6800), - [anon_sym_GT_GT] = ACTIONS(6800), - [anon_sym_SEMI] = ACTIONS(6800), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym___attribute__] = ACTIONS(6800), - [anon_sym___attribute] = ACTIONS(6798), - [anon_sym_COLON] = ACTIONS(6798), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6800), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_RBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6800), - [anon_sym_and] = ACTIONS(6800), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6800), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(9076), - [anon_sym_decltype] = ACTIONS(6507), - [anon_sym_final] = ACTIONS(6800), - [anon_sym_override] = ACTIONS(6800), - [anon_sym_requires] = ACTIONS(6800), - [anon_sym_COLON_RBRACK] = ACTIONS(6800), + [STATE(3117)] = { + [sym_identifier] = ACTIONS(7603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7605), + [anon_sym_COMMA] = ACTIONS(7605), + [anon_sym_RPAREN] = ACTIONS(7605), + [anon_sym_LPAREN2] = ACTIONS(7605), + [anon_sym_DASH] = ACTIONS(7603), + [anon_sym_PLUS] = ACTIONS(7603), + [anon_sym_STAR] = ACTIONS(7605), + [anon_sym_SLASH] = ACTIONS(7603), + [anon_sym_PERCENT] = ACTIONS(7605), + [anon_sym_PIPE_PIPE] = ACTIONS(7605), + [anon_sym_AMP_AMP] = ACTIONS(7605), + [anon_sym_PIPE] = ACTIONS(7603), + [anon_sym_CARET] = ACTIONS(7605), + [anon_sym_AMP] = ACTIONS(7603), + [anon_sym_EQ_EQ] = ACTIONS(7605), + [anon_sym_BANG_EQ] = ACTIONS(7605), + [anon_sym_GT] = ACTIONS(7603), + [anon_sym_GT_EQ] = ACTIONS(7605), + [anon_sym_LT_EQ] = ACTIONS(7603), + [anon_sym_LT] = ACTIONS(7603), + [anon_sym_LT_LT] = ACTIONS(7605), + [anon_sym_GT_GT] = ACTIONS(7605), + [anon_sym_SEMI] = ACTIONS(7605), + [anon_sym___extension__] = ACTIONS(7603), + [anon_sym___attribute__] = ACTIONS(7603), + [anon_sym___attribute] = ACTIONS(7603), + [anon_sym_COLON] = ACTIONS(7603), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7605), + [anon_sym___based] = ACTIONS(7603), + [anon_sym_LBRACE] = ACTIONS(7605), + [anon_sym_RBRACE] = ACTIONS(7605), + [anon_sym_signed] = ACTIONS(7603), + [anon_sym_unsigned] = ACTIONS(7603), + [anon_sym_long] = ACTIONS(7603), + [anon_sym_short] = ACTIONS(7603), + [anon_sym_LBRACK] = ACTIONS(7605), + [anon_sym_const] = ACTIONS(7603), + [anon_sym_constexpr] = ACTIONS(7603), + [anon_sym_volatile] = ACTIONS(7603), + [anon_sym_restrict] = ACTIONS(7603), + [anon_sym___restrict__] = ACTIONS(7603), + [anon_sym__Atomic] = ACTIONS(7603), + [anon_sym__Noreturn] = ACTIONS(7603), + [anon_sym_noreturn] = ACTIONS(7603), + [anon_sym__Nonnull] = ACTIONS(7603), + [anon_sym_mutable] = ACTIONS(7603), + [anon_sym_constinit] = ACTIONS(7603), + [anon_sym_consteval] = ACTIONS(7603), + [anon_sym_alignas] = ACTIONS(7603), + [anon_sym__Alignas] = ACTIONS(7603), + [sym_primitive_type] = ACTIONS(7603), + [anon_sym_QMARK] = ACTIONS(7605), + [anon_sym_LT_EQ_GT] = ACTIONS(7605), + [anon_sym_or] = ACTIONS(7603), + [anon_sym_and] = ACTIONS(7603), + [anon_sym_bitor] = ACTIONS(7603), + [anon_sym_xor] = ACTIONS(7603), + [anon_sym_bitand] = ACTIONS(7603), + [anon_sym_not_eq] = ACTIONS(7603), + [anon_sym_DASH_DASH] = ACTIONS(7605), + [anon_sym_PLUS_PLUS] = ACTIONS(7605), + [anon_sym_DOT] = ACTIONS(7603), + [anon_sym_DOT_STAR] = ACTIONS(7605), + [anon_sym_DASH_GT] = ACTIONS(7605), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7603), + [anon_sym_override] = ACTIONS(7603), + [anon_sym_requires] = ACTIONS(7603), + [anon_sym_COLON_RBRACK] = ACTIONS(7605), }, - [STATE(3624)] = { - [sym_identifier] = ACTIONS(7185), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7183), - [anon_sym_COMMA] = ACTIONS(7183), - [aux_sym_preproc_if_token2] = ACTIONS(7183), - [aux_sym_preproc_else_token1] = ACTIONS(7183), - [aux_sym_preproc_elif_token1] = ACTIONS(7185), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7183), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7183), - [anon_sym_LPAREN2] = ACTIONS(7183), - [anon_sym_DASH] = ACTIONS(7185), - [anon_sym_PLUS] = ACTIONS(7185), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_SLASH] = ACTIONS(7185), - [anon_sym_PERCENT] = ACTIONS(7183), - [anon_sym_PIPE_PIPE] = ACTIONS(7183), - [anon_sym_AMP_AMP] = ACTIONS(7183), - [anon_sym_PIPE] = ACTIONS(7185), - [anon_sym_CARET] = ACTIONS(7183), - [anon_sym_AMP] = ACTIONS(7185), - [anon_sym_EQ_EQ] = ACTIONS(7183), - [anon_sym_BANG_EQ] = ACTIONS(7183), - [anon_sym_GT] = ACTIONS(7185), - [anon_sym_GT_EQ] = ACTIONS(7183), - [anon_sym_LT_EQ] = ACTIONS(7185), - [anon_sym_LT] = ACTIONS(7185), - [anon_sym_LT_LT] = ACTIONS(7183), - [anon_sym_GT_GT] = ACTIONS(7183), - [anon_sym___extension__] = ACTIONS(7185), - [anon_sym___attribute__] = ACTIONS(7185), - [anon_sym___attribute] = ACTIONS(7185), - [anon_sym_COLON] = ACTIONS(7185), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(7183), - [anon_sym_LBRACK] = ACTIONS(7183), - [anon_sym_RBRACK] = ACTIONS(7183), - [anon_sym_const] = ACTIONS(7185), - [anon_sym_constexpr] = ACTIONS(7185), - [anon_sym_volatile] = ACTIONS(7185), - [anon_sym_restrict] = ACTIONS(7185), - [anon_sym___restrict__] = ACTIONS(7185), - [anon_sym__Atomic] = ACTIONS(7185), - [anon_sym__Noreturn] = ACTIONS(7185), - [anon_sym_noreturn] = ACTIONS(7185), - [anon_sym__Nonnull] = ACTIONS(7185), - [anon_sym_mutable] = ACTIONS(7185), - [anon_sym_constinit] = ACTIONS(7185), - [anon_sym_consteval] = ACTIONS(7185), - [anon_sym_alignas] = ACTIONS(7185), - [anon_sym__Alignas] = ACTIONS(7185), - [anon_sym_QMARK] = ACTIONS(7183), - [anon_sym_LT_EQ_GT] = ACTIONS(7183), - [anon_sym_or] = ACTIONS(7185), - [anon_sym_and] = ACTIONS(7185), - [anon_sym_bitor] = ACTIONS(7185), - [anon_sym_xor] = ACTIONS(7185), - [anon_sym_bitand] = ACTIONS(7185), - [anon_sym_not_eq] = ACTIONS(7185), - [anon_sym_DASH_DASH] = ACTIONS(7183), - [anon_sym_PLUS_PLUS] = ACTIONS(7183), - [anon_sym_DOT] = ACTIONS(7185), - [anon_sym_DOT_STAR] = ACTIONS(7183), - [anon_sym_DASH_GT] = ACTIONS(7183), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7185), - [anon_sym_override] = ACTIONS(7185), - [anon_sym_requires] = ACTIONS(7185), + [STATE(3118)] = { + [sym_identifier] = ACTIONS(3362), + [aux_sym_preproc_def_token1] = ACTIONS(3362), + [aux_sym_preproc_if_token1] = ACTIONS(3362), + [aux_sym_preproc_if_token2] = ACTIONS(3362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), + [sym_preproc_directive] = ACTIONS(3362), + [anon_sym_LPAREN2] = ACTIONS(3364), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_STAR] = ACTIONS(3364), + [anon_sym_AMP_AMP] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3362), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym___extension__] = ACTIONS(3362), + [anon_sym_typedef] = ACTIONS(3362), + [anon_sym_virtual] = ACTIONS(3362), + [anon_sym_extern] = ACTIONS(3362), + [anon_sym___attribute__] = ACTIONS(3362), + [anon_sym___attribute] = ACTIONS(3362), + [anon_sym_using] = ACTIONS(3362), + [anon_sym_COLON_COLON] = ACTIONS(3364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), + [anon_sym___declspec] = ACTIONS(3362), + [anon_sym___based] = ACTIONS(3362), + [anon_sym_signed] = ACTIONS(3362), + [anon_sym_unsigned] = ACTIONS(3362), + [anon_sym_long] = ACTIONS(3362), + [anon_sym_short] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_static] = ACTIONS(3362), + [anon_sym_register] = ACTIONS(3362), + [anon_sym_inline] = ACTIONS(3362), + [anon_sym___inline] = ACTIONS(3362), + [anon_sym___inline__] = ACTIONS(3362), + [anon_sym___forceinline] = ACTIONS(3362), + [anon_sym_thread_local] = ACTIONS(3362), + [anon_sym___thread] = ACTIONS(3362), + [anon_sym_const] = ACTIONS(3362), + [anon_sym_constexpr] = ACTIONS(3362), + [anon_sym_volatile] = ACTIONS(3362), + [anon_sym_restrict] = ACTIONS(3362), + [anon_sym___restrict__] = ACTIONS(3362), + [anon_sym__Atomic] = ACTIONS(3362), + [anon_sym__Noreturn] = ACTIONS(3362), + [anon_sym_noreturn] = ACTIONS(3362), + [anon_sym__Nonnull] = ACTIONS(3362), + [anon_sym_mutable] = ACTIONS(3362), + [anon_sym_constinit] = ACTIONS(3362), + [anon_sym_consteval] = ACTIONS(3362), + [anon_sym_alignas] = ACTIONS(3362), + [anon_sym__Alignas] = ACTIONS(3362), + [sym_primitive_type] = ACTIONS(3362), + [anon_sym_enum] = ACTIONS(3362), + [anon_sym_class] = ACTIONS(3362), + [anon_sym_struct] = ACTIONS(3362), + [anon_sym_union] = ACTIONS(3362), + [anon_sym_typename] = ACTIONS(3362), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3362), + [anon_sym_decltype] = ACTIONS(3362), + [anon_sym_explicit] = ACTIONS(3362), + [anon_sym_private] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(3362), + [anon_sym_operator] = ACTIONS(3362), + [anon_sym_friend] = ACTIONS(3362), + [anon_sym_public] = ACTIONS(3362), + [anon_sym_protected] = ACTIONS(3362), + [anon_sym_static_assert] = ACTIONS(3362), + [anon_sym_catch] = ACTIONS(3362), + [anon_sym_LBRACK_COLON] = ACTIONS(3364), }, - [STATE(3625)] = { - [sym_string_literal] = STATE(3610), - [sym_raw_string_literal] = STATE(3610), - [aux_sym_concatenated_string_repeat1] = STATE(3610), - [sym_identifier] = ACTIONS(9189), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8116), - [anon_sym_COMMA] = ACTIONS(8116), - [anon_sym_LPAREN2] = ACTIONS(8116), - [anon_sym_DASH] = ACTIONS(8118), - [anon_sym_PLUS] = ACTIONS(8118), - [anon_sym_STAR] = ACTIONS(8118), - [anon_sym_SLASH] = ACTIONS(8118), - [anon_sym_PERCENT] = ACTIONS(8118), - [anon_sym_PIPE_PIPE] = ACTIONS(8116), - [anon_sym_AMP_AMP] = ACTIONS(8116), - [anon_sym_PIPE] = ACTIONS(8118), - [anon_sym_CARET] = ACTIONS(8118), - [anon_sym_AMP] = ACTIONS(8118), - [anon_sym_EQ_EQ] = ACTIONS(8116), - [anon_sym_BANG_EQ] = ACTIONS(8116), - [anon_sym_GT] = ACTIONS(8118), - [anon_sym_GT_EQ] = ACTIONS(8118), - [anon_sym_LT_EQ] = ACTIONS(8118), - [anon_sym_LT] = ACTIONS(8118), - [anon_sym_LT_LT] = ACTIONS(8118), - [anon_sym_GT_GT] = ACTIONS(8118), - [anon_sym_LBRACK] = ACTIONS(8116), - [anon_sym_EQ] = ACTIONS(8118), - [anon_sym_QMARK] = ACTIONS(8116), - [anon_sym_STAR_EQ] = ACTIONS(8116), - [anon_sym_SLASH_EQ] = ACTIONS(8116), - [anon_sym_PERCENT_EQ] = ACTIONS(8116), - [anon_sym_PLUS_EQ] = ACTIONS(8116), - [anon_sym_DASH_EQ] = ACTIONS(8116), - [anon_sym_LT_LT_EQ] = ACTIONS(8116), - [anon_sym_GT_GT_EQ] = ACTIONS(8118), - [anon_sym_AMP_EQ] = ACTIONS(8116), - [anon_sym_CARET_EQ] = ACTIONS(8116), - [anon_sym_PIPE_EQ] = ACTIONS(8116), - [anon_sym_and_eq] = ACTIONS(8118), - [anon_sym_or_eq] = ACTIONS(8118), - [anon_sym_xor_eq] = ACTIONS(8118), - [anon_sym_LT_EQ_GT] = ACTIONS(8116), - [anon_sym_or] = ACTIONS(8118), - [anon_sym_and] = ACTIONS(8118), - [anon_sym_bitor] = ACTIONS(8118), - [anon_sym_xor] = ACTIONS(8118), - [anon_sym_bitand] = ACTIONS(8118), - [anon_sym_not_eq] = ACTIONS(8118), - [anon_sym_DASH_DASH] = ACTIONS(8116), - [anon_sym_PLUS_PLUS] = ACTIONS(8116), - [anon_sym_DOT] = ACTIONS(8118), - [anon_sym_DOT_STAR] = ACTIONS(8116), - [anon_sym_DASH_GT] = ACTIONS(8116), - [anon_sym_L_DQUOTE] = ACTIONS(6640), - [anon_sym_u_DQUOTE] = ACTIONS(6640), - [anon_sym_U_DQUOTE] = ACTIONS(6640), - [anon_sym_u8_DQUOTE] = ACTIONS(6640), - [anon_sym_DQUOTE] = ACTIONS(6640), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(8116), - [anon_sym_R_DQUOTE] = ACTIONS(6646), - [anon_sym_LR_DQUOTE] = ACTIONS(6646), - [anon_sym_uR_DQUOTE] = ACTIONS(6646), - [anon_sym_UR_DQUOTE] = ACTIONS(6646), - [anon_sym_u8R_DQUOTE] = ACTIONS(6646), - [sym_literal_suffix] = ACTIONS(8118), + [STATE(3119)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7769), + [anon_sym_COMMA] = ACTIONS(7769), + [anon_sym_LPAREN2] = ACTIONS(7769), + [anon_sym_DASH] = ACTIONS(7767), + [anon_sym_PLUS] = ACTIONS(7767), + [anon_sym_STAR] = ACTIONS(7767), + [anon_sym_SLASH] = ACTIONS(7767), + [anon_sym_PERCENT] = ACTIONS(7767), + [anon_sym_PIPE_PIPE] = ACTIONS(7769), + [anon_sym_AMP_AMP] = ACTIONS(7769), + [anon_sym_PIPE] = ACTIONS(7767), + [anon_sym_CARET] = ACTIONS(7767), + [anon_sym_AMP] = ACTIONS(7767), + [anon_sym_EQ_EQ] = ACTIONS(7769), + [anon_sym_BANG_EQ] = ACTIONS(7769), + [anon_sym_GT] = ACTIONS(7767), + [anon_sym_GT_EQ] = ACTIONS(7769), + [anon_sym_LT_EQ] = ACTIONS(7767), + [anon_sym_LT] = ACTIONS(7767), + [anon_sym_LT_LT] = ACTIONS(7767), + [anon_sym_GT_GT] = ACTIONS(7767), + [anon_sym___extension__] = ACTIONS(7769), + [anon_sym_LBRACE] = ACTIONS(7769), + [anon_sym_LBRACK] = ACTIONS(7769), + [anon_sym_RBRACK] = ACTIONS(7769), + [anon_sym_EQ] = ACTIONS(7767), + [anon_sym_const] = ACTIONS(7767), + [anon_sym_constexpr] = ACTIONS(7769), + [anon_sym_volatile] = ACTIONS(7769), + [anon_sym_restrict] = ACTIONS(7769), + [anon_sym___restrict__] = ACTIONS(7769), + [anon_sym__Atomic] = ACTIONS(7769), + [anon_sym__Noreturn] = ACTIONS(7769), + [anon_sym_noreturn] = ACTIONS(7769), + [anon_sym__Nonnull] = ACTIONS(7769), + [anon_sym_mutable] = ACTIONS(7769), + [anon_sym_constinit] = ACTIONS(7769), + [anon_sym_consteval] = ACTIONS(7769), + [anon_sym_alignas] = ACTIONS(7769), + [anon_sym__Alignas] = ACTIONS(7769), + [anon_sym_QMARK] = ACTIONS(7769), + [anon_sym_STAR_EQ] = ACTIONS(7769), + [anon_sym_SLASH_EQ] = ACTIONS(7769), + [anon_sym_PERCENT_EQ] = ACTIONS(7769), + [anon_sym_PLUS_EQ] = ACTIONS(7769), + [anon_sym_DASH_EQ] = ACTIONS(7769), + [anon_sym_LT_LT_EQ] = ACTIONS(7769), + [anon_sym_GT_GT_EQ] = ACTIONS(7769), + [anon_sym_AMP_EQ] = ACTIONS(7769), + [anon_sym_CARET_EQ] = ACTIONS(7769), + [anon_sym_PIPE_EQ] = ACTIONS(7769), + [anon_sym_and_eq] = ACTIONS(7769), + [anon_sym_or_eq] = ACTIONS(7769), + [anon_sym_xor_eq] = ACTIONS(7769), + [anon_sym_LT_EQ_GT] = ACTIONS(7769), + [anon_sym_or] = ACTIONS(7767), + [anon_sym_and] = ACTIONS(7767), + [anon_sym_bitor] = ACTIONS(7769), + [anon_sym_xor] = ACTIONS(7767), + [anon_sym_bitand] = ACTIONS(7769), + [anon_sym_not_eq] = ACTIONS(7769), + [anon_sym_DASH_DASH] = ACTIONS(7769), + [anon_sym_PLUS_PLUS] = ACTIONS(7769), + [anon_sym_DOT] = ACTIONS(7767), + [anon_sym_DOT_STAR] = ACTIONS(7769), + [anon_sym_DASH_GT] = ACTIONS(7769), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7769), + [anon_sym_override] = ACTIONS(7769), + [anon_sym_requires] = ACTIONS(7769), }, - [STATE(3626)] = { - [sym_template_argument_list] = STATE(2824), - [sym_identifier] = ACTIONS(7031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5272), - [anon_sym_COMMA] = ACTIONS(5272), - [aux_sym_preproc_if_token2] = ACTIONS(5272), - [aux_sym_preproc_else_token1] = ACTIONS(5272), - [aux_sym_preproc_elif_token1] = ACTIONS(7031), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5272), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5272), - [anon_sym_LPAREN2] = ACTIONS(5272), - [anon_sym_DASH] = ACTIONS(7031), - [anon_sym_PLUS] = ACTIONS(7031), - [anon_sym_STAR] = ACTIONS(5272), - [anon_sym_SLASH] = ACTIONS(7031), - [anon_sym_PERCENT] = ACTIONS(5272), - [anon_sym_PIPE_PIPE] = ACTIONS(5272), - [anon_sym_AMP_AMP] = ACTIONS(5272), - [anon_sym_PIPE] = ACTIONS(7031), - [anon_sym_CARET] = ACTIONS(5272), - [anon_sym_AMP] = ACTIONS(7031), - [anon_sym_EQ_EQ] = ACTIONS(5272), - [anon_sym_BANG_EQ] = ACTIONS(5272), - [anon_sym_GT] = ACTIONS(7031), - [anon_sym_GT_EQ] = ACTIONS(5272), - [anon_sym_LT_EQ] = ACTIONS(7031), - [anon_sym_LT] = ACTIONS(8526), - [anon_sym_LT_LT] = ACTIONS(5272), - [anon_sym_GT_GT] = ACTIONS(5272), - [anon_sym___extension__] = ACTIONS(7031), - [anon_sym___attribute__] = ACTIONS(7031), - [anon_sym___attribute] = ACTIONS(7031), - [anon_sym_COLON] = ACTIONS(7031), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5272), - [anon_sym_const] = ACTIONS(7031), - [anon_sym_constexpr] = ACTIONS(7031), - [anon_sym_volatile] = ACTIONS(7031), - [anon_sym_restrict] = ACTIONS(7031), - [anon_sym___restrict__] = ACTIONS(7031), - [anon_sym__Atomic] = ACTIONS(7031), - [anon_sym__Noreturn] = ACTIONS(7031), - [anon_sym_noreturn] = ACTIONS(7031), - [anon_sym__Nonnull] = ACTIONS(7031), - [anon_sym_mutable] = ACTIONS(7031), - [anon_sym_constinit] = ACTIONS(7031), - [anon_sym_consteval] = ACTIONS(7031), - [anon_sym_alignas] = ACTIONS(7031), - [anon_sym__Alignas] = ACTIONS(7031), - [anon_sym_QMARK] = ACTIONS(5272), - [anon_sym_LT_EQ_GT] = ACTIONS(5272), - [anon_sym_or] = ACTIONS(7031), - [anon_sym_and] = ACTIONS(7031), - [anon_sym_bitor] = ACTIONS(7031), - [anon_sym_xor] = ACTIONS(7031), - [anon_sym_bitand] = ACTIONS(7031), - [anon_sym_not_eq] = ACTIONS(7031), - [anon_sym_DASH_DASH] = ACTIONS(5272), - [anon_sym_PLUS_PLUS] = ACTIONS(5272), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_DOT_STAR] = ACTIONS(5272), - [anon_sym_DASH_GT] = ACTIONS(5272), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7031), - [anon_sym_override] = ACTIONS(7031), - [anon_sym_requires] = ACTIONS(7031), + [STATE(3120)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7587), + [anon_sym_COMMA] = ACTIONS(7587), + [anon_sym_RPAREN] = ACTIONS(7587), + [anon_sym_LPAREN2] = ACTIONS(7587), + [anon_sym_DASH] = ACTIONS(7585), + [anon_sym_PLUS] = ACTIONS(7585), + [anon_sym_STAR] = ACTIONS(7585), + [anon_sym_SLASH] = ACTIONS(7585), + [anon_sym_PERCENT] = ACTIONS(7585), + [anon_sym_PIPE_PIPE] = ACTIONS(7587), + [anon_sym_AMP_AMP] = ACTIONS(7587), + [anon_sym_PIPE] = ACTIONS(7585), + [anon_sym_CARET] = ACTIONS(7585), + [anon_sym_AMP] = ACTIONS(7585), + [anon_sym_EQ_EQ] = ACTIONS(7587), + [anon_sym_BANG_EQ] = ACTIONS(7587), + [anon_sym_GT] = ACTIONS(7585), + [anon_sym_GT_EQ] = ACTIONS(7587), + [anon_sym_LT_EQ] = ACTIONS(7585), + [anon_sym_LT] = ACTIONS(7585), + [anon_sym_LT_LT] = ACTIONS(7585), + [anon_sym_GT_GT] = ACTIONS(7585), + [anon_sym___extension__] = ACTIONS(7587), + [anon_sym___attribute__] = ACTIONS(7587), + [anon_sym___attribute] = ACTIONS(7585), + [anon_sym_LBRACE] = ACTIONS(7587), + [anon_sym_LBRACK] = ACTIONS(7587), + [anon_sym_EQ] = ACTIONS(7585), + [anon_sym_const] = ACTIONS(7585), + [anon_sym_constexpr] = ACTIONS(7587), + [anon_sym_volatile] = ACTIONS(7587), + [anon_sym_restrict] = ACTIONS(7587), + [anon_sym___restrict__] = ACTIONS(7587), + [anon_sym__Atomic] = ACTIONS(7587), + [anon_sym__Noreturn] = ACTIONS(7587), + [anon_sym_noreturn] = ACTIONS(7587), + [anon_sym__Nonnull] = ACTIONS(7587), + [anon_sym_mutable] = ACTIONS(7587), + [anon_sym_constinit] = ACTIONS(7587), + [anon_sym_consteval] = ACTIONS(7587), + [anon_sym_alignas] = ACTIONS(7587), + [anon_sym__Alignas] = ACTIONS(7587), + [anon_sym_QMARK] = ACTIONS(7587), + [anon_sym_STAR_EQ] = ACTIONS(7587), + [anon_sym_SLASH_EQ] = ACTIONS(7587), + [anon_sym_PERCENT_EQ] = ACTIONS(7587), + [anon_sym_PLUS_EQ] = ACTIONS(7587), + [anon_sym_DASH_EQ] = ACTIONS(7587), + [anon_sym_LT_LT_EQ] = ACTIONS(7587), + [anon_sym_GT_GT_EQ] = ACTIONS(7587), + [anon_sym_AMP_EQ] = ACTIONS(7587), + [anon_sym_CARET_EQ] = ACTIONS(7587), + [anon_sym_PIPE_EQ] = ACTIONS(7587), + [anon_sym_LT_EQ_GT] = ACTIONS(7587), + [anon_sym_or] = ACTIONS(7587), + [anon_sym_and] = ACTIONS(7587), + [anon_sym_bitor] = ACTIONS(7587), + [anon_sym_xor] = ACTIONS(7587), + [anon_sym_bitand] = ACTIONS(7587), + [anon_sym_not_eq] = ACTIONS(7587), + [anon_sym_DASH_DASH] = ACTIONS(7587), + [anon_sym_PLUS_PLUS] = ACTIONS(7587), + [anon_sym_DOT] = ACTIONS(7585), + [anon_sym_DOT_STAR] = ACTIONS(7587), + [anon_sym_DASH_GT] = ACTIONS(7585), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7587), + [anon_sym_override] = ACTIONS(7587), + [anon_sym_requires] = ACTIONS(7587), + [anon_sym_DASH_GT_STAR] = ACTIONS(7587), }, - [STATE(3627)] = { - [sym_decltype_auto] = STATE(3963), - [sym_identifier] = ACTIONS(6798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [aux_sym_preproc_if_token2] = ACTIONS(6800), - [aux_sym_preproc_else_token1] = ACTIONS(6800), - [aux_sym_preproc_elif_token1] = ACTIONS(6798), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6800), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6800), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6800), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6800), - [anon_sym_GT_GT] = ACTIONS(6800), - [anon_sym___extension__] = ACTIONS(6798), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_RBRACK] = ACTIONS(6800), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6798), - [anon_sym_volatile] = ACTIONS(6798), - [anon_sym_restrict] = ACTIONS(6798), - [anon_sym___restrict__] = ACTIONS(6798), - [anon_sym__Atomic] = ACTIONS(6798), - [anon_sym__Noreturn] = ACTIONS(6798), - [anon_sym_noreturn] = ACTIONS(6798), - [anon_sym__Nonnull] = ACTIONS(6798), - [anon_sym_mutable] = ACTIONS(6798), - [anon_sym_constinit] = ACTIONS(6798), - [anon_sym_consteval] = ACTIONS(6798), - [anon_sym_alignas] = ACTIONS(6798), - [anon_sym__Alignas] = ACTIONS(6798), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6798), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6798), - [anon_sym_not_eq] = ACTIONS(6798), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(9191), - [anon_sym_decltype] = ACTIONS(6451), - [anon_sym_final] = ACTIONS(6798), - [anon_sym_override] = ACTIONS(6798), - [anon_sym_requires] = ACTIONS(6798), + [STATE(3121)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7625), + [anon_sym_COMMA] = ACTIONS(7625), + [anon_sym_LPAREN2] = ACTIONS(7625), + [anon_sym_DASH] = ACTIONS(7623), + [anon_sym_PLUS] = ACTIONS(7623), + [anon_sym_STAR] = ACTIONS(7623), + [anon_sym_SLASH] = ACTIONS(7623), + [anon_sym_PERCENT] = ACTIONS(7623), + [anon_sym_PIPE_PIPE] = ACTIONS(7625), + [anon_sym_AMP_AMP] = ACTIONS(7625), + [anon_sym_PIPE] = ACTIONS(7623), + [anon_sym_CARET] = ACTIONS(7623), + [anon_sym_AMP] = ACTIONS(7623), + [anon_sym_EQ_EQ] = ACTIONS(7625), + [anon_sym_BANG_EQ] = ACTIONS(7625), + [anon_sym_GT] = ACTIONS(7623), + [anon_sym_GT_EQ] = ACTIONS(7625), + [anon_sym_LT_EQ] = ACTIONS(7623), + [anon_sym_LT] = ACTIONS(7623), + [anon_sym_LT_LT] = ACTIONS(7623), + [anon_sym_GT_GT] = ACTIONS(7623), + [anon_sym___extension__] = ACTIONS(7625), + [anon_sym_LBRACE] = ACTIONS(7625), + [anon_sym_LBRACK] = ACTIONS(7625), + [anon_sym_RBRACK] = ACTIONS(7625), + [anon_sym_EQ] = ACTIONS(7623), + [anon_sym_const] = ACTIONS(7623), + [anon_sym_constexpr] = ACTIONS(7625), + [anon_sym_volatile] = ACTIONS(7625), + [anon_sym_restrict] = ACTIONS(7625), + [anon_sym___restrict__] = ACTIONS(7625), + [anon_sym__Atomic] = ACTIONS(7625), + [anon_sym__Noreturn] = ACTIONS(7625), + [anon_sym_noreturn] = ACTIONS(7625), + [anon_sym__Nonnull] = ACTIONS(7625), + [anon_sym_mutable] = ACTIONS(7625), + [anon_sym_constinit] = ACTIONS(7625), + [anon_sym_consteval] = ACTIONS(7625), + [anon_sym_alignas] = ACTIONS(7625), + [anon_sym__Alignas] = ACTIONS(7625), + [anon_sym_QMARK] = ACTIONS(7625), + [anon_sym_STAR_EQ] = ACTIONS(7625), + [anon_sym_SLASH_EQ] = ACTIONS(7625), + [anon_sym_PERCENT_EQ] = ACTIONS(7625), + [anon_sym_PLUS_EQ] = ACTIONS(7625), + [anon_sym_DASH_EQ] = ACTIONS(7625), + [anon_sym_LT_LT_EQ] = ACTIONS(7625), + [anon_sym_GT_GT_EQ] = ACTIONS(7625), + [anon_sym_AMP_EQ] = ACTIONS(7625), + [anon_sym_CARET_EQ] = ACTIONS(7625), + [anon_sym_PIPE_EQ] = ACTIONS(7625), + [anon_sym_and_eq] = ACTIONS(7625), + [anon_sym_or_eq] = ACTIONS(7625), + [anon_sym_xor_eq] = ACTIONS(7625), + [anon_sym_LT_EQ_GT] = ACTIONS(7625), + [anon_sym_or] = ACTIONS(7623), + [anon_sym_and] = ACTIONS(7623), + [anon_sym_bitor] = ACTIONS(7625), + [anon_sym_xor] = ACTIONS(7623), + [anon_sym_bitand] = ACTIONS(7625), + [anon_sym_not_eq] = ACTIONS(7625), + [anon_sym_DASH_DASH] = ACTIONS(7625), + [anon_sym_PLUS_PLUS] = ACTIONS(7625), + [anon_sym_DOT] = ACTIONS(7623), + [anon_sym_DOT_STAR] = ACTIONS(7625), + [anon_sym_DASH_GT] = ACTIONS(7625), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_override] = ACTIONS(7625), + [anon_sym_requires] = ACTIONS(7625), }, - [STATE(3628)] = { - [sym__abstract_declarator] = STATE(6368), - [sym_abstract_parenthesized_declarator] = STATE(6488), - [sym_abstract_pointer_declarator] = STATE(6488), - [sym_abstract_function_declarator] = STATE(6488), - [sym_abstract_array_declarator] = STATE(6488), - [sym_type_qualifier] = STATE(3553), - [sym_alignas_qualifier] = STATE(3785), - [sym_parameter_list] = STATE(2153), - [sym_abstract_reference_declarator] = STATE(6488), - [sym__function_declarator_seq] = STATE(6497), - [aux_sym__type_definition_type_repeat1] = STATE(3553), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), - [anon_sym_COMMA] = ACTIONS(6995), - [anon_sym_LPAREN2] = ACTIONS(8224), - [anon_sym_DASH] = ACTIONS(6997), - [anon_sym_PLUS] = ACTIONS(6997), - [anon_sym_STAR] = ACTIONS(8226), - [anon_sym_SLASH] = ACTIONS(6997), - [anon_sym_PERCENT] = ACTIONS(6995), - [anon_sym_PIPE_PIPE] = ACTIONS(6995), - [anon_sym_AMP_AMP] = ACTIONS(8228), - [anon_sym_PIPE] = ACTIONS(6997), - [anon_sym_CARET] = ACTIONS(6995), - [anon_sym_AMP] = ACTIONS(8230), - [anon_sym_EQ_EQ] = ACTIONS(6995), - [anon_sym_BANG_EQ] = ACTIONS(6995), - [anon_sym_GT] = ACTIONS(6997), - [anon_sym_GT_EQ] = ACTIONS(6997), - [anon_sym_LT_EQ] = ACTIONS(6997), - [anon_sym_LT] = ACTIONS(6997), - [anon_sym_LT_LT] = ACTIONS(6995), - [anon_sym_GT_GT] = ACTIONS(6997), - [anon_sym___extension__] = ACTIONS(8232), - [anon_sym_LBRACK] = ACTIONS(8240), - [anon_sym_const] = ACTIONS(8242), - [anon_sym_constexpr] = ACTIONS(8232), - [anon_sym_volatile] = ACTIONS(8232), - [anon_sym_restrict] = ACTIONS(8232), - [anon_sym___restrict__] = ACTIONS(8232), - [anon_sym__Atomic] = ACTIONS(8232), - [anon_sym__Noreturn] = ACTIONS(8232), - [anon_sym_noreturn] = ACTIONS(8232), - [anon_sym__Nonnull] = ACTIONS(8232), - [anon_sym_mutable] = ACTIONS(8232), - [anon_sym_constinit] = ACTIONS(8232), - [anon_sym_consteval] = ACTIONS(8232), - [anon_sym_alignas] = ACTIONS(8244), - [anon_sym__Alignas] = ACTIONS(8244), - [anon_sym_QMARK] = ACTIONS(6995), - [anon_sym_LT_EQ_GT] = ACTIONS(6995), - [anon_sym_or] = ACTIONS(6995), - [anon_sym_and] = ACTIONS(6995), - [anon_sym_bitor] = ACTIONS(6995), - [anon_sym_xor] = ACTIONS(6995), - [anon_sym_bitand] = ACTIONS(6995), - [anon_sym_not_eq] = ACTIONS(6995), - [anon_sym_DASH_DASH] = ACTIONS(6995), - [anon_sym_PLUS_PLUS] = ACTIONS(6995), - [anon_sym_DOT] = ACTIONS(6997), - [anon_sym_DOT_STAR] = ACTIONS(6995), - [anon_sym_DASH_GT] = ACTIONS(6995), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6995), - [anon_sym_override] = ACTIONS(6995), - [anon_sym_GT2] = ACTIONS(6995), - [anon_sym_requires] = ACTIONS(6995), + [STATE(3122)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7609), + [anon_sym_COMMA] = ACTIONS(7609), + [anon_sym_LPAREN2] = ACTIONS(7609), + [anon_sym_DASH] = ACTIONS(7607), + [anon_sym_PLUS] = ACTIONS(7607), + [anon_sym_STAR] = ACTIONS(7607), + [anon_sym_SLASH] = ACTIONS(7607), + [anon_sym_PERCENT] = ACTIONS(7607), + [anon_sym_PIPE_PIPE] = ACTIONS(7609), + [anon_sym_AMP_AMP] = ACTIONS(7609), + [anon_sym_PIPE] = ACTIONS(7607), + [anon_sym_CARET] = ACTIONS(7607), + [anon_sym_AMP] = ACTIONS(7607), + [anon_sym_EQ_EQ] = ACTIONS(7609), + [anon_sym_BANG_EQ] = ACTIONS(7609), + [anon_sym_GT] = ACTIONS(7607), + [anon_sym_GT_EQ] = ACTIONS(7607), + [anon_sym_LT_EQ] = ACTIONS(7607), + [anon_sym_LT] = ACTIONS(7607), + [anon_sym_LT_LT] = ACTIONS(7607), + [anon_sym_GT_GT] = ACTIONS(7607), + [anon_sym___extension__] = ACTIONS(7609), + [anon_sym_LBRACE] = ACTIONS(7609), + [anon_sym_LBRACK] = ACTIONS(7609), + [anon_sym_EQ] = ACTIONS(7607), + [anon_sym_const] = ACTIONS(7607), + [anon_sym_constexpr] = ACTIONS(7609), + [anon_sym_volatile] = ACTIONS(7609), + [anon_sym_restrict] = ACTIONS(7609), + [anon_sym___restrict__] = ACTIONS(7609), + [anon_sym__Atomic] = ACTIONS(7609), + [anon_sym__Noreturn] = ACTIONS(7609), + [anon_sym_noreturn] = ACTIONS(7609), + [anon_sym__Nonnull] = ACTIONS(7609), + [anon_sym_mutable] = ACTIONS(7609), + [anon_sym_constinit] = ACTIONS(7609), + [anon_sym_consteval] = ACTIONS(7609), + [anon_sym_alignas] = ACTIONS(7609), + [anon_sym__Alignas] = ACTIONS(7609), + [anon_sym_QMARK] = ACTIONS(7609), + [anon_sym_STAR_EQ] = ACTIONS(7609), + [anon_sym_SLASH_EQ] = ACTIONS(7609), + [anon_sym_PERCENT_EQ] = ACTIONS(7609), + [anon_sym_PLUS_EQ] = ACTIONS(7609), + [anon_sym_DASH_EQ] = ACTIONS(7609), + [anon_sym_LT_LT_EQ] = ACTIONS(7609), + [anon_sym_GT_GT_EQ] = ACTIONS(7607), + [anon_sym_AMP_EQ] = ACTIONS(7609), + [anon_sym_CARET_EQ] = ACTIONS(7609), + [anon_sym_PIPE_EQ] = ACTIONS(7609), + [anon_sym_and_eq] = ACTIONS(7609), + [anon_sym_or_eq] = ACTIONS(7609), + [anon_sym_xor_eq] = ACTIONS(7609), + [anon_sym_LT_EQ_GT] = ACTIONS(7609), + [anon_sym_or] = ACTIONS(7607), + [anon_sym_and] = ACTIONS(7607), + [anon_sym_bitor] = ACTIONS(7609), + [anon_sym_xor] = ACTIONS(7607), + [anon_sym_bitand] = ACTIONS(7609), + [anon_sym_not_eq] = ACTIONS(7609), + [anon_sym_DASH_DASH] = ACTIONS(7609), + [anon_sym_PLUS_PLUS] = ACTIONS(7609), + [anon_sym_DOT] = ACTIONS(7607), + [anon_sym_DOT_STAR] = ACTIONS(7609), + [anon_sym_DASH_GT] = ACTIONS(7609), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7609), + [anon_sym_override] = ACTIONS(7609), + [anon_sym_GT2] = ACTIONS(7609), + [anon_sym_requires] = ACTIONS(7609), }, - [STATE(3629)] = { - [sym__abstract_declarator] = STATE(6372), - [sym_abstract_parenthesized_declarator] = STATE(6488), - [sym_abstract_pointer_declarator] = STATE(6488), - [sym_abstract_function_declarator] = STATE(6488), - [sym_abstract_array_declarator] = STATE(6488), - [sym_type_qualifier] = STATE(3631), - [sym_alignas_qualifier] = STATE(3785), - [sym_parameter_list] = STATE(2153), - [sym_abstract_reference_declarator] = STATE(6488), - [sym__function_declarator_seq] = STATE(6497), - [aux_sym__type_definition_type_repeat1] = STATE(3631), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), - [anon_sym_COMMA] = ACTIONS(6999), - [anon_sym_LPAREN2] = ACTIONS(8224), - [anon_sym_DASH] = ACTIONS(7001), - [anon_sym_PLUS] = ACTIONS(7001), - [anon_sym_STAR] = ACTIONS(8226), - [anon_sym_SLASH] = ACTIONS(7001), - [anon_sym_PERCENT] = ACTIONS(6999), - [anon_sym_PIPE_PIPE] = ACTIONS(6999), - [anon_sym_AMP_AMP] = ACTIONS(8228), - [anon_sym_PIPE] = ACTIONS(7001), - [anon_sym_CARET] = ACTIONS(6999), - [anon_sym_AMP] = ACTIONS(8230), - [anon_sym_EQ_EQ] = ACTIONS(6999), - [anon_sym_BANG_EQ] = ACTIONS(6999), - [anon_sym_GT] = ACTIONS(7001), - [anon_sym_GT_EQ] = ACTIONS(7001), - [anon_sym_LT_EQ] = ACTIONS(7001), - [anon_sym_LT] = ACTIONS(7001), - [anon_sym_LT_LT] = ACTIONS(6999), - [anon_sym_GT_GT] = ACTIONS(7001), - [anon_sym___extension__] = ACTIONS(8232), - [anon_sym_LBRACK] = ACTIONS(8240), - [anon_sym_const] = ACTIONS(8242), - [anon_sym_constexpr] = ACTIONS(8232), - [anon_sym_volatile] = ACTIONS(8232), - [anon_sym_restrict] = ACTIONS(8232), - [anon_sym___restrict__] = ACTIONS(8232), - [anon_sym__Atomic] = ACTIONS(8232), - [anon_sym__Noreturn] = ACTIONS(8232), - [anon_sym_noreturn] = ACTIONS(8232), - [anon_sym__Nonnull] = ACTIONS(8232), - [anon_sym_mutable] = ACTIONS(8232), - [anon_sym_constinit] = ACTIONS(8232), - [anon_sym_consteval] = ACTIONS(8232), - [anon_sym_alignas] = ACTIONS(8244), - [anon_sym__Alignas] = ACTIONS(8244), - [anon_sym_QMARK] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(6999), - [anon_sym_or] = ACTIONS(6999), - [anon_sym_and] = ACTIONS(6999), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(6999), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(6999), - [anon_sym_PLUS_PLUS] = ACTIONS(6999), - [anon_sym_DOT] = ACTIONS(7001), - [anon_sym_DOT_STAR] = ACTIONS(6999), - [anon_sym_DASH_GT] = ACTIONS(6999), + [STATE(3123)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7223), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7223), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6999), - [anon_sym_override] = ACTIONS(6999), - [anon_sym_GT2] = ACTIONS(6999), - [anon_sym_requires] = ACTIONS(6999), - }, - [STATE(3630)] = { - [sym__abstract_declarator] = STATE(6378), - [sym_abstract_parenthesized_declarator] = STATE(6488), - [sym_abstract_pointer_declarator] = STATE(6488), - [sym_abstract_function_declarator] = STATE(6488), - [sym_abstract_array_declarator] = STATE(6488), - [sym_type_qualifier] = STATE(3553), - [sym_alignas_qualifier] = STATE(3785), - [sym_parameter_list] = STATE(2153), - [sym_abstract_reference_declarator] = STATE(6488), - [sym__function_declarator_seq] = STATE(6497), - [aux_sym__type_definition_type_repeat1] = STATE(3553), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(8224), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(8226), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6497), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(8228), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6497), - [anon_sym_AMP] = ACTIONS(8230), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6495), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6497), - [anon_sym_GT_GT] = ACTIONS(6495), - [anon_sym___extension__] = ACTIONS(8232), - [anon_sym_LBRACK] = ACTIONS(8240), - [anon_sym_const] = ACTIONS(8242), - [anon_sym_constexpr] = ACTIONS(8232), - [anon_sym_volatile] = ACTIONS(8232), - [anon_sym_restrict] = ACTIONS(8232), - [anon_sym___restrict__] = ACTIONS(8232), - [anon_sym__Atomic] = ACTIONS(8232), - [anon_sym__Noreturn] = ACTIONS(8232), - [anon_sym_noreturn] = ACTIONS(8232), - [anon_sym__Nonnull] = ACTIONS(8232), - [anon_sym_mutable] = ACTIONS(8232), - [anon_sym_constinit] = ACTIONS(8232), - [anon_sym_consteval] = ACTIONS(8232), - [anon_sym_alignas] = ACTIONS(8244), - [anon_sym__Alignas] = ACTIONS(8244), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6497), - [anon_sym_and] = ACTIONS(6497), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6497), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6497), - [anon_sym_override] = ACTIONS(6497), - [anon_sym_GT2] = ACTIONS(6497), - [anon_sym_requires] = ACTIONS(6497), - }, - [STATE(3631)] = { - [sym__abstract_declarator] = STATE(6375), - [sym_abstract_parenthesized_declarator] = STATE(6488), - [sym_abstract_pointer_declarator] = STATE(6488), - [sym_abstract_function_declarator] = STATE(6488), - [sym_abstract_array_declarator] = STATE(6488), - [sym_type_qualifier] = STATE(3553), - [sym_alignas_qualifier] = STATE(3785), - [sym_parameter_list] = STATE(2153), - [sym_abstract_reference_declarator] = STATE(6488), - [sym__function_declarator_seq] = STATE(6497), - [aux_sym__type_definition_type_repeat1] = STATE(3553), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), - [anon_sym_COMMA] = ACTIONS(7003), - [anon_sym_LPAREN2] = ACTIONS(8224), - [anon_sym_DASH] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(8226), - [anon_sym_SLASH] = ACTIONS(7005), - [anon_sym_PERCENT] = ACTIONS(7003), - [anon_sym_PIPE_PIPE] = ACTIONS(7003), - [anon_sym_AMP_AMP] = ACTIONS(8228), - [anon_sym_PIPE] = ACTIONS(7005), - [anon_sym_CARET] = ACTIONS(7003), - [anon_sym_AMP] = ACTIONS(8230), - [anon_sym_EQ_EQ] = ACTIONS(7003), - [anon_sym_BANG_EQ] = ACTIONS(7003), - [anon_sym_GT] = ACTIONS(7005), - [anon_sym_GT_EQ] = ACTIONS(7005), - [anon_sym_LT_EQ] = ACTIONS(7005), - [anon_sym_LT] = ACTIONS(7005), - [anon_sym_LT_LT] = ACTIONS(7003), - [anon_sym_GT_GT] = ACTIONS(7005), - [anon_sym___extension__] = ACTIONS(8232), - [anon_sym_LBRACK] = ACTIONS(8240), - [anon_sym_const] = ACTIONS(8242), - [anon_sym_constexpr] = ACTIONS(8232), - [anon_sym_volatile] = ACTIONS(8232), - [anon_sym_restrict] = ACTIONS(8232), - [anon_sym___restrict__] = ACTIONS(8232), - [anon_sym__Atomic] = ACTIONS(8232), - [anon_sym__Noreturn] = ACTIONS(8232), - [anon_sym_noreturn] = ACTIONS(8232), - [anon_sym__Nonnull] = ACTIONS(8232), - [anon_sym_mutable] = ACTIONS(8232), - [anon_sym_constinit] = ACTIONS(8232), - [anon_sym_consteval] = ACTIONS(8232), - [anon_sym_alignas] = ACTIONS(8244), - [anon_sym__Alignas] = ACTIONS(8244), - [anon_sym_QMARK] = ACTIONS(7003), - [anon_sym_LT_EQ_GT] = ACTIONS(7003), - [anon_sym_or] = ACTIONS(7003), - [anon_sym_and] = ACTIONS(7003), - [anon_sym_bitor] = ACTIONS(7003), - [anon_sym_xor] = ACTIONS(7003), - [anon_sym_bitand] = ACTIONS(7003), - [anon_sym_not_eq] = ACTIONS(7003), - [anon_sym_DASH_DASH] = ACTIONS(7003), - [anon_sym_PLUS_PLUS] = ACTIONS(7003), - [anon_sym_DOT] = ACTIONS(7005), - [anon_sym_DOT_STAR] = ACTIONS(7003), - [anon_sym_DASH_GT] = ACTIONS(7003), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7003), - [anon_sym_override] = ACTIONS(7003), - [anon_sym_GT2] = ACTIONS(7003), - [anon_sym_requires] = ACTIONS(7003), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_GT2] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), }, - [STATE(3632)] = { - [sym__abstract_declarator] = STATE(6379), - [sym_abstract_parenthesized_declarator] = STATE(6488), - [sym_abstract_pointer_declarator] = STATE(6488), - [sym_abstract_function_declarator] = STATE(6488), - [sym_abstract_array_declarator] = STATE(6488), - [sym_type_qualifier] = STATE(3553), - [sym_alignas_qualifier] = STATE(3785), - [sym_parameter_list] = STATE(2153), - [sym_abstract_reference_declarator] = STATE(6488), - [sym__function_declarator_seq] = STATE(6497), - [aux_sym__type_definition_type_repeat1] = STATE(3553), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), - [anon_sym_COMMA] = ACTIONS(7007), - [anon_sym_LPAREN2] = ACTIONS(8224), - [anon_sym_DASH] = ACTIONS(7009), - [anon_sym_PLUS] = ACTIONS(7009), - [anon_sym_STAR] = ACTIONS(8226), - [anon_sym_SLASH] = ACTIONS(7009), - [anon_sym_PERCENT] = ACTIONS(7007), - [anon_sym_PIPE_PIPE] = ACTIONS(7007), - [anon_sym_AMP_AMP] = ACTIONS(8228), - [anon_sym_PIPE] = ACTIONS(7009), - [anon_sym_CARET] = ACTIONS(7007), - [anon_sym_AMP] = ACTIONS(8230), - [anon_sym_EQ_EQ] = ACTIONS(7007), - [anon_sym_BANG_EQ] = ACTIONS(7007), - [anon_sym_GT] = ACTIONS(7009), - [anon_sym_GT_EQ] = ACTIONS(7009), - [anon_sym_LT_EQ] = ACTIONS(7009), - [anon_sym_LT] = ACTIONS(7009), - [anon_sym_LT_LT] = ACTIONS(7007), - [anon_sym_GT_GT] = ACTIONS(7009), - [anon_sym___extension__] = ACTIONS(8232), - [anon_sym_LBRACK] = ACTIONS(8240), - [anon_sym_const] = ACTIONS(8242), - [anon_sym_constexpr] = ACTIONS(8232), - [anon_sym_volatile] = ACTIONS(8232), - [anon_sym_restrict] = ACTIONS(8232), - [anon_sym___restrict__] = ACTIONS(8232), - [anon_sym__Atomic] = ACTIONS(8232), - [anon_sym__Noreturn] = ACTIONS(8232), - [anon_sym_noreturn] = ACTIONS(8232), - [anon_sym__Nonnull] = ACTIONS(8232), - [anon_sym_mutable] = ACTIONS(8232), - [anon_sym_constinit] = ACTIONS(8232), - [anon_sym_consteval] = ACTIONS(8232), - [anon_sym_alignas] = ACTIONS(8244), - [anon_sym__Alignas] = ACTIONS(8244), - [anon_sym_QMARK] = ACTIONS(7007), - [anon_sym_LT_EQ_GT] = ACTIONS(7007), - [anon_sym_or] = ACTIONS(7007), - [anon_sym_and] = ACTIONS(7007), - [anon_sym_bitor] = ACTIONS(7007), - [anon_sym_xor] = ACTIONS(7007), - [anon_sym_bitand] = ACTIONS(7007), - [anon_sym_not_eq] = ACTIONS(7007), - [anon_sym_DASH_DASH] = ACTIONS(7007), - [anon_sym_PLUS_PLUS] = ACTIONS(7007), - [anon_sym_DOT] = ACTIONS(7009), - [anon_sym_DOT_STAR] = ACTIONS(7007), - [anon_sym_DASH_GT] = ACTIONS(7007), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7007), - [anon_sym_override] = ACTIONS(7007), - [anon_sym_GT2] = ACTIONS(7007), - [anon_sym_requires] = ACTIONS(7007), + [STATE(3124)] = { + [sym_identifier] = ACTIONS(9045), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9047), + [anon_sym_COMMA] = ACTIONS(9047), + [anon_sym_RPAREN] = ACTIONS(9047), + [aux_sym_preproc_if_token2] = ACTIONS(9047), + [aux_sym_preproc_else_token1] = ACTIONS(9047), + [aux_sym_preproc_elif_token1] = ACTIONS(9045), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9047), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9047), + [anon_sym_LPAREN2] = ACTIONS(9047), + [anon_sym_DASH] = ACTIONS(9045), + [anon_sym_PLUS] = ACTIONS(9045), + [anon_sym_STAR] = ACTIONS(9045), + [anon_sym_SLASH] = ACTIONS(9045), + [anon_sym_PERCENT] = ACTIONS(9045), + [anon_sym_PIPE_PIPE] = ACTIONS(9047), + [anon_sym_AMP_AMP] = ACTIONS(9047), + [anon_sym_PIPE] = ACTIONS(9045), + [anon_sym_CARET] = ACTIONS(9045), + [anon_sym_AMP] = ACTIONS(9045), + [anon_sym_EQ_EQ] = ACTIONS(9047), + [anon_sym_BANG_EQ] = ACTIONS(9047), + [anon_sym_GT] = ACTIONS(9045), + [anon_sym_GT_EQ] = ACTIONS(9047), + [anon_sym_LT_EQ] = ACTIONS(9045), + [anon_sym_LT] = ACTIONS(9045), + [anon_sym_LT_LT] = ACTIONS(9045), + [anon_sym_GT_GT] = ACTIONS(9045), + [anon_sym_SEMI] = ACTIONS(9047), + [anon_sym___attribute__] = ACTIONS(9045), + [anon_sym___attribute] = ACTIONS(9045), + [anon_sym_COLON] = ACTIONS(9045), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9047), + [anon_sym_LBRACE] = ACTIONS(9047), + [anon_sym_RBRACE] = ACTIONS(9047), + [anon_sym_LBRACK] = ACTIONS(9045), + [anon_sym_RBRACK] = ACTIONS(9047), + [anon_sym_EQ] = ACTIONS(9045), + [anon_sym_QMARK] = ACTIONS(9047), + [anon_sym_STAR_EQ] = ACTIONS(9047), + [anon_sym_SLASH_EQ] = ACTIONS(9047), + [anon_sym_PERCENT_EQ] = ACTIONS(9047), + [anon_sym_PLUS_EQ] = ACTIONS(9047), + [anon_sym_DASH_EQ] = ACTIONS(9047), + [anon_sym_LT_LT_EQ] = ACTIONS(9047), + [anon_sym_GT_GT_EQ] = ACTIONS(9047), + [anon_sym_AMP_EQ] = ACTIONS(9047), + [anon_sym_CARET_EQ] = ACTIONS(9047), + [anon_sym_PIPE_EQ] = ACTIONS(9047), + [anon_sym_and_eq] = ACTIONS(9045), + [anon_sym_or_eq] = ACTIONS(9045), + [anon_sym_xor_eq] = ACTIONS(9045), + [anon_sym_LT_EQ_GT] = ACTIONS(9047), + [anon_sym_or] = ACTIONS(9045), + [anon_sym_and] = ACTIONS(9045), + [anon_sym_bitor] = ACTIONS(9045), + [anon_sym_xor] = ACTIONS(9045), + [anon_sym_bitand] = ACTIONS(9045), + [anon_sym_not_eq] = ACTIONS(9045), + [anon_sym_DASH_DASH] = ACTIONS(9047), + [anon_sym_PLUS_PLUS] = ACTIONS(9047), + [anon_sym_asm] = ACTIONS(9045), + [anon_sym___asm__] = ACTIONS(9045), + [anon_sym___asm] = ACTIONS(9045), + [anon_sym_DOT] = ACTIONS(9045), + [anon_sym_DOT_STAR] = ACTIONS(9047), + [anon_sym_DASH_GT] = ACTIONS(9047), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9045), + [anon_sym_COLON_RBRACK] = ACTIONS(9047), }, - [STATE(3633)] = { - [sym_type_qualifier] = STATE(3615), - [sym_alignas_qualifier] = STATE(3884), - [aux_sym__type_definition_type_repeat1] = STATE(3615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6523), - [anon_sym_COMMA] = ACTIONS(6523), - [anon_sym_LPAREN2] = ACTIONS(6523), - [anon_sym_DASH] = ACTIONS(6521), - [anon_sym_PLUS] = ACTIONS(6521), - [anon_sym_STAR] = ACTIONS(6523), - [anon_sym_SLASH] = ACTIONS(6521), - [anon_sym_PERCENT] = ACTIONS(6523), - [anon_sym_PIPE_PIPE] = ACTIONS(6523), - [anon_sym_AMP_AMP] = ACTIONS(6523), - [anon_sym_PIPE] = ACTIONS(6521), - [anon_sym_CARET] = ACTIONS(6523), - [anon_sym_AMP] = ACTIONS(6521), - [anon_sym_EQ_EQ] = ACTIONS(6523), - [anon_sym_BANG_EQ] = ACTIONS(6523), - [anon_sym_GT] = ACTIONS(6521), - [anon_sym_GT_EQ] = ACTIONS(6523), - [anon_sym_LT_EQ] = ACTIONS(6521), - [anon_sym_LT] = ACTIONS(6521), - [anon_sym_LT_LT] = ACTIONS(6523), - [anon_sym_GT_GT] = ACTIONS(6523), - [anon_sym___extension__] = ACTIONS(7495), - [anon_sym___attribute__] = ACTIONS(6523), - [anon_sym___attribute] = ACTIONS(6521), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6523), - [anon_sym_LBRACK] = ACTIONS(6521), - [anon_sym_RBRACK] = ACTIONS(6523), - [anon_sym_const] = ACTIONS(7503), - [anon_sym_constexpr] = ACTIONS(7495), - [anon_sym_volatile] = ACTIONS(7495), - [anon_sym_restrict] = ACTIONS(7495), - [anon_sym___restrict__] = ACTIONS(7495), - [anon_sym__Atomic] = ACTIONS(7495), - [anon_sym__Noreturn] = ACTIONS(7495), - [anon_sym_noreturn] = ACTIONS(7495), - [anon_sym__Nonnull] = ACTIONS(7495), - [anon_sym_mutable] = ACTIONS(7495), - [anon_sym_constinit] = ACTIONS(7495), - [anon_sym_consteval] = ACTIONS(7495), - [anon_sym_alignas] = ACTIONS(7505), - [anon_sym__Alignas] = ACTIONS(7505), - [anon_sym_QMARK] = ACTIONS(6523), - [anon_sym_LT_EQ_GT] = ACTIONS(6523), - [anon_sym_or] = ACTIONS(6523), - [anon_sym_and] = ACTIONS(6523), - [anon_sym_bitor] = ACTIONS(6523), - [anon_sym_xor] = ACTIONS(6523), - [anon_sym_bitand] = ACTIONS(6523), - [anon_sym_not_eq] = ACTIONS(6523), - [anon_sym_DASH_DASH] = ACTIONS(6523), - [anon_sym_PLUS_PLUS] = ACTIONS(6523), - [anon_sym_asm] = ACTIONS(6523), - [anon_sym___asm__] = ACTIONS(6523), - [anon_sym___asm] = ACTIONS(6521), - [anon_sym_DOT] = ACTIONS(6521), - [anon_sym_DOT_STAR] = ACTIONS(6523), - [anon_sym_DASH_GT] = ACTIONS(6523), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6523), - [anon_sym_override] = ACTIONS(6523), - [anon_sym_noexcept] = ACTIONS(6523), - [anon_sym_throw] = ACTIONS(6523), - [anon_sym_requires] = ACTIONS(6523), + [STATE(3125)] = { + [sym_attribute_declaration] = STATE(3170), + [aux_sym_attributed_declarator_repeat1] = STATE(3170), + [sym_identifier] = ACTIONS(8837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8839), + [anon_sym_COMMA] = ACTIONS(8839), + [anon_sym_RPAREN] = ACTIONS(8839), + [aux_sym_preproc_if_token2] = ACTIONS(8839), + [aux_sym_preproc_else_token1] = ACTIONS(8839), + [aux_sym_preproc_elif_token1] = ACTIONS(8837), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8839), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8839), + [anon_sym_LPAREN2] = ACTIONS(8839), + [anon_sym_DASH] = ACTIONS(8837), + [anon_sym_PLUS] = ACTIONS(8837), + [anon_sym_STAR] = ACTIONS(8837), + [anon_sym_SLASH] = ACTIONS(8837), + [anon_sym_PERCENT] = ACTIONS(8837), + [anon_sym_PIPE_PIPE] = ACTIONS(8839), + [anon_sym_AMP_AMP] = ACTIONS(8839), + [anon_sym_PIPE] = ACTIONS(8837), + [anon_sym_CARET] = ACTIONS(8837), + [anon_sym_AMP] = ACTIONS(8837), + [anon_sym_EQ_EQ] = ACTIONS(8839), + [anon_sym_BANG_EQ] = ACTIONS(8839), + [anon_sym_GT] = ACTIONS(8837), + [anon_sym_GT_EQ] = ACTIONS(8839), + [anon_sym_LT_EQ] = ACTIONS(8837), + [anon_sym_LT] = ACTIONS(8837), + [anon_sym_LT_LT] = ACTIONS(8837), + [anon_sym_GT_GT] = ACTIONS(8837), + [anon_sym_SEMI] = ACTIONS(8839), + [anon_sym___attribute__] = ACTIONS(8837), + [anon_sym___attribute] = ACTIONS(8837), + [anon_sym_COLON] = ACTIONS(8837), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8839), + [anon_sym_RBRACE] = ACTIONS(8839), + [anon_sym_LBRACK] = ACTIONS(8837), + [anon_sym_EQ] = ACTIONS(8837), + [anon_sym_QMARK] = ACTIONS(8839), + [anon_sym_STAR_EQ] = ACTIONS(8839), + [anon_sym_SLASH_EQ] = ACTIONS(8839), + [anon_sym_PERCENT_EQ] = ACTIONS(8839), + [anon_sym_PLUS_EQ] = ACTIONS(8839), + [anon_sym_DASH_EQ] = ACTIONS(8839), + [anon_sym_LT_LT_EQ] = ACTIONS(8839), + [anon_sym_GT_GT_EQ] = ACTIONS(8839), + [anon_sym_AMP_EQ] = ACTIONS(8839), + [anon_sym_CARET_EQ] = ACTIONS(8839), + [anon_sym_PIPE_EQ] = ACTIONS(8839), + [anon_sym_and_eq] = ACTIONS(8837), + [anon_sym_or_eq] = ACTIONS(8837), + [anon_sym_xor_eq] = ACTIONS(8837), + [anon_sym_LT_EQ_GT] = ACTIONS(8839), + [anon_sym_or] = ACTIONS(8837), + [anon_sym_and] = ACTIONS(8837), + [anon_sym_bitor] = ACTIONS(8837), + [anon_sym_xor] = ACTIONS(8837), + [anon_sym_bitand] = ACTIONS(8837), + [anon_sym_not_eq] = ACTIONS(8837), + [anon_sym_DASH_DASH] = ACTIONS(8839), + [anon_sym_PLUS_PLUS] = ACTIONS(8839), + [anon_sym_DOT] = ACTIONS(8837), + [anon_sym_DOT_STAR] = ACTIONS(8839), + [anon_sym_DASH_GT] = ACTIONS(8839), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8837), + [anon_sym_override] = ACTIONS(8837), + [anon_sym_requires] = ACTIONS(8837), + [anon_sym_COLON_RBRACK] = ACTIONS(8839), }, - [STATE(3634)] = { - [sym_template_argument_list] = STATE(3619), - [sym_identifier] = ACTIONS(6746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), - [anon_sym_COMMA] = ACTIONS(6751), - [aux_sym_preproc_if_token2] = ACTIONS(6751), - [aux_sym_preproc_else_token1] = ACTIONS(6751), - [aux_sym_preproc_elif_token1] = ACTIONS(6746), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6751), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6751), - [anon_sym_LPAREN2] = ACTIONS(6751), - [anon_sym_DASH] = ACTIONS(6746), - [anon_sym_PLUS] = ACTIONS(6746), - [anon_sym_STAR] = ACTIONS(6751), - [anon_sym_SLASH] = ACTIONS(6746), - [anon_sym_PERCENT] = ACTIONS(6751), - [anon_sym_PIPE_PIPE] = ACTIONS(6751), - [anon_sym_AMP_AMP] = ACTIONS(6751), - [anon_sym_PIPE] = ACTIONS(6746), - [anon_sym_CARET] = ACTIONS(6751), - [anon_sym_AMP] = ACTIONS(6746), - [anon_sym_EQ_EQ] = ACTIONS(6751), - [anon_sym_BANG_EQ] = ACTIONS(6751), - [anon_sym_GT] = ACTIONS(6746), - [anon_sym_GT_EQ] = ACTIONS(6751), - [anon_sym_LT_EQ] = ACTIONS(6746), - [anon_sym_LT] = ACTIONS(8526), - [anon_sym_LT_LT] = ACTIONS(6751), - [anon_sym_GT_GT] = ACTIONS(6751), - [anon_sym___extension__] = ACTIONS(6746), - [anon_sym___attribute__] = ACTIONS(6746), - [anon_sym___attribute] = ACTIONS(6746), - [anon_sym_COLON] = ACTIONS(6746), - [anon_sym_COLON_COLON] = ACTIONS(6748), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_LBRACK] = ACTIONS(6751), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6746), - [anon_sym_volatile] = ACTIONS(6746), - [anon_sym_restrict] = ACTIONS(6746), - [anon_sym___restrict__] = ACTIONS(6746), - [anon_sym__Atomic] = ACTIONS(6746), - [anon_sym__Noreturn] = ACTIONS(6746), - [anon_sym_noreturn] = ACTIONS(6746), - [anon_sym__Nonnull] = ACTIONS(6746), - [anon_sym_mutable] = ACTIONS(6746), - [anon_sym_constinit] = ACTIONS(6746), - [anon_sym_consteval] = ACTIONS(6746), - [anon_sym_alignas] = ACTIONS(6746), - [anon_sym__Alignas] = ACTIONS(6746), - [anon_sym_QMARK] = ACTIONS(6751), - [anon_sym_LT_EQ_GT] = ACTIONS(6751), - [anon_sym_or] = ACTIONS(6746), - [anon_sym_and] = ACTIONS(6746), - [anon_sym_bitor] = ACTIONS(6746), - [anon_sym_xor] = ACTIONS(6746), - [anon_sym_bitand] = ACTIONS(6746), - [anon_sym_not_eq] = ACTIONS(6746), - [anon_sym_DASH_DASH] = ACTIONS(6751), - [anon_sym_PLUS_PLUS] = ACTIONS(6751), - [anon_sym_DOT] = ACTIONS(6746), - [anon_sym_DOT_STAR] = ACTIONS(6751), - [anon_sym_DASH_GT] = ACTIONS(6751), + [STATE(3126)] = { + [sym_type_qualifier] = STATE(3236), + [sym_alignas_qualifier] = STATE(2726), + [aux_sym__type_definition_type_repeat1] = STATE(3236), + [aux_sym_sized_type_specifier_repeat1] = STATE(3605), + [sym_identifier] = ACTIONS(8754), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), + [anon_sym_COMMA] = ACTIONS(7249), + [anon_sym_RPAREN] = ACTIONS(7249), + [anon_sym_LPAREN2] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7251), + [anon_sym_PLUS] = ACTIONS(7251), + [anon_sym_STAR] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7251), + [anon_sym_PERCENT] = ACTIONS(7249), + [anon_sym_PIPE_PIPE] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7249), + [anon_sym_PIPE] = ACTIONS(7251), + [anon_sym_CARET] = ACTIONS(7249), + [anon_sym_AMP] = ACTIONS(7251), + [anon_sym_EQ_EQ] = ACTIONS(7249), + [anon_sym_BANG_EQ] = ACTIONS(7249), + [anon_sym_GT] = ACTIONS(7251), + [anon_sym_GT_EQ] = ACTIONS(7249), + [anon_sym_LT_EQ] = ACTIONS(7251), + [anon_sym_LT] = ACTIONS(7251), + [anon_sym_LT_LT] = ACTIONS(7249), + [anon_sym_GT_GT] = ACTIONS(7249), + [anon_sym_SEMI] = ACTIONS(7249), + [anon_sym___extension__] = ACTIONS(8123), + [anon_sym___attribute__] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7251), + [anon_sym_COLON] = ACTIONS(7251), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7249), + [anon_sym_LBRACE] = ACTIONS(7249), + [anon_sym_RBRACE] = ACTIONS(7249), + [anon_sym_signed] = ACTIONS(9049), + [anon_sym_unsigned] = ACTIONS(9049), + [anon_sym_long] = ACTIONS(9049), + [anon_sym_short] = ACTIONS(9049), + [anon_sym_LBRACK] = ACTIONS(7249), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8123), + [anon_sym_volatile] = ACTIONS(8123), + [anon_sym_restrict] = ACTIONS(8123), + [anon_sym___restrict__] = ACTIONS(8123), + [anon_sym__Atomic] = ACTIONS(8123), + [anon_sym__Noreturn] = ACTIONS(8123), + [anon_sym_noreturn] = ACTIONS(8123), + [anon_sym__Nonnull] = ACTIONS(8123), + [anon_sym_mutable] = ACTIONS(8123), + [anon_sym_constinit] = ACTIONS(8123), + [anon_sym_consteval] = ACTIONS(8123), + [anon_sym_alignas] = ACTIONS(9051), + [anon_sym__Alignas] = ACTIONS(9051), + [sym_primitive_type] = ACTIONS(8764), + [anon_sym_QMARK] = ACTIONS(7249), + [anon_sym_LT_EQ_GT] = ACTIONS(7249), + [anon_sym_or] = ACTIONS(7251), + [anon_sym_and] = ACTIONS(7251), + [anon_sym_bitor] = ACTIONS(7251), + [anon_sym_xor] = ACTIONS(7251), + [anon_sym_bitand] = ACTIONS(7251), + [anon_sym_not_eq] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7249), + [anon_sym_PLUS_PLUS] = ACTIONS(7249), + [anon_sym_DOT] = ACTIONS(7251), + [anon_sym_DOT_STAR] = ACTIONS(7249), + [anon_sym_DASH_GT] = ACTIONS(7249), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6746), - [anon_sym_override] = ACTIONS(6746), - [anon_sym_requires] = ACTIONS(6746), - }, - [STATE(3635)] = { - [sym_argument_list] = STATE(3783), - [sym_initializer_list] = STATE(5860), - [aux_sym_sized_type_specifier_repeat1] = STATE(3483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [anon_sym_RPAREN] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(7399), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6800), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6800), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6800), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6800), - [anon_sym_GT_GT] = ACTIONS(6800), - [anon_sym_SEMI] = ACTIONS(6800), - [anon_sym___extension__] = ACTIONS(6800), - [anon_sym___attribute__] = ACTIONS(6800), - [anon_sym___attribute] = ACTIONS(6798), - [anon_sym_COLON] = ACTIONS(6798), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_RBRACE] = ACTIONS(6800), - [anon_sym_signed] = ACTIONS(8827), - [anon_sym_unsigned] = ACTIONS(8827), - [anon_sym_long] = ACTIONS(8827), - [anon_sym_short] = ACTIONS(8827), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym___restrict__] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym__Noreturn] = ACTIONS(6800), - [anon_sym_noreturn] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym_mutable] = ACTIONS(6800), - [anon_sym_constinit] = ACTIONS(6800), - [anon_sym_consteval] = ACTIONS(6800), - [anon_sym_alignas] = ACTIONS(6800), - [anon_sym__Alignas] = ACTIONS(6800), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6800), - [anon_sym_and] = ACTIONS(6800), - [anon_sym_bitor] = ACTIONS(6800), - [anon_sym_xor] = ACTIONS(6800), - [anon_sym_bitand] = ACTIONS(6800), - [anon_sym_not_eq] = ACTIONS(6800), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6800), - }, - [STATE(3636)] = { - [sym_decltype_auto] = STATE(3956), - [sym_template_argument_list] = STATE(4000), - [aux_sym_sized_type_specifier_repeat1] = STATE(3152), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5258), - [anon_sym_COMMA] = ACTIONS(5258), - [anon_sym_LPAREN2] = ACTIONS(5258), - [anon_sym_DASH] = ACTIONS(5251), - [anon_sym_PLUS] = ACTIONS(5251), - [anon_sym_STAR] = ACTIONS(5258), - [anon_sym_SLASH] = ACTIONS(5251), - [anon_sym_PERCENT] = ACTIONS(5258), - [anon_sym_PIPE_PIPE] = ACTIONS(5258), - [anon_sym_AMP_AMP] = ACTIONS(5258), - [anon_sym_PIPE] = ACTIONS(5251), - [anon_sym_CARET] = ACTIONS(5258), - [anon_sym_AMP] = ACTIONS(5251), - [anon_sym_EQ_EQ] = ACTIONS(5258), - [anon_sym_BANG_EQ] = ACTIONS(5258), - [anon_sym_GT] = ACTIONS(5251), - [anon_sym_GT_EQ] = ACTIONS(5258), - [anon_sym_LT_EQ] = ACTIONS(5251), - [anon_sym_LT] = ACTIONS(8526), - [anon_sym_LT_LT] = ACTIONS(5258), - [anon_sym_GT_GT] = ACTIONS(5258), - [anon_sym___extension__] = ACTIONS(5258), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5258), - [anon_sym_signed] = ACTIONS(6613), - [anon_sym_unsigned] = ACTIONS(6613), - [anon_sym_long] = ACTIONS(6613), - [anon_sym_short] = ACTIONS(6613), - [anon_sym_LBRACK] = ACTIONS(5258), - [anon_sym_RBRACK] = ACTIONS(5258), - [anon_sym_const] = ACTIONS(5251), - [anon_sym_constexpr] = ACTIONS(5258), - [anon_sym_volatile] = ACTIONS(5258), - [anon_sym_restrict] = ACTIONS(5258), - [anon_sym___restrict__] = ACTIONS(5258), - [anon_sym__Atomic] = ACTIONS(5258), - [anon_sym__Noreturn] = ACTIONS(5258), - [anon_sym_noreturn] = ACTIONS(5258), - [anon_sym__Nonnull] = ACTIONS(5258), - [anon_sym_mutable] = ACTIONS(5258), - [anon_sym_constinit] = ACTIONS(5258), - [anon_sym_consteval] = ACTIONS(5258), - [anon_sym_alignas] = ACTIONS(5258), - [anon_sym__Alignas] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(5258), - [anon_sym_LT_EQ_GT] = ACTIONS(5258), - [anon_sym_or] = ACTIONS(5258), - [anon_sym_and] = ACTIONS(5258), - [anon_sym_bitor] = ACTIONS(5258), - [anon_sym_xor] = ACTIONS(5258), - [anon_sym_bitand] = ACTIONS(5258), - [anon_sym_not_eq] = ACTIONS(5258), - [anon_sym_DASH_DASH] = ACTIONS(5258), - [anon_sym_PLUS_PLUS] = ACTIONS(5258), - [anon_sym_DOT] = ACTIONS(5251), - [anon_sym_DOT_STAR] = ACTIONS(5258), - [anon_sym_DASH_GT] = ACTIONS(5258), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6621), - [anon_sym_decltype] = ACTIONS(6623), - [anon_sym_final] = ACTIONS(5258), - [anon_sym_override] = ACTIONS(5258), - [anon_sym_requires] = ACTIONS(5258), + [anon_sym_COLON_RBRACK] = ACTIONS(7249), }, - [STATE(3637)] = { - [sym_string_literal] = STATE(3637), - [sym_raw_string_literal] = STATE(3637), - [aux_sym_concatenated_string_repeat1] = STATE(3637), - [sym_identifier] = ACTIONS(9193), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8045), - [anon_sym_COMMA] = ACTIONS(8045), - [anon_sym_LPAREN2] = ACTIONS(8045), - [anon_sym_DASH] = ACTIONS(8047), - [anon_sym_PLUS] = ACTIONS(8047), - [anon_sym_STAR] = ACTIONS(8047), - [anon_sym_SLASH] = ACTIONS(8047), - [anon_sym_PERCENT] = ACTIONS(8047), - [anon_sym_PIPE_PIPE] = ACTIONS(8045), - [anon_sym_AMP_AMP] = ACTIONS(8045), - [anon_sym_PIPE] = ACTIONS(8047), - [anon_sym_CARET] = ACTIONS(8047), - [anon_sym_AMP] = ACTIONS(8047), - [anon_sym_EQ_EQ] = ACTIONS(8045), - [anon_sym_BANG_EQ] = ACTIONS(8045), - [anon_sym_GT] = ACTIONS(8047), - [anon_sym_GT_EQ] = ACTIONS(8045), - [anon_sym_LT_EQ] = ACTIONS(8047), - [anon_sym_LT] = ACTIONS(8047), - [anon_sym_LT_LT] = ACTIONS(8047), - [anon_sym_GT_GT] = ACTIONS(8047), - [anon_sym_LBRACK] = ACTIONS(8045), - [anon_sym_RBRACK] = ACTIONS(8045), - [anon_sym_EQ] = ACTIONS(8047), - [anon_sym_QMARK] = ACTIONS(8045), - [anon_sym_STAR_EQ] = ACTIONS(8045), - [anon_sym_SLASH_EQ] = ACTIONS(8045), - [anon_sym_PERCENT_EQ] = ACTIONS(8045), - [anon_sym_PLUS_EQ] = ACTIONS(8045), - [anon_sym_DASH_EQ] = ACTIONS(8045), - [anon_sym_LT_LT_EQ] = ACTIONS(8045), - [anon_sym_GT_GT_EQ] = ACTIONS(8045), - [anon_sym_AMP_EQ] = ACTIONS(8045), - [anon_sym_CARET_EQ] = ACTIONS(8045), - [anon_sym_PIPE_EQ] = ACTIONS(8045), - [anon_sym_and_eq] = ACTIONS(8047), - [anon_sym_or_eq] = ACTIONS(8047), - [anon_sym_xor_eq] = ACTIONS(8047), - [anon_sym_LT_EQ_GT] = ACTIONS(8045), - [anon_sym_or] = ACTIONS(8047), - [anon_sym_and] = ACTIONS(8047), - [anon_sym_bitor] = ACTIONS(8047), - [anon_sym_xor] = ACTIONS(8047), - [anon_sym_bitand] = ACTIONS(8047), - [anon_sym_not_eq] = ACTIONS(8047), - [anon_sym_DASH_DASH] = ACTIONS(8045), - [anon_sym_PLUS_PLUS] = ACTIONS(8045), - [anon_sym_DOT] = ACTIONS(8047), - [anon_sym_DOT_STAR] = ACTIONS(8045), - [anon_sym_DASH_GT] = ACTIONS(8045), - [anon_sym_L_DQUOTE] = ACTIONS(9196), - [anon_sym_u_DQUOTE] = ACTIONS(9196), - [anon_sym_U_DQUOTE] = ACTIONS(9196), - [anon_sym_u8_DQUOTE] = ACTIONS(9196), - [anon_sym_DQUOTE] = ACTIONS(9196), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(9199), - [anon_sym_LR_DQUOTE] = ACTIONS(9199), - [anon_sym_uR_DQUOTE] = ACTIONS(9199), - [anon_sym_UR_DQUOTE] = ACTIONS(9199), - [anon_sym_u8R_DQUOTE] = ACTIONS(9199), - [sym_literal_suffix] = ACTIONS(8047), - }, - [STATE(3638)] = { - [sym__abstract_declarator] = STATE(6383), - [sym_abstract_parenthesized_declarator] = STATE(6612), - [sym_abstract_pointer_declarator] = STATE(6612), - [sym_abstract_function_declarator] = STATE(6612), - [sym_abstract_array_declarator] = STATE(6612), - [sym_type_qualifier] = STATE(3734), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(2154), - [sym_abstract_reference_declarator] = STATE(6612), - [sym__function_declarator_seq] = STATE(6536), - [aux_sym__type_definition_type_repeat1] = STATE(3734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), - [anon_sym_COMMA] = ACTIONS(6995), - [anon_sym_LPAREN2] = ACTIONS(8246), - [anon_sym_DASH] = ACTIONS(6997), - [anon_sym_PLUS] = ACTIONS(6997), - [anon_sym_STAR] = ACTIONS(8248), - [anon_sym_SLASH] = ACTIONS(6997), - [anon_sym_PERCENT] = ACTIONS(6995), - [anon_sym_PIPE_PIPE] = ACTIONS(6995), - [anon_sym_AMP_AMP] = ACTIONS(8250), - [anon_sym_PIPE] = ACTIONS(6997), - [anon_sym_CARET] = ACTIONS(6995), - [anon_sym_AMP] = ACTIONS(8252), - [anon_sym_EQ_EQ] = ACTIONS(6995), - [anon_sym_BANG_EQ] = ACTIONS(6995), - [anon_sym_GT] = ACTIONS(6997), - [anon_sym_GT_EQ] = ACTIONS(6995), - [anon_sym_LT_EQ] = ACTIONS(6997), - [anon_sym_LT] = ACTIONS(6997), - [anon_sym_LT_LT] = ACTIONS(6995), - [anon_sym_GT_GT] = ACTIONS(6995), - [anon_sym___extension__] = ACTIONS(8254), - [anon_sym_LBRACK] = ACTIONS(8262), - [anon_sym_RBRACK] = ACTIONS(6995), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(8254), - [anon_sym_volatile] = ACTIONS(8254), - [anon_sym_restrict] = ACTIONS(8254), - [anon_sym___restrict__] = ACTIONS(8254), - [anon_sym__Atomic] = ACTIONS(8254), - [anon_sym__Noreturn] = ACTIONS(8254), - [anon_sym_noreturn] = ACTIONS(8254), - [anon_sym__Nonnull] = ACTIONS(8254), - [anon_sym_mutable] = ACTIONS(8254), - [anon_sym_constinit] = ACTIONS(8254), - [anon_sym_consteval] = ACTIONS(8254), - [anon_sym_alignas] = ACTIONS(8264), - [anon_sym__Alignas] = ACTIONS(8264), - [anon_sym_QMARK] = ACTIONS(6995), - [anon_sym_LT_EQ_GT] = ACTIONS(6995), - [anon_sym_or] = ACTIONS(6995), - [anon_sym_and] = ACTIONS(6995), - [anon_sym_bitor] = ACTIONS(6995), - [anon_sym_xor] = ACTIONS(6995), - [anon_sym_bitand] = ACTIONS(6995), - [anon_sym_not_eq] = ACTIONS(6995), - [anon_sym_DASH_DASH] = ACTIONS(6995), - [anon_sym_PLUS_PLUS] = ACTIONS(6995), - [anon_sym_DOT] = ACTIONS(6997), - [anon_sym_DOT_STAR] = ACTIONS(6995), - [anon_sym_DASH_GT] = ACTIONS(6995), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6995), - [anon_sym_override] = ACTIONS(6995), - [anon_sym_requires] = ACTIONS(6995), + [STATE(3127)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7641), + [anon_sym_COMMA] = ACTIONS(7641), + [anon_sym_LPAREN2] = ACTIONS(7641), + [anon_sym_DASH] = ACTIONS(7639), + [anon_sym_PLUS] = ACTIONS(7639), + [anon_sym_STAR] = ACTIONS(7639), + [anon_sym_SLASH] = ACTIONS(7639), + [anon_sym_PERCENT] = ACTIONS(7639), + [anon_sym_PIPE_PIPE] = ACTIONS(7641), + [anon_sym_AMP_AMP] = ACTIONS(7641), + [anon_sym_PIPE] = ACTIONS(7639), + [anon_sym_CARET] = ACTIONS(7639), + [anon_sym_AMP] = ACTIONS(7639), + [anon_sym_EQ_EQ] = ACTIONS(7641), + [anon_sym_BANG_EQ] = ACTIONS(7641), + [anon_sym_GT] = ACTIONS(7639), + [anon_sym_GT_EQ] = ACTIONS(7639), + [anon_sym_LT_EQ] = ACTIONS(7639), + [anon_sym_LT] = ACTIONS(7639), + [anon_sym_LT_LT] = ACTIONS(7639), + [anon_sym_GT_GT] = ACTIONS(7639), + [anon_sym___extension__] = ACTIONS(7641), + [anon_sym_LBRACE] = ACTIONS(7641), + [anon_sym_LBRACK] = ACTIONS(7641), + [anon_sym_EQ] = ACTIONS(7639), + [anon_sym_const] = ACTIONS(7639), + [anon_sym_constexpr] = ACTIONS(7641), + [anon_sym_volatile] = ACTIONS(7641), + [anon_sym_restrict] = ACTIONS(7641), + [anon_sym___restrict__] = ACTIONS(7641), + [anon_sym__Atomic] = ACTIONS(7641), + [anon_sym__Noreturn] = ACTIONS(7641), + [anon_sym_noreturn] = ACTIONS(7641), + [anon_sym__Nonnull] = ACTIONS(7641), + [anon_sym_mutable] = ACTIONS(7641), + [anon_sym_constinit] = ACTIONS(7641), + [anon_sym_consteval] = ACTIONS(7641), + [anon_sym_alignas] = ACTIONS(7641), + [anon_sym__Alignas] = ACTIONS(7641), + [anon_sym_QMARK] = ACTIONS(7641), + [anon_sym_STAR_EQ] = ACTIONS(7641), + [anon_sym_SLASH_EQ] = ACTIONS(7641), + [anon_sym_PERCENT_EQ] = ACTIONS(7641), + [anon_sym_PLUS_EQ] = ACTIONS(7641), + [anon_sym_DASH_EQ] = ACTIONS(7641), + [anon_sym_LT_LT_EQ] = ACTIONS(7641), + [anon_sym_GT_GT_EQ] = ACTIONS(7639), + [anon_sym_AMP_EQ] = ACTIONS(7641), + [anon_sym_CARET_EQ] = ACTIONS(7641), + [anon_sym_PIPE_EQ] = ACTIONS(7641), + [anon_sym_and_eq] = ACTIONS(7641), + [anon_sym_or_eq] = ACTIONS(7641), + [anon_sym_xor_eq] = ACTIONS(7641), + [anon_sym_LT_EQ_GT] = ACTIONS(7641), + [anon_sym_or] = ACTIONS(7639), + [anon_sym_and] = ACTIONS(7639), + [anon_sym_bitor] = ACTIONS(7641), + [anon_sym_xor] = ACTIONS(7639), + [anon_sym_bitand] = ACTIONS(7641), + [anon_sym_not_eq] = ACTIONS(7641), + [anon_sym_DASH_DASH] = ACTIONS(7641), + [anon_sym_PLUS_PLUS] = ACTIONS(7641), + [anon_sym_DOT] = ACTIONS(7639), + [anon_sym_DOT_STAR] = ACTIONS(7641), + [anon_sym_DASH_GT] = ACTIONS(7641), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7641), + [anon_sym_override] = ACTIONS(7641), + [anon_sym_GT2] = ACTIONS(7641), + [anon_sym_requires] = ACTIONS(7641), }, - [STATE(3639)] = { - [sym__abstract_declarator] = STATE(6384), - [sym_abstract_parenthesized_declarator] = STATE(6612), - [sym_abstract_pointer_declarator] = STATE(6612), - [sym_abstract_function_declarator] = STATE(6612), - [sym_abstract_array_declarator] = STATE(6612), - [sym_type_qualifier] = STATE(3642), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(2154), - [sym_abstract_reference_declarator] = STATE(6612), - [sym__function_declarator_seq] = STATE(6536), - [aux_sym__type_definition_type_repeat1] = STATE(3642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), - [anon_sym_COMMA] = ACTIONS(6999), - [anon_sym_LPAREN2] = ACTIONS(8246), - [anon_sym_DASH] = ACTIONS(7001), - [anon_sym_PLUS] = ACTIONS(7001), - [anon_sym_STAR] = ACTIONS(8248), - [anon_sym_SLASH] = ACTIONS(7001), - [anon_sym_PERCENT] = ACTIONS(6999), - [anon_sym_PIPE_PIPE] = ACTIONS(6999), - [anon_sym_AMP_AMP] = ACTIONS(8250), - [anon_sym_PIPE] = ACTIONS(7001), - [anon_sym_CARET] = ACTIONS(6999), - [anon_sym_AMP] = ACTIONS(8252), - [anon_sym_EQ_EQ] = ACTIONS(6999), - [anon_sym_BANG_EQ] = ACTIONS(6999), - [anon_sym_GT] = ACTIONS(7001), - [anon_sym_GT_EQ] = ACTIONS(6999), - [anon_sym_LT_EQ] = ACTIONS(7001), - [anon_sym_LT] = ACTIONS(7001), - [anon_sym_LT_LT] = ACTIONS(6999), - [anon_sym_GT_GT] = ACTIONS(6999), - [anon_sym___extension__] = ACTIONS(8254), - [anon_sym_LBRACK] = ACTIONS(8262), - [anon_sym_RBRACK] = ACTIONS(6999), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(8254), - [anon_sym_volatile] = ACTIONS(8254), - [anon_sym_restrict] = ACTIONS(8254), - [anon_sym___restrict__] = ACTIONS(8254), - [anon_sym__Atomic] = ACTIONS(8254), - [anon_sym__Noreturn] = ACTIONS(8254), - [anon_sym_noreturn] = ACTIONS(8254), - [anon_sym__Nonnull] = ACTIONS(8254), - [anon_sym_mutable] = ACTIONS(8254), - [anon_sym_constinit] = ACTIONS(8254), - [anon_sym_consteval] = ACTIONS(8254), - [anon_sym_alignas] = ACTIONS(8264), - [anon_sym__Alignas] = ACTIONS(8264), - [anon_sym_QMARK] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(6999), - [anon_sym_or] = ACTIONS(6999), - [anon_sym_and] = ACTIONS(6999), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(6999), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(6999), - [anon_sym_PLUS_PLUS] = ACTIONS(6999), - [anon_sym_DOT] = ACTIONS(7001), - [anon_sym_DOT_STAR] = ACTIONS(6999), - [anon_sym_DASH_GT] = ACTIONS(6999), + [STATE(3128)] = { + [sym_template_argument_list] = STATE(2992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7097), + [anon_sym_COMMA] = ACTIONS(7097), + [anon_sym_RPAREN] = ACTIONS(7087), + [anon_sym_LPAREN2] = ACTIONS(7087), + [anon_sym_DASH] = ACTIONS(7092), + [anon_sym_PLUS] = ACTIONS(7092), + [anon_sym_STAR] = ACTIONS(7094), + [anon_sym_SLASH] = ACTIONS(7092), + [anon_sym_PERCENT] = ACTIONS(7092), + [anon_sym_PIPE_PIPE] = ACTIONS(7097), + [anon_sym_AMP_AMP] = ACTIONS(7087), + [anon_sym_PIPE] = ACTIONS(7092), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_AMP] = ACTIONS(7094), + [anon_sym_EQ_EQ] = ACTIONS(7097), + [anon_sym_BANG_EQ] = ACTIONS(7097), + [anon_sym_GT] = ACTIONS(7092), + [anon_sym_GT_EQ] = ACTIONS(7097), + [anon_sym_LT_EQ] = ACTIONS(7092), + [anon_sym_LT] = ACTIONS(8695), + [anon_sym_LT_LT] = ACTIONS(7092), + [anon_sym_GT_GT] = ACTIONS(7092), + [anon_sym___extension__] = ACTIONS(7090), + [anon_sym_COLON_COLON] = ACTIONS(7087), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_LBRACK] = ACTIONS(7087), + [anon_sym_EQ] = ACTIONS(7092), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7090), + [anon_sym_volatile] = ACTIONS(7090), + [anon_sym_restrict] = ACTIONS(7090), + [anon_sym___restrict__] = ACTIONS(7090), + [anon_sym__Atomic] = ACTIONS(7090), + [anon_sym__Noreturn] = ACTIONS(7090), + [anon_sym_noreturn] = ACTIONS(7090), + [anon_sym__Nonnull] = ACTIONS(7090), + [anon_sym_mutable] = ACTIONS(7090), + [anon_sym_constinit] = ACTIONS(7090), + [anon_sym_consteval] = ACTIONS(7090), + [anon_sym_alignas] = ACTIONS(7090), + [anon_sym__Alignas] = ACTIONS(7090), + [anon_sym_QMARK] = ACTIONS(7097), + [anon_sym_STAR_EQ] = ACTIONS(7097), + [anon_sym_SLASH_EQ] = ACTIONS(7097), + [anon_sym_PERCENT_EQ] = ACTIONS(7097), + [anon_sym_PLUS_EQ] = ACTIONS(7097), + [anon_sym_DASH_EQ] = ACTIONS(7097), + [anon_sym_LT_LT_EQ] = ACTIONS(7097), + [anon_sym_GT_GT_EQ] = ACTIONS(7097), + [anon_sym_AMP_EQ] = ACTIONS(7097), + [anon_sym_CARET_EQ] = ACTIONS(7097), + [anon_sym_PIPE_EQ] = ACTIONS(7097), + [anon_sym_and_eq] = ACTIONS(7097), + [anon_sym_or_eq] = ACTIONS(7097), + [anon_sym_xor_eq] = ACTIONS(7097), + [anon_sym_LT_EQ_GT] = ACTIONS(7097), + [anon_sym_or] = ACTIONS(7092), + [anon_sym_and] = ACTIONS(7092), + [anon_sym_bitor] = ACTIONS(7097), + [anon_sym_xor] = ACTIONS(7092), + [anon_sym_bitand] = ACTIONS(7097), + [anon_sym_not_eq] = ACTIONS(7097), + [anon_sym_DASH_DASH] = ACTIONS(7097), + [anon_sym_PLUS_PLUS] = ACTIONS(7097), + [anon_sym_DOT] = ACTIONS(7092), + [anon_sym_DOT_STAR] = ACTIONS(7097), + [anon_sym_DASH_GT] = ACTIONS(7092), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6999), - [anon_sym_override] = ACTIONS(6999), - [anon_sym_requires] = ACTIONS(6999), + [anon_sym_DASH_GT_STAR] = ACTIONS(7097), }, - [STATE(3640)] = { - [sym_identifier] = ACTIONS(6746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), - [anon_sym_COMMA] = ACTIONS(6751), - [aux_sym_preproc_if_token2] = ACTIONS(6751), - [aux_sym_preproc_else_token1] = ACTIONS(6751), - [aux_sym_preproc_elif_token1] = ACTIONS(6746), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6751), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6751), - [anon_sym_LPAREN2] = ACTIONS(6751), - [anon_sym_DASH] = ACTIONS(6746), - [anon_sym_PLUS] = ACTIONS(6746), - [anon_sym_STAR] = ACTIONS(6751), - [anon_sym_SLASH] = ACTIONS(6746), - [anon_sym_PERCENT] = ACTIONS(6751), - [anon_sym_PIPE_PIPE] = ACTIONS(6751), - [anon_sym_AMP_AMP] = ACTIONS(6751), - [anon_sym_PIPE] = ACTIONS(6746), - [anon_sym_CARET] = ACTIONS(6751), - [anon_sym_AMP] = ACTIONS(6746), - [anon_sym_EQ_EQ] = ACTIONS(6751), - [anon_sym_BANG_EQ] = ACTIONS(6751), - [anon_sym_GT] = ACTIONS(6746), - [anon_sym_GT_EQ] = ACTIONS(6751), - [anon_sym_LT_EQ] = ACTIONS(6746), - [anon_sym_LT] = ACTIONS(6746), - [anon_sym_LT_LT] = ACTIONS(6751), - [anon_sym_GT_GT] = ACTIONS(6751), - [anon_sym___extension__] = ACTIONS(6746), - [anon_sym___attribute__] = ACTIONS(6746), - [anon_sym___attribute] = ACTIONS(6746), - [anon_sym_COLON] = ACTIONS(6746), - [anon_sym_COLON_COLON] = ACTIONS(6751), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_LBRACK] = ACTIONS(6751), - [anon_sym_RBRACK] = ACTIONS(6751), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6746), - [anon_sym_volatile] = ACTIONS(6746), - [anon_sym_restrict] = ACTIONS(6746), - [anon_sym___restrict__] = ACTIONS(6746), - [anon_sym__Atomic] = ACTIONS(6746), - [anon_sym__Noreturn] = ACTIONS(6746), - [anon_sym_noreturn] = ACTIONS(6746), - [anon_sym__Nonnull] = ACTIONS(6746), - [anon_sym_mutable] = ACTIONS(6746), - [anon_sym_constinit] = ACTIONS(6746), - [anon_sym_consteval] = ACTIONS(6746), - [anon_sym_alignas] = ACTIONS(6746), - [anon_sym__Alignas] = ACTIONS(6746), - [anon_sym_QMARK] = ACTIONS(6751), - [anon_sym_LT_EQ_GT] = ACTIONS(6751), - [anon_sym_or] = ACTIONS(6746), - [anon_sym_and] = ACTIONS(6746), - [anon_sym_bitor] = ACTIONS(6746), - [anon_sym_xor] = ACTIONS(6746), - [anon_sym_bitand] = ACTIONS(6746), - [anon_sym_not_eq] = ACTIONS(6746), - [anon_sym_DASH_DASH] = ACTIONS(6751), - [anon_sym_PLUS_PLUS] = ACTIONS(6751), - [anon_sym_DOT] = ACTIONS(6746), - [anon_sym_DOT_STAR] = ACTIONS(6751), - [anon_sym_DASH_GT] = ACTIONS(6751), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6746), - [anon_sym_override] = ACTIONS(6746), - [anon_sym_requires] = ACTIONS(6746), + [STATE(3129)] = { + [sym_attribute_declaration] = STATE(3170), + [aux_sym_attributed_declarator_repeat1] = STATE(3170), + [sym_identifier] = ACTIONS(8833), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8835), + [anon_sym_COMMA] = ACTIONS(8835), + [anon_sym_RPAREN] = ACTIONS(8835), + [aux_sym_preproc_if_token2] = ACTIONS(8835), + [aux_sym_preproc_else_token1] = ACTIONS(8835), + [aux_sym_preproc_elif_token1] = ACTIONS(8833), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8835), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8835), + [anon_sym_LPAREN2] = ACTIONS(8835), + [anon_sym_DASH] = ACTIONS(8833), + [anon_sym_PLUS] = ACTIONS(8833), + [anon_sym_STAR] = ACTIONS(8833), + [anon_sym_SLASH] = ACTIONS(8833), + [anon_sym_PERCENT] = ACTIONS(8833), + [anon_sym_PIPE_PIPE] = ACTIONS(8835), + [anon_sym_AMP_AMP] = ACTIONS(8835), + [anon_sym_PIPE] = ACTIONS(8833), + [anon_sym_CARET] = ACTIONS(8833), + [anon_sym_AMP] = ACTIONS(8833), + [anon_sym_EQ_EQ] = ACTIONS(8835), + [anon_sym_BANG_EQ] = ACTIONS(8835), + [anon_sym_GT] = ACTIONS(8833), + [anon_sym_GT_EQ] = ACTIONS(8835), + [anon_sym_LT_EQ] = ACTIONS(8833), + [anon_sym_LT] = ACTIONS(8833), + [anon_sym_LT_LT] = ACTIONS(8833), + [anon_sym_GT_GT] = ACTIONS(8833), + [anon_sym_SEMI] = ACTIONS(8835), + [anon_sym___attribute__] = ACTIONS(8833), + [anon_sym___attribute] = ACTIONS(8833), + [anon_sym_COLON] = ACTIONS(8833), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8835), + [anon_sym_RBRACE] = ACTIONS(8835), + [anon_sym_LBRACK] = ACTIONS(8833), + [anon_sym_EQ] = ACTIONS(8833), + [anon_sym_QMARK] = ACTIONS(8835), + [anon_sym_STAR_EQ] = ACTIONS(8835), + [anon_sym_SLASH_EQ] = ACTIONS(8835), + [anon_sym_PERCENT_EQ] = ACTIONS(8835), + [anon_sym_PLUS_EQ] = ACTIONS(8835), + [anon_sym_DASH_EQ] = ACTIONS(8835), + [anon_sym_LT_LT_EQ] = ACTIONS(8835), + [anon_sym_GT_GT_EQ] = ACTIONS(8835), + [anon_sym_AMP_EQ] = ACTIONS(8835), + [anon_sym_CARET_EQ] = ACTIONS(8835), + [anon_sym_PIPE_EQ] = ACTIONS(8835), + [anon_sym_and_eq] = ACTIONS(8833), + [anon_sym_or_eq] = ACTIONS(8833), + [anon_sym_xor_eq] = ACTIONS(8833), + [anon_sym_LT_EQ_GT] = ACTIONS(8835), + [anon_sym_or] = ACTIONS(8833), + [anon_sym_and] = ACTIONS(8833), + [anon_sym_bitor] = ACTIONS(8833), + [anon_sym_xor] = ACTIONS(8833), + [anon_sym_bitand] = ACTIONS(8833), + [anon_sym_not_eq] = ACTIONS(8833), + [anon_sym_DASH_DASH] = ACTIONS(8835), + [anon_sym_PLUS_PLUS] = ACTIONS(8835), + [anon_sym_DOT] = ACTIONS(8833), + [anon_sym_DOT_STAR] = ACTIONS(8835), + [anon_sym_DASH_GT] = ACTIONS(8835), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8833), + [anon_sym_override] = ACTIONS(8833), + [anon_sym_requires] = ACTIONS(8833), + [anon_sym_COLON_RBRACK] = ACTIONS(8835), }, - [STATE(3641)] = { - [sym__abstract_declarator] = STATE(6327), - [sym_abstract_parenthesized_declarator] = STATE(6612), - [sym_abstract_pointer_declarator] = STATE(6612), - [sym_abstract_function_declarator] = STATE(6612), - [sym_abstract_array_declarator] = STATE(6612), - [sym_type_qualifier] = STATE(3734), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(2154), - [sym_abstract_reference_declarator] = STATE(6612), - [sym__function_declarator_seq] = STATE(6536), - [aux_sym__type_definition_type_repeat1] = STATE(3734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(8246), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(8248), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6497), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(8250), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6497), - [anon_sym_AMP] = ACTIONS(8252), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6497), - [anon_sym_GT_GT] = ACTIONS(6497), - [anon_sym___extension__] = ACTIONS(8254), - [anon_sym_LBRACK] = ACTIONS(8262), - [anon_sym_RBRACK] = ACTIONS(6497), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(8254), - [anon_sym_volatile] = ACTIONS(8254), - [anon_sym_restrict] = ACTIONS(8254), - [anon_sym___restrict__] = ACTIONS(8254), - [anon_sym__Atomic] = ACTIONS(8254), - [anon_sym__Noreturn] = ACTIONS(8254), - [anon_sym_noreturn] = ACTIONS(8254), - [anon_sym__Nonnull] = ACTIONS(8254), - [anon_sym_mutable] = ACTIONS(8254), - [anon_sym_constinit] = ACTIONS(8254), - [anon_sym_consteval] = ACTIONS(8254), - [anon_sym_alignas] = ACTIONS(8264), - [anon_sym__Alignas] = ACTIONS(8264), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6497), - [anon_sym_and] = ACTIONS(6497), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6497), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6497), - [anon_sym_override] = ACTIONS(6497), - [anon_sym_requires] = ACTIONS(6497), + [STATE(3130)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7661), + [anon_sym_COMMA] = ACTIONS(7661), + [anon_sym_LPAREN2] = ACTIONS(7661), + [anon_sym_DASH] = ACTIONS(7659), + [anon_sym_PLUS] = ACTIONS(7659), + [anon_sym_STAR] = ACTIONS(7659), + [anon_sym_SLASH] = ACTIONS(7659), + [anon_sym_PERCENT] = ACTIONS(7659), + [anon_sym_PIPE_PIPE] = ACTIONS(7661), + [anon_sym_AMP_AMP] = ACTIONS(7661), + [anon_sym_PIPE] = ACTIONS(7659), + [anon_sym_CARET] = ACTIONS(7659), + [anon_sym_AMP] = ACTIONS(7659), + [anon_sym_EQ_EQ] = ACTIONS(7661), + [anon_sym_BANG_EQ] = ACTIONS(7661), + [anon_sym_GT] = ACTIONS(7659), + [anon_sym_GT_EQ] = ACTIONS(7661), + [anon_sym_LT_EQ] = ACTIONS(7659), + [anon_sym_LT] = ACTIONS(7659), + [anon_sym_LT_LT] = ACTIONS(7659), + [anon_sym_GT_GT] = ACTIONS(7659), + [anon_sym___extension__] = ACTIONS(7661), + [anon_sym_LBRACE] = ACTIONS(7661), + [anon_sym_LBRACK] = ACTIONS(7661), + [anon_sym_RBRACK] = ACTIONS(7661), + [anon_sym_EQ] = ACTIONS(7659), + [anon_sym_const] = ACTIONS(7659), + [anon_sym_constexpr] = ACTIONS(7661), + [anon_sym_volatile] = ACTIONS(7661), + [anon_sym_restrict] = ACTIONS(7661), + [anon_sym___restrict__] = ACTIONS(7661), + [anon_sym__Atomic] = ACTIONS(7661), + [anon_sym__Noreturn] = ACTIONS(7661), + [anon_sym_noreturn] = ACTIONS(7661), + [anon_sym__Nonnull] = ACTIONS(7661), + [anon_sym_mutable] = ACTIONS(7661), + [anon_sym_constinit] = ACTIONS(7661), + [anon_sym_consteval] = ACTIONS(7661), + [anon_sym_alignas] = ACTIONS(7661), + [anon_sym__Alignas] = ACTIONS(7661), + [anon_sym_QMARK] = ACTIONS(7661), + [anon_sym_STAR_EQ] = ACTIONS(7661), + [anon_sym_SLASH_EQ] = ACTIONS(7661), + [anon_sym_PERCENT_EQ] = ACTIONS(7661), + [anon_sym_PLUS_EQ] = ACTIONS(7661), + [anon_sym_DASH_EQ] = ACTIONS(7661), + [anon_sym_LT_LT_EQ] = ACTIONS(7661), + [anon_sym_GT_GT_EQ] = ACTIONS(7661), + [anon_sym_AMP_EQ] = ACTIONS(7661), + [anon_sym_CARET_EQ] = ACTIONS(7661), + [anon_sym_PIPE_EQ] = ACTIONS(7661), + [anon_sym_and_eq] = ACTIONS(7661), + [anon_sym_or_eq] = ACTIONS(7661), + [anon_sym_xor_eq] = ACTIONS(7661), + [anon_sym_LT_EQ_GT] = ACTIONS(7661), + [anon_sym_or] = ACTIONS(7659), + [anon_sym_and] = ACTIONS(7659), + [anon_sym_bitor] = ACTIONS(7661), + [anon_sym_xor] = ACTIONS(7659), + [anon_sym_bitand] = ACTIONS(7661), + [anon_sym_not_eq] = ACTIONS(7661), + [anon_sym_DASH_DASH] = ACTIONS(7661), + [anon_sym_PLUS_PLUS] = ACTIONS(7661), + [anon_sym_DOT] = ACTIONS(7659), + [anon_sym_DOT_STAR] = ACTIONS(7661), + [anon_sym_DASH_GT] = ACTIONS(7661), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7661), + [anon_sym_override] = ACTIONS(7661), + [anon_sym_requires] = ACTIONS(7661), }, - [STATE(3642)] = { - [sym__abstract_declarator] = STATE(6385), - [sym_abstract_parenthesized_declarator] = STATE(6612), - [sym_abstract_pointer_declarator] = STATE(6612), - [sym_abstract_function_declarator] = STATE(6612), - [sym_abstract_array_declarator] = STATE(6612), - [sym_type_qualifier] = STATE(3734), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(2154), - [sym_abstract_reference_declarator] = STATE(6612), - [sym__function_declarator_seq] = STATE(6536), - [aux_sym__type_definition_type_repeat1] = STATE(3734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), - [anon_sym_COMMA] = ACTIONS(7003), - [anon_sym_LPAREN2] = ACTIONS(8246), - [anon_sym_DASH] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(8248), - [anon_sym_SLASH] = ACTIONS(7005), - [anon_sym_PERCENT] = ACTIONS(7003), - [anon_sym_PIPE_PIPE] = ACTIONS(7003), - [anon_sym_AMP_AMP] = ACTIONS(8250), - [anon_sym_PIPE] = ACTIONS(7005), - [anon_sym_CARET] = ACTIONS(7003), - [anon_sym_AMP] = ACTIONS(8252), - [anon_sym_EQ_EQ] = ACTIONS(7003), - [anon_sym_BANG_EQ] = ACTIONS(7003), - [anon_sym_GT] = ACTIONS(7005), - [anon_sym_GT_EQ] = ACTIONS(7003), - [anon_sym_LT_EQ] = ACTIONS(7005), - [anon_sym_LT] = ACTIONS(7005), - [anon_sym_LT_LT] = ACTIONS(7003), - [anon_sym_GT_GT] = ACTIONS(7003), - [anon_sym___extension__] = ACTIONS(8254), - [anon_sym_LBRACK] = ACTIONS(8262), - [anon_sym_RBRACK] = ACTIONS(7003), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(8254), - [anon_sym_volatile] = ACTIONS(8254), - [anon_sym_restrict] = ACTIONS(8254), - [anon_sym___restrict__] = ACTIONS(8254), - [anon_sym__Atomic] = ACTIONS(8254), - [anon_sym__Noreturn] = ACTIONS(8254), - [anon_sym_noreturn] = ACTIONS(8254), - [anon_sym__Nonnull] = ACTIONS(8254), - [anon_sym_mutable] = ACTIONS(8254), - [anon_sym_constinit] = ACTIONS(8254), - [anon_sym_consteval] = ACTIONS(8254), - [anon_sym_alignas] = ACTIONS(8264), - [anon_sym__Alignas] = ACTIONS(8264), - [anon_sym_QMARK] = ACTIONS(7003), - [anon_sym_LT_EQ_GT] = ACTIONS(7003), - [anon_sym_or] = ACTIONS(7003), - [anon_sym_and] = ACTIONS(7003), - [anon_sym_bitor] = ACTIONS(7003), - [anon_sym_xor] = ACTIONS(7003), - [anon_sym_bitand] = ACTIONS(7003), - [anon_sym_not_eq] = ACTIONS(7003), - [anon_sym_DASH_DASH] = ACTIONS(7003), - [anon_sym_PLUS_PLUS] = ACTIONS(7003), - [anon_sym_DOT] = ACTIONS(7005), - [anon_sym_DOT_STAR] = ACTIONS(7003), - [anon_sym_DASH_GT] = ACTIONS(7003), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7003), - [anon_sym_override] = ACTIONS(7003), - [anon_sym_requires] = ACTIONS(7003), + [STATE(3131)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6605), + [anon_sym_PLUS] = ACTIONS(6605), + [anon_sym_STAR] = ACTIONS(6605), + [anon_sym_SLASH] = ACTIONS(6605), + [anon_sym_PERCENT] = ACTIONS(6605), + [anon_sym_PIPE_PIPE] = ACTIONS(6598), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6605), + [anon_sym_CARET] = ACTIONS(6605), + [anon_sym_AMP] = ACTIONS(6605), + [anon_sym_EQ_EQ] = ACTIONS(6598), + [anon_sym_BANG_EQ] = ACTIONS(6598), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6598), + [anon_sym_LT_EQ] = ACTIONS(6605), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6605), + [anon_sym_GT_GT] = ACTIONS(6605), + [anon_sym___extension__] = ACTIONS(6601), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_LBRACK] = ACTIONS(6598), + [anon_sym_RBRACK] = ACTIONS(6598), + [anon_sym_EQ] = ACTIONS(6605), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6601), + [anon_sym_volatile] = ACTIONS(6601), + [anon_sym_restrict] = ACTIONS(6601), + [anon_sym___restrict__] = ACTIONS(6601), + [anon_sym__Atomic] = ACTIONS(6601), + [anon_sym__Noreturn] = ACTIONS(6601), + [anon_sym_noreturn] = ACTIONS(6601), + [anon_sym__Nonnull] = ACTIONS(6601), + [anon_sym_mutable] = ACTIONS(6601), + [anon_sym_constinit] = ACTIONS(6601), + [anon_sym_consteval] = ACTIONS(6601), + [anon_sym_alignas] = ACTIONS(6601), + [anon_sym__Alignas] = ACTIONS(6601), + [anon_sym_QMARK] = ACTIONS(6598), + [anon_sym_STAR_EQ] = ACTIONS(6598), + [anon_sym_SLASH_EQ] = ACTIONS(6598), + [anon_sym_PERCENT_EQ] = ACTIONS(6598), + [anon_sym_PLUS_EQ] = ACTIONS(6598), + [anon_sym_DASH_EQ] = ACTIONS(6598), + [anon_sym_LT_LT_EQ] = ACTIONS(6598), + [anon_sym_GT_GT_EQ] = ACTIONS(6598), + [anon_sym_AMP_EQ] = ACTIONS(6598), + [anon_sym_CARET_EQ] = ACTIONS(6598), + [anon_sym_PIPE_EQ] = ACTIONS(6598), + [anon_sym_and_eq] = ACTIONS(6598), + [anon_sym_or_eq] = ACTIONS(6598), + [anon_sym_xor_eq] = ACTIONS(6598), + [anon_sym_LT_EQ_GT] = ACTIONS(6598), + [anon_sym_or] = ACTIONS(6605), + [anon_sym_and] = ACTIONS(6605), + [anon_sym_bitor] = ACTIONS(6598), + [anon_sym_xor] = ACTIONS(6605), + [anon_sym_bitand] = ACTIONS(6598), + [anon_sym_not_eq] = ACTIONS(6598), + [anon_sym_DASH_DASH] = ACTIONS(6598), + [anon_sym_PLUS_PLUS] = ACTIONS(6598), + [anon_sym_DOT] = ACTIONS(6605), + [anon_sym_DOT_STAR] = ACTIONS(6598), + [anon_sym_DASH_GT] = ACTIONS(6598), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6601), + [anon_sym_decltype] = ACTIONS(6601), }, - [STATE(3643)] = { - [sym__abstract_declarator] = STATE(6319), - [sym_abstract_parenthesized_declarator] = STATE(6612), - [sym_abstract_pointer_declarator] = STATE(6612), - [sym_abstract_function_declarator] = STATE(6612), - [sym_abstract_array_declarator] = STATE(6612), - [sym_type_qualifier] = STATE(3734), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(2154), - [sym_abstract_reference_declarator] = STATE(6612), - [sym__function_declarator_seq] = STATE(6536), - [aux_sym__type_definition_type_repeat1] = STATE(3734), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), - [anon_sym_COMMA] = ACTIONS(7007), - [anon_sym_LPAREN2] = ACTIONS(8246), - [anon_sym_DASH] = ACTIONS(7009), - [anon_sym_PLUS] = ACTIONS(7009), - [anon_sym_STAR] = ACTIONS(8248), - [anon_sym_SLASH] = ACTIONS(7009), - [anon_sym_PERCENT] = ACTIONS(7007), - [anon_sym_PIPE_PIPE] = ACTIONS(7007), - [anon_sym_AMP_AMP] = ACTIONS(8250), - [anon_sym_PIPE] = ACTIONS(7009), - [anon_sym_CARET] = ACTIONS(7007), - [anon_sym_AMP] = ACTIONS(8252), - [anon_sym_EQ_EQ] = ACTIONS(7007), - [anon_sym_BANG_EQ] = ACTIONS(7007), - [anon_sym_GT] = ACTIONS(7009), - [anon_sym_GT_EQ] = ACTIONS(7007), - [anon_sym_LT_EQ] = ACTIONS(7009), - [anon_sym_LT] = ACTIONS(7009), - [anon_sym_LT_LT] = ACTIONS(7007), - [anon_sym_GT_GT] = ACTIONS(7007), - [anon_sym___extension__] = ACTIONS(8254), - [anon_sym_LBRACK] = ACTIONS(8262), - [anon_sym_RBRACK] = ACTIONS(7007), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(8254), - [anon_sym_volatile] = ACTIONS(8254), - [anon_sym_restrict] = ACTIONS(8254), - [anon_sym___restrict__] = ACTIONS(8254), - [anon_sym__Atomic] = ACTIONS(8254), - [anon_sym__Noreturn] = ACTIONS(8254), - [anon_sym_noreturn] = ACTIONS(8254), - [anon_sym__Nonnull] = ACTIONS(8254), - [anon_sym_mutable] = ACTIONS(8254), - [anon_sym_constinit] = ACTIONS(8254), - [anon_sym_consteval] = ACTIONS(8254), - [anon_sym_alignas] = ACTIONS(8264), - [anon_sym__Alignas] = ACTIONS(8264), - [anon_sym_QMARK] = ACTIONS(7007), - [anon_sym_LT_EQ_GT] = ACTIONS(7007), - [anon_sym_or] = ACTIONS(7007), - [anon_sym_and] = ACTIONS(7007), - [anon_sym_bitor] = ACTIONS(7007), - [anon_sym_xor] = ACTIONS(7007), - [anon_sym_bitand] = ACTIONS(7007), - [anon_sym_not_eq] = ACTIONS(7007), - [anon_sym_DASH_DASH] = ACTIONS(7007), - [anon_sym_PLUS_PLUS] = ACTIONS(7007), - [anon_sym_DOT] = ACTIONS(7009), - [anon_sym_DOT_STAR] = ACTIONS(7007), - [anon_sym_DASH_GT] = ACTIONS(7007), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7007), - [anon_sym_override] = ACTIONS(7007), - [anon_sym_requires] = ACTIONS(7007), + [STATE(3132)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7657), + [anon_sym_COMMA] = ACTIONS(7657), + [anon_sym_LPAREN2] = ACTIONS(7657), + [anon_sym_DASH] = ACTIONS(7655), + [anon_sym_PLUS] = ACTIONS(7655), + [anon_sym_STAR] = ACTIONS(7655), + [anon_sym_SLASH] = ACTIONS(7655), + [anon_sym_PERCENT] = ACTIONS(7655), + [anon_sym_PIPE_PIPE] = ACTIONS(7657), + [anon_sym_AMP_AMP] = ACTIONS(7657), + [anon_sym_PIPE] = ACTIONS(7655), + [anon_sym_CARET] = ACTIONS(7655), + [anon_sym_AMP] = ACTIONS(7655), + [anon_sym_EQ_EQ] = ACTIONS(7657), + [anon_sym_BANG_EQ] = ACTIONS(7657), + [anon_sym_GT] = ACTIONS(7655), + [anon_sym_GT_EQ] = ACTIONS(7655), + [anon_sym_LT_EQ] = ACTIONS(7655), + [anon_sym_LT] = ACTIONS(7655), + [anon_sym_LT_LT] = ACTIONS(7655), + [anon_sym_GT_GT] = ACTIONS(7655), + [anon_sym___extension__] = ACTIONS(7657), + [anon_sym_LBRACE] = ACTIONS(7657), + [anon_sym_LBRACK] = ACTIONS(7657), + [anon_sym_EQ] = ACTIONS(7655), + [anon_sym_const] = ACTIONS(7655), + [anon_sym_constexpr] = ACTIONS(7657), + [anon_sym_volatile] = ACTIONS(7657), + [anon_sym_restrict] = ACTIONS(7657), + [anon_sym___restrict__] = ACTIONS(7657), + [anon_sym__Atomic] = ACTIONS(7657), + [anon_sym__Noreturn] = ACTIONS(7657), + [anon_sym_noreturn] = ACTIONS(7657), + [anon_sym__Nonnull] = ACTIONS(7657), + [anon_sym_mutable] = ACTIONS(7657), + [anon_sym_constinit] = ACTIONS(7657), + [anon_sym_consteval] = ACTIONS(7657), + [anon_sym_alignas] = ACTIONS(7657), + [anon_sym__Alignas] = ACTIONS(7657), + [anon_sym_QMARK] = ACTIONS(7657), + [anon_sym_STAR_EQ] = ACTIONS(7657), + [anon_sym_SLASH_EQ] = ACTIONS(7657), + [anon_sym_PERCENT_EQ] = ACTIONS(7657), + [anon_sym_PLUS_EQ] = ACTIONS(7657), + [anon_sym_DASH_EQ] = ACTIONS(7657), + [anon_sym_LT_LT_EQ] = ACTIONS(7657), + [anon_sym_GT_GT_EQ] = ACTIONS(7655), + [anon_sym_AMP_EQ] = ACTIONS(7657), + [anon_sym_CARET_EQ] = ACTIONS(7657), + [anon_sym_PIPE_EQ] = ACTIONS(7657), + [anon_sym_and_eq] = ACTIONS(7657), + [anon_sym_or_eq] = ACTIONS(7657), + [anon_sym_xor_eq] = ACTIONS(7657), + [anon_sym_LT_EQ_GT] = ACTIONS(7657), + [anon_sym_or] = ACTIONS(7655), + [anon_sym_and] = ACTIONS(7655), + [anon_sym_bitor] = ACTIONS(7657), + [anon_sym_xor] = ACTIONS(7655), + [anon_sym_bitand] = ACTIONS(7657), + [anon_sym_not_eq] = ACTIONS(7657), + [anon_sym_DASH_DASH] = ACTIONS(7657), + [anon_sym_PLUS_PLUS] = ACTIONS(7657), + [anon_sym_DOT] = ACTIONS(7655), + [anon_sym_DOT_STAR] = ACTIONS(7657), + [anon_sym_DASH_GT] = ACTIONS(7657), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_override] = ACTIONS(7657), + [anon_sym_GT2] = ACTIONS(7657), + [anon_sym_requires] = ACTIONS(7657), }, - [STATE(3644)] = { - [sym__abstract_declarator] = STATE(6365), - [sym_abstract_parenthesized_declarator] = STATE(6488), - [sym_abstract_pointer_declarator] = STATE(6488), - [sym_abstract_function_declarator] = STATE(6488), - [sym_abstract_array_declarator] = STATE(6488), - [sym_type_qualifier] = STATE(3628), - [sym_alignas_qualifier] = STATE(3785), - [sym_parameter_list] = STATE(2153), - [sym_abstract_reference_declarator] = STATE(6488), - [sym__function_declarator_seq] = STATE(6497), - [aux_sym__type_definition_type_repeat1] = STATE(3628), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), - [anon_sym_COMMA] = ACTIONS(6991), - [anon_sym_LPAREN2] = ACTIONS(8224), - [anon_sym_DASH] = ACTIONS(6993), - [anon_sym_PLUS] = ACTIONS(6993), - [anon_sym_STAR] = ACTIONS(8226), - [anon_sym_SLASH] = ACTIONS(6993), - [anon_sym_PERCENT] = ACTIONS(6991), - [anon_sym_PIPE_PIPE] = ACTIONS(6991), - [anon_sym_AMP_AMP] = ACTIONS(8228), - [anon_sym_PIPE] = ACTIONS(6993), - [anon_sym_CARET] = ACTIONS(6991), - [anon_sym_AMP] = ACTIONS(8230), - [anon_sym_EQ_EQ] = ACTIONS(6991), - [anon_sym_BANG_EQ] = ACTIONS(6991), - [anon_sym_GT] = ACTIONS(6993), - [anon_sym_GT_EQ] = ACTIONS(6993), - [anon_sym_LT_EQ] = ACTIONS(6993), - [anon_sym_LT] = ACTIONS(6993), - [anon_sym_LT_LT] = ACTIONS(6991), - [anon_sym_GT_GT] = ACTIONS(6993), - [anon_sym___extension__] = ACTIONS(8232), - [anon_sym_LBRACK] = ACTIONS(8240), - [anon_sym_const] = ACTIONS(8242), - [anon_sym_constexpr] = ACTIONS(8232), - [anon_sym_volatile] = ACTIONS(8232), - [anon_sym_restrict] = ACTIONS(8232), - [anon_sym___restrict__] = ACTIONS(8232), - [anon_sym__Atomic] = ACTIONS(8232), - [anon_sym__Noreturn] = ACTIONS(8232), - [anon_sym_noreturn] = ACTIONS(8232), - [anon_sym__Nonnull] = ACTIONS(8232), - [anon_sym_mutable] = ACTIONS(8232), - [anon_sym_constinit] = ACTIONS(8232), - [anon_sym_consteval] = ACTIONS(8232), - [anon_sym_alignas] = ACTIONS(8244), - [anon_sym__Alignas] = ACTIONS(8244), - [anon_sym_QMARK] = ACTIONS(6991), - [anon_sym_LT_EQ_GT] = ACTIONS(6991), - [anon_sym_or] = ACTIONS(6991), - [anon_sym_and] = ACTIONS(6991), - [anon_sym_bitor] = ACTIONS(6991), - [anon_sym_xor] = ACTIONS(6991), - [anon_sym_bitand] = ACTIONS(6991), - [anon_sym_not_eq] = ACTIONS(6991), - [anon_sym_DASH_DASH] = ACTIONS(6991), - [anon_sym_PLUS_PLUS] = ACTIONS(6991), - [anon_sym_DOT] = ACTIONS(6993), - [anon_sym_DOT_STAR] = ACTIONS(6991), - [anon_sym_DASH_GT] = ACTIONS(6991), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6991), - [anon_sym_override] = ACTIONS(6991), - [anon_sym_GT2] = ACTIONS(6991), - [anon_sym_requires] = ACTIONS(6991), + [STATE(3133)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), + [anon_sym_COMMA] = ACTIONS(7563), + [anon_sym_LPAREN2] = ACTIONS(7563), + [anon_sym_DASH] = ACTIONS(7561), + [anon_sym_PLUS] = ACTIONS(7561), + [anon_sym_STAR] = ACTIONS(7561), + [anon_sym_SLASH] = ACTIONS(7561), + [anon_sym_PERCENT] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_AMP_AMP] = ACTIONS(7563), + [anon_sym_PIPE] = ACTIONS(7561), + [anon_sym_CARET] = ACTIONS(7561), + [anon_sym_AMP] = ACTIONS(7561), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_GT] = ACTIONS(7561), + [anon_sym_GT_EQ] = ACTIONS(7561), + [anon_sym_LT_EQ] = ACTIONS(7561), + [anon_sym_LT] = ACTIONS(7561), + [anon_sym_LT_LT] = ACTIONS(7561), + [anon_sym_GT_GT] = ACTIONS(7561), + [anon_sym___extension__] = ACTIONS(7563), + [anon_sym_LBRACE] = ACTIONS(7563), + [anon_sym_LBRACK] = ACTIONS(7563), + [anon_sym_EQ] = ACTIONS(7561), + [anon_sym_const] = ACTIONS(7561), + [anon_sym_constexpr] = ACTIONS(7563), + [anon_sym_volatile] = ACTIONS(7563), + [anon_sym_restrict] = ACTIONS(7563), + [anon_sym___restrict__] = ACTIONS(7563), + [anon_sym__Atomic] = ACTIONS(7563), + [anon_sym__Noreturn] = ACTIONS(7563), + [anon_sym_noreturn] = ACTIONS(7563), + [anon_sym__Nonnull] = ACTIONS(7563), + [anon_sym_mutable] = ACTIONS(7563), + [anon_sym_constinit] = ACTIONS(7563), + [anon_sym_consteval] = ACTIONS(7563), + [anon_sym_alignas] = ACTIONS(7563), + [anon_sym__Alignas] = ACTIONS(7563), + [anon_sym_QMARK] = ACTIONS(7563), + [anon_sym_STAR_EQ] = ACTIONS(7563), + [anon_sym_SLASH_EQ] = ACTIONS(7563), + [anon_sym_PERCENT_EQ] = ACTIONS(7563), + [anon_sym_PLUS_EQ] = ACTIONS(7563), + [anon_sym_DASH_EQ] = ACTIONS(7563), + [anon_sym_LT_LT_EQ] = ACTIONS(7563), + [anon_sym_GT_GT_EQ] = ACTIONS(7561), + [anon_sym_AMP_EQ] = ACTIONS(7563), + [anon_sym_CARET_EQ] = ACTIONS(7563), + [anon_sym_PIPE_EQ] = ACTIONS(7563), + [anon_sym_and_eq] = ACTIONS(7563), + [anon_sym_or_eq] = ACTIONS(7563), + [anon_sym_xor_eq] = ACTIONS(7563), + [anon_sym_LT_EQ_GT] = ACTIONS(7563), + [anon_sym_or] = ACTIONS(7561), + [anon_sym_and] = ACTIONS(7561), + [anon_sym_bitor] = ACTIONS(7563), + [anon_sym_xor] = ACTIONS(7561), + [anon_sym_bitand] = ACTIONS(7563), + [anon_sym_not_eq] = ACTIONS(7563), + [anon_sym_DASH_DASH] = ACTIONS(7563), + [anon_sym_PLUS_PLUS] = ACTIONS(7563), + [anon_sym_DOT] = ACTIONS(7561), + [anon_sym_DOT_STAR] = ACTIONS(7563), + [anon_sym_DASH_GT] = ACTIONS(7563), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7563), + [anon_sym_override] = ACTIONS(7563), + [anon_sym_GT2] = ACTIONS(7563), + [anon_sym_requires] = ACTIONS(7563), }, - [STATE(3645)] = { - [sym__abstract_declarator] = STATE(6381), - [sym_abstract_parenthesized_declarator] = STATE(6612), - [sym_abstract_pointer_declarator] = STATE(6612), - [sym_abstract_function_declarator] = STATE(6612), - [sym_abstract_array_declarator] = STATE(6612), - [sym_type_qualifier] = STATE(3638), - [sym_alignas_qualifier] = STATE(4050), - [sym_parameter_list] = STATE(2154), - [sym_abstract_reference_declarator] = STATE(6612), - [sym__function_declarator_seq] = STATE(6536), - [aux_sym__type_definition_type_repeat1] = STATE(3638), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), - [anon_sym_COMMA] = ACTIONS(6991), - [anon_sym_LPAREN2] = ACTIONS(8246), - [anon_sym_DASH] = ACTIONS(6993), - [anon_sym_PLUS] = ACTIONS(6993), - [anon_sym_STAR] = ACTIONS(8248), - [anon_sym_SLASH] = ACTIONS(6993), - [anon_sym_PERCENT] = ACTIONS(6991), - [anon_sym_PIPE_PIPE] = ACTIONS(6991), - [anon_sym_AMP_AMP] = ACTIONS(8250), - [anon_sym_PIPE] = ACTIONS(6993), - [anon_sym_CARET] = ACTIONS(6991), - [anon_sym_AMP] = ACTIONS(8252), - [anon_sym_EQ_EQ] = ACTIONS(6991), - [anon_sym_BANG_EQ] = ACTIONS(6991), - [anon_sym_GT] = ACTIONS(6993), - [anon_sym_GT_EQ] = ACTIONS(6991), - [anon_sym_LT_EQ] = ACTIONS(6993), - [anon_sym_LT] = ACTIONS(6993), - [anon_sym_LT_LT] = ACTIONS(6991), - [anon_sym_GT_GT] = ACTIONS(6991), - [anon_sym___extension__] = ACTIONS(8254), - [anon_sym_LBRACK] = ACTIONS(8262), - [anon_sym_RBRACK] = ACTIONS(6991), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(8254), - [anon_sym_volatile] = ACTIONS(8254), - [anon_sym_restrict] = ACTIONS(8254), - [anon_sym___restrict__] = ACTIONS(8254), - [anon_sym__Atomic] = ACTIONS(8254), - [anon_sym__Noreturn] = ACTIONS(8254), - [anon_sym_noreturn] = ACTIONS(8254), - [anon_sym__Nonnull] = ACTIONS(8254), - [anon_sym_mutable] = ACTIONS(8254), - [anon_sym_constinit] = ACTIONS(8254), - [anon_sym_consteval] = ACTIONS(8254), - [anon_sym_alignas] = ACTIONS(8264), - [anon_sym__Alignas] = ACTIONS(8264), - [anon_sym_QMARK] = ACTIONS(6991), - [anon_sym_LT_EQ_GT] = ACTIONS(6991), - [anon_sym_or] = ACTIONS(6991), - [anon_sym_and] = ACTIONS(6991), - [anon_sym_bitor] = ACTIONS(6991), - [anon_sym_xor] = ACTIONS(6991), - [anon_sym_bitand] = ACTIONS(6991), - [anon_sym_not_eq] = ACTIONS(6991), - [anon_sym_DASH_DASH] = ACTIONS(6991), - [anon_sym_PLUS_PLUS] = ACTIONS(6991), - [anon_sym_DOT] = ACTIONS(6993), - [anon_sym_DOT_STAR] = ACTIONS(6991), - [anon_sym_DASH_GT] = ACTIONS(6991), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6991), - [anon_sym_override] = ACTIONS(6991), - [anon_sym_requires] = ACTIONS(6991), + [STATE(3134)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7773), + [anon_sym_COMMA] = ACTIONS(7773), + [anon_sym_LPAREN2] = ACTIONS(7773), + [anon_sym_DASH] = ACTIONS(7771), + [anon_sym_PLUS] = ACTIONS(7771), + [anon_sym_STAR] = ACTIONS(7771), + [anon_sym_SLASH] = ACTIONS(7771), + [anon_sym_PERCENT] = ACTIONS(7771), + [anon_sym_PIPE_PIPE] = ACTIONS(7773), + [anon_sym_AMP_AMP] = ACTIONS(7773), + [anon_sym_PIPE] = ACTIONS(7771), + [anon_sym_CARET] = ACTIONS(7771), + [anon_sym_AMP] = ACTIONS(7771), + [anon_sym_EQ_EQ] = ACTIONS(7773), + [anon_sym_BANG_EQ] = ACTIONS(7773), + [anon_sym_GT] = ACTIONS(7771), + [anon_sym_GT_EQ] = ACTIONS(7773), + [anon_sym_LT_EQ] = ACTIONS(7771), + [anon_sym_LT] = ACTIONS(7771), + [anon_sym_LT_LT] = ACTIONS(7771), + [anon_sym_GT_GT] = ACTIONS(7771), + [anon_sym___extension__] = ACTIONS(7773), + [anon_sym_LBRACE] = ACTIONS(7773), + [anon_sym_LBRACK] = ACTIONS(7773), + [anon_sym_RBRACK] = ACTIONS(7773), + [anon_sym_EQ] = ACTIONS(7771), + [anon_sym_const] = ACTIONS(7771), + [anon_sym_constexpr] = ACTIONS(7773), + [anon_sym_volatile] = ACTIONS(7773), + [anon_sym_restrict] = ACTIONS(7773), + [anon_sym___restrict__] = ACTIONS(7773), + [anon_sym__Atomic] = ACTIONS(7773), + [anon_sym__Noreturn] = ACTIONS(7773), + [anon_sym_noreturn] = ACTIONS(7773), + [anon_sym__Nonnull] = ACTIONS(7773), + [anon_sym_mutable] = ACTIONS(7773), + [anon_sym_constinit] = ACTIONS(7773), + [anon_sym_consteval] = ACTIONS(7773), + [anon_sym_alignas] = ACTIONS(7773), + [anon_sym__Alignas] = ACTIONS(7773), + [anon_sym_QMARK] = ACTIONS(7773), + [anon_sym_STAR_EQ] = ACTIONS(7773), + [anon_sym_SLASH_EQ] = ACTIONS(7773), + [anon_sym_PERCENT_EQ] = ACTIONS(7773), + [anon_sym_PLUS_EQ] = ACTIONS(7773), + [anon_sym_DASH_EQ] = ACTIONS(7773), + [anon_sym_LT_LT_EQ] = ACTIONS(7773), + [anon_sym_GT_GT_EQ] = ACTIONS(7773), + [anon_sym_AMP_EQ] = ACTIONS(7773), + [anon_sym_CARET_EQ] = ACTIONS(7773), + [anon_sym_PIPE_EQ] = ACTIONS(7773), + [anon_sym_and_eq] = ACTIONS(7773), + [anon_sym_or_eq] = ACTIONS(7773), + [anon_sym_xor_eq] = ACTIONS(7773), + [anon_sym_LT_EQ_GT] = ACTIONS(7773), + [anon_sym_or] = ACTIONS(7771), + [anon_sym_and] = ACTIONS(7771), + [anon_sym_bitor] = ACTIONS(7773), + [anon_sym_xor] = ACTIONS(7771), + [anon_sym_bitand] = ACTIONS(7773), + [anon_sym_not_eq] = ACTIONS(7773), + [anon_sym_DASH_DASH] = ACTIONS(7773), + [anon_sym_PLUS_PLUS] = ACTIONS(7773), + [anon_sym_DOT] = ACTIONS(7771), + [anon_sym_DOT_STAR] = ACTIONS(7773), + [anon_sym_DASH_GT] = ACTIONS(7773), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7773), + [anon_sym_override] = ACTIONS(7773), + [anon_sym_requires] = ACTIONS(7773), }, - [STATE(3646)] = { - [sym_identifier] = ACTIONS(6949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), - [anon_sym_COMMA] = ACTIONS(6951), - [anon_sym_RPAREN] = ACTIONS(6951), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_TILDE] = ACTIONS(6951), - [anon_sym_STAR] = ACTIONS(6951), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym_SEMI] = ACTIONS(6951), - [anon_sym___extension__] = ACTIONS(6949), - [anon_sym_virtual] = ACTIONS(6949), - [anon_sym_extern] = ACTIONS(6949), - [anon_sym___attribute__] = ACTIONS(6949), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_COLON] = ACTIONS(6949), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6951), - [anon_sym___declspec] = ACTIONS(6949), - [anon_sym___based] = ACTIONS(6949), - [anon_sym___cdecl] = ACTIONS(6949), - [anon_sym___clrcall] = ACTIONS(6949), - [anon_sym___stdcall] = ACTIONS(6949), - [anon_sym___fastcall] = ACTIONS(6949), - [anon_sym___thiscall] = ACTIONS(6949), - [anon_sym___vectorcall] = ACTIONS(6949), - [anon_sym_LBRACE] = ACTIONS(6951), - [anon_sym_LBRACK] = ACTIONS(6949), - [anon_sym_static] = ACTIONS(6949), - [anon_sym_EQ] = ACTIONS(6951), - [anon_sym_register] = ACTIONS(6949), - [anon_sym_inline] = ACTIONS(6949), - [anon_sym___inline] = ACTIONS(6949), - [anon_sym___inline__] = ACTIONS(6949), - [anon_sym___forceinline] = ACTIONS(6949), - [anon_sym_thread_local] = ACTIONS(6949), - [anon_sym___thread] = ACTIONS(6949), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6949), - [anon_sym_volatile] = ACTIONS(6949), - [anon_sym_restrict] = ACTIONS(6949), - [anon_sym___restrict__] = ACTIONS(6949), - [anon_sym__Atomic] = ACTIONS(6949), - [anon_sym__Noreturn] = ACTIONS(6949), - [anon_sym_noreturn] = ACTIONS(6949), - [anon_sym__Nonnull] = ACTIONS(6949), - [anon_sym_mutable] = ACTIONS(6949), - [anon_sym_constinit] = ACTIONS(6949), - [anon_sym_consteval] = ACTIONS(6949), - [anon_sym_alignas] = ACTIONS(6949), - [anon_sym__Alignas] = ACTIONS(6949), - [anon_sym_or] = ACTIONS(6949), - [anon_sym_and] = ACTIONS(6949), - [anon_sym_DASH_GT] = ACTIONS(6951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6949), - [anon_sym_decltype] = ACTIONS(6949), - [anon_sym_final] = ACTIONS(6949), - [anon_sym_override] = ACTIONS(6949), - [anon_sym_template] = ACTIONS(6949), - [anon_sym_GT2] = ACTIONS(6951), - [anon_sym_operator] = ACTIONS(6949), - [anon_sym_noexcept] = ACTIONS(6949), - [anon_sym_throw] = ACTIONS(6949), - [anon_sym_LBRACK_COLON] = ACTIONS(6951), + [STATE(3135)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7649), + [anon_sym_COMMA] = ACTIONS(7649), + [anon_sym_RPAREN] = ACTIONS(7649), + [anon_sym_LPAREN2] = ACTIONS(7649), + [anon_sym_DASH] = ACTIONS(7647), + [anon_sym_PLUS] = ACTIONS(7647), + [anon_sym_STAR] = ACTIONS(7647), + [anon_sym_SLASH] = ACTIONS(7647), + [anon_sym_PERCENT] = ACTIONS(7647), + [anon_sym_PIPE_PIPE] = ACTIONS(7649), + [anon_sym_AMP_AMP] = ACTIONS(7649), + [anon_sym_PIPE] = ACTIONS(7647), + [anon_sym_CARET] = ACTIONS(7647), + [anon_sym_AMP] = ACTIONS(7647), + [anon_sym_EQ_EQ] = ACTIONS(7649), + [anon_sym_BANG_EQ] = ACTIONS(7649), + [anon_sym_GT] = ACTIONS(7647), + [anon_sym_GT_EQ] = ACTIONS(7649), + [anon_sym_LT_EQ] = ACTIONS(7647), + [anon_sym_LT] = ACTIONS(7647), + [anon_sym_LT_LT] = ACTIONS(7647), + [anon_sym_GT_GT] = ACTIONS(7647), + [anon_sym___extension__] = ACTIONS(7649), + [anon_sym___attribute__] = ACTIONS(7649), + [anon_sym___attribute] = ACTIONS(7647), + [anon_sym_LBRACE] = ACTIONS(7649), + [anon_sym_LBRACK] = ACTIONS(7649), + [anon_sym_EQ] = ACTIONS(7647), + [anon_sym_const] = ACTIONS(7647), + [anon_sym_constexpr] = ACTIONS(7649), + [anon_sym_volatile] = ACTIONS(7649), + [anon_sym_restrict] = ACTIONS(7649), + [anon_sym___restrict__] = ACTIONS(7649), + [anon_sym__Atomic] = ACTIONS(7649), + [anon_sym__Noreturn] = ACTIONS(7649), + [anon_sym_noreturn] = ACTIONS(7649), + [anon_sym__Nonnull] = ACTIONS(7649), + [anon_sym_mutable] = ACTIONS(7649), + [anon_sym_constinit] = ACTIONS(7649), + [anon_sym_consteval] = ACTIONS(7649), + [anon_sym_alignas] = ACTIONS(7649), + [anon_sym__Alignas] = ACTIONS(7649), + [anon_sym_QMARK] = ACTIONS(7649), + [anon_sym_STAR_EQ] = ACTIONS(7649), + [anon_sym_SLASH_EQ] = ACTIONS(7649), + [anon_sym_PERCENT_EQ] = ACTIONS(7649), + [anon_sym_PLUS_EQ] = ACTIONS(7649), + [anon_sym_DASH_EQ] = ACTIONS(7649), + [anon_sym_LT_LT_EQ] = ACTIONS(7649), + [anon_sym_GT_GT_EQ] = ACTIONS(7649), + [anon_sym_AMP_EQ] = ACTIONS(7649), + [anon_sym_CARET_EQ] = ACTIONS(7649), + [anon_sym_PIPE_EQ] = ACTIONS(7649), + [anon_sym_LT_EQ_GT] = ACTIONS(7649), + [anon_sym_or] = ACTIONS(7649), + [anon_sym_and] = ACTIONS(7649), + [anon_sym_bitor] = ACTIONS(7649), + [anon_sym_xor] = ACTIONS(7649), + [anon_sym_bitand] = ACTIONS(7649), + [anon_sym_not_eq] = ACTIONS(7649), + [anon_sym_DASH_DASH] = ACTIONS(7649), + [anon_sym_PLUS_PLUS] = ACTIONS(7649), + [anon_sym_DOT] = ACTIONS(7647), + [anon_sym_DOT_STAR] = ACTIONS(7649), + [anon_sym_DASH_GT] = ACTIONS(7647), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7649), + [anon_sym_override] = ACTIONS(7649), + [anon_sym_requires] = ACTIONS(7649), + [anon_sym_DASH_GT_STAR] = ACTIONS(7649), }, - [STATE(3647)] = { - [sym_type_qualifier] = STATE(3647), - [sym_alignas_qualifier] = STATE(3874), - [aux_sym__type_definition_type_repeat1] = STATE(3647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_LPAREN2] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6525), - [anon_sym_PLUS] = ACTIONS(6525), - [anon_sym_STAR] = ACTIONS(6527), - [anon_sym_SLASH] = ACTIONS(6525), - [anon_sym_PERCENT] = ACTIONS(6527), - [anon_sym_PIPE_PIPE] = ACTIONS(6527), - [anon_sym_AMP_AMP] = ACTIONS(6527), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_CARET] = ACTIONS(6527), - [anon_sym_AMP] = ACTIONS(6525), - [anon_sym_EQ_EQ] = ACTIONS(6527), - [anon_sym_BANG_EQ] = ACTIONS(6527), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_GT_EQ] = ACTIONS(6525), - [anon_sym_LT_EQ] = ACTIONS(6525), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_LT_LT] = ACTIONS(6527), - [anon_sym_GT_GT] = ACTIONS(6525), - [anon_sym___extension__] = ACTIONS(9202), - [anon_sym___attribute__] = ACTIONS(6527), - [anon_sym___attribute] = ACTIONS(6525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6527), - [anon_sym_LBRACK] = ACTIONS(6525), - [anon_sym_const] = ACTIONS(9205), - [anon_sym_constexpr] = ACTIONS(9202), - [anon_sym_volatile] = ACTIONS(9202), - [anon_sym_restrict] = ACTIONS(9202), - [anon_sym___restrict__] = ACTIONS(9202), - [anon_sym__Atomic] = ACTIONS(9202), - [anon_sym__Noreturn] = ACTIONS(9202), - [anon_sym_noreturn] = ACTIONS(9202), - [anon_sym__Nonnull] = ACTIONS(9202), - [anon_sym_mutable] = ACTIONS(9202), - [anon_sym_constinit] = ACTIONS(9202), - [anon_sym_consteval] = ACTIONS(9202), - [anon_sym_alignas] = ACTIONS(9208), - [anon_sym__Alignas] = ACTIONS(9208), - [anon_sym_QMARK] = ACTIONS(6527), - [anon_sym_LT_EQ_GT] = ACTIONS(6527), - [anon_sym_or] = ACTIONS(6527), - [anon_sym_and] = ACTIONS(6527), - [anon_sym_bitor] = ACTIONS(6527), - [anon_sym_xor] = ACTIONS(6527), - [anon_sym_bitand] = ACTIONS(6527), - [anon_sym_not_eq] = ACTIONS(6527), - [anon_sym_DASH_DASH] = ACTIONS(6527), - [anon_sym_PLUS_PLUS] = ACTIONS(6527), - [anon_sym_asm] = ACTIONS(6527), - [anon_sym___asm__] = ACTIONS(6527), - [anon_sym___asm] = ACTIONS(6525), - [anon_sym_DOT] = ACTIONS(6525), - [anon_sym_DOT_STAR] = ACTIONS(6527), - [anon_sym_DASH_GT] = ACTIONS(6527), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6527), - [anon_sym_override] = ACTIONS(6527), - [anon_sym_GT2] = ACTIONS(6527), - [anon_sym_noexcept] = ACTIONS(6527), - [anon_sym_throw] = ACTIONS(6527), - [anon_sym_requires] = ACTIONS(6527), + [STATE(3136)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7665), + [anon_sym_COMMA] = ACTIONS(7665), + [anon_sym_LPAREN2] = ACTIONS(7665), + [anon_sym_DASH] = ACTIONS(7663), + [anon_sym_PLUS] = ACTIONS(7663), + [anon_sym_STAR] = ACTIONS(7663), + [anon_sym_SLASH] = ACTIONS(7663), + [anon_sym_PERCENT] = ACTIONS(7663), + [anon_sym_PIPE_PIPE] = ACTIONS(7665), + [anon_sym_AMP_AMP] = ACTIONS(7665), + [anon_sym_PIPE] = ACTIONS(7663), + [anon_sym_CARET] = ACTIONS(7663), + [anon_sym_AMP] = ACTIONS(7663), + [anon_sym_EQ_EQ] = ACTIONS(7665), + [anon_sym_BANG_EQ] = ACTIONS(7665), + [anon_sym_GT] = ACTIONS(7663), + [anon_sym_GT_EQ] = ACTIONS(7663), + [anon_sym_LT_EQ] = ACTIONS(7663), + [anon_sym_LT] = ACTIONS(7663), + [anon_sym_LT_LT] = ACTIONS(7663), + [anon_sym_GT_GT] = ACTIONS(7663), + [anon_sym___extension__] = ACTIONS(7665), + [anon_sym_LBRACE] = ACTIONS(7665), + [anon_sym_LBRACK] = ACTIONS(7665), + [anon_sym_EQ] = ACTIONS(7663), + [anon_sym_const] = ACTIONS(7663), + [anon_sym_constexpr] = ACTIONS(7665), + [anon_sym_volatile] = ACTIONS(7665), + [anon_sym_restrict] = ACTIONS(7665), + [anon_sym___restrict__] = ACTIONS(7665), + [anon_sym__Atomic] = ACTIONS(7665), + [anon_sym__Noreturn] = ACTIONS(7665), + [anon_sym_noreturn] = ACTIONS(7665), + [anon_sym__Nonnull] = ACTIONS(7665), + [anon_sym_mutable] = ACTIONS(7665), + [anon_sym_constinit] = ACTIONS(7665), + [anon_sym_consteval] = ACTIONS(7665), + [anon_sym_alignas] = ACTIONS(7665), + [anon_sym__Alignas] = ACTIONS(7665), + [anon_sym_QMARK] = ACTIONS(7665), + [anon_sym_STAR_EQ] = ACTIONS(7665), + [anon_sym_SLASH_EQ] = ACTIONS(7665), + [anon_sym_PERCENT_EQ] = ACTIONS(7665), + [anon_sym_PLUS_EQ] = ACTIONS(7665), + [anon_sym_DASH_EQ] = ACTIONS(7665), + [anon_sym_LT_LT_EQ] = ACTIONS(7665), + [anon_sym_GT_GT_EQ] = ACTIONS(7663), + [anon_sym_AMP_EQ] = ACTIONS(7665), + [anon_sym_CARET_EQ] = ACTIONS(7665), + [anon_sym_PIPE_EQ] = ACTIONS(7665), + [anon_sym_and_eq] = ACTIONS(7665), + [anon_sym_or_eq] = ACTIONS(7665), + [anon_sym_xor_eq] = ACTIONS(7665), + [anon_sym_LT_EQ_GT] = ACTIONS(7665), + [anon_sym_or] = ACTIONS(7663), + [anon_sym_and] = ACTIONS(7663), + [anon_sym_bitor] = ACTIONS(7665), + [anon_sym_xor] = ACTIONS(7663), + [anon_sym_bitand] = ACTIONS(7665), + [anon_sym_not_eq] = ACTIONS(7665), + [anon_sym_DASH_DASH] = ACTIONS(7665), + [anon_sym_PLUS_PLUS] = ACTIONS(7665), + [anon_sym_DOT] = ACTIONS(7663), + [anon_sym_DOT_STAR] = ACTIONS(7665), + [anon_sym_DASH_GT] = ACTIONS(7665), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7665), + [anon_sym_override] = ACTIONS(7665), + [anon_sym_GT2] = ACTIONS(7665), + [anon_sym_requires] = ACTIONS(7665), }, - [STATE(3648)] = { - [sym_attribute_declaration] = STATE(3105), - [aux_sym_attributed_declarator_repeat1] = STATE(3105), - [sym_identifier] = ACTIONS(9211), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9213), - [anon_sym_COMMA] = ACTIONS(9213), - [anon_sym_RPAREN] = ACTIONS(9213), - [aux_sym_preproc_if_token2] = ACTIONS(9213), - [aux_sym_preproc_else_token1] = ACTIONS(9213), - [aux_sym_preproc_elif_token1] = ACTIONS(9211), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9213), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9213), - [anon_sym_LPAREN2] = ACTIONS(9213), - [anon_sym_DASH] = ACTIONS(9211), - [anon_sym_PLUS] = ACTIONS(9211), - [anon_sym_STAR] = ACTIONS(9211), - [anon_sym_SLASH] = ACTIONS(9211), - [anon_sym_PERCENT] = ACTIONS(9211), - [anon_sym_PIPE_PIPE] = ACTIONS(9213), - [anon_sym_AMP_AMP] = ACTIONS(9213), - [anon_sym_PIPE] = ACTIONS(9211), - [anon_sym_CARET] = ACTIONS(9211), - [anon_sym_AMP] = ACTIONS(9211), - [anon_sym_EQ_EQ] = ACTIONS(9213), - [anon_sym_BANG_EQ] = ACTIONS(9213), - [anon_sym_GT] = ACTIONS(9211), - [anon_sym_GT_EQ] = ACTIONS(9213), - [anon_sym_LT_EQ] = ACTIONS(9211), - [anon_sym_LT] = ACTIONS(9211), - [anon_sym_LT_LT] = ACTIONS(9211), - [anon_sym_GT_GT] = ACTIONS(9211), - [anon_sym_SEMI] = ACTIONS(9213), - [anon_sym___attribute__] = ACTIONS(9211), - [anon_sym___attribute] = ACTIONS(9211), - [anon_sym_COLON] = ACTIONS(9211), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6125), - [anon_sym_RBRACE] = ACTIONS(9213), - [anon_sym_LBRACK] = ACTIONS(9211), - [anon_sym_EQ] = ACTIONS(9211), - [anon_sym_QMARK] = ACTIONS(9213), - [anon_sym_STAR_EQ] = ACTIONS(9213), - [anon_sym_SLASH_EQ] = ACTIONS(9213), - [anon_sym_PERCENT_EQ] = ACTIONS(9213), - [anon_sym_PLUS_EQ] = ACTIONS(9213), - [anon_sym_DASH_EQ] = ACTIONS(9213), - [anon_sym_LT_LT_EQ] = ACTIONS(9213), - [anon_sym_GT_GT_EQ] = ACTIONS(9213), - [anon_sym_AMP_EQ] = ACTIONS(9213), - [anon_sym_CARET_EQ] = ACTIONS(9213), - [anon_sym_PIPE_EQ] = ACTIONS(9213), - [anon_sym_and_eq] = ACTIONS(9211), - [anon_sym_or_eq] = ACTIONS(9211), - [anon_sym_xor_eq] = ACTIONS(9211), - [anon_sym_LT_EQ_GT] = ACTIONS(9213), - [anon_sym_or] = ACTIONS(9211), - [anon_sym_and] = ACTIONS(9211), - [anon_sym_bitor] = ACTIONS(9211), - [anon_sym_xor] = ACTIONS(9211), - [anon_sym_bitand] = ACTIONS(9211), - [anon_sym_not_eq] = ACTIONS(9211), - [anon_sym_DASH_DASH] = ACTIONS(9213), - [anon_sym_PLUS_PLUS] = ACTIONS(9213), - [anon_sym_DOT] = ACTIONS(9211), - [anon_sym_DOT_STAR] = ACTIONS(9213), - [anon_sym_DASH_GT] = ACTIONS(9213), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9213), + [STATE(3137)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6605), + [anon_sym_PLUS] = ACTIONS(6605), + [anon_sym_STAR] = ACTIONS(6605), + [anon_sym_SLASH] = ACTIONS(6605), + [anon_sym_PERCENT] = ACTIONS(6605), + [anon_sym_PIPE_PIPE] = ACTIONS(6598), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6605), + [anon_sym_CARET] = ACTIONS(6605), + [anon_sym_AMP] = ACTIONS(6605), + [anon_sym_EQ_EQ] = ACTIONS(6598), + [anon_sym_BANG_EQ] = ACTIONS(6598), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6598), + [anon_sym_LT_EQ] = ACTIONS(6605), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6605), + [anon_sym_GT_GT] = ACTIONS(6605), + [anon_sym___extension__] = ACTIONS(6601), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_LBRACK] = ACTIONS(6598), + [anon_sym_RBRACK] = ACTIONS(6598), + [anon_sym_EQ] = ACTIONS(6603), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6601), + [anon_sym_volatile] = ACTIONS(6601), + [anon_sym_restrict] = ACTIONS(6601), + [anon_sym___restrict__] = ACTIONS(6601), + [anon_sym__Atomic] = ACTIONS(6601), + [anon_sym__Noreturn] = ACTIONS(6601), + [anon_sym_noreturn] = ACTIONS(6601), + [anon_sym__Nonnull] = ACTIONS(6601), + [anon_sym_mutable] = ACTIONS(6601), + [anon_sym_constinit] = ACTIONS(6601), + [anon_sym_consteval] = ACTIONS(6601), + [anon_sym_alignas] = ACTIONS(6601), + [anon_sym__Alignas] = ACTIONS(6601), + [anon_sym_QMARK] = ACTIONS(6598), + [anon_sym_STAR_EQ] = ACTIONS(6596), + [anon_sym_SLASH_EQ] = ACTIONS(6596), + [anon_sym_PERCENT_EQ] = ACTIONS(6596), + [anon_sym_PLUS_EQ] = ACTIONS(6596), + [anon_sym_DASH_EQ] = ACTIONS(6596), + [anon_sym_LT_LT_EQ] = ACTIONS(6596), + [anon_sym_GT_GT_EQ] = ACTIONS(6596), + [anon_sym_AMP_EQ] = ACTIONS(6596), + [anon_sym_CARET_EQ] = ACTIONS(6596), + [anon_sym_PIPE_EQ] = ACTIONS(6596), + [anon_sym_and_eq] = ACTIONS(6596), + [anon_sym_or_eq] = ACTIONS(6596), + [anon_sym_xor_eq] = ACTIONS(6596), + [anon_sym_LT_EQ_GT] = ACTIONS(6598), + [anon_sym_or] = ACTIONS(6605), + [anon_sym_and] = ACTIONS(6605), + [anon_sym_bitor] = ACTIONS(6598), + [anon_sym_xor] = ACTIONS(6605), + [anon_sym_bitand] = ACTIONS(6598), + [anon_sym_not_eq] = ACTIONS(6598), + [anon_sym_DASH_DASH] = ACTIONS(6598), + [anon_sym_PLUS_PLUS] = ACTIONS(6598), + [anon_sym_DOT] = ACTIONS(6605), + [anon_sym_DOT_STAR] = ACTIONS(6598), + [anon_sym_DASH_GT] = ACTIONS(6598), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6601), + [anon_sym_decltype] = ACTIONS(6601), }, - [STATE(3649)] = { - [sym_identifier] = ACTIONS(6949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), - [anon_sym_COMMA] = ACTIONS(6951), - [anon_sym_RPAREN] = ACTIONS(6951), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_TILDE] = ACTIONS(6951), - [anon_sym_STAR] = ACTIONS(6951), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym_SEMI] = ACTIONS(6951), - [anon_sym___extension__] = ACTIONS(6949), - [anon_sym_virtual] = ACTIONS(6949), - [anon_sym_extern] = ACTIONS(6949), - [anon_sym___attribute__] = ACTIONS(6949), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_COLON] = ACTIONS(6949), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6951), - [anon_sym___declspec] = ACTIONS(6949), - [anon_sym___based] = ACTIONS(6949), - [anon_sym___cdecl] = ACTIONS(6949), - [anon_sym___clrcall] = ACTIONS(6949), - [anon_sym___stdcall] = ACTIONS(6949), - [anon_sym___fastcall] = ACTIONS(6949), - [anon_sym___thiscall] = ACTIONS(6949), - [anon_sym___vectorcall] = ACTIONS(6949), - [anon_sym_LBRACE] = ACTIONS(6951), - [anon_sym_LBRACK] = ACTIONS(6949), - [anon_sym_static] = ACTIONS(6949), - [anon_sym_EQ] = ACTIONS(6951), - [anon_sym_register] = ACTIONS(6949), - [anon_sym_inline] = ACTIONS(6949), - [anon_sym___inline] = ACTIONS(6949), - [anon_sym___inline__] = ACTIONS(6949), - [anon_sym___forceinline] = ACTIONS(6949), - [anon_sym_thread_local] = ACTIONS(6949), - [anon_sym___thread] = ACTIONS(6949), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6949), - [anon_sym_volatile] = ACTIONS(6949), - [anon_sym_restrict] = ACTIONS(6949), - [anon_sym___restrict__] = ACTIONS(6949), - [anon_sym__Atomic] = ACTIONS(6949), - [anon_sym__Noreturn] = ACTIONS(6949), - [anon_sym_noreturn] = ACTIONS(6949), - [anon_sym__Nonnull] = ACTIONS(6949), - [anon_sym_mutable] = ACTIONS(6949), - [anon_sym_constinit] = ACTIONS(6949), - [anon_sym_consteval] = ACTIONS(6949), - [anon_sym_alignas] = ACTIONS(6949), - [anon_sym__Alignas] = ACTIONS(6949), - [anon_sym_or] = ACTIONS(6949), - [anon_sym_and] = ACTIONS(6949), - [anon_sym_DASH_GT] = ACTIONS(6951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6949), - [anon_sym_decltype] = ACTIONS(6949), - [anon_sym_final] = ACTIONS(6949), - [anon_sym_override] = ACTIONS(6949), - [anon_sym_template] = ACTIONS(6949), - [anon_sym_GT2] = ACTIONS(6951), - [anon_sym_operator] = ACTIONS(6949), - [anon_sym_noexcept] = ACTIONS(6949), - [anon_sym_throw] = ACTIONS(6949), - [anon_sym_LBRACK_COLON] = ACTIONS(6951), + [STATE(3138)] = { + [sym_type_qualifier] = STATE(3138), + [sym_alignas_qualifier] = STATE(3497), + [aux_sym__type_definition_type_repeat1] = STATE(3138), + [sym_identifier] = ACTIONS(6889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), + [anon_sym_COMMA] = ACTIONS(6891), + [anon_sym_RPAREN] = ACTIONS(6891), + [anon_sym_LPAREN2] = ACTIONS(6891), + [anon_sym_TILDE] = ACTIONS(6891), + [anon_sym_STAR] = ACTIONS(6891), + [anon_sym_AMP_AMP] = ACTIONS(6891), + [anon_sym_AMP] = ACTIONS(6889), + [anon_sym_SEMI] = ACTIONS(6891), + [anon_sym___extension__] = ACTIONS(9053), + [anon_sym_virtual] = ACTIONS(6889), + [anon_sym_extern] = ACTIONS(6889), + [anon_sym___attribute__] = ACTIONS(6889), + [anon_sym___attribute] = ACTIONS(6889), + [anon_sym_COLON_COLON] = ACTIONS(6891), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6891), + [anon_sym___declspec] = ACTIONS(6889), + [anon_sym___based] = ACTIONS(6889), + [anon_sym___cdecl] = ACTIONS(6889), + [anon_sym___clrcall] = ACTIONS(6889), + [anon_sym___stdcall] = ACTIONS(6889), + [anon_sym___fastcall] = ACTIONS(6889), + [anon_sym___thiscall] = ACTIONS(6889), + [anon_sym___vectorcall] = ACTIONS(6889), + [anon_sym_LBRACE] = ACTIONS(6891), + [anon_sym_signed] = ACTIONS(6889), + [anon_sym_unsigned] = ACTIONS(6889), + [anon_sym_long] = ACTIONS(6889), + [anon_sym_short] = ACTIONS(6889), + [anon_sym_LBRACK] = ACTIONS(6889), + [anon_sym_static] = ACTIONS(6889), + [anon_sym_EQ] = ACTIONS(6891), + [anon_sym_register] = ACTIONS(6889), + [anon_sym_inline] = ACTIONS(6889), + [anon_sym___inline] = ACTIONS(6889), + [anon_sym___inline__] = ACTIONS(6889), + [anon_sym___forceinline] = ACTIONS(6889), + [anon_sym_thread_local] = ACTIONS(6889), + [anon_sym___thread] = ACTIONS(6889), + [anon_sym_const] = ACTIONS(9053), + [anon_sym_constexpr] = ACTIONS(9053), + [anon_sym_volatile] = ACTIONS(9053), + [anon_sym_restrict] = ACTIONS(9053), + [anon_sym___restrict__] = ACTIONS(9053), + [anon_sym__Atomic] = ACTIONS(9053), + [anon_sym__Noreturn] = ACTIONS(9053), + [anon_sym_noreturn] = ACTIONS(9053), + [anon_sym__Nonnull] = ACTIONS(9053), + [anon_sym_mutable] = ACTIONS(9053), + [anon_sym_constinit] = ACTIONS(9053), + [anon_sym_consteval] = ACTIONS(9053), + [anon_sym_alignas] = ACTIONS(9056), + [anon_sym__Alignas] = ACTIONS(9056), + [sym_primitive_type] = ACTIONS(6889), + [anon_sym_enum] = ACTIONS(6889), + [anon_sym_class] = ACTIONS(6889), + [anon_sym_struct] = ACTIONS(6889), + [anon_sym_union] = ACTIONS(6889), + [anon_sym_typename] = ACTIONS(6889), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6889), + [anon_sym_decltype] = ACTIONS(6889), + [anon_sym_template] = ACTIONS(6889), + [anon_sym_GT2] = ACTIONS(6891), + [anon_sym_operator] = ACTIONS(6889), + [anon_sym_LBRACK_COLON] = ACTIONS(6891), }, - [STATE(3650)] = { - [sym_identifier] = ACTIONS(6949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6951), - [anon_sym_COMMA] = ACTIONS(6951), - [anon_sym_RPAREN] = ACTIONS(6951), - [anon_sym_LPAREN2] = ACTIONS(6951), - [anon_sym_TILDE] = ACTIONS(6951), - [anon_sym_STAR] = ACTIONS(6951), - [anon_sym_PIPE_PIPE] = ACTIONS(6951), - [anon_sym_AMP_AMP] = ACTIONS(6951), - [anon_sym_AMP] = ACTIONS(6949), - [anon_sym_SEMI] = ACTIONS(6951), - [anon_sym___extension__] = ACTIONS(6949), - [anon_sym_virtual] = ACTIONS(6949), - [anon_sym_extern] = ACTIONS(6949), - [anon_sym___attribute__] = ACTIONS(6949), - [anon_sym___attribute] = ACTIONS(6949), - [anon_sym_COLON] = ACTIONS(6949), - [anon_sym_COLON_COLON] = ACTIONS(6951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6951), - [anon_sym___declspec] = ACTIONS(6949), - [anon_sym___based] = ACTIONS(6949), - [anon_sym___cdecl] = ACTIONS(6949), - [anon_sym___clrcall] = ACTIONS(6949), - [anon_sym___stdcall] = ACTIONS(6949), - [anon_sym___fastcall] = ACTIONS(6949), - [anon_sym___thiscall] = ACTIONS(6949), - [anon_sym___vectorcall] = ACTIONS(6949), - [anon_sym_LBRACE] = ACTIONS(6951), - [anon_sym_LBRACK] = ACTIONS(6949), - [anon_sym_static] = ACTIONS(6949), - [anon_sym_EQ] = ACTIONS(6951), - [anon_sym_register] = ACTIONS(6949), - [anon_sym_inline] = ACTIONS(6949), - [anon_sym___inline] = ACTIONS(6949), - [anon_sym___inline__] = ACTIONS(6949), - [anon_sym___forceinline] = ACTIONS(6949), - [anon_sym_thread_local] = ACTIONS(6949), - [anon_sym___thread] = ACTIONS(6949), - [anon_sym_const] = ACTIONS(6949), - [anon_sym_constexpr] = ACTIONS(6949), - [anon_sym_volatile] = ACTIONS(6949), - [anon_sym_restrict] = ACTIONS(6949), - [anon_sym___restrict__] = ACTIONS(6949), - [anon_sym__Atomic] = ACTIONS(6949), - [anon_sym__Noreturn] = ACTIONS(6949), - [anon_sym_noreturn] = ACTIONS(6949), - [anon_sym__Nonnull] = ACTIONS(6949), - [anon_sym_mutable] = ACTIONS(6949), - [anon_sym_constinit] = ACTIONS(6949), - [anon_sym_consteval] = ACTIONS(6949), - [anon_sym_alignas] = ACTIONS(6949), - [anon_sym__Alignas] = ACTIONS(6949), - [anon_sym_or] = ACTIONS(6949), - [anon_sym_and] = ACTIONS(6949), - [anon_sym_DASH_GT] = ACTIONS(6951), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6949), - [anon_sym_decltype] = ACTIONS(6949), - [anon_sym_final] = ACTIONS(6949), - [anon_sym_override] = ACTIONS(6949), - [anon_sym_template] = ACTIONS(6949), - [anon_sym_GT2] = ACTIONS(6951), - [anon_sym_operator] = ACTIONS(6949), - [anon_sym_noexcept] = ACTIONS(6949), - [anon_sym_throw] = ACTIONS(6949), - [anon_sym_LBRACK_COLON] = ACTIONS(6951), + [STATE(3139)] = { + [sym_identifier] = ACTIONS(7767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7769), + [anon_sym_COMMA] = ACTIONS(7769), + [anon_sym_RPAREN] = ACTIONS(7769), + [anon_sym_LPAREN2] = ACTIONS(7769), + [anon_sym_DASH] = ACTIONS(7767), + [anon_sym_PLUS] = ACTIONS(7767), + [anon_sym_STAR] = ACTIONS(7769), + [anon_sym_SLASH] = ACTIONS(7767), + [anon_sym_PERCENT] = ACTIONS(7769), + [anon_sym_PIPE_PIPE] = ACTIONS(7769), + [anon_sym_AMP_AMP] = ACTIONS(7769), + [anon_sym_PIPE] = ACTIONS(7767), + [anon_sym_CARET] = ACTIONS(7769), + [anon_sym_AMP] = ACTIONS(7767), + [anon_sym_EQ_EQ] = ACTIONS(7769), + [anon_sym_BANG_EQ] = ACTIONS(7769), + [anon_sym_GT] = ACTIONS(7767), + [anon_sym_GT_EQ] = ACTIONS(7769), + [anon_sym_LT_EQ] = ACTIONS(7767), + [anon_sym_LT] = ACTIONS(7767), + [anon_sym_LT_LT] = ACTIONS(7769), + [anon_sym_GT_GT] = ACTIONS(7769), + [anon_sym_SEMI] = ACTIONS(7769), + [anon_sym___extension__] = ACTIONS(7767), + [anon_sym___attribute__] = ACTIONS(7767), + [anon_sym___attribute] = ACTIONS(7767), + [anon_sym_COLON] = ACTIONS(7767), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7769), + [anon_sym___based] = ACTIONS(7767), + [anon_sym_LBRACE] = ACTIONS(7769), + [anon_sym_RBRACE] = ACTIONS(7769), + [anon_sym_signed] = ACTIONS(7767), + [anon_sym_unsigned] = ACTIONS(7767), + [anon_sym_long] = ACTIONS(7767), + [anon_sym_short] = ACTIONS(7767), + [anon_sym_LBRACK] = ACTIONS(7769), + [anon_sym_const] = ACTIONS(7767), + [anon_sym_constexpr] = ACTIONS(7767), + [anon_sym_volatile] = ACTIONS(7767), + [anon_sym_restrict] = ACTIONS(7767), + [anon_sym___restrict__] = ACTIONS(7767), + [anon_sym__Atomic] = ACTIONS(7767), + [anon_sym__Noreturn] = ACTIONS(7767), + [anon_sym_noreturn] = ACTIONS(7767), + [anon_sym__Nonnull] = ACTIONS(7767), + [anon_sym_mutable] = ACTIONS(7767), + [anon_sym_constinit] = ACTIONS(7767), + [anon_sym_consteval] = ACTIONS(7767), + [anon_sym_alignas] = ACTIONS(7767), + [anon_sym__Alignas] = ACTIONS(7767), + [sym_primitive_type] = ACTIONS(7767), + [anon_sym_QMARK] = ACTIONS(7769), + [anon_sym_LT_EQ_GT] = ACTIONS(7769), + [anon_sym_or] = ACTIONS(7767), + [anon_sym_and] = ACTIONS(7767), + [anon_sym_bitor] = ACTIONS(7767), + [anon_sym_xor] = ACTIONS(7767), + [anon_sym_bitand] = ACTIONS(7767), + [anon_sym_not_eq] = ACTIONS(7767), + [anon_sym_DASH_DASH] = ACTIONS(7769), + [anon_sym_PLUS_PLUS] = ACTIONS(7769), + [anon_sym_DOT] = ACTIONS(7767), + [anon_sym_DOT_STAR] = ACTIONS(7769), + [anon_sym_DASH_GT] = ACTIONS(7769), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7767), + [anon_sym_override] = ACTIONS(7767), + [anon_sym_requires] = ACTIONS(7767), + [anon_sym_COLON_RBRACK] = ACTIONS(7769), }, - [STATE(3651)] = { - [sym_type_qualifier] = STATE(3647), - [sym_alignas_qualifier] = STATE(3874), - [aux_sym__type_definition_type_repeat1] = STATE(3647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6523), - [anon_sym_COMMA] = ACTIONS(6523), - [anon_sym_LPAREN2] = ACTIONS(6523), - [anon_sym_DASH] = ACTIONS(6521), - [anon_sym_PLUS] = ACTIONS(6521), - [anon_sym_STAR] = ACTIONS(6523), - [anon_sym_SLASH] = ACTIONS(6521), - [anon_sym_PERCENT] = ACTIONS(6523), - [anon_sym_PIPE_PIPE] = ACTIONS(6523), - [anon_sym_AMP_AMP] = ACTIONS(6523), - [anon_sym_PIPE] = ACTIONS(6521), - [anon_sym_CARET] = ACTIONS(6523), - [anon_sym_AMP] = ACTIONS(6521), - [anon_sym_EQ_EQ] = ACTIONS(6523), - [anon_sym_BANG_EQ] = ACTIONS(6523), - [anon_sym_GT] = ACTIONS(6521), - [anon_sym_GT_EQ] = ACTIONS(6521), - [anon_sym_LT_EQ] = ACTIONS(6521), - [anon_sym_LT] = ACTIONS(6521), - [anon_sym_LT_LT] = ACTIONS(6523), - [anon_sym_GT_GT] = ACTIONS(6521), - [anon_sym___extension__] = ACTIONS(7439), - [anon_sym___attribute__] = ACTIONS(6523), - [anon_sym___attribute] = ACTIONS(6521), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6523), - [anon_sym_LBRACK] = ACTIONS(6521), - [anon_sym_const] = ACTIONS(7447), - [anon_sym_constexpr] = ACTIONS(7439), - [anon_sym_volatile] = ACTIONS(7439), - [anon_sym_restrict] = ACTIONS(7439), - [anon_sym___restrict__] = ACTIONS(7439), - [anon_sym__Atomic] = ACTIONS(7439), - [anon_sym__Noreturn] = ACTIONS(7439), - [anon_sym_noreturn] = ACTIONS(7439), - [anon_sym__Nonnull] = ACTIONS(7439), - [anon_sym_mutable] = ACTIONS(7439), - [anon_sym_constinit] = ACTIONS(7439), - [anon_sym_consteval] = ACTIONS(7439), - [anon_sym_alignas] = ACTIONS(7449), - [anon_sym__Alignas] = ACTIONS(7449), - [anon_sym_QMARK] = ACTIONS(6523), - [anon_sym_LT_EQ_GT] = ACTIONS(6523), - [anon_sym_or] = ACTIONS(6523), - [anon_sym_and] = ACTIONS(6523), - [anon_sym_bitor] = ACTIONS(6523), - [anon_sym_xor] = ACTIONS(6523), - [anon_sym_bitand] = ACTIONS(6523), - [anon_sym_not_eq] = ACTIONS(6523), - [anon_sym_DASH_DASH] = ACTIONS(6523), - [anon_sym_PLUS_PLUS] = ACTIONS(6523), - [anon_sym_asm] = ACTIONS(6523), - [anon_sym___asm__] = ACTIONS(6523), - [anon_sym___asm] = ACTIONS(6521), - [anon_sym_DOT] = ACTIONS(6521), - [anon_sym_DOT_STAR] = ACTIONS(6523), - [anon_sym_DASH_GT] = ACTIONS(6523), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6523), - [anon_sym_override] = ACTIONS(6523), - [anon_sym_GT2] = ACTIONS(6523), - [anon_sym_noexcept] = ACTIONS(6523), - [anon_sym_throw] = ACTIONS(6523), - [anon_sym_requires] = ACTIONS(6523), + [STATE(3140)] = { + [sym_identifier] = ACTIONS(9059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9061), + [anon_sym_COMMA] = ACTIONS(9061), + [anon_sym_RPAREN] = ACTIONS(9061), + [aux_sym_preproc_if_token2] = ACTIONS(9061), + [aux_sym_preproc_else_token1] = ACTIONS(9061), + [aux_sym_preproc_elif_token1] = ACTIONS(9059), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9061), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9061), + [anon_sym_LPAREN2] = ACTIONS(9061), + [anon_sym_DASH] = ACTIONS(9059), + [anon_sym_PLUS] = ACTIONS(9059), + [anon_sym_STAR] = ACTIONS(9059), + [anon_sym_SLASH] = ACTIONS(9059), + [anon_sym_PERCENT] = ACTIONS(9059), + [anon_sym_PIPE_PIPE] = ACTIONS(9061), + [anon_sym_AMP_AMP] = ACTIONS(9061), + [anon_sym_PIPE] = ACTIONS(9059), + [anon_sym_CARET] = ACTIONS(9059), + [anon_sym_AMP] = ACTIONS(9059), + [anon_sym_EQ_EQ] = ACTIONS(9061), + [anon_sym_BANG_EQ] = ACTIONS(9061), + [anon_sym_GT] = ACTIONS(9059), + [anon_sym_GT_EQ] = ACTIONS(9061), + [anon_sym_LT_EQ] = ACTIONS(9059), + [anon_sym_LT] = ACTIONS(9059), + [anon_sym_LT_LT] = ACTIONS(9059), + [anon_sym_GT_GT] = ACTIONS(9059), + [anon_sym_SEMI] = ACTIONS(9061), + [anon_sym___attribute__] = ACTIONS(9059), + [anon_sym___attribute] = ACTIONS(9059), + [anon_sym_COLON] = ACTIONS(9059), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9061), + [anon_sym_LBRACE] = ACTIONS(9061), + [anon_sym_RBRACE] = ACTIONS(9061), + [anon_sym_LBRACK] = ACTIONS(9059), + [anon_sym_RBRACK] = ACTIONS(9061), + [anon_sym_EQ] = ACTIONS(9059), + [anon_sym_QMARK] = ACTIONS(9061), + [anon_sym_STAR_EQ] = ACTIONS(9061), + [anon_sym_SLASH_EQ] = ACTIONS(9061), + [anon_sym_PERCENT_EQ] = ACTIONS(9061), + [anon_sym_PLUS_EQ] = ACTIONS(9061), + [anon_sym_DASH_EQ] = ACTIONS(9061), + [anon_sym_LT_LT_EQ] = ACTIONS(9061), + [anon_sym_GT_GT_EQ] = ACTIONS(9061), + [anon_sym_AMP_EQ] = ACTIONS(9061), + [anon_sym_CARET_EQ] = ACTIONS(9061), + [anon_sym_PIPE_EQ] = ACTIONS(9061), + [anon_sym_and_eq] = ACTIONS(9059), + [anon_sym_or_eq] = ACTIONS(9059), + [anon_sym_xor_eq] = ACTIONS(9059), + [anon_sym_LT_EQ_GT] = ACTIONS(9061), + [anon_sym_or] = ACTIONS(9059), + [anon_sym_and] = ACTIONS(9059), + [anon_sym_bitor] = ACTIONS(9059), + [anon_sym_xor] = ACTIONS(9059), + [anon_sym_bitand] = ACTIONS(9059), + [anon_sym_not_eq] = ACTIONS(9059), + [anon_sym_DASH_DASH] = ACTIONS(9061), + [anon_sym_PLUS_PLUS] = ACTIONS(9061), + [anon_sym_asm] = ACTIONS(9059), + [anon_sym___asm__] = ACTIONS(9059), + [anon_sym___asm] = ACTIONS(9059), + [anon_sym_DOT] = ACTIONS(9059), + [anon_sym_DOT_STAR] = ACTIONS(9061), + [anon_sym_DASH_GT] = ACTIONS(9061), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9059), + [anon_sym_COLON_RBRACK] = ACTIONS(9061), }, - [STATE(3652)] = { - [sym_string_literal] = STATE(3625), - [sym_raw_string_literal] = STATE(3625), - [aux_sym_concatenated_string_repeat1] = STATE(3625), - [sym_identifier] = ACTIONS(9215), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8125), - [anon_sym_COMMA] = ACTIONS(8125), - [anon_sym_LPAREN2] = ACTIONS(8125), - [anon_sym_DASH] = ACTIONS(8127), - [anon_sym_PLUS] = ACTIONS(8127), - [anon_sym_STAR] = ACTIONS(8127), - [anon_sym_SLASH] = ACTIONS(8127), - [anon_sym_PERCENT] = ACTIONS(8127), - [anon_sym_PIPE_PIPE] = ACTIONS(8125), - [anon_sym_AMP_AMP] = ACTIONS(8125), - [anon_sym_PIPE] = ACTIONS(8127), - [anon_sym_CARET] = ACTIONS(8127), - [anon_sym_AMP] = ACTIONS(8127), - [anon_sym_EQ_EQ] = ACTIONS(8125), - [anon_sym_BANG_EQ] = ACTIONS(8125), - [anon_sym_GT] = ACTIONS(8127), - [anon_sym_GT_EQ] = ACTIONS(8127), - [anon_sym_LT_EQ] = ACTIONS(8127), - [anon_sym_LT] = ACTIONS(8127), - [anon_sym_LT_LT] = ACTIONS(8127), - [anon_sym_GT_GT] = ACTIONS(8127), - [anon_sym_LBRACK] = ACTIONS(8125), - [anon_sym_EQ] = ACTIONS(8127), - [anon_sym_QMARK] = ACTIONS(8125), - [anon_sym_STAR_EQ] = ACTIONS(8125), - [anon_sym_SLASH_EQ] = ACTIONS(8125), - [anon_sym_PERCENT_EQ] = ACTIONS(8125), - [anon_sym_PLUS_EQ] = ACTIONS(8125), - [anon_sym_DASH_EQ] = ACTIONS(8125), - [anon_sym_LT_LT_EQ] = ACTIONS(8125), - [anon_sym_GT_GT_EQ] = ACTIONS(8127), - [anon_sym_AMP_EQ] = ACTIONS(8125), - [anon_sym_CARET_EQ] = ACTIONS(8125), - [anon_sym_PIPE_EQ] = ACTIONS(8125), - [anon_sym_and_eq] = ACTIONS(8127), - [anon_sym_or_eq] = ACTIONS(8127), - [anon_sym_xor_eq] = ACTIONS(8127), - [anon_sym_LT_EQ_GT] = ACTIONS(8125), - [anon_sym_or] = ACTIONS(8127), - [anon_sym_and] = ACTIONS(8127), - [anon_sym_bitor] = ACTIONS(8127), - [anon_sym_xor] = ACTIONS(8127), - [anon_sym_bitand] = ACTIONS(8127), - [anon_sym_not_eq] = ACTIONS(8127), - [anon_sym_DASH_DASH] = ACTIONS(8125), - [anon_sym_PLUS_PLUS] = ACTIONS(8125), - [anon_sym_DOT] = ACTIONS(8127), - [anon_sym_DOT_STAR] = ACTIONS(8125), - [anon_sym_DASH_GT] = ACTIONS(8125), - [anon_sym_L_DQUOTE] = ACTIONS(6640), - [anon_sym_u_DQUOTE] = ACTIONS(6640), - [anon_sym_U_DQUOTE] = ACTIONS(6640), - [anon_sym_u8_DQUOTE] = ACTIONS(6640), - [anon_sym_DQUOTE] = ACTIONS(6640), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(8125), - [anon_sym_R_DQUOTE] = ACTIONS(6646), - [anon_sym_LR_DQUOTE] = ACTIONS(6646), - [anon_sym_uR_DQUOTE] = ACTIONS(6646), - [anon_sym_UR_DQUOTE] = ACTIONS(6646), - [anon_sym_u8R_DQUOTE] = ACTIONS(6646), - [sym_literal_suffix] = ACTIONS(8127), + [STATE(3141)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7597), + [anon_sym_COMMA] = ACTIONS(7597), + [anon_sym_LPAREN2] = ACTIONS(7597), + [anon_sym_DASH] = ACTIONS(7595), + [anon_sym_PLUS] = ACTIONS(7595), + [anon_sym_STAR] = ACTIONS(7595), + [anon_sym_SLASH] = ACTIONS(7595), + [anon_sym_PERCENT] = ACTIONS(7595), + [anon_sym_PIPE_PIPE] = ACTIONS(7597), + [anon_sym_AMP_AMP] = ACTIONS(7597), + [anon_sym_PIPE] = ACTIONS(7595), + [anon_sym_CARET] = ACTIONS(7595), + [anon_sym_AMP] = ACTIONS(7595), + [anon_sym_EQ_EQ] = ACTIONS(7597), + [anon_sym_BANG_EQ] = ACTIONS(7597), + [anon_sym_GT] = ACTIONS(7595), + [anon_sym_GT_EQ] = ACTIONS(7597), + [anon_sym_LT_EQ] = ACTIONS(7595), + [anon_sym_LT] = ACTIONS(7595), + [anon_sym_LT_LT] = ACTIONS(7595), + [anon_sym_GT_GT] = ACTIONS(7595), + [anon_sym___extension__] = ACTIONS(7597), + [anon_sym_LBRACE] = ACTIONS(7597), + [anon_sym_LBRACK] = ACTIONS(7597), + [anon_sym_RBRACK] = ACTIONS(7597), + [anon_sym_EQ] = ACTIONS(7595), + [anon_sym_const] = ACTIONS(7595), + [anon_sym_constexpr] = ACTIONS(7597), + [anon_sym_volatile] = ACTIONS(7597), + [anon_sym_restrict] = ACTIONS(7597), + [anon_sym___restrict__] = ACTIONS(7597), + [anon_sym__Atomic] = ACTIONS(7597), + [anon_sym__Noreturn] = ACTIONS(7597), + [anon_sym_noreturn] = ACTIONS(7597), + [anon_sym__Nonnull] = ACTIONS(7597), + [anon_sym_mutable] = ACTIONS(7597), + [anon_sym_constinit] = ACTIONS(7597), + [anon_sym_consteval] = ACTIONS(7597), + [anon_sym_alignas] = ACTIONS(7597), + [anon_sym__Alignas] = ACTIONS(7597), + [anon_sym_QMARK] = ACTIONS(7597), + [anon_sym_STAR_EQ] = ACTIONS(7597), + [anon_sym_SLASH_EQ] = ACTIONS(7597), + [anon_sym_PERCENT_EQ] = ACTIONS(7597), + [anon_sym_PLUS_EQ] = ACTIONS(7597), + [anon_sym_DASH_EQ] = ACTIONS(7597), + [anon_sym_LT_LT_EQ] = ACTIONS(7597), + [anon_sym_GT_GT_EQ] = ACTIONS(7597), + [anon_sym_AMP_EQ] = ACTIONS(7597), + [anon_sym_CARET_EQ] = ACTIONS(7597), + [anon_sym_PIPE_EQ] = ACTIONS(7597), + [anon_sym_and_eq] = ACTIONS(7597), + [anon_sym_or_eq] = ACTIONS(7597), + [anon_sym_xor_eq] = ACTIONS(7597), + [anon_sym_LT_EQ_GT] = ACTIONS(7597), + [anon_sym_or] = ACTIONS(7595), + [anon_sym_and] = ACTIONS(7595), + [anon_sym_bitor] = ACTIONS(7597), + [anon_sym_xor] = ACTIONS(7595), + [anon_sym_bitand] = ACTIONS(7597), + [anon_sym_not_eq] = ACTIONS(7597), + [anon_sym_DASH_DASH] = ACTIONS(7597), + [anon_sym_PLUS_PLUS] = ACTIONS(7597), + [anon_sym_DOT] = ACTIONS(7595), + [anon_sym_DOT_STAR] = ACTIONS(7597), + [anon_sym_DASH_GT] = ACTIONS(7597), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7597), + [anon_sym_override] = ACTIONS(7597), + [anon_sym_requires] = ACTIONS(7597), }, - [STATE(3653)] = { - [sym_type_qualifier] = STATE(3647), - [sym_alignas_qualifier] = STATE(3874), - [aux_sym__type_definition_type_repeat1] = STATE(3647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6390), - [anon_sym_COMMA] = ACTIONS(6390), - [anon_sym_LPAREN2] = ACTIONS(6390), - [anon_sym_DASH] = ACTIONS(6388), - [anon_sym_PLUS] = ACTIONS(6388), - [anon_sym_STAR] = ACTIONS(6390), - [anon_sym_SLASH] = ACTIONS(6388), - [anon_sym_PERCENT] = ACTIONS(6390), - [anon_sym_PIPE_PIPE] = ACTIONS(6390), - [anon_sym_AMP_AMP] = ACTIONS(6390), - [anon_sym_PIPE] = ACTIONS(6388), - [anon_sym_CARET] = ACTIONS(6390), - [anon_sym_AMP] = ACTIONS(6388), - [anon_sym_EQ_EQ] = ACTIONS(6390), - [anon_sym_BANG_EQ] = ACTIONS(6390), - [anon_sym_GT] = ACTIONS(6388), - [anon_sym_GT_EQ] = ACTIONS(6388), - [anon_sym_LT_EQ] = ACTIONS(6388), - [anon_sym_LT] = ACTIONS(6388), - [anon_sym_LT_LT] = ACTIONS(6390), - [anon_sym_GT_GT] = ACTIONS(6388), - [anon_sym___extension__] = ACTIONS(7439), - [anon_sym___attribute__] = ACTIONS(6390), - [anon_sym___attribute] = ACTIONS(6388), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6390), - [anon_sym_LBRACK] = ACTIONS(6388), - [anon_sym_const] = ACTIONS(7447), - [anon_sym_constexpr] = ACTIONS(7439), - [anon_sym_volatile] = ACTIONS(7439), - [anon_sym_restrict] = ACTIONS(7439), - [anon_sym___restrict__] = ACTIONS(7439), - [anon_sym__Atomic] = ACTIONS(7439), - [anon_sym__Noreturn] = ACTIONS(7439), - [anon_sym_noreturn] = ACTIONS(7439), - [anon_sym__Nonnull] = ACTIONS(7439), - [anon_sym_mutable] = ACTIONS(7439), - [anon_sym_constinit] = ACTIONS(7439), - [anon_sym_consteval] = ACTIONS(7439), - [anon_sym_alignas] = ACTIONS(7449), - [anon_sym__Alignas] = ACTIONS(7449), - [anon_sym_QMARK] = ACTIONS(6390), - [anon_sym_LT_EQ_GT] = ACTIONS(6390), - [anon_sym_or] = ACTIONS(6390), - [anon_sym_and] = ACTIONS(6390), - [anon_sym_bitor] = ACTIONS(6390), - [anon_sym_xor] = ACTIONS(6390), - [anon_sym_bitand] = ACTIONS(6390), - [anon_sym_not_eq] = ACTIONS(6390), - [anon_sym_DASH_DASH] = ACTIONS(6390), - [anon_sym_PLUS_PLUS] = ACTIONS(6390), - [anon_sym_asm] = ACTIONS(6390), - [anon_sym___asm__] = ACTIONS(6390), - [anon_sym___asm] = ACTIONS(6388), - [anon_sym_DOT] = ACTIONS(6388), - [anon_sym_DOT_STAR] = ACTIONS(6390), - [anon_sym_DASH_GT] = ACTIONS(6390), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6390), - [anon_sym_override] = ACTIONS(6390), - [anon_sym_GT2] = ACTIONS(6390), - [anon_sym_noexcept] = ACTIONS(6390), - [anon_sym_throw] = ACTIONS(6390), - [anon_sym_requires] = ACTIONS(6390), + [STATE(3142)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7625), + [anon_sym_COMMA] = ACTIONS(7625), + [anon_sym_LPAREN2] = ACTIONS(7625), + [anon_sym_DASH] = ACTIONS(7623), + [anon_sym_PLUS] = ACTIONS(7623), + [anon_sym_STAR] = ACTIONS(7623), + [anon_sym_SLASH] = ACTIONS(7623), + [anon_sym_PERCENT] = ACTIONS(7623), + [anon_sym_PIPE_PIPE] = ACTIONS(7625), + [anon_sym_AMP_AMP] = ACTIONS(7625), + [anon_sym_PIPE] = ACTIONS(7623), + [anon_sym_CARET] = ACTIONS(7623), + [anon_sym_AMP] = ACTIONS(7623), + [anon_sym_EQ_EQ] = ACTIONS(7625), + [anon_sym_BANG_EQ] = ACTIONS(7625), + [anon_sym_GT] = ACTIONS(7623), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7623), + [anon_sym_LT] = ACTIONS(7623), + [anon_sym_LT_LT] = ACTIONS(7623), + [anon_sym_GT_GT] = ACTIONS(7623), + [anon_sym___extension__] = ACTIONS(7625), + [anon_sym_LBRACE] = ACTIONS(7625), + [anon_sym_LBRACK] = ACTIONS(7625), + [anon_sym_EQ] = ACTIONS(7623), + [anon_sym_const] = ACTIONS(7623), + [anon_sym_constexpr] = ACTIONS(7625), + [anon_sym_volatile] = ACTIONS(7625), + [anon_sym_restrict] = ACTIONS(7625), + [anon_sym___restrict__] = ACTIONS(7625), + [anon_sym__Atomic] = ACTIONS(7625), + [anon_sym__Noreturn] = ACTIONS(7625), + [anon_sym_noreturn] = ACTIONS(7625), + [anon_sym__Nonnull] = ACTIONS(7625), + [anon_sym_mutable] = ACTIONS(7625), + [anon_sym_constinit] = ACTIONS(7625), + [anon_sym_consteval] = ACTIONS(7625), + [anon_sym_alignas] = ACTIONS(7625), + [anon_sym__Alignas] = ACTIONS(7625), + [anon_sym_QMARK] = ACTIONS(7625), + [anon_sym_STAR_EQ] = ACTIONS(7625), + [anon_sym_SLASH_EQ] = ACTIONS(7625), + [anon_sym_PERCENT_EQ] = ACTIONS(7625), + [anon_sym_PLUS_EQ] = ACTIONS(7625), + [anon_sym_DASH_EQ] = ACTIONS(7625), + [anon_sym_LT_LT_EQ] = ACTIONS(7625), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7625), + [anon_sym_CARET_EQ] = ACTIONS(7625), + [anon_sym_PIPE_EQ] = ACTIONS(7625), + [anon_sym_and_eq] = ACTIONS(7625), + [anon_sym_or_eq] = ACTIONS(7625), + [anon_sym_xor_eq] = ACTIONS(7625), + [anon_sym_LT_EQ_GT] = ACTIONS(7625), + [anon_sym_or] = ACTIONS(7623), + [anon_sym_and] = ACTIONS(7623), + [anon_sym_bitor] = ACTIONS(7625), + [anon_sym_xor] = ACTIONS(7623), + [anon_sym_bitand] = ACTIONS(7625), + [anon_sym_not_eq] = ACTIONS(7625), + [anon_sym_DASH_DASH] = ACTIONS(7625), + [anon_sym_PLUS_PLUS] = ACTIONS(7625), + [anon_sym_DOT] = ACTIONS(7623), + [anon_sym_DOT_STAR] = ACTIONS(7625), + [anon_sym_DASH_GT] = ACTIONS(7625), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_override] = ACTIONS(7625), + [anon_sym_GT2] = ACTIONS(7625), + [anon_sym_requires] = ACTIONS(7625), }, - [STATE(3654)] = { - [sym_string_literal] = STATE(5466), - [sym_template_argument_list] = STATE(6719), - [sym_raw_string_literal] = STATE(5466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(8603), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_RBRACK] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(6615), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(6617), - [anon_sym_SLASH_EQ] = ACTIONS(6617), - [anon_sym_PERCENT_EQ] = ACTIONS(6617), - [anon_sym_PLUS_EQ] = ACTIONS(6617), - [anon_sym_DASH_EQ] = ACTIONS(6617), - [anon_sym_LT_LT_EQ] = ACTIONS(6617), - [anon_sym_GT_GT_EQ] = ACTIONS(6617), - [anon_sym_AMP_EQ] = ACTIONS(6617), - [anon_sym_CARET_EQ] = ACTIONS(6617), - [anon_sym_PIPE_EQ] = ACTIONS(6617), - [anon_sym_and_eq] = ACTIONS(6617), - [anon_sym_or_eq] = ACTIONS(6617), - [anon_sym_xor_eq] = ACTIONS(6617), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(6619), - [anon_sym_u_DQUOTE] = ACTIONS(6619), - [anon_sym_U_DQUOTE] = ACTIONS(6619), - [anon_sym_u8_DQUOTE] = ACTIONS(6619), - [anon_sym_DQUOTE] = ACTIONS(6619), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6625), - [anon_sym_LR_DQUOTE] = ACTIONS(6625), - [anon_sym_uR_DQUOTE] = ACTIONS(6625), - [anon_sym_UR_DQUOTE] = ACTIONS(6625), - [anon_sym_u8R_DQUOTE] = ACTIONS(6625), + [STATE(3143)] = { + [sym_identifier] = ACTIONS(7735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7737), + [anon_sym_COMMA] = ACTIONS(7737), + [anon_sym_RPAREN] = ACTIONS(7737), + [anon_sym_LPAREN2] = ACTIONS(7737), + [anon_sym_DASH] = ACTIONS(7735), + [anon_sym_PLUS] = ACTIONS(7735), + [anon_sym_STAR] = ACTIONS(7737), + [anon_sym_SLASH] = ACTIONS(7735), + [anon_sym_PERCENT] = ACTIONS(7737), + [anon_sym_PIPE_PIPE] = ACTIONS(7737), + [anon_sym_AMP_AMP] = ACTIONS(7737), + [anon_sym_PIPE] = ACTIONS(7735), + [anon_sym_CARET] = ACTIONS(7737), + [anon_sym_AMP] = ACTIONS(7735), + [anon_sym_EQ_EQ] = ACTIONS(7737), + [anon_sym_BANG_EQ] = ACTIONS(7737), + [anon_sym_GT] = ACTIONS(7735), + [anon_sym_GT_EQ] = ACTIONS(7737), + [anon_sym_LT_EQ] = ACTIONS(7735), + [anon_sym_LT] = ACTIONS(7735), + [anon_sym_LT_LT] = ACTIONS(7737), + [anon_sym_GT_GT] = ACTIONS(7737), + [anon_sym_SEMI] = ACTIONS(7737), + [anon_sym___extension__] = ACTIONS(7735), + [anon_sym___attribute__] = ACTIONS(7735), + [anon_sym___attribute] = ACTIONS(7735), + [anon_sym_COLON] = ACTIONS(7735), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7737), + [anon_sym___based] = ACTIONS(7735), + [anon_sym_LBRACE] = ACTIONS(7737), + [anon_sym_RBRACE] = ACTIONS(7737), + [anon_sym_signed] = ACTIONS(7735), + [anon_sym_unsigned] = ACTIONS(7735), + [anon_sym_long] = ACTIONS(7735), + [anon_sym_short] = ACTIONS(7735), + [anon_sym_LBRACK] = ACTIONS(7737), + [anon_sym_const] = ACTIONS(7735), + [anon_sym_constexpr] = ACTIONS(7735), + [anon_sym_volatile] = ACTIONS(7735), + [anon_sym_restrict] = ACTIONS(7735), + [anon_sym___restrict__] = ACTIONS(7735), + [anon_sym__Atomic] = ACTIONS(7735), + [anon_sym__Noreturn] = ACTIONS(7735), + [anon_sym_noreturn] = ACTIONS(7735), + [anon_sym__Nonnull] = ACTIONS(7735), + [anon_sym_mutable] = ACTIONS(7735), + [anon_sym_constinit] = ACTIONS(7735), + [anon_sym_consteval] = ACTIONS(7735), + [anon_sym_alignas] = ACTIONS(7735), + [anon_sym__Alignas] = ACTIONS(7735), + [sym_primitive_type] = ACTIONS(7735), + [anon_sym_QMARK] = ACTIONS(7737), + [anon_sym_LT_EQ_GT] = ACTIONS(7737), + [anon_sym_or] = ACTIONS(7735), + [anon_sym_and] = ACTIONS(7735), + [anon_sym_bitor] = ACTIONS(7735), + [anon_sym_xor] = ACTIONS(7735), + [anon_sym_bitand] = ACTIONS(7735), + [anon_sym_not_eq] = ACTIONS(7735), + [anon_sym_DASH_DASH] = ACTIONS(7737), + [anon_sym_PLUS_PLUS] = ACTIONS(7737), + [anon_sym_DOT] = ACTIONS(7735), + [anon_sym_DOT_STAR] = ACTIONS(7737), + [anon_sym_DASH_GT] = ACTIONS(7737), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7735), + [anon_sym_override] = ACTIONS(7735), + [anon_sym_requires] = ACTIONS(7735), + [anon_sym_COLON_RBRACK] = ACTIONS(7737), }, - [STATE(3655)] = { - [sym_string_literal] = STATE(3603), - [sym_template_argument_list] = STATE(5247), - [sym_raw_string_literal] = STATE(3603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8980), - [anon_sym_COMMA] = ACTIONS(9217), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(9184), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_RBRACK] = ACTIONS(9219), - [anon_sym_EQ] = ACTIONS(5260), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5253), - [anon_sym_SLASH_EQ] = ACTIONS(5253), - [anon_sym_PERCENT_EQ] = ACTIONS(5253), - [anon_sym_PLUS_EQ] = ACTIONS(5253), - [anon_sym_DASH_EQ] = ACTIONS(5253), - [anon_sym_LT_LT_EQ] = ACTIONS(5253), - [anon_sym_GT_GT_EQ] = ACTIONS(5253), - [anon_sym_AMP_EQ] = ACTIONS(5253), - [anon_sym_CARET_EQ] = ACTIONS(5253), - [anon_sym_PIPE_EQ] = ACTIONS(5253), - [anon_sym_and_eq] = ACTIONS(5253), - [anon_sym_or_eq] = ACTIONS(5253), - [anon_sym_xor_eq] = ACTIONS(5253), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(6676), - [anon_sym_u_DQUOTE] = ACTIONS(6676), - [anon_sym_U_DQUOTE] = ACTIONS(6676), - [anon_sym_u8_DQUOTE] = ACTIONS(6676), - [anon_sym_DQUOTE] = ACTIONS(6676), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6682), - [anon_sym_LR_DQUOTE] = ACTIONS(6682), - [anon_sym_uR_DQUOTE] = ACTIONS(6682), - [anon_sym_UR_DQUOTE] = ACTIONS(6682), - [anon_sym_u8R_DQUOTE] = ACTIONS(6682), + [STATE(3144)] = { + [sym_identifier] = ACTIONS(7743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7745), + [anon_sym_COMMA] = ACTIONS(7745), + [anon_sym_RPAREN] = ACTIONS(7745), + [anon_sym_LPAREN2] = ACTIONS(7745), + [anon_sym_DASH] = ACTIONS(7743), + [anon_sym_PLUS] = ACTIONS(7743), + [anon_sym_STAR] = ACTIONS(7745), + [anon_sym_SLASH] = ACTIONS(7743), + [anon_sym_PERCENT] = ACTIONS(7745), + [anon_sym_PIPE_PIPE] = ACTIONS(7745), + [anon_sym_AMP_AMP] = ACTIONS(7745), + [anon_sym_PIPE] = ACTIONS(7743), + [anon_sym_CARET] = ACTIONS(7745), + [anon_sym_AMP] = ACTIONS(7743), + [anon_sym_EQ_EQ] = ACTIONS(7745), + [anon_sym_BANG_EQ] = ACTIONS(7745), + [anon_sym_GT] = ACTIONS(7743), + [anon_sym_GT_EQ] = ACTIONS(7745), + [anon_sym_LT_EQ] = ACTIONS(7743), + [anon_sym_LT] = ACTIONS(7743), + [anon_sym_LT_LT] = ACTIONS(7745), + [anon_sym_GT_GT] = ACTIONS(7745), + [anon_sym_SEMI] = ACTIONS(7745), + [anon_sym___extension__] = ACTIONS(7743), + [anon_sym___attribute__] = ACTIONS(7743), + [anon_sym___attribute] = ACTIONS(7743), + [anon_sym_COLON] = ACTIONS(7743), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7745), + [anon_sym___based] = ACTIONS(7743), + [anon_sym_LBRACE] = ACTIONS(7745), + [anon_sym_RBRACE] = ACTIONS(7745), + [anon_sym_signed] = ACTIONS(7743), + [anon_sym_unsigned] = ACTIONS(7743), + [anon_sym_long] = ACTIONS(7743), + [anon_sym_short] = ACTIONS(7743), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7743), + [anon_sym_constexpr] = ACTIONS(7743), + [anon_sym_volatile] = ACTIONS(7743), + [anon_sym_restrict] = ACTIONS(7743), + [anon_sym___restrict__] = ACTIONS(7743), + [anon_sym__Atomic] = ACTIONS(7743), + [anon_sym__Noreturn] = ACTIONS(7743), + [anon_sym_noreturn] = ACTIONS(7743), + [anon_sym__Nonnull] = ACTIONS(7743), + [anon_sym_mutable] = ACTIONS(7743), + [anon_sym_constinit] = ACTIONS(7743), + [anon_sym_consteval] = ACTIONS(7743), + [anon_sym_alignas] = ACTIONS(7743), + [anon_sym__Alignas] = ACTIONS(7743), + [sym_primitive_type] = ACTIONS(7743), + [anon_sym_QMARK] = ACTIONS(7745), + [anon_sym_LT_EQ_GT] = ACTIONS(7745), + [anon_sym_or] = ACTIONS(7743), + [anon_sym_and] = ACTIONS(7743), + [anon_sym_bitor] = ACTIONS(7743), + [anon_sym_xor] = ACTIONS(7743), + [anon_sym_bitand] = ACTIONS(7743), + [anon_sym_not_eq] = ACTIONS(7743), + [anon_sym_DASH_DASH] = ACTIONS(7745), + [anon_sym_PLUS_PLUS] = ACTIONS(7745), + [anon_sym_DOT] = ACTIONS(7743), + [anon_sym_DOT_STAR] = ACTIONS(7745), + [anon_sym_DASH_GT] = ACTIONS(7745), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7743), + [anon_sym_override] = ACTIONS(7743), + [anon_sym_requires] = ACTIONS(7743), + [anon_sym_COLON_RBRACK] = ACTIONS(7745), }, - [STATE(3656)] = { - [sym_string_literal] = STATE(3652), - [sym_template_argument_list] = STATE(5220), - [sym_raw_string_literal] = STATE(3652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5260), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(9222), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(5260), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5253), - [anon_sym_SLASH_EQ] = ACTIONS(5253), - [anon_sym_PERCENT_EQ] = ACTIONS(5253), - [anon_sym_PLUS_EQ] = ACTIONS(5253), - [anon_sym_DASH_EQ] = ACTIONS(5253), - [anon_sym_LT_LT_EQ] = ACTIONS(5253), - [anon_sym_GT_GT_EQ] = ACTIONS(5260), - [anon_sym_AMP_EQ] = ACTIONS(5253), - [anon_sym_CARET_EQ] = ACTIONS(5253), - [anon_sym_PIPE_EQ] = ACTIONS(5253), - [anon_sym_and_eq] = ACTIONS(5253), - [anon_sym_or_eq] = ACTIONS(5253), - [anon_sym_xor_eq] = ACTIONS(5253), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5253), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5253), - [anon_sym_not_eq] = ACTIONS(5253), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_L_DQUOTE] = ACTIONS(6640), - [anon_sym_u_DQUOTE] = ACTIONS(6640), - [anon_sym_U_DQUOTE] = ACTIONS(6640), - [anon_sym_u8_DQUOTE] = ACTIONS(6640), - [anon_sym_DQUOTE] = ACTIONS(6640), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5253), - [anon_sym_R_DQUOTE] = ACTIONS(6646), - [anon_sym_LR_DQUOTE] = ACTIONS(6646), - [anon_sym_uR_DQUOTE] = ACTIONS(6646), - [anon_sym_UR_DQUOTE] = ACTIONS(6646), - [anon_sym_u8R_DQUOTE] = ACTIONS(6646), + [STATE(3145)] = { + [sym_argument_list] = STATE(5862), + [sym_initializer_list] = STATE(5876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(8592), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7223), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7223), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7225), }, - [STATE(3657)] = { - [sym__abstract_declarator] = STATE(6430), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(2399), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(2152), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(2399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(8341), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_PERCENT] = ACTIONS(6497), - [anon_sym_PIPE_PIPE] = ACTIONS(6497), - [anon_sym_AMP_AMP] = ACTIONS(8343), - [anon_sym_PIPE] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6497), - [anon_sym_AMP] = ACTIONS(8345), - [anon_sym_EQ_EQ] = ACTIONS(6497), - [anon_sym_BANG_EQ] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6495), - [anon_sym_GT_EQ] = ACTIONS(6497), - [anon_sym_LT_EQ] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6495), - [anon_sym_LT_LT] = ACTIONS(6497), - [anon_sym_GT_GT] = ACTIONS(6497), - [anon_sym_SEMI] = ACTIONS(6497), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym___attribute__] = ACTIONS(6497), - [anon_sym___attribute] = ACTIONS(6495), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(6497), - [anon_sym_LT_EQ_GT] = ACTIONS(6497), - [anon_sym_or] = ACTIONS(6497), - [anon_sym_and] = ACTIONS(6497), - [anon_sym_bitor] = ACTIONS(6497), - [anon_sym_xor] = ACTIONS(6497), - [anon_sym_bitand] = ACTIONS(6497), - [anon_sym_not_eq] = ACTIONS(6497), - [anon_sym_DASH_DASH] = ACTIONS(6497), - [anon_sym_PLUS_PLUS] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6495), - [anon_sym_DOT_STAR] = ACTIONS(6497), - [anon_sym_DASH_GT] = ACTIONS(6497), + [STATE(3146)] = { + [sym_decltype_auto] = STATE(3095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7223), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7457), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7223), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8631), + [anon_sym_decltype] = ACTIONS(7038), + [anon_sym_GT2] = ACTIONS(7225), }, - [STATE(3658)] = { - [sym_decltype_auto] = STATE(3963), - [sym_identifier] = ACTIONS(6798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [aux_sym_preproc_if_token2] = ACTIONS(6800), - [aux_sym_preproc_else_token1] = ACTIONS(6800), - [aux_sym_preproc_elif_token1] = ACTIONS(6798), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(6800), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6800), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6800), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6800), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6800), - [anon_sym_GT_GT] = ACTIONS(6800), - [anon_sym___extension__] = ACTIONS(6798), - [anon_sym_LBRACE] = ACTIONS(6800), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_RBRACK] = ACTIONS(6800), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6798), - [anon_sym_volatile] = ACTIONS(6798), - [anon_sym_restrict] = ACTIONS(6798), - [anon_sym___restrict__] = ACTIONS(6798), - [anon_sym__Atomic] = ACTIONS(6798), - [anon_sym__Noreturn] = ACTIONS(6798), - [anon_sym_noreturn] = ACTIONS(6798), - [anon_sym__Nonnull] = ACTIONS(6798), - [anon_sym_mutable] = ACTIONS(6798), - [anon_sym_constinit] = ACTIONS(6798), - [anon_sym_consteval] = ACTIONS(6798), - [anon_sym_alignas] = ACTIONS(6798), - [anon_sym__Alignas] = ACTIONS(6798), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6798), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6798), - [anon_sym_not_eq] = ACTIONS(6798), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(9191), - [anon_sym_decltype] = ACTIONS(6451), - [anon_sym_final] = ACTIONS(6798), - [anon_sym_override] = ACTIONS(6798), - [anon_sym_requires] = ACTIONS(6798), + [STATE(3147)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7661), + [anon_sym_COMMA] = ACTIONS(7661), + [anon_sym_LPAREN2] = ACTIONS(7661), + [anon_sym_DASH] = ACTIONS(7659), + [anon_sym_PLUS] = ACTIONS(7659), + [anon_sym_STAR] = ACTIONS(7659), + [anon_sym_SLASH] = ACTIONS(7659), + [anon_sym_PERCENT] = ACTIONS(7659), + [anon_sym_PIPE_PIPE] = ACTIONS(7661), + [anon_sym_AMP_AMP] = ACTIONS(7661), + [anon_sym_PIPE] = ACTIONS(7659), + [anon_sym_CARET] = ACTIONS(7659), + [anon_sym_AMP] = ACTIONS(7659), + [anon_sym_EQ_EQ] = ACTIONS(7661), + [anon_sym_BANG_EQ] = ACTIONS(7661), + [anon_sym_GT] = ACTIONS(7659), + [anon_sym_GT_EQ] = ACTIONS(7659), + [anon_sym_LT_EQ] = ACTIONS(7659), + [anon_sym_LT] = ACTIONS(7659), + [anon_sym_LT_LT] = ACTIONS(7659), + [anon_sym_GT_GT] = ACTIONS(7659), + [anon_sym___extension__] = ACTIONS(7661), + [anon_sym_LBRACE] = ACTIONS(7661), + [anon_sym_LBRACK] = ACTIONS(7661), + [anon_sym_EQ] = ACTIONS(7659), + [anon_sym_const] = ACTIONS(7659), + [anon_sym_constexpr] = ACTIONS(7661), + [anon_sym_volatile] = ACTIONS(7661), + [anon_sym_restrict] = ACTIONS(7661), + [anon_sym___restrict__] = ACTIONS(7661), + [anon_sym__Atomic] = ACTIONS(7661), + [anon_sym__Noreturn] = ACTIONS(7661), + [anon_sym_noreturn] = ACTIONS(7661), + [anon_sym__Nonnull] = ACTIONS(7661), + [anon_sym_mutable] = ACTIONS(7661), + [anon_sym_constinit] = ACTIONS(7661), + [anon_sym_consteval] = ACTIONS(7661), + [anon_sym_alignas] = ACTIONS(7661), + [anon_sym__Alignas] = ACTIONS(7661), + [anon_sym_QMARK] = ACTIONS(7661), + [anon_sym_STAR_EQ] = ACTIONS(7661), + [anon_sym_SLASH_EQ] = ACTIONS(7661), + [anon_sym_PERCENT_EQ] = ACTIONS(7661), + [anon_sym_PLUS_EQ] = ACTIONS(7661), + [anon_sym_DASH_EQ] = ACTIONS(7661), + [anon_sym_LT_LT_EQ] = ACTIONS(7661), + [anon_sym_GT_GT_EQ] = ACTIONS(7659), + [anon_sym_AMP_EQ] = ACTIONS(7661), + [anon_sym_CARET_EQ] = ACTIONS(7661), + [anon_sym_PIPE_EQ] = ACTIONS(7661), + [anon_sym_and_eq] = ACTIONS(7661), + [anon_sym_or_eq] = ACTIONS(7661), + [anon_sym_xor_eq] = ACTIONS(7661), + [anon_sym_LT_EQ_GT] = ACTIONS(7661), + [anon_sym_or] = ACTIONS(7659), + [anon_sym_and] = ACTIONS(7659), + [anon_sym_bitor] = ACTIONS(7661), + [anon_sym_xor] = ACTIONS(7659), + [anon_sym_bitand] = ACTIONS(7661), + [anon_sym_not_eq] = ACTIONS(7661), + [anon_sym_DASH_DASH] = ACTIONS(7661), + [anon_sym_PLUS_PLUS] = ACTIONS(7661), + [anon_sym_DOT] = ACTIONS(7659), + [anon_sym_DOT_STAR] = ACTIONS(7661), + [anon_sym_DASH_GT] = ACTIONS(7661), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7661), + [anon_sym_override] = ACTIONS(7661), + [anon_sym_GT2] = ACTIONS(7661), + [anon_sym_requires] = ACTIONS(7661), }, - [STATE(3659)] = { - [sym_ms_based_modifier] = STATE(10656), - [sym__declarator] = STATE(8705), - [sym__abstract_declarator] = STATE(8931), - [sym_parenthesized_declarator] = STATE(8469), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_function_declarator] = STATE(8469), - [sym_abstract_function_declarator] = STATE(8389), - [sym_array_declarator] = STATE(8469), - [sym_abstract_array_declarator] = STATE(8389), - [sym_type_qualifier] = STATE(6842), - [sym_alignas_qualifier] = STATE(7436), - [sym_parameter_list] = STATE(5185), - [sym_decltype] = STATE(10976), - [sym_reference_declarator] = STATE(8469), - [sym_abstract_reference_declarator] = STATE(8389), - [sym_structured_binding_declarator] = STATE(8469), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7878), - [sym_qualified_identifier] = STATE(8469), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__type_definition_type_repeat1] = STATE(6842), - [sym_identifier] = ACTIONS(8195), - [anon_sym_COMMA] = ACTIONS(7007), - [anon_sym_LPAREN2] = ACTIONS(5301), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(8307), - [anon_sym_AMP_AMP] = ACTIONS(8309), - [anon_sym_AMP] = ACTIONS(8311), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(7009), - [anon_sym___attribute] = ACTIONS(7009), - [anon_sym_COLON_COLON] = ACTIONS(8203), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(5311), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym__Nonnull] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2939), - [anon_sym__Alignas] = ACTIONS(2939), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_GT2] = ACTIONS(7007), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), + [STATE(3148)] = { + [sym_identifier] = ACTIONS(3163), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [anon_sym_COMMA] = ACTIONS(3488), + [aux_sym_preproc_if_token1] = ACTIONS(3163), + [aux_sym_preproc_if_token2] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), + [sym_preproc_directive] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3488), + [anon_sym___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_extern] = ACTIONS(3163), + [anon_sym___attribute__] = ACTIONS(8598), + [anon_sym___attribute] = ACTIONS(8598), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3163), + [anon_sym___based] = ACTIONS(3163), + [anon_sym_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym___inline] = ACTIONS(3163), + [anon_sym___inline__] = ACTIONS(3163), + [anon_sym___forceinline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym___thread] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym___restrict__] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym__Noreturn] = ACTIONS(3163), + [anon_sym_noreturn] = ACTIONS(3163), + [anon_sym__Nonnull] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym__Alignas] = ACTIONS(3163), + [sym_primitive_type] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_typename] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_private] = ACTIONS(3163), + [anon_sym_template] = ACTIONS(3163), + [anon_sym_operator] = ACTIONS(3163), + [anon_sym_friend] = ACTIONS(3163), + [anon_sym_public] = ACTIONS(3163), + [anon_sym_protected] = ACTIONS(3163), + [anon_sym_static_assert] = ACTIONS(3163), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), }, - [STATE(3660)] = { - [sym_string_literal] = STATE(3557), - [sym_raw_string_literal] = STATE(3557), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8739), - [anon_sym_COMMA] = ACTIONS(8739), - [anon_sym_RPAREN] = ACTIONS(8739), - [anon_sym_LPAREN2] = ACTIONS(8739), - [anon_sym_DASH] = ACTIONS(8737), - [anon_sym_PLUS] = ACTIONS(8737), - [anon_sym_STAR] = ACTIONS(8737), - [anon_sym_SLASH] = ACTIONS(8737), - [anon_sym_PERCENT] = ACTIONS(8737), - [anon_sym_PIPE_PIPE] = ACTIONS(8739), - [anon_sym_AMP_AMP] = ACTIONS(8739), - [anon_sym_PIPE] = ACTIONS(8737), - [anon_sym_CARET] = ACTIONS(8737), - [anon_sym_AMP] = ACTIONS(8737), - [anon_sym_EQ_EQ] = ACTIONS(8739), - [anon_sym_BANG_EQ] = ACTIONS(8739), - [anon_sym_GT] = ACTIONS(8737), - [anon_sym_GT_EQ] = ACTIONS(8739), - [anon_sym_LT_EQ] = ACTIONS(8737), - [anon_sym_LT] = ACTIONS(8737), - [anon_sym_LT_LT] = ACTIONS(8737), - [anon_sym_GT_GT] = ACTIONS(8737), - [anon_sym_LBRACK] = ACTIONS(8739), - [anon_sym_EQ] = ACTIONS(8737), - [anon_sym_QMARK] = ACTIONS(8739), - [anon_sym_STAR_EQ] = ACTIONS(8739), - [anon_sym_SLASH_EQ] = ACTIONS(8739), - [anon_sym_PERCENT_EQ] = ACTIONS(8739), - [anon_sym_PLUS_EQ] = ACTIONS(8739), - [anon_sym_DASH_EQ] = ACTIONS(8739), - [anon_sym_LT_LT_EQ] = ACTIONS(8739), - [anon_sym_GT_GT_EQ] = ACTIONS(8739), - [anon_sym_AMP_EQ] = ACTIONS(8739), - [anon_sym_CARET_EQ] = ACTIONS(8739), - [anon_sym_PIPE_EQ] = ACTIONS(8739), - [anon_sym_and_eq] = ACTIONS(8737), - [anon_sym_or_eq] = ACTIONS(8737), - [anon_sym_xor_eq] = ACTIONS(8737), - [anon_sym_LT_EQ_GT] = ACTIONS(8739), - [anon_sym_or] = ACTIONS(8737), - [anon_sym_and] = ACTIONS(8737), - [anon_sym_bitor] = ACTIONS(8737), - [anon_sym_xor] = ACTIONS(8737), - [anon_sym_bitand] = ACTIONS(8737), - [anon_sym_not_eq] = ACTIONS(8737), - [anon_sym_DASH_DASH] = ACTIONS(8739), - [anon_sym_PLUS_PLUS] = ACTIONS(8739), - [anon_sym_DOT] = ACTIONS(8737), - [anon_sym_DOT_STAR] = ACTIONS(8739), - [anon_sym_DASH_GT] = ACTIONS(8737), - [anon_sym_L_DQUOTE] = ACTIONS(6517), - [anon_sym_u_DQUOTE] = ACTIONS(6517), - [anon_sym_U_DQUOTE] = ACTIONS(6517), - [anon_sym_u8_DQUOTE] = ACTIONS(6517), - [anon_sym_DQUOTE] = ACTIONS(6517), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6519), - [anon_sym_LR_DQUOTE] = ACTIONS(6519), - [anon_sym_uR_DQUOTE] = ACTIONS(6519), - [anon_sym_UR_DQUOTE] = ACTIONS(6519), - [anon_sym_u8R_DQUOTE] = ACTIONS(6519), - [anon_sym_DASH_GT_STAR] = ACTIONS(8739), - [sym_literal_suffix] = ACTIONS(8737), + [STATE(3149)] = { + [sym_identifier] = ACTIONS(9063), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9065), + [anon_sym_COMMA] = ACTIONS(9065), + [anon_sym_RPAREN] = ACTIONS(9065), + [aux_sym_preproc_if_token2] = ACTIONS(9065), + [aux_sym_preproc_else_token1] = ACTIONS(9065), + [aux_sym_preproc_elif_token1] = ACTIONS(9063), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9065), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9065), + [anon_sym_LPAREN2] = ACTIONS(9065), + [anon_sym_DASH] = ACTIONS(9063), + [anon_sym_PLUS] = ACTIONS(9063), + [anon_sym_STAR] = ACTIONS(9063), + [anon_sym_SLASH] = ACTIONS(9063), + [anon_sym_PERCENT] = ACTIONS(9063), + [anon_sym_PIPE_PIPE] = ACTIONS(9065), + [anon_sym_AMP_AMP] = ACTIONS(9065), + [anon_sym_PIPE] = ACTIONS(9063), + [anon_sym_CARET] = ACTIONS(9063), + [anon_sym_AMP] = ACTIONS(9063), + [anon_sym_EQ_EQ] = ACTIONS(9065), + [anon_sym_BANG_EQ] = ACTIONS(9065), + [anon_sym_GT] = ACTIONS(9063), + [anon_sym_GT_EQ] = ACTIONS(9065), + [anon_sym_LT_EQ] = ACTIONS(9063), + [anon_sym_LT] = ACTIONS(9063), + [anon_sym_LT_LT] = ACTIONS(9063), + [anon_sym_GT_GT] = ACTIONS(9063), + [anon_sym_SEMI] = ACTIONS(9065), + [anon_sym___attribute__] = ACTIONS(9063), + [anon_sym___attribute] = ACTIONS(9063), + [anon_sym_COLON] = ACTIONS(9063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9065), + [anon_sym_LBRACE] = ACTIONS(9065), + [anon_sym_RBRACE] = ACTIONS(9065), + [anon_sym_LBRACK] = ACTIONS(9063), + [anon_sym_RBRACK] = ACTIONS(9065), + [anon_sym_EQ] = ACTIONS(9063), + [anon_sym_QMARK] = ACTIONS(9065), + [anon_sym_STAR_EQ] = ACTIONS(9065), + [anon_sym_SLASH_EQ] = ACTIONS(9065), + [anon_sym_PERCENT_EQ] = ACTIONS(9065), + [anon_sym_PLUS_EQ] = ACTIONS(9065), + [anon_sym_DASH_EQ] = ACTIONS(9065), + [anon_sym_LT_LT_EQ] = ACTIONS(9065), + [anon_sym_GT_GT_EQ] = ACTIONS(9065), + [anon_sym_AMP_EQ] = ACTIONS(9065), + [anon_sym_CARET_EQ] = ACTIONS(9065), + [anon_sym_PIPE_EQ] = ACTIONS(9065), + [anon_sym_and_eq] = ACTIONS(9063), + [anon_sym_or_eq] = ACTIONS(9063), + [anon_sym_xor_eq] = ACTIONS(9063), + [anon_sym_LT_EQ_GT] = ACTIONS(9065), + [anon_sym_or] = ACTIONS(9063), + [anon_sym_and] = ACTIONS(9063), + [anon_sym_bitor] = ACTIONS(9063), + [anon_sym_xor] = ACTIONS(9063), + [anon_sym_bitand] = ACTIONS(9063), + [anon_sym_not_eq] = ACTIONS(9063), + [anon_sym_DASH_DASH] = ACTIONS(9065), + [anon_sym_PLUS_PLUS] = ACTIONS(9065), + [anon_sym_asm] = ACTIONS(9063), + [anon_sym___asm__] = ACTIONS(9063), + [anon_sym___asm] = ACTIONS(9063), + [anon_sym_DOT] = ACTIONS(9063), + [anon_sym_DOT_STAR] = ACTIONS(9065), + [anon_sym_DASH_GT] = ACTIONS(9065), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9063), + [anon_sym_COLON_RBRACK] = ACTIONS(9065), }, - [STATE(3661)] = { - [sym_identifier] = ACTIONS(8145), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8140), - [anon_sym_COMMA] = ACTIONS(8140), - [anon_sym_RPAREN] = ACTIONS(8140), - [aux_sym_preproc_if_token2] = ACTIONS(8140), - [aux_sym_preproc_else_token1] = ACTIONS(8140), - [aux_sym_preproc_elif_token1] = ACTIONS(8145), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8140), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8140), - [anon_sym_LPAREN2] = ACTIONS(8140), - [anon_sym_DASH] = ACTIONS(8145), - [anon_sym_PLUS] = ACTIONS(8145), - [anon_sym_STAR] = ACTIONS(8145), - [anon_sym_SLASH] = ACTIONS(8145), - [anon_sym_PERCENT] = ACTIONS(8145), - [anon_sym_PIPE_PIPE] = ACTIONS(8140), - [anon_sym_AMP_AMP] = ACTIONS(8140), - [anon_sym_PIPE] = ACTIONS(8145), - [anon_sym_CARET] = ACTIONS(8145), - [anon_sym_AMP] = ACTIONS(8145), - [anon_sym_EQ_EQ] = ACTIONS(8140), - [anon_sym_BANG_EQ] = ACTIONS(8140), - [anon_sym_GT] = ACTIONS(8145), - [anon_sym_GT_EQ] = ACTIONS(8140), - [anon_sym_LT_EQ] = ACTIONS(8145), - [anon_sym_LT] = ACTIONS(8145), - [anon_sym_LT_LT] = ACTIONS(8145), - [anon_sym_GT_GT] = ACTIONS(8145), - [anon_sym_SEMI] = ACTIONS(8140), - [anon_sym___attribute__] = ACTIONS(8145), - [anon_sym___attribute] = ACTIONS(8145), - [anon_sym_COLON] = ACTIONS(8145), - [anon_sym_COLON_COLON] = ACTIONS(8140), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8140), - [anon_sym_RBRACE] = ACTIONS(8140), - [anon_sym_LBRACK] = ACTIONS(8140), - [anon_sym_EQ] = ACTIONS(8145), - [anon_sym_QMARK] = ACTIONS(8140), - [anon_sym_STAR_EQ] = ACTIONS(8140), - [anon_sym_SLASH_EQ] = ACTIONS(8140), - [anon_sym_PERCENT_EQ] = ACTIONS(8140), - [anon_sym_PLUS_EQ] = ACTIONS(8140), - [anon_sym_DASH_EQ] = ACTIONS(8140), - [anon_sym_LT_LT_EQ] = ACTIONS(8140), - [anon_sym_GT_GT_EQ] = ACTIONS(8140), - [anon_sym_AMP_EQ] = ACTIONS(8140), - [anon_sym_CARET_EQ] = ACTIONS(8140), - [anon_sym_PIPE_EQ] = ACTIONS(8140), - [anon_sym_and_eq] = ACTIONS(8145), - [anon_sym_or_eq] = ACTIONS(8145), - [anon_sym_xor_eq] = ACTIONS(8145), - [anon_sym_LT_EQ_GT] = ACTIONS(8140), - [anon_sym_or] = ACTIONS(8145), - [anon_sym_and] = ACTIONS(8145), - [anon_sym_bitor] = ACTIONS(8145), - [anon_sym_xor] = ACTIONS(8145), - [anon_sym_bitand] = ACTIONS(8145), - [anon_sym_not_eq] = ACTIONS(8145), - [anon_sym_DASH_DASH] = ACTIONS(8140), - [anon_sym_PLUS_PLUS] = ACTIONS(8140), - [anon_sym_DOT] = ACTIONS(8145), - [anon_sym_DOT_STAR] = ACTIONS(8140), - [anon_sym_DASH_GT] = ACTIONS(8140), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(8140), + [STATE(3150)] = { + [sym_identifier] = ACTIONS(3163), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [aux_sym_preproc_if_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), + [sym_preproc_directive] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_extern] = ACTIONS(3163), + [anon_sym___attribute__] = ACTIONS(3163), + [anon_sym___attribute] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3163), + [anon_sym___based] = ACTIONS(3163), + [anon_sym_RBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym___inline] = ACTIONS(3163), + [anon_sym___inline__] = ACTIONS(3163), + [anon_sym___forceinline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym___thread] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym___restrict__] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym__Noreturn] = ACTIONS(3163), + [anon_sym_noreturn] = ACTIONS(3163), + [anon_sym__Nonnull] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym__Alignas] = ACTIONS(3163), + [sym_primitive_type] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_typename] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_private] = ACTIONS(3163), + [anon_sym_template] = ACTIONS(3163), + [anon_sym_operator] = ACTIONS(3163), + [anon_sym_friend] = ACTIONS(3163), + [anon_sym_public] = ACTIONS(3163), + [anon_sym_protected] = ACTIONS(3163), + [anon_sym_static_assert] = ACTIONS(3163), + [anon_sym_catch] = ACTIONS(3163), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), }, - [STATE(3662)] = { - [sym_template_argument_list] = STATE(2081), - [sym_identifier] = ACTIONS(9225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9227), - [anon_sym_COMMA] = ACTIONS(9227), - [anon_sym_RPAREN] = ACTIONS(9227), - [aux_sym_preproc_if_token2] = ACTIONS(9227), - [aux_sym_preproc_else_token1] = ACTIONS(9227), - [aux_sym_preproc_elif_token1] = ACTIONS(9225), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9227), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9227), - [anon_sym_LPAREN2] = ACTIONS(9227), - [anon_sym_DASH] = ACTIONS(9225), - [anon_sym_PLUS] = ACTIONS(9225), - [anon_sym_STAR] = ACTIONS(9225), - [anon_sym_SLASH] = ACTIONS(9225), - [anon_sym_PERCENT] = ACTIONS(9225), - [anon_sym_PIPE_PIPE] = ACTIONS(9227), - [anon_sym_AMP_AMP] = ACTIONS(9227), - [anon_sym_PIPE] = ACTIONS(9225), - [anon_sym_CARET] = ACTIONS(9225), - [anon_sym_AMP] = ACTIONS(9225), - [anon_sym_EQ_EQ] = ACTIONS(9227), - [anon_sym_BANG_EQ] = ACTIONS(9227), - [anon_sym_GT] = ACTIONS(9225), - [anon_sym_GT_EQ] = ACTIONS(9227), - [anon_sym_LT_EQ] = ACTIONS(9225), - [anon_sym_LT] = ACTIONS(9229), - [anon_sym_LT_LT] = ACTIONS(9225), - [anon_sym_GT_GT] = ACTIONS(9225), - [anon_sym_SEMI] = ACTIONS(9227), - [anon_sym___attribute__] = ACTIONS(9225), - [anon_sym___attribute] = ACTIONS(9225), - [anon_sym_COLON] = ACTIONS(9225), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9227), - [anon_sym_RBRACE] = ACTIONS(9227), - [anon_sym_LBRACK] = ACTIONS(9227), - [anon_sym_EQ] = ACTIONS(9225), - [anon_sym_QMARK] = ACTIONS(9227), - [anon_sym_STAR_EQ] = ACTIONS(9227), - [anon_sym_SLASH_EQ] = ACTIONS(9227), - [anon_sym_PERCENT_EQ] = ACTIONS(9227), - [anon_sym_PLUS_EQ] = ACTIONS(9227), - [anon_sym_DASH_EQ] = ACTIONS(9227), - [anon_sym_LT_LT_EQ] = ACTIONS(9227), - [anon_sym_GT_GT_EQ] = ACTIONS(9227), - [anon_sym_AMP_EQ] = ACTIONS(9227), - [anon_sym_CARET_EQ] = ACTIONS(9227), - [anon_sym_PIPE_EQ] = ACTIONS(9227), - [anon_sym_and_eq] = ACTIONS(9225), - [anon_sym_or_eq] = ACTIONS(9225), - [anon_sym_xor_eq] = ACTIONS(9225), - [anon_sym_LT_EQ_GT] = ACTIONS(9227), - [anon_sym_or] = ACTIONS(9225), - [anon_sym_and] = ACTIONS(9225), - [anon_sym_bitor] = ACTIONS(9225), - [anon_sym_xor] = ACTIONS(9225), - [anon_sym_bitand] = ACTIONS(9225), - [anon_sym_not_eq] = ACTIONS(9225), - [anon_sym_DASH_DASH] = ACTIONS(9227), - [anon_sym_PLUS_PLUS] = ACTIONS(9227), - [anon_sym_DOT] = ACTIONS(9225), - [anon_sym_DOT_STAR] = ACTIONS(9227), - [anon_sym_DASH_GT] = ACTIONS(9227), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9227), + [STATE(3151)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6605), + [anon_sym_PLUS] = ACTIONS(6605), + [anon_sym_STAR] = ACTIONS(6605), + [anon_sym_SLASH] = ACTIONS(6605), + [anon_sym_PERCENT] = ACTIONS(6605), + [anon_sym_PIPE_PIPE] = ACTIONS(6598), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6605), + [anon_sym_CARET] = ACTIONS(6605), + [anon_sym_AMP] = ACTIONS(6605), + [anon_sym_EQ_EQ] = ACTIONS(6598), + [anon_sym_BANG_EQ] = ACTIONS(6598), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6605), + [anon_sym_LT_EQ] = ACTIONS(6605), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6605), + [anon_sym_GT_GT] = ACTIONS(6605), + [anon_sym___extension__] = ACTIONS(6601), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_LBRACK] = ACTIONS(6598), + [anon_sym_EQ] = ACTIONS(6603), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6601), + [anon_sym_volatile] = ACTIONS(6601), + [anon_sym_restrict] = ACTIONS(6601), + [anon_sym___restrict__] = ACTIONS(6601), + [anon_sym__Atomic] = ACTIONS(6601), + [anon_sym__Noreturn] = ACTIONS(6601), + [anon_sym_noreturn] = ACTIONS(6601), + [anon_sym__Nonnull] = ACTIONS(6601), + [anon_sym_mutable] = ACTIONS(6601), + [anon_sym_constinit] = ACTIONS(6601), + [anon_sym_consteval] = ACTIONS(6601), + [anon_sym_alignas] = ACTIONS(6601), + [anon_sym__Alignas] = ACTIONS(6601), + [anon_sym_QMARK] = ACTIONS(6598), + [anon_sym_STAR_EQ] = ACTIONS(6596), + [anon_sym_SLASH_EQ] = ACTIONS(6596), + [anon_sym_PERCENT_EQ] = ACTIONS(6596), + [anon_sym_PLUS_EQ] = ACTIONS(6596), + [anon_sym_DASH_EQ] = ACTIONS(6596), + [anon_sym_LT_LT_EQ] = ACTIONS(6596), + [anon_sym_GT_GT_EQ] = ACTIONS(6603), + [anon_sym_AMP_EQ] = ACTIONS(6596), + [anon_sym_CARET_EQ] = ACTIONS(6596), + [anon_sym_PIPE_EQ] = ACTIONS(6596), + [anon_sym_and_eq] = ACTIONS(6596), + [anon_sym_or_eq] = ACTIONS(6596), + [anon_sym_xor_eq] = ACTIONS(6596), + [anon_sym_LT_EQ_GT] = ACTIONS(6598), + [anon_sym_or] = ACTIONS(6605), + [anon_sym_and] = ACTIONS(6605), + [anon_sym_bitor] = ACTIONS(6598), + [anon_sym_xor] = ACTIONS(6605), + [anon_sym_bitand] = ACTIONS(6598), + [anon_sym_not_eq] = ACTIONS(6598), + [anon_sym_DASH_DASH] = ACTIONS(6598), + [anon_sym_PLUS_PLUS] = ACTIONS(6598), + [anon_sym_DOT] = ACTIONS(6605), + [anon_sym_DOT_STAR] = ACTIONS(6598), + [anon_sym_DASH_GT] = ACTIONS(6598), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6601), + [anon_sym_decltype] = ACTIONS(6601), + [anon_sym_GT2] = ACTIONS(6598), }, - [STATE(3663)] = { - [sym_ms_based_modifier] = STATE(10827), - [sym__declarator] = STATE(8646), - [sym__abstract_declarator] = STATE(8942), - [sym_parenthesized_declarator] = STATE(8469), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_function_declarator] = STATE(8469), - [sym_abstract_function_declarator] = STATE(8389), - [sym_array_declarator] = STATE(8469), - [sym_abstract_array_declarator] = STATE(8389), - [sym_type_qualifier] = STATE(6842), - [sym_alignas_qualifier] = STATE(7436), - [sym_parameter_list] = STATE(5256), - [sym_decltype] = STATE(10976), - [sym_reference_declarator] = STATE(8469), - [sym_abstract_reference_declarator] = STATE(8389), - [sym_structured_binding_declarator] = STATE(8469), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7869), - [sym_qualified_identifier] = STATE(8469), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__type_definition_type_repeat1] = STATE(6842), - [sym_identifier] = ACTIONS(7868), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_RPAREN] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(5301), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(8354), - [anon_sym_AMP_AMP] = ACTIONS(8356), - [anon_sym_AMP] = ACTIONS(8358), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(6495), - [anon_sym___attribute] = ACTIONS(6495), - [anon_sym_COLON_COLON] = ACTIONS(8360), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(5311), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym__Nonnull] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2939), - [anon_sym__Alignas] = ACTIONS(2939), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), + [STATE(3152)] = { + [sym_identifier] = ACTIONS(9067), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9069), + [anon_sym_COMMA] = ACTIONS(9069), + [anon_sym_RPAREN] = ACTIONS(9069), + [aux_sym_preproc_if_token2] = ACTIONS(9069), + [aux_sym_preproc_else_token1] = ACTIONS(9069), + [aux_sym_preproc_elif_token1] = ACTIONS(9067), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9069), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9069), + [anon_sym_LPAREN2] = ACTIONS(9069), + [anon_sym_DASH] = ACTIONS(9067), + [anon_sym_PLUS] = ACTIONS(9067), + [anon_sym_STAR] = ACTIONS(9067), + [anon_sym_SLASH] = ACTIONS(9067), + [anon_sym_PERCENT] = ACTIONS(9067), + [anon_sym_PIPE_PIPE] = ACTIONS(9069), + [anon_sym_AMP_AMP] = ACTIONS(9069), + [anon_sym_PIPE] = ACTIONS(9067), + [anon_sym_CARET] = ACTIONS(9067), + [anon_sym_AMP] = ACTIONS(9067), + [anon_sym_EQ_EQ] = ACTIONS(9069), + [anon_sym_BANG_EQ] = ACTIONS(9069), + [anon_sym_GT] = ACTIONS(9067), + [anon_sym_GT_EQ] = ACTIONS(9069), + [anon_sym_LT_EQ] = ACTIONS(9067), + [anon_sym_LT] = ACTIONS(9067), + [anon_sym_LT_LT] = ACTIONS(9067), + [anon_sym_GT_GT] = ACTIONS(9067), + [anon_sym_SEMI] = ACTIONS(9069), + [anon_sym___attribute__] = ACTIONS(9067), + [anon_sym___attribute] = ACTIONS(9067), + [anon_sym_COLON] = ACTIONS(9067), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9069), + [anon_sym_LBRACE] = ACTIONS(9069), + [anon_sym_RBRACE] = ACTIONS(9069), + [anon_sym_LBRACK] = ACTIONS(9067), + [anon_sym_RBRACK] = ACTIONS(9069), + [anon_sym_EQ] = ACTIONS(9067), + [anon_sym_QMARK] = ACTIONS(9069), + [anon_sym_STAR_EQ] = ACTIONS(9069), + [anon_sym_SLASH_EQ] = ACTIONS(9069), + [anon_sym_PERCENT_EQ] = ACTIONS(9069), + [anon_sym_PLUS_EQ] = ACTIONS(9069), + [anon_sym_DASH_EQ] = ACTIONS(9069), + [anon_sym_LT_LT_EQ] = ACTIONS(9069), + [anon_sym_GT_GT_EQ] = ACTIONS(9069), + [anon_sym_AMP_EQ] = ACTIONS(9069), + [anon_sym_CARET_EQ] = ACTIONS(9069), + [anon_sym_PIPE_EQ] = ACTIONS(9069), + [anon_sym_and_eq] = ACTIONS(9067), + [anon_sym_or_eq] = ACTIONS(9067), + [anon_sym_xor_eq] = ACTIONS(9067), + [anon_sym_LT_EQ_GT] = ACTIONS(9069), + [anon_sym_or] = ACTIONS(9067), + [anon_sym_and] = ACTIONS(9067), + [anon_sym_bitor] = ACTIONS(9067), + [anon_sym_xor] = ACTIONS(9067), + [anon_sym_bitand] = ACTIONS(9067), + [anon_sym_not_eq] = ACTIONS(9067), + [anon_sym_DASH_DASH] = ACTIONS(9069), + [anon_sym_PLUS_PLUS] = ACTIONS(9069), + [anon_sym_asm] = ACTIONS(9067), + [anon_sym___asm__] = ACTIONS(9067), + [anon_sym___asm] = ACTIONS(9067), + [anon_sym_DOT] = ACTIONS(9067), + [anon_sym_DOT_STAR] = ACTIONS(9069), + [anon_sym_DASH_GT] = ACTIONS(9069), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9067), + [anon_sym_COLON_RBRACK] = ACTIONS(9069), }, - [STATE(3664)] = { - [sym__abstract_declarator] = STATE(6402), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(2399), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(2152), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(2399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7003), - [anon_sym_COMMA] = ACTIONS(7003), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(8341), - [anon_sym_SLASH] = ACTIONS(7005), - [anon_sym_PERCENT] = ACTIONS(7003), - [anon_sym_PIPE_PIPE] = ACTIONS(7003), - [anon_sym_AMP_AMP] = ACTIONS(8343), - [anon_sym_PIPE] = ACTIONS(7005), - [anon_sym_CARET] = ACTIONS(7003), - [anon_sym_AMP] = ACTIONS(8345), - [anon_sym_EQ_EQ] = ACTIONS(7003), - [anon_sym_BANG_EQ] = ACTIONS(7003), - [anon_sym_GT] = ACTIONS(7005), - [anon_sym_GT_EQ] = ACTIONS(7003), - [anon_sym_LT_EQ] = ACTIONS(7005), - [anon_sym_LT] = ACTIONS(7005), - [anon_sym_LT_LT] = ACTIONS(7003), - [anon_sym_GT_GT] = ACTIONS(7003), - [anon_sym_SEMI] = ACTIONS(7003), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym___attribute__] = ACTIONS(7003), - [anon_sym___attribute] = ACTIONS(7005), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(7003), - [anon_sym_LT_EQ_GT] = ACTIONS(7003), - [anon_sym_or] = ACTIONS(7003), - [anon_sym_and] = ACTIONS(7003), - [anon_sym_bitor] = ACTIONS(7003), - [anon_sym_xor] = ACTIONS(7003), - [anon_sym_bitand] = ACTIONS(7003), - [anon_sym_not_eq] = ACTIONS(7003), - [anon_sym_DASH_DASH] = ACTIONS(7003), - [anon_sym_PLUS_PLUS] = ACTIONS(7003), - [anon_sym_DOT] = ACTIONS(7005), - [anon_sym_DOT_STAR] = ACTIONS(7003), - [anon_sym_DASH_GT] = ACTIONS(7003), + [STATE(3153)] = { + [sym_argument_list] = STATE(5807), + [sym_initializer_list] = STATE(5738), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(8592), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7223), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7223), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7225), }, - [STATE(3665)] = { - [sym_argument_list] = STATE(3786), - [sym_subscript_argument_list] = STATE(3784), - [sym_identifier] = ACTIONS(9232), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9234), - [anon_sym_COMMA] = ACTIONS(9234), - [anon_sym_RPAREN] = ACTIONS(9234), - [aux_sym_preproc_if_token2] = ACTIONS(9234), - [aux_sym_preproc_else_token1] = ACTIONS(9234), - [aux_sym_preproc_elif_token1] = ACTIONS(9232), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9234), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9234), - [anon_sym_LPAREN2] = ACTIONS(8808), - [anon_sym_DASH] = ACTIONS(9232), - [anon_sym_PLUS] = ACTIONS(9232), - [anon_sym_STAR] = ACTIONS(9232), - [anon_sym_SLASH] = ACTIONS(9232), - [anon_sym_PERCENT] = ACTIONS(9232), - [anon_sym_PIPE_PIPE] = ACTIONS(9234), - [anon_sym_AMP_AMP] = ACTIONS(9234), - [anon_sym_PIPE] = ACTIONS(9232), - [anon_sym_CARET] = ACTIONS(9232), - [anon_sym_AMP] = ACTIONS(9232), - [anon_sym_EQ_EQ] = ACTIONS(9234), - [anon_sym_BANG_EQ] = ACTIONS(9234), - [anon_sym_GT] = ACTIONS(9232), - [anon_sym_GT_EQ] = ACTIONS(9234), - [anon_sym_LT_EQ] = ACTIONS(9232), - [anon_sym_LT] = ACTIONS(9232), - [anon_sym_LT_LT] = ACTIONS(9232), - [anon_sym_GT_GT] = ACTIONS(9232), - [anon_sym_SEMI] = ACTIONS(9234), - [anon_sym___attribute__] = ACTIONS(9232), - [anon_sym___attribute] = ACTIONS(9232), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9234), - [anon_sym_RBRACE] = ACTIONS(9234), - [anon_sym_LBRACK] = ACTIONS(9236), - [anon_sym_EQ] = ACTIONS(9232), - [anon_sym_QMARK] = ACTIONS(9234), - [anon_sym_STAR_EQ] = ACTIONS(9234), - [anon_sym_SLASH_EQ] = ACTIONS(9234), - [anon_sym_PERCENT_EQ] = ACTIONS(9234), - [anon_sym_PLUS_EQ] = ACTIONS(9234), - [anon_sym_DASH_EQ] = ACTIONS(9234), - [anon_sym_LT_LT_EQ] = ACTIONS(9234), - [anon_sym_GT_GT_EQ] = ACTIONS(9234), - [anon_sym_AMP_EQ] = ACTIONS(9234), - [anon_sym_CARET_EQ] = ACTIONS(9234), - [anon_sym_PIPE_EQ] = ACTIONS(9234), - [anon_sym_and_eq] = ACTIONS(9232), - [anon_sym_or_eq] = ACTIONS(9232), - [anon_sym_xor_eq] = ACTIONS(9232), - [anon_sym_LT_EQ_GT] = ACTIONS(9234), - [anon_sym_or] = ACTIONS(9232), - [anon_sym_and] = ACTIONS(9232), - [anon_sym_bitor] = ACTIONS(9232), - [anon_sym_xor] = ACTIONS(9232), - [anon_sym_bitand] = ACTIONS(9232), - [anon_sym_not_eq] = ACTIONS(9232), - [anon_sym_DASH_DASH] = ACTIONS(9238), - [anon_sym_PLUS_PLUS] = ACTIONS(9238), - [anon_sym_DOT] = ACTIONS(9240), - [anon_sym_DOT_STAR] = ACTIONS(9242), - [anon_sym_DASH_GT] = ACTIONS(9242), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9234), + [STATE(3154)] = { + [sym_attribute_specifier] = STATE(3786), + [sym_attribute_declaration] = STATE(6408), + [sym_type_qualifier] = STATE(3737), + [sym_alignas_qualifier] = STATE(3991), + [aux_sym_type_definition_repeat1] = STATE(3786), + [aux_sym__type_definition_type_repeat1] = STATE(3737), + [aux_sym_attributed_declarator_repeat1] = STATE(6408), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), + [anon_sym_COMMA] = ACTIONS(6754), + [anon_sym_LPAREN2] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6752), + [anon_sym_STAR] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6752), + [anon_sym_PERCENT] = ACTIONS(6754), + [anon_sym_PIPE_PIPE] = ACTIONS(6754), + [anon_sym_AMP_AMP] = ACTIONS(6754), + [anon_sym_PIPE] = ACTIONS(6752), + [anon_sym_CARET] = ACTIONS(6754), + [anon_sym_AMP] = ACTIONS(6752), + [anon_sym_EQ_EQ] = ACTIONS(6754), + [anon_sym_BANG_EQ] = ACTIONS(6754), + [anon_sym_GT] = ACTIONS(6752), + [anon_sym_GT_EQ] = ACTIONS(6752), + [anon_sym_LT_EQ] = ACTIONS(6752), + [anon_sym_LT] = ACTIONS(6752), + [anon_sym_LT_LT] = ACTIONS(6754), + [anon_sym_GT_GT] = ACTIONS(6752), + [anon_sym___extension__] = ACTIONS(7814), + [anon_sym___attribute__] = ACTIONS(6754), + [anon_sym___attribute] = ACTIONS(6752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), + [anon_sym_LBRACK] = ACTIONS(6752), + [anon_sym_const] = ACTIONS(7822), + [anon_sym_constexpr] = ACTIONS(7814), + [anon_sym_volatile] = ACTIONS(7814), + [anon_sym_restrict] = ACTIONS(7814), + [anon_sym___restrict__] = ACTIONS(7814), + [anon_sym__Atomic] = ACTIONS(7814), + [anon_sym__Noreturn] = ACTIONS(7814), + [anon_sym_noreturn] = ACTIONS(7814), + [anon_sym__Nonnull] = ACTIONS(7814), + [anon_sym_mutable] = ACTIONS(7814), + [anon_sym_constinit] = ACTIONS(7814), + [anon_sym_consteval] = ACTIONS(7814), + [anon_sym_alignas] = ACTIONS(7824), + [anon_sym__Alignas] = ACTIONS(7824), + [anon_sym_QMARK] = ACTIONS(6754), + [anon_sym_LT_EQ_GT] = ACTIONS(6754), + [anon_sym_or] = ACTIONS(6754), + [anon_sym_and] = ACTIONS(6754), + [anon_sym_bitor] = ACTIONS(6754), + [anon_sym_xor] = ACTIONS(6754), + [anon_sym_bitand] = ACTIONS(6754), + [anon_sym_not_eq] = ACTIONS(6754), + [anon_sym_DASH_DASH] = ACTIONS(6754), + [anon_sym_PLUS_PLUS] = ACTIONS(6754), + [anon_sym_asm] = ACTIONS(6754), + [anon_sym___asm__] = ACTIONS(6754), + [anon_sym___asm] = ACTIONS(6752), + [anon_sym_DOT] = ACTIONS(6752), + [anon_sym_DOT_STAR] = ACTIONS(6754), + [anon_sym_DASH_GT] = ACTIONS(6754), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6754), + [anon_sym_override] = ACTIONS(6754), + [anon_sym_GT2] = ACTIONS(6754), + [anon_sym_noexcept] = ACTIONS(6754), + [anon_sym_throw] = ACTIONS(6754), + [anon_sym_requires] = ACTIONS(6754), }, - [STATE(3666)] = { - [sym_argument_list] = STATE(3786), - [sym_subscript_argument_list] = STATE(3784), - [sym_identifier] = ACTIONS(9244), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9246), - [anon_sym_COMMA] = ACTIONS(9246), - [anon_sym_RPAREN] = ACTIONS(9246), - [aux_sym_preproc_if_token2] = ACTIONS(9246), - [aux_sym_preproc_else_token1] = ACTIONS(9246), - [aux_sym_preproc_elif_token1] = ACTIONS(9244), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9246), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9246), - [anon_sym_LPAREN2] = ACTIONS(8808), - [anon_sym_DASH] = ACTIONS(9244), - [anon_sym_PLUS] = ACTIONS(9244), - [anon_sym_STAR] = ACTIONS(9244), - [anon_sym_SLASH] = ACTIONS(9244), - [anon_sym_PERCENT] = ACTIONS(9244), - [anon_sym_PIPE_PIPE] = ACTIONS(9246), - [anon_sym_AMP_AMP] = ACTIONS(9246), - [anon_sym_PIPE] = ACTIONS(9244), - [anon_sym_CARET] = ACTIONS(9244), - [anon_sym_AMP] = ACTIONS(9244), - [anon_sym_EQ_EQ] = ACTIONS(9246), - [anon_sym_BANG_EQ] = ACTIONS(9246), - [anon_sym_GT] = ACTIONS(9244), - [anon_sym_GT_EQ] = ACTIONS(9246), - [anon_sym_LT_EQ] = ACTIONS(9244), - [anon_sym_LT] = ACTIONS(9244), - [anon_sym_LT_LT] = ACTIONS(9244), - [anon_sym_GT_GT] = ACTIONS(9244), - [anon_sym_SEMI] = ACTIONS(9246), - [anon_sym___attribute__] = ACTIONS(9244), - [anon_sym___attribute] = ACTIONS(9244), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9246), - [anon_sym_RBRACE] = ACTIONS(9246), - [anon_sym_LBRACK] = ACTIONS(9236), - [anon_sym_EQ] = ACTIONS(9244), - [anon_sym_QMARK] = ACTIONS(9246), - [anon_sym_STAR_EQ] = ACTIONS(9246), - [anon_sym_SLASH_EQ] = ACTIONS(9246), - [anon_sym_PERCENT_EQ] = ACTIONS(9246), - [anon_sym_PLUS_EQ] = ACTIONS(9246), - [anon_sym_DASH_EQ] = ACTIONS(9246), - [anon_sym_LT_LT_EQ] = ACTIONS(9246), - [anon_sym_GT_GT_EQ] = ACTIONS(9246), - [anon_sym_AMP_EQ] = ACTIONS(9246), - [anon_sym_CARET_EQ] = ACTIONS(9246), - [anon_sym_PIPE_EQ] = ACTIONS(9246), - [anon_sym_and_eq] = ACTIONS(9244), - [anon_sym_or_eq] = ACTIONS(9244), - [anon_sym_xor_eq] = ACTIONS(9244), - [anon_sym_LT_EQ_GT] = ACTIONS(9246), - [anon_sym_or] = ACTIONS(9244), - [anon_sym_and] = ACTIONS(9244), - [anon_sym_bitor] = ACTIONS(9244), - [anon_sym_xor] = ACTIONS(9244), - [anon_sym_bitand] = ACTIONS(9244), - [anon_sym_not_eq] = ACTIONS(9244), - [anon_sym_DASH_DASH] = ACTIONS(9238), - [anon_sym_PLUS_PLUS] = ACTIONS(9238), - [anon_sym_DOT] = ACTIONS(9240), - [anon_sym_DOT_STAR] = ACTIONS(9242), - [anon_sym_DASH_GT] = ACTIONS(9242), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9246), + [STATE(3155)] = { + [sym_identifier] = ACTIONS(7751), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7753), + [anon_sym_COMMA] = ACTIONS(7753), + [anon_sym_RPAREN] = ACTIONS(7753), + [anon_sym_LPAREN2] = ACTIONS(7753), + [anon_sym_DASH] = ACTIONS(7751), + [anon_sym_PLUS] = ACTIONS(7751), + [anon_sym_STAR] = ACTIONS(7753), + [anon_sym_SLASH] = ACTIONS(7751), + [anon_sym_PERCENT] = ACTIONS(7753), + [anon_sym_PIPE_PIPE] = ACTIONS(7753), + [anon_sym_AMP_AMP] = ACTIONS(7753), + [anon_sym_PIPE] = ACTIONS(7751), + [anon_sym_CARET] = ACTIONS(7753), + [anon_sym_AMP] = ACTIONS(7751), + [anon_sym_EQ_EQ] = ACTIONS(7753), + [anon_sym_BANG_EQ] = ACTIONS(7753), + [anon_sym_GT] = ACTIONS(7751), + [anon_sym_GT_EQ] = ACTIONS(7753), + [anon_sym_LT_EQ] = ACTIONS(7751), + [anon_sym_LT] = ACTIONS(7751), + [anon_sym_LT_LT] = ACTIONS(7753), + [anon_sym_GT_GT] = ACTIONS(7753), + [anon_sym_SEMI] = ACTIONS(7753), + [anon_sym___extension__] = ACTIONS(7751), + [anon_sym___attribute__] = ACTIONS(7751), + [anon_sym___attribute] = ACTIONS(7751), + [anon_sym_COLON] = ACTIONS(7751), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7753), + [anon_sym___based] = ACTIONS(7751), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_RBRACE] = ACTIONS(7753), + [anon_sym_signed] = ACTIONS(7751), + [anon_sym_unsigned] = ACTIONS(7751), + [anon_sym_long] = ACTIONS(7751), + [anon_sym_short] = ACTIONS(7751), + [anon_sym_LBRACK] = ACTIONS(7753), + [anon_sym_const] = ACTIONS(7751), + [anon_sym_constexpr] = ACTIONS(7751), + [anon_sym_volatile] = ACTIONS(7751), + [anon_sym_restrict] = ACTIONS(7751), + [anon_sym___restrict__] = ACTIONS(7751), + [anon_sym__Atomic] = ACTIONS(7751), + [anon_sym__Noreturn] = ACTIONS(7751), + [anon_sym_noreturn] = ACTIONS(7751), + [anon_sym__Nonnull] = ACTIONS(7751), + [anon_sym_mutable] = ACTIONS(7751), + [anon_sym_constinit] = ACTIONS(7751), + [anon_sym_consteval] = ACTIONS(7751), + [anon_sym_alignas] = ACTIONS(7751), + [anon_sym__Alignas] = ACTIONS(7751), + [sym_primitive_type] = ACTIONS(7751), + [anon_sym_QMARK] = ACTIONS(7753), + [anon_sym_LT_EQ_GT] = ACTIONS(7753), + [anon_sym_or] = ACTIONS(7751), + [anon_sym_and] = ACTIONS(7751), + [anon_sym_bitor] = ACTIONS(7751), + [anon_sym_xor] = ACTIONS(7751), + [anon_sym_bitand] = ACTIONS(7751), + [anon_sym_not_eq] = ACTIONS(7751), + [anon_sym_DASH_DASH] = ACTIONS(7753), + [anon_sym_PLUS_PLUS] = ACTIONS(7753), + [anon_sym_DOT] = ACTIONS(7751), + [anon_sym_DOT_STAR] = ACTIONS(7753), + [anon_sym_DASH_GT] = ACTIONS(7753), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7751), + [anon_sym_override] = ACTIONS(7751), + [anon_sym_requires] = ACTIONS(7751), + [anon_sym_COLON_RBRACK] = ACTIONS(7753), }, - [STATE(3667)] = { - [sym_identifier] = ACTIONS(9248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9250), - [anon_sym_COMMA] = ACTIONS(9250), - [anon_sym_RPAREN] = ACTIONS(9250), - [aux_sym_preproc_if_token2] = ACTIONS(9250), - [aux_sym_preproc_else_token1] = ACTIONS(9250), - [aux_sym_preproc_elif_token1] = ACTIONS(9248), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9250), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9250), - [anon_sym_LPAREN2] = ACTIONS(9250), - [anon_sym_DASH] = ACTIONS(9248), - [anon_sym_PLUS] = ACTIONS(9248), - [anon_sym_STAR] = ACTIONS(9248), - [anon_sym_SLASH] = ACTIONS(9248), - [anon_sym_PERCENT] = ACTIONS(9248), - [anon_sym_PIPE_PIPE] = ACTIONS(9250), - [anon_sym_AMP_AMP] = ACTIONS(9250), - [anon_sym_PIPE] = ACTIONS(9248), - [anon_sym_CARET] = ACTIONS(9248), - [anon_sym_AMP] = ACTIONS(9248), - [anon_sym_EQ_EQ] = ACTIONS(9250), - [anon_sym_BANG_EQ] = ACTIONS(9250), - [anon_sym_GT] = ACTIONS(9248), - [anon_sym_GT_EQ] = ACTIONS(9250), - [anon_sym_LT_EQ] = ACTIONS(9248), - [anon_sym_LT] = ACTIONS(9248), - [anon_sym_LT_LT] = ACTIONS(9248), - [anon_sym_GT_GT] = ACTIONS(9248), - [anon_sym_SEMI] = ACTIONS(9250), - [anon_sym___attribute__] = ACTIONS(9248), - [anon_sym___attribute] = ACTIONS(9248), - [anon_sym_COLON] = ACTIONS(9248), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9250), - [anon_sym_LBRACE] = ACTIONS(9250), - [anon_sym_RBRACE] = ACTIONS(9250), - [anon_sym_LBRACK] = ACTIONS(9250), - [anon_sym_EQ] = ACTIONS(9248), - [anon_sym_QMARK] = ACTIONS(9250), - [anon_sym_STAR_EQ] = ACTIONS(9250), - [anon_sym_SLASH_EQ] = ACTIONS(9250), - [anon_sym_PERCENT_EQ] = ACTIONS(9250), - [anon_sym_PLUS_EQ] = ACTIONS(9250), - [anon_sym_DASH_EQ] = ACTIONS(9250), - [anon_sym_LT_LT_EQ] = ACTIONS(9250), - [anon_sym_GT_GT_EQ] = ACTIONS(9250), - [anon_sym_AMP_EQ] = ACTIONS(9250), - [anon_sym_CARET_EQ] = ACTIONS(9250), - [anon_sym_PIPE_EQ] = ACTIONS(9250), - [anon_sym_and_eq] = ACTIONS(9248), - [anon_sym_or_eq] = ACTIONS(9248), - [anon_sym_xor_eq] = ACTIONS(9248), - [anon_sym_LT_EQ_GT] = ACTIONS(9250), - [anon_sym_or] = ACTIONS(9248), - [anon_sym_and] = ACTIONS(9248), - [anon_sym_bitor] = ACTIONS(9248), - [anon_sym_xor] = ACTIONS(9248), - [anon_sym_bitand] = ACTIONS(9248), - [anon_sym_not_eq] = ACTIONS(9248), - [anon_sym_DASH_DASH] = ACTIONS(9250), - [anon_sym_PLUS_PLUS] = ACTIONS(9250), - [anon_sym_DOT] = ACTIONS(9248), - [anon_sym_DOT_STAR] = ACTIONS(9250), - [anon_sym_DASH_GT] = ACTIONS(9250), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9250), + [STATE(3156)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2607), + [sym_identifier] = ACTIONS(6999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), + [anon_sym_COMMA] = ACTIONS(7525), + [anon_sym_RPAREN] = ACTIONS(7525), + [anon_sym_LPAREN2] = ACTIONS(7525), + [anon_sym_DASH] = ACTIONS(7528), + [anon_sym_PLUS] = ACTIONS(7528), + [anon_sym_STAR] = ACTIONS(7525), + [anon_sym_SLASH] = ACTIONS(7528), + [anon_sym_PERCENT] = ACTIONS(7525), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_AMP_AMP] = ACTIONS(7525), + [anon_sym_PIPE] = ACTIONS(7528), + [anon_sym_CARET] = ACTIONS(7525), + [anon_sym_AMP] = ACTIONS(7528), + [anon_sym_EQ_EQ] = ACTIONS(7525), + [anon_sym_BANG_EQ] = ACTIONS(7525), + [anon_sym_GT] = ACTIONS(7528), + [anon_sym_GT_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7528), + [anon_sym_LT] = ACTIONS(7528), + [anon_sym_LT_LT] = ACTIONS(7525), + [anon_sym_GT_GT] = ACTIONS(7525), + [anon_sym_SEMI] = ACTIONS(7525), + [anon_sym___extension__] = ACTIONS(7528), + [anon_sym___attribute__] = ACTIONS(7528), + [anon_sym___attribute] = ACTIONS(7528), + [anon_sym_COLON] = ACTIONS(7528), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7525), + [anon_sym_LBRACE] = ACTIONS(7525), + [anon_sym_RBRACE] = ACTIONS(7525), + [anon_sym_signed] = ACTIONS(8505), + [anon_sym_unsigned] = ACTIONS(8505), + [anon_sym_long] = ACTIONS(8505), + [anon_sym_short] = ACTIONS(8505), + [anon_sym_LBRACK] = ACTIONS(7525), + [anon_sym_const] = ACTIONS(7528), + [anon_sym_constexpr] = ACTIONS(7528), + [anon_sym_volatile] = ACTIONS(7528), + [anon_sym_restrict] = ACTIONS(7528), + [anon_sym___restrict__] = ACTIONS(7528), + [anon_sym__Atomic] = ACTIONS(7528), + [anon_sym__Noreturn] = ACTIONS(7528), + [anon_sym_noreturn] = ACTIONS(7528), + [anon_sym__Nonnull] = ACTIONS(7528), + [anon_sym_mutable] = ACTIONS(7528), + [anon_sym_constinit] = ACTIONS(7528), + [anon_sym_consteval] = ACTIONS(7528), + [anon_sym_alignas] = ACTIONS(7528), + [anon_sym__Alignas] = ACTIONS(7528), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7525), + [anon_sym_LT_EQ_GT] = ACTIONS(7525), + [anon_sym_or] = ACTIONS(7528), + [anon_sym_and] = ACTIONS(7528), + [anon_sym_bitor] = ACTIONS(7528), + [anon_sym_xor] = ACTIONS(7528), + [anon_sym_bitand] = ACTIONS(7528), + [anon_sym_not_eq] = ACTIONS(7528), + [anon_sym_DASH_DASH] = ACTIONS(7525), + [anon_sym_PLUS_PLUS] = ACTIONS(7525), + [anon_sym_DOT] = ACTIONS(7528), + [anon_sym_DOT_STAR] = ACTIONS(7525), + [anon_sym_DASH_GT] = ACTIONS(7525), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7528), + [anon_sym_override] = ACTIONS(7528), + [anon_sym_requires] = ACTIONS(7528), + [anon_sym_COLON_RBRACK] = ACTIONS(7525), }, - [STATE(3668)] = { - [sym_argument_list] = STATE(3786), - [sym_subscript_argument_list] = STATE(3784), - [sym_identifier] = ACTIONS(9252), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9254), - [anon_sym_COMMA] = ACTIONS(9254), - [anon_sym_RPAREN] = ACTIONS(9254), - [aux_sym_preproc_if_token2] = ACTIONS(9254), - [aux_sym_preproc_else_token1] = ACTIONS(9254), - [aux_sym_preproc_elif_token1] = ACTIONS(9252), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9254), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9254), - [anon_sym_LPAREN2] = ACTIONS(8808), - [anon_sym_DASH] = ACTIONS(9252), - [anon_sym_PLUS] = ACTIONS(9252), - [anon_sym_STAR] = ACTIONS(9252), - [anon_sym_SLASH] = ACTIONS(9252), - [anon_sym_PERCENT] = ACTIONS(9252), - [anon_sym_PIPE_PIPE] = ACTIONS(9254), - [anon_sym_AMP_AMP] = ACTIONS(9254), - [anon_sym_PIPE] = ACTIONS(9252), - [anon_sym_CARET] = ACTIONS(9252), - [anon_sym_AMP] = ACTIONS(9252), - [anon_sym_EQ_EQ] = ACTIONS(9254), - [anon_sym_BANG_EQ] = ACTIONS(9254), - [anon_sym_GT] = ACTIONS(9252), - [anon_sym_GT_EQ] = ACTIONS(9254), - [anon_sym_LT_EQ] = ACTIONS(9252), - [anon_sym_LT] = ACTIONS(9252), - [anon_sym_LT_LT] = ACTIONS(9252), - [anon_sym_GT_GT] = ACTIONS(9252), - [anon_sym_SEMI] = ACTIONS(9254), - [anon_sym___attribute__] = ACTIONS(9252), - [anon_sym___attribute] = ACTIONS(9252), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9254), - [anon_sym_RBRACE] = ACTIONS(9254), - [anon_sym_LBRACK] = ACTIONS(9236), - [anon_sym_EQ] = ACTIONS(9252), - [anon_sym_QMARK] = ACTIONS(9254), - [anon_sym_STAR_EQ] = ACTIONS(9254), - [anon_sym_SLASH_EQ] = ACTIONS(9254), - [anon_sym_PERCENT_EQ] = ACTIONS(9254), - [anon_sym_PLUS_EQ] = ACTIONS(9254), - [anon_sym_DASH_EQ] = ACTIONS(9254), - [anon_sym_LT_LT_EQ] = ACTIONS(9254), - [anon_sym_GT_GT_EQ] = ACTIONS(9254), - [anon_sym_AMP_EQ] = ACTIONS(9254), - [anon_sym_CARET_EQ] = ACTIONS(9254), - [anon_sym_PIPE_EQ] = ACTIONS(9254), - [anon_sym_and_eq] = ACTIONS(9252), - [anon_sym_or_eq] = ACTIONS(9252), - [anon_sym_xor_eq] = ACTIONS(9252), - [anon_sym_LT_EQ_GT] = ACTIONS(9254), - [anon_sym_or] = ACTIONS(9252), - [anon_sym_and] = ACTIONS(9252), - [anon_sym_bitor] = ACTIONS(9252), - [anon_sym_xor] = ACTIONS(9252), - [anon_sym_bitand] = ACTIONS(9252), - [anon_sym_not_eq] = ACTIONS(9252), - [anon_sym_DASH_DASH] = ACTIONS(9238), - [anon_sym_PLUS_PLUS] = ACTIONS(9238), - [anon_sym_DOT] = ACTIONS(9240), - [anon_sym_DOT_STAR] = ACTIONS(9242), - [anon_sym_DASH_GT] = ACTIONS(9242), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9254), + [STATE(3157)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6603), + [anon_sym_PLUS] = ACTIONS(6603), + [anon_sym_STAR] = ACTIONS(6605), + [anon_sym_SLASH] = ACTIONS(6603), + [anon_sym_PERCENT] = ACTIONS(6603), + [anon_sym_PIPE_PIPE] = ACTIONS(6596), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6603), + [anon_sym_CARET] = ACTIONS(6603), + [anon_sym_AMP] = ACTIONS(6605), + [anon_sym_EQ_EQ] = ACTIONS(6596), + [anon_sym_BANG_EQ] = ACTIONS(6596), + [anon_sym_GT] = ACTIONS(6603), + [anon_sym_GT_EQ] = ACTIONS(6603), + [anon_sym_LT_EQ] = ACTIONS(6603), + [anon_sym_LT] = ACTIONS(6603), + [anon_sym_LT_LT] = ACTIONS(6603), + [anon_sym_GT_GT] = ACTIONS(6603), + [anon_sym___extension__] = ACTIONS(6601), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_LBRACK] = ACTIONS(6598), + [anon_sym_EQ] = ACTIONS(6603), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6601), + [anon_sym_volatile] = ACTIONS(6601), + [anon_sym_restrict] = ACTIONS(6601), + [anon_sym___restrict__] = ACTIONS(6601), + [anon_sym__Atomic] = ACTIONS(6601), + [anon_sym__Noreturn] = ACTIONS(6601), + [anon_sym_noreturn] = ACTIONS(6601), + [anon_sym__Nonnull] = ACTIONS(6601), + [anon_sym_mutable] = ACTIONS(6601), + [anon_sym_constinit] = ACTIONS(6601), + [anon_sym_consteval] = ACTIONS(6601), + [anon_sym_alignas] = ACTIONS(6601), + [anon_sym__Alignas] = ACTIONS(6601), + [anon_sym_QMARK] = ACTIONS(6596), + [anon_sym_STAR_EQ] = ACTIONS(6596), + [anon_sym_SLASH_EQ] = ACTIONS(6596), + [anon_sym_PERCENT_EQ] = ACTIONS(6596), + [anon_sym_PLUS_EQ] = ACTIONS(6596), + [anon_sym_DASH_EQ] = ACTIONS(6596), + [anon_sym_LT_LT_EQ] = ACTIONS(6596), + [anon_sym_GT_GT_EQ] = ACTIONS(6603), + [anon_sym_AMP_EQ] = ACTIONS(6596), + [anon_sym_CARET_EQ] = ACTIONS(6596), + [anon_sym_PIPE_EQ] = ACTIONS(6596), + [anon_sym_and_eq] = ACTIONS(6596), + [anon_sym_or_eq] = ACTIONS(6596), + [anon_sym_xor_eq] = ACTIONS(6596), + [anon_sym_LT_EQ_GT] = ACTIONS(6596), + [anon_sym_or] = ACTIONS(6603), + [anon_sym_and] = ACTIONS(6603), + [anon_sym_bitor] = ACTIONS(6596), + [anon_sym_xor] = ACTIONS(6603), + [anon_sym_bitand] = ACTIONS(6596), + [anon_sym_not_eq] = ACTIONS(6596), + [anon_sym_DASH_DASH] = ACTIONS(6596), + [anon_sym_PLUS_PLUS] = ACTIONS(6596), + [anon_sym_DOT] = ACTIONS(6603), + [anon_sym_DOT_STAR] = ACTIONS(6596), + [anon_sym_DASH_GT] = ACTIONS(6596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6601), + [anon_sym_decltype] = ACTIONS(6601), + [anon_sym_GT2] = ACTIONS(6598), }, - [STATE(3669)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3716), - [sym_identifier] = ACTIONS(6627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), - [anon_sym_COMMA] = ACTIONS(7081), - [anon_sym_LPAREN2] = ACTIONS(7081), - [anon_sym_DASH] = ACTIONS(7084), - [anon_sym_PLUS] = ACTIONS(7084), - [anon_sym_STAR] = ACTIONS(7081), - [anon_sym_SLASH] = ACTIONS(7084), - [anon_sym_PERCENT] = ACTIONS(7081), - [anon_sym_PIPE_PIPE] = ACTIONS(7081), - [anon_sym_AMP_AMP] = ACTIONS(7081), - [anon_sym_PIPE] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7081), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_EQ_EQ] = ACTIONS(7081), - [anon_sym_BANG_EQ] = ACTIONS(7081), - [anon_sym_GT] = ACTIONS(7084), - [anon_sym_GT_EQ] = ACTIONS(7081), - [anon_sym_LT_EQ] = ACTIONS(7084), - [anon_sym_LT] = ACTIONS(7084), - [anon_sym_LT_LT] = ACTIONS(7081), - [anon_sym_GT_GT] = ACTIONS(7081), - [anon_sym___extension__] = ACTIONS(7084), - [anon_sym___attribute__] = ACTIONS(7084), - [anon_sym___attribute] = ACTIONS(7084), - [anon_sym_LBRACE] = ACTIONS(7081), - [anon_sym_signed] = ACTIONS(9256), - [anon_sym_unsigned] = ACTIONS(9256), - [anon_sym_long] = ACTIONS(9256), - [anon_sym_short] = ACTIONS(9256), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_RBRACK] = ACTIONS(7081), - [anon_sym_const] = ACTIONS(7084), - [anon_sym_constexpr] = ACTIONS(7084), - [anon_sym_volatile] = ACTIONS(7084), - [anon_sym_restrict] = ACTIONS(7084), - [anon_sym___restrict__] = ACTIONS(7084), - [anon_sym__Atomic] = ACTIONS(7084), - [anon_sym__Noreturn] = ACTIONS(7084), - [anon_sym_noreturn] = ACTIONS(7084), - [anon_sym__Nonnull] = ACTIONS(7084), - [anon_sym_mutable] = ACTIONS(7084), - [anon_sym_constinit] = ACTIONS(7084), - [anon_sym_consteval] = ACTIONS(7084), - [anon_sym_alignas] = ACTIONS(7084), - [anon_sym__Alignas] = ACTIONS(7084), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(7081), - [anon_sym_LT_EQ_GT] = ACTIONS(7081), - [anon_sym_or] = ACTIONS(7084), - [anon_sym_and] = ACTIONS(7084), - [anon_sym_bitor] = ACTIONS(7084), - [anon_sym_xor] = ACTIONS(7084), - [anon_sym_bitand] = ACTIONS(7084), - [anon_sym_not_eq] = ACTIONS(7084), - [anon_sym_DASH_DASH] = ACTIONS(7081), - [anon_sym_PLUS_PLUS] = ACTIONS(7081), - [anon_sym_DOT] = ACTIONS(7084), - [anon_sym_DOT_STAR] = ACTIONS(7081), - [anon_sym_DASH_GT] = ACTIONS(7081), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7084), - [anon_sym_override] = ACTIONS(7084), - [anon_sym_requires] = ACTIONS(7084), + [STATE(3158)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7669), + [anon_sym_COMMA] = ACTIONS(7669), + [anon_sym_LPAREN2] = ACTIONS(7669), + [anon_sym_DASH] = ACTIONS(7667), + [anon_sym_PLUS] = ACTIONS(7667), + [anon_sym_STAR] = ACTIONS(7667), + [anon_sym_SLASH] = ACTIONS(7667), + [anon_sym_PERCENT] = ACTIONS(7667), + [anon_sym_PIPE_PIPE] = ACTIONS(7669), + [anon_sym_AMP_AMP] = ACTIONS(7669), + [anon_sym_PIPE] = ACTIONS(7667), + [anon_sym_CARET] = ACTIONS(7667), + [anon_sym_AMP] = ACTIONS(7667), + [anon_sym_EQ_EQ] = ACTIONS(7669), + [anon_sym_BANG_EQ] = ACTIONS(7669), + [anon_sym_GT] = ACTIONS(7667), + [anon_sym_GT_EQ] = ACTIONS(7667), + [anon_sym_LT_EQ] = ACTIONS(7667), + [anon_sym_LT] = ACTIONS(7667), + [anon_sym_LT_LT] = ACTIONS(7667), + [anon_sym_GT_GT] = ACTIONS(7667), + [anon_sym___extension__] = ACTIONS(7669), + [anon_sym_LBRACE] = ACTIONS(7669), + [anon_sym_LBRACK] = ACTIONS(7669), + [anon_sym_EQ] = ACTIONS(7667), + [anon_sym_const] = ACTIONS(7667), + [anon_sym_constexpr] = ACTIONS(7669), + [anon_sym_volatile] = ACTIONS(7669), + [anon_sym_restrict] = ACTIONS(7669), + [anon_sym___restrict__] = ACTIONS(7669), + [anon_sym__Atomic] = ACTIONS(7669), + [anon_sym__Noreturn] = ACTIONS(7669), + [anon_sym_noreturn] = ACTIONS(7669), + [anon_sym__Nonnull] = ACTIONS(7669), + [anon_sym_mutable] = ACTIONS(7669), + [anon_sym_constinit] = ACTIONS(7669), + [anon_sym_consteval] = ACTIONS(7669), + [anon_sym_alignas] = ACTIONS(7669), + [anon_sym__Alignas] = ACTIONS(7669), + [anon_sym_QMARK] = ACTIONS(7669), + [anon_sym_STAR_EQ] = ACTIONS(7669), + [anon_sym_SLASH_EQ] = ACTIONS(7669), + [anon_sym_PERCENT_EQ] = ACTIONS(7669), + [anon_sym_PLUS_EQ] = ACTIONS(7669), + [anon_sym_DASH_EQ] = ACTIONS(7669), + [anon_sym_LT_LT_EQ] = ACTIONS(7669), + [anon_sym_GT_GT_EQ] = ACTIONS(7667), + [anon_sym_AMP_EQ] = ACTIONS(7669), + [anon_sym_CARET_EQ] = ACTIONS(7669), + [anon_sym_PIPE_EQ] = ACTIONS(7669), + [anon_sym_and_eq] = ACTIONS(7669), + [anon_sym_or_eq] = ACTIONS(7669), + [anon_sym_xor_eq] = ACTIONS(7669), + [anon_sym_LT_EQ_GT] = ACTIONS(7669), + [anon_sym_or] = ACTIONS(7667), + [anon_sym_and] = ACTIONS(7667), + [anon_sym_bitor] = ACTIONS(7669), + [anon_sym_xor] = ACTIONS(7667), + [anon_sym_bitand] = ACTIONS(7669), + [anon_sym_not_eq] = ACTIONS(7669), + [anon_sym_DASH_DASH] = ACTIONS(7669), + [anon_sym_PLUS_PLUS] = ACTIONS(7669), + [anon_sym_DOT] = ACTIONS(7667), + [anon_sym_DOT_STAR] = ACTIONS(7669), + [anon_sym_DASH_GT] = ACTIONS(7669), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7669), + [anon_sym_override] = ACTIONS(7669), + [anon_sym_GT2] = ACTIONS(7669), + [anon_sym_requires] = ACTIONS(7669), }, - [STATE(3670)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3670), - [sym_identifier] = ACTIONS(6627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6629), - [anon_sym_COMMA] = ACTIONS(6629), - [anon_sym_LPAREN2] = ACTIONS(6629), - [anon_sym_DASH] = ACTIONS(6627), - [anon_sym_PLUS] = ACTIONS(6627), - [anon_sym_STAR] = ACTIONS(6629), - [anon_sym_SLASH] = ACTIONS(6627), - [anon_sym_PERCENT] = ACTIONS(6629), - [anon_sym_PIPE_PIPE] = ACTIONS(6629), - [anon_sym_AMP_AMP] = ACTIONS(6629), - [anon_sym_PIPE] = ACTIONS(6627), - [anon_sym_CARET] = ACTIONS(6629), - [anon_sym_AMP] = ACTIONS(6627), - [anon_sym_EQ_EQ] = ACTIONS(6629), - [anon_sym_BANG_EQ] = ACTIONS(6629), - [anon_sym_GT] = ACTIONS(6627), - [anon_sym_GT_EQ] = ACTIONS(6627), - [anon_sym_LT_EQ] = ACTIONS(6627), - [anon_sym_LT] = ACTIONS(6627), - [anon_sym_LT_LT] = ACTIONS(6629), - [anon_sym_GT_GT] = ACTIONS(6627), - [anon_sym___extension__] = ACTIONS(6627), - [anon_sym___attribute__] = ACTIONS(6627), - [anon_sym___attribute] = ACTIONS(6627), - [anon_sym_LBRACE] = ACTIONS(6629), - [anon_sym_signed] = ACTIONS(9259), - [anon_sym_unsigned] = ACTIONS(9259), - [anon_sym_long] = ACTIONS(9259), - [anon_sym_short] = ACTIONS(9259), - [anon_sym_LBRACK] = ACTIONS(6629), - [anon_sym_const] = ACTIONS(6627), - [anon_sym_constexpr] = ACTIONS(6627), - [anon_sym_volatile] = ACTIONS(6627), - [anon_sym_restrict] = ACTIONS(6627), - [anon_sym___restrict__] = ACTIONS(6627), - [anon_sym__Atomic] = ACTIONS(6627), - [anon_sym__Noreturn] = ACTIONS(6627), - [anon_sym_noreturn] = ACTIONS(6627), - [anon_sym__Nonnull] = ACTIONS(6627), - [anon_sym_mutable] = ACTIONS(6627), - [anon_sym_constinit] = ACTIONS(6627), - [anon_sym_consteval] = ACTIONS(6627), - [anon_sym_alignas] = ACTIONS(6627), - [anon_sym__Alignas] = ACTIONS(6627), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(6629), - [anon_sym_LT_EQ_GT] = ACTIONS(6629), - [anon_sym_or] = ACTIONS(6627), - [anon_sym_and] = ACTIONS(6627), - [anon_sym_bitor] = ACTIONS(6627), - [anon_sym_xor] = ACTIONS(6627), - [anon_sym_bitand] = ACTIONS(6627), - [anon_sym_not_eq] = ACTIONS(6627), - [anon_sym_DASH_DASH] = ACTIONS(6629), - [anon_sym_PLUS_PLUS] = ACTIONS(6629), - [anon_sym_DOT] = ACTIONS(6627), - [anon_sym_DOT_STAR] = ACTIONS(6629), - [anon_sym_DASH_GT] = ACTIONS(6629), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6627), - [anon_sym_override] = ACTIONS(6627), - [anon_sym_GT2] = ACTIONS(6629), - [anon_sym_requires] = ACTIONS(6627), + [STATE(3159)] = { + [sym_identifier] = ACTIONS(3163), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [anon_sym_COMMA] = ACTIONS(3488), + [aux_sym_preproc_if_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), + [sym_preproc_directive] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3488), + [anon_sym___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_extern] = ACTIONS(3163), + [anon_sym___attribute__] = ACTIONS(3163), + [anon_sym___attribute] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3163), + [anon_sym___based] = ACTIONS(3163), + [anon_sym_RBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym___inline] = ACTIONS(3163), + [anon_sym___inline__] = ACTIONS(3163), + [anon_sym___forceinline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym___thread] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym___restrict__] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym__Noreturn] = ACTIONS(3163), + [anon_sym_noreturn] = ACTIONS(3163), + [anon_sym__Nonnull] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym__Alignas] = ACTIONS(3163), + [sym_primitive_type] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_typename] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_private] = ACTIONS(3163), + [anon_sym_template] = ACTIONS(3163), + [anon_sym_operator] = ACTIONS(3163), + [anon_sym_friend] = ACTIONS(3163), + [anon_sym_public] = ACTIONS(3163), + [anon_sym_protected] = ACTIONS(3163), + [anon_sym_static_assert] = ACTIONS(3163), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), }, - [STATE(3671)] = { - [sym_attribute_specifier] = STATE(2997), - [sym_enumerator_list] = STATE(3816), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7013), - [anon_sym_COMMA] = ACTIONS(7013), - [anon_sym_RPAREN] = ACTIONS(7013), - [anon_sym_LPAREN2] = ACTIONS(7013), - [anon_sym_DASH] = ACTIONS(7011), - [anon_sym_PLUS] = ACTIONS(7011), - [anon_sym_STAR] = ACTIONS(7013), - [anon_sym_SLASH] = ACTIONS(7011), - [anon_sym_PERCENT] = ACTIONS(7013), - [anon_sym_PIPE_PIPE] = ACTIONS(7013), - [anon_sym_AMP_AMP] = ACTIONS(7013), - [anon_sym_PIPE] = ACTIONS(7011), - [anon_sym_CARET] = ACTIONS(7013), - [anon_sym_AMP] = ACTIONS(7011), - [anon_sym_EQ_EQ] = ACTIONS(7013), - [anon_sym_BANG_EQ] = ACTIONS(7013), - [anon_sym_GT] = ACTIONS(7011), - [anon_sym_GT_EQ] = ACTIONS(7013), - [anon_sym_LT_EQ] = ACTIONS(7011), - [anon_sym_LT] = ACTIONS(7011), - [anon_sym_LT_LT] = ACTIONS(7013), - [anon_sym_GT_GT] = ACTIONS(7013), - [anon_sym_SEMI] = ACTIONS(7013), - [anon_sym___extension__] = ACTIONS(7013), - [anon_sym___attribute__] = ACTIONS(9025), - [anon_sym___attribute] = ACTIONS(8907), - [anon_sym_COLON] = ACTIONS(7011), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7013), - [anon_sym_LBRACE] = ACTIONS(9162), - [anon_sym_RBRACE] = ACTIONS(7013), - [anon_sym_LBRACK] = ACTIONS(7013), - [anon_sym_const] = ACTIONS(7011), - [anon_sym_constexpr] = ACTIONS(7013), - [anon_sym_volatile] = ACTIONS(7013), - [anon_sym_restrict] = ACTIONS(7013), - [anon_sym___restrict__] = ACTIONS(7013), - [anon_sym__Atomic] = ACTIONS(7013), - [anon_sym__Noreturn] = ACTIONS(7013), - [anon_sym_noreturn] = ACTIONS(7013), - [anon_sym__Nonnull] = ACTIONS(7013), - [anon_sym_mutable] = ACTIONS(7013), - [anon_sym_constinit] = ACTIONS(7013), - [anon_sym_consteval] = ACTIONS(7013), - [anon_sym_alignas] = ACTIONS(7013), - [anon_sym__Alignas] = ACTIONS(7013), - [anon_sym_QMARK] = ACTIONS(7013), - [anon_sym_LT_EQ_GT] = ACTIONS(7013), - [anon_sym_or] = ACTIONS(7013), - [anon_sym_and] = ACTIONS(7013), - [anon_sym_bitor] = ACTIONS(7013), - [anon_sym_xor] = ACTIONS(7013), - [anon_sym_bitand] = ACTIONS(7013), - [anon_sym_not_eq] = ACTIONS(7013), - [anon_sym_DASH_DASH] = ACTIONS(7013), - [anon_sym_PLUS_PLUS] = ACTIONS(7013), - [anon_sym_DOT] = ACTIONS(7011), - [anon_sym_DOT_STAR] = ACTIONS(7013), - [anon_sym_DASH_GT] = ACTIONS(7013), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7013), - [anon_sym_override] = ACTIONS(7013), - [anon_sym_requires] = ACTIONS(7013), - [anon_sym_COLON_RBRACK] = ACTIONS(7013), + [STATE(3160)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7160), + [anon_sym_COMMA] = ACTIONS(7160), + [anon_sym_LPAREN2] = ACTIONS(7160), + [anon_sym_DASH] = ACTIONS(7158), + [anon_sym_PLUS] = ACTIONS(7158), + [anon_sym_STAR] = ACTIONS(7158), + [anon_sym_SLASH] = ACTIONS(7158), + [anon_sym_PERCENT] = ACTIONS(7158), + [anon_sym_PIPE_PIPE] = ACTIONS(7160), + [anon_sym_AMP_AMP] = ACTIONS(7160), + [anon_sym_PIPE] = ACTIONS(7158), + [anon_sym_CARET] = ACTIONS(7158), + [anon_sym_AMP] = ACTIONS(7158), + [anon_sym_EQ_EQ] = ACTIONS(7160), + [anon_sym_BANG_EQ] = ACTIONS(7160), + [anon_sym_GT] = ACTIONS(7158), + [anon_sym_GT_EQ] = ACTIONS(7158), + [anon_sym_LT_EQ] = ACTIONS(7158), + [anon_sym_LT] = ACTIONS(7158), + [anon_sym_LT_LT] = ACTIONS(7158), + [anon_sym_GT_GT] = ACTIONS(7158), + [anon_sym___extension__] = ACTIONS(7160), + [anon_sym_LBRACE] = ACTIONS(7160), + [anon_sym_LBRACK] = ACTIONS(7160), + [anon_sym_EQ] = ACTIONS(7158), + [anon_sym_const] = ACTIONS(7158), + [anon_sym_constexpr] = ACTIONS(7160), + [anon_sym_volatile] = ACTIONS(7160), + [anon_sym_restrict] = ACTIONS(7160), + [anon_sym___restrict__] = ACTIONS(7160), + [anon_sym__Atomic] = ACTIONS(7160), + [anon_sym__Noreturn] = ACTIONS(7160), + [anon_sym_noreturn] = ACTIONS(7160), + [anon_sym__Nonnull] = ACTIONS(7160), + [anon_sym_mutable] = ACTIONS(7160), + [anon_sym_constinit] = ACTIONS(7160), + [anon_sym_consteval] = ACTIONS(7160), + [anon_sym_alignas] = ACTIONS(7160), + [anon_sym__Alignas] = ACTIONS(7160), + [anon_sym_QMARK] = ACTIONS(7160), + [anon_sym_STAR_EQ] = ACTIONS(7160), + [anon_sym_SLASH_EQ] = ACTIONS(7160), + [anon_sym_PERCENT_EQ] = ACTIONS(7160), + [anon_sym_PLUS_EQ] = ACTIONS(7160), + [anon_sym_DASH_EQ] = ACTIONS(7160), + [anon_sym_LT_LT_EQ] = ACTIONS(7160), + [anon_sym_GT_GT_EQ] = ACTIONS(7158), + [anon_sym_AMP_EQ] = ACTIONS(7160), + [anon_sym_CARET_EQ] = ACTIONS(7160), + [anon_sym_PIPE_EQ] = ACTIONS(7160), + [anon_sym_and_eq] = ACTIONS(7160), + [anon_sym_or_eq] = ACTIONS(7160), + [anon_sym_xor_eq] = ACTIONS(7160), + [anon_sym_LT_EQ_GT] = ACTIONS(7160), + [anon_sym_or] = ACTIONS(7158), + [anon_sym_and] = ACTIONS(7158), + [anon_sym_bitor] = ACTIONS(7160), + [anon_sym_xor] = ACTIONS(7158), + [anon_sym_bitand] = ACTIONS(7160), + [anon_sym_not_eq] = ACTIONS(7160), + [anon_sym_DASH_DASH] = ACTIONS(7160), + [anon_sym_PLUS_PLUS] = ACTIONS(7160), + [anon_sym_DOT] = ACTIONS(7158), + [anon_sym_DOT_STAR] = ACTIONS(7160), + [anon_sym_DASH_GT] = ACTIONS(7160), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7160), + [anon_sym_override] = ACTIONS(7160), + [anon_sym_GT2] = ACTIONS(7160), + [anon_sym_requires] = ACTIONS(7160), }, - [STATE(3672)] = { - [sym_identifier] = ACTIONS(8454), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8456), - [anon_sym_COMMA] = ACTIONS(8456), - [anon_sym_LPAREN2] = ACTIONS(8456), - [anon_sym_DASH] = ACTIONS(8454), - [anon_sym_PLUS] = ACTIONS(8454), - [anon_sym_STAR] = ACTIONS(8454), - [anon_sym_SLASH] = ACTIONS(8454), - [anon_sym_PERCENT] = ACTIONS(8454), - [anon_sym_PIPE_PIPE] = ACTIONS(8456), - [anon_sym_AMP_AMP] = ACTIONS(8456), - [anon_sym_PIPE] = ACTIONS(8454), - [anon_sym_CARET] = ACTIONS(8454), - [anon_sym_AMP] = ACTIONS(8454), - [anon_sym_EQ_EQ] = ACTIONS(8456), - [anon_sym_BANG_EQ] = ACTIONS(8456), - [anon_sym_GT] = ACTIONS(8454), - [anon_sym_GT_EQ] = ACTIONS(8456), - [anon_sym_LT_EQ] = ACTIONS(8454), - [anon_sym_LT] = ACTIONS(8454), - [anon_sym_LT_LT] = ACTIONS(8454), - [anon_sym_GT_GT] = ACTIONS(8454), - [anon_sym_SEMI] = ACTIONS(8456), - [anon_sym___attribute__] = ACTIONS(8454), - [anon_sym___attribute] = ACTIONS(8454), - [anon_sym_LBRACK] = ACTIONS(8456), - [anon_sym_EQ] = ACTIONS(8454), - [anon_sym_QMARK] = ACTIONS(8456), - [anon_sym_STAR_EQ] = ACTIONS(8456), - [anon_sym_SLASH_EQ] = ACTIONS(8456), - [anon_sym_PERCENT_EQ] = ACTIONS(8456), - [anon_sym_PLUS_EQ] = ACTIONS(8456), - [anon_sym_DASH_EQ] = ACTIONS(8456), - [anon_sym_LT_LT_EQ] = ACTIONS(8456), - [anon_sym_GT_GT_EQ] = ACTIONS(8456), - [anon_sym_AMP_EQ] = ACTIONS(8456), - [anon_sym_CARET_EQ] = ACTIONS(8456), - [anon_sym_PIPE_EQ] = ACTIONS(8456), - [anon_sym_and_eq] = ACTIONS(8454), - [anon_sym_or_eq] = ACTIONS(8454), - [anon_sym_xor_eq] = ACTIONS(8454), - [anon_sym_LT_EQ_GT] = ACTIONS(8456), - [anon_sym_or] = ACTIONS(8454), - [anon_sym_and] = ACTIONS(8454), - [anon_sym_bitor] = ACTIONS(8454), - [anon_sym_xor] = ACTIONS(8454), - [anon_sym_bitand] = ACTIONS(8454), - [anon_sym_not_eq] = ACTIONS(8454), - [anon_sym_DASH_DASH] = ACTIONS(8456), - [anon_sym_PLUS_PLUS] = ACTIONS(8456), - [anon_sym_DOT] = ACTIONS(8454), - [anon_sym_DOT_STAR] = ACTIONS(8456), - [anon_sym_DASH_GT] = ACTIONS(8456), - [anon_sym_L_DQUOTE] = ACTIONS(8456), - [anon_sym_u_DQUOTE] = ACTIONS(8456), - [anon_sym_U_DQUOTE] = ACTIONS(8456), - [anon_sym_u8_DQUOTE] = ACTIONS(8456), - [anon_sym_DQUOTE] = ACTIONS(8456), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8456), - [anon_sym_LR_DQUOTE] = ACTIONS(8456), - [anon_sym_uR_DQUOTE] = ACTIONS(8456), - [anon_sym_UR_DQUOTE] = ACTIONS(8456), - [anon_sym_u8R_DQUOTE] = ACTIONS(8456), - [sym_literal_suffix] = ACTIONS(8454), + [STATE(3161)] = { + [sym_identifier] = ACTIONS(3163), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [anon_sym_COMMA] = ACTIONS(3488), + [aux_sym_preproc_if_token1] = ACTIONS(3163), + [aux_sym_preproc_if_token2] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), + [sym_preproc_directive] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3488), + [anon_sym___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_extern] = ACTIONS(3163), + [anon_sym___attribute__] = ACTIONS(3163), + [anon_sym___attribute] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3163), + [anon_sym___based] = ACTIONS(3163), + [anon_sym_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym___inline] = ACTIONS(3163), + [anon_sym___inline__] = ACTIONS(3163), + [anon_sym___forceinline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym___thread] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym___restrict__] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym__Noreturn] = ACTIONS(3163), + [anon_sym_noreturn] = ACTIONS(3163), + [anon_sym__Nonnull] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym__Alignas] = ACTIONS(3163), + [sym_primitive_type] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_typename] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_private] = ACTIONS(3163), + [anon_sym_template] = ACTIONS(3163), + [anon_sym_operator] = ACTIONS(3163), + [anon_sym_friend] = ACTIONS(3163), + [anon_sym_public] = ACTIONS(3163), + [anon_sym_protected] = ACTIONS(3163), + [anon_sym_static_assert] = ACTIONS(3163), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), }, - [STATE(3673)] = { - [sym_identifier] = ACTIONS(9262), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9264), - [anon_sym_COMMA] = ACTIONS(9264), - [anon_sym_RPAREN] = ACTIONS(9264), - [aux_sym_preproc_if_token2] = ACTIONS(9264), - [aux_sym_preproc_else_token1] = ACTIONS(9264), - [aux_sym_preproc_elif_token1] = ACTIONS(9262), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9264), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9264), - [anon_sym_LPAREN2] = ACTIONS(9264), - [anon_sym_DASH] = ACTIONS(9262), - [anon_sym_PLUS] = ACTIONS(9262), - [anon_sym_STAR] = ACTIONS(9262), - [anon_sym_SLASH] = ACTIONS(9262), - [anon_sym_PERCENT] = ACTIONS(9262), - [anon_sym_PIPE_PIPE] = ACTIONS(9264), - [anon_sym_AMP_AMP] = ACTIONS(9264), - [anon_sym_PIPE] = ACTIONS(9262), - [anon_sym_CARET] = ACTIONS(9262), - [anon_sym_AMP] = ACTIONS(9262), - [anon_sym_EQ_EQ] = ACTIONS(9264), - [anon_sym_BANG_EQ] = ACTIONS(9264), - [anon_sym_GT] = ACTIONS(9262), - [anon_sym_GT_EQ] = ACTIONS(9264), - [anon_sym_LT_EQ] = ACTIONS(9262), - [anon_sym_LT] = ACTIONS(9262), - [anon_sym_LT_LT] = ACTIONS(9262), - [anon_sym_GT_GT] = ACTIONS(9262), - [anon_sym_SEMI] = ACTIONS(9264), - [anon_sym___attribute__] = ACTIONS(9262), - [anon_sym___attribute] = ACTIONS(9262), - [anon_sym_COLON] = ACTIONS(9262), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9264), - [anon_sym_RBRACE] = ACTIONS(9264), - [anon_sym_LBRACK] = ACTIONS(9264), - [anon_sym_EQ] = ACTIONS(9262), - [anon_sym_QMARK] = ACTIONS(9264), - [anon_sym_STAR_EQ] = ACTIONS(9264), - [anon_sym_SLASH_EQ] = ACTIONS(9264), - [anon_sym_PERCENT_EQ] = ACTIONS(9264), - [anon_sym_PLUS_EQ] = ACTIONS(9264), - [anon_sym_DASH_EQ] = ACTIONS(9264), - [anon_sym_LT_LT_EQ] = ACTIONS(9264), - [anon_sym_GT_GT_EQ] = ACTIONS(9264), - [anon_sym_AMP_EQ] = ACTIONS(9264), - [anon_sym_CARET_EQ] = ACTIONS(9264), - [anon_sym_PIPE_EQ] = ACTIONS(9264), - [anon_sym_and_eq] = ACTIONS(9262), - [anon_sym_or_eq] = ACTIONS(9262), - [anon_sym_xor_eq] = ACTIONS(9262), - [anon_sym_LT_EQ_GT] = ACTIONS(9264), - [anon_sym_or] = ACTIONS(9262), - [anon_sym_and] = ACTIONS(9262), - [anon_sym_bitor] = ACTIONS(9262), - [anon_sym_xor] = ACTIONS(9262), - [anon_sym_bitand] = ACTIONS(9262), - [anon_sym_not_eq] = ACTIONS(9262), - [anon_sym_DASH_DASH] = ACTIONS(9264), - [anon_sym_PLUS_PLUS] = ACTIONS(9264), - [anon_sym_DOT] = ACTIONS(9262), - [anon_sym_DOT_STAR] = ACTIONS(9264), - [anon_sym_DASH_GT] = ACTIONS(9264), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9264), + [STATE(3162)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7673), + [anon_sym_COMMA] = ACTIONS(7673), + [anon_sym_LPAREN2] = ACTIONS(7673), + [anon_sym_DASH] = ACTIONS(7671), + [anon_sym_PLUS] = ACTIONS(7671), + [anon_sym_STAR] = ACTIONS(7671), + [anon_sym_SLASH] = ACTIONS(7671), + [anon_sym_PERCENT] = ACTIONS(7671), + [anon_sym_PIPE_PIPE] = ACTIONS(7673), + [anon_sym_AMP_AMP] = ACTIONS(7673), + [anon_sym_PIPE] = ACTIONS(7671), + [anon_sym_CARET] = ACTIONS(7671), + [anon_sym_AMP] = ACTIONS(7671), + [anon_sym_EQ_EQ] = ACTIONS(7673), + [anon_sym_BANG_EQ] = ACTIONS(7673), + [anon_sym_GT] = ACTIONS(7671), + [anon_sym_GT_EQ] = ACTIONS(7671), + [anon_sym_LT_EQ] = ACTIONS(7671), + [anon_sym_LT] = ACTIONS(7671), + [anon_sym_LT_LT] = ACTIONS(7671), + [anon_sym_GT_GT] = ACTIONS(7671), + [anon_sym___extension__] = ACTIONS(7673), + [anon_sym_LBRACE] = ACTIONS(7673), + [anon_sym_LBRACK] = ACTIONS(7673), + [anon_sym_EQ] = ACTIONS(7671), + [anon_sym_const] = ACTIONS(7671), + [anon_sym_constexpr] = ACTIONS(7673), + [anon_sym_volatile] = ACTIONS(7673), + [anon_sym_restrict] = ACTIONS(7673), + [anon_sym___restrict__] = ACTIONS(7673), + [anon_sym__Atomic] = ACTIONS(7673), + [anon_sym__Noreturn] = ACTIONS(7673), + [anon_sym_noreturn] = ACTIONS(7673), + [anon_sym__Nonnull] = ACTIONS(7673), + [anon_sym_mutable] = ACTIONS(7673), + [anon_sym_constinit] = ACTIONS(7673), + [anon_sym_consteval] = ACTIONS(7673), + [anon_sym_alignas] = ACTIONS(7673), + [anon_sym__Alignas] = ACTIONS(7673), + [anon_sym_QMARK] = ACTIONS(7673), + [anon_sym_STAR_EQ] = ACTIONS(7673), + [anon_sym_SLASH_EQ] = ACTIONS(7673), + [anon_sym_PERCENT_EQ] = ACTIONS(7673), + [anon_sym_PLUS_EQ] = ACTIONS(7673), + [anon_sym_DASH_EQ] = ACTIONS(7673), + [anon_sym_LT_LT_EQ] = ACTIONS(7673), + [anon_sym_GT_GT_EQ] = ACTIONS(7671), + [anon_sym_AMP_EQ] = ACTIONS(7673), + [anon_sym_CARET_EQ] = ACTIONS(7673), + [anon_sym_PIPE_EQ] = ACTIONS(7673), + [anon_sym_and_eq] = ACTIONS(7673), + [anon_sym_or_eq] = ACTIONS(7673), + [anon_sym_xor_eq] = ACTIONS(7673), + [anon_sym_LT_EQ_GT] = ACTIONS(7673), + [anon_sym_or] = ACTIONS(7671), + [anon_sym_and] = ACTIONS(7671), + [anon_sym_bitor] = ACTIONS(7673), + [anon_sym_xor] = ACTIONS(7671), + [anon_sym_bitand] = ACTIONS(7673), + [anon_sym_not_eq] = ACTIONS(7673), + [anon_sym_DASH_DASH] = ACTIONS(7673), + [anon_sym_PLUS_PLUS] = ACTIONS(7673), + [anon_sym_DOT] = ACTIONS(7671), + [anon_sym_DOT_STAR] = ACTIONS(7673), + [anon_sym_DASH_GT] = ACTIONS(7673), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7673), + [anon_sym_override] = ACTIONS(7673), + [anon_sym_GT2] = ACTIONS(7673), + [anon_sym_requires] = ACTIONS(7673), }, - [STATE(3674)] = { - [sym_identifier] = ACTIONS(8400), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8402), - [anon_sym_COMMA] = ACTIONS(8402), - [anon_sym_LPAREN2] = ACTIONS(8402), - [anon_sym_DASH] = ACTIONS(8400), - [anon_sym_PLUS] = ACTIONS(8400), - [anon_sym_STAR] = ACTIONS(8400), - [anon_sym_SLASH] = ACTIONS(8400), - [anon_sym_PERCENT] = ACTIONS(8400), - [anon_sym_PIPE_PIPE] = ACTIONS(8402), - [anon_sym_AMP_AMP] = ACTIONS(8402), - [anon_sym_PIPE] = ACTIONS(8400), - [anon_sym_CARET] = ACTIONS(8400), - [anon_sym_AMP] = ACTIONS(8400), - [anon_sym_EQ_EQ] = ACTIONS(8402), - [anon_sym_BANG_EQ] = ACTIONS(8402), - [anon_sym_GT] = ACTIONS(8400), - [anon_sym_GT_EQ] = ACTIONS(8402), - [anon_sym_LT_EQ] = ACTIONS(8400), - [anon_sym_LT] = ACTIONS(8400), - [anon_sym_LT_LT] = ACTIONS(8400), - [anon_sym_GT_GT] = ACTIONS(8400), - [anon_sym_SEMI] = ACTIONS(8402), - [anon_sym___attribute__] = ACTIONS(8400), - [anon_sym___attribute] = ACTIONS(8400), - [anon_sym_LBRACK] = ACTIONS(8402), - [anon_sym_EQ] = ACTIONS(8400), - [anon_sym_QMARK] = ACTIONS(8402), - [anon_sym_STAR_EQ] = ACTIONS(8402), - [anon_sym_SLASH_EQ] = ACTIONS(8402), - [anon_sym_PERCENT_EQ] = ACTIONS(8402), - [anon_sym_PLUS_EQ] = ACTIONS(8402), - [anon_sym_DASH_EQ] = ACTIONS(8402), - [anon_sym_LT_LT_EQ] = ACTIONS(8402), - [anon_sym_GT_GT_EQ] = ACTIONS(8402), - [anon_sym_AMP_EQ] = ACTIONS(8402), - [anon_sym_CARET_EQ] = ACTIONS(8402), - [anon_sym_PIPE_EQ] = ACTIONS(8402), - [anon_sym_and_eq] = ACTIONS(8400), - [anon_sym_or_eq] = ACTIONS(8400), - [anon_sym_xor_eq] = ACTIONS(8400), - [anon_sym_LT_EQ_GT] = ACTIONS(8402), - [anon_sym_or] = ACTIONS(8400), - [anon_sym_and] = ACTIONS(8400), - [anon_sym_bitor] = ACTIONS(8400), - [anon_sym_xor] = ACTIONS(8400), - [anon_sym_bitand] = ACTIONS(8400), - [anon_sym_not_eq] = ACTIONS(8400), - [anon_sym_DASH_DASH] = ACTIONS(8402), - [anon_sym_PLUS_PLUS] = ACTIONS(8402), - [anon_sym_DOT] = ACTIONS(8400), - [anon_sym_DOT_STAR] = ACTIONS(8402), - [anon_sym_DASH_GT] = ACTIONS(8402), - [anon_sym_L_DQUOTE] = ACTIONS(8402), - [anon_sym_u_DQUOTE] = ACTIONS(8402), - [anon_sym_U_DQUOTE] = ACTIONS(8402), - [anon_sym_u8_DQUOTE] = ACTIONS(8402), - [anon_sym_DQUOTE] = ACTIONS(8402), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8402), - [anon_sym_LR_DQUOTE] = ACTIONS(8402), - [anon_sym_uR_DQUOTE] = ACTIONS(8402), - [anon_sym_UR_DQUOTE] = ACTIONS(8402), - [anon_sym_u8R_DQUOTE] = ACTIONS(8402), - [sym_literal_suffix] = ACTIONS(8400), + [STATE(3163)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7567), + [anon_sym_COMMA] = ACTIONS(7567), + [anon_sym_LPAREN2] = ACTIONS(7567), + [anon_sym_DASH] = ACTIONS(7565), + [anon_sym_PLUS] = ACTIONS(7565), + [anon_sym_STAR] = ACTIONS(7565), + [anon_sym_SLASH] = ACTIONS(7565), + [anon_sym_PERCENT] = ACTIONS(7565), + [anon_sym_PIPE_PIPE] = ACTIONS(7567), + [anon_sym_AMP_AMP] = ACTIONS(7567), + [anon_sym_PIPE] = ACTIONS(7565), + [anon_sym_CARET] = ACTIONS(7565), + [anon_sym_AMP] = ACTIONS(7565), + [anon_sym_EQ_EQ] = ACTIONS(7567), + [anon_sym_BANG_EQ] = ACTIONS(7567), + [anon_sym_GT] = ACTIONS(7565), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_LT_EQ] = ACTIONS(7565), + [anon_sym_LT] = ACTIONS(7565), + [anon_sym_LT_LT] = ACTIONS(7565), + [anon_sym_GT_GT] = ACTIONS(7565), + [anon_sym___extension__] = ACTIONS(7567), + [anon_sym_LBRACE] = ACTIONS(7567), + [anon_sym_LBRACK] = ACTIONS(7567), + [anon_sym_RBRACK] = ACTIONS(7567), + [anon_sym_EQ] = ACTIONS(7565), + [anon_sym_const] = ACTIONS(7565), + [anon_sym_constexpr] = ACTIONS(7567), + [anon_sym_volatile] = ACTIONS(7567), + [anon_sym_restrict] = ACTIONS(7567), + [anon_sym___restrict__] = ACTIONS(7567), + [anon_sym__Atomic] = ACTIONS(7567), + [anon_sym__Noreturn] = ACTIONS(7567), + [anon_sym_noreturn] = ACTIONS(7567), + [anon_sym__Nonnull] = ACTIONS(7567), + [anon_sym_mutable] = ACTIONS(7567), + [anon_sym_constinit] = ACTIONS(7567), + [anon_sym_consteval] = ACTIONS(7567), + [anon_sym_alignas] = ACTIONS(7567), + [anon_sym__Alignas] = ACTIONS(7567), + [anon_sym_QMARK] = ACTIONS(7567), + [anon_sym_STAR_EQ] = ACTIONS(7567), + [anon_sym_SLASH_EQ] = ACTIONS(7567), + [anon_sym_PERCENT_EQ] = ACTIONS(7567), + [anon_sym_PLUS_EQ] = ACTIONS(7567), + [anon_sym_DASH_EQ] = ACTIONS(7567), + [anon_sym_LT_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_GT_EQ] = ACTIONS(7567), + [anon_sym_AMP_EQ] = ACTIONS(7567), + [anon_sym_CARET_EQ] = ACTIONS(7567), + [anon_sym_PIPE_EQ] = ACTIONS(7567), + [anon_sym_and_eq] = ACTIONS(7567), + [anon_sym_or_eq] = ACTIONS(7567), + [anon_sym_xor_eq] = ACTIONS(7567), + [anon_sym_LT_EQ_GT] = ACTIONS(7567), + [anon_sym_or] = ACTIONS(7565), + [anon_sym_and] = ACTIONS(7565), + [anon_sym_bitor] = ACTIONS(7567), + [anon_sym_xor] = ACTIONS(7565), + [anon_sym_bitand] = ACTIONS(7567), + [anon_sym_not_eq] = ACTIONS(7567), + [anon_sym_DASH_DASH] = ACTIONS(7567), + [anon_sym_PLUS_PLUS] = ACTIONS(7567), + [anon_sym_DOT] = ACTIONS(7565), + [anon_sym_DOT_STAR] = ACTIONS(7567), + [anon_sym_DASH_GT] = ACTIONS(7567), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7567), + [anon_sym_override] = ACTIONS(7567), + [anon_sym_requires] = ACTIONS(7567), }, - [STATE(3675)] = { - [sym_identifier] = ACTIONS(9266), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9268), - [anon_sym_COMMA] = ACTIONS(9268), - [anon_sym_RPAREN] = ACTIONS(9268), - [aux_sym_preproc_if_token2] = ACTIONS(9268), - [aux_sym_preproc_else_token1] = ACTIONS(9268), - [aux_sym_preproc_elif_token1] = ACTIONS(9266), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9268), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9268), - [anon_sym_LPAREN2] = ACTIONS(9268), - [anon_sym_DASH] = ACTIONS(9266), - [anon_sym_PLUS] = ACTIONS(9266), - [anon_sym_STAR] = ACTIONS(9266), - [anon_sym_SLASH] = ACTIONS(9266), - [anon_sym_PERCENT] = ACTIONS(9266), - [anon_sym_PIPE_PIPE] = ACTIONS(9268), - [anon_sym_AMP_AMP] = ACTIONS(9268), - [anon_sym_PIPE] = ACTIONS(9266), - [anon_sym_CARET] = ACTIONS(9266), - [anon_sym_AMP] = ACTIONS(9266), - [anon_sym_EQ_EQ] = ACTIONS(9268), - [anon_sym_BANG_EQ] = ACTIONS(9268), - [anon_sym_GT] = ACTIONS(9266), - [anon_sym_GT_EQ] = ACTIONS(9268), - [anon_sym_LT_EQ] = ACTIONS(9266), - [anon_sym_LT] = ACTIONS(9266), - [anon_sym_LT_LT] = ACTIONS(9266), - [anon_sym_GT_GT] = ACTIONS(9266), - [anon_sym_SEMI] = ACTIONS(9268), - [anon_sym___attribute__] = ACTIONS(9266), - [anon_sym___attribute] = ACTIONS(9266), - [anon_sym_COLON] = ACTIONS(9266), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9268), - [anon_sym_LBRACE] = ACTIONS(9268), - [anon_sym_RBRACE] = ACTIONS(9268), - [anon_sym_LBRACK] = ACTIONS(9268), - [anon_sym_EQ] = ACTIONS(9266), - [anon_sym_QMARK] = ACTIONS(9268), - [anon_sym_STAR_EQ] = ACTIONS(9268), - [anon_sym_SLASH_EQ] = ACTIONS(9268), - [anon_sym_PERCENT_EQ] = ACTIONS(9268), - [anon_sym_PLUS_EQ] = ACTIONS(9268), - [anon_sym_DASH_EQ] = ACTIONS(9268), - [anon_sym_LT_LT_EQ] = ACTIONS(9268), - [anon_sym_GT_GT_EQ] = ACTIONS(9268), - [anon_sym_AMP_EQ] = ACTIONS(9268), - [anon_sym_CARET_EQ] = ACTIONS(9268), - [anon_sym_PIPE_EQ] = ACTIONS(9268), - [anon_sym_and_eq] = ACTIONS(9266), - [anon_sym_or_eq] = ACTIONS(9266), - [anon_sym_xor_eq] = ACTIONS(9266), - [anon_sym_LT_EQ_GT] = ACTIONS(9268), - [anon_sym_or] = ACTIONS(9266), - [anon_sym_and] = ACTIONS(9266), - [anon_sym_bitor] = ACTIONS(9266), - [anon_sym_xor] = ACTIONS(9266), - [anon_sym_bitand] = ACTIONS(9266), - [anon_sym_not_eq] = ACTIONS(9266), - [anon_sym_DASH_DASH] = ACTIONS(9268), - [anon_sym_PLUS_PLUS] = ACTIONS(9268), - [anon_sym_DOT] = ACTIONS(9266), - [anon_sym_DOT_STAR] = ACTIONS(9268), - [anon_sym_DASH_GT] = ACTIONS(9268), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9268), + [STATE(3164)] = { + [sym_identifier] = ACTIONS(7623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7625), + [anon_sym_COMMA] = ACTIONS(7625), + [anon_sym_RPAREN] = ACTIONS(7625), + [anon_sym_LPAREN2] = ACTIONS(7625), + [anon_sym_DASH] = ACTIONS(7623), + [anon_sym_PLUS] = ACTIONS(7623), + [anon_sym_STAR] = ACTIONS(7625), + [anon_sym_SLASH] = ACTIONS(7623), + [anon_sym_PERCENT] = ACTIONS(7625), + [anon_sym_PIPE_PIPE] = ACTIONS(7625), + [anon_sym_AMP_AMP] = ACTIONS(7625), + [anon_sym_PIPE] = ACTIONS(7623), + [anon_sym_CARET] = ACTIONS(7625), + [anon_sym_AMP] = ACTIONS(7623), + [anon_sym_EQ_EQ] = ACTIONS(7625), + [anon_sym_BANG_EQ] = ACTIONS(7625), + [anon_sym_GT] = ACTIONS(7623), + [anon_sym_GT_EQ] = ACTIONS(7625), + [anon_sym_LT_EQ] = ACTIONS(7623), + [anon_sym_LT] = ACTIONS(7623), + [anon_sym_LT_LT] = ACTIONS(7625), + [anon_sym_GT_GT] = ACTIONS(7625), + [anon_sym_SEMI] = ACTIONS(7625), + [anon_sym___extension__] = ACTIONS(7623), + [anon_sym___attribute__] = ACTIONS(7623), + [anon_sym___attribute] = ACTIONS(7623), + [anon_sym_COLON] = ACTIONS(7623), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7625), + [anon_sym___based] = ACTIONS(7623), + [anon_sym_LBRACE] = ACTIONS(7625), + [anon_sym_RBRACE] = ACTIONS(7625), + [anon_sym_signed] = ACTIONS(7623), + [anon_sym_unsigned] = ACTIONS(7623), + [anon_sym_long] = ACTIONS(7623), + [anon_sym_short] = ACTIONS(7623), + [anon_sym_LBRACK] = ACTIONS(7625), + [anon_sym_const] = ACTIONS(7623), + [anon_sym_constexpr] = ACTIONS(7623), + [anon_sym_volatile] = ACTIONS(7623), + [anon_sym_restrict] = ACTIONS(7623), + [anon_sym___restrict__] = ACTIONS(7623), + [anon_sym__Atomic] = ACTIONS(7623), + [anon_sym__Noreturn] = ACTIONS(7623), + [anon_sym_noreturn] = ACTIONS(7623), + [anon_sym__Nonnull] = ACTIONS(7623), + [anon_sym_mutable] = ACTIONS(7623), + [anon_sym_constinit] = ACTIONS(7623), + [anon_sym_consteval] = ACTIONS(7623), + [anon_sym_alignas] = ACTIONS(7623), + [anon_sym__Alignas] = ACTIONS(7623), + [sym_primitive_type] = ACTIONS(7623), + [anon_sym_QMARK] = ACTIONS(7625), + [anon_sym_LT_EQ_GT] = ACTIONS(7625), + [anon_sym_or] = ACTIONS(7623), + [anon_sym_and] = ACTIONS(7623), + [anon_sym_bitor] = ACTIONS(7623), + [anon_sym_xor] = ACTIONS(7623), + [anon_sym_bitand] = ACTIONS(7623), + [anon_sym_not_eq] = ACTIONS(7623), + [anon_sym_DASH_DASH] = ACTIONS(7625), + [anon_sym_PLUS_PLUS] = ACTIONS(7625), + [anon_sym_DOT] = ACTIONS(7623), + [anon_sym_DOT_STAR] = ACTIONS(7625), + [anon_sym_DASH_GT] = ACTIONS(7625), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7623), + [anon_sym_override] = ACTIONS(7623), + [anon_sym_requires] = ACTIONS(7623), + [anon_sym_COLON_RBRACK] = ACTIONS(7625), }, - [STATE(3676)] = { - [sym_ms_based_modifier] = STATE(10827), - [sym__declarator] = STATE(8705), - [sym__abstract_declarator] = STATE(8889), - [sym_parenthesized_declarator] = STATE(8469), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_function_declarator] = STATE(8469), - [sym_abstract_function_declarator] = STATE(8389), - [sym_array_declarator] = STATE(8469), - [sym_abstract_array_declarator] = STATE(8389), - [sym_type_qualifier] = STATE(6842), - [sym_alignas_qualifier] = STATE(7436), - [sym_parameter_list] = STATE(5256), - [sym_decltype] = STATE(10976), - [sym_reference_declarator] = STATE(8469), - [sym_abstract_reference_declarator] = STATE(8389), - [sym_structured_binding_declarator] = STATE(8469), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7869), - [sym_qualified_identifier] = STATE(8469), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__type_definition_type_repeat1] = STATE(6842), - [sym_identifier] = ACTIONS(7868), - [anon_sym_COMMA] = ACTIONS(7007), - [anon_sym_RPAREN] = ACTIONS(7007), - [anon_sym_LPAREN2] = ACTIONS(5301), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(8354), - [anon_sym_AMP_AMP] = ACTIONS(8356), - [anon_sym_AMP] = ACTIONS(8358), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(7009), - [anon_sym___attribute] = ACTIONS(7009), - [anon_sym_COLON_COLON] = ACTIONS(8360), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(5311), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym__Nonnull] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2939), - [anon_sym__Alignas] = ACTIONS(2939), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), + [STATE(3165)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), + [anon_sym_COMMA] = ACTIONS(7563), + [anon_sym_LPAREN2] = ACTIONS(7563), + [anon_sym_DASH] = ACTIONS(7561), + [anon_sym_PLUS] = ACTIONS(7561), + [anon_sym_STAR] = ACTIONS(7561), + [anon_sym_SLASH] = ACTIONS(7561), + [anon_sym_PERCENT] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_AMP_AMP] = ACTIONS(7563), + [anon_sym_PIPE] = ACTIONS(7561), + [anon_sym_CARET] = ACTIONS(7561), + [anon_sym_AMP] = ACTIONS(7561), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_GT] = ACTIONS(7561), + [anon_sym_GT_EQ] = ACTIONS(7563), + [anon_sym_LT_EQ] = ACTIONS(7561), + [anon_sym_LT] = ACTIONS(7561), + [anon_sym_LT_LT] = ACTIONS(7561), + [anon_sym_GT_GT] = ACTIONS(7561), + [anon_sym___extension__] = ACTIONS(7563), + [anon_sym_LBRACE] = ACTIONS(7563), + [anon_sym_LBRACK] = ACTIONS(7563), + [anon_sym_RBRACK] = ACTIONS(7563), + [anon_sym_EQ] = ACTIONS(7561), + [anon_sym_const] = ACTIONS(7561), + [anon_sym_constexpr] = ACTIONS(7563), + [anon_sym_volatile] = ACTIONS(7563), + [anon_sym_restrict] = ACTIONS(7563), + [anon_sym___restrict__] = ACTIONS(7563), + [anon_sym__Atomic] = ACTIONS(7563), + [anon_sym__Noreturn] = ACTIONS(7563), + [anon_sym_noreturn] = ACTIONS(7563), + [anon_sym__Nonnull] = ACTIONS(7563), + [anon_sym_mutable] = ACTIONS(7563), + [anon_sym_constinit] = ACTIONS(7563), + [anon_sym_consteval] = ACTIONS(7563), + [anon_sym_alignas] = ACTIONS(7563), + [anon_sym__Alignas] = ACTIONS(7563), + [anon_sym_QMARK] = ACTIONS(7563), + [anon_sym_STAR_EQ] = ACTIONS(7563), + [anon_sym_SLASH_EQ] = ACTIONS(7563), + [anon_sym_PERCENT_EQ] = ACTIONS(7563), + [anon_sym_PLUS_EQ] = ACTIONS(7563), + [anon_sym_DASH_EQ] = ACTIONS(7563), + [anon_sym_LT_LT_EQ] = ACTIONS(7563), + [anon_sym_GT_GT_EQ] = ACTIONS(7563), + [anon_sym_AMP_EQ] = ACTIONS(7563), + [anon_sym_CARET_EQ] = ACTIONS(7563), + [anon_sym_PIPE_EQ] = ACTIONS(7563), + [anon_sym_and_eq] = ACTIONS(7563), + [anon_sym_or_eq] = ACTIONS(7563), + [anon_sym_xor_eq] = ACTIONS(7563), + [anon_sym_LT_EQ_GT] = ACTIONS(7563), + [anon_sym_or] = ACTIONS(7561), + [anon_sym_and] = ACTIONS(7561), + [anon_sym_bitor] = ACTIONS(7563), + [anon_sym_xor] = ACTIONS(7561), + [anon_sym_bitand] = ACTIONS(7563), + [anon_sym_not_eq] = ACTIONS(7563), + [anon_sym_DASH_DASH] = ACTIONS(7563), + [anon_sym_PLUS_PLUS] = ACTIONS(7563), + [anon_sym_DOT] = ACTIONS(7561), + [anon_sym_DOT_STAR] = ACTIONS(7563), + [anon_sym_DASH_GT] = ACTIONS(7563), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7563), + [anon_sym_override] = ACTIONS(7563), + [anon_sym_requires] = ACTIONS(7563), }, - [STATE(3677)] = { - [sym_identifier] = ACTIONS(9248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9250), - [anon_sym_COMMA] = ACTIONS(9250), - [anon_sym_RPAREN] = ACTIONS(9250), - [aux_sym_preproc_if_token2] = ACTIONS(9250), - [aux_sym_preproc_else_token1] = ACTIONS(9250), - [aux_sym_preproc_elif_token1] = ACTIONS(9248), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9250), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9250), - [anon_sym_LPAREN2] = ACTIONS(9250), - [anon_sym_DASH] = ACTIONS(9248), - [anon_sym_PLUS] = ACTIONS(9248), - [anon_sym_STAR] = ACTIONS(9248), - [anon_sym_SLASH] = ACTIONS(9248), - [anon_sym_PERCENT] = ACTIONS(9248), - [anon_sym_PIPE_PIPE] = ACTIONS(9250), - [anon_sym_AMP_AMP] = ACTIONS(9250), - [anon_sym_PIPE] = ACTIONS(9248), - [anon_sym_CARET] = ACTIONS(9248), - [anon_sym_AMP] = ACTIONS(9248), - [anon_sym_EQ_EQ] = ACTIONS(9250), - [anon_sym_BANG_EQ] = ACTIONS(9250), - [anon_sym_GT] = ACTIONS(9248), - [anon_sym_GT_EQ] = ACTIONS(9250), - [anon_sym_LT_EQ] = ACTIONS(9248), - [anon_sym_LT] = ACTIONS(9248), - [anon_sym_LT_LT] = ACTIONS(9248), - [anon_sym_GT_GT] = ACTIONS(9248), - [anon_sym_SEMI] = ACTIONS(9250), - [anon_sym___attribute__] = ACTIONS(9248), - [anon_sym___attribute] = ACTIONS(9248), - [anon_sym_COLON] = ACTIONS(9248), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9250), - [anon_sym_LBRACE] = ACTIONS(9250), - [anon_sym_RBRACE] = ACTIONS(9250), - [anon_sym_LBRACK] = ACTIONS(9250), - [anon_sym_EQ] = ACTIONS(9248), - [anon_sym_QMARK] = ACTIONS(9250), - [anon_sym_STAR_EQ] = ACTIONS(9250), - [anon_sym_SLASH_EQ] = ACTIONS(9250), - [anon_sym_PERCENT_EQ] = ACTIONS(9250), - [anon_sym_PLUS_EQ] = ACTIONS(9250), - [anon_sym_DASH_EQ] = ACTIONS(9250), - [anon_sym_LT_LT_EQ] = ACTIONS(9250), - [anon_sym_GT_GT_EQ] = ACTIONS(9250), - [anon_sym_AMP_EQ] = ACTIONS(9250), - [anon_sym_CARET_EQ] = ACTIONS(9250), - [anon_sym_PIPE_EQ] = ACTIONS(9250), - [anon_sym_and_eq] = ACTIONS(9248), - [anon_sym_or_eq] = ACTIONS(9248), - [anon_sym_xor_eq] = ACTIONS(9248), - [anon_sym_LT_EQ_GT] = ACTIONS(9250), - [anon_sym_or] = ACTIONS(9248), - [anon_sym_and] = ACTIONS(9248), - [anon_sym_bitor] = ACTIONS(9248), - [anon_sym_xor] = ACTIONS(9248), - [anon_sym_bitand] = ACTIONS(9248), - [anon_sym_not_eq] = ACTIONS(9248), - [anon_sym_DASH_DASH] = ACTIONS(9250), - [anon_sym_PLUS_PLUS] = ACTIONS(9250), - [anon_sym_DOT] = ACTIONS(9248), - [anon_sym_DOT_STAR] = ACTIONS(9250), - [anon_sym_DASH_GT] = ACTIONS(9250), + [STATE(3166)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7733), + [anon_sym_COMMA] = ACTIONS(7733), + [anon_sym_LPAREN2] = ACTIONS(7733), + [anon_sym_DASH] = ACTIONS(7731), + [anon_sym_PLUS] = ACTIONS(7731), + [anon_sym_STAR] = ACTIONS(7731), + [anon_sym_SLASH] = ACTIONS(7731), + [anon_sym_PERCENT] = ACTIONS(7731), + [anon_sym_PIPE_PIPE] = ACTIONS(7733), + [anon_sym_AMP_AMP] = ACTIONS(7733), + [anon_sym_PIPE] = ACTIONS(7731), + [anon_sym_CARET] = ACTIONS(7731), + [anon_sym_AMP] = ACTIONS(7731), + [anon_sym_EQ_EQ] = ACTIONS(7733), + [anon_sym_BANG_EQ] = ACTIONS(7733), + [anon_sym_GT] = ACTIONS(7731), + [anon_sym_GT_EQ] = ACTIONS(7733), + [anon_sym_LT_EQ] = ACTIONS(7731), + [anon_sym_LT] = ACTIONS(7731), + [anon_sym_LT_LT] = ACTIONS(7731), + [anon_sym_GT_GT] = ACTIONS(7731), + [anon_sym___extension__] = ACTIONS(7733), + [anon_sym_LBRACE] = ACTIONS(7733), + [anon_sym_LBRACK] = ACTIONS(7733), + [anon_sym_RBRACK] = ACTIONS(7733), + [anon_sym_EQ] = ACTIONS(7731), + [anon_sym_const] = ACTIONS(7731), + [anon_sym_constexpr] = ACTIONS(7733), + [anon_sym_volatile] = ACTIONS(7733), + [anon_sym_restrict] = ACTIONS(7733), + [anon_sym___restrict__] = ACTIONS(7733), + [anon_sym__Atomic] = ACTIONS(7733), + [anon_sym__Noreturn] = ACTIONS(7733), + [anon_sym_noreturn] = ACTIONS(7733), + [anon_sym__Nonnull] = ACTIONS(7733), + [anon_sym_mutable] = ACTIONS(7733), + [anon_sym_constinit] = ACTIONS(7733), + [anon_sym_consteval] = ACTIONS(7733), + [anon_sym_alignas] = ACTIONS(7733), + [anon_sym__Alignas] = ACTIONS(7733), + [anon_sym_QMARK] = ACTIONS(7733), + [anon_sym_STAR_EQ] = ACTIONS(7733), + [anon_sym_SLASH_EQ] = ACTIONS(7733), + [anon_sym_PERCENT_EQ] = ACTIONS(7733), + [anon_sym_PLUS_EQ] = ACTIONS(7733), + [anon_sym_DASH_EQ] = ACTIONS(7733), + [anon_sym_LT_LT_EQ] = ACTIONS(7733), + [anon_sym_GT_GT_EQ] = ACTIONS(7733), + [anon_sym_AMP_EQ] = ACTIONS(7733), + [anon_sym_CARET_EQ] = ACTIONS(7733), + [anon_sym_PIPE_EQ] = ACTIONS(7733), + [anon_sym_and_eq] = ACTIONS(7733), + [anon_sym_or_eq] = ACTIONS(7733), + [anon_sym_xor_eq] = ACTIONS(7733), + [anon_sym_LT_EQ_GT] = ACTIONS(7733), + [anon_sym_or] = ACTIONS(7731), + [anon_sym_and] = ACTIONS(7731), + [anon_sym_bitor] = ACTIONS(7733), + [anon_sym_xor] = ACTIONS(7731), + [anon_sym_bitand] = ACTIONS(7733), + [anon_sym_not_eq] = ACTIONS(7733), + [anon_sym_DASH_DASH] = ACTIONS(7733), + [anon_sym_PLUS_PLUS] = ACTIONS(7733), + [anon_sym_DOT] = ACTIONS(7731), + [anon_sym_DOT_STAR] = ACTIONS(7733), + [anon_sym_DASH_GT] = ACTIONS(7733), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7733), + [anon_sym_override] = ACTIONS(7733), + [anon_sym_requires] = ACTIONS(7733), + }, + [STATE(3167)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_RBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9250), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), }, - [STATE(3678)] = { - [sym_argument_list] = STATE(3786), - [sym_subscript_argument_list] = STATE(3784), - [sym_identifier] = ACTIONS(9270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9272), - [anon_sym_COMMA] = ACTIONS(9272), - [anon_sym_RPAREN] = ACTIONS(9272), - [aux_sym_preproc_if_token2] = ACTIONS(9272), - [aux_sym_preproc_else_token1] = ACTIONS(9272), - [aux_sym_preproc_elif_token1] = ACTIONS(9270), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9272), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9272), - [anon_sym_LPAREN2] = ACTIONS(8808), - [anon_sym_DASH] = ACTIONS(9270), - [anon_sym_PLUS] = ACTIONS(9270), - [anon_sym_STAR] = ACTIONS(9270), - [anon_sym_SLASH] = ACTIONS(9270), - [anon_sym_PERCENT] = ACTIONS(9270), - [anon_sym_PIPE_PIPE] = ACTIONS(9272), - [anon_sym_AMP_AMP] = ACTIONS(9272), - [anon_sym_PIPE] = ACTIONS(9270), - [anon_sym_CARET] = ACTIONS(9270), - [anon_sym_AMP] = ACTIONS(9270), - [anon_sym_EQ_EQ] = ACTIONS(9272), - [anon_sym_BANG_EQ] = ACTIONS(9272), - [anon_sym_GT] = ACTIONS(9270), - [anon_sym_GT_EQ] = ACTIONS(9272), - [anon_sym_LT_EQ] = ACTIONS(9270), - [anon_sym_LT] = ACTIONS(9270), - [anon_sym_LT_LT] = ACTIONS(9270), - [anon_sym_GT_GT] = ACTIONS(9270), - [anon_sym_SEMI] = ACTIONS(9272), - [anon_sym___attribute__] = ACTIONS(9270), - [anon_sym___attribute] = ACTIONS(9270), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9272), - [anon_sym_RBRACE] = ACTIONS(9272), - [anon_sym_LBRACK] = ACTIONS(9236), - [anon_sym_EQ] = ACTIONS(9270), - [anon_sym_QMARK] = ACTIONS(9272), - [anon_sym_STAR_EQ] = ACTIONS(9272), - [anon_sym_SLASH_EQ] = ACTIONS(9272), - [anon_sym_PERCENT_EQ] = ACTIONS(9272), - [anon_sym_PLUS_EQ] = ACTIONS(9272), - [anon_sym_DASH_EQ] = ACTIONS(9272), - [anon_sym_LT_LT_EQ] = ACTIONS(9272), - [anon_sym_GT_GT_EQ] = ACTIONS(9272), - [anon_sym_AMP_EQ] = ACTIONS(9272), - [anon_sym_CARET_EQ] = ACTIONS(9272), - [anon_sym_PIPE_EQ] = ACTIONS(9272), - [anon_sym_and_eq] = ACTIONS(9270), - [anon_sym_or_eq] = ACTIONS(9270), - [anon_sym_xor_eq] = ACTIONS(9270), - [anon_sym_LT_EQ_GT] = ACTIONS(9272), - [anon_sym_or] = ACTIONS(9270), - [anon_sym_and] = ACTIONS(9270), - [anon_sym_bitor] = ACTIONS(9270), - [anon_sym_xor] = ACTIONS(9270), - [anon_sym_bitand] = ACTIONS(9270), - [anon_sym_not_eq] = ACTIONS(9270), - [anon_sym_DASH_DASH] = ACTIONS(9238), - [anon_sym_PLUS_PLUS] = ACTIONS(9238), - [anon_sym_DOT] = ACTIONS(9240), - [anon_sym_DOT_STAR] = ACTIONS(9242), - [anon_sym_DASH_GT] = ACTIONS(9242), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9272), + [STATE(3168)] = { + [sym_identifier] = ACTIONS(3163), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [anon_sym_COMMA] = ACTIONS(3488), + [aux_sym_preproc_if_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), + [sym_preproc_directive] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3488), + [anon_sym___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_extern] = ACTIONS(3163), + [anon_sym___attribute__] = ACTIONS(8598), + [anon_sym___attribute] = ACTIONS(8598), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3163), + [anon_sym___based] = ACTIONS(3163), + [anon_sym_RBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym___inline] = ACTIONS(3163), + [anon_sym___inline__] = ACTIONS(3163), + [anon_sym___forceinline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym___thread] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym___restrict__] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym__Noreturn] = ACTIONS(3163), + [anon_sym_noreturn] = ACTIONS(3163), + [anon_sym__Nonnull] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym__Alignas] = ACTIONS(3163), + [sym_primitive_type] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_typename] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_private] = ACTIONS(3163), + [anon_sym_template] = ACTIONS(3163), + [anon_sym_operator] = ACTIONS(3163), + [anon_sym_friend] = ACTIONS(3163), + [anon_sym_public] = ACTIONS(3163), + [anon_sym_protected] = ACTIONS(3163), + [anon_sym_static_assert] = ACTIONS(3163), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), }, - [STATE(3679)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3670), - [sym_identifier] = ACTIONS(6627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7081), - [anon_sym_COMMA] = ACTIONS(7081), - [anon_sym_LPAREN2] = ACTIONS(7081), - [anon_sym_DASH] = ACTIONS(7084), - [anon_sym_PLUS] = ACTIONS(7084), - [anon_sym_STAR] = ACTIONS(7081), - [anon_sym_SLASH] = ACTIONS(7084), - [anon_sym_PERCENT] = ACTIONS(7081), - [anon_sym_PIPE_PIPE] = ACTIONS(7081), - [anon_sym_AMP_AMP] = ACTIONS(7081), - [anon_sym_PIPE] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7081), - [anon_sym_AMP] = ACTIONS(7084), - [anon_sym_EQ_EQ] = ACTIONS(7081), - [anon_sym_BANG_EQ] = ACTIONS(7081), - [anon_sym_GT] = ACTIONS(7084), - [anon_sym_GT_EQ] = ACTIONS(7084), - [anon_sym_LT_EQ] = ACTIONS(7084), - [anon_sym_LT] = ACTIONS(7084), - [anon_sym_LT_LT] = ACTIONS(7081), - [anon_sym_GT_GT] = ACTIONS(7084), - [anon_sym___extension__] = ACTIONS(7084), - [anon_sym___attribute__] = ACTIONS(7084), - [anon_sym___attribute] = ACTIONS(7084), - [anon_sym_LBRACE] = ACTIONS(7081), - [anon_sym_signed] = ACTIONS(9259), - [anon_sym_unsigned] = ACTIONS(9259), - [anon_sym_long] = ACTIONS(9259), - [anon_sym_short] = ACTIONS(9259), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_const] = ACTIONS(7084), - [anon_sym_constexpr] = ACTIONS(7084), - [anon_sym_volatile] = ACTIONS(7084), - [anon_sym_restrict] = ACTIONS(7084), - [anon_sym___restrict__] = ACTIONS(7084), - [anon_sym__Atomic] = ACTIONS(7084), - [anon_sym__Noreturn] = ACTIONS(7084), - [anon_sym_noreturn] = ACTIONS(7084), - [anon_sym__Nonnull] = ACTIONS(7084), - [anon_sym_mutable] = ACTIONS(7084), - [anon_sym_constinit] = ACTIONS(7084), - [anon_sym_consteval] = ACTIONS(7084), - [anon_sym_alignas] = ACTIONS(7084), - [anon_sym__Alignas] = ACTIONS(7084), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(7081), - [anon_sym_LT_EQ_GT] = ACTIONS(7081), - [anon_sym_or] = ACTIONS(7084), - [anon_sym_and] = ACTIONS(7084), - [anon_sym_bitor] = ACTIONS(7084), - [anon_sym_xor] = ACTIONS(7084), - [anon_sym_bitand] = ACTIONS(7084), - [anon_sym_not_eq] = ACTIONS(7084), - [anon_sym_DASH_DASH] = ACTIONS(7081), - [anon_sym_PLUS_PLUS] = ACTIONS(7081), - [anon_sym_DOT] = ACTIONS(7084), - [anon_sym_DOT_STAR] = ACTIONS(7081), - [anon_sym_DASH_GT] = ACTIONS(7081), + [STATE(3169)] = { + [sym_attribute_declaration] = STATE(3170), + [aux_sym_attributed_declarator_repeat1] = STATE(3170), + [sym_identifier] = ACTIONS(9071), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9073), + [anon_sym_COMMA] = ACTIONS(9073), + [anon_sym_RPAREN] = ACTIONS(9073), + [aux_sym_preproc_if_token2] = ACTIONS(9073), + [aux_sym_preproc_else_token1] = ACTIONS(9073), + [aux_sym_preproc_elif_token1] = ACTIONS(9071), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9073), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9073), + [anon_sym_LPAREN2] = ACTIONS(9073), + [anon_sym_DASH] = ACTIONS(9071), + [anon_sym_PLUS] = ACTIONS(9071), + [anon_sym_STAR] = ACTIONS(9071), + [anon_sym_SLASH] = ACTIONS(9071), + [anon_sym_PERCENT] = ACTIONS(9071), + [anon_sym_PIPE_PIPE] = ACTIONS(9073), + [anon_sym_AMP_AMP] = ACTIONS(9073), + [anon_sym_PIPE] = ACTIONS(9071), + [anon_sym_CARET] = ACTIONS(9071), + [anon_sym_AMP] = ACTIONS(9071), + [anon_sym_EQ_EQ] = ACTIONS(9073), + [anon_sym_BANG_EQ] = ACTIONS(9073), + [anon_sym_GT] = ACTIONS(9071), + [anon_sym_GT_EQ] = ACTIONS(9073), + [anon_sym_LT_EQ] = ACTIONS(9071), + [anon_sym_LT] = ACTIONS(9071), + [anon_sym_LT_LT] = ACTIONS(9071), + [anon_sym_GT_GT] = ACTIONS(9071), + [anon_sym_SEMI] = ACTIONS(9073), + [anon_sym___attribute__] = ACTIONS(9071), + [anon_sym___attribute] = ACTIONS(9071), + [anon_sym_COLON] = ACTIONS(9071), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9073), + [anon_sym_RBRACE] = ACTIONS(9073), + [anon_sym_LBRACK] = ACTIONS(9071), + [anon_sym_EQ] = ACTIONS(9071), + [anon_sym_QMARK] = ACTIONS(9073), + [anon_sym_STAR_EQ] = ACTIONS(9073), + [anon_sym_SLASH_EQ] = ACTIONS(9073), + [anon_sym_PERCENT_EQ] = ACTIONS(9073), + [anon_sym_PLUS_EQ] = ACTIONS(9073), + [anon_sym_DASH_EQ] = ACTIONS(9073), + [anon_sym_LT_LT_EQ] = ACTIONS(9073), + [anon_sym_GT_GT_EQ] = ACTIONS(9073), + [anon_sym_AMP_EQ] = ACTIONS(9073), + [anon_sym_CARET_EQ] = ACTIONS(9073), + [anon_sym_PIPE_EQ] = ACTIONS(9073), + [anon_sym_and_eq] = ACTIONS(9071), + [anon_sym_or_eq] = ACTIONS(9071), + [anon_sym_xor_eq] = ACTIONS(9071), + [anon_sym_LT_EQ_GT] = ACTIONS(9073), + [anon_sym_or] = ACTIONS(9071), + [anon_sym_and] = ACTIONS(9071), + [anon_sym_bitor] = ACTIONS(9071), + [anon_sym_xor] = ACTIONS(9071), + [anon_sym_bitand] = ACTIONS(9071), + [anon_sym_not_eq] = ACTIONS(9071), + [anon_sym_DASH_DASH] = ACTIONS(9073), + [anon_sym_PLUS_PLUS] = ACTIONS(9073), + [anon_sym_DOT] = ACTIONS(9071), + [anon_sym_DOT_STAR] = ACTIONS(9073), + [anon_sym_DASH_GT] = ACTIONS(9073), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9071), + [anon_sym_override] = ACTIONS(9071), + [anon_sym_requires] = ACTIONS(9071), + [anon_sym_COLON_RBRACK] = ACTIONS(9073), + }, + [STATE(3170)] = { + [sym_attribute_declaration] = STATE(3170), + [aux_sym_attributed_declarator_repeat1] = STATE(3170), + [sym_identifier] = ACTIONS(2461), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9075), + [anon_sym_COMMA] = ACTIONS(9075), + [anon_sym_RPAREN] = ACTIONS(9075), + [aux_sym_preproc_if_token2] = ACTIONS(9075), + [aux_sym_preproc_else_token1] = ACTIONS(9075), + [aux_sym_preproc_elif_token1] = ACTIONS(2461), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9075), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9075), + [anon_sym_LPAREN2] = ACTIONS(9075), + [anon_sym_DASH] = ACTIONS(2461), + [anon_sym_PLUS] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_SLASH] = ACTIONS(2461), + [anon_sym_PERCENT] = ACTIONS(2461), + [anon_sym_PIPE_PIPE] = ACTIONS(9075), + [anon_sym_AMP_AMP] = ACTIONS(9075), + [anon_sym_PIPE] = ACTIONS(2461), + [anon_sym_CARET] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(2461), + [anon_sym_EQ_EQ] = ACTIONS(9075), + [anon_sym_BANG_EQ] = ACTIONS(9075), + [anon_sym_GT] = ACTIONS(2461), + [anon_sym_GT_EQ] = ACTIONS(9075), + [anon_sym_LT_EQ] = ACTIONS(2461), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_LT_LT] = ACTIONS(2461), + [anon_sym_GT_GT] = ACTIONS(2461), + [anon_sym_SEMI] = ACTIONS(9075), + [anon_sym___attribute__] = ACTIONS(2461), + [anon_sym___attribute] = ACTIONS(2461), + [anon_sym_COLON] = ACTIONS(2461), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9077), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9075), + [anon_sym_RBRACE] = ACTIONS(9075), + [anon_sym_LBRACK] = ACTIONS(2461), + [anon_sym_EQ] = ACTIONS(2461), + [anon_sym_QMARK] = ACTIONS(9075), + [anon_sym_STAR_EQ] = ACTIONS(9075), + [anon_sym_SLASH_EQ] = ACTIONS(9075), + [anon_sym_PERCENT_EQ] = ACTIONS(9075), + [anon_sym_PLUS_EQ] = ACTIONS(9075), + [anon_sym_DASH_EQ] = ACTIONS(9075), + [anon_sym_LT_LT_EQ] = ACTIONS(9075), + [anon_sym_GT_GT_EQ] = ACTIONS(9075), + [anon_sym_AMP_EQ] = ACTIONS(9075), + [anon_sym_CARET_EQ] = ACTIONS(9075), + [anon_sym_PIPE_EQ] = ACTIONS(9075), + [anon_sym_and_eq] = ACTIONS(2461), + [anon_sym_or_eq] = ACTIONS(2461), + [anon_sym_xor_eq] = ACTIONS(2461), + [anon_sym_LT_EQ_GT] = ACTIONS(9075), + [anon_sym_or] = ACTIONS(2461), + [anon_sym_and] = ACTIONS(2461), + [anon_sym_bitor] = ACTIONS(2461), + [anon_sym_xor] = ACTIONS(2461), + [anon_sym_bitand] = ACTIONS(2461), + [anon_sym_not_eq] = ACTIONS(2461), + [anon_sym_DASH_DASH] = ACTIONS(9075), + [anon_sym_PLUS_PLUS] = ACTIONS(9075), + [anon_sym_DOT] = ACTIONS(2461), + [anon_sym_DOT_STAR] = ACTIONS(9075), + [anon_sym_DASH_GT] = ACTIONS(9075), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(2461), + [anon_sym_override] = ACTIONS(2461), + [anon_sym_requires] = ACTIONS(2461), + [anon_sym_COLON_RBRACK] = ACTIONS(9075), + }, + [STATE(3171)] = { + [sym_identifier] = ACTIONS(7231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), + [anon_sym_COMMA] = ACTIONS(7233), + [anon_sym_RPAREN] = ACTIONS(7233), + [aux_sym_preproc_if_token2] = ACTIONS(7233), + [aux_sym_preproc_else_token1] = ACTIONS(7233), + [aux_sym_preproc_elif_token1] = ACTIONS(7231), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7233), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7233), + [anon_sym_LPAREN2] = ACTIONS(7233), + [anon_sym_DASH] = ACTIONS(7231), + [anon_sym_PLUS] = ACTIONS(7231), + [anon_sym_STAR] = ACTIONS(7233), + [anon_sym_SLASH] = ACTIONS(7231), + [anon_sym_PERCENT] = ACTIONS(7233), + [anon_sym_PIPE_PIPE] = ACTIONS(7233), + [anon_sym_AMP_AMP] = ACTIONS(7233), + [anon_sym_PIPE] = ACTIONS(7231), + [anon_sym_CARET] = ACTIONS(7233), + [anon_sym_AMP] = ACTIONS(7231), + [anon_sym_EQ_EQ] = ACTIONS(7233), + [anon_sym_BANG_EQ] = ACTIONS(7233), + [anon_sym_GT] = ACTIONS(7231), + [anon_sym_GT_EQ] = ACTIONS(7233), + [anon_sym_LT_EQ] = ACTIONS(7231), + [anon_sym_LT] = ACTIONS(7231), + [anon_sym_LT_LT] = ACTIONS(7233), + [anon_sym_GT_GT] = ACTIONS(7233), + [anon_sym_SEMI] = ACTIONS(7233), + [anon_sym___extension__] = ACTIONS(7231), + [anon_sym___attribute__] = ACTIONS(7231), + [anon_sym___attribute] = ACTIONS(7231), + [anon_sym_COLON] = ACTIONS(7231), + [anon_sym_COLON_COLON] = ACTIONS(7233), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7233), + [anon_sym_LBRACE] = ACTIONS(7233), + [anon_sym_RBRACE] = ACTIONS(7233), + [anon_sym_LBRACK] = ACTIONS(7233), + [anon_sym_const] = ACTIONS(7231), + [anon_sym_constexpr] = ACTIONS(7231), + [anon_sym_volatile] = ACTIONS(7231), + [anon_sym_restrict] = ACTIONS(7231), + [anon_sym___restrict__] = ACTIONS(7231), + [anon_sym__Atomic] = ACTIONS(7231), + [anon_sym__Noreturn] = ACTIONS(7231), + [anon_sym_noreturn] = ACTIONS(7231), + [anon_sym__Nonnull] = ACTIONS(7231), + [anon_sym_mutable] = ACTIONS(7231), + [anon_sym_constinit] = ACTIONS(7231), + [anon_sym_consteval] = ACTIONS(7231), + [anon_sym_alignas] = ACTIONS(7231), + [anon_sym__Alignas] = ACTIONS(7231), + [anon_sym_QMARK] = ACTIONS(7233), + [anon_sym_LT_EQ_GT] = ACTIONS(7233), + [anon_sym_or] = ACTIONS(7231), + [anon_sym_and] = ACTIONS(7231), + [anon_sym_bitor] = ACTIONS(7231), + [anon_sym_xor] = ACTIONS(7231), + [anon_sym_bitand] = ACTIONS(7231), + [anon_sym_not_eq] = ACTIONS(7231), + [anon_sym_DASH_DASH] = ACTIONS(7233), + [anon_sym_PLUS_PLUS] = ACTIONS(7233), + [anon_sym_DOT] = ACTIONS(7231), + [anon_sym_DOT_STAR] = ACTIONS(7233), + [anon_sym_DASH_GT] = ACTIONS(7233), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7084), - [anon_sym_override] = ACTIONS(7084), - [anon_sym_GT2] = ACTIONS(7081), - [anon_sym_requires] = ACTIONS(7084), + [anon_sym_final] = ACTIONS(7231), + [anon_sym_override] = ACTIONS(7231), + [anon_sym_requires] = ACTIONS(7231), + [anon_sym_COLON_RBRACK] = ACTIONS(7233), }, - [STATE(3680)] = { - [sym_identifier] = ACTIONS(9248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9250), - [anon_sym_COMMA] = ACTIONS(9250), - [anon_sym_RPAREN] = ACTIONS(9250), - [aux_sym_preproc_if_token2] = ACTIONS(9250), - [aux_sym_preproc_else_token1] = ACTIONS(9250), - [aux_sym_preproc_elif_token1] = ACTIONS(9248), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9250), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9250), - [anon_sym_LPAREN2] = ACTIONS(9250), - [anon_sym_DASH] = ACTIONS(9248), - [anon_sym_PLUS] = ACTIONS(9248), - [anon_sym_STAR] = ACTIONS(9248), - [anon_sym_SLASH] = ACTIONS(9248), - [anon_sym_PERCENT] = ACTIONS(9248), - [anon_sym_PIPE_PIPE] = ACTIONS(9250), - [anon_sym_AMP_AMP] = ACTIONS(9250), - [anon_sym_PIPE] = ACTIONS(9248), - [anon_sym_CARET] = ACTIONS(9248), - [anon_sym_AMP] = ACTIONS(9248), - [anon_sym_EQ_EQ] = ACTIONS(9250), - [anon_sym_BANG_EQ] = ACTIONS(9250), - [anon_sym_GT] = ACTIONS(9248), - [anon_sym_GT_EQ] = ACTIONS(9250), - [anon_sym_LT_EQ] = ACTIONS(9248), - [anon_sym_LT] = ACTIONS(9248), - [anon_sym_LT_LT] = ACTIONS(9248), - [anon_sym_GT_GT] = ACTIONS(9248), - [anon_sym_SEMI] = ACTIONS(9250), - [anon_sym___attribute__] = ACTIONS(9248), - [anon_sym___attribute] = ACTIONS(9248), - [anon_sym_COLON] = ACTIONS(9248), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9250), - [anon_sym_LBRACE] = ACTIONS(9250), - [anon_sym_RBRACE] = ACTIONS(9250), - [anon_sym_LBRACK] = ACTIONS(9250), - [anon_sym_EQ] = ACTIONS(9248), - [anon_sym_QMARK] = ACTIONS(9250), - [anon_sym_STAR_EQ] = ACTIONS(9250), - [anon_sym_SLASH_EQ] = ACTIONS(9250), - [anon_sym_PERCENT_EQ] = ACTIONS(9250), - [anon_sym_PLUS_EQ] = ACTIONS(9250), - [anon_sym_DASH_EQ] = ACTIONS(9250), - [anon_sym_LT_LT_EQ] = ACTIONS(9250), - [anon_sym_GT_GT_EQ] = ACTIONS(9250), - [anon_sym_AMP_EQ] = ACTIONS(9250), - [anon_sym_CARET_EQ] = ACTIONS(9250), - [anon_sym_PIPE_EQ] = ACTIONS(9250), - [anon_sym_and_eq] = ACTIONS(9248), - [anon_sym_or_eq] = ACTIONS(9248), - [anon_sym_xor_eq] = ACTIONS(9248), - [anon_sym_LT_EQ_GT] = ACTIONS(9250), - [anon_sym_or] = ACTIONS(9248), - [anon_sym_and] = ACTIONS(9248), - [anon_sym_bitor] = ACTIONS(9248), - [anon_sym_xor] = ACTIONS(9248), - [anon_sym_bitand] = ACTIONS(9248), - [anon_sym_not_eq] = ACTIONS(9248), - [anon_sym_DASH_DASH] = ACTIONS(9250), - [anon_sym_PLUS_PLUS] = ACTIONS(9250), - [anon_sym_DOT] = ACTIONS(9248), - [anon_sym_DOT_STAR] = ACTIONS(9250), - [anon_sym_DASH_GT] = ACTIONS(9250), + [STATE(3172)] = { + [sym_identifier] = ACTIONS(9080), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9082), + [anon_sym_COMMA] = ACTIONS(9082), + [anon_sym_RPAREN] = ACTIONS(9082), + [aux_sym_preproc_if_token2] = ACTIONS(9082), + [aux_sym_preproc_else_token1] = ACTIONS(9082), + [aux_sym_preproc_elif_token1] = ACTIONS(9080), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9082), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9082), + [anon_sym_LPAREN2] = ACTIONS(9082), + [anon_sym_DASH] = ACTIONS(9080), + [anon_sym_PLUS] = ACTIONS(9080), + [anon_sym_STAR] = ACTIONS(9080), + [anon_sym_SLASH] = ACTIONS(9080), + [anon_sym_PERCENT] = ACTIONS(9080), + [anon_sym_PIPE_PIPE] = ACTIONS(9082), + [anon_sym_AMP_AMP] = ACTIONS(9082), + [anon_sym_PIPE] = ACTIONS(9080), + [anon_sym_CARET] = ACTIONS(9080), + [anon_sym_AMP] = ACTIONS(9080), + [anon_sym_EQ_EQ] = ACTIONS(9082), + [anon_sym_BANG_EQ] = ACTIONS(9082), + [anon_sym_GT] = ACTIONS(9080), + [anon_sym_GT_EQ] = ACTIONS(9082), + [anon_sym_LT_EQ] = ACTIONS(9080), + [anon_sym_LT] = ACTIONS(9080), + [anon_sym_LT_LT] = ACTIONS(9080), + [anon_sym_GT_GT] = ACTIONS(9080), + [anon_sym_SEMI] = ACTIONS(9082), + [anon_sym___attribute__] = ACTIONS(9080), + [anon_sym___attribute] = ACTIONS(9080), + [anon_sym_COLON] = ACTIONS(9080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9082), + [anon_sym_LBRACE] = ACTIONS(9082), + [anon_sym_RBRACE] = ACTIONS(9082), + [anon_sym_LBRACK] = ACTIONS(9080), + [anon_sym_RBRACK] = ACTIONS(9082), + [anon_sym_EQ] = ACTIONS(9080), + [anon_sym_QMARK] = ACTIONS(9082), + [anon_sym_STAR_EQ] = ACTIONS(9082), + [anon_sym_SLASH_EQ] = ACTIONS(9082), + [anon_sym_PERCENT_EQ] = ACTIONS(9082), + [anon_sym_PLUS_EQ] = ACTIONS(9082), + [anon_sym_DASH_EQ] = ACTIONS(9082), + [anon_sym_LT_LT_EQ] = ACTIONS(9082), + [anon_sym_GT_GT_EQ] = ACTIONS(9082), + [anon_sym_AMP_EQ] = ACTIONS(9082), + [anon_sym_CARET_EQ] = ACTIONS(9082), + [anon_sym_PIPE_EQ] = ACTIONS(9082), + [anon_sym_and_eq] = ACTIONS(9080), + [anon_sym_or_eq] = ACTIONS(9080), + [anon_sym_xor_eq] = ACTIONS(9080), + [anon_sym_LT_EQ_GT] = ACTIONS(9082), + [anon_sym_or] = ACTIONS(9080), + [anon_sym_and] = ACTIONS(9080), + [anon_sym_bitor] = ACTIONS(9080), + [anon_sym_xor] = ACTIONS(9080), + [anon_sym_bitand] = ACTIONS(9080), + [anon_sym_not_eq] = ACTIONS(9080), + [anon_sym_DASH_DASH] = ACTIONS(9082), + [anon_sym_PLUS_PLUS] = ACTIONS(9082), + [anon_sym_asm] = ACTIONS(9080), + [anon_sym___asm__] = ACTIONS(9080), + [anon_sym___asm] = ACTIONS(9080), + [anon_sym_DOT] = ACTIONS(9080), + [anon_sym_DOT_STAR] = ACTIONS(9082), + [anon_sym_DASH_GT] = ACTIONS(9082), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9080), + [anon_sym_COLON_RBRACK] = ACTIONS(9082), + }, + [STATE(3173)] = { + [sym_template_argument_list] = STATE(3735), + [aux_sym_sized_type_specifier_repeat1] = STATE(3552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7359), + [anon_sym_COMMA] = ACTIONS(7359), + [anon_sym_RPAREN] = ACTIONS(7359), + [anon_sym_LPAREN2] = ACTIONS(7359), + [anon_sym_DASH] = ACTIONS(7357), + [anon_sym_PLUS] = ACTIONS(7357), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7357), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7359), + [anon_sym_AMP_AMP] = ACTIONS(7359), + [anon_sym_PIPE] = ACTIONS(7357), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7357), + [anon_sym_EQ_EQ] = ACTIONS(7359), + [anon_sym_BANG_EQ] = ACTIONS(7359), + [anon_sym_GT] = ACTIONS(7357), + [anon_sym_GT_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ] = ACTIONS(7357), + [anon_sym_LT] = ACTIONS(7357), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym_SEMI] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7357), + [anon_sym_COLON] = ACTIONS(7357), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7359), + [anon_sym_LBRACE] = ACTIONS(7359), + [anon_sym_RBRACE] = ACTIONS(7359), + [anon_sym_signed] = ACTIONS(6867), + [anon_sym_unsigned] = ACTIONS(6867), + [anon_sym_long] = ACTIONS(6867), + [anon_sym_short] = ACTIONS(6867), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7357), + [anon_sym_constexpr] = ACTIONS(7359), + [anon_sym_volatile] = ACTIONS(7359), + [anon_sym_restrict] = ACTIONS(7359), + [anon_sym___restrict__] = ACTIONS(7359), + [anon_sym__Atomic] = ACTIONS(7359), + [anon_sym__Noreturn] = ACTIONS(7359), + [anon_sym_noreturn] = ACTIONS(7359), + [anon_sym__Nonnull] = ACTIONS(7359), + [anon_sym_mutable] = ACTIONS(7359), + [anon_sym_constinit] = ACTIONS(7359), + [anon_sym_consteval] = ACTIONS(7359), + [anon_sym_alignas] = ACTIONS(7359), + [anon_sym__Alignas] = ACTIONS(7359), + [anon_sym_QMARK] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7359), + [anon_sym_or] = ACTIONS(7359), + [anon_sym_and] = ACTIONS(7359), + [anon_sym_bitor] = ACTIONS(7359), + [anon_sym_xor] = ACTIONS(7359), + [anon_sym_bitand] = ACTIONS(7359), + [anon_sym_not_eq] = ACTIONS(7359), + [anon_sym_DASH_DASH] = ACTIONS(7359), + [anon_sym_PLUS_PLUS] = ACTIONS(7359), + [anon_sym_DOT] = ACTIONS(7357), + [anon_sym_DOT_STAR] = ACTIONS(7359), + [anon_sym_DASH_GT] = ACTIONS(7359), [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9250), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_COLON_RBRACK] = ACTIONS(7359), }, - [STATE(3681)] = { - [sym_identifier] = ACTIONS(6844), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6846), - [anon_sym_COMMA] = ACTIONS(6846), - [anon_sym_RPAREN] = ACTIONS(6846), - [anon_sym_LPAREN2] = ACTIONS(6846), - [anon_sym_STAR] = ACTIONS(6846), - [anon_sym_PIPE_PIPE] = ACTIONS(6846), - [anon_sym_AMP_AMP] = ACTIONS(6846), - [anon_sym_AMP] = ACTIONS(6844), - [anon_sym_LT] = ACTIONS(6846), - [anon_sym_SEMI] = ACTIONS(6846), - [anon_sym___extension__] = ACTIONS(6844), - [anon_sym_virtual] = ACTIONS(6844), - [anon_sym_extern] = ACTIONS(6844), - [anon_sym___attribute__] = ACTIONS(6844), - [anon_sym___attribute] = ACTIONS(6844), - [anon_sym_COLON] = ACTIONS(6844), - [anon_sym_COLON_COLON] = ACTIONS(6846), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6846), - [anon_sym___declspec] = ACTIONS(6844), - [anon_sym___based] = ACTIONS(6844), - [anon_sym_LBRACE] = ACTIONS(6846), - [anon_sym_signed] = ACTIONS(6844), - [anon_sym_unsigned] = ACTIONS(6844), - [anon_sym_long] = ACTIONS(6844), - [anon_sym_short] = ACTIONS(6844), - [anon_sym_LBRACK] = ACTIONS(6844), - [anon_sym_static] = ACTIONS(6844), - [anon_sym_EQ] = ACTIONS(6846), - [anon_sym_register] = ACTIONS(6844), - [anon_sym_inline] = ACTIONS(6844), - [anon_sym___inline] = ACTIONS(6844), - [anon_sym___inline__] = ACTIONS(6844), - [anon_sym___forceinline] = ACTIONS(6844), - [anon_sym_thread_local] = ACTIONS(6844), - [anon_sym___thread] = ACTIONS(6844), - [anon_sym_const] = ACTIONS(6844), - [anon_sym_constexpr] = ACTIONS(6844), - [anon_sym_volatile] = ACTIONS(6844), - [anon_sym_restrict] = ACTIONS(6844), - [anon_sym___restrict__] = ACTIONS(6844), - [anon_sym__Atomic] = ACTIONS(6844), - [anon_sym__Noreturn] = ACTIONS(6844), - [anon_sym_noreturn] = ACTIONS(6844), - [anon_sym__Nonnull] = ACTIONS(6844), - [anon_sym_mutable] = ACTIONS(6844), - [anon_sym_constinit] = ACTIONS(6844), - [anon_sym_consteval] = ACTIONS(6844), - [anon_sym_alignas] = ACTIONS(6844), - [anon_sym__Alignas] = ACTIONS(6844), - [sym_primitive_type] = ACTIONS(6844), - [anon_sym_or] = ACTIONS(6844), - [anon_sym_and] = ACTIONS(6844), - [anon_sym_asm] = ACTIONS(6844), - [anon_sym___asm__] = ACTIONS(6844), - [anon_sym___asm] = ACTIONS(6844), - [anon_sym_DASH_GT] = ACTIONS(6846), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6844), - [anon_sym_override] = ACTIONS(6844), - [anon_sym_GT2] = ACTIONS(6846), - [anon_sym_try] = ACTIONS(6844), - [anon_sym_noexcept] = ACTIONS(6844), - [anon_sym_throw] = ACTIONS(6844), - [anon_sym_requires] = ACTIONS(6844), + [STATE(3174)] = { + [sym_attribute_specifier] = STATE(3784), + [sym_attribute_declaration] = STATE(6395), + [sym_type_qualifier] = STATE(3736), + [sym_alignas_qualifier] = STATE(4026), + [aux_sym_type_definition_repeat1] = STATE(3784), + [aux_sym__type_definition_type_repeat1] = STATE(3736), + [aux_sym_attributed_declarator_repeat1] = STATE(6395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), + [anon_sym_COMMA] = ACTIONS(6754), + [anon_sym_LPAREN2] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6752), + [anon_sym_STAR] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6752), + [anon_sym_PERCENT] = ACTIONS(6754), + [anon_sym_PIPE_PIPE] = ACTIONS(6754), + [anon_sym_AMP_AMP] = ACTIONS(6754), + [anon_sym_PIPE] = ACTIONS(6752), + [anon_sym_CARET] = ACTIONS(6754), + [anon_sym_AMP] = ACTIONS(6752), + [anon_sym_EQ_EQ] = ACTIONS(6754), + [anon_sym_BANG_EQ] = ACTIONS(6754), + [anon_sym_GT] = ACTIONS(6752), + [anon_sym_GT_EQ] = ACTIONS(6754), + [anon_sym_LT_EQ] = ACTIONS(6752), + [anon_sym_LT] = ACTIONS(6752), + [anon_sym_LT_LT] = ACTIONS(6754), + [anon_sym_GT_GT] = ACTIONS(6754), + [anon_sym___extension__] = ACTIONS(7882), + [anon_sym___attribute__] = ACTIONS(6754), + [anon_sym___attribute] = ACTIONS(6752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), + [anon_sym_LBRACK] = ACTIONS(6752), + [anon_sym_RBRACK] = ACTIONS(6754), + [anon_sym_const] = ACTIONS(7890), + [anon_sym_constexpr] = ACTIONS(7882), + [anon_sym_volatile] = ACTIONS(7882), + [anon_sym_restrict] = ACTIONS(7882), + [anon_sym___restrict__] = ACTIONS(7882), + [anon_sym__Atomic] = ACTIONS(7882), + [anon_sym__Noreturn] = ACTIONS(7882), + [anon_sym_noreturn] = ACTIONS(7882), + [anon_sym__Nonnull] = ACTIONS(7882), + [anon_sym_mutable] = ACTIONS(7882), + [anon_sym_constinit] = ACTIONS(7882), + [anon_sym_consteval] = ACTIONS(7882), + [anon_sym_alignas] = ACTIONS(7892), + [anon_sym__Alignas] = ACTIONS(7892), + [anon_sym_QMARK] = ACTIONS(6754), + [anon_sym_LT_EQ_GT] = ACTIONS(6754), + [anon_sym_or] = ACTIONS(6754), + [anon_sym_and] = ACTIONS(6754), + [anon_sym_bitor] = ACTIONS(6754), + [anon_sym_xor] = ACTIONS(6754), + [anon_sym_bitand] = ACTIONS(6754), + [anon_sym_not_eq] = ACTIONS(6754), + [anon_sym_DASH_DASH] = ACTIONS(6754), + [anon_sym_PLUS_PLUS] = ACTIONS(6754), + [anon_sym_asm] = ACTIONS(6754), + [anon_sym___asm__] = ACTIONS(6754), + [anon_sym___asm] = ACTIONS(6752), + [anon_sym_DOT] = ACTIONS(6752), + [anon_sym_DOT_STAR] = ACTIONS(6754), + [anon_sym_DASH_GT] = ACTIONS(6754), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6754), + [anon_sym_override] = ACTIONS(6754), + [anon_sym_noexcept] = ACTIONS(6754), + [anon_sym_throw] = ACTIONS(6754), + [anon_sym_requires] = ACTIONS(6754), }, - [STATE(3682)] = { - [sym_identifier] = ACTIONS(6746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), - [anon_sym_COMMA] = ACTIONS(6751), - [anon_sym_RPAREN] = ACTIONS(6751), - [anon_sym_LPAREN2] = ACTIONS(6751), - [anon_sym_TILDE] = ACTIONS(6751), - [anon_sym_STAR] = ACTIONS(6751), - [anon_sym_PIPE_PIPE] = ACTIONS(6751), - [anon_sym_AMP_AMP] = ACTIONS(6751), - [anon_sym_AMP] = ACTIONS(6746), - [anon_sym_SEMI] = ACTIONS(6751), - [anon_sym___extension__] = ACTIONS(6746), - [anon_sym_virtual] = ACTIONS(6746), - [anon_sym_extern] = ACTIONS(6746), - [anon_sym___attribute__] = ACTIONS(6746), - [anon_sym___attribute] = ACTIONS(6746), - [anon_sym_COLON] = ACTIONS(6746), - [anon_sym_COLON_COLON] = ACTIONS(6751), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6751), - [anon_sym___declspec] = ACTIONS(6746), - [anon_sym___based] = ACTIONS(6746), - [anon_sym___cdecl] = ACTIONS(6746), - [anon_sym___clrcall] = ACTIONS(6746), - [anon_sym___stdcall] = ACTIONS(6746), - [anon_sym___fastcall] = ACTIONS(6746), - [anon_sym___thiscall] = ACTIONS(6746), - [anon_sym___vectorcall] = ACTIONS(6746), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_LBRACK] = ACTIONS(6746), - [anon_sym_static] = ACTIONS(6746), - [anon_sym_EQ] = ACTIONS(6751), - [anon_sym_register] = ACTIONS(6746), - [anon_sym_inline] = ACTIONS(6746), - [anon_sym___inline] = ACTIONS(6746), - [anon_sym___inline__] = ACTIONS(6746), - [anon_sym___forceinline] = ACTIONS(6746), - [anon_sym_thread_local] = ACTIONS(6746), - [anon_sym___thread] = ACTIONS(6746), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6746), - [anon_sym_volatile] = ACTIONS(6746), - [anon_sym_restrict] = ACTIONS(6746), - [anon_sym___restrict__] = ACTIONS(6746), - [anon_sym__Atomic] = ACTIONS(6746), - [anon_sym__Noreturn] = ACTIONS(6746), - [anon_sym_noreturn] = ACTIONS(6746), - [anon_sym__Nonnull] = ACTIONS(6746), - [anon_sym_mutable] = ACTIONS(6746), - [anon_sym_constinit] = ACTIONS(6746), - [anon_sym_consteval] = ACTIONS(6746), - [anon_sym_alignas] = ACTIONS(6746), - [anon_sym__Alignas] = ACTIONS(6746), - [anon_sym_or] = ACTIONS(6746), - [anon_sym_and] = ACTIONS(6746), - [anon_sym_DASH_GT] = ACTIONS(6751), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(6746), - [anon_sym_final] = ACTIONS(6746), - [anon_sym_override] = ACTIONS(6746), - [anon_sym_template] = ACTIONS(6746), - [anon_sym_GT2] = ACTIONS(6751), - [anon_sym_operator] = ACTIONS(6746), - [anon_sym_noexcept] = ACTIONS(6746), - [anon_sym_throw] = ACTIONS(6746), - [anon_sym_LBRACK_COLON] = ACTIONS(6751), + [STATE(3175)] = { + [sym_identifier] = ACTIONS(7667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7669), + [anon_sym_COMMA] = ACTIONS(7669), + [anon_sym_RPAREN] = ACTIONS(7669), + [anon_sym_LPAREN2] = ACTIONS(7669), + [anon_sym_DASH] = ACTIONS(7667), + [anon_sym_PLUS] = ACTIONS(7667), + [anon_sym_STAR] = ACTIONS(7669), + [anon_sym_SLASH] = ACTIONS(7667), + [anon_sym_PERCENT] = ACTIONS(7669), + [anon_sym_PIPE_PIPE] = ACTIONS(7669), + [anon_sym_AMP_AMP] = ACTIONS(7669), + [anon_sym_PIPE] = ACTIONS(7667), + [anon_sym_CARET] = ACTIONS(7669), + [anon_sym_AMP] = ACTIONS(7667), + [anon_sym_EQ_EQ] = ACTIONS(7669), + [anon_sym_BANG_EQ] = ACTIONS(7669), + [anon_sym_GT] = ACTIONS(7667), + [anon_sym_GT_EQ] = ACTIONS(7669), + [anon_sym_LT_EQ] = ACTIONS(7667), + [anon_sym_LT] = ACTIONS(7667), + [anon_sym_LT_LT] = ACTIONS(7669), + [anon_sym_GT_GT] = ACTIONS(7669), + [anon_sym_SEMI] = ACTIONS(7669), + [anon_sym___extension__] = ACTIONS(7667), + [anon_sym___attribute__] = ACTIONS(7667), + [anon_sym___attribute] = ACTIONS(7667), + [anon_sym_COLON] = ACTIONS(7667), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7669), + [anon_sym___based] = ACTIONS(7667), + [anon_sym_LBRACE] = ACTIONS(7669), + [anon_sym_RBRACE] = ACTIONS(7669), + [anon_sym_signed] = ACTIONS(7667), + [anon_sym_unsigned] = ACTIONS(7667), + [anon_sym_long] = ACTIONS(7667), + [anon_sym_short] = ACTIONS(7667), + [anon_sym_LBRACK] = ACTIONS(7669), + [anon_sym_const] = ACTIONS(7667), + [anon_sym_constexpr] = ACTIONS(7667), + [anon_sym_volatile] = ACTIONS(7667), + [anon_sym_restrict] = ACTIONS(7667), + [anon_sym___restrict__] = ACTIONS(7667), + [anon_sym__Atomic] = ACTIONS(7667), + [anon_sym__Noreturn] = ACTIONS(7667), + [anon_sym_noreturn] = ACTIONS(7667), + [anon_sym__Nonnull] = ACTIONS(7667), + [anon_sym_mutable] = ACTIONS(7667), + [anon_sym_constinit] = ACTIONS(7667), + [anon_sym_consteval] = ACTIONS(7667), + [anon_sym_alignas] = ACTIONS(7667), + [anon_sym__Alignas] = ACTIONS(7667), + [sym_primitive_type] = ACTIONS(7667), + [anon_sym_QMARK] = ACTIONS(7669), + [anon_sym_LT_EQ_GT] = ACTIONS(7669), + [anon_sym_or] = ACTIONS(7667), + [anon_sym_and] = ACTIONS(7667), + [anon_sym_bitor] = ACTIONS(7667), + [anon_sym_xor] = ACTIONS(7667), + [anon_sym_bitand] = ACTIONS(7667), + [anon_sym_not_eq] = ACTIONS(7667), + [anon_sym_DASH_DASH] = ACTIONS(7669), + [anon_sym_PLUS_PLUS] = ACTIONS(7669), + [anon_sym_DOT] = ACTIONS(7667), + [anon_sym_DOT_STAR] = ACTIONS(7669), + [anon_sym_DASH_GT] = ACTIONS(7669), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7667), + [anon_sym_override] = ACTIONS(7667), + [anon_sym_requires] = ACTIONS(7667), + [anon_sym_COLON_RBRACK] = ACTIONS(7669), }, - [STATE(3683)] = { - [sym_type_qualifier] = STATE(3690), - [sym_alignas_qualifier] = STATE(3785), - [aux_sym__type_definition_type_repeat1] = STATE(3690), - [aux_sym_sized_type_specifier_repeat1] = STATE(3988), - [sym_identifier] = ACTIONS(8790), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), - [anon_sym_COMMA] = ACTIONS(6812), - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_STAR] = ACTIONS(6812), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_PERCENT] = ACTIONS(6812), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_CARET] = ACTIONS(6812), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6814), - [anon_sym_LT_EQ] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_LT_LT] = ACTIONS(6812), - [anon_sym_GT_GT] = ACTIONS(6814), - [anon_sym___extension__] = ACTIONS(8242), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_signed] = ACTIONS(9274), - [anon_sym_unsigned] = ACTIONS(9274), - [anon_sym_long] = ACTIONS(9274), - [anon_sym_short] = ACTIONS(9274), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_const] = ACTIONS(8242), - [anon_sym_constexpr] = ACTIONS(8242), - [anon_sym_volatile] = ACTIONS(8242), - [anon_sym_restrict] = ACTIONS(8242), - [anon_sym___restrict__] = ACTIONS(8242), - [anon_sym__Atomic] = ACTIONS(8242), - [anon_sym__Noreturn] = ACTIONS(8242), - [anon_sym_noreturn] = ACTIONS(8242), - [anon_sym__Nonnull] = ACTIONS(8242), - [anon_sym_mutable] = ACTIONS(8242), - [anon_sym_constinit] = ACTIONS(8242), - [anon_sym_consteval] = ACTIONS(8242), - [anon_sym_alignas] = ACTIONS(9276), - [anon_sym__Alignas] = ACTIONS(9276), - [sym_primitive_type] = ACTIONS(8800), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_LT_EQ_GT] = ACTIONS(6812), - [anon_sym_or] = ACTIONS(6814), - [anon_sym_and] = ACTIONS(6814), - [anon_sym_bitor] = ACTIONS(6814), - [anon_sym_xor] = ACTIONS(6814), - [anon_sym_bitand] = ACTIONS(6814), - [anon_sym_not_eq] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6814), - [anon_sym_DOT_STAR] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6812), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(6812), + [STATE(3176)] = { + [sym_decltype_auto] = STATE(3205), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7457), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_RBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8639), + [anon_sym_decltype] = ACTIONS(7073), }, - [STATE(3684)] = { - [sym_identifier] = ACTIONS(9278), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9280), - [anon_sym_COMMA] = ACTIONS(9280), - [anon_sym_RPAREN] = ACTIONS(9280), - [aux_sym_preproc_if_token2] = ACTIONS(9280), - [aux_sym_preproc_else_token1] = ACTIONS(9280), - [aux_sym_preproc_elif_token1] = ACTIONS(9278), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9280), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9280), - [anon_sym_LPAREN2] = ACTIONS(9280), - [anon_sym_DASH] = ACTIONS(9278), - [anon_sym_PLUS] = ACTIONS(9278), - [anon_sym_STAR] = ACTIONS(9278), - [anon_sym_SLASH] = ACTIONS(9278), - [anon_sym_PERCENT] = ACTIONS(9278), - [anon_sym_PIPE_PIPE] = ACTIONS(9280), - [anon_sym_AMP_AMP] = ACTIONS(9280), - [anon_sym_PIPE] = ACTIONS(9278), - [anon_sym_CARET] = ACTIONS(9278), - [anon_sym_AMP] = ACTIONS(9278), - [anon_sym_EQ_EQ] = ACTIONS(9280), - [anon_sym_BANG_EQ] = ACTIONS(9280), - [anon_sym_GT] = ACTIONS(9278), - [anon_sym_GT_EQ] = ACTIONS(9280), - [anon_sym_LT_EQ] = ACTIONS(9278), - [anon_sym_LT] = ACTIONS(9278), - [anon_sym_LT_LT] = ACTIONS(9278), - [anon_sym_GT_GT] = ACTIONS(9278), - [anon_sym_SEMI] = ACTIONS(9280), - [anon_sym___attribute__] = ACTIONS(9278), - [anon_sym___attribute] = ACTIONS(9278), - [anon_sym_COLON] = ACTIONS(9278), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9280), - [anon_sym_LBRACE] = ACTIONS(9280), - [anon_sym_RBRACE] = ACTIONS(9280), - [anon_sym_LBRACK] = ACTIONS(9280), - [anon_sym_EQ] = ACTIONS(9278), - [anon_sym_QMARK] = ACTIONS(9280), - [anon_sym_STAR_EQ] = ACTIONS(9280), - [anon_sym_SLASH_EQ] = ACTIONS(9280), - [anon_sym_PERCENT_EQ] = ACTIONS(9280), - [anon_sym_PLUS_EQ] = ACTIONS(9280), - [anon_sym_DASH_EQ] = ACTIONS(9280), - [anon_sym_LT_LT_EQ] = ACTIONS(9280), - [anon_sym_GT_GT_EQ] = ACTIONS(9280), - [anon_sym_AMP_EQ] = ACTIONS(9280), - [anon_sym_CARET_EQ] = ACTIONS(9280), - [anon_sym_PIPE_EQ] = ACTIONS(9280), - [anon_sym_and_eq] = ACTIONS(9278), - [anon_sym_or_eq] = ACTIONS(9278), - [anon_sym_xor_eq] = ACTIONS(9278), - [anon_sym_LT_EQ_GT] = ACTIONS(9280), - [anon_sym_or] = ACTIONS(9278), - [anon_sym_and] = ACTIONS(9278), - [anon_sym_bitor] = ACTIONS(9278), - [anon_sym_xor] = ACTIONS(9278), - [anon_sym_bitand] = ACTIONS(9278), - [anon_sym_not_eq] = ACTIONS(9278), - [anon_sym_DASH_DASH] = ACTIONS(9280), - [anon_sym_PLUS_PLUS] = ACTIONS(9280), - [anon_sym_DOT] = ACTIONS(9278), - [anon_sym_DOT_STAR] = ACTIONS(9280), - [anon_sym_DASH_GT] = ACTIONS(9280), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9280), + [STATE(3177)] = { + [sym_template_argument_list] = STATE(2613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7087), + [anon_sym_COMMA] = ACTIONS(7087), + [anon_sym_RPAREN] = ACTIONS(7087), + [anon_sym_LPAREN2] = ACTIONS(7087), + [anon_sym_DASH] = ACTIONS(7094), + [anon_sym_PLUS] = ACTIONS(7094), + [anon_sym_STAR] = ACTIONS(7094), + [anon_sym_SLASH] = ACTIONS(7094), + [anon_sym_PERCENT] = ACTIONS(7094), + [anon_sym_PIPE_PIPE] = ACTIONS(7087), + [anon_sym_AMP_AMP] = ACTIONS(7087), + [anon_sym_PIPE] = ACTIONS(7094), + [anon_sym_CARET] = ACTIONS(7094), + [anon_sym_AMP] = ACTIONS(7094), + [anon_sym_EQ_EQ] = ACTIONS(7087), + [anon_sym_BANG_EQ] = ACTIONS(7087), + [anon_sym_GT] = ACTIONS(7094), + [anon_sym_GT_EQ] = ACTIONS(7087), + [anon_sym_LT_EQ] = ACTIONS(7094), + [anon_sym_LT] = ACTIONS(7964), + [anon_sym_LT_LT] = ACTIONS(7094), + [anon_sym_GT_GT] = ACTIONS(7094), + [anon_sym___extension__] = ACTIONS(7090), + [anon_sym_COLON_COLON] = ACTIONS(7087), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_LBRACK] = ACTIONS(7087), + [anon_sym_EQ] = ACTIONS(7094), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7090), + [anon_sym_volatile] = ACTIONS(7090), + [anon_sym_restrict] = ACTIONS(7090), + [anon_sym___restrict__] = ACTIONS(7090), + [anon_sym__Atomic] = ACTIONS(7090), + [anon_sym__Noreturn] = ACTIONS(7090), + [anon_sym_noreturn] = ACTIONS(7090), + [anon_sym__Nonnull] = ACTIONS(7090), + [anon_sym_mutable] = ACTIONS(7090), + [anon_sym_constinit] = ACTIONS(7090), + [anon_sym_consteval] = ACTIONS(7090), + [anon_sym_alignas] = ACTIONS(7090), + [anon_sym__Alignas] = ACTIONS(7090), + [anon_sym_QMARK] = ACTIONS(7087), + [anon_sym_STAR_EQ] = ACTIONS(7087), + [anon_sym_SLASH_EQ] = ACTIONS(7087), + [anon_sym_PERCENT_EQ] = ACTIONS(7087), + [anon_sym_PLUS_EQ] = ACTIONS(7087), + [anon_sym_DASH_EQ] = ACTIONS(7087), + [anon_sym_LT_LT_EQ] = ACTIONS(7087), + [anon_sym_GT_GT_EQ] = ACTIONS(7087), + [anon_sym_AMP_EQ] = ACTIONS(7087), + [anon_sym_CARET_EQ] = ACTIONS(7087), + [anon_sym_PIPE_EQ] = ACTIONS(7087), + [anon_sym_and_eq] = ACTIONS(7087), + [anon_sym_or_eq] = ACTIONS(7087), + [anon_sym_xor_eq] = ACTIONS(7087), + [anon_sym_LT_EQ_GT] = ACTIONS(7087), + [anon_sym_or] = ACTIONS(7094), + [anon_sym_and] = ACTIONS(7094), + [anon_sym_bitor] = ACTIONS(7087), + [anon_sym_xor] = ACTIONS(7094), + [anon_sym_bitand] = ACTIONS(7087), + [anon_sym_not_eq] = ACTIONS(7087), + [anon_sym_DASH_DASH] = ACTIONS(7087), + [anon_sym_PLUS_PLUS] = ACTIONS(7087), + [anon_sym_DOT] = ACTIONS(7094), + [anon_sym_DOT_STAR] = ACTIONS(7087), + [anon_sym_DASH_GT] = ACTIONS(7094), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7087), }, - [STATE(3685)] = { - [sym_argument_list] = STATE(3786), - [sym_subscript_argument_list] = STATE(3784), - [sym_identifier] = ACTIONS(9282), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9284), - [anon_sym_COMMA] = ACTIONS(9284), - [anon_sym_RPAREN] = ACTIONS(9284), - [aux_sym_preproc_if_token2] = ACTIONS(9284), - [aux_sym_preproc_else_token1] = ACTIONS(9284), - [aux_sym_preproc_elif_token1] = ACTIONS(9282), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9284), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9284), - [anon_sym_LPAREN2] = ACTIONS(8808), - [anon_sym_DASH] = ACTIONS(9282), - [anon_sym_PLUS] = ACTIONS(9282), - [anon_sym_STAR] = ACTIONS(9282), - [anon_sym_SLASH] = ACTIONS(9282), - [anon_sym_PERCENT] = ACTIONS(9282), - [anon_sym_PIPE_PIPE] = ACTIONS(9284), - [anon_sym_AMP_AMP] = ACTIONS(9284), - [anon_sym_PIPE] = ACTIONS(9282), - [anon_sym_CARET] = ACTIONS(9282), - [anon_sym_AMP] = ACTIONS(9282), - [anon_sym_EQ_EQ] = ACTIONS(9284), - [anon_sym_BANG_EQ] = ACTIONS(9284), - [anon_sym_GT] = ACTIONS(9282), - [anon_sym_GT_EQ] = ACTIONS(9284), - [anon_sym_LT_EQ] = ACTIONS(9282), - [anon_sym_LT] = ACTIONS(9282), - [anon_sym_LT_LT] = ACTIONS(9282), - [anon_sym_GT_GT] = ACTIONS(9282), - [anon_sym_SEMI] = ACTIONS(9284), - [anon_sym___attribute__] = ACTIONS(9282), - [anon_sym___attribute] = ACTIONS(9282), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9284), - [anon_sym_RBRACE] = ACTIONS(9284), - [anon_sym_LBRACK] = ACTIONS(9236), - [anon_sym_EQ] = ACTIONS(9282), - [anon_sym_QMARK] = ACTIONS(9284), - [anon_sym_STAR_EQ] = ACTIONS(9284), - [anon_sym_SLASH_EQ] = ACTIONS(9284), - [anon_sym_PERCENT_EQ] = ACTIONS(9284), - [anon_sym_PLUS_EQ] = ACTIONS(9284), - [anon_sym_DASH_EQ] = ACTIONS(9284), - [anon_sym_LT_LT_EQ] = ACTIONS(9284), - [anon_sym_GT_GT_EQ] = ACTIONS(9284), - [anon_sym_AMP_EQ] = ACTIONS(9284), - [anon_sym_CARET_EQ] = ACTIONS(9284), - [anon_sym_PIPE_EQ] = ACTIONS(9284), - [anon_sym_and_eq] = ACTIONS(9282), - [anon_sym_or_eq] = ACTIONS(9282), - [anon_sym_xor_eq] = ACTIONS(9282), - [anon_sym_LT_EQ_GT] = ACTIONS(9284), - [anon_sym_or] = ACTIONS(9282), - [anon_sym_and] = ACTIONS(9282), - [anon_sym_bitor] = ACTIONS(9282), - [anon_sym_xor] = ACTIONS(9282), - [anon_sym_bitand] = ACTIONS(9282), - [anon_sym_not_eq] = ACTIONS(9282), - [anon_sym_DASH_DASH] = ACTIONS(9238), - [anon_sym_PLUS_PLUS] = ACTIONS(9238), - [anon_sym_DOT] = ACTIONS(9240), - [anon_sym_DOT_STAR] = ACTIONS(9242), - [anon_sym_DASH_GT] = ACTIONS(9242), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9284), + [STATE(3178)] = { + [sym_identifier] = ACTIONS(7561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), + [anon_sym_COMMA] = ACTIONS(7563), + [anon_sym_RPAREN] = ACTIONS(7563), + [anon_sym_LPAREN2] = ACTIONS(7563), + [anon_sym_DASH] = ACTIONS(7561), + [anon_sym_PLUS] = ACTIONS(7561), + [anon_sym_STAR] = ACTIONS(7563), + [anon_sym_SLASH] = ACTIONS(7561), + [anon_sym_PERCENT] = ACTIONS(7563), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_AMP_AMP] = ACTIONS(7563), + [anon_sym_PIPE] = ACTIONS(7561), + [anon_sym_CARET] = ACTIONS(7563), + [anon_sym_AMP] = ACTIONS(7561), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_GT] = ACTIONS(7561), + [anon_sym_GT_EQ] = ACTIONS(7563), + [anon_sym_LT_EQ] = ACTIONS(7561), + [anon_sym_LT] = ACTIONS(7561), + [anon_sym_LT_LT] = ACTIONS(7563), + [anon_sym_GT_GT] = ACTIONS(7563), + [anon_sym_SEMI] = ACTIONS(7563), + [anon_sym___extension__] = ACTIONS(7561), + [anon_sym___attribute__] = ACTIONS(7561), + [anon_sym___attribute] = ACTIONS(7561), + [anon_sym_COLON] = ACTIONS(7561), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7563), + [anon_sym___based] = ACTIONS(7561), + [anon_sym_LBRACE] = ACTIONS(7563), + [anon_sym_RBRACE] = ACTIONS(7563), + [anon_sym_signed] = ACTIONS(7561), + [anon_sym_unsigned] = ACTIONS(7561), + [anon_sym_long] = ACTIONS(7561), + [anon_sym_short] = ACTIONS(7561), + [anon_sym_LBRACK] = ACTIONS(7563), + [anon_sym_const] = ACTIONS(7561), + [anon_sym_constexpr] = ACTIONS(7561), + [anon_sym_volatile] = ACTIONS(7561), + [anon_sym_restrict] = ACTIONS(7561), + [anon_sym___restrict__] = ACTIONS(7561), + [anon_sym__Atomic] = ACTIONS(7561), + [anon_sym__Noreturn] = ACTIONS(7561), + [anon_sym_noreturn] = ACTIONS(7561), + [anon_sym__Nonnull] = ACTIONS(7561), + [anon_sym_mutable] = ACTIONS(7561), + [anon_sym_constinit] = ACTIONS(7561), + [anon_sym_consteval] = ACTIONS(7561), + [anon_sym_alignas] = ACTIONS(7561), + [anon_sym__Alignas] = ACTIONS(7561), + [sym_primitive_type] = ACTIONS(7561), + [anon_sym_QMARK] = ACTIONS(7563), + [anon_sym_LT_EQ_GT] = ACTIONS(7563), + [anon_sym_or] = ACTIONS(7561), + [anon_sym_and] = ACTIONS(7561), + [anon_sym_bitor] = ACTIONS(7561), + [anon_sym_xor] = ACTIONS(7561), + [anon_sym_bitand] = ACTIONS(7561), + [anon_sym_not_eq] = ACTIONS(7561), + [anon_sym_DASH_DASH] = ACTIONS(7563), + [anon_sym_PLUS_PLUS] = ACTIONS(7563), + [anon_sym_DOT] = ACTIONS(7561), + [anon_sym_DOT_STAR] = ACTIONS(7563), + [anon_sym_DASH_GT] = ACTIONS(7563), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7561), + [anon_sym_override] = ACTIONS(7561), + [anon_sym_requires] = ACTIONS(7561), + [anon_sym_COLON_RBRACK] = ACTIONS(7563), }, - [STATE(3686)] = { - [sym_template_argument_list] = STATE(2096), - [sym_identifier] = ACTIONS(9225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9227), - [anon_sym_COMMA] = ACTIONS(9227), - [anon_sym_RPAREN] = ACTIONS(9227), - [aux_sym_preproc_if_token2] = ACTIONS(9227), - [aux_sym_preproc_else_token1] = ACTIONS(9227), - [aux_sym_preproc_elif_token1] = ACTIONS(9225), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9227), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9227), - [anon_sym_LPAREN2] = ACTIONS(9227), - [anon_sym_DASH] = ACTIONS(9225), - [anon_sym_PLUS] = ACTIONS(9225), - [anon_sym_STAR] = ACTIONS(9225), - [anon_sym_SLASH] = ACTIONS(9225), - [anon_sym_PERCENT] = ACTIONS(9225), - [anon_sym_PIPE_PIPE] = ACTIONS(9227), - [anon_sym_AMP_AMP] = ACTIONS(9227), - [anon_sym_PIPE] = ACTIONS(9225), - [anon_sym_CARET] = ACTIONS(9225), - [anon_sym_AMP] = ACTIONS(9225), - [anon_sym_EQ_EQ] = ACTIONS(9227), - [anon_sym_BANG_EQ] = ACTIONS(9227), - [anon_sym_GT] = ACTIONS(9225), - [anon_sym_GT_EQ] = ACTIONS(9227), - [anon_sym_LT_EQ] = ACTIONS(9225), - [anon_sym_LT] = ACTIONS(9229), - [anon_sym_LT_LT] = ACTIONS(9225), - [anon_sym_GT_GT] = ACTIONS(9225), - [anon_sym_SEMI] = ACTIONS(9227), - [anon_sym___attribute__] = ACTIONS(9225), - [anon_sym___attribute] = ACTIONS(9225), - [anon_sym_COLON] = ACTIONS(9225), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9227), - [anon_sym_RBRACE] = ACTIONS(9227), - [anon_sym_LBRACK] = ACTIONS(9227), - [anon_sym_EQ] = ACTIONS(9225), - [anon_sym_QMARK] = ACTIONS(9227), - [anon_sym_STAR_EQ] = ACTIONS(9227), - [anon_sym_SLASH_EQ] = ACTIONS(9227), - [anon_sym_PERCENT_EQ] = ACTIONS(9227), - [anon_sym_PLUS_EQ] = ACTIONS(9227), - [anon_sym_DASH_EQ] = ACTIONS(9227), - [anon_sym_LT_LT_EQ] = ACTIONS(9227), - [anon_sym_GT_GT_EQ] = ACTIONS(9227), - [anon_sym_AMP_EQ] = ACTIONS(9227), - [anon_sym_CARET_EQ] = ACTIONS(9227), - [anon_sym_PIPE_EQ] = ACTIONS(9227), - [anon_sym_and_eq] = ACTIONS(9225), - [anon_sym_or_eq] = ACTIONS(9225), - [anon_sym_xor_eq] = ACTIONS(9225), - [anon_sym_LT_EQ_GT] = ACTIONS(9227), - [anon_sym_or] = ACTIONS(9225), - [anon_sym_and] = ACTIONS(9225), - [anon_sym_bitor] = ACTIONS(9225), - [anon_sym_xor] = ACTIONS(9225), - [anon_sym_bitand] = ACTIONS(9225), - [anon_sym_not_eq] = ACTIONS(9225), - [anon_sym_DASH_DASH] = ACTIONS(9227), - [anon_sym_PLUS_PLUS] = ACTIONS(9227), - [anon_sym_DOT] = ACTIONS(9225), - [anon_sym_DOT_STAR] = ACTIONS(9227), - [anon_sym_DASH_GT] = ACTIONS(9227), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9227), + [STATE(3179)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7597), + [anon_sym_COMMA] = ACTIONS(7597), + [anon_sym_LPAREN2] = ACTIONS(7597), + [anon_sym_DASH] = ACTIONS(7595), + [anon_sym_PLUS] = ACTIONS(7595), + [anon_sym_STAR] = ACTIONS(7595), + [anon_sym_SLASH] = ACTIONS(7595), + [anon_sym_PERCENT] = ACTIONS(7595), + [anon_sym_PIPE_PIPE] = ACTIONS(7597), + [anon_sym_AMP_AMP] = ACTIONS(7597), + [anon_sym_PIPE] = ACTIONS(7595), + [anon_sym_CARET] = ACTIONS(7595), + [anon_sym_AMP] = ACTIONS(7595), + [anon_sym_EQ_EQ] = ACTIONS(7597), + [anon_sym_BANG_EQ] = ACTIONS(7597), + [anon_sym_GT] = ACTIONS(7595), + [anon_sym_GT_EQ] = ACTIONS(7595), + [anon_sym_LT_EQ] = ACTIONS(7595), + [anon_sym_LT] = ACTIONS(7595), + [anon_sym_LT_LT] = ACTIONS(7595), + [anon_sym_GT_GT] = ACTIONS(7595), + [anon_sym___extension__] = ACTIONS(7597), + [anon_sym_LBRACE] = ACTIONS(7597), + [anon_sym_LBRACK] = ACTIONS(7597), + [anon_sym_EQ] = ACTIONS(7595), + [anon_sym_const] = ACTIONS(7595), + [anon_sym_constexpr] = ACTIONS(7597), + [anon_sym_volatile] = ACTIONS(7597), + [anon_sym_restrict] = ACTIONS(7597), + [anon_sym___restrict__] = ACTIONS(7597), + [anon_sym__Atomic] = ACTIONS(7597), + [anon_sym__Noreturn] = ACTIONS(7597), + [anon_sym_noreturn] = ACTIONS(7597), + [anon_sym__Nonnull] = ACTIONS(7597), + [anon_sym_mutable] = ACTIONS(7597), + [anon_sym_constinit] = ACTIONS(7597), + [anon_sym_consteval] = ACTIONS(7597), + [anon_sym_alignas] = ACTIONS(7597), + [anon_sym__Alignas] = ACTIONS(7597), + [anon_sym_QMARK] = ACTIONS(7597), + [anon_sym_STAR_EQ] = ACTIONS(7597), + [anon_sym_SLASH_EQ] = ACTIONS(7597), + [anon_sym_PERCENT_EQ] = ACTIONS(7597), + [anon_sym_PLUS_EQ] = ACTIONS(7597), + [anon_sym_DASH_EQ] = ACTIONS(7597), + [anon_sym_LT_LT_EQ] = ACTIONS(7597), + [anon_sym_GT_GT_EQ] = ACTIONS(7595), + [anon_sym_AMP_EQ] = ACTIONS(7597), + [anon_sym_CARET_EQ] = ACTIONS(7597), + [anon_sym_PIPE_EQ] = ACTIONS(7597), + [anon_sym_and_eq] = ACTIONS(7597), + [anon_sym_or_eq] = ACTIONS(7597), + [anon_sym_xor_eq] = ACTIONS(7597), + [anon_sym_LT_EQ_GT] = ACTIONS(7597), + [anon_sym_or] = ACTIONS(7595), + [anon_sym_and] = ACTIONS(7595), + [anon_sym_bitor] = ACTIONS(7597), + [anon_sym_xor] = ACTIONS(7595), + [anon_sym_bitand] = ACTIONS(7597), + [anon_sym_not_eq] = ACTIONS(7597), + [anon_sym_DASH_DASH] = ACTIONS(7597), + [anon_sym_PLUS_PLUS] = ACTIONS(7597), + [anon_sym_DOT] = ACTIONS(7595), + [anon_sym_DOT_STAR] = ACTIONS(7597), + [anon_sym_DASH_GT] = ACTIONS(7597), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7597), + [anon_sym_override] = ACTIONS(7597), + [anon_sym_GT2] = ACTIONS(7597), + [anon_sym_requires] = ACTIONS(7597), }, - [STATE(3687)] = { - [sym_attribute_specifier] = STATE(3061), - [sym_enumerator_list] = STATE(3787), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6987), - [anon_sym_COMMA] = ACTIONS(6987), - [anon_sym_RPAREN] = ACTIONS(6987), - [anon_sym_LPAREN2] = ACTIONS(6987), - [anon_sym_DASH] = ACTIONS(6985), - [anon_sym_PLUS] = ACTIONS(6985), - [anon_sym_STAR] = ACTIONS(6987), - [anon_sym_SLASH] = ACTIONS(6985), - [anon_sym_PERCENT] = ACTIONS(6987), - [anon_sym_PIPE_PIPE] = ACTIONS(6987), - [anon_sym_AMP_AMP] = ACTIONS(6987), - [anon_sym_PIPE] = ACTIONS(6985), - [anon_sym_CARET] = ACTIONS(6987), - [anon_sym_AMP] = ACTIONS(6985), - [anon_sym_EQ_EQ] = ACTIONS(6987), - [anon_sym_BANG_EQ] = ACTIONS(6987), - [anon_sym_GT] = ACTIONS(6985), - [anon_sym_GT_EQ] = ACTIONS(6987), - [anon_sym_LT_EQ] = ACTIONS(6985), - [anon_sym_LT] = ACTIONS(6985), - [anon_sym_LT_LT] = ACTIONS(6987), - [anon_sym_GT_GT] = ACTIONS(6987), - [anon_sym_SEMI] = ACTIONS(6987), - [anon_sym___extension__] = ACTIONS(6987), - [anon_sym___attribute__] = ACTIONS(9025), - [anon_sym___attribute] = ACTIONS(8907), - [anon_sym_COLON] = ACTIONS(6985), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6987), - [anon_sym_LBRACE] = ACTIONS(9162), - [anon_sym_RBRACE] = ACTIONS(6987), - [anon_sym_LBRACK] = ACTIONS(6987), - [anon_sym_const] = ACTIONS(6985), - [anon_sym_constexpr] = ACTIONS(6987), - [anon_sym_volatile] = ACTIONS(6987), - [anon_sym_restrict] = ACTIONS(6987), - [anon_sym___restrict__] = ACTIONS(6987), - [anon_sym__Atomic] = ACTIONS(6987), - [anon_sym__Noreturn] = ACTIONS(6987), - [anon_sym_noreturn] = ACTIONS(6987), - [anon_sym__Nonnull] = ACTIONS(6987), - [anon_sym_mutable] = ACTIONS(6987), - [anon_sym_constinit] = ACTIONS(6987), - [anon_sym_consteval] = ACTIONS(6987), - [anon_sym_alignas] = ACTIONS(6987), - [anon_sym__Alignas] = ACTIONS(6987), - [anon_sym_QMARK] = ACTIONS(6987), - [anon_sym_LT_EQ_GT] = ACTIONS(6987), - [anon_sym_or] = ACTIONS(6987), - [anon_sym_and] = ACTIONS(6987), - [anon_sym_bitor] = ACTIONS(6987), - [anon_sym_xor] = ACTIONS(6987), - [anon_sym_bitand] = ACTIONS(6987), - [anon_sym_not_eq] = ACTIONS(6987), - [anon_sym_DASH_DASH] = ACTIONS(6987), - [anon_sym_PLUS_PLUS] = ACTIONS(6987), - [anon_sym_DOT] = ACTIONS(6985), - [anon_sym_DOT_STAR] = ACTIONS(6987), - [anon_sym_DASH_GT] = ACTIONS(6987), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6987), - [anon_sym_override] = ACTIONS(6987), - [anon_sym_requires] = ACTIONS(6987), - [anon_sym_COLON_RBRACK] = ACTIONS(6987), + [STATE(3180)] = { + [sym_identifier] = ACTIONS(9084), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9086), + [anon_sym_COMMA] = ACTIONS(9086), + [anon_sym_RPAREN] = ACTIONS(9086), + [aux_sym_preproc_if_token2] = ACTIONS(9086), + [aux_sym_preproc_else_token1] = ACTIONS(9086), + [aux_sym_preproc_elif_token1] = ACTIONS(9084), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9086), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9086), + [anon_sym_LPAREN2] = ACTIONS(9086), + [anon_sym_DASH] = ACTIONS(9084), + [anon_sym_PLUS] = ACTIONS(9084), + [anon_sym_STAR] = ACTIONS(9084), + [anon_sym_SLASH] = ACTIONS(9084), + [anon_sym_PERCENT] = ACTIONS(9084), + [anon_sym_PIPE_PIPE] = ACTIONS(9086), + [anon_sym_AMP_AMP] = ACTIONS(9086), + [anon_sym_PIPE] = ACTIONS(9084), + [anon_sym_CARET] = ACTIONS(9084), + [anon_sym_AMP] = ACTIONS(9084), + [anon_sym_EQ_EQ] = ACTIONS(9086), + [anon_sym_BANG_EQ] = ACTIONS(9086), + [anon_sym_GT] = ACTIONS(9084), + [anon_sym_GT_EQ] = ACTIONS(9086), + [anon_sym_LT_EQ] = ACTIONS(9084), + [anon_sym_LT] = ACTIONS(9084), + [anon_sym_LT_LT] = ACTIONS(9084), + [anon_sym_GT_GT] = ACTIONS(9084), + [anon_sym_SEMI] = ACTIONS(9086), + [anon_sym___attribute__] = ACTIONS(9084), + [anon_sym___attribute] = ACTIONS(9084), + [anon_sym_COLON] = ACTIONS(9084), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9086), + [anon_sym_LBRACE] = ACTIONS(9086), + [anon_sym_RBRACE] = ACTIONS(9086), + [anon_sym_LBRACK] = ACTIONS(9084), + [anon_sym_RBRACK] = ACTIONS(9086), + [anon_sym_EQ] = ACTIONS(9084), + [anon_sym_QMARK] = ACTIONS(9086), + [anon_sym_STAR_EQ] = ACTIONS(9086), + [anon_sym_SLASH_EQ] = ACTIONS(9086), + [anon_sym_PERCENT_EQ] = ACTIONS(9086), + [anon_sym_PLUS_EQ] = ACTIONS(9086), + [anon_sym_DASH_EQ] = ACTIONS(9086), + [anon_sym_LT_LT_EQ] = ACTIONS(9086), + [anon_sym_GT_GT_EQ] = ACTIONS(9086), + [anon_sym_AMP_EQ] = ACTIONS(9086), + [anon_sym_CARET_EQ] = ACTIONS(9086), + [anon_sym_PIPE_EQ] = ACTIONS(9086), + [anon_sym_and_eq] = ACTIONS(9084), + [anon_sym_or_eq] = ACTIONS(9084), + [anon_sym_xor_eq] = ACTIONS(9084), + [anon_sym_LT_EQ_GT] = ACTIONS(9086), + [anon_sym_or] = ACTIONS(9084), + [anon_sym_and] = ACTIONS(9084), + [anon_sym_bitor] = ACTIONS(9084), + [anon_sym_xor] = ACTIONS(9084), + [anon_sym_bitand] = ACTIONS(9084), + [anon_sym_not_eq] = ACTIONS(9084), + [anon_sym_DASH_DASH] = ACTIONS(9086), + [anon_sym_PLUS_PLUS] = ACTIONS(9086), + [anon_sym_asm] = ACTIONS(9084), + [anon_sym___asm__] = ACTIONS(9084), + [anon_sym___asm] = ACTIONS(9084), + [anon_sym_DOT] = ACTIONS(9084), + [anon_sym_DOT_STAR] = ACTIONS(9086), + [anon_sym_DASH_GT] = ACTIONS(9086), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9084), + [anon_sym_COLON_RBRACK] = ACTIONS(9086), }, - [STATE(3688)] = { - [sym_template_argument_list] = STATE(2848), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6751), - [anon_sym_COMMA] = ACTIONS(6751), - [anon_sym_RPAREN] = ACTIONS(6751), - [anon_sym_LPAREN2] = ACTIONS(6751), - [anon_sym_DASH] = ACTIONS(6746), - [anon_sym_PLUS] = ACTIONS(6746), - [anon_sym_STAR] = ACTIONS(6751), - [anon_sym_SLASH] = ACTIONS(6746), - [anon_sym_PERCENT] = ACTIONS(6751), - [anon_sym_PIPE_PIPE] = ACTIONS(6751), - [anon_sym_AMP_AMP] = ACTIONS(6751), - [anon_sym_PIPE] = ACTIONS(6746), - [anon_sym_CARET] = ACTIONS(6751), - [anon_sym_AMP] = ACTIONS(6746), - [anon_sym_EQ_EQ] = ACTIONS(6751), - [anon_sym_BANG_EQ] = ACTIONS(6751), - [anon_sym_GT] = ACTIONS(6746), - [anon_sym_GT_EQ] = ACTIONS(6751), - [anon_sym_LT_EQ] = ACTIONS(6746), - [anon_sym_LT] = ACTIONS(8390), - [anon_sym_LT_LT] = ACTIONS(6751), - [anon_sym_GT_GT] = ACTIONS(6751), - [anon_sym_SEMI] = ACTIONS(6751), - [anon_sym___extension__] = ACTIONS(6751), - [anon_sym___attribute__] = ACTIONS(6751), - [anon_sym___attribute] = ACTIONS(6746), - [anon_sym_COLON] = ACTIONS(6746), - [anon_sym_COLON_COLON] = ACTIONS(6748), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6751), - [anon_sym_LBRACE] = ACTIONS(6751), - [anon_sym_RBRACE] = ACTIONS(6751), - [anon_sym_LBRACK] = ACTIONS(6751), - [anon_sym_const] = ACTIONS(6746), - [anon_sym_constexpr] = ACTIONS(6751), - [anon_sym_volatile] = ACTIONS(6751), - [anon_sym_restrict] = ACTIONS(6751), - [anon_sym___restrict__] = ACTIONS(6751), - [anon_sym__Atomic] = ACTIONS(6751), - [anon_sym__Noreturn] = ACTIONS(6751), - [anon_sym_noreturn] = ACTIONS(6751), - [anon_sym__Nonnull] = ACTIONS(6751), - [anon_sym_mutable] = ACTIONS(6751), - [anon_sym_constinit] = ACTIONS(6751), - [anon_sym_consteval] = ACTIONS(6751), - [anon_sym_alignas] = ACTIONS(6751), - [anon_sym__Alignas] = ACTIONS(6751), - [anon_sym_QMARK] = ACTIONS(6751), - [anon_sym_LT_EQ_GT] = ACTIONS(6751), - [anon_sym_or] = ACTIONS(6751), - [anon_sym_and] = ACTIONS(6751), - [anon_sym_bitor] = ACTIONS(6751), - [anon_sym_xor] = ACTIONS(6751), - [anon_sym_bitand] = ACTIONS(6751), - [anon_sym_not_eq] = ACTIONS(6751), - [anon_sym_DASH_DASH] = ACTIONS(6751), - [anon_sym_PLUS_PLUS] = ACTIONS(6751), - [anon_sym_DOT] = ACTIONS(6746), - [anon_sym_DOT_STAR] = ACTIONS(6751), - [anon_sym_DASH_GT] = ACTIONS(6751), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6751), - [anon_sym_override] = ACTIONS(6751), - [anon_sym_requires] = ACTIONS(6751), - [anon_sym_COLON_RBRACK] = ACTIONS(6751), + [STATE(3181)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7567), + [anon_sym_COMMA] = ACTIONS(7567), + [anon_sym_LPAREN2] = ACTIONS(7567), + [anon_sym_DASH] = ACTIONS(7565), + [anon_sym_PLUS] = ACTIONS(7565), + [anon_sym_STAR] = ACTIONS(7565), + [anon_sym_SLASH] = ACTIONS(7565), + [anon_sym_PERCENT] = ACTIONS(7565), + [anon_sym_PIPE_PIPE] = ACTIONS(7567), + [anon_sym_AMP_AMP] = ACTIONS(7567), + [anon_sym_PIPE] = ACTIONS(7565), + [anon_sym_CARET] = ACTIONS(7565), + [anon_sym_AMP] = ACTIONS(7565), + [anon_sym_EQ_EQ] = ACTIONS(7567), + [anon_sym_BANG_EQ] = ACTIONS(7567), + [anon_sym_GT] = ACTIONS(7565), + [anon_sym_GT_EQ] = ACTIONS(7565), + [anon_sym_LT_EQ] = ACTIONS(7565), + [anon_sym_LT] = ACTIONS(7565), + [anon_sym_LT_LT] = ACTIONS(7565), + [anon_sym_GT_GT] = ACTIONS(7565), + [anon_sym___extension__] = ACTIONS(7567), + [anon_sym_LBRACE] = ACTIONS(7567), + [anon_sym_LBRACK] = ACTIONS(7567), + [anon_sym_EQ] = ACTIONS(7565), + [anon_sym_const] = ACTIONS(7565), + [anon_sym_constexpr] = ACTIONS(7567), + [anon_sym_volatile] = ACTIONS(7567), + [anon_sym_restrict] = ACTIONS(7567), + [anon_sym___restrict__] = ACTIONS(7567), + [anon_sym__Atomic] = ACTIONS(7567), + [anon_sym__Noreturn] = ACTIONS(7567), + [anon_sym_noreturn] = ACTIONS(7567), + [anon_sym__Nonnull] = ACTIONS(7567), + [anon_sym_mutable] = ACTIONS(7567), + [anon_sym_constinit] = ACTIONS(7567), + [anon_sym_consteval] = ACTIONS(7567), + [anon_sym_alignas] = ACTIONS(7567), + [anon_sym__Alignas] = ACTIONS(7567), + [anon_sym_QMARK] = ACTIONS(7567), + [anon_sym_STAR_EQ] = ACTIONS(7567), + [anon_sym_SLASH_EQ] = ACTIONS(7567), + [anon_sym_PERCENT_EQ] = ACTIONS(7567), + [anon_sym_PLUS_EQ] = ACTIONS(7567), + [anon_sym_DASH_EQ] = ACTIONS(7567), + [anon_sym_LT_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_GT_EQ] = ACTIONS(7565), + [anon_sym_AMP_EQ] = ACTIONS(7567), + [anon_sym_CARET_EQ] = ACTIONS(7567), + [anon_sym_PIPE_EQ] = ACTIONS(7567), + [anon_sym_and_eq] = ACTIONS(7567), + [anon_sym_or_eq] = ACTIONS(7567), + [anon_sym_xor_eq] = ACTIONS(7567), + [anon_sym_LT_EQ_GT] = ACTIONS(7567), + [anon_sym_or] = ACTIONS(7565), + [anon_sym_and] = ACTIONS(7565), + [anon_sym_bitor] = ACTIONS(7567), + [anon_sym_xor] = ACTIONS(7565), + [anon_sym_bitand] = ACTIONS(7567), + [anon_sym_not_eq] = ACTIONS(7567), + [anon_sym_DASH_DASH] = ACTIONS(7567), + [anon_sym_PLUS_PLUS] = ACTIONS(7567), + [anon_sym_DOT] = ACTIONS(7565), + [anon_sym_DOT_STAR] = ACTIONS(7567), + [anon_sym_DASH_GT] = ACTIONS(7567), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7567), + [anon_sym_override] = ACTIONS(7567), + [anon_sym_GT2] = ACTIONS(7567), + [anon_sym_requires] = ACTIONS(7567), }, - [STATE(3689)] = { - [sym_argument_list] = STATE(3786), - [sym_subscript_argument_list] = STATE(3784), - [sym_identifier] = ACTIONS(9286), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9288), - [anon_sym_COMMA] = ACTIONS(9288), - [anon_sym_RPAREN] = ACTIONS(9288), - [aux_sym_preproc_if_token2] = ACTIONS(9288), - [aux_sym_preproc_else_token1] = ACTIONS(9288), - [aux_sym_preproc_elif_token1] = ACTIONS(9286), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9288), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9288), - [anon_sym_LPAREN2] = ACTIONS(8808), - [anon_sym_DASH] = ACTIONS(9286), - [anon_sym_PLUS] = ACTIONS(9286), - [anon_sym_STAR] = ACTIONS(9286), - [anon_sym_SLASH] = ACTIONS(9286), - [anon_sym_PERCENT] = ACTIONS(9286), - [anon_sym_PIPE_PIPE] = ACTIONS(9288), - [anon_sym_AMP_AMP] = ACTIONS(9288), - [anon_sym_PIPE] = ACTIONS(9286), - [anon_sym_CARET] = ACTIONS(9286), - [anon_sym_AMP] = ACTIONS(9286), - [anon_sym_EQ_EQ] = ACTIONS(9288), - [anon_sym_BANG_EQ] = ACTIONS(9288), - [anon_sym_GT] = ACTIONS(9286), - [anon_sym_GT_EQ] = ACTIONS(9288), - [anon_sym_LT_EQ] = ACTIONS(9286), - [anon_sym_LT] = ACTIONS(9286), - [anon_sym_LT_LT] = ACTIONS(9286), - [anon_sym_GT_GT] = ACTIONS(9286), - [anon_sym_SEMI] = ACTIONS(9288), - [anon_sym___attribute__] = ACTIONS(9286), - [anon_sym___attribute] = ACTIONS(9286), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9288), - [anon_sym_RBRACE] = ACTIONS(9288), - [anon_sym_LBRACK] = ACTIONS(9236), - [anon_sym_EQ] = ACTIONS(9286), - [anon_sym_QMARK] = ACTIONS(9288), - [anon_sym_STAR_EQ] = ACTIONS(9288), - [anon_sym_SLASH_EQ] = ACTIONS(9288), - [anon_sym_PERCENT_EQ] = ACTIONS(9288), - [anon_sym_PLUS_EQ] = ACTIONS(9288), - [anon_sym_DASH_EQ] = ACTIONS(9288), - [anon_sym_LT_LT_EQ] = ACTIONS(9288), - [anon_sym_GT_GT_EQ] = ACTIONS(9288), - [anon_sym_AMP_EQ] = ACTIONS(9288), - [anon_sym_CARET_EQ] = ACTIONS(9288), - [anon_sym_PIPE_EQ] = ACTIONS(9288), - [anon_sym_and_eq] = ACTIONS(9286), - [anon_sym_or_eq] = ACTIONS(9286), - [anon_sym_xor_eq] = ACTIONS(9286), - [anon_sym_LT_EQ_GT] = ACTIONS(9288), - [anon_sym_or] = ACTIONS(9286), - [anon_sym_and] = ACTIONS(9286), - [anon_sym_bitor] = ACTIONS(9286), - [anon_sym_xor] = ACTIONS(9286), - [anon_sym_bitand] = ACTIONS(9286), - [anon_sym_not_eq] = ACTIONS(9286), - [anon_sym_DASH_DASH] = ACTIONS(9288), - [anon_sym_PLUS_PLUS] = ACTIONS(9288), - [anon_sym_DOT] = ACTIONS(9240), - [anon_sym_DOT_STAR] = ACTIONS(9242), - [anon_sym_DASH_GT] = ACTIONS(9242), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9288), + [STATE(3182)] = { + [sym_identifier] = ACTIONS(3155), + [aux_sym_preproc_def_token1] = ACTIONS(3155), + [aux_sym_preproc_if_token1] = ACTIONS(3155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3155), + [sym_preproc_directive] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_AMP_AMP] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym___extension__] = ACTIONS(3155), + [anon_sym_typedef] = ACTIONS(3155), + [anon_sym_virtual] = ACTIONS(3155), + [anon_sym_extern] = ACTIONS(3155), + [anon_sym___attribute__] = ACTIONS(3155), + [anon_sym___attribute] = ACTIONS(3155), + [anon_sym_using] = ACTIONS(3155), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), + [anon_sym___declspec] = ACTIONS(3155), + [anon_sym___based] = ACTIONS(3155), + [anon_sym_RBRACE] = ACTIONS(3153), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_static] = ACTIONS(3155), + [anon_sym_register] = ACTIONS(3155), + [anon_sym_inline] = ACTIONS(3155), + [anon_sym___inline] = ACTIONS(3155), + [anon_sym___inline__] = ACTIONS(3155), + [anon_sym___forceinline] = ACTIONS(3155), + [anon_sym_thread_local] = ACTIONS(3155), + [anon_sym___thread] = ACTIONS(3155), + [anon_sym_const] = ACTIONS(3155), + [anon_sym_constexpr] = ACTIONS(3155), + [anon_sym_volatile] = ACTIONS(3155), + [anon_sym_restrict] = ACTIONS(3155), + [anon_sym___restrict__] = ACTIONS(3155), + [anon_sym__Atomic] = ACTIONS(3155), + [anon_sym__Noreturn] = ACTIONS(3155), + [anon_sym_noreturn] = ACTIONS(3155), + [anon_sym__Nonnull] = ACTIONS(3155), + [anon_sym_mutable] = ACTIONS(3155), + [anon_sym_constinit] = ACTIONS(3155), + [anon_sym_consteval] = ACTIONS(3155), + [anon_sym_alignas] = ACTIONS(3155), + [anon_sym__Alignas] = ACTIONS(3155), + [sym_primitive_type] = ACTIONS(3155), + [anon_sym_enum] = ACTIONS(3155), + [anon_sym_class] = ACTIONS(3155), + [anon_sym_struct] = ACTIONS(3155), + [anon_sym_union] = ACTIONS(3155), + [anon_sym_typename] = ACTIONS(3155), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3155), + [anon_sym_decltype] = ACTIONS(3155), + [anon_sym_explicit] = ACTIONS(3155), + [anon_sym_private] = ACTIONS(3155), + [anon_sym_template] = ACTIONS(3155), + [anon_sym_operator] = ACTIONS(3155), + [anon_sym_friend] = ACTIONS(3155), + [anon_sym_public] = ACTIONS(3155), + [anon_sym_protected] = ACTIONS(3155), + [anon_sym_static_assert] = ACTIONS(3155), + [anon_sym_catch] = ACTIONS(3155), + [anon_sym_LBRACK_COLON] = ACTIONS(3153), }, - [STATE(3690)] = { - [sym_type_qualifier] = STATE(3553), - [sym_alignas_qualifier] = STATE(3785), - [aux_sym__type_definition_type_repeat1] = STATE(3553), - [aux_sym_sized_type_specifier_repeat1] = STATE(3926), - [sym_identifier] = ACTIONS(8911), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), - [anon_sym_COMMA] = ACTIONS(6884), - [anon_sym_LPAREN2] = ACTIONS(6884), - [anon_sym_DASH] = ACTIONS(6886), - [anon_sym_PLUS] = ACTIONS(6886), - [anon_sym_STAR] = ACTIONS(6884), - [anon_sym_SLASH] = ACTIONS(6886), - [anon_sym_PERCENT] = ACTIONS(6884), - [anon_sym_PIPE_PIPE] = ACTIONS(6884), - [anon_sym_AMP_AMP] = ACTIONS(6884), - [anon_sym_PIPE] = ACTIONS(6886), - [anon_sym_CARET] = ACTIONS(6884), - [anon_sym_AMP] = ACTIONS(6886), - [anon_sym_EQ_EQ] = ACTIONS(6884), - [anon_sym_BANG_EQ] = ACTIONS(6884), - [anon_sym_GT] = ACTIONS(6886), - [anon_sym_GT_EQ] = ACTIONS(6886), - [anon_sym_LT_EQ] = ACTIONS(6886), - [anon_sym_LT] = ACTIONS(6886), - [anon_sym_LT_LT] = ACTIONS(6884), - [anon_sym_GT_GT] = ACTIONS(6886), - [anon_sym___extension__] = ACTIONS(8242), - [anon_sym___attribute__] = ACTIONS(6886), - [anon_sym___attribute] = ACTIONS(6886), - [anon_sym_LBRACE] = ACTIONS(6884), - [anon_sym_signed] = ACTIONS(8916), - [anon_sym_unsigned] = ACTIONS(8916), - [anon_sym_long] = ACTIONS(8916), - [anon_sym_short] = ACTIONS(8916), - [anon_sym_LBRACK] = ACTIONS(6884), - [anon_sym_const] = ACTIONS(8242), - [anon_sym_constexpr] = ACTIONS(8242), - [anon_sym_volatile] = ACTIONS(8242), - [anon_sym_restrict] = ACTIONS(8242), - [anon_sym___restrict__] = ACTIONS(8242), - [anon_sym__Atomic] = ACTIONS(8242), - [anon_sym__Noreturn] = ACTIONS(8242), - [anon_sym_noreturn] = ACTIONS(8242), - [anon_sym__Nonnull] = ACTIONS(8242), - [anon_sym_mutable] = ACTIONS(8242), - [anon_sym_constinit] = ACTIONS(8242), - [anon_sym_consteval] = ACTIONS(8242), - [anon_sym_alignas] = ACTIONS(9276), - [anon_sym__Alignas] = ACTIONS(9276), - [sym_primitive_type] = ACTIONS(8921), - [anon_sym_QMARK] = ACTIONS(6884), - [anon_sym_LT_EQ_GT] = ACTIONS(6884), - [anon_sym_or] = ACTIONS(6886), - [anon_sym_and] = ACTIONS(6886), - [anon_sym_bitor] = ACTIONS(6886), - [anon_sym_xor] = ACTIONS(6886), - [anon_sym_bitand] = ACTIONS(6886), - [anon_sym_not_eq] = ACTIONS(6886), - [anon_sym_DASH_DASH] = ACTIONS(6884), - [anon_sym_PLUS_PLUS] = ACTIONS(6884), - [anon_sym_DOT] = ACTIONS(6886), - [anon_sym_DOT_STAR] = ACTIONS(6884), - [anon_sym_DASH_GT] = ACTIONS(6884), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(6884), + [STATE(3183)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7777), + [anon_sym_COMMA] = ACTIONS(7777), + [anon_sym_LPAREN2] = ACTIONS(7777), + [anon_sym_DASH] = ACTIONS(7775), + [anon_sym_PLUS] = ACTIONS(7775), + [anon_sym_STAR] = ACTIONS(7775), + [anon_sym_SLASH] = ACTIONS(7775), + [anon_sym_PERCENT] = ACTIONS(7775), + [anon_sym_PIPE_PIPE] = ACTIONS(7777), + [anon_sym_AMP_AMP] = ACTIONS(7777), + [anon_sym_PIPE] = ACTIONS(7775), + [anon_sym_CARET] = ACTIONS(7775), + [anon_sym_AMP] = ACTIONS(7775), + [anon_sym_EQ_EQ] = ACTIONS(7777), + [anon_sym_BANG_EQ] = ACTIONS(7777), + [anon_sym_GT] = ACTIONS(7775), + [anon_sym_GT_EQ] = ACTIONS(7775), + [anon_sym_LT_EQ] = ACTIONS(7775), + [anon_sym_LT] = ACTIONS(7775), + [anon_sym_LT_LT] = ACTIONS(7775), + [anon_sym_GT_GT] = ACTIONS(7775), + [anon_sym___extension__] = ACTIONS(7777), + [anon_sym_LBRACE] = ACTIONS(7777), + [anon_sym_LBRACK] = ACTIONS(7777), + [anon_sym_EQ] = ACTIONS(7775), + [anon_sym_const] = ACTIONS(7775), + [anon_sym_constexpr] = ACTIONS(7777), + [anon_sym_volatile] = ACTIONS(7777), + [anon_sym_restrict] = ACTIONS(7777), + [anon_sym___restrict__] = ACTIONS(7777), + [anon_sym__Atomic] = ACTIONS(7777), + [anon_sym__Noreturn] = ACTIONS(7777), + [anon_sym_noreturn] = ACTIONS(7777), + [anon_sym__Nonnull] = ACTIONS(7777), + [anon_sym_mutable] = ACTIONS(7777), + [anon_sym_constinit] = ACTIONS(7777), + [anon_sym_consteval] = ACTIONS(7777), + [anon_sym_alignas] = ACTIONS(7777), + [anon_sym__Alignas] = ACTIONS(7777), + [anon_sym_QMARK] = ACTIONS(7777), + [anon_sym_STAR_EQ] = ACTIONS(7777), + [anon_sym_SLASH_EQ] = ACTIONS(7777), + [anon_sym_PERCENT_EQ] = ACTIONS(7777), + [anon_sym_PLUS_EQ] = ACTIONS(7777), + [anon_sym_DASH_EQ] = ACTIONS(7777), + [anon_sym_LT_LT_EQ] = ACTIONS(7777), + [anon_sym_GT_GT_EQ] = ACTIONS(7775), + [anon_sym_AMP_EQ] = ACTIONS(7777), + [anon_sym_CARET_EQ] = ACTIONS(7777), + [anon_sym_PIPE_EQ] = ACTIONS(7777), + [anon_sym_and_eq] = ACTIONS(7777), + [anon_sym_or_eq] = ACTIONS(7777), + [anon_sym_xor_eq] = ACTIONS(7777), + [anon_sym_LT_EQ_GT] = ACTIONS(7777), + [anon_sym_or] = ACTIONS(7775), + [anon_sym_and] = ACTIONS(7775), + [anon_sym_bitor] = ACTIONS(7777), + [anon_sym_xor] = ACTIONS(7775), + [anon_sym_bitand] = ACTIONS(7777), + [anon_sym_not_eq] = ACTIONS(7777), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(7775), + [anon_sym_DOT_STAR] = ACTIONS(7777), + [anon_sym_DASH_GT] = ACTIONS(7777), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7777), + [anon_sym_override] = ACTIONS(7777), + [anon_sym_GT2] = ACTIONS(7777), + [anon_sym_requires] = ACTIONS(7777), }, - [STATE(3691)] = { - [sym__abstract_declarator] = STATE(6431), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(2399), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(2152), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(2399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7007), - [anon_sym_COMMA] = ACTIONS(7007), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(7009), - [anon_sym_PLUS] = ACTIONS(7009), - [anon_sym_STAR] = ACTIONS(8341), - [anon_sym_SLASH] = ACTIONS(7009), - [anon_sym_PERCENT] = ACTIONS(7007), - [anon_sym_PIPE_PIPE] = ACTIONS(7007), - [anon_sym_AMP_AMP] = ACTIONS(8343), - [anon_sym_PIPE] = ACTIONS(7009), - [anon_sym_CARET] = ACTIONS(7007), - [anon_sym_AMP] = ACTIONS(8345), - [anon_sym_EQ_EQ] = ACTIONS(7007), - [anon_sym_BANG_EQ] = ACTIONS(7007), - [anon_sym_GT] = ACTIONS(7009), - [anon_sym_GT_EQ] = ACTIONS(7007), - [anon_sym_LT_EQ] = ACTIONS(7009), - [anon_sym_LT] = ACTIONS(7009), - [anon_sym_LT_LT] = ACTIONS(7007), - [anon_sym_GT_GT] = ACTIONS(7007), - [anon_sym_SEMI] = ACTIONS(7007), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym___attribute__] = ACTIONS(7007), - [anon_sym___attribute] = ACTIONS(7009), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(7007), - [anon_sym_LT_EQ_GT] = ACTIONS(7007), - [anon_sym_or] = ACTIONS(7007), - [anon_sym_and] = ACTIONS(7007), - [anon_sym_bitor] = ACTIONS(7007), - [anon_sym_xor] = ACTIONS(7007), - [anon_sym_bitand] = ACTIONS(7007), - [anon_sym_not_eq] = ACTIONS(7007), - [anon_sym_DASH_DASH] = ACTIONS(7007), - [anon_sym_PLUS_PLUS] = ACTIONS(7007), - [anon_sym_DOT] = ACTIONS(7009), - [anon_sym_DOT_STAR] = ACTIONS(7007), - [anon_sym_DASH_GT] = ACTIONS(7007), + [STATE(3184)] = { + [sym_argument_list] = STATE(5772), + [sym_initializer_list] = STATE(5843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(8626), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_RBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), [sym_comment] = ACTIONS(3), }, - [STATE(3692)] = { - [sym_ms_based_modifier] = STATE(10656), - [sym__declarator] = STATE(8646), - [sym__abstract_declarator] = STATE(8942), - [sym_parenthesized_declarator] = STATE(8469), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_function_declarator] = STATE(8469), - [sym_abstract_function_declarator] = STATE(8389), - [sym_array_declarator] = STATE(8469), - [sym_abstract_array_declarator] = STATE(8389), - [sym_type_qualifier] = STATE(6842), - [sym_alignas_qualifier] = STATE(7436), - [sym_parameter_list] = STATE(5256), - [sym_decltype] = STATE(10976), - [sym_reference_declarator] = STATE(8469), - [sym_abstract_reference_declarator] = STATE(8389), - [sym_structured_binding_declarator] = STATE(8469), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7878), - [sym_qualified_identifier] = STATE(8469), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__type_definition_type_repeat1] = STATE(6842), - [sym_identifier] = ACTIONS(8195), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_RPAREN] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(5301), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(8424), - [anon_sym_AMP_AMP] = ACTIONS(8426), - [anon_sym_AMP] = ACTIONS(8428), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(6495), - [anon_sym___attribute] = ACTIONS(6495), - [anon_sym_COLON_COLON] = ACTIONS(8203), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(5311), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym__Nonnull] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2939), - [anon_sym__Alignas] = ACTIONS(2939), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), + [STATE(3185)] = { + [sym_identifier] = ACTIONS(7561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), + [anon_sym_COMMA] = ACTIONS(7563), + [anon_sym_RPAREN] = ACTIONS(7563), + [anon_sym_LPAREN2] = ACTIONS(7563), + [anon_sym_DASH] = ACTIONS(7561), + [anon_sym_PLUS] = ACTIONS(7561), + [anon_sym_STAR] = ACTIONS(7563), + [anon_sym_SLASH] = ACTIONS(7561), + [anon_sym_PERCENT] = ACTIONS(7563), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_AMP_AMP] = ACTIONS(7563), + [anon_sym_PIPE] = ACTIONS(7561), + [anon_sym_CARET] = ACTIONS(7563), + [anon_sym_AMP] = ACTIONS(7561), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_GT] = ACTIONS(7561), + [anon_sym_GT_EQ] = ACTIONS(7563), + [anon_sym_LT_EQ] = ACTIONS(7561), + [anon_sym_LT] = ACTIONS(7561), + [anon_sym_LT_LT] = ACTIONS(7563), + [anon_sym_GT_GT] = ACTIONS(7563), + [anon_sym_SEMI] = ACTIONS(7563), + [anon_sym___extension__] = ACTIONS(7561), + [anon_sym___attribute__] = ACTIONS(7561), + [anon_sym___attribute] = ACTIONS(7561), + [anon_sym_COLON] = ACTIONS(7561), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7563), + [anon_sym___based] = ACTIONS(7561), + [anon_sym_LBRACE] = ACTIONS(7563), + [anon_sym_RBRACE] = ACTIONS(7563), + [anon_sym_signed] = ACTIONS(7561), + [anon_sym_unsigned] = ACTIONS(7561), + [anon_sym_long] = ACTIONS(7561), + [anon_sym_short] = ACTIONS(7561), + [anon_sym_LBRACK] = ACTIONS(7563), + [anon_sym_const] = ACTIONS(7561), + [anon_sym_constexpr] = ACTIONS(7561), + [anon_sym_volatile] = ACTIONS(7561), + [anon_sym_restrict] = ACTIONS(7561), + [anon_sym___restrict__] = ACTIONS(7561), + [anon_sym__Atomic] = ACTIONS(7561), + [anon_sym__Noreturn] = ACTIONS(7561), + [anon_sym_noreturn] = ACTIONS(7561), + [anon_sym__Nonnull] = ACTIONS(7561), + [anon_sym_mutable] = ACTIONS(7561), + [anon_sym_constinit] = ACTIONS(7561), + [anon_sym_consteval] = ACTIONS(7561), + [anon_sym_alignas] = ACTIONS(7561), + [anon_sym__Alignas] = ACTIONS(7561), + [sym_primitive_type] = ACTIONS(7561), + [anon_sym_QMARK] = ACTIONS(7563), + [anon_sym_LT_EQ_GT] = ACTIONS(7563), + [anon_sym_or] = ACTIONS(7561), + [anon_sym_and] = ACTIONS(7561), + [anon_sym_bitor] = ACTIONS(7561), + [anon_sym_xor] = ACTIONS(7561), + [anon_sym_bitand] = ACTIONS(7561), + [anon_sym_not_eq] = ACTIONS(7561), + [anon_sym_DASH_DASH] = ACTIONS(7563), + [anon_sym_PLUS_PLUS] = ACTIONS(7563), + [anon_sym_DOT] = ACTIONS(7561), + [anon_sym_DOT_STAR] = ACTIONS(7563), + [anon_sym_DASH_GT] = ACTIONS(7563), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7561), + [anon_sym_override] = ACTIONS(7561), + [anon_sym_requires] = ACTIONS(7561), + [anon_sym_COLON_RBRACK] = ACTIONS(7563), }, - [STATE(3693)] = { - [sym__abstract_declarator] = STATE(6396), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(3664), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(2152), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(3664), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6999), - [anon_sym_COMMA] = ACTIONS(6999), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(7001), - [anon_sym_PLUS] = ACTIONS(7001), - [anon_sym_STAR] = ACTIONS(8341), - [anon_sym_SLASH] = ACTIONS(7001), - [anon_sym_PERCENT] = ACTIONS(6999), - [anon_sym_PIPE_PIPE] = ACTIONS(6999), - [anon_sym_AMP_AMP] = ACTIONS(8343), - [anon_sym_PIPE] = ACTIONS(7001), - [anon_sym_CARET] = ACTIONS(6999), - [anon_sym_AMP] = ACTIONS(8345), - [anon_sym_EQ_EQ] = ACTIONS(6999), - [anon_sym_BANG_EQ] = ACTIONS(6999), - [anon_sym_GT] = ACTIONS(7001), - [anon_sym_GT_EQ] = ACTIONS(6999), - [anon_sym_LT_EQ] = ACTIONS(7001), - [anon_sym_LT] = ACTIONS(7001), - [anon_sym_LT_LT] = ACTIONS(6999), - [anon_sym_GT_GT] = ACTIONS(6999), - [anon_sym_SEMI] = ACTIONS(6999), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym___attribute__] = ACTIONS(6999), - [anon_sym___attribute] = ACTIONS(7001), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(6999), - [anon_sym_or] = ACTIONS(6999), - [anon_sym_and] = ACTIONS(6999), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(6999), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(6999), - [anon_sym_PLUS_PLUS] = ACTIONS(6999), - [anon_sym_DOT] = ACTIONS(7001), - [anon_sym_DOT_STAR] = ACTIONS(6999), - [anon_sym_DASH_GT] = ACTIONS(6999), + [STATE(3186)] = { + [sym_identifier] = ACTIONS(7647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7649), + [anon_sym_COMMA] = ACTIONS(7649), + [anon_sym_RPAREN] = ACTIONS(7649), + [anon_sym_LPAREN2] = ACTIONS(7649), + [anon_sym_DASH] = ACTIONS(7647), + [anon_sym_PLUS] = ACTIONS(7647), + [anon_sym_STAR] = ACTIONS(7649), + [anon_sym_SLASH] = ACTIONS(7647), + [anon_sym_PERCENT] = ACTIONS(7649), + [anon_sym_PIPE_PIPE] = ACTIONS(7649), + [anon_sym_AMP_AMP] = ACTIONS(7649), + [anon_sym_PIPE] = ACTIONS(7647), + [anon_sym_CARET] = ACTIONS(7649), + [anon_sym_AMP] = ACTIONS(7647), + [anon_sym_EQ_EQ] = ACTIONS(7649), + [anon_sym_BANG_EQ] = ACTIONS(7649), + [anon_sym_GT] = ACTIONS(7647), + [anon_sym_GT_EQ] = ACTIONS(7649), + [anon_sym_LT_EQ] = ACTIONS(7647), + [anon_sym_LT] = ACTIONS(7647), + [anon_sym_LT_LT] = ACTIONS(7649), + [anon_sym_GT_GT] = ACTIONS(7649), + [anon_sym_SEMI] = ACTIONS(7649), + [anon_sym___extension__] = ACTIONS(7647), + [anon_sym___attribute__] = ACTIONS(7647), + [anon_sym___attribute] = ACTIONS(7647), + [anon_sym_COLON] = ACTIONS(7647), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7649), + [anon_sym___based] = ACTIONS(7647), + [anon_sym_LBRACE] = ACTIONS(7649), + [anon_sym_RBRACE] = ACTIONS(7649), + [anon_sym_signed] = ACTIONS(7647), + [anon_sym_unsigned] = ACTIONS(7647), + [anon_sym_long] = ACTIONS(7647), + [anon_sym_short] = ACTIONS(7647), + [anon_sym_LBRACK] = ACTIONS(7649), + [anon_sym_const] = ACTIONS(7647), + [anon_sym_constexpr] = ACTIONS(7647), + [anon_sym_volatile] = ACTIONS(7647), + [anon_sym_restrict] = ACTIONS(7647), + [anon_sym___restrict__] = ACTIONS(7647), + [anon_sym__Atomic] = ACTIONS(7647), + [anon_sym__Noreturn] = ACTIONS(7647), + [anon_sym_noreturn] = ACTIONS(7647), + [anon_sym__Nonnull] = ACTIONS(7647), + [anon_sym_mutable] = ACTIONS(7647), + [anon_sym_constinit] = ACTIONS(7647), + [anon_sym_consteval] = ACTIONS(7647), + [anon_sym_alignas] = ACTIONS(7647), + [anon_sym__Alignas] = ACTIONS(7647), + [sym_primitive_type] = ACTIONS(7647), + [anon_sym_QMARK] = ACTIONS(7649), + [anon_sym_LT_EQ_GT] = ACTIONS(7649), + [anon_sym_or] = ACTIONS(7647), + [anon_sym_and] = ACTIONS(7647), + [anon_sym_bitor] = ACTIONS(7647), + [anon_sym_xor] = ACTIONS(7647), + [anon_sym_bitand] = ACTIONS(7647), + [anon_sym_not_eq] = ACTIONS(7647), + [anon_sym_DASH_DASH] = ACTIONS(7649), + [anon_sym_PLUS_PLUS] = ACTIONS(7649), + [anon_sym_DOT] = ACTIONS(7647), + [anon_sym_DOT_STAR] = ACTIONS(7649), + [anon_sym_DASH_GT] = ACTIONS(7649), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7647), + [anon_sym_override] = ACTIONS(7647), + [anon_sym_requires] = ACTIONS(7647), + [anon_sym_COLON_RBRACK] = ACTIONS(7649), + }, + [STATE(3187)] = { + [sym_identifier] = ACTIONS(7651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), + [anon_sym_COMMA] = ACTIONS(7653), + [anon_sym_RPAREN] = ACTIONS(7653), + [anon_sym_LPAREN2] = ACTIONS(7653), + [anon_sym_DASH] = ACTIONS(7651), + [anon_sym_PLUS] = ACTIONS(7651), + [anon_sym_STAR] = ACTIONS(7653), + [anon_sym_SLASH] = ACTIONS(7651), + [anon_sym_PERCENT] = ACTIONS(7653), + [anon_sym_PIPE_PIPE] = ACTIONS(7653), + [anon_sym_AMP_AMP] = ACTIONS(7653), + [anon_sym_PIPE] = ACTIONS(7651), + [anon_sym_CARET] = ACTIONS(7653), + [anon_sym_AMP] = ACTIONS(7651), + [anon_sym_EQ_EQ] = ACTIONS(7653), + [anon_sym_BANG_EQ] = ACTIONS(7653), + [anon_sym_GT] = ACTIONS(7651), + [anon_sym_GT_EQ] = ACTIONS(7653), + [anon_sym_LT_EQ] = ACTIONS(7651), + [anon_sym_LT] = ACTIONS(7651), + [anon_sym_LT_LT] = ACTIONS(7653), + [anon_sym_GT_GT] = ACTIONS(7653), + [anon_sym_SEMI] = ACTIONS(7653), + [anon_sym___extension__] = ACTIONS(7651), + [anon_sym___attribute__] = ACTIONS(7651), + [anon_sym___attribute] = ACTIONS(7651), + [anon_sym_COLON] = ACTIONS(7651), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7653), + [anon_sym___based] = ACTIONS(7651), + [anon_sym_LBRACE] = ACTIONS(7653), + [anon_sym_RBRACE] = ACTIONS(7653), + [anon_sym_signed] = ACTIONS(7651), + [anon_sym_unsigned] = ACTIONS(7651), + [anon_sym_long] = ACTIONS(7651), + [anon_sym_short] = ACTIONS(7651), + [anon_sym_LBRACK] = ACTIONS(7653), + [anon_sym_const] = ACTIONS(7651), + [anon_sym_constexpr] = ACTIONS(7651), + [anon_sym_volatile] = ACTIONS(7651), + [anon_sym_restrict] = ACTIONS(7651), + [anon_sym___restrict__] = ACTIONS(7651), + [anon_sym__Atomic] = ACTIONS(7651), + [anon_sym__Noreturn] = ACTIONS(7651), + [anon_sym_noreturn] = ACTIONS(7651), + [anon_sym__Nonnull] = ACTIONS(7651), + [anon_sym_mutable] = ACTIONS(7651), + [anon_sym_constinit] = ACTIONS(7651), + [anon_sym_consteval] = ACTIONS(7651), + [anon_sym_alignas] = ACTIONS(7651), + [anon_sym__Alignas] = ACTIONS(7651), + [sym_primitive_type] = ACTIONS(7651), + [anon_sym_QMARK] = ACTIONS(7653), + [anon_sym_LT_EQ_GT] = ACTIONS(7653), + [anon_sym_or] = ACTIONS(7651), + [anon_sym_and] = ACTIONS(7651), + [anon_sym_bitor] = ACTIONS(7651), + [anon_sym_xor] = ACTIONS(7651), + [anon_sym_bitand] = ACTIONS(7651), + [anon_sym_not_eq] = ACTIONS(7651), + [anon_sym_DASH_DASH] = ACTIONS(7653), + [anon_sym_PLUS_PLUS] = ACTIONS(7653), + [anon_sym_DOT] = ACTIONS(7651), + [anon_sym_DOT_STAR] = ACTIONS(7653), + [anon_sym_DASH_GT] = ACTIONS(7653), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7651), + [anon_sym_override] = ACTIONS(7651), + [anon_sym_requires] = ACTIONS(7651), + [anon_sym_COLON_RBRACK] = ACTIONS(7653), }, - [STATE(3694)] = { - [sym_attribute_specifier] = STATE(4030), - [sym_enumerator_list] = STATE(3730), - [sym_identifier] = ACTIONS(6985), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6987), - [anon_sym_COMMA] = ACTIONS(6987), - [aux_sym_preproc_if_token2] = ACTIONS(6987), - [aux_sym_preproc_else_token1] = ACTIONS(6987), - [aux_sym_preproc_elif_token1] = ACTIONS(6985), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6987), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6987), - [anon_sym_LPAREN2] = ACTIONS(6987), - [anon_sym_DASH] = ACTIONS(6985), - [anon_sym_PLUS] = ACTIONS(6985), - [anon_sym_STAR] = ACTIONS(6987), - [anon_sym_SLASH] = ACTIONS(6985), - [anon_sym_PERCENT] = ACTIONS(6987), - [anon_sym_PIPE_PIPE] = ACTIONS(6987), - [anon_sym_AMP_AMP] = ACTIONS(6987), - [anon_sym_PIPE] = ACTIONS(6985), - [anon_sym_CARET] = ACTIONS(6987), - [anon_sym_AMP] = ACTIONS(6985), - [anon_sym_EQ_EQ] = ACTIONS(6987), - [anon_sym_BANG_EQ] = ACTIONS(6987), - [anon_sym_GT] = ACTIONS(6985), - [anon_sym_GT_EQ] = ACTIONS(6987), - [anon_sym_LT_EQ] = ACTIONS(6985), - [anon_sym_LT] = ACTIONS(6985), - [anon_sym_LT_LT] = ACTIONS(6987), - [anon_sym_GT_GT] = ACTIONS(6987), - [anon_sym___extension__] = ACTIONS(6985), - [anon_sym___attribute__] = ACTIONS(8907), - [anon_sym___attribute] = ACTIONS(8907), - [anon_sym_LBRACE] = ACTIONS(9021), - [anon_sym_LBRACK] = ACTIONS(6987), - [anon_sym_const] = ACTIONS(6985), - [anon_sym_constexpr] = ACTIONS(6985), - [anon_sym_volatile] = ACTIONS(6985), - [anon_sym_restrict] = ACTIONS(6985), - [anon_sym___restrict__] = ACTIONS(6985), - [anon_sym__Atomic] = ACTIONS(6985), - [anon_sym__Noreturn] = ACTIONS(6985), - [anon_sym_noreturn] = ACTIONS(6985), - [anon_sym__Nonnull] = ACTIONS(6985), - [anon_sym_mutable] = ACTIONS(6985), - [anon_sym_constinit] = ACTIONS(6985), - [anon_sym_consteval] = ACTIONS(6985), - [anon_sym_alignas] = ACTIONS(6985), - [anon_sym__Alignas] = ACTIONS(6985), - [anon_sym_QMARK] = ACTIONS(6987), - [anon_sym_LT_EQ_GT] = ACTIONS(6987), - [anon_sym_or] = ACTIONS(6985), - [anon_sym_and] = ACTIONS(6985), - [anon_sym_bitor] = ACTIONS(6985), - [anon_sym_xor] = ACTIONS(6985), - [anon_sym_bitand] = ACTIONS(6985), - [anon_sym_not_eq] = ACTIONS(6985), - [anon_sym_DASH_DASH] = ACTIONS(6987), - [anon_sym_PLUS_PLUS] = ACTIONS(6987), - [anon_sym_DOT] = ACTIONS(6985), - [anon_sym_DOT_STAR] = ACTIONS(6987), - [anon_sym_DASH_GT] = ACTIONS(6987), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6985), - [anon_sym_override] = ACTIONS(6985), - [anon_sym_requires] = ACTIONS(6985), + [STATE(3188)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7637), + [anon_sym_COMMA] = ACTIONS(7637), + [anon_sym_LPAREN2] = ACTIONS(7637), + [anon_sym_DASH] = ACTIONS(7635), + [anon_sym_PLUS] = ACTIONS(7635), + [anon_sym_STAR] = ACTIONS(7635), + [anon_sym_SLASH] = ACTIONS(7635), + [anon_sym_PERCENT] = ACTIONS(7635), + [anon_sym_PIPE_PIPE] = ACTIONS(7637), + [anon_sym_AMP_AMP] = ACTIONS(7637), + [anon_sym_PIPE] = ACTIONS(7635), + [anon_sym_CARET] = ACTIONS(7635), + [anon_sym_AMP] = ACTIONS(7635), + [anon_sym_EQ_EQ] = ACTIONS(7637), + [anon_sym_BANG_EQ] = ACTIONS(7637), + [anon_sym_GT] = ACTIONS(7635), + [anon_sym_GT_EQ] = ACTIONS(7637), + [anon_sym_LT_EQ] = ACTIONS(7635), + [anon_sym_LT] = ACTIONS(7635), + [anon_sym_LT_LT] = ACTIONS(7635), + [anon_sym_GT_GT] = ACTIONS(7635), + [anon_sym___extension__] = ACTIONS(7637), + [anon_sym_LBRACE] = ACTIONS(7637), + [anon_sym_LBRACK] = ACTIONS(7637), + [anon_sym_RBRACK] = ACTIONS(7637), + [anon_sym_EQ] = ACTIONS(7635), + [anon_sym_const] = ACTIONS(7635), + [anon_sym_constexpr] = ACTIONS(7637), + [anon_sym_volatile] = ACTIONS(7637), + [anon_sym_restrict] = ACTIONS(7637), + [anon_sym___restrict__] = ACTIONS(7637), + [anon_sym__Atomic] = ACTIONS(7637), + [anon_sym__Noreturn] = ACTIONS(7637), + [anon_sym_noreturn] = ACTIONS(7637), + [anon_sym__Nonnull] = ACTIONS(7637), + [anon_sym_mutable] = ACTIONS(7637), + [anon_sym_constinit] = ACTIONS(7637), + [anon_sym_consteval] = ACTIONS(7637), + [anon_sym_alignas] = ACTIONS(7637), + [anon_sym__Alignas] = ACTIONS(7637), + [anon_sym_QMARK] = ACTIONS(7637), + [anon_sym_STAR_EQ] = ACTIONS(7637), + [anon_sym_SLASH_EQ] = ACTIONS(7637), + [anon_sym_PERCENT_EQ] = ACTIONS(7637), + [anon_sym_PLUS_EQ] = ACTIONS(7637), + [anon_sym_DASH_EQ] = ACTIONS(7637), + [anon_sym_LT_LT_EQ] = ACTIONS(7637), + [anon_sym_GT_GT_EQ] = ACTIONS(7637), + [anon_sym_AMP_EQ] = ACTIONS(7637), + [anon_sym_CARET_EQ] = ACTIONS(7637), + [anon_sym_PIPE_EQ] = ACTIONS(7637), + [anon_sym_and_eq] = ACTIONS(7637), + [anon_sym_or_eq] = ACTIONS(7637), + [anon_sym_xor_eq] = ACTIONS(7637), + [anon_sym_LT_EQ_GT] = ACTIONS(7637), + [anon_sym_or] = ACTIONS(7635), + [anon_sym_and] = ACTIONS(7635), + [anon_sym_bitor] = ACTIONS(7637), + [anon_sym_xor] = ACTIONS(7635), + [anon_sym_bitand] = ACTIONS(7637), + [anon_sym_not_eq] = ACTIONS(7637), + [anon_sym_DASH_DASH] = ACTIONS(7637), + [anon_sym_PLUS_PLUS] = ACTIONS(7637), + [anon_sym_DOT] = ACTIONS(7635), + [anon_sym_DOT_STAR] = ACTIONS(7637), + [anon_sym_DASH_GT] = ACTIONS(7637), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7637), + [anon_sym_override] = ACTIONS(7637), + [anon_sym_requires] = ACTIONS(7637), }, - [STATE(3695)] = { - [sym_argument_list] = STATE(3786), - [sym_subscript_argument_list] = STATE(3784), - [sym_identifier] = ACTIONS(9290), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9292), - [anon_sym_COMMA] = ACTIONS(9292), - [anon_sym_RPAREN] = ACTIONS(9292), - [aux_sym_preproc_if_token2] = ACTIONS(9292), - [aux_sym_preproc_else_token1] = ACTIONS(9292), - [aux_sym_preproc_elif_token1] = ACTIONS(9290), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9292), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9292), - [anon_sym_LPAREN2] = ACTIONS(8808), - [anon_sym_DASH] = ACTIONS(9290), - [anon_sym_PLUS] = ACTIONS(9290), - [anon_sym_STAR] = ACTIONS(9290), - [anon_sym_SLASH] = ACTIONS(9290), - [anon_sym_PERCENT] = ACTIONS(9290), - [anon_sym_PIPE_PIPE] = ACTIONS(9292), - [anon_sym_AMP_AMP] = ACTIONS(9292), - [anon_sym_PIPE] = ACTIONS(9290), - [anon_sym_CARET] = ACTIONS(9290), - [anon_sym_AMP] = ACTIONS(9290), - [anon_sym_EQ_EQ] = ACTIONS(9292), - [anon_sym_BANG_EQ] = ACTIONS(9292), - [anon_sym_GT] = ACTIONS(9290), - [anon_sym_GT_EQ] = ACTIONS(9292), - [anon_sym_LT_EQ] = ACTIONS(9290), - [anon_sym_LT] = ACTIONS(9290), - [anon_sym_LT_LT] = ACTIONS(9290), - [anon_sym_GT_GT] = ACTIONS(9290), - [anon_sym_SEMI] = ACTIONS(9292), - [anon_sym___attribute__] = ACTIONS(9290), - [anon_sym___attribute] = ACTIONS(9290), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9292), - [anon_sym_RBRACE] = ACTIONS(9292), - [anon_sym_LBRACK] = ACTIONS(9236), - [anon_sym_EQ] = ACTIONS(9290), - [anon_sym_QMARK] = ACTIONS(9292), - [anon_sym_STAR_EQ] = ACTIONS(9292), - [anon_sym_SLASH_EQ] = ACTIONS(9292), - [anon_sym_PERCENT_EQ] = ACTIONS(9292), - [anon_sym_PLUS_EQ] = ACTIONS(9292), - [anon_sym_DASH_EQ] = ACTIONS(9292), - [anon_sym_LT_LT_EQ] = ACTIONS(9292), - [anon_sym_GT_GT_EQ] = ACTIONS(9292), - [anon_sym_AMP_EQ] = ACTIONS(9292), - [anon_sym_CARET_EQ] = ACTIONS(9292), - [anon_sym_PIPE_EQ] = ACTIONS(9292), - [anon_sym_and_eq] = ACTIONS(9290), - [anon_sym_or_eq] = ACTIONS(9290), - [anon_sym_xor_eq] = ACTIONS(9290), - [anon_sym_LT_EQ_GT] = ACTIONS(9292), - [anon_sym_or] = ACTIONS(9290), - [anon_sym_and] = ACTIONS(9290), - [anon_sym_bitor] = ACTIONS(9290), - [anon_sym_xor] = ACTIONS(9290), - [anon_sym_bitand] = ACTIONS(9290), - [anon_sym_not_eq] = ACTIONS(9290), - [anon_sym_DASH_DASH] = ACTIONS(9292), - [anon_sym_PLUS_PLUS] = ACTIONS(9292), - [anon_sym_DOT] = ACTIONS(9240), - [anon_sym_DOT_STAR] = ACTIONS(9242), - [anon_sym_DASH_GT] = ACTIONS(9242), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9292), + [STATE(3189)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7641), + [anon_sym_COMMA] = ACTIONS(7641), + [anon_sym_LPAREN2] = ACTIONS(7641), + [anon_sym_DASH] = ACTIONS(7639), + [anon_sym_PLUS] = ACTIONS(7639), + [anon_sym_STAR] = ACTIONS(7639), + [anon_sym_SLASH] = ACTIONS(7639), + [anon_sym_PERCENT] = ACTIONS(7639), + [anon_sym_PIPE_PIPE] = ACTIONS(7641), + [anon_sym_AMP_AMP] = ACTIONS(7641), + [anon_sym_PIPE] = ACTIONS(7639), + [anon_sym_CARET] = ACTIONS(7639), + [anon_sym_AMP] = ACTIONS(7639), + [anon_sym_EQ_EQ] = ACTIONS(7641), + [anon_sym_BANG_EQ] = ACTIONS(7641), + [anon_sym_GT] = ACTIONS(7639), + [anon_sym_GT_EQ] = ACTIONS(7641), + [anon_sym_LT_EQ] = ACTIONS(7639), + [anon_sym_LT] = ACTIONS(7639), + [anon_sym_LT_LT] = ACTIONS(7639), + [anon_sym_GT_GT] = ACTIONS(7639), + [anon_sym___extension__] = ACTIONS(7641), + [anon_sym_LBRACE] = ACTIONS(7641), + [anon_sym_LBRACK] = ACTIONS(7641), + [anon_sym_RBRACK] = ACTIONS(7641), + [anon_sym_EQ] = ACTIONS(7639), + [anon_sym_const] = ACTIONS(7639), + [anon_sym_constexpr] = ACTIONS(7641), + [anon_sym_volatile] = ACTIONS(7641), + [anon_sym_restrict] = ACTIONS(7641), + [anon_sym___restrict__] = ACTIONS(7641), + [anon_sym__Atomic] = ACTIONS(7641), + [anon_sym__Noreturn] = ACTIONS(7641), + [anon_sym_noreturn] = ACTIONS(7641), + [anon_sym__Nonnull] = ACTIONS(7641), + [anon_sym_mutable] = ACTIONS(7641), + [anon_sym_constinit] = ACTIONS(7641), + [anon_sym_consteval] = ACTIONS(7641), + [anon_sym_alignas] = ACTIONS(7641), + [anon_sym__Alignas] = ACTIONS(7641), + [anon_sym_QMARK] = ACTIONS(7641), + [anon_sym_STAR_EQ] = ACTIONS(7641), + [anon_sym_SLASH_EQ] = ACTIONS(7641), + [anon_sym_PERCENT_EQ] = ACTIONS(7641), + [anon_sym_PLUS_EQ] = ACTIONS(7641), + [anon_sym_DASH_EQ] = ACTIONS(7641), + [anon_sym_LT_LT_EQ] = ACTIONS(7641), + [anon_sym_GT_GT_EQ] = ACTIONS(7641), + [anon_sym_AMP_EQ] = ACTIONS(7641), + [anon_sym_CARET_EQ] = ACTIONS(7641), + [anon_sym_PIPE_EQ] = ACTIONS(7641), + [anon_sym_and_eq] = ACTIONS(7641), + [anon_sym_or_eq] = ACTIONS(7641), + [anon_sym_xor_eq] = ACTIONS(7641), + [anon_sym_LT_EQ_GT] = ACTIONS(7641), + [anon_sym_or] = ACTIONS(7639), + [anon_sym_and] = ACTIONS(7639), + [anon_sym_bitor] = ACTIONS(7641), + [anon_sym_xor] = ACTIONS(7639), + [anon_sym_bitand] = ACTIONS(7641), + [anon_sym_not_eq] = ACTIONS(7641), + [anon_sym_DASH_DASH] = ACTIONS(7641), + [anon_sym_PLUS_PLUS] = ACTIONS(7641), + [anon_sym_DOT] = ACTIONS(7639), + [anon_sym_DOT_STAR] = ACTIONS(7641), + [anon_sym_DASH_GT] = ACTIONS(7641), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7641), + [anon_sym_override] = ACTIONS(7641), + [anon_sym_requires] = ACTIONS(7641), }, - [STATE(3696)] = { - [sym_identifier] = ACTIONS(9294), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9296), - [anon_sym_COMMA] = ACTIONS(9296), - [anon_sym_RPAREN] = ACTIONS(9296), - [aux_sym_preproc_if_token2] = ACTIONS(9296), - [aux_sym_preproc_else_token1] = ACTIONS(9296), - [aux_sym_preproc_elif_token1] = ACTIONS(9294), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9296), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9296), - [anon_sym_LPAREN2] = ACTIONS(9296), - [anon_sym_DASH] = ACTIONS(9294), - [anon_sym_PLUS] = ACTIONS(9294), - [anon_sym_STAR] = ACTIONS(9294), - [anon_sym_SLASH] = ACTIONS(9294), - [anon_sym_PERCENT] = ACTIONS(9294), - [anon_sym_PIPE_PIPE] = ACTIONS(9296), - [anon_sym_AMP_AMP] = ACTIONS(9296), - [anon_sym_PIPE] = ACTIONS(9294), - [anon_sym_CARET] = ACTIONS(9294), - [anon_sym_AMP] = ACTIONS(9294), - [anon_sym_EQ_EQ] = ACTIONS(9296), - [anon_sym_BANG_EQ] = ACTIONS(9296), - [anon_sym_GT] = ACTIONS(9294), - [anon_sym_GT_EQ] = ACTIONS(9296), - [anon_sym_LT_EQ] = ACTIONS(9294), - [anon_sym_LT] = ACTIONS(9294), - [anon_sym_LT_LT] = ACTIONS(9294), - [anon_sym_GT_GT] = ACTIONS(9294), - [anon_sym_SEMI] = ACTIONS(9296), - [anon_sym___attribute__] = ACTIONS(9294), - [anon_sym___attribute] = ACTIONS(9294), - [anon_sym_COLON] = ACTIONS(9294), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9296), - [anon_sym_LBRACE] = ACTIONS(9296), - [anon_sym_RBRACE] = ACTIONS(9296), - [anon_sym_LBRACK] = ACTIONS(9296), - [anon_sym_EQ] = ACTIONS(9294), - [anon_sym_QMARK] = ACTIONS(9296), - [anon_sym_STAR_EQ] = ACTIONS(9296), - [anon_sym_SLASH_EQ] = ACTIONS(9296), - [anon_sym_PERCENT_EQ] = ACTIONS(9296), - [anon_sym_PLUS_EQ] = ACTIONS(9296), - [anon_sym_DASH_EQ] = ACTIONS(9296), - [anon_sym_LT_LT_EQ] = ACTIONS(9296), - [anon_sym_GT_GT_EQ] = ACTIONS(9296), - [anon_sym_AMP_EQ] = ACTIONS(9296), - [anon_sym_CARET_EQ] = ACTIONS(9296), - [anon_sym_PIPE_EQ] = ACTIONS(9296), - [anon_sym_and_eq] = ACTIONS(9294), - [anon_sym_or_eq] = ACTIONS(9294), - [anon_sym_xor_eq] = ACTIONS(9294), - [anon_sym_LT_EQ_GT] = ACTIONS(9296), - [anon_sym_or] = ACTIONS(9294), - [anon_sym_and] = ACTIONS(9294), - [anon_sym_bitor] = ACTIONS(9294), - [anon_sym_xor] = ACTIONS(9294), - [anon_sym_bitand] = ACTIONS(9294), - [anon_sym_not_eq] = ACTIONS(9294), - [anon_sym_DASH_DASH] = ACTIONS(9296), - [anon_sym_PLUS_PLUS] = ACTIONS(9296), - [anon_sym_DOT] = ACTIONS(9294), - [anon_sym_DOT_STAR] = ACTIONS(9296), - [anon_sym_DASH_GT] = ACTIONS(9296), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9296), + [STATE(3190)] = { + [sym_identifier] = ACTIONS(7739), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7741), + [anon_sym_COMMA] = ACTIONS(7741), + [anon_sym_RPAREN] = ACTIONS(7741), + [anon_sym_LPAREN2] = ACTIONS(7741), + [anon_sym_DASH] = ACTIONS(7739), + [anon_sym_PLUS] = ACTIONS(7739), + [anon_sym_STAR] = ACTIONS(7741), + [anon_sym_SLASH] = ACTIONS(7739), + [anon_sym_PERCENT] = ACTIONS(7741), + [anon_sym_PIPE_PIPE] = ACTIONS(7741), + [anon_sym_AMP_AMP] = ACTIONS(7741), + [anon_sym_PIPE] = ACTIONS(7739), + [anon_sym_CARET] = ACTIONS(7741), + [anon_sym_AMP] = ACTIONS(7739), + [anon_sym_EQ_EQ] = ACTIONS(7741), + [anon_sym_BANG_EQ] = ACTIONS(7741), + [anon_sym_GT] = ACTIONS(7739), + [anon_sym_GT_EQ] = ACTIONS(7741), + [anon_sym_LT_EQ] = ACTIONS(7739), + [anon_sym_LT] = ACTIONS(7739), + [anon_sym_LT_LT] = ACTIONS(7741), + [anon_sym_GT_GT] = ACTIONS(7741), + [anon_sym_SEMI] = ACTIONS(7741), + [anon_sym___extension__] = ACTIONS(7739), + [anon_sym___attribute__] = ACTIONS(7739), + [anon_sym___attribute] = ACTIONS(7739), + [anon_sym_COLON] = ACTIONS(7739), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7741), + [anon_sym___based] = ACTIONS(7739), + [anon_sym_LBRACE] = ACTIONS(7741), + [anon_sym_RBRACE] = ACTIONS(7741), + [anon_sym_signed] = ACTIONS(7739), + [anon_sym_unsigned] = ACTIONS(7739), + [anon_sym_long] = ACTIONS(7739), + [anon_sym_short] = ACTIONS(7739), + [anon_sym_LBRACK] = ACTIONS(7741), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7739), + [anon_sym_volatile] = ACTIONS(7739), + [anon_sym_restrict] = ACTIONS(7739), + [anon_sym___restrict__] = ACTIONS(7739), + [anon_sym__Atomic] = ACTIONS(7739), + [anon_sym__Noreturn] = ACTIONS(7739), + [anon_sym_noreturn] = ACTIONS(7739), + [anon_sym__Nonnull] = ACTIONS(7739), + [anon_sym_mutable] = ACTIONS(7739), + [anon_sym_constinit] = ACTIONS(7739), + [anon_sym_consteval] = ACTIONS(7739), + [anon_sym_alignas] = ACTIONS(7739), + [anon_sym__Alignas] = ACTIONS(7739), + [sym_primitive_type] = ACTIONS(7739), + [anon_sym_QMARK] = ACTIONS(7741), + [anon_sym_LT_EQ_GT] = ACTIONS(7741), + [anon_sym_or] = ACTIONS(7739), + [anon_sym_and] = ACTIONS(7739), + [anon_sym_bitor] = ACTIONS(7739), + [anon_sym_xor] = ACTIONS(7739), + [anon_sym_bitand] = ACTIONS(7739), + [anon_sym_not_eq] = ACTIONS(7739), + [anon_sym_DASH_DASH] = ACTIONS(7741), + [anon_sym_PLUS_PLUS] = ACTIONS(7741), + [anon_sym_DOT] = ACTIONS(7739), + [anon_sym_DOT_STAR] = ACTIONS(7741), + [anon_sym_DASH_GT] = ACTIONS(7741), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7739), + [anon_sym_override] = ACTIONS(7739), + [anon_sym_requires] = ACTIONS(7739), + [anon_sym_COLON_RBRACK] = ACTIONS(7741), }, - [STATE(3697)] = { - [sym_type_qualifier] = STATE(3714), - [sym_alignas_qualifier] = STATE(3736), - [aux_sym__type_definition_type_repeat1] = STATE(3714), - [aux_sym_sized_type_specifier_repeat1] = STATE(4013), - [sym_identifier] = ACTIONS(8847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), - [anon_sym_COMMA] = ACTIONS(6812), - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_DASH] = ACTIONS(6814), - [anon_sym_PLUS] = ACTIONS(6814), - [anon_sym_STAR] = ACTIONS(6812), - [anon_sym_SLASH] = ACTIONS(6814), - [anon_sym_PERCENT] = ACTIONS(6812), - [anon_sym_PIPE_PIPE] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_PIPE] = ACTIONS(6814), - [anon_sym_CARET] = ACTIONS(6812), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_EQ_EQ] = ACTIONS(6812), - [anon_sym_BANG_EQ] = ACTIONS(6812), - [anon_sym_GT] = ACTIONS(6814), - [anon_sym_GT_EQ] = ACTIONS(6812), - [anon_sym_LT_EQ] = ACTIONS(6814), - [anon_sym_LT] = ACTIONS(6814), - [anon_sym_LT_LT] = ACTIONS(6812), - [anon_sym_GT_GT] = ACTIONS(6812), - [anon_sym___extension__] = ACTIONS(9298), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_signed] = ACTIONS(9300), - [anon_sym_unsigned] = ACTIONS(9300), - [anon_sym_long] = ACTIONS(9300), - [anon_sym_short] = ACTIONS(9300), - [anon_sym_LBRACK] = ACTIONS(6812), - [anon_sym_RBRACK] = ACTIONS(6812), - [anon_sym_const] = ACTIONS(9298), - [anon_sym_constexpr] = ACTIONS(9298), - [anon_sym_volatile] = ACTIONS(9298), - [anon_sym_restrict] = ACTIONS(9298), - [anon_sym___restrict__] = ACTIONS(9298), - [anon_sym__Atomic] = ACTIONS(9298), - [anon_sym__Noreturn] = ACTIONS(9298), - [anon_sym_noreturn] = ACTIONS(9298), - [anon_sym__Nonnull] = ACTIONS(9298), - [anon_sym_mutable] = ACTIONS(9298), - [anon_sym_constinit] = ACTIONS(9298), - [anon_sym_consteval] = ACTIONS(9298), - [anon_sym_alignas] = ACTIONS(9302), - [anon_sym__Alignas] = ACTIONS(9302), - [sym_primitive_type] = ACTIONS(8510), - [anon_sym_QMARK] = ACTIONS(6812), - [anon_sym_LT_EQ_GT] = ACTIONS(6812), - [anon_sym_or] = ACTIONS(6814), - [anon_sym_and] = ACTIONS(6814), - [anon_sym_bitor] = ACTIONS(6814), - [anon_sym_xor] = ACTIONS(6814), - [anon_sym_bitand] = ACTIONS(6814), - [anon_sym_not_eq] = ACTIONS(6814), - [anon_sym_DASH_DASH] = ACTIONS(6812), - [anon_sym_PLUS_PLUS] = ACTIONS(6812), - [anon_sym_DOT] = ACTIONS(6814), - [anon_sym_DOT_STAR] = ACTIONS(6812), - [anon_sym_DASH_GT] = ACTIONS(6812), - [sym_comment] = ACTIONS(3), + [STATE(3191)] = { + [sym_identifier] = ACTIONS(7659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7661), + [anon_sym_COMMA] = ACTIONS(7661), + [anon_sym_RPAREN] = ACTIONS(7661), + [anon_sym_LPAREN2] = ACTIONS(7661), + [anon_sym_DASH] = ACTIONS(7659), + [anon_sym_PLUS] = ACTIONS(7659), + [anon_sym_STAR] = ACTIONS(7661), + [anon_sym_SLASH] = ACTIONS(7659), + [anon_sym_PERCENT] = ACTIONS(7661), + [anon_sym_PIPE_PIPE] = ACTIONS(7661), + [anon_sym_AMP_AMP] = ACTIONS(7661), + [anon_sym_PIPE] = ACTIONS(7659), + [anon_sym_CARET] = ACTIONS(7661), + [anon_sym_AMP] = ACTIONS(7659), + [anon_sym_EQ_EQ] = ACTIONS(7661), + [anon_sym_BANG_EQ] = ACTIONS(7661), + [anon_sym_GT] = ACTIONS(7659), + [anon_sym_GT_EQ] = ACTIONS(7661), + [anon_sym_LT_EQ] = ACTIONS(7659), + [anon_sym_LT] = ACTIONS(7659), + [anon_sym_LT_LT] = ACTIONS(7661), + [anon_sym_GT_GT] = ACTIONS(7661), + [anon_sym_SEMI] = ACTIONS(7661), + [anon_sym___extension__] = ACTIONS(7659), + [anon_sym___attribute__] = ACTIONS(7659), + [anon_sym___attribute] = ACTIONS(7659), + [anon_sym_COLON] = ACTIONS(7659), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7661), + [anon_sym___based] = ACTIONS(7659), + [anon_sym_LBRACE] = ACTIONS(7661), + [anon_sym_RBRACE] = ACTIONS(7661), + [anon_sym_signed] = ACTIONS(7659), + [anon_sym_unsigned] = ACTIONS(7659), + [anon_sym_long] = ACTIONS(7659), + [anon_sym_short] = ACTIONS(7659), + [anon_sym_LBRACK] = ACTIONS(7661), + [anon_sym_const] = ACTIONS(7659), + [anon_sym_constexpr] = ACTIONS(7659), + [anon_sym_volatile] = ACTIONS(7659), + [anon_sym_restrict] = ACTIONS(7659), + [anon_sym___restrict__] = ACTIONS(7659), + [anon_sym__Atomic] = ACTIONS(7659), + [anon_sym__Noreturn] = ACTIONS(7659), + [anon_sym_noreturn] = ACTIONS(7659), + [anon_sym__Nonnull] = ACTIONS(7659), + [anon_sym_mutable] = ACTIONS(7659), + [anon_sym_constinit] = ACTIONS(7659), + [anon_sym_consteval] = ACTIONS(7659), + [anon_sym_alignas] = ACTIONS(7659), + [anon_sym__Alignas] = ACTIONS(7659), + [sym_primitive_type] = ACTIONS(7659), + [anon_sym_QMARK] = ACTIONS(7661), + [anon_sym_LT_EQ_GT] = ACTIONS(7661), + [anon_sym_or] = ACTIONS(7659), + [anon_sym_and] = ACTIONS(7659), + [anon_sym_bitor] = ACTIONS(7659), + [anon_sym_xor] = ACTIONS(7659), + [anon_sym_bitand] = ACTIONS(7659), + [anon_sym_not_eq] = ACTIONS(7659), + [anon_sym_DASH_DASH] = ACTIONS(7661), + [anon_sym_PLUS_PLUS] = ACTIONS(7661), + [anon_sym_DOT] = ACTIONS(7659), + [anon_sym_DOT_STAR] = ACTIONS(7661), + [anon_sym_DASH_GT] = ACTIONS(7661), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7659), + [anon_sym_override] = ACTIONS(7659), + [anon_sym_requires] = ACTIONS(7659), + [anon_sym_COLON_RBRACK] = ACTIONS(7661), }, - [STATE(3698)] = { - [sym_identifier] = ACTIONS(9304), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9306), - [anon_sym_COMMA] = ACTIONS(9306), - [anon_sym_RPAREN] = ACTIONS(9306), - [aux_sym_preproc_if_token2] = ACTIONS(9306), - [aux_sym_preproc_else_token1] = ACTIONS(9306), - [aux_sym_preproc_elif_token1] = ACTIONS(9304), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9306), - [anon_sym_LPAREN2] = ACTIONS(9306), - [anon_sym_DASH] = ACTIONS(9304), - [anon_sym_PLUS] = ACTIONS(9304), - [anon_sym_STAR] = ACTIONS(9304), - [anon_sym_SLASH] = ACTIONS(9304), - [anon_sym_PERCENT] = ACTIONS(9304), - [anon_sym_PIPE_PIPE] = ACTIONS(9306), - [anon_sym_AMP_AMP] = ACTIONS(9306), - [anon_sym_PIPE] = ACTIONS(9304), - [anon_sym_CARET] = ACTIONS(9304), - [anon_sym_AMP] = ACTIONS(9304), - [anon_sym_EQ_EQ] = ACTIONS(9306), - [anon_sym_BANG_EQ] = ACTIONS(9306), - [anon_sym_GT] = ACTIONS(9304), - [anon_sym_GT_EQ] = ACTIONS(9306), - [anon_sym_LT_EQ] = ACTIONS(9304), - [anon_sym_LT] = ACTIONS(9304), - [anon_sym_LT_LT] = ACTIONS(9304), - [anon_sym_GT_GT] = ACTIONS(9304), - [anon_sym_SEMI] = ACTIONS(9306), - [anon_sym___attribute__] = ACTIONS(9304), - [anon_sym___attribute] = ACTIONS(9304), - [anon_sym_COLON] = ACTIONS(9304), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9306), - [anon_sym_LBRACE] = ACTIONS(9306), - [anon_sym_RBRACE] = ACTIONS(9306), - [anon_sym_LBRACK] = ACTIONS(9306), - [anon_sym_EQ] = ACTIONS(9304), - [anon_sym_QMARK] = ACTIONS(9306), - [anon_sym_STAR_EQ] = ACTIONS(9306), - [anon_sym_SLASH_EQ] = ACTIONS(9306), - [anon_sym_PERCENT_EQ] = ACTIONS(9306), - [anon_sym_PLUS_EQ] = ACTIONS(9306), - [anon_sym_DASH_EQ] = ACTIONS(9306), - [anon_sym_LT_LT_EQ] = ACTIONS(9306), - [anon_sym_GT_GT_EQ] = ACTIONS(9306), - [anon_sym_AMP_EQ] = ACTIONS(9306), - [anon_sym_CARET_EQ] = ACTIONS(9306), - [anon_sym_PIPE_EQ] = ACTIONS(9306), - [anon_sym_and_eq] = ACTIONS(9304), - [anon_sym_or_eq] = ACTIONS(9304), - [anon_sym_xor_eq] = ACTIONS(9304), - [anon_sym_LT_EQ_GT] = ACTIONS(9306), - [anon_sym_or] = ACTIONS(9304), - [anon_sym_and] = ACTIONS(9304), - [anon_sym_bitor] = ACTIONS(9304), - [anon_sym_xor] = ACTIONS(9304), - [anon_sym_bitand] = ACTIONS(9304), - [anon_sym_not_eq] = ACTIONS(9304), - [anon_sym_DASH_DASH] = ACTIONS(9306), - [anon_sym_PLUS_PLUS] = ACTIONS(9306), - [anon_sym_DOT] = ACTIONS(9304), - [anon_sym_DOT_STAR] = ACTIONS(9306), - [anon_sym_DASH_GT] = ACTIONS(9306), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9306), + [STATE(3192)] = { + [sym_identifier] = ACTIONS(7717), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), + [anon_sym_COMMA] = ACTIONS(7719), + [anon_sym_RPAREN] = ACTIONS(7719), + [anon_sym_LPAREN2] = ACTIONS(7719), + [anon_sym_DASH] = ACTIONS(7717), + [anon_sym_PLUS] = ACTIONS(7717), + [anon_sym_STAR] = ACTIONS(7719), + [anon_sym_SLASH] = ACTIONS(7717), + [anon_sym_PERCENT] = ACTIONS(7719), + [anon_sym_PIPE_PIPE] = ACTIONS(7719), + [anon_sym_AMP_AMP] = ACTIONS(7719), + [anon_sym_PIPE] = ACTIONS(7717), + [anon_sym_CARET] = ACTIONS(7719), + [anon_sym_AMP] = ACTIONS(7717), + [anon_sym_EQ_EQ] = ACTIONS(7719), + [anon_sym_BANG_EQ] = ACTIONS(7719), + [anon_sym_GT] = ACTIONS(7717), + [anon_sym_GT_EQ] = ACTIONS(7719), + [anon_sym_LT_EQ] = ACTIONS(7717), + [anon_sym_LT] = ACTIONS(7717), + [anon_sym_LT_LT] = ACTIONS(7719), + [anon_sym_GT_GT] = ACTIONS(7719), + [anon_sym_SEMI] = ACTIONS(7719), + [anon_sym___extension__] = ACTIONS(7717), + [anon_sym___attribute__] = ACTIONS(7717), + [anon_sym___attribute] = ACTIONS(7717), + [anon_sym_COLON] = ACTIONS(7717), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7719), + [anon_sym___based] = ACTIONS(7717), + [anon_sym_LBRACE] = ACTIONS(7719), + [anon_sym_RBRACE] = ACTIONS(7719), + [anon_sym_signed] = ACTIONS(7717), + [anon_sym_unsigned] = ACTIONS(7717), + [anon_sym_long] = ACTIONS(7717), + [anon_sym_short] = ACTIONS(7717), + [anon_sym_LBRACK] = ACTIONS(7719), + [anon_sym_const] = ACTIONS(7717), + [anon_sym_constexpr] = ACTIONS(7717), + [anon_sym_volatile] = ACTIONS(7717), + [anon_sym_restrict] = ACTIONS(7717), + [anon_sym___restrict__] = ACTIONS(7717), + [anon_sym__Atomic] = ACTIONS(7717), + [anon_sym__Noreturn] = ACTIONS(7717), + [anon_sym_noreturn] = ACTIONS(7717), + [anon_sym__Nonnull] = ACTIONS(7717), + [anon_sym_mutable] = ACTIONS(7717), + [anon_sym_constinit] = ACTIONS(7717), + [anon_sym_consteval] = ACTIONS(7717), + [anon_sym_alignas] = ACTIONS(7717), + [anon_sym__Alignas] = ACTIONS(7717), + [sym_primitive_type] = ACTIONS(7717), + [anon_sym_QMARK] = ACTIONS(7719), + [anon_sym_LT_EQ_GT] = ACTIONS(7719), + [anon_sym_or] = ACTIONS(7717), + [anon_sym_and] = ACTIONS(7717), + [anon_sym_bitor] = ACTIONS(7717), + [anon_sym_xor] = ACTIONS(7717), + [anon_sym_bitand] = ACTIONS(7717), + [anon_sym_not_eq] = ACTIONS(7717), + [anon_sym_DASH_DASH] = ACTIONS(7719), + [anon_sym_PLUS_PLUS] = ACTIONS(7719), + [anon_sym_DOT] = ACTIONS(7717), + [anon_sym_DOT_STAR] = ACTIONS(7719), + [anon_sym_DASH_GT] = ACTIONS(7719), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7717), + [anon_sym_override] = ACTIONS(7717), + [anon_sym_requires] = ACTIONS(7717), + [anon_sym_COLON_RBRACK] = ACTIONS(7719), }, - [STATE(3699)] = { - [sym_ms_based_modifier] = STATE(10656), - [sym__declarator] = STATE(8646), - [sym__abstract_declarator] = STATE(8923), - [sym_parenthesized_declarator] = STATE(8469), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_function_declarator] = STATE(8469), - [sym_abstract_function_declarator] = STATE(8389), - [sym_array_declarator] = STATE(8469), - [sym_abstract_array_declarator] = STATE(8389), - [sym_type_qualifier] = STATE(6842), - [sym_alignas_qualifier] = STATE(7436), - [sym_parameter_list] = STATE(5185), - [sym_decltype] = STATE(10976), - [sym_reference_declarator] = STATE(8469), - [sym_abstract_reference_declarator] = STATE(8389), - [sym_structured_binding_declarator] = STATE(8469), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7878), - [sym_qualified_identifier] = STATE(8469), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__type_definition_type_repeat1] = STATE(6842), - [sym_identifier] = ACTIONS(8195), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN2] = ACTIONS(5301), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(8307), - [anon_sym_AMP_AMP] = ACTIONS(8309), - [anon_sym_AMP] = ACTIONS(8311), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(6495), - [anon_sym___attribute] = ACTIONS(6495), - [anon_sym_COLON_COLON] = ACTIONS(8203), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(5311), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym__Nonnull] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2939), - [anon_sym__Alignas] = ACTIONS(2939), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_GT2] = ACTIONS(6497), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), + [STATE(3193)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6605), + [anon_sym_PLUS] = ACTIONS(6605), + [anon_sym_STAR] = ACTIONS(6605), + [anon_sym_SLASH] = ACTIONS(6605), + [anon_sym_PERCENT] = ACTIONS(6605), + [anon_sym_PIPE_PIPE] = ACTIONS(6598), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6605), + [anon_sym_CARET] = ACTIONS(6605), + [anon_sym_AMP] = ACTIONS(6605), + [anon_sym_EQ_EQ] = ACTIONS(6598), + [anon_sym_BANG_EQ] = ACTIONS(6598), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6605), + [anon_sym_LT_EQ] = ACTIONS(6605), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6605), + [anon_sym_GT_GT] = ACTIONS(6605), + [anon_sym___extension__] = ACTIONS(6601), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_LBRACK] = ACTIONS(6598), + [anon_sym_EQ] = ACTIONS(6605), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6601), + [anon_sym_volatile] = ACTIONS(6601), + [anon_sym_restrict] = ACTIONS(6601), + [anon_sym___restrict__] = ACTIONS(6601), + [anon_sym__Atomic] = ACTIONS(6601), + [anon_sym__Noreturn] = ACTIONS(6601), + [anon_sym_noreturn] = ACTIONS(6601), + [anon_sym__Nonnull] = ACTIONS(6601), + [anon_sym_mutable] = ACTIONS(6601), + [anon_sym_constinit] = ACTIONS(6601), + [anon_sym_consteval] = ACTIONS(6601), + [anon_sym_alignas] = ACTIONS(6601), + [anon_sym__Alignas] = ACTIONS(6601), + [anon_sym_QMARK] = ACTIONS(6598), + [anon_sym_STAR_EQ] = ACTIONS(6598), + [anon_sym_SLASH_EQ] = ACTIONS(6598), + [anon_sym_PERCENT_EQ] = ACTIONS(6598), + [anon_sym_PLUS_EQ] = ACTIONS(6598), + [anon_sym_DASH_EQ] = ACTIONS(6598), + [anon_sym_LT_LT_EQ] = ACTIONS(6598), + [anon_sym_GT_GT_EQ] = ACTIONS(6605), + [anon_sym_AMP_EQ] = ACTIONS(6598), + [anon_sym_CARET_EQ] = ACTIONS(6598), + [anon_sym_PIPE_EQ] = ACTIONS(6598), + [anon_sym_and_eq] = ACTIONS(6598), + [anon_sym_or_eq] = ACTIONS(6598), + [anon_sym_xor_eq] = ACTIONS(6598), + [anon_sym_LT_EQ_GT] = ACTIONS(6598), + [anon_sym_or] = ACTIONS(6605), + [anon_sym_and] = ACTIONS(6605), + [anon_sym_bitor] = ACTIONS(6598), + [anon_sym_xor] = ACTIONS(6605), + [anon_sym_bitand] = ACTIONS(6598), + [anon_sym_not_eq] = ACTIONS(6598), + [anon_sym_DASH_DASH] = ACTIONS(6598), + [anon_sym_PLUS_PLUS] = ACTIONS(6598), + [anon_sym_DOT] = ACTIONS(6605), + [anon_sym_DOT_STAR] = ACTIONS(6598), + [anon_sym_DASH_GT] = ACTIONS(6598), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6601), + [anon_sym_decltype] = ACTIONS(6601), + [anon_sym_GT2] = ACTIONS(6598), }, - [STATE(3700)] = { - [sym_ms_based_modifier] = STATE(10656), - [sym__declarator] = STATE(8705), - [sym__abstract_declarator] = STATE(8889), - [sym_parenthesized_declarator] = STATE(8469), - [sym_abstract_parenthesized_declarator] = STATE(8389), - [sym_attributed_declarator] = STATE(8469), - [sym_pointer_declarator] = STATE(8469), - [sym_abstract_pointer_declarator] = STATE(8389), - [sym_function_declarator] = STATE(8469), - [sym_abstract_function_declarator] = STATE(8389), - [sym_array_declarator] = STATE(8469), - [sym_abstract_array_declarator] = STATE(8389), - [sym_type_qualifier] = STATE(6842), - [sym_alignas_qualifier] = STATE(7436), - [sym_parameter_list] = STATE(5256), - [sym_decltype] = STATE(10976), - [sym_reference_declarator] = STATE(8469), - [sym_abstract_reference_declarator] = STATE(8389), - [sym_structured_binding_declarator] = STATE(8469), - [sym__function_declarator_seq] = STATE(8393), - [sym_template_type] = STATE(10976), - [sym_template_function] = STATE(8469), - [sym_destructor_name] = STATE(8469), - [sym_dependent_type_identifier] = STATE(10976), - [sym__scope_resolution] = STATE(7878), - [sym_qualified_identifier] = STATE(8469), - [sym_splice_specifier] = STATE(8089), - [sym__splice_specialization_specifier] = STATE(3682), - [sym_splice_type_specifier] = STATE(10976), - [sym_splice_expression] = STATE(10976), - [sym_operator_name] = STATE(8469), - [aux_sym__type_definition_type_repeat1] = STATE(6842), - [sym_identifier] = ACTIONS(8195), - [anon_sym_COMMA] = ACTIONS(7007), - [anon_sym_RPAREN] = ACTIONS(7007), - [anon_sym_LPAREN2] = ACTIONS(5301), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(8424), - [anon_sym_AMP_AMP] = ACTIONS(8426), - [anon_sym_AMP] = ACTIONS(8428), - [anon_sym___extension__] = ACTIONS(2937), - [anon_sym___attribute__] = ACTIONS(7009), - [anon_sym___attribute] = ACTIONS(7009), - [anon_sym_COLON_COLON] = ACTIONS(8203), + [STATE(3194)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7657), + [anon_sym_COMMA] = ACTIONS(7657), + [anon_sym_LPAREN2] = ACTIONS(7657), + [anon_sym_DASH] = ACTIONS(7655), + [anon_sym_PLUS] = ACTIONS(7655), + [anon_sym_STAR] = ACTIONS(7655), + [anon_sym_SLASH] = ACTIONS(7655), + [anon_sym_PERCENT] = ACTIONS(7655), + [anon_sym_PIPE_PIPE] = ACTIONS(7657), + [anon_sym_AMP_AMP] = ACTIONS(7657), + [anon_sym_PIPE] = ACTIONS(7655), + [anon_sym_CARET] = ACTIONS(7655), + [anon_sym_AMP] = ACTIONS(7655), + [anon_sym_EQ_EQ] = ACTIONS(7657), + [anon_sym_BANG_EQ] = ACTIONS(7657), + [anon_sym_GT] = ACTIONS(7655), + [anon_sym_GT_EQ] = ACTIONS(7657), + [anon_sym_LT_EQ] = ACTIONS(7655), + [anon_sym_LT] = ACTIONS(7655), + [anon_sym_LT_LT] = ACTIONS(7655), + [anon_sym_GT_GT] = ACTIONS(7655), + [anon_sym___extension__] = ACTIONS(7657), + [anon_sym_LBRACE] = ACTIONS(7657), + [anon_sym_LBRACK] = ACTIONS(7657), + [anon_sym_RBRACK] = ACTIONS(7657), + [anon_sym_EQ] = ACTIONS(7655), + [anon_sym_const] = ACTIONS(7655), + [anon_sym_constexpr] = ACTIONS(7657), + [anon_sym_volatile] = ACTIONS(7657), + [anon_sym_restrict] = ACTIONS(7657), + [anon_sym___restrict__] = ACTIONS(7657), + [anon_sym__Atomic] = ACTIONS(7657), + [anon_sym__Noreturn] = ACTIONS(7657), + [anon_sym_noreturn] = ACTIONS(7657), + [anon_sym__Nonnull] = ACTIONS(7657), + [anon_sym_mutable] = ACTIONS(7657), + [anon_sym_constinit] = ACTIONS(7657), + [anon_sym_consteval] = ACTIONS(7657), + [anon_sym_alignas] = ACTIONS(7657), + [anon_sym__Alignas] = ACTIONS(7657), + [anon_sym_QMARK] = ACTIONS(7657), + [anon_sym_STAR_EQ] = ACTIONS(7657), + [anon_sym_SLASH_EQ] = ACTIONS(7657), + [anon_sym_PERCENT_EQ] = ACTIONS(7657), + [anon_sym_PLUS_EQ] = ACTIONS(7657), + [anon_sym_DASH_EQ] = ACTIONS(7657), + [anon_sym_LT_LT_EQ] = ACTIONS(7657), + [anon_sym_GT_GT_EQ] = ACTIONS(7657), + [anon_sym_AMP_EQ] = ACTIONS(7657), + [anon_sym_CARET_EQ] = ACTIONS(7657), + [anon_sym_PIPE_EQ] = ACTIONS(7657), + [anon_sym_and_eq] = ACTIONS(7657), + [anon_sym_or_eq] = ACTIONS(7657), + [anon_sym_xor_eq] = ACTIONS(7657), + [anon_sym_LT_EQ_GT] = ACTIONS(7657), + [anon_sym_or] = ACTIONS(7655), + [anon_sym_and] = ACTIONS(7655), + [anon_sym_bitor] = ACTIONS(7657), + [anon_sym_xor] = ACTIONS(7655), + [anon_sym_bitand] = ACTIONS(7657), + [anon_sym_not_eq] = ACTIONS(7657), + [anon_sym_DASH_DASH] = ACTIONS(7657), + [anon_sym_PLUS_PLUS] = ACTIONS(7657), + [anon_sym_DOT] = ACTIONS(7655), + [anon_sym_DOT_STAR] = ACTIONS(7657), + [anon_sym_DASH_GT] = ACTIONS(7657), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_override] = ACTIONS(7657), + [anon_sym_requires] = ACTIONS(7657), + }, + [STATE(3195)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), + [anon_sym_COMMA] = ACTIONS(7563), + [anon_sym_LPAREN2] = ACTIONS(7563), + [anon_sym_DASH] = ACTIONS(7561), + [anon_sym_PLUS] = ACTIONS(7561), + [anon_sym_STAR] = ACTIONS(7561), + [anon_sym_SLASH] = ACTIONS(7561), + [anon_sym_PERCENT] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_AMP_AMP] = ACTIONS(7563), + [anon_sym_PIPE] = ACTIONS(7561), + [anon_sym_CARET] = ACTIONS(7561), + [anon_sym_AMP] = ACTIONS(7561), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_GT] = ACTIONS(7561), + [anon_sym_GT_EQ] = ACTIONS(7563), + [anon_sym_LT_EQ] = ACTIONS(7561), + [anon_sym_LT] = ACTIONS(7561), + [anon_sym_LT_LT] = ACTIONS(7561), + [anon_sym_GT_GT] = ACTIONS(7561), + [anon_sym___extension__] = ACTIONS(7563), + [anon_sym_LBRACE] = ACTIONS(7563), + [anon_sym_LBRACK] = ACTIONS(7563), + [anon_sym_RBRACK] = ACTIONS(7563), + [anon_sym_EQ] = ACTIONS(7561), + [anon_sym_const] = ACTIONS(7561), + [anon_sym_constexpr] = ACTIONS(7563), + [anon_sym_volatile] = ACTIONS(7563), + [anon_sym_restrict] = ACTIONS(7563), + [anon_sym___restrict__] = ACTIONS(7563), + [anon_sym__Atomic] = ACTIONS(7563), + [anon_sym__Noreturn] = ACTIONS(7563), + [anon_sym_noreturn] = ACTIONS(7563), + [anon_sym__Nonnull] = ACTIONS(7563), + [anon_sym_mutable] = ACTIONS(7563), + [anon_sym_constinit] = ACTIONS(7563), + [anon_sym_consteval] = ACTIONS(7563), + [anon_sym_alignas] = ACTIONS(7563), + [anon_sym__Alignas] = ACTIONS(7563), + [anon_sym_QMARK] = ACTIONS(7563), + [anon_sym_STAR_EQ] = ACTIONS(7563), + [anon_sym_SLASH_EQ] = ACTIONS(7563), + [anon_sym_PERCENT_EQ] = ACTIONS(7563), + [anon_sym_PLUS_EQ] = ACTIONS(7563), + [anon_sym_DASH_EQ] = ACTIONS(7563), + [anon_sym_LT_LT_EQ] = ACTIONS(7563), + [anon_sym_GT_GT_EQ] = ACTIONS(7563), + [anon_sym_AMP_EQ] = ACTIONS(7563), + [anon_sym_CARET_EQ] = ACTIONS(7563), + [anon_sym_PIPE_EQ] = ACTIONS(7563), + [anon_sym_and_eq] = ACTIONS(7563), + [anon_sym_or_eq] = ACTIONS(7563), + [anon_sym_xor_eq] = ACTIONS(7563), + [anon_sym_LT_EQ_GT] = ACTIONS(7563), + [anon_sym_or] = ACTIONS(7561), + [anon_sym_and] = ACTIONS(7561), + [anon_sym_bitor] = ACTIONS(7563), + [anon_sym_xor] = ACTIONS(7561), + [anon_sym_bitand] = ACTIONS(7563), + [anon_sym_not_eq] = ACTIONS(7563), + [anon_sym_DASH_DASH] = ACTIONS(7563), + [anon_sym_PLUS_PLUS] = ACTIONS(7563), + [anon_sym_DOT] = ACTIONS(7561), + [anon_sym_DOT_STAR] = ACTIONS(7563), + [anon_sym_DASH_GT] = ACTIONS(7563), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7563), + [anon_sym_override] = ACTIONS(7563), + [anon_sym_requires] = ACTIONS(7563), + }, + [STATE(3196)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7601), + [anon_sym_COMMA] = ACTIONS(7601), + [anon_sym_LPAREN2] = ACTIONS(7601), + [anon_sym_DASH] = ACTIONS(7599), + [anon_sym_PLUS] = ACTIONS(7599), + [anon_sym_STAR] = ACTIONS(7599), + [anon_sym_SLASH] = ACTIONS(7599), + [anon_sym_PERCENT] = ACTIONS(7599), + [anon_sym_PIPE_PIPE] = ACTIONS(7601), + [anon_sym_AMP_AMP] = ACTIONS(7601), + [anon_sym_PIPE] = ACTIONS(7599), + [anon_sym_CARET] = ACTIONS(7599), + [anon_sym_AMP] = ACTIONS(7599), + [anon_sym_EQ_EQ] = ACTIONS(7601), + [anon_sym_BANG_EQ] = ACTIONS(7601), + [anon_sym_GT] = ACTIONS(7599), + [anon_sym_GT_EQ] = ACTIONS(7601), + [anon_sym_LT_EQ] = ACTIONS(7599), + [anon_sym_LT] = ACTIONS(7599), + [anon_sym_LT_LT] = ACTIONS(7599), + [anon_sym_GT_GT] = ACTIONS(7599), + [anon_sym___extension__] = ACTIONS(7601), + [anon_sym_LBRACE] = ACTIONS(7601), + [anon_sym_LBRACK] = ACTIONS(7601), + [anon_sym_RBRACK] = ACTIONS(7601), + [anon_sym_EQ] = ACTIONS(7599), + [anon_sym_const] = ACTIONS(7599), + [anon_sym_constexpr] = ACTIONS(7601), + [anon_sym_volatile] = ACTIONS(7601), + [anon_sym_restrict] = ACTIONS(7601), + [anon_sym___restrict__] = ACTIONS(7601), + [anon_sym__Atomic] = ACTIONS(7601), + [anon_sym__Noreturn] = ACTIONS(7601), + [anon_sym_noreturn] = ACTIONS(7601), + [anon_sym__Nonnull] = ACTIONS(7601), + [anon_sym_mutable] = ACTIONS(7601), + [anon_sym_constinit] = ACTIONS(7601), + [anon_sym_consteval] = ACTIONS(7601), + [anon_sym_alignas] = ACTIONS(7601), + [anon_sym__Alignas] = ACTIONS(7601), + [anon_sym_QMARK] = ACTIONS(7601), + [anon_sym_STAR_EQ] = ACTIONS(7601), + [anon_sym_SLASH_EQ] = ACTIONS(7601), + [anon_sym_PERCENT_EQ] = ACTIONS(7601), + [anon_sym_PLUS_EQ] = ACTIONS(7601), + [anon_sym_DASH_EQ] = ACTIONS(7601), + [anon_sym_LT_LT_EQ] = ACTIONS(7601), + [anon_sym_GT_GT_EQ] = ACTIONS(7601), + [anon_sym_AMP_EQ] = ACTIONS(7601), + [anon_sym_CARET_EQ] = ACTIONS(7601), + [anon_sym_PIPE_EQ] = ACTIONS(7601), + [anon_sym_and_eq] = ACTIONS(7601), + [anon_sym_or_eq] = ACTIONS(7601), + [anon_sym_xor_eq] = ACTIONS(7601), + [anon_sym_LT_EQ_GT] = ACTIONS(7601), + [anon_sym_or] = ACTIONS(7599), + [anon_sym_and] = ACTIONS(7599), + [anon_sym_bitor] = ACTIONS(7601), + [anon_sym_xor] = ACTIONS(7599), + [anon_sym_bitand] = ACTIONS(7601), + [anon_sym_not_eq] = ACTIONS(7601), + [anon_sym_DASH_DASH] = ACTIONS(7601), + [anon_sym_PLUS_PLUS] = ACTIONS(7601), + [anon_sym_DOT] = ACTIONS(7599), + [anon_sym_DOT_STAR] = ACTIONS(7601), + [anon_sym_DASH_GT] = ACTIONS(7601), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7601), + [anon_sym_override] = ACTIONS(7601), + [anon_sym_requires] = ACTIONS(7601), + }, + [STATE(3197)] = { + [sym_identifier] = ACTIONS(7731), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7733), + [anon_sym_COMMA] = ACTIONS(7733), + [anon_sym_RPAREN] = ACTIONS(7733), + [anon_sym_LPAREN2] = ACTIONS(7733), + [anon_sym_DASH] = ACTIONS(7731), + [anon_sym_PLUS] = ACTIONS(7731), + [anon_sym_STAR] = ACTIONS(7733), + [anon_sym_SLASH] = ACTIONS(7731), + [anon_sym_PERCENT] = ACTIONS(7733), + [anon_sym_PIPE_PIPE] = ACTIONS(7733), + [anon_sym_AMP_AMP] = ACTIONS(7733), + [anon_sym_PIPE] = ACTIONS(7731), + [anon_sym_CARET] = ACTIONS(7733), + [anon_sym_AMP] = ACTIONS(7731), + [anon_sym_EQ_EQ] = ACTIONS(7733), + [anon_sym_BANG_EQ] = ACTIONS(7733), + [anon_sym_GT] = ACTIONS(7731), + [anon_sym_GT_EQ] = ACTIONS(7733), + [anon_sym_LT_EQ] = ACTIONS(7731), + [anon_sym_LT] = ACTIONS(7731), + [anon_sym_LT_LT] = ACTIONS(7733), + [anon_sym_GT_GT] = ACTIONS(7733), + [anon_sym_SEMI] = ACTIONS(7733), + [anon_sym___extension__] = ACTIONS(7731), + [anon_sym___attribute__] = ACTIONS(7731), + [anon_sym___attribute] = ACTIONS(7731), + [anon_sym_COLON] = ACTIONS(7731), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7733), + [anon_sym___based] = ACTIONS(7731), + [anon_sym_LBRACE] = ACTIONS(7733), + [anon_sym_RBRACE] = ACTIONS(7733), + [anon_sym_signed] = ACTIONS(7731), + [anon_sym_unsigned] = ACTIONS(7731), + [anon_sym_long] = ACTIONS(7731), + [anon_sym_short] = ACTIONS(7731), + [anon_sym_LBRACK] = ACTIONS(7733), + [anon_sym_const] = ACTIONS(7731), + [anon_sym_constexpr] = ACTIONS(7731), + [anon_sym_volatile] = ACTIONS(7731), + [anon_sym_restrict] = ACTIONS(7731), + [anon_sym___restrict__] = ACTIONS(7731), + [anon_sym__Atomic] = ACTIONS(7731), + [anon_sym__Noreturn] = ACTIONS(7731), + [anon_sym_noreturn] = ACTIONS(7731), + [anon_sym__Nonnull] = ACTIONS(7731), + [anon_sym_mutable] = ACTIONS(7731), + [anon_sym_constinit] = ACTIONS(7731), + [anon_sym_consteval] = ACTIONS(7731), + [anon_sym_alignas] = ACTIONS(7731), + [anon_sym__Alignas] = ACTIONS(7731), + [sym_primitive_type] = ACTIONS(7731), + [anon_sym_QMARK] = ACTIONS(7733), + [anon_sym_LT_EQ_GT] = ACTIONS(7733), + [anon_sym_or] = ACTIONS(7731), + [anon_sym_and] = ACTIONS(7731), + [anon_sym_bitor] = ACTIONS(7731), + [anon_sym_xor] = ACTIONS(7731), + [anon_sym_bitand] = ACTIONS(7731), + [anon_sym_not_eq] = ACTIONS(7731), + [anon_sym_DASH_DASH] = ACTIONS(7733), + [anon_sym_PLUS_PLUS] = ACTIONS(7733), + [anon_sym_DOT] = ACTIONS(7731), + [anon_sym_DOT_STAR] = ACTIONS(7733), + [anon_sym_DASH_GT] = ACTIONS(7733), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7731), + [anon_sym_override] = ACTIONS(7731), + [anon_sym_requires] = ACTIONS(7731), + [anon_sym_COLON_RBRACK] = ACTIONS(7733), + }, + [STATE(3198)] = { + [sym_identifier] = ACTIONS(9088), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9090), + [anon_sym_COMMA] = ACTIONS(9090), + [anon_sym_RPAREN] = ACTIONS(9090), + [aux_sym_preproc_if_token2] = ACTIONS(9090), + [aux_sym_preproc_else_token1] = ACTIONS(9090), + [aux_sym_preproc_elif_token1] = ACTIONS(9088), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9090), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9090), + [anon_sym_LPAREN2] = ACTIONS(9090), + [anon_sym_DASH] = ACTIONS(9088), + [anon_sym_PLUS] = ACTIONS(9088), + [anon_sym_STAR] = ACTIONS(9088), + [anon_sym_SLASH] = ACTIONS(9088), + [anon_sym_PERCENT] = ACTIONS(9088), + [anon_sym_PIPE_PIPE] = ACTIONS(9090), + [anon_sym_AMP_AMP] = ACTIONS(9090), + [anon_sym_PIPE] = ACTIONS(9088), + [anon_sym_CARET] = ACTIONS(9088), + [anon_sym_AMP] = ACTIONS(9088), + [anon_sym_EQ_EQ] = ACTIONS(9090), + [anon_sym_BANG_EQ] = ACTIONS(9090), + [anon_sym_GT] = ACTIONS(9088), + [anon_sym_GT_EQ] = ACTIONS(9090), + [anon_sym_LT_EQ] = ACTIONS(9088), + [anon_sym_LT] = ACTIONS(9088), + [anon_sym_LT_LT] = ACTIONS(9088), + [anon_sym_GT_GT] = ACTIONS(9088), + [anon_sym_SEMI] = ACTIONS(9090), + [anon_sym___attribute__] = ACTIONS(9088), + [anon_sym___attribute] = ACTIONS(9088), + [anon_sym_COLON] = ACTIONS(9088), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9090), + [anon_sym_LBRACE] = ACTIONS(9090), + [anon_sym_RBRACE] = ACTIONS(9090), + [anon_sym_LBRACK] = ACTIONS(9088), + [anon_sym_RBRACK] = ACTIONS(9090), + [anon_sym_EQ] = ACTIONS(9088), + [anon_sym_QMARK] = ACTIONS(9090), + [anon_sym_STAR_EQ] = ACTIONS(9090), + [anon_sym_SLASH_EQ] = ACTIONS(9090), + [anon_sym_PERCENT_EQ] = ACTIONS(9090), + [anon_sym_PLUS_EQ] = ACTIONS(9090), + [anon_sym_DASH_EQ] = ACTIONS(9090), + [anon_sym_LT_LT_EQ] = ACTIONS(9090), + [anon_sym_GT_GT_EQ] = ACTIONS(9090), + [anon_sym_AMP_EQ] = ACTIONS(9090), + [anon_sym_CARET_EQ] = ACTIONS(9090), + [anon_sym_PIPE_EQ] = ACTIONS(9090), + [anon_sym_and_eq] = ACTIONS(9088), + [anon_sym_or_eq] = ACTIONS(9088), + [anon_sym_xor_eq] = ACTIONS(9088), + [anon_sym_LT_EQ_GT] = ACTIONS(9090), + [anon_sym_or] = ACTIONS(9088), + [anon_sym_and] = ACTIONS(9088), + [anon_sym_bitor] = ACTIONS(9088), + [anon_sym_xor] = ACTIONS(9088), + [anon_sym_bitand] = ACTIONS(9088), + [anon_sym_not_eq] = ACTIONS(9088), + [anon_sym_DASH_DASH] = ACTIONS(9090), + [anon_sym_PLUS_PLUS] = ACTIONS(9090), + [anon_sym_asm] = ACTIONS(9088), + [anon_sym___asm__] = ACTIONS(9088), + [anon_sym___asm] = ACTIONS(9088), + [anon_sym_DOT] = ACTIONS(9088), + [anon_sym_DOT_STAR] = ACTIONS(9090), + [anon_sym_DASH_GT] = ACTIONS(9090), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9088), + [anon_sym_COLON_RBRACK] = ACTIONS(9090), + }, + [STATE(3199)] = { + [sym_identifier] = ACTIONS(7775), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7777), + [anon_sym_COMMA] = ACTIONS(7777), + [anon_sym_RPAREN] = ACTIONS(7777), + [anon_sym_LPAREN2] = ACTIONS(7777), + [anon_sym_DASH] = ACTIONS(7775), + [anon_sym_PLUS] = ACTIONS(7775), + [anon_sym_STAR] = ACTIONS(7777), + [anon_sym_SLASH] = ACTIONS(7775), + [anon_sym_PERCENT] = ACTIONS(7777), + [anon_sym_PIPE_PIPE] = ACTIONS(7777), + [anon_sym_AMP_AMP] = ACTIONS(7777), + [anon_sym_PIPE] = ACTIONS(7775), + [anon_sym_CARET] = ACTIONS(7777), + [anon_sym_AMP] = ACTIONS(7775), + [anon_sym_EQ_EQ] = ACTIONS(7777), + [anon_sym_BANG_EQ] = ACTIONS(7777), + [anon_sym_GT] = ACTIONS(7775), + [anon_sym_GT_EQ] = ACTIONS(7777), + [anon_sym_LT_EQ] = ACTIONS(7775), + [anon_sym_LT] = ACTIONS(7775), + [anon_sym_LT_LT] = ACTIONS(7777), + [anon_sym_GT_GT] = ACTIONS(7777), + [anon_sym_SEMI] = ACTIONS(7777), + [anon_sym___extension__] = ACTIONS(7775), + [anon_sym___attribute__] = ACTIONS(7775), + [anon_sym___attribute] = ACTIONS(7775), + [anon_sym_COLON] = ACTIONS(7775), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7777), + [anon_sym___based] = ACTIONS(7775), + [anon_sym_LBRACE] = ACTIONS(7777), + [anon_sym_RBRACE] = ACTIONS(7777), + [anon_sym_signed] = ACTIONS(7775), + [anon_sym_unsigned] = ACTIONS(7775), + [anon_sym_long] = ACTIONS(7775), + [anon_sym_short] = ACTIONS(7775), + [anon_sym_LBRACK] = ACTIONS(7777), + [anon_sym_const] = ACTIONS(7775), + [anon_sym_constexpr] = ACTIONS(7775), + [anon_sym_volatile] = ACTIONS(7775), + [anon_sym_restrict] = ACTIONS(7775), + [anon_sym___restrict__] = ACTIONS(7775), + [anon_sym__Atomic] = ACTIONS(7775), + [anon_sym__Noreturn] = ACTIONS(7775), + [anon_sym_noreturn] = ACTIONS(7775), + [anon_sym__Nonnull] = ACTIONS(7775), + [anon_sym_mutable] = ACTIONS(7775), + [anon_sym_constinit] = ACTIONS(7775), + [anon_sym_consteval] = ACTIONS(7775), + [anon_sym_alignas] = ACTIONS(7775), + [anon_sym__Alignas] = ACTIONS(7775), + [sym_primitive_type] = ACTIONS(7775), + [anon_sym_QMARK] = ACTIONS(7777), + [anon_sym_LT_EQ_GT] = ACTIONS(7777), + [anon_sym_or] = ACTIONS(7775), + [anon_sym_and] = ACTIONS(7775), + [anon_sym_bitor] = ACTIONS(7775), + [anon_sym_xor] = ACTIONS(7775), + [anon_sym_bitand] = ACTIONS(7775), + [anon_sym_not_eq] = ACTIONS(7775), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(7775), + [anon_sym_DOT_STAR] = ACTIONS(7777), + [anon_sym_DASH_GT] = ACTIONS(7777), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7775), + [anon_sym_override] = ACTIONS(7775), + [anon_sym_requires] = ACTIONS(7775), + [anon_sym_COLON_RBRACK] = ACTIONS(7777), + }, + [STATE(3200)] = { + [sym_identifier] = ACTIONS(3163), + [aux_sym_preproc_def_token1] = ACTIONS(3163), + [aux_sym_preproc_if_token1] = ACTIONS(3163), + [aux_sym_preproc_if_token2] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), + [sym_preproc_directive] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym___extension__] = ACTIONS(3163), + [anon_sym_typedef] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_extern] = ACTIONS(3163), + [anon_sym___attribute__] = ACTIONS(3163), + [anon_sym___attribute] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3163), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3163), + [anon_sym___based] = ACTIONS(3163), + [anon_sym_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym___inline] = ACTIONS(3163), + [anon_sym___inline__] = ACTIONS(3163), + [anon_sym___forceinline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym___thread] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym___restrict__] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym__Noreturn] = ACTIONS(3163), + [anon_sym_noreturn] = ACTIONS(3163), + [anon_sym__Nonnull] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = ACTIONS(3163), + [anon_sym_alignas] = ACTIONS(3163), + [anon_sym__Alignas] = ACTIONS(3163), + [sym_primitive_type] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_typename] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_private] = ACTIONS(3163), + [anon_sym_template] = ACTIONS(3163), + [anon_sym_operator] = ACTIONS(3163), + [anon_sym_friend] = ACTIONS(3163), + [anon_sym_public] = ACTIONS(3163), + [anon_sym_protected] = ACTIONS(3163), + [anon_sym_static_assert] = ACTIONS(3163), + [anon_sym_catch] = ACTIONS(3163), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), + }, + [STATE(3201)] = { + [sym_identifier] = ACTIONS(7569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7571), + [anon_sym_COMMA] = ACTIONS(7571), + [anon_sym_RPAREN] = ACTIONS(7571), + [anon_sym_LPAREN2] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7569), + [anon_sym_PLUS] = ACTIONS(7569), + [anon_sym_STAR] = ACTIONS(7571), + [anon_sym_SLASH] = ACTIONS(7569), + [anon_sym_PERCENT] = ACTIONS(7571), + [anon_sym_PIPE_PIPE] = ACTIONS(7571), + [anon_sym_AMP_AMP] = ACTIONS(7571), + [anon_sym_PIPE] = ACTIONS(7569), + [anon_sym_CARET] = ACTIONS(7571), + [anon_sym_AMP] = ACTIONS(7569), + [anon_sym_EQ_EQ] = ACTIONS(7571), + [anon_sym_BANG_EQ] = ACTIONS(7571), + [anon_sym_GT] = ACTIONS(7569), + [anon_sym_GT_EQ] = ACTIONS(7571), + [anon_sym_LT_EQ] = ACTIONS(7569), + [anon_sym_LT] = ACTIONS(7569), + [anon_sym_LT_LT] = ACTIONS(7571), + [anon_sym_GT_GT] = ACTIONS(7571), + [anon_sym_SEMI] = ACTIONS(7571), + [anon_sym___extension__] = ACTIONS(7569), + [anon_sym___attribute__] = ACTIONS(7569), + [anon_sym___attribute] = ACTIONS(7569), + [anon_sym_COLON] = ACTIONS(7569), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7571), + [anon_sym___based] = ACTIONS(7569), + [anon_sym_LBRACE] = ACTIONS(7571), + [anon_sym_RBRACE] = ACTIONS(7571), + [anon_sym_signed] = ACTIONS(7569), + [anon_sym_unsigned] = ACTIONS(7569), + [anon_sym_long] = ACTIONS(7569), + [anon_sym_short] = ACTIONS(7569), + [anon_sym_LBRACK] = ACTIONS(7571), + [anon_sym_const] = ACTIONS(7569), + [anon_sym_constexpr] = ACTIONS(7569), + [anon_sym_volatile] = ACTIONS(7569), + [anon_sym_restrict] = ACTIONS(7569), + [anon_sym___restrict__] = ACTIONS(7569), + [anon_sym__Atomic] = ACTIONS(7569), + [anon_sym__Noreturn] = ACTIONS(7569), + [anon_sym_noreturn] = ACTIONS(7569), + [anon_sym__Nonnull] = ACTIONS(7569), + [anon_sym_mutable] = ACTIONS(7569), + [anon_sym_constinit] = ACTIONS(7569), + [anon_sym_consteval] = ACTIONS(7569), + [anon_sym_alignas] = ACTIONS(7569), + [anon_sym__Alignas] = ACTIONS(7569), + [sym_primitive_type] = ACTIONS(7569), + [anon_sym_QMARK] = ACTIONS(7571), + [anon_sym_LT_EQ_GT] = ACTIONS(7571), + [anon_sym_or] = ACTIONS(7569), + [anon_sym_and] = ACTIONS(7569), + [anon_sym_bitor] = ACTIONS(7569), + [anon_sym_xor] = ACTIONS(7569), + [anon_sym_bitand] = ACTIONS(7569), + [anon_sym_not_eq] = ACTIONS(7569), + [anon_sym_DASH_DASH] = ACTIONS(7571), + [anon_sym_PLUS_PLUS] = ACTIONS(7571), + [anon_sym_DOT] = ACTIONS(7569), + [anon_sym_DOT_STAR] = ACTIONS(7571), + [anon_sym_DASH_GT] = ACTIONS(7571), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7569), + [anon_sym_override] = ACTIONS(7569), + [anon_sym_requires] = ACTIONS(7569), + [anon_sym_COLON_RBRACK] = ACTIONS(7571), + }, + [STATE(3202)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7605), + [anon_sym_COMMA] = ACTIONS(7605), + [anon_sym_LPAREN2] = ACTIONS(7605), + [anon_sym_DASH] = ACTIONS(7603), + [anon_sym_PLUS] = ACTIONS(7603), + [anon_sym_STAR] = ACTIONS(7603), + [anon_sym_SLASH] = ACTIONS(7603), + [anon_sym_PERCENT] = ACTIONS(7603), + [anon_sym_PIPE_PIPE] = ACTIONS(7605), + [anon_sym_AMP_AMP] = ACTIONS(7605), + [anon_sym_PIPE] = ACTIONS(7603), + [anon_sym_CARET] = ACTIONS(7603), + [anon_sym_AMP] = ACTIONS(7603), + [anon_sym_EQ_EQ] = ACTIONS(7605), + [anon_sym_BANG_EQ] = ACTIONS(7605), + [anon_sym_GT] = ACTIONS(7603), + [anon_sym_GT_EQ] = ACTIONS(7605), + [anon_sym_LT_EQ] = ACTIONS(7603), + [anon_sym_LT] = ACTIONS(7603), + [anon_sym_LT_LT] = ACTIONS(7603), + [anon_sym_GT_GT] = ACTIONS(7603), + [anon_sym___extension__] = ACTIONS(7605), + [anon_sym_LBRACE] = ACTIONS(7605), + [anon_sym_LBRACK] = ACTIONS(7605), + [anon_sym_RBRACK] = ACTIONS(7605), + [anon_sym_EQ] = ACTIONS(7603), + [anon_sym_const] = ACTIONS(7603), + [anon_sym_constexpr] = ACTIONS(7605), + [anon_sym_volatile] = ACTIONS(7605), + [anon_sym_restrict] = ACTIONS(7605), + [anon_sym___restrict__] = ACTIONS(7605), + [anon_sym__Atomic] = ACTIONS(7605), + [anon_sym__Noreturn] = ACTIONS(7605), + [anon_sym_noreturn] = ACTIONS(7605), + [anon_sym__Nonnull] = ACTIONS(7605), + [anon_sym_mutable] = ACTIONS(7605), + [anon_sym_constinit] = ACTIONS(7605), + [anon_sym_consteval] = ACTIONS(7605), + [anon_sym_alignas] = ACTIONS(7605), + [anon_sym__Alignas] = ACTIONS(7605), + [anon_sym_QMARK] = ACTIONS(7605), + [anon_sym_STAR_EQ] = ACTIONS(7605), + [anon_sym_SLASH_EQ] = ACTIONS(7605), + [anon_sym_PERCENT_EQ] = ACTIONS(7605), + [anon_sym_PLUS_EQ] = ACTIONS(7605), + [anon_sym_DASH_EQ] = ACTIONS(7605), + [anon_sym_LT_LT_EQ] = ACTIONS(7605), + [anon_sym_GT_GT_EQ] = ACTIONS(7605), + [anon_sym_AMP_EQ] = ACTIONS(7605), + [anon_sym_CARET_EQ] = ACTIONS(7605), + [anon_sym_PIPE_EQ] = ACTIONS(7605), + [anon_sym_and_eq] = ACTIONS(7605), + [anon_sym_or_eq] = ACTIONS(7605), + [anon_sym_xor_eq] = ACTIONS(7605), + [anon_sym_LT_EQ_GT] = ACTIONS(7605), + [anon_sym_or] = ACTIONS(7603), + [anon_sym_and] = ACTIONS(7603), + [anon_sym_bitor] = ACTIONS(7605), + [anon_sym_xor] = ACTIONS(7603), + [anon_sym_bitand] = ACTIONS(7605), + [anon_sym_not_eq] = ACTIONS(7605), + [anon_sym_DASH_DASH] = ACTIONS(7605), + [anon_sym_PLUS_PLUS] = ACTIONS(7605), + [anon_sym_DOT] = ACTIONS(7603), + [anon_sym_DOT_STAR] = ACTIONS(7605), + [anon_sym_DASH_GT] = ACTIONS(7605), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7605), + [anon_sym_override] = ACTIONS(7605), + [anon_sym_requires] = ACTIONS(7605), + }, + [STATE(3203)] = { + [sym_identifier] = ACTIONS(7763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7765), + [anon_sym_COMMA] = ACTIONS(7765), + [anon_sym_RPAREN] = ACTIONS(7765), + [anon_sym_LPAREN2] = ACTIONS(7765), + [anon_sym_DASH] = ACTIONS(7763), + [anon_sym_PLUS] = ACTIONS(7763), + [anon_sym_STAR] = ACTIONS(7765), + [anon_sym_SLASH] = ACTIONS(7763), + [anon_sym_PERCENT] = ACTIONS(7765), + [anon_sym_PIPE_PIPE] = ACTIONS(7765), + [anon_sym_AMP_AMP] = ACTIONS(7765), + [anon_sym_PIPE] = ACTIONS(7763), + [anon_sym_CARET] = ACTIONS(7765), + [anon_sym_AMP] = ACTIONS(7763), + [anon_sym_EQ_EQ] = ACTIONS(7765), + [anon_sym_BANG_EQ] = ACTIONS(7765), + [anon_sym_GT] = ACTIONS(7763), + [anon_sym_GT_EQ] = ACTIONS(7765), + [anon_sym_LT_EQ] = ACTIONS(7763), + [anon_sym_LT] = ACTIONS(7763), + [anon_sym_LT_LT] = ACTIONS(7765), + [anon_sym_GT_GT] = ACTIONS(7765), + [anon_sym_SEMI] = ACTIONS(7765), + [anon_sym___extension__] = ACTIONS(7763), + [anon_sym___attribute__] = ACTIONS(7763), + [anon_sym___attribute] = ACTIONS(7763), + [anon_sym_COLON] = ACTIONS(7763), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7765), + [anon_sym___based] = ACTIONS(7763), + [anon_sym_LBRACE] = ACTIONS(7765), + [anon_sym_RBRACE] = ACTIONS(7765), + [anon_sym_signed] = ACTIONS(7763), + [anon_sym_unsigned] = ACTIONS(7763), + [anon_sym_long] = ACTIONS(7763), + [anon_sym_short] = ACTIONS(7763), + [anon_sym_LBRACK] = ACTIONS(7765), + [anon_sym_const] = ACTIONS(7763), + [anon_sym_constexpr] = ACTIONS(7763), + [anon_sym_volatile] = ACTIONS(7763), + [anon_sym_restrict] = ACTIONS(7763), + [anon_sym___restrict__] = ACTIONS(7763), + [anon_sym__Atomic] = ACTIONS(7763), + [anon_sym__Noreturn] = ACTIONS(7763), + [anon_sym_noreturn] = ACTIONS(7763), + [anon_sym__Nonnull] = ACTIONS(7763), + [anon_sym_mutable] = ACTIONS(7763), + [anon_sym_constinit] = ACTIONS(7763), + [anon_sym_consteval] = ACTIONS(7763), + [anon_sym_alignas] = ACTIONS(7763), + [anon_sym__Alignas] = ACTIONS(7763), + [sym_primitive_type] = ACTIONS(7763), + [anon_sym_QMARK] = ACTIONS(7765), + [anon_sym_LT_EQ_GT] = ACTIONS(7765), + [anon_sym_or] = ACTIONS(7763), + [anon_sym_and] = ACTIONS(7763), + [anon_sym_bitor] = ACTIONS(7763), + [anon_sym_xor] = ACTIONS(7763), + [anon_sym_bitand] = ACTIONS(7763), + [anon_sym_not_eq] = ACTIONS(7763), + [anon_sym_DASH_DASH] = ACTIONS(7765), + [anon_sym_PLUS_PLUS] = ACTIONS(7765), + [anon_sym_DOT] = ACTIONS(7763), + [anon_sym_DOT_STAR] = ACTIONS(7765), + [anon_sym_DASH_GT] = ACTIONS(7765), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7763), + [anon_sym_override] = ACTIONS(7763), + [anon_sym_requires] = ACTIONS(7763), + [anon_sym_COLON_RBRACK] = ACTIONS(7765), + }, + [STATE(3204)] = { + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_unaligned_ptr_modifier] = STATE(6574), + [sym_ms_pointer_modifier] = STATE(3239), + [sym__declarator] = STATE(8826), + [sym__abstract_declarator] = STATE(8989), + [sym_parenthesized_declarator] = STATE(8555), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_function_declarator] = STATE(8555), + [sym_abstract_function_declarator] = STATE(8596), + [sym_array_declarator] = STATE(8555), + [sym_abstract_array_declarator] = STATE(8596), + [sym_type_qualifier] = STATE(4126), + [sym_alignas_qualifier] = STATE(7511), + [sym_parameter_list] = STATE(4706), + [sym_decltype] = STATE(10768), + [sym_reference_declarator] = STATE(8555), + [sym_abstract_reference_declarator] = STATE(8596), + [sym_structured_binding_declarator] = STATE(8555), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7993), + [sym_qualified_identifier] = STATE(8555), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__type_definition_type_repeat1] = STATE(4126), + [aux_sym_pointer_declarator_repeat1] = STATE(3239), + [sym_identifier] = ACTIONS(8228), + [anon_sym_RPAREN] = ACTIONS(6859), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_AMP_AMP] = ACTIONS(5621), + [anon_sym_AMP] = ACTIONS(5623), + [anon_sym___extension__] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(8675), [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(5311), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_constexpr] = ACTIONS(2937), - [anon_sym_volatile] = ACTIONS(2937), - [anon_sym_restrict] = ACTIONS(2937), - [anon_sym___restrict__] = ACTIONS(2937), - [anon_sym__Atomic] = ACTIONS(2937), - [anon_sym__Noreturn] = ACTIONS(2937), - [anon_sym_noreturn] = ACTIONS(2937), - [anon_sym__Nonnull] = ACTIONS(2937), - [anon_sym_mutable] = ACTIONS(2937), - [anon_sym_constinit] = ACTIONS(2937), - [anon_sym_consteval] = ACTIONS(2937), - [anon_sym_alignas] = ACTIONS(2939), - [anon_sym__Alignas] = ACTIONS(2939), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(4800), - [anon_sym_operator] = ACTIONS(1924), - [anon_sym_LBRACK_COLON] = ACTIONS(4804), + [sym_ms_restrict_modifier] = ACTIONS(3266), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3266), + [sym_ms_signed_ptr_modifier] = ACTIONS(3266), + [anon_sym__unaligned] = ACTIONS(3268), + [anon_sym___unaligned] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(5627), + [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__Nonnull] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), }, - [STATE(3701)] = { - [sym_template_argument_list] = STATE(3611), - [sym_identifier] = ACTIONS(9225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9227), - [anon_sym_COMMA] = ACTIONS(9227), - [anon_sym_RPAREN] = ACTIONS(9227), - [aux_sym_preproc_if_token2] = ACTIONS(9227), - [aux_sym_preproc_else_token1] = ACTIONS(9227), - [aux_sym_preproc_elif_token1] = ACTIONS(9225), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9227), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9227), - [anon_sym_LPAREN2] = ACTIONS(9227), - [anon_sym_DASH] = ACTIONS(9225), - [anon_sym_PLUS] = ACTIONS(9225), - [anon_sym_STAR] = ACTIONS(9225), - [anon_sym_SLASH] = ACTIONS(9225), - [anon_sym_PERCENT] = ACTIONS(9225), - [anon_sym_PIPE_PIPE] = ACTIONS(9227), - [anon_sym_AMP_AMP] = ACTIONS(9227), - [anon_sym_PIPE] = ACTIONS(9225), - [anon_sym_CARET] = ACTIONS(9225), - [anon_sym_AMP] = ACTIONS(9225), - [anon_sym_EQ_EQ] = ACTIONS(9227), - [anon_sym_BANG_EQ] = ACTIONS(9227), - [anon_sym_GT] = ACTIONS(9225), - [anon_sym_GT_EQ] = ACTIONS(9227), - [anon_sym_LT_EQ] = ACTIONS(9225), - [anon_sym_LT] = ACTIONS(9229), - [anon_sym_LT_LT] = ACTIONS(9225), - [anon_sym_GT_GT] = ACTIONS(9225), - [anon_sym_SEMI] = ACTIONS(9227), - [anon_sym___attribute__] = ACTIONS(9225), - [anon_sym___attribute] = ACTIONS(9225), - [anon_sym_COLON] = ACTIONS(9225), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9227), - [anon_sym_RBRACE] = ACTIONS(9227), - [anon_sym_LBRACK] = ACTIONS(9227), - [anon_sym_EQ] = ACTIONS(9225), - [anon_sym_QMARK] = ACTIONS(9227), - [anon_sym_STAR_EQ] = ACTIONS(9227), - [anon_sym_SLASH_EQ] = ACTIONS(9227), - [anon_sym_PERCENT_EQ] = ACTIONS(9227), - [anon_sym_PLUS_EQ] = ACTIONS(9227), - [anon_sym_DASH_EQ] = ACTIONS(9227), - [anon_sym_LT_LT_EQ] = ACTIONS(9227), - [anon_sym_GT_GT_EQ] = ACTIONS(9227), - [anon_sym_AMP_EQ] = ACTIONS(9227), - [anon_sym_CARET_EQ] = ACTIONS(9227), - [anon_sym_PIPE_EQ] = ACTIONS(9227), - [anon_sym_and_eq] = ACTIONS(9225), - [anon_sym_or_eq] = ACTIONS(9225), - [anon_sym_xor_eq] = ACTIONS(9225), - [anon_sym_LT_EQ_GT] = ACTIONS(9227), - [anon_sym_or] = ACTIONS(9225), - [anon_sym_and] = ACTIONS(9225), - [anon_sym_bitor] = ACTIONS(9225), - [anon_sym_xor] = ACTIONS(9225), - [anon_sym_bitand] = ACTIONS(9225), - [anon_sym_not_eq] = ACTIONS(9225), - [anon_sym_DASH_DASH] = ACTIONS(9227), - [anon_sym_PLUS_PLUS] = ACTIONS(9227), - [anon_sym_DOT] = ACTIONS(9225), - [anon_sym_DOT_STAR] = ACTIONS(9227), - [anon_sym_DASH_GT] = ACTIONS(9227), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9227), + [STATE(3205)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7781), + [anon_sym_COMMA] = ACTIONS(7781), + [anon_sym_LPAREN2] = ACTIONS(7781), + [anon_sym_DASH] = ACTIONS(7779), + [anon_sym_PLUS] = ACTIONS(7779), + [anon_sym_STAR] = ACTIONS(7779), + [anon_sym_SLASH] = ACTIONS(7779), + [anon_sym_PERCENT] = ACTIONS(7779), + [anon_sym_PIPE_PIPE] = ACTIONS(7781), + [anon_sym_AMP_AMP] = ACTIONS(7781), + [anon_sym_PIPE] = ACTIONS(7779), + [anon_sym_CARET] = ACTIONS(7779), + [anon_sym_AMP] = ACTIONS(7779), + [anon_sym_EQ_EQ] = ACTIONS(7781), + [anon_sym_BANG_EQ] = ACTIONS(7781), + [anon_sym_GT] = ACTIONS(7779), + [anon_sym_GT_EQ] = ACTIONS(7781), + [anon_sym_LT_EQ] = ACTIONS(7779), + [anon_sym_LT] = ACTIONS(7779), + [anon_sym_LT_LT] = ACTIONS(7779), + [anon_sym_GT_GT] = ACTIONS(7779), + [anon_sym___extension__] = ACTIONS(7781), + [anon_sym_LBRACE] = ACTIONS(7781), + [anon_sym_LBRACK] = ACTIONS(7781), + [anon_sym_RBRACK] = ACTIONS(7781), + [anon_sym_EQ] = ACTIONS(7779), + [anon_sym_const] = ACTIONS(7779), + [anon_sym_constexpr] = ACTIONS(7781), + [anon_sym_volatile] = ACTIONS(7781), + [anon_sym_restrict] = ACTIONS(7781), + [anon_sym___restrict__] = ACTIONS(7781), + [anon_sym__Atomic] = ACTIONS(7781), + [anon_sym__Noreturn] = ACTIONS(7781), + [anon_sym_noreturn] = ACTIONS(7781), + [anon_sym__Nonnull] = ACTIONS(7781), + [anon_sym_mutable] = ACTIONS(7781), + [anon_sym_constinit] = ACTIONS(7781), + [anon_sym_consteval] = ACTIONS(7781), + [anon_sym_alignas] = ACTIONS(7781), + [anon_sym__Alignas] = ACTIONS(7781), + [anon_sym_QMARK] = ACTIONS(7781), + [anon_sym_STAR_EQ] = ACTIONS(7781), + [anon_sym_SLASH_EQ] = ACTIONS(7781), + [anon_sym_PERCENT_EQ] = ACTIONS(7781), + [anon_sym_PLUS_EQ] = ACTIONS(7781), + [anon_sym_DASH_EQ] = ACTIONS(7781), + [anon_sym_LT_LT_EQ] = ACTIONS(7781), + [anon_sym_GT_GT_EQ] = ACTIONS(7781), + [anon_sym_AMP_EQ] = ACTIONS(7781), + [anon_sym_CARET_EQ] = ACTIONS(7781), + [anon_sym_PIPE_EQ] = ACTIONS(7781), + [anon_sym_and_eq] = ACTIONS(7781), + [anon_sym_or_eq] = ACTIONS(7781), + [anon_sym_xor_eq] = ACTIONS(7781), + [anon_sym_LT_EQ_GT] = ACTIONS(7781), + [anon_sym_or] = ACTIONS(7779), + [anon_sym_and] = ACTIONS(7779), + [anon_sym_bitor] = ACTIONS(7781), + [anon_sym_xor] = ACTIONS(7779), + [anon_sym_bitand] = ACTIONS(7781), + [anon_sym_not_eq] = ACTIONS(7781), + [anon_sym_DASH_DASH] = ACTIONS(7781), + [anon_sym_PLUS_PLUS] = ACTIONS(7781), + [anon_sym_DOT] = ACTIONS(7779), + [anon_sym_DOT_STAR] = ACTIONS(7781), + [anon_sym_DASH_GT] = ACTIONS(7781), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7781), + [anon_sym_override] = ACTIONS(7781), + [anon_sym_requires] = ACTIONS(7781), }, - [STATE(3702)] = { - [sym_identifier] = ACTIONS(9308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9310), - [anon_sym_COMMA] = ACTIONS(9310), - [anon_sym_RPAREN] = ACTIONS(9310), - [aux_sym_preproc_if_token2] = ACTIONS(9310), - [aux_sym_preproc_else_token1] = ACTIONS(9310), - [aux_sym_preproc_elif_token1] = ACTIONS(9308), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9310), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9310), - [anon_sym_LPAREN2] = ACTIONS(9310), - [anon_sym_DASH] = ACTIONS(9308), - [anon_sym_PLUS] = ACTIONS(9308), - [anon_sym_STAR] = ACTIONS(9308), - [anon_sym_SLASH] = ACTIONS(9308), - [anon_sym_PERCENT] = ACTIONS(9308), - [anon_sym_PIPE_PIPE] = ACTIONS(9310), - [anon_sym_AMP_AMP] = ACTIONS(9310), - [anon_sym_PIPE] = ACTIONS(9308), - [anon_sym_CARET] = ACTIONS(9308), - [anon_sym_AMP] = ACTIONS(9308), - [anon_sym_EQ_EQ] = ACTIONS(9310), - [anon_sym_BANG_EQ] = ACTIONS(9310), - [anon_sym_GT] = ACTIONS(9308), - [anon_sym_GT_EQ] = ACTIONS(9310), - [anon_sym_LT_EQ] = ACTIONS(9308), - [anon_sym_LT] = ACTIONS(9308), - [anon_sym_LT_LT] = ACTIONS(9308), - [anon_sym_GT_GT] = ACTIONS(9308), - [anon_sym_SEMI] = ACTIONS(9310), - [anon_sym___attribute__] = ACTIONS(9308), - [anon_sym___attribute] = ACTIONS(9308), - [anon_sym_COLON] = ACTIONS(9308), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9310), - [anon_sym_RBRACE] = ACTIONS(9310), - [anon_sym_LBRACK] = ACTIONS(9308), - [anon_sym_EQ] = ACTIONS(9308), - [anon_sym_QMARK] = ACTIONS(9310), - [anon_sym_STAR_EQ] = ACTIONS(9310), - [anon_sym_SLASH_EQ] = ACTIONS(9310), - [anon_sym_PERCENT_EQ] = ACTIONS(9310), - [anon_sym_PLUS_EQ] = ACTIONS(9310), - [anon_sym_DASH_EQ] = ACTIONS(9310), - [anon_sym_LT_LT_EQ] = ACTIONS(9310), - [anon_sym_GT_GT_EQ] = ACTIONS(9310), - [anon_sym_AMP_EQ] = ACTIONS(9310), - [anon_sym_CARET_EQ] = ACTIONS(9310), - [anon_sym_PIPE_EQ] = ACTIONS(9310), - [anon_sym_and_eq] = ACTIONS(9308), - [anon_sym_or_eq] = ACTIONS(9308), - [anon_sym_xor_eq] = ACTIONS(9308), - [anon_sym_LT_EQ_GT] = ACTIONS(9310), - [anon_sym_or] = ACTIONS(9308), - [anon_sym_and] = ACTIONS(9308), - [anon_sym_bitor] = ACTIONS(9308), - [anon_sym_xor] = ACTIONS(9308), - [anon_sym_bitand] = ACTIONS(9308), - [anon_sym_not_eq] = ACTIONS(9308), - [anon_sym_DASH_DASH] = ACTIONS(9310), - [anon_sym_PLUS_PLUS] = ACTIONS(9310), - [anon_sym_DOT] = ACTIONS(9308), - [anon_sym_DOT_STAR] = ACTIONS(9310), - [anon_sym_DASH_GT] = ACTIONS(9310), + [STATE(3206)] = { + [sym_identifier] = ACTIONS(3155), + [aux_sym_preproc_def_token1] = ACTIONS(3155), + [aux_sym_preproc_if_token1] = ACTIONS(3155), + [aux_sym_preproc_if_token2] = ACTIONS(3155), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3155), + [sym_preproc_directive] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_AMP_AMP] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym___extension__] = ACTIONS(3155), + [anon_sym_typedef] = ACTIONS(3155), + [anon_sym_virtual] = ACTIONS(3155), + [anon_sym_extern] = ACTIONS(3155), + [anon_sym___attribute__] = ACTIONS(3155), + [anon_sym___attribute] = ACTIONS(3155), + [anon_sym_using] = ACTIONS(3155), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), + [anon_sym___declspec] = ACTIONS(3155), + [anon_sym___based] = ACTIONS(3155), + [anon_sym_signed] = ACTIONS(3155), + [anon_sym_unsigned] = ACTIONS(3155), + [anon_sym_long] = ACTIONS(3155), + [anon_sym_short] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_static] = ACTIONS(3155), + [anon_sym_register] = ACTIONS(3155), + [anon_sym_inline] = ACTIONS(3155), + [anon_sym___inline] = ACTIONS(3155), + [anon_sym___inline__] = ACTIONS(3155), + [anon_sym___forceinline] = ACTIONS(3155), + [anon_sym_thread_local] = ACTIONS(3155), + [anon_sym___thread] = ACTIONS(3155), + [anon_sym_const] = ACTIONS(3155), + [anon_sym_constexpr] = ACTIONS(3155), + [anon_sym_volatile] = ACTIONS(3155), + [anon_sym_restrict] = ACTIONS(3155), + [anon_sym___restrict__] = ACTIONS(3155), + [anon_sym__Atomic] = ACTIONS(3155), + [anon_sym__Noreturn] = ACTIONS(3155), + [anon_sym_noreturn] = ACTIONS(3155), + [anon_sym__Nonnull] = ACTIONS(3155), + [anon_sym_mutable] = ACTIONS(3155), + [anon_sym_constinit] = ACTIONS(3155), + [anon_sym_consteval] = ACTIONS(3155), + [anon_sym_alignas] = ACTIONS(3155), + [anon_sym__Alignas] = ACTIONS(3155), + [sym_primitive_type] = ACTIONS(3155), + [anon_sym_enum] = ACTIONS(3155), + [anon_sym_class] = ACTIONS(3155), + [anon_sym_struct] = ACTIONS(3155), + [anon_sym_union] = ACTIONS(3155), + [anon_sym_typename] = ACTIONS(3155), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3155), + [anon_sym_decltype] = ACTIONS(3155), + [anon_sym_explicit] = ACTIONS(3155), + [anon_sym_private] = ACTIONS(3155), + [anon_sym_template] = ACTIONS(3155), + [anon_sym_operator] = ACTIONS(3155), + [anon_sym_friend] = ACTIONS(3155), + [anon_sym_public] = ACTIONS(3155), + [anon_sym_protected] = ACTIONS(3155), + [anon_sym_static_assert] = ACTIONS(3155), + [anon_sym_catch] = ACTIONS(3155), + [anon_sym_LBRACK_COLON] = ACTIONS(3153), + }, + [STATE(3207)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7665), + [anon_sym_COMMA] = ACTIONS(7665), + [anon_sym_LPAREN2] = ACTIONS(7665), + [anon_sym_DASH] = ACTIONS(7663), + [anon_sym_PLUS] = ACTIONS(7663), + [anon_sym_STAR] = ACTIONS(7663), + [anon_sym_SLASH] = ACTIONS(7663), + [anon_sym_PERCENT] = ACTIONS(7663), + [anon_sym_PIPE_PIPE] = ACTIONS(7665), + [anon_sym_AMP_AMP] = ACTIONS(7665), + [anon_sym_PIPE] = ACTIONS(7663), + [anon_sym_CARET] = ACTIONS(7663), + [anon_sym_AMP] = ACTIONS(7663), + [anon_sym_EQ_EQ] = ACTIONS(7665), + [anon_sym_BANG_EQ] = ACTIONS(7665), + [anon_sym_GT] = ACTIONS(7663), + [anon_sym_GT_EQ] = ACTIONS(7665), + [anon_sym_LT_EQ] = ACTIONS(7663), + [anon_sym_LT] = ACTIONS(7663), + [anon_sym_LT_LT] = ACTIONS(7663), + [anon_sym_GT_GT] = ACTIONS(7663), + [anon_sym___extension__] = ACTIONS(7665), + [anon_sym_LBRACE] = ACTIONS(7665), + [anon_sym_LBRACK] = ACTIONS(7665), + [anon_sym_RBRACK] = ACTIONS(7665), + [anon_sym_EQ] = ACTIONS(7663), + [anon_sym_const] = ACTIONS(7663), + [anon_sym_constexpr] = ACTIONS(7665), + [anon_sym_volatile] = ACTIONS(7665), + [anon_sym_restrict] = ACTIONS(7665), + [anon_sym___restrict__] = ACTIONS(7665), + [anon_sym__Atomic] = ACTIONS(7665), + [anon_sym__Noreturn] = ACTIONS(7665), + [anon_sym_noreturn] = ACTIONS(7665), + [anon_sym__Nonnull] = ACTIONS(7665), + [anon_sym_mutable] = ACTIONS(7665), + [anon_sym_constinit] = ACTIONS(7665), + [anon_sym_consteval] = ACTIONS(7665), + [anon_sym_alignas] = ACTIONS(7665), + [anon_sym__Alignas] = ACTIONS(7665), + [anon_sym_QMARK] = ACTIONS(7665), + [anon_sym_STAR_EQ] = ACTIONS(7665), + [anon_sym_SLASH_EQ] = ACTIONS(7665), + [anon_sym_PERCENT_EQ] = ACTIONS(7665), + [anon_sym_PLUS_EQ] = ACTIONS(7665), + [anon_sym_DASH_EQ] = ACTIONS(7665), + [anon_sym_LT_LT_EQ] = ACTIONS(7665), + [anon_sym_GT_GT_EQ] = ACTIONS(7665), + [anon_sym_AMP_EQ] = ACTIONS(7665), + [anon_sym_CARET_EQ] = ACTIONS(7665), + [anon_sym_PIPE_EQ] = ACTIONS(7665), + [anon_sym_and_eq] = ACTIONS(7665), + [anon_sym_or_eq] = ACTIONS(7665), + [anon_sym_xor_eq] = ACTIONS(7665), + [anon_sym_LT_EQ_GT] = ACTIONS(7665), + [anon_sym_or] = ACTIONS(7663), + [anon_sym_and] = ACTIONS(7663), + [anon_sym_bitor] = ACTIONS(7665), + [anon_sym_xor] = ACTIONS(7663), + [anon_sym_bitand] = ACTIONS(7665), + [anon_sym_not_eq] = ACTIONS(7665), + [anon_sym_DASH_DASH] = ACTIONS(7665), + [anon_sym_PLUS_PLUS] = ACTIONS(7665), + [anon_sym_DOT] = ACTIONS(7663), + [anon_sym_DOT_STAR] = ACTIONS(7665), + [anon_sym_DASH_GT] = ACTIONS(7665), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7665), + [anon_sym_override] = ACTIONS(7665), + [anon_sym_requires] = ACTIONS(7665), + }, + [STATE(3208)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7629), + [anon_sym_COMMA] = ACTIONS(7629), + [anon_sym_LPAREN2] = ACTIONS(7629), + [anon_sym_DASH] = ACTIONS(7627), + [anon_sym_PLUS] = ACTIONS(7627), + [anon_sym_STAR] = ACTIONS(7627), + [anon_sym_SLASH] = ACTIONS(7627), + [anon_sym_PERCENT] = ACTIONS(7627), + [anon_sym_PIPE_PIPE] = ACTIONS(7629), + [anon_sym_AMP_AMP] = ACTIONS(7629), + [anon_sym_PIPE] = ACTIONS(7627), + [anon_sym_CARET] = ACTIONS(7627), + [anon_sym_AMP] = ACTIONS(7627), + [anon_sym_EQ_EQ] = ACTIONS(7629), + [anon_sym_BANG_EQ] = ACTIONS(7629), + [anon_sym_GT] = ACTIONS(7627), + [anon_sym_GT_EQ] = ACTIONS(7627), + [anon_sym_LT_EQ] = ACTIONS(7627), + [anon_sym_LT] = ACTIONS(7627), + [anon_sym_LT_LT] = ACTIONS(7627), + [anon_sym_GT_GT] = ACTIONS(7627), + [anon_sym___extension__] = ACTIONS(7629), + [anon_sym_LBRACE] = ACTIONS(7629), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7627), + [anon_sym_const] = ACTIONS(7627), + [anon_sym_constexpr] = ACTIONS(7629), + [anon_sym_volatile] = ACTIONS(7629), + [anon_sym_restrict] = ACTIONS(7629), + [anon_sym___restrict__] = ACTIONS(7629), + [anon_sym__Atomic] = ACTIONS(7629), + [anon_sym__Noreturn] = ACTIONS(7629), + [anon_sym_noreturn] = ACTIONS(7629), + [anon_sym__Nonnull] = ACTIONS(7629), + [anon_sym_mutable] = ACTIONS(7629), + [anon_sym_constinit] = ACTIONS(7629), + [anon_sym_consteval] = ACTIONS(7629), + [anon_sym_alignas] = ACTIONS(7629), + [anon_sym__Alignas] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7629), + [anon_sym_STAR_EQ] = ACTIONS(7629), + [anon_sym_SLASH_EQ] = ACTIONS(7629), + [anon_sym_PERCENT_EQ] = ACTIONS(7629), + [anon_sym_PLUS_EQ] = ACTIONS(7629), + [anon_sym_DASH_EQ] = ACTIONS(7629), + [anon_sym_LT_LT_EQ] = ACTIONS(7629), + [anon_sym_GT_GT_EQ] = ACTIONS(7627), + [anon_sym_AMP_EQ] = ACTIONS(7629), + [anon_sym_CARET_EQ] = ACTIONS(7629), + [anon_sym_PIPE_EQ] = ACTIONS(7629), + [anon_sym_and_eq] = ACTIONS(7629), + [anon_sym_or_eq] = ACTIONS(7629), + [anon_sym_xor_eq] = ACTIONS(7629), + [anon_sym_LT_EQ_GT] = ACTIONS(7629), + [anon_sym_or] = ACTIONS(7627), + [anon_sym_and] = ACTIONS(7627), + [anon_sym_bitor] = ACTIONS(7629), + [anon_sym_xor] = ACTIONS(7627), + [anon_sym_bitand] = ACTIONS(7629), + [anon_sym_not_eq] = ACTIONS(7629), + [anon_sym_DASH_DASH] = ACTIONS(7629), + [anon_sym_PLUS_PLUS] = ACTIONS(7629), + [anon_sym_DOT] = ACTIONS(7627), + [anon_sym_DOT_STAR] = ACTIONS(7629), + [anon_sym_DASH_GT] = ACTIONS(7629), [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9310), - [anon_sym_LBRACK_RBRACK] = ACTIONS(9312), + [anon_sym_final] = ACTIONS(7629), + [anon_sym_override] = ACTIONS(7629), + [anon_sym_GT2] = ACTIONS(7629), + [anon_sym_requires] = ACTIONS(7629), }, - [STATE(3703)] = { - [sym_template_argument_list] = STATE(3601), - [aux_sym_sized_type_specifier_repeat1] = STATE(3914), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7019), - [anon_sym_COMMA] = ACTIONS(7019), - [anon_sym_LPAREN2] = ACTIONS(7019), - [anon_sym_DASH] = ACTIONS(7017), - [anon_sym_PLUS] = ACTIONS(7017), - [anon_sym_STAR] = ACTIONS(7019), - [anon_sym_SLASH] = ACTIONS(7017), - [anon_sym_PERCENT] = ACTIONS(7019), - [anon_sym_PIPE_PIPE] = ACTIONS(7019), - [anon_sym_AMP_AMP] = ACTIONS(7019), - [anon_sym_PIPE] = ACTIONS(7017), - [anon_sym_CARET] = ACTIONS(7019), - [anon_sym_AMP] = ACTIONS(7017), - [anon_sym_EQ_EQ] = ACTIONS(7019), - [anon_sym_BANG_EQ] = ACTIONS(7019), - [anon_sym_GT] = ACTIONS(7017), - [anon_sym_GT_EQ] = ACTIONS(7017), - [anon_sym_LT_EQ] = ACTIONS(7017), - [anon_sym_LT] = ACTIONS(7017), - [anon_sym_LT_LT] = ACTIONS(7019), - [anon_sym_GT_GT] = ACTIONS(7017), - [anon_sym___extension__] = ACTIONS(7019), - [anon_sym___attribute__] = ACTIONS(7019), - [anon_sym___attribute] = ACTIONS(7017), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_LBRACE] = ACTIONS(7019), - [anon_sym_signed] = ACTIONS(6688), - [anon_sym_unsigned] = ACTIONS(6688), - [anon_sym_long] = ACTIONS(6688), - [anon_sym_short] = ACTIONS(6688), - [anon_sym_LBRACK] = ACTIONS(7019), - [anon_sym_const] = ACTIONS(7017), - [anon_sym_constexpr] = ACTIONS(7019), - [anon_sym_volatile] = ACTIONS(7019), - [anon_sym_restrict] = ACTIONS(7019), - [anon_sym___restrict__] = ACTIONS(7019), - [anon_sym__Atomic] = ACTIONS(7019), - [anon_sym__Noreturn] = ACTIONS(7019), - [anon_sym_noreturn] = ACTIONS(7019), - [anon_sym__Nonnull] = ACTIONS(7019), - [anon_sym_mutable] = ACTIONS(7019), - [anon_sym_constinit] = ACTIONS(7019), - [anon_sym_consteval] = ACTIONS(7019), - [anon_sym_alignas] = ACTIONS(7019), - [anon_sym__Alignas] = ACTIONS(7019), - [anon_sym_QMARK] = ACTIONS(7019), - [anon_sym_LT_EQ_GT] = ACTIONS(7019), - [anon_sym_or] = ACTIONS(7019), - [anon_sym_and] = ACTIONS(7019), - [anon_sym_bitor] = ACTIONS(7019), - [anon_sym_xor] = ACTIONS(7019), - [anon_sym_bitand] = ACTIONS(7019), - [anon_sym_not_eq] = ACTIONS(7019), - [anon_sym_DASH_DASH] = ACTIONS(7019), - [anon_sym_PLUS_PLUS] = ACTIONS(7019), - [anon_sym_DOT] = ACTIONS(7017), - [anon_sym_DOT_STAR] = ACTIONS(7019), - [anon_sym_DASH_GT] = ACTIONS(7019), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7019), - [anon_sym_override] = ACTIONS(7019), - [anon_sym_GT2] = ACTIONS(7019), - [anon_sym_requires] = ACTIONS(7019), + [STATE(3209)] = { + [sym_template_argument_list] = STATE(3376), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6567), + [anon_sym_RPAREN] = ACTIONS(6569), + [anon_sym_LPAREN2] = ACTIONS(6569), + [anon_sym_DASH] = ACTIONS(6574), + [anon_sym_PLUS] = ACTIONS(6574), + [anon_sym_STAR] = ACTIONS(6576), + [anon_sym_SLASH] = ACTIONS(6574), + [anon_sym_PERCENT] = ACTIONS(6574), + [anon_sym_PIPE_PIPE] = ACTIONS(6567), + [anon_sym_AMP_AMP] = ACTIONS(6569), + [anon_sym_PIPE] = ACTIONS(6574), + [anon_sym_CARET] = ACTIONS(6574), + [anon_sym_AMP] = ACTIONS(6576), + [anon_sym_EQ_EQ] = ACTIONS(6567), + [anon_sym_BANG_EQ] = ACTIONS(6567), + [anon_sym_GT] = ACTIONS(6574), + [anon_sym_GT_EQ] = ACTIONS(6567), + [anon_sym_LT_EQ] = ACTIONS(6574), + [anon_sym_LT] = ACTIONS(9092), + [anon_sym_LT_LT] = ACTIONS(6574), + [anon_sym_GT_GT] = ACTIONS(6574), + [anon_sym___extension__] = ACTIONS(6572), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(6572), + [anon_sym_LBRACK] = ACTIONS(6569), + [anon_sym_EQ] = ACTIONS(6574), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_constexpr] = ACTIONS(6572), + [anon_sym_volatile] = ACTIONS(6572), + [anon_sym_restrict] = ACTIONS(6572), + [anon_sym___restrict__] = ACTIONS(6572), + [anon_sym__Atomic] = ACTIONS(6572), + [anon_sym__Noreturn] = ACTIONS(6572), + [anon_sym_noreturn] = ACTIONS(6572), + [anon_sym__Nonnull] = ACTIONS(6572), + [anon_sym_mutable] = ACTIONS(6572), + [anon_sym_constinit] = ACTIONS(6572), + [anon_sym_consteval] = ACTIONS(6572), + [anon_sym_alignas] = ACTIONS(6572), + [anon_sym__Alignas] = ACTIONS(6572), + [anon_sym_QMARK] = ACTIONS(6567), + [anon_sym_STAR_EQ] = ACTIONS(6567), + [anon_sym_SLASH_EQ] = ACTIONS(6567), + [anon_sym_PERCENT_EQ] = ACTIONS(6567), + [anon_sym_PLUS_EQ] = ACTIONS(6567), + [anon_sym_DASH_EQ] = ACTIONS(6567), + [anon_sym_LT_LT_EQ] = ACTIONS(6567), + [anon_sym_GT_GT_EQ] = ACTIONS(6567), + [anon_sym_AMP_EQ] = ACTIONS(6567), + [anon_sym_CARET_EQ] = ACTIONS(6567), + [anon_sym_PIPE_EQ] = ACTIONS(6567), + [anon_sym_and_eq] = ACTIONS(6567), + [anon_sym_or_eq] = ACTIONS(6567), + [anon_sym_xor_eq] = ACTIONS(6567), + [anon_sym_LT_EQ_GT] = ACTIONS(6567), + [anon_sym_or] = ACTIONS(6574), + [anon_sym_and] = ACTIONS(6574), + [anon_sym_bitor] = ACTIONS(6567), + [anon_sym_xor] = ACTIONS(6574), + [anon_sym_bitand] = ACTIONS(6567), + [anon_sym_not_eq] = ACTIONS(6567), + [anon_sym_DASH_DASH] = ACTIONS(6567), + [anon_sym_PLUS_PLUS] = ACTIONS(6567), + [anon_sym_DOT] = ACTIONS(6574), + [anon_sym_DOT_STAR] = ACTIONS(6567), + [anon_sym_DASH_GT] = ACTIONS(6567), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6572), + [anon_sym_decltype] = ACTIONS(6572), }, - [STATE(3704)] = { - [sym_identifier] = ACTIONS(8446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8448), - [anon_sym_COMMA] = ACTIONS(8448), - [anon_sym_LPAREN2] = ACTIONS(8448), - [anon_sym_DASH] = ACTIONS(8446), - [anon_sym_PLUS] = ACTIONS(8446), - [anon_sym_STAR] = ACTIONS(8446), - [anon_sym_SLASH] = ACTIONS(8446), - [anon_sym_PERCENT] = ACTIONS(8446), - [anon_sym_PIPE_PIPE] = ACTIONS(8448), - [anon_sym_AMP_AMP] = ACTIONS(8448), - [anon_sym_PIPE] = ACTIONS(8446), - [anon_sym_CARET] = ACTIONS(8446), - [anon_sym_AMP] = ACTIONS(8446), - [anon_sym_EQ_EQ] = ACTIONS(8448), - [anon_sym_BANG_EQ] = ACTIONS(8448), - [anon_sym_GT] = ACTIONS(8446), - [anon_sym_GT_EQ] = ACTIONS(8448), - [anon_sym_LT_EQ] = ACTIONS(8446), - [anon_sym_LT] = ACTIONS(8446), - [anon_sym_LT_LT] = ACTIONS(8446), - [anon_sym_GT_GT] = ACTIONS(8446), - [anon_sym_SEMI] = ACTIONS(8448), - [anon_sym___attribute__] = ACTIONS(8446), - [anon_sym___attribute] = ACTIONS(8446), - [anon_sym_LBRACK] = ACTIONS(8448), - [anon_sym_EQ] = ACTIONS(8446), - [anon_sym_QMARK] = ACTIONS(8448), - [anon_sym_STAR_EQ] = ACTIONS(8448), - [anon_sym_SLASH_EQ] = ACTIONS(8448), - [anon_sym_PERCENT_EQ] = ACTIONS(8448), - [anon_sym_PLUS_EQ] = ACTIONS(8448), - [anon_sym_DASH_EQ] = ACTIONS(8448), - [anon_sym_LT_LT_EQ] = ACTIONS(8448), - [anon_sym_GT_GT_EQ] = ACTIONS(8448), - [anon_sym_AMP_EQ] = ACTIONS(8448), - [anon_sym_CARET_EQ] = ACTIONS(8448), - [anon_sym_PIPE_EQ] = ACTIONS(8448), - [anon_sym_and_eq] = ACTIONS(8446), - [anon_sym_or_eq] = ACTIONS(8446), - [anon_sym_xor_eq] = ACTIONS(8446), - [anon_sym_LT_EQ_GT] = ACTIONS(8448), - [anon_sym_or] = ACTIONS(8446), - [anon_sym_and] = ACTIONS(8446), - [anon_sym_bitor] = ACTIONS(8446), - [anon_sym_xor] = ACTIONS(8446), - [anon_sym_bitand] = ACTIONS(8446), - [anon_sym_not_eq] = ACTIONS(8446), - [anon_sym_DASH_DASH] = ACTIONS(8448), - [anon_sym_PLUS_PLUS] = ACTIONS(8448), - [anon_sym_DOT] = ACTIONS(8446), - [anon_sym_DOT_STAR] = ACTIONS(8448), - [anon_sym_DASH_GT] = ACTIONS(8448), - [anon_sym_L_DQUOTE] = ACTIONS(8448), - [anon_sym_u_DQUOTE] = ACTIONS(8448), - [anon_sym_U_DQUOTE] = ACTIONS(8448), - [anon_sym_u8_DQUOTE] = ACTIONS(8448), - [anon_sym_DQUOTE] = ACTIONS(8448), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8448), - [anon_sym_LR_DQUOTE] = ACTIONS(8448), - [anon_sym_uR_DQUOTE] = ACTIONS(8448), - [anon_sym_UR_DQUOTE] = ACTIONS(8448), - [anon_sym_u8R_DQUOTE] = ACTIONS(8448), - [sym_literal_suffix] = ACTIONS(8446), + [STATE(3210)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7160), + [anon_sym_COMMA] = ACTIONS(7160), + [anon_sym_LPAREN2] = ACTIONS(7160), + [anon_sym_DASH] = ACTIONS(7158), + [anon_sym_PLUS] = ACTIONS(7158), + [anon_sym_STAR] = ACTIONS(7158), + [anon_sym_SLASH] = ACTIONS(7158), + [anon_sym_PERCENT] = ACTIONS(7158), + [anon_sym_PIPE_PIPE] = ACTIONS(7160), + [anon_sym_AMP_AMP] = ACTIONS(7160), + [anon_sym_PIPE] = ACTIONS(7158), + [anon_sym_CARET] = ACTIONS(7158), + [anon_sym_AMP] = ACTIONS(7158), + [anon_sym_EQ_EQ] = ACTIONS(7160), + [anon_sym_BANG_EQ] = ACTIONS(7160), + [anon_sym_GT] = ACTIONS(7158), + [anon_sym_GT_EQ] = ACTIONS(7160), + [anon_sym_LT_EQ] = ACTIONS(7158), + [anon_sym_LT] = ACTIONS(7158), + [anon_sym_LT_LT] = ACTIONS(7158), + [anon_sym_GT_GT] = ACTIONS(7158), + [anon_sym___extension__] = ACTIONS(7160), + [anon_sym_LBRACE] = ACTIONS(7160), + [anon_sym_LBRACK] = ACTIONS(7160), + [anon_sym_RBRACK] = ACTIONS(7160), + [anon_sym_EQ] = ACTIONS(7158), + [anon_sym_const] = ACTIONS(7158), + [anon_sym_constexpr] = ACTIONS(7160), + [anon_sym_volatile] = ACTIONS(7160), + [anon_sym_restrict] = ACTIONS(7160), + [anon_sym___restrict__] = ACTIONS(7160), + [anon_sym__Atomic] = ACTIONS(7160), + [anon_sym__Noreturn] = ACTIONS(7160), + [anon_sym_noreturn] = ACTIONS(7160), + [anon_sym__Nonnull] = ACTIONS(7160), + [anon_sym_mutable] = ACTIONS(7160), + [anon_sym_constinit] = ACTIONS(7160), + [anon_sym_consteval] = ACTIONS(7160), + [anon_sym_alignas] = ACTIONS(7160), + [anon_sym__Alignas] = ACTIONS(7160), + [anon_sym_QMARK] = ACTIONS(7160), + [anon_sym_STAR_EQ] = ACTIONS(7160), + [anon_sym_SLASH_EQ] = ACTIONS(7160), + [anon_sym_PERCENT_EQ] = ACTIONS(7160), + [anon_sym_PLUS_EQ] = ACTIONS(7160), + [anon_sym_DASH_EQ] = ACTIONS(7160), + [anon_sym_LT_LT_EQ] = ACTIONS(7160), + [anon_sym_GT_GT_EQ] = ACTIONS(7160), + [anon_sym_AMP_EQ] = ACTIONS(7160), + [anon_sym_CARET_EQ] = ACTIONS(7160), + [anon_sym_PIPE_EQ] = ACTIONS(7160), + [anon_sym_and_eq] = ACTIONS(7160), + [anon_sym_or_eq] = ACTIONS(7160), + [anon_sym_xor_eq] = ACTIONS(7160), + [anon_sym_LT_EQ_GT] = ACTIONS(7160), + [anon_sym_or] = ACTIONS(7158), + [anon_sym_and] = ACTIONS(7158), + [anon_sym_bitor] = ACTIONS(7160), + [anon_sym_xor] = ACTIONS(7158), + [anon_sym_bitand] = ACTIONS(7160), + [anon_sym_not_eq] = ACTIONS(7160), + [anon_sym_DASH_DASH] = ACTIONS(7160), + [anon_sym_PLUS_PLUS] = ACTIONS(7160), + [anon_sym_DOT] = ACTIONS(7158), + [anon_sym_DOT_STAR] = ACTIONS(7160), + [anon_sym_DASH_GT] = ACTIONS(7160), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7160), + [anon_sym_override] = ACTIONS(7160), + [anon_sym_requires] = ACTIONS(7160), }, - [STATE(3705)] = { - [sym_argument_list] = STATE(3783), - [sym_initializer_list] = STATE(5860), - [aux_sym_sized_type_specifier_repeat1] = STATE(3287), - [sym_identifier] = ACTIONS(6798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6800), - [aux_sym_preproc_if_token2] = ACTIONS(6800), - [aux_sym_preproc_else_token1] = ACTIONS(6800), - [aux_sym_preproc_elif_token1] = ACTIONS(6798), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6800), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6800), - [anon_sym_LPAREN2] = ACTIONS(7399), - [anon_sym_DASH] = ACTIONS(6798), - [anon_sym_PLUS] = ACTIONS(6798), - [anon_sym_STAR] = ACTIONS(6800), - [anon_sym_SLASH] = ACTIONS(6798), - [anon_sym_PERCENT] = ACTIONS(6800), - [anon_sym_PIPE_PIPE] = ACTIONS(6800), - [anon_sym_AMP_AMP] = ACTIONS(6800), - [anon_sym_PIPE] = ACTIONS(6798), - [anon_sym_CARET] = ACTIONS(6800), - [anon_sym_AMP] = ACTIONS(6798), - [anon_sym_EQ_EQ] = ACTIONS(6800), - [anon_sym_BANG_EQ] = ACTIONS(6800), - [anon_sym_GT] = ACTIONS(6798), - [anon_sym_GT_EQ] = ACTIONS(6800), - [anon_sym_LT_EQ] = ACTIONS(6798), - [anon_sym_LT] = ACTIONS(6798), - [anon_sym_LT_LT] = ACTIONS(6800), - [anon_sym_GT_GT] = ACTIONS(6800), - [anon_sym___extension__] = ACTIONS(6798), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_signed] = ACTIONS(8788), - [anon_sym_unsigned] = ACTIONS(8788), - [anon_sym_long] = ACTIONS(8788), - [anon_sym_short] = ACTIONS(8788), - [anon_sym_LBRACK] = ACTIONS(6800), - [anon_sym_const] = ACTIONS(6798), - [anon_sym_constexpr] = ACTIONS(6798), - [anon_sym_volatile] = ACTIONS(6798), - [anon_sym_restrict] = ACTIONS(6798), - [anon_sym___restrict__] = ACTIONS(6798), - [anon_sym__Atomic] = ACTIONS(6798), - [anon_sym__Noreturn] = ACTIONS(6798), - [anon_sym_noreturn] = ACTIONS(6798), - [anon_sym__Nonnull] = ACTIONS(6798), - [anon_sym_mutable] = ACTIONS(6798), - [anon_sym_constinit] = ACTIONS(6798), - [anon_sym_consteval] = ACTIONS(6798), - [anon_sym_alignas] = ACTIONS(6798), - [anon_sym__Alignas] = ACTIONS(6798), - [anon_sym_QMARK] = ACTIONS(6800), - [anon_sym_LT_EQ_GT] = ACTIONS(6800), - [anon_sym_or] = ACTIONS(6798), - [anon_sym_and] = ACTIONS(6798), - [anon_sym_bitor] = ACTIONS(6798), - [anon_sym_xor] = ACTIONS(6798), - [anon_sym_bitand] = ACTIONS(6798), - [anon_sym_not_eq] = ACTIONS(6798), - [anon_sym_DASH_DASH] = ACTIONS(6800), - [anon_sym_PLUS_PLUS] = ACTIONS(6800), - [anon_sym_DOT] = ACTIONS(6798), - [anon_sym_DOT_STAR] = ACTIONS(6800), - [anon_sym_DASH_GT] = ACTIONS(6800), + [STATE(3211)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), + [anon_sym_COMMA] = ACTIONS(7719), + [anon_sym_RPAREN] = ACTIONS(7719), + [anon_sym_LPAREN2] = ACTIONS(7719), + [anon_sym_DASH] = ACTIONS(7717), + [anon_sym_PLUS] = ACTIONS(7717), + [anon_sym_STAR] = ACTIONS(7717), + [anon_sym_SLASH] = ACTIONS(7717), + [anon_sym_PERCENT] = ACTIONS(7717), + [anon_sym_PIPE_PIPE] = ACTIONS(7719), + [anon_sym_AMP_AMP] = ACTIONS(7719), + [anon_sym_PIPE] = ACTIONS(7717), + [anon_sym_CARET] = ACTIONS(7717), + [anon_sym_AMP] = ACTIONS(7717), + [anon_sym_EQ_EQ] = ACTIONS(7719), + [anon_sym_BANG_EQ] = ACTIONS(7719), + [anon_sym_GT] = ACTIONS(7717), + [anon_sym_GT_EQ] = ACTIONS(7719), + [anon_sym_LT_EQ] = ACTIONS(7717), + [anon_sym_LT] = ACTIONS(7717), + [anon_sym_LT_LT] = ACTIONS(7717), + [anon_sym_GT_GT] = ACTIONS(7717), + [anon_sym___extension__] = ACTIONS(7719), + [anon_sym___attribute__] = ACTIONS(7719), + [anon_sym___attribute] = ACTIONS(7717), + [anon_sym_LBRACE] = ACTIONS(7719), + [anon_sym_LBRACK] = ACTIONS(7719), + [anon_sym_EQ] = ACTIONS(7717), + [anon_sym_const] = ACTIONS(7717), + [anon_sym_constexpr] = ACTIONS(7719), + [anon_sym_volatile] = ACTIONS(7719), + [anon_sym_restrict] = ACTIONS(7719), + [anon_sym___restrict__] = ACTIONS(7719), + [anon_sym__Atomic] = ACTIONS(7719), + [anon_sym__Noreturn] = ACTIONS(7719), + [anon_sym_noreturn] = ACTIONS(7719), + [anon_sym__Nonnull] = ACTIONS(7719), + [anon_sym_mutable] = ACTIONS(7719), + [anon_sym_constinit] = ACTIONS(7719), + [anon_sym_consteval] = ACTIONS(7719), + [anon_sym_alignas] = ACTIONS(7719), + [anon_sym__Alignas] = ACTIONS(7719), + [anon_sym_QMARK] = ACTIONS(7719), + [anon_sym_STAR_EQ] = ACTIONS(7719), + [anon_sym_SLASH_EQ] = ACTIONS(7719), + [anon_sym_PERCENT_EQ] = ACTIONS(7719), + [anon_sym_PLUS_EQ] = ACTIONS(7719), + [anon_sym_DASH_EQ] = ACTIONS(7719), + [anon_sym_LT_LT_EQ] = ACTIONS(7719), + [anon_sym_GT_GT_EQ] = ACTIONS(7719), + [anon_sym_AMP_EQ] = ACTIONS(7719), + [anon_sym_CARET_EQ] = ACTIONS(7719), + [anon_sym_PIPE_EQ] = ACTIONS(7719), + [anon_sym_LT_EQ_GT] = ACTIONS(7719), + [anon_sym_or] = ACTIONS(7719), + [anon_sym_and] = ACTIONS(7719), + [anon_sym_bitor] = ACTIONS(7719), + [anon_sym_xor] = ACTIONS(7719), + [anon_sym_bitand] = ACTIONS(7719), + [anon_sym_not_eq] = ACTIONS(7719), + [anon_sym_DASH_DASH] = ACTIONS(7719), + [anon_sym_PLUS_PLUS] = ACTIONS(7719), + [anon_sym_DOT] = ACTIONS(7717), + [anon_sym_DOT_STAR] = ACTIONS(7719), + [anon_sym_DASH_GT] = ACTIONS(7717), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7719), + [anon_sym_override] = ACTIONS(7719), + [anon_sym_requires] = ACTIONS(7719), + [anon_sym_DASH_GT_STAR] = ACTIONS(7719), + }, + [STATE(3212)] = { + [sym_identifier] = ACTIONS(7771), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7773), + [anon_sym_COMMA] = ACTIONS(7773), + [anon_sym_RPAREN] = ACTIONS(7773), + [anon_sym_LPAREN2] = ACTIONS(7773), + [anon_sym_DASH] = ACTIONS(7771), + [anon_sym_PLUS] = ACTIONS(7771), + [anon_sym_STAR] = ACTIONS(7773), + [anon_sym_SLASH] = ACTIONS(7771), + [anon_sym_PERCENT] = ACTIONS(7773), + [anon_sym_PIPE_PIPE] = ACTIONS(7773), + [anon_sym_AMP_AMP] = ACTIONS(7773), + [anon_sym_PIPE] = ACTIONS(7771), + [anon_sym_CARET] = ACTIONS(7773), + [anon_sym_AMP] = ACTIONS(7771), + [anon_sym_EQ_EQ] = ACTIONS(7773), + [anon_sym_BANG_EQ] = ACTIONS(7773), + [anon_sym_GT] = ACTIONS(7771), + [anon_sym_GT_EQ] = ACTIONS(7773), + [anon_sym_LT_EQ] = ACTIONS(7771), + [anon_sym_LT] = ACTIONS(7771), + [anon_sym_LT_LT] = ACTIONS(7773), + [anon_sym_GT_GT] = ACTIONS(7773), + [anon_sym_SEMI] = ACTIONS(7773), + [anon_sym___extension__] = ACTIONS(7771), + [anon_sym___attribute__] = ACTIONS(7771), + [anon_sym___attribute] = ACTIONS(7771), + [anon_sym_COLON] = ACTIONS(7771), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7773), + [anon_sym___based] = ACTIONS(7771), + [anon_sym_LBRACE] = ACTIONS(7773), + [anon_sym_RBRACE] = ACTIONS(7773), + [anon_sym_signed] = ACTIONS(7771), + [anon_sym_unsigned] = ACTIONS(7771), + [anon_sym_long] = ACTIONS(7771), + [anon_sym_short] = ACTIONS(7771), + [anon_sym_LBRACK] = ACTIONS(7773), + [anon_sym_const] = ACTIONS(7771), + [anon_sym_constexpr] = ACTIONS(7771), + [anon_sym_volatile] = ACTIONS(7771), + [anon_sym_restrict] = ACTIONS(7771), + [anon_sym___restrict__] = ACTIONS(7771), + [anon_sym__Atomic] = ACTIONS(7771), + [anon_sym__Noreturn] = ACTIONS(7771), + [anon_sym_noreturn] = ACTIONS(7771), + [anon_sym__Nonnull] = ACTIONS(7771), + [anon_sym_mutable] = ACTIONS(7771), + [anon_sym_constinit] = ACTIONS(7771), + [anon_sym_consteval] = ACTIONS(7771), + [anon_sym_alignas] = ACTIONS(7771), + [anon_sym__Alignas] = ACTIONS(7771), + [sym_primitive_type] = ACTIONS(7771), + [anon_sym_QMARK] = ACTIONS(7773), + [anon_sym_LT_EQ_GT] = ACTIONS(7773), + [anon_sym_or] = ACTIONS(7771), + [anon_sym_and] = ACTIONS(7771), + [anon_sym_bitor] = ACTIONS(7771), + [anon_sym_xor] = ACTIONS(7771), + [anon_sym_bitand] = ACTIONS(7771), + [anon_sym_not_eq] = ACTIONS(7771), + [anon_sym_DASH_DASH] = ACTIONS(7773), + [anon_sym_PLUS_PLUS] = ACTIONS(7773), + [anon_sym_DOT] = ACTIONS(7771), + [anon_sym_DOT_STAR] = ACTIONS(7773), + [anon_sym_DASH_GT] = ACTIONS(7773), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7771), + [anon_sym_override] = ACTIONS(7771), + [anon_sym_requires] = ACTIONS(7771), + [anon_sym_COLON_RBRACK] = ACTIONS(7773), + }, + [STATE(3213)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), + [anon_sym_COMMA] = ACTIONS(7563), + [anon_sym_LPAREN2] = ACTIONS(7563), + [anon_sym_DASH] = ACTIONS(7561), + [anon_sym_PLUS] = ACTIONS(7561), + [anon_sym_STAR] = ACTIONS(7561), + [anon_sym_SLASH] = ACTIONS(7561), + [anon_sym_PERCENT] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_AMP_AMP] = ACTIONS(7563), + [anon_sym_PIPE] = ACTIONS(7561), + [anon_sym_CARET] = ACTIONS(7561), + [anon_sym_AMP] = ACTIONS(7561), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_GT] = ACTIONS(7561), + [anon_sym_GT_EQ] = ACTIONS(7561), + [anon_sym_LT_EQ] = ACTIONS(7561), + [anon_sym_LT] = ACTIONS(7561), + [anon_sym_LT_LT] = ACTIONS(7561), + [anon_sym_GT_GT] = ACTIONS(7561), + [anon_sym___extension__] = ACTIONS(7563), + [anon_sym_LBRACE] = ACTIONS(7563), + [anon_sym_LBRACK] = ACTIONS(7563), + [anon_sym_EQ] = ACTIONS(7561), + [anon_sym_const] = ACTIONS(7561), + [anon_sym_constexpr] = ACTIONS(7563), + [anon_sym_volatile] = ACTIONS(7563), + [anon_sym_restrict] = ACTIONS(7563), + [anon_sym___restrict__] = ACTIONS(7563), + [anon_sym__Atomic] = ACTIONS(7563), + [anon_sym__Noreturn] = ACTIONS(7563), + [anon_sym_noreturn] = ACTIONS(7563), + [anon_sym__Nonnull] = ACTIONS(7563), + [anon_sym_mutable] = ACTIONS(7563), + [anon_sym_constinit] = ACTIONS(7563), + [anon_sym_consteval] = ACTIONS(7563), + [anon_sym_alignas] = ACTIONS(7563), + [anon_sym__Alignas] = ACTIONS(7563), + [anon_sym_QMARK] = ACTIONS(7563), + [anon_sym_STAR_EQ] = ACTIONS(7563), + [anon_sym_SLASH_EQ] = ACTIONS(7563), + [anon_sym_PERCENT_EQ] = ACTIONS(7563), + [anon_sym_PLUS_EQ] = ACTIONS(7563), + [anon_sym_DASH_EQ] = ACTIONS(7563), + [anon_sym_LT_LT_EQ] = ACTIONS(7563), + [anon_sym_GT_GT_EQ] = ACTIONS(7561), + [anon_sym_AMP_EQ] = ACTIONS(7563), + [anon_sym_CARET_EQ] = ACTIONS(7563), + [anon_sym_PIPE_EQ] = ACTIONS(7563), + [anon_sym_and_eq] = ACTIONS(7563), + [anon_sym_or_eq] = ACTIONS(7563), + [anon_sym_xor_eq] = ACTIONS(7563), + [anon_sym_LT_EQ_GT] = ACTIONS(7563), + [anon_sym_or] = ACTIONS(7561), + [anon_sym_and] = ACTIONS(7561), + [anon_sym_bitor] = ACTIONS(7563), + [anon_sym_xor] = ACTIONS(7561), + [anon_sym_bitand] = ACTIONS(7563), + [anon_sym_not_eq] = ACTIONS(7563), + [anon_sym_DASH_DASH] = ACTIONS(7563), + [anon_sym_PLUS_PLUS] = ACTIONS(7563), + [anon_sym_DOT] = ACTIONS(7561), + [anon_sym_DOT_STAR] = ACTIONS(7563), + [anon_sym_DASH_GT] = ACTIONS(7563), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7563), + [anon_sym_override] = ACTIONS(7563), + [anon_sym_GT2] = ACTIONS(7563), + [anon_sym_requires] = ACTIONS(7563), + }, + [STATE(3214)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7741), + [anon_sym_COMMA] = ACTIONS(7741), + [anon_sym_LPAREN2] = ACTIONS(7741), + [anon_sym_DASH] = ACTIONS(7739), + [anon_sym_PLUS] = ACTIONS(7739), + [anon_sym_STAR] = ACTIONS(7739), + [anon_sym_SLASH] = ACTIONS(7739), + [anon_sym_PERCENT] = ACTIONS(7739), + [anon_sym_PIPE_PIPE] = ACTIONS(7741), + [anon_sym_AMP_AMP] = ACTIONS(7741), + [anon_sym_PIPE] = ACTIONS(7739), + [anon_sym_CARET] = ACTIONS(7739), + [anon_sym_AMP] = ACTIONS(7739), + [anon_sym_EQ_EQ] = ACTIONS(7741), + [anon_sym_BANG_EQ] = ACTIONS(7741), + [anon_sym_GT] = ACTIONS(7739), + [anon_sym_GT_EQ] = ACTIONS(7741), + [anon_sym_LT_EQ] = ACTIONS(7739), + [anon_sym_LT] = ACTIONS(7739), + [anon_sym_LT_LT] = ACTIONS(7739), + [anon_sym_GT_GT] = ACTIONS(7739), + [anon_sym___extension__] = ACTIONS(7741), + [anon_sym_LBRACE] = ACTIONS(7741), + [anon_sym_LBRACK] = ACTIONS(7741), + [anon_sym_RBRACK] = ACTIONS(7741), + [anon_sym_EQ] = ACTIONS(7739), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7741), + [anon_sym_volatile] = ACTIONS(7741), + [anon_sym_restrict] = ACTIONS(7741), + [anon_sym___restrict__] = ACTIONS(7741), + [anon_sym__Atomic] = ACTIONS(7741), + [anon_sym__Noreturn] = ACTIONS(7741), + [anon_sym_noreturn] = ACTIONS(7741), + [anon_sym__Nonnull] = ACTIONS(7741), + [anon_sym_mutable] = ACTIONS(7741), + [anon_sym_constinit] = ACTIONS(7741), + [anon_sym_consteval] = ACTIONS(7741), + [anon_sym_alignas] = ACTIONS(7741), + [anon_sym__Alignas] = ACTIONS(7741), + [anon_sym_QMARK] = ACTIONS(7741), + [anon_sym_STAR_EQ] = ACTIONS(7741), + [anon_sym_SLASH_EQ] = ACTIONS(7741), + [anon_sym_PERCENT_EQ] = ACTIONS(7741), + [anon_sym_PLUS_EQ] = ACTIONS(7741), + [anon_sym_DASH_EQ] = ACTIONS(7741), + [anon_sym_LT_LT_EQ] = ACTIONS(7741), + [anon_sym_GT_GT_EQ] = ACTIONS(7741), + [anon_sym_AMP_EQ] = ACTIONS(7741), + [anon_sym_CARET_EQ] = ACTIONS(7741), + [anon_sym_PIPE_EQ] = ACTIONS(7741), + [anon_sym_and_eq] = ACTIONS(7741), + [anon_sym_or_eq] = ACTIONS(7741), + [anon_sym_xor_eq] = ACTIONS(7741), + [anon_sym_LT_EQ_GT] = ACTIONS(7741), + [anon_sym_or] = ACTIONS(7739), + [anon_sym_and] = ACTIONS(7739), + [anon_sym_bitor] = ACTIONS(7741), + [anon_sym_xor] = ACTIONS(7739), + [anon_sym_bitand] = ACTIONS(7741), + [anon_sym_not_eq] = ACTIONS(7741), + [anon_sym_DASH_DASH] = ACTIONS(7741), + [anon_sym_PLUS_PLUS] = ACTIONS(7741), + [anon_sym_DOT] = ACTIONS(7739), + [anon_sym_DOT_STAR] = ACTIONS(7741), + [anon_sym_DASH_GT] = ACTIONS(7741), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7741), + [anon_sym_override] = ACTIONS(7741), + [anon_sym_requires] = ACTIONS(7741), + }, + [STATE(3215)] = { + [sym_identifier] = ACTIONS(7779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7781), + [anon_sym_COMMA] = ACTIONS(7781), + [anon_sym_RPAREN] = ACTIONS(7781), + [anon_sym_LPAREN2] = ACTIONS(7781), + [anon_sym_DASH] = ACTIONS(7779), + [anon_sym_PLUS] = ACTIONS(7779), + [anon_sym_STAR] = ACTIONS(7781), + [anon_sym_SLASH] = ACTIONS(7779), + [anon_sym_PERCENT] = ACTIONS(7781), + [anon_sym_PIPE_PIPE] = ACTIONS(7781), + [anon_sym_AMP_AMP] = ACTIONS(7781), + [anon_sym_PIPE] = ACTIONS(7779), + [anon_sym_CARET] = ACTIONS(7781), + [anon_sym_AMP] = ACTIONS(7779), + [anon_sym_EQ_EQ] = ACTIONS(7781), + [anon_sym_BANG_EQ] = ACTIONS(7781), + [anon_sym_GT] = ACTIONS(7779), + [anon_sym_GT_EQ] = ACTIONS(7781), + [anon_sym_LT_EQ] = ACTIONS(7779), + [anon_sym_LT] = ACTIONS(7779), + [anon_sym_LT_LT] = ACTIONS(7781), + [anon_sym_GT_GT] = ACTIONS(7781), + [anon_sym_SEMI] = ACTIONS(7781), + [anon_sym___extension__] = ACTIONS(7779), + [anon_sym___attribute__] = ACTIONS(7779), + [anon_sym___attribute] = ACTIONS(7779), + [anon_sym_COLON] = ACTIONS(7779), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7781), + [anon_sym___based] = ACTIONS(7779), + [anon_sym_LBRACE] = ACTIONS(7781), + [anon_sym_RBRACE] = ACTIONS(7781), + [anon_sym_signed] = ACTIONS(7779), + [anon_sym_unsigned] = ACTIONS(7779), + [anon_sym_long] = ACTIONS(7779), + [anon_sym_short] = ACTIONS(7779), + [anon_sym_LBRACK] = ACTIONS(7781), + [anon_sym_const] = ACTIONS(7779), + [anon_sym_constexpr] = ACTIONS(7779), + [anon_sym_volatile] = ACTIONS(7779), + [anon_sym_restrict] = ACTIONS(7779), + [anon_sym___restrict__] = ACTIONS(7779), + [anon_sym__Atomic] = ACTIONS(7779), + [anon_sym__Noreturn] = ACTIONS(7779), + [anon_sym_noreturn] = ACTIONS(7779), + [anon_sym__Nonnull] = ACTIONS(7779), + [anon_sym_mutable] = ACTIONS(7779), + [anon_sym_constinit] = ACTIONS(7779), + [anon_sym_consteval] = ACTIONS(7779), + [anon_sym_alignas] = ACTIONS(7779), + [anon_sym__Alignas] = ACTIONS(7779), + [sym_primitive_type] = ACTIONS(7779), + [anon_sym_QMARK] = ACTIONS(7781), + [anon_sym_LT_EQ_GT] = ACTIONS(7781), + [anon_sym_or] = ACTIONS(7779), + [anon_sym_and] = ACTIONS(7779), + [anon_sym_bitor] = ACTIONS(7779), + [anon_sym_xor] = ACTIONS(7779), + [anon_sym_bitand] = ACTIONS(7779), + [anon_sym_not_eq] = ACTIONS(7779), + [anon_sym_DASH_DASH] = ACTIONS(7781), + [anon_sym_PLUS_PLUS] = ACTIONS(7781), + [anon_sym_DOT] = ACTIONS(7779), + [anon_sym_DOT_STAR] = ACTIONS(7781), + [anon_sym_DASH_GT] = ACTIONS(7781), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7779), + [anon_sym_override] = ACTIONS(7779), + [anon_sym_requires] = ACTIONS(7779), + [anon_sym_COLON_RBRACK] = ACTIONS(7781), + }, + [STATE(3216)] = { + [sym_identifier] = ACTIONS(9095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9097), + [anon_sym_COMMA] = ACTIONS(9097), + [anon_sym_RPAREN] = ACTIONS(9097), + [aux_sym_preproc_if_token2] = ACTIONS(9097), + [aux_sym_preproc_else_token1] = ACTIONS(9097), + [aux_sym_preproc_elif_token1] = ACTIONS(9095), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9097), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9097), + [anon_sym_LPAREN2] = ACTIONS(9097), + [anon_sym_DASH] = ACTIONS(9095), + [anon_sym_PLUS] = ACTIONS(9095), + [anon_sym_STAR] = ACTIONS(9095), + [anon_sym_SLASH] = ACTIONS(9095), + [anon_sym_PERCENT] = ACTIONS(9095), + [anon_sym_PIPE_PIPE] = ACTIONS(9097), + [anon_sym_AMP_AMP] = ACTIONS(9097), + [anon_sym_PIPE] = ACTIONS(9095), + [anon_sym_CARET] = ACTIONS(9095), + [anon_sym_AMP] = ACTIONS(9095), + [anon_sym_EQ_EQ] = ACTIONS(9097), + [anon_sym_BANG_EQ] = ACTIONS(9097), + [anon_sym_GT] = ACTIONS(9095), + [anon_sym_GT_EQ] = ACTIONS(9097), + [anon_sym_LT_EQ] = ACTIONS(9095), + [anon_sym_LT] = ACTIONS(9095), + [anon_sym_LT_LT] = ACTIONS(9095), + [anon_sym_GT_GT] = ACTIONS(9095), + [anon_sym_SEMI] = ACTIONS(9097), + [anon_sym___attribute__] = ACTIONS(9095), + [anon_sym___attribute] = ACTIONS(9095), + [anon_sym_COLON] = ACTIONS(9095), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9097), + [anon_sym_LBRACE] = ACTIONS(9097), + [anon_sym_RBRACE] = ACTIONS(9097), + [anon_sym_LBRACK] = ACTIONS(9095), + [anon_sym_RBRACK] = ACTIONS(9097), + [anon_sym_EQ] = ACTIONS(9095), + [anon_sym_QMARK] = ACTIONS(9097), + [anon_sym_STAR_EQ] = ACTIONS(9097), + [anon_sym_SLASH_EQ] = ACTIONS(9097), + [anon_sym_PERCENT_EQ] = ACTIONS(9097), + [anon_sym_PLUS_EQ] = ACTIONS(9097), + [anon_sym_DASH_EQ] = ACTIONS(9097), + [anon_sym_LT_LT_EQ] = ACTIONS(9097), + [anon_sym_GT_GT_EQ] = ACTIONS(9097), + [anon_sym_AMP_EQ] = ACTIONS(9097), + [anon_sym_CARET_EQ] = ACTIONS(9097), + [anon_sym_PIPE_EQ] = ACTIONS(9097), + [anon_sym_and_eq] = ACTIONS(9095), + [anon_sym_or_eq] = ACTIONS(9095), + [anon_sym_xor_eq] = ACTIONS(9095), + [anon_sym_LT_EQ_GT] = ACTIONS(9097), + [anon_sym_or] = ACTIONS(9095), + [anon_sym_and] = ACTIONS(9095), + [anon_sym_bitor] = ACTIONS(9095), + [anon_sym_xor] = ACTIONS(9095), + [anon_sym_bitand] = ACTIONS(9095), + [anon_sym_not_eq] = ACTIONS(9095), + [anon_sym_DASH_DASH] = ACTIONS(9097), + [anon_sym_PLUS_PLUS] = ACTIONS(9097), + [anon_sym_asm] = ACTIONS(9095), + [anon_sym___asm__] = ACTIONS(9095), + [anon_sym___asm] = ACTIONS(9095), + [anon_sym_DOT] = ACTIONS(9095), + [anon_sym_DOT_STAR] = ACTIONS(9097), + [anon_sym_DASH_GT] = ACTIONS(9097), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9095), + [anon_sym_COLON_RBRACK] = ACTIONS(9097), + }, + [STATE(3217)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7645), + [anon_sym_COMMA] = ACTIONS(7645), + [anon_sym_LPAREN2] = ACTIONS(7645), + [anon_sym_DASH] = ACTIONS(7643), + [anon_sym_PLUS] = ACTIONS(7643), + [anon_sym_STAR] = ACTIONS(7643), + [anon_sym_SLASH] = ACTIONS(7643), + [anon_sym_PERCENT] = ACTIONS(7643), + [anon_sym_PIPE_PIPE] = ACTIONS(7645), + [anon_sym_AMP_AMP] = ACTIONS(7645), + [anon_sym_PIPE] = ACTIONS(7643), + [anon_sym_CARET] = ACTIONS(7643), + [anon_sym_AMP] = ACTIONS(7643), + [anon_sym_EQ_EQ] = ACTIONS(7645), + [anon_sym_BANG_EQ] = ACTIONS(7645), + [anon_sym_GT] = ACTIONS(7643), + [anon_sym_GT_EQ] = ACTIONS(7643), + [anon_sym_LT_EQ] = ACTIONS(7643), + [anon_sym_LT] = ACTIONS(7643), + [anon_sym_LT_LT] = ACTIONS(7643), + [anon_sym_GT_GT] = ACTIONS(7643), + [anon_sym___extension__] = ACTIONS(7645), + [anon_sym_LBRACE] = ACTIONS(7645), + [anon_sym_LBRACK] = ACTIONS(7645), + [anon_sym_EQ] = ACTIONS(7643), + [anon_sym_const] = ACTIONS(7643), + [anon_sym_constexpr] = ACTIONS(7645), + [anon_sym_volatile] = ACTIONS(7645), + [anon_sym_restrict] = ACTIONS(7645), + [anon_sym___restrict__] = ACTIONS(7645), + [anon_sym__Atomic] = ACTIONS(7645), + [anon_sym__Noreturn] = ACTIONS(7645), + [anon_sym_noreturn] = ACTIONS(7645), + [anon_sym__Nonnull] = ACTIONS(7645), + [anon_sym_mutable] = ACTIONS(7645), + [anon_sym_constinit] = ACTIONS(7645), + [anon_sym_consteval] = ACTIONS(7645), + [anon_sym_alignas] = ACTIONS(7645), + [anon_sym__Alignas] = ACTIONS(7645), + [anon_sym_QMARK] = ACTIONS(7645), + [anon_sym_STAR_EQ] = ACTIONS(7645), + [anon_sym_SLASH_EQ] = ACTIONS(7645), + [anon_sym_PERCENT_EQ] = ACTIONS(7645), + [anon_sym_PLUS_EQ] = ACTIONS(7645), + [anon_sym_DASH_EQ] = ACTIONS(7645), + [anon_sym_LT_LT_EQ] = ACTIONS(7645), + [anon_sym_GT_GT_EQ] = ACTIONS(7643), + [anon_sym_AMP_EQ] = ACTIONS(7645), + [anon_sym_CARET_EQ] = ACTIONS(7645), + [anon_sym_PIPE_EQ] = ACTIONS(7645), + [anon_sym_and_eq] = ACTIONS(7645), + [anon_sym_or_eq] = ACTIONS(7645), + [anon_sym_xor_eq] = ACTIONS(7645), + [anon_sym_LT_EQ_GT] = ACTIONS(7645), + [anon_sym_or] = ACTIONS(7643), + [anon_sym_and] = ACTIONS(7643), + [anon_sym_bitor] = ACTIONS(7645), + [anon_sym_xor] = ACTIONS(7643), + [anon_sym_bitand] = ACTIONS(7645), + [anon_sym_not_eq] = ACTIONS(7645), + [anon_sym_DASH_DASH] = ACTIONS(7645), + [anon_sym_PLUS_PLUS] = ACTIONS(7645), + [anon_sym_DOT] = ACTIONS(7643), + [anon_sym_DOT_STAR] = ACTIONS(7645), + [anon_sym_DASH_GT] = ACTIONS(7645), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7645), + [anon_sym_override] = ACTIONS(7645), + [anon_sym_GT2] = ACTIONS(7645), + [anon_sym_requires] = ACTIONS(7645), }, - [STATE(3706)] = { - [sym_identifier] = ACTIONS(5260), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_RPAREN] = ACTIONS(5253), - [aux_sym_preproc_if_token2] = ACTIONS(5253), - [aux_sym_preproc_else_token1] = ACTIONS(5253), - [aux_sym_preproc_elif_token1] = ACTIONS(5260), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5253), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5253), - [anon_sym_LPAREN2] = ACTIONS(5253), - [anon_sym_DASH] = ACTIONS(5260), - [anon_sym_PLUS] = ACTIONS(5260), - [anon_sym_STAR] = ACTIONS(5260), - [anon_sym_SLASH] = ACTIONS(5260), - [anon_sym_PERCENT] = ACTIONS(5260), - [anon_sym_PIPE_PIPE] = ACTIONS(5253), - [anon_sym_AMP_AMP] = ACTIONS(5253), - [anon_sym_PIPE] = ACTIONS(5260), - [anon_sym_CARET] = ACTIONS(5260), - [anon_sym_AMP] = ACTIONS(5260), - [anon_sym_EQ_EQ] = ACTIONS(5253), - [anon_sym_BANG_EQ] = ACTIONS(5253), - [anon_sym_GT] = ACTIONS(5260), - [anon_sym_GT_EQ] = ACTIONS(5253), - [anon_sym_LT_EQ] = ACTIONS(5260), - [anon_sym_LT] = ACTIONS(5260), - [anon_sym_LT_LT] = ACTIONS(5260), - [anon_sym_GT_GT] = ACTIONS(5260), - [anon_sym_SEMI] = ACTIONS(5253), - [anon_sym___attribute__] = ACTIONS(5260), - [anon_sym___attribute] = ACTIONS(5260), - [anon_sym_COLON] = ACTIONS(5260), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5253), - [anon_sym_RBRACE] = ACTIONS(5253), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(5260), - [anon_sym_QMARK] = ACTIONS(5253), - [anon_sym_STAR_EQ] = ACTIONS(5253), - [anon_sym_SLASH_EQ] = ACTIONS(5253), - [anon_sym_PERCENT_EQ] = ACTIONS(5253), - [anon_sym_PLUS_EQ] = ACTIONS(5253), - [anon_sym_DASH_EQ] = ACTIONS(5253), - [anon_sym_LT_LT_EQ] = ACTIONS(5253), - [anon_sym_GT_GT_EQ] = ACTIONS(5253), - [anon_sym_AMP_EQ] = ACTIONS(5253), - [anon_sym_CARET_EQ] = ACTIONS(5253), - [anon_sym_PIPE_EQ] = ACTIONS(5253), - [anon_sym_and_eq] = ACTIONS(5260), - [anon_sym_or_eq] = ACTIONS(5260), - [anon_sym_xor_eq] = ACTIONS(5260), - [anon_sym_LT_EQ_GT] = ACTIONS(5253), - [anon_sym_or] = ACTIONS(5260), - [anon_sym_and] = ACTIONS(5260), - [anon_sym_bitor] = ACTIONS(5260), - [anon_sym_xor] = ACTIONS(5260), - [anon_sym_bitand] = ACTIONS(5260), - [anon_sym_not_eq] = ACTIONS(5260), - [anon_sym_DASH_DASH] = ACTIONS(5253), - [anon_sym_PLUS_PLUS] = ACTIONS(5253), - [anon_sym_DOT] = ACTIONS(5260), - [anon_sym_DOT_STAR] = ACTIONS(5253), - [anon_sym_DASH_GT] = ACTIONS(5253), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(5253), + [STATE(3218)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7571), + [anon_sym_COMMA] = ACTIONS(7571), + [anon_sym_LPAREN2] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7569), + [anon_sym_PLUS] = ACTIONS(7569), + [anon_sym_STAR] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7569), + [anon_sym_PERCENT] = ACTIONS(7569), + [anon_sym_PIPE_PIPE] = ACTIONS(7571), + [anon_sym_AMP_AMP] = ACTIONS(7571), + [anon_sym_PIPE] = ACTIONS(7569), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_AMP] = ACTIONS(7569), + [anon_sym_EQ_EQ] = ACTIONS(7571), + [anon_sym_BANG_EQ] = ACTIONS(7571), + [anon_sym_GT] = ACTIONS(7569), + [anon_sym_GT_EQ] = ACTIONS(7569), + [anon_sym_LT_EQ] = ACTIONS(7569), + [anon_sym_LT] = ACTIONS(7569), + [anon_sym_LT_LT] = ACTIONS(7569), + [anon_sym_GT_GT] = ACTIONS(7569), + [anon_sym___extension__] = ACTIONS(7571), + [anon_sym_LBRACE] = ACTIONS(7571), + [anon_sym_LBRACK] = ACTIONS(7571), + [anon_sym_EQ] = ACTIONS(7569), + [anon_sym_const] = ACTIONS(7569), + [anon_sym_constexpr] = ACTIONS(7571), + [anon_sym_volatile] = ACTIONS(7571), + [anon_sym_restrict] = ACTIONS(7571), + [anon_sym___restrict__] = ACTIONS(7571), + [anon_sym__Atomic] = ACTIONS(7571), + [anon_sym__Noreturn] = ACTIONS(7571), + [anon_sym_noreturn] = ACTIONS(7571), + [anon_sym__Nonnull] = ACTIONS(7571), + [anon_sym_mutable] = ACTIONS(7571), + [anon_sym_constinit] = ACTIONS(7571), + [anon_sym_consteval] = ACTIONS(7571), + [anon_sym_alignas] = ACTIONS(7571), + [anon_sym__Alignas] = ACTIONS(7571), + [anon_sym_QMARK] = ACTIONS(7571), + [anon_sym_STAR_EQ] = ACTIONS(7571), + [anon_sym_SLASH_EQ] = ACTIONS(7571), + [anon_sym_PERCENT_EQ] = ACTIONS(7571), + [anon_sym_PLUS_EQ] = ACTIONS(7571), + [anon_sym_DASH_EQ] = ACTIONS(7571), + [anon_sym_LT_LT_EQ] = ACTIONS(7571), + [anon_sym_GT_GT_EQ] = ACTIONS(7569), + [anon_sym_AMP_EQ] = ACTIONS(7571), + [anon_sym_CARET_EQ] = ACTIONS(7571), + [anon_sym_PIPE_EQ] = ACTIONS(7571), + [anon_sym_and_eq] = ACTIONS(7571), + [anon_sym_or_eq] = ACTIONS(7571), + [anon_sym_xor_eq] = ACTIONS(7571), + [anon_sym_LT_EQ_GT] = ACTIONS(7571), + [anon_sym_or] = ACTIONS(7569), + [anon_sym_and] = ACTIONS(7569), + [anon_sym_bitor] = ACTIONS(7571), + [anon_sym_xor] = ACTIONS(7569), + [anon_sym_bitand] = ACTIONS(7571), + [anon_sym_not_eq] = ACTIONS(7571), + [anon_sym_DASH_DASH] = ACTIONS(7571), + [anon_sym_PLUS_PLUS] = ACTIONS(7571), + [anon_sym_DOT] = ACTIONS(7569), + [anon_sym_DOT_STAR] = ACTIONS(7571), + [anon_sym_DASH_GT] = ACTIONS(7571), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7571), + [anon_sym_override] = ACTIONS(7571), + [anon_sym_GT2] = ACTIONS(7571), + [anon_sym_requires] = ACTIONS(7571), }, - [STATE(3707)] = { - [sym__abstract_declarator] = STATE(6444), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(3720), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(2152), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(3720), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6991), - [anon_sym_COMMA] = ACTIONS(6991), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6993), - [anon_sym_PLUS] = ACTIONS(6993), - [anon_sym_STAR] = ACTIONS(8341), - [anon_sym_SLASH] = ACTIONS(6993), - [anon_sym_PERCENT] = ACTIONS(6991), - [anon_sym_PIPE_PIPE] = ACTIONS(6991), - [anon_sym_AMP_AMP] = ACTIONS(8343), - [anon_sym_PIPE] = ACTIONS(6993), - [anon_sym_CARET] = ACTIONS(6991), - [anon_sym_AMP] = ACTIONS(8345), - [anon_sym_EQ_EQ] = ACTIONS(6991), - [anon_sym_BANG_EQ] = ACTIONS(6991), - [anon_sym_GT] = ACTIONS(6993), - [anon_sym_GT_EQ] = ACTIONS(6991), - [anon_sym_LT_EQ] = ACTIONS(6993), - [anon_sym_LT] = ACTIONS(6993), - [anon_sym_LT_LT] = ACTIONS(6991), - [anon_sym_GT_GT] = ACTIONS(6991), - [anon_sym_SEMI] = ACTIONS(6991), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym___attribute__] = ACTIONS(6991), - [anon_sym___attribute] = ACTIONS(6993), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(6991), - [anon_sym_LT_EQ_GT] = ACTIONS(6991), - [anon_sym_or] = ACTIONS(6991), - [anon_sym_and] = ACTIONS(6991), - [anon_sym_bitor] = ACTIONS(6991), - [anon_sym_xor] = ACTIONS(6991), - [anon_sym_bitand] = ACTIONS(6991), - [anon_sym_not_eq] = ACTIONS(6991), - [anon_sym_DASH_DASH] = ACTIONS(6991), - [anon_sym_PLUS_PLUS] = ACTIONS(6991), - [anon_sym_DOT] = ACTIONS(6993), - [anon_sym_DOT_STAR] = ACTIONS(6991), - [anon_sym_DASH_GT] = ACTIONS(6991), + [STATE(3219)] = { + [sym_argument_list] = STATE(5789), + [sym_initializer_list] = STATE(5780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(8626), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_RBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_and_eq] = ACTIONS(7225), + [anon_sym_or_eq] = ACTIONS(7225), + [anon_sym_xor_eq] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), [sym_comment] = ACTIONS(3), }, - [STATE(3708)] = { - [sym_identifier] = ACTIONS(8382), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8384), - [anon_sym_COMMA] = ACTIONS(8384), - [anon_sym_LPAREN2] = ACTIONS(8384), - [anon_sym_DASH] = ACTIONS(8382), - [anon_sym_PLUS] = ACTIONS(8382), - [anon_sym_STAR] = ACTIONS(8382), - [anon_sym_SLASH] = ACTIONS(8382), - [anon_sym_PERCENT] = ACTIONS(8382), - [anon_sym_PIPE_PIPE] = ACTIONS(8384), - [anon_sym_AMP_AMP] = ACTIONS(8384), - [anon_sym_PIPE] = ACTIONS(8382), - [anon_sym_CARET] = ACTIONS(8382), - [anon_sym_AMP] = ACTIONS(8382), - [anon_sym_EQ_EQ] = ACTIONS(8384), - [anon_sym_BANG_EQ] = ACTIONS(8384), - [anon_sym_GT] = ACTIONS(8382), - [anon_sym_GT_EQ] = ACTIONS(8384), - [anon_sym_LT_EQ] = ACTIONS(8382), - [anon_sym_LT] = ACTIONS(8382), - [anon_sym_LT_LT] = ACTIONS(8382), - [anon_sym_GT_GT] = ACTIONS(8382), - [anon_sym_SEMI] = ACTIONS(8384), - [anon_sym___attribute__] = ACTIONS(8382), - [anon_sym___attribute] = ACTIONS(8382), - [anon_sym_LBRACK] = ACTIONS(8384), - [anon_sym_EQ] = ACTIONS(8382), - [anon_sym_QMARK] = ACTIONS(8384), - [anon_sym_STAR_EQ] = ACTIONS(8384), - [anon_sym_SLASH_EQ] = ACTIONS(8384), - [anon_sym_PERCENT_EQ] = ACTIONS(8384), - [anon_sym_PLUS_EQ] = ACTIONS(8384), - [anon_sym_DASH_EQ] = ACTIONS(8384), - [anon_sym_LT_LT_EQ] = ACTIONS(8384), - [anon_sym_GT_GT_EQ] = ACTIONS(8384), - [anon_sym_AMP_EQ] = ACTIONS(8384), - [anon_sym_CARET_EQ] = ACTIONS(8384), - [anon_sym_PIPE_EQ] = ACTIONS(8384), - [anon_sym_and_eq] = ACTIONS(8382), - [anon_sym_or_eq] = ACTIONS(8382), - [anon_sym_xor_eq] = ACTIONS(8382), - [anon_sym_LT_EQ_GT] = ACTIONS(8384), - [anon_sym_or] = ACTIONS(8382), - [anon_sym_and] = ACTIONS(8382), - [anon_sym_bitor] = ACTIONS(8382), - [anon_sym_xor] = ACTIONS(8382), - [anon_sym_bitand] = ACTIONS(8382), - [anon_sym_not_eq] = ACTIONS(8382), - [anon_sym_DASH_DASH] = ACTIONS(8384), - [anon_sym_PLUS_PLUS] = ACTIONS(8384), - [anon_sym_DOT] = ACTIONS(8382), - [anon_sym_DOT_STAR] = ACTIONS(8384), - [anon_sym_DASH_GT] = ACTIONS(8384), - [anon_sym_L_DQUOTE] = ACTIONS(8384), - [anon_sym_u_DQUOTE] = ACTIONS(8384), - [anon_sym_U_DQUOTE] = ACTIONS(8384), - [anon_sym_u8_DQUOTE] = ACTIONS(8384), - [anon_sym_DQUOTE] = ACTIONS(8384), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8384), - [anon_sym_LR_DQUOTE] = ACTIONS(8384), - [anon_sym_uR_DQUOTE] = ACTIONS(8384), - [anon_sym_UR_DQUOTE] = ACTIONS(8384), - [anon_sym_u8R_DQUOTE] = ACTIONS(8384), - [sym_literal_suffix] = ACTIONS(8382), + [STATE(3220)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7741), + [anon_sym_COMMA] = ACTIONS(7741), + [anon_sym_LPAREN2] = ACTIONS(7741), + [anon_sym_DASH] = ACTIONS(7739), + [anon_sym_PLUS] = ACTIONS(7739), + [anon_sym_STAR] = ACTIONS(7739), + [anon_sym_SLASH] = ACTIONS(7739), + [anon_sym_PERCENT] = ACTIONS(7739), + [anon_sym_PIPE_PIPE] = ACTIONS(7741), + [anon_sym_AMP_AMP] = ACTIONS(7741), + [anon_sym_PIPE] = ACTIONS(7739), + [anon_sym_CARET] = ACTIONS(7739), + [anon_sym_AMP] = ACTIONS(7739), + [anon_sym_EQ_EQ] = ACTIONS(7741), + [anon_sym_BANG_EQ] = ACTIONS(7741), + [anon_sym_GT] = ACTIONS(7739), + [anon_sym_GT_EQ] = ACTIONS(7739), + [anon_sym_LT_EQ] = ACTIONS(7739), + [anon_sym_LT] = ACTIONS(7739), + [anon_sym_LT_LT] = ACTIONS(7739), + [anon_sym_GT_GT] = ACTIONS(7739), + [anon_sym___extension__] = ACTIONS(7741), + [anon_sym_LBRACE] = ACTIONS(7741), + [anon_sym_LBRACK] = ACTIONS(7741), + [anon_sym_EQ] = ACTIONS(7739), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7741), + [anon_sym_volatile] = ACTIONS(7741), + [anon_sym_restrict] = ACTIONS(7741), + [anon_sym___restrict__] = ACTIONS(7741), + [anon_sym__Atomic] = ACTIONS(7741), + [anon_sym__Noreturn] = ACTIONS(7741), + [anon_sym_noreturn] = ACTIONS(7741), + [anon_sym__Nonnull] = ACTIONS(7741), + [anon_sym_mutable] = ACTIONS(7741), + [anon_sym_constinit] = ACTIONS(7741), + [anon_sym_consteval] = ACTIONS(7741), + [anon_sym_alignas] = ACTIONS(7741), + [anon_sym__Alignas] = ACTIONS(7741), + [anon_sym_QMARK] = ACTIONS(7741), + [anon_sym_STAR_EQ] = ACTIONS(7741), + [anon_sym_SLASH_EQ] = ACTIONS(7741), + [anon_sym_PERCENT_EQ] = ACTIONS(7741), + [anon_sym_PLUS_EQ] = ACTIONS(7741), + [anon_sym_DASH_EQ] = ACTIONS(7741), + [anon_sym_LT_LT_EQ] = ACTIONS(7741), + [anon_sym_GT_GT_EQ] = ACTIONS(7739), + [anon_sym_AMP_EQ] = ACTIONS(7741), + [anon_sym_CARET_EQ] = ACTIONS(7741), + [anon_sym_PIPE_EQ] = ACTIONS(7741), + [anon_sym_and_eq] = ACTIONS(7741), + [anon_sym_or_eq] = ACTIONS(7741), + [anon_sym_xor_eq] = ACTIONS(7741), + [anon_sym_LT_EQ_GT] = ACTIONS(7741), + [anon_sym_or] = ACTIONS(7739), + [anon_sym_and] = ACTIONS(7739), + [anon_sym_bitor] = ACTIONS(7741), + [anon_sym_xor] = ACTIONS(7739), + [anon_sym_bitand] = ACTIONS(7741), + [anon_sym_not_eq] = ACTIONS(7741), + [anon_sym_DASH_DASH] = ACTIONS(7741), + [anon_sym_PLUS_PLUS] = ACTIONS(7741), + [anon_sym_DOT] = ACTIONS(7739), + [anon_sym_DOT_STAR] = ACTIONS(7741), + [anon_sym_DASH_GT] = ACTIONS(7741), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7741), + [anon_sym_override] = ACTIONS(7741), + [anon_sym_GT2] = ACTIONS(7741), + [anon_sym_requires] = ACTIONS(7741), }, - [STATE(3709)] = { - [sym_type_qualifier] = STATE(3710), - [sym_alignas_qualifier] = STATE(3482), - [aux_sym__type_definition_type_repeat1] = STATE(3710), - [aux_sym_sized_type_specifier_repeat1] = STATE(3975), - [sym_identifier] = ACTIONS(9314), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6812), - [anon_sym_COMMA] = ACTIONS(6812), - [anon_sym_RPAREN] = ACTIONS(6812), - [anon_sym_LPAREN2] = ACTIONS(6812), - [anon_sym_TILDE] = ACTIONS(6812), - [anon_sym_STAR] = ACTIONS(6812), - [anon_sym_AMP_AMP] = ACTIONS(6812), - [anon_sym_AMP] = ACTIONS(6814), - [anon_sym_SEMI] = ACTIONS(6812), - [anon_sym___extension__] = ACTIONS(9317), - [anon_sym_virtual] = ACTIONS(6814), - [anon_sym_extern] = ACTIONS(6814), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym_COLON_COLON] = ACTIONS(6812), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6812), - [anon_sym___declspec] = ACTIONS(6814), - [anon_sym___based] = ACTIONS(6814), - [anon_sym___cdecl] = ACTIONS(6814), - [anon_sym___clrcall] = ACTIONS(6814), - [anon_sym___stdcall] = ACTIONS(6814), - [anon_sym___fastcall] = ACTIONS(6814), - [anon_sym___thiscall] = ACTIONS(6814), - [anon_sym___vectorcall] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6812), - [anon_sym_signed] = ACTIONS(9320), - [anon_sym_unsigned] = ACTIONS(9320), - [anon_sym_long] = ACTIONS(9320), - [anon_sym_short] = ACTIONS(9320), - [anon_sym_LBRACK] = ACTIONS(6814), - [anon_sym_static] = ACTIONS(6814), - [anon_sym_EQ] = ACTIONS(6812), - [anon_sym_register] = ACTIONS(6814), - [anon_sym_inline] = ACTIONS(6814), - [anon_sym___inline] = ACTIONS(6814), - [anon_sym___inline__] = ACTIONS(6814), - [anon_sym___forceinline] = ACTIONS(6814), - [anon_sym_thread_local] = ACTIONS(6814), - [anon_sym___thread] = ACTIONS(6814), - [anon_sym_const] = ACTIONS(9317), - [anon_sym_constexpr] = ACTIONS(9317), - [anon_sym_volatile] = ACTIONS(9317), - [anon_sym_restrict] = ACTIONS(9317), - [anon_sym___restrict__] = ACTIONS(9317), - [anon_sym__Atomic] = ACTIONS(9317), - [anon_sym__Noreturn] = ACTIONS(9317), - [anon_sym_noreturn] = ACTIONS(9317), - [anon_sym__Nonnull] = ACTIONS(9317), - [anon_sym_mutable] = ACTIONS(9317), - [anon_sym_constinit] = ACTIONS(9317), - [anon_sym_consteval] = ACTIONS(9317), - [anon_sym_alignas] = ACTIONS(9322), - [anon_sym__Alignas] = ACTIONS(9322), - [sym_primitive_type] = ACTIONS(9325), + [STATE(3221)] = { + [sym_identifier] = ACTIONS(7631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7633), + [anon_sym_COMMA] = ACTIONS(7633), + [anon_sym_RPAREN] = ACTIONS(7633), + [anon_sym_LPAREN2] = ACTIONS(7633), + [anon_sym_DASH] = ACTIONS(7631), + [anon_sym_PLUS] = ACTIONS(7631), + [anon_sym_STAR] = ACTIONS(7633), + [anon_sym_SLASH] = ACTIONS(7631), + [anon_sym_PERCENT] = ACTIONS(7633), + [anon_sym_PIPE_PIPE] = ACTIONS(7633), + [anon_sym_AMP_AMP] = ACTIONS(7633), + [anon_sym_PIPE] = ACTIONS(7631), + [anon_sym_CARET] = ACTIONS(7633), + [anon_sym_AMP] = ACTIONS(7631), + [anon_sym_EQ_EQ] = ACTIONS(7633), + [anon_sym_BANG_EQ] = ACTIONS(7633), + [anon_sym_GT] = ACTIONS(7631), + [anon_sym_GT_EQ] = ACTIONS(7633), + [anon_sym_LT_EQ] = ACTIONS(7631), + [anon_sym_LT] = ACTIONS(7631), + [anon_sym_LT_LT] = ACTIONS(7633), + [anon_sym_GT_GT] = ACTIONS(7633), + [anon_sym_SEMI] = ACTIONS(7633), + [anon_sym___extension__] = ACTIONS(7631), + [anon_sym___attribute__] = ACTIONS(7631), + [anon_sym___attribute] = ACTIONS(7631), + [anon_sym_COLON] = ACTIONS(7631), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7633), + [anon_sym___based] = ACTIONS(7631), + [anon_sym_LBRACE] = ACTIONS(7633), + [anon_sym_RBRACE] = ACTIONS(7633), + [anon_sym_signed] = ACTIONS(7631), + [anon_sym_unsigned] = ACTIONS(7631), + [anon_sym_long] = ACTIONS(7631), + [anon_sym_short] = ACTIONS(7631), + [anon_sym_LBRACK] = ACTIONS(7633), + [anon_sym_const] = ACTIONS(7631), + [anon_sym_constexpr] = ACTIONS(7631), + [anon_sym_volatile] = ACTIONS(7631), + [anon_sym_restrict] = ACTIONS(7631), + [anon_sym___restrict__] = ACTIONS(7631), + [anon_sym__Atomic] = ACTIONS(7631), + [anon_sym__Noreturn] = ACTIONS(7631), + [anon_sym_noreturn] = ACTIONS(7631), + [anon_sym__Nonnull] = ACTIONS(7631), + [anon_sym_mutable] = ACTIONS(7631), + [anon_sym_constinit] = ACTIONS(7631), + [anon_sym_consteval] = ACTIONS(7631), + [anon_sym_alignas] = ACTIONS(7631), + [anon_sym__Alignas] = ACTIONS(7631), + [sym_primitive_type] = ACTIONS(7631), + [anon_sym_QMARK] = ACTIONS(7633), + [anon_sym_LT_EQ_GT] = ACTIONS(7633), + [anon_sym_or] = ACTIONS(7631), + [anon_sym_and] = ACTIONS(7631), + [anon_sym_bitor] = ACTIONS(7631), + [anon_sym_xor] = ACTIONS(7631), + [anon_sym_bitand] = ACTIONS(7631), + [anon_sym_not_eq] = ACTIONS(7631), + [anon_sym_DASH_DASH] = ACTIONS(7633), + [anon_sym_PLUS_PLUS] = ACTIONS(7633), + [anon_sym_DOT] = ACTIONS(7631), + [anon_sym_DOT_STAR] = ACTIONS(7633), + [anon_sym_DASH_GT] = ACTIONS(7633), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7631), + [anon_sym_override] = ACTIONS(7631), + [anon_sym_requires] = ACTIONS(7631), + [anon_sym_COLON_RBRACK] = ACTIONS(7633), + }, + [STATE(3222)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7745), + [anon_sym_COMMA] = ACTIONS(7745), + [anon_sym_LPAREN2] = ACTIONS(7745), + [anon_sym_DASH] = ACTIONS(7743), + [anon_sym_PLUS] = ACTIONS(7743), + [anon_sym_STAR] = ACTIONS(7743), + [anon_sym_SLASH] = ACTIONS(7743), + [anon_sym_PERCENT] = ACTIONS(7743), + [anon_sym_PIPE_PIPE] = ACTIONS(7745), + [anon_sym_AMP_AMP] = ACTIONS(7745), + [anon_sym_PIPE] = ACTIONS(7743), + [anon_sym_CARET] = ACTIONS(7743), + [anon_sym_AMP] = ACTIONS(7743), + [anon_sym_EQ_EQ] = ACTIONS(7745), + [anon_sym_BANG_EQ] = ACTIONS(7745), + [anon_sym_GT] = ACTIONS(7743), + [anon_sym_GT_EQ] = ACTIONS(7743), + [anon_sym_LT_EQ] = ACTIONS(7743), + [anon_sym_LT] = ACTIONS(7743), + [anon_sym_LT_LT] = ACTIONS(7743), + [anon_sym_GT_GT] = ACTIONS(7743), + [anon_sym___extension__] = ACTIONS(7745), + [anon_sym_LBRACE] = ACTIONS(7745), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_EQ] = ACTIONS(7743), + [anon_sym_const] = ACTIONS(7743), + [anon_sym_constexpr] = ACTIONS(7745), + [anon_sym_volatile] = ACTIONS(7745), + [anon_sym_restrict] = ACTIONS(7745), + [anon_sym___restrict__] = ACTIONS(7745), + [anon_sym__Atomic] = ACTIONS(7745), + [anon_sym__Noreturn] = ACTIONS(7745), + [anon_sym_noreturn] = ACTIONS(7745), + [anon_sym__Nonnull] = ACTIONS(7745), + [anon_sym_mutable] = ACTIONS(7745), + [anon_sym_constinit] = ACTIONS(7745), + [anon_sym_consteval] = ACTIONS(7745), + [anon_sym_alignas] = ACTIONS(7745), + [anon_sym__Alignas] = ACTIONS(7745), + [anon_sym_QMARK] = ACTIONS(7745), + [anon_sym_STAR_EQ] = ACTIONS(7745), + [anon_sym_SLASH_EQ] = ACTIONS(7745), + [anon_sym_PERCENT_EQ] = ACTIONS(7745), + [anon_sym_PLUS_EQ] = ACTIONS(7745), + [anon_sym_DASH_EQ] = ACTIONS(7745), + [anon_sym_LT_LT_EQ] = ACTIONS(7745), + [anon_sym_GT_GT_EQ] = ACTIONS(7743), + [anon_sym_AMP_EQ] = ACTIONS(7745), + [anon_sym_CARET_EQ] = ACTIONS(7745), + [anon_sym_PIPE_EQ] = ACTIONS(7745), + [anon_sym_and_eq] = ACTIONS(7745), + [anon_sym_or_eq] = ACTIONS(7745), + [anon_sym_xor_eq] = ACTIONS(7745), + [anon_sym_LT_EQ_GT] = ACTIONS(7745), + [anon_sym_or] = ACTIONS(7743), + [anon_sym_and] = ACTIONS(7743), + [anon_sym_bitor] = ACTIONS(7745), + [anon_sym_xor] = ACTIONS(7743), + [anon_sym_bitand] = ACTIONS(7745), + [anon_sym_not_eq] = ACTIONS(7745), + [anon_sym_DASH_DASH] = ACTIONS(7745), + [anon_sym_PLUS_PLUS] = ACTIONS(7745), + [anon_sym_DOT] = ACTIONS(7743), + [anon_sym_DOT_STAR] = ACTIONS(7745), + [anon_sym_DASH_GT] = ACTIONS(7745), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7745), + [anon_sym_override] = ACTIONS(7745), + [anon_sym_GT2] = ACTIONS(7745), + [anon_sym_requires] = ACTIONS(7745), + }, + [STATE(3223)] = { + [sym_identifier] = ACTIONS(7627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7629), + [anon_sym_COMMA] = ACTIONS(7629), + [anon_sym_RPAREN] = ACTIONS(7629), + [anon_sym_LPAREN2] = ACTIONS(7629), + [anon_sym_DASH] = ACTIONS(7627), + [anon_sym_PLUS] = ACTIONS(7627), + [anon_sym_STAR] = ACTIONS(7629), + [anon_sym_SLASH] = ACTIONS(7627), + [anon_sym_PERCENT] = ACTIONS(7629), + [anon_sym_PIPE_PIPE] = ACTIONS(7629), + [anon_sym_AMP_AMP] = ACTIONS(7629), + [anon_sym_PIPE] = ACTIONS(7627), + [anon_sym_CARET] = ACTIONS(7629), + [anon_sym_AMP] = ACTIONS(7627), + [anon_sym_EQ_EQ] = ACTIONS(7629), + [anon_sym_BANG_EQ] = ACTIONS(7629), + [anon_sym_GT] = ACTIONS(7627), + [anon_sym_GT_EQ] = ACTIONS(7629), + [anon_sym_LT_EQ] = ACTIONS(7627), + [anon_sym_LT] = ACTIONS(7627), + [anon_sym_LT_LT] = ACTIONS(7629), + [anon_sym_GT_GT] = ACTIONS(7629), + [anon_sym_SEMI] = ACTIONS(7629), + [anon_sym___extension__] = ACTIONS(7627), + [anon_sym___attribute__] = ACTIONS(7627), + [anon_sym___attribute] = ACTIONS(7627), + [anon_sym_COLON] = ACTIONS(7627), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7629), + [anon_sym___based] = ACTIONS(7627), + [anon_sym_LBRACE] = ACTIONS(7629), + [anon_sym_RBRACE] = ACTIONS(7629), + [anon_sym_signed] = ACTIONS(7627), + [anon_sym_unsigned] = ACTIONS(7627), + [anon_sym_long] = ACTIONS(7627), + [anon_sym_short] = ACTIONS(7627), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_const] = ACTIONS(7627), + [anon_sym_constexpr] = ACTIONS(7627), + [anon_sym_volatile] = ACTIONS(7627), + [anon_sym_restrict] = ACTIONS(7627), + [anon_sym___restrict__] = ACTIONS(7627), + [anon_sym__Atomic] = ACTIONS(7627), + [anon_sym__Noreturn] = ACTIONS(7627), + [anon_sym_noreturn] = ACTIONS(7627), + [anon_sym__Nonnull] = ACTIONS(7627), + [anon_sym_mutable] = ACTIONS(7627), + [anon_sym_constinit] = ACTIONS(7627), + [anon_sym_consteval] = ACTIONS(7627), + [anon_sym_alignas] = ACTIONS(7627), + [anon_sym__Alignas] = ACTIONS(7627), + [sym_primitive_type] = ACTIONS(7627), + [anon_sym_QMARK] = ACTIONS(7629), + [anon_sym_LT_EQ_GT] = ACTIONS(7629), + [anon_sym_or] = ACTIONS(7627), + [anon_sym_and] = ACTIONS(7627), + [anon_sym_bitor] = ACTIONS(7627), + [anon_sym_xor] = ACTIONS(7627), + [anon_sym_bitand] = ACTIONS(7627), + [anon_sym_not_eq] = ACTIONS(7627), + [anon_sym_DASH_DASH] = ACTIONS(7629), + [anon_sym_PLUS_PLUS] = ACTIONS(7629), + [anon_sym_DOT] = ACTIONS(7627), + [anon_sym_DOT_STAR] = ACTIONS(7629), + [anon_sym_DASH_GT] = ACTIONS(7629), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(6814), - [anon_sym_template] = ACTIONS(6814), - [anon_sym_GT2] = ACTIONS(6812), - [anon_sym_operator] = ACTIONS(6814), - [anon_sym_LBRACK_COLON] = ACTIONS(6812), + [anon_sym_final] = ACTIONS(7627), + [anon_sym_override] = ACTIONS(7627), + [anon_sym_requires] = ACTIONS(7627), + [anon_sym_COLON_RBRACK] = ACTIONS(7629), }, - [STATE(3710)] = { - [sym_type_qualifier] = STATE(3090), - [sym_alignas_qualifier] = STATE(3482), - [aux_sym__type_definition_type_repeat1] = STATE(3090), - [aux_sym_sized_type_specifier_repeat1] = STATE(4095), - [sym_identifier] = ACTIONS(9327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), - [anon_sym_COMMA] = ACTIONS(6884), - [anon_sym_RPAREN] = ACTIONS(6884), - [anon_sym_LPAREN2] = ACTIONS(6884), - [anon_sym_TILDE] = ACTIONS(6884), - [anon_sym_STAR] = ACTIONS(6884), - [anon_sym_AMP_AMP] = ACTIONS(6884), - [anon_sym_AMP] = ACTIONS(6886), - [anon_sym_SEMI] = ACTIONS(6884), - [anon_sym___extension__] = ACTIONS(9330), - [anon_sym_virtual] = ACTIONS(6886), - [anon_sym_extern] = ACTIONS(6886), - [anon_sym___attribute__] = ACTIONS(6886), - [anon_sym___attribute] = ACTIONS(6886), - [anon_sym_COLON_COLON] = ACTIONS(6884), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6884), - [anon_sym___declspec] = ACTIONS(6886), - [anon_sym___based] = ACTIONS(6886), - [anon_sym___cdecl] = ACTIONS(6886), - [anon_sym___clrcall] = ACTIONS(6886), - [anon_sym___stdcall] = ACTIONS(6886), - [anon_sym___fastcall] = ACTIONS(6886), - [anon_sym___thiscall] = ACTIONS(6886), - [anon_sym___vectorcall] = ACTIONS(6886), - [anon_sym_LBRACE] = ACTIONS(6884), - [anon_sym_signed] = ACTIONS(9333), - [anon_sym_unsigned] = ACTIONS(9333), - [anon_sym_long] = ACTIONS(9333), - [anon_sym_short] = ACTIONS(9333), - [anon_sym_LBRACK] = ACTIONS(6886), - [anon_sym_static] = ACTIONS(6886), - [anon_sym_EQ] = ACTIONS(6884), - [anon_sym_register] = ACTIONS(6886), - [anon_sym_inline] = ACTIONS(6886), - [anon_sym___inline] = ACTIONS(6886), - [anon_sym___inline__] = ACTIONS(6886), - [anon_sym___forceinline] = ACTIONS(6886), - [anon_sym_thread_local] = ACTIONS(6886), - [anon_sym___thread] = ACTIONS(6886), - [anon_sym_const] = ACTIONS(9330), - [anon_sym_constexpr] = ACTIONS(9330), - [anon_sym_volatile] = ACTIONS(9330), - [anon_sym_restrict] = ACTIONS(9330), - [anon_sym___restrict__] = ACTIONS(9330), - [anon_sym__Atomic] = ACTIONS(9330), - [anon_sym__Noreturn] = ACTIONS(9330), - [anon_sym_noreturn] = ACTIONS(9330), - [anon_sym__Nonnull] = ACTIONS(9330), - [anon_sym_mutable] = ACTIONS(9330), - [anon_sym_constinit] = ACTIONS(9330), - [anon_sym_consteval] = ACTIONS(9330), - [anon_sym_alignas] = ACTIONS(9335), - [anon_sym__Alignas] = ACTIONS(9335), - [sym_primitive_type] = ACTIONS(9338), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(6886), - [anon_sym_template] = ACTIONS(6886), - [anon_sym_GT2] = ACTIONS(6884), - [anon_sym_operator] = ACTIONS(6886), - [anon_sym_LBRACK_COLON] = ACTIONS(6884), + [STATE(3224)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7669), + [anon_sym_COMMA] = ACTIONS(7669), + [anon_sym_LPAREN2] = ACTIONS(7669), + [anon_sym_DASH] = ACTIONS(7667), + [anon_sym_PLUS] = ACTIONS(7667), + [anon_sym_STAR] = ACTIONS(7667), + [anon_sym_SLASH] = ACTIONS(7667), + [anon_sym_PERCENT] = ACTIONS(7667), + [anon_sym_PIPE_PIPE] = ACTIONS(7669), + [anon_sym_AMP_AMP] = ACTIONS(7669), + [anon_sym_PIPE] = ACTIONS(7667), + [anon_sym_CARET] = ACTIONS(7667), + [anon_sym_AMP] = ACTIONS(7667), + [anon_sym_EQ_EQ] = ACTIONS(7669), + [anon_sym_BANG_EQ] = ACTIONS(7669), + [anon_sym_GT] = ACTIONS(7667), + [anon_sym_GT_EQ] = ACTIONS(7669), + [anon_sym_LT_EQ] = ACTIONS(7667), + [anon_sym_LT] = ACTIONS(7667), + [anon_sym_LT_LT] = ACTIONS(7667), + [anon_sym_GT_GT] = ACTIONS(7667), + [anon_sym___extension__] = ACTIONS(7669), + [anon_sym_LBRACE] = ACTIONS(7669), + [anon_sym_LBRACK] = ACTIONS(7669), + [anon_sym_RBRACK] = ACTIONS(7669), + [anon_sym_EQ] = ACTIONS(7667), + [anon_sym_const] = ACTIONS(7667), + [anon_sym_constexpr] = ACTIONS(7669), + [anon_sym_volatile] = ACTIONS(7669), + [anon_sym_restrict] = ACTIONS(7669), + [anon_sym___restrict__] = ACTIONS(7669), + [anon_sym__Atomic] = ACTIONS(7669), + [anon_sym__Noreturn] = ACTIONS(7669), + [anon_sym_noreturn] = ACTIONS(7669), + [anon_sym__Nonnull] = ACTIONS(7669), + [anon_sym_mutable] = ACTIONS(7669), + [anon_sym_constinit] = ACTIONS(7669), + [anon_sym_consteval] = ACTIONS(7669), + [anon_sym_alignas] = ACTIONS(7669), + [anon_sym__Alignas] = ACTIONS(7669), + [anon_sym_QMARK] = ACTIONS(7669), + [anon_sym_STAR_EQ] = ACTIONS(7669), + [anon_sym_SLASH_EQ] = ACTIONS(7669), + [anon_sym_PERCENT_EQ] = ACTIONS(7669), + [anon_sym_PLUS_EQ] = ACTIONS(7669), + [anon_sym_DASH_EQ] = ACTIONS(7669), + [anon_sym_LT_LT_EQ] = ACTIONS(7669), + [anon_sym_GT_GT_EQ] = ACTIONS(7669), + [anon_sym_AMP_EQ] = ACTIONS(7669), + [anon_sym_CARET_EQ] = ACTIONS(7669), + [anon_sym_PIPE_EQ] = ACTIONS(7669), + [anon_sym_and_eq] = ACTIONS(7669), + [anon_sym_or_eq] = ACTIONS(7669), + [anon_sym_xor_eq] = ACTIONS(7669), + [anon_sym_LT_EQ_GT] = ACTIONS(7669), + [anon_sym_or] = ACTIONS(7667), + [anon_sym_and] = ACTIONS(7667), + [anon_sym_bitor] = ACTIONS(7669), + [anon_sym_xor] = ACTIONS(7667), + [anon_sym_bitand] = ACTIONS(7669), + [anon_sym_not_eq] = ACTIONS(7669), + [anon_sym_DASH_DASH] = ACTIONS(7669), + [anon_sym_PLUS_PLUS] = ACTIONS(7669), + [anon_sym_DOT] = ACTIONS(7667), + [anon_sym_DOT_STAR] = ACTIONS(7669), + [anon_sym_DASH_GT] = ACTIONS(7669), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7669), + [anon_sym_override] = ACTIONS(7669), + [anon_sym_requires] = ACTIONS(7669), }, - [STATE(3711)] = { - [sym_identifier] = ACTIONS(9340), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9342), - [anon_sym_COMMA] = ACTIONS(9342), - [aux_sym_preproc_if_token2] = ACTIONS(9342), - [aux_sym_preproc_else_token1] = ACTIONS(9342), - [aux_sym_preproc_elif_token1] = ACTIONS(9344), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9342), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9342), - [anon_sym_LPAREN2] = ACTIONS(9342), - [anon_sym_TILDE] = ACTIONS(9346), - [anon_sym_DASH] = ACTIONS(9344), - [anon_sym_PLUS] = ACTIONS(9344), - [anon_sym_STAR] = ACTIONS(9340), - [anon_sym_SLASH] = ACTIONS(9344), - [anon_sym_PERCENT] = ACTIONS(9344), - [anon_sym_PIPE_PIPE] = ACTIONS(9342), - [anon_sym_AMP_AMP] = ACTIONS(9342), - [anon_sym_PIPE] = ACTIONS(9344), - [anon_sym_CARET] = ACTIONS(9344), - [anon_sym_AMP] = ACTIONS(9344), - [anon_sym_EQ_EQ] = ACTIONS(9342), - [anon_sym_BANG_EQ] = ACTIONS(9342), - [anon_sym_GT] = ACTIONS(9344), - [anon_sym_GT_EQ] = ACTIONS(9342), - [anon_sym_LT_EQ] = ACTIONS(9344), - [anon_sym_LT] = ACTIONS(9344), - [anon_sym_LT_LT] = ACTIONS(9344), - [anon_sym_GT_GT] = ACTIONS(9344), - [anon_sym_COLON_COLON] = ACTIONS(9346), - [anon_sym___based] = ACTIONS(9340), - [anon_sym_LBRACK] = ACTIONS(9344), - [anon_sym_EQ] = ACTIONS(9344), - [anon_sym_QMARK] = ACTIONS(9342), - [anon_sym_STAR_EQ] = ACTIONS(9342), - [anon_sym_SLASH_EQ] = ACTIONS(9342), - [anon_sym_PERCENT_EQ] = ACTIONS(9342), - [anon_sym_PLUS_EQ] = ACTIONS(9342), - [anon_sym_DASH_EQ] = ACTIONS(9342), - [anon_sym_LT_LT_EQ] = ACTIONS(9342), - [anon_sym_GT_GT_EQ] = ACTIONS(9342), - [anon_sym_AMP_EQ] = ACTIONS(9342), - [anon_sym_CARET_EQ] = ACTIONS(9342), - [anon_sym_PIPE_EQ] = ACTIONS(9342), - [anon_sym_and_eq] = ACTIONS(9344), - [anon_sym_or_eq] = ACTIONS(9344), - [anon_sym_xor_eq] = ACTIONS(9344), - [anon_sym_LT_EQ_GT] = ACTIONS(9342), - [anon_sym_or] = ACTIONS(9344), - [anon_sym_and] = ACTIONS(9344), - [anon_sym_bitor] = ACTIONS(9344), - [anon_sym_xor] = ACTIONS(9344), - [anon_sym_bitand] = ACTIONS(9344), - [anon_sym_not_eq] = ACTIONS(9344), - [anon_sym_DASH_DASH] = ACTIONS(9342), - [anon_sym_PLUS_PLUS] = ACTIONS(9342), - [anon_sym_DOT] = ACTIONS(9344), - [anon_sym_DOT_STAR] = ACTIONS(9342), - [anon_sym_DASH_GT] = ACTIONS(9342), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(9340), - [anon_sym_template] = ACTIONS(9340), - [anon_sym_operator] = ACTIONS(9340), - [anon_sym_delete] = ACTIONS(9348), - [anon_sym_new] = ACTIONS(9350), - [anon_sym_LBRACK_COLON] = ACTIONS(9346), + [STATE(3225)] = { + [sym_identifier] = ACTIONS(7671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7673), + [anon_sym_COMMA] = ACTIONS(7673), + [anon_sym_RPAREN] = ACTIONS(7673), + [anon_sym_LPAREN2] = ACTIONS(7673), + [anon_sym_DASH] = ACTIONS(7671), + [anon_sym_PLUS] = ACTIONS(7671), + [anon_sym_STAR] = ACTIONS(7673), + [anon_sym_SLASH] = ACTIONS(7671), + [anon_sym_PERCENT] = ACTIONS(7673), + [anon_sym_PIPE_PIPE] = ACTIONS(7673), + [anon_sym_AMP_AMP] = ACTIONS(7673), + [anon_sym_PIPE] = ACTIONS(7671), + [anon_sym_CARET] = ACTIONS(7673), + [anon_sym_AMP] = ACTIONS(7671), + [anon_sym_EQ_EQ] = ACTIONS(7673), + [anon_sym_BANG_EQ] = ACTIONS(7673), + [anon_sym_GT] = ACTIONS(7671), + [anon_sym_GT_EQ] = ACTIONS(7673), + [anon_sym_LT_EQ] = ACTIONS(7671), + [anon_sym_LT] = ACTIONS(7671), + [anon_sym_LT_LT] = ACTIONS(7673), + [anon_sym_GT_GT] = ACTIONS(7673), + [anon_sym_SEMI] = ACTIONS(7673), + [anon_sym___extension__] = ACTIONS(7671), + [anon_sym___attribute__] = ACTIONS(7671), + [anon_sym___attribute] = ACTIONS(7671), + [anon_sym_COLON] = ACTIONS(7671), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7673), + [anon_sym___based] = ACTIONS(7671), + [anon_sym_LBRACE] = ACTIONS(7673), + [anon_sym_RBRACE] = ACTIONS(7673), + [anon_sym_signed] = ACTIONS(7671), + [anon_sym_unsigned] = ACTIONS(7671), + [anon_sym_long] = ACTIONS(7671), + [anon_sym_short] = ACTIONS(7671), + [anon_sym_LBRACK] = ACTIONS(7673), + [anon_sym_const] = ACTIONS(7671), + [anon_sym_constexpr] = ACTIONS(7671), + [anon_sym_volatile] = ACTIONS(7671), + [anon_sym_restrict] = ACTIONS(7671), + [anon_sym___restrict__] = ACTIONS(7671), + [anon_sym__Atomic] = ACTIONS(7671), + [anon_sym__Noreturn] = ACTIONS(7671), + [anon_sym_noreturn] = ACTIONS(7671), + [anon_sym__Nonnull] = ACTIONS(7671), + [anon_sym_mutable] = ACTIONS(7671), + [anon_sym_constinit] = ACTIONS(7671), + [anon_sym_consteval] = ACTIONS(7671), + [anon_sym_alignas] = ACTIONS(7671), + [anon_sym__Alignas] = ACTIONS(7671), + [sym_primitive_type] = ACTIONS(7671), + [anon_sym_QMARK] = ACTIONS(7673), + [anon_sym_LT_EQ_GT] = ACTIONS(7673), + [anon_sym_or] = ACTIONS(7671), + [anon_sym_and] = ACTIONS(7671), + [anon_sym_bitor] = ACTIONS(7671), + [anon_sym_xor] = ACTIONS(7671), + [anon_sym_bitand] = ACTIONS(7671), + [anon_sym_not_eq] = ACTIONS(7671), + [anon_sym_DASH_DASH] = ACTIONS(7673), + [anon_sym_PLUS_PLUS] = ACTIONS(7673), + [anon_sym_DOT] = ACTIONS(7671), + [anon_sym_DOT_STAR] = ACTIONS(7673), + [anon_sym_DASH_GT] = ACTIONS(7673), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7671), + [anon_sym_override] = ACTIONS(7671), + [anon_sym_requires] = ACTIONS(7671), + [anon_sym_COLON_RBRACK] = ACTIONS(7673), }, - [STATE(3712)] = { - [sym_identifier] = ACTIONS(7185), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7183), - [anon_sym_COMMA] = ACTIONS(7183), - [anon_sym_RPAREN] = ACTIONS(7183), - [anon_sym_LPAREN2] = ACTIONS(7183), - [anon_sym_TILDE] = ACTIONS(7183), - [anon_sym_STAR] = ACTIONS(7183), - [anon_sym_PIPE_PIPE] = ACTIONS(7183), - [anon_sym_AMP_AMP] = ACTIONS(7183), - [anon_sym_AMP] = ACTIONS(7185), - [anon_sym_SEMI] = ACTIONS(7183), - [anon_sym___extension__] = ACTIONS(7185), - [anon_sym_virtual] = ACTIONS(7185), - [anon_sym_extern] = ACTIONS(7185), - [anon_sym___attribute__] = ACTIONS(7185), - [anon_sym___attribute] = ACTIONS(7185), - [anon_sym_COLON] = ACTIONS(7185), - [anon_sym_COLON_COLON] = ACTIONS(6802), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7183), - [anon_sym___declspec] = ACTIONS(7185), - [anon_sym___based] = ACTIONS(7185), - [anon_sym___cdecl] = ACTIONS(7185), - [anon_sym___clrcall] = ACTIONS(7185), - [anon_sym___stdcall] = ACTIONS(7185), - [anon_sym___fastcall] = ACTIONS(7185), - [anon_sym___thiscall] = ACTIONS(7185), - [anon_sym___vectorcall] = ACTIONS(7185), - [anon_sym_LBRACE] = ACTIONS(7183), - [anon_sym_LBRACK] = ACTIONS(7185), - [anon_sym_static] = ACTIONS(7185), - [anon_sym_EQ] = ACTIONS(7183), - [anon_sym_register] = ACTIONS(7185), - [anon_sym_inline] = ACTIONS(7185), - [anon_sym___inline] = ACTIONS(7185), - [anon_sym___inline__] = ACTIONS(7185), - [anon_sym___forceinline] = ACTIONS(7185), - [anon_sym_thread_local] = ACTIONS(7185), - [anon_sym___thread] = ACTIONS(7185), - [anon_sym_const] = ACTIONS(7185), - [anon_sym_constexpr] = ACTIONS(7185), - [anon_sym_volatile] = ACTIONS(7185), - [anon_sym_restrict] = ACTIONS(7185), - [anon_sym___restrict__] = ACTIONS(7185), - [anon_sym__Atomic] = ACTIONS(7185), - [anon_sym__Noreturn] = ACTIONS(7185), - [anon_sym_noreturn] = ACTIONS(7185), - [anon_sym__Nonnull] = ACTIONS(7185), - [anon_sym_mutable] = ACTIONS(7185), - [anon_sym_constinit] = ACTIONS(7185), - [anon_sym_consteval] = ACTIONS(7185), - [anon_sym_alignas] = ACTIONS(7185), - [anon_sym__Alignas] = ACTIONS(7185), - [anon_sym_or] = ACTIONS(7185), - [anon_sym_and] = ACTIONS(7185), - [anon_sym_DASH_GT] = ACTIONS(7183), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(7185), - [anon_sym_final] = ACTIONS(7185), - [anon_sym_override] = ACTIONS(7185), - [anon_sym_template] = ACTIONS(7185), - [anon_sym_GT2] = ACTIONS(7183), - [anon_sym_operator] = ACTIONS(7185), - [anon_sym_noexcept] = ACTIONS(7185), - [anon_sym_throw] = ACTIONS(7185), - [anon_sym_LBRACK_COLON] = ACTIONS(7183), + [STATE(3226)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7753), + [anon_sym_COMMA] = ACTIONS(7753), + [anon_sym_LPAREN2] = ACTIONS(7753), + [anon_sym_DASH] = ACTIONS(7751), + [anon_sym_PLUS] = ACTIONS(7751), + [anon_sym_STAR] = ACTIONS(7751), + [anon_sym_SLASH] = ACTIONS(7751), + [anon_sym_PERCENT] = ACTIONS(7751), + [anon_sym_PIPE_PIPE] = ACTIONS(7753), + [anon_sym_AMP_AMP] = ACTIONS(7753), + [anon_sym_PIPE] = ACTIONS(7751), + [anon_sym_CARET] = ACTIONS(7751), + [anon_sym_AMP] = ACTIONS(7751), + [anon_sym_EQ_EQ] = ACTIONS(7753), + [anon_sym_BANG_EQ] = ACTIONS(7753), + [anon_sym_GT] = ACTIONS(7751), + [anon_sym_GT_EQ] = ACTIONS(7751), + [anon_sym_LT_EQ] = ACTIONS(7751), + [anon_sym_LT] = ACTIONS(7751), + [anon_sym_LT_LT] = ACTIONS(7751), + [anon_sym_GT_GT] = ACTIONS(7751), + [anon_sym___extension__] = ACTIONS(7753), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_LBRACK] = ACTIONS(7753), + [anon_sym_EQ] = ACTIONS(7751), + [anon_sym_const] = ACTIONS(7751), + [anon_sym_constexpr] = ACTIONS(7753), + [anon_sym_volatile] = ACTIONS(7753), + [anon_sym_restrict] = ACTIONS(7753), + [anon_sym___restrict__] = ACTIONS(7753), + [anon_sym__Atomic] = ACTIONS(7753), + [anon_sym__Noreturn] = ACTIONS(7753), + [anon_sym_noreturn] = ACTIONS(7753), + [anon_sym__Nonnull] = ACTIONS(7753), + [anon_sym_mutable] = ACTIONS(7753), + [anon_sym_constinit] = ACTIONS(7753), + [anon_sym_consteval] = ACTIONS(7753), + [anon_sym_alignas] = ACTIONS(7753), + [anon_sym__Alignas] = ACTIONS(7753), + [anon_sym_QMARK] = ACTIONS(7753), + [anon_sym_STAR_EQ] = ACTIONS(7753), + [anon_sym_SLASH_EQ] = ACTIONS(7753), + [anon_sym_PERCENT_EQ] = ACTIONS(7753), + [anon_sym_PLUS_EQ] = ACTIONS(7753), + [anon_sym_DASH_EQ] = ACTIONS(7753), + [anon_sym_LT_LT_EQ] = ACTIONS(7753), + [anon_sym_GT_GT_EQ] = ACTIONS(7751), + [anon_sym_AMP_EQ] = ACTIONS(7753), + [anon_sym_CARET_EQ] = ACTIONS(7753), + [anon_sym_PIPE_EQ] = ACTIONS(7753), + [anon_sym_and_eq] = ACTIONS(7753), + [anon_sym_or_eq] = ACTIONS(7753), + [anon_sym_xor_eq] = ACTIONS(7753), + [anon_sym_LT_EQ_GT] = ACTIONS(7753), + [anon_sym_or] = ACTIONS(7751), + [anon_sym_and] = ACTIONS(7751), + [anon_sym_bitor] = ACTIONS(7753), + [anon_sym_xor] = ACTIONS(7751), + [anon_sym_bitand] = ACTIONS(7753), + [anon_sym_not_eq] = ACTIONS(7753), + [anon_sym_DASH_DASH] = ACTIONS(7753), + [anon_sym_PLUS_PLUS] = ACTIONS(7753), + [anon_sym_DOT] = ACTIONS(7751), + [anon_sym_DOT_STAR] = ACTIONS(7753), + [anon_sym_DASH_GT] = ACTIONS(7753), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7753), + [anon_sym_override] = ACTIONS(7753), + [anon_sym_GT2] = ACTIONS(7753), + [anon_sym_requires] = ACTIONS(7753), }, - [STATE(3713)] = { - [sym_attribute_specifier] = STATE(3949), - [sym_enumerator_list] = STATE(3725), - [sym_identifier] = ACTIONS(7011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7013), - [anon_sym_COMMA] = ACTIONS(7013), - [aux_sym_preproc_if_token2] = ACTIONS(7013), - [aux_sym_preproc_else_token1] = ACTIONS(7013), - [aux_sym_preproc_elif_token1] = ACTIONS(7011), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7013), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7013), - [anon_sym_LPAREN2] = ACTIONS(7013), - [anon_sym_DASH] = ACTIONS(7011), - [anon_sym_PLUS] = ACTIONS(7011), - [anon_sym_STAR] = ACTIONS(7013), - [anon_sym_SLASH] = ACTIONS(7011), - [anon_sym_PERCENT] = ACTIONS(7013), - [anon_sym_PIPE_PIPE] = ACTIONS(7013), - [anon_sym_AMP_AMP] = ACTIONS(7013), - [anon_sym_PIPE] = ACTIONS(7011), - [anon_sym_CARET] = ACTIONS(7013), - [anon_sym_AMP] = ACTIONS(7011), - [anon_sym_EQ_EQ] = ACTIONS(7013), - [anon_sym_BANG_EQ] = ACTIONS(7013), - [anon_sym_GT] = ACTIONS(7011), - [anon_sym_GT_EQ] = ACTIONS(7013), - [anon_sym_LT_EQ] = ACTIONS(7011), - [anon_sym_LT] = ACTIONS(7011), - [anon_sym_LT_LT] = ACTIONS(7013), - [anon_sym_GT_GT] = ACTIONS(7013), - [anon_sym___extension__] = ACTIONS(7011), - [anon_sym___attribute__] = ACTIONS(8907), - [anon_sym___attribute] = ACTIONS(8907), - [anon_sym_LBRACE] = ACTIONS(9021), - [anon_sym_LBRACK] = ACTIONS(7013), - [anon_sym_const] = ACTIONS(7011), - [anon_sym_constexpr] = ACTIONS(7011), - [anon_sym_volatile] = ACTIONS(7011), - [anon_sym_restrict] = ACTIONS(7011), - [anon_sym___restrict__] = ACTIONS(7011), - [anon_sym__Atomic] = ACTIONS(7011), - [anon_sym__Noreturn] = ACTIONS(7011), - [anon_sym_noreturn] = ACTIONS(7011), - [anon_sym__Nonnull] = ACTIONS(7011), - [anon_sym_mutable] = ACTIONS(7011), - [anon_sym_constinit] = ACTIONS(7011), - [anon_sym_consteval] = ACTIONS(7011), - [anon_sym_alignas] = ACTIONS(7011), - [anon_sym__Alignas] = ACTIONS(7011), - [anon_sym_QMARK] = ACTIONS(7013), - [anon_sym_LT_EQ_GT] = ACTIONS(7013), - [anon_sym_or] = ACTIONS(7011), - [anon_sym_and] = ACTIONS(7011), - [anon_sym_bitor] = ACTIONS(7011), - [anon_sym_xor] = ACTIONS(7011), - [anon_sym_bitand] = ACTIONS(7011), - [anon_sym_not_eq] = ACTIONS(7011), - [anon_sym_DASH_DASH] = ACTIONS(7013), - [anon_sym_PLUS_PLUS] = ACTIONS(7013), - [anon_sym_DOT] = ACTIONS(7011), - [anon_sym_DOT_STAR] = ACTIONS(7013), - [anon_sym_DASH_GT] = ACTIONS(7013), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7011), - [anon_sym_override] = ACTIONS(7011), - [anon_sym_requires] = ACTIONS(7011), + [STATE(3227)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7745), + [anon_sym_COMMA] = ACTIONS(7745), + [anon_sym_LPAREN2] = ACTIONS(7745), + [anon_sym_DASH] = ACTIONS(7743), + [anon_sym_PLUS] = ACTIONS(7743), + [anon_sym_STAR] = ACTIONS(7743), + [anon_sym_SLASH] = ACTIONS(7743), + [anon_sym_PERCENT] = ACTIONS(7743), + [anon_sym_PIPE_PIPE] = ACTIONS(7745), + [anon_sym_AMP_AMP] = ACTIONS(7745), + [anon_sym_PIPE] = ACTIONS(7743), + [anon_sym_CARET] = ACTIONS(7743), + [anon_sym_AMP] = ACTIONS(7743), + [anon_sym_EQ_EQ] = ACTIONS(7745), + [anon_sym_BANG_EQ] = ACTIONS(7745), + [anon_sym_GT] = ACTIONS(7743), + [anon_sym_GT_EQ] = ACTIONS(7745), + [anon_sym_LT_EQ] = ACTIONS(7743), + [anon_sym_LT] = ACTIONS(7743), + [anon_sym_LT_LT] = ACTIONS(7743), + [anon_sym_GT_GT] = ACTIONS(7743), + [anon_sym___extension__] = ACTIONS(7745), + [anon_sym_LBRACE] = ACTIONS(7745), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_RBRACK] = ACTIONS(7745), + [anon_sym_EQ] = ACTIONS(7743), + [anon_sym_const] = ACTIONS(7743), + [anon_sym_constexpr] = ACTIONS(7745), + [anon_sym_volatile] = ACTIONS(7745), + [anon_sym_restrict] = ACTIONS(7745), + [anon_sym___restrict__] = ACTIONS(7745), + [anon_sym__Atomic] = ACTIONS(7745), + [anon_sym__Noreturn] = ACTIONS(7745), + [anon_sym_noreturn] = ACTIONS(7745), + [anon_sym__Nonnull] = ACTIONS(7745), + [anon_sym_mutable] = ACTIONS(7745), + [anon_sym_constinit] = ACTIONS(7745), + [anon_sym_consteval] = ACTIONS(7745), + [anon_sym_alignas] = ACTIONS(7745), + [anon_sym__Alignas] = ACTIONS(7745), + [anon_sym_QMARK] = ACTIONS(7745), + [anon_sym_STAR_EQ] = ACTIONS(7745), + [anon_sym_SLASH_EQ] = ACTIONS(7745), + [anon_sym_PERCENT_EQ] = ACTIONS(7745), + [anon_sym_PLUS_EQ] = ACTIONS(7745), + [anon_sym_DASH_EQ] = ACTIONS(7745), + [anon_sym_LT_LT_EQ] = ACTIONS(7745), + [anon_sym_GT_GT_EQ] = ACTIONS(7745), + [anon_sym_AMP_EQ] = ACTIONS(7745), + [anon_sym_CARET_EQ] = ACTIONS(7745), + [anon_sym_PIPE_EQ] = ACTIONS(7745), + [anon_sym_and_eq] = ACTIONS(7745), + [anon_sym_or_eq] = ACTIONS(7745), + [anon_sym_xor_eq] = ACTIONS(7745), + [anon_sym_LT_EQ_GT] = ACTIONS(7745), + [anon_sym_or] = ACTIONS(7743), + [anon_sym_and] = ACTIONS(7743), + [anon_sym_bitor] = ACTIONS(7745), + [anon_sym_xor] = ACTIONS(7743), + [anon_sym_bitand] = ACTIONS(7745), + [anon_sym_not_eq] = ACTIONS(7745), + [anon_sym_DASH_DASH] = ACTIONS(7745), + [anon_sym_PLUS_PLUS] = ACTIONS(7745), + [anon_sym_DOT] = ACTIONS(7743), + [anon_sym_DOT_STAR] = ACTIONS(7745), + [anon_sym_DASH_GT] = ACTIONS(7745), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7745), + [anon_sym_override] = ACTIONS(7745), + [anon_sym_requires] = ACTIONS(7745), }, - [STATE(3714)] = { - [sym_type_qualifier] = STATE(3559), - [sym_alignas_qualifier] = STATE(3736), - [aux_sym__type_definition_type_repeat1] = STATE(3559), - [aux_sym_sized_type_specifier_repeat1] = STATE(3322), - [sym_identifier] = ACTIONS(8891), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6884), - [anon_sym_COMMA] = ACTIONS(6884), - [anon_sym_LPAREN2] = ACTIONS(6884), - [anon_sym_DASH] = ACTIONS(6886), - [anon_sym_PLUS] = ACTIONS(6886), - [anon_sym_STAR] = ACTIONS(6884), - [anon_sym_SLASH] = ACTIONS(6886), - [anon_sym_PERCENT] = ACTIONS(6884), - [anon_sym_PIPE_PIPE] = ACTIONS(6884), - [anon_sym_AMP_AMP] = ACTIONS(6884), - [anon_sym_PIPE] = ACTIONS(6886), - [anon_sym_CARET] = ACTIONS(6884), - [anon_sym_AMP] = ACTIONS(6886), - [anon_sym_EQ_EQ] = ACTIONS(6884), - [anon_sym_BANG_EQ] = ACTIONS(6884), - [anon_sym_GT] = ACTIONS(6886), - [anon_sym_GT_EQ] = ACTIONS(6884), - [anon_sym_LT_EQ] = ACTIONS(6886), - [anon_sym_LT] = ACTIONS(6886), - [anon_sym_LT_LT] = ACTIONS(6884), - [anon_sym_GT_GT] = ACTIONS(6884), - [anon_sym___extension__] = ACTIONS(9298), - [anon_sym___attribute__] = ACTIONS(6886), - [anon_sym___attribute] = ACTIONS(6886), - [anon_sym_LBRACE] = ACTIONS(6884), - [anon_sym_signed] = ACTIONS(8486), - [anon_sym_unsigned] = ACTIONS(8486), - [anon_sym_long] = ACTIONS(8486), - [anon_sym_short] = ACTIONS(8486), - [anon_sym_LBRACK] = ACTIONS(6884), - [anon_sym_RBRACK] = ACTIONS(6884), - [anon_sym_const] = ACTIONS(9298), - [anon_sym_constexpr] = ACTIONS(9298), - [anon_sym_volatile] = ACTIONS(9298), - [anon_sym_restrict] = ACTIONS(9298), - [anon_sym___restrict__] = ACTIONS(9298), - [anon_sym__Atomic] = ACTIONS(9298), - [anon_sym__Noreturn] = ACTIONS(9298), - [anon_sym_noreturn] = ACTIONS(9298), - [anon_sym__Nonnull] = ACTIONS(9298), - [anon_sym_mutable] = ACTIONS(9298), - [anon_sym_constinit] = ACTIONS(9298), - [anon_sym_consteval] = ACTIONS(9298), - [anon_sym_alignas] = ACTIONS(9302), - [anon_sym__Alignas] = ACTIONS(9302), - [sym_primitive_type] = ACTIONS(8488), - [anon_sym_QMARK] = ACTIONS(6884), - [anon_sym_LT_EQ_GT] = ACTIONS(6884), - [anon_sym_or] = ACTIONS(6886), - [anon_sym_and] = ACTIONS(6886), - [anon_sym_bitor] = ACTIONS(6886), - [anon_sym_xor] = ACTIONS(6886), - [anon_sym_bitand] = ACTIONS(6886), - [anon_sym_not_eq] = ACTIONS(6886), - [anon_sym_DASH_DASH] = ACTIONS(6884), - [anon_sym_PLUS_PLUS] = ACTIONS(6884), - [anon_sym_DOT] = ACTIONS(6886), - [anon_sym_DOT_STAR] = ACTIONS(6884), - [anon_sym_DASH_GT] = ACTIONS(6884), + [STATE(3228)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7673), + [anon_sym_COMMA] = ACTIONS(7673), + [anon_sym_LPAREN2] = ACTIONS(7673), + [anon_sym_DASH] = ACTIONS(7671), + [anon_sym_PLUS] = ACTIONS(7671), + [anon_sym_STAR] = ACTIONS(7671), + [anon_sym_SLASH] = ACTIONS(7671), + [anon_sym_PERCENT] = ACTIONS(7671), + [anon_sym_PIPE_PIPE] = ACTIONS(7673), + [anon_sym_AMP_AMP] = ACTIONS(7673), + [anon_sym_PIPE] = ACTIONS(7671), + [anon_sym_CARET] = ACTIONS(7671), + [anon_sym_AMP] = ACTIONS(7671), + [anon_sym_EQ_EQ] = ACTIONS(7673), + [anon_sym_BANG_EQ] = ACTIONS(7673), + [anon_sym_GT] = ACTIONS(7671), + [anon_sym_GT_EQ] = ACTIONS(7673), + [anon_sym_LT_EQ] = ACTIONS(7671), + [anon_sym_LT] = ACTIONS(7671), + [anon_sym_LT_LT] = ACTIONS(7671), + [anon_sym_GT_GT] = ACTIONS(7671), + [anon_sym___extension__] = ACTIONS(7673), + [anon_sym_LBRACE] = ACTIONS(7673), + [anon_sym_LBRACK] = ACTIONS(7673), + [anon_sym_RBRACK] = ACTIONS(7673), + [anon_sym_EQ] = ACTIONS(7671), + [anon_sym_const] = ACTIONS(7671), + [anon_sym_constexpr] = ACTIONS(7673), + [anon_sym_volatile] = ACTIONS(7673), + [anon_sym_restrict] = ACTIONS(7673), + [anon_sym___restrict__] = ACTIONS(7673), + [anon_sym__Atomic] = ACTIONS(7673), + [anon_sym__Noreturn] = ACTIONS(7673), + [anon_sym_noreturn] = ACTIONS(7673), + [anon_sym__Nonnull] = ACTIONS(7673), + [anon_sym_mutable] = ACTIONS(7673), + [anon_sym_constinit] = ACTIONS(7673), + [anon_sym_consteval] = ACTIONS(7673), + [anon_sym_alignas] = ACTIONS(7673), + [anon_sym__Alignas] = ACTIONS(7673), + [anon_sym_QMARK] = ACTIONS(7673), + [anon_sym_STAR_EQ] = ACTIONS(7673), + [anon_sym_SLASH_EQ] = ACTIONS(7673), + [anon_sym_PERCENT_EQ] = ACTIONS(7673), + [anon_sym_PLUS_EQ] = ACTIONS(7673), + [anon_sym_DASH_EQ] = ACTIONS(7673), + [anon_sym_LT_LT_EQ] = ACTIONS(7673), + [anon_sym_GT_GT_EQ] = ACTIONS(7673), + [anon_sym_AMP_EQ] = ACTIONS(7673), + [anon_sym_CARET_EQ] = ACTIONS(7673), + [anon_sym_PIPE_EQ] = ACTIONS(7673), + [anon_sym_and_eq] = ACTIONS(7673), + [anon_sym_or_eq] = ACTIONS(7673), + [anon_sym_xor_eq] = ACTIONS(7673), + [anon_sym_LT_EQ_GT] = ACTIONS(7673), + [anon_sym_or] = ACTIONS(7671), + [anon_sym_and] = ACTIONS(7671), + [anon_sym_bitor] = ACTIONS(7673), + [anon_sym_xor] = ACTIONS(7671), + [anon_sym_bitand] = ACTIONS(7673), + [anon_sym_not_eq] = ACTIONS(7673), + [anon_sym_DASH_DASH] = ACTIONS(7673), + [anon_sym_PLUS_PLUS] = ACTIONS(7673), + [anon_sym_DOT] = ACTIONS(7671), + [anon_sym_DOT_STAR] = ACTIONS(7673), + [anon_sym_DASH_GT] = ACTIONS(7673), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7673), + [anon_sym_override] = ACTIONS(7673), + [anon_sym_requires] = ACTIONS(7673), + }, + [STATE(3229)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), + [anon_sym_COMMA] = ACTIONS(7563), + [anon_sym_LPAREN2] = ACTIONS(7563), + [anon_sym_DASH] = ACTIONS(7561), + [anon_sym_PLUS] = ACTIONS(7561), + [anon_sym_STAR] = ACTIONS(7561), + [anon_sym_SLASH] = ACTIONS(7561), + [anon_sym_PERCENT] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_AMP_AMP] = ACTIONS(7563), + [anon_sym_PIPE] = ACTIONS(7561), + [anon_sym_CARET] = ACTIONS(7561), + [anon_sym_AMP] = ACTIONS(7561), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_GT] = ACTIONS(7561), + [anon_sym_GT_EQ] = ACTIONS(7563), + [anon_sym_LT_EQ] = ACTIONS(7561), + [anon_sym_LT] = ACTIONS(7561), + [anon_sym_LT_LT] = ACTIONS(7561), + [anon_sym_GT_GT] = ACTIONS(7561), + [anon_sym___extension__] = ACTIONS(7563), + [anon_sym_LBRACE] = ACTIONS(7563), + [anon_sym_LBRACK] = ACTIONS(7563), + [anon_sym_RBRACK] = ACTIONS(7563), + [anon_sym_EQ] = ACTIONS(7561), + [anon_sym_const] = ACTIONS(7561), + [anon_sym_constexpr] = ACTIONS(7563), + [anon_sym_volatile] = ACTIONS(7563), + [anon_sym_restrict] = ACTIONS(7563), + [anon_sym___restrict__] = ACTIONS(7563), + [anon_sym__Atomic] = ACTIONS(7563), + [anon_sym__Noreturn] = ACTIONS(7563), + [anon_sym_noreturn] = ACTIONS(7563), + [anon_sym__Nonnull] = ACTIONS(7563), + [anon_sym_mutable] = ACTIONS(7563), + [anon_sym_constinit] = ACTIONS(7563), + [anon_sym_consteval] = ACTIONS(7563), + [anon_sym_alignas] = ACTIONS(7563), + [anon_sym__Alignas] = ACTIONS(7563), + [anon_sym_QMARK] = ACTIONS(7563), + [anon_sym_STAR_EQ] = ACTIONS(7563), + [anon_sym_SLASH_EQ] = ACTIONS(7563), + [anon_sym_PERCENT_EQ] = ACTIONS(7563), + [anon_sym_PLUS_EQ] = ACTIONS(7563), + [anon_sym_DASH_EQ] = ACTIONS(7563), + [anon_sym_LT_LT_EQ] = ACTIONS(7563), + [anon_sym_GT_GT_EQ] = ACTIONS(7563), + [anon_sym_AMP_EQ] = ACTIONS(7563), + [anon_sym_CARET_EQ] = ACTIONS(7563), + [anon_sym_PIPE_EQ] = ACTIONS(7563), + [anon_sym_and_eq] = ACTIONS(7563), + [anon_sym_or_eq] = ACTIONS(7563), + [anon_sym_xor_eq] = ACTIONS(7563), + [anon_sym_LT_EQ_GT] = ACTIONS(7563), + [anon_sym_or] = ACTIONS(7561), + [anon_sym_and] = ACTIONS(7561), + [anon_sym_bitor] = ACTIONS(7563), + [anon_sym_xor] = ACTIONS(7561), + [anon_sym_bitand] = ACTIONS(7563), + [anon_sym_not_eq] = ACTIONS(7563), + [anon_sym_DASH_DASH] = ACTIONS(7563), + [anon_sym_PLUS_PLUS] = ACTIONS(7563), + [anon_sym_DOT] = ACTIONS(7561), + [anon_sym_DOT_STAR] = ACTIONS(7563), + [anon_sym_DASH_GT] = ACTIONS(7563), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7563), + [anon_sym_override] = ACTIONS(7563), + [anon_sym_requires] = ACTIONS(7563), + }, + [STATE(3230)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7757), + [anon_sym_COMMA] = ACTIONS(7757), + [anon_sym_LPAREN2] = ACTIONS(7757), + [anon_sym_DASH] = ACTIONS(7755), + [anon_sym_PLUS] = ACTIONS(7755), + [anon_sym_STAR] = ACTIONS(7755), + [anon_sym_SLASH] = ACTIONS(7755), + [anon_sym_PERCENT] = ACTIONS(7755), + [anon_sym_PIPE_PIPE] = ACTIONS(7757), + [anon_sym_AMP_AMP] = ACTIONS(7757), + [anon_sym_PIPE] = ACTIONS(7755), + [anon_sym_CARET] = ACTIONS(7755), + [anon_sym_AMP] = ACTIONS(7755), + [anon_sym_EQ_EQ] = ACTIONS(7757), + [anon_sym_BANG_EQ] = ACTIONS(7757), + [anon_sym_GT] = ACTIONS(7755), + [anon_sym_GT_EQ] = ACTIONS(7755), + [anon_sym_LT_EQ] = ACTIONS(7755), + [anon_sym_LT] = ACTIONS(7755), + [anon_sym_LT_LT] = ACTIONS(7755), + [anon_sym_GT_GT] = ACTIONS(7755), + [anon_sym___extension__] = ACTIONS(7757), + [anon_sym_LBRACE] = ACTIONS(7757), + [anon_sym_LBRACK] = ACTIONS(7757), + [anon_sym_EQ] = ACTIONS(7755), + [anon_sym_const] = ACTIONS(7755), + [anon_sym_constexpr] = ACTIONS(7757), + [anon_sym_volatile] = ACTIONS(7757), + [anon_sym_restrict] = ACTIONS(7757), + [anon_sym___restrict__] = ACTIONS(7757), + [anon_sym__Atomic] = ACTIONS(7757), + [anon_sym__Noreturn] = ACTIONS(7757), + [anon_sym_noreturn] = ACTIONS(7757), + [anon_sym__Nonnull] = ACTIONS(7757), + [anon_sym_mutable] = ACTIONS(7757), + [anon_sym_constinit] = ACTIONS(7757), + [anon_sym_consteval] = ACTIONS(7757), + [anon_sym_alignas] = ACTIONS(7757), + [anon_sym__Alignas] = ACTIONS(7757), + [anon_sym_QMARK] = ACTIONS(7757), + [anon_sym_STAR_EQ] = ACTIONS(7757), + [anon_sym_SLASH_EQ] = ACTIONS(7757), + [anon_sym_PERCENT_EQ] = ACTIONS(7757), + [anon_sym_PLUS_EQ] = ACTIONS(7757), + [anon_sym_DASH_EQ] = ACTIONS(7757), + [anon_sym_LT_LT_EQ] = ACTIONS(7757), + [anon_sym_GT_GT_EQ] = ACTIONS(7755), + [anon_sym_AMP_EQ] = ACTIONS(7757), + [anon_sym_CARET_EQ] = ACTIONS(7757), + [anon_sym_PIPE_EQ] = ACTIONS(7757), + [anon_sym_and_eq] = ACTIONS(7757), + [anon_sym_or_eq] = ACTIONS(7757), + [anon_sym_xor_eq] = ACTIONS(7757), + [anon_sym_LT_EQ_GT] = ACTIONS(7757), + [anon_sym_or] = ACTIONS(7755), + [anon_sym_and] = ACTIONS(7755), + [anon_sym_bitor] = ACTIONS(7757), + [anon_sym_xor] = ACTIONS(7755), + [anon_sym_bitand] = ACTIONS(7757), + [anon_sym_not_eq] = ACTIONS(7757), + [anon_sym_DASH_DASH] = ACTIONS(7757), + [anon_sym_PLUS_PLUS] = ACTIONS(7757), + [anon_sym_DOT] = ACTIONS(7755), + [anon_sym_DOT_STAR] = ACTIONS(7757), + [anon_sym_DASH_GT] = ACTIONS(7757), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7757), + [anon_sym_override] = ACTIONS(7757), + [anon_sym_GT2] = ACTIONS(7757), + [anon_sym_requires] = ACTIONS(7757), + }, + [STATE(3231)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7753), + [anon_sym_COMMA] = ACTIONS(7753), + [anon_sym_LPAREN2] = ACTIONS(7753), + [anon_sym_DASH] = ACTIONS(7751), + [anon_sym_PLUS] = ACTIONS(7751), + [anon_sym_STAR] = ACTIONS(7751), + [anon_sym_SLASH] = ACTIONS(7751), + [anon_sym_PERCENT] = ACTIONS(7751), + [anon_sym_PIPE_PIPE] = ACTIONS(7753), + [anon_sym_AMP_AMP] = ACTIONS(7753), + [anon_sym_PIPE] = ACTIONS(7751), + [anon_sym_CARET] = ACTIONS(7751), + [anon_sym_AMP] = ACTIONS(7751), + [anon_sym_EQ_EQ] = ACTIONS(7753), + [anon_sym_BANG_EQ] = ACTIONS(7753), + [anon_sym_GT] = ACTIONS(7751), + [anon_sym_GT_EQ] = ACTIONS(7753), + [anon_sym_LT_EQ] = ACTIONS(7751), + [anon_sym_LT] = ACTIONS(7751), + [anon_sym_LT_LT] = ACTIONS(7751), + [anon_sym_GT_GT] = ACTIONS(7751), + [anon_sym___extension__] = ACTIONS(7753), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_LBRACK] = ACTIONS(7753), + [anon_sym_RBRACK] = ACTIONS(7753), + [anon_sym_EQ] = ACTIONS(7751), + [anon_sym_const] = ACTIONS(7751), + [anon_sym_constexpr] = ACTIONS(7753), + [anon_sym_volatile] = ACTIONS(7753), + [anon_sym_restrict] = ACTIONS(7753), + [anon_sym___restrict__] = ACTIONS(7753), + [anon_sym__Atomic] = ACTIONS(7753), + [anon_sym__Noreturn] = ACTIONS(7753), + [anon_sym_noreturn] = ACTIONS(7753), + [anon_sym__Nonnull] = ACTIONS(7753), + [anon_sym_mutable] = ACTIONS(7753), + [anon_sym_constinit] = ACTIONS(7753), + [anon_sym_consteval] = ACTIONS(7753), + [anon_sym_alignas] = ACTIONS(7753), + [anon_sym__Alignas] = ACTIONS(7753), + [anon_sym_QMARK] = ACTIONS(7753), + [anon_sym_STAR_EQ] = ACTIONS(7753), + [anon_sym_SLASH_EQ] = ACTIONS(7753), + [anon_sym_PERCENT_EQ] = ACTIONS(7753), + [anon_sym_PLUS_EQ] = ACTIONS(7753), + [anon_sym_DASH_EQ] = ACTIONS(7753), + [anon_sym_LT_LT_EQ] = ACTIONS(7753), + [anon_sym_GT_GT_EQ] = ACTIONS(7753), + [anon_sym_AMP_EQ] = ACTIONS(7753), + [anon_sym_CARET_EQ] = ACTIONS(7753), + [anon_sym_PIPE_EQ] = ACTIONS(7753), + [anon_sym_and_eq] = ACTIONS(7753), + [anon_sym_or_eq] = ACTIONS(7753), + [anon_sym_xor_eq] = ACTIONS(7753), + [anon_sym_LT_EQ_GT] = ACTIONS(7753), + [anon_sym_or] = ACTIONS(7751), + [anon_sym_and] = ACTIONS(7751), + [anon_sym_bitor] = ACTIONS(7753), + [anon_sym_xor] = ACTIONS(7751), + [anon_sym_bitand] = ACTIONS(7753), + [anon_sym_not_eq] = ACTIONS(7753), + [anon_sym_DASH_DASH] = ACTIONS(7753), + [anon_sym_PLUS_PLUS] = ACTIONS(7753), + [anon_sym_DOT] = ACTIONS(7751), + [anon_sym_DOT_STAR] = ACTIONS(7753), + [anon_sym_DASH_GT] = ACTIONS(7753), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7753), + [anon_sym_override] = ACTIONS(7753), + [anon_sym_requires] = ACTIONS(7753), + }, + [STATE(3232)] = { + [sym_identifier] = ACTIONS(7585), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7587), + [anon_sym_COMMA] = ACTIONS(7587), + [anon_sym_RPAREN] = ACTIONS(7587), + [anon_sym_LPAREN2] = ACTIONS(7587), + [anon_sym_DASH] = ACTIONS(7585), + [anon_sym_PLUS] = ACTIONS(7585), + [anon_sym_STAR] = ACTIONS(7587), + [anon_sym_SLASH] = ACTIONS(7585), + [anon_sym_PERCENT] = ACTIONS(7587), + [anon_sym_PIPE_PIPE] = ACTIONS(7587), + [anon_sym_AMP_AMP] = ACTIONS(7587), + [anon_sym_PIPE] = ACTIONS(7585), + [anon_sym_CARET] = ACTIONS(7587), + [anon_sym_AMP] = ACTIONS(7585), + [anon_sym_EQ_EQ] = ACTIONS(7587), + [anon_sym_BANG_EQ] = ACTIONS(7587), + [anon_sym_GT] = ACTIONS(7585), + [anon_sym_GT_EQ] = ACTIONS(7587), + [anon_sym_LT_EQ] = ACTIONS(7585), + [anon_sym_LT] = ACTIONS(7585), + [anon_sym_LT_LT] = ACTIONS(7587), + [anon_sym_GT_GT] = ACTIONS(7587), + [anon_sym_SEMI] = ACTIONS(7587), + [anon_sym___extension__] = ACTIONS(7585), + [anon_sym___attribute__] = ACTIONS(7585), + [anon_sym___attribute] = ACTIONS(7585), + [anon_sym_COLON] = ACTIONS(7585), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7587), + [anon_sym___based] = ACTIONS(7585), + [anon_sym_LBRACE] = ACTIONS(7587), + [anon_sym_RBRACE] = ACTIONS(7587), + [anon_sym_signed] = ACTIONS(7585), + [anon_sym_unsigned] = ACTIONS(7585), + [anon_sym_long] = ACTIONS(7585), + [anon_sym_short] = ACTIONS(7585), + [anon_sym_LBRACK] = ACTIONS(7587), + [anon_sym_const] = ACTIONS(7585), + [anon_sym_constexpr] = ACTIONS(7585), + [anon_sym_volatile] = ACTIONS(7585), + [anon_sym_restrict] = ACTIONS(7585), + [anon_sym___restrict__] = ACTIONS(7585), + [anon_sym__Atomic] = ACTIONS(7585), + [anon_sym__Noreturn] = ACTIONS(7585), + [anon_sym_noreturn] = ACTIONS(7585), + [anon_sym__Nonnull] = ACTIONS(7585), + [anon_sym_mutable] = ACTIONS(7585), + [anon_sym_constinit] = ACTIONS(7585), + [anon_sym_consteval] = ACTIONS(7585), + [anon_sym_alignas] = ACTIONS(7585), + [anon_sym__Alignas] = ACTIONS(7585), + [sym_primitive_type] = ACTIONS(7585), + [anon_sym_QMARK] = ACTIONS(7587), + [anon_sym_LT_EQ_GT] = ACTIONS(7587), + [anon_sym_or] = ACTIONS(7585), + [anon_sym_and] = ACTIONS(7585), + [anon_sym_bitor] = ACTIONS(7585), + [anon_sym_xor] = ACTIONS(7585), + [anon_sym_bitand] = ACTIONS(7585), + [anon_sym_not_eq] = ACTIONS(7585), + [anon_sym_DASH_DASH] = ACTIONS(7587), + [anon_sym_PLUS_PLUS] = ACTIONS(7587), + [anon_sym_DOT] = ACTIONS(7585), + [anon_sym_DOT_STAR] = ACTIONS(7587), + [anon_sym_DASH_GT] = ACTIONS(7587), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7585), + [anon_sym_override] = ACTIONS(7585), + [anon_sym_requires] = ACTIONS(7585), + [anon_sym_COLON_RBRACK] = ACTIONS(7587), + }, + [STATE(3233)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7757), + [anon_sym_COMMA] = ACTIONS(7757), + [anon_sym_LPAREN2] = ACTIONS(7757), + [anon_sym_DASH] = ACTIONS(7755), + [anon_sym_PLUS] = ACTIONS(7755), + [anon_sym_STAR] = ACTIONS(7755), + [anon_sym_SLASH] = ACTIONS(7755), + [anon_sym_PERCENT] = ACTIONS(7755), + [anon_sym_PIPE_PIPE] = ACTIONS(7757), + [anon_sym_AMP_AMP] = ACTIONS(7757), + [anon_sym_PIPE] = ACTIONS(7755), + [anon_sym_CARET] = ACTIONS(7755), + [anon_sym_AMP] = ACTIONS(7755), + [anon_sym_EQ_EQ] = ACTIONS(7757), + [anon_sym_BANG_EQ] = ACTIONS(7757), + [anon_sym_GT] = ACTIONS(7755), + [anon_sym_GT_EQ] = ACTIONS(7757), + [anon_sym_LT_EQ] = ACTIONS(7755), + [anon_sym_LT] = ACTIONS(7755), + [anon_sym_LT_LT] = ACTIONS(7755), + [anon_sym_GT_GT] = ACTIONS(7755), + [anon_sym___extension__] = ACTIONS(7757), + [anon_sym_LBRACE] = ACTIONS(7757), + [anon_sym_LBRACK] = ACTIONS(7757), + [anon_sym_RBRACK] = ACTIONS(7757), + [anon_sym_EQ] = ACTIONS(7755), + [anon_sym_const] = ACTIONS(7755), + [anon_sym_constexpr] = ACTIONS(7757), + [anon_sym_volatile] = ACTIONS(7757), + [anon_sym_restrict] = ACTIONS(7757), + [anon_sym___restrict__] = ACTIONS(7757), + [anon_sym__Atomic] = ACTIONS(7757), + [anon_sym__Noreturn] = ACTIONS(7757), + [anon_sym_noreturn] = ACTIONS(7757), + [anon_sym__Nonnull] = ACTIONS(7757), + [anon_sym_mutable] = ACTIONS(7757), + [anon_sym_constinit] = ACTIONS(7757), + [anon_sym_consteval] = ACTIONS(7757), + [anon_sym_alignas] = ACTIONS(7757), + [anon_sym__Alignas] = ACTIONS(7757), + [anon_sym_QMARK] = ACTIONS(7757), + [anon_sym_STAR_EQ] = ACTIONS(7757), + [anon_sym_SLASH_EQ] = ACTIONS(7757), + [anon_sym_PERCENT_EQ] = ACTIONS(7757), + [anon_sym_PLUS_EQ] = ACTIONS(7757), + [anon_sym_DASH_EQ] = ACTIONS(7757), + [anon_sym_LT_LT_EQ] = ACTIONS(7757), + [anon_sym_GT_GT_EQ] = ACTIONS(7757), + [anon_sym_AMP_EQ] = ACTIONS(7757), + [anon_sym_CARET_EQ] = ACTIONS(7757), + [anon_sym_PIPE_EQ] = ACTIONS(7757), + [anon_sym_and_eq] = ACTIONS(7757), + [anon_sym_or_eq] = ACTIONS(7757), + [anon_sym_xor_eq] = ACTIONS(7757), + [anon_sym_LT_EQ_GT] = ACTIONS(7757), + [anon_sym_or] = ACTIONS(7755), + [anon_sym_and] = ACTIONS(7755), + [anon_sym_bitor] = ACTIONS(7757), + [anon_sym_xor] = ACTIONS(7755), + [anon_sym_bitand] = ACTIONS(7757), + [anon_sym_not_eq] = ACTIONS(7757), + [anon_sym_DASH_DASH] = ACTIONS(7757), + [anon_sym_PLUS_PLUS] = ACTIONS(7757), + [anon_sym_DOT] = ACTIONS(7755), + [anon_sym_DOT_STAR] = ACTIONS(7757), + [anon_sym_DASH_GT] = ACTIONS(7757), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7757), + [anon_sym_override] = ACTIONS(7757), + [anon_sym_requires] = ACTIONS(7757), + }, + [STATE(3234)] = { + [sym_identifier] = ACTIONS(3362), + [aux_sym_preproc_def_token1] = ACTIONS(3362), + [aux_sym_preproc_if_token1] = ACTIONS(3362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), + [sym_preproc_directive] = ACTIONS(3362), + [anon_sym_LPAREN2] = ACTIONS(3364), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_STAR] = ACTIONS(3364), + [anon_sym_AMP_AMP] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3362), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym___extension__] = ACTIONS(3362), + [anon_sym_typedef] = ACTIONS(3362), + [anon_sym_virtual] = ACTIONS(3362), + [anon_sym_extern] = ACTIONS(3362), + [anon_sym___attribute__] = ACTIONS(3362), + [anon_sym___attribute] = ACTIONS(3362), + [anon_sym_using] = ACTIONS(3362), + [anon_sym_COLON_COLON] = ACTIONS(3364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), + [anon_sym___declspec] = ACTIONS(3362), + [anon_sym___based] = ACTIONS(3362), + [anon_sym_RBRACE] = ACTIONS(3364), + [anon_sym_signed] = ACTIONS(3362), + [anon_sym_unsigned] = ACTIONS(3362), + [anon_sym_long] = ACTIONS(3362), + [anon_sym_short] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_static] = ACTIONS(3362), + [anon_sym_register] = ACTIONS(3362), + [anon_sym_inline] = ACTIONS(3362), + [anon_sym___inline] = ACTIONS(3362), + [anon_sym___inline__] = ACTIONS(3362), + [anon_sym___forceinline] = ACTIONS(3362), + [anon_sym_thread_local] = ACTIONS(3362), + [anon_sym___thread] = ACTIONS(3362), + [anon_sym_const] = ACTIONS(3362), + [anon_sym_constexpr] = ACTIONS(3362), + [anon_sym_volatile] = ACTIONS(3362), + [anon_sym_restrict] = ACTIONS(3362), + [anon_sym___restrict__] = ACTIONS(3362), + [anon_sym__Atomic] = ACTIONS(3362), + [anon_sym__Noreturn] = ACTIONS(3362), + [anon_sym_noreturn] = ACTIONS(3362), + [anon_sym__Nonnull] = ACTIONS(3362), + [anon_sym_mutable] = ACTIONS(3362), + [anon_sym_constinit] = ACTIONS(3362), + [anon_sym_consteval] = ACTIONS(3362), + [anon_sym_alignas] = ACTIONS(3362), + [anon_sym__Alignas] = ACTIONS(3362), + [sym_primitive_type] = ACTIONS(3362), + [anon_sym_enum] = ACTIONS(3362), + [anon_sym_class] = ACTIONS(3362), + [anon_sym_struct] = ACTIONS(3362), + [anon_sym_union] = ACTIONS(3362), + [anon_sym_typename] = ACTIONS(3362), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3362), + [anon_sym_decltype] = ACTIONS(3362), + [anon_sym_explicit] = ACTIONS(3362), + [anon_sym_private] = ACTIONS(3362), + [anon_sym_template] = ACTIONS(3362), + [anon_sym_operator] = ACTIONS(3362), + [anon_sym_friend] = ACTIONS(3362), + [anon_sym_public] = ACTIONS(3362), + [anon_sym_protected] = ACTIONS(3362), + [anon_sym_static_assert] = ACTIONS(3362), + [anon_sym_catch] = ACTIONS(3362), + [anon_sym_LBRACK_COLON] = ACTIONS(3364), + }, + [STATE(3235)] = { + [sym_identifier] = ACTIONS(7635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7637), + [anon_sym_COMMA] = ACTIONS(7637), + [anon_sym_RPAREN] = ACTIONS(7637), + [anon_sym_LPAREN2] = ACTIONS(7637), + [anon_sym_DASH] = ACTIONS(7635), + [anon_sym_PLUS] = ACTIONS(7635), + [anon_sym_STAR] = ACTIONS(7637), + [anon_sym_SLASH] = ACTIONS(7635), + [anon_sym_PERCENT] = ACTIONS(7637), + [anon_sym_PIPE_PIPE] = ACTIONS(7637), + [anon_sym_AMP_AMP] = ACTIONS(7637), + [anon_sym_PIPE] = ACTIONS(7635), + [anon_sym_CARET] = ACTIONS(7637), + [anon_sym_AMP] = ACTIONS(7635), + [anon_sym_EQ_EQ] = ACTIONS(7637), + [anon_sym_BANG_EQ] = ACTIONS(7637), + [anon_sym_GT] = ACTIONS(7635), + [anon_sym_GT_EQ] = ACTIONS(7637), + [anon_sym_LT_EQ] = ACTIONS(7635), + [anon_sym_LT] = ACTIONS(7635), + [anon_sym_LT_LT] = ACTIONS(7637), + [anon_sym_GT_GT] = ACTIONS(7637), + [anon_sym_SEMI] = ACTIONS(7637), + [anon_sym___extension__] = ACTIONS(7635), + [anon_sym___attribute__] = ACTIONS(7635), + [anon_sym___attribute] = ACTIONS(7635), + [anon_sym_COLON] = ACTIONS(7635), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7637), + [anon_sym___based] = ACTIONS(7635), + [anon_sym_LBRACE] = ACTIONS(7637), + [anon_sym_RBRACE] = ACTIONS(7637), + [anon_sym_signed] = ACTIONS(7635), + [anon_sym_unsigned] = ACTIONS(7635), + [anon_sym_long] = ACTIONS(7635), + [anon_sym_short] = ACTIONS(7635), + [anon_sym_LBRACK] = ACTIONS(7637), + [anon_sym_const] = ACTIONS(7635), + [anon_sym_constexpr] = ACTIONS(7635), + [anon_sym_volatile] = ACTIONS(7635), + [anon_sym_restrict] = ACTIONS(7635), + [anon_sym___restrict__] = ACTIONS(7635), + [anon_sym__Atomic] = ACTIONS(7635), + [anon_sym__Noreturn] = ACTIONS(7635), + [anon_sym_noreturn] = ACTIONS(7635), + [anon_sym__Nonnull] = ACTIONS(7635), + [anon_sym_mutable] = ACTIONS(7635), + [anon_sym_constinit] = ACTIONS(7635), + [anon_sym_consteval] = ACTIONS(7635), + [anon_sym_alignas] = ACTIONS(7635), + [anon_sym__Alignas] = ACTIONS(7635), + [sym_primitive_type] = ACTIONS(7635), + [anon_sym_QMARK] = ACTIONS(7637), + [anon_sym_LT_EQ_GT] = ACTIONS(7637), + [anon_sym_or] = ACTIONS(7635), + [anon_sym_and] = ACTIONS(7635), + [anon_sym_bitor] = ACTIONS(7635), + [anon_sym_xor] = ACTIONS(7635), + [anon_sym_bitand] = ACTIONS(7635), + [anon_sym_not_eq] = ACTIONS(7635), + [anon_sym_DASH_DASH] = ACTIONS(7637), + [anon_sym_PLUS_PLUS] = ACTIONS(7637), + [anon_sym_DOT] = ACTIONS(7635), + [anon_sym_DOT_STAR] = ACTIONS(7637), + [anon_sym_DASH_GT] = ACTIONS(7637), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7635), + [anon_sym_override] = ACTIONS(7635), + [anon_sym_requires] = ACTIONS(7635), + [anon_sym_COLON_RBRACK] = ACTIONS(7637), + }, + [STATE(3236)] = { + [sym_type_qualifier] = STATE(2488), + [sym_alignas_qualifier] = STATE(2726), + [aux_sym__type_definition_type_repeat1] = STATE(2488), + [aux_sym_sized_type_specifier_repeat1] = STATE(3564), + [sym_identifier] = ACTIONS(8714), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), + [anon_sym_COMMA] = ACTIONS(7205), + [anon_sym_RPAREN] = ACTIONS(7205), + [anon_sym_LPAREN2] = ACTIONS(7205), + [anon_sym_DASH] = ACTIONS(7207), + [anon_sym_PLUS] = ACTIONS(7207), + [anon_sym_STAR] = ACTIONS(7205), + [anon_sym_SLASH] = ACTIONS(7207), + [anon_sym_PERCENT] = ACTIONS(7205), + [anon_sym_PIPE_PIPE] = ACTIONS(7205), + [anon_sym_AMP_AMP] = ACTIONS(7205), + [anon_sym_PIPE] = ACTIONS(7207), + [anon_sym_CARET] = ACTIONS(7205), + [anon_sym_AMP] = ACTIONS(7207), + [anon_sym_EQ_EQ] = ACTIONS(7205), + [anon_sym_BANG_EQ] = ACTIONS(7205), + [anon_sym_GT] = ACTIONS(7207), + [anon_sym_GT_EQ] = ACTIONS(7205), + [anon_sym_LT_EQ] = ACTIONS(7207), + [anon_sym_LT] = ACTIONS(7207), + [anon_sym_LT_LT] = ACTIONS(7205), + [anon_sym_GT_GT] = ACTIONS(7205), + [anon_sym_SEMI] = ACTIONS(7205), + [anon_sym___extension__] = ACTIONS(8123), + [anon_sym___attribute__] = ACTIONS(7207), + [anon_sym___attribute] = ACTIONS(7207), + [anon_sym_COLON] = ACTIONS(7207), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7205), + [anon_sym_LBRACE] = ACTIONS(7205), + [anon_sym_RBRACE] = ACTIONS(7205), + [anon_sym_signed] = ACTIONS(8719), + [anon_sym_unsigned] = ACTIONS(8719), + [anon_sym_long] = ACTIONS(8719), + [anon_sym_short] = ACTIONS(8719), + [anon_sym_LBRACK] = ACTIONS(7205), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8123), + [anon_sym_volatile] = ACTIONS(8123), + [anon_sym_restrict] = ACTIONS(8123), + [anon_sym___restrict__] = ACTIONS(8123), + [anon_sym__Atomic] = ACTIONS(8123), + [anon_sym__Noreturn] = ACTIONS(8123), + [anon_sym_noreturn] = ACTIONS(8123), + [anon_sym__Nonnull] = ACTIONS(8123), + [anon_sym_mutable] = ACTIONS(8123), + [anon_sym_constinit] = ACTIONS(8123), + [anon_sym_consteval] = ACTIONS(8123), + [anon_sym_alignas] = ACTIONS(9051), + [anon_sym__Alignas] = ACTIONS(9051), + [sym_primitive_type] = ACTIONS(8724), + [anon_sym_QMARK] = ACTIONS(7205), + [anon_sym_LT_EQ_GT] = ACTIONS(7205), + [anon_sym_or] = ACTIONS(7207), + [anon_sym_and] = ACTIONS(7207), + [anon_sym_bitor] = ACTIONS(7207), + [anon_sym_xor] = ACTIONS(7207), + [anon_sym_bitand] = ACTIONS(7207), + [anon_sym_not_eq] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7205), + [anon_sym_PLUS_PLUS] = ACTIONS(7205), + [anon_sym_DOT] = ACTIONS(7207), + [anon_sym_DOT_STAR] = ACTIONS(7205), + [anon_sym_DASH_GT] = ACTIONS(7205), [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7205), }, - [STATE(3715)] = { - [sym_attribute_specifier] = STATE(3715), - [aux_sym_type_definition_repeat1] = STATE(3715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6555), - [anon_sym_COMMA] = ACTIONS(6555), - [anon_sym_LPAREN2] = ACTIONS(6555), - [anon_sym_DASH] = ACTIONS(6553), - [anon_sym_PLUS] = ACTIONS(6553), - [anon_sym_STAR] = ACTIONS(6555), - [anon_sym_SLASH] = ACTIONS(6553), - [anon_sym_PERCENT] = ACTIONS(6555), - [anon_sym_PIPE_PIPE] = ACTIONS(6555), - [anon_sym_AMP_AMP] = ACTIONS(6555), - [anon_sym_PIPE] = ACTIONS(6553), - [anon_sym_CARET] = ACTIONS(6555), - [anon_sym_AMP] = ACTIONS(6553), - [anon_sym_EQ_EQ] = ACTIONS(6555), - [anon_sym_BANG_EQ] = ACTIONS(6555), - [anon_sym_GT] = ACTIONS(6553), - [anon_sym_GT_EQ] = ACTIONS(6553), - [anon_sym_LT_EQ] = ACTIONS(6553), - [anon_sym_LT] = ACTIONS(6553), - [anon_sym_LT_LT] = ACTIONS(6555), - [anon_sym_GT_GT] = ACTIONS(6553), - [anon_sym___extension__] = ACTIONS(6555), - [anon_sym___attribute__] = ACTIONS(9352), - [anon_sym___attribute] = ACTIONS(9355), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6555), - [anon_sym_LBRACK] = ACTIONS(6553), - [anon_sym_const] = ACTIONS(6553), - [anon_sym_constexpr] = ACTIONS(6555), - [anon_sym_volatile] = ACTIONS(6555), - [anon_sym_restrict] = ACTIONS(6555), - [anon_sym___restrict__] = ACTIONS(6555), - [anon_sym__Atomic] = ACTIONS(6555), - [anon_sym__Noreturn] = ACTIONS(6555), - [anon_sym_noreturn] = ACTIONS(6555), - [anon_sym__Nonnull] = ACTIONS(6555), - [anon_sym_mutable] = ACTIONS(6555), - [anon_sym_constinit] = ACTIONS(6555), - [anon_sym_consteval] = ACTIONS(6555), - [anon_sym_alignas] = ACTIONS(6555), - [anon_sym__Alignas] = ACTIONS(6555), - [anon_sym_QMARK] = ACTIONS(6555), - [anon_sym_LT_EQ_GT] = ACTIONS(6555), - [anon_sym_or] = ACTIONS(6555), - [anon_sym_and] = ACTIONS(6555), - [anon_sym_bitor] = ACTIONS(6555), - [anon_sym_xor] = ACTIONS(6555), - [anon_sym_bitand] = ACTIONS(6555), - [anon_sym_not_eq] = ACTIONS(6555), - [anon_sym_DASH_DASH] = ACTIONS(6555), - [anon_sym_PLUS_PLUS] = ACTIONS(6555), - [anon_sym_asm] = ACTIONS(6555), - [anon_sym___asm__] = ACTIONS(6555), - [anon_sym___asm] = ACTIONS(6553), - [anon_sym_DOT] = ACTIONS(6553), - [anon_sym_DOT_STAR] = ACTIONS(6555), - [anon_sym_DASH_GT] = ACTIONS(6555), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6555), - [anon_sym_override] = ACTIONS(6555), - [anon_sym_GT2] = ACTIONS(6555), - [anon_sym_noexcept] = ACTIONS(6555), - [anon_sym_throw] = ACTIONS(6555), - [anon_sym_requires] = ACTIONS(6555), + [STATE(3237)] = { + [sym_identifier] = ACTIONS(7595), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7597), + [anon_sym_COMMA] = ACTIONS(7597), + [anon_sym_RPAREN] = ACTIONS(7597), + [anon_sym_LPAREN2] = ACTIONS(7597), + [anon_sym_DASH] = ACTIONS(7595), + [anon_sym_PLUS] = ACTIONS(7595), + [anon_sym_STAR] = ACTIONS(7597), + [anon_sym_SLASH] = ACTIONS(7595), + [anon_sym_PERCENT] = ACTIONS(7597), + [anon_sym_PIPE_PIPE] = ACTIONS(7597), + [anon_sym_AMP_AMP] = ACTIONS(7597), + [anon_sym_PIPE] = ACTIONS(7595), + [anon_sym_CARET] = ACTIONS(7597), + [anon_sym_AMP] = ACTIONS(7595), + [anon_sym_EQ_EQ] = ACTIONS(7597), + [anon_sym_BANG_EQ] = ACTIONS(7597), + [anon_sym_GT] = ACTIONS(7595), + [anon_sym_GT_EQ] = ACTIONS(7597), + [anon_sym_LT_EQ] = ACTIONS(7595), + [anon_sym_LT] = ACTIONS(7595), + [anon_sym_LT_LT] = ACTIONS(7597), + [anon_sym_GT_GT] = ACTIONS(7597), + [anon_sym_SEMI] = ACTIONS(7597), + [anon_sym___extension__] = ACTIONS(7595), + [anon_sym___attribute__] = ACTIONS(7595), + [anon_sym___attribute] = ACTIONS(7595), + [anon_sym_COLON] = ACTIONS(7595), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7597), + [anon_sym___based] = ACTIONS(7595), + [anon_sym_LBRACE] = ACTIONS(7597), + [anon_sym_RBRACE] = ACTIONS(7597), + [anon_sym_signed] = ACTIONS(7595), + [anon_sym_unsigned] = ACTIONS(7595), + [anon_sym_long] = ACTIONS(7595), + [anon_sym_short] = ACTIONS(7595), + [anon_sym_LBRACK] = ACTIONS(7597), + [anon_sym_const] = ACTIONS(7595), + [anon_sym_constexpr] = ACTIONS(7595), + [anon_sym_volatile] = ACTIONS(7595), + [anon_sym_restrict] = ACTIONS(7595), + [anon_sym___restrict__] = ACTIONS(7595), + [anon_sym__Atomic] = ACTIONS(7595), + [anon_sym__Noreturn] = ACTIONS(7595), + [anon_sym_noreturn] = ACTIONS(7595), + [anon_sym__Nonnull] = ACTIONS(7595), + [anon_sym_mutable] = ACTIONS(7595), + [anon_sym_constinit] = ACTIONS(7595), + [anon_sym_consteval] = ACTIONS(7595), + [anon_sym_alignas] = ACTIONS(7595), + [anon_sym__Alignas] = ACTIONS(7595), + [sym_primitive_type] = ACTIONS(7595), + [anon_sym_QMARK] = ACTIONS(7597), + [anon_sym_LT_EQ_GT] = ACTIONS(7597), + [anon_sym_or] = ACTIONS(7595), + [anon_sym_and] = ACTIONS(7595), + [anon_sym_bitor] = ACTIONS(7595), + [anon_sym_xor] = ACTIONS(7595), + [anon_sym_bitand] = ACTIONS(7595), + [anon_sym_not_eq] = ACTIONS(7595), + [anon_sym_DASH_DASH] = ACTIONS(7597), + [anon_sym_PLUS_PLUS] = ACTIONS(7597), + [anon_sym_DOT] = ACTIONS(7595), + [anon_sym_DOT_STAR] = ACTIONS(7597), + [anon_sym_DASH_GT] = ACTIONS(7597), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7595), + [anon_sym_override] = ACTIONS(7595), + [anon_sym_requires] = ACTIONS(7595), + [anon_sym_COLON_RBRACK] = ACTIONS(7597), }, - [STATE(3716)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3716), - [sym_identifier] = ACTIONS(6627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6629), - [anon_sym_COMMA] = ACTIONS(6629), - [anon_sym_LPAREN2] = ACTIONS(6629), - [anon_sym_DASH] = ACTIONS(6627), - [anon_sym_PLUS] = ACTIONS(6627), - [anon_sym_STAR] = ACTIONS(6629), - [anon_sym_SLASH] = ACTIONS(6627), - [anon_sym_PERCENT] = ACTIONS(6629), - [anon_sym_PIPE_PIPE] = ACTIONS(6629), - [anon_sym_AMP_AMP] = ACTIONS(6629), - [anon_sym_PIPE] = ACTIONS(6627), - [anon_sym_CARET] = ACTIONS(6629), - [anon_sym_AMP] = ACTIONS(6627), - [anon_sym_EQ_EQ] = ACTIONS(6629), - [anon_sym_BANG_EQ] = ACTIONS(6629), - [anon_sym_GT] = ACTIONS(6627), - [anon_sym_GT_EQ] = ACTIONS(6629), - [anon_sym_LT_EQ] = ACTIONS(6627), - [anon_sym_LT] = ACTIONS(6627), - [anon_sym_LT_LT] = ACTIONS(6629), - [anon_sym_GT_GT] = ACTIONS(6629), - [anon_sym___extension__] = ACTIONS(6627), - [anon_sym___attribute__] = ACTIONS(6627), - [anon_sym___attribute] = ACTIONS(6627), - [anon_sym_LBRACE] = ACTIONS(6629), - [anon_sym_signed] = ACTIONS(9256), - [anon_sym_unsigned] = ACTIONS(9256), - [anon_sym_long] = ACTIONS(9256), - [anon_sym_short] = ACTIONS(9256), - [anon_sym_LBRACK] = ACTIONS(6629), - [anon_sym_RBRACK] = ACTIONS(6629), - [anon_sym_const] = ACTIONS(6627), - [anon_sym_constexpr] = ACTIONS(6627), - [anon_sym_volatile] = ACTIONS(6627), - [anon_sym_restrict] = ACTIONS(6627), - [anon_sym___restrict__] = ACTIONS(6627), - [anon_sym__Atomic] = ACTIONS(6627), - [anon_sym__Noreturn] = ACTIONS(6627), - [anon_sym_noreturn] = ACTIONS(6627), - [anon_sym__Nonnull] = ACTIONS(6627), - [anon_sym_mutable] = ACTIONS(6627), - [anon_sym_constinit] = ACTIONS(6627), - [anon_sym_consteval] = ACTIONS(6627), - [anon_sym_alignas] = ACTIONS(6627), - [anon_sym__Alignas] = ACTIONS(6627), - [sym_primitive_type] = ACTIONS(6627), - [anon_sym_QMARK] = ACTIONS(6629), - [anon_sym_LT_EQ_GT] = ACTIONS(6629), - [anon_sym_or] = ACTIONS(6627), - [anon_sym_and] = ACTIONS(6627), - [anon_sym_bitor] = ACTIONS(6627), - [anon_sym_xor] = ACTIONS(6627), - [anon_sym_bitand] = ACTIONS(6627), - [anon_sym_not_eq] = ACTIONS(6627), - [anon_sym_DASH_DASH] = ACTIONS(6629), - [anon_sym_PLUS_PLUS] = ACTIONS(6629), - [anon_sym_DOT] = ACTIONS(6627), - [anon_sym_DOT_STAR] = ACTIONS(6629), - [anon_sym_DASH_GT] = ACTIONS(6629), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6627), - [anon_sym_override] = ACTIONS(6627), - [anon_sym_requires] = ACTIONS(6627), + [STATE(3238)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7761), + [anon_sym_COMMA] = ACTIONS(7761), + [anon_sym_LPAREN2] = ACTIONS(7761), + [anon_sym_DASH] = ACTIONS(7759), + [anon_sym_PLUS] = ACTIONS(7759), + [anon_sym_STAR] = ACTIONS(7759), + [anon_sym_SLASH] = ACTIONS(7759), + [anon_sym_PERCENT] = ACTIONS(7759), + [anon_sym_PIPE_PIPE] = ACTIONS(7761), + [anon_sym_AMP_AMP] = ACTIONS(7761), + [anon_sym_PIPE] = ACTIONS(7759), + [anon_sym_CARET] = ACTIONS(7759), + [anon_sym_AMP] = ACTIONS(7759), + [anon_sym_EQ_EQ] = ACTIONS(7761), + [anon_sym_BANG_EQ] = ACTIONS(7761), + [anon_sym_GT] = ACTIONS(7759), + [anon_sym_GT_EQ] = ACTIONS(7761), + [anon_sym_LT_EQ] = ACTIONS(7759), + [anon_sym_LT] = ACTIONS(7759), + [anon_sym_LT_LT] = ACTIONS(7759), + [anon_sym_GT_GT] = ACTIONS(7759), + [anon_sym___extension__] = ACTIONS(7761), + [anon_sym_LBRACE] = ACTIONS(7761), + [anon_sym_LBRACK] = ACTIONS(7761), + [anon_sym_RBRACK] = ACTIONS(7761), + [anon_sym_EQ] = ACTIONS(7759), + [anon_sym_const] = ACTIONS(7759), + [anon_sym_constexpr] = ACTIONS(7761), + [anon_sym_volatile] = ACTIONS(7761), + [anon_sym_restrict] = ACTIONS(7761), + [anon_sym___restrict__] = ACTIONS(7761), + [anon_sym__Atomic] = ACTIONS(7761), + [anon_sym__Noreturn] = ACTIONS(7761), + [anon_sym_noreturn] = ACTIONS(7761), + [anon_sym__Nonnull] = ACTIONS(7761), + [anon_sym_mutable] = ACTIONS(7761), + [anon_sym_constinit] = ACTIONS(7761), + [anon_sym_consteval] = ACTIONS(7761), + [anon_sym_alignas] = ACTIONS(7761), + [anon_sym__Alignas] = ACTIONS(7761), + [anon_sym_QMARK] = ACTIONS(7761), + [anon_sym_STAR_EQ] = ACTIONS(7761), + [anon_sym_SLASH_EQ] = ACTIONS(7761), + [anon_sym_PERCENT_EQ] = ACTIONS(7761), + [anon_sym_PLUS_EQ] = ACTIONS(7761), + [anon_sym_DASH_EQ] = ACTIONS(7761), + [anon_sym_LT_LT_EQ] = ACTIONS(7761), + [anon_sym_GT_GT_EQ] = ACTIONS(7761), + [anon_sym_AMP_EQ] = ACTIONS(7761), + [anon_sym_CARET_EQ] = ACTIONS(7761), + [anon_sym_PIPE_EQ] = ACTIONS(7761), + [anon_sym_and_eq] = ACTIONS(7761), + [anon_sym_or_eq] = ACTIONS(7761), + [anon_sym_xor_eq] = ACTIONS(7761), + [anon_sym_LT_EQ_GT] = ACTIONS(7761), + [anon_sym_or] = ACTIONS(7759), + [anon_sym_and] = ACTIONS(7759), + [anon_sym_bitor] = ACTIONS(7761), + [anon_sym_xor] = ACTIONS(7759), + [anon_sym_bitand] = ACTIONS(7761), + [anon_sym_not_eq] = ACTIONS(7761), + [anon_sym_DASH_DASH] = ACTIONS(7761), + [anon_sym_PLUS_PLUS] = ACTIONS(7761), + [anon_sym_DOT] = ACTIONS(7759), + [anon_sym_DOT_STAR] = ACTIONS(7761), + [anon_sym_DASH_GT] = ACTIONS(7761), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7761), + [anon_sym_override] = ACTIONS(7761), + [anon_sym_requires] = ACTIONS(7761), }, - [STATE(3717)] = { - [sym_identifier] = ACTIONS(9358), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9360), - [anon_sym_COMMA] = ACTIONS(9360), - [anon_sym_RPAREN] = ACTIONS(9360), - [aux_sym_preproc_if_token2] = ACTIONS(9360), - [aux_sym_preproc_else_token1] = ACTIONS(9360), - [aux_sym_preproc_elif_token1] = ACTIONS(9358), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9360), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9360), - [anon_sym_LPAREN2] = ACTIONS(9360), - [anon_sym_DASH] = ACTIONS(9358), - [anon_sym_PLUS] = ACTIONS(9358), - [anon_sym_STAR] = ACTIONS(9358), - [anon_sym_SLASH] = ACTIONS(9358), - [anon_sym_PERCENT] = ACTIONS(9358), - [anon_sym_PIPE_PIPE] = ACTIONS(9360), - [anon_sym_AMP_AMP] = ACTIONS(9360), - [anon_sym_PIPE] = ACTIONS(9358), - [anon_sym_CARET] = ACTIONS(9358), - [anon_sym_AMP] = ACTIONS(9358), - [anon_sym_EQ_EQ] = ACTIONS(9360), - [anon_sym_BANG_EQ] = ACTIONS(9360), - [anon_sym_GT] = ACTIONS(9358), - [anon_sym_GT_EQ] = ACTIONS(9360), - [anon_sym_LT_EQ] = ACTIONS(9358), - [anon_sym_LT] = ACTIONS(9358), - [anon_sym_LT_LT] = ACTIONS(9358), - [anon_sym_GT_GT] = ACTIONS(9358), - [anon_sym_SEMI] = ACTIONS(9360), - [anon_sym___attribute__] = ACTIONS(9358), - [anon_sym___attribute] = ACTIONS(9358), - [anon_sym_COLON] = ACTIONS(9358), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9360), - [anon_sym_LBRACE] = ACTIONS(9360), - [anon_sym_RBRACE] = ACTIONS(9360), - [anon_sym_LBRACK] = ACTIONS(9360), - [anon_sym_EQ] = ACTIONS(9358), - [anon_sym_QMARK] = ACTIONS(9360), - [anon_sym_STAR_EQ] = ACTIONS(9360), - [anon_sym_SLASH_EQ] = ACTIONS(9360), - [anon_sym_PERCENT_EQ] = ACTIONS(9360), - [anon_sym_PLUS_EQ] = ACTIONS(9360), - [anon_sym_DASH_EQ] = ACTIONS(9360), - [anon_sym_LT_LT_EQ] = ACTIONS(9360), - [anon_sym_GT_GT_EQ] = ACTIONS(9360), - [anon_sym_AMP_EQ] = ACTIONS(9360), - [anon_sym_CARET_EQ] = ACTIONS(9360), - [anon_sym_PIPE_EQ] = ACTIONS(9360), - [anon_sym_and_eq] = ACTIONS(9358), - [anon_sym_or_eq] = ACTIONS(9358), - [anon_sym_xor_eq] = ACTIONS(9358), - [anon_sym_LT_EQ_GT] = ACTIONS(9360), - [anon_sym_or] = ACTIONS(9358), - [anon_sym_and] = ACTIONS(9358), - [anon_sym_bitor] = ACTIONS(9358), - [anon_sym_xor] = ACTIONS(9358), - [anon_sym_bitand] = ACTIONS(9358), - [anon_sym_not_eq] = ACTIONS(9358), - [anon_sym_DASH_DASH] = ACTIONS(9360), - [anon_sym_PLUS_PLUS] = ACTIONS(9360), - [anon_sym_DOT] = ACTIONS(9358), - [anon_sym_DOT_STAR] = ACTIONS(9360), - [anon_sym_DASH_GT] = ACTIONS(9360), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9360), + [STATE(3239)] = { + [sym_ms_based_modifier] = STATE(11554), + [sym_ms_unaligned_ptr_modifier] = STATE(6574), + [sym_ms_pointer_modifier] = STATE(6427), + [sym__declarator] = STATE(8785), + [sym__abstract_declarator] = STATE(9003), + [sym_parenthesized_declarator] = STATE(8555), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_function_declarator] = STATE(8555), + [sym_abstract_function_declarator] = STATE(8596), + [sym_array_declarator] = STATE(8555), + [sym_abstract_array_declarator] = STATE(8596), + [sym_type_qualifier] = STATE(4129), + [sym_alignas_qualifier] = STATE(7511), + [sym_parameter_list] = STATE(4706), + [sym_decltype] = STATE(10768), + [sym_reference_declarator] = STATE(8555), + [sym_abstract_reference_declarator] = STATE(8596), + [sym_structured_binding_declarator] = STATE(8555), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7993), + [sym_qualified_identifier] = STATE(8555), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__type_definition_type_repeat1] = STATE(4129), + [aux_sym_pointer_declarator_repeat1] = STATE(6427), + [sym_identifier] = ACTIONS(8228), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_AMP_AMP] = ACTIONS(5621), + [anon_sym_AMP] = ACTIONS(5623), + [anon_sym___extension__] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(8675), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3266), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3266), + [sym_ms_signed_ptr_modifier] = ACTIONS(3266), + [anon_sym__unaligned] = ACTIONS(3268), + [anon_sym___unaligned] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(5627), + [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__Nonnull] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), }, - [STATE(3718)] = { - [sym_template_argument_list] = STATE(2824), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5272), - [anon_sym_COMMA] = ACTIONS(5272), - [anon_sym_RPAREN] = ACTIONS(5272), - [anon_sym_LPAREN2] = ACTIONS(5272), - [anon_sym_DASH] = ACTIONS(7031), - [anon_sym_PLUS] = ACTIONS(7031), - [anon_sym_STAR] = ACTIONS(5272), - [anon_sym_SLASH] = ACTIONS(7031), - [anon_sym_PERCENT] = ACTIONS(5272), - [anon_sym_PIPE_PIPE] = ACTIONS(5272), - [anon_sym_AMP_AMP] = ACTIONS(5272), - [anon_sym_PIPE] = ACTIONS(7031), - [anon_sym_CARET] = ACTIONS(5272), - [anon_sym_AMP] = ACTIONS(7031), - [anon_sym_EQ_EQ] = ACTIONS(5272), - [anon_sym_BANG_EQ] = ACTIONS(5272), - [anon_sym_GT] = ACTIONS(7031), - [anon_sym_GT_EQ] = ACTIONS(5272), - [anon_sym_LT_EQ] = ACTIONS(7031), - [anon_sym_LT] = ACTIONS(8390), - [anon_sym_LT_LT] = ACTIONS(5272), - [anon_sym_GT_GT] = ACTIONS(5272), - [anon_sym_SEMI] = ACTIONS(5272), - [anon_sym___extension__] = ACTIONS(5272), - [anon_sym___attribute__] = ACTIONS(5272), - [anon_sym___attribute] = ACTIONS(7031), - [anon_sym_COLON] = ACTIONS(7031), - [anon_sym_COLON_COLON] = ACTIONS(5270), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5272), - [anon_sym_LBRACE] = ACTIONS(5272), - [anon_sym_RBRACE] = ACTIONS(5272), - [anon_sym_LBRACK] = ACTIONS(5272), - [anon_sym_const] = ACTIONS(7031), - [anon_sym_constexpr] = ACTIONS(5272), - [anon_sym_volatile] = ACTIONS(5272), - [anon_sym_restrict] = ACTIONS(5272), - [anon_sym___restrict__] = ACTIONS(5272), - [anon_sym__Atomic] = ACTIONS(5272), - [anon_sym__Noreturn] = ACTIONS(5272), - [anon_sym_noreturn] = ACTIONS(5272), - [anon_sym__Nonnull] = ACTIONS(5272), - [anon_sym_mutable] = ACTIONS(5272), - [anon_sym_constinit] = ACTIONS(5272), - [anon_sym_consteval] = ACTIONS(5272), - [anon_sym_alignas] = ACTIONS(5272), - [anon_sym__Alignas] = ACTIONS(5272), - [anon_sym_QMARK] = ACTIONS(5272), - [anon_sym_LT_EQ_GT] = ACTIONS(5272), - [anon_sym_or] = ACTIONS(5272), - [anon_sym_and] = ACTIONS(5272), - [anon_sym_bitor] = ACTIONS(5272), - [anon_sym_xor] = ACTIONS(5272), - [anon_sym_bitand] = ACTIONS(5272), - [anon_sym_not_eq] = ACTIONS(5272), - [anon_sym_DASH_DASH] = ACTIONS(5272), - [anon_sym_PLUS_PLUS] = ACTIONS(5272), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_DOT_STAR] = ACTIONS(5272), - [anon_sym_DASH_GT] = ACTIONS(5272), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5272), - [anon_sym_override] = ACTIONS(5272), - [anon_sym_requires] = ACTIONS(5272), - [anon_sym_COLON_RBRACK] = ACTIONS(5272), + [STATE(3240)] = { + [sym_identifier] = ACTIONS(7595), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7597), + [anon_sym_COMMA] = ACTIONS(7597), + [anon_sym_RPAREN] = ACTIONS(7597), + [anon_sym_LPAREN2] = ACTIONS(7597), + [anon_sym_DASH] = ACTIONS(7595), + [anon_sym_PLUS] = ACTIONS(7595), + [anon_sym_STAR] = ACTIONS(7597), + [anon_sym_SLASH] = ACTIONS(7595), + [anon_sym_PERCENT] = ACTIONS(7597), + [anon_sym_PIPE_PIPE] = ACTIONS(7597), + [anon_sym_AMP_AMP] = ACTIONS(7597), + [anon_sym_PIPE] = ACTIONS(7595), + [anon_sym_CARET] = ACTIONS(7597), + [anon_sym_AMP] = ACTIONS(7595), + [anon_sym_EQ_EQ] = ACTIONS(7597), + [anon_sym_BANG_EQ] = ACTIONS(7597), + [anon_sym_GT] = ACTIONS(7595), + [anon_sym_GT_EQ] = ACTIONS(7597), + [anon_sym_LT_EQ] = ACTIONS(7595), + [anon_sym_LT] = ACTIONS(7595), + [anon_sym_LT_LT] = ACTIONS(7597), + [anon_sym_GT_GT] = ACTIONS(7597), + [anon_sym_SEMI] = ACTIONS(7597), + [anon_sym___extension__] = ACTIONS(7595), + [anon_sym___attribute__] = ACTIONS(7595), + [anon_sym___attribute] = ACTIONS(7595), + [anon_sym_COLON] = ACTIONS(7595), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7597), + [anon_sym___based] = ACTIONS(7595), + [anon_sym_LBRACE] = ACTIONS(7597), + [anon_sym_RBRACE] = ACTIONS(7597), + [anon_sym_signed] = ACTIONS(7595), + [anon_sym_unsigned] = ACTIONS(7595), + [anon_sym_long] = ACTIONS(7595), + [anon_sym_short] = ACTIONS(7595), + [anon_sym_LBRACK] = ACTIONS(7597), + [anon_sym_const] = ACTIONS(7595), + [anon_sym_constexpr] = ACTIONS(7595), + [anon_sym_volatile] = ACTIONS(7595), + [anon_sym_restrict] = ACTIONS(7595), + [anon_sym___restrict__] = ACTIONS(7595), + [anon_sym__Atomic] = ACTIONS(7595), + [anon_sym__Noreturn] = ACTIONS(7595), + [anon_sym_noreturn] = ACTIONS(7595), + [anon_sym__Nonnull] = ACTIONS(7595), + [anon_sym_mutable] = ACTIONS(7595), + [anon_sym_constinit] = ACTIONS(7595), + [anon_sym_consteval] = ACTIONS(7595), + [anon_sym_alignas] = ACTIONS(7595), + [anon_sym__Alignas] = ACTIONS(7595), + [sym_primitive_type] = ACTIONS(7595), + [anon_sym_QMARK] = ACTIONS(7597), + [anon_sym_LT_EQ_GT] = ACTIONS(7597), + [anon_sym_or] = ACTIONS(7595), + [anon_sym_and] = ACTIONS(7595), + [anon_sym_bitor] = ACTIONS(7595), + [anon_sym_xor] = ACTIONS(7595), + [anon_sym_bitand] = ACTIONS(7595), + [anon_sym_not_eq] = ACTIONS(7595), + [anon_sym_DASH_DASH] = ACTIONS(7597), + [anon_sym_PLUS_PLUS] = ACTIONS(7597), + [anon_sym_DOT] = ACTIONS(7595), + [anon_sym_DOT_STAR] = ACTIONS(7597), + [anon_sym_DASH_GT] = ACTIONS(7597), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7595), + [anon_sym_override] = ACTIONS(7595), + [anon_sym_requires] = ACTIONS(7595), + [anon_sym_COLON_RBRACK] = ACTIONS(7597), }, - [STATE(3719)] = { - [sym_attribute_specifier] = STATE(3719), - [aux_sym_type_definition_repeat1] = STATE(3719), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6555), - [anon_sym_COMMA] = ACTIONS(6555), - [anon_sym_LPAREN2] = ACTIONS(6555), - [anon_sym_DASH] = ACTIONS(6553), - [anon_sym_PLUS] = ACTIONS(6553), - [anon_sym_STAR] = ACTIONS(6555), - [anon_sym_SLASH] = ACTIONS(6553), - [anon_sym_PERCENT] = ACTIONS(6555), - [anon_sym_PIPE_PIPE] = ACTIONS(6555), - [anon_sym_AMP_AMP] = ACTIONS(6555), - [anon_sym_PIPE] = ACTIONS(6553), - [anon_sym_CARET] = ACTIONS(6555), - [anon_sym_AMP] = ACTIONS(6553), - [anon_sym_EQ_EQ] = ACTIONS(6555), - [anon_sym_BANG_EQ] = ACTIONS(6555), - [anon_sym_GT] = ACTIONS(6553), - [anon_sym_GT_EQ] = ACTIONS(6555), - [anon_sym_LT_EQ] = ACTIONS(6553), - [anon_sym_LT] = ACTIONS(6553), - [anon_sym_LT_LT] = ACTIONS(6555), - [anon_sym_GT_GT] = ACTIONS(6555), - [anon_sym___extension__] = ACTIONS(6555), - [anon_sym___attribute__] = ACTIONS(9362), - [anon_sym___attribute] = ACTIONS(9365), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6555), - [anon_sym_LBRACK] = ACTIONS(6553), - [anon_sym_RBRACK] = ACTIONS(6555), - [anon_sym_const] = ACTIONS(6553), - [anon_sym_constexpr] = ACTIONS(6555), - [anon_sym_volatile] = ACTIONS(6555), - [anon_sym_restrict] = ACTIONS(6555), - [anon_sym___restrict__] = ACTIONS(6555), - [anon_sym__Atomic] = ACTIONS(6555), - [anon_sym__Noreturn] = ACTIONS(6555), - [anon_sym_noreturn] = ACTIONS(6555), - [anon_sym__Nonnull] = ACTIONS(6555), - [anon_sym_mutable] = ACTIONS(6555), - [anon_sym_constinit] = ACTIONS(6555), - [anon_sym_consteval] = ACTIONS(6555), - [anon_sym_alignas] = ACTIONS(6555), - [anon_sym__Alignas] = ACTIONS(6555), - [anon_sym_QMARK] = ACTIONS(6555), - [anon_sym_LT_EQ_GT] = ACTIONS(6555), - [anon_sym_or] = ACTIONS(6555), - [anon_sym_and] = ACTIONS(6555), - [anon_sym_bitor] = ACTIONS(6555), - [anon_sym_xor] = ACTIONS(6555), - [anon_sym_bitand] = ACTIONS(6555), - [anon_sym_not_eq] = ACTIONS(6555), - [anon_sym_DASH_DASH] = ACTIONS(6555), - [anon_sym_PLUS_PLUS] = ACTIONS(6555), - [anon_sym_asm] = ACTIONS(6555), - [anon_sym___asm__] = ACTIONS(6555), - [anon_sym___asm] = ACTIONS(6553), - [anon_sym_DOT] = ACTIONS(6553), - [anon_sym_DOT_STAR] = ACTIONS(6555), - [anon_sym_DASH_GT] = ACTIONS(6555), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6555), - [anon_sym_override] = ACTIONS(6555), - [anon_sym_noexcept] = ACTIONS(6555), - [anon_sym_throw] = ACTIONS(6555), - [anon_sym_requires] = ACTIONS(6555), + [STATE(3241)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7601), + [anon_sym_COMMA] = ACTIONS(7601), + [anon_sym_LPAREN2] = ACTIONS(7601), + [anon_sym_DASH] = ACTIONS(7599), + [anon_sym_PLUS] = ACTIONS(7599), + [anon_sym_STAR] = ACTIONS(7599), + [anon_sym_SLASH] = ACTIONS(7599), + [anon_sym_PERCENT] = ACTIONS(7599), + [anon_sym_PIPE_PIPE] = ACTIONS(7601), + [anon_sym_AMP_AMP] = ACTIONS(7601), + [anon_sym_PIPE] = ACTIONS(7599), + [anon_sym_CARET] = ACTIONS(7599), + [anon_sym_AMP] = ACTIONS(7599), + [anon_sym_EQ_EQ] = ACTIONS(7601), + [anon_sym_BANG_EQ] = ACTIONS(7601), + [anon_sym_GT] = ACTIONS(7599), + [anon_sym_GT_EQ] = ACTIONS(7599), + [anon_sym_LT_EQ] = ACTIONS(7599), + [anon_sym_LT] = ACTIONS(7599), + [anon_sym_LT_LT] = ACTIONS(7599), + [anon_sym_GT_GT] = ACTIONS(7599), + [anon_sym___extension__] = ACTIONS(7601), + [anon_sym_LBRACE] = ACTIONS(7601), + [anon_sym_LBRACK] = ACTIONS(7601), + [anon_sym_EQ] = ACTIONS(7599), + [anon_sym_const] = ACTIONS(7599), + [anon_sym_constexpr] = ACTIONS(7601), + [anon_sym_volatile] = ACTIONS(7601), + [anon_sym_restrict] = ACTIONS(7601), + [anon_sym___restrict__] = ACTIONS(7601), + [anon_sym__Atomic] = ACTIONS(7601), + [anon_sym__Noreturn] = ACTIONS(7601), + [anon_sym_noreturn] = ACTIONS(7601), + [anon_sym__Nonnull] = ACTIONS(7601), + [anon_sym_mutable] = ACTIONS(7601), + [anon_sym_constinit] = ACTIONS(7601), + [anon_sym_consteval] = ACTIONS(7601), + [anon_sym_alignas] = ACTIONS(7601), + [anon_sym__Alignas] = ACTIONS(7601), + [anon_sym_QMARK] = ACTIONS(7601), + [anon_sym_STAR_EQ] = ACTIONS(7601), + [anon_sym_SLASH_EQ] = ACTIONS(7601), + [anon_sym_PERCENT_EQ] = ACTIONS(7601), + [anon_sym_PLUS_EQ] = ACTIONS(7601), + [anon_sym_DASH_EQ] = ACTIONS(7601), + [anon_sym_LT_LT_EQ] = ACTIONS(7601), + [anon_sym_GT_GT_EQ] = ACTIONS(7599), + [anon_sym_AMP_EQ] = ACTIONS(7601), + [anon_sym_CARET_EQ] = ACTIONS(7601), + [anon_sym_PIPE_EQ] = ACTIONS(7601), + [anon_sym_and_eq] = ACTIONS(7601), + [anon_sym_or_eq] = ACTIONS(7601), + [anon_sym_xor_eq] = ACTIONS(7601), + [anon_sym_LT_EQ_GT] = ACTIONS(7601), + [anon_sym_or] = ACTIONS(7599), + [anon_sym_and] = ACTIONS(7599), + [anon_sym_bitor] = ACTIONS(7601), + [anon_sym_xor] = ACTIONS(7599), + [anon_sym_bitand] = ACTIONS(7601), + [anon_sym_not_eq] = ACTIONS(7601), + [anon_sym_DASH_DASH] = ACTIONS(7601), + [anon_sym_PLUS_PLUS] = ACTIONS(7601), + [anon_sym_DOT] = ACTIONS(7599), + [anon_sym_DOT_STAR] = ACTIONS(7601), + [anon_sym_DASH_GT] = ACTIONS(7601), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7601), + [anon_sym_override] = ACTIONS(7601), + [anon_sym_GT2] = ACTIONS(7601), + [anon_sym_requires] = ACTIONS(7601), }, - [STATE(3720)] = { - [sym__abstract_declarator] = STATE(6418), - [sym_abstract_parenthesized_declarator] = STATE(5164), - [sym_abstract_pointer_declarator] = STATE(5164), - [sym_abstract_function_declarator] = STATE(5164), - [sym_abstract_array_declarator] = STATE(5164), - [sym_type_qualifier] = STATE(2399), - [sym_alignas_qualifier] = STATE(2592), - [sym_parameter_list] = STATE(2152), - [sym_abstract_reference_declarator] = STATE(5164), - [sym__function_declarator_seq] = STATE(5165), - [aux_sym__type_definition_type_repeat1] = STATE(2399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6995), - [anon_sym_COMMA] = ACTIONS(6995), - [anon_sym_LPAREN2] = ACTIONS(7731), - [anon_sym_DASH] = ACTIONS(6997), - [anon_sym_PLUS] = ACTIONS(6997), - [anon_sym_STAR] = ACTIONS(8341), - [anon_sym_SLASH] = ACTIONS(6997), - [anon_sym_PERCENT] = ACTIONS(6995), - [anon_sym_PIPE_PIPE] = ACTIONS(6995), - [anon_sym_AMP_AMP] = ACTIONS(8343), - [anon_sym_PIPE] = ACTIONS(6997), - [anon_sym_CARET] = ACTIONS(6995), - [anon_sym_AMP] = ACTIONS(8345), - [anon_sym_EQ_EQ] = ACTIONS(6995), - [anon_sym_BANG_EQ] = ACTIONS(6995), - [anon_sym_GT] = ACTIONS(6997), - [anon_sym_GT_EQ] = ACTIONS(6995), - [anon_sym_LT_EQ] = ACTIONS(6997), - [anon_sym_LT] = ACTIONS(6997), - [anon_sym_LT_LT] = ACTIONS(6995), - [anon_sym_GT_GT] = ACTIONS(6995), - [anon_sym_SEMI] = ACTIONS(6995), - [anon_sym___extension__] = ACTIONS(7778), - [anon_sym___attribute__] = ACTIONS(6995), - [anon_sym___attribute] = ACTIONS(6997), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_constexpr] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym___restrict__] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym__Noreturn] = ACTIONS(7778), - [anon_sym_noreturn] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym_mutable] = ACTIONS(7778), - [anon_sym_constinit] = ACTIONS(7778), - [anon_sym_consteval] = ACTIONS(7778), - [anon_sym_alignas] = ACTIONS(7786), - [anon_sym__Alignas] = ACTIONS(7786), - [anon_sym_QMARK] = ACTIONS(6995), - [anon_sym_LT_EQ_GT] = ACTIONS(6995), - [anon_sym_or] = ACTIONS(6995), - [anon_sym_and] = ACTIONS(6995), - [anon_sym_bitor] = ACTIONS(6995), - [anon_sym_xor] = ACTIONS(6995), - [anon_sym_bitand] = ACTIONS(6995), - [anon_sym_not_eq] = ACTIONS(6995), - [anon_sym_DASH_DASH] = ACTIONS(6995), - [anon_sym_PLUS_PLUS] = ACTIONS(6995), - [anon_sym_DOT] = ACTIONS(6997), - [anon_sym_DOT_STAR] = ACTIONS(6995), - [anon_sym_DASH_GT] = ACTIONS(6995), + [STATE(3242)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7605), + [anon_sym_COMMA] = ACTIONS(7605), + [anon_sym_LPAREN2] = ACTIONS(7605), + [anon_sym_DASH] = ACTIONS(7603), + [anon_sym_PLUS] = ACTIONS(7603), + [anon_sym_STAR] = ACTIONS(7603), + [anon_sym_SLASH] = ACTIONS(7603), + [anon_sym_PERCENT] = ACTIONS(7603), + [anon_sym_PIPE_PIPE] = ACTIONS(7605), + [anon_sym_AMP_AMP] = ACTIONS(7605), + [anon_sym_PIPE] = ACTIONS(7603), + [anon_sym_CARET] = ACTIONS(7603), + [anon_sym_AMP] = ACTIONS(7603), + [anon_sym_EQ_EQ] = ACTIONS(7605), + [anon_sym_BANG_EQ] = ACTIONS(7605), + [anon_sym_GT] = ACTIONS(7603), + [anon_sym_GT_EQ] = ACTIONS(7603), + [anon_sym_LT_EQ] = ACTIONS(7603), + [anon_sym_LT] = ACTIONS(7603), + [anon_sym_LT_LT] = ACTIONS(7603), + [anon_sym_GT_GT] = ACTIONS(7603), + [anon_sym___extension__] = ACTIONS(7605), + [anon_sym_LBRACE] = ACTIONS(7605), + [anon_sym_LBRACK] = ACTIONS(7605), + [anon_sym_EQ] = ACTIONS(7603), + [anon_sym_const] = ACTIONS(7603), + [anon_sym_constexpr] = ACTIONS(7605), + [anon_sym_volatile] = ACTIONS(7605), + [anon_sym_restrict] = ACTIONS(7605), + [anon_sym___restrict__] = ACTIONS(7605), + [anon_sym__Atomic] = ACTIONS(7605), + [anon_sym__Noreturn] = ACTIONS(7605), + [anon_sym_noreturn] = ACTIONS(7605), + [anon_sym__Nonnull] = ACTIONS(7605), + [anon_sym_mutable] = ACTIONS(7605), + [anon_sym_constinit] = ACTIONS(7605), + [anon_sym_consteval] = ACTIONS(7605), + [anon_sym_alignas] = ACTIONS(7605), + [anon_sym__Alignas] = ACTIONS(7605), + [anon_sym_QMARK] = ACTIONS(7605), + [anon_sym_STAR_EQ] = ACTIONS(7605), + [anon_sym_SLASH_EQ] = ACTIONS(7605), + [anon_sym_PERCENT_EQ] = ACTIONS(7605), + [anon_sym_PLUS_EQ] = ACTIONS(7605), + [anon_sym_DASH_EQ] = ACTIONS(7605), + [anon_sym_LT_LT_EQ] = ACTIONS(7605), + [anon_sym_GT_GT_EQ] = ACTIONS(7603), + [anon_sym_AMP_EQ] = ACTIONS(7605), + [anon_sym_CARET_EQ] = ACTIONS(7605), + [anon_sym_PIPE_EQ] = ACTIONS(7605), + [anon_sym_and_eq] = ACTIONS(7605), + [anon_sym_or_eq] = ACTIONS(7605), + [anon_sym_xor_eq] = ACTIONS(7605), + [anon_sym_LT_EQ_GT] = ACTIONS(7605), + [anon_sym_or] = ACTIONS(7603), + [anon_sym_and] = ACTIONS(7603), + [anon_sym_bitor] = ACTIONS(7605), + [anon_sym_xor] = ACTIONS(7603), + [anon_sym_bitand] = ACTIONS(7605), + [anon_sym_not_eq] = ACTIONS(7605), + [anon_sym_DASH_DASH] = ACTIONS(7605), + [anon_sym_PLUS_PLUS] = ACTIONS(7605), + [anon_sym_DOT] = ACTIONS(7603), + [anon_sym_DOT_STAR] = ACTIONS(7605), + [anon_sym_DASH_GT] = ACTIONS(7605), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7605), + [anon_sym_override] = ACTIONS(7605), + [anon_sym_GT2] = ACTIONS(7605), + [anon_sym_requires] = ACTIONS(7605), + }, + [STATE(3243)] = { + [sym_identifier] = ACTIONS(7607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7609), + [anon_sym_COMMA] = ACTIONS(7609), + [anon_sym_RPAREN] = ACTIONS(7609), + [anon_sym_LPAREN2] = ACTIONS(7609), + [anon_sym_DASH] = ACTIONS(7607), + [anon_sym_PLUS] = ACTIONS(7607), + [anon_sym_STAR] = ACTIONS(7609), + [anon_sym_SLASH] = ACTIONS(7607), + [anon_sym_PERCENT] = ACTIONS(7609), + [anon_sym_PIPE_PIPE] = ACTIONS(7609), + [anon_sym_AMP_AMP] = ACTIONS(7609), + [anon_sym_PIPE] = ACTIONS(7607), + [anon_sym_CARET] = ACTIONS(7609), + [anon_sym_AMP] = ACTIONS(7607), + [anon_sym_EQ_EQ] = ACTIONS(7609), + [anon_sym_BANG_EQ] = ACTIONS(7609), + [anon_sym_GT] = ACTIONS(7607), + [anon_sym_GT_EQ] = ACTIONS(7609), + [anon_sym_LT_EQ] = ACTIONS(7607), + [anon_sym_LT] = ACTIONS(7607), + [anon_sym_LT_LT] = ACTIONS(7609), + [anon_sym_GT_GT] = ACTIONS(7609), + [anon_sym_SEMI] = ACTIONS(7609), + [anon_sym___extension__] = ACTIONS(7607), + [anon_sym___attribute__] = ACTIONS(7607), + [anon_sym___attribute] = ACTIONS(7607), + [anon_sym_COLON] = ACTIONS(7607), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7609), + [anon_sym___based] = ACTIONS(7607), + [anon_sym_LBRACE] = ACTIONS(7609), + [anon_sym_RBRACE] = ACTIONS(7609), + [anon_sym_signed] = ACTIONS(7607), + [anon_sym_unsigned] = ACTIONS(7607), + [anon_sym_long] = ACTIONS(7607), + [anon_sym_short] = ACTIONS(7607), + [anon_sym_LBRACK] = ACTIONS(7609), + [anon_sym_const] = ACTIONS(7607), + [anon_sym_constexpr] = ACTIONS(7607), + [anon_sym_volatile] = ACTIONS(7607), + [anon_sym_restrict] = ACTIONS(7607), + [anon_sym___restrict__] = ACTIONS(7607), + [anon_sym__Atomic] = ACTIONS(7607), + [anon_sym__Noreturn] = ACTIONS(7607), + [anon_sym_noreturn] = ACTIONS(7607), + [anon_sym__Nonnull] = ACTIONS(7607), + [anon_sym_mutable] = ACTIONS(7607), + [anon_sym_constinit] = ACTIONS(7607), + [anon_sym_consteval] = ACTIONS(7607), + [anon_sym_alignas] = ACTIONS(7607), + [anon_sym__Alignas] = ACTIONS(7607), + [sym_primitive_type] = ACTIONS(7607), + [anon_sym_QMARK] = ACTIONS(7609), + [anon_sym_LT_EQ_GT] = ACTIONS(7609), + [anon_sym_or] = ACTIONS(7607), + [anon_sym_and] = ACTIONS(7607), + [anon_sym_bitor] = ACTIONS(7607), + [anon_sym_xor] = ACTIONS(7607), + [anon_sym_bitand] = ACTIONS(7607), + [anon_sym_not_eq] = ACTIONS(7607), + [anon_sym_DASH_DASH] = ACTIONS(7609), + [anon_sym_PLUS_PLUS] = ACTIONS(7609), + [anon_sym_DOT] = ACTIONS(7607), + [anon_sym_DOT_STAR] = ACTIONS(7609), + [anon_sym_DASH_GT] = ACTIONS(7609), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7607), + [anon_sym_override] = ACTIONS(7607), + [anon_sym_requires] = ACTIONS(7607), + [anon_sym_COLON_RBRACK] = ACTIONS(7609), + }, + [STATE(3244)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7765), + [anon_sym_COMMA] = ACTIONS(7765), + [anon_sym_LPAREN2] = ACTIONS(7765), + [anon_sym_DASH] = ACTIONS(7763), + [anon_sym_PLUS] = ACTIONS(7763), + [anon_sym_STAR] = ACTIONS(7763), + [anon_sym_SLASH] = ACTIONS(7763), + [anon_sym_PERCENT] = ACTIONS(7763), + [anon_sym_PIPE_PIPE] = ACTIONS(7765), + [anon_sym_AMP_AMP] = ACTIONS(7765), + [anon_sym_PIPE] = ACTIONS(7763), + [anon_sym_CARET] = ACTIONS(7763), + [anon_sym_AMP] = ACTIONS(7763), + [anon_sym_EQ_EQ] = ACTIONS(7765), + [anon_sym_BANG_EQ] = ACTIONS(7765), + [anon_sym_GT] = ACTIONS(7763), + [anon_sym_GT_EQ] = ACTIONS(7765), + [anon_sym_LT_EQ] = ACTIONS(7763), + [anon_sym_LT] = ACTIONS(7763), + [anon_sym_LT_LT] = ACTIONS(7763), + [anon_sym_GT_GT] = ACTIONS(7763), + [anon_sym___extension__] = ACTIONS(7765), + [anon_sym_LBRACE] = ACTIONS(7765), + [anon_sym_LBRACK] = ACTIONS(7765), + [anon_sym_RBRACK] = ACTIONS(7765), + [anon_sym_EQ] = ACTIONS(7763), + [anon_sym_const] = ACTIONS(7763), + [anon_sym_constexpr] = ACTIONS(7765), + [anon_sym_volatile] = ACTIONS(7765), + [anon_sym_restrict] = ACTIONS(7765), + [anon_sym___restrict__] = ACTIONS(7765), + [anon_sym__Atomic] = ACTIONS(7765), + [anon_sym__Noreturn] = ACTIONS(7765), + [anon_sym_noreturn] = ACTIONS(7765), + [anon_sym__Nonnull] = ACTIONS(7765), + [anon_sym_mutable] = ACTIONS(7765), + [anon_sym_constinit] = ACTIONS(7765), + [anon_sym_consteval] = ACTIONS(7765), + [anon_sym_alignas] = ACTIONS(7765), + [anon_sym__Alignas] = ACTIONS(7765), + [anon_sym_QMARK] = ACTIONS(7765), + [anon_sym_STAR_EQ] = ACTIONS(7765), + [anon_sym_SLASH_EQ] = ACTIONS(7765), + [anon_sym_PERCENT_EQ] = ACTIONS(7765), + [anon_sym_PLUS_EQ] = ACTIONS(7765), + [anon_sym_DASH_EQ] = ACTIONS(7765), + [anon_sym_LT_LT_EQ] = ACTIONS(7765), + [anon_sym_GT_GT_EQ] = ACTIONS(7765), + [anon_sym_AMP_EQ] = ACTIONS(7765), + [anon_sym_CARET_EQ] = ACTIONS(7765), + [anon_sym_PIPE_EQ] = ACTIONS(7765), + [anon_sym_and_eq] = ACTIONS(7765), + [anon_sym_or_eq] = ACTIONS(7765), + [anon_sym_xor_eq] = ACTIONS(7765), + [anon_sym_LT_EQ_GT] = ACTIONS(7765), + [anon_sym_or] = ACTIONS(7763), + [anon_sym_and] = ACTIONS(7763), + [anon_sym_bitor] = ACTIONS(7765), + [anon_sym_xor] = ACTIONS(7763), + [anon_sym_bitand] = ACTIONS(7765), + [anon_sym_not_eq] = ACTIONS(7765), + [anon_sym_DASH_DASH] = ACTIONS(7765), + [anon_sym_PLUS_PLUS] = ACTIONS(7765), + [anon_sym_DOT] = ACTIONS(7763), + [anon_sym_DOT_STAR] = ACTIONS(7765), + [anon_sym_DASH_GT] = ACTIONS(7765), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7765), + [anon_sym_override] = ACTIONS(7765), + [anon_sym_requires] = ACTIONS(7765), + }, + [STATE(3245)] = { + [sym_identifier] = ACTIONS(7639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7641), + [anon_sym_COMMA] = ACTIONS(7641), + [anon_sym_RPAREN] = ACTIONS(7641), + [anon_sym_LPAREN2] = ACTIONS(7641), + [anon_sym_DASH] = ACTIONS(7639), + [anon_sym_PLUS] = ACTIONS(7639), + [anon_sym_STAR] = ACTIONS(7641), + [anon_sym_SLASH] = ACTIONS(7639), + [anon_sym_PERCENT] = ACTIONS(7641), + [anon_sym_PIPE_PIPE] = ACTIONS(7641), + [anon_sym_AMP_AMP] = ACTIONS(7641), + [anon_sym_PIPE] = ACTIONS(7639), + [anon_sym_CARET] = ACTIONS(7641), + [anon_sym_AMP] = ACTIONS(7639), + [anon_sym_EQ_EQ] = ACTIONS(7641), + [anon_sym_BANG_EQ] = ACTIONS(7641), + [anon_sym_GT] = ACTIONS(7639), + [anon_sym_GT_EQ] = ACTIONS(7641), + [anon_sym_LT_EQ] = ACTIONS(7639), + [anon_sym_LT] = ACTIONS(7639), + [anon_sym_LT_LT] = ACTIONS(7641), + [anon_sym_GT_GT] = ACTIONS(7641), + [anon_sym_SEMI] = ACTIONS(7641), + [anon_sym___extension__] = ACTIONS(7639), + [anon_sym___attribute__] = ACTIONS(7639), + [anon_sym___attribute] = ACTIONS(7639), + [anon_sym_COLON] = ACTIONS(7639), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7641), + [anon_sym___based] = ACTIONS(7639), + [anon_sym_LBRACE] = ACTIONS(7641), + [anon_sym_RBRACE] = ACTIONS(7641), + [anon_sym_signed] = ACTIONS(7639), + [anon_sym_unsigned] = ACTIONS(7639), + [anon_sym_long] = ACTIONS(7639), + [anon_sym_short] = ACTIONS(7639), + [anon_sym_LBRACK] = ACTIONS(7641), + [anon_sym_const] = ACTIONS(7639), + [anon_sym_constexpr] = ACTIONS(7639), + [anon_sym_volatile] = ACTIONS(7639), + [anon_sym_restrict] = ACTIONS(7639), + [anon_sym___restrict__] = ACTIONS(7639), + [anon_sym__Atomic] = ACTIONS(7639), + [anon_sym__Noreturn] = ACTIONS(7639), + [anon_sym_noreturn] = ACTIONS(7639), + [anon_sym__Nonnull] = ACTIONS(7639), + [anon_sym_mutable] = ACTIONS(7639), + [anon_sym_constinit] = ACTIONS(7639), + [anon_sym_consteval] = ACTIONS(7639), + [anon_sym_alignas] = ACTIONS(7639), + [anon_sym__Alignas] = ACTIONS(7639), + [sym_primitive_type] = ACTIONS(7639), + [anon_sym_QMARK] = ACTIONS(7641), + [anon_sym_LT_EQ_GT] = ACTIONS(7641), + [anon_sym_or] = ACTIONS(7639), + [anon_sym_and] = ACTIONS(7639), + [anon_sym_bitor] = ACTIONS(7639), + [anon_sym_xor] = ACTIONS(7639), + [anon_sym_bitand] = ACTIONS(7639), + [anon_sym_not_eq] = ACTIONS(7639), + [anon_sym_DASH_DASH] = ACTIONS(7641), + [anon_sym_PLUS_PLUS] = ACTIONS(7641), + [anon_sym_DOT] = ACTIONS(7639), + [anon_sym_DOT_STAR] = ACTIONS(7641), + [anon_sym_DASH_GT] = ACTIONS(7641), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7639), + [anon_sym_override] = ACTIONS(7639), + [anon_sym_requires] = ACTIONS(7639), + [anon_sym_COLON_RBRACK] = ACTIONS(7641), + }, + [STATE(3246)] = { + [sym_identifier] = ACTIONS(7655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7657), + [anon_sym_COMMA] = ACTIONS(7657), + [anon_sym_RPAREN] = ACTIONS(7657), + [anon_sym_LPAREN2] = ACTIONS(7657), + [anon_sym_DASH] = ACTIONS(7655), + [anon_sym_PLUS] = ACTIONS(7655), + [anon_sym_STAR] = ACTIONS(7657), + [anon_sym_SLASH] = ACTIONS(7655), + [anon_sym_PERCENT] = ACTIONS(7657), + [anon_sym_PIPE_PIPE] = ACTIONS(7657), + [anon_sym_AMP_AMP] = ACTIONS(7657), + [anon_sym_PIPE] = ACTIONS(7655), + [anon_sym_CARET] = ACTIONS(7657), + [anon_sym_AMP] = ACTIONS(7655), + [anon_sym_EQ_EQ] = ACTIONS(7657), + [anon_sym_BANG_EQ] = ACTIONS(7657), + [anon_sym_GT] = ACTIONS(7655), + [anon_sym_GT_EQ] = ACTIONS(7657), + [anon_sym_LT_EQ] = ACTIONS(7655), + [anon_sym_LT] = ACTIONS(7655), + [anon_sym_LT_LT] = ACTIONS(7657), + [anon_sym_GT_GT] = ACTIONS(7657), + [anon_sym_SEMI] = ACTIONS(7657), + [anon_sym___extension__] = ACTIONS(7655), + [anon_sym___attribute__] = ACTIONS(7655), + [anon_sym___attribute] = ACTIONS(7655), + [anon_sym_COLON] = ACTIONS(7655), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7657), + [anon_sym___based] = ACTIONS(7655), + [anon_sym_LBRACE] = ACTIONS(7657), + [anon_sym_RBRACE] = ACTIONS(7657), + [anon_sym_signed] = ACTIONS(7655), + [anon_sym_unsigned] = ACTIONS(7655), + [anon_sym_long] = ACTIONS(7655), + [anon_sym_short] = ACTIONS(7655), + [anon_sym_LBRACK] = ACTIONS(7657), + [anon_sym_const] = ACTIONS(7655), + [anon_sym_constexpr] = ACTIONS(7655), + [anon_sym_volatile] = ACTIONS(7655), + [anon_sym_restrict] = ACTIONS(7655), + [anon_sym___restrict__] = ACTIONS(7655), + [anon_sym__Atomic] = ACTIONS(7655), + [anon_sym__Noreturn] = ACTIONS(7655), + [anon_sym_noreturn] = ACTIONS(7655), + [anon_sym__Nonnull] = ACTIONS(7655), + [anon_sym_mutable] = ACTIONS(7655), + [anon_sym_constinit] = ACTIONS(7655), + [anon_sym_consteval] = ACTIONS(7655), + [anon_sym_alignas] = ACTIONS(7655), + [anon_sym__Alignas] = ACTIONS(7655), + [sym_primitive_type] = ACTIONS(7655), + [anon_sym_QMARK] = ACTIONS(7657), + [anon_sym_LT_EQ_GT] = ACTIONS(7657), + [anon_sym_or] = ACTIONS(7655), + [anon_sym_and] = ACTIONS(7655), + [anon_sym_bitor] = ACTIONS(7655), + [anon_sym_xor] = ACTIONS(7655), + [anon_sym_bitand] = ACTIONS(7655), + [anon_sym_not_eq] = ACTIONS(7655), + [anon_sym_DASH_DASH] = ACTIONS(7657), + [anon_sym_PLUS_PLUS] = ACTIONS(7657), + [anon_sym_DOT] = ACTIONS(7655), + [anon_sym_DOT_STAR] = ACTIONS(7657), + [anon_sym_DASH_GT] = ACTIONS(7657), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7655), + [anon_sym_override] = ACTIONS(7655), + [anon_sym_requires] = ACTIONS(7655), + [anon_sym_COLON_RBRACK] = ACTIONS(7657), + }, + [STATE(3247)] = { + [sym_identifier] = ACTIONS(7565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7567), + [anon_sym_COMMA] = ACTIONS(7567), + [anon_sym_RPAREN] = ACTIONS(7567), + [anon_sym_LPAREN2] = ACTIONS(7567), + [anon_sym_DASH] = ACTIONS(7565), + [anon_sym_PLUS] = ACTIONS(7565), + [anon_sym_STAR] = ACTIONS(7567), + [anon_sym_SLASH] = ACTIONS(7565), + [anon_sym_PERCENT] = ACTIONS(7567), + [anon_sym_PIPE_PIPE] = ACTIONS(7567), + [anon_sym_AMP_AMP] = ACTIONS(7567), + [anon_sym_PIPE] = ACTIONS(7565), + [anon_sym_CARET] = ACTIONS(7567), + [anon_sym_AMP] = ACTIONS(7565), + [anon_sym_EQ_EQ] = ACTIONS(7567), + [anon_sym_BANG_EQ] = ACTIONS(7567), + [anon_sym_GT] = ACTIONS(7565), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_LT_EQ] = ACTIONS(7565), + [anon_sym_LT] = ACTIONS(7565), + [anon_sym_LT_LT] = ACTIONS(7567), + [anon_sym_GT_GT] = ACTIONS(7567), + [anon_sym_SEMI] = ACTIONS(7567), + [anon_sym___extension__] = ACTIONS(7565), + [anon_sym___attribute__] = ACTIONS(7565), + [anon_sym___attribute] = ACTIONS(7565), + [anon_sym_COLON] = ACTIONS(7565), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7567), + [anon_sym___based] = ACTIONS(7565), + [anon_sym_LBRACE] = ACTIONS(7567), + [anon_sym_RBRACE] = ACTIONS(7567), + [anon_sym_signed] = ACTIONS(7565), + [anon_sym_unsigned] = ACTIONS(7565), + [anon_sym_long] = ACTIONS(7565), + [anon_sym_short] = ACTIONS(7565), + [anon_sym_LBRACK] = ACTIONS(7567), + [anon_sym_const] = ACTIONS(7565), + [anon_sym_constexpr] = ACTIONS(7565), + [anon_sym_volatile] = ACTIONS(7565), + [anon_sym_restrict] = ACTIONS(7565), + [anon_sym___restrict__] = ACTIONS(7565), + [anon_sym__Atomic] = ACTIONS(7565), + [anon_sym__Noreturn] = ACTIONS(7565), + [anon_sym_noreturn] = ACTIONS(7565), + [anon_sym__Nonnull] = ACTIONS(7565), + [anon_sym_mutable] = ACTIONS(7565), + [anon_sym_constinit] = ACTIONS(7565), + [anon_sym_consteval] = ACTIONS(7565), + [anon_sym_alignas] = ACTIONS(7565), + [anon_sym__Alignas] = ACTIONS(7565), + [sym_primitive_type] = ACTIONS(7565), + [anon_sym_QMARK] = ACTIONS(7567), + [anon_sym_LT_EQ_GT] = ACTIONS(7567), + [anon_sym_or] = ACTIONS(7565), + [anon_sym_and] = ACTIONS(7565), + [anon_sym_bitor] = ACTIONS(7565), + [anon_sym_xor] = ACTIONS(7565), + [anon_sym_bitand] = ACTIONS(7565), + [anon_sym_not_eq] = ACTIONS(7565), + [anon_sym_DASH_DASH] = ACTIONS(7567), + [anon_sym_PLUS_PLUS] = ACTIONS(7567), + [anon_sym_DOT] = ACTIONS(7565), + [anon_sym_DOT_STAR] = ACTIONS(7567), + [anon_sym_DASH_GT] = ACTIONS(7567), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7565), + [anon_sym_override] = ACTIONS(7565), + [anon_sym_requires] = ACTIONS(7565), + [anon_sym_COLON_RBRACK] = ACTIONS(7567), + }, + [STATE(3248)] = { + [sym_identifier] = ACTIONS(3935), + [aux_sym_preproc_def_token1] = ACTIONS(3935), + [aux_sym_preproc_if_token1] = ACTIONS(3935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3935), + [sym_preproc_directive] = ACTIONS(3935), + [anon_sym_LPAREN2] = ACTIONS(3937), + [anon_sym_TILDE] = ACTIONS(3937), + [anon_sym_STAR] = ACTIONS(3937), + [anon_sym_AMP_AMP] = ACTIONS(3937), + [anon_sym_AMP] = ACTIONS(3935), + [anon_sym_SEMI] = ACTIONS(3937), + [anon_sym___extension__] = ACTIONS(3935), + [anon_sym_typedef] = ACTIONS(3935), + [anon_sym_virtual] = ACTIONS(3935), + [anon_sym_extern] = ACTIONS(3935), + [anon_sym___attribute__] = ACTIONS(3935), + [anon_sym___attribute] = ACTIONS(3935), + [anon_sym_using] = ACTIONS(3935), + [anon_sym_COLON_COLON] = ACTIONS(3937), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3937), + [anon_sym___declspec] = ACTIONS(3935), + [anon_sym___based] = ACTIONS(3935), + [anon_sym_RBRACE] = ACTIONS(3937), + [anon_sym_signed] = ACTIONS(3935), + [anon_sym_unsigned] = ACTIONS(3935), + [anon_sym_long] = ACTIONS(3935), + [anon_sym_short] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3935), + [anon_sym_static] = ACTIONS(3935), + [anon_sym_register] = ACTIONS(3935), + [anon_sym_inline] = ACTIONS(3935), + [anon_sym___inline] = ACTIONS(3935), + [anon_sym___inline__] = ACTIONS(3935), + [anon_sym___forceinline] = ACTIONS(3935), + [anon_sym_thread_local] = ACTIONS(3935), + [anon_sym___thread] = 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__Nonnull] = ACTIONS(3935), + [anon_sym_mutable] = ACTIONS(3935), + [anon_sym_constinit] = ACTIONS(3935), + [anon_sym_consteval] = ACTIONS(3935), + [anon_sym_alignas] = ACTIONS(3935), + [anon_sym__Alignas] = ACTIONS(3935), + [sym_primitive_type] = ACTIONS(3935), + [anon_sym_enum] = ACTIONS(3935), + [anon_sym_class] = ACTIONS(3935), + [anon_sym_struct] = ACTIONS(3935), + [anon_sym_union] = ACTIONS(3935), + [anon_sym_typename] = ACTIONS(3935), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3935), + [anon_sym_decltype] = ACTIONS(3935), + [anon_sym_explicit] = ACTIONS(3935), + [anon_sym_private] = ACTIONS(3935), + [anon_sym_template] = ACTIONS(3935), + [anon_sym_operator] = ACTIONS(3935), + [anon_sym_friend] = ACTIONS(3935), + [anon_sym_public] = ACTIONS(3935), + [anon_sym_protected] = ACTIONS(3935), + [anon_sym_static_assert] = ACTIONS(3935), + [anon_sym_LBRACK_COLON] = ACTIONS(3937), + }, + [STATE(3249)] = { + [sym_identifier] = ACTIONS(4112), + [aux_sym_preproc_def_token1] = ACTIONS(4112), + [aux_sym_preproc_if_token1] = ACTIONS(4112), + [aux_sym_preproc_if_token2] = ACTIONS(4112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4112), + [sym_preproc_directive] = ACTIONS(4112), + [anon_sym_LPAREN2] = ACTIONS(4114), + [anon_sym_TILDE] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [anon_sym_AMP_AMP] = ACTIONS(4114), + [anon_sym_AMP] = ACTIONS(4112), + [anon_sym_SEMI] = ACTIONS(4114), + [anon_sym___extension__] = ACTIONS(4112), + [anon_sym_typedef] = ACTIONS(4112), + [anon_sym_virtual] = ACTIONS(4112), + [anon_sym_extern] = ACTIONS(4112), + [anon_sym___attribute__] = ACTIONS(4112), + [anon_sym___attribute] = ACTIONS(4112), + [anon_sym_using] = ACTIONS(4112), + [anon_sym_COLON_COLON] = ACTIONS(4114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4114), + [anon_sym___declspec] = ACTIONS(4112), + [anon_sym___based] = ACTIONS(4112), + [anon_sym_signed] = ACTIONS(4112), + [anon_sym_unsigned] = ACTIONS(4112), + [anon_sym_long] = ACTIONS(4112), + [anon_sym_short] = ACTIONS(4112), + [anon_sym_LBRACK] = ACTIONS(4112), + [anon_sym_static] = ACTIONS(4112), + [anon_sym_register] = ACTIONS(4112), + [anon_sym_inline] = ACTIONS(4112), + [anon_sym___inline] = ACTIONS(4112), + [anon_sym___inline__] = ACTIONS(4112), + [anon_sym___forceinline] = ACTIONS(4112), + [anon_sym_thread_local] = ACTIONS(4112), + [anon_sym___thread] = ACTIONS(4112), + [anon_sym_const] = ACTIONS(4112), + [anon_sym_constexpr] = ACTIONS(4112), + [anon_sym_volatile] = ACTIONS(4112), + [anon_sym_restrict] = ACTIONS(4112), + [anon_sym___restrict__] = ACTIONS(4112), + [anon_sym__Atomic] = ACTIONS(4112), + [anon_sym__Noreturn] = ACTIONS(4112), + [anon_sym_noreturn] = ACTIONS(4112), + [anon_sym__Nonnull] = ACTIONS(4112), + [anon_sym_mutable] = ACTIONS(4112), + [anon_sym_constinit] = ACTIONS(4112), + [anon_sym_consteval] = ACTIONS(4112), + [anon_sym_alignas] = ACTIONS(4112), + [anon_sym__Alignas] = ACTIONS(4112), + [sym_primitive_type] = ACTIONS(4112), + [anon_sym_enum] = ACTIONS(4112), + [anon_sym_class] = ACTIONS(4112), + [anon_sym_struct] = ACTIONS(4112), + [anon_sym_union] = ACTIONS(4112), + [anon_sym_typename] = ACTIONS(4112), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4112), + [anon_sym_decltype] = ACTIONS(4112), + [anon_sym_explicit] = ACTIONS(4112), + [anon_sym_private] = ACTIONS(4112), + [anon_sym_template] = ACTIONS(4112), + [anon_sym_operator] = ACTIONS(4112), + [anon_sym_friend] = ACTIONS(4112), + [anon_sym_public] = ACTIONS(4112), + [anon_sym_protected] = ACTIONS(4112), + [anon_sym_static_assert] = ACTIONS(4112), + [anon_sym_LBRACK_COLON] = ACTIONS(4114), + }, + [STATE(3250)] = { + [sym_identifier] = ACTIONS(4104), + [aux_sym_preproc_def_token1] = ACTIONS(4104), + [aux_sym_preproc_if_token1] = ACTIONS(4104), + [aux_sym_preproc_if_token2] = ACTIONS(4104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4104), + [sym_preproc_directive] = ACTIONS(4104), + [anon_sym_LPAREN2] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4106), + [anon_sym_AMP_AMP] = ACTIONS(4106), + [anon_sym_AMP] = ACTIONS(4104), + [anon_sym_SEMI] = ACTIONS(4106), + [anon_sym___extension__] = ACTIONS(4104), + [anon_sym_typedef] = ACTIONS(4104), + [anon_sym_virtual] = ACTIONS(4104), + [anon_sym_extern] = ACTIONS(4104), + [anon_sym___attribute__] = ACTIONS(4104), + [anon_sym___attribute] = ACTIONS(4104), + [anon_sym_using] = ACTIONS(4104), + [anon_sym_COLON_COLON] = ACTIONS(4106), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4106), + [anon_sym___declspec] = ACTIONS(4104), + [anon_sym___based] = ACTIONS(4104), + [anon_sym_signed] = ACTIONS(4104), + [anon_sym_unsigned] = ACTIONS(4104), + [anon_sym_long] = ACTIONS(4104), + [anon_sym_short] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_static] = ACTIONS(4104), + [anon_sym_register] = ACTIONS(4104), + [anon_sym_inline] = ACTIONS(4104), + [anon_sym___inline] = ACTIONS(4104), + [anon_sym___inline__] = ACTIONS(4104), + [anon_sym___forceinline] = ACTIONS(4104), + [anon_sym_thread_local] = ACTIONS(4104), + [anon_sym___thread] = ACTIONS(4104), + [anon_sym_const] = ACTIONS(4104), + [anon_sym_constexpr] = ACTIONS(4104), + [anon_sym_volatile] = ACTIONS(4104), + [anon_sym_restrict] = ACTIONS(4104), + [anon_sym___restrict__] = ACTIONS(4104), + [anon_sym__Atomic] = ACTIONS(4104), + [anon_sym__Noreturn] = ACTIONS(4104), + [anon_sym_noreturn] = ACTIONS(4104), + [anon_sym__Nonnull] = ACTIONS(4104), + [anon_sym_mutable] = ACTIONS(4104), + [anon_sym_constinit] = ACTIONS(4104), + [anon_sym_consteval] = ACTIONS(4104), + [anon_sym_alignas] = ACTIONS(4104), + [anon_sym__Alignas] = ACTIONS(4104), + [sym_primitive_type] = ACTIONS(4104), + [anon_sym_enum] = ACTIONS(4104), + [anon_sym_class] = ACTIONS(4104), + [anon_sym_struct] = ACTIONS(4104), + [anon_sym_union] = ACTIONS(4104), + [anon_sym_typename] = ACTIONS(4104), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4104), + [anon_sym_decltype] = ACTIONS(4104), + [anon_sym_explicit] = ACTIONS(4104), + [anon_sym_private] = ACTIONS(4104), + [anon_sym_template] = ACTIONS(4104), + [anon_sym_operator] = ACTIONS(4104), + [anon_sym_friend] = ACTIONS(4104), + [anon_sym_public] = ACTIONS(4104), + [anon_sym_protected] = ACTIONS(4104), + [anon_sym_static_assert] = ACTIONS(4104), + [anon_sym_LBRACK_COLON] = ACTIONS(4106), + }, + [STATE(3251)] = { + [sym_identifier] = ACTIONS(3921), + [aux_sym_preproc_def_token1] = ACTIONS(3921), + [aux_sym_preproc_if_token1] = ACTIONS(3921), + [aux_sym_preproc_if_token2] = ACTIONS(3921), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3921), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3921), + [sym_preproc_directive] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3923), + [anon_sym_TILDE] = ACTIONS(3923), + [anon_sym_STAR] = ACTIONS(3923), + [anon_sym_AMP_AMP] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym___extension__] = ACTIONS(3921), + [anon_sym_typedef] = ACTIONS(3921), + [anon_sym_virtual] = ACTIONS(3921), + [anon_sym_extern] = ACTIONS(3921), + [anon_sym___attribute__] = ACTIONS(3921), + [anon_sym___attribute] = ACTIONS(3921), + [anon_sym_using] = ACTIONS(3921), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3923), + [anon_sym___declspec] = ACTIONS(3921), + [anon_sym___based] = ACTIONS(3921), + [anon_sym_signed] = ACTIONS(3921), + [anon_sym_unsigned] = ACTIONS(3921), + [anon_sym_long] = ACTIONS(3921), + [anon_sym_short] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_static] = ACTIONS(3921), + [anon_sym_register] = ACTIONS(3921), + [anon_sym_inline] = ACTIONS(3921), + [anon_sym___inline] = ACTIONS(3921), + [anon_sym___inline__] = ACTIONS(3921), + [anon_sym___forceinline] = ACTIONS(3921), + [anon_sym_thread_local] = ACTIONS(3921), + [anon_sym___thread] = ACTIONS(3921), + [anon_sym_const] = ACTIONS(3921), + [anon_sym_constexpr] = ACTIONS(3921), + [anon_sym_volatile] = ACTIONS(3921), + [anon_sym_restrict] = ACTIONS(3921), + [anon_sym___restrict__] = ACTIONS(3921), + [anon_sym__Atomic] = ACTIONS(3921), + [anon_sym__Noreturn] = ACTIONS(3921), + [anon_sym_noreturn] = ACTIONS(3921), + [anon_sym__Nonnull] = ACTIONS(3921), + [anon_sym_mutable] = ACTIONS(3921), + [anon_sym_constinit] = ACTIONS(3921), + [anon_sym_consteval] = ACTIONS(3921), + [anon_sym_alignas] = ACTIONS(3921), + [anon_sym__Alignas] = ACTIONS(3921), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_enum] = ACTIONS(3921), + [anon_sym_class] = ACTIONS(3921), + [anon_sym_struct] = ACTIONS(3921), + [anon_sym_union] = ACTIONS(3921), + [anon_sym_typename] = ACTIONS(3921), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3921), + [anon_sym_decltype] = ACTIONS(3921), + [anon_sym_explicit] = ACTIONS(3921), + [anon_sym_private] = ACTIONS(3921), + [anon_sym_template] = ACTIONS(3921), + [anon_sym_operator] = ACTIONS(3921), + [anon_sym_friend] = ACTIONS(3921), + [anon_sym_public] = ACTIONS(3921), + [anon_sym_protected] = ACTIONS(3921), + [anon_sym_static_assert] = ACTIONS(3921), + [anon_sym_LBRACK_COLON] = ACTIONS(3923), + }, + [STATE(3252)] = { + [sym_identifier] = ACTIONS(3935), + [aux_sym_preproc_def_token1] = ACTIONS(3935), + [aux_sym_preproc_if_token1] = ACTIONS(3935), + [aux_sym_preproc_if_token2] = ACTIONS(3935), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3935), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3935), + [sym_preproc_directive] = ACTIONS(3935), + [anon_sym_LPAREN2] = ACTIONS(3937), + [anon_sym_TILDE] = ACTIONS(3937), + [anon_sym_STAR] = ACTIONS(3937), + [anon_sym_AMP_AMP] = ACTIONS(3937), + [anon_sym_AMP] = ACTIONS(3935), + [anon_sym_SEMI] = ACTIONS(3937), + [anon_sym___extension__] = ACTIONS(3935), + [anon_sym_typedef] = ACTIONS(3935), + [anon_sym_virtual] = ACTIONS(3935), + [anon_sym_extern] = ACTIONS(3935), + [anon_sym___attribute__] = ACTIONS(3935), + [anon_sym___attribute] = ACTIONS(3935), + [anon_sym_using] = ACTIONS(3935), + [anon_sym_COLON_COLON] = ACTIONS(3937), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3937), + [anon_sym___declspec] = ACTIONS(3935), + [anon_sym___based] = ACTIONS(3935), + [anon_sym_signed] = ACTIONS(3935), + [anon_sym_unsigned] = ACTIONS(3935), + [anon_sym_long] = ACTIONS(3935), + [anon_sym_short] = ACTIONS(3935), + [anon_sym_LBRACK] = ACTIONS(3935), + [anon_sym_static] = ACTIONS(3935), + [anon_sym_register] = ACTIONS(3935), + [anon_sym_inline] = ACTIONS(3935), + [anon_sym___inline] = ACTIONS(3935), + [anon_sym___inline__] = ACTIONS(3935), + [anon_sym___forceinline] = ACTIONS(3935), + [anon_sym_thread_local] = ACTIONS(3935), + [anon_sym___thread] = 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__Nonnull] = ACTIONS(3935), + [anon_sym_mutable] = ACTIONS(3935), + [anon_sym_constinit] = ACTIONS(3935), + [anon_sym_consteval] = ACTIONS(3935), + [anon_sym_alignas] = ACTIONS(3935), + [anon_sym__Alignas] = ACTIONS(3935), + [sym_primitive_type] = ACTIONS(3935), + [anon_sym_enum] = ACTIONS(3935), + [anon_sym_class] = ACTIONS(3935), + [anon_sym_struct] = ACTIONS(3935), + [anon_sym_union] = ACTIONS(3935), + [anon_sym_typename] = ACTIONS(3935), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3935), + [anon_sym_decltype] = ACTIONS(3935), + [anon_sym_explicit] = ACTIONS(3935), + [anon_sym_private] = ACTIONS(3935), + [anon_sym_template] = ACTIONS(3935), + [anon_sym_operator] = ACTIONS(3935), + [anon_sym_friend] = ACTIONS(3935), + [anon_sym_public] = ACTIONS(3935), + [anon_sym_protected] = ACTIONS(3935), + [anon_sym_static_assert] = ACTIONS(3935), + [anon_sym_LBRACK_COLON] = ACTIONS(3937), + }, + [STATE(3253)] = { + [sym_identifier] = ACTIONS(4152), + [aux_sym_preproc_def_token1] = ACTIONS(4152), + [aux_sym_preproc_if_token1] = ACTIONS(4152), + [aux_sym_preproc_if_token2] = ACTIONS(4152), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4152), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4152), + [sym_preproc_directive] = ACTIONS(4152), + [anon_sym_LPAREN2] = ACTIONS(4154), + [anon_sym_TILDE] = ACTIONS(4154), + [anon_sym_STAR] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym___extension__] = ACTIONS(4152), + [anon_sym_typedef] = ACTIONS(4152), + [anon_sym_virtual] = ACTIONS(4152), + [anon_sym_extern] = ACTIONS(4152), + [anon_sym___attribute__] = ACTIONS(4152), + [anon_sym___attribute] = ACTIONS(4152), + [anon_sym_using] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4154), + [anon_sym___declspec] = ACTIONS(4152), + [anon_sym___based] = ACTIONS(4152), + [anon_sym_signed] = ACTIONS(4152), + [anon_sym_unsigned] = ACTIONS(4152), + [anon_sym_long] = ACTIONS(4152), + [anon_sym_short] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_static] = ACTIONS(4152), + [anon_sym_register] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym___inline] = ACTIONS(4152), + [anon_sym___inline__] = ACTIONS(4152), + [anon_sym___forceinline] = ACTIONS(4152), + [anon_sym_thread_local] = ACTIONS(4152), + [anon_sym___thread] = ACTIONS(4152), + [anon_sym_const] = ACTIONS(4152), + [anon_sym_constexpr] = ACTIONS(4152), + [anon_sym_volatile] = ACTIONS(4152), + [anon_sym_restrict] = ACTIONS(4152), + [anon_sym___restrict__] = ACTIONS(4152), + [anon_sym__Atomic] = ACTIONS(4152), + [anon_sym__Noreturn] = ACTIONS(4152), + [anon_sym_noreturn] = ACTIONS(4152), + [anon_sym__Nonnull] = ACTIONS(4152), + [anon_sym_mutable] = ACTIONS(4152), + [anon_sym_constinit] = ACTIONS(4152), + [anon_sym_consteval] = ACTIONS(4152), + [anon_sym_alignas] = ACTIONS(4152), + [anon_sym__Alignas] = ACTIONS(4152), + [sym_primitive_type] = ACTIONS(4152), + [anon_sym_enum] = ACTIONS(4152), + [anon_sym_class] = ACTIONS(4152), + [anon_sym_struct] = ACTIONS(4152), + [anon_sym_union] = ACTIONS(4152), + [anon_sym_typename] = ACTIONS(4152), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4152), + [anon_sym_decltype] = ACTIONS(4152), + [anon_sym_explicit] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_template] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_friend] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_static_assert] = ACTIONS(4152), + [anon_sym_LBRACK_COLON] = ACTIONS(4154), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8446), 27, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - 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(8448), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - 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, - [71] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9368), 1, - anon_sym_LT, - STATE(3698), 1, - sym_template_argument_list, - ACTIONS(9262), 27, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - 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_identifier, - ACTIONS(9264), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [146] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9371), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - 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_identifier, - ACTIONS(9373), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [217] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(3603), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(6676), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6682), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8737), 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(8739), 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [294] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3958), 1, - sym_attribute_specifier, - ACTIONS(8907), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7125), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7123), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - 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_final, - anon_sym_override, - anon_sym_requires, - [369] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8907), 1, - anon_sym___attribute, - ACTIONS(9025), 1, - anon_sym___attribute__, - STATE(3020), 1, - sym_attribute_specifier, - ACTIONS(7099), 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_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7101), 49, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [446] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9375), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - 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_identifier, - ACTIONS(9377), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [517] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8907), 1, - anon_sym___attribute, - ACTIONS(9025), 1, - anon_sym___attribute__, - STATE(3112), 1, - sym_attribute_specifier, - ACTIONS(7053), 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_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7055), 49, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [594] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9379), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - 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_identifier, - ACTIONS(9381), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [665] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3950), 1, - sym_attribute_specifier, - ACTIONS(8907), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7097), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7095), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - 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_final, - anon_sym_override, - anon_sym_requires, - [740] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3960), 1, - sym_attribute_specifier, - ACTIONS(8907), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7135), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7133), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - 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_final, - anon_sym_override, - anon_sym_requires, - [815] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4040), 1, - sym_attribute_specifier, - ACTIONS(8907), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7063), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7061), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - 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_final, - anon_sym_override, - anon_sym_requires, - [890] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9383), 1, - sym_identifier, - STATE(3800), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(5601), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5603), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8118), 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(8116), 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, - [969] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(4050), 1, - sym_alignas_qualifier, - ACTIONS(9388), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3734), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(9385), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6525), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - 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_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(6527), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [1048] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8382), 27, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - 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(8384), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - 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, - [1119] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2758), 22, - 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_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(2768), 41, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [1190] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9391), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - 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_identifier, - ACTIONS(9393), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [1261] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6183), 1, - anon_sym_requires, - ACTIONS(7554), 1, - anon_sym_DASH_GT, - STATE(2911), 1, - sym_trailing_return_type, - ACTIONS(6181), 2, - anon_sym_final, - anon_sym_override, - STATE(3248), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3513), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(7544), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_COLON_RBRACK, - [1344] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3941), 1, - sym_attribute_specifier, - ACTIONS(8907), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7067), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7065), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - 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_final, - anon_sym_override, - anon_sym_requires, - [1419] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9395), 1, - anon_sym_DASH_GT, - ACTIONS(9401), 1, - anon_sym_requires, - STATE(2872), 1, - sym_trailing_return_type, - ACTIONS(9398), 2, - anon_sym_final, - anon_sym_override, - STATE(3248), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3541), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8543), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_COLON_RBRACK, - [1502] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9404), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - 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_identifier, - ACTIONS(9406), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [1573] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9404), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - 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_identifier, - ACTIONS(9406), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [1644] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8907), 1, - anon_sym___attribute, - ACTIONS(9025), 1, - anon_sym___attribute__, - STATE(3102), 1, - sym_attribute_specifier, - ACTIONS(7061), 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_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7063), 49, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [1721] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8120), 1, - anon_sym_DASH_GT, - ACTIONS(8132), 1, - anon_sym_requires, - STATE(2867), 1, - sym_trailing_return_type, - ACTIONS(8129), 2, - anon_sym_final, - anon_sym_override, - STATE(3248), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3528), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8089), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_COLON_RBRACK, - [1804] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5260), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - 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_identifier, - ACTIONS(5253), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [1875] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4025), 1, - sym_attribute_specifier, - ACTIONS(8907), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7059), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7057), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - 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_final, - anon_sym_override, - anon_sym_requires, - [1950] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7221), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7219), 37, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - 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_final, - anon_sym_override, - anon_sym_requires, - [2021] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9408), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - 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_identifier, - ACTIONS(9410), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [2092] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9404), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - 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_identifier, - ACTIONS(9406), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [2163] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9412), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - 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_identifier, - ACTIONS(9414), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [2234] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8454), 27, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - 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(8456), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - 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, - [2305] = 3, + [STATE(3254)] = { + [sym_identifier] = ACTIONS(4156), + [aux_sym_preproc_def_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token2] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), + [sym_preproc_directive] = ACTIONS(4156), + [anon_sym_LPAREN2] = ACTIONS(4158), + [anon_sym_TILDE] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym___extension__] = ACTIONS(4156), + [anon_sym_typedef] = ACTIONS(4156), + [anon_sym_virtual] = ACTIONS(4156), + [anon_sym_extern] = ACTIONS(4156), + [anon_sym___attribute__] = ACTIONS(4156), + [anon_sym___attribute] = ACTIONS(4156), + [anon_sym_using] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4156), + [anon_sym___based] = ACTIONS(4156), + [anon_sym_signed] = ACTIONS(4156), + [anon_sym_unsigned] = ACTIONS(4156), + [anon_sym_long] = ACTIONS(4156), + [anon_sym_short] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_register] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym___inline] = ACTIONS(4156), + [anon_sym___inline__] = ACTIONS(4156), + [anon_sym___forceinline] = ACTIONS(4156), + [anon_sym_thread_local] = ACTIONS(4156), + [anon_sym___thread] = ACTIONS(4156), + [anon_sym_const] = ACTIONS(4156), + [anon_sym_constexpr] = ACTIONS(4156), + [anon_sym_volatile] = ACTIONS(4156), + [anon_sym_restrict] = ACTIONS(4156), + [anon_sym___restrict__] = ACTIONS(4156), + [anon_sym__Atomic] = ACTIONS(4156), + [anon_sym__Noreturn] = ACTIONS(4156), + [anon_sym_noreturn] = ACTIONS(4156), + [anon_sym__Nonnull] = ACTIONS(4156), + [anon_sym_mutable] = ACTIONS(4156), + [anon_sym_constinit] = ACTIONS(4156), + [anon_sym_consteval] = ACTIONS(4156), + [anon_sym_alignas] = ACTIONS(4156), + [anon_sym__Alignas] = ACTIONS(4156), + [sym_primitive_type] = ACTIONS(4156), + [anon_sym_enum] = ACTIONS(4156), + [anon_sym_class] = ACTIONS(4156), + [anon_sym_struct] = ACTIONS(4156), + [anon_sym_union] = ACTIONS(4156), + [anon_sym_typename] = ACTIONS(4156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4156), + [anon_sym_decltype] = ACTIONS(4156), + [anon_sym_explicit] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_friend] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_static_assert] = ACTIONS(4156), + [anon_sym_LBRACK_COLON] = ACTIONS(4158), + }, + [STATE(3255)] = { + [sym_identifier] = ACTIONS(4156), + [aux_sym_preproc_def_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token2] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), + [sym_preproc_directive] = ACTIONS(4156), + [anon_sym_LPAREN2] = ACTIONS(4158), + [anon_sym_TILDE] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym___extension__] = ACTIONS(4156), + [anon_sym_typedef] = ACTIONS(4156), + [anon_sym_virtual] = ACTIONS(4156), + [anon_sym_extern] = ACTIONS(4156), + [anon_sym___attribute__] = ACTIONS(4156), + [anon_sym___attribute] = ACTIONS(4156), + [anon_sym_using] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4156), + [anon_sym___based] = ACTIONS(4156), + [anon_sym_signed] = ACTIONS(4156), + [anon_sym_unsigned] = ACTIONS(4156), + [anon_sym_long] = ACTIONS(4156), + [anon_sym_short] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_register] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym___inline] = ACTIONS(4156), + [anon_sym___inline__] = ACTIONS(4156), + [anon_sym___forceinline] = ACTIONS(4156), + [anon_sym_thread_local] = ACTIONS(4156), + [anon_sym___thread] = ACTIONS(4156), + [anon_sym_const] = ACTIONS(4156), + [anon_sym_constexpr] = ACTIONS(4156), + [anon_sym_volatile] = ACTIONS(4156), + [anon_sym_restrict] = ACTIONS(4156), + [anon_sym___restrict__] = ACTIONS(4156), + [anon_sym__Atomic] = ACTIONS(4156), + [anon_sym__Noreturn] = ACTIONS(4156), + [anon_sym_noreturn] = ACTIONS(4156), + [anon_sym__Nonnull] = ACTIONS(4156), + [anon_sym_mutable] = ACTIONS(4156), + [anon_sym_constinit] = ACTIONS(4156), + [anon_sym_consteval] = ACTIONS(4156), + [anon_sym_alignas] = ACTIONS(4156), + [anon_sym__Alignas] = ACTIONS(4156), + [sym_primitive_type] = ACTIONS(4156), + [anon_sym_enum] = ACTIONS(4156), + [anon_sym_class] = ACTIONS(4156), + [anon_sym_struct] = ACTIONS(4156), + [anon_sym_union] = ACTIONS(4156), + [anon_sym_typename] = ACTIONS(4156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4156), + [anon_sym_decltype] = ACTIONS(4156), + [anon_sym_explicit] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_friend] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_static_assert] = ACTIONS(4156), + [anon_sym_LBRACK_COLON] = ACTIONS(4158), + }, + [STATE(3256)] = { + [sym_identifier] = ACTIONS(4160), + [aux_sym_preproc_def_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token2] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), + [sym_preproc_directive] = ACTIONS(4160), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_TILDE] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym___extension__] = ACTIONS(4160), + [anon_sym_typedef] = ACTIONS(4160), + [anon_sym_virtual] = ACTIONS(4160), + [anon_sym_extern] = ACTIONS(4160), + [anon_sym___attribute__] = ACTIONS(4160), + [anon_sym___attribute] = ACTIONS(4160), + [anon_sym_using] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), + [anon_sym___declspec] = ACTIONS(4160), + [anon_sym___based] = ACTIONS(4160), + [anon_sym_signed] = ACTIONS(4160), + [anon_sym_unsigned] = ACTIONS(4160), + [anon_sym_long] = ACTIONS(4160), + [anon_sym_short] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4160), + [anon_sym_static] = ACTIONS(4160), + [anon_sym_register] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym___inline] = ACTIONS(4160), + [anon_sym___inline__] = ACTIONS(4160), + [anon_sym___forceinline] = ACTIONS(4160), + [anon_sym_thread_local] = ACTIONS(4160), + [anon_sym___thread] = ACTIONS(4160), + [anon_sym_const] = ACTIONS(4160), + [anon_sym_constexpr] = ACTIONS(4160), + [anon_sym_volatile] = ACTIONS(4160), + [anon_sym_restrict] = ACTIONS(4160), + [anon_sym___restrict__] = ACTIONS(4160), + [anon_sym__Atomic] = ACTIONS(4160), + [anon_sym__Noreturn] = ACTIONS(4160), + [anon_sym_noreturn] = ACTIONS(4160), + [anon_sym__Nonnull] = ACTIONS(4160), + [anon_sym_mutable] = ACTIONS(4160), + [anon_sym_constinit] = ACTIONS(4160), + [anon_sym_consteval] = ACTIONS(4160), + [anon_sym_alignas] = ACTIONS(4160), + [anon_sym__Alignas] = ACTIONS(4160), + [sym_primitive_type] = ACTIONS(4160), + [anon_sym_enum] = ACTIONS(4160), + [anon_sym_class] = ACTIONS(4160), + [anon_sym_struct] = ACTIONS(4160), + [anon_sym_union] = ACTIONS(4160), + [anon_sym_typename] = ACTIONS(4160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4160), + [anon_sym_decltype] = ACTIONS(4160), + [anon_sym_explicit] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_template] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_friend] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_static_assert] = ACTIONS(4160), + [anon_sym_LBRACK_COLON] = ACTIONS(4162), + }, + [STATE(3257)] = { + [sym_identifier] = ACTIONS(4160), + [aux_sym_preproc_def_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token2] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), + [sym_preproc_directive] = ACTIONS(4160), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_TILDE] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym___extension__] = ACTIONS(4160), + [anon_sym_typedef] = ACTIONS(4160), + [anon_sym_virtual] = ACTIONS(4160), + [anon_sym_extern] = ACTIONS(4160), + [anon_sym___attribute__] = ACTIONS(4160), + [anon_sym___attribute] = ACTIONS(4160), + [anon_sym_using] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), + [anon_sym___declspec] = ACTIONS(4160), + [anon_sym___based] = ACTIONS(4160), + [anon_sym_signed] = ACTIONS(4160), + [anon_sym_unsigned] = ACTIONS(4160), + [anon_sym_long] = ACTIONS(4160), + [anon_sym_short] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4160), + [anon_sym_static] = ACTIONS(4160), + [anon_sym_register] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym___inline] = ACTIONS(4160), + [anon_sym___inline__] = ACTIONS(4160), + [anon_sym___forceinline] = ACTIONS(4160), + [anon_sym_thread_local] = ACTIONS(4160), + [anon_sym___thread] = ACTIONS(4160), + [anon_sym_const] = ACTIONS(4160), + [anon_sym_constexpr] = ACTIONS(4160), + [anon_sym_volatile] = ACTIONS(4160), + [anon_sym_restrict] = ACTIONS(4160), + [anon_sym___restrict__] = ACTIONS(4160), + [anon_sym__Atomic] = ACTIONS(4160), + [anon_sym__Noreturn] = ACTIONS(4160), + [anon_sym_noreturn] = ACTIONS(4160), + [anon_sym__Nonnull] = ACTIONS(4160), + [anon_sym_mutable] = ACTIONS(4160), + [anon_sym_constinit] = ACTIONS(4160), + [anon_sym_consteval] = ACTIONS(4160), + [anon_sym_alignas] = ACTIONS(4160), + [anon_sym__Alignas] = ACTIONS(4160), + [sym_primitive_type] = ACTIONS(4160), + [anon_sym_enum] = ACTIONS(4160), + [anon_sym_class] = ACTIONS(4160), + [anon_sym_struct] = ACTIONS(4160), + [anon_sym_union] = ACTIONS(4160), + [anon_sym_typename] = ACTIONS(4160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4160), + [anon_sym_decltype] = ACTIONS(4160), + [anon_sym_explicit] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_template] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_friend] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_static_assert] = ACTIONS(4160), + [anon_sym_LBRACK_COLON] = ACTIONS(4162), + }, + [STATE(3258)] = { + [sym_identifier] = ACTIONS(4164), + [aux_sym_preproc_def_token1] = ACTIONS(4164), + [aux_sym_preproc_if_token1] = ACTIONS(4164), + [aux_sym_preproc_if_token2] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), + [sym_preproc_directive] = ACTIONS(4164), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_typedef] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_using] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym_signed] = ACTIONS(4164), + [anon_sym_unsigned] = ACTIONS(4164), + [anon_sym_long] = ACTIONS(4164), + [anon_sym_short] = ACTIONS(4164), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [sym_primitive_type] = ACTIONS(4164), + [anon_sym_enum] = ACTIONS(4164), + [anon_sym_class] = ACTIONS(4164), + [anon_sym_struct] = ACTIONS(4164), + [anon_sym_union] = ACTIONS(4164), + [anon_sym_typename] = ACTIONS(4164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_explicit] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_friend] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_static_assert] = ACTIONS(4164), + [anon_sym_LBRACK_COLON] = ACTIONS(4166), + }, + [STATE(3259)] = { + [sym_identifier] = ACTIONS(4168), + [aux_sym_preproc_def_token1] = ACTIONS(4168), + [aux_sym_preproc_if_token1] = ACTIONS(4168), + [aux_sym_preproc_if_token2] = ACTIONS(4168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4168), + [sym_preproc_directive] = ACTIONS(4168), + [anon_sym_LPAREN2] = ACTIONS(4170), + [anon_sym_TILDE] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_AMP_AMP] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4170), + [anon_sym___extension__] = ACTIONS(4168), + [anon_sym_typedef] = ACTIONS(4168), + [anon_sym_virtual] = ACTIONS(4168), + [anon_sym_extern] = ACTIONS(4168), + [anon_sym___attribute__] = ACTIONS(4168), + [anon_sym___attribute] = ACTIONS(4168), + [anon_sym_using] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4170), + [anon_sym___declspec] = ACTIONS(4168), + [anon_sym___based] = ACTIONS(4168), + [anon_sym_signed] = ACTIONS(4168), + [anon_sym_unsigned] = ACTIONS(4168), + [anon_sym_long] = ACTIONS(4168), + [anon_sym_short] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_static] = ACTIONS(4168), + [anon_sym_register] = ACTIONS(4168), + [anon_sym_inline] = ACTIONS(4168), + [anon_sym___inline] = ACTIONS(4168), + [anon_sym___inline__] = ACTIONS(4168), + [anon_sym___forceinline] = ACTIONS(4168), + [anon_sym_thread_local] = ACTIONS(4168), + [anon_sym___thread] = ACTIONS(4168), + [anon_sym_const] = ACTIONS(4168), + [anon_sym_constexpr] = ACTIONS(4168), + [anon_sym_volatile] = ACTIONS(4168), + [anon_sym_restrict] = ACTIONS(4168), + [anon_sym___restrict__] = ACTIONS(4168), + [anon_sym__Atomic] = ACTIONS(4168), + [anon_sym__Noreturn] = ACTIONS(4168), + [anon_sym_noreturn] = ACTIONS(4168), + [anon_sym__Nonnull] = ACTIONS(4168), + [anon_sym_mutable] = ACTIONS(4168), + [anon_sym_constinit] = ACTIONS(4168), + [anon_sym_consteval] = ACTIONS(4168), + [anon_sym_alignas] = ACTIONS(4168), + [anon_sym__Alignas] = ACTIONS(4168), + [sym_primitive_type] = ACTIONS(4168), + [anon_sym_enum] = ACTIONS(4168), + [anon_sym_class] = ACTIONS(4168), + [anon_sym_struct] = ACTIONS(4168), + [anon_sym_union] = ACTIONS(4168), + [anon_sym_typename] = ACTIONS(4168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4168), + [anon_sym_decltype] = ACTIONS(4168), + [anon_sym_explicit] = ACTIONS(4168), + [anon_sym_private] = ACTIONS(4168), + [anon_sym_template] = ACTIONS(4168), + [anon_sym_operator] = ACTIONS(4168), + [anon_sym_friend] = ACTIONS(4168), + [anon_sym_public] = ACTIONS(4168), + [anon_sym_protected] = ACTIONS(4168), + [anon_sym_static_assert] = ACTIONS(4168), + [anon_sym_LBRACK_COLON] = ACTIONS(4170), + }, + [STATE(3260)] = { + [sym_identifier] = ACTIONS(4172), + [aux_sym_preproc_def_token1] = ACTIONS(4172), + [aux_sym_preproc_if_token1] = ACTIONS(4172), + [aux_sym_preproc_if_token2] = ACTIONS(4172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4172), + [sym_preproc_directive] = ACTIONS(4172), + [anon_sym_LPAREN2] = ACTIONS(4174), + [anon_sym_TILDE] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_AMP_AMP] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4172), + [anon_sym_SEMI] = ACTIONS(4174), + [anon_sym___extension__] = ACTIONS(4172), + [anon_sym_typedef] = ACTIONS(4172), + [anon_sym_virtual] = ACTIONS(4172), + [anon_sym_extern] = ACTIONS(4172), + [anon_sym___attribute__] = ACTIONS(4172), + [anon_sym___attribute] = ACTIONS(4172), + [anon_sym_using] = ACTIONS(4172), + [anon_sym_COLON_COLON] = ACTIONS(4174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4174), + [anon_sym___declspec] = ACTIONS(4172), + [anon_sym___based] = ACTIONS(4172), + [anon_sym_signed] = ACTIONS(4172), + [anon_sym_unsigned] = ACTIONS(4172), + [anon_sym_long] = ACTIONS(4172), + [anon_sym_short] = ACTIONS(4172), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_static] = ACTIONS(4172), + [anon_sym_register] = ACTIONS(4172), + [anon_sym_inline] = ACTIONS(4172), + [anon_sym___inline] = ACTIONS(4172), + [anon_sym___inline__] = ACTIONS(4172), + [anon_sym___forceinline] = ACTIONS(4172), + [anon_sym_thread_local] = ACTIONS(4172), + [anon_sym___thread] = ACTIONS(4172), + [anon_sym_const] = ACTIONS(4172), + [anon_sym_constexpr] = ACTIONS(4172), + [anon_sym_volatile] = ACTIONS(4172), + [anon_sym_restrict] = ACTIONS(4172), + [anon_sym___restrict__] = ACTIONS(4172), + [anon_sym__Atomic] = ACTIONS(4172), + [anon_sym__Noreturn] = ACTIONS(4172), + [anon_sym_noreturn] = ACTIONS(4172), + [anon_sym__Nonnull] = ACTIONS(4172), + [anon_sym_mutable] = ACTIONS(4172), + [anon_sym_constinit] = ACTIONS(4172), + [anon_sym_consteval] = ACTIONS(4172), + [anon_sym_alignas] = ACTIONS(4172), + [anon_sym__Alignas] = ACTIONS(4172), + [sym_primitive_type] = ACTIONS(4172), + [anon_sym_enum] = ACTIONS(4172), + [anon_sym_class] = ACTIONS(4172), + [anon_sym_struct] = ACTIONS(4172), + [anon_sym_union] = ACTIONS(4172), + [anon_sym_typename] = ACTIONS(4172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4172), + [anon_sym_decltype] = ACTIONS(4172), + [anon_sym_explicit] = ACTIONS(4172), + [anon_sym_private] = ACTIONS(4172), + [anon_sym_template] = ACTIONS(4172), + [anon_sym_operator] = ACTIONS(4172), + [anon_sym_friend] = ACTIONS(4172), + [anon_sym_public] = ACTIONS(4172), + [anon_sym_protected] = ACTIONS(4172), + [anon_sym_static_assert] = ACTIONS(4172), + [anon_sym_LBRACK_COLON] = ACTIONS(4174), + }, + [STATE(3261)] = { + [sym_identifier] = ACTIONS(4176), + [aux_sym_preproc_def_token1] = ACTIONS(4176), + [aux_sym_preproc_if_token1] = ACTIONS(4176), + [aux_sym_preproc_if_token2] = ACTIONS(4176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4176), + [sym_preproc_directive] = ACTIONS(4176), + [anon_sym_LPAREN2] = ACTIONS(4178), + [anon_sym_TILDE] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [anon_sym_AMP_AMP] = ACTIONS(4178), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4178), + [anon_sym___extension__] = ACTIONS(4176), + [anon_sym_typedef] = ACTIONS(4176), + [anon_sym_virtual] = ACTIONS(4176), + [anon_sym_extern] = ACTIONS(4176), + [anon_sym___attribute__] = ACTIONS(4176), + [anon_sym___attribute] = ACTIONS(4176), + [anon_sym_using] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4178), + [anon_sym___declspec] = ACTIONS(4176), + [anon_sym___based] = ACTIONS(4176), + [anon_sym_signed] = ACTIONS(4176), + [anon_sym_unsigned] = ACTIONS(4176), + [anon_sym_long] = ACTIONS(4176), + [anon_sym_short] = ACTIONS(4176), + [anon_sym_LBRACK] = ACTIONS(4176), + [anon_sym_static] = ACTIONS(4176), + [anon_sym_register] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym___inline] = ACTIONS(4176), + [anon_sym___inline__] = ACTIONS(4176), + [anon_sym___forceinline] = ACTIONS(4176), + [anon_sym_thread_local] = ACTIONS(4176), + [anon_sym___thread] = ACTIONS(4176), + [anon_sym_const] = ACTIONS(4176), + [anon_sym_constexpr] = ACTIONS(4176), + [anon_sym_volatile] = ACTIONS(4176), + [anon_sym_restrict] = ACTIONS(4176), + [anon_sym___restrict__] = ACTIONS(4176), + [anon_sym__Atomic] = ACTIONS(4176), + [anon_sym__Noreturn] = ACTIONS(4176), + [anon_sym_noreturn] = ACTIONS(4176), + [anon_sym__Nonnull] = ACTIONS(4176), + [anon_sym_mutable] = ACTIONS(4176), + [anon_sym_constinit] = ACTIONS(4176), + [anon_sym_consteval] = ACTIONS(4176), + [anon_sym_alignas] = ACTIONS(4176), + [anon_sym__Alignas] = ACTIONS(4176), + [sym_primitive_type] = ACTIONS(4176), + [anon_sym_enum] = ACTIONS(4176), + [anon_sym_class] = ACTIONS(4176), + [anon_sym_struct] = ACTIONS(4176), + [anon_sym_union] = ACTIONS(4176), + [anon_sym_typename] = ACTIONS(4176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4176), + [anon_sym_decltype] = ACTIONS(4176), + [anon_sym_explicit] = ACTIONS(4176), + [anon_sym_private] = ACTIONS(4176), + [anon_sym_template] = ACTIONS(4176), + [anon_sym_operator] = ACTIONS(4176), + [anon_sym_friend] = ACTIONS(4176), + [anon_sym_public] = ACTIONS(4176), + [anon_sym_protected] = ACTIONS(4176), + [anon_sym_static_assert] = ACTIONS(4176), + [anon_sym_LBRACK_COLON] = ACTIONS(4178), + }, + [STATE(3262)] = { + [sym_identifier] = ACTIONS(4180), + [aux_sym_preproc_def_token1] = ACTIONS(4180), + [aux_sym_preproc_if_token1] = ACTIONS(4180), + [aux_sym_preproc_if_token2] = ACTIONS(4180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4180), + [sym_preproc_directive] = ACTIONS(4180), + [anon_sym_LPAREN2] = ACTIONS(4182), + [anon_sym_TILDE] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_AMP] = ACTIONS(4180), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym___extension__] = ACTIONS(4180), + [anon_sym_typedef] = ACTIONS(4180), + [anon_sym_virtual] = ACTIONS(4180), + [anon_sym_extern] = ACTIONS(4180), + [anon_sym___attribute__] = ACTIONS(4180), + [anon_sym___attribute] = ACTIONS(4180), + [anon_sym_using] = ACTIONS(4180), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4182), + [anon_sym___declspec] = ACTIONS(4180), + [anon_sym___based] = ACTIONS(4180), + [anon_sym_signed] = ACTIONS(4180), + [anon_sym_unsigned] = ACTIONS(4180), + [anon_sym_long] = ACTIONS(4180), + [anon_sym_short] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_static] = ACTIONS(4180), + [anon_sym_register] = ACTIONS(4180), + [anon_sym_inline] = ACTIONS(4180), + [anon_sym___inline] = ACTIONS(4180), + [anon_sym___inline__] = ACTIONS(4180), + [anon_sym___forceinline] = ACTIONS(4180), + [anon_sym_thread_local] = ACTIONS(4180), + [anon_sym___thread] = ACTIONS(4180), + [anon_sym_const] = ACTIONS(4180), + [anon_sym_constexpr] = ACTIONS(4180), + [anon_sym_volatile] = ACTIONS(4180), + [anon_sym_restrict] = ACTIONS(4180), + [anon_sym___restrict__] = ACTIONS(4180), + [anon_sym__Atomic] = ACTIONS(4180), + [anon_sym__Noreturn] = ACTIONS(4180), + [anon_sym_noreturn] = ACTIONS(4180), + [anon_sym__Nonnull] = ACTIONS(4180), + [anon_sym_mutable] = ACTIONS(4180), + [anon_sym_constinit] = ACTIONS(4180), + [anon_sym_consteval] = ACTIONS(4180), + [anon_sym_alignas] = ACTIONS(4180), + [anon_sym__Alignas] = ACTIONS(4180), + [sym_primitive_type] = ACTIONS(4180), + [anon_sym_enum] = ACTIONS(4180), + [anon_sym_class] = ACTIONS(4180), + [anon_sym_struct] = ACTIONS(4180), + [anon_sym_union] = ACTIONS(4180), + [anon_sym_typename] = ACTIONS(4180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4180), + [anon_sym_decltype] = ACTIONS(4180), + [anon_sym_explicit] = ACTIONS(4180), + [anon_sym_private] = ACTIONS(4180), + [anon_sym_template] = ACTIONS(4180), + [anon_sym_operator] = ACTIONS(4180), + [anon_sym_friend] = ACTIONS(4180), + [anon_sym_public] = ACTIONS(4180), + [anon_sym_protected] = ACTIONS(4180), + [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_LBRACK_COLON] = ACTIONS(4182), + }, + [STATE(3263)] = { + [sym_identifier] = ACTIONS(4184), + [aux_sym_preproc_def_token1] = ACTIONS(4184), + [aux_sym_preproc_if_token1] = ACTIONS(4184), + [aux_sym_preproc_if_token2] = ACTIONS(4184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4184), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4184), + [sym_preproc_directive] = ACTIONS(4184), + [anon_sym_LPAREN2] = ACTIONS(4186), + [anon_sym_TILDE] = ACTIONS(4186), + [anon_sym_STAR] = ACTIONS(4186), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_AMP] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym___extension__] = ACTIONS(4184), + [anon_sym_typedef] = ACTIONS(4184), + [anon_sym_virtual] = ACTIONS(4184), + [anon_sym_extern] = ACTIONS(4184), + [anon_sym___attribute__] = ACTIONS(4184), + [anon_sym___attribute] = ACTIONS(4184), + [anon_sym_using] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4186), + [anon_sym___declspec] = ACTIONS(4184), + [anon_sym___based] = ACTIONS(4184), + [anon_sym_signed] = ACTIONS(4184), + [anon_sym_unsigned] = ACTIONS(4184), + [anon_sym_long] = ACTIONS(4184), + [anon_sym_short] = ACTIONS(4184), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_static] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym___inline] = ACTIONS(4184), + [anon_sym___inline__] = ACTIONS(4184), + [anon_sym___forceinline] = ACTIONS(4184), + [anon_sym_thread_local] = ACTIONS(4184), + [anon_sym___thread] = ACTIONS(4184), + [anon_sym_const] = ACTIONS(4184), + [anon_sym_constexpr] = ACTIONS(4184), + [anon_sym_volatile] = ACTIONS(4184), + [anon_sym_restrict] = ACTIONS(4184), + [anon_sym___restrict__] = ACTIONS(4184), + [anon_sym__Atomic] = ACTIONS(4184), + [anon_sym__Noreturn] = ACTIONS(4184), + [anon_sym_noreturn] = ACTIONS(4184), + [anon_sym__Nonnull] = ACTIONS(4184), + [anon_sym_mutable] = ACTIONS(4184), + [anon_sym_constinit] = ACTIONS(4184), + [anon_sym_consteval] = ACTIONS(4184), + [anon_sym_alignas] = ACTIONS(4184), + [anon_sym__Alignas] = ACTIONS(4184), + [sym_primitive_type] = ACTIONS(4184), + [anon_sym_enum] = ACTIONS(4184), + [anon_sym_class] = ACTIONS(4184), + [anon_sym_struct] = ACTIONS(4184), + [anon_sym_union] = ACTIONS(4184), + [anon_sym_typename] = ACTIONS(4184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4184), + [anon_sym_decltype] = ACTIONS(4184), + [anon_sym_explicit] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_template] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_friend] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_static_assert] = ACTIONS(4184), + [anon_sym_LBRACK_COLON] = ACTIONS(4186), + }, + [STATE(3264)] = { + [sym_identifier] = ACTIONS(3954), + [aux_sym_preproc_def_token1] = ACTIONS(3954), + [aux_sym_preproc_if_token1] = ACTIONS(3954), + [aux_sym_preproc_if_token2] = ACTIONS(3954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3954), + [sym_preproc_directive] = ACTIONS(3954), + [anon_sym_LPAREN2] = ACTIONS(3956), + [anon_sym_TILDE] = ACTIONS(3956), + [anon_sym_STAR] = ACTIONS(3956), + [anon_sym_AMP_AMP] = ACTIONS(3956), + [anon_sym_AMP] = ACTIONS(3954), + [anon_sym_SEMI] = ACTIONS(3956), + [anon_sym___extension__] = ACTIONS(3954), + [anon_sym_typedef] = ACTIONS(3954), + [anon_sym_virtual] = ACTIONS(3954), + [anon_sym_extern] = ACTIONS(3954), + [anon_sym___attribute__] = ACTIONS(3954), + [anon_sym___attribute] = ACTIONS(3954), + [anon_sym_using] = ACTIONS(3954), + [anon_sym_COLON_COLON] = ACTIONS(3956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3956), + [anon_sym___declspec] = ACTIONS(3954), + [anon_sym___based] = ACTIONS(3954), + [anon_sym_signed] = ACTIONS(3954), + [anon_sym_unsigned] = ACTIONS(3954), + [anon_sym_long] = ACTIONS(3954), + [anon_sym_short] = ACTIONS(3954), + [anon_sym_LBRACK] = ACTIONS(3954), + [anon_sym_static] = ACTIONS(3954), + [anon_sym_register] = ACTIONS(3954), + [anon_sym_inline] = ACTIONS(3954), + [anon_sym___inline] = ACTIONS(3954), + [anon_sym___inline__] = ACTIONS(3954), + [anon_sym___forceinline] = ACTIONS(3954), + [anon_sym_thread_local] = ACTIONS(3954), + [anon_sym___thread] = ACTIONS(3954), + [anon_sym_const] = ACTIONS(3954), + [anon_sym_constexpr] = ACTIONS(3954), + [anon_sym_volatile] = ACTIONS(3954), + [anon_sym_restrict] = ACTIONS(3954), + [anon_sym___restrict__] = ACTIONS(3954), + [anon_sym__Atomic] = ACTIONS(3954), + [anon_sym__Noreturn] = ACTIONS(3954), + [anon_sym_noreturn] = ACTIONS(3954), + [anon_sym__Nonnull] = ACTIONS(3954), + [anon_sym_mutable] = ACTIONS(3954), + [anon_sym_constinit] = ACTIONS(3954), + [anon_sym_consteval] = ACTIONS(3954), + [anon_sym_alignas] = ACTIONS(3954), + [anon_sym__Alignas] = ACTIONS(3954), + [sym_primitive_type] = ACTIONS(3954), + [anon_sym_enum] = ACTIONS(3954), + [anon_sym_class] = ACTIONS(3954), + [anon_sym_struct] = ACTIONS(3954), + [anon_sym_union] = ACTIONS(3954), + [anon_sym_typename] = ACTIONS(3954), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3954), + [anon_sym_decltype] = ACTIONS(3954), + [anon_sym_explicit] = ACTIONS(3954), + [anon_sym_private] = ACTIONS(3954), + [anon_sym_template] = ACTIONS(3954), + [anon_sym_operator] = ACTIONS(3954), + [anon_sym_friend] = ACTIONS(3954), + [anon_sym_public] = ACTIONS(3954), + [anon_sym_protected] = ACTIONS(3954), + [anon_sym_static_assert] = ACTIONS(3954), + [anon_sym_LBRACK_COLON] = ACTIONS(3956), + }, + [STATE(3265)] = { + [sym_identifier] = ACTIONS(3958), + [aux_sym_preproc_def_token1] = ACTIONS(3958), + [aux_sym_preproc_if_token1] = ACTIONS(3958), + [aux_sym_preproc_if_token2] = ACTIONS(3958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3958), + [sym_preproc_directive] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_STAR] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3960), + [anon_sym_AMP] = ACTIONS(3958), + [anon_sym_SEMI] = ACTIONS(3960), + [anon_sym___extension__] = ACTIONS(3958), + [anon_sym_typedef] = ACTIONS(3958), + [anon_sym_virtual] = ACTIONS(3958), + [anon_sym_extern] = ACTIONS(3958), + [anon_sym___attribute__] = ACTIONS(3958), + [anon_sym___attribute] = ACTIONS(3958), + [anon_sym_using] = ACTIONS(3958), + [anon_sym_COLON_COLON] = ACTIONS(3960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3960), + [anon_sym___declspec] = ACTIONS(3958), + [anon_sym___based] = ACTIONS(3958), + [anon_sym_signed] = ACTIONS(3958), + [anon_sym_unsigned] = ACTIONS(3958), + [anon_sym_long] = ACTIONS(3958), + [anon_sym_short] = ACTIONS(3958), + [anon_sym_LBRACK] = ACTIONS(3958), + [anon_sym_static] = ACTIONS(3958), + [anon_sym_register] = ACTIONS(3958), + [anon_sym_inline] = ACTIONS(3958), + [anon_sym___inline] = ACTIONS(3958), + [anon_sym___inline__] = ACTIONS(3958), + [anon_sym___forceinline] = ACTIONS(3958), + [anon_sym_thread_local] = ACTIONS(3958), + [anon_sym___thread] = ACTIONS(3958), + [anon_sym_const] = ACTIONS(3958), + [anon_sym_constexpr] = ACTIONS(3958), + [anon_sym_volatile] = ACTIONS(3958), + [anon_sym_restrict] = ACTIONS(3958), + [anon_sym___restrict__] = ACTIONS(3958), + [anon_sym__Atomic] = ACTIONS(3958), + [anon_sym__Noreturn] = ACTIONS(3958), + [anon_sym_noreturn] = ACTIONS(3958), + [anon_sym__Nonnull] = ACTIONS(3958), + [anon_sym_mutable] = ACTIONS(3958), + [anon_sym_constinit] = ACTIONS(3958), + [anon_sym_consteval] = ACTIONS(3958), + [anon_sym_alignas] = ACTIONS(3958), + [anon_sym__Alignas] = ACTIONS(3958), + [sym_primitive_type] = ACTIONS(3958), + [anon_sym_enum] = ACTIONS(3958), + [anon_sym_class] = ACTIONS(3958), + [anon_sym_struct] = ACTIONS(3958), + [anon_sym_union] = ACTIONS(3958), + [anon_sym_typename] = ACTIONS(3958), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3958), + [anon_sym_decltype] = ACTIONS(3958), + [anon_sym_explicit] = ACTIONS(3958), + [anon_sym_private] = ACTIONS(3958), + [anon_sym_template] = ACTIONS(3958), + [anon_sym_operator] = ACTIONS(3958), + [anon_sym_friend] = ACTIONS(3958), + [anon_sym_public] = ACTIONS(3958), + [anon_sym_protected] = ACTIONS(3958), + [anon_sym_static_assert] = ACTIONS(3958), + [anon_sym_LBRACK_COLON] = ACTIONS(3960), + }, + [STATE(3266)] = { + [sym_identifier] = ACTIONS(4262), + [aux_sym_preproc_def_token1] = ACTIONS(4262), + [aux_sym_preproc_if_token1] = ACTIONS(4262), + [aux_sym_preproc_if_token2] = ACTIONS(4262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4262), + [sym_preproc_directive] = ACTIONS(4262), + [anon_sym_LPAREN2] = ACTIONS(4264), + [anon_sym_TILDE] = ACTIONS(4264), + [anon_sym_STAR] = ACTIONS(4264), + [anon_sym_AMP_AMP] = ACTIONS(4264), + [anon_sym_AMP] = ACTIONS(4262), + [anon_sym_SEMI] = ACTIONS(4264), + [anon_sym___extension__] = ACTIONS(4262), + [anon_sym_typedef] = ACTIONS(4262), + [anon_sym_virtual] = ACTIONS(4262), + [anon_sym_extern] = ACTIONS(4262), + [anon_sym___attribute__] = ACTIONS(4262), + [anon_sym___attribute] = ACTIONS(4262), + [anon_sym_using] = ACTIONS(4262), + [anon_sym_COLON_COLON] = ACTIONS(4264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4264), + [anon_sym___declspec] = ACTIONS(4262), + [anon_sym___based] = ACTIONS(4262), + [anon_sym_signed] = ACTIONS(4262), + [anon_sym_unsigned] = ACTIONS(4262), + [anon_sym_long] = ACTIONS(4262), + [anon_sym_short] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_static] = ACTIONS(4262), + [anon_sym_register] = ACTIONS(4262), + [anon_sym_inline] = ACTIONS(4262), + [anon_sym___inline] = ACTIONS(4262), + [anon_sym___inline__] = ACTIONS(4262), + [anon_sym___forceinline] = ACTIONS(4262), + [anon_sym_thread_local] = ACTIONS(4262), + [anon_sym___thread] = ACTIONS(4262), + [anon_sym_const] = ACTIONS(4262), + [anon_sym_constexpr] = ACTIONS(4262), + [anon_sym_volatile] = ACTIONS(4262), + [anon_sym_restrict] = ACTIONS(4262), + [anon_sym___restrict__] = ACTIONS(4262), + [anon_sym__Atomic] = ACTIONS(4262), + [anon_sym__Noreturn] = ACTIONS(4262), + [anon_sym_noreturn] = ACTIONS(4262), + [anon_sym__Nonnull] = ACTIONS(4262), + [anon_sym_mutable] = ACTIONS(4262), + [anon_sym_constinit] = ACTIONS(4262), + [anon_sym_consteval] = ACTIONS(4262), + [anon_sym_alignas] = ACTIONS(4262), + [anon_sym__Alignas] = ACTIONS(4262), + [sym_primitive_type] = ACTIONS(4262), + [anon_sym_enum] = ACTIONS(4262), + [anon_sym_class] = ACTIONS(4262), + [anon_sym_struct] = ACTIONS(4262), + [anon_sym_union] = ACTIONS(4262), + [anon_sym_typename] = ACTIONS(4262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4262), + [anon_sym_decltype] = ACTIONS(4262), + [anon_sym_explicit] = ACTIONS(4262), + [anon_sym_private] = ACTIONS(4262), + [anon_sym_template] = ACTIONS(4262), + [anon_sym_operator] = ACTIONS(4262), + [anon_sym_friend] = ACTIONS(4262), + [anon_sym_public] = ACTIONS(4262), + [anon_sym_protected] = ACTIONS(4262), + [anon_sym_static_assert] = ACTIONS(4262), + [anon_sym_LBRACK_COLON] = ACTIONS(4264), + }, + [STATE(3267)] = { + [sym_identifier] = ACTIONS(4266), + [aux_sym_preproc_def_token1] = ACTIONS(4266), + [aux_sym_preproc_if_token1] = ACTIONS(4266), + [aux_sym_preproc_if_token2] = ACTIONS(4266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4266), + [sym_preproc_directive] = ACTIONS(4266), + [anon_sym_LPAREN2] = ACTIONS(4268), + [anon_sym_TILDE] = ACTIONS(4268), + [anon_sym_STAR] = ACTIONS(4268), + [anon_sym_AMP_AMP] = ACTIONS(4268), + [anon_sym_AMP] = ACTIONS(4266), + [anon_sym_SEMI] = ACTIONS(4268), + [anon_sym___extension__] = ACTIONS(4266), + [anon_sym_typedef] = ACTIONS(4266), + [anon_sym_virtual] = ACTIONS(4266), + [anon_sym_extern] = ACTIONS(4266), + [anon_sym___attribute__] = ACTIONS(4266), + [anon_sym___attribute] = ACTIONS(4266), + [anon_sym_using] = ACTIONS(4266), + [anon_sym_COLON_COLON] = ACTIONS(4268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4268), + [anon_sym___declspec] = ACTIONS(4266), + [anon_sym___based] = ACTIONS(4266), + [anon_sym_signed] = ACTIONS(4266), + [anon_sym_unsigned] = ACTIONS(4266), + [anon_sym_long] = ACTIONS(4266), + [anon_sym_short] = ACTIONS(4266), + [anon_sym_LBRACK] = ACTIONS(4266), + [anon_sym_static] = ACTIONS(4266), + [anon_sym_register] = ACTIONS(4266), + [anon_sym_inline] = ACTIONS(4266), + [anon_sym___inline] = ACTIONS(4266), + [anon_sym___inline__] = ACTIONS(4266), + [anon_sym___forceinline] = ACTIONS(4266), + [anon_sym_thread_local] = ACTIONS(4266), + [anon_sym___thread] = ACTIONS(4266), + [anon_sym_const] = ACTIONS(4266), + [anon_sym_constexpr] = ACTIONS(4266), + [anon_sym_volatile] = ACTIONS(4266), + [anon_sym_restrict] = ACTIONS(4266), + [anon_sym___restrict__] = ACTIONS(4266), + [anon_sym__Atomic] = ACTIONS(4266), + [anon_sym__Noreturn] = ACTIONS(4266), + [anon_sym_noreturn] = ACTIONS(4266), + [anon_sym__Nonnull] = ACTIONS(4266), + [anon_sym_mutable] = ACTIONS(4266), + [anon_sym_constinit] = ACTIONS(4266), + [anon_sym_consteval] = ACTIONS(4266), + [anon_sym_alignas] = ACTIONS(4266), + [anon_sym__Alignas] = ACTIONS(4266), + [sym_primitive_type] = ACTIONS(4266), + [anon_sym_enum] = ACTIONS(4266), + [anon_sym_class] = ACTIONS(4266), + [anon_sym_struct] = ACTIONS(4266), + [anon_sym_union] = ACTIONS(4266), + [anon_sym_typename] = ACTIONS(4266), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4266), + [anon_sym_decltype] = ACTIONS(4266), + [anon_sym_explicit] = ACTIONS(4266), + [anon_sym_private] = ACTIONS(4266), + [anon_sym_template] = ACTIONS(4266), + [anon_sym_operator] = ACTIONS(4266), + [anon_sym_friend] = ACTIONS(4266), + [anon_sym_public] = ACTIONS(4266), + [anon_sym_protected] = ACTIONS(4266), + [anon_sym_static_assert] = ACTIONS(4266), + [anon_sym_LBRACK_COLON] = ACTIONS(4268), + }, + [STATE(3268)] = { + [sym_identifier] = ACTIONS(4270), + [aux_sym_preproc_def_token1] = ACTIONS(4270), + [aux_sym_preproc_if_token1] = ACTIONS(4270), + [aux_sym_preproc_if_token2] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), + [sym_preproc_directive] = ACTIONS(4270), + [anon_sym_LPAREN2] = ACTIONS(4272), + [anon_sym_TILDE] = ACTIONS(4272), + [anon_sym_STAR] = ACTIONS(4272), + [anon_sym_AMP_AMP] = ACTIONS(4272), + [anon_sym_AMP] = ACTIONS(4270), + [anon_sym_SEMI] = ACTIONS(4272), + [anon_sym___extension__] = ACTIONS(4270), + [anon_sym_typedef] = ACTIONS(4270), + [anon_sym_virtual] = ACTIONS(4270), + [anon_sym_extern] = ACTIONS(4270), + [anon_sym___attribute__] = ACTIONS(4270), + [anon_sym___attribute] = ACTIONS(4270), + [anon_sym_using] = ACTIONS(4270), + [anon_sym_COLON_COLON] = ACTIONS(4272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), + [anon_sym___declspec] = ACTIONS(4270), + [anon_sym___based] = ACTIONS(4270), + [anon_sym_signed] = ACTIONS(4270), + [anon_sym_unsigned] = ACTIONS(4270), + [anon_sym_long] = ACTIONS(4270), + [anon_sym_short] = ACTIONS(4270), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_static] = ACTIONS(4270), + [anon_sym_register] = ACTIONS(4270), + [anon_sym_inline] = ACTIONS(4270), + [anon_sym___inline] = ACTIONS(4270), + [anon_sym___inline__] = ACTIONS(4270), + [anon_sym___forceinline] = ACTIONS(4270), + [anon_sym_thread_local] = ACTIONS(4270), + [anon_sym___thread] = ACTIONS(4270), + [anon_sym_const] = ACTIONS(4270), + [anon_sym_constexpr] = ACTIONS(4270), + [anon_sym_volatile] = ACTIONS(4270), + [anon_sym_restrict] = ACTIONS(4270), + [anon_sym___restrict__] = ACTIONS(4270), + [anon_sym__Atomic] = ACTIONS(4270), + [anon_sym__Noreturn] = ACTIONS(4270), + [anon_sym_noreturn] = ACTIONS(4270), + [anon_sym__Nonnull] = ACTIONS(4270), + [anon_sym_mutable] = ACTIONS(4270), + [anon_sym_constinit] = ACTIONS(4270), + [anon_sym_consteval] = ACTIONS(4270), + [anon_sym_alignas] = ACTIONS(4270), + [anon_sym__Alignas] = ACTIONS(4270), + [sym_primitive_type] = ACTIONS(4270), + [anon_sym_enum] = ACTIONS(4270), + [anon_sym_class] = ACTIONS(4270), + [anon_sym_struct] = ACTIONS(4270), + [anon_sym_union] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4270), + [anon_sym_decltype] = ACTIONS(4270), + [anon_sym_explicit] = ACTIONS(4270), + [anon_sym_private] = ACTIONS(4270), + [anon_sym_template] = ACTIONS(4270), + [anon_sym_operator] = ACTIONS(4270), + [anon_sym_friend] = ACTIONS(4270), + [anon_sym_public] = ACTIONS(4270), + [anon_sym_protected] = ACTIONS(4270), + [anon_sym_static_assert] = ACTIONS(4270), + [anon_sym_LBRACK_COLON] = ACTIONS(4272), + }, + [STATE(3269)] = { + [sym_identifier] = ACTIONS(4270), + [aux_sym_preproc_def_token1] = ACTIONS(4270), + [aux_sym_preproc_if_token1] = ACTIONS(4270), + [aux_sym_preproc_if_token2] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), + [sym_preproc_directive] = ACTIONS(4270), + [anon_sym_LPAREN2] = ACTIONS(4272), + [anon_sym_TILDE] = ACTIONS(4272), + [anon_sym_STAR] = ACTIONS(4272), + [anon_sym_AMP_AMP] = ACTIONS(4272), + [anon_sym_AMP] = ACTIONS(4270), + [anon_sym_SEMI] = ACTIONS(4272), + [anon_sym___extension__] = ACTIONS(4270), + [anon_sym_typedef] = ACTIONS(4270), + [anon_sym_virtual] = ACTIONS(4270), + [anon_sym_extern] = ACTIONS(4270), + [anon_sym___attribute__] = ACTIONS(4270), + [anon_sym___attribute] = ACTIONS(4270), + [anon_sym_using] = ACTIONS(4270), + [anon_sym_COLON_COLON] = ACTIONS(4272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), + [anon_sym___declspec] = ACTIONS(4270), + [anon_sym___based] = ACTIONS(4270), + [anon_sym_signed] = ACTIONS(4270), + [anon_sym_unsigned] = ACTIONS(4270), + [anon_sym_long] = ACTIONS(4270), + [anon_sym_short] = ACTIONS(4270), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_static] = ACTIONS(4270), + [anon_sym_register] = ACTIONS(4270), + [anon_sym_inline] = ACTIONS(4270), + [anon_sym___inline] = ACTIONS(4270), + [anon_sym___inline__] = ACTIONS(4270), + [anon_sym___forceinline] = ACTIONS(4270), + [anon_sym_thread_local] = ACTIONS(4270), + [anon_sym___thread] = ACTIONS(4270), + [anon_sym_const] = ACTIONS(4270), + [anon_sym_constexpr] = ACTIONS(4270), + [anon_sym_volatile] = ACTIONS(4270), + [anon_sym_restrict] = ACTIONS(4270), + [anon_sym___restrict__] = ACTIONS(4270), + [anon_sym__Atomic] = ACTIONS(4270), + [anon_sym__Noreturn] = ACTIONS(4270), + [anon_sym_noreturn] = ACTIONS(4270), + [anon_sym__Nonnull] = ACTIONS(4270), + [anon_sym_mutable] = ACTIONS(4270), + [anon_sym_constinit] = ACTIONS(4270), + [anon_sym_consteval] = ACTIONS(4270), + [anon_sym_alignas] = ACTIONS(4270), + [anon_sym__Alignas] = ACTIONS(4270), + [sym_primitive_type] = ACTIONS(4270), + [anon_sym_enum] = ACTIONS(4270), + [anon_sym_class] = ACTIONS(4270), + [anon_sym_struct] = ACTIONS(4270), + [anon_sym_union] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4270), + [anon_sym_decltype] = ACTIONS(4270), + [anon_sym_explicit] = ACTIONS(4270), + [anon_sym_private] = ACTIONS(4270), + [anon_sym_template] = ACTIONS(4270), + [anon_sym_operator] = ACTIONS(4270), + [anon_sym_friend] = ACTIONS(4270), + [anon_sym_public] = ACTIONS(4270), + [anon_sym_protected] = ACTIONS(4270), + [anon_sym_static_assert] = ACTIONS(4270), + [anon_sym_LBRACK_COLON] = ACTIONS(4272), + }, + [STATE(3270)] = { + [sym_identifier] = ACTIONS(4274), + [aux_sym_preproc_def_token1] = ACTIONS(4274), + [aux_sym_preproc_if_token1] = ACTIONS(4274), + [aux_sym_preproc_if_token2] = ACTIONS(4274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4274), + [sym_preproc_directive] = ACTIONS(4274), + [anon_sym_LPAREN2] = ACTIONS(4276), + [anon_sym_TILDE] = ACTIONS(4276), + [anon_sym_STAR] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_AMP] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym___extension__] = ACTIONS(4274), + [anon_sym_typedef] = ACTIONS(4274), + [anon_sym_virtual] = ACTIONS(4274), + [anon_sym_extern] = ACTIONS(4274), + [anon_sym___attribute__] = ACTIONS(4274), + [anon_sym___attribute] = ACTIONS(4274), + [anon_sym_using] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4276), + [anon_sym___declspec] = ACTIONS(4274), + [anon_sym___based] = ACTIONS(4274), + [anon_sym_signed] = ACTIONS(4274), + [anon_sym_unsigned] = ACTIONS(4274), + [anon_sym_long] = ACTIONS(4274), + [anon_sym_short] = ACTIONS(4274), + [anon_sym_LBRACK] = ACTIONS(4274), + [anon_sym_static] = ACTIONS(4274), + [anon_sym_register] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym___inline] = ACTIONS(4274), + [anon_sym___inline__] = ACTIONS(4274), + [anon_sym___forceinline] = ACTIONS(4274), + [anon_sym_thread_local] = ACTIONS(4274), + [anon_sym___thread] = ACTIONS(4274), + [anon_sym_const] = ACTIONS(4274), + [anon_sym_constexpr] = ACTIONS(4274), + [anon_sym_volatile] = ACTIONS(4274), + [anon_sym_restrict] = ACTIONS(4274), + [anon_sym___restrict__] = ACTIONS(4274), + [anon_sym__Atomic] = ACTIONS(4274), + [anon_sym__Noreturn] = ACTIONS(4274), + [anon_sym_noreturn] = ACTIONS(4274), + [anon_sym__Nonnull] = ACTIONS(4274), + [anon_sym_mutable] = ACTIONS(4274), + [anon_sym_constinit] = ACTIONS(4274), + [anon_sym_consteval] = ACTIONS(4274), + [anon_sym_alignas] = ACTIONS(4274), + [anon_sym__Alignas] = ACTIONS(4274), + [sym_primitive_type] = ACTIONS(4274), + [anon_sym_enum] = ACTIONS(4274), + [anon_sym_class] = ACTIONS(4274), + [anon_sym_struct] = ACTIONS(4274), + [anon_sym_union] = ACTIONS(4274), + [anon_sym_typename] = ACTIONS(4274), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4274), + [anon_sym_decltype] = ACTIONS(4274), + [anon_sym_explicit] = ACTIONS(4274), + [anon_sym_private] = ACTIONS(4274), + [anon_sym_template] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_friend] = ACTIONS(4274), + [anon_sym_public] = ACTIONS(4274), + [anon_sym_protected] = ACTIONS(4274), + [anon_sym_static_assert] = ACTIONS(4274), + [anon_sym_LBRACK_COLON] = ACTIONS(4276), + }, + [STATE(3271)] = { + [sym_identifier] = ACTIONS(4278), + [aux_sym_preproc_def_token1] = ACTIONS(4278), + [aux_sym_preproc_if_token1] = ACTIONS(4278), + [aux_sym_preproc_if_token2] = ACTIONS(4278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4278), + [sym_preproc_directive] = ACTIONS(4278), + [anon_sym_LPAREN2] = ACTIONS(4280), + [anon_sym_TILDE] = ACTIONS(4280), + [anon_sym_STAR] = ACTIONS(4280), + [anon_sym_AMP_AMP] = ACTIONS(4280), + [anon_sym_AMP] = ACTIONS(4278), + [anon_sym_SEMI] = ACTIONS(4280), + [anon_sym___extension__] = ACTIONS(4278), + [anon_sym_typedef] = ACTIONS(4278), + [anon_sym_virtual] = ACTIONS(4278), + [anon_sym_extern] = ACTIONS(4278), + [anon_sym___attribute__] = ACTIONS(4278), + [anon_sym___attribute] = ACTIONS(4278), + [anon_sym_using] = ACTIONS(4278), + [anon_sym_COLON_COLON] = ACTIONS(4280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4280), + [anon_sym___declspec] = ACTIONS(4278), + [anon_sym___based] = ACTIONS(4278), + [anon_sym_signed] = ACTIONS(4278), + [anon_sym_unsigned] = ACTIONS(4278), + [anon_sym_long] = ACTIONS(4278), + [anon_sym_short] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_register] = ACTIONS(4278), + [anon_sym_inline] = ACTIONS(4278), + [anon_sym___inline] = ACTIONS(4278), + [anon_sym___inline__] = ACTIONS(4278), + [anon_sym___forceinline] = ACTIONS(4278), + [anon_sym_thread_local] = ACTIONS(4278), + [anon_sym___thread] = ACTIONS(4278), + [anon_sym_const] = ACTIONS(4278), + [anon_sym_constexpr] = ACTIONS(4278), + [anon_sym_volatile] = ACTIONS(4278), + [anon_sym_restrict] = ACTIONS(4278), + [anon_sym___restrict__] = ACTIONS(4278), + [anon_sym__Atomic] = ACTIONS(4278), + [anon_sym__Noreturn] = ACTIONS(4278), + [anon_sym_noreturn] = ACTIONS(4278), + [anon_sym__Nonnull] = ACTIONS(4278), + [anon_sym_mutable] = ACTIONS(4278), + [anon_sym_constinit] = ACTIONS(4278), + [anon_sym_consteval] = ACTIONS(4278), + [anon_sym_alignas] = ACTIONS(4278), + [anon_sym__Alignas] = ACTIONS(4278), + [sym_primitive_type] = ACTIONS(4278), + [anon_sym_enum] = ACTIONS(4278), + [anon_sym_class] = ACTIONS(4278), + [anon_sym_struct] = ACTIONS(4278), + [anon_sym_union] = ACTIONS(4278), + [anon_sym_typename] = ACTIONS(4278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4278), + [anon_sym_decltype] = ACTIONS(4278), + [anon_sym_explicit] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_template] = ACTIONS(4278), + [anon_sym_operator] = ACTIONS(4278), + [anon_sym_friend] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_protected] = ACTIONS(4278), + [anon_sym_static_assert] = ACTIONS(4278), + [anon_sym_LBRACK_COLON] = ACTIONS(4280), + }, + [STATE(3272)] = { + [sym_identifier] = ACTIONS(4020), + [aux_sym_preproc_def_token1] = ACTIONS(4020), + [aux_sym_preproc_if_token1] = ACTIONS(4020), + [aux_sym_preproc_if_token2] = ACTIONS(4020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4020), + [sym_preproc_directive] = ACTIONS(4020), + [anon_sym_LPAREN2] = ACTIONS(4022), + [anon_sym_TILDE] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_SEMI] = ACTIONS(4022), + [anon_sym___extension__] = ACTIONS(4020), + [anon_sym_typedef] = ACTIONS(4020), + [anon_sym_virtual] = ACTIONS(4020), + [anon_sym_extern] = ACTIONS(4020), + [anon_sym___attribute__] = ACTIONS(4020), + [anon_sym___attribute] = ACTIONS(4020), + [anon_sym_using] = ACTIONS(4020), + [anon_sym_COLON_COLON] = ACTIONS(4022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4022), + [anon_sym___declspec] = ACTIONS(4020), + [anon_sym___based] = ACTIONS(4020), + [anon_sym_signed] = ACTIONS(4020), + [anon_sym_unsigned] = ACTIONS(4020), + [anon_sym_long] = ACTIONS(4020), + [anon_sym_short] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(4020), + [anon_sym_static] = ACTIONS(4020), + [anon_sym_register] = ACTIONS(4020), + [anon_sym_inline] = ACTIONS(4020), + [anon_sym___inline] = ACTIONS(4020), + [anon_sym___inline__] = ACTIONS(4020), + [anon_sym___forceinline] = ACTIONS(4020), + [anon_sym_thread_local] = ACTIONS(4020), + [anon_sym___thread] = ACTIONS(4020), + [anon_sym_const] = ACTIONS(4020), + [anon_sym_constexpr] = ACTIONS(4020), + [anon_sym_volatile] = ACTIONS(4020), + [anon_sym_restrict] = ACTIONS(4020), + [anon_sym___restrict__] = ACTIONS(4020), + [anon_sym__Atomic] = ACTIONS(4020), + [anon_sym__Noreturn] = ACTIONS(4020), + [anon_sym_noreturn] = ACTIONS(4020), + [anon_sym__Nonnull] = ACTIONS(4020), + [anon_sym_mutable] = ACTIONS(4020), + [anon_sym_constinit] = ACTIONS(4020), + [anon_sym_consteval] = ACTIONS(4020), + [anon_sym_alignas] = ACTIONS(4020), + [anon_sym__Alignas] = ACTIONS(4020), + [sym_primitive_type] = ACTIONS(4020), + [anon_sym_enum] = ACTIONS(4020), + [anon_sym_class] = ACTIONS(4020), + [anon_sym_struct] = ACTIONS(4020), + [anon_sym_union] = ACTIONS(4020), + [anon_sym_typename] = ACTIONS(4020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4020), + [anon_sym_decltype] = ACTIONS(4020), + [anon_sym_explicit] = ACTIONS(4020), + [anon_sym_private] = ACTIONS(4020), + [anon_sym_template] = ACTIONS(4020), + [anon_sym_operator] = ACTIONS(4020), + [anon_sym_friend] = ACTIONS(4020), + [anon_sym_public] = ACTIONS(4020), + [anon_sym_protected] = ACTIONS(4020), + [anon_sym_static_assert] = ACTIONS(4020), + [anon_sym_LBRACK_COLON] = ACTIONS(4022), + }, + [STATE(3273)] = { + [sym_identifier] = ACTIONS(4048), + [aux_sym_preproc_def_token1] = ACTIONS(4048), + [aux_sym_preproc_if_token1] = ACTIONS(4048), + [aux_sym_preproc_if_token2] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4048), + [sym_preproc_directive] = ACTIONS(4048), + [anon_sym_LPAREN2] = ACTIONS(4050), + [anon_sym_TILDE] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(4050), + [anon_sym_AMP_AMP] = ACTIONS(4050), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_SEMI] = ACTIONS(4050), + [anon_sym___extension__] = ACTIONS(4048), + [anon_sym_typedef] = ACTIONS(4048), + [anon_sym_virtual] = ACTIONS(4048), + [anon_sym_extern] = ACTIONS(4048), + [anon_sym___attribute__] = ACTIONS(4048), + [anon_sym___attribute] = ACTIONS(4048), + [anon_sym_using] = ACTIONS(4048), + [anon_sym_COLON_COLON] = ACTIONS(4050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4050), + [anon_sym___declspec] = ACTIONS(4048), + [anon_sym___based] = ACTIONS(4048), + [anon_sym_signed] = ACTIONS(4048), + [anon_sym_unsigned] = ACTIONS(4048), + [anon_sym_long] = ACTIONS(4048), + [anon_sym_short] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_static] = ACTIONS(4048), + [anon_sym_register] = ACTIONS(4048), + [anon_sym_inline] = ACTIONS(4048), + [anon_sym___inline] = ACTIONS(4048), + [anon_sym___inline__] = ACTIONS(4048), + [anon_sym___forceinline] = ACTIONS(4048), + [anon_sym_thread_local] = ACTIONS(4048), + [anon_sym___thread] = ACTIONS(4048), + [anon_sym_const] = ACTIONS(4048), + [anon_sym_constexpr] = ACTIONS(4048), + [anon_sym_volatile] = ACTIONS(4048), + [anon_sym_restrict] = ACTIONS(4048), + [anon_sym___restrict__] = ACTIONS(4048), + [anon_sym__Atomic] = ACTIONS(4048), + [anon_sym__Noreturn] = ACTIONS(4048), + [anon_sym_noreturn] = ACTIONS(4048), + [anon_sym__Nonnull] = ACTIONS(4048), + [anon_sym_mutable] = ACTIONS(4048), + [anon_sym_constinit] = ACTIONS(4048), + [anon_sym_consteval] = ACTIONS(4048), + [anon_sym_alignas] = ACTIONS(4048), + [anon_sym__Alignas] = ACTIONS(4048), + [sym_primitive_type] = ACTIONS(4048), + [anon_sym_enum] = ACTIONS(4048), + [anon_sym_class] = ACTIONS(4048), + [anon_sym_struct] = ACTIONS(4048), + [anon_sym_union] = ACTIONS(4048), + [anon_sym_typename] = ACTIONS(4048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4048), + [anon_sym_decltype] = ACTIONS(4048), + [anon_sym_explicit] = ACTIONS(4048), + [anon_sym_private] = ACTIONS(4048), + [anon_sym_template] = ACTIONS(4048), + [anon_sym_operator] = ACTIONS(4048), + [anon_sym_friend] = ACTIONS(4048), + [anon_sym_public] = ACTIONS(4048), + [anon_sym_protected] = ACTIONS(4048), + [anon_sym_static_assert] = ACTIONS(4048), + [anon_sym_LBRACK_COLON] = ACTIONS(4050), + }, + [STATE(3274)] = { + [sym_identifier] = ACTIONS(4387), + [aux_sym_preproc_def_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token2] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), + [sym_preproc_directive] = ACTIONS(4387), + [anon_sym_LPAREN2] = ACTIONS(4389), + [anon_sym_TILDE] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4389), + [anon_sym_AMP_AMP] = ACTIONS(4389), + [anon_sym_AMP] = ACTIONS(4387), + [anon_sym_SEMI] = ACTIONS(4389), + [anon_sym___extension__] = ACTIONS(4387), + [anon_sym_typedef] = ACTIONS(4387), + [anon_sym_virtual] = ACTIONS(4387), + [anon_sym_extern] = ACTIONS(4387), + [anon_sym___attribute__] = ACTIONS(4387), + [anon_sym___attribute] = ACTIONS(4387), + [anon_sym_using] = ACTIONS(4387), + [anon_sym_COLON_COLON] = ACTIONS(4389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4389), + [anon_sym___declspec] = ACTIONS(4387), + [anon_sym___based] = ACTIONS(4387), + [anon_sym_signed] = ACTIONS(4387), + [anon_sym_unsigned] = ACTIONS(4387), + [anon_sym_long] = ACTIONS(4387), + [anon_sym_short] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_static] = ACTIONS(4387), + [anon_sym_register] = ACTIONS(4387), + [anon_sym_inline] = ACTIONS(4387), + [anon_sym___inline] = ACTIONS(4387), + [anon_sym___inline__] = ACTIONS(4387), + [anon_sym___forceinline] = ACTIONS(4387), + [anon_sym_thread_local] = ACTIONS(4387), + [anon_sym___thread] = ACTIONS(4387), + [anon_sym_const] = ACTIONS(4387), + [anon_sym_constexpr] = ACTIONS(4387), + [anon_sym_volatile] = ACTIONS(4387), + [anon_sym_restrict] = ACTIONS(4387), + [anon_sym___restrict__] = ACTIONS(4387), + [anon_sym__Atomic] = ACTIONS(4387), + [anon_sym__Noreturn] = ACTIONS(4387), + [anon_sym_noreturn] = ACTIONS(4387), + [anon_sym__Nonnull] = ACTIONS(4387), + [anon_sym_mutable] = ACTIONS(4387), + [anon_sym_constinit] = ACTIONS(4387), + [anon_sym_consteval] = ACTIONS(4387), + [anon_sym_alignas] = ACTIONS(4387), + [anon_sym__Alignas] = ACTIONS(4387), + [sym_primitive_type] = ACTIONS(4387), + [anon_sym_enum] = ACTIONS(4387), + [anon_sym_class] = ACTIONS(4387), + [anon_sym_struct] = ACTIONS(4387), + [anon_sym_union] = ACTIONS(4387), + [anon_sym_typename] = ACTIONS(4387), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4387), + [anon_sym_decltype] = ACTIONS(4387), + [anon_sym_explicit] = ACTIONS(4387), + [anon_sym_private] = ACTIONS(4387), + [anon_sym_template] = ACTIONS(4387), + [anon_sym_operator] = ACTIONS(4387), + [anon_sym_friend] = ACTIONS(4387), + [anon_sym_public] = ACTIONS(4387), + [anon_sym_protected] = ACTIONS(4387), + [anon_sym_static_assert] = ACTIONS(4387), + [anon_sym_LBRACK_COLON] = ACTIONS(4389), + }, + [STATE(3275)] = { + [sym_template_argument_list] = STATE(3663), + [sym_identifier] = ACTIONS(7371), + [anon_sym_LPAREN2] = ACTIONS(5657), + [anon_sym_TILDE] = ACTIONS(5657), + [anon_sym_STAR] = ACTIONS(5657), + [anon_sym_PIPE_PIPE] = ACTIONS(5657), + [anon_sym_AMP_AMP] = ACTIONS(5657), + [anon_sym_AMP] = ACTIONS(7371), + [anon_sym_LT] = ACTIONS(9099), + [anon_sym___extension__] = ACTIONS(7371), + [anon_sym_virtual] = ACTIONS(7371), + [anon_sym_extern] = ACTIONS(7371), + [anon_sym___attribute__] = ACTIONS(7371), + [anon_sym___attribute] = ACTIONS(7371), + [anon_sym_using] = ACTIONS(7371), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5657), + [anon_sym___declspec] = ACTIONS(7371), + [anon_sym___based] = ACTIONS(7371), + [anon_sym___cdecl] = ACTIONS(7371), + [anon_sym___clrcall] = ACTIONS(7371), + [anon_sym___stdcall] = ACTIONS(7371), + [anon_sym___fastcall] = ACTIONS(7371), + [anon_sym___thiscall] = ACTIONS(7371), + [anon_sym___vectorcall] = ACTIONS(7371), + [anon_sym_signed] = ACTIONS(7371), + [anon_sym_unsigned] = ACTIONS(7371), + [anon_sym_long] = ACTIONS(7371), + [anon_sym_short] = ACTIONS(7371), + [anon_sym_LBRACK] = ACTIONS(7371), + [anon_sym_static] = ACTIONS(7371), + [anon_sym_register] = ACTIONS(7371), + [anon_sym_inline] = ACTIONS(7371), + [anon_sym___inline] = ACTIONS(7371), + [anon_sym___inline__] = ACTIONS(7371), + [anon_sym___forceinline] = ACTIONS(7371), + [anon_sym_thread_local] = ACTIONS(7371), + [anon_sym___thread] = ACTIONS(7371), + [anon_sym_const] = ACTIONS(7371), + [anon_sym_constexpr] = ACTIONS(7371), + [anon_sym_volatile] = ACTIONS(7371), + [anon_sym_restrict] = ACTIONS(7371), + [anon_sym___restrict__] = ACTIONS(7371), + [anon_sym__Atomic] = ACTIONS(7371), + [anon_sym__Noreturn] = ACTIONS(7371), + [anon_sym_noreturn] = ACTIONS(7371), + [anon_sym__Nonnull] = ACTIONS(7371), + [anon_sym_mutable] = ACTIONS(7371), + [anon_sym_constinit] = ACTIONS(7371), + [anon_sym_consteval] = ACTIONS(7371), + [anon_sym_alignas] = ACTIONS(7371), + [anon_sym__Alignas] = ACTIONS(7371), + [sym_primitive_type] = ACTIONS(7371), + [anon_sym_enum] = ACTIONS(7371), + [anon_sym_class] = ACTIONS(7371), + [anon_sym_struct] = ACTIONS(7371), + [anon_sym_union] = ACTIONS(7371), + [anon_sym_or] = ACTIONS(7371), + [anon_sym_and] = ACTIONS(7371), + [anon_sym_typename] = ACTIONS(7371), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7371), + [anon_sym_decltype] = ACTIONS(7371), + [anon_sym_explicit] = ACTIONS(7371), + [anon_sym_template] = ACTIONS(7371), + [anon_sym_operator] = ACTIONS(7371), + [anon_sym_friend] = ACTIONS(7371), + [anon_sym_concept] = ACTIONS(7371), + [anon_sym_LBRACK_COLON] = ACTIONS(5657), + }, + [STATE(3276)] = { + [sym_identifier] = ACTIONS(8770), + [aux_sym_preproc_def_token1] = ACTIONS(8770), + [aux_sym_preproc_if_token1] = ACTIONS(8770), + [aux_sym_preproc_if_token2] = ACTIONS(8770), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8770), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8770), + [sym_preproc_directive] = ACTIONS(8770), + [anon_sym_LPAREN2] = ACTIONS(8772), + [anon_sym_TILDE] = ACTIONS(8772), + [anon_sym_STAR] = ACTIONS(8772), + [anon_sym_AMP_AMP] = ACTIONS(8772), + [anon_sym_AMP] = ACTIONS(8770), + [anon_sym_SEMI] = ACTIONS(8772), + [anon_sym___extension__] = ACTIONS(8770), + [anon_sym_typedef] = ACTIONS(8770), + [anon_sym_virtual] = ACTIONS(8770), + [anon_sym_extern] = ACTIONS(8770), + [anon_sym___attribute__] = ACTIONS(8770), + [anon_sym___attribute] = ACTIONS(8770), + [anon_sym_using] = ACTIONS(8770), + [anon_sym_COLON_COLON] = ACTIONS(8772), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8772), + [anon_sym___declspec] = ACTIONS(8770), + [anon_sym___based] = ACTIONS(8770), + [anon_sym_signed] = ACTIONS(8770), + [anon_sym_unsigned] = ACTIONS(8770), + [anon_sym_long] = ACTIONS(8770), + [anon_sym_short] = ACTIONS(8770), + [anon_sym_LBRACK] = ACTIONS(8770), + [anon_sym_static] = ACTIONS(8770), + [anon_sym_register] = ACTIONS(8770), + [anon_sym_inline] = ACTIONS(8770), + [anon_sym___inline] = ACTIONS(8770), + [anon_sym___inline__] = ACTIONS(8770), + [anon_sym___forceinline] = ACTIONS(8770), + [anon_sym_thread_local] = ACTIONS(8770), + [anon_sym___thread] = ACTIONS(8770), + [anon_sym_const] = ACTIONS(8770), + [anon_sym_constexpr] = ACTIONS(8770), + [anon_sym_volatile] = ACTIONS(8770), + [anon_sym_restrict] = ACTIONS(8770), + [anon_sym___restrict__] = ACTIONS(8770), + [anon_sym__Atomic] = ACTIONS(8770), + [anon_sym__Noreturn] = ACTIONS(8770), + [anon_sym_noreturn] = ACTIONS(8770), + [anon_sym__Nonnull] = ACTIONS(8770), + [anon_sym_mutable] = ACTIONS(8770), + [anon_sym_constinit] = ACTIONS(8770), + [anon_sym_consteval] = ACTIONS(8770), + [anon_sym_alignas] = ACTIONS(8770), + [anon_sym__Alignas] = ACTIONS(8770), + [sym_primitive_type] = ACTIONS(8770), + [anon_sym_enum] = ACTIONS(8770), + [anon_sym_class] = ACTIONS(8770), + [anon_sym_struct] = ACTIONS(8770), + [anon_sym_union] = ACTIONS(8770), + [anon_sym_typename] = ACTIONS(8770), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8770), + [anon_sym_decltype] = ACTIONS(8770), + [anon_sym_explicit] = ACTIONS(8770), + [anon_sym_private] = ACTIONS(8770), + [anon_sym_template] = ACTIONS(8770), + [anon_sym_operator] = ACTIONS(8770), + [anon_sym_friend] = ACTIONS(8770), + [anon_sym_public] = ACTIONS(8770), + [anon_sym_protected] = ACTIONS(8770), + [anon_sym_static_assert] = ACTIONS(8770), + [anon_sym_LBRACK_COLON] = ACTIONS(8772), + }, + [STATE(3277)] = { + [sym_identifier] = ACTIONS(8774), + [aux_sym_preproc_def_token1] = ACTIONS(8774), + [aux_sym_preproc_if_token1] = ACTIONS(8774), + [aux_sym_preproc_if_token2] = ACTIONS(8774), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8774), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8774), + [sym_preproc_directive] = ACTIONS(8774), + [anon_sym_LPAREN2] = ACTIONS(8776), + [anon_sym_TILDE] = ACTIONS(8776), + [anon_sym_STAR] = ACTIONS(8776), + [anon_sym_AMP_AMP] = ACTIONS(8776), + [anon_sym_AMP] = ACTIONS(8774), + [anon_sym_SEMI] = ACTIONS(8776), + [anon_sym___extension__] = ACTIONS(8774), + [anon_sym_typedef] = ACTIONS(8774), + [anon_sym_virtual] = ACTIONS(8774), + [anon_sym_extern] = ACTIONS(8774), + [anon_sym___attribute__] = ACTIONS(8774), + [anon_sym___attribute] = ACTIONS(8774), + [anon_sym_using] = ACTIONS(8774), + [anon_sym_COLON_COLON] = ACTIONS(8776), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8776), + [anon_sym___declspec] = ACTIONS(8774), + [anon_sym___based] = ACTIONS(8774), + [anon_sym_signed] = ACTIONS(8774), + [anon_sym_unsigned] = ACTIONS(8774), + [anon_sym_long] = ACTIONS(8774), + [anon_sym_short] = ACTIONS(8774), + [anon_sym_LBRACK] = ACTIONS(8774), + [anon_sym_static] = ACTIONS(8774), + [anon_sym_register] = ACTIONS(8774), + [anon_sym_inline] = ACTIONS(8774), + [anon_sym___inline] = ACTIONS(8774), + [anon_sym___inline__] = ACTIONS(8774), + [anon_sym___forceinline] = ACTIONS(8774), + [anon_sym_thread_local] = ACTIONS(8774), + [anon_sym___thread] = ACTIONS(8774), + [anon_sym_const] = ACTIONS(8774), + [anon_sym_constexpr] = ACTIONS(8774), + [anon_sym_volatile] = ACTIONS(8774), + [anon_sym_restrict] = ACTIONS(8774), + [anon_sym___restrict__] = ACTIONS(8774), + [anon_sym__Atomic] = ACTIONS(8774), + [anon_sym__Noreturn] = ACTIONS(8774), + [anon_sym_noreturn] = ACTIONS(8774), + [anon_sym__Nonnull] = ACTIONS(8774), + [anon_sym_mutable] = ACTIONS(8774), + [anon_sym_constinit] = ACTIONS(8774), + [anon_sym_consteval] = ACTIONS(8774), + [anon_sym_alignas] = ACTIONS(8774), + [anon_sym__Alignas] = ACTIONS(8774), + [sym_primitive_type] = ACTIONS(8774), + [anon_sym_enum] = ACTIONS(8774), + [anon_sym_class] = ACTIONS(8774), + [anon_sym_struct] = ACTIONS(8774), + [anon_sym_union] = ACTIONS(8774), + [anon_sym_typename] = ACTIONS(8774), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8774), + [anon_sym_decltype] = ACTIONS(8774), + [anon_sym_explicit] = ACTIONS(8774), + [anon_sym_private] = ACTIONS(8774), + [anon_sym_template] = ACTIONS(8774), + [anon_sym_operator] = ACTIONS(8774), + [anon_sym_friend] = ACTIONS(8774), + [anon_sym_public] = ACTIONS(8774), + [anon_sym_protected] = ACTIONS(8774), + [anon_sym_static_assert] = ACTIONS(8774), + [anon_sym_LBRACK_COLON] = ACTIONS(8776), + }, + [STATE(3278)] = { + [sym_identifier] = ACTIONS(8782), + [aux_sym_preproc_def_token1] = ACTIONS(8782), + [aux_sym_preproc_if_token1] = ACTIONS(8782), + [aux_sym_preproc_if_token2] = ACTIONS(8782), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8782), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8782), + [sym_preproc_directive] = ACTIONS(8782), + [anon_sym_LPAREN2] = ACTIONS(8784), + [anon_sym_TILDE] = ACTIONS(8784), + [anon_sym_STAR] = ACTIONS(8784), + [anon_sym_AMP_AMP] = ACTIONS(8784), + [anon_sym_AMP] = ACTIONS(8782), + [anon_sym_SEMI] = ACTIONS(8784), + [anon_sym___extension__] = ACTIONS(8782), + [anon_sym_typedef] = ACTIONS(8782), + [anon_sym_virtual] = ACTIONS(8782), + [anon_sym_extern] = ACTIONS(8782), + [anon_sym___attribute__] = ACTIONS(8782), + [anon_sym___attribute] = ACTIONS(8782), + [anon_sym_using] = ACTIONS(8782), + [anon_sym_COLON_COLON] = ACTIONS(8784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8784), + [anon_sym___declspec] = ACTIONS(8782), + [anon_sym___based] = ACTIONS(8782), + [anon_sym_signed] = ACTIONS(8782), + [anon_sym_unsigned] = ACTIONS(8782), + [anon_sym_long] = ACTIONS(8782), + [anon_sym_short] = ACTIONS(8782), + [anon_sym_LBRACK] = ACTIONS(8782), + [anon_sym_static] = ACTIONS(8782), + [anon_sym_register] = ACTIONS(8782), + [anon_sym_inline] = ACTIONS(8782), + [anon_sym___inline] = ACTIONS(8782), + [anon_sym___inline__] = ACTIONS(8782), + [anon_sym___forceinline] = ACTIONS(8782), + [anon_sym_thread_local] = ACTIONS(8782), + [anon_sym___thread] = ACTIONS(8782), + [anon_sym_const] = ACTIONS(8782), + [anon_sym_constexpr] = ACTIONS(8782), + [anon_sym_volatile] = ACTIONS(8782), + [anon_sym_restrict] = ACTIONS(8782), + [anon_sym___restrict__] = ACTIONS(8782), + [anon_sym__Atomic] = ACTIONS(8782), + [anon_sym__Noreturn] = ACTIONS(8782), + [anon_sym_noreturn] = ACTIONS(8782), + [anon_sym__Nonnull] = ACTIONS(8782), + [anon_sym_mutable] = ACTIONS(8782), + [anon_sym_constinit] = ACTIONS(8782), + [anon_sym_consteval] = ACTIONS(8782), + [anon_sym_alignas] = ACTIONS(8782), + [anon_sym__Alignas] = ACTIONS(8782), + [sym_primitive_type] = ACTIONS(8782), + [anon_sym_enum] = ACTIONS(8782), + [anon_sym_class] = ACTIONS(8782), + [anon_sym_struct] = ACTIONS(8782), + [anon_sym_union] = ACTIONS(8782), + [anon_sym_typename] = ACTIONS(8782), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8782), + [anon_sym_decltype] = ACTIONS(8782), + [anon_sym_explicit] = ACTIONS(8782), + [anon_sym_private] = ACTIONS(8782), + [anon_sym_template] = ACTIONS(8782), + [anon_sym_operator] = ACTIONS(8782), + [anon_sym_friend] = ACTIONS(8782), + [anon_sym_public] = ACTIONS(8782), + [anon_sym_protected] = ACTIONS(8782), + [anon_sym_static_assert] = ACTIONS(8782), + [anon_sym_LBRACK_COLON] = ACTIONS(8784), + }, + [STATE(3279)] = { + [sym_identifier] = ACTIONS(8786), + [aux_sym_preproc_def_token1] = ACTIONS(8786), + [aux_sym_preproc_if_token1] = ACTIONS(8786), + [aux_sym_preproc_if_token2] = ACTIONS(8786), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8786), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8786), + [sym_preproc_directive] = ACTIONS(8786), + [anon_sym_LPAREN2] = ACTIONS(8788), + [anon_sym_TILDE] = ACTIONS(8788), + [anon_sym_STAR] = ACTIONS(8788), + [anon_sym_AMP_AMP] = ACTIONS(8788), + [anon_sym_AMP] = ACTIONS(8786), + [anon_sym_SEMI] = ACTIONS(8788), + [anon_sym___extension__] = ACTIONS(8786), + [anon_sym_typedef] = ACTIONS(8786), + [anon_sym_virtual] = ACTIONS(8786), + [anon_sym_extern] = ACTIONS(8786), + [anon_sym___attribute__] = ACTIONS(8786), + [anon_sym___attribute] = ACTIONS(8786), + [anon_sym_using] = ACTIONS(8786), + [anon_sym_COLON_COLON] = ACTIONS(8788), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8788), + [anon_sym___declspec] = ACTIONS(8786), + [anon_sym___based] = ACTIONS(8786), + [anon_sym_signed] = ACTIONS(8786), + [anon_sym_unsigned] = ACTIONS(8786), + [anon_sym_long] = ACTIONS(8786), + [anon_sym_short] = ACTIONS(8786), + [anon_sym_LBRACK] = ACTIONS(8786), + [anon_sym_static] = ACTIONS(8786), + [anon_sym_register] = ACTIONS(8786), + [anon_sym_inline] = ACTIONS(8786), + [anon_sym___inline] = ACTIONS(8786), + [anon_sym___inline__] = ACTIONS(8786), + [anon_sym___forceinline] = ACTIONS(8786), + [anon_sym_thread_local] = ACTIONS(8786), + [anon_sym___thread] = ACTIONS(8786), + [anon_sym_const] = ACTIONS(8786), + [anon_sym_constexpr] = ACTIONS(8786), + [anon_sym_volatile] = ACTIONS(8786), + [anon_sym_restrict] = ACTIONS(8786), + [anon_sym___restrict__] = ACTIONS(8786), + [anon_sym__Atomic] = ACTIONS(8786), + [anon_sym__Noreturn] = ACTIONS(8786), + [anon_sym_noreturn] = ACTIONS(8786), + [anon_sym__Nonnull] = ACTIONS(8786), + [anon_sym_mutable] = ACTIONS(8786), + [anon_sym_constinit] = ACTIONS(8786), + [anon_sym_consteval] = ACTIONS(8786), + [anon_sym_alignas] = ACTIONS(8786), + [anon_sym__Alignas] = ACTIONS(8786), + [sym_primitive_type] = ACTIONS(8786), + [anon_sym_enum] = ACTIONS(8786), + [anon_sym_class] = ACTIONS(8786), + [anon_sym_struct] = ACTIONS(8786), + [anon_sym_union] = ACTIONS(8786), + [anon_sym_typename] = ACTIONS(8786), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8786), + [anon_sym_decltype] = ACTIONS(8786), + [anon_sym_explicit] = ACTIONS(8786), + [anon_sym_private] = ACTIONS(8786), + [anon_sym_template] = ACTIONS(8786), + [anon_sym_operator] = ACTIONS(8786), + [anon_sym_friend] = ACTIONS(8786), + [anon_sym_public] = ACTIONS(8786), + [anon_sym_protected] = ACTIONS(8786), + [anon_sym_static_assert] = ACTIONS(8786), + [anon_sym_LBRACK_COLON] = ACTIONS(8788), + }, + [STATE(3280)] = { + [sym_identifier] = ACTIONS(8794), + [aux_sym_preproc_def_token1] = ACTIONS(8794), + [aux_sym_preproc_if_token1] = ACTIONS(8794), + [aux_sym_preproc_if_token2] = ACTIONS(8794), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8794), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8794), + [sym_preproc_directive] = ACTIONS(8794), + [anon_sym_LPAREN2] = ACTIONS(8796), + [anon_sym_TILDE] = ACTIONS(8796), + [anon_sym_STAR] = ACTIONS(8796), + [anon_sym_AMP_AMP] = ACTIONS(8796), + [anon_sym_AMP] = ACTIONS(8794), + [anon_sym_SEMI] = ACTIONS(8796), + [anon_sym___extension__] = ACTIONS(8794), + [anon_sym_typedef] = ACTIONS(8794), + [anon_sym_virtual] = ACTIONS(8794), + [anon_sym_extern] = ACTIONS(8794), + [anon_sym___attribute__] = ACTIONS(8794), + [anon_sym___attribute] = ACTIONS(8794), + [anon_sym_using] = ACTIONS(8794), + [anon_sym_COLON_COLON] = ACTIONS(8796), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8796), + [anon_sym___declspec] = ACTIONS(8794), + [anon_sym___based] = ACTIONS(8794), + [anon_sym_signed] = ACTIONS(8794), + [anon_sym_unsigned] = ACTIONS(8794), + [anon_sym_long] = ACTIONS(8794), + [anon_sym_short] = ACTIONS(8794), + [anon_sym_LBRACK] = ACTIONS(8794), + [anon_sym_static] = ACTIONS(8794), + [anon_sym_register] = ACTIONS(8794), + [anon_sym_inline] = ACTIONS(8794), + [anon_sym___inline] = ACTIONS(8794), + [anon_sym___inline__] = ACTIONS(8794), + [anon_sym___forceinline] = ACTIONS(8794), + [anon_sym_thread_local] = ACTIONS(8794), + [anon_sym___thread] = ACTIONS(8794), + [anon_sym_const] = ACTIONS(8794), + [anon_sym_constexpr] = ACTIONS(8794), + [anon_sym_volatile] = ACTIONS(8794), + [anon_sym_restrict] = ACTIONS(8794), + [anon_sym___restrict__] = ACTIONS(8794), + [anon_sym__Atomic] = ACTIONS(8794), + [anon_sym__Noreturn] = ACTIONS(8794), + [anon_sym_noreturn] = ACTIONS(8794), + [anon_sym__Nonnull] = ACTIONS(8794), + [anon_sym_mutable] = ACTIONS(8794), + [anon_sym_constinit] = ACTIONS(8794), + [anon_sym_consteval] = ACTIONS(8794), + [anon_sym_alignas] = ACTIONS(8794), + [anon_sym__Alignas] = ACTIONS(8794), + [sym_primitive_type] = ACTIONS(8794), + [anon_sym_enum] = ACTIONS(8794), + [anon_sym_class] = ACTIONS(8794), + [anon_sym_struct] = ACTIONS(8794), + [anon_sym_union] = ACTIONS(8794), + [anon_sym_typename] = ACTIONS(8794), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8794), + [anon_sym_decltype] = ACTIONS(8794), + [anon_sym_explicit] = ACTIONS(8794), + [anon_sym_private] = ACTIONS(8794), + [anon_sym_template] = ACTIONS(8794), + [anon_sym_operator] = ACTIONS(8794), + [anon_sym_friend] = ACTIONS(8794), + [anon_sym_public] = ACTIONS(8794), + [anon_sym_protected] = ACTIONS(8794), + [anon_sym_static_assert] = ACTIONS(8794), + [anon_sym_LBRACK_COLON] = ACTIONS(8796), + }, + [STATE(3281)] = { + [sym_identifier] = ACTIONS(8794), + [aux_sym_preproc_def_token1] = ACTIONS(8794), + [aux_sym_preproc_if_token1] = ACTIONS(8794), + [aux_sym_preproc_if_token2] = ACTIONS(8794), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8794), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8794), + [sym_preproc_directive] = ACTIONS(8794), + [anon_sym_LPAREN2] = ACTIONS(8796), + [anon_sym_TILDE] = ACTIONS(8796), + [anon_sym_STAR] = ACTIONS(8796), + [anon_sym_AMP_AMP] = ACTIONS(8796), + [anon_sym_AMP] = ACTIONS(8794), + [anon_sym_SEMI] = ACTIONS(8796), + [anon_sym___extension__] = ACTIONS(8794), + [anon_sym_typedef] = ACTIONS(8794), + [anon_sym_virtual] = ACTIONS(8794), + [anon_sym_extern] = ACTIONS(8794), + [anon_sym___attribute__] = ACTIONS(8794), + [anon_sym___attribute] = ACTIONS(8794), + [anon_sym_using] = ACTIONS(8794), + [anon_sym_COLON_COLON] = ACTIONS(8796), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8796), + [anon_sym___declspec] = ACTIONS(8794), + [anon_sym___based] = ACTIONS(8794), + [anon_sym_signed] = ACTIONS(8794), + [anon_sym_unsigned] = ACTIONS(8794), + [anon_sym_long] = ACTIONS(8794), + [anon_sym_short] = ACTIONS(8794), + [anon_sym_LBRACK] = ACTIONS(8794), + [anon_sym_static] = ACTIONS(8794), + [anon_sym_register] = ACTIONS(8794), + [anon_sym_inline] = ACTIONS(8794), + [anon_sym___inline] = ACTIONS(8794), + [anon_sym___inline__] = ACTIONS(8794), + [anon_sym___forceinline] = ACTIONS(8794), + [anon_sym_thread_local] = ACTIONS(8794), + [anon_sym___thread] = ACTIONS(8794), + [anon_sym_const] = ACTIONS(8794), + [anon_sym_constexpr] = ACTIONS(8794), + [anon_sym_volatile] = ACTIONS(8794), + [anon_sym_restrict] = ACTIONS(8794), + [anon_sym___restrict__] = ACTIONS(8794), + [anon_sym__Atomic] = ACTIONS(8794), + [anon_sym__Noreturn] = ACTIONS(8794), + [anon_sym_noreturn] = ACTIONS(8794), + [anon_sym__Nonnull] = ACTIONS(8794), + [anon_sym_mutable] = ACTIONS(8794), + [anon_sym_constinit] = ACTIONS(8794), + [anon_sym_consteval] = ACTIONS(8794), + [anon_sym_alignas] = ACTIONS(8794), + [anon_sym__Alignas] = ACTIONS(8794), + [sym_primitive_type] = ACTIONS(8794), + [anon_sym_enum] = ACTIONS(8794), + [anon_sym_class] = ACTIONS(8794), + [anon_sym_struct] = ACTIONS(8794), + [anon_sym_union] = ACTIONS(8794), + [anon_sym_typename] = ACTIONS(8794), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8794), + [anon_sym_decltype] = ACTIONS(8794), + [anon_sym_explicit] = ACTIONS(8794), + [anon_sym_private] = ACTIONS(8794), + [anon_sym_template] = ACTIONS(8794), + [anon_sym_operator] = ACTIONS(8794), + [anon_sym_friend] = ACTIONS(8794), + [anon_sym_public] = ACTIONS(8794), + [anon_sym_protected] = ACTIONS(8794), + [anon_sym_static_assert] = ACTIONS(8794), + [anon_sym_LBRACK_COLON] = ACTIONS(8796), + }, + [STATE(3282)] = { + [sym_identifier] = ACTIONS(8794), + [aux_sym_preproc_def_token1] = ACTIONS(8794), + [aux_sym_preproc_if_token1] = ACTIONS(8794), + [aux_sym_preproc_if_token2] = ACTIONS(8794), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8794), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8794), + [sym_preproc_directive] = ACTIONS(8794), + [anon_sym_LPAREN2] = ACTIONS(8796), + [anon_sym_TILDE] = ACTIONS(8796), + [anon_sym_STAR] = ACTIONS(8796), + [anon_sym_AMP_AMP] = ACTIONS(8796), + [anon_sym_AMP] = ACTIONS(8794), + [anon_sym_SEMI] = ACTIONS(8796), + [anon_sym___extension__] = ACTIONS(8794), + [anon_sym_typedef] = ACTIONS(8794), + [anon_sym_virtual] = ACTIONS(8794), + [anon_sym_extern] = ACTIONS(8794), + [anon_sym___attribute__] = ACTIONS(8794), + [anon_sym___attribute] = ACTIONS(8794), + [anon_sym_using] = ACTIONS(8794), + [anon_sym_COLON_COLON] = ACTIONS(8796), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8796), + [anon_sym___declspec] = ACTIONS(8794), + [anon_sym___based] = ACTIONS(8794), + [anon_sym_signed] = ACTIONS(8794), + [anon_sym_unsigned] = ACTIONS(8794), + [anon_sym_long] = ACTIONS(8794), + [anon_sym_short] = ACTIONS(8794), + [anon_sym_LBRACK] = ACTIONS(8794), + [anon_sym_static] = ACTIONS(8794), + [anon_sym_register] = ACTIONS(8794), + [anon_sym_inline] = ACTIONS(8794), + [anon_sym___inline] = ACTIONS(8794), + [anon_sym___inline__] = ACTIONS(8794), + [anon_sym___forceinline] = ACTIONS(8794), + [anon_sym_thread_local] = ACTIONS(8794), + [anon_sym___thread] = ACTIONS(8794), + [anon_sym_const] = ACTIONS(8794), + [anon_sym_constexpr] = ACTIONS(8794), + [anon_sym_volatile] = ACTIONS(8794), + [anon_sym_restrict] = ACTIONS(8794), + [anon_sym___restrict__] = ACTIONS(8794), + [anon_sym__Atomic] = ACTIONS(8794), + [anon_sym__Noreturn] = ACTIONS(8794), + [anon_sym_noreturn] = ACTIONS(8794), + [anon_sym__Nonnull] = ACTIONS(8794), + [anon_sym_mutable] = ACTIONS(8794), + [anon_sym_constinit] = ACTIONS(8794), + [anon_sym_consteval] = ACTIONS(8794), + [anon_sym_alignas] = ACTIONS(8794), + [anon_sym__Alignas] = ACTIONS(8794), + [sym_primitive_type] = ACTIONS(8794), + [anon_sym_enum] = ACTIONS(8794), + [anon_sym_class] = ACTIONS(8794), + [anon_sym_struct] = ACTIONS(8794), + [anon_sym_union] = ACTIONS(8794), + [anon_sym_typename] = ACTIONS(8794), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8794), + [anon_sym_decltype] = ACTIONS(8794), + [anon_sym_explicit] = ACTIONS(8794), + [anon_sym_private] = ACTIONS(8794), + [anon_sym_template] = ACTIONS(8794), + [anon_sym_operator] = ACTIONS(8794), + [anon_sym_friend] = ACTIONS(8794), + [anon_sym_public] = ACTIONS(8794), + [anon_sym_protected] = ACTIONS(8794), + [anon_sym_static_assert] = ACTIONS(8794), + [anon_sym_LBRACK_COLON] = ACTIONS(8796), + }, + [STATE(3283)] = { + [sym_identifier] = ACTIONS(8786), + [aux_sym_preproc_def_token1] = ACTIONS(8786), + [aux_sym_preproc_if_token1] = ACTIONS(8786), + [aux_sym_preproc_if_token2] = ACTIONS(8786), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8786), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8786), + [sym_preproc_directive] = ACTIONS(8786), + [anon_sym_LPAREN2] = ACTIONS(8788), + [anon_sym_TILDE] = ACTIONS(8788), + [anon_sym_STAR] = ACTIONS(8788), + [anon_sym_AMP_AMP] = ACTIONS(8788), + [anon_sym_AMP] = ACTIONS(8786), + [anon_sym_SEMI] = ACTIONS(8788), + [anon_sym___extension__] = ACTIONS(8786), + [anon_sym_typedef] = ACTIONS(8786), + [anon_sym_virtual] = ACTIONS(8786), + [anon_sym_extern] = ACTIONS(8786), + [anon_sym___attribute__] = ACTIONS(8786), + [anon_sym___attribute] = ACTIONS(8786), + [anon_sym_using] = ACTIONS(8786), + [anon_sym_COLON_COLON] = ACTIONS(8788), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8788), + [anon_sym___declspec] = ACTIONS(8786), + [anon_sym___based] = ACTIONS(8786), + [anon_sym_signed] = ACTIONS(8786), + [anon_sym_unsigned] = ACTIONS(8786), + [anon_sym_long] = ACTIONS(8786), + [anon_sym_short] = ACTIONS(8786), + [anon_sym_LBRACK] = ACTIONS(8786), + [anon_sym_static] = ACTIONS(8786), + [anon_sym_register] = ACTIONS(8786), + [anon_sym_inline] = ACTIONS(8786), + [anon_sym___inline] = ACTIONS(8786), + [anon_sym___inline__] = ACTIONS(8786), + [anon_sym___forceinline] = ACTIONS(8786), + [anon_sym_thread_local] = ACTIONS(8786), + [anon_sym___thread] = ACTIONS(8786), + [anon_sym_const] = ACTIONS(8786), + [anon_sym_constexpr] = ACTIONS(8786), + [anon_sym_volatile] = ACTIONS(8786), + [anon_sym_restrict] = ACTIONS(8786), + [anon_sym___restrict__] = ACTIONS(8786), + [anon_sym__Atomic] = ACTIONS(8786), + [anon_sym__Noreturn] = ACTIONS(8786), + [anon_sym_noreturn] = ACTIONS(8786), + [anon_sym__Nonnull] = ACTIONS(8786), + [anon_sym_mutable] = ACTIONS(8786), + [anon_sym_constinit] = ACTIONS(8786), + [anon_sym_consteval] = ACTIONS(8786), + [anon_sym_alignas] = ACTIONS(8786), + [anon_sym__Alignas] = ACTIONS(8786), + [sym_primitive_type] = ACTIONS(8786), + [anon_sym_enum] = ACTIONS(8786), + [anon_sym_class] = ACTIONS(8786), + [anon_sym_struct] = ACTIONS(8786), + [anon_sym_union] = ACTIONS(8786), + [anon_sym_typename] = ACTIONS(8786), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8786), + [anon_sym_decltype] = ACTIONS(8786), + [anon_sym_explicit] = ACTIONS(8786), + [anon_sym_private] = ACTIONS(8786), + [anon_sym_template] = ACTIONS(8786), + [anon_sym_operator] = ACTIONS(8786), + [anon_sym_friend] = ACTIONS(8786), + [anon_sym_public] = ACTIONS(8786), + [anon_sym_protected] = ACTIONS(8786), + [anon_sym_static_assert] = ACTIONS(8786), + [anon_sym_LBRACK_COLON] = ACTIONS(8788), + }, + [STATE(3284)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3295), + [sym_identifier] = ACTIONS(7675), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7677), + [anon_sym_COMMA] = ACTIONS(7677), + [aux_sym_preproc_if_token2] = ACTIONS(7677), + [aux_sym_preproc_else_token1] = ACTIONS(7677), + [aux_sym_preproc_elif_token1] = ACTIONS(7675), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7677), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7677), + [anon_sym_LPAREN2] = ACTIONS(7677), + [anon_sym_DASH] = ACTIONS(7675), + [anon_sym_PLUS] = ACTIONS(7675), + [anon_sym_STAR] = ACTIONS(7677), + [anon_sym_SLASH] = ACTIONS(7675), + [anon_sym_PERCENT] = ACTIONS(7677), + [anon_sym_PIPE_PIPE] = ACTIONS(7677), + [anon_sym_AMP_AMP] = ACTIONS(7677), + [anon_sym_PIPE] = ACTIONS(7675), + [anon_sym_CARET] = ACTIONS(7677), + [anon_sym_AMP] = ACTIONS(7675), + [anon_sym_EQ_EQ] = ACTIONS(7677), + [anon_sym_BANG_EQ] = ACTIONS(7677), + [anon_sym_GT] = ACTIONS(7675), + [anon_sym_GT_EQ] = ACTIONS(7677), + [anon_sym_LT_EQ] = ACTIONS(7675), + [anon_sym_LT] = ACTIONS(7675), + [anon_sym_LT_LT] = ACTIONS(7677), + [anon_sym_GT_GT] = ACTIONS(7677), + [anon_sym___extension__] = ACTIONS(7675), + [anon_sym___attribute__] = ACTIONS(7675), + [anon_sym___attribute] = ACTIONS(7675), + [anon_sym_LBRACE] = ACTIONS(7677), + [anon_sym_signed] = ACTIONS(9101), + [anon_sym_unsigned] = ACTIONS(9101), + [anon_sym_long] = ACTIONS(9101), + [anon_sym_short] = ACTIONS(9101), + [anon_sym_LBRACK] = ACTIONS(7677), + [anon_sym_RBRACK] = ACTIONS(7677), + [anon_sym_const] = ACTIONS(7675), + [anon_sym_constexpr] = ACTIONS(7675), + [anon_sym_volatile] = ACTIONS(7675), + [anon_sym_restrict] = ACTIONS(7675), + [anon_sym___restrict__] = ACTIONS(7675), + [anon_sym__Atomic] = ACTIONS(7675), + [anon_sym__Noreturn] = ACTIONS(7675), + [anon_sym_noreturn] = ACTIONS(7675), + [anon_sym__Nonnull] = ACTIONS(7675), + [anon_sym_mutable] = ACTIONS(7675), + [anon_sym_constinit] = ACTIONS(7675), + [anon_sym_consteval] = ACTIONS(7675), + [anon_sym_alignas] = ACTIONS(7675), + [anon_sym__Alignas] = ACTIONS(7675), + [anon_sym_QMARK] = ACTIONS(7677), + [anon_sym_LT_EQ_GT] = ACTIONS(7677), + [anon_sym_or] = ACTIONS(7675), + [anon_sym_and] = ACTIONS(7675), + [anon_sym_bitor] = ACTIONS(7675), + [anon_sym_xor] = ACTIONS(7675), + [anon_sym_bitand] = ACTIONS(7675), + [anon_sym_not_eq] = ACTIONS(7675), + [anon_sym_DASH_DASH] = ACTIONS(7677), + [anon_sym_PLUS_PLUS] = ACTIONS(7677), + [anon_sym_DOT] = ACTIONS(7675), + [anon_sym_DOT_STAR] = ACTIONS(7677), + [anon_sym_DASH_GT] = ACTIONS(7677), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7675), + [anon_sym_override] = ACTIONS(7675), + [anon_sym_requires] = ACTIONS(7675), + }, + [STATE(3285)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3295), + [sym_identifier] = ACTIONS(7681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7683), + [anon_sym_COMMA] = ACTIONS(7683), + [aux_sym_preproc_if_token2] = ACTIONS(7683), + [aux_sym_preproc_else_token1] = ACTIONS(7683), + [aux_sym_preproc_elif_token1] = ACTIONS(7681), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7683), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7683), + [anon_sym_LPAREN2] = ACTIONS(7683), + [anon_sym_DASH] = ACTIONS(7681), + [anon_sym_PLUS] = ACTIONS(7681), + [anon_sym_STAR] = ACTIONS(7683), + [anon_sym_SLASH] = ACTIONS(7681), + [anon_sym_PERCENT] = ACTIONS(7683), + [anon_sym_PIPE_PIPE] = ACTIONS(7683), + [anon_sym_AMP_AMP] = ACTIONS(7683), + [anon_sym_PIPE] = ACTIONS(7681), + [anon_sym_CARET] = ACTIONS(7683), + [anon_sym_AMP] = ACTIONS(7681), + [anon_sym_EQ_EQ] = ACTIONS(7683), + [anon_sym_BANG_EQ] = ACTIONS(7683), + [anon_sym_GT] = ACTIONS(7681), + [anon_sym_GT_EQ] = ACTIONS(7683), + [anon_sym_LT_EQ] = ACTIONS(7681), + [anon_sym_LT] = ACTIONS(7681), + [anon_sym_LT_LT] = ACTIONS(7683), + [anon_sym_GT_GT] = ACTIONS(7683), + [anon_sym___extension__] = ACTIONS(7681), + [anon_sym___attribute__] = ACTIONS(7681), + [anon_sym___attribute] = ACTIONS(7681), + [anon_sym_LBRACE] = ACTIONS(7683), + [anon_sym_signed] = ACTIONS(9101), + [anon_sym_unsigned] = ACTIONS(9101), + [anon_sym_long] = ACTIONS(9101), + [anon_sym_short] = ACTIONS(9101), + [anon_sym_LBRACK] = ACTIONS(7683), + [anon_sym_RBRACK] = ACTIONS(7683), + [anon_sym_const] = ACTIONS(7681), + [anon_sym_constexpr] = ACTIONS(7681), + [anon_sym_volatile] = ACTIONS(7681), + [anon_sym_restrict] = ACTIONS(7681), + [anon_sym___restrict__] = ACTIONS(7681), + [anon_sym__Atomic] = ACTIONS(7681), + [anon_sym__Noreturn] = ACTIONS(7681), + [anon_sym_noreturn] = ACTIONS(7681), + [anon_sym__Nonnull] = ACTIONS(7681), + [anon_sym_mutable] = ACTIONS(7681), + [anon_sym_constinit] = ACTIONS(7681), + [anon_sym_consteval] = ACTIONS(7681), + [anon_sym_alignas] = ACTIONS(7681), + [anon_sym__Alignas] = ACTIONS(7681), + [anon_sym_QMARK] = ACTIONS(7683), + [anon_sym_LT_EQ_GT] = ACTIONS(7683), + [anon_sym_or] = ACTIONS(7681), + [anon_sym_and] = ACTIONS(7681), + [anon_sym_bitor] = ACTIONS(7681), + [anon_sym_xor] = ACTIONS(7681), + [anon_sym_bitand] = ACTIONS(7681), + [anon_sym_not_eq] = ACTIONS(7681), + [anon_sym_DASH_DASH] = ACTIONS(7683), + [anon_sym_PLUS_PLUS] = ACTIONS(7683), + [anon_sym_DOT] = ACTIONS(7681), + [anon_sym_DOT_STAR] = ACTIONS(7683), + [anon_sym_DASH_GT] = ACTIONS(7683), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7681), + [anon_sym_override] = ACTIONS(7681), + [anon_sym_requires] = ACTIONS(7681), + }, + [STATE(3286)] = { + [sym_identifier] = ACTIONS(8730), + [aux_sym_preproc_def_token1] = ACTIONS(8730), + [aux_sym_preproc_if_token1] = ACTIONS(8730), + [aux_sym_preproc_if_token2] = ACTIONS(8730), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8730), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8730), + [sym_preproc_directive] = ACTIONS(8730), + [anon_sym_LPAREN2] = ACTIONS(8732), + [anon_sym_TILDE] = ACTIONS(8732), + [anon_sym_STAR] = ACTIONS(8732), + [anon_sym_AMP_AMP] = ACTIONS(8732), + [anon_sym_AMP] = ACTIONS(8730), + [anon_sym_SEMI] = ACTIONS(8732), + [anon_sym___extension__] = ACTIONS(8730), + [anon_sym_typedef] = ACTIONS(8730), + [anon_sym_virtual] = ACTIONS(8730), + [anon_sym_extern] = ACTIONS(8730), + [anon_sym___attribute__] = ACTIONS(8730), + [anon_sym___attribute] = ACTIONS(8730), + [anon_sym_using] = ACTIONS(8730), + [anon_sym_COLON_COLON] = ACTIONS(8732), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8732), + [anon_sym___declspec] = ACTIONS(8730), + [anon_sym___based] = ACTIONS(8730), + [anon_sym_signed] = ACTIONS(8730), + [anon_sym_unsigned] = ACTIONS(8730), + [anon_sym_long] = ACTIONS(8730), + [anon_sym_short] = ACTIONS(8730), + [anon_sym_LBRACK] = ACTIONS(8730), + [anon_sym_static] = ACTIONS(8730), + [anon_sym_register] = ACTIONS(8730), + [anon_sym_inline] = ACTIONS(8730), + [anon_sym___inline] = ACTIONS(8730), + [anon_sym___inline__] = ACTIONS(8730), + [anon_sym___forceinline] = ACTIONS(8730), + [anon_sym_thread_local] = ACTIONS(8730), + [anon_sym___thread] = ACTIONS(8730), + [anon_sym_const] = ACTIONS(8730), + [anon_sym_constexpr] = ACTIONS(8730), + [anon_sym_volatile] = ACTIONS(8730), + [anon_sym_restrict] = ACTIONS(8730), + [anon_sym___restrict__] = ACTIONS(8730), + [anon_sym__Atomic] = ACTIONS(8730), + [anon_sym__Noreturn] = ACTIONS(8730), + [anon_sym_noreturn] = ACTIONS(8730), + [anon_sym__Nonnull] = ACTIONS(8730), + [anon_sym_mutable] = ACTIONS(8730), + [anon_sym_constinit] = ACTIONS(8730), + [anon_sym_consteval] = ACTIONS(8730), + [anon_sym_alignas] = ACTIONS(8730), + [anon_sym__Alignas] = ACTIONS(8730), + [sym_primitive_type] = ACTIONS(8730), + [anon_sym_enum] = ACTIONS(8730), + [anon_sym_class] = ACTIONS(8730), + [anon_sym_struct] = ACTIONS(8730), + [anon_sym_union] = ACTIONS(8730), + [anon_sym_typename] = ACTIONS(8730), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8730), + [anon_sym_decltype] = ACTIONS(8730), + [anon_sym_explicit] = ACTIONS(8730), + [anon_sym_private] = ACTIONS(8730), + [anon_sym_template] = ACTIONS(8730), + [anon_sym_operator] = ACTIONS(8730), + [anon_sym_friend] = ACTIONS(8730), + [anon_sym_public] = ACTIONS(8730), + [anon_sym_protected] = ACTIONS(8730), + [anon_sym_static_assert] = ACTIONS(8730), + [anon_sym_LBRACK_COLON] = ACTIONS(8732), + }, + [STATE(3287)] = { + [sym_identifier] = ACTIONS(8742), + [aux_sym_preproc_def_token1] = ACTIONS(8742), + [aux_sym_preproc_if_token1] = ACTIONS(8742), + [aux_sym_preproc_if_token2] = ACTIONS(8742), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8742), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8742), + [sym_preproc_directive] = ACTIONS(8742), + [anon_sym_LPAREN2] = ACTIONS(8744), + [anon_sym_TILDE] = ACTIONS(8744), + [anon_sym_STAR] = ACTIONS(8744), + [anon_sym_AMP_AMP] = ACTIONS(8744), + [anon_sym_AMP] = ACTIONS(8742), + [anon_sym_SEMI] = ACTIONS(8744), + [anon_sym___extension__] = ACTIONS(8742), + [anon_sym_typedef] = ACTIONS(8742), + [anon_sym_virtual] = ACTIONS(8742), + [anon_sym_extern] = ACTIONS(8742), + [anon_sym___attribute__] = ACTIONS(8742), + [anon_sym___attribute] = ACTIONS(8742), + [anon_sym_using] = ACTIONS(8742), + [anon_sym_COLON_COLON] = ACTIONS(8744), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8744), + [anon_sym___declspec] = ACTIONS(8742), + [anon_sym___based] = ACTIONS(8742), + [anon_sym_signed] = ACTIONS(8742), + [anon_sym_unsigned] = ACTIONS(8742), + [anon_sym_long] = ACTIONS(8742), + [anon_sym_short] = ACTIONS(8742), + [anon_sym_LBRACK] = ACTIONS(8742), + [anon_sym_static] = ACTIONS(8742), + [anon_sym_register] = ACTIONS(8742), + [anon_sym_inline] = ACTIONS(8742), + [anon_sym___inline] = ACTIONS(8742), + [anon_sym___inline__] = ACTIONS(8742), + [anon_sym___forceinline] = ACTIONS(8742), + [anon_sym_thread_local] = ACTIONS(8742), + [anon_sym___thread] = ACTIONS(8742), + [anon_sym_const] = ACTIONS(8742), + [anon_sym_constexpr] = ACTIONS(8742), + [anon_sym_volatile] = ACTIONS(8742), + [anon_sym_restrict] = ACTIONS(8742), + [anon_sym___restrict__] = ACTIONS(8742), + [anon_sym__Atomic] = ACTIONS(8742), + [anon_sym__Noreturn] = ACTIONS(8742), + [anon_sym_noreturn] = ACTIONS(8742), + [anon_sym__Nonnull] = ACTIONS(8742), + [anon_sym_mutable] = ACTIONS(8742), + [anon_sym_constinit] = ACTIONS(8742), + [anon_sym_consteval] = ACTIONS(8742), + [anon_sym_alignas] = ACTIONS(8742), + [anon_sym__Alignas] = ACTIONS(8742), + [sym_primitive_type] = ACTIONS(8742), + [anon_sym_enum] = ACTIONS(8742), + [anon_sym_class] = ACTIONS(8742), + [anon_sym_struct] = ACTIONS(8742), + [anon_sym_union] = ACTIONS(8742), + [anon_sym_typename] = ACTIONS(8742), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8742), + [anon_sym_decltype] = ACTIONS(8742), + [anon_sym_explicit] = ACTIONS(8742), + [anon_sym_private] = ACTIONS(8742), + [anon_sym_template] = ACTIONS(8742), + [anon_sym_operator] = ACTIONS(8742), + [anon_sym_friend] = ACTIONS(8742), + [anon_sym_public] = ACTIONS(8742), + [anon_sym_protected] = ACTIONS(8742), + [anon_sym_static_assert] = ACTIONS(8742), + [anon_sym_LBRACK_COLON] = ACTIONS(8744), + }, + [STATE(3288)] = { + [sym_identifier] = ACTIONS(8746), + [aux_sym_preproc_def_token1] = ACTIONS(8746), + [aux_sym_preproc_if_token1] = ACTIONS(8746), + [aux_sym_preproc_if_token2] = ACTIONS(8746), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8746), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8746), + [sym_preproc_directive] = ACTIONS(8746), + [anon_sym_LPAREN2] = ACTIONS(8748), + [anon_sym_TILDE] = ACTIONS(8748), + [anon_sym_STAR] = ACTIONS(8748), + [anon_sym_AMP_AMP] = ACTIONS(8748), + [anon_sym_AMP] = ACTIONS(8746), + [anon_sym_SEMI] = ACTIONS(8748), + [anon_sym___extension__] = ACTIONS(8746), + [anon_sym_typedef] = ACTIONS(8746), + [anon_sym_virtual] = ACTIONS(8746), + [anon_sym_extern] = ACTIONS(8746), + [anon_sym___attribute__] = ACTIONS(8746), + [anon_sym___attribute] = ACTIONS(8746), + [anon_sym_using] = ACTIONS(8746), + [anon_sym_COLON_COLON] = ACTIONS(8748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8748), + [anon_sym___declspec] = ACTIONS(8746), + [anon_sym___based] = ACTIONS(8746), + [anon_sym_signed] = ACTIONS(8746), + [anon_sym_unsigned] = ACTIONS(8746), + [anon_sym_long] = ACTIONS(8746), + [anon_sym_short] = ACTIONS(8746), + [anon_sym_LBRACK] = ACTIONS(8746), + [anon_sym_static] = ACTIONS(8746), + [anon_sym_register] = ACTIONS(8746), + [anon_sym_inline] = ACTIONS(8746), + [anon_sym___inline] = ACTIONS(8746), + [anon_sym___inline__] = ACTIONS(8746), + [anon_sym___forceinline] = ACTIONS(8746), + [anon_sym_thread_local] = ACTIONS(8746), + [anon_sym___thread] = ACTIONS(8746), + [anon_sym_const] = ACTIONS(8746), + [anon_sym_constexpr] = ACTIONS(8746), + [anon_sym_volatile] = ACTIONS(8746), + [anon_sym_restrict] = ACTIONS(8746), + [anon_sym___restrict__] = ACTIONS(8746), + [anon_sym__Atomic] = ACTIONS(8746), + [anon_sym__Noreturn] = ACTIONS(8746), + [anon_sym_noreturn] = ACTIONS(8746), + [anon_sym__Nonnull] = ACTIONS(8746), + [anon_sym_mutable] = ACTIONS(8746), + [anon_sym_constinit] = ACTIONS(8746), + [anon_sym_consteval] = ACTIONS(8746), + [anon_sym_alignas] = ACTIONS(8746), + [anon_sym__Alignas] = ACTIONS(8746), + [sym_primitive_type] = ACTIONS(8746), + [anon_sym_enum] = ACTIONS(8746), + [anon_sym_class] = ACTIONS(8746), + [anon_sym_struct] = ACTIONS(8746), + [anon_sym_union] = ACTIONS(8746), + [anon_sym_typename] = ACTIONS(8746), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8746), + [anon_sym_decltype] = ACTIONS(8746), + [anon_sym_explicit] = ACTIONS(8746), + [anon_sym_private] = ACTIONS(8746), + [anon_sym_template] = ACTIONS(8746), + [anon_sym_operator] = ACTIONS(8746), + [anon_sym_friend] = ACTIONS(8746), + [anon_sym_public] = ACTIONS(8746), + [anon_sym_protected] = ACTIONS(8746), + [anon_sym_static_assert] = ACTIONS(8746), + [anon_sym_LBRACK_COLON] = ACTIONS(8748), + }, + [STATE(3289)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3299), + [sym_identifier] = ACTIONS(7555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7557), + [anon_sym_COMMA] = ACTIONS(7557), + [aux_sym_preproc_if_token2] = ACTIONS(7557), + [aux_sym_preproc_else_token1] = ACTIONS(7557), + [aux_sym_preproc_elif_token1] = ACTIONS(7555), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7557), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7557), + [anon_sym_LPAREN2] = ACTIONS(7557), + [anon_sym_DASH] = ACTIONS(7555), + [anon_sym_PLUS] = ACTIONS(7555), + [anon_sym_STAR] = ACTIONS(7557), + [anon_sym_SLASH] = ACTIONS(7555), + [anon_sym_PERCENT] = ACTIONS(7557), + [anon_sym_PIPE_PIPE] = ACTIONS(7557), + [anon_sym_AMP_AMP] = ACTIONS(7557), + [anon_sym_PIPE] = ACTIONS(7555), + [anon_sym_CARET] = ACTIONS(7557), + [anon_sym_AMP] = ACTIONS(7555), + [anon_sym_EQ_EQ] = ACTIONS(7557), + [anon_sym_BANG_EQ] = ACTIONS(7557), + [anon_sym_GT] = ACTIONS(7555), + [anon_sym_GT_EQ] = ACTIONS(7557), + [anon_sym_LT_EQ] = ACTIONS(7555), + [anon_sym_LT] = ACTIONS(7555), + [anon_sym_LT_LT] = ACTIONS(7557), + [anon_sym_GT_GT] = ACTIONS(7557), + [anon_sym___extension__] = ACTIONS(7555), + [anon_sym___attribute__] = ACTIONS(7555), + [anon_sym___attribute] = ACTIONS(7555), + [anon_sym_LBRACE] = ACTIONS(7557), + [anon_sym_signed] = ACTIONS(9103), + [anon_sym_unsigned] = ACTIONS(9103), + [anon_sym_long] = ACTIONS(9103), + [anon_sym_short] = ACTIONS(9103), + [anon_sym_LBRACK] = ACTIONS(7557), + [anon_sym_RBRACK] = ACTIONS(7557), + [anon_sym_const] = ACTIONS(7555), + [anon_sym_constexpr] = ACTIONS(7555), + [anon_sym_volatile] = ACTIONS(7555), + [anon_sym_restrict] = ACTIONS(7555), + [anon_sym___restrict__] = ACTIONS(7555), + [anon_sym__Atomic] = ACTIONS(7555), + [anon_sym__Noreturn] = ACTIONS(7555), + [anon_sym_noreturn] = ACTIONS(7555), + [anon_sym__Nonnull] = ACTIONS(7555), + [anon_sym_mutable] = ACTIONS(7555), + [anon_sym_constinit] = ACTIONS(7555), + [anon_sym_consteval] = ACTIONS(7555), + [anon_sym_alignas] = ACTIONS(7555), + [anon_sym__Alignas] = ACTIONS(7555), + [anon_sym_QMARK] = ACTIONS(7557), + [anon_sym_LT_EQ_GT] = ACTIONS(7557), + [anon_sym_or] = ACTIONS(7555), + [anon_sym_and] = ACTIONS(7555), + [anon_sym_bitor] = ACTIONS(7555), + [anon_sym_xor] = ACTIONS(7555), + [anon_sym_bitand] = ACTIONS(7555), + [anon_sym_not_eq] = ACTIONS(7555), + [anon_sym_DASH_DASH] = ACTIONS(7557), + [anon_sym_PLUS_PLUS] = ACTIONS(7557), + [anon_sym_DOT] = ACTIONS(7555), + [anon_sym_DOT_STAR] = ACTIONS(7557), + [anon_sym_DASH_GT] = ACTIONS(7557), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7555), + [anon_sym_override] = ACTIONS(7555), + [anon_sym_requires] = ACTIONS(7555), + }, + [STATE(3290)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3300), + [sym_identifier] = ACTIONS(7783), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7785), + [anon_sym_COMMA] = ACTIONS(7785), + [aux_sym_preproc_if_token2] = ACTIONS(7785), + [aux_sym_preproc_else_token1] = ACTIONS(7785), + [aux_sym_preproc_elif_token1] = ACTIONS(7783), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7785), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7785), + [anon_sym_LPAREN2] = ACTIONS(7785), + [anon_sym_DASH] = ACTIONS(7783), + [anon_sym_PLUS] = ACTIONS(7783), + [anon_sym_STAR] = ACTIONS(7785), + [anon_sym_SLASH] = ACTIONS(7783), + [anon_sym_PERCENT] = ACTIONS(7785), + [anon_sym_PIPE_PIPE] = ACTIONS(7785), + [anon_sym_AMP_AMP] = ACTIONS(7785), + [anon_sym_PIPE] = ACTIONS(7783), + [anon_sym_CARET] = ACTIONS(7785), + [anon_sym_AMP] = ACTIONS(7783), + [anon_sym_EQ_EQ] = ACTIONS(7785), + [anon_sym_BANG_EQ] = ACTIONS(7785), + [anon_sym_GT] = ACTIONS(7783), + [anon_sym_GT_EQ] = ACTIONS(7785), + [anon_sym_LT_EQ] = ACTIONS(7783), + [anon_sym_LT] = ACTIONS(7783), + [anon_sym_LT_LT] = ACTIONS(7785), + [anon_sym_GT_GT] = ACTIONS(7785), + [anon_sym___extension__] = ACTIONS(7783), + [anon_sym___attribute__] = ACTIONS(7783), + [anon_sym___attribute] = ACTIONS(7783), + [anon_sym_LBRACE] = ACTIONS(7785), + [anon_sym_signed] = ACTIONS(9105), + [anon_sym_unsigned] = ACTIONS(9105), + [anon_sym_long] = ACTIONS(9105), + [anon_sym_short] = ACTIONS(9105), + [anon_sym_LBRACK] = ACTIONS(7785), + [anon_sym_RBRACK] = ACTIONS(7785), + [anon_sym_const] = ACTIONS(7783), + [anon_sym_constexpr] = ACTIONS(7783), + [anon_sym_volatile] = ACTIONS(7783), + [anon_sym_restrict] = ACTIONS(7783), + [anon_sym___restrict__] = ACTIONS(7783), + [anon_sym__Atomic] = ACTIONS(7783), + [anon_sym__Noreturn] = ACTIONS(7783), + [anon_sym_noreturn] = ACTIONS(7783), + [anon_sym__Nonnull] = ACTIONS(7783), + [anon_sym_mutable] = ACTIONS(7783), + [anon_sym_constinit] = ACTIONS(7783), + [anon_sym_consteval] = ACTIONS(7783), + [anon_sym_alignas] = ACTIONS(7783), + [anon_sym__Alignas] = ACTIONS(7783), + [anon_sym_QMARK] = ACTIONS(7785), + [anon_sym_LT_EQ_GT] = ACTIONS(7785), + [anon_sym_or] = ACTIONS(7783), + [anon_sym_and] = ACTIONS(7783), + [anon_sym_bitor] = ACTIONS(7783), + [anon_sym_xor] = ACTIONS(7783), + [anon_sym_bitand] = ACTIONS(7783), + [anon_sym_not_eq] = ACTIONS(7783), + [anon_sym_DASH_DASH] = ACTIONS(7785), + [anon_sym_PLUS_PLUS] = ACTIONS(7785), + [anon_sym_DOT] = ACTIONS(7783), + [anon_sym_DOT_STAR] = ACTIONS(7785), + [anon_sym_DASH_GT] = ACTIONS(7785), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7783), + [anon_sym_override] = ACTIONS(7783), + [anon_sym_requires] = ACTIONS(7783), + }, + [STATE(3291)] = { + [sym_identifier] = ACTIONS(8766), + [aux_sym_preproc_def_token1] = ACTIONS(8766), + [aux_sym_preproc_if_token1] = ACTIONS(8766), + [aux_sym_preproc_if_token2] = ACTIONS(8766), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8766), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8766), + [sym_preproc_directive] = ACTIONS(8766), + [anon_sym_LPAREN2] = ACTIONS(8768), + [anon_sym_TILDE] = ACTIONS(8768), + [anon_sym_STAR] = ACTIONS(8768), + [anon_sym_AMP_AMP] = ACTIONS(8768), + [anon_sym_AMP] = ACTIONS(8766), + [anon_sym_SEMI] = ACTIONS(8768), + [anon_sym___extension__] = ACTIONS(8766), + [anon_sym_typedef] = ACTIONS(8766), + [anon_sym_virtual] = ACTIONS(8766), + [anon_sym_extern] = ACTIONS(8766), + [anon_sym___attribute__] = ACTIONS(8766), + [anon_sym___attribute] = ACTIONS(8766), + [anon_sym_using] = ACTIONS(8766), + [anon_sym_COLON_COLON] = ACTIONS(8768), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8768), + [anon_sym___declspec] = ACTIONS(8766), + [anon_sym___based] = ACTIONS(8766), + [anon_sym_signed] = ACTIONS(8766), + [anon_sym_unsigned] = ACTIONS(8766), + [anon_sym_long] = ACTIONS(8766), + [anon_sym_short] = ACTIONS(8766), + [anon_sym_LBRACK] = ACTIONS(8766), + [anon_sym_static] = ACTIONS(8766), + [anon_sym_register] = ACTIONS(8766), + [anon_sym_inline] = ACTIONS(8766), + [anon_sym___inline] = ACTIONS(8766), + [anon_sym___inline__] = ACTIONS(8766), + [anon_sym___forceinline] = ACTIONS(8766), + [anon_sym_thread_local] = ACTIONS(8766), + [anon_sym___thread] = ACTIONS(8766), + [anon_sym_const] = ACTIONS(8766), + [anon_sym_constexpr] = ACTIONS(8766), + [anon_sym_volatile] = ACTIONS(8766), + [anon_sym_restrict] = ACTIONS(8766), + [anon_sym___restrict__] = ACTIONS(8766), + [anon_sym__Atomic] = ACTIONS(8766), + [anon_sym__Noreturn] = ACTIONS(8766), + [anon_sym_noreturn] = ACTIONS(8766), + [anon_sym__Nonnull] = ACTIONS(8766), + [anon_sym_mutable] = ACTIONS(8766), + [anon_sym_constinit] = ACTIONS(8766), + [anon_sym_consteval] = ACTIONS(8766), + [anon_sym_alignas] = ACTIONS(8766), + [anon_sym__Alignas] = ACTIONS(8766), + [sym_primitive_type] = ACTIONS(8766), + [anon_sym_enum] = ACTIONS(8766), + [anon_sym_class] = ACTIONS(8766), + [anon_sym_struct] = ACTIONS(8766), + [anon_sym_union] = ACTIONS(8766), + [anon_sym_typename] = ACTIONS(8766), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8766), + [anon_sym_decltype] = ACTIONS(8766), + [anon_sym_explicit] = ACTIONS(8766), + [anon_sym_private] = ACTIONS(8766), + [anon_sym_template] = ACTIONS(8766), + [anon_sym_operator] = ACTIONS(8766), + [anon_sym_friend] = ACTIONS(8766), + [anon_sym_public] = ACTIONS(8766), + [anon_sym_protected] = ACTIONS(8766), + [anon_sym_static_assert] = ACTIONS(8766), + [anon_sym_LBRACK_COLON] = ACTIONS(8768), + }, + [STATE(3292)] = { + [sym_identifier] = ACTIONS(8766), + [aux_sym_preproc_def_token1] = ACTIONS(8766), + [aux_sym_preproc_if_token1] = ACTIONS(8766), + [aux_sym_preproc_if_token2] = ACTIONS(8766), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8766), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8766), + [sym_preproc_directive] = ACTIONS(8766), + [anon_sym_LPAREN2] = ACTIONS(8768), + [anon_sym_TILDE] = ACTIONS(8768), + [anon_sym_STAR] = ACTIONS(8768), + [anon_sym_AMP_AMP] = ACTIONS(8768), + [anon_sym_AMP] = ACTIONS(8766), + [anon_sym_SEMI] = ACTIONS(8768), + [anon_sym___extension__] = ACTIONS(8766), + [anon_sym_typedef] = ACTIONS(8766), + [anon_sym_virtual] = ACTIONS(8766), + [anon_sym_extern] = ACTIONS(8766), + [anon_sym___attribute__] = ACTIONS(8766), + [anon_sym___attribute] = ACTIONS(8766), + [anon_sym_using] = ACTIONS(8766), + [anon_sym_COLON_COLON] = ACTIONS(8768), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8768), + [anon_sym___declspec] = ACTIONS(8766), + [anon_sym___based] = ACTIONS(8766), + [anon_sym_signed] = ACTIONS(8766), + [anon_sym_unsigned] = ACTIONS(8766), + [anon_sym_long] = ACTIONS(8766), + [anon_sym_short] = ACTIONS(8766), + [anon_sym_LBRACK] = ACTIONS(8766), + [anon_sym_static] = ACTIONS(8766), + [anon_sym_register] = ACTIONS(8766), + [anon_sym_inline] = ACTIONS(8766), + [anon_sym___inline] = ACTIONS(8766), + [anon_sym___inline__] = ACTIONS(8766), + [anon_sym___forceinline] = ACTIONS(8766), + [anon_sym_thread_local] = ACTIONS(8766), + [anon_sym___thread] = ACTIONS(8766), + [anon_sym_const] = ACTIONS(8766), + [anon_sym_constexpr] = ACTIONS(8766), + [anon_sym_volatile] = ACTIONS(8766), + [anon_sym_restrict] = ACTIONS(8766), + [anon_sym___restrict__] = ACTIONS(8766), + [anon_sym__Atomic] = ACTIONS(8766), + [anon_sym__Noreturn] = ACTIONS(8766), + [anon_sym_noreturn] = ACTIONS(8766), + [anon_sym__Nonnull] = ACTIONS(8766), + [anon_sym_mutable] = ACTIONS(8766), + [anon_sym_constinit] = ACTIONS(8766), + [anon_sym_consteval] = ACTIONS(8766), + [anon_sym_alignas] = ACTIONS(8766), + [anon_sym__Alignas] = ACTIONS(8766), + [sym_primitive_type] = ACTIONS(8766), + [anon_sym_enum] = ACTIONS(8766), + [anon_sym_class] = ACTIONS(8766), + [anon_sym_struct] = ACTIONS(8766), + [anon_sym_union] = ACTIONS(8766), + [anon_sym_typename] = ACTIONS(8766), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8766), + [anon_sym_decltype] = ACTIONS(8766), + [anon_sym_explicit] = ACTIONS(8766), + [anon_sym_private] = ACTIONS(8766), + [anon_sym_template] = ACTIONS(8766), + [anon_sym_operator] = ACTIONS(8766), + [anon_sym_friend] = ACTIONS(8766), + [anon_sym_public] = ACTIONS(8766), + [anon_sym_protected] = ACTIONS(8766), + [anon_sym_static_assert] = ACTIONS(8766), + [anon_sym_LBRACK_COLON] = ACTIONS(8768), + }, + [STATE(3293)] = { + [sym_identifier] = ACTIONS(8802), + [aux_sym_preproc_def_token1] = ACTIONS(8802), + [aux_sym_preproc_if_token1] = ACTIONS(8802), + [aux_sym_preproc_if_token2] = ACTIONS(8802), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8802), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8802), + [sym_preproc_directive] = ACTIONS(8802), + [anon_sym_LPAREN2] = ACTIONS(8804), + [anon_sym_TILDE] = ACTIONS(8804), + [anon_sym_STAR] = ACTIONS(8804), + [anon_sym_AMP_AMP] = ACTIONS(8804), + [anon_sym_AMP] = ACTIONS(8802), + [anon_sym_SEMI] = ACTIONS(8804), + [anon_sym___extension__] = ACTIONS(8802), + [anon_sym_typedef] = ACTIONS(8802), + [anon_sym_virtual] = ACTIONS(8802), + [anon_sym_extern] = ACTIONS(8802), + [anon_sym___attribute__] = ACTIONS(8802), + [anon_sym___attribute] = ACTIONS(8802), + [anon_sym_using] = ACTIONS(8802), + [anon_sym_COLON_COLON] = ACTIONS(8804), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8804), + [anon_sym___declspec] = ACTIONS(8802), + [anon_sym___based] = ACTIONS(8802), + [anon_sym_signed] = ACTIONS(8802), + [anon_sym_unsigned] = ACTIONS(8802), + [anon_sym_long] = ACTIONS(8802), + [anon_sym_short] = ACTIONS(8802), + [anon_sym_LBRACK] = ACTIONS(8802), + [anon_sym_static] = ACTIONS(8802), + [anon_sym_register] = ACTIONS(8802), + [anon_sym_inline] = ACTIONS(8802), + [anon_sym___inline] = ACTIONS(8802), + [anon_sym___inline__] = ACTIONS(8802), + [anon_sym___forceinline] = ACTIONS(8802), + [anon_sym_thread_local] = ACTIONS(8802), + [anon_sym___thread] = ACTIONS(8802), + [anon_sym_const] = ACTIONS(8802), + [anon_sym_constexpr] = ACTIONS(8802), + [anon_sym_volatile] = ACTIONS(8802), + [anon_sym_restrict] = ACTIONS(8802), + [anon_sym___restrict__] = ACTIONS(8802), + [anon_sym__Atomic] = ACTIONS(8802), + [anon_sym__Noreturn] = ACTIONS(8802), + [anon_sym_noreturn] = ACTIONS(8802), + [anon_sym__Nonnull] = ACTIONS(8802), + [anon_sym_mutable] = ACTIONS(8802), + [anon_sym_constinit] = ACTIONS(8802), + [anon_sym_consteval] = ACTIONS(8802), + [anon_sym_alignas] = ACTIONS(8802), + [anon_sym__Alignas] = ACTIONS(8802), + [sym_primitive_type] = ACTIONS(8802), + [anon_sym_enum] = ACTIONS(8802), + [anon_sym_class] = ACTIONS(8802), + [anon_sym_struct] = ACTIONS(8802), + [anon_sym_union] = ACTIONS(8802), + [anon_sym_typename] = ACTIONS(8802), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8802), + [anon_sym_decltype] = ACTIONS(8802), + [anon_sym_explicit] = ACTIONS(8802), + [anon_sym_private] = ACTIONS(8802), + [anon_sym_template] = ACTIONS(8802), + [anon_sym_operator] = ACTIONS(8802), + [anon_sym_friend] = ACTIONS(8802), + [anon_sym_public] = ACTIONS(8802), + [anon_sym_protected] = ACTIONS(8802), + [anon_sym_static_assert] = ACTIONS(8802), + [anon_sym_LBRACK_COLON] = ACTIONS(8804), + }, + [STATE(3294)] = { + [sym_identifier] = ACTIONS(8810), + [aux_sym_preproc_def_token1] = ACTIONS(8810), + [aux_sym_preproc_if_token1] = ACTIONS(8810), + [aux_sym_preproc_if_token2] = ACTIONS(8810), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8810), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8810), + [sym_preproc_directive] = ACTIONS(8810), + [anon_sym_LPAREN2] = ACTIONS(8812), + [anon_sym_TILDE] = ACTIONS(8812), + [anon_sym_STAR] = ACTIONS(8812), + [anon_sym_AMP_AMP] = ACTIONS(8812), + [anon_sym_AMP] = ACTIONS(8810), + [anon_sym_SEMI] = ACTIONS(8812), + [anon_sym___extension__] = ACTIONS(8810), + [anon_sym_typedef] = ACTIONS(8810), + [anon_sym_virtual] = ACTIONS(8810), + [anon_sym_extern] = ACTIONS(8810), + [anon_sym___attribute__] = ACTIONS(8810), + [anon_sym___attribute] = ACTIONS(8810), + [anon_sym_using] = ACTIONS(8810), + [anon_sym_COLON_COLON] = ACTIONS(8812), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8812), + [anon_sym___declspec] = ACTIONS(8810), + [anon_sym___based] = ACTIONS(8810), + [anon_sym_signed] = ACTIONS(8810), + [anon_sym_unsigned] = ACTIONS(8810), + [anon_sym_long] = ACTIONS(8810), + [anon_sym_short] = ACTIONS(8810), + [anon_sym_LBRACK] = ACTIONS(8810), + [anon_sym_static] = ACTIONS(8810), + [anon_sym_register] = ACTIONS(8810), + [anon_sym_inline] = ACTIONS(8810), + [anon_sym___inline] = ACTIONS(8810), + [anon_sym___inline__] = ACTIONS(8810), + [anon_sym___forceinline] = ACTIONS(8810), + [anon_sym_thread_local] = ACTIONS(8810), + [anon_sym___thread] = ACTIONS(8810), + [anon_sym_const] = ACTIONS(8810), + [anon_sym_constexpr] = ACTIONS(8810), + [anon_sym_volatile] = ACTIONS(8810), + [anon_sym_restrict] = ACTIONS(8810), + [anon_sym___restrict__] = ACTIONS(8810), + [anon_sym__Atomic] = ACTIONS(8810), + [anon_sym__Noreturn] = ACTIONS(8810), + [anon_sym_noreturn] = ACTIONS(8810), + [anon_sym__Nonnull] = ACTIONS(8810), + [anon_sym_mutable] = ACTIONS(8810), + [anon_sym_constinit] = ACTIONS(8810), + [anon_sym_consteval] = ACTIONS(8810), + [anon_sym_alignas] = ACTIONS(8810), + [anon_sym__Alignas] = ACTIONS(8810), + [sym_primitive_type] = ACTIONS(8810), + [anon_sym_enum] = ACTIONS(8810), + [anon_sym_class] = ACTIONS(8810), + [anon_sym_struct] = ACTIONS(8810), + [anon_sym_union] = ACTIONS(8810), + [anon_sym_typename] = ACTIONS(8810), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8810), + [anon_sym_decltype] = ACTIONS(8810), + [anon_sym_explicit] = ACTIONS(8810), + [anon_sym_private] = ACTIONS(8810), + [anon_sym_template] = ACTIONS(8810), + [anon_sym_operator] = ACTIONS(8810), + [anon_sym_friend] = ACTIONS(8810), + [anon_sym_public] = ACTIONS(8810), + [anon_sym_protected] = ACTIONS(8810), + [anon_sym_static_assert] = ACTIONS(8810), + [anon_sym_LBRACK_COLON] = ACTIONS(8812), + }, + [STATE(3295)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3295), + [sym_identifier] = ACTIONS(6999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7001), + [anon_sym_COMMA] = ACTIONS(7001), + [aux_sym_preproc_if_token2] = ACTIONS(7001), + [aux_sym_preproc_else_token1] = ACTIONS(7001), + [aux_sym_preproc_elif_token1] = ACTIONS(6999), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7001), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7001), + [anon_sym_LPAREN2] = ACTIONS(7001), + [anon_sym_DASH] = ACTIONS(6999), + [anon_sym_PLUS] = ACTIONS(6999), + [anon_sym_STAR] = ACTIONS(7001), + [anon_sym_SLASH] = ACTIONS(6999), + [anon_sym_PERCENT] = ACTIONS(7001), + [anon_sym_PIPE_PIPE] = ACTIONS(7001), + [anon_sym_AMP_AMP] = ACTIONS(7001), + [anon_sym_PIPE] = ACTIONS(6999), + [anon_sym_CARET] = ACTIONS(7001), + [anon_sym_AMP] = ACTIONS(6999), + [anon_sym_EQ_EQ] = ACTIONS(7001), + [anon_sym_BANG_EQ] = ACTIONS(7001), + [anon_sym_GT] = ACTIONS(6999), + [anon_sym_GT_EQ] = ACTIONS(7001), + [anon_sym_LT_EQ] = ACTIONS(6999), + [anon_sym_LT] = ACTIONS(6999), + [anon_sym_LT_LT] = ACTIONS(7001), + [anon_sym_GT_GT] = ACTIONS(7001), + [anon_sym___extension__] = ACTIONS(6999), + [anon_sym___attribute__] = ACTIONS(6999), + [anon_sym___attribute] = ACTIONS(6999), + [anon_sym_LBRACE] = ACTIONS(7001), + [anon_sym_signed] = ACTIONS(9107), + [anon_sym_unsigned] = ACTIONS(9107), + [anon_sym_long] = ACTIONS(9107), + [anon_sym_short] = ACTIONS(9107), + [anon_sym_LBRACK] = ACTIONS(7001), + [anon_sym_RBRACK] = ACTIONS(7001), + [anon_sym_const] = ACTIONS(6999), + [anon_sym_constexpr] = ACTIONS(6999), + [anon_sym_volatile] = ACTIONS(6999), + [anon_sym_restrict] = ACTIONS(6999), + [anon_sym___restrict__] = ACTIONS(6999), + [anon_sym__Atomic] = ACTIONS(6999), + [anon_sym__Noreturn] = ACTIONS(6999), + [anon_sym_noreturn] = ACTIONS(6999), + [anon_sym__Nonnull] = ACTIONS(6999), + [anon_sym_mutable] = ACTIONS(6999), + [anon_sym_constinit] = ACTIONS(6999), + [anon_sym_consteval] = ACTIONS(6999), + [anon_sym_alignas] = ACTIONS(6999), + [anon_sym__Alignas] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7001), + [anon_sym_LT_EQ_GT] = ACTIONS(7001), + [anon_sym_or] = ACTIONS(6999), + [anon_sym_and] = ACTIONS(6999), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(6999), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(7001), + [anon_sym_PLUS_PLUS] = ACTIONS(7001), + [anon_sym_DOT] = ACTIONS(6999), + [anon_sym_DOT_STAR] = ACTIONS(7001), + [anon_sym_DASH_GT] = ACTIONS(7001), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6999), + [anon_sym_override] = ACTIONS(6999), + [anon_sym_requires] = ACTIONS(6999), + }, + [STATE(3296)] = { + [sym_identifier] = ACTIONS(3600), + [aux_sym_preproc_def_token1] = ACTIONS(3600), + [aux_sym_preproc_if_token1] = ACTIONS(3600), + [aux_sym_preproc_if_token2] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), + [sym_preproc_directive] = ACTIONS(3600), + [anon_sym_LPAREN2] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3602), + [anon_sym_STAR] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_AMP] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym___extension__] = ACTIONS(3600), + [anon_sym_typedef] = ACTIONS(3600), + [anon_sym_virtual] = ACTIONS(3600), + [anon_sym_extern] = ACTIONS(3600), + [anon_sym___attribute__] = ACTIONS(3600), + [anon_sym___attribute] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), + [anon_sym___declspec] = ACTIONS(3600), + [anon_sym___based] = ACTIONS(3600), + [anon_sym_signed] = ACTIONS(3600), + [anon_sym_unsigned] = ACTIONS(3600), + [anon_sym_long] = ACTIONS(3600), + [anon_sym_short] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_register] = ACTIONS(3600), + [anon_sym_inline] = ACTIONS(3600), + [anon_sym___inline] = ACTIONS(3600), + [anon_sym___inline__] = ACTIONS(3600), + [anon_sym___forceinline] = ACTIONS(3600), + [anon_sym_thread_local] = ACTIONS(3600), + [anon_sym___thread] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_constexpr] = ACTIONS(3600), + [anon_sym_volatile] = ACTIONS(3600), + [anon_sym_restrict] = ACTIONS(3600), + [anon_sym___restrict__] = ACTIONS(3600), + [anon_sym__Atomic] = ACTIONS(3600), + [anon_sym__Noreturn] = ACTIONS(3600), + [anon_sym_noreturn] = ACTIONS(3600), + [anon_sym__Nonnull] = ACTIONS(3600), + [anon_sym_mutable] = ACTIONS(3600), + [anon_sym_constinit] = ACTIONS(3600), + [anon_sym_consteval] = ACTIONS(3600), + [anon_sym_alignas] = ACTIONS(3600), + [anon_sym__Alignas] = ACTIONS(3600), + [sym_primitive_type] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_struct] = ACTIONS(3600), + [anon_sym_union] = ACTIONS(3600), + [anon_sym_typename] = ACTIONS(3600), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3600), + [anon_sym_decltype] = ACTIONS(3600), + [anon_sym_explicit] = ACTIONS(3600), + [anon_sym_private] = ACTIONS(3600), + [anon_sym_template] = ACTIONS(3600), + [anon_sym_operator] = ACTIONS(3600), + [anon_sym_friend] = ACTIONS(3600), + [anon_sym_public] = ACTIONS(3600), + [anon_sym_protected] = ACTIONS(3600), + [anon_sym_static_assert] = ACTIONS(3600), + [anon_sym_LBRACK_COLON] = ACTIONS(3602), + }, + [STATE(3297)] = { + [sym_identifier] = ACTIONS(3600), + [aux_sym_preproc_def_token1] = ACTIONS(3600), + [aux_sym_preproc_if_token1] = ACTIONS(3600), + [aux_sym_preproc_if_token2] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), + [sym_preproc_directive] = ACTIONS(3600), + [anon_sym_LPAREN2] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3602), + [anon_sym_STAR] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_AMP] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym___extension__] = ACTIONS(3600), + [anon_sym_typedef] = ACTIONS(3600), + [anon_sym_virtual] = ACTIONS(3600), + [anon_sym_extern] = ACTIONS(3600), + [anon_sym___attribute__] = ACTIONS(3600), + [anon_sym___attribute] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), + [anon_sym___declspec] = ACTIONS(3600), + [anon_sym___based] = ACTIONS(3600), + [anon_sym_signed] = ACTIONS(3600), + [anon_sym_unsigned] = ACTIONS(3600), + [anon_sym_long] = ACTIONS(3600), + [anon_sym_short] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_register] = ACTIONS(3600), + [anon_sym_inline] = ACTIONS(3600), + [anon_sym___inline] = ACTIONS(3600), + [anon_sym___inline__] = ACTIONS(3600), + [anon_sym___forceinline] = ACTIONS(3600), + [anon_sym_thread_local] = ACTIONS(3600), + [anon_sym___thread] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_constexpr] = ACTIONS(3600), + [anon_sym_volatile] = ACTIONS(3600), + [anon_sym_restrict] = ACTIONS(3600), + [anon_sym___restrict__] = ACTIONS(3600), + [anon_sym__Atomic] = ACTIONS(3600), + [anon_sym__Noreturn] = ACTIONS(3600), + [anon_sym_noreturn] = ACTIONS(3600), + [anon_sym__Nonnull] = ACTIONS(3600), + [anon_sym_mutable] = ACTIONS(3600), + [anon_sym_constinit] = ACTIONS(3600), + [anon_sym_consteval] = ACTIONS(3600), + [anon_sym_alignas] = ACTIONS(3600), + [anon_sym__Alignas] = ACTIONS(3600), + [sym_primitive_type] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_struct] = ACTIONS(3600), + [anon_sym_union] = ACTIONS(3600), + [anon_sym_typename] = ACTIONS(3600), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3600), + [anon_sym_decltype] = ACTIONS(3600), + [anon_sym_explicit] = ACTIONS(3600), + [anon_sym_private] = ACTIONS(3600), + [anon_sym_template] = ACTIONS(3600), + [anon_sym_operator] = ACTIONS(3600), + [anon_sym_friend] = ACTIONS(3600), + [anon_sym_public] = ACTIONS(3600), + [anon_sym_protected] = ACTIONS(3600), + [anon_sym_static_assert] = ACTIONS(3600), + [anon_sym_LBRACK_COLON] = ACTIONS(3602), + }, + [STATE(3298)] = { + [sym_identifier] = ACTIONS(8826), + [aux_sym_preproc_def_token1] = ACTIONS(8826), + [aux_sym_preproc_if_token1] = ACTIONS(8826), + [aux_sym_preproc_if_token2] = ACTIONS(8826), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8826), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8826), + [sym_preproc_directive] = ACTIONS(8826), + [anon_sym_LPAREN2] = ACTIONS(8828), + [anon_sym_TILDE] = ACTIONS(8828), + [anon_sym_STAR] = ACTIONS(8828), + [anon_sym_AMP_AMP] = ACTIONS(8828), + [anon_sym_AMP] = ACTIONS(8826), + [anon_sym_SEMI] = ACTIONS(8828), + [anon_sym___extension__] = ACTIONS(8826), + [anon_sym_typedef] = ACTIONS(8826), + [anon_sym_virtual] = ACTIONS(8826), + [anon_sym_extern] = ACTIONS(8826), + [anon_sym___attribute__] = ACTIONS(8826), + [anon_sym___attribute] = ACTIONS(8826), + [anon_sym_using] = ACTIONS(8826), + [anon_sym_COLON_COLON] = ACTIONS(8828), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8828), + [anon_sym___declspec] = ACTIONS(8826), + [anon_sym___based] = ACTIONS(8826), + [anon_sym_signed] = ACTIONS(8826), + [anon_sym_unsigned] = ACTIONS(8826), + [anon_sym_long] = ACTIONS(8826), + [anon_sym_short] = ACTIONS(8826), + [anon_sym_LBRACK] = ACTIONS(8826), + [anon_sym_static] = ACTIONS(8826), + [anon_sym_register] = ACTIONS(8826), + [anon_sym_inline] = ACTIONS(8826), + [anon_sym___inline] = ACTIONS(8826), + [anon_sym___inline__] = ACTIONS(8826), + [anon_sym___forceinline] = ACTIONS(8826), + [anon_sym_thread_local] = ACTIONS(8826), + [anon_sym___thread] = ACTIONS(8826), + [anon_sym_const] = ACTIONS(8826), + [anon_sym_constexpr] = ACTIONS(8826), + [anon_sym_volatile] = ACTIONS(8826), + [anon_sym_restrict] = ACTIONS(8826), + [anon_sym___restrict__] = ACTIONS(8826), + [anon_sym__Atomic] = ACTIONS(8826), + [anon_sym__Noreturn] = ACTIONS(8826), + [anon_sym_noreturn] = ACTIONS(8826), + [anon_sym__Nonnull] = ACTIONS(8826), + [anon_sym_mutable] = ACTIONS(8826), + [anon_sym_constinit] = ACTIONS(8826), + [anon_sym_consteval] = ACTIONS(8826), + [anon_sym_alignas] = ACTIONS(8826), + [anon_sym__Alignas] = ACTIONS(8826), + [sym_primitive_type] = ACTIONS(8826), + [anon_sym_enum] = ACTIONS(8826), + [anon_sym_class] = ACTIONS(8826), + [anon_sym_struct] = ACTIONS(8826), + [anon_sym_union] = ACTIONS(8826), + [anon_sym_typename] = ACTIONS(8826), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8826), + [anon_sym_decltype] = ACTIONS(8826), + [anon_sym_explicit] = ACTIONS(8826), + [anon_sym_private] = ACTIONS(8826), + [anon_sym_template] = ACTIONS(8826), + [anon_sym_operator] = ACTIONS(8826), + [anon_sym_friend] = ACTIONS(8826), + [anon_sym_public] = ACTIONS(8826), + [anon_sym_protected] = ACTIONS(8826), + [anon_sym_static_assert] = ACTIONS(8826), + [anon_sym_LBRACK_COLON] = ACTIONS(8828), + }, + [STATE(3299)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3295), + [sym_identifier] = ACTIONS(7693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7695), + [anon_sym_COMMA] = ACTIONS(7695), + [aux_sym_preproc_if_token2] = ACTIONS(7695), + [aux_sym_preproc_else_token1] = ACTIONS(7695), + [aux_sym_preproc_elif_token1] = ACTIONS(7693), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7695), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7695), + [anon_sym_LPAREN2] = ACTIONS(7695), + [anon_sym_DASH] = ACTIONS(7693), + [anon_sym_PLUS] = ACTIONS(7693), + [anon_sym_STAR] = ACTIONS(7695), + [anon_sym_SLASH] = ACTIONS(7693), + [anon_sym_PERCENT] = ACTIONS(7695), + [anon_sym_PIPE_PIPE] = ACTIONS(7695), + [anon_sym_AMP_AMP] = ACTIONS(7695), + [anon_sym_PIPE] = ACTIONS(7693), + [anon_sym_CARET] = ACTIONS(7695), + [anon_sym_AMP] = ACTIONS(7693), + [anon_sym_EQ_EQ] = ACTIONS(7695), + [anon_sym_BANG_EQ] = ACTIONS(7695), + [anon_sym_GT] = ACTIONS(7693), + [anon_sym_GT_EQ] = ACTIONS(7695), + [anon_sym_LT_EQ] = ACTIONS(7693), + [anon_sym_LT] = ACTIONS(7693), + [anon_sym_LT_LT] = ACTIONS(7695), + [anon_sym_GT_GT] = ACTIONS(7695), + [anon_sym___extension__] = ACTIONS(7693), + [anon_sym___attribute__] = ACTIONS(7693), + [anon_sym___attribute] = ACTIONS(7693), + [anon_sym_LBRACE] = ACTIONS(7695), + [anon_sym_signed] = ACTIONS(9101), + [anon_sym_unsigned] = ACTIONS(9101), + [anon_sym_long] = ACTIONS(9101), + [anon_sym_short] = ACTIONS(9101), + [anon_sym_LBRACK] = ACTIONS(7695), + [anon_sym_RBRACK] = ACTIONS(7695), + [anon_sym_const] = ACTIONS(7693), + [anon_sym_constexpr] = ACTIONS(7693), + [anon_sym_volatile] = ACTIONS(7693), + [anon_sym_restrict] = ACTIONS(7693), + [anon_sym___restrict__] = ACTIONS(7693), + [anon_sym__Atomic] = ACTIONS(7693), + [anon_sym__Noreturn] = ACTIONS(7693), + [anon_sym_noreturn] = ACTIONS(7693), + [anon_sym__Nonnull] = ACTIONS(7693), + [anon_sym_mutable] = ACTIONS(7693), + [anon_sym_constinit] = ACTIONS(7693), + [anon_sym_consteval] = ACTIONS(7693), + [anon_sym_alignas] = ACTIONS(7693), + [anon_sym__Alignas] = ACTIONS(7693), + [anon_sym_QMARK] = ACTIONS(7695), + [anon_sym_LT_EQ_GT] = ACTIONS(7695), + [anon_sym_or] = ACTIONS(7693), + [anon_sym_and] = ACTIONS(7693), + [anon_sym_bitor] = ACTIONS(7693), + [anon_sym_xor] = ACTIONS(7693), + [anon_sym_bitand] = ACTIONS(7693), + [anon_sym_not_eq] = ACTIONS(7693), + [anon_sym_DASH_DASH] = ACTIONS(7695), + [anon_sym_PLUS_PLUS] = ACTIONS(7695), + [anon_sym_DOT] = ACTIONS(7693), + [anon_sym_DOT_STAR] = ACTIONS(7695), + [anon_sym_DASH_GT] = ACTIONS(7695), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7693), + [anon_sym_override] = ACTIONS(7693), + [anon_sym_requires] = ACTIONS(7693), + }, + [STATE(3300)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3295), + [sym_identifier] = ACTIONS(7697), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7699), + [anon_sym_COMMA] = ACTIONS(7699), + [aux_sym_preproc_if_token2] = ACTIONS(7699), + [aux_sym_preproc_else_token1] = ACTIONS(7699), + [aux_sym_preproc_elif_token1] = ACTIONS(7697), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7699), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7699), + [anon_sym_LPAREN2] = ACTIONS(7699), + [anon_sym_DASH] = ACTIONS(7697), + [anon_sym_PLUS] = ACTIONS(7697), + [anon_sym_STAR] = ACTIONS(7699), + [anon_sym_SLASH] = ACTIONS(7697), + [anon_sym_PERCENT] = ACTIONS(7699), + [anon_sym_PIPE_PIPE] = ACTIONS(7699), + [anon_sym_AMP_AMP] = ACTIONS(7699), + [anon_sym_PIPE] = ACTIONS(7697), + [anon_sym_CARET] = ACTIONS(7699), + [anon_sym_AMP] = ACTIONS(7697), + [anon_sym_EQ_EQ] = ACTIONS(7699), + [anon_sym_BANG_EQ] = ACTIONS(7699), + [anon_sym_GT] = ACTIONS(7697), + [anon_sym_GT_EQ] = ACTIONS(7699), + [anon_sym_LT_EQ] = ACTIONS(7697), + [anon_sym_LT] = ACTIONS(7697), + [anon_sym_LT_LT] = ACTIONS(7699), + [anon_sym_GT_GT] = ACTIONS(7699), + [anon_sym___extension__] = ACTIONS(7697), + [anon_sym___attribute__] = ACTIONS(7697), + [anon_sym___attribute] = ACTIONS(7697), + [anon_sym_LBRACE] = ACTIONS(7699), + [anon_sym_signed] = ACTIONS(9101), + [anon_sym_unsigned] = ACTIONS(9101), + [anon_sym_long] = ACTIONS(9101), + [anon_sym_short] = ACTIONS(9101), + [anon_sym_LBRACK] = ACTIONS(7699), + [anon_sym_RBRACK] = ACTIONS(7699), + [anon_sym_const] = ACTIONS(7697), + [anon_sym_constexpr] = ACTIONS(7697), + [anon_sym_volatile] = ACTIONS(7697), + [anon_sym_restrict] = ACTIONS(7697), + [anon_sym___restrict__] = ACTIONS(7697), + [anon_sym__Atomic] = ACTIONS(7697), + [anon_sym__Noreturn] = ACTIONS(7697), + [anon_sym_noreturn] = ACTIONS(7697), + [anon_sym__Nonnull] = ACTIONS(7697), + [anon_sym_mutable] = ACTIONS(7697), + [anon_sym_constinit] = ACTIONS(7697), + [anon_sym_consteval] = ACTIONS(7697), + [anon_sym_alignas] = ACTIONS(7697), + [anon_sym__Alignas] = ACTIONS(7697), + [anon_sym_QMARK] = ACTIONS(7699), + [anon_sym_LT_EQ_GT] = ACTIONS(7699), + [anon_sym_or] = ACTIONS(7697), + [anon_sym_and] = ACTIONS(7697), + [anon_sym_bitor] = ACTIONS(7697), + [anon_sym_xor] = ACTIONS(7697), + [anon_sym_bitand] = ACTIONS(7697), + [anon_sym_not_eq] = ACTIONS(7697), + [anon_sym_DASH_DASH] = ACTIONS(7699), + [anon_sym_PLUS_PLUS] = ACTIONS(7699), + [anon_sym_DOT] = ACTIONS(7697), + [anon_sym_DOT_STAR] = ACTIONS(7699), + [anon_sym_DASH_GT] = ACTIONS(7699), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7697), + [anon_sym_override] = ACTIONS(7697), + [anon_sym_requires] = ACTIONS(7697), + }, + [STATE(3301)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3319), + [sym_identifier] = ACTIONS(7701), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7703), + [anon_sym_COMMA] = ACTIONS(7703), + [aux_sym_preproc_if_token2] = ACTIONS(7703), + [aux_sym_preproc_else_token1] = ACTIONS(7703), + [aux_sym_preproc_elif_token1] = ACTIONS(7701), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7703), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7703), + [anon_sym_LPAREN2] = ACTIONS(7703), + [anon_sym_DASH] = ACTIONS(7701), + [anon_sym_PLUS] = ACTIONS(7701), + [anon_sym_STAR] = ACTIONS(7703), + [anon_sym_SLASH] = ACTIONS(7701), + [anon_sym_PERCENT] = ACTIONS(7703), + [anon_sym_PIPE_PIPE] = ACTIONS(7703), + [anon_sym_AMP_AMP] = ACTIONS(7703), + [anon_sym_PIPE] = ACTIONS(7701), + [anon_sym_CARET] = ACTIONS(7703), + [anon_sym_AMP] = ACTIONS(7701), + [anon_sym_EQ_EQ] = ACTIONS(7703), + [anon_sym_BANG_EQ] = ACTIONS(7703), + [anon_sym_GT] = ACTIONS(7701), + [anon_sym_GT_EQ] = ACTIONS(7703), + [anon_sym_LT_EQ] = ACTIONS(7701), + [anon_sym_LT] = ACTIONS(7701), + [anon_sym_LT_LT] = ACTIONS(7703), + [anon_sym_GT_GT] = ACTIONS(7703), + [anon_sym___extension__] = ACTIONS(7701), + [anon_sym___attribute__] = ACTIONS(7701), + [anon_sym___attribute] = ACTIONS(7701), + [anon_sym_LBRACE] = ACTIONS(7703), + [anon_sym_signed] = ACTIONS(9110), + [anon_sym_unsigned] = ACTIONS(9110), + [anon_sym_long] = ACTIONS(9110), + [anon_sym_short] = ACTIONS(9110), + [anon_sym_LBRACK] = ACTIONS(7703), + [anon_sym_RBRACK] = ACTIONS(7703), + [anon_sym_const] = ACTIONS(7701), + [anon_sym_constexpr] = ACTIONS(7701), + [anon_sym_volatile] = ACTIONS(7701), + [anon_sym_restrict] = ACTIONS(7701), + [anon_sym___restrict__] = ACTIONS(7701), + [anon_sym__Atomic] = ACTIONS(7701), + [anon_sym__Noreturn] = ACTIONS(7701), + [anon_sym_noreturn] = ACTIONS(7701), + [anon_sym__Nonnull] = ACTIONS(7701), + [anon_sym_mutable] = ACTIONS(7701), + [anon_sym_constinit] = ACTIONS(7701), + [anon_sym_consteval] = ACTIONS(7701), + [anon_sym_alignas] = ACTIONS(7701), + [anon_sym__Alignas] = ACTIONS(7701), + [anon_sym_QMARK] = ACTIONS(7703), + [anon_sym_LT_EQ_GT] = ACTIONS(7703), + [anon_sym_or] = ACTIONS(7701), + [anon_sym_and] = ACTIONS(7701), + [anon_sym_bitor] = ACTIONS(7701), + [anon_sym_xor] = ACTIONS(7701), + [anon_sym_bitand] = ACTIONS(7701), + [anon_sym_not_eq] = ACTIONS(7701), + [anon_sym_DASH_DASH] = ACTIONS(7703), + [anon_sym_PLUS_PLUS] = ACTIONS(7703), + [anon_sym_DOT] = ACTIONS(7701), + [anon_sym_DOT_STAR] = ACTIONS(7703), + [anon_sym_DASH_GT] = ACTIONS(7703), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7701), + [anon_sym_override] = ACTIONS(7701), + [anon_sym_requires] = ACTIONS(7701), + }, + [STATE(3302)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3320), + [sym_identifier] = ACTIONS(7707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7709), + [anon_sym_COMMA] = ACTIONS(7709), + [aux_sym_preproc_if_token2] = ACTIONS(7709), + [aux_sym_preproc_else_token1] = ACTIONS(7709), + [aux_sym_preproc_elif_token1] = ACTIONS(7707), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7709), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7709), + [anon_sym_LPAREN2] = ACTIONS(7709), + [anon_sym_DASH] = ACTIONS(7707), + [anon_sym_PLUS] = ACTIONS(7707), + [anon_sym_STAR] = ACTIONS(7709), + [anon_sym_SLASH] = ACTIONS(7707), + [anon_sym_PERCENT] = ACTIONS(7709), + [anon_sym_PIPE_PIPE] = ACTIONS(7709), + [anon_sym_AMP_AMP] = ACTIONS(7709), + [anon_sym_PIPE] = ACTIONS(7707), + [anon_sym_CARET] = ACTIONS(7709), + [anon_sym_AMP] = ACTIONS(7707), + [anon_sym_EQ_EQ] = ACTIONS(7709), + [anon_sym_BANG_EQ] = ACTIONS(7709), + [anon_sym_GT] = ACTIONS(7707), + [anon_sym_GT_EQ] = ACTIONS(7709), + [anon_sym_LT_EQ] = ACTIONS(7707), + [anon_sym_LT] = ACTIONS(7707), + [anon_sym_LT_LT] = ACTIONS(7709), + [anon_sym_GT_GT] = ACTIONS(7709), + [anon_sym___extension__] = ACTIONS(7707), + [anon_sym___attribute__] = ACTIONS(7707), + [anon_sym___attribute] = ACTIONS(7707), + [anon_sym_LBRACE] = ACTIONS(7709), + [anon_sym_signed] = ACTIONS(9112), + [anon_sym_unsigned] = ACTIONS(9112), + [anon_sym_long] = ACTIONS(9112), + [anon_sym_short] = ACTIONS(9112), + [anon_sym_LBRACK] = ACTIONS(7709), + [anon_sym_RBRACK] = ACTIONS(7709), + [anon_sym_const] = ACTIONS(7707), + [anon_sym_constexpr] = ACTIONS(7707), + [anon_sym_volatile] = ACTIONS(7707), + [anon_sym_restrict] = ACTIONS(7707), + [anon_sym___restrict__] = ACTIONS(7707), + [anon_sym__Atomic] = ACTIONS(7707), + [anon_sym__Noreturn] = ACTIONS(7707), + [anon_sym_noreturn] = ACTIONS(7707), + [anon_sym__Nonnull] = ACTIONS(7707), + [anon_sym_mutable] = ACTIONS(7707), + [anon_sym_constinit] = ACTIONS(7707), + [anon_sym_consteval] = ACTIONS(7707), + [anon_sym_alignas] = ACTIONS(7707), + [anon_sym__Alignas] = ACTIONS(7707), + [anon_sym_QMARK] = ACTIONS(7709), + [anon_sym_LT_EQ_GT] = ACTIONS(7709), + [anon_sym_or] = ACTIONS(7707), + [anon_sym_and] = ACTIONS(7707), + [anon_sym_bitor] = ACTIONS(7707), + [anon_sym_xor] = ACTIONS(7707), + [anon_sym_bitand] = ACTIONS(7707), + [anon_sym_not_eq] = ACTIONS(7707), + [anon_sym_DASH_DASH] = ACTIONS(7709), + [anon_sym_PLUS_PLUS] = ACTIONS(7709), + [anon_sym_DOT] = ACTIONS(7707), + [anon_sym_DOT_STAR] = ACTIONS(7709), + [anon_sym_DASH_GT] = ACTIONS(7709), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7707), + [anon_sym_override] = ACTIONS(7707), + [anon_sym_requires] = ACTIONS(7707), + }, + [STATE(3303)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3295), + [sym_identifier] = ACTIONS(7713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7715), + [anon_sym_COMMA] = ACTIONS(7715), + [aux_sym_preproc_if_token2] = ACTIONS(7715), + [aux_sym_preproc_else_token1] = ACTIONS(7715), + [aux_sym_preproc_elif_token1] = ACTIONS(7713), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7715), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7715), + [anon_sym_LPAREN2] = ACTIONS(7715), + [anon_sym_DASH] = ACTIONS(7713), + [anon_sym_PLUS] = ACTIONS(7713), + [anon_sym_STAR] = ACTIONS(7715), + [anon_sym_SLASH] = ACTIONS(7713), + [anon_sym_PERCENT] = ACTIONS(7715), + [anon_sym_PIPE_PIPE] = ACTIONS(7715), + [anon_sym_AMP_AMP] = ACTIONS(7715), + [anon_sym_PIPE] = ACTIONS(7713), + [anon_sym_CARET] = ACTIONS(7715), + [anon_sym_AMP] = ACTIONS(7713), + [anon_sym_EQ_EQ] = ACTIONS(7715), + [anon_sym_BANG_EQ] = ACTIONS(7715), + [anon_sym_GT] = ACTIONS(7713), + [anon_sym_GT_EQ] = ACTIONS(7715), + [anon_sym_LT_EQ] = ACTIONS(7713), + [anon_sym_LT] = ACTIONS(7713), + [anon_sym_LT_LT] = ACTIONS(7715), + [anon_sym_GT_GT] = ACTIONS(7715), + [anon_sym___extension__] = ACTIONS(7713), + [anon_sym___attribute__] = ACTIONS(7713), + [anon_sym___attribute] = ACTIONS(7713), + [anon_sym_LBRACE] = ACTIONS(7715), + [anon_sym_signed] = ACTIONS(9101), + [anon_sym_unsigned] = ACTIONS(9101), + [anon_sym_long] = ACTIONS(9101), + [anon_sym_short] = ACTIONS(9101), + [anon_sym_LBRACK] = ACTIONS(7715), + [anon_sym_RBRACK] = ACTIONS(7715), + [anon_sym_const] = ACTIONS(7713), + [anon_sym_constexpr] = ACTIONS(7713), + [anon_sym_volatile] = ACTIONS(7713), + [anon_sym_restrict] = ACTIONS(7713), + [anon_sym___restrict__] = ACTIONS(7713), + [anon_sym__Atomic] = ACTIONS(7713), + [anon_sym__Noreturn] = ACTIONS(7713), + [anon_sym_noreturn] = ACTIONS(7713), + [anon_sym__Nonnull] = ACTIONS(7713), + [anon_sym_mutable] = ACTIONS(7713), + [anon_sym_constinit] = ACTIONS(7713), + [anon_sym_consteval] = ACTIONS(7713), + [anon_sym_alignas] = ACTIONS(7713), + [anon_sym__Alignas] = ACTIONS(7713), + [anon_sym_QMARK] = ACTIONS(7715), + [anon_sym_LT_EQ_GT] = ACTIONS(7715), + [anon_sym_or] = ACTIONS(7713), + [anon_sym_and] = ACTIONS(7713), + [anon_sym_bitor] = ACTIONS(7713), + [anon_sym_xor] = ACTIONS(7713), + [anon_sym_bitand] = ACTIONS(7713), + [anon_sym_not_eq] = ACTIONS(7713), + [anon_sym_DASH_DASH] = ACTIONS(7715), + [anon_sym_PLUS_PLUS] = ACTIONS(7715), + [anon_sym_DOT] = ACTIONS(7713), + [anon_sym_DOT_STAR] = ACTIONS(7715), + [anon_sym_DASH_GT] = ACTIONS(7715), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7713), + [anon_sym_override] = ACTIONS(7713), + [anon_sym_requires] = ACTIONS(7713), + }, + [STATE(3304)] = { + [sym_identifier] = ACTIONS(8734), + [aux_sym_preproc_def_token1] = ACTIONS(8734), + [aux_sym_preproc_if_token1] = ACTIONS(8734), + [aux_sym_preproc_if_token2] = ACTIONS(8734), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8734), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8734), + [sym_preproc_directive] = ACTIONS(8734), + [anon_sym_LPAREN2] = ACTIONS(8736), + [anon_sym_TILDE] = ACTIONS(8736), + [anon_sym_STAR] = ACTIONS(8736), + [anon_sym_AMP_AMP] = ACTIONS(8736), + [anon_sym_AMP] = ACTIONS(8734), + [anon_sym_SEMI] = ACTIONS(8736), + [anon_sym___extension__] = ACTIONS(8734), + [anon_sym_typedef] = ACTIONS(8734), + [anon_sym_virtual] = ACTIONS(8734), + [anon_sym_extern] = ACTIONS(8734), + [anon_sym___attribute__] = ACTIONS(8734), + [anon_sym___attribute] = ACTIONS(8734), + [anon_sym_using] = ACTIONS(8734), + [anon_sym_COLON_COLON] = ACTIONS(8736), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8736), + [anon_sym___declspec] = ACTIONS(8734), + [anon_sym___based] = ACTIONS(8734), + [anon_sym_signed] = ACTIONS(8734), + [anon_sym_unsigned] = ACTIONS(8734), + [anon_sym_long] = ACTIONS(8734), + [anon_sym_short] = ACTIONS(8734), + [anon_sym_LBRACK] = ACTIONS(8734), + [anon_sym_static] = ACTIONS(8734), + [anon_sym_register] = ACTIONS(8734), + [anon_sym_inline] = ACTIONS(8734), + [anon_sym___inline] = ACTIONS(8734), + [anon_sym___inline__] = ACTIONS(8734), + [anon_sym___forceinline] = ACTIONS(8734), + [anon_sym_thread_local] = ACTIONS(8734), + [anon_sym___thread] = ACTIONS(8734), + [anon_sym_const] = ACTIONS(8734), + [anon_sym_constexpr] = ACTIONS(8734), + [anon_sym_volatile] = ACTIONS(8734), + [anon_sym_restrict] = ACTIONS(8734), + [anon_sym___restrict__] = ACTIONS(8734), + [anon_sym__Atomic] = ACTIONS(8734), + [anon_sym__Noreturn] = ACTIONS(8734), + [anon_sym_noreturn] = ACTIONS(8734), + [anon_sym__Nonnull] = ACTIONS(8734), + [anon_sym_mutable] = ACTIONS(8734), + [anon_sym_constinit] = ACTIONS(8734), + [anon_sym_consteval] = ACTIONS(8734), + [anon_sym_alignas] = ACTIONS(8734), + [anon_sym__Alignas] = ACTIONS(8734), + [sym_primitive_type] = ACTIONS(8734), + [anon_sym_enum] = ACTIONS(8734), + [anon_sym_class] = ACTIONS(8734), + [anon_sym_struct] = ACTIONS(8734), + [anon_sym_union] = ACTIONS(8734), + [anon_sym_typename] = ACTIONS(8734), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8734), + [anon_sym_decltype] = ACTIONS(8734), + [anon_sym_explicit] = ACTIONS(8734), + [anon_sym_private] = ACTIONS(8734), + [anon_sym_template] = ACTIONS(8734), + [anon_sym_operator] = ACTIONS(8734), + [anon_sym_friend] = ACTIONS(8734), + [anon_sym_public] = ACTIONS(8734), + [anon_sym_protected] = ACTIONS(8734), + [anon_sym_static_assert] = ACTIONS(8734), + [anon_sym_LBRACK_COLON] = ACTIONS(8736), + }, + [STATE(3305)] = { + [sym_identifier] = ACTIONS(8790), + [aux_sym_preproc_def_token1] = ACTIONS(8790), + [aux_sym_preproc_if_token1] = ACTIONS(8790), + [aux_sym_preproc_if_token2] = ACTIONS(8790), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8790), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8790), + [sym_preproc_directive] = ACTIONS(8790), + [anon_sym_LPAREN2] = ACTIONS(8792), + [anon_sym_TILDE] = ACTIONS(8792), + [anon_sym_STAR] = ACTIONS(8792), + [anon_sym_AMP_AMP] = ACTIONS(8792), + [anon_sym_AMP] = ACTIONS(8790), + [anon_sym_SEMI] = ACTIONS(8792), + [anon_sym___extension__] = ACTIONS(8790), + [anon_sym_typedef] = ACTIONS(8790), + [anon_sym_virtual] = ACTIONS(8790), + [anon_sym_extern] = ACTIONS(8790), + [anon_sym___attribute__] = ACTIONS(8790), + [anon_sym___attribute] = ACTIONS(8790), + [anon_sym_using] = ACTIONS(8790), + [anon_sym_COLON_COLON] = ACTIONS(8792), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8792), + [anon_sym___declspec] = ACTIONS(8790), + [anon_sym___based] = ACTIONS(8790), + [anon_sym_signed] = ACTIONS(8790), + [anon_sym_unsigned] = ACTIONS(8790), + [anon_sym_long] = ACTIONS(8790), + [anon_sym_short] = ACTIONS(8790), + [anon_sym_LBRACK] = ACTIONS(8790), + [anon_sym_static] = ACTIONS(8790), + [anon_sym_register] = ACTIONS(8790), + [anon_sym_inline] = ACTIONS(8790), + [anon_sym___inline] = ACTIONS(8790), + [anon_sym___inline__] = ACTIONS(8790), + [anon_sym___forceinline] = ACTIONS(8790), + [anon_sym_thread_local] = ACTIONS(8790), + [anon_sym___thread] = ACTIONS(8790), + [anon_sym_const] = ACTIONS(8790), + [anon_sym_constexpr] = ACTIONS(8790), + [anon_sym_volatile] = ACTIONS(8790), + [anon_sym_restrict] = ACTIONS(8790), + [anon_sym___restrict__] = ACTIONS(8790), + [anon_sym__Atomic] = ACTIONS(8790), + [anon_sym__Noreturn] = ACTIONS(8790), + [anon_sym_noreturn] = ACTIONS(8790), + [anon_sym__Nonnull] = ACTIONS(8790), + [anon_sym_mutable] = ACTIONS(8790), + [anon_sym_constinit] = ACTIONS(8790), + [anon_sym_consteval] = ACTIONS(8790), + [anon_sym_alignas] = ACTIONS(8790), + [anon_sym__Alignas] = ACTIONS(8790), + [sym_primitive_type] = ACTIONS(8790), + [anon_sym_enum] = ACTIONS(8790), + [anon_sym_class] = ACTIONS(8790), + [anon_sym_struct] = ACTIONS(8790), + [anon_sym_union] = ACTIONS(8790), + [anon_sym_typename] = ACTIONS(8790), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8790), + [anon_sym_decltype] = ACTIONS(8790), + [anon_sym_explicit] = ACTIONS(8790), + [anon_sym_private] = ACTIONS(8790), + [anon_sym_template] = ACTIONS(8790), + [anon_sym_operator] = ACTIONS(8790), + [anon_sym_friend] = ACTIONS(8790), + [anon_sym_public] = ACTIONS(8790), + [anon_sym_protected] = ACTIONS(8790), + [anon_sym_static_assert] = ACTIONS(8790), + [anon_sym_LBRACK_COLON] = ACTIONS(8792), + }, + [STATE(3306)] = { + [sym_identifier] = ACTIONS(3604), + [aux_sym_preproc_def_token1] = ACTIONS(3604), + [aux_sym_preproc_if_token1] = ACTIONS(3604), + [aux_sym_preproc_if_token2] = ACTIONS(3604), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3604), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3604), + [sym_preproc_directive] = ACTIONS(3604), + [anon_sym_LPAREN2] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3606), + [anon_sym_STAR] = ACTIONS(3606), + [anon_sym_AMP_AMP] = ACTIONS(3606), + [anon_sym_AMP] = ACTIONS(3604), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym___extension__] = ACTIONS(3604), + [anon_sym_typedef] = ACTIONS(3604), + [anon_sym_virtual] = ACTIONS(3604), + [anon_sym_extern] = ACTIONS(3604), + [anon_sym___attribute__] = ACTIONS(3604), + [anon_sym___attribute] = ACTIONS(3604), + [anon_sym_using] = ACTIONS(3604), + [anon_sym_COLON_COLON] = ACTIONS(3606), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3606), + [anon_sym___declspec] = ACTIONS(3604), + [anon_sym___based] = ACTIONS(3604), + [anon_sym_signed] = ACTIONS(3604), + [anon_sym_unsigned] = ACTIONS(3604), + [anon_sym_long] = ACTIONS(3604), + [anon_sym_short] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3604), + [anon_sym_static] = ACTIONS(3604), + [anon_sym_register] = ACTIONS(3604), + [anon_sym_inline] = ACTIONS(3604), + [anon_sym___inline] = ACTIONS(3604), + [anon_sym___inline__] = ACTIONS(3604), + [anon_sym___forceinline] = ACTIONS(3604), + [anon_sym_thread_local] = ACTIONS(3604), + [anon_sym___thread] = ACTIONS(3604), + [anon_sym_const] = ACTIONS(3604), + [anon_sym_constexpr] = ACTIONS(3604), + [anon_sym_volatile] = ACTIONS(3604), + [anon_sym_restrict] = ACTIONS(3604), + [anon_sym___restrict__] = ACTIONS(3604), + [anon_sym__Atomic] = ACTIONS(3604), + [anon_sym__Noreturn] = ACTIONS(3604), + [anon_sym_noreturn] = ACTIONS(3604), + [anon_sym__Nonnull] = ACTIONS(3604), + [anon_sym_mutable] = ACTIONS(3604), + [anon_sym_constinit] = ACTIONS(3604), + [anon_sym_consteval] = ACTIONS(3604), + [anon_sym_alignas] = ACTIONS(3604), + [anon_sym__Alignas] = ACTIONS(3604), + [sym_primitive_type] = ACTIONS(3604), + [anon_sym_enum] = ACTIONS(3604), + [anon_sym_class] = ACTIONS(3604), + [anon_sym_struct] = ACTIONS(3604), + [anon_sym_union] = ACTIONS(3604), + [anon_sym_typename] = ACTIONS(3604), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3604), + [anon_sym_decltype] = ACTIONS(3604), + [anon_sym_explicit] = ACTIONS(3604), + [anon_sym_private] = ACTIONS(3604), + [anon_sym_template] = ACTIONS(3604), + [anon_sym_operator] = ACTIONS(3604), + [anon_sym_friend] = ACTIONS(3604), + [anon_sym_public] = ACTIONS(3604), + [anon_sym_protected] = ACTIONS(3604), + [anon_sym_static_assert] = ACTIONS(3604), + [anon_sym_LBRACK_COLON] = ACTIONS(3606), + }, + [STATE(3307)] = { + [sym_identifier] = ACTIONS(8643), + [aux_sym_preproc_def_token1] = ACTIONS(8643), + [aux_sym_preproc_if_token1] = ACTIONS(8643), + [aux_sym_preproc_if_token2] = ACTIONS(8643), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8643), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8643), + [sym_preproc_directive] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8645), + [anon_sym_TILDE] = ACTIONS(8645), + [anon_sym_STAR] = ACTIONS(8645), + [anon_sym_AMP_AMP] = ACTIONS(8645), + [anon_sym_AMP] = ACTIONS(8643), + [anon_sym_SEMI] = ACTIONS(8645), + [anon_sym___extension__] = ACTIONS(8643), + [anon_sym_typedef] = ACTIONS(8643), + [anon_sym_virtual] = ACTIONS(8643), + [anon_sym_extern] = ACTIONS(8643), + [anon_sym___attribute__] = ACTIONS(8643), + [anon_sym___attribute] = ACTIONS(8643), + [anon_sym_using] = ACTIONS(8643), + [anon_sym_COLON_COLON] = ACTIONS(8645), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8645), + [anon_sym___declspec] = ACTIONS(8643), + [anon_sym___based] = ACTIONS(8643), + [anon_sym_signed] = ACTIONS(8643), + [anon_sym_unsigned] = ACTIONS(8643), + [anon_sym_long] = ACTIONS(8643), + [anon_sym_short] = ACTIONS(8643), + [anon_sym_LBRACK] = ACTIONS(8643), + [anon_sym_static] = ACTIONS(8643), + [anon_sym_register] = ACTIONS(8643), + [anon_sym_inline] = ACTIONS(8643), + [anon_sym___inline] = ACTIONS(8643), + [anon_sym___inline__] = ACTIONS(8643), + [anon_sym___forceinline] = ACTIONS(8643), + [anon_sym_thread_local] = ACTIONS(8643), + [anon_sym___thread] = ACTIONS(8643), + [anon_sym_const] = ACTIONS(8643), + [anon_sym_constexpr] = ACTIONS(8643), + [anon_sym_volatile] = ACTIONS(8643), + [anon_sym_restrict] = ACTIONS(8643), + [anon_sym___restrict__] = ACTIONS(8643), + [anon_sym__Atomic] = ACTIONS(8643), + [anon_sym__Noreturn] = ACTIONS(8643), + [anon_sym_noreturn] = ACTIONS(8643), + [anon_sym__Nonnull] = ACTIONS(8643), + [anon_sym_mutable] = ACTIONS(8643), + [anon_sym_constinit] = ACTIONS(8643), + [anon_sym_consteval] = ACTIONS(8643), + [anon_sym_alignas] = ACTIONS(8643), + [anon_sym__Alignas] = ACTIONS(8643), + [sym_primitive_type] = ACTIONS(8643), + [anon_sym_enum] = ACTIONS(8643), + [anon_sym_class] = ACTIONS(8643), + [anon_sym_struct] = ACTIONS(8643), + [anon_sym_union] = ACTIONS(8643), + [anon_sym_typename] = ACTIONS(8643), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8643), + [anon_sym_decltype] = ACTIONS(8643), + [anon_sym_explicit] = ACTIONS(8643), + [anon_sym_private] = ACTIONS(8643), + [anon_sym_template] = ACTIONS(8643), + [anon_sym_operator] = ACTIONS(8643), + [anon_sym_friend] = ACTIONS(8643), + [anon_sym_public] = ACTIONS(8643), + [anon_sym_protected] = ACTIONS(8643), + [anon_sym_static_assert] = ACTIONS(8643), + [anon_sym_LBRACK_COLON] = ACTIONS(8645), + }, + [STATE(3308)] = { + [sym_identifier] = ACTIONS(8643), + [aux_sym_preproc_def_token1] = ACTIONS(8643), + [aux_sym_preproc_if_token1] = ACTIONS(8643), + [aux_sym_preproc_if_token2] = ACTIONS(8643), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8643), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8643), + [sym_preproc_directive] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8645), + [anon_sym_TILDE] = ACTIONS(8645), + [anon_sym_STAR] = ACTIONS(8645), + [anon_sym_AMP_AMP] = ACTIONS(8645), + [anon_sym_AMP] = ACTIONS(8643), + [anon_sym_SEMI] = ACTIONS(8645), + [anon_sym___extension__] = ACTIONS(8643), + [anon_sym_typedef] = ACTIONS(8643), + [anon_sym_virtual] = ACTIONS(8643), + [anon_sym_extern] = ACTIONS(8643), + [anon_sym___attribute__] = ACTIONS(8643), + [anon_sym___attribute] = ACTIONS(8643), + [anon_sym_using] = ACTIONS(8643), + [anon_sym_COLON_COLON] = ACTIONS(8645), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8645), + [anon_sym___declspec] = ACTIONS(8643), + [anon_sym___based] = ACTIONS(8643), + [anon_sym_signed] = ACTIONS(8643), + [anon_sym_unsigned] = ACTIONS(8643), + [anon_sym_long] = ACTIONS(8643), + [anon_sym_short] = ACTIONS(8643), + [anon_sym_LBRACK] = ACTIONS(8643), + [anon_sym_static] = ACTIONS(8643), + [anon_sym_register] = ACTIONS(8643), + [anon_sym_inline] = ACTIONS(8643), + [anon_sym___inline] = ACTIONS(8643), + [anon_sym___inline__] = ACTIONS(8643), + [anon_sym___forceinline] = ACTIONS(8643), + [anon_sym_thread_local] = ACTIONS(8643), + [anon_sym___thread] = ACTIONS(8643), + [anon_sym_const] = ACTIONS(8643), + [anon_sym_constexpr] = ACTIONS(8643), + [anon_sym_volatile] = ACTIONS(8643), + [anon_sym_restrict] = ACTIONS(8643), + [anon_sym___restrict__] = ACTIONS(8643), + [anon_sym__Atomic] = ACTIONS(8643), + [anon_sym__Noreturn] = ACTIONS(8643), + [anon_sym_noreturn] = ACTIONS(8643), + [anon_sym__Nonnull] = ACTIONS(8643), + [anon_sym_mutable] = ACTIONS(8643), + [anon_sym_constinit] = ACTIONS(8643), + [anon_sym_consteval] = ACTIONS(8643), + [anon_sym_alignas] = ACTIONS(8643), + [anon_sym__Alignas] = ACTIONS(8643), + [sym_primitive_type] = ACTIONS(8643), + [anon_sym_enum] = ACTIONS(8643), + [anon_sym_class] = ACTIONS(8643), + [anon_sym_struct] = ACTIONS(8643), + [anon_sym_union] = ACTIONS(8643), + [anon_sym_typename] = ACTIONS(8643), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8643), + [anon_sym_decltype] = ACTIONS(8643), + [anon_sym_explicit] = ACTIONS(8643), + [anon_sym_private] = ACTIONS(8643), + [anon_sym_template] = ACTIONS(8643), + [anon_sym_operator] = ACTIONS(8643), + [anon_sym_friend] = ACTIONS(8643), + [anon_sym_public] = ACTIONS(8643), + [anon_sym_protected] = ACTIONS(8643), + [anon_sym_static_assert] = ACTIONS(8643), + [anon_sym_LBRACK_COLON] = ACTIONS(8645), + }, + [STATE(3309)] = { + [sym_identifier] = ACTIONS(8647), + [aux_sym_preproc_def_token1] = ACTIONS(8647), + [aux_sym_preproc_if_token1] = ACTIONS(8647), + [aux_sym_preproc_if_token2] = ACTIONS(8647), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8647), + [sym_preproc_directive] = ACTIONS(8647), + [anon_sym_LPAREN2] = ACTIONS(8649), + [anon_sym_TILDE] = ACTIONS(8649), + [anon_sym_STAR] = ACTIONS(8649), + [anon_sym_AMP_AMP] = ACTIONS(8649), + [anon_sym_AMP] = ACTIONS(8647), + [anon_sym_SEMI] = ACTIONS(8649), + [anon_sym___extension__] = ACTIONS(8647), + [anon_sym_typedef] = ACTIONS(8647), + [anon_sym_virtual] = ACTIONS(8647), + [anon_sym_extern] = ACTIONS(8647), + [anon_sym___attribute__] = ACTIONS(8647), + [anon_sym___attribute] = ACTIONS(8647), + [anon_sym_using] = ACTIONS(8647), + [anon_sym_COLON_COLON] = ACTIONS(8649), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8649), + [anon_sym___declspec] = ACTIONS(8647), + [anon_sym___based] = ACTIONS(8647), + [anon_sym_signed] = ACTIONS(8647), + [anon_sym_unsigned] = ACTIONS(8647), + [anon_sym_long] = ACTIONS(8647), + [anon_sym_short] = ACTIONS(8647), + [anon_sym_LBRACK] = ACTIONS(8647), + [anon_sym_static] = ACTIONS(8647), + [anon_sym_register] = ACTIONS(8647), + [anon_sym_inline] = ACTIONS(8647), + [anon_sym___inline] = ACTIONS(8647), + [anon_sym___inline__] = ACTIONS(8647), + [anon_sym___forceinline] = ACTIONS(8647), + [anon_sym_thread_local] = ACTIONS(8647), + [anon_sym___thread] = ACTIONS(8647), + [anon_sym_const] = ACTIONS(8647), + [anon_sym_constexpr] = ACTIONS(8647), + [anon_sym_volatile] = ACTIONS(8647), + [anon_sym_restrict] = ACTIONS(8647), + [anon_sym___restrict__] = ACTIONS(8647), + [anon_sym__Atomic] = ACTIONS(8647), + [anon_sym__Noreturn] = ACTIONS(8647), + [anon_sym_noreturn] = ACTIONS(8647), + [anon_sym__Nonnull] = ACTIONS(8647), + [anon_sym_mutable] = ACTIONS(8647), + [anon_sym_constinit] = ACTIONS(8647), + [anon_sym_consteval] = ACTIONS(8647), + [anon_sym_alignas] = ACTIONS(8647), + [anon_sym__Alignas] = ACTIONS(8647), + [sym_primitive_type] = ACTIONS(8647), + [anon_sym_enum] = ACTIONS(8647), + [anon_sym_class] = ACTIONS(8647), + [anon_sym_struct] = ACTIONS(8647), + [anon_sym_union] = ACTIONS(8647), + [anon_sym_typename] = ACTIONS(8647), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8647), + [anon_sym_decltype] = ACTIONS(8647), + [anon_sym_explicit] = ACTIONS(8647), + [anon_sym_private] = ACTIONS(8647), + [anon_sym_template] = ACTIONS(8647), + [anon_sym_operator] = ACTIONS(8647), + [anon_sym_friend] = ACTIONS(8647), + [anon_sym_public] = ACTIONS(8647), + [anon_sym_protected] = ACTIONS(8647), + [anon_sym_static_assert] = ACTIONS(8647), + [anon_sym_LBRACK_COLON] = ACTIONS(8649), + }, + [STATE(3310)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3284), + [sym_identifier] = ACTIONS(7717), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), + [anon_sym_COMMA] = ACTIONS(7719), + [aux_sym_preproc_if_token2] = ACTIONS(7719), + [aux_sym_preproc_else_token1] = ACTIONS(7719), + [aux_sym_preproc_elif_token1] = ACTIONS(7717), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7719), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7719), + [anon_sym_LPAREN2] = ACTIONS(7719), + [anon_sym_DASH] = ACTIONS(7717), + [anon_sym_PLUS] = ACTIONS(7717), + [anon_sym_STAR] = ACTIONS(7719), + [anon_sym_SLASH] = ACTIONS(7717), + [anon_sym_PERCENT] = ACTIONS(7719), + [anon_sym_PIPE_PIPE] = ACTIONS(7719), + [anon_sym_AMP_AMP] = ACTIONS(7719), + [anon_sym_PIPE] = ACTIONS(7717), + [anon_sym_CARET] = ACTIONS(7719), + [anon_sym_AMP] = ACTIONS(7717), + [anon_sym_EQ_EQ] = ACTIONS(7719), + [anon_sym_BANG_EQ] = ACTIONS(7719), + [anon_sym_GT] = ACTIONS(7717), + [anon_sym_GT_EQ] = ACTIONS(7719), + [anon_sym_LT_EQ] = ACTIONS(7717), + [anon_sym_LT] = ACTIONS(7717), + [anon_sym_LT_LT] = ACTIONS(7719), + [anon_sym_GT_GT] = ACTIONS(7719), + [anon_sym___extension__] = ACTIONS(7717), + [anon_sym___attribute__] = ACTIONS(7717), + [anon_sym___attribute] = ACTIONS(7717), + [anon_sym_LBRACE] = ACTIONS(7719), + [anon_sym_signed] = ACTIONS(9114), + [anon_sym_unsigned] = ACTIONS(9114), + [anon_sym_long] = ACTIONS(9114), + [anon_sym_short] = ACTIONS(9114), + [anon_sym_LBRACK] = ACTIONS(7719), + [anon_sym_RBRACK] = ACTIONS(7719), + [anon_sym_const] = ACTIONS(7717), + [anon_sym_constexpr] = ACTIONS(7717), + [anon_sym_volatile] = ACTIONS(7717), + [anon_sym_restrict] = ACTIONS(7717), + [anon_sym___restrict__] = ACTIONS(7717), + [anon_sym__Atomic] = ACTIONS(7717), + [anon_sym__Noreturn] = ACTIONS(7717), + [anon_sym_noreturn] = ACTIONS(7717), + [anon_sym__Nonnull] = ACTIONS(7717), + [anon_sym_mutable] = ACTIONS(7717), + [anon_sym_constinit] = ACTIONS(7717), + [anon_sym_consteval] = ACTIONS(7717), + [anon_sym_alignas] = ACTIONS(7717), + [anon_sym__Alignas] = ACTIONS(7717), + [anon_sym_QMARK] = ACTIONS(7719), + [anon_sym_LT_EQ_GT] = ACTIONS(7719), + [anon_sym_or] = ACTIONS(7717), + [anon_sym_and] = ACTIONS(7717), + [anon_sym_bitor] = ACTIONS(7717), + [anon_sym_xor] = ACTIONS(7717), + [anon_sym_bitand] = ACTIONS(7717), + [anon_sym_not_eq] = ACTIONS(7717), + [anon_sym_DASH_DASH] = ACTIONS(7719), + [anon_sym_PLUS_PLUS] = ACTIONS(7719), + [anon_sym_DOT] = ACTIONS(7717), + [anon_sym_DOT_STAR] = ACTIONS(7719), + [anon_sym_DASH_GT] = ACTIONS(7719), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7717), + [anon_sym_override] = ACTIONS(7717), + [anon_sym_requires] = ACTIONS(7717), + }, + [STATE(3311)] = { + [sym_identifier] = ACTIONS(8661), + [aux_sym_preproc_def_token1] = ACTIONS(8661), + [aux_sym_preproc_if_token1] = ACTIONS(8661), + [aux_sym_preproc_if_token2] = ACTIONS(8661), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8661), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8661), + [sym_preproc_directive] = ACTIONS(8661), + [anon_sym_LPAREN2] = ACTIONS(8663), + [anon_sym_TILDE] = ACTIONS(8663), + [anon_sym_STAR] = ACTIONS(8663), + [anon_sym_AMP_AMP] = ACTIONS(8663), + [anon_sym_AMP] = ACTIONS(8661), + [anon_sym_SEMI] = ACTIONS(8663), + [anon_sym___extension__] = ACTIONS(8661), + [anon_sym_typedef] = ACTIONS(8661), + [anon_sym_virtual] = ACTIONS(8661), + [anon_sym_extern] = ACTIONS(8661), + [anon_sym___attribute__] = ACTIONS(8661), + [anon_sym___attribute] = ACTIONS(8661), + [anon_sym_using] = ACTIONS(8661), + [anon_sym_COLON_COLON] = ACTIONS(8663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8663), + [anon_sym___declspec] = ACTIONS(8661), + [anon_sym___based] = ACTIONS(8661), + [anon_sym_signed] = ACTIONS(8661), + [anon_sym_unsigned] = ACTIONS(8661), + [anon_sym_long] = ACTIONS(8661), + [anon_sym_short] = ACTIONS(8661), + [anon_sym_LBRACK] = ACTIONS(8661), + [anon_sym_static] = ACTIONS(8661), + [anon_sym_register] = ACTIONS(8661), + [anon_sym_inline] = ACTIONS(8661), + [anon_sym___inline] = ACTIONS(8661), + [anon_sym___inline__] = ACTIONS(8661), + [anon_sym___forceinline] = ACTIONS(8661), + [anon_sym_thread_local] = ACTIONS(8661), + [anon_sym___thread] = ACTIONS(8661), + [anon_sym_const] = ACTIONS(8661), + [anon_sym_constexpr] = ACTIONS(8661), + [anon_sym_volatile] = ACTIONS(8661), + [anon_sym_restrict] = ACTIONS(8661), + [anon_sym___restrict__] = ACTIONS(8661), + [anon_sym__Atomic] = ACTIONS(8661), + [anon_sym__Noreturn] = ACTIONS(8661), + [anon_sym_noreturn] = ACTIONS(8661), + [anon_sym__Nonnull] = ACTIONS(8661), + [anon_sym_mutable] = ACTIONS(8661), + [anon_sym_constinit] = ACTIONS(8661), + [anon_sym_consteval] = ACTIONS(8661), + [anon_sym_alignas] = ACTIONS(8661), + [anon_sym__Alignas] = ACTIONS(8661), + [sym_primitive_type] = ACTIONS(8661), + [anon_sym_enum] = ACTIONS(8661), + [anon_sym_class] = ACTIONS(8661), + [anon_sym_struct] = ACTIONS(8661), + [anon_sym_union] = ACTIONS(8661), + [anon_sym_typename] = ACTIONS(8661), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8661), + [anon_sym_decltype] = ACTIONS(8661), + [anon_sym_explicit] = ACTIONS(8661), + [anon_sym_private] = ACTIONS(8661), + [anon_sym_template] = ACTIONS(8661), + [anon_sym_operator] = ACTIONS(8661), + [anon_sym_friend] = ACTIONS(8661), + [anon_sym_public] = ACTIONS(8661), + [anon_sym_protected] = ACTIONS(8661), + [anon_sym_static_assert] = ACTIONS(8661), + [anon_sym_LBRACK_COLON] = ACTIONS(8663), + }, + [STATE(3312)] = { + [sym_identifier] = ACTIONS(3618), + [aux_sym_preproc_def_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token2] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), + [sym_preproc_directive] = ACTIONS(3618), + [anon_sym_LPAREN2] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_AMP] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym___extension__] = ACTIONS(3618), + [anon_sym_typedef] = ACTIONS(3618), + [anon_sym_virtual] = ACTIONS(3618), + [anon_sym_extern] = ACTIONS(3618), + [anon_sym___attribute__] = ACTIONS(3618), + [anon_sym___attribute] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_COLON_COLON] = ACTIONS(3620), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), + [anon_sym___declspec] = ACTIONS(3618), + [anon_sym___based] = ACTIONS(3618), + [anon_sym_signed] = ACTIONS(3618), + [anon_sym_unsigned] = ACTIONS(3618), + [anon_sym_long] = ACTIONS(3618), + [anon_sym_short] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_register] = ACTIONS(3618), + [anon_sym_inline] = ACTIONS(3618), + [anon_sym___inline] = ACTIONS(3618), + [anon_sym___inline__] = ACTIONS(3618), + [anon_sym___forceinline] = ACTIONS(3618), + [anon_sym_thread_local] = ACTIONS(3618), + [anon_sym___thread] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_constexpr] = ACTIONS(3618), + [anon_sym_volatile] = ACTIONS(3618), + [anon_sym_restrict] = ACTIONS(3618), + [anon_sym___restrict__] = ACTIONS(3618), + [anon_sym__Atomic] = ACTIONS(3618), + [anon_sym__Noreturn] = ACTIONS(3618), + [anon_sym_noreturn] = ACTIONS(3618), + [anon_sym__Nonnull] = ACTIONS(3618), + [anon_sym_mutable] = ACTIONS(3618), + [anon_sym_constinit] = ACTIONS(3618), + [anon_sym_consteval] = ACTIONS(3618), + [anon_sym_alignas] = ACTIONS(3618), + [anon_sym__Alignas] = ACTIONS(3618), + [sym_primitive_type] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_struct] = ACTIONS(3618), + [anon_sym_union] = ACTIONS(3618), + [anon_sym_typename] = ACTIONS(3618), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3618), + [anon_sym_decltype] = ACTIONS(3618), + [anon_sym_explicit] = ACTIONS(3618), + [anon_sym_private] = ACTIONS(3618), + [anon_sym_template] = ACTIONS(3618), + [anon_sym_operator] = ACTIONS(3618), + [anon_sym_friend] = ACTIONS(3618), + [anon_sym_public] = ACTIONS(3618), + [anon_sym_protected] = ACTIONS(3618), + [anon_sym_static_assert] = ACTIONS(3618), + [anon_sym_LBRACK_COLON] = ACTIONS(3620), + }, + [STATE(3313)] = { + [sym_identifier] = ACTIONS(3618), + [aux_sym_preproc_def_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token2] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), + [sym_preproc_directive] = ACTIONS(3618), + [anon_sym_LPAREN2] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_AMP] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym___extension__] = ACTIONS(3618), + [anon_sym_typedef] = ACTIONS(3618), + [anon_sym_virtual] = ACTIONS(3618), + [anon_sym_extern] = ACTIONS(3618), + [anon_sym___attribute__] = ACTIONS(3618), + [anon_sym___attribute] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_COLON_COLON] = ACTIONS(3620), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), + [anon_sym___declspec] = ACTIONS(3618), + [anon_sym___based] = ACTIONS(3618), + [anon_sym_signed] = ACTIONS(3618), + [anon_sym_unsigned] = ACTIONS(3618), + [anon_sym_long] = ACTIONS(3618), + [anon_sym_short] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_register] = ACTIONS(3618), + [anon_sym_inline] = ACTIONS(3618), + [anon_sym___inline] = ACTIONS(3618), + [anon_sym___inline__] = ACTIONS(3618), + [anon_sym___forceinline] = ACTIONS(3618), + [anon_sym_thread_local] = ACTIONS(3618), + [anon_sym___thread] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_constexpr] = ACTIONS(3618), + [anon_sym_volatile] = ACTIONS(3618), + [anon_sym_restrict] = ACTIONS(3618), + [anon_sym___restrict__] = ACTIONS(3618), + [anon_sym__Atomic] = ACTIONS(3618), + [anon_sym__Noreturn] = ACTIONS(3618), + [anon_sym_noreturn] = ACTIONS(3618), + [anon_sym__Nonnull] = ACTIONS(3618), + [anon_sym_mutable] = ACTIONS(3618), + [anon_sym_constinit] = ACTIONS(3618), + [anon_sym_consteval] = ACTIONS(3618), + [anon_sym_alignas] = ACTIONS(3618), + [anon_sym__Alignas] = ACTIONS(3618), + [sym_primitive_type] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_struct] = ACTIONS(3618), + [anon_sym_union] = ACTIONS(3618), + [anon_sym_typename] = ACTIONS(3618), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3618), + [anon_sym_decltype] = ACTIONS(3618), + [anon_sym_explicit] = ACTIONS(3618), + [anon_sym_private] = ACTIONS(3618), + [anon_sym_template] = ACTIONS(3618), + [anon_sym_operator] = ACTIONS(3618), + [anon_sym_friend] = ACTIONS(3618), + [anon_sym_public] = ACTIONS(3618), + [anon_sym_protected] = ACTIONS(3618), + [anon_sym_static_assert] = ACTIONS(3618), + [anon_sym_LBRACK_COLON] = ACTIONS(3620), + }, + [STATE(3314)] = { + [sym_identifier] = ACTIONS(3622), + [aux_sym_preproc_def_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token2] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), + [sym_preproc_directive] = ACTIONS(3622), + [anon_sym_LPAREN2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_STAR] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_AMP] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym___extension__] = ACTIONS(3622), + [anon_sym_typedef] = ACTIONS(3622), + [anon_sym_virtual] = ACTIONS(3622), + [anon_sym_extern] = ACTIONS(3622), + [anon_sym___attribute__] = ACTIONS(3622), + [anon_sym___attribute] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_COLON_COLON] = ACTIONS(3624), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), + [anon_sym___declspec] = ACTIONS(3622), + [anon_sym___based] = ACTIONS(3622), + [anon_sym_signed] = ACTIONS(3622), + [anon_sym_unsigned] = ACTIONS(3622), + [anon_sym_long] = ACTIONS(3622), + [anon_sym_short] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_register] = ACTIONS(3622), + [anon_sym_inline] = ACTIONS(3622), + [anon_sym___inline] = ACTIONS(3622), + [anon_sym___inline__] = ACTIONS(3622), + [anon_sym___forceinline] = ACTIONS(3622), + [anon_sym_thread_local] = ACTIONS(3622), + [anon_sym___thread] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_constexpr] = ACTIONS(3622), + [anon_sym_volatile] = ACTIONS(3622), + [anon_sym_restrict] = ACTIONS(3622), + [anon_sym___restrict__] = ACTIONS(3622), + [anon_sym__Atomic] = ACTIONS(3622), + [anon_sym__Noreturn] = ACTIONS(3622), + [anon_sym_noreturn] = ACTIONS(3622), + [anon_sym__Nonnull] = ACTIONS(3622), + [anon_sym_mutable] = ACTIONS(3622), + [anon_sym_constinit] = ACTIONS(3622), + [anon_sym_consteval] = ACTIONS(3622), + [anon_sym_alignas] = ACTIONS(3622), + [anon_sym__Alignas] = ACTIONS(3622), + [sym_primitive_type] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_struct] = ACTIONS(3622), + [anon_sym_union] = ACTIONS(3622), + [anon_sym_typename] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3622), + [anon_sym_decltype] = ACTIONS(3622), + [anon_sym_explicit] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_template] = ACTIONS(3622), + [anon_sym_operator] = ACTIONS(3622), + [anon_sym_friend] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_static_assert] = ACTIONS(3622), + [anon_sym_LBRACK_COLON] = ACTIONS(3624), + }, + [STATE(3315)] = { + [sym_identifier] = ACTIONS(3622), + [aux_sym_preproc_def_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token2] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), + [sym_preproc_directive] = ACTIONS(3622), + [anon_sym_LPAREN2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_STAR] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_AMP] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym___extension__] = ACTIONS(3622), + [anon_sym_typedef] = ACTIONS(3622), + [anon_sym_virtual] = ACTIONS(3622), + [anon_sym_extern] = ACTIONS(3622), + [anon_sym___attribute__] = ACTIONS(3622), + [anon_sym___attribute] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_COLON_COLON] = ACTIONS(3624), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), + [anon_sym___declspec] = ACTIONS(3622), + [anon_sym___based] = ACTIONS(3622), + [anon_sym_signed] = ACTIONS(3622), + [anon_sym_unsigned] = ACTIONS(3622), + [anon_sym_long] = ACTIONS(3622), + [anon_sym_short] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_register] = ACTIONS(3622), + [anon_sym_inline] = ACTIONS(3622), + [anon_sym___inline] = ACTIONS(3622), + [anon_sym___inline__] = ACTIONS(3622), + [anon_sym___forceinline] = ACTIONS(3622), + [anon_sym_thread_local] = ACTIONS(3622), + [anon_sym___thread] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_constexpr] = ACTIONS(3622), + [anon_sym_volatile] = ACTIONS(3622), + [anon_sym_restrict] = ACTIONS(3622), + [anon_sym___restrict__] = ACTIONS(3622), + [anon_sym__Atomic] = ACTIONS(3622), + [anon_sym__Noreturn] = ACTIONS(3622), + [anon_sym_noreturn] = ACTIONS(3622), + [anon_sym__Nonnull] = ACTIONS(3622), + [anon_sym_mutable] = ACTIONS(3622), + [anon_sym_constinit] = ACTIONS(3622), + [anon_sym_consteval] = ACTIONS(3622), + [anon_sym_alignas] = ACTIONS(3622), + [anon_sym__Alignas] = ACTIONS(3622), + [sym_primitive_type] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_struct] = ACTIONS(3622), + [anon_sym_union] = ACTIONS(3622), + [anon_sym_typename] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3622), + [anon_sym_decltype] = ACTIONS(3622), + [anon_sym_explicit] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_template] = ACTIONS(3622), + [anon_sym_operator] = ACTIONS(3622), + [anon_sym_friend] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_static_assert] = ACTIONS(3622), + [anon_sym_LBRACK_COLON] = ACTIONS(3624), + }, + [STATE(3316)] = { + [sym_identifier] = ACTIONS(8683), + [aux_sym_preproc_def_token1] = ACTIONS(8683), + [aux_sym_preproc_if_token1] = ACTIONS(8683), + [aux_sym_preproc_if_token2] = ACTIONS(8683), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8683), + [sym_preproc_directive] = ACTIONS(8683), + [anon_sym_LPAREN2] = ACTIONS(8685), + [anon_sym_TILDE] = ACTIONS(8685), + [anon_sym_STAR] = ACTIONS(8685), + [anon_sym_AMP_AMP] = ACTIONS(8685), + [anon_sym_AMP] = ACTIONS(8683), + [anon_sym_SEMI] = ACTIONS(8685), + [anon_sym___extension__] = ACTIONS(8683), + [anon_sym_typedef] = ACTIONS(8683), + [anon_sym_virtual] = ACTIONS(8683), + [anon_sym_extern] = ACTIONS(8683), + [anon_sym___attribute__] = ACTIONS(8683), + [anon_sym___attribute] = ACTIONS(8683), + [anon_sym_using] = ACTIONS(8683), + [anon_sym_COLON_COLON] = ACTIONS(8685), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8685), + [anon_sym___declspec] = ACTIONS(8683), + [anon_sym___based] = ACTIONS(8683), + [anon_sym_signed] = ACTIONS(8683), + [anon_sym_unsigned] = ACTIONS(8683), + [anon_sym_long] = ACTIONS(8683), + [anon_sym_short] = ACTIONS(8683), + [anon_sym_LBRACK] = ACTIONS(8683), + [anon_sym_static] = ACTIONS(8683), + [anon_sym_register] = ACTIONS(8683), + [anon_sym_inline] = ACTIONS(8683), + [anon_sym___inline] = ACTIONS(8683), + [anon_sym___inline__] = ACTIONS(8683), + [anon_sym___forceinline] = ACTIONS(8683), + [anon_sym_thread_local] = ACTIONS(8683), + [anon_sym___thread] = ACTIONS(8683), + [anon_sym_const] = ACTIONS(8683), + [anon_sym_constexpr] = ACTIONS(8683), + [anon_sym_volatile] = ACTIONS(8683), + [anon_sym_restrict] = ACTIONS(8683), + [anon_sym___restrict__] = ACTIONS(8683), + [anon_sym__Atomic] = ACTIONS(8683), + [anon_sym__Noreturn] = ACTIONS(8683), + [anon_sym_noreturn] = ACTIONS(8683), + [anon_sym__Nonnull] = ACTIONS(8683), + [anon_sym_mutable] = ACTIONS(8683), + [anon_sym_constinit] = ACTIONS(8683), + [anon_sym_consteval] = ACTIONS(8683), + [anon_sym_alignas] = ACTIONS(8683), + [anon_sym__Alignas] = ACTIONS(8683), + [sym_primitive_type] = ACTIONS(8683), + [anon_sym_enum] = ACTIONS(8683), + [anon_sym_class] = ACTIONS(8683), + [anon_sym_struct] = ACTIONS(8683), + [anon_sym_union] = ACTIONS(8683), + [anon_sym_typename] = ACTIONS(8683), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8683), + [anon_sym_decltype] = ACTIONS(8683), + [anon_sym_explicit] = ACTIONS(8683), + [anon_sym_private] = ACTIONS(8683), + [anon_sym_template] = ACTIONS(8683), + [anon_sym_operator] = ACTIONS(8683), + [anon_sym_friend] = ACTIONS(8683), + [anon_sym_public] = ACTIONS(8683), + [anon_sym_protected] = ACTIONS(8683), + [anon_sym_static_assert] = ACTIONS(8683), + [anon_sym_LBRACK_COLON] = ACTIONS(8685), + }, + [STATE(3317)] = { + [sym_identifier] = ACTIONS(8738), + [aux_sym_preproc_def_token1] = ACTIONS(8738), + [aux_sym_preproc_if_token1] = ACTIONS(8738), + [aux_sym_preproc_if_token2] = ACTIONS(8738), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8738), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8738), + [sym_preproc_directive] = ACTIONS(8738), + [anon_sym_LPAREN2] = ACTIONS(8740), + [anon_sym_TILDE] = ACTIONS(8740), + [anon_sym_STAR] = ACTIONS(8740), + [anon_sym_AMP_AMP] = ACTIONS(8740), + [anon_sym_AMP] = ACTIONS(8738), + [anon_sym_SEMI] = ACTIONS(8740), + [anon_sym___extension__] = ACTIONS(8738), + [anon_sym_typedef] = ACTIONS(8738), + [anon_sym_virtual] = ACTIONS(8738), + [anon_sym_extern] = ACTIONS(8738), + [anon_sym___attribute__] = ACTIONS(8738), + [anon_sym___attribute] = ACTIONS(8738), + [anon_sym_using] = ACTIONS(8738), + [anon_sym_COLON_COLON] = ACTIONS(8740), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8740), + [anon_sym___declspec] = ACTIONS(8738), + [anon_sym___based] = ACTIONS(8738), + [anon_sym_signed] = ACTIONS(8738), + [anon_sym_unsigned] = ACTIONS(8738), + [anon_sym_long] = ACTIONS(8738), + [anon_sym_short] = ACTIONS(8738), + [anon_sym_LBRACK] = ACTIONS(8738), + [anon_sym_static] = ACTIONS(8738), + [anon_sym_register] = ACTIONS(8738), + [anon_sym_inline] = ACTIONS(8738), + [anon_sym___inline] = ACTIONS(8738), + [anon_sym___inline__] = ACTIONS(8738), + [anon_sym___forceinline] = ACTIONS(8738), + [anon_sym_thread_local] = ACTIONS(8738), + [anon_sym___thread] = ACTIONS(8738), + [anon_sym_const] = ACTIONS(8738), + [anon_sym_constexpr] = ACTIONS(8738), + [anon_sym_volatile] = ACTIONS(8738), + [anon_sym_restrict] = ACTIONS(8738), + [anon_sym___restrict__] = ACTIONS(8738), + [anon_sym__Atomic] = ACTIONS(8738), + [anon_sym__Noreturn] = ACTIONS(8738), + [anon_sym_noreturn] = ACTIONS(8738), + [anon_sym__Nonnull] = ACTIONS(8738), + [anon_sym_mutable] = ACTIONS(8738), + [anon_sym_constinit] = ACTIONS(8738), + [anon_sym_consteval] = ACTIONS(8738), + [anon_sym_alignas] = ACTIONS(8738), + [anon_sym__Alignas] = ACTIONS(8738), + [sym_primitive_type] = ACTIONS(8738), + [anon_sym_enum] = ACTIONS(8738), + [anon_sym_class] = ACTIONS(8738), + [anon_sym_struct] = ACTIONS(8738), + [anon_sym_union] = ACTIONS(8738), + [anon_sym_typename] = ACTIONS(8738), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8738), + [anon_sym_decltype] = ACTIONS(8738), + [anon_sym_explicit] = ACTIONS(8738), + [anon_sym_private] = ACTIONS(8738), + [anon_sym_template] = ACTIONS(8738), + [anon_sym_operator] = ACTIONS(8738), + [anon_sym_friend] = ACTIONS(8738), + [anon_sym_public] = ACTIONS(8738), + [anon_sym_protected] = ACTIONS(8738), + [anon_sym_static_assert] = ACTIONS(8738), + [anon_sym_LBRACK_COLON] = ACTIONS(8740), + }, + [STATE(3318)] = { + [sym_identifier] = ACTIONS(8778), + [aux_sym_preproc_def_token1] = ACTIONS(8778), + [aux_sym_preproc_if_token1] = ACTIONS(8778), + [aux_sym_preproc_if_token2] = ACTIONS(8778), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8778), + [sym_preproc_directive] = ACTIONS(8778), + [anon_sym_LPAREN2] = ACTIONS(8780), + [anon_sym_TILDE] = ACTIONS(8780), + [anon_sym_STAR] = ACTIONS(8780), + [anon_sym_AMP_AMP] = ACTIONS(8780), + [anon_sym_AMP] = ACTIONS(8778), + [anon_sym_SEMI] = ACTIONS(8780), + [anon_sym___extension__] = ACTIONS(8778), + [anon_sym_typedef] = ACTIONS(8778), + [anon_sym_virtual] = ACTIONS(8778), + [anon_sym_extern] = ACTIONS(8778), + [anon_sym___attribute__] = ACTIONS(8778), + [anon_sym___attribute] = ACTIONS(8778), + [anon_sym_using] = ACTIONS(8778), + [anon_sym_COLON_COLON] = ACTIONS(8780), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8780), + [anon_sym___declspec] = ACTIONS(8778), + [anon_sym___based] = ACTIONS(8778), + [anon_sym_signed] = ACTIONS(8778), + [anon_sym_unsigned] = ACTIONS(8778), + [anon_sym_long] = ACTIONS(8778), + [anon_sym_short] = ACTIONS(8778), + [anon_sym_LBRACK] = ACTIONS(8778), + [anon_sym_static] = ACTIONS(8778), + [anon_sym_register] = ACTIONS(8778), + [anon_sym_inline] = ACTIONS(8778), + [anon_sym___inline] = ACTIONS(8778), + [anon_sym___inline__] = ACTIONS(8778), + [anon_sym___forceinline] = ACTIONS(8778), + [anon_sym_thread_local] = ACTIONS(8778), + [anon_sym___thread] = ACTIONS(8778), + [anon_sym_const] = ACTIONS(8778), + [anon_sym_constexpr] = ACTIONS(8778), + [anon_sym_volatile] = ACTIONS(8778), + [anon_sym_restrict] = ACTIONS(8778), + [anon_sym___restrict__] = ACTIONS(8778), + [anon_sym__Atomic] = ACTIONS(8778), + [anon_sym__Noreturn] = ACTIONS(8778), + [anon_sym_noreturn] = ACTIONS(8778), + [anon_sym__Nonnull] = ACTIONS(8778), + [anon_sym_mutable] = ACTIONS(8778), + [anon_sym_constinit] = ACTIONS(8778), + [anon_sym_consteval] = ACTIONS(8778), + [anon_sym_alignas] = ACTIONS(8778), + [anon_sym__Alignas] = ACTIONS(8778), + [sym_primitive_type] = ACTIONS(8778), + [anon_sym_enum] = ACTIONS(8778), + [anon_sym_class] = ACTIONS(8778), + [anon_sym_struct] = ACTIONS(8778), + [anon_sym_union] = ACTIONS(8778), + [anon_sym_typename] = ACTIONS(8778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8778), + [anon_sym_decltype] = ACTIONS(8778), + [anon_sym_explicit] = ACTIONS(8778), + [anon_sym_private] = ACTIONS(8778), + [anon_sym_template] = ACTIONS(8778), + [anon_sym_operator] = ACTIONS(8778), + [anon_sym_friend] = ACTIONS(8778), + [anon_sym_public] = ACTIONS(8778), + [anon_sym_protected] = ACTIONS(8778), + [anon_sym_static_assert] = ACTIONS(8778), + [anon_sym_LBRACK_COLON] = ACTIONS(8780), + }, + [STATE(3319)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3295), + [sym_identifier] = ACTIONS(7723), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), + [anon_sym_COMMA] = ACTIONS(7725), + [aux_sym_preproc_if_token2] = ACTIONS(7725), + [aux_sym_preproc_else_token1] = ACTIONS(7725), + [aux_sym_preproc_elif_token1] = ACTIONS(7723), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7725), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7725), + [anon_sym_LPAREN2] = ACTIONS(7725), + [anon_sym_DASH] = ACTIONS(7723), + [anon_sym_PLUS] = ACTIONS(7723), + [anon_sym_STAR] = ACTIONS(7725), + [anon_sym_SLASH] = ACTIONS(7723), + [anon_sym_PERCENT] = ACTIONS(7725), + [anon_sym_PIPE_PIPE] = ACTIONS(7725), + [anon_sym_AMP_AMP] = ACTIONS(7725), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_CARET] = ACTIONS(7725), + [anon_sym_AMP] = ACTIONS(7723), + [anon_sym_EQ_EQ] = ACTIONS(7725), + [anon_sym_BANG_EQ] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_EQ] = ACTIONS(7725), + [anon_sym_LT_EQ] = ACTIONS(7723), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_LT_LT] = ACTIONS(7725), + [anon_sym_GT_GT] = ACTIONS(7725), + [anon_sym___extension__] = ACTIONS(7723), + [anon_sym___attribute__] = ACTIONS(7723), + [anon_sym___attribute] = ACTIONS(7723), + [anon_sym_LBRACE] = ACTIONS(7725), + [anon_sym_signed] = ACTIONS(9101), + [anon_sym_unsigned] = ACTIONS(9101), + [anon_sym_long] = ACTIONS(9101), + [anon_sym_short] = ACTIONS(9101), + [anon_sym_LBRACK] = ACTIONS(7725), + [anon_sym_RBRACK] = ACTIONS(7725), + [anon_sym_const] = ACTIONS(7723), + [anon_sym_constexpr] = ACTIONS(7723), + [anon_sym_volatile] = ACTIONS(7723), + [anon_sym_restrict] = ACTIONS(7723), + [anon_sym___restrict__] = ACTIONS(7723), + [anon_sym__Atomic] = ACTIONS(7723), + [anon_sym__Noreturn] = ACTIONS(7723), + [anon_sym_noreturn] = ACTIONS(7723), + [anon_sym__Nonnull] = ACTIONS(7723), + [anon_sym_mutable] = ACTIONS(7723), + [anon_sym_constinit] = ACTIONS(7723), + [anon_sym_consteval] = ACTIONS(7723), + [anon_sym_alignas] = ACTIONS(7723), + [anon_sym__Alignas] = ACTIONS(7723), + [anon_sym_QMARK] = ACTIONS(7725), + [anon_sym_LT_EQ_GT] = ACTIONS(7725), + [anon_sym_or] = ACTIONS(7723), + [anon_sym_and] = ACTIONS(7723), + [anon_sym_bitor] = ACTIONS(7723), + [anon_sym_xor] = ACTIONS(7723), + [anon_sym_bitand] = ACTIONS(7723), + [anon_sym_not_eq] = ACTIONS(7723), + [anon_sym_DASH_DASH] = ACTIONS(7725), + [anon_sym_PLUS_PLUS] = ACTIONS(7725), + [anon_sym_DOT] = ACTIONS(7723), + [anon_sym_DOT_STAR] = ACTIONS(7725), + [anon_sym_DASH_GT] = ACTIONS(7725), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7723), + [anon_sym_override] = ACTIONS(7723), + [anon_sym_requires] = ACTIONS(7723), + }, + [STATE(3320)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3295), + [sym_identifier] = ACTIONS(7727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7729), + [anon_sym_COMMA] = ACTIONS(7729), + [aux_sym_preproc_if_token2] = ACTIONS(7729), + [aux_sym_preproc_else_token1] = ACTIONS(7729), + [aux_sym_preproc_elif_token1] = ACTIONS(7727), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7729), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7729), + [anon_sym_LPAREN2] = ACTIONS(7729), + [anon_sym_DASH] = ACTIONS(7727), + [anon_sym_PLUS] = ACTIONS(7727), + [anon_sym_STAR] = ACTIONS(7729), + [anon_sym_SLASH] = ACTIONS(7727), + [anon_sym_PERCENT] = ACTIONS(7729), + [anon_sym_PIPE_PIPE] = ACTIONS(7729), + [anon_sym_AMP_AMP] = ACTIONS(7729), + [anon_sym_PIPE] = ACTIONS(7727), + [anon_sym_CARET] = ACTIONS(7729), + [anon_sym_AMP] = ACTIONS(7727), + [anon_sym_EQ_EQ] = ACTIONS(7729), + [anon_sym_BANG_EQ] = ACTIONS(7729), + [anon_sym_GT] = ACTIONS(7727), + [anon_sym_GT_EQ] = ACTIONS(7729), + [anon_sym_LT_EQ] = ACTIONS(7727), + [anon_sym_LT] = ACTIONS(7727), + [anon_sym_LT_LT] = ACTIONS(7729), + [anon_sym_GT_GT] = ACTIONS(7729), + [anon_sym___extension__] = ACTIONS(7727), + [anon_sym___attribute__] = ACTIONS(7727), + [anon_sym___attribute] = ACTIONS(7727), + [anon_sym_LBRACE] = ACTIONS(7729), + [anon_sym_signed] = ACTIONS(9101), + [anon_sym_unsigned] = ACTIONS(9101), + [anon_sym_long] = ACTIONS(9101), + [anon_sym_short] = ACTIONS(9101), + [anon_sym_LBRACK] = ACTIONS(7729), + [anon_sym_RBRACK] = ACTIONS(7729), + [anon_sym_const] = ACTIONS(7727), + [anon_sym_constexpr] = ACTIONS(7727), + [anon_sym_volatile] = ACTIONS(7727), + [anon_sym_restrict] = ACTIONS(7727), + [anon_sym___restrict__] = ACTIONS(7727), + [anon_sym__Atomic] = ACTIONS(7727), + [anon_sym__Noreturn] = ACTIONS(7727), + [anon_sym_noreturn] = ACTIONS(7727), + [anon_sym__Nonnull] = ACTIONS(7727), + [anon_sym_mutable] = ACTIONS(7727), + [anon_sym_constinit] = ACTIONS(7727), + [anon_sym_consteval] = ACTIONS(7727), + [anon_sym_alignas] = ACTIONS(7727), + [anon_sym__Alignas] = ACTIONS(7727), + [anon_sym_QMARK] = ACTIONS(7729), + [anon_sym_LT_EQ_GT] = ACTIONS(7729), + [anon_sym_or] = ACTIONS(7727), + [anon_sym_and] = ACTIONS(7727), + [anon_sym_bitor] = ACTIONS(7727), + [anon_sym_xor] = ACTIONS(7727), + [anon_sym_bitand] = ACTIONS(7727), + [anon_sym_not_eq] = ACTIONS(7727), + [anon_sym_DASH_DASH] = ACTIONS(7729), + [anon_sym_PLUS_PLUS] = ACTIONS(7729), + [anon_sym_DOT] = ACTIONS(7727), + [anon_sym_DOT_STAR] = ACTIONS(7729), + [anon_sym_DASH_GT] = ACTIONS(7729), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7727), + [anon_sym_override] = ACTIONS(7727), + [anon_sym_requires] = ACTIONS(7727), + }, + [STATE(3321)] = { + [sym_identifier] = ACTIONS(3626), + [aux_sym_preproc_def_token1] = ACTIONS(3626), + [aux_sym_preproc_if_token1] = ACTIONS(3626), + [aux_sym_preproc_if_token2] = ACTIONS(3626), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), + [sym_preproc_directive] = ACTIONS(3626), + [anon_sym_LPAREN2] = ACTIONS(3628), + [anon_sym_TILDE] = ACTIONS(3628), + [anon_sym_STAR] = ACTIONS(3628), + [anon_sym_AMP_AMP] = ACTIONS(3628), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym___extension__] = ACTIONS(3626), + [anon_sym_typedef] = ACTIONS(3626), + [anon_sym_virtual] = ACTIONS(3626), + [anon_sym_extern] = ACTIONS(3626), + [anon_sym___attribute__] = ACTIONS(3626), + [anon_sym___attribute] = ACTIONS(3626), + [anon_sym_using] = ACTIONS(3626), + [anon_sym_COLON_COLON] = ACTIONS(3628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), + [anon_sym___declspec] = ACTIONS(3626), + [anon_sym___based] = ACTIONS(3626), + [anon_sym_signed] = ACTIONS(3626), + [anon_sym_unsigned] = ACTIONS(3626), + [anon_sym_long] = ACTIONS(3626), + [anon_sym_short] = ACTIONS(3626), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_static] = ACTIONS(3626), + [anon_sym_register] = ACTIONS(3626), + [anon_sym_inline] = ACTIONS(3626), + [anon_sym___inline] = ACTIONS(3626), + [anon_sym___inline__] = ACTIONS(3626), + [anon_sym___forceinline] = ACTIONS(3626), + [anon_sym_thread_local] = ACTIONS(3626), + [anon_sym___thread] = ACTIONS(3626), + [anon_sym_const] = ACTIONS(3626), + [anon_sym_constexpr] = ACTIONS(3626), + [anon_sym_volatile] = ACTIONS(3626), + [anon_sym_restrict] = ACTIONS(3626), + [anon_sym___restrict__] = ACTIONS(3626), + [anon_sym__Atomic] = ACTIONS(3626), + [anon_sym__Noreturn] = ACTIONS(3626), + [anon_sym_noreturn] = ACTIONS(3626), + [anon_sym__Nonnull] = ACTIONS(3626), + [anon_sym_mutable] = ACTIONS(3626), + [anon_sym_constinit] = ACTIONS(3626), + [anon_sym_consteval] = ACTIONS(3626), + [anon_sym_alignas] = ACTIONS(3626), + [anon_sym__Alignas] = ACTIONS(3626), + [sym_primitive_type] = ACTIONS(3626), + [anon_sym_enum] = ACTIONS(3626), + [anon_sym_class] = ACTIONS(3626), + [anon_sym_struct] = ACTIONS(3626), + [anon_sym_union] = ACTIONS(3626), + [anon_sym_typename] = ACTIONS(3626), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3626), + [anon_sym_decltype] = ACTIONS(3626), + [anon_sym_explicit] = ACTIONS(3626), + [anon_sym_private] = ACTIONS(3626), + [anon_sym_template] = ACTIONS(3626), + [anon_sym_operator] = ACTIONS(3626), + [anon_sym_friend] = ACTIONS(3626), + [anon_sym_public] = ACTIONS(3626), + [anon_sym_protected] = ACTIONS(3626), + [anon_sym_static_assert] = ACTIONS(3626), + [anon_sym_LBRACK_COLON] = ACTIONS(3628), + }, + [STATE(3322)] = { + [sym_identifier] = ACTIONS(3630), + [aux_sym_preproc_def_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token2] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), + [sym_preproc_directive] = ACTIONS(3630), + [anon_sym_LPAREN2] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_AMP] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym___extension__] = ACTIONS(3630), + [anon_sym_typedef] = ACTIONS(3630), + [anon_sym_virtual] = ACTIONS(3630), + [anon_sym_extern] = ACTIONS(3630), + [anon_sym___attribute__] = ACTIONS(3630), + [anon_sym___attribute] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), + [anon_sym___declspec] = ACTIONS(3630), + [anon_sym___based] = ACTIONS(3630), + [anon_sym_signed] = ACTIONS(3630), + [anon_sym_unsigned] = ACTIONS(3630), + [anon_sym_long] = ACTIONS(3630), + [anon_sym_short] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_register] = ACTIONS(3630), + [anon_sym_inline] = ACTIONS(3630), + [anon_sym___inline] = ACTIONS(3630), + [anon_sym___inline__] = ACTIONS(3630), + [anon_sym___forceinline] = ACTIONS(3630), + [anon_sym_thread_local] = ACTIONS(3630), + [anon_sym___thread] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_constexpr] = ACTIONS(3630), + [anon_sym_volatile] = ACTIONS(3630), + [anon_sym_restrict] = ACTIONS(3630), + [anon_sym___restrict__] = ACTIONS(3630), + [anon_sym__Atomic] = ACTIONS(3630), + [anon_sym__Noreturn] = ACTIONS(3630), + [anon_sym_noreturn] = ACTIONS(3630), + [anon_sym__Nonnull] = ACTIONS(3630), + [anon_sym_mutable] = ACTIONS(3630), + [anon_sym_constinit] = ACTIONS(3630), + [anon_sym_consteval] = ACTIONS(3630), + [anon_sym_alignas] = ACTIONS(3630), + [anon_sym__Alignas] = ACTIONS(3630), + [sym_primitive_type] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_struct] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3630), + [anon_sym_typename] = ACTIONS(3630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3630), + [anon_sym_decltype] = ACTIONS(3630), + [anon_sym_explicit] = ACTIONS(3630), + [anon_sym_private] = ACTIONS(3630), + [anon_sym_template] = ACTIONS(3630), + [anon_sym_operator] = ACTIONS(3630), + [anon_sym_friend] = ACTIONS(3630), + [anon_sym_public] = ACTIONS(3630), + [anon_sym_protected] = ACTIONS(3630), + [anon_sym_static_assert] = ACTIONS(3630), + [anon_sym_LBRACK_COLON] = ACTIONS(3632), + }, + [STATE(3323)] = { + [sym_identifier] = ACTIONS(4192), + [aux_sym_preproc_def_token1] = ACTIONS(4192), + [aux_sym_preproc_if_token1] = ACTIONS(4192), + [aux_sym_preproc_if_token2] = ACTIONS(4192), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4192), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4192), + [sym_preproc_directive] = ACTIONS(4192), + [anon_sym_LPAREN2] = ACTIONS(4194), + [anon_sym_TILDE] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [anon_sym_AMP_AMP] = ACTIONS(4194), + [anon_sym_AMP] = ACTIONS(4192), + [anon_sym_SEMI] = ACTIONS(4194), + [anon_sym___extension__] = ACTIONS(4192), + [anon_sym_typedef] = ACTIONS(4192), + [anon_sym_virtual] = ACTIONS(4192), + [anon_sym_extern] = ACTIONS(4192), + [anon_sym___attribute__] = ACTIONS(4192), + [anon_sym___attribute] = ACTIONS(4192), + [anon_sym_using] = ACTIONS(4192), + [anon_sym_COLON_COLON] = ACTIONS(4194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), + [anon_sym___declspec] = ACTIONS(4192), + [anon_sym___based] = ACTIONS(4192), + [anon_sym_signed] = ACTIONS(4192), + [anon_sym_unsigned] = ACTIONS(4192), + [anon_sym_long] = ACTIONS(4192), + [anon_sym_short] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_static] = ACTIONS(4192), + [anon_sym_register] = ACTIONS(4192), + [anon_sym_inline] = ACTIONS(4192), + [anon_sym___inline] = ACTIONS(4192), + [anon_sym___inline__] = ACTIONS(4192), + [anon_sym___forceinline] = ACTIONS(4192), + [anon_sym_thread_local] = ACTIONS(4192), + [anon_sym___thread] = ACTIONS(4192), + [anon_sym_const] = ACTIONS(4192), + [anon_sym_constexpr] = ACTIONS(4192), + [anon_sym_volatile] = ACTIONS(4192), + [anon_sym_restrict] = ACTIONS(4192), + [anon_sym___restrict__] = ACTIONS(4192), + [anon_sym__Atomic] = ACTIONS(4192), + [anon_sym__Noreturn] = ACTIONS(4192), + [anon_sym_noreturn] = ACTIONS(4192), + [anon_sym__Nonnull] = ACTIONS(4192), + [anon_sym_mutable] = ACTIONS(4192), + [anon_sym_constinit] = ACTIONS(4192), + [anon_sym_consteval] = ACTIONS(4192), + [anon_sym_alignas] = ACTIONS(4192), + [anon_sym__Alignas] = ACTIONS(4192), + [sym_primitive_type] = ACTIONS(4192), + [anon_sym_enum] = ACTIONS(4192), + [anon_sym_class] = ACTIONS(4192), + [anon_sym_struct] = ACTIONS(4192), + [anon_sym_union] = ACTIONS(4192), + [anon_sym_typename] = ACTIONS(4192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4192), + [anon_sym_decltype] = ACTIONS(4192), + [anon_sym_explicit] = ACTIONS(4192), + [anon_sym_private] = ACTIONS(4192), + [anon_sym_template] = ACTIONS(4192), + [anon_sym_operator] = ACTIONS(4192), + [anon_sym_friend] = ACTIONS(4192), + [anon_sym_public] = ACTIONS(4192), + [anon_sym_protected] = ACTIONS(4192), + [anon_sym_static_assert] = ACTIONS(4192), + [anon_sym_LBRACK_COLON] = ACTIONS(4194), + }, + [STATE(3324)] = { + [sym_identifier] = ACTIONS(3658), + [aux_sym_preproc_def_token1] = ACTIONS(3658), + [aux_sym_preproc_if_token1] = ACTIONS(3658), + [aux_sym_preproc_if_token2] = ACTIONS(3658), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3658), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3658), + [sym_preproc_directive] = ACTIONS(3658), + [anon_sym_LPAREN2] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [anon_sym_STAR] = ACTIONS(3660), + [anon_sym_AMP_AMP] = ACTIONS(3660), + [anon_sym_AMP] = ACTIONS(3658), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym___extension__] = ACTIONS(3658), + [anon_sym_typedef] = ACTIONS(3658), + [anon_sym_virtual] = ACTIONS(3658), + [anon_sym_extern] = ACTIONS(3658), + [anon_sym___attribute__] = ACTIONS(3658), + [anon_sym___attribute] = ACTIONS(3658), + [anon_sym_using] = ACTIONS(3658), + [anon_sym_COLON_COLON] = ACTIONS(3660), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3660), + [anon_sym___declspec] = ACTIONS(3658), + [anon_sym___based] = ACTIONS(3658), + [anon_sym_signed] = ACTIONS(3658), + [anon_sym_unsigned] = ACTIONS(3658), + [anon_sym_long] = ACTIONS(3658), + [anon_sym_short] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_register] = ACTIONS(3658), + [anon_sym_inline] = ACTIONS(3658), + [anon_sym___inline] = ACTIONS(3658), + [anon_sym___inline__] = ACTIONS(3658), + [anon_sym___forceinline] = ACTIONS(3658), + [anon_sym_thread_local] = ACTIONS(3658), + [anon_sym___thread] = ACTIONS(3658), + [anon_sym_const] = ACTIONS(3658), + [anon_sym_constexpr] = ACTIONS(3658), + [anon_sym_volatile] = ACTIONS(3658), + [anon_sym_restrict] = ACTIONS(3658), + [anon_sym___restrict__] = ACTIONS(3658), + [anon_sym__Atomic] = ACTIONS(3658), + [anon_sym__Noreturn] = ACTIONS(3658), + [anon_sym_noreturn] = ACTIONS(3658), + [anon_sym__Nonnull] = ACTIONS(3658), + [anon_sym_mutable] = ACTIONS(3658), + [anon_sym_constinit] = ACTIONS(3658), + [anon_sym_consteval] = ACTIONS(3658), + [anon_sym_alignas] = ACTIONS(3658), + [anon_sym__Alignas] = ACTIONS(3658), + [sym_primitive_type] = ACTIONS(3658), + [anon_sym_enum] = ACTIONS(3658), + [anon_sym_class] = ACTIONS(3658), + [anon_sym_struct] = ACTIONS(3658), + [anon_sym_union] = ACTIONS(3658), + [anon_sym_typename] = ACTIONS(3658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3658), + [anon_sym_decltype] = ACTIONS(3658), + [anon_sym_explicit] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_template] = ACTIONS(3658), + [anon_sym_operator] = ACTIONS(3658), + [anon_sym_friend] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_protected] = ACTIONS(3658), + [anon_sym_static_assert] = ACTIONS(3658), + [anon_sym_LBRACK_COLON] = ACTIONS(3660), + }, + [STATE(3325)] = { + [sym_identifier] = ACTIONS(3662), + [aux_sym_preproc_def_token1] = ACTIONS(3662), + [aux_sym_preproc_if_token1] = ACTIONS(3662), + [aux_sym_preproc_if_token2] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), + [sym_preproc_directive] = ACTIONS(3662), + [anon_sym_LPAREN2] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym___extension__] = ACTIONS(3662), + [anon_sym_typedef] = ACTIONS(3662), + [anon_sym_virtual] = ACTIONS(3662), + [anon_sym_extern] = ACTIONS(3662), + [anon_sym___attribute__] = ACTIONS(3662), + [anon_sym___attribute] = ACTIONS(3662), + [anon_sym_using] = ACTIONS(3662), + [anon_sym_COLON_COLON] = ACTIONS(3664), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), + [anon_sym___declspec] = ACTIONS(3662), + [anon_sym___based] = ACTIONS(3662), + [anon_sym_signed] = ACTIONS(3662), + [anon_sym_unsigned] = ACTIONS(3662), + [anon_sym_long] = ACTIONS(3662), + [anon_sym_short] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3662), + [anon_sym_static] = ACTIONS(3662), + [anon_sym_register] = ACTIONS(3662), + [anon_sym_inline] = ACTIONS(3662), + [anon_sym___inline] = ACTIONS(3662), + [anon_sym___inline__] = ACTIONS(3662), + [anon_sym___forceinline] = ACTIONS(3662), + [anon_sym_thread_local] = ACTIONS(3662), + [anon_sym___thread] = ACTIONS(3662), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_constexpr] = ACTIONS(3662), + [anon_sym_volatile] = ACTIONS(3662), + [anon_sym_restrict] = ACTIONS(3662), + [anon_sym___restrict__] = ACTIONS(3662), + [anon_sym__Atomic] = ACTIONS(3662), + [anon_sym__Noreturn] = ACTIONS(3662), + [anon_sym_noreturn] = ACTIONS(3662), + [anon_sym__Nonnull] = ACTIONS(3662), + [anon_sym_mutable] = ACTIONS(3662), + [anon_sym_constinit] = ACTIONS(3662), + [anon_sym_consteval] = ACTIONS(3662), + [anon_sym_alignas] = ACTIONS(3662), + [anon_sym__Alignas] = ACTIONS(3662), + [sym_primitive_type] = ACTIONS(3662), + [anon_sym_enum] = ACTIONS(3662), + [anon_sym_class] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(3662), + [anon_sym_union] = ACTIONS(3662), + [anon_sym_typename] = ACTIONS(3662), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3662), + [anon_sym_decltype] = ACTIONS(3662), + [anon_sym_explicit] = ACTIONS(3662), + [anon_sym_private] = ACTIONS(3662), + [anon_sym_template] = ACTIONS(3662), + [anon_sym_operator] = ACTIONS(3662), + [anon_sym_friend] = ACTIONS(3662), + [anon_sym_public] = ACTIONS(3662), + [anon_sym_protected] = ACTIONS(3662), + [anon_sym_static_assert] = ACTIONS(3662), + [anon_sym_LBRACK_COLON] = ACTIONS(3664), + }, + [STATE(3326)] = { + [sym_identifier] = ACTIONS(3662), + [aux_sym_preproc_def_token1] = ACTIONS(3662), + [aux_sym_preproc_if_token1] = ACTIONS(3662), + [aux_sym_preproc_if_token2] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), + [sym_preproc_directive] = ACTIONS(3662), + [anon_sym_LPAREN2] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym___extension__] = ACTIONS(3662), + [anon_sym_typedef] = ACTIONS(3662), + [anon_sym_virtual] = ACTIONS(3662), + [anon_sym_extern] = ACTIONS(3662), + [anon_sym___attribute__] = ACTIONS(3662), + [anon_sym___attribute] = ACTIONS(3662), + [anon_sym_using] = ACTIONS(3662), + [anon_sym_COLON_COLON] = ACTIONS(3664), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), + [anon_sym___declspec] = ACTIONS(3662), + [anon_sym___based] = ACTIONS(3662), + [anon_sym_signed] = ACTIONS(3662), + [anon_sym_unsigned] = ACTIONS(3662), + [anon_sym_long] = ACTIONS(3662), + [anon_sym_short] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3662), + [anon_sym_static] = ACTIONS(3662), + [anon_sym_register] = ACTIONS(3662), + [anon_sym_inline] = ACTIONS(3662), + [anon_sym___inline] = ACTIONS(3662), + [anon_sym___inline__] = ACTIONS(3662), + [anon_sym___forceinline] = ACTIONS(3662), + [anon_sym_thread_local] = ACTIONS(3662), + [anon_sym___thread] = ACTIONS(3662), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_constexpr] = ACTIONS(3662), + [anon_sym_volatile] = ACTIONS(3662), + [anon_sym_restrict] = ACTIONS(3662), + [anon_sym___restrict__] = ACTIONS(3662), + [anon_sym__Atomic] = ACTIONS(3662), + [anon_sym__Noreturn] = ACTIONS(3662), + [anon_sym_noreturn] = ACTIONS(3662), + [anon_sym__Nonnull] = ACTIONS(3662), + [anon_sym_mutable] = ACTIONS(3662), + [anon_sym_constinit] = ACTIONS(3662), + [anon_sym_consteval] = ACTIONS(3662), + [anon_sym_alignas] = ACTIONS(3662), + [anon_sym__Alignas] = ACTIONS(3662), + [sym_primitive_type] = ACTIONS(3662), + [anon_sym_enum] = ACTIONS(3662), + [anon_sym_class] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(3662), + [anon_sym_union] = ACTIONS(3662), + [anon_sym_typename] = ACTIONS(3662), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3662), + [anon_sym_decltype] = ACTIONS(3662), + [anon_sym_explicit] = ACTIONS(3662), + [anon_sym_private] = ACTIONS(3662), + [anon_sym_template] = ACTIONS(3662), + [anon_sym_operator] = ACTIONS(3662), + [anon_sym_friend] = ACTIONS(3662), + [anon_sym_public] = ACTIONS(3662), + [anon_sym_protected] = ACTIONS(3662), + [anon_sym_static_assert] = ACTIONS(3662), + [anon_sym_LBRACK_COLON] = ACTIONS(3664), + }, + [STATE(3327)] = { + [sym_identifier] = ACTIONS(3666), + [aux_sym_preproc_def_token1] = ACTIONS(3666), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_if_token2] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3666), + [sym_preproc_directive] = ACTIONS(3666), + [anon_sym_LPAREN2] = ACTIONS(3668), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym___extension__] = ACTIONS(3666), + [anon_sym_typedef] = ACTIONS(3666), + [anon_sym_virtual] = ACTIONS(3666), + [anon_sym_extern] = ACTIONS(3666), + [anon_sym___attribute__] = ACTIONS(3666), + [anon_sym___attribute] = ACTIONS(3666), + [anon_sym_using] = ACTIONS(3666), + [anon_sym_COLON_COLON] = ACTIONS(3668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3668), + [anon_sym___declspec] = ACTIONS(3666), + [anon_sym___based] = ACTIONS(3666), + [anon_sym_signed] = ACTIONS(3666), + [anon_sym_unsigned] = ACTIONS(3666), + [anon_sym_long] = ACTIONS(3666), + [anon_sym_short] = ACTIONS(3666), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_static] = ACTIONS(3666), + [anon_sym_register] = ACTIONS(3666), + [anon_sym_inline] = ACTIONS(3666), + [anon_sym___inline] = ACTIONS(3666), + [anon_sym___inline__] = ACTIONS(3666), + [anon_sym___forceinline] = ACTIONS(3666), + [anon_sym_thread_local] = ACTIONS(3666), + [anon_sym___thread] = ACTIONS(3666), + [anon_sym_const] = ACTIONS(3666), + [anon_sym_constexpr] = ACTIONS(3666), + [anon_sym_volatile] = ACTIONS(3666), + [anon_sym_restrict] = ACTIONS(3666), + [anon_sym___restrict__] = ACTIONS(3666), + [anon_sym__Atomic] = ACTIONS(3666), + [anon_sym__Noreturn] = ACTIONS(3666), + [anon_sym_noreturn] = ACTIONS(3666), + [anon_sym__Nonnull] = ACTIONS(3666), + [anon_sym_mutable] = ACTIONS(3666), + [anon_sym_constinit] = ACTIONS(3666), + [anon_sym_consteval] = ACTIONS(3666), + [anon_sym_alignas] = ACTIONS(3666), + [anon_sym__Alignas] = ACTIONS(3666), + [sym_primitive_type] = ACTIONS(3666), + [anon_sym_enum] = ACTIONS(3666), + [anon_sym_class] = ACTIONS(3666), + [anon_sym_struct] = ACTIONS(3666), + [anon_sym_union] = ACTIONS(3666), + [anon_sym_typename] = ACTIONS(3666), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3666), + [anon_sym_decltype] = ACTIONS(3666), + [anon_sym_explicit] = ACTIONS(3666), + [anon_sym_private] = ACTIONS(3666), + [anon_sym_template] = ACTIONS(3666), + [anon_sym_operator] = ACTIONS(3666), + [anon_sym_friend] = ACTIONS(3666), + [anon_sym_public] = ACTIONS(3666), + [anon_sym_protected] = ACTIONS(3666), + [anon_sym_static_assert] = ACTIONS(3666), + [anon_sym_LBRACK_COLON] = ACTIONS(3668), + }, + [STATE(3328)] = { + [sym_identifier] = ACTIONS(4282), + [aux_sym_preproc_def_token1] = ACTIONS(4282), + [aux_sym_preproc_if_token1] = ACTIONS(4282), + [aux_sym_preproc_if_token2] = ACTIONS(4282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4282), + [sym_preproc_directive] = ACTIONS(4282), + [anon_sym_LPAREN2] = ACTIONS(4284), + [anon_sym_TILDE] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(4282), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym___extension__] = ACTIONS(4282), + [anon_sym_typedef] = ACTIONS(4282), + [anon_sym_virtual] = ACTIONS(4282), + [anon_sym_extern] = ACTIONS(4282), + [anon_sym___attribute__] = ACTIONS(4282), + [anon_sym___attribute] = ACTIONS(4282), + [anon_sym_using] = ACTIONS(4282), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), + [anon_sym___declspec] = ACTIONS(4282), + [anon_sym___based] = ACTIONS(4282), + [anon_sym_signed] = ACTIONS(4282), + [anon_sym_unsigned] = ACTIONS(4282), + [anon_sym_long] = ACTIONS(4282), + [anon_sym_short] = ACTIONS(4282), + [anon_sym_LBRACK] = ACTIONS(4282), + [anon_sym_static] = ACTIONS(4282), + [anon_sym_register] = ACTIONS(4282), + [anon_sym_inline] = ACTIONS(4282), + [anon_sym___inline] = ACTIONS(4282), + [anon_sym___inline__] = ACTIONS(4282), + [anon_sym___forceinline] = ACTIONS(4282), + [anon_sym_thread_local] = ACTIONS(4282), + [anon_sym___thread] = ACTIONS(4282), + [anon_sym_const] = ACTIONS(4282), + [anon_sym_constexpr] = ACTIONS(4282), + [anon_sym_volatile] = ACTIONS(4282), + [anon_sym_restrict] = ACTIONS(4282), + [anon_sym___restrict__] = ACTIONS(4282), + [anon_sym__Atomic] = ACTIONS(4282), + [anon_sym__Noreturn] = ACTIONS(4282), + [anon_sym_noreturn] = ACTIONS(4282), + [anon_sym__Nonnull] = ACTIONS(4282), + [anon_sym_mutable] = ACTIONS(4282), + [anon_sym_constinit] = ACTIONS(4282), + [anon_sym_consteval] = ACTIONS(4282), + [anon_sym_alignas] = ACTIONS(4282), + [anon_sym__Alignas] = ACTIONS(4282), + [sym_primitive_type] = ACTIONS(4282), + [anon_sym_enum] = ACTIONS(4282), + [anon_sym_class] = ACTIONS(4282), + [anon_sym_struct] = ACTIONS(4282), + [anon_sym_union] = ACTIONS(4282), + [anon_sym_typename] = ACTIONS(4282), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4282), + [anon_sym_decltype] = ACTIONS(4282), + [anon_sym_explicit] = ACTIONS(4282), + [anon_sym_private] = ACTIONS(4282), + [anon_sym_template] = ACTIONS(4282), + [anon_sym_operator] = ACTIONS(4282), + [anon_sym_friend] = ACTIONS(4282), + [anon_sym_public] = ACTIONS(4282), + [anon_sym_protected] = ACTIONS(4282), + [anon_sym_static_assert] = ACTIONS(4282), + [anon_sym_LBRACK_COLON] = ACTIONS(4284), + }, + [STATE(3329)] = { + [sym_identifier] = ACTIONS(3678), + [aux_sym_preproc_def_token1] = ACTIONS(3678), + [aux_sym_preproc_if_token1] = ACTIONS(3678), + [aux_sym_preproc_if_token2] = ACTIONS(3678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3678), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3678), + [sym_preproc_directive] = ACTIONS(3678), + [anon_sym_LPAREN2] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3680), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym___extension__] = ACTIONS(3678), + [anon_sym_typedef] = ACTIONS(3678), + [anon_sym_virtual] = ACTIONS(3678), + [anon_sym_extern] = ACTIONS(3678), + [anon_sym___attribute__] = ACTIONS(3678), + [anon_sym___attribute] = ACTIONS(3678), + [anon_sym_using] = ACTIONS(3678), + [anon_sym_COLON_COLON] = ACTIONS(3680), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3680), + [anon_sym___declspec] = ACTIONS(3678), + [anon_sym___based] = ACTIONS(3678), + [anon_sym_signed] = ACTIONS(3678), + [anon_sym_unsigned] = ACTIONS(3678), + [anon_sym_long] = ACTIONS(3678), + [anon_sym_short] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_static] = ACTIONS(3678), + [anon_sym_register] = ACTIONS(3678), + [anon_sym_inline] = ACTIONS(3678), + [anon_sym___inline] = ACTIONS(3678), + [anon_sym___inline__] = ACTIONS(3678), + [anon_sym___forceinline] = ACTIONS(3678), + [anon_sym_thread_local] = ACTIONS(3678), + [anon_sym___thread] = ACTIONS(3678), + [anon_sym_const] = ACTIONS(3678), + [anon_sym_constexpr] = ACTIONS(3678), + [anon_sym_volatile] = ACTIONS(3678), + [anon_sym_restrict] = ACTIONS(3678), + [anon_sym___restrict__] = ACTIONS(3678), + [anon_sym__Atomic] = ACTIONS(3678), + [anon_sym__Noreturn] = ACTIONS(3678), + [anon_sym_noreturn] = ACTIONS(3678), + [anon_sym__Nonnull] = ACTIONS(3678), + [anon_sym_mutable] = ACTIONS(3678), + [anon_sym_constinit] = ACTIONS(3678), + [anon_sym_consteval] = ACTIONS(3678), + [anon_sym_alignas] = ACTIONS(3678), + [anon_sym__Alignas] = ACTIONS(3678), + [sym_primitive_type] = ACTIONS(3678), + [anon_sym_enum] = ACTIONS(3678), + [anon_sym_class] = ACTIONS(3678), + [anon_sym_struct] = ACTIONS(3678), + [anon_sym_union] = ACTIONS(3678), + [anon_sym_typename] = ACTIONS(3678), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3678), + [anon_sym_decltype] = ACTIONS(3678), + [anon_sym_explicit] = ACTIONS(3678), + [anon_sym_private] = ACTIONS(3678), + [anon_sym_template] = ACTIONS(3678), + [anon_sym_operator] = ACTIONS(3678), + [anon_sym_friend] = ACTIONS(3678), + [anon_sym_public] = ACTIONS(3678), + [anon_sym_protected] = ACTIONS(3678), + [anon_sym_static_assert] = ACTIONS(3678), + [anon_sym_LBRACK_COLON] = ACTIONS(3680), + }, + [STATE(3330)] = { + [sym_identifier] = ACTIONS(8798), + [aux_sym_preproc_def_token1] = ACTIONS(8798), + [aux_sym_preproc_if_token1] = ACTIONS(8798), + [aux_sym_preproc_if_token2] = ACTIONS(8798), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8798), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8798), + [sym_preproc_directive] = ACTIONS(8798), + [anon_sym_LPAREN2] = ACTIONS(8800), + [anon_sym_TILDE] = ACTIONS(8800), + [anon_sym_STAR] = ACTIONS(8800), + [anon_sym_AMP_AMP] = ACTIONS(8800), + [anon_sym_AMP] = ACTIONS(8798), + [anon_sym_SEMI] = ACTIONS(8800), + [anon_sym___extension__] = ACTIONS(8798), + [anon_sym_typedef] = ACTIONS(8798), + [anon_sym_virtual] = ACTIONS(8798), + [anon_sym_extern] = ACTIONS(8798), + [anon_sym___attribute__] = ACTIONS(8798), + [anon_sym___attribute] = ACTIONS(8798), + [anon_sym_using] = ACTIONS(8798), + [anon_sym_COLON_COLON] = ACTIONS(8800), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8800), + [anon_sym___declspec] = ACTIONS(8798), + [anon_sym___based] = ACTIONS(8798), + [anon_sym_signed] = ACTIONS(8798), + [anon_sym_unsigned] = ACTIONS(8798), + [anon_sym_long] = ACTIONS(8798), + [anon_sym_short] = ACTIONS(8798), + [anon_sym_LBRACK] = ACTIONS(8798), + [anon_sym_static] = ACTIONS(8798), + [anon_sym_register] = ACTIONS(8798), + [anon_sym_inline] = ACTIONS(8798), + [anon_sym___inline] = ACTIONS(8798), + [anon_sym___inline__] = ACTIONS(8798), + [anon_sym___forceinline] = ACTIONS(8798), + [anon_sym_thread_local] = ACTIONS(8798), + [anon_sym___thread] = ACTIONS(8798), + [anon_sym_const] = ACTIONS(8798), + [anon_sym_constexpr] = ACTIONS(8798), + [anon_sym_volatile] = ACTIONS(8798), + [anon_sym_restrict] = ACTIONS(8798), + [anon_sym___restrict__] = ACTIONS(8798), + [anon_sym__Atomic] = ACTIONS(8798), + [anon_sym__Noreturn] = ACTIONS(8798), + [anon_sym_noreturn] = ACTIONS(8798), + [anon_sym__Nonnull] = ACTIONS(8798), + [anon_sym_mutable] = ACTIONS(8798), + [anon_sym_constinit] = ACTIONS(8798), + [anon_sym_consteval] = ACTIONS(8798), + [anon_sym_alignas] = ACTIONS(8798), + [anon_sym__Alignas] = ACTIONS(8798), + [sym_primitive_type] = ACTIONS(8798), + [anon_sym_enum] = ACTIONS(8798), + [anon_sym_class] = ACTIONS(8798), + [anon_sym_struct] = ACTIONS(8798), + [anon_sym_union] = ACTIONS(8798), + [anon_sym_typename] = ACTIONS(8798), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8798), + [anon_sym_decltype] = ACTIONS(8798), + [anon_sym_explicit] = ACTIONS(8798), + [anon_sym_private] = ACTIONS(8798), + [anon_sym_template] = ACTIONS(8798), + [anon_sym_operator] = ACTIONS(8798), + [anon_sym_friend] = ACTIONS(8798), + [anon_sym_public] = ACTIONS(8798), + [anon_sym_protected] = ACTIONS(8798), + [anon_sym_static_assert] = ACTIONS(8798), + [anon_sym_LBRACK_COLON] = ACTIONS(8800), + }, + [STATE(3331)] = { + [sym_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [sym_identifier] = ACTIONS(9116), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9118), + [anon_sym_COMMA] = ACTIONS(9118), + [aux_sym_preproc_if_token2] = ACTIONS(9118), + [aux_sym_preproc_else_token1] = ACTIONS(9118), + [aux_sym_preproc_elif_token1] = ACTIONS(9116), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9118), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9118), + [anon_sym_LPAREN2] = ACTIONS(9118), + [anon_sym_DASH] = ACTIONS(9116), + [anon_sym_PLUS] = ACTIONS(9116), + [anon_sym_STAR] = ACTIONS(9116), + [anon_sym_SLASH] = ACTIONS(9116), + [anon_sym_PERCENT] = ACTIONS(9116), + [anon_sym_PIPE_PIPE] = ACTIONS(9118), + [anon_sym_AMP_AMP] = ACTIONS(9118), + [anon_sym_PIPE] = ACTIONS(9116), + [anon_sym_CARET] = ACTIONS(9116), + [anon_sym_AMP] = ACTIONS(9116), + [anon_sym_EQ_EQ] = ACTIONS(9118), + [anon_sym_BANG_EQ] = ACTIONS(9118), + [anon_sym_GT] = ACTIONS(9116), + [anon_sym_GT_EQ] = ACTIONS(9118), + [anon_sym_LT_EQ] = ACTIONS(9116), + [anon_sym_LT] = ACTIONS(9116), + [anon_sym_LT_LT] = ACTIONS(9116), + [anon_sym_GT_GT] = ACTIONS(9116), + [anon_sym_LBRACK] = ACTIONS(9118), + [anon_sym_EQ] = ACTIONS(9116), + [anon_sym_QMARK] = ACTIONS(9118), + [anon_sym_STAR_EQ] = ACTIONS(9118), + [anon_sym_SLASH_EQ] = ACTIONS(9118), + [anon_sym_PERCENT_EQ] = ACTIONS(9118), + [anon_sym_PLUS_EQ] = ACTIONS(9118), + [anon_sym_DASH_EQ] = ACTIONS(9118), + [anon_sym_LT_LT_EQ] = ACTIONS(9118), + [anon_sym_GT_GT_EQ] = ACTIONS(9118), + [anon_sym_AMP_EQ] = ACTIONS(9118), + [anon_sym_CARET_EQ] = ACTIONS(9118), + [anon_sym_PIPE_EQ] = ACTIONS(9118), + [anon_sym_and_eq] = ACTIONS(9116), + [anon_sym_or_eq] = ACTIONS(9116), + [anon_sym_xor_eq] = ACTIONS(9116), + [anon_sym_LT_EQ_GT] = ACTIONS(9118), + [anon_sym_or] = ACTIONS(9116), + [anon_sym_and] = ACTIONS(9116), + [anon_sym_bitor] = ACTIONS(9116), + [anon_sym_xor] = ACTIONS(9116), + [anon_sym_bitand] = ACTIONS(9116), + [anon_sym_not_eq] = ACTIONS(9116), + [anon_sym_DASH_DASH] = ACTIONS(9118), + [anon_sym_PLUS_PLUS] = ACTIONS(9118), + [anon_sym_DOT] = ACTIONS(9116), + [anon_sym_DOT_STAR] = ACTIONS(9118), + [anon_sym_DASH_GT] = ACTIONS(9118), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [sym_literal_suffix] = ACTIONS(9116), + }, + [STATE(3332)] = { + [sym_identifier] = ACTIONS(8806), + [aux_sym_preproc_def_token1] = ACTIONS(8806), + [aux_sym_preproc_if_token1] = ACTIONS(8806), + [aux_sym_preproc_if_token2] = ACTIONS(8806), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8806), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8806), + [sym_preproc_directive] = ACTIONS(8806), + [anon_sym_LPAREN2] = ACTIONS(8808), + [anon_sym_TILDE] = ACTIONS(8808), + [anon_sym_STAR] = ACTIONS(8808), + [anon_sym_AMP_AMP] = ACTIONS(8808), + [anon_sym_AMP] = ACTIONS(8806), + [anon_sym_SEMI] = ACTIONS(8808), + [anon_sym___extension__] = ACTIONS(8806), + [anon_sym_typedef] = ACTIONS(8806), + [anon_sym_virtual] = ACTIONS(8806), + [anon_sym_extern] = ACTIONS(8806), + [anon_sym___attribute__] = ACTIONS(8806), + [anon_sym___attribute] = ACTIONS(8806), + [anon_sym_using] = ACTIONS(8806), + [anon_sym_COLON_COLON] = ACTIONS(8808), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8808), + [anon_sym___declspec] = ACTIONS(8806), + [anon_sym___based] = ACTIONS(8806), + [anon_sym_signed] = ACTIONS(8806), + [anon_sym_unsigned] = ACTIONS(8806), + [anon_sym_long] = ACTIONS(8806), + [anon_sym_short] = ACTIONS(8806), + [anon_sym_LBRACK] = ACTIONS(8806), + [anon_sym_static] = ACTIONS(8806), + [anon_sym_register] = ACTIONS(8806), + [anon_sym_inline] = ACTIONS(8806), + [anon_sym___inline] = ACTIONS(8806), + [anon_sym___inline__] = ACTIONS(8806), + [anon_sym___forceinline] = ACTIONS(8806), + [anon_sym_thread_local] = ACTIONS(8806), + [anon_sym___thread] = ACTIONS(8806), + [anon_sym_const] = ACTIONS(8806), + [anon_sym_constexpr] = ACTIONS(8806), + [anon_sym_volatile] = ACTIONS(8806), + [anon_sym_restrict] = ACTIONS(8806), + [anon_sym___restrict__] = ACTIONS(8806), + [anon_sym__Atomic] = ACTIONS(8806), + [anon_sym__Noreturn] = ACTIONS(8806), + [anon_sym_noreturn] = ACTIONS(8806), + [anon_sym__Nonnull] = ACTIONS(8806), + [anon_sym_mutable] = ACTIONS(8806), + [anon_sym_constinit] = ACTIONS(8806), + [anon_sym_consteval] = ACTIONS(8806), + [anon_sym_alignas] = ACTIONS(8806), + [anon_sym__Alignas] = ACTIONS(8806), + [sym_primitive_type] = ACTIONS(8806), + [anon_sym_enum] = ACTIONS(8806), + [anon_sym_class] = ACTIONS(8806), + [anon_sym_struct] = ACTIONS(8806), + [anon_sym_union] = ACTIONS(8806), + [anon_sym_typename] = ACTIONS(8806), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8806), + [anon_sym_decltype] = ACTIONS(8806), + [anon_sym_explicit] = ACTIONS(8806), + [anon_sym_private] = ACTIONS(8806), + [anon_sym_template] = ACTIONS(8806), + [anon_sym_operator] = ACTIONS(8806), + [anon_sym_friend] = ACTIONS(8806), + [anon_sym_public] = ACTIONS(8806), + [anon_sym_protected] = ACTIONS(8806), + [anon_sym_static_assert] = ACTIONS(8806), + [anon_sym_LBRACK_COLON] = ACTIONS(8808), + }, + [STATE(3333)] = { + [sym_identifier] = ACTIONS(8822), + [aux_sym_preproc_def_token1] = ACTIONS(8822), + [aux_sym_preproc_if_token1] = ACTIONS(8822), + [aux_sym_preproc_if_token2] = ACTIONS(8822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8822), + [sym_preproc_directive] = ACTIONS(8822), + [anon_sym_LPAREN2] = ACTIONS(8824), + [anon_sym_TILDE] = ACTIONS(8824), + [anon_sym_STAR] = ACTIONS(8824), + [anon_sym_AMP_AMP] = ACTIONS(8824), + [anon_sym_AMP] = ACTIONS(8822), + [anon_sym_SEMI] = ACTIONS(8824), + [anon_sym___extension__] = ACTIONS(8822), + [anon_sym_typedef] = ACTIONS(8822), + [anon_sym_virtual] = ACTIONS(8822), + [anon_sym_extern] = ACTIONS(8822), + [anon_sym___attribute__] = ACTIONS(8822), + [anon_sym___attribute] = ACTIONS(8822), + [anon_sym_using] = ACTIONS(8822), + [anon_sym_COLON_COLON] = ACTIONS(8824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8824), + [anon_sym___declspec] = ACTIONS(8822), + [anon_sym___based] = ACTIONS(8822), + [anon_sym_signed] = ACTIONS(8822), + [anon_sym_unsigned] = ACTIONS(8822), + [anon_sym_long] = ACTIONS(8822), + [anon_sym_short] = ACTIONS(8822), + [anon_sym_LBRACK] = ACTIONS(8822), + [anon_sym_static] = ACTIONS(8822), + [anon_sym_register] = ACTIONS(8822), + [anon_sym_inline] = ACTIONS(8822), + [anon_sym___inline] = ACTIONS(8822), + [anon_sym___inline__] = ACTIONS(8822), + [anon_sym___forceinline] = ACTIONS(8822), + [anon_sym_thread_local] = ACTIONS(8822), + [anon_sym___thread] = ACTIONS(8822), + [anon_sym_const] = ACTIONS(8822), + [anon_sym_constexpr] = ACTIONS(8822), + [anon_sym_volatile] = ACTIONS(8822), + [anon_sym_restrict] = ACTIONS(8822), + [anon_sym___restrict__] = ACTIONS(8822), + [anon_sym__Atomic] = ACTIONS(8822), + [anon_sym__Noreturn] = ACTIONS(8822), + [anon_sym_noreturn] = ACTIONS(8822), + [anon_sym__Nonnull] = ACTIONS(8822), + [anon_sym_mutable] = ACTIONS(8822), + [anon_sym_constinit] = ACTIONS(8822), + [anon_sym_consteval] = ACTIONS(8822), + [anon_sym_alignas] = ACTIONS(8822), + [anon_sym__Alignas] = ACTIONS(8822), + [sym_primitive_type] = ACTIONS(8822), + [anon_sym_enum] = ACTIONS(8822), + [anon_sym_class] = ACTIONS(8822), + [anon_sym_struct] = ACTIONS(8822), + [anon_sym_union] = ACTIONS(8822), + [anon_sym_typename] = ACTIONS(8822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8822), + [anon_sym_decltype] = ACTIONS(8822), + [anon_sym_explicit] = ACTIONS(8822), + [anon_sym_private] = ACTIONS(8822), + [anon_sym_template] = ACTIONS(8822), + [anon_sym_operator] = ACTIONS(8822), + [anon_sym_friend] = ACTIONS(8822), + [anon_sym_public] = ACTIONS(8822), + [anon_sym_protected] = ACTIONS(8822), + [anon_sym_static_assert] = ACTIONS(8822), + [anon_sym_LBRACK_COLON] = ACTIONS(8824), + }, + [STATE(3334)] = { + [sym_identifier] = ACTIONS(8806), + [aux_sym_preproc_def_token1] = ACTIONS(8806), + [aux_sym_preproc_if_token1] = ACTIONS(8806), + [aux_sym_preproc_if_token2] = ACTIONS(8806), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8806), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8806), + [sym_preproc_directive] = ACTIONS(8806), + [anon_sym_LPAREN2] = ACTIONS(8808), + [anon_sym_TILDE] = ACTIONS(8808), + [anon_sym_STAR] = ACTIONS(8808), + [anon_sym_AMP_AMP] = ACTIONS(8808), + [anon_sym_AMP] = ACTIONS(8806), + [anon_sym_SEMI] = ACTIONS(8808), + [anon_sym___extension__] = ACTIONS(8806), + [anon_sym_typedef] = ACTIONS(8806), + [anon_sym_virtual] = ACTIONS(8806), + [anon_sym_extern] = ACTIONS(8806), + [anon_sym___attribute__] = ACTIONS(8806), + [anon_sym___attribute] = ACTIONS(8806), + [anon_sym_using] = ACTIONS(8806), + [anon_sym_COLON_COLON] = ACTIONS(8808), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8808), + [anon_sym___declspec] = ACTIONS(8806), + [anon_sym___based] = ACTIONS(8806), + [anon_sym_signed] = ACTIONS(8806), + [anon_sym_unsigned] = ACTIONS(8806), + [anon_sym_long] = ACTIONS(8806), + [anon_sym_short] = ACTIONS(8806), + [anon_sym_LBRACK] = ACTIONS(8806), + [anon_sym_static] = ACTIONS(8806), + [anon_sym_register] = ACTIONS(8806), + [anon_sym_inline] = ACTIONS(8806), + [anon_sym___inline] = ACTIONS(8806), + [anon_sym___inline__] = ACTIONS(8806), + [anon_sym___forceinline] = ACTIONS(8806), + [anon_sym_thread_local] = ACTIONS(8806), + [anon_sym___thread] = ACTIONS(8806), + [anon_sym_const] = ACTIONS(8806), + [anon_sym_constexpr] = ACTIONS(8806), + [anon_sym_volatile] = ACTIONS(8806), + [anon_sym_restrict] = ACTIONS(8806), + [anon_sym___restrict__] = ACTIONS(8806), + [anon_sym__Atomic] = ACTIONS(8806), + [anon_sym__Noreturn] = ACTIONS(8806), + [anon_sym_noreturn] = ACTIONS(8806), + [anon_sym__Nonnull] = ACTIONS(8806), + [anon_sym_mutable] = ACTIONS(8806), + [anon_sym_constinit] = ACTIONS(8806), + [anon_sym_consteval] = ACTIONS(8806), + [anon_sym_alignas] = ACTIONS(8806), + [anon_sym__Alignas] = ACTIONS(8806), + [sym_primitive_type] = ACTIONS(8806), + [anon_sym_enum] = ACTIONS(8806), + [anon_sym_class] = ACTIONS(8806), + [anon_sym_struct] = ACTIONS(8806), + [anon_sym_union] = ACTIONS(8806), + [anon_sym_typename] = ACTIONS(8806), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8806), + [anon_sym_decltype] = ACTIONS(8806), + [anon_sym_explicit] = ACTIONS(8806), + [anon_sym_private] = ACTIONS(8806), + [anon_sym_template] = ACTIONS(8806), + [anon_sym_operator] = ACTIONS(8806), + [anon_sym_friend] = ACTIONS(8806), + [anon_sym_public] = ACTIONS(8806), + [anon_sym_protected] = ACTIONS(8806), + [anon_sym_static_assert] = ACTIONS(8806), + [anon_sym_LBRACK_COLON] = ACTIONS(8808), + }, + [STATE(3335)] = { + [sym_identifier] = ACTIONS(8822), + [aux_sym_preproc_def_token1] = ACTIONS(8822), + [aux_sym_preproc_if_token1] = ACTIONS(8822), + [aux_sym_preproc_if_token2] = ACTIONS(8822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8822), + [sym_preproc_directive] = ACTIONS(8822), + [anon_sym_LPAREN2] = ACTIONS(8824), + [anon_sym_TILDE] = ACTIONS(8824), + [anon_sym_STAR] = ACTIONS(8824), + [anon_sym_AMP_AMP] = ACTIONS(8824), + [anon_sym_AMP] = ACTIONS(8822), + [anon_sym_SEMI] = ACTIONS(8824), + [anon_sym___extension__] = ACTIONS(8822), + [anon_sym_typedef] = ACTIONS(8822), + [anon_sym_virtual] = ACTIONS(8822), + [anon_sym_extern] = ACTIONS(8822), + [anon_sym___attribute__] = ACTIONS(8822), + [anon_sym___attribute] = ACTIONS(8822), + [anon_sym_using] = ACTIONS(8822), + [anon_sym_COLON_COLON] = ACTIONS(8824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8824), + [anon_sym___declspec] = ACTIONS(8822), + [anon_sym___based] = ACTIONS(8822), + [anon_sym_signed] = ACTIONS(8822), + [anon_sym_unsigned] = ACTIONS(8822), + [anon_sym_long] = ACTIONS(8822), + [anon_sym_short] = ACTIONS(8822), + [anon_sym_LBRACK] = ACTIONS(8822), + [anon_sym_static] = ACTIONS(8822), + [anon_sym_register] = ACTIONS(8822), + [anon_sym_inline] = ACTIONS(8822), + [anon_sym___inline] = ACTIONS(8822), + [anon_sym___inline__] = ACTIONS(8822), + [anon_sym___forceinline] = ACTIONS(8822), + [anon_sym_thread_local] = ACTIONS(8822), + [anon_sym___thread] = ACTIONS(8822), + [anon_sym_const] = ACTIONS(8822), + [anon_sym_constexpr] = ACTIONS(8822), + [anon_sym_volatile] = ACTIONS(8822), + [anon_sym_restrict] = ACTIONS(8822), + [anon_sym___restrict__] = ACTIONS(8822), + [anon_sym__Atomic] = ACTIONS(8822), + [anon_sym__Noreturn] = ACTIONS(8822), + [anon_sym_noreturn] = ACTIONS(8822), + [anon_sym__Nonnull] = ACTIONS(8822), + [anon_sym_mutable] = ACTIONS(8822), + [anon_sym_constinit] = ACTIONS(8822), + [anon_sym_consteval] = ACTIONS(8822), + [anon_sym_alignas] = ACTIONS(8822), + [anon_sym__Alignas] = ACTIONS(8822), + [sym_primitive_type] = ACTIONS(8822), + [anon_sym_enum] = ACTIONS(8822), + [anon_sym_class] = ACTIONS(8822), + [anon_sym_struct] = ACTIONS(8822), + [anon_sym_union] = ACTIONS(8822), + [anon_sym_typename] = ACTIONS(8822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8822), + [anon_sym_decltype] = ACTIONS(8822), + [anon_sym_explicit] = ACTIONS(8822), + [anon_sym_private] = ACTIONS(8822), + [anon_sym_template] = ACTIONS(8822), + [anon_sym_operator] = ACTIONS(8822), + [anon_sym_friend] = ACTIONS(8822), + [anon_sym_public] = ACTIONS(8822), + [anon_sym_protected] = ACTIONS(8822), + [anon_sym_static_assert] = ACTIONS(8822), + [anon_sym_LBRACK_COLON] = ACTIONS(8824), + }, + [STATE(3336)] = { + [sym_identifier] = ACTIONS(8687), + [aux_sym_preproc_def_token1] = ACTIONS(8687), + [aux_sym_preproc_if_token1] = ACTIONS(8687), + [aux_sym_preproc_if_token2] = ACTIONS(8687), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8687), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8687), + [sym_preproc_directive] = ACTIONS(8687), + [anon_sym_LPAREN2] = ACTIONS(8689), + [anon_sym_TILDE] = ACTIONS(8689), + [anon_sym_STAR] = ACTIONS(8689), + [anon_sym_AMP_AMP] = ACTIONS(8689), + [anon_sym_AMP] = ACTIONS(8687), + [anon_sym_SEMI] = ACTIONS(8689), + [anon_sym___extension__] = ACTIONS(8687), + [anon_sym_typedef] = ACTIONS(8687), + [anon_sym_virtual] = ACTIONS(8687), + [anon_sym_extern] = ACTIONS(8687), + [anon_sym___attribute__] = ACTIONS(8687), + [anon_sym___attribute] = ACTIONS(8687), + [anon_sym_using] = ACTIONS(8687), + [anon_sym_COLON_COLON] = ACTIONS(8689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8689), + [anon_sym___declspec] = ACTIONS(8687), + [anon_sym___based] = ACTIONS(8687), + [anon_sym_signed] = ACTIONS(8687), + [anon_sym_unsigned] = ACTIONS(8687), + [anon_sym_long] = ACTIONS(8687), + [anon_sym_short] = ACTIONS(8687), + [anon_sym_LBRACK] = ACTIONS(8687), + [anon_sym_static] = ACTIONS(8687), + [anon_sym_register] = ACTIONS(8687), + [anon_sym_inline] = ACTIONS(8687), + [anon_sym___inline] = ACTIONS(8687), + [anon_sym___inline__] = ACTIONS(8687), + [anon_sym___forceinline] = ACTIONS(8687), + [anon_sym_thread_local] = ACTIONS(8687), + [anon_sym___thread] = ACTIONS(8687), + [anon_sym_const] = ACTIONS(8687), + [anon_sym_constexpr] = ACTIONS(8687), + [anon_sym_volatile] = ACTIONS(8687), + [anon_sym_restrict] = ACTIONS(8687), + [anon_sym___restrict__] = ACTIONS(8687), + [anon_sym__Atomic] = ACTIONS(8687), + [anon_sym__Noreturn] = ACTIONS(8687), + [anon_sym_noreturn] = ACTIONS(8687), + [anon_sym__Nonnull] = ACTIONS(8687), + [anon_sym_mutable] = ACTIONS(8687), + [anon_sym_constinit] = ACTIONS(8687), + [anon_sym_consteval] = ACTIONS(8687), + [anon_sym_alignas] = ACTIONS(8687), + [anon_sym__Alignas] = ACTIONS(8687), + [sym_primitive_type] = ACTIONS(8687), + [anon_sym_enum] = ACTIONS(8687), + [anon_sym_class] = ACTIONS(8687), + [anon_sym_struct] = ACTIONS(8687), + [anon_sym_union] = ACTIONS(8687), + [anon_sym_typename] = ACTIONS(8687), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8687), + [anon_sym_decltype] = ACTIONS(8687), + [anon_sym_explicit] = ACTIONS(8687), + [anon_sym_private] = ACTIONS(8687), + [anon_sym_template] = ACTIONS(8687), + [anon_sym_operator] = ACTIONS(8687), + [anon_sym_friend] = ACTIONS(8687), + [anon_sym_public] = ACTIONS(8687), + [anon_sym_protected] = ACTIONS(8687), + [anon_sym_static_assert] = ACTIONS(8687), + [anon_sym_LBRACK_COLON] = ACTIONS(8689), + }, + [STATE(3337)] = { + [sym_identifier] = ACTIONS(8691), + [aux_sym_preproc_def_token1] = ACTIONS(8691), + [aux_sym_preproc_if_token1] = ACTIONS(8691), + [aux_sym_preproc_if_token2] = ACTIONS(8691), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8691), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8691), + [sym_preproc_directive] = ACTIONS(8691), + [anon_sym_LPAREN2] = ACTIONS(8693), + [anon_sym_TILDE] = ACTIONS(8693), + [anon_sym_STAR] = ACTIONS(8693), + [anon_sym_AMP_AMP] = ACTIONS(8693), + [anon_sym_AMP] = ACTIONS(8691), + [anon_sym_SEMI] = ACTIONS(8693), + [anon_sym___extension__] = ACTIONS(8691), + [anon_sym_typedef] = ACTIONS(8691), + [anon_sym_virtual] = ACTIONS(8691), + [anon_sym_extern] = ACTIONS(8691), + [anon_sym___attribute__] = ACTIONS(8691), + [anon_sym___attribute] = ACTIONS(8691), + [anon_sym_using] = ACTIONS(8691), + [anon_sym_COLON_COLON] = ACTIONS(8693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8693), + [anon_sym___declspec] = ACTIONS(8691), + [anon_sym___based] = ACTIONS(8691), + [anon_sym_signed] = ACTIONS(8691), + [anon_sym_unsigned] = ACTIONS(8691), + [anon_sym_long] = ACTIONS(8691), + [anon_sym_short] = ACTIONS(8691), + [anon_sym_LBRACK] = ACTIONS(8691), + [anon_sym_static] = ACTIONS(8691), + [anon_sym_register] = ACTIONS(8691), + [anon_sym_inline] = ACTIONS(8691), + [anon_sym___inline] = ACTIONS(8691), + [anon_sym___inline__] = ACTIONS(8691), + [anon_sym___forceinline] = ACTIONS(8691), + [anon_sym_thread_local] = ACTIONS(8691), + [anon_sym___thread] = ACTIONS(8691), + [anon_sym_const] = ACTIONS(8691), + [anon_sym_constexpr] = ACTIONS(8691), + [anon_sym_volatile] = ACTIONS(8691), + [anon_sym_restrict] = ACTIONS(8691), + [anon_sym___restrict__] = ACTIONS(8691), + [anon_sym__Atomic] = ACTIONS(8691), + [anon_sym__Noreturn] = ACTIONS(8691), + [anon_sym_noreturn] = ACTIONS(8691), + [anon_sym__Nonnull] = ACTIONS(8691), + [anon_sym_mutable] = ACTIONS(8691), + [anon_sym_constinit] = ACTIONS(8691), + [anon_sym_consteval] = ACTIONS(8691), + [anon_sym_alignas] = ACTIONS(8691), + [anon_sym__Alignas] = ACTIONS(8691), + [sym_primitive_type] = ACTIONS(8691), + [anon_sym_enum] = ACTIONS(8691), + [anon_sym_class] = ACTIONS(8691), + [anon_sym_struct] = ACTIONS(8691), + [anon_sym_union] = ACTIONS(8691), + [anon_sym_typename] = ACTIONS(8691), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8691), + [anon_sym_decltype] = ACTIONS(8691), + [anon_sym_explicit] = ACTIONS(8691), + [anon_sym_private] = ACTIONS(8691), + [anon_sym_template] = ACTIONS(8691), + [anon_sym_operator] = ACTIONS(8691), + [anon_sym_friend] = ACTIONS(8691), + [anon_sym_public] = ACTIONS(8691), + [anon_sym_protected] = ACTIONS(8691), + [anon_sym_static_assert] = ACTIONS(8691), + [anon_sym_LBRACK_COLON] = ACTIONS(8693), + }, + [STATE(3338)] = { + [sym_identifier] = ACTIONS(8726), + [aux_sym_preproc_def_token1] = ACTIONS(8726), + [aux_sym_preproc_if_token1] = ACTIONS(8726), + [aux_sym_preproc_if_token2] = ACTIONS(8726), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8726), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8726), + [sym_preproc_directive] = ACTIONS(8726), + [anon_sym_LPAREN2] = ACTIONS(8728), + [anon_sym_TILDE] = ACTIONS(8728), + [anon_sym_STAR] = ACTIONS(8728), + [anon_sym_AMP_AMP] = ACTIONS(8728), + [anon_sym_AMP] = ACTIONS(8726), + [anon_sym_SEMI] = ACTIONS(8728), + [anon_sym___extension__] = ACTIONS(8726), + [anon_sym_typedef] = ACTIONS(8726), + [anon_sym_virtual] = ACTIONS(8726), + [anon_sym_extern] = ACTIONS(8726), + [anon_sym___attribute__] = ACTIONS(8726), + [anon_sym___attribute] = ACTIONS(8726), + [anon_sym_using] = ACTIONS(8726), + [anon_sym_COLON_COLON] = ACTIONS(8728), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8728), + [anon_sym___declspec] = ACTIONS(8726), + [anon_sym___based] = ACTIONS(8726), + [anon_sym_signed] = ACTIONS(8726), + [anon_sym_unsigned] = ACTIONS(8726), + [anon_sym_long] = ACTIONS(8726), + [anon_sym_short] = ACTIONS(8726), + [anon_sym_LBRACK] = ACTIONS(8726), + [anon_sym_static] = ACTIONS(8726), + [anon_sym_register] = ACTIONS(8726), + [anon_sym_inline] = ACTIONS(8726), + [anon_sym___inline] = ACTIONS(8726), + [anon_sym___inline__] = ACTIONS(8726), + [anon_sym___forceinline] = ACTIONS(8726), + [anon_sym_thread_local] = ACTIONS(8726), + [anon_sym___thread] = ACTIONS(8726), + [anon_sym_const] = ACTIONS(8726), + [anon_sym_constexpr] = ACTIONS(8726), + [anon_sym_volatile] = ACTIONS(8726), + [anon_sym_restrict] = ACTIONS(8726), + [anon_sym___restrict__] = ACTIONS(8726), + [anon_sym__Atomic] = ACTIONS(8726), + [anon_sym__Noreturn] = ACTIONS(8726), + [anon_sym_noreturn] = ACTIONS(8726), + [anon_sym__Nonnull] = ACTIONS(8726), + [anon_sym_mutable] = ACTIONS(8726), + [anon_sym_constinit] = ACTIONS(8726), + [anon_sym_consteval] = ACTIONS(8726), + [anon_sym_alignas] = ACTIONS(8726), + [anon_sym__Alignas] = ACTIONS(8726), + [sym_primitive_type] = ACTIONS(8726), + [anon_sym_enum] = ACTIONS(8726), + [anon_sym_class] = ACTIONS(8726), + [anon_sym_struct] = ACTIONS(8726), + [anon_sym_union] = ACTIONS(8726), + [anon_sym_typename] = ACTIONS(8726), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8726), + [anon_sym_decltype] = ACTIONS(8726), + [anon_sym_explicit] = ACTIONS(8726), + [anon_sym_private] = ACTIONS(8726), + [anon_sym_template] = ACTIONS(8726), + [anon_sym_operator] = ACTIONS(8726), + [anon_sym_friend] = ACTIONS(8726), + [anon_sym_public] = ACTIONS(8726), + [anon_sym_protected] = ACTIONS(8726), + [anon_sym_static_assert] = ACTIONS(8726), + [anon_sym_LBRACK_COLON] = ACTIONS(8728), + }, + [STATE(3339)] = { + [sym_identifier] = ACTIONS(8726), + [aux_sym_preproc_def_token1] = ACTIONS(8726), + [aux_sym_preproc_if_token1] = ACTIONS(8726), + [aux_sym_preproc_if_token2] = ACTIONS(8726), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8726), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8726), + [sym_preproc_directive] = ACTIONS(8726), + [anon_sym_LPAREN2] = ACTIONS(8728), + [anon_sym_TILDE] = ACTIONS(8728), + [anon_sym_STAR] = ACTIONS(8728), + [anon_sym_AMP_AMP] = ACTIONS(8728), + [anon_sym_AMP] = ACTIONS(8726), + [anon_sym_SEMI] = ACTIONS(8728), + [anon_sym___extension__] = ACTIONS(8726), + [anon_sym_typedef] = ACTIONS(8726), + [anon_sym_virtual] = ACTIONS(8726), + [anon_sym_extern] = ACTIONS(8726), + [anon_sym___attribute__] = ACTIONS(8726), + [anon_sym___attribute] = ACTIONS(8726), + [anon_sym_using] = ACTIONS(8726), + [anon_sym_COLON_COLON] = ACTIONS(8728), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8728), + [anon_sym___declspec] = ACTIONS(8726), + [anon_sym___based] = ACTIONS(8726), + [anon_sym_signed] = ACTIONS(8726), + [anon_sym_unsigned] = ACTIONS(8726), + [anon_sym_long] = ACTIONS(8726), + [anon_sym_short] = ACTIONS(8726), + [anon_sym_LBRACK] = ACTIONS(8726), + [anon_sym_static] = ACTIONS(8726), + [anon_sym_register] = ACTIONS(8726), + [anon_sym_inline] = ACTIONS(8726), + [anon_sym___inline] = ACTIONS(8726), + [anon_sym___inline__] = ACTIONS(8726), + [anon_sym___forceinline] = ACTIONS(8726), + [anon_sym_thread_local] = ACTIONS(8726), + [anon_sym___thread] = ACTIONS(8726), + [anon_sym_const] = ACTIONS(8726), + [anon_sym_constexpr] = ACTIONS(8726), + [anon_sym_volatile] = ACTIONS(8726), + [anon_sym_restrict] = ACTIONS(8726), + [anon_sym___restrict__] = ACTIONS(8726), + [anon_sym__Atomic] = ACTIONS(8726), + [anon_sym__Noreturn] = ACTIONS(8726), + [anon_sym_noreturn] = ACTIONS(8726), + [anon_sym__Nonnull] = ACTIONS(8726), + [anon_sym_mutable] = ACTIONS(8726), + [anon_sym_constinit] = ACTIONS(8726), + [anon_sym_consteval] = ACTIONS(8726), + [anon_sym_alignas] = ACTIONS(8726), + [anon_sym__Alignas] = ACTIONS(8726), + [sym_primitive_type] = ACTIONS(8726), + [anon_sym_enum] = ACTIONS(8726), + [anon_sym_class] = ACTIONS(8726), + [anon_sym_struct] = ACTIONS(8726), + [anon_sym_union] = ACTIONS(8726), + [anon_sym_typename] = ACTIONS(8726), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8726), + [anon_sym_decltype] = ACTIONS(8726), + [anon_sym_explicit] = ACTIONS(8726), + [anon_sym_private] = ACTIONS(8726), + [anon_sym_template] = ACTIONS(8726), + [anon_sym_operator] = ACTIONS(8726), + [anon_sym_friend] = ACTIONS(8726), + [anon_sym_public] = ACTIONS(8726), + [anon_sym_protected] = ACTIONS(8726), + [anon_sym_static_assert] = ACTIONS(8726), + [anon_sym_LBRACK_COLON] = ACTIONS(8728), + }, + [STATE(3340)] = { + [sym_identifier] = ACTIONS(9120), + [anon_sym_LPAREN2] = ACTIONS(9122), + [anon_sym_TILDE] = ACTIONS(9122), + [anon_sym_STAR] = ACTIONS(9122), + [anon_sym_AMP_AMP] = ACTIONS(9122), + [anon_sym_AMP] = ACTIONS(9120), + [anon_sym___extension__] = ACTIONS(9120), + [anon_sym_virtual] = ACTIONS(9120), + [anon_sym_extern] = ACTIONS(9120), + [anon_sym___attribute__] = ACTIONS(9120), + [anon_sym___attribute] = ACTIONS(9120), + [anon_sym_using] = ACTIONS(9120), + [anon_sym_COLON_COLON] = ACTIONS(9122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9122), + [anon_sym___declspec] = ACTIONS(9120), + [anon_sym___based] = ACTIONS(9120), + [anon_sym___cdecl] = ACTIONS(9120), + [anon_sym___clrcall] = ACTIONS(9120), + [anon_sym___stdcall] = ACTIONS(9120), + [anon_sym___fastcall] = ACTIONS(9120), + [anon_sym___thiscall] = ACTIONS(9120), + [anon_sym___vectorcall] = ACTIONS(9120), + [anon_sym_LBRACE] = ACTIONS(9122), + [anon_sym_signed] = ACTIONS(9120), + [anon_sym_unsigned] = ACTIONS(9120), + [anon_sym_long] = ACTIONS(9120), + [anon_sym_short] = ACTIONS(9120), + [anon_sym_LBRACK] = ACTIONS(9120), + [anon_sym_static] = ACTIONS(9120), + [anon_sym_register] = ACTIONS(9120), + [anon_sym_inline] = ACTIONS(9120), + [anon_sym___inline] = ACTIONS(9120), + [anon_sym___inline__] = ACTIONS(9120), + [anon_sym___forceinline] = ACTIONS(9120), + [anon_sym_thread_local] = ACTIONS(9120), + [anon_sym___thread] = ACTIONS(9120), + [anon_sym_const] = ACTIONS(9120), + [anon_sym_constexpr] = ACTIONS(9120), + [anon_sym_volatile] = ACTIONS(9120), + [anon_sym_restrict] = ACTIONS(9120), + [anon_sym___restrict__] = ACTIONS(9120), + [anon_sym__Atomic] = ACTIONS(9120), + [anon_sym__Noreturn] = ACTIONS(9120), + [anon_sym_noreturn] = ACTIONS(9120), + [anon_sym__Nonnull] = ACTIONS(9120), + [anon_sym_mutable] = ACTIONS(9120), + [anon_sym_constinit] = ACTIONS(9120), + [anon_sym_consteval] = ACTIONS(9120), + [anon_sym_alignas] = ACTIONS(9120), + [anon_sym__Alignas] = ACTIONS(9120), + [sym_primitive_type] = ACTIONS(9120), + [anon_sym_enum] = ACTIONS(9120), + [anon_sym_class] = ACTIONS(9120), + [anon_sym_struct] = ACTIONS(9120), + [anon_sym_union] = ACTIONS(9120), + [anon_sym_typename] = ACTIONS(9120), + [anon_sym_DASH_GT] = ACTIONS(9122), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9120), + [anon_sym_decltype] = ACTIONS(9120), + [anon_sym_explicit] = ACTIONS(9120), + [anon_sym_template] = ACTIONS(9120), + [anon_sym_operator] = ACTIONS(9120), + [anon_sym_friend] = ACTIONS(9120), + [anon_sym_noexcept] = ACTIONS(9120), + [anon_sym_throw] = ACTIONS(9120), + [anon_sym_concept] = ACTIONS(9120), + [anon_sym_requires] = ACTIONS(9120), + [anon_sym_LBRACK_COLON] = ACTIONS(9122), + }, + [STATE(3341)] = { + [sym_identifier] = ACTIONS(3917), + [aux_sym_preproc_def_token1] = ACTIONS(3917), + [aux_sym_preproc_if_token1] = ACTIONS(3917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3917), + [sym_preproc_directive] = ACTIONS(3917), + [anon_sym_LPAREN2] = ACTIONS(3919), + [anon_sym_TILDE] = ACTIONS(3919), + [anon_sym_STAR] = ACTIONS(3919), + [anon_sym_AMP_AMP] = ACTIONS(3919), + [anon_sym_AMP] = ACTIONS(3917), + [anon_sym_SEMI] = ACTIONS(3919), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_typedef] = ACTIONS(3917), + [anon_sym_virtual] = ACTIONS(3917), + [anon_sym_extern] = ACTIONS(3917), + [anon_sym___attribute__] = ACTIONS(3917), + [anon_sym___attribute] = ACTIONS(3917), + [anon_sym_using] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(3919), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3919), + [anon_sym___declspec] = ACTIONS(3917), + [anon_sym___based] = ACTIONS(3917), + [anon_sym_RBRACE] = ACTIONS(3919), + [anon_sym_signed] = ACTIONS(3917), + [anon_sym_unsigned] = ACTIONS(3917), + [anon_sym_long] = ACTIONS(3917), + [anon_sym_short] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(3917), + [anon_sym_static] = ACTIONS(3917), + [anon_sym_register] = ACTIONS(3917), + [anon_sym_inline] = ACTIONS(3917), + [anon_sym___inline] = ACTIONS(3917), + [anon_sym___inline__] = ACTIONS(3917), + [anon_sym___forceinline] = ACTIONS(3917), + [anon_sym_thread_local] = ACTIONS(3917), + [anon_sym___thread] = ACTIONS(3917), + [anon_sym_const] = ACTIONS(3917), + [anon_sym_constexpr] = ACTIONS(3917), + [anon_sym_volatile] = ACTIONS(3917), + [anon_sym_restrict] = ACTIONS(3917), + [anon_sym___restrict__] = ACTIONS(3917), + [anon_sym__Atomic] = ACTIONS(3917), + [anon_sym__Noreturn] = ACTIONS(3917), + [anon_sym_noreturn] = ACTIONS(3917), + [anon_sym__Nonnull] = ACTIONS(3917), + [anon_sym_mutable] = ACTIONS(3917), + [anon_sym_constinit] = ACTIONS(3917), + [anon_sym_consteval] = ACTIONS(3917), + [anon_sym_alignas] = ACTIONS(3917), + [anon_sym__Alignas] = ACTIONS(3917), + [sym_primitive_type] = ACTIONS(3917), + [anon_sym_enum] = ACTIONS(3917), + [anon_sym_class] = ACTIONS(3917), + [anon_sym_struct] = ACTIONS(3917), + [anon_sym_union] = ACTIONS(3917), + [anon_sym_typename] = ACTIONS(3917), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3917), + [anon_sym_decltype] = ACTIONS(3917), + [anon_sym_explicit] = ACTIONS(3917), + [anon_sym_private] = ACTIONS(3917), + [anon_sym_template] = ACTIONS(3917), + [anon_sym_operator] = ACTIONS(3917), + [anon_sym_friend] = ACTIONS(3917), + [anon_sym_public] = ACTIONS(3917), + [anon_sym_protected] = ACTIONS(3917), + [anon_sym_static_assert] = ACTIONS(3917), + [anon_sym_LBRACK_COLON] = ACTIONS(3919), + }, + [STATE(3342)] = { + [sym_identifier] = ACTIONS(3931), + [aux_sym_preproc_def_token1] = ACTIONS(3931), + [aux_sym_preproc_if_token1] = ACTIONS(3931), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3931), + [sym_preproc_directive] = ACTIONS(3931), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_TILDE] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym_SEMI] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(3931), + [anon_sym_typedef] = ACTIONS(3931), + [anon_sym_virtual] = ACTIONS(3931), + [anon_sym_extern] = ACTIONS(3931), + [anon_sym___attribute__] = ACTIONS(3931), + [anon_sym___attribute] = ACTIONS(3931), + [anon_sym_using] = ACTIONS(3931), + [anon_sym_COLON_COLON] = ACTIONS(3933), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3933), + [anon_sym___declspec] = ACTIONS(3931), + [anon_sym___based] = ACTIONS(3931), + [anon_sym_RBRACE] = ACTIONS(3933), + [anon_sym_signed] = ACTIONS(3931), + [anon_sym_unsigned] = ACTIONS(3931), + [anon_sym_long] = ACTIONS(3931), + [anon_sym_short] = ACTIONS(3931), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_static] = ACTIONS(3931), + [anon_sym_register] = ACTIONS(3931), + [anon_sym_inline] = ACTIONS(3931), + [anon_sym___inline] = ACTIONS(3931), + [anon_sym___inline__] = ACTIONS(3931), + [anon_sym___forceinline] = ACTIONS(3931), + [anon_sym_thread_local] = ACTIONS(3931), + [anon_sym___thread] = ACTIONS(3931), + [anon_sym_const] = ACTIONS(3931), + [anon_sym_constexpr] = ACTIONS(3931), + [anon_sym_volatile] = ACTIONS(3931), + [anon_sym_restrict] = ACTIONS(3931), + [anon_sym___restrict__] = ACTIONS(3931), + [anon_sym__Atomic] = ACTIONS(3931), + [anon_sym__Noreturn] = ACTIONS(3931), + [anon_sym_noreturn] = ACTIONS(3931), + [anon_sym__Nonnull] = ACTIONS(3931), + [anon_sym_mutable] = ACTIONS(3931), + [anon_sym_constinit] = ACTIONS(3931), + [anon_sym_consteval] = ACTIONS(3931), + [anon_sym_alignas] = ACTIONS(3931), + [anon_sym__Alignas] = ACTIONS(3931), + [sym_primitive_type] = ACTIONS(3931), + [anon_sym_enum] = ACTIONS(3931), + [anon_sym_class] = ACTIONS(3931), + [anon_sym_struct] = ACTIONS(3931), + [anon_sym_union] = ACTIONS(3931), + [anon_sym_typename] = ACTIONS(3931), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3931), + [anon_sym_decltype] = ACTIONS(3931), + [anon_sym_explicit] = ACTIONS(3931), + [anon_sym_private] = ACTIONS(3931), + [anon_sym_template] = ACTIONS(3931), + [anon_sym_operator] = ACTIONS(3931), + [anon_sym_friend] = ACTIONS(3931), + [anon_sym_public] = ACTIONS(3931), + [anon_sym_protected] = ACTIONS(3931), + [anon_sym_static_assert] = ACTIONS(3931), + [anon_sym_LBRACK_COLON] = ACTIONS(3933), + }, + [STATE(3343)] = { + [sym_identifier] = ACTIONS(3950), + [aux_sym_preproc_def_token1] = ACTIONS(3950), + [aux_sym_preproc_if_token1] = ACTIONS(3950), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), + [sym_preproc_directive] = ACTIONS(3950), + [anon_sym_LPAREN2] = ACTIONS(3952), + [anon_sym_TILDE] = ACTIONS(3952), + [anon_sym_STAR] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym___extension__] = ACTIONS(3950), + [anon_sym_typedef] = ACTIONS(3950), + [anon_sym_virtual] = ACTIONS(3950), + [anon_sym_extern] = ACTIONS(3950), + [anon_sym___attribute__] = ACTIONS(3950), + [anon_sym___attribute] = ACTIONS(3950), + [anon_sym_using] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), + [anon_sym___declspec] = ACTIONS(3950), + [anon_sym___based] = ACTIONS(3950), + [anon_sym_RBRACE] = ACTIONS(3952), + [anon_sym_signed] = ACTIONS(3950), + [anon_sym_unsigned] = ACTIONS(3950), + [anon_sym_long] = ACTIONS(3950), + [anon_sym_short] = ACTIONS(3950), + [anon_sym_LBRACK] = ACTIONS(3950), + [anon_sym_static] = ACTIONS(3950), + [anon_sym_register] = ACTIONS(3950), + [anon_sym_inline] = ACTIONS(3950), + [anon_sym___inline] = ACTIONS(3950), + [anon_sym___inline__] = ACTIONS(3950), + [anon_sym___forceinline] = ACTIONS(3950), + [anon_sym_thread_local] = ACTIONS(3950), + [anon_sym___thread] = ACTIONS(3950), + [anon_sym_const] = ACTIONS(3950), + [anon_sym_constexpr] = ACTIONS(3950), + [anon_sym_volatile] = ACTIONS(3950), + [anon_sym_restrict] = ACTIONS(3950), + [anon_sym___restrict__] = ACTIONS(3950), + [anon_sym__Atomic] = ACTIONS(3950), + [anon_sym__Noreturn] = ACTIONS(3950), + [anon_sym_noreturn] = ACTIONS(3950), + [anon_sym__Nonnull] = ACTIONS(3950), + [anon_sym_mutable] = ACTIONS(3950), + [anon_sym_constinit] = ACTIONS(3950), + [anon_sym_consteval] = ACTIONS(3950), + [anon_sym_alignas] = ACTIONS(3950), + [anon_sym__Alignas] = ACTIONS(3950), + [sym_primitive_type] = ACTIONS(3950), + [anon_sym_enum] = ACTIONS(3950), + [anon_sym_class] = ACTIONS(3950), + [anon_sym_struct] = ACTIONS(3950), + [anon_sym_union] = ACTIONS(3950), + [anon_sym_typename] = ACTIONS(3950), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3950), + [anon_sym_decltype] = ACTIONS(3950), + [anon_sym_explicit] = ACTIONS(3950), + [anon_sym_private] = ACTIONS(3950), + [anon_sym_template] = ACTIONS(3950), + [anon_sym_operator] = ACTIONS(3950), + [anon_sym_friend] = ACTIONS(3950), + [anon_sym_public] = ACTIONS(3950), + [anon_sym_protected] = ACTIONS(3950), + [anon_sym_static_assert] = ACTIONS(3950), + [anon_sym_LBRACK_COLON] = ACTIONS(3952), + }, + [STATE(3344)] = { + [sym_identifier] = ACTIONS(3962), + [aux_sym_preproc_def_token1] = ACTIONS(3962), + [aux_sym_preproc_if_token1] = ACTIONS(3962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3962), + [sym_preproc_directive] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3964), + [anon_sym_TILDE] = ACTIONS(3964), + [anon_sym_STAR] = ACTIONS(3964), + [anon_sym_AMP_AMP] = ACTIONS(3964), + [anon_sym_AMP] = ACTIONS(3962), + [anon_sym_SEMI] = ACTIONS(3964), + [anon_sym___extension__] = ACTIONS(3962), + [anon_sym_typedef] = ACTIONS(3962), + [anon_sym_virtual] = ACTIONS(3962), + [anon_sym_extern] = ACTIONS(3962), + [anon_sym___attribute__] = ACTIONS(3962), + [anon_sym___attribute] = ACTIONS(3962), + [anon_sym_using] = ACTIONS(3962), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3964), + [anon_sym___declspec] = ACTIONS(3962), + [anon_sym___based] = ACTIONS(3962), + [anon_sym_RBRACE] = ACTIONS(3964), + [anon_sym_signed] = ACTIONS(3962), + [anon_sym_unsigned] = ACTIONS(3962), + [anon_sym_long] = ACTIONS(3962), + [anon_sym_short] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3962), + [anon_sym_static] = ACTIONS(3962), + [anon_sym_register] = ACTIONS(3962), + [anon_sym_inline] = ACTIONS(3962), + [anon_sym___inline] = ACTIONS(3962), + [anon_sym___inline__] = ACTIONS(3962), + [anon_sym___forceinline] = ACTIONS(3962), + [anon_sym_thread_local] = ACTIONS(3962), + [anon_sym___thread] = ACTIONS(3962), + [anon_sym_const] = ACTIONS(3962), + [anon_sym_constexpr] = ACTIONS(3962), + [anon_sym_volatile] = ACTIONS(3962), + [anon_sym_restrict] = ACTIONS(3962), + [anon_sym___restrict__] = ACTIONS(3962), + [anon_sym__Atomic] = ACTIONS(3962), + [anon_sym__Noreturn] = ACTIONS(3962), + [anon_sym_noreturn] = ACTIONS(3962), + [anon_sym__Nonnull] = ACTIONS(3962), + [anon_sym_mutable] = ACTIONS(3962), + [anon_sym_constinit] = ACTIONS(3962), + [anon_sym_consteval] = ACTIONS(3962), + [anon_sym_alignas] = ACTIONS(3962), + [anon_sym__Alignas] = ACTIONS(3962), + [sym_primitive_type] = ACTIONS(3962), + [anon_sym_enum] = ACTIONS(3962), + [anon_sym_class] = ACTIONS(3962), + [anon_sym_struct] = ACTIONS(3962), + [anon_sym_union] = ACTIONS(3962), + [anon_sym_typename] = ACTIONS(3962), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3962), + [anon_sym_decltype] = ACTIONS(3962), + [anon_sym_explicit] = ACTIONS(3962), + [anon_sym_private] = ACTIONS(3962), + [anon_sym_template] = ACTIONS(3962), + [anon_sym_operator] = ACTIONS(3962), + [anon_sym_friend] = ACTIONS(3962), + [anon_sym_public] = ACTIONS(3962), + [anon_sym_protected] = ACTIONS(3962), + [anon_sym_static_assert] = ACTIONS(3962), + [anon_sym_LBRACK_COLON] = ACTIONS(3964), + }, + [STATE(3345)] = { + [sym_identifier] = ACTIONS(3988), + [aux_sym_preproc_def_token1] = ACTIONS(3988), + [aux_sym_preproc_if_token1] = ACTIONS(3988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3988), + [sym_preproc_directive] = ACTIONS(3988), + [anon_sym_LPAREN2] = ACTIONS(3990), + [anon_sym_TILDE] = ACTIONS(3990), + [anon_sym_STAR] = ACTIONS(3990), + [anon_sym_AMP_AMP] = ACTIONS(3990), + [anon_sym_AMP] = ACTIONS(3988), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym___extension__] = ACTIONS(3988), + [anon_sym_typedef] = ACTIONS(3988), + [anon_sym_virtual] = ACTIONS(3988), + [anon_sym_extern] = ACTIONS(3988), + [anon_sym___attribute__] = ACTIONS(3988), + [anon_sym___attribute] = ACTIONS(3988), + [anon_sym_using] = ACTIONS(3988), + [anon_sym_COLON_COLON] = ACTIONS(3990), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3990), + [anon_sym___declspec] = ACTIONS(3988), + [anon_sym___based] = ACTIONS(3988), + [anon_sym_RBRACE] = ACTIONS(3990), + [anon_sym_signed] = ACTIONS(3988), + [anon_sym_unsigned] = ACTIONS(3988), + [anon_sym_long] = ACTIONS(3988), + [anon_sym_short] = ACTIONS(3988), + [anon_sym_LBRACK] = ACTIONS(3988), + [anon_sym_static] = ACTIONS(3988), + [anon_sym_register] = ACTIONS(3988), + [anon_sym_inline] = ACTIONS(3988), + [anon_sym___inline] = ACTIONS(3988), + [anon_sym___inline__] = ACTIONS(3988), + [anon_sym___forceinline] = ACTIONS(3988), + [anon_sym_thread_local] = ACTIONS(3988), + [anon_sym___thread] = ACTIONS(3988), + [anon_sym_const] = ACTIONS(3988), + [anon_sym_constexpr] = ACTIONS(3988), + [anon_sym_volatile] = ACTIONS(3988), + [anon_sym_restrict] = ACTIONS(3988), + [anon_sym___restrict__] = ACTIONS(3988), + [anon_sym__Atomic] = ACTIONS(3988), + [anon_sym__Noreturn] = ACTIONS(3988), + [anon_sym_noreturn] = ACTIONS(3988), + [anon_sym__Nonnull] = ACTIONS(3988), + [anon_sym_mutable] = ACTIONS(3988), + [anon_sym_constinit] = ACTIONS(3988), + [anon_sym_consteval] = ACTIONS(3988), + [anon_sym_alignas] = ACTIONS(3988), + [anon_sym__Alignas] = ACTIONS(3988), + [sym_primitive_type] = ACTIONS(3988), + [anon_sym_enum] = ACTIONS(3988), + [anon_sym_class] = ACTIONS(3988), + [anon_sym_struct] = ACTIONS(3988), + [anon_sym_union] = ACTIONS(3988), + [anon_sym_typename] = ACTIONS(3988), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3988), + [anon_sym_decltype] = ACTIONS(3988), + [anon_sym_explicit] = ACTIONS(3988), + [anon_sym_private] = ACTIONS(3988), + [anon_sym_template] = ACTIONS(3988), + [anon_sym_operator] = ACTIONS(3988), + [anon_sym_friend] = ACTIONS(3988), + [anon_sym_public] = ACTIONS(3988), + [anon_sym_protected] = ACTIONS(3988), + [anon_sym_static_assert] = ACTIONS(3988), + [anon_sym_LBRACK_COLON] = ACTIONS(3990), + }, + [STATE(3346)] = { + [sym_identifier] = ACTIONS(3992), + [aux_sym_preproc_def_token1] = ACTIONS(3992), + [aux_sym_preproc_if_token1] = ACTIONS(3992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3992), + [sym_preproc_directive] = ACTIONS(3992), + [anon_sym_LPAREN2] = ACTIONS(3994), + [anon_sym_TILDE] = ACTIONS(3994), + [anon_sym_STAR] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_AMP] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym___extension__] = ACTIONS(3992), + [anon_sym_typedef] = ACTIONS(3992), + [anon_sym_virtual] = ACTIONS(3992), + [anon_sym_extern] = ACTIONS(3992), + [anon_sym___attribute__] = ACTIONS(3992), + [anon_sym___attribute] = ACTIONS(3992), + [anon_sym_using] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3994), + [anon_sym___declspec] = ACTIONS(3992), + [anon_sym___based] = ACTIONS(3992), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_signed] = ACTIONS(3992), + [anon_sym_unsigned] = ACTIONS(3992), + [anon_sym_long] = ACTIONS(3992), + [anon_sym_short] = ACTIONS(3992), + [anon_sym_LBRACK] = ACTIONS(3992), + [anon_sym_static] = ACTIONS(3992), + [anon_sym_register] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym___inline] = ACTIONS(3992), + [anon_sym___inline__] = ACTIONS(3992), + [anon_sym___forceinline] = ACTIONS(3992), + [anon_sym_thread_local] = ACTIONS(3992), + [anon_sym___thread] = ACTIONS(3992), + [anon_sym_const] = ACTIONS(3992), + [anon_sym_constexpr] = ACTIONS(3992), + [anon_sym_volatile] = ACTIONS(3992), + [anon_sym_restrict] = ACTIONS(3992), + [anon_sym___restrict__] = ACTIONS(3992), + [anon_sym__Atomic] = ACTIONS(3992), + [anon_sym__Noreturn] = ACTIONS(3992), + [anon_sym_noreturn] = ACTIONS(3992), + [anon_sym__Nonnull] = ACTIONS(3992), + [anon_sym_mutable] = ACTIONS(3992), + [anon_sym_constinit] = ACTIONS(3992), + [anon_sym_consteval] = ACTIONS(3992), + [anon_sym_alignas] = ACTIONS(3992), + [anon_sym__Alignas] = ACTIONS(3992), + [sym_primitive_type] = ACTIONS(3992), + [anon_sym_enum] = ACTIONS(3992), + [anon_sym_class] = ACTIONS(3992), + [anon_sym_struct] = ACTIONS(3992), + [anon_sym_union] = ACTIONS(3992), + [anon_sym_typename] = ACTIONS(3992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3992), + [anon_sym_decltype] = ACTIONS(3992), + [anon_sym_explicit] = ACTIONS(3992), + [anon_sym_private] = ACTIONS(3992), + [anon_sym_template] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_friend] = ACTIONS(3992), + [anon_sym_public] = ACTIONS(3992), + [anon_sym_protected] = ACTIONS(3992), + [anon_sym_static_assert] = ACTIONS(3992), + [anon_sym_LBRACK_COLON] = ACTIONS(3994), + }, + [STATE(3347)] = { + [sym_template_argument_list] = STATE(3663), + [sym_identifier] = ACTIONS(6565), + [anon_sym_LPAREN2] = ACTIONS(6572), + [anon_sym_TILDE] = ACTIONS(6572), + [anon_sym_STAR] = ACTIONS(6572), + [anon_sym_PIPE_PIPE] = ACTIONS(6572), + [anon_sym_AMP_AMP] = ACTIONS(6572), + [anon_sym_AMP] = ACTIONS(6565), + [anon_sym_LT] = ACTIONS(9099), + [anon_sym___extension__] = ACTIONS(6565), + [anon_sym_virtual] = ACTIONS(6565), + [anon_sym_extern] = ACTIONS(6565), + [anon_sym___attribute__] = ACTIONS(6565), + [anon_sym___attribute] = ACTIONS(6565), + [anon_sym_using] = ACTIONS(6565), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6572), + [anon_sym___declspec] = ACTIONS(6565), + [anon_sym___based] = ACTIONS(6565), + [anon_sym___cdecl] = ACTIONS(6565), + [anon_sym___clrcall] = ACTIONS(6565), + [anon_sym___stdcall] = ACTIONS(6565), + [anon_sym___fastcall] = ACTIONS(6565), + [anon_sym___thiscall] = ACTIONS(6565), + [anon_sym___vectorcall] = ACTIONS(6565), + [anon_sym_signed] = ACTIONS(6565), + [anon_sym_unsigned] = ACTIONS(6565), + [anon_sym_long] = ACTIONS(6565), + [anon_sym_short] = ACTIONS(6565), + [anon_sym_LBRACK] = ACTIONS(6565), + [anon_sym_static] = ACTIONS(6565), + [anon_sym_register] = ACTIONS(6565), + [anon_sym_inline] = ACTIONS(6565), + [anon_sym___inline] = ACTIONS(6565), + [anon_sym___inline__] = ACTIONS(6565), + [anon_sym___forceinline] = ACTIONS(6565), + [anon_sym_thread_local] = ACTIONS(6565), + [anon_sym___thread] = ACTIONS(6565), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_constexpr] = ACTIONS(6565), + [anon_sym_volatile] = ACTIONS(6565), + [anon_sym_restrict] = ACTIONS(6565), + [anon_sym___restrict__] = ACTIONS(6565), + [anon_sym__Atomic] = ACTIONS(6565), + [anon_sym__Noreturn] = ACTIONS(6565), + [anon_sym_noreturn] = ACTIONS(6565), + [anon_sym__Nonnull] = ACTIONS(6565), + [anon_sym_mutable] = ACTIONS(6565), + [anon_sym_constinit] = ACTIONS(6565), + [anon_sym_consteval] = ACTIONS(6565), + [anon_sym_alignas] = ACTIONS(6565), + [anon_sym__Alignas] = ACTIONS(6565), + [sym_primitive_type] = ACTIONS(6565), + [anon_sym_enum] = ACTIONS(6565), + [anon_sym_class] = ACTIONS(6565), + [anon_sym_struct] = ACTIONS(6565), + [anon_sym_union] = ACTIONS(6565), + [anon_sym_or] = ACTIONS(6565), + [anon_sym_and] = ACTIONS(6565), + [anon_sym_typename] = ACTIONS(6565), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6565), + [anon_sym_decltype] = ACTIONS(6565), + [anon_sym_explicit] = ACTIONS(6565), + [anon_sym_template] = ACTIONS(6565), + [anon_sym_operator] = ACTIONS(6565), + [anon_sym_friend] = ACTIONS(6565), + [anon_sym_concept] = ACTIONS(6565), + [anon_sym_LBRACK_COLON] = ACTIONS(6572), + }, + [STATE(3348)] = { + [sym_identifier] = ACTIONS(4000), + [aux_sym_preproc_def_token1] = ACTIONS(4000), + [aux_sym_preproc_if_token1] = ACTIONS(4000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4000), + [sym_preproc_directive] = ACTIONS(4000), + [anon_sym_LPAREN2] = ACTIONS(4002), + [anon_sym_TILDE] = ACTIONS(4002), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_AMP] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym___extension__] = ACTIONS(4000), + [anon_sym_typedef] = ACTIONS(4000), + [anon_sym_virtual] = ACTIONS(4000), + [anon_sym_extern] = ACTIONS(4000), + [anon_sym___attribute__] = ACTIONS(4000), + [anon_sym___attribute] = ACTIONS(4000), + [anon_sym_using] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4002), + [anon_sym___declspec] = ACTIONS(4000), + [anon_sym___based] = ACTIONS(4000), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_signed] = ACTIONS(4000), + [anon_sym_unsigned] = ACTIONS(4000), + [anon_sym_long] = ACTIONS(4000), + [anon_sym_short] = ACTIONS(4000), + [anon_sym_LBRACK] = ACTIONS(4000), + [anon_sym_static] = ACTIONS(4000), + [anon_sym_register] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym___inline] = ACTIONS(4000), + [anon_sym___inline__] = ACTIONS(4000), + [anon_sym___forceinline] = ACTIONS(4000), + [anon_sym_thread_local] = ACTIONS(4000), + [anon_sym___thread] = ACTIONS(4000), + [anon_sym_const] = ACTIONS(4000), + [anon_sym_constexpr] = ACTIONS(4000), + [anon_sym_volatile] = ACTIONS(4000), + [anon_sym_restrict] = ACTIONS(4000), + [anon_sym___restrict__] = ACTIONS(4000), + [anon_sym__Atomic] = ACTIONS(4000), + [anon_sym__Noreturn] = ACTIONS(4000), + [anon_sym_noreturn] = ACTIONS(4000), + [anon_sym__Nonnull] = ACTIONS(4000), + [anon_sym_mutable] = ACTIONS(4000), + [anon_sym_constinit] = ACTIONS(4000), + [anon_sym_consteval] = ACTIONS(4000), + [anon_sym_alignas] = ACTIONS(4000), + [anon_sym__Alignas] = ACTIONS(4000), + [sym_primitive_type] = ACTIONS(4000), + [anon_sym_enum] = ACTIONS(4000), + [anon_sym_class] = ACTIONS(4000), + [anon_sym_struct] = ACTIONS(4000), + [anon_sym_union] = ACTIONS(4000), + [anon_sym_typename] = ACTIONS(4000), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4000), + [anon_sym_decltype] = ACTIONS(4000), + [anon_sym_explicit] = ACTIONS(4000), + [anon_sym_private] = ACTIONS(4000), + [anon_sym_template] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_friend] = ACTIONS(4000), + [anon_sym_public] = ACTIONS(4000), + [anon_sym_protected] = ACTIONS(4000), + [anon_sym_static_assert] = ACTIONS(4000), + [anon_sym_LBRACK_COLON] = ACTIONS(4002), + }, + [STATE(3349)] = { + [sym_identifier] = ACTIONS(4004), + [aux_sym_preproc_def_token1] = ACTIONS(4004), + [aux_sym_preproc_if_token1] = ACTIONS(4004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4004), + [sym_preproc_directive] = ACTIONS(4004), + [anon_sym_LPAREN2] = ACTIONS(4006), + [anon_sym_TILDE] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4006), + [anon_sym___extension__] = ACTIONS(4004), + [anon_sym_typedef] = ACTIONS(4004), + [anon_sym_virtual] = ACTIONS(4004), + [anon_sym_extern] = ACTIONS(4004), + [anon_sym___attribute__] = ACTIONS(4004), + [anon_sym___attribute] = ACTIONS(4004), + [anon_sym_using] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4006), + [anon_sym___declspec] = ACTIONS(4004), + [anon_sym___based] = ACTIONS(4004), + [anon_sym_RBRACE] = ACTIONS(4006), + [anon_sym_signed] = ACTIONS(4004), + [anon_sym_unsigned] = ACTIONS(4004), + [anon_sym_long] = ACTIONS(4004), + [anon_sym_short] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_register] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym___inline] = ACTIONS(4004), + [anon_sym___inline__] = ACTIONS(4004), + [anon_sym___forceinline] = ACTIONS(4004), + [anon_sym_thread_local] = ACTIONS(4004), + [anon_sym___thread] = ACTIONS(4004), + [anon_sym_const] = ACTIONS(4004), + [anon_sym_constexpr] = ACTIONS(4004), + [anon_sym_volatile] = ACTIONS(4004), + [anon_sym_restrict] = ACTIONS(4004), + [anon_sym___restrict__] = ACTIONS(4004), + [anon_sym__Atomic] = ACTIONS(4004), + [anon_sym__Noreturn] = ACTIONS(4004), + [anon_sym_noreturn] = ACTIONS(4004), + [anon_sym__Nonnull] = ACTIONS(4004), + [anon_sym_mutable] = ACTIONS(4004), + [anon_sym_constinit] = ACTIONS(4004), + [anon_sym_consteval] = ACTIONS(4004), + [anon_sym_alignas] = ACTIONS(4004), + [anon_sym__Alignas] = ACTIONS(4004), + [sym_primitive_type] = ACTIONS(4004), + [anon_sym_enum] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4004), + [anon_sym_struct] = ACTIONS(4004), + [anon_sym_union] = ACTIONS(4004), + [anon_sym_typename] = ACTIONS(4004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4004), + [anon_sym_decltype] = ACTIONS(4004), + [anon_sym_explicit] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_template] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_friend] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_static_assert] = ACTIONS(4004), + [anon_sym_LBRACK_COLON] = ACTIONS(4006), + }, + [STATE(3350)] = { + [sym_identifier] = ACTIONS(4012), + [aux_sym_preproc_def_token1] = ACTIONS(4012), + [aux_sym_preproc_if_token1] = ACTIONS(4012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4012), + [sym_preproc_directive] = ACTIONS(4012), + [anon_sym_LPAREN2] = ACTIONS(4014), + [anon_sym_TILDE] = ACTIONS(4014), + [anon_sym_STAR] = ACTIONS(4014), + [anon_sym_AMP_AMP] = ACTIONS(4014), + [anon_sym_AMP] = ACTIONS(4012), + [anon_sym_SEMI] = ACTIONS(4014), + [anon_sym___extension__] = ACTIONS(4012), + [anon_sym_typedef] = ACTIONS(4012), + [anon_sym_virtual] = ACTIONS(4012), + [anon_sym_extern] = ACTIONS(4012), + [anon_sym___attribute__] = ACTIONS(4012), + [anon_sym___attribute] = ACTIONS(4012), + [anon_sym_using] = ACTIONS(4012), + [anon_sym_COLON_COLON] = ACTIONS(4014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4014), + [anon_sym___declspec] = ACTIONS(4012), + [anon_sym___based] = ACTIONS(4012), + [anon_sym_RBRACE] = ACTIONS(4014), + [anon_sym_signed] = ACTIONS(4012), + [anon_sym_unsigned] = ACTIONS(4012), + [anon_sym_long] = ACTIONS(4012), + [anon_sym_short] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_static] = ACTIONS(4012), + [anon_sym_register] = ACTIONS(4012), + [anon_sym_inline] = ACTIONS(4012), + [anon_sym___inline] = ACTIONS(4012), + [anon_sym___inline__] = ACTIONS(4012), + [anon_sym___forceinline] = ACTIONS(4012), + [anon_sym_thread_local] = ACTIONS(4012), + [anon_sym___thread] = ACTIONS(4012), + [anon_sym_const] = ACTIONS(4012), + [anon_sym_constexpr] = ACTIONS(4012), + [anon_sym_volatile] = ACTIONS(4012), + [anon_sym_restrict] = ACTIONS(4012), + [anon_sym___restrict__] = ACTIONS(4012), + [anon_sym__Atomic] = ACTIONS(4012), + [anon_sym__Noreturn] = ACTIONS(4012), + [anon_sym_noreturn] = ACTIONS(4012), + [anon_sym__Nonnull] = ACTIONS(4012), + [anon_sym_mutable] = ACTIONS(4012), + [anon_sym_constinit] = ACTIONS(4012), + [anon_sym_consteval] = ACTIONS(4012), + [anon_sym_alignas] = ACTIONS(4012), + [anon_sym__Alignas] = ACTIONS(4012), + [sym_primitive_type] = ACTIONS(4012), + [anon_sym_enum] = ACTIONS(4012), + [anon_sym_class] = ACTIONS(4012), + [anon_sym_struct] = ACTIONS(4012), + [anon_sym_union] = ACTIONS(4012), + [anon_sym_typename] = ACTIONS(4012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4012), + [anon_sym_decltype] = ACTIONS(4012), + [anon_sym_explicit] = ACTIONS(4012), + [anon_sym_private] = ACTIONS(4012), + [anon_sym_template] = ACTIONS(4012), + [anon_sym_operator] = ACTIONS(4012), + [anon_sym_friend] = ACTIONS(4012), + [anon_sym_public] = ACTIONS(4012), + [anon_sym_protected] = ACTIONS(4012), + [anon_sym_static_assert] = ACTIONS(4012), + [anon_sym_LBRACK_COLON] = ACTIONS(4014), + }, + [STATE(3351)] = { + [sym_attribute_specifier] = STATE(4381), + [sym_attribute_declaration] = STATE(4895), + [sym_gnu_asm_expression] = STATE(9115), + [sym_virtual_specifier] = STATE(5261), + [sym__function_attributes_end] = STATE(4579), + [sym__function_postfix] = STATE(5696), + [sym_trailing_return_type] = STATE(4642), + [sym_requires_clause] = STATE(5696), + [aux_sym_type_definition_repeat1] = STATE(4381), + [aux_sym_attributed_declarator_repeat1] = STATE(4895), + [aux_sym__function_postfix_repeat1] = STATE(5261), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6764), + [anon_sym___attribute] = ACTIONS(6766), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7791), + [anon_sym_and] = ACTIONS(7791), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7791), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8514), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6777), + [anon_sym_override] = ACTIONS(6777), + [anon_sym_requires] = ACTIONS(6783), + [anon_sym_DASH_GT_STAR] = ACTIONS(7791), + }, + [STATE(3352)] = { + [sym_attribute_specifier] = STATE(4381), + [sym_attribute_declaration] = STATE(4895), + [sym_gnu_asm_expression] = STATE(9115), + [sym_virtual_specifier] = STATE(5261), + [sym__function_attributes_end] = STATE(4572), + [sym__function_postfix] = STATE(5681), + [sym_trailing_return_type] = STATE(4639), + [sym_requires_clause] = STATE(5681), + [aux_sym_type_definition_repeat1] = STATE(4381), + [aux_sym_attributed_declarator_repeat1] = STATE(4895), + [aux_sym__function_postfix_repeat1] = STATE(5261), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_RPAREN] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym___attribute__] = ACTIONS(6764), + [anon_sym___attribute] = ACTIONS(6766), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7966), + [anon_sym_and] = ACTIONS(7966), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7966), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(8595), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6777), + [anon_sym_override] = ACTIONS(6777), + [anon_sym_requires] = ACTIONS(6783), + [anon_sym_DASH_GT_STAR] = ACTIONS(7966), + }, + [STATE(3353)] = { + [sym_attribute_specifier] = STATE(4381), + [sym_attribute_declaration] = STATE(4895), + [sym_gnu_asm_expression] = STATE(9115), + [sym_virtual_specifier] = STATE(5261), + [sym__function_attributes_end] = STATE(4619), + [sym__function_postfix] = STATE(5550), + [sym_trailing_return_type] = STATE(4715), + [sym_requires_clause] = STATE(5550), + [aux_sym_type_definition_repeat1] = STATE(4381), + [aux_sym_attributed_declarator_repeat1] = STATE(4895), + [aux_sym__function_postfix_repeat1] = STATE(5261), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), + [anon_sym_COMMA] = ACTIONS(8422), + [anon_sym_RPAREN] = ACTIONS(8422), + [anon_sym_LPAREN2] = ACTIONS(8422), + [anon_sym_DASH] = ACTIONS(8424), + [anon_sym_PLUS] = ACTIONS(8424), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_SLASH] = ACTIONS(8424), + [anon_sym_PERCENT] = ACTIONS(8424), + [anon_sym_PIPE_PIPE] = ACTIONS(8422), + [anon_sym_AMP_AMP] = ACTIONS(8422), + [anon_sym_PIPE] = ACTIONS(8424), + [anon_sym_CARET] = ACTIONS(8424), + [anon_sym_AMP] = ACTIONS(8424), + [anon_sym_EQ_EQ] = ACTIONS(8422), + [anon_sym_BANG_EQ] = ACTIONS(8422), + [anon_sym_GT] = ACTIONS(8424), + [anon_sym_GT_EQ] = ACTIONS(8422), + [anon_sym_LT_EQ] = ACTIONS(8424), + [anon_sym_LT] = ACTIONS(8424), + [anon_sym_LT_LT] = ACTIONS(8424), + [anon_sym_GT_GT] = ACTIONS(8424), + [anon_sym___attribute__] = ACTIONS(6764), + [anon_sym___attribute] = ACTIONS(6766), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), + [anon_sym_LBRACK] = ACTIONS(8424), + [anon_sym_EQ] = ACTIONS(8424), + [anon_sym_QMARK] = ACTIONS(8422), + [anon_sym_STAR_EQ] = ACTIONS(8422), + [anon_sym_SLASH_EQ] = ACTIONS(8422), + [anon_sym_PERCENT_EQ] = ACTIONS(8422), + [anon_sym_PLUS_EQ] = ACTIONS(8422), + [anon_sym_DASH_EQ] = ACTIONS(8422), + [anon_sym_LT_LT_EQ] = ACTIONS(8422), + [anon_sym_GT_GT_EQ] = ACTIONS(8422), + [anon_sym_AMP_EQ] = ACTIONS(8422), + [anon_sym_CARET_EQ] = ACTIONS(8422), + [anon_sym_PIPE_EQ] = ACTIONS(8422), + [anon_sym_LT_EQ_GT] = ACTIONS(8422), + [anon_sym_or] = ACTIONS(8422), + [anon_sym_and] = ACTIONS(8422), + [anon_sym_bitor] = ACTIONS(8422), + [anon_sym_xor] = ACTIONS(8422), + [anon_sym_bitand] = ACTIONS(8422), + [anon_sym_not_eq] = ACTIONS(8422), + [anon_sym_DASH_DASH] = ACTIONS(8422), + [anon_sym_PLUS_PLUS] = ACTIONS(8422), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(8424), + [anon_sym_DOT_STAR] = ACTIONS(8422), + [anon_sym_DASH_GT] = ACTIONS(9124), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6777), + [anon_sym_override] = ACTIONS(6777), + [anon_sym_requires] = ACTIONS(6783), + [anon_sym_DASH_GT_STAR] = ACTIONS(8422), + }, + [STATE(3354)] = { + [sym_identifier] = ACTIONS(8770), + [aux_sym_preproc_def_token1] = ACTIONS(8770), + [aux_sym_preproc_if_token1] = ACTIONS(8770), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8770), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8770), + [sym_preproc_directive] = ACTIONS(8770), + [anon_sym_LPAREN2] = ACTIONS(8772), + [anon_sym_TILDE] = ACTIONS(8772), + [anon_sym_STAR] = ACTIONS(8772), + [anon_sym_AMP_AMP] = ACTIONS(8772), + [anon_sym_AMP] = ACTIONS(8770), + [anon_sym_SEMI] = ACTIONS(8772), + [anon_sym___extension__] = ACTIONS(8770), + [anon_sym_typedef] = ACTIONS(8770), + [anon_sym_virtual] = ACTIONS(8770), + [anon_sym_extern] = ACTIONS(8770), + [anon_sym___attribute__] = ACTIONS(8770), + [anon_sym___attribute] = ACTIONS(8770), + [anon_sym_using] = ACTIONS(8770), + [anon_sym_COLON_COLON] = ACTIONS(8772), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8772), + [anon_sym___declspec] = ACTIONS(8770), + [anon_sym___based] = ACTIONS(8770), + [anon_sym_RBRACE] = ACTIONS(8772), + [anon_sym_signed] = ACTIONS(8770), + [anon_sym_unsigned] = ACTIONS(8770), + [anon_sym_long] = ACTIONS(8770), + [anon_sym_short] = ACTIONS(8770), + [anon_sym_LBRACK] = ACTIONS(8770), + [anon_sym_static] = ACTIONS(8770), + [anon_sym_register] = ACTIONS(8770), + [anon_sym_inline] = ACTIONS(8770), + [anon_sym___inline] = ACTIONS(8770), + [anon_sym___inline__] = ACTIONS(8770), + [anon_sym___forceinline] = ACTIONS(8770), + [anon_sym_thread_local] = ACTIONS(8770), + [anon_sym___thread] = ACTIONS(8770), + [anon_sym_const] = ACTIONS(8770), + [anon_sym_constexpr] = ACTIONS(8770), + [anon_sym_volatile] = ACTIONS(8770), + [anon_sym_restrict] = ACTIONS(8770), + [anon_sym___restrict__] = ACTIONS(8770), + [anon_sym__Atomic] = ACTIONS(8770), + [anon_sym__Noreturn] = ACTIONS(8770), + [anon_sym_noreturn] = ACTIONS(8770), + [anon_sym__Nonnull] = ACTIONS(8770), + [anon_sym_mutable] = ACTIONS(8770), + [anon_sym_constinit] = ACTIONS(8770), + [anon_sym_consteval] = ACTIONS(8770), + [anon_sym_alignas] = ACTIONS(8770), + [anon_sym__Alignas] = ACTIONS(8770), + [sym_primitive_type] = ACTIONS(8770), + [anon_sym_enum] = ACTIONS(8770), + [anon_sym_class] = ACTIONS(8770), + [anon_sym_struct] = ACTIONS(8770), + [anon_sym_union] = ACTIONS(8770), + [anon_sym_typename] = ACTIONS(8770), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8770), + [anon_sym_decltype] = ACTIONS(8770), + [anon_sym_explicit] = ACTIONS(8770), + [anon_sym_private] = ACTIONS(8770), + [anon_sym_template] = ACTIONS(8770), + [anon_sym_operator] = ACTIONS(8770), + [anon_sym_friend] = ACTIONS(8770), + [anon_sym_public] = ACTIONS(8770), + [anon_sym_protected] = ACTIONS(8770), + [anon_sym_static_assert] = ACTIONS(8770), + [anon_sym_LBRACK_COLON] = ACTIONS(8772), + }, + [STATE(3355)] = { + [sym_identifier] = ACTIONS(3954), + [aux_sym_preproc_def_token1] = ACTIONS(3954), + [aux_sym_preproc_if_token1] = ACTIONS(3954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3954), + [sym_preproc_directive] = ACTIONS(3954), + [anon_sym_LPAREN2] = ACTIONS(3956), + [anon_sym_TILDE] = ACTIONS(3956), + [anon_sym_STAR] = ACTIONS(3956), + [anon_sym_AMP_AMP] = ACTIONS(3956), + [anon_sym_AMP] = ACTIONS(3954), + [anon_sym_SEMI] = ACTIONS(3956), + [anon_sym___extension__] = ACTIONS(3954), + [anon_sym_typedef] = ACTIONS(3954), + [anon_sym_virtual] = ACTIONS(3954), + [anon_sym_extern] = ACTIONS(3954), + [anon_sym___attribute__] = ACTIONS(3954), + [anon_sym___attribute] = ACTIONS(3954), + [anon_sym_using] = ACTIONS(3954), + [anon_sym_COLON_COLON] = ACTIONS(3956), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3956), + [anon_sym___declspec] = ACTIONS(3954), + [anon_sym___based] = ACTIONS(3954), + [anon_sym_RBRACE] = ACTIONS(3956), + [anon_sym_signed] = ACTIONS(3954), + [anon_sym_unsigned] = ACTIONS(3954), + [anon_sym_long] = ACTIONS(3954), + [anon_sym_short] = ACTIONS(3954), + [anon_sym_LBRACK] = ACTIONS(3954), + [anon_sym_static] = ACTIONS(3954), + [anon_sym_register] = ACTIONS(3954), + [anon_sym_inline] = ACTIONS(3954), + [anon_sym___inline] = ACTIONS(3954), + [anon_sym___inline__] = ACTIONS(3954), + [anon_sym___forceinline] = ACTIONS(3954), + [anon_sym_thread_local] = ACTIONS(3954), + [anon_sym___thread] = ACTIONS(3954), + [anon_sym_const] = ACTIONS(3954), + [anon_sym_constexpr] = ACTIONS(3954), + [anon_sym_volatile] = ACTIONS(3954), + [anon_sym_restrict] = ACTIONS(3954), + [anon_sym___restrict__] = ACTIONS(3954), + [anon_sym__Atomic] = ACTIONS(3954), + [anon_sym__Noreturn] = ACTIONS(3954), + [anon_sym_noreturn] = ACTIONS(3954), + [anon_sym__Nonnull] = ACTIONS(3954), + [anon_sym_mutable] = ACTIONS(3954), + [anon_sym_constinit] = ACTIONS(3954), + [anon_sym_consteval] = ACTIONS(3954), + [anon_sym_alignas] = ACTIONS(3954), + [anon_sym__Alignas] = ACTIONS(3954), + [sym_primitive_type] = ACTIONS(3954), + [anon_sym_enum] = ACTIONS(3954), + [anon_sym_class] = ACTIONS(3954), + [anon_sym_struct] = ACTIONS(3954), + [anon_sym_union] = ACTIONS(3954), + [anon_sym_typename] = ACTIONS(3954), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3954), + [anon_sym_decltype] = ACTIONS(3954), + [anon_sym_explicit] = ACTIONS(3954), + [anon_sym_private] = ACTIONS(3954), + [anon_sym_template] = ACTIONS(3954), + [anon_sym_operator] = ACTIONS(3954), + [anon_sym_friend] = ACTIONS(3954), + [anon_sym_public] = ACTIONS(3954), + [anon_sym_protected] = ACTIONS(3954), + [anon_sym_static_assert] = ACTIONS(3954), + [anon_sym_LBRACK_COLON] = ACTIONS(3956), + }, + [STATE(3356)] = { + [sym_identifier] = ACTIONS(8774), + [aux_sym_preproc_def_token1] = ACTIONS(8774), + [aux_sym_preproc_if_token1] = ACTIONS(8774), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8774), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8774), + [sym_preproc_directive] = ACTIONS(8774), + [anon_sym_LPAREN2] = ACTIONS(8776), + [anon_sym_TILDE] = ACTIONS(8776), + [anon_sym_STAR] = ACTIONS(8776), + [anon_sym_AMP_AMP] = ACTIONS(8776), + [anon_sym_AMP] = ACTIONS(8774), + [anon_sym_SEMI] = ACTIONS(8776), + [anon_sym___extension__] = ACTIONS(8774), + [anon_sym_typedef] = ACTIONS(8774), + [anon_sym_virtual] = ACTIONS(8774), + [anon_sym_extern] = ACTIONS(8774), + [anon_sym___attribute__] = ACTIONS(8774), + [anon_sym___attribute] = ACTIONS(8774), + [anon_sym_using] = ACTIONS(8774), + [anon_sym_COLON_COLON] = ACTIONS(8776), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8776), + [anon_sym___declspec] = ACTIONS(8774), + [anon_sym___based] = ACTIONS(8774), + [anon_sym_RBRACE] = ACTIONS(8776), + [anon_sym_signed] = ACTIONS(8774), + [anon_sym_unsigned] = ACTIONS(8774), + [anon_sym_long] = ACTIONS(8774), + [anon_sym_short] = ACTIONS(8774), + [anon_sym_LBRACK] = ACTIONS(8774), + [anon_sym_static] = ACTIONS(8774), + [anon_sym_register] = ACTIONS(8774), + [anon_sym_inline] = ACTIONS(8774), + [anon_sym___inline] = ACTIONS(8774), + [anon_sym___inline__] = ACTIONS(8774), + [anon_sym___forceinline] = ACTIONS(8774), + [anon_sym_thread_local] = ACTIONS(8774), + [anon_sym___thread] = ACTIONS(8774), + [anon_sym_const] = ACTIONS(8774), + [anon_sym_constexpr] = ACTIONS(8774), + [anon_sym_volatile] = ACTIONS(8774), + [anon_sym_restrict] = ACTIONS(8774), + [anon_sym___restrict__] = ACTIONS(8774), + [anon_sym__Atomic] = ACTIONS(8774), + [anon_sym__Noreturn] = ACTIONS(8774), + [anon_sym_noreturn] = ACTIONS(8774), + [anon_sym__Nonnull] = ACTIONS(8774), + [anon_sym_mutable] = ACTIONS(8774), + [anon_sym_constinit] = ACTIONS(8774), + [anon_sym_consteval] = ACTIONS(8774), + [anon_sym_alignas] = ACTIONS(8774), + [anon_sym__Alignas] = ACTIONS(8774), + [sym_primitive_type] = ACTIONS(8774), + [anon_sym_enum] = ACTIONS(8774), + [anon_sym_class] = ACTIONS(8774), + [anon_sym_struct] = ACTIONS(8774), + [anon_sym_union] = ACTIONS(8774), + [anon_sym_typename] = ACTIONS(8774), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8774), + [anon_sym_decltype] = ACTIONS(8774), + [anon_sym_explicit] = ACTIONS(8774), + [anon_sym_private] = ACTIONS(8774), + [anon_sym_template] = ACTIONS(8774), + [anon_sym_operator] = ACTIONS(8774), + [anon_sym_friend] = ACTIONS(8774), + [anon_sym_public] = ACTIONS(8774), + [anon_sym_protected] = ACTIONS(8774), + [anon_sym_static_assert] = ACTIONS(8774), + [anon_sym_LBRACK_COLON] = ACTIONS(8776), + }, + [STATE(3357)] = { + [sym_identifier] = ACTIONS(4044), + [aux_sym_preproc_def_token1] = ACTIONS(4044), + [aux_sym_preproc_if_token1] = ACTIONS(4044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4044), + [sym_preproc_directive] = ACTIONS(4044), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_TILDE] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym___extension__] = ACTIONS(4044), + [anon_sym_typedef] = ACTIONS(4044), + [anon_sym_virtual] = ACTIONS(4044), + [anon_sym_extern] = ACTIONS(4044), + [anon_sym___attribute__] = ACTIONS(4044), + [anon_sym___attribute] = ACTIONS(4044), + [anon_sym_using] = ACTIONS(4044), + [anon_sym_COLON_COLON] = ACTIONS(4046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4046), + [anon_sym___declspec] = ACTIONS(4044), + [anon_sym___based] = ACTIONS(4044), + [anon_sym_RBRACE] = ACTIONS(4046), + [anon_sym_signed] = ACTIONS(4044), + [anon_sym_unsigned] = ACTIONS(4044), + [anon_sym_long] = ACTIONS(4044), + [anon_sym_short] = ACTIONS(4044), + [anon_sym_LBRACK] = ACTIONS(4044), + [anon_sym_static] = ACTIONS(4044), + [anon_sym_register] = ACTIONS(4044), + [anon_sym_inline] = ACTIONS(4044), + [anon_sym___inline] = ACTIONS(4044), + [anon_sym___inline__] = ACTIONS(4044), + [anon_sym___forceinline] = ACTIONS(4044), + [anon_sym_thread_local] = ACTIONS(4044), + [anon_sym___thread] = ACTIONS(4044), + [anon_sym_const] = ACTIONS(4044), + [anon_sym_constexpr] = ACTIONS(4044), + [anon_sym_volatile] = ACTIONS(4044), + [anon_sym_restrict] = ACTIONS(4044), + [anon_sym___restrict__] = ACTIONS(4044), + [anon_sym__Atomic] = ACTIONS(4044), + [anon_sym__Noreturn] = ACTIONS(4044), + [anon_sym_noreturn] = ACTIONS(4044), + [anon_sym__Nonnull] = ACTIONS(4044), + [anon_sym_mutable] = ACTIONS(4044), + [anon_sym_constinit] = ACTIONS(4044), + [anon_sym_consteval] = ACTIONS(4044), + [anon_sym_alignas] = ACTIONS(4044), + [anon_sym__Alignas] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(4044), + [anon_sym_enum] = ACTIONS(4044), + [anon_sym_class] = ACTIONS(4044), + [anon_sym_struct] = ACTIONS(4044), + [anon_sym_union] = ACTIONS(4044), + [anon_sym_typename] = ACTIONS(4044), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4044), + [anon_sym_decltype] = ACTIONS(4044), + [anon_sym_explicit] = ACTIONS(4044), + [anon_sym_private] = ACTIONS(4044), + [anon_sym_template] = ACTIONS(4044), + [anon_sym_operator] = ACTIONS(4044), + [anon_sym_friend] = ACTIONS(4044), + [anon_sym_public] = ACTIONS(4044), + [anon_sym_protected] = ACTIONS(4044), + [anon_sym_static_assert] = ACTIONS(4044), + [anon_sym_LBRACK_COLON] = ACTIONS(4046), + }, + [STATE(3358)] = { + [sym_identifier] = ACTIONS(8782), + [aux_sym_preproc_def_token1] = ACTIONS(8782), + [aux_sym_preproc_if_token1] = ACTIONS(8782), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8782), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8782), + [sym_preproc_directive] = ACTIONS(8782), + [anon_sym_LPAREN2] = ACTIONS(8784), + [anon_sym_TILDE] = ACTIONS(8784), + [anon_sym_STAR] = ACTIONS(8784), + [anon_sym_AMP_AMP] = ACTIONS(8784), + [anon_sym_AMP] = ACTIONS(8782), + [anon_sym_SEMI] = ACTIONS(8784), + [anon_sym___extension__] = ACTIONS(8782), + [anon_sym_typedef] = ACTIONS(8782), + [anon_sym_virtual] = ACTIONS(8782), + [anon_sym_extern] = ACTIONS(8782), + [anon_sym___attribute__] = ACTIONS(8782), + [anon_sym___attribute] = ACTIONS(8782), + [anon_sym_using] = ACTIONS(8782), + [anon_sym_COLON_COLON] = ACTIONS(8784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8784), + [anon_sym___declspec] = ACTIONS(8782), + [anon_sym___based] = ACTIONS(8782), + [anon_sym_RBRACE] = ACTIONS(8784), + [anon_sym_signed] = ACTIONS(8782), + [anon_sym_unsigned] = ACTIONS(8782), + [anon_sym_long] = ACTIONS(8782), + [anon_sym_short] = ACTIONS(8782), + [anon_sym_LBRACK] = ACTIONS(8782), + [anon_sym_static] = ACTIONS(8782), + [anon_sym_register] = ACTIONS(8782), + [anon_sym_inline] = ACTIONS(8782), + [anon_sym___inline] = ACTIONS(8782), + [anon_sym___inline__] = ACTIONS(8782), + [anon_sym___forceinline] = ACTIONS(8782), + [anon_sym_thread_local] = ACTIONS(8782), + [anon_sym___thread] = ACTIONS(8782), + [anon_sym_const] = ACTIONS(8782), + [anon_sym_constexpr] = ACTIONS(8782), + [anon_sym_volatile] = ACTIONS(8782), + [anon_sym_restrict] = ACTIONS(8782), + [anon_sym___restrict__] = ACTIONS(8782), + [anon_sym__Atomic] = ACTIONS(8782), + [anon_sym__Noreturn] = ACTIONS(8782), + [anon_sym_noreturn] = ACTIONS(8782), + [anon_sym__Nonnull] = ACTIONS(8782), + [anon_sym_mutable] = ACTIONS(8782), + [anon_sym_constinit] = ACTIONS(8782), + [anon_sym_consteval] = ACTIONS(8782), + [anon_sym_alignas] = ACTIONS(8782), + [anon_sym__Alignas] = ACTIONS(8782), + [sym_primitive_type] = ACTIONS(8782), + [anon_sym_enum] = ACTIONS(8782), + [anon_sym_class] = ACTIONS(8782), + [anon_sym_struct] = ACTIONS(8782), + [anon_sym_union] = ACTIONS(8782), + [anon_sym_typename] = ACTIONS(8782), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8782), + [anon_sym_decltype] = ACTIONS(8782), + [anon_sym_explicit] = ACTIONS(8782), + [anon_sym_private] = ACTIONS(8782), + [anon_sym_template] = ACTIONS(8782), + [anon_sym_operator] = ACTIONS(8782), + [anon_sym_friend] = ACTIONS(8782), + [anon_sym_public] = ACTIONS(8782), + [anon_sym_protected] = ACTIONS(8782), + [anon_sym_static_assert] = ACTIONS(8782), + [anon_sym_LBRACK_COLON] = ACTIONS(8784), + }, + [STATE(3359)] = { + [sym_identifier] = ACTIONS(8786), + [aux_sym_preproc_def_token1] = ACTIONS(8786), + [aux_sym_preproc_if_token1] = ACTIONS(8786), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8786), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8786), + [sym_preproc_directive] = ACTIONS(8786), + [anon_sym_LPAREN2] = ACTIONS(8788), + [anon_sym_TILDE] = ACTIONS(8788), + [anon_sym_STAR] = ACTIONS(8788), + [anon_sym_AMP_AMP] = ACTIONS(8788), + [anon_sym_AMP] = ACTIONS(8786), + [anon_sym_SEMI] = ACTIONS(8788), + [anon_sym___extension__] = ACTIONS(8786), + [anon_sym_typedef] = ACTIONS(8786), + [anon_sym_virtual] = ACTIONS(8786), + [anon_sym_extern] = ACTIONS(8786), + [anon_sym___attribute__] = ACTIONS(8786), + [anon_sym___attribute] = ACTIONS(8786), + [anon_sym_using] = ACTIONS(8786), + [anon_sym_COLON_COLON] = ACTIONS(8788), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8788), + [anon_sym___declspec] = ACTIONS(8786), + [anon_sym___based] = ACTIONS(8786), + [anon_sym_RBRACE] = ACTIONS(8788), + [anon_sym_signed] = ACTIONS(8786), + [anon_sym_unsigned] = ACTIONS(8786), + [anon_sym_long] = ACTIONS(8786), + [anon_sym_short] = ACTIONS(8786), + [anon_sym_LBRACK] = ACTIONS(8786), + [anon_sym_static] = ACTIONS(8786), + [anon_sym_register] = ACTIONS(8786), + [anon_sym_inline] = ACTIONS(8786), + [anon_sym___inline] = ACTIONS(8786), + [anon_sym___inline__] = ACTIONS(8786), + [anon_sym___forceinline] = ACTIONS(8786), + [anon_sym_thread_local] = ACTIONS(8786), + [anon_sym___thread] = ACTIONS(8786), + [anon_sym_const] = ACTIONS(8786), + [anon_sym_constexpr] = ACTIONS(8786), + [anon_sym_volatile] = ACTIONS(8786), + [anon_sym_restrict] = ACTIONS(8786), + [anon_sym___restrict__] = ACTIONS(8786), + [anon_sym__Atomic] = ACTIONS(8786), + [anon_sym__Noreturn] = ACTIONS(8786), + [anon_sym_noreturn] = ACTIONS(8786), + [anon_sym__Nonnull] = ACTIONS(8786), + [anon_sym_mutable] = ACTIONS(8786), + [anon_sym_constinit] = ACTIONS(8786), + [anon_sym_consteval] = ACTIONS(8786), + [anon_sym_alignas] = ACTIONS(8786), + [anon_sym__Alignas] = ACTIONS(8786), + [sym_primitive_type] = ACTIONS(8786), + [anon_sym_enum] = ACTIONS(8786), + [anon_sym_class] = ACTIONS(8786), + [anon_sym_struct] = ACTIONS(8786), + [anon_sym_union] = ACTIONS(8786), + [anon_sym_typename] = ACTIONS(8786), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8786), + [anon_sym_decltype] = ACTIONS(8786), + [anon_sym_explicit] = ACTIONS(8786), + [anon_sym_private] = ACTIONS(8786), + [anon_sym_template] = ACTIONS(8786), + [anon_sym_operator] = ACTIONS(8786), + [anon_sym_friend] = ACTIONS(8786), + [anon_sym_public] = ACTIONS(8786), + [anon_sym_protected] = ACTIONS(8786), + [anon_sym_static_assert] = ACTIONS(8786), + [anon_sym_LBRACK_COLON] = ACTIONS(8788), + }, + [STATE(3360)] = { + [sym_identifier] = ACTIONS(8794), + [aux_sym_preproc_def_token1] = ACTIONS(8794), + [aux_sym_preproc_if_token1] = ACTIONS(8794), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8794), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8794), + [sym_preproc_directive] = ACTIONS(8794), + [anon_sym_LPAREN2] = ACTIONS(8796), + [anon_sym_TILDE] = ACTIONS(8796), + [anon_sym_STAR] = ACTIONS(8796), + [anon_sym_AMP_AMP] = ACTIONS(8796), + [anon_sym_AMP] = ACTIONS(8794), + [anon_sym_SEMI] = ACTIONS(8796), + [anon_sym___extension__] = ACTIONS(8794), + [anon_sym_typedef] = ACTIONS(8794), + [anon_sym_virtual] = ACTIONS(8794), + [anon_sym_extern] = ACTIONS(8794), + [anon_sym___attribute__] = ACTIONS(8794), + [anon_sym___attribute] = ACTIONS(8794), + [anon_sym_using] = ACTIONS(8794), + [anon_sym_COLON_COLON] = ACTIONS(8796), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8796), + [anon_sym___declspec] = ACTIONS(8794), + [anon_sym___based] = ACTIONS(8794), + [anon_sym_RBRACE] = ACTIONS(8796), + [anon_sym_signed] = ACTIONS(8794), + [anon_sym_unsigned] = ACTIONS(8794), + [anon_sym_long] = ACTIONS(8794), + [anon_sym_short] = ACTIONS(8794), + [anon_sym_LBRACK] = ACTIONS(8794), + [anon_sym_static] = ACTIONS(8794), + [anon_sym_register] = ACTIONS(8794), + [anon_sym_inline] = ACTIONS(8794), + [anon_sym___inline] = ACTIONS(8794), + [anon_sym___inline__] = ACTIONS(8794), + [anon_sym___forceinline] = ACTIONS(8794), + [anon_sym_thread_local] = ACTIONS(8794), + [anon_sym___thread] = ACTIONS(8794), + [anon_sym_const] = ACTIONS(8794), + [anon_sym_constexpr] = ACTIONS(8794), + [anon_sym_volatile] = ACTIONS(8794), + [anon_sym_restrict] = ACTIONS(8794), + [anon_sym___restrict__] = ACTIONS(8794), + [anon_sym__Atomic] = ACTIONS(8794), + [anon_sym__Noreturn] = ACTIONS(8794), + [anon_sym_noreturn] = ACTIONS(8794), + [anon_sym__Nonnull] = ACTIONS(8794), + [anon_sym_mutable] = ACTIONS(8794), + [anon_sym_constinit] = ACTIONS(8794), + [anon_sym_consteval] = ACTIONS(8794), + [anon_sym_alignas] = ACTIONS(8794), + [anon_sym__Alignas] = ACTIONS(8794), + [sym_primitive_type] = ACTIONS(8794), + [anon_sym_enum] = ACTIONS(8794), + [anon_sym_class] = ACTIONS(8794), + [anon_sym_struct] = ACTIONS(8794), + [anon_sym_union] = ACTIONS(8794), + [anon_sym_typename] = ACTIONS(8794), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8794), + [anon_sym_decltype] = ACTIONS(8794), + [anon_sym_explicit] = ACTIONS(8794), + [anon_sym_private] = ACTIONS(8794), + [anon_sym_template] = ACTIONS(8794), + [anon_sym_operator] = ACTIONS(8794), + [anon_sym_friend] = ACTIONS(8794), + [anon_sym_public] = ACTIONS(8794), + [anon_sym_protected] = ACTIONS(8794), + [anon_sym_static_assert] = ACTIONS(8794), + [anon_sym_LBRACK_COLON] = ACTIONS(8796), + }, + [STATE(3361)] = { + [sym_identifier] = ACTIONS(8794), + [aux_sym_preproc_def_token1] = ACTIONS(8794), + [aux_sym_preproc_if_token1] = ACTIONS(8794), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8794), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8794), + [sym_preproc_directive] = ACTIONS(8794), + [anon_sym_LPAREN2] = ACTIONS(8796), + [anon_sym_TILDE] = ACTIONS(8796), + [anon_sym_STAR] = ACTIONS(8796), + [anon_sym_AMP_AMP] = ACTIONS(8796), + [anon_sym_AMP] = ACTIONS(8794), + [anon_sym_SEMI] = ACTIONS(8796), + [anon_sym___extension__] = ACTIONS(8794), + [anon_sym_typedef] = ACTIONS(8794), + [anon_sym_virtual] = ACTIONS(8794), + [anon_sym_extern] = ACTIONS(8794), + [anon_sym___attribute__] = ACTIONS(8794), + [anon_sym___attribute] = ACTIONS(8794), + [anon_sym_using] = ACTIONS(8794), + [anon_sym_COLON_COLON] = ACTIONS(8796), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8796), + [anon_sym___declspec] = ACTIONS(8794), + [anon_sym___based] = ACTIONS(8794), + [anon_sym_RBRACE] = ACTIONS(8796), + [anon_sym_signed] = ACTIONS(8794), + [anon_sym_unsigned] = ACTIONS(8794), + [anon_sym_long] = ACTIONS(8794), + [anon_sym_short] = ACTIONS(8794), + [anon_sym_LBRACK] = ACTIONS(8794), + [anon_sym_static] = ACTIONS(8794), + [anon_sym_register] = ACTIONS(8794), + [anon_sym_inline] = ACTIONS(8794), + [anon_sym___inline] = ACTIONS(8794), + [anon_sym___inline__] = ACTIONS(8794), + [anon_sym___forceinline] = ACTIONS(8794), + [anon_sym_thread_local] = ACTIONS(8794), + [anon_sym___thread] = ACTIONS(8794), + [anon_sym_const] = ACTIONS(8794), + [anon_sym_constexpr] = ACTIONS(8794), + [anon_sym_volatile] = ACTIONS(8794), + [anon_sym_restrict] = ACTIONS(8794), + [anon_sym___restrict__] = ACTIONS(8794), + [anon_sym__Atomic] = ACTIONS(8794), + [anon_sym__Noreturn] = ACTIONS(8794), + [anon_sym_noreturn] = ACTIONS(8794), + [anon_sym__Nonnull] = ACTIONS(8794), + [anon_sym_mutable] = ACTIONS(8794), + [anon_sym_constinit] = ACTIONS(8794), + [anon_sym_consteval] = ACTIONS(8794), + [anon_sym_alignas] = ACTIONS(8794), + [anon_sym__Alignas] = ACTIONS(8794), + [sym_primitive_type] = ACTIONS(8794), + [anon_sym_enum] = ACTIONS(8794), + [anon_sym_class] = ACTIONS(8794), + [anon_sym_struct] = ACTIONS(8794), + [anon_sym_union] = ACTIONS(8794), + [anon_sym_typename] = ACTIONS(8794), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8794), + [anon_sym_decltype] = ACTIONS(8794), + [anon_sym_explicit] = ACTIONS(8794), + [anon_sym_private] = ACTIONS(8794), + [anon_sym_template] = ACTIONS(8794), + [anon_sym_operator] = ACTIONS(8794), + [anon_sym_friend] = ACTIONS(8794), + [anon_sym_public] = ACTIONS(8794), + [anon_sym_protected] = ACTIONS(8794), + [anon_sym_static_assert] = ACTIONS(8794), + [anon_sym_LBRACK_COLON] = ACTIONS(8796), + }, + [STATE(3362)] = { + [sym_identifier] = ACTIONS(8794), + [aux_sym_preproc_def_token1] = ACTIONS(8794), + [aux_sym_preproc_if_token1] = ACTIONS(8794), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8794), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8794), + [sym_preproc_directive] = ACTIONS(8794), + [anon_sym_LPAREN2] = ACTIONS(8796), + [anon_sym_TILDE] = ACTIONS(8796), + [anon_sym_STAR] = ACTIONS(8796), + [anon_sym_AMP_AMP] = ACTIONS(8796), + [anon_sym_AMP] = ACTIONS(8794), + [anon_sym_SEMI] = ACTIONS(8796), + [anon_sym___extension__] = ACTIONS(8794), + [anon_sym_typedef] = ACTIONS(8794), + [anon_sym_virtual] = ACTIONS(8794), + [anon_sym_extern] = ACTIONS(8794), + [anon_sym___attribute__] = ACTIONS(8794), + [anon_sym___attribute] = ACTIONS(8794), + [anon_sym_using] = ACTIONS(8794), + [anon_sym_COLON_COLON] = ACTIONS(8796), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8796), + [anon_sym___declspec] = ACTIONS(8794), + [anon_sym___based] = ACTIONS(8794), + [anon_sym_RBRACE] = ACTIONS(8796), + [anon_sym_signed] = ACTIONS(8794), + [anon_sym_unsigned] = ACTIONS(8794), + [anon_sym_long] = ACTIONS(8794), + [anon_sym_short] = ACTIONS(8794), + [anon_sym_LBRACK] = ACTIONS(8794), + [anon_sym_static] = ACTIONS(8794), + [anon_sym_register] = ACTIONS(8794), + [anon_sym_inline] = ACTIONS(8794), + [anon_sym___inline] = ACTIONS(8794), + [anon_sym___inline__] = ACTIONS(8794), + [anon_sym___forceinline] = ACTIONS(8794), + [anon_sym_thread_local] = ACTIONS(8794), + [anon_sym___thread] = ACTIONS(8794), + [anon_sym_const] = ACTIONS(8794), + [anon_sym_constexpr] = ACTIONS(8794), + [anon_sym_volatile] = ACTIONS(8794), + [anon_sym_restrict] = ACTIONS(8794), + [anon_sym___restrict__] = ACTIONS(8794), + [anon_sym__Atomic] = ACTIONS(8794), + [anon_sym__Noreturn] = ACTIONS(8794), + [anon_sym_noreturn] = ACTIONS(8794), + [anon_sym__Nonnull] = ACTIONS(8794), + [anon_sym_mutable] = ACTIONS(8794), + [anon_sym_constinit] = ACTIONS(8794), + [anon_sym_consteval] = ACTIONS(8794), + [anon_sym_alignas] = ACTIONS(8794), + [anon_sym__Alignas] = ACTIONS(8794), + [sym_primitive_type] = ACTIONS(8794), + [anon_sym_enum] = ACTIONS(8794), + [anon_sym_class] = ACTIONS(8794), + [anon_sym_struct] = ACTIONS(8794), + [anon_sym_union] = ACTIONS(8794), + [anon_sym_typename] = ACTIONS(8794), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8794), + [anon_sym_decltype] = ACTIONS(8794), + [anon_sym_explicit] = ACTIONS(8794), + [anon_sym_private] = ACTIONS(8794), + [anon_sym_template] = ACTIONS(8794), + [anon_sym_operator] = ACTIONS(8794), + [anon_sym_friend] = ACTIONS(8794), + [anon_sym_public] = ACTIONS(8794), + [anon_sym_protected] = ACTIONS(8794), + [anon_sym_static_assert] = ACTIONS(8794), + [anon_sym_LBRACK_COLON] = ACTIONS(8796), + }, + [STATE(3363)] = { + [sym_identifier] = ACTIONS(8786), + [aux_sym_preproc_def_token1] = ACTIONS(8786), + [aux_sym_preproc_if_token1] = ACTIONS(8786), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8786), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8786), + [sym_preproc_directive] = ACTIONS(8786), + [anon_sym_LPAREN2] = ACTIONS(8788), + [anon_sym_TILDE] = ACTIONS(8788), + [anon_sym_STAR] = ACTIONS(8788), + [anon_sym_AMP_AMP] = ACTIONS(8788), + [anon_sym_AMP] = ACTIONS(8786), + [anon_sym_SEMI] = ACTIONS(8788), + [anon_sym___extension__] = ACTIONS(8786), + [anon_sym_typedef] = ACTIONS(8786), + [anon_sym_virtual] = ACTIONS(8786), + [anon_sym_extern] = ACTIONS(8786), + [anon_sym___attribute__] = ACTIONS(8786), + [anon_sym___attribute] = ACTIONS(8786), + [anon_sym_using] = ACTIONS(8786), + [anon_sym_COLON_COLON] = ACTIONS(8788), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8788), + [anon_sym___declspec] = ACTIONS(8786), + [anon_sym___based] = ACTIONS(8786), + [anon_sym_RBRACE] = ACTIONS(8788), + [anon_sym_signed] = ACTIONS(8786), + [anon_sym_unsigned] = ACTIONS(8786), + [anon_sym_long] = ACTIONS(8786), + [anon_sym_short] = ACTIONS(8786), + [anon_sym_LBRACK] = ACTIONS(8786), + [anon_sym_static] = ACTIONS(8786), + [anon_sym_register] = ACTIONS(8786), + [anon_sym_inline] = ACTIONS(8786), + [anon_sym___inline] = ACTIONS(8786), + [anon_sym___inline__] = ACTIONS(8786), + [anon_sym___forceinline] = ACTIONS(8786), + [anon_sym_thread_local] = ACTIONS(8786), + [anon_sym___thread] = ACTIONS(8786), + [anon_sym_const] = ACTIONS(8786), + [anon_sym_constexpr] = ACTIONS(8786), + [anon_sym_volatile] = ACTIONS(8786), + [anon_sym_restrict] = ACTIONS(8786), + [anon_sym___restrict__] = ACTIONS(8786), + [anon_sym__Atomic] = ACTIONS(8786), + [anon_sym__Noreturn] = ACTIONS(8786), + [anon_sym_noreturn] = ACTIONS(8786), + [anon_sym__Nonnull] = ACTIONS(8786), + [anon_sym_mutable] = ACTIONS(8786), + [anon_sym_constinit] = ACTIONS(8786), + [anon_sym_consteval] = ACTIONS(8786), + [anon_sym_alignas] = ACTIONS(8786), + [anon_sym__Alignas] = ACTIONS(8786), + [sym_primitive_type] = ACTIONS(8786), + [anon_sym_enum] = ACTIONS(8786), + [anon_sym_class] = ACTIONS(8786), + [anon_sym_struct] = ACTIONS(8786), + [anon_sym_union] = ACTIONS(8786), + [anon_sym_typename] = ACTIONS(8786), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8786), + [anon_sym_decltype] = ACTIONS(8786), + [anon_sym_explicit] = ACTIONS(8786), + [anon_sym_private] = ACTIONS(8786), + [anon_sym_template] = ACTIONS(8786), + [anon_sym_operator] = ACTIONS(8786), + [anon_sym_friend] = ACTIONS(8786), + [anon_sym_public] = ACTIONS(8786), + [anon_sym_protected] = ACTIONS(8786), + [anon_sym_static_assert] = ACTIONS(8786), + [anon_sym_LBRACK_COLON] = ACTIONS(8788), + }, + [STATE(3364)] = { + [sym_identifier] = ACTIONS(3958), + [aux_sym_preproc_def_token1] = ACTIONS(3958), + [aux_sym_preproc_if_token1] = ACTIONS(3958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3958), + [sym_preproc_directive] = ACTIONS(3958), + [anon_sym_LPAREN2] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_STAR] = ACTIONS(3960), + [anon_sym_AMP_AMP] = ACTIONS(3960), + [anon_sym_AMP] = ACTIONS(3958), + [anon_sym_SEMI] = ACTIONS(3960), + [anon_sym___extension__] = ACTIONS(3958), + [anon_sym_typedef] = ACTIONS(3958), + [anon_sym_virtual] = ACTIONS(3958), + [anon_sym_extern] = ACTIONS(3958), + [anon_sym___attribute__] = ACTIONS(3958), + [anon_sym___attribute] = ACTIONS(3958), + [anon_sym_using] = ACTIONS(3958), + [anon_sym_COLON_COLON] = ACTIONS(3960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3960), + [anon_sym___declspec] = ACTIONS(3958), + [anon_sym___based] = ACTIONS(3958), + [anon_sym_RBRACE] = ACTIONS(3960), + [anon_sym_signed] = ACTIONS(3958), + [anon_sym_unsigned] = ACTIONS(3958), + [anon_sym_long] = ACTIONS(3958), + [anon_sym_short] = ACTIONS(3958), + [anon_sym_LBRACK] = ACTIONS(3958), + [anon_sym_static] = ACTIONS(3958), + [anon_sym_register] = ACTIONS(3958), + [anon_sym_inline] = ACTIONS(3958), + [anon_sym___inline] = ACTIONS(3958), + [anon_sym___inline__] = ACTIONS(3958), + [anon_sym___forceinline] = ACTIONS(3958), + [anon_sym_thread_local] = ACTIONS(3958), + [anon_sym___thread] = ACTIONS(3958), + [anon_sym_const] = ACTIONS(3958), + [anon_sym_constexpr] = ACTIONS(3958), + [anon_sym_volatile] = ACTIONS(3958), + [anon_sym_restrict] = ACTIONS(3958), + [anon_sym___restrict__] = ACTIONS(3958), + [anon_sym__Atomic] = ACTIONS(3958), + [anon_sym__Noreturn] = ACTIONS(3958), + [anon_sym_noreturn] = ACTIONS(3958), + [anon_sym__Nonnull] = ACTIONS(3958), + [anon_sym_mutable] = ACTIONS(3958), + [anon_sym_constinit] = ACTIONS(3958), + [anon_sym_consteval] = ACTIONS(3958), + [anon_sym_alignas] = ACTIONS(3958), + [anon_sym__Alignas] = ACTIONS(3958), + [sym_primitive_type] = ACTIONS(3958), + [anon_sym_enum] = ACTIONS(3958), + [anon_sym_class] = ACTIONS(3958), + [anon_sym_struct] = ACTIONS(3958), + [anon_sym_union] = ACTIONS(3958), + [anon_sym_typename] = ACTIONS(3958), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3958), + [anon_sym_decltype] = ACTIONS(3958), + [anon_sym_explicit] = ACTIONS(3958), + [anon_sym_private] = ACTIONS(3958), + [anon_sym_template] = ACTIONS(3958), + [anon_sym_operator] = ACTIONS(3958), + [anon_sym_friend] = ACTIONS(3958), + [anon_sym_public] = ACTIONS(3958), + [anon_sym_protected] = ACTIONS(3958), + [anon_sym_static_assert] = ACTIONS(3958), + [anon_sym_LBRACK_COLON] = ACTIONS(3960), + }, + [STATE(3365)] = { + [sym_identifier] = ACTIONS(4084), + [aux_sym_preproc_def_token1] = ACTIONS(4084), + [aux_sym_preproc_if_token1] = ACTIONS(4084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4084), + [sym_preproc_directive] = ACTIONS(4084), + [anon_sym_LPAREN2] = ACTIONS(4086), + [anon_sym_TILDE] = ACTIONS(4086), + [anon_sym_STAR] = ACTIONS(4086), + [anon_sym_AMP_AMP] = ACTIONS(4086), + [anon_sym_AMP] = ACTIONS(4084), + [anon_sym_SEMI] = ACTIONS(4086), + [anon_sym___extension__] = ACTIONS(4084), + [anon_sym_typedef] = ACTIONS(4084), + [anon_sym_virtual] = ACTIONS(4084), + [anon_sym_extern] = ACTIONS(4084), + [anon_sym___attribute__] = ACTIONS(4084), + [anon_sym___attribute] = ACTIONS(4084), + [anon_sym_using] = ACTIONS(4084), + [anon_sym_COLON_COLON] = ACTIONS(4086), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4086), + [anon_sym___declspec] = ACTIONS(4084), + [anon_sym___based] = ACTIONS(4084), + [anon_sym_RBRACE] = ACTIONS(4086), + [anon_sym_signed] = ACTIONS(4084), + [anon_sym_unsigned] = ACTIONS(4084), + [anon_sym_long] = ACTIONS(4084), + [anon_sym_short] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_static] = ACTIONS(4084), + [anon_sym_register] = ACTIONS(4084), + [anon_sym_inline] = ACTIONS(4084), + [anon_sym___inline] = ACTIONS(4084), + [anon_sym___inline__] = ACTIONS(4084), + [anon_sym___forceinline] = ACTIONS(4084), + [anon_sym_thread_local] = ACTIONS(4084), + [anon_sym___thread] = ACTIONS(4084), + [anon_sym_const] = ACTIONS(4084), + [anon_sym_constexpr] = ACTIONS(4084), + [anon_sym_volatile] = ACTIONS(4084), + [anon_sym_restrict] = ACTIONS(4084), + [anon_sym___restrict__] = ACTIONS(4084), + [anon_sym__Atomic] = ACTIONS(4084), + [anon_sym__Noreturn] = ACTIONS(4084), + [anon_sym_noreturn] = ACTIONS(4084), + [anon_sym__Nonnull] = ACTIONS(4084), + [anon_sym_mutable] = ACTIONS(4084), + [anon_sym_constinit] = ACTIONS(4084), + [anon_sym_consteval] = ACTIONS(4084), + [anon_sym_alignas] = ACTIONS(4084), + [anon_sym__Alignas] = ACTIONS(4084), + [sym_primitive_type] = ACTIONS(4084), + [anon_sym_enum] = ACTIONS(4084), + [anon_sym_class] = ACTIONS(4084), + [anon_sym_struct] = ACTIONS(4084), + [anon_sym_union] = ACTIONS(4084), + [anon_sym_typename] = ACTIONS(4084), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4084), + [anon_sym_decltype] = ACTIONS(4084), + [anon_sym_explicit] = ACTIONS(4084), + [anon_sym_private] = ACTIONS(4084), + [anon_sym_template] = ACTIONS(4084), + [anon_sym_operator] = ACTIONS(4084), + [anon_sym_friend] = ACTIONS(4084), + [anon_sym_public] = ACTIONS(4084), + [anon_sym_protected] = ACTIONS(4084), + [anon_sym_static_assert] = ACTIONS(4084), + [anon_sym_LBRACK_COLON] = ACTIONS(4086), + }, + [STATE(3366)] = { + [sym_identifier] = ACTIONS(4088), + [aux_sym_preproc_def_token1] = ACTIONS(4088), + [aux_sym_preproc_if_token1] = ACTIONS(4088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4088), + [sym_preproc_directive] = ACTIONS(4088), + [anon_sym_LPAREN2] = ACTIONS(4090), + [anon_sym_TILDE] = ACTIONS(4090), + [anon_sym_STAR] = ACTIONS(4090), + [anon_sym_AMP_AMP] = ACTIONS(4090), + [anon_sym_AMP] = ACTIONS(4088), + [anon_sym_SEMI] = ACTIONS(4090), + [anon_sym___extension__] = ACTIONS(4088), + [anon_sym_typedef] = ACTIONS(4088), + [anon_sym_virtual] = ACTIONS(4088), + [anon_sym_extern] = ACTIONS(4088), + [anon_sym___attribute__] = ACTIONS(4088), + [anon_sym___attribute] = ACTIONS(4088), + [anon_sym_using] = ACTIONS(4088), + [anon_sym_COLON_COLON] = ACTIONS(4090), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4090), + [anon_sym___declspec] = ACTIONS(4088), + [anon_sym___based] = ACTIONS(4088), + [anon_sym_RBRACE] = ACTIONS(4090), + [anon_sym_signed] = ACTIONS(4088), + [anon_sym_unsigned] = ACTIONS(4088), + [anon_sym_long] = ACTIONS(4088), + [anon_sym_short] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(4088), + [anon_sym_static] = ACTIONS(4088), + [anon_sym_register] = ACTIONS(4088), + [anon_sym_inline] = ACTIONS(4088), + [anon_sym___inline] = ACTIONS(4088), + [anon_sym___inline__] = ACTIONS(4088), + [anon_sym___forceinline] = ACTIONS(4088), + [anon_sym_thread_local] = ACTIONS(4088), + [anon_sym___thread] = ACTIONS(4088), + [anon_sym_const] = ACTIONS(4088), + [anon_sym_constexpr] = ACTIONS(4088), + [anon_sym_volatile] = ACTIONS(4088), + [anon_sym_restrict] = ACTIONS(4088), + [anon_sym___restrict__] = ACTIONS(4088), + [anon_sym__Atomic] = ACTIONS(4088), + [anon_sym__Noreturn] = ACTIONS(4088), + [anon_sym_noreturn] = ACTIONS(4088), + [anon_sym__Nonnull] = ACTIONS(4088), + [anon_sym_mutable] = ACTIONS(4088), + [anon_sym_constinit] = ACTIONS(4088), + [anon_sym_consteval] = ACTIONS(4088), + [anon_sym_alignas] = ACTIONS(4088), + [anon_sym__Alignas] = ACTIONS(4088), + [sym_primitive_type] = ACTIONS(4088), + [anon_sym_enum] = ACTIONS(4088), + [anon_sym_class] = ACTIONS(4088), + [anon_sym_struct] = ACTIONS(4088), + [anon_sym_union] = ACTIONS(4088), + [anon_sym_typename] = ACTIONS(4088), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4088), + [anon_sym_decltype] = ACTIONS(4088), + [anon_sym_explicit] = ACTIONS(4088), + [anon_sym_private] = ACTIONS(4088), + [anon_sym_template] = ACTIONS(4088), + [anon_sym_operator] = ACTIONS(4088), + [anon_sym_friend] = ACTIONS(4088), + [anon_sym_public] = ACTIONS(4088), + [anon_sym_protected] = ACTIONS(4088), + [anon_sym_static_assert] = ACTIONS(4088), + [anon_sym_LBRACK_COLON] = ACTIONS(4090), + }, + [STATE(3367)] = { + [sym_identifier] = ACTIONS(4092), + [aux_sym_preproc_def_token1] = ACTIONS(4092), + [aux_sym_preproc_if_token1] = ACTIONS(4092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4092), + [sym_preproc_directive] = ACTIONS(4092), + [anon_sym_LPAREN2] = ACTIONS(4094), + [anon_sym_TILDE] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_AMP] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym___extension__] = ACTIONS(4092), + [anon_sym_typedef] = ACTIONS(4092), + [anon_sym_virtual] = ACTIONS(4092), + [anon_sym_extern] = ACTIONS(4092), + [anon_sym___attribute__] = ACTIONS(4092), + [anon_sym___attribute] = ACTIONS(4092), + [anon_sym_using] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4094), + [anon_sym___declspec] = ACTIONS(4092), + [anon_sym___based] = ACTIONS(4092), + [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_signed] = ACTIONS(4092), + [anon_sym_unsigned] = ACTIONS(4092), + [anon_sym_long] = ACTIONS(4092), + [anon_sym_short] = ACTIONS(4092), + [anon_sym_LBRACK] = ACTIONS(4092), + [anon_sym_static] = ACTIONS(4092), + [anon_sym_register] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym___inline] = ACTIONS(4092), + [anon_sym___inline__] = ACTIONS(4092), + [anon_sym___forceinline] = ACTIONS(4092), + [anon_sym_thread_local] = ACTIONS(4092), + [anon_sym___thread] = ACTIONS(4092), + [anon_sym_const] = ACTIONS(4092), + [anon_sym_constexpr] = ACTIONS(4092), + [anon_sym_volatile] = ACTIONS(4092), + [anon_sym_restrict] = ACTIONS(4092), + [anon_sym___restrict__] = ACTIONS(4092), + [anon_sym__Atomic] = ACTIONS(4092), + [anon_sym__Noreturn] = ACTIONS(4092), + [anon_sym_noreturn] = ACTIONS(4092), + [anon_sym__Nonnull] = ACTIONS(4092), + [anon_sym_mutable] = ACTIONS(4092), + [anon_sym_constinit] = ACTIONS(4092), + [anon_sym_consteval] = ACTIONS(4092), + [anon_sym_alignas] = ACTIONS(4092), + [anon_sym__Alignas] = ACTIONS(4092), + [sym_primitive_type] = ACTIONS(4092), + [anon_sym_enum] = ACTIONS(4092), + [anon_sym_class] = ACTIONS(4092), + [anon_sym_struct] = ACTIONS(4092), + [anon_sym_union] = ACTIONS(4092), + [anon_sym_typename] = ACTIONS(4092), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4092), + [anon_sym_decltype] = ACTIONS(4092), + [anon_sym_explicit] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_template] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_friend] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_static_assert] = ACTIONS(4092), + [anon_sym_LBRACK_COLON] = ACTIONS(4094), + }, + [STATE(3368)] = { + [sym_identifier] = ACTIONS(4096), + [aux_sym_preproc_def_token1] = ACTIONS(4096), + [aux_sym_preproc_if_token1] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), + [sym_preproc_directive] = ACTIONS(4096), + [anon_sym_LPAREN2] = ACTIONS(4098), + [anon_sym_TILDE] = ACTIONS(4098), + [anon_sym_STAR] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4096), + [anon_sym_SEMI] = ACTIONS(4098), + [anon_sym___extension__] = ACTIONS(4096), + [anon_sym_typedef] = ACTIONS(4096), + [anon_sym_virtual] = ACTIONS(4096), + [anon_sym_extern] = ACTIONS(4096), + [anon_sym___attribute__] = ACTIONS(4096), + [anon_sym___attribute] = ACTIONS(4096), + [anon_sym_using] = ACTIONS(4096), + [anon_sym_COLON_COLON] = ACTIONS(4098), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4098), + [anon_sym___declspec] = ACTIONS(4096), + [anon_sym___based] = ACTIONS(4096), + [anon_sym_RBRACE] = ACTIONS(4098), + [anon_sym_signed] = ACTIONS(4096), + [anon_sym_unsigned] = ACTIONS(4096), + [anon_sym_long] = ACTIONS(4096), + [anon_sym_short] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_static] = ACTIONS(4096), + [anon_sym_register] = ACTIONS(4096), + [anon_sym_inline] = ACTIONS(4096), + [anon_sym___inline] = ACTIONS(4096), + [anon_sym___inline__] = ACTIONS(4096), + [anon_sym___forceinline] = ACTIONS(4096), + [anon_sym_thread_local] = ACTIONS(4096), + [anon_sym___thread] = ACTIONS(4096), + [anon_sym_const] = ACTIONS(4096), + [anon_sym_constexpr] = ACTIONS(4096), + [anon_sym_volatile] = ACTIONS(4096), + [anon_sym_restrict] = ACTIONS(4096), + [anon_sym___restrict__] = ACTIONS(4096), + [anon_sym__Atomic] = ACTIONS(4096), + [anon_sym__Noreturn] = ACTIONS(4096), + [anon_sym_noreturn] = ACTIONS(4096), + [anon_sym__Nonnull] = ACTIONS(4096), + [anon_sym_mutable] = ACTIONS(4096), + [anon_sym_constinit] = ACTIONS(4096), + [anon_sym_consteval] = ACTIONS(4096), + [anon_sym_alignas] = ACTIONS(4096), + [anon_sym__Alignas] = ACTIONS(4096), + [sym_primitive_type] = ACTIONS(4096), + [anon_sym_enum] = ACTIONS(4096), + [anon_sym_class] = ACTIONS(4096), + [anon_sym_struct] = ACTIONS(4096), + [anon_sym_union] = ACTIONS(4096), + [anon_sym_typename] = ACTIONS(4096), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4096), + [anon_sym_decltype] = ACTIONS(4096), + [anon_sym_explicit] = ACTIONS(4096), + [anon_sym_private] = ACTIONS(4096), + [anon_sym_template] = ACTIONS(4096), + [anon_sym_operator] = ACTIONS(4096), + [anon_sym_friend] = ACTIONS(4096), + [anon_sym_public] = ACTIONS(4096), + [anon_sym_protected] = ACTIONS(4096), + [anon_sym_static_assert] = ACTIONS(4096), + [anon_sym_LBRACK_COLON] = ACTIONS(4098), + }, + [STATE(3369)] = { + [sym_identifier] = ACTIONS(4100), + [aux_sym_preproc_def_token1] = ACTIONS(4100), + [aux_sym_preproc_if_token1] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), + [sym_preproc_directive] = ACTIONS(4100), + [anon_sym_LPAREN2] = ACTIONS(4102), + [anon_sym_TILDE] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [anon_sym_AMP_AMP] = ACTIONS(4102), + [anon_sym_AMP] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym___extension__] = ACTIONS(4100), + [anon_sym_typedef] = ACTIONS(4100), + [anon_sym_virtual] = ACTIONS(4100), + [anon_sym_extern] = ACTIONS(4100), + [anon_sym___attribute__] = ACTIONS(4100), + [anon_sym___attribute] = ACTIONS(4100), + [anon_sym_using] = ACTIONS(4100), + [anon_sym_COLON_COLON] = ACTIONS(4102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4102), + [anon_sym___declspec] = ACTIONS(4100), + [anon_sym___based] = ACTIONS(4100), + [anon_sym_RBRACE] = ACTIONS(4102), + [anon_sym_signed] = ACTIONS(4100), + [anon_sym_unsigned] = ACTIONS(4100), + [anon_sym_long] = ACTIONS(4100), + [anon_sym_short] = ACTIONS(4100), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_static] = ACTIONS(4100), + [anon_sym_register] = ACTIONS(4100), + [anon_sym_inline] = ACTIONS(4100), + [anon_sym___inline] = ACTIONS(4100), + [anon_sym___inline__] = ACTIONS(4100), + [anon_sym___forceinline] = ACTIONS(4100), + [anon_sym_thread_local] = ACTIONS(4100), + [anon_sym___thread] = ACTIONS(4100), + [anon_sym_const] = ACTIONS(4100), + [anon_sym_constexpr] = ACTIONS(4100), + [anon_sym_volatile] = ACTIONS(4100), + [anon_sym_restrict] = ACTIONS(4100), + [anon_sym___restrict__] = ACTIONS(4100), + [anon_sym__Atomic] = ACTIONS(4100), + [anon_sym__Noreturn] = ACTIONS(4100), + [anon_sym_noreturn] = ACTIONS(4100), + [anon_sym__Nonnull] = ACTIONS(4100), + [anon_sym_mutable] = ACTIONS(4100), + [anon_sym_constinit] = ACTIONS(4100), + [anon_sym_consteval] = ACTIONS(4100), + [anon_sym_alignas] = ACTIONS(4100), + [anon_sym__Alignas] = ACTIONS(4100), + [sym_primitive_type] = ACTIONS(4100), + [anon_sym_enum] = ACTIONS(4100), + [anon_sym_class] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(4100), + [anon_sym_union] = ACTIONS(4100), + [anon_sym_typename] = ACTIONS(4100), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4100), + [anon_sym_decltype] = ACTIONS(4100), + [anon_sym_explicit] = ACTIONS(4100), + [anon_sym_private] = ACTIONS(4100), + [anon_sym_template] = ACTIONS(4100), + [anon_sym_operator] = ACTIONS(4100), + [anon_sym_friend] = ACTIONS(4100), + [anon_sym_public] = ACTIONS(4100), + [anon_sym_protected] = ACTIONS(4100), + [anon_sym_static_assert] = ACTIONS(4100), + [anon_sym_LBRACK_COLON] = ACTIONS(4102), + }, + [STATE(3370)] = { + [sym_identifier] = ACTIONS(4104), + [aux_sym_preproc_def_token1] = ACTIONS(4104), + [aux_sym_preproc_if_token1] = ACTIONS(4104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4104), + [sym_preproc_directive] = ACTIONS(4104), + [anon_sym_LPAREN2] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4106), + [anon_sym_AMP_AMP] = ACTIONS(4106), + [anon_sym_AMP] = ACTIONS(4104), + [anon_sym_SEMI] = ACTIONS(4106), + [anon_sym___extension__] = ACTIONS(4104), + [anon_sym_typedef] = ACTIONS(4104), + [anon_sym_virtual] = ACTIONS(4104), + [anon_sym_extern] = ACTIONS(4104), + [anon_sym___attribute__] = ACTIONS(4104), + [anon_sym___attribute] = ACTIONS(4104), + [anon_sym_using] = ACTIONS(4104), + [anon_sym_COLON_COLON] = ACTIONS(4106), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4106), + [anon_sym___declspec] = ACTIONS(4104), + [anon_sym___based] = ACTIONS(4104), + [anon_sym_RBRACE] = ACTIONS(4106), + [anon_sym_signed] = ACTIONS(4104), + [anon_sym_unsigned] = ACTIONS(4104), + [anon_sym_long] = ACTIONS(4104), + [anon_sym_short] = ACTIONS(4104), + [anon_sym_LBRACK] = ACTIONS(4104), + [anon_sym_static] = ACTIONS(4104), + [anon_sym_register] = ACTIONS(4104), + [anon_sym_inline] = ACTIONS(4104), + [anon_sym___inline] = ACTIONS(4104), + [anon_sym___inline__] = ACTIONS(4104), + [anon_sym___forceinline] = ACTIONS(4104), + [anon_sym_thread_local] = ACTIONS(4104), + [anon_sym___thread] = ACTIONS(4104), + [anon_sym_const] = ACTIONS(4104), + [anon_sym_constexpr] = ACTIONS(4104), + [anon_sym_volatile] = ACTIONS(4104), + [anon_sym_restrict] = ACTIONS(4104), + [anon_sym___restrict__] = ACTIONS(4104), + [anon_sym__Atomic] = ACTIONS(4104), + [anon_sym__Noreturn] = ACTIONS(4104), + [anon_sym_noreturn] = ACTIONS(4104), + [anon_sym__Nonnull] = ACTIONS(4104), + [anon_sym_mutable] = ACTIONS(4104), + [anon_sym_constinit] = ACTIONS(4104), + [anon_sym_consteval] = ACTIONS(4104), + [anon_sym_alignas] = ACTIONS(4104), + [anon_sym__Alignas] = ACTIONS(4104), + [sym_primitive_type] = ACTIONS(4104), + [anon_sym_enum] = ACTIONS(4104), + [anon_sym_class] = ACTIONS(4104), + [anon_sym_struct] = ACTIONS(4104), + [anon_sym_union] = ACTIONS(4104), + [anon_sym_typename] = ACTIONS(4104), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4104), + [anon_sym_decltype] = ACTIONS(4104), + [anon_sym_explicit] = ACTIONS(4104), + [anon_sym_private] = ACTIONS(4104), + [anon_sym_template] = ACTIONS(4104), + [anon_sym_operator] = ACTIONS(4104), + [anon_sym_friend] = ACTIONS(4104), + [anon_sym_public] = ACTIONS(4104), + [anon_sym_protected] = ACTIONS(4104), + [anon_sym_static_assert] = ACTIONS(4104), + [anon_sym_LBRACK_COLON] = ACTIONS(4106), + }, + [STATE(3371)] = { + [sym_identifier] = ACTIONS(4108), + [aux_sym_preproc_def_token1] = ACTIONS(4108), + [aux_sym_preproc_if_token1] = ACTIONS(4108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4108), + [sym_preproc_directive] = ACTIONS(4108), + [anon_sym_LPAREN2] = ACTIONS(4110), + [anon_sym_TILDE] = ACTIONS(4110), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_AMP] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym___extension__] = ACTIONS(4108), + [anon_sym_typedef] = ACTIONS(4108), + [anon_sym_virtual] = ACTIONS(4108), + [anon_sym_extern] = ACTIONS(4108), + [anon_sym___attribute__] = ACTIONS(4108), + [anon_sym___attribute] = ACTIONS(4108), + [anon_sym_using] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4110), + [anon_sym___declspec] = ACTIONS(4108), + [anon_sym___based] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_signed] = ACTIONS(4108), + [anon_sym_unsigned] = ACTIONS(4108), + [anon_sym_long] = ACTIONS(4108), + [anon_sym_short] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_static] = ACTIONS(4108), + [anon_sym_register] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym___inline] = ACTIONS(4108), + [anon_sym___inline__] = ACTIONS(4108), + [anon_sym___forceinline] = ACTIONS(4108), + [anon_sym_thread_local] = ACTIONS(4108), + [anon_sym___thread] = ACTIONS(4108), + [anon_sym_const] = ACTIONS(4108), + [anon_sym_constexpr] = ACTIONS(4108), + [anon_sym_volatile] = ACTIONS(4108), + [anon_sym_restrict] = ACTIONS(4108), + [anon_sym___restrict__] = ACTIONS(4108), + [anon_sym__Atomic] = ACTIONS(4108), + [anon_sym__Noreturn] = ACTIONS(4108), + [anon_sym_noreturn] = ACTIONS(4108), + [anon_sym__Nonnull] = ACTIONS(4108), + [anon_sym_mutable] = ACTIONS(4108), + [anon_sym_constinit] = ACTIONS(4108), + [anon_sym_consteval] = ACTIONS(4108), + [anon_sym_alignas] = ACTIONS(4108), + [anon_sym__Alignas] = ACTIONS(4108), + [sym_primitive_type] = ACTIONS(4108), + [anon_sym_enum] = ACTIONS(4108), + [anon_sym_class] = ACTIONS(4108), + [anon_sym_struct] = ACTIONS(4108), + [anon_sym_union] = ACTIONS(4108), + [anon_sym_typename] = ACTIONS(4108), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4108), + [anon_sym_decltype] = ACTIONS(4108), + [anon_sym_explicit] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_friend] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_static_assert] = ACTIONS(4108), + [anon_sym_LBRACK_COLON] = ACTIONS(4110), + }, + [STATE(3372)] = { + [sym_identifier] = ACTIONS(3604), + [aux_sym_preproc_def_token1] = ACTIONS(3604), + [aux_sym_preproc_if_token1] = ACTIONS(3604), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3604), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3604), + [sym_preproc_directive] = ACTIONS(3604), + [anon_sym_LPAREN2] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3606), + [anon_sym_STAR] = ACTIONS(3606), + [anon_sym_AMP_AMP] = ACTIONS(3606), + [anon_sym_AMP] = ACTIONS(3604), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym___extension__] = ACTIONS(3604), + [anon_sym_typedef] = ACTIONS(3604), + [anon_sym_virtual] = ACTIONS(3604), + [anon_sym_extern] = ACTIONS(3604), + [anon_sym___attribute__] = ACTIONS(3604), + [anon_sym___attribute] = ACTIONS(3604), + [anon_sym_using] = ACTIONS(3604), + [anon_sym_COLON_COLON] = ACTIONS(3606), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3606), + [anon_sym___declspec] = ACTIONS(3604), + [anon_sym___based] = ACTIONS(3604), + [anon_sym_RBRACE] = ACTIONS(3606), + [anon_sym_signed] = ACTIONS(3604), + [anon_sym_unsigned] = ACTIONS(3604), + [anon_sym_long] = ACTIONS(3604), + [anon_sym_short] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3604), + [anon_sym_static] = ACTIONS(3604), + [anon_sym_register] = ACTIONS(3604), + [anon_sym_inline] = ACTIONS(3604), + [anon_sym___inline] = ACTIONS(3604), + [anon_sym___inline__] = ACTIONS(3604), + [anon_sym___forceinline] = ACTIONS(3604), + [anon_sym_thread_local] = ACTIONS(3604), + [anon_sym___thread] = ACTIONS(3604), + [anon_sym_const] = ACTIONS(3604), + [anon_sym_constexpr] = ACTIONS(3604), + [anon_sym_volatile] = ACTIONS(3604), + [anon_sym_restrict] = ACTIONS(3604), + [anon_sym___restrict__] = ACTIONS(3604), + [anon_sym__Atomic] = ACTIONS(3604), + [anon_sym__Noreturn] = ACTIONS(3604), + [anon_sym_noreturn] = ACTIONS(3604), + [anon_sym__Nonnull] = ACTIONS(3604), + [anon_sym_mutable] = ACTIONS(3604), + [anon_sym_constinit] = ACTIONS(3604), + [anon_sym_consteval] = ACTIONS(3604), + [anon_sym_alignas] = ACTIONS(3604), + [anon_sym__Alignas] = ACTIONS(3604), + [sym_primitive_type] = ACTIONS(3604), + [anon_sym_enum] = ACTIONS(3604), + [anon_sym_class] = ACTIONS(3604), + [anon_sym_struct] = ACTIONS(3604), + [anon_sym_union] = ACTIONS(3604), + [anon_sym_typename] = ACTIONS(3604), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3604), + [anon_sym_decltype] = ACTIONS(3604), + [anon_sym_explicit] = ACTIONS(3604), + [anon_sym_private] = ACTIONS(3604), + [anon_sym_template] = ACTIONS(3604), + [anon_sym_operator] = ACTIONS(3604), + [anon_sym_friend] = ACTIONS(3604), + [anon_sym_public] = ACTIONS(3604), + [anon_sym_protected] = ACTIONS(3604), + [anon_sym_static_assert] = ACTIONS(3604), + [anon_sym_LBRACK_COLON] = ACTIONS(3606), + }, + [STATE(3373)] = { + [sym_identifier] = ACTIONS(7158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7160), + [anon_sym_COMMA] = ACTIONS(7160), + [anon_sym_RPAREN] = ACTIONS(7160), + [aux_sym_preproc_if_token2] = ACTIONS(7160), + [aux_sym_preproc_else_token1] = ACTIONS(7160), + [aux_sym_preproc_elif_token1] = ACTIONS(7158), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7160), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7160), + [anon_sym_LPAREN2] = ACTIONS(7160), + [anon_sym_DASH] = ACTIONS(7158), + [anon_sym_PLUS] = ACTIONS(7158), + [anon_sym_STAR] = ACTIONS(7160), + [anon_sym_SLASH] = ACTIONS(7158), + [anon_sym_PERCENT] = ACTIONS(7160), + [anon_sym_PIPE_PIPE] = ACTIONS(7160), + [anon_sym_AMP_AMP] = ACTIONS(7160), + [anon_sym_PIPE] = ACTIONS(7158), + [anon_sym_CARET] = ACTIONS(7160), + [anon_sym_AMP] = ACTIONS(7158), + [anon_sym_EQ_EQ] = ACTIONS(7160), + [anon_sym_BANG_EQ] = ACTIONS(7160), + [anon_sym_GT] = ACTIONS(7158), + [anon_sym_GT_EQ] = ACTIONS(7160), + [anon_sym_LT_EQ] = ACTIONS(7158), + [anon_sym_LT] = ACTIONS(7158), + [anon_sym_LT_LT] = ACTIONS(7160), + [anon_sym_GT_GT] = ACTIONS(7160), + [anon_sym_SEMI] = ACTIONS(7160), + [anon_sym___extension__] = ACTIONS(7158), + [anon_sym___attribute__] = ACTIONS(7158), + [anon_sym___attribute] = ACTIONS(7158), + [anon_sym_COLON] = ACTIONS(7158), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7160), + [anon_sym_LBRACE] = ACTIONS(7160), + [anon_sym_RBRACE] = ACTIONS(7160), + [anon_sym_LBRACK] = ACTIONS(7160), + [anon_sym_const] = ACTIONS(7158), + [anon_sym_constexpr] = ACTIONS(7158), + [anon_sym_volatile] = ACTIONS(7158), + [anon_sym_restrict] = ACTIONS(7158), + [anon_sym___restrict__] = ACTIONS(7158), + [anon_sym__Atomic] = ACTIONS(7158), + [anon_sym__Noreturn] = ACTIONS(7158), + [anon_sym_noreturn] = ACTIONS(7158), + [anon_sym__Nonnull] = ACTIONS(7158), + [anon_sym_mutable] = ACTIONS(7158), + [anon_sym_constinit] = ACTIONS(7158), + [anon_sym_consteval] = ACTIONS(7158), + [anon_sym_alignas] = ACTIONS(7158), + [anon_sym__Alignas] = ACTIONS(7158), + [anon_sym_QMARK] = ACTIONS(7160), + [anon_sym_LT_EQ_GT] = ACTIONS(7160), + [anon_sym_or] = ACTIONS(7158), + [anon_sym_and] = ACTIONS(7158), + [anon_sym_bitor] = ACTIONS(7158), + [anon_sym_xor] = ACTIONS(7158), + [anon_sym_bitand] = ACTIONS(7158), + [anon_sym_not_eq] = ACTIONS(7158), + [anon_sym_DASH_DASH] = ACTIONS(7160), + [anon_sym_PLUS_PLUS] = ACTIONS(7160), + [anon_sym_DOT] = ACTIONS(7158), + [anon_sym_DOT_STAR] = ACTIONS(7160), + [anon_sym_DASH_GT] = ACTIONS(7160), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7158), + [anon_sym_override] = ACTIONS(7158), + [anon_sym_requires] = ACTIONS(7158), + [anon_sym_COLON_RBRACK] = ACTIONS(7160), + }, + [STATE(3374)] = { + [sym_identifier] = ACTIONS(4112), + [aux_sym_preproc_def_token1] = ACTIONS(4112), + [aux_sym_preproc_if_token1] = ACTIONS(4112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4112), + [sym_preproc_directive] = ACTIONS(4112), + [anon_sym_LPAREN2] = ACTIONS(4114), + [anon_sym_TILDE] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [anon_sym_AMP_AMP] = ACTIONS(4114), + [anon_sym_AMP] = ACTIONS(4112), + [anon_sym_SEMI] = ACTIONS(4114), + [anon_sym___extension__] = ACTIONS(4112), + [anon_sym_typedef] = ACTIONS(4112), + [anon_sym_virtual] = ACTIONS(4112), + [anon_sym_extern] = ACTIONS(4112), + [anon_sym___attribute__] = ACTIONS(4112), + [anon_sym___attribute] = ACTIONS(4112), + [anon_sym_using] = ACTIONS(4112), + [anon_sym_COLON_COLON] = ACTIONS(4114), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4114), + [anon_sym___declspec] = ACTIONS(4112), + [anon_sym___based] = ACTIONS(4112), + [anon_sym_RBRACE] = ACTIONS(4114), + [anon_sym_signed] = ACTIONS(4112), + [anon_sym_unsigned] = ACTIONS(4112), + [anon_sym_long] = ACTIONS(4112), + [anon_sym_short] = ACTIONS(4112), + [anon_sym_LBRACK] = ACTIONS(4112), + [anon_sym_static] = ACTIONS(4112), + [anon_sym_register] = ACTIONS(4112), + [anon_sym_inline] = ACTIONS(4112), + [anon_sym___inline] = ACTIONS(4112), + [anon_sym___inline__] = ACTIONS(4112), + [anon_sym___forceinline] = ACTIONS(4112), + [anon_sym_thread_local] = ACTIONS(4112), + [anon_sym___thread] = ACTIONS(4112), + [anon_sym_const] = ACTIONS(4112), + [anon_sym_constexpr] = ACTIONS(4112), + [anon_sym_volatile] = ACTIONS(4112), + [anon_sym_restrict] = ACTIONS(4112), + [anon_sym___restrict__] = ACTIONS(4112), + [anon_sym__Atomic] = ACTIONS(4112), + [anon_sym__Noreturn] = ACTIONS(4112), + [anon_sym_noreturn] = ACTIONS(4112), + [anon_sym__Nonnull] = ACTIONS(4112), + [anon_sym_mutable] = ACTIONS(4112), + [anon_sym_constinit] = ACTIONS(4112), + [anon_sym_consteval] = ACTIONS(4112), + [anon_sym_alignas] = ACTIONS(4112), + [anon_sym__Alignas] = ACTIONS(4112), + [sym_primitive_type] = ACTIONS(4112), + [anon_sym_enum] = ACTIONS(4112), + [anon_sym_class] = ACTIONS(4112), + [anon_sym_struct] = ACTIONS(4112), + [anon_sym_union] = ACTIONS(4112), + [anon_sym_typename] = ACTIONS(4112), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4112), + [anon_sym_decltype] = ACTIONS(4112), + [anon_sym_explicit] = ACTIONS(4112), + [anon_sym_private] = ACTIONS(4112), + [anon_sym_template] = ACTIONS(4112), + [anon_sym_operator] = ACTIONS(4112), + [anon_sym_friend] = ACTIONS(4112), + [anon_sym_public] = ACTIONS(4112), + [anon_sym_protected] = ACTIONS(4112), + [anon_sym_static_assert] = ACTIONS(4112), + [anon_sym_LBRACK_COLON] = ACTIONS(4114), + }, + [STATE(3375)] = { + [sym_type_qualifier] = STATE(3377), + [sym_alignas_qualifier] = STATE(2726), + [aux_sym__type_definition_type_repeat1] = STATE(3377), + [aux_sym_sized_type_specifier_repeat1] = STATE(3753), + [sym_identifier] = ACTIONS(8873), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), + [anon_sym_COMMA] = ACTIONS(7249), + [aux_sym_preproc_if_token2] = ACTIONS(7249), + [aux_sym_preproc_else_token1] = ACTIONS(7249), + [aux_sym_preproc_elif_token1] = ACTIONS(7251), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7249), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7249), + [anon_sym_LPAREN2] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7251), + [anon_sym_PLUS] = ACTIONS(7251), + [anon_sym_STAR] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7251), + [anon_sym_PERCENT] = ACTIONS(7249), + [anon_sym_PIPE_PIPE] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7249), + [anon_sym_PIPE] = ACTIONS(7251), + [anon_sym_CARET] = ACTIONS(7249), + [anon_sym_AMP] = ACTIONS(7251), + [anon_sym_EQ_EQ] = ACTIONS(7249), + [anon_sym_BANG_EQ] = ACTIONS(7249), + [anon_sym_GT] = ACTIONS(7251), + [anon_sym_GT_EQ] = ACTIONS(7249), + [anon_sym_LT_EQ] = ACTIONS(7251), + [anon_sym_LT] = ACTIONS(7251), + [anon_sym_LT_LT] = ACTIONS(7249), + [anon_sym_GT_GT] = ACTIONS(7249), + [anon_sym___extension__] = ACTIONS(8123), + [anon_sym___attribute__] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7251), + [anon_sym_LBRACE] = ACTIONS(7249), + [anon_sym_signed] = ACTIONS(9127), + [anon_sym_unsigned] = ACTIONS(9127), + [anon_sym_long] = ACTIONS(9127), + [anon_sym_short] = ACTIONS(9127), + [anon_sym_LBRACK] = ACTIONS(7249), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8123), + [anon_sym_volatile] = ACTIONS(8123), + [anon_sym_restrict] = ACTIONS(8123), + [anon_sym___restrict__] = ACTIONS(8123), + [anon_sym__Atomic] = ACTIONS(8123), + [anon_sym__Noreturn] = ACTIONS(8123), + [anon_sym_noreturn] = ACTIONS(8123), + [anon_sym__Nonnull] = ACTIONS(8123), + [anon_sym_mutable] = ACTIONS(8123), + [anon_sym_constinit] = ACTIONS(8123), + [anon_sym_consteval] = ACTIONS(8123), + [anon_sym_alignas] = ACTIONS(9051), + [anon_sym__Alignas] = ACTIONS(9051), + [sym_primitive_type] = ACTIONS(8878), + [anon_sym_QMARK] = ACTIONS(7249), + [anon_sym_LT_EQ_GT] = ACTIONS(7249), + [anon_sym_or] = ACTIONS(7251), + [anon_sym_and] = ACTIONS(7251), + [anon_sym_bitor] = ACTIONS(7251), + [anon_sym_xor] = ACTIONS(7251), + [anon_sym_bitand] = ACTIONS(7251), + [anon_sym_not_eq] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7249), + [anon_sym_PLUS_PLUS] = ACTIONS(7249), + [anon_sym_DOT] = ACTIONS(7251), + [anon_sym_DOT_STAR] = ACTIONS(7249), + [anon_sym_DASH_GT] = ACTIONS(7249), + [sym_comment] = ACTIONS(3), + }, + [STATE(3376)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6596), + [anon_sym_RPAREN] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6603), + [anon_sym_PLUS] = ACTIONS(6603), + [anon_sym_STAR] = ACTIONS(6605), + [anon_sym_SLASH] = ACTIONS(6603), + [anon_sym_PERCENT] = ACTIONS(6603), + [anon_sym_PIPE_PIPE] = ACTIONS(6596), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6603), + [anon_sym_CARET] = ACTIONS(6603), + [anon_sym_AMP] = ACTIONS(6605), + [anon_sym_EQ_EQ] = ACTIONS(6596), + [anon_sym_BANG_EQ] = ACTIONS(6596), + [anon_sym_GT] = ACTIONS(6603), + [anon_sym_GT_EQ] = ACTIONS(6596), + [anon_sym_LT_EQ] = ACTIONS(6603), + [anon_sym_LT] = ACTIONS(6603), + [anon_sym_LT_LT] = ACTIONS(6603), + [anon_sym_GT_GT] = ACTIONS(6603), + [anon_sym___extension__] = ACTIONS(6601), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_LBRACK] = ACTIONS(6598), + [anon_sym_EQ] = ACTIONS(6603), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6601), + [anon_sym_volatile] = ACTIONS(6601), + [anon_sym_restrict] = ACTIONS(6601), + [anon_sym___restrict__] = ACTIONS(6601), + [anon_sym__Atomic] = ACTIONS(6601), + [anon_sym__Noreturn] = ACTIONS(6601), + [anon_sym_noreturn] = ACTIONS(6601), + [anon_sym__Nonnull] = ACTIONS(6601), + [anon_sym_mutable] = ACTIONS(6601), + [anon_sym_constinit] = ACTIONS(6601), + [anon_sym_consteval] = ACTIONS(6601), + [anon_sym_alignas] = ACTIONS(6601), + [anon_sym__Alignas] = ACTIONS(6601), + [anon_sym_QMARK] = ACTIONS(6596), + [anon_sym_STAR_EQ] = ACTIONS(6596), + [anon_sym_SLASH_EQ] = ACTIONS(6596), + [anon_sym_PERCENT_EQ] = ACTIONS(6596), + [anon_sym_PLUS_EQ] = ACTIONS(6596), + [anon_sym_DASH_EQ] = ACTIONS(6596), + [anon_sym_LT_LT_EQ] = ACTIONS(6596), + [anon_sym_GT_GT_EQ] = ACTIONS(6596), + [anon_sym_AMP_EQ] = ACTIONS(6596), + [anon_sym_CARET_EQ] = ACTIONS(6596), + [anon_sym_PIPE_EQ] = ACTIONS(6596), + [anon_sym_and_eq] = ACTIONS(6596), + [anon_sym_or_eq] = ACTIONS(6596), + [anon_sym_xor_eq] = ACTIONS(6596), + [anon_sym_LT_EQ_GT] = ACTIONS(6596), + [anon_sym_or] = ACTIONS(6603), + [anon_sym_and] = ACTIONS(6603), + [anon_sym_bitor] = ACTIONS(6596), + [anon_sym_xor] = ACTIONS(6603), + [anon_sym_bitand] = ACTIONS(6596), + [anon_sym_not_eq] = ACTIONS(6596), + [anon_sym_DASH_DASH] = ACTIONS(6596), + [anon_sym_PLUS_PLUS] = ACTIONS(6596), + [anon_sym_DOT] = ACTIONS(6603), + [anon_sym_DOT_STAR] = ACTIONS(6596), + [anon_sym_DASH_GT] = ACTIONS(6596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6601), + [anon_sym_decltype] = ACTIONS(6601), + }, + [STATE(3377)] = { + [sym_type_qualifier] = STATE(2488), + [sym_alignas_qualifier] = STATE(2726), + [aux_sym__type_definition_type_repeat1] = STATE(2488), + [aux_sym_sized_type_specifier_repeat1] = STATE(3303), + [sym_identifier] = ACTIONS(8861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), + [anon_sym_COMMA] = ACTIONS(7205), + [aux_sym_preproc_if_token2] = ACTIONS(7205), + [aux_sym_preproc_else_token1] = ACTIONS(7205), + [aux_sym_preproc_elif_token1] = ACTIONS(7207), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7205), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7205), + [anon_sym_LPAREN2] = ACTIONS(7205), + [anon_sym_DASH] = ACTIONS(7207), + [anon_sym_PLUS] = ACTIONS(7207), + [anon_sym_STAR] = ACTIONS(7205), + [anon_sym_SLASH] = ACTIONS(7207), + [anon_sym_PERCENT] = ACTIONS(7205), + [anon_sym_PIPE_PIPE] = ACTIONS(7205), + [anon_sym_AMP_AMP] = ACTIONS(7205), + [anon_sym_PIPE] = ACTIONS(7207), + [anon_sym_CARET] = ACTIONS(7205), + [anon_sym_AMP] = ACTIONS(7207), + [anon_sym_EQ_EQ] = ACTIONS(7205), + [anon_sym_BANG_EQ] = ACTIONS(7205), + [anon_sym_GT] = ACTIONS(7207), + [anon_sym_GT_EQ] = ACTIONS(7205), + [anon_sym_LT_EQ] = ACTIONS(7207), + [anon_sym_LT] = ACTIONS(7207), + [anon_sym_LT_LT] = ACTIONS(7205), + [anon_sym_GT_GT] = ACTIONS(7205), + [anon_sym___extension__] = ACTIONS(8123), + [anon_sym___attribute__] = ACTIONS(7207), + [anon_sym___attribute] = ACTIONS(7207), + [anon_sym_LBRACE] = ACTIONS(7205), + [anon_sym_signed] = ACTIONS(8864), + [anon_sym_unsigned] = ACTIONS(8864), + [anon_sym_long] = ACTIONS(8864), + [anon_sym_short] = ACTIONS(8864), + [anon_sym_LBRACK] = ACTIONS(7205), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8123), + [anon_sym_volatile] = ACTIONS(8123), + [anon_sym_restrict] = ACTIONS(8123), + [anon_sym___restrict__] = ACTIONS(8123), + [anon_sym__Atomic] = ACTIONS(8123), + [anon_sym__Noreturn] = ACTIONS(8123), + [anon_sym_noreturn] = ACTIONS(8123), + [anon_sym__Nonnull] = ACTIONS(8123), + [anon_sym_mutable] = ACTIONS(8123), + [anon_sym_constinit] = ACTIONS(8123), + [anon_sym_consteval] = ACTIONS(8123), + [anon_sym_alignas] = ACTIONS(9051), + [anon_sym__Alignas] = ACTIONS(9051), + [sym_primitive_type] = ACTIONS(8866), + [anon_sym_QMARK] = ACTIONS(7205), + [anon_sym_LT_EQ_GT] = ACTIONS(7205), + [anon_sym_or] = ACTIONS(7207), + [anon_sym_and] = ACTIONS(7207), + [anon_sym_bitor] = ACTIONS(7207), + [anon_sym_xor] = ACTIONS(7207), + [anon_sym_bitand] = ACTIONS(7207), + [anon_sym_not_eq] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7205), + [anon_sym_PLUS_PLUS] = ACTIONS(7205), + [anon_sym_DOT] = ACTIONS(7207), + [anon_sym_DOT_STAR] = ACTIONS(7205), + [anon_sym_DASH_GT] = ACTIONS(7205), + [sym_comment] = ACTIONS(3), + }, + [STATE(3378)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2607), + [sym_identifier] = ACTIONS(7528), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), + [anon_sym_COMMA] = ACTIONS(7525), + [aux_sym_preproc_if_token2] = ACTIONS(7525), + [aux_sym_preproc_else_token1] = ACTIONS(7525), + [aux_sym_preproc_elif_token1] = ACTIONS(7528), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7525), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7525), + [anon_sym_LPAREN2] = ACTIONS(7525), + [anon_sym_DASH] = ACTIONS(7528), + [anon_sym_PLUS] = ACTIONS(7528), + [anon_sym_STAR] = ACTIONS(7525), + [anon_sym_SLASH] = ACTIONS(7528), + [anon_sym_PERCENT] = ACTIONS(7525), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_AMP_AMP] = ACTIONS(7525), + [anon_sym_PIPE] = ACTIONS(7528), + [anon_sym_CARET] = ACTIONS(7525), + [anon_sym_AMP] = ACTIONS(7528), + [anon_sym_EQ_EQ] = ACTIONS(7525), + [anon_sym_BANG_EQ] = ACTIONS(7525), + [anon_sym_GT] = ACTIONS(7528), + [anon_sym_GT_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7528), + [anon_sym_LT] = ACTIONS(7528), + [anon_sym_LT_LT] = ACTIONS(7525), + [anon_sym_GT_GT] = ACTIONS(7525), + [anon_sym___extension__] = ACTIONS(7528), + [anon_sym___attribute__] = ACTIONS(7528), + [anon_sym___attribute] = ACTIONS(7528), + [anon_sym_LBRACE] = ACTIONS(7525), + [anon_sym_signed] = ACTIONS(8505), + [anon_sym_unsigned] = ACTIONS(8505), + [anon_sym_long] = ACTIONS(8505), + [anon_sym_short] = ACTIONS(8505), + [anon_sym_LBRACK] = ACTIONS(7525), + [anon_sym_const] = ACTIONS(7528), + [anon_sym_constexpr] = ACTIONS(7528), + [anon_sym_volatile] = ACTIONS(7528), + [anon_sym_restrict] = ACTIONS(7528), + [anon_sym___restrict__] = ACTIONS(7528), + [anon_sym__Atomic] = ACTIONS(7528), + [anon_sym__Noreturn] = ACTIONS(7528), + [anon_sym_noreturn] = ACTIONS(7528), + [anon_sym__Nonnull] = ACTIONS(7528), + [anon_sym_mutable] = ACTIONS(7528), + [anon_sym_constinit] = ACTIONS(7528), + [anon_sym_consteval] = ACTIONS(7528), + [anon_sym_alignas] = ACTIONS(7528), + [anon_sym__Alignas] = ACTIONS(7528), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7525), + [anon_sym_LT_EQ_GT] = ACTIONS(7525), + [anon_sym_or] = ACTIONS(7528), + [anon_sym_and] = ACTIONS(7528), + [anon_sym_bitor] = ACTIONS(7528), + [anon_sym_xor] = ACTIONS(7528), + [anon_sym_bitand] = ACTIONS(7528), + [anon_sym_not_eq] = ACTIONS(7528), + [anon_sym_DASH_DASH] = ACTIONS(7525), + [anon_sym_PLUS_PLUS] = ACTIONS(7525), + [anon_sym_DOT] = ACTIONS(7528), + [anon_sym_DOT_STAR] = ACTIONS(7525), + [anon_sym_DASH_GT] = ACTIONS(7525), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7528), + [anon_sym_override] = ACTIONS(7528), + [anon_sym_requires] = ACTIONS(7528), + }, + [STATE(3379)] = { + [sym_identifier] = ACTIONS(9129), + [anon_sym_LPAREN2] = ACTIONS(9131), + [anon_sym_TILDE] = ACTIONS(9131), + [anon_sym_STAR] = ACTIONS(9131), + [anon_sym_AMP_AMP] = ACTIONS(9131), + [anon_sym_AMP] = ACTIONS(9129), + [anon_sym___extension__] = ACTIONS(9129), + [anon_sym_virtual] = ACTIONS(9129), + [anon_sym_extern] = ACTIONS(9129), + [anon_sym___attribute__] = ACTIONS(9129), + [anon_sym___attribute] = ACTIONS(9129), + [anon_sym_using] = ACTIONS(9129), + [anon_sym_COLON_COLON] = ACTIONS(9131), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9131), + [anon_sym___declspec] = ACTIONS(9129), + [anon_sym___based] = ACTIONS(9129), + [anon_sym___cdecl] = ACTIONS(9129), + [anon_sym___clrcall] = ACTIONS(9129), + [anon_sym___stdcall] = ACTIONS(9129), + [anon_sym___fastcall] = ACTIONS(9129), + [anon_sym___thiscall] = ACTIONS(9129), + [anon_sym___vectorcall] = ACTIONS(9129), + [anon_sym_LBRACE] = ACTIONS(9131), + [anon_sym_signed] = ACTIONS(9129), + [anon_sym_unsigned] = ACTIONS(9129), + [anon_sym_long] = ACTIONS(9129), + [anon_sym_short] = ACTIONS(9129), + [anon_sym_LBRACK] = ACTIONS(9129), + [anon_sym_static] = ACTIONS(9129), + [anon_sym_register] = ACTIONS(9129), + [anon_sym_inline] = ACTIONS(9129), + [anon_sym___inline] = ACTIONS(9129), + [anon_sym___inline__] = ACTIONS(9129), + [anon_sym___forceinline] = ACTIONS(9129), + [anon_sym_thread_local] = ACTIONS(9129), + [anon_sym___thread] = ACTIONS(9129), + [anon_sym_const] = ACTIONS(9129), + [anon_sym_constexpr] = ACTIONS(9129), + [anon_sym_volatile] = ACTIONS(9129), + [anon_sym_restrict] = ACTIONS(9129), + [anon_sym___restrict__] = ACTIONS(9129), + [anon_sym__Atomic] = ACTIONS(9129), + [anon_sym__Noreturn] = ACTIONS(9129), + [anon_sym_noreturn] = ACTIONS(9129), + [anon_sym__Nonnull] = ACTIONS(9129), + [anon_sym_mutable] = ACTIONS(9129), + [anon_sym_constinit] = ACTIONS(9129), + [anon_sym_consteval] = ACTIONS(9129), + [anon_sym_alignas] = ACTIONS(9129), + [anon_sym__Alignas] = ACTIONS(9129), + [sym_primitive_type] = ACTIONS(9129), + [anon_sym_enum] = ACTIONS(9129), + [anon_sym_class] = ACTIONS(9129), + [anon_sym_struct] = ACTIONS(9129), + [anon_sym_union] = ACTIONS(9129), + [anon_sym_typename] = ACTIONS(9129), + [anon_sym_DASH_GT] = ACTIONS(9131), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9129), + [anon_sym_decltype] = ACTIONS(9129), + [anon_sym_explicit] = ACTIONS(9129), + [anon_sym_template] = ACTIONS(9129), + [anon_sym_operator] = ACTIONS(9129), + [anon_sym_friend] = ACTIONS(9129), + [anon_sym_noexcept] = ACTIONS(9129), + [anon_sym_throw] = ACTIONS(9129), + [anon_sym_concept] = ACTIONS(9129), + [anon_sym_requires] = ACTIONS(9129), + [anon_sym_LBRACK_COLON] = ACTIONS(9131), + }, + [STATE(3380)] = { + [sym_identifier] = ACTIONS(4152), + [aux_sym_preproc_def_token1] = ACTIONS(4152), + [aux_sym_preproc_if_token1] = ACTIONS(4152), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4152), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4152), + [sym_preproc_directive] = ACTIONS(4152), + [anon_sym_LPAREN2] = ACTIONS(4154), + [anon_sym_TILDE] = ACTIONS(4154), + [anon_sym_STAR] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym___extension__] = ACTIONS(4152), + [anon_sym_typedef] = ACTIONS(4152), + [anon_sym_virtual] = ACTIONS(4152), + [anon_sym_extern] = ACTIONS(4152), + [anon_sym___attribute__] = ACTIONS(4152), + [anon_sym___attribute] = ACTIONS(4152), + [anon_sym_using] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4154), + [anon_sym___declspec] = ACTIONS(4152), + [anon_sym___based] = ACTIONS(4152), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_signed] = ACTIONS(4152), + [anon_sym_unsigned] = ACTIONS(4152), + [anon_sym_long] = ACTIONS(4152), + [anon_sym_short] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_static] = ACTIONS(4152), + [anon_sym_register] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym___inline] = ACTIONS(4152), + [anon_sym___inline__] = ACTIONS(4152), + [anon_sym___forceinline] = ACTIONS(4152), + [anon_sym_thread_local] = ACTIONS(4152), + [anon_sym___thread] = ACTIONS(4152), + [anon_sym_const] = ACTIONS(4152), + [anon_sym_constexpr] = ACTIONS(4152), + [anon_sym_volatile] = ACTIONS(4152), + [anon_sym_restrict] = ACTIONS(4152), + [anon_sym___restrict__] = ACTIONS(4152), + [anon_sym__Atomic] = ACTIONS(4152), + [anon_sym__Noreturn] = ACTIONS(4152), + [anon_sym_noreturn] = ACTIONS(4152), + [anon_sym__Nonnull] = ACTIONS(4152), + [anon_sym_mutable] = ACTIONS(4152), + [anon_sym_constinit] = ACTIONS(4152), + [anon_sym_consteval] = ACTIONS(4152), + [anon_sym_alignas] = ACTIONS(4152), + [anon_sym__Alignas] = ACTIONS(4152), + [sym_primitive_type] = ACTIONS(4152), + [anon_sym_enum] = ACTIONS(4152), + [anon_sym_class] = ACTIONS(4152), + [anon_sym_struct] = ACTIONS(4152), + [anon_sym_union] = ACTIONS(4152), + [anon_sym_typename] = ACTIONS(4152), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4152), + [anon_sym_decltype] = ACTIONS(4152), + [anon_sym_explicit] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_template] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_friend] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_static_assert] = ACTIONS(4152), + [anon_sym_LBRACK_COLON] = ACTIONS(4154), + }, + [STATE(3381)] = { + [sym_template_argument_list] = STATE(2721), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7087), + [anon_sym_COMMA] = ACTIONS(7087), + [anon_sym_LPAREN2] = ACTIONS(7087), + [anon_sym_DASH] = ACTIONS(7094), + [anon_sym_PLUS] = ACTIONS(7094), + [anon_sym_STAR] = ACTIONS(7094), + [anon_sym_SLASH] = ACTIONS(7094), + [anon_sym_PERCENT] = ACTIONS(7094), + [anon_sym_PIPE_PIPE] = ACTIONS(7087), + [anon_sym_AMP_AMP] = ACTIONS(7087), + [anon_sym_PIPE] = ACTIONS(7094), + [anon_sym_CARET] = ACTIONS(7094), + [anon_sym_AMP] = ACTIONS(7094), + [anon_sym_EQ_EQ] = ACTIONS(7087), + [anon_sym_BANG_EQ] = ACTIONS(7087), + [anon_sym_GT] = ACTIONS(7094), + [anon_sym_GT_EQ] = ACTIONS(7094), + [anon_sym_LT_EQ] = ACTIONS(7094), + [anon_sym_LT] = ACTIONS(8032), + [anon_sym_LT_LT] = ACTIONS(7094), + [anon_sym_GT_GT] = ACTIONS(7094), + [anon_sym___extension__] = ACTIONS(7090), + [anon_sym_COLON_COLON] = ACTIONS(7087), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_LBRACK] = ACTIONS(7087), + [anon_sym_EQ] = ACTIONS(7094), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7090), + [anon_sym_volatile] = ACTIONS(7090), + [anon_sym_restrict] = ACTIONS(7090), + [anon_sym___restrict__] = ACTIONS(7090), + [anon_sym__Atomic] = ACTIONS(7090), + [anon_sym__Noreturn] = ACTIONS(7090), + [anon_sym_noreturn] = ACTIONS(7090), + [anon_sym__Nonnull] = ACTIONS(7090), + [anon_sym_mutable] = ACTIONS(7090), + [anon_sym_constinit] = ACTIONS(7090), + [anon_sym_consteval] = ACTIONS(7090), + [anon_sym_alignas] = ACTIONS(7090), + [anon_sym__Alignas] = ACTIONS(7090), + [anon_sym_QMARK] = ACTIONS(7087), + [anon_sym_STAR_EQ] = ACTIONS(7087), + [anon_sym_SLASH_EQ] = ACTIONS(7087), + [anon_sym_PERCENT_EQ] = ACTIONS(7087), + [anon_sym_PLUS_EQ] = ACTIONS(7087), + [anon_sym_DASH_EQ] = ACTIONS(7087), + [anon_sym_LT_LT_EQ] = ACTIONS(7087), + [anon_sym_GT_GT_EQ] = ACTIONS(7094), + [anon_sym_AMP_EQ] = ACTIONS(7087), + [anon_sym_CARET_EQ] = ACTIONS(7087), + [anon_sym_PIPE_EQ] = ACTIONS(7087), + [anon_sym_and_eq] = ACTIONS(7087), + [anon_sym_or_eq] = ACTIONS(7087), + [anon_sym_xor_eq] = ACTIONS(7087), + [anon_sym_LT_EQ_GT] = ACTIONS(7087), + [anon_sym_or] = ACTIONS(7094), + [anon_sym_and] = ACTIONS(7094), + [anon_sym_bitor] = ACTIONS(7087), + [anon_sym_xor] = ACTIONS(7094), + [anon_sym_bitand] = ACTIONS(7087), + [anon_sym_not_eq] = ACTIONS(7087), + [anon_sym_DASH_DASH] = ACTIONS(7087), + [anon_sym_PLUS_PLUS] = ACTIONS(7087), + [anon_sym_DOT] = ACTIONS(7094), + [anon_sym_DOT_STAR] = ACTIONS(7087), + [anon_sym_DASH_GT] = ACTIONS(7087), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7087), + }, + [STATE(3382)] = { + [sym_attribute_specifier] = STATE(4381), + [sym_attribute_declaration] = STATE(4895), + [sym_gnu_asm_expression] = STATE(9115), + [sym_virtual_specifier] = STATE(5261), + [sym__function_attributes_end] = STATE(4576), + [sym__function_postfix] = STATE(5696), + [sym_trailing_return_type] = STATE(4740), + [sym_requires_clause] = STATE(5696), + [aux_sym_type_definition_repeat1] = STATE(4381), + [aux_sym_attributed_declarator_repeat1] = STATE(4895), + [aux_sym__function_postfix_repeat1] = STATE(5261), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym___attribute__] = ACTIONS(6764), + [anon_sym___attribute] = ACTIONS(6766), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7791), + [anon_sym_and] = ACTIONS(7791), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7791), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(8514), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8517), + [anon_sym_override] = ACTIONS(8517), + [anon_sym_requires] = ACTIONS(8520), + [anon_sym_DASH_GT_STAR] = ACTIONS(7791), + }, + [STATE(3383)] = { + [sym_attribute_specifier] = STATE(4381), + [sym_attribute_declaration] = STATE(4895), + [sym_gnu_asm_expression] = STATE(9115), + [sym_virtual_specifier] = STATE(5261), + [sym__function_attributes_end] = STATE(4591), + [sym__function_postfix] = STATE(5681), + [sym_trailing_return_type] = STATE(4660), + [sym_requires_clause] = STATE(5681), + [aux_sym_type_definition_repeat1] = STATE(4381), + [aux_sym_attributed_declarator_repeat1] = STATE(4895), + [aux_sym__function_postfix_repeat1] = STATE(5261), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_RPAREN] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym___attribute__] = ACTIONS(6764), + [anon_sym___attribute] = ACTIONS(6766), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7966), + [anon_sym_and] = ACTIONS(7966), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7966), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(8595), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8633), + [anon_sym_override] = ACTIONS(8633), + [anon_sym_requires] = ACTIONS(8636), + [anon_sym_DASH_GT_STAR] = ACTIONS(7966), + }, + [STATE(3384)] = { + [sym_attribute_specifier] = STATE(4381), + [sym_attribute_declaration] = STATE(4895), + [sym_gnu_asm_expression] = STATE(9115), + [sym_virtual_specifier] = STATE(5261), + [sym__function_attributes_end] = STATE(4595), + [sym__function_postfix] = STATE(5550), + [sym_trailing_return_type] = STATE(4665), + [sym_requires_clause] = STATE(5550), + [aux_sym_type_definition_repeat1] = STATE(4381), + [aux_sym_attributed_declarator_repeat1] = STATE(4895), + [aux_sym__function_postfix_repeat1] = STATE(5261), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), + [anon_sym_COMMA] = ACTIONS(8422), + [anon_sym_RPAREN] = ACTIONS(8422), + [anon_sym_LPAREN2] = ACTIONS(8422), + [anon_sym_DASH] = ACTIONS(8424), + [anon_sym_PLUS] = ACTIONS(8424), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_SLASH] = ACTIONS(8424), + [anon_sym_PERCENT] = ACTIONS(8424), + [anon_sym_PIPE_PIPE] = ACTIONS(8422), + [anon_sym_AMP_AMP] = ACTIONS(8422), + [anon_sym_PIPE] = ACTIONS(8424), + [anon_sym_CARET] = ACTIONS(8424), + [anon_sym_AMP] = ACTIONS(8424), + [anon_sym_EQ_EQ] = ACTIONS(8422), + [anon_sym_BANG_EQ] = ACTIONS(8422), + [anon_sym_GT] = ACTIONS(8424), + [anon_sym_GT_EQ] = ACTIONS(8422), + [anon_sym_LT_EQ] = ACTIONS(8424), + [anon_sym_LT] = ACTIONS(8424), + [anon_sym_LT_LT] = ACTIONS(8424), + [anon_sym_GT_GT] = ACTIONS(8424), + [anon_sym___attribute__] = ACTIONS(6764), + [anon_sym___attribute] = ACTIONS(6766), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), + [anon_sym_LBRACK] = ACTIONS(8424), + [anon_sym_EQ] = ACTIONS(8424), + [anon_sym_QMARK] = ACTIONS(8422), + [anon_sym_STAR_EQ] = ACTIONS(8422), + [anon_sym_SLASH_EQ] = ACTIONS(8422), + [anon_sym_PERCENT_EQ] = ACTIONS(8422), + [anon_sym_PLUS_EQ] = ACTIONS(8422), + [anon_sym_DASH_EQ] = ACTIONS(8422), + [anon_sym_LT_LT_EQ] = ACTIONS(8422), + [anon_sym_GT_GT_EQ] = ACTIONS(8422), + [anon_sym_AMP_EQ] = ACTIONS(8422), + [anon_sym_CARET_EQ] = ACTIONS(8422), + [anon_sym_PIPE_EQ] = ACTIONS(8422), + [anon_sym_LT_EQ_GT] = ACTIONS(8422), + [anon_sym_or] = ACTIONS(8422), + [anon_sym_and] = ACTIONS(8422), + [anon_sym_bitor] = ACTIONS(8422), + [anon_sym_xor] = ACTIONS(8422), + [anon_sym_bitand] = ACTIONS(8422), + [anon_sym_not_eq] = ACTIONS(8422), + [anon_sym_DASH_DASH] = ACTIONS(8422), + [anon_sym_PLUS_PLUS] = ACTIONS(8422), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(8424), + [anon_sym_DOT_STAR] = ACTIONS(8422), + [anon_sym_DASH_GT] = ACTIONS(9124), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9133), + [anon_sym_override] = ACTIONS(9133), + [anon_sym_requires] = ACTIONS(9136), + [anon_sym_DASH_GT_STAR] = ACTIONS(8422), + }, + [STATE(3385)] = { + [sym_identifier] = ACTIONS(4164), + [aux_sym_preproc_def_token1] = ACTIONS(4164), + [aux_sym_preproc_if_token1] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), + [sym_preproc_directive] = ACTIONS(4164), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym___extension__] = ACTIONS(4164), + [anon_sym_typedef] = ACTIONS(4164), + [anon_sym_virtual] = ACTIONS(4164), + [anon_sym_extern] = ACTIONS(4164), + [anon_sym___attribute__] = ACTIONS(4164), + [anon_sym___attribute] = ACTIONS(4164), + [anon_sym_using] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), + [anon_sym___declspec] = ACTIONS(4164), + [anon_sym___based] = ACTIONS(4164), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_signed] = ACTIONS(4164), + [anon_sym_unsigned] = ACTIONS(4164), + [anon_sym_long] = ACTIONS(4164), + [anon_sym_short] = ACTIONS(4164), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_register] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym___inline] = ACTIONS(4164), + [anon_sym___inline__] = ACTIONS(4164), + [anon_sym___forceinline] = ACTIONS(4164), + [anon_sym_thread_local] = ACTIONS(4164), + [anon_sym___thread] = ACTIONS(4164), + [anon_sym_const] = ACTIONS(4164), + [anon_sym_constexpr] = ACTIONS(4164), + [anon_sym_volatile] = ACTIONS(4164), + [anon_sym_restrict] = ACTIONS(4164), + [anon_sym___restrict__] = ACTIONS(4164), + [anon_sym__Atomic] = ACTIONS(4164), + [anon_sym__Noreturn] = ACTIONS(4164), + [anon_sym_noreturn] = ACTIONS(4164), + [anon_sym__Nonnull] = ACTIONS(4164), + [anon_sym_mutable] = ACTIONS(4164), + [anon_sym_constinit] = ACTIONS(4164), + [anon_sym_consteval] = ACTIONS(4164), + [anon_sym_alignas] = ACTIONS(4164), + [anon_sym__Alignas] = ACTIONS(4164), + [sym_primitive_type] = ACTIONS(4164), + [anon_sym_enum] = ACTIONS(4164), + [anon_sym_class] = ACTIONS(4164), + [anon_sym_struct] = ACTIONS(4164), + [anon_sym_union] = ACTIONS(4164), + [anon_sym_typename] = ACTIONS(4164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4164), + [anon_sym_decltype] = ACTIONS(4164), + [anon_sym_explicit] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_template] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_friend] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_static_assert] = ACTIONS(4164), + [anon_sym_LBRACK_COLON] = ACTIONS(4166), + }, + [STATE(3386)] = { + [sym_identifier] = ACTIONS(4168), + [aux_sym_preproc_def_token1] = ACTIONS(4168), + [aux_sym_preproc_if_token1] = ACTIONS(4168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4168), + [sym_preproc_directive] = ACTIONS(4168), + [anon_sym_LPAREN2] = ACTIONS(4170), + [anon_sym_TILDE] = ACTIONS(4170), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_AMP_AMP] = ACTIONS(4170), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4170), + [anon_sym___extension__] = ACTIONS(4168), + [anon_sym_typedef] = ACTIONS(4168), + [anon_sym_virtual] = ACTIONS(4168), + [anon_sym_extern] = ACTIONS(4168), + [anon_sym___attribute__] = ACTIONS(4168), + [anon_sym___attribute] = ACTIONS(4168), + [anon_sym_using] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4170), + [anon_sym___declspec] = ACTIONS(4168), + [anon_sym___based] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4170), + [anon_sym_signed] = ACTIONS(4168), + [anon_sym_unsigned] = ACTIONS(4168), + [anon_sym_long] = ACTIONS(4168), + [anon_sym_short] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_static] = ACTIONS(4168), + [anon_sym_register] = ACTIONS(4168), + [anon_sym_inline] = ACTIONS(4168), + [anon_sym___inline] = ACTIONS(4168), + [anon_sym___inline__] = ACTIONS(4168), + [anon_sym___forceinline] = ACTIONS(4168), + [anon_sym_thread_local] = ACTIONS(4168), + [anon_sym___thread] = ACTIONS(4168), + [anon_sym_const] = ACTIONS(4168), + [anon_sym_constexpr] = ACTIONS(4168), + [anon_sym_volatile] = ACTIONS(4168), + [anon_sym_restrict] = ACTIONS(4168), + [anon_sym___restrict__] = ACTIONS(4168), + [anon_sym__Atomic] = ACTIONS(4168), + [anon_sym__Noreturn] = ACTIONS(4168), + [anon_sym_noreturn] = ACTIONS(4168), + [anon_sym__Nonnull] = ACTIONS(4168), + [anon_sym_mutable] = ACTIONS(4168), + [anon_sym_constinit] = ACTIONS(4168), + [anon_sym_consteval] = ACTIONS(4168), + [anon_sym_alignas] = ACTIONS(4168), + [anon_sym__Alignas] = ACTIONS(4168), + [sym_primitive_type] = ACTIONS(4168), + [anon_sym_enum] = ACTIONS(4168), + [anon_sym_class] = ACTIONS(4168), + [anon_sym_struct] = ACTIONS(4168), + [anon_sym_union] = ACTIONS(4168), + [anon_sym_typename] = ACTIONS(4168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4168), + [anon_sym_decltype] = ACTIONS(4168), + [anon_sym_explicit] = ACTIONS(4168), + [anon_sym_private] = ACTIONS(4168), + [anon_sym_template] = ACTIONS(4168), + [anon_sym_operator] = ACTIONS(4168), + [anon_sym_friend] = ACTIONS(4168), + [anon_sym_public] = ACTIONS(4168), + [anon_sym_protected] = ACTIONS(4168), + [anon_sym_static_assert] = ACTIONS(4168), + [anon_sym_LBRACK_COLON] = ACTIONS(4170), + }, + [STATE(3387)] = { + [sym_identifier] = ACTIONS(4172), + [aux_sym_preproc_def_token1] = ACTIONS(4172), + [aux_sym_preproc_if_token1] = ACTIONS(4172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4172), + [sym_preproc_directive] = ACTIONS(4172), + [anon_sym_LPAREN2] = ACTIONS(4174), + [anon_sym_TILDE] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [anon_sym_AMP_AMP] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4172), + [anon_sym_SEMI] = ACTIONS(4174), + [anon_sym___extension__] = ACTIONS(4172), + [anon_sym_typedef] = ACTIONS(4172), + [anon_sym_virtual] = ACTIONS(4172), + [anon_sym_extern] = ACTIONS(4172), + [anon_sym___attribute__] = ACTIONS(4172), + [anon_sym___attribute] = ACTIONS(4172), + [anon_sym_using] = ACTIONS(4172), + [anon_sym_COLON_COLON] = ACTIONS(4174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4174), + [anon_sym___declspec] = ACTIONS(4172), + [anon_sym___based] = ACTIONS(4172), + [anon_sym_RBRACE] = ACTIONS(4174), + [anon_sym_signed] = ACTIONS(4172), + [anon_sym_unsigned] = ACTIONS(4172), + [anon_sym_long] = ACTIONS(4172), + [anon_sym_short] = ACTIONS(4172), + [anon_sym_LBRACK] = ACTIONS(4172), + [anon_sym_static] = ACTIONS(4172), + [anon_sym_register] = ACTIONS(4172), + [anon_sym_inline] = ACTIONS(4172), + [anon_sym___inline] = ACTIONS(4172), + [anon_sym___inline__] = ACTIONS(4172), + [anon_sym___forceinline] = ACTIONS(4172), + [anon_sym_thread_local] = ACTIONS(4172), + [anon_sym___thread] = ACTIONS(4172), + [anon_sym_const] = ACTIONS(4172), + [anon_sym_constexpr] = ACTIONS(4172), + [anon_sym_volatile] = ACTIONS(4172), + [anon_sym_restrict] = ACTIONS(4172), + [anon_sym___restrict__] = ACTIONS(4172), + [anon_sym__Atomic] = ACTIONS(4172), + [anon_sym__Noreturn] = ACTIONS(4172), + [anon_sym_noreturn] = ACTIONS(4172), + [anon_sym__Nonnull] = ACTIONS(4172), + [anon_sym_mutable] = ACTIONS(4172), + [anon_sym_constinit] = ACTIONS(4172), + [anon_sym_consteval] = ACTIONS(4172), + [anon_sym_alignas] = ACTIONS(4172), + [anon_sym__Alignas] = ACTIONS(4172), + [sym_primitive_type] = ACTIONS(4172), + [anon_sym_enum] = ACTIONS(4172), + [anon_sym_class] = ACTIONS(4172), + [anon_sym_struct] = ACTIONS(4172), + [anon_sym_union] = ACTIONS(4172), + [anon_sym_typename] = ACTIONS(4172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4172), + [anon_sym_decltype] = ACTIONS(4172), + [anon_sym_explicit] = ACTIONS(4172), + [anon_sym_private] = ACTIONS(4172), + [anon_sym_template] = ACTIONS(4172), + [anon_sym_operator] = ACTIONS(4172), + [anon_sym_friend] = ACTIONS(4172), + [anon_sym_public] = ACTIONS(4172), + [anon_sym_protected] = ACTIONS(4172), + [anon_sym_static_assert] = ACTIONS(4172), + [anon_sym_LBRACK_COLON] = ACTIONS(4174), + }, + [STATE(3388)] = { + [sym_identifier] = ACTIONS(4176), + [aux_sym_preproc_def_token1] = ACTIONS(4176), + [aux_sym_preproc_if_token1] = ACTIONS(4176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4176), + [sym_preproc_directive] = ACTIONS(4176), + [anon_sym_LPAREN2] = ACTIONS(4178), + [anon_sym_TILDE] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4178), + [anon_sym_AMP_AMP] = ACTIONS(4178), + [anon_sym_AMP] = ACTIONS(4176), + [anon_sym_SEMI] = ACTIONS(4178), + [anon_sym___extension__] = ACTIONS(4176), + [anon_sym_typedef] = ACTIONS(4176), + [anon_sym_virtual] = ACTIONS(4176), + [anon_sym_extern] = ACTIONS(4176), + [anon_sym___attribute__] = ACTIONS(4176), + [anon_sym___attribute] = ACTIONS(4176), + [anon_sym_using] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4178), + [anon_sym___declspec] = ACTIONS(4176), + [anon_sym___based] = ACTIONS(4176), + [anon_sym_RBRACE] = ACTIONS(4178), + [anon_sym_signed] = ACTIONS(4176), + [anon_sym_unsigned] = ACTIONS(4176), + [anon_sym_long] = ACTIONS(4176), + [anon_sym_short] = ACTIONS(4176), + [anon_sym_LBRACK] = ACTIONS(4176), + [anon_sym_static] = ACTIONS(4176), + [anon_sym_register] = ACTIONS(4176), + [anon_sym_inline] = ACTIONS(4176), + [anon_sym___inline] = ACTIONS(4176), + [anon_sym___inline__] = ACTIONS(4176), + [anon_sym___forceinline] = ACTIONS(4176), + [anon_sym_thread_local] = ACTIONS(4176), + [anon_sym___thread] = ACTIONS(4176), + [anon_sym_const] = ACTIONS(4176), + [anon_sym_constexpr] = ACTIONS(4176), + [anon_sym_volatile] = ACTIONS(4176), + [anon_sym_restrict] = ACTIONS(4176), + [anon_sym___restrict__] = ACTIONS(4176), + [anon_sym__Atomic] = ACTIONS(4176), + [anon_sym__Noreturn] = ACTIONS(4176), + [anon_sym_noreturn] = ACTIONS(4176), + [anon_sym__Nonnull] = ACTIONS(4176), + [anon_sym_mutable] = ACTIONS(4176), + [anon_sym_constinit] = ACTIONS(4176), + [anon_sym_consteval] = ACTIONS(4176), + [anon_sym_alignas] = ACTIONS(4176), + [anon_sym__Alignas] = ACTIONS(4176), + [sym_primitive_type] = ACTIONS(4176), + [anon_sym_enum] = ACTIONS(4176), + [anon_sym_class] = ACTIONS(4176), + [anon_sym_struct] = ACTIONS(4176), + [anon_sym_union] = ACTIONS(4176), + [anon_sym_typename] = ACTIONS(4176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4176), + [anon_sym_decltype] = ACTIONS(4176), + [anon_sym_explicit] = ACTIONS(4176), + [anon_sym_private] = ACTIONS(4176), + [anon_sym_template] = ACTIONS(4176), + [anon_sym_operator] = ACTIONS(4176), + [anon_sym_friend] = ACTIONS(4176), + [anon_sym_public] = ACTIONS(4176), + [anon_sym_protected] = ACTIONS(4176), + [anon_sym_static_assert] = ACTIONS(4176), + [anon_sym_LBRACK_COLON] = ACTIONS(4178), + }, + [STATE(3389)] = { + [sym_template_argument_list] = STATE(3613), + [sym_identifier] = ACTIONS(7085), + [anon_sym_LPAREN2] = ACTIONS(7090), + [anon_sym_TILDE] = ACTIONS(7090), + [anon_sym_STAR] = ACTIONS(7090), + [anon_sym_PIPE_PIPE] = ACTIONS(7090), + [anon_sym_AMP_AMP] = ACTIONS(7090), + [anon_sym_AMP] = ACTIONS(7085), + [anon_sym_LT] = ACTIONS(9099), + [anon_sym___extension__] = ACTIONS(7085), + [anon_sym_virtual] = ACTIONS(7085), + [anon_sym_extern] = ACTIONS(7085), + [anon_sym___attribute__] = ACTIONS(7085), + [anon_sym___attribute] = ACTIONS(7085), + [anon_sym_using] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7087), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7090), + [anon_sym___declspec] = ACTIONS(7085), + [anon_sym___based] = ACTIONS(7085), + [anon_sym___cdecl] = ACTIONS(7085), + [anon_sym___clrcall] = ACTIONS(7085), + [anon_sym___stdcall] = ACTIONS(7085), + [anon_sym___fastcall] = ACTIONS(7085), + [anon_sym___thiscall] = ACTIONS(7085), + [anon_sym___vectorcall] = ACTIONS(7085), + [anon_sym_signed] = ACTIONS(7085), + [anon_sym_unsigned] = ACTIONS(7085), + [anon_sym_long] = ACTIONS(7085), + [anon_sym_short] = ACTIONS(7085), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym_static] = ACTIONS(7085), + [anon_sym_register] = ACTIONS(7085), + [anon_sym_inline] = ACTIONS(7085), + [anon_sym___inline] = ACTIONS(7085), + [anon_sym___inline__] = ACTIONS(7085), + [anon_sym___forceinline] = ACTIONS(7085), + [anon_sym_thread_local] = ACTIONS(7085), + [anon_sym___thread] = ACTIONS(7085), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7085), + [anon_sym_volatile] = ACTIONS(7085), + [anon_sym_restrict] = ACTIONS(7085), + [anon_sym___restrict__] = ACTIONS(7085), + [anon_sym__Atomic] = ACTIONS(7085), + [anon_sym__Noreturn] = ACTIONS(7085), + [anon_sym_noreturn] = ACTIONS(7085), + [anon_sym__Nonnull] = ACTIONS(7085), + [anon_sym_mutable] = ACTIONS(7085), + [anon_sym_constinit] = ACTIONS(7085), + [anon_sym_consteval] = ACTIONS(7085), + [anon_sym_alignas] = ACTIONS(7085), + [anon_sym__Alignas] = ACTIONS(7085), + [sym_primitive_type] = ACTIONS(7085), + [anon_sym_enum] = ACTIONS(7085), + [anon_sym_class] = ACTIONS(7085), + [anon_sym_struct] = ACTIONS(7085), + [anon_sym_union] = ACTIONS(7085), + [anon_sym_or] = ACTIONS(7085), + [anon_sym_and] = ACTIONS(7085), + [anon_sym_typename] = ACTIONS(7085), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7085), + [anon_sym_decltype] = ACTIONS(7085), + [anon_sym_explicit] = ACTIONS(7085), + [anon_sym_template] = ACTIONS(7085), + [anon_sym_operator] = ACTIONS(7085), + [anon_sym_friend] = ACTIONS(7085), + [anon_sym_concept] = ACTIONS(7085), + [anon_sym_LBRACK_COLON] = ACTIONS(7090), + }, + [STATE(3390)] = { + [sym_identifier] = ACTIONS(4180), + [aux_sym_preproc_def_token1] = ACTIONS(4180), + [aux_sym_preproc_if_token1] = ACTIONS(4180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4180), + [sym_preproc_directive] = ACTIONS(4180), + [anon_sym_LPAREN2] = ACTIONS(4182), + [anon_sym_TILDE] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [anon_sym_AMP_AMP] = ACTIONS(4182), + [anon_sym_AMP] = ACTIONS(4180), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym___extension__] = ACTIONS(4180), + [anon_sym_typedef] = ACTIONS(4180), + [anon_sym_virtual] = ACTIONS(4180), + [anon_sym_extern] = ACTIONS(4180), + [anon_sym___attribute__] = ACTIONS(4180), + [anon_sym___attribute] = ACTIONS(4180), + [anon_sym_using] = ACTIONS(4180), + [anon_sym_COLON_COLON] = ACTIONS(4182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4182), + [anon_sym___declspec] = ACTIONS(4180), + [anon_sym___based] = ACTIONS(4180), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_signed] = ACTIONS(4180), + [anon_sym_unsigned] = ACTIONS(4180), + [anon_sym_long] = ACTIONS(4180), + [anon_sym_short] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_static] = ACTIONS(4180), + [anon_sym_register] = ACTIONS(4180), + [anon_sym_inline] = ACTIONS(4180), + [anon_sym___inline] = ACTIONS(4180), + [anon_sym___inline__] = ACTIONS(4180), + [anon_sym___forceinline] = ACTIONS(4180), + [anon_sym_thread_local] = ACTIONS(4180), + [anon_sym___thread] = ACTIONS(4180), + [anon_sym_const] = ACTIONS(4180), + [anon_sym_constexpr] = ACTIONS(4180), + [anon_sym_volatile] = ACTIONS(4180), + [anon_sym_restrict] = ACTIONS(4180), + [anon_sym___restrict__] = ACTIONS(4180), + [anon_sym__Atomic] = ACTIONS(4180), + [anon_sym__Noreturn] = ACTIONS(4180), + [anon_sym_noreturn] = ACTIONS(4180), + [anon_sym__Nonnull] = ACTIONS(4180), + [anon_sym_mutable] = ACTIONS(4180), + [anon_sym_constinit] = ACTIONS(4180), + [anon_sym_consteval] = ACTIONS(4180), + [anon_sym_alignas] = ACTIONS(4180), + [anon_sym__Alignas] = ACTIONS(4180), + [sym_primitive_type] = ACTIONS(4180), + [anon_sym_enum] = ACTIONS(4180), + [anon_sym_class] = ACTIONS(4180), + [anon_sym_struct] = ACTIONS(4180), + [anon_sym_union] = ACTIONS(4180), + [anon_sym_typename] = ACTIONS(4180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4180), + [anon_sym_decltype] = ACTIONS(4180), + [anon_sym_explicit] = ACTIONS(4180), + [anon_sym_private] = ACTIONS(4180), + [anon_sym_template] = ACTIONS(4180), + [anon_sym_operator] = ACTIONS(4180), + [anon_sym_friend] = ACTIONS(4180), + [anon_sym_public] = ACTIONS(4180), + [anon_sym_protected] = ACTIONS(4180), + [anon_sym_static_assert] = ACTIONS(4180), + [anon_sym_LBRACK_COLON] = ACTIONS(4182), + }, + [STATE(3391)] = { + [sym_identifier] = ACTIONS(4184), + [aux_sym_preproc_def_token1] = ACTIONS(4184), + [aux_sym_preproc_if_token1] = ACTIONS(4184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4184), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4184), + [sym_preproc_directive] = ACTIONS(4184), + [anon_sym_LPAREN2] = ACTIONS(4186), + [anon_sym_TILDE] = ACTIONS(4186), + [anon_sym_STAR] = ACTIONS(4186), + [anon_sym_AMP_AMP] = ACTIONS(4186), + [anon_sym_AMP] = ACTIONS(4184), + [anon_sym_SEMI] = ACTIONS(4186), + [anon_sym___extension__] = ACTIONS(4184), + [anon_sym_typedef] = ACTIONS(4184), + [anon_sym_virtual] = ACTIONS(4184), + [anon_sym_extern] = ACTIONS(4184), + [anon_sym___attribute__] = ACTIONS(4184), + [anon_sym___attribute] = ACTIONS(4184), + [anon_sym_using] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(4186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4186), + [anon_sym___declspec] = ACTIONS(4184), + [anon_sym___based] = ACTIONS(4184), + [anon_sym_RBRACE] = ACTIONS(4186), + [anon_sym_signed] = ACTIONS(4184), + [anon_sym_unsigned] = ACTIONS(4184), + [anon_sym_long] = ACTIONS(4184), + [anon_sym_short] = ACTIONS(4184), + [anon_sym_LBRACK] = ACTIONS(4184), + [anon_sym_static] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4184), + [anon_sym_inline] = ACTIONS(4184), + [anon_sym___inline] = ACTIONS(4184), + [anon_sym___inline__] = ACTIONS(4184), + [anon_sym___forceinline] = ACTIONS(4184), + [anon_sym_thread_local] = ACTIONS(4184), + [anon_sym___thread] = ACTIONS(4184), + [anon_sym_const] = ACTIONS(4184), + [anon_sym_constexpr] = ACTIONS(4184), + [anon_sym_volatile] = ACTIONS(4184), + [anon_sym_restrict] = ACTIONS(4184), + [anon_sym___restrict__] = ACTIONS(4184), + [anon_sym__Atomic] = ACTIONS(4184), + [anon_sym__Noreturn] = ACTIONS(4184), + [anon_sym_noreturn] = ACTIONS(4184), + [anon_sym__Nonnull] = ACTIONS(4184), + [anon_sym_mutable] = ACTIONS(4184), + [anon_sym_constinit] = ACTIONS(4184), + [anon_sym_consteval] = ACTIONS(4184), + [anon_sym_alignas] = ACTIONS(4184), + [anon_sym__Alignas] = ACTIONS(4184), + [sym_primitive_type] = ACTIONS(4184), + [anon_sym_enum] = ACTIONS(4184), + [anon_sym_class] = ACTIONS(4184), + [anon_sym_struct] = ACTIONS(4184), + [anon_sym_union] = ACTIONS(4184), + [anon_sym_typename] = ACTIONS(4184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4184), + [anon_sym_decltype] = ACTIONS(4184), + [anon_sym_explicit] = ACTIONS(4184), + [anon_sym_private] = ACTIONS(4184), + [anon_sym_template] = ACTIONS(4184), + [anon_sym_operator] = ACTIONS(4184), + [anon_sym_friend] = ACTIONS(4184), + [anon_sym_public] = ACTIONS(4184), + [anon_sym_protected] = ACTIONS(4184), + [anon_sym_static_assert] = ACTIONS(4184), + [anon_sym_LBRACK_COLON] = ACTIONS(4186), + }, + [STATE(3392)] = { + [sym_template_argument_list] = STATE(2681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7087), + [anon_sym_COMMA] = ACTIONS(7087), + [anon_sym_LPAREN2] = ACTIONS(7087), + [anon_sym_DASH] = ACTIONS(7094), + [anon_sym_PLUS] = ACTIONS(7094), + [anon_sym_STAR] = ACTIONS(7094), + [anon_sym_SLASH] = ACTIONS(7094), + [anon_sym_PERCENT] = ACTIONS(7094), + [anon_sym_PIPE_PIPE] = ACTIONS(7087), + [anon_sym_AMP_AMP] = ACTIONS(7087), + [anon_sym_PIPE] = ACTIONS(7094), + [anon_sym_CARET] = ACTIONS(7094), + [anon_sym_AMP] = ACTIONS(7094), + [anon_sym_EQ_EQ] = ACTIONS(7087), + [anon_sym_BANG_EQ] = ACTIONS(7087), + [anon_sym_GT] = ACTIONS(7094), + [anon_sym_GT_EQ] = ACTIONS(7087), + [anon_sym_LT_EQ] = ACTIONS(7094), + [anon_sym_LT] = ACTIONS(8064), + [anon_sym_LT_LT] = ACTIONS(7094), + [anon_sym_GT_GT] = ACTIONS(7094), + [anon_sym___extension__] = ACTIONS(7090), + [anon_sym_COLON_COLON] = ACTIONS(7087), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_LBRACK] = ACTIONS(7087), + [anon_sym_RBRACK] = ACTIONS(7087), + [anon_sym_EQ] = ACTIONS(7094), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7090), + [anon_sym_volatile] = ACTIONS(7090), + [anon_sym_restrict] = ACTIONS(7090), + [anon_sym___restrict__] = ACTIONS(7090), + [anon_sym__Atomic] = ACTIONS(7090), + [anon_sym__Noreturn] = ACTIONS(7090), + [anon_sym_noreturn] = ACTIONS(7090), + [anon_sym__Nonnull] = ACTIONS(7090), + [anon_sym_mutable] = ACTIONS(7090), + [anon_sym_constinit] = ACTIONS(7090), + [anon_sym_consteval] = ACTIONS(7090), + [anon_sym_alignas] = ACTIONS(7090), + [anon_sym__Alignas] = ACTIONS(7090), + [anon_sym_QMARK] = ACTIONS(7087), + [anon_sym_STAR_EQ] = ACTIONS(7087), + [anon_sym_SLASH_EQ] = ACTIONS(7087), + [anon_sym_PERCENT_EQ] = ACTIONS(7087), + [anon_sym_PLUS_EQ] = ACTIONS(7087), + [anon_sym_DASH_EQ] = ACTIONS(7087), + [anon_sym_LT_LT_EQ] = ACTIONS(7087), + [anon_sym_GT_GT_EQ] = ACTIONS(7087), + [anon_sym_AMP_EQ] = ACTIONS(7087), + [anon_sym_CARET_EQ] = ACTIONS(7087), + [anon_sym_PIPE_EQ] = ACTIONS(7087), + [anon_sym_and_eq] = ACTIONS(7087), + [anon_sym_or_eq] = ACTIONS(7087), + [anon_sym_xor_eq] = ACTIONS(7087), + [anon_sym_LT_EQ_GT] = ACTIONS(7087), + [anon_sym_or] = ACTIONS(7094), + [anon_sym_and] = ACTIONS(7094), + [anon_sym_bitor] = ACTIONS(7087), + [anon_sym_xor] = ACTIONS(7094), + [anon_sym_bitand] = ACTIONS(7087), + [anon_sym_not_eq] = ACTIONS(7087), + [anon_sym_DASH_DASH] = ACTIONS(7087), + [anon_sym_PLUS_PLUS] = ACTIONS(7087), + [anon_sym_DOT] = ACTIONS(7094), + [anon_sym_DOT_STAR] = ACTIONS(7087), + [anon_sym_DASH_GT] = ACTIONS(7087), + [sym_comment] = ACTIONS(3), + }, + [STATE(3393)] = { + [sym_identifier] = ACTIONS(3626), + [aux_sym_preproc_def_token1] = ACTIONS(3626), + [aux_sym_preproc_if_token1] = ACTIONS(3626), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), + [sym_preproc_directive] = ACTIONS(3626), + [anon_sym_LPAREN2] = ACTIONS(3628), + [anon_sym_TILDE] = ACTIONS(3628), + [anon_sym_STAR] = ACTIONS(3628), + [anon_sym_AMP_AMP] = ACTIONS(3628), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym___extension__] = ACTIONS(3626), + [anon_sym_typedef] = ACTIONS(3626), + [anon_sym_virtual] = ACTIONS(3626), + [anon_sym_extern] = ACTIONS(3626), + [anon_sym___attribute__] = ACTIONS(3626), + [anon_sym___attribute] = ACTIONS(3626), + [anon_sym_using] = ACTIONS(3626), + [anon_sym_COLON_COLON] = ACTIONS(3628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), + [anon_sym___declspec] = ACTIONS(3626), + [anon_sym___based] = ACTIONS(3626), + [anon_sym_RBRACE] = ACTIONS(3628), + [anon_sym_signed] = ACTIONS(3626), + [anon_sym_unsigned] = ACTIONS(3626), + [anon_sym_long] = ACTIONS(3626), + [anon_sym_short] = ACTIONS(3626), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_static] = ACTIONS(3626), + [anon_sym_register] = ACTIONS(3626), + [anon_sym_inline] = ACTIONS(3626), + [anon_sym___inline] = ACTIONS(3626), + [anon_sym___inline__] = ACTIONS(3626), + [anon_sym___forceinline] = ACTIONS(3626), + [anon_sym_thread_local] = ACTIONS(3626), + [anon_sym___thread] = ACTIONS(3626), + [anon_sym_const] = ACTIONS(3626), + [anon_sym_constexpr] = ACTIONS(3626), + [anon_sym_volatile] = ACTIONS(3626), + [anon_sym_restrict] = ACTIONS(3626), + [anon_sym___restrict__] = ACTIONS(3626), + [anon_sym__Atomic] = ACTIONS(3626), + [anon_sym__Noreturn] = ACTIONS(3626), + [anon_sym_noreturn] = ACTIONS(3626), + [anon_sym__Nonnull] = ACTIONS(3626), + [anon_sym_mutable] = ACTIONS(3626), + [anon_sym_constinit] = ACTIONS(3626), + [anon_sym_consteval] = ACTIONS(3626), + [anon_sym_alignas] = ACTIONS(3626), + [anon_sym__Alignas] = ACTIONS(3626), + [sym_primitive_type] = ACTIONS(3626), + [anon_sym_enum] = ACTIONS(3626), + [anon_sym_class] = ACTIONS(3626), + [anon_sym_struct] = ACTIONS(3626), + [anon_sym_union] = ACTIONS(3626), + [anon_sym_typename] = ACTIONS(3626), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3626), + [anon_sym_decltype] = ACTIONS(3626), + [anon_sym_explicit] = ACTIONS(3626), + [anon_sym_private] = ACTIONS(3626), + [anon_sym_template] = ACTIONS(3626), + [anon_sym_operator] = ACTIONS(3626), + [anon_sym_friend] = ACTIONS(3626), + [anon_sym_public] = ACTIONS(3626), + [anon_sym_protected] = ACTIONS(3626), + [anon_sym_static_assert] = ACTIONS(3626), + [anon_sym_LBRACK_COLON] = ACTIONS(3628), + }, + [STATE(3394)] = { + [sym_identifier] = ACTIONS(3630), + [aux_sym_preproc_def_token1] = ACTIONS(3630), + [aux_sym_preproc_if_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), + [sym_preproc_directive] = ACTIONS(3630), + [anon_sym_LPAREN2] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_AMP_AMP] = ACTIONS(3632), + [anon_sym_AMP] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym___extension__] = ACTIONS(3630), + [anon_sym_typedef] = ACTIONS(3630), + [anon_sym_virtual] = ACTIONS(3630), + [anon_sym_extern] = ACTIONS(3630), + [anon_sym___attribute__] = ACTIONS(3630), + [anon_sym___attribute] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_COLON_COLON] = ACTIONS(3632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), + [anon_sym___declspec] = ACTIONS(3630), + [anon_sym___based] = ACTIONS(3630), + [anon_sym_RBRACE] = ACTIONS(3632), + [anon_sym_signed] = ACTIONS(3630), + [anon_sym_unsigned] = ACTIONS(3630), + [anon_sym_long] = ACTIONS(3630), + [anon_sym_short] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_register] = ACTIONS(3630), + [anon_sym_inline] = ACTIONS(3630), + [anon_sym___inline] = ACTIONS(3630), + [anon_sym___inline__] = ACTIONS(3630), + [anon_sym___forceinline] = ACTIONS(3630), + [anon_sym_thread_local] = ACTIONS(3630), + [anon_sym___thread] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_constexpr] = ACTIONS(3630), + [anon_sym_volatile] = ACTIONS(3630), + [anon_sym_restrict] = ACTIONS(3630), + [anon_sym___restrict__] = ACTIONS(3630), + [anon_sym__Atomic] = ACTIONS(3630), + [anon_sym__Noreturn] = ACTIONS(3630), + [anon_sym_noreturn] = ACTIONS(3630), + [anon_sym__Nonnull] = ACTIONS(3630), + [anon_sym_mutable] = ACTIONS(3630), + [anon_sym_constinit] = ACTIONS(3630), + [anon_sym_consteval] = ACTIONS(3630), + [anon_sym_alignas] = ACTIONS(3630), + [anon_sym__Alignas] = ACTIONS(3630), + [sym_primitive_type] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_struct] = ACTIONS(3630), + [anon_sym_union] = ACTIONS(3630), + [anon_sym_typename] = ACTIONS(3630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3630), + [anon_sym_decltype] = ACTIONS(3630), + [anon_sym_explicit] = ACTIONS(3630), + [anon_sym_private] = ACTIONS(3630), + [anon_sym_template] = ACTIONS(3630), + [anon_sym_operator] = ACTIONS(3630), + [anon_sym_friend] = ACTIONS(3630), + [anon_sym_public] = ACTIONS(3630), + [anon_sym_protected] = ACTIONS(3630), + [anon_sym_static_assert] = ACTIONS(3630), + [anon_sym_LBRACK_COLON] = ACTIONS(3632), + }, + [STATE(3395)] = { + [sym_identifier] = ACTIONS(4192), + [aux_sym_preproc_def_token1] = ACTIONS(4192), + [aux_sym_preproc_if_token1] = ACTIONS(4192), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4192), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4192), + [sym_preproc_directive] = ACTIONS(4192), + [anon_sym_LPAREN2] = ACTIONS(4194), + [anon_sym_TILDE] = ACTIONS(4194), + [anon_sym_STAR] = ACTIONS(4194), + [anon_sym_AMP_AMP] = ACTIONS(4194), + [anon_sym_AMP] = ACTIONS(4192), + [anon_sym_SEMI] = ACTIONS(4194), + [anon_sym___extension__] = ACTIONS(4192), + [anon_sym_typedef] = ACTIONS(4192), + [anon_sym_virtual] = ACTIONS(4192), + [anon_sym_extern] = ACTIONS(4192), + [anon_sym___attribute__] = ACTIONS(4192), + [anon_sym___attribute] = ACTIONS(4192), + [anon_sym_using] = ACTIONS(4192), + [anon_sym_COLON_COLON] = ACTIONS(4194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), + [anon_sym___declspec] = ACTIONS(4192), + [anon_sym___based] = ACTIONS(4192), + [anon_sym_RBRACE] = ACTIONS(4194), + [anon_sym_signed] = ACTIONS(4192), + [anon_sym_unsigned] = ACTIONS(4192), + [anon_sym_long] = ACTIONS(4192), + [anon_sym_short] = ACTIONS(4192), + [anon_sym_LBRACK] = ACTIONS(4192), + [anon_sym_static] = ACTIONS(4192), + [anon_sym_register] = ACTIONS(4192), + [anon_sym_inline] = ACTIONS(4192), + [anon_sym___inline] = ACTIONS(4192), + [anon_sym___inline__] = ACTIONS(4192), + [anon_sym___forceinline] = ACTIONS(4192), + [anon_sym_thread_local] = ACTIONS(4192), + [anon_sym___thread] = ACTIONS(4192), + [anon_sym_const] = ACTIONS(4192), + [anon_sym_constexpr] = ACTIONS(4192), + [anon_sym_volatile] = ACTIONS(4192), + [anon_sym_restrict] = ACTIONS(4192), + [anon_sym___restrict__] = ACTIONS(4192), + [anon_sym__Atomic] = ACTIONS(4192), + [anon_sym__Noreturn] = ACTIONS(4192), + [anon_sym_noreturn] = ACTIONS(4192), + [anon_sym__Nonnull] = ACTIONS(4192), + [anon_sym_mutable] = ACTIONS(4192), + [anon_sym_constinit] = ACTIONS(4192), + [anon_sym_consteval] = ACTIONS(4192), + [anon_sym_alignas] = ACTIONS(4192), + [anon_sym__Alignas] = ACTIONS(4192), + [sym_primitive_type] = ACTIONS(4192), + [anon_sym_enum] = ACTIONS(4192), + [anon_sym_class] = ACTIONS(4192), + [anon_sym_struct] = ACTIONS(4192), + [anon_sym_union] = ACTIONS(4192), + [anon_sym_typename] = ACTIONS(4192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4192), + [anon_sym_decltype] = ACTIONS(4192), + [anon_sym_explicit] = ACTIONS(4192), + [anon_sym_private] = ACTIONS(4192), + [anon_sym_template] = ACTIONS(4192), + [anon_sym_operator] = ACTIONS(4192), + [anon_sym_friend] = ACTIONS(4192), + [anon_sym_public] = ACTIONS(4192), + [anon_sym_protected] = ACTIONS(4192), + [anon_sym_static_assert] = ACTIONS(4192), + [anon_sym_LBRACK_COLON] = ACTIONS(4194), + }, + [STATE(3396)] = { + [sym_identifier] = ACTIONS(4262), + [aux_sym_preproc_def_token1] = ACTIONS(4262), + [aux_sym_preproc_if_token1] = ACTIONS(4262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4262), + [sym_preproc_directive] = ACTIONS(4262), + [anon_sym_LPAREN2] = ACTIONS(4264), + [anon_sym_TILDE] = ACTIONS(4264), + [anon_sym_STAR] = ACTIONS(4264), + [anon_sym_AMP_AMP] = ACTIONS(4264), + [anon_sym_AMP] = ACTIONS(4262), + [anon_sym_SEMI] = ACTIONS(4264), + [anon_sym___extension__] = ACTIONS(4262), + [anon_sym_typedef] = ACTIONS(4262), + [anon_sym_virtual] = ACTIONS(4262), + [anon_sym_extern] = ACTIONS(4262), + [anon_sym___attribute__] = ACTIONS(4262), + [anon_sym___attribute] = ACTIONS(4262), + [anon_sym_using] = ACTIONS(4262), + [anon_sym_COLON_COLON] = ACTIONS(4264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4264), + [anon_sym___declspec] = ACTIONS(4262), + [anon_sym___based] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4264), + [anon_sym_signed] = ACTIONS(4262), + [anon_sym_unsigned] = ACTIONS(4262), + [anon_sym_long] = ACTIONS(4262), + [anon_sym_short] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_static] = ACTIONS(4262), + [anon_sym_register] = ACTIONS(4262), + [anon_sym_inline] = ACTIONS(4262), + [anon_sym___inline] = ACTIONS(4262), + [anon_sym___inline__] = ACTIONS(4262), + [anon_sym___forceinline] = ACTIONS(4262), + [anon_sym_thread_local] = ACTIONS(4262), + [anon_sym___thread] = ACTIONS(4262), + [anon_sym_const] = ACTIONS(4262), + [anon_sym_constexpr] = ACTIONS(4262), + [anon_sym_volatile] = ACTIONS(4262), + [anon_sym_restrict] = ACTIONS(4262), + [anon_sym___restrict__] = ACTIONS(4262), + [anon_sym__Atomic] = ACTIONS(4262), + [anon_sym__Noreturn] = ACTIONS(4262), + [anon_sym_noreturn] = ACTIONS(4262), + [anon_sym__Nonnull] = ACTIONS(4262), + [anon_sym_mutable] = ACTIONS(4262), + [anon_sym_constinit] = ACTIONS(4262), + [anon_sym_consteval] = ACTIONS(4262), + [anon_sym_alignas] = ACTIONS(4262), + [anon_sym__Alignas] = ACTIONS(4262), + [sym_primitive_type] = ACTIONS(4262), + [anon_sym_enum] = ACTIONS(4262), + [anon_sym_class] = ACTIONS(4262), + [anon_sym_struct] = ACTIONS(4262), + [anon_sym_union] = ACTIONS(4262), + [anon_sym_typename] = ACTIONS(4262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4262), + [anon_sym_decltype] = ACTIONS(4262), + [anon_sym_explicit] = ACTIONS(4262), + [anon_sym_private] = ACTIONS(4262), + [anon_sym_template] = ACTIONS(4262), + [anon_sym_operator] = ACTIONS(4262), + [anon_sym_friend] = ACTIONS(4262), + [anon_sym_public] = ACTIONS(4262), + [anon_sym_protected] = ACTIONS(4262), + [anon_sym_static_assert] = ACTIONS(4262), + [anon_sym_LBRACK_COLON] = ACTIONS(4264), + }, + [STATE(3397)] = { + [sym_string_literal] = STATE(4105), + [sym_template_argument_list] = STATE(5616), + [sym_raw_string_literal] = STATE(4105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_RPAREN] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(7101), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5638), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_RBRACE] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5663), + [anon_sym_or_eq] = ACTIONS(5663), + [anon_sym_xor_eq] = ACTIONS(5663), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_COLON_RBRACK] = ACTIONS(5638), + }, + [STATE(3398)] = { + [sym_identifier] = ACTIONS(4274), + [aux_sym_preproc_def_token1] = ACTIONS(4274), + [aux_sym_preproc_if_token1] = ACTIONS(4274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4274), + [sym_preproc_directive] = ACTIONS(4274), + [anon_sym_LPAREN2] = ACTIONS(4276), + [anon_sym_TILDE] = ACTIONS(4276), + [anon_sym_STAR] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_AMP] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym___extension__] = ACTIONS(4274), + [anon_sym_typedef] = ACTIONS(4274), + [anon_sym_virtual] = ACTIONS(4274), + [anon_sym_extern] = ACTIONS(4274), + [anon_sym___attribute__] = ACTIONS(4274), + [anon_sym___attribute] = ACTIONS(4274), + [anon_sym_using] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4276), + [anon_sym___declspec] = ACTIONS(4274), + [anon_sym___based] = ACTIONS(4274), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_signed] = ACTIONS(4274), + [anon_sym_unsigned] = ACTIONS(4274), + [anon_sym_long] = ACTIONS(4274), + [anon_sym_short] = ACTIONS(4274), + [anon_sym_LBRACK] = ACTIONS(4274), + [anon_sym_static] = ACTIONS(4274), + [anon_sym_register] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym___inline] = ACTIONS(4274), + [anon_sym___inline__] = ACTIONS(4274), + [anon_sym___forceinline] = ACTIONS(4274), + [anon_sym_thread_local] = ACTIONS(4274), + [anon_sym___thread] = ACTIONS(4274), + [anon_sym_const] = ACTIONS(4274), + [anon_sym_constexpr] = ACTIONS(4274), + [anon_sym_volatile] = ACTIONS(4274), + [anon_sym_restrict] = ACTIONS(4274), + [anon_sym___restrict__] = ACTIONS(4274), + [anon_sym__Atomic] = ACTIONS(4274), + [anon_sym__Noreturn] = ACTIONS(4274), + [anon_sym_noreturn] = ACTIONS(4274), + [anon_sym__Nonnull] = ACTIONS(4274), + [anon_sym_mutable] = ACTIONS(4274), + [anon_sym_constinit] = ACTIONS(4274), + [anon_sym_consteval] = ACTIONS(4274), + [anon_sym_alignas] = ACTIONS(4274), + [anon_sym__Alignas] = ACTIONS(4274), + [sym_primitive_type] = ACTIONS(4274), + [anon_sym_enum] = ACTIONS(4274), + [anon_sym_class] = ACTIONS(4274), + [anon_sym_struct] = ACTIONS(4274), + [anon_sym_union] = ACTIONS(4274), + [anon_sym_typename] = ACTIONS(4274), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4274), + [anon_sym_decltype] = ACTIONS(4274), + [anon_sym_explicit] = ACTIONS(4274), + [anon_sym_private] = ACTIONS(4274), + [anon_sym_template] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_friend] = ACTIONS(4274), + [anon_sym_public] = ACTIONS(4274), + [anon_sym_protected] = ACTIONS(4274), + [anon_sym_static_assert] = ACTIONS(4274), + [anon_sym_LBRACK_COLON] = ACTIONS(4276), + }, + [STATE(3399)] = { + [sym_identifier] = ACTIONS(4278), + [aux_sym_preproc_def_token1] = ACTIONS(4278), + [aux_sym_preproc_if_token1] = ACTIONS(4278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4278), + [sym_preproc_directive] = ACTIONS(4278), + [anon_sym_LPAREN2] = ACTIONS(4280), + [anon_sym_TILDE] = ACTIONS(4280), + [anon_sym_STAR] = ACTIONS(4280), + [anon_sym_AMP_AMP] = ACTIONS(4280), + [anon_sym_AMP] = ACTIONS(4278), + [anon_sym_SEMI] = ACTIONS(4280), + [anon_sym___extension__] = ACTIONS(4278), + [anon_sym_typedef] = ACTIONS(4278), + [anon_sym_virtual] = ACTIONS(4278), + [anon_sym_extern] = ACTIONS(4278), + [anon_sym___attribute__] = ACTIONS(4278), + [anon_sym___attribute] = ACTIONS(4278), + [anon_sym_using] = ACTIONS(4278), + [anon_sym_COLON_COLON] = ACTIONS(4280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4280), + [anon_sym___declspec] = ACTIONS(4278), + [anon_sym___based] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4280), + [anon_sym_signed] = ACTIONS(4278), + [anon_sym_unsigned] = ACTIONS(4278), + [anon_sym_long] = ACTIONS(4278), + [anon_sym_short] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4278), + [anon_sym_static] = ACTIONS(4278), + [anon_sym_register] = ACTIONS(4278), + [anon_sym_inline] = ACTIONS(4278), + [anon_sym___inline] = ACTIONS(4278), + [anon_sym___inline__] = ACTIONS(4278), + [anon_sym___forceinline] = ACTIONS(4278), + [anon_sym_thread_local] = ACTIONS(4278), + [anon_sym___thread] = ACTIONS(4278), + [anon_sym_const] = ACTIONS(4278), + [anon_sym_constexpr] = ACTIONS(4278), + [anon_sym_volatile] = ACTIONS(4278), + [anon_sym_restrict] = ACTIONS(4278), + [anon_sym___restrict__] = ACTIONS(4278), + [anon_sym__Atomic] = ACTIONS(4278), + [anon_sym__Noreturn] = ACTIONS(4278), + [anon_sym_noreturn] = ACTIONS(4278), + [anon_sym__Nonnull] = ACTIONS(4278), + [anon_sym_mutable] = ACTIONS(4278), + [anon_sym_constinit] = ACTIONS(4278), + [anon_sym_consteval] = ACTIONS(4278), + [anon_sym_alignas] = ACTIONS(4278), + [anon_sym__Alignas] = ACTIONS(4278), + [sym_primitive_type] = ACTIONS(4278), + [anon_sym_enum] = ACTIONS(4278), + [anon_sym_class] = ACTIONS(4278), + [anon_sym_struct] = ACTIONS(4278), + [anon_sym_union] = ACTIONS(4278), + [anon_sym_typename] = ACTIONS(4278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4278), + [anon_sym_decltype] = ACTIONS(4278), + [anon_sym_explicit] = ACTIONS(4278), + [anon_sym_private] = ACTIONS(4278), + [anon_sym_template] = ACTIONS(4278), + [anon_sym_operator] = ACTIONS(4278), + [anon_sym_friend] = ACTIONS(4278), + [anon_sym_public] = ACTIONS(4278), + [anon_sym_protected] = ACTIONS(4278), + [anon_sym_static_assert] = ACTIONS(4278), + [anon_sym_LBRACK_COLON] = ACTIONS(4280), + }, + [STATE(3400)] = { + [sym_identifier] = ACTIONS(3666), + [aux_sym_preproc_def_token1] = ACTIONS(3666), + [aux_sym_preproc_if_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3666), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3666), + [sym_preproc_directive] = ACTIONS(3666), + [anon_sym_LPAREN2] = ACTIONS(3668), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym___extension__] = ACTIONS(3666), + [anon_sym_typedef] = ACTIONS(3666), + [anon_sym_virtual] = ACTIONS(3666), + [anon_sym_extern] = ACTIONS(3666), + [anon_sym___attribute__] = ACTIONS(3666), + [anon_sym___attribute] = ACTIONS(3666), + [anon_sym_using] = ACTIONS(3666), + [anon_sym_COLON_COLON] = ACTIONS(3668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3668), + [anon_sym___declspec] = ACTIONS(3666), + [anon_sym___based] = ACTIONS(3666), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_signed] = ACTIONS(3666), + [anon_sym_unsigned] = ACTIONS(3666), + [anon_sym_long] = ACTIONS(3666), + [anon_sym_short] = ACTIONS(3666), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_static] = ACTIONS(3666), + [anon_sym_register] = ACTIONS(3666), + [anon_sym_inline] = ACTIONS(3666), + [anon_sym___inline] = ACTIONS(3666), + [anon_sym___inline__] = ACTIONS(3666), + [anon_sym___forceinline] = ACTIONS(3666), + [anon_sym_thread_local] = ACTIONS(3666), + [anon_sym___thread] = ACTIONS(3666), + [anon_sym_const] = ACTIONS(3666), + [anon_sym_constexpr] = ACTIONS(3666), + [anon_sym_volatile] = ACTIONS(3666), + [anon_sym_restrict] = ACTIONS(3666), + [anon_sym___restrict__] = ACTIONS(3666), + [anon_sym__Atomic] = ACTIONS(3666), + [anon_sym__Noreturn] = ACTIONS(3666), + [anon_sym_noreturn] = ACTIONS(3666), + [anon_sym__Nonnull] = ACTIONS(3666), + [anon_sym_mutable] = ACTIONS(3666), + [anon_sym_constinit] = ACTIONS(3666), + [anon_sym_consteval] = ACTIONS(3666), + [anon_sym_alignas] = ACTIONS(3666), + [anon_sym__Alignas] = ACTIONS(3666), + [sym_primitive_type] = ACTIONS(3666), + [anon_sym_enum] = ACTIONS(3666), + [anon_sym_class] = ACTIONS(3666), + [anon_sym_struct] = ACTIONS(3666), + [anon_sym_union] = ACTIONS(3666), + [anon_sym_typename] = ACTIONS(3666), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3666), + [anon_sym_decltype] = ACTIONS(3666), + [anon_sym_explicit] = ACTIONS(3666), + [anon_sym_private] = ACTIONS(3666), + [anon_sym_template] = ACTIONS(3666), + [anon_sym_operator] = ACTIONS(3666), + [anon_sym_friend] = ACTIONS(3666), + [anon_sym_public] = ACTIONS(3666), + [anon_sym_protected] = ACTIONS(3666), + [anon_sym_static_assert] = ACTIONS(3666), + [anon_sym_LBRACK_COLON] = ACTIONS(3668), + }, + [STATE(3401)] = { + [sym_identifier] = ACTIONS(4282), + [aux_sym_preproc_def_token1] = ACTIONS(4282), + [aux_sym_preproc_if_token1] = ACTIONS(4282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4282), + [sym_preproc_directive] = ACTIONS(4282), + [anon_sym_LPAREN2] = ACTIONS(4284), + [anon_sym_TILDE] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(4282), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym___extension__] = ACTIONS(4282), + [anon_sym_typedef] = ACTIONS(4282), + [anon_sym_virtual] = ACTIONS(4282), + [anon_sym_extern] = ACTIONS(4282), + [anon_sym___attribute__] = ACTIONS(4282), + [anon_sym___attribute] = ACTIONS(4282), + [anon_sym_using] = ACTIONS(4282), + [anon_sym_COLON_COLON] = ACTIONS(4284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), + [anon_sym___declspec] = ACTIONS(4282), + [anon_sym___based] = ACTIONS(4282), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_signed] = ACTIONS(4282), + [anon_sym_unsigned] = ACTIONS(4282), + [anon_sym_long] = ACTIONS(4282), + [anon_sym_short] = ACTIONS(4282), + [anon_sym_LBRACK] = ACTIONS(4282), + [anon_sym_static] = ACTIONS(4282), + [anon_sym_register] = ACTIONS(4282), + [anon_sym_inline] = ACTIONS(4282), + [anon_sym___inline] = ACTIONS(4282), + [anon_sym___inline__] = ACTIONS(4282), + [anon_sym___forceinline] = ACTIONS(4282), + [anon_sym_thread_local] = ACTIONS(4282), + [anon_sym___thread] = ACTIONS(4282), + [anon_sym_const] = ACTIONS(4282), + [anon_sym_constexpr] = ACTIONS(4282), + [anon_sym_volatile] = ACTIONS(4282), + [anon_sym_restrict] = ACTIONS(4282), + [anon_sym___restrict__] = ACTIONS(4282), + [anon_sym__Atomic] = ACTIONS(4282), + [anon_sym__Noreturn] = ACTIONS(4282), + [anon_sym_noreturn] = ACTIONS(4282), + [anon_sym__Nonnull] = ACTIONS(4282), + [anon_sym_mutable] = ACTIONS(4282), + [anon_sym_constinit] = ACTIONS(4282), + [anon_sym_consteval] = ACTIONS(4282), + [anon_sym_alignas] = ACTIONS(4282), + [anon_sym__Alignas] = ACTIONS(4282), + [sym_primitive_type] = ACTIONS(4282), + [anon_sym_enum] = ACTIONS(4282), + [anon_sym_class] = ACTIONS(4282), + [anon_sym_struct] = ACTIONS(4282), + [anon_sym_union] = ACTIONS(4282), + [anon_sym_typename] = ACTIONS(4282), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4282), + [anon_sym_decltype] = ACTIONS(4282), + [anon_sym_explicit] = ACTIONS(4282), + [anon_sym_private] = ACTIONS(4282), + [anon_sym_template] = ACTIONS(4282), + [anon_sym_operator] = ACTIONS(4282), + [anon_sym_friend] = ACTIONS(4282), + [anon_sym_public] = ACTIONS(4282), + [anon_sym_protected] = ACTIONS(4282), + [anon_sym_static_assert] = ACTIONS(4282), + [anon_sym_LBRACK_COLON] = ACTIONS(4284), + }, + [STATE(3402)] = { + [sym_identifier] = ACTIONS(4387), + [aux_sym_preproc_def_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), + [sym_preproc_directive] = ACTIONS(4387), + [anon_sym_LPAREN2] = ACTIONS(4389), + [anon_sym_TILDE] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4389), + [anon_sym_AMP_AMP] = ACTIONS(4389), + [anon_sym_AMP] = ACTIONS(4387), + [anon_sym_SEMI] = ACTIONS(4389), + [anon_sym___extension__] = ACTIONS(4387), + [anon_sym_typedef] = ACTIONS(4387), + [anon_sym_virtual] = ACTIONS(4387), + [anon_sym_extern] = ACTIONS(4387), + [anon_sym___attribute__] = ACTIONS(4387), + [anon_sym___attribute] = ACTIONS(4387), + [anon_sym_using] = ACTIONS(4387), + [anon_sym_COLON_COLON] = ACTIONS(4389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4389), + [anon_sym___declspec] = ACTIONS(4387), + [anon_sym___based] = ACTIONS(4387), + [anon_sym_RBRACE] = ACTIONS(4389), + [anon_sym_signed] = ACTIONS(4387), + [anon_sym_unsigned] = ACTIONS(4387), + [anon_sym_long] = ACTIONS(4387), + [anon_sym_short] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_static] = ACTIONS(4387), + [anon_sym_register] = ACTIONS(4387), + [anon_sym_inline] = ACTIONS(4387), + [anon_sym___inline] = ACTIONS(4387), + [anon_sym___inline__] = ACTIONS(4387), + [anon_sym___forceinline] = ACTIONS(4387), + [anon_sym_thread_local] = ACTIONS(4387), + [anon_sym___thread] = ACTIONS(4387), + [anon_sym_const] = ACTIONS(4387), + [anon_sym_constexpr] = ACTIONS(4387), + [anon_sym_volatile] = ACTIONS(4387), + [anon_sym_restrict] = ACTIONS(4387), + [anon_sym___restrict__] = ACTIONS(4387), + [anon_sym__Atomic] = ACTIONS(4387), + [anon_sym__Noreturn] = ACTIONS(4387), + [anon_sym_noreturn] = ACTIONS(4387), + [anon_sym__Nonnull] = ACTIONS(4387), + [anon_sym_mutable] = ACTIONS(4387), + [anon_sym_constinit] = ACTIONS(4387), + [anon_sym_consteval] = ACTIONS(4387), + [anon_sym_alignas] = ACTIONS(4387), + [anon_sym__Alignas] = ACTIONS(4387), + [sym_primitive_type] = ACTIONS(4387), + [anon_sym_enum] = ACTIONS(4387), + [anon_sym_class] = ACTIONS(4387), + [anon_sym_struct] = ACTIONS(4387), + [anon_sym_union] = ACTIONS(4387), + [anon_sym_typename] = ACTIONS(4387), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4387), + [anon_sym_decltype] = ACTIONS(4387), + [anon_sym_explicit] = ACTIONS(4387), + [anon_sym_private] = ACTIONS(4387), + [anon_sym_template] = ACTIONS(4387), + [anon_sym_operator] = ACTIONS(4387), + [anon_sym_friend] = ACTIONS(4387), + [anon_sym_public] = ACTIONS(4387), + [anon_sym_protected] = ACTIONS(4387), + [anon_sym_static_assert] = ACTIONS(4387), + [anon_sym_LBRACK_COLON] = ACTIONS(4389), + }, + [STATE(3403)] = { + [sym_identifier] = ACTIONS(8730), + [aux_sym_preproc_def_token1] = ACTIONS(8730), + [aux_sym_preproc_if_token1] = ACTIONS(8730), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8730), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8730), + [sym_preproc_directive] = ACTIONS(8730), + [anon_sym_LPAREN2] = ACTIONS(8732), + [anon_sym_TILDE] = ACTIONS(8732), + [anon_sym_STAR] = ACTIONS(8732), + [anon_sym_AMP_AMP] = ACTIONS(8732), + [anon_sym_AMP] = ACTIONS(8730), + [anon_sym_SEMI] = ACTIONS(8732), + [anon_sym___extension__] = ACTIONS(8730), + [anon_sym_typedef] = ACTIONS(8730), + [anon_sym_virtual] = ACTIONS(8730), + [anon_sym_extern] = ACTIONS(8730), + [anon_sym___attribute__] = ACTIONS(8730), + [anon_sym___attribute] = ACTIONS(8730), + [anon_sym_using] = ACTIONS(8730), + [anon_sym_COLON_COLON] = ACTIONS(8732), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8732), + [anon_sym___declspec] = ACTIONS(8730), + [anon_sym___based] = ACTIONS(8730), + [anon_sym_RBRACE] = ACTIONS(8732), + [anon_sym_signed] = ACTIONS(8730), + [anon_sym_unsigned] = ACTIONS(8730), + [anon_sym_long] = ACTIONS(8730), + [anon_sym_short] = ACTIONS(8730), + [anon_sym_LBRACK] = ACTIONS(8730), + [anon_sym_static] = ACTIONS(8730), + [anon_sym_register] = ACTIONS(8730), + [anon_sym_inline] = ACTIONS(8730), + [anon_sym___inline] = ACTIONS(8730), + [anon_sym___inline__] = ACTIONS(8730), + [anon_sym___forceinline] = ACTIONS(8730), + [anon_sym_thread_local] = ACTIONS(8730), + [anon_sym___thread] = ACTIONS(8730), + [anon_sym_const] = ACTIONS(8730), + [anon_sym_constexpr] = ACTIONS(8730), + [anon_sym_volatile] = ACTIONS(8730), + [anon_sym_restrict] = ACTIONS(8730), + [anon_sym___restrict__] = ACTIONS(8730), + [anon_sym__Atomic] = ACTIONS(8730), + [anon_sym__Noreturn] = ACTIONS(8730), + [anon_sym_noreturn] = ACTIONS(8730), + [anon_sym__Nonnull] = ACTIONS(8730), + [anon_sym_mutable] = ACTIONS(8730), + [anon_sym_constinit] = ACTIONS(8730), + [anon_sym_consteval] = ACTIONS(8730), + [anon_sym_alignas] = ACTIONS(8730), + [anon_sym__Alignas] = ACTIONS(8730), + [sym_primitive_type] = ACTIONS(8730), + [anon_sym_enum] = ACTIONS(8730), + [anon_sym_class] = ACTIONS(8730), + [anon_sym_struct] = ACTIONS(8730), + [anon_sym_union] = ACTIONS(8730), + [anon_sym_typename] = ACTIONS(8730), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8730), + [anon_sym_decltype] = ACTIONS(8730), + [anon_sym_explicit] = ACTIONS(8730), + [anon_sym_private] = ACTIONS(8730), + [anon_sym_template] = ACTIONS(8730), + [anon_sym_operator] = ACTIONS(8730), + [anon_sym_friend] = ACTIONS(8730), + [anon_sym_public] = ACTIONS(8730), + [anon_sym_protected] = ACTIONS(8730), + [anon_sym_static_assert] = ACTIONS(8730), + [anon_sym_LBRACK_COLON] = ACTIONS(8732), + }, + [STATE(3404)] = { + [sym_identifier] = ACTIONS(8742), + [aux_sym_preproc_def_token1] = ACTIONS(8742), + [aux_sym_preproc_if_token1] = ACTIONS(8742), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8742), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8742), + [sym_preproc_directive] = ACTIONS(8742), + [anon_sym_LPAREN2] = ACTIONS(8744), + [anon_sym_TILDE] = ACTIONS(8744), + [anon_sym_STAR] = ACTIONS(8744), + [anon_sym_AMP_AMP] = ACTIONS(8744), + [anon_sym_AMP] = ACTIONS(8742), + [anon_sym_SEMI] = ACTIONS(8744), + [anon_sym___extension__] = ACTIONS(8742), + [anon_sym_typedef] = ACTIONS(8742), + [anon_sym_virtual] = ACTIONS(8742), + [anon_sym_extern] = ACTIONS(8742), + [anon_sym___attribute__] = ACTIONS(8742), + [anon_sym___attribute] = ACTIONS(8742), + [anon_sym_using] = ACTIONS(8742), + [anon_sym_COLON_COLON] = ACTIONS(8744), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8744), + [anon_sym___declspec] = ACTIONS(8742), + [anon_sym___based] = ACTIONS(8742), + [anon_sym_RBRACE] = ACTIONS(8744), + [anon_sym_signed] = ACTIONS(8742), + [anon_sym_unsigned] = ACTIONS(8742), + [anon_sym_long] = ACTIONS(8742), + [anon_sym_short] = ACTIONS(8742), + [anon_sym_LBRACK] = ACTIONS(8742), + [anon_sym_static] = ACTIONS(8742), + [anon_sym_register] = ACTIONS(8742), + [anon_sym_inline] = ACTIONS(8742), + [anon_sym___inline] = ACTIONS(8742), + [anon_sym___inline__] = ACTIONS(8742), + [anon_sym___forceinline] = ACTIONS(8742), + [anon_sym_thread_local] = ACTIONS(8742), + [anon_sym___thread] = ACTIONS(8742), + [anon_sym_const] = ACTIONS(8742), + [anon_sym_constexpr] = ACTIONS(8742), + [anon_sym_volatile] = ACTIONS(8742), + [anon_sym_restrict] = ACTIONS(8742), + [anon_sym___restrict__] = ACTIONS(8742), + [anon_sym__Atomic] = ACTIONS(8742), + [anon_sym__Noreturn] = ACTIONS(8742), + [anon_sym_noreturn] = ACTIONS(8742), + [anon_sym__Nonnull] = ACTIONS(8742), + [anon_sym_mutable] = ACTIONS(8742), + [anon_sym_constinit] = ACTIONS(8742), + [anon_sym_consteval] = ACTIONS(8742), + [anon_sym_alignas] = ACTIONS(8742), + [anon_sym__Alignas] = ACTIONS(8742), + [sym_primitive_type] = ACTIONS(8742), + [anon_sym_enum] = ACTIONS(8742), + [anon_sym_class] = ACTIONS(8742), + [anon_sym_struct] = ACTIONS(8742), + [anon_sym_union] = ACTIONS(8742), + [anon_sym_typename] = ACTIONS(8742), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8742), + [anon_sym_decltype] = ACTIONS(8742), + [anon_sym_explicit] = ACTIONS(8742), + [anon_sym_private] = ACTIONS(8742), + [anon_sym_template] = ACTIONS(8742), + [anon_sym_operator] = ACTIONS(8742), + [anon_sym_friend] = ACTIONS(8742), + [anon_sym_public] = ACTIONS(8742), + [anon_sym_protected] = ACTIONS(8742), + [anon_sym_static_assert] = ACTIONS(8742), + [anon_sym_LBRACK_COLON] = ACTIONS(8744), + }, + [STATE(3405)] = { + [sym_identifier] = ACTIONS(8746), + [aux_sym_preproc_def_token1] = ACTIONS(8746), + [aux_sym_preproc_if_token1] = ACTIONS(8746), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8746), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8746), + [sym_preproc_directive] = ACTIONS(8746), + [anon_sym_LPAREN2] = ACTIONS(8748), + [anon_sym_TILDE] = ACTIONS(8748), + [anon_sym_STAR] = ACTIONS(8748), + [anon_sym_AMP_AMP] = ACTIONS(8748), + [anon_sym_AMP] = ACTIONS(8746), + [anon_sym_SEMI] = ACTIONS(8748), + [anon_sym___extension__] = ACTIONS(8746), + [anon_sym_typedef] = ACTIONS(8746), + [anon_sym_virtual] = ACTIONS(8746), + [anon_sym_extern] = ACTIONS(8746), + [anon_sym___attribute__] = ACTIONS(8746), + [anon_sym___attribute] = ACTIONS(8746), + [anon_sym_using] = ACTIONS(8746), + [anon_sym_COLON_COLON] = ACTIONS(8748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8748), + [anon_sym___declspec] = ACTIONS(8746), + [anon_sym___based] = ACTIONS(8746), + [anon_sym_RBRACE] = ACTIONS(8748), + [anon_sym_signed] = ACTIONS(8746), + [anon_sym_unsigned] = ACTIONS(8746), + [anon_sym_long] = ACTIONS(8746), + [anon_sym_short] = ACTIONS(8746), + [anon_sym_LBRACK] = ACTIONS(8746), + [anon_sym_static] = ACTIONS(8746), + [anon_sym_register] = ACTIONS(8746), + [anon_sym_inline] = ACTIONS(8746), + [anon_sym___inline] = ACTIONS(8746), + [anon_sym___inline__] = ACTIONS(8746), + [anon_sym___forceinline] = ACTIONS(8746), + [anon_sym_thread_local] = ACTIONS(8746), + [anon_sym___thread] = ACTIONS(8746), + [anon_sym_const] = ACTIONS(8746), + [anon_sym_constexpr] = ACTIONS(8746), + [anon_sym_volatile] = ACTIONS(8746), + [anon_sym_restrict] = ACTIONS(8746), + [anon_sym___restrict__] = ACTIONS(8746), + [anon_sym__Atomic] = ACTIONS(8746), + [anon_sym__Noreturn] = ACTIONS(8746), + [anon_sym_noreturn] = ACTIONS(8746), + [anon_sym__Nonnull] = ACTIONS(8746), + [anon_sym_mutable] = ACTIONS(8746), + [anon_sym_constinit] = ACTIONS(8746), + [anon_sym_consteval] = ACTIONS(8746), + [anon_sym_alignas] = ACTIONS(8746), + [anon_sym__Alignas] = ACTIONS(8746), + [sym_primitive_type] = ACTIONS(8746), + [anon_sym_enum] = ACTIONS(8746), + [anon_sym_class] = ACTIONS(8746), + [anon_sym_struct] = ACTIONS(8746), + [anon_sym_union] = ACTIONS(8746), + [anon_sym_typename] = ACTIONS(8746), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8746), + [anon_sym_decltype] = ACTIONS(8746), + [anon_sym_explicit] = ACTIONS(8746), + [anon_sym_private] = ACTIONS(8746), + [anon_sym_template] = ACTIONS(8746), + [anon_sym_operator] = ACTIONS(8746), + [anon_sym_friend] = ACTIONS(8746), + [anon_sym_public] = ACTIONS(8746), + [anon_sym_protected] = ACTIONS(8746), + [anon_sym_static_assert] = ACTIONS(8746), + [anon_sym_LBRACK_COLON] = ACTIONS(8748), + }, + [STATE(3406)] = { + [sym_identifier] = ACTIONS(4020), + [aux_sym_preproc_def_token1] = ACTIONS(4020), + [aux_sym_preproc_if_token1] = ACTIONS(4020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4020), + [sym_preproc_directive] = ACTIONS(4020), + [anon_sym_LPAREN2] = ACTIONS(4022), + [anon_sym_TILDE] = ACTIONS(4022), + [anon_sym_STAR] = ACTIONS(4022), + [anon_sym_AMP_AMP] = ACTIONS(4022), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_SEMI] = ACTIONS(4022), + [anon_sym___extension__] = ACTIONS(4020), + [anon_sym_typedef] = ACTIONS(4020), + [anon_sym_virtual] = ACTIONS(4020), + [anon_sym_extern] = ACTIONS(4020), + [anon_sym___attribute__] = ACTIONS(4020), + [anon_sym___attribute] = ACTIONS(4020), + [anon_sym_using] = ACTIONS(4020), + [anon_sym_COLON_COLON] = ACTIONS(4022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4022), + [anon_sym___declspec] = ACTIONS(4020), + [anon_sym___based] = ACTIONS(4020), + [anon_sym_RBRACE] = ACTIONS(4022), + [anon_sym_signed] = ACTIONS(4020), + [anon_sym_unsigned] = ACTIONS(4020), + [anon_sym_long] = ACTIONS(4020), + [anon_sym_short] = ACTIONS(4020), + [anon_sym_LBRACK] = ACTIONS(4020), + [anon_sym_static] = ACTIONS(4020), + [anon_sym_register] = ACTIONS(4020), + [anon_sym_inline] = ACTIONS(4020), + [anon_sym___inline] = ACTIONS(4020), + [anon_sym___inline__] = ACTIONS(4020), + [anon_sym___forceinline] = ACTIONS(4020), + [anon_sym_thread_local] = ACTIONS(4020), + [anon_sym___thread] = ACTIONS(4020), + [anon_sym_const] = ACTIONS(4020), + [anon_sym_constexpr] = ACTIONS(4020), + [anon_sym_volatile] = ACTIONS(4020), + [anon_sym_restrict] = ACTIONS(4020), + [anon_sym___restrict__] = ACTIONS(4020), + [anon_sym__Atomic] = ACTIONS(4020), + [anon_sym__Noreturn] = ACTIONS(4020), + [anon_sym_noreturn] = ACTIONS(4020), + [anon_sym__Nonnull] = ACTIONS(4020), + [anon_sym_mutable] = ACTIONS(4020), + [anon_sym_constinit] = ACTIONS(4020), + [anon_sym_consteval] = ACTIONS(4020), + [anon_sym_alignas] = ACTIONS(4020), + [anon_sym__Alignas] = ACTIONS(4020), + [sym_primitive_type] = ACTIONS(4020), + [anon_sym_enum] = ACTIONS(4020), + [anon_sym_class] = ACTIONS(4020), + [anon_sym_struct] = ACTIONS(4020), + [anon_sym_union] = ACTIONS(4020), + [anon_sym_typename] = ACTIONS(4020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4020), + [anon_sym_decltype] = ACTIONS(4020), + [anon_sym_explicit] = ACTIONS(4020), + [anon_sym_private] = ACTIONS(4020), + [anon_sym_template] = ACTIONS(4020), + [anon_sym_operator] = ACTIONS(4020), + [anon_sym_friend] = ACTIONS(4020), + [anon_sym_public] = ACTIONS(4020), + [anon_sym_protected] = ACTIONS(4020), + [anon_sym_static_assert] = ACTIONS(4020), + [anon_sym_LBRACK_COLON] = ACTIONS(4022), + }, + [STATE(3407)] = { + [sym_identifier] = ACTIONS(8766), + [aux_sym_preproc_def_token1] = ACTIONS(8766), + [aux_sym_preproc_if_token1] = ACTIONS(8766), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8766), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8766), + [sym_preproc_directive] = ACTIONS(8766), + [anon_sym_LPAREN2] = ACTIONS(8768), + [anon_sym_TILDE] = ACTIONS(8768), + [anon_sym_STAR] = ACTIONS(8768), + [anon_sym_AMP_AMP] = ACTIONS(8768), + [anon_sym_AMP] = ACTIONS(8766), + [anon_sym_SEMI] = ACTIONS(8768), + [anon_sym___extension__] = ACTIONS(8766), + [anon_sym_typedef] = ACTIONS(8766), + [anon_sym_virtual] = ACTIONS(8766), + [anon_sym_extern] = ACTIONS(8766), + [anon_sym___attribute__] = ACTIONS(8766), + [anon_sym___attribute] = ACTIONS(8766), + [anon_sym_using] = ACTIONS(8766), + [anon_sym_COLON_COLON] = ACTIONS(8768), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8768), + [anon_sym___declspec] = ACTIONS(8766), + [anon_sym___based] = ACTIONS(8766), + [anon_sym_RBRACE] = ACTIONS(8768), + [anon_sym_signed] = ACTIONS(8766), + [anon_sym_unsigned] = ACTIONS(8766), + [anon_sym_long] = ACTIONS(8766), + [anon_sym_short] = ACTIONS(8766), + [anon_sym_LBRACK] = ACTIONS(8766), + [anon_sym_static] = ACTIONS(8766), + [anon_sym_register] = ACTIONS(8766), + [anon_sym_inline] = ACTIONS(8766), + [anon_sym___inline] = ACTIONS(8766), + [anon_sym___inline__] = ACTIONS(8766), + [anon_sym___forceinline] = ACTIONS(8766), + [anon_sym_thread_local] = ACTIONS(8766), + [anon_sym___thread] = ACTIONS(8766), + [anon_sym_const] = ACTIONS(8766), + [anon_sym_constexpr] = ACTIONS(8766), + [anon_sym_volatile] = ACTIONS(8766), + [anon_sym_restrict] = ACTIONS(8766), + [anon_sym___restrict__] = ACTIONS(8766), + [anon_sym__Atomic] = ACTIONS(8766), + [anon_sym__Noreturn] = ACTIONS(8766), + [anon_sym_noreturn] = ACTIONS(8766), + [anon_sym__Nonnull] = ACTIONS(8766), + [anon_sym_mutable] = ACTIONS(8766), + [anon_sym_constinit] = ACTIONS(8766), + [anon_sym_consteval] = ACTIONS(8766), + [anon_sym_alignas] = ACTIONS(8766), + [anon_sym__Alignas] = ACTIONS(8766), + [sym_primitive_type] = ACTIONS(8766), + [anon_sym_enum] = ACTIONS(8766), + [anon_sym_class] = ACTIONS(8766), + [anon_sym_struct] = ACTIONS(8766), + [anon_sym_union] = ACTIONS(8766), + [anon_sym_typename] = ACTIONS(8766), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8766), + [anon_sym_decltype] = ACTIONS(8766), + [anon_sym_explicit] = ACTIONS(8766), + [anon_sym_private] = ACTIONS(8766), + [anon_sym_template] = ACTIONS(8766), + [anon_sym_operator] = ACTIONS(8766), + [anon_sym_friend] = ACTIONS(8766), + [anon_sym_public] = ACTIONS(8766), + [anon_sym_protected] = ACTIONS(8766), + [anon_sym_static_assert] = ACTIONS(8766), + [anon_sym_LBRACK_COLON] = ACTIONS(8768), + }, + [STATE(3408)] = { + [sym_identifier] = ACTIONS(8766), + [aux_sym_preproc_def_token1] = ACTIONS(8766), + [aux_sym_preproc_if_token1] = ACTIONS(8766), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8766), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8766), + [sym_preproc_directive] = ACTIONS(8766), + [anon_sym_LPAREN2] = ACTIONS(8768), + [anon_sym_TILDE] = ACTIONS(8768), + [anon_sym_STAR] = ACTIONS(8768), + [anon_sym_AMP_AMP] = ACTIONS(8768), + [anon_sym_AMP] = ACTIONS(8766), + [anon_sym_SEMI] = ACTIONS(8768), + [anon_sym___extension__] = ACTIONS(8766), + [anon_sym_typedef] = ACTIONS(8766), + [anon_sym_virtual] = ACTIONS(8766), + [anon_sym_extern] = ACTIONS(8766), + [anon_sym___attribute__] = ACTIONS(8766), + [anon_sym___attribute] = ACTIONS(8766), + [anon_sym_using] = ACTIONS(8766), + [anon_sym_COLON_COLON] = ACTIONS(8768), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8768), + [anon_sym___declspec] = ACTIONS(8766), + [anon_sym___based] = ACTIONS(8766), + [anon_sym_RBRACE] = ACTIONS(8768), + [anon_sym_signed] = ACTIONS(8766), + [anon_sym_unsigned] = ACTIONS(8766), + [anon_sym_long] = ACTIONS(8766), + [anon_sym_short] = ACTIONS(8766), + [anon_sym_LBRACK] = ACTIONS(8766), + [anon_sym_static] = ACTIONS(8766), + [anon_sym_register] = ACTIONS(8766), + [anon_sym_inline] = ACTIONS(8766), + [anon_sym___inline] = ACTIONS(8766), + [anon_sym___inline__] = ACTIONS(8766), + [anon_sym___forceinline] = ACTIONS(8766), + [anon_sym_thread_local] = ACTIONS(8766), + [anon_sym___thread] = ACTIONS(8766), + [anon_sym_const] = ACTIONS(8766), + [anon_sym_constexpr] = ACTIONS(8766), + [anon_sym_volatile] = ACTIONS(8766), + [anon_sym_restrict] = ACTIONS(8766), + [anon_sym___restrict__] = ACTIONS(8766), + [anon_sym__Atomic] = ACTIONS(8766), + [anon_sym__Noreturn] = ACTIONS(8766), + [anon_sym_noreturn] = ACTIONS(8766), + [anon_sym__Nonnull] = ACTIONS(8766), + [anon_sym_mutable] = ACTIONS(8766), + [anon_sym_constinit] = ACTIONS(8766), + [anon_sym_consteval] = ACTIONS(8766), + [anon_sym_alignas] = ACTIONS(8766), + [anon_sym__Alignas] = ACTIONS(8766), + [sym_primitive_type] = ACTIONS(8766), + [anon_sym_enum] = ACTIONS(8766), + [anon_sym_class] = ACTIONS(8766), + [anon_sym_struct] = ACTIONS(8766), + [anon_sym_union] = ACTIONS(8766), + [anon_sym_typename] = ACTIONS(8766), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8766), + [anon_sym_decltype] = ACTIONS(8766), + [anon_sym_explicit] = ACTIONS(8766), + [anon_sym_private] = ACTIONS(8766), + [anon_sym_template] = ACTIONS(8766), + [anon_sym_operator] = ACTIONS(8766), + [anon_sym_friend] = ACTIONS(8766), + [anon_sym_public] = ACTIONS(8766), + [anon_sym_protected] = ACTIONS(8766), + [anon_sym_static_assert] = ACTIONS(8766), + [anon_sym_LBRACK_COLON] = ACTIONS(8768), + }, + [STATE(3409)] = { + [sym_identifier] = ACTIONS(8802), + [aux_sym_preproc_def_token1] = ACTIONS(8802), + [aux_sym_preproc_if_token1] = ACTIONS(8802), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8802), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8802), + [sym_preproc_directive] = ACTIONS(8802), + [anon_sym_LPAREN2] = ACTIONS(8804), + [anon_sym_TILDE] = ACTIONS(8804), + [anon_sym_STAR] = ACTIONS(8804), + [anon_sym_AMP_AMP] = ACTIONS(8804), + [anon_sym_AMP] = ACTIONS(8802), + [anon_sym_SEMI] = ACTIONS(8804), + [anon_sym___extension__] = ACTIONS(8802), + [anon_sym_typedef] = ACTIONS(8802), + [anon_sym_virtual] = ACTIONS(8802), + [anon_sym_extern] = ACTIONS(8802), + [anon_sym___attribute__] = ACTIONS(8802), + [anon_sym___attribute] = ACTIONS(8802), + [anon_sym_using] = ACTIONS(8802), + [anon_sym_COLON_COLON] = ACTIONS(8804), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8804), + [anon_sym___declspec] = ACTIONS(8802), + [anon_sym___based] = ACTIONS(8802), + [anon_sym_RBRACE] = ACTIONS(8804), + [anon_sym_signed] = ACTIONS(8802), + [anon_sym_unsigned] = ACTIONS(8802), + [anon_sym_long] = ACTIONS(8802), + [anon_sym_short] = ACTIONS(8802), + [anon_sym_LBRACK] = ACTIONS(8802), + [anon_sym_static] = ACTIONS(8802), + [anon_sym_register] = ACTIONS(8802), + [anon_sym_inline] = ACTIONS(8802), + [anon_sym___inline] = ACTIONS(8802), + [anon_sym___inline__] = ACTIONS(8802), + [anon_sym___forceinline] = ACTIONS(8802), + [anon_sym_thread_local] = ACTIONS(8802), + [anon_sym___thread] = ACTIONS(8802), + [anon_sym_const] = ACTIONS(8802), + [anon_sym_constexpr] = ACTIONS(8802), + [anon_sym_volatile] = ACTIONS(8802), + [anon_sym_restrict] = ACTIONS(8802), + [anon_sym___restrict__] = ACTIONS(8802), + [anon_sym__Atomic] = ACTIONS(8802), + [anon_sym__Noreturn] = ACTIONS(8802), + [anon_sym_noreturn] = ACTIONS(8802), + [anon_sym__Nonnull] = ACTIONS(8802), + [anon_sym_mutable] = ACTIONS(8802), + [anon_sym_constinit] = ACTIONS(8802), + [anon_sym_consteval] = ACTIONS(8802), + [anon_sym_alignas] = ACTIONS(8802), + [anon_sym__Alignas] = ACTIONS(8802), + [sym_primitive_type] = ACTIONS(8802), + [anon_sym_enum] = ACTIONS(8802), + [anon_sym_class] = ACTIONS(8802), + [anon_sym_struct] = ACTIONS(8802), + [anon_sym_union] = ACTIONS(8802), + [anon_sym_typename] = ACTIONS(8802), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8802), + [anon_sym_decltype] = ACTIONS(8802), + [anon_sym_explicit] = ACTIONS(8802), + [anon_sym_private] = ACTIONS(8802), + [anon_sym_template] = ACTIONS(8802), + [anon_sym_operator] = ACTIONS(8802), + [anon_sym_friend] = ACTIONS(8802), + [anon_sym_public] = ACTIONS(8802), + [anon_sym_protected] = ACTIONS(8802), + [anon_sym_static_assert] = ACTIONS(8802), + [anon_sym_LBRACK_COLON] = ACTIONS(8804), + }, + [STATE(3410)] = { + [sym_identifier] = ACTIONS(8810), + [aux_sym_preproc_def_token1] = ACTIONS(8810), + [aux_sym_preproc_if_token1] = ACTIONS(8810), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8810), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8810), + [sym_preproc_directive] = ACTIONS(8810), + [anon_sym_LPAREN2] = ACTIONS(8812), + [anon_sym_TILDE] = ACTIONS(8812), + [anon_sym_STAR] = ACTIONS(8812), + [anon_sym_AMP_AMP] = ACTIONS(8812), + [anon_sym_AMP] = ACTIONS(8810), + [anon_sym_SEMI] = ACTIONS(8812), + [anon_sym___extension__] = ACTIONS(8810), + [anon_sym_typedef] = ACTIONS(8810), + [anon_sym_virtual] = ACTIONS(8810), + [anon_sym_extern] = ACTIONS(8810), + [anon_sym___attribute__] = ACTIONS(8810), + [anon_sym___attribute] = ACTIONS(8810), + [anon_sym_using] = ACTIONS(8810), + [anon_sym_COLON_COLON] = ACTIONS(8812), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8812), + [anon_sym___declspec] = ACTIONS(8810), + [anon_sym___based] = ACTIONS(8810), + [anon_sym_RBRACE] = ACTIONS(8812), + [anon_sym_signed] = ACTIONS(8810), + [anon_sym_unsigned] = ACTIONS(8810), + [anon_sym_long] = ACTIONS(8810), + [anon_sym_short] = ACTIONS(8810), + [anon_sym_LBRACK] = ACTIONS(8810), + [anon_sym_static] = ACTIONS(8810), + [anon_sym_register] = ACTIONS(8810), + [anon_sym_inline] = ACTIONS(8810), + [anon_sym___inline] = ACTIONS(8810), + [anon_sym___inline__] = ACTIONS(8810), + [anon_sym___forceinline] = ACTIONS(8810), + [anon_sym_thread_local] = ACTIONS(8810), + [anon_sym___thread] = ACTIONS(8810), + [anon_sym_const] = ACTIONS(8810), + [anon_sym_constexpr] = ACTIONS(8810), + [anon_sym_volatile] = ACTIONS(8810), + [anon_sym_restrict] = ACTIONS(8810), + [anon_sym___restrict__] = ACTIONS(8810), + [anon_sym__Atomic] = ACTIONS(8810), + [anon_sym__Noreturn] = ACTIONS(8810), + [anon_sym_noreturn] = ACTIONS(8810), + [anon_sym__Nonnull] = ACTIONS(8810), + [anon_sym_mutable] = ACTIONS(8810), + [anon_sym_constinit] = ACTIONS(8810), + [anon_sym_consteval] = ACTIONS(8810), + [anon_sym_alignas] = ACTIONS(8810), + [anon_sym__Alignas] = ACTIONS(8810), + [sym_primitive_type] = ACTIONS(8810), + [anon_sym_enum] = ACTIONS(8810), + [anon_sym_class] = ACTIONS(8810), + [anon_sym_struct] = ACTIONS(8810), + [anon_sym_union] = ACTIONS(8810), + [anon_sym_typename] = ACTIONS(8810), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8810), + [anon_sym_decltype] = ACTIONS(8810), + [anon_sym_explicit] = ACTIONS(8810), + [anon_sym_private] = ACTIONS(8810), + [anon_sym_template] = ACTIONS(8810), + [anon_sym_operator] = ACTIONS(8810), + [anon_sym_friend] = ACTIONS(8810), + [anon_sym_public] = ACTIONS(8810), + [anon_sym_protected] = ACTIONS(8810), + [anon_sym_static_assert] = ACTIONS(8810), + [anon_sym_LBRACK_COLON] = ACTIONS(8812), + }, + [STATE(3411)] = { + [sym_identifier] = ACTIONS(4108), + [aux_sym_preproc_def_token1] = ACTIONS(4108), + [aux_sym_preproc_if_token1] = ACTIONS(4108), + [aux_sym_preproc_if_token2] = ACTIONS(4108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4108), + [sym_preproc_directive] = ACTIONS(4108), + [anon_sym_LPAREN2] = ACTIONS(4110), + [anon_sym_TILDE] = ACTIONS(4110), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_AMP_AMP] = ACTIONS(4110), + [anon_sym_AMP] = ACTIONS(4108), + [anon_sym_SEMI] = ACTIONS(4110), + [anon_sym___extension__] = ACTIONS(4108), + [anon_sym_typedef] = ACTIONS(4108), + [anon_sym_virtual] = ACTIONS(4108), + [anon_sym_extern] = ACTIONS(4108), + [anon_sym___attribute__] = ACTIONS(4108), + [anon_sym___attribute] = ACTIONS(4108), + [anon_sym_using] = ACTIONS(4108), + [anon_sym_COLON_COLON] = ACTIONS(4110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4110), + [anon_sym___declspec] = ACTIONS(4108), + [anon_sym___based] = ACTIONS(4108), + [anon_sym_signed] = ACTIONS(4108), + [anon_sym_unsigned] = ACTIONS(4108), + [anon_sym_long] = ACTIONS(4108), + [anon_sym_short] = ACTIONS(4108), + [anon_sym_LBRACK] = ACTIONS(4108), + [anon_sym_static] = ACTIONS(4108), + [anon_sym_register] = ACTIONS(4108), + [anon_sym_inline] = ACTIONS(4108), + [anon_sym___inline] = ACTIONS(4108), + [anon_sym___inline__] = ACTIONS(4108), + [anon_sym___forceinline] = ACTIONS(4108), + [anon_sym_thread_local] = ACTIONS(4108), + [anon_sym___thread] = ACTIONS(4108), + [anon_sym_const] = ACTIONS(4108), + [anon_sym_constexpr] = ACTIONS(4108), + [anon_sym_volatile] = ACTIONS(4108), + [anon_sym_restrict] = ACTIONS(4108), + [anon_sym___restrict__] = ACTIONS(4108), + [anon_sym__Atomic] = ACTIONS(4108), + [anon_sym__Noreturn] = ACTIONS(4108), + [anon_sym_noreturn] = ACTIONS(4108), + [anon_sym__Nonnull] = ACTIONS(4108), + [anon_sym_mutable] = ACTIONS(4108), + [anon_sym_constinit] = ACTIONS(4108), + [anon_sym_consteval] = ACTIONS(4108), + [anon_sym_alignas] = ACTIONS(4108), + [anon_sym__Alignas] = ACTIONS(4108), + [sym_primitive_type] = ACTIONS(4108), + [anon_sym_enum] = ACTIONS(4108), + [anon_sym_class] = ACTIONS(4108), + [anon_sym_struct] = ACTIONS(4108), + [anon_sym_union] = ACTIONS(4108), + [anon_sym_typename] = ACTIONS(4108), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4108), + [anon_sym_decltype] = ACTIONS(4108), + [anon_sym_explicit] = ACTIONS(4108), + [anon_sym_private] = ACTIONS(4108), + [anon_sym_template] = ACTIONS(4108), + [anon_sym_operator] = ACTIONS(4108), + [anon_sym_friend] = ACTIONS(4108), + [anon_sym_public] = ACTIONS(4108), + [anon_sym_protected] = ACTIONS(4108), + [anon_sym_static_assert] = ACTIONS(4108), + [anon_sym_LBRACK_COLON] = ACTIONS(4110), + }, + [STATE(3412)] = { + [sym_identifier] = ACTIONS(3984), + [aux_sym_preproc_def_token1] = ACTIONS(3984), + [aux_sym_preproc_if_token1] = ACTIONS(3984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3984), + [sym_preproc_directive] = ACTIONS(3984), + [anon_sym_LPAREN2] = ACTIONS(3986), + [anon_sym_TILDE] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3986), + [anon_sym_AMP_AMP] = ACTIONS(3986), + [anon_sym_AMP] = ACTIONS(3984), + [anon_sym_SEMI] = ACTIONS(3986), + [anon_sym___extension__] = ACTIONS(3984), + [anon_sym_typedef] = ACTIONS(3984), + [anon_sym_virtual] = ACTIONS(3984), + [anon_sym_extern] = ACTIONS(3984), + [anon_sym___attribute__] = ACTIONS(3984), + [anon_sym___attribute] = ACTIONS(3984), + [anon_sym_using] = ACTIONS(3984), + [anon_sym_COLON_COLON] = ACTIONS(3986), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3986), + [anon_sym___declspec] = ACTIONS(3984), + [anon_sym___based] = ACTIONS(3984), + [anon_sym_RBRACE] = ACTIONS(3986), + [anon_sym_signed] = ACTIONS(3984), + [anon_sym_unsigned] = ACTIONS(3984), + [anon_sym_long] = ACTIONS(3984), + [anon_sym_short] = ACTIONS(3984), + [anon_sym_LBRACK] = ACTIONS(3984), + [anon_sym_static] = ACTIONS(3984), + [anon_sym_register] = ACTIONS(3984), + [anon_sym_inline] = ACTIONS(3984), + [anon_sym___inline] = ACTIONS(3984), + [anon_sym___inline__] = ACTIONS(3984), + [anon_sym___forceinline] = ACTIONS(3984), + [anon_sym_thread_local] = ACTIONS(3984), + [anon_sym___thread] = ACTIONS(3984), + [anon_sym_const] = ACTIONS(3984), + [anon_sym_constexpr] = ACTIONS(3984), + [anon_sym_volatile] = ACTIONS(3984), + [anon_sym_restrict] = ACTIONS(3984), + [anon_sym___restrict__] = ACTIONS(3984), + [anon_sym__Atomic] = ACTIONS(3984), + [anon_sym__Noreturn] = ACTIONS(3984), + [anon_sym_noreturn] = ACTIONS(3984), + [anon_sym__Nonnull] = ACTIONS(3984), + [anon_sym_mutable] = ACTIONS(3984), + [anon_sym_constinit] = ACTIONS(3984), + [anon_sym_consteval] = ACTIONS(3984), + [anon_sym_alignas] = ACTIONS(3984), + [anon_sym__Alignas] = ACTIONS(3984), + [sym_primitive_type] = ACTIONS(3984), + [anon_sym_enum] = ACTIONS(3984), + [anon_sym_class] = ACTIONS(3984), + [anon_sym_struct] = ACTIONS(3984), + [anon_sym_union] = ACTIONS(3984), + [anon_sym_typename] = ACTIONS(3984), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3984), + [anon_sym_decltype] = ACTIONS(3984), + [anon_sym_explicit] = ACTIONS(3984), + [anon_sym_private] = ACTIONS(3984), + [anon_sym_template] = ACTIONS(3984), + [anon_sym_operator] = ACTIONS(3984), + [anon_sym_friend] = ACTIONS(3984), + [anon_sym_public] = ACTIONS(3984), + [anon_sym_protected] = ACTIONS(3984), + [anon_sym_static_assert] = ACTIONS(3984), + [anon_sym_LBRACK_COLON] = ACTIONS(3986), + }, + [STATE(3413)] = { + [sym_identifier] = ACTIONS(8826), + [aux_sym_preproc_def_token1] = ACTIONS(8826), + [aux_sym_preproc_if_token1] = ACTIONS(8826), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8826), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8826), + [sym_preproc_directive] = ACTIONS(8826), + [anon_sym_LPAREN2] = ACTIONS(8828), + [anon_sym_TILDE] = ACTIONS(8828), + [anon_sym_STAR] = ACTIONS(8828), + [anon_sym_AMP_AMP] = ACTIONS(8828), + [anon_sym_AMP] = ACTIONS(8826), + [anon_sym_SEMI] = ACTIONS(8828), + [anon_sym___extension__] = ACTIONS(8826), + [anon_sym_typedef] = ACTIONS(8826), + [anon_sym_virtual] = ACTIONS(8826), + [anon_sym_extern] = ACTIONS(8826), + [anon_sym___attribute__] = ACTIONS(8826), + [anon_sym___attribute] = ACTIONS(8826), + [anon_sym_using] = ACTIONS(8826), + [anon_sym_COLON_COLON] = ACTIONS(8828), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8828), + [anon_sym___declspec] = ACTIONS(8826), + [anon_sym___based] = ACTIONS(8826), + [anon_sym_RBRACE] = ACTIONS(8828), + [anon_sym_signed] = ACTIONS(8826), + [anon_sym_unsigned] = ACTIONS(8826), + [anon_sym_long] = ACTIONS(8826), + [anon_sym_short] = ACTIONS(8826), + [anon_sym_LBRACK] = ACTIONS(8826), + [anon_sym_static] = ACTIONS(8826), + [anon_sym_register] = ACTIONS(8826), + [anon_sym_inline] = ACTIONS(8826), + [anon_sym___inline] = ACTIONS(8826), + [anon_sym___inline__] = ACTIONS(8826), + [anon_sym___forceinline] = ACTIONS(8826), + [anon_sym_thread_local] = ACTIONS(8826), + [anon_sym___thread] = ACTIONS(8826), + [anon_sym_const] = ACTIONS(8826), + [anon_sym_constexpr] = ACTIONS(8826), + [anon_sym_volatile] = ACTIONS(8826), + [anon_sym_restrict] = ACTIONS(8826), + [anon_sym___restrict__] = ACTIONS(8826), + [anon_sym__Atomic] = ACTIONS(8826), + [anon_sym__Noreturn] = ACTIONS(8826), + [anon_sym_noreturn] = ACTIONS(8826), + [anon_sym__Nonnull] = ACTIONS(8826), + [anon_sym_mutable] = ACTIONS(8826), + [anon_sym_constinit] = ACTIONS(8826), + [anon_sym_consteval] = ACTIONS(8826), + [anon_sym_alignas] = ACTIONS(8826), + [anon_sym__Alignas] = ACTIONS(8826), + [sym_primitive_type] = ACTIONS(8826), + [anon_sym_enum] = ACTIONS(8826), + [anon_sym_class] = ACTIONS(8826), + [anon_sym_struct] = ACTIONS(8826), + [anon_sym_union] = ACTIONS(8826), + [anon_sym_typename] = ACTIONS(8826), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8826), + [anon_sym_decltype] = ACTIONS(8826), + [anon_sym_explicit] = ACTIONS(8826), + [anon_sym_private] = ACTIONS(8826), + [anon_sym_template] = ACTIONS(8826), + [anon_sym_operator] = ACTIONS(8826), + [anon_sym_friend] = ACTIONS(8826), + [anon_sym_public] = ACTIONS(8826), + [anon_sym_protected] = ACTIONS(8826), + [anon_sym_static_assert] = ACTIONS(8826), + [anon_sym_LBRACK_COLON] = ACTIONS(8828), + }, + [STATE(3414)] = { + [sym_identifier] = ACTIONS(8734), + [aux_sym_preproc_def_token1] = ACTIONS(8734), + [aux_sym_preproc_if_token1] = ACTIONS(8734), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8734), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8734), + [sym_preproc_directive] = ACTIONS(8734), + [anon_sym_LPAREN2] = ACTIONS(8736), + [anon_sym_TILDE] = ACTIONS(8736), + [anon_sym_STAR] = ACTIONS(8736), + [anon_sym_AMP_AMP] = ACTIONS(8736), + [anon_sym_AMP] = ACTIONS(8734), + [anon_sym_SEMI] = ACTIONS(8736), + [anon_sym___extension__] = ACTIONS(8734), + [anon_sym_typedef] = ACTIONS(8734), + [anon_sym_virtual] = ACTIONS(8734), + [anon_sym_extern] = ACTIONS(8734), + [anon_sym___attribute__] = ACTIONS(8734), + [anon_sym___attribute] = ACTIONS(8734), + [anon_sym_using] = ACTIONS(8734), + [anon_sym_COLON_COLON] = ACTIONS(8736), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8736), + [anon_sym___declspec] = ACTIONS(8734), + [anon_sym___based] = ACTIONS(8734), + [anon_sym_RBRACE] = ACTIONS(8736), + [anon_sym_signed] = ACTIONS(8734), + [anon_sym_unsigned] = ACTIONS(8734), + [anon_sym_long] = ACTIONS(8734), + [anon_sym_short] = ACTIONS(8734), + [anon_sym_LBRACK] = ACTIONS(8734), + [anon_sym_static] = ACTIONS(8734), + [anon_sym_register] = ACTIONS(8734), + [anon_sym_inline] = ACTIONS(8734), + [anon_sym___inline] = ACTIONS(8734), + [anon_sym___inline__] = ACTIONS(8734), + [anon_sym___forceinline] = ACTIONS(8734), + [anon_sym_thread_local] = ACTIONS(8734), + [anon_sym___thread] = ACTIONS(8734), + [anon_sym_const] = ACTIONS(8734), + [anon_sym_constexpr] = ACTIONS(8734), + [anon_sym_volatile] = ACTIONS(8734), + [anon_sym_restrict] = ACTIONS(8734), + [anon_sym___restrict__] = ACTIONS(8734), + [anon_sym__Atomic] = ACTIONS(8734), + [anon_sym__Noreturn] = ACTIONS(8734), + [anon_sym_noreturn] = ACTIONS(8734), + [anon_sym__Nonnull] = ACTIONS(8734), + [anon_sym_mutable] = ACTIONS(8734), + [anon_sym_constinit] = ACTIONS(8734), + [anon_sym_consteval] = ACTIONS(8734), + [anon_sym_alignas] = ACTIONS(8734), + [anon_sym__Alignas] = ACTIONS(8734), + [sym_primitive_type] = ACTIONS(8734), + [anon_sym_enum] = ACTIONS(8734), + [anon_sym_class] = ACTIONS(8734), + [anon_sym_struct] = ACTIONS(8734), + [anon_sym_union] = ACTIONS(8734), + [anon_sym_typename] = ACTIONS(8734), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8734), + [anon_sym_decltype] = ACTIONS(8734), + [anon_sym_explicit] = ACTIONS(8734), + [anon_sym_private] = ACTIONS(8734), + [anon_sym_template] = ACTIONS(8734), + [anon_sym_operator] = ACTIONS(8734), + [anon_sym_friend] = ACTIONS(8734), + [anon_sym_public] = ACTIONS(8734), + [anon_sym_protected] = ACTIONS(8734), + [anon_sym_static_assert] = ACTIONS(8734), + [anon_sym_LBRACK_COLON] = ACTIONS(8736), + }, + [STATE(3415)] = { + [sym_identifier] = ACTIONS(8790), + [aux_sym_preproc_def_token1] = ACTIONS(8790), + [aux_sym_preproc_if_token1] = ACTIONS(8790), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8790), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8790), + [sym_preproc_directive] = ACTIONS(8790), + [anon_sym_LPAREN2] = ACTIONS(8792), + [anon_sym_TILDE] = ACTIONS(8792), + [anon_sym_STAR] = ACTIONS(8792), + [anon_sym_AMP_AMP] = ACTIONS(8792), + [anon_sym_AMP] = ACTIONS(8790), + [anon_sym_SEMI] = ACTIONS(8792), + [anon_sym___extension__] = ACTIONS(8790), + [anon_sym_typedef] = ACTIONS(8790), + [anon_sym_virtual] = ACTIONS(8790), + [anon_sym_extern] = ACTIONS(8790), + [anon_sym___attribute__] = ACTIONS(8790), + [anon_sym___attribute] = ACTIONS(8790), + [anon_sym_using] = ACTIONS(8790), + [anon_sym_COLON_COLON] = ACTIONS(8792), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8792), + [anon_sym___declspec] = ACTIONS(8790), + [anon_sym___based] = ACTIONS(8790), + [anon_sym_RBRACE] = ACTIONS(8792), + [anon_sym_signed] = ACTIONS(8790), + [anon_sym_unsigned] = ACTIONS(8790), + [anon_sym_long] = ACTIONS(8790), + [anon_sym_short] = ACTIONS(8790), + [anon_sym_LBRACK] = ACTIONS(8790), + [anon_sym_static] = ACTIONS(8790), + [anon_sym_register] = ACTIONS(8790), + [anon_sym_inline] = ACTIONS(8790), + [anon_sym___inline] = ACTIONS(8790), + [anon_sym___inline__] = ACTIONS(8790), + [anon_sym___forceinline] = ACTIONS(8790), + [anon_sym_thread_local] = ACTIONS(8790), + [anon_sym___thread] = ACTIONS(8790), + [anon_sym_const] = ACTIONS(8790), + [anon_sym_constexpr] = ACTIONS(8790), + [anon_sym_volatile] = ACTIONS(8790), + [anon_sym_restrict] = ACTIONS(8790), + [anon_sym___restrict__] = ACTIONS(8790), + [anon_sym__Atomic] = ACTIONS(8790), + [anon_sym__Noreturn] = ACTIONS(8790), + [anon_sym_noreturn] = ACTIONS(8790), + [anon_sym__Nonnull] = ACTIONS(8790), + [anon_sym_mutable] = ACTIONS(8790), + [anon_sym_constinit] = ACTIONS(8790), + [anon_sym_consteval] = ACTIONS(8790), + [anon_sym_alignas] = ACTIONS(8790), + [anon_sym__Alignas] = ACTIONS(8790), + [sym_primitive_type] = ACTIONS(8790), + [anon_sym_enum] = ACTIONS(8790), + [anon_sym_class] = ACTIONS(8790), + [anon_sym_struct] = ACTIONS(8790), + [anon_sym_union] = ACTIONS(8790), + [anon_sym_typename] = ACTIONS(8790), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8790), + [anon_sym_decltype] = ACTIONS(8790), + [anon_sym_explicit] = ACTIONS(8790), + [anon_sym_private] = ACTIONS(8790), + [anon_sym_template] = ACTIONS(8790), + [anon_sym_operator] = ACTIONS(8790), + [anon_sym_friend] = ACTIONS(8790), + [anon_sym_public] = ACTIONS(8790), + [anon_sym_protected] = ACTIONS(8790), + [anon_sym_static_assert] = ACTIONS(8790), + [anon_sym_LBRACK_COLON] = ACTIONS(8792), + }, + [STATE(3416)] = { + [sym_identifier] = ACTIONS(4048), + [aux_sym_preproc_def_token1] = ACTIONS(4048), + [aux_sym_preproc_if_token1] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4048), + [sym_preproc_directive] = ACTIONS(4048), + [anon_sym_LPAREN2] = ACTIONS(4050), + [anon_sym_TILDE] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(4050), + [anon_sym_AMP_AMP] = ACTIONS(4050), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_SEMI] = ACTIONS(4050), + [anon_sym___extension__] = ACTIONS(4048), + [anon_sym_typedef] = ACTIONS(4048), + [anon_sym_virtual] = ACTIONS(4048), + [anon_sym_extern] = ACTIONS(4048), + [anon_sym___attribute__] = ACTIONS(4048), + [anon_sym___attribute] = ACTIONS(4048), + [anon_sym_using] = ACTIONS(4048), + [anon_sym_COLON_COLON] = ACTIONS(4050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4050), + [anon_sym___declspec] = ACTIONS(4048), + [anon_sym___based] = ACTIONS(4048), + [anon_sym_RBRACE] = ACTIONS(4050), + [anon_sym_signed] = ACTIONS(4048), + [anon_sym_unsigned] = ACTIONS(4048), + [anon_sym_long] = ACTIONS(4048), + [anon_sym_short] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_static] = ACTIONS(4048), + [anon_sym_register] = ACTIONS(4048), + [anon_sym_inline] = ACTIONS(4048), + [anon_sym___inline] = ACTIONS(4048), + [anon_sym___inline__] = ACTIONS(4048), + [anon_sym___forceinline] = ACTIONS(4048), + [anon_sym_thread_local] = ACTIONS(4048), + [anon_sym___thread] = ACTIONS(4048), + [anon_sym_const] = ACTIONS(4048), + [anon_sym_constexpr] = ACTIONS(4048), + [anon_sym_volatile] = ACTIONS(4048), + [anon_sym_restrict] = ACTIONS(4048), + [anon_sym___restrict__] = ACTIONS(4048), + [anon_sym__Atomic] = ACTIONS(4048), + [anon_sym__Noreturn] = ACTIONS(4048), + [anon_sym_noreturn] = ACTIONS(4048), + [anon_sym__Nonnull] = ACTIONS(4048), + [anon_sym_mutable] = ACTIONS(4048), + [anon_sym_constinit] = ACTIONS(4048), + [anon_sym_consteval] = ACTIONS(4048), + [anon_sym_alignas] = ACTIONS(4048), + [anon_sym__Alignas] = ACTIONS(4048), + [sym_primitive_type] = ACTIONS(4048), + [anon_sym_enum] = ACTIONS(4048), + [anon_sym_class] = ACTIONS(4048), + [anon_sym_struct] = ACTIONS(4048), + [anon_sym_union] = ACTIONS(4048), + [anon_sym_typename] = ACTIONS(4048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4048), + [anon_sym_decltype] = ACTIONS(4048), + [anon_sym_explicit] = ACTIONS(4048), + [anon_sym_private] = ACTIONS(4048), + [anon_sym_template] = ACTIONS(4048), + [anon_sym_operator] = ACTIONS(4048), + [anon_sym_friend] = ACTIONS(4048), + [anon_sym_public] = ACTIONS(4048), + [anon_sym_protected] = ACTIONS(4048), + [anon_sym_static_assert] = ACTIONS(4048), + [anon_sym_LBRACK_COLON] = ACTIONS(4050), + }, + [STATE(3417)] = { + [sym_identifier] = ACTIONS(8643), + [aux_sym_preproc_def_token1] = ACTIONS(8643), + [aux_sym_preproc_if_token1] = ACTIONS(8643), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8643), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8643), + [sym_preproc_directive] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8645), + [anon_sym_TILDE] = ACTIONS(8645), + [anon_sym_STAR] = ACTIONS(8645), + [anon_sym_AMP_AMP] = ACTIONS(8645), + [anon_sym_AMP] = ACTIONS(8643), + [anon_sym_SEMI] = ACTIONS(8645), + [anon_sym___extension__] = ACTIONS(8643), + [anon_sym_typedef] = ACTIONS(8643), + [anon_sym_virtual] = ACTIONS(8643), + [anon_sym_extern] = ACTIONS(8643), + [anon_sym___attribute__] = ACTIONS(8643), + [anon_sym___attribute] = ACTIONS(8643), + [anon_sym_using] = ACTIONS(8643), + [anon_sym_COLON_COLON] = ACTIONS(8645), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8645), + [anon_sym___declspec] = ACTIONS(8643), + [anon_sym___based] = ACTIONS(8643), + [anon_sym_RBRACE] = ACTIONS(8645), + [anon_sym_signed] = ACTIONS(8643), + [anon_sym_unsigned] = ACTIONS(8643), + [anon_sym_long] = ACTIONS(8643), + [anon_sym_short] = ACTIONS(8643), + [anon_sym_LBRACK] = ACTIONS(8643), + [anon_sym_static] = ACTIONS(8643), + [anon_sym_register] = ACTIONS(8643), + [anon_sym_inline] = ACTIONS(8643), + [anon_sym___inline] = ACTIONS(8643), + [anon_sym___inline__] = ACTIONS(8643), + [anon_sym___forceinline] = ACTIONS(8643), + [anon_sym_thread_local] = ACTIONS(8643), + [anon_sym___thread] = ACTIONS(8643), + [anon_sym_const] = ACTIONS(8643), + [anon_sym_constexpr] = ACTIONS(8643), + [anon_sym_volatile] = ACTIONS(8643), + [anon_sym_restrict] = ACTIONS(8643), + [anon_sym___restrict__] = ACTIONS(8643), + [anon_sym__Atomic] = ACTIONS(8643), + [anon_sym__Noreturn] = ACTIONS(8643), + [anon_sym_noreturn] = ACTIONS(8643), + [anon_sym__Nonnull] = ACTIONS(8643), + [anon_sym_mutable] = ACTIONS(8643), + [anon_sym_constinit] = ACTIONS(8643), + [anon_sym_consteval] = ACTIONS(8643), + [anon_sym_alignas] = ACTIONS(8643), + [anon_sym__Alignas] = ACTIONS(8643), + [sym_primitive_type] = ACTIONS(8643), + [anon_sym_enum] = ACTIONS(8643), + [anon_sym_class] = ACTIONS(8643), + [anon_sym_struct] = ACTIONS(8643), + [anon_sym_union] = ACTIONS(8643), + [anon_sym_typename] = ACTIONS(8643), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8643), + [anon_sym_decltype] = ACTIONS(8643), + [anon_sym_explicit] = ACTIONS(8643), + [anon_sym_private] = ACTIONS(8643), + [anon_sym_template] = ACTIONS(8643), + [anon_sym_operator] = ACTIONS(8643), + [anon_sym_friend] = ACTIONS(8643), + [anon_sym_public] = ACTIONS(8643), + [anon_sym_protected] = ACTIONS(8643), + [anon_sym_static_assert] = ACTIONS(8643), + [anon_sym_LBRACK_COLON] = ACTIONS(8645), + }, + [STATE(3418)] = { + [sym_identifier] = ACTIONS(8643), + [aux_sym_preproc_def_token1] = ACTIONS(8643), + [aux_sym_preproc_if_token1] = ACTIONS(8643), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8643), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8643), + [sym_preproc_directive] = ACTIONS(8643), + [anon_sym_LPAREN2] = ACTIONS(8645), + [anon_sym_TILDE] = ACTIONS(8645), + [anon_sym_STAR] = ACTIONS(8645), + [anon_sym_AMP_AMP] = ACTIONS(8645), + [anon_sym_AMP] = ACTIONS(8643), + [anon_sym_SEMI] = ACTIONS(8645), + [anon_sym___extension__] = ACTIONS(8643), + [anon_sym_typedef] = ACTIONS(8643), + [anon_sym_virtual] = ACTIONS(8643), + [anon_sym_extern] = ACTIONS(8643), + [anon_sym___attribute__] = ACTIONS(8643), + [anon_sym___attribute] = ACTIONS(8643), + [anon_sym_using] = ACTIONS(8643), + [anon_sym_COLON_COLON] = ACTIONS(8645), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8645), + [anon_sym___declspec] = ACTIONS(8643), + [anon_sym___based] = ACTIONS(8643), + [anon_sym_RBRACE] = ACTIONS(8645), + [anon_sym_signed] = ACTIONS(8643), + [anon_sym_unsigned] = ACTIONS(8643), + [anon_sym_long] = ACTIONS(8643), + [anon_sym_short] = ACTIONS(8643), + [anon_sym_LBRACK] = ACTIONS(8643), + [anon_sym_static] = ACTIONS(8643), + [anon_sym_register] = ACTIONS(8643), + [anon_sym_inline] = ACTIONS(8643), + [anon_sym___inline] = ACTIONS(8643), + [anon_sym___inline__] = ACTIONS(8643), + [anon_sym___forceinline] = ACTIONS(8643), + [anon_sym_thread_local] = ACTIONS(8643), + [anon_sym___thread] = ACTIONS(8643), + [anon_sym_const] = ACTIONS(8643), + [anon_sym_constexpr] = ACTIONS(8643), + [anon_sym_volatile] = ACTIONS(8643), + [anon_sym_restrict] = ACTIONS(8643), + [anon_sym___restrict__] = ACTIONS(8643), + [anon_sym__Atomic] = ACTIONS(8643), + [anon_sym__Noreturn] = ACTIONS(8643), + [anon_sym_noreturn] = ACTIONS(8643), + [anon_sym__Nonnull] = ACTIONS(8643), + [anon_sym_mutable] = ACTIONS(8643), + [anon_sym_constinit] = ACTIONS(8643), + [anon_sym_consteval] = ACTIONS(8643), + [anon_sym_alignas] = ACTIONS(8643), + [anon_sym__Alignas] = ACTIONS(8643), + [sym_primitive_type] = ACTIONS(8643), + [anon_sym_enum] = ACTIONS(8643), + [anon_sym_class] = ACTIONS(8643), + [anon_sym_struct] = ACTIONS(8643), + [anon_sym_union] = ACTIONS(8643), + [anon_sym_typename] = ACTIONS(8643), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8643), + [anon_sym_decltype] = ACTIONS(8643), + [anon_sym_explicit] = ACTIONS(8643), + [anon_sym_private] = ACTIONS(8643), + [anon_sym_template] = ACTIONS(8643), + [anon_sym_operator] = ACTIONS(8643), + [anon_sym_friend] = ACTIONS(8643), + [anon_sym_public] = ACTIONS(8643), + [anon_sym_protected] = ACTIONS(8643), + [anon_sym_static_assert] = ACTIONS(8643), + [anon_sym_LBRACK_COLON] = ACTIONS(8645), + }, + [STATE(3419)] = { + [sym_identifier] = ACTIONS(8647), + [aux_sym_preproc_def_token1] = ACTIONS(8647), + [aux_sym_preproc_if_token1] = ACTIONS(8647), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8647), + [sym_preproc_directive] = ACTIONS(8647), + [anon_sym_LPAREN2] = ACTIONS(8649), + [anon_sym_TILDE] = ACTIONS(8649), + [anon_sym_STAR] = ACTIONS(8649), + [anon_sym_AMP_AMP] = ACTIONS(8649), + [anon_sym_AMP] = ACTIONS(8647), + [anon_sym_SEMI] = ACTIONS(8649), + [anon_sym___extension__] = ACTIONS(8647), + [anon_sym_typedef] = ACTIONS(8647), + [anon_sym_virtual] = ACTIONS(8647), + [anon_sym_extern] = ACTIONS(8647), + [anon_sym___attribute__] = ACTIONS(8647), + [anon_sym___attribute] = ACTIONS(8647), + [anon_sym_using] = ACTIONS(8647), + [anon_sym_COLON_COLON] = ACTIONS(8649), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8649), + [anon_sym___declspec] = ACTIONS(8647), + [anon_sym___based] = ACTIONS(8647), + [anon_sym_RBRACE] = ACTIONS(8649), + [anon_sym_signed] = ACTIONS(8647), + [anon_sym_unsigned] = ACTIONS(8647), + [anon_sym_long] = ACTIONS(8647), + [anon_sym_short] = ACTIONS(8647), + [anon_sym_LBRACK] = ACTIONS(8647), + [anon_sym_static] = ACTIONS(8647), + [anon_sym_register] = ACTIONS(8647), + [anon_sym_inline] = ACTIONS(8647), + [anon_sym___inline] = ACTIONS(8647), + [anon_sym___inline__] = ACTIONS(8647), + [anon_sym___forceinline] = ACTIONS(8647), + [anon_sym_thread_local] = ACTIONS(8647), + [anon_sym___thread] = ACTIONS(8647), + [anon_sym_const] = ACTIONS(8647), + [anon_sym_constexpr] = ACTIONS(8647), + [anon_sym_volatile] = ACTIONS(8647), + [anon_sym_restrict] = ACTIONS(8647), + [anon_sym___restrict__] = ACTIONS(8647), + [anon_sym__Atomic] = ACTIONS(8647), + [anon_sym__Noreturn] = ACTIONS(8647), + [anon_sym_noreturn] = ACTIONS(8647), + [anon_sym__Nonnull] = ACTIONS(8647), + [anon_sym_mutable] = ACTIONS(8647), + [anon_sym_constinit] = ACTIONS(8647), + [anon_sym_consteval] = ACTIONS(8647), + [anon_sym_alignas] = ACTIONS(8647), + [anon_sym__Alignas] = ACTIONS(8647), + [sym_primitive_type] = ACTIONS(8647), + [anon_sym_enum] = ACTIONS(8647), + [anon_sym_class] = ACTIONS(8647), + [anon_sym_struct] = ACTIONS(8647), + [anon_sym_union] = ACTIONS(8647), + [anon_sym_typename] = ACTIONS(8647), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8647), + [anon_sym_decltype] = ACTIONS(8647), + [anon_sym_explicit] = ACTIONS(8647), + [anon_sym_private] = ACTIONS(8647), + [anon_sym_template] = ACTIONS(8647), + [anon_sym_operator] = ACTIONS(8647), + [anon_sym_friend] = ACTIONS(8647), + [anon_sym_public] = ACTIONS(8647), + [anon_sym_protected] = ACTIONS(8647), + [anon_sym_static_assert] = ACTIONS(8647), + [anon_sym_LBRACK_COLON] = ACTIONS(8649), + }, + [STATE(3420)] = { + [sym_identifier] = ACTIONS(8661), + [aux_sym_preproc_def_token1] = ACTIONS(8661), + [aux_sym_preproc_if_token1] = ACTIONS(8661), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8661), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8661), + [sym_preproc_directive] = ACTIONS(8661), + [anon_sym_LPAREN2] = ACTIONS(8663), + [anon_sym_TILDE] = ACTIONS(8663), + [anon_sym_STAR] = ACTIONS(8663), + [anon_sym_AMP_AMP] = ACTIONS(8663), + [anon_sym_AMP] = ACTIONS(8661), + [anon_sym_SEMI] = ACTIONS(8663), + [anon_sym___extension__] = ACTIONS(8661), + [anon_sym_typedef] = ACTIONS(8661), + [anon_sym_virtual] = ACTIONS(8661), + [anon_sym_extern] = ACTIONS(8661), + [anon_sym___attribute__] = ACTIONS(8661), + [anon_sym___attribute] = ACTIONS(8661), + [anon_sym_using] = ACTIONS(8661), + [anon_sym_COLON_COLON] = ACTIONS(8663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8663), + [anon_sym___declspec] = ACTIONS(8661), + [anon_sym___based] = ACTIONS(8661), + [anon_sym_RBRACE] = ACTIONS(8663), + [anon_sym_signed] = ACTIONS(8661), + [anon_sym_unsigned] = ACTIONS(8661), + [anon_sym_long] = ACTIONS(8661), + [anon_sym_short] = ACTIONS(8661), + [anon_sym_LBRACK] = ACTIONS(8661), + [anon_sym_static] = ACTIONS(8661), + [anon_sym_register] = ACTIONS(8661), + [anon_sym_inline] = ACTIONS(8661), + [anon_sym___inline] = ACTIONS(8661), + [anon_sym___inline__] = ACTIONS(8661), + [anon_sym___forceinline] = ACTIONS(8661), + [anon_sym_thread_local] = ACTIONS(8661), + [anon_sym___thread] = ACTIONS(8661), + [anon_sym_const] = ACTIONS(8661), + [anon_sym_constexpr] = ACTIONS(8661), + [anon_sym_volatile] = ACTIONS(8661), + [anon_sym_restrict] = ACTIONS(8661), + [anon_sym___restrict__] = ACTIONS(8661), + [anon_sym__Atomic] = ACTIONS(8661), + [anon_sym__Noreturn] = ACTIONS(8661), + [anon_sym_noreturn] = ACTIONS(8661), + [anon_sym__Nonnull] = ACTIONS(8661), + [anon_sym_mutable] = ACTIONS(8661), + [anon_sym_constinit] = ACTIONS(8661), + [anon_sym_consteval] = ACTIONS(8661), + [anon_sym_alignas] = ACTIONS(8661), + [anon_sym__Alignas] = ACTIONS(8661), + [sym_primitive_type] = ACTIONS(8661), + [anon_sym_enum] = ACTIONS(8661), + [anon_sym_class] = ACTIONS(8661), + [anon_sym_struct] = ACTIONS(8661), + [anon_sym_union] = ACTIONS(8661), + [anon_sym_typename] = ACTIONS(8661), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8661), + [anon_sym_decltype] = ACTIONS(8661), + [anon_sym_explicit] = ACTIONS(8661), + [anon_sym_private] = ACTIONS(8661), + [anon_sym_template] = ACTIONS(8661), + [anon_sym_operator] = ACTIONS(8661), + [anon_sym_friend] = ACTIONS(8661), + [anon_sym_public] = ACTIONS(8661), + [anon_sym_protected] = ACTIONS(8661), + [anon_sym_static_assert] = ACTIONS(8661), + [anon_sym_LBRACK_COLON] = ACTIONS(8663), + }, + [STATE(3421)] = { + [sym_identifier] = ACTIONS(8683), + [aux_sym_preproc_def_token1] = ACTIONS(8683), + [aux_sym_preproc_if_token1] = ACTIONS(8683), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8683), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8683), + [sym_preproc_directive] = ACTIONS(8683), + [anon_sym_LPAREN2] = ACTIONS(8685), + [anon_sym_TILDE] = ACTIONS(8685), + [anon_sym_STAR] = ACTIONS(8685), + [anon_sym_AMP_AMP] = ACTIONS(8685), + [anon_sym_AMP] = ACTIONS(8683), + [anon_sym_SEMI] = ACTIONS(8685), + [anon_sym___extension__] = ACTIONS(8683), + [anon_sym_typedef] = ACTIONS(8683), + [anon_sym_virtual] = ACTIONS(8683), + [anon_sym_extern] = ACTIONS(8683), + [anon_sym___attribute__] = ACTIONS(8683), + [anon_sym___attribute] = ACTIONS(8683), + [anon_sym_using] = ACTIONS(8683), + [anon_sym_COLON_COLON] = ACTIONS(8685), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8685), + [anon_sym___declspec] = ACTIONS(8683), + [anon_sym___based] = ACTIONS(8683), + [anon_sym_RBRACE] = ACTIONS(8685), + [anon_sym_signed] = ACTIONS(8683), + [anon_sym_unsigned] = ACTIONS(8683), + [anon_sym_long] = ACTIONS(8683), + [anon_sym_short] = ACTIONS(8683), + [anon_sym_LBRACK] = ACTIONS(8683), + [anon_sym_static] = ACTIONS(8683), + [anon_sym_register] = ACTIONS(8683), + [anon_sym_inline] = ACTIONS(8683), + [anon_sym___inline] = ACTIONS(8683), + [anon_sym___inline__] = ACTIONS(8683), + [anon_sym___forceinline] = ACTIONS(8683), + [anon_sym_thread_local] = ACTIONS(8683), + [anon_sym___thread] = ACTIONS(8683), + [anon_sym_const] = ACTIONS(8683), + [anon_sym_constexpr] = ACTIONS(8683), + [anon_sym_volatile] = ACTIONS(8683), + [anon_sym_restrict] = ACTIONS(8683), + [anon_sym___restrict__] = ACTIONS(8683), + [anon_sym__Atomic] = ACTIONS(8683), + [anon_sym__Noreturn] = ACTIONS(8683), + [anon_sym_noreturn] = ACTIONS(8683), + [anon_sym__Nonnull] = ACTIONS(8683), + [anon_sym_mutable] = ACTIONS(8683), + [anon_sym_constinit] = ACTIONS(8683), + [anon_sym_consteval] = ACTIONS(8683), + [anon_sym_alignas] = ACTIONS(8683), + [anon_sym__Alignas] = ACTIONS(8683), + [sym_primitive_type] = ACTIONS(8683), + [anon_sym_enum] = ACTIONS(8683), + [anon_sym_class] = ACTIONS(8683), + [anon_sym_struct] = ACTIONS(8683), + [anon_sym_union] = ACTIONS(8683), + [anon_sym_typename] = ACTIONS(8683), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8683), + [anon_sym_decltype] = ACTIONS(8683), + [anon_sym_explicit] = ACTIONS(8683), + [anon_sym_private] = ACTIONS(8683), + [anon_sym_template] = ACTIONS(8683), + [anon_sym_operator] = ACTIONS(8683), + [anon_sym_friend] = ACTIONS(8683), + [anon_sym_public] = ACTIONS(8683), + [anon_sym_protected] = ACTIONS(8683), + [anon_sym_static_assert] = ACTIONS(8683), + [anon_sym_LBRACK_COLON] = ACTIONS(8685), + }, + [STATE(3422)] = { + [sym_identifier] = ACTIONS(8738), + [aux_sym_preproc_def_token1] = ACTIONS(8738), + [aux_sym_preproc_if_token1] = ACTIONS(8738), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8738), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8738), + [sym_preproc_directive] = ACTIONS(8738), + [anon_sym_LPAREN2] = ACTIONS(8740), + [anon_sym_TILDE] = ACTIONS(8740), + [anon_sym_STAR] = ACTIONS(8740), + [anon_sym_AMP_AMP] = ACTIONS(8740), + [anon_sym_AMP] = ACTIONS(8738), + [anon_sym_SEMI] = ACTIONS(8740), + [anon_sym___extension__] = ACTIONS(8738), + [anon_sym_typedef] = ACTIONS(8738), + [anon_sym_virtual] = ACTIONS(8738), + [anon_sym_extern] = ACTIONS(8738), + [anon_sym___attribute__] = ACTIONS(8738), + [anon_sym___attribute] = ACTIONS(8738), + [anon_sym_using] = ACTIONS(8738), + [anon_sym_COLON_COLON] = ACTIONS(8740), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8740), + [anon_sym___declspec] = ACTIONS(8738), + [anon_sym___based] = ACTIONS(8738), + [anon_sym_RBRACE] = ACTIONS(8740), + [anon_sym_signed] = ACTIONS(8738), + [anon_sym_unsigned] = ACTIONS(8738), + [anon_sym_long] = ACTIONS(8738), + [anon_sym_short] = ACTIONS(8738), + [anon_sym_LBRACK] = ACTIONS(8738), + [anon_sym_static] = ACTIONS(8738), + [anon_sym_register] = ACTIONS(8738), + [anon_sym_inline] = ACTIONS(8738), + [anon_sym___inline] = ACTIONS(8738), + [anon_sym___inline__] = ACTIONS(8738), + [anon_sym___forceinline] = ACTIONS(8738), + [anon_sym_thread_local] = ACTIONS(8738), + [anon_sym___thread] = ACTIONS(8738), + [anon_sym_const] = ACTIONS(8738), + [anon_sym_constexpr] = ACTIONS(8738), + [anon_sym_volatile] = ACTIONS(8738), + [anon_sym_restrict] = ACTIONS(8738), + [anon_sym___restrict__] = ACTIONS(8738), + [anon_sym__Atomic] = ACTIONS(8738), + [anon_sym__Noreturn] = ACTIONS(8738), + [anon_sym_noreturn] = ACTIONS(8738), + [anon_sym__Nonnull] = ACTIONS(8738), + [anon_sym_mutable] = ACTIONS(8738), + [anon_sym_constinit] = ACTIONS(8738), + [anon_sym_consteval] = ACTIONS(8738), + [anon_sym_alignas] = ACTIONS(8738), + [anon_sym__Alignas] = ACTIONS(8738), + [sym_primitive_type] = ACTIONS(8738), + [anon_sym_enum] = ACTIONS(8738), + [anon_sym_class] = ACTIONS(8738), + [anon_sym_struct] = ACTIONS(8738), + [anon_sym_union] = ACTIONS(8738), + [anon_sym_typename] = ACTIONS(8738), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8738), + [anon_sym_decltype] = ACTIONS(8738), + [anon_sym_explicit] = ACTIONS(8738), + [anon_sym_private] = ACTIONS(8738), + [anon_sym_template] = ACTIONS(8738), + [anon_sym_operator] = ACTIONS(8738), + [anon_sym_friend] = ACTIONS(8738), + [anon_sym_public] = ACTIONS(8738), + [anon_sym_protected] = ACTIONS(8738), + [anon_sym_static_assert] = ACTIONS(8738), + [anon_sym_LBRACK_COLON] = ACTIONS(8740), + }, + [STATE(3423)] = { + [sym_identifier] = ACTIONS(8778), + [aux_sym_preproc_def_token1] = ACTIONS(8778), + [aux_sym_preproc_if_token1] = ACTIONS(8778), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8778), + [sym_preproc_directive] = ACTIONS(8778), + [anon_sym_LPAREN2] = ACTIONS(8780), + [anon_sym_TILDE] = ACTIONS(8780), + [anon_sym_STAR] = ACTIONS(8780), + [anon_sym_AMP_AMP] = ACTIONS(8780), + [anon_sym_AMP] = ACTIONS(8778), + [anon_sym_SEMI] = ACTIONS(8780), + [anon_sym___extension__] = ACTIONS(8778), + [anon_sym_typedef] = ACTIONS(8778), + [anon_sym_virtual] = ACTIONS(8778), + [anon_sym_extern] = ACTIONS(8778), + [anon_sym___attribute__] = ACTIONS(8778), + [anon_sym___attribute] = ACTIONS(8778), + [anon_sym_using] = ACTIONS(8778), + [anon_sym_COLON_COLON] = ACTIONS(8780), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8780), + [anon_sym___declspec] = ACTIONS(8778), + [anon_sym___based] = ACTIONS(8778), + [anon_sym_RBRACE] = ACTIONS(8780), + [anon_sym_signed] = ACTIONS(8778), + [anon_sym_unsigned] = ACTIONS(8778), + [anon_sym_long] = ACTIONS(8778), + [anon_sym_short] = ACTIONS(8778), + [anon_sym_LBRACK] = ACTIONS(8778), + [anon_sym_static] = ACTIONS(8778), + [anon_sym_register] = ACTIONS(8778), + [anon_sym_inline] = ACTIONS(8778), + [anon_sym___inline] = ACTIONS(8778), + [anon_sym___inline__] = ACTIONS(8778), + [anon_sym___forceinline] = ACTIONS(8778), + [anon_sym_thread_local] = ACTIONS(8778), + [anon_sym___thread] = ACTIONS(8778), + [anon_sym_const] = ACTIONS(8778), + [anon_sym_constexpr] = ACTIONS(8778), + [anon_sym_volatile] = ACTIONS(8778), + [anon_sym_restrict] = ACTIONS(8778), + [anon_sym___restrict__] = ACTIONS(8778), + [anon_sym__Atomic] = ACTIONS(8778), + [anon_sym__Noreturn] = ACTIONS(8778), + [anon_sym_noreturn] = ACTIONS(8778), + [anon_sym__Nonnull] = ACTIONS(8778), + [anon_sym_mutable] = ACTIONS(8778), + [anon_sym_constinit] = ACTIONS(8778), + [anon_sym_consteval] = ACTIONS(8778), + [anon_sym_alignas] = ACTIONS(8778), + [anon_sym__Alignas] = ACTIONS(8778), + [sym_primitive_type] = ACTIONS(8778), + [anon_sym_enum] = ACTIONS(8778), + [anon_sym_class] = ACTIONS(8778), + [anon_sym_struct] = ACTIONS(8778), + [anon_sym_union] = ACTIONS(8778), + [anon_sym_typename] = ACTIONS(8778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8778), + [anon_sym_decltype] = ACTIONS(8778), + [anon_sym_explicit] = ACTIONS(8778), + [anon_sym_private] = ACTIONS(8778), + [anon_sym_template] = ACTIONS(8778), + [anon_sym_operator] = ACTIONS(8778), + [anon_sym_friend] = ACTIONS(8778), + [anon_sym_public] = ACTIONS(8778), + [anon_sym_protected] = ACTIONS(8778), + [anon_sym_static_assert] = ACTIONS(8778), + [anon_sym_LBRACK_COLON] = ACTIONS(8780), + }, + [STATE(3424)] = { + [sym_identifier] = ACTIONS(8798), + [aux_sym_preproc_def_token1] = ACTIONS(8798), + [aux_sym_preproc_if_token1] = ACTIONS(8798), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8798), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8798), + [sym_preproc_directive] = ACTIONS(8798), + [anon_sym_LPAREN2] = ACTIONS(8800), + [anon_sym_TILDE] = ACTIONS(8800), + [anon_sym_STAR] = ACTIONS(8800), + [anon_sym_AMP_AMP] = ACTIONS(8800), + [anon_sym_AMP] = ACTIONS(8798), + [anon_sym_SEMI] = ACTIONS(8800), + [anon_sym___extension__] = ACTIONS(8798), + [anon_sym_typedef] = ACTIONS(8798), + [anon_sym_virtual] = ACTIONS(8798), + [anon_sym_extern] = ACTIONS(8798), + [anon_sym___attribute__] = ACTIONS(8798), + [anon_sym___attribute] = ACTIONS(8798), + [anon_sym_using] = ACTIONS(8798), + [anon_sym_COLON_COLON] = ACTIONS(8800), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8800), + [anon_sym___declspec] = ACTIONS(8798), + [anon_sym___based] = ACTIONS(8798), + [anon_sym_RBRACE] = ACTIONS(8800), + [anon_sym_signed] = ACTIONS(8798), + [anon_sym_unsigned] = ACTIONS(8798), + [anon_sym_long] = ACTIONS(8798), + [anon_sym_short] = ACTIONS(8798), + [anon_sym_LBRACK] = ACTIONS(8798), + [anon_sym_static] = ACTIONS(8798), + [anon_sym_register] = ACTIONS(8798), + [anon_sym_inline] = ACTIONS(8798), + [anon_sym___inline] = ACTIONS(8798), + [anon_sym___inline__] = ACTIONS(8798), + [anon_sym___forceinline] = ACTIONS(8798), + [anon_sym_thread_local] = ACTIONS(8798), + [anon_sym___thread] = ACTIONS(8798), + [anon_sym_const] = ACTIONS(8798), + [anon_sym_constexpr] = ACTIONS(8798), + [anon_sym_volatile] = ACTIONS(8798), + [anon_sym_restrict] = ACTIONS(8798), + [anon_sym___restrict__] = ACTIONS(8798), + [anon_sym__Atomic] = ACTIONS(8798), + [anon_sym__Noreturn] = ACTIONS(8798), + [anon_sym_noreturn] = ACTIONS(8798), + [anon_sym__Nonnull] = ACTIONS(8798), + [anon_sym_mutable] = ACTIONS(8798), + [anon_sym_constinit] = ACTIONS(8798), + [anon_sym_consteval] = ACTIONS(8798), + [anon_sym_alignas] = ACTIONS(8798), + [anon_sym__Alignas] = ACTIONS(8798), + [sym_primitive_type] = ACTIONS(8798), + [anon_sym_enum] = ACTIONS(8798), + [anon_sym_class] = ACTIONS(8798), + [anon_sym_struct] = ACTIONS(8798), + [anon_sym_union] = ACTIONS(8798), + [anon_sym_typename] = ACTIONS(8798), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8798), + [anon_sym_decltype] = ACTIONS(8798), + [anon_sym_explicit] = ACTIONS(8798), + [anon_sym_private] = ACTIONS(8798), + [anon_sym_template] = ACTIONS(8798), + [anon_sym_operator] = ACTIONS(8798), + [anon_sym_friend] = ACTIONS(8798), + [anon_sym_public] = ACTIONS(8798), + [anon_sym_protected] = ACTIONS(8798), + [anon_sym_static_assert] = ACTIONS(8798), + [anon_sym_LBRACK_COLON] = ACTIONS(8800), + }, + [STATE(3425)] = { + [sym_identifier] = ACTIONS(8806), + [aux_sym_preproc_def_token1] = ACTIONS(8806), + [aux_sym_preproc_if_token1] = ACTIONS(8806), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8806), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8806), + [sym_preproc_directive] = ACTIONS(8806), + [anon_sym_LPAREN2] = ACTIONS(8808), + [anon_sym_TILDE] = ACTIONS(8808), + [anon_sym_STAR] = ACTIONS(8808), + [anon_sym_AMP_AMP] = ACTIONS(8808), + [anon_sym_AMP] = ACTIONS(8806), + [anon_sym_SEMI] = ACTIONS(8808), + [anon_sym___extension__] = ACTIONS(8806), + [anon_sym_typedef] = ACTIONS(8806), + [anon_sym_virtual] = ACTIONS(8806), + [anon_sym_extern] = ACTIONS(8806), + [anon_sym___attribute__] = ACTIONS(8806), + [anon_sym___attribute] = ACTIONS(8806), + [anon_sym_using] = ACTIONS(8806), + [anon_sym_COLON_COLON] = ACTIONS(8808), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8808), + [anon_sym___declspec] = ACTIONS(8806), + [anon_sym___based] = ACTIONS(8806), + [anon_sym_RBRACE] = ACTIONS(8808), + [anon_sym_signed] = ACTIONS(8806), + [anon_sym_unsigned] = ACTIONS(8806), + [anon_sym_long] = ACTIONS(8806), + [anon_sym_short] = ACTIONS(8806), + [anon_sym_LBRACK] = ACTIONS(8806), + [anon_sym_static] = ACTIONS(8806), + [anon_sym_register] = ACTIONS(8806), + [anon_sym_inline] = ACTIONS(8806), + [anon_sym___inline] = ACTIONS(8806), + [anon_sym___inline__] = ACTIONS(8806), + [anon_sym___forceinline] = ACTIONS(8806), + [anon_sym_thread_local] = ACTIONS(8806), + [anon_sym___thread] = ACTIONS(8806), + [anon_sym_const] = ACTIONS(8806), + [anon_sym_constexpr] = ACTIONS(8806), + [anon_sym_volatile] = ACTIONS(8806), + [anon_sym_restrict] = ACTIONS(8806), + [anon_sym___restrict__] = ACTIONS(8806), + [anon_sym__Atomic] = ACTIONS(8806), + [anon_sym__Noreturn] = ACTIONS(8806), + [anon_sym_noreturn] = ACTIONS(8806), + [anon_sym__Nonnull] = ACTIONS(8806), + [anon_sym_mutable] = ACTIONS(8806), + [anon_sym_constinit] = ACTIONS(8806), + [anon_sym_consteval] = ACTIONS(8806), + [anon_sym_alignas] = ACTIONS(8806), + [anon_sym__Alignas] = ACTIONS(8806), + [sym_primitive_type] = ACTIONS(8806), + [anon_sym_enum] = ACTIONS(8806), + [anon_sym_class] = ACTIONS(8806), + [anon_sym_struct] = ACTIONS(8806), + [anon_sym_union] = ACTIONS(8806), + [anon_sym_typename] = ACTIONS(8806), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8806), + [anon_sym_decltype] = ACTIONS(8806), + [anon_sym_explicit] = ACTIONS(8806), + [anon_sym_private] = ACTIONS(8806), + [anon_sym_template] = ACTIONS(8806), + [anon_sym_operator] = ACTIONS(8806), + [anon_sym_friend] = ACTIONS(8806), + [anon_sym_public] = ACTIONS(8806), + [anon_sym_protected] = ACTIONS(8806), + [anon_sym_static_assert] = ACTIONS(8806), + [anon_sym_LBRACK_COLON] = ACTIONS(8808), + }, + [STATE(3426)] = { + [sym_identifier] = ACTIONS(8822), + [aux_sym_preproc_def_token1] = ACTIONS(8822), + [aux_sym_preproc_if_token1] = ACTIONS(8822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8822), + [sym_preproc_directive] = ACTIONS(8822), + [anon_sym_LPAREN2] = ACTIONS(8824), + [anon_sym_TILDE] = ACTIONS(8824), + [anon_sym_STAR] = ACTIONS(8824), + [anon_sym_AMP_AMP] = ACTIONS(8824), + [anon_sym_AMP] = ACTIONS(8822), + [anon_sym_SEMI] = ACTIONS(8824), + [anon_sym___extension__] = ACTIONS(8822), + [anon_sym_typedef] = ACTIONS(8822), + [anon_sym_virtual] = ACTIONS(8822), + [anon_sym_extern] = ACTIONS(8822), + [anon_sym___attribute__] = ACTIONS(8822), + [anon_sym___attribute] = ACTIONS(8822), + [anon_sym_using] = ACTIONS(8822), + [anon_sym_COLON_COLON] = ACTIONS(8824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8824), + [anon_sym___declspec] = ACTIONS(8822), + [anon_sym___based] = ACTIONS(8822), + [anon_sym_RBRACE] = ACTIONS(8824), + [anon_sym_signed] = ACTIONS(8822), + [anon_sym_unsigned] = ACTIONS(8822), + [anon_sym_long] = ACTIONS(8822), + [anon_sym_short] = ACTIONS(8822), + [anon_sym_LBRACK] = ACTIONS(8822), + [anon_sym_static] = ACTIONS(8822), + [anon_sym_register] = ACTIONS(8822), + [anon_sym_inline] = ACTIONS(8822), + [anon_sym___inline] = ACTIONS(8822), + [anon_sym___inline__] = ACTIONS(8822), + [anon_sym___forceinline] = ACTIONS(8822), + [anon_sym_thread_local] = ACTIONS(8822), + [anon_sym___thread] = ACTIONS(8822), + [anon_sym_const] = ACTIONS(8822), + [anon_sym_constexpr] = ACTIONS(8822), + [anon_sym_volatile] = ACTIONS(8822), + [anon_sym_restrict] = ACTIONS(8822), + [anon_sym___restrict__] = ACTIONS(8822), + [anon_sym__Atomic] = ACTIONS(8822), + [anon_sym__Noreturn] = ACTIONS(8822), + [anon_sym_noreturn] = ACTIONS(8822), + [anon_sym__Nonnull] = ACTIONS(8822), + [anon_sym_mutable] = ACTIONS(8822), + [anon_sym_constinit] = ACTIONS(8822), + [anon_sym_consteval] = ACTIONS(8822), + [anon_sym_alignas] = ACTIONS(8822), + [anon_sym__Alignas] = ACTIONS(8822), + [sym_primitive_type] = ACTIONS(8822), + [anon_sym_enum] = ACTIONS(8822), + [anon_sym_class] = ACTIONS(8822), + [anon_sym_struct] = ACTIONS(8822), + [anon_sym_union] = ACTIONS(8822), + [anon_sym_typename] = ACTIONS(8822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8822), + [anon_sym_decltype] = ACTIONS(8822), + [anon_sym_explicit] = ACTIONS(8822), + [anon_sym_private] = ACTIONS(8822), + [anon_sym_template] = ACTIONS(8822), + [anon_sym_operator] = ACTIONS(8822), + [anon_sym_friend] = ACTIONS(8822), + [anon_sym_public] = ACTIONS(8822), + [anon_sym_protected] = ACTIONS(8822), + [anon_sym_static_assert] = ACTIONS(8822), + [anon_sym_LBRACK_COLON] = ACTIONS(8824), + }, + [STATE(3427)] = { + [sym_identifier] = ACTIONS(8806), + [aux_sym_preproc_def_token1] = ACTIONS(8806), + [aux_sym_preproc_if_token1] = ACTIONS(8806), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8806), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8806), + [sym_preproc_directive] = ACTIONS(8806), + [anon_sym_LPAREN2] = ACTIONS(8808), + [anon_sym_TILDE] = ACTIONS(8808), + [anon_sym_STAR] = ACTIONS(8808), + [anon_sym_AMP_AMP] = ACTIONS(8808), + [anon_sym_AMP] = ACTIONS(8806), + [anon_sym_SEMI] = ACTIONS(8808), + [anon_sym___extension__] = ACTIONS(8806), + [anon_sym_typedef] = ACTIONS(8806), + [anon_sym_virtual] = ACTIONS(8806), + [anon_sym_extern] = ACTIONS(8806), + [anon_sym___attribute__] = ACTIONS(8806), + [anon_sym___attribute] = ACTIONS(8806), + [anon_sym_using] = ACTIONS(8806), + [anon_sym_COLON_COLON] = ACTIONS(8808), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8808), + [anon_sym___declspec] = ACTIONS(8806), + [anon_sym___based] = ACTIONS(8806), + [anon_sym_RBRACE] = ACTIONS(8808), + [anon_sym_signed] = ACTIONS(8806), + [anon_sym_unsigned] = ACTIONS(8806), + [anon_sym_long] = ACTIONS(8806), + [anon_sym_short] = ACTIONS(8806), + [anon_sym_LBRACK] = ACTIONS(8806), + [anon_sym_static] = ACTIONS(8806), + [anon_sym_register] = ACTIONS(8806), + [anon_sym_inline] = ACTIONS(8806), + [anon_sym___inline] = ACTIONS(8806), + [anon_sym___inline__] = ACTIONS(8806), + [anon_sym___forceinline] = ACTIONS(8806), + [anon_sym_thread_local] = ACTIONS(8806), + [anon_sym___thread] = ACTIONS(8806), + [anon_sym_const] = ACTIONS(8806), + [anon_sym_constexpr] = ACTIONS(8806), + [anon_sym_volatile] = ACTIONS(8806), + [anon_sym_restrict] = ACTIONS(8806), + [anon_sym___restrict__] = ACTIONS(8806), + [anon_sym__Atomic] = ACTIONS(8806), + [anon_sym__Noreturn] = ACTIONS(8806), + [anon_sym_noreturn] = ACTIONS(8806), + [anon_sym__Nonnull] = ACTIONS(8806), + [anon_sym_mutable] = ACTIONS(8806), + [anon_sym_constinit] = ACTIONS(8806), + [anon_sym_consteval] = ACTIONS(8806), + [anon_sym_alignas] = ACTIONS(8806), + [anon_sym__Alignas] = ACTIONS(8806), + [sym_primitive_type] = ACTIONS(8806), + [anon_sym_enum] = ACTIONS(8806), + [anon_sym_class] = ACTIONS(8806), + [anon_sym_struct] = ACTIONS(8806), + [anon_sym_union] = ACTIONS(8806), + [anon_sym_typename] = ACTIONS(8806), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8806), + [anon_sym_decltype] = ACTIONS(8806), + [anon_sym_explicit] = ACTIONS(8806), + [anon_sym_private] = ACTIONS(8806), + [anon_sym_template] = ACTIONS(8806), + [anon_sym_operator] = ACTIONS(8806), + [anon_sym_friend] = ACTIONS(8806), + [anon_sym_public] = ACTIONS(8806), + [anon_sym_protected] = ACTIONS(8806), + [anon_sym_static_assert] = ACTIONS(8806), + [anon_sym_LBRACK_COLON] = ACTIONS(8808), + }, + [STATE(3428)] = { + [sym_identifier] = ACTIONS(8822), + [aux_sym_preproc_def_token1] = ACTIONS(8822), + [aux_sym_preproc_if_token1] = ACTIONS(8822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8822), + [sym_preproc_directive] = ACTIONS(8822), + [anon_sym_LPAREN2] = ACTIONS(8824), + [anon_sym_TILDE] = ACTIONS(8824), + [anon_sym_STAR] = ACTIONS(8824), + [anon_sym_AMP_AMP] = ACTIONS(8824), + [anon_sym_AMP] = ACTIONS(8822), + [anon_sym_SEMI] = ACTIONS(8824), + [anon_sym___extension__] = ACTIONS(8822), + [anon_sym_typedef] = ACTIONS(8822), + [anon_sym_virtual] = ACTIONS(8822), + [anon_sym_extern] = ACTIONS(8822), + [anon_sym___attribute__] = ACTIONS(8822), + [anon_sym___attribute] = ACTIONS(8822), + [anon_sym_using] = ACTIONS(8822), + [anon_sym_COLON_COLON] = ACTIONS(8824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8824), + [anon_sym___declspec] = ACTIONS(8822), + [anon_sym___based] = ACTIONS(8822), + [anon_sym_RBRACE] = ACTIONS(8824), + [anon_sym_signed] = ACTIONS(8822), + [anon_sym_unsigned] = ACTIONS(8822), + [anon_sym_long] = ACTIONS(8822), + [anon_sym_short] = ACTIONS(8822), + [anon_sym_LBRACK] = ACTIONS(8822), + [anon_sym_static] = ACTIONS(8822), + [anon_sym_register] = ACTIONS(8822), + [anon_sym_inline] = ACTIONS(8822), + [anon_sym___inline] = ACTIONS(8822), + [anon_sym___inline__] = ACTIONS(8822), + [anon_sym___forceinline] = ACTIONS(8822), + [anon_sym_thread_local] = ACTIONS(8822), + [anon_sym___thread] = ACTIONS(8822), + [anon_sym_const] = ACTIONS(8822), + [anon_sym_constexpr] = ACTIONS(8822), + [anon_sym_volatile] = ACTIONS(8822), + [anon_sym_restrict] = ACTIONS(8822), + [anon_sym___restrict__] = ACTIONS(8822), + [anon_sym__Atomic] = ACTIONS(8822), + [anon_sym__Noreturn] = ACTIONS(8822), + [anon_sym_noreturn] = ACTIONS(8822), + [anon_sym__Nonnull] = ACTIONS(8822), + [anon_sym_mutable] = ACTIONS(8822), + [anon_sym_constinit] = ACTIONS(8822), + [anon_sym_consteval] = ACTIONS(8822), + [anon_sym_alignas] = ACTIONS(8822), + [anon_sym__Alignas] = ACTIONS(8822), + [sym_primitive_type] = ACTIONS(8822), + [anon_sym_enum] = ACTIONS(8822), + [anon_sym_class] = ACTIONS(8822), + [anon_sym_struct] = ACTIONS(8822), + [anon_sym_union] = ACTIONS(8822), + [anon_sym_typename] = ACTIONS(8822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8822), + [anon_sym_decltype] = ACTIONS(8822), + [anon_sym_explicit] = ACTIONS(8822), + [anon_sym_private] = ACTIONS(8822), + [anon_sym_template] = ACTIONS(8822), + [anon_sym_operator] = ACTIONS(8822), + [anon_sym_friend] = ACTIONS(8822), + [anon_sym_public] = ACTIONS(8822), + [anon_sym_protected] = ACTIONS(8822), + [anon_sym_static_assert] = ACTIONS(8822), + [anon_sym_LBRACK_COLON] = ACTIONS(8824), + }, + [STATE(3429)] = { + [sym_identifier] = ACTIONS(8687), + [aux_sym_preproc_def_token1] = ACTIONS(8687), + [aux_sym_preproc_if_token1] = ACTIONS(8687), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8687), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8687), + [sym_preproc_directive] = ACTIONS(8687), + [anon_sym_LPAREN2] = ACTIONS(8689), + [anon_sym_TILDE] = ACTIONS(8689), + [anon_sym_STAR] = ACTIONS(8689), + [anon_sym_AMP_AMP] = ACTIONS(8689), + [anon_sym_AMP] = ACTIONS(8687), + [anon_sym_SEMI] = ACTIONS(8689), + [anon_sym___extension__] = ACTIONS(8687), + [anon_sym_typedef] = ACTIONS(8687), + [anon_sym_virtual] = ACTIONS(8687), + [anon_sym_extern] = ACTIONS(8687), + [anon_sym___attribute__] = ACTIONS(8687), + [anon_sym___attribute] = ACTIONS(8687), + [anon_sym_using] = ACTIONS(8687), + [anon_sym_COLON_COLON] = ACTIONS(8689), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8689), + [anon_sym___declspec] = ACTIONS(8687), + [anon_sym___based] = ACTIONS(8687), + [anon_sym_RBRACE] = ACTIONS(8689), + [anon_sym_signed] = ACTIONS(8687), + [anon_sym_unsigned] = ACTIONS(8687), + [anon_sym_long] = ACTIONS(8687), + [anon_sym_short] = ACTIONS(8687), + [anon_sym_LBRACK] = ACTIONS(8687), + [anon_sym_static] = ACTIONS(8687), + [anon_sym_register] = ACTIONS(8687), + [anon_sym_inline] = ACTIONS(8687), + [anon_sym___inline] = ACTIONS(8687), + [anon_sym___inline__] = ACTIONS(8687), + [anon_sym___forceinline] = ACTIONS(8687), + [anon_sym_thread_local] = ACTIONS(8687), + [anon_sym___thread] = ACTIONS(8687), + [anon_sym_const] = ACTIONS(8687), + [anon_sym_constexpr] = ACTIONS(8687), + [anon_sym_volatile] = ACTIONS(8687), + [anon_sym_restrict] = ACTIONS(8687), + [anon_sym___restrict__] = ACTIONS(8687), + [anon_sym__Atomic] = ACTIONS(8687), + [anon_sym__Noreturn] = ACTIONS(8687), + [anon_sym_noreturn] = ACTIONS(8687), + [anon_sym__Nonnull] = ACTIONS(8687), + [anon_sym_mutable] = ACTIONS(8687), + [anon_sym_constinit] = ACTIONS(8687), + [anon_sym_consteval] = ACTIONS(8687), + [anon_sym_alignas] = ACTIONS(8687), + [anon_sym__Alignas] = ACTIONS(8687), + [sym_primitive_type] = ACTIONS(8687), + [anon_sym_enum] = ACTIONS(8687), + [anon_sym_class] = ACTIONS(8687), + [anon_sym_struct] = ACTIONS(8687), + [anon_sym_union] = ACTIONS(8687), + [anon_sym_typename] = ACTIONS(8687), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8687), + [anon_sym_decltype] = ACTIONS(8687), + [anon_sym_explicit] = ACTIONS(8687), + [anon_sym_private] = ACTIONS(8687), + [anon_sym_template] = ACTIONS(8687), + [anon_sym_operator] = ACTIONS(8687), + [anon_sym_friend] = ACTIONS(8687), + [anon_sym_public] = ACTIONS(8687), + [anon_sym_protected] = ACTIONS(8687), + [anon_sym_static_assert] = ACTIONS(8687), + [anon_sym_LBRACK_COLON] = ACTIONS(8689), + }, + [STATE(3430)] = { + [sym_identifier] = ACTIONS(8691), + [aux_sym_preproc_def_token1] = ACTIONS(8691), + [aux_sym_preproc_if_token1] = ACTIONS(8691), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8691), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8691), + [sym_preproc_directive] = ACTIONS(8691), + [anon_sym_LPAREN2] = ACTIONS(8693), + [anon_sym_TILDE] = ACTIONS(8693), + [anon_sym_STAR] = ACTIONS(8693), + [anon_sym_AMP_AMP] = ACTIONS(8693), + [anon_sym_AMP] = ACTIONS(8691), + [anon_sym_SEMI] = ACTIONS(8693), + [anon_sym___extension__] = ACTIONS(8691), + [anon_sym_typedef] = ACTIONS(8691), + [anon_sym_virtual] = ACTIONS(8691), + [anon_sym_extern] = ACTIONS(8691), + [anon_sym___attribute__] = ACTIONS(8691), + [anon_sym___attribute] = ACTIONS(8691), + [anon_sym_using] = ACTIONS(8691), + [anon_sym_COLON_COLON] = ACTIONS(8693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8693), + [anon_sym___declspec] = ACTIONS(8691), + [anon_sym___based] = ACTIONS(8691), + [anon_sym_RBRACE] = ACTIONS(8693), + [anon_sym_signed] = ACTIONS(8691), + [anon_sym_unsigned] = ACTIONS(8691), + [anon_sym_long] = ACTIONS(8691), + [anon_sym_short] = ACTIONS(8691), + [anon_sym_LBRACK] = ACTIONS(8691), + [anon_sym_static] = ACTIONS(8691), + [anon_sym_register] = ACTIONS(8691), + [anon_sym_inline] = ACTIONS(8691), + [anon_sym___inline] = ACTIONS(8691), + [anon_sym___inline__] = ACTIONS(8691), + [anon_sym___forceinline] = ACTIONS(8691), + [anon_sym_thread_local] = ACTIONS(8691), + [anon_sym___thread] = ACTIONS(8691), + [anon_sym_const] = ACTIONS(8691), + [anon_sym_constexpr] = ACTIONS(8691), + [anon_sym_volatile] = ACTIONS(8691), + [anon_sym_restrict] = ACTIONS(8691), + [anon_sym___restrict__] = ACTIONS(8691), + [anon_sym__Atomic] = ACTIONS(8691), + [anon_sym__Noreturn] = ACTIONS(8691), + [anon_sym_noreturn] = ACTIONS(8691), + [anon_sym__Nonnull] = ACTIONS(8691), + [anon_sym_mutable] = ACTIONS(8691), + [anon_sym_constinit] = ACTIONS(8691), + [anon_sym_consteval] = ACTIONS(8691), + [anon_sym_alignas] = ACTIONS(8691), + [anon_sym__Alignas] = ACTIONS(8691), + [sym_primitive_type] = ACTIONS(8691), + [anon_sym_enum] = ACTIONS(8691), + [anon_sym_class] = ACTIONS(8691), + [anon_sym_struct] = ACTIONS(8691), + [anon_sym_union] = ACTIONS(8691), + [anon_sym_typename] = ACTIONS(8691), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8691), + [anon_sym_decltype] = ACTIONS(8691), + [anon_sym_explicit] = ACTIONS(8691), + [anon_sym_private] = ACTIONS(8691), + [anon_sym_template] = ACTIONS(8691), + [anon_sym_operator] = ACTIONS(8691), + [anon_sym_friend] = ACTIONS(8691), + [anon_sym_public] = ACTIONS(8691), + [anon_sym_protected] = ACTIONS(8691), + [anon_sym_static_assert] = ACTIONS(8691), + [anon_sym_LBRACK_COLON] = ACTIONS(8693), + }, + [STATE(3431)] = { + [sym_identifier] = ACTIONS(4080), + [aux_sym_preproc_def_token1] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), + [sym_preproc_directive] = ACTIONS(4080), + [anon_sym_LPAREN2] = ACTIONS(4082), + [anon_sym_TILDE] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [anon_sym_AMP_AMP] = ACTIONS(4082), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_SEMI] = ACTIONS(4082), + [anon_sym___extension__] = ACTIONS(4080), + [anon_sym_typedef] = ACTIONS(4080), + [anon_sym_virtual] = ACTIONS(4080), + [anon_sym_extern] = ACTIONS(4080), + [anon_sym___attribute__] = ACTIONS(4080), + [anon_sym___attribute] = ACTIONS(4080), + [anon_sym_using] = ACTIONS(4080), + [anon_sym_COLON_COLON] = ACTIONS(4082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), + [anon_sym___declspec] = ACTIONS(4080), + [anon_sym___based] = ACTIONS(4080), + [anon_sym_RBRACE] = ACTIONS(4082), + [anon_sym_signed] = ACTIONS(4080), + [anon_sym_unsigned] = ACTIONS(4080), + [anon_sym_long] = ACTIONS(4080), + [anon_sym_short] = ACTIONS(4080), + [anon_sym_LBRACK] = ACTIONS(4080), + [anon_sym_static] = ACTIONS(4080), + [anon_sym_register] = ACTIONS(4080), + [anon_sym_inline] = ACTIONS(4080), + [anon_sym___inline] = ACTIONS(4080), + [anon_sym___inline__] = ACTIONS(4080), + [anon_sym___forceinline] = ACTIONS(4080), + [anon_sym_thread_local] = ACTIONS(4080), + [anon_sym___thread] = ACTIONS(4080), + [anon_sym_const] = ACTIONS(4080), + [anon_sym_constexpr] = ACTIONS(4080), + [anon_sym_volatile] = ACTIONS(4080), + [anon_sym_restrict] = ACTIONS(4080), + [anon_sym___restrict__] = ACTIONS(4080), + [anon_sym__Atomic] = ACTIONS(4080), + [anon_sym__Noreturn] = ACTIONS(4080), + [anon_sym_noreturn] = ACTIONS(4080), + [anon_sym__Nonnull] = ACTIONS(4080), + [anon_sym_mutable] = ACTIONS(4080), + [anon_sym_constinit] = ACTIONS(4080), + [anon_sym_consteval] = ACTIONS(4080), + [anon_sym_alignas] = ACTIONS(4080), + [anon_sym__Alignas] = ACTIONS(4080), + [sym_primitive_type] = ACTIONS(4080), + [anon_sym_enum] = ACTIONS(4080), + [anon_sym_class] = ACTIONS(4080), + [anon_sym_struct] = ACTIONS(4080), + [anon_sym_union] = ACTIONS(4080), + [anon_sym_typename] = ACTIONS(4080), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4080), + [anon_sym_decltype] = ACTIONS(4080), + [anon_sym_explicit] = ACTIONS(4080), + [anon_sym_private] = ACTIONS(4080), + [anon_sym_template] = ACTIONS(4080), + [anon_sym_operator] = ACTIONS(4080), + [anon_sym_friend] = ACTIONS(4080), + [anon_sym_public] = ACTIONS(4080), + [anon_sym_protected] = ACTIONS(4080), + [anon_sym_static_assert] = ACTIONS(4080), + [anon_sym_LBRACK_COLON] = ACTIONS(4082), + }, + [STATE(3432)] = { + [sym_identifier] = ACTIONS(4080), + [aux_sym_preproc_def_token1] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), + [sym_preproc_directive] = ACTIONS(4080), + [anon_sym_LPAREN2] = ACTIONS(4082), + [anon_sym_TILDE] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [anon_sym_AMP_AMP] = ACTIONS(4082), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_SEMI] = ACTIONS(4082), + [anon_sym___extension__] = ACTIONS(4080), + [anon_sym_typedef] = ACTIONS(4080), + [anon_sym_virtual] = ACTIONS(4080), + [anon_sym_extern] = ACTIONS(4080), + [anon_sym___attribute__] = ACTIONS(4080), + [anon_sym___attribute] = ACTIONS(4080), + [anon_sym_using] = ACTIONS(4080), + [anon_sym_COLON_COLON] = ACTIONS(4082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), + [anon_sym___declspec] = ACTIONS(4080), + [anon_sym___based] = ACTIONS(4080), + [anon_sym_RBRACE] = ACTIONS(4082), + [anon_sym_signed] = ACTIONS(4080), + [anon_sym_unsigned] = ACTIONS(4080), + [anon_sym_long] = ACTIONS(4080), + [anon_sym_short] = ACTIONS(4080), + [anon_sym_LBRACK] = ACTIONS(4080), + [anon_sym_static] = ACTIONS(4080), + [anon_sym_register] = ACTIONS(4080), + [anon_sym_inline] = ACTIONS(4080), + [anon_sym___inline] = ACTIONS(4080), + [anon_sym___inline__] = ACTIONS(4080), + [anon_sym___forceinline] = ACTIONS(4080), + [anon_sym_thread_local] = ACTIONS(4080), + [anon_sym___thread] = ACTIONS(4080), + [anon_sym_const] = ACTIONS(4080), + [anon_sym_constexpr] = ACTIONS(4080), + [anon_sym_volatile] = ACTIONS(4080), + [anon_sym_restrict] = ACTIONS(4080), + [anon_sym___restrict__] = ACTIONS(4080), + [anon_sym__Atomic] = ACTIONS(4080), + [anon_sym__Noreturn] = ACTIONS(4080), + [anon_sym_noreturn] = ACTIONS(4080), + [anon_sym__Nonnull] = ACTIONS(4080), + [anon_sym_mutable] = ACTIONS(4080), + [anon_sym_constinit] = ACTIONS(4080), + [anon_sym_consteval] = ACTIONS(4080), + [anon_sym_alignas] = ACTIONS(4080), + [anon_sym__Alignas] = ACTIONS(4080), + [sym_primitive_type] = ACTIONS(4080), + [anon_sym_enum] = ACTIONS(4080), + [anon_sym_class] = ACTIONS(4080), + [anon_sym_struct] = ACTIONS(4080), + [anon_sym_union] = ACTIONS(4080), + [anon_sym_typename] = ACTIONS(4080), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4080), + [anon_sym_decltype] = ACTIONS(4080), + [anon_sym_explicit] = ACTIONS(4080), + [anon_sym_private] = ACTIONS(4080), + [anon_sym_template] = ACTIONS(4080), + [anon_sym_operator] = ACTIONS(4080), + [anon_sym_friend] = ACTIONS(4080), + [anon_sym_public] = ACTIONS(4080), + [anon_sym_protected] = ACTIONS(4080), + [anon_sym_static_assert] = ACTIONS(4080), + [anon_sym_LBRACK_COLON] = ACTIONS(4082), + }, + [STATE(3433)] = { + [sym_virtual_specifier] = STATE(3441), + [aux_sym__function_postfix_repeat1] = STATE(3441), + [sym_identifier] = ACTIONS(9139), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9141), + [anon_sym_COMMA] = ACTIONS(9141), + [anon_sym_RPAREN] = ACTIONS(9141), + [aux_sym_preproc_if_token2] = ACTIONS(9141), + [aux_sym_preproc_else_token1] = ACTIONS(9141), + [aux_sym_preproc_elif_token1] = ACTIONS(9139), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9141), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9141), + [anon_sym_LPAREN2] = ACTIONS(9141), + [anon_sym_DASH] = ACTIONS(9139), + [anon_sym_PLUS] = ACTIONS(9139), + [anon_sym_STAR] = ACTIONS(9139), + [anon_sym_SLASH] = ACTIONS(9139), + [anon_sym_PERCENT] = ACTIONS(9139), + [anon_sym_PIPE_PIPE] = ACTIONS(9141), + [anon_sym_AMP_AMP] = ACTIONS(9141), + [anon_sym_PIPE] = ACTIONS(9139), + [anon_sym_CARET] = ACTIONS(9139), + [anon_sym_AMP] = ACTIONS(9139), + [anon_sym_EQ_EQ] = ACTIONS(9141), + [anon_sym_BANG_EQ] = ACTIONS(9141), + [anon_sym_GT] = ACTIONS(9139), + [anon_sym_GT_EQ] = ACTIONS(9141), + [anon_sym_LT_EQ] = ACTIONS(9139), + [anon_sym_LT] = ACTIONS(9139), + [anon_sym_LT_LT] = ACTIONS(9139), + [anon_sym_GT_GT] = ACTIONS(9139), + [anon_sym_SEMI] = ACTIONS(9141), + [anon_sym___attribute__] = ACTIONS(9139), + [anon_sym___attribute] = ACTIONS(9139), + [anon_sym_COLON] = ACTIONS(9139), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9141), + [anon_sym_RBRACE] = ACTIONS(9141), + [anon_sym_LBRACK] = ACTIONS(9141), + [anon_sym_EQ] = ACTIONS(9139), + [anon_sym_QMARK] = ACTIONS(9141), + [anon_sym_STAR_EQ] = ACTIONS(9141), + [anon_sym_SLASH_EQ] = ACTIONS(9141), + [anon_sym_PERCENT_EQ] = ACTIONS(9141), + [anon_sym_PLUS_EQ] = ACTIONS(9141), + [anon_sym_DASH_EQ] = ACTIONS(9141), + [anon_sym_LT_LT_EQ] = ACTIONS(9141), + [anon_sym_GT_GT_EQ] = ACTIONS(9141), + [anon_sym_AMP_EQ] = ACTIONS(9141), + [anon_sym_CARET_EQ] = ACTIONS(9141), + [anon_sym_PIPE_EQ] = ACTIONS(9141), + [anon_sym_and_eq] = ACTIONS(9139), + [anon_sym_or_eq] = ACTIONS(9139), + [anon_sym_xor_eq] = ACTIONS(9139), + [anon_sym_LT_EQ_GT] = ACTIONS(9141), + [anon_sym_or] = ACTIONS(9139), + [anon_sym_and] = ACTIONS(9139), + [anon_sym_bitor] = ACTIONS(9139), + [anon_sym_xor] = ACTIONS(9139), + [anon_sym_bitand] = ACTIONS(9139), + [anon_sym_not_eq] = ACTIONS(9139), + [anon_sym_DASH_DASH] = ACTIONS(9141), + [anon_sym_PLUS_PLUS] = ACTIONS(9141), + [anon_sym_DOT] = ACTIONS(9139), + [anon_sym_DOT_STAR] = ACTIONS(9141), + [anon_sym_DASH_GT] = ACTIONS(9141), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6502), + [anon_sym_override] = ACTIONS(6502), + [anon_sym_requires] = ACTIONS(9139), + [anon_sym_COLON_RBRACK] = ACTIONS(9141), + }, + [STATE(3434)] = { + [sym_identifier] = ACTIONS(8726), + [aux_sym_preproc_def_token1] = ACTIONS(8726), + [aux_sym_preproc_if_token1] = ACTIONS(8726), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8726), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8726), + [sym_preproc_directive] = ACTIONS(8726), + [anon_sym_LPAREN2] = ACTIONS(8728), + [anon_sym_TILDE] = ACTIONS(8728), + [anon_sym_STAR] = ACTIONS(8728), + [anon_sym_AMP_AMP] = ACTIONS(8728), + [anon_sym_AMP] = ACTIONS(8726), + [anon_sym_SEMI] = ACTIONS(8728), + [anon_sym___extension__] = ACTIONS(8726), + [anon_sym_typedef] = ACTIONS(8726), + [anon_sym_virtual] = ACTIONS(8726), + [anon_sym_extern] = ACTIONS(8726), + [anon_sym___attribute__] = ACTIONS(8726), + [anon_sym___attribute] = ACTIONS(8726), + [anon_sym_using] = ACTIONS(8726), + [anon_sym_COLON_COLON] = ACTIONS(8728), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8728), + [anon_sym___declspec] = ACTIONS(8726), + [anon_sym___based] = ACTIONS(8726), + [anon_sym_RBRACE] = ACTIONS(8728), + [anon_sym_signed] = ACTIONS(8726), + [anon_sym_unsigned] = ACTIONS(8726), + [anon_sym_long] = ACTIONS(8726), + [anon_sym_short] = ACTIONS(8726), + [anon_sym_LBRACK] = ACTIONS(8726), + [anon_sym_static] = ACTIONS(8726), + [anon_sym_register] = ACTIONS(8726), + [anon_sym_inline] = ACTIONS(8726), + [anon_sym___inline] = ACTIONS(8726), + [anon_sym___inline__] = ACTIONS(8726), + [anon_sym___forceinline] = ACTIONS(8726), + [anon_sym_thread_local] = ACTIONS(8726), + [anon_sym___thread] = ACTIONS(8726), + [anon_sym_const] = ACTIONS(8726), + [anon_sym_constexpr] = ACTIONS(8726), + [anon_sym_volatile] = ACTIONS(8726), + [anon_sym_restrict] = ACTIONS(8726), + [anon_sym___restrict__] = ACTIONS(8726), + [anon_sym__Atomic] = ACTIONS(8726), + [anon_sym__Noreturn] = ACTIONS(8726), + [anon_sym_noreturn] = ACTIONS(8726), + [anon_sym__Nonnull] = ACTIONS(8726), + [anon_sym_mutable] = ACTIONS(8726), + [anon_sym_constinit] = ACTIONS(8726), + [anon_sym_consteval] = ACTIONS(8726), + [anon_sym_alignas] = ACTIONS(8726), + [anon_sym__Alignas] = ACTIONS(8726), + [sym_primitive_type] = ACTIONS(8726), + [anon_sym_enum] = ACTIONS(8726), + [anon_sym_class] = ACTIONS(8726), + [anon_sym_struct] = ACTIONS(8726), + [anon_sym_union] = ACTIONS(8726), + [anon_sym_typename] = ACTIONS(8726), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8726), + [anon_sym_decltype] = ACTIONS(8726), + [anon_sym_explicit] = ACTIONS(8726), + [anon_sym_private] = ACTIONS(8726), + [anon_sym_template] = ACTIONS(8726), + [anon_sym_operator] = ACTIONS(8726), + [anon_sym_friend] = ACTIONS(8726), + [anon_sym_public] = ACTIONS(8726), + [anon_sym_protected] = ACTIONS(8726), + [anon_sym_static_assert] = ACTIONS(8726), + [anon_sym_LBRACK_COLON] = ACTIONS(8728), + }, + [STATE(3435)] = { + [sym_identifier] = ACTIONS(8726), + [aux_sym_preproc_def_token1] = ACTIONS(8726), + [aux_sym_preproc_if_token1] = ACTIONS(8726), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8726), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8726), + [sym_preproc_directive] = ACTIONS(8726), + [anon_sym_LPAREN2] = ACTIONS(8728), + [anon_sym_TILDE] = ACTIONS(8728), + [anon_sym_STAR] = ACTIONS(8728), + [anon_sym_AMP_AMP] = ACTIONS(8728), + [anon_sym_AMP] = ACTIONS(8726), + [anon_sym_SEMI] = ACTIONS(8728), + [anon_sym___extension__] = ACTIONS(8726), + [anon_sym_typedef] = ACTIONS(8726), + [anon_sym_virtual] = ACTIONS(8726), + [anon_sym_extern] = ACTIONS(8726), + [anon_sym___attribute__] = ACTIONS(8726), + [anon_sym___attribute] = ACTIONS(8726), + [anon_sym_using] = ACTIONS(8726), + [anon_sym_COLON_COLON] = ACTIONS(8728), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8728), + [anon_sym___declspec] = ACTIONS(8726), + [anon_sym___based] = ACTIONS(8726), + [anon_sym_RBRACE] = ACTIONS(8728), + [anon_sym_signed] = ACTIONS(8726), + [anon_sym_unsigned] = ACTIONS(8726), + [anon_sym_long] = ACTIONS(8726), + [anon_sym_short] = ACTIONS(8726), + [anon_sym_LBRACK] = ACTIONS(8726), + [anon_sym_static] = ACTIONS(8726), + [anon_sym_register] = ACTIONS(8726), + [anon_sym_inline] = ACTIONS(8726), + [anon_sym___inline] = ACTIONS(8726), + [anon_sym___inline__] = ACTIONS(8726), + [anon_sym___forceinline] = ACTIONS(8726), + [anon_sym_thread_local] = ACTIONS(8726), + [anon_sym___thread] = ACTIONS(8726), + [anon_sym_const] = ACTIONS(8726), + [anon_sym_constexpr] = ACTIONS(8726), + [anon_sym_volatile] = ACTIONS(8726), + [anon_sym_restrict] = ACTIONS(8726), + [anon_sym___restrict__] = ACTIONS(8726), + [anon_sym__Atomic] = ACTIONS(8726), + [anon_sym__Noreturn] = ACTIONS(8726), + [anon_sym_noreturn] = ACTIONS(8726), + [anon_sym__Nonnull] = ACTIONS(8726), + [anon_sym_mutable] = ACTIONS(8726), + [anon_sym_constinit] = ACTIONS(8726), + [anon_sym_consteval] = ACTIONS(8726), + [anon_sym_alignas] = ACTIONS(8726), + [anon_sym__Alignas] = ACTIONS(8726), + [sym_primitive_type] = ACTIONS(8726), + [anon_sym_enum] = ACTIONS(8726), + [anon_sym_class] = ACTIONS(8726), + [anon_sym_struct] = ACTIONS(8726), + [anon_sym_union] = ACTIONS(8726), + [anon_sym_typename] = ACTIONS(8726), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8726), + [anon_sym_decltype] = ACTIONS(8726), + [anon_sym_explicit] = ACTIONS(8726), + [anon_sym_private] = ACTIONS(8726), + [anon_sym_template] = ACTIONS(8726), + [anon_sym_operator] = ACTIONS(8726), + [anon_sym_friend] = ACTIONS(8726), + [anon_sym_public] = ACTIONS(8726), + [anon_sym_protected] = ACTIONS(8726), + [anon_sym_static_assert] = ACTIONS(8726), + [anon_sym_LBRACK_COLON] = ACTIONS(8728), + }, + [STATE(3436)] = { + [sym_string_literal] = STATE(2565), + [sym_raw_string_literal] = STATE(2565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9118), + [anon_sym_COMMA] = ACTIONS(9118), + [anon_sym_RPAREN] = ACTIONS(9118), + [anon_sym_LPAREN2] = ACTIONS(9118), + [anon_sym_DASH] = ACTIONS(9116), + [anon_sym_PLUS] = ACTIONS(9116), + [anon_sym_STAR] = ACTIONS(9116), + [anon_sym_SLASH] = ACTIONS(9116), + [anon_sym_PERCENT] = ACTIONS(9116), + [anon_sym_PIPE_PIPE] = ACTIONS(9118), + [anon_sym_AMP_AMP] = ACTIONS(9118), + [anon_sym_PIPE] = ACTIONS(9116), + [anon_sym_CARET] = ACTIONS(9116), + [anon_sym_AMP] = ACTIONS(9116), + [anon_sym_EQ_EQ] = ACTIONS(9118), + [anon_sym_BANG_EQ] = ACTIONS(9118), + [anon_sym_GT] = ACTIONS(9116), + [anon_sym_GT_EQ] = ACTIONS(9118), + [anon_sym_LT_EQ] = ACTIONS(9116), + [anon_sym_LT] = ACTIONS(9116), + [anon_sym_LT_LT] = ACTIONS(9116), + [anon_sym_GT_GT] = ACTIONS(9116), + [anon_sym_SEMI] = ACTIONS(9118), + [anon_sym_COLON] = ACTIONS(9116), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9118), + [anon_sym_RBRACE] = ACTIONS(9118), + [anon_sym_LBRACK] = ACTIONS(9118), + [anon_sym_EQ] = ACTIONS(9116), + [anon_sym_QMARK] = ACTIONS(9118), + [anon_sym_STAR_EQ] = ACTIONS(9118), + [anon_sym_SLASH_EQ] = ACTIONS(9118), + [anon_sym_PERCENT_EQ] = ACTIONS(9118), + [anon_sym_PLUS_EQ] = ACTIONS(9118), + [anon_sym_DASH_EQ] = ACTIONS(9118), + [anon_sym_LT_LT_EQ] = ACTIONS(9118), + [anon_sym_GT_GT_EQ] = ACTIONS(9118), + [anon_sym_AMP_EQ] = ACTIONS(9118), + [anon_sym_CARET_EQ] = ACTIONS(9118), + [anon_sym_PIPE_EQ] = ACTIONS(9118), + [anon_sym_and_eq] = ACTIONS(9116), + [anon_sym_or_eq] = ACTIONS(9116), + [anon_sym_xor_eq] = ACTIONS(9116), + [anon_sym_LT_EQ_GT] = ACTIONS(9118), + [anon_sym_or] = ACTIONS(9116), + [anon_sym_and] = ACTIONS(9116), + [anon_sym_bitor] = ACTIONS(9116), + [anon_sym_xor] = ACTIONS(9116), + [anon_sym_bitand] = ACTIONS(9116), + [anon_sym_not_eq] = ACTIONS(9116), + [anon_sym_DASH_DASH] = ACTIONS(9118), + [anon_sym_PLUS_PLUS] = ACTIONS(9118), + [anon_sym_DOT] = ACTIONS(9116), + [anon_sym_DOT_STAR] = ACTIONS(9118), + [anon_sym_DASH_GT] = ACTIONS(9118), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [anon_sym_COLON_RBRACK] = ACTIONS(9118), + [sym_literal_suffix] = ACTIONS(9116), + }, + [STATE(3437)] = { + [sym_identifier] = ACTIONS(4156), + [aux_sym_preproc_def_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), + [sym_preproc_directive] = ACTIONS(4156), + [anon_sym_LPAREN2] = ACTIONS(4158), + [anon_sym_TILDE] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym___extension__] = ACTIONS(4156), + [anon_sym_typedef] = ACTIONS(4156), + [anon_sym_virtual] = ACTIONS(4156), + [anon_sym_extern] = ACTIONS(4156), + [anon_sym___attribute__] = ACTIONS(4156), + [anon_sym___attribute] = ACTIONS(4156), + [anon_sym_using] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4156), + [anon_sym___based] = ACTIONS(4156), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_signed] = ACTIONS(4156), + [anon_sym_unsigned] = ACTIONS(4156), + [anon_sym_long] = ACTIONS(4156), + [anon_sym_short] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_register] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym___inline] = ACTIONS(4156), + [anon_sym___inline__] = ACTIONS(4156), + [anon_sym___forceinline] = ACTIONS(4156), + [anon_sym_thread_local] = ACTIONS(4156), + [anon_sym___thread] = ACTIONS(4156), + [anon_sym_const] = ACTIONS(4156), + [anon_sym_constexpr] = ACTIONS(4156), + [anon_sym_volatile] = ACTIONS(4156), + [anon_sym_restrict] = ACTIONS(4156), + [anon_sym___restrict__] = ACTIONS(4156), + [anon_sym__Atomic] = ACTIONS(4156), + [anon_sym__Noreturn] = ACTIONS(4156), + [anon_sym_noreturn] = ACTIONS(4156), + [anon_sym__Nonnull] = ACTIONS(4156), + [anon_sym_mutable] = ACTIONS(4156), + [anon_sym_constinit] = ACTIONS(4156), + [anon_sym_consteval] = ACTIONS(4156), + [anon_sym_alignas] = ACTIONS(4156), + [anon_sym__Alignas] = ACTIONS(4156), + [sym_primitive_type] = ACTIONS(4156), + [anon_sym_enum] = ACTIONS(4156), + [anon_sym_class] = ACTIONS(4156), + [anon_sym_struct] = ACTIONS(4156), + [anon_sym_union] = ACTIONS(4156), + [anon_sym_typename] = ACTIONS(4156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4156), + [anon_sym_decltype] = ACTIONS(4156), + [anon_sym_explicit] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_friend] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_static_assert] = ACTIONS(4156), + [anon_sym_LBRACK_COLON] = ACTIONS(4158), + }, + [STATE(3438)] = { + [sym_identifier] = ACTIONS(4156), + [aux_sym_preproc_def_token1] = ACTIONS(4156), + [aux_sym_preproc_if_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), + [sym_preproc_directive] = ACTIONS(4156), + [anon_sym_LPAREN2] = ACTIONS(4158), + [anon_sym_TILDE] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_AMP_AMP] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4156), + [anon_sym_SEMI] = ACTIONS(4158), + [anon_sym___extension__] = ACTIONS(4156), + [anon_sym_typedef] = ACTIONS(4156), + [anon_sym_virtual] = ACTIONS(4156), + [anon_sym_extern] = ACTIONS(4156), + [anon_sym___attribute__] = ACTIONS(4156), + [anon_sym___attribute] = ACTIONS(4156), + [anon_sym_using] = ACTIONS(4156), + [anon_sym_COLON_COLON] = ACTIONS(4158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), + [anon_sym___declspec] = ACTIONS(4156), + [anon_sym___based] = ACTIONS(4156), + [anon_sym_RBRACE] = ACTIONS(4158), + [anon_sym_signed] = ACTIONS(4156), + [anon_sym_unsigned] = ACTIONS(4156), + [anon_sym_long] = ACTIONS(4156), + [anon_sym_short] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4156), + [anon_sym_static] = ACTIONS(4156), + [anon_sym_register] = ACTIONS(4156), + [anon_sym_inline] = ACTIONS(4156), + [anon_sym___inline] = ACTIONS(4156), + [anon_sym___inline__] = ACTIONS(4156), + [anon_sym___forceinline] = ACTIONS(4156), + [anon_sym_thread_local] = ACTIONS(4156), + [anon_sym___thread] = ACTIONS(4156), + [anon_sym_const] = ACTIONS(4156), + [anon_sym_constexpr] = ACTIONS(4156), + [anon_sym_volatile] = ACTIONS(4156), + [anon_sym_restrict] = ACTIONS(4156), + [anon_sym___restrict__] = ACTIONS(4156), + [anon_sym__Atomic] = ACTIONS(4156), + [anon_sym__Noreturn] = ACTIONS(4156), + [anon_sym_noreturn] = ACTIONS(4156), + [anon_sym__Nonnull] = ACTIONS(4156), + [anon_sym_mutable] = ACTIONS(4156), + [anon_sym_constinit] = ACTIONS(4156), + [anon_sym_consteval] = ACTIONS(4156), + [anon_sym_alignas] = ACTIONS(4156), + [anon_sym__Alignas] = ACTIONS(4156), + [sym_primitive_type] = ACTIONS(4156), + [anon_sym_enum] = ACTIONS(4156), + [anon_sym_class] = ACTIONS(4156), + [anon_sym_struct] = ACTIONS(4156), + [anon_sym_union] = ACTIONS(4156), + [anon_sym_typename] = ACTIONS(4156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4156), + [anon_sym_decltype] = ACTIONS(4156), + [anon_sym_explicit] = ACTIONS(4156), + [anon_sym_private] = ACTIONS(4156), + [anon_sym_template] = ACTIONS(4156), + [anon_sym_operator] = ACTIONS(4156), + [anon_sym_friend] = ACTIONS(4156), + [anon_sym_public] = ACTIONS(4156), + [anon_sym_protected] = ACTIONS(4156), + [anon_sym_static_assert] = ACTIONS(4156), + [anon_sym_LBRACK_COLON] = ACTIONS(4158), + }, + [STATE(3439)] = { + [sym_identifier] = ACTIONS(4160), + [aux_sym_preproc_def_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), + [sym_preproc_directive] = ACTIONS(4160), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_TILDE] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym___extension__] = ACTIONS(4160), + [anon_sym_typedef] = ACTIONS(4160), + [anon_sym_virtual] = ACTIONS(4160), + [anon_sym_extern] = ACTIONS(4160), + [anon_sym___attribute__] = ACTIONS(4160), + [anon_sym___attribute] = ACTIONS(4160), + [anon_sym_using] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), + [anon_sym___declspec] = ACTIONS(4160), + [anon_sym___based] = ACTIONS(4160), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_signed] = ACTIONS(4160), + [anon_sym_unsigned] = ACTIONS(4160), + [anon_sym_long] = ACTIONS(4160), + [anon_sym_short] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4160), + [anon_sym_static] = ACTIONS(4160), + [anon_sym_register] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym___inline] = ACTIONS(4160), + [anon_sym___inline__] = ACTIONS(4160), + [anon_sym___forceinline] = ACTIONS(4160), + [anon_sym_thread_local] = ACTIONS(4160), + [anon_sym___thread] = ACTIONS(4160), + [anon_sym_const] = ACTIONS(4160), + [anon_sym_constexpr] = ACTIONS(4160), + [anon_sym_volatile] = ACTIONS(4160), + [anon_sym_restrict] = ACTIONS(4160), + [anon_sym___restrict__] = ACTIONS(4160), + [anon_sym__Atomic] = ACTIONS(4160), + [anon_sym__Noreturn] = ACTIONS(4160), + [anon_sym_noreturn] = ACTIONS(4160), + [anon_sym__Nonnull] = ACTIONS(4160), + [anon_sym_mutable] = ACTIONS(4160), + [anon_sym_constinit] = ACTIONS(4160), + [anon_sym_consteval] = ACTIONS(4160), + [anon_sym_alignas] = ACTIONS(4160), + [anon_sym__Alignas] = ACTIONS(4160), + [sym_primitive_type] = ACTIONS(4160), + [anon_sym_enum] = ACTIONS(4160), + [anon_sym_class] = ACTIONS(4160), + [anon_sym_struct] = ACTIONS(4160), + [anon_sym_union] = ACTIONS(4160), + [anon_sym_typename] = ACTIONS(4160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4160), + [anon_sym_decltype] = ACTIONS(4160), + [anon_sym_explicit] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_template] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_friend] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_static_assert] = ACTIONS(4160), + [anon_sym_LBRACK_COLON] = ACTIONS(4162), + }, + [STATE(3440)] = { + [sym_identifier] = ACTIONS(4160), + [aux_sym_preproc_def_token1] = ACTIONS(4160), + [aux_sym_preproc_if_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), + [sym_preproc_directive] = ACTIONS(4160), + [anon_sym_LPAREN2] = ACTIONS(4162), + [anon_sym_TILDE] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_AMP_AMP] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4160), + [anon_sym_SEMI] = ACTIONS(4162), + [anon_sym___extension__] = ACTIONS(4160), + [anon_sym_typedef] = ACTIONS(4160), + [anon_sym_virtual] = ACTIONS(4160), + [anon_sym_extern] = ACTIONS(4160), + [anon_sym___attribute__] = ACTIONS(4160), + [anon_sym___attribute] = ACTIONS(4160), + [anon_sym_using] = ACTIONS(4160), + [anon_sym_COLON_COLON] = ACTIONS(4162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), + [anon_sym___declspec] = ACTIONS(4160), + [anon_sym___based] = ACTIONS(4160), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_signed] = ACTIONS(4160), + [anon_sym_unsigned] = ACTIONS(4160), + [anon_sym_long] = ACTIONS(4160), + [anon_sym_short] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4160), + [anon_sym_static] = ACTIONS(4160), + [anon_sym_register] = ACTIONS(4160), + [anon_sym_inline] = ACTIONS(4160), + [anon_sym___inline] = ACTIONS(4160), + [anon_sym___inline__] = ACTIONS(4160), + [anon_sym___forceinline] = ACTIONS(4160), + [anon_sym_thread_local] = ACTIONS(4160), + [anon_sym___thread] = ACTIONS(4160), + [anon_sym_const] = ACTIONS(4160), + [anon_sym_constexpr] = ACTIONS(4160), + [anon_sym_volatile] = ACTIONS(4160), + [anon_sym_restrict] = ACTIONS(4160), + [anon_sym___restrict__] = ACTIONS(4160), + [anon_sym__Atomic] = ACTIONS(4160), + [anon_sym__Noreturn] = ACTIONS(4160), + [anon_sym_noreturn] = ACTIONS(4160), + [anon_sym__Nonnull] = ACTIONS(4160), + [anon_sym_mutable] = ACTIONS(4160), + [anon_sym_constinit] = ACTIONS(4160), + [anon_sym_consteval] = ACTIONS(4160), + [anon_sym_alignas] = ACTIONS(4160), + [anon_sym__Alignas] = ACTIONS(4160), + [sym_primitive_type] = ACTIONS(4160), + [anon_sym_enum] = ACTIONS(4160), + [anon_sym_class] = ACTIONS(4160), + [anon_sym_struct] = ACTIONS(4160), + [anon_sym_union] = ACTIONS(4160), + [anon_sym_typename] = ACTIONS(4160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4160), + [anon_sym_decltype] = ACTIONS(4160), + [anon_sym_explicit] = ACTIONS(4160), + [anon_sym_private] = ACTIONS(4160), + [anon_sym_template] = ACTIONS(4160), + [anon_sym_operator] = ACTIONS(4160), + [anon_sym_friend] = ACTIONS(4160), + [anon_sym_public] = ACTIONS(4160), + [anon_sym_protected] = ACTIONS(4160), + [anon_sym_static_assert] = ACTIONS(4160), + [anon_sym_LBRACK_COLON] = ACTIONS(4162), + }, + [STATE(3441)] = { + [sym_virtual_specifier] = STATE(3441), + [aux_sym__function_postfix_repeat1] = STATE(3441), + [sym_identifier] = ACTIONS(9143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9145), + [anon_sym_COMMA] = ACTIONS(9145), + [anon_sym_RPAREN] = ACTIONS(9145), + [aux_sym_preproc_if_token2] = ACTIONS(9145), + [aux_sym_preproc_else_token1] = ACTIONS(9145), + [aux_sym_preproc_elif_token1] = ACTIONS(9143), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9145), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9145), + [anon_sym_LPAREN2] = ACTIONS(9145), + [anon_sym_DASH] = ACTIONS(9143), + [anon_sym_PLUS] = ACTIONS(9143), + [anon_sym_STAR] = ACTIONS(9143), + [anon_sym_SLASH] = ACTIONS(9143), + [anon_sym_PERCENT] = ACTIONS(9143), + [anon_sym_PIPE_PIPE] = ACTIONS(9145), + [anon_sym_AMP_AMP] = ACTIONS(9145), + [anon_sym_PIPE] = ACTIONS(9143), + [anon_sym_CARET] = ACTIONS(9143), + [anon_sym_AMP] = ACTIONS(9143), + [anon_sym_EQ_EQ] = ACTIONS(9145), + [anon_sym_BANG_EQ] = ACTIONS(9145), + [anon_sym_GT] = ACTIONS(9143), + [anon_sym_GT_EQ] = ACTIONS(9145), + [anon_sym_LT_EQ] = ACTIONS(9143), + [anon_sym_LT] = ACTIONS(9143), + [anon_sym_LT_LT] = ACTIONS(9143), + [anon_sym_GT_GT] = ACTIONS(9143), + [anon_sym_SEMI] = ACTIONS(9145), + [anon_sym___attribute__] = ACTIONS(9143), + [anon_sym___attribute] = ACTIONS(9143), + [anon_sym_COLON] = ACTIONS(9143), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9145), + [anon_sym_RBRACE] = ACTIONS(9145), + [anon_sym_LBRACK] = ACTIONS(9145), + [anon_sym_EQ] = ACTIONS(9143), + [anon_sym_QMARK] = ACTIONS(9145), + [anon_sym_STAR_EQ] = ACTIONS(9145), + [anon_sym_SLASH_EQ] = ACTIONS(9145), + [anon_sym_PERCENT_EQ] = ACTIONS(9145), + [anon_sym_PLUS_EQ] = ACTIONS(9145), + [anon_sym_DASH_EQ] = ACTIONS(9145), + [anon_sym_LT_LT_EQ] = ACTIONS(9145), + [anon_sym_GT_GT_EQ] = ACTIONS(9145), + [anon_sym_AMP_EQ] = ACTIONS(9145), + [anon_sym_CARET_EQ] = ACTIONS(9145), + [anon_sym_PIPE_EQ] = ACTIONS(9145), + [anon_sym_and_eq] = ACTIONS(9143), + [anon_sym_or_eq] = ACTIONS(9143), + [anon_sym_xor_eq] = ACTIONS(9143), + [anon_sym_LT_EQ_GT] = ACTIONS(9145), + [anon_sym_or] = ACTIONS(9143), + [anon_sym_and] = ACTIONS(9143), + [anon_sym_bitor] = ACTIONS(9143), + [anon_sym_xor] = ACTIONS(9143), + [anon_sym_bitand] = ACTIONS(9143), + [anon_sym_not_eq] = ACTIONS(9143), + [anon_sym_DASH_DASH] = ACTIONS(9145), + [anon_sym_PLUS_PLUS] = ACTIONS(9145), + [anon_sym_DOT] = ACTIONS(9143), + [anon_sym_DOT_STAR] = ACTIONS(9145), + [anon_sym_DASH_GT] = ACTIONS(9145), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9147), + [anon_sym_override] = ACTIONS(9147), + [anon_sym_requires] = ACTIONS(9143), + [anon_sym_COLON_RBRACK] = ACTIONS(9145), + }, + [STATE(3442)] = { + [sym_identifier] = ACTIONS(4266), + [aux_sym_preproc_def_token1] = ACTIONS(4266), + [aux_sym_preproc_if_token1] = ACTIONS(4266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4266), + [sym_preproc_directive] = ACTIONS(4266), + [anon_sym_LPAREN2] = ACTIONS(4268), + [anon_sym_TILDE] = ACTIONS(4268), + [anon_sym_STAR] = ACTIONS(4268), + [anon_sym_AMP_AMP] = ACTIONS(4268), + [anon_sym_AMP] = ACTIONS(4266), + [anon_sym_SEMI] = ACTIONS(4268), + [anon_sym___extension__] = ACTIONS(4266), + [anon_sym_typedef] = ACTIONS(4266), + [anon_sym_virtual] = ACTIONS(4266), + [anon_sym_extern] = ACTIONS(4266), + [anon_sym___attribute__] = ACTIONS(4266), + [anon_sym___attribute] = ACTIONS(4266), + [anon_sym_using] = ACTIONS(4266), + [anon_sym_COLON_COLON] = ACTIONS(4268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4268), + [anon_sym___declspec] = ACTIONS(4266), + [anon_sym___based] = ACTIONS(4266), + [anon_sym_RBRACE] = ACTIONS(4268), + [anon_sym_signed] = ACTIONS(4266), + [anon_sym_unsigned] = ACTIONS(4266), + [anon_sym_long] = ACTIONS(4266), + [anon_sym_short] = ACTIONS(4266), + [anon_sym_LBRACK] = ACTIONS(4266), + [anon_sym_static] = ACTIONS(4266), + [anon_sym_register] = ACTIONS(4266), + [anon_sym_inline] = ACTIONS(4266), + [anon_sym___inline] = ACTIONS(4266), + [anon_sym___inline__] = ACTIONS(4266), + [anon_sym___forceinline] = ACTIONS(4266), + [anon_sym_thread_local] = ACTIONS(4266), + [anon_sym___thread] = ACTIONS(4266), + [anon_sym_const] = ACTIONS(4266), + [anon_sym_constexpr] = ACTIONS(4266), + [anon_sym_volatile] = ACTIONS(4266), + [anon_sym_restrict] = ACTIONS(4266), + [anon_sym___restrict__] = ACTIONS(4266), + [anon_sym__Atomic] = ACTIONS(4266), + [anon_sym__Noreturn] = ACTIONS(4266), + [anon_sym_noreturn] = ACTIONS(4266), + [anon_sym__Nonnull] = ACTIONS(4266), + [anon_sym_mutable] = ACTIONS(4266), + [anon_sym_constinit] = ACTIONS(4266), + [anon_sym_consteval] = ACTIONS(4266), + [anon_sym_alignas] = ACTIONS(4266), + [anon_sym__Alignas] = ACTIONS(4266), + [sym_primitive_type] = ACTIONS(4266), + [anon_sym_enum] = ACTIONS(4266), + [anon_sym_class] = ACTIONS(4266), + [anon_sym_struct] = ACTIONS(4266), + [anon_sym_union] = ACTIONS(4266), + [anon_sym_typename] = ACTIONS(4266), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4266), + [anon_sym_decltype] = ACTIONS(4266), + [anon_sym_explicit] = ACTIONS(4266), + [anon_sym_private] = ACTIONS(4266), + [anon_sym_template] = ACTIONS(4266), + [anon_sym_operator] = ACTIONS(4266), + [anon_sym_friend] = ACTIONS(4266), + [anon_sym_public] = ACTIONS(4266), + [anon_sym_protected] = ACTIONS(4266), + [anon_sym_static_assert] = ACTIONS(4266), + [anon_sym_LBRACK_COLON] = ACTIONS(4268), + }, + [STATE(3443)] = { + [sym_identifier] = ACTIONS(4270), + [aux_sym_preproc_def_token1] = ACTIONS(4270), + [aux_sym_preproc_if_token1] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), + [sym_preproc_directive] = ACTIONS(4270), + [anon_sym_LPAREN2] = ACTIONS(4272), + [anon_sym_TILDE] = ACTIONS(4272), + [anon_sym_STAR] = ACTIONS(4272), + [anon_sym_AMP_AMP] = ACTIONS(4272), + [anon_sym_AMP] = ACTIONS(4270), + [anon_sym_SEMI] = ACTIONS(4272), + [anon_sym___extension__] = ACTIONS(4270), + [anon_sym_typedef] = ACTIONS(4270), + [anon_sym_virtual] = ACTIONS(4270), + [anon_sym_extern] = ACTIONS(4270), + [anon_sym___attribute__] = ACTIONS(4270), + [anon_sym___attribute] = ACTIONS(4270), + [anon_sym_using] = ACTIONS(4270), + [anon_sym_COLON_COLON] = ACTIONS(4272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), + [anon_sym___declspec] = ACTIONS(4270), + [anon_sym___based] = ACTIONS(4270), + [anon_sym_RBRACE] = ACTIONS(4272), + [anon_sym_signed] = ACTIONS(4270), + [anon_sym_unsigned] = ACTIONS(4270), + [anon_sym_long] = ACTIONS(4270), + [anon_sym_short] = ACTIONS(4270), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_static] = ACTIONS(4270), + [anon_sym_register] = ACTIONS(4270), + [anon_sym_inline] = ACTIONS(4270), + [anon_sym___inline] = ACTIONS(4270), + [anon_sym___inline__] = ACTIONS(4270), + [anon_sym___forceinline] = ACTIONS(4270), + [anon_sym_thread_local] = ACTIONS(4270), + [anon_sym___thread] = ACTIONS(4270), + [anon_sym_const] = ACTIONS(4270), + [anon_sym_constexpr] = ACTIONS(4270), + [anon_sym_volatile] = ACTIONS(4270), + [anon_sym_restrict] = ACTIONS(4270), + [anon_sym___restrict__] = ACTIONS(4270), + [anon_sym__Atomic] = ACTIONS(4270), + [anon_sym__Noreturn] = ACTIONS(4270), + [anon_sym_noreturn] = ACTIONS(4270), + [anon_sym__Nonnull] = ACTIONS(4270), + [anon_sym_mutable] = ACTIONS(4270), + [anon_sym_constinit] = ACTIONS(4270), + [anon_sym_consteval] = ACTIONS(4270), + [anon_sym_alignas] = ACTIONS(4270), + [anon_sym__Alignas] = ACTIONS(4270), + [sym_primitive_type] = ACTIONS(4270), + [anon_sym_enum] = ACTIONS(4270), + [anon_sym_class] = ACTIONS(4270), + [anon_sym_struct] = ACTIONS(4270), + [anon_sym_union] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4270), + [anon_sym_decltype] = ACTIONS(4270), + [anon_sym_explicit] = ACTIONS(4270), + [anon_sym_private] = ACTIONS(4270), + [anon_sym_template] = ACTIONS(4270), + [anon_sym_operator] = ACTIONS(4270), + [anon_sym_friend] = ACTIONS(4270), + [anon_sym_public] = ACTIONS(4270), + [anon_sym_protected] = ACTIONS(4270), + [anon_sym_static_assert] = ACTIONS(4270), + [anon_sym_LBRACK_COLON] = ACTIONS(4272), + }, + [STATE(3444)] = { + [sym_identifier] = ACTIONS(4270), + [aux_sym_preproc_def_token1] = ACTIONS(4270), + [aux_sym_preproc_if_token1] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), + [sym_preproc_directive] = ACTIONS(4270), + [anon_sym_LPAREN2] = ACTIONS(4272), + [anon_sym_TILDE] = ACTIONS(4272), + [anon_sym_STAR] = ACTIONS(4272), + [anon_sym_AMP_AMP] = ACTIONS(4272), + [anon_sym_AMP] = ACTIONS(4270), + [anon_sym_SEMI] = ACTIONS(4272), + [anon_sym___extension__] = ACTIONS(4270), + [anon_sym_typedef] = ACTIONS(4270), + [anon_sym_virtual] = ACTIONS(4270), + [anon_sym_extern] = ACTIONS(4270), + [anon_sym___attribute__] = ACTIONS(4270), + [anon_sym___attribute] = ACTIONS(4270), + [anon_sym_using] = ACTIONS(4270), + [anon_sym_COLON_COLON] = ACTIONS(4272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), + [anon_sym___declspec] = ACTIONS(4270), + [anon_sym___based] = ACTIONS(4270), + [anon_sym_RBRACE] = ACTIONS(4272), + [anon_sym_signed] = ACTIONS(4270), + [anon_sym_unsigned] = ACTIONS(4270), + [anon_sym_long] = ACTIONS(4270), + [anon_sym_short] = ACTIONS(4270), + [anon_sym_LBRACK] = ACTIONS(4270), + [anon_sym_static] = ACTIONS(4270), + [anon_sym_register] = ACTIONS(4270), + [anon_sym_inline] = ACTIONS(4270), + [anon_sym___inline] = ACTIONS(4270), + [anon_sym___inline__] = ACTIONS(4270), + [anon_sym___forceinline] = ACTIONS(4270), + [anon_sym_thread_local] = ACTIONS(4270), + [anon_sym___thread] = ACTIONS(4270), + [anon_sym_const] = ACTIONS(4270), + [anon_sym_constexpr] = ACTIONS(4270), + [anon_sym_volatile] = ACTIONS(4270), + [anon_sym_restrict] = ACTIONS(4270), + [anon_sym___restrict__] = ACTIONS(4270), + [anon_sym__Atomic] = ACTIONS(4270), + [anon_sym__Noreturn] = ACTIONS(4270), + [anon_sym_noreturn] = ACTIONS(4270), + [anon_sym__Nonnull] = ACTIONS(4270), + [anon_sym_mutable] = ACTIONS(4270), + [anon_sym_constinit] = ACTIONS(4270), + [anon_sym_consteval] = ACTIONS(4270), + [anon_sym_alignas] = ACTIONS(4270), + [anon_sym__Alignas] = ACTIONS(4270), + [sym_primitive_type] = ACTIONS(4270), + [anon_sym_enum] = ACTIONS(4270), + [anon_sym_class] = ACTIONS(4270), + [anon_sym_struct] = ACTIONS(4270), + [anon_sym_union] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4270), + [anon_sym_decltype] = ACTIONS(4270), + [anon_sym_explicit] = ACTIONS(4270), + [anon_sym_private] = ACTIONS(4270), + [anon_sym_template] = ACTIONS(4270), + [anon_sym_operator] = ACTIONS(4270), + [anon_sym_friend] = ACTIONS(4270), + [anon_sym_public] = ACTIONS(4270), + [anon_sym_protected] = ACTIONS(4270), + [anon_sym_static_assert] = ACTIONS(4270), + [anon_sym_LBRACK_COLON] = ACTIONS(4272), + }, + [STATE(3445)] = { + [sym_identifier] = ACTIONS(3921), + [aux_sym_preproc_def_token1] = ACTIONS(3921), + [aux_sym_preproc_if_token1] = ACTIONS(3921), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3921), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3921), + [sym_preproc_directive] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3923), + [anon_sym_TILDE] = ACTIONS(3923), + [anon_sym_STAR] = ACTIONS(3923), + [anon_sym_AMP_AMP] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym___extension__] = ACTIONS(3921), + [anon_sym_typedef] = ACTIONS(3921), + [anon_sym_virtual] = ACTIONS(3921), + [anon_sym_extern] = ACTIONS(3921), + [anon_sym___attribute__] = ACTIONS(3921), + [anon_sym___attribute] = ACTIONS(3921), + [anon_sym_using] = ACTIONS(3921), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3923), + [anon_sym___declspec] = ACTIONS(3921), + [anon_sym___based] = ACTIONS(3921), + [anon_sym_RBRACE] = ACTIONS(3923), + [anon_sym_signed] = ACTIONS(3921), + [anon_sym_unsigned] = ACTIONS(3921), + [anon_sym_long] = ACTIONS(3921), + [anon_sym_short] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_static] = ACTIONS(3921), + [anon_sym_register] = ACTIONS(3921), + [anon_sym_inline] = ACTIONS(3921), + [anon_sym___inline] = ACTIONS(3921), + [anon_sym___inline__] = ACTIONS(3921), + [anon_sym___forceinline] = ACTIONS(3921), + [anon_sym_thread_local] = ACTIONS(3921), + [anon_sym___thread] = ACTIONS(3921), + [anon_sym_const] = ACTIONS(3921), + [anon_sym_constexpr] = ACTIONS(3921), + [anon_sym_volatile] = ACTIONS(3921), + [anon_sym_restrict] = ACTIONS(3921), + [anon_sym___restrict__] = ACTIONS(3921), + [anon_sym__Atomic] = ACTIONS(3921), + [anon_sym__Noreturn] = ACTIONS(3921), + [anon_sym_noreturn] = ACTIONS(3921), + [anon_sym__Nonnull] = ACTIONS(3921), + [anon_sym_mutable] = ACTIONS(3921), + [anon_sym_constinit] = ACTIONS(3921), + [anon_sym_consteval] = ACTIONS(3921), + [anon_sym_alignas] = ACTIONS(3921), + [anon_sym__Alignas] = ACTIONS(3921), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_enum] = ACTIONS(3921), + [anon_sym_class] = ACTIONS(3921), + [anon_sym_struct] = ACTIONS(3921), + [anon_sym_union] = ACTIONS(3921), + [anon_sym_typename] = ACTIONS(3921), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3921), + [anon_sym_decltype] = ACTIONS(3921), + [anon_sym_explicit] = ACTIONS(3921), + [anon_sym_private] = ACTIONS(3921), + [anon_sym_template] = ACTIONS(3921), + [anon_sym_operator] = ACTIONS(3921), + [anon_sym_friend] = ACTIONS(3921), + [anon_sym_public] = ACTIONS(3921), + [anon_sym_protected] = ACTIONS(3921), + [anon_sym_static_assert] = ACTIONS(3921), + [anon_sym_LBRACK_COLON] = ACTIONS(3923), + }, + [STATE(3446)] = { + [sym_identifier] = ACTIONS(8814), + [aux_sym_preproc_def_token1] = ACTIONS(8814), + [aux_sym_preproc_if_token1] = ACTIONS(8814), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8814), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8814), + [sym_preproc_directive] = ACTIONS(8814), + [anon_sym_LPAREN2] = ACTIONS(8816), + [anon_sym_TILDE] = ACTIONS(8816), + [anon_sym_STAR] = ACTIONS(8816), + [anon_sym_AMP_AMP] = ACTIONS(8816), + [anon_sym_AMP] = ACTIONS(8814), + [anon_sym_SEMI] = ACTIONS(8816), + [anon_sym___extension__] = ACTIONS(8814), + [anon_sym_typedef] = ACTIONS(8814), + [anon_sym_virtual] = ACTIONS(8814), + [anon_sym_extern] = ACTIONS(8814), + [anon_sym___attribute__] = ACTIONS(8814), + [anon_sym___attribute] = ACTIONS(8814), + [anon_sym_using] = ACTIONS(8814), + [anon_sym_COLON_COLON] = ACTIONS(8816), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8816), + [anon_sym___declspec] = ACTIONS(8814), + [anon_sym___based] = ACTIONS(8814), + [anon_sym_RBRACE] = ACTIONS(8816), + [anon_sym_signed] = ACTIONS(8814), + [anon_sym_unsigned] = ACTIONS(8814), + [anon_sym_long] = ACTIONS(8814), + [anon_sym_short] = ACTIONS(8814), + [anon_sym_LBRACK] = ACTIONS(8814), + [anon_sym_static] = ACTIONS(8814), + [anon_sym_register] = ACTIONS(8814), + [anon_sym_inline] = ACTIONS(8814), + [anon_sym___inline] = ACTIONS(8814), + [anon_sym___inline__] = ACTIONS(8814), + [anon_sym___forceinline] = ACTIONS(8814), + [anon_sym_thread_local] = ACTIONS(8814), + [anon_sym___thread] = ACTIONS(8814), + [anon_sym_const] = ACTIONS(8814), + [anon_sym_constexpr] = ACTIONS(8814), + [anon_sym_volatile] = ACTIONS(8814), + [anon_sym_restrict] = ACTIONS(8814), + [anon_sym___restrict__] = ACTIONS(8814), + [anon_sym__Atomic] = ACTIONS(8814), + [anon_sym__Noreturn] = ACTIONS(8814), + [anon_sym_noreturn] = ACTIONS(8814), + [anon_sym__Nonnull] = ACTIONS(8814), + [anon_sym_mutable] = ACTIONS(8814), + [anon_sym_constinit] = ACTIONS(8814), + [anon_sym_consteval] = ACTIONS(8814), + [anon_sym_alignas] = ACTIONS(8814), + [anon_sym__Alignas] = ACTIONS(8814), + [sym_primitive_type] = ACTIONS(8814), + [anon_sym_enum] = ACTIONS(8814), + [anon_sym_class] = ACTIONS(8814), + [anon_sym_struct] = ACTIONS(8814), + [anon_sym_union] = ACTIONS(8814), + [anon_sym_typename] = ACTIONS(8814), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8814), + [anon_sym_decltype] = ACTIONS(8814), + [anon_sym_explicit] = ACTIONS(8814), + [anon_sym_private] = ACTIONS(8814), + [anon_sym_template] = ACTIONS(8814), + [anon_sym_operator] = ACTIONS(8814), + [anon_sym_friend] = ACTIONS(8814), + [anon_sym_public] = ACTIONS(8814), + [anon_sym_protected] = ACTIONS(8814), + [anon_sym_static_assert] = ACTIONS(8814), + [anon_sym_LBRACK_COLON] = ACTIONS(8816), + }, + [STATE(3447)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7225), + [anon_sym_and] = ACTIONS(7225), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7225), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7223), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), + [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + }, + [STATE(3448)] = { + [sym_decltype_auto] = STATE(3593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(7457), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7225), + [anon_sym_and] = ACTIONS(7225), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7225), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7223), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8871), + [anon_sym_decltype] = ACTIONS(6962), + [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + }, + [STATE(3449)] = { + [sym_identifier] = ACTIONS(6605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_RPAREN] = ACTIONS(6598), + [aux_sym_preproc_if_token2] = ACTIONS(6598), + [aux_sym_preproc_else_token1] = ACTIONS(6598), + [aux_sym_preproc_elif_token1] = ACTIONS(6605), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6598), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6605), + [anon_sym_PLUS] = ACTIONS(6605), + [anon_sym_STAR] = ACTIONS(6598), + [anon_sym_SLASH] = ACTIONS(6605), + [anon_sym_PERCENT] = ACTIONS(6598), + [anon_sym_PIPE_PIPE] = ACTIONS(6598), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6605), + [anon_sym_CARET] = ACTIONS(6598), + [anon_sym_AMP] = ACTIONS(6605), + [anon_sym_EQ_EQ] = ACTIONS(6598), + [anon_sym_BANG_EQ] = ACTIONS(6598), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6598), + [anon_sym_LT_EQ] = ACTIONS(6605), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6598), + [anon_sym_GT_GT] = ACTIONS(6598), + [anon_sym_SEMI] = ACTIONS(6598), + [anon_sym___extension__] = ACTIONS(6594), + [anon_sym___attribute__] = ACTIONS(6605), + [anon_sym___attribute] = ACTIONS(6605), + [anon_sym_COLON] = ACTIONS(6605), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6598), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_RBRACE] = ACTIONS(6598), + [anon_sym_LBRACK] = ACTIONS(6598), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6594), + [anon_sym_volatile] = ACTIONS(6594), + [anon_sym_restrict] = ACTIONS(6594), + [anon_sym___restrict__] = ACTIONS(6594), + [anon_sym__Atomic] = ACTIONS(6594), + [anon_sym__Noreturn] = ACTIONS(6594), + [anon_sym_noreturn] = ACTIONS(6594), + [anon_sym__Nonnull] = ACTIONS(6594), + [anon_sym_mutable] = ACTIONS(6594), + [anon_sym_constinit] = ACTIONS(6594), + [anon_sym_consteval] = ACTIONS(6594), + [anon_sym_alignas] = ACTIONS(6594), + [anon_sym__Alignas] = ACTIONS(6594), + [anon_sym_QMARK] = ACTIONS(6598), + [anon_sym_LT_EQ_GT] = ACTIONS(6598), + [anon_sym_or] = ACTIONS(6605), + [anon_sym_and] = ACTIONS(6605), + [anon_sym_bitor] = ACTIONS(6605), + [anon_sym_xor] = ACTIONS(6605), + [anon_sym_bitand] = ACTIONS(6605), + [anon_sym_not_eq] = ACTIONS(6605), + [anon_sym_DASH_DASH] = ACTIONS(6598), + [anon_sym_PLUS_PLUS] = ACTIONS(6598), + [anon_sym_DOT] = ACTIONS(6605), + [anon_sym_DOT_STAR] = ACTIONS(6598), + [anon_sym_DASH_GT] = ACTIONS(6598), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6594), + [anon_sym_decltype] = ACTIONS(6594), + [anon_sym_COLON_RBRACK] = ACTIONS(6598), + }, + [STATE(3450)] = { + [sym_identifier] = ACTIONS(8818), + [aux_sym_preproc_def_token1] = ACTIONS(8818), + [aux_sym_preproc_if_token1] = ACTIONS(8818), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8818), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8818), + [sym_preproc_directive] = ACTIONS(8818), + [anon_sym_LPAREN2] = ACTIONS(8820), + [anon_sym_TILDE] = ACTIONS(8820), + [anon_sym_STAR] = ACTIONS(8820), + [anon_sym_AMP_AMP] = ACTIONS(8820), + [anon_sym_AMP] = ACTIONS(8818), + [anon_sym_SEMI] = ACTIONS(8820), + [anon_sym___extension__] = ACTIONS(8818), + [anon_sym_typedef] = ACTIONS(8818), + [anon_sym_virtual] = ACTIONS(8818), + [anon_sym_extern] = ACTIONS(8818), + [anon_sym___attribute__] = ACTIONS(8818), + [anon_sym___attribute] = ACTIONS(8818), + [anon_sym_using] = ACTIONS(8818), + [anon_sym_COLON_COLON] = ACTIONS(8820), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8820), + [anon_sym___declspec] = ACTIONS(8818), + [anon_sym___based] = ACTIONS(8818), + [anon_sym_RBRACE] = ACTIONS(8820), + [anon_sym_signed] = ACTIONS(8818), + [anon_sym_unsigned] = ACTIONS(8818), + [anon_sym_long] = ACTIONS(8818), + [anon_sym_short] = ACTIONS(8818), + [anon_sym_LBRACK] = ACTIONS(8818), + [anon_sym_static] = ACTIONS(8818), + [anon_sym_register] = ACTIONS(8818), + [anon_sym_inline] = ACTIONS(8818), + [anon_sym___inline] = ACTIONS(8818), + [anon_sym___inline__] = ACTIONS(8818), + [anon_sym___forceinline] = ACTIONS(8818), + [anon_sym_thread_local] = ACTIONS(8818), + [anon_sym___thread] = ACTIONS(8818), + [anon_sym_const] = ACTIONS(8818), + [anon_sym_constexpr] = ACTIONS(8818), + [anon_sym_volatile] = ACTIONS(8818), + [anon_sym_restrict] = ACTIONS(8818), + [anon_sym___restrict__] = ACTIONS(8818), + [anon_sym__Atomic] = ACTIONS(8818), + [anon_sym__Noreturn] = ACTIONS(8818), + [anon_sym_noreturn] = ACTIONS(8818), + [anon_sym__Nonnull] = ACTIONS(8818), + [anon_sym_mutable] = ACTIONS(8818), + [anon_sym_constinit] = ACTIONS(8818), + [anon_sym_consteval] = ACTIONS(8818), + [anon_sym_alignas] = ACTIONS(8818), + [anon_sym__Alignas] = ACTIONS(8818), + [sym_primitive_type] = ACTIONS(8818), + [anon_sym_enum] = ACTIONS(8818), + [anon_sym_class] = ACTIONS(8818), + [anon_sym_struct] = ACTIONS(8818), + [anon_sym_union] = ACTIONS(8818), + [anon_sym_typename] = ACTIONS(8818), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8818), + [anon_sym_decltype] = ACTIONS(8818), + [anon_sym_explicit] = ACTIONS(8818), + [anon_sym_private] = ACTIONS(8818), + [anon_sym_template] = ACTIONS(8818), + [anon_sym_operator] = ACTIONS(8818), + [anon_sym_friend] = ACTIONS(8818), + [anon_sym_public] = ACTIONS(8818), + [anon_sym_protected] = ACTIONS(8818), + [anon_sym_static_assert] = ACTIONS(8818), + [anon_sym_LBRACK_COLON] = ACTIONS(8820), + }, + [STATE(3451)] = { + [sym_identifier] = ACTIONS(3600), + [aux_sym_preproc_def_token1] = ACTIONS(3600), + [aux_sym_preproc_if_token1] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), + [sym_preproc_directive] = ACTIONS(3600), + [anon_sym_LPAREN2] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3602), + [anon_sym_STAR] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_AMP] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym___extension__] = ACTIONS(3600), + [anon_sym_typedef] = ACTIONS(3600), + [anon_sym_virtual] = ACTIONS(3600), + [anon_sym_extern] = ACTIONS(3600), + [anon_sym___attribute__] = ACTIONS(3600), + [anon_sym___attribute] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), + [anon_sym___declspec] = ACTIONS(3600), + [anon_sym___based] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3602), + [anon_sym_signed] = ACTIONS(3600), + [anon_sym_unsigned] = ACTIONS(3600), + [anon_sym_long] = ACTIONS(3600), + [anon_sym_short] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_register] = ACTIONS(3600), + [anon_sym_inline] = ACTIONS(3600), + [anon_sym___inline] = ACTIONS(3600), + [anon_sym___inline__] = ACTIONS(3600), + [anon_sym___forceinline] = ACTIONS(3600), + [anon_sym_thread_local] = ACTIONS(3600), + [anon_sym___thread] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_constexpr] = ACTIONS(3600), + [anon_sym_volatile] = ACTIONS(3600), + [anon_sym_restrict] = ACTIONS(3600), + [anon_sym___restrict__] = ACTIONS(3600), + [anon_sym__Atomic] = ACTIONS(3600), + [anon_sym__Noreturn] = ACTIONS(3600), + [anon_sym_noreturn] = ACTIONS(3600), + [anon_sym__Nonnull] = ACTIONS(3600), + [anon_sym_mutable] = ACTIONS(3600), + [anon_sym_constinit] = ACTIONS(3600), + [anon_sym_consteval] = ACTIONS(3600), + [anon_sym_alignas] = ACTIONS(3600), + [anon_sym__Alignas] = ACTIONS(3600), + [sym_primitive_type] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_struct] = ACTIONS(3600), + [anon_sym_union] = ACTIONS(3600), + [anon_sym_typename] = ACTIONS(3600), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3600), + [anon_sym_decltype] = ACTIONS(3600), + [anon_sym_explicit] = ACTIONS(3600), + [anon_sym_private] = ACTIONS(3600), + [anon_sym_template] = ACTIONS(3600), + [anon_sym_operator] = ACTIONS(3600), + [anon_sym_friend] = ACTIONS(3600), + [anon_sym_public] = ACTIONS(3600), + [anon_sym_protected] = ACTIONS(3600), + [anon_sym_static_assert] = ACTIONS(3600), + [anon_sym_LBRACK_COLON] = ACTIONS(3602), + }, + [STATE(3452)] = { + [sym_identifier] = ACTIONS(3600), + [aux_sym_preproc_def_token1] = ACTIONS(3600), + [aux_sym_preproc_if_token1] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), + [sym_preproc_directive] = ACTIONS(3600), + [anon_sym_LPAREN2] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3602), + [anon_sym_STAR] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_AMP] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym___extension__] = ACTIONS(3600), + [anon_sym_typedef] = ACTIONS(3600), + [anon_sym_virtual] = ACTIONS(3600), + [anon_sym_extern] = ACTIONS(3600), + [anon_sym___attribute__] = ACTIONS(3600), + [anon_sym___attribute] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), + [anon_sym___declspec] = ACTIONS(3600), + [anon_sym___based] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3602), + [anon_sym_signed] = ACTIONS(3600), + [anon_sym_unsigned] = ACTIONS(3600), + [anon_sym_long] = ACTIONS(3600), + [anon_sym_short] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_register] = ACTIONS(3600), + [anon_sym_inline] = ACTIONS(3600), + [anon_sym___inline] = ACTIONS(3600), + [anon_sym___inline__] = ACTIONS(3600), + [anon_sym___forceinline] = ACTIONS(3600), + [anon_sym_thread_local] = ACTIONS(3600), + [anon_sym___thread] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_constexpr] = ACTIONS(3600), + [anon_sym_volatile] = ACTIONS(3600), + [anon_sym_restrict] = ACTIONS(3600), + [anon_sym___restrict__] = ACTIONS(3600), + [anon_sym__Atomic] = ACTIONS(3600), + [anon_sym__Noreturn] = ACTIONS(3600), + [anon_sym_noreturn] = ACTIONS(3600), + [anon_sym__Nonnull] = ACTIONS(3600), + [anon_sym_mutable] = ACTIONS(3600), + [anon_sym_constinit] = ACTIONS(3600), + [anon_sym_consteval] = ACTIONS(3600), + [anon_sym_alignas] = ACTIONS(3600), + [anon_sym__Alignas] = ACTIONS(3600), + [sym_primitive_type] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_struct] = ACTIONS(3600), + [anon_sym_union] = ACTIONS(3600), + [anon_sym_typename] = ACTIONS(3600), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3600), + [anon_sym_decltype] = ACTIONS(3600), + [anon_sym_explicit] = ACTIONS(3600), + [anon_sym_private] = ACTIONS(3600), + [anon_sym_template] = ACTIONS(3600), + [anon_sym_operator] = ACTIONS(3600), + [anon_sym_friend] = ACTIONS(3600), + [anon_sym_public] = ACTIONS(3600), + [anon_sym_protected] = ACTIONS(3600), + [anon_sym_static_assert] = ACTIONS(3600), + [anon_sym_LBRACK_COLON] = ACTIONS(3602), + }, + [STATE(3453)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7475), + [anon_sym_COMMA] = ACTIONS(7475), + [anon_sym_RPAREN] = ACTIONS(7475), + [anon_sym_LPAREN2] = ACTIONS(7475), + [anon_sym_DASH] = ACTIONS(7473), + [anon_sym_PLUS] = ACTIONS(7473), + [anon_sym_STAR] = ACTIONS(7473), + [anon_sym_SLASH] = ACTIONS(7473), + [anon_sym_PERCENT] = ACTIONS(7473), + [anon_sym_PIPE_PIPE] = ACTIONS(7475), + [anon_sym_AMP_AMP] = ACTIONS(7475), + [anon_sym_PIPE] = ACTIONS(7473), + [anon_sym_CARET] = ACTIONS(7473), + [anon_sym_AMP] = ACTIONS(7473), + [anon_sym_EQ_EQ] = ACTIONS(7475), + [anon_sym_BANG_EQ] = ACTIONS(7475), + [anon_sym_GT] = ACTIONS(7473), + [anon_sym_GT_EQ] = ACTIONS(7475), + [anon_sym_LT_EQ] = ACTIONS(7473), + [anon_sym_LT] = ACTIONS(7473), + [anon_sym_LT_LT] = ACTIONS(7473), + [anon_sym_GT_GT] = ACTIONS(7473), + [anon_sym___extension__] = ACTIONS(7475), + [anon_sym_COLON_COLON] = ACTIONS(7475), + [anon_sym_LBRACE] = ACTIONS(7475), + [anon_sym_LBRACK] = ACTIONS(7475), + [anon_sym_EQ] = ACTIONS(7473), + [anon_sym_const] = ACTIONS(7473), + [anon_sym_constexpr] = ACTIONS(7475), + [anon_sym_volatile] = ACTIONS(7475), + [anon_sym_restrict] = ACTIONS(7475), + [anon_sym___restrict__] = ACTIONS(7475), + [anon_sym__Atomic] = ACTIONS(7475), + [anon_sym__Noreturn] = ACTIONS(7475), + [anon_sym_noreturn] = ACTIONS(7475), + [anon_sym__Nonnull] = ACTIONS(7475), + [anon_sym_mutable] = ACTIONS(7475), + [anon_sym_constinit] = ACTIONS(7475), + [anon_sym_consteval] = ACTIONS(7475), + [anon_sym_alignas] = ACTIONS(7475), + [anon_sym__Alignas] = ACTIONS(7475), + [anon_sym_QMARK] = ACTIONS(7475), + [anon_sym_STAR_EQ] = ACTIONS(7475), + [anon_sym_SLASH_EQ] = ACTIONS(7475), + [anon_sym_PERCENT_EQ] = ACTIONS(7475), + [anon_sym_PLUS_EQ] = ACTIONS(7475), + [anon_sym_DASH_EQ] = ACTIONS(7475), + [anon_sym_LT_LT_EQ] = ACTIONS(7475), + [anon_sym_GT_GT_EQ] = ACTIONS(7475), + [anon_sym_AMP_EQ] = ACTIONS(7475), + [anon_sym_CARET_EQ] = ACTIONS(7475), + [anon_sym_PIPE_EQ] = ACTIONS(7475), + [anon_sym_LT_EQ_GT] = ACTIONS(7475), + [anon_sym_or] = ACTIONS(7475), + [anon_sym_and] = ACTIONS(7475), + [anon_sym_bitor] = ACTIONS(7475), + [anon_sym_xor] = ACTIONS(7475), + [anon_sym_bitand] = ACTIONS(7475), + [anon_sym_not_eq] = ACTIONS(7475), + [anon_sym_DASH_DASH] = ACTIONS(7475), + [anon_sym_PLUS_PLUS] = ACTIONS(7475), + [anon_sym_DOT] = ACTIONS(7473), + [anon_sym_DOT_STAR] = ACTIONS(7475), + [anon_sym_DASH_GT] = ACTIONS(7473), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7475), + [anon_sym_override] = ACTIONS(7475), + [anon_sym_requires] = ACTIONS(7475), + [anon_sym_DASH_GT_STAR] = ACTIONS(7475), + }, + [STATE(3454)] = { + [sym_identifier] = ACTIONS(3618), + [aux_sym_preproc_def_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), + [sym_preproc_directive] = ACTIONS(3618), + [anon_sym_LPAREN2] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_AMP] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym___extension__] = ACTIONS(3618), + [anon_sym_typedef] = ACTIONS(3618), + [anon_sym_virtual] = ACTIONS(3618), + [anon_sym_extern] = ACTIONS(3618), + [anon_sym___attribute__] = ACTIONS(3618), + [anon_sym___attribute] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_COLON_COLON] = ACTIONS(3620), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), + [anon_sym___declspec] = ACTIONS(3618), + [anon_sym___based] = ACTIONS(3618), + [anon_sym_RBRACE] = ACTIONS(3620), + [anon_sym_signed] = ACTIONS(3618), + [anon_sym_unsigned] = ACTIONS(3618), + [anon_sym_long] = ACTIONS(3618), + [anon_sym_short] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_register] = ACTIONS(3618), + [anon_sym_inline] = ACTIONS(3618), + [anon_sym___inline] = ACTIONS(3618), + [anon_sym___inline__] = ACTIONS(3618), + [anon_sym___forceinline] = ACTIONS(3618), + [anon_sym_thread_local] = ACTIONS(3618), + [anon_sym___thread] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_constexpr] = ACTIONS(3618), + [anon_sym_volatile] = ACTIONS(3618), + [anon_sym_restrict] = ACTIONS(3618), + [anon_sym___restrict__] = ACTIONS(3618), + [anon_sym__Atomic] = ACTIONS(3618), + [anon_sym__Noreturn] = ACTIONS(3618), + [anon_sym_noreturn] = ACTIONS(3618), + [anon_sym__Nonnull] = ACTIONS(3618), + [anon_sym_mutable] = ACTIONS(3618), + [anon_sym_constinit] = ACTIONS(3618), + [anon_sym_consteval] = ACTIONS(3618), + [anon_sym_alignas] = ACTIONS(3618), + [anon_sym__Alignas] = ACTIONS(3618), + [sym_primitive_type] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_struct] = ACTIONS(3618), + [anon_sym_union] = ACTIONS(3618), + [anon_sym_typename] = ACTIONS(3618), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3618), + [anon_sym_decltype] = ACTIONS(3618), + [anon_sym_explicit] = ACTIONS(3618), + [anon_sym_private] = ACTIONS(3618), + [anon_sym_template] = ACTIONS(3618), + [anon_sym_operator] = ACTIONS(3618), + [anon_sym_friend] = ACTIONS(3618), + [anon_sym_public] = ACTIONS(3618), + [anon_sym_protected] = ACTIONS(3618), + [anon_sym_static_assert] = ACTIONS(3618), + [anon_sym_LBRACK_COLON] = ACTIONS(3620), + }, + [STATE(3455)] = { + [sym_identifier] = ACTIONS(3618), + [aux_sym_preproc_def_token1] = ACTIONS(3618), + [aux_sym_preproc_if_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), + [sym_preproc_directive] = ACTIONS(3618), + [anon_sym_LPAREN2] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_AMP] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym___extension__] = ACTIONS(3618), + [anon_sym_typedef] = ACTIONS(3618), + [anon_sym_virtual] = ACTIONS(3618), + [anon_sym_extern] = ACTIONS(3618), + [anon_sym___attribute__] = ACTIONS(3618), + [anon_sym___attribute] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_COLON_COLON] = ACTIONS(3620), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), + [anon_sym___declspec] = ACTIONS(3618), + [anon_sym___based] = ACTIONS(3618), + [anon_sym_RBRACE] = ACTIONS(3620), + [anon_sym_signed] = ACTIONS(3618), + [anon_sym_unsigned] = ACTIONS(3618), + [anon_sym_long] = ACTIONS(3618), + [anon_sym_short] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_register] = ACTIONS(3618), + [anon_sym_inline] = ACTIONS(3618), + [anon_sym___inline] = ACTIONS(3618), + [anon_sym___inline__] = ACTIONS(3618), + [anon_sym___forceinline] = ACTIONS(3618), + [anon_sym_thread_local] = ACTIONS(3618), + [anon_sym___thread] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_constexpr] = ACTIONS(3618), + [anon_sym_volatile] = ACTIONS(3618), + [anon_sym_restrict] = ACTIONS(3618), + [anon_sym___restrict__] = ACTIONS(3618), + [anon_sym__Atomic] = ACTIONS(3618), + [anon_sym__Noreturn] = ACTIONS(3618), + [anon_sym_noreturn] = ACTIONS(3618), + [anon_sym__Nonnull] = ACTIONS(3618), + [anon_sym_mutable] = ACTIONS(3618), + [anon_sym_constinit] = ACTIONS(3618), + [anon_sym_consteval] = ACTIONS(3618), + [anon_sym_alignas] = ACTIONS(3618), + [anon_sym__Alignas] = ACTIONS(3618), + [sym_primitive_type] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_struct] = ACTIONS(3618), + [anon_sym_union] = ACTIONS(3618), + [anon_sym_typename] = ACTIONS(3618), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3618), + [anon_sym_decltype] = ACTIONS(3618), + [anon_sym_explicit] = ACTIONS(3618), + [anon_sym_private] = ACTIONS(3618), + [anon_sym_template] = ACTIONS(3618), + [anon_sym_operator] = ACTIONS(3618), + [anon_sym_friend] = ACTIONS(3618), + [anon_sym_public] = ACTIONS(3618), + [anon_sym_protected] = ACTIONS(3618), + [anon_sym_static_assert] = ACTIONS(3618), + [anon_sym_LBRACK_COLON] = ACTIONS(3620), + }, + [STATE(3456)] = { + [sym_identifier] = ACTIONS(3622), + [aux_sym_preproc_def_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), + [sym_preproc_directive] = ACTIONS(3622), + [anon_sym_LPAREN2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_STAR] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_AMP] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym___extension__] = ACTIONS(3622), + [anon_sym_typedef] = ACTIONS(3622), + [anon_sym_virtual] = ACTIONS(3622), + [anon_sym_extern] = ACTIONS(3622), + [anon_sym___attribute__] = ACTIONS(3622), + [anon_sym___attribute] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_COLON_COLON] = ACTIONS(3624), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), + [anon_sym___declspec] = ACTIONS(3622), + [anon_sym___based] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3624), + [anon_sym_signed] = ACTIONS(3622), + [anon_sym_unsigned] = ACTIONS(3622), + [anon_sym_long] = ACTIONS(3622), + [anon_sym_short] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_register] = ACTIONS(3622), + [anon_sym_inline] = ACTIONS(3622), + [anon_sym___inline] = ACTIONS(3622), + [anon_sym___inline__] = ACTIONS(3622), + [anon_sym___forceinline] = ACTIONS(3622), + [anon_sym_thread_local] = ACTIONS(3622), + [anon_sym___thread] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_constexpr] = ACTIONS(3622), + [anon_sym_volatile] = ACTIONS(3622), + [anon_sym_restrict] = ACTIONS(3622), + [anon_sym___restrict__] = ACTIONS(3622), + [anon_sym__Atomic] = ACTIONS(3622), + [anon_sym__Noreturn] = ACTIONS(3622), + [anon_sym_noreturn] = ACTIONS(3622), + [anon_sym__Nonnull] = ACTIONS(3622), + [anon_sym_mutable] = ACTIONS(3622), + [anon_sym_constinit] = ACTIONS(3622), + [anon_sym_consteval] = ACTIONS(3622), + [anon_sym_alignas] = ACTIONS(3622), + [anon_sym__Alignas] = ACTIONS(3622), + [sym_primitive_type] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_struct] = ACTIONS(3622), + [anon_sym_union] = ACTIONS(3622), + [anon_sym_typename] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3622), + [anon_sym_decltype] = ACTIONS(3622), + [anon_sym_explicit] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_template] = ACTIONS(3622), + [anon_sym_operator] = ACTIONS(3622), + [anon_sym_friend] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_static_assert] = ACTIONS(3622), + [anon_sym_LBRACK_COLON] = ACTIONS(3624), + }, + [STATE(3457)] = { + [sym_identifier] = ACTIONS(3622), + [aux_sym_preproc_def_token1] = ACTIONS(3622), + [aux_sym_preproc_if_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), + [sym_preproc_directive] = ACTIONS(3622), + [anon_sym_LPAREN2] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_STAR] = ACTIONS(3624), + [anon_sym_AMP_AMP] = ACTIONS(3624), + [anon_sym_AMP] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym___extension__] = ACTIONS(3622), + [anon_sym_typedef] = ACTIONS(3622), + [anon_sym_virtual] = ACTIONS(3622), + [anon_sym_extern] = ACTIONS(3622), + [anon_sym___attribute__] = ACTIONS(3622), + [anon_sym___attribute] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_COLON_COLON] = ACTIONS(3624), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), + [anon_sym___declspec] = ACTIONS(3622), + [anon_sym___based] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3624), + [anon_sym_signed] = ACTIONS(3622), + [anon_sym_unsigned] = ACTIONS(3622), + [anon_sym_long] = ACTIONS(3622), + [anon_sym_short] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_register] = ACTIONS(3622), + [anon_sym_inline] = ACTIONS(3622), + [anon_sym___inline] = ACTIONS(3622), + [anon_sym___inline__] = ACTIONS(3622), + [anon_sym___forceinline] = ACTIONS(3622), + [anon_sym_thread_local] = ACTIONS(3622), + [anon_sym___thread] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_constexpr] = ACTIONS(3622), + [anon_sym_volatile] = ACTIONS(3622), + [anon_sym_restrict] = ACTIONS(3622), + [anon_sym___restrict__] = ACTIONS(3622), + [anon_sym__Atomic] = ACTIONS(3622), + [anon_sym__Noreturn] = ACTIONS(3622), + [anon_sym_noreturn] = ACTIONS(3622), + [anon_sym__Nonnull] = ACTIONS(3622), + [anon_sym_mutable] = ACTIONS(3622), + [anon_sym_constinit] = ACTIONS(3622), + [anon_sym_consteval] = ACTIONS(3622), + [anon_sym_alignas] = ACTIONS(3622), + [anon_sym__Alignas] = ACTIONS(3622), + [sym_primitive_type] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_struct] = ACTIONS(3622), + [anon_sym_union] = ACTIONS(3622), + [anon_sym_typename] = ACTIONS(3622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3622), + [anon_sym_decltype] = ACTIONS(3622), + [anon_sym_explicit] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_template] = ACTIONS(3622), + [anon_sym_operator] = ACTIONS(3622), + [anon_sym_friend] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_static_assert] = ACTIONS(3622), + [anon_sym_LBRACK_COLON] = ACTIONS(3624), + }, + [STATE(3458)] = { + [sym_identifier] = ACTIONS(3658), + [aux_sym_preproc_def_token1] = ACTIONS(3658), + [aux_sym_preproc_if_token1] = ACTIONS(3658), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3658), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3658), + [sym_preproc_directive] = ACTIONS(3658), + [anon_sym_LPAREN2] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [anon_sym_STAR] = ACTIONS(3660), + [anon_sym_AMP_AMP] = ACTIONS(3660), + [anon_sym_AMP] = ACTIONS(3658), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym___extension__] = ACTIONS(3658), + [anon_sym_typedef] = ACTIONS(3658), + [anon_sym_virtual] = ACTIONS(3658), + [anon_sym_extern] = ACTIONS(3658), + [anon_sym___attribute__] = ACTIONS(3658), + [anon_sym___attribute] = ACTIONS(3658), + [anon_sym_using] = ACTIONS(3658), + [anon_sym_COLON_COLON] = ACTIONS(3660), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3660), + [anon_sym___declspec] = ACTIONS(3658), + [anon_sym___based] = ACTIONS(3658), + [anon_sym_RBRACE] = ACTIONS(3660), + [anon_sym_signed] = ACTIONS(3658), + [anon_sym_unsigned] = ACTIONS(3658), + [anon_sym_long] = ACTIONS(3658), + [anon_sym_short] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_register] = ACTIONS(3658), + [anon_sym_inline] = ACTIONS(3658), + [anon_sym___inline] = ACTIONS(3658), + [anon_sym___inline__] = ACTIONS(3658), + [anon_sym___forceinline] = ACTIONS(3658), + [anon_sym_thread_local] = ACTIONS(3658), + [anon_sym___thread] = ACTIONS(3658), + [anon_sym_const] = ACTIONS(3658), + [anon_sym_constexpr] = ACTIONS(3658), + [anon_sym_volatile] = ACTIONS(3658), + [anon_sym_restrict] = ACTIONS(3658), + [anon_sym___restrict__] = ACTIONS(3658), + [anon_sym__Atomic] = ACTIONS(3658), + [anon_sym__Noreturn] = ACTIONS(3658), + [anon_sym_noreturn] = ACTIONS(3658), + [anon_sym__Nonnull] = ACTIONS(3658), + [anon_sym_mutable] = ACTIONS(3658), + [anon_sym_constinit] = ACTIONS(3658), + [anon_sym_consteval] = ACTIONS(3658), + [anon_sym_alignas] = ACTIONS(3658), + [anon_sym__Alignas] = ACTIONS(3658), + [sym_primitive_type] = ACTIONS(3658), + [anon_sym_enum] = ACTIONS(3658), + [anon_sym_class] = ACTIONS(3658), + [anon_sym_struct] = ACTIONS(3658), + [anon_sym_union] = ACTIONS(3658), + [anon_sym_typename] = ACTIONS(3658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3658), + [anon_sym_decltype] = ACTIONS(3658), + [anon_sym_explicit] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_template] = ACTIONS(3658), + [anon_sym_operator] = ACTIONS(3658), + [anon_sym_friend] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_protected] = ACTIONS(3658), + [anon_sym_static_assert] = ACTIONS(3658), + [anon_sym_LBRACK_COLON] = ACTIONS(3660), + }, + [STATE(3459)] = { + [sym_identifier] = ACTIONS(3662), + [aux_sym_preproc_def_token1] = ACTIONS(3662), + [aux_sym_preproc_if_token1] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), + [sym_preproc_directive] = ACTIONS(3662), + [anon_sym_LPAREN2] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym___extension__] = ACTIONS(3662), + [anon_sym_typedef] = ACTIONS(3662), + [anon_sym_virtual] = ACTIONS(3662), + [anon_sym_extern] = ACTIONS(3662), + [anon_sym___attribute__] = ACTIONS(3662), + [anon_sym___attribute] = ACTIONS(3662), + [anon_sym_using] = ACTIONS(3662), + [anon_sym_COLON_COLON] = ACTIONS(3664), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), + [anon_sym___declspec] = ACTIONS(3662), + [anon_sym___based] = ACTIONS(3662), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_signed] = ACTIONS(3662), + [anon_sym_unsigned] = ACTIONS(3662), + [anon_sym_long] = ACTIONS(3662), + [anon_sym_short] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3662), + [anon_sym_static] = ACTIONS(3662), + [anon_sym_register] = ACTIONS(3662), + [anon_sym_inline] = ACTIONS(3662), + [anon_sym___inline] = ACTIONS(3662), + [anon_sym___inline__] = ACTIONS(3662), + [anon_sym___forceinline] = ACTIONS(3662), + [anon_sym_thread_local] = ACTIONS(3662), + [anon_sym___thread] = ACTIONS(3662), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_constexpr] = ACTIONS(3662), + [anon_sym_volatile] = ACTIONS(3662), + [anon_sym_restrict] = ACTIONS(3662), + [anon_sym___restrict__] = ACTIONS(3662), + [anon_sym__Atomic] = ACTIONS(3662), + [anon_sym__Noreturn] = ACTIONS(3662), + [anon_sym_noreturn] = ACTIONS(3662), + [anon_sym__Nonnull] = ACTIONS(3662), + [anon_sym_mutable] = ACTIONS(3662), + [anon_sym_constinit] = ACTIONS(3662), + [anon_sym_consteval] = ACTIONS(3662), + [anon_sym_alignas] = ACTIONS(3662), + [anon_sym__Alignas] = ACTIONS(3662), + [sym_primitive_type] = ACTIONS(3662), + [anon_sym_enum] = ACTIONS(3662), + [anon_sym_class] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(3662), + [anon_sym_union] = ACTIONS(3662), + [anon_sym_typename] = ACTIONS(3662), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3662), + [anon_sym_decltype] = ACTIONS(3662), + [anon_sym_explicit] = ACTIONS(3662), + [anon_sym_private] = ACTIONS(3662), + [anon_sym_template] = ACTIONS(3662), + [anon_sym_operator] = ACTIONS(3662), + [anon_sym_friend] = ACTIONS(3662), + [anon_sym_public] = ACTIONS(3662), + [anon_sym_protected] = ACTIONS(3662), + [anon_sym_static_assert] = ACTIONS(3662), + [anon_sym_LBRACK_COLON] = ACTIONS(3664), + }, + [STATE(3460)] = { + [sym_identifier] = ACTIONS(3662), + [aux_sym_preproc_def_token1] = ACTIONS(3662), + [aux_sym_preproc_if_token1] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), + [sym_preproc_directive] = ACTIONS(3662), + [anon_sym_LPAREN2] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym___extension__] = ACTIONS(3662), + [anon_sym_typedef] = ACTIONS(3662), + [anon_sym_virtual] = ACTIONS(3662), + [anon_sym_extern] = ACTIONS(3662), + [anon_sym___attribute__] = ACTIONS(3662), + [anon_sym___attribute] = ACTIONS(3662), + [anon_sym_using] = ACTIONS(3662), + [anon_sym_COLON_COLON] = ACTIONS(3664), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), + [anon_sym___declspec] = ACTIONS(3662), + [anon_sym___based] = ACTIONS(3662), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_signed] = ACTIONS(3662), + [anon_sym_unsigned] = ACTIONS(3662), + [anon_sym_long] = ACTIONS(3662), + [anon_sym_short] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3662), + [anon_sym_static] = ACTIONS(3662), + [anon_sym_register] = ACTIONS(3662), + [anon_sym_inline] = ACTIONS(3662), + [anon_sym___inline] = ACTIONS(3662), + [anon_sym___inline__] = ACTIONS(3662), + [anon_sym___forceinline] = ACTIONS(3662), + [anon_sym_thread_local] = ACTIONS(3662), + [anon_sym___thread] = ACTIONS(3662), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_constexpr] = ACTIONS(3662), + [anon_sym_volatile] = ACTIONS(3662), + [anon_sym_restrict] = ACTIONS(3662), + [anon_sym___restrict__] = ACTIONS(3662), + [anon_sym__Atomic] = ACTIONS(3662), + [anon_sym__Noreturn] = ACTIONS(3662), + [anon_sym_noreturn] = ACTIONS(3662), + [anon_sym__Nonnull] = ACTIONS(3662), + [anon_sym_mutable] = ACTIONS(3662), + [anon_sym_constinit] = ACTIONS(3662), + [anon_sym_consteval] = ACTIONS(3662), + [anon_sym_alignas] = ACTIONS(3662), + [anon_sym__Alignas] = ACTIONS(3662), + [sym_primitive_type] = ACTIONS(3662), + [anon_sym_enum] = ACTIONS(3662), + [anon_sym_class] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(3662), + [anon_sym_union] = ACTIONS(3662), + [anon_sym_typename] = ACTIONS(3662), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3662), + [anon_sym_decltype] = ACTIONS(3662), + [anon_sym_explicit] = ACTIONS(3662), + [anon_sym_private] = ACTIONS(3662), + [anon_sym_template] = ACTIONS(3662), + [anon_sym_operator] = ACTIONS(3662), + [anon_sym_friend] = ACTIONS(3662), + [anon_sym_public] = ACTIONS(3662), + [anon_sym_protected] = ACTIONS(3662), + [anon_sym_static_assert] = ACTIONS(3662), + [anon_sym_LBRACK_COLON] = ACTIONS(3664), + }, + [STATE(3461)] = { + [sym_identifier] = ACTIONS(3678), + [aux_sym_preproc_def_token1] = ACTIONS(3678), + [aux_sym_preproc_if_token1] = ACTIONS(3678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3678), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3678), + [sym_preproc_directive] = ACTIONS(3678), + [anon_sym_LPAREN2] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3680), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym___extension__] = ACTIONS(3678), + [anon_sym_typedef] = ACTIONS(3678), + [anon_sym_virtual] = ACTIONS(3678), + [anon_sym_extern] = ACTIONS(3678), + [anon_sym___attribute__] = ACTIONS(3678), + [anon_sym___attribute] = ACTIONS(3678), + [anon_sym_using] = ACTIONS(3678), + [anon_sym_COLON_COLON] = ACTIONS(3680), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3680), + [anon_sym___declspec] = ACTIONS(3678), + [anon_sym___based] = ACTIONS(3678), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_signed] = ACTIONS(3678), + [anon_sym_unsigned] = ACTIONS(3678), + [anon_sym_long] = ACTIONS(3678), + [anon_sym_short] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_static] = ACTIONS(3678), + [anon_sym_register] = ACTIONS(3678), + [anon_sym_inline] = ACTIONS(3678), + [anon_sym___inline] = ACTIONS(3678), + [anon_sym___inline__] = ACTIONS(3678), + [anon_sym___forceinline] = ACTIONS(3678), + [anon_sym_thread_local] = ACTIONS(3678), + [anon_sym___thread] = ACTIONS(3678), + [anon_sym_const] = ACTIONS(3678), + [anon_sym_constexpr] = ACTIONS(3678), + [anon_sym_volatile] = ACTIONS(3678), + [anon_sym_restrict] = ACTIONS(3678), + [anon_sym___restrict__] = ACTIONS(3678), + [anon_sym__Atomic] = ACTIONS(3678), + [anon_sym__Noreturn] = ACTIONS(3678), + [anon_sym_noreturn] = ACTIONS(3678), + [anon_sym__Nonnull] = ACTIONS(3678), + [anon_sym_mutable] = ACTIONS(3678), + [anon_sym_constinit] = ACTIONS(3678), + [anon_sym_consteval] = ACTIONS(3678), + [anon_sym_alignas] = ACTIONS(3678), + [anon_sym__Alignas] = ACTIONS(3678), + [sym_primitive_type] = ACTIONS(3678), + [anon_sym_enum] = ACTIONS(3678), + [anon_sym_class] = ACTIONS(3678), + [anon_sym_struct] = ACTIONS(3678), + [anon_sym_union] = ACTIONS(3678), + [anon_sym_typename] = ACTIONS(3678), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3678), + [anon_sym_decltype] = ACTIONS(3678), + [anon_sym_explicit] = ACTIONS(3678), + [anon_sym_private] = ACTIONS(3678), + [anon_sym_template] = ACTIONS(3678), + [anon_sym_operator] = ACTIONS(3678), + [anon_sym_friend] = ACTIONS(3678), + [anon_sym_public] = ACTIONS(3678), + [anon_sym_protected] = ACTIONS(3678), + [anon_sym_static_assert] = ACTIONS(3678), + [anon_sym_LBRACK_COLON] = ACTIONS(3680), + }, + [STATE(3462)] = { + [sym_identifier] = ACTIONS(3917), + [aux_sym_preproc_def_token1] = ACTIONS(3917), + [aux_sym_preproc_if_token1] = ACTIONS(3917), + [aux_sym_preproc_if_token2] = ACTIONS(3917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3917), + [sym_preproc_directive] = ACTIONS(3917), + [anon_sym_LPAREN2] = ACTIONS(3919), + [anon_sym_TILDE] = ACTIONS(3919), + [anon_sym_STAR] = ACTIONS(3919), + [anon_sym_AMP_AMP] = ACTIONS(3919), + [anon_sym_AMP] = ACTIONS(3917), + [anon_sym_SEMI] = ACTIONS(3919), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_typedef] = ACTIONS(3917), + [anon_sym_virtual] = ACTIONS(3917), + [anon_sym_extern] = ACTIONS(3917), + [anon_sym___attribute__] = ACTIONS(3917), + [anon_sym___attribute] = ACTIONS(3917), + [anon_sym_using] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(3919), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3919), + [anon_sym___declspec] = ACTIONS(3917), + [anon_sym___based] = ACTIONS(3917), + [anon_sym_signed] = ACTIONS(3917), + [anon_sym_unsigned] = ACTIONS(3917), + [anon_sym_long] = ACTIONS(3917), + [anon_sym_short] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(3917), + [anon_sym_static] = ACTIONS(3917), + [anon_sym_register] = ACTIONS(3917), + [anon_sym_inline] = ACTIONS(3917), + [anon_sym___inline] = ACTIONS(3917), + [anon_sym___inline__] = ACTIONS(3917), + [anon_sym___forceinline] = ACTIONS(3917), + [anon_sym_thread_local] = ACTIONS(3917), + [anon_sym___thread] = ACTIONS(3917), + [anon_sym_const] = ACTIONS(3917), + [anon_sym_constexpr] = ACTIONS(3917), + [anon_sym_volatile] = ACTIONS(3917), + [anon_sym_restrict] = ACTIONS(3917), + [anon_sym___restrict__] = ACTIONS(3917), + [anon_sym__Atomic] = ACTIONS(3917), + [anon_sym__Noreturn] = ACTIONS(3917), + [anon_sym_noreturn] = ACTIONS(3917), + [anon_sym__Nonnull] = ACTIONS(3917), + [anon_sym_mutable] = ACTIONS(3917), + [anon_sym_constinit] = ACTIONS(3917), + [anon_sym_consteval] = ACTIONS(3917), + [anon_sym_alignas] = ACTIONS(3917), + [anon_sym__Alignas] = ACTIONS(3917), + [sym_primitive_type] = ACTIONS(3917), + [anon_sym_enum] = ACTIONS(3917), + [anon_sym_class] = ACTIONS(3917), + [anon_sym_struct] = ACTIONS(3917), + [anon_sym_union] = ACTIONS(3917), + [anon_sym_typename] = ACTIONS(3917), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3917), + [anon_sym_decltype] = ACTIONS(3917), + [anon_sym_explicit] = ACTIONS(3917), + [anon_sym_private] = ACTIONS(3917), + [anon_sym_template] = ACTIONS(3917), + [anon_sym_operator] = ACTIONS(3917), + [anon_sym_friend] = ACTIONS(3917), + [anon_sym_public] = ACTIONS(3917), + [anon_sym_protected] = ACTIONS(3917), + [anon_sym_static_assert] = ACTIONS(3917), + [anon_sym_LBRACK_COLON] = ACTIONS(3919), + }, + [STATE(3463)] = { + [sym_identifier] = ACTIONS(3931), + [aux_sym_preproc_def_token1] = ACTIONS(3931), + [aux_sym_preproc_if_token1] = ACTIONS(3931), + [aux_sym_preproc_if_token2] = ACTIONS(3931), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3931), + [sym_preproc_directive] = ACTIONS(3931), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_TILDE] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP_AMP] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3931), + [anon_sym_SEMI] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(3931), + [anon_sym_typedef] = ACTIONS(3931), + [anon_sym_virtual] = ACTIONS(3931), + [anon_sym_extern] = ACTIONS(3931), + [anon_sym___attribute__] = ACTIONS(3931), + [anon_sym___attribute] = ACTIONS(3931), + [anon_sym_using] = ACTIONS(3931), + [anon_sym_COLON_COLON] = ACTIONS(3933), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3933), + [anon_sym___declspec] = ACTIONS(3931), + [anon_sym___based] = ACTIONS(3931), + [anon_sym_signed] = ACTIONS(3931), + [anon_sym_unsigned] = ACTIONS(3931), + [anon_sym_long] = ACTIONS(3931), + [anon_sym_short] = ACTIONS(3931), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_static] = ACTIONS(3931), + [anon_sym_register] = ACTIONS(3931), + [anon_sym_inline] = ACTIONS(3931), + [anon_sym___inline] = ACTIONS(3931), + [anon_sym___inline__] = ACTIONS(3931), + [anon_sym___forceinline] = ACTIONS(3931), + [anon_sym_thread_local] = ACTIONS(3931), + [anon_sym___thread] = ACTIONS(3931), + [anon_sym_const] = ACTIONS(3931), + [anon_sym_constexpr] = ACTIONS(3931), + [anon_sym_volatile] = ACTIONS(3931), + [anon_sym_restrict] = ACTIONS(3931), + [anon_sym___restrict__] = ACTIONS(3931), + [anon_sym__Atomic] = ACTIONS(3931), + [anon_sym__Noreturn] = ACTIONS(3931), + [anon_sym_noreturn] = ACTIONS(3931), + [anon_sym__Nonnull] = ACTIONS(3931), + [anon_sym_mutable] = ACTIONS(3931), + [anon_sym_constinit] = ACTIONS(3931), + [anon_sym_consteval] = ACTIONS(3931), + [anon_sym_alignas] = ACTIONS(3931), + [anon_sym__Alignas] = ACTIONS(3931), + [sym_primitive_type] = ACTIONS(3931), + [anon_sym_enum] = ACTIONS(3931), + [anon_sym_class] = ACTIONS(3931), + [anon_sym_struct] = ACTIONS(3931), + [anon_sym_union] = ACTIONS(3931), + [anon_sym_typename] = ACTIONS(3931), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3931), + [anon_sym_decltype] = ACTIONS(3931), + [anon_sym_explicit] = ACTIONS(3931), + [anon_sym_private] = ACTIONS(3931), + [anon_sym_template] = ACTIONS(3931), + [anon_sym_operator] = ACTIONS(3931), + [anon_sym_friend] = ACTIONS(3931), + [anon_sym_public] = ACTIONS(3931), + [anon_sym_protected] = ACTIONS(3931), + [anon_sym_static_assert] = ACTIONS(3931), + [anon_sym_LBRACK_COLON] = ACTIONS(3933), + }, + [STATE(3464)] = { + [sym_identifier] = ACTIONS(3950), + [aux_sym_preproc_def_token1] = ACTIONS(3950), + [aux_sym_preproc_if_token1] = ACTIONS(3950), + [aux_sym_preproc_if_token2] = ACTIONS(3950), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), + [sym_preproc_directive] = ACTIONS(3950), + [anon_sym_LPAREN2] = ACTIONS(3952), + [anon_sym_TILDE] = ACTIONS(3952), + [anon_sym_STAR] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_AMP] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym___extension__] = ACTIONS(3950), + [anon_sym_typedef] = ACTIONS(3950), + [anon_sym_virtual] = ACTIONS(3950), + [anon_sym_extern] = ACTIONS(3950), + [anon_sym___attribute__] = ACTIONS(3950), + [anon_sym___attribute] = ACTIONS(3950), + [anon_sym_using] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), + [anon_sym___declspec] = ACTIONS(3950), + [anon_sym___based] = ACTIONS(3950), + [anon_sym_signed] = ACTIONS(3950), + [anon_sym_unsigned] = ACTIONS(3950), + [anon_sym_long] = ACTIONS(3950), + [anon_sym_short] = ACTIONS(3950), + [anon_sym_LBRACK] = ACTIONS(3950), + [anon_sym_static] = ACTIONS(3950), + [anon_sym_register] = ACTIONS(3950), + [anon_sym_inline] = ACTIONS(3950), + [anon_sym___inline] = ACTIONS(3950), + [anon_sym___inline__] = ACTIONS(3950), + [anon_sym___forceinline] = ACTIONS(3950), + [anon_sym_thread_local] = ACTIONS(3950), + [anon_sym___thread] = ACTIONS(3950), + [anon_sym_const] = ACTIONS(3950), + [anon_sym_constexpr] = ACTIONS(3950), + [anon_sym_volatile] = ACTIONS(3950), + [anon_sym_restrict] = ACTIONS(3950), + [anon_sym___restrict__] = ACTIONS(3950), + [anon_sym__Atomic] = ACTIONS(3950), + [anon_sym__Noreturn] = ACTIONS(3950), + [anon_sym_noreturn] = ACTIONS(3950), + [anon_sym__Nonnull] = ACTIONS(3950), + [anon_sym_mutable] = ACTIONS(3950), + [anon_sym_constinit] = ACTIONS(3950), + [anon_sym_consteval] = ACTIONS(3950), + [anon_sym_alignas] = ACTIONS(3950), + [anon_sym__Alignas] = ACTIONS(3950), + [sym_primitive_type] = ACTIONS(3950), + [anon_sym_enum] = ACTIONS(3950), + [anon_sym_class] = ACTIONS(3950), + [anon_sym_struct] = ACTIONS(3950), + [anon_sym_union] = ACTIONS(3950), + [anon_sym_typename] = ACTIONS(3950), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3950), + [anon_sym_decltype] = ACTIONS(3950), + [anon_sym_explicit] = ACTIONS(3950), + [anon_sym_private] = ACTIONS(3950), + [anon_sym_template] = ACTIONS(3950), + [anon_sym_operator] = ACTIONS(3950), + [anon_sym_friend] = ACTIONS(3950), + [anon_sym_public] = ACTIONS(3950), + [anon_sym_protected] = ACTIONS(3950), + [anon_sym_static_assert] = ACTIONS(3950), + [anon_sym_LBRACK_COLON] = ACTIONS(3952), + }, + [STATE(3465)] = { + [sym_identifier] = ACTIONS(3962), + [aux_sym_preproc_def_token1] = ACTIONS(3962), + [aux_sym_preproc_if_token1] = ACTIONS(3962), + [aux_sym_preproc_if_token2] = ACTIONS(3962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3962), + [sym_preproc_directive] = ACTIONS(3962), + [anon_sym_LPAREN2] = ACTIONS(3964), + [anon_sym_TILDE] = ACTIONS(3964), + [anon_sym_STAR] = ACTIONS(3964), + [anon_sym_AMP_AMP] = ACTIONS(3964), + [anon_sym_AMP] = ACTIONS(3962), + [anon_sym_SEMI] = ACTIONS(3964), + [anon_sym___extension__] = ACTIONS(3962), + [anon_sym_typedef] = ACTIONS(3962), + [anon_sym_virtual] = ACTIONS(3962), + [anon_sym_extern] = ACTIONS(3962), + [anon_sym___attribute__] = ACTIONS(3962), + [anon_sym___attribute] = ACTIONS(3962), + [anon_sym_using] = ACTIONS(3962), + [anon_sym_COLON_COLON] = ACTIONS(3964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3964), + [anon_sym___declspec] = ACTIONS(3962), + [anon_sym___based] = ACTIONS(3962), + [anon_sym_signed] = ACTIONS(3962), + [anon_sym_unsigned] = ACTIONS(3962), + [anon_sym_long] = ACTIONS(3962), + [anon_sym_short] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3962), + [anon_sym_static] = ACTIONS(3962), + [anon_sym_register] = ACTIONS(3962), + [anon_sym_inline] = ACTIONS(3962), + [anon_sym___inline] = ACTIONS(3962), + [anon_sym___inline__] = ACTIONS(3962), + [anon_sym___forceinline] = ACTIONS(3962), + [anon_sym_thread_local] = ACTIONS(3962), + [anon_sym___thread] = ACTIONS(3962), + [anon_sym_const] = ACTIONS(3962), + [anon_sym_constexpr] = ACTIONS(3962), + [anon_sym_volatile] = ACTIONS(3962), + [anon_sym_restrict] = ACTIONS(3962), + [anon_sym___restrict__] = ACTIONS(3962), + [anon_sym__Atomic] = ACTIONS(3962), + [anon_sym__Noreturn] = ACTIONS(3962), + [anon_sym_noreturn] = ACTIONS(3962), + [anon_sym__Nonnull] = ACTIONS(3962), + [anon_sym_mutable] = ACTIONS(3962), + [anon_sym_constinit] = ACTIONS(3962), + [anon_sym_consteval] = ACTIONS(3962), + [anon_sym_alignas] = ACTIONS(3962), + [anon_sym__Alignas] = ACTIONS(3962), + [sym_primitive_type] = ACTIONS(3962), + [anon_sym_enum] = ACTIONS(3962), + [anon_sym_class] = ACTIONS(3962), + [anon_sym_struct] = ACTIONS(3962), + [anon_sym_union] = ACTIONS(3962), + [anon_sym_typename] = ACTIONS(3962), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3962), + [anon_sym_decltype] = ACTIONS(3962), + [anon_sym_explicit] = ACTIONS(3962), + [anon_sym_private] = ACTIONS(3962), + [anon_sym_template] = ACTIONS(3962), + [anon_sym_operator] = ACTIONS(3962), + [anon_sym_friend] = ACTIONS(3962), + [anon_sym_public] = ACTIONS(3962), + [anon_sym_protected] = ACTIONS(3962), + [anon_sym_static_assert] = ACTIONS(3962), + [anon_sym_LBRACK_COLON] = ACTIONS(3964), + }, + [STATE(3466)] = { + [sym_identifier] = ACTIONS(3984), + [aux_sym_preproc_def_token1] = ACTIONS(3984), + [aux_sym_preproc_if_token1] = ACTIONS(3984), + [aux_sym_preproc_if_token2] = ACTIONS(3984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3984), + [sym_preproc_directive] = ACTIONS(3984), + [anon_sym_LPAREN2] = ACTIONS(3986), + [anon_sym_TILDE] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3986), + [anon_sym_AMP_AMP] = ACTIONS(3986), + [anon_sym_AMP] = ACTIONS(3984), + [anon_sym_SEMI] = ACTIONS(3986), + [anon_sym___extension__] = ACTIONS(3984), + [anon_sym_typedef] = ACTIONS(3984), + [anon_sym_virtual] = ACTIONS(3984), + [anon_sym_extern] = ACTIONS(3984), + [anon_sym___attribute__] = ACTIONS(3984), + [anon_sym___attribute] = ACTIONS(3984), + [anon_sym_using] = ACTIONS(3984), + [anon_sym_COLON_COLON] = ACTIONS(3986), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3986), + [anon_sym___declspec] = ACTIONS(3984), + [anon_sym___based] = ACTIONS(3984), + [anon_sym_signed] = ACTIONS(3984), + [anon_sym_unsigned] = ACTIONS(3984), + [anon_sym_long] = ACTIONS(3984), + [anon_sym_short] = ACTIONS(3984), + [anon_sym_LBRACK] = ACTIONS(3984), + [anon_sym_static] = ACTIONS(3984), + [anon_sym_register] = ACTIONS(3984), + [anon_sym_inline] = ACTIONS(3984), + [anon_sym___inline] = ACTIONS(3984), + [anon_sym___inline__] = ACTIONS(3984), + [anon_sym___forceinline] = ACTIONS(3984), + [anon_sym_thread_local] = ACTIONS(3984), + [anon_sym___thread] = ACTIONS(3984), + [anon_sym_const] = ACTIONS(3984), + [anon_sym_constexpr] = ACTIONS(3984), + [anon_sym_volatile] = ACTIONS(3984), + [anon_sym_restrict] = ACTIONS(3984), + [anon_sym___restrict__] = ACTIONS(3984), + [anon_sym__Atomic] = ACTIONS(3984), + [anon_sym__Noreturn] = ACTIONS(3984), + [anon_sym_noreturn] = ACTIONS(3984), + [anon_sym__Nonnull] = ACTIONS(3984), + [anon_sym_mutable] = ACTIONS(3984), + [anon_sym_constinit] = ACTIONS(3984), + [anon_sym_consteval] = ACTIONS(3984), + [anon_sym_alignas] = ACTIONS(3984), + [anon_sym__Alignas] = ACTIONS(3984), + [sym_primitive_type] = ACTIONS(3984), + [anon_sym_enum] = ACTIONS(3984), + [anon_sym_class] = ACTIONS(3984), + [anon_sym_struct] = ACTIONS(3984), + [anon_sym_union] = ACTIONS(3984), + [anon_sym_typename] = ACTIONS(3984), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3984), + [anon_sym_decltype] = ACTIONS(3984), + [anon_sym_explicit] = ACTIONS(3984), + [anon_sym_private] = ACTIONS(3984), + [anon_sym_template] = ACTIONS(3984), + [anon_sym_operator] = ACTIONS(3984), + [anon_sym_friend] = ACTIONS(3984), + [anon_sym_public] = ACTIONS(3984), + [anon_sym_protected] = ACTIONS(3984), + [anon_sym_static_assert] = ACTIONS(3984), + [anon_sym_LBRACK_COLON] = ACTIONS(3986), + }, + [STATE(3467)] = { + [sym_identifier] = ACTIONS(3988), + [aux_sym_preproc_def_token1] = ACTIONS(3988), + [aux_sym_preproc_if_token1] = ACTIONS(3988), + [aux_sym_preproc_if_token2] = ACTIONS(3988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3988), + [sym_preproc_directive] = ACTIONS(3988), + [anon_sym_LPAREN2] = ACTIONS(3990), + [anon_sym_TILDE] = ACTIONS(3990), + [anon_sym_STAR] = ACTIONS(3990), + [anon_sym_AMP_AMP] = ACTIONS(3990), + [anon_sym_AMP] = ACTIONS(3988), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym___extension__] = ACTIONS(3988), + [anon_sym_typedef] = ACTIONS(3988), + [anon_sym_virtual] = ACTIONS(3988), + [anon_sym_extern] = ACTIONS(3988), + [anon_sym___attribute__] = ACTIONS(3988), + [anon_sym___attribute] = ACTIONS(3988), + [anon_sym_using] = ACTIONS(3988), + [anon_sym_COLON_COLON] = ACTIONS(3990), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3990), + [anon_sym___declspec] = ACTIONS(3988), + [anon_sym___based] = ACTIONS(3988), + [anon_sym_signed] = ACTIONS(3988), + [anon_sym_unsigned] = ACTIONS(3988), + [anon_sym_long] = ACTIONS(3988), + [anon_sym_short] = ACTIONS(3988), + [anon_sym_LBRACK] = ACTIONS(3988), + [anon_sym_static] = ACTIONS(3988), + [anon_sym_register] = ACTIONS(3988), + [anon_sym_inline] = ACTIONS(3988), + [anon_sym___inline] = ACTIONS(3988), + [anon_sym___inline__] = ACTIONS(3988), + [anon_sym___forceinline] = ACTIONS(3988), + [anon_sym_thread_local] = ACTIONS(3988), + [anon_sym___thread] = ACTIONS(3988), + [anon_sym_const] = ACTIONS(3988), + [anon_sym_constexpr] = ACTIONS(3988), + [anon_sym_volatile] = ACTIONS(3988), + [anon_sym_restrict] = ACTIONS(3988), + [anon_sym___restrict__] = ACTIONS(3988), + [anon_sym__Atomic] = ACTIONS(3988), + [anon_sym__Noreturn] = ACTIONS(3988), + [anon_sym_noreturn] = ACTIONS(3988), + [anon_sym__Nonnull] = ACTIONS(3988), + [anon_sym_mutable] = ACTIONS(3988), + [anon_sym_constinit] = ACTIONS(3988), + [anon_sym_consteval] = ACTIONS(3988), + [anon_sym_alignas] = ACTIONS(3988), + [anon_sym__Alignas] = ACTIONS(3988), + [sym_primitive_type] = ACTIONS(3988), + [anon_sym_enum] = ACTIONS(3988), + [anon_sym_class] = ACTIONS(3988), + [anon_sym_struct] = ACTIONS(3988), + [anon_sym_union] = ACTIONS(3988), + [anon_sym_typename] = ACTIONS(3988), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3988), + [anon_sym_decltype] = ACTIONS(3988), + [anon_sym_explicit] = ACTIONS(3988), + [anon_sym_private] = ACTIONS(3988), + [anon_sym_template] = ACTIONS(3988), + [anon_sym_operator] = ACTIONS(3988), + [anon_sym_friend] = ACTIONS(3988), + [anon_sym_public] = ACTIONS(3988), + [anon_sym_protected] = ACTIONS(3988), + [anon_sym_static_assert] = ACTIONS(3988), + [anon_sym_LBRACK_COLON] = ACTIONS(3990), + }, + [STATE(3468)] = { + [sym_identifier] = ACTIONS(3992), + [aux_sym_preproc_def_token1] = ACTIONS(3992), + [aux_sym_preproc_if_token1] = ACTIONS(3992), + [aux_sym_preproc_if_token2] = ACTIONS(3992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3992), + [sym_preproc_directive] = ACTIONS(3992), + [anon_sym_LPAREN2] = ACTIONS(3994), + [anon_sym_TILDE] = ACTIONS(3994), + [anon_sym_STAR] = ACTIONS(3994), + [anon_sym_AMP_AMP] = ACTIONS(3994), + [anon_sym_AMP] = ACTIONS(3992), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym___extension__] = ACTIONS(3992), + [anon_sym_typedef] = ACTIONS(3992), + [anon_sym_virtual] = ACTIONS(3992), + [anon_sym_extern] = ACTIONS(3992), + [anon_sym___attribute__] = ACTIONS(3992), + [anon_sym___attribute] = ACTIONS(3992), + [anon_sym_using] = ACTIONS(3992), + [anon_sym_COLON_COLON] = ACTIONS(3994), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3994), + [anon_sym___declspec] = ACTIONS(3992), + [anon_sym___based] = ACTIONS(3992), + [anon_sym_signed] = ACTIONS(3992), + [anon_sym_unsigned] = ACTIONS(3992), + [anon_sym_long] = ACTIONS(3992), + [anon_sym_short] = ACTIONS(3992), + [anon_sym_LBRACK] = ACTIONS(3992), + [anon_sym_static] = ACTIONS(3992), + [anon_sym_register] = ACTIONS(3992), + [anon_sym_inline] = ACTIONS(3992), + [anon_sym___inline] = ACTIONS(3992), + [anon_sym___inline__] = ACTIONS(3992), + [anon_sym___forceinline] = ACTIONS(3992), + [anon_sym_thread_local] = ACTIONS(3992), + [anon_sym___thread] = ACTIONS(3992), + [anon_sym_const] = ACTIONS(3992), + [anon_sym_constexpr] = ACTIONS(3992), + [anon_sym_volatile] = ACTIONS(3992), + [anon_sym_restrict] = ACTIONS(3992), + [anon_sym___restrict__] = ACTIONS(3992), + [anon_sym__Atomic] = ACTIONS(3992), + [anon_sym__Noreturn] = ACTIONS(3992), + [anon_sym_noreturn] = ACTIONS(3992), + [anon_sym__Nonnull] = ACTIONS(3992), + [anon_sym_mutable] = ACTIONS(3992), + [anon_sym_constinit] = ACTIONS(3992), + [anon_sym_consteval] = ACTIONS(3992), + [anon_sym_alignas] = ACTIONS(3992), + [anon_sym__Alignas] = ACTIONS(3992), + [sym_primitive_type] = ACTIONS(3992), + [anon_sym_enum] = ACTIONS(3992), + [anon_sym_class] = ACTIONS(3992), + [anon_sym_struct] = ACTIONS(3992), + [anon_sym_union] = ACTIONS(3992), + [anon_sym_typename] = ACTIONS(3992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3992), + [anon_sym_decltype] = ACTIONS(3992), + [anon_sym_explicit] = ACTIONS(3992), + [anon_sym_private] = ACTIONS(3992), + [anon_sym_template] = ACTIONS(3992), + [anon_sym_operator] = ACTIONS(3992), + [anon_sym_friend] = ACTIONS(3992), + [anon_sym_public] = ACTIONS(3992), + [anon_sym_protected] = ACTIONS(3992), + [anon_sym_static_assert] = ACTIONS(3992), + [anon_sym_LBRACK_COLON] = ACTIONS(3994), + }, + [STATE(3469)] = { + [sym_identifier] = ACTIONS(4000), + [aux_sym_preproc_def_token1] = ACTIONS(4000), + [aux_sym_preproc_if_token1] = ACTIONS(4000), + [aux_sym_preproc_if_token2] = ACTIONS(4000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4000), + [sym_preproc_directive] = ACTIONS(4000), + [anon_sym_LPAREN2] = ACTIONS(4002), + [anon_sym_TILDE] = ACTIONS(4002), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_AMP] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym___extension__] = ACTIONS(4000), + [anon_sym_typedef] = ACTIONS(4000), + [anon_sym_virtual] = ACTIONS(4000), + [anon_sym_extern] = ACTIONS(4000), + [anon_sym___attribute__] = ACTIONS(4000), + [anon_sym___attribute] = ACTIONS(4000), + [anon_sym_using] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4002), + [anon_sym___declspec] = ACTIONS(4000), + [anon_sym___based] = ACTIONS(4000), + [anon_sym_signed] = ACTIONS(4000), + [anon_sym_unsigned] = ACTIONS(4000), + [anon_sym_long] = ACTIONS(4000), + [anon_sym_short] = ACTIONS(4000), + [anon_sym_LBRACK] = ACTIONS(4000), + [anon_sym_static] = ACTIONS(4000), + [anon_sym_register] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym___inline] = ACTIONS(4000), + [anon_sym___inline__] = ACTIONS(4000), + [anon_sym___forceinline] = ACTIONS(4000), + [anon_sym_thread_local] = ACTIONS(4000), + [anon_sym___thread] = ACTIONS(4000), + [anon_sym_const] = ACTIONS(4000), + [anon_sym_constexpr] = ACTIONS(4000), + [anon_sym_volatile] = ACTIONS(4000), + [anon_sym_restrict] = ACTIONS(4000), + [anon_sym___restrict__] = ACTIONS(4000), + [anon_sym__Atomic] = ACTIONS(4000), + [anon_sym__Noreturn] = ACTIONS(4000), + [anon_sym_noreturn] = ACTIONS(4000), + [anon_sym__Nonnull] = ACTIONS(4000), + [anon_sym_mutable] = ACTIONS(4000), + [anon_sym_constinit] = ACTIONS(4000), + [anon_sym_consteval] = ACTIONS(4000), + [anon_sym_alignas] = ACTIONS(4000), + [anon_sym__Alignas] = ACTIONS(4000), + [sym_primitive_type] = ACTIONS(4000), + [anon_sym_enum] = ACTIONS(4000), + [anon_sym_class] = ACTIONS(4000), + [anon_sym_struct] = ACTIONS(4000), + [anon_sym_union] = ACTIONS(4000), + [anon_sym_typename] = ACTIONS(4000), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4000), + [anon_sym_decltype] = ACTIONS(4000), + [anon_sym_explicit] = ACTIONS(4000), + [anon_sym_private] = ACTIONS(4000), + [anon_sym_template] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_friend] = ACTIONS(4000), + [anon_sym_public] = ACTIONS(4000), + [anon_sym_protected] = ACTIONS(4000), + [anon_sym_static_assert] = ACTIONS(4000), + [anon_sym_LBRACK_COLON] = ACTIONS(4002), + }, + [STATE(3470)] = { + [sym_identifier] = ACTIONS(4004), + [aux_sym_preproc_def_token1] = ACTIONS(4004), + [aux_sym_preproc_if_token1] = ACTIONS(4004), + [aux_sym_preproc_if_token2] = ACTIONS(4004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4004), + [sym_preproc_directive] = ACTIONS(4004), + [anon_sym_LPAREN2] = ACTIONS(4006), + [anon_sym_TILDE] = ACTIONS(4006), + [anon_sym_STAR] = ACTIONS(4006), + [anon_sym_AMP_AMP] = ACTIONS(4006), + [anon_sym_AMP] = ACTIONS(4004), + [anon_sym_SEMI] = ACTIONS(4006), + [anon_sym___extension__] = ACTIONS(4004), + [anon_sym_typedef] = ACTIONS(4004), + [anon_sym_virtual] = ACTIONS(4004), + [anon_sym_extern] = ACTIONS(4004), + [anon_sym___attribute__] = ACTIONS(4004), + [anon_sym___attribute] = ACTIONS(4004), + [anon_sym_using] = ACTIONS(4004), + [anon_sym_COLON_COLON] = ACTIONS(4006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4006), + [anon_sym___declspec] = ACTIONS(4004), + [anon_sym___based] = ACTIONS(4004), + [anon_sym_signed] = ACTIONS(4004), + [anon_sym_unsigned] = ACTIONS(4004), + [anon_sym_long] = ACTIONS(4004), + [anon_sym_short] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(4004), + [anon_sym_static] = ACTIONS(4004), + [anon_sym_register] = ACTIONS(4004), + [anon_sym_inline] = ACTIONS(4004), + [anon_sym___inline] = ACTIONS(4004), + [anon_sym___inline__] = ACTIONS(4004), + [anon_sym___forceinline] = ACTIONS(4004), + [anon_sym_thread_local] = ACTIONS(4004), + [anon_sym___thread] = ACTIONS(4004), + [anon_sym_const] = ACTIONS(4004), + [anon_sym_constexpr] = ACTIONS(4004), + [anon_sym_volatile] = ACTIONS(4004), + [anon_sym_restrict] = ACTIONS(4004), + [anon_sym___restrict__] = ACTIONS(4004), + [anon_sym__Atomic] = ACTIONS(4004), + [anon_sym__Noreturn] = ACTIONS(4004), + [anon_sym_noreturn] = ACTIONS(4004), + [anon_sym__Nonnull] = ACTIONS(4004), + [anon_sym_mutable] = ACTIONS(4004), + [anon_sym_constinit] = ACTIONS(4004), + [anon_sym_consteval] = ACTIONS(4004), + [anon_sym_alignas] = ACTIONS(4004), + [anon_sym__Alignas] = ACTIONS(4004), + [sym_primitive_type] = ACTIONS(4004), + [anon_sym_enum] = ACTIONS(4004), + [anon_sym_class] = ACTIONS(4004), + [anon_sym_struct] = ACTIONS(4004), + [anon_sym_union] = ACTIONS(4004), + [anon_sym_typename] = ACTIONS(4004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4004), + [anon_sym_decltype] = ACTIONS(4004), + [anon_sym_explicit] = ACTIONS(4004), + [anon_sym_private] = ACTIONS(4004), + [anon_sym_template] = ACTIONS(4004), + [anon_sym_operator] = ACTIONS(4004), + [anon_sym_friend] = ACTIONS(4004), + [anon_sym_public] = ACTIONS(4004), + [anon_sym_protected] = ACTIONS(4004), + [anon_sym_static_assert] = ACTIONS(4004), + [anon_sym_LBRACK_COLON] = ACTIONS(4006), + }, + [STATE(3471)] = { + [sym_identifier] = ACTIONS(8814), + [aux_sym_preproc_def_token1] = ACTIONS(8814), + [aux_sym_preproc_if_token1] = ACTIONS(8814), + [aux_sym_preproc_if_token2] = ACTIONS(8814), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8814), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8814), + [sym_preproc_directive] = ACTIONS(8814), + [anon_sym_LPAREN2] = ACTIONS(8816), + [anon_sym_TILDE] = ACTIONS(8816), + [anon_sym_STAR] = ACTIONS(8816), + [anon_sym_AMP_AMP] = ACTIONS(8816), + [anon_sym_AMP] = ACTIONS(8814), + [anon_sym_SEMI] = ACTIONS(8816), + [anon_sym___extension__] = ACTIONS(8814), + [anon_sym_typedef] = ACTIONS(8814), + [anon_sym_virtual] = ACTIONS(8814), + [anon_sym_extern] = ACTIONS(8814), + [anon_sym___attribute__] = ACTIONS(8814), + [anon_sym___attribute] = ACTIONS(8814), + [anon_sym_using] = ACTIONS(8814), + [anon_sym_COLON_COLON] = ACTIONS(8816), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8816), + [anon_sym___declspec] = ACTIONS(8814), + [anon_sym___based] = ACTIONS(8814), + [anon_sym_signed] = ACTIONS(8814), + [anon_sym_unsigned] = ACTIONS(8814), + [anon_sym_long] = ACTIONS(8814), + [anon_sym_short] = ACTIONS(8814), + [anon_sym_LBRACK] = ACTIONS(8814), + [anon_sym_static] = ACTIONS(8814), + [anon_sym_register] = ACTIONS(8814), + [anon_sym_inline] = ACTIONS(8814), + [anon_sym___inline] = ACTIONS(8814), + [anon_sym___inline__] = ACTIONS(8814), + [anon_sym___forceinline] = ACTIONS(8814), + [anon_sym_thread_local] = ACTIONS(8814), + [anon_sym___thread] = ACTIONS(8814), + [anon_sym_const] = ACTIONS(8814), + [anon_sym_constexpr] = ACTIONS(8814), + [anon_sym_volatile] = ACTIONS(8814), + [anon_sym_restrict] = ACTIONS(8814), + [anon_sym___restrict__] = ACTIONS(8814), + [anon_sym__Atomic] = ACTIONS(8814), + [anon_sym__Noreturn] = ACTIONS(8814), + [anon_sym_noreturn] = ACTIONS(8814), + [anon_sym__Nonnull] = ACTIONS(8814), + [anon_sym_mutable] = ACTIONS(8814), + [anon_sym_constinit] = ACTIONS(8814), + [anon_sym_consteval] = ACTIONS(8814), + [anon_sym_alignas] = ACTIONS(8814), + [anon_sym__Alignas] = ACTIONS(8814), + [sym_primitive_type] = ACTIONS(8814), + [anon_sym_enum] = ACTIONS(8814), + [anon_sym_class] = ACTIONS(8814), + [anon_sym_struct] = ACTIONS(8814), + [anon_sym_union] = ACTIONS(8814), + [anon_sym_typename] = ACTIONS(8814), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8814), + [anon_sym_decltype] = ACTIONS(8814), + [anon_sym_explicit] = ACTIONS(8814), + [anon_sym_private] = ACTIONS(8814), + [anon_sym_template] = ACTIONS(8814), + [anon_sym_operator] = ACTIONS(8814), + [anon_sym_friend] = ACTIONS(8814), + [anon_sym_public] = ACTIONS(8814), + [anon_sym_protected] = ACTIONS(8814), + [anon_sym_static_assert] = ACTIONS(8814), + [anon_sym_LBRACK_COLON] = ACTIONS(8816), + }, + [STATE(3472)] = { + [sym_identifier] = ACTIONS(4012), + [aux_sym_preproc_def_token1] = ACTIONS(4012), + [aux_sym_preproc_if_token1] = ACTIONS(4012), + [aux_sym_preproc_if_token2] = ACTIONS(4012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4012), + [sym_preproc_directive] = ACTIONS(4012), + [anon_sym_LPAREN2] = ACTIONS(4014), + [anon_sym_TILDE] = ACTIONS(4014), + [anon_sym_STAR] = ACTIONS(4014), + [anon_sym_AMP_AMP] = ACTIONS(4014), + [anon_sym_AMP] = ACTIONS(4012), + [anon_sym_SEMI] = ACTIONS(4014), + [anon_sym___extension__] = ACTIONS(4012), + [anon_sym_typedef] = ACTIONS(4012), + [anon_sym_virtual] = ACTIONS(4012), + [anon_sym_extern] = ACTIONS(4012), + [anon_sym___attribute__] = ACTIONS(4012), + [anon_sym___attribute] = ACTIONS(4012), + [anon_sym_using] = ACTIONS(4012), + [anon_sym_COLON_COLON] = ACTIONS(4014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4014), + [anon_sym___declspec] = ACTIONS(4012), + [anon_sym___based] = ACTIONS(4012), + [anon_sym_signed] = ACTIONS(4012), + [anon_sym_unsigned] = ACTIONS(4012), + [anon_sym_long] = ACTIONS(4012), + [anon_sym_short] = ACTIONS(4012), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_static] = ACTIONS(4012), + [anon_sym_register] = ACTIONS(4012), + [anon_sym_inline] = ACTIONS(4012), + [anon_sym___inline] = ACTIONS(4012), + [anon_sym___inline__] = ACTIONS(4012), + [anon_sym___forceinline] = ACTIONS(4012), + [anon_sym_thread_local] = ACTIONS(4012), + [anon_sym___thread] = ACTIONS(4012), + [anon_sym_const] = ACTIONS(4012), + [anon_sym_constexpr] = ACTIONS(4012), + [anon_sym_volatile] = ACTIONS(4012), + [anon_sym_restrict] = ACTIONS(4012), + [anon_sym___restrict__] = ACTIONS(4012), + [anon_sym__Atomic] = ACTIONS(4012), + [anon_sym__Noreturn] = ACTIONS(4012), + [anon_sym_noreturn] = ACTIONS(4012), + [anon_sym__Nonnull] = ACTIONS(4012), + [anon_sym_mutable] = ACTIONS(4012), + [anon_sym_constinit] = ACTIONS(4012), + [anon_sym_consteval] = ACTIONS(4012), + [anon_sym_alignas] = ACTIONS(4012), + [anon_sym__Alignas] = ACTIONS(4012), + [sym_primitive_type] = ACTIONS(4012), + [anon_sym_enum] = ACTIONS(4012), + [anon_sym_class] = ACTIONS(4012), + [anon_sym_struct] = ACTIONS(4012), + [anon_sym_union] = ACTIONS(4012), + [anon_sym_typename] = ACTIONS(4012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4012), + [anon_sym_decltype] = ACTIONS(4012), + [anon_sym_explicit] = ACTIONS(4012), + [anon_sym_private] = ACTIONS(4012), + [anon_sym_template] = ACTIONS(4012), + [anon_sym_operator] = ACTIONS(4012), + [anon_sym_friend] = ACTIONS(4012), + [anon_sym_public] = ACTIONS(4012), + [anon_sym_protected] = ACTIONS(4012), + [anon_sym_static_assert] = ACTIONS(4012), + [anon_sym_LBRACK_COLON] = ACTIONS(4014), + }, + [STATE(3473)] = { + [sym_identifier] = ACTIONS(8818), + [aux_sym_preproc_def_token1] = ACTIONS(8818), + [aux_sym_preproc_if_token1] = ACTIONS(8818), + [aux_sym_preproc_if_token2] = ACTIONS(8818), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8818), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8818), + [sym_preproc_directive] = ACTIONS(8818), + [anon_sym_LPAREN2] = ACTIONS(8820), + [anon_sym_TILDE] = ACTIONS(8820), + [anon_sym_STAR] = ACTIONS(8820), + [anon_sym_AMP_AMP] = ACTIONS(8820), + [anon_sym_AMP] = ACTIONS(8818), + [anon_sym_SEMI] = ACTIONS(8820), + [anon_sym___extension__] = ACTIONS(8818), + [anon_sym_typedef] = ACTIONS(8818), + [anon_sym_virtual] = ACTIONS(8818), + [anon_sym_extern] = ACTIONS(8818), + [anon_sym___attribute__] = ACTIONS(8818), + [anon_sym___attribute] = ACTIONS(8818), + [anon_sym_using] = ACTIONS(8818), + [anon_sym_COLON_COLON] = ACTIONS(8820), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8820), + [anon_sym___declspec] = ACTIONS(8818), + [anon_sym___based] = ACTIONS(8818), + [anon_sym_signed] = ACTIONS(8818), + [anon_sym_unsigned] = ACTIONS(8818), + [anon_sym_long] = ACTIONS(8818), + [anon_sym_short] = ACTIONS(8818), + [anon_sym_LBRACK] = ACTIONS(8818), + [anon_sym_static] = ACTIONS(8818), + [anon_sym_register] = ACTIONS(8818), + [anon_sym_inline] = ACTIONS(8818), + [anon_sym___inline] = ACTIONS(8818), + [anon_sym___inline__] = ACTIONS(8818), + [anon_sym___forceinline] = ACTIONS(8818), + [anon_sym_thread_local] = ACTIONS(8818), + [anon_sym___thread] = ACTIONS(8818), + [anon_sym_const] = ACTIONS(8818), + [anon_sym_constexpr] = ACTIONS(8818), + [anon_sym_volatile] = ACTIONS(8818), + [anon_sym_restrict] = ACTIONS(8818), + [anon_sym___restrict__] = ACTIONS(8818), + [anon_sym__Atomic] = ACTIONS(8818), + [anon_sym__Noreturn] = ACTIONS(8818), + [anon_sym_noreturn] = ACTIONS(8818), + [anon_sym__Nonnull] = ACTIONS(8818), + [anon_sym_mutable] = ACTIONS(8818), + [anon_sym_constinit] = ACTIONS(8818), + [anon_sym_consteval] = ACTIONS(8818), + [anon_sym_alignas] = ACTIONS(8818), + [anon_sym__Alignas] = ACTIONS(8818), + [sym_primitive_type] = ACTIONS(8818), + [anon_sym_enum] = ACTIONS(8818), + [anon_sym_class] = ACTIONS(8818), + [anon_sym_struct] = ACTIONS(8818), + [anon_sym_union] = ACTIONS(8818), + [anon_sym_typename] = ACTIONS(8818), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8818), + [anon_sym_decltype] = ACTIONS(8818), + [anon_sym_explicit] = ACTIONS(8818), + [anon_sym_private] = ACTIONS(8818), + [anon_sym_template] = ACTIONS(8818), + [anon_sym_operator] = ACTIONS(8818), + [anon_sym_friend] = ACTIONS(8818), + [anon_sym_public] = ACTIONS(8818), + [anon_sym_protected] = ACTIONS(8818), + [anon_sym_static_assert] = ACTIONS(8818), + [anon_sym_LBRACK_COLON] = ACTIONS(8820), + }, + [STATE(3474)] = { + [sym_identifier] = ACTIONS(9150), + [anon_sym_LPAREN2] = ACTIONS(9152), + [anon_sym_TILDE] = ACTIONS(9152), + [anon_sym_STAR] = ACTIONS(9152), + [anon_sym_AMP_AMP] = ACTIONS(9152), + [anon_sym_AMP] = ACTIONS(9150), + [anon_sym___extension__] = ACTIONS(9150), + [anon_sym_virtual] = ACTIONS(9150), + [anon_sym_extern] = ACTIONS(9150), + [anon_sym___attribute__] = ACTIONS(9150), + [anon_sym___attribute] = ACTIONS(9150), + [anon_sym_using] = ACTIONS(9150), + [anon_sym_COLON_COLON] = ACTIONS(9152), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9152), + [anon_sym___declspec] = ACTIONS(9150), + [anon_sym___based] = ACTIONS(9150), + [anon_sym___cdecl] = ACTIONS(9150), + [anon_sym___clrcall] = ACTIONS(9150), + [anon_sym___stdcall] = ACTIONS(9150), + [anon_sym___fastcall] = ACTIONS(9150), + [anon_sym___thiscall] = ACTIONS(9150), + [anon_sym___vectorcall] = ACTIONS(9150), + [anon_sym_LBRACE] = ACTIONS(9152), + [anon_sym_signed] = ACTIONS(9150), + [anon_sym_unsigned] = ACTIONS(9150), + [anon_sym_long] = ACTIONS(9150), + [anon_sym_short] = ACTIONS(9150), + [anon_sym_LBRACK] = ACTIONS(9150), + [anon_sym_static] = ACTIONS(9150), + [anon_sym_register] = ACTIONS(9150), + [anon_sym_inline] = ACTIONS(9150), + [anon_sym___inline] = ACTIONS(9150), + [anon_sym___inline__] = ACTIONS(9150), + [anon_sym___forceinline] = ACTIONS(9150), + [anon_sym_thread_local] = ACTIONS(9150), + [anon_sym___thread] = ACTIONS(9150), + [anon_sym_const] = ACTIONS(9150), + [anon_sym_constexpr] = ACTIONS(9150), + [anon_sym_volatile] = ACTIONS(9150), + [anon_sym_restrict] = ACTIONS(9150), + [anon_sym___restrict__] = ACTIONS(9150), + [anon_sym__Atomic] = ACTIONS(9150), + [anon_sym__Noreturn] = ACTIONS(9150), + [anon_sym_noreturn] = ACTIONS(9150), + [anon_sym__Nonnull] = ACTIONS(9150), + [anon_sym_mutable] = ACTIONS(9150), + [anon_sym_constinit] = ACTIONS(9150), + [anon_sym_consteval] = ACTIONS(9150), + [anon_sym_alignas] = ACTIONS(9150), + [anon_sym__Alignas] = ACTIONS(9150), + [sym_primitive_type] = ACTIONS(9150), + [anon_sym_enum] = ACTIONS(9150), + [anon_sym_class] = ACTIONS(9150), + [anon_sym_struct] = ACTIONS(9150), + [anon_sym_union] = ACTIONS(9150), + [anon_sym_typename] = ACTIONS(9150), + [anon_sym_DASH_GT] = ACTIONS(9152), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9150), + [anon_sym_decltype] = ACTIONS(9150), + [anon_sym_explicit] = ACTIONS(9150), + [anon_sym_template] = ACTIONS(9150), + [anon_sym_operator] = ACTIONS(9150), + [anon_sym_friend] = ACTIONS(9150), + [anon_sym_noexcept] = ACTIONS(9150), + [anon_sym_throw] = ACTIONS(9150), + [anon_sym_concept] = ACTIONS(9150), + [anon_sym_requires] = ACTIONS(9150), + [anon_sym_LBRACK_COLON] = ACTIONS(9152), + }, + [STATE(3475)] = { + [sym_identifier] = ACTIONS(4044), + [aux_sym_preproc_def_token1] = ACTIONS(4044), + [aux_sym_preproc_if_token1] = ACTIONS(4044), + [aux_sym_preproc_if_token2] = ACTIONS(4044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4044), + [sym_preproc_directive] = ACTIONS(4044), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_TILDE] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym___extension__] = ACTIONS(4044), + [anon_sym_typedef] = ACTIONS(4044), + [anon_sym_virtual] = ACTIONS(4044), + [anon_sym_extern] = ACTIONS(4044), + [anon_sym___attribute__] = ACTIONS(4044), + [anon_sym___attribute] = ACTIONS(4044), + [anon_sym_using] = ACTIONS(4044), + [anon_sym_COLON_COLON] = ACTIONS(4046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4046), + [anon_sym___declspec] = ACTIONS(4044), + [anon_sym___based] = ACTIONS(4044), + [anon_sym_signed] = ACTIONS(4044), + [anon_sym_unsigned] = ACTIONS(4044), + [anon_sym_long] = ACTIONS(4044), + [anon_sym_short] = ACTIONS(4044), + [anon_sym_LBRACK] = ACTIONS(4044), + [anon_sym_static] = ACTIONS(4044), + [anon_sym_register] = ACTIONS(4044), + [anon_sym_inline] = ACTIONS(4044), + [anon_sym___inline] = ACTIONS(4044), + [anon_sym___inline__] = ACTIONS(4044), + [anon_sym___forceinline] = ACTIONS(4044), + [anon_sym_thread_local] = ACTIONS(4044), + [anon_sym___thread] = ACTIONS(4044), + [anon_sym_const] = ACTIONS(4044), + [anon_sym_constexpr] = ACTIONS(4044), + [anon_sym_volatile] = ACTIONS(4044), + [anon_sym_restrict] = ACTIONS(4044), + [anon_sym___restrict__] = ACTIONS(4044), + [anon_sym__Atomic] = ACTIONS(4044), + [anon_sym__Noreturn] = ACTIONS(4044), + [anon_sym_noreturn] = ACTIONS(4044), + [anon_sym__Nonnull] = ACTIONS(4044), + [anon_sym_mutable] = ACTIONS(4044), + [anon_sym_constinit] = ACTIONS(4044), + [anon_sym_consteval] = ACTIONS(4044), + [anon_sym_alignas] = ACTIONS(4044), + [anon_sym__Alignas] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(4044), + [anon_sym_enum] = ACTIONS(4044), + [anon_sym_class] = ACTIONS(4044), + [anon_sym_struct] = ACTIONS(4044), + [anon_sym_union] = ACTIONS(4044), + [anon_sym_typename] = ACTIONS(4044), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4044), + [anon_sym_decltype] = ACTIONS(4044), + [anon_sym_explicit] = ACTIONS(4044), + [anon_sym_private] = ACTIONS(4044), + [anon_sym_template] = ACTIONS(4044), + [anon_sym_operator] = ACTIONS(4044), + [anon_sym_friend] = ACTIONS(4044), + [anon_sym_public] = ACTIONS(4044), + [anon_sym_protected] = ACTIONS(4044), + [anon_sym_static_assert] = ACTIONS(4044), + [anon_sym_LBRACK_COLON] = ACTIONS(4046), + }, + [STATE(3476)] = { + [sym_identifier] = ACTIONS(4080), + [aux_sym_preproc_def_token1] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(4080), + [aux_sym_preproc_if_token2] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), + [sym_preproc_directive] = ACTIONS(4080), + [anon_sym_LPAREN2] = ACTIONS(4082), + [anon_sym_TILDE] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [anon_sym_AMP_AMP] = ACTIONS(4082), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_SEMI] = ACTIONS(4082), + [anon_sym___extension__] = ACTIONS(4080), + [anon_sym_typedef] = ACTIONS(4080), + [anon_sym_virtual] = ACTIONS(4080), + [anon_sym_extern] = ACTIONS(4080), + [anon_sym___attribute__] = ACTIONS(4080), + [anon_sym___attribute] = ACTIONS(4080), + [anon_sym_using] = ACTIONS(4080), + [anon_sym_COLON_COLON] = ACTIONS(4082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), + [anon_sym___declspec] = ACTIONS(4080), + [anon_sym___based] = ACTIONS(4080), + [anon_sym_signed] = ACTIONS(4080), + [anon_sym_unsigned] = ACTIONS(4080), + [anon_sym_long] = ACTIONS(4080), + [anon_sym_short] = ACTIONS(4080), + [anon_sym_LBRACK] = ACTIONS(4080), + [anon_sym_static] = ACTIONS(4080), + [anon_sym_register] = ACTIONS(4080), + [anon_sym_inline] = ACTIONS(4080), + [anon_sym___inline] = ACTIONS(4080), + [anon_sym___inline__] = ACTIONS(4080), + [anon_sym___forceinline] = ACTIONS(4080), + [anon_sym_thread_local] = ACTIONS(4080), + [anon_sym___thread] = ACTIONS(4080), + [anon_sym_const] = ACTIONS(4080), + [anon_sym_constexpr] = ACTIONS(4080), + [anon_sym_volatile] = ACTIONS(4080), + [anon_sym_restrict] = ACTIONS(4080), + [anon_sym___restrict__] = ACTIONS(4080), + [anon_sym__Atomic] = ACTIONS(4080), + [anon_sym__Noreturn] = ACTIONS(4080), + [anon_sym_noreturn] = ACTIONS(4080), + [anon_sym__Nonnull] = ACTIONS(4080), + [anon_sym_mutable] = ACTIONS(4080), + [anon_sym_constinit] = ACTIONS(4080), + [anon_sym_consteval] = ACTIONS(4080), + [anon_sym_alignas] = ACTIONS(4080), + [anon_sym__Alignas] = ACTIONS(4080), + [sym_primitive_type] = ACTIONS(4080), + [anon_sym_enum] = ACTIONS(4080), + [anon_sym_class] = ACTIONS(4080), + [anon_sym_struct] = ACTIONS(4080), + [anon_sym_union] = ACTIONS(4080), + [anon_sym_typename] = ACTIONS(4080), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4080), + [anon_sym_decltype] = ACTIONS(4080), + [anon_sym_explicit] = ACTIONS(4080), + [anon_sym_private] = ACTIONS(4080), + [anon_sym_template] = ACTIONS(4080), + [anon_sym_operator] = ACTIONS(4080), + [anon_sym_friend] = ACTIONS(4080), + [anon_sym_public] = ACTIONS(4080), + [anon_sym_protected] = ACTIONS(4080), + [anon_sym_static_assert] = ACTIONS(4080), + [anon_sym_LBRACK_COLON] = ACTIONS(4082), + }, + [STATE(3477)] = { + [sym_identifier] = ACTIONS(4080), + [aux_sym_preproc_def_token1] = ACTIONS(4080), + [aux_sym_preproc_if_token1] = ACTIONS(4080), + [aux_sym_preproc_if_token2] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), + [sym_preproc_directive] = ACTIONS(4080), + [anon_sym_LPAREN2] = ACTIONS(4082), + [anon_sym_TILDE] = ACTIONS(4082), + [anon_sym_STAR] = ACTIONS(4082), + [anon_sym_AMP_AMP] = ACTIONS(4082), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_SEMI] = ACTIONS(4082), + [anon_sym___extension__] = ACTIONS(4080), + [anon_sym_typedef] = ACTIONS(4080), + [anon_sym_virtual] = ACTIONS(4080), + [anon_sym_extern] = ACTIONS(4080), + [anon_sym___attribute__] = ACTIONS(4080), + [anon_sym___attribute] = ACTIONS(4080), + [anon_sym_using] = ACTIONS(4080), + [anon_sym_COLON_COLON] = ACTIONS(4082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), + [anon_sym___declspec] = ACTIONS(4080), + [anon_sym___based] = ACTIONS(4080), + [anon_sym_signed] = ACTIONS(4080), + [anon_sym_unsigned] = ACTIONS(4080), + [anon_sym_long] = ACTIONS(4080), + [anon_sym_short] = ACTIONS(4080), + [anon_sym_LBRACK] = ACTIONS(4080), + [anon_sym_static] = ACTIONS(4080), + [anon_sym_register] = ACTIONS(4080), + [anon_sym_inline] = ACTIONS(4080), + [anon_sym___inline] = ACTIONS(4080), + [anon_sym___inline__] = ACTIONS(4080), + [anon_sym___forceinline] = ACTIONS(4080), + [anon_sym_thread_local] = ACTIONS(4080), + [anon_sym___thread] = ACTIONS(4080), + [anon_sym_const] = ACTIONS(4080), + [anon_sym_constexpr] = ACTIONS(4080), + [anon_sym_volatile] = ACTIONS(4080), + [anon_sym_restrict] = ACTIONS(4080), + [anon_sym___restrict__] = ACTIONS(4080), + [anon_sym__Atomic] = ACTIONS(4080), + [anon_sym__Noreturn] = ACTIONS(4080), + [anon_sym_noreturn] = ACTIONS(4080), + [anon_sym__Nonnull] = ACTIONS(4080), + [anon_sym_mutable] = ACTIONS(4080), + [anon_sym_constinit] = ACTIONS(4080), + [anon_sym_consteval] = ACTIONS(4080), + [anon_sym_alignas] = ACTIONS(4080), + [anon_sym__Alignas] = ACTIONS(4080), + [sym_primitive_type] = ACTIONS(4080), + [anon_sym_enum] = ACTIONS(4080), + [anon_sym_class] = ACTIONS(4080), + [anon_sym_struct] = ACTIONS(4080), + [anon_sym_union] = ACTIONS(4080), + [anon_sym_typename] = ACTIONS(4080), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4080), + [anon_sym_decltype] = ACTIONS(4080), + [anon_sym_explicit] = ACTIONS(4080), + [anon_sym_private] = ACTIONS(4080), + [anon_sym_template] = ACTIONS(4080), + [anon_sym_operator] = ACTIONS(4080), + [anon_sym_friend] = ACTIONS(4080), + [anon_sym_public] = ACTIONS(4080), + [anon_sym_protected] = ACTIONS(4080), + [anon_sym_static_assert] = ACTIONS(4080), + [anon_sym_LBRACK_COLON] = ACTIONS(4082), + }, + [STATE(3478)] = { + [sym_identifier] = ACTIONS(4084), + [aux_sym_preproc_def_token1] = ACTIONS(4084), + [aux_sym_preproc_if_token1] = ACTIONS(4084), + [aux_sym_preproc_if_token2] = ACTIONS(4084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4084), + [sym_preproc_directive] = ACTIONS(4084), + [anon_sym_LPAREN2] = ACTIONS(4086), + [anon_sym_TILDE] = ACTIONS(4086), + [anon_sym_STAR] = ACTIONS(4086), + [anon_sym_AMP_AMP] = ACTIONS(4086), + [anon_sym_AMP] = ACTIONS(4084), + [anon_sym_SEMI] = ACTIONS(4086), + [anon_sym___extension__] = ACTIONS(4084), + [anon_sym_typedef] = ACTIONS(4084), + [anon_sym_virtual] = ACTIONS(4084), + [anon_sym_extern] = ACTIONS(4084), + [anon_sym___attribute__] = ACTIONS(4084), + [anon_sym___attribute] = ACTIONS(4084), + [anon_sym_using] = ACTIONS(4084), + [anon_sym_COLON_COLON] = ACTIONS(4086), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4086), + [anon_sym___declspec] = ACTIONS(4084), + [anon_sym___based] = ACTIONS(4084), + [anon_sym_signed] = ACTIONS(4084), + [anon_sym_unsigned] = ACTIONS(4084), + [anon_sym_long] = ACTIONS(4084), + [anon_sym_short] = ACTIONS(4084), + [anon_sym_LBRACK] = ACTIONS(4084), + [anon_sym_static] = ACTIONS(4084), + [anon_sym_register] = ACTIONS(4084), + [anon_sym_inline] = ACTIONS(4084), + [anon_sym___inline] = ACTIONS(4084), + [anon_sym___inline__] = ACTIONS(4084), + [anon_sym___forceinline] = ACTIONS(4084), + [anon_sym_thread_local] = ACTIONS(4084), + [anon_sym___thread] = ACTIONS(4084), + [anon_sym_const] = ACTIONS(4084), + [anon_sym_constexpr] = ACTIONS(4084), + [anon_sym_volatile] = ACTIONS(4084), + [anon_sym_restrict] = ACTIONS(4084), + [anon_sym___restrict__] = ACTIONS(4084), + [anon_sym__Atomic] = ACTIONS(4084), + [anon_sym__Noreturn] = ACTIONS(4084), + [anon_sym_noreturn] = ACTIONS(4084), + [anon_sym__Nonnull] = ACTIONS(4084), + [anon_sym_mutable] = ACTIONS(4084), + [anon_sym_constinit] = ACTIONS(4084), + [anon_sym_consteval] = ACTIONS(4084), + [anon_sym_alignas] = ACTIONS(4084), + [anon_sym__Alignas] = ACTIONS(4084), + [sym_primitive_type] = ACTIONS(4084), + [anon_sym_enum] = ACTIONS(4084), + [anon_sym_class] = ACTIONS(4084), + [anon_sym_struct] = ACTIONS(4084), + [anon_sym_union] = ACTIONS(4084), + [anon_sym_typename] = ACTIONS(4084), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4084), + [anon_sym_decltype] = ACTIONS(4084), + [anon_sym_explicit] = ACTIONS(4084), + [anon_sym_private] = ACTIONS(4084), + [anon_sym_template] = ACTIONS(4084), + [anon_sym_operator] = ACTIONS(4084), + [anon_sym_friend] = ACTIONS(4084), + [anon_sym_public] = ACTIONS(4084), + [anon_sym_protected] = ACTIONS(4084), + [anon_sym_static_assert] = ACTIONS(4084), + [anon_sym_LBRACK_COLON] = ACTIONS(4086), + }, + [STATE(3479)] = { + [sym_identifier] = ACTIONS(4088), + [aux_sym_preproc_def_token1] = ACTIONS(4088), + [aux_sym_preproc_if_token1] = ACTIONS(4088), + [aux_sym_preproc_if_token2] = ACTIONS(4088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4088), + [sym_preproc_directive] = ACTIONS(4088), + [anon_sym_LPAREN2] = ACTIONS(4090), + [anon_sym_TILDE] = ACTIONS(4090), + [anon_sym_STAR] = ACTIONS(4090), + [anon_sym_AMP_AMP] = ACTIONS(4090), + [anon_sym_AMP] = ACTIONS(4088), + [anon_sym_SEMI] = ACTIONS(4090), + [anon_sym___extension__] = ACTIONS(4088), + [anon_sym_typedef] = ACTIONS(4088), + [anon_sym_virtual] = ACTIONS(4088), + [anon_sym_extern] = ACTIONS(4088), + [anon_sym___attribute__] = ACTIONS(4088), + [anon_sym___attribute] = ACTIONS(4088), + [anon_sym_using] = ACTIONS(4088), + [anon_sym_COLON_COLON] = ACTIONS(4090), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4090), + [anon_sym___declspec] = ACTIONS(4088), + [anon_sym___based] = ACTIONS(4088), + [anon_sym_signed] = ACTIONS(4088), + [anon_sym_unsigned] = ACTIONS(4088), + [anon_sym_long] = ACTIONS(4088), + [anon_sym_short] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(4088), + [anon_sym_static] = ACTIONS(4088), + [anon_sym_register] = ACTIONS(4088), + [anon_sym_inline] = ACTIONS(4088), + [anon_sym___inline] = ACTIONS(4088), + [anon_sym___inline__] = ACTIONS(4088), + [anon_sym___forceinline] = ACTIONS(4088), + [anon_sym_thread_local] = ACTIONS(4088), + [anon_sym___thread] = ACTIONS(4088), + [anon_sym_const] = ACTIONS(4088), + [anon_sym_constexpr] = ACTIONS(4088), + [anon_sym_volatile] = ACTIONS(4088), + [anon_sym_restrict] = ACTIONS(4088), + [anon_sym___restrict__] = ACTIONS(4088), + [anon_sym__Atomic] = ACTIONS(4088), + [anon_sym__Noreturn] = ACTIONS(4088), + [anon_sym_noreturn] = ACTIONS(4088), + [anon_sym__Nonnull] = ACTIONS(4088), + [anon_sym_mutable] = ACTIONS(4088), + [anon_sym_constinit] = ACTIONS(4088), + [anon_sym_consteval] = ACTIONS(4088), + [anon_sym_alignas] = ACTIONS(4088), + [anon_sym__Alignas] = ACTIONS(4088), + [sym_primitive_type] = ACTIONS(4088), + [anon_sym_enum] = ACTIONS(4088), + [anon_sym_class] = ACTIONS(4088), + [anon_sym_struct] = ACTIONS(4088), + [anon_sym_union] = ACTIONS(4088), + [anon_sym_typename] = ACTIONS(4088), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4088), + [anon_sym_decltype] = ACTIONS(4088), + [anon_sym_explicit] = ACTIONS(4088), + [anon_sym_private] = ACTIONS(4088), + [anon_sym_template] = ACTIONS(4088), + [anon_sym_operator] = ACTIONS(4088), + [anon_sym_friend] = ACTIONS(4088), + [anon_sym_public] = ACTIONS(4088), + [anon_sym_protected] = ACTIONS(4088), + [anon_sym_static_assert] = ACTIONS(4088), + [anon_sym_LBRACK_COLON] = ACTIONS(4090), + }, + [STATE(3480)] = { + [sym_identifier] = ACTIONS(4092), + [aux_sym_preproc_def_token1] = ACTIONS(4092), + [aux_sym_preproc_if_token1] = ACTIONS(4092), + [aux_sym_preproc_if_token2] = ACTIONS(4092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4092), + [sym_preproc_directive] = ACTIONS(4092), + [anon_sym_LPAREN2] = ACTIONS(4094), + [anon_sym_TILDE] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_AMP] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym___extension__] = ACTIONS(4092), + [anon_sym_typedef] = ACTIONS(4092), + [anon_sym_virtual] = ACTIONS(4092), + [anon_sym_extern] = ACTIONS(4092), + [anon_sym___attribute__] = ACTIONS(4092), + [anon_sym___attribute] = ACTIONS(4092), + [anon_sym_using] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4094), + [anon_sym___declspec] = ACTIONS(4092), + [anon_sym___based] = ACTIONS(4092), + [anon_sym_signed] = ACTIONS(4092), + [anon_sym_unsigned] = ACTIONS(4092), + [anon_sym_long] = ACTIONS(4092), + [anon_sym_short] = ACTIONS(4092), + [anon_sym_LBRACK] = ACTIONS(4092), + [anon_sym_static] = ACTIONS(4092), + [anon_sym_register] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym___inline] = ACTIONS(4092), + [anon_sym___inline__] = ACTIONS(4092), + [anon_sym___forceinline] = ACTIONS(4092), + [anon_sym_thread_local] = ACTIONS(4092), + [anon_sym___thread] = ACTIONS(4092), + [anon_sym_const] = ACTIONS(4092), + [anon_sym_constexpr] = ACTIONS(4092), + [anon_sym_volatile] = ACTIONS(4092), + [anon_sym_restrict] = ACTIONS(4092), + [anon_sym___restrict__] = ACTIONS(4092), + [anon_sym__Atomic] = ACTIONS(4092), + [anon_sym__Noreturn] = ACTIONS(4092), + [anon_sym_noreturn] = ACTIONS(4092), + [anon_sym__Nonnull] = ACTIONS(4092), + [anon_sym_mutable] = ACTIONS(4092), + [anon_sym_constinit] = ACTIONS(4092), + [anon_sym_consteval] = ACTIONS(4092), + [anon_sym_alignas] = ACTIONS(4092), + [anon_sym__Alignas] = ACTIONS(4092), + [sym_primitive_type] = ACTIONS(4092), + [anon_sym_enum] = ACTIONS(4092), + [anon_sym_class] = ACTIONS(4092), + [anon_sym_struct] = ACTIONS(4092), + [anon_sym_union] = ACTIONS(4092), + [anon_sym_typename] = ACTIONS(4092), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4092), + [anon_sym_decltype] = ACTIONS(4092), + [anon_sym_explicit] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_template] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_friend] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_static_assert] = ACTIONS(4092), + [anon_sym_LBRACK_COLON] = ACTIONS(4094), + }, + [STATE(3481)] = { + [sym_identifier] = ACTIONS(4096), + [aux_sym_preproc_def_token1] = ACTIONS(4096), + [aux_sym_preproc_if_token1] = ACTIONS(4096), + [aux_sym_preproc_if_token2] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), + [sym_preproc_directive] = ACTIONS(4096), + [anon_sym_LPAREN2] = ACTIONS(4098), + [anon_sym_TILDE] = ACTIONS(4098), + [anon_sym_STAR] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4096), + [anon_sym_SEMI] = ACTIONS(4098), + [anon_sym___extension__] = ACTIONS(4096), + [anon_sym_typedef] = ACTIONS(4096), + [anon_sym_virtual] = ACTIONS(4096), + [anon_sym_extern] = ACTIONS(4096), + [anon_sym___attribute__] = ACTIONS(4096), + [anon_sym___attribute] = ACTIONS(4096), + [anon_sym_using] = ACTIONS(4096), + [anon_sym_COLON_COLON] = ACTIONS(4098), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4098), + [anon_sym___declspec] = ACTIONS(4096), + [anon_sym___based] = ACTIONS(4096), + [anon_sym_signed] = ACTIONS(4096), + [anon_sym_unsigned] = ACTIONS(4096), + [anon_sym_long] = ACTIONS(4096), + [anon_sym_short] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_static] = ACTIONS(4096), + [anon_sym_register] = ACTIONS(4096), + [anon_sym_inline] = ACTIONS(4096), + [anon_sym___inline] = ACTIONS(4096), + [anon_sym___inline__] = ACTIONS(4096), + [anon_sym___forceinline] = ACTIONS(4096), + [anon_sym_thread_local] = ACTIONS(4096), + [anon_sym___thread] = ACTIONS(4096), + [anon_sym_const] = ACTIONS(4096), + [anon_sym_constexpr] = ACTIONS(4096), + [anon_sym_volatile] = ACTIONS(4096), + [anon_sym_restrict] = ACTIONS(4096), + [anon_sym___restrict__] = ACTIONS(4096), + [anon_sym__Atomic] = ACTIONS(4096), + [anon_sym__Noreturn] = ACTIONS(4096), + [anon_sym_noreturn] = ACTIONS(4096), + [anon_sym__Nonnull] = ACTIONS(4096), + [anon_sym_mutable] = ACTIONS(4096), + [anon_sym_constinit] = ACTIONS(4096), + [anon_sym_consteval] = ACTIONS(4096), + [anon_sym_alignas] = ACTIONS(4096), + [anon_sym__Alignas] = ACTIONS(4096), + [sym_primitive_type] = ACTIONS(4096), + [anon_sym_enum] = ACTIONS(4096), + [anon_sym_class] = ACTIONS(4096), + [anon_sym_struct] = ACTIONS(4096), + [anon_sym_union] = ACTIONS(4096), + [anon_sym_typename] = ACTIONS(4096), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4096), + [anon_sym_decltype] = ACTIONS(4096), + [anon_sym_explicit] = ACTIONS(4096), + [anon_sym_private] = ACTIONS(4096), + [anon_sym_template] = ACTIONS(4096), + [anon_sym_operator] = ACTIONS(4096), + [anon_sym_friend] = ACTIONS(4096), + [anon_sym_public] = ACTIONS(4096), + [anon_sym_protected] = ACTIONS(4096), + [anon_sym_static_assert] = ACTIONS(4096), + [anon_sym_LBRACK_COLON] = ACTIONS(4098), + }, + [STATE(3482)] = { + [sym_identifier] = ACTIONS(4100), + [aux_sym_preproc_def_token1] = ACTIONS(4100), + [aux_sym_preproc_if_token1] = ACTIONS(4100), + [aux_sym_preproc_if_token2] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), + [sym_preproc_directive] = ACTIONS(4100), + [anon_sym_LPAREN2] = ACTIONS(4102), + [anon_sym_TILDE] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [anon_sym_AMP_AMP] = ACTIONS(4102), + [anon_sym_AMP] = ACTIONS(4100), + [anon_sym_SEMI] = ACTIONS(4102), + [anon_sym___extension__] = ACTIONS(4100), + [anon_sym_typedef] = ACTIONS(4100), + [anon_sym_virtual] = ACTIONS(4100), + [anon_sym_extern] = ACTIONS(4100), + [anon_sym___attribute__] = ACTIONS(4100), + [anon_sym___attribute] = ACTIONS(4100), + [anon_sym_using] = ACTIONS(4100), + [anon_sym_COLON_COLON] = ACTIONS(4102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4102), + [anon_sym___declspec] = ACTIONS(4100), + [anon_sym___based] = ACTIONS(4100), + [anon_sym_signed] = ACTIONS(4100), + [anon_sym_unsigned] = ACTIONS(4100), + [anon_sym_long] = ACTIONS(4100), + [anon_sym_short] = ACTIONS(4100), + [anon_sym_LBRACK] = ACTIONS(4100), + [anon_sym_static] = ACTIONS(4100), + [anon_sym_register] = ACTIONS(4100), + [anon_sym_inline] = ACTIONS(4100), + [anon_sym___inline] = ACTIONS(4100), + [anon_sym___inline__] = ACTIONS(4100), + [anon_sym___forceinline] = ACTIONS(4100), + [anon_sym_thread_local] = ACTIONS(4100), + [anon_sym___thread] = ACTIONS(4100), + [anon_sym_const] = ACTIONS(4100), + [anon_sym_constexpr] = ACTIONS(4100), + [anon_sym_volatile] = ACTIONS(4100), + [anon_sym_restrict] = ACTIONS(4100), + [anon_sym___restrict__] = ACTIONS(4100), + [anon_sym__Atomic] = ACTIONS(4100), + [anon_sym__Noreturn] = ACTIONS(4100), + [anon_sym_noreturn] = ACTIONS(4100), + [anon_sym__Nonnull] = ACTIONS(4100), + [anon_sym_mutable] = ACTIONS(4100), + [anon_sym_constinit] = ACTIONS(4100), + [anon_sym_consteval] = ACTIONS(4100), + [anon_sym_alignas] = ACTIONS(4100), + [anon_sym__Alignas] = ACTIONS(4100), + [sym_primitive_type] = ACTIONS(4100), + [anon_sym_enum] = ACTIONS(4100), + [anon_sym_class] = ACTIONS(4100), + [anon_sym_struct] = ACTIONS(4100), + [anon_sym_union] = ACTIONS(4100), + [anon_sym_typename] = ACTIONS(4100), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4100), + [anon_sym_decltype] = ACTIONS(4100), + [anon_sym_explicit] = ACTIONS(4100), + [anon_sym_private] = ACTIONS(4100), + [anon_sym_template] = ACTIONS(4100), + [anon_sym_operator] = ACTIONS(4100), + [anon_sym_friend] = ACTIONS(4100), + [anon_sym_public] = ACTIONS(4100), + [anon_sym_protected] = ACTIONS(4100), + [anon_sym_static_assert] = ACTIONS(4100), + [anon_sym_LBRACK_COLON] = ACTIONS(4102), + }, + [STATE(3483)] = { + [sym__abstract_declarator] = STATE(6373), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3511), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2080), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3511), + [sym_identifier] = ACTIONS(7393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), + [anon_sym_COMMA] = ACTIONS(7391), + [aux_sym_preproc_if_token2] = ACTIONS(7391), + [aux_sym_preproc_else_token1] = ACTIONS(7391), + [aux_sym_preproc_elif_token1] = ACTIONS(7393), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7391), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7391), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7393), + [anon_sym_PLUS] = ACTIONS(7393), + [anon_sym_STAR] = ACTIONS(8416), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_PERCENT] = ACTIONS(7391), + [anon_sym_PIPE_PIPE] = ACTIONS(7391), + [anon_sym_AMP_AMP] = ACTIONS(8418), + [anon_sym_PIPE] = ACTIONS(7393), + [anon_sym_CARET] = ACTIONS(7391), + [anon_sym_AMP] = ACTIONS(8420), + [anon_sym_EQ_EQ] = ACTIONS(7391), + [anon_sym_BANG_EQ] = ACTIONS(7391), + [anon_sym_GT] = ACTIONS(7393), + [anon_sym_GT_EQ] = ACTIONS(7391), + [anon_sym_LT_EQ] = ACTIONS(7393), + [anon_sym_LT] = ACTIONS(7393), + [anon_sym_LT_LT] = ACTIONS(7391), + [anon_sym_GT_GT] = ACTIONS(7391), + [anon_sym___extension__] = ACTIONS(8092), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8092), + [anon_sym_volatile] = ACTIONS(8092), + [anon_sym_restrict] = ACTIONS(8092), + [anon_sym___restrict__] = ACTIONS(8092), + [anon_sym__Atomic] = ACTIONS(8092), + [anon_sym__Noreturn] = ACTIONS(8092), + [anon_sym_noreturn] = ACTIONS(8092), + [anon_sym__Nonnull] = ACTIONS(8092), + [anon_sym_mutable] = ACTIONS(8092), + [anon_sym_constinit] = ACTIONS(8092), + [anon_sym_consteval] = ACTIONS(8092), + [anon_sym_alignas] = ACTIONS(8100), + [anon_sym__Alignas] = ACTIONS(8100), + [anon_sym_QMARK] = ACTIONS(7391), + [anon_sym_LT_EQ_GT] = ACTIONS(7391), + [anon_sym_or] = ACTIONS(7393), + [anon_sym_and] = ACTIONS(7393), + [anon_sym_bitor] = ACTIONS(7393), + [anon_sym_xor] = ACTIONS(7393), + [anon_sym_bitand] = ACTIONS(7393), + [anon_sym_not_eq] = ACTIONS(7393), + [anon_sym_DASH_DASH] = ACTIONS(7391), + [anon_sym_PLUS_PLUS] = ACTIONS(7391), + [anon_sym_DOT] = ACTIONS(7393), + [anon_sym_DOT_STAR] = ACTIONS(7391), + [anon_sym_DASH_GT] = ACTIONS(7391), + [sym_comment] = ACTIONS(3), + }, + [STATE(3484)] = { + [sym_argument_list] = STATE(3894), + [sym_initializer_list] = STATE(5969), + [sym_identifier] = ACTIONS(7223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [aux_sym_preproc_if_token2] = ACTIONS(7225), + [aux_sym_preproc_else_token1] = ACTIONS(7225), + [aux_sym_preproc_elif_token1] = ACTIONS(7223), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7687), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7225), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7225), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7225), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7225), + [anon_sym_GT_GT] = ACTIONS(7225), + [anon_sym_SEMI] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym___attribute__] = ACTIONS(7223), + [anon_sym___attribute] = ACTIONS(7223), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7223), + [anon_sym__Alignas] = ACTIONS(7223), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7223), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7223), + [anon_sym_not_eq] = ACTIONS(7223), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7225), + }, + [STATE(3485)] = { + [sym_argument_list] = STATE(3892), + [sym_initializer_list] = STATE(5964), + [sym_identifier] = ACTIONS(7223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [aux_sym_preproc_if_token2] = ACTIONS(7225), + [aux_sym_preproc_else_token1] = ACTIONS(7225), + [aux_sym_preproc_elif_token1] = ACTIONS(7223), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7687), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7225), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7225), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7225), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7225), + [anon_sym_GT_GT] = ACTIONS(7225), + [anon_sym_SEMI] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym___attribute__] = ACTIONS(7223), + [anon_sym___attribute] = ACTIONS(7223), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7223), + [anon_sym__Alignas] = ACTIONS(7223), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7223), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7223), + [anon_sym_not_eq] = ACTIONS(7223), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7225), + }, + [STATE(3486)] = { + [sym_argument_list] = STATE(5569), + [sym_initializer_list] = STATE(6057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7225), + [anon_sym_and] = ACTIONS(7225), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7225), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7223), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + }, + [STATE(3487)] = { + [sym_string_literal] = STATE(3589), + [sym_template_argument_list] = STATE(3740), + [sym_raw_string_literal] = STATE(3589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(8258), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5638), + [anon_sym___attribute__] = ACTIONS(5638), + [anon_sym___attribute] = ACTIONS(5645), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5638), + [anon_sym_SLASH_EQ] = ACTIONS(5638), + [anon_sym_PERCENT_EQ] = ACTIONS(5638), + [anon_sym_PLUS_EQ] = ACTIONS(5638), + [anon_sym_DASH_EQ] = ACTIONS(5638), + [anon_sym_LT_LT_EQ] = ACTIONS(5638), + [anon_sym_GT_GT_EQ] = ACTIONS(5638), + [anon_sym_AMP_EQ] = ACTIONS(5638), + [anon_sym_CARET_EQ] = ACTIONS(5638), + [anon_sym_PIPE_EQ] = ACTIONS(5638), + [anon_sym_and_eq] = ACTIONS(5638), + [anon_sym_or_eq] = ACTIONS(5638), + [anon_sym_xor_eq] = ACTIONS(5638), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(6876), + [anon_sym_u_DQUOTE] = ACTIONS(6876), + [anon_sym_U_DQUOTE] = ACTIONS(6876), + [anon_sym_u8_DQUOTE] = ACTIONS(6876), + [anon_sym_DQUOTE] = ACTIONS(6876), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6878), + [anon_sym_LR_DQUOTE] = ACTIONS(6878), + [anon_sym_uR_DQUOTE] = ACTIONS(6878), + [anon_sym_UR_DQUOTE] = ACTIONS(6878), + [anon_sym_u8R_DQUOTE] = ACTIONS(6878), + }, + [STATE(3488)] = { + [sym_type_qualifier] = STATE(3489), + [sym_alignas_qualifier] = STATE(3877), + [aux_sym__type_definition_type_repeat1] = STATE(3489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3802), + [sym_identifier] = ACTIONS(9154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), + [anon_sym_COMMA] = ACTIONS(7249), + [anon_sym_LPAREN2] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7251), + [anon_sym_PLUS] = ACTIONS(7251), + [anon_sym_STAR] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7251), + [anon_sym_PERCENT] = ACTIONS(7249), + [anon_sym_PIPE_PIPE] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7249), + [anon_sym_PIPE] = ACTIONS(7251), + [anon_sym_CARET] = ACTIONS(7249), + [anon_sym_AMP] = ACTIONS(7251), + [anon_sym_EQ_EQ] = ACTIONS(7249), + [anon_sym_BANG_EQ] = ACTIONS(7249), + [anon_sym_GT] = ACTIONS(7251), + [anon_sym_GT_EQ] = ACTIONS(7249), + [anon_sym_LT_EQ] = ACTIONS(7251), + [anon_sym_LT] = ACTIONS(7251), + [anon_sym_LT_LT] = ACTIONS(7249), + [anon_sym_GT_GT] = ACTIONS(7249), + [anon_sym___extension__] = ACTIONS(9156), + [anon_sym___attribute__] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7251), + [anon_sym_LBRACE] = ACTIONS(7249), + [anon_sym_signed] = ACTIONS(9159), + [anon_sym_unsigned] = ACTIONS(9159), + [anon_sym_long] = ACTIONS(9159), + [anon_sym_short] = ACTIONS(9159), + [anon_sym_LBRACK] = ACTIONS(7249), + [anon_sym_RBRACK] = ACTIONS(7249), + [anon_sym_const] = ACTIONS(9156), + [anon_sym_constexpr] = ACTIONS(9156), + [anon_sym_volatile] = ACTIONS(9156), + [anon_sym_restrict] = ACTIONS(9156), + [anon_sym___restrict__] = ACTIONS(9156), + [anon_sym__Atomic] = ACTIONS(9156), + [anon_sym__Noreturn] = ACTIONS(9156), + [anon_sym_noreturn] = ACTIONS(9156), + [anon_sym__Nonnull] = ACTIONS(9156), + [anon_sym_mutable] = ACTIONS(9156), + [anon_sym_constinit] = ACTIONS(9156), + [anon_sym_consteval] = ACTIONS(9156), + [anon_sym_alignas] = ACTIONS(9161), + [anon_sym__Alignas] = ACTIONS(9161), + [sym_primitive_type] = ACTIONS(8878), + [anon_sym_QMARK] = ACTIONS(7249), + [anon_sym_LT_EQ_GT] = ACTIONS(7249), + [anon_sym_or] = ACTIONS(7251), + [anon_sym_and] = ACTIONS(7251), + [anon_sym_bitor] = ACTIONS(7251), + [anon_sym_xor] = ACTIONS(7251), + [anon_sym_bitand] = ACTIONS(7251), + [anon_sym_not_eq] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7249), + [anon_sym_PLUS_PLUS] = ACTIONS(7249), + [anon_sym_DOT] = ACTIONS(7251), + [anon_sym_DOT_STAR] = ACTIONS(7249), + [anon_sym_DASH_GT] = ACTIONS(7249), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7251), + [anon_sym_override] = ACTIONS(7251), + [anon_sym_requires] = ACTIONS(7251), + }, + [STATE(3489)] = { + [sym_type_qualifier] = STATE(3659), + [sym_alignas_qualifier] = STATE(3877), + [aux_sym__type_definition_type_repeat1] = STATE(3659), + [aux_sym_sized_type_specifier_repeat1] = STATE(3303), + [sym_identifier] = ACTIONS(9164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), + [anon_sym_COMMA] = ACTIONS(7205), + [anon_sym_LPAREN2] = ACTIONS(7205), + [anon_sym_DASH] = ACTIONS(7207), + [anon_sym_PLUS] = ACTIONS(7207), + [anon_sym_STAR] = ACTIONS(7205), + [anon_sym_SLASH] = ACTIONS(7207), + [anon_sym_PERCENT] = ACTIONS(7205), + [anon_sym_PIPE_PIPE] = ACTIONS(7205), + [anon_sym_AMP_AMP] = ACTIONS(7205), + [anon_sym_PIPE] = ACTIONS(7207), + [anon_sym_CARET] = ACTIONS(7205), + [anon_sym_AMP] = ACTIONS(7207), + [anon_sym_EQ_EQ] = ACTIONS(7205), + [anon_sym_BANG_EQ] = ACTIONS(7205), + [anon_sym_GT] = ACTIONS(7207), + [anon_sym_GT_EQ] = ACTIONS(7205), + [anon_sym_LT_EQ] = ACTIONS(7207), + [anon_sym_LT] = ACTIONS(7207), + [anon_sym_LT_LT] = ACTIONS(7205), + [anon_sym_GT_GT] = ACTIONS(7205), + [anon_sym___extension__] = ACTIONS(9166), + [anon_sym___attribute__] = ACTIONS(7207), + [anon_sym___attribute] = ACTIONS(7207), + [anon_sym_LBRACE] = ACTIONS(7205), + [anon_sym_signed] = ACTIONS(8864), + [anon_sym_unsigned] = ACTIONS(8864), + [anon_sym_long] = ACTIONS(8864), + [anon_sym_short] = ACTIONS(8864), + [anon_sym_LBRACK] = ACTIONS(7205), + [anon_sym_RBRACK] = ACTIONS(7205), + [anon_sym_const] = ACTIONS(9166), + [anon_sym_constexpr] = ACTIONS(9166), + [anon_sym_volatile] = ACTIONS(9166), + [anon_sym_restrict] = ACTIONS(9166), + [anon_sym___restrict__] = ACTIONS(9166), + [anon_sym__Atomic] = ACTIONS(9166), + [anon_sym__Noreturn] = ACTIONS(9166), + [anon_sym_noreturn] = ACTIONS(9166), + [anon_sym__Nonnull] = ACTIONS(9166), + [anon_sym_mutable] = ACTIONS(9166), + [anon_sym_constinit] = ACTIONS(9166), + [anon_sym_consteval] = ACTIONS(9166), + [anon_sym_alignas] = ACTIONS(9169), + [anon_sym__Alignas] = ACTIONS(9169), + [sym_primitive_type] = ACTIONS(8866), + [anon_sym_QMARK] = ACTIONS(7205), + [anon_sym_LT_EQ_GT] = ACTIONS(7205), + [anon_sym_or] = ACTIONS(7207), + [anon_sym_and] = ACTIONS(7207), + [anon_sym_bitor] = ACTIONS(7207), + [anon_sym_xor] = ACTIONS(7207), + [anon_sym_bitand] = ACTIONS(7207), + [anon_sym_not_eq] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7205), + [anon_sym_PLUS_PLUS] = ACTIONS(7205), + [anon_sym_DOT] = ACTIONS(7207), + [anon_sym_DOT_STAR] = ACTIONS(7205), + [anon_sym_DASH_GT] = ACTIONS(7205), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7207), + [anon_sym_override] = ACTIONS(7207), + [anon_sym_requires] = ACTIONS(7207), + }, + [STATE(3490)] = { + [sym_type_qualifier] = STATE(3492), + [sym_alignas_qualifier] = STATE(3945), + [aux_sym__type_definition_type_repeat1] = STATE(3492), + [aux_sym_sized_type_specifier_repeat1] = STATE(3764), + [sym_identifier] = ACTIONS(9172), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), + [anon_sym_COMMA] = ACTIONS(7249), + [anon_sym_LPAREN2] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7251), + [anon_sym_PLUS] = ACTIONS(7251), + [anon_sym_STAR] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7251), + [anon_sym_PERCENT] = ACTIONS(7249), + [anon_sym_PIPE_PIPE] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7249), + [anon_sym_PIPE] = ACTIONS(7251), + [anon_sym_CARET] = ACTIONS(7249), + [anon_sym_AMP] = ACTIONS(7251), + [anon_sym_EQ_EQ] = ACTIONS(7249), + [anon_sym_BANG_EQ] = ACTIONS(7249), + [anon_sym_GT] = ACTIONS(7251), + [anon_sym_GT_EQ] = ACTIONS(7251), + [anon_sym_LT_EQ] = ACTIONS(7251), + [anon_sym_LT] = ACTIONS(7251), + [anon_sym_LT_LT] = ACTIONS(7249), + [anon_sym_GT_GT] = ACTIONS(7251), + [anon_sym___extension__] = ACTIONS(9174), + [anon_sym___attribute__] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7251), + [anon_sym_LBRACE] = ACTIONS(7249), + [anon_sym_signed] = ACTIONS(9177), + [anon_sym_unsigned] = ACTIONS(9177), + [anon_sym_long] = ACTIONS(9177), + [anon_sym_short] = ACTIONS(9177), + [anon_sym_LBRACK] = ACTIONS(7249), + [anon_sym_const] = ACTIONS(9174), + [anon_sym_constexpr] = ACTIONS(9174), + [anon_sym_volatile] = ACTIONS(9174), + [anon_sym_restrict] = ACTIONS(9174), + [anon_sym___restrict__] = ACTIONS(9174), + [anon_sym__Atomic] = ACTIONS(9174), + [anon_sym__Noreturn] = ACTIONS(9174), + [anon_sym_noreturn] = ACTIONS(9174), + [anon_sym__Nonnull] = ACTIONS(9174), + [anon_sym_mutable] = ACTIONS(9174), + [anon_sym_constinit] = ACTIONS(9174), + [anon_sym_consteval] = ACTIONS(9174), + [anon_sym_alignas] = ACTIONS(9179), + [anon_sym__Alignas] = ACTIONS(9179), + [sym_primitive_type] = ACTIONS(9182), + [anon_sym_QMARK] = ACTIONS(7249), + [anon_sym_LT_EQ_GT] = ACTIONS(7249), + [anon_sym_or] = ACTIONS(7251), + [anon_sym_and] = ACTIONS(7251), + [anon_sym_bitor] = ACTIONS(7251), + [anon_sym_xor] = ACTIONS(7251), + [anon_sym_bitand] = ACTIONS(7251), + [anon_sym_not_eq] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7249), + [anon_sym_PLUS_PLUS] = ACTIONS(7249), + [anon_sym_DOT] = ACTIONS(7251), + [anon_sym_DOT_STAR] = ACTIONS(7249), + [anon_sym_DASH_GT] = ACTIONS(7249), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7251), + [anon_sym_override] = ACTIONS(7251), + [anon_sym_GT2] = ACTIONS(7249), + [anon_sym_requires] = ACTIONS(7251), + }, + [STATE(3491)] = { + [sym_identifier] = ACTIONS(7291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [aux_sym_preproc_if_token2] = ACTIONS(7293), + [aux_sym_preproc_else_token1] = ACTIONS(7293), + [aux_sym_preproc_elif_token1] = ACTIONS(7291), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7293), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7293), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7293), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7293), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7293), + [anon_sym_GT_GT] = ACTIONS(7293), + [anon_sym___extension__] = ACTIONS(7291), + [anon_sym___attribute__] = ACTIONS(7291), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_COLON] = ACTIONS(7291), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_RBRACK] = ACTIONS(7293), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7291), + [anon_sym_volatile] = ACTIONS(7291), + [anon_sym_restrict] = ACTIONS(7291), + [anon_sym___restrict__] = ACTIONS(7291), + [anon_sym__Atomic] = ACTIONS(7291), + [anon_sym__Noreturn] = ACTIONS(7291), + [anon_sym_noreturn] = ACTIONS(7291), + [anon_sym__Nonnull] = ACTIONS(7291), + [anon_sym_mutable] = ACTIONS(7291), + [anon_sym_constinit] = ACTIONS(7291), + [anon_sym_consteval] = ACTIONS(7291), + [anon_sym_alignas] = ACTIONS(7291), + [anon_sym__Alignas] = ACTIONS(7291), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_bitor] = ACTIONS(7291), + [anon_sym_xor] = ACTIONS(7291), + [anon_sym_bitand] = ACTIONS(7291), + [anon_sym_not_eq] = ACTIONS(7291), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7293), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7291), + [anon_sym_decltype] = ACTIONS(7291), + [anon_sym_final] = ACTIONS(7291), + [anon_sym_override] = ACTIONS(7291), + [anon_sym_requires] = ACTIONS(7291), + }, + [STATE(3492)] = { + [sym_type_qualifier] = STATE(3691), + [sym_alignas_qualifier] = STATE(3945), + [aux_sym__type_definition_type_repeat1] = STATE(3691), + [aux_sym_sized_type_specifier_repeat1] = STATE(4039), + [sym_identifier] = ACTIONS(9184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), + [anon_sym_COMMA] = ACTIONS(7205), + [anon_sym_LPAREN2] = ACTIONS(7205), + [anon_sym_DASH] = ACTIONS(7207), + [anon_sym_PLUS] = ACTIONS(7207), + [anon_sym_STAR] = ACTIONS(7205), + [anon_sym_SLASH] = ACTIONS(7207), + [anon_sym_PERCENT] = ACTIONS(7205), + [anon_sym_PIPE_PIPE] = ACTIONS(7205), + [anon_sym_AMP_AMP] = ACTIONS(7205), + [anon_sym_PIPE] = ACTIONS(7207), + [anon_sym_CARET] = ACTIONS(7205), + [anon_sym_AMP] = ACTIONS(7207), + [anon_sym_EQ_EQ] = ACTIONS(7205), + [anon_sym_BANG_EQ] = ACTIONS(7205), + [anon_sym_GT] = ACTIONS(7207), + [anon_sym_GT_EQ] = ACTIONS(7207), + [anon_sym_LT_EQ] = ACTIONS(7207), + [anon_sym_LT] = ACTIONS(7207), + [anon_sym_LT_LT] = ACTIONS(7205), + [anon_sym_GT_GT] = ACTIONS(7207), + [anon_sym___extension__] = ACTIONS(9186), + [anon_sym___attribute__] = ACTIONS(7207), + [anon_sym___attribute] = ACTIONS(7207), + [anon_sym_LBRACE] = ACTIONS(7205), + [anon_sym_signed] = ACTIONS(9189), + [anon_sym_unsigned] = ACTIONS(9189), + [anon_sym_long] = ACTIONS(9189), + [anon_sym_short] = ACTIONS(9189), + [anon_sym_LBRACK] = ACTIONS(7205), + [anon_sym_const] = ACTIONS(9186), + [anon_sym_constexpr] = ACTIONS(9186), + [anon_sym_volatile] = ACTIONS(9186), + [anon_sym_restrict] = ACTIONS(9186), + [anon_sym___restrict__] = ACTIONS(9186), + [anon_sym__Atomic] = ACTIONS(9186), + [anon_sym__Noreturn] = ACTIONS(9186), + [anon_sym_noreturn] = ACTIONS(9186), + [anon_sym__Nonnull] = ACTIONS(9186), + [anon_sym_mutable] = ACTIONS(9186), + [anon_sym_constinit] = ACTIONS(9186), + [anon_sym_consteval] = ACTIONS(9186), + [anon_sym_alignas] = ACTIONS(9191), + [anon_sym__Alignas] = ACTIONS(9191), + [sym_primitive_type] = ACTIONS(9194), + [anon_sym_QMARK] = ACTIONS(7205), + [anon_sym_LT_EQ_GT] = ACTIONS(7205), + [anon_sym_or] = ACTIONS(7207), + [anon_sym_and] = ACTIONS(7207), + [anon_sym_bitor] = ACTIONS(7207), + [anon_sym_xor] = ACTIONS(7207), + [anon_sym_bitand] = ACTIONS(7207), + [anon_sym_not_eq] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7205), + [anon_sym_PLUS_PLUS] = ACTIONS(7205), + [anon_sym_DOT] = ACTIONS(7207), + [anon_sym_DOT_STAR] = ACTIONS(7205), + [anon_sym_DASH_GT] = ACTIONS(7205), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7207), + [anon_sym_override] = ACTIONS(7207), + [anon_sym_GT2] = ACTIONS(7205), + [anon_sym_requires] = ACTIONS(7207), + }, + [STATE(3493)] = { + [sym_attribute_specifier] = STATE(4485), + [sym_attribute_declaration] = STATE(4713), + [sym_gnu_asm_expression] = STATE(9134), + [sym_virtual_specifier] = STATE(4778), + [sym_ref_qualifier] = STATE(3634), + [sym__function_exception_specification] = STATE(4103), + [sym__function_attributes_end] = STATE(6021), + [sym__function_postfix] = STATE(5460), + [sym_trailing_return_type] = STATE(6116), + [sym_noexcept] = STATE(4103), + [sym_throw_specifier] = STATE(4103), + [sym_requires_clause] = STATE(5460), + [aux_sym_type_definition_repeat1] = STATE(4485), + [aux_sym_attributed_declarator_repeat1] = STATE(4713), + [aux_sym__function_postfix_repeat1] = STATE(4778), + [sym_identifier] = ACTIONS(7789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [aux_sym_preproc_if_token2] = ACTIONS(7791), + [aux_sym_preproc_else_token1] = ACTIONS(7791), + [aux_sym_preproc_elif_token1] = ACTIONS(7789), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7791), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7791), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(9196), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7791), + [anon_sym_AMP] = ACTIONS(9199), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7791), + [anon_sym_GT_GT] = ACTIONS(7791), + [anon_sym___attribute__] = ACTIONS(7178), + [anon_sym___attribute] = ACTIONS(7178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7789), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7789), + [anon_sym_not_eq] = ACTIONS(7789), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6497), + [anon_sym___asm__] = ACTIONS(6497), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(9202), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9205), + [anon_sym_override] = ACTIONS(9205), + [anon_sym_noexcept] = ACTIONS(7276), + [anon_sym_throw] = ACTIONS(7278), + [anon_sym_requires] = ACTIONS(9208), + }, + [STATE(3494)] = { + [sym_identifier] = ACTIONS(7231), + [anon_sym_LPAREN2] = ACTIONS(7233), + [anon_sym_TILDE] = ACTIONS(7233), + [anon_sym_STAR] = ACTIONS(7233), + [anon_sym_PIPE_PIPE] = ACTIONS(7233), + [anon_sym_AMP_AMP] = ACTIONS(7233), + [anon_sym_AMP] = ACTIONS(7231), + [anon_sym_LT] = ACTIONS(7233), + [anon_sym___extension__] = ACTIONS(7231), + [anon_sym_virtual] = ACTIONS(7231), + [anon_sym_extern] = ACTIONS(7231), + [anon_sym___attribute__] = ACTIONS(7231), + [anon_sym___attribute] = ACTIONS(7231), + [anon_sym_using] = ACTIONS(7231), + [anon_sym_COLON_COLON] = ACTIONS(7233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7233), + [anon_sym___declspec] = ACTIONS(7231), + [anon_sym___based] = ACTIONS(7231), + [anon_sym___cdecl] = ACTIONS(7231), + [anon_sym___clrcall] = ACTIONS(7231), + [anon_sym___stdcall] = ACTIONS(7231), + [anon_sym___fastcall] = ACTIONS(7231), + [anon_sym___thiscall] = ACTIONS(7231), + [anon_sym___vectorcall] = ACTIONS(7231), + [anon_sym_signed] = ACTIONS(7231), + [anon_sym_unsigned] = ACTIONS(7231), + [anon_sym_long] = ACTIONS(7231), + [anon_sym_short] = ACTIONS(7231), + [anon_sym_LBRACK] = ACTIONS(7231), + [anon_sym_static] = ACTIONS(7231), + [anon_sym_register] = ACTIONS(7231), + [anon_sym_inline] = ACTIONS(7231), + [anon_sym___inline] = ACTIONS(7231), + [anon_sym___inline__] = ACTIONS(7231), + [anon_sym___forceinline] = ACTIONS(7231), + [anon_sym_thread_local] = ACTIONS(7231), + [anon_sym___thread] = ACTIONS(7231), + [anon_sym_const] = ACTIONS(7231), + [anon_sym_constexpr] = ACTIONS(7231), + [anon_sym_volatile] = ACTIONS(7231), + [anon_sym_restrict] = ACTIONS(7231), + [anon_sym___restrict__] = ACTIONS(7231), + [anon_sym__Atomic] = ACTIONS(7231), + [anon_sym__Noreturn] = ACTIONS(7231), + [anon_sym_noreturn] = ACTIONS(7231), + [anon_sym__Nonnull] = ACTIONS(7231), + [anon_sym_mutable] = ACTIONS(7231), + [anon_sym_constinit] = ACTIONS(7231), + [anon_sym_consteval] = ACTIONS(7231), + [anon_sym_alignas] = ACTIONS(7231), + [anon_sym__Alignas] = ACTIONS(7231), + [sym_primitive_type] = ACTIONS(7231), + [anon_sym_enum] = ACTIONS(7231), + [anon_sym_class] = ACTIONS(7231), + [anon_sym_struct] = ACTIONS(7231), + [anon_sym_union] = ACTIONS(7231), + [anon_sym_or] = ACTIONS(7231), + [anon_sym_and] = ACTIONS(7231), + [anon_sym_typename] = ACTIONS(7231), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7231), + [anon_sym_decltype] = ACTIONS(7231), + [anon_sym_explicit] = ACTIONS(7231), + [anon_sym_template] = ACTIONS(7231), + [anon_sym_operator] = ACTIONS(7231), + [anon_sym_friend] = ACTIONS(7231), + [anon_sym_concept] = ACTIONS(7231), + [anon_sym_LBRACK_COLON] = ACTIONS(7233), + }, + [STATE(3495)] = { + [sym_identifier] = ACTIONS(7291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [aux_sym_preproc_if_token2] = ACTIONS(7293), + [aux_sym_preproc_else_token1] = ACTIONS(7293), + [aux_sym_preproc_elif_token1] = ACTIONS(7291), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7293), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7293), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7293), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7293), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7293), + [anon_sym_GT_GT] = ACTIONS(7293), + [anon_sym___extension__] = ACTIONS(7291), + [anon_sym___attribute__] = ACTIONS(7291), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_COLON] = ACTIONS(7291), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_RBRACK] = ACTIONS(7293), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7291), + [anon_sym_volatile] = ACTIONS(7291), + [anon_sym_restrict] = ACTIONS(7291), + [anon_sym___restrict__] = ACTIONS(7291), + [anon_sym__Atomic] = ACTIONS(7291), + [anon_sym__Noreturn] = ACTIONS(7291), + [anon_sym_noreturn] = ACTIONS(7291), + [anon_sym__Nonnull] = ACTIONS(7291), + [anon_sym_mutable] = ACTIONS(7291), + [anon_sym_constinit] = ACTIONS(7291), + [anon_sym_consteval] = ACTIONS(7291), + [anon_sym_alignas] = ACTIONS(7291), + [anon_sym__Alignas] = ACTIONS(7291), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_bitor] = ACTIONS(7291), + [anon_sym_xor] = ACTIONS(7291), + [anon_sym_bitand] = ACTIONS(7291), + [anon_sym_not_eq] = ACTIONS(7291), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7293), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7291), + [anon_sym_decltype] = ACTIONS(7291), + [anon_sym_final] = ACTIONS(7291), + [anon_sym_override] = ACTIONS(7291), + [anon_sym_requires] = ACTIONS(7291), + }, + [STATE(3496)] = { + [sym_attribute_specifier] = STATE(4485), + [sym_attribute_declaration] = STATE(4713), + [sym_gnu_asm_expression] = STATE(9134), + [sym_virtual_specifier] = STATE(4778), + [sym_ref_qualifier] = STATE(3649), + [sym__function_exception_specification] = STATE(4099), + [sym__function_attributes_end] = STATE(5960), + [sym__function_postfix] = STATE(5460), + [sym_trailing_return_type] = STATE(5881), + [sym_noexcept] = STATE(4099), + [sym_throw_specifier] = STATE(4099), + [sym_requires_clause] = STATE(5460), + [aux_sym_type_definition_repeat1] = STATE(4485), + [aux_sym_attributed_declarator_repeat1] = STATE(4713), + [aux_sym__function_postfix_repeat1] = STATE(4778), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7791), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7791), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(9196), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7791), + [anon_sym_AMP] = ACTIONS(9199), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7791), + [anon_sym_GT_GT] = ACTIONS(7791), + [anon_sym_SEMI] = ACTIONS(7791), + [anon_sym___attribute__] = ACTIONS(7176), + [anon_sym___attribute] = ACTIONS(7178), + [anon_sym_COLON] = ACTIONS(7789), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), + [anon_sym_RBRACE] = ACTIONS(7791), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7791), + [anon_sym_and] = ACTIONS(7791), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7791), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(9211), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7219), + [anon_sym_override] = ACTIONS(7219), + [anon_sym_noexcept] = ACTIONS(7192), + [anon_sym_throw] = ACTIONS(7194), + [anon_sym_requires] = ACTIONS(7221), + [anon_sym_COLON_RBRACK] = ACTIONS(7791), + }, + [STATE(3497)] = { + [sym_identifier] = ACTIONS(3128), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), + [anon_sym_COMMA] = ACTIONS(3118), + [anon_sym_RPAREN] = ACTIONS(3118), + [anon_sym_LPAREN2] = ACTIONS(3118), + [anon_sym_TILDE] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_SEMI] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3128), + [anon_sym_virtual] = ACTIONS(3128), + [anon_sym_extern] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_COLON_COLON] = ACTIONS(3118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), + [anon_sym___declspec] = ACTIONS(3128), + [anon_sym___based] = ACTIONS(3128), + [anon_sym___cdecl] = ACTIONS(3128), + [anon_sym___clrcall] = ACTIONS(3128), + [anon_sym___stdcall] = ACTIONS(3128), + [anon_sym___fastcall] = ACTIONS(3128), + [anon_sym___thiscall] = ACTIONS(3128), + [anon_sym___vectorcall] = ACTIONS(3128), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_register] = ACTIONS(3128), + [anon_sym_inline] = ACTIONS(3128), + [anon_sym___inline] = ACTIONS(3128), + [anon_sym___inline__] = ACTIONS(3128), + [anon_sym___forceinline] = ACTIONS(3128), + [anon_sym_thread_local] = ACTIONS(3128), + [anon_sym___thread] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3128), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_typename] = ACTIONS(3128), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3128), + [anon_sym_explicit] = ACTIONS(3128), + [anon_sym_template] = ACTIONS(3128), + [anon_sym_GT2] = ACTIONS(3118), + [anon_sym_operator] = ACTIONS(3128), + [anon_sym_LBRACK_COLON] = ACTIONS(3118), + }, + [STATE(3498)] = { + [sym_identifier] = ACTIONS(7301), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7303), + [anon_sym_COMMA] = ACTIONS(7303), + [aux_sym_preproc_if_token2] = ACTIONS(7303), + [aux_sym_preproc_else_token1] = ACTIONS(7303), + [aux_sym_preproc_elif_token1] = ACTIONS(7301), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7303), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7303), + [anon_sym_LPAREN2] = ACTIONS(7303), + [anon_sym_DASH] = ACTIONS(7301), + [anon_sym_PLUS] = ACTIONS(7301), + [anon_sym_STAR] = ACTIONS(7303), + [anon_sym_SLASH] = ACTIONS(7301), + [anon_sym_PERCENT] = ACTIONS(7303), + [anon_sym_PIPE_PIPE] = ACTIONS(7303), + [anon_sym_AMP_AMP] = ACTIONS(7303), + [anon_sym_PIPE] = ACTIONS(7301), + [anon_sym_CARET] = ACTIONS(7303), + [anon_sym_AMP] = ACTIONS(7301), + [anon_sym_EQ_EQ] = ACTIONS(7303), + [anon_sym_BANG_EQ] = ACTIONS(7303), + [anon_sym_GT] = ACTIONS(7301), + [anon_sym_GT_EQ] = ACTIONS(7303), + [anon_sym_LT_EQ] = ACTIONS(7301), + [anon_sym_LT] = ACTIONS(7301), + [anon_sym_LT_LT] = ACTIONS(7303), + [anon_sym_GT_GT] = ACTIONS(7303), + [anon_sym___extension__] = ACTIONS(7301), + [anon_sym___attribute__] = ACTIONS(7301), + [anon_sym___attribute] = ACTIONS(7301), + [anon_sym_COLON] = ACTIONS(7301), + [anon_sym_COLON_COLON] = ACTIONS(7303), + [anon_sym_LBRACE] = ACTIONS(7303), + [anon_sym_LBRACK] = ACTIONS(7303), + [anon_sym_RBRACK] = ACTIONS(7303), + [anon_sym_const] = ACTIONS(7301), + [anon_sym_constexpr] = ACTIONS(7301), + [anon_sym_volatile] = ACTIONS(7301), + [anon_sym_restrict] = ACTIONS(7301), + [anon_sym___restrict__] = ACTIONS(7301), + [anon_sym__Atomic] = ACTIONS(7301), + [anon_sym__Noreturn] = ACTIONS(7301), + [anon_sym_noreturn] = ACTIONS(7301), + [anon_sym__Nonnull] = ACTIONS(7301), + [anon_sym_mutable] = ACTIONS(7301), + [anon_sym_constinit] = ACTIONS(7301), + [anon_sym_consteval] = ACTIONS(7301), + [anon_sym_alignas] = ACTIONS(7301), + [anon_sym__Alignas] = ACTIONS(7301), + [anon_sym_QMARK] = ACTIONS(7303), + [anon_sym_LT_EQ_GT] = ACTIONS(7303), + [anon_sym_or] = ACTIONS(7301), + [anon_sym_and] = ACTIONS(7301), + [anon_sym_bitor] = ACTIONS(7301), + [anon_sym_xor] = ACTIONS(7301), + [anon_sym_bitand] = ACTIONS(7301), + [anon_sym_not_eq] = ACTIONS(7301), + [anon_sym_DASH_DASH] = ACTIONS(7303), + [anon_sym_PLUS_PLUS] = ACTIONS(7303), + [anon_sym_DOT] = ACTIONS(7301), + [anon_sym_DOT_STAR] = ACTIONS(7303), + [anon_sym_DASH_GT] = ACTIONS(7303), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7301), + [anon_sym_decltype] = ACTIONS(7301), + [anon_sym_final] = ACTIONS(7301), + [anon_sym_override] = ACTIONS(7301), + [anon_sym_requires] = ACTIONS(7301), + }, + [STATE(3499)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7225), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7225), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7225), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7225), + [anon_sym_GT_GT] = ACTIONS(7225), + [anon_sym_SEMI] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym___attribute__] = ACTIONS(7225), + [anon_sym___attribute] = ACTIONS(7223), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_RBRACE] = ACTIONS(7225), + [anon_sym_signed] = ACTIONS(9214), + [anon_sym_unsigned] = ACTIONS(9214), + [anon_sym_long] = ACTIONS(9214), + [anon_sym_short] = ACTIONS(9214), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7225), + [anon_sym_and] = ACTIONS(7225), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7225), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), + [anon_sym_COLON_RBRACK] = ACTIONS(7225), + }, + [STATE(3500)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7160), + [anon_sym_COMMA] = ACTIONS(7160), + [anon_sym_RPAREN] = ACTIONS(7160), + [anon_sym_LPAREN2] = ACTIONS(7160), + [anon_sym_DASH] = ACTIONS(7158), + [anon_sym_PLUS] = ACTIONS(7158), + [anon_sym_STAR] = ACTIONS(7158), + [anon_sym_SLASH] = ACTIONS(7158), + [anon_sym_PERCENT] = ACTIONS(7158), + [anon_sym_PIPE_PIPE] = ACTIONS(7160), + [anon_sym_AMP_AMP] = ACTIONS(7160), + [anon_sym_PIPE] = ACTIONS(7158), + [anon_sym_CARET] = ACTIONS(7158), + [anon_sym_AMP] = ACTIONS(7158), + [anon_sym_EQ_EQ] = ACTIONS(7160), + [anon_sym_BANG_EQ] = ACTIONS(7160), + [anon_sym_GT] = ACTIONS(7158), + [anon_sym_GT_EQ] = ACTIONS(7160), + [anon_sym_LT_EQ] = ACTIONS(7158), + [anon_sym_LT] = ACTIONS(7158), + [anon_sym_LT_LT] = ACTIONS(7158), + [anon_sym_GT_GT] = ACTIONS(7158), + [anon_sym___extension__] = ACTIONS(7160), + [anon_sym_LBRACE] = ACTIONS(7160), + [anon_sym_LBRACK] = ACTIONS(7160), + [anon_sym_EQ] = ACTIONS(7158), + [anon_sym_const] = ACTIONS(7158), + [anon_sym_constexpr] = ACTIONS(7160), + [anon_sym_volatile] = ACTIONS(7160), + [anon_sym_restrict] = ACTIONS(7160), + [anon_sym___restrict__] = ACTIONS(7160), + [anon_sym__Atomic] = ACTIONS(7160), + [anon_sym__Noreturn] = ACTIONS(7160), + [anon_sym_noreturn] = ACTIONS(7160), + [anon_sym__Nonnull] = ACTIONS(7160), + [anon_sym_mutable] = ACTIONS(7160), + [anon_sym_constinit] = ACTIONS(7160), + [anon_sym_consteval] = ACTIONS(7160), + [anon_sym_alignas] = ACTIONS(7160), + [anon_sym__Alignas] = ACTIONS(7160), + [anon_sym_QMARK] = ACTIONS(7160), + [anon_sym_STAR_EQ] = ACTIONS(7160), + [anon_sym_SLASH_EQ] = ACTIONS(7160), + [anon_sym_PERCENT_EQ] = ACTIONS(7160), + [anon_sym_PLUS_EQ] = ACTIONS(7160), + [anon_sym_DASH_EQ] = ACTIONS(7160), + [anon_sym_LT_LT_EQ] = ACTIONS(7160), + [anon_sym_GT_GT_EQ] = ACTIONS(7160), + [anon_sym_AMP_EQ] = ACTIONS(7160), + [anon_sym_CARET_EQ] = ACTIONS(7160), + [anon_sym_PIPE_EQ] = ACTIONS(7160), + [anon_sym_LT_EQ_GT] = ACTIONS(7160), + [anon_sym_or] = ACTIONS(7160), + [anon_sym_and] = ACTIONS(7160), + [anon_sym_bitor] = ACTIONS(7160), + [anon_sym_xor] = ACTIONS(7160), + [anon_sym_bitand] = ACTIONS(7160), + [anon_sym_not_eq] = ACTIONS(7160), + [anon_sym_DASH_DASH] = ACTIONS(7160), + [anon_sym_PLUS_PLUS] = ACTIONS(7160), + [anon_sym_DOT] = ACTIONS(7158), + [anon_sym_DOT_STAR] = ACTIONS(7160), + [anon_sym_DASH_GT] = ACTIONS(7158), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7160), + [anon_sym_override] = ACTIONS(7160), + [anon_sym_requires] = ACTIONS(7160), + [anon_sym_DASH_GT_STAR] = ACTIONS(7160), + }, + [STATE(3501)] = { + [sym_attribute_specifier] = STATE(4485), + [sym_attribute_declaration] = STATE(4713), + [sym_gnu_asm_expression] = STATE(9134), + [sym_virtual_specifier] = STATE(4778), + [sym_ref_qualifier] = STATE(3598), + [sym__function_exception_specification] = STATE(4139), + [sym__function_attributes_end] = STATE(6006), + [sym__function_postfix] = STATE(5460), + [sym_trailing_return_type] = STATE(5898), + [sym_noexcept] = STATE(4139), + [sym_throw_specifier] = STATE(4139), + [sym_requires_clause] = STATE(5460), + [aux_sym_type_definition_repeat1] = STATE(4485), + [aux_sym_attributed_declarator_repeat1] = STATE(4713), + [aux_sym__function_postfix_repeat1] = STATE(4778), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7791), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7791), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(9196), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7791), + [anon_sym_AMP] = ACTIONS(9199), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7791), + [anon_sym_GT_GT] = ACTIONS(7791), + [anon_sym_SEMI] = ACTIONS(7791), + [anon_sym___attribute__] = ACTIONS(7176), + [anon_sym___attribute] = ACTIONS(7178), + [anon_sym_COLON] = ACTIONS(7789), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), + [anon_sym_RBRACE] = ACTIONS(7791), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7791), + [anon_sym_and] = ACTIONS(7791), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7791), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(9211), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9216), + [anon_sym_override] = ACTIONS(9216), + [anon_sym_noexcept] = ACTIONS(7192), + [anon_sym_throw] = ACTIONS(7194), + [anon_sym_requires] = ACTIONS(9219), + [anon_sym_COLON_RBRACK] = ACTIONS(7791), + }, + [STATE(3502)] = { + [sym_identifier] = ACTIONS(6632), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6634), + [anon_sym_COMMA] = ACTIONS(6634), + [aux_sym_preproc_if_token2] = ACTIONS(6634), + [aux_sym_preproc_else_token1] = ACTIONS(6634), + [aux_sym_preproc_elif_token1] = ACTIONS(6632), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6634), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6634), + [anon_sym_LPAREN2] = ACTIONS(6634), + [anon_sym_DASH] = ACTIONS(6632), + [anon_sym_PLUS] = ACTIONS(6632), + [anon_sym_STAR] = ACTIONS(6634), + [anon_sym_SLASH] = ACTIONS(6632), + [anon_sym_PERCENT] = ACTIONS(6634), + [anon_sym_PIPE_PIPE] = ACTIONS(6634), + [anon_sym_AMP_AMP] = ACTIONS(6634), + [anon_sym_PIPE] = ACTIONS(6632), + [anon_sym_CARET] = ACTIONS(6634), + [anon_sym_AMP] = ACTIONS(6632), + [anon_sym_EQ_EQ] = ACTIONS(6634), + [anon_sym_BANG_EQ] = ACTIONS(6634), + [anon_sym_GT] = ACTIONS(6632), + [anon_sym_GT_EQ] = ACTIONS(6634), + [anon_sym_LT_EQ] = ACTIONS(6632), + [anon_sym_LT] = ACTIONS(6632), + [anon_sym_LT_LT] = ACTIONS(6634), + [anon_sym_GT_GT] = ACTIONS(6634), + [anon_sym___extension__] = ACTIONS(6632), + [anon_sym___attribute__] = ACTIONS(6632), + [anon_sym___attribute] = ACTIONS(6632), + [anon_sym_COLON] = ACTIONS(6632), + [anon_sym_COLON_COLON] = ACTIONS(6634), + [anon_sym_LBRACE] = ACTIONS(6634), + [anon_sym_LBRACK] = ACTIONS(6634), + [anon_sym_RBRACK] = ACTIONS(6634), + [anon_sym_const] = ACTIONS(6632), + [anon_sym_constexpr] = ACTIONS(6632), + [anon_sym_volatile] = ACTIONS(6632), + [anon_sym_restrict] = ACTIONS(6632), + [anon_sym___restrict__] = ACTIONS(6632), + [anon_sym__Atomic] = ACTIONS(6632), + [anon_sym__Noreturn] = ACTIONS(6632), + [anon_sym_noreturn] = ACTIONS(6632), + [anon_sym__Nonnull] = ACTIONS(6632), + [anon_sym_mutable] = ACTIONS(6632), + [anon_sym_constinit] = ACTIONS(6632), + [anon_sym_consteval] = ACTIONS(6632), + [anon_sym_alignas] = ACTIONS(6632), + [anon_sym__Alignas] = ACTIONS(6632), + [anon_sym_QMARK] = ACTIONS(6634), + [anon_sym_LT_EQ_GT] = ACTIONS(6634), + [anon_sym_or] = ACTIONS(6632), + [anon_sym_and] = ACTIONS(6632), + [anon_sym_bitor] = ACTIONS(6632), + [anon_sym_xor] = ACTIONS(6632), + [anon_sym_bitand] = ACTIONS(6632), + [anon_sym_not_eq] = ACTIONS(6632), + [anon_sym_DASH_DASH] = ACTIONS(6634), + [anon_sym_PLUS_PLUS] = ACTIONS(6634), + [anon_sym_DOT] = ACTIONS(6632), + [anon_sym_DOT_STAR] = ACTIONS(6634), + [anon_sym_DASH_GT] = ACTIONS(6634), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6632), + [anon_sym_decltype] = ACTIONS(6632), + [anon_sym_final] = ACTIONS(6632), + [anon_sym_override] = ACTIONS(6632), + [anon_sym_requires] = ACTIONS(6632), + }, + [STATE(3503)] = { + [sym_identifier] = ACTIONS(6612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6614), + [anon_sym_COMMA] = ACTIONS(6614), + [aux_sym_preproc_if_token2] = ACTIONS(6614), + [aux_sym_preproc_else_token1] = ACTIONS(6614), + [aux_sym_preproc_elif_token1] = ACTIONS(6612), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6614), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6614), + [anon_sym_LPAREN2] = ACTIONS(6614), + [anon_sym_DASH] = ACTIONS(6612), + [anon_sym_PLUS] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6614), + [anon_sym_SLASH] = ACTIONS(6612), + [anon_sym_PERCENT] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6614), + [anon_sym_AMP_AMP] = ACTIONS(6614), + [anon_sym_PIPE] = ACTIONS(6612), + [anon_sym_CARET] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(6612), + [anon_sym_EQ_EQ] = ACTIONS(6614), + [anon_sym_BANG_EQ] = ACTIONS(6614), + [anon_sym_GT] = ACTIONS(6612), + [anon_sym_GT_EQ] = ACTIONS(6614), + [anon_sym_LT_EQ] = ACTIONS(6612), + [anon_sym_LT] = ACTIONS(6612), + [anon_sym_LT_LT] = ACTIONS(6614), + [anon_sym_GT_GT] = ACTIONS(6614), + [anon_sym___extension__] = ACTIONS(6612), + [anon_sym___attribute__] = ACTIONS(6612), + [anon_sym___attribute] = ACTIONS(6612), + [anon_sym_COLON] = ACTIONS(6612), + [anon_sym_COLON_COLON] = ACTIONS(6614), + [anon_sym_LBRACE] = ACTIONS(6614), + [anon_sym_LBRACK] = ACTIONS(6614), + [anon_sym_RBRACK] = ACTIONS(6614), + [anon_sym_const] = ACTIONS(6612), + [anon_sym_constexpr] = ACTIONS(6612), + [anon_sym_volatile] = ACTIONS(6612), + [anon_sym_restrict] = ACTIONS(6612), + [anon_sym___restrict__] = ACTIONS(6612), + [anon_sym__Atomic] = ACTIONS(6612), + [anon_sym__Noreturn] = ACTIONS(6612), + [anon_sym_noreturn] = ACTIONS(6612), + [anon_sym__Nonnull] = ACTIONS(6612), + [anon_sym_mutable] = ACTIONS(6612), + [anon_sym_constinit] = ACTIONS(6612), + [anon_sym_consteval] = ACTIONS(6612), + [anon_sym_alignas] = ACTIONS(6612), + [anon_sym__Alignas] = ACTIONS(6612), + [anon_sym_QMARK] = ACTIONS(6614), + [anon_sym_LT_EQ_GT] = ACTIONS(6614), + [anon_sym_or] = ACTIONS(6612), + [anon_sym_and] = ACTIONS(6612), + [anon_sym_bitor] = ACTIONS(6612), + [anon_sym_xor] = ACTIONS(6612), + [anon_sym_bitand] = ACTIONS(6612), + [anon_sym_not_eq] = ACTIONS(6612), + [anon_sym_DASH_DASH] = ACTIONS(6614), + [anon_sym_PLUS_PLUS] = ACTIONS(6614), + [anon_sym_DOT] = ACTIONS(6612), + [anon_sym_DOT_STAR] = ACTIONS(6614), + [anon_sym_DASH_GT] = ACTIONS(6614), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6612), + [anon_sym_decltype] = ACTIONS(6612), + [anon_sym_final] = ACTIONS(6612), + [anon_sym_override] = ACTIONS(6612), + [anon_sym_requires] = ACTIONS(6612), + }, + [STATE(3504)] = { + [sym_identifier] = ACTIONS(6624), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6626), + [anon_sym_COMMA] = ACTIONS(6626), + [aux_sym_preproc_if_token2] = ACTIONS(6626), + [aux_sym_preproc_else_token1] = ACTIONS(6626), + [aux_sym_preproc_elif_token1] = ACTIONS(6624), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6626), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6626), + [anon_sym_LPAREN2] = ACTIONS(6626), + [anon_sym_DASH] = ACTIONS(6624), + [anon_sym_PLUS] = ACTIONS(6624), + [anon_sym_STAR] = ACTIONS(6626), + [anon_sym_SLASH] = ACTIONS(6624), + [anon_sym_PERCENT] = ACTIONS(6626), + [anon_sym_PIPE_PIPE] = ACTIONS(6626), + [anon_sym_AMP_AMP] = ACTIONS(6626), + [anon_sym_PIPE] = ACTIONS(6624), + [anon_sym_CARET] = ACTIONS(6626), + [anon_sym_AMP] = ACTIONS(6624), + [anon_sym_EQ_EQ] = ACTIONS(6626), + [anon_sym_BANG_EQ] = ACTIONS(6626), + [anon_sym_GT] = ACTIONS(6624), + [anon_sym_GT_EQ] = ACTIONS(6626), + [anon_sym_LT_EQ] = ACTIONS(6624), + [anon_sym_LT] = ACTIONS(6624), + [anon_sym_LT_LT] = ACTIONS(6626), + [anon_sym_GT_GT] = ACTIONS(6626), + [anon_sym___extension__] = ACTIONS(6624), + [anon_sym___attribute__] = ACTIONS(6624), + [anon_sym___attribute] = ACTIONS(6624), + [anon_sym_COLON] = ACTIONS(6624), + [anon_sym_COLON_COLON] = ACTIONS(6626), + [anon_sym_LBRACE] = ACTIONS(6626), + [anon_sym_LBRACK] = ACTIONS(6626), + [anon_sym_RBRACK] = ACTIONS(6626), + [anon_sym_const] = ACTIONS(6624), + [anon_sym_constexpr] = ACTIONS(6624), + [anon_sym_volatile] = ACTIONS(6624), + [anon_sym_restrict] = ACTIONS(6624), + [anon_sym___restrict__] = ACTIONS(6624), + [anon_sym__Atomic] = ACTIONS(6624), + [anon_sym__Noreturn] = ACTIONS(6624), + [anon_sym_noreturn] = ACTIONS(6624), + [anon_sym__Nonnull] = ACTIONS(6624), + [anon_sym_mutable] = ACTIONS(6624), + [anon_sym_constinit] = ACTIONS(6624), + [anon_sym_consteval] = ACTIONS(6624), + [anon_sym_alignas] = ACTIONS(6624), + [anon_sym__Alignas] = ACTIONS(6624), + [anon_sym_QMARK] = ACTIONS(6626), + [anon_sym_LT_EQ_GT] = ACTIONS(6626), + [anon_sym_or] = ACTIONS(6624), + [anon_sym_and] = ACTIONS(6624), + [anon_sym_bitor] = ACTIONS(6624), + [anon_sym_xor] = ACTIONS(6624), + [anon_sym_bitand] = ACTIONS(6624), + [anon_sym_not_eq] = ACTIONS(6624), + [anon_sym_DASH_DASH] = ACTIONS(6626), + [anon_sym_PLUS_PLUS] = ACTIONS(6626), + [anon_sym_DOT] = ACTIONS(6624), + [anon_sym_DOT_STAR] = ACTIONS(6626), + [anon_sym_DASH_GT] = ACTIONS(6626), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6624), + [anon_sym_decltype] = ACTIONS(6624), + [anon_sym_final] = ACTIONS(6624), + [anon_sym_override] = ACTIONS(6624), + [anon_sym_requires] = ACTIONS(6624), + }, + [STATE(3505)] = { + [sym_identifier] = ACTIONS(7077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), + [anon_sym_COMMA] = ACTIONS(7079), + [anon_sym_RPAREN] = ACTIONS(7079), + [anon_sym_LPAREN2] = ACTIONS(7079), + [anon_sym_TILDE] = ACTIONS(7079), + [anon_sym_STAR] = ACTIONS(7079), + [anon_sym_AMP_AMP] = ACTIONS(7079), + [anon_sym_AMP] = ACTIONS(7077), + [anon_sym_SEMI] = ACTIONS(7079), + [anon_sym___extension__] = ACTIONS(7077), + [anon_sym_virtual] = ACTIONS(7077), + [anon_sym_extern] = ACTIONS(7077), + [anon_sym___attribute__] = ACTIONS(7077), + [anon_sym___attribute] = ACTIONS(7077), + [anon_sym_COLON_COLON] = ACTIONS(7079), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7079), + [anon_sym___declspec] = ACTIONS(7077), + [anon_sym___based] = ACTIONS(7077), + [anon_sym___cdecl] = ACTIONS(7077), + [anon_sym___clrcall] = ACTIONS(7077), + [anon_sym___stdcall] = ACTIONS(7077), + [anon_sym___fastcall] = ACTIONS(7077), + [anon_sym___thiscall] = ACTIONS(7077), + [anon_sym___vectorcall] = ACTIONS(7077), + [anon_sym_LBRACE] = ACTIONS(7079), + [anon_sym_signed] = ACTIONS(7077), + [anon_sym_unsigned] = ACTIONS(7077), + [anon_sym_long] = ACTIONS(7077), + [anon_sym_short] = ACTIONS(7077), + [anon_sym_LBRACK] = ACTIONS(7077), + [anon_sym_static] = ACTIONS(7077), + [anon_sym_EQ] = ACTIONS(7079), + [anon_sym_register] = ACTIONS(7077), + [anon_sym_inline] = ACTIONS(7077), + [anon_sym___inline] = ACTIONS(7077), + [anon_sym___inline__] = ACTIONS(7077), + [anon_sym___forceinline] = ACTIONS(7077), + [anon_sym_thread_local] = ACTIONS(7077), + [anon_sym___thread] = ACTIONS(7077), + [anon_sym_const] = ACTIONS(7077), + [anon_sym_constexpr] = ACTIONS(7077), + [anon_sym_volatile] = ACTIONS(7077), + [anon_sym_restrict] = ACTIONS(7077), + [anon_sym___restrict__] = ACTIONS(7077), + [anon_sym__Atomic] = ACTIONS(7077), + [anon_sym__Noreturn] = ACTIONS(7077), + [anon_sym_noreturn] = ACTIONS(7077), + [anon_sym__Nonnull] = ACTIONS(7077), + [anon_sym_mutable] = ACTIONS(7077), + [anon_sym_constinit] = ACTIONS(7077), + [anon_sym_consteval] = ACTIONS(7077), + [anon_sym_alignas] = ACTIONS(7077), + [anon_sym__Alignas] = ACTIONS(7077), + [sym_primitive_type] = ACTIONS(7077), + [anon_sym_enum] = ACTIONS(7077), + [anon_sym_class] = ACTIONS(7077), + [anon_sym_struct] = ACTIONS(7077), + [anon_sym_union] = ACTIONS(7077), + [anon_sym_typename] = ACTIONS(7077), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7077), + [anon_sym_decltype] = ACTIONS(7077), + [anon_sym_explicit] = ACTIONS(7077), + [anon_sym_template] = ACTIONS(7077), + [anon_sym_GT2] = ACTIONS(7079), + [anon_sym_operator] = ACTIONS(7077), + [anon_sym_LBRACK_COLON] = ACTIONS(7079), + }, + [STATE(3506)] = { + [sym_identifier] = ACTIONS(6628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6630), + [anon_sym_COMMA] = ACTIONS(6630), + [aux_sym_preproc_if_token2] = ACTIONS(6630), + [aux_sym_preproc_else_token1] = ACTIONS(6630), + [aux_sym_preproc_elif_token1] = ACTIONS(6628), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6630), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6630), + [anon_sym_LPAREN2] = ACTIONS(6630), + [anon_sym_DASH] = ACTIONS(6628), + [anon_sym_PLUS] = ACTIONS(6628), + [anon_sym_STAR] = ACTIONS(6630), + [anon_sym_SLASH] = ACTIONS(6628), + [anon_sym_PERCENT] = ACTIONS(6630), + [anon_sym_PIPE_PIPE] = ACTIONS(6630), + [anon_sym_AMP_AMP] = ACTIONS(6630), + [anon_sym_PIPE] = ACTIONS(6628), + [anon_sym_CARET] = ACTIONS(6630), + [anon_sym_AMP] = ACTIONS(6628), + [anon_sym_EQ_EQ] = ACTIONS(6630), + [anon_sym_BANG_EQ] = ACTIONS(6630), + [anon_sym_GT] = ACTIONS(6628), + [anon_sym_GT_EQ] = ACTIONS(6630), + [anon_sym_LT_EQ] = ACTIONS(6628), + [anon_sym_LT] = ACTIONS(6628), + [anon_sym_LT_LT] = ACTIONS(6630), + [anon_sym_GT_GT] = ACTIONS(6630), + [anon_sym___extension__] = ACTIONS(6628), + [anon_sym___attribute__] = ACTIONS(6628), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_COLON] = ACTIONS(6628), + [anon_sym_COLON_COLON] = ACTIONS(6630), + [anon_sym_LBRACE] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(6630), + [anon_sym_RBRACK] = ACTIONS(6630), + [anon_sym_const] = ACTIONS(6628), + [anon_sym_constexpr] = ACTIONS(6628), + [anon_sym_volatile] = ACTIONS(6628), + [anon_sym_restrict] = ACTIONS(6628), + [anon_sym___restrict__] = ACTIONS(6628), + [anon_sym__Atomic] = ACTIONS(6628), + [anon_sym__Noreturn] = ACTIONS(6628), + [anon_sym_noreturn] = ACTIONS(6628), + [anon_sym__Nonnull] = ACTIONS(6628), + [anon_sym_mutable] = ACTIONS(6628), + [anon_sym_constinit] = ACTIONS(6628), + [anon_sym_consteval] = ACTIONS(6628), + [anon_sym_alignas] = ACTIONS(6628), + [anon_sym__Alignas] = ACTIONS(6628), + [anon_sym_QMARK] = ACTIONS(6630), + [anon_sym_LT_EQ_GT] = ACTIONS(6630), + [anon_sym_or] = ACTIONS(6628), + [anon_sym_and] = ACTIONS(6628), + [anon_sym_bitor] = ACTIONS(6628), + [anon_sym_xor] = ACTIONS(6628), + [anon_sym_bitand] = ACTIONS(6628), + [anon_sym_not_eq] = ACTIONS(6628), + [anon_sym_DASH_DASH] = ACTIONS(6630), + [anon_sym_PLUS_PLUS] = ACTIONS(6630), + [anon_sym_DOT] = ACTIONS(6628), + [anon_sym_DOT_STAR] = ACTIONS(6630), + [anon_sym_DASH_GT] = ACTIONS(6630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6628), + [anon_sym_decltype] = ACTIONS(6628), + [anon_sym_final] = ACTIONS(6628), + [anon_sym_override] = ACTIONS(6628), + [anon_sym_requires] = ACTIONS(6628), + }, + [STATE(3507)] = { + [sym_string_literal] = STATE(2565), + [sym_template_argument_list] = STATE(3740), + [sym_raw_string_literal] = STATE(2565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(9222), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(8258), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5638), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9222), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_RBRACE] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(9224), + [anon_sym_EQ] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5638), + [anon_sym_SLASH_EQ] = ACTIONS(5638), + [anon_sym_PERCENT_EQ] = ACTIONS(5638), + [anon_sym_PLUS_EQ] = ACTIONS(5638), + [anon_sym_DASH_EQ] = ACTIONS(5638), + [anon_sym_LT_LT_EQ] = ACTIONS(5638), + [anon_sym_GT_GT_EQ] = ACTIONS(5638), + [anon_sym_AMP_EQ] = ACTIONS(5638), + [anon_sym_CARET_EQ] = ACTIONS(5638), + [anon_sym_PIPE_EQ] = ACTIONS(5638), + [anon_sym_and_eq] = ACTIONS(5638), + [anon_sym_or_eq] = ACTIONS(5638), + [anon_sym_xor_eq] = ACTIONS(5638), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + }, + [STATE(3508)] = { + [sym_identifier] = ACTIONS(6608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6610), + [anon_sym_COMMA] = ACTIONS(6610), + [aux_sym_preproc_if_token2] = ACTIONS(6610), + [aux_sym_preproc_else_token1] = ACTIONS(6610), + [aux_sym_preproc_elif_token1] = ACTIONS(6608), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6610), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6610), + [anon_sym_LPAREN2] = ACTIONS(6610), + [anon_sym_DASH] = ACTIONS(6608), + [anon_sym_PLUS] = ACTIONS(6608), + [anon_sym_STAR] = ACTIONS(6610), + [anon_sym_SLASH] = ACTIONS(6608), + [anon_sym_PERCENT] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6610), + [anon_sym_AMP_AMP] = ACTIONS(6610), + [anon_sym_PIPE] = ACTIONS(6608), + [anon_sym_CARET] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(6608), + [anon_sym_EQ_EQ] = ACTIONS(6610), + [anon_sym_BANG_EQ] = ACTIONS(6610), + [anon_sym_GT] = ACTIONS(6608), + [anon_sym_GT_EQ] = ACTIONS(6610), + [anon_sym_LT_EQ] = ACTIONS(6608), + [anon_sym_LT] = ACTIONS(6608), + [anon_sym_LT_LT] = ACTIONS(6610), + [anon_sym_GT_GT] = ACTIONS(6610), + [anon_sym___extension__] = ACTIONS(6608), + [anon_sym___attribute__] = ACTIONS(6608), + [anon_sym___attribute] = ACTIONS(6608), + [anon_sym_COLON] = ACTIONS(6608), + [anon_sym_COLON_COLON] = ACTIONS(6610), + [anon_sym_LBRACE] = ACTIONS(6610), + [anon_sym_LBRACK] = ACTIONS(6610), + [anon_sym_RBRACK] = ACTIONS(6610), + [anon_sym_const] = ACTIONS(6608), + [anon_sym_constexpr] = ACTIONS(6608), + [anon_sym_volatile] = ACTIONS(6608), + [anon_sym_restrict] = ACTIONS(6608), + [anon_sym___restrict__] = ACTIONS(6608), + [anon_sym__Atomic] = ACTIONS(6608), + [anon_sym__Noreturn] = ACTIONS(6608), + [anon_sym_noreturn] = ACTIONS(6608), + [anon_sym__Nonnull] = ACTIONS(6608), + [anon_sym_mutable] = ACTIONS(6608), + [anon_sym_constinit] = ACTIONS(6608), + [anon_sym_consteval] = ACTIONS(6608), + [anon_sym_alignas] = ACTIONS(6608), + [anon_sym__Alignas] = ACTIONS(6608), + [anon_sym_QMARK] = ACTIONS(6610), + [anon_sym_LT_EQ_GT] = ACTIONS(6610), + [anon_sym_or] = ACTIONS(6608), + [anon_sym_and] = ACTIONS(6608), + [anon_sym_bitor] = ACTIONS(6608), + [anon_sym_xor] = ACTIONS(6608), + [anon_sym_bitand] = ACTIONS(6608), + [anon_sym_not_eq] = ACTIONS(6608), + [anon_sym_DASH_DASH] = ACTIONS(6610), + [anon_sym_PLUS_PLUS] = ACTIONS(6610), + [anon_sym_DOT] = ACTIONS(6608), + [anon_sym_DOT_STAR] = ACTIONS(6610), + [anon_sym_DASH_GT] = ACTIONS(6610), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6608), + [anon_sym_decltype] = ACTIONS(6608), + [anon_sym_final] = ACTIONS(6608), + [anon_sym_override] = ACTIONS(6608), + [anon_sym_requires] = ACTIONS(6608), + }, + [STATE(3509)] = { + [sym_identifier] = ACTIONS(6616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6618), + [anon_sym_COMMA] = ACTIONS(6618), + [aux_sym_preproc_if_token2] = ACTIONS(6618), + [aux_sym_preproc_else_token1] = ACTIONS(6618), + [aux_sym_preproc_elif_token1] = ACTIONS(6616), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6618), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6618), + [anon_sym_LPAREN2] = ACTIONS(6618), + [anon_sym_DASH] = ACTIONS(6616), + [anon_sym_PLUS] = ACTIONS(6616), + [anon_sym_STAR] = ACTIONS(6618), + [anon_sym_SLASH] = ACTIONS(6616), + [anon_sym_PERCENT] = ACTIONS(6618), + [anon_sym_PIPE_PIPE] = ACTIONS(6618), + [anon_sym_AMP_AMP] = ACTIONS(6618), + [anon_sym_PIPE] = ACTIONS(6616), + [anon_sym_CARET] = ACTIONS(6618), + [anon_sym_AMP] = ACTIONS(6616), + [anon_sym_EQ_EQ] = ACTIONS(6618), + [anon_sym_BANG_EQ] = ACTIONS(6618), + [anon_sym_GT] = ACTIONS(6616), + [anon_sym_GT_EQ] = ACTIONS(6618), + [anon_sym_LT_EQ] = ACTIONS(6616), + [anon_sym_LT] = ACTIONS(6616), + [anon_sym_LT_LT] = ACTIONS(6618), + [anon_sym_GT_GT] = ACTIONS(6618), + [anon_sym___extension__] = ACTIONS(6616), + [anon_sym___attribute__] = ACTIONS(6616), + [anon_sym___attribute] = ACTIONS(6616), + [anon_sym_COLON] = ACTIONS(6616), + [anon_sym_COLON_COLON] = ACTIONS(6618), + [anon_sym_LBRACE] = ACTIONS(6618), + [anon_sym_LBRACK] = ACTIONS(6618), + [anon_sym_RBRACK] = ACTIONS(6618), + [anon_sym_const] = ACTIONS(6616), + [anon_sym_constexpr] = ACTIONS(6616), + [anon_sym_volatile] = ACTIONS(6616), + [anon_sym_restrict] = ACTIONS(6616), + [anon_sym___restrict__] = ACTIONS(6616), + [anon_sym__Atomic] = ACTIONS(6616), + [anon_sym__Noreturn] = ACTIONS(6616), + [anon_sym_noreturn] = ACTIONS(6616), + [anon_sym__Nonnull] = ACTIONS(6616), + [anon_sym_mutable] = ACTIONS(6616), + [anon_sym_constinit] = ACTIONS(6616), + [anon_sym_consteval] = ACTIONS(6616), + [anon_sym_alignas] = ACTIONS(6616), + [anon_sym__Alignas] = ACTIONS(6616), + [anon_sym_QMARK] = ACTIONS(6618), + [anon_sym_LT_EQ_GT] = ACTIONS(6618), + [anon_sym_or] = ACTIONS(6616), + [anon_sym_and] = ACTIONS(6616), + [anon_sym_bitor] = ACTIONS(6616), + [anon_sym_xor] = ACTIONS(6616), + [anon_sym_bitand] = ACTIONS(6616), + [anon_sym_not_eq] = ACTIONS(6616), + [anon_sym_DASH_DASH] = ACTIONS(6618), + [anon_sym_PLUS_PLUS] = ACTIONS(6618), + [anon_sym_DOT] = ACTIONS(6616), + [anon_sym_DOT_STAR] = ACTIONS(6618), + [anon_sym_DASH_GT] = ACTIONS(6618), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6616), + [anon_sym_decltype] = ACTIONS(6616), + [anon_sym_final] = ACTIONS(6616), + [anon_sym_override] = ACTIONS(6616), + [anon_sym_requires] = ACTIONS(6616), + }, + [STATE(3510)] = { + [sym_identifier] = ACTIONS(6620), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6622), + [anon_sym_COMMA] = ACTIONS(6622), + [aux_sym_preproc_if_token2] = ACTIONS(6622), + [aux_sym_preproc_else_token1] = ACTIONS(6622), + [aux_sym_preproc_elif_token1] = ACTIONS(6620), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6622), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6622), + [anon_sym_LPAREN2] = ACTIONS(6622), + [anon_sym_DASH] = ACTIONS(6620), + [anon_sym_PLUS] = ACTIONS(6620), + [anon_sym_STAR] = ACTIONS(6622), + [anon_sym_SLASH] = ACTIONS(6620), + [anon_sym_PERCENT] = ACTIONS(6622), + [anon_sym_PIPE_PIPE] = ACTIONS(6622), + [anon_sym_AMP_AMP] = ACTIONS(6622), + [anon_sym_PIPE] = ACTIONS(6620), + [anon_sym_CARET] = ACTIONS(6622), + [anon_sym_AMP] = ACTIONS(6620), + [anon_sym_EQ_EQ] = ACTIONS(6622), + [anon_sym_BANG_EQ] = ACTIONS(6622), + [anon_sym_GT] = ACTIONS(6620), + [anon_sym_GT_EQ] = ACTIONS(6622), + [anon_sym_LT_EQ] = ACTIONS(6620), + [anon_sym_LT] = ACTIONS(6620), + [anon_sym_LT_LT] = ACTIONS(6622), + [anon_sym_GT_GT] = ACTIONS(6622), + [anon_sym___extension__] = ACTIONS(6620), + [anon_sym___attribute__] = ACTIONS(6620), + [anon_sym___attribute] = ACTIONS(6620), + [anon_sym_COLON] = ACTIONS(6620), + [anon_sym_COLON_COLON] = ACTIONS(6622), + [anon_sym_LBRACE] = ACTIONS(6622), + [anon_sym_LBRACK] = ACTIONS(6622), + [anon_sym_RBRACK] = ACTIONS(6622), + [anon_sym_const] = ACTIONS(6620), + [anon_sym_constexpr] = ACTIONS(6620), + [anon_sym_volatile] = ACTIONS(6620), + [anon_sym_restrict] = ACTIONS(6620), + [anon_sym___restrict__] = ACTIONS(6620), + [anon_sym__Atomic] = ACTIONS(6620), + [anon_sym__Noreturn] = ACTIONS(6620), + [anon_sym_noreturn] = ACTIONS(6620), + [anon_sym__Nonnull] = ACTIONS(6620), + [anon_sym_mutable] = ACTIONS(6620), + [anon_sym_constinit] = ACTIONS(6620), + [anon_sym_consteval] = ACTIONS(6620), + [anon_sym_alignas] = ACTIONS(6620), + [anon_sym__Alignas] = ACTIONS(6620), + [anon_sym_QMARK] = ACTIONS(6622), + [anon_sym_LT_EQ_GT] = ACTIONS(6622), + [anon_sym_or] = ACTIONS(6620), + [anon_sym_and] = ACTIONS(6620), + [anon_sym_bitor] = ACTIONS(6620), + [anon_sym_xor] = ACTIONS(6620), + [anon_sym_bitand] = ACTIONS(6620), + [anon_sym_not_eq] = ACTIONS(6620), + [anon_sym_DASH_DASH] = ACTIONS(6622), + [anon_sym_PLUS_PLUS] = ACTIONS(6622), + [anon_sym_DOT] = ACTIONS(6620), + [anon_sym_DOT_STAR] = ACTIONS(6622), + [anon_sym_DASH_GT] = ACTIONS(6622), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6620), + [anon_sym_decltype] = ACTIONS(6620), + [anon_sym_final] = ACTIONS(6620), + [anon_sym_override] = ACTIONS(6620), + [anon_sym_requires] = ACTIONS(6620), + }, + [STATE(3511)] = { + [sym__abstract_declarator] = STATE(6308), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3860), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2080), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3860), + [sym_identifier] = ACTIONS(7349), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), + [anon_sym_COMMA] = ACTIONS(7351), + [aux_sym_preproc_if_token2] = ACTIONS(7351), + [aux_sym_preproc_else_token1] = ACTIONS(7351), + [aux_sym_preproc_elif_token1] = ACTIONS(7349), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7351), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7351), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_PLUS] = ACTIONS(7349), + [anon_sym_STAR] = ACTIONS(8416), + [anon_sym_SLASH] = ACTIONS(7349), + [anon_sym_PERCENT] = ACTIONS(7351), + [anon_sym_PIPE_PIPE] = ACTIONS(7351), + [anon_sym_AMP_AMP] = ACTIONS(8418), + [anon_sym_PIPE] = ACTIONS(7349), + [anon_sym_CARET] = ACTIONS(7351), + [anon_sym_AMP] = ACTIONS(8420), + [anon_sym_EQ_EQ] = ACTIONS(7351), + [anon_sym_BANG_EQ] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7349), + [anon_sym_GT_EQ] = ACTIONS(7351), + [anon_sym_LT_EQ] = ACTIONS(7349), + [anon_sym_LT] = ACTIONS(7349), + [anon_sym_LT_LT] = ACTIONS(7351), + [anon_sym_GT_GT] = ACTIONS(7351), + [anon_sym___extension__] = ACTIONS(8092), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8092), + [anon_sym_volatile] = ACTIONS(8092), + [anon_sym_restrict] = ACTIONS(8092), + [anon_sym___restrict__] = ACTIONS(8092), + [anon_sym__Atomic] = ACTIONS(8092), + [anon_sym__Noreturn] = ACTIONS(8092), + [anon_sym_noreturn] = ACTIONS(8092), + [anon_sym__Nonnull] = ACTIONS(8092), + [anon_sym_mutable] = ACTIONS(8092), + [anon_sym_constinit] = ACTIONS(8092), + [anon_sym_consteval] = ACTIONS(8092), + [anon_sym_alignas] = ACTIONS(8100), + [anon_sym__Alignas] = ACTIONS(8100), + [anon_sym_QMARK] = ACTIONS(7351), + [anon_sym_LT_EQ_GT] = ACTIONS(7351), + [anon_sym_or] = ACTIONS(7349), + [anon_sym_and] = ACTIONS(7349), + [anon_sym_bitor] = ACTIONS(7349), + [anon_sym_xor] = ACTIONS(7349), + [anon_sym_bitand] = ACTIONS(7349), + [anon_sym_not_eq] = ACTIONS(7349), + [anon_sym_DASH_DASH] = ACTIONS(7351), + [anon_sym_PLUS_PLUS] = ACTIONS(7351), + [anon_sym_DOT] = ACTIONS(7349), + [anon_sym_DOT_STAR] = ACTIONS(7351), + [anon_sym_DASH_GT] = ACTIONS(7351), + [sym_comment] = ACTIONS(3), + }, + [STATE(3512)] = { + [sym__abstract_declarator] = STATE(6326), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3514), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2080), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3514), + [sym_identifier] = ACTIONS(7341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [aux_sym_preproc_if_token2] = ACTIONS(7343), + [aux_sym_preproc_else_token1] = ACTIONS(7343), + [aux_sym_preproc_elif_token1] = ACTIONS(7341), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7343), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(8416), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7343), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(8418), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7343), + [anon_sym_AMP] = ACTIONS(8420), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7343), + [anon_sym_GT_GT] = ACTIONS(7343), + [anon_sym___extension__] = ACTIONS(8092), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8092), + [anon_sym_volatile] = ACTIONS(8092), + [anon_sym_restrict] = ACTIONS(8092), + [anon_sym___restrict__] = ACTIONS(8092), + [anon_sym__Atomic] = ACTIONS(8092), + [anon_sym__Noreturn] = ACTIONS(8092), + [anon_sym_noreturn] = ACTIONS(8092), + [anon_sym__Nonnull] = ACTIONS(8092), + [anon_sym_mutable] = ACTIONS(8092), + [anon_sym_constinit] = ACTIONS(8092), + [anon_sym_consteval] = ACTIONS(8092), + [anon_sym_alignas] = ACTIONS(8100), + [anon_sym__Alignas] = ACTIONS(8100), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7341), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7341), + [anon_sym_not_eq] = ACTIONS(7341), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7343), + [sym_comment] = ACTIONS(3), + }, + [STATE(3513)] = { + [sym__abstract_declarator] = STATE(6358), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3860), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2080), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3860), + [sym_identifier] = ACTIONS(6821), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [aux_sym_preproc_if_token2] = ACTIONS(6823), + [aux_sym_preproc_else_token1] = ACTIONS(6823), + [aux_sym_preproc_elif_token1] = ACTIONS(6821), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6823), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(8416), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6823), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(8418), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6823), + [anon_sym_AMP] = ACTIONS(8420), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6823), + [anon_sym_GT_GT] = ACTIONS(6823), + [anon_sym___extension__] = ACTIONS(8092), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8092), + [anon_sym_volatile] = ACTIONS(8092), + [anon_sym_restrict] = ACTIONS(8092), + [anon_sym___restrict__] = ACTIONS(8092), + [anon_sym__Atomic] = ACTIONS(8092), + [anon_sym__Noreturn] = ACTIONS(8092), + [anon_sym_noreturn] = ACTIONS(8092), + [anon_sym__Nonnull] = ACTIONS(8092), + [anon_sym_mutable] = ACTIONS(8092), + [anon_sym_constinit] = ACTIONS(8092), + [anon_sym_consteval] = ACTIONS(8092), + [anon_sym_alignas] = ACTIONS(8100), + [anon_sym__Alignas] = ACTIONS(8100), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6821), + [anon_sym_and] = ACTIONS(6821), + [anon_sym_bitor] = ACTIONS(6821), + [anon_sym_xor] = ACTIONS(6821), + [anon_sym_bitand] = ACTIONS(6821), + [anon_sym_not_eq] = ACTIONS(6821), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + }, + [STATE(3514)] = { + [sym__abstract_declarator] = STATE(6329), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3860), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2080), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3860), + [sym_identifier] = ACTIONS(7353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), + [anon_sym_COMMA] = ACTIONS(7355), + [aux_sym_preproc_if_token2] = ACTIONS(7355), + [aux_sym_preproc_else_token1] = ACTIONS(7355), + [aux_sym_preproc_elif_token1] = ACTIONS(7353), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7355), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7355), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7353), + [anon_sym_PLUS] = ACTIONS(7353), + [anon_sym_STAR] = ACTIONS(8416), + [anon_sym_SLASH] = ACTIONS(7353), + [anon_sym_PERCENT] = ACTIONS(7355), + [anon_sym_PIPE_PIPE] = ACTIONS(7355), + [anon_sym_AMP_AMP] = ACTIONS(8418), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_CARET] = ACTIONS(7355), + [anon_sym_AMP] = ACTIONS(8420), + [anon_sym_EQ_EQ] = ACTIONS(7355), + [anon_sym_BANG_EQ] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_EQ] = ACTIONS(7355), + [anon_sym_LT_EQ] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_LT_LT] = ACTIONS(7355), + [anon_sym_GT_GT] = ACTIONS(7355), + [anon_sym___extension__] = ACTIONS(8092), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8092), + [anon_sym_volatile] = ACTIONS(8092), + [anon_sym_restrict] = ACTIONS(8092), + [anon_sym___restrict__] = ACTIONS(8092), + [anon_sym__Atomic] = ACTIONS(8092), + [anon_sym__Noreturn] = ACTIONS(8092), + [anon_sym_noreturn] = ACTIONS(8092), + [anon_sym__Nonnull] = ACTIONS(8092), + [anon_sym_mutable] = ACTIONS(8092), + [anon_sym_constinit] = ACTIONS(8092), + [anon_sym_consteval] = ACTIONS(8092), + [anon_sym_alignas] = ACTIONS(8100), + [anon_sym__Alignas] = ACTIONS(8100), + [anon_sym_QMARK] = ACTIONS(7355), + [anon_sym_LT_EQ_GT] = ACTIONS(7355), + [anon_sym_or] = ACTIONS(7353), + [anon_sym_and] = ACTIONS(7353), + [anon_sym_bitor] = ACTIONS(7353), + [anon_sym_xor] = ACTIONS(7353), + [anon_sym_bitand] = ACTIONS(7353), + [anon_sym_not_eq] = ACTIONS(7353), + [anon_sym_DASH_DASH] = ACTIONS(7355), + [anon_sym_PLUS_PLUS] = ACTIONS(7355), + [anon_sym_DOT] = ACTIONS(7353), + [anon_sym_DOT_STAR] = ACTIONS(7355), + [anon_sym_DASH_GT] = ACTIONS(7355), + [sym_comment] = ACTIONS(3), + }, + [STATE(3515)] = { + [sym__abstract_declarator] = STATE(6375), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3860), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2080), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3860), + [sym_identifier] = ACTIONS(7347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [aux_sym_preproc_if_token2] = ACTIONS(7345), + [aux_sym_preproc_else_token1] = ACTIONS(7345), + [aux_sym_preproc_elif_token1] = ACTIONS(7347), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7345), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(8416), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7345), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(8418), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7345), + [anon_sym_AMP] = ACTIONS(8420), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7345), + [anon_sym_GT_GT] = ACTIONS(7345), + [anon_sym___extension__] = ACTIONS(8092), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8092), + [anon_sym_volatile] = ACTIONS(8092), + [anon_sym_restrict] = ACTIONS(8092), + [anon_sym___restrict__] = ACTIONS(8092), + [anon_sym__Atomic] = ACTIONS(8092), + [anon_sym__Noreturn] = ACTIONS(8092), + [anon_sym_noreturn] = ACTIONS(8092), + [anon_sym__Nonnull] = ACTIONS(8092), + [anon_sym_mutable] = ACTIONS(8092), + [anon_sym_constinit] = ACTIONS(8092), + [anon_sym_consteval] = ACTIONS(8092), + [anon_sym_alignas] = ACTIONS(8100), + [anon_sym__Alignas] = ACTIONS(8100), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7347), + [anon_sym_and] = ACTIONS(7347), + [anon_sym_bitor] = ACTIONS(7347), + [anon_sym_xor] = ACTIONS(7347), + [anon_sym_bitand] = ACTIONS(7347), + [anon_sym_not_eq] = ACTIONS(7347), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), + [sym_comment] = ACTIONS(3), + }, + [STATE(3516)] = { + [sym_string_literal] = STATE(3632), + [sym_template_argument_list] = STATE(5135), + [sym_raw_string_literal] = STATE(3632), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_RPAREN] = ACTIONS(9222), + [anon_sym_LPAREN2] = ACTIONS(9222), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(6964), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9222), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(9224), + [anon_sym_EQ] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5638), + [anon_sym_SLASH_EQ] = ACTIONS(5638), + [anon_sym_PERCENT_EQ] = ACTIONS(5638), + [anon_sym_PLUS_EQ] = ACTIONS(5638), + [anon_sym_DASH_EQ] = ACTIONS(5638), + [anon_sym_LT_LT_EQ] = ACTIONS(5638), + [anon_sym_GT_GT_EQ] = ACTIONS(5638), + [anon_sym_AMP_EQ] = ACTIONS(5638), + [anon_sym_CARET_EQ] = ACTIONS(5638), + [anon_sym_PIPE_EQ] = ACTIONS(5638), + [anon_sym_and_eq] = ACTIONS(5638), + [anon_sym_or_eq] = ACTIONS(5638), + [anon_sym_xor_eq] = ACTIONS(5638), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5645), + [anon_sym_L_DQUOTE] = ACTIONS(6885), + [anon_sym_u_DQUOTE] = ACTIONS(6885), + [anon_sym_U_DQUOTE] = ACTIONS(6885), + [anon_sym_u8_DQUOTE] = ACTIONS(6885), + [anon_sym_DQUOTE] = ACTIONS(6885), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6887), + [anon_sym_LR_DQUOTE] = ACTIONS(6887), + [anon_sym_uR_DQUOTE] = ACTIONS(6887), + [anon_sym_UR_DQUOTE] = ACTIONS(6887), + [anon_sym_u8R_DQUOTE] = ACTIONS(6887), + [anon_sym_DASH_GT_STAR] = ACTIONS(5638), + }, + [STATE(3517)] = { + [sym_argument_list] = STATE(3903), + [sym_initializer_list] = STATE(3903), + [sym_new_declarator] = STATE(3703), + [sym_identifier] = ACTIONS(9226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9228), + [anon_sym_COMMA] = ACTIONS(9228), + [anon_sym_RPAREN] = ACTIONS(9228), + [aux_sym_preproc_if_token2] = ACTIONS(9228), + [aux_sym_preproc_else_token1] = ACTIONS(9228), + [aux_sym_preproc_elif_token1] = ACTIONS(9226), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9228), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9228), + [anon_sym_LPAREN2] = ACTIONS(9230), + [anon_sym_DASH] = ACTIONS(9226), + [anon_sym_PLUS] = ACTIONS(9226), + [anon_sym_STAR] = ACTIONS(9226), + [anon_sym_SLASH] = ACTIONS(9226), + [anon_sym_PERCENT] = ACTIONS(9226), + [anon_sym_PIPE_PIPE] = ACTIONS(9228), + [anon_sym_AMP_AMP] = ACTIONS(9228), + [anon_sym_PIPE] = ACTIONS(9226), + [anon_sym_CARET] = ACTIONS(9226), + [anon_sym_AMP] = ACTIONS(9226), + [anon_sym_EQ_EQ] = ACTIONS(9228), + [anon_sym_BANG_EQ] = ACTIONS(9228), + [anon_sym_GT] = ACTIONS(9226), + [anon_sym_GT_EQ] = ACTIONS(9228), + [anon_sym_LT_EQ] = ACTIONS(9226), + [anon_sym_LT] = ACTIONS(9226), + [anon_sym_LT_LT] = ACTIONS(9226), + [anon_sym_GT_GT] = ACTIONS(9226), + [anon_sym_SEMI] = ACTIONS(9228), + [anon_sym___attribute__] = ACTIONS(9226), + [anon_sym___attribute] = ACTIONS(9226), + [anon_sym_COLON] = ACTIONS(9226), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9228), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(9228), + [anon_sym_LBRACK] = ACTIONS(9232), + [anon_sym_EQ] = ACTIONS(9226), + [anon_sym_QMARK] = ACTIONS(9228), + [anon_sym_STAR_EQ] = ACTIONS(9228), + [anon_sym_SLASH_EQ] = ACTIONS(9228), + [anon_sym_PERCENT_EQ] = ACTIONS(9228), + [anon_sym_PLUS_EQ] = ACTIONS(9228), + [anon_sym_DASH_EQ] = ACTIONS(9228), + [anon_sym_LT_LT_EQ] = ACTIONS(9228), + [anon_sym_GT_GT_EQ] = ACTIONS(9228), + [anon_sym_AMP_EQ] = ACTIONS(9228), + [anon_sym_CARET_EQ] = ACTIONS(9228), + [anon_sym_PIPE_EQ] = ACTIONS(9228), + [anon_sym_and_eq] = ACTIONS(9226), + [anon_sym_or_eq] = ACTIONS(9226), + [anon_sym_xor_eq] = ACTIONS(9226), + [anon_sym_LT_EQ_GT] = ACTIONS(9228), + [anon_sym_or] = ACTIONS(9226), + [anon_sym_and] = ACTIONS(9226), + [anon_sym_bitor] = ACTIONS(9226), + [anon_sym_xor] = ACTIONS(9226), + [anon_sym_bitand] = ACTIONS(9226), + [anon_sym_not_eq] = ACTIONS(9226), + [anon_sym_DASH_DASH] = ACTIONS(9228), + [anon_sym_PLUS_PLUS] = ACTIONS(9228), + [anon_sym_DOT] = ACTIONS(9226), + [anon_sym_DOT_STAR] = ACTIONS(9228), + [anon_sym_DASH_GT] = ACTIONS(9228), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9228), + }, + [STATE(3518)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7695), + [anon_sym_COMMA] = ACTIONS(7695), + [anon_sym_RPAREN] = ACTIONS(7695), + [anon_sym_LPAREN2] = ACTIONS(7695), + [anon_sym_DASH] = ACTIONS(7693), + [anon_sym_PLUS] = ACTIONS(7693), + [anon_sym_STAR] = ACTIONS(7695), + [anon_sym_SLASH] = ACTIONS(7693), + [anon_sym_PERCENT] = ACTIONS(7695), + [anon_sym_PIPE_PIPE] = ACTIONS(7695), + [anon_sym_AMP_AMP] = ACTIONS(7695), + [anon_sym_PIPE] = ACTIONS(7693), + [anon_sym_CARET] = ACTIONS(7695), + [anon_sym_AMP] = ACTIONS(7693), + [anon_sym_EQ_EQ] = ACTIONS(7695), + [anon_sym_BANG_EQ] = ACTIONS(7695), + [anon_sym_GT] = ACTIONS(7693), + [anon_sym_GT_EQ] = ACTIONS(7695), + [anon_sym_LT_EQ] = ACTIONS(7693), + [anon_sym_LT] = ACTIONS(7693), + [anon_sym_LT_LT] = ACTIONS(7695), + [anon_sym_GT_GT] = ACTIONS(7695), + [anon_sym_SEMI] = ACTIONS(7695), + [anon_sym___extension__] = ACTIONS(7695), + [anon_sym___attribute__] = ACTIONS(7695), + [anon_sym___attribute] = ACTIONS(7693), + [anon_sym_COLON] = ACTIONS(7693), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7695), + [anon_sym_LBRACE] = ACTIONS(7695), + [anon_sym_RBRACE] = ACTIONS(7695), + [anon_sym_signed] = ACTIONS(9234), + [anon_sym_unsigned] = ACTIONS(9234), + [anon_sym_long] = ACTIONS(9234), + [anon_sym_short] = ACTIONS(9234), + [anon_sym_LBRACK] = ACTIONS(7695), + [anon_sym_const] = ACTIONS(7693), + [anon_sym_constexpr] = ACTIONS(7695), + [anon_sym_volatile] = ACTIONS(7695), + [anon_sym_restrict] = ACTIONS(7695), + [anon_sym___restrict__] = ACTIONS(7695), + [anon_sym__Atomic] = ACTIONS(7695), + [anon_sym__Noreturn] = ACTIONS(7695), + [anon_sym_noreturn] = ACTIONS(7695), + [anon_sym__Nonnull] = ACTIONS(7695), + [anon_sym_mutable] = ACTIONS(7695), + [anon_sym_constinit] = ACTIONS(7695), + [anon_sym_consteval] = ACTIONS(7695), + [anon_sym_alignas] = ACTIONS(7695), + [anon_sym__Alignas] = ACTIONS(7695), + [anon_sym_QMARK] = ACTIONS(7695), + [anon_sym_LT_EQ_GT] = ACTIONS(7695), + [anon_sym_or] = ACTIONS(7695), + [anon_sym_and] = ACTIONS(7695), + [anon_sym_bitor] = ACTIONS(7695), + [anon_sym_xor] = ACTIONS(7695), + [anon_sym_bitand] = ACTIONS(7695), + [anon_sym_not_eq] = ACTIONS(7695), + [anon_sym_DASH_DASH] = ACTIONS(7695), + [anon_sym_PLUS_PLUS] = ACTIONS(7695), + [anon_sym_DOT] = ACTIONS(7693), + [anon_sym_DOT_STAR] = ACTIONS(7695), + [anon_sym_DASH_GT] = ACTIONS(7695), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7695), + [anon_sym_override] = ACTIONS(7695), + [anon_sym_requires] = ACTIONS(7695), + [anon_sym_COLON_RBRACK] = ACTIONS(7695), + }, + [STATE(3519)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7699), + [anon_sym_COMMA] = ACTIONS(7699), + [anon_sym_RPAREN] = ACTIONS(7699), + [anon_sym_LPAREN2] = ACTIONS(7699), + [anon_sym_DASH] = ACTIONS(7697), + [anon_sym_PLUS] = ACTIONS(7697), + [anon_sym_STAR] = ACTIONS(7699), + [anon_sym_SLASH] = ACTIONS(7697), + [anon_sym_PERCENT] = ACTIONS(7699), + [anon_sym_PIPE_PIPE] = ACTIONS(7699), + [anon_sym_AMP_AMP] = ACTIONS(7699), + [anon_sym_PIPE] = ACTIONS(7697), + [anon_sym_CARET] = ACTIONS(7699), + [anon_sym_AMP] = ACTIONS(7697), + [anon_sym_EQ_EQ] = ACTIONS(7699), + [anon_sym_BANG_EQ] = ACTIONS(7699), + [anon_sym_GT] = ACTIONS(7697), + [anon_sym_GT_EQ] = ACTIONS(7699), + [anon_sym_LT_EQ] = ACTIONS(7697), + [anon_sym_LT] = ACTIONS(7697), + [anon_sym_LT_LT] = ACTIONS(7699), + [anon_sym_GT_GT] = ACTIONS(7699), + [anon_sym_SEMI] = ACTIONS(7699), + [anon_sym___extension__] = ACTIONS(7699), + [anon_sym___attribute__] = ACTIONS(7699), + [anon_sym___attribute] = ACTIONS(7697), + [anon_sym_COLON] = ACTIONS(7697), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7699), + [anon_sym_LBRACE] = ACTIONS(7699), + [anon_sym_RBRACE] = ACTIONS(7699), + [anon_sym_signed] = ACTIONS(9234), + [anon_sym_unsigned] = ACTIONS(9234), + [anon_sym_long] = ACTIONS(9234), + [anon_sym_short] = ACTIONS(9234), + [anon_sym_LBRACK] = ACTIONS(7699), + [anon_sym_const] = ACTIONS(7697), + [anon_sym_constexpr] = ACTIONS(7699), + [anon_sym_volatile] = ACTIONS(7699), + [anon_sym_restrict] = ACTIONS(7699), + [anon_sym___restrict__] = ACTIONS(7699), + [anon_sym__Atomic] = ACTIONS(7699), + [anon_sym__Noreturn] = ACTIONS(7699), + [anon_sym_noreturn] = ACTIONS(7699), + [anon_sym__Nonnull] = ACTIONS(7699), + [anon_sym_mutable] = ACTIONS(7699), + [anon_sym_constinit] = ACTIONS(7699), + [anon_sym_consteval] = ACTIONS(7699), + [anon_sym_alignas] = ACTIONS(7699), + [anon_sym__Alignas] = ACTIONS(7699), + [anon_sym_QMARK] = ACTIONS(7699), + [anon_sym_LT_EQ_GT] = ACTIONS(7699), + [anon_sym_or] = ACTIONS(7699), + [anon_sym_and] = ACTIONS(7699), + [anon_sym_bitor] = ACTIONS(7699), + [anon_sym_xor] = ACTIONS(7699), + [anon_sym_bitand] = ACTIONS(7699), + [anon_sym_not_eq] = ACTIONS(7699), + [anon_sym_DASH_DASH] = ACTIONS(7699), + [anon_sym_PLUS_PLUS] = ACTIONS(7699), + [anon_sym_DOT] = ACTIONS(7697), + [anon_sym_DOT_STAR] = ACTIONS(7699), + [anon_sym_DASH_GT] = ACTIONS(7699), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7699), + [anon_sym_override] = ACTIONS(7699), + [anon_sym_requires] = ACTIONS(7699), + [anon_sym_COLON_RBRACK] = ACTIONS(7699), + }, + [STATE(3520)] = { + [sym__abstract_declarator] = STATE(6349), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(2488), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2275), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(2488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), + [anon_sym_COMMA] = ACTIONS(7351), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_PLUS] = ACTIONS(7349), + [anon_sym_STAR] = ACTIONS(8385), + [anon_sym_SLASH] = ACTIONS(7349), + [anon_sym_PERCENT] = ACTIONS(7351), + [anon_sym_PIPE_PIPE] = ACTIONS(7351), + [anon_sym_AMP_AMP] = ACTIONS(8387), + [anon_sym_PIPE] = ACTIONS(7349), + [anon_sym_CARET] = ACTIONS(7351), + [anon_sym_AMP] = ACTIONS(8389), + [anon_sym_EQ_EQ] = ACTIONS(7351), + [anon_sym_BANG_EQ] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7349), + [anon_sym_GT_EQ] = ACTIONS(7351), + [anon_sym_LT_EQ] = ACTIONS(7349), + [anon_sym_LT] = ACTIONS(7349), + [anon_sym_LT_LT] = ACTIONS(7351), + [anon_sym_GT_GT] = ACTIONS(7351), + [anon_sym_SEMI] = ACTIONS(7351), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym___attribute__] = ACTIONS(7351), + [anon_sym___attribute] = ACTIONS(7349), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(7351), + [anon_sym_LT_EQ_GT] = ACTIONS(7351), + [anon_sym_or] = ACTIONS(7351), + [anon_sym_and] = ACTIONS(7351), + [anon_sym_bitor] = ACTIONS(7351), + [anon_sym_xor] = ACTIONS(7351), + [anon_sym_bitand] = ACTIONS(7351), + [anon_sym_not_eq] = ACTIONS(7351), + [anon_sym_DASH_DASH] = ACTIONS(7351), + [anon_sym_PLUS_PLUS] = ACTIONS(7351), + [anon_sym_DOT] = ACTIONS(7349), + [anon_sym_DOT_STAR] = ACTIONS(7351), + [anon_sym_DASH_GT] = ACTIONS(7351), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7351), + [anon_sym_override] = ACTIONS(7351), + [anon_sym_requires] = ACTIONS(7351), + }, + [STATE(3521)] = { + [sym__abstract_declarator] = STATE(6361), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3523), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2275), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(8385), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7343), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(8387), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7343), + [anon_sym_AMP] = ACTIONS(8389), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7343), + [anon_sym_GT_GT] = ACTIONS(7343), + [anon_sym_SEMI] = ACTIONS(7343), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym___attribute__] = ACTIONS(7343), + [anon_sym___attribute] = ACTIONS(7341), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7343), + [anon_sym_and] = ACTIONS(7343), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7343), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7343), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7343), + [anon_sym_override] = ACTIONS(7343), + [anon_sym_requires] = ACTIONS(7343), + }, + [STATE(3522)] = { + [sym__abstract_declarator] = STATE(6311), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(2488), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2275), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(2488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(8385), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6823), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(8387), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6823), + [anon_sym_AMP] = ACTIONS(8389), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6823), + [anon_sym_GT_GT] = ACTIONS(6823), + [anon_sym_SEMI] = ACTIONS(6823), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym___attribute__] = ACTIONS(6823), + [anon_sym___attribute] = ACTIONS(6821), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6823), + [anon_sym_and] = ACTIONS(6823), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6823), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6823), + [anon_sym_override] = ACTIONS(6823), + [anon_sym_requires] = ACTIONS(6823), + }, + [STATE(3523)] = { + [sym__abstract_declarator] = STATE(6362), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(2488), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2275), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(2488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), + [anon_sym_COMMA] = ACTIONS(7355), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7353), + [anon_sym_PLUS] = ACTIONS(7353), + [anon_sym_STAR] = ACTIONS(8385), + [anon_sym_SLASH] = ACTIONS(7353), + [anon_sym_PERCENT] = ACTIONS(7355), + [anon_sym_PIPE_PIPE] = ACTIONS(7355), + [anon_sym_AMP_AMP] = ACTIONS(8387), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_CARET] = ACTIONS(7355), + [anon_sym_AMP] = ACTIONS(8389), + [anon_sym_EQ_EQ] = ACTIONS(7355), + [anon_sym_BANG_EQ] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_EQ] = ACTIONS(7355), + [anon_sym_LT_EQ] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_LT_LT] = ACTIONS(7355), + [anon_sym_GT_GT] = ACTIONS(7355), + [anon_sym_SEMI] = ACTIONS(7355), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym___attribute__] = ACTIONS(7355), + [anon_sym___attribute] = ACTIONS(7353), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(7355), + [anon_sym_LT_EQ_GT] = ACTIONS(7355), + [anon_sym_or] = ACTIONS(7355), + [anon_sym_and] = ACTIONS(7355), + [anon_sym_bitor] = ACTIONS(7355), + [anon_sym_xor] = ACTIONS(7355), + [anon_sym_bitand] = ACTIONS(7355), + [anon_sym_not_eq] = ACTIONS(7355), + [anon_sym_DASH_DASH] = ACTIONS(7355), + [anon_sym_PLUS_PLUS] = ACTIONS(7355), + [anon_sym_DOT] = ACTIONS(7353), + [anon_sym_DOT_STAR] = ACTIONS(7355), + [anon_sym_DASH_GT] = ACTIONS(7355), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7355), + [anon_sym_override] = ACTIONS(7355), + [anon_sym_requires] = ACTIONS(7355), + }, + [STATE(3524)] = { + [sym__abstract_declarator] = STATE(6369), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(2488), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2275), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(2488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(8385), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7345), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(8387), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7345), + [anon_sym_AMP] = ACTIONS(8389), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7345), + [anon_sym_GT_GT] = ACTIONS(7345), + [anon_sym_SEMI] = ACTIONS(7345), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym___attribute__] = ACTIONS(7345), + [anon_sym___attribute] = ACTIONS(7347), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7345), + [anon_sym_and] = ACTIONS(7345), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7345), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7345), + [anon_sym_override] = ACTIONS(7345), + [anon_sym_requires] = ACTIONS(7345), + }, + [STATE(3525)] = { + [sym_string_literal] = STATE(3632), + [sym_template_argument_list] = STATE(4811), + [sym_raw_string_literal] = STATE(3632), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_RPAREN] = ACTIONS(9236), + [anon_sym_LPAREN2] = ACTIONS(9236), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(6880), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6883), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(9239), + [anon_sym_EQ] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5638), + [anon_sym_SLASH_EQ] = ACTIONS(5638), + [anon_sym_PERCENT_EQ] = ACTIONS(5638), + [anon_sym_PLUS_EQ] = ACTIONS(5638), + [anon_sym_DASH_EQ] = ACTIONS(5638), + [anon_sym_LT_LT_EQ] = ACTIONS(5638), + [anon_sym_GT_GT_EQ] = ACTIONS(5638), + [anon_sym_AMP_EQ] = ACTIONS(5638), + [anon_sym_CARET_EQ] = ACTIONS(5638), + [anon_sym_PIPE_EQ] = ACTIONS(5638), + [anon_sym_and_eq] = ACTIONS(5638), + [anon_sym_or_eq] = ACTIONS(5638), + [anon_sym_xor_eq] = ACTIONS(5638), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5645), + [anon_sym_L_DQUOTE] = ACTIONS(6885), + [anon_sym_u_DQUOTE] = ACTIONS(6885), + [anon_sym_U_DQUOTE] = ACTIONS(6885), + [anon_sym_u8_DQUOTE] = ACTIONS(6885), + [anon_sym_DQUOTE] = ACTIONS(6885), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6887), + [anon_sym_LR_DQUOTE] = ACTIONS(6887), + [anon_sym_uR_DQUOTE] = ACTIONS(6887), + [anon_sym_UR_DQUOTE] = ACTIONS(6887), + [anon_sym_u8R_DQUOTE] = ACTIONS(6887), + [anon_sym_DASH_GT_STAR] = ACTIONS(5638), + }, + [STATE(3526)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7703), + [anon_sym_COMMA] = ACTIONS(7703), + [anon_sym_RPAREN] = ACTIONS(7703), + [anon_sym_LPAREN2] = ACTIONS(7703), + [anon_sym_DASH] = ACTIONS(7701), + [anon_sym_PLUS] = ACTIONS(7701), + [anon_sym_STAR] = ACTIONS(7703), + [anon_sym_SLASH] = ACTIONS(7701), + [anon_sym_PERCENT] = ACTIONS(7703), + [anon_sym_PIPE_PIPE] = ACTIONS(7703), + [anon_sym_AMP_AMP] = ACTIONS(7703), + [anon_sym_PIPE] = ACTIONS(7701), + [anon_sym_CARET] = ACTIONS(7703), + [anon_sym_AMP] = ACTIONS(7701), + [anon_sym_EQ_EQ] = ACTIONS(7703), + [anon_sym_BANG_EQ] = ACTIONS(7703), + [anon_sym_GT] = ACTIONS(7701), + [anon_sym_GT_EQ] = ACTIONS(7703), + [anon_sym_LT_EQ] = ACTIONS(7701), + [anon_sym_LT] = ACTIONS(7701), + [anon_sym_LT_LT] = ACTIONS(7703), + [anon_sym_GT_GT] = ACTIONS(7703), + [anon_sym_SEMI] = ACTIONS(7703), + [anon_sym___extension__] = ACTIONS(7703), + [anon_sym___attribute__] = ACTIONS(7703), + [anon_sym___attribute] = ACTIONS(7701), + [anon_sym_COLON] = ACTIONS(7701), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7703), + [anon_sym_LBRACE] = ACTIONS(7703), + [anon_sym_RBRACE] = ACTIONS(7703), + [anon_sym_signed] = ACTIONS(9242), + [anon_sym_unsigned] = ACTIONS(9242), + [anon_sym_long] = ACTIONS(9242), + [anon_sym_short] = ACTIONS(9242), + [anon_sym_LBRACK] = ACTIONS(7703), + [anon_sym_const] = ACTIONS(7701), + [anon_sym_constexpr] = ACTIONS(7703), + [anon_sym_volatile] = ACTIONS(7703), + [anon_sym_restrict] = ACTIONS(7703), + [anon_sym___restrict__] = ACTIONS(7703), + [anon_sym__Atomic] = ACTIONS(7703), + [anon_sym__Noreturn] = ACTIONS(7703), + [anon_sym_noreturn] = ACTIONS(7703), + [anon_sym__Nonnull] = ACTIONS(7703), + [anon_sym_mutable] = ACTIONS(7703), + [anon_sym_constinit] = ACTIONS(7703), + [anon_sym_consteval] = ACTIONS(7703), + [anon_sym_alignas] = ACTIONS(7703), + [anon_sym__Alignas] = ACTIONS(7703), + [anon_sym_QMARK] = ACTIONS(7703), + [anon_sym_LT_EQ_GT] = ACTIONS(7703), + [anon_sym_or] = ACTIONS(7703), + [anon_sym_and] = ACTIONS(7703), + [anon_sym_bitor] = ACTIONS(7703), + [anon_sym_xor] = ACTIONS(7703), + [anon_sym_bitand] = ACTIONS(7703), + [anon_sym_not_eq] = ACTIONS(7703), + [anon_sym_DASH_DASH] = ACTIONS(7703), + [anon_sym_PLUS_PLUS] = ACTIONS(7703), + [anon_sym_DOT] = ACTIONS(7701), + [anon_sym_DOT_STAR] = ACTIONS(7703), + [anon_sym_DASH_GT] = ACTIONS(7703), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7703), + [anon_sym_override] = ACTIONS(7703), + [anon_sym_requires] = ACTIONS(7703), + [anon_sym_COLON_RBRACK] = ACTIONS(7703), + }, + [STATE(3527)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7733), + [anon_sym_COMMA] = ACTIONS(7733), + [anon_sym_RPAREN] = ACTIONS(7733), + [anon_sym_LPAREN2] = ACTIONS(7733), + [anon_sym_DASH] = ACTIONS(7731), + [anon_sym_PLUS] = ACTIONS(7731), + [anon_sym_STAR] = ACTIONS(7731), + [anon_sym_SLASH] = ACTIONS(7731), + [anon_sym_PERCENT] = ACTIONS(7731), + [anon_sym_PIPE_PIPE] = ACTIONS(7733), + [anon_sym_AMP_AMP] = ACTIONS(7733), + [anon_sym_PIPE] = ACTIONS(7731), + [anon_sym_CARET] = ACTIONS(7731), + [anon_sym_AMP] = ACTIONS(7731), + [anon_sym_EQ_EQ] = ACTIONS(7733), + [anon_sym_BANG_EQ] = ACTIONS(7733), + [anon_sym_GT] = ACTIONS(7731), + [anon_sym_GT_EQ] = ACTIONS(7733), + [anon_sym_LT_EQ] = ACTIONS(7731), + [anon_sym_LT] = ACTIONS(7731), + [anon_sym_LT_LT] = ACTIONS(7731), + [anon_sym_GT_GT] = ACTIONS(7731), + [anon_sym___extension__] = ACTIONS(7733), + [anon_sym_LBRACE] = ACTIONS(7733), + [anon_sym_LBRACK] = ACTIONS(7733), + [anon_sym_EQ] = ACTIONS(7731), + [anon_sym_const] = ACTIONS(7731), + [anon_sym_constexpr] = ACTIONS(7733), + [anon_sym_volatile] = ACTIONS(7733), + [anon_sym_restrict] = ACTIONS(7733), + [anon_sym___restrict__] = ACTIONS(7733), + [anon_sym__Atomic] = ACTIONS(7733), + [anon_sym__Noreturn] = ACTIONS(7733), + [anon_sym_noreturn] = ACTIONS(7733), + [anon_sym__Nonnull] = ACTIONS(7733), + [anon_sym_mutable] = ACTIONS(7733), + [anon_sym_constinit] = ACTIONS(7733), + [anon_sym_consteval] = ACTIONS(7733), + [anon_sym_alignas] = ACTIONS(7733), + [anon_sym__Alignas] = ACTIONS(7733), + [anon_sym_QMARK] = ACTIONS(7733), + [anon_sym_STAR_EQ] = ACTIONS(7733), + [anon_sym_SLASH_EQ] = ACTIONS(7733), + [anon_sym_PERCENT_EQ] = ACTIONS(7733), + [anon_sym_PLUS_EQ] = ACTIONS(7733), + [anon_sym_DASH_EQ] = ACTIONS(7733), + [anon_sym_LT_LT_EQ] = ACTIONS(7733), + [anon_sym_GT_GT_EQ] = ACTIONS(7733), + [anon_sym_AMP_EQ] = ACTIONS(7733), + [anon_sym_CARET_EQ] = ACTIONS(7733), + [anon_sym_PIPE_EQ] = ACTIONS(7733), + [anon_sym_LT_EQ_GT] = ACTIONS(7733), + [anon_sym_or] = ACTIONS(7733), + [anon_sym_and] = ACTIONS(7733), + [anon_sym_bitor] = ACTIONS(7733), + [anon_sym_xor] = ACTIONS(7733), + [anon_sym_bitand] = ACTIONS(7733), + [anon_sym_not_eq] = ACTIONS(7733), + [anon_sym_DASH_DASH] = ACTIONS(7733), + [anon_sym_PLUS_PLUS] = ACTIONS(7733), + [anon_sym_DOT] = ACTIONS(7731), + [anon_sym_DOT_STAR] = ACTIONS(7733), + [anon_sym_DASH_GT] = ACTIONS(7731), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7733), + [anon_sym_override] = ACTIONS(7733), + [anon_sym_requires] = ACTIONS(7733), + [anon_sym_DASH_GT_STAR] = ACTIONS(7733), + }, + [STATE(3528)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7225), + [anon_sym_and] = ACTIONS(7225), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7225), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7223), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), + [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + }, + [STATE(3529)] = { + [sym_decltype_auto] = STATE(3593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7457), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7225), + [anon_sym_and] = ACTIONS(7225), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7225), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7223), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8871), + [anon_sym_decltype] = ACTIONS(6962), + [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + }, + [STATE(3530)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7741), + [anon_sym_COMMA] = ACTIONS(7741), + [anon_sym_RPAREN] = ACTIONS(7741), + [anon_sym_LPAREN2] = ACTIONS(7741), + [anon_sym_DASH] = ACTIONS(7739), + [anon_sym_PLUS] = ACTIONS(7739), + [anon_sym_STAR] = ACTIONS(7739), + [anon_sym_SLASH] = ACTIONS(7739), + [anon_sym_PERCENT] = ACTIONS(7739), + [anon_sym_PIPE_PIPE] = ACTIONS(7741), + [anon_sym_AMP_AMP] = ACTIONS(7741), + [anon_sym_PIPE] = ACTIONS(7739), + [anon_sym_CARET] = ACTIONS(7739), + [anon_sym_AMP] = ACTIONS(7739), + [anon_sym_EQ_EQ] = ACTIONS(7741), + [anon_sym_BANG_EQ] = ACTIONS(7741), + [anon_sym_GT] = ACTIONS(7739), + [anon_sym_GT_EQ] = ACTIONS(7741), + [anon_sym_LT_EQ] = ACTIONS(7739), + [anon_sym_LT] = ACTIONS(7739), + [anon_sym_LT_LT] = ACTIONS(7739), + [anon_sym_GT_GT] = ACTIONS(7739), + [anon_sym___extension__] = ACTIONS(7741), + [anon_sym_LBRACE] = ACTIONS(7741), + [anon_sym_LBRACK] = ACTIONS(7741), + [anon_sym_EQ] = ACTIONS(7739), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7741), + [anon_sym_volatile] = ACTIONS(7741), + [anon_sym_restrict] = ACTIONS(7741), + [anon_sym___restrict__] = ACTIONS(7741), + [anon_sym__Atomic] = ACTIONS(7741), + [anon_sym__Noreturn] = ACTIONS(7741), + [anon_sym_noreturn] = ACTIONS(7741), + [anon_sym__Nonnull] = ACTIONS(7741), + [anon_sym_mutable] = ACTIONS(7741), + [anon_sym_constinit] = ACTIONS(7741), + [anon_sym_consteval] = ACTIONS(7741), + [anon_sym_alignas] = ACTIONS(7741), + [anon_sym__Alignas] = ACTIONS(7741), + [anon_sym_QMARK] = ACTIONS(7741), + [anon_sym_STAR_EQ] = ACTIONS(7741), + [anon_sym_SLASH_EQ] = ACTIONS(7741), + [anon_sym_PERCENT_EQ] = ACTIONS(7741), + [anon_sym_PLUS_EQ] = ACTIONS(7741), + [anon_sym_DASH_EQ] = ACTIONS(7741), + [anon_sym_LT_LT_EQ] = ACTIONS(7741), + [anon_sym_GT_GT_EQ] = ACTIONS(7741), + [anon_sym_AMP_EQ] = ACTIONS(7741), + [anon_sym_CARET_EQ] = ACTIONS(7741), + [anon_sym_PIPE_EQ] = ACTIONS(7741), + [anon_sym_LT_EQ_GT] = ACTIONS(7741), + [anon_sym_or] = ACTIONS(7741), + [anon_sym_and] = ACTIONS(7741), + [anon_sym_bitor] = ACTIONS(7741), + [anon_sym_xor] = ACTIONS(7741), + [anon_sym_bitand] = ACTIONS(7741), + [anon_sym_not_eq] = ACTIONS(7741), + [anon_sym_DASH_DASH] = ACTIONS(7741), + [anon_sym_PLUS_PLUS] = ACTIONS(7741), + [anon_sym_DOT] = ACTIONS(7739), + [anon_sym_DOT_STAR] = ACTIONS(7741), + [anon_sym_DASH_GT] = ACTIONS(7739), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7741), + [anon_sym_override] = ACTIONS(7741), + [anon_sym_requires] = ACTIONS(7741), + [anon_sym_DASH_GT_STAR] = ACTIONS(7741), + }, + [STATE(3531)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7745), + [anon_sym_COMMA] = ACTIONS(7745), + [anon_sym_RPAREN] = ACTIONS(7745), + [anon_sym_LPAREN2] = ACTIONS(7745), + [anon_sym_DASH] = ACTIONS(7743), + [anon_sym_PLUS] = ACTIONS(7743), + [anon_sym_STAR] = ACTIONS(7743), + [anon_sym_SLASH] = ACTIONS(7743), + [anon_sym_PERCENT] = ACTIONS(7743), + [anon_sym_PIPE_PIPE] = ACTIONS(7745), + [anon_sym_AMP_AMP] = ACTIONS(7745), + [anon_sym_PIPE] = ACTIONS(7743), + [anon_sym_CARET] = ACTIONS(7743), + [anon_sym_AMP] = ACTIONS(7743), + [anon_sym_EQ_EQ] = ACTIONS(7745), + [anon_sym_BANG_EQ] = ACTIONS(7745), + [anon_sym_GT] = ACTIONS(7743), + [anon_sym_GT_EQ] = ACTIONS(7745), + [anon_sym_LT_EQ] = ACTIONS(7743), + [anon_sym_LT] = ACTIONS(7743), + [anon_sym_LT_LT] = ACTIONS(7743), + [anon_sym_GT_GT] = ACTIONS(7743), + [anon_sym___extension__] = ACTIONS(7745), + [anon_sym_LBRACE] = ACTIONS(7745), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_EQ] = ACTIONS(7743), + [anon_sym_const] = ACTIONS(7743), + [anon_sym_constexpr] = ACTIONS(7745), + [anon_sym_volatile] = ACTIONS(7745), + [anon_sym_restrict] = ACTIONS(7745), + [anon_sym___restrict__] = ACTIONS(7745), + [anon_sym__Atomic] = ACTIONS(7745), + [anon_sym__Noreturn] = ACTIONS(7745), + [anon_sym_noreturn] = ACTIONS(7745), + [anon_sym__Nonnull] = ACTIONS(7745), + [anon_sym_mutable] = ACTIONS(7745), + [anon_sym_constinit] = ACTIONS(7745), + [anon_sym_consteval] = ACTIONS(7745), + [anon_sym_alignas] = ACTIONS(7745), + [anon_sym__Alignas] = ACTIONS(7745), + [anon_sym_QMARK] = ACTIONS(7745), + [anon_sym_STAR_EQ] = ACTIONS(7745), + [anon_sym_SLASH_EQ] = ACTIONS(7745), + [anon_sym_PERCENT_EQ] = ACTIONS(7745), + [anon_sym_PLUS_EQ] = ACTIONS(7745), + [anon_sym_DASH_EQ] = ACTIONS(7745), + [anon_sym_LT_LT_EQ] = ACTIONS(7745), + [anon_sym_GT_GT_EQ] = ACTIONS(7745), + [anon_sym_AMP_EQ] = ACTIONS(7745), + [anon_sym_CARET_EQ] = ACTIONS(7745), + [anon_sym_PIPE_EQ] = ACTIONS(7745), + [anon_sym_LT_EQ_GT] = ACTIONS(7745), + [anon_sym_or] = ACTIONS(7745), + [anon_sym_and] = ACTIONS(7745), + [anon_sym_bitor] = ACTIONS(7745), + [anon_sym_xor] = ACTIONS(7745), + [anon_sym_bitand] = ACTIONS(7745), + [anon_sym_not_eq] = ACTIONS(7745), + [anon_sym_DASH_DASH] = ACTIONS(7745), + [anon_sym_PLUS_PLUS] = ACTIONS(7745), + [anon_sym_DOT] = ACTIONS(7743), + [anon_sym_DOT_STAR] = ACTIONS(7745), + [anon_sym_DASH_GT] = ACTIONS(7743), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7745), + [anon_sym_override] = ACTIONS(7745), + [anon_sym_requires] = ACTIONS(7745), + [anon_sym_DASH_GT_STAR] = ACTIONS(7745), + }, + [STATE(3532)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7753), + [anon_sym_COMMA] = ACTIONS(7753), + [anon_sym_RPAREN] = ACTIONS(7753), + [anon_sym_LPAREN2] = ACTIONS(7753), + [anon_sym_DASH] = ACTIONS(7751), + [anon_sym_PLUS] = ACTIONS(7751), + [anon_sym_STAR] = ACTIONS(7751), + [anon_sym_SLASH] = ACTIONS(7751), + [anon_sym_PERCENT] = ACTIONS(7751), + [anon_sym_PIPE_PIPE] = ACTIONS(7753), + [anon_sym_AMP_AMP] = ACTIONS(7753), + [anon_sym_PIPE] = ACTIONS(7751), + [anon_sym_CARET] = ACTIONS(7751), + [anon_sym_AMP] = ACTIONS(7751), + [anon_sym_EQ_EQ] = ACTIONS(7753), + [anon_sym_BANG_EQ] = ACTIONS(7753), + [anon_sym_GT] = ACTIONS(7751), + [anon_sym_GT_EQ] = ACTIONS(7753), + [anon_sym_LT_EQ] = ACTIONS(7751), + [anon_sym_LT] = ACTIONS(7751), + [anon_sym_LT_LT] = ACTIONS(7751), + [anon_sym_GT_GT] = ACTIONS(7751), + [anon_sym___extension__] = ACTIONS(7753), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_LBRACK] = ACTIONS(7753), + [anon_sym_EQ] = ACTIONS(7751), + [anon_sym_const] = ACTIONS(7751), + [anon_sym_constexpr] = ACTIONS(7753), + [anon_sym_volatile] = ACTIONS(7753), + [anon_sym_restrict] = ACTIONS(7753), + [anon_sym___restrict__] = ACTIONS(7753), + [anon_sym__Atomic] = ACTIONS(7753), + [anon_sym__Noreturn] = ACTIONS(7753), + [anon_sym_noreturn] = ACTIONS(7753), + [anon_sym__Nonnull] = ACTIONS(7753), + [anon_sym_mutable] = ACTIONS(7753), + [anon_sym_constinit] = ACTIONS(7753), + [anon_sym_consteval] = ACTIONS(7753), + [anon_sym_alignas] = ACTIONS(7753), + [anon_sym__Alignas] = ACTIONS(7753), + [anon_sym_QMARK] = ACTIONS(7753), + [anon_sym_STAR_EQ] = ACTIONS(7753), + [anon_sym_SLASH_EQ] = ACTIONS(7753), + [anon_sym_PERCENT_EQ] = ACTIONS(7753), + [anon_sym_PLUS_EQ] = ACTIONS(7753), + [anon_sym_DASH_EQ] = ACTIONS(7753), + [anon_sym_LT_LT_EQ] = ACTIONS(7753), + [anon_sym_GT_GT_EQ] = ACTIONS(7753), + [anon_sym_AMP_EQ] = ACTIONS(7753), + [anon_sym_CARET_EQ] = ACTIONS(7753), + [anon_sym_PIPE_EQ] = ACTIONS(7753), + [anon_sym_LT_EQ_GT] = ACTIONS(7753), + [anon_sym_or] = ACTIONS(7753), + [anon_sym_and] = ACTIONS(7753), + [anon_sym_bitor] = ACTIONS(7753), + [anon_sym_xor] = ACTIONS(7753), + [anon_sym_bitand] = ACTIONS(7753), + [anon_sym_not_eq] = ACTIONS(7753), + [anon_sym_DASH_DASH] = ACTIONS(7753), + [anon_sym_PLUS_PLUS] = ACTIONS(7753), + [anon_sym_DOT] = ACTIONS(7751), + [anon_sym_DOT_STAR] = ACTIONS(7753), + [anon_sym_DASH_GT] = ACTIONS(7751), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7753), + [anon_sym_override] = ACTIONS(7753), + [anon_sym_requires] = ACTIONS(7753), + [anon_sym_DASH_GT_STAR] = ACTIONS(7753), + }, + [STATE(3533)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7757), + [anon_sym_COMMA] = ACTIONS(7757), + [anon_sym_RPAREN] = ACTIONS(7757), + [anon_sym_LPAREN2] = ACTIONS(7757), + [anon_sym_DASH] = ACTIONS(7755), + [anon_sym_PLUS] = ACTIONS(7755), + [anon_sym_STAR] = ACTIONS(7755), + [anon_sym_SLASH] = ACTIONS(7755), + [anon_sym_PERCENT] = ACTIONS(7755), + [anon_sym_PIPE_PIPE] = ACTIONS(7757), + [anon_sym_AMP_AMP] = ACTIONS(7757), + [anon_sym_PIPE] = ACTIONS(7755), + [anon_sym_CARET] = ACTIONS(7755), + [anon_sym_AMP] = ACTIONS(7755), + [anon_sym_EQ_EQ] = ACTIONS(7757), + [anon_sym_BANG_EQ] = ACTIONS(7757), + [anon_sym_GT] = ACTIONS(7755), + [anon_sym_GT_EQ] = ACTIONS(7757), + [anon_sym_LT_EQ] = ACTIONS(7755), + [anon_sym_LT] = ACTIONS(7755), + [anon_sym_LT_LT] = ACTIONS(7755), + [anon_sym_GT_GT] = ACTIONS(7755), + [anon_sym___extension__] = ACTIONS(7757), + [anon_sym_LBRACE] = ACTIONS(7757), + [anon_sym_LBRACK] = ACTIONS(7757), + [anon_sym_EQ] = ACTIONS(7755), + [anon_sym_const] = ACTIONS(7755), + [anon_sym_constexpr] = ACTIONS(7757), + [anon_sym_volatile] = ACTIONS(7757), + [anon_sym_restrict] = ACTIONS(7757), + [anon_sym___restrict__] = ACTIONS(7757), + [anon_sym__Atomic] = ACTIONS(7757), + [anon_sym__Noreturn] = ACTIONS(7757), + [anon_sym_noreturn] = ACTIONS(7757), + [anon_sym__Nonnull] = ACTIONS(7757), + [anon_sym_mutable] = ACTIONS(7757), + [anon_sym_constinit] = ACTIONS(7757), + [anon_sym_consteval] = ACTIONS(7757), + [anon_sym_alignas] = ACTIONS(7757), + [anon_sym__Alignas] = ACTIONS(7757), + [anon_sym_QMARK] = ACTIONS(7757), + [anon_sym_STAR_EQ] = ACTIONS(7757), + [anon_sym_SLASH_EQ] = ACTIONS(7757), + [anon_sym_PERCENT_EQ] = ACTIONS(7757), + [anon_sym_PLUS_EQ] = ACTIONS(7757), + [anon_sym_DASH_EQ] = ACTIONS(7757), + [anon_sym_LT_LT_EQ] = ACTIONS(7757), + [anon_sym_GT_GT_EQ] = ACTIONS(7757), + [anon_sym_AMP_EQ] = ACTIONS(7757), + [anon_sym_CARET_EQ] = ACTIONS(7757), + [anon_sym_PIPE_EQ] = ACTIONS(7757), + [anon_sym_LT_EQ_GT] = ACTIONS(7757), + [anon_sym_or] = ACTIONS(7757), + [anon_sym_and] = ACTIONS(7757), + [anon_sym_bitor] = ACTIONS(7757), + [anon_sym_xor] = ACTIONS(7757), + [anon_sym_bitand] = ACTIONS(7757), + [anon_sym_not_eq] = ACTIONS(7757), + [anon_sym_DASH_DASH] = ACTIONS(7757), + [anon_sym_PLUS_PLUS] = ACTIONS(7757), + [anon_sym_DOT] = ACTIONS(7755), + [anon_sym_DOT_STAR] = ACTIONS(7757), + [anon_sym_DASH_GT] = ACTIONS(7755), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7757), + [anon_sym_override] = ACTIONS(7757), + [anon_sym_requires] = ACTIONS(7757), + [anon_sym_DASH_GT_STAR] = ACTIONS(7757), + }, + [STATE(3534)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7761), + [anon_sym_COMMA] = ACTIONS(7761), + [anon_sym_RPAREN] = ACTIONS(7761), + [anon_sym_LPAREN2] = ACTIONS(7761), + [anon_sym_DASH] = ACTIONS(7759), + [anon_sym_PLUS] = ACTIONS(7759), + [anon_sym_STAR] = ACTIONS(7759), + [anon_sym_SLASH] = ACTIONS(7759), + [anon_sym_PERCENT] = ACTIONS(7759), + [anon_sym_PIPE_PIPE] = ACTIONS(7761), + [anon_sym_AMP_AMP] = ACTIONS(7761), + [anon_sym_PIPE] = ACTIONS(7759), + [anon_sym_CARET] = ACTIONS(7759), + [anon_sym_AMP] = ACTIONS(7759), + [anon_sym_EQ_EQ] = ACTIONS(7761), + [anon_sym_BANG_EQ] = ACTIONS(7761), + [anon_sym_GT] = ACTIONS(7759), + [anon_sym_GT_EQ] = ACTIONS(7761), + [anon_sym_LT_EQ] = ACTIONS(7759), + [anon_sym_LT] = ACTIONS(7759), + [anon_sym_LT_LT] = ACTIONS(7759), + [anon_sym_GT_GT] = ACTIONS(7759), + [anon_sym___extension__] = ACTIONS(7761), + [anon_sym_LBRACE] = ACTIONS(7761), + [anon_sym_LBRACK] = ACTIONS(7761), + [anon_sym_EQ] = ACTIONS(7759), + [anon_sym_const] = ACTIONS(7759), + [anon_sym_constexpr] = ACTIONS(7761), + [anon_sym_volatile] = ACTIONS(7761), + [anon_sym_restrict] = ACTIONS(7761), + [anon_sym___restrict__] = ACTIONS(7761), + [anon_sym__Atomic] = ACTIONS(7761), + [anon_sym__Noreturn] = ACTIONS(7761), + [anon_sym_noreturn] = ACTIONS(7761), + [anon_sym__Nonnull] = ACTIONS(7761), + [anon_sym_mutable] = ACTIONS(7761), + [anon_sym_constinit] = ACTIONS(7761), + [anon_sym_consteval] = ACTIONS(7761), + [anon_sym_alignas] = ACTIONS(7761), + [anon_sym__Alignas] = ACTIONS(7761), + [anon_sym_QMARK] = ACTIONS(7761), + [anon_sym_STAR_EQ] = ACTIONS(7761), + [anon_sym_SLASH_EQ] = ACTIONS(7761), + [anon_sym_PERCENT_EQ] = ACTIONS(7761), + [anon_sym_PLUS_EQ] = ACTIONS(7761), + [anon_sym_DASH_EQ] = ACTIONS(7761), + [anon_sym_LT_LT_EQ] = ACTIONS(7761), + [anon_sym_GT_GT_EQ] = ACTIONS(7761), + [anon_sym_AMP_EQ] = ACTIONS(7761), + [anon_sym_CARET_EQ] = ACTIONS(7761), + [anon_sym_PIPE_EQ] = ACTIONS(7761), + [anon_sym_LT_EQ_GT] = ACTIONS(7761), + [anon_sym_or] = ACTIONS(7761), + [anon_sym_and] = ACTIONS(7761), + [anon_sym_bitor] = ACTIONS(7761), + [anon_sym_xor] = ACTIONS(7761), + [anon_sym_bitand] = ACTIONS(7761), + [anon_sym_not_eq] = ACTIONS(7761), + [anon_sym_DASH_DASH] = ACTIONS(7761), + [anon_sym_PLUS_PLUS] = ACTIONS(7761), + [anon_sym_DOT] = ACTIONS(7759), + [anon_sym_DOT_STAR] = ACTIONS(7761), + [anon_sym_DASH_GT] = ACTIONS(7759), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7761), + [anon_sym_override] = ACTIONS(7761), + [anon_sym_requires] = ACTIONS(7761), + [anon_sym_DASH_GT_STAR] = ACTIONS(7761), + }, + [STATE(3535)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7765), + [anon_sym_COMMA] = ACTIONS(7765), + [anon_sym_RPAREN] = ACTIONS(7765), + [anon_sym_LPAREN2] = ACTIONS(7765), + [anon_sym_DASH] = ACTIONS(7763), + [anon_sym_PLUS] = ACTIONS(7763), + [anon_sym_STAR] = ACTIONS(7763), + [anon_sym_SLASH] = ACTIONS(7763), + [anon_sym_PERCENT] = ACTIONS(7763), + [anon_sym_PIPE_PIPE] = ACTIONS(7765), + [anon_sym_AMP_AMP] = ACTIONS(7765), + [anon_sym_PIPE] = ACTIONS(7763), + [anon_sym_CARET] = ACTIONS(7763), + [anon_sym_AMP] = ACTIONS(7763), + [anon_sym_EQ_EQ] = ACTIONS(7765), + [anon_sym_BANG_EQ] = ACTIONS(7765), + [anon_sym_GT] = ACTIONS(7763), + [anon_sym_GT_EQ] = ACTIONS(7765), + [anon_sym_LT_EQ] = ACTIONS(7763), + [anon_sym_LT] = ACTIONS(7763), + [anon_sym_LT_LT] = ACTIONS(7763), + [anon_sym_GT_GT] = ACTIONS(7763), + [anon_sym___extension__] = ACTIONS(7765), + [anon_sym_LBRACE] = ACTIONS(7765), + [anon_sym_LBRACK] = ACTIONS(7765), + [anon_sym_EQ] = ACTIONS(7763), + [anon_sym_const] = ACTIONS(7763), + [anon_sym_constexpr] = ACTIONS(7765), + [anon_sym_volatile] = ACTIONS(7765), + [anon_sym_restrict] = ACTIONS(7765), + [anon_sym___restrict__] = ACTIONS(7765), + [anon_sym__Atomic] = ACTIONS(7765), + [anon_sym__Noreturn] = ACTIONS(7765), + [anon_sym_noreturn] = ACTIONS(7765), + [anon_sym__Nonnull] = ACTIONS(7765), + [anon_sym_mutable] = ACTIONS(7765), + [anon_sym_constinit] = ACTIONS(7765), + [anon_sym_consteval] = ACTIONS(7765), + [anon_sym_alignas] = ACTIONS(7765), + [anon_sym__Alignas] = ACTIONS(7765), + [anon_sym_QMARK] = ACTIONS(7765), + [anon_sym_STAR_EQ] = ACTIONS(7765), + [anon_sym_SLASH_EQ] = ACTIONS(7765), + [anon_sym_PERCENT_EQ] = ACTIONS(7765), + [anon_sym_PLUS_EQ] = ACTIONS(7765), + [anon_sym_DASH_EQ] = ACTIONS(7765), + [anon_sym_LT_LT_EQ] = ACTIONS(7765), + [anon_sym_GT_GT_EQ] = ACTIONS(7765), + [anon_sym_AMP_EQ] = ACTIONS(7765), + [anon_sym_CARET_EQ] = ACTIONS(7765), + [anon_sym_PIPE_EQ] = ACTIONS(7765), + [anon_sym_LT_EQ_GT] = ACTIONS(7765), + [anon_sym_or] = ACTIONS(7765), + [anon_sym_and] = ACTIONS(7765), + [anon_sym_bitor] = ACTIONS(7765), + [anon_sym_xor] = ACTIONS(7765), + [anon_sym_bitand] = ACTIONS(7765), + [anon_sym_not_eq] = ACTIONS(7765), + [anon_sym_DASH_DASH] = ACTIONS(7765), + [anon_sym_PLUS_PLUS] = ACTIONS(7765), + [anon_sym_DOT] = ACTIONS(7763), + [anon_sym_DOT_STAR] = ACTIONS(7765), + [anon_sym_DASH_GT] = ACTIONS(7763), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7765), + [anon_sym_override] = ACTIONS(7765), + [anon_sym_requires] = ACTIONS(7765), + [anon_sym_DASH_GT_STAR] = ACTIONS(7765), + }, + [STATE(3536)] = { + [sym__abstract_declarator] = STATE(6300), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3580), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2072), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_RPAREN] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(8487), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7343), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(8489), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7343), + [anon_sym_AMP] = ACTIONS(8491), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7343), + [anon_sym_GT_GT] = ACTIONS(7343), + [anon_sym_SEMI] = ACTIONS(7343), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym_COLON] = ACTIONS(7341), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7343), + [anon_sym_RBRACE] = ACTIONS(7343), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7343), + [anon_sym_and] = ACTIONS(7343), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7343), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7343), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7343), + }, + [STATE(3537)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7677), + [anon_sym_COMMA] = ACTIONS(7677), + [anon_sym_RPAREN] = ACTIONS(7677), + [anon_sym_LPAREN2] = ACTIONS(7677), + [anon_sym_DASH] = ACTIONS(7675), + [anon_sym_PLUS] = ACTIONS(7675), + [anon_sym_STAR] = ACTIONS(7677), + [anon_sym_SLASH] = ACTIONS(7675), + [anon_sym_PERCENT] = ACTIONS(7677), + [anon_sym_PIPE_PIPE] = ACTIONS(7677), + [anon_sym_AMP_AMP] = ACTIONS(7677), + [anon_sym_PIPE] = ACTIONS(7675), + [anon_sym_CARET] = ACTIONS(7677), + [anon_sym_AMP] = ACTIONS(7675), + [anon_sym_EQ_EQ] = ACTIONS(7677), + [anon_sym_BANG_EQ] = ACTIONS(7677), + [anon_sym_GT] = ACTIONS(7675), + [anon_sym_GT_EQ] = ACTIONS(7677), + [anon_sym_LT_EQ] = ACTIONS(7675), + [anon_sym_LT] = ACTIONS(7675), + [anon_sym_LT_LT] = ACTIONS(7677), + [anon_sym_GT_GT] = ACTIONS(7677), + [anon_sym_SEMI] = ACTIONS(7677), + [anon_sym___extension__] = ACTIONS(7677), + [anon_sym___attribute__] = ACTIONS(7677), + [anon_sym___attribute] = ACTIONS(7675), + [anon_sym_COLON] = ACTIONS(7675), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7677), + [anon_sym_LBRACE] = ACTIONS(7677), + [anon_sym_RBRACE] = ACTIONS(7677), + [anon_sym_signed] = ACTIONS(9234), + [anon_sym_unsigned] = ACTIONS(9234), + [anon_sym_long] = ACTIONS(9234), + [anon_sym_short] = ACTIONS(9234), + [anon_sym_LBRACK] = ACTIONS(7677), + [anon_sym_const] = ACTIONS(7675), + [anon_sym_constexpr] = ACTIONS(7677), + [anon_sym_volatile] = ACTIONS(7677), + [anon_sym_restrict] = ACTIONS(7677), + [anon_sym___restrict__] = ACTIONS(7677), + [anon_sym__Atomic] = ACTIONS(7677), + [anon_sym__Noreturn] = ACTIONS(7677), + [anon_sym_noreturn] = ACTIONS(7677), + [anon_sym__Nonnull] = ACTIONS(7677), + [anon_sym_mutable] = ACTIONS(7677), + [anon_sym_constinit] = ACTIONS(7677), + [anon_sym_consteval] = ACTIONS(7677), + [anon_sym_alignas] = ACTIONS(7677), + [anon_sym__Alignas] = ACTIONS(7677), + [anon_sym_QMARK] = ACTIONS(7677), + [anon_sym_LT_EQ_GT] = ACTIONS(7677), + [anon_sym_or] = ACTIONS(7677), + [anon_sym_and] = ACTIONS(7677), + [anon_sym_bitor] = ACTIONS(7677), + [anon_sym_xor] = ACTIONS(7677), + [anon_sym_bitand] = ACTIONS(7677), + [anon_sym_not_eq] = ACTIONS(7677), + [anon_sym_DASH_DASH] = ACTIONS(7677), + [anon_sym_PLUS_PLUS] = ACTIONS(7677), + [anon_sym_DOT] = ACTIONS(7675), + [anon_sym_DOT_STAR] = ACTIONS(7677), + [anon_sym_DASH_GT] = ACTIONS(7677), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7677), + [anon_sym_override] = ACTIONS(7677), + [anon_sym_requires] = ACTIONS(7677), + [anon_sym_COLON_RBRACK] = ACTIONS(7677), + }, + [STATE(3538)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), + [anon_sym_COMMA] = ACTIONS(7719), + [anon_sym_RPAREN] = ACTIONS(7719), + [anon_sym_LPAREN2] = ACTIONS(7719), + [anon_sym_DASH] = ACTIONS(7717), + [anon_sym_PLUS] = ACTIONS(7717), + [anon_sym_STAR] = ACTIONS(7719), + [anon_sym_SLASH] = ACTIONS(7717), + [anon_sym_PERCENT] = ACTIONS(7719), + [anon_sym_PIPE_PIPE] = ACTIONS(7719), + [anon_sym_AMP_AMP] = ACTIONS(7719), + [anon_sym_PIPE] = ACTIONS(7717), + [anon_sym_CARET] = ACTIONS(7719), + [anon_sym_AMP] = ACTIONS(7717), + [anon_sym_EQ_EQ] = ACTIONS(7719), + [anon_sym_BANG_EQ] = ACTIONS(7719), + [anon_sym_GT] = ACTIONS(7717), + [anon_sym_GT_EQ] = ACTIONS(7719), + [anon_sym_LT_EQ] = ACTIONS(7717), + [anon_sym_LT] = ACTIONS(7717), + [anon_sym_LT_LT] = ACTIONS(7719), + [anon_sym_GT_GT] = ACTIONS(7719), + [anon_sym_SEMI] = ACTIONS(7719), + [anon_sym___extension__] = ACTIONS(7719), + [anon_sym___attribute__] = ACTIONS(7719), + [anon_sym___attribute] = ACTIONS(7717), + [anon_sym_COLON] = ACTIONS(7717), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7719), + [anon_sym_LBRACE] = ACTIONS(7719), + [anon_sym_RBRACE] = ACTIONS(7719), + [anon_sym_signed] = ACTIONS(9214), + [anon_sym_unsigned] = ACTIONS(9214), + [anon_sym_long] = ACTIONS(9214), + [anon_sym_short] = ACTIONS(9214), + [anon_sym_LBRACK] = ACTIONS(7719), + [anon_sym_const] = ACTIONS(7717), + [anon_sym_constexpr] = ACTIONS(7719), + [anon_sym_volatile] = ACTIONS(7719), + [anon_sym_restrict] = ACTIONS(7719), + [anon_sym___restrict__] = ACTIONS(7719), + [anon_sym__Atomic] = ACTIONS(7719), + [anon_sym__Noreturn] = ACTIONS(7719), + [anon_sym_noreturn] = ACTIONS(7719), + [anon_sym__Nonnull] = ACTIONS(7719), + [anon_sym_mutable] = ACTIONS(7719), + [anon_sym_constinit] = ACTIONS(7719), + [anon_sym_consteval] = ACTIONS(7719), + [anon_sym_alignas] = ACTIONS(7719), + [anon_sym__Alignas] = ACTIONS(7719), + [anon_sym_QMARK] = ACTIONS(7719), + [anon_sym_LT_EQ_GT] = ACTIONS(7719), + [anon_sym_or] = ACTIONS(7719), + [anon_sym_and] = ACTIONS(7719), + [anon_sym_bitor] = ACTIONS(7719), + [anon_sym_xor] = ACTIONS(7719), + [anon_sym_bitand] = ACTIONS(7719), + [anon_sym_not_eq] = ACTIONS(7719), + [anon_sym_DASH_DASH] = ACTIONS(7719), + [anon_sym_PLUS_PLUS] = ACTIONS(7719), + [anon_sym_DOT] = ACTIONS(7717), + [anon_sym_DOT_STAR] = ACTIONS(7719), + [anon_sym_DASH_GT] = ACTIONS(7719), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7719), + [anon_sym_override] = ACTIONS(7719), + [anon_sym_requires] = ACTIONS(7719), + [anon_sym_COLON_RBRACK] = ACTIONS(7719), + }, + [STATE(3539)] = { + [sym_argument_list] = STATE(5537), + [sym_initializer_list] = STATE(6093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(8569), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7223), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7223), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7223), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7223), + [anon_sym_GT_GT] = ACTIONS(7223), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_EQ] = ACTIONS(7223), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_STAR_EQ] = ACTIONS(7225), + [anon_sym_SLASH_EQ] = ACTIONS(7225), + [anon_sym_PERCENT_EQ] = ACTIONS(7225), + [anon_sym_PLUS_EQ] = ACTIONS(7225), + [anon_sym_DASH_EQ] = ACTIONS(7225), + [anon_sym_LT_LT_EQ] = ACTIONS(7225), + [anon_sym_GT_GT_EQ] = ACTIONS(7225), + [anon_sym_AMP_EQ] = ACTIONS(7225), + [anon_sym_CARET_EQ] = ACTIONS(7225), + [anon_sym_PIPE_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7225), + [anon_sym_and] = ACTIONS(7225), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7225), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7223), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + }, + [STATE(3540)] = { + [sym_attribute_specifier] = STATE(4098), + [sym_field_declaration_list] = STATE(3916), + [sym_virtual_specifier] = STATE(9612), + [sym_base_class_clause] = STATE(10573), + [sym_identifier] = ACTIONS(7235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), + [anon_sym_COMMA] = ACTIONS(7237), + [aux_sym_preproc_if_token2] = ACTIONS(7237), + [aux_sym_preproc_else_token1] = ACTIONS(7237), + [aux_sym_preproc_elif_token1] = ACTIONS(7235), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7237), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7237), + [anon_sym_LPAREN2] = ACTIONS(7237), + [anon_sym_DASH] = ACTIONS(7235), + [anon_sym_PLUS] = ACTIONS(7235), + [anon_sym_STAR] = ACTIONS(7237), + [anon_sym_SLASH] = ACTIONS(7235), + [anon_sym_PERCENT] = ACTIONS(7237), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_AMP_AMP] = ACTIONS(7237), + [anon_sym_PIPE] = ACTIONS(7235), + [anon_sym_CARET] = ACTIONS(7237), + [anon_sym_AMP] = ACTIONS(7235), + [anon_sym_EQ_EQ] = ACTIONS(7237), + [anon_sym_BANG_EQ] = ACTIONS(7237), + [anon_sym_GT] = ACTIONS(7235), + [anon_sym_GT_EQ] = ACTIONS(7237), + [anon_sym_LT_EQ] = ACTIONS(7235), + [anon_sym_LT] = ACTIONS(7235), + [anon_sym_LT_LT] = ACTIONS(7237), + [anon_sym_GT_GT] = ACTIONS(7237), + [anon_sym___extension__] = ACTIONS(7235), + [anon_sym___attribute__] = ACTIONS(9244), + [anon_sym___attribute] = ACTIONS(9244), + [anon_sym_COLON] = ACTIONS(8156), + [anon_sym_LBRACE] = ACTIONS(9246), + [anon_sym_LBRACK] = ACTIONS(7237), + [anon_sym_const] = ACTIONS(7235), + [anon_sym_constexpr] = ACTIONS(7235), + [anon_sym_volatile] = ACTIONS(7235), + [anon_sym_restrict] = ACTIONS(7235), + [anon_sym___restrict__] = ACTIONS(7235), + [anon_sym__Atomic] = ACTIONS(7235), + [anon_sym__Noreturn] = ACTIONS(7235), + [anon_sym_noreturn] = ACTIONS(7235), + [anon_sym__Nonnull] = ACTIONS(7235), + [anon_sym_mutable] = ACTIONS(7235), + [anon_sym_constinit] = ACTIONS(7235), + [anon_sym_consteval] = ACTIONS(7235), + [anon_sym_alignas] = ACTIONS(7235), + [anon_sym__Alignas] = ACTIONS(7235), + [anon_sym_QMARK] = ACTIONS(7237), + [anon_sym_LT_EQ_GT] = ACTIONS(7237), + [anon_sym_or] = ACTIONS(7235), + [anon_sym_and] = ACTIONS(7235), + [anon_sym_bitor] = ACTIONS(7235), + [anon_sym_xor] = ACTIONS(7235), + [anon_sym_bitand] = ACTIONS(7235), + [anon_sym_not_eq] = ACTIONS(7235), + [anon_sym_DASH_DASH] = ACTIONS(7237), + [anon_sym_PLUS_PLUS] = ACTIONS(7237), + [anon_sym_DOT] = ACTIONS(7235), + [anon_sym_DOT_STAR] = ACTIONS(7237), + [anon_sym_DASH_GT] = ACTIONS(7237), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7245), + [anon_sym_override] = ACTIONS(7245), + [anon_sym_requires] = ACTIONS(7235), + }, + [STATE(3541)] = { + [sym__abstract_declarator] = STATE(6366), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3520), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2275), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3520), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), + [anon_sym_COMMA] = ACTIONS(7391), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7393), + [anon_sym_PLUS] = ACTIONS(7393), + [anon_sym_STAR] = ACTIONS(8385), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_PERCENT] = ACTIONS(7391), + [anon_sym_PIPE_PIPE] = ACTIONS(7391), + [anon_sym_AMP_AMP] = ACTIONS(8387), + [anon_sym_PIPE] = ACTIONS(7393), + [anon_sym_CARET] = ACTIONS(7391), + [anon_sym_AMP] = ACTIONS(8389), + [anon_sym_EQ_EQ] = ACTIONS(7391), + [anon_sym_BANG_EQ] = ACTIONS(7391), + [anon_sym_GT] = ACTIONS(7393), + [anon_sym_GT_EQ] = ACTIONS(7391), + [anon_sym_LT_EQ] = ACTIONS(7393), + [anon_sym_LT] = ACTIONS(7393), + [anon_sym_LT_LT] = ACTIONS(7391), + [anon_sym_GT_GT] = ACTIONS(7391), + [anon_sym_SEMI] = ACTIONS(7391), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym___attribute__] = ACTIONS(7391), + [anon_sym___attribute] = ACTIONS(7393), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(7391), + [anon_sym_LT_EQ_GT] = ACTIONS(7391), + [anon_sym_or] = ACTIONS(7391), + [anon_sym_and] = ACTIONS(7391), + [anon_sym_bitor] = ACTIONS(7391), + [anon_sym_xor] = ACTIONS(7391), + [anon_sym_bitand] = ACTIONS(7391), + [anon_sym_not_eq] = ACTIONS(7391), + [anon_sym_DASH_DASH] = ACTIONS(7391), + [anon_sym_PLUS_PLUS] = ACTIONS(7391), + [anon_sym_DOT] = ACTIONS(7393), + [anon_sym_DOT_STAR] = ACTIONS(7391), + [anon_sym_DASH_GT] = ACTIONS(7391), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7391), + [anon_sym_override] = ACTIONS(7391), + [anon_sym_requires] = ACTIONS(7391), + }, + [STATE(3542)] = { + [sym_identifier] = ACTIONS(5589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5591), + [anon_sym_COMMA] = ACTIONS(5591), + [anon_sym_RPAREN] = ACTIONS(5591), + [aux_sym_preproc_if_token2] = ACTIONS(5591), + [aux_sym_preproc_else_token1] = ACTIONS(5591), + [aux_sym_preproc_elif_token1] = ACTIONS(5589), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5591), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5591), + [anon_sym_LPAREN2] = ACTIONS(5591), + [anon_sym_DASH] = ACTIONS(5589), + [anon_sym_PLUS] = ACTIONS(5589), + [anon_sym_STAR] = ACTIONS(5589), + [anon_sym_SLASH] = ACTIONS(5589), + [anon_sym_PERCENT] = ACTIONS(5589), + [anon_sym_PIPE_PIPE] = ACTIONS(5591), + [anon_sym_AMP_AMP] = ACTIONS(5591), + [anon_sym_PIPE] = ACTIONS(5589), + [anon_sym_CARET] = ACTIONS(5589), + [anon_sym_AMP] = ACTIONS(5589), + [anon_sym_EQ_EQ] = ACTIONS(5591), + [anon_sym_BANG_EQ] = ACTIONS(5591), + [anon_sym_GT] = ACTIONS(5589), + [anon_sym_GT_EQ] = ACTIONS(5591), + [anon_sym_LT_EQ] = ACTIONS(5589), + [anon_sym_LT] = ACTIONS(5589), + [anon_sym_LT_LT] = ACTIONS(5589), + [anon_sym_GT_GT] = ACTIONS(5589), + [anon_sym_SEMI] = ACTIONS(5591), + [anon_sym___attribute__] = ACTIONS(5589), + [anon_sym___attribute] = ACTIONS(5589), + [anon_sym_COLON] = ACTIONS(5589), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5591), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5591), + [anon_sym_RBRACE] = ACTIONS(5591), + [anon_sym_LBRACK] = ACTIONS(5589), + [anon_sym_EQ] = ACTIONS(5589), + [anon_sym_QMARK] = ACTIONS(5591), + [anon_sym_STAR_EQ] = ACTIONS(5591), + [anon_sym_SLASH_EQ] = ACTIONS(5591), + [anon_sym_PERCENT_EQ] = ACTIONS(5591), + [anon_sym_PLUS_EQ] = ACTIONS(5591), + [anon_sym_DASH_EQ] = ACTIONS(5591), + [anon_sym_LT_LT_EQ] = ACTIONS(5591), + [anon_sym_GT_GT_EQ] = ACTIONS(5591), + [anon_sym_AMP_EQ] = ACTIONS(5591), + [anon_sym_CARET_EQ] = ACTIONS(5591), + [anon_sym_PIPE_EQ] = ACTIONS(5591), + [anon_sym_and_eq] = ACTIONS(5589), + [anon_sym_or_eq] = ACTIONS(5589), + [anon_sym_xor_eq] = ACTIONS(5589), + [anon_sym_LT_EQ_GT] = ACTIONS(5591), + [anon_sym_or] = ACTIONS(5589), + [anon_sym_and] = ACTIONS(5589), + [anon_sym_bitor] = ACTIONS(5589), + [anon_sym_xor] = ACTIONS(5589), + [anon_sym_bitand] = ACTIONS(5589), + [anon_sym_not_eq] = ACTIONS(5589), + [anon_sym_DASH_DASH] = ACTIONS(5591), + [anon_sym_PLUS_PLUS] = ACTIONS(5591), + [anon_sym_DOT] = ACTIONS(5589), + [anon_sym_DOT_STAR] = ACTIONS(5591), + [anon_sym_DASH_GT] = ACTIONS(5591), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(5589), + [anon_sym_override] = ACTIONS(5589), + [anon_sym_requires] = ACTIONS(5589), + [anon_sym_COLON_RBRACK] = ACTIONS(5591), + }, + [STATE(3543)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7629), + [anon_sym_COMMA] = ACTIONS(7629), + [anon_sym_RPAREN] = ACTIONS(7629), + [anon_sym_LPAREN2] = ACTIONS(7629), + [anon_sym_DASH] = ACTIONS(7627), + [anon_sym_PLUS] = ACTIONS(7627), + [anon_sym_STAR] = ACTIONS(7627), + [anon_sym_SLASH] = ACTIONS(7627), + [anon_sym_PERCENT] = ACTIONS(7627), + [anon_sym_PIPE_PIPE] = ACTIONS(7629), + [anon_sym_AMP_AMP] = ACTIONS(7629), + [anon_sym_PIPE] = ACTIONS(7627), + [anon_sym_CARET] = ACTIONS(7627), + [anon_sym_AMP] = ACTIONS(7627), + [anon_sym_EQ_EQ] = ACTIONS(7629), + [anon_sym_BANG_EQ] = ACTIONS(7629), + [anon_sym_GT] = ACTIONS(7627), + [anon_sym_GT_EQ] = ACTIONS(7629), + [anon_sym_LT_EQ] = ACTIONS(7627), + [anon_sym_LT] = ACTIONS(7627), + [anon_sym_LT_LT] = ACTIONS(7627), + [anon_sym_GT_GT] = ACTIONS(7627), + [anon_sym___extension__] = ACTIONS(7629), + [anon_sym_LBRACE] = ACTIONS(7629), + [anon_sym_LBRACK] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(7627), + [anon_sym_const] = ACTIONS(7627), + [anon_sym_constexpr] = ACTIONS(7629), + [anon_sym_volatile] = ACTIONS(7629), + [anon_sym_restrict] = ACTIONS(7629), + [anon_sym___restrict__] = ACTIONS(7629), + [anon_sym__Atomic] = ACTIONS(7629), + [anon_sym__Noreturn] = ACTIONS(7629), + [anon_sym_noreturn] = ACTIONS(7629), + [anon_sym__Nonnull] = ACTIONS(7629), + [anon_sym_mutable] = ACTIONS(7629), + [anon_sym_constinit] = ACTIONS(7629), + [anon_sym_consteval] = ACTIONS(7629), + [anon_sym_alignas] = ACTIONS(7629), + [anon_sym__Alignas] = ACTIONS(7629), + [anon_sym_QMARK] = ACTIONS(7629), + [anon_sym_STAR_EQ] = ACTIONS(7629), + [anon_sym_SLASH_EQ] = ACTIONS(7629), + [anon_sym_PERCENT_EQ] = ACTIONS(7629), + [anon_sym_PLUS_EQ] = ACTIONS(7629), + [anon_sym_DASH_EQ] = ACTIONS(7629), + [anon_sym_LT_LT_EQ] = ACTIONS(7629), + [anon_sym_GT_GT_EQ] = ACTIONS(7629), + [anon_sym_AMP_EQ] = ACTIONS(7629), + [anon_sym_CARET_EQ] = ACTIONS(7629), + [anon_sym_PIPE_EQ] = ACTIONS(7629), + [anon_sym_LT_EQ_GT] = ACTIONS(7629), + [anon_sym_or] = ACTIONS(7629), + [anon_sym_and] = ACTIONS(7629), + [anon_sym_bitor] = ACTIONS(7629), + [anon_sym_xor] = ACTIONS(7629), + [anon_sym_bitand] = ACTIONS(7629), + [anon_sym_not_eq] = ACTIONS(7629), + [anon_sym_DASH_DASH] = ACTIONS(7629), + [anon_sym_PLUS_PLUS] = ACTIONS(7629), + [anon_sym_DOT] = ACTIONS(7627), + [anon_sym_DOT_STAR] = ACTIONS(7629), + [anon_sym_DASH_GT] = ACTIONS(7627), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7629), + [anon_sym_override] = ACTIONS(7629), + [anon_sym_requires] = ACTIONS(7629), + [anon_sym_DASH_GT_STAR] = ACTIONS(7629), + }, + [STATE(3544)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7645), + [anon_sym_COMMA] = ACTIONS(7645), + [anon_sym_RPAREN] = ACTIONS(7645), + [anon_sym_LPAREN2] = ACTIONS(7645), + [anon_sym_DASH] = ACTIONS(7643), + [anon_sym_PLUS] = ACTIONS(7643), + [anon_sym_STAR] = ACTIONS(7643), + [anon_sym_SLASH] = ACTIONS(7643), + [anon_sym_PERCENT] = ACTIONS(7643), + [anon_sym_PIPE_PIPE] = ACTIONS(7645), + [anon_sym_AMP_AMP] = ACTIONS(7645), + [anon_sym_PIPE] = ACTIONS(7643), + [anon_sym_CARET] = ACTIONS(7643), + [anon_sym_AMP] = ACTIONS(7643), + [anon_sym_EQ_EQ] = ACTIONS(7645), + [anon_sym_BANG_EQ] = ACTIONS(7645), + [anon_sym_GT] = ACTIONS(7643), + [anon_sym_GT_EQ] = ACTIONS(7645), + [anon_sym_LT_EQ] = ACTIONS(7643), + [anon_sym_LT] = ACTIONS(7643), + [anon_sym_LT_LT] = ACTIONS(7643), + [anon_sym_GT_GT] = ACTIONS(7643), + [anon_sym___extension__] = ACTIONS(7645), + [anon_sym_LBRACE] = ACTIONS(7645), + [anon_sym_LBRACK] = ACTIONS(7645), + [anon_sym_EQ] = ACTIONS(7643), + [anon_sym_const] = ACTIONS(7643), + [anon_sym_constexpr] = ACTIONS(7645), + [anon_sym_volatile] = ACTIONS(7645), + [anon_sym_restrict] = ACTIONS(7645), + [anon_sym___restrict__] = ACTIONS(7645), + [anon_sym__Atomic] = ACTIONS(7645), + [anon_sym__Noreturn] = ACTIONS(7645), + [anon_sym_noreturn] = ACTIONS(7645), + [anon_sym__Nonnull] = ACTIONS(7645), + [anon_sym_mutable] = ACTIONS(7645), + [anon_sym_constinit] = ACTIONS(7645), + [anon_sym_consteval] = ACTIONS(7645), + [anon_sym_alignas] = ACTIONS(7645), + [anon_sym__Alignas] = ACTIONS(7645), + [anon_sym_QMARK] = ACTIONS(7645), + [anon_sym_STAR_EQ] = ACTIONS(7645), + [anon_sym_SLASH_EQ] = ACTIONS(7645), + [anon_sym_PERCENT_EQ] = ACTIONS(7645), + [anon_sym_PLUS_EQ] = ACTIONS(7645), + [anon_sym_DASH_EQ] = ACTIONS(7645), + [anon_sym_LT_LT_EQ] = ACTIONS(7645), + [anon_sym_GT_GT_EQ] = ACTIONS(7645), + [anon_sym_AMP_EQ] = ACTIONS(7645), + [anon_sym_CARET_EQ] = ACTIONS(7645), + [anon_sym_PIPE_EQ] = ACTIONS(7645), + [anon_sym_LT_EQ_GT] = ACTIONS(7645), + [anon_sym_or] = ACTIONS(7645), + [anon_sym_and] = ACTIONS(7645), + [anon_sym_bitor] = ACTIONS(7645), + [anon_sym_xor] = ACTIONS(7645), + [anon_sym_bitand] = ACTIONS(7645), + [anon_sym_not_eq] = ACTIONS(7645), + [anon_sym_DASH_DASH] = ACTIONS(7645), + [anon_sym_PLUS_PLUS] = ACTIONS(7645), + [anon_sym_DOT] = ACTIONS(7643), + [anon_sym_DOT_STAR] = ACTIONS(7645), + [anon_sym_DASH_GT] = ACTIONS(7643), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7645), + [anon_sym_override] = ACTIONS(7645), + [anon_sym_requires] = ACTIONS(7645), + [anon_sym_DASH_GT_STAR] = ACTIONS(7645), + }, + [STATE(3545)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), + [anon_sym_COMMA] = ACTIONS(7563), + [anon_sym_RPAREN] = ACTIONS(7563), + [anon_sym_LPAREN2] = ACTIONS(7563), + [anon_sym_DASH] = ACTIONS(7561), + [anon_sym_PLUS] = ACTIONS(7561), + [anon_sym_STAR] = ACTIONS(7561), + [anon_sym_SLASH] = ACTIONS(7561), + [anon_sym_PERCENT] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_AMP_AMP] = ACTIONS(7563), + [anon_sym_PIPE] = ACTIONS(7561), + [anon_sym_CARET] = ACTIONS(7561), + [anon_sym_AMP] = ACTIONS(7561), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_GT] = ACTIONS(7561), + [anon_sym_GT_EQ] = ACTIONS(7563), + [anon_sym_LT_EQ] = ACTIONS(7561), + [anon_sym_LT] = ACTIONS(7561), + [anon_sym_LT_LT] = ACTIONS(7561), + [anon_sym_GT_GT] = ACTIONS(7561), + [anon_sym___extension__] = ACTIONS(7563), + [anon_sym_LBRACE] = ACTIONS(7563), + [anon_sym_LBRACK] = ACTIONS(7563), + [anon_sym_EQ] = ACTIONS(7561), + [anon_sym_const] = ACTIONS(7561), + [anon_sym_constexpr] = ACTIONS(7563), + [anon_sym_volatile] = ACTIONS(7563), + [anon_sym_restrict] = ACTIONS(7563), + [anon_sym___restrict__] = ACTIONS(7563), + [anon_sym__Atomic] = ACTIONS(7563), + [anon_sym__Noreturn] = ACTIONS(7563), + [anon_sym_noreturn] = ACTIONS(7563), + [anon_sym__Nonnull] = ACTIONS(7563), + [anon_sym_mutable] = ACTIONS(7563), + [anon_sym_constinit] = ACTIONS(7563), + [anon_sym_consteval] = ACTIONS(7563), + [anon_sym_alignas] = ACTIONS(7563), + [anon_sym__Alignas] = ACTIONS(7563), + [anon_sym_QMARK] = ACTIONS(7563), + [anon_sym_STAR_EQ] = ACTIONS(7563), + [anon_sym_SLASH_EQ] = ACTIONS(7563), + [anon_sym_PERCENT_EQ] = ACTIONS(7563), + [anon_sym_PLUS_EQ] = ACTIONS(7563), + [anon_sym_DASH_EQ] = ACTIONS(7563), + [anon_sym_LT_LT_EQ] = ACTIONS(7563), + [anon_sym_GT_GT_EQ] = ACTIONS(7563), + [anon_sym_AMP_EQ] = ACTIONS(7563), + [anon_sym_CARET_EQ] = ACTIONS(7563), + [anon_sym_PIPE_EQ] = ACTIONS(7563), + [anon_sym_LT_EQ_GT] = ACTIONS(7563), + [anon_sym_or] = ACTIONS(7563), + [anon_sym_and] = ACTIONS(7563), + [anon_sym_bitor] = ACTIONS(7563), + [anon_sym_xor] = ACTIONS(7563), + [anon_sym_bitand] = ACTIONS(7563), + [anon_sym_not_eq] = ACTIONS(7563), + [anon_sym_DASH_DASH] = ACTIONS(7563), + [anon_sym_PLUS_PLUS] = ACTIONS(7563), + [anon_sym_DOT] = ACTIONS(7561), + [anon_sym_DOT_STAR] = ACTIONS(7563), + [anon_sym_DASH_GT] = ACTIONS(7561), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7563), + [anon_sym_override] = ACTIONS(7563), + [anon_sym_requires] = ACTIONS(7563), + [anon_sym_DASH_GT_STAR] = ACTIONS(7563), + }, + [STATE(3546)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7601), + [anon_sym_COMMA] = ACTIONS(7601), + [anon_sym_RPAREN] = ACTIONS(7601), + [anon_sym_LPAREN2] = ACTIONS(7601), + [anon_sym_DASH] = ACTIONS(7599), + [anon_sym_PLUS] = ACTIONS(7599), + [anon_sym_STAR] = ACTIONS(7599), + [anon_sym_SLASH] = ACTIONS(7599), + [anon_sym_PERCENT] = ACTIONS(7599), + [anon_sym_PIPE_PIPE] = ACTIONS(7601), + [anon_sym_AMP_AMP] = ACTIONS(7601), + [anon_sym_PIPE] = ACTIONS(7599), + [anon_sym_CARET] = ACTIONS(7599), + [anon_sym_AMP] = ACTIONS(7599), + [anon_sym_EQ_EQ] = ACTIONS(7601), + [anon_sym_BANG_EQ] = ACTIONS(7601), + [anon_sym_GT] = ACTIONS(7599), + [anon_sym_GT_EQ] = ACTIONS(7601), + [anon_sym_LT_EQ] = ACTIONS(7599), + [anon_sym_LT] = ACTIONS(7599), + [anon_sym_LT_LT] = ACTIONS(7599), + [anon_sym_GT_GT] = ACTIONS(7599), + [anon_sym___extension__] = ACTIONS(7601), + [anon_sym_LBRACE] = ACTIONS(7601), + [anon_sym_LBRACK] = ACTIONS(7601), + [anon_sym_EQ] = ACTIONS(7599), + [anon_sym_const] = ACTIONS(7599), + [anon_sym_constexpr] = ACTIONS(7601), + [anon_sym_volatile] = ACTIONS(7601), + [anon_sym_restrict] = ACTIONS(7601), + [anon_sym___restrict__] = ACTIONS(7601), + [anon_sym__Atomic] = ACTIONS(7601), + [anon_sym__Noreturn] = ACTIONS(7601), + [anon_sym_noreturn] = ACTIONS(7601), + [anon_sym__Nonnull] = ACTIONS(7601), + [anon_sym_mutable] = ACTIONS(7601), + [anon_sym_constinit] = ACTIONS(7601), + [anon_sym_consteval] = ACTIONS(7601), + [anon_sym_alignas] = ACTIONS(7601), + [anon_sym__Alignas] = ACTIONS(7601), + [anon_sym_QMARK] = ACTIONS(7601), + [anon_sym_STAR_EQ] = ACTIONS(7601), + [anon_sym_SLASH_EQ] = ACTIONS(7601), + [anon_sym_PERCENT_EQ] = ACTIONS(7601), + [anon_sym_PLUS_EQ] = ACTIONS(7601), + [anon_sym_DASH_EQ] = ACTIONS(7601), + [anon_sym_LT_LT_EQ] = ACTIONS(7601), + [anon_sym_GT_GT_EQ] = ACTIONS(7601), + [anon_sym_AMP_EQ] = ACTIONS(7601), + [anon_sym_CARET_EQ] = ACTIONS(7601), + [anon_sym_PIPE_EQ] = ACTIONS(7601), + [anon_sym_LT_EQ_GT] = ACTIONS(7601), + [anon_sym_or] = ACTIONS(7601), + [anon_sym_and] = ACTIONS(7601), + [anon_sym_bitor] = ACTIONS(7601), + [anon_sym_xor] = ACTIONS(7601), + [anon_sym_bitand] = ACTIONS(7601), + [anon_sym_not_eq] = ACTIONS(7601), + [anon_sym_DASH_DASH] = ACTIONS(7601), + [anon_sym_PLUS_PLUS] = ACTIONS(7601), + [anon_sym_DOT] = ACTIONS(7599), + [anon_sym_DOT_STAR] = ACTIONS(7601), + [anon_sym_DASH_GT] = ACTIONS(7599), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7601), + [anon_sym_override] = ACTIONS(7601), + [anon_sym_requires] = ACTIONS(7601), + [anon_sym_DASH_GT_STAR] = ACTIONS(7601), + }, + [STATE(3547)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7605), + [anon_sym_COMMA] = ACTIONS(7605), + [anon_sym_RPAREN] = ACTIONS(7605), + [anon_sym_LPAREN2] = ACTIONS(7605), + [anon_sym_DASH] = ACTIONS(7603), + [anon_sym_PLUS] = ACTIONS(7603), + [anon_sym_STAR] = ACTIONS(7603), + [anon_sym_SLASH] = ACTIONS(7603), + [anon_sym_PERCENT] = ACTIONS(7603), + [anon_sym_PIPE_PIPE] = ACTIONS(7605), + [anon_sym_AMP_AMP] = ACTIONS(7605), + [anon_sym_PIPE] = ACTIONS(7603), + [anon_sym_CARET] = ACTIONS(7603), + [anon_sym_AMP] = ACTIONS(7603), + [anon_sym_EQ_EQ] = ACTIONS(7605), + [anon_sym_BANG_EQ] = ACTIONS(7605), + [anon_sym_GT] = ACTIONS(7603), + [anon_sym_GT_EQ] = ACTIONS(7605), + [anon_sym_LT_EQ] = ACTIONS(7603), + [anon_sym_LT] = ACTIONS(7603), + [anon_sym_LT_LT] = ACTIONS(7603), + [anon_sym_GT_GT] = ACTIONS(7603), + [anon_sym___extension__] = ACTIONS(7605), + [anon_sym_LBRACE] = ACTIONS(7605), + [anon_sym_LBRACK] = ACTIONS(7605), + [anon_sym_EQ] = ACTIONS(7603), + [anon_sym_const] = ACTIONS(7603), + [anon_sym_constexpr] = ACTIONS(7605), + [anon_sym_volatile] = ACTIONS(7605), + [anon_sym_restrict] = ACTIONS(7605), + [anon_sym___restrict__] = ACTIONS(7605), + [anon_sym__Atomic] = ACTIONS(7605), + [anon_sym__Noreturn] = ACTIONS(7605), + [anon_sym_noreturn] = ACTIONS(7605), + [anon_sym__Nonnull] = ACTIONS(7605), + [anon_sym_mutable] = ACTIONS(7605), + [anon_sym_constinit] = ACTIONS(7605), + [anon_sym_consteval] = ACTIONS(7605), + [anon_sym_alignas] = ACTIONS(7605), + [anon_sym__Alignas] = ACTIONS(7605), + [anon_sym_QMARK] = ACTIONS(7605), + [anon_sym_STAR_EQ] = ACTIONS(7605), + [anon_sym_SLASH_EQ] = ACTIONS(7605), + [anon_sym_PERCENT_EQ] = ACTIONS(7605), + [anon_sym_PLUS_EQ] = ACTIONS(7605), + [anon_sym_DASH_EQ] = ACTIONS(7605), + [anon_sym_LT_LT_EQ] = ACTIONS(7605), + [anon_sym_GT_GT_EQ] = ACTIONS(7605), + [anon_sym_AMP_EQ] = ACTIONS(7605), + [anon_sym_CARET_EQ] = ACTIONS(7605), + [anon_sym_PIPE_EQ] = ACTIONS(7605), + [anon_sym_LT_EQ_GT] = ACTIONS(7605), + [anon_sym_or] = ACTIONS(7605), + [anon_sym_and] = ACTIONS(7605), + [anon_sym_bitor] = ACTIONS(7605), + [anon_sym_xor] = ACTIONS(7605), + [anon_sym_bitand] = ACTIONS(7605), + [anon_sym_not_eq] = ACTIONS(7605), + [anon_sym_DASH_DASH] = ACTIONS(7605), + [anon_sym_PLUS_PLUS] = ACTIONS(7605), + [anon_sym_DOT] = ACTIONS(7603), + [anon_sym_DOT_STAR] = ACTIONS(7605), + [anon_sym_DASH_GT] = ACTIONS(7603), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7605), + [anon_sym_override] = ACTIONS(7605), + [anon_sym_requires] = ACTIONS(7605), + [anon_sym_DASH_GT_STAR] = ACTIONS(7605), + }, + [STATE(3548)] = { + [sym_argument_list] = STATE(3939), + [sym_initializer_list] = STATE(3939), + [sym_new_declarator] = STATE(3678), + [sym_identifier] = ACTIONS(9248), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9250), + [anon_sym_COMMA] = ACTIONS(9250), + [anon_sym_RPAREN] = ACTIONS(9250), + [aux_sym_preproc_if_token2] = ACTIONS(9250), + [aux_sym_preproc_else_token1] = ACTIONS(9250), + [aux_sym_preproc_elif_token1] = ACTIONS(9248), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9250), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9250), + [anon_sym_LPAREN2] = ACTIONS(9230), + [anon_sym_DASH] = ACTIONS(9248), + [anon_sym_PLUS] = ACTIONS(9248), + [anon_sym_STAR] = ACTIONS(9248), + [anon_sym_SLASH] = ACTIONS(9248), + [anon_sym_PERCENT] = ACTIONS(9248), + [anon_sym_PIPE_PIPE] = ACTIONS(9250), + [anon_sym_AMP_AMP] = ACTIONS(9250), + [anon_sym_PIPE] = ACTIONS(9248), + [anon_sym_CARET] = ACTIONS(9248), + [anon_sym_AMP] = ACTIONS(9248), + [anon_sym_EQ_EQ] = ACTIONS(9250), + [anon_sym_BANG_EQ] = ACTIONS(9250), + [anon_sym_GT] = ACTIONS(9248), + [anon_sym_GT_EQ] = ACTIONS(9250), + [anon_sym_LT_EQ] = ACTIONS(9248), + [anon_sym_LT] = ACTIONS(9248), + [anon_sym_LT_LT] = ACTIONS(9248), + [anon_sym_GT_GT] = ACTIONS(9248), + [anon_sym_SEMI] = ACTIONS(9250), + [anon_sym___attribute__] = ACTIONS(9248), + [anon_sym___attribute] = ACTIONS(9248), + [anon_sym_COLON] = ACTIONS(9248), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9250), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(9250), + [anon_sym_LBRACK] = ACTIONS(9232), + [anon_sym_EQ] = ACTIONS(9248), + [anon_sym_QMARK] = ACTIONS(9250), + [anon_sym_STAR_EQ] = ACTIONS(9250), + [anon_sym_SLASH_EQ] = ACTIONS(9250), + [anon_sym_PERCENT_EQ] = ACTIONS(9250), + [anon_sym_PLUS_EQ] = ACTIONS(9250), + [anon_sym_DASH_EQ] = ACTIONS(9250), + [anon_sym_LT_LT_EQ] = ACTIONS(9250), + [anon_sym_GT_GT_EQ] = ACTIONS(9250), + [anon_sym_AMP_EQ] = ACTIONS(9250), + [anon_sym_CARET_EQ] = ACTIONS(9250), + [anon_sym_PIPE_EQ] = ACTIONS(9250), + [anon_sym_and_eq] = ACTIONS(9248), + [anon_sym_or_eq] = ACTIONS(9248), + [anon_sym_xor_eq] = ACTIONS(9248), + [anon_sym_LT_EQ_GT] = ACTIONS(9250), + [anon_sym_or] = ACTIONS(9248), + [anon_sym_and] = ACTIONS(9248), + [anon_sym_bitor] = ACTIONS(9248), + [anon_sym_xor] = ACTIONS(9248), + [anon_sym_bitand] = ACTIONS(9248), + [anon_sym_not_eq] = ACTIONS(9248), + [anon_sym_DASH_DASH] = ACTIONS(9250), + [anon_sym_PLUS_PLUS] = ACTIONS(9250), + [anon_sym_DOT] = ACTIONS(9248), + [anon_sym_DOT_STAR] = ACTIONS(9250), + [anon_sym_DASH_GT] = ACTIONS(9250), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9250), + }, + [STATE(3549)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), + [anon_sym_COMMA] = ACTIONS(7563), + [anon_sym_RPAREN] = ACTIONS(7563), + [anon_sym_LPAREN2] = ACTIONS(7563), + [anon_sym_DASH] = ACTIONS(7561), + [anon_sym_PLUS] = ACTIONS(7561), + [anon_sym_STAR] = ACTIONS(7561), + [anon_sym_SLASH] = ACTIONS(7561), + [anon_sym_PERCENT] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_AMP_AMP] = ACTIONS(7563), + [anon_sym_PIPE] = ACTIONS(7561), + [anon_sym_CARET] = ACTIONS(7561), + [anon_sym_AMP] = ACTIONS(7561), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_GT] = ACTIONS(7561), + [anon_sym_GT_EQ] = ACTIONS(7563), + [anon_sym_LT_EQ] = ACTIONS(7561), + [anon_sym_LT] = ACTIONS(7561), + [anon_sym_LT_LT] = ACTIONS(7561), + [anon_sym_GT_GT] = ACTIONS(7561), + [anon_sym___extension__] = ACTIONS(7563), + [anon_sym_LBRACE] = ACTIONS(7563), + [anon_sym_LBRACK] = ACTIONS(7563), + [anon_sym_EQ] = ACTIONS(7561), + [anon_sym_const] = ACTIONS(7561), + [anon_sym_constexpr] = ACTIONS(7563), + [anon_sym_volatile] = ACTIONS(7563), + [anon_sym_restrict] = ACTIONS(7563), + [anon_sym___restrict__] = ACTIONS(7563), + [anon_sym__Atomic] = ACTIONS(7563), + [anon_sym__Noreturn] = ACTIONS(7563), + [anon_sym_noreturn] = ACTIONS(7563), + [anon_sym__Nonnull] = ACTIONS(7563), + [anon_sym_mutable] = ACTIONS(7563), + [anon_sym_constinit] = ACTIONS(7563), + [anon_sym_consteval] = ACTIONS(7563), + [anon_sym_alignas] = ACTIONS(7563), + [anon_sym__Alignas] = ACTIONS(7563), + [anon_sym_QMARK] = ACTIONS(7563), + [anon_sym_STAR_EQ] = ACTIONS(7563), + [anon_sym_SLASH_EQ] = ACTIONS(7563), + [anon_sym_PERCENT_EQ] = ACTIONS(7563), + [anon_sym_PLUS_EQ] = ACTIONS(7563), + [anon_sym_DASH_EQ] = ACTIONS(7563), + [anon_sym_LT_LT_EQ] = ACTIONS(7563), + [anon_sym_GT_GT_EQ] = ACTIONS(7563), + [anon_sym_AMP_EQ] = ACTIONS(7563), + [anon_sym_CARET_EQ] = ACTIONS(7563), + [anon_sym_PIPE_EQ] = ACTIONS(7563), + [anon_sym_LT_EQ_GT] = ACTIONS(7563), + [anon_sym_or] = ACTIONS(7563), + [anon_sym_and] = ACTIONS(7563), + [anon_sym_bitor] = ACTIONS(7563), + [anon_sym_xor] = ACTIONS(7563), + [anon_sym_bitand] = ACTIONS(7563), + [anon_sym_not_eq] = ACTIONS(7563), + [anon_sym_DASH_DASH] = ACTIONS(7563), + [anon_sym_PLUS_PLUS] = ACTIONS(7563), + [anon_sym_DOT] = ACTIONS(7561), + [anon_sym_DOT_STAR] = ACTIONS(7563), + [anon_sym_DASH_GT] = ACTIONS(7561), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7563), + [anon_sym_override] = ACTIONS(7563), + [anon_sym_requires] = ACTIONS(7563), + [anon_sym_DASH_GT_STAR] = ACTIONS(7563), + }, + [STATE(3550)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), + [anon_sym_COMMA] = ACTIONS(7563), + [anon_sym_RPAREN] = ACTIONS(7563), + [anon_sym_LPAREN2] = ACTIONS(7563), + [anon_sym_DASH] = ACTIONS(7561), + [anon_sym_PLUS] = ACTIONS(7561), + [anon_sym_STAR] = ACTIONS(7561), + [anon_sym_SLASH] = ACTIONS(7561), + [anon_sym_PERCENT] = ACTIONS(7561), + [anon_sym_PIPE_PIPE] = ACTIONS(7563), + [anon_sym_AMP_AMP] = ACTIONS(7563), + [anon_sym_PIPE] = ACTIONS(7561), + [anon_sym_CARET] = ACTIONS(7561), + [anon_sym_AMP] = ACTIONS(7561), + [anon_sym_EQ_EQ] = ACTIONS(7563), + [anon_sym_BANG_EQ] = ACTIONS(7563), + [anon_sym_GT] = ACTIONS(7561), + [anon_sym_GT_EQ] = ACTIONS(7563), + [anon_sym_LT_EQ] = ACTIONS(7561), + [anon_sym_LT] = ACTIONS(7561), + [anon_sym_LT_LT] = ACTIONS(7561), + [anon_sym_GT_GT] = ACTIONS(7561), + [anon_sym___extension__] = ACTIONS(7563), + [anon_sym_LBRACE] = ACTIONS(7563), + [anon_sym_LBRACK] = ACTIONS(7563), + [anon_sym_EQ] = ACTIONS(7561), + [anon_sym_const] = ACTIONS(7561), + [anon_sym_constexpr] = ACTIONS(7563), + [anon_sym_volatile] = ACTIONS(7563), + [anon_sym_restrict] = ACTIONS(7563), + [anon_sym___restrict__] = ACTIONS(7563), + [anon_sym__Atomic] = ACTIONS(7563), + [anon_sym__Noreturn] = ACTIONS(7563), + [anon_sym_noreturn] = ACTIONS(7563), + [anon_sym__Nonnull] = ACTIONS(7563), + [anon_sym_mutable] = ACTIONS(7563), + [anon_sym_constinit] = ACTIONS(7563), + [anon_sym_consteval] = ACTIONS(7563), + [anon_sym_alignas] = ACTIONS(7563), + [anon_sym__Alignas] = ACTIONS(7563), + [anon_sym_QMARK] = ACTIONS(7563), + [anon_sym_STAR_EQ] = ACTIONS(7563), + [anon_sym_SLASH_EQ] = ACTIONS(7563), + [anon_sym_PERCENT_EQ] = ACTIONS(7563), + [anon_sym_PLUS_EQ] = ACTIONS(7563), + [anon_sym_DASH_EQ] = ACTIONS(7563), + [anon_sym_LT_LT_EQ] = ACTIONS(7563), + [anon_sym_GT_GT_EQ] = ACTIONS(7563), + [anon_sym_AMP_EQ] = ACTIONS(7563), + [anon_sym_CARET_EQ] = ACTIONS(7563), + [anon_sym_PIPE_EQ] = ACTIONS(7563), + [anon_sym_LT_EQ_GT] = ACTIONS(7563), + [anon_sym_or] = ACTIONS(7563), + [anon_sym_and] = ACTIONS(7563), + [anon_sym_bitor] = ACTIONS(7563), + [anon_sym_xor] = ACTIONS(7563), + [anon_sym_bitand] = ACTIONS(7563), + [anon_sym_not_eq] = ACTIONS(7563), + [anon_sym_DASH_DASH] = ACTIONS(7563), + [anon_sym_PLUS_PLUS] = ACTIONS(7563), + [anon_sym_DOT] = ACTIONS(7561), + [anon_sym_DOT_STAR] = ACTIONS(7563), + [anon_sym_DASH_GT] = ACTIONS(7561), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7563), + [anon_sym_override] = ACTIONS(7563), + [anon_sym_requires] = ACTIONS(7563), + [anon_sym_DASH_GT_STAR] = ACTIONS(7563), + }, + [STATE(3551)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7709), + [anon_sym_COMMA] = ACTIONS(7709), + [anon_sym_RPAREN] = ACTIONS(7709), + [anon_sym_LPAREN2] = ACTIONS(7709), + [anon_sym_DASH] = ACTIONS(7707), + [anon_sym_PLUS] = ACTIONS(7707), + [anon_sym_STAR] = ACTIONS(7709), + [anon_sym_SLASH] = ACTIONS(7707), + [anon_sym_PERCENT] = ACTIONS(7709), + [anon_sym_PIPE_PIPE] = ACTIONS(7709), + [anon_sym_AMP_AMP] = ACTIONS(7709), + [anon_sym_PIPE] = ACTIONS(7707), + [anon_sym_CARET] = ACTIONS(7709), + [anon_sym_AMP] = ACTIONS(7707), + [anon_sym_EQ_EQ] = ACTIONS(7709), + [anon_sym_BANG_EQ] = ACTIONS(7709), + [anon_sym_GT] = ACTIONS(7707), + [anon_sym_GT_EQ] = ACTIONS(7709), + [anon_sym_LT_EQ] = ACTIONS(7707), + [anon_sym_LT] = ACTIONS(7707), + [anon_sym_LT_LT] = ACTIONS(7709), + [anon_sym_GT_GT] = ACTIONS(7709), + [anon_sym_SEMI] = ACTIONS(7709), + [anon_sym___extension__] = ACTIONS(7709), + [anon_sym___attribute__] = ACTIONS(7709), + [anon_sym___attribute] = ACTIONS(7707), + [anon_sym_COLON] = ACTIONS(7707), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7709), + [anon_sym_LBRACE] = ACTIONS(7709), + [anon_sym_RBRACE] = ACTIONS(7709), + [anon_sym_signed] = ACTIONS(9252), + [anon_sym_unsigned] = ACTIONS(9252), + [anon_sym_long] = ACTIONS(9252), + [anon_sym_short] = ACTIONS(9252), + [anon_sym_LBRACK] = ACTIONS(7709), + [anon_sym_const] = ACTIONS(7707), + [anon_sym_constexpr] = ACTIONS(7709), + [anon_sym_volatile] = ACTIONS(7709), + [anon_sym_restrict] = ACTIONS(7709), + [anon_sym___restrict__] = ACTIONS(7709), + [anon_sym__Atomic] = ACTIONS(7709), + [anon_sym__Noreturn] = ACTIONS(7709), + [anon_sym_noreturn] = ACTIONS(7709), + [anon_sym__Nonnull] = ACTIONS(7709), + [anon_sym_mutable] = ACTIONS(7709), + [anon_sym_constinit] = ACTIONS(7709), + [anon_sym_consteval] = ACTIONS(7709), + [anon_sym_alignas] = ACTIONS(7709), + [anon_sym__Alignas] = ACTIONS(7709), + [anon_sym_QMARK] = ACTIONS(7709), + [anon_sym_LT_EQ_GT] = ACTIONS(7709), + [anon_sym_or] = ACTIONS(7709), + [anon_sym_and] = ACTIONS(7709), + [anon_sym_bitor] = ACTIONS(7709), + [anon_sym_xor] = ACTIONS(7709), + [anon_sym_bitand] = ACTIONS(7709), + [anon_sym_not_eq] = ACTIONS(7709), + [anon_sym_DASH_DASH] = ACTIONS(7709), + [anon_sym_PLUS_PLUS] = ACTIONS(7709), + [anon_sym_DOT] = ACTIONS(7707), + [anon_sym_DOT_STAR] = ACTIONS(7709), + [anon_sym_DASH_GT] = ACTIONS(7709), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7709), + [anon_sym_override] = ACTIONS(7709), + [anon_sym_requires] = ACTIONS(7709), + [anon_sym_COLON_RBRACK] = ACTIONS(7709), + }, + [STATE(3552)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7683), + [anon_sym_COMMA] = ACTIONS(7683), + [anon_sym_RPAREN] = ACTIONS(7683), + [anon_sym_LPAREN2] = ACTIONS(7683), + [anon_sym_DASH] = ACTIONS(7681), + [anon_sym_PLUS] = ACTIONS(7681), + [anon_sym_STAR] = ACTIONS(7683), + [anon_sym_SLASH] = ACTIONS(7681), + [anon_sym_PERCENT] = ACTIONS(7683), + [anon_sym_PIPE_PIPE] = ACTIONS(7683), + [anon_sym_AMP_AMP] = ACTIONS(7683), + [anon_sym_PIPE] = ACTIONS(7681), + [anon_sym_CARET] = ACTIONS(7683), + [anon_sym_AMP] = ACTIONS(7681), + [anon_sym_EQ_EQ] = ACTIONS(7683), + [anon_sym_BANG_EQ] = ACTIONS(7683), + [anon_sym_GT] = ACTIONS(7681), + [anon_sym_GT_EQ] = ACTIONS(7683), + [anon_sym_LT_EQ] = ACTIONS(7681), + [anon_sym_LT] = ACTIONS(7681), + [anon_sym_LT_LT] = ACTIONS(7683), + [anon_sym_GT_GT] = ACTIONS(7683), + [anon_sym_SEMI] = ACTIONS(7683), + [anon_sym___extension__] = ACTIONS(7683), + [anon_sym___attribute__] = ACTIONS(7683), + [anon_sym___attribute] = ACTIONS(7681), + [anon_sym_COLON] = ACTIONS(7681), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7683), + [anon_sym_LBRACE] = ACTIONS(7683), + [anon_sym_RBRACE] = ACTIONS(7683), + [anon_sym_signed] = ACTIONS(9234), + [anon_sym_unsigned] = ACTIONS(9234), + [anon_sym_long] = ACTIONS(9234), + [anon_sym_short] = ACTIONS(9234), + [anon_sym_LBRACK] = ACTIONS(7683), + [anon_sym_const] = ACTIONS(7681), + [anon_sym_constexpr] = ACTIONS(7683), + [anon_sym_volatile] = ACTIONS(7683), + [anon_sym_restrict] = ACTIONS(7683), + [anon_sym___restrict__] = ACTIONS(7683), + [anon_sym__Atomic] = ACTIONS(7683), + [anon_sym__Noreturn] = ACTIONS(7683), + [anon_sym_noreturn] = ACTIONS(7683), + [anon_sym__Nonnull] = ACTIONS(7683), + [anon_sym_mutable] = ACTIONS(7683), + [anon_sym_constinit] = ACTIONS(7683), + [anon_sym_consteval] = ACTIONS(7683), + [anon_sym_alignas] = ACTIONS(7683), + [anon_sym__Alignas] = ACTIONS(7683), + [anon_sym_QMARK] = ACTIONS(7683), + [anon_sym_LT_EQ_GT] = ACTIONS(7683), + [anon_sym_or] = ACTIONS(7683), + [anon_sym_and] = ACTIONS(7683), + [anon_sym_bitor] = ACTIONS(7683), + [anon_sym_xor] = ACTIONS(7683), + [anon_sym_bitand] = ACTIONS(7683), + [anon_sym_not_eq] = ACTIONS(7683), + [anon_sym_DASH_DASH] = ACTIONS(7683), + [anon_sym_PLUS_PLUS] = ACTIONS(7683), + [anon_sym_DOT] = ACTIONS(7681), + [anon_sym_DOT_STAR] = ACTIONS(7683), + [anon_sym_DASH_GT] = ACTIONS(7683), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7683), + [anon_sym_override] = ACTIONS(7683), + [anon_sym_requires] = ACTIONS(7683), + [anon_sym_COLON_RBRACK] = ACTIONS(7683), + }, + [STATE(3553)] = { + [sym_identifier] = ACTIONS(5593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5595), + [anon_sym_COMMA] = ACTIONS(5595), + [anon_sym_RPAREN] = ACTIONS(5595), + [aux_sym_preproc_if_token2] = ACTIONS(5595), + [aux_sym_preproc_else_token1] = ACTIONS(5595), + [aux_sym_preproc_elif_token1] = ACTIONS(5593), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5595), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5595), + [anon_sym_LPAREN2] = ACTIONS(5595), + [anon_sym_DASH] = ACTIONS(5593), + [anon_sym_PLUS] = ACTIONS(5593), + [anon_sym_STAR] = ACTIONS(5593), + [anon_sym_SLASH] = ACTIONS(5593), + [anon_sym_PERCENT] = ACTIONS(5593), + [anon_sym_PIPE_PIPE] = ACTIONS(5595), + [anon_sym_AMP_AMP] = ACTIONS(5595), + [anon_sym_PIPE] = ACTIONS(5593), + [anon_sym_CARET] = ACTIONS(5593), + [anon_sym_AMP] = ACTIONS(5593), + [anon_sym_EQ_EQ] = ACTIONS(5595), + [anon_sym_BANG_EQ] = ACTIONS(5595), + [anon_sym_GT] = ACTIONS(5593), + [anon_sym_GT_EQ] = ACTIONS(5595), + [anon_sym_LT_EQ] = ACTIONS(5593), + [anon_sym_LT] = ACTIONS(5593), + [anon_sym_LT_LT] = ACTIONS(5593), + [anon_sym_GT_GT] = ACTIONS(5593), + [anon_sym_SEMI] = ACTIONS(5595), + [anon_sym___attribute__] = ACTIONS(5593), + [anon_sym___attribute] = ACTIONS(5593), + [anon_sym_COLON] = ACTIONS(5593), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5595), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5595), + [anon_sym_RBRACE] = ACTIONS(5595), + [anon_sym_LBRACK] = ACTIONS(5593), + [anon_sym_EQ] = ACTIONS(5593), + [anon_sym_QMARK] = ACTIONS(5595), + [anon_sym_STAR_EQ] = ACTIONS(5595), + [anon_sym_SLASH_EQ] = ACTIONS(5595), + [anon_sym_PERCENT_EQ] = ACTIONS(5595), + [anon_sym_PLUS_EQ] = ACTIONS(5595), + [anon_sym_DASH_EQ] = ACTIONS(5595), + [anon_sym_LT_LT_EQ] = ACTIONS(5595), + [anon_sym_GT_GT_EQ] = ACTIONS(5595), + [anon_sym_AMP_EQ] = ACTIONS(5595), + [anon_sym_CARET_EQ] = ACTIONS(5595), + [anon_sym_PIPE_EQ] = ACTIONS(5595), + [anon_sym_and_eq] = ACTIONS(5593), + [anon_sym_or_eq] = ACTIONS(5593), + [anon_sym_xor_eq] = ACTIONS(5593), + [anon_sym_LT_EQ_GT] = ACTIONS(5595), + [anon_sym_or] = ACTIONS(5593), + [anon_sym_and] = ACTIONS(5593), + [anon_sym_bitor] = ACTIONS(5593), + [anon_sym_xor] = ACTIONS(5593), + [anon_sym_bitand] = ACTIONS(5593), + [anon_sym_not_eq] = ACTIONS(5593), + [anon_sym_DASH_DASH] = ACTIONS(5595), + [anon_sym_PLUS_PLUS] = ACTIONS(5595), + [anon_sym_DOT] = ACTIONS(5593), + [anon_sym_DOT_STAR] = ACTIONS(5595), + [anon_sym_DASH_GT] = ACTIONS(5595), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(5593), + [anon_sym_override] = ACTIONS(5593), + [anon_sym_requires] = ACTIONS(5593), + [anon_sym_COLON_RBRACK] = ACTIONS(5595), + }, + [STATE(3554)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), + [anon_sym_COMMA] = ACTIONS(7653), + [anon_sym_RPAREN] = ACTIONS(7653), + [anon_sym_LPAREN2] = ACTIONS(7653), + [anon_sym_DASH] = ACTIONS(7651), + [anon_sym_PLUS] = ACTIONS(7651), + [anon_sym_STAR] = ACTIONS(7651), + [anon_sym_SLASH] = ACTIONS(7651), + [anon_sym_PERCENT] = ACTIONS(7651), + [anon_sym_PIPE_PIPE] = ACTIONS(7653), + [anon_sym_AMP_AMP] = ACTIONS(7653), + [anon_sym_PIPE] = ACTIONS(7651), + [anon_sym_CARET] = ACTIONS(7651), + [anon_sym_AMP] = ACTIONS(7651), + [anon_sym_EQ_EQ] = ACTIONS(7653), + [anon_sym_BANG_EQ] = ACTIONS(7653), + [anon_sym_GT] = ACTIONS(7651), + [anon_sym_GT_EQ] = ACTIONS(7653), + [anon_sym_LT_EQ] = ACTIONS(7651), + [anon_sym_LT] = ACTIONS(7651), + [anon_sym_LT_LT] = ACTIONS(7651), + [anon_sym_GT_GT] = ACTIONS(7651), + [anon_sym___extension__] = ACTIONS(7653), + [anon_sym_LBRACE] = ACTIONS(7653), + [anon_sym_LBRACK] = ACTIONS(7653), + [anon_sym_EQ] = ACTIONS(7651), + [anon_sym_const] = ACTIONS(7651), + [anon_sym_constexpr] = ACTIONS(7653), + [anon_sym_volatile] = ACTIONS(7653), + [anon_sym_restrict] = ACTIONS(7653), + [anon_sym___restrict__] = ACTIONS(7653), + [anon_sym__Atomic] = ACTIONS(7653), + [anon_sym__Noreturn] = ACTIONS(7653), + [anon_sym_noreturn] = ACTIONS(7653), + [anon_sym__Nonnull] = ACTIONS(7653), + [anon_sym_mutable] = ACTIONS(7653), + [anon_sym_constinit] = ACTIONS(7653), + [anon_sym_consteval] = ACTIONS(7653), + [anon_sym_alignas] = ACTIONS(7653), + [anon_sym__Alignas] = ACTIONS(7653), + [anon_sym_QMARK] = ACTIONS(7653), + [anon_sym_STAR_EQ] = ACTIONS(7653), + [anon_sym_SLASH_EQ] = ACTIONS(7653), + [anon_sym_PERCENT_EQ] = ACTIONS(7653), + [anon_sym_PLUS_EQ] = ACTIONS(7653), + [anon_sym_DASH_EQ] = ACTIONS(7653), + [anon_sym_LT_LT_EQ] = ACTIONS(7653), + [anon_sym_GT_GT_EQ] = ACTIONS(7653), + [anon_sym_AMP_EQ] = ACTIONS(7653), + [anon_sym_CARET_EQ] = ACTIONS(7653), + [anon_sym_PIPE_EQ] = ACTIONS(7653), + [anon_sym_LT_EQ_GT] = ACTIONS(7653), + [anon_sym_or] = ACTIONS(7653), + [anon_sym_and] = ACTIONS(7653), + [anon_sym_bitor] = ACTIONS(7653), + [anon_sym_xor] = ACTIONS(7653), + [anon_sym_bitand] = ACTIONS(7653), + [anon_sym_not_eq] = ACTIONS(7653), + [anon_sym_DASH_DASH] = ACTIONS(7653), + [anon_sym_PLUS_PLUS] = ACTIONS(7653), + [anon_sym_DOT] = ACTIONS(7651), + [anon_sym_DOT_STAR] = ACTIONS(7653), + [anon_sym_DASH_GT] = ACTIONS(7651), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7653), + [anon_sym_override] = ACTIONS(7653), + [anon_sym_requires] = ACTIONS(7653), + [anon_sym_DASH_GT_STAR] = ACTIONS(7653), + }, + [STATE(3555)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7661), + [anon_sym_COMMA] = ACTIONS(7661), + [anon_sym_RPAREN] = ACTIONS(7661), + [anon_sym_LPAREN2] = ACTIONS(7661), + [anon_sym_DASH] = ACTIONS(7659), + [anon_sym_PLUS] = ACTIONS(7659), + [anon_sym_STAR] = ACTIONS(7659), + [anon_sym_SLASH] = ACTIONS(7659), + [anon_sym_PERCENT] = ACTIONS(7659), + [anon_sym_PIPE_PIPE] = ACTIONS(7661), + [anon_sym_AMP_AMP] = ACTIONS(7661), + [anon_sym_PIPE] = ACTIONS(7659), + [anon_sym_CARET] = ACTIONS(7659), + [anon_sym_AMP] = ACTIONS(7659), + [anon_sym_EQ_EQ] = ACTIONS(7661), + [anon_sym_BANG_EQ] = ACTIONS(7661), + [anon_sym_GT] = ACTIONS(7659), + [anon_sym_GT_EQ] = ACTIONS(7661), + [anon_sym_LT_EQ] = ACTIONS(7659), + [anon_sym_LT] = ACTIONS(7659), + [anon_sym_LT_LT] = ACTIONS(7659), + [anon_sym_GT_GT] = ACTIONS(7659), + [anon_sym___extension__] = ACTIONS(7661), + [anon_sym_LBRACE] = ACTIONS(7661), + [anon_sym_LBRACK] = ACTIONS(7661), + [anon_sym_EQ] = ACTIONS(7659), + [anon_sym_const] = ACTIONS(7659), + [anon_sym_constexpr] = ACTIONS(7661), + [anon_sym_volatile] = ACTIONS(7661), + [anon_sym_restrict] = ACTIONS(7661), + [anon_sym___restrict__] = ACTIONS(7661), + [anon_sym__Atomic] = ACTIONS(7661), + [anon_sym__Noreturn] = ACTIONS(7661), + [anon_sym_noreturn] = ACTIONS(7661), + [anon_sym__Nonnull] = ACTIONS(7661), + [anon_sym_mutable] = ACTIONS(7661), + [anon_sym_constinit] = ACTIONS(7661), + [anon_sym_consteval] = ACTIONS(7661), + [anon_sym_alignas] = ACTIONS(7661), + [anon_sym__Alignas] = ACTIONS(7661), + [anon_sym_QMARK] = ACTIONS(7661), + [anon_sym_STAR_EQ] = ACTIONS(7661), + [anon_sym_SLASH_EQ] = ACTIONS(7661), + [anon_sym_PERCENT_EQ] = ACTIONS(7661), + [anon_sym_PLUS_EQ] = ACTIONS(7661), + [anon_sym_DASH_EQ] = ACTIONS(7661), + [anon_sym_LT_LT_EQ] = ACTIONS(7661), + [anon_sym_GT_GT_EQ] = ACTIONS(7661), + [anon_sym_AMP_EQ] = ACTIONS(7661), + [anon_sym_CARET_EQ] = ACTIONS(7661), + [anon_sym_PIPE_EQ] = ACTIONS(7661), + [anon_sym_LT_EQ_GT] = ACTIONS(7661), + [anon_sym_or] = ACTIONS(7661), + [anon_sym_and] = ACTIONS(7661), + [anon_sym_bitor] = ACTIONS(7661), + [anon_sym_xor] = ACTIONS(7661), + [anon_sym_bitand] = ACTIONS(7661), + [anon_sym_not_eq] = ACTIONS(7661), + [anon_sym_DASH_DASH] = ACTIONS(7661), + [anon_sym_PLUS_PLUS] = ACTIONS(7661), + [anon_sym_DOT] = ACTIONS(7659), + [anon_sym_DOT_STAR] = ACTIONS(7661), + [anon_sym_DASH_GT] = ACTIONS(7659), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7661), + [anon_sym_override] = ACTIONS(7661), + [anon_sym_requires] = ACTIONS(7661), + [anon_sym_DASH_GT_STAR] = ACTIONS(7661), + }, + [STATE(3556)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7777), + [anon_sym_COMMA] = ACTIONS(7777), + [anon_sym_RPAREN] = ACTIONS(7777), + [anon_sym_LPAREN2] = ACTIONS(7777), + [anon_sym_DASH] = ACTIONS(7775), + [anon_sym_PLUS] = ACTIONS(7775), + [anon_sym_STAR] = ACTIONS(7775), + [anon_sym_SLASH] = ACTIONS(7775), + [anon_sym_PERCENT] = ACTIONS(7775), + [anon_sym_PIPE_PIPE] = ACTIONS(7777), + [anon_sym_AMP_AMP] = ACTIONS(7777), + [anon_sym_PIPE] = ACTIONS(7775), + [anon_sym_CARET] = ACTIONS(7775), + [anon_sym_AMP] = ACTIONS(7775), + [anon_sym_EQ_EQ] = ACTIONS(7777), + [anon_sym_BANG_EQ] = ACTIONS(7777), + [anon_sym_GT] = ACTIONS(7775), + [anon_sym_GT_EQ] = ACTIONS(7777), + [anon_sym_LT_EQ] = ACTIONS(7775), + [anon_sym_LT] = ACTIONS(7775), + [anon_sym_LT_LT] = ACTIONS(7775), + [anon_sym_GT_GT] = ACTIONS(7775), + [anon_sym___extension__] = ACTIONS(7777), + [anon_sym_LBRACE] = ACTIONS(7777), + [anon_sym_LBRACK] = ACTIONS(7777), + [anon_sym_EQ] = ACTIONS(7775), + [anon_sym_const] = ACTIONS(7775), + [anon_sym_constexpr] = ACTIONS(7777), + [anon_sym_volatile] = ACTIONS(7777), + [anon_sym_restrict] = ACTIONS(7777), + [anon_sym___restrict__] = ACTIONS(7777), + [anon_sym__Atomic] = ACTIONS(7777), + [anon_sym__Noreturn] = ACTIONS(7777), + [anon_sym_noreturn] = ACTIONS(7777), + [anon_sym__Nonnull] = ACTIONS(7777), + [anon_sym_mutable] = ACTIONS(7777), + [anon_sym_constinit] = ACTIONS(7777), + [anon_sym_consteval] = ACTIONS(7777), + [anon_sym_alignas] = ACTIONS(7777), + [anon_sym__Alignas] = ACTIONS(7777), + [anon_sym_QMARK] = ACTIONS(7777), + [anon_sym_STAR_EQ] = ACTIONS(7777), + [anon_sym_SLASH_EQ] = ACTIONS(7777), + [anon_sym_PERCENT_EQ] = ACTIONS(7777), + [anon_sym_PLUS_EQ] = ACTIONS(7777), + [anon_sym_DASH_EQ] = ACTIONS(7777), + [anon_sym_LT_LT_EQ] = ACTIONS(7777), + [anon_sym_GT_GT_EQ] = ACTIONS(7777), + [anon_sym_AMP_EQ] = ACTIONS(7777), + [anon_sym_CARET_EQ] = ACTIONS(7777), + [anon_sym_PIPE_EQ] = ACTIONS(7777), + [anon_sym_LT_EQ_GT] = ACTIONS(7777), + [anon_sym_or] = ACTIONS(7777), + [anon_sym_and] = ACTIONS(7777), + [anon_sym_bitor] = ACTIONS(7777), + [anon_sym_xor] = ACTIONS(7777), + [anon_sym_bitand] = ACTIONS(7777), + [anon_sym_not_eq] = ACTIONS(7777), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(7775), + [anon_sym_DOT_STAR] = ACTIONS(7777), + [anon_sym_DASH_GT] = ACTIONS(7775), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7777), + [anon_sym_override] = ACTIONS(7777), + [anon_sym_requires] = ACTIONS(7777), + [anon_sym_DASH_GT_STAR] = ACTIONS(7777), + }, + [STATE(3557)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7571), + [anon_sym_COMMA] = ACTIONS(7571), + [anon_sym_RPAREN] = ACTIONS(7571), + [anon_sym_LPAREN2] = ACTIONS(7571), + [anon_sym_DASH] = ACTIONS(7569), + [anon_sym_PLUS] = ACTIONS(7569), + [anon_sym_STAR] = ACTIONS(7569), + [anon_sym_SLASH] = ACTIONS(7569), + [anon_sym_PERCENT] = ACTIONS(7569), + [anon_sym_PIPE_PIPE] = ACTIONS(7571), + [anon_sym_AMP_AMP] = ACTIONS(7571), + [anon_sym_PIPE] = ACTIONS(7569), + [anon_sym_CARET] = ACTIONS(7569), + [anon_sym_AMP] = ACTIONS(7569), + [anon_sym_EQ_EQ] = ACTIONS(7571), + [anon_sym_BANG_EQ] = ACTIONS(7571), + [anon_sym_GT] = ACTIONS(7569), + [anon_sym_GT_EQ] = ACTIONS(7571), + [anon_sym_LT_EQ] = ACTIONS(7569), + [anon_sym_LT] = ACTIONS(7569), + [anon_sym_LT_LT] = ACTIONS(7569), + [anon_sym_GT_GT] = ACTIONS(7569), + [anon_sym___extension__] = ACTIONS(7571), + [anon_sym_LBRACE] = ACTIONS(7571), + [anon_sym_LBRACK] = ACTIONS(7571), + [anon_sym_EQ] = ACTIONS(7569), + [anon_sym_const] = ACTIONS(7569), + [anon_sym_constexpr] = ACTIONS(7571), + [anon_sym_volatile] = ACTIONS(7571), + [anon_sym_restrict] = ACTIONS(7571), + [anon_sym___restrict__] = ACTIONS(7571), + [anon_sym__Atomic] = ACTIONS(7571), + [anon_sym__Noreturn] = ACTIONS(7571), + [anon_sym_noreturn] = ACTIONS(7571), + [anon_sym__Nonnull] = ACTIONS(7571), + [anon_sym_mutable] = ACTIONS(7571), + [anon_sym_constinit] = ACTIONS(7571), + [anon_sym_consteval] = ACTIONS(7571), + [anon_sym_alignas] = ACTIONS(7571), + [anon_sym__Alignas] = ACTIONS(7571), + [anon_sym_QMARK] = ACTIONS(7571), + [anon_sym_STAR_EQ] = ACTIONS(7571), + [anon_sym_SLASH_EQ] = ACTIONS(7571), + [anon_sym_PERCENT_EQ] = ACTIONS(7571), + [anon_sym_PLUS_EQ] = ACTIONS(7571), + [anon_sym_DASH_EQ] = ACTIONS(7571), + [anon_sym_LT_LT_EQ] = ACTIONS(7571), + [anon_sym_GT_GT_EQ] = ACTIONS(7571), + [anon_sym_AMP_EQ] = ACTIONS(7571), + [anon_sym_CARET_EQ] = ACTIONS(7571), + [anon_sym_PIPE_EQ] = ACTIONS(7571), + [anon_sym_LT_EQ_GT] = ACTIONS(7571), + [anon_sym_or] = ACTIONS(7571), + [anon_sym_and] = ACTIONS(7571), + [anon_sym_bitor] = ACTIONS(7571), + [anon_sym_xor] = ACTIONS(7571), + [anon_sym_bitand] = ACTIONS(7571), + [anon_sym_not_eq] = ACTIONS(7571), + [anon_sym_DASH_DASH] = ACTIONS(7571), + [anon_sym_PLUS_PLUS] = ACTIONS(7571), + [anon_sym_DOT] = ACTIONS(7569), + [anon_sym_DOT_STAR] = ACTIONS(7571), + [anon_sym_DASH_GT] = ACTIONS(7569), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7571), + [anon_sym_override] = ACTIONS(7571), + [anon_sym_requires] = ACTIONS(7571), + [anon_sym_DASH_GT_STAR] = ACTIONS(7571), + }, + [STATE(3558)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7597), + [anon_sym_COMMA] = ACTIONS(7597), + [anon_sym_RPAREN] = ACTIONS(7597), + [anon_sym_LPAREN2] = ACTIONS(7597), + [anon_sym_DASH] = ACTIONS(7595), + [anon_sym_PLUS] = ACTIONS(7595), + [anon_sym_STAR] = ACTIONS(7595), + [anon_sym_SLASH] = ACTIONS(7595), + [anon_sym_PERCENT] = ACTIONS(7595), + [anon_sym_PIPE_PIPE] = ACTIONS(7597), + [anon_sym_AMP_AMP] = ACTIONS(7597), + [anon_sym_PIPE] = ACTIONS(7595), + [anon_sym_CARET] = ACTIONS(7595), + [anon_sym_AMP] = ACTIONS(7595), + [anon_sym_EQ_EQ] = ACTIONS(7597), + [anon_sym_BANG_EQ] = ACTIONS(7597), + [anon_sym_GT] = ACTIONS(7595), + [anon_sym_GT_EQ] = ACTIONS(7597), + [anon_sym_LT_EQ] = ACTIONS(7595), + [anon_sym_LT] = ACTIONS(7595), + [anon_sym_LT_LT] = ACTIONS(7595), + [anon_sym_GT_GT] = ACTIONS(7595), + [anon_sym___extension__] = ACTIONS(7597), + [anon_sym_LBRACE] = ACTIONS(7597), + [anon_sym_LBRACK] = ACTIONS(7597), + [anon_sym_EQ] = ACTIONS(7595), + [anon_sym_const] = ACTIONS(7595), + [anon_sym_constexpr] = ACTIONS(7597), + [anon_sym_volatile] = ACTIONS(7597), + [anon_sym_restrict] = ACTIONS(7597), + [anon_sym___restrict__] = ACTIONS(7597), + [anon_sym__Atomic] = ACTIONS(7597), + [anon_sym__Noreturn] = ACTIONS(7597), + [anon_sym_noreturn] = ACTIONS(7597), + [anon_sym__Nonnull] = ACTIONS(7597), + [anon_sym_mutable] = ACTIONS(7597), + [anon_sym_constinit] = ACTIONS(7597), + [anon_sym_consteval] = ACTIONS(7597), + [anon_sym_alignas] = ACTIONS(7597), + [anon_sym__Alignas] = ACTIONS(7597), + [anon_sym_QMARK] = ACTIONS(7597), + [anon_sym_STAR_EQ] = ACTIONS(7597), + [anon_sym_SLASH_EQ] = ACTIONS(7597), + [anon_sym_PERCENT_EQ] = ACTIONS(7597), + [anon_sym_PLUS_EQ] = ACTIONS(7597), + [anon_sym_DASH_EQ] = ACTIONS(7597), + [anon_sym_LT_LT_EQ] = ACTIONS(7597), + [anon_sym_GT_GT_EQ] = ACTIONS(7597), + [anon_sym_AMP_EQ] = ACTIONS(7597), + [anon_sym_CARET_EQ] = ACTIONS(7597), + [anon_sym_PIPE_EQ] = ACTIONS(7597), + [anon_sym_LT_EQ_GT] = ACTIONS(7597), + [anon_sym_or] = ACTIONS(7597), + [anon_sym_and] = ACTIONS(7597), + [anon_sym_bitor] = ACTIONS(7597), + [anon_sym_xor] = ACTIONS(7597), + [anon_sym_bitand] = ACTIONS(7597), + [anon_sym_not_eq] = ACTIONS(7597), + [anon_sym_DASH_DASH] = ACTIONS(7597), + [anon_sym_PLUS_PLUS] = ACTIONS(7597), + [anon_sym_DOT] = ACTIONS(7595), + [anon_sym_DOT_STAR] = ACTIONS(7597), + [anon_sym_DASH_GT] = ACTIONS(7595), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7597), + [anon_sym_override] = ACTIONS(7597), + [anon_sym_requires] = ACTIONS(7597), + [anon_sym_DASH_GT_STAR] = ACTIONS(7597), + }, + [STATE(3559)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7609), + [anon_sym_COMMA] = ACTIONS(7609), + [anon_sym_RPAREN] = ACTIONS(7609), + [anon_sym_LPAREN2] = ACTIONS(7609), + [anon_sym_DASH] = ACTIONS(7607), + [anon_sym_PLUS] = ACTIONS(7607), + [anon_sym_STAR] = ACTIONS(7607), + [anon_sym_SLASH] = ACTIONS(7607), + [anon_sym_PERCENT] = ACTIONS(7607), + [anon_sym_PIPE_PIPE] = ACTIONS(7609), + [anon_sym_AMP_AMP] = ACTIONS(7609), + [anon_sym_PIPE] = ACTIONS(7607), + [anon_sym_CARET] = ACTIONS(7607), + [anon_sym_AMP] = ACTIONS(7607), + [anon_sym_EQ_EQ] = ACTIONS(7609), + [anon_sym_BANG_EQ] = ACTIONS(7609), + [anon_sym_GT] = ACTIONS(7607), + [anon_sym_GT_EQ] = ACTIONS(7609), + [anon_sym_LT_EQ] = ACTIONS(7607), + [anon_sym_LT] = ACTIONS(7607), + [anon_sym_LT_LT] = ACTIONS(7607), + [anon_sym_GT_GT] = ACTIONS(7607), + [anon_sym___extension__] = ACTIONS(7609), + [anon_sym_LBRACE] = ACTIONS(7609), + [anon_sym_LBRACK] = ACTIONS(7609), + [anon_sym_EQ] = ACTIONS(7607), + [anon_sym_const] = ACTIONS(7607), + [anon_sym_constexpr] = ACTIONS(7609), + [anon_sym_volatile] = ACTIONS(7609), + [anon_sym_restrict] = ACTIONS(7609), + [anon_sym___restrict__] = ACTIONS(7609), + [anon_sym__Atomic] = ACTIONS(7609), + [anon_sym__Noreturn] = ACTIONS(7609), + [anon_sym_noreturn] = ACTIONS(7609), + [anon_sym__Nonnull] = ACTIONS(7609), + [anon_sym_mutable] = ACTIONS(7609), + [anon_sym_constinit] = ACTIONS(7609), + [anon_sym_consteval] = ACTIONS(7609), + [anon_sym_alignas] = ACTIONS(7609), + [anon_sym__Alignas] = ACTIONS(7609), + [anon_sym_QMARK] = ACTIONS(7609), + [anon_sym_STAR_EQ] = ACTIONS(7609), + [anon_sym_SLASH_EQ] = ACTIONS(7609), + [anon_sym_PERCENT_EQ] = ACTIONS(7609), + [anon_sym_PLUS_EQ] = ACTIONS(7609), + [anon_sym_DASH_EQ] = ACTIONS(7609), + [anon_sym_LT_LT_EQ] = ACTIONS(7609), + [anon_sym_GT_GT_EQ] = ACTIONS(7609), + [anon_sym_AMP_EQ] = ACTIONS(7609), + [anon_sym_CARET_EQ] = ACTIONS(7609), + [anon_sym_PIPE_EQ] = ACTIONS(7609), + [anon_sym_LT_EQ_GT] = ACTIONS(7609), + [anon_sym_or] = ACTIONS(7609), + [anon_sym_and] = ACTIONS(7609), + [anon_sym_bitor] = ACTIONS(7609), + [anon_sym_xor] = ACTIONS(7609), + [anon_sym_bitand] = ACTIONS(7609), + [anon_sym_not_eq] = ACTIONS(7609), + [anon_sym_DASH_DASH] = ACTIONS(7609), + [anon_sym_PLUS_PLUS] = ACTIONS(7609), + [anon_sym_DOT] = ACTIONS(7607), + [anon_sym_DOT_STAR] = ACTIONS(7609), + [anon_sym_DASH_GT] = ACTIONS(7607), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7609), + [anon_sym_override] = ACTIONS(7609), + [anon_sym_requires] = ACTIONS(7609), + [anon_sym_DASH_GT_STAR] = ACTIONS(7609), + }, + [STATE(3560)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7625), + [anon_sym_COMMA] = ACTIONS(7625), + [anon_sym_RPAREN] = ACTIONS(7625), + [anon_sym_LPAREN2] = ACTIONS(7625), + [anon_sym_DASH] = ACTIONS(7623), + [anon_sym_PLUS] = ACTIONS(7623), + [anon_sym_STAR] = ACTIONS(7623), + [anon_sym_SLASH] = ACTIONS(7623), + [anon_sym_PERCENT] = ACTIONS(7623), + [anon_sym_PIPE_PIPE] = ACTIONS(7625), + [anon_sym_AMP_AMP] = ACTIONS(7625), + [anon_sym_PIPE] = ACTIONS(7623), + [anon_sym_CARET] = ACTIONS(7623), + [anon_sym_AMP] = ACTIONS(7623), + [anon_sym_EQ_EQ] = ACTIONS(7625), + [anon_sym_BANG_EQ] = ACTIONS(7625), + [anon_sym_GT] = ACTIONS(7623), + [anon_sym_GT_EQ] = ACTIONS(7625), + [anon_sym_LT_EQ] = ACTIONS(7623), + [anon_sym_LT] = ACTIONS(7623), + [anon_sym_LT_LT] = ACTIONS(7623), + [anon_sym_GT_GT] = ACTIONS(7623), + [anon_sym___extension__] = ACTIONS(7625), + [anon_sym_LBRACE] = ACTIONS(7625), + [anon_sym_LBRACK] = ACTIONS(7625), + [anon_sym_EQ] = ACTIONS(7623), + [anon_sym_const] = ACTIONS(7623), + [anon_sym_constexpr] = ACTIONS(7625), + [anon_sym_volatile] = ACTIONS(7625), + [anon_sym_restrict] = ACTIONS(7625), + [anon_sym___restrict__] = ACTIONS(7625), + [anon_sym__Atomic] = ACTIONS(7625), + [anon_sym__Noreturn] = ACTIONS(7625), + [anon_sym_noreturn] = ACTIONS(7625), + [anon_sym__Nonnull] = ACTIONS(7625), + [anon_sym_mutable] = ACTIONS(7625), + [anon_sym_constinit] = ACTIONS(7625), + [anon_sym_consteval] = ACTIONS(7625), + [anon_sym_alignas] = ACTIONS(7625), + [anon_sym__Alignas] = ACTIONS(7625), + [anon_sym_QMARK] = ACTIONS(7625), + [anon_sym_STAR_EQ] = ACTIONS(7625), + [anon_sym_SLASH_EQ] = ACTIONS(7625), + [anon_sym_PERCENT_EQ] = ACTIONS(7625), + [anon_sym_PLUS_EQ] = ACTIONS(7625), + [anon_sym_DASH_EQ] = ACTIONS(7625), + [anon_sym_LT_LT_EQ] = ACTIONS(7625), + [anon_sym_GT_GT_EQ] = ACTIONS(7625), + [anon_sym_AMP_EQ] = ACTIONS(7625), + [anon_sym_CARET_EQ] = ACTIONS(7625), + [anon_sym_PIPE_EQ] = ACTIONS(7625), + [anon_sym_LT_EQ_GT] = ACTIONS(7625), + [anon_sym_or] = ACTIONS(7625), + [anon_sym_and] = ACTIONS(7625), + [anon_sym_bitor] = ACTIONS(7625), + [anon_sym_xor] = ACTIONS(7625), + [anon_sym_bitand] = ACTIONS(7625), + [anon_sym_not_eq] = ACTIONS(7625), + [anon_sym_DASH_DASH] = ACTIONS(7625), + [anon_sym_PLUS_PLUS] = ACTIONS(7625), + [anon_sym_DOT] = ACTIONS(7623), + [anon_sym_DOT_STAR] = ACTIONS(7625), + [anon_sym_DASH_GT] = ACTIONS(7623), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7625), + [anon_sym_override] = ACTIONS(7625), + [anon_sym_requires] = ACTIONS(7625), + [anon_sym_DASH_GT_STAR] = ACTIONS(7625), + }, + [STATE(3561)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7597), + [anon_sym_COMMA] = ACTIONS(7597), + [anon_sym_RPAREN] = ACTIONS(7597), + [anon_sym_LPAREN2] = ACTIONS(7597), + [anon_sym_DASH] = ACTIONS(7595), + [anon_sym_PLUS] = ACTIONS(7595), + [anon_sym_STAR] = ACTIONS(7595), + [anon_sym_SLASH] = ACTIONS(7595), + [anon_sym_PERCENT] = ACTIONS(7595), + [anon_sym_PIPE_PIPE] = ACTIONS(7597), + [anon_sym_AMP_AMP] = ACTIONS(7597), + [anon_sym_PIPE] = ACTIONS(7595), + [anon_sym_CARET] = ACTIONS(7595), + [anon_sym_AMP] = ACTIONS(7595), + [anon_sym_EQ_EQ] = ACTIONS(7597), + [anon_sym_BANG_EQ] = ACTIONS(7597), + [anon_sym_GT] = ACTIONS(7595), + [anon_sym_GT_EQ] = ACTIONS(7597), + [anon_sym_LT_EQ] = ACTIONS(7595), + [anon_sym_LT] = ACTIONS(7595), + [anon_sym_LT_LT] = ACTIONS(7595), + [anon_sym_GT_GT] = ACTIONS(7595), + [anon_sym___extension__] = ACTIONS(7597), + [anon_sym_LBRACE] = ACTIONS(7597), + [anon_sym_LBRACK] = ACTIONS(7597), + [anon_sym_EQ] = ACTIONS(7595), + [anon_sym_const] = ACTIONS(7595), + [anon_sym_constexpr] = ACTIONS(7597), + [anon_sym_volatile] = ACTIONS(7597), + [anon_sym_restrict] = ACTIONS(7597), + [anon_sym___restrict__] = ACTIONS(7597), + [anon_sym__Atomic] = ACTIONS(7597), + [anon_sym__Noreturn] = ACTIONS(7597), + [anon_sym_noreturn] = ACTIONS(7597), + [anon_sym__Nonnull] = ACTIONS(7597), + [anon_sym_mutable] = ACTIONS(7597), + [anon_sym_constinit] = ACTIONS(7597), + [anon_sym_consteval] = ACTIONS(7597), + [anon_sym_alignas] = ACTIONS(7597), + [anon_sym__Alignas] = ACTIONS(7597), + [anon_sym_QMARK] = ACTIONS(7597), + [anon_sym_STAR_EQ] = ACTIONS(7597), + [anon_sym_SLASH_EQ] = ACTIONS(7597), + [anon_sym_PERCENT_EQ] = ACTIONS(7597), + [anon_sym_PLUS_EQ] = ACTIONS(7597), + [anon_sym_DASH_EQ] = ACTIONS(7597), + [anon_sym_LT_LT_EQ] = ACTIONS(7597), + [anon_sym_GT_GT_EQ] = ACTIONS(7597), + [anon_sym_AMP_EQ] = ACTIONS(7597), + [anon_sym_CARET_EQ] = ACTIONS(7597), + [anon_sym_PIPE_EQ] = ACTIONS(7597), + [anon_sym_LT_EQ_GT] = ACTIONS(7597), + [anon_sym_or] = ACTIONS(7597), + [anon_sym_and] = ACTIONS(7597), + [anon_sym_bitor] = ACTIONS(7597), + [anon_sym_xor] = ACTIONS(7597), + [anon_sym_bitand] = ACTIONS(7597), + [anon_sym_not_eq] = ACTIONS(7597), + [anon_sym_DASH_DASH] = ACTIONS(7597), + [anon_sym_PLUS_PLUS] = ACTIONS(7597), + [anon_sym_DOT] = ACTIONS(7595), + [anon_sym_DOT_STAR] = ACTIONS(7597), + [anon_sym_DASH_GT] = ACTIONS(7595), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7597), + [anon_sym_override] = ACTIONS(7597), + [anon_sym_requires] = ACTIONS(7597), + [anon_sym_DASH_GT_STAR] = ACTIONS(7597), + }, + [STATE(3562)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7567), + [anon_sym_COMMA] = ACTIONS(7567), + [anon_sym_RPAREN] = ACTIONS(7567), + [anon_sym_LPAREN2] = ACTIONS(7567), + [anon_sym_DASH] = ACTIONS(7565), + [anon_sym_PLUS] = ACTIONS(7565), + [anon_sym_STAR] = ACTIONS(7565), + [anon_sym_SLASH] = ACTIONS(7565), + [anon_sym_PERCENT] = ACTIONS(7565), + [anon_sym_PIPE_PIPE] = ACTIONS(7567), + [anon_sym_AMP_AMP] = ACTIONS(7567), + [anon_sym_PIPE] = ACTIONS(7565), + [anon_sym_CARET] = ACTIONS(7565), + [anon_sym_AMP] = ACTIONS(7565), + [anon_sym_EQ_EQ] = ACTIONS(7567), + [anon_sym_BANG_EQ] = ACTIONS(7567), + [anon_sym_GT] = ACTIONS(7565), + [anon_sym_GT_EQ] = ACTIONS(7567), + [anon_sym_LT_EQ] = ACTIONS(7565), + [anon_sym_LT] = ACTIONS(7565), + [anon_sym_LT_LT] = ACTIONS(7565), + [anon_sym_GT_GT] = ACTIONS(7565), + [anon_sym___extension__] = ACTIONS(7567), + [anon_sym_LBRACE] = ACTIONS(7567), + [anon_sym_LBRACK] = ACTIONS(7567), + [anon_sym_EQ] = ACTIONS(7565), + [anon_sym_const] = ACTIONS(7565), + [anon_sym_constexpr] = ACTIONS(7567), + [anon_sym_volatile] = ACTIONS(7567), + [anon_sym_restrict] = ACTIONS(7567), + [anon_sym___restrict__] = ACTIONS(7567), + [anon_sym__Atomic] = ACTIONS(7567), + [anon_sym__Noreturn] = ACTIONS(7567), + [anon_sym_noreturn] = ACTIONS(7567), + [anon_sym__Nonnull] = ACTIONS(7567), + [anon_sym_mutable] = ACTIONS(7567), + [anon_sym_constinit] = ACTIONS(7567), + [anon_sym_consteval] = ACTIONS(7567), + [anon_sym_alignas] = ACTIONS(7567), + [anon_sym__Alignas] = ACTIONS(7567), + [anon_sym_QMARK] = ACTIONS(7567), + [anon_sym_STAR_EQ] = ACTIONS(7567), + [anon_sym_SLASH_EQ] = ACTIONS(7567), + [anon_sym_PERCENT_EQ] = ACTIONS(7567), + [anon_sym_PLUS_EQ] = ACTIONS(7567), + [anon_sym_DASH_EQ] = ACTIONS(7567), + [anon_sym_LT_LT_EQ] = ACTIONS(7567), + [anon_sym_GT_GT_EQ] = ACTIONS(7567), + [anon_sym_AMP_EQ] = ACTIONS(7567), + [anon_sym_CARET_EQ] = ACTIONS(7567), + [anon_sym_PIPE_EQ] = ACTIONS(7567), + [anon_sym_LT_EQ_GT] = ACTIONS(7567), + [anon_sym_or] = ACTIONS(7567), + [anon_sym_and] = ACTIONS(7567), + [anon_sym_bitor] = ACTIONS(7567), + [anon_sym_xor] = ACTIONS(7567), + [anon_sym_bitand] = ACTIONS(7567), + [anon_sym_not_eq] = ACTIONS(7567), + [anon_sym_DASH_DASH] = ACTIONS(7567), + [anon_sym_PLUS_PLUS] = ACTIONS(7567), + [anon_sym_DOT] = ACTIONS(7565), + [anon_sym_DOT_STAR] = ACTIONS(7567), + [anon_sym_DASH_GT] = ACTIONS(7565), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7567), + [anon_sym_override] = ACTIONS(7567), + [anon_sym_requires] = ACTIONS(7567), + [anon_sym_DASH_GT_STAR] = ACTIONS(7567), + }, + [STATE(3563)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_RPAREN] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6605), + [anon_sym_PLUS] = ACTIONS(6605), + [anon_sym_STAR] = ACTIONS(6605), + [anon_sym_SLASH] = ACTIONS(6605), + [anon_sym_PERCENT] = ACTIONS(6605), + [anon_sym_PIPE_PIPE] = ACTIONS(6598), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6605), + [anon_sym_CARET] = ACTIONS(6605), + [anon_sym_AMP] = ACTIONS(6605), + [anon_sym_EQ_EQ] = ACTIONS(6598), + [anon_sym_BANG_EQ] = ACTIONS(6598), + [anon_sym_GT] = ACTIONS(6605), + [anon_sym_GT_EQ] = ACTIONS(6598), + [anon_sym_LT_EQ] = ACTIONS(6605), + [anon_sym_LT] = ACTIONS(6605), + [anon_sym_LT_LT] = ACTIONS(6605), + [anon_sym_GT_GT] = ACTIONS(6605), + [anon_sym___extension__] = ACTIONS(6601), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_LBRACK] = ACTIONS(6598), + [anon_sym_EQ] = ACTIONS(6605), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6601), + [anon_sym_volatile] = ACTIONS(6601), + [anon_sym_restrict] = ACTIONS(6601), + [anon_sym___restrict__] = ACTIONS(6601), + [anon_sym__Atomic] = ACTIONS(6601), + [anon_sym__Noreturn] = ACTIONS(6601), + [anon_sym_noreturn] = ACTIONS(6601), + [anon_sym__Nonnull] = ACTIONS(6601), + [anon_sym_mutable] = ACTIONS(6601), + [anon_sym_constinit] = ACTIONS(6601), + [anon_sym_consteval] = ACTIONS(6601), + [anon_sym_alignas] = ACTIONS(6601), + [anon_sym__Alignas] = ACTIONS(6601), + [anon_sym_QMARK] = ACTIONS(6598), + [anon_sym_STAR_EQ] = ACTIONS(6598), + [anon_sym_SLASH_EQ] = ACTIONS(6598), + [anon_sym_PERCENT_EQ] = ACTIONS(6598), + [anon_sym_PLUS_EQ] = ACTIONS(6598), + [anon_sym_DASH_EQ] = ACTIONS(6598), + [anon_sym_LT_LT_EQ] = ACTIONS(6598), + [anon_sym_GT_GT_EQ] = ACTIONS(6598), + [anon_sym_AMP_EQ] = ACTIONS(6598), + [anon_sym_CARET_EQ] = ACTIONS(6598), + [anon_sym_PIPE_EQ] = ACTIONS(6598), + [anon_sym_LT_EQ_GT] = ACTIONS(6598), + [anon_sym_or] = ACTIONS(6598), + [anon_sym_and] = ACTIONS(6598), + [anon_sym_bitor] = ACTIONS(6598), + [anon_sym_xor] = ACTIONS(6598), + [anon_sym_bitand] = ACTIONS(6598), + [anon_sym_not_eq] = ACTIONS(6598), + [anon_sym_DASH_DASH] = ACTIONS(6598), + [anon_sym_PLUS_PLUS] = ACTIONS(6598), + [anon_sym_DOT] = ACTIONS(6605), + [anon_sym_DOT_STAR] = ACTIONS(6598), + [anon_sym_DASH_GT] = ACTIONS(6605), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6601), + [anon_sym_decltype] = ACTIONS(6601), + [anon_sym_DASH_GT_STAR] = ACTIONS(6598), + }, + [STATE(3564)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7715), + [anon_sym_COMMA] = ACTIONS(7715), + [anon_sym_RPAREN] = ACTIONS(7715), + [anon_sym_LPAREN2] = ACTIONS(7715), + [anon_sym_DASH] = ACTIONS(7713), + [anon_sym_PLUS] = ACTIONS(7713), + [anon_sym_STAR] = ACTIONS(7715), + [anon_sym_SLASH] = ACTIONS(7713), + [anon_sym_PERCENT] = ACTIONS(7715), + [anon_sym_PIPE_PIPE] = ACTIONS(7715), + [anon_sym_AMP_AMP] = ACTIONS(7715), + [anon_sym_PIPE] = ACTIONS(7713), + [anon_sym_CARET] = ACTIONS(7715), + [anon_sym_AMP] = ACTIONS(7713), + [anon_sym_EQ_EQ] = ACTIONS(7715), + [anon_sym_BANG_EQ] = ACTIONS(7715), + [anon_sym_GT] = ACTIONS(7713), + [anon_sym_GT_EQ] = ACTIONS(7715), + [anon_sym_LT_EQ] = ACTIONS(7713), + [anon_sym_LT] = ACTIONS(7713), + [anon_sym_LT_LT] = ACTIONS(7715), + [anon_sym_GT_GT] = ACTIONS(7715), + [anon_sym_SEMI] = ACTIONS(7715), + [anon_sym___extension__] = ACTIONS(7715), + [anon_sym___attribute__] = ACTIONS(7715), + [anon_sym___attribute] = ACTIONS(7713), + [anon_sym_COLON] = ACTIONS(7713), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7715), + [anon_sym_LBRACE] = ACTIONS(7715), + [anon_sym_RBRACE] = ACTIONS(7715), + [anon_sym_signed] = ACTIONS(9234), + [anon_sym_unsigned] = ACTIONS(9234), + [anon_sym_long] = ACTIONS(9234), + [anon_sym_short] = ACTIONS(9234), + [anon_sym_LBRACK] = ACTIONS(7715), + [anon_sym_const] = ACTIONS(7713), + [anon_sym_constexpr] = ACTIONS(7715), + [anon_sym_volatile] = ACTIONS(7715), + [anon_sym_restrict] = ACTIONS(7715), + [anon_sym___restrict__] = ACTIONS(7715), + [anon_sym__Atomic] = ACTIONS(7715), + [anon_sym__Noreturn] = ACTIONS(7715), + [anon_sym_noreturn] = ACTIONS(7715), + [anon_sym__Nonnull] = ACTIONS(7715), + [anon_sym_mutable] = ACTIONS(7715), + [anon_sym_constinit] = ACTIONS(7715), + [anon_sym_consteval] = ACTIONS(7715), + [anon_sym_alignas] = ACTIONS(7715), + [anon_sym__Alignas] = ACTIONS(7715), + [anon_sym_QMARK] = ACTIONS(7715), + [anon_sym_LT_EQ_GT] = ACTIONS(7715), + [anon_sym_or] = ACTIONS(7715), + [anon_sym_and] = ACTIONS(7715), + [anon_sym_bitor] = ACTIONS(7715), + [anon_sym_xor] = ACTIONS(7715), + [anon_sym_bitand] = ACTIONS(7715), + [anon_sym_not_eq] = ACTIONS(7715), + [anon_sym_DASH_DASH] = ACTIONS(7715), + [anon_sym_PLUS_PLUS] = ACTIONS(7715), + [anon_sym_DOT] = ACTIONS(7713), + [anon_sym_DOT_STAR] = ACTIONS(7715), + [anon_sym_DASH_GT] = ACTIONS(7715), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7715), + [anon_sym_override] = ACTIONS(7715), + [anon_sym_requires] = ACTIONS(7715), + [anon_sym_COLON_RBRACK] = ACTIONS(7715), + }, + [STATE(3565)] = { + [sym_string_literal] = STATE(3576), + [sym_raw_string_literal] = STATE(3576), + [aux_sym_concatenated_string_repeat1] = STATE(3576), + [sym_identifier] = ACTIONS(9254), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8454), + [anon_sym_COMMA] = ACTIONS(8454), + [anon_sym_LPAREN2] = ACTIONS(8454), + [anon_sym_DASH] = ACTIONS(8456), + [anon_sym_PLUS] = ACTIONS(8456), + [anon_sym_STAR] = ACTIONS(8456), + [anon_sym_SLASH] = ACTIONS(8456), + [anon_sym_PERCENT] = ACTIONS(8456), + [anon_sym_PIPE_PIPE] = ACTIONS(8454), + [anon_sym_AMP_AMP] = ACTIONS(8454), + [anon_sym_PIPE] = ACTIONS(8456), + [anon_sym_CARET] = ACTIONS(8456), + [anon_sym_AMP] = ACTIONS(8456), + [anon_sym_EQ_EQ] = ACTIONS(8454), + [anon_sym_BANG_EQ] = ACTIONS(8454), + [anon_sym_GT] = ACTIONS(8456), + [anon_sym_GT_EQ] = ACTIONS(8454), + [anon_sym_LT_EQ] = ACTIONS(8456), + [anon_sym_LT] = ACTIONS(8456), + [anon_sym_LT_LT] = ACTIONS(8456), + [anon_sym_GT_GT] = ACTIONS(8456), + [anon_sym_SEMI] = ACTIONS(8454), + [anon_sym___attribute__] = ACTIONS(8456), + [anon_sym___attribute] = ACTIONS(8456), + [anon_sym_LBRACK] = ACTIONS(8454), + [anon_sym_EQ] = ACTIONS(8456), + [anon_sym_QMARK] = ACTIONS(8454), + [anon_sym_STAR_EQ] = ACTIONS(8454), + [anon_sym_SLASH_EQ] = ACTIONS(8454), + [anon_sym_PERCENT_EQ] = ACTIONS(8454), + [anon_sym_PLUS_EQ] = ACTIONS(8454), + [anon_sym_DASH_EQ] = ACTIONS(8454), + [anon_sym_LT_LT_EQ] = ACTIONS(8454), + [anon_sym_GT_GT_EQ] = ACTIONS(8454), + [anon_sym_AMP_EQ] = ACTIONS(8454), + [anon_sym_CARET_EQ] = ACTIONS(8454), + [anon_sym_PIPE_EQ] = ACTIONS(8454), + [anon_sym_and_eq] = ACTIONS(8456), + [anon_sym_or_eq] = ACTIONS(8456), + [anon_sym_xor_eq] = ACTIONS(8456), + [anon_sym_LT_EQ_GT] = ACTIONS(8454), + [anon_sym_or] = ACTIONS(8456), + [anon_sym_and] = ACTIONS(8456), + [anon_sym_bitor] = ACTIONS(8456), + [anon_sym_xor] = ACTIONS(8456), + [anon_sym_bitand] = ACTIONS(8456), + [anon_sym_not_eq] = ACTIONS(8456), + [anon_sym_DASH_DASH] = ACTIONS(8454), + [anon_sym_PLUS_PLUS] = ACTIONS(8454), + [anon_sym_DOT] = ACTIONS(8456), + [anon_sym_DOT_STAR] = ACTIONS(8454), + [anon_sym_DASH_GT] = ACTIONS(8454), + [anon_sym_L_DQUOTE] = ACTIONS(6876), + [anon_sym_u_DQUOTE] = ACTIONS(6876), + [anon_sym_U_DQUOTE] = ACTIONS(6876), + [anon_sym_u8_DQUOTE] = ACTIONS(6876), + [anon_sym_DQUOTE] = ACTIONS(6876), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6878), + [anon_sym_LR_DQUOTE] = ACTIONS(6878), + [anon_sym_uR_DQUOTE] = ACTIONS(6878), + [anon_sym_UR_DQUOTE] = ACTIONS(6878), + [anon_sym_u8R_DQUOTE] = ACTIONS(6878), + [sym_literal_suffix] = ACTIONS(8456), + }, + [STATE(3566)] = { + [sym_argument_list] = STATE(3849), + [sym_initializer_list] = STATE(3849), + [sym_new_declarator] = STATE(3645), + [sym_identifier] = ACTIONS(9256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9258), + [anon_sym_COMMA] = ACTIONS(9258), + [anon_sym_RPAREN] = ACTIONS(9258), + [aux_sym_preproc_if_token2] = ACTIONS(9258), + [aux_sym_preproc_else_token1] = ACTIONS(9258), + [aux_sym_preproc_elif_token1] = ACTIONS(9256), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9258), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9258), + [anon_sym_LPAREN2] = ACTIONS(9230), + [anon_sym_DASH] = ACTIONS(9256), + [anon_sym_PLUS] = ACTIONS(9256), + [anon_sym_STAR] = ACTIONS(9256), + [anon_sym_SLASH] = ACTIONS(9256), + [anon_sym_PERCENT] = ACTIONS(9256), + [anon_sym_PIPE_PIPE] = ACTIONS(9258), + [anon_sym_AMP_AMP] = ACTIONS(9258), + [anon_sym_PIPE] = ACTIONS(9256), + [anon_sym_CARET] = ACTIONS(9256), + [anon_sym_AMP] = ACTIONS(9256), + [anon_sym_EQ_EQ] = ACTIONS(9258), + [anon_sym_BANG_EQ] = ACTIONS(9258), + [anon_sym_GT] = ACTIONS(9256), + [anon_sym_GT_EQ] = ACTIONS(9258), + [anon_sym_LT_EQ] = ACTIONS(9256), + [anon_sym_LT] = ACTIONS(9256), + [anon_sym_LT_LT] = ACTIONS(9256), + [anon_sym_GT_GT] = ACTIONS(9256), + [anon_sym_SEMI] = ACTIONS(9258), + [anon_sym___attribute__] = ACTIONS(9256), + [anon_sym___attribute] = ACTIONS(9256), + [anon_sym_COLON] = ACTIONS(9256), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9258), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(9258), + [anon_sym_LBRACK] = ACTIONS(9232), + [anon_sym_EQ] = ACTIONS(9256), + [anon_sym_QMARK] = ACTIONS(9258), + [anon_sym_STAR_EQ] = ACTIONS(9258), + [anon_sym_SLASH_EQ] = ACTIONS(9258), + [anon_sym_PERCENT_EQ] = ACTIONS(9258), + [anon_sym_PLUS_EQ] = ACTIONS(9258), + [anon_sym_DASH_EQ] = ACTIONS(9258), + [anon_sym_LT_LT_EQ] = ACTIONS(9258), + [anon_sym_GT_GT_EQ] = ACTIONS(9258), + [anon_sym_AMP_EQ] = ACTIONS(9258), + [anon_sym_CARET_EQ] = ACTIONS(9258), + [anon_sym_PIPE_EQ] = ACTIONS(9258), + [anon_sym_and_eq] = ACTIONS(9256), + [anon_sym_or_eq] = ACTIONS(9256), + [anon_sym_xor_eq] = ACTIONS(9256), + [anon_sym_LT_EQ_GT] = ACTIONS(9258), + [anon_sym_or] = ACTIONS(9256), + [anon_sym_and] = ACTIONS(9256), + [anon_sym_bitor] = ACTIONS(9256), + [anon_sym_xor] = ACTIONS(9256), + [anon_sym_bitand] = ACTIONS(9256), + [anon_sym_not_eq] = ACTIONS(9256), + [anon_sym_DASH_DASH] = ACTIONS(9258), + [anon_sym_PLUS_PLUS] = ACTIONS(9258), + [anon_sym_DOT] = ACTIONS(9256), + [anon_sym_DOT_STAR] = ACTIONS(9258), + [anon_sym_DASH_GT] = ACTIONS(9258), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9258), + }, + [STATE(3567)] = { + [sym_string_literal] = STATE(4105), + [sym_template_argument_list] = STATE(5616), + [sym_raw_string_literal] = STATE(4105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(7101), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5638), + [anon_sym_COLON] = ACTIONS(9260), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_RBRACE] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5663), + [anon_sym_or_eq] = ACTIONS(5663), + [anon_sym_xor_eq] = ACTIONS(5663), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + }, + [STATE(3568)] = { + [sym_template_argument_list] = STATE(2938), + [sym_identifier] = ACTIONS(6565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6572), + [anon_sym_COMMA] = ACTIONS(6572), + [aux_sym_preproc_if_token2] = ACTIONS(6572), + [aux_sym_preproc_else_token1] = ACTIONS(6572), + [aux_sym_preproc_elif_token1] = ACTIONS(6565), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6572), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6572), + [anon_sym_LPAREN2] = ACTIONS(6572), + [anon_sym_DASH] = ACTIONS(6565), + [anon_sym_PLUS] = ACTIONS(6565), + [anon_sym_STAR] = ACTIONS(6572), + [anon_sym_SLASH] = ACTIONS(6565), + [anon_sym_PERCENT] = ACTIONS(6572), + [anon_sym_PIPE_PIPE] = ACTIONS(6572), + [anon_sym_AMP_AMP] = ACTIONS(6572), + [anon_sym_PIPE] = ACTIONS(6565), + [anon_sym_CARET] = ACTIONS(6572), + [anon_sym_AMP] = ACTIONS(6565), + [anon_sym_EQ_EQ] = ACTIONS(6572), + [anon_sym_BANG_EQ] = ACTIONS(6572), + [anon_sym_GT] = ACTIONS(6565), + [anon_sym_GT_EQ] = ACTIONS(6572), + [anon_sym_LT_EQ] = ACTIONS(6565), + [anon_sym_LT] = ACTIONS(9262), + [anon_sym_LT_LT] = ACTIONS(6572), + [anon_sym_GT_GT] = ACTIONS(6572), + [anon_sym___extension__] = ACTIONS(6565), + [anon_sym___attribute__] = ACTIONS(6565), + [anon_sym___attribute] = ACTIONS(6565), + [anon_sym_COLON] = ACTIONS(6565), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(6572), + [anon_sym_LBRACK] = ACTIONS(6572), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_constexpr] = ACTIONS(6565), + [anon_sym_volatile] = ACTIONS(6565), + [anon_sym_restrict] = ACTIONS(6565), + [anon_sym___restrict__] = ACTIONS(6565), + [anon_sym__Atomic] = ACTIONS(6565), + [anon_sym__Noreturn] = ACTIONS(6565), + [anon_sym_noreturn] = ACTIONS(6565), + [anon_sym__Nonnull] = ACTIONS(6565), + [anon_sym_mutable] = ACTIONS(6565), + [anon_sym_constinit] = ACTIONS(6565), + [anon_sym_consteval] = ACTIONS(6565), + [anon_sym_alignas] = ACTIONS(6565), + [anon_sym__Alignas] = ACTIONS(6565), + [anon_sym_QMARK] = ACTIONS(6572), + [anon_sym_LT_EQ_GT] = ACTIONS(6572), + [anon_sym_or] = ACTIONS(6565), + [anon_sym_and] = ACTIONS(6565), + [anon_sym_bitor] = ACTIONS(6565), + [anon_sym_xor] = ACTIONS(6565), + [anon_sym_bitand] = ACTIONS(6565), + [anon_sym_not_eq] = ACTIONS(6565), + [anon_sym_DASH_DASH] = ACTIONS(6572), + [anon_sym_PLUS_PLUS] = ACTIONS(6572), + [anon_sym_DOT] = ACTIONS(6565), + [anon_sym_DOT_STAR] = ACTIONS(6572), + [anon_sym_DASH_GT] = ACTIONS(6572), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6565), + [anon_sym_decltype] = ACTIONS(6565), + [anon_sym_final] = ACTIONS(6565), + [anon_sym_override] = ACTIONS(6565), + [anon_sym_requires] = ACTIONS(6565), + }, + [STATE(3569)] = { + [sym_attribute_specifier] = STATE(4485), + [sym_attribute_declaration] = STATE(4713), + [sym_gnu_asm_expression] = STATE(9134), + [sym_virtual_specifier] = STATE(4778), + [sym_ref_qualifier] = STATE(3658), + [sym__function_exception_specification] = STATE(4047), + [sym__function_attributes_end] = STATE(5950), + [sym__function_postfix] = STATE(5460), + [sym_trailing_return_type] = STATE(6121), + [sym_noexcept] = STATE(4047), + [sym_throw_specifier] = STATE(4047), + [sym_requires_clause] = STATE(5460), + [aux_sym_type_definition_repeat1] = STATE(4485), + [aux_sym_attributed_declarator_repeat1] = STATE(4713), + [aux_sym__function_postfix_repeat1] = STATE(4778), + [sym_identifier] = ACTIONS(7789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [aux_sym_preproc_if_token2] = ACTIONS(7791), + [aux_sym_preproc_else_token1] = ACTIONS(7791), + [aux_sym_preproc_elif_token1] = ACTIONS(7789), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7791), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7791), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(9196), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7791), + [anon_sym_AMP] = ACTIONS(9199), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7791), + [anon_sym_GT_GT] = ACTIONS(7791), + [anon_sym___attribute__] = ACTIONS(7178), + [anon_sym___attribute] = ACTIONS(7178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7789), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7789), + [anon_sym_not_eq] = ACTIONS(7789), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6497), + [anon_sym___asm__] = ACTIONS(6497), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(9202), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7283), + [anon_sym_override] = ACTIONS(7283), + [anon_sym_noexcept] = ACTIONS(7276), + [anon_sym_throw] = ACTIONS(7278), + [anon_sym_requires] = ACTIONS(7285), + }, + [STATE(3570)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7637), + [anon_sym_COMMA] = ACTIONS(7637), + [anon_sym_RPAREN] = ACTIONS(7637), + [anon_sym_LPAREN2] = ACTIONS(7637), + [anon_sym_DASH] = ACTIONS(7635), + [anon_sym_PLUS] = ACTIONS(7635), + [anon_sym_STAR] = ACTIONS(7635), + [anon_sym_SLASH] = ACTIONS(7635), + [anon_sym_PERCENT] = ACTIONS(7635), + [anon_sym_PIPE_PIPE] = ACTIONS(7637), + [anon_sym_AMP_AMP] = ACTIONS(7637), + [anon_sym_PIPE] = ACTIONS(7635), + [anon_sym_CARET] = ACTIONS(7635), + [anon_sym_AMP] = ACTIONS(7635), + [anon_sym_EQ_EQ] = ACTIONS(7637), + [anon_sym_BANG_EQ] = ACTIONS(7637), + [anon_sym_GT] = ACTIONS(7635), + [anon_sym_GT_EQ] = ACTIONS(7637), + [anon_sym_LT_EQ] = ACTIONS(7635), + [anon_sym_LT] = ACTIONS(7635), + [anon_sym_LT_LT] = ACTIONS(7635), + [anon_sym_GT_GT] = ACTIONS(7635), + [anon_sym___extension__] = ACTIONS(7637), + [anon_sym_LBRACE] = ACTIONS(7637), + [anon_sym_LBRACK] = ACTIONS(7637), + [anon_sym_EQ] = ACTIONS(7635), + [anon_sym_const] = ACTIONS(7635), + [anon_sym_constexpr] = ACTIONS(7637), + [anon_sym_volatile] = ACTIONS(7637), + [anon_sym_restrict] = ACTIONS(7637), + [anon_sym___restrict__] = ACTIONS(7637), + [anon_sym__Atomic] = ACTIONS(7637), + [anon_sym__Noreturn] = ACTIONS(7637), + [anon_sym_noreturn] = ACTIONS(7637), + [anon_sym__Nonnull] = ACTIONS(7637), + [anon_sym_mutable] = ACTIONS(7637), + [anon_sym_constinit] = ACTIONS(7637), + [anon_sym_consteval] = ACTIONS(7637), + [anon_sym_alignas] = ACTIONS(7637), + [anon_sym__Alignas] = ACTIONS(7637), + [anon_sym_QMARK] = ACTIONS(7637), + [anon_sym_STAR_EQ] = ACTIONS(7637), + [anon_sym_SLASH_EQ] = ACTIONS(7637), + [anon_sym_PERCENT_EQ] = ACTIONS(7637), + [anon_sym_PLUS_EQ] = ACTIONS(7637), + [anon_sym_DASH_EQ] = ACTIONS(7637), + [anon_sym_LT_LT_EQ] = ACTIONS(7637), + [anon_sym_GT_GT_EQ] = ACTIONS(7637), + [anon_sym_AMP_EQ] = ACTIONS(7637), + [anon_sym_CARET_EQ] = ACTIONS(7637), + [anon_sym_PIPE_EQ] = ACTIONS(7637), + [anon_sym_LT_EQ_GT] = ACTIONS(7637), + [anon_sym_or] = ACTIONS(7637), + [anon_sym_and] = ACTIONS(7637), + [anon_sym_bitor] = ACTIONS(7637), + [anon_sym_xor] = ACTIONS(7637), + [anon_sym_bitand] = ACTIONS(7637), + [anon_sym_not_eq] = ACTIONS(7637), + [anon_sym_DASH_DASH] = ACTIONS(7637), + [anon_sym_PLUS_PLUS] = ACTIONS(7637), + [anon_sym_DOT] = ACTIONS(7635), + [anon_sym_DOT_STAR] = ACTIONS(7637), + [anon_sym_DASH_GT] = ACTIONS(7635), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7637), + [anon_sym_override] = ACTIONS(7637), + [anon_sym_requires] = ACTIONS(7637), + [anon_sym_DASH_GT_STAR] = ACTIONS(7637), + }, + [STATE(3571)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7641), + [anon_sym_COMMA] = ACTIONS(7641), + [anon_sym_RPAREN] = ACTIONS(7641), + [anon_sym_LPAREN2] = ACTIONS(7641), + [anon_sym_DASH] = ACTIONS(7639), + [anon_sym_PLUS] = ACTIONS(7639), + [anon_sym_STAR] = ACTIONS(7639), + [anon_sym_SLASH] = ACTIONS(7639), + [anon_sym_PERCENT] = ACTIONS(7639), + [anon_sym_PIPE_PIPE] = ACTIONS(7641), + [anon_sym_AMP_AMP] = ACTIONS(7641), + [anon_sym_PIPE] = ACTIONS(7639), + [anon_sym_CARET] = ACTIONS(7639), + [anon_sym_AMP] = ACTIONS(7639), + [anon_sym_EQ_EQ] = ACTIONS(7641), + [anon_sym_BANG_EQ] = ACTIONS(7641), + [anon_sym_GT] = ACTIONS(7639), + [anon_sym_GT_EQ] = ACTIONS(7641), + [anon_sym_LT_EQ] = ACTIONS(7639), + [anon_sym_LT] = ACTIONS(7639), + [anon_sym_LT_LT] = ACTIONS(7639), + [anon_sym_GT_GT] = ACTIONS(7639), + [anon_sym___extension__] = ACTIONS(7641), + [anon_sym_LBRACE] = ACTIONS(7641), + [anon_sym_LBRACK] = ACTIONS(7641), + [anon_sym_EQ] = ACTIONS(7639), + [anon_sym_const] = ACTIONS(7639), + [anon_sym_constexpr] = ACTIONS(7641), + [anon_sym_volatile] = ACTIONS(7641), + [anon_sym_restrict] = ACTIONS(7641), + [anon_sym___restrict__] = ACTIONS(7641), + [anon_sym__Atomic] = ACTIONS(7641), + [anon_sym__Noreturn] = ACTIONS(7641), + [anon_sym_noreturn] = ACTIONS(7641), + [anon_sym__Nonnull] = ACTIONS(7641), + [anon_sym_mutable] = ACTIONS(7641), + [anon_sym_constinit] = ACTIONS(7641), + [anon_sym_consteval] = ACTIONS(7641), + [anon_sym_alignas] = ACTIONS(7641), + [anon_sym__Alignas] = ACTIONS(7641), + [anon_sym_QMARK] = ACTIONS(7641), + [anon_sym_STAR_EQ] = ACTIONS(7641), + [anon_sym_SLASH_EQ] = ACTIONS(7641), + [anon_sym_PERCENT_EQ] = ACTIONS(7641), + [anon_sym_PLUS_EQ] = ACTIONS(7641), + [anon_sym_DASH_EQ] = ACTIONS(7641), + [anon_sym_LT_LT_EQ] = ACTIONS(7641), + [anon_sym_GT_GT_EQ] = ACTIONS(7641), + [anon_sym_AMP_EQ] = ACTIONS(7641), + [anon_sym_CARET_EQ] = ACTIONS(7641), + [anon_sym_PIPE_EQ] = ACTIONS(7641), + [anon_sym_LT_EQ_GT] = ACTIONS(7641), + [anon_sym_or] = ACTIONS(7641), + [anon_sym_and] = ACTIONS(7641), + [anon_sym_bitor] = ACTIONS(7641), + [anon_sym_xor] = ACTIONS(7641), + [anon_sym_bitand] = ACTIONS(7641), + [anon_sym_not_eq] = ACTIONS(7641), + [anon_sym_DASH_DASH] = ACTIONS(7641), + [anon_sym_PLUS_PLUS] = ACTIONS(7641), + [anon_sym_DOT] = ACTIONS(7639), + [anon_sym_DOT_STAR] = ACTIONS(7641), + [anon_sym_DASH_GT] = ACTIONS(7639), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7641), + [anon_sym_override] = ACTIONS(7641), + [anon_sym_requires] = ACTIONS(7641), + [anon_sym_DASH_GT_STAR] = ACTIONS(7641), + }, + [STATE(3572)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7657), + [anon_sym_COMMA] = ACTIONS(7657), + [anon_sym_RPAREN] = ACTIONS(7657), + [anon_sym_LPAREN2] = ACTIONS(7657), + [anon_sym_DASH] = ACTIONS(7655), + [anon_sym_PLUS] = ACTIONS(7655), + [anon_sym_STAR] = ACTIONS(7655), + [anon_sym_SLASH] = ACTIONS(7655), + [anon_sym_PERCENT] = ACTIONS(7655), + [anon_sym_PIPE_PIPE] = ACTIONS(7657), + [anon_sym_AMP_AMP] = ACTIONS(7657), + [anon_sym_PIPE] = ACTIONS(7655), + [anon_sym_CARET] = ACTIONS(7655), + [anon_sym_AMP] = ACTIONS(7655), + [anon_sym_EQ_EQ] = ACTIONS(7657), + [anon_sym_BANG_EQ] = ACTIONS(7657), + [anon_sym_GT] = ACTIONS(7655), + [anon_sym_GT_EQ] = ACTIONS(7657), + [anon_sym_LT_EQ] = ACTIONS(7655), + [anon_sym_LT] = ACTIONS(7655), + [anon_sym_LT_LT] = ACTIONS(7655), + [anon_sym_GT_GT] = ACTIONS(7655), + [anon_sym___extension__] = ACTIONS(7657), + [anon_sym_LBRACE] = ACTIONS(7657), + [anon_sym_LBRACK] = ACTIONS(7657), + [anon_sym_EQ] = ACTIONS(7655), + [anon_sym_const] = ACTIONS(7655), + [anon_sym_constexpr] = ACTIONS(7657), + [anon_sym_volatile] = ACTIONS(7657), + [anon_sym_restrict] = ACTIONS(7657), + [anon_sym___restrict__] = ACTIONS(7657), + [anon_sym__Atomic] = ACTIONS(7657), + [anon_sym__Noreturn] = ACTIONS(7657), + [anon_sym_noreturn] = ACTIONS(7657), + [anon_sym__Nonnull] = ACTIONS(7657), + [anon_sym_mutable] = ACTIONS(7657), + [anon_sym_constinit] = ACTIONS(7657), + [anon_sym_consteval] = ACTIONS(7657), + [anon_sym_alignas] = ACTIONS(7657), + [anon_sym__Alignas] = ACTIONS(7657), + [anon_sym_QMARK] = ACTIONS(7657), + [anon_sym_STAR_EQ] = ACTIONS(7657), + [anon_sym_SLASH_EQ] = ACTIONS(7657), + [anon_sym_PERCENT_EQ] = ACTIONS(7657), + [anon_sym_PLUS_EQ] = ACTIONS(7657), + [anon_sym_DASH_EQ] = ACTIONS(7657), + [anon_sym_LT_LT_EQ] = ACTIONS(7657), + [anon_sym_GT_GT_EQ] = ACTIONS(7657), + [anon_sym_AMP_EQ] = ACTIONS(7657), + [anon_sym_CARET_EQ] = ACTIONS(7657), + [anon_sym_PIPE_EQ] = ACTIONS(7657), + [anon_sym_LT_EQ_GT] = ACTIONS(7657), + [anon_sym_or] = ACTIONS(7657), + [anon_sym_and] = ACTIONS(7657), + [anon_sym_bitor] = ACTIONS(7657), + [anon_sym_xor] = ACTIONS(7657), + [anon_sym_bitand] = ACTIONS(7657), + [anon_sym_not_eq] = ACTIONS(7657), + [anon_sym_DASH_DASH] = ACTIONS(7657), + [anon_sym_PLUS_PLUS] = ACTIONS(7657), + [anon_sym_DOT] = ACTIONS(7655), + [anon_sym_DOT_STAR] = ACTIONS(7657), + [anon_sym_DASH_GT] = ACTIONS(7655), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7657), + [anon_sym_override] = ACTIONS(7657), + [anon_sym_requires] = ACTIONS(7657), + [anon_sym_DASH_GT_STAR] = ACTIONS(7657), + }, + [STATE(3573)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7665), + [anon_sym_COMMA] = ACTIONS(7665), + [anon_sym_RPAREN] = ACTIONS(7665), + [anon_sym_LPAREN2] = ACTIONS(7665), + [anon_sym_DASH] = ACTIONS(7663), + [anon_sym_PLUS] = ACTIONS(7663), + [anon_sym_STAR] = ACTIONS(7663), + [anon_sym_SLASH] = ACTIONS(7663), + [anon_sym_PERCENT] = ACTIONS(7663), + [anon_sym_PIPE_PIPE] = ACTIONS(7665), + [anon_sym_AMP_AMP] = ACTIONS(7665), + [anon_sym_PIPE] = ACTIONS(7663), + [anon_sym_CARET] = ACTIONS(7663), + [anon_sym_AMP] = ACTIONS(7663), + [anon_sym_EQ_EQ] = ACTIONS(7665), + [anon_sym_BANG_EQ] = ACTIONS(7665), + [anon_sym_GT] = ACTIONS(7663), + [anon_sym_GT_EQ] = ACTIONS(7665), + [anon_sym_LT_EQ] = ACTIONS(7663), + [anon_sym_LT] = ACTIONS(7663), + [anon_sym_LT_LT] = ACTIONS(7663), + [anon_sym_GT_GT] = ACTIONS(7663), + [anon_sym___extension__] = ACTIONS(7665), + [anon_sym_LBRACE] = ACTIONS(7665), + [anon_sym_LBRACK] = ACTIONS(7665), + [anon_sym_EQ] = ACTIONS(7663), + [anon_sym_const] = ACTIONS(7663), + [anon_sym_constexpr] = ACTIONS(7665), + [anon_sym_volatile] = ACTIONS(7665), + [anon_sym_restrict] = ACTIONS(7665), + [anon_sym___restrict__] = ACTIONS(7665), + [anon_sym__Atomic] = ACTIONS(7665), + [anon_sym__Noreturn] = ACTIONS(7665), + [anon_sym_noreturn] = ACTIONS(7665), + [anon_sym__Nonnull] = ACTIONS(7665), + [anon_sym_mutable] = ACTIONS(7665), + [anon_sym_constinit] = ACTIONS(7665), + [anon_sym_consteval] = ACTIONS(7665), + [anon_sym_alignas] = ACTIONS(7665), + [anon_sym__Alignas] = ACTIONS(7665), + [anon_sym_QMARK] = ACTIONS(7665), + [anon_sym_STAR_EQ] = ACTIONS(7665), + [anon_sym_SLASH_EQ] = ACTIONS(7665), + [anon_sym_PERCENT_EQ] = ACTIONS(7665), + [anon_sym_PLUS_EQ] = ACTIONS(7665), + [anon_sym_DASH_EQ] = ACTIONS(7665), + [anon_sym_LT_LT_EQ] = ACTIONS(7665), + [anon_sym_GT_GT_EQ] = ACTIONS(7665), + [anon_sym_AMP_EQ] = ACTIONS(7665), + [anon_sym_CARET_EQ] = ACTIONS(7665), + [anon_sym_PIPE_EQ] = ACTIONS(7665), + [anon_sym_LT_EQ_GT] = ACTIONS(7665), + [anon_sym_or] = ACTIONS(7665), + [anon_sym_and] = ACTIONS(7665), + [anon_sym_bitor] = ACTIONS(7665), + [anon_sym_xor] = ACTIONS(7665), + [anon_sym_bitand] = ACTIONS(7665), + [anon_sym_not_eq] = ACTIONS(7665), + [anon_sym_DASH_DASH] = ACTIONS(7665), + [anon_sym_PLUS_PLUS] = ACTIONS(7665), + [anon_sym_DOT] = ACTIONS(7663), + [anon_sym_DOT_STAR] = ACTIONS(7665), + [anon_sym_DASH_GT] = ACTIONS(7663), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7665), + [anon_sym_override] = ACTIONS(7665), + [anon_sym_requires] = ACTIONS(7665), + [anon_sym_DASH_GT_STAR] = ACTIONS(7665), + }, + [STATE(3574)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7669), + [anon_sym_COMMA] = ACTIONS(7669), + [anon_sym_RPAREN] = ACTIONS(7669), + [anon_sym_LPAREN2] = ACTIONS(7669), + [anon_sym_DASH] = ACTIONS(7667), + [anon_sym_PLUS] = ACTIONS(7667), + [anon_sym_STAR] = ACTIONS(7667), + [anon_sym_SLASH] = ACTIONS(7667), + [anon_sym_PERCENT] = ACTIONS(7667), + [anon_sym_PIPE_PIPE] = ACTIONS(7669), + [anon_sym_AMP_AMP] = ACTIONS(7669), + [anon_sym_PIPE] = ACTIONS(7667), + [anon_sym_CARET] = ACTIONS(7667), + [anon_sym_AMP] = ACTIONS(7667), + [anon_sym_EQ_EQ] = ACTIONS(7669), + [anon_sym_BANG_EQ] = ACTIONS(7669), + [anon_sym_GT] = ACTIONS(7667), + [anon_sym_GT_EQ] = ACTIONS(7669), + [anon_sym_LT_EQ] = ACTIONS(7667), + [anon_sym_LT] = ACTIONS(7667), + [anon_sym_LT_LT] = ACTIONS(7667), + [anon_sym_GT_GT] = ACTIONS(7667), + [anon_sym___extension__] = ACTIONS(7669), + [anon_sym_LBRACE] = ACTIONS(7669), + [anon_sym_LBRACK] = ACTIONS(7669), + [anon_sym_EQ] = ACTIONS(7667), + [anon_sym_const] = ACTIONS(7667), + [anon_sym_constexpr] = ACTIONS(7669), + [anon_sym_volatile] = ACTIONS(7669), + [anon_sym_restrict] = ACTIONS(7669), + [anon_sym___restrict__] = ACTIONS(7669), + [anon_sym__Atomic] = ACTIONS(7669), + [anon_sym__Noreturn] = ACTIONS(7669), + [anon_sym_noreturn] = ACTIONS(7669), + [anon_sym__Nonnull] = ACTIONS(7669), + [anon_sym_mutable] = ACTIONS(7669), + [anon_sym_constinit] = ACTIONS(7669), + [anon_sym_consteval] = ACTIONS(7669), + [anon_sym_alignas] = ACTIONS(7669), + [anon_sym__Alignas] = ACTIONS(7669), + [anon_sym_QMARK] = ACTIONS(7669), + [anon_sym_STAR_EQ] = ACTIONS(7669), + [anon_sym_SLASH_EQ] = ACTIONS(7669), + [anon_sym_PERCENT_EQ] = ACTIONS(7669), + [anon_sym_PLUS_EQ] = ACTIONS(7669), + [anon_sym_DASH_EQ] = ACTIONS(7669), + [anon_sym_LT_LT_EQ] = ACTIONS(7669), + [anon_sym_GT_GT_EQ] = ACTIONS(7669), + [anon_sym_AMP_EQ] = ACTIONS(7669), + [anon_sym_CARET_EQ] = ACTIONS(7669), + [anon_sym_PIPE_EQ] = ACTIONS(7669), + [anon_sym_LT_EQ_GT] = ACTIONS(7669), + [anon_sym_or] = ACTIONS(7669), + [anon_sym_and] = ACTIONS(7669), + [anon_sym_bitor] = ACTIONS(7669), + [anon_sym_xor] = ACTIONS(7669), + [anon_sym_bitand] = ACTIONS(7669), + [anon_sym_not_eq] = ACTIONS(7669), + [anon_sym_DASH_DASH] = ACTIONS(7669), + [anon_sym_PLUS_PLUS] = ACTIONS(7669), + [anon_sym_DOT] = ACTIONS(7667), + [anon_sym_DOT_STAR] = ACTIONS(7669), + [anon_sym_DASH_GT] = ACTIONS(7667), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7669), + [anon_sym_override] = ACTIONS(7669), + [anon_sym_requires] = ACTIONS(7669), + [anon_sym_DASH_GT_STAR] = ACTIONS(7669), + }, + [STATE(3575)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7673), + [anon_sym_COMMA] = ACTIONS(7673), + [anon_sym_RPAREN] = ACTIONS(7673), + [anon_sym_LPAREN2] = ACTIONS(7673), + [anon_sym_DASH] = ACTIONS(7671), + [anon_sym_PLUS] = ACTIONS(7671), + [anon_sym_STAR] = ACTIONS(7671), + [anon_sym_SLASH] = ACTIONS(7671), + [anon_sym_PERCENT] = ACTIONS(7671), + [anon_sym_PIPE_PIPE] = ACTIONS(7673), + [anon_sym_AMP_AMP] = ACTIONS(7673), + [anon_sym_PIPE] = ACTIONS(7671), + [anon_sym_CARET] = ACTIONS(7671), + [anon_sym_AMP] = ACTIONS(7671), + [anon_sym_EQ_EQ] = ACTIONS(7673), + [anon_sym_BANG_EQ] = ACTIONS(7673), + [anon_sym_GT] = ACTIONS(7671), + [anon_sym_GT_EQ] = ACTIONS(7673), + [anon_sym_LT_EQ] = ACTIONS(7671), + [anon_sym_LT] = ACTIONS(7671), + [anon_sym_LT_LT] = ACTIONS(7671), + [anon_sym_GT_GT] = ACTIONS(7671), + [anon_sym___extension__] = ACTIONS(7673), + [anon_sym_LBRACE] = ACTIONS(7673), + [anon_sym_LBRACK] = ACTIONS(7673), + [anon_sym_EQ] = ACTIONS(7671), + [anon_sym_const] = ACTIONS(7671), + [anon_sym_constexpr] = ACTIONS(7673), + [anon_sym_volatile] = ACTIONS(7673), + [anon_sym_restrict] = ACTIONS(7673), + [anon_sym___restrict__] = ACTIONS(7673), + [anon_sym__Atomic] = ACTIONS(7673), + [anon_sym__Noreturn] = ACTIONS(7673), + [anon_sym_noreturn] = ACTIONS(7673), + [anon_sym__Nonnull] = ACTIONS(7673), + [anon_sym_mutable] = ACTIONS(7673), + [anon_sym_constinit] = ACTIONS(7673), + [anon_sym_consteval] = ACTIONS(7673), + [anon_sym_alignas] = ACTIONS(7673), + [anon_sym__Alignas] = ACTIONS(7673), + [anon_sym_QMARK] = ACTIONS(7673), + [anon_sym_STAR_EQ] = ACTIONS(7673), + [anon_sym_SLASH_EQ] = ACTIONS(7673), + [anon_sym_PERCENT_EQ] = ACTIONS(7673), + [anon_sym_PLUS_EQ] = ACTIONS(7673), + [anon_sym_DASH_EQ] = ACTIONS(7673), + [anon_sym_LT_LT_EQ] = ACTIONS(7673), + [anon_sym_GT_GT_EQ] = ACTIONS(7673), + [anon_sym_AMP_EQ] = ACTIONS(7673), + [anon_sym_CARET_EQ] = ACTIONS(7673), + [anon_sym_PIPE_EQ] = ACTIONS(7673), + [anon_sym_LT_EQ_GT] = ACTIONS(7673), + [anon_sym_or] = ACTIONS(7673), + [anon_sym_and] = ACTIONS(7673), + [anon_sym_bitor] = ACTIONS(7673), + [anon_sym_xor] = ACTIONS(7673), + [anon_sym_bitand] = ACTIONS(7673), + [anon_sym_not_eq] = ACTIONS(7673), + [anon_sym_DASH_DASH] = ACTIONS(7673), + [anon_sym_PLUS_PLUS] = ACTIONS(7673), + [anon_sym_DOT] = ACTIONS(7671), + [anon_sym_DOT_STAR] = ACTIONS(7673), + [anon_sym_DASH_GT] = ACTIONS(7671), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7673), + [anon_sym_override] = ACTIONS(7673), + [anon_sym_requires] = ACTIONS(7673), + [anon_sym_DASH_GT_STAR] = ACTIONS(7673), + }, + [STATE(3576)] = { + [sym_string_literal] = STATE(3576), + [sym_raw_string_literal] = STATE(3576), + [aux_sym_concatenated_string_repeat1] = STATE(3576), + [sym_identifier] = ACTIONS(9265), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8406), + [anon_sym_COMMA] = ACTIONS(8406), + [anon_sym_LPAREN2] = ACTIONS(8406), + [anon_sym_DASH] = ACTIONS(8408), + [anon_sym_PLUS] = ACTIONS(8408), + [anon_sym_STAR] = ACTIONS(8408), + [anon_sym_SLASH] = ACTIONS(8408), + [anon_sym_PERCENT] = ACTIONS(8408), + [anon_sym_PIPE_PIPE] = ACTIONS(8406), + [anon_sym_AMP_AMP] = ACTIONS(8406), + [anon_sym_PIPE] = ACTIONS(8408), + [anon_sym_CARET] = ACTIONS(8408), + [anon_sym_AMP] = ACTIONS(8408), + [anon_sym_EQ_EQ] = ACTIONS(8406), + [anon_sym_BANG_EQ] = ACTIONS(8406), + [anon_sym_GT] = ACTIONS(8408), + [anon_sym_GT_EQ] = ACTIONS(8406), + [anon_sym_LT_EQ] = ACTIONS(8408), + [anon_sym_LT] = ACTIONS(8408), + [anon_sym_LT_LT] = ACTIONS(8408), + [anon_sym_GT_GT] = ACTIONS(8408), + [anon_sym_SEMI] = ACTIONS(8406), + [anon_sym___attribute__] = ACTIONS(8408), + [anon_sym___attribute] = ACTIONS(8408), + [anon_sym_LBRACK] = ACTIONS(8406), + [anon_sym_EQ] = ACTIONS(8408), + [anon_sym_QMARK] = ACTIONS(8406), + [anon_sym_STAR_EQ] = ACTIONS(8406), + [anon_sym_SLASH_EQ] = ACTIONS(8406), + [anon_sym_PERCENT_EQ] = ACTIONS(8406), + [anon_sym_PLUS_EQ] = ACTIONS(8406), + [anon_sym_DASH_EQ] = ACTIONS(8406), + [anon_sym_LT_LT_EQ] = ACTIONS(8406), + [anon_sym_GT_GT_EQ] = ACTIONS(8406), + [anon_sym_AMP_EQ] = ACTIONS(8406), + [anon_sym_CARET_EQ] = ACTIONS(8406), + [anon_sym_PIPE_EQ] = ACTIONS(8406), + [anon_sym_and_eq] = ACTIONS(8408), + [anon_sym_or_eq] = ACTIONS(8408), + [anon_sym_xor_eq] = ACTIONS(8408), + [anon_sym_LT_EQ_GT] = ACTIONS(8406), + [anon_sym_or] = ACTIONS(8408), + [anon_sym_and] = ACTIONS(8408), + [anon_sym_bitor] = ACTIONS(8408), + [anon_sym_xor] = ACTIONS(8408), + [anon_sym_bitand] = ACTIONS(8408), + [anon_sym_not_eq] = ACTIONS(8408), + [anon_sym_DASH_DASH] = ACTIONS(8406), + [anon_sym_PLUS_PLUS] = ACTIONS(8406), + [anon_sym_DOT] = ACTIONS(8408), + [anon_sym_DOT_STAR] = ACTIONS(8406), + [anon_sym_DASH_GT] = ACTIONS(8406), + [anon_sym_L_DQUOTE] = ACTIONS(9268), + [anon_sym_u_DQUOTE] = ACTIONS(9268), + [anon_sym_U_DQUOTE] = ACTIONS(9268), + [anon_sym_u8_DQUOTE] = ACTIONS(9268), + [anon_sym_DQUOTE] = ACTIONS(9268), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(9271), + [anon_sym_LR_DQUOTE] = ACTIONS(9271), + [anon_sym_uR_DQUOTE] = ACTIONS(9271), + [anon_sym_UR_DQUOTE] = ACTIONS(9271), + [anon_sym_u8R_DQUOTE] = ACTIONS(9271), + [sym_literal_suffix] = ACTIONS(8408), + }, + [STATE(3577)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7769), + [anon_sym_COMMA] = ACTIONS(7769), + [anon_sym_RPAREN] = ACTIONS(7769), + [anon_sym_LPAREN2] = ACTIONS(7769), + [anon_sym_DASH] = ACTIONS(7767), + [anon_sym_PLUS] = ACTIONS(7767), + [anon_sym_STAR] = ACTIONS(7767), + [anon_sym_SLASH] = ACTIONS(7767), + [anon_sym_PERCENT] = ACTIONS(7767), + [anon_sym_PIPE_PIPE] = ACTIONS(7769), + [anon_sym_AMP_AMP] = ACTIONS(7769), + [anon_sym_PIPE] = ACTIONS(7767), + [anon_sym_CARET] = ACTIONS(7767), + [anon_sym_AMP] = ACTIONS(7767), + [anon_sym_EQ_EQ] = ACTIONS(7769), + [anon_sym_BANG_EQ] = ACTIONS(7769), + [anon_sym_GT] = ACTIONS(7767), + [anon_sym_GT_EQ] = ACTIONS(7769), + [anon_sym_LT_EQ] = ACTIONS(7767), + [anon_sym_LT] = ACTIONS(7767), + [anon_sym_LT_LT] = ACTIONS(7767), + [anon_sym_GT_GT] = ACTIONS(7767), + [anon_sym___extension__] = ACTIONS(7769), + [anon_sym_LBRACE] = ACTIONS(7769), + [anon_sym_LBRACK] = ACTIONS(7769), + [anon_sym_EQ] = ACTIONS(7767), + [anon_sym_const] = ACTIONS(7767), + [anon_sym_constexpr] = ACTIONS(7769), + [anon_sym_volatile] = ACTIONS(7769), + [anon_sym_restrict] = ACTIONS(7769), + [anon_sym___restrict__] = ACTIONS(7769), + [anon_sym__Atomic] = ACTIONS(7769), + [anon_sym__Noreturn] = ACTIONS(7769), + [anon_sym_noreturn] = ACTIONS(7769), + [anon_sym__Nonnull] = ACTIONS(7769), + [anon_sym_mutable] = ACTIONS(7769), + [anon_sym_constinit] = ACTIONS(7769), + [anon_sym_consteval] = ACTIONS(7769), + [anon_sym_alignas] = ACTIONS(7769), + [anon_sym__Alignas] = ACTIONS(7769), + [anon_sym_QMARK] = ACTIONS(7769), + [anon_sym_STAR_EQ] = ACTIONS(7769), + [anon_sym_SLASH_EQ] = ACTIONS(7769), + [anon_sym_PERCENT_EQ] = ACTIONS(7769), + [anon_sym_PLUS_EQ] = ACTIONS(7769), + [anon_sym_DASH_EQ] = ACTIONS(7769), + [anon_sym_LT_LT_EQ] = ACTIONS(7769), + [anon_sym_GT_GT_EQ] = ACTIONS(7769), + [anon_sym_AMP_EQ] = ACTIONS(7769), + [anon_sym_CARET_EQ] = ACTIONS(7769), + [anon_sym_PIPE_EQ] = ACTIONS(7769), + [anon_sym_LT_EQ_GT] = ACTIONS(7769), + [anon_sym_or] = ACTIONS(7769), + [anon_sym_and] = ACTIONS(7769), + [anon_sym_bitor] = ACTIONS(7769), + [anon_sym_xor] = ACTIONS(7769), + [anon_sym_bitand] = ACTIONS(7769), + [anon_sym_not_eq] = ACTIONS(7769), + [anon_sym_DASH_DASH] = ACTIONS(7769), + [anon_sym_PLUS_PLUS] = ACTIONS(7769), + [anon_sym_DOT] = ACTIONS(7767), + [anon_sym_DOT_STAR] = ACTIONS(7769), + [anon_sym_DASH_GT] = ACTIONS(7767), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7769), + [anon_sym_override] = ACTIONS(7769), + [anon_sym_requires] = ACTIONS(7769), + [anon_sym_DASH_GT_STAR] = ACTIONS(7769), + }, + [STATE(3578)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7773), + [anon_sym_COMMA] = ACTIONS(7773), + [anon_sym_RPAREN] = ACTIONS(7773), + [anon_sym_LPAREN2] = ACTIONS(7773), + [anon_sym_DASH] = ACTIONS(7771), + [anon_sym_PLUS] = ACTIONS(7771), + [anon_sym_STAR] = ACTIONS(7771), + [anon_sym_SLASH] = ACTIONS(7771), + [anon_sym_PERCENT] = ACTIONS(7771), + [anon_sym_PIPE_PIPE] = ACTIONS(7773), + [anon_sym_AMP_AMP] = ACTIONS(7773), + [anon_sym_PIPE] = ACTIONS(7771), + [anon_sym_CARET] = ACTIONS(7771), + [anon_sym_AMP] = ACTIONS(7771), + [anon_sym_EQ_EQ] = ACTIONS(7773), + [anon_sym_BANG_EQ] = ACTIONS(7773), + [anon_sym_GT] = ACTIONS(7771), + [anon_sym_GT_EQ] = ACTIONS(7773), + [anon_sym_LT_EQ] = ACTIONS(7771), + [anon_sym_LT] = ACTIONS(7771), + [anon_sym_LT_LT] = ACTIONS(7771), + [anon_sym_GT_GT] = ACTIONS(7771), + [anon_sym___extension__] = ACTIONS(7773), + [anon_sym_LBRACE] = ACTIONS(7773), + [anon_sym_LBRACK] = ACTIONS(7773), + [anon_sym_EQ] = ACTIONS(7771), + [anon_sym_const] = ACTIONS(7771), + [anon_sym_constexpr] = ACTIONS(7773), + [anon_sym_volatile] = ACTIONS(7773), + [anon_sym_restrict] = ACTIONS(7773), + [anon_sym___restrict__] = ACTIONS(7773), + [anon_sym__Atomic] = ACTIONS(7773), + [anon_sym__Noreturn] = ACTIONS(7773), + [anon_sym_noreturn] = ACTIONS(7773), + [anon_sym__Nonnull] = ACTIONS(7773), + [anon_sym_mutable] = ACTIONS(7773), + [anon_sym_constinit] = ACTIONS(7773), + [anon_sym_consteval] = ACTIONS(7773), + [anon_sym_alignas] = ACTIONS(7773), + [anon_sym__Alignas] = ACTIONS(7773), + [anon_sym_QMARK] = ACTIONS(7773), + [anon_sym_STAR_EQ] = ACTIONS(7773), + [anon_sym_SLASH_EQ] = ACTIONS(7773), + [anon_sym_PERCENT_EQ] = ACTIONS(7773), + [anon_sym_PLUS_EQ] = ACTIONS(7773), + [anon_sym_DASH_EQ] = ACTIONS(7773), + [anon_sym_LT_LT_EQ] = ACTIONS(7773), + [anon_sym_GT_GT_EQ] = ACTIONS(7773), + [anon_sym_AMP_EQ] = ACTIONS(7773), + [anon_sym_CARET_EQ] = ACTIONS(7773), + [anon_sym_PIPE_EQ] = ACTIONS(7773), + [anon_sym_LT_EQ_GT] = ACTIONS(7773), + [anon_sym_or] = ACTIONS(7773), + [anon_sym_and] = ACTIONS(7773), + [anon_sym_bitor] = ACTIONS(7773), + [anon_sym_xor] = ACTIONS(7773), + [anon_sym_bitand] = ACTIONS(7773), + [anon_sym_not_eq] = ACTIONS(7773), + [anon_sym_DASH_DASH] = ACTIONS(7773), + [anon_sym_PLUS_PLUS] = ACTIONS(7773), + [anon_sym_DOT] = ACTIONS(7771), + [anon_sym_DOT_STAR] = ACTIONS(7773), + [anon_sym_DASH_GT] = ACTIONS(7771), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7773), + [anon_sym_override] = ACTIONS(7773), + [anon_sym_requires] = ACTIONS(7773), + [anon_sym_DASH_GT_STAR] = ACTIONS(7773), + }, + [STATE(3579)] = { + [sym__abstract_declarator] = STATE(6346), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(2488), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2072), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(2488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(8487), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6823), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(8489), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6823), + [anon_sym_AMP] = ACTIONS(8491), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6823), + [anon_sym_GT_GT] = ACTIONS(6823), + [anon_sym_SEMI] = ACTIONS(6823), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym_COLON] = ACTIONS(6821), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6823), + [anon_sym_RBRACE] = ACTIONS(6823), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6823), + [anon_sym_and] = ACTIONS(6823), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6823), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6823), + }, + [STATE(3580)] = { + [sym__abstract_declarator] = STATE(6336), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(2488), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2072), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(2488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), + [anon_sym_COMMA] = ACTIONS(7355), + [anon_sym_RPAREN] = ACTIONS(7355), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7353), + [anon_sym_PLUS] = ACTIONS(7353), + [anon_sym_STAR] = ACTIONS(8487), + [anon_sym_SLASH] = ACTIONS(7353), + [anon_sym_PERCENT] = ACTIONS(7355), + [anon_sym_PIPE_PIPE] = ACTIONS(7355), + [anon_sym_AMP_AMP] = ACTIONS(8489), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_CARET] = ACTIONS(7355), + [anon_sym_AMP] = ACTIONS(8491), + [anon_sym_EQ_EQ] = ACTIONS(7355), + [anon_sym_BANG_EQ] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_EQ] = ACTIONS(7355), + [anon_sym_LT_EQ] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_LT_LT] = ACTIONS(7355), + [anon_sym_GT_GT] = ACTIONS(7355), + [anon_sym_SEMI] = ACTIONS(7355), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym_COLON] = ACTIONS(7353), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7355), + [anon_sym_RBRACE] = ACTIONS(7355), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(7355), + [anon_sym_LT_EQ_GT] = ACTIONS(7355), + [anon_sym_or] = ACTIONS(7355), + [anon_sym_and] = ACTIONS(7355), + [anon_sym_bitor] = ACTIONS(7355), + [anon_sym_xor] = ACTIONS(7355), + [anon_sym_bitand] = ACTIONS(7355), + [anon_sym_not_eq] = ACTIONS(7355), + [anon_sym_DASH_DASH] = ACTIONS(7355), + [anon_sym_PLUS_PLUS] = ACTIONS(7355), + [anon_sym_DOT] = ACTIONS(7353), + [anon_sym_DOT_STAR] = ACTIONS(7355), + [anon_sym_DASH_GT] = ACTIONS(7355), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7355), + }, + [STATE(3581)] = { + [sym_argument_list] = STATE(3847), + [sym_initializer_list] = STATE(3847), + [sym_new_declarator] = STATE(3647), + [sym_identifier] = ACTIONS(9274), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9276), + [anon_sym_COMMA] = ACTIONS(9276), + [anon_sym_RPAREN] = ACTIONS(9276), + [aux_sym_preproc_if_token2] = ACTIONS(9276), + [aux_sym_preproc_else_token1] = ACTIONS(9276), + [aux_sym_preproc_elif_token1] = ACTIONS(9274), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9276), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9276), + [anon_sym_LPAREN2] = ACTIONS(9230), + [anon_sym_DASH] = ACTIONS(9274), + [anon_sym_PLUS] = ACTIONS(9274), + [anon_sym_STAR] = ACTIONS(9274), + [anon_sym_SLASH] = ACTIONS(9274), + [anon_sym_PERCENT] = ACTIONS(9274), + [anon_sym_PIPE_PIPE] = ACTIONS(9276), + [anon_sym_AMP_AMP] = ACTIONS(9276), + [anon_sym_PIPE] = ACTIONS(9274), + [anon_sym_CARET] = ACTIONS(9274), + [anon_sym_AMP] = ACTIONS(9274), + [anon_sym_EQ_EQ] = ACTIONS(9276), + [anon_sym_BANG_EQ] = ACTIONS(9276), + [anon_sym_GT] = ACTIONS(9274), + [anon_sym_GT_EQ] = ACTIONS(9276), + [anon_sym_LT_EQ] = ACTIONS(9274), + [anon_sym_LT] = ACTIONS(9274), + [anon_sym_LT_LT] = ACTIONS(9274), + [anon_sym_GT_GT] = ACTIONS(9274), + [anon_sym_SEMI] = ACTIONS(9276), + [anon_sym___attribute__] = ACTIONS(9274), + [anon_sym___attribute] = ACTIONS(9274), + [anon_sym_COLON] = ACTIONS(9274), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9276), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(9276), + [anon_sym_LBRACK] = ACTIONS(9232), + [anon_sym_EQ] = ACTIONS(9274), + [anon_sym_QMARK] = ACTIONS(9276), + [anon_sym_STAR_EQ] = ACTIONS(9276), + [anon_sym_SLASH_EQ] = ACTIONS(9276), + [anon_sym_PERCENT_EQ] = ACTIONS(9276), + [anon_sym_PLUS_EQ] = ACTIONS(9276), + [anon_sym_DASH_EQ] = ACTIONS(9276), + [anon_sym_LT_LT_EQ] = ACTIONS(9276), + [anon_sym_GT_GT_EQ] = ACTIONS(9276), + [anon_sym_AMP_EQ] = ACTIONS(9276), + [anon_sym_CARET_EQ] = ACTIONS(9276), + [anon_sym_PIPE_EQ] = ACTIONS(9276), + [anon_sym_and_eq] = ACTIONS(9274), + [anon_sym_or_eq] = ACTIONS(9274), + [anon_sym_xor_eq] = ACTIONS(9274), + [anon_sym_LT_EQ_GT] = ACTIONS(9276), + [anon_sym_or] = ACTIONS(9274), + [anon_sym_and] = ACTIONS(9274), + [anon_sym_bitor] = ACTIONS(9274), + [anon_sym_xor] = ACTIONS(9274), + [anon_sym_bitand] = ACTIONS(9274), + [anon_sym_not_eq] = ACTIONS(9274), + [anon_sym_DASH_DASH] = ACTIONS(9276), + [anon_sym_PLUS_PLUS] = ACTIONS(9276), + [anon_sym_DOT] = ACTIONS(9274), + [anon_sym_DOT_STAR] = ACTIONS(9276), + [anon_sym_DASH_GT] = ACTIONS(9276), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9276), + }, + [STATE(3582)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), + [anon_sym_COMMA] = ACTIONS(7725), + [anon_sym_RPAREN] = ACTIONS(7725), + [anon_sym_LPAREN2] = ACTIONS(7725), + [anon_sym_DASH] = ACTIONS(7723), + [anon_sym_PLUS] = ACTIONS(7723), + [anon_sym_STAR] = ACTIONS(7725), + [anon_sym_SLASH] = ACTIONS(7723), + [anon_sym_PERCENT] = ACTIONS(7725), + [anon_sym_PIPE_PIPE] = ACTIONS(7725), + [anon_sym_AMP_AMP] = ACTIONS(7725), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_CARET] = ACTIONS(7725), + [anon_sym_AMP] = ACTIONS(7723), + [anon_sym_EQ_EQ] = ACTIONS(7725), + [anon_sym_BANG_EQ] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_EQ] = ACTIONS(7725), + [anon_sym_LT_EQ] = ACTIONS(7723), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_LT_LT] = ACTIONS(7725), + [anon_sym_GT_GT] = ACTIONS(7725), + [anon_sym_SEMI] = ACTIONS(7725), + [anon_sym___extension__] = ACTIONS(7725), + [anon_sym___attribute__] = ACTIONS(7725), + [anon_sym___attribute] = ACTIONS(7723), + [anon_sym_COLON] = ACTIONS(7723), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7725), + [anon_sym_LBRACE] = ACTIONS(7725), + [anon_sym_RBRACE] = ACTIONS(7725), + [anon_sym_signed] = ACTIONS(9234), + [anon_sym_unsigned] = ACTIONS(9234), + [anon_sym_long] = ACTIONS(9234), + [anon_sym_short] = ACTIONS(9234), + [anon_sym_LBRACK] = ACTIONS(7725), + [anon_sym_const] = ACTIONS(7723), + [anon_sym_constexpr] = ACTIONS(7725), + [anon_sym_volatile] = ACTIONS(7725), + [anon_sym_restrict] = ACTIONS(7725), + [anon_sym___restrict__] = ACTIONS(7725), + [anon_sym__Atomic] = ACTIONS(7725), + [anon_sym__Noreturn] = ACTIONS(7725), + [anon_sym_noreturn] = ACTIONS(7725), + [anon_sym__Nonnull] = ACTIONS(7725), + [anon_sym_mutable] = ACTIONS(7725), + [anon_sym_constinit] = ACTIONS(7725), + [anon_sym_consteval] = ACTIONS(7725), + [anon_sym_alignas] = ACTIONS(7725), + [anon_sym__Alignas] = ACTIONS(7725), + [anon_sym_QMARK] = ACTIONS(7725), + [anon_sym_LT_EQ_GT] = ACTIONS(7725), + [anon_sym_or] = ACTIONS(7725), + [anon_sym_and] = ACTIONS(7725), + [anon_sym_bitor] = ACTIONS(7725), + [anon_sym_xor] = ACTIONS(7725), + [anon_sym_bitand] = ACTIONS(7725), + [anon_sym_not_eq] = ACTIONS(7725), + [anon_sym_DASH_DASH] = ACTIONS(7725), + [anon_sym_PLUS_PLUS] = ACTIONS(7725), + [anon_sym_DOT] = ACTIONS(7723), + [anon_sym_DOT_STAR] = ACTIONS(7725), + [anon_sym_DASH_GT] = ACTIONS(7725), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7725), + [anon_sym_override] = ACTIONS(7725), + [anon_sym_requires] = ACTIONS(7725), + [anon_sym_COLON_RBRACK] = ACTIONS(7725), + }, + [STATE(3583)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7729), + [anon_sym_COMMA] = ACTIONS(7729), + [anon_sym_RPAREN] = ACTIONS(7729), + [anon_sym_LPAREN2] = ACTIONS(7729), + [anon_sym_DASH] = ACTIONS(7727), + [anon_sym_PLUS] = ACTIONS(7727), + [anon_sym_STAR] = ACTIONS(7729), + [anon_sym_SLASH] = ACTIONS(7727), + [anon_sym_PERCENT] = ACTIONS(7729), + [anon_sym_PIPE_PIPE] = ACTIONS(7729), + [anon_sym_AMP_AMP] = ACTIONS(7729), + [anon_sym_PIPE] = ACTIONS(7727), + [anon_sym_CARET] = ACTIONS(7729), + [anon_sym_AMP] = ACTIONS(7727), + [anon_sym_EQ_EQ] = ACTIONS(7729), + [anon_sym_BANG_EQ] = ACTIONS(7729), + [anon_sym_GT] = ACTIONS(7727), + [anon_sym_GT_EQ] = ACTIONS(7729), + [anon_sym_LT_EQ] = ACTIONS(7727), + [anon_sym_LT] = ACTIONS(7727), + [anon_sym_LT_LT] = ACTIONS(7729), + [anon_sym_GT_GT] = ACTIONS(7729), + [anon_sym_SEMI] = ACTIONS(7729), + [anon_sym___extension__] = ACTIONS(7729), + [anon_sym___attribute__] = ACTIONS(7729), + [anon_sym___attribute] = ACTIONS(7727), + [anon_sym_COLON] = ACTIONS(7727), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7729), + [anon_sym_LBRACE] = ACTIONS(7729), + [anon_sym_RBRACE] = ACTIONS(7729), + [anon_sym_signed] = ACTIONS(9234), + [anon_sym_unsigned] = ACTIONS(9234), + [anon_sym_long] = ACTIONS(9234), + [anon_sym_short] = ACTIONS(9234), + [anon_sym_LBRACK] = ACTIONS(7729), + [anon_sym_const] = ACTIONS(7727), + [anon_sym_constexpr] = ACTIONS(7729), + [anon_sym_volatile] = ACTIONS(7729), + [anon_sym_restrict] = ACTIONS(7729), + [anon_sym___restrict__] = ACTIONS(7729), + [anon_sym__Atomic] = ACTIONS(7729), + [anon_sym__Noreturn] = ACTIONS(7729), + [anon_sym_noreturn] = ACTIONS(7729), + [anon_sym__Nonnull] = ACTIONS(7729), + [anon_sym_mutable] = ACTIONS(7729), + [anon_sym_constinit] = ACTIONS(7729), + [anon_sym_consteval] = ACTIONS(7729), + [anon_sym_alignas] = ACTIONS(7729), + [anon_sym__Alignas] = ACTIONS(7729), + [anon_sym_QMARK] = ACTIONS(7729), + [anon_sym_LT_EQ_GT] = ACTIONS(7729), + [anon_sym_or] = ACTIONS(7729), + [anon_sym_and] = ACTIONS(7729), + [anon_sym_bitor] = ACTIONS(7729), + [anon_sym_xor] = ACTIONS(7729), + [anon_sym_bitand] = ACTIONS(7729), + [anon_sym_not_eq] = ACTIONS(7729), + [anon_sym_DASH_DASH] = ACTIONS(7729), + [anon_sym_PLUS_PLUS] = ACTIONS(7729), + [anon_sym_DOT] = ACTIONS(7727), + [anon_sym_DOT_STAR] = ACTIONS(7729), + [anon_sym_DASH_GT] = ACTIONS(7729), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7729), + [anon_sym_override] = ACTIONS(7729), + [anon_sym_requires] = ACTIONS(7729), + [anon_sym_COLON_RBRACK] = ACTIONS(7729), + }, + [STATE(3584)] = { + [sym__abstract_declarator] = STATE(6339), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(2488), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2072), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(2488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_RPAREN] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(8487), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7345), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(8489), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7345), + [anon_sym_AMP] = ACTIONS(8491), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7345), + [anon_sym_GT_GT] = ACTIONS(7345), + [anon_sym_SEMI] = ACTIONS(7345), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym_COLON] = ACTIONS(7347), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7345), + [anon_sym_RBRACE] = ACTIONS(7345), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7345), + [anon_sym_and] = ACTIONS(7345), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7345), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7345), + }, + [STATE(3585)] = { + [sym__abstract_declarator] = STATE(6368), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3590), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2072), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), + [anon_sym_COMMA] = ACTIONS(7391), + [anon_sym_RPAREN] = ACTIONS(7391), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7393), + [anon_sym_PLUS] = ACTIONS(7393), + [anon_sym_STAR] = ACTIONS(8487), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_PERCENT] = ACTIONS(7391), + [anon_sym_PIPE_PIPE] = ACTIONS(7391), + [anon_sym_AMP_AMP] = ACTIONS(8489), + [anon_sym_PIPE] = ACTIONS(7393), + [anon_sym_CARET] = ACTIONS(7391), + [anon_sym_AMP] = ACTIONS(8491), + [anon_sym_EQ_EQ] = ACTIONS(7391), + [anon_sym_BANG_EQ] = ACTIONS(7391), + [anon_sym_GT] = ACTIONS(7393), + [anon_sym_GT_EQ] = ACTIONS(7391), + [anon_sym_LT_EQ] = ACTIONS(7393), + [anon_sym_LT] = ACTIONS(7393), + [anon_sym_LT_LT] = ACTIONS(7391), + [anon_sym_GT_GT] = ACTIONS(7391), + [anon_sym_SEMI] = ACTIONS(7391), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym_COLON] = ACTIONS(7393), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7391), + [anon_sym_RBRACE] = ACTIONS(7391), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(7391), + [anon_sym_LT_EQ_GT] = ACTIONS(7391), + [anon_sym_or] = ACTIONS(7391), + [anon_sym_and] = ACTIONS(7391), + [anon_sym_bitor] = ACTIONS(7391), + [anon_sym_xor] = ACTIONS(7391), + [anon_sym_bitand] = ACTIONS(7391), + [anon_sym_not_eq] = ACTIONS(7391), + [anon_sym_DASH_DASH] = ACTIONS(7391), + [anon_sym_PLUS_PLUS] = ACTIONS(7391), + [anon_sym_DOT] = ACTIONS(7393), + [anon_sym_DOT_STAR] = ACTIONS(7391), + [anon_sym_DASH_GT] = ACTIONS(7391), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7391), + }, + [STATE(3586)] = { + [sym_string_literal] = STATE(5033), + [sym_template_argument_list] = STATE(5616), + [sym_raw_string_literal] = STATE(5033), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(7101), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5638), + [anon_sym___attribute__] = ACTIONS(5638), + [anon_sym___attribute] = ACTIONS(5645), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(6909), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(6911), + [anon_sym_SLASH_EQ] = ACTIONS(6911), + [anon_sym_PERCENT_EQ] = ACTIONS(6911), + [anon_sym_PLUS_EQ] = ACTIONS(6911), + [anon_sym_DASH_EQ] = ACTIONS(6911), + [anon_sym_LT_LT_EQ] = ACTIONS(6911), + [anon_sym_GT_GT_EQ] = ACTIONS(6911), + [anon_sym_AMP_EQ] = ACTIONS(6911), + [anon_sym_CARET_EQ] = ACTIONS(6911), + [anon_sym_PIPE_EQ] = ACTIONS(6911), + [anon_sym_and_eq] = ACTIONS(6911), + [anon_sym_or_eq] = ACTIONS(6911), + [anon_sym_xor_eq] = ACTIONS(6911), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(6913), + [anon_sym_u_DQUOTE] = ACTIONS(6913), + [anon_sym_U_DQUOTE] = ACTIONS(6913), + [anon_sym_u8_DQUOTE] = ACTIONS(6913), + [anon_sym_DQUOTE] = ACTIONS(6913), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6915), + [anon_sym_LR_DQUOTE] = ACTIONS(6915), + [anon_sym_uR_DQUOTE] = ACTIONS(6915), + [anon_sym_UR_DQUOTE] = ACTIONS(6915), + [anon_sym_u8R_DQUOTE] = ACTIONS(6915), + }, + [STATE(3587)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3518), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7557), + [anon_sym_COMMA] = ACTIONS(7557), + [anon_sym_RPAREN] = ACTIONS(7557), + [anon_sym_LPAREN2] = ACTIONS(7557), + [anon_sym_DASH] = ACTIONS(7555), + [anon_sym_PLUS] = ACTIONS(7555), + [anon_sym_STAR] = ACTIONS(7557), + [anon_sym_SLASH] = ACTIONS(7555), + [anon_sym_PERCENT] = ACTIONS(7557), + [anon_sym_PIPE_PIPE] = ACTIONS(7557), + [anon_sym_AMP_AMP] = ACTIONS(7557), + [anon_sym_PIPE] = ACTIONS(7555), + [anon_sym_CARET] = ACTIONS(7557), + [anon_sym_AMP] = ACTIONS(7555), + [anon_sym_EQ_EQ] = ACTIONS(7557), + [anon_sym_BANG_EQ] = ACTIONS(7557), + [anon_sym_GT] = ACTIONS(7555), + [anon_sym_GT_EQ] = ACTIONS(7557), + [anon_sym_LT_EQ] = ACTIONS(7555), + [anon_sym_LT] = ACTIONS(7555), + [anon_sym_LT_LT] = ACTIONS(7557), + [anon_sym_GT_GT] = ACTIONS(7557), + [anon_sym_SEMI] = ACTIONS(7557), + [anon_sym___extension__] = ACTIONS(7557), + [anon_sym___attribute__] = ACTIONS(7557), + [anon_sym___attribute] = ACTIONS(7555), + [anon_sym_COLON] = ACTIONS(7555), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7557), + [anon_sym_LBRACE] = ACTIONS(7557), + [anon_sym_RBRACE] = ACTIONS(7557), + [anon_sym_signed] = ACTIONS(9278), + [anon_sym_unsigned] = ACTIONS(9278), + [anon_sym_long] = ACTIONS(9278), + [anon_sym_short] = ACTIONS(9278), + [anon_sym_LBRACK] = ACTIONS(7557), + [anon_sym_const] = ACTIONS(7555), + [anon_sym_constexpr] = ACTIONS(7557), + [anon_sym_volatile] = ACTIONS(7557), + [anon_sym_restrict] = ACTIONS(7557), + [anon_sym___restrict__] = ACTIONS(7557), + [anon_sym__Atomic] = ACTIONS(7557), + [anon_sym__Noreturn] = ACTIONS(7557), + [anon_sym_noreturn] = ACTIONS(7557), + [anon_sym__Nonnull] = ACTIONS(7557), + [anon_sym_mutable] = ACTIONS(7557), + [anon_sym_constinit] = ACTIONS(7557), + [anon_sym_consteval] = ACTIONS(7557), + [anon_sym_alignas] = ACTIONS(7557), + [anon_sym__Alignas] = ACTIONS(7557), + [anon_sym_QMARK] = ACTIONS(7557), + [anon_sym_LT_EQ_GT] = ACTIONS(7557), + [anon_sym_or] = ACTIONS(7557), + [anon_sym_and] = ACTIONS(7557), + [anon_sym_bitor] = ACTIONS(7557), + [anon_sym_xor] = ACTIONS(7557), + [anon_sym_bitand] = ACTIONS(7557), + [anon_sym_not_eq] = ACTIONS(7557), + [anon_sym_DASH_DASH] = ACTIONS(7557), + [anon_sym_PLUS_PLUS] = ACTIONS(7557), + [anon_sym_DOT] = ACTIONS(7555), + [anon_sym_DOT_STAR] = ACTIONS(7557), + [anon_sym_DASH_GT] = ACTIONS(7557), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_override] = ACTIONS(7557), + [anon_sym_requires] = ACTIONS(7557), + [anon_sym_COLON_RBRACK] = ACTIONS(7557), + }, + [STATE(3588)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7785), + [anon_sym_COMMA] = ACTIONS(7785), + [anon_sym_RPAREN] = ACTIONS(7785), + [anon_sym_LPAREN2] = ACTIONS(7785), + [anon_sym_DASH] = ACTIONS(7783), + [anon_sym_PLUS] = ACTIONS(7783), + [anon_sym_STAR] = ACTIONS(7785), + [anon_sym_SLASH] = ACTIONS(7783), + [anon_sym_PERCENT] = ACTIONS(7785), + [anon_sym_PIPE_PIPE] = ACTIONS(7785), + [anon_sym_AMP_AMP] = ACTIONS(7785), + [anon_sym_PIPE] = ACTIONS(7783), + [anon_sym_CARET] = ACTIONS(7785), + [anon_sym_AMP] = ACTIONS(7783), + [anon_sym_EQ_EQ] = ACTIONS(7785), + [anon_sym_BANG_EQ] = ACTIONS(7785), + [anon_sym_GT] = ACTIONS(7783), + [anon_sym_GT_EQ] = ACTIONS(7785), + [anon_sym_LT_EQ] = ACTIONS(7783), + [anon_sym_LT] = ACTIONS(7783), + [anon_sym_LT_LT] = ACTIONS(7785), + [anon_sym_GT_GT] = ACTIONS(7785), + [anon_sym_SEMI] = ACTIONS(7785), + [anon_sym___extension__] = ACTIONS(7785), + [anon_sym___attribute__] = ACTIONS(7785), + [anon_sym___attribute] = ACTIONS(7783), + [anon_sym_COLON] = ACTIONS(7783), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7785), + [anon_sym_LBRACE] = ACTIONS(7785), + [anon_sym_RBRACE] = ACTIONS(7785), + [anon_sym_signed] = ACTIONS(9280), + [anon_sym_unsigned] = ACTIONS(9280), + [anon_sym_long] = ACTIONS(9280), + [anon_sym_short] = ACTIONS(9280), + [anon_sym_LBRACK] = ACTIONS(7785), + [anon_sym_const] = ACTIONS(7783), + [anon_sym_constexpr] = ACTIONS(7785), + [anon_sym_volatile] = ACTIONS(7785), + [anon_sym_restrict] = ACTIONS(7785), + [anon_sym___restrict__] = ACTIONS(7785), + [anon_sym__Atomic] = ACTIONS(7785), + [anon_sym__Noreturn] = ACTIONS(7785), + [anon_sym_noreturn] = ACTIONS(7785), + [anon_sym__Nonnull] = ACTIONS(7785), + [anon_sym_mutable] = ACTIONS(7785), + [anon_sym_constinit] = ACTIONS(7785), + [anon_sym_consteval] = ACTIONS(7785), + [anon_sym_alignas] = ACTIONS(7785), + [anon_sym__Alignas] = ACTIONS(7785), + [anon_sym_QMARK] = ACTIONS(7785), + [anon_sym_LT_EQ_GT] = ACTIONS(7785), + [anon_sym_or] = ACTIONS(7785), + [anon_sym_and] = ACTIONS(7785), + [anon_sym_bitor] = ACTIONS(7785), + [anon_sym_xor] = ACTIONS(7785), + [anon_sym_bitand] = ACTIONS(7785), + [anon_sym_not_eq] = ACTIONS(7785), + [anon_sym_DASH_DASH] = ACTIONS(7785), + [anon_sym_PLUS_PLUS] = ACTIONS(7785), + [anon_sym_DOT] = ACTIONS(7783), + [anon_sym_DOT_STAR] = ACTIONS(7785), + [anon_sym_DASH_GT] = ACTIONS(7785), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7785), + [anon_sym_override] = ACTIONS(7785), + [anon_sym_requires] = ACTIONS(7785), + [anon_sym_COLON_RBRACK] = ACTIONS(7785), + }, + [STATE(3589)] = { + [sym_string_literal] = STATE(3565), + [sym_raw_string_literal] = STATE(3565), + [aux_sym_concatenated_string_repeat1] = STATE(3565), + [sym_identifier] = ACTIONS(9282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8466), + [anon_sym_COMMA] = ACTIONS(8466), + [anon_sym_LPAREN2] = ACTIONS(8466), + [anon_sym_DASH] = ACTIONS(8468), + [anon_sym_PLUS] = ACTIONS(8468), + [anon_sym_STAR] = ACTIONS(8468), + [anon_sym_SLASH] = ACTIONS(8468), + [anon_sym_PERCENT] = ACTIONS(8468), + [anon_sym_PIPE_PIPE] = ACTIONS(8466), + [anon_sym_AMP_AMP] = ACTIONS(8466), + [anon_sym_PIPE] = ACTIONS(8468), + [anon_sym_CARET] = ACTIONS(8468), + [anon_sym_AMP] = ACTIONS(8468), + [anon_sym_EQ_EQ] = ACTIONS(8466), + [anon_sym_BANG_EQ] = ACTIONS(8466), + [anon_sym_GT] = ACTIONS(8468), + [anon_sym_GT_EQ] = ACTIONS(8466), + [anon_sym_LT_EQ] = ACTIONS(8468), + [anon_sym_LT] = ACTIONS(8468), + [anon_sym_LT_LT] = ACTIONS(8468), + [anon_sym_GT_GT] = ACTIONS(8468), + [anon_sym_SEMI] = ACTIONS(8466), + [anon_sym___attribute__] = ACTIONS(8468), + [anon_sym___attribute] = ACTIONS(8468), + [anon_sym_LBRACK] = ACTIONS(8466), + [anon_sym_EQ] = ACTIONS(8468), + [anon_sym_QMARK] = ACTIONS(8466), + [anon_sym_STAR_EQ] = ACTIONS(8466), + [anon_sym_SLASH_EQ] = ACTIONS(8466), + [anon_sym_PERCENT_EQ] = ACTIONS(8466), + [anon_sym_PLUS_EQ] = ACTIONS(8466), + [anon_sym_DASH_EQ] = ACTIONS(8466), + [anon_sym_LT_LT_EQ] = ACTIONS(8466), + [anon_sym_GT_GT_EQ] = ACTIONS(8466), + [anon_sym_AMP_EQ] = ACTIONS(8466), + [anon_sym_CARET_EQ] = ACTIONS(8466), + [anon_sym_PIPE_EQ] = ACTIONS(8466), + [anon_sym_and_eq] = ACTIONS(8468), + [anon_sym_or_eq] = ACTIONS(8468), + [anon_sym_xor_eq] = ACTIONS(8468), + [anon_sym_LT_EQ_GT] = ACTIONS(8466), + [anon_sym_or] = ACTIONS(8468), + [anon_sym_and] = ACTIONS(8468), + [anon_sym_bitor] = ACTIONS(8468), + [anon_sym_xor] = ACTIONS(8468), + [anon_sym_bitand] = ACTIONS(8468), + [anon_sym_not_eq] = ACTIONS(8468), + [anon_sym_DASH_DASH] = ACTIONS(8466), + [anon_sym_PLUS_PLUS] = ACTIONS(8466), + [anon_sym_DOT] = ACTIONS(8468), + [anon_sym_DOT_STAR] = ACTIONS(8466), + [anon_sym_DASH_GT] = ACTIONS(8466), + [anon_sym_L_DQUOTE] = ACTIONS(6876), + [anon_sym_u_DQUOTE] = ACTIONS(6876), + [anon_sym_U_DQUOTE] = ACTIONS(6876), + [anon_sym_u8_DQUOTE] = ACTIONS(6876), + [anon_sym_DQUOTE] = ACTIONS(6876), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6878), + [anon_sym_LR_DQUOTE] = ACTIONS(6878), + [anon_sym_uR_DQUOTE] = ACTIONS(6878), + [anon_sym_UR_DQUOTE] = ACTIONS(6878), + [anon_sym_u8R_DQUOTE] = ACTIONS(6878), + [sym_literal_suffix] = ACTIONS(8468), + }, + [STATE(3590)] = { + [sym__abstract_declarator] = STATE(6297), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(2488), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2072), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(2488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), + [anon_sym_COMMA] = ACTIONS(7351), + [anon_sym_RPAREN] = ACTIONS(7351), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_PLUS] = ACTIONS(7349), + [anon_sym_STAR] = ACTIONS(8487), + [anon_sym_SLASH] = ACTIONS(7349), + [anon_sym_PERCENT] = ACTIONS(7351), + [anon_sym_PIPE_PIPE] = ACTIONS(7351), + [anon_sym_AMP_AMP] = ACTIONS(8489), + [anon_sym_PIPE] = ACTIONS(7349), + [anon_sym_CARET] = ACTIONS(7351), + [anon_sym_AMP] = ACTIONS(8491), + [anon_sym_EQ_EQ] = ACTIONS(7351), + [anon_sym_BANG_EQ] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7349), + [anon_sym_GT_EQ] = ACTIONS(7351), + [anon_sym_LT_EQ] = ACTIONS(7349), + [anon_sym_LT] = ACTIONS(7349), + [anon_sym_LT_LT] = ACTIONS(7351), + [anon_sym_GT_GT] = ACTIONS(7351), + [anon_sym_SEMI] = ACTIONS(7351), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym_COLON] = ACTIONS(7349), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7351), + [anon_sym_RBRACE] = ACTIONS(7351), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(7351), + [anon_sym_LT_EQ_GT] = ACTIONS(7351), + [anon_sym_or] = ACTIONS(7351), + [anon_sym_and] = ACTIONS(7351), + [anon_sym_bitor] = ACTIONS(7351), + [anon_sym_xor] = ACTIONS(7351), + [anon_sym_bitand] = ACTIONS(7351), + [anon_sym_not_eq] = ACTIONS(7351), + [anon_sym_DASH_DASH] = ACTIONS(7351), + [anon_sym_PLUS_PLUS] = ACTIONS(7351), + [anon_sym_DOT] = ACTIONS(7349), + [anon_sym_DOT_STAR] = ACTIONS(7351), + [anon_sym_DASH_GT] = ACTIONS(7351), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7351), + }, + [STATE(3591)] = { + [sym_string_literal] = STATE(4105), + [sym_template_argument_list] = STATE(5616), + [sym_raw_string_literal] = STATE(4105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(9222), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(7101), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5638), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9222), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_RBRACE] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(9224), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5663), + [anon_sym_or_eq] = ACTIONS(5663), + [anon_sym_xor_eq] = ACTIONS(5663), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + }, + [STATE(3592)] = { + [sym_string_literal] = STATE(2565), + [sym_template_argument_list] = STATE(4045), + [sym_raw_string_literal] = STATE(2565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(9236), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(9284), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5638), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6883), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_RBRACE] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(9239), + [anon_sym_EQ] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5638), + [anon_sym_SLASH_EQ] = ACTIONS(5638), + [anon_sym_PERCENT_EQ] = ACTIONS(5638), + [anon_sym_PLUS_EQ] = ACTIONS(5638), + [anon_sym_DASH_EQ] = ACTIONS(5638), + [anon_sym_LT_LT_EQ] = ACTIONS(5638), + [anon_sym_GT_GT_EQ] = ACTIONS(5638), + [anon_sym_AMP_EQ] = ACTIONS(5638), + [anon_sym_CARET_EQ] = ACTIONS(5638), + [anon_sym_PIPE_EQ] = ACTIONS(5638), + [anon_sym_and_eq] = ACTIONS(5638), + [anon_sym_or_eq] = ACTIONS(5638), + [anon_sym_xor_eq] = ACTIONS(5638), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(2416), + [anon_sym_u_DQUOTE] = ACTIONS(2416), + [anon_sym_U_DQUOTE] = ACTIONS(2416), + [anon_sym_u8_DQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2428), + [anon_sym_LR_DQUOTE] = ACTIONS(2428), + [anon_sym_uR_DQUOTE] = ACTIONS(2428), + [anon_sym_UR_DQUOTE] = ACTIONS(2428), + [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + }, + [STATE(3593)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7781), + [anon_sym_COMMA] = ACTIONS(7781), + [anon_sym_RPAREN] = ACTIONS(7781), + [anon_sym_LPAREN2] = ACTIONS(7781), + [anon_sym_DASH] = ACTIONS(7779), + [anon_sym_PLUS] = ACTIONS(7779), + [anon_sym_STAR] = ACTIONS(7779), + [anon_sym_SLASH] = ACTIONS(7779), + [anon_sym_PERCENT] = ACTIONS(7779), + [anon_sym_PIPE_PIPE] = ACTIONS(7781), + [anon_sym_AMP_AMP] = ACTIONS(7781), + [anon_sym_PIPE] = ACTIONS(7779), + [anon_sym_CARET] = ACTIONS(7779), + [anon_sym_AMP] = ACTIONS(7779), + [anon_sym_EQ_EQ] = ACTIONS(7781), + [anon_sym_BANG_EQ] = ACTIONS(7781), + [anon_sym_GT] = ACTIONS(7779), + [anon_sym_GT_EQ] = ACTIONS(7781), + [anon_sym_LT_EQ] = ACTIONS(7779), + [anon_sym_LT] = ACTIONS(7779), + [anon_sym_LT_LT] = ACTIONS(7779), + [anon_sym_GT_GT] = ACTIONS(7779), + [anon_sym___extension__] = ACTIONS(7781), + [anon_sym_LBRACE] = ACTIONS(7781), + [anon_sym_LBRACK] = ACTIONS(7781), + [anon_sym_EQ] = ACTIONS(7779), + [anon_sym_const] = ACTIONS(7779), + [anon_sym_constexpr] = ACTIONS(7781), + [anon_sym_volatile] = ACTIONS(7781), + [anon_sym_restrict] = ACTIONS(7781), + [anon_sym___restrict__] = ACTIONS(7781), + [anon_sym__Atomic] = ACTIONS(7781), + [anon_sym__Noreturn] = ACTIONS(7781), + [anon_sym_noreturn] = ACTIONS(7781), + [anon_sym__Nonnull] = ACTIONS(7781), + [anon_sym_mutable] = ACTIONS(7781), + [anon_sym_constinit] = ACTIONS(7781), + [anon_sym_consteval] = ACTIONS(7781), + [anon_sym_alignas] = ACTIONS(7781), + [anon_sym__Alignas] = ACTIONS(7781), + [anon_sym_QMARK] = ACTIONS(7781), + [anon_sym_STAR_EQ] = ACTIONS(7781), + [anon_sym_SLASH_EQ] = ACTIONS(7781), + [anon_sym_PERCENT_EQ] = ACTIONS(7781), + [anon_sym_PLUS_EQ] = ACTIONS(7781), + [anon_sym_DASH_EQ] = ACTIONS(7781), + [anon_sym_LT_LT_EQ] = ACTIONS(7781), + [anon_sym_GT_GT_EQ] = ACTIONS(7781), + [anon_sym_AMP_EQ] = ACTIONS(7781), + [anon_sym_CARET_EQ] = ACTIONS(7781), + [anon_sym_PIPE_EQ] = ACTIONS(7781), + [anon_sym_LT_EQ_GT] = ACTIONS(7781), + [anon_sym_or] = ACTIONS(7781), + [anon_sym_and] = ACTIONS(7781), + [anon_sym_bitor] = ACTIONS(7781), + [anon_sym_xor] = ACTIONS(7781), + [anon_sym_bitand] = ACTIONS(7781), + [anon_sym_not_eq] = ACTIONS(7781), + [anon_sym_DASH_DASH] = ACTIONS(7781), + [anon_sym_PLUS_PLUS] = ACTIONS(7781), + [anon_sym_DOT] = ACTIONS(7779), + [anon_sym_DOT_STAR] = ACTIONS(7781), + [anon_sym_DASH_GT] = ACTIONS(7779), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7781), + [anon_sym_override] = ACTIONS(7781), + [anon_sym_requires] = ACTIONS(7781), + [anon_sym_DASH_GT_STAR] = ACTIONS(7781), + }, + [STATE(3594)] = { + [sym_identifier] = ACTIONS(7291), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_TILDE] = ACTIONS(7293), + [anon_sym_STAR] = ACTIONS(7293), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym___extension__] = ACTIONS(7291), + [anon_sym_virtual] = ACTIONS(7291), + [anon_sym_extern] = ACTIONS(7291), + [anon_sym___attribute__] = ACTIONS(7291), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_using] = ACTIONS(7291), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7293), + [anon_sym___declspec] = ACTIONS(7291), + [anon_sym___based] = ACTIONS(7291), + [anon_sym___cdecl] = ACTIONS(7291), + [anon_sym___clrcall] = ACTIONS(7291), + [anon_sym___stdcall] = ACTIONS(7291), + [anon_sym___fastcall] = ACTIONS(7291), + [anon_sym___thiscall] = ACTIONS(7291), + [anon_sym___vectorcall] = ACTIONS(7291), + [anon_sym_signed] = ACTIONS(7291), + [anon_sym_unsigned] = ACTIONS(7291), + [anon_sym_long] = ACTIONS(7291), + [anon_sym_short] = ACTIONS(7291), + [anon_sym_LBRACK] = ACTIONS(7291), + [anon_sym_static] = ACTIONS(7291), + [anon_sym_register] = ACTIONS(7291), + [anon_sym_inline] = ACTIONS(7291), + [anon_sym___inline] = ACTIONS(7291), + [anon_sym___inline__] = ACTIONS(7291), + [anon_sym___forceinline] = ACTIONS(7291), + [anon_sym_thread_local] = ACTIONS(7291), + [anon_sym___thread] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7291), + [anon_sym_volatile] = ACTIONS(7291), + [anon_sym_restrict] = ACTIONS(7291), + [anon_sym___restrict__] = ACTIONS(7291), + [anon_sym__Atomic] = ACTIONS(7291), + [anon_sym__Noreturn] = ACTIONS(7291), + [anon_sym_noreturn] = ACTIONS(7291), + [anon_sym__Nonnull] = ACTIONS(7291), + [anon_sym_mutable] = ACTIONS(7291), + [anon_sym_constinit] = ACTIONS(7291), + [anon_sym_consteval] = ACTIONS(7291), + [anon_sym_alignas] = ACTIONS(7291), + [anon_sym__Alignas] = ACTIONS(7291), + [sym_primitive_type] = ACTIONS(7291), + [anon_sym_enum] = ACTIONS(7291), + [anon_sym_class] = ACTIONS(7291), + [anon_sym_struct] = ACTIONS(7291), + [anon_sym_union] = ACTIONS(7291), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_typename] = ACTIONS(7291), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7291), + [anon_sym_decltype] = ACTIONS(7291), + [anon_sym_explicit] = ACTIONS(7291), + [anon_sym_template] = ACTIONS(7291), + [anon_sym_operator] = ACTIONS(7291), + [anon_sym_friend] = ACTIONS(7291), + [anon_sym_concept] = ACTIONS(7291), + [anon_sym_LBRACK_COLON] = ACTIONS(7293), + }, + [STATE(3595)] = { + [sym_identifier] = ACTIONS(8954), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8956), + [anon_sym_COMMA] = ACTIONS(8956), + [anon_sym_RPAREN] = ACTIONS(8956), + [aux_sym_preproc_if_token2] = ACTIONS(8956), + [aux_sym_preproc_else_token1] = ACTIONS(8956), + [aux_sym_preproc_elif_token1] = ACTIONS(8954), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8956), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8956), + [anon_sym_LPAREN2] = ACTIONS(8956), + [anon_sym_DASH] = ACTIONS(8954), + [anon_sym_PLUS] = ACTIONS(8954), + [anon_sym_STAR] = ACTIONS(8954), + [anon_sym_SLASH] = ACTIONS(8954), + [anon_sym_PERCENT] = ACTIONS(8954), + [anon_sym_PIPE_PIPE] = ACTIONS(8956), + [anon_sym_AMP_AMP] = ACTIONS(8956), + [anon_sym_PIPE] = ACTIONS(8954), + [anon_sym_CARET] = ACTIONS(8954), + [anon_sym_AMP] = ACTIONS(8954), + [anon_sym_EQ_EQ] = ACTIONS(8956), + [anon_sym_BANG_EQ] = ACTIONS(8956), + [anon_sym_GT] = ACTIONS(8954), + [anon_sym_GT_EQ] = ACTIONS(8956), + [anon_sym_LT_EQ] = ACTIONS(8954), + [anon_sym_LT] = ACTIONS(8954), + [anon_sym_LT_LT] = ACTIONS(8954), + [anon_sym_GT_GT] = ACTIONS(8954), + [anon_sym_SEMI] = ACTIONS(8956), + [anon_sym___attribute__] = ACTIONS(8954), + [anon_sym___attribute] = ACTIONS(8954), + [anon_sym_COLON] = ACTIONS(8954), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8956), + [anon_sym_RBRACE] = ACTIONS(8956), + [anon_sym_LBRACK] = ACTIONS(8956), + [anon_sym_EQ] = ACTIONS(8954), + [anon_sym_QMARK] = ACTIONS(8956), + [anon_sym_STAR_EQ] = ACTIONS(8956), + [anon_sym_SLASH_EQ] = ACTIONS(8956), + [anon_sym_PERCENT_EQ] = ACTIONS(8956), + [anon_sym_PLUS_EQ] = ACTIONS(8956), + [anon_sym_DASH_EQ] = ACTIONS(8956), + [anon_sym_LT_LT_EQ] = ACTIONS(8956), + [anon_sym_GT_GT_EQ] = ACTIONS(8956), + [anon_sym_AMP_EQ] = ACTIONS(8956), + [anon_sym_CARET_EQ] = ACTIONS(8956), + [anon_sym_PIPE_EQ] = ACTIONS(8956), + [anon_sym_and_eq] = ACTIONS(8954), + [anon_sym_or_eq] = ACTIONS(8954), + [anon_sym_xor_eq] = ACTIONS(8954), + [anon_sym_LT_EQ_GT] = ACTIONS(8956), + [anon_sym_or] = ACTIONS(8954), + [anon_sym_and] = ACTIONS(8954), + [anon_sym_bitor] = ACTIONS(8954), + [anon_sym_xor] = ACTIONS(8954), + [anon_sym_bitand] = ACTIONS(8954), + [anon_sym_not_eq] = ACTIONS(8954), + [anon_sym_DASH_DASH] = ACTIONS(8956), + [anon_sym_PLUS_PLUS] = ACTIONS(8956), + [anon_sym_DOT] = ACTIONS(8954), + [anon_sym_DOT_STAR] = ACTIONS(8956), + [anon_sym_DASH_GT] = ACTIONS(8956), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8954), + [anon_sym_override] = ACTIONS(8954), + [anon_sym_requires] = ACTIONS(8954), + [anon_sym_COLON_RBRACK] = ACTIONS(8956), + }, + [STATE(3596)] = { + [sym_template_argument_list] = STATE(3740), + [sym_identifier] = ACTIONS(6574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6567), + [anon_sym_COMMA] = ACTIONS(6567), + [anon_sym_RPAREN] = ACTIONS(6567), + [aux_sym_preproc_if_token2] = ACTIONS(6567), + [aux_sym_preproc_else_token1] = ACTIONS(6567), + [aux_sym_preproc_elif_token1] = ACTIONS(6574), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6567), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6567), + [anon_sym_LPAREN2] = ACTIONS(6567), + [anon_sym_DASH] = ACTIONS(6574), + [anon_sym_PLUS] = ACTIONS(6574), + [anon_sym_STAR] = ACTIONS(6574), + [anon_sym_SLASH] = ACTIONS(6574), + [anon_sym_PERCENT] = ACTIONS(6574), + [anon_sym_PIPE_PIPE] = ACTIONS(6567), + [anon_sym_AMP_AMP] = ACTIONS(6567), + [anon_sym_PIPE] = ACTIONS(6574), + [anon_sym_CARET] = ACTIONS(6574), + [anon_sym_AMP] = ACTIONS(6574), + [anon_sym_EQ_EQ] = ACTIONS(6567), + [anon_sym_BANG_EQ] = ACTIONS(6567), + [anon_sym_GT] = ACTIONS(6574), + [anon_sym_GT_EQ] = ACTIONS(6567), + [anon_sym_LT_EQ] = ACTIONS(6574), + [anon_sym_LT] = ACTIONS(9092), + [anon_sym_LT_LT] = ACTIONS(6574), + [anon_sym_GT_GT] = ACTIONS(6574), + [anon_sym_SEMI] = ACTIONS(6567), + [anon_sym___attribute__] = ACTIONS(6574), + [anon_sym___attribute] = ACTIONS(6574), + [anon_sym_COLON] = ACTIONS(6574), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6567), + [anon_sym_LBRACE] = ACTIONS(6572), + [anon_sym_RBRACE] = ACTIONS(6567), + [anon_sym_LBRACK] = ACTIONS(6567), + [anon_sym_EQ] = ACTIONS(6574), + [anon_sym_QMARK] = ACTIONS(6567), + [anon_sym_STAR_EQ] = ACTIONS(6567), + [anon_sym_SLASH_EQ] = ACTIONS(6567), + [anon_sym_PERCENT_EQ] = ACTIONS(6567), + [anon_sym_PLUS_EQ] = ACTIONS(6567), + [anon_sym_DASH_EQ] = ACTIONS(6567), + [anon_sym_LT_LT_EQ] = ACTIONS(6567), + [anon_sym_GT_GT_EQ] = ACTIONS(6567), + [anon_sym_AMP_EQ] = ACTIONS(6567), + [anon_sym_CARET_EQ] = ACTIONS(6567), + [anon_sym_PIPE_EQ] = ACTIONS(6567), + [anon_sym_and_eq] = ACTIONS(6574), + [anon_sym_or_eq] = ACTIONS(6574), + [anon_sym_xor_eq] = ACTIONS(6574), + [anon_sym_LT_EQ_GT] = ACTIONS(6567), + [anon_sym_or] = ACTIONS(6574), + [anon_sym_and] = ACTIONS(6574), + [anon_sym_bitor] = ACTIONS(6574), + [anon_sym_xor] = ACTIONS(6574), + [anon_sym_bitand] = ACTIONS(6574), + [anon_sym_not_eq] = ACTIONS(6574), + [anon_sym_DASH_DASH] = ACTIONS(6567), + [anon_sym_PLUS_PLUS] = ACTIONS(6567), + [anon_sym_DOT] = ACTIONS(6574), + [anon_sym_DOT_STAR] = ACTIONS(6567), + [anon_sym_DASH_GT] = ACTIONS(6567), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6567), + }, + [STATE(3597)] = { + [sym_identifier] = ACTIONS(3163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3161), + [anon_sym_COMMA] = ACTIONS(3161), + [anon_sym_RPAREN] = ACTIONS(3161), + [aux_sym_preproc_if_token2] = ACTIONS(3161), + [aux_sym_preproc_else_token1] = ACTIONS(3161), + [aux_sym_preproc_elif_token1] = ACTIONS(3163), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3161), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3161), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_SLASH] = ACTIONS(3163), + [anon_sym_PERCENT] = ACTIONS(3163), + [anon_sym_PIPE_PIPE] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_CARET] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_EQ_EQ] = ACTIONS(3161), + [anon_sym_BANG_EQ] = ACTIONS(3161), + [anon_sym_GT] = ACTIONS(3163), + [anon_sym_GT_EQ] = ACTIONS(3161), + [anon_sym_LT_EQ] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3163), + [anon_sym_LT_LT] = ACTIONS(3163), + [anon_sym_GT_GT] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym___attribute__] = ACTIONS(3163), + [anon_sym___attribute] = ACTIONS(3163), + [anon_sym_COLON] = ACTIONS(3163), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3161), + [anon_sym_RBRACE] = ACTIONS(3161), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_EQ] = ACTIONS(3163), + [anon_sym_QMARK] = ACTIONS(3161), + [anon_sym_STAR_EQ] = ACTIONS(3161), + [anon_sym_SLASH_EQ] = ACTIONS(3161), + [anon_sym_PERCENT_EQ] = ACTIONS(3161), + [anon_sym_PLUS_EQ] = ACTIONS(3161), + [anon_sym_DASH_EQ] = ACTIONS(3161), + [anon_sym_LT_LT_EQ] = ACTIONS(3161), + [anon_sym_GT_GT_EQ] = ACTIONS(3161), + [anon_sym_AMP_EQ] = ACTIONS(3161), + [anon_sym_CARET_EQ] = ACTIONS(3161), + [anon_sym_PIPE_EQ] = ACTIONS(3161), + [anon_sym_and_eq] = ACTIONS(3163), + [anon_sym_or_eq] = ACTIONS(3163), + [anon_sym_xor_eq] = ACTIONS(3163), + [anon_sym_LT_EQ_GT] = ACTIONS(3161), + [anon_sym_or] = ACTIONS(3163), + [anon_sym_and] = ACTIONS(3163), + [anon_sym_bitor] = ACTIONS(3163), + [anon_sym_xor] = ACTIONS(3163), + [anon_sym_bitand] = ACTIONS(3163), + [anon_sym_not_eq] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_DOT] = ACTIONS(3163), + [anon_sym_DOT_STAR] = ACTIONS(3161), + [anon_sym_DASH_GT] = ACTIONS(3161), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3163), + [anon_sym_override] = ACTIONS(3163), + [anon_sym_requires] = ACTIONS(3163), + [anon_sym_COLON_RBRACK] = ACTIONS(3161), + }, + [STATE(3598)] = { + [sym_attribute_specifier] = STATE(4485), + [sym_attribute_declaration] = STATE(4713), + [sym_gnu_asm_expression] = STATE(9134), + [sym_virtual_specifier] = STATE(4778), + [sym__function_exception_specification] = STATE(4143), + [sym__function_attributes_end] = STATE(6012), + [sym__function_postfix] = STATE(5532), + [sym_trailing_return_type] = STATE(5907), + [sym_noexcept] = STATE(4143), + [sym_throw_specifier] = STATE(4143), + [sym_requires_clause] = STATE(5532), + [aux_sym_type_definition_repeat1] = STATE(4485), + [aux_sym_attributed_declarator_repeat1] = STATE(4713), + [aux_sym__function_postfix_repeat1] = STATE(4778), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_RPAREN] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7966), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7966), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7966), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7966), + [anon_sym_GT_GT] = ACTIONS(7966), + [anon_sym_SEMI] = ACTIONS(7966), + [anon_sym___attribute__] = ACTIONS(7176), + [anon_sym___attribute] = ACTIONS(7178), + [anon_sym_COLON] = ACTIONS(7968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7966), + [anon_sym_RBRACE] = ACTIONS(7966), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7966), + [anon_sym_and] = ACTIONS(7966), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7966), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(9287), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9290), + [anon_sym_override] = ACTIONS(9290), + [anon_sym_noexcept] = ACTIONS(7192), + [anon_sym_throw] = ACTIONS(7194), + [anon_sym_requires] = ACTIONS(9293), + [anon_sym_COLON_RBRACK] = ACTIONS(7966), + }, + [STATE(3599)] = { + [sym_string_literal] = STATE(4105), + [sym_template_argument_list] = STATE(5616), + [sym_raw_string_literal] = STATE(4105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(7101), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5638), + [anon_sym_COLON] = ACTIONS(5698), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5663), + [anon_sym_or_eq] = ACTIONS(5663), + [anon_sym_xor_eq] = ACTIONS(5663), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + }, + [STATE(3600)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(8659), + [anon_sym_COMMA] = ACTIONS(8659), + [anon_sym_RPAREN] = ACTIONS(8659), + [anon_sym_LPAREN2] = ACTIONS(8659), + [anon_sym_DASH] = ACTIONS(8657), + [anon_sym_PLUS] = ACTIONS(8657), + [anon_sym_STAR] = ACTIONS(8657), + [anon_sym_SLASH] = ACTIONS(8657), + [anon_sym_PERCENT] = ACTIONS(8657), + [anon_sym_PIPE_PIPE] = ACTIONS(8659), + [anon_sym_AMP_AMP] = ACTIONS(8659), + [anon_sym_PIPE] = ACTIONS(8657), + [anon_sym_CARET] = ACTIONS(8657), + [anon_sym_AMP] = ACTIONS(8657), + [anon_sym_EQ_EQ] = ACTIONS(8659), + [anon_sym_BANG_EQ] = ACTIONS(8659), + [anon_sym_GT] = ACTIONS(8657), + [anon_sym_GT_EQ] = ACTIONS(8659), + [anon_sym_LT_EQ] = ACTIONS(8657), + [anon_sym_LT] = ACTIONS(8657), + [anon_sym_LT_LT] = ACTIONS(8657), + [anon_sym_GT_GT] = ACTIONS(8657), + [anon_sym_SEMI] = ACTIONS(8659), + [anon_sym_COLON] = ACTIONS(8657), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8659), + [anon_sym_RBRACE] = ACTIONS(8659), + [anon_sym_LBRACK] = ACTIONS(8659), + [anon_sym_EQ] = ACTIONS(8657), + [anon_sym_QMARK] = ACTIONS(8659), + [anon_sym_STAR_EQ] = ACTIONS(8659), + [anon_sym_SLASH_EQ] = ACTIONS(8659), + [anon_sym_PERCENT_EQ] = ACTIONS(8659), + [anon_sym_PLUS_EQ] = ACTIONS(8659), + [anon_sym_DASH_EQ] = ACTIONS(8659), + [anon_sym_LT_LT_EQ] = ACTIONS(8659), + [anon_sym_GT_GT_EQ] = ACTIONS(8659), + [anon_sym_AMP_EQ] = ACTIONS(8659), + [anon_sym_CARET_EQ] = ACTIONS(8659), + [anon_sym_PIPE_EQ] = ACTIONS(8659), + [anon_sym_and_eq] = ACTIONS(8657), + [anon_sym_or_eq] = ACTIONS(8657), + [anon_sym_xor_eq] = ACTIONS(8657), + [anon_sym_LT_EQ_GT] = ACTIONS(8659), + [anon_sym_or] = ACTIONS(8657), + [anon_sym_and] = ACTIONS(8657), + [anon_sym_bitor] = ACTIONS(8657), + [anon_sym_xor] = ACTIONS(8657), + [anon_sym_bitand] = ACTIONS(8657), + [anon_sym_not_eq] = ACTIONS(8657), + [anon_sym_DASH_DASH] = ACTIONS(8659), + [anon_sym_PLUS_PLUS] = ACTIONS(8659), + [anon_sym_DOT] = ACTIONS(8657), + [anon_sym_DOT_STAR] = ACTIONS(8659), + [anon_sym_DASH_GT] = ACTIONS(8659), + [anon_sym_L_DQUOTE] = ACTIONS(8659), + [anon_sym_u_DQUOTE] = ACTIONS(8659), + [anon_sym_U_DQUOTE] = ACTIONS(8659), + [anon_sym_u8_DQUOTE] = ACTIONS(8659), + [anon_sym_DQUOTE] = ACTIONS(8659), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8659), + [anon_sym_LR_DQUOTE] = ACTIONS(8659), + [anon_sym_uR_DQUOTE] = ACTIONS(8659), + [anon_sym_UR_DQUOTE] = ACTIONS(8659), + [anon_sym_u8R_DQUOTE] = ACTIONS(8659), + [anon_sym_COLON_RBRACK] = ACTIONS(8659), + [sym_literal_suffix] = ACTIONS(8657), + }, + [STATE(3601)] = { + [sym_identifier] = ACTIONS(7789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [aux_sym_preproc_if_token2] = ACTIONS(7791), + [aux_sym_preproc_else_token1] = ACTIONS(7791), + [aux_sym_preproc_elif_token1] = ACTIONS(7789), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7789), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7789), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7789), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7789), + [anon_sym_GT_GT] = ACTIONS(7789), + [anon_sym_SEMI] = ACTIONS(7791), + [anon_sym___attribute__] = ACTIONS(7789), + [anon_sym___attribute] = ACTIONS(7789), + [anon_sym_COLON] = ACTIONS(7789), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), + [anon_sym_RBRACE] = ACTIONS(7791), + [anon_sym_LBRACK] = ACTIONS(7791), + [anon_sym_EQ] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_STAR_EQ] = ACTIONS(7791), + [anon_sym_SLASH_EQ] = ACTIONS(7791), + [anon_sym_PERCENT_EQ] = ACTIONS(7791), + [anon_sym_PLUS_EQ] = ACTIONS(7791), + [anon_sym_DASH_EQ] = ACTIONS(7791), + [anon_sym_LT_LT_EQ] = ACTIONS(7791), + [anon_sym_GT_GT_EQ] = ACTIONS(7791), + [anon_sym_AMP_EQ] = ACTIONS(7791), + [anon_sym_CARET_EQ] = ACTIONS(7791), + [anon_sym_PIPE_EQ] = ACTIONS(7791), + [anon_sym_and_eq] = ACTIONS(7789), + [anon_sym_or_eq] = ACTIONS(7789), + [anon_sym_xor_eq] = ACTIONS(7789), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7789), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7789), + [anon_sym_not_eq] = ACTIONS(7789), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(7791), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7789), + [anon_sym_override] = ACTIONS(7789), + [anon_sym_requires] = ACTIONS(7789), + [anon_sym_COLON_RBRACK] = ACTIONS(7791), + }, + [STATE(3602)] = { + [sym_template_argument_list] = STATE(2053), + [sym_identifier] = ACTIONS(7092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7097), + [anon_sym_COMMA] = ACTIONS(7097), + [anon_sym_RPAREN] = ACTIONS(7097), + [aux_sym_preproc_if_token2] = ACTIONS(7097), + [aux_sym_preproc_else_token1] = ACTIONS(7097), + [aux_sym_preproc_elif_token1] = ACTIONS(7092), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7097), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7097), + [anon_sym_LPAREN2] = ACTIONS(7087), + [anon_sym_DASH] = ACTIONS(7092), + [anon_sym_PLUS] = ACTIONS(7092), + [anon_sym_STAR] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7092), + [anon_sym_PERCENT] = ACTIONS(7092), + [anon_sym_PIPE_PIPE] = ACTIONS(7097), + [anon_sym_AMP_AMP] = ACTIONS(7097), + [anon_sym_PIPE] = ACTIONS(7092), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_AMP] = ACTIONS(7092), + [anon_sym_EQ_EQ] = ACTIONS(7097), + [anon_sym_BANG_EQ] = ACTIONS(7097), + [anon_sym_GT] = ACTIONS(7092), + [anon_sym_GT_EQ] = ACTIONS(7097), + [anon_sym_LT_EQ] = ACTIONS(7092), + [anon_sym_LT] = ACTIONS(7445), + [anon_sym_LT_LT] = ACTIONS(7092), + [anon_sym_GT_GT] = ACTIONS(7092), + [anon_sym_SEMI] = ACTIONS(7097), + [anon_sym___attribute__] = ACTIONS(7092), + [anon_sym___attribute] = ACTIONS(7092), + [anon_sym_COLON] = ACTIONS(7092), + [anon_sym_COLON_COLON] = ACTIONS(7087), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7097), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_RBRACE] = ACTIONS(7097), + [anon_sym_LBRACK] = ACTIONS(7097), + [anon_sym_EQ] = ACTIONS(7092), + [anon_sym_QMARK] = ACTIONS(7097), + [anon_sym_STAR_EQ] = ACTIONS(7097), + [anon_sym_SLASH_EQ] = ACTIONS(7097), + [anon_sym_PERCENT_EQ] = ACTIONS(7097), + [anon_sym_PLUS_EQ] = ACTIONS(7097), + [anon_sym_DASH_EQ] = ACTIONS(7097), + [anon_sym_LT_LT_EQ] = ACTIONS(7097), + [anon_sym_GT_GT_EQ] = ACTIONS(7097), + [anon_sym_AMP_EQ] = ACTIONS(7097), + [anon_sym_CARET_EQ] = ACTIONS(7097), + [anon_sym_PIPE_EQ] = ACTIONS(7097), + [anon_sym_and_eq] = ACTIONS(7092), + [anon_sym_or_eq] = ACTIONS(7092), + [anon_sym_xor_eq] = ACTIONS(7092), + [anon_sym_LT_EQ_GT] = ACTIONS(7097), + [anon_sym_or] = ACTIONS(7092), + [anon_sym_and] = ACTIONS(7092), + [anon_sym_bitor] = ACTIONS(7092), + [anon_sym_xor] = ACTIONS(7092), + [anon_sym_bitand] = ACTIONS(7092), + [anon_sym_not_eq] = ACTIONS(7092), + [anon_sym_DASH_DASH] = ACTIONS(7097), + [anon_sym_PLUS_PLUS] = ACTIONS(7097), + [anon_sym_DOT] = ACTIONS(7092), + [anon_sym_DOT_STAR] = ACTIONS(7097), + [anon_sym_DASH_GT] = ACTIONS(7097), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7097), + }, + [STATE(3603)] = { + [sym_identifier] = ACTIONS(9296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9298), + [anon_sym_COMMA] = ACTIONS(9298), + [anon_sym_RPAREN] = ACTIONS(9298), + [aux_sym_preproc_if_token2] = ACTIONS(9298), + [aux_sym_preproc_else_token1] = ACTIONS(9298), + [aux_sym_preproc_elif_token1] = ACTIONS(9296), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9298), + [anon_sym_LPAREN2] = ACTIONS(9298), + [anon_sym_DASH] = ACTIONS(9296), + [anon_sym_PLUS] = ACTIONS(9296), + [anon_sym_STAR] = ACTIONS(9296), + [anon_sym_SLASH] = ACTIONS(9296), + [anon_sym_PERCENT] = ACTIONS(9296), + [anon_sym_PIPE_PIPE] = ACTIONS(9298), + [anon_sym_AMP_AMP] = ACTIONS(9298), + [anon_sym_PIPE] = ACTIONS(9296), + [anon_sym_CARET] = ACTIONS(9296), + [anon_sym_AMP] = ACTIONS(9296), + [anon_sym_EQ_EQ] = ACTIONS(9298), + [anon_sym_BANG_EQ] = ACTIONS(9298), + [anon_sym_GT] = ACTIONS(9296), + [anon_sym_GT_EQ] = ACTIONS(9298), + [anon_sym_LT_EQ] = ACTIONS(9296), + [anon_sym_LT] = ACTIONS(9296), + [anon_sym_LT_LT] = ACTIONS(9296), + [anon_sym_GT_GT] = ACTIONS(9296), + [anon_sym_SEMI] = ACTIONS(9298), + [anon_sym___attribute__] = ACTIONS(9296), + [anon_sym___attribute] = ACTIONS(9296), + [anon_sym_COLON] = ACTIONS(9296), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9298), + [anon_sym_RBRACE] = ACTIONS(9298), + [anon_sym_LBRACK] = ACTIONS(9298), + [anon_sym_EQ] = ACTIONS(9296), + [anon_sym_QMARK] = ACTIONS(9298), + [anon_sym_STAR_EQ] = ACTIONS(9298), + [anon_sym_SLASH_EQ] = ACTIONS(9298), + [anon_sym_PERCENT_EQ] = ACTIONS(9298), + [anon_sym_PLUS_EQ] = ACTIONS(9298), + [anon_sym_DASH_EQ] = ACTIONS(9298), + [anon_sym_LT_LT_EQ] = ACTIONS(9298), + [anon_sym_GT_GT_EQ] = ACTIONS(9298), + [anon_sym_AMP_EQ] = ACTIONS(9298), + [anon_sym_CARET_EQ] = ACTIONS(9298), + [anon_sym_PIPE_EQ] = ACTIONS(9298), + [anon_sym_and_eq] = ACTIONS(9296), + [anon_sym_or_eq] = ACTIONS(9296), + [anon_sym_xor_eq] = ACTIONS(9296), + [anon_sym_LT_EQ_GT] = ACTIONS(9298), + [anon_sym_or] = ACTIONS(9296), + [anon_sym_and] = ACTIONS(9296), + [anon_sym_bitor] = ACTIONS(9296), + [anon_sym_xor] = ACTIONS(9296), + [anon_sym_bitand] = ACTIONS(9296), + [anon_sym_not_eq] = ACTIONS(9296), + [anon_sym_DASH_DASH] = ACTIONS(9298), + [anon_sym_PLUS_PLUS] = ACTIONS(9298), + [anon_sym_DOT] = ACTIONS(9296), + [anon_sym_DOT_STAR] = ACTIONS(9298), + [anon_sym_DASH_GT] = ACTIONS(9298), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9296), + [anon_sym_override] = ACTIONS(9296), + [anon_sym_requires] = ACTIONS(9296), + [anon_sym_COLON_RBRACK] = ACTIONS(9298), + }, + [STATE(3604)] = { + [sym_attribute_declaration] = STATE(3710), + [sym_parameter_list] = STATE(3140), + [aux_sym_attributed_declarator_repeat1] = STATE(3710), + [sym_identifier] = ACTIONS(9300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9302), + [anon_sym_COMMA] = ACTIONS(9302), + [anon_sym_RPAREN] = ACTIONS(9302), + [aux_sym_preproc_if_token2] = ACTIONS(9302), + [aux_sym_preproc_else_token1] = ACTIONS(9302), + [aux_sym_preproc_elif_token1] = ACTIONS(9300), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9302), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9302), + [anon_sym_LPAREN2] = ACTIONS(9304), + [anon_sym_DASH] = ACTIONS(9300), + [anon_sym_PLUS] = ACTIONS(9300), + [anon_sym_STAR] = ACTIONS(9300), + [anon_sym_SLASH] = ACTIONS(9300), + [anon_sym_PERCENT] = ACTIONS(9300), + [anon_sym_PIPE_PIPE] = ACTIONS(9302), + [anon_sym_AMP_AMP] = ACTIONS(9302), + [anon_sym_PIPE] = ACTIONS(9300), + [anon_sym_CARET] = ACTIONS(9300), + [anon_sym_AMP] = ACTIONS(9300), + [anon_sym_EQ_EQ] = ACTIONS(9302), + [anon_sym_BANG_EQ] = ACTIONS(9302), + [anon_sym_GT] = ACTIONS(9300), + [anon_sym_GT_EQ] = ACTIONS(9302), + [anon_sym_LT_EQ] = ACTIONS(9300), + [anon_sym_LT] = ACTIONS(9300), + [anon_sym_LT_LT] = ACTIONS(9300), + [anon_sym_GT_GT] = ACTIONS(9300), + [anon_sym_SEMI] = ACTIONS(9302), + [anon_sym___attribute__] = ACTIONS(9300), + [anon_sym___attribute] = ACTIONS(9300), + [anon_sym_COLON] = ACTIONS(9300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACE] = ACTIONS(9302), + [anon_sym_LBRACK] = ACTIONS(9306), + [anon_sym_EQ] = ACTIONS(9300), + [anon_sym_QMARK] = ACTIONS(9302), + [anon_sym_STAR_EQ] = ACTIONS(9302), + [anon_sym_SLASH_EQ] = ACTIONS(9302), + [anon_sym_PERCENT_EQ] = ACTIONS(9302), + [anon_sym_PLUS_EQ] = ACTIONS(9302), + [anon_sym_DASH_EQ] = ACTIONS(9302), + [anon_sym_LT_LT_EQ] = ACTIONS(9302), + [anon_sym_GT_GT_EQ] = ACTIONS(9302), + [anon_sym_AMP_EQ] = ACTIONS(9302), + [anon_sym_CARET_EQ] = ACTIONS(9302), + [anon_sym_PIPE_EQ] = ACTIONS(9302), + [anon_sym_and_eq] = ACTIONS(9300), + [anon_sym_or_eq] = ACTIONS(9300), + [anon_sym_xor_eq] = ACTIONS(9300), + [anon_sym_LT_EQ_GT] = ACTIONS(9302), + [anon_sym_or] = ACTIONS(9300), + [anon_sym_and] = ACTIONS(9300), + [anon_sym_bitor] = ACTIONS(9300), + [anon_sym_xor] = ACTIONS(9300), + [anon_sym_bitand] = ACTIONS(9300), + [anon_sym_not_eq] = ACTIONS(9300), + [anon_sym_DASH_DASH] = ACTIONS(9302), + [anon_sym_PLUS_PLUS] = ACTIONS(9302), + [anon_sym_DOT] = ACTIONS(9300), + [anon_sym_DOT_STAR] = ACTIONS(9302), + [anon_sym_DASH_GT] = ACTIONS(9302), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9302), + }, + [STATE(3605)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2607), + [sym_identifier] = ACTIONS(6999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), + [anon_sym_COMMA] = ACTIONS(7525), + [anon_sym_RPAREN] = ACTIONS(7525), + [anon_sym_LPAREN2] = ACTIONS(7525), + [anon_sym_DASH] = ACTIONS(7528), + [anon_sym_PLUS] = ACTIONS(7528), + [anon_sym_STAR] = ACTIONS(7525), + [anon_sym_SLASH] = ACTIONS(7528), + [anon_sym_PERCENT] = ACTIONS(7525), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_AMP_AMP] = ACTIONS(7525), + [anon_sym_PIPE] = ACTIONS(7528), + [anon_sym_CARET] = ACTIONS(7525), + [anon_sym_AMP] = ACTIONS(7528), + [anon_sym_EQ_EQ] = ACTIONS(7525), + [anon_sym_BANG_EQ] = ACTIONS(7525), + [anon_sym_GT] = ACTIONS(7528), + [anon_sym_GT_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7528), + [anon_sym_LT] = ACTIONS(7528), + [anon_sym_LT_LT] = ACTIONS(7525), + [anon_sym_GT_GT] = ACTIONS(7525), + [anon_sym_SEMI] = ACTIONS(7525), + [anon_sym___extension__] = ACTIONS(6999), + [anon_sym___attribute__] = ACTIONS(7528), + [anon_sym___attribute] = ACTIONS(7528), + [anon_sym_COLON] = ACTIONS(7528), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7525), + [anon_sym_LBRACE] = ACTIONS(7525), + [anon_sym_RBRACE] = ACTIONS(7525), + [anon_sym_signed] = ACTIONS(8505), + [anon_sym_unsigned] = ACTIONS(8505), + [anon_sym_long] = ACTIONS(8505), + [anon_sym_short] = ACTIONS(8505), + [anon_sym_LBRACK] = ACTIONS(7525), + [anon_sym_const] = ACTIONS(6999), + [anon_sym_constexpr] = ACTIONS(6999), + [anon_sym_volatile] = ACTIONS(6999), + [anon_sym_restrict] = ACTIONS(6999), + [anon_sym___restrict__] = ACTIONS(6999), + [anon_sym__Atomic] = ACTIONS(6999), + [anon_sym__Noreturn] = ACTIONS(6999), + [anon_sym_noreturn] = ACTIONS(6999), + [anon_sym__Nonnull] = ACTIONS(6999), + [anon_sym_mutable] = ACTIONS(6999), + [anon_sym_constinit] = ACTIONS(6999), + [anon_sym_consteval] = ACTIONS(6999), + [anon_sym_alignas] = ACTIONS(6999), + [anon_sym__Alignas] = ACTIONS(6999), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7525), + [anon_sym_LT_EQ_GT] = ACTIONS(7525), + [anon_sym_or] = ACTIONS(7528), + [anon_sym_and] = ACTIONS(7528), + [anon_sym_bitor] = ACTIONS(7528), + [anon_sym_xor] = ACTIONS(7528), + [anon_sym_bitand] = ACTIONS(7528), + [anon_sym_not_eq] = ACTIONS(7528), + [anon_sym_DASH_DASH] = ACTIONS(7525), + [anon_sym_PLUS_PLUS] = ACTIONS(7525), + [anon_sym_DOT] = ACTIONS(7528), + [anon_sym_DOT_STAR] = ACTIONS(7525), + [anon_sym_DASH_GT] = ACTIONS(7525), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7525), + }, + [STATE(3606)] = { + [sym_template_argument_list] = STATE(2928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7087), + [anon_sym_COMMA] = ACTIONS(7087), + [anon_sym_RPAREN] = ACTIONS(7087), + [anon_sym_LPAREN2] = ACTIONS(7087), + [anon_sym_DASH] = ACTIONS(7094), + [anon_sym_PLUS] = ACTIONS(7094), + [anon_sym_STAR] = ACTIONS(7094), + [anon_sym_SLASH] = ACTIONS(7094), + [anon_sym_PERCENT] = ACTIONS(7094), + [anon_sym_PIPE_PIPE] = ACTIONS(7087), + [anon_sym_AMP_AMP] = ACTIONS(7087), + [anon_sym_PIPE] = ACTIONS(7094), + [anon_sym_CARET] = ACTIONS(7094), + [anon_sym_AMP] = ACTIONS(7094), + [anon_sym_EQ_EQ] = ACTIONS(7087), + [anon_sym_BANG_EQ] = ACTIONS(7087), + [anon_sym_GT] = ACTIONS(7094), + [anon_sym_GT_EQ] = ACTIONS(7087), + [anon_sym_LT_EQ] = ACTIONS(7094), + [anon_sym_LT] = ACTIONS(8198), + [anon_sym_LT_LT] = ACTIONS(7094), + [anon_sym_GT_GT] = ACTIONS(7094), + [anon_sym___extension__] = ACTIONS(7090), + [anon_sym_COLON_COLON] = ACTIONS(7087), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_LBRACK] = ACTIONS(7087), + [anon_sym_EQ] = ACTIONS(7094), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7090), + [anon_sym_volatile] = ACTIONS(7090), + [anon_sym_restrict] = ACTIONS(7090), + [anon_sym___restrict__] = ACTIONS(7090), + [anon_sym__Atomic] = ACTIONS(7090), + [anon_sym__Noreturn] = ACTIONS(7090), + [anon_sym_noreturn] = ACTIONS(7090), + [anon_sym__Nonnull] = ACTIONS(7090), + [anon_sym_mutable] = ACTIONS(7090), + [anon_sym_constinit] = ACTIONS(7090), + [anon_sym_consteval] = ACTIONS(7090), + [anon_sym_alignas] = ACTIONS(7090), + [anon_sym__Alignas] = ACTIONS(7090), + [anon_sym_QMARK] = ACTIONS(7087), + [anon_sym_STAR_EQ] = ACTIONS(7087), + [anon_sym_SLASH_EQ] = ACTIONS(7087), + [anon_sym_PERCENT_EQ] = ACTIONS(7087), + [anon_sym_PLUS_EQ] = ACTIONS(7087), + [anon_sym_DASH_EQ] = ACTIONS(7087), + [anon_sym_LT_LT_EQ] = ACTIONS(7087), + [anon_sym_GT_GT_EQ] = ACTIONS(7087), + [anon_sym_AMP_EQ] = ACTIONS(7087), + [anon_sym_CARET_EQ] = ACTIONS(7087), + [anon_sym_PIPE_EQ] = ACTIONS(7087), + [anon_sym_LT_EQ_GT] = ACTIONS(7087), + [anon_sym_or] = ACTIONS(7087), + [anon_sym_and] = ACTIONS(7087), + [anon_sym_bitor] = ACTIONS(7087), + [anon_sym_xor] = ACTIONS(7087), + [anon_sym_bitand] = ACTIONS(7087), + [anon_sym_not_eq] = ACTIONS(7087), + [anon_sym_DASH_DASH] = ACTIONS(7087), + [anon_sym_PLUS_PLUS] = ACTIONS(7087), + [anon_sym_DOT] = ACTIONS(7094), + [anon_sym_DOT_STAR] = ACTIONS(7087), + [anon_sym_DASH_GT] = ACTIONS(7094), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7087), + }, + [STATE(3607)] = { + [sym_identifier] = ACTIONS(6632), + [anon_sym_LPAREN2] = ACTIONS(6634), + [anon_sym_TILDE] = ACTIONS(6634), + [anon_sym_STAR] = ACTIONS(6634), + [anon_sym_PIPE_PIPE] = ACTIONS(6634), + [anon_sym_AMP_AMP] = ACTIONS(6634), + [anon_sym_AMP] = ACTIONS(6632), + [anon_sym___extension__] = ACTIONS(6632), + [anon_sym_virtual] = ACTIONS(6632), + [anon_sym_extern] = ACTIONS(6632), + [anon_sym___attribute__] = ACTIONS(6632), + [anon_sym___attribute] = ACTIONS(6632), + [anon_sym_using] = ACTIONS(6632), + [anon_sym_COLON_COLON] = ACTIONS(6634), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6634), + [anon_sym___declspec] = ACTIONS(6632), + [anon_sym___based] = ACTIONS(6632), + [anon_sym___cdecl] = ACTIONS(6632), + [anon_sym___clrcall] = ACTIONS(6632), + [anon_sym___stdcall] = ACTIONS(6632), + [anon_sym___fastcall] = ACTIONS(6632), + [anon_sym___thiscall] = ACTIONS(6632), + [anon_sym___vectorcall] = ACTIONS(6632), + [anon_sym_signed] = ACTIONS(6632), + [anon_sym_unsigned] = ACTIONS(6632), + [anon_sym_long] = ACTIONS(6632), + [anon_sym_short] = ACTIONS(6632), + [anon_sym_LBRACK] = ACTIONS(6632), + [anon_sym_static] = ACTIONS(6632), + [anon_sym_register] = ACTIONS(6632), + [anon_sym_inline] = ACTIONS(6632), + [anon_sym___inline] = ACTIONS(6632), + [anon_sym___inline__] = ACTIONS(6632), + [anon_sym___forceinline] = ACTIONS(6632), + [anon_sym_thread_local] = ACTIONS(6632), + [anon_sym___thread] = ACTIONS(6632), + [anon_sym_const] = ACTIONS(6632), + [anon_sym_constexpr] = ACTIONS(6632), + [anon_sym_volatile] = ACTIONS(6632), + [anon_sym_restrict] = ACTIONS(6632), + [anon_sym___restrict__] = ACTIONS(6632), + [anon_sym__Atomic] = ACTIONS(6632), + [anon_sym__Noreturn] = ACTIONS(6632), + [anon_sym_noreturn] = ACTIONS(6632), + [anon_sym__Nonnull] = ACTIONS(6632), + [anon_sym_mutable] = ACTIONS(6632), + [anon_sym_constinit] = ACTIONS(6632), + [anon_sym_consteval] = ACTIONS(6632), + [anon_sym_alignas] = ACTIONS(6632), + [anon_sym__Alignas] = ACTIONS(6632), + [sym_primitive_type] = ACTIONS(6632), + [anon_sym_enum] = ACTIONS(6632), + [anon_sym_class] = ACTIONS(6632), + [anon_sym_struct] = ACTIONS(6632), + [anon_sym_union] = ACTIONS(6632), + [anon_sym_or] = ACTIONS(6632), + [anon_sym_and] = ACTIONS(6632), + [anon_sym_typename] = ACTIONS(6632), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6632), + [anon_sym_decltype] = ACTIONS(6632), + [anon_sym_explicit] = ACTIONS(6632), + [anon_sym_template] = ACTIONS(6632), + [anon_sym_operator] = ACTIONS(6632), + [anon_sym_friend] = ACTIONS(6632), + [anon_sym_concept] = ACTIONS(6632), + [anon_sym_LBRACK_COLON] = ACTIONS(6634), + }, + [STATE(3608)] = { + [sym_identifier] = ACTIONS(9308), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9310), + [anon_sym_COMMA] = ACTIONS(9310), + [anon_sym_RPAREN] = ACTIONS(9310), + [aux_sym_preproc_if_token2] = ACTIONS(9310), + [aux_sym_preproc_else_token1] = ACTIONS(9310), + [aux_sym_preproc_elif_token1] = ACTIONS(9308), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9310), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9310), + [anon_sym_LPAREN2] = ACTIONS(9310), + [anon_sym_DASH] = ACTIONS(9308), + [anon_sym_PLUS] = ACTIONS(9308), + [anon_sym_STAR] = ACTIONS(9308), + [anon_sym_SLASH] = ACTIONS(9308), + [anon_sym_PERCENT] = ACTIONS(9308), + [anon_sym_PIPE_PIPE] = ACTIONS(9310), + [anon_sym_AMP_AMP] = ACTIONS(9310), + [anon_sym_PIPE] = ACTIONS(9308), + [anon_sym_CARET] = ACTIONS(9308), + [anon_sym_AMP] = ACTIONS(9308), + [anon_sym_EQ_EQ] = ACTIONS(9310), + [anon_sym_BANG_EQ] = ACTIONS(9310), + [anon_sym_GT] = ACTIONS(9308), + [anon_sym_GT_EQ] = ACTIONS(9310), + [anon_sym_LT_EQ] = ACTIONS(9308), + [anon_sym_LT] = ACTIONS(9308), + [anon_sym_LT_LT] = ACTIONS(9308), + [anon_sym_GT_GT] = ACTIONS(9308), + [anon_sym_SEMI] = ACTIONS(9310), + [anon_sym___attribute__] = ACTIONS(9308), + [anon_sym___attribute] = ACTIONS(9308), + [anon_sym_COLON] = ACTIONS(9308), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9310), + [anon_sym_RBRACE] = ACTIONS(9310), + [anon_sym_LBRACK] = ACTIONS(9310), + [anon_sym_EQ] = ACTIONS(9308), + [anon_sym_QMARK] = ACTIONS(9310), + [anon_sym_STAR_EQ] = ACTIONS(9310), + [anon_sym_SLASH_EQ] = ACTIONS(9310), + [anon_sym_PERCENT_EQ] = ACTIONS(9310), + [anon_sym_PLUS_EQ] = ACTIONS(9310), + [anon_sym_DASH_EQ] = ACTIONS(9310), + [anon_sym_LT_LT_EQ] = ACTIONS(9310), + [anon_sym_GT_GT_EQ] = ACTIONS(9310), + [anon_sym_AMP_EQ] = ACTIONS(9310), + [anon_sym_CARET_EQ] = ACTIONS(9310), + [anon_sym_PIPE_EQ] = ACTIONS(9310), + [anon_sym_and_eq] = ACTIONS(9308), + [anon_sym_or_eq] = ACTIONS(9308), + [anon_sym_xor_eq] = ACTIONS(9308), + [anon_sym_LT_EQ_GT] = ACTIONS(9310), + [anon_sym_or] = ACTIONS(9308), + [anon_sym_and] = ACTIONS(9308), + [anon_sym_bitor] = ACTIONS(9308), + [anon_sym_xor] = ACTIONS(9308), + [anon_sym_bitand] = ACTIONS(9308), + [anon_sym_not_eq] = ACTIONS(9308), + [anon_sym_DASH_DASH] = ACTIONS(9310), + [anon_sym_PLUS_PLUS] = ACTIONS(9310), + [anon_sym_DOT] = ACTIONS(9308), + [anon_sym_DOT_STAR] = ACTIONS(9310), + [anon_sym_DASH_GT] = ACTIONS(9310), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9308), + [anon_sym_override] = ACTIONS(9308), + [anon_sym_requires] = ACTIONS(9308), + [anon_sym_COLON_RBRACK] = ACTIONS(9310), + }, + [STATE(3609)] = { + [sym_attribute_specifier] = STATE(3117), + [sym_field_declaration_list] = STATE(3934), + [sym_virtual_specifier] = STATE(9567), + [sym_base_class_clause] = STATE(10298), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), + [anon_sym_COMMA] = ACTIONS(7237), + [anon_sym_RPAREN] = ACTIONS(7237), + [anon_sym_LPAREN2] = ACTIONS(7237), + [anon_sym_DASH] = ACTIONS(7235), + [anon_sym_PLUS] = ACTIONS(7235), + [anon_sym_STAR] = ACTIONS(7237), + [anon_sym_SLASH] = ACTIONS(7235), + [anon_sym_PERCENT] = ACTIONS(7237), + [anon_sym_PIPE_PIPE] = ACTIONS(7237), + [anon_sym_AMP_AMP] = ACTIONS(7237), + [anon_sym_PIPE] = ACTIONS(7235), + [anon_sym_CARET] = ACTIONS(7237), + [anon_sym_AMP] = ACTIONS(7235), + [anon_sym_EQ_EQ] = ACTIONS(7237), + [anon_sym_BANG_EQ] = ACTIONS(7237), + [anon_sym_GT] = ACTIONS(7235), + [anon_sym_GT_EQ] = ACTIONS(7237), + [anon_sym_LT_EQ] = ACTIONS(7235), + [anon_sym_LT] = ACTIONS(7235), + [anon_sym_LT_LT] = ACTIONS(7237), + [anon_sym_GT_GT] = ACTIONS(7237), + [anon_sym_SEMI] = ACTIONS(7237), + [anon_sym___extension__] = ACTIONS(7237), + [anon_sym___attribute__] = ACTIONS(9312), + [anon_sym___attribute] = ACTIONS(9244), + [anon_sym_COLON] = ACTIONS(7241), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7237), + [anon_sym_LBRACE] = ACTIONS(9314), + [anon_sym_RBRACE] = ACTIONS(7237), + [anon_sym_LBRACK] = ACTIONS(7237), + [anon_sym_const] = ACTIONS(7235), + [anon_sym_constexpr] = ACTIONS(7237), + [anon_sym_volatile] = ACTIONS(7237), + [anon_sym_restrict] = ACTIONS(7237), + [anon_sym___restrict__] = ACTIONS(7237), + [anon_sym__Atomic] = ACTIONS(7237), + [anon_sym__Noreturn] = ACTIONS(7237), + [anon_sym_noreturn] = ACTIONS(7237), + [anon_sym__Nonnull] = ACTIONS(7237), + [anon_sym_mutable] = ACTIONS(7237), + [anon_sym_constinit] = ACTIONS(7237), + [anon_sym_consteval] = ACTIONS(7237), + [anon_sym_alignas] = ACTIONS(7237), + [anon_sym__Alignas] = ACTIONS(7237), + [anon_sym_QMARK] = ACTIONS(7237), + [anon_sym_LT_EQ_GT] = ACTIONS(7237), + [anon_sym_or] = ACTIONS(7237), + [anon_sym_and] = ACTIONS(7237), + [anon_sym_bitor] = ACTIONS(7237), + [anon_sym_xor] = ACTIONS(7237), + [anon_sym_bitand] = ACTIONS(7237), + [anon_sym_not_eq] = ACTIONS(7237), + [anon_sym_DASH_DASH] = ACTIONS(7237), + [anon_sym_PLUS_PLUS] = ACTIONS(7237), + [anon_sym_DOT] = ACTIONS(7235), + [anon_sym_DOT_STAR] = ACTIONS(7237), + [anon_sym_DASH_GT] = ACTIONS(7237), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8160), + [anon_sym_override] = ACTIONS(8160), + [anon_sym_requires] = ACTIONS(7237), + [anon_sym_COLON_RBRACK] = ACTIONS(7237), + }, + [STATE(3610)] = { + [sym_identifier] = ACTIONS(7291), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_TILDE] = ACTIONS(7293), + [anon_sym_STAR] = ACTIONS(7293), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym___extension__] = ACTIONS(7291), + [anon_sym_virtual] = ACTIONS(7291), + [anon_sym_extern] = ACTIONS(7291), + [anon_sym___attribute__] = ACTIONS(7291), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_using] = ACTIONS(7291), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7293), + [anon_sym___declspec] = ACTIONS(7291), + [anon_sym___based] = ACTIONS(7291), + [anon_sym___cdecl] = ACTIONS(7291), + [anon_sym___clrcall] = ACTIONS(7291), + [anon_sym___stdcall] = ACTIONS(7291), + [anon_sym___fastcall] = ACTIONS(7291), + [anon_sym___thiscall] = ACTIONS(7291), + [anon_sym___vectorcall] = ACTIONS(7291), + [anon_sym_signed] = ACTIONS(7291), + [anon_sym_unsigned] = ACTIONS(7291), + [anon_sym_long] = ACTIONS(7291), + [anon_sym_short] = ACTIONS(7291), + [anon_sym_LBRACK] = ACTIONS(7291), + [anon_sym_static] = ACTIONS(7291), + [anon_sym_register] = ACTIONS(7291), + [anon_sym_inline] = ACTIONS(7291), + [anon_sym___inline] = ACTIONS(7291), + [anon_sym___inline__] = ACTIONS(7291), + [anon_sym___forceinline] = ACTIONS(7291), + [anon_sym_thread_local] = ACTIONS(7291), + [anon_sym___thread] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7291), + [anon_sym_volatile] = ACTIONS(7291), + [anon_sym_restrict] = ACTIONS(7291), + [anon_sym___restrict__] = ACTIONS(7291), + [anon_sym__Atomic] = ACTIONS(7291), + [anon_sym__Noreturn] = ACTIONS(7291), + [anon_sym_noreturn] = ACTIONS(7291), + [anon_sym__Nonnull] = ACTIONS(7291), + [anon_sym_mutable] = ACTIONS(7291), + [anon_sym_constinit] = ACTIONS(7291), + [anon_sym_consteval] = ACTIONS(7291), + [anon_sym_alignas] = ACTIONS(7291), + [anon_sym__Alignas] = ACTIONS(7291), + [sym_primitive_type] = ACTIONS(7291), + [anon_sym_enum] = ACTIONS(7291), + [anon_sym_class] = ACTIONS(7291), + [anon_sym_struct] = ACTIONS(7291), + [anon_sym_union] = ACTIONS(7291), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_typename] = ACTIONS(7291), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7291), + [anon_sym_decltype] = ACTIONS(7291), + [anon_sym_explicit] = ACTIONS(7291), + [anon_sym_template] = ACTIONS(7291), + [anon_sym_operator] = ACTIONS(7291), + [anon_sym_friend] = ACTIONS(7291), + [anon_sym_concept] = ACTIONS(7291), + [anon_sym_LBRACK_COLON] = ACTIONS(7293), + }, + [STATE(3611)] = { + [sym_identifier] = ACTIONS(9316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9318), + [anon_sym_COMMA] = ACTIONS(9318), + [anon_sym_RPAREN] = ACTIONS(9318), + [aux_sym_preproc_if_token2] = ACTIONS(9318), + [aux_sym_preproc_else_token1] = ACTIONS(9318), + [aux_sym_preproc_elif_token1] = ACTIONS(9316), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9318), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9318), + [anon_sym_LPAREN2] = ACTIONS(9318), + [anon_sym_DASH] = ACTIONS(9316), + [anon_sym_PLUS] = ACTIONS(9316), + [anon_sym_STAR] = ACTIONS(9316), + [anon_sym_SLASH] = ACTIONS(9316), + [anon_sym_PERCENT] = ACTIONS(9316), + [anon_sym_PIPE_PIPE] = ACTIONS(9318), + [anon_sym_AMP_AMP] = ACTIONS(9318), + [anon_sym_PIPE] = ACTIONS(9316), + [anon_sym_CARET] = ACTIONS(9316), + [anon_sym_AMP] = ACTIONS(9316), + [anon_sym_EQ_EQ] = ACTIONS(9318), + [anon_sym_BANG_EQ] = ACTIONS(9318), + [anon_sym_GT] = ACTIONS(9316), + [anon_sym_GT_EQ] = ACTIONS(9318), + [anon_sym_LT_EQ] = ACTIONS(9316), + [anon_sym_LT] = ACTIONS(9316), + [anon_sym_LT_LT] = ACTIONS(9316), + [anon_sym_GT_GT] = ACTIONS(9316), + [anon_sym_SEMI] = ACTIONS(9318), + [anon_sym___attribute__] = ACTIONS(9316), + [anon_sym___attribute] = ACTIONS(9316), + [anon_sym_COLON] = ACTIONS(9316), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9318), + [anon_sym_RBRACE] = ACTIONS(9318), + [anon_sym_LBRACK] = ACTIONS(9318), + [anon_sym_EQ] = ACTIONS(9316), + [anon_sym_QMARK] = ACTIONS(9318), + [anon_sym_STAR_EQ] = ACTIONS(9318), + [anon_sym_SLASH_EQ] = ACTIONS(9318), + [anon_sym_PERCENT_EQ] = ACTIONS(9318), + [anon_sym_PLUS_EQ] = ACTIONS(9318), + [anon_sym_DASH_EQ] = ACTIONS(9318), + [anon_sym_LT_LT_EQ] = ACTIONS(9318), + [anon_sym_GT_GT_EQ] = ACTIONS(9318), + [anon_sym_AMP_EQ] = ACTIONS(9318), + [anon_sym_CARET_EQ] = ACTIONS(9318), + [anon_sym_PIPE_EQ] = ACTIONS(9318), + [anon_sym_and_eq] = ACTIONS(9316), + [anon_sym_or_eq] = ACTIONS(9316), + [anon_sym_xor_eq] = ACTIONS(9316), + [anon_sym_LT_EQ_GT] = ACTIONS(9318), + [anon_sym_or] = ACTIONS(9316), + [anon_sym_and] = ACTIONS(9316), + [anon_sym_bitor] = ACTIONS(9316), + [anon_sym_xor] = ACTIONS(9316), + [anon_sym_bitand] = ACTIONS(9316), + [anon_sym_not_eq] = ACTIONS(9316), + [anon_sym_DASH_DASH] = ACTIONS(9318), + [anon_sym_PLUS_PLUS] = ACTIONS(9318), + [anon_sym_DOT] = ACTIONS(9316), + [anon_sym_DOT_STAR] = ACTIONS(9318), + [anon_sym_DASH_GT] = ACTIONS(9318), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9316), + [anon_sym_override] = ACTIONS(9316), + [anon_sym_requires] = ACTIONS(9316), + [anon_sym_COLON_RBRACK] = ACTIONS(9318), + }, + [STATE(3612)] = { + [sym_identifier] = ACTIONS(7291), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_TILDE] = ACTIONS(7293), + [anon_sym_STAR] = ACTIONS(7293), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym___extension__] = ACTIONS(7291), + [anon_sym_virtual] = ACTIONS(7291), + [anon_sym_extern] = ACTIONS(7291), + [anon_sym___attribute__] = ACTIONS(7291), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_using] = ACTIONS(7291), + [anon_sym_COLON_COLON] = ACTIONS(7293), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7293), + [anon_sym___declspec] = ACTIONS(7291), + [anon_sym___based] = ACTIONS(7291), + [anon_sym___cdecl] = ACTIONS(7291), + [anon_sym___clrcall] = ACTIONS(7291), + [anon_sym___stdcall] = ACTIONS(7291), + [anon_sym___fastcall] = ACTIONS(7291), + [anon_sym___thiscall] = ACTIONS(7291), + [anon_sym___vectorcall] = ACTIONS(7291), + [anon_sym_signed] = ACTIONS(7291), + [anon_sym_unsigned] = ACTIONS(7291), + [anon_sym_long] = ACTIONS(7291), + [anon_sym_short] = ACTIONS(7291), + [anon_sym_LBRACK] = ACTIONS(7291), + [anon_sym_static] = ACTIONS(7291), + [anon_sym_register] = ACTIONS(7291), + [anon_sym_inline] = ACTIONS(7291), + [anon_sym___inline] = ACTIONS(7291), + [anon_sym___inline__] = ACTIONS(7291), + [anon_sym___forceinline] = ACTIONS(7291), + [anon_sym_thread_local] = ACTIONS(7291), + [anon_sym___thread] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7291), + [anon_sym_volatile] = ACTIONS(7291), + [anon_sym_restrict] = ACTIONS(7291), + [anon_sym___restrict__] = ACTIONS(7291), + [anon_sym__Atomic] = ACTIONS(7291), + [anon_sym__Noreturn] = ACTIONS(7291), + [anon_sym_noreturn] = ACTIONS(7291), + [anon_sym__Nonnull] = ACTIONS(7291), + [anon_sym_mutable] = ACTIONS(7291), + [anon_sym_constinit] = ACTIONS(7291), + [anon_sym_consteval] = ACTIONS(7291), + [anon_sym_alignas] = ACTIONS(7291), + [anon_sym__Alignas] = ACTIONS(7291), + [sym_primitive_type] = ACTIONS(7291), + [anon_sym_enum] = ACTIONS(7291), + [anon_sym_class] = ACTIONS(7291), + [anon_sym_struct] = ACTIONS(7291), + [anon_sym_union] = ACTIONS(7291), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_typename] = ACTIONS(7291), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7291), + [anon_sym_decltype] = ACTIONS(7291), + [anon_sym_explicit] = ACTIONS(7291), + [anon_sym_template] = ACTIONS(7291), + [anon_sym_operator] = ACTIONS(7291), + [anon_sym_friend] = ACTIONS(7291), + [anon_sym_concept] = ACTIONS(7291), + [anon_sym_LBRACK_COLON] = ACTIONS(7293), + }, + [STATE(3613)] = { + [sym_identifier] = ACTIONS(7104), + [anon_sym_LPAREN2] = ACTIONS(7106), + [anon_sym_TILDE] = ACTIONS(7106), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_PIPE_PIPE] = ACTIONS(7106), + [anon_sym_AMP_AMP] = ACTIONS(7106), + [anon_sym_AMP] = ACTIONS(7104), + [anon_sym___extension__] = ACTIONS(7104), + [anon_sym_virtual] = ACTIONS(7104), + [anon_sym_extern] = ACTIONS(7104), + [anon_sym___attribute__] = ACTIONS(7104), + [anon_sym___attribute] = ACTIONS(7104), + [anon_sym_using] = ACTIONS(7104), + [anon_sym_COLON_COLON] = ACTIONS(7106), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7106), + [anon_sym___declspec] = ACTIONS(7104), + [anon_sym___based] = ACTIONS(7104), + [anon_sym___cdecl] = ACTIONS(7104), + [anon_sym___clrcall] = ACTIONS(7104), + [anon_sym___stdcall] = ACTIONS(7104), + [anon_sym___fastcall] = ACTIONS(7104), + [anon_sym___thiscall] = ACTIONS(7104), + [anon_sym___vectorcall] = ACTIONS(7104), + [anon_sym_signed] = ACTIONS(7104), + [anon_sym_unsigned] = ACTIONS(7104), + [anon_sym_long] = ACTIONS(7104), + [anon_sym_short] = ACTIONS(7104), + [anon_sym_LBRACK] = ACTIONS(7104), + [anon_sym_static] = ACTIONS(7104), + [anon_sym_register] = ACTIONS(7104), + [anon_sym_inline] = ACTIONS(7104), + [anon_sym___inline] = ACTIONS(7104), + [anon_sym___inline__] = ACTIONS(7104), + [anon_sym___forceinline] = ACTIONS(7104), + [anon_sym_thread_local] = ACTIONS(7104), + [anon_sym___thread] = ACTIONS(7104), + [anon_sym_const] = ACTIONS(7104), + [anon_sym_constexpr] = ACTIONS(7104), + [anon_sym_volatile] = ACTIONS(7104), + [anon_sym_restrict] = ACTIONS(7104), + [anon_sym___restrict__] = ACTIONS(7104), + [anon_sym__Atomic] = ACTIONS(7104), + [anon_sym__Noreturn] = ACTIONS(7104), + [anon_sym_noreturn] = ACTIONS(7104), + [anon_sym__Nonnull] = ACTIONS(7104), + [anon_sym_mutable] = ACTIONS(7104), + [anon_sym_constinit] = ACTIONS(7104), + [anon_sym_consteval] = ACTIONS(7104), + [anon_sym_alignas] = ACTIONS(7104), + [anon_sym__Alignas] = ACTIONS(7104), + [sym_primitive_type] = ACTIONS(7104), + [anon_sym_enum] = ACTIONS(7104), + [anon_sym_class] = ACTIONS(7104), + [anon_sym_struct] = ACTIONS(7104), + [anon_sym_union] = ACTIONS(7104), + [anon_sym_or] = ACTIONS(7104), + [anon_sym_and] = ACTIONS(7104), + [anon_sym_typename] = ACTIONS(7104), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7104), + [anon_sym_decltype] = ACTIONS(7104), + [anon_sym_explicit] = ACTIONS(7104), + [anon_sym_template] = ACTIONS(7104), + [anon_sym_operator] = ACTIONS(7104), + [anon_sym_friend] = ACTIONS(7104), + [anon_sym_concept] = ACTIONS(7104), + [anon_sym_LBRACK_COLON] = ACTIONS(7106), + }, + [STATE(3614)] = { + [sym_identifier] = ACTIONS(7301), + [anon_sym_LPAREN2] = ACTIONS(7303), + [anon_sym_TILDE] = ACTIONS(7303), + [anon_sym_STAR] = ACTIONS(7303), + [anon_sym_PIPE_PIPE] = ACTIONS(7303), + [anon_sym_AMP_AMP] = ACTIONS(7303), + [anon_sym_AMP] = ACTIONS(7301), + [anon_sym___extension__] = ACTIONS(7301), + [anon_sym_virtual] = ACTIONS(7301), + [anon_sym_extern] = ACTIONS(7301), + [anon_sym___attribute__] = ACTIONS(7301), + [anon_sym___attribute] = ACTIONS(7301), + [anon_sym_using] = ACTIONS(7301), + [anon_sym_COLON_COLON] = ACTIONS(7303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7303), + [anon_sym___declspec] = ACTIONS(7301), + [anon_sym___based] = ACTIONS(7301), + [anon_sym___cdecl] = ACTIONS(7301), + [anon_sym___clrcall] = ACTIONS(7301), + [anon_sym___stdcall] = ACTIONS(7301), + [anon_sym___fastcall] = ACTIONS(7301), + [anon_sym___thiscall] = ACTIONS(7301), + [anon_sym___vectorcall] = ACTIONS(7301), + [anon_sym_signed] = ACTIONS(7301), + [anon_sym_unsigned] = ACTIONS(7301), + [anon_sym_long] = ACTIONS(7301), + [anon_sym_short] = ACTIONS(7301), + [anon_sym_LBRACK] = ACTIONS(7301), + [anon_sym_static] = ACTIONS(7301), + [anon_sym_register] = ACTIONS(7301), + [anon_sym_inline] = ACTIONS(7301), + [anon_sym___inline] = ACTIONS(7301), + [anon_sym___inline__] = ACTIONS(7301), + [anon_sym___forceinline] = ACTIONS(7301), + [anon_sym_thread_local] = ACTIONS(7301), + [anon_sym___thread] = ACTIONS(7301), + [anon_sym_const] = ACTIONS(7301), + [anon_sym_constexpr] = ACTIONS(7301), + [anon_sym_volatile] = ACTIONS(7301), + [anon_sym_restrict] = ACTIONS(7301), + [anon_sym___restrict__] = ACTIONS(7301), + [anon_sym__Atomic] = ACTIONS(7301), + [anon_sym__Noreturn] = ACTIONS(7301), + [anon_sym_noreturn] = ACTIONS(7301), + [anon_sym__Nonnull] = ACTIONS(7301), + [anon_sym_mutable] = ACTIONS(7301), + [anon_sym_constinit] = ACTIONS(7301), + [anon_sym_consteval] = ACTIONS(7301), + [anon_sym_alignas] = ACTIONS(7301), + [anon_sym__Alignas] = ACTIONS(7301), + [sym_primitive_type] = ACTIONS(7301), + [anon_sym_enum] = ACTIONS(7301), + [anon_sym_class] = ACTIONS(7301), + [anon_sym_struct] = ACTIONS(7301), + [anon_sym_union] = ACTIONS(7301), + [anon_sym_or] = ACTIONS(7301), + [anon_sym_and] = ACTIONS(7301), + [anon_sym_typename] = ACTIONS(7301), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7301), + [anon_sym_decltype] = ACTIONS(7301), + [anon_sym_explicit] = ACTIONS(7301), + [anon_sym_template] = ACTIONS(7301), + [anon_sym_operator] = ACTIONS(7301), + [anon_sym_friend] = ACTIONS(7301), + [anon_sym_concept] = ACTIONS(7301), + [anon_sym_LBRACK_COLON] = ACTIONS(7303), + }, + [STATE(3615)] = { + [sym_identifier] = ACTIONS(8992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8994), + [anon_sym_COMMA] = ACTIONS(8994), + [anon_sym_RPAREN] = ACTIONS(8994), + [aux_sym_preproc_if_token2] = ACTIONS(8994), + [aux_sym_preproc_else_token1] = ACTIONS(8994), + [aux_sym_preproc_elif_token1] = ACTIONS(8992), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8994), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8994), + [anon_sym_LPAREN2] = ACTIONS(8994), + [anon_sym_DASH] = ACTIONS(8992), + [anon_sym_PLUS] = ACTIONS(8992), + [anon_sym_STAR] = ACTIONS(8992), + [anon_sym_SLASH] = ACTIONS(8992), + [anon_sym_PERCENT] = ACTIONS(8992), + [anon_sym_PIPE_PIPE] = ACTIONS(8994), + [anon_sym_AMP_AMP] = ACTIONS(8994), + [anon_sym_PIPE] = ACTIONS(8992), + [anon_sym_CARET] = ACTIONS(8992), + [anon_sym_AMP] = ACTIONS(8992), + [anon_sym_EQ_EQ] = ACTIONS(8994), + [anon_sym_BANG_EQ] = ACTIONS(8994), + [anon_sym_GT] = ACTIONS(8992), + [anon_sym_GT_EQ] = ACTIONS(8994), + [anon_sym_LT_EQ] = ACTIONS(8992), + [anon_sym_LT] = ACTIONS(8992), + [anon_sym_LT_LT] = ACTIONS(8992), + [anon_sym_GT_GT] = ACTIONS(8992), + [anon_sym_SEMI] = ACTIONS(8994), + [anon_sym___attribute__] = ACTIONS(8992), + [anon_sym___attribute] = ACTIONS(8992), + [anon_sym_COLON] = ACTIONS(8992), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8994), + [anon_sym_RBRACE] = ACTIONS(8994), + [anon_sym_LBRACK] = ACTIONS(8994), + [anon_sym_EQ] = ACTIONS(8992), + [anon_sym_QMARK] = ACTIONS(8994), + [anon_sym_STAR_EQ] = ACTIONS(8994), + [anon_sym_SLASH_EQ] = ACTIONS(8994), + [anon_sym_PERCENT_EQ] = ACTIONS(8994), + [anon_sym_PLUS_EQ] = ACTIONS(8994), + [anon_sym_DASH_EQ] = ACTIONS(8994), + [anon_sym_LT_LT_EQ] = ACTIONS(8994), + [anon_sym_GT_GT_EQ] = ACTIONS(8994), + [anon_sym_AMP_EQ] = ACTIONS(8994), + [anon_sym_CARET_EQ] = ACTIONS(8994), + [anon_sym_PIPE_EQ] = ACTIONS(8994), + [anon_sym_and_eq] = ACTIONS(8992), + [anon_sym_or_eq] = ACTIONS(8992), + [anon_sym_xor_eq] = ACTIONS(8992), + [anon_sym_LT_EQ_GT] = ACTIONS(8994), + [anon_sym_or] = ACTIONS(8992), + [anon_sym_and] = ACTIONS(8992), + [anon_sym_bitor] = ACTIONS(8992), + [anon_sym_xor] = ACTIONS(8992), + [anon_sym_bitand] = ACTIONS(8992), + [anon_sym_not_eq] = ACTIONS(8992), + [anon_sym_DASH_DASH] = ACTIONS(8994), + [anon_sym_PLUS_PLUS] = ACTIONS(8994), + [anon_sym_DOT] = ACTIONS(8992), + [anon_sym_DOT_STAR] = ACTIONS(8994), + [anon_sym_DASH_GT] = ACTIONS(8994), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8992), + [anon_sym_override] = ACTIONS(8992), + [anon_sym_requires] = ACTIONS(8992), + [anon_sym_COLON_RBRACK] = ACTIONS(8994), + }, + [STATE(3616)] = { + [sym_identifier] = ACTIONS(8992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8994), + [anon_sym_COMMA] = ACTIONS(8994), + [anon_sym_RPAREN] = ACTIONS(8994), + [aux_sym_preproc_if_token2] = ACTIONS(8994), + [aux_sym_preproc_else_token1] = ACTIONS(8994), + [aux_sym_preproc_elif_token1] = ACTIONS(8992), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8994), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8994), + [anon_sym_LPAREN2] = ACTIONS(8994), + [anon_sym_DASH] = ACTIONS(8992), + [anon_sym_PLUS] = ACTIONS(8992), + [anon_sym_STAR] = ACTIONS(8992), + [anon_sym_SLASH] = ACTIONS(8992), + [anon_sym_PERCENT] = ACTIONS(8992), + [anon_sym_PIPE_PIPE] = ACTIONS(8994), + [anon_sym_AMP_AMP] = ACTIONS(8994), + [anon_sym_PIPE] = ACTIONS(8992), + [anon_sym_CARET] = ACTIONS(8992), + [anon_sym_AMP] = ACTIONS(8992), + [anon_sym_EQ_EQ] = ACTIONS(8994), + [anon_sym_BANG_EQ] = ACTIONS(8994), + [anon_sym_GT] = ACTIONS(8992), + [anon_sym_GT_EQ] = ACTIONS(8994), + [anon_sym_LT_EQ] = ACTIONS(8992), + [anon_sym_LT] = ACTIONS(8992), + [anon_sym_LT_LT] = ACTIONS(8992), + [anon_sym_GT_GT] = ACTIONS(8992), + [anon_sym_SEMI] = ACTIONS(8994), + [anon_sym___attribute__] = ACTIONS(8992), + [anon_sym___attribute] = ACTIONS(8992), + [anon_sym_COLON] = ACTIONS(8992), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8994), + [anon_sym_RBRACE] = ACTIONS(8994), + [anon_sym_LBRACK] = ACTIONS(8994), + [anon_sym_EQ] = ACTIONS(8992), + [anon_sym_QMARK] = ACTIONS(8994), + [anon_sym_STAR_EQ] = ACTIONS(8994), + [anon_sym_SLASH_EQ] = ACTIONS(8994), + [anon_sym_PERCENT_EQ] = ACTIONS(8994), + [anon_sym_PLUS_EQ] = ACTIONS(8994), + [anon_sym_DASH_EQ] = ACTIONS(8994), + [anon_sym_LT_LT_EQ] = ACTIONS(8994), + [anon_sym_GT_GT_EQ] = ACTIONS(8994), + [anon_sym_AMP_EQ] = ACTIONS(8994), + [anon_sym_CARET_EQ] = ACTIONS(8994), + [anon_sym_PIPE_EQ] = ACTIONS(8994), + [anon_sym_and_eq] = ACTIONS(8992), + [anon_sym_or_eq] = ACTIONS(8992), + [anon_sym_xor_eq] = ACTIONS(8992), + [anon_sym_LT_EQ_GT] = ACTIONS(8994), + [anon_sym_or] = ACTIONS(8992), + [anon_sym_and] = ACTIONS(8992), + [anon_sym_bitor] = ACTIONS(8992), + [anon_sym_xor] = ACTIONS(8992), + [anon_sym_bitand] = ACTIONS(8992), + [anon_sym_not_eq] = ACTIONS(8992), + [anon_sym_DASH_DASH] = ACTIONS(8994), + [anon_sym_PLUS_PLUS] = ACTIONS(8994), + [anon_sym_DOT] = ACTIONS(8992), + [anon_sym_DOT_STAR] = ACTIONS(8994), + [anon_sym_DASH_GT] = ACTIONS(8994), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8992), + [anon_sym_override] = ACTIONS(8992), + [anon_sym_requires] = ACTIONS(8992), + [anon_sym_COLON_RBRACK] = ACTIONS(8994), + }, + [STATE(3617)] = { + [sym_identifier] = ACTIONS(8992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8994), + [anon_sym_COMMA] = ACTIONS(8994), + [anon_sym_RPAREN] = ACTIONS(8994), + [aux_sym_preproc_if_token2] = ACTIONS(8994), + [aux_sym_preproc_else_token1] = ACTIONS(8994), + [aux_sym_preproc_elif_token1] = ACTIONS(8992), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8994), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8994), + [anon_sym_LPAREN2] = ACTIONS(8994), + [anon_sym_DASH] = ACTIONS(8992), + [anon_sym_PLUS] = ACTIONS(8992), + [anon_sym_STAR] = ACTIONS(8992), + [anon_sym_SLASH] = ACTIONS(8992), + [anon_sym_PERCENT] = ACTIONS(8992), + [anon_sym_PIPE_PIPE] = ACTIONS(8994), + [anon_sym_AMP_AMP] = ACTIONS(8994), + [anon_sym_PIPE] = ACTIONS(8992), + [anon_sym_CARET] = ACTIONS(8992), + [anon_sym_AMP] = ACTIONS(8992), + [anon_sym_EQ_EQ] = ACTIONS(8994), + [anon_sym_BANG_EQ] = ACTIONS(8994), + [anon_sym_GT] = ACTIONS(8992), + [anon_sym_GT_EQ] = ACTIONS(8994), + [anon_sym_LT_EQ] = ACTIONS(8992), + [anon_sym_LT] = ACTIONS(8992), + [anon_sym_LT_LT] = ACTIONS(8992), + [anon_sym_GT_GT] = ACTIONS(8992), + [anon_sym_SEMI] = ACTIONS(8994), + [anon_sym___attribute__] = ACTIONS(8992), + [anon_sym___attribute] = ACTIONS(8992), + [anon_sym_COLON] = ACTIONS(8992), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8994), + [anon_sym_RBRACE] = ACTIONS(8994), + [anon_sym_LBRACK] = ACTIONS(8994), + [anon_sym_EQ] = ACTIONS(8992), + [anon_sym_QMARK] = ACTIONS(8994), + [anon_sym_STAR_EQ] = ACTIONS(8994), + [anon_sym_SLASH_EQ] = ACTIONS(8994), + [anon_sym_PERCENT_EQ] = ACTIONS(8994), + [anon_sym_PLUS_EQ] = ACTIONS(8994), + [anon_sym_DASH_EQ] = ACTIONS(8994), + [anon_sym_LT_LT_EQ] = ACTIONS(8994), + [anon_sym_GT_GT_EQ] = ACTIONS(8994), + [anon_sym_AMP_EQ] = ACTIONS(8994), + [anon_sym_CARET_EQ] = ACTIONS(8994), + [anon_sym_PIPE_EQ] = ACTIONS(8994), + [anon_sym_and_eq] = ACTIONS(8992), + [anon_sym_or_eq] = ACTIONS(8992), + [anon_sym_xor_eq] = ACTIONS(8992), + [anon_sym_LT_EQ_GT] = ACTIONS(8994), + [anon_sym_or] = ACTIONS(8992), + [anon_sym_and] = ACTIONS(8992), + [anon_sym_bitor] = ACTIONS(8992), + [anon_sym_xor] = ACTIONS(8992), + [anon_sym_bitand] = ACTIONS(8992), + [anon_sym_not_eq] = ACTIONS(8992), + [anon_sym_DASH_DASH] = ACTIONS(8994), + [anon_sym_PLUS_PLUS] = ACTIONS(8994), + [anon_sym_DOT] = ACTIONS(8992), + [anon_sym_DOT_STAR] = ACTIONS(8994), + [anon_sym_DASH_GT] = ACTIONS(8994), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8992), + [anon_sym_override] = ACTIONS(8992), + [anon_sym_requires] = ACTIONS(8992), + [anon_sym_COLON_RBRACK] = ACTIONS(8994), + }, + [STATE(3618)] = { + [sym_string_literal] = STATE(3629), + [sym_raw_string_literal] = STATE(3629), + [aux_sym_concatenated_string_repeat1] = STATE(3629), + [sym_identifier] = ACTIONS(9320), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8454), + [anon_sym_COMMA] = ACTIONS(8454), + [anon_sym_RPAREN] = ACTIONS(8454), + [anon_sym_LPAREN2] = ACTIONS(8454), + [anon_sym_DASH] = ACTIONS(8456), + [anon_sym_PLUS] = ACTIONS(8456), + [anon_sym_STAR] = ACTIONS(8456), + [anon_sym_SLASH] = ACTIONS(8456), + [anon_sym_PERCENT] = ACTIONS(8456), + [anon_sym_PIPE_PIPE] = ACTIONS(8454), + [anon_sym_AMP_AMP] = ACTIONS(8454), + [anon_sym_PIPE] = ACTIONS(8456), + [anon_sym_CARET] = ACTIONS(8456), + [anon_sym_AMP] = ACTIONS(8456), + [anon_sym_EQ_EQ] = ACTIONS(8454), + [anon_sym_BANG_EQ] = ACTIONS(8454), + [anon_sym_GT] = ACTIONS(8456), + [anon_sym_GT_EQ] = ACTIONS(8454), + [anon_sym_LT_EQ] = ACTIONS(8456), + [anon_sym_LT] = ACTIONS(8456), + [anon_sym_LT_LT] = ACTIONS(8456), + [anon_sym_GT_GT] = ACTIONS(8456), + [anon_sym_LBRACK] = ACTIONS(8454), + [anon_sym_EQ] = ACTIONS(8456), + [anon_sym_QMARK] = ACTIONS(8454), + [anon_sym_STAR_EQ] = ACTIONS(8454), + [anon_sym_SLASH_EQ] = ACTIONS(8454), + [anon_sym_PERCENT_EQ] = ACTIONS(8454), + [anon_sym_PLUS_EQ] = ACTIONS(8454), + [anon_sym_DASH_EQ] = ACTIONS(8454), + [anon_sym_LT_LT_EQ] = ACTIONS(8454), + [anon_sym_GT_GT_EQ] = ACTIONS(8454), + [anon_sym_AMP_EQ] = ACTIONS(8454), + [anon_sym_CARET_EQ] = ACTIONS(8454), + [anon_sym_PIPE_EQ] = ACTIONS(8454), + [anon_sym_and_eq] = ACTIONS(8456), + [anon_sym_or_eq] = ACTIONS(8456), + [anon_sym_xor_eq] = ACTIONS(8456), + [anon_sym_LT_EQ_GT] = ACTIONS(8454), + [anon_sym_or] = ACTIONS(8456), + [anon_sym_and] = ACTIONS(8456), + [anon_sym_bitor] = ACTIONS(8456), + [anon_sym_xor] = ACTIONS(8456), + [anon_sym_bitand] = ACTIONS(8456), + [anon_sym_not_eq] = ACTIONS(8456), + [anon_sym_DASH_DASH] = ACTIONS(8454), + [anon_sym_PLUS_PLUS] = ACTIONS(8454), + [anon_sym_DOT] = ACTIONS(8456), + [anon_sym_DOT_STAR] = ACTIONS(8454), + [anon_sym_DASH_GT] = ACTIONS(8456), + [anon_sym_L_DQUOTE] = ACTIONS(6885), + [anon_sym_u_DQUOTE] = ACTIONS(6885), + [anon_sym_U_DQUOTE] = ACTIONS(6885), + [anon_sym_u8_DQUOTE] = ACTIONS(6885), + [anon_sym_DQUOTE] = ACTIONS(6885), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6887), + [anon_sym_LR_DQUOTE] = ACTIONS(6887), + [anon_sym_uR_DQUOTE] = ACTIONS(6887), + [anon_sym_UR_DQUOTE] = ACTIONS(6887), + [anon_sym_u8R_DQUOTE] = ACTIONS(6887), + [anon_sym_DASH_GT_STAR] = ACTIONS(8454), + [sym_literal_suffix] = ACTIONS(8456), + }, + [STATE(3619)] = { + [sym_string_literal] = STATE(4105), + [sym_template_argument_list] = STATE(5616), + [sym_raw_string_literal] = STATE(4105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(7101), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5638), + [anon_sym_COLON] = ACTIONS(5704), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5663), + [anon_sym_or_eq] = ACTIONS(5663), + [anon_sym_xor_eq] = ACTIONS(5663), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + }, + [STATE(3620)] = { + [sym_identifier] = ACTIONS(3155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_RPAREN] = ACTIONS(3153), + [aux_sym_preproc_if_token2] = ACTIONS(3153), + [aux_sym_preproc_else_token1] = ACTIONS(3153), + [aux_sym_preproc_elif_token1] = ACTIONS(3155), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3153), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3153), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_SLASH] = ACTIONS(3155), + [anon_sym_PERCENT] = ACTIONS(3155), + [anon_sym_PIPE_PIPE] = ACTIONS(3153), + [anon_sym_AMP_AMP] = ACTIONS(3153), + [anon_sym_PIPE] = ACTIONS(3155), + [anon_sym_CARET] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_EQ_EQ] = ACTIONS(3153), + [anon_sym_BANG_EQ] = ACTIONS(3153), + [anon_sym_GT] = ACTIONS(3155), + [anon_sym_GT_EQ] = ACTIONS(3153), + [anon_sym_LT_EQ] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3155), + [anon_sym_LT_LT] = ACTIONS(3155), + [anon_sym_GT_GT] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym___attribute__] = ACTIONS(3155), + [anon_sym___attribute] = ACTIONS(3155), + [anon_sym_COLON] = ACTIONS(3155), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3153), + [anon_sym_RBRACE] = ACTIONS(3153), + [anon_sym_LBRACK] = ACTIONS(3153), + [anon_sym_EQ] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3153), + [anon_sym_STAR_EQ] = ACTIONS(3153), + [anon_sym_SLASH_EQ] = ACTIONS(3153), + [anon_sym_PERCENT_EQ] = ACTIONS(3153), + [anon_sym_PLUS_EQ] = ACTIONS(3153), + [anon_sym_DASH_EQ] = ACTIONS(3153), + [anon_sym_LT_LT_EQ] = ACTIONS(3153), + [anon_sym_GT_GT_EQ] = ACTIONS(3153), + [anon_sym_AMP_EQ] = ACTIONS(3153), + [anon_sym_CARET_EQ] = ACTIONS(3153), + [anon_sym_PIPE_EQ] = ACTIONS(3153), + [anon_sym_and_eq] = ACTIONS(3155), + [anon_sym_or_eq] = ACTIONS(3155), + [anon_sym_xor_eq] = ACTIONS(3155), + [anon_sym_LT_EQ_GT] = ACTIONS(3153), + [anon_sym_or] = ACTIONS(3155), + [anon_sym_and] = ACTIONS(3155), + [anon_sym_bitor] = ACTIONS(3155), + [anon_sym_xor] = ACTIONS(3155), + [anon_sym_bitand] = ACTIONS(3155), + [anon_sym_not_eq] = ACTIONS(3155), + [anon_sym_DASH_DASH] = ACTIONS(3153), + [anon_sym_PLUS_PLUS] = ACTIONS(3153), + [anon_sym_DOT] = ACTIONS(3155), + [anon_sym_DOT_STAR] = ACTIONS(3153), + [anon_sym_DASH_GT] = ACTIONS(3153), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3155), + [anon_sym_override] = ACTIONS(3155), + [anon_sym_requires] = ACTIONS(3155), + [anon_sym_COLON_RBRACK] = ACTIONS(3153), + }, + [STATE(3621)] = { + [sym_identifier] = ACTIONS(6628), + [anon_sym_LPAREN2] = ACTIONS(6630), + [anon_sym_TILDE] = ACTIONS(6630), + [anon_sym_STAR] = ACTIONS(6630), + [anon_sym_PIPE_PIPE] = ACTIONS(6630), + [anon_sym_AMP_AMP] = ACTIONS(6630), + [anon_sym_AMP] = ACTIONS(6628), + [anon_sym___extension__] = ACTIONS(6628), + [anon_sym_virtual] = ACTIONS(6628), + [anon_sym_extern] = ACTIONS(6628), + [anon_sym___attribute__] = ACTIONS(6628), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_using] = ACTIONS(6628), + [anon_sym_COLON_COLON] = ACTIONS(6630), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), + [anon_sym___declspec] = ACTIONS(6628), + [anon_sym___based] = ACTIONS(6628), + [anon_sym___cdecl] = ACTIONS(6628), + [anon_sym___clrcall] = ACTIONS(6628), + [anon_sym___stdcall] = ACTIONS(6628), + [anon_sym___fastcall] = ACTIONS(6628), + [anon_sym___thiscall] = ACTIONS(6628), + [anon_sym___vectorcall] = ACTIONS(6628), + [anon_sym_signed] = ACTIONS(6628), + [anon_sym_unsigned] = ACTIONS(6628), + [anon_sym_long] = ACTIONS(6628), + [anon_sym_short] = ACTIONS(6628), + [anon_sym_LBRACK] = ACTIONS(6628), + [anon_sym_static] = ACTIONS(6628), + [anon_sym_register] = ACTIONS(6628), + [anon_sym_inline] = ACTIONS(6628), + [anon_sym___inline] = ACTIONS(6628), + [anon_sym___inline__] = ACTIONS(6628), + [anon_sym___forceinline] = ACTIONS(6628), + [anon_sym_thread_local] = ACTIONS(6628), + [anon_sym___thread] = ACTIONS(6628), + [anon_sym_const] = ACTIONS(6628), + [anon_sym_constexpr] = ACTIONS(6628), + [anon_sym_volatile] = ACTIONS(6628), + [anon_sym_restrict] = ACTIONS(6628), + [anon_sym___restrict__] = ACTIONS(6628), + [anon_sym__Atomic] = ACTIONS(6628), + [anon_sym__Noreturn] = ACTIONS(6628), + [anon_sym_noreturn] = ACTIONS(6628), + [anon_sym__Nonnull] = ACTIONS(6628), + [anon_sym_mutable] = ACTIONS(6628), + [anon_sym_constinit] = ACTIONS(6628), + [anon_sym_consteval] = ACTIONS(6628), + [anon_sym_alignas] = ACTIONS(6628), + [anon_sym__Alignas] = ACTIONS(6628), + [sym_primitive_type] = ACTIONS(6628), + [anon_sym_enum] = ACTIONS(6628), + [anon_sym_class] = ACTIONS(6628), + [anon_sym_struct] = ACTIONS(6628), + [anon_sym_union] = ACTIONS(6628), + [anon_sym_or] = ACTIONS(6628), + [anon_sym_and] = ACTIONS(6628), + [anon_sym_typename] = ACTIONS(6628), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6628), + [anon_sym_decltype] = ACTIONS(6628), + [anon_sym_explicit] = ACTIONS(6628), + [anon_sym_template] = ACTIONS(6628), + [anon_sym_operator] = ACTIONS(6628), + [anon_sym_friend] = ACTIONS(6628), + [anon_sym_concept] = ACTIONS(6628), + [anon_sym_LBRACK_COLON] = ACTIONS(6630), + }, + [STATE(3622)] = { + [sym_identifier] = ACTIONS(9322), + [anon_sym_LPAREN2] = ACTIONS(9324), + [anon_sym_TILDE] = ACTIONS(9324), + [anon_sym_STAR] = ACTIONS(9324), + [anon_sym_PIPE_PIPE] = ACTIONS(9324), + [anon_sym_AMP_AMP] = ACTIONS(9326), + [anon_sym_AMP] = ACTIONS(9322), + [anon_sym___extension__] = ACTIONS(9322), + [anon_sym_virtual] = ACTIONS(9322), + [anon_sym_extern] = ACTIONS(9322), + [anon_sym___attribute__] = ACTIONS(9322), + [anon_sym___attribute] = ACTIONS(9322), + [anon_sym_using] = ACTIONS(9322), + [anon_sym_COLON_COLON] = ACTIONS(9324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9324), + [anon_sym___declspec] = ACTIONS(9322), + [anon_sym___based] = ACTIONS(9322), + [anon_sym___cdecl] = ACTIONS(9322), + [anon_sym___clrcall] = ACTIONS(9322), + [anon_sym___stdcall] = ACTIONS(9322), + [anon_sym___fastcall] = ACTIONS(9322), + [anon_sym___thiscall] = ACTIONS(9322), + [anon_sym___vectorcall] = ACTIONS(9322), + [anon_sym_signed] = ACTIONS(9322), + [anon_sym_unsigned] = ACTIONS(9322), + [anon_sym_long] = ACTIONS(9322), + [anon_sym_short] = ACTIONS(9322), + [anon_sym_LBRACK] = ACTIONS(9322), + [anon_sym_static] = ACTIONS(9322), + [anon_sym_register] = ACTIONS(9322), + [anon_sym_inline] = ACTIONS(9322), + [anon_sym___inline] = ACTIONS(9322), + [anon_sym___inline__] = ACTIONS(9322), + [anon_sym___forceinline] = ACTIONS(9322), + [anon_sym_thread_local] = ACTIONS(9322), + [anon_sym___thread] = ACTIONS(9322), + [anon_sym_const] = ACTIONS(9322), + [anon_sym_constexpr] = ACTIONS(9322), + [anon_sym_volatile] = ACTIONS(9322), + [anon_sym_restrict] = ACTIONS(9322), + [anon_sym___restrict__] = ACTIONS(9322), + [anon_sym__Atomic] = ACTIONS(9322), + [anon_sym__Noreturn] = ACTIONS(9322), + [anon_sym_noreturn] = ACTIONS(9322), + [anon_sym__Nonnull] = ACTIONS(9322), + [anon_sym_mutable] = ACTIONS(9322), + [anon_sym_constinit] = ACTIONS(9322), + [anon_sym_consteval] = ACTIONS(9322), + [anon_sym_alignas] = ACTIONS(9322), + [anon_sym__Alignas] = ACTIONS(9322), + [sym_primitive_type] = ACTIONS(9322), + [anon_sym_enum] = ACTIONS(9322), + [anon_sym_class] = ACTIONS(9322), + [anon_sym_struct] = ACTIONS(9322), + [anon_sym_union] = ACTIONS(9322), + [anon_sym_or] = ACTIONS(9322), + [anon_sym_and] = ACTIONS(9328), + [anon_sym_typename] = ACTIONS(9322), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9322), + [anon_sym_decltype] = ACTIONS(9322), + [anon_sym_explicit] = ACTIONS(9322), + [anon_sym_template] = ACTIONS(9322), + [anon_sym_operator] = ACTIONS(9322), + [anon_sym_friend] = ACTIONS(9322), + [anon_sym_concept] = ACTIONS(9322), + [anon_sym_LBRACK_COLON] = ACTIONS(9324), + }, + [STATE(3623)] = { + [sym_template_argument_list] = STATE(2938), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6572), + [anon_sym_COMMA] = ACTIONS(6572), + [anon_sym_RPAREN] = ACTIONS(6572), + [anon_sym_LPAREN2] = ACTIONS(6572), + [anon_sym_DASH] = ACTIONS(6565), + [anon_sym_PLUS] = ACTIONS(6565), + [anon_sym_STAR] = ACTIONS(6572), + [anon_sym_SLASH] = ACTIONS(6565), + [anon_sym_PERCENT] = ACTIONS(6572), + [anon_sym_PIPE_PIPE] = ACTIONS(6572), + [anon_sym_AMP_AMP] = ACTIONS(6572), + [anon_sym_PIPE] = ACTIONS(6565), + [anon_sym_CARET] = ACTIONS(6572), + [anon_sym_AMP] = ACTIONS(6565), + [anon_sym_EQ_EQ] = ACTIONS(6572), + [anon_sym_BANG_EQ] = ACTIONS(6572), + [anon_sym_GT] = ACTIONS(6565), + [anon_sym_GT_EQ] = ACTIONS(6572), + [anon_sym_LT_EQ] = ACTIONS(6565), + [anon_sym_LT] = ACTIONS(9330), + [anon_sym_LT_LT] = ACTIONS(6572), + [anon_sym_GT_GT] = ACTIONS(6572), + [anon_sym_SEMI] = ACTIONS(6572), + [anon_sym___extension__] = ACTIONS(6572), + [anon_sym___attribute__] = ACTIONS(6572), + [anon_sym___attribute] = ACTIONS(6565), + [anon_sym_COLON] = ACTIONS(6565), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6572), + [anon_sym_LBRACE] = ACTIONS(6572), + [anon_sym_RBRACE] = ACTIONS(6572), + [anon_sym_LBRACK] = ACTIONS(6572), + [anon_sym_const] = ACTIONS(6565), + [anon_sym_constexpr] = ACTIONS(6572), + [anon_sym_volatile] = ACTIONS(6572), + [anon_sym_restrict] = ACTIONS(6572), + [anon_sym___restrict__] = ACTIONS(6572), + [anon_sym__Atomic] = ACTIONS(6572), + [anon_sym__Noreturn] = ACTIONS(6572), + [anon_sym_noreturn] = ACTIONS(6572), + [anon_sym__Nonnull] = ACTIONS(6572), + [anon_sym_mutable] = ACTIONS(6572), + [anon_sym_constinit] = ACTIONS(6572), + [anon_sym_consteval] = ACTIONS(6572), + [anon_sym_alignas] = ACTIONS(6572), + [anon_sym__Alignas] = ACTIONS(6572), + [anon_sym_QMARK] = ACTIONS(6572), + [anon_sym_LT_EQ_GT] = ACTIONS(6572), + [anon_sym_or] = ACTIONS(6572), + [anon_sym_and] = ACTIONS(6572), + [anon_sym_bitor] = ACTIONS(6572), + [anon_sym_xor] = ACTIONS(6572), + [anon_sym_bitand] = ACTIONS(6572), + [anon_sym_not_eq] = ACTIONS(6572), + [anon_sym_DASH_DASH] = ACTIONS(6572), + [anon_sym_PLUS_PLUS] = ACTIONS(6572), + [anon_sym_DOT] = ACTIONS(6565), + [anon_sym_DOT_STAR] = ACTIONS(6572), + [anon_sym_DASH_GT] = ACTIONS(6572), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6572), + [anon_sym_decltype] = ACTIONS(6572), + [anon_sym_final] = ACTIONS(6572), + [anon_sym_override] = ACTIONS(6572), + [anon_sym_requires] = ACTIONS(6572), + [anon_sym_COLON_RBRACK] = ACTIONS(6572), + }, + [STATE(3624)] = { + [sym_identifier] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(6610), + [anon_sym_TILDE] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6610), + [anon_sym_AMP_AMP] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(6608), + [anon_sym___extension__] = ACTIONS(6608), + [anon_sym_virtual] = ACTIONS(6608), + [anon_sym_extern] = ACTIONS(6608), + [anon_sym___attribute__] = ACTIONS(6608), + [anon_sym___attribute] = ACTIONS(6608), + [anon_sym_using] = ACTIONS(6608), + [anon_sym_COLON_COLON] = ACTIONS(6610), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6610), + [anon_sym___declspec] = ACTIONS(6608), + [anon_sym___based] = ACTIONS(6608), + [anon_sym___cdecl] = ACTIONS(6608), + [anon_sym___clrcall] = ACTIONS(6608), + [anon_sym___stdcall] = ACTIONS(6608), + [anon_sym___fastcall] = ACTIONS(6608), + [anon_sym___thiscall] = ACTIONS(6608), + [anon_sym___vectorcall] = ACTIONS(6608), + [anon_sym_signed] = ACTIONS(6608), + [anon_sym_unsigned] = ACTIONS(6608), + [anon_sym_long] = ACTIONS(6608), + [anon_sym_short] = ACTIONS(6608), + [anon_sym_LBRACK] = ACTIONS(6608), + [anon_sym_static] = ACTIONS(6608), + [anon_sym_register] = ACTIONS(6608), + [anon_sym_inline] = ACTIONS(6608), + [anon_sym___inline] = ACTIONS(6608), + [anon_sym___inline__] = ACTIONS(6608), + [anon_sym___forceinline] = ACTIONS(6608), + [anon_sym_thread_local] = ACTIONS(6608), + [anon_sym___thread] = ACTIONS(6608), + [anon_sym_const] = ACTIONS(6608), + [anon_sym_constexpr] = ACTIONS(6608), + [anon_sym_volatile] = ACTIONS(6608), + [anon_sym_restrict] = ACTIONS(6608), + [anon_sym___restrict__] = ACTIONS(6608), + [anon_sym__Atomic] = ACTIONS(6608), + [anon_sym__Noreturn] = ACTIONS(6608), + [anon_sym_noreturn] = ACTIONS(6608), + [anon_sym__Nonnull] = ACTIONS(6608), + [anon_sym_mutable] = ACTIONS(6608), + [anon_sym_constinit] = ACTIONS(6608), + [anon_sym_consteval] = ACTIONS(6608), + [anon_sym_alignas] = ACTIONS(6608), + [anon_sym__Alignas] = ACTIONS(6608), + [sym_primitive_type] = ACTIONS(6608), + [anon_sym_enum] = ACTIONS(6608), + [anon_sym_class] = ACTIONS(6608), + [anon_sym_struct] = ACTIONS(6608), + [anon_sym_union] = ACTIONS(6608), + [anon_sym_or] = ACTIONS(6608), + [anon_sym_and] = ACTIONS(6608), + [anon_sym_typename] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6608), + [anon_sym_decltype] = ACTIONS(6608), + [anon_sym_explicit] = ACTIONS(6608), + [anon_sym_template] = ACTIONS(6608), + [anon_sym_operator] = ACTIONS(6608), + [anon_sym_friend] = ACTIONS(6608), + [anon_sym_concept] = ACTIONS(6608), + [anon_sym_LBRACK_COLON] = ACTIONS(6610), + }, + [STATE(3625)] = { + [sym_identifier] = ACTIONS(9333), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9335), + [anon_sym_COMMA] = ACTIONS(9335), + [anon_sym_RPAREN] = ACTIONS(9335), + [aux_sym_preproc_if_token2] = ACTIONS(9335), + [aux_sym_preproc_else_token1] = ACTIONS(9335), + [aux_sym_preproc_elif_token1] = ACTIONS(9333), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9335), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9335), + [anon_sym_LPAREN2] = ACTIONS(9335), + [anon_sym_DASH] = ACTIONS(9333), + [anon_sym_PLUS] = ACTIONS(9333), + [anon_sym_STAR] = ACTIONS(9333), + [anon_sym_SLASH] = ACTIONS(9333), + [anon_sym_PERCENT] = ACTIONS(9333), + [anon_sym_PIPE_PIPE] = ACTIONS(9335), + [anon_sym_AMP_AMP] = ACTIONS(9335), + [anon_sym_PIPE] = ACTIONS(9333), + [anon_sym_CARET] = ACTIONS(9333), + [anon_sym_AMP] = ACTIONS(9333), + [anon_sym_EQ_EQ] = ACTIONS(9335), + [anon_sym_BANG_EQ] = ACTIONS(9335), + [anon_sym_GT] = ACTIONS(9333), + [anon_sym_GT_EQ] = ACTIONS(9335), + [anon_sym_LT_EQ] = ACTIONS(9333), + [anon_sym_LT] = ACTIONS(9333), + [anon_sym_LT_LT] = ACTIONS(9333), + [anon_sym_GT_GT] = ACTIONS(9333), + [anon_sym_SEMI] = ACTIONS(9335), + [anon_sym___attribute__] = ACTIONS(9333), + [anon_sym___attribute] = ACTIONS(9333), + [anon_sym_COLON] = ACTIONS(9333), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9335), + [anon_sym_RBRACE] = ACTIONS(9335), + [anon_sym_LBRACK] = ACTIONS(9335), + [anon_sym_EQ] = ACTIONS(9333), + [anon_sym_QMARK] = ACTIONS(9335), + [anon_sym_STAR_EQ] = ACTIONS(9335), + [anon_sym_SLASH_EQ] = ACTIONS(9335), + [anon_sym_PERCENT_EQ] = ACTIONS(9335), + [anon_sym_PLUS_EQ] = ACTIONS(9335), + [anon_sym_DASH_EQ] = ACTIONS(9335), + [anon_sym_LT_LT_EQ] = ACTIONS(9335), + [anon_sym_GT_GT_EQ] = ACTIONS(9335), + [anon_sym_AMP_EQ] = ACTIONS(9335), + [anon_sym_CARET_EQ] = ACTIONS(9335), + [anon_sym_PIPE_EQ] = ACTIONS(9335), + [anon_sym_and_eq] = ACTIONS(9333), + [anon_sym_or_eq] = ACTIONS(9333), + [anon_sym_xor_eq] = ACTIONS(9333), + [anon_sym_LT_EQ_GT] = ACTIONS(9335), + [anon_sym_or] = ACTIONS(9333), + [anon_sym_and] = ACTIONS(9333), + [anon_sym_bitor] = ACTIONS(9333), + [anon_sym_xor] = ACTIONS(9333), + [anon_sym_bitand] = ACTIONS(9333), + [anon_sym_not_eq] = ACTIONS(9333), + [anon_sym_DASH_DASH] = ACTIONS(9335), + [anon_sym_PLUS_PLUS] = ACTIONS(9335), + [anon_sym_DOT] = ACTIONS(9333), + [anon_sym_DOT_STAR] = ACTIONS(9335), + [anon_sym_DASH_GT] = ACTIONS(9335), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9333), + [anon_sym_override] = ACTIONS(9333), + [anon_sym_requires] = ACTIONS(9333), + [anon_sym_COLON_RBRACK] = ACTIONS(9335), + }, + [STATE(3626)] = { + [sym_identifier] = ACTIONS(9337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9339), + [anon_sym_COMMA] = ACTIONS(9339), + [anon_sym_RPAREN] = ACTIONS(9339), + [aux_sym_preproc_if_token2] = ACTIONS(9339), + [aux_sym_preproc_else_token1] = ACTIONS(9339), + [aux_sym_preproc_elif_token1] = ACTIONS(9337), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9339), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9339), + [anon_sym_LPAREN2] = ACTIONS(9339), + [anon_sym_DASH] = ACTIONS(9337), + [anon_sym_PLUS] = ACTIONS(9337), + [anon_sym_STAR] = ACTIONS(9337), + [anon_sym_SLASH] = ACTIONS(9337), + [anon_sym_PERCENT] = ACTIONS(9337), + [anon_sym_PIPE_PIPE] = ACTIONS(9339), + [anon_sym_AMP_AMP] = ACTIONS(9339), + [anon_sym_PIPE] = ACTIONS(9337), + [anon_sym_CARET] = ACTIONS(9337), + [anon_sym_AMP] = ACTIONS(9337), + [anon_sym_EQ_EQ] = ACTIONS(9339), + [anon_sym_BANG_EQ] = ACTIONS(9339), + [anon_sym_GT] = ACTIONS(9337), + [anon_sym_GT_EQ] = ACTIONS(9339), + [anon_sym_LT_EQ] = ACTIONS(9337), + [anon_sym_LT] = ACTIONS(9337), + [anon_sym_LT_LT] = ACTIONS(9337), + [anon_sym_GT_GT] = ACTIONS(9337), + [anon_sym_SEMI] = ACTIONS(9339), + [anon_sym___attribute__] = ACTIONS(9337), + [anon_sym___attribute] = ACTIONS(9337), + [anon_sym_COLON] = ACTIONS(9337), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9339), + [anon_sym_RBRACE] = ACTIONS(9339), + [anon_sym_LBRACK] = ACTIONS(9339), + [anon_sym_EQ] = ACTIONS(9337), + [anon_sym_QMARK] = ACTIONS(9339), + [anon_sym_STAR_EQ] = ACTIONS(9339), + [anon_sym_SLASH_EQ] = ACTIONS(9339), + [anon_sym_PERCENT_EQ] = ACTIONS(9339), + [anon_sym_PLUS_EQ] = ACTIONS(9339), + [anon_sym_DASH_EQ] = ACTIONS(9339), + [anon_sym_LT_LT_EQ] = ACTIONS(9339), + [anon_sym_GT_GT_EQ] = ACTIONS(9339), + [anon_sym_AMP_EQ] = ACTIONS(9339), + [anon_sym_CARET_EQ] = ACTIONS(9339), + [anon_sym_PIPE_EQ] = ACTIONS(9339), + [anon_sym_and_eq] = ACTIONS(9337), + [anon_sym_or_eq] = ACTIONS(9337), + [anon_sym_xor_eq] = ACTIONS(9337), + [anon_sym_LT_EQ_GT] = ACTIONS(9339), + [anon_sym_or] = ACTIONS(9337), + [anon_sym_and] = ACTIONS(9337), + [anon_sym_bitor] = ACTIONS(9337), + [anon_sym_xor] = ACTIONS(9337), + [anon_sym_bitand] = ACTIONS(9337), + [anon_sym_not_eq] = ACTIONS(9337), + [anon_sym_DASH_DASH] = ACTIONS(9339), + [anon_sym_PLUS_PLUS] = ACTIONS(9339), + [anon_sym_DOT] = ACTIONS(9337), + [anon_sym_DOT_STAR] = ACTIONS(9339), + [anon_sym_DASH_GT] = ACTIONS(9339), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9337), + [anon_sym_override] = ACTIONS(9337), + [anon_sym_requires] = ACTIONS(9337), + [anon_sym_COLON_RBRACK] = ACTIONS(9339), + }, + [STATE(3627)] = { + [sym_identifier] = ACTIONS(9000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9002), + [anon_sym_COMMA] = ACTIONS(9002), + [anon_sym_RPAREN] = ACTIONS(9002), + [aux_sym_preproc_if_token2] = ACTIONS(9002), + [aux_sym_preproc_else_token1] = ACTIONS(9002), + [aux_sym_preproc_elif_token1] = ACTIONS(9000), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9002), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9002), + [anon_sym_LPAREN2] = ACTIONS(9002), + [anon_sym_DASH] = ACTIONS(9000), + [anon_sym_PLUS] = ACTIONS(9000), + [anon_sym_STAR] = ACTIONS(9000), + [anon_sym_SLASH] = ACTIONS(9000), + [anon_sym_PERCENT] = ACTIONS(9000), + [anon_sym_PIPE_PIPE] = ACTIONS(9002), + [anon_sym_AMP_AMP] = ACTIONS(9002), + [anon_sym_PIPE] = ACTIONS(9000), + [anon_sym_CARET] = ACTIONS(9000), + [anon_sym_AMP] = ACTIONS(9000), + [anon_sym_EQ_EQ] = ACTIONS(9002), + [anon_sym_BANG_EQ] = ACTIONS(9002), + [anon_sym_GT] = ACTIONS(9000), + [anon_sym_GT_EQ] = ACTIONS(9002), + [anon_sym_LT_EQ] = ACTIONS(9000), + [anon_sym_LT] = ACTIONS(9000), + [anon_sym_LT_LT] = ACTIONS(9000), + [anon_sym_GT_GT] = ACTIONS(9000), + [anon_sym_SEMI] = ACTIONS(9002), + [anon_sym___attribute__] = ACTIONS(9000), + [anon_sym___attribute] = ACTIONS(9000), + [anon_sym_COLON] = ACTIONS(9000), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9002), + [anon_sym_RBRACE] = ACTIONS(9002), + [anon_sym_LBRACK] = ACTIONS(9002), + [anon_sym_EQ] = ACTIONS(9000), + [anon_sym_QMARK] = ACTIONS(9002), + [anon_sym_STAR_EQ] = ACTIONS(9002), + [anon_sym_SLASH_EQ] = ACTIONS(9002), + [anon_sym_PERCENT_EQ] = ACTIONS(9002), + [anon_sym_PLUS_EQ] = ACTIONS(9002), + [anon_sym_DASH_EQ] = ACTIONS(9002), + [anon_sym_LT_LT_EQ] = ACTIONS(9002), + [anon_sym_GT_GT_EQ] = ACTIONS(9002), + [anon_sym_AMP_EQ] = ACTIONS(9002), + [anon_sym_CARET_EQ] = ACTIONS(9002), + [anon_sym_PIPE_EQ] = ACTIONS(9002), + [anon_sym_and_eq] = ACTIONS(9000), + [anon_sym_or_eq] = ACTIONS(9000), + [anon_sym_xor_eq] = ACTIONS(9000), + [anon_sym_LT_EQ_GT] = ACTIONS(9002), + [anon_sym_or] = ACTIONS(9000), + [anon_sym_and] = ACTIONS(9000), + [anon_sym_bitor] = ACTIONS(9000), + [anon_sym_xor] = ACTIONS(9000), + [anon_sym_bitand] = ACTIONS(9000), + [anon_sym_not_eq] = ACTIONS(9000), + [anon_sym_DASH_DASH] = ACTIONS(9002), + [anon_sym_PLUS_PLUS] = ACTIONS(9002), + [anon_sym_DOT] = ACTIONS(9000), + [anon_sym_DOT_STAR] = ACTIONS(9002), + [anon_sym_DASH_GT] = ACTIONS(9002), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9000), + [anon_sym_override] = ACTIONS(9000), + [anon_sym_requires] = ACTIONS(9000), + [anon_sym_COLON_RBRACK] = ACTIONS(9002), + }, + [STATE(3628)] = { + [sym_identifier] = ACTIONS(7968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_RPAREN] = ACTIONS(7966), + [aux_sym_preproc_if_token2] = ACTIONS(7966), + [aux_sym_preproc_else_token1] = ACTIONS(7966), + [aux_sym_preproc_elif_token1] = ACTIONS(7968), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7966), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7968), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7968), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7968), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7968), + [anon_sym_GT_GT] = ACTIONS(7968), + [anon_sym_SEMI] = ACTIONS(7966), + [anon_sym___attribute__] = ACTIONS(7968), + [anon_sym___attribute] = ACTIONS(7968), + [anon_sym_COLON] = ACTIONS(7968), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7966), + [anon_sym_RBRACE] = ACTIONS(7966), + [anon_sym_LBRACK] = ACTIONS(7966), + [anon_sym_EQ] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_STAR_EQ] = ACTIONS(7966), + [anon_sym_SLASH_EQ] = ACTIONS(7966), + [anon_sym_PERCENT_EQ] = ACTIONS(7966), + [anon_sym_PLUS_EQ] = ACTIONS(7966), + [anon_sym_DASH_EQ] = ACTIONS(7966), + [anon_sym_LT_LT_EQ] = ACTIONS(7966), + [anon_sym_GT_GT_EQ] = ACTIONS(7966), + [anon_sym_AMP_EQ] = ACTIONS(7966), + [anon_sym_CARET_EQ] = ACTIONS(7966), + [anon_sym_PIPE_EQ] = ACTIONS(7966), + [anon_sym_and_eq] = ACTIONS(7968), + [anon_sym_or_eq] = ACTIONS(7968), + [anon_sym_xor_eq] = ACTIONS(7968), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7968), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7968), + [anon_sym_not_eq] = ACTIONS(7968), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(7966), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7968), + [anon_sym_override] = ACTIONS(7968), + [anon_sym_requires] = ACTIONS(7968), + [anon_sym_COLON_RBRACK] = ACTIONS(7966), + }, + [STATE(3629)] = { + [sym_string_literal] = STATE(3629), + [sym_raw_string_literal] = STATE(3629), + [aux_sym_concatenated_string_repeat1] = STATE(3629), + [sym_identifier] = ACTIONS(9341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8406), + [anon_sym_COMMA] = ACTIONS(8406), + [anon_sym_RPAREN] = ACTIONS(8406), + [anon_sym_LPAREN2] = ACTIONS(8406), + [anon_sym_DASH] = ACTIONS(8408), + [anon_sym_PLUS] = ACTIONS(8408), + [anon_sym_STAR] = ACTIONS(8408), + [anon_sym_SLASH] = ACTIONS(8408), + [anon_sym_PERCENT] = ACTIONS(8408), + [anon_sym_PIPE_PIPE] = ACTIONS(8406), + [anon_sym_AMP_AMP] = ACTIONS(8406), + [anon_sym_PIPE] = ACTIONS(8408), + [anon_sym_CARET] = ACTIONS(8408), + [anon_sym_AMP] = ACTIONS(8408), + [anon_sym_EQ_EQ] = ACTIONS(8406), + [anon_sym_BANG_EQ] = ACTIONS(8406), + [anon_sym_GT] = ACTIONS(8408), + [anon_sym_GT_EQ] = ACTIONS(8406), + [anon_sym_LT_EQ] = ACTIONS(8408), + [anon_sym_LT] = ACTIONS(8408), + [anon_sym_LT_LT] = ACTIONS(8408), + [anon_sym_GT_GT] = ACTIONS(8408), + [anon_sym_LBRACK] = ACTIONS(8406), + [anon_sym_EQ] = ACTIONS(8408), + [anon_sym_QMARK] = ACTIONS(8406), + [anon_sym_STAR_EQ] = ACTIONS(8406), + [anon_sym_SLASH_EQ] = ACTIONS(8406), + [anon_sym_PERCENT_EQ] = ACTIONS(8406), + [anon_sym_PLUS_EQ] = ACTIONS(8406), + [anon_sym_DASH_EQ] = ACTIONS(8406), + [anon_sym_LT_LT_EQ] = ACTIONS(8406), + [anon_sym_GT_GT_EQ] = ACTIONS(8406), + [anon_sym_AMP_EQ] = ACTIONS(8406), + [anon_sym_CARET_EQ] = ACTIONS(8406), + [anon_sym_PIPE_EQ] = ACTIONS(8406), + [anon_sym_and_eq] = ACTIONS(8408), + [anon_sym_or_eq] = ACTIONS(8408), + [anon_sym_xor_eq] = ACTIONS(8408), + [anon_sym_LT_EQ_GT] = ACTIONS(8406), + [anon_sym_or] = ACTIONS(8408), + [anon_sym_and] = ACTIONS(8408), + [anon_sym_bitor] = ACTIONS(8408), + [anon_sym_xor] = ACTIONS(8408), + [anon_sym_bitand] = ACTIONS(8408), + [anon_sym_not_eq] = ACTIONS(8408), + [anon_sym_DASH_DASH] = ACTIONS(8406), + [anon_sym_PLUS_PLUS] = ACTIONS(8406), + [anon_sym_DOT] = ACTIONS(8408), + [anon_sym_DOT_STAR] = ACTIONS(8406), + [anon_sym_DASH_GT] = ACTIONS(8408), + [anon_sym_L_DQUOTE] = ACTIONS(9344), + [anon_sym_u_DQUOTE] = ACTIONS(9344), + [anon_sym_U_DQUOTE] = ACTIONS(9344), + [anon_sym_u8_DQUOTE] = ACTIONS(9344), + [anon_sym_DQUOTE] = ACTIONS(9344), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(9347), + [anon_sym_LR_DQUOTE] = ACTIONS(9347), + [anon_sym_uR_DQUOTE] = ACTIONS(9347), + [anon_sym_UR_DQUOTE] = ACTIONS(9347), + [anon_sym_u8R_DQUOTE] = ACTIONS(9347), + [anon_sym_DASH_GT_STAR] = ACTIONS(8406), + [sym_literal_suffix] = ACTIONS(8408), + }, + [STATE(3630)] = { + [sym_identifier] = ACTIONS(8996), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8998), + [anon_sym_COMMA] = ACTIONS(8998), + [anon_sym_RPAREN] = ACTIONS(8998), + [aux_sym_preproc_if_token2] = ACTIONS(8998), + [aux_sym_preproc_else_token1] = ACTIONS(8998), + [aux_sym_preproc_elif_token1] = ACTIONS(8996), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8998), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8998), + [anon_sym_LPAREN2] = ACTIONS(8998), + [anon_sym_DASH] = ACTIONS(8996), + [anon_sym_PLUS] = ACTIONS(8996), + [anon_sym_STAR] = ACTIONS(8996), + [anon_sym_SLASH] = ACTIONS(8996), + [anon_sym_PERCENT] = ACTIONS(8996), + [anon_sym_PIPE_PIPE] = ACTIONS(8998), + [anon_sym_AMP_AMP] = ACTIONS(8998), + [anon_sym_PIPE] = ACTIONS(8996), + [anon_sym_CARET] = ACTIONS(8996), + [anon_sym_AMP] = ACTIONS(8996), + [anon_sym_EQ_EQ] = ACTIONS(8998), + [anon_sym_BANG_EQ] = ACTIONS(8998), + [anon_sym_GT] = ACTIONS(8996), + [anon_sym_GT_EQ] = ACTIONS(8998), + [anon_sym_LT_EQ] = ACTIONS(8996), + [anon_sym_LT] = ACTIONS(8996), + [anon_sym_LT_LT] = ACTIONS(8996), + [anon_sym_GT_GT] = ACTIONS(8996), + [anon_sym_SEMI] = ACTIONS(8998), + [anon_sym___attribute__] = ACTIONS(8996), + [anon_sym___attribute] = ACTIONS(8996), + [anon_sym_COLON] = ACTIONS(8996), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8998), + [anon_sym_RBRACE] = ACTIONS(8998), + [anon_sym_LBRACK] = ACTIONS(8998), + [anon_sym_EQ] = ACTIONS(8996), + [anon_sym_QMARK] = ACTIONS(8998), + [anon_sym_STAR_EQ] = ACTIONS(8998), + [anon_sym_SLASH_EQ] = ACTIONS(8998), + [anon_sym_PERCENT_EQ] = ACTIONS(8998), + [anon_sym_PLUS_EQ] = ACTIONS(8998), + [anon_sym_DASH_EQ] = ACTIONS(8998), + [anon_sym_LT_LT_EQ] = ACTIONS(8998), + [anon_sym_GT_GT_EQ] = ACTIONS(8998), + [anon_sym_AMP_EQ] = ACTIONS(8998), + [anon_sym_CARET_EQ] = ACTIONS(8998), + [anon_sym_PIPE_EQ] = ACTIONS(8998), + [anon_sym_and_eq] = ACTIONS(8996), + [anon_sym_or_eq] = ACTIONS(8996), + [anon_sym_xor_eq] = ACTIONS(8996), + [anon_sym_LT_EQ_GT] = ACTIONS(8998), + [anon_sym_or] = ACTIONS(8996), + [anon_sym_and] = ACTIONS(8996), + [anon_sym_bitor] = ACTIONS(8996), + [anon_sym_xor] = ACTIONS(8996), + [anon_sym_bitand] = ACTIONS(8996), + [anon_sym_not_eq] = ACTIONS(8996), + [anon_sym_DASH_DASH] = ACTIONS(8998), + [anon_sym_PLUS_PLUS] = ACTIONS(8998), + [anon_sym_DOT] = ACTIONS(8996), + [anon_sym_DOT_STAR] = ACTIONS(8998), + [anon_sym_DASH_GT] = ACTIONS(8998), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8996), + [anon_sym_override] = ACTIONS(8996), + [anon_sym_requires] = ACTIONS(8996), + [anon_sym_COLON_RBRACK] = ACTIONS(8998), + }, + [STATE(3631)] = { + [sym_attribute_specifier] = STATE(4485), + [sym_attribute_declaration] = STATE(4713), + [sym_gnu_asm_expression] = STATE(9134), + [sym_virtual_specifier] = STATE(4778), + [sym__function_exception_specification] = STATE(4103), + [sym__function_attributes_end] = STATE(6021), + [sym__function_postfix] = STATE(5460), + [sym_trailing_return_type] = STATE(6116), + [sym_noexcept] = STATE(4103), + [sym_throw_specifier] = STATE(4103), + [sym_requires_clause] = STATE(5460), + [aux_sym_type_definition_repeat1] = STATE(4485), + [aux_sym_attributed_declarator_repeat1] = STATE(4713), + [aux_sym__function_postfix_repeat1] = STATE(4778), + [sym_identifier] = ACTIONS(7789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [aux_sym_preproc_if_token2] = ACTIONS(7791), + [aux_sym_preproc_else_token1] = ACTIONS(7791), + [aux_sym_preproc_elif_token1] = ACTIONS(7789), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7791), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7791), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7791), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7791), + [anon_sym_GT_GT] = ACTIONS(7791), + [anon_sym___attribute__] = ACTIONS(7178), + [anon_sym___attribute] = ACTIONS(7178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7789), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7789), + [anon_sym_not_eq] = ACTIONS(7789), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6497), + [anon_sym___asm__] = ACTIONS(6497), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(9202), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9205), + [anon_sym_override] = ACTIONS(9205), + [anon_sym_noexcept] = ACTIONS(7276), + [anon_sym_throw] = ACTIONS(7278), + [anon_sym_requires] = ACTIONS(9208), + }, + [STATE(3632)] = { + [sym_string_literal] = STATE(3618), + [sym_raw_string_literal] = STATE(3618), + [aux_sym_concatenated_string_repeat1] = STATE(3618), + [sym_identifier] = ACTIONS(9350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8466), + [anon_sym_COMMA] = ACTIONS(8466), + [anon_sym_RPAREN] = ACTIONS(8466), + [anon_sym_LPAREN2] = ACTIONS(8466), + [anon_sym_DASH] = ACTIONS(8468), + [anon_sym_PLUS] = ACTIONS(8468), + [anon_sym_STAR] = ACTIONS(8468), + [anon_sym_SLASH] = ACTIONS(8468), + [anon_sym_PERCENT] = ACTIONS(8468), + [anon_sym_PIPE_PIPE] = ACTIONS(8466), + [anon_sym_AMP_AMP] = ACTIONS(8466), + [anon_sym_PIPE] = ACTIONS(8468), + [anon_sym_CARET] = ACTIONS(8468), + [anon_sym_AMP] = ACTIONS(8468), + [anon_sym_EQ_EQ] = ACTIONS(8466), + [anon_sym_BANG_EQ] = ACTIONS(8466), + [anon_sym_GT] = ACTIONS(8468), + [anon_sym_GT_EQ] = ACTIONS(8466), + [anon_sym_LT_EQ] = ACTIONS(8468), + [anon_sym_LT] = ACTIONS(8468), + [anon_sym_LT_LT] = ACTIONS(8468), + [anon_sym_GT_GT] = ACTIONS(8468), + [anon_sym_LBRACK] = ACTIONS(8466), + [anon_sym_EQ] = ACTIONS(8468), + [anon_sym_QMARK] = ACTIONS(8466), + [anon_sym_STAR_EQ] = ACTIONS(8466), + [anon_sym_SLASH_EQ] = ACTIONS(8466), + [anon_sym_PERCENT_EQ] = ACTIONS(8466), + [anon_sym_PLUS_EQ] = ACTIONS(8466), + [anon_sym_DASH_EQ] = ACTIONS(8466), + [anon_sym_LT_LT_EQ] = ACTIONS(8466), + [anon_sym_GT_GT_EQ] = ACTIONS(8466), + [anon_sym_AMP_EQ] = ACTIONS(8466), + [anon_sym_CARET_EQ] = ACTIONS(8466), + [anon_sym_PIPE_EQ] = ACTIONS(8466), + [anon_sym_and_eq] = ACTIONS(8468), + [anon_sym_or_eq] = ACTIONS(8468), + [anon_sym_xor_eq] = ACTIONS(8468), + [anon_sym_LT_EQ_GT] = ACTIONS(8466), + [anon_sym_or] = ACTIONS(8468), + [anon_sym_and] = ACTIONS(8468), + [anon_sym_bitor] = ACTIONS(8468), + [anon_sym_xor] = ACTIONS(8468), + [anon_sym_bitand] = ACTIONS(8468), + [anon_sym_not_eq] = ACTIONS(8468), + [anon_sym_DASH_DASH] = ACTIONS(8466), + [anon_sym_PLUS_PLUS] = ACTIONS(8466), + [anon_sym_DOT] = ACTIONS(8468), + [anon_sym_DOT_STAR] = ACTIONS(8466), + [anon_sym_DASH_GT] = ACTIONS(8468), + [anon_sym_L_DQUOTE] = ACTIONS(6885), + [anon_sym_u_DQUOTE] = ACTIONS(6885), + [anon_sym_U_DQUOTE] = ACTIONS(6885), + [anon_sym_u8_DQUOTE] = ACTIONS(6885), + [anon_sym_DQUOTE] = ACTIONS(6885), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6887), + [anon_sym_LR_DQUOTE] = ACTIONS(6887), + [anon_sym_uR_DQUOTE] = ACTIONS(6887), + [anon_sym_UR_DQUOTE] = ACTIONS(6887), + [anon_sym_u8R_DQUOTE] = ACTIONS(6887), + [anon_sym_DASH_GT_STAR] = ACTIONS(8466), + [sym_literal_suffix] = ACTIONS(8468), + }, + [STATE(3633)] = { + [sym_identifier] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(6618), + [anon_sym_TILDE] = ACTIONS(6618), + [anon_sym_STAR] = ACTIONS(6618), + [anon_sym_PIPE_PIPE] = ACTIONS(6618), + [anon_sym_AMP_AMP] = ACTIONS(6618), + [anon_sym_AMP] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(6616), + [anon_sym_virtual] = ACTIONS(6616), + [anon_sym_extern] = ACTIONS(6616), + [anon_sym___attribute__] = ACTIONS(6616), + [anon_sym___attribute] = ACTIONS(6616), + [anon_sym_using] = ACTIONS(6616), + [anon_sym_COLON_COLON] = ACTIONS(6618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6618), + [anon_sym___declspec] = ACTIONS(6616), + [anon_sym___based] = ACTIONS(6616), + [anon_sym___cdecl] = ACTIONS(6616), + [anon_sym___clrcall] = ACTIONS(6616), + [anon_sym___stdcall] = ACTIONS(6616), + [anon_sym___fastcall] = ACTIONS(6616), + [anon_sym___thiscall] = ACTIONS(6616), + [anon_sym___vectorcall] = ACTIONS(6616), + [anon_sym_signed] = ACTIONS(6616), + [anon_sym_unsigned] = ACTIONS(6616), + [anon_sym_long] = ACTIONS(6616), + [anon_sym_short] = ACTIONS(6616), + [anon_sym_LBRACK] = ACTIONS(6616), + [anon_sym_static] = ACTIONS(6616), + [anon_sym_register] = ACTIONS(6616), + [anon_sym_inline] = ACTIONS(6616), + [anon_sym___inline] = ACTIONS(6616), + [anon_sym___inline__] = ACTIONS(6616), + [anon_sym___forceinline] = ACTIONS(6616), + [anon_sym_thread_local] = ACTIONS(6616), + [anon_sym___thread] = ACTIONS(6616), + [anon_sym_const] = ACTIONS(6616), + [anon_sym_constexpr] = ACTIONS(6616), + [anon_sym_volatile] = ACTIONS(6616), + [anon_sym_restrict] = ACTIONS(6616), + [anon_sym___restrict__] = ACTIONS(6616), + [anon_sym__Atomic] = ACTIONS(6616), + [anon_sym__Noreturn] = ACTIONS(6616), + [anon_sym_noreturn] = ACTIONS(6616), + [anon_sym__Nonnull] = ACTIONS(6616), + [anon_sym_mutable] = ACTIONS(6616), + [anon_sym_constinit] = ACTIONS(6616), + [anon_sym_consteval] = ACTIONS(6616), + [anon_sym_alignas] = ACTIONS(6616), + [anon_sym__Alignas] = ACTIONS(6616), + [sym_primitive_type] = ACTIONS(6616), + [anon_sym_enum] = ACTIONS(6616), + [anon_sym_class] = ACTIONS(6616), + [anon_sym_struct] = ACTIONS(6616), + [anon_sym_union] = ACTIONS(6616), + [anon_sym_or] = ACTIONS(6616), + [anon_sym_and] = ACTIONS(6616), + [anon_sym_typename] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6616), + [anon_sym_decltype] = ACTIONS(6616), + [anon_sym_explicit] = ACTIONS(6616), + [anon_sym_template] = ACTIONS(6616), + [anon_sym_operator] = ACTIONS(6616), + [anon_sym_friend] = ACTIONS(6616), + [anon_sym_concept] = ACTIONS(6616), + [anon_sym_LBRACK_COLON] = ACTIONS(6618), + }, + [STATE(3634)] = { + [sym_attribute_specifier] = STATE(4485), + [sym_attribute_declaration] = STATE(4713), + [sym_gnu_asm_expression] = STATE(9134), + [sym_virtual_specifier] = STATE(4778), + [sym__function_exception_specification] = STATE(4112), + [sym__function_attributes_end] = STATE(6022), + [sym__function_postfix] = STATE(5532), + [sym_trailing_return_type] = STATE(6118), + [sym_noexcept] = STATE(4112), + [sym_throw_specifier] = STATE(4112), + [sym_requires_clause] = STATE(5532), + [aux_sym_type_definition_repeat1] = STATE(4485), + [aux_sym_attributed_declarator_repeat1] = STATE(4713), + [aux_sym__function_postfix_repeat1] = STATE(4778), + [sym_identifier] = ACTIONS(7968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [aux_sym_preproc_if_token2] = ACTIONS(7966), + [aux_sym_preproc_else_token1] = ACTIONS(7966), + [aux_sym_preproc_elif_token1] = ACTIONS(7968), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7966), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7966), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7966), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7966), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7966), + [anon_sym_GT_GT] = ACTIONS(7966), + [anon_sym___attribute__] = ACTIONS(7178), + [anon_sym___attribute] = ACTIONS(7178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7968), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7968), + [anon_sym_not_eq] = ACTIONS(7968), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6497), + [anon_sym___asm__] = ACTIONS(6497), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(9352), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9355), + [anon_sym_override] = ACTIONS(9355), + [anon_sym_noexcept] = ACTIONS(7276), + [anon_sym_throw] = ACTIONS(7278), + [anon_sym_requires] = ACTIONS(9358), + }, + [STATE(3635)] = { + [sym_identifier] = ACTIONS(6620), + [anon_sym_LPAREN2] = ACTIONS(6622), + [anon_sym_TILDE] = ACTIONS(6622), + [anon_sym_STAR] = ACTIONS(6622), + [anon_sym_PIPE_PIPE] = ACTIONS(6622), + [anon_sym_AMP_AMP] = ACTIONS(6622), + [anon_sym_AMP] = ACTIONS(6620), + [anon_sym___extension__] = ACTIONS(6620), + [anon_sym_virtual] = ACTIONS(6620), + [anon_sym_extern] = ACTIONS(6620), + [anon_sym___attribute__] = ACTIONS(6620), + [anon_sym___attribute] = ACTIONS(6620), + [anon_sym_using] = ACTIONS(6620), + [anon_sym_COLON_COLON] = ACTIONS(6622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6622), + [anon_sym___declspec] = ACTIONS(6620), + [anon_sym___based] = ACTIONS(6620), + [anon_sym___cdecl] = ACTIONS(6620), + [anon_sym___clrcall] = ACTIONS(6620), + [anon_sym___stdcall] = ACTIONS(6620), + [anon_sym___fastcall] = ACTIONS(6620), + [anon_sym___thiscall] = ACTIONS(6620), + [anon_sym___vectorcall] = ACTIONS(6620), + [anon_sym_signed] = ACTIONS(6620), + [anon_sym_unsigned] = ACTIONS(6620), + [anon_sym_long] = ACTIONS(6620), + [anon_sym_short] = ACTIONS(6620), + [anon_sym_LBRACK] = ACTIONS(6620), + [anon_sym_static] = ACTIONS(6620), + [anon_sym_register] = ACTIONS(6620), + [anon_sym_inline] = ACTIONS(6620), + [anon_sym___inline] = ACTIONS(6620), + [anon_sym___inline__] = ACTIONS(6620), + [anon_sym___forceinline] = ACTIONS(6620), + [anon_sym_thread_local] = ACTIONS(6620), + [anon_sym___thread] = ACTIONS(6620), + [anon_sym_const] = ACTIONS(6620), + [anon_sym_constexpr] = ACTIONS(6620), + [anon_sym_volatile] = ACTIONS(6620), + [anon_sym_restrict] = ACTIONS(6620), + [anon_sym___restrict__] = ACTIONS(6620), + [anon_sym__Atomic] = ACTIONS(6620), + [anon_sym__Noreturn] = ACTIONS(6620), + [anon_sym_noreturn] = ACTIONS(6620), + [anon_sym__Nonnull] = ACTIONS(6620), + [anon_sym_mutable] = ACTIONS(6620), + [anon_sym_constinit] = ACTIONS(6620), + [anon_sym_consteval] = ACTIONS(6620), + [anon_sym_alignas] = ACTIONS(6620), + [anon_sym__Alignas] = ACTIONS(6620), + [sym_primitive_type] = ACTIONS(6620), + [anon_sym_enum] = ACTIONS(6620), + [anon_sym_class] = ACTIONS(6620), + [anon_sym_struct] = ACTIONS(6620), + [anon_sym_union] = ACTIONS(6620), + [anon_sym_or] = ACTIONS(6620), + [anon_sym_and] = ACTIONS(6620), + [anon_sym_typename] = ACTIONS(6620), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6620), + [anon_sym_decltype] = ACTIONS(6620), + [anon_sym_explicit] = ACTIONS(6620), + [anon_sym_template] = ACTIONS(6620), + [anon_sym_operator] = ACTIONS(6620), + [anon_sym_friend] = ACTIONS(6620), + [anon_sym_concept] = ACTIONS(6620), + [anon_sym_LBRACK_COLON] = ACTIONS(6622), + }, + [STATE(3636)] = { + [sym_identifier] = ACTIONS(8893), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8895), + [anon_sym_COMMA] = ACTIONS(8895), + [anon_sym_RPAREN] = ACTIONS(8895), + [aux_sym_preproc_if_token2] = ACTIONS(8895), + [aux_sym_preproc_else_token1] = ACTIONS(8895), + [aux_sym_preproc_elif_token1] = ACTIONS(8893), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8895), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8895), + [anon_sym_LPAREN2] = ACTIONS(8895), + [anon_sym_DASH] = ACTIONS(8893), + [anon_sym_PLUS] = ACTIONS(8893), + [anon_sym_STAR] = ACTIONS(8893), + [anon_sym_SLASH] = ACTIONS(8893), + [anon_sym_PERCENT] = ACTIONS(8893), + [anon_sym_PIPE_PIPE] = ACTIONS(8895), + [anon_sym_AMP_AMP] = ACTIONS(8895), + [anon_sym_PIPE] = ACTIONS(8893), + [anon_sym_CARET] = ACTIONS(8893), + [anon_sym_AMP] = ACTIONS(8893), + [anon_sym_EQ_EQ] = ACTIONS(8895), + [anon_sym_BANG_EQ] = ACTIONS(8895), + [anon_sym_GT] = ACTIONS(8893), + [anon_sym_GT_EQ] = ACTIONS(8895), + [anon_sym_LT_EQ] = ACTIONS(8893), + [anon_sym_LT] = ACTIONS(8893), + [anon_sym_LT_LT] = ACTIONS(8893), + [anon_sym_GT_GT] = ACTIONS(8893), + [anon_sym_SEMI] = ACTIONS(8895), + [anon_sym___attribute__] = ACTIONS(8893), + [anon_sym___attribute] = ACTIONS(8893), + [anon_sym_COLON] = ACTIONS(8893), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8895), + [anon_sym_RBRACE] = ACTIONS(8895), + [anon_sym_LBRACK] = ACTIONS(8895), + [anon_sym_EQ] = ACTIONS(8893), + [anon_sym_QMARK] = ACTIONS(8895), + [anon_sym_STAR_EQ] = ACTIONS(8895), + [anon_sym_SLASH_EQ] = ACTIONS(8895), + [anon_sym_PERCENT_EQ] = ACTIONS(8895), + [anon_sym_PLUS_EQ] = ACTIONS(8895), + [anon_sym_DASH_EQ] = ACTIONS(8895), + [anon_sym_LT_LT_EQ] = ACTIONS(8895), + [anon_sym_GT_GT_EQ] = ACTIONS(8895), + [anon_sym_AMP_EQ] = ACTIONS(8895), + [anon_sym_CARET_EQ] = ACTIONS(8895), + [anon_sym_PIPE_EQ] = ACTIONS(8895), + [anon_sym_and_eq] = ACTIONS(8893), + [anon_sym_or_eq] = ACTIONS(8893), + [anon_sym_xor_eq] = ACTIONS(8893), + [anon_sym_LT_EQ_GT] = ACTIONS(8895), + [anon_sym_or] = ACTIONS(8893), + [anon_sym_and] = ACTIONS(8893), + [anon_sym_bitor] = ACTIONS(8893), + [anon_sym_xor] = ACTIONS(8893), + [anon_sym_bitand] = ACTIONS(8893), + [anon_sym_not_eq] = ACTIONS(8893), + [anon_sym_DASH_DASH] = ACTIONS(8895), + [anon_sym_PLUS_PLUS] = ACTIONS(8895), + [anon_sym_DOT] = ACTIONS(8893), + [anon_sym_DOT_STAR] = ACTIONS(8895), + [anon_sym_DASH_GT] = ACTIONS(8895), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8893), + [anon_sym_override] = ACTIONS(8893), + [anon_sym_requires] = ACTIONS(8893), + [anon_sym_COLON_RBRACK] = ACTIONS(8895), + }, + [STATE(3637)] = { + [sym_identifier] = ACTIONS(9361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9363), + [anon_sym_COMMA] = ACTIONS(9363), + [anon_sym_RPAREN] = ACTIONS(9363), + [aux_sym_preproc_if_token2] = ACTIONS(9363), + [aux_sym_preproc_else_token1] = ACTIONS(9363), + [aux_sym_preproc_elif_token1] = ACTIONS(9361), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9363), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9363), + [anon_sym_LPAREN2] = ACTIONS(9363), + [anon_sym_DASH] = ACTIONS(9361), + [anon_sym_PLUS] = ACTIONS(9361), + [anon_sym_STAR] = ACTIONS(9361), + [anon_sym_SLASH] = ACTIONS(9361), + [anon_sym_PERCENT] = ACTIONS(9361), + [anon_sym_PIPE_PIPE] = ACTIONS(9363), + [anon_sym_AMP_AMP] = ACTIONS(9363), + [anon_sym_PIPE] = ACTIONS(9361), + [anon_sym_CARET] = ACTIONS(9361), + [anon_sym_AMP] = ACTIONS(9361), + [anon_sym_EQ_EQ] = ACTIONS(9363), + [anon_sym_BANG_EQ] = ACTIONS(9363), + [anon_sym_GT] = ACTIONS(9361), + [anon_sym_GT_EQ] = ACTIONS(9363), + [anon_sym_LT_EQ] = ACTIONS(9361), + [anon_sym_LT] = ACTIONS(9361), + [anon_sym_LT_LT] = ACTIONS(9361), + [anon_sym_GT_GT] = ACTIONS(9361), + [anon_sym_SEMI] = ACTIONS(9363), + [anon_sym___attribute__] = ACTIONS(9361), + [anon_sym___attribute] = ACTIONS(9361), + [anon_sym_COLON] = ACTIONS(9361), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9363), + [anon_sym_RBRACE] = ACTIONS(9363), + [anon_sym_LBRACK] = ACTIONS(9363), + [anon_sym_EQ] = ACTIONS(9361), + [anon_sym_QMARK] = ACTIONS(9363), + [anon_sym_STAR_EQ] = ACTIONS(9363), + [anon_sym_SLASH_EQ] = ACTIONS(9363), + [anon_sym_PERCENT_EQ] = ACTIONS(9363), + [anon_sym_PLUS_EQ] = ACTIONS(9363), + [anon_sym_DASH_EQ] = ACTIONS(9363), + [anon_sym_LT_LT_EQ] = ACTIONS(9363), + [anon_sym_GT_GT_EQ] = ACTIONS(9363), + [anon_sym_AMP_EQ] = ACTIONS(9363), + [anon_sym_CARET_EQ] = ACTIONS(9363), + [anon_sym_PIPE_EQ] = ACTIONS(9363), + [anon_sym_and_eq] = ACTIONS(9361), + [anon_sym_or_eq] = ACTIONS(9361), + [anon_sym_xor_eq] = ACTIONS(9361), + [anon_sym_LT_EQ_GT] = ACTIONS(9363), + [anon_sym_or] = ACTIONS(9361), + [anon_sym_and] = ACTIONS(9361), + [anon_sym_bitor] = ACTIONS(9361), + [anon_sym_xor] = ACTIONS(9361), + [anon_sym_bitand] = ACTIONS(9361), + [anon_sym_not_eq] = ACTIONS(9361), + [anon_sym_DASH_DASH] = ACTIONS(9363), + [anon_sym_PLUS_PLUS] = ACTIONS(9363), + [anon_sym_DOT] = ACTIONS(9361), + [anon_sym_DOT_STAR] = ACTIONS(9363), + [anon_sym_DASH_GT] = ACTIONS(9363), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9361), + [anon_sym_override] = ACTIONS(9361), + [anon_sym_requires] = ACTIONS(9361), + [anon_sym_COLON_RBRACK] = ACTIONS(9363), + }, + [STATE(3638)] = { + [sym_identifier] = ACTIONS(9365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9367), + [anon_sym_COMMA] = ACTIONS(9367), + [anon_sym_RPAREN] = ACTIONS(9367), + [aux_sym_preproc_if_token2] = ACTIONS(9367), + [aux_sym_preproc_else_token1] = ACTIONS(9367), + [aux_sym_preproc_elif_token1] = ACTIONS(9365), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9367), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9367), + [anon_sym_LPAREN2] = ACTIONS(9367), + [anon_sym_DASH] = ACTIONS(9365), + [anon_sym_PLUS] = ACTIONS(9365), + [anon_sym_STAR] = ACTIONS(9365), + [anon_sym_SLASH] = ACTIONS(9365), + [anon_sym_PERCENT] = ACTIONS(9365), + [anon_sym_PIPE_PIPE] = ACTIONS(9367), + [anon_sym_AMP_AMP] = ACTIONS(9367), + [anon_sym_PIPE] = ACTIONS(9365), + [anon_sym_CARET] = ACTIONS(9365), + [anon_sym_AMP] = ACTIONS(9365), + [anon_sym_EQ_EQ] = ACTIONS(9367), + [anon_sym_BANG_EQ] = ACTIONS(9367), + [anon_sym_GT] = ACTIONS(9365), + [anon_sym_GT_EQ] = ACTIONS(9367), + [anon_sym_LT_EQ] = ACTIONS(9365), + [anon_sym_LT] = ACTIONS(9365), + [anon_sym_LT_LT] = ACTIONS(9365), + [anon_sym_GT_GT] = ACTIONS(9365), + [anon_sym_SEMI] = ACTIONS(9367), + [anon_sym___attribute__] = ACTIONS(9365), + [anon_sym___attribute] = ACTIONS(9365), + [anon_sym_COLON] = ACTIONS(9365), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9367), + [anon_sym_RBRACE] = ACTIONS(9367), + [anon_sym_LBRACK] = ACTIONS(9367), + [anon_sym_EQ] = ACTIONS(9365), + [anon_sym_QMARK] = ACTIONS(9367), + [anon_sym_STAR_EQ] = ACTIONS(9367), + [anon_sym_SLASH_EQ] = ACTIONS(9367), + [anon_sym_PERCENT_EQ] = ACTIONS(9367), + [anon_sym_PLUS_EQ] = ACTIONS(9367), + [anon_sym_DASH_EQ] = ACTIONS(9367), + [anon_sym_LT_LT_EQ] = ACTIONS(9367), + [anon_sym_GT_GT_EQ] = ACTIONS(9367), + [anon_sym_AMP_EQ] = ACTIONS(9367), + [anon_sym_CARET_EQ] = ACTIONS(9367), + [anon_sym_PIPE_EQ] = ACTIONS(9367), + [anon_sym_and_eq] = ACTIONS(9365), + [anon_sym_or_eq] = ACTIONS(9365), + [anon_sym_xor_eq] = ACTIONS(9365), + [anon_sym_LT_EQ_GT] = ACTIONS(9367), + [anon_sym_or] = ACTIONS(9365), + [anon_sym_and] = ACTIONS(9365), + [anon_sym_bitor] = ACTIONS(9365), + [anon_sym_xor] = ACTIONS(9365), + [anon_sym_bitand] = ACTIONS(9365), + [anon_sym_not_eq] = ACTIONS(9365), + [anon_sym_DASH_DASH] = ACTIONS(9367), + [anon_sym_PLUS_PLUS] = ACTIONS(9367), + [anon_sym_DOT] = ACTIONS(9365), + [anon_sym_DOT_STAR] = ACTIONS(9367), + [anon_sym_DASH_GT] = ACTIONS(9367), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9365), + [anon_sym_override] = ACTIONS(9365), + [anon_sym_requires] = ACTIONS(9365), + [anon_sym_COLON_RBRACK] = ACTIONS(9367), + }, + [STATE(3639)] = { + [sym_string_literal] = STATE(4105), + [sym_template_argument_list] = STATE(5616), + [sym_raw_string_literal] = STATE(4105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(7101), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5638), + [anon_sym_COLON] = ACTIONS(5653), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5663), + [anon_sym_or_eq] = ACTIONS(5663), + [anon_sym_xor_eq] = ACTIONS(5663), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + }, + [STATE(3640)] = { + [sym_identifier] = ACTIONS(9369), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9371), + [anon_sym_COMMA] = ACTIONS(9371), + [anon_sym_RPAREN] = ACTIONS(9371), + [aux_sym_preproc_if_token2] = ACTIONS(9371), + [aux_sym_preproc_else_token1] = ACTIONS(9371), + [aux_sym_preproc_elif_token1] = ACTIONS(9369), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9371), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9371), + [anon_sym_LPAREN2] = ACTIONS(9371), + [anon_sym_DASH] = ACTIONS(9369), + [anon_sym_PLUS] = ACTIONS(9369), + [anon_sym_STAR] = ACTIONS(9369), + [anon_sym_SLASH] = ACTIONS(9369), + [anon_sym_PERCENT] = ACTIONS(9369), + [anon_sym_PIPE_PIPE] = ACTIONS(9371), + [anon_sym_AMP_AMP] = ACTIONS(9371), + [anon_sym_PIPE] = ACTIONS(9369), + [anon_sym_CARET] = ACTIONS(9369), + [anon_sym_AMP] = ACTIONS(9369), + [anon_sym_EQ_EQ] = ACTIONS(9371), + [anon_sym_BANG_EQ] = ACTIONS(9371), + [anon_sym_GT] = ACTIONS(9369), + [anon_sym_GT_EQ] = ACTIONS(9371), + [anon_sym_LT_EQ] = ACTIONS(9369), + [anon_sym_LT] = ACTIONS(9369), + [anon_sym_LT_LT] = ACTIONS(9369), + [anon_sym_GT_GT] = ACTIONS(9369), + [anon_sym_SEMI] = ACTIONS(9371), + [anon_sym___attribute__] = ACTIONS(9369), + [anon_sym___attribute] = ACTIONS(9369), + [anon_sym_COLON] = ACTIONS(9369), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9371), + [anon_sym_RBRACE] = ACTIONS(9371), + [anon_sym_LBRACK] = ACTIONS(9371), + [anon_sym_EQ] = ACTIONS(9369), + [anon_sym_QMARK] = ACTIONS(9371), + [anon_sym_STAR_EQ] = ACTIONS(9371), + [anon_sym_SLASH_EQ] = ACTIONS(9371), + [anon_sym_PERCENT_EQ] = ACTIONS(9371), + [anon_sym_PLUS_EQ] = ACTIONS(9371), + [anon_sym_DASH_EQ] = ACTIONS(9371), + [anon_sym_LT_LT_EQ] = ACTIONS(9371), + [anon_sym_GT_GT_EQ] = ACTIONS(9371), + [anon_sym_AMP_EQ] = ACTIONS(9371), + [anon_sym_CARET_EQ] = ACTIONS(9371), + [anon_sym_PIPE_EQ] = ACTIONS(9371), + [anon_sym_and_eq] = ACTIONS(9369), + [anon_sym_or_eq] = ACTIONS(9369), + [anon_sym_xor_eq] = ACTIONS(9369), + [anon_sym_LT_EQ_GT] = ACTIONS(9371), + [anon_sym_or] = ACTIONS(9369), + [anon_sym_and] = ACTIONS(9369), + [anon_sym_bitor] = ACTIONS(9369), + [anon_sym_xor] = ACTIONS(9369), + [anon_sym_bitand] = ACTIONS(9369), + [anon_sym_not_eq] = ACTIONS(9369), + [anon_sym_DASH_DASH] = ACTIONS(9371), + [anon_sym_PLUS_PLUS] = ACTIONS(9371), + [anon_sym_DOT] = ACTIONS(9369), + [anon_sym_DOT_STAR] = ACTIONS(9371), + [anon_sym_DASH_GT] = ACTIONS(9371), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9369), + [anon_sym_override] = ACTIONS(9369), + [anon_sym_requires] = ACTIONS(9369), + [anon_sym_COLON_RBRACK] = ACTIONS(9371), + }, + [STATE(3641)] = { + [sym_identifier] = ACTIONS(9373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9375), + [anon_sym_COMMA] = ACTIONS(9375), + [anon_sym_RPAREN] = ACTIONS(9375), + [aux_sym_preproc_if_token2] = ACTIONS(9375), + [aux_sym_preproc_else_token1] = ACTIONS(9375), + [aux_sym_preproc_elif_token1] = ACTIONS(9373), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9375), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9375), + [anon_sym_LPAREN2] = ACTIONS(9375), + [anon_sym_DASH] = ACTIONS(9373), + [anon_sym_PLUS] = ACTIONS(9373), + [anon_sym_STAR] = ACTIONS(9373), + [anon_sym_SLASH] = ACTIONS(9373), + [anon_sym_PERCENT] = ACTIONS(9373), + [anon_sym_PIPE_PIPE] = ACTIONS(9375), + [anon_sym_AMP_AMP] = ACTIONS(9375), + [anon_sym_PIPE] = ACTIONS(9373), + [anon_sym_CARET] = ACTIONS(9373), + [anon_sym_AMP] = ACTIONS(9373), + [anon_sym_EQ_EQ] = ACTIONS(9375), + [anon_sym_BANG_EQ] = ACTIONS(9375), + [anon_sym_GT] = ACTIONS(9373), + [anon_sym_GT_EQ] = ACTIONS(9375), + [anon_sym_LT_EQ] = ACTIONS(9373), + [anon_sym_LT] = ACTIONS(9373), + [anon_sym_LT_LT] = ACTIONS(9373), + [anon_sym_GT_GT] = ACTIONS(9373), + [anon_sym_SEMI] = ACTIONS(9375), + [anon_sym___attribute__] = ACTIONS(9373), + [anon_sym___attribute] = ACTIONS(9373), + [anon_sym_COLON] = ACTIONS(9373), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9375), + [anon_sym_RBRACE] = ACTIONS(9375), + [anon_sym_LBRACK] = ACTIONS(9375), + [anon_sym_EQ] = ACTIONS(9373), + [anon_sym_QMARK] = ACTIONS(9375), + [anon_sym_STAR_EQ] = ACTIONS(9375), + [anon_sym_SLASH_EQ] = ACTIONS(9375), + [anon_sym_PERCENT_EQ] = ACTIONS(9375), + [anon_sym_PLUS_EQ] = ACTIONS(9375), + [anon_sym_DASH_EQ] = ACTIONS(9375), + [anon_sym_LT_LT_EQ] = ACTIONS(9375), + [anon_sym_GT_GT_EQ] = ACTIONS(9375), + [anon_sym_AMP_EQ] = ACTIONS(9375), + [anon_sym_CARET_EQ] = ACTIONS(9375), + [anon_sym_PIPE_EQ] = ACTIONS(9375), + [anon_sym_and_eq] = ACTIONS(9373), + [anon_sym_or_eq] = ACTIONS(9373), + [anon_sym_xor_eq] = ACTIONS(9373), + [anon_sym_LT_EQ_GT] = ACTIONS(9375), + [anon_sym_or] = ACTIONS(9373), + [anon_sym_and] = ACTIONS(9373), + [anon_sym_bitor] = ACTIONS(9373), + [anon_sym_xor] = ACTIONS(9373), + [anon_sym_bitand] = ACTIONS(9373), + [anon_sym_not_eq] = ACTIONS(9373), + [anon_sym_DASH_DASH] = ACTIONS(9375), + [anon_sym_PLUS_PLUS] = ACTIONS(9375), + [anon_sym_DOT] = ACTIONS(9373), + [anon_sym_DOT_STAR] = ACTIONS(9375), + [anon_sym_DASH_GT] = ACTIONS(9375), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9373), + [anon_sym_override] = ACTIONS(9373), + [anon_sym_requires] = ACTIONS(9373), + [anon_sym_COLON_RBRACK] = ACTIONS(9375), + }, + [STATE(3642)] = { + [sym_string_literal] = STATE(4105), + [sym_template_argument_list] = STATE(5616), + [sym_raw_string_literal] = STATE(4105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(7101), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5638), + [anon_sym_COLON] = ACTIONS(5716), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5663), + [anon_sym_or_eq] = ACTIONS(5663), + [anon_sym_xor_eq] = ACTIONS(5663), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + }, + [STATE(3643)] = { + [sym_string_literal] = STATE(3632), + [sym_template_argument_list] = STATE(5135), + [sym_raw_string_literal] = STATE(3632), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_RPAREN] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(6964), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5638), + [anon_sym_SLASH_EQ] = ACTIONS(5638), + [anon_sym_PERCENT_EQ] = ACTIONS(5638), + [anon_sym_PLUS_EQ] = ACTIONS(5638), + [anon_sym_DASH_EQ] = ACTIONS(5638), + [anon_sym_LT_LT_EQ] = ACTIONS(5638), + [anon_sym_GT_GT_EQ] = ACTIONS(5638), + [anon_sym_AMP_EQ] = ACTIONS(5638), + [anon_sym_CARET_EQ] = ACTIONS(5638), + [anon_sym_PIPE_EQ] = ACTIONS(5638), + [anon_sym_and_eq] = ACTIONS(5638), + [anon_sym_or_eq] = ACTIONS(5638), + [anon_sym_xor_eq] = ACTIONS(5638), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5645), + [anon_sym_L_DQUOTE] = ACTIONS(6885), + [anon_sym_u_DQUOTE] = ACTIONS(6885), + [anon_sym_U_DQUOTE] = ACTIONS(6885), + [anon_sym_u8_DQUOTE] = ACTIONS(6885), + [anon_sym_DQUOTE] = ACTIONS(6885), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6887), + [anon_sym_LR_DQUOTE] = ACTIONS(6887), + [anon_sym_uR_DQUOTE] = ACTIONS(6887), + [anon_sym_UR_DQUOTE] = ACTIONS(6887), + [anon_sym_u8R_DQUOTE] = ACTIONS(6887), + [anon_sym_DASH_GT_STAR] = ACTIONS(5638), + }, + [STATE(3644)] = { + [sym_identifier] = ACTIONS(7291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [aux_sym_preproc_if_token2] = ACTIONS(7293), + [aux_sym_preproc_else_token1] = ACTIONS(7293), + [aux_sym_preproc_elif_token1] = ACTIONS(7291), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7293), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_DASH] = ACTIONS(7291), + [anon_sym_PLUS] = ACTIONS(7291), + [anon_sym_STAR] = ACTIONS(7293), + [anon_sym_SLASH] = ACTIONS(7291), + [anon_sym_PERCENT] = ACTIONS(7293), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_PIPE] = ACTIONS(7291), + [anon_sym_CARET] = ACTIONS(7293), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_EQ_EQ] = ACTIONS(7293), + [anon_sym_BANG_EQ] = ACTIONS(7293), + [anon_sym_GT] = ACTIONS(7291), + [anon_sym_GT_EQ] = ACTIONS(7293), + [anon_sym_LT_EQ] = ACTIONS(7291), + [anon_sym_LT] = ACTIONS(7291), + [anon_sym_LT_LT] = ACTIONS(7293), + [anon_sym_GT_GT] = ACTIONS(7293), + [anon_sym___extension__] = ACTIONS(7291), + [anon_sym___attribute__] = ACTIONS(7291), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_COLON] = ACTIONS(7293), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7293), + [anon_sym_RBRACK] = ACTIONS(7293), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7291), + [anon_sym_volatile] = ACTIONS(7291), + [anon_sym_restrict] = ACTIONS(7291), + [anon_sym___restrict__] = ACTIONS(7291), + [anon_sym__Atomic] = ACTIONS(7291), + [anon_sym__Noreturn] = ACTIONS(7291), + [anon_sym_noreturn] = ACTIONS(7291), + [anon_sym__Nonnull] = ACTIONS(7291), + [anon_sym_mutable] = ACTIONS(7291), + [anon_sym_constinit] = ACTIONS(7291), + [anon_sym_consteval] = ACTIONS(7291), + [anon_sym_alignas] = ACTIONS(7291), + [anon_sym__Alignas] = ACTIONS(7291), + [anon_sym_QMARK] = ACTIONS(7293), + [anon_sym_LT_EQ_GT] = ACTIONS(7293), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_bitor] = ACTIONS(7291), + [anon_sym_xor] = ACTIONS(7291), + [anon_sym_bitand] = ACTIONS(7291), + [anon_sym_not_eq] = ACTIONS(7291), + [anon_sym_DASH_DASH] = ACTIONS(7293), + [anon_sym_PLUS_PLUS] = ACTIONS(7293), + [anon_sym_DOT] = ACTIONS(7291), + [anon_sym_DOT_STAR] = ACTIONS(7293), + [anon_sym_DASH_GT] = ACTIONS(7293), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7291), + [anon_sym_decltype] = ACTIONS(7291), + [anon_sym_final] = ACTIONS(7291), + [anon_sym_override] = ACTIONS(7291), + [anon_sym_requires] = ACTIONS(7291), + }, + [STATE(3645)] = { + [sym_argument_list] = STATE(3859), + [sym_initializer_list] = STATE(3859), + [sym_identifier] = ACTIONS(9377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9379), + [anon_sym_COMMA] = ACTIONS(9379), + [anon_sym_RPAREN] = ACTIONS(9379), + [aux_sym_preproc_if_token2] = ACTIONS(9379), + [aux_sym_preproc_else_token1] = ACTIONS(9379), + [aux_sym_preproc_elif_token1] = ACTIONS(9377), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9379), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9379), + [anon_sym_LPAREN2] = ACTIONS(9230), + [anon_sym_DASH] = ACTIONS(9377), + [anon_sym_PLUS] = ACTIONS(9377), + [anon_sym_STAR] = ACTIONS(9377), + [anon_sym_SLASH] = ACTIONS(9377), + [anon_sym_PERCENT] = ACTIONS(9377), + [anon_sym_PIPE_PIPE] = ACTIONS(9379), + [anon_sym_AMP_AMP] = ACTIONS(9379), + [anon_sym_PIPE] = ACTIONS(9377), + [anon_sym_CARET] = ACTIONS(9377), + [anon_sym_AMP] = ACTIONS(9377), + [anon_sym_EQ_EQ] = ACTIONS(9379), + [anon_sym_BANG_EQ] = ACTIONS(9379), + [anon_sym_GT] = ACTIONS(9377), + [anon_sym_GT_EQ] = ACTIONS(9379), + [anon_sym_LT_EQ] = ACTIONS(9377), + [anon_sym_LT] = ACTIONS(9377), + [anon_sym_LT_LT] = ACTIONS(9377), + [anon_sym_GT_GT] = ACTIONS(9377), + [anon_sym_SEMI] = ACTIONS(9379), + [anon_sym___attribute__] = ACTIONS(9377), + [anon_sym___attribute] = ACTIONS(9377), + [anon_sym_COLON] = ACTIONS(9377), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9379), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(9379), + [anon_sym_LBRACK] = ACTIONS(9379), + [anon_sym_EQ] = ACTIONS(9377), + [anon_sym_QMARK] = ACTIONS(9379), + [anon_sym_STAR_EQ] = ACTIONS(9379), + [anon_sym_SLASH_EQ] = ACTIONS(9379), + [anon_sym_PERCENT_EQ] = ACTIONS(9379), + [anon_sym_PLUS_EQ] = ACTIONS(9379), + [anon_sym_DASH_EQ] = ACTIONS(9379), + [anon_sym_LT_LT_EQ] = ACTIONS(9379), + [anon_sym_GT_GT_EQ] = ACTIONS(9379), + [anon_sym_AMP_EQ] = ACTIONS(9379), + [anon_sym_CARET_EQ] = ACTIONS(9379), + [anon_sym_PIPE_EQ] = ACTIONS(9379), + [anon_sym_and_eq] = ACTIONS(9377), + [anon_sym_or_eq] = ACTIONS(9377), + [anon_sym_xor_eq] = ACTIONS(9377), + [anon_sym_LT_EQ_GT] = ACTIONS(9379), + [anon_sym_or] = ACTIONS(9377), + [anon_sym_and] = ACTIONS(9377), + [anon_sym_bitor] = ACTIONS(9377), + [anon_sym_xor] = ACTIONS(9377), + [anon_sym_bitand] = ACTIONS(9377), + [anon_sym_not_eq] = ACTIONS(9377), + [anon_sym_DASH_DASH] = ACTIONS(9379), + [anon_sym_PLUS_PLUS] = ACTIONS(9379), + [anon_sym_DOT] = ACTIONS(9377), + [anon_sym_DOT_STAR] = ACTIONS(9379), + [anon_sym_DASH_GT] = ACTIONS(9379), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9379), + }, + [STATE(3646)] = { + [sym_attribute_specifier] = STATE(4485), + [sym_attribute_declaration] = STATE(4713), + [sym_gnu_asm_expression] = STATE(9134), + [sym_virtual_specifier] = STATE(4778), + [sym__function_exception_specification] = STATE(4099), + [sym__function_attributes_end] = STATE(5960), + [sym__function_postfix] = STATE(5460), + [sym_trailing_return_type] = STATE(5881), + [sym_noexcept] = STATE(4099), + [sym_throw_specifier] = STATE(4099), + [sym_requires_clause] = STATE(5460), + [aux_sym_type_definition_repeat1] = STATE(4485), + [aux_sym_attributed_declarator_repeat1] = STATE(4713), + [aux_sym__function_postfix_repeat1] = STATE(4778), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7791), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7791), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7791), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7791), + [anon_sym_GT_GT] = ACTIONS(7791), + [anon_sym_SEMI] = ACTIONS(7791), + [anon_sym___attribute__] = ACTIONS(7176), + [anon_sym___attribute] = ACTIONS(7178), + [anon_sym_COLON] = ACTIONS(7789), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), + [anon_sym_RBRACE] = ACTIONS(7791), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7791), + [anon_sym_and] = ACTIONS(7791), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7791), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(9211), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7219), + [anon_sym_override] = ACTIONS(7219), + [anon_sym_noexcept] = ACTIONS(7192), + [anon_sym_throw] = ACTIONS(7194), + [anon_sym_requires] = ACTIONS(7221), + [anon_sym_COLON_RBRACK] = ACTIONS(7791), + }, + [STATE(3647)] = { + [sym_argument_list] = STATE(3857), + [sym_initializer_list] = STATE(3857), + [sym_identifier] = ACTIONS(9381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9383), + [anon_sym_COMMA] = ACTIONS(9383), + [anon_sym_RPAREN] = ACTIONS(9383), + [aux_sym_preproc_if_token2] = ACTIONS(9383), + [aux_sym_preproc_else_token1] = ACTIONS(9383), + [aux_sym_preproc_elif_token1] = ACTIONS(9381), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9383), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9383), + [anon_sym_LPAREN2] = ACTIONS(9230), + [anon_sym_DASH] = ACTIONS(9381), + [anon_sym_PLUS] = ACTIONS(9381), + [anon_sym_STAR] = ACTIONS(9381), + [anon_sym_SLASH] = ACTIONS(9381), + [anon_sym_PERCENT] = ACTIONS(9381), + [anon_sym_PIPE_PIPE] = ACTIONS(9383), + [anon_sym_AMP_AMP] = ACTIONS(9383), + [anon_sym_PIPE] = ACTIONS(9381), + [anon_sym_CARET] = ACTIONS(9381), + [anon_sym_AMP] = ACTIONS(9381), + [anon_sym_EQ_EQ] = ACTIONS(9383), + [anon_sym_BANG_EQ] = ACTIONS(9383), + [anon_sym_GT] = ACTIONS(9381), + [anon_sym_GT_EQ] = ACTIONS(9383), + [anon_sym_LT_EQ] = ACTIONS(9381), + [anon_sym_LT] = ACTIONS(9381), + [anon_sym_LT_LT] = ACTIONS(9381), + [anon_sym_GT_GT] = ACTIONS(9381), + [anon_sym_SEMI] = ACTIONS(9383), + [anon_sym___attribute__] = ACTIONS(9381), + [anon_sym___attribute] = ACTIONS(9381), + [anon_sym_COLON] = ACTIONS(9381), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9383), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(9383), + [anon_sym_LBRACK] = ACTIONS(9383), + [anon_sym_EQ] = ACTIONS(9381), + [anon_sym_QMARK] = ACTIONS(9383), + [anon_sym_STAR_EQ] = ACTIONS(9383), + [anon_sym_SLASH_EQ] = ACTIONS(9383), + [anon_sym_PERCENT_EQ] = ACTIONS(9383), + [anon_sym_PLUS_EQ] = ACTIONS(9383), + [anon_sym_DASH_EQ] = ACTIONS(9383), + [anon_sym_LT_LT_EQ] = ACTIONS(9383), + [anon_sym_GT_GT_EQ] = ACTIONS(9383), + [anon_sym_AMP_EQ] = ACTIONS(9383), + [anon_sym_CARET_EQ] = ACTIONS(9383), + [anon_sym_PIPE_EQ] = ACTIONS(9383), + [anon_sym_and_eq] = ACTIONS(9381), + [anon_sym_or_eq] = ACTIONS(9381), + [anon_sym_xor_eq] = ACTIONS(9381), + [anon_sym_LT_EQ_GT] = ACTIONS(9383), + [anon_sym_or] = ACTIONS(9381), + [anon_sym_and] = ACTIONS(9381), + [anon_sym_bitor] = ACTIONS(9381), + [anon_sym_xor] = ACTIONS(9381), + [anon_sym_bitand] = ACTIONS(9381), + [anon_sym_not_eq] = ACTIONS(9381), + [anon_sym_DASH_DASH] = ACTIONS(9383), + [anon_sym_PLUS_PLUS] = ACTIONS(9383), + [anon_sym_DOT] = ACTIONS(9381), + [anon_sym_DOT_STAR] = ACTIONS(9383), + [anon_sym_DASH_GT] = ACTIONS(9383), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9383), + }, + [STATE(3648)] = { + [sym_identifier] = ACTIONS(8950), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8952), + [anon_sym_COMMA] = ACTIONS(8952), + [anon_sym_RPAREN] = ACTIONS(8952), + [aux_sym_preproc_if_token2] = ACTIONS(8952), + [aux_sym_preproc_else_token1] = ACTIONS(8952), + [aux_sym_preproc_elif_token1] = ACTIONS(8950), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8952), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8952), + [anon_sym_LPAREN2] = ACTIONS(8952), + [anon_sym_DASH] = ACTIONS(8950), + [anon_sym_PLUS] = ACTIONS(8950), + [anon_sym_STAR] = ACTIONS(8950), + [anon_sym_SLASH] = ACTIONS(8950), + [anon_sym_PERCENT] = ACTIONS(8950), + [anon_sym_PIPE_PIPE] = ACTIONS(8952), + [anon_sym_AMP_AMP] = ACTIONS(8952), + [anon_sym_PIPE] = ACTIONS(8950), + [anon_sym_CARET] = ACTIONS(8950), + [anon_sym_AMP] = ACTIONS(8950), + [anon_sym_EQ_EQ] = ACTIONS(8952), + [anon_sym_BANG_EQ] = ACTIONS(8952), + [anon_sym_GT] = ACTIONS(8950), + [anon_sym_GT_EQ] = ACTIONS(8952), + [anon_sym_LT_EQ] = ACTIONS(8950), + [anon_sym_LT] = ACTIONS(8950), + [anon_sym_LT_LT] = ACTIONS(8950), + [anon_sym_GT_GT] = ACTIONS(8950), + [anon_sym_SEMI] = ACTIONS(8952), + [anon_sym___attribute__] = ACTIONS(8950), + [anon_sym___attribute] = ACTIONS(8950), + [anon_sym_COLON] = ACTIONS(8950), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8952), + [anon_sym_RBRACE] = ACTIONS(8952), + [anon_sym_LBRACK] = ACTIONS(8952), + [anon_sym_EQ] = ACTIONS(8950), + [anon_sym_QMARK] = ACTIONS(8952), + [anon_sym_STAR_EQ] = ACTIONS(8952), + [anon_sym_SLASH_EQ] = ACTIONS(8952), + [anon_sym_PERCENT_EQ] = ACTIONS(8952), + [anon_sym_PLUS_EQ] = ACTIONS(8952), + [anon_sym_DASH_EQ] = ACTIONS(8952), + [anon_sym_LT_LT_EQ] = ACTIONS(8952), + [anon_sym_GT_GT_EQ] = ACTIONS(8952), + [anon_sym_AMP_EQ] = ACTIONS(8952), + [anon_sym_CARET_EQ] = ACTIONS(8952), + [anon_sym_PIPE_EQ] = ACTIONS(8952), + [anon_sym_and_eq] = ACTIONS(8950), + [anon_sym_or_eq] = ACTIONS(8950), + [anon_sym_xor_eq] = ACTIONS(8950), + [anon_sym_LT_EQ_GT] = ACTIONS(8952), + [anon_sym_or] = ACTIONS(8950), + [anon_sym_and] = ACTIONS(8950), + [anon_sym_bitor] = ACTIONS(8950), + [anon_sym_xor] = ACTIONS(8950), + [anon_sym_bitand] = ACTIONS(8950), + [anon_sym_not_eq] = ACTIONS(8950), + [anon_sym_DASH_DASH] = ACTIONS(8952), + [anon_sym_PLUS_PLUS] = ACTIONS(8952), + [anon_sym_DOT] = ACTIONS(8950), + [anon_sym_DOT_STAR] = ACTIONS(8952), + [anon_sym_DASH_GT] = ACTIONS(8952), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8950), + [anon_sym_override] = ACTIONS(8950), + [anon_sym_requires] = ACTIONS(8950), + [anon_sym_COLON_RBRACK] = ACTIONS(8952), + }, + [STATE(3649)] = { + [sym_attribute_specifier] = STATE(4485), + [sym_attribute_declaration] = STATE(4713), + [sym_gnu_asm_expression] = STATE(9134), + [sym_virtual_specifier] = STATE(4778), + [sym__function_exception_specification] = STATE(4091), + [sym__function_attributes_end] = STATE(5963), + [sym__function_postfix] = STATE(5532), + [sym_trailing_return_type] = STATE(5857), + [sym_noexcept] = STATE(4091), + [sym_throw_specifier] = STATE(4091), + [sym_requires_clause] = STATE(5532), + [aux_sym_type_definition_repeat1] = STATE(4485), + [aux_sym_attributed_declarator_repeat1] = STATE(4713), + [aux_sym__function_postfix_repeat1] = STATE(4778), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [anon_sym_RPAREN] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7966), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7966), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7966), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7966), + [anon_sym_GT_GT] = ACTIONS(7966), + [anon_sym_SEMI] = ACTIONS(7966), + [anon_sym___attribute__] = ACTIONS(7176), + [anon_sym___attribute] = ACTIONS(7178), + [anon_sym_COLON] = ACTIONS(7968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7966), + [anon_sym_RBRACE] = ACTIONS(7966), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7966), + [anon_sym_and] = ACTIONS(7966), + [anon_sym_bitor] = ACTIONS(7966), + [anon_sym_xor] = ACTIONS(7966), + [anon_sym_bitand] = ACTIONS(7966), + [anon_sym_not_eq] = ACTIONS(7966), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(9287), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7219), + [anon_sym_override] = ACTIONS(7219), + [anon_sym_noexcept] = ACTIONS(7192), + [anon_sym_throw] = ACTIONS(7194), + [anon_sym_requires] = ACTIONS(7221), + [anon_sym_COLON_RBRACK] = ACTIONS(7966), + }, + [STATE(3650)] = { + [sym_identifier] = ACTIONS(9322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9324), + [anon_sym_COMMA] = ACTIONS(9324), + [anon_sym_RPAREN] = ACTIONS(9324), + [aux_sym_preproc_if_token2] = ACTIONS(9324), + [aux_sym_preproc_else_token1] = ACTIONS(9324), + [aux_sym_preproc_elif_token1] = ACTIONS(9322), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9324), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9324), + [anon_sym_LPAREN2] = ACTIONS(9324), + [anon_sym_DASH] = ACTIONS(9322), + [anon_sym_PLUS] = ACTIONS(9322), + [anon_sym_STAR] = ACTIONS(9322), + [anon_sym_SLASH] = ACTIONS(9322), + [anon_sym_PERCENT] = ACTIONS(9322), + [anon_sym_PIPE_PIPE] = ACTIONS(9324), + [anon_sym_AMP_AMP] = ACTIONS(9385), + [anon_sym_PIPE] = ACTIONS(9322), + [anon_sym_CARET] = ACTIONS(9322), + [anon_sym_AMP] = ACTIONS(9322), + [anon_sym_EQ_EQ] = ACTIONS(9324), + [anon_sym_BANG_EQ] = ACTIONS(9324), + [anon_sym_GT] = ACTIONS(9322), + [anon_sym_GT_EQ] = ACTIONS(9324), + [anon_sym_LT_EQ] = ACTIONS(9322), + [anon_sym_LT] = ACTIONS(9322), + [anon_sym_LT_LT] = ACTIONS(9322), + [anon_sym_GT_GT] = ACTIONS(9322), + [anon_sym_SEMI] = ACTIONS(9324), + [anon_sym___attribute__] = ACTIONS(9322), + [anon_sym___attribute] = ACTIONS(9322), + [anon_sym_COLON] = ACTIONS(9322), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9324), + [anon_sym_RBRACE] = ACTIONS(9324), + [anon_sym_LBRACK] = ACTIONS(9324), + [anon_sym_EQ] = ACTIONS(9322), + [anon_sym_QMARK] = ACTIONS(9324), + [anon_sym_STAR_EQ] = ACTIONS(9324), + [anon_sym_SLASH_EQ] = ACTIONS(9324), + [anon_sym_PERCENT_EQ] = ACTIONS(9324), + [anon_sym_PLUS_EQ] = ACTIONS(9324), + [anon_sym_DASH_EQ] = ACTIONS(9324), + [anon_sym_LT_LT_EQ] = ACTIONS(9324), + [anon_sym_GT_GT_EQ] = ACTIONS(9324), + [anon_sym_AMP_EQ] = ACTIONS(9324), + [anon_sym_CARET_EQ] = ACTIONS(9324), + [anon_sym_PIPE_EQ] = ACTIONS(9324), + [anon_sym_and_eq] = ACTIONS(9322), + [anon_sym_or_eq] = ACTIONS(9322), + [anon_sym_xor_eq] = ACTIONS(9322), + [anon_sym_LT_EQ_GT] = ACTIONS(9324), + [anon_sym_or] = ACTIONS(9322), + [anon_sym_and] = ACTIONS(9387), + [anon_sym_bitor] = ACTIONS(9322), + [anon_sym_xor] = ACTIONS(9322), + [anon_sym_bitand] = ACTIONS(9322), + [anon_sym_not_eq] = ACTIONS(9322), + [anon_sym_DASH_DASH] = ACTIONS(9324), + [anon_sym_PLUS_PLUS] = ACTIONS(9324), + [anon_sym_DOT] = ACTIONS(9322), + [anon_sym_DOT_STAR] = ACTIONS(9324), + [anon_sym_DASH_GT] = ACTIONS(9324), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9322), + [anon_sym_override] = ACTIONS(9322), + [anon_sym_requires] = ACTIONS(9322), + [anon_sym_COLON_RBRACK] = ACTIONS(9324), + }, + [STATE(3651)] = { + [sym_identifier] = ACTIONS(9389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9391), + [anon_sym_COMMA] = ACTIONS(9391), + [anon_sym_RPAREN] = ACTIONS(9391), + [aux_sym_preproc_if_token2] = ACTIONS(9391), + [aux_sym_preproc_else_token1] = ACTIONS(9391), + [aux_sym_preproc_elif_token1] = ACTIONS(9389), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9391), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9391), + [anon_sym_LPAREN2] = ACTIONS(9391), + [anon_sym_DASH] = ACTIONS(9389), + [anon_sym_PLUS] = ACTIONS(9389), + [anon_sym_STAR] = ACTIONS(9389), + [anon_sym_SLASH] = ACTIONS(9389), + [anon_sym_PERCENT] = ACTIONS(9389), + [anon_sym_PIPE_PIPE] = ACTIONS(9391), + [anon_sym_AMP_AMP] = ACTIONS(9391), + [anon_sym_PIPE] = ACTIONS(9389), + [anon_sym_CARET] = ACTIONS(9389), + [anon_sym_AMP] = ACTIONS(9389), + [anon_sym_EQ_EQ] = ACTIONS(9391), + [anon_sym_BANG_EQ] = ACTIONS(9391), + [anon_sym_GT] = ACTIONS(9389), + [anon_sym_GT_EQ] = ACTIONS(9391), + [anon_sym_LT_EQ] = ACTIONS(9389), + [anon_sym_LT] = ACTIONS(9389), + [anon_sym_LT_LT] = ACTIONS(9389), + [anon_sym_GT_GT] = ACTIONS(9389), + [anon_sym_SEMI] = ACTIONS(9391), + [anon_sym___attribute__] = ACTIONS(9389), + [anon_sym___attribute] = ACTIONS(9389), + [anon_sym_COLON] = ACTIONS(9389), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9391), + [anon_sym_RBRACE] = ACTIONS(9391), + [anon_sym_LBRACK] = ACTIONS(9391), + [anon_sym_EQ] = ACTIONS(9389), + [anon_sym_QMARK] = ACTIONS(9391), + [anon_sym_STAR_EQ] = ACTIONS(9391), + [anon_sym_SLASH_EQ] = ACTIONS(9391), + [anon_sym_PERCENT_EQ] = ACTIONS(9391), + [anon_sym_PLUS_EQ] = ACTIONS(9391), + [anon_sym_DASH_EQ] = ACTIONS(9391), + [anon_sym_LT_LT_EQ] = ACTIONS(9391), + [anon_sym_GT_GT_EQ] = ACTIONS(9391), + [anon_sym_AMP_EQ] = ACTIONS(9391), + [anon_sym_CARET_EQ] = ACTIONS(9391), + [anon_sym_PIPE_EQ] = ACTIONS(9391), + [anon_sym_and_eq] = ACTIONS(9389), + [anon_sym_or_eq] = ACTIONS(9389), + [anon_sym_xor_eq] = ACTIONS(9389), + [anon_sym_LT_EQ_GT] = ACTIONS(9391), + [anon_sym_or] = ACTIONS(9389), + [anon_sym_and] = ACTIONS(9389), + [anon_sym_bitor] = ACTIONS(9389), + [anon_sym_xor] = ACTIONS(9389), + [anon_sym_bitand] = ACTIONS(9389), + [anon_sym_not_eq] = ACTIONS(9389), + [anon_sym_DASH_DASH] = ACTIONS(9391), + [anon_sym_PLUS_PLUS] = ACTIONS(9391), + [anon_sym_DOT] = ACTIONS(9389), + [anon_sym_DOT_STAR] = ACTIONS(9391), + [anon_sym_DASH_GT] = ACTIONS(9391), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9389), + [anon_sym_override] = ACTIONS(9389), + [anon_sym_requires] = ACTIONS(9389), + [anon_sym_COLON_RBRACK] = ACTIONS(9391), + }, + [STATE(3652)] = { + [sym_identifier] = ACTIONS(8885), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8887), + [anon_sym_COMMA] = ACTIONS(8887), + [anon_sym_RPAREN] = ACTIONS(8887), + [aux_sym_preproc_if_token2] = ACTIONS(8887), + [aux_sym_preproc_else_token1] = ACTIONS(8887), + [aux_sym_preproc_elif_token1] = ACTIONS(8885), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8887), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8887), + [anon_sym_LPAREN2] = ACTIONS(8887), + [anon_sym_DASH] = ACTIONS(8885), + [anon_sym_PLUS] = ACTIONS(8885), + [anon_sym_STAR] = ACTIONS(8885), + [anon_sym_SLASH] = ACTIONS(8885), + [anon_sym_PERCENT] = ACTIONS(8885), + [anon_sym_PIPE_PIPE] = ACTIONS(8887), + [anon_sym_AMP_AMP] = ACTIONS(8887), + [anon_sym_PIPE] = ACTIONS(8885), + [anon_sym_CARET] = ACTIONS(8885), + [anon_sym_AMP] = ACTIONS(8885), + [anon_sym_EQ_EQ] = ACTIONS(8887), + [anon_sym_BANG_EQ] = ACTIONS(8887), + [anon_sym_GT] = ACTIONS(8885), + [anon_sym_GT_EQ] = ACTIONS(8887), + [anon_sym_LT_EQ] = ACTIONS(8885), + [anon_sym_LT] = ACTIONS(8885), + [anon_sym_LT_LT] = ACTIONS(8885), + [anon_sym_GT_GT] = ACTIONS(8885), + [anon_sym_SEMI] = ACTIONS(8887), + [anon_sym___attribute__] = ACTIONS(8885), + [anon_sym___attribute] = ACTIONS(8885), + [anon_sym_COLON] = ACTIONS(8885), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8887), + [anon_sym_RBRACE] = ACTIONS(8887), + [anon_sym_LBRACK] = ACTIONS(8887), + [anon_sym_EQ] = ACTIONS(8885), + [anon_sym_QMARK] = ACTIONS(8887), + [anon_sym_STAR_EQ] = ACTIONS(8887), + [anon_sym_SLASH_EQ] = ACTIONS(8887), + [anon_sym_PERCENT_EQ] = ACTIONS(8887), + [anon_sym_PLUS_EQ] = ACTIONS(8887), + [anon_sym_DASH_EQ] = ACTIONS(8887), + [anon_sym_LT_LT_EQ] = ACTIONS(8887), + [anon_sym_GT_GT_EQ] = ACTIONS(8887), + [anon_sym_AMP_EQ] = ACTIONS(8887), + [anon_sym_CARET_EQ] = ACTIONS(8887), + [anon_sym_PIPE_EQ] = ACTIONS(8887), + [anon_sym_and_eq] = ACTIONS(8885), + [anon_sym_or_eq] = ACTIONS(8885), + [anon_sym_xor_eq] = ACTIONS(8885), + [anon_sym_LT_EQ_GT] = ACTIONS(8887), + [anon_sym_or] = ACTIONS(8885), + [anon_sym_and] = ACTIONS(8885), + [anon_sym_bitor] = ACTIONS(8885), + [anon_sym_xor] = ACTIONS(8885), + [anon_sym_bitand] = ACTIONS(8885), + [anon_sym_not_eq] = ACTIONS(8885), + [anon_sym_DASH_DASH] = ACTIONS(8887), + [anon_sym_PLUS_PLUS] = ACTIONS(8887), + [anon_sym_DOT] = ACTIONS(8885), + [anon_sym_DOT_STAR] = ACTIONS(8887), + [anon_sym_DASH_GT] = ACTIONS(8887), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8885), + [anon_sym_override] = ACTIONS(8885), + [anon_sym_requires] = ACTIONS(8885), + [anon_sym_COLON_RBRACK] = ACTIONS(8887), + }, + [STATE(3653)] = { + [sym_identifier] = ACTIONS(8909), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8911), + [anon_sym_COMMA] = ACTIONS(8911), + [anon_sym_RPAREN] = ACTIONS(8911), + [aux_sym_preproc_if_token2] = ACTIONS(8911), + [aux_sym_preproc_else_token1] = ACTIONS(8911), + [aux_sym_preproc_elif_token1] = ACTIONS(8909), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8911), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8911), + [anon_sym_LPAREN2] = ACTIONS(8911), + [anon_sym_DASH] = ACTIONS(8909), + [anon_sym_PLUS] = ACTIONS(8909), + [anon_sym_STAR] = ACTIONS(8909), + [anon_sym_SLASH] = ACTIONS(8909), + [anon_sym_PERCENT] = ACTIONS(8909), + [anon_sym_PIPE_PIPE] = ACTIONS(8911), + [anon_sym_AMP_AMP] = ACTIONS(8911), + [anon_sym_PIPE] = ACTIONS(8909), + [anon_sym_CARET] = ACTIONS(8909), + [anon_sym_AMP] = ACTIONS(8909), + [anon_sym_EQ_EQ] = ACTIONS(8911), + [anon_sym_BANG_EQ] = ACTIONS(8911), + [anon_sym_GT] = ACTIONS(8909), + [anon_sym_GT_EQ] = ACTIONS(8911), + [anon_sym_LT_EQ] = ACTIONS(8909), + [anon_sym_LT] = ACTIONS(8909), + [anon_sym_LT_LT] = ACTIONS(8909), + [anon_sym_GT_GT] = ACTIONS(8909), + [anon_sym_SEMI] = ACTIONS(8911), + [anon_sym___attribute__] = ACTIONS(8909), + [anon_sym___attribute] = ACTIONS(8909), + [anon_sym_COLON] = ACTIONS(8909), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8911), + [anon_sym_RBRACE] = ACTIONS(8911), + [anon_sym_LBRACK] = ACTIONS(8911), + [anon_sym_EQ] = ACTIONS(8909), + [anon_sym_QMARK] = ACTIONS(8911), + [anon_sym_STAR_EQ] = ACTIONS(8911), + [anon_sym_SLASH_EQ] = ACTIONS(8911), + [anon_sym_PERCENT_EQ] = ACTIONS(8911), + [anon_sym_PLUS_EQ] = ACTIONS(8911), + [anon_sym_DASH_EQ] = ACTIONS(8911), + [anon_sym_LT_LT_EQ] = ACTIONS(8911), + [anon_sym_GT_GT_EQ] = ACTIONS(8911), + [anon_sym_AMP_EQ] = ACTIONS(8911), + [anon_sym_CARET_EQ] = ACTIONS(8911), + [anon_sym_PIPE_EQ] = ACTIONS(8911), + [anon_sym_and_eq] = ACTIONS(8909), + [anon_sym_or_eq] = ACTIONS(8909), + [anon_sym_xor_eq] = ACTIONS(8909), + [anon_sym_LT_EQ_GT] = ACTIONS(8911), + [anon_sym_or] = ACTIONS(8909), + [anon_sym_and] = ACTIONS(8909), + [anon_sym_bitor] = ACTIONS(8909), + [anon_sym_xor] = ACTIONS(8909), + [anon_sym_bitand] = ACTIONS(8909), + [anon_sym_not_eq] = ACTIONS(8909), + [anon_sym_DASH_DASH] = ACTIONS(8911), + [anon_sym_PLUS_PLUS] = ACTIONS(8911), + [anon_sym_DOT] = ACTIONS(8909), + [anon_sym_DOT_STAR] = ACTIONS(8911), + [anon_sym_DASH_GT] = ACTIONS(8911), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8909), + [anon_sym_override] = ACTIONS(8909), + [anon_sym_requires] = ACTIONS(8909), + [anon_sym_COLON_RBRACK] = ACTIONS(8911), + }, + [STATE(3654)] = { + [sym_identifier] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(6614), + [anon_sym_TILDE] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6614), + [anon_sym_AMP_AMP] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(6612), + [anon_sym___extension__] = ACTIONS(6612), + [anon_sym_virtual] = ACTIONS(6612), + [anon_sym_extern] = ACTIONS(6612), + [anon_sym___attribute__] = ACTIONS(6612), + [anon_sym___attribute] = ACTIONS(6612), + [anon_sym_using] = ACTIONS(6612), + [anon_sym_COLON_COLON] = ACTIONS(6614), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6614), + [anon_sym___declspec] = ACTIONS(6612), + [anon_sym___based] = ACTIONS(6612), + [anon_sym___cdecl] = ACTIONS(6612), + [anon_sym___clrcall] = ACTIONS(6612), + [anon_sym___stdcall] = ACTIONS(6612), + [anon_sym___fastcall] = ACTIONS(6612), + [anon_sym___thiscall] = ACTIONS(6612), + [anon_sym___vectorcall] = ACTIONS(6612), + [anon_sym_signed] = ACTIONS(6612), + [anon_sym_unsigned] = ACTIONS(6612), + [anon_sym_long] = ACTIONS(6612), + [anon_sym_short] = ACTIONS(6612), + [anon_sym_LBRACK] = ACTIONS(6612), + [anon_sym_static] = ACTIONS(6612), + [anon_sym_register] = ACTIONS(6612), + [anon_sym_inline] = ACTIONS(6612), + [anon_sym___inline] = ACTIONS(6612), + [anon_sym___inline__] = ACTIONS(6612), + [anon_sym___forceinline] = ACTIONS(6612), + [anon_sym_thread_local] = ACTIONS(6612), + [anon_sym___thread] = ACTIONS(6612), + [anon_sym_const] = ACTIONS(6612), + [anon_sym_constexpr] = ACTIONS(6612), + [anon_sym_volatile] = ACTIONS(6612), + [anon_sym_restrict] = ACTIONS(6612), + [anon_sym___restrict__] = ACTIONS(6612), + [anon_sym__Atomic] = ACTIONS(6612), + [anon_sym__Noreturn] = ACTIONS(6612), + [anon_sym_noreturn] = ACTIONS(6612), + [anon_sym__Nonnull] = ACTIONS(6612), + [anon_sym_mutable] = ACTIONS(6612), + [anon_sym_constinit] = ACTIONS(6612), + [anon_sym_consteval] = ACTIONS(6612), + [anon_sym_alignas] = ACTIONS(6612), + [anon_sym__Alignas] = ACTIONS(6612), + [sym_primitive_type] = ACTIONS(6612), + [anon_sym_enum] = ACTIONS(6612), + [anon_sym_class] = ACTIONS(6612), + [anon_sym_struct] = ACTIONS(6612), + [anon_sym_union] = ACTIONS(6612), + [anon_sym_or] = ACTIONS(6612), + [anon_sym_and] = ACTIONS(6612), + [anon_sym_typename] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6612), + [anon_sym_decltype] = ACTIONS(6612), + [anon_sym_explicit] = ACTIONS(6612), + [anon_sym_template] = ACTIONS(6612), + [anon_sym_operator] = ACTIONS(6612), + [anon_sym_friend] = ACTIONS(6612), + [anon_sym_concept] = ACTIONS(6612), + [anon_sym_LBRACK_COLON] = ACTIONS(6614), + }, + [STATE(3655)] = { + [sym_identifier] = ACTIONS(8424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), + [anon_sym_COMMA] = ACTIONS(8422), + [anon_sym_RPAREN] = ACTIONS(8422), + [aux_sym_preproc_if_token2] = ACTIONS(8422), + [aux_sym_preproc_else_token1] = ACTIONS(8422), + [aux_sym_preproc_elif_token1] = ACTIONS(8424), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8422), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8422), + [anon_sym_LPAREN2] = ACTIONS(8422), + [anon_sym_DASH] = ACTIONS(8424), + [anon_sym_PLUS] = ACTIONS(8424), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_SLASH] = ACTIONS(8424), + [anon_sym_PERCENT] = ACTIONS(8424), + [anon_sym_PIPE_PIPE] = ACTIONS(8422), + [anon_sym_AMP_AMP] = ACTIONS(8422), + [anon_sym_PIPE] = ACTIONS(8424), + [anon_sym_CARET] = ACTIONS(8424), + [anon_sym_AMP] = ACTIONS(8424), + [anon_sym_EQ_EQ] = ACTIONS(8422), + [anon_sym_BANG_EQ] = ACTIONS(8422), + [anon_sym_GT] = ACTIONS(8424), + [anon_sym_GT_EQ] = ACTIONS(8422), + [anon_sym_LT_EQ] = ACTIONS(8424), + [anon_sym_LT] = ACTIONS(8424), + [anon_sym_LT_LT] = ACTIONS(8424), + [anon_sym_GT_GT] = ACTIONS(8424), + [anon_sym_SEMI] = ACTIONS(8422), + [anon_sym___attribute__] = ACTIONS(8424), + [anon_sym___attribute] = ACTIONS(8424), + [anon_sym_COLON] = ACTIONS(8424), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8422), + [anon_sym_RBRACE] = ACTIONS(8422), + [anon_sym_LBRACK] = ACTIONS(8422), + [anon_sym_EQ] = ACTIONS(8424), + [anon_sym_QMARK] = ACTIONS(8422), + [anon_sym_STAR_EQ] = ACTIONS(8422), + [anon_sym_SLASH_EQ] = ACTIONS(8422), + [anon_sym_PERCENT_EQ] = ACTIONS(8422), + [anon_sym_PLUS_EQ] = ACTIONS(8422), + [anon_sym_DASH_EQ] = ACTIONS(8422), + [anon_sym_LT_LT_EQ] = ACTIONS(8422), + [anon_sym_GT_GT_EQ] = ACTIONS(8422), + [anon_sym_AMP_EQ] = ACTIONS(8422), + [anon_sym_CARET_EQ] = ACTIONS(8422), + [anon_sym_PIPE_EQ] = ACTIONS(8422), + [anon_sym_and_eq] = ACTIONS(8424), + [anon_sym_or_eq] = ACTIONS(8424), + [anon_sym_xor_eq] = ACTIONS(8424), + [anon_sym_LT_EQ_GT] = ACTIONS(8422), + [anon_sym_or] = ACTIONS(8424), + [anon_sym_and] = ACTIONS(8424), + [anon_sym_bitor] = ACTIONS(8424), + [anon_sym_xor] = ACTIONS(8424), + [anon_sym_bitand] = ACTIONS(8424), + [anon_sym_not_eq] = ACTIONS(8424), + [anon_sym_DASH_DASH] = ACTIONS(8422), + [anon_sym_PLUS_PLUS] = ACTIONS(8422), + [anon_sym_DOT] = ACTIONS(8424), + [anon_sym_DOT_STAR] = ACTIONS(8422), + [anon_sym_DASH_GT] = ACTIONS(8422), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8424), + [anon_sym_override] = ACTIONS(8424), + [anon_sym_requires] = ACTIONS(8424), + [anon_sym_COLON_RBRACK] = ACTIONS(8422), + }, + [STATE(3656)] = { + [sym_attribute_specifier] = STATE(4485), + [sym_attribute_declaration] = STATE(4713), + [sym_gnu_asm_expression] = STATE(9134), + [sym_virtual_specifier] = STATE(4778), + [sym__function_exception_specification] = STATE(4047), + [sym__function_attributes_end] = STATE(5950), + [sym__function_postfix] = STATE(5460), + [sym_trailing_return_type] = STATE(6121), + [sym_noexcept] = STATE(4047), + [sym_throw_specifier] = STATE(4047), + [sym_requires_clause] = STATE(5460), + [aux_sym_type_definition_repeat1] = STATE(4485), + [aux_sym_attributed_declarator_repeat1] = STATE(4713), + [aux_sym__function_postfix_repeat1] = STATE(4778), + [sym_identifier] = ACTIONS(7789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [aux_sym_preproc_if_token2] = ACTIONS(7791), + [aux_sym_preproc_else_token1] = ACTIONS(7791), + [aux_sym_preproc_elif_token1] = ACTIONS(7789), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7791), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7791), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7791), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7791), + [anon_sym_GT_GT] = ACTIONS(7791), + [anon_sym___attribute__] = ACTIONS(7178), + [anon_sym___attribute] = ACTIONS(7178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7789), + [anon_sym_and] = ACTIONS(7789), + [anon_sym_bitor] = ACTIONS(7789), + [anon_sym_xor] = ACTIONS(7789), + [anon_sym_bitand] = ACTIONS(7789), + [anon_sym_not_eq] = ACTIONS(7789), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6497), + [anon_sym___asm__] = ACTIONS(6497), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(9202), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7283), + [anon_sym_override] = ACTIONS(7283), + [anon_sym_noexcept] = ACTIONS(7276), + [anon_sym_throw] = ACTIONS(7278), + [anon_sym_requires] = ACTIONS(7285), + }, + [STATE(3657)] = { + [sym_identifier] = ACTIONS(9393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9395), + [anon_sym_COMMA] = ACTIONS(9395), + [anon_sym_RPAREN] = ACTIONS(9395), + [aux_sym_preproc_if_token2] = ACTIONS(9395), + [aux_sym_preproc_else_token1] = ACTIONS(9395), + [aux_sym_preproc_elif_token1] = ACTIONS(9393), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9395), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9395), + [anon_sym_LPAREN2] = ACTIONS(9395), + [anon_sym_DASH] = ACTIONS(9393), + [anon_sym_PLUS] = ACTIONS(9393), + [anon_sym_STAR] = ACTIONS(9393), + [anon_sym_SLASH] = ACTIONS(9393), + [anon_sym_PERCENT] = ACTIONS(9393), + [anon_sym_PIPE_PIPE] = ACTIONS(9397), + [anon_sym_AMP_AMP] = ACTIONS(9385), + [anon_sym_PIPE] = ACTIONS(9393), + [anon_sym_CARET] = ACTIONS(9393), + [anon_sym_AMP] = ACTIONS(9393), + [anon_sym_EQ_EQ] = ACTIONS(9395), + [anon_sym_BANG_EQ] = ACTIONS(9395), + [anon_sym_GT] = ACTIONS(9393), + [anon_sym_GT_EQ] = ACTIONS(9395), + [anon_sym_LT_EQ] = ACTIONS(9393), + [anon_sym_LT] = ACTIONS(9393), + [anon_sym_LT_LT] = ACTIONS(9393), + [anon_sym_GT_GT] = ACTIONS(9393), + [anon_sym_SEMI] = ACTIONS(9395), + [anon_sym___attribute__] = ACTIONS(9393), + [anon_sym___attribute] = ACTIONS(9393), + [anon_sym_COLON] = ACTIONS(9393), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9395), + [anon_sym_RBRACE] = ACTIONS(9395), + [anon_sym_LBRACK] = ACTIONS(9395), + [anon_sym_EQ] = ACTIONS(9393), + [anon_sym_QMARK] = ACTIONS(9395), + [anon_sym_STAR_EQ] = ACTIONS(9395), + [anon_sym_SLASH_EQ] = ACTIONS(9395), + [anon_sym_PERCENT_EQ] = ACTIONS(9395), + [anon_sym_PLUS_EQ] = ACTIONS(9395), + [anon_sym_DASH_EQ] = ACTIONS(9395), + [anon_sym_LT_LT_EQ] = ACTIONS(9395), + [anon_sym_GT_GT_EQ] = ACTIONS(9395), + [anon_sym_AMP_EQ] = ACTIONS(9395), + [anon_sym_CARET_EQ] = ACTIONS(9395), + [anon_sym_PIPE_EQ] = ACTIONS(9395), + [anon_sym_and_eq] = ACTIONS(9393), + [anon_sym_or_eq] = ACTIONS(9393), + [anon_sym_xor_eq] = ACTIONS(9393), + [anon_sym_LT_EQ_GT] = ACTIONS(9395), + [anon_sym_or] = ACTIONS(9399), + [anon_sym_and] = ACTIONS(9387), + [anon_sym_bitor] = ACTIONS(9393), + [anon_sym_xor] = ACTIONS(9393), + [anon_sym_bitand] = ACTIONS(9393), + [anon_sym_not_eq] = ACTIONS(9393), + [anon_sym_DASH_DASH] = ACTIONS(9395), + [anon_sym_PLUS_PLUS] = ACTIONS(9395), + [anon_sym_DOT] = ACTIONS(9393), + [anon_sym_DOT_STAR] = ACTIONS(9395), + [anon_sym_DASH_GT] = ACTIONS(9395), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9393), + [anon_sym_override] = ACTIONS(9393), + [anon_sym_requires] = ACTIONS(9393), + [anon_sym_COLON_RBRACK] = ACTIONS(9395), + }, + [STATE(3658)] = { + [sym_attribute_specifier] = STATE(4485), + [sym_attribute_declaration] = STATE(4713), + [sym_gnu_asm_expression] = STATE(9134), + [sym_virtual_specifier] = STATE(4778), + [sym__function_exception_specification] = STATE(4049), + [sym__function_attributes_end] = STATE(5951), + [sym__function_postfix] = STATE(5532), + [sym_trailing_return_type] = STATE(6123), + [sym_noexcept] = STATE(4049), + [sym_throw_specifier] = STATE(4049), + [sym_requires_clause] = STATE(5532), + [aux_sym_type_definition_repeat1] = STATE(4485), + [aux_sym_attributed_declarator_repeat1] = STATE(4713), + [aux_sym__function_postfix_repeat1] = STATE(4778), + [sym_identifier] = ACTIONS(7968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), + [anon_sym_COMMA] = ACTIONS(7966), + [aux_sym_preproc_if_token2] = ACTIONS(7966), + [aux_sym_preproc_else_token1] = ACTIONS(7966), + [aux_sym_preproc_elif_token1] = ACTIONS(7968), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7966), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7966), + [anon_sym_LPAREN2] = ACTIONS(7966), + [anon_sym_DASH] = ACTIONS(7968), + [anon_sym_PLUS] = ACTIONS(7968), + [anon_sym_STAR] = ACTIONS(7966), + [anon_sym_SLASH] = ACTIONS(7968), + [anon_sym_PERCENT] = ACTIONS(7966), + [anon_sym_PIPE_PIPE] = ACTIONS(7966), + [anon_sym_AMP_AMP] = ACTIONS(7966), + [anon_sym_PIPE] = ACTIONS(7968), + [anon_sym_CARET] = ACTIONS(7966), + [anon_sym_AMP] = ACTIONS(7968), + [anon_sym_EQ_EQ] = ACTIONS(7966), + [anon_sym_BANG_EQ] = ACTIONS(7966), + [anon_sym_GT] = ACTIONS(7968), + [anon_sym_GT_EQ] = ACTIONS(7966), + [anon_sym_LT_EQ] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(7968), + [anon_sym_LT_LT] = ACTIONS(7966), + [anon_sym_GT_GT] = ACTIONS(7966), + [anon_sym___attribute__] = ACTIONS(7178), + [anon_sym___attribute] = ACTIONS(7178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), + [anon_sym_LBRACK] = ACTIONS(7968), + [anon_sym_QMARK] = ACTIONS(7966), + [anon_sym_LT_EQ_GT] = ACTIONS(7966), + [anon_sym_or] = ACTIONS(7968), + [anon_sym_and] = ACTIONS(7968), + [anon_sym_bitor] = ACTIONS(7968), + [anon_sym_xor] = ACTIONS(7968), + [anon_sym_bitand] = ACTIONS(7968), + [anon_sym_not_eq] = ACTIONS(7968), + [anon_sym_DASH_DASH] = ACTIONS(7966), + [anon_sym_PLUS_PLUS] = ACTIONS(7966), + [anon_sym_asm] = ACTIONS(6497), + [anon_sym___asm__] = ACTIONS(6497), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7968), + [anon_sym_DOT_STAR] = ACTIONS(7966), + [anon_sym_DASH_GT] = ACTIONS(9352), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7283), + [anon_sym_override] = ACTIONS(7283), + [anon_sym_noexcept] = ACTIONS(7276), + [anon_sym_throw] = ACTIONS(7278), + [anon_sym_requires] = ACTIONS(7285), + }, + [STATE(3659)] = { + [sym_type_qualifier] = STATE(3659), + [sym_alignas_qualifier] = STATE(3877), + [aux_sym__type_definition_type_repeat1] = STATE(3659), + [sym_identifier] = ACTIONS(6889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), + [anon_sym_COMMA] = ACTIONS(6891), + [anon_sym_LPAREN2] = ACTIONS(6891), + [anon_sym_DASH] = ACTIONS(6889), + [anon_sym_PLUS] = ACTIONS(6889), + [anon_sym_STAR] = ACTIONS(6891), + [anon_sym_SLASH] = ACTIONS(6889), + [anon_sym_PERCENT] = ACTIONS(6891), + [anon_sym_PIPE_PIPE] = ACTIONS(6891), + [anon_sym_AMP_AMP] = ACTIONS(6891), + [anon_sym_PIPE] = ACTIONS(6889), + [anon_sym_CARET] = ACTIONS(6891), + [anon_sym_AMP] = ACTIONS(6889), + [anon_sym_EQ_EQ] = ACTIONS(6891), + [anon_sym_BANG_EQ] = ACTIONS(6891), + [anon_sym_GT] = ACTIONS(6889), + [anon_sym_GT_EQ] = ACTIONS(6891), + [anon_sym_LT_EQ] = ACTIONS(6889), + [anon_sym_LT] = ACTIONS(6889), + [anon_sym_LT_LT] = ACTIONS(6891), + [anon_sym_GT_GT] = ACTIONS(6891), + [anon_sym___extension__] = ACTIONS(9401), + [anon_sym___attribute__] = ACTIONS(6889), + [anon_sym___attribute] = ACTIONS(6889), + [anon_sym_LBRACE] = ACTIONS(6891), + [anon_sym_signed] = ACTIONS(6889), + [anon_sym_unsigned] = ACTIONS(6889), + [anon_sym_long] = ACTIONS(6889), + [anon_sym_short] = ACTIONS(6889), + [anon_sym_LBRACK] = ACTIONS(6891), + [anon_sym_RBRACK] = ACTIONS(6891), + [anon_sym_const] = ACTIONS(9401), + [anon_sym_constexpr] = ACTIONS(9401), + [anon_sym_volatile] = ACTIONS(9401), + [anon_sym_restrict] = ACTIONS(9401), + [anon_sym___restrict__] = ACTIONS(9401), + [anon_sym__Atomic] = ACTIONS(9401), + [anon_sym__Noreturn] = ACTIONS(9401), + [anon_sym_noreturn] = ACTIONS(9401), + [anon_sym__Nonnull] = ACTIONS(9401), + [anon_sym_mutable] = ACTIONS(9401), + [anon_sym_constinit] = ACTIONS(9401), + [anon_sym_consteval] = ACTIONS(9401), + [anon_sym_alignas] = ACTIONS(9404), + [anon_sym__Alignas] = ACTIONS(9404), + [sym_primitive_type] = ACTIONS(6889), + [anon_sym_QMARK] = ACTIONS(6891), + [anon_sym_LT_EQ_GT] = ACTIONS(6891), + [anon_sym_or] = ACTIONS(6889), + [anon_sym_and] = ACTIONS(6889), + [anon_sym_bitor] = ACTIONS(6889), + [anon_sym_xor] = ACTIONS(6889), + [anon_sym_bitand] = ACTIONS(6889), + [anon_sym_not_eq] = ACTIONS(6889), + [anon_sym_DASH_DASH] = ACTIONS(6891), + [anon_sym_PLUS_PLUS] = ACTIONS(6891), + [anon_sym_DOT] = ACTIONS(6889), + [anon_sym_DOT_STAR] = ACTIONS(6891), + [anon_sym_DASH_GT] = ACTIONS(6891), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6889), + [anon_sym_override] = ACTIONS(6889), + [anon_sym_requires] = ACTIONS(6889), + }, + [STATE(3660)] = { + [sym_identifier] = ACTIONS(6624), + [anon_sym_LPAREN2] = ACTIONS(6626), + [anon_sym_TILDE] = ACTIONS(6626), + [anon_sym_STAR] = ACTIONS(6626), + [anon_sym_PIPE_PIPE] = ACTIONS(6626), + [anon_sym_AMP_AMP] = ACTIONS(6626), + [anon_sym_AMP] = ACTIONS(6624), + [anon_sym___extension__] = ACTIONS(6624), + [anon_sym_virtual] = ACTIONS(6624), + [anon_sym_extern] = ACTIONS(6624), + [anon_sym___attribute__] = ACTIONS(6624), + [anon_sym___attribute] = ACTIONS(6624), + [anon_sym_using] = ACTIONS(6624), + [anon_sym_COLON_COLON] = ACTIONS(6626), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6626), + [anon_sym___declspec] = ACTIONS(6624), + [anon_sym___based] = ACTIONS(6624), + [anon_sym___cdecl] = ACTIONS(6624), + [anon_sym___clrcall] = ACTIONS(6624), + [anon_sym___stdcall] = ACTIONS(6624), + [anon_sym___fastcall] = ACTIONS(6624), + [anon_sym___thiscall] = ACTIONS(6624), + [anon_sym___vectorcall] = ACTIONS(6624), + [anon_sym_signed] = ACTIONS(6624), + [anon_sym_unsigned] = ACTIONS(6624), + [anon_sym_long] = ACTIONS(6624), + [anon_sym_short] = ACTIONS(6624), + [anon_sym_LBRACK] = ACTIONS(6624), + [anon_sym_static] = ACTIONS(6624), + [anon_sym_register] = ACTIONS(6624), + [anon_sym_inline] = ACTIONS(6624), + [anon_sym___inline] = ACTIONS(6624), + [anon_sym___inline__] = ACTIONS(6624), + [anon_sym___forceinline] = ACTIONS(6624), + [anon_sym_thread_local] = ACTIONS(6624), + [anon_sym___thread] = ACTIONS(6624), + [anon_sym_const] = ACTIONS(6624), + [anon_sym_constexpr] = ACTIONS(6624), + [anon_sym_volatile] = ACTIONS(6624), + [anon_sym_restrict] = ACTIONS(6624), + [anon_sym___restrict__] = ACTIONS(6624), + [anon_sym__Atomic] = ACTIONS(6624), + [anon_sym__Noreturn] = ACTIONS(6624), + [anon_sym_noreturn] = ACTIONS(6624), + [anon_sym__Nonnull] = ACTIONS(6624), + [anon_sym_mutable] = ACTIONS(6624), + [anon_sym_constinit] = ACTIONS(6624), + [anon_sym_consteval] = ACTIONS(6624), + [anon_sym_alignas] = ACTIONS(6624), + [anon_sym__Alignas] = ACTIONS(6624), + [sym_primitive_type] = ACTIONS(6624), + [anon_sym_enum] = ACTIONS(6624), + [anon_sym_class] = ACTIONS(6624), + [anon_sym_struct] = ACTIONS(6624), + [anon_sym_union] = ACTIONS(6624), + [anon_sym_or] = ACTIONS(6624), + [anon_sym_and] = ACTIONS(6624), + [anon_sym_typename] = ACTIONS(6624), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6624), + [anon_sym_decltype] = ACTIONS(6624), + [anon_sym_explicit] = ACTIONS(6624), + [anon_sym_template] = ACTIONS(6624), + [anon_sym_operator] = ACTIONS(6624), + [anon_sym_friend] = ACTIONS(6624), + [anon_sym_concept] = ACTIONS(6624), + [anon_sym_LBRACK_COLON] = ACTIONS(6626), + }, + [STATE(3661)] = { + [sym_string_literal] = STATE(4105), + [sym_template_argument_list] = STATE(5616), + [sym_raw_string_literal] = STATE(4105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(7101), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5638), + [anon_sym_COLON] = ACTIONS(5706), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5663), + [anon_sym_or_eq] = ACTIONS(5663), + [anon_sym_xor_eq] = ACTIONS(5663), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + }, + [STATE(3662)] = { + [sym_identifier] = ACTIONS(8901), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8903), + [anon_sym_COMMA] = ACTIONS(8903), + [anon_sym_RPAREN] = ACTIONS(8903), + [aux_sym_preproc_if_token2] = ACTIONS(8903), + [aux_sym_preproc_else_token1] = ACTIONS(8903), + [aux_sym_preproc_elif_token1] = ACTIONS(8901), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8903), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8903), + [anon_sym_LPAREN2] = ACTIONS(8903), + [anon_sym_DASH] = ACTIONS(8901), + [anon_sym_PLUS] = ACTIONS(8901), + [anon_sym_STAR] = ACTIONS(8901), + [anon_sym_SLASH] = ACTIONS(8901), + [anon_sym_PERCENT] = ACTIONS(8901), + [anon_sym_PIPE_PIPE] = ACTIONS(8903), + [anon_sym_AMP_AMP] = ACTIONS(8903), + [anon_sym_PIPE] = ACTIONS(8901), + [anon_sym_CARET] = ACTIONS(8901), + [anon_sym_AMP] = ACTIONS(8901), + [anon_sym_EQ_EQ] = ACTIONS(8903), + [anon_sym_BANG_EQ] = ACTIONS(8903), + [anon_sym_GT] = ACTIONS(8901), + [anon_sym_GT_EQ] = ACTIONS(8903), + [anon_sym_LT_EQ] = ACTIONS(8901), + [anon_sym_LT] = ACTIONS(8901), + [anon_sym_LT_LT] = ACTIONS(8901), + [anon_sym_GT_GT] = ACTIONS(8901), + [anon_sym_SEMI] = ACTIONS(8903), + [anon_sym___attribute__] = ACTIONS(8901), + [anon_sym___attribute] = ACTIONS(8901), + [anon_sym_COLON] = ACTIONS(8901), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8903), + [anon_sym_RBRACE] = ACTIONS(8903), + [anon_sym_LBRACK] = ACTIONS(8903), + [anon_sym_EQ] = ACTIONS(8901), + [anon_sym_QMARK] = ACTIONS(8903), + [anon_sym_STAR_EQ] = ACTIONS(8903), + [anon_sym_SLASH_EQ] = ACTIONS(8903), + [anon_sym_PERCENT_EQ] = ACTIONS(8903), + [anon_sym_PLUS_EQ] = ACTIONS(8903), + [anon_sym_DASH_EQ] = ACTIONS(8903), + [anon_sym_LT_LT_EQ] = ACTIONS(8903), + [anon_sym_GT_GT_EQ] = ACTIONS(8903), + [anon_sym_AMP_EQ] = ACTIONS(8903), + [anon_sym_CARET_EQ] = ACTIONS(8903), + [anon_sym_PIPE_EQ] = ACTIONS(8903), + [anon_sym_and_eq] = ACTIONS(8901), + [anon_sym_or_eq] = ACTIONS(8901), + [anon_sym_xor_eq] = ACTIONS(8901), + [anon_sym_LT_EQ_GT] = ACTIONS(8903), + [anon_sym_or] = ACTIONS(8901), + [anon_sym_and] = ACTIONS(8901), + [anon_sym_bitor] = ACTIONS(8901), + [anon_sym_xor] = ACTIONS(8901), + [anon_sym_bitand] = ACTIONS(8901), + [anon_sym_not_eq] = ACTIONS(8901), + [anon_sym_DASH_DASH] = ACTIONS(8903), + [anon_sym_PLUS_PLUS] = ACTIONS(8903), + [anon_sym_DOT] = ACTIONS(8901), + [anon_sym_DOT_STAR] = ACTIONS(8903), + [anon_sym_DASH_GT] = ACTIONS(8903), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8901), + [anon_sym_override] = ACTIONS(8901), + [anon_sym_requires] = ACTIONS(8901), + [anon_sym_COLON_RBRACK] = ACTIONS(8903), + }, + [STATE(3663)] = { + [sym_identifier] = ACTIONS(6594), + [anon_sym_LPAREN2] = ACTIONS(6601), + [anon_sym_TILDE] = ACTIONS(6601), + [anon_sym_STAR] = ACTIONS(6601), + [anon_sym_PIPE_PIPE] = ACTIONS(6601), + [anon_sym_AMP_AMP] = ACTIONS(6601), + [anon_sym_AMP] = ACTIONS(6594), + [anon_sym___extension__] = ACTIONS(6594), + [anon_sym_virtual] = ACTIONS(6594), + [anon_sym_extern] = ACTIONS(6594), + [anon_sym___attribute__] = ACTIONS(6594), + [anon_sym___attribute] = ACTIONS(6594), + [anon_sym_using] = ACTIONS(6594), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6601), + [anon_sym___declspec] = ACTIONS(6594), + [anon_sym___based] = ACTIONS(6594), + [anon_sym___cdecl] = ACTIONS(6594), + [anon_sym___clrcall] = ACTIONS(6594), + [anon_sym___stdcall] = ACTIONS(6594), + [anon_sym___fastcall] = ACTIONS(6594), + [anon_sym___thiscall] = ACTIONS(6594), + [anon_sym___vectorcall] = ACTIONS(6594), + [anon_sym_signed] = ACTIONS(6594), + [anon_sym_unsigned] = ACTIONS(6594), + [anon_sym_long] = ACTIONS(6594), + [anon_sym_short] = ACTIONS(6594), + [anon_sym_LBRACK] = ACTIONS(6594), + [anon_sym_static] = ACTIONS(6594), + [anon_sym_register] = ACTIONS(6594), + [anon_sym_inline] = ACTIONS(6594), + [anon_sym___inline] = ACTIONS(6594), + [anon_sym___inline__] = ACTIONS(6594), + [anon_sym___forceinline] = ACTIONS(6594), + [anon_sym_thread_local] = ACTIONS(6594), + [anon_sym___thread] = ACTIONS(6594), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6594), + [anon_sym_volatile] = ACTIONS(6594), + [anon_sym_restrict] = ACTIONS(6594), + [anon_sym___restrict__] = ACTIONS(6594), + [anon_sym__Atomic] = ACTIONS(6594), + [anon_sym__Noreturn] = ACTIONS(6594), + [anon_sym_noreturn] = ACTIONS(6594), + [anon_sym__Nonnull] = ACTIONS(6594), + [anon_sym_mutable] = ACTIONS(6594), + [anon_sym_constinit] = ACTIONS(6594), + [anon_sym_consteval] = ACTIONS(6594), + [anon_sym_alignas] = ACTIONS(6594), + [anon_sym__Alignas] = ACTIONS(6594), + [sym_primitive_type] = ACTIONS(6594), + [anon_sym_enum] = ACTIONS(6594), + [anon_sym_class] = ACTIONS(6594), + [anon_sym_struct] = ACTIONS(6594), + [anon_sym_union] = ACTIONS(6594), + [anon_sym_or] = ACTIONS(6594), + [anon_sym_and] = ACTIONS(6594), + [anon_sym_typename] = ACTIONS(6594), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6594), + [anon_sym_decltype] = ACTIONS(6594), + [anon_sym_explicit] = ACTIONS(6594), + [anon_sym_template] = ACTIONS(6594), + [anon_sym_operator] = ACTIONS(6594), + [anon_sym_friend] = ACTIONS(6594), + [anon_sym_concept] = ACTIONS(6594), + [anon_sym_LBRACK_COLON] = ACTIONS(6601), + }, + [STATE(3664)] = { + [sym_identifier] = ACTIONS(9407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9409), + [anon_sym_COMMA] = ACTIONS(9409), + [anon_sym_RPAREN] = ACTIONS(9409), + [aux_sym_preproc_if_token2] = ACTIONS(9409), + [aux_sym_preproc_else_token1] = ACTIONS(9409), + [aux_sym_preproc_elif_token1] = ACTIONS(9407), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9409), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9409), + [anon_sym_LPAREN2] = ACTIONS(9409), + [anon_sym_DASH] = ACTIONS(9407), + [anon_sym_PLUS] = ACTIONS(9407), + [anon_sym_STAR] = ACTIONS(9407), + [anon_sym_SLASH] = ACTIONS(9407), + [anon_sym_PERCENT] = ACTIONS(9407), + [anon_sym_PIPE_PIPE] = ACTIONS(9409), + [anon_sym_AMP_AMP] = ACTIONS(9409), + [anon_sym_PIPE] = ACTIONS(9407), + [anon_sym_CARET] = ACTIONS(9407), + [anon_sym_AMP] = ACTIONS(9407), + [anon_sym_EQ_EQ] = ACTIONS(9409), + [anon_sym_BANG_EQ] = ACTIONS(9409), + [anon_sym_GT] = ACTIONS(9407), + [anon_sym_GT_EQ] = ACTIONS(9409), + [anon_sym_LT_EQ] = ACTIONS(9407), + [anon_sym_LT] = ACTIONS(9407), + [anon_sym_LT_LT] = ACTIONS(9407), + [anon_sym_GT_GT] = ACTIONS(9407), + [anon_sym_SEMI] = ACTIONS(9409), + [anon_sym___attribute__] = ACTIONS(9407), + [anon_sym___attribute] = ACTIONS(9407), + [anon_sym_COLON] = ACTIONS(9407), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9409), + [anon_sym_RBRACE] = ACTIONS(9409), + [anon_sym_LBRACK] = ACTIONS(9409), + [anon_sym_EQ] = ACTIONS(9407), + [anon_sym_QMARK] = ACTIONS(9409), + [anon_sym_STAR_EQ] = ACTIONS(9409), + [anon_sym_SLASH_EQ] = ACTIONS(9409), + [anon_sym_PERCENT_EQ] = ACTIONS(9409), + [anon_sym_PLUS_EQ] = ACTIONS(9409), + [anon_sym_DASH_EQ] = ACTIONS(9409), + [anon_sym_LT_LT_EQ] = ACTIONS(9409), + [anon_sym_GT_GT_EQ] = ACTIONS(9409), + [anon_sym_AMP_EQ] = ACTIONS(9409), + [anon_sym_CARET_EQ] = ACTIONS(9409), + [anon_sym_PIPE_EQ] = ACTIONS(9409), + [anon_sym_and_eq] = ACTIONS(9407), + [anon_sym_or_eq] = ACTIONS(9407), + [anon_sym_xor_eq] = ACTIONS(9407), + [anon_sym_LT_EQ_GT] = ACTIONS(9409), + [anon_sym_or] = ACTIONS(9407), + [anon_sym_and] = ACTIONS(9407), + [anon_sym_bitor] = ACTIONS(9407), + [anon_sym_xor] = ACTIONS(9407), + [anon_sym_bitand] = ACTIONS(9407), + [anon_sym_not_eq] = ACTIONS(9407), + [anon_sym_DASH_DASH] = ACTIONS(9409), + [anon_sym_PLUS_PLUS] = ACTIONS(9409), + [anon_sym_DOT] = ACTIONS(9407), + [anon_sym_DOT_STAR] = ACTIONS(9409), + [anon_sym_DASH_GT] = ACTIONS(9409), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9407), + [anon_sym_override] = ACTIONS(9407), + [anon_sym_requires] = ACTIONS(9407), + [anon_sym_COLON_RBRACK] = ACTIONS(9409), + }, + [STATE(3665)] = { + [sym_attribute_specifier] = STATE(4059), + [sym_enumerator_list] = STATE(3842), + [sym__enum_base_clause] = STATE(3793), + [sym_identifier] = ACTIONS(8000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8002), + [anon_sym_COMMA] = ACTIONS(8002), + [aux_sym_preproc_if_token2] = ACTIONS(8002), + [aux_sym_preproc_else_token1] = ACTIONS(8002), + [aux_sym_preproc_elif_token1] = ACTIONS(8000), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8002), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8002), + [anon_sym_LPAREN2] = ACTIONS(8002), + [anon_sym_DASH] = ACTIONS(8000), + [anon_sym_PLUS] = ACTIONS(8000), + [anon_sym_STAR] = ACTIONS(8002), + [anon_sym_SLASH] = ACTIONS(8000), + [anon_sym_PERCENT] = ACTIONS(8002), + [anon_sym_PIPE_PIPE] = ACTIONS(8002), + [anon_sym_AMP_AMP] = ACTIONS(8002), + [anon_sym_PIPE] = ACTIONS(8000), + [anon_sym_CARET] = ACTIONS(8002), + [anon_sym_AMP] = ACTIONS(8000), + [anon_sym_EQ_EQ] = ACTIONS(8002), + [anon_sym_BANG_EQ] = ACTIONS(8002), + [anon_sym_GT] = ACTIONS(8000), + [anon_sym_GT_EQ] = ACTIONS(8002), + [anon_sym_LT_EQ] = ACTIONS(8000), + [anon_sym_LT] = ACTIONS(8000), + [anon_sym_LT_LT] = ACTIONS(8002), + [anon_sym_GT_GT] = ACTIONS(8002), + [anon_sym___extension__] = ACTIONS(8000), + [anon_sym___attribute__] = ACTIONS(9244), + [anon_sym___attribute] = ACTIONS(9244), + [anon_sym_COLON] = ACTIONS(9411), + [anon_sym_LBRACE] = ACTIONS(9413), + [anon_sym_LBRACK] = ACTIONS(8002), + [anon_sym_const] = ACTIONS(8000), + [anon_sym_constexpr] = ACTIONS(8000), + [anon_sym_volatile] = ACTIONS(8000), + [anon_sym_restrict] = ACTIONS(8000), + [anon_sym___restrict__] = ACTIONS(8000), + [anon_sym__Atomic] = ACTIONS(8000), + [anon_sym__Noreturn] = ACTIONS(8000), + [anon_sym_noreturn] = ACTIONS(8000), + [anon_sym__Nonnull] = ACTIONS(8000), + [anon_sym_mutable] = ACTIONS(8000), + [anon_sym_constinit] = ACTIONS(8000), + [anon_sym_consteval] = ACTIONS(8000), + [anon_sym_alignas] = ACTIONS(8000), + [anon_sym__Alignas] = ACTIONS(8000), + [anon_sym_QMARK] = ACTIONS(8002), + [anon_sym_LT_EQ_GT] = ACTIONS(8002), + [anon_sym_or] = ACTIONS(8000), + [anon_sym_and] = ACTIONS(8000), + [anon_sym_bitor] = ACTIONS(8000), + [anon_sym_xor] = ACTIONS(8000), + [anon_sym_bitand] = ACTIONS(8000), + [anon_sym_not_eq] = ACTIONS(8000), + [anon_sym_DASH_DASH] = ACTIONS(8002), + [anon_sym_PLUS_PLUS] = ACTIONS(8002), + [anon_sym_DOT] = ACTIONS(8000), + [anon_sym_DOT_STAR] = ACTIONS(8002), + [anon_sym_DASH_GT] = ACTIONS(8002), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8000), + [anon_sym_override] = ACTIONS(8000), + [anon_sym_requires] = ACTIONS(8000), + }, + [STATE(3666)] = { + [sym_attribute_specifier] = STATE(4095), + [sym_enumerator_list] = STATE(3927), + [sym__enum_base_clause] = STATE(3818), + [sym_identifier] = ACTIONS(8006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8008), + [anon_sym_COMMA] = ACTIONS(8008), + [aux_sym_preproc_if_token2] = ACTIONS(8008), + [aux_sym_preproc_else_token1] = ACTIONS(8008), + [aux_sym_preproc_elif_token1] = ACTIONS(8006), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8008), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8008), + [anon_sym_LPAREN2] = ACTIONS(8008), + [anon_sym_DASH] = ACTIONS(8006), + [anon_sym_PLUS] = ACTIONS(8006), + [anon_sym_STAR] = ACTIONS(8008), + [anon_sym_SLASH] = ACTIONS(8006), + [anon_sym_PERCENT] = ACTIONS(8008), + [anon_sym_PIPE_PIPE] = ACTIONS(8008), + [anon_sym_AMP_AMP] = ACTIONS(8008), + [anon_sym_PIPE] = ACTIONS(8006), + [anon_sym_CARET] = ACTIONS(8008), + [anon_sym_AMP] = ACTIONS(8006), + [anon_sym_EQ_EQ] = ACTIONS(8008), + [anon_sym_BANG_EQ] = ACTIONS(8008), + [anon_sym_GT] = ACTIONS(8006), + [anon_sym_GT_EQ] = ACTIONS(8008), + [anon_sym_LT_EQ] = ACTIONS(8006), + [anon_sym_LT] = ACTIONS(8006), + [anon_sym_LT_LT] = ACTIONS(8008), + [anon_sym_GT_GT] = ACTIONS(8008), + [anon_sym___extension__] = ACTIONS(8006), + [anon_sym___attribute__] = ACTIONS(9244), + [anon_sym___attribute] = ACTIONS(9244), + [anon_sym_COLON] = ACTIONS(9411), + [anon_sym_LBRACE] = ACTIONS(9413), + [anon_sym_LBRACK] = ACTIONS(8008), + [anon_sym_const] = ACTIONS(8006), + [anon_sym_constexpr] = ACTIONS(8006), + [anon_sym_volatile] = ACTIONS(8006), + [anon_sym_restrict] = ACTIONS(8006), + [anon_sym___restrict__] = ACTIONS(8006), + [anon_sym__Atomic] = ACTIONS(8006), + [anon_sym__Noreturn] = ACTIONS(8006), + [anon_sym_noreturn] = ACTIONS(8006), + [anon_sym__Nonnull] = ACTIONS(8006), + [anon_sym_mutable] = ACTIONS(8006), + [anon_sym_constinit] = ACTIONS(8006), + [anon_sym_consteval] = ACTIONS(8006), + [anon_sym_alignas] = ACTIONS(8006), + [anon_sym__Alignas] = ACTIONS(8006), + [anon_sym_QMARK] = ACTIONS(8008), + [anon_sym_LT_EQ_GT] = ACTIONS(8008), + [anon_sym_or] = ACTIONS(8006), + [anon_sym_and] = ACTIONS(8006), + [anon_sym_bitor] = ACTIONS(8006), + [anon_sym_xor] = ACTIONS(8006), + [anon_sym_bitand] = ACTIONS(8006), + [anon_sym_not_eq] = ACTIONS(8006), + [anon_sym_DASH_DASH] = ACTIONS(8008), + [anon_sym_PLUS_PLUS] = ACTIONS(8008), + [anon_sym_DOT] = ACTIONS(8006), + [anon_sym_DOT_STAR] = ACTIONS(8008), + [anon_sym_DASH_GT] = ACTIONS(8008), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8006), + [anon_sym_override] = ACTIONS(8006), + [anon_sym_requires] = ACTIONS(8006), + }, + [STATE(3667)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(8667), + [anon_sym_COMMA] = ACTIONS(8667), + [anon_sym_RPAREN] = ACTIONS(8667), + [anon_sym_LPAREN2] = ACTIONS(8667), + [anon_sym_DASH] = ACTIONS(8665), + [anon_sym_PLUS] = ACTIONS(8665), + [anon_sym_STAR] = ACTIONS(8665), + [anon_sym_SLASH] = ACTIONS(8665), + [anon_sym_PERCENT] = ACTIONS(8665), + [anon_sym_PIPE_PIPE] = ACTIONS(8667), + [anon_sym_AMP_AMP] = ACTIONS(8667), + [anon_sym_PIPE] = ACTIONS(8665), + [anon_sym_CARET] = ACTIONS(8665), + [anon_sym_AMP] = ACTIONS(8665), + [anon_sym_EQ_EQ] = ACTIONS(8667), + [anon_sym_BANG_EQ] = ACTIONS(8667), + [anon_sym_GT] = ACTIONS(8665), + [anon_sym_GT_EQ] = ACTIONS(8667), + [anon_sym_LT_EQ] = ACTIONS(8665), + [anon_sym_LT] = ACTIONS(8665), + [anon_sym_LT_LT] = ACTIONS(8665), + [anon_sym_GT_GT] = ACTIONS(8665), + [anon_sym_SEMI] = ACTIONS(8667), + [anon_sym_COLON] = ACTIONS(8665), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8667), + [anon_sym_RBRACE] = ACTIONS(8667), + [anon_sym_LBRACK] = ACTIONS(8667), + [anon_sym_EQ] = ACTIONS(8665), + [anon_sym_QMARK] = ACTIONS(8667), + [anon_sym_STAR_EQ] = ACTIONS(8667), + [anon_sym_SLASH_EQ] = ACTIONS(8667), + [anon_sym_PERCENT_EQ] = ACTIONS(8667), + [anon_sym_PLUS_EQ] = ACTIONS(8667), + [anon_sym_DASH_EQ] = ACTIONS(8667), + [anon_sym_LT_LT_EQ] = ACTIONS(8667), + [anon_sym_GT_GT_EQ] = ACTIONS(8667), + [anon_sym_AMP_EQ] = ACTIONS(8667), + [anon_sym_CARET_EQ] = ACTIONS(8667), + [anon_sym_PIPE_EQ] = ACTIONS(8667), + [anon_sym_and_eq] = ACTIONS(8665), + [anon_sym_or_eq] = ACTIONS(8665), + [anon_sym_xor_eq] = ACTIONS(8665), + [anon_sym_LT_EQ_GT] = ACTIONS(8667), + [anon_sym_or] = ACTIONS(8665), + [anon_sym_and] = ACTIONS(8665), + [anon_sym_bitor] = ACTIONS(8665), + [anon_sym_xor] = ACTIONS(8665), + [anon_sym_bitand] = ACTIONS(8665), + [anon_sym_not_eq] = ACTIONS(8665), + [anon_sym_DASH_DASH] = ACTIONS(8667), + [anon_sym_PLUS_PLUS] = ACTIONS(8667), + [anon_sym_DOT] = ACTIONS(8665), + [anon_sym_DOT_STAR] = ACTIONS(8667), + [anon_sym_DASH_GT] = ACTIONS(8667), + [anon_sym_L_DQUOTE] = ACTIONS(8667), + [anon_sym_u_DQUOTE] = ACTIONS(8667), + [anon_sym_U_DQUOTE] = ACTIONS(8667), + [anon_sym_u8_DQUOTE] = ACTIONS(8667), + [anon_sym_DQUOTE] = ACTIONS(8667), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8667), + [anon_sym_LR_DQUOTE] = ACTIONS(8667), + [anon_sym_uR_DQUOTE] = ACTIONS(8667), + [anon_sym_UR_DQUOTE] = ACTIONS(8667), + [anon_sym_u8R_DQUOTE] = ACTIONS(8667), + [anon_sym_COLON_RBRACK] = ACTIONS(8667), + [sym_literal_suffix] = ACTIONS(8665), + }, + [STATE(3668)] = { + [sym_identifier] = ACTIONS(5589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5591), + [anon_sym_COMMA] = ACTIONS(5591), + [anon_sym_RPAREN] = ACTIONS(5591), + [anon_sym_LPAREN2] = ACTIONS(5591), + [anon_sym_TILDE] = ACTIONS(5591), + [anon_sym_STAR] = ACTIONS(5591), + [anon_sym_AMP_AMP] = ACTIONS(5591), + [anon_sym_AMP] = ACTIONS(5589), + [anon_sym_SEMI] = ACTIONS(5591), + [anon_sym___extension__] = ACTIONS(5589), + [anon_sym_virtual] = ACTIONS(5589), + [anon_sym_extern] = ACTIONS(5589), + [anon_sym___attribute__] = ACTIONS(5589), + [anon_sym___attribute] = ACTIONS(5589), + [anon_sym_COLON] = ACTIONS(5589), + [anon_sym_COLON_COLON] = ACTIONS(5591), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5591), + [anon_sym___declspec] = ACTIONS(5589), + [anon_sym___based] = ACTIONS(5589), + [anon_sym___cdecl] = ACTIONS(5589), + [anon_sym___clrcall] = ACTIONS(5589), + [anon_sym___stdcall] = ACTIONS(5589), + [anon_sym___fastcall] = ACTIONS(5589), + [anon_sym___thiscall] = ACTIONS(5589), + [anon_sym___vectorcall] = ACTIONS(5589), + [anon_sym_LBRACE] = ACTIONS(5591), + [anon_sym_LBRACK] = ACTIONS(5589), + [anon_sym_static] = ACTIONS(5589), + [anon_sym_EQ] = ACTIONS(5591), + [anon_sym_register] = ACTIONS(5589), + [anon_sym_inline] = ACTIONS(5589), + [anon_sym___inline] = ACTIONS(5589), + [anon_sym___inline__] = ACTIONS(5589), + [anon_sym___forceinline] = ACTIONS(5589), + [anon_sym_thread_local] = ACTIONS(5589), + [anon_sym___thread] = ACTIONS(5589), + [anon_sym_const] = ACTIONS(5589), + [anon_sym_constexpr] = ACTIONS(5589), + [anon_sym_volatile] = ACTIONS(5589), + [anon_sym_restrict] = ACTIONS(5589), + [anon_sym___restrict__] = ACTIONS(5589), + [anon_sym__Atomic] = ACTIONS(5589), + [anon_sym__Noreturn] = ACTIONS(5589), + [anon_sym_noreturn] = ACTIONS(5589), + [anon_sym__Nonnull] = ACTIONS(5589), + [anon_sym_mutable] = ACTIONS(5589), + [anon_sym_constinit] = ACTIONS(5589), + [anon_sym_consteval] = ACTIONS(5589), + [anon_sym_alignas] = ACTIONS(5589), + [anon_sym__Alignas] = ACTIONS(5589), + [anon_sym_DASH_GT] = ACTIONS(5591), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5589), + [anon_sym_final] = ACTIONS(5589), + [anon_sym_override] = ACTIONS(5589), + [anon_sym_explicit] = ACTIONS(5589), + [anon_sym_private] = ACTIONS(5589), + [anon_sym_template] = ACTIONS(5589), + [anon_sym_GT2] = ACTIONS(5591), + [anon_sym_operator] = ACTIONS(5589), + [anon_sym_public] = ACTIONS(5589), + [anon_sym_protected] = ACTIONS(5589), + [anon_sym_noexcept] = ACTIONS(5589), + [anon_sym_throw] = ACTIONS(5589), + [anon_sym_requires] = ACTIONS(5589), + [anon_sym_LBRACK_COLON] = ACTIONS(5591), + }, + [STATE(3669)] = { + [sym_identifier] = ACTIONS(9415), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9417), + [anon_sym_COMMA] = ACTIONS(9417), + [anon_sym_RPAREN] = ACTIONS(9417), + [aux_sym_preproc_if_token2] = ACTIONS(9417), + [aux_sym_preproc_else_token1] = ACTIONS(9417), + [aux_sym_preproc_elif_token1] = ACTIONS(9415), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9417), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9417), + [anon_sym_LPAREN2] = ACTIONS(9417), + [anon_sym_DASH] = ACTIONS(9415), + [anon_sym_PLUS] = ACTIONS(9415), + [anon_sym_STAR] = ACTIONS(9415), + [anon_sym_SLASH] = ACTIONS(9415), + [anon_sym_PERCENT] = ACTIONS(9415), + [anon_sym_PIPE_PIPE] = ACTIONS(9417), + [anon_sym_AMP_AMP] = ACTIONS(9417), + [anon_sym_PIPE] = ACTIONS(9415), + [anon_sym_CARET] = ACTIONS(9415), + [anon_sym_AMP] = ACTIONS(9415), + [anon_sym_EQ_EQ] = ACTIONS(9417), + [anon_sym_BANG_EQ] = ACTIONS(9417), + [anon_sym_GT] = ACTIONS(9415), + [anon_sym_GT_EQ] = ACTIONS(9417), + [anon_sym_LT_EQ] = ACTIONS(9415), + [anon_sym_LT] = ACTIONS(9415), + [anon_sym_LT_LT] = ACTIONS(9415), + [anon_sym_GT_GT] = ACTIONS(9415), + [anon_sym_SEMI] = ACTIONS(9417), + [anon_sym___attribute__] = ACTIONS(9415), + [anon_sym___attribute] = ACTIONS(9415), + [anon_sym_COLON] = ACTIONS(9415), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9417), + [anon_sym_RBRACE] = ACTIONS(9417), + [anon_sym_LBRACK] = ACTIONS(9417), + [anon_sym_EQ] = ACTIONS(9415), + [anon_sym_QMARK] = ACTIONS(9417), + [anon_sym_STAR_EQ] = ACTIONS(9417), + [anon_sym_SLASH_EQ] = ACTIONS(9417), + [anon_sym_PERCENT_EQ] = ACTIONS(9417), + [anon_sym_PLUS_EQ] = ACTIONS(9417), + [anon_sym_DASH_EQ] = ACTIONS(9417), + [anon_sym_LT_LT_EQ] = ACTIONS(9417), + [anon_sym_GT_GT_EQ] = ACTIONS(9417), + [anon_sym_AMP_EQ] = ACTIONS(9417), + [anon_sym_CARET_EQ] = ACTIONS(9417), + [anon_sym_PIPE_EQ] = ACTIONS(9417), + [anon_sym_and_eq] = ACTIONS(9415), + [anon_sym_or_eq] = ACTIONS(9415), + [anon_sym_xor_eq] = ACTIONS(9415), + [anon_sym_LT_EQ_GT] = ACTIONS(9417), + [anon_sym_or] = ACTIONS(9415), + [anon_sym_and] = ACTIONS(9415), + [anon_sym_bitor] = ACTIONS(9415), + [anon_sym_xor] = ACTIONS(9415), + [anon_sym_bitand] = ACTIONS(9415), + [anon_sym_not_eq] = ACTIONS(9415), + [anon_sym_DASH_DASH] = ACTIONS(9417), + [anon_sym_PLUS_PLUS] = ACTIONS(9417), + [anon_sym_DOT] = ACTIONS(9415), + [anon_sym_DOT_STAR] = ACTIONS(9417), + [anon_sym_DASH_GT] = ACTIONS(9417), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9415), + [anon_sym_override] = ACTIONS(9415), + [anon_sym_requires] = ACTIONS(9415), + [anon_sym_COLON_RBRACK] = ACTIONS(9417), + }, + [STATE(3670)] = { + [sym_identifier] = ACTIONS(8921), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8923), + [anon_sym_COMMA] = ACTIONS(8923), + [anon_sym_RPAREN] = ACTIONS(8923), + [aux_sym_preproc_if_token2] = ACTIONS(8923), + [aux_sym_preproc_else_token1] = ACTIONS(8923), + [aux_sym_preproc_elif_token1] = ACTIONS(8921), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8923), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8923), + [anon_sym_LPAREN2] = ACTIONS(8923), + [anon_sym_DASH] = ACTIONS(8921), + [anon_sym_PLUS] = ACTIONS(8921), + [anon_sym_STAR] = ACTIONS(8921), + [anon_sym_SLASH] = ACTIONS(8921), + [anon_sym_PERCENT] = ACTIONS(8921), + [anon_sym_PIPE_PIPE] = ACTIONS(8923), + [anon_sym_AMP_AMP] = ACTIONS(8923), + [anon_sym_PIPE] = ACTIONS(8921), + [anon_sym_CARET] = ACTIONS(8921), + [anon_sym_AMP] = ACTIONS(8921), + [anon_sym_EQ_EQ] = ACTIONS(8923), + [anon_sym_BANG_EQ] = ACTIONS(8923), + [anon_sym_GT] = ACTIONS(8921), + [anon_sym_GT_EQ] = ACTIONS(8923), + [anon_sym_LT_EQ] = ACTIONS(8921), + [anon_sym_LT] = ACTIONS(8921), + [anon_sym_LT_LT] = ACTIONS(8921), + [anon_sym_GT_GT] = ACTIONS(8921), + [anon_sym_SEMI] = ACTIONS(8923), + [anon_sym___attribute__] = ACTIONS(8921), + [anon_sym___attribute] = ACTIONS(8921), + [anon_sym_COLON] = ACTIONS(8921), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8923), + [anon_sym_RBRACE] = ACTIONS(8923), + [anon_sym_LBRACK] = ACTIONS(8923), + [anon_sym_EQ] = ACTIONS(8921), + [anon_sym_QMARK] = ACTIONS(8923), + [anon_sym_STAR_EQ] = ACTIONS(8923), + [anon_sym_SLASH_EQ] = ACTIONS(8923), + [anon_sym_PERCENT_EQ] = ACTIONS(8923), + [anon_sym_PLUS_EQ] = ACTIONS(8923), + [anon_sym_DASH_EQ] = ACTIONS(8923), + [anon_sym_LT_LT_EQ] = ACTIONS(8923), + [anon_sym_GT_GT_EQ] = ACTIONS(8923), + [anon_sym_AMP_EQ] = ACTIONS(8923), + [anon_sym_CARET_EQ] = ACTIONS(8923), + [anon_sym_PIPE_EQ] = ACTIONS(8923), + [anon_sym_and_eq] = ACTIONS(8921), + [anon_sym_or_eq] = ACTIONS(8921), + [anon_sym_xor_eq] = ACTIONS(8921), + [anon_sym_LT_EQ_GT] = ACTIONS(8923), + [anon_sym_or] = ACTIONS(8921), + [anon_sym_and] = ACTIONS(8921), + [anon_sym_bitor] = ACTIONS(8921), + [anon_sym_xor] = ACTIONS(8921), + [anon_sym_bitand] = ACTIONS(8921), + [anon_sym_not_eq] = ACTIONS(8921), + [anon_sym_DASH_DASH] = ACTIONS(8923), + [anon_sym_PLUS_PLUS] = ACTIONS(8923), + [anon_sym_DOT] = ACTIONS(8921), + [anon_sym_DOT_STAR] = ACTIONS(8923), + [anon_sym_DASH_GT] = ACTIONS(8923), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8921), + [anon_sym_override] = ACTIONS(8921), + [anon_sym_requires] = ACTIONS(8921), + [anon_sym_COLON_RBRACK] = ACTIONS(8923), + }, + [STATE(3671)] = { + [sym_identifier] = ACTIONS(9419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9421), + [anon_sym_COMMA] = ACTIONS(9421), + [anon_sym_RPAREN] = ACTIONS(9421), + [aux_sym_preproc_if_token2] = ACTIONS(9421), + [aux_sym_preproc_else_token1] = ACTIONS(9421), + [aux_sym_preproc_elif_token1] = ACTIONS(9419), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9421), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9421), + [anon_sym_LPAREN2] = ACTIONS(9421), + [anon_sym_DASH] = ACTIONS(9419), + [anon_sym_PLUS] = ACTIONS(9419), + [anon_sym_STAR] = ACTIONS(9419), + [anon_sym_SLASH] = ACTIONS(9419), + [anon_sym_PERCENT] = ACTIONS(9419), + [anon_sym_PIPE_PIPE] = ACTIONS(9421), + [anon_sym_AMP_AMP] = ACTIONS(9421), + [anon_sym_PIPE] = ACTIONS(9419), + [anon_sym_CARET] = ACTIONS(9419), + [anon_sym_AMP] = ACTIONS(9419), + [anon_sym_EQ_EQ] = ACTIONS(9421), + [anon_sym_BANG_EQ] = ACTIONS(9421), + [anon_sym_GT] = ACTIONS(9419), + [anon_sym_GT_EQ] = ACTIONS(9421), + [anon_sym_LT_EQ] = ACTIONS(9419), + [anon_sym_LT] = ACTIONS(9419), + [anon_sym_LT_LT] = ACTIONS(9419), + [anon_sym_GT_GT] = ACTIONS(9419), + [anon_sym_SEMI] = ACTIONS(9421), + [anon_sym___attribute__] = ACTIONS(9419), + [anon_sym___attribute] = ACTIONS(9419), + [anon_sym_COLON] = ACTIONS(9419), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9421), + [anon_sym_RBRACE] = ACTIONS(9421), + [anon_sym_LBRACK] = ACTIONS(9421), + [anon_sym_EQ] = ACTIONS(9419), + [anon_sym_QMARK] = ACTIONS(9421), + [anon_sym_STAR_EQ] = ACTIONS(9421), + [anon_sym_SLASH_EQ] = ACTIONS(9421), + [anon_sym_PERCENT_EQ] = ACTIONS(9421), + [anon_sym_PLUS_EQ] = ACTIONS(9421), + [anon_sym_DASH_EQ] = ACTIONS(9421), + [anon_sym_LT_LT_EQ] = ACTIONS(9421), + [anon_sym_GT_GT_EQ] = ACTIONS(9421), + [anon_sym_AMP_EQ] = ACTIONS(9421), + [anon_sym_CARET_EQ] = ACTIONS(9421), + [anon_sym_PIPE_EQ] = ACTIONS(9421), + [anon_sym_and_eq] = ACTIONS(9419), + [anon_sym_or_eq] = ACTIONS(9419), + [anon_sym_xor_eq] = ACTIONS(9419), + [anon_sym_LT_EQ_GT] = ACTIONS(9421), + [anon_sym_or] = ACTIONS(9419), + [anon_sym_and] = ACTIONS(9419), + [anon_sym_bitor] = ACTIONS(9419), + [anon_sym_xor] = ACTIONS(9419), + [anon_sym_bitand] = ACTIONS(9419), + [anon_sym_not_eq] = ACTIONS(9419), + [anon_sym_DASH_DASH] = ACTIONS(9421), + [anon_sym_PLUS_PLUS] = ACTIONS(9421), + [anon_sym_DOT] = ACTIONS(9419), + [anon_sym_DOT_STAR] = ACTIONS(9421), + [anon_sym_DASH_GT] = ACTIONS(9421), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9419), + [anon_sym_override] = ACTIONS(9419), + [anon_sym_requires] = ACTIONS(9419), + [anon_sym_COLON_RBRACK] = ACTIONS(9421), + }, + [STATE(3672)] = { + [sym_identifier] = ACTIONS(8946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8948), + [anon_sym_COMMA] = ACTIONS(8948), + [anon_sym_RPAREN] = ACTIONS(8948), + [aux_sym_preproc_if_token2] = ACTIONS(8948), + [aux_sym_preproc_else_token1] = ACTIONS(8948), + [aux_sym_preproc_elif_token1] = ACTIONS(8946), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8948), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8948), + [anon_sym_LPAREN2] = ACTIONS(8948), + [anon_sym_DASH] = ACTIONS(8946), + [anon_sym_PLUS] = ACTIONS(8946), + [anon_sym_STAR] = ACTIONS(8946), + [anon_sym_SLASH] = ACTIONS(8946), + [anon_sym_PERCENT] = ACTIONS(8946), + [anon_sym_PIPE_PIPE] = ACTIONS(8948), + [anon_sym_AMP_AMP] = ACTIONS(8948), + [anon_sym_PIPE] = ACTIONS(8946), + [anon_sym_CARET] = ACTIONS(8946), + [anon_sym_AMP] = ACTIONS(8946), + [anon_sym_EQ_EQ] = ACTIONS(8948), + [anon_sym_BANG_EQ] = ACTIONS(8948), + [anon_sym_GT] = ACTIONS(8946), + [anon_sym_GT_EQ] = ACTIONS(8948), + [anon_sym_LT_EQ] = ACTIONS(8946), + [anon_sym_LT] = ACTIONS(8946), + [anon_sym_LT_LT] = ACTIONS(8946), + [anon_sym_GT_GT] = ACTIONS(8946), + [anon_sym_SEMI] = ACTIONS(8948), + [anon_sym___attribute__] = ACTIONS(8946), + [anon_sym___attribute] = ACTIONS(8946), + [anon_sym_COLON] = ACTIONS(8946), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8948), + [anon_sym_RBRACE] = ACTIONS(8948), + [anon_sym_LBRACK] = ACTIONS(8948), + [anon_sym_EQ] = ACTIONS(8946), + [anon_sym_QMARK] = ACTIONS(8948), + [anon_sym_STAR_EQ] = ACTIONS(8948), + [anon_sym_SLASH_EQ] = ACTIONS(8948), + [anon_sym_PERCENT_EQ] = ACTIONS(8948), + [anon_sym_PLUS_EQ] = ACTIONS(8948), + [anon_sym_DASH_EQ] = ACTIONS(8948), + [anon_sym_LT_LT_EQ] = ACTIONS(8948), + [anon_sym_GT_GT_EQ] = ACTIONS(8948), + [anon_sym_AMP_EQ] = ACTIONS(8948), + [anon_sym_CARET_EQ] = ACTIONS(8948), + [anon_sym_PIPE_EQ] = ACTIONS(8948), + [anon_sym_and_eq] = ACTIONS(8946), + [anon_sym_or_eq] = ACTIONS(8946), + [anon_sym_xor_eq] = ACTIONS(8946), + [anon_sym_LT_EQ_GT] = ACTIONS(8948), + [anon_sym_or] = ACTIONS(8946), + [anon_sym_and] = ACTIONS(8946), + [anon_sym_bitor] = ACTIONS(8946), + [anon_sym_xor] = ACTIONS(8946), + [anon_sym_bitand] = ACTIONS(8946), + [anon_sym_not_eq] = ACTIONS(8946), + [anon_sym_DASH_DASH] = ACTIONS(8948), + [anon_sym_PLUS_PLUS] = ACTIONS(8948), + [anon_sym_DOT] = ACTIONS(8946), + [anon_sym_DOT_STAR] = ACTIONS(8948), + [anon_sym_DASH_GT] = ACTIONS(8948), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8946), + [anon_sym_override] = ACTIONS(8946), + [anon_sym_requires] = ACTIONS(8946), + [anon_sym_COLON_RBRACK] = ACTIONS(8948), + }, + [STATE(3673)] = { + [sym_identifier] = ACTIONS(9423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9425), + [anon_sym_COMMA] = ACTIONS(9425), + [anon_sym_RPAREN] = ACTIONS(9425), + [aux_sym_preproc_if_token2] = ACTIONS(9425), + [aux_sym_preproc_else_token1] = ACTIONS(9425), + [aux_sym_preproc_elif_token1] = ACTIONS(9423), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9425), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9425), + [anon_sym_LPAREN2] = ACTIONS(9425), + [anon_sym_DASH] = ACTIONS(9423), + [anon_sym_PLUS] = ACTIONS(9423), + [anon_sym_STAR] = ACTIONS(9423), + [anon_sym_SLASH] = ACTIONS(9423), + [anon_sym_PERCENT] = ACTIONS(9423), + [anon_sym_PIPE_PIPE] = ACTIONS(9425), + [anon_sym_AMP_AMP] = ACTIONS(9425), + [anon_sym_PIPE] = ACTIONS(9423), + [anon_sym_CARET] = ACTIONS(9423), + [anon_sym_AMP] = ACTIONS(9423), + [anon_sym_EQ_EQ] = ACTIONS(9425), + [anon_sym_BANG_EQ] = ACTIONS(9425), + [anon_sym_GT] = ACTIONS(9423), + [anon_sym_GT_EQ] = ACTIONS(9425), + [anon_sym_LT_EQ] = ACTIONS(9423), + [anon_sym_LT] = ACTIONS(9423), + [anon_sym_LT_LT] = ACTIONS(9423), + [anon_sym_GT_GT] = ACTIONS(9423), + [anon_sym_SEMI] = ACTIONS(9425), + [anon_sym___attribute__] = ACTIONS(9423), + [anon_sym___attribute] = ACTIONS(9423), + [anon_sym_COLON] = ACTIONS(9423), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9425), + [anon_sym_RBRACE] = ACTIONS(9425), + [anon_sym_LBRACK] = ACTIONS(9425), + [anon_sym_EQ] = ACTIONS(9423), + [anon_sym_QMARK] = ACTIONS(9425), + [anon_sym_STAR_EQ] = ACTIONS(9425), + [anon_sym_SLASH_EQ] = ACTIONS(9425), + [anon_sym_PERCENT_EQ] = ACTIONS(9425), + [anon_sym_PLUS_EQ] = ACTIONS(9425), + [anon_sym_DASH_EQ] = ACTIONS(9425), + [anon_sym_LT_LT_EQ] = ACTIONS(9425), + [anon_sym_GT_GT_EQ] = ACTIONS(9425), + [anon_sym_AMP_EQ] = ACTIONS(9425), + [anon_sym_CARET_EQ] = ACTIONS(9425), + [anon_sym_PIPE_EQ] = ACTIONS(9425), + [anon_sym_and_eq] = ACTIONS(9423), + [anon_sym_or_eq] = ACTIONS(9423), + [anon_sym_xor_eq] = ACTIONS(9423), + [anon_sym_LT_EQ_GT] = ACTIONS(9425), + [anon_sym_or] = ACTIONS(9423), + [anon_sym_and] = ACTIONS(9423), + [anon_sym_bitor] = ACTIONS(9423), + [anon_sym_xor] = ACTIONS(9423), + [anon_sym_bitand] = ACTIONS(9423), + [anon_sym_not_eq] = ACTIONS(9423), + [anon_sym_DASH_DASH] = ACTIONS(9425), + [anon_sym_PLUS_PLUS] = ACTIONS(9425), + [anon_sym_DOT] = ACTIONS(9423), + [anon_sym_DOT_STAR] = ACTIONS(9425), + [anon_sym_DASH_GT] = ACTIONS(9425), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9423), + [anon_sym_override] = ACTIONS(9423), + [anon_sym_requires] = ACTIONS(9423), + [anon_sym_COLON_RBRACK] = ACTIONS(9425), + }, + [STATE(3674)] = { + [sym__abstract_declarator] = STATE(4163), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_parameter_list] = STATE(1953), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9427), + [anon_sym_COMMA] = ACTIONS(9427), + [anon_sym_RPAREN] = ACTIONS(9427), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(9429), + [anon_sym_PLUS] = ACTIONS(9429), + [anon_sym_STAR] = ACTIONS(6843), + [anon_sym_SLASH] = ACTIONS(9429), + [anon_sym_PERCENT] = ACTIONS(9429), + [anon_sym_PIPE_PIPE] = ACTIONS(9427), + [anon_sym_AMP_AMP] = ACTIONS(6845), + [anon_sym_PIPE] = ACTIONS(9429), + [anon_sym_CARET] = ACTIONS(9429), + [anon_sym_AMP] = ACTIONS(6847), + [anon_sym_EQ_EQ] = ACTIONS(9427), + [anon_sym_BANG_EQ] = ACTIONS(9427), + [anon_sym_GT] = ACTIONS(9429), + [anon_sym_GT_EQ] = ACTIONS(9427), + [anon_sym_LT_EQ] = ACTIONS(9429), + [anon_sym_LT] = ACTIONS(9429), + [anon_sym_LT_LT] = ACTIONS(9429), + [anon_sym_GT_GT] = ACTIONS(9429), + [anon_sym_SEMI] = ACTIONS(9427), + [anon_sym_COLON] = ACTIONS(9429), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9427), + [anon_sym_RBRACE] = ACTIONS(9427), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(9429), + [anon_sym_QMARK] = ACTIONS(9427), + [anon_sym_STAR_EQ] = ACTIONS(9427), + [anon_sym_SLASH_EQ] = ACTIONS(9427), + [anon_sym_PERCENT_EQ] = ACTIONS(9427), + [anon_sym_PLUS_EQ] = ACTIONS(9427), + [anon_sym_DASH_EQ] = ACTIONS(9427), + [anon_sym_LT_LT_EQ] = ACTIONS(9427), + [anon_sym_GT_GT_EQ] = ACTIONS(9427), + [anon_sym_AMP_EQ] = ACTIONS(9427), + [anon_sym_CARET_EQ] = ACTIONS(9427), + [anon_sym_PIPE_EQ] = ACTIONS(9427), + [anon_sym_and_eq] = ACTIONS(9427), + [anon_sym_or_eq] = ACTIONS(9427), + [anon_sym_xor_eq] = ACTIONS(9427), + [anon_sym_LT_EQ_GT] = ACTIONS(9427), + [anon_sym_or] = ACTIONS(9429), + [anon_sym_and] = ACTIONS(9429), + [anon_sym_bitor] = ACTIONS(9427), + [anon_sym_xor] = ACTIONS(9429), + [anon_sym_bitand] = ACTIONS(9427), + [anon_sym_not_eq] = ACTIONS(9427), + [anon_sym_DASH_DASH] = ACTIONS(9427), + [anon_sym_PLUS_PLUS] = ACTIONS(9427), + [anon_sym_DOT] = ACTIONS(9429), + [anon_sym_DOT_STAR] = ACTIONS(9427), + [anon_sym_DASH_GT] = ACTIONS(9427), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9427), + [anon_sym_override] = ACTIONS(9427), + [anon_sym_requires] = ACTIONS(9427), + [anon_sym_COLON_RBRACK] = ACTIONS(9427), + }, + [STATE(3675)] = { + [sym_identifier] = ACTIONS(8905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8907), + [anon_sym_COMMA] = ACTIONS(8907), + [anon_sym_RPAREN] = ACTIONS(8907), + [aux_sym_preproc_if_token2] = ACTIONS(8907), + [aux_sym_preproc_else_token1] = ACTIONS(8907), + [aux_sym_preproc_elif_token1] = ACTIONS(8905), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8907), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8907), + [anon_sym_LPAREN2] = ACTIONS(8907), + [anon_sym_DASH] = ACTIONS(8905), + [anon_sym_PLUS] = ACTIONS(8905), + [anon_sym_STAR] = ACTIONS(8905), + [anon_sym_SLASH] = ACTIONS(8905), + [anon_sym_PERCENT] = ACTIONS(8905), + [anon_sym_PIPE_PIPE] = ACTIONS(8907), + [anon_sym_AMP_AMP] = ACTIONS(8907), + [anon_sym_PIPE] = ACTIONS(8905), + [anon_sym_CARET] = ACTIONS(8905), + [anon_sym_AMP] = ACTIONS(8905), + [anon_sym_EQ_EQ] = ACTIONS(8907), + [anon_sym_BANG_EQ] = ACTIONS(8907), + [anon_sym_GT] = ACTIONS(8905), + [anon_sym_GT_EQ] = ACTIONS(8907), + [anon_sym_LT_EQ] = ACTIONS(8905), + [anon_sym_LT] = ACTIONS(8905), + [anon_sym_LT_LT] = ACTIONS(8905), + [anon_sym_GT_GT] = ACTIONS(8905), + [anon_sym_SEMI] = ACTIONS(8907), + [anon_sym___attribute__] = ACTIONS(8905), + [anon_sym___attribute] = ACTIONS(8905), + [anon_sym_COLON] = ACTIONS(8905), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8907), + [anon_sym_RBRACE] = ACTIONS(8907), + [anon_sym_LBRACK] = ACTIONS(8907), + [anon_sym_EQ] = ACTIONS(8905), + [anon_sym_QMARK] = ACTIONS(8907), + [anon_sym_STAR_EQ] = ACTIONS(8907), + [anon_sym_SLASH_EQ] = ACTIONS(8907), + [anon_sym_PERCENT_EQ] = ACTIONS(8907), + [anon_sym_PLUS_EQ] = ACTIONS(8907), + [anon_sym_DASH_EQ] = ACTIONS(8907), + [anon_sym_LT_LT_EQ] = ACTIONS(8907), + [anon_sym_GT_GT_EQ] = ACTIONS(8907), + [anon_sym_AMP_EQ] = ACTIONS(8907), + [anon_sym_CARET_EQ] = ACTIONS(8907), + [anon_sym_PIPE_EQ] = ACTIONS(8907), + [anon_sym_and_eq] = ACTIONS(8905), + [anon_sym_or_eq] = ACTIONS(8905), + [anon_sym_xor_eq] = ACTIONS(8905), + [anon_sym_LT_EQ_GT] = ACTIONS(8907), + [anon_sym_or] = ACTIONS(8905), + [anon_sym_and] = ACTIONS(8905), + [anon_sym_bitor] = ACTIONS(8905), + [anon_sym_xor] = ACTIONS(8905), + [anon_sym_bitand] = ACTIONS(8905), + [anon_sym_not_eq] = ACTIONS(8905), + [anon_sym_DASH_DASH] = ACTIONS(8907), + [anon_sym_PLUS_PLUS] = ACTIONS(8907), + [anon_sym_DOT] = ACTIONS(8905), + [anon_sym_DOT_STAR] = ACTIONS(8907), + [anon_sym_DASH_GT] = ACTIONS(8907), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8905), + [anon_sym_override] = ACTIONS(8905), + [anon_sym_requires] = ACTIONS(8905), + [anon_sym_COLON_RBRACK] = ACTIONS(8907), + }, + [STATE(3676)] = { + [sym_identifier] = ACTIONS(7459), + [anon_sym_LPAREN2] = ACTIONS(7457), + [anon_sym_TILDE] = ACTIONS(7457), + [anon_sym_STAR] = ACTIONS(7457), + [anon_sym_PIPE_PIPE] = ACTIONS(7457), + [anon_sym_AMP_AMP] = ACTIONS(7457), + [anon_sym_AMP] = ACTIONS(7459), + [anon_sym___extension__] = ACTIONS(7459), + [anon_sym_virtual] = ACTIONS(7459), + [anon_sym_extern] = ACTIONS(7459), + [anon_sym___attribute__] = ACTIONS(7459), + [anon_sym___attribute] = ACTIONS(7459), + [anon_sym_using] = ACTIONS(7459), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7457), + [anon_sym___declspec] = ACTIONS(7459), + [anon_sym___based] = ACTIONS(7459), + [anon_sym___cdecl] = ACTIONS(7459), + [anon_sym___clrcall] = ACTIONS(7459), + [anon_sym___stdcall] = ACTIONS(7459), + [anon_sym___fastcall] = ACTIONS(7459), + [anon_sym___thiscall] = ACTIONS(7459), + [anon_sym___vectorcall] = ACTIONS(7459), + [anon_sym_signed] = ACTIONS(7459), + [anon_sym_unsigned] = ACTIONS(7459), + [anon_sym_long] = ACTIONS(7459), + [anon_sym_short] = ACTIONS(7459), + [anon_sym_LBRACK] = ACTIONS(7459), + [anon_sym_static] = ACTIONS(7459), + [anon_sym_register] = ACTIONS(7459), + [anon_sym_inline] = ACTIONS(7459), + [anon_sym___inline] = ACTIONS(7459), + [anon_sym___inline__] = ACTIONS(7459), + [anon_sym___forceinline] = ACTIONS(7459), + [anon_sym_thread_local] = ACTIONS(7459), + [anon_sym___thread] = ACTIONS(7459), + [anon_sym_const] = ACTIONS(7459), + [anon_sym_constexpr] = ACTIONS(7459), + [anon_sym_volatile] = ACTIONS(7459), + [anon_sym_restrict] = ACTIONS(7459), + [anon_sym___restrict__] = ACTIONS(7459), + [anon_sym__Atomic] = ACTIONS(7459), + [anon_sym__Noreturn] = ACTIONS(7459), + [anon_sym_noreturn] = ACTIONS(7459), + [anon_sym__Nonnull] = ACTIONS(7459), + [anon_sym_mutable] = ACTIONS(7459), + [anon_sym_constinit] = ACTIONS(7459), + [anon_sym_consteval] = ACTIONS(7459), + [anon_sym_alignas] = ACTIONS(7459), + [anon_sym__Alignas] = ACTIONS(7459), + [sym_primitive_type] = ACTIONS(7459), + [anon_sym_enum] = ACTIONS(7459), + [anon_sym_class] = ACTIONS(7459), + [anon_sym_struct] = ACTIONS(7459), + [anon_sym_union] = ACTIONS(7459), + [anon_sym_or] = ACTIONS(7459), + [anon_sym_and] = ACTIONS(7459), + [anon_sym_typename] = ACTIONS(7459), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7459), + [anon_sym_decltype] = ACTIONS(7459), + [anon_sym_explicit] = ACTIONS(7459), + [anon_sym_template] = ACTIONS(7459), + [anon_sym_operator] = ACTIONS(7459), + [anon_sym_friend] = ACTIONS(7459), + [anon_sym_concept] = ACTIONS(7459), + [anon_sym_LBRACK_COLON] = ACTIONS(7457), + }, + [STATE(3677)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(8752), + [anon_sym_COMMA] = ACTIONS(8752), + [anon_sym_RPAREN] = ACTIONS(8752), + [anon_sym_LPAREN2] = ACTIONS(8752), + [anon_sym_DASH] = ACTIONS(8750), + [anon_sym_PLUS] = ACTIONS(8750), + [anon_sym_STAR] = ACTIONS(8750), + [anon_sym_SLASH] = ACTIONS(8750), + [anon_sym_PERCENT] = ACTIONS(8750), + [anon_sym_PIPE_PIPE] = ACTIONS(8752), + [anon_sym_AMP_AMP] = ACTIONS(8752), + [anon_sym_PIPE] = ACTIONS(8750), + [anon_sym_CARET] = ACTIONS(8750), + [anon_sym_AMP] = ACTIONS(8750), + [anon_sym_EQ_EQ] = ACTIONS(8752), + [anon_sym_BANG_EQ] = ACTIONS(8752), + [anon_sym_GT] = ACTIONS(8750), + [anon_sym_GT_EQ] = ACTIONS(8752), + [anon_sym_LT_EQ] = ACTIONS(8750), + [anon_sym_LT] = ACTIONS(8750), + [anon_sym_LT_LT] = ACTIONS(8750), + [anon_sym_GT_GT] = ACTIONS(8750), + [anon_sym_SEMI] = ACTIONS(8752), + [anon_sym_COLON] = ACTIONS(8750), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8752), + [anon_sym_RBRACE] = ACTIONS(8752), + [anon_sym_LBRACK] = ACTIONS(8752), + [anon_sym_EQ] = ACTIONS(8750), + [anon_sym_QMARK] = ACTIONS(8752), + [anon_sym_STAR_EQ] = ACTIONS(8752), + [anon_sym_SLASH_EQ] = ACTIONS(8752), + [anon_sym_PERCENT_EQ] = ACTIONS(8752), + [anon_sym_PLUS_EQ] = ACTIONS(8752), + [anon_sym_DASH_EQ] = ACTIONS(8752), + [anon_sym_LT_LT_EQ] = ACTIONS(8752), + [anon_sym_GT_GT_EQ] = ACTIONS(8752), + [anon_sym_AMP_EQ] = ACTIONS(8752), + [anon_sym_CARET_EQ] = ACTIONS(8752), + [anon_sym_PIPE_EQ] = ACTIONS(8752), + [anon_sym_and_eq] = ACTIONS(8750), + [anon_sym_or_eq] = ACTIONS(8750), + [anon_sym_xor_eq] = ACTIONS(8750), + [anon_sym_LT_EQ_GT] = ACTIONS(8752), + [anon_sym_or] = ACTIONS(8750), + [anon_sym_and] = ACTIONS(8750), + [anon_sym_bitor] = ACTIONS(8750), + [anon_sym_xor] = ACTIONS(8750), + [anon_sym_bitand] = ACTIONS(8750), + [anon_sym_not_eq] = ACTIONS(8750), + [anon_sym_DASH_DASH] = ACTIONS(8752), + [anon_sym_PLUS_PLUS] = ACTIONS(8752), + [anon_sym_DOT] = ACTIONS(8750), + [anon_sym_DOT_STAR] = ACTIONS(8752), + [anon_sym_DASH_GT] = ACTIONS(8752), + [anon_sym_L_DQUOTE] = ACTIONS(8752), + [anon_sym_u_DQUOTE] = ACTIONS(8752), + [anon_sym_U_DQUOTE] = ACTIONS(8752), + [anon_sym_u8_DQUOTE] = ACTIONS(8752), + [anon_sym_DQUOTE] = ACTIONS(8752), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8752), + [anon_sym_LR_DQUOTE] = ACTIONS(8752), + [anon_sym_uR_DQUOTE] = ACTIONS(8752), + [anon_sym_UR_DQUOTE] = ACTIONS(8752), + [anon_sym_u8R_DQUOTE] = ACTIONS(8752), + [anon_sym_COLON_RBRACK] = ACTIONS(8752), + [sym_literal_suffix] = ACTIONS(8750), + }, + [STATE(3678)] = { + [sym_argument_list] = STATE(3898), + [sym_initializer_list] = STATE(3898), + [sym_identifier] = ACTIONS(9431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9433), + [anon_sym_COMMA] = ACTIONS(9433), + [anon_sym_RPAREN] = ACTIONS(9433), + [aux_sym_preproc_if_token2] = ACTIONS(9433), + [aux_sym_preproc_else_token1] = ACTIONS(9433), + [aux_sym_preproc_elif_token1] = ACTIONS(9431), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9433), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9433), + [anon_sym_LPAREN2] = ACTIONS(9230), + [anon_sym_DASH] = ACTIONS(9431), + [anon_sym_PLUS] = ACTIONS(9431), + [anon_sym_STAR] = ACTIONS(9431), + [anon_sym_SLASH] = ACTIONS(9431), + [anon_sym_PERCENT] = ACTIONS(9431), + [anon_sym_PIPE_PIPE] = ACTIONS(9433), + [anon_sym_AMP_AMP] = ACTIONS(9433), + [anon_sym_PIPE] = ACTIONS(9431), + [anon_sym_CARET] = ACTIONS(9431), + [anon_sym_AMP] = ACTIONS(9431), + [anon_sym_EQ_EQ] = ACTIONS(9433), + [anon_sym_BANG_EQ] = ACTIONS(9433), + [anon_sym_GT] = ACTIONS(9431), + [anon_sym_GT_EQ] = ACTIONS(9433), + [anon_sym_LT_EQ] = ACTIONS(9431), + [anon_sym_LT] = ACTIONS(9431), + [anon_sym_LT_LT] = ACTIONS(9431), + [anon_sym_GT_GT] = ACTIONS(9431), + [anon_sym_SEMI] = ACTIONS(9433), + [anon_sym___attribute__] = ACTIONS(9431), + [anon_sym___attribute] = ACTIONS(9431), + [anon_sym_COLON] = ACTIONS(9431), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9433), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(9433), + [anon_sym_LBRACK] = ACTIONS(9433), + [anon_sym_EQ] = ACTIONS(9431), + [anon_sym_QMARK] = ACTIONS(9433), + [anon_sym_STAR_EQ] = ACTIONS(9433), + [anon_sym_SLASH_EQ] = ACTIONS(9433), + [anon_sym_PERCENT_EQ] = ACTIONS(9433), + [anon_sym_PLUS_EQ] = ACTIONS(9433), + [anon_sym_DASH_EQ] = ACTIONS(9433), + [anon_sym_LT_LT_EQ] = ACTIONS(9433), + [anon_sym_GT_GT_EQ] = ACTIONS(9433), + [anon_sym_AMP_EQ] = ACTIONS(9433), + [anon_sym_CARET_EQ] = ACTIONS(9433), + [anon_sym_PIPE_EQ] = ACTIONS(9433), + [anon_sym_and_eq] = ACTIONS(9431), + [anon_sym_or_eq] = ACTIONS(9431), + [anon_sym_xor_eq] = ACTIONS(9431), + [anon_sym_LT_EQ_GT] = ACTIONS(9433), + [anon_sym_or] = ACTIONS(9431), + [anon_sym_and] = ACTIONS(9431), + [anon_sym_bitor] = ACTIONS(9431), + [anon_sym_xor] = ACTIONS(9431), + [anon_sym_bitand] = ACTIONS(9431), + [anon_sym_not_eq] = ACTIONS(9431), + [anon_sym_DASH_DASH] = ACTIONS(9433), + [anon_sym_PLUS_PLUS] = ACTIONS(9433), + [anon_sym_DOT] = ACTIONS(9431), + [anon_sym_DOT_STAR] = ACTIONS(9433), + [anon_sym_DASH_GT] = ACTIONS(9433), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9433), + }, + [STATE(3679)] = { + [sym_identifier] = ACTIONS(9435), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9437), + [anon_sym_COMMA] = ACTIONS(9437), + [anon_sym_RPAREN] = ACTIONS(9437), + [aux_sym_preproc_if_token2] = ACTIONS(9437), + [aux_sym_preproc_else_token1] = ACTIONS(9437), + [aux_sym_preproc_elif_token1] = ACTIONS(9435), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9437), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9437), + [anon_sym_LPAREN2] = ACTIONS(9437), + [anon_sym_DASH] = ACTIONS(9435), + [anon_sym_PLUS] = ACTIONS(9435), + [anon_sym_STAR] = ACTIONS(9435), + [anon_sym_SLASH] = ACTIONS(9435), + [anon_sym_PERCENT] = ACTIONS(9435), + [anon_sym_PIPE_PIPE] = ACTIONS(9437), + [anon_sym_AMP_AMP] = ACTIONS(9437), + [anon_sym_PIPE] = ACTIONS(9435), + [anon_sym_CARET] = ACTIONS(9435), + [anon_sym_AMP] = ACTIONS(9435), + [anon_sym_EQ_EQ] = ACTIONS(9437), + [anon_sym_BANG_EQ] = ACTIONS(9437), + [anon_sym_GT] = ACTIONS(9435), + [anon_sym_GT_EQ] = ACTIONS(9437), + [anon_sym_LT_EQ] = ACTIONS(9435), + [anon_sym_LT] = ACTIONS(9435), + [anon_sym_LT_LT] = ACTIONS(9435), + [anon_sym_GT_GT] = ACTIONS(9435), + [anon_sym_SEMI] = ACTIONS(9437), + [anon_sym___attribute__] = ACTIONS(9435), + [anon_sym___attribute] = ACTIONS(9435), + [anon_sym_COLON] = ACTIONS(9435), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9437), + [anon_sym_RBRACE] = ACTIONS(9437), + [anon_sym_LBRACK] = ACTIONS(9437), + [anon_sym_EQ] = ACTIONS(9435), + [anon_sym_QMARK] = ACTIONS(9437), + [anon_sym_STAR_EQ] = ACTIONS(9437), + [anon_sym_SLASH_EQ] = ACTIONS(9437), + [anon_sym_PERCENT_EQ] = ACTIONS(9437), + [anon_sym_PLUS_EQ] = ACTIONS(9437), + [anon_sym_DASH_EQ] = ACTIONS(9437), + [anon_sym_LT_LT_EQ] = ACTIONS(9437), + [anon_sym_GT_GT_EQ] = ACTIONS(9437), + [anon_sym_AMP_EQ] = ACTIONS(9437), + [anon_sym_CARET_EQ] = ACTIONS(9437), + [anon_sym_PIPE_EQ] = ACTIONS(9437), + [anon_sym_and_eq] = ACTIONS(9435), + [anon_sym_or_eq] = ACTIONS(9435), + [anon_sym_xor_eq] = ACTIONS(9435), + [anon_sym_LT_EQ_GT] = ACTIONS(9437), + [anon_sym_or] = ACTIONS(9435), + [anon_sym_and] = ACTIONS(9435), + [anon_sym_bitor] = ACTIONS(9435), + [anon_sym_xor] = ACTIONS(9435), + [anon_sym_bitand] = ACTIONS(9435), + [anon_sym_not_eq] = ACTIONS(9435), + [anon_sym_DASH_DASH] = ACTIONS(9437), + [anon_sym_PLUS_PLUS] = ACTIONS(9437), + [anon_sym_DOT] = ACTIONS(9435), + [anon_sym_DOT_STAR] = ACTIONS(9437), + [anon_sym_DASH_GT] = ACTIONS(9437), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9435), + [anon_sym_override] = ACTIONS(9435), + [anon_sym_requires] = ACTIONS(9435), + [anon_sym_COLON_RBRACK] = ACTIONS(9437), + }, + [STATE(3680)] = { + [sym_identifier] = ACTIONS(8942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8944), + [anon_sym_COMMA] = ACTIONS(8944), + [anon_sym_RPAREN] = ACTIONS(8944), + [aux_sym_preproc_if_token2] = ACTIONS(8944), + [aux_sym_preproc_else_token1] = ACTIONS(8944), + [aux_sym_preproc_elif_token1] = ACTIONS(8942), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8944), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8944), + [anon_sym_LPAREN2] = ACTIONS(8944), + [anon_sym_DASH] = ACTIONS(8942), + [anon_sym_PLUS] = ACTIONS(8942), + [anon_sym_STAR] = ACTIONS(8942), + [anon_sym_SLASH] = ACTIONS(8942), + [anon_sym_PERCENT] = ACTIONS(8942), + [anon_sym_PIPE_PIPE] = ACTIONS(8944), + [anon_sym_AMP_AMP] = ACTIONS(8944), + [anon_sym_PIPE] = ACTIONS(8942), + [anon_sym_CARET] = ACTIONS(8942), + [anon_sym_AMP] = ACTIONS(8942), + [anon_sym_EQ_EQ] = ACTIONS(8944), + [anon_sym_BANG_EQ] = ACTIONS(8944), + [anon_sym_GT] = ACTIONS(8942), + [anon_sym_GT_EQ] = ACTIONS(8944), + [anon_sym_LT_EQ] = ACTIONS(8942), + [anon_sym_LT] = ACTIONS(8942), + [anon_sym_LT_LT] = ACTIONS(8942), + [anon_sym_GT_GT] = ACTIONS(8942), + [anon_sym_SEMI] = ACTIONS(8944), + [anon_sym___attribute__] = ACTIONS(8942), + [anon_sym___attribute] = ACTIONS(8942), + [anon_sym_COLON] = ACTIONS(8942), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8944), + [anon_sym_RBRACE] = ACTIONS(8944), + [anon_sym_LBRACK] = ACTIONS(8944), + [anon_sym_EQ] = ACTIONS(8942), + [anon_sym_QMARK] = ACTIONS(8944), + [anon_sym_STAR_EQ] = ACTIONS(8944), + [anon_sym_SLASH_EQ] = ACTIONS(8944), + [anon_sym_PERCENT_EQ] = ACTIONS(8944), + [anon_sym_PLUS_EQ] = ACTIONS(8944), + [anon_sym_DASH_EQ] = ACTIONS(8944), + [anon_sym_LT_LT_EQ] = ACTIONS(8944), + [anon_sym_GT_GT_EQ] = ACTIONS(8944), + [anon_sym_AMP_EQ] = ACTIONS(8944), + [anon_sym_CARET_EQ] = ACTIONS(8944), + [anon_sym_PIPE_EQ] = ACTIONS(8944), + [anon_sym_and_eq] = ACTIONS(8942), + [anon_sym_or_eq] = ACTIONS(8942), + [anon_sym_xor_eq] = ACTIONS(8942), + [anon_sym_LT_EQ_GT] = ACTIONS(8944), + [anon_sym_or] = ACTIONS(8942), + [anon_sym_and] = ACTIONS(8942), + [anon_sym_bitor] = ACTIONS(8942), + [anon_sym_xor] = ACTIONS(8942), + [anon_sym_bitand] = ACTIONS(8942), + [anon_sym_not_eq] = ACTIONS(8942), + [anon_sym_DASH_DASH] = ACTIONS(8944), + [anon_sym_PLUS_PLUS] = ACTIONS(8944), + [anon_sym_DOT] = ACTIONS(8942), + [anon_sym_DOT_STAR] = ACTIONS(8944), + [anon_sym_DASH_GT] = ACTIONS(8944), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8942), + [anon_sym_override] = ACTIONS(8942), + [anon_sym_requires] = ACTIONS(8942), + [anon_sym_COLON_RBRACK] = ACTIONS(8944), + }, + [STATE(3681)] = { + [sym_attribute_declaration] = STATE(3710), + [sym_parameter_list] = STATE(3140), + [aux_sym_attributed_declarator_repeat1] = STATE(3710), + [sym_identifier] = ACTIONS(9439), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9441), + [anon_sym_COMMA] = ACTIONS(9441), + [anon_sym_RPAREN] = ACTIONS(9441), + [aux_sym_preproc_if_token2] = ACTIONS(9441), + [aux_sym_preproc_else_token1] = ACTIONS(9441), + [aux_sym_preproc_elif_token1] = ACTIONS(9439), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9441), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9441), + [anon_sym_LPAREN2] = ACTIONS(9304), + [anon_sym_DASH] = ACTIONS(9439), + [anon_sym_PLUS] = ACTIONS(9439), + [anon_sym_STAR] = ACTIONS(9439), + [anon_sym_SLASH] = ACTIONS(9439), + [anon_sym_PERCENT] = ACTIONS(9439), + [anon_sym_PIPE_PIPE] = ACTIONS(9441), + [anon_sym_AMP_AMP] = ACTIONS(9441), + [anon_sym_PIPE] = ACTIONS(9439), + [anon_sym_CARET] = ACTIONS(9439), + [anon_sym_AMP] = ACTIONS(9439), + [anon_sym_EQ_EQ] = ACTIONS(9441), + [anon_sym_BANG_EQ] = ACTIONS(9441), + [anon_sym_GT] = ACTIONS(9439), + [anon_sym_GT_EQ] = ACTIONS(9441), + [anon_sym_LT_EQ] = ACTIONS(9439), + [anon_sym_LT] = ACTIONS(9439), + [anon_sym_LT_LT] = ACTIONS(9439), + [anon_sym_GT_GT] = ACTIONS(9439), + [anon_sym_SEMI] = ACTIONS(9441), + [anon_sym___attribute__] = ACTIONS(9439), + [anon_sym___attribute] = ACTIONS(9439), + [anon_sym_COLON] = ACTIONS(9439), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACE] = ACTIONS(9441), + [anon_sym_LBRACK] = ACTIONS(9306), + [anon_sym_EQ] = ACTIONS(9439), + [anon_sym_QMARK] = ACTIONS(9441), + [anon_sym_STAR_EQ] = ACTIONS(9441), + [anon_sym_SLASH_EQ] = ACTIONS(9441), + [anon_sym_PERCENT_EQ] = ACTIONS(9441), + [anon_sym_PLUS_EQ] = ACTIONS(9441), + [anon_sym_DASH_EQ] = ACTIONS(9441), + [anon_sym_LT_LT_EQ] = ACTIONS(9441), + [anon_sym_GT_GT_EQ] = ACTIONS(9441), + [anon_sym_AMP_EQ] = ACTIONS(9441), + [anon_sym_CARET_EQ] = ACTIONS(9441), + [anon_sym_PIPE_EQ] = ACTIONS(9441), + [anon_sym_and_eq] = ACTIONS(9439), + [anon_sym_or_eq] = ACTIONS(9439), + [anon_sym_xor_eq] = ACTIONS(9439), + [anon_sym_LT_EQ_GT] = ACTIONS(9441), + [anon_sym_or] = ACTIONS(9439), + [anon_sym_and] = ACTIONS(9439), + [anon_sym_bitor] = ACTIONS(9439), + [anon_sym_xor] = ACTIONS(9439), + [anon_sym_bitand] = ACTIONS(9439), + [anon_sym_not_eq] = ACTIONS(9439), + [anon_sym_DASH_DASH] = ACTIONS(9441), + [anon_sym_PLUS_PLUS] = ACTIONS(9441), + [anon_sym_DOT] = ACTIONS(9439), + [anon_sym_DOT_STAR] = ACTIONS(9441), + [anon_sym_DASH_GT] = ACTIONS(9441), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9441), + }, + [STATE(3682)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3284), + [sym_identifier] = ACTIONS(7223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [aux_sym_preproc_if_token2] = ACTIONS(7225), + [aux_sym_preproc_else_token1] = ACTIONS(7225), + [aux_sym_preproc_elif_token1] = ACTIONS(7223), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7225), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7225), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7225), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7225), + [anon_sym_GT_GT] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_signed] = ACTIONS(9114), + [anon_sym_unsigned] = ACTIONS(9114), + [anon_sym_long] = ACTIONS(9114), + [anon_sym_short] = ACTIONS(9114), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_RBRACK] = ACTIONS(7225), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7223), + [anon_sym__Alignas] = ACTIONS(7223), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7223), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7223), + [anon_sym_not_eq] = ACTIONS(7223), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7223), + [anon_sym_override] = ACTIONS(7223), + [anon_sym_requires] = ACTIONS(7223), + }, + [STATE(3683)] = { + [sym_identifier] = ACTIONS(5593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5595), + [anon_sym_COMMA] = ACTIONS(5595), + [anon_sym_RPAREN] = ACTIONS(5595), + [anon_sym_LPAREN2] = ACTIONS(5595), + [anon_sym_TILDE] = ACTIONS(5595), + [anon_sym_STAR] = ACTIONS(5595), + [anon_sym_AMP_AMP] = ACTIONS(5595), + [anon_sym_AMP] = ACTIONS(5593), + [anon_sym_SEMI] = ACTIONS(5595), + [anon_sym___extension__] = ACTIONS(5593), + [anon_sym_virtual] = ACTIONS(5593), + [anon_sym_extern] = ACTIONS(5593), + [anon_sym___attribute__] = ACTIONS(5593), + [anon_sym___attribute] = ACTIONS(5593), + [anon_sym_COLON] = ACTIONS(5593), + [anon_sym_COLON_COLON] = ACTIONS(5595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5595), + [anon_sym___declspec] = ACTIONS(5593), + [anon_sym___based] = ACTIONS(5593), + [anon_sym___cdecl] = ACTIONS(5593), + [anon_sym___clrcall] = ACTIONS(5593), + [anon_sym___stdcall] = ACTIONS(5593), + [anon_sym___fastcall] = ACTIONS(5593), + [anon_sym___thiscall] = ACTIONS(5593), + [anon_sym___vectorcall] = ACTIONS(5593), + [anon_sym_LBRACE] = ACTIONS(5595), + [anon_sym_LBRACK] = ACTIONS(5593), + [anon_sym_static] = ACTIONS(5593), + [anon_sym_EQ] = ACTIONS(5595), + [anon_sym_register] = ACTIONS(5593), + [anon_sym_inline] = ACTIONS(5593), + [anon_sym___inline] = ACTIONS(5593), + [anon_sym___inline__] = ACTIONS(5593), + [anon_sym___forceinline] = ACTIONS(5593), + [anon_sym_thread_local] = ACTIONS(5593), + [anon_sym___thread] = ACTIONS(5593), + [anon_sym_const] = ACTIONS(5593), + [anon_sym_constexpr] = ACTIONS(5593), + [anon_sym_volatile] = ACTIONS(5593), + [anon_sym_restrict] = ACTIONS(5593), + [anon_sym___restrict__] = ACTIONS(5593), + [anon_sym__Atomic] = ACTIONS(5593), + [anon_sym__Noreturn] = ACTIONS(5593), + [anon_sym_noreturn] = ACTIONS(5593), + [anon_sym__Nonnull] = ACTIONS(5593), + [anon_sym_mutable] = ACTIONS(5593), + [anon_sym_constinit] = ACTIONS(5593), + [anon_sym_consteval] = ACTIONS(5593), + [anon_sym_alignas] = ACTIONS(5593), + [anon_sym__Alignas] = ACTIONS(5593), + [anon_sym_DASH_GT] = ACTIONS(5595), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5593), + [anon_sym_final] = ACTIONS(5593), + [anon_sym_override] = ACTIONS(5593), + [anon_sym_explicit] = ACTIONS(5593), + [anon_sym_private] = ACTIONS(5593), + [anon_sym_template] = ACTIONS(5593), + [anon_sym_GT2] = ACTIONS(5595), + [anon_sym_operator] = ACTIONS(5593), + [anon_sym_public] = ACTIONS(5593), + [anon_sym_protected] = ACTIONS(5593), + [anon_sym_noexcept] = ACTIONS(5593), + [anon_sym_throw] = ACTIONS(5593), + [anon_sym_requires] = ACTIONS(5593), + [anon_sym_LBRACK_COLON] = ACTIONS(5595), + }, + [STATE(3684)] = { + [sym_decltype_auto] = STATE(3215), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7225), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7225), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7225), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7225), + [anon_sym_GT_GT] = ACTIONS(7225), + [anon_sym_SEMI] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym___attribute__] = ACTIONS(7225), + [anon_sym___attribute] = ACTIONS(7223), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_RBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7225), + [anon_sym_and] = ACTIONS(7225), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7225), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9443), + [anon_sym_decltype] = ACTIONS(6871), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), + [anon_sym_COLON_RBRACK] = ACTIONS(7225), + }, + [STATE(3685)] = { + [sym_ms_based_modifier] = STATE(10837), + [sym__declarator] = STATE(8808), + [sym__abstract_declarator] = STATE(8954), + [sym_parenthesized_declarator] = STATE(8555), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_function_declarator] = STATE(8555), + [sym_abstract_function_declarator] = STATE(8596), + [sym_array_declarator] = STATE(8555), + [sym_abstract_array_declarator] = STATE(8596), + [sym_type_qualifier] = STATE(7086), + [sym_alignas_qualifier] = STATE(7511), + [sym_parameter_list] = STATE(4779), + [sym_decltype] = STATE(10768), + [sym_reference_declarator] = STATE(8555), + [sym_abstract_reference_declarator] = STATE(8596), + [sym_structured_binding_declarator] = STATE(8555), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7990), + [sym_qualified_identifier] = STATE(8555), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__type_definition_type_repeat1] = STATE(7086), + [sym_identifier] = ACTIONS(8546), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(8548), + [anon_sym_AMP_AMP] = ACTIONS(8550), + [anon_sym_AMP] = ACTIONS(8552), + [anon_sym___extension__] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(6821), + [anon_sym___attribute] = ACTIONS(6821), + [anon_sym_COLON_COLON] = ACTIONS(8554), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5627), + [anon_sym_EQ] = ACTIONS(6823), + [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__Nonnull] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_GT2] = ACTIONS(6823), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), + }, + [STATE(3686)] = { + [sym_ms_based_modifier] = STATE(10837), + [sym__declarator] = STATE(8816), + [sym__abstract_declarator] = STATE(8955), + [sym_parenthesized_declarator] = STATE(8555), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_function_declarator] = STATE(8555), + [sym_abstract_function_declarator] = STATE(8596), + [sym_array_declarator] = STATE(8555), + [sym_abstract_array_declarator] = STATE(8596), + [sym_type_qualifier] = STATE(7086), + [sym_alignas_qualifier] = STATE(7511), + [sym_parameter_list] = STATE(4779), + [sym_decltype] = STATE(10768), + [sym_reference_declarator] = STATE(8555), + [sym_abstract_reference_declarator] = STATE(8596), + [sym_structured_binding_declarator] = STATE(8555), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7990), + [sym_qualified_identifier] = STATE(8555), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__type_definition_type_repeat1] = STATE(7086), + [sym_identifier] = ACTIONS(8546), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_RPAREN] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(8548), + [anon_sym_AMP_AMP] = ACTIONS(8550), + [anon_sym_AMP] = ACTIONS(8552), + [anon_sym___extension__] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(7347), + [anon_sym___attribute] = ACTIONS(7347), + [anon_sym_COLON_COLON] = ACTIONS(8554), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5627), + [anon_sym_EQ] = ACTIONS(7345), + [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__Nonnull] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_GT2] = ACTIONS(7345), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), + }, + [STATE(3687)] = { + [sym_identifier] = ACTIONS(8913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8915), + [anon_sym_COMMA] = ACTIONS(8915), + [anon_sym_RPAREN] = ACTIONS(8915), + [aux_sym_preproc_if_token2] = ACTIONS(8915), + [aux_sym_preproc_else_token1] = ACTIONS(8915), + [aux_sym_preproc_elif_token1] = ACTIONS(8913), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8915), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8915), + [anon_sym_LPAREN2] = ACTIONS(8915), + [anon_sym_DASH] = ACTIONS(8913), + [anon_sym_PLUS] = ACTIONS(8913), + [anon_sym_STAR] = ACTIONS(8913), + [anon_sym_SLASH] = ACTIONS(8913), + [anon_sym_PERCENT] = ACTIONS(8913), + [anon_sym_PIPE_PIPE] = ACTIONS(8915), + [anon_sym_AMP_AMP] = ACTIONS(8915), + [anon_sym_PIPE] = ACTIONS(8913), + [anon_sym_CARET] = ACTIONS(8913), + [anon_sym_AMP] = ACTIONS(8913), + [anon_sym_EQ_EQ] = ACTIONS(8915), + [anon_sym_BANG_EQ] = ACTIONS(8915), + [anon_sym_GT] = ACTIONS(8913), + [anon_sym_GT_EQ] = ACTIONS(8915), + [anon_sym_LT_EQ] = ACTIONS(8913), + [anon_sym_LT] = ACTIONS(8913), + [anon_sym_LT_LT] = ACTIONS(8913), + [anon_sym_GT_GT] = ACTIONS(8913), + [anon_sym_SEMI] = ACTIONS(8915), + [anon_sym___attribute__] = ACTIONS(8913), + [anon_sym___attribute] = ACTIONS(8913), + [anon_sym_COLON] = ACTIONS(8913), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8915), + [anon_sym_RBRACE] = ACTIONS(8915), + [anon_sym_LBRACK] = ACTIONS(8915), + [anon_sym_EQ] = ACTIONS(8913), + [anon_sym_QMARK] = ACTIONS(8915), + [anon_sym_STAR_EQ] = ACTIONS(8915), + [anon_sym_SLASH_EQ] = ACTIONS(8915), + [anon_sym_PERCENT_EQ] = ACTIONS(8915), + [anon_sym_PLUS_EQ] = ACTIONS(8915), + [anon_sym_DASH_EQ] = ACTIONS(8915), + [anon_sym_LT_LT_EQ] = ACTIONS(8915), + [anon_sym_GT_GT_EQ] = ACTIONS(8915), + [anon_sym_AMP_EQ] = ACTIONS(8915), + [anon_sym_CARET_EQ] = ACTIONS(8915), + [anon_sym_PIPE_EQ] = ACTIONS(8915), + [anon_sym_and_eq] = ACTIONS(8913), + [anon_sym_or_eq] = ACTIONS(8913), + [anon_sym_xor_eq] = ACTIONS(8913), + [anon_sym_LT_EQ_GT] = ACTIONS(8915), + [anon_sym_or] = ACTIONS(8913), + [anon_sym_and] = ACTIONS(8913), + [anon_sym_bitor] = ACTIONS(8913), + [anon_sym_xor] = ACTIONS(8913), + [anon_sym_bitand] = ACTIONS(8913), + [anon_sym_not_eq] = ACTIONS(8913), + [anon_sym_DASH_DASH] = ACTIONS(8915), + [anon_sym_PLUS_PLUS] = ACTIONS(8915), + [anon_sym_DOT] = ACTIONS(8913), + [anon_sym_DOT_STAR] = ACTIONS(8915), + [anon_sym_DASH_GT] = ACTIONS(8915), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8913), + [anon_sym_override] = ACTIONS(8913), + [anon_sym_requires] = ACTIONS(8913), + [anon_sym_COLON_RBRACK] = ACTIONS(8915), + }, + [STATE(3688)] = { + [sym_identifier] = ACTIONS(9445), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9447), + [anon_sym_COMMA] = ACTIONS(9447), + [anon_sym_RPAREN] = ACTIONS(9447), + [aux_sym_preproc_if_token2] = ACTIONS(9447), + [aux_sym_preproc_else_token1] = ACTIONS(9447), + [aux_sym_preproc_elif_token1] = ACTIONS(9445), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9447), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9447), + [anon_sym_LPAREN2] = ACTIONS(9447), + [anon_sym_DASH] = ACTIONS(9445), + [anon_sym_PLUS] = ACTIONS(9445), + [anon_sym_STAR] = ACTIONS(9445), + [anon_sym_SLASH] = ACTIONS(9445), + [anon_sym_PERCENT] = ACTIONS(9445), + [anon_sym_PIPE_PIPE] = ACTIONS(9447), + [anon_sym_AMP_AMP] = ACTIONS(9447), + [anon_sym_PIPE] = ACTIONS(9445), + [anon_sym_CARET] = ACTIONS(9445), + [anon_sym_AMP] = ACTIONS(9445), + [anon_sym_EQ_EQ] = ACTIONS(9447), + [anon_sym_BANG_EQ] = ACTIONS(9447), + [anon_sym_GT] = ACTIONS(9445), + [anon_sym_GT_EQ] = ACTIONS(9447), + [anon_sym_LT_EQ] = ACTIONS(9445), + [anon_sym_LT] = ACTIONS(9445), + [anon_sym_LT_LT] = ACTIONS(9445), + [anon_sym_GT_GT] = ACTIONS(9445), + [anon_sym_SEMI] = ACTIONS(9447), + [anon_sym___attribute__] = ACTIONS(9445), + [anon_sym___attribute] = ACTIONS(9445), + [anon_sym_COLON] = ACTIONS(9445), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9447), + [anon_sym_RBRACE] = ACTIONS(9447), + [anon_sym_LBRACK] = ACTIONS(9447), + [anon_sym_EQ] = ACTIONS(9445), + [anon_sym_QMARK] = ACTIONS(9447), + [anon_sym_STAR_EQ] = ACTIONS(9447), + [anon_sym_SLASH_EQ] = ACTIONS(9447), + [anon_sym_PERCENT_EQ] = ACTIONS(9447), + [anon_sym_PLUS_EQ] = ACTIONS(9447), + [anon_sym_DASH_EQ] = ACTIONS(9447), + [anon_sym_LT_LT_EQ] = ACTIONS(9447), + [anon_sym_GT_GT_EQ] = ACTIONS(9447), + [anon_sym_AMP_EQ] = ACTIONS(9447), + [anon_sym_CARET_EQ] = ACTIONS(9447), + [anon_sym_PIPE_EQ] = ACTIONS(9447), + [anon_sym_and_eq] = ACTIONS(9445), + [anon_sym_or_eq] = ACTIONS(9445), + [anon_sym_xor_eq] = ACTIONS(9445), + [anon_sym_LT_EQ_GT] = ACTIONS(9447), + [anon_sym_or] = ACTIONS(9445), + [anon_sym_and] = ACTIONS(9445), + [anon_sym_bitor] = ACTIONS(9445), + [anon_sym_xor] = ACTIONS(9445), + [anon_sym_bitand] = ACTIONS(9445), + [anon_sym_not_eq] = ACTIONS(9445), + [anon_sym_DASH_DASH] = ACTIONS(9447), + [anon_sym_PLUS_PLUS] = ACTIONS(9447), + [anon_sym_DOT] = ACTIONS(9445), + [anon_sym_DOT_STAR] = ACTIONS(9447), + [anon_sym_DASH_GT] = ACTIONS(9447), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9445), + [anon_sym_override] = ACTIONS(9445), + [anon_sym_requires] = ACTIONS(9445), + [anon_sym_COLON_RBRACK] = ACTIONS(9447), + }, + [STATE(3689)] = { + [sym_identifier] = ACTIONS(9393), + [anon_sym_LPAREN2] = ACTIONS(9395), + [anon_sym_TILDE] = ACTIONS(9395), + [anon_sym_STAR] = ACTIONS(9395), + [anon_sym_PIPE_PIPE] = ACTIONS(9449), + [anon_sym_AMP_AMP] = ACTIONS(9326), + [anon_sym_AMP] = ACTIONS(9393), + [anon_sym___extension__] = ACTIONS(9393), + [anon_sym_virtual] = ACTIONS(9393), + [anon_sym_extern] = ACTIONS(9393), + [anon_sym___attribute__] = ACTIONS(9393), + [anon_sym___attribute] = ACTIONS(9393), + [anon_sym_using] = ACTIONS(9393), + [anon_sym_COLON_COLON] = ACTIONS(9395), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9395), + [anon_sym___declspec] = ACTIONS(9393), + [anon_sym___based] = ACTIONS(9393), + [anon_sym___cdecl] = ACTIONS(9393), + [anon_sym___clrcall] = ACTIONS(9393), + [anon_sym___stdcall] = ACTIONS(9393), + [anon_sym___fastcall] = ACTIONS(9393), + [anon_sym___thiscall] = ACTIONS(9393), + [anon_sym___vectorcall] = ACTIONS(9393), + [anon_sym_signed] = ACTIONS(9393), + [anon_sym_unsigned] = ACTIONS(9393), + [anon_sym_long] = ACTIONS(9393), + [anon_sym_short] = ACTIONS(9393), + [anon_sym_LBRACK] = ACTIONS(9393), + [anon_sym_static] = ACTIONS(9393), + [anon_sym_register] = ACTIONS(9393), + [anon_sym_inline] = ACTIONS(9393), + [anon_sym___inline] = ACTIONS(9393), + [anon_sym___inline__] = ACTIONS(9393), + [anon_sym___forceinline] = ACTIONS(9393), + [anon_sym_thread_local] = ACTIONS(9393), + [anon_sym___thread] = ACTIONS(9393), + [anon_sym_const] = ACTIONS(9393), + [anon_sym_constexpr] = ACTIONS(9393), + [anon_sym_volatile] = ACTIONS(9393), + [anon_sym_restrict] = ACTIONS(9393), + [anon_sym___restrict__] = ACTIONS(9393), + [anon_sym__Atomic] = ACTIONS(9393), + [anon_sym__Noreturn] = ACTIONS(9393), + [anon_sym_noreturn] = ACTIONS(9393), + [anon_sym__Nonnull] = ACTIONS(9393), + [anon_sym_mutable] = ACTIONS(9393), + [anon_sym_constinit] = ACTIONS(9393), + [anon_sym_consteval] = ACTIONS(9393), + [anon_sym_alignas] = ACTIONS(9393), + [anon_sym__Alignas] = ACTIONS(9393), + [sym_primitive_type] = ACTIONS(9393), + [anon_sym_enum] = ACTIONS(9393), + [anon_sym_class] = ACTIONS(9393), + [anon_sym_struct] = ACTIONS(9393), + [anon_sym_union] = ACTIONS(9393), + [anon_sym_or] = ACTIONS(9451), + [anon_sym_and] = ACTIONS(9328), + [anon_sym_typename] = ACTIONS(9393), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9393), + [anon_sym_decltype] = ACTIONS(9393), + [anon_sym_explicit] = ACTIONS(9393), + [anon_sym_template] = ACTIONS(9393), + [anon_sym_operator] = ACTIONS(9393), + [anon_sym_friend] = ACTIONS(9393), + [anon_sym_concept] = ACTIONS(9393), + [anon_sym_LBRACK_COLON] = ACTIONS(9395), + }, + [STATE(3690)] = { + [sym_string_literal] = STATE(5580), + [sym_template_argument_list] = STATE(6754), + [sym_raw_string_literal] = STATE(5580), + [aux_sym_structured_binding_declarator_repeat1] = STATE(9899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9453), + [anon_sym_COMMA] = ACTIONS(9456), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(8925), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_RBRACK] = ACTIONS(9459), + [anon_sym_EQ] = ACTIONS(9463), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(7046), + [anon_sym_SLASH_EQ] = ACTIONS(7046), + [anon_sym_PERCENT_EQ] = ACTIONS(7046), + [anon_sym_PLUS_EQ] = ACTIONS(7046), + [anon_sym_DASH_EQ] = ACTIONS(7046), + [anon_sym_LT_LT_EQ] = ACTIONS(7046), + [anon_sym_GT_GT_EQ] = ACTIONS(7046), + [anon_sym_AMP_EQ] = ACTIONS(7046), + [anon_sym_CARET_EQ] = ACTIONS(7046), + [anon_sym_PIPE_EQ] = ACTIONS(7046), + [anon_sym_and_eq] = ACTIONS(7046), + [anon_sym_or_eq] = ACTIONS(7046), + [anon_sym_xor_eq] = ACTIONS(7046), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(7048), + [anon_sym_u_DQUOTE] = ACTIONS(7048), + [anon_sym_U_DQUOTE] = ACTIONS(7048), + [anon_sym_u8_DQUOTE] = ACTIONS(7048), + [anon_sym_DQUOTE] = ACTIONS(7048), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7054), + [anon_sym_LR_DQUOTE] = ACTIONS(7054), + [anon_sym_uR_DQUOTE] = ACTIONS(7054), + [anon_sym_UR_DQUOTE] = ACTIONS(7054), + [anon_sym_u8R_DQUOTE] = ACTIONS(7054), + }, + [STATE(3691)] = { + [sym_type_qualifier] = STATE(3691), + [sym_alignas_qualifier] = STATE(3945), + [aux_sym__type_definition_type_repeat1] = STATE(3691), + [sym_identifier] = ACTIONS(6889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), + [anon_sym_COMMA] = ACTIONS(6891), + [anon_sym_LPAREN2] = ACTIONS(6891), + [anon_sym_DASH] = ACTIONS(6889), + [anon_sym_PLUS] = ACTIONS(6889), + [anon_sym_STAR] = ACTIONS(6891), + [anon_sym_SLASH] = ACTIONS(6889), + [anon_sym_PERCENT] = ACTIONS(6891), + [anon_sym_PIPE_PIPE] = ACTIONS(6891), + [anon_sym_AMP_AMP] = ACTIONS(6891), + [anon_sym_PIPE] = ACTIONS(6889), + [anon_sym_CARET] = ACTIONS(6891), + [anon_sym_AMP] = ACTIONS(6889), + [anon_sym_EQ_EQ] = ACTIONS(6891), + [anon_sym_BANG_EQ] = ACTIONS(6891), + [anon_sym_GT] = ACTIONS(6889), + [anon_sym_GT_EQ] = ACTIONS(6889), + [anon_sym_LT_EQ] = ACTIONS(6889), + [anon_sym_LT] = ACTIONS(6889), + [anon_sym_LT_LT] = ACTIONS(6891), + [anon_sym_GT_GT] = ACTIONS(6889), + [anon_sym___extension__] = ACTIONS(9465), + [anon_sym___attribute__] = ACTIONS(6889), + [anon_sym___attribute] = ACTIONS(6889), + [anon_sym_LBRACE] = ACTIONS(6891), + [anon_sym_signed] = ACTIONS(6889), + [anon_sym_unsigned] = ACTIONS(6889), + [anon_sym_long] = ACTIONS(6889), + [anon_sym_short] = ACTIONS(6889), + [anon_sym_LBRACK] = ACTIONS(6891), + [anon_sym_const] = ACTIONS(9465), + [anon_sym_constexpr] = ACTIONS(9465), + [anon_sym_volatile] = ACTIONS(9465), + [anon_sym_restrict] = ACTIONS(9465), + [anon_sym___restrict__] = ACTIONS(9465), + [anon_sym__Atomic] = ACTIONS(9465), + [anon_sym__Noreturn] = ACTIONS(9465), + [anon_sym_noreturn] = ACTIONS(9465), + [anon_sym__Nonnull] = ACTIONS(9465), + [anon_sym_mutable] = ACTIONS(9465), + [anon_sym_constinit] = ACTIONS(9465), + [anon_sym_consteval] = ACTIONS(9465), + [anon_sym_alignas] = ACTIONS(9468), + [anon_sym__Alignas] = ACTIONS(9468), + [sym_primitive_type] = ACTIONS(6889), + [anon_sym_QMARK] = ACTIONS(6891), + [anon_sym_LT_EQ_GT] = ACTIONS(6891), + [anon_sym_or] = ACTIONS(6889), + [anon_sym_and] = ACTIONS(6889), + [anon_sym_bitor] = ACTIONS(6889), + [anon_sym_xor] = ACTIONS(6889), + [anon_sym_bitand] = ACTIONS(6889), + [anon_sym_not_eq] = ACTIONS(6889), + [anon_sym_DASH_DASH] = ACTIONS(6891), + [anon_sym_PLUS_PLUS] = ACTIONS(6891), + [anon_sym_DOT] = ACTIONS(6889), + [anon_sym_DOT_STAR] = ACTIONS(6891), + [anon_sym_DASH_GT] = ACTIONS(6891), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6889), + [anon_sym_override] = ACTIONS(6889), + [anon_sym_GT2] = ACTIONS(6891), + [anon_sym_requires] = ACTIONS(6889), + }, + [STATE(3692)] = { + [sym_attribute_specifier] = STATE(4485), + [sym_attribute_declaration] = STATE(4713), + [sym_gnu_asm_expression] = STATE(9134), + [sym_virtual_specifier] = STATE(4778), + [sym__function_exception_specification] = STATE(4139), + [sym__function_attributes_end] = STATE(6006), + [sym__function_postfix] = STATE(5460), + [sym_trailing_return_type] = STATE(5898), + [sym_noexcept] = STATE(4139), + [sym_throw_specifier] = STATE(4139), + [sym_requires_clause] = STATE(5460), + [aux_sym_type_definition_repeat1] = STATE(4485), + [aux_sym_attributed_declarator_repeat1] = STATE(4713), + [aux_sym__function_postfix_repeat1] = STATE(4778), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), + [anon_sym_COMMA] = ACTIONS(7791), + [anon_sym_RPAREN] = ACTIONS(7791), + [anon_sym_LPAREN2] = ACTIONS(7791), + [anon_sym_DASH] = ACTIONS(7789), + [anon_sym_PLUS] = ACTIONS(7789), + [anon_sym_STAR] = ACTIONS(7791), + [anon_sym_SLASH] = ACTIONS(7789), + [anon_sym_PERCENT] = ACTIONS(7791), + [anon_sym_PIPE_PIPE] = ACTIONS(7791), + [anon_sym_AMP_AMP] = ACTIONS(7791), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7791), + [anon_sym_AMP] = ACTIONS(7789), + [anon_sym_EQ_EQ] = ACTIONS(7791), + [anon_sym_BANG_EQ] = ACTIONS(7791), + [anon_sym_GT] = ACTIONS(7789), + [anon_sym_GT_EQ] = ACTIONS(7791), + [anon_sym_LT_EQ] = ACTIONS(7789), + [anon_sym_LT] = ACTIONS(7789), + [anon_sym_LT_LT] = ACTIONS(7791), + [anon_sym_GT_GT] = ACTIONS(7791), + [anon_sym_SEMI] = ACTIONS(7791), + [anon_sym___attribute__] = ACTIONS(7176), + [anon_sym___attribute] = ACTIONS(7178), + [anon_sym_COLON] = ACTIONS(7789), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), + [anon_sym_RBRACE] = ACTIONS(7791), + [anon_sym_LBRACK] = ACTIONS(7789), + [anon_sym_QMARK] = ACTIONS(7791), + [anon_sym_LT_EQ_GT] = ACTIONS(7791), + [anon_sym_or] = ACTIONS(7791), + [anon_sym_and] = ACTIONS(7791), + [anon_sym_bitor] = ACTIONS(7791), + [anon_sym_xor] = ACTIONS(7791), + [anon_sym_bitand] = ACTIONS(7791), + [anon_sym_not_eq] = ACTIONS(7791), + [anon_sym_DASH_DASH] = ACTIONS(7791), + [anon_sym_PLUS_PLUS] = ACTIONS(7791), + [anon_sym_asm] = ACTIONS(6538), + [anon_sym___asm__] = ACTIONS(6538), + [anon_sym___asm] = ACTIONS(6497), + [anon_sym_DOT] = ACTIONS(7789), + [anon_sym_DOT_STAR] = ACTIONS(7791), + [anon_sym_DASH_GT] = ACTIONS(9211), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9216), + [anon_sym_override] = ACTIONS(9216), + [anon_sym_noexcept] = ACTIONS(7192), + [anon_sym_throw] = ACTIONS(7194), + [anon_sym_requires] = ACTIONS(9219), + [anon_sym_COLON_RBRACK] = ACTIONS(7791), + }, + [STATE(3693)] = { + [sym_string_literal] = STATE(5580), + [sym_template_argument_list] = STATE(6754), + [sym_raw_string_literal] = STATE(5580), + [aux_sym_structured_binding_declarator_repeat1] = STATE(9899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(9471), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(8925), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_RBRACK] = ACTIONS(9473), + [anon_sym_EQ] = ACTIONS(7044), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(7046), + [anon_sym_SLASH_EQ] = ACTIONS(7046), + [anon_sym_PERCENT_EQ] = ACTIONS(7046), + [anon_sym_PLUS_EQ] = ACTIONS(7046), + [anon_sym_DASH_EQ] = ACTIONS(7046), + [anon_sym_LT_LT_EQ] = ACTIONS(7046), + [anon_sym_GT_GT_EQ] = ACTIONS(7046), + [anon_sym_AMP_EQ] = ACTIONS(7046), + [anon_sym_CARET_EQ] = ACTIONS(7046), + [anon_sym_PIPE_EQ] = ACTIONS(7046), + [anon_sym_and_eq] = ACTIONS(7046), + [anon_sym_or_eq] = ACTIONS(7046), + [anon_sym_xor_eq] = ACTIONS(7046), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(7048), + [anon_sym_u_DQUOTE] = ACTIONS(7048), + [anon_sym_U_DQUOTE] = ACTIONS(7048), + [anon_sym_u8_DQUOTE] = ACTIONS(7048), + [anon_sym_DQUOTE] = ACTIONS(7048), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7054), + [anon_sym_LR_DQUOTE] = ACTIONS(7054), + [anon_sym_uR_DQUOTE] = ACTIONS(7054), + [anon_sym_UR_DQUOTE] = ACTIONS(7054), + [anon_sym_u8R_DQUOTE] = ACTIONS(7054), + }, + [STATE(3694)] = { + [sym_attribute_declaration] = STATE(3710), + [sym_parameter_list] = STATE(3140), + [aux_sym_attributed_declarator_repeat1] = STATE(3710), + [sym_identifier] = ACTIONS(9476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9478), + [anon_sym_COMMA] = ACTIONS(9478), + [anon_sym_RPAREN] = ACTIONS(9478), + [aux_sym_preproc_if_token2] = ACTIONS(9478), + [aux_sym_preproc_else_token1] = ACTIONS(9478), + [aux_sym_preproc_elif_token1] = ACTIONS(9476), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9478), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9478), + [anon_sym_LPAREN2] = ACTIONS(9304), + [anon_sym_DASH] = ACTIONS(9476), + [anon_sym_PLUS] = ACTIONS(9476), + [anon_sym_STAR] = ACTIONS(9476), + [anon_sym_SLASH] = ACTIONS(9476), + [anon_sym_PERCENT] = ACTIONS(9476), + [anon_sym_PIPE_PIPE] = ACTIONS(9478), + [anon_sym_AMP_AMP] = ACTIONS(9478), + [anon_sym_PIPE] = ACTIONS(9476), + [anon_sym_CARET] = ACTIONS(9476), + [anon_sym_AMP] = ACTIONS(9476), + [anon_sym_EQ_EQ] = ACTIONS(9478), + [anon_sym_BANG_EQ] = ACTIONS(9478), + [anon_sym_GT] = ACTIONS(9476), + [anon_sym_GT_EQ] = ACTIONS(9478), + [anon_sym_LT_EQ] = ACTIONS(9476), + [anon_sym_LT] = ACTIONS(9476), + [anon_sym_LT_LT] = ACTIONS(9476), + [anon_sym_GT_GT] = ACTIONS(9476), + [anon_sym_SEMI] = ACTIONS(9478), + [anon_sym___attribute__] = ACTIONS(9476), + [anon_sym___attribute] = ACTIONS(9476), + [anon_sym_COLON] = ACTIONS(9476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACE] = ACTIONS(9478), + [anon_sym_LBRACK] = ACTIONS(9306), + [anon_sym_EQ] = ACTIONS(9476), + [anon_sym_QMARK] = ACTIONS(9478), + [anon_sym_STAR_EQ] = ACTIONS(9478), + [anon_sym_SLASH_EQ] = ACTIONS(9478), + [anon_sym_PERCENT_EQ] = ACTIONS(9478), + [anon_sym_PLUS_EQ] = ACTIONS(9478), + [anon_sym_DASH_EQ] = ACTIONS(9478), + [anon_sym_LT_LT_EQ] = ACTIONS(9478), + [anon_sym_GT_GT_EQ] = ACTIONS(9478), + [anon_sym_AMP_EQ] = ACTIONS(9478), + [anon_sym_CARET_EQ] = ACTIONS(9478), + [anon_sym_PIPE_EQ] = ACTIONS(9478), + [anon_sym_and_eq] = ACTIONS(9476), + [anon_sym_or_eq] = ACTIONS(9476), + [anon_sym_xor_eq] = ACTIONS(9476), + [anon_sym_LT_EQ_GT] = ACTIONS(9478), + [anon_sym_or] = ACTIONS(9476), + [anon_sym_and] = ACTIONS(9476), + [anon_sym_bitor] = ACTIONS(9476), + [anon_sym_xor] = ACTIONS(9476), + [anon_sym_bitand] = ACTIONS(9476), + [anon_sym_not_eq] = ACTIONS(9476), + [anon_sym_DASH_DASH] = ACTIONS(9478), + [anon_sym_PLUS_PLUS] = ACTIONS(9478), + [anon_sym_DOT] = ACTIONS(9476), + [anon_sym_DOT_STAR] = ACTIONS(9478), + [anon_sym_DASH_GT] = ACTIONS(9478), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9478), + }, + [STATE(3695)] = { + [sym_string_literal] = STATE(4105), + [sym_template_argument_list] = STATE(5616), + [sym_raw_string_literal] = STATE(4105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(7101), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5638), + [anon_sym_COLON] = ACTIONS(5696), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5663), + [anon_sym_SLASH_EQ] = ACTIONS(5663), + [anon_sym_PERCENT_EQ] = ACTIONS(5663), + [anon_sym_PLUS_EQ] = ACTIONS(5663), + [anon_sym_DASH_EQ] = ACTIONS(5663), + [anon_sym_LT_LT_EQ] = ACTIONS(5663), + [anon_sym_GT_GT_EQ] = ACTIONS(5663), + [anon_sym_AMP_EQ] = ACTIONS(5663), + [anon_sym_CARET_EQ] = ACTIONS(5663), + [anon_sym_PIPE_EQ] = ACTIONS(5663), + [anon_sym_and_eq] = ACTIONS(5663), + [anon_sym_or_eq] = ACTIONS(5663), + [anon_sym_xor_eq] = ACTIONS(5663), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + }, + [STATE(3696)] = { + [sym_attribute_declaration] = STATE(3710), + [sym_parameter_list] = STATE(3140), + [aux_sym_attributed_declarator_repeat1] = STATE(3710), + [sym_identifier] = ACTIONS(9480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9482), + [anon_sym_COMMA] = ACTIONS(9482), + [anon_sym_RPAREN] = ACTIONS(9482), + [aux_sym_preproc_if_token2] = ACTIONS(9482), + [aux_sym_preproc_else_token1] = ACTIONS(9482), + [aux_sym_preproc_elif_token1] = ACTIONS(9480), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9482), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9482), + [anon_sym_LPAREN2] = ACTIONS(9304), + [anon_sym_DASH] = ACTIONS(9480), + [anon_sym_PLUS] = ACTIONS(9480), + [anon_sym_STAR] = ACTIONS(9480), + [anon_sym_SLASH] = ACTIONS(9480), + [anon_sym_PERCENT] = ACTIONS(9480), + [anon_sym_PIPE_PIPE] = ACTIONS(9482), + [anon_sym_AMP_AMP] = ACTIONS(9482), + [anon_sym_PIPE] = ACTIONS(9480), + [anon_sym_CARET] = ACTIONS(9480), + [anon_sym_AMP] = ACTIONS(9480), + [anon_sym_EQ_EQ] = ACTIONS(9482), + [anon_sym_BANG_EQ] = ACTIONS(9482), + [anon_sym_GT] = ACTIONS(9480), + [anon_sym_GT_EQ] = ACTIONS(9482), + [anon_sym_LT_EQ] = ACTIONS(9480), + [anon_sym_LT] = ACTIONS(9480), + [anon_sym_LT_LT] = ACTIONS(9480), + [anon_sym_GT_GT] = ACTIONS(9480), + [anon_sym_SEMI] = ACTIONS(9482), + [anon_sym___attribute__] = ACTIONS(9480), + [anon_sym___attribute] = ACTIONS(9480), + [anon_sym_COLON] = ACTIONS(9480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACE] = ACTIONS(9482), + [anon_sym_LBRACK] = ACTIONS(9306), + [anon_sym_EQ] = ACTIONS(9480), + [anon_sym_QMARK] = ACTIONS(9482), + [anon_sym_STAR_EQ] = ACTIONS(9482), + [anon_sym_SLASH_EQ] = ACTIONS(9482), + [anon_sym_PERCENT_EQ] = ACTIONS(9482), + [anon_sym_PLUS_EQ] = ACTIONS(9482), + [anon_sym_DASH_EQ] = ACTIONS(9482), + [anon_sym_LT_LT_EQ] = ACTIONS(9482), + [anon_sym_GT_GT_EQ] = ACTIONS(9482), + [anon_sym_AMP_EQ] = ACTIONS(9482), + [anon_sym_CARET_EQ] = ACTIONS(9482), + [anon_sym_PIPE_EQ] = ACTIONS(9482), + [anon_sym_and_eq] = ACTIONS(9480), + [anon_sym_or_eq] = ACTIONS(9480), + [anon_sym_xor_eq] = ACTIONS(9480), + [anon_sym_LT_EQ_GT] = ACTIONS(9482), + [anon_sym_or] = ACTIONS(9480), + [anon_sym_and] = ACTIONS(9480), + [anon_sym_bitor] = ACTIONS(9480), + [anon_sym_xor] = ACTIONS(9480), + [anon_sym_bitand] = ACTIONS(9480), + [anon_sym_not_eq] = ACTIONS(9480), + [anon_sym_DASH_DASH] = ACTIONS(9482), + [anon_sym_PLUS_PLUS] = ACTIONS(9482), + [anon_sym_DOT] = ACTIONS(9480), + [anon_sym_DOT_STAR] = ACTIONS(9482), + [anon_sym_DASH_GT] = ACTIONS(9482), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9482), + }, + [STATE(3697)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(8699), + [anon_sym_COMMA] = ACTIONS(8699), + [anon_sym_RPAREN] = ACTIONS(8699), + [anon_sym_LPAREN2] = ACTIONS(8699), + [anon_sym_DASH] = ACTIONS(8697), + [anon_sym_PLUS] = ACTIONS(8697), + [anon_sym_STAR] = ACTIONS(8697), + [anon_sym_SLASH] = ACTIONS(8697), + [anon_sym_PERCENT] = ACTIONS(8697), + [anon_sym_PIPE_PIPE] = ACTIONS(8699), + [anon_sym_AMP_AMP] = ACTIONS(8699), + [anon_sym_PIPE] = ACTIONS(8697), + [anon_sym_CARET] = ACTIONS(8697), + [anon_sym_AMP] = ACTIONS(8697), + [anon_sym_EQ_EQ] = ACTIONS(8699), + [anon_sym_BANG_EQ] = ACTIONS(8699), + [anon_sym_GT] = ACTIONS(8697), + [anon_sym_GT_EQ] = ACTIONS(8699), + [anon_sym_LT_EQ] = ACTIONS(8697), + [anon_sym_LT] = ACTIONS(8697), + [anon_sym_LT_LT] = ACTIONS(8697), + [anon_sym_GT_GT] = ACTIONS(8697), + [anon_sym_SEMI] = ACTIONS(8699), + [anon_sym_COLON] = ACTIONS(8697), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8699), + [anon_sym_RBRACE] = ACTIONS(8699), + [anon_sym_LBRACK] = ACTIONS(8699), + [anon_sym_EQ] = ACTIONS(8697), + [anon_sym_QMARK] = ACTIONS(8699), + [anon_sym_STAR_EQ] = ACTIONS(8699), + [anon_sym_SLASH_EQ] = ACTIONS(8699), + [anon_sym_PERCENT_EQ] = ACTIONS(8699), + [anon_sym_PLUS_EQ] = ACTIONS(8699), + [anon_sym_DASH_EQ] = ACTIONS(8699), + [anon_sym_LT_LT_EQ] = ACTIONS(8699), + [anon_sym_GT_GT_EQ] = ACTIONS(8699), + [anon_sym_AMP_EQ] = ACTIONS(8699), + [anon_sym_CARET_EQ] = ACTIONS(8699), + [anon_sym_PIPE_EQ] = ACTIONS(8699), + [anon_sym_and_eq] = ACTIONS(8697), + [anon_sym_or_eq] = ACTIONS(8697), + [anon_sym_xor_eq] = ACTIONS(8697), + [anon_sym_LT_EQ_GT] = ACTIONS(8699), + [anon_sym_or] = ACTIONS(8697), + [anon_sym_and] = ACTIONS(8697), + [anon_sym_bitor] = ACTIONS(8697), + [anon_sym_xor] = ACTIONS(8697), + [anon_sym_bitand] = ACTIONS(8697), + [anon_sym_not_eq] = ACTIONS(8697), + [anon_sym_DASH_DASH] = ACTIONS(8699), + [anon_sym_PLUS_PLUS] = ACTIONS(8699), + [anon_sym_DOT] = ACTIONS(8697), + [anon_sym_DOT_STAR] = ACTIONS(8699), + [anon_sym_DASH_GT] = ACTIONS(8699), + [anon_sym_L_DQUOTE] = ACTIONS(8699), + [anon_sym_u_DQUOTE] = ACTIONS(8699), + [anon_sym_U_DQUOTE] = ACTIONS(8699), + [anon_sym_u8_DQUOTE] = ACTIONS(8699), + [anon_sym_DQUOTE] = ACTIONS(8699), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8699), + [anon_sym_LR_DQUOTE] = ACTIONS(8699), + [anon_sym_uR_DQUOTE] = ACTIONS(8699), + [anon_sym_UR_DQUOTE] = ACTIONS(8699), + [anon_sym_u8R_DQUOTE] = ACTIONS(8699), + [anon_sym_COLON_RBRACK] = ACTIONS(8699), + [sym_literal_suffix] = ACTIONS(8697), + }, + [STATE(3698)] = { + [sym_attribute_declaration] = STATE(3710), + [sym_parameter_list] = STATE(3140), + [aux_sym_attributed_declarator_repeat1] = STATE(3710), + [sym_identifier] = ACTIONS(9484), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9486), + [anon_sym_COMMA] = ACTIONS(9486), + [anon_sym_RPAREN] = ACTIONS(9486), + [aux_sym_preproc_if_token2] = ACTIONS(9486), + [aux_sym_preproc_else_token1] = ACTIONS(9486), + [aux_sym_preproc_elif_token1] = ACTIONS(9484), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9486), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9486), + [anon_sym_LPAREN2] = ACTIONS(9304), + [anon_sym_DASH] = ACTIONS(9484), + [anon_sym_PLUS] = ACTIONS(9484), + [anon_sym_STAR] = ACTIONS(9484), + [anon_sym_SLASH] = ACTIONS(9484), + [anon_sym_PERCENT] = ACTIONS(9484), + [anon_sym_PIPE_PIPE] = ACTIONS(9486), + [anon_sym_AMP_AMP] = ACTIONS(9486), + [anon_sym_PIPE] = ACTIONS(9484), + [anon_sym_CARET] = ACTIONS(9484), + [anon_sym_AMP] = ACTIONS(9484), + [anon_sym_EQ_EQ] = ACTIONS(9486), + [anon_sym_BANG_EQ] = ACTIONS(9486), + [anon_sym_GT] = ACTIONS(9484), + [anon_sym_GT_EQ] = ACTIONS(9486), + [anon_sym_LT_EQ] = ACTIONS(9484), + [anon_sym_LT] = ACTIONS(9484), + [anon_sym_LT_LT] = ACTIONS(9484), + [anon_sym_GT_GT] = ACTIONS(9484), + [anon_sym_SEMI] = ACTIONS(9486), + [anon_sym___attribute__] = ACTIONS(9484), + [anon_sym___attribute] = ACTIONS(9484), + [anon_sym_COLON] = ACTIONS(9484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACE] = ACTIONS(9486), + [anon_sym_LBRACK] = ACTIONS(9306), + [anon_sym_EQ] = ACTIONS(9484), + [anon_sym_QMARK] = ACTIONS(9486), + [anon_sym_STAR_EQ] = ACTIONS(9486), + [anon_sym_SLASH_EQ] = ACTIONS(9486), + [anon_sym_PERCENT_EQ] = ACTIONS(9486), + [anon_sym_PLUS_EQ] = ACTIONS(9486), + [anon_sym_DASH_EQ] = ACTIONS(9486), + [anon_sym_LT_LT_EQ] = ACTIONS(9486), + [anon_sym_GT_GT_EQ] = ACTIONS(9486), + [anon_sym_AMP_EQ] = ACTIONS(9486), + [anon_sym_CARET_EQ] = ACTIONS(9486), + [anon_sym_PIPE_EQ] = ACTIONS(9486), + [anon_sym_and_eq] = ACTIONS(9484), + [anon_sym_or_eq] = ACTIONS(9484), + [anon_sym_xor_eq] = ACTIONS(9484), + [anon_sym_LT_EQ_GT] = ACTIONS(9486), + [anon_sym_or] = ACTIONS(9484), + [anon_sym_and] = ACTIONS(9484), + [anon_sym_bitor] = ACTIONS(9484), + [anon_sym_xor] = ACTIONS(9484), + [anon_sym_bitand] = ACTIONS(9484), + [anon_sym_not_eq] = ACTIONS(9484), + [anon_sym_DASH_DASH] = ACTIONS(9486), + [anon_sym_PLUS_PLUS] = ACTIONS(9486), + [anon_sym_DOT] = ACTIONS(9484), + [anon_sym_DOT_STAR] = ACTIONS(9486), + [anon_sym_DASH_GT] = ACTIONS(9486), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9486), + }, + [STATE(3699)] = { + [sym_identifier] = ACTIONS(7085), + [anon_sym_LPAREN2] = ACTIONS(7090), + [anon_sym_TILDE] = ACTIONS(7090), + [anon_sym_STAR] = ACTIONS(7090), + [anon_sym_PIPE_PIPE] = ACTIONS(7090), + [anon_sym_AMP_AMP] = ACTIONS(7090), + [anon_sym_AMP] = ACTIONS(7085), + [anon_sym___extension__] = ACTIONS(7085), + [anon_sym_virtual] = ACTIONS(7085), + [anon_sym_extern] = ACTIONS(7085), + [anon_sym___attribute__] = ACTIONS(7085), + [anon_sym___attribute] = ACTIONS(7085), + [anon_sym_using] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7090), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7090), + [anon_sym___declspec] = ACTIONS(7085), + [anon_sym___based] = ACTIONS(7085), + [anon_sym___cdecl] = ACTIONS(7085), + [anon_sym___clrcall] = ACTIONS(7085), + [anon_sym___stdcall] = ACTIONS(7085), + [anon_sym___fastcall] = ACTIONS(7085), + [anon_sym___thiscall] = ACTIONS(7085), + [anon_sym___vectorcall] = ACTIONS(7085), + [anon_sym_signed] = ACTIONS(7085), + [anon_sym_unsigned] = ACTIONS(7085), + [anon_sym_long] = ACTIONS(7085), + [anon_sym_short] = ACTIONS(7085), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym_static] = ACTIONS(7085), + [anon_sym_register] = ACTIONS(7085), + [anon_sym_inline] = ACTIONS(7085), + [anon_sym___inline] = ACTIONS(7085), + [anon_sym___inline__] = ACTIONS(7085), + [anon_sym___forceinline] = ACTIONS(7085), + [anon_sym_thread_local] = ACTIONS(7085), + [anon_sym___thread] = ACTIONS(7085), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7085), + [anon_sym_volatile] = ACTIONS(7085), + [anon_sym_restrict] = ACTIONS(7085), + [anon_sym___restrict__] = ACTIONS(7085), + [anon_sym__Atomic] = ACTIONS(7085), + [anon_sym__Noreturn] = ACTIONS(7085), + [anon_sym_noreturn] = ACTIONS(7085), + [anon_sym__Nonnull] = ACTIONS(7085), + [anon_sym_mutable] = ACTIONS(7085), + [anon_sym_constinit] = ACTIONS(7085), + [anon_sym_consteval] = ACTIONS(7085), + [anon_sym_alignas] = ACTIONS(7085), + [anon_sym__Alignas] = ACTIONS(7085), + [sym_primitive_type] = ACTIONS(7085), + [anon_sym_enum] = ACTIONS(7085), + [anon_sym_class] = ACTIONS(7085), + [anon_sym_struct] = ACTIONS(7085), + [anon_sym_union] = ACTIONS(7085), + [anon_sym_or] = ACTIONS(7085), + [anon_sym_and] = ACTIONS(7085), + [anon_sym_typename] = ACTIONS(7085), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7085), + [anon_sym_decltype] = ACTIONS(7085), + [anon_sym_explicit] = ACTIONS(7085), + [anon_sym_template] = ACTIONS(7085), + [anon_sym_operator] = ACTIONS(7085), + [anon_sym_friend] = ACTIONS(7085), + [anon_sym_concept] = ACTIONS(7085), + [anon_sym_LBRACK_COLON] = ACTIONS(7090), + }, + [STATE(3700)] = { + [sym__abstract_declarator] = STATE(4243), + [sym_abstract_parenthesized_declarator] = STATE(3625), + [sym_abstract_pointer_declarator] = STATE(3625), + [sym_abstract_function_declarator] = STATE(3625), + [sym_abstract_array_declarator] = STATE(3625), + [sym_parameter_list] = STATE(1947), + [sym_abstract_reference_declarator] = STATE(3625), + [sym__function_declarator_seq] = STATE(3626), + [sym_identifier] = ACTIONS(9429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9427), + [anon_sym_COMMA] = ACTIONS(9427), + [aux_sym_preproc_if_token2] = ACTIONS(9427), + [aux_sym_preproc_else_token1] = ACTIONS(9427), + [aux_sym_preproc_elif_token1] = ACTIONS(9429), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9427), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9427), + [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(9429), + [anon_sym_PLUS] = ACTIONS(9429), + [anon_sym_STAR] = ACTIONS(6827), + [anon_sym_SLASH] = ACTIONS(9429), + [anon_sym_PERCENT] = ACTIONS(9429), + [anon_sym_PIPE_PIPE] = ACTIONS(9427), + [anon_sym_AMP_AMP] = ACTIONS(6829), + [anon_sym_PIPE] = ACTIONS(9429), + [anon_sym_CARET] = ACTIONS(9429), + [anon_sym_AMP] = ACTIONS(6831), + [anon_sym_EQ_EQ] = ACTIONS(9427), + [anon_sym_BANG_EQ] = ACTIONS(9427), + [anon_sym_GT] = ACTIONS(9429), + [anon_sym_GT_EQ] = ACTIONS(9427), + [anon_sym_LT_EQ] = ACTIONS(9429), + [anon_sym_LT] = ACTIONS(9429), + [anon_sym_LT_LT] = ACTIONS(9429), + [anon_sym_GT_GT] = ACTIONS(9429), + [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_EQ] = ACTIONS(9429), + [anon_sym_QMARK] = ACTIONS(9427), + [anon_sym_STAR_EQ] = ACTIONS(9427), + [anon_sym_SLASH_EQ] = ACTIONS(9427), + [anon_sym_PERCENT_EQ] = ACTIONS(9427), + [anon_sym_PLUS_EQ] = ACTIONS(9427), + [anon_sym_DASH_EQ] = ACTIONS(9427), + [anon_sym_LT_LT_EQ] = ACTIONS(9427), + [anon_sym_GT_GT_EQ] = ACTIONS(9427), + [anon_sym_AMP_EQ] = ACTIONS(9427), + [anon_sym_CARET_EQ] = ACTIONS(9427), + [anon_sym_PIPE_EQ] = ACTIONS(9427), + [anon_sym_and_eq] = ACTIONS(9429), + [anon_sym_or_eq] = ACTIONS(9429), + [anon_sym_xor_eq] = ACTIONS(9429), + [anon_sym_LT_EQ_GT] = ACTIONS(9427), + [anon_sym_or] = ACTIONS(9429), + [anon_sym_and] = ACTIONS(9429), + [anon_sym_bitor] = ACTIONS(9429), + [anon_sym_xor] = ACTIONS(9429), + [anon_sym_bitand] = ACTIONS(9429), + [anon_sym_not_eq] = ACTIONS(9429), + [anon_sym_DASH_DASH] = ACTIONS(9427), + [anon_sym_PLUS_PLUS] = ACTIONS(9427), + [anon_sym_DOT] = ACTIONS(9429), + [anon_sym_DOT_STAR] = ACTIONS(9427), + [anon_sym_DASH_GT] = ACTIONS(9427), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9429), + [anon_sym_override] = ACTIONS(9429), + [anon_sym_requires] = ACTIONS(9429), + }, + [STATE(3701)] = { + [sym_string_literal] = STATE(3858), + [sym_template_argument_list] = STATE(5916), + [sym_raw_string_literal] = STATE(3858), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_RPAREN] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(9488), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5638), + [anon_sym_SLASH_EQ] = ACTIONS(5638), + [anon_sym_PERCENT_EQ] = ACTIONS(5638), + [anon_sym_PLUS_EQ] = ACTIONS(5638), + [anon_sym_DASH_EQ] = ACTIONS(5638), + [anon_sym_LT_LT_EQ] = ACTIONS(5638), + [anon_sym_GT_GT_EQ] = ACTIONS(5638), + [anon_sym_AMP_EQ] = ACTIONS(5638), + [anon_sym_CARET_EQ] = ACTIONS(5638), + [anon_sym_PIPE_EQ] = ACTIONS(5638), + [anon_sym_and_eq] = ACTIONS(6958), + [anon_sym_or_eq] = ACTIONS(6958), + [anon_sym_xor_eq] = ACTIONS(6958), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5645), + [anon_sym_L_DQUOTE] = ACTIONS(5995), + [anon_sym_u_DQUOTE] = ACTIONS(5995), + [anon_sym_U_DQUOTE] = ACTIONS(5995), + [anon_sym_u8_DQUOTE] = ACTIONS(5995), + [anon_sym_DQUOTE] = ACTIONS(5995), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5997), + [anon_sym_LR_DQUOTE] = ACTIONS(5997), + [anon_sym_uR_DQUOTE] = ACTIONS(5997), + [anon_sym_UR_DQUOTE] = ACTIONS(5997), + [anon_sym_u8R_DQUOTE] = ACTIONS(5997), + [anon_sym_DASH_GT_STAR] = ACTIONS(5638), + }, + [STATE(3702)] = { + [sym_identifier] = ACTIONS(9011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9013), + [anon_sym_COMMA] = ACTIONS(9013), + [anon_sym_RPAREN] = ACTIONS(9013), + [aux_sym_preproc_if_token2] = ACTIONS(9013), + [aux_sym_preproc_else_token1] = ACTIONS(9013), + [aux_sym_preproc_elif_token1] = ACTIONS(9011), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9013), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9013), + [anon_sym_LPAREN2] = ACTIONS(9013), + [anon_sym_DASH] = ACTIONS(9011), + [anon_sym_PLUS] = ACTIONS(9011), + [anon_sym_STAR] = ACTIONS(9011), + [anon_sym_SLASH] = ACTIONS(9011), + [anon_sym_PERCENT] = ACTIONS(9011), + [anon_sym_PIPE_PIPE] = ACTIONS(9013), + [anon_sym_AMP_AMP] = ACTIONS(9013), + [anon_sym_PIPE] = ACTIONS(9011), + [anon_sym_CARET] = ACTIONS(9011), + [anon_sym_AMP] = ACTIONS(9011), + [anon_sym_EQ_EQ] = ACTIONS(9013), + [anon_sym_BANG_EQ] = ACTIONS(9013), + [anon_sym_GT] = ACTIONS(9011), + [anon_sym_GT_EQ] = ACTIONS(9013), + [anon_sym_LT_EQ] = ACTIONS(9011), + [anon_sym_LT] = ACTIONS(9011), + [anon_sym_LT_LT] = ACTIONS(9011), + [anon_sym_GT_GT] = ACTIONS(9011), + [anon_sym_SEMI] = ACTIONS(9013), + [anon_sym___attribute__] = ACTIONS(9011), + [anon_sym___attribute] = ACTIONS(9011), + [anon_sym_COLON] = ACTIONS(9011), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9013), + [anon_sym_RBRACE] = ACTIONS(9013), + [anon_sym_LBRACK] = ACTIONS(9013), + [anon_sym_EQ] = ACTIONS(9011), + [anon_sym_QMARK] = ACTIONS(9013), + [anon_sym_STAR_EQ] = ACTIONS(9013), + [anon_sym_SLASH_EQ] = ACTIONS(9013), + [anon_sym_PERCENT_EQ] = ACTIONS(9013), + [anon_sym_PLUS_EQ] = ACTIONS(9013), + [anon_sym_DASH_EQ] = ACTIONS(9013), + [anon_sym_LT_LT_EQ] = ACTIONS(9013), + [anon_sym_GT_GT_EQ] = ACTIONS(9013), + [anon_sym_AMP_EQ] = ACTIONS(9013), + [anon_sym_CARET_EQ] = ACTIONS(9013), + [anon_sym_PIPE_EQ] = ACTIONS(9013), + [anon_sym_and_eq] = ACTIONS(9011), + [anon_sym_or_eq] = ACTIONS(9011), + [anon_sym_xor_eq] = ACTIONS(9011), + [anon_sym_LT_EQ_GT] = ACTIONS(9013), + [anon_sym_or] = ACTIONS(9011), + [anon_sym_and] = ACTIONS(9011), + [anon_sym_bitor] = ACTIONS(9011), + [anon_sym_xor] = ACTIONS(9011), + [anon_sym_bitand] = ACTIONS(9011), + [anon_sym_not_eq] = ACTIONS(9011), + [anon_sym_DASH_DASH] = ACTIONS(9013), + [anon_sym_PLUS_PLUS] = ACTIONS(9013), + [anon_sym_DOT] = ACTIONS(9011), + [anon_sym_DOT_STAR] = ACTIONS(9013), + [anon_sym_DASH_GT] = ACTIONS(9013), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9011), + [anon_sym_override] = ACTIONS(9011), + [anon_sym_requires] = ACTIONS(9011), + [anon_sym_COLON_RBRACK] = ACTIONS(9013), + }, + [STATE(3703)] = { + [sym_argument_list] = STATE(3840), + [sym_initializer_list] = STATE(3840), + [sym_identifier] = ACTIONS(9491), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9493), + [anon_sym_COMMA] = ACTIONS(9493), + [anon_sym_RPAREN] = ACTIONS(9493), + [aux_sym_preproc_if_token2] = ACTIONS(9493), + [aux_sym_preproc_else_token1] = ACTIONS(9493), + [aux_sym_preproc_elif_token1] = ACTIONS(9491), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9493), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9493), + [anon_sym_LPAREN2] = ACTIONS(9230), + [anon_sym_DASH] = ACTIONS(9491), + [anon_sym_PLUS] = ACTIONS(9491), + [anon_sym_STAR] = ACTIONS(9491), + [anon_sym_SLASH] = ACTIONS(9491), + [anon_sym_PERCENT] = ACTIONS(9491), + [anon_sym_PIPE_PIPE] = ACTIONS(9493), + [anon_sym_AMP_AMP] = ACTIONS(9493), + [anon_sym_PIPE] = ACTIONS(9491), + [anon_sym_CARET] = ACTIONS(9491), + [anon_sym_AMP] = ACTIONS(9491), + [anon_sym_EQ_EQ] = ACTIONS(9493), + [anon_sym_BANG_EQ] = ACTIONS(9493), + [anon_sym_GT] = ACTIONS(9491), + [anon_sym_GT_EQ] = ACTIONS(9493), + [anon_sym_LT_EQ] = ACTIONS(9491), + [anon_sym_LT] = ACTIONS(9491), + [anon_sym_LT_LT] = ACTIONS(9491), + [anon_sym_GT_GT] = ACTIONS(9491), + [anon_sym_SEMI] = ACTIONS(9493), + [anon_sym___attribute__] = ACTIONS(9491), + [anon_sym___attribute] = ACTIONS(9491), + [anon_sym_COLON] = ACTIONS(9491), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9493), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(9493), + [anon_sym_LBRACK] = ACTIONS(9493), + [anon_sym_EQ] = ACTIONS(9491), + [anon_sym_QMARK] = ACTIONS(9493), + [anon_sym_STAR_EQ] = ACTIONS(9493), + [anon_sym_SLASH_EQ] = ACTIONS(9493), + [anon_sym_PERCENT_EQ] = ACTIONS(9493), + [anon_sym_PLUS_EQ] = ACTIONS(9493), + [anon_sym_DASH_EQ] = ACTIONS(9493), + [anon_sym_LT_LT_EQ] = ACTIONS(9493), + [anon_sym_GT_GT_EQ] = ACTIONS(9493), + [anon_sym_AMP_EQ] = ACTIONS(9493), + [anon_sym_CARET_EQ] = ACTIONS(9493), + [anon_sym_PIPE_EQ] = ACTIONS(9493), + [anon_sym_and_eq] = ACTIONS(9491), + [anon_sym_or_eq] = ACTIONS(9491), + [anon_sym_xor_eq] = ACTIONS(9491), + [anon_sym_LT_EQ_GT] = ACTIONS(9493), + [anon_sym_or] = ACTIONS(9491), + [anon_sym_and] = ACTIONS(9491), + [anon_sym_bitor] = ACTIONS(9491), + [anon_sym_xor] = ACTIONS(9491), + [anon_sym_bitand] = ACTIONS(9491), + [anon_sym_not_eq] = ACTIONS(9491), + [anon_sym_DASH_DASH] = ACTIONS(9493), + [anon_sym_PLUS_PLUS] = ACTIONS(9493), + [anon_sym_DOT] = ACTIONS(9491), + [anon_sym_DOT_STAR] = ACTIONS(9493), + [anon_sym_DASH_GT] = ACTIONS(9493), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9493), + }, + [STATE(3704)] = { + [sym__abstract_declarator] = STATE(6470), + [sym_abstract_parenthesized_declarator] = STATE(6708), + [sym_abstract_pointer_declarator] = STATE(6708), + [sym_abstract_function_declarator] = STATE(6708), + [sym_abstract_array_declarator] = STATE(6708), + [sym_type_qualifier] = STATE(3714), + [sym_alignas_qualifier] = STATE(3945), + [sym_parameter_list] = STATE(2277), + [sym_abstract_reference_declarator] = STATE(6708), + [sym__function_declarator_seq] = STATE(6709), + [aux_sym__type_definition_type_repeat1] = STATE(3714), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), + [anon_sym_COMMA] = ACTIONS(7391), + [anon_sym_LPAREN2] = ACTIONS(8600), + [anon_sym_DASH] = ACTIONS(7393), + [anon_sym_PLUS] = ACTIONS(7393), + [anon_sym_STAR] = ACTIONS(8602), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_PERCENT] = ACTIONS(7391), + [anon_sym_PIPE_PIPE] = ACTIONS(7391), + [anon_sym_AMP_AMP] = ACTIONS(8604), + [anon_sym_PIPE] = ACTIONS(7393), + [anon_sym_CARET] = ACTIONS(7391), + [anon_sym_AMP] = ACTIONS(8606), + [anon_sym_EQ_EQ] = ACTIONS(7391), + [anon_sym_BANG_EQ] = ACTIONS(7391), + [anon_sym_GT] = ACTIONS(7393), + [anon_sym_GT_EQ] = ACTIONS(7393), + [anon_sym_LT_EQ] = ACTIONS(7393), + [anon_sym_LT] = ACTIONS(7393), + [anon_sym_LT_LT] = ACTIONS(7391), + [anon_sym_GT_GT] = ACTIONS(7393), + [anon_sym___extension__] = ACTIONS(8608), + [anon_sym_LBRACK] = ACTIONS(8616), + [anon_sym_const] = ACTIONS(8618), + [anon_sym_constexpr] = ACTIONS(8608), + [anon_sym_volatile] = ACTIONS(8608), + [anon_sym_restrict] = ACTIONS(8608), + [anon_sym___restrict__] = ACTIONS(8608), + [anon_sym__Atomic] = ACTIONS(8608), + [anon_sym__Noreturn] = ACTIONS(8608), + [anon_sym_noreturn] = ACTIONS(8608), + [anon_sym__Nonnull] = ACTIONS(8608), + [anon_sym_mutable] = ACTIONS(8608), + [anon_sym_constinit] = ACTIONS(8608), + [anon_sym_consteval] = ACTIONS(8608), + [anon_sym_alignas] = ACTIONS(8620), + [anon_sym__Alignas] = ACTIONS(8620), + [anon_sym_QMARK] = ACTIONS(7391), + [anon_sym_LT_EQ_GT] = ACTIONS(7391), + [anon_sym_or] = ACTIONS(7391), + [anon_sym_and] = ACTIONS(7391), + [anon_sym_bitor] = ACTIONS(7391), + [anon_sym_xor] = ACTIONS(7391), + [anon_sym_bitand] = ACTIONS(7391), + [anon_sym_not_eq] = ACTIONS(7391), + [anon_sym_DASH_DASH] = ACTIONS(7391), + [anon_sym_PLUS_PLUS] = ACTIONS(7391), + [anon_sym_DOT] = ACTIONS(7393), + [anon_sym_DOT_STAR] = ACTIONS(7391), + [anon_sym_DASH_GT] = ACTIONS(7391), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7391), + [anon_sym_override] = ACTIONS(7391), + [anon_sym_GT2] = ACTIONS(7391), + [anon_sym_requires] = ACTIONS(7391), + }, + [STATE(3705)] = { + [sym_template_argument_list] = STATE(3709), + [sym_identifier] = ACTIONS(9495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9497), + [anon_sym_COMMA] = ACTIONS(9497), + [anon_sym_RPAREN] = ACTIONS(9497), + [aux_sym_preproc_if_token2] = ACTIONS(9497), + [aux_sym_preproc_else_token1] = ACTIONS(9497), + [aux_sym_preproc_elif_token1] = ACTIONS(9495), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9497), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9497), + [anon_sym_LPAREN2] = ACTIONS(9497), + [anon_sym_DASH] = ACTIONS(9495), + [anon_sym_PLUS] = ACTIONS(9495), + [anon_sym_STAR] = ACTIONS(9495), + [anon_sym_SLASH] = ACTIONS(9495), + [anon_sym_PERCENT] = ACTIONS(9495), + [anon_sym_PIPE_PIPE] = ACTIONS(9497), + [anon_sym_AMP_AMP] = ACTIONS(9497), + [anon_sym_PIPE] = ACTIONS(9495), + [anon_sym_CARET] = ACTIONS(9495), + [anon_sym_AMP] = ACTIONS(9495), + [anon_sym_EQ_EQ] = ACTIONS(9497), + [anon_sym_BANG_EQ] = ACTIONS(9497), + [anon_sym_GT] = ACTIONS(9495), + [anon_sym_GT_EQ] = ACTIONS(9497), + [anon_sym_LT_EQ] = ACTIONS(9495), + [anon_sym_LT] = ACTIONS(9499), + [anon_sym_LT_LT] = ACTIONS(9495), + [anon_sym_GT_GT] = ACTIONS(9495), + [anon_sym_SEMI] = ACTIONS(9497), + [anon_sym___attribute__] = ACTIONS(9495), + [anon_sym___attribute] = ACTIONS(9495), + [anon_sym_COLON] = ACTIONS(9495), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9497), + [anon_sym_RBRACE] = ACTIONS(9497), + [anon_sym_LBRACK] = ACTIONS(9497), + [anon_sym_EQ] = ACTIONS(9495), + [anon_sym_QMARK] = ACTIONS(9497), + [anon_sym_STAR_EQ] = ACTIONS(9497), + [anon_sym_SLASH_EQ] = ACTIONS(9497), + [anon_sym_PERCENT_EQ] = ACTIONS(9497), + [anon_sym_PLUS_EQ] = ACTIONS(9497), + [anon_sym_DASH_EQ] = ACTIONS(9497), + [anon_sym_LT_LT_EQ] = ACTIONS(9497), + [anon_sym_GT_GT_EQ] = ACTIONS(9497), + [anon_sym_AMP_EQ] = ACTIONS(9497), + [anon_sym_CARET_EQ] = ACTIONS(9497), + [anon_sym_PIPE_EQ] = ACTIONS(9497), + [anon_sym_and_eq] = ACTIONS(9495), + [anon_sym_or_eq] = ACTIONS(9495), + [anon_sym_xor_eq] = ACTIONS(9495), + [anon_sym_LT_EQ_GT] = ACTIONS(9497), + [anon_sym_or] = ACTIONS(9495), + [anon_sym_and] = ACTIONS(9495), + [anon_sym_bitor] = ACTIONS(9495), + [anon_sym_xor] = ACTIONS(9495), + [anon_sym_bitand] = ACTIONS(9495), + [anon_sym_not_eq] = ACTIONS(9495), + [anon_sym_DASH_DASH] = ACTIONS(9497), + [anon_sym_PLUS_PLUS] = ACTIONS(9497), + [anon_sym_DOT] = ACTIONS(9495), + [anon_sym_DOT_STAR] = ACTIONS(9497), + [anon_sym_DASH_GT] = ACTIONS(9497), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9497), + }, + [STATE(3706)] = { + [sym_string_literal] = STATE(3706), + [sym_raw_string_literal] = STATE(3706), + [aux_sym_concatenated_string_repeat1] = STATE(3706), + [sym_identifier] = ACTIONS(9502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8406), + [anon_sym_COMMA] = ACTIONS(8406), + [anon_sym_LPAREN2] = ACTIONS(8406), + [anon_sym_DASH] = ACTIONS(8408), + [anon_sym_PLUS] = ACTIONS(8408), + [anon_sym_STAR] = ACTIONS(8408), + [anon_sym_SLASH] = ACTIONS(8408), + [anon_sym_PERCENT] = ACTIONS(8408), + [anon_sym_PIPE_PIPE] = ACTIONS(8406), + [anon_sym_AMP_AMP] = ACTIONS(8406), + [anon_sym_PIPE] = ACTIONS(8408), + [anon_sym_CARET] = ACTIONS(8408), + [anon_sym_AMP] = ACTIONS(8408), + [anon_sym_EQ_EQ] = ACTIONS(8406), + [anon_sym_BANG_EQ] = ACTIONS(8406), + [anon_sym_GT] = ACTIONS(8408), + [anon_sym_GT_EQ] = ACTIONS(8406), + [anon_sym_LT_EQ] = ACTIONS(8408), + [anon_sym_LT] = ACTIONS(8408), + [anon_sym_LT_LT] = ACTIONS(8408), + [anon_sym_GT_GT] = ACTIONS(8408), + [anon_sym_LBRACK] = ACTIONS(8406), + [anon_sym_RBRACK] = ACTIONS(8406), + [anon_sym_EQ] = ACTIONS(8408), + [anon_sym_QMARK] = ACTIONS(8406), + [anon_sym_STAR_EQ] = ACTIONS(8406), + [anon_sym_SLASH_EQ] = ACTIONS(8406), + [anon_sym_PERCENT_EQ] = ACTIONS(8406), + [anon_sym_PLUS_EQ] = ACTIONS(8406), + [anon_sym_DASH_EQ] = ACTIONS(8406), + [anon_sym_LT_LT_EQ] = ACTIONS(8406), + [anon_sym_GT_GT_EQ] = ACTIONS(8406), + [anon_sym_AMP_EQ] = ACTIONS(8406), + [anon_sym_CARET_EQ] = ACTIONS(8406), + [anon_sym_PIPE_EQ] = ACTIONS(8406), + [anon_sym_and_eq] = ACTIONS(8408), + [anon_sym_or_eq] = ACTIONS(8408), + [anon_sym_xor_eq] = ACTIONS(8408), + [anon_sym_LT_EQ_GT] = ACTIONS(8406), + [anon_sym_or] = ACTIONS(8408), + [anon_sym_and] = ACTIONS(8408), + [anon_sym_bitor] = ACTIONS(8408), + [anon_sym_xor] = ACTIONS(8408), + [anon_sym_bitand] = ACTIONS(8408), + [anon_sym_not_eq] = ACTIONS(8408), + [anon_sym_DASH_DASH] = ACTIONS(8406), + [anon_sym_PLUS_PLUS] = ACTIONS(8406), + [anon_sym_DOT] = ACTIONS(8408), + [anon_sym_DOT_STAR] = ACTIONS(8406), + [anon_sym_DASH_GT] = ACTIONS(8406), + [anon_sym_L_DQUOTE] = ACTIONS(9505), + [anon_sym_u_DQUOTE] = ACTIONS(9505), + [anon_sym_U_DQUOTE] = ACTIONS(9505), + [anon_sym_u8_DQUOTE] = ACTIONS(9505), + [anon_sym_DQUOTE] = ACTIONS(9505), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(9508), + [anon_sym_LR_DQUOTE] = ACTIONS(9508), + [anon_sym_uR_DQUOTE] = ACTIONS(9508), + [anon_sym_UR_DQUOTE] = ACTIONS(9508), + [anon_sym_u8R_DQUOTE] = ACTIONS(9508), + [sym_literal_suffix] = ACTIONS(8408), + }, + [STATE(3707)] = { + [sym_string_literal] = STATE(3727), + [sym_raw_string_literal] = STATE(3727), + [aux_sym_concatenated_string_repeat1] = STATE(3727), + [sym_identifier] = ACTIONS(9511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8454), + [anon_sym_COMMA] = ACTIONS(8454), + [anon_sym_LPAREN2] = ACTIONS(8454), + [anon_sym_DASH] = ACTIONS(8456), + [anon_sym_PLUS] = ACTIONS(8456), + [anon_sym_STAR] = ACTIONS(8456), + [anon_sym_SLASH] = ACTIONS(8456), + [anon_sym_PERCENT] = ACTIONS(8456), + [anon_sym_PIPE_PIPE] = ACTIONS(8454), + [anon_sym_AMP_AMP] = ACTIONS(8454), + [anon_sym_PIPE] = ACTIONS(8456), + [anon_sym_CARET] = ACTIONS(8456), + [anon_sym_AMP] = ACTIONS(8456), + [anon_sym_EQ_EQ] = ACTIONS(8454), + [anon_sym_BANG_EQ] = ACTIONS(8454), + [anon_sym_GT] = ACTIONS(8456), + [anon_sym_GT_EQ] = ACTIONS(8456), + [anon_sym_LT_EQ] = ACTIONS(8456), + [anon_sym_LT] = ACTIONS(8456), + [anon_sym_LT_LT] = ACTIONS(8456), + [anon_sym_GT_GT] = ACTIONS(8456), + [anon_sym_LBRACK] = ACTIONS(8454), + [anon_sym_EQ] = ACTIONS(8456), + [anon_sym_QMARK] = ACTIONS(8454), + [anon_sym_STAR_EQ] = ACTIONS(8454), + [anon_sym_SLASH_EQ] = ACTIONS(8454), + [anon_sym_PERCENT_EQ] = ACTIONS(8454), + [anon_sym_PLUS_EQ] = ACTIONS(8454), + [anon_sym_DASH_EQ] = ACTIONS(8454), + [anon_sym_LT_LT_EQ] = ACTIONS(8454), + [anon_sym_GT_GT_EQ] = ACTIONS(8456), + [anon_sym_AMP_EQ] = ACTIONS(8454), + [anon_sym_CARET_EQ] = ACTIONS(8454), + [anon_sym_PIPE_EQ] = ACTIONS(8454), + [anon_sym_and_eq] = ACTIONS(8456), + [anon_sym_or_eq] = ACTIONS(8456), + [anon_sym_xor_eq] = ACTIONS(8456), + [anon_sym_LT_EQ_GT] = ACTIONS(8454), + [anon_sym_or] = ACTIONS(8456), + [anon_sym_and] = ACTIONS(8456), + [anon_sym_bitor] = ACTIONS(8456), + [anon_sym_xor] = ACTIONS(8456), + [anon_sym_bitand] = ACTIONS(8456), + [anon_sym_not_eq] = ACTIONS(8456), + [anon_sym_DASH_DASH] = ACTIONS(8454), + [anon_sym_PLUS_PLUS] = ACTIONS(8454), + [anon_sym_DOT] = ACTIONS(8456), + [anon_sym_DOT_STAR] = ACTIONS(8454), + [anon_sym_DASH_GT] = ACTIONS(8454), + [anon_sym_L_DQUOTE] = ACTIONS(7034), + [anon_sym_u_DQUOTE] = ACTIONS(7034), + [anon_sym_U_DQUOTE] = ACTIONS(7034), + [anon_sym_u8_DQUOTE] = ACTIONS(7034), + [anon_sym_DQUOTE] = ACTIONS(7034), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(8454), + [anon_sym_R_DQUOTE] = ACTIONS(7040), + [anon_sym_LR_DQUOTE] = ACTIONS(7040), + [anon_sym_uR_DQUOTE] = ACTIONS(7040), + [anon_sym_UR_DQUOTE] = ACTIONS(7040), + [anon_sym_u8R_DQUOTE] = ACTIONS(7040), + [sym_literal_suffix] = ACTIONS(8456), + }, + [STATE(3708)] = { + [sym_type_qualifier] = STATE(3754), + [sym_alignas_qualifier] = STATE(4026), + [aux_sym__type_definition_type_repeat1] = STATE(3754), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), + [anon_sym_COMMA] = ACTIONS(6754), + [anon_sym_LPAREN2] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6752), + [anon_sym_STAR] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6752), + [anon_sym_PERCENT] = ACTIONS(6754), + [anon_sym_PIPE_PIPE] = ACTIONS(6754), + [anon_sym_AMP_AMP] = ACTIONS(6754), + [anon_sym_PIPE] = ACTIONS(6752), + [anon_sym_CARET] = ACTIONS(6754), + [anon_sym_AMP] = ACTIONS(6752), + [anon_sym_EQ_EQ] = ACTIONS(6754), + [anon_sym_BANG_EQ] = ACTIONS(6754), + [anon_sym_GT] = ACTIONS(6752), + [anon_sym_GT_EQ] = ACTIONS(6754), + [anon_sym_LT_EQ] = ACTIONS(6752), + [anon_sym_LT] = ACTIONS(6752), + [anon_sym_LT_LT] = ACTIONS(6754), + [anon_sym_GT_GT] = ACTIONS(6754), + [anon_sym___extension__] = ACTIONS(7882), + [anon_sym___attribute__] = ACTIONS(6754), + [anon_sym___attribute] = ACTIONS(6752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), + [anon_sym_LBRACK] = ACTIONS(6752), + [anon_sym_RBRACK] = ACTIONS(6754), + [anon_sym_const] = ACTIONS(7890), + [anon_sym_constexpr] = ACTIONS(7882), + [anon_sym_volatile] = ACTIONS(7882), + [anon_sym_restrict] = ACTIONS(7882), + [anon_sym___restrict__] = ACTIONS(7882), + [anon_sym__Atomic] = ACTIONS(7882), + [anon_sym__Noreturn] = ACTIONS(7882), + [anon_sym_noreturn] = ACTIONS(7882), + [anon_sym__Nonnull] = ACTIONS(7882), + [anon_sym_mutable] = ACTIONS(7882), + [anon_sym_constinit] = ACTIONS(7882), + [anon_sym_consteval] = ACTIONS(7882), + [anon_sym_alignas] = ACTIONS(7892), + [anon_sym__Alignas] = ACTIONS(7892), + [anon_sym_QMARK] = ACTIONS(6754), + [anon_sym_LT_EQ_GT] = ACTIONS(6754), + [anon_sym_or] = ACTIONS(6754), + [anon_sym_and] = ACTIONS(6754), + [anon_sym_bitor] = ACTIONS(6754), + [anon_sym_xor] = ACTIONS(6754), + [anon_sym_bitand] = ACTIONS(6754), + [anon_sym_not_eq] = ACTIONS(6754), + [anon_sym_DASH_DASH] = ACTIONS(6754), + [anon_sym_PLUS_PLUS] = ACTIONS(6754), + [anon_sym_asm] = ACTIONS(6754), + [anon_sym___asm__] = ACTIONS(6754), + [anon_sym___asm] = ACTIONS(6752), + [anon_sym_DOT] = ACTIONS(6752), + [anon_sym_DOT_STAR] = ACTIONS(6754), + [anon_sym_DASH_GT] = ACTIONS(6754), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6754), + [anon_sym_override] = ACTIONS(6754), + [anon_sym_noexcept] = ACTIONS(6754), + [anon_sym_throw] = ACTIONS(6754), + [anon_sym_requires] = ACTIONS(6754), + }, + [STATE(3709)] = { + [sym_identifier] = ACTIONS(9513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9515), + [anon_sym_COMMA] = ACTIONS(9515), + [anon_sym_RPAREN] = ACTIONS(9515), + [aux_sym_preproc_if_token2] = ACTIONS(9515), + [aux_sym_preproc_else_token1] = ACTIONS(9515), + [aux_sym_preproc_elif_token1] = ACTIONS(9513), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9515), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9515), + [anon_sym_LPAREN2] = ACTIONS(9515), + [anon_sym_DASH] = ACTIONS(9513), + [anon_sym_PLUS] = ACTIONS(9513), + [anon_sym_STAR] = ACTIONS(9513), + [anon_sym_SLASH] = ACTIONS(9513), + [anon_sym_PERCENT] = ACTIONS(9513), + [anon_sym_PIPE_PIPE] = ACTIONS(9515), + [anon_sym_AMP_AMP] = ACTIONS(9515), + [anon_sym_PIPE] = ACTIONS(9513), + [anon_sym_CARET] = ACTIONS(9513), + [anon_sym_AMP] = ACTIONS(9513), + [anon_sym_EQ_EQ] = ACTIONS(9515), + [anon_sym_BANG_EQ] = ACTIONS(9515), + [anon_sym_GT] = ACTIONS(9513), + [anon_sym_GT_EQ] = ACTIONS(9515), + [anon_sym_LT_EQ] = ACTIONS(9513), + [anon_sym_LT] = ACTIONS(9513), + [anon_sym_LT_LT] = ACTIONS(9513), + [anon_sym_GT_GT] = ACTIONS(9513), + [anon_sym_SEMI] = ACTIONS(9515), + [anon_sym___attribute__] = ACTIONS(9513), + [anon_sym___attribute] = ACTIONS(9513), + [anon_sym_COLON] = ACTIONS(9513), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9515), + [anon_sym_LBRACE] = ACTIONS(9515), + [anon_sym_RBRACE] = ACTIONS(9515), + [anon_sym_LBRACK] = ACTIONS(9515), + [anon_sym_EQ] = ACTIONS(9513), + [anon_sym_QMARK] = ACTIONS(9515), + [anon_sym_STAR_EQ] = ACTIONS(9515), + [anon_sym_SLASH_EQ] = ACTIONS(9515), + [anon_sym_PERCENT_EQ] = ACTIONS(9515), + [anon_sym_PLUS_EQ] = ACTIONS(9515), + [anon_sym_DASH_EQ] = ACTIONS(9515), + [anon_sym_LT_LT_EQ] = ACTIONS(9515), + [anon_sym_GT_GT_EQ] = ACTIONS(9515), + [anon_sym_AMP_EQ] = ACTIONS(9515), + [anon_sym_CARET_EQ] = ACTIONS(9515), + [anon_sym_PIPE_EQ] = ACTIONS(9515), + [anon_sym_and_eq] = ACTIONS(9513), + [anon_sym_or_eq] = ACTIONS(9513), + [anon_sym_xor_eq] = ACTIONS(9513), + [anon_sym_LT_EQ_GT] = ACTIONS(9515), + [anon_sym_or] = ACTIONS(9513), + [anon_sym_and] = ACTIONS(9513), + [anon_sym_bitor] = ACTIONS(9513), + [anon_sym_xor] = ACTIONS(9513), + [anon_sym_bitand] = ACTIONS(9513), + [anon_sym_not_eq] = ACTIONS(9513), + [anon_sym_DASH_DASH] = ACTIONS(9515), + [anon_sym_PLUS_PLUS] = ACTIONS(9515), + [anon_sym_DOT] = ACTIONS(9513), + [anon_sym_DOT_STAR] = ACTIONS(9515), + [anon_sym_DASH_GT] = ACTIONS(9515), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9515), + }, + [STATE(3710)] = { + [sym_attribute_declaration] = STATE(3170), + [aux_sym_attributed_declarator_repeat1] = STATE(3170), + [sym_identifier] = ACTIONS(9517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9519), + [anon_sym_COMMA] = ACTIONS(9519), + [anon_sym_RPAREN] = ACTIONS(9519), + [aux_sym_preproc_if_token2] = ACTIONS(9519), + [aux_sym_preproc_else_token1] = ACTIONS(9519), + [aux_sym_preproc_elif_token1] = ACTIONS(9517), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9519), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9519), + [anon_sym_LPAREN2] = ACTIONS(9519), + [anon_sym_DASH] = ACTIONS(9517), + [anon_sym_PLUS] = ACTIONS(9517), + [anon_sym_STAR] = ACTIONS(9517), + [anon_sym_SLASH] = ACTIONS(9517), + [anon_sym_PERCENT] = ACTIONS(9517), + [anon_sym_PIPE_PIPE] = ACTIONS(9519), + [anon_sym_AMP_AMP] = ACTIONS(9519), + [anon_sym_PIPE] = ACTIONS(9517), + [anon_sym_CARET] = ACTIONS(9517), + [anon_sym_AMP] = ACTIONS(9517), + [anon_sym_EQ_EQ] = ACTIONS(9519), + [anon_sym_BANG_EQ] = ACTIONS(9519), + [anon_sym_GT] = ACTIONS(9517), + [anon_sym_GT_EQ] = ACTIONS(9519), + [anon_sym_LT_EQ] = ACTIONS(9517), + [anon_sym_LT] = ACTIONS(9517), + [anon_sym_LT_LT] = ACTIONS(9517), + [anon_sym_GT_GT] = ACTIONS(9517), + [anon_sym_SEMI] = ACTIONS(9519), + [anon_sym___attribute__] = ACTIONS(9517), + [anon_sym___attribute] = ACTIONS(9517), + [anon_sym_COLON] = ACTIONS(9517), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), + [anon_sym_RBRACE] = ACTIONS(9519), + [anon_sym_LBRACK] = ACTIONS(9517), + [anon_sym_EQ] = ACTIONS(9517), + [anon_sym_QMARK] = ACTIONS(9519), + [anon_sym_STAR_EQ] = ACTIONS(9519), + [anon_sym_SLASH_EQ] = ACTIONS(9519), + [anon_sym_PERCENT_EQ] = ACTIONS(9519), + [anon_sym_PLUS_EQ] = ACTIONS(9519), + [anon_sym_DASH_EQ] = ACTIONS(9519), + [anon_sym_LT_LT_EQ] = ACTIONS(9519), + [anon_sym_GT_GT_EQ] = ACTIONS(9519), + [anon_sym_AMP_EQ] = ACTIONS(9519), + [anon_sym_CARET_EQ] = ACTIONS(9519), + [anon_sym_PIPE_EQ] = ACTIONS(9519), + [anon_sym_and_eq] = ACTIONS(9517), + [anon_sym_or_eq] = ACTIONS(9517), + [anon_sym_xor_eq] = ACTIONS(9517), + [anon_sym_LT_EQ_GT] = ACTIONS(9519), + [anon_sym_or] = ACTIONS(9517), + [anon_sym_and] = ACTIONS(9517), + [anon_sym_bitor] = ACTIONS(9517), + [anon_sym_xor] = ACTIONS(9517), + [anon_sym_bitand] = ACTIONS(9517), + [anon_sym_not_eq] = ACTIONS(9517), + [anon_sym_DASH_DASH] = ACTIONS(9519), + [anon_sym_PLUS_PLUS] = ACTIONS(9519), + [anon_sym_DOT] = ACTIONS(9517), + [anon_sym_DOT_STAR] = ACTIONS(9519), + [anon_sym_DASH_GT] = ACTIONS(9519), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9519), + }, + [STATE(3711)] = { + [sym_identifier] = ACTIONS(7085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), + [anon_sym_COMMA] = ACTIONS(7090), + [aux_sym_preproc_if_token2] = ACTIONS(7090), + [aux_sym_preproc_else_token1] = ACTIONS(7090), + [aux_sym_preproc_elif_token1] = ACTIONS(7085), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7090), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7090), + [anon_sym_LPAREN2] = ACTIONS(7090), + [anon_sym_DASH] = ACTIONS(7085), + [anon_sym_PLUS] = ACTIONS(7085), + [anon_sym_STAR] = ACTIONS(7090), + [anon_sym_SLASH] = ACTIONS(7085), + [anon_sym_PERCENT] = ACTIONS(7090), + [anon_sym_PIPE_PIPE] = ACTIONS(7090), + [anon_sym_AMP_AMP] = ACTIONS(7090), + [anon_sym_PIPE] = ACTIONS(7085), + [anon_sym_CARET] = ACTIONS(7090), + [anon_sym_AMP] = ACTIONS(7085), + [anon_sym_EQ_EQ] = ACTIONS(7090), + [anon_sym_BANG_EQ] = ACTIONS(7090), + [anon_sym_GT] = ACTIONS(7085), + [anon_sym_GT_EQ] = ACTIONS(7090), + [anon_sym_LT_EQ] = ACTIONS(7085), + [anon_sym_LT] = ACTIONS(7085), + [anon_sym_LT_LT] = ACTIONS(7090), + [anon_sym_GT_GT] = ACTIONS(7090), + [anon_sym___extension__] = ACTIONS(7085), + [anon_sym___attribute__] = ACTIONS(7085), + [anon_sym___attribute] = ACTIONS(7085), + [anon_sym_COLON] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7090), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_LBRACK] = ACTIONS(7090), + [anon_sym_RBRACK] = ACTIONS(7090), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7085), + [anon_sym_volatile] = ACTIONS(7085), + [anon_sym_restrict] = ACTIONS(7085), + [anon_sym___restrict__] = ACTIONS(7085), + [anon_sym__Atomic] = ACTIONS(7085), + [anon_sym__Noreturn] = ACTIONS(7085), + [anon_sym_noreturn] = ACTIONS(7085), + [anon_sym__Nonnull] = ACTIONS(7085), + [anon_sym_mutable] = ACTIONS(7085), + [anon_sym_constinit] = ACTIONS(7085), + [anon_sym_consteval] = ACTIONS(7085), + [anon_sym_alignas] = ACTIONS(7085), + [anon_sym__Alignas] = ACTIONS(7085), + [anon_sym_QMARK] = ACTIONS(7090), + [anon_sym_LT_EQ_GT] = ACTIONS(7090), + [anon_sym_or] = ACTIONS(7085), + [anon_sym_and] = ACTIONS(7085), + [anon_sym_bitor] = ACTIONS(7085), + [anon_sym_xor] = ACTIONS(7085), + [anon_sym_bitand] = ACTIONS(7085), + [anon_sym_not_eq] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7090), + [anon_sym_PLUS_PLUS] = ACTIONS(7090), + [anon_sym_DOT] = ACTIONS(7085), + [anon_sym_DOT_STAR] = ACTIONS(7090), + [anon_sym_DASH_GT] = ACTIONS(7090), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7085), + [anon_sym_override] = ACTIONS(7085), + [anon_sym_requires] = ACTIONS(7085), + }, + [STATE(3712)] = { + [sym_argument_list] = STATE(3894), + [sym_initializer_list] = STATE(5969), + [aux_sym_sized_type_specifier_repeat1] = STATE(3537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7687), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7225), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7225), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7225), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7225), + [anon_sym_GT_GT] = ACTIONS(7225), + [anon_sym_SEMI] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym___attribute__] = ACTIONS(7225), + [anon_sym___attribute] = ACTIONS(7223), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(7225), + [anon_sym_signed] = ACTIONS(9214), + [anon_sym_unsigned] = ACTIONS(9214), + [anon_sym_long] = ACTIONS(9214), + [anon_sym_short] = ACTIONS(9214), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7225), + [anon_sym_and] = ACTIONS(7225), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7225), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7225), + }, + [STATE(3713)] = { + [sym_string_literal] = STATE(3760), + [sym_template_argument_list] = STATE(5312), + [sym_raw_string_literal] = STATE(3760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5645), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(9521), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5638), + [anon_sym_SLASH_EQ] = ACTIONS(5638), + [anon_sym_PERCENT_EQ] = ACTIONS(5638), + [anon_sym_PLUS_EQ] = ACTIONS(5638), + [anon_sym_DASH_EQ] = ACTIONS(5638), + [anon_sym_LT_LT_EQ] = ACTIONS(5638), + [anon_sym_GT_GT_EQ] = ACTIONS(5645), + [anon_sym_AMP_EQ] = ACTIONS(5638), + [anon_sym_CARET_EQ] = ACTIONS(5638), + [anon_sym_PIPE_EQ] = ACTIONS(5638), + [anon_sym_and_eq] = ACTIONS(5638), + [anon_sym_or_eq] = ACTIONS(5638), + [anon_sym_xor_eq] = ACTIONS(5638), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(7034), + [anon_sym_u_DQUOTE] = ACTIONS(7034), + [anon_sym_U_DQUOTE] = ACTIONS(7034), + [anon_sym_u8_DQUOTE] = ACTIONS(7034), + [anon_sym_DQUOTE] = ACTIONS(7034), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(5638), + [anon_sym_R_DQUOTE] = ACTIONS(7040), + [anon_sym_LR_DQUOTE] = ACTIONS(7040), + [anon_sym_uR_DQUOTE] = ACTIONS(7040), + [anon_sym_UR_DQUOTE] = ACTIONS(7040), + [anon_sym_u8R_DQUOTE] = ACTIONS(7040), + }, + [STATE(3714)] = { + [sym__abstract_declarator] = STATE(6471), + [sym_abstract_parenthesized_declarator] = STATE(6708), + [sym_abstract_pointer_declarator] = STATE(6708), + [sym_abstract_function_declarator] = STATE(6708), + [sym_abstract_array_declarator] = STATE(6708), + [sym_type_qualifier] = STATE(3691), + [sym_alignas_qualifier] = STATE(3945), + [sym_parameter_list] = STATE(2277), + [sym_abstract_reference_declarator] = STATE(6708), + [sym__function_declarator_seq] = STATE(6709), + [aux_sym__type_definition_type_repeat1] = STATE(3691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), + [anon_sym_COMMA] = ACTIONS(7351), + [anon_sym_LPAREN2] = ACTIONS(8600), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_PLUS] = ACTIONS(7349), + [anon_sym_STAR] = ACTIONS(8602), + [anon_sym_SLASH] = ACTIONS(7349), + [anon_sym_PERCENT] = ACTIONS(7351), + [anon_sym_PIPE_PIPE] = ACTIONS(7351), + [anon_sym_AMP_AMP] = ACTIONS(8604), + [anon_sym_PIPE] = ACTIONS(7349), + [anon_sym_CARET] = ACTIONS(7351), + [anon_sym_AMP] = ACTIONS(8606), + [anon_sym_EQ_EQ] = ACTIONS(7351), + [anon_sym_BANG_EQ] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7349), + [anon_sym_GT_EQ] = ACTIONS(7349), + [anon_sym_LT_EQ] = ACTIONS(7349), + [anon_sym_LT] = ACTIONS(7349), + [anon_sym_LT_LT] = ACTIONS(7351), + [anon_sym_GT_GT] = ACTIONS(7349), + [anon_sym___extension__] = ACTIONS(8608), + [anon_sym_LBRACK] = ACTIONS(8616), + [anon_sym_const] = ACTIONS(8618), + [anon_sym_constexpr] = ACTIONS(8608), + [anon_sym_volatile] = ACTIONS(8608), + [anon_sym_restrict] = ACTIONS(8608), + [anon_sym___restrict__] = ACTIONS(8608), + [anon_sym__Atomic] = ACTIONS(8608), + [anon_sym__Noreturn] = ACTIONS(8608), + [anon_sym_noreturn] = ACTIONS(8608), + [anon_sym__Nonnull] = ACTIONS(8608), + [anon_sym_mutable] = ACTIONS(8608), + [anon_sym_constinit] = ACTIONS(8608), + [anon_sym_consteval] = ACTIONS(8608), + [anon_sym_alignas] = ACTIONS(8620), + [anon_sym__Alignas] = ACTIONS(8620), + [anon_sym_QMARK] = ACTIONS(7351), + [anon_sym_LT_EQ_GT] = ACTIONS(7351), + [anon_sym_or] = ACTIONS(7351), + [anon_sym_and] = ACTIONS(7351), + [anon_sym_bitor] = ACTIONS(7351), + [anon_sym_xor] = ACTIONS(7351), + [anon_sym_bitand] = ACTIONS(7351), + [anon_sym_not_eq] = ACTIONS(7351), + [anon_sym_DASH_DASH] = ACTIONS(7351), + [anon_sym_PLUS_PLUS] = ACTIONS(7351), + [anon_sym_DOT] = ACTIONS(7349), + [anon_sym_DOT_STAR] = ACTIONS(7351), + [anon_sym_DASH_GT] = ACTIONS(7351), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7351), + [anon_sym_override] = ACTIONS(7351), + [anon_sym_GT2] = ACTIONS(7351), + [anon_sym_requires] = ACTIONS(7351), + }, + [STATE(3715)] = { + [sym__abstract_declarator] = STATE(6472), + [sym_abstract_parenthesized_declarator] = STATE(6708), + [sym_abstract_pointer_declarator] = STATE(6708), + [sym_abstract_function_declarator] = STATE(6708), + [sym_abstract_array_declarator] = STATE(6708), + [sym_type_qualifier] = STATE(3717), + [sym_alignas_qualifier] = STATE(3945), + [sym_parameter_list] = STATE(2277), + [sym_abstract_reference_declarator] = STATE(6708), + [sym__function_declarator_seq] = STATE(6709), + [aux_sym__type_definition_type_repeat1] = STATE(3717), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(8600), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(8602), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7343), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(8604), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7343), + [anon_sym_AMP] = ACTIONS(8606), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7341), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7343), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(8608), + [anon_sym_LBRACK] = ACTIONS(8616), + [anon_sym_const] = ACTIONS(8618), + [anon_sym_constexpr] = ACTIONS(8608), + [anon_sym_volatile] = ACTIONS(8608), + [anon_sym_restrict] = ACTIONS(8608), + [anon_sym___restrict__] = ACTIONS(8608), + [anon_sym__Atomic] = ACTIONS(8608), + [anon_sym__Noreturn] = ACTIONS(8608), + [anon_sym_noreturn] = ACTIONS(8608), + [anon_sym__Nonnull] = ACTIONS(8608), + [anon_sym_mutable] = ACTIONS(8608), + [anon_sym_constinit] = ACTIONS(8608), + [anon_sym_consteval] = ACTIONS(8608), + [anon_sym_alignas] = ACTIONS(8620), + [anon_sym__Alignas] = ACTIONS(8620), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7343), + [anon_sym_and] = ACTIONS(7343), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7343), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7343), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7343), + [anon_sym_override] = ACTIONS(7343), + [anon_sym_GT2] = ACTIONS(7343), + [anon_sym_requires] = ACTIONS(7343), + }, + [STATE(3716)] = { + [sym__abstract_declarator] = STATE(6494), + [sym_abstract_parenthesized_declarator] = STATE(6708), + [sym_abstract_pointer_declarator] = STATE(6708), + [sym_abstract_function_declarator] = STATE(6708), + [sym_abstract_array_declarator] = STATE(6708), + [sym_type_qualifier] = STATE(3691), + [sym_alignas_qualifier] = STATE(3945), + [sym_parameter_list] = STATE(2277), + [sym_abstract_reference_declarator] = STATE(6708), + [sym__function_declarator_seq] = STATE(6709), + [aux_sym__type_definition_type_repeat1] = STATE(3691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(8600), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(8602), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6823), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(8604), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6823), + [anon_sym_AMP] = ACTIONS(8606), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6821), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6823), + [anon_sym_GT_GT] = ACTIONS(6821), + [anon_sym___extension__] = ACTIONS(8608), + [anon_sym_LBRACK] = ACTIONS(8616), + [anon_sym_const] = ACTIONS(8618), + [anon_sym_constexpr] = ACTIONS(8608), + [anon_sym_volatile] = ACTIONS(8608), + [anon_sym_restrict] = ACTIONS(8608), + [anon_sym___restrict__] = ACTIONS(8608), + [anon_sym__Atomic] = ACTIONS(8608), + [anon_sym__Noreturn] = ACTIONS(8608), + [anon_sym_noreturn] = ACTIONS(8608), + [anon_sym__Nonnull] = ACTIONS(8608), + [anon_sym_mutable] = ACTIONS(8608), + [anon_sym_constinit] = ACTIONS(8608), + [anon_sym_consteval] = ACTIONS(8608), + [anon_sym_alignas] = ACTIONS(8620), + [anon_sym__Alignas] = ACTIONS(8620), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6823), + [anon_sym_and] = ACTIONS(6823), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6823), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6823), + [anon_sym_override] = ACTIONS(6823), + [anon_sym_GT2] = ACTIONS(6823), + [anon_sym_requires] = ACTIONS(6823), + }, + [STATE(3717)] = { + [sym__abstract_declarator] = STATE(6473), + [sym_abstract_parenthesized_declarator] = STATE(6708), + [sym_abstract_pointer_declarator] = STATE(6708), + [sym_abstract_function_declarator] = STATE(6708), + [sym_abstract_array_declarator] = STATE(6708), + [sym_type_qualifier] = STATE(3691), + [sym_alignas_qualifier] = STATE(3945), + [sym_parameter_list] = STATE(2277), + [sym_abstract_reference_declarator] = STATE(6708), + [sym__function_declarator_seq] = STATE(6709), + [aux_sym__type_definition_type_repeat1] = STATE(3691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), + [anon_sym_COMMA] = ACTIONS(7355), + [anon_sym_LPAREN2] = ACTIONS(8600), + [anon_sym_DASH] = ACTIONS(7353), + [anon_sym_PLUS] = ACTIONS(7353), + [anon_sym_STAR] = ACTIONS(8602), + [anon_sym_SLASH] = ACTIONS(7353), + [anon_sym_PERCENT] = ACTIONS(7355), + [anon_sym_PIPE_PIPE] = ACTIONS(7355), + [anon_sym_AMP_AMP] = ACTIONS(8604), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_CARET] = ACTIONS(7355), + [anon_sym_AMP] = ACTIONS(8606), + [anon_sym_EQ_EQ] = ACTIONS(7355), + [anon_sym_BANG_EQ] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_EQ] = ACTIONS(7353), + [anon_sym_LT_EQ] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_LT_LT] = ACTIONS(7355), + [anon_sym_GT_GT] = ACTIONS(7353), + [anon_sym___extension__] = ACTIONS(8608), + [anon_sym_LBRACK] = ACTIONS(8616), + [anon_sym_const] = ACTIONS(8618), + [anon_sym_constexpr] = ACTIONS(8608), + [anon_sym_volatile] = ACTIONS(8608), + [anon_sym_restrict] = ACTIONS(8608), + [anon_sym___restrict__] = ACTIONS(8608), + [anon_sym__Atomic] = ACTIONS(8608), + [anon_sym__Noreturn] = ACTIONS(8608), + [anon_sym_noreturn] = ACTIONS(8608), + [anon_sym__Nonnull] = ACTIONS(8608), + [anon_sym_mutable] = ACTIONS(8608), + [anon_sym_constinit] = ACTIONS(8608), + [anon_sym_consteval] = ACTIONS(8608), + [anon_sym_alignas] = ACTIONS(8620), + [anon_sym__Alignas] = ACTIONS(8620), + [anon_sym_QMARK] = ACTIONS(7355), + [anon_sym_LT_EQ_GT] = ACTIONS(7355), + [anon_sym_or] = ACTIONS(7355), + [anon_sym_and] = ACTIONS(7355), + [anon_sym_bitor] = ACTIONS(7355), + [anon_sym_xor] = ACTIONS(7355), + [anon_sym_bitand] = ACTIONS(7355), + [anon_sym_not_eq] = ACTIONS(7355), + [anon_sym_DASH_DASH] = ACTIONS(7355), + [anon_sym_PLUS_PLUS] = ACTIONS(7355), + [anon_sym_DOT] = ACTIONS(7353), + [anon_sym_DOT_STAR] = ACTIONS(7355), + [anon_sym_DASH_GT] = ACTIONS(7355), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7355), + [anon_sym_override] = ACTIONS(7355), + [anon_sym_GT2] = ACTIONS(7355), + [anon_sym_requires] = ACTIONS(7355), + }, + [STATE(3718)] = { + [sym__abstract_declarator] = STATE(6495), + [sym_abstract_parenthesized_declarator] = STATE(6708), + [sym_abstract_pointer_declarator] = STATE(6708), + [sym_abstract_function_declarator] = STATE(6708), + [sym_abstract_array_declarator] = STATE(6708), + [sym_type_qualifier] = STATE(3691), + [sym_alignas_qualifier] = STATE(3945), + [sym_parameter_list] = STATE(2277), + [sym_abstract_reference_declarator] = STATE(6708), + [sym__function_declarator_seq] = STATE(6709), + [aux_sym__type_definition_type_repeat1] = STATE(3691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(8600), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(8602), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7345), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(8604), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7345), + [anon_sym_AMP] = ACTIONS(8606), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7347), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7345), + [anon_sym_GT_GT] = ACTIONS(7347), + [anon_sym___extension__] = ACTIONS(8608), + [anon_sym_LBRACK] = ACTIONS(8616), + [anon_sym_const] = ACTIONS(8618), + [anon_sym_constexpr] = ACTIONS(8608), + [anon_sym_volatile] = ACTIONS(8608), + [anon_sym_restrict] = ACTIONS(8608), + [anon_sym___restrict__] = ACTIONS(8608), + [anon_sym__Atomic] = ACTIONS(8608), + [anon_sym__Noreturn] = ACTIONS(8608), + [anon_sym_noreturn] = ACTIONS(8608), + [anon_sym__Nonnull] = ACTIONS(8608), + [anon_sym_mutable] = ACTIONS(8608), + [anon_sym_constinit] = ACTIONS(8608), + [anon_sym_consteval] = ACTIONS(8608), + [anon_sym_alignas] = ACTIONS(8620), + [anon_sym__Alignas] = ACTIONS(8620), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7345), + [anon_sym_and] = ACTIONS(7345), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7345), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7345), + [anon_sym_override] = ACTIONS(7345), + [anon_sym_GT2] = ACTIONS(7345), + [anon_sym_requires] = ACTIONS(7345), + }, + [STATE(3719)] = { + [sym_template_argument_list] = STATE(3733), + [sym_identifier] = ACTIONS(7085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), + [anon_sym_COMMA] = ACTIONS(7090), + [aux_sym_preproc_if_token2] = ACTIONS(7090), + [aux_sym_preproc_else_token1] = ACTIONS(7090), + [aux_sym_preproc_elif_token1] = ACTIONS(7085), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7090), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7090), + [anon_sym_LPAREN2] = ACTIONS(7090), + [anon_sym_DASH] = ACTIONS(7085), + [anon_sym_PLUS] = ACTIONS(7085), + [anon_sym_STAR] = ACTIONS(7090), + [anon_sym_SLASH] = ACTIONS(7085), + [anon_sym_PERCENT] = ACTIONS(7090), + [anon_sym_PIPE_PIPE] = ACTIONS(7090), + [anon_sym_AMP_AMP] = ACTIONS(7090), + [anon_sym_PIPE] = ACTIONS(7085), + [anon_sym_CARET] = ACTIONS(7090), + [anon_sym_AMP] = ACTIONS(7085), + [anon_sym_EQ_EQ] = ACTIONS(7090), + [anon_sym_BANG_EQ] = ACTIONS(7090), + [anon_sym_GT] = ACTIONS(7085), + [anon_sym_GT_EQ] = ACTIONS(7090), + [anon_sym_LT_EQ] = ACTIONS(7085), + [anon_sym_LT] = ACTIONS(8883), + [anon_sym_LT_LT] = ACTIONS(7090), + [anon_sym_GT_GT] = ACTIONS(7090), + [anon_sym___extension__] = ACTIONS(7085), + [anon_sym___attribute__] = ACTIONS(7085), + [anon_sym___attribute] = ACTIONS(7085), + [anon_sym_COLON] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7087), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_LBRACK] = ACTIONS(7090), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7085), + [anon_sym_volatile] = ACTIONS(7085), + [anon_sym_restrict] = ACTIONS(7085), + [anon_sym___restrict__] = ACTIONS(7085), + [anon_sym__Atomic] = ACTIONS(7085), + [anon_sym__Noreturn] = ACTIONS(7085), + [anon_sym_noreturn] = ACTIONS(7085), + [anon_sym__Nonnull] = ACTIONS(7085), + [anon_sym_mutable] = ACTIONS(7085), + [anon_sym_constinit] = ACTIONS(7085), + [anon_sym_consteval] = ACTIONS(7085), + [anon_sym_alignas] = ACTIONS(7085), + [anon_sym__Alignas] = ACTIONS(7085), + [anon_sym_QMARK] = ACTIONS(7090), + [anon_sym_LT_EQ_GT] = ACTIONS(7090), + [anon_sym_or] = ACTIONS(7085), + [anon_sym_and] = ACTIONS(7085), + [anon_sym_bitor] = ACTIONS(7085), + [anon_sym_xor] = ACTIONS(7085), + [anon_sym_bitand] = ACTIONS(7085), + [anon_sym_not_eq] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7090), + [anon_sym_PLUS_PLUS] = ACTIONS(7090), + [anon_sym_DOT] = ACTIONS(7085), + [anon_sym_DOT_STAR] = ACTIONS(7090), + [anon_sym_DASH_GT] = ACTIONS(7090), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7085), + [anon_sym_override] = ACTIONS(7085), + [anon_sym_requires] = ACTIONS(7085), + }, + [STATE(3720)] = { + [sym__abstract_declarator] = STATE(6497), + [sym_abstract_parenthesized_declarator] = STATE(6607), + [sym_abstract_pointer_declarator] = STATE(6607), + [sym_abstract_function_declarator] = STATE(6607), + [sym_abstract_array_declarator] = STATE(6607), + [sym_type_qualifier] = STATE(3860), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2281), + [sym_abstract_reference_declarator] = STATE(6607), + [sym__function_declarator_seq] = STATE(6608), + [aux_sym__type_definition_type_repeat1] = STATE(3860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), + [anon_sym_COMMA] = ACTIONS(7351), + [anon_sym_LPAREN2] = ACTIONS(8572), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_PLUS] = ACTIONS(7349), + [anon_sym_STAR] = ACTIONS(8574), + [anon_sym_SLASH] = ACTIONS(7349), + [anon_sym_PERCENT] = ACTIONS(7351), + [anon_sym_PIPE_PIPE] = ACTIONS(7351), + [anon_sym_AMP_AMP] = ACTIONS(8576), + [anon_sym_PIPE] = ACTIONS(7349), + [anon_sym_CARET] = ACTIONS(7351), + [anon_sym_AMP] = ACTIONS(8578), + [anon_sym_EQ_EQ] = ACTIONS(7351), + [anon_sym_BANG_EQ] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7349), + [anon_sym_GT_EQ] = ACTIONS(7351), + [anon_sym_LT_EQ] = ACTIONS(7349), + [anon_sym_LT] = ACTIONS(7349), + [anon_sym_LT_LT] = ACTIONS(7351), + [anon_sym_GT_GT] = ACTIONS(7351), + [anon_sym___extension__] = ACTIONS(8580), + [anon_sym_LBRACK] = ACTIONS(8588), + [anon_sym_RBRACK] = ACTIONS(7351), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8580), + [anon_sym_volatile] = ACTIONS(8580), + [anon_sym_restrict] = ACTIONS(8580), + [anon_sym___restrict__] = ACTIONS(8580), + [anon_sym__Atomic] = ACTIONS(8580), + [anon_sym__Noreturn] = ACTIONS(8580), + [anon_sym_noreturn] = ACTIONS(8580), + [anon_sym__Nonnull] = ACTIONS(8580), + [anon_sym_mutable] = ACTIONS(8580), + [anon_sym_constinit] = ACTIONS(8580), + [anon_sym_consteval] = ACTIONS(8580), + [anon_sym_alignas] = ACTIONS(8590), + [anon_sym__Alignas] = ACTIONS(8590), + [anon_sym_QMARK] = ACTIONS(7351), + [anon_sym_LT_EQ_GT] = ACTIONS(7351), + [anon_sym_or] = ACTIONS(7351), + [anon_sym_and] = ACTIONS(7351), + [anon_sym_bitor] = ACTIONS(7351), + [anon_sym_xor] = ACTIONS(7351), + [anon_sym_bitand] = ACTIONS(7351), + [anon_sym_not_eq] = ACTIONS(7351), + [anon_sym_DASH_DASH] = ACTIONS(7351), + [anon_sym_PLUS_PLUS] = ACTIONS(7351), + [anon_sym_DOT] = ACTIONS(7349), + [anon_sym_DOT_STAR] = ACTIONS(7351), + [anon_sym_DASH_GT] = ACTIONS(7351), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7351), + [anon_sym_override] = ACTIONS(7351), + [anon_sym_requires] = ACTIONS(7351), + }, + [STATE(3721)] = { + [sym__abstract_declarator] = STATE(6498), + [sym_abstract_parenthesized_declarator] = STATE(6607), + [sym_abstract_pointer_declarator] = STATE(6607), + [sym_abstract_function_declarator] = STATE(6607), + [sym_abstract_array_declarator] = STATE(6607), + [sym_type_qualifier] = STATE(3723), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2281), + [sym_abstract_reference_declarator] = STATE(6607), + [sym__function_declarator_seq] = STATE(6608), + [aux_sym__type_definition_type_repeat1] = STATE(3723), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(8572), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(8574), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7343), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(8576), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7343), + [anon_sym_AMP] = ACTIONS(8578), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7343), + [anon_sym_GT_GT] = ACTIONS(7343), + [anon_sym___extension__] = ACTIONS(8580), + [anon_sym_LBRACK] = ACTIONS(8588), + [anon_sym_RBRACK] = ACTIONS(7343), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8580), + [anon_sym_volatile] = ACTIONS(8580), + [anon_sym_restrict] = ACTIONS(8580), + [anon_sym___restrict__] = ACTIONS(8580), + [anon_sym__Atomic] = ACTIONS(8580), + [anon_sym__Noreturn] = ACTIONS(8580), + [anon_sym_noreturn] = ACTIONS(8580), + [anon_sym__Nonnull] = ACTIONS(8580), + [anon_sym_mutable] = ACTIONS(8580), + [anon_sym_constinit] = ACTIONS(8580), + [anon_sym_consteval] = ACTIONS(8580), + [anon_sym_alignas] = ACTIONS(8590), + [anon_sym__Alignas] = ACTIONS(8590), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7343), + [anon_sym_and] = ACTIONS(7343), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7343), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7343), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7343), + [anon_sym_override] = ACTIONS(7343), + [anon_sym_requires] = ACTIONS(7343), + }, + [STATE(3722)] = { + [sym__abstract_declarator] = STATE(6443), + [sym_abstract_parenthesized_declarator] = STATE(6607), + [sym_abstract_pointer_declarator] = STATE(6607), + [sym_abstract_function_declarator] = STATE(6607), + [sym_abstract_array_declarator] = STATE(6607), + [sym_type_qualifier] = STATE(3860), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2281), + [sym_abstract_reference_declarator] = STATE(6607), + [sym__function_declarator_seq] = STATE(6608), + [aux_sym__type_definition_type_repeat1] = STATE(3860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(8572), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(8574), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6823), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(8576), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6823), + [anon_sym_AMP] = ACTIONS(8578), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6823), + [anon_sym_GT_GT] = ACTIONS(6823), + [anon_sym___extension__] = ACTIONS(8580), + [anon_sym_LBRACK] = ACTIONS(8588), + [anon_sym_RBRACK] = ACTIONS(6823), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8580), + [anon_sym_volatile] = ACTIONS(8580), + [anon_sym_restrict] = ACTIONS(8580), + [anon_sym___restrict__] = ACTIONS(8580), + [anon_sym__Atomic] = ACTIONS(8580), + [anon_sym__Noreturn] = ACTIONS(8580), + [anon_sym_noreturn] = ACTIONS(8580), + [anon_sym__Nonnull] = ACTIONS(8580), + [anon_sym_mutable] = ACTIONS(8580), + [anon_sym_constinit] = ACTIONS(8580), + [anon_sym_consteval] = ACTIONS(8580), + [anon_sym_alignas] = ACTIONS(8590), + [anon_sym__Alignas] = ACTIONS(8590), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6823), + [anon_sym_and] = ACTIONS(6823), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6823), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6823), + [anon_sym_override] = ACTIONS(6823), + [anon_sym_requires] = ACTIONS(6823), + }, + [STATE(3723)] = { + [sym__abstract_declarator] = STATE(6499), + [sym_abstract_parenthesized_declarator] = STATE(6607), + [sym_abstract_pointer_declarator] = STATE(6607), + [sym_abstract_function_declarator] = STATE(6607), + [sym_abstract_array_declarator] = STATE(6607), + [sym_type_qualifier] = STATE(3860), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2281), + [sym_abstract_reference_declarator] = STATE(6607), + [sym__function_declarator_seq] = STATE(6608), + [aux_sym__type_definition_type_repeat1] = STATE(3860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), + [anon_sym_COMMA] = ACTIONS(7355), + [anon_sym_LPAREN2] = ACTIONS(8572), + [anon_sym_DASH] = ACTIONS(7353), + [anon_sym_PLUS] = ACTIONS(7353), + [anon_sym_STAR] = ACTIONS(8574), + [anon_sym_SLASH] = ACTIONS(7353), + [anon_sym_PERCENT] = ACTIONS(7355), + [anon_sym_PIPE_PIPE] = ACTIONS(7355), + [anon_sym_AMP_AMP] = ACTIONS(8576), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_CARET] = ACTIONS(7355), + [anon_sym_AMP] = ACTIONS(8578), + [anon_sym_EQ_EQ] = ACTIONS(7355), + [anon_sym_BANG_EQ] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_EQ] = ACTIONS(7355), + [anon_sym_LT_EQ] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_LT_LT] = ACTIONS(7355), + [anon_sym_GT_GT] = ACTIONS(7355), + [anon_sym___extension__] = ACTIONS(8580), + [anon_sym_LBRACK] = ACTIONS(8588), + [anon_sym_RBRACK] = ACTIONS(7355), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8580), + [anon_sym_volatile] = ACTIONS(8580), + [anon_sym_restrict] = ACTIONS(8580), + [anon_sym___restrict__] = ACTIONS(8580), + [anon_sym__Atomic] = ACTIONS(8580), + [anon_sym__Noreturn] = ACTIONS(8580), + [anon_sym_noreturn] = ACTIONS(8580), + [anon_sym__Nonnull] = ACTIONS(8580), + [anon_sym_mutable] = ACTIONS(8580), + [anon_sym_constinit] = ACTIONS(8580), + [anon_sym_consteval] = ACTIONS(8580), + [anon_sym_alignas] = ACTIONS(8590), + [anon_sym__Alignas] = ACTIONS(8590), + [anon_sym_QMARK] = ACTIONS(7355), + [anon_sym_LT_EQ_GT] = ACTIONS(7355), + [anon_sym_or] = ACTIONS(7355), + [anon_sym_and] = ACTIONS(7355), + [anon_sym_bitor] = ACTIONS(7355), + [anon_sym_xor] = ACTIONS(7355), + [anon_sym_bitand] = ACTIONS(7355), + [anon_sym_not_eq] = ACTIONS(7355), + [anon_sym_DASH_DASH] = ACTIONS(7355), + [anon_sym_PLUS_PLUS] = ACTIONS(7355), + [anon_sym_DOT] = ACTIONS(7353), + [anon_sym_DOT_STAR] = ACTIONS(7355), + [anon_sym_DASH_GT] = ACTIONS(7355), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7355), + [anon_sym_override] = ACTIONS(7355), + [anon_sym_requires] = ACTIONS(7355), + }, + [STATE(3724)] = { + [sym__abstract_declarator] = STATE(6446), + [sym_abstract_parenthesized_declarator] = STATE(6607), + [sym_abstract_pointer_declarator] = STATE(6607), + [sym_abstract_function_declarator] = STATE(6607), + [sym_abstract_array_declarator] = STATE(6607), + [sym_type_qualifier] = STATE(3860), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2281), + [sym_abstract_reference_declarator] = STATE(6607), + [sym__function_declarator_seq] = STATE(6608), + [aux_sym__type_definition_type_repeat1] = STATE(3860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(8572), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(8574), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7345), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(8576), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7345), + [anon_sym_AMP] = ACTIONS(8578), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7345), + [anon_sym_GT_GT] = ACTIONS(7345), + [anon_sym___extension__] = ACTIONS(8580), + [anon_sym_LBRACK] = ACTIONS(8588), + [anon_sym_RBRACK] = ACTIONS(7345), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8580), + [anon_sym_volatile] = ACTIONS(8580), + [anon_sym_restrict] = ACTIONS(8580), + [anon_sym___restrict__] = ACTIONS(8580), + [anon_sym__Atomic] = ACTIONS(8580), + [anon_sym__Noreturn] = ACTIONS(8580), + [anon_sym_noreturn] = ACTIONS(8580), + [anon_sym__Nonnull] = ACTIONS(8580), + [anon_sym_mutable] = ACTIONS(8580), + [anon_sym_constinit] = ACTIONS(8580), + [anon_sym_consteval] = ACTIONS(8580), + [anon_sym_alignas] = ACTIONS(8590), + [anon_sym__Alignas] = ACTIONS(8590), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7345), + [anon_sym_and] = ACTIONS(7345), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7345), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7345), + [anon_sym_override] = ACTIONS(7345), + [anon_sym_requires] = ACTIONS(7345), + }, + [STATE(3725)] = { + [sym__abstract_declarator] = STATE(6496), + [sym_abstract_parenthesized_declarator] = STATE(6607), + [sym_abstract_pointer_declarator] = STATE(6607), + [sym_abstract_function_declarator] = STATE(6607), + [sym_abstract_array_declarator] = STATE(6607), + [sym_type_qualifier] = STATE(3720), + [sym_alignas_qualifier] = STATE(4183), + [sym_parameter_list] = STATE(2281), + [sym_abstract_reference_declarator] = STATE(6607), + [sym__function_declarator_seq] = STATE(6608), + [aux_sym__type_definition_type_repeat1] = STATE(3720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), + [anon_sym_COMMA] = ACTIONS(7391), + [anon_sym_LPAREN2] = ACTIONS(8572), + [anon_sym_DASH] = ACTIONS(7393), + [anon_sym_PLUS] = ACTIONS(7393), + [anon_sym_STAR] = ACTIONS(8574), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_PERCENT] = ACTIONS(7391), + [anon_sym_PIPE_PIPE] = ACTIONS(7391), + [anon_sym_AMP_AMP] = ACTIONS(8576), + [anon_sym_PIPE] = ACTIONS(7393), + [anon_sym_CARET] = ACTIONS(7391), + [anon_sym_AMP] = ACTIONS(8578), + [anon_sym_EQ_EQ] = ACTIONS(7391), + [anon_sym_BANG_EQ] = ACTIONS(7391), + [anon_sym_GT] = ACTIONS(7393), + [anon_sym_GT_EQ] = ACTIONS(7391), + [anon_sym_LT_EQ] = ACTIONS(7393), + [anon_sym_LT] = ACTIONS(7393), + [anon_sym_LT_LT] = ACTIONS(7391), + [anon_sym_GT_GT] = ACTIONS(7391), + [anon_sym___extension__] = ACTIONS(8580), + [anon_sym_LBRACK] = ACTIONS(8588), + [anon_sym_RBRACK] = ACTIONS(7391), + [anon_sym_const] = ACTIONS(8092), + [anon_sym_constexpr] = ACTIONS(8580), + [anon_sym_volatile] = ACTIONS(8580), + [anon_sym_restrict] = ACTIONS(8580), + [anon_sym___restrict__] = ACTIONS(8580), + [anon_sym__Atomic] = ACTIONS(8580), + [anon_sym__Noreturn] = ACTIONS(8580), + [anon_sym_noreturn] = ACTIONS(8580), + [anon_sym__Nonnull] = ACTIONS(8580), + [anon_sym_mutable] = ACTIONS(8580), + [anon_sym_constinit] = ACTIONS(8580), + [anon_sym_consteval] = ACTIONS(8580), + [anon_sym_alignas] = ACTIONS(8590), + [anon_sym__Alignas] = ACTIONS(8590), + [anon_sym_QMARK] = ACTIONS(7391), + [anon_sym_LT_EQ_GT] = ACTIONS(7391), + [anon_sym_or] = ACTIONS(7391), + [anon_sym_and] = ACTIONS(7391), + [anon_sym_bitor] = ACTIONS(7391), + [anon_sym_xor] = ACTIONS(7391), + [anon_sym_bitand] = ACTIONS(7391), + [anon_sym_not_eq] = ACTIONS(7391), + [anon_sym_DASH_DASH] = ACTIONS(7391), + [anon_sym_PLUS_PLUS] = ACTIONS(7391), + [anon_sym_DOT] = ACTIONS(7393), + [anon_sym_DOT_STAR] = ACTIONS(7391), + [anon_sym_DASH_GT] = ACTIONS(7391), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7391), + [anon_sym_override] = ACTIONS(7391), + [anon_sym_requires] = ACTIONS(7391), + }, + [STATE(3726)] = { + [sym_string_literal] = STATE(5659), + [sym_template_argument_list] = STATE(6768), + [sym_raw_string_literal] = STATE(5659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5645), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(7060), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(6983), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(6985), + [anon_sym_SLASH_EQ] = ACTIONS(6985), + [anon_sym_PERCENT_EQ] = ACTIONS(6985), + [anon_sym_PLUS_EQ] = ACTIONS(6985), + [anon_sym_DASH_EQ] = ACTIONS(6985), + [anon_sym_LT_LT_EQ] = ACTIONS(6985), + [anon_sym_GT_GT_EQ] = ACTIONS(6983), + [anon_sym_AMP_EQ] = ACTIONS(6985), + [anon_sym_CARET_EQ] = ACTIONS(6985), + [anon_sym_PIPE_EQ] = ACTIONS(6985), + [anon_sym_and_eq] = ACTIONS(6985), + [anon_sym_or_eq] = ACTIONS(6985), + [anon_sym_xor_eq] = ACTIONS(6985), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(6987), + [anon_sym_u_DQUOTE] = ACTIONS(6987), + [anon_sym_U_DQUOTE] = ACTIONS(6987), + [anon_sym_u8_DQUOTE] = ACTIONS(6987), + [anon_sym_DQUOTE] = ACTIONS(6987), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(5638), + [anon_sym_R_DQUOTE] = ACTIONS(6993), + [anon_sym_LR_DQUOTE] = ACTIONS(6993), + [anon_sym_uR_DQUOTE] = ACTIONS(6993), + [anon_sym_UR_DQUOTE] = ACTIONS(6993), + [anon_sym_u8R_DQUOTE] = ACTIONS(6993), + }, + [STATE(3727)] = { + [sym_string_literal] = STATE(3727), + [sym_raw_string_literal] = STATE(3727), + [aux_sym_concatenated_string_repeat1] = STATE(3727), + [sym_identifier] = ACTIONS(9524), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8406), + [anon_sym_COMMA] = ACTIONS(8406), + [anon_sym_LPAREN2] = ACTIONS(8406), + [anon_sym_DASH] = ACTIONS(8408), + [anon_sym_PLUS] = ACTIONS(8408), + [anon_sym_STAR] = ACTIONS(8408), + [anon_sym_SLASH] = ACTIONS(8408), + [anon_sym_PERCENT] = ACTIONS(8408), + [anon_sym_PIPE_PIPE] = ACTIONS(8406), + [anon_sym_AMP_AMP] = ACTIONS(8406), + [anon_sym_PIPE] = ACTIONS(8408), + [anon_sym_CARET] = ACTIONS(8408), + [anon_sym_AMP] = ACTIONS(8408), + [anon_sym_EQ_EQ] = ACTIONS(8406), + [anon_sym_BANG_EQ] = ACTIONS(8406), + [anon_sym_GT] = ACTIONS(8408), + [anon_sym_GT_EQ] = ACTIONS(8408), + [anon_sym_LT_EQ] = ACTIONS(8408), + [anon_sym_LT] = ACTIONS(8408), + [anon_sym_LT_LT] = ACTIONS(8408), + [anon_sym_GT_GT] = ACTIONS(8408), + [anon_sym_LBRACK] = ACTIONS(8406), + [anon_sym_EQ] = ACTIONS(8408), + [anon_sym_QMARK] = ACTIONS(8406), + [anon_sym_STAR_EQ] = ACTIONS(8406), + [anon_sym_SLASH_EQ] = ACTIONS(8406), + [anon_sym_PERCENT_EQ] = ACTIONS(8406), + [anon_sym_PLUS_EQ] = ACTIONS(8406), + [anon_sym_DASH_EQ] = ACTIONS(8406), + [anon_sym_LT_LT_EQ] = ACTIONS(8406), + [anon_sym_GT_GT_EQ] = ACTIONS(8408), + [anon_sym_AMP_EQ] = ACTIONS(8406), + [anon_sym_CARET_EQ] = ACTIONS(8406), + [anon_sym_PIPE_EQ] = ACTIONS(8406), + [anon_sym_and_eq] = ACTIONS(8408), + [anon_sym_or_eq] = ACTIONS(8408), + [anon_sym_xor_eq] = ACTIONS(8408), + [anon_sym_LT_EQ_GT] = ACTIONS(8406), + [anon_sym_or] = ACTIONS(8408), + [anon_sym_and] = ACTIONS(8408), + [anon_sym_bitor] = ACTIONS(8408), + [anon_sym_xor] = ACTIONS(8408), + [anon_sym_bitand] = ACTIONS(8408), + [anon_sym_not_eq] = ACTIONS(8408), + [anon_sym_DASH_DASH] = ACTIONS(8406), + [anon_sym_PLUS_PLUS] = ACTIONS(8406), + [anon_sym_DOT] = ACTIONS(8408), + [anon_sym_DOT_STAR] = ACTIONS(8406), + [anon_sym_DASH_GT] = ACTIONS(8406), + [anon_sym_L_DQUOTE] = ACTIONS(9527), + [anon_sym_u_DQUOTE] = ACTIONS(9527), + [anon_sym_U_DQUOTE] = ACTIONS(9527), + [anon_sym_u8_DQUOTE] = ACTIONS(9527), + [anon_sym_DQUOTE] = ACTIONS(9527), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(8406), + [anon_sym_R_DQUOTE] = ACTIONS(9530), + [anon_sym_LR_DQUOTE] = ACTIONS(9530), + [anon_sym_uR_DQUOTE] = ACTIONS(9530), + [anon_sym_UR_DQUOTE] = ACTIONS(9530), + [anon_sym_u8R_DQUOTE] = ACTIONS(9530), + [sym_literal_suffix] = ACTIONS(8408), + }, + [STATE(3728)] = { + [sym_identifier] = ACTIONS(7459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7457), + [anon_sym_COMMA] = ACTIONS(7457), + [aux_sym_preproc_if_token2] = ACTIONS(7457), + [aux_sym_preproc_else_token1] = ACTIONS(7457), + [aux_sym_preproc_elif_token1] = ACTIONS(7459), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7457), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7457), + [anon_sym_LPAREN2] = ACTIONS(7457), + [anon_sym_DASH] = ACTIONS(7459), + [anon_sym_PLUS] = ACTIONS(7459), + [anon_sym_STAR] = ACTIONS(7457), + [anon_sym_SLASH] = ACTIONS(7459), + [anon_sym_PERCENT] = ACTIONS(7457), + [anon_sym_PIPE_PIPE] = ACTIONS(7457), + [anon_sym_AMP_AMP] = ACTIONS(7457), + [anon_sym_PIPE] = ACTIONS(7459), + [anon_sym_CARET] = ACTIONS(7457), + [anon_sym_AMP] = ACTIONS(7459), + [anon_sym_EQ_EQ] = ACTIONS(7457), + [anon_sym_BANG_EQ] = ACTIONS(7457), + [anon_sym_GT] = ACTIONS(7459), + [anon_sym_GT_EQ] = ACTIONS(7457), + [anon_sym_LT_EQ] = ACTIONS(7459), + [anon_sym_LT] = ACTIONS(7459), + [anon_sym_LT_LT] = ACTIONS(7457), + [anon_sym_GT_GT] = ACTIONS(7457), + [anon_sym___extension__] = ACTIONS(7459), + [anon_sym___attribute__] = ACTIONS(7459), + [anon_sym___attribute] = ACTIONS(7459), + [anon_sym_COLON] = ACTIONS(7459), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(7457), + [anon_sym_LBRACK] = ACTIONS(7457), + [anon_sym_RBRACK] = ACTIONS(7457), + [anon_sym_const] = ACTIONS(7459), + [anon_sym_constexpr] = ACTIONS(7459), + [anon_sym_volatile] = ACTIONS(7459), + [anon_sym_restrict] = ACTIONS(7459), + [anon_sym___restrict__] = ACTIONS(7459), + [anon_sym__Atomic] = ACTIONS(7459), + [anon_sym__Noreturn] = ACTIONS(7459), + [anon_sym_noreturn] = ACTIONS(7459), + [anon_sym__Nonnull] = ACTIONS(7459), + [anon_sym_mutable] = ACTIONS(7459), + [anon_sym_constinit] = ACTIONS(7459), + [anon_sym_consteval] = ACTIONS(7459), + [anon_sym_alignas] = ACTIONS(7459), + [anon_sym__Alignas] = ACTIONS(7459), + [anon_sym_QMARK] = ACTIONS(7457), + [anon_sym_LT_EQ_GT] = ACTIONS(7457), + [anon_sym_or] = ACTIONS(7459), + [anon_sym_and] = ACTIONS(7459), + [anon_sym_bitor] = ACTIONS(7459), + [anon_sym_xor] = ACTIONS(7459), + [anon_sym_bitand] = ACTIONS(7459), + [anon_sym_not_eq] = ACTIONS(7459), + [anon_sym_DASH_DASH] = ACTIONS(7457), + [anon_sym_PLUS_PLUS] = ACTIONS(7457), + [anon_sym_DOT] = ACTIONS(7459), + [anon_sym_DOT_STAR] = ACTIONS(7457), + [anon_sym_DASH_GT] = ACTIONS(7457), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7459), + [anon_sym_override] = ACTIONS(7459), + [anon_sym_requires] = ACTIONS(7459), + }, + [STATE(3729)] = { + [sym_decltype_auto] = STATE(4116), + [sym_template_argument_list] = STATE(4130), + [aux_sym_sized_type_specifier_repeat1] = STATE(3285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), + [anon_sym_COMMA] = ACTIONS(5643), + [anon_sym_LPAREN2] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5636), + [anon_sym_PLUS] = ACTIONS(5636), + [anon_sym_STAR] = ACTIONS(5643), + [anon_sym_SLASH] = ACTIONS(5636), + [anon_sym_PERCENT] = ACTIONS(5643), + [anon_sym_PIPE_PIPE] = ACTIONS(5643), + [anon_sym_AMP_AMP] = ACTIONS(5643), + [anon_sym_PIPE] = ACTIONS(5636), + [anon_sym_CARET] = ACTIONS(5643), + [anon_sym_AMP] = ACTIONS(5636), + [anon_sym_EQ_EQ] = ACTIONS(5643), + [anon_sym_BANG_EQ] = ACTIONS(5643), + [anon_sym_GT] = ACTIONS(5636), + [anon_sym_GT_EQ] = ACTIONS(5643), + [anon_sym_LT_EQ] = ACTIONS(5636), + [anon_sym_LT] = ACTIONS(8883), + [anon_sym_LT_LT] = ACTIONS(5643), + [anon_sym_GT_GT] = ACTIONS(5643), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5643), + [anon_sym_signed] = ACTIONS(7042), + [anon_sym_unsigned] = ACTIONS(7042), + [anon_sym_long] = ACTIONS(7042), + [anon_sym_short] = ACTIONS(7042), + [anon_sym_LBRACK] = ACTIONS(5643), + [anon_sym_RBRACK] = ACTIONS(5643), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5643), + [anon_sym_volatile] = ACTIONS(5643), + [anon_sym_restrict] = ACTIONS(5643), + [anon_sym___restrict__] = ACTIONS(5643), + [anon_sym__Atomic] = ACTIONS(5643), + [anon_sym__Noreturn] = ACTIONS(5643), + [anon_sym_noreturn] = ACTIONS(5643), + [anon_sym__Nonnull] = ACTIONS(5643), + [anon_sym_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [anon_sym_alignas] = ACTIONS(5643), + [anon_sym__Alignas] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5643), + [anon_sym_LT_EQ_GT] = ACTIONS(5643), + [anon_sym_or] = ACTIONS(5643), + [anon_sym_and] = ACTIONS(5643), + [anon_sym_bitor] = ACTIONS(5643), + [anon_sym_xor] = ACTIONS(5643), + [anon_sym_bitand] = ACTIONS(5643), + [anon_sym_not_eq] = ACTIONS(5643), + [anon_sym_DASH_DASH] = ACTIONS(5643), + [anon_sym_PLUS_PLUS] = ACTIONS(5643), + [anon_sym_DOT] = ACTIONS(5636), + [anon_sym_DOT_STAR] = ACTIONS(5643), + [anon_sym_DASH_GT] = ACTIONS(5643), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7050), + [anon_sym_decltype] = ACTIONS(7052), + [anon_sym_final] = ACTIONS(5643), + [anon_sym_override] = ACTIONS(5643), + [anon_sym_requires] = ACTIONS(5643), + }, + [STATE(3730)] = { + [sym_string_literal] = STATE(3751), + [sym_raw_string_literal] = STATE(3751), + [aux_sym_concatenated_string_repeat1] = STATE(3751), + [sym_identifier] = ACTIONS(9533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8466), + [anon_sym_COMMA] = ACTIONS(8466), + [anon_sym_LPAREN2] = ACTIONS(8466), + [anon_sym_DASH] = ACTIONS(8468), + [anon_sym_PLUS] = ACTIONS(8468), + [anon_sym_STAR] = ACTIONS(8468), + [anon_sym_SLASH] = ACTIONS(8468), + [anon_sym_PERCENT] = ACTIONS(8468), + [anon_sym_PIPE_PIPE] = ACTIONS(8466), + [anon_sym_AMP_AMP] = ACTIONS(8466), + [anon_sym_PIPE] = ACTIONS(8468), + [anon_sym_CARET] = ACTIONS(8468), + [anon_sym_AMP] = ACTIONS(8468), + [anon_sym_EQ_EQ] = ACTIONS(8466), + [anon_sym_BANG_EQ] = ACTIONS(8466), + [anon_sym_GT] = ACTIONS(8468), + [anon_sym_GT_EQ] = ACTIONS(8466), + [anon_sym_LT_EQ] = ACTIONS(8468), + [anon_sym_LT] = ACTIONS(8468), + [anon_sym_LT_LT] = ACTIONS(8468), + [anon_sym_GT_GT] = ACTIONS(8468), + [anon_sym_LBRACK] = ACTIONS(8466), + [anon_sym_RBRACK] = ACTIONS(8466), + [anon_sym_EQ] = ACTIONS(8468), + [anon_sym_QMARK] = ACTIONS(8466), + [anon_sym_STAR_EQ] = ACTIONS(8466), + [anon_sym_SLASH_EQ] = ACTIONS(8466), + [anon_sym_PERCENT_EQ] = ACTIONS(8466), + [anon_sym_PLUS_EQ] = ACTIONS(8466), + [anon_sym_DASH_EQ] = ACTIONS(8466), + [anon_sym_LT_LT_EQ] = ACTIONS(8466), + [anon_sym_GT_GT_EQ] = ACTIONS(8466), + [anon_sym_AMP_EQ] = ACTIONS(8466), + [anon_sym_CARET_EQ] = ACTIONS(8466), + [anon_sym_PIPE_EQ] = ACTIONS(8466), + [anon_sym_and_eq] = ACTIONS(8468), + [anon_sym_or_eq] = ACTIONS(8468), + [anon_sym_xor_eq] = ACTIONS(8468), + [anon_sym_LT_EQ_GT] = ACTIONS(8466), + [anon_sym_or] = ACTIONS(8468), + [anon_sym_and] = ACTIONS(8468), + [anon_sym_bitor] = ACTIONS(8468), + [anon_sym_xor] = ACTIONS(8468), + [anon_sym_bitand] = ACTIONS(8468), + [anon_sym_not_eq] = ACTIONS(8468), + [anon_sym_DASH_DASH] = ACTIONS(8466), + [anon_sym_PLUS_PLUS] = ACTIONS(8466), + [anon_sym_DOT] = ACTIONS(8468), + [anon_sym_DOT_STAR] = ACTIONS(8466), + [anon_sym_DASH_GT] = ACTIONS(8466), + [anon_sym_L_DQUOTE] = ACTIONS(7069), + [anon_sym_u_DQUOTE] = ACTIONS(7069), + [anon_sym_U_DQUOTE] = ACTIONS(7069), + [anon_sym_u8_DQUOTE] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7075), + [anon_sym_LR_DQUOTE] = ACTIONS(7075), + [anon_sym_uR_DQUOTE] = ACTIONS(7075), + [anon_sym_UR_DQUOTE] = ACTIONS(7075), + [anon_sym_u8R_DQUOTE] = ACTIONS(7075), + [sym_literal_suffix] = ACTIONS(8468), + }, + [STATE(3731)] = { + [sym_type_qualifier] = STATE(3746), + [sym_alignas_qualifier] = STATE(3991), + [aux_sym__type_definition_type_repeat1] = STATE(3746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), + [anon_sym_COMMA] = ACTIONS(6754), + [anon_sym_LPAREN2] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(6752), + [anon_sym_PLUS] = ACTIONS(6752), + [anon_sym_STAR] = ACTIONS(6754), + [anon_sym_SLASH] = ACTIONS(6752), + [anon_sym_PERCENT] = ACTIONS(6754), + [anon_sym_PIPE_PIPE] = ACTIONS(6754), + [anon_sym_AMP_AMP] = ACTIONS(6754), + [anon_sym_PIPE] = ACTIONS(6752), + [anon_sym_CARET] = ACTIONS(6754), + [anon_sym_AMP] = ACTIONS(6752), + [anon_sym_EQ_EQ] = ACTIONS(6754), + [anon_sym_BANG_EQ] = ACTIONS(6754), + [anon_sym_GT] = ACTIONS(6752), + [anon_sym_GT_EQ] = ACTIONS(6752), + [anon_sym_LT_EQ] = ACTIONS(6752), + [anon_sym_LT] = ACTIONS(6752), + [anon_sym_LT_LT] = ACTIONS(6754), + [anon_sym_GT_GT] = ACTIONS(6752), + [anon_sym___extension__] = ACTIONS(7814), + [anon_sym___attribute__] = ACTIONS(6754), + [anon_sym___attribute] = ACTIONS(6752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), + [anon_sym_LBRACK] = ACTIONS(6752), + [anon_sym_const] = ACTIONS(7822), + [anon_sym_constexpr] = ACTIONS(7814), + [anon_sym_volatile] = ACTIONS(7814), + [anon_sym_restrict] = ACTIONS(7814), + [anon_sym___restrict__] = ACTIONS(7814), + [anon_sym__Atomic] = ACTIONS(7814), + [anon_sym__Noreturn] = ACTIONS(7814), + [anon_sym_noreturn] = ACTIONS(7814), + [anon_sym__Nonnull] = ACTIONS(7814), + [anon_sym_mutable] = ACTIONS(7814), + [anon_sym_constinit] = ACTIONS(7814), + [anon_sym_consteval] = ACTIONS(7814), + [anon_sym_alignas] = ACTIONS(7824), + [anon_sym__Alignas] = ACTIONS(7824), + [anon_sym_QMARK] = ACTIONS(6754), + [anon_sym_LT_EQ_GT] = ACTIONS(6754), + [anon_sym_or] = ACTIONS(6754), + [anon_sym_and] = ACTIONS(6754), + [anon_sym_bitor] = ACTIONS(6754), + [anon_sym_xor] = ACTIONS(6754), + [anon_sym_bitand] = ACTIONS(6754), + [anon_sym_not_eq] = ACTIONS(6754), + [anon_sym_DASH_DASH] = ACTIONS(6754), + [anon_sym_PLUS_PLUS] = ACTIONS(6754), + [anon_sym_asm] = ACTIONS(6754), + [anon_sym___asm__] = ACTIONS(6754), + [anon_sym___asm] = ACTIONS(6752), + [anon_sym_DOT] = ACTIONS(6752), + [anon_sym_DOT_STAR] = ACTIONS(6754), + [anon_sym_DASH_GT] = ACTIONS(6754), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6754), + [anon_sym_override] = ACTIONS(6754), + [anon_sym_GT2] = ACTIONS(6754), + [anon_sym_noexcept] = ACTIONS(6754), + [anon_sym_throw] = ACTIONS(6754), + [anon_sym_requires] = ACTIONS(6754), + }, + [STATE(3732)] = { + [sym_new_declarator] = STATE(3814), + [sym_identifier] = ACTIONS(9535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9537), + [anon_sym_COMMA] = ACTIONS(9537), + [anon_sym_RPAREN] = ACTIONS(9537), + [aux_sym_preproc_if_token2] = ACTIONS(9537), + [aux_sym_preproc_else_token1] = ACTIONS(9537), + [aux_sym_preproc_elif_token1] = ACTIONS(9535), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9537), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9537), + [anon_sym_LPAREN2] = ACTIONS(9537), + [anon_sym_DASH] = ACTIONS(9535), + [anon_sym_PLUS] = ACTIONS(9535), + [anon_sym_STAR] = ACTIONS(9535), + [anon_sym_SLASH] = ACTIONS(9535), + [anon_sym_PERCENT] = ACTIONS(9535), + [anon_sym_PIPE_PIPE] = ACTIONS(9537), + [anon_sym_AMP_AMP] = ACTIONS(9537), + [anon_sym_PIPE] = ACTIONS(9535), + [anon_sym_CARET] = ACTIONS(9535), + [anon_sym_AMP] = ACTIONS(9535), + [anon_sym_EQ_EQ] = ACTIONS(9537), + [anon_sym_BANG_EQ] = ACTIONS(9537), + [anon_sym_GT] = ACTIONS(9535), + [anon_sym_GT_EQ] = ACTIONS(9537), + [anon_sym_LT_EQ] = ACTIONS(9535), + [anon_sym_LT] = ACTIONS(9535), + [anon_sym_LT_LT] = ACTIONS(9535), + [anon_sym_GT_GT] = ACTIONS(9535), + [anon_sym_SEMI] = ACTIONS(9537), + [anon_sym___attribute__] = ACTIONS(9535), + [anon_sym___attribute] = ACTIONS(9535), + [anon_sym_COLON] = ACTIONS(9535), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9537), + [anon_sym_LBRACE] = ACTIONS(9537), + [anon_sym_RBRACE] = ACTIONS(9537), + [anon_sym_LBRACK] = ACTIONS(9232), + [anon_sym_EQ] = ACTIONS(9535), + [anon_sym_QMARK] = ACTIONS(9537), + [anon_sym_STAR_EQ] = ACTIONS(9537), + [anon_sym_SLASH_EQ] = ACTIONS(9537), + [anon_sym_PERCENT_EQ] = ACTIONS(9537), + [anon_sym_PLUS_EQ] = ACTIONS(9537), + [anon_sym_DASH_EQ] = ACTIONS(9537), + [anon_sym_LT_LT_EQ] = ACTIONS(9537), + [anon_sym_GT_GT_EQ] = ACTIONS(9537), + [anon_sym_AMP_EQ] = ACTIONS(9537), + [anon_sym_CARET_EQ] = ACTIONS(9537), + [anon_sym_PIPE_EQ] = ACTIONS(9537), + [anon_sym_and_eq] = ACTIONS(9535), + [anon_sym_or_eq] = ACTIONS(9535), + [anon_sym_xor_eq] = ACTIONS(9535), + [anon_sym_LT_EQ_GT] = ACTIONS(9537), + [anon_sym_or] = ACTIONS(9535), + [anon_sym_and] = ACTIONS(9535), + [anon_sym_bitor] = ACTIONS(9535), + [anon_sym_xor] = ACTIONS(9535), + [anon_sym_bitand] = ACTIONS(9535), + [anon_sym_not_eq] = ACTIONS(9535), + [anon_sym_DASH_DASH] = ACTIONS(9537), + [anon_sym_PLUS_PLUS] = ACTIONS(9537), + [anon_sym_DOT] = ACTIONS(9535), + [anon_sym_DOT_STAR] = ACTIONS(9537), + [anon_sym_DASH_GT] = ACTIONS(9537), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9537), + }, + [STATE(3733)] = { + [sym_identifier] = ACTIONS(7104), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7106), + [anon_sym_COMMA] = ACTIONS(7106), + [aux_sym_preproc_if_token2] = ACTIONS(7106), + [aux_sym_preproc_else_token1] = ACTIONS(7106), + [aux_sym_preproc_elif_token1] = ACTIONS(7104), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7106), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7106), + [anon_sym_LPAREN2] = ACTIONS(7106), + [anon_sym_DASH] = ACTIONS(7104), + [anon_sym_PLUS] = ACTIONS(7104), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_SLASH] = ACTIONS(7104), + [anon_sym_PERCENT] = ACTIONS(7106), + [anon_sym_PIPE_PIPE] = ACTIONS(7106), + [anon_sym_AMP_AMP] = ACTIONS(7106), + [anon_sym_PIPE] = ACTIONS(7104), + [anon_sym_CARET] = ACTIONS(7106), + [anon_sym_AMP] = ACTIONS(7104), + [anon_sym_EQ_EQ] = ACTIONS(7106), + [anon_sym_BANG_EQ] = ACTIONS(7106), + [anon_sym_GT] = ACTIONS(7104), + [anon_sym_GT_EQ] = ACTIONS(7106), + [anon_sym_LT_EQ] = ACTIONS(7104), + [anon_sym_LT] = ACTIONS(7104), + [anon_sym_LT_LT] = ACTIONS(7106), + [anon_sym_GT_GT] = ACTIONS(7106), + [anon_sym___extension__] = ACTIONS(7104), + [anon_sym___attribute__] = ACTIONS(7104), + [anon_sym___attribute] = ACTIONS(7104), + [anon_sym_COLON] = ACTIONS(7104), + [anon_sym_COLON_COLON] = ACTIONS(7106), + [anon_sym_LBRACE] = ACTIONS(7106), + [anon_sym_LBRACK] = ACTIONS(7106), + [anon_sym_RBRACK] = ACTIONS(7106), + [anon_sym_const] = ACTIONS(7104), + [anon_sym_constexpr] = ACTIONS(7104), + [anon_sym_volatile] = ACTIONS(7104), + [anon_sym_restrict] = ACTIONS(7104), + [anon_sym___restrict__] = ACTIONS(7104), + [anon_sym__Atomic] = ACTIONS(7104), + [anon_sym__Noreturn] = ACTIONS(7104), + [anon_sym_noreturn] = ACTIONS(7104), + [anon_sym__Nonnull] = ACTIONS(7104), + [anon_sym_mutable] = ACTIONS(7104), + [anon_sym_constinit] = ACTIONS(7104), + [anon_sym_consteval] = ACTIONS(7104), + [anon_sym_alignas] = ACTIONS(7104), + [anon_sym__Alignas] = ACTIONS(7104), + [anon_sym_QMARK] = ACTIONS(7106), + [anon_sym_LT_EQ_GT] = ACTIONS(7106), + [anon_sym_or] = ACTIONS(7104), + [anon_sym_and] = ACTIONS(7104), + [anon_sym_bitor] = ACTIONS(7104), + [anon_sym_xor] = ACTIONS(7104), + [anon_sym_bitand] = ACTIONS(7104), + [anon_sym_not_eq] = ACTIONS(7104), + [anon_sym_DASH_DASH] = ACTIONS(7106), + [anon_sym_PLUS_PLUS] = ACTIONS(7106), + [anon_sym_DOT] = ACTIONS(7104), + [anon_sym_DOT_STAR] = ACTIONS(7106), + [anon_sym_DASH_GT] = ACTIONS(7106), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7104), + [anon_sym_override] = ACTIONS(7104), + [anon_sym_requires] = ACTIONS(7104), + }, + [STATE(3734)] = { + [sym_string_literal] = STATE(5580), + [sym_template_argument_list] = STATE(6754), + [sym_raw_string_literal] = STATE(5580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9453), + [anon_sym_COMMA] = ACTIONS(9539), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(8925), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_RBRACK] = ACTIONS(9541), + [anon_sym_EQ] = ACTIONS(9463), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(7046), + [anon_sym_SLASH_EQ] = ACTIONS(7046), + [anon_sym_PERCENT_EQ] = ACTIONS(7046), + [anon_sym_PLUS_EQ] = ACTIONS(7046), + [anon_sym_DASH_EQ] = ACTIONS(7046), + [anon_sym_LT_LT_EQ] = ACTIONS(7046), + [anon_sym_GT_GT_EQ] = ACTIONS(7046), + [anon_sym_AMP_EQ] = ACTIONS(7046), + [anon_sym_CARET_EQ] = ACTIONS(7046), + [anon_sym_PIPE_EQ] = ACTIONS(7046), + [anon_sym_and_eq] = ACTIONS(7046), + [anon_sym_or_eq] = ACTIONS(7046), + [anon_sym_xor_eq] = ACTIONS(7046), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(7048), + [anon_sym_u_DQUOTE] = ACTIONS(7048), + [anon_sym_U_DQUOTE] = ACTIONS(7048), + [anon_sym_u8_DQUOTE] = ACTIONS(7048), + [anon_sym_DQUOTE] = ACTIONS(7048), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7054), + [anon_sym_LR_DQUOTE] = ACTIONS(7054), + [anon_sym_uR_DQUOTE] = ACTIONS(7054), + [anon_sym_UR_DQUOTE] = ACTIONS(7054), + [anon_sym_u8R_DQUOTE] = ACTIONS(7054), + }, + [STATE(3735)] = { + [sym_identifier] = ACTIONS(6594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6601), + [anon_sym_COMMA] = ACTIONS(6601), + [anon_sym_RPAREN] = ACTIONS(6601), + [anon_sym_LPAREN2] = ACTIONS(6601), + [anon_sym_STAR] = ACTIONS(6601), + [anon_sym_PIPE_PIPE] = ACTIONS(6601), + [anon_sym_AMP_AMP] = ACTIONS(6601), + [anon_sym_AMP] = ACTIONS(6594), + [anon_sym_SEMI] = ACTIONS(6601), + [anon_sym___extension__] = ACTIONS(6594), + [anon_sym_virtual] = ACTIONS(6594), + [anon_sym_extern] = ACTIONS(6594), + [anon_sym___attribute__] = ACTIONS(6594), + [anon_sym___attribute] = ACTIONS(6594), + [anon_sym_COLON] = ACTIONS(6594), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6601), + [anon_sym___declspec] = ACTIONS(6594), + [anon_sym___based] = ACTIONS(6594), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_signed] = ACTIONS(6594), + [anon_sym_unsigned] = ACTIONS(6594), + [anon_sym_long] = ACTIONS(6594), + [anon_sym_short] = ACTIONS(6594), + [anon_sym_LBRACK] = ACTIONS(6594), + [anon_sym_static] = ACTIONS(6594), + [anon_sym_EQ] = ACTIONS(6601), + [anon_sym_register] = ACTIONS(6594), + [anon_sym_inline] = ACTIONS(6594), + [anon_sym___inline] = ACTIONS(6594), + [anon_sym___inline__] = ACTIONS(6594), + [anon_sym___forceinline] = ACTIONS(6594), + [anon_sym_thread_local] = ACTIONS(6594), + [anon_sym___thread] = ACTIONS(6594), + [anon_sym_const] = ACTIONS(6594), + [anon_sym_constexpr] = ACTIONS(6594), + [anon_sym_volatile] = ACTIONS(6594), + [anon_sym_restrict] = ACTIONS(6594), + [anon_sym___restrict__] = ACTIONS(6594), + [anon_sym__Atomic] = ACTIONS(6594), + [anon_sym__Noreturn] = ACTIONS(6594), + [anon_sym_noreturn] = ACTIONS(6594), + [anon_sym__Nonnull] = ACTIONS(6594), + [anon_sym_mutable] = ACTIONS(6594), + [anon_sym_constinit] = ACTIONS(6594), + [anon_sym_consteval] = ACTIONS(6594), + [anon_sym_alignas] = ACTIONS(6594), + [anon_sym__Alignas] = ACTIONS(6594), + [sym_primitive_type] = ACTIONS(6594), + [anon_sym_or] = ACTIONS(6594), + [anon_sym_and] = ACTIONS(6594), + [anon_sym_asm] = ACTIONS(6594), + [anon_sym___asm__] = ACTIONS(6594), + [anon_sym___asm] = ACTIONS(6594), + [anon_sym_DASH_GT] = ACTIONS(6601), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6594), + [anon_sym_decltype] = ACTIONS(6594), + [anon_sym_final] = ACTIONS(6594), + [anon_sym_override] = ACTIONS(6594), + [anon_sym_GT2] = ACTIONS(6601), + [anon_sym_try] = ACTIONS(6594), + [anon_sym_noexcept] = ACTIONS(6594), + [anon_sym_throw] = ACTIONS(6594), + [anon_sym_requires] = ACTIONS(6594), + }, + [STATE(3736)] = { + [sym_type_qualifier] = STATE(3754), + [sym_alignas_qualifier] = STATE(4026), + [aux_sym__type_definition_type_repeat1] = STATE(3754), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6901), + [anon_sym_COMMA] = ACTIONS(6901), + [anon_sym_LPAREN2] = ACTIONS(6901), + [anon_sym_DASH] = ACTIONS(6899), + [anon_sym_PLUS] = ACTIONS(6899), + [anon_sym_STAR] = ACTIONS(6901), + [anon_sym_SLASH] = ACTIONS(6899), + [anon_sym_PERCENT] = ACTIONS(6901), + [anon_sym_PIPE_PIPE] = ACTIONS(6901), + [anon_sym_AMP_AMP] = ACTIONS(6901), + [anon_sym_PIPE] = ACTIONS(6899), + [anon_sym_CARET] = ACTIONS(6901), + [anon_sym_AMP] = ACTIONS(6899), + [anon_sym_EQ_EQ] = ACTIONS(6901), + [anon_sym_BANG_EQ] = ACTIONS(6901), + [anon_sym_GT] = ACTIONS(6899), + [anon_sym_GT_EQ] = ACTIONS(6901), + [anon_sym_LT_EQ] = ACTIONS(6899), + [anon_sym_LT] = ACTIONS(6899), + [anon_sym_LT_LT] = ACTIONS(6901), + [anon_sym_GT_GT] = ACTIONS(6901), + [anon_sym___extension__] = ACTIONS(7882), + [anon_sym___attribute__] = ACTIONS(6901), + [anon_sym___attribute] = ACTIONS(6899), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6901), + [anon_sym_LBRACK] = ACTIONS(6899), + [anon_sym_RBRACK] = ACTIONS(6901), + [anon_sym_const] = ACTIONS(7890), + [anon_sym_constexpr] = ACTIONS(7882), + [anon_sym_volatile] = ACTIONS(7882), + [anon_sym_restrict] = ACTIONS(7882), + [anon_sym___restrict__] = ACTIONS(7882), + [anon_sym__Atomic] = ACTIONS(7882), + [anon_sym__Noreturn] = ACTIONS(7882), + [anon_sym_noreturn] = ACTIONS(7882), + [anon_sym__Nonnull] = ACTIONS(7882), + [anon_sym_mutable] = ACTIONS(7882), + [anon_sym_constinit] = ACTIONS(7882), + [anon_sym_consteval] = ACTIONS(7882), + [anon_sym_alignas] = ACTIONS(7892), + [anon_sym__Alignas] = ACTIONS(7892), + [anon_sym_QMARK] = ACTIONS(6901), + [anon_sym_LT_EQ_GT] = ACTIONS(6901), + [anon_sym_or] = ACTIONS(6901), + [anon_sym_and] = ACTIONS(6901), + [anon_sym_bitor] = ACTIONS(6901), + [anon_sym_xor] = ACTIONS(6901), + [anon_sym_bitand] = ACTIONS(6901), + [anon_sym_not_eq] = ACTIONS(6901), + [anon_sym_DASH_DASH] = ACTIONS(6901), + [anon_sym_PLUS_PLUS] = ACTIONS(6901), + [anon_sym_asm] = ACTIONS(6901), + [anon_sym___asm__] = ACTIONS(6901), + [anon_sym___asm] = ACTIONS(6899), + [anon_sym_DOT] = ACTIONS(6899), + [anon_sym_DOT_STAR] = ACTIONS(6901), + [anon_sym_DASH_GT] = ACTIONS(6901), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6901), + [anon_sym_override] = ACTIONS(6901), + [anon_sym_noexcept] = ACTIONS(6901), + [anon_sym_throw] = ACTIONS(6901), + [anon_sym_requires] = ACTIONS(6901), + }, + [STATE(3737)] = { + [sym_type_qualifier] = STATE(3746), + [sym_alignas_qualifier] = STATE(3991), + [aux_sym__type_definition_type_repeat1] = STATE(3746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6901), + [anon_sym_COMMA] = ACTIONS(6901), + [anon_sym_LPAREN2] = ACTIONS(6901), + [anon_sym_DASH] = ACTIONS(6899), + [anon_sym_PLUS] = ACTIONS(6899), + [anon_sym_STAR] = ACTIONS(6901), + [anon_sym_SLASH] = ACTIONS(6899), + [anon_sym_PERCENT] = ACTIONS(6901), + [anon_sym_PIPE_PIPE] = ACTIONS(6901), + [anon_sym_AMP_AMP] = ACTIONS(6901), + [anon_sym_PIPE] = ACTIONS(6899), + [anon_sym_CARET] = ACTIONS(6901), + [anon_sym_AMP] = ACTIONS(6899), + [anon_sym_EQ_EQ] = ACTIONS(6901), + [anon_sym_BANG_EQ] = ACTIONS(6901), + [anon_sym_GT] = ACTIONS(6899), + [anon_sym_GT_EQ] = ACTIONS(6899), + [anon_sym_LT_EQ] = ACTIONS(6899), + [anon_sym_LT] = ACTIONS(6899), + [anon_sym_LT_LT] = ACTIONS(6901), + [anon_sym_GT_GT] = ACTIONS(6899), + [anon_sym___extension__] = ACTIONS(7814), + [anon_sym___attribute__] = ACTIONS(6901), + [anon_sym___attribute] = ACTIONS(6899), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6901), + [anon_sym_LBRACK] = ACTIONS(6899), + [anon_sym_const] = ACTIONS(7822), + [anon_sym_constexpr] = ACTIONS(7814), + [anon_sym_volatile] = ACTIONS(7814), + [anon_sym_restrict] = ACTIONS(7814), + [anon_sym___restrict__] = ACTIONS(7814), + [anon_sym__Atomic] = ACTIONS(7814), + [anon_sym__Noreturn] = ACTIONS(7814), + [anon_sym_noreturn] = ACTIONS(7814), + [anon_sym__Nonnull] = ACTIONS(7814), + [anon_sym_mutable] = ACTIONS(7814), + [anon_sym_constinit] = ACTIONS(7814), + [anon_sym_consteval] = ACTIONS(7814), + [anon_sym_alignas] = ACTIONS(7824), + [anon_sym__Alignas] = ACTIONS(7824), + [anon_sym_QMARK] = ACTIONS(6901), + [anon_sym_LT_EQ_GT] = ACTIONS(6901), + [anon_sym_or] = ACTIONS(6901), + [anon_sym_and] = ACTIONS(6901), + [anon_sym_bitor] = ACTIONS(6901), + [anon_sym_xor] = ACTIONS(6901), + [anon_sym_bitand] = ACTIONS(6901), + [anon_sym_not_eq] = ACTIONS(6901), + [anon_sym_DASH_DASH] = ACTIONS(6901), + [anon_sym_PLUS_PLUS] = ACTIONS(6901), + [anon_sym_asm] = ACTIONS(6901), + [anon_sym___asm__] = ACTIONS(6901), + [anon_sym___asm] = ACTIONS(6899), + [anon_sym_DOT] = ACTIONS(6899), + [anon_sym_DOT_STAR] = ACTIONS(6901), + [anon_sym_DASH_GT] = ACTIONS(6901), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6901), + [anon_sym_override] = ACTIONS(6901), + [anon_sym_GT2] = ACTIONS(6901), + [anon_sym_noexcept] = ACTIONS(6901), + [anon_sym_throw] = ACTIONS(6901), + [anon_sym_requires] = ACTIONS(6901), + }, + [STATE(3738)] = { + [sym_string_literal] = STATE(3730), + [sym_template_argument_list] = STATE(5351), + [sym_raw_string_literal] = STATE(3730), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9453), + [anon_sym_COMMA] = ACTIONS(9544), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(9546), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_RBRACK] = ACTIONS(9549), + [anon_sym_EQ] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5638), + [anon_sym_SLASH_EQ] = ACTIONS(5638), + [anon_sym_PERCENT_EQ] = ACTIONS(5638), + [anon_sym_PLUS_EQ] = ACTIONS(5638), + [anon_sym_DASH_EQ] = ACTIONS(5638), + [anon_sym_LT_LT_EQ] = ACTIONS(5638), + [anon_sym_GT_GT_EQ] = ACTIONS(5638), + [anon_sym_AMP_EQ] = ACTIONS(5638), + [anon_sym_CARET_EQ] = ACTIONS(5638), + [anon_sym_PIPE_EQ] = ACTIONS(5638), + [anon_sym_and_eq] = ACTIONS(5638), + [anon_sym_or_eq] = ACTIONS(5638), + [anon_sym_xor_eq] = ACTIONS(5638), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(7069), + [anon_sym_u_DQUOTE] = ACTIONS(7069), + [anon_sym_U_DQUOTE] = ACTIONS(7069), + [anon_sym_u8_DQUOTE] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7075), + [anon_sym_LR_DQUOTE] = ACTIONS(7075), + [anon_sym_uR_DQUOTE] = ACTIONS(7075), + [anon_sym_UR_DQUOTE] = ACTIONS(7075), + [anon_sym_u8R_DQUOTE] = ACTIONS(7075), + }, + [STATE(3739)] = { + [sym_identifier] = ACTIONS(7301), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7303), + [anon_sym_COMMA] = ACTIONS(7303), + [anon_sym_RPAREN] = ACTIONS(7303), + [anon_sym_LPAREN2] = ACTIONS(7303), + [anon_sym_TILDE] = ACTIONS(7303), + [anon_sym_STAR] = ACTIONS(7303), + [anon_sym_PIPE_PIPE] = ACTIONS(7303), + [anon_sym_AMP_AMP] = ACTIONS(7303), + [anon_sym_AMP] = ACTIONS(7301), + [anon_sym_SEMI] = ACTIONS(7303), + [anon_sym___extension__] = ACTIONS(7301), + [anon_sym_virtual] = ACTIONS(7301), + [anon_sym_extern] = ACTIONS(7301), + [anon_sym___attribute__] = ACTIONS(7301), + [anon_sym___attribute] = ACTIONS(7301), + [anon_sym_COLON] = ACTIONS(7301), + [anon_sym_COLON_COLON] = ACTIONS(7303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7303), + [anon_sym___declspec] = ACTIONS(7301), + [anon_sym___based] = ACTIONS(7301), + [anon_sym___cdecl] = ACTIONS(7301), + [anon_sym___clrcall] = ACTIONS(7301), + [anon_sym___stdcall] = ACTIONS(7301), + [anon_sym___fastcall] = ACTIONS(7301), + [anon_sym___thiscall] = ACTIONS(7301), + [anon_sym___vectorcall] = ACTIONS(7301), + [anon_sym_LBRACE] = ACTIONS(7303), + [anon_sym_LBRACK] = ACTIONS(7301), + [anon_sym_static] = ACTIONS(7301), + [anon_sym_EQ] = ACTIONS(7303), + [anon_sym_register] = ACTIONS(7301), + [anon_sym_inline] = ACTIONS(7301), + [anon_sym___inline] = ACTIONS(7301), + [anon_sym___inline__] = ACTIONS(7301), + [anon_sym___forceinline] = ACTIONS(7301), + [anon_sym_thread_local] = ACTIONS(7301), + [anon_sym___thread] = ACTIONS(7301), + [anon_sym_const] = ACTIONS(7301), + [anon_sym_constexpr] = ACTIONS(7301), + [anon_sym_volatile] = ACTIONS(7301), + [anon_sym_restrict] = ACTIONS(7301), + [anon_sym___restrict__] = ACTIONS(7301), + [anon_sym__Atomic] = ACTIONS(7301), + [anon_sym__Noreturn] = ACTIONS(7301), + [anon_sym_noreturn] = ACTIONS(7301), + [anon_sym__Nonnull] = ACTIONS(7301), + [anon_sym_mutable] = ACTIONS(7301), + [anon_sym_constinit] = ACTIONS(7301), + [anon_sym_consteval] = ACTIONS(7301), + [anon_sym_alignas] = ACTIONS(7301), + [anon_sym__Alignas] = ACTIONS(7301), + [anon_sym_or] = ACTIONS(7301), + [anon_sym_and] = ACTIONS(7301), + [anon_sym_DASH_GT] = ACTIONS(7303), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7301), + [anon_sym_decltype] = ACTIONS(7301), + [anon_sym_final] = ACTIONS(7301), + [anon_sym_override] = ACTIONS(7301), + [anon_sym_template] = ACTIONS(7301), + [anon_sym_GT2] = ACTIONS(7303), + [anon_sym_operator] = ACTIONS(7301), + [anon_sym_noexcept] = ACTIONS(7301), + [anon_sym_throw] = ACTIONS(7301), + [anon_sym_LBRACK_COLON] = ACTIONS(7303), + }, + [STATE(3740)] = { + [sym_identifier] = ACTIONS(6603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6596), + [anon_sym_COMMA] = ACTIONS(6596), + [anon_sym_RPAREN] = ACTIONS(6596), + [aux_sym_preproc_if_token2] = ACTIONS(6596), + [aux_sym_preproc_else_token1] = ACTIONS(6596), + [aux_sym_preproc_elif_token1] = ACTIONS(6603), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6596), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6596), + [anon_sym_LPAREN2] = ACTIONS(6596), + [anon_sym_DASH] = ACTIONS(6603), + [anon_sym_PLUS] = ACTIONS(6603), + [anon_sym_STAR] = ACTIONS(6603), + [anon_sym_SLASH] = ACTIONS(6603), + [anon_sym_PERCENT] = ACTIONS(6603), + [anon_sym_PIPE_PIPE] = ACTIONS(6596), + [anon_sym_AMP_AMP] = ACTIONS(6596), + [anon_sym_PIPE] = ACTIONS(6603), + [anon_sym_CARET] = ACTIONS(6603), + [anon_sym_AMP] = ACTIONS(6603), + [anon_sym_EQ_EQ] = ACTIONS(6596), + [anon_sym_BANG_EQ] = ACTIONS(6596), + [anon_sym_GT] = ACTIONS(6603), + [anon_sym_GT_EQ] = ACTIONS(6596), + [anon_sym_LT_EQ] = ACTIONS(6603), + [anon_sym_LT] = ACTIONS(6603), + [anon_sym_LT_LT] = ACTIONS(6603), + [anon_sym_GT_GT] = ACTIONS(6603), + [anon_sym_SEMI] = ACTIONS(6596), + [anon_sym___attribute__] = ACTIONS(6603), + [anon_sym___attribute] = ACTIONS(6603), + [anon_sym_COLON] = ACTIONS(6603), + [anon_sym_COLON_COLON] = ACTIONS(6601), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6596), + [anon_sym_LBRACE] = ACTIONS(6601), + [anon_sym_RBRACE] = ACTIONS(6596), + [anon_sym_LBRACK] = ACTIONS(6596), + [anon_sym_EQ] = ACTIONS(6603), + [anon_sym_QMARK] = ACTIONS(6596), + [anon_sym_STAR_EQ] = ACTIONS(6596), + [anon_sym_SLASH_EQ] = ACTIONS(6596), + [anon_sym_PERCENT_EQ] = ACTIONS(6596), + [anon_sym_PLUS_EQ] = ACTIONS(6596), + [anon_sym_DASH_EQ] = ACTIONS(6596), + [anon_sym_LT_LT_EQ] = ACTIONS(6596), + [anon_sym_GT_GT_EQ] = ACTIONS(6596), + [anon_sym_AMP_EQ] = ACTIONS(6596), + [anon_sym_CARET_EQ] = ACTIONS(6596), + [anon_sym_PIPE_EQ] = ACTIONS(6596), + [anon_sym_and_eq] = ACTIONS(6603), + [anon_sym_or_eq] = ACTIONS(6603), + [anon_sym_xor_eq] = ACTIONS(6603), + [anon_sym_LT_EQ_GT] = ACTIONS(6596), + [anon_sym_or] = ACTIONS(6603), + [anon_sym_and] = ACTIONS(6603), + [anon_sym_bitor] = ACTIONS(6603), + [anon_sym_xor] = ACTIONS(6603), + [anon_sym_bitand] = ACTIONS(6603), + [anon_sym_not_eq] = ACTIONS(6603), + [anon_sym_DASH_DASH] = ACTIONS(6596), + [anon_sym_PLUS_PLUS] = ACTIONS(6596), + [anon_sym_DOT] = ACTIONS(6603), + [anon_sym_DOT_STAR] = ACTIONS(6596), + [anon_sym_DASH_GT] = ACTIONS(6596), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6596), + }, + [STATE(3741)] = { + [sym_string_literal] = STATE(3589), + [sym_raw_string_literal] = STATE(3589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9118), + [anon_sym_COMMA] = ACTIONS(9118), + [anon_sym_LPAREN2] = ACTIONS(9118), + [anon_sym_DASH] = ACTIONS(9116), + [anon_sym_PLUS] = ACTIONS(9116), + [anon_sym_STAR] = ACTIONS(9116), + [anon_sym_SLASH] = ACTIONS(9116), + [anon_sym_PERCENT] = ACTIONS(9116), + [anon_sym_PIPE_PIPE] = ACTIONS(9118), + [anon_sym_AMP_AMP] = ACTIONS(9118), + [anon_sym_PIPE] = ACTIONS(9116), + [anon_sym_CARET] = ACTIONS(9116), + [anon_sym_AMP] = ACTIONS(9116), + [anon_sym_EQ_EQ] = ACTIONS(9118), + [anon_sym_BANG_EQ] = ACTIONS(9118), + [anon_sym_GT] = ACTIONS(9116), + [anon_sym_GT_EQ] = ACTIONS(9118), + [anon_sym_LT_EQ] = ACTIONS(9116), + [anon_sym_LT] = ACTIONS(9116), + [anon_sym_LT_LT] = ACTIONS(9116), + [anon_sym_GT_GT] = ACTIONS(9116), + [anon_sym_SEMI] = ACTIONS(9118), + [anon_sym___attribute__] = ACTIONS(9116), + [anon_sym___attribute] = ACTIONS(9116), + [anon_sym_LBRACK] = ACTIONS(9118), + [anon_sym_EQ] = ACTIONS(9116), + [anon_sym_QMARK] = ACTIONS(9118), + [anon_sym_STAR_EQ] = ACTIONS(9118), + [anon_sym_SLASH_EQ] = ACTIONS(9118), + [anon_sym_PERCENT_EQ] = ACTIONS(9118), + [anon_sym_PLUS_EQ] = ACTIONS(9118), + [anon_sym_DASH_EQ] = ACTIONS(9118), + [anon_sym_LT_LT_EQ] = ACTIONS(9118), + [anon_sym_GT_GT_EQ] = ACTIONS(9118), + [anon_sym_AMP_EQ] = ACTIONS(9118), + [anon_sym_CARET_EQ] = ACTIONS(9118), + [anon_sym_PIPE_EQ] = ACTIONS(9118), + [anon_sym_and_eq] = ACTIONS(9116), + [anon_sym_or_eq] = ACTIONS(9116), + [anon_sym_xor_eq] = ACTIONS(9116), + [anon_sym_LT_EQ_GT] = ACTIONS(9118), + [anon_sym_or] = ACTIONS(9116), + [anon_sym_and] = ACTIONS(9116), + [anon_sym_bitor] = ACTIONS(9116), + [anon_sym_xor] = ACTIONS(9116), + [anon_sym_bitand] = ACTIONS(9116), + [anon_sym_not_eq] = ACTIONS(9116), + [anon_sym_DASH_DASH] = ACTIONS(9118), + [anon_sym_PLUS_PLUS] = ACTIONS(9118), + [anon_sym_DOT] = ACTIONS(9116), + [anon_sym_DOT_STAR] = ACTIONS(9118), + [anon_sym_DASH_GT] = ACTIONS(9118), + [anon_sym_L_DQUOTE] = ACTIONS(6876), + [anon_sym_u_DQUOTE] = ACTIONS(6876), + [anon_sym_U_DQUOTE] = ACTIONS(6876), + [anon_sym_u8_DQUOTE] = ACTIONS(6876), + [anon_sym_DQUOTE] = ACTIONS(6876), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6878), + [anon_sym_LR_DQUOTE] = ACTIONS(6878), + [anon_sym_uR_DQUOTE] = ACTIONS(6878), + [anon_sym_UR_DQUOTE] = ACTIONS(6878), + [anon_sym_u8R_DQUOTE] = ACTIONS(6878), + [sym_literal_suffix] = ACTIONS(9116), + }, + [STATE(3742)] = { + [sym_decltype_auto] = STATE(4458), + [sym_template_argument_list] = STATE(4054), + [aux_sym_sized_type_specifier_repeat1] = STATE(4015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), + [anon_sym_COMMA] = ACTIONS(5643), + [anon_sym_LPAREN2] = ACTIONS(5643), + [anon_sym_DASH] = ACTIONS(5636), + [anon_sym_PLUS] = ACTIONS(5636), + [anon_sym_STAR] = ACTIONS(5643), + [anon_sym_SLASH] = ACTIONS(5636), + [anon_sym_PERCENT] = ACTIONS(5643), + [anon_sym_PIPE_PIPE] = ACTIONS(5643), + [anon_sym_AMP_AMP] = ACTIONS(5643), + [anon_sym_PIPE] = ACTIONS(5636), + [anon_sym_CARET] = ACTIONS(5643), + [anon_sym_AMP] = ACTIONS(5636), + [anon_sym_EQ_EQ] = ACTIONS(5643), + [anon_sym_BANG_EQ] = ACTIONS(5643), + [anon_sym_GT] = ACTIONS(5636), + [anon_sym_GT_EQ] = ACTIONS(5636), + [anon_sym_LT_EQ] = ACTIONS(5636), + [anon_sym_LT] = ACTIONS(9552), + [anon_sym_LT_LT] = ACTIONS(5643), + [anon_sym_GT_GT] = ACTIONS(5636), + [anon_sym___extension__] = ACTIONS(5643), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5643), + [anon_sym_signed] = ACTIONS(6981), + [anon_sym_unsigned] = ACTIONS(6981), + [anon_sym_long] = ACTIONS(6981), + [anon_sym_short] = ACTIONS(6981), + [anon_sym_LBRACK] = ACTIONS(5643), + [anon_sym_const] = ACTIONS(5636), + [anon_sym_constexpr] = ACTIONS(5643), + [anon_sym_volatile] = ACTIONS(5643), + [anon_sym_restrict] = ACTIONS(5643), + [anon_sym___restrict__] = ACTIONS(5643), + [anon_sym__Atomic] = ACTIONS(5643), + [anon_sym__Noreturn] = ACTIONS(5643), + [anon_sym_noreturn] = ACTIONS(5643), + [anon_sym__Nonnull] = ACTIONS(5643), + [anon_sym_mutable] = ACTIONS(5643), + [anon_sym_constinit] = ACTIONS(5643), + [anon_sym_consteval] = ACTIONS(5643), + [anon_sym_alignas] = ACTIONS(5643), + [anon_sym__Alignas] = ACTIONS(5643), + [anon_sym_QMARK] = ACTIONS(5643), + [anon_sym_LT_EQ_GT] = ACTIONS(5643), + [anon_sym_or] = ACTIONS(5643), + [anon_sym_and] = ACTIONS(5643), + [anon_sym_bitor] = ACTIONS(5643), + [anon_sym_xor] = ACTIONS(5643), + [anon_sym_bitand] = ACTIONS(5643), + [anon_sym_not_eq] = ACTIONS(5643), + [anon_sym_DASH_DASH] = ACTIONS(5643), + [anon_sym_PLUS_PLUS] = ACTIONS(5643), + [anon_sym_DOT] = ACTIONS(5636), + [anon_sym_DOT_STAR] = ACTIONS(5643), + [anon_sym_DASH_GT] = ACTIONS(5643), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6989), + [anon_sym_decltype] = ACTIONS(6991), + [anon_sym_final] = ACTIONS(5643), + [anon_sym_override] = ACTIONS(5643), + [anon_sym_GT2] = ACTIONS(5643), + [anon_sym_requires] = ACTIONS(5643), + }, + [STATE(3743)] = { + [sym_identifier] = ACTIONS(7291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_RPAREN] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_TILDE] = ACTIONS(7293), + [anon_sym_STAR] = ACTIONS(7293), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_SEMI] = ACTIONS(7293), + [anon_sym___extension__] = ACTIONS(7291), + [anon_sym_virtual] = ACTIONS(7291), + [anon_sym_extern] = ACTIONS(7291), + [anon_sym___attribute__] = ACTIONS(7291), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_COLON] = ACTIONS(7291), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7293), + [anon_sym___declspec] = ACTIONS(7291), + [anon_sym___based] = ACTIONS(7291), + [anon_sym___cdecl] = ACTIONS(7291), + [anon_sym___clrcall] = ACTIONS(7291), + [anon_sym___stdcall] = ACTIONS(7291), + [anon_sym___fastcall] = ACTIONS(7291), + [anon_sym___thiscall] = ACTIONS(7291), + [anon_sym___vectorcall] = ACTIONS(7291), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7291), + [anon_sym_static] = ACTIONS(7291), + [anon_sym_EQ] = ACTIONS(7293), + [anon_sym_register] = ACTIONS(7291), + [anon_sym_inline] = ACTIONS(7291), + [anon_sym___inline] = ACTIONS(7291), + [anon_sym___inline__] = ACTIONS(7291), + [anon_sym___forceinline] = ACTIONS(7291), + [anon_sym_thread_local] = ACTIONS(7291), + [anon_sym___thread] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7291), + [anon_sym_volatile] = ACTIONS(7291), + [anon_sym_restrict] = ACTIONS(7291), + [anon_sym___restrict__] = ACTIONS(7291), + [anon_sym__Atomic] = ACTIONS(7291), + [anon_sym__Noreturn] = ACTIONS(7291), + [anon_sym_noreturn] = ACTIONS(7291), + [anon_sym__Nonnull] = ACTIONS(7291), + [anon_sym_mutable] = ACTIONS(7291), + [anon_sym_constinit] = ACTIONS(7291), + [anon_sym_consteval] = ACTIONS(7291), + [anon_sym_alignas] = ACTIONS(7291), + [anon_sym__Alignas] = ACTIONS(7291), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_DASH_GT] = ACTIONS(7293), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7291), + [anon_sym_decltype] = ACTIONS(7291), + [anon_sym_final] = ACTIONS(7291), + [anon_sym_override] = ACTIONS(7291), + [anon_sym_template] = ACTIONS(7291), + [anon_sym_GT2] = ACTIONS(7293), + [anon_sym_operator] = ACTIONS(7291), + [anon_sym_noexcept] = ACTIONS(7291), + [anon_sym_throw] = ACTIONS(7291), + [anon_sym_LBRACK_COLON] = ACTIONS(7293), + }, + [STATE(3744)] = { + [sym_template_argument_list] = STATE(2053), + [sym_identifier] = ACTIONS(7092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7097), + [anon_sym_COMMA] = ACTIONS(7097), + [anon_sym_RPAREN] = ACTIONS(7097), + [aux_sym_preproc_if_token2] = ACTIONS(7097), + [aux_sym_preproc_else_token1] = ACTIONS(7097), + [aux_sym_preproc_elif_token1] = ACTIONS(7092), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7097), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7097), + [anon_sym_LPAREN2] = ACTIONS(7097), + [anon_sym_DASH] = ACTIONS(7092), + [anon_sym_PLUS] = ACTIONS(7092), + [anon_sym_STAR] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7092), + [anon_sym_PERCENT] = ACTIONS(7092), + [anon_sym_PIPE_PIPE] = ACTIONS(7097), + [anon_sym_AMP_AMP] = ACTIONS(7097), + [anon_sym_PIPE] = ACTIONS(7092), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_AMP] = ACTIONS(7092), + [anon_sym_EQ_EQ] = ACTIONS(7097), + [anon_sym_BANG_EQ] = ACTIONS(7097), + [anon_sym_GT] = ACTIONS(7092), + [anon_sym_GT_EQ] = ACTIONS(7097), + [anon_sym_LT_EQ] = ACTIONS(7092), + [anon_sym_LT] = ACTIONS(7445), + [anon_sym_LT_LT] = ACTIONS(7092), + [anon_sym_GT_GT] = ACTIONS(7092), + [anon_sym_SEMI] = ACTIONS(7097), + [anon_sym___attribute__] = ACTIONS(7092), + [anon_sym___attribute] = ACTIONS(7092), + [anon_sym_COLON] = ACTIONS(7092), + [anon_sym_COLON_COLON] = ACTIONS(7087), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7097), + [anon_sym_RBRACE] = ACTIONS(7097), + [anon_sym_LBRACK] = ACTIONS(7097), + [anon_sym_EQ] = ACTIONS(7092), + [anon_sym_QMARK] = ACTIONS(7097), + [anon_sym_STAR_EQ] = ACTIONS(7097), + [anon_sym_SLASH_EQ] = ACTIONS(7097), + [anon_sym_PERCENT_EQ] = ACTIONS(7097), + [anon_sym_PLUS_EQ] = ACTIONS(7097), + [anon_sym_DASH_EQ] = ACTIONS(7097), + [anon_sym_LT_LT_EQ] = ACTIONS(7097), + [anon_sym_GT_GT_EQ] = ACTIONS(7097), + [anon_sym_AMP_EQ] = ACTIONS(7097), + [anon_sym_CARET_EQ] = ACTIONS(7097), + [anon_sym_PIPE_EQ] = ACTIONS(7097), + [anon_sym_and_eq] = ACTIONS(7092), + [anon_sym_or_eq] = ACTIONS(7092), + [anon_sym_xor_eq] = ACTIONS(7092), + [anon_sym_LT_EQ_GT] = ACTIONS(7097), + [anon_sym_or] = ACTIONS(7092), + [anon_sym_and] = ACTIONS(7092), + [anon_sym_bitor] = ACTIONS(7092), + [anon_sym_xor] = ACTIONS(7092), + [anon_sym_bitand] = ACTIONS(7092), + [anon_sym_not_eq] = ACTIONS(7092), + [anon_sym_DASH_DASH] = ACTIONS(7097), + [anon_sym_PLUS_PLUS] = ACTIONS(7097), + [anon_sym_DOT] = ACTIONS(7092), + [anon_sym_DOT_STAR] = ACTIONS(7097), + [anon_sym_DASH_GT] = ACTIONS(7097), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7097), + }, + [STATE(3745)] = { + [sym_string_literal] = STATE(3730), + [sym_template_argument_list] = STATE(5351), + [sym_raw_string_literal] = STATE(3730), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(9546), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_RBRACK] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5638), + [anon_sym_SLASH_EQ] = ACTIONS(5638), + [anon_sym_PERCENT_EQ] = ACTIONS(5638), + [anon_sym_PLUS_EQ] = ACTIONS(5638), + [anon_sym_DASH_EQ] = ACTIONS(5638), + [anon_sym_LT_LT_EQ] = ACTIONS(5638), + [anon_sym_GT_GT_EQ] = ACTIONS(5638), + [anon_sym_AMP_EQ] = ACTIONS(5638), + [anon_sym_CARET_EQ] = ACTIONS(5638), + [anon_sym_PIPE_EQ] = ACTIONS(5638), + [anon_sym_and_eq] = ACTIONS(5638), + [anon_sym_or_eq] = ACTIONS(5638), + [anon_sym_xor_eq] = ACTIONS(5638), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(7069), + [anon_sym_u_DQUOTE] = ACTIONS(7069), + [anon_sym_U_DQUOTE] = ACTIONS(7069), + [anon_sym_u8_DQUOTE] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7075), + [anon_sym_LR_DQUOTE] = ACTIONS(7075), + [anon_sym_uR_DQUOTE] = ACTIONS(7075), + [anon_sym_UR_DQUOTE] = ACTIONS(7075), + [anon_sym_u8R_DQUOTE] = ACTIONS(7075), + }, + [STATE(3746)] = { + [sym_type_qualifier] = STATE(3746), + [sym_alignas_qualifier] = STATE(3991), + [aux_sym__type_definition_type_repeat1] = STATE(3746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), + [anon_sym_COMMA] = ACTIONS(6891), + [anon_sym_LPAREN2] = ACTIONS(6891), + [anon_sym_DASH] = ACTIONS(6889), + [anon_sym_PLUS] = ACTIONS(6889), + [anon_sym_STAR] = ACTIONS(6891), + [anon_sym_SLASH] = ACTIONS(6889), + [anon_sym_PERCENT] = ACTIONS(6891), + [anon_sym_PIPE_PIPE] = ACTIONS(6891), + [anon_sym_AMP_AMP] = ACTIONS(6891), + [anon_sym_PIPE] = ACTIONS(6889), + [anon_sym_CARET] = ACTIONS(6891), + [anon_sym_AMP] = ACTIONS(6889), + [anon_sym_EQ_EQ] = ACTIONS(6891), + [anon_sym_BANG_EQ] = ACTIONS(6891), + [anon_sym_GT] = ACTIONS(6889), + [anon_sym_GT_EQ] = ACTIONS(6889), + [anon_sym_LT_EQ] = ACTIONS(6889), + [anon_sym_LT] = ACTIONS(6889), + [anon_sym_LT_LT] = ACTIONS(6891), + [anon_sym_GT_GT] = ACTIONS(6889), + [anon_sym___extension__] = ACTIONS(9554), + [anon_sym___attribute__] = ACTIONS(6891), + [anon_sym___attribute] = ACTIONS(6889), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6891), + [anon_sym_LBRACK] = ACTIONS(6889), + [anon_sym_const] = ACTIONS(9557), + [anon_sym_constexpr] = ACTIONS(9554), + [anon_sym_volatile] = ACTIONS(9554), + [anon_sym_restrict] = ACTIONS(9554), + [anon_sym___restrict__] = ACTIONS(9554), + [anon_sym__Atomic] = ACTIONS(9554), + [anon_sym__Noreturn] = ACTIONS(9554), + [anon_sym_noreturn] = ACTIONS(9554), + [anon_sym__Nonnull] = ACTIONS(9554), + [anon_sym_mutable] = ACTIONS(9554), + [anon_sym_constinit] = ACTIONS(9554), + [anon_sym_consteval] = ACTIONS(9554), + [anon_sym_alignas] = ACTIONS(9560), + [anon_sym__Alignas] = ACTIONS(9560), + [anon_sym_QMARK] = ACTIONS(6891), + [anon_sym_LT_EQ_GT] = ACTIONS(6891), + [anon_sym_or] = ACTIONS(6891), + [anon_sym_and] = ACTIONS(6891), + [anon_sym_bitor] = ACTIONS(6891), + [anon_sym_xor] = ACTIONS(6891), + [anon_sym_bitand] = ACTIONS(6891), + [anon_sym_not_eq] = ACTIONS(6891), + [anon_sym_DASH_DASH] = ACTIONS(6891), + [anon_sym_PLUS_PLUS] = ACTIONS(6891), + [anon_sym_asm] = ACTIONS(6891), + [anon_sym___asm__] = ACTIONS(6891), + [anon_sym___asm] = ACTIONS(6889), + [anon_sym_DOT] = ACTIONS(6889), + [anon_sym_DOT_STAR] = ACTIONS(6891), + [anon_sym_DASH_GT] = ACTIONS(6891), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6891), + [anon_sym_override] = ACTIONS(6891), + [anon_sym_GT2] = ACTIONS(6891), + [anon_sym_noexcept] = ACTIONS(6891), + [anon_sym_throw] = ACTIONS(6891), + [anon_sym_requires] = ACTIONS(6891), + }, + [STATE(3747)] = { + [sym_decltype_auto] = STATE(3215), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [anon_sym_RPAREN] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7225), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7225), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7225), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7225), + [anon_sym_GT_GT] = ACTIONS(7225), + [anon_sym_SEMI] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7225), + [anon_sym___attribute__] = ACTIONS(7225), + [anon_sym___attribute] = ACTIONS(7223), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_RBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7225), + [anon_sym_volatile] = ACTIONS(7225), + [anon_sym_restrict] = ACTIONS(7225), + [anon_sym___restrict__] = ACTIONS(7225), + [anon_sym__Atomic] = ACTIONS(7225), + [anon_sym__Noreturn] = ACTIONS(7225), + [anon_sym_noreturn] = ACTIONS(7225), + [anon_sym__Nonnull] = ACTIONS(7225), + [anon_sym_mutable] = ACTIONS(7225), + [anon_sym_constinit] = ACTIONS(7225), + [anon_sym_consteval] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7225), + [anon_sym__Alignas] = ACTIONS(7225), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7225), + [anon_sym_and] = ACTIONS(7225), + [anon_sym_bitor] = ACTIONS(7225), + [anon_sym_xor] = ACTIONS(7225), + [anon_sym_bitand] = ACTIONS(7225), + [anon_sym_not_eq] = ACTIONS(7225), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9443), + [anon_sym_decltype] = ACTIONS(6871), + [anon_sym_final] = ACTIONS(7225), + [anon_sym_override] = ACTIONS(7225), + [anon_sym_requires] = ACTIONS(7225), + [anon_sym_COLON_RBRACK] = ACTIONS(7225), + }, + [STATE(3748)] = { + [sym_identifier] = ACTIONS(7291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_RPAREN] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_TILDE] = ACTIONS(7293), + [anon_sym_STAR] = ACTIONS(7293), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_SEMI] = ACTIONS(7293), + [anon_sym___extension__] = ACTIONS(7291), + [anon_sym_virtual] = ACTIONS(7291), + [anon_sym_extern] = ACTIONS(7291), + [anon_sym___attribute__] = ACTIONS(7291), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_COLON] = ACTIONS(7291), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7293), + [anon_sym___declspec] = ACTIONS(7291), + [anon_sym___based] = ACTIONS(7291), + [anon_sym___cdecl] = ACTIONS(7291), + [anon_sym___clrcall] = ACTIONS(7291), + [anon_sym___stdcall] = ACTIONS(7291), + [anon_sym___fastcall] = ACTIONS(7291), + [anon_sym___thiscall] = ACTIONS(7291), + [anon_sym___vectorcall] = ACTIONS(7291), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7291), + [anon_sym_static] = ACTIONS(7291), + [anon_sym_EQ] = ACTIONS(7293), + [anon_sym_register] = ACTIONS(7291), + [anon_sym_inline] = ACTIONS(7291), + [anon_sym___inline] = ACTIONS(7291), + [anon_sym___inline__] = ACTIONS(7291), + [anon_sym___forceinline] = ACTIONS(7291), + [anon_sym_thread_local] = ACTIONS(7291), + [anon_sym___thread] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7291), + [anon_sym_volatile] = ACTIONS(7291), + [anon_sym_restrict] = ACTIONS(7291), + [anon_sym___restrict__] = ACTIONS(7291), + [anon_sym__Atomic] = ACTIONS(7291), + [anon_sym__Noreturn] = ACTIONS(7291), + [anon_sym_noreturn] = ACTIONS(7291), + [anon_sym__Nonnull] = ACTIONS(7291), + [anon_sym_mutable] = ACTIONS(7291), + [anon_sym_constinit] = ACTIONS(7291), + [anon_sym_consteval] = ACTIONS(7291), + [anon_sym_alignas] = ACTIONS(7291), + [anon_sym__Alignas] = ACTIONS(7291), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_DASH_GT] = ACTIONS(7293), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7291), + [anon_sym_decltype] = ACTIONS(7291), + [anon_sym_final] = ACTIONS(7291), + [anon_sym_override] = ACTIONS(7291), + [anon_sym_template] = ACTIONS(7291), + [anon_sym_GT2] = ACTIONS(7293), + [anon_sym_operator] = ACTIONS(7291), + [anon_sym_noexcept] = ACTIONS(7291), + [anon_sym_throw] = ACTIONS(7291), + [anon_sym_LBRACK_COLON] = ACTIONS(7293), + }, + [STATE(3749)] = { + [sym_string_literal] = STATE(4105), + [sym_template_argument_list] = STATE(5616), + [sym_raw_string_literal] = STATE(4105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(7101), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5638), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(6995), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(6997), + [anon_sym_SLASH_EQ] = ACTIONS(6997), + [anon_sym_PERCENT_EQ] = ACTIONS(6997), + [anon_sym_PLUS_EQ] = ACTIONS(6997), + [anon_sym_DASH_EQ] = ACTIONS(6997), + [anon_sym_LT_LT_EQ] = ACTIONS(6997), + [anon_sym_GT_GT_EQ] = ACTIONS(6997), + [anon_sym_AMP_EQ] = ACTIONS(6997), + [anon_sym_CARET_EQ] = ACTIONS(6997), + [anon_sym_PIPE_EQ] = ACTIONS(6997), + [anon_sym_and_eq] = ACTIONS(6997), + [anon_sym_or_eq] = ACTIONS(6997), + [anon_sym_xor_eq] = ACTIONS(6997), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + }, + [STATE(3750)] = { + [sym_template_argument_list] = STATE(2938), + [sym_identifier] = ACTIONS(7371), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5657), + [anon_sym_COMMA] = ACTIONS(5657), + [aux_sym_preproc_if_token2] = ACTIONS(5657), + [aux_sym_preproc_else_token1] = ACTIONS(5657), + [aux_sym_preproc_elif_token1] = ACTIONS(7371), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5657), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5657), + [anon_sym_LPAREN2] = ACTIONS(5657), + [anon_sym_DASH] = ACTIONS(7371), + [anon_sym_PLUS] = ACTIONS(7371), + [anon_sym_STAR] = ACTIONS(5657), + [anon_sym_SLASH] = ACTIONS(7371), + [anon_sym_PERCENT] = ACTIONS(5657), + [anon_sym_PIPE_PIPE] = ACTIONS(5657), + [anon_sym_AMP_AMP] = ACTIONS(5657), + [anon_sym_PIPE] = ACTIONS(7371), + [anon_sym_CARET] = ACTIONS(5657), + [anon_sym_AMP] = ACTIONS(7371), + [anon_sym_EQ_EQ] = ACTIONS(5657), + [anon_sym_BANG_EQ] = ACTIONS(5657), + [anon_sym_GT] = ACTIONS(7371), + [anon_sym_GT_EQ] = ACTIONS(5657), + [anon_sym_LT_EQ] = ACTIONS(7371), + [anon_sym_LT] = ACTIONS(8883), + [anon_sym_LT_LT] = ACTIONS(5657), + [anon_sym_GT_GT] = ACTIONS(5657), + [anon_sym___extension__] = ACTIONS(7371), + [anon_sym___attribute__] = ACTIONS(7371), + [anon_sym___attribute] = ACTIONS(7371), + [anon_sym_COLON] = ACTIONS(7371), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5657), + [anon_sym_const] = ACTIONS(7371), + [anon_sym_constexpr] = ACTIONS(7371), + [anon_sym_volatile] = ACTIONS(7371), + [anon_sym_restrict] = ACTIONS(7371), + [anon_sym___restrict__] = ACTIONS(7371), + [anon_sym__Atomic] = ACTIONS(7371), + [anon_sym__Noreturn] = ACTIONS(7371), + [anon_sym_noreturn] = ACTIONS(7371), + [anon_sym__Nonnull] = ACTIONS(7371), + [anon_sym_mutable] = ACTIONS(7371), + [anon_sym_constinit] = ACTIONS(7371), + [anon_sym_consteval] = ACTIONS(7371), + [anon_sym_alignas] = ACTIONS(7371), + [anon_sym__Alignas] = ACTIONS(7371), + [anon_sym_QMARK] = ACTIONS(5657), + [anon_sym_LT_EQ_GT] = ACTIONS(5657), + [anon_sym_or] = ACTIONS(7371), + [anon_sym_and] = ACTIONS(7371), + [anon_sym_bitor] = ACTIONS(7371), + [anon_sym_xor] = ACTIONS(7371), + [anon_sym_bitand] = ACTIONS(7371), + [anon_sym_not_eq] = ACTIONS(7371), + [anon_sym_DASH_DASH] = ACTIONS(5657), + [anon_sym_PLUS_PLUS] = ACTIONS(5657), + [anon_sym_DOT] = ACTIONS(7371), + [anon_sym_DOT_STAR] = ACTIONS(5657), + [anon_sym_DASH_GT] = ACTIONS(5657), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7371), + [anon_sym_override] = ACTIONS(7371), + [anon_sym_requires] = ACTIONS(7371), + }, + [STATE(3751)] = { + [sym_string_literal] = STATE(3706), + [sym_raw_string_literal] = STATE(3706), + [aux_sym_concatenated_string_repeat1] = STATE(3706), + [sym_identifier] = ACTIONS(9563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8454), + [anon_sym_COMMA] = ACTIONS(8454), + [anon_sym_LPAREN2] = ACTIONS(8454), + [anon_sym_DASH] = ACTIONS(8456), + [anon_sym_PLUS] = ACTIONS(8456), + [anon_sym_STAR] = ACTIONS(8456), + [anon_sym_SLASH] = ACTIONS(8456), + [anon_sym_PERCENT] = ACTIONS(8456), + [anon_sym_PIPE_PIPE] = ACTIONS(8454), + [anon_sym_AMP_AMP] = ACTIONS(8454), + [anon_sym_PIPE] = ACTIONS(8456), + [anon_sym_CARET] = ACTIONS(8456), + [anon_sym_AMP] = ACTIONS(8456), + [anon_sym_EQ_EQ] = ACTIONS(8454), + [anon_sym_BANG_EQ] = ACTIONS(8454), + [anon_sym_GT] = ACTIONS(8456), + [anon_sym_GT_EQ] = ACTIONS(8454), + [anon_sym_LT_EQ] = ACTIONS(8456), + [anon_sym_LT] = ACTIONS(8456), + [anon_sym_LT_LT] = ACTIONS(8456), + [anon_sym_GT_GT] = ACTIONS(8456), + [anon_sym_LBRACK] = ACTIONS(8454), + [anon_sym_RBRACK] = ACTIONS(8454), + [anon_sym_EQ] = ACTIONS(8456), + [anon_sym_QMARK] = ACTIONS(8454), + [anon_sym_STAR_EQ] = ACTIONS(8454), + [anon_sym_SLASH_EQ] = ACTIONS(8454), + [anon_sym_PERCENT_EQ] = ACTIONS(8454), + [anon_sym_PLUS_EQ] = ACTIONS(8454), + [anon_sym_DASH_EQ] = ACTIONS(8454), + [anon_sym_LT_LT_EQ] = ACTIONS(8454), + [anon_sym_GT_GT_EQ] = ACTIONS(8454), + [anon_sym_AMP_EQ] = ACTIONS(8454), + [anon_sym_CARET_EQ] = ACTIONS(8454), + [anon_sym_PIPE_EQ] = ACTIONS(8454), + [anon_sym_and_eq] = ACTIONS(8456), + [anon_sym_or_eq] = ACTIONS(8456), + [anon_sym_xor_eq] = ACTIONS(8456), + [anon_sym_LT_EQ_GT] = ACTIONS(8454), + [anon_sym_or] = ACTIONS(8456), + [anon_sym_and] = ACTIONS(8456), + [anon_sym_bitor] = ACTIONS(8456), + [anon_sym_xor] = ACTIONS(8456), + [anon_sym_bitand] = ACTIONS(8456), + [anon_sym_not_eq] = ACTIONS(8456), + [anon_sym_DASH_DASH] = ACTIONS(8454), + [anon_sym_PLUS_PLUS] = ACTIONS(8454), + [anon_sym_DOT] = ACTIONS(8456), + [anon_sym_DOT_STAR] = ACTIONS(8454), + [anon_sym_DASH_GT] = ACTIONS(8454), + [anon_sym_L_DQUOTE] = ACTIONS(7069), + [anon_sym_u_DQUOTE] = ACTIONS(7069), + [anon_sym_U_DQUOTE] = ACTIONS(7069), + [anon_sym_u8_DQUOTE] = ACTIONS(7069), + [anon_sym_DQUOTE] = ACTIONS(7069), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7075), + [anon_sym_LR_DQUOTE] = ACTIONS(7075), + [anon_sym_uR_DQUOTE] = ACTIONS(7075), + [anon_sym_UR_DQUOTE] = ACTIONS(7075), + [anon_sym_u8R_DQUOTE] = ACTIONS(7075), + [sym_literal_suffix] = ACTIONS(8456), + }, + [STATE(3752)] = { + [sym_identifier] = ACTIONS(7291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), + [anon_sym_COMMA] = ACTIONS(7293), + [anon_sym_RPAREN] = ACTIONS(7293), + [anon_sym_LPAREN2] = ACTIONS(7293), + [anon_sym_TILDE] = ACTIONS(7293), + [anon_sym_STAR] = ACTIONS(7293), + [anon_sym_PIPE_PIPE] = ACTIONS(7293), + [anon_sym_AMP_AMP] = ACTIONS(7293), + [anon_sym_AMP] = ACTIONS(7291), + [anon_sym_SEMI] = ACTIONS(7293), + [anon_sym___extension__] = ACTIONS(7291), + [anon_sym_virtual] = ACTIONS(7291), + [anon_sym_extern] = ACTIONS(7291), + [anon_sym___attribute__] = ACTIONS(7291), + [anon_sym___attribute] = ACTIONS(7291), + [anon_sym_COLON] = ACTIONS(7291), + [anon_sym_COLON_COLON] = ACTIONS(7293), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7293), + [anon_sym___declspec] = ACTIONS(7291), + [anon_sym___based] = ACTIONS(7291), + [anon_sym___cdecl] = ACTIONS(7291), + [anon_sym___clrcall] = ACTIONS(7291), + [anon_sym___stdcall] = ACTIONS(7291), + [anon_sym___fastcall] = ACTIONS(7291), + [anon_sym___thiscall] = ACTIONS(7291), + [anon_sym___vectorcall] = ACTIONS(7291), + [anon_sym_LBRACE] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(7291), + [anon_sym_static] = ACTIONS(7291), + [anon_sym_EQ] = ACTIONS(7293), + [anon_sym_register] = ACTIONS(7291), + [anon_sym_inline] = ACTIONS(7291), + [anon_sym___inline] = ACTIONS(7291), + [anon_sym___inline__] = ACTIONS(7291), + [anon_sym___forceinline] = ACTIONS(7291), + [anon_sym_thread_local] = ACTIONS(7291), + [anon_sym___thread] = ACTIONS(7291), + [anon_sym_const] = ACTIONS(7291), + [anon_sym_constexpr] = ACTIONS(7291), + [anon_sym_volatile] = ACTIONS(7291), + [anon_sym_restrict] = ACTIONS(7291), + [anon_sym___restrict__] = ACTIONS(7291), + [anon_sym__Atomic] = ACTIONS(7291), + [anon_sym__Noreturn] = ACTIONS(7291), + [anon_sym_noreturn] = ACTIONS(7291), + [anon_sym__Nonnull] = ACTIONS(7291), + [anon_sym_mutable] = ACTIONS(7291), + [anon_sym_constinit] = ACTIONS(7291), + [anon_sym_consteval] = ACTIONS(7291), + [anon_sym_alignas] = ACTIONS(7291), + [anon_sym__Alignas] = ACTIONS(7291), + [anon_sym_or] = ACTIONS(7291), + [anon_sym_and] = ACTIONS(7291), + [anon_sym_DASH_GT] = ACTIONS(7293), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7291), + [anon_sym_decltype] = ACTIONS(7291), + [anon_sym_final] = ACTIONS(7291), + [anon_sym_override] = ACTIONS(7291), + [anon_sym_template] = ACTIONS(7291), + [anon_sym_GT2] = ACTIONS(7293), + [anon_sym_operator] = ACTIONS(7291), + [anon_sym_noexcept] = ACTIONS(7291), + [anon_sym_throw] = ACTIONS(7291), + [anon_sym_LBRACK_COLON] = ACTIONS(7293), + }, + [STATE(3753)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2607), + [sym_identifier] = ACTIONS(7528), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), + [anon_sym_COMMA] = ACTIONS(7525), + [aux_sym_preproc_if_token2] = ACTIONS(7525), + [aux_sym_preproc_else_token1] = ACTIONS(7525), + [aux_sym_preproc_elif_token1] = ACTIONS(7528), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7525), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7525), + [anon_sym_LPAREN2] = ACTIONS(7525), + [anon_sym_DASH] = ACTIONS(7528), + [anon_sym_PLUS] = ACTIONS(7528), + [anon_sym_STAR] = ACTIONS(7525), + [anon_sym_SLASH] = ACTIONS(7528), + [anon_sym_PERCENT] = ACTIONS(7525), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_AMP_AMP] = ACTIONS(7525), + [anon_sym_PIPE] = ACTIONS(7528), + [anon_sym_CARET] = ACTIONS(7525), + [anon_sym_AMP] = ACTIONS(7528), + [anon_sym_EQ_EQ] = ACTIONS(7525), + [anon_sym_BANG_EQ] = ACTIONS(7525), + [anon_sym_GT] = ACTIONS(7528), + [anon_sym_GT_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7528), + [anon_sym_LT] = ACTIONS(7528), + [anon_sym_LT_LT] = ACTIONS(7525), + [anon_sym_GT_GT] = ACTIONS(7525), + [anon_sym___extension__] = ACTIONS(6999), + [anon_sym___attribute__] = ACTIONS(7528), + [anon_sym___attribute] = ACTIONS(7528), + [anon_sym_LBRACE] = ACTIONS(7525), + [anon_sym_signed] = ACTIONS(8505), + [anon_sym_unsigned] = ACTIONS(8505), + [anon_sym_long] = ACTIONS(8505), + [anon_sym_short] = ACTIONS(8505), + [anon_sym_LBRACK] = ACTIONS(7525), + [anon_sym_const] = ACTIONS(6999), + [anon_sym_constexpr] = ACTIONS(6999), + [anon_sym_volatile] = ACTIONS(6999), + [anon_sym_restrict] = ACTIONS(6999), + [anon_sym___restrict__] = ACTIONS(6999), + [anon_sym__Atomic] = ACTIONS(6999), + [anon_sym__Noreturn] = ACTIONS(6999), + [anon_sym_noreturn] = ACTIONS(6999), + [anon_sym__Nonnull] = ACTIONS(6999), + [anon_sym_mutable] = ACTIONS(6999), + [anon_sym_constinit] = ACTIONS(6999), + [anon_sym_consteval] = ACTIONS(6999), + [anon_sym_alignas] = ACTIONS(6999), + [anon_sym__Alignas] = ACTIONS(6999), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7525), + [anon_sym_LT_EQ_GT] = ACTIONS(7525), + [anon_sym_or] = ACTIONS(7528), + [anon_sym_and] = ACTIONS(7528), + [anon_sym_bitor] = ACTIONS(7528), + [anon_sym_xor] = ACTIONS(7528), + [anon_sym_bitand] = ACTIONS(7528), + [anon_sym_not_eq] = ACTIONS(7528), + [anon_sym_DASH_DASH] = ACTIONS(7525), + [anon_sym_PLUS_PLUS] = ACTIONS(7525), + [anon_sym_DOT] = ACTIONS(7528), + [anon_sym_DOT_STAR] = ACTIONS(7525), + [anon_sym_DASH_GT] = ACTIONS(7525), + [sym_comment] = ACTIONS(3), + }, + [STATE(3754)] = { + [sym_type_qualifier] = STATE(3754), + [sym_alignas_qualifier] = STATE(4026), + [aux_sym__type_definition_type_repeat1] = STATE(3754), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), + [anon_sym_COMMA] = ACTIONS(6891), + [anon_sym_LPAREN2] = ACTIONS(6891), + [anon_sym_DASH] = ACTIONS(6889), + [anon_sym_PLUS] = ACTIONS(6889), + [anon_sym_STAR] = ACTIONS(6891), + [anon_sym_SLASH] = ACTIONS(6889), + [anon_sym_PERCENT] = ACTIONS(6891), + [anon_sym_PIPE_PIPE] = ACTIONS(6891), + [anon_sym_AMP_AMP] = ACTIONS(6891), + [anon_sym_PIPE] = ACTIONS(6889), + [anon_sym_CARET] = ACTIONS(6891), + [anon_sym_AMP] = ACTIONS(6889), + [anon_sym_EQ_EQ] = ACTIONS(6891), + [anon_sym_BANG_EQ] = ACTIONS(6891), + [anon_sym_GT] = ACTIONS(6889), + [anon_sym_GT_EQ] = ACTIONS(6891), + [anon_sym_LT_EQ] = ACTIONS(6889), + [anon_sym_LT] = ACTIONS(6889), + [anon_sym_LT_LT] = ACTIONS(6891), + [anon_sym_GT_GT] = ACTIONS(6891), + [anon_sym___extension__] = ACTIONS(9565), + [anon_sym___attribute__] = ACTIONS(6891), + [anon_sym___attribute] = ACTIONS(6889), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6891), + [anon_sym_LBRACK] = ACTIONS(6889), + [anon_sym_RBRACK] = ACTIONS(6891), + [anon_sym_const] = ACTIONS(9568), + [anon_sym_constexpr] = ACTIONS(9565), + [anon_sym_volatile] = ACTIONS(9565), + [anon_sym_restrict] = ACTIONS(9565), + [anon_sym___restrict__] = ACTIONS(9565), + [anon_sym__Atomic] = ACTIONS(9565), + [anon_sym__Noreturn] = ACTIONS(9565), + [anon_sym_noreturn] = ACTIONS(9565), + [anon_sym__Nonnull] = ACTIONS(9565), + [anon_sym_mutable] = ACTIONS(9565), + [anon_sym_constinit] = ACTIONS(9565), + [anon_sym_consteval] = ACTIONS(9565), + [anon_sym_alignas] = ACTIONS(9571), + [anon_sym__Alignas] = ACTIONS(9571), + [anon_sym_QMARK] = ACTIONS(6891), + [anon_sym_LT_EQ_GT] = ACTIONS(6891), + [anon_sym_or] = ACTIONS(6891), + [anon_sym_and] = ACTIONS(6891), + [anon_sym_bitor] = ACTIONS(6891), + [anon_sym_xor] = ACTIONS(6891), + [anon_sym_bitand] = ACTIONS(6891), + [anon_sym_not_eq] = ACTIONS(6891), + [anon_sym_DASH_DASH] = ACTIONS(6891), + [anon_sym_PLUS_PLUS] = ACTIONS(6891), + [anon_sym_asm] = ACTIONS(6891), + [anon_sym___asm__] = ACTIONS(6891), + [anon_sym___asm] = ACTIONS(6889), + [anon_sym_DOT] = ACTIONS(6889), + [anon_sym_DOT_STAR] = ACTIONS(6891), + [anon_sym_DASH_GT] = ACTIONS(6891), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6891), + [anon_sym_override] = ACTIONS(6891), + [anon_sym_noexcept] = ACTIONS(6891), + [anon_sym_throw] = ACTIONS(6891), + [anon_sym_requires] = ACTIONS(6891), + }, + [STATE(3755)] = { + [sym_attribute_specifier] = STATE(3105), + [sym_enumerator_list] = STATE(3946), + [sym__enum_base_clause] = STATE(3767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8002), + [anon_sym_COMMA] = ACTIONS(8002), + [anon_sym_RPAREN] = ACTIONS(8002), + [anon_sym_LPAREN2] = ACTIONS(8002), + [anon_sym_DASH] = ACTIONS(8000), + [anon_sym_PLUS] = ACTIONS(8000), + [anon_sym_STAR] = ACTIONS(8002), + [anon_sym_SLASH] = ACTIONS(8000), + [anon_sym_PERCENT] = ACTIONS(8002), + [anon_sym_PIPE_PIPE] = ACTIONS(8002), + [anon_sym_AMP_AMP] = ACTIONS(8002), + [anon_sym_PIPE] = ACTIONS(8000), + [anon_sym_CARET] = ACTIONS(8002), + [anon_sym_AMP] = ACTIONS(8000), + [anon_sym_EQ_EQ] = ACTIONS(8002), + [anon_sym_BANG_EQ] = ACTIONS(8002), + [anon_sym_GT] = ACTIONS(8000), + [anon_sym_GT_EQ] = ACTIONS(8002), + [anon_sym_LT_EQ] = ACTIONS(8000), + [anon_sym_LT] = ACTIONS(8000), + [anon_sym_LT_LT] = ACTIONS(8002), + [anon_sym_GT_GT] = ACTIONS(8002), + [anon_sym_SEMI] = ACTIONS(8002), + [anon_sym___extension__] = ACTIONS(8002), + [anon_sym___attribute__] = ACTIONS(9312), + [anon_sym___attribute] = ACTIONS(9244), + [anon_sym_COLON] = ACTIONS(9574), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8002), + [anon_sym_LBRACE] = ACTIONS(9576), + [anon_sym_RBRACE] = ACTIONS(8002), + [anon_sym_LBRACK] = ACTIONS(8002), + [anon_sym_const] = ACTIONS(8000), + [anon_sym_constexpr] = ACTIONS(8002), + [anon_sym_volatile] = ACTIONS(8002), + [anon_sym_restrict] = ACTIONS(8002), + [anon_sym___restrict__] = ACTIONS(8002), + [anon_sym__Atomic] = ACTIONS(8002), + [anon_sym__Noreturn] = ACTIONS(8002), + [anon_sym_noreturn] = ACTIONS(8002), + [anon_sym__Nonnull] = ACTIONS(8002), + [anon_sym_mutable] = ACTIONS(8002), + [anon_sym_constinit] = ACTIONS(8002), + [anon_sym_consteval] = ACTIONS(8002), + [anon_sym_alignas] = ACTIONS(8002), + [anon_sym__Alignas] = ACTIONS(8002), + [anon_sym_QMARK] = ACTIONS(8002), + [anon_sym_LT_EQ_GT] = ACTIONS(8002), + [anon_sym_or] = ACTIONS(8002), + [anon_sym_and] = ACTIONS(8002), + [anon_sym_bitor] = ACTIONS(8002), + [anon_sym_xor] = ACTIONS(8002), + [anon_sym_bitand] = ACTIONS(8002), + [anon_sym_not_eq] = ACTIONS(8002), + [anon_sym_DASH_DASH] = ACTIONS(8002), + [anon_sym_PLUS_PLUS] = ACTIONS(8002), + [anon_sym_DOT] = ACTIONS(8000), + [anon_sym_DOT_STAR] = ACTIONS(8002), + [anon_sym_DASH_GT] = ACTIONS(8002), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8002), + [anon_sym_override] = ACTIONS(8002), + [anon_sym_requires] = ACTIONS(8002), + [anon_sym_COLON_RBRACK] = ACTIONS(8002), + }, + [STATE(3756)] = { + [sym_attribute_specifier] = STATE(3191), + [sym_enumerator_list] = STATE(3832), + [sym__enum_base_clause] = STATE(3796), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8008), + [anon_sym_COMMA] = ACTIONS(8008), + [anon_sym_RPAREN] = ACTIONS(8008), + [anon_sym_LPAREN2] = ACTIONS(8008), + [anon_sym_DASH] = ACTIONS(8006), + [anon_sym_PLUS] = ACTIONS(8006), + [anon_sym_STAR] = ACTIONS(8008), + [anon_sym_SLASH] = ACTIONS(8006), + [anon_sym_PERCENT] = ACTIONS(8008), + [anon_sym_PIPE_PIPE] = ACTIONS(8008), + [anon_sym_AMP_AMP] = ACTIONS(8008), + [anon_sym_PIPE] = ACTIONS(8006), + [anon_sym_CARET] = ACTIONS(8008), + [anon_sym_AMP] = ACTIONS(8006), + [anon_sym_EQ_EQ] = ACTIONS(8008), + [anon_sym_BANG_EQ] = ACTIONS(8008), + [anon_sym_GT] = ACTIONS(8006), + [anon_sym_GT_EQ] = ACTIONS(8008), + [anon_sym_LT_EQ] = ACTIONS(8006), + [anon_sym_LT] = ACTIONS(8006), + [anon_sym_LT_LT] = ACTIONS(8008), + [anon_sym_GT_GT] = ACTIONS(8008), + [anon_sym_SEMI] = ACTIONS(8008), + [anon_sym___extension__] = ACTIONS(8008), + [anon_sym___attribute__] = ACTIONS(9312), + [anon_sym___attribute] = ACTIONS(9244), + [anon_sym_COLON] = ACTIONS(9574), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8008), + [anon_sym_LBRACE] = ACTIONS(9576), + [anon_sym_RBRACE] = ACTIONS(8008), + [anon_sym_LBRACK] = ACTIONS(8008), + [anon_sym_const] = ACTIONS(8006), + [anon_sym_constexpr] = ACTIONS(8008), + [anon_sym_volatile] = ACTIONS(8008), + [anon_sym_restrict] = ACTIONS(8008), + [anon_sym___restrict__] = ACTIONS(8008), + [anon_sym__Atomic] = ACTIONS(8008), + [anon_sym__Noreturn] = ACTIONS(8008), + [anon_sym_noreturn] = ACTIONS(8008), + [anon_sym__Nonnull] = ACTIONS(8008), + [anon_sym_mutable] = ACTIONS(8008), + [anon_sym_constinit] = ACTIONS(8008), + [anon_sym_consteval] = ACTIONS(8008), + [anon_sym_alignas] = ACTIONS(8008), + [anon_sym__Alignas] = ACTIONS(8008), + [anon_sym_QMARK] = ACTIONS(8008), + [anon_sym_LT_EQ_GT] = ACTIONS(8008), + [anon_sym_or] = ACTIONS(8008), + [anon_sym_and] = ACTIONS(8008), + [anon_sym_bitor] = ACTIONS(8008), + [anon_sym_xor] = ACTIONS(8008), + [anon_sym_bitand] = ACTIONS(8008), + [anon_sym_not_eq] = ACTIONS(8008), + [anon_sym_DASH_DASH] = ACTIONS(8008), + [anon_sym_PLUS_PLUS] = ACTIONS(8008), + [anon_sym_DOT] = ACTIONS(8006), + [anon_sym_DOT_STAR] = ACTIONS(8008), + [anon_sym_DASH_GT] = ACTIONS(8008), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8008), + [anon_sym_override] = ACTIONS(8008), + [anon_sym_requires] = ACTIONS(8008), + [anon_sym_COLON_RBRACK] = ACTIONS(8008), + }, + [STATE(3757)] = { + [sym_template_argument_list] = STATE(3709), + [sym_identifier] = ACTIONS(9578), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9580), + [anon_sym_COMMA] = ACTIONS(9580), + [anon_sym_RPAREN] = ACTIONS(9580), + [aux_sym_preproc_if_token2] = ACTIONS(9580), + [aux_sym_preproc_else_token1] = ACTIONS(9580), + [aux_sym_preproc_elif_token1] = ACTIONS(9578), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9580), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9580), + [anon_sym_LPAREN2] = ACTIONS(9580), + [anon_sym_DASH] = ACTIONS(9578), + [anon_sym_PLUS] = ACTIONS(9578), + [anon_sym_STAR] = ACTIONS(9578), + [anon_sym_SLASH] = ACTIONS(9578), + [anon_sym_PERCENT] = ACTIONS(9578), + [anon_sym_PIPE_PIPE] = ACTIONS(9580), + [anon_sym_AMP_AMP] = ACTIONS(9580), + [anon_sym_PIPE] = ACTIONS(9578), + [anon_sym_CARET] = ACTIONS(9578), + [anon_sym_AMP] = ACTIONS(9578), + [anon_sym_EQ_EQ] = ACTIONS(9580), + [anon_sym_BANG_EQ] = ACTIONS(9580), + [anon_sym_GT] = ACTIONS(9578), + [anon_sym_GT_EQ] = ACTIONS(9580), + [anon_sym_LT_EQ] = ACTIONS(9578), + [anon_sym_LT] = ACTIONS(9582), + [anon_sym_LT_LT] = ACTIONS(9578), + [anon_sym_GT_GT] = ACTIONS(9578), + [anon_sym_SEMI] = ACTIONS(9580), + [anon_sym___attribute__] = ACTIONS(9578), + [anon_sym___attribute] = ACTIONS(9578), + [anon_sym_COLON] = ACTIONS(9578), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9580), + [anon_sym_RBRACE] = ACTIONS(9580), + [anon_sym_LBRACK] = ACTIONS(9580), + [anon_sym_EQ] = ACTIONS(9578), + [anon_sym_QMARK] = ACTIONS(9580), + [anon_sym_STAR_EQ] = ACTIONS(9580), + [anon_sym_SLASH_EQ] = ACTIONS(9580), + [anon_sym_PERCENT_EQ] = ACTIONS(9580), + [anon_sym_PLUS_EQ] = ACTIONS(9580), + [anon_sym_DASH_EQ] = ACTIONS(9580), + [anon_sym_LT_LT_EQ] = ACTIONS(9580), + [anon_sym_GT_GT_EQ] = ACTIONS(9580), + [anon_sym_AMP_EQ] = ACTIONS(9580), + [anon_sym_CARET_EQ] = ACTIONS(9580), + [anon_sym_PIPE_EQ] = ACTIONS(9580), + [anon_sym_and_eq] = ACTIONS(9578), + [anon_sym_or_eq] = ACTIONS(9578), + [anon_sym_xor_eq] = ACTIONS(9578), + [anon_sym_LT_EQ_GT] = ACTIONS(9580), + [anon_sym_or] = ACTIONS(9578), + [anon_sym_and] = ACTIONS(9578), + [anon_sym_bitor] = ACTIONS(9578), + [anon_sym_xor] = ACTIONS(9578), + [anon_sym_bitand] = ACTIONS(9578), + [anon_sym_not_eq] = ACTIONS(9578), + [anon_sym_DASH_DASH] = ACTIONS(9580), + [anon_sym_PLUS_PLUS] = ACTIONS(9580), + [anon_sym_DOT] = ACTIONS(9578), + [anon_sym_DOT_STAR] = ACTIONS(9580), + [anon_sym_DASH_GT] = ACTIONS(9580), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9580), + }, + [STATE(3758)] = { + [sym_string_literal] = STATE(5580), + [sym_template_argument_list] = STATE(6754), + [sym_raw_string_literal] = STATE(5580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(8925), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_RBRACK] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(7044), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(7046), + [anon_sym_SLASH_EQ] = ACTIONS(7046), + [anon_sym_PERCENT_EQ] = ACTIONS(7046), + [anon_sym_PLUS_EQ] = ACTIONS(7046), + [anon_sym_DASH_EQ] = ACTIONS(7046), + [anon_sym_LT_LT_EQ] = ACTIONS(7046), + [anon_sym_GT_GT_EQ] = ACTIONS(7046), + [anon_sym_AMP_EQ] = ACTIONS(7046), + [anon_sym_CARET_EQ] = ACTIONS(7046), + [anon_sym_PIPE_EQ] = ACTIONS(7046), + [anon_sym_and_eq] = ACTIONS(7046), + [anon_sym_or_eq] = ACTIONS(7046), + [anon_sym_xor_eq] = ACTIONS(7046), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(7048), + [anon_sym_u_DQUOTE] = ACTIONS(7048), + [anon_sym_U_DQUOTE] = ACTIONS(7048), + [anon_sym_u8_DQUOTE] = ACTIONS(7048), + [anon_sym_DQUOTE] = ACTIONS(7048), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7054), + [anon_sym_LR_DQUOTE] = ACTIONS(7054), + [anon_sym_uR_DQUOTE] = ACTIONS(7054), + [anon_sym_UR_DQUOTE] = ACTIONS(7054), + [anon_sym_u8R_DQUOTE] = ACTIONS(7054), + }, + [STATE(3759)] = { + [sym_decltype_auto] = STATE(4121), + [sym_identifier] = ACTIONS(7223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [aux_sym_preproc_if_token2] = ACTIONS(7225), + [aux_sym_preproc_else_token1] = ACTIONS(7225), + [aux_sym_preproc_elif_token1] = ACTIONS(7223), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7225), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7225), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7225), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7225), + [anon_sym_GT_GT] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_RBRACK] = ACTIONS(7225), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7223), + [anon_sym__Alignas] = ACTIONS(7223), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7223), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7223), + [anon_sym_not_eq] = ACTIONS(7223), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9585), + [anon_sym_decltype] = ACTIONS(6813), + [anon_sym_final] = ACTIONS(7223), + [anon_sym_override] = ACTIONS(7223), + [anon_sym_requires] = ACTIONS(7223), + }, + [STATE(3760)] = { + [sym_string_literal] = STATE(3707), + [sym_raw_string_literal] = STATE(3707), + [aux_sym_concatenated_string_repeat1] = STATE(3707), + [sym_identifier] = ACTIONS(9587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8466), + [anon_sym_COMMA] = ACTIONS(8466), + [anon_sym_LPAREN2] = ACTIONS(8466), + [anon_sym_DASH] = ACTIONS(8468), + [anon_sym_PLUS] = ACTIONS(8468), + [anon_sym_STAR] = ACTIONS(8468), + [anon_sym_SLASH] = ACTIONS(8468), + [anon_sym_PERCENT] = ACTIONS(8468), + [anon_sym_PIPE_PIPE] = ACTIONS(8466), + [anon_sym_AMP_AMP] = ACTIONS(8466), + [anon_sym_PIPE] = ACTIONS(8468), + [anon_sym_CARET] = ACTIONS(8468), + [anon_sym_AMP] = ACTIONS(8468), + [anon_sym_EQ_EQ] = ACTIONS(8466), + [anon_sym_BANG_EQ] = ACTIONS(8466), + [anon_sym_GT] = ACTIONS(8468), + [anon_sym_GT_EQ] = ACTIONS(8468), + [anon_sym_LT_EQ] = ACTIONS(8468), + [anon_sym_LT] = ACTIONS(8468), + [anon_sym_LT_LT] = ACTIONS(8468), + [anon_sym_GT_GT] = ACTIONS(8468), + [anon_sym_LBRACK] = ACTIONS(8466), + [anon_sym_EQ] = ACTIONS(8468), + [anon_sym_QMARK] = ACTIONS(8466), + [anon_sym_STAR_EQ] = ACTIONS(8466), + [anon_sym_SLASH_EQ] = ACTIONS(8466), + [anon_sym_PERCENT_EQ] = ACTIONS(8466), + [anon_sym_PLUS_EQ] = ACTIONS(8466), + [anon_sym_DASH_EQ] = ACTIONS(8466), + [anon_sym_LT_LT_EQ] = ACTIONS(8466), + [anon_sym_GT_GT_EQ] = ACTIONS(8468), + [anon_sym_AMP_EQ] = ACTIONS(8466), + [anon_sym_CARET_EQ] = ACTIONS(8466), + [anon_sym_PIPE_EQ] = ACTIONS(8466), + [anon_sym_and_eq] = ACTIONS(8468), + [anon_sym_or_eq] = ACTIONS(8468), + [anon_sym_xor_eq] = ACTIONS(8468), + [anon_sym_LT_EQ_GT] = ACTIONS(8466), + [anon_sym_or] = ACTIONS(8468), + [anon_sym_and] = ACTIONS(8468), + [anon_sym_bitor] = ACTIONS(8468), + [anon_sym_xor] = ACTIONS(8468), + [anon_sym_bitand] = ACTIONS(8468), + [anon_sym_not_eq] = ACTIONS(8468), + [anon_sym_DASH_DASH] = ACTIONS(8466), + [anon_sym_PLUS_PLUS] = ACTIONS(8466), + [anon_sym_DOT] = ACTIONS(8468), + [anon_sym_DOT_STAR] = ACTIONS(8466), + [anon_sym_DASH_GT] = ACTIONS(8466), + [anon_sym_L_DQUOTE] = ACTIONS(7034), + [anon_sym_u_DQUOTE] = ACTIONS(7034), + [anon_sym_U_DQUOTE] = ACTIONS(7034), + [anon_sym_u8_DQUOTE] = ACTIONS(7034), + [anon_sym_DQUOTE] = ACTIONS(7034), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(8466), + [anon_sym_R_DQUOTE] = ACTIONS(7040), + [anon_sym_LR_DQUOTE] = ACTIONS(7040), + [anon_sym_uR_DQUOTE] = ACTIONS(7040), + [anon_sym_UR_DQUOTE] = ACTIONS(7040), + [anon_sym_u8R_DQUOTE] = ACTIONS(7040), + [sym_literal_suffix] = ACTIONS(8468), + }, + [STATE(3761)] = { + [sym_string_literal] = STATE(4105), + [sym_template_argument_list] = STATE(5616), + [sym_raw_string_literal] = STATE(4105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(7101), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_COLON] = ACTIONS(5645), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(7056), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(7058), + [anon_sym_SLASH_EQ] = ACTIONS(7058), + [anon_sym_PERCENT_EQ] = ACTIONS(7058), + [anon_sym_PLUS_EQ] = ACTIONS(7058), + [anon_sym_DASH_EQ] = ACTIONS(7058), + [anon_sym_LT_LT_EQ] = ACTIONS(7058), + [anon_sym_GT_GT_EQ] = ACTIONS(7058), + [anon_sym_AMP_EQ] = ACTIONS(7058), + [anon_sym_CARET_EQ] = ACTIONS(7058), + [anon_sym_PIPE_EQ] = ACTIONS(7058), + [anon_sym_and_eq] = ACTIONS(7058), + [anon_sym_or_eq] = ACTIONS(7058), + [anon_sym_xor_eq] = ACTIONS(7058), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5638), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5638), + [anon_sym_not_eq] = ACTIONS(5638), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_L_DQUOTE] = ACTIONS(3889), + [anon_sym_u_DQUOTE] = ACTIONS(3889), + [anon_sym_U_DQUOTE] = ACTIONS(3889), + [anon_sym_u8_DQUOTE] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3899), + [anon_sym_LR_DQUOTE] = ACTIONS(3899), + [anon_sym_uR_DQUOTE] = ACTIONS(3899), + [anon_sym_UR_DQUOTE] = ACTIONS(3899), + [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + }, + [STATE(3762)] = { + [sym_type_qualifier] = STATE(3799), + [sym_alignas_qualifier] = STATE(3877), + [aux_sym__type_definition_type_repeat1] = STATE(3799), + [aux_sym_sized_type_specifier_repeat1] = STATE(4097), + [sym_identifier] = ACTIONS(9154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), + [anon_sym_COMMA] = ACTIONS(7249), + [anon_sym_LPAREN2] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7251), + [anon_sym_PLUS] = ACTIONS(7251), + [anon_sym_STAR] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7251), + [anon_sym_PERCENT] = ACTIONS(7249), + [anon_sym_PIPE_PIPE] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7249), + [anon_sym_PIPE] = ACTIONS(7251), + [anon_sym_CARET] = ACTIONS(7249), + [anon_sym_AMP] = ACTIONS(7251), + [anon_sym_EQ_EQ] = ACTIONS(7249), + [anon_sym_BANG_EQ] = ACTIONS(7249), + [anon_sym_GT] = ACTIONS(7251), + [anon_sym_GT_EQ] = ACTIONS(7249), + [anon_sym_LT_EQ] = ACTIONS(7251), + [anon_sym_LT] = ACTIONS(7251), + [anon_sym_LT_LT] = ACTIONS(7249), + [anon_sym_GT_GT] = ACTIONS(7249), + [anon_sym___extension__] = ACTIONS(9589), + [anon_sym___attribute__] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7251), + [anon_sym_LBRACE] = ACTIONS(7249), + [anon_sym_signed] = ACTIONS(9591), + [anon_sym_unsigned] = ACTIONS(9591), + [anon_sym_long] = ACTIONS(9591), + [anon_sym_short] = ACTIONS(9591), + [anon_sym_LBRACK] = ACTIONS(7249), + [anon_sym_RBRACK] = ACTIONS(7249), + [anon_sym_const] = ACTIONS(9589), + [anon_sym_constexpr] = ACTIONS(9589), + [anon_sym_volatile] = ACTIONS(9589), + [anon_sym_restrict] = ACTIONS(9589), + [anon_sym___restrict__] = ACTIONS(9589), + [anon_sym__Atomic] = ACTIONS(9589), + [anon_sym__Noreturn] = ACTIONS(9589), + [anon_sym_noreturn] = ACTIONS(9589), + [anon_sym__Nonnull] = ACTIONS(9589), + [anon_sym_mutable] = ACTIONS(9589), + [anon_sym_constinit] = ACTIONS(9589), + [anon_sym_consteval] = ACTIONS(9589), + [anon_sym_alignas] = ACTIONS(9593), + [anon_sym__Alignas] = ACTIONS(9593), + [sym_primitive_type] = ACTIONS(8878), + [anon_sym_QMARK] = ACTIONS(7249), + [anon_sym_LT_EQ_GT] = ACTIONS(7249), + [anon_sym_or] = ACTIONS(7251), + [anon_sym_and] = ACTIONS(7251), + [anon_sym_bitor] = ACTIONS(7251), + [anon_sym_xor] = ACTIONS(7251), + [anon_sym_bitand] = ACTIONS(7251), + [anon_sym_not_eq] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7249), + [anon_sym_PLUS_PLUS] = ACTIONS(7249), + [anon_sym_DOT] = ACTIONS(7251), + [anon_sym_DOT_STAR] = ACTIONS(7249), + [anon_sym_DASH_GT] = ACTIONS(7249), + [sym_comment] = ACTIONS(3), + }, + [STATE(3763)] = { + [sym_identifier] = ACTIONS(9595), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9597), + [anon_sym_COMMA] = ACTIONS(9597), + [aux_sym_preproc_if_token2] = ACTIONS(9597), + [aux_sym_preproc_else_token1] = ACTIONS(9597), + [aux_sym_preproc_elif_token1] = ACTIONS(9599), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9597), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9597), + [anon_sym_LPAREN2] = ACTIONS(9597), + [anon_sym_TILDE] = ACTIONS(9601), + [anon_sym_DASH] = ACTIONS(9599), + [anon_sym_PLUS] = ACTIONS(9599), + [anon_sym_STAR] = ACTIONS(9595), + [anon_sym_SLASH] = ACTIONS(9599), + [anon_sym_PERCENT] = ACTIONS(9599), + [anon_sym_PIPE_PIPE] = ACTIONS(9597), + [anon_sym_AMP_AMP] = ACTIONS(9597), + [anon_sym_PIPE] = ACTIONS(9599), + [anon_sym_CARET] = ACTIONS(9599), + [anon_sym_AMP] = ACTIONS(9599), + [anon_sym_EQ_EQ] = ACTIONS(9597), + [anon_sym_BANG_EQ] = ACTIONS(9597), + [anon_sym_GT] = ACTIONS(9599), + [anon_sym_GT_EQ] = ACTIONS(9597), + [anon_sym_LT_EQ] = ACTIONS(9599), + [anon_sym_LT] = ACTIONS(9599), + [anon_sym_LT_LT] = ACTIONS(9599), + [anon_sym_GT_GT] = ACTIONS(9599), + [anon_sym_COLON_COLON] = ACTIONS(9601), + [anon_sym___based] = ACTIONS(9595), + [anon_sym_LBRACK] = ACTIONS(9599), + [anon_sym_EQ] = ACTIONS(9599), + [anon_sym_QMARK] = ACTIONS(9597), + [anon_sym_STAR_EQ] = ACTIONS(9597), + [anon_sym_SLASH_EQ] = ACTIONS(9597), + [anon_sym_PERCENT_EQ] = ACTIONS(9597), + [anon_sym_PLUS_EQ] = ACTIONS(9597), + [anon_sym_DASH_EQ] = ACTIONS(9597), + [anon_sym_LT_LT_EQ] = ACTIONS(9597), + [anon_sym_GT_GT_EQ] = ACTIONS(9597), + [anon_sym_AMP_EQ] = ACTIONS(9597), + [anon_sym_CARET_EQ] = ACTIONS(9597), + [anon_sym_PIPE_EQ] = ACTIONS(9597), + [anon_sym_and_eq] = ACTIONS(9599), + [anon_sym_or_eq] = ACTIONS(9599), + [anon_sym_xor_eq] = ACTIONS(9599), + [anon_sym_LT_EQ_GT] = ACTIONS(9597), + [anon_sym_or] = ACTIONS(9599), + [anon_sym_and] = ACTIONS(9599), + [anon_sym_bitor] = ACTIONS(9599), + [anon_sym_xor] = ACTIONS(9599), + [anon_sym_bitand] = ACTIONS(9599), + [anon_sym_not_eq] = ACTIONS(9599), + [anon_sym_DASH_DASH] = ACTIONS(9597), + [anon_sym_PLUS_PLUS] = ACTIONS(9597), + [anon_sym_DOT] = ACTIONS(9599), + [anon_sym_DOT_STAR] = ACTIONS(9597), + [anon_sym_DASH_GT] = ACTIONS(9597), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(9595), + [anon_sym_template] = ACTIONS(9595), + [anon_sym_operator] = ACTIONS(9595), + [anon_sym_delete] = ACTIONS(9603), + [anon_sym_new] = ACTIONS(9605), + [anon_sym_LBRACK_COLON] = ACTIONS(9601), + }, + [STATE(3764)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3823), + [sym_identifier] = ACTIONS(6999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), + [anon_sym_COMMA] = ACTIONS(7525), + [anon_sym_LPAREN2] = ACTIONS(7525), + [anon_sym_DASH] = ACTIONS(7528), + [anon_sym_PLUS] = ACTIONS(7528), + [anon_sym_STAR] = ACTIONS(7525), + [anon_sym_SLASH] = ACTIONS(7528), + [anon_sym_PERCENT] = ACTIONS(7525), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_AMP_AMP] = ACTIONS(7525), + [anon_sym_PIPE] = ACTIONS(7528), + [anon_sym_CARET] = ACTIONS(7525), + [anon_sym_AMP] = ACTIONS(7528), + [anon_sym_EQ_EQ] = ACTIONS(7525), + [anon_sym_BANG_EQ] = ACTIONS(7525), + [anon_sym_GT] = ACTIONS(7528), + [anon_sym_GT_EQ] = ACTIONS(7528), + [anon_sym_LT_EQ] = ACTIONS(7528), + [anon_sym_LT] = ACTIONS(7528), + [anon_sym_LT_LT] = ACTIONS(7525), + [anon_sym_GT_GT] = ACTIONS(7528), + [anon_sym___extension__] = ACTIONS(7528), + [anon_sym___attribute__] = ACTIONS(7528), + [anon_sym___attribute] = ACTIONS(7528), + [anon_sym_LBRACE] = ACTIONS(7525), + [anon_sym_signed] = ACTIONS(9607), + [anon_sym_unsigned] = ACTIONS(9607), + [anon_sym_long] = ACTIONS(9607), + [anon_sym_short] = ACTIONS(9607), + [anon_sym_LBRACK] = ACTIONS(7525), + [anon_sym_const] = ACTIONS(7528), + [anon_sym_constexpr] = ACTIONS(7528), + [anon_sym_volatile] = ACTIONS(7528), + [anon_sym_restrict] = ACTIONS(7528), + [anon_sym___restrict__] = ACTIONS(7528), + [anon_sym__Atomic] = ACTIONS(7528), + [anon_sym__Noreturn] = ACTIONS(7528), + [anon_sym_noreturn] = ACTIONS(7528), + [anon_sym__Nonnull] = ACTIONS(7528), + [anon_sym_mutable] = ACTIONS(7528), + [anon_sym_constinit] = ACTIONS(7528), + [anon_sym_consteval] = ACTIONS(7528), + [anon_sym_alignas] = ACTIONS(7528), + [anon_sym__Alignas] = ACTIONS(7528), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7525), + [anon_sym_LT_EQ_GT] = ACTIONS(7525), + [anon_sym_or] = ACTIONS(7528), + [anon_sym_and] = ACTIONS(7528), + [anon_sym_bitor] = ACTIONS(7528), + [anon_sym_xor] = ACTIONS(7528), + [anon_sym_bitand] = ACTIONS(7528), + [anon_sym_not_eq] = ACTIONS(7528), + [anon_sym_DASH_DASH] = ACTIONS(7525), + [anon_sym_PLUS_PLUS] = ACTIONS(7525), + [anon_sym_DOT] = ACTIONS(7528), + [anon_sym_DOT_STAR] = ACTIONS(7525), + [anon_sym_DASH_GT] = ACTIONS(7525), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7528), + [anon_sym_override] = ACTIONS(7528), + [anon_sym_GT2] = ACTIONS(7525), + [anon_sym_requires] = ACTIONS(7528), + }, + [STATE(3765)] = { + [sym_type_qualifier] = STATE(3138), + [sym_alignas_qualifier] = STATE(3497), + [aux_sym__type_definition_type_repeat1] = STATE(3138), + [aux_sym_sized_type_specifier_repeat1] = STATE(4266), + [sym_identifier] = ACTIONS(9610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), + [anon_sym_COMMA] = ACTIONS(7205), + [anon_sym_RPAREN] = ACTIONS(7205), + [anon_sym_LPAREN2] = ACTIONS(7205), + [anon_sym_TILDE] = ACTIONS(7205), + [anon_sym_STAR] = ACTIONS(7205), + [anon_sym_AMP_AMP] = ACTIONS(7205), + [anon_sym_AMP] = ACTIONS(7207), + [anon_sym_SEMI] = ACTIONS(7205), + [anon_sym___extension__] = ACTIONS(9613), + [anon_sym_virtual] = ACTIONS(7207), + [anon_sym_extern] = ACTIONS(7207), + [anon_sym___attribute__] = ACTIONS(7207), + [anon_sym___attribute] = ACTIONS(7207), + [anon_sym_COLON_COLON] = ACTIONS(7205), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7205), + [anon_sym___declspec] = ACTIONS(7207), + [anon_sym___based] = ACTIONS(7207), + [anon_sym___cdecl] = ACTIONS(7207), + [anon_sym___clrcall] = ACTIONS(7207), + [anon_sym___stdcall] = ACTIONS(7207), + [anon_sym___fastcall] = ACTIONS(7207), + [anon_sym___thiscall] = ACTIONS(7207), + [anon_sym___vectorcall] = ACTIONS(7207), + [anon_sym_LBRACE] = ACTIONS(7205), + [anon_sym_signed] = ACTIONS(9616), + [anon_sym_unsigned] = ACTIONS(9616), + [anon_sym_long] = ACTIONS(9616), + [anon_sym_short] = ACTIONS(9616), + [anon_sym_LBRACK] = ACTIONS(7207), + [anon_sym_static] = ACTIONS(7207), + [anon_sym_EQ] = ACTIONS(7205), + [anon_sym_register] = ACTIONS(7207), + [anon_sym_inline] = ACTIONS(7207), + [anon_sym___inline] = ACTIONS(7207), + [anon_sym___inline__] = ACTIONS(7207), + [anon_sym___forceinline] = ACTIONS(7207), + [anon_sym_thread_local] = ACTIONS(7207), + [anon_sym___thread] = ACTIONS(7207), + [anon_sym_const] = ACTIONS(9613), + [anon_sym_constexpr] = ACTIONS(9613), + [anon_sym_volatile] = ACTIONS(9613), + [anon_sym_restrict] = ACTIONS(9613), + [anon_sym___restrict__] = ACTIONS(9613), + [anon_sym__Atomic] = ACTIONS(9613), + [anon_sym__Noreturn] = ACTIONS(9613), + [anon_sym_noreturn] = ACTIONS(9613), + [anon_sym__Nonnull] = ACTIONS(9613), + [anon_sym_mutable] = ACTIONS(9613), + [anon_sym_constinit] = ACTIONS(9613), + [anon_sym_consteval] = ACTIONS(9613), + [anon_sym_alignas] = ACTIONS(9618), + [anon_sym__Alignas] = ACTIONS(9618), + [sym_primitive_type] = ACTIONS(9621), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7207), + [anon_sym_template] = ACTIONS(7207), + [anon_sym_GT2] = ACTIONS(7205), + [anon_sym_operator] = ACTIONS(7207), + [anon_sym_LBRACK_COLON] = ACTIONS(7205), + }, + [STATE(3766)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3766), + [sym_identifier] = ACTIONS(6999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7001), + [anon_sym_COMMA] = ACTIONS(7001), + [anon_sym_LPAREN2] = ACTIONS(7001), + [anon_sym_DASH] = ACTIONS(6999), + [anon_sym_PLUS] = ACTIONS(6999), + [anon_sym_STAR] = ACTIONS(7001), + [anon_sym_SLASH] = ACTIONS(6999), + [anon_sym_PERCENT] = ACTIONS(7001), + [anon_sym_PIPE_PIPE] = ACTIONS(7001), + [anon_sym_AMP_AMP] = ACTIONS(7001), + [anon_sym_PIPE] = ACTIONS(6999), + [anon_sym_CARET] = ACTIONS(7001), + [anon_sym_AMP] = ACTIONS(6999), + [anon_sym_EQ_EQ] = ACTIONS(7001), + [anon_sym_BANG_EQ] = ACTIONS(7001), + [anon_sym_GT] = ACTIONS(6999), + [anon_sym_GT_EQ] = ACTIONS(7001), + [anon_sym_LT_EQ] = ACTIONS(6999), + [anon_sym_LT] = ACTIONS(6999), + [anon_sym_LT_LT] = ACTIONS(7001), + [anon_sym_GT_GT] = ACTIONS(7001), + [anon_sym___extension__] = ACTIONS(6999), + [anon_sym___attribute__] = ACTIONS(6999), + [anon_sym___attribute] = ACTIONS(6999), + [anon_sym_LBRACE] = ACTIONS(7001), + [anon_sym_signed] = ACTIONS(9623), + [anon_sym_unsigned] = ACTIONS(9623), + [anon_sym_long] = ACTIONS(9623), + [anon_sym_short] = ACTIONS(9623), + [anon_sym_LBRACK] = ACTIONS(7001), + [anon_sym_RBRACK] = ACTIONS(7001), + [anon_sym_const] = ACTIONS(6999), + [anon_sym_constexpr] = ACTIONS(6999), + [anon_sym_volatile] = ACTIONS(6999), + [anon_sym_restrict] = ACTIONS(6999), + [anon_sym___restrict__] = ACTIONS(6999), + [anon_sym__Atomic] = ACTIONS(6999), + [anon_sym__Noreturn] = ACTIONS(6999), + [anon_sym_noreturn] = ACTIONS(6999), + [anon_sym__Nonnull] = ACTIONS(6999), + [anon_sym_mutable] = ACTIONS(6999), + [anon_sym_constinit] = ACTIONS(6999), + [anon_sym_consteval] = ACTIONS(6999), + [anon_sym_alignas] = ACTIONS(6999), + [anon_sym__Alignas] = ACTIONS(6999), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7001), + [anon_sym_LT_EQ_GT] = ACTIONS(7001), + [anon_sym_or] = ACTIONS(6999), + [anon_sym_and] = ACTIONS(6999), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(6999), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(7001), + [anon_sym_PLUS_PLUS] = ACTIONS(7001), + [anon_sym_DOT] = ACTIONS(6999), + [anon_sym_DOT_STAR] = ACTIONS(7001), + [anon_sym_DASH_GT] = ACTIONS(7001), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6999), + [anon_sym_override] = ACTIONS(6999), + [anon_sym_requires] = ACTIONS(6999), + }, + [STATE(3767)] = { + [sym_attribute_specifier] = STATE(3201), + [sym_enumerator_list] = STATE(3839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), + [anon_sym_COMMA] = ACTIONS(7389), + [anon_sym_RPAREN] = ACTIONS(7389), + [anon_sym_LPAREN2] = ACTIONS(7389), + [anon_sym_DASH] = ACTIONS(7387), + [anon_sym_PLUS] = ACTIONS(7387), + [anon_sym_STAR] = ACTIONS(7389), + [anon_sym_SLASH] = ACTIONS(7387), + [anon_sym_PERCENT] = ACTIONS(7389), + [anon_sym_PIPE_PIPE] = ACTIONS(7389), + [anon_sym_AMP_AMP] = ACTIONS(7389), + [anon_sym_PIPE] = ACTIONS(7387), + [anon_sym_CARET] = ACTIONS(7389), + [anon_sym_AMP] = ACTIONS(7387), + [anon_sym_EQ_EQ] = ACTIONS(7389), + [anon_sym_BANG_EQ] = ACTIONS(7389), + [anon_sym_GT] = ACTIONS(7387), + [anon_sym_GT_EQ] = ACTIONS(7389), + [anon_sym_LT_EQ] = ACTIONS(7387), + [anon_sym_LT] = ACTIONS(7387), + [anon_sym_LT_LT] = ACTIONS(7389), + [anon_sym_GT_GT] = ACTIONS(7389), + [anon_sym_SEMI] = ACTIONS(7389), + [anon_sym___extension__] = ACTIONS(7389), + [anon_sym___attribute__] = ACTIONS(9312), + [anon_sym___attribute] = ACTIONS(9244), + [anon_sym_COLON] = ACTIONS(7387), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7389), + [anon_sym_LBRACE] = ACTIONS(9576), + [anon_sym_RBRACE] = ACTIONS(7389), + [anon_sym_LBRACK] = ACTIONS(7389), + [anon_sym_const] = ACTIONS(7387), + [anon_sym_constexpr] = ACTIONS(7389), + [anon_sym_volatile] = ACTIONS(7389), + [anon_sym_restrict] = ACTIONS(7389), + [anon_sym___restrict__] = ACTIONS(7389), + [anon_sym__Atomic] = ACTIONS(7389), + [anon_sym__Noreturn] = ACTIONS(7389), + [anon_sym_noreturn] = ACTIONS(7389), + [anon_sym__Nonnull] = ACTIONS(7389), + [anon_sym_mutable] = ACTIONS(7389), + [anon_sym_constinit] = ACTIONS(7389), + [anon_sym_consteval] = ACTIONS(7389), + [anon_sym_alignas] = ACTIONS(7389), + [anon_sym__Alignas] = ACTIONS(7389), + [anon_sym_QMARK] = ACTIONS(7389), + [anon_sym_LT_EQ_GT] = ACTIONS(7389), + [anon_sym_or] = ACTIONS(7389), + [anon_sym_and] = ACTIONS(7389), + [anon_sym_bitor] = ACTIONS(7389), + [anon_sym_xor] = ACTIONS(7389), + [anon_sym_bitand] = ACTIONS(7389), + [anon_sym_not_eq] = ACTIONS(7389), + [anon_sym_DASH_DASH] = ACTIONS(7389), + [anon_sym_PLUS_PLUS] = ACTIONS(7389), + [anon_sym_DOT] = ACTIONS(7387), + [anon_sym_DOT_STAR] = ACTIONS(7389), + [anon_sym_DASH_GT] = ACTIONS(7389), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7389), + [anon_sym_override] = ACTIONS(7389), + [anon_sym_requires] = ACTIONS(7389), + [anon_sym_COLON_RBRACK] = ACTIONS(7389), + }, + [STATE(3768)] = { + [sym_identifier] = ACTIONS(9626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9628), + [anon_sym_COMMA] = ACTIONS(9628), + [anon_sym_RPAREN] = ACTIONS(9628), + [aux_sym_preproc_if_token2] = ACTIONS(9628), + [aux_sym_preproc_else_token1] = ACTIONS(9628), + [aux_sym_preproc_elif_token1] = ACTIONS(9626), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9628), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9628), + [anon_sym_LPAREN2] = ACTIONS(9628), + [anon_sym_DASH] = ACTIONS(9626), + [anon_sym_PLUS] = ACTIONS(9626), + [anon_sym_STAR] = ACTIONS(9626), + [anon_sym_SLASH] = ACTIONS(9626), + [anon_sym_PERCENT] = ACTIONS(9626), + [anon_sym_PIPE_PIPE] = ACTIONS(9628), + [anon_sym_AMP_AMP] = ACTIONS(9628), + [anon_sym_PIPE] = ACTIONS(9626), + [anon_sym_CARET] = ACTIONS(9626), + [anon_sym_AMP] = ACTIONS(9626), + [anon_sym_EQ_EQ] = ACTIONS(9628), + [anon_sym_BANG_EQ] = ACTIONS(9628), + [anon_sym_GT] = ACTIONS(9626), + [anon_sym_GT_EQ] = ACTIONS(9628), + [anon_sym_LT_EQ] = ACTIONS(9626), + [anon_sym_LT] = ACTIONS(9626), + [anon_sym_LT_LT] = ACTIONS(9626), + [anon_sym_GT_GT] = ACTIONS(9626), + [anon_sym_SEMI] = ACTIONS(9628), + [anon_sym___attribute__] = ACTIONS(9626), + [anon_sym___attribute] = ACTIONS(9626), + [anon_sym_COLON] = ACTIONS(9626), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9628), + [anon_sym_LBRACE] = ACTIONS(9628), + [anon_sym_RBRACE] = ACTIONS(9628), + [anon_sym_LBRACK] = ACTIONS(9628), + [anon_sym_EQ] = ACTIONS(9626), + [anon_sym_QMARK] = ACTIONS(9628), + [anon_sym_STAR_EQ] = ACTIONS(9628), + [anon_sym_SLASH_EQ] = ACTIONS(9628), + [anon_sym_PERCENT_EQ] = ACTIONS(9628), + [anon_sym_PLUS_EQ] = ACTIONS(9628), + [anon_sym_DASH_EQ] = ACTIONS(9628), + [anon_sym_LT_LT_EQ] = ACTIONS(9628), + [anon_sym_GT_GT_EQ] = ACTIONS(9628), + [anon_sym_AMP_EQ] = ACTIONS(9628), + [anon_sym_CARET_EQ] = ACTIONS(9628), + [anon_sym_PIPE_EQ] = ACTIONS(9628), + [anon_sym_and_eq] = ACTIONS(9626), + [anon_sym_or_eq] = ACTIONS(9626), + [anon_sym_xor_eq] = ACTIONS(9626), + [anon_sym_LT_EQ_GT] = ACTIONS(9628), + [anon_sym_or] = ACTIONS(9626), + [anon_sym_and] = ACTIONS(9626), + [anon_sym_bitor] = ACTIONS(9626), + [anon_sym_xor] = ACTIONS(9626), + [anon_sym_bitand] = ACTIONS(9626), + [anon_sym_not_eq] = ACTIONS(9626), + [anon_sym_DASH_DASH] = ACTIONS(9628), + [anon_sym_PLUS_PLUS] = ACTIONS(9628), + [anon_sym_DOT] = ACTIONS(9626), + [anon_sym_DOT_STAR] = ACTIONS(9628), + [anon_sym_DASH_GT] = ACTIONS(9628), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9628), + }, + [STATE(3769)] = { + [sym_identifier] = ACTIONS(9630), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9632), + [anon_sym_COMMA] = ACTIONS(9632), + [anon_sym_RPAREN] = ACTIONS(9632), + [aux_sym_preproc_if_token2] = ACTIONS(9632), + [aux_sym_preproc_else_token1] = ACTIONS(9632), + [aux_sym_preproc_elif_token1] = ACTIONS(9630), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9632), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9632), + [anon_sym_LPAREN2] = ACTIONS(9632), + [anon_sym_DASH] = ACTIONS(9630), + [anon_sym_PLUS] = ACTIONS(9630), + [anon_sym_STAR] = ACTIONS(9630), + [anon_sym_SLASH] = ACTIONS(9630), + [anon_sym_PERCENT] = ACTIONS(9630), + [anon_sym_PIPE_PIPE] = ACTIONS(9632), + [anon_sym_AMP_AMP] = ACTIONS(9632), + [anon_sym_PIPE] = ACTIONS(9630), + [anon_sym_CARET] = ACTIONS(9630), + [anon_sym_AMP] = ACTIONS(9630), + [anon_sym_EQ_EQ] = ACTIONS(9632), + [anon_sym_BANG_EQ] = ACTIONS(9632), + [anon_sym_GT] = ACTIONS(9630), + [anon_sym_GT_EQ] = ACTIONS(9632), + [anon_sym_LT_EQ] = ACTIONS(9630), + [anon_sym_LT] = ACTIONS(9630), + [anon_sym_LT_LT] = ACTIONS(9630), + [anon_sym_GT_GT] = ACTIONS(9630), + [anon_sym_SEMI] = ACTIONS(9632), + [anon_sym___attribute__] = ACTIONS(9630), + [anon_sym___attribute] = ACTIONS(9630), + [anon_sym_COLON] = ACTIONS(9630), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9632), + [anon_sym_LBRACE] = ACTIONS(9632), + [anon_sym_RBRACE] = ACTIONS(9632), + [anon_sym_LBRACK] = ACTIONS(9632), + [anon_sym_EQ] = ACTIONS(9630), + [anon_sym_QMARK] = ACTIONS(9632), + [anon_sym_STAR_EQ] = ACTIONS(9632), + [anon_sym_SLASH_EQ] = ACTIONS(9632), + [anon_sym_PERCENT_EQ] = ACTIONS(9632), + [anon_sym_PLUS_EQ] = ACTIONS(9632), + [anon_sym_DASH_EQ] = ACTIONS(9632), + [anon_sym_LT_LT_EQ] = ACTIONS(9632), + [anon_sym_GT_GT_EQ] = ACTIONS(9632), + [anon_sym_AMP_EQ] = ACTIONS(9632), + [anon_sym_CARET_EQ] = ACTIONS(9632), + [anon_sym_PIPE_EQ] = ACTIONS(9632), + [anon_sym_and_eq] = ACTIONS(9630), + [anon_sym_or_eq] = ACTIONS(9630), + [anon_sym_xor_eq] = ACTIONS(9630), + [anon_sym_LT_EQ_GT] = ACTIONS(9632), + [anon_sym_or] = ACTIONS(9630), + [anon_sym_and] = ACTIONS(9630), + [anon_sym_bitor] = ACTIONS(9630), + [anon_sym_xor] = ACTIONS(9630), + [anon_sym_bitand] = ACTIONS(9630), + [anon_sym_not_eq] = ACTIONS(9630), + [anon_sym_DASH_DASH] = ACTIONS(9632), + [anon_sym_PLUS_PLUS] = ACTIONS(9632), + [anon_sym_DOT] = ACTIONS(9630), + [anon_sym_DOT_STAR] = ACTIONS(9632), + [anon_sym_DASH_GT] = ACTIONS(9632), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9632), + }, + [STATE(3770)] = { + [sym_type_qualifier] = STATE(3773), + [sym_alignas_qualifier] = STATE(3945), + [aux_sym__type_definition_type_repeat1] = STATE(3773), + [aux_sym_sized_type_specifier_repeat1] = STATE(4118), + [sym_identifier] = ACTIONS(9172), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), + [anon_sym_COMMA] = ACTIONS(7249), + [anon_sym_LPAREN2] = ACTIONS(7249), + [anon_sym_DASH] = ACTIONS(7251), + [anon_sym_PLUS] = ACTIONS(7251), + [anon_sym_STAR] = ACTIONS(7249), + [anon_sym_SLASH] = ACTIONS(7251), + [anon_sym_PERCENT] = ACTIONS(7249), + [anon_sym_PIPE_PIPE] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7249), + [anon_sym_PIPE] = ACTIONS(7251), + [anon_sym_CARET] = ACTIONS(7249), + [anon_sym_AMP] = ACTIONS(7251), + [anon_sym_EQ_EQ] = ACTIONS(7249), + [anon_sym_BANG_EQ] = ACTIONS(7249), + [anon_sym_GT] = ACTIONS(7251), + [anon_sym_GT_EQ] = ACTIONS(7251), + [anon_sym_LT_EQ] = ACTIONS(7251), + [anon_sym_LT] = ACTIONS(7251), + [anon_sym_LT_LT] = ACTIONS(7249), + [anon_sym_GT_GT] = ACTIONS(7251), + [anon_sym___extension__] = ACTIONS(8618), + [anon_sym___attribute__] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7251), + [anon_sym_LBRACE] = ACTIONS(7249), + [anon_sym_signed] = ACTIONS(9634), + [anon_sym_unsigned] = ACTIONS(9634), + [anon_sym_long] = ACTIONS(9634), + [anon_sym_short] = ACTIONS(9634), + [anon_sym_LBRACK] = ACTIONS(7249), + [anon_sym_const] = ACTIONS(8618), + [anon_sym_constexpr] = ACTIONS(8618), + [anon_sym_volatile] = ACTIONS(8618), + [anon_sym_restrict] = ACTIONS(8618), + [anon_sym___restrict__] = ACTIONS(8618), + [anon_sym__Atomic] = ACTIONS(8618), + [anon_sym__Noreturn] = ACTIONS(8618), + [anon_sym_noreturn] = ACTIONS(8618), + [anon_sym__Nonnull] = ACTIONS(8618), + [anon_sym_mutable] = ACTIONS(8618), + [anon_sym_constinit] = ACTIONS(8618), + [anon_sym_consteval] = ACTIONS(8618), + [anon_sym_alignas] = ACTIONS(9636), + [anon_sym__Alignas] = ACTIONS(9636), + [sym_primitive_type] = ACTIONS(9182), + [anon_sym_QMARK] = ACTIONS(7249), + [anon_sym_LT_EQ_GT] = ACTIONS(7249), + [anon_sym_or] = ACTIONS(7251), + [anon_sym_and] = ACTIONS(7251), + [anon_sym_bitor] = ACTIONS(7251), + [anon_sym_xor] = ACTIONS(7251), + [anon_sym_bitand] = ACTIONS(7251), + [anon_sym_not_eq] = ACTIONS(7251), + [anon_sym_DASH_DASH] = ACTIONS(7249), + [anon_sym_PLUS_PLUS] = ACTIONS(7249), + [anon_sym_DOT] = ACTIONS(7251), + [anon_sym_DOT_STAR] = ACTIONS(7249), + [anon_sym_DASH_GT] = ACTIONS(7249), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7249), + }, + [STATE(3771)] = { + [sym_identifier] = ACTIONS(7231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), + [anon_sym_COMMA] = ACTIONS(7233), + [anon_sym_RPAREN] = ACTIONS(7233), + [anon_sym_LPAREN2] = ACTIONS(7233), + [anon_sym_STAR] = ACTIONS(7233), + [anon_sym_PIPE_PIPE] = ACTIONS(7233), + [anon_sym_AMP_AMP] = ACTIONS(7233), + [anon_sym_AMP] = ACTIONS(7231), + [anon_sym_LT] = ACTIONS(7233), + [anon_sym_SEMI] = ACTIONS(7233), + [anon_sym___extension__] = ACTIONS(7231), + [anon_sym_virtual] = ACTIONS(7231), + [anon_sym_extern] = ACTIONS(7231), + [anon_sym___attribute__] = ACTIONS(7231), + [anon_sym___attribute] = ACTIONS(7231), + [anon_sym_COLON] = ACTIONS(7231), + [anon_sym_COLON_COLON] = ACTIONS(7233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7233), + [anon_sym___declspec] = ACTIONS(7231), + [anon_sym___based] = ACTIONS(7231), + [anon_sym_LBRACE] = ACTIONS(7233), + [anon_sym_signed] = ACTIONS(7231), + [anon_sym_unsigned] = ACTIONS(7231), + [anon_sym_long] = ACTIONS(7231), + [anon_sym_short] = ACTIONS(7231), + [anon_sym_LBRACK] = ACTIONS(7231), + [anon_sym_static] = ACTIONS(7231), + [anon_sym_EQ] = ACTIONS(7233), + [anon_sym_register] = ACTIONS(7231), + [anon_sym_inline] = ACTIONS(7231), + [anon_sym___inline] = ACTIONS(7231), + [anon_sym___inline__] = ACTIONS(7231), + [anon_sym___forceinline] = ACTIONS(7231), + [anon_sym_thread_local] = ACTIONS(7231), + [anon_sym___thread] = ACTIONS(7231), + [anon_sym_const] = ACTIONS(7231), + [anon_sym_constexpr] = ACTIONS(7231), + [anon_sym_volatile] = ACTIONS(7231), + [anon_sym_restrict] = ACTIONS(7231), + [anon_sym___restrict__] = ACTIONS(7231), + [anon_sym__Atomic] = ACTIONS(7231), + [anon_sym__Noreturn] = ACTIONS(7231), + [anon_sym_noreturn] = ACTIONS(7231), + [anon_sym__Nonnull] = ACTIONS(7231), + [anon_sym_mutable] = ACTIONS(7231), + [anon_sym_constinit] = ACTIONS(7231), + [anon_sym_consteval] = ACTIONS(7231), + [anon_sym_alignas] = ACTIONS(7231), + [anon_sym__Alignas] = ACTIONS(7231), + [sym_primitive_type] = ACTIONS(7231), + [anon_sym_or] = ACTIONS(7231), + [anon_sym_and] = ACTIONS(7231), + [anon_sym_asm] = ACTIONS(7231), + [anon_sym___asm__] = ACTIONS(7231), + [anon_sym___asm] = ACTIONS(7231), + [anon_sym_DASH_GT] = ACTIONS(7233), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7231), + [anon_sym_override] = ACTIONS(7231), + [anon_sym_GT2] = ACTIONS(7233), + [anon_sym_try] = ACTIONS(7231), + [anon_sym_noexcept] = ACTIONS(7231), + [anon_sym_throw] = ACTIONS(7231), + [anon_sym_requires] = ACTIONS(7231), + }, + [STATE(3772)] = { + [sym_argument_list] = STATE(3874), + [sym_subscript_argument_list] = STATE(3900), + [sym_identifier] = ACTIONS(9638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9640), + [anon_sym_COMMA] = ACTIONS(9640), + [anon_sym_RPAREN] = ACTIONS(9640), + [aux_sym_preproc_if_token2] = ACTIONS(9640), + [aux_sym_preproc_else_token1] = ACTIONS(9640), + [aux_sym_preproc_elif_token1] = ACTIONS(9638), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9640), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9640), + [anon_sym_LPAREN2] = ACTIONS(9230), + [anon_sym_DASH] = ACTIONS(9638), + [anon_sym_PLUS] = ACTIONS(9638), + [anon_sym_STAR] = ACTIONS(9638), + [anon_sym_SLASH] = ACTIONS(9638), + [anon_sym_PERCENT] = ACTIONS(9638), + [anon_sym_PIPE_PIPE] = ACTIONS(9640), + [anon_sym_AMP_AMP] = ACTIONS(9640), + [anon_sym_PIPE] = ACTIONS(9638), + [anon_sym_CARET] = ACTIONS(9638), + [anon_sym_AMP] = ACTIONS(9638), + [anon_sym_EQ_EQ] = ACTIONS(9640), + [anon_sym_BANG_EQ] = ACTIONS(9640), + [anon_sym_GT] = ACTIONS(9638), + [anon_sym_GT_EQ] = ACTIONS(9640), + [anon_sym_LT_EQ] = ACTIONS(9638), + [anon_sym_LT] = ACTIONS(9638), + [anon_sym_LT_LT] = ACTIONS(9638), + [anon_sym_GT_GT] = ACTIONS(9638), + [anon_sym_SEMI] = ACTIONS(9640), + [anon_sym___attribute__] = ACTIONS(9638), + [anon_sym___attribute] = ACTIONS(9638), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9640), + [anon_sym_RBRACE] = ACTIONS(9640), + [anon_sym_LBRACK] = ACTIONS(9642), + [anon_sym_EQ] = ACTIONS(9638), + [anon_sym_QMARK] = ACTIONS(9640), + [anon_sym_STAR_EQ] = ACTIONS(9640), + [anon_sym_SLASH_EQ] = ACTIONS(9640), + [anon_sym_PERCENT_EQ] = ACTIONS(9640), + [anon_sym_PLUS_EQ] = ACTIONS(9640), + [anon_sym_DASH_EQ] = ACTIONS(9640), + [anon_sym_LT_LT_EQ] = ACTIONS(9640), + [anon_sym_GT_GT_EQ] = ACTIONS(9640), + [anon_sym_AMP_EQ] = ACTIONS(9640), + [anon_sym_CARET_EQ] = ACTIONS(9640), + [anon_sym_PIPE_EQ] = ACTIONS(9640), + [anon_sym_and_eq] = ACTIONS(9638), + [anon_sym_or_eq] = ACTIONS(9638), + [anon_sym_xor_eq] = ACTIONS(9638), + [anon_sym_LT_EQ_GT] = ACTIONS(9640), + [anon_sym_or] = ACTIONS(9638), + [anon_sym_and] = ACTIONS(9638), + [anon_sym_bitor] = ACTIONS(9638), + [anon_sym_xor] = ACTIONS(9638), + [anon_sym_bitand] = ACTIONS(9638), + [anon_sym_not_eq] = ACTIONS(9638), + [anon_sym_DASH_DASH] = ACTIONS(9644), + [anon_sym_PLUS_PLUS] = ACTIONS(9644), + [anon_sym_DOT] = ACTIONS(9646), + [anon_sym_DOT_STAR] = ACTIONS(9648), + [anon_sym_DASH_GT] = ACTIONS(9648), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9640), + }, + [STATE(3773)] = { + [sym_type_qualifier] = STATE(3691), + [sym_alignas_qualifier] = STATE(3945), + [aux_sym__type_definition_type_repeat1] = STATE(3691), + [aux_sym_sized_type_specifier_repeat1] = STATE(4039), + [sym_identifier] = ACTIONS(9184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), + [anon_sym_COMMA] = ACTIONS(7205), + [anon_sym_LPAREN2] = ACTIONS(7205), + [anon_sym_DASH] = ACTIONS(7207), + [anon_sym_PLUS] = ACTIONS(7207), + [anon_sym_STAR] = ACTIONS(7205), + [anon_sym_SLASH] = ACTIONS(7207), + [anon_sym_PERCENT] = ACTIONS(7205), + [anon_sym_PIPE_PIPE] = ACTIONS(7205), + [anon_sym_AMP_AMP] = ACTIONS(7205), + [anon_sym_PIPE] = ACTIONS(7207), + [anon_sym_CARET] = ACTIONS(7205), + [anon_sym_AMP] = ACTIONS(7207), + [anon_sym_EQ_EQ] = ACTIONS(7205), + [anon_sym_BANG_EQ] = ACTIONS(7205), + [anon_sym_GT] = ACTIONS(7207), + [anon_sym_GT_EQ] = ACTIONS(7207), + [anon_sym_LT_EQ] = ACTIONS(7207), + [anon_sym_LT] = ACTIONS(7207), + [anon_sym_LT_LT] = ACTIONS(7205), + [anon_sym_GT_GT] = ACTIONS(7207), + [anon_sym___extension__] = ACTIONS(8618), + [anon_sym___attribute__] = ACTIONS(7207), + [anon_sym___attribute] = ACTIONS(7207), + [anon_sym_LBRACE] = ACTIONS(7205), + [anon_sym_signed] = ACTIONS(9189), + [anon_sym_unsigned] = ACTIONS(9189), + [anon_sym_long] = ACTIONS(9189), + [anon_sym_short] = ACTIONS(9189), + [anon_sym_LBRACK] = ACTIONS(7205), + [anon_sym_const] = ACTIONS(8618), + [anon_sym_constexpr] = ACTIONS(8618), + [anon_sym_volatile] = ACTIONS(8618), + [anon_sym_restrict] = ACTIONS(8618), + [anon_sym___restrict__] = ACTIONS(8618), + [anon_sym__Atomic] = ACTIONS(8618), + [anon_sym__Noreturn] = ACTIONS(8618), + [anon_sym_noreturn] = ACTIONS(8618), + [anon_sym__Nonnull] = ACTIONS(8618), + [anon_sym_mutable] = ACTIONS(8618), + [anon_sym_constinit] = ACTIONS(8618), + [anon_sym_consteval] = ACTIONS(8618), + [anon_sym_alignas] = ACTIONS(9636), + [anon_sym__Alignas] = ACTIONS(9636), + [sym_primitive_type] = ACTIONS(9194), + [anon_sym_QMARK] = ACTIONS(7205), + [anon_sym_LT_EQ_GT] = ACTIONS(7205), + [anon_sym_or] = ACTIONS(7207), + [anon_sym_and] = ACTIONS(7207), + [anon_sym_bitor] = ACTIONS(7207), + [anon_sym_xor] = ACTIONS(7207), + [anon_sym_bitand] = ACTIONS(7207), + [anon_sym_not_eq] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7205), + [anon_sym_PLUS_PLUS] = ACTIONS(7205), + [anon_sym_DOT] = ACTIONS(7207), + [anon_sym_DOT_STAR] = ACTIONS(7205), + [anon_sym_DASH_GT] = ACTIONS(7205), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7205), + }, + [STATE(3774)] = { + [sym__abstract_declarator] = STATE(6552), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(2488), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2274), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(2488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), + [anon_sym_COMMA] = ACTIONS(7351), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7349), + [anon_sym_PLUS] = ACTIONS(7349), + [anon_sym_STAR] = ACTIONS(8677), + [anon_sym_SLASH] = ACTIONS(7349), + [anon_sym_PERCENT] = ACTIONS(7351), + [anon_sym_PIPE_PIPE] = ACTIONS(7351), + [anon_sym_AMP_AMP] = ACTIONS(8679), + [anon_sym_PIPE] = ACTIONS(7349), + [anon_sym_CARET] = ACTIONS(7351), + [anon_sym_AMP] = ACTIONS(8681), + [anon_sym_EQ_EQ] = ACTIONS(7351), + [anon_sym_BANG_EQ] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7349), + [anon_sym_GT_EQ] = ACTIONS(7351), + [anon_sym_LT_EQ] = ACTIONS(7349), + [anon_sym_LT] = ACTIONS(7349), + [anon_sym_LT_LT] = ACTIONS(7351), + [anon_sym_GT_GT] = ACTIONS(7351), + [anon_sym_SEMI] = ACTIONS(7351), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym___attribute__] = ACTIONS(7351), + [anon_sym___attribute] = ACTIONS(7349), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(7351), + [anon_sym_LT_EQ_GT] = ACTIONS(7351), + [anon_sym_or] = ACTIONS(7351), + [anon_sym_and] = ACTIONS(7351), + [anon_sym_bitor] = ACTIONS(7351), + [anon_sym_xor] = ACTIONS(7351), + [anon_sym_bitand] = ACTIONS(7351), + [anon_sym_not_eq] = ACTIONS(7351), + [anon_sym_DASH_DASH] = ACTIONS(7351), + [anon_sym_PLUS_PLUS] = ACTIONS(7351), + [anon_sym_DOT] = ACTIONS(7349), + [anon_sym_DOT_STAR] = ACTIONS(7351), + [anon_sym_DASH_GT] = ACTIONS(7351), + [sym_comment] = ACTIONS(3), + }, + [STATE(3775)] = { + [sym__abstract_declarator] = STATE(6553), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3777), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2274), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3777), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), + [anon_sym_COMMA] = ACTIONS(7343), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7341), + [anon_sym_PLUS] = ACTIONS(7341), + [anon_sym_STAR] = ACTIONS(8677), + [anon_sym_SLASH] = ACTIONS(7341), + [anon_sym_PERCENT] = ACTIONS(7343), + [anon_sym_PIPE_PIPE] = ACTIONS(7343), + [anon_sym_AMP_AMP] = ACTIONS(8679), + [anon_sym_PIPE] = ACTIONS(7341), + [anon_sym_CARET] = ACTIONS(7343), + [anon_sym_AMP] = ACTIONS(8681), + [anon_sym_EQ_EQ] = ACTIONS(7343), + [anon_sym_BANG_EQ] = ACTIONS(7343), + [anon_sym_GT] = ACTIONS(7341), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7341), + [anon_sym_LT] = ACTIONS(7341), + [anon_sym_LT_LT] = ACTIONS(7343), + [anon_sym_GT_GT] = ACTIONS(7343), + [anon_sym_SEMI] = ACTIONS(7343), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym___attribute__] = ACTIONS(7343), + [anon_sym___attribute] = ACTIONS(7341), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_or] = ACTIONS(7343), + [anon_sym_and] = ACTIONS(7343), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7343), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7343), + [anon_sym_PLUS_PLUS] = ACTIONS(7343), + [anon_sym_DOT] = ACTIONS(7341), + [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_DASH_GT] = ACTIONS(7343), + [sym_comment] = ACTIONS(3), + }, + [STATE(3776)] = { + [sym__abstract_declarator] = STATE(6548), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(2488), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2274), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(2488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(6821), + [anon_sym_PLUS] = ACTIONS(6821), + [anon_sym_STAR] = ACTIONS(8677), + [anon_sym_SLASH] = ACTIONS(6821), + [anon_sym_PERCENT] = ACTIONS(6823), + [anon_sym_PIPE_PIPE] = ACTIONS(6823), + [anon_sym_AMP_AMP] = ACTIONS(8679), + [anon_sym_PIPE] = ACTIONS(6821), + [anon_sym_CARET] = ACTIONS(6823), + [anon_sym_AMP] = ACTIONS(8681), + [anon_sym_EQ_EQ] = ACTIONS(6823), + [anon_sym_BANG_EQ] = ACTIONS(6823), + [anon_sym_GT] = ACTIONS(6821), + [anon_sym_GT_EQ] = ACTIONS(6823), + [anon_sym_LT_EQ] = ACTIONS(6821), + [anon_sym_LT] = ACTIONS(6821), + [anon_sym_LT_LT] = ACTIONS(6823), + [anon_sym_GT_GT] = ACTIONS(6823), + [anon_sym_SEMI] = ACTIONS(6823), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym___attribute__] = ACTIONS(6823), + [anon_sym___attribute] = ACTIONS(6821), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(6823), + [anon_sym_LT_EQ_GT] = ACTIONS(6823), + [anon_sym_or] = ACTIONS(6823), + [anon_sym_and] = ACTIONS(6823), + [anon_sym_bitor] = ACTIONS(6823), + [anon_sym_xor] = ACTIONS(6823), + [anon_sym_bitand] = ACTIONS(6823), + [anon_sym_not_eq] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DOT] = ACTIONS(6821), + [anon_sym_DOT_STAR] = ACTIONS(6823), + [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_comment] = ACTIONS(3), + }, + [STATE(3777)] = { + [sym__abstract_declarator] = STATE(6554), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(2488), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2274), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(2488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), + [anon_sym_COMMA] = ACTIONS(7355), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7353), + [anon_sym_PLUS] = ACTIONS(7353), + [anon_sym_STAR] = ACTIONS(8677), + [anon_sym_SLASH] = ACTIONS(7353), + [anon_sym_PERCENT] = ACTIONS(7355), + [anon_sym_PIPE_PIPE] = ACTIONS(7355), + [anon_sym_AMP_AMP] = ACTIONS(8679), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_CARET] = ACTIONS(7355), + [anon_sym_AMP] = ACTIONS(8681), + [anon_sym_EQ_EQ] = ACTIONS(7355), + [anon_sym_BANG_EQ] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_EQ] = ACTIONS(7355), + [anon_sym_LT_EQ] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_LT_LT] = ACTIONS(7355), + [anon_sym_GT_GT] = ACTIONS(7355), + [anon_sym_SEMI] = ACTIONS(7355), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym___attribute__] = ACTIONS(7355), + [anon_sym___attribute] = ACTIONS(7353), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(7355), + [anon_sym_LT_EQ_GT] = ACTIONS(7355), + [anon_sym_or] = ACTIONS(7355), + [anon_sym_and] = ACTIONS(7355), + [anon_sym_bitor] = ACTIONS(7355), + [anon_sym_xor] = ACTIONS(7355), + [anon_sym_bitand] = ACTIONS(7355), + [anon_sym_not_eq] = ACTIONS(7355), + [anon_sym_DASH_DASH] = ACTIONS(7355), + [anon_sym_PLUS_PLUS] = ACTIONS(7355), + [anon_sym_DOT] = ACTIONS(7353), + [anon_sym_DOT_STAR] = ACTIONS(7355), + [anon_sym_DASH_GT] = ACTIONS(7355), + [sym_comment] = ACTIONS(3), + }, + [STATE(3778)] = { + [sym__abstract_declarator] = STATE(6550), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(2488), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2274), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(2488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(8677), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7345), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(8679), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7345), + [anon_sym_AMP] = ACTIONS(8681), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7345), + [anon_sym_GT_GT] = ACTIONS(7345), + [anon_sym_SEMI] = ACTIONS(7345), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym___attribute__] = ACTIONS(7345), + [anon_sym___attribute] = ACTIONS(7347), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7345), + [anon_sym_and] = ACTIONS(7345), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7345), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), + [sym_comment] = ACTIONS(3), + }, + [STATE(3779)] = { + [sym_template_argument_list] = STATE(2231), + [sym_identifier] = ACTIONS(9650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9652), + [anon_sym_COMMA] = ACTIONS(9652), + [anon_sym_RPAREN] = ACTIONS(9652), + [aux_sym_preproc_if_token2] = ACTIONS(9652), + [aux_sym_preproc_else_token1] = ACTIONS(9652), + [aux_sym_preproc_elif_token1] = ACTIONS(9650), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9652), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9652), + [anon_sym_LPAREN2] = ACTIONS(9652), + [anon_sym_DASH] = ACTIONS(9650), + [anon_sym_PLUS] = ACTIONS(9650), + [anon_sym_STAR] = ACTIONS(9650), + [anon_sym_SLASH] = ACTIONS(9650), + [anon_sym_PERCENT] = ACTIONS(9650), + [anon_sym_PIPE_PIPE] = ACTIONS(9652), + [anon_sym_AMP_AMP] = ACTIONS(9652), + [anon_sym_PIPE] = ACTIONS(9650), + [anon_sym_CARET] = ACTIONS(9650), + [anon_sym_AMP] = ACTIONS(9650), + [anon_sym_EQ_EQ] = ACTIONS(9652), + [anon_sym_BANG_EQ] = ACTIONS(9652), + [anon_sym_GT] = ACTIONS(9650), + [anon_sym_GT_EQ] = ACTIONS(9652), + [anon_sym_LT_EQ] = ACTIONS(9650), + [anon_sym_LT] = ACTIONS(9654), + [anon_sym_LT_LT] = ACTIONS(9650), + [anon_sym_GT_GT] = ACTIONS(9650), + [anon_sym_SEMI] = ACTIONS(9652), + [anon_sym___attribute__] = ACTIONS(9650), + [anon_sym___attribute] = ACTIONS(9650), + [anon_sym_COLON] = ACTIONS(9650), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9652), + [anon_sym_RBRACE] = ACTIONS(9652), + [anon_sym_LBRACK] = ACTIONS(9652), + [anon_sym_EQ] = ACTIONS(9650), + [anon_sym_QMARK] = ACTIONS(9652), + [anon_sym_STAR_EQ] = ACTIONS(9652), + [anon_sym_SLASH_EQ] = ACTIONS(9652), + [anon_sym_PERCENT_EQ] = ACTIONS(9652), + [anon_sym_PLUS_EQ] = ACTIONS(9652), + [anon_sym_DASH_EQ] = ACTIONS(9652), + [anon_sym_LT_LT_EQ] = ACTIONS(9652), + [anon_sym_GT_GT_EQ] = ACTIONS(9652), + [anon_sym_AMP_EQ] = ACTIONS(9652), + [anon_sym_CARET_EQ] = ACTIONS(9652), + [anon_sym_PIPE_EQ] = ACTIONS(9652), + [anon_sym_and_eq] = ACTIONS(9650), + [anon_sym_or_eq] = ACTIONS(9650), + [anon_sym_xor_eq] = ACTIONS(9650), + [anon_sym_LT_EQ_GT] = ACTIONS(9652), + [anon_sym_or] = ACTIONS(9650), + [anon_sym_and] = ACTIONS(9650), + [anon_sym_bitor] = ACTIONS(9650), + [anon_sym_xor] = ACTIONS(9650), + [anon_sym_bitand] = ACTIONS(9650), + [anon_sym_not_eq] = ACTIONS(9650), + [anon_sym_DASH_DASH] = ACTIONS(9652), + [anon_sym_PLUS_PLUS] = ACTIONS(9652), + [anon_sym_DOT] = ACTIONS(9650), + [anon_sym_DOT_STAR] = ACTIONS(9652), + [anon_sym_DASH_GT] = ACTIONS(9652), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9652), + }, + [STATE(3780)] = { + [sym_identifier] = ACTIONS(9626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9628), + [anon_sym_COMMA] = ACTIONS(9628), + [anon_sym_RPAREN] = ACTIONS(9628), + [aux_sym_preproc_if_token2] = ACTIONS(9628), + [aux_sym_preproc_else_token1] = ACTIONS(9628), + [aux_sym_preproc_elif_token1] = ACTIONS(9626), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9628), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9628), + [anon_sym_LPAREN2] = ACTIONS(9628), + [anon_sym_DASH] = ACTIONS(9626), + [anon_sym_PLUS] = ACTIONS(9626), + [anon_sym_STAR] = ACTIONS(9626), + [anon_sym_SLASH] = ACTIONS(9626), + [anon_sym_PERCENT] = ACTIONS(9626), + [anon_sym_PIPE_PIPE] = ACTIONS(9628), + [anon_sym_AMP_AMP] = ACTIONS(9628), + [anon_sym_PIPE] = ACTIONS(9626), + [anon_sym_CARET] = ACTIONS(9626), + [anon_sym_AMP] = ACTIONS(9626), + [anon_sym_EQ_EQ] = ACTIONS(9628), + [anon_sym_BANG_EQ] = ACTIONS(9628), + [anon_sym_GT] = ACTIONS(9626), + [anon_sym_GT_EQ] = ACTIONS(9628), + [anon_sym_LT_EQ] = ACTIONS(9626), + [anon_sym_LT] = ACTIONS(9626), + [anon_sym_LT_LT] = ACTIONS(9626), + [anon_sym_GT_GT] = ACTIONS(9626), + [anon_sym_SEMI] = ACTIONS(9628), + [anon_sym___attribute__] = ACTIONS(9626), + [anon_sym___attribute] = ACTIONS(9626), + [anon_sym_COLON] = ACTIONS(9626), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9628), + [anon_sym_LBRACE] = ACTIONS(9628), + [anon_sym_RBRACE] = ACTIONS(9628), + [anon_sym_LBRACK] = ACTIONS(9628), + [anon_sym_EQ] = ACTIONS(9626), + [anon_sym_QMARK] = ACTIONS(9628), + [anon_sym_STAR_EQ] = ACTIONS(9628), + [anon_sym_SLASH_EQ] = ACTIONS(9628), + [anon_sym_PERCENT_EQ] = ACTIONS(9628), + [anon_sym_PLUS_EQ] = ACTIONS(9628), + [anon_sym_DASH_EQ] = ACTIONS(9628), + [anon_sym_LT_LT_EQ] = ACTIONS(9628), + [anon_sym_GT_GT_EQ] = ACTIONS(9628), + [anon_sym_AMP_EQ] = ACTIONS(9628), + [anon_sym_CARET_EQ] = ACTIONS(9628), + [anon_sym_PIPE_EQ] = ACTIONS(9628), + [anon_sym_and_eq] = ACTIONS(9626), + [anon_sym_or_eq] = ACTIONS(9626), + [anon_sym_xor_eq] = ACTIONS(9626), + [anon_sym_LT_EQ_GT] = ACTIONS(9628), + [anon_sym_or] = ACTIONS(9626), + [anon_sym_and] = ACTIONS(9626), + [anon_sym_bitor] = ACTIONS(9626), + [anon_sym_xor] = ACTIONS(9626), + [anon_sym_bitand] = ACTIONS(9626), + [anon_sym_not_eq] = ACTIONS(9626), + [anon_sym_DASH_DASH] = ACTIONS(9628), + [anon_sym_PLUS_PLUS] = ACTIONS(9628), + [anon_sym_DOT] = ACTIONS(9626), + [anon_sym_DOT_STAR] = ACTIONS(9628), + [anon_sym_DASH_GT] = ACTIONS(9628), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9628), + }, + [STATE(3781)] = { + [sym_identifier] = ACTIONS(5645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), + [anon_sym_COMMA] = ACTIONS(5638), + [anon_sym_RPAREN] = ACTIONS(5638), + [aux_sym_preproc_if_token2] = ACTIONS(5638), + [aux_sym_preproc_else_token1] = ACTIONS(5638), + [aux_sym_preproc_elif_token1] = ACTIONS(5645), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5638), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5638), + [anon_sym_LPAREN2] = ACTIONS(5638), + [anon_sym_DASH] = ACTIONS(5645), + [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_STAR] = ACTIONS(5645), + [anon_sym_SLASH] = ACTIONS(5645), + [anon_sym_PERCENT] = ACTIONS(5645), + [anon_sym_PIPE_PIPE] = ACTIONS(5638), + [anon_sym_AMP_AMP] = ACTIONS(5638), + [anon_sym_PIPE] = ACTIONS(5645), + [anon_sym_CARET] = ACTIONS(5645), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_EQ_EQ] = ACTIONS(5638), + [anon_sym_BANG_EQ] = ACTIONS(5638), + [anon_sym_GT] = ACTIONS(5645), + [anon_sym_GT_EQ] = ACTIONS(5638), + [anon_sym_LT_EQ] = ACTIONS(5645), + [anon_sym_LT] = ACTIONS(5645), + [anon_sym_LT_LT] = ACTIONS(5645), + [anon_sym_GT_GT] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5638), + [anon_sym___attribute__] = ACTIONS(5645), + [anon_sym___attribute] = ACTIONS(5645), + [anon_sym_COLON] = ACTIONS(5645), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5638), + [anon_sym_RBRACE] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5638), + [anon_sym_EQ] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_STAR_EQ] = ACTIONS(5638), + [anon_sym_SLASH_EQ] = ACTIONS(5638), + [anon_sym_PERCENT_EQ] = ACTIONS(5638), + [anon_sym_PLUS_EQ] = ACTIONS(5638), + [anon_sym_DASH_EQ] = ACTIONS(5638), + [anon_sym_LT_LT_EQ] = ACTIONS(5638), + [anon_sym_GT_GT_EQ] = ACTIONS(5638), + [anon_sym_AMP_EQ] = ACTIONS(5638), + [anon_sym_CARET_EQ] = ACTIONS(5638), + [anon_sym_PIPE_EQ] = ACTIONS(5638), + [anon_sym_and_eq] = ACTIONS(5645), + [anon_sym_or_eq] = ACTIONS(5645), + [anon_sym_xor_eq] = ACTIONS(5645), + [anon_sym_LT_EQ_GT] = ACTIONS(5638), + [anon_sym_or] = ACTIONS(5645), + [anon_sym_and] = ACTIONS(5645), + [anon_sym_bitor] = ACTIONS(5645), + [anon_sym_xor] = ACTIONS(5645), + [anon_sym_bitand] = ACTIONS(5645), + [anon_sym_not_eq] = ACTIONS(5645), + [anon_sym_DASH_DASH] = ACTIONS(5638), + [anon_sym_PLUS_PLUS] = ACTIONS(5638), + [anon_sym_DOT] = ACTIONS(5645), + [anon_sym_DOT_STAR] = ACTIONS(5638), + [anon_sym_DASH_GT] = ACTIONS(5638), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(5638), + }, + [STATE(3782)] = { + [sym_argument_list] = STATE(3874), + [sym_subscript_argument_list] = STATE(3900), + [sym_identifier] = ACTIONS(9657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9659), + [anon_sym_COMMA] = ACTIONS(9659), + [anon_sym_RPAREN] = ACTIONS(9659), + [aux_sym_preproc_if_token2] = ACTIONS(9659), + [aux_sym_preproc_else_token1] = ACTIONS(9659), + [aux_sym_preproc_elif_token1] = ACTIONS(9657), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9659), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9659), + [anon_sym_LPAREN2] = ACTIONS(9230), + [anon_sym_DASH] = ACTIONS(9657), + [anon_sym_PLUS] = ACTIONS(9657), + [anon_sym_STAR] = ACTIONS(9657), + [anon_sym_SLASH] = ACTIONS(9657), + [anon_sym_PERCENT] = ACTIONS(9657), + [anon_sym_PIPE_PIPE] = ACTIONS(9659), + [anon_sym_AMP_AMP] = ACTIONS(9659), + [anon_sym_PIPE] = ACTIONS(9657), + [anon_sym_CARET] = ACTIONS(9657), + [anon_sym_AMP] = ACTIONS(9657), + [anon_sym_EQ_EQ] = ACTIONS(9659), + [anon_sym_BANG_EQ] = ACTIONS(9659), + [anon_sym_GT] = ACTIONS(9657), + [anon_sym_GT_EQ] = ACTIONS(9659), + [anon_sym_LT_EQ] = ACTIONS(9657), + [anon_sym_LT] = ACTIONS(9657), + [anon_sym_LT_LT] = ACTIONS(9657), + [anon_sym_GT_GT] = ACTIONS(9657), + [anon_sym_SEMI] = ACTIONS(9659), + [anon_sym___attribute__] = ACTIONS(9657), + [anon_sym___attribute] = ACTIONS(9657), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9659), + [anon_sym_RBRACE] = ACTIONS(9659), + [anon_sym_LBRACK] = ACTIONS(9642), + [anon_sym_EQ] = ACTIONS(9657), + [anon_sym_QMARK] = ACTIONS(9659), + [anon_sym_STAR_EQ] = ACTIONS(9659), + [anon_sym_SLASH_EQ] = ACTIONS(9659), + [anon_sym_PERCENT_EQ] = ACTIONS(9659), + [anon_sym_PLUS_EQ] = ACTIONS(9659), + [anon_sym_DASH_EQ] = ACTIONS(9659), + [anon_sym_LT_LT_EQ] = ACTIONS(9659), + [anon_sym_GT_GT_EQ] = ACTIONS(9659), + [anon_sym_AMP_EQ] = ACTIONS(9659), + [anon_sym_CARET_EQ] = ACTIONS(9659), + [anon_sym_PIPE_EQ] = ACTIONS(9659), + [anon_sym_and_eq] = ACTIONS(9657), + [anon_sym_or_eq] = ACTIONS(9657), + [anon_sym_xor_eq] = ACTIONS(9657), + [anon_sym_LT_EQ_GT] = ACTIONS(9659), + [anon_sym_or] = ACTIONS(9657), + [anon_sym_and] = ACTIONS(9657), + [anon_sym_bitor] = ACTIONS(9657), + [anon_sym_xor] = ACTIONS(9657), + [anon_sym_bitand] = ACTIONS(9657), + [anon_sym_not_eq] = ACTIONS(9657), + [anon_sym_DASH_DASH] = ACTIONS(9659), + [anon_sym_PLUS_PLUS] = ACTIONS(9659), + [anon_sym_DOT] = ACTIONS(9646), + [anon_sym_DOT_STAR] = ACTIONS(9648), + [anon_sym_DASH_GT] = ACTIONS(9648), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9659), + }, + [STATE(3783)] = { + [sym_string_literal] = STATE(3632), + [sym_raw_string_literal] = STATE(3632), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9118), + [anon_sym_COMMA] = ACTIONS(9118), + [anon_sym_RPAREN] = ACTIONS(9118), + [anon_sym_LPAREN2] = ACTIONS(9118), + [anon_sym_DASH] = ACTIONS(9116), + [anon_sym_PLUS] = ACTIONS(9116), + [anon_sym_STAR] = ACTIONS(9116), + [anon_sym_SLASH] = ACTIONS(9116), + [anon_sym_PERCENT] = ACTIONS(9116), + [anon_sym_PIPE_PIPE] = ACTIONS(9118), + [anon_sym_AMP_AMP] = ACTIONS(9118), + [anon_sym_PIPE] = ACTIONS(9116), + [anon_sym_CARET] = ACTIONS(9116), + [anon_sym_AMP] = ACTIONS(9116), + [anon_sym_EQ_EQ] = ACTIONS(9118), + [anon_sym_BANG_EQ] = ACTIONS(9118), + [anon_sym_GT] = ACTIONS(9116), + [anon_sym_GT_EQ] = ACTIONS(9118), + [anon_sym_LT_EQ] = ACTIONS(9116), + [anon_sym_LT] = ACTIONS(9116), + [anon_sym_LT_LT] = ACTIONS(9116), + [anon_sym_GT_GT] = ACTIONS(9116), + [anon_sym_LBRACK] = ACTIONS(9118), + [anon_sym_EQ] = ACTIONS(9116), + [anon_sym_QMARK] = ACTIONS(9118), + [anon_sym_STAR_EQ] = ACTIONS(9118), + [anon_sym_SLASH_EQ] = ACTIONS(9118), + [anon_sym_PERCENT_EQ] = ACTIONS(9118), + [anon_sym_PLUS_EQ] = ACTIONS(9118), + [anon_sym_DASH_EQ] = ACTIONS(9118), + [anon_sym_LT_LT_EQ] = ACTIONS(9118), + [anon_sym_GT_GT_EQ] = ACTIONS(9118), + [anon_sym_AMP_EQ] = ACTIONS(9118), + [anon_sym_CARET_EQ] = ACTIONS(9118), + [anon_sym_PIPE_EQ] = ACTIONS(9118), + [anon_sym_and_eq] = ACTIONS(9116), + [anon_sym_or_eq] = ACTIONS(9116), + [anon_sym_xor_eq] = ACTIONS(9116), + [anon_sym_LT_EQ_GT] = ACTIONS(9118), + [anon_sym_or] = ACTIONS(9116), + [anon_sym_and] = ACTIONS(9116), + [anon_sym_bitor] = ACTIONS(9116), + [anon_sym_xor] = ACTIONS(9116), + [anon_sym_bitand] = ACTIONS(9116), + [anon_sym_not_eq] = ACTIONS(9116), + [anon_sym_DASH_DASH] = ACTIONS(9118), + [anon_sym_PLUS_PLUS] = ACTIONS(9118), + [anon_sym_DOT] = ACTIONS(9116), + [anon_sym_DOT_STAR] = ACTIONS(9118), + [anon_sym_DASH_GT] = ACTIONS(9116), + [anon_sym_L_DQUOTE] = ACTIONS(6885), + [anon_sym_u_DQUOTE] = ACTIONS(6885), + [anon_sym_U_DQUOTE] = ACTIONS(6885), + [anon_sym_u8_DQUOTE] = ACTIONS(6885), + [anon_sym_DQUOTE] = ACTIONS(6885), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6887), + [anon_sym_LR_DQUOTE] = ACTIONS(6887), + [anon_sym_uR_DQUOTE] = ACTIONS(6887), + [anon_sym_UR_DQUOTE] = ACTIONS(6887), + [anon_sym_u8R_DQUOTE] = ACTIONS(6887), + [anon_sym_DASH_GT_STAR] = ACTIONS(9118), + [sym_literal_suffix] = ACTIONS(9116), + }, + [STATE(3784)] = { + [sym_attribute_specifier] = STATE(3784), + [aux_sym_type_definition_repeat1] = STATE(3784), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6937), + [anon_sym_COMMA] = ACTIONS(6937), + [anon_sym_LPAREN2] = ACTIONS(6937), + [anon_sym_DASH] = ACTIONS(6935), + [anon_sym_PLUS] = ACTIONS(6935), + [anon_sym_STAR] = ACTIONS(6937), + [anon_sym_SLASH] = ACTIONS(6935), + [anon_sym_PERCENT] = ACTIONS(6937), + [anon_sym_PIPE_PIPE] = ACTIONS(6937), + [anon_sym_AMP_AMP] = ACTIONS(6937), + [anon_sym_PIPE] = ACTIONS(6935), + [anon_sym_CARET] = ACTIONS(6937), + [anon_sym_AMP] = ACTIONS(6935), + [anon_sym_EQ_EQ] = ACTIONS(6937), + [anon_sym_BANG_EQ] = ACTIONS(6937), + [anon_sym_GT] = ACTIONS(6935), + [anon_sym_GT_EQ] = ACTIONS(6937), + [anon_sym_LT_EQ] = ACTIONS(6935), + [anon_sym_LT] = ACTIONS(6935), + [anon_sym_LT_LT] = ACTIONS(6937), + [anon_sym_GT_GT] = ACTIONS(6937), + [anon_sym___extension__] = ACTIONS(6937), + [anon_sym___attribute__] = ACTIONS(9661), + [anon_sym___attribute] = ACTIONS(9664), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6937), + [anon_sym_LBRACK] = ACTIONS(6935), + [anon_sym_RBRACK] = ACTIONS(6937), + [anon_sym_const] = ACTIONS(6935), + [anon_sym_constexpr] = ACTIONS(6937), + [anon_sym_volatile] = ACTIONS(6937), + [anon_sym_restrict] = ACTIONS(6937), + [anon_sym___restrict__] = ACTIONS(6937), + [anon_sym__Atomic] = ACTIONS(6937), + [anon_sym__Noreturn] = ACTIONS(6937), + [anon_sym_noreturn] = ACTIONS(6937), + [anon_sym__Nonnull] = ACTIONS(6937), + [anon_sym_mutable] = ACTIONS(6937), + [anon_sym_constinit] = ACTIONS(6937), + [anon_sym_consteval] = ACTIONS(6937), + [anon_sym_alignas] = ACTIONS(6937), + [anon_sym__Alignas] = ACTIONS(6937), + [anon_sym_QMARK] = ACTIONS(6937), + [anon_sym_LT_EQ_GT] = ACTIONS(6937), + [anon_sym_or] = ACTIONS(6937), + [anon_sym_and] = ACTIONS(6937), + [anon_sym_bitor] = ACTIONS(6937), + [anon_sym_xor] = ACTIONS(6937), + [anon_sym_bitand] = ACTIONS(6937), + [anon_sym_not_eq] = ACTIONS(6937), + [anon_sym_DASH_DASH] = ACTIONS(6937), + [anon_sym_PLUS_PLUS] = ACTIONS(6937), + [anon_sym_asm] = ACTIONS(6937), + [anon_sym___asm__] = ACTIONS(6937), + [anon_sym___asm] = ACTIONS(6935), + [anon_sym_DOT] = ACTIONS(6935), + [anon_sym_DOT_STAR] = ACTIONS(6937), + [anon_sym_DASH_GT] = ACTIONS(6937), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6937), + [anon_sym_override] = ACTIONS(6937), + [anon_sym_noexcept] = ACTIONS(6937), + [anon_sym_throw] = ACTIONS(6937), + [anon_sym_requires] = ACTIONS(6937), + }, + [STATE(3785)] = { + [sym_identifier] = ACTIONS(9626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9628), + [anon_sym_COMMA] = ACTIONS(9628), + [anon_sym_RPAREN] = ACTIONS(9628), + [aux_sym_preproc_if_token2] = ACTIONS(9628), + [aux_sym_preproc_else_token1] = ACTIONS(9628), + [aux_sym_preproc_elif_token1] = ACTIONS(9626), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9628), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9628), + [anon_sym_LPAREN2] = ACTIONS(9628), + [anon_sym_DASH] = ACTIONS(9626), + [anon_sym_PLUS] = ACTIONS(9626), + [anon_sym_STAR] = ACTIONS(9626), + [anon_sym_SLASH] = ACTIONS(9626), + [anon_sym_PERCENT] = ACTIONS(9626), + [anon_sym_PIPE_PIPE] = ACTIONS(9628), + [anon_sym_AMP_AMP] = ACTIONS(9628), + [anon_sym_PIPE] = ACTIONS(9626), + [anon_sym_CARET] = ACTIONS(9626), + [anon_sym_AMP] = ACTIONS(9626), + [anon_sym_EQ_EQ] = ACTIONS(9628), + [anon_sym_BANG_EQ] = ACTIONS(9628), + [anon_sym_GT] = ACTIONS(9626), + [anon_sym_GT_EQ] = ACTIONS(9628), + [anon_sym_LT_EQ] = ACTIONS(9626), + [anon_sym_LT] = ACTIONS(9626), + [anon_sym_LT_LT] = ACTIONS(9626), + [anon_sym_GT_GT] = ACTIONS(9626), + [anon_sym_SEMI] = ACTIONS(9628), + [anon_sym___attribute__] = ACTIONS(9626), + [anon_sym___attribute] = ACTIONS(9626), + [anon_sym_COLON] = ACTIONS(9626), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9628), + [anon_sym_LBRACE] = ACTIONS(9628), + [anon_sym_RBRACE] = ACTIONS(9628), + [anon_sym_LBRACK] = ACTIONS(9628), + [anon_sym_EQ] = ACTIONS(9626), + [anon_sym_QMARK] = ACTIONS(9628), + [anon_sym_STAR_EQ] = ACTIONS(9628), + [anon_sym_SLASH_EQ] = ACTIONS(9628), + [anon_sym_PERCENT_EQ] = ACTIONS(9628), + [anon_sym_PLUS_EQ] = ACTIONS(9628), + [anon_sym_DASH_EQ] = ACTIONS(9628), + [anon_sym_LT_LT_EQ] = ACTIONS(9628), + [anon_sym_GT_GT_EQ] = ACTIONS(9628), + [anon_sym_AMP_EQ] = ACTIONS(9628), + [anon_sym_CARET_EQ] = ACTIONS(9628), + [anon_sym_PIPE_EQ] = ACTIONS(9628), + [anon_sym_and_eq] = ACTIONS(9626), + [anon_sym_or_eq] = ACTIONS(9626), + [anon_sym_xor_eq] = ACTIONS(9626), + [anon_sym_LT_EQ_GT] = ACTIONS(9628), + [anon_sym_or] = ACTIONS(9626), + [anon_sym_and] = ACTIONS(9626), + [anon_sym_bitor] = ACTIONS(9626), + [anon_sym_xor] = ACTIONS(9626), + [anon_sym_bitand] = ACTIONS(9626), + [anon_sym_not_eq] = ACTIONS(9626), + [anon_sym_DASH_DASH] = ACTIONS(9628), + [anon_sym_PLUS_PLUS] = ACTIONS(9628), + [anon_sym_DOT] = ACTIONS(9626), + [anon_sym_DOT_STAR] = ACTIONS(9628), + [anon_sym_DASH_GT] = ACTIONS(9628), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9628), + }, + [STATE(3786)] = { + [sym_attribute_specifier] = STATE(3786), + [aux_sym_type_definition_repeat1] = STATE(3786), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6937), + [anon_sym_COMMA] = ACTIONS(6937), + [anon_sym_LPAREN2] = ACTIONS(6937), + [anon_sym_DASH] = ACTIONS(6935), + [anon_sym_PLUS] = ACTIONS(6935), + [anon_sym_STAR] = ACTIONS(6937), + [anon_sym_SLASH] = ACTIONS(6935), + [anon_sym_PERCENT] = ACTIONS(6937), + [anon_sym_PIPE_PIPE] = ACTIONS(6937), + [anon_sym_AMP_AMP] = ACTIONS(6937), + [anon_sym_PIPE] = ACTIONS(6935), + [anon_sym_CARET] = ACTIONS(6937), + [anon_sym_AMP] = ACTIONS(6935), + [anon_sym_EQ_EQ] = ACTIONS(6937), + [anon_sym_BANG_EQ] = ACTIONS(6937), + [anon_sym_GT] = ACTIONS(6935), + [anon_sym_GT_EQ] = ACTIONS(6935), + [anon_sym_LT_EQ] = ACTIONS(6935), + [anon_sym_LT] = ACTIONS(6935), + [anon_sym_LT_LT] = ACTIONS(6937), + [anon_sym_GT_GT] = ACTIONS(6935), + [anon_sym___extension__] = ACTIONS(6937), + [anon_sym___attribute__] = ACTIONS(9667), + [anon_sym___attribute] = ACTIONS(9670), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6937), + [anon_sym_LBRACK] = ACTIONS(6935), + [anon_sym_const] = ACTIONS(6935), + [anon_sym_constexpr] = ACTIONS(6937), + [anon_sym_volatile] = ACTIONS(6937), + [anon_sym_restrict] = ACTIONS(6937), + [anon_sym___restrict__] = ACTIONS(6937), + [anon_sym__Atomic] = ACTIONS(6937), + [anon_sym__Noreturn] = ACTIONS(6937), + [anon_sym_noreturn] = ACTIONS(6937), + [anon_sym__Nonnull] = ACTIONS(6937), + [anon_sym_mutable] = ACTIONS(6937), + [anon_sym_constinit] = ACTIONS(6937), + [anon_sym_consteval] = ACTIONS(6937), + [anon_sym_alignas] = ACTIONS(6937), + [anon_sym__Alignas] = ACTIONS(6937), + [anon_sym_QMARK] = ACTIONS(6937), + [anon_sym_LT_EQ_GT] = ACTIONS(6937), + [anon_sym_or] = ACTIONS(6937), + [anon_sym_and] = ACTIONS(6937), + [anon_sym_bitor] = ACTIONS(6937), + [anon_sym_xor] = ACTIONS(6937), + [anon_sym_bitand] = ACTIONS(6937), + [anon_sym_not_eq] = ACTIONS(6937), + [anon_sym_DASH_DASH] = ACTIONS(6937), + [anon_sym_PLUS_PLUS] = ACTIONS(6937), + [anon_sym_asm] = ACTIONS(6937), + [anon_sym___asm__] = ACTIONS(6937), + [anon_sym___asm] = ACTIONS(6935), + [anon_sym_DOT] = ACTIONS(6935), + [anon_sym_DOT_STAR] = ACTIONS(6937), + [anon_sym_DASH_GT] = ACTIONS(6937), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6937), + [anon_sym_override] = ACTIONS(6937), + [anon_sym_GT2] = ACTIONS(6937), + [anon_sym_noexcept] = ACTIONS(6937), + [anon_sym_throw] = ACTIONS(6937), + [anon_sym_requires] = ACTIONS(6937), + }, + [STATE(3787)] = { + [sym_ms_based_modifier] = STATE(10837), + [sym__declarator] = STATE(8808), + [sym__abstract_declarator] = STATE(9080), + [sym_parenthesized_declarator] = STATE(8555), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_function_declarator] = STATE(8555), + [sym_abstract_function_declarator] = STATE(8596), + [sym_array_declarator] = STATE(8555), + [sym_abstract_array_declarator] = STATE(8596), + [sym_type_qualifier] = STATE(7086), + [sym_alignas_qualifier] = STATE(7511), + [sym_parameter_list] = STATE(5340), + [sym_decltype] = STATE(10768), + [sym_reference_declarator] = STATE(8555), + [sym_abstract_reference_declarator] = STATE(8596), + [sym_structured_binding_declarator] = STATE(8555), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7990), + [sym_qualified_identifier] = STATE(8555), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__type_definition_type_repeat1] = STATE(7086), + [sym_identifier] = ACTIONS(8546), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(8708), + [anon_sym_AMP_AMP] = ACTIONS(8710), + [anon_sym_AMP] = ACTIONS(8712), + [anon_sym___extension__] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(6821), + [anon_sym___attribute] = ACTIONS(6821), + [anon_sym_COLON_COLON] = ACTIONS(8554), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5627), + [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__Nonnull] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), + }, + [STATE(3788)] = { + [sym_ms_based_modifier] = STATE(11008), + [sym__declarator] = STATE(8808), + [sym__abstract_declarator] = STATE(9080), + [sym_parenthesized_declarator] = STATE(8555), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_function_declarator] = STATE(8555), + [sym_abstract_function_declarator] = STATE(8596), + [sym_array_declarator] = STATE(8555), + [sym_abstract_array_declarator] = STATE(8596), + [sym_type_qualifier] = STATE(7086), + [sym_alignas_qualifier] = STATE(7511), + [sym_parameter_list] = STATE(5340), + [sym_decltype] = STATE(10768), + [sym_reference_declarator] = STATE(8555), + [sym_abstract_reference_declarator] = STATE(8596), + [sym_structured_binding_declarator] = STATE(8555), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7993), + [sym_qualified_identifier] = STATE(8555), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__type_definition_type_repeat1] = STATE(7086), + [sym_identifier] = ACTIONS(8228), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_RPAREN] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(8669), + [anon_sym_AMP_AMP] = ACTIONS(8671), + [anon_sym_AMP] = ACTIONS(8673), + [anon_sym___extension__] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(6821), + [anon_sym___attribute] = ACTIONS(6821), + [anon_sym_COLON_COLON] = ACTIONS(8675), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5627), + [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__Nonnull] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), + }, + [STATE(3789)] = { + [sym_ms_based_modifier] = STATE(11008), + [sym__declarator] = STATE(8816), + [sym__abstract_declarator] = STATE(9028), + [sym_parenthesized_declarator] = STATE(8555), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_function_declarator] = STATE(8555), + [sym_abstract_function_declarator] = STATE(8596), + [sym_array_declarator] = STATE(8555), + [sym_abstract_array_declarator] = STATE(8596), + [sym_type_qualifier] = STATE(7086), + [sym_alignas_qualifier] = STATE(7511), + [sym_parameter_list] = STATE(5340), + [sym_decltype] = STATE(10768), + [sym_reference_declarator] = STATE(8555), + [sym_abstract_reference_declarator] = STATE(8596), + [sym_structured_binding_declarator] = STATE(8555), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7993), + [sym_qualified_identifier] = STATE(8555), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__type_definition_type_repeat1] = STATE(7086), + [sym_identifier] = ACTIONS(8228), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_RPAREN] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(8669), + [anon_sym_AMP_AMP] = ACTIONS(8671), + [anon_sym_AMP] = ACTIONS(8673), + [anon_sym___extension__] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(7347), + [anon_sym___attribute] = ACTIONS(7347), + [anon_sym_COLON_COLON] = ACTIONS(8675), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5627), + [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__Nonnull] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), + }, + [STATE(3790)] = { + [sym_identifier] = ACTIONS(7459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7457), + [anon_sym_COMMA] = ACTIONS(7457), + [anon_sym_RPAREN] = ACTIONS(7457), + [anon_sym_LPAREN2] = ACTIONS(7457), + [anon_sym_TILDE] = ACTIONS(7457), + [anon_sym_STAR] = ACTIONS(7457), + [anon_sym_PIPE_PIPE] = ACTIONS(7457), + [anon_sym_AMP_AMP] = ACTIONS(7457), + [anon_sym_AMP] = ACTIONS(7459), + [anon_sym_SEMI] = ACTIONS(7457), + [anon_sym___extension__] = ACTIONS(7459), + [anon_sym_virtual] = ACTIONS(7459), + [anon_sym_extern] = ACTIONS(7459), + [anon_sym___attribute__] = ACTIONS(7459), + [anon_sym___attribute] = ACTIONS(7459), + [anon_sym_COLON] = ACTIONS(7459), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7457), + [anon_sym___declspec] = ACTIONS(7459), + [anon_sym___based] = ACTIONS(7459), + [anon_sym___cdecl] = ACTIONS(7459), + [anon_sym___clrcall] = ACTIONS(7459), + [anon_sym___stdcall] = ACTIONS(7459), + [anon_sym___fastcall] = ACTIONS(7459), + [anon_sym___thiscall] = ACTIONS(7459), + [anon_sym___vectorcall] = ACTIONS(7459), + [anon_sym_LBRACE] = ACTIONS(7457), + [anon_sym_LBRACK] = ACTIONS(7459), + [anon_sym_static] = ACTIONS(7459), + [anon_sym_EQ] = ACTIONS(7457), + [anon_sym_register] = ACTIONS(7459), + [anon_sym_inline] = ACTIONS(7459), + [anon_sym___inline] = ACTIONS(7459), + [anon_sym___inline__] = ACTIONS(7459), + [anon_sym___forceinline] = ACTIONS(7459), + [anon_sym_thread_local] = ACTIONS(7459), + [anon_sym___thread] = ACTIONS(7459), + [anon_sym_const] = ACTIONS(7459), + [anon_sym_constexpr] = ACTIONS(7459), + [anon_sym_volatile] = ACTIONS(7459), + [anon_sym_restrict] = ACTIONS(7459), + [anon_sym___restrict__] = ACTIONS(7459), + [anon_sym__Atomic] = ACTIONS(7459), + [anon_sym__Noreturn] = ACTIONS(7459), + [anon_sym_noreturn] = ACTIONS(7459), + [anon_sym__Nonnull] = ACTIONS(7459), + [anon_sym_mutable] = ACTIONS(7459), + [anon_sym_constinit] = ACTIONS(7459), + [anon_sym_consteval] = ACTIONS(7459), + [anon_sym_alignas] = ACTIONS(7459), + [anon_sym__Alignas] = ACTIONS(7459), + [anon_sym_or] = ACTIONS(7459), + [anon_sym_and] = ACTIONS(7459), + [anon_sym_DASH_GT] = ACTIONS(7457), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7459), + [anon_sym_final] = ACTIONS(7459), + [anon_sym_override] = ACTIONS(7459), + [anon_sym_template] = ACTIONS(7459), + [anon_sym_GT2] = ACTIONS(7457), + [anon_sym_operator] = ACTIONS(7459), + [anon_sym_noexcept] = ACTIONS(7459), + [anon_sym_throw] = ACTIONS(7459), + [anon_sym_LBRACK_COLON] = ACTIONS(7457), + }, + [STATE(3791)] = { + [sym_argument_list] = STATE(3874), + [sym_subscript_argument_list] = STATE(3900), + [sym_identifier] = ACTIONS(9673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9675), + [anon_sym_COMMA] = ACTIONS(9675), + [anon_sym_RPAREN] = ACTIONS(9675), + [aux_sym_preproc_if_token2] = ACTIONS(9675), + [aux_sym_preproc_else_token1] = ACTIONS(9675), + [aux_sym_preproc_elif_token1] = ACTIONS(9673), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9675), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9675), + [anon_sym_LPAREN2] = ACTIONS(9230), + [anon_sym_DASH] = ACTIONS(9673), + [anon_sym_PLUS] = ACTIONS(9673), + [anon_sym_STAR] = ACTIONS(9673), + [anon_sym_SLASH] = ACTIONS(9673), + [anon_sym_PERCENT] = ACTIONS(9673), + [anon_sym_PIPE_PIPE] = ACTIONS(9675), + [anon_sym_AMP_AMP] = ACTIONS(9675), + [anon_sym_PIPE] = ACTIONS(9673), + [anon_sym_CARET] = ACTIONS(9673), + [anon_sym_AMP] = ACTIONS(9673), + [anon_sym_EQ_EQ] = ACTIONS(9675), + [anon_sym_BANG_EQ] = ACTIONS(9675), + [anon_sym_GT] = ACTIONS(9673), + [anon_sym_GT_EQ] = ACTIONS(9675), + [anon_sym_LT_EQ] = ACTIONS(9673), + [anon_sym_LT] = ACTIONS(9673), + [anon_sym_LT_LT] = ACTIONS(9673), + [anon_sym_GT_GT] = ACTIONS(9673), + [anon_sym_SEMI] = ACTIONS(9675), + [anon_sym___attribute__] = ACTIONS(9673), + [anon_sym___attribute] = ACTIONS(9673), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9675), + [anon_sym_RBRACE] = ACTIONS(9675), + [anon_sym_LBRACK] = ACTIONS(9642), + [anon_sym_EQ] = ACTIONS(9673), + [anon_sym_QMARK] = ACTIONS(9675), + [anon_sym_STAR_EQ] = ACTIONS(9675), + [anon_sym_SLASH_EQ] = ACTIONS(9675), + [anon_sym_PERCENT_EQ] = ACTIONS(9675), + [anon_sym_PLUS_EQ] = ACTIONS(9675), + [anon_sym_DASH_EQ] = ACTIONS(9675), + [anon_sym_LT_LT_EQ] = ACTIONS(9675), + [anon_sym_GT_GT_EQ] = ACTIONS(9675), + [anon_sym_AMP_EQ] = ACTIONS(9675), + [anon_sym_CARET_EQ] = ACTIONS(9675), + [anon_sym_PIPE_EQ] = ACTIONS(9675), + [anon_sym_and_eq] = ACTIONS(9673), + [anon_sym_or_eq] = ACTIONS(9673), + [anon_sym_xor_eq] = ACTIONS(9673), + [anon_sym_LT_EQ_GT] = ACTIONS(9675), + [anon_sym_or] = ACTIONS(9673), + [anon_sym_and] = ACTIONS(9673), + [anon_sym_bitor] = ACTIONS(9673), + [anon_sym_xor] = ACTIONS(9673), + [anon_sym_bitand] = ACTIONS(9673), + [anon_sym_not_eq] = ACTIONS(9673), + [anon_sym_DASH_DASH] = ACTIONS(9644), + [anon_sym_PLUS_PLUS] = ACTIONS(9644), + [anon_sym_DOT] = ACTIONS(9646), + [anon_sym_DOT_STAR] = ACTIONS(9648), + [anon_sym_DASH_GT] = ACTIONS(9648), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9675), + }, + [STATE(3792)] = { + [sym_argument_list] = STATE(3874), + [sym_subscript_argument_list] = STATE(3900), + [sym_identifier] = ACTIONS(9677), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9679), + [anon_sym_COMMA] = ACTIONS(9679), + [anon_sym_RPAREN] = ACTIONS(9679), + [aux_sym_preproc_if_token2] = ACTIONS(9679), + [aux_sym_preproc_else_token1] = ACTIONS(9679), + [aux_sym_preproc_elif_token1] = ACTIONS(9677), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9679), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9679), + [anon_sym_LPAREN2] = ACTIONS(9230), + [anon_sym_DASH] = ACTIONS(9677), + [anon_sym_PLUS] = ACTIONS(9677), + [anon_sym_STAR] = ACTIONS(9677), + [anon_sym_SLASH] = ACTIONS(9677), + [anon_sym_PERCENT] = ACTIONS(9677), + [anon_sym_PIPE_PIPE] = ACTIONS(9679), + [anon_sym_AMP_AMP] = ACTIONS(9679), + [anon_sym_PIPE] = ACTIONS(9677), + [anon_sym_CARET] = ACTIONS(9677), + [anon_sym_AMP] = ACTIONS(9677), + [anon_sym_EQ_EQ] = ACTIONS(9679), + [anon_sym_BANG_EQ] = ACTIONS(9679), + [anon_sym_GT] = ACTIONS(9677), + [anon_sym_GT_EQ] = ACTIONS(9679), + [anon_sym_LT_EQ] = ACTIONS(9677), + [anon_sym_LT] = ACTIONS(9677), + [anon_sym_LT_LT] = ACTIONS(9677), + [anon_sym_GT_GT] = ACTIONS(9677), + [anon_sym_SEMI] = ACTIONS(9679), + [anon_sym___attribute__] = ACTIONS(9677), + [anon_sym___attribute] = ACTIONS(9677), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9679), + [anon_sym_RBRACE] = ACTIONS(9679), + [anon_sym_LBRACK] = ACTIONS(9642), + [anon_sym_EQ] = ACTIONS(9677), + [anon_sym_QMARK] = ACTIONS(9679), + [anon_sym_STAR_EQ] = ACTIONS(9679), + [anon_sym_SLASH_EQ] = ACTIONS(9679), + [anon_sym_PERCENT_EQ] = ACTIONS(9679), + [anon_sym_PLUS_EQ] = ACTIONS(9679), + [anon_sym_DASH_EQ] = ACTIONS(9679), + [anon_sym_LT_LT_EQ] = ACTIONS(9679), + [anon_sym_GT_GT_EQ] = ACTIONS(9679), + [anon_sym_AMP_EQ] = ACTIONS(9679), + [anon_sym_CARET_EQ] = ACTIONS(9679), + [anon_sym_PIPE_EQ] = ACTIONS(9679), + [anon_sym_and_eq] = ACTIONS(9677), + [anon_sym_or_eq] = ACTIONS(9677), + [anon_sym_xor_eq] = ACTIONS(9677), + [anon_sym_LT_EQ_GT] = ACTIONS(9679), + [anon_sym_or] = ACTIONS(9677), + [anon_sym_and] = ACTIONS(9677), + [anon_sym_bitor] = ACTIONS(9677), + [anon_sym_xor] = ACTIONS(9677), + [anon_sym_bitand] = ACTIONS(9677), + [anon_sym_not_eq] = ACTIONS(9677), + [anon_sym_DASH_DASH] = ACTIONS(9644), + [anon_sym_PLUS_PLUS] = ACTIONS(9644), + [anon_sym_DOT] = ACTIONS(9646), + [anon_sym_DOT_STAR] = ACTIONS(9648), + [anon_sym_DASH_GT] = ACTIONS(9648), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9679), + }, + [STATE(3793)] = { + [sym_attribute_specifier] = STATE(4077), + [sym_enumerator_list] = STATE(3835), + [sym_identifier] = ACTIONS(7387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), + [anon_sym_COMMA] = ACTIONS(7389), + [aux_sym_preproc_if_token2] = ACTIONS(7389), + [aux_sym_preproc_else_token1] = ACTIONS(7389), + [aux_sym_preproc_elif_token1] = ACTIONS(7387), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7389), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7389), + [anon_sym_LPAREN2] = ACTIONS(7389), + [anon_sym_DASH] = ACTIONS(7387), + [anon_sym_PLUS] = ACTIONS(7387), + [anon_sym_STAR] = ACTIONS(7389), + [anon_sym_SLASH] = ACTIONS(7387), + [anon_sym_PERCENT] = ACTIONS(7389), + [anon_sym_PIPE_PIPE] = ACTIONS(7389), + [anon_sym_AMP_AMP] = ACTIONS(7389), + [anon_sym_PIPE] = ACTIONS(7387), + [anon_sym_CARET] = ACTIONS(7389), + [anon_sym_AMP] = ACTIONS(7387), + [anon_sym_EQ_EQ] = ACTIONS(7389), + [anon_sym_BANG_EQ] = ACTIONS(7389), + [anon_sym_GT] = ACTIONS(7387), + [anon_sym_GT_EQ] = ACTIONS(7389), + [anon_sym_LT_EQ] = ACTIONS(7387), + [anon_sym_LT] = ACTIONS(7387), + [anon_sym_LT_LT] = ACTIONS(7389), + [anon_sym_GT_GT] = ACTIONS(7389), + [anon_sym___extension__] = ACTIONS(7387), + [anon_sym___attribute__] = ACTIONS(9244), + [anon_sym___attribute] = ACTIONS(9244), + [anon_sym_LBRACE] = ACTIONS(9413), + [anon_sym_LBRACK] = ACTIONS(7389), + [anon_sym_const] = ACTIONS(7387), + [anon_sym_constexpr] = ACTIONS(7387), + [anon_sym_volatile] = ACTIONS(7387), + [anon_sym_restrict] = ACTIONS(7387), + [anon_sym___restrict__] = ACTIONS(7387), + [anon_sym__Atomic] = ACTIONS(7387), + [anon_sym__Noreturn] = ACTIONS(7387), + [anon_sym_noreturn] = ACTIONS(7387), + [anon_sym__Nonnull] = ACTIONS(7387), + [anon_sym_mutable] = ACTIONS(7387), + [anon_sym_constinit] = ACTIONS(7387), + [anon_sym_consteval] = ACTIONS(7387), + [anon_sym_alignas] = ACTIONS(7387), + [anon_sym__Alignas] = ACTIONS(7387), + [anon_sym_QMARK] = ACTIONS(7389), + [anon_sym_LT_EQ_GT] = ACTIONS(7389), + [anon_sym_or] = ACTIONS(7387), + [anon_sym_and] = ACTIONS(7387), + [anon_sym_bitor] = ACTIONS(7387), + [anon_sym_xor] = ACTIONS(7387), + [anon_sym_bitand] = ACTIONS(7387), + [anon_sym_not_eq] = ACTIONS(7387), + [anon_sym_DASH_DASH] = ACTIONS(7389), + [anon_sym_PLUS_PLUS] = ACTIONS(7389), + [anon_sym_DOT] = ACTIONS(7387), + [anon_sym_DOT_STAR] = ACTIONS(7389), + [anon_sym_DASH_GT] = ACTIONS(7389), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7387), + [anon_sym_override] = ACTIONS(7387), + [anon_sym_requires] = ACTIONS(7387), + }, + [STATE(3794)] = { + [sym_argument_list] = STATE(3874), + [sym_subscript_argument_list] = STATE(3900), + [sym_identifier] = ACTIONS(9681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9683), + [anon_sym_COMMA] = ACTIONS(9683), + [anon_sym_RPAREN] = ACTIONS(9683), + [aux_sym_preproc_if_token2] = ACTIONS(9683), + [aux_sym_preproc_else_token1] = ACTIONS(9683), + [aux_sym_preproc_elif_token1] = ACTIONS(9681), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9683), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9683), + [anon_sym_LPAREN2] = ACTIONS(9230), + [anon_sym_DASH] = ACTIONS(9681), + [anon_sym_PLUS] = ACTIONS(9681), + [anon_sym_STAR] = ACTIONS(9681), + [anon_sym_SLASH] = ACTIONS(9681), + [anon_sym_PERCENT] = ACTIONS(9681), + [anon_sym_PIPE_PIPE] = ACTIONS(9683), + [anon_sym_AMP_AMP] = ACTIONS(9683), + [anon_sym_PIPE] = ACTIONS(9681), + [anon_sym_CARET] = ACTIONS(9681), + [anon_sym_AMP] = ACTIONS(9681), + [anon_sym_EQ_EQ] = ACTIONS(9683), + [anon_sym_BANG_EQ] = ACTIONS(9683), + [anon_sym_GT] = ACTIONS(9681), + [anon_sym_GT_EQ] = ACTIONS(9683), + [anon_sym_LT_EQ] = ACTIONS(9681), + [anon_sym_LT] = ACTIONS(9681), + [anon_sym_LT_LT] = ACTIONS(9681), + [anon_sym_GT_GT] = ACTIONS(9681), + [anon_sym_SEMI] = ACTIONS(9683), + [anon_sym___attribute__] = ACTIONS(9681), + [anon_sym___attribute] = ACTIONS(9681), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9683), + [anon_sym_RBRACE] = ACTIONS(9683), + [anon_sym_LBRACK] = ACTIONS(9642), + [anon_sym_EQ] = ACTIONS(9681), + [anon_sym_QMARK] = ACTIONS(9683), + [anon_sym_STAR_EQ] = ACTIONS(9683), + [anon_sym_SLASH_EQ] = ACTIONS(9683), + [anon_sym_PERCENT_EQ] = ACTIONS(9683), + [anon_sym_PLUS_EQ] = ACTIONS(9683), + [anon_sym_DASH_EQ] = ACTIONS(9683), + [anon_sym_LT_LT_EQ] = ACTIONS(9683), + [anon_sym_GT_GT_EQ] = ACTIONS(9683), + [anon_sym_AMP_EQ] = ACTIONS(9683), + [anon_sym_CARET_EQ] = ACTIONS(9683), + [anon_sym_PIPE_EQ] = ACTIONS(9683), + [anon_sym_and_eq] = ACTIONS(9681), + [anon_sym_or_eq] = ACTIONS(9681), + [anon_sym_xor_eq] = ACTIONS(9681), + [anon_sym_LT_EQ_GT] = ACTIONS(9683), + [anon_sym_or] = ACTIONS(9681), + [anon_sym_and] = ACTIONS(9681), + [anon_sym_bitor] = ACTIONS(9681), + [anon_sym_xor] = ACTIONS(9681), + [anon_sym_bitand] = ACTIONS(9681), + [anon_sym_not_eq] = ACTIONS(9681), + [anon_sym_DASH_DASH] = ACTIONS(9683), + [anon_sym_PLUS_PLUS] = ACTIONS(9683), + [anon_sym_DOT] = ACTIONS(9646), + [anon_sym_DOT_STAR] = ACTIONS(9648), + [anon_sym_DASH_GT] = ACTIONS(9648), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9683), + }, + [STATE(3795)] = { + [sym_identifier] = ACTIONS(9685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9687), + [anon_sym_COMMA] = ACTIONS(9687), + [anon_sym_RPAREN] = ACTIONS(9687), + [aux_sym_preproc_if_token2] = ACTIONS(9687), + [aux_sym_preproc_else_token1] = ACTIONS(9687), + [aux_sym_preproc_elif_token1] = ACTIONS(9685), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9687), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9687), + [anon_sym_LPAREN2] = ACTIONS(9687), + [anon_sym_DASH] = ACTIONS(9685), + [anon_sym_PLUS] = ACTIONS(9685), + [anon_sym_STAR] = ACTIONS(9685), + [anon_sym_SLASH] = ACTIONS(9685), + [anon_sym_PERCENT] = ACTIONS(9685), + [anon_sym_PIPE_PIPE] = ACTIONS(9687), + [anon_sym_AMP_AMP] = ACTIONS(9687), + [anon_sym_PIPE] = ACTIONS(9685), + [anon_sym_CARET] = ACTIONS(9685), + [anon_sym_AMP] = ACTIONS(9685), + [anon_sym_EQ_EQ] = ACTIONS(9687), + [anon_sym_BANG_EQ] = ACTIONS(9687), + [anon_sym_GT] = ACTIONS(9685), + [anon_sym_GT_EQ] = ACTIONS(9687), + [anon_sym_LT_EQ] = ACTIONS(9685), + [anon_sym_LT] = ACTIONS(9685), + [anon_sym_LT_LT] = ACTIONS(9685), + [anon_sym_GT_GT] = ACTIONS(9685), + [anon_sym_SEMI] = ACTIONS(9687), + [anon_sym___attribute__] = ACTIONS(9685), + [anon_sym___attribute] = ACTIONS(9685), + [anon_sym_COLON] = ACTIONS(9685), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9687), + [anon_sym_LBRACE] = ACTIONS(9687), + [anon_sym_RBRACE] = ACTIONS(9687), + [anon_sym_LBRACK] = ACTIONS(9687), + [anon_sym_EQ] = ACTIONS(9685), + [anon_sym_QMARK] = ACTIONS(9687), + [anon_sym_STAR_EQ] = ACTIONS(9687), + [anon_sym_SLASH_EQ] = ACTIONS(9687), + [anon_sym_PERCENT_EQ] = ACTIONS(9687), + [anon_sym_PLUS_EQ] = ACTIONS(9687), + [anon_sym_DASH_EQ] = ACTIONS(9687), + [anon_sym_LT_LT_EQ] = ACTIONS(9687), + [anon_sym_GT_GT_EQ] = ACTIONS(9687), + [anon_sym_AMP_EQ] = ACTIONS(9687), + [anon_sym_CARET_EQ] = ACTIONS(9687), + [anon_sym_PIPE_EQ] = ACTIONS(9687), + [anon_sym_and_eq] = ACTIONS(9685), + [anon_sym_or_eq] = ACTIONS(9685), + [anon_sym_xor_eq] = ACTIONS(9685), + [anon_sym_LT_EQ_GT] = ACTIONS(9687), + [anon_sym_or] = ACTIONS(9685), + [anon_sym_and] = ACTIONS(9685), + [anon_sym_bitor] = ACTIONS(9685), + [anon_sym_xor] = ACTIONS(9685), + [anon_sym_bitand] = ACTIONS(9685), + [anon_sym_not_eq] = ACTIONS(9685), + [anon_sym_DASH_DASH] = ACTIONS(9687), + [anon_sym_PLUS_PLUS] = ACTIONS(9687), + [anon_sym_DOT] = ACTIONS(9685), + [anon_sym_DOT_STAR] = ACTIONS(9687), + [anon_sym_DASH_GT] = ACTIONS(9687), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9687), + }, + [STATE(3796)] = { + [sym_attribute_specifier] = STATE(3245), + [sym_enumerator_list] = STATE(3830), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7383), + [anon_sym_COMMA] = ACTIONS(7383), + [anon_sym_RPAREN] = ACTIONS(7383), + [anon_sym_LPAREN2] = ACTIONS(7383), + [anon_sym_DASH] = ACTIONS(7381), + [anon_sym_PLUS] = ACTIONS(7381), + [anon_sym_STAR] = ACTIONS(7383), + [anon_sym_SLASH] = ACTIONS(7381), + [anon_sym_PERCENT] = ACTIONS(7383), + [anon_sym_PIPE_PIPE] = ACTIONS(7383), + [anon_sym_AMP_AMP] = ACTIONS(7383), + [anon_sym_PIPE] = ACTIONS(7381), + [anon_sym_CARET] = ACTIONS(7383), + [anon_sym_AMP] = ACTIONS(7381), + [anon_sym_EQ_EQ] = ACTIONS(7383), + [anon_sym_BANG_EQ] = ACTIONS(7383), + [anon_sym_GT] = ACTIONS(7381), + [anon_sym_GT_EQ] = ACTIONS(7383), + [anon_sym_LT_EQ] = ACTIONS(7381), + [anon_sym_LT] = ACTIONS(7381), + [anon_sym_LT_LT] = ACTIONS(7383), + [anon_sym_GT_GT] = ACTIONS(7383), + [anon_sym_SEMI] = ACTIONS(7383), + [anon_sym___extension__] = ACTIONS(7383), + [anon_sym___attribute__] = ACTIONS(9312), + [anon_sym___attribute] = ACTIONS(9244), + [anon_sym_COLON] = ACTIONS(7381), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7383), + [anon_sym_LBRACE] = ACTIONS(9576), + [anon_sym_RBRACE] = ACTIONS(7383), + [anon_sym_LBRACK] = ACTIONS(7383), + [anon_sym_const] = ACTIONS(7381), + [anon_sym_constexpr] = ACTIONS(7383), + [anon_sym_volatile] = ACTIONS(7383), + [anon_sym_restrict] = ACTIONS(7383), + [anon_sym___restrict__] = ACTIONS(7383), + [anon_sym__Atomic] = ACTIONS(7383), + [anon_sym__Noreturn] = ACTIONS(7383), + [anon_sym_noreturn] = ACTIONS(7383), + [anon_sym__Nonnull] = ACTIONS(7383), + [anon_sym_mutable] = ACTIONS(7383), + [anon_sym_constinit] = ACTIONS(7383), + [anon_sym_consteval] = ACTIONS(7383), + [anon_sym_alignas] = ACTIONS(7383), + [anon_sym__Alignas] = ACTIONS(7383), + [anon_sym_QMARK] = ACTIONS(7383), + [anon_sym_LT_EQ_GT] = ACTIONS(7383), + [anon_sym_or] = ACTIONS(7383), + [anon_sym_and] = ACTIONS(7383), + [anon_sym_bitor] = ACTIONS(7383), + [anon_sym_xor] = ACTIONS(7383), + [anon_sym_bitand] = ACTIONS(7383), + [anon_sym_not_eq] = ACTIONS(7383), + [anon_sym_DASH_DASH] = ACTIONS(7383), + [anon_sym_PLUS_PLUS] = ACTIONS(7383), + [anon_sym_DOT] = ACTIONS(7381), + [anon_sym_DOT_STAR] = ACTIONS(7383), + [anon_sym_DASH_GT] = ACTIONS(7383), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7383), + [anon_sym_override] = ACTIONS(7383), + [anon_sym_requires] = ACTIONS(7383), + [anon_sym_COLON_RBRACK] = ACTIONS(7383), + }, + [STATE(3797)] = { + [sym_template_argument_list] = STATE(3735), + [aux_sym_sized_type_specifier_repeat1] = STATE(4015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7359), + [anon_sym_COMMA] = ACTIONS(7359), + [anon_sym_LPAREN2] = ACTIONS(7359), + [anon_sym_DASH] = ACTIONS(7357), + [anon_sym_PLUS] = ACTIONS(7357), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7357), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7359), + [anon_sym_AMP_AMP] = ACTIONS(7359), + [anon_sym_PIPE] = ACTIONS(7357), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7357), + [anon_sym_EQ_EQ] = ACTIONS(7359), + [anon_sym_BANG_EQ] = ACTIONS(7359), + [anon_sym_GT] = ACTIONS(7357), + [anon_sym_GT_EQ] = ACTIONS(7357), + [anon_sym_LT_EQ] = ACTIONS(7357), + [anon_sym_LT] = ACTIONS(7357), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7357), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7357), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(7359), + [anon_sym_signed] = ACTIONS(6981), + [anon_sym_unsigned] = ACTIONS(6981), + [anon_sym_long] = ACTIONS(6981), + [anon_sym_short] = ACTIONS(6981), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7357), + [anon_sym_constexpr] = ACTIONS(7359), + [anon_sym_volatile] = ACTIONS(7359), + [anon_sym_restrict] = ACTIONS(7359), + [anon_sym___restrict__] = ACTIONS(7359), + [anon_sym__Atomic] = ACTIONS(7359), + [anon_sym__Noreturn] = ACTIONS(7359), + [anon_sym_noreturn] = ACTIONS(7359), + [anon_sym__Nonnull] = ACTIONS(7359), + [anon_sym_mutable] = ACTIONS(7359), + [anon_sym_constinit] = ACTIONS(7359), + [anon_sym_consteval] = ACTIONS(7359), + [anon_sym_alignas] = ACTIONS(7359), + [anon_sym__Alignas] = ACTIONS(7359), + [anon_sym_QMARK] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7359), + [anon_sym_or] = ACTIONS(7359), + [anon_sym_and] = ACTIONS(7359), + [anon_sym_bitor] = ACTIONS(7359), + [anon_sym_xor] = ACTIONS(7359), + [anon_sym_bitand] = ACTIONS(7359), + [anon_sym_not_eq] = ACTIONS(7359), + [anon_sym_DASH_DASH] = ACTIONS(7359), + [anon_sym_PLUS_PLUS] = ACTIONS(7359), + [anon_sym_DOT] = ACTIONS(7357), + [anon_sym_DOT_STAR] = ACTIONS(7359), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_GT2] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + }, + [STATE(3798)] = { + [sym_identifier] = ACTIONS(9689), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9691), + [anon_sym_COMMA] = ACTIONS(9691), + [anon_sym_RPAREN] = ACTIONS(9691), + [aux_sym_preproc_if_token2] = ACTIONS(9691), + [aux_sym_preproc_else_token1] = ACTIONS(9691), + [aux_sym_preproc_elif_token1] = ACTIONS(9689), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9691), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9691), + [anon_sym_LPAREN2] = ACTIONS(9691), + [anon_sym_DASH] = ACTIONS(9689), + [anon_sym_PLUS] = ACTIONS(9689), + [anon_sym_STAR] = ACTIONS(9689), + [anon_sym_SLASH] = ACTIONS(9689), + [anon_sym_PERCENT] = ACTIONS(9689), + [anon_sym_PIPE_PIPE] = ACTIONS(9691), + [anon_sym_AMP_AMP] = ACTIONS(9691), + [anon_sym_PIPE] = ACTIONS(9689), + [anon_sym_CARET] = ACTIONS(9689), + [anon_sym_AMP] = ACTIONS(9689), + [anon_sym_EQ_EQ] = ACTIONS(9691), + [anon_sym_BANG_EQ] = ACTIONS(9691), + [anon_sym_GT] = ACTIONS(9689), + [anon_sym_GT_EQ] = ACTIONS(9691), + [anon_sym_LT_EQ] = ACTIONS(9689), + [anon_sym_LT] = ACTIONS(9689), + [anon_sym_LT_LT] = ACTIONS(9689), + [anon_sym_GT_GT] = ACTIONS(9689), + [anon_sym_SEMI] = ACTIONS(9691), + [anon_sym___attribute__] = ACTIONS(9689), + [anon_sym___attribute] = ACTIONS(9689), + [anon_sym_COLON] = ACTIONS(9689), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9691), + [anon_sym_LBRACE] = ACTIONS(9691), + [anon_sym_RBRACE] = ACTIONS(9691), + [anon_sym_LBRACK] = ACTIONS(9691), + [anon_sym_EQ] = ACTIONS(9689), + [anon_sym_QMARK] = ACTIONS(9691), + [anon_sym_STAR_EQ] = ACTIONS(9691), + [anon_sym_SLASH_EQ] = ACTIONS(9691), + [anon_sym_PERCENT_EQ] = ACTIONS(9691), + [anon_sym_PLUS_EQ] = ACTIONS(9691), + [anon_sym_DASH_EQ] = ACTIONS(9691), + [anon_sym_LT_LT_EQ] = ACTIONS(9691), + [anon_sym_GT_GT_EQ] = ACTIONS(9691), + [anon_sym_AMP_EQ] = ACTIONS(9691), + [anon_sym_CARET_EQ] = ACTIONS(9691), + [anon_sym_PIPE_EQ] = ACTIONS(9691), + [anon_sym_and_eq] = ACTIONS(9689), + [anon_sym_or_eq] = ACTIONS(9689), + [anon_sym_xor_eq] = ACTIONS(9689), + [anon_sym_LT_EQ_GT] = ACTIONS(9691), + [anon_sym_or] = ACTIONS(9689), + [anon_sym_and] = ACTIONS(9689), + [anon_sym_bitor] = ACTIONS(9689), + [anon_sym_xor] = ACTIONS(9689), + [anon_sym_bitand] = ACTIONS(9689), + [anon_sym_not_eq] = ACTIONS(9689), + [anon_sym_DASH_DASH] = ACTIONS(9691), + [anon_sym_PLUS_PLUS] = ACTIONS(9691), + [anon_sym_DOT] = ACTIONS(9689), + [anon_sym_DOT_STAR] = ACTIONS(9691), + [anon_sym_DASH_GT] = ACTIONS(9691), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9691), + }, + [STATE(3799)] = { + [sym_type_qualifier] = STATE(3659), + [sym_alignas_qualifier] = STATE(3877), + [aux_sym__type_definition_type_repeat1] = STATE(3659), + [aux_sym_sized_type_specifier_repeat1] = STATE(3303), + [sym_identifier] = ACTIONS(9164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), + [anon_sym_COMMA] = ACTIONS(7205), + [anon_sym_LPAREN2] = ACTIONS(7205), + [anon_sym_DASH] = ACTIONS(7207), + [anon_sym_PLUS] = ACTIONS(7207), + [anon_sym_STAR] = ACTIONS(7205), + [anon_sym_SLASH] = ACTIONS(7207), + [anon_sym_PERCENT] = ACTIONS(7205), + [anon_sym_PIPE_PIPE] = ACTIONS(7205), + [anon_sym_AMP_AMP] = ACTIONS(7205), + [anon_sym_PIPE] = ACTIONS(7207), + [anon_sym_CARET] = ACTIONS(7205), + [anon_sym_AMP] = ACTIONS(7207), + [anon_sym_EQ_EQ] = ACTIONS(7205), + [anon_sym_BANG_EQ] = ACTIONS(7205), + [anon_sym_GT] = ACTIONS(7207), + [anon_sym_GT_EQ] = ACTIONS(7205), + [anon_sym_LT_EQ] = ACTIONS(7207), + [anon_sym_LT] = ACTIONS(7207), + [anon_sym_LT_LT] = ACTIONS(7205), + [anon_sym_GT_GT] = ACTIONS(7205), + [anon_sym___extension__] = ACTIONS(9589), + [anon_sym___attribute__] = ACTIONS(7207), + [anon_sym___attribute] = ACTIONS(7207), + [anon_sym_LBRACE] = ACTIONS(7205), + [anon_sym_signed] = ACTIONS(8864), + [anon_sym_unsigned] = ACTIONS(8864), + [anon_sym_long] = ACTIONS(8864), + [anon_sym_short] = ACTIONS(8864), + [anon_sym_LBRACK] = ACTIONS(7205), + [anon_sym_RBRACK] = ACTIONS(7205), + [anon_sym_const] = ACTIONS(9589), + [anon_sym_constexpr] = ACTIONS(9589), + [anon_sym_volatile] = ACTIONS(9589), + [anon_sym_restrict] = ACTIONS(9589), + [anon_sym___restrict__] = ACTIONS(9589), + [anon_sym__Atomic] = ACTIONS(9589), + [anon_sym__Noreturn] = ACTIONS(9589), + [anon_sym_noreturn] = ACTIONS(9589), + [anon_sym__Nonnull] = ACTIONS(9589), + [anon_sym_mutable] = ACTIONS(9589), + [anon_sym_constinit] = ACTIONS(9589), + [anon_sym_consteval] = ACTIONS(9589), + [anon_sym_alignas] = ACTIONS(9593), + [anon_sym__Alignas] = ACTIONS(9593), + [sym_primitive_type] = ACTIONS(8866), + [anon_sym_QMARK] = ACTIONS(7205), + [anon_sym_LT_EQ_GT] = ACTIONS(7205), + [anon_sym_or] = ACTIONS(7207), + [anon_sym_and] = ACTIONS(7207), + [anon_sym_bitor] = ACTIONS(7207), + [anon_sym_xor] = ACTIONS(7207), + [anon_sym_bitand] = ACTIONS(7207), + [anon_sym_not_eq] = ACTIONS(7207), + [anon_sym_DASH_DASH] = ACTIONS(7205), + [anon_sym_PLUS_PLUS] = ACTIONS(7205), + [anon_sym_DOT] = ACTIONS(7207), + [anon_sym_DOT_STAR] = ACTIONS(7205), + [anon_sym_DASH_GT] = ACTIONS(7205), + [sym_comment] = ACTIONS(3), + }, + [STATE(3800)] = { + [sym_template_argument_list] = STATE(2992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), + [anon_sym_COMMA] = ACTIONS(7090), + [anon_sym_RPAREN] = ACTIONS(7090), + [anon_sym_LPAREN2] = ACTIONS(7090), + [anon_sym_DASH] = ACTIONS(7085), + [anon_sym_PLUS] = ACTIONS(7085), + [anon_sym_STAR] = ACTIONS(7090), + [anon_sym_SLASH] = ACTIONS(7085), + [anon_sym_PERCENT] = ACTIONS(7090), + [anon_sym_PIPE_PIPE] = ACTIONS(7090), + [anon_sym_AMP_AMP] = ACTIONS(7090), + [anon_sym_PIPE] = ACTIONS(7085), + [anon_sym_CARET] = ACTIONS(7090), + [anon_sym_AMP] = ACTIONS(7085), + [anon_sym_EQ_EQ] = ACTIONS(7090), + [anon_sym_BANG_EQ] = ACTIONS(7090), + [anon_sym_GT] = ACTIONS(7085), + [anon_sym_GT_EQ] = ACTIONS(7090), + [anon_sym_LT_EQ] = ACTIONS(7085), + [anon_sym_LT] = ACTIONS(8695), + [anon_sym_LT_LT] = ACTIONS(7090), + [anon_sym_GT_GT] = ACTIONS(7090), + [anon_sym_SEMI] = ACTIONS(7090), + [anon_sym___extension__] = ACTIONS(7090), + [anon_sym___attribute__] = ACTIONS(7090), + [anon_sym___attribute] = ACTIONS(7085), + [anon_sym_COLON] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7087), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7090), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_RBRACE] = ACTIONS(7090), + [anon_sym_LBRACK] = ACTIONS(7090), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7090), + [anon_sym_volatile] = ACTIONS(7090), + [anon_sym_restrict] = ACTIONS(7090), + [anon_sym___restrict__] = ACTIONS(7090), + [anon_sym__Atomic] = ACTIONS(7090), + [anon_sym__Noreturn] = ACTIONS(7090), + [anon_sym_noreturn] = ACTIONS(7090), + [anon_sym__Nonnull] = ACTIONS(7090), + [anon_sym_mutable] = ACTIONS(7090), + [anon_sym_constinit] = ACTIONS(7090), + [anon_sym_consteval] = ACTIONS(7090), + [anon_sym_alignas] = ACTIONS(7090), + [anon_sym__Alignas] = ACTIONS(7090), + [anon_sym_QMARK] = ACTIONS(7090), + [anon_sym_LT_EQ_GT] = ACTIONS(7090), + [anon_sym_or] = ACTIONS(7090), + [anon_sym_and] = ACTIONS(7090), + [anon_sym_bitor] = ACTIONS(7090), + [anon_sym_xor] = ACTIONS(7090), + [anon_sym_bitand] = ACTIONS(7090), + [anon_sym_not_eq] = ACTIONS(7090), + [anon_sym_DASH_DASH] = ACTIONS(7090), + [anon_sym_PLUS_PLUS] = ACTIONS(7090), + [anon_sym_DOT] = ACTIONS(7085), + [anon_sym_DOT_STAR] = ACTIONS(7090), + [anon_sym_DASH_GT] = ACTIONS(7090), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7090), + [anon_sym_override] = ACTIONS(7090), + [anon_sym_requires] = ACTIONS(7090), + [anon_sym_COLON_RBRACK] = ACTIONS(7090), + }, + [STATE(3801)] = { + [sym__abstract_declarator] = STATE(6551), + [sym_abstract_parenthesized_declarator] = STATE(5347), + [sym_abstract_pointer_declarator] = STATE(5347), + [sym_abstract_function_declarator] = STATE(5347), + [sym_abstract_array_declarator] = STATE(5347), + [sym_type_qualifier] = STATE(3774), + [sym_alignas_qualifier] = STATE(2726), + [sym_parameter_list] = STATE(2274), + [sym_abstract_reference_declarator] = STATE(5347), + [sym__function_declarator_seq] = STATE(5348), + [aux_sym__type_definition_type_repeat1] = STATE(3774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), + [anon_sym_COMMA] = ACTIONS(7391), + [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_DASH] = ACTIONS(7393), + [anon_sym_PLUS] = ACTIONS(7393), + [anon_sym_STAR] = ACTIONS(8677), + [anon_sym_SLASH] = ACTIONS(7393), + [anon_sym_PERCENT] = ACTIONS(7391), + [anon_sym_PIPE_PIPE] = ACTIONS(7391), + [anon_sym_AMP_AMP] = ACTIONS(8679), + [anon_sym_PIPE] = ACTIONS(7393), + [anon_sym_CARET] = ACTIONS(7391), + [anon_sym_AMP] = ACTIONS(8681), + [anon_sym_EQ_EQ] = ACTIONS(7391), + [anon_sym_BANG_EQ] = ACTIONS(7391), + [anon_sym_GT] = ACTIONS(7393), + [anon_sym_GT_EQ] = ACTIONS(7391), + [anon_sym_LT_EQ] = ACTIONS(7393), + [anon_sym_LT] = ACTIONS(7393), + [anon_sym_LT_LT] = ACTIONS(7391), + [anon_sym_GT_GT] = ACTIONS(7391), + [anon_sym_SEMI] = ACTIONS(7391), + [anon_sym___extension__] = ACTIONS(8117), + [anon_sym___attribute__] = ACTIONS(7391), + [anon_sym___attribute] = ACTIONS(7393), + [anon_sym_LBRACK] = ACTIONS(8098), + [anon_sym_const] = ACTIONS(8123), + [anon_sym_constexpr] = ACTIONS(8117), + [anon_sym_volatile] = ACTIONS(8117), + [anon_sym_restrict] = ACTIONS(8117), + [anon_sym___restrict__] = ACTIONS(8117), + [anon_sym__Atomic] = ACTIONS(8117), + [anon_sym__Noreturn] = ACTIONS(8117), + [anon_sym_noreturn] = ACTIONS(8117), + [anon_sym__Nonnull] = ACTIONS(8117), + [anon_sym_mutable] = ACTIONS(8117), + [anon_sym_constinit] = ACTIONS(8117), + [anon_sym_consteval] = ACTIONS(8117), + [anon_sym_alignas] = ACTIONS(8125), + [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_QMARK] = ACTIONS(7391), + [anon_sym_LT_EQ_GT] = ACTIONS(7391), + [anon_sym_or] = ACTIONS(7391), + [anon_sym_and] = ACTIONS(7391), + [anon_sym_bitor] = ACTIONS(7391), + [anon_sym_xor] = ACTIONS(7391), + [anon_sym_bitand] = ACTIONS(7391), + [anon_sym_not_eq] = ACTIONS(7391), + [anon_sym_DASH_DASH] = ACTIONS(7391), + [anon_sym_PLUS_PLUS] = ACTIONS(7391), + [anon_sym_DOT] = ACTIONS(7393), + [anon_sym_DOT_STAR] = ACTIONS(7391), + [anon_sym_DASH_GT] = ACTIONS(7391), + [sym_comment] = ACTIONS(3), + }, + [STATE(3802)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3766), + [sym_identifier] = ACTIONS(6999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), + [anon_sym_COMMA] = ACTIONS(7525), + [anon_sym_LPAREN2] = ACTIONS(7525), + [anon_sym_DASH] = ACTIONS(7528), + [anon_sym_PLUS] = ACTIONS(7528), + [anon_sym_STAR] = ACTIONS(7525), + [anon_sym_SLASH] = ACTIONS(7528), + [anon_sym_PERCENT] = ACTIONS(7525), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_AMP_AMP] = ACTIONS(7525), + [anon_sym_PIPE] = ACTIONS(7528), + [anon_sym_CARET] = ACTIONS(7525), + [anon_sym_AMP] = ACTIONS(7528), + [anon_sym_EQ_EQ] = ACTIONS(7525), + [anon_sym_BANG_EQ] = ACTIONS(7525), + [anon_sym_GT] = ACTIONS(7528), + [anon_sym_GT_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7528), + [anon_sym_LT] = ACTIONS(7528), + [anon_sym_LT_LT] = ACTIONS(7525), + [anon_sym_GT_GT] = ACTIONS(7525), + [anon_sym___extension__] = ACTIONS(7528), + [anon_sym___attribute__] = ACTIONS(7528), + [anon_sym___attribute] = ACTIONS(7528), + [anon_sym_LBRACE] = ACTIONS(7525), + [anon_sym_signed] = ACTIONS(9623), + [anon_sym_unsigned] = ACTIONS(9623), + [anon_sym_long] = ACTIONS(9623), + [anon_sym_short] = ACTIONS(9623), + [anon_sym_LBRACK] = ACTIONS(7525), + [anon_sym_RBRACK] = ACTIONS(7525), + [anon_sym_const] = ACTIONS(7528), + [anon_sym_constexpr] = ACTIONS(7528), + [anon_sym_volatile] = ACTIONS(7528), + [anon_sym_restrict] = ACTIONS(7528), + [anon_sym___restrict__] = ACTIONS(7528), + [anon_sym__Atomic] = ACTIONS(7528), + [anon_sym__Noreturn] = ACTIONS(7528), + [anon_sym_noreturn] = ACTIONS(7528), + [anon_sym__Nonnull] = ACTIONS(7528), + [anon_sym_mutable] = ACTIONS(7528), + [anon_sym_constinit] = ACTIONS(7528), + [anon_sym_consteval] = ACTIONS(7528), + [anon_sym_alignas] = ACTIONS(7528), + [anon_sym__Alignas] = ACTIONS(7528), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7525), + [anon_sym_LT_EQ_GT] = ACTIONS(7525), + [anon_sym_or] = ACTIONS(7528), + [anon_sym_and] = ACTIONS(7528), + [anon_sym_bitor] = ACTIONS(7528), + [anon_sym_xor] = ACTIONS(7528), + [anon_sym_bitand] = ACTIONS(7528), + [anon_sym_not_eq] = ACTIONS(7528), + [anon_sym_DASH_DASH] = ACTIONS(7525), + [anon_sym_PLUS_PLUS] = ACTIONS(7525), + [anon_sym_DOT] = ACTIONS(7528), + [anon_sym_DOT_STAR] = ACTIONS(7525), + [anon_sym_DASH_GT] = ACTIONS(7525), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7528), + [anon_sym_override] = ACTIONS(7528), + [anon_sym_requires] = ACTIONS(7528), + }, + [STATE(3803)] = { + [sym_template_argument_list] = STATE(2938), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5657), + [anon_sym_COMMA] = ACTIONS(5657), + [anon_sym_RPAREN] = ACTIONS(5657), + [anon_sym_LPAREN2] = ACTIONS(5657), + [anon_sym_DASH] = ACTIONS(7371), + [anon_sym_PLUS] = ACTIONS(7371), + [anon_sym_STAR] = ACTIONS(5657), + [anon_sym_SLASH] = ACTIONS(7371), + [anon_sym_PERCENT] = ACTIONS(5657), + [anon_sym_PIPE_PIPE] = ACTIONS(5657), + [anon_sym_AMP_AMP] = ACTIONS(5657), + [anon_sym_PIPE] = ACTIONS(7371), + [anon_sym_CARET] = ACTIONS(5657), + [anon_sym_AMP] = ACTIONS(7371), + [anon_sym_EQ_EQ] = ACTIONS(5657), + [anon_sym_BANG_EQ] = ACTIONS(5657), + [anon_sym_GT] = ACTIONS(7371), + [anon_sym_GT_EQ] = ACTIONS(5657), + [anon_sym_LT_EQ] = ACTIONS(7371), + [anon_sym_LT] = ACTIONS(8695), + [anon_sym_LT_LT] = ACTIONS(5657), + [anon_sym_GT_GT] = ACTIONS(5657), + [anon_sym_SEMI] = ACTIONS(5657), + [anon_sym___extension__] = ACTIONS(5657), + [anon_sym___attribute__] = ACTIONS(5657), + [anon_sym___attribute] = ACTIONS(7371), + [anon_sym_COLON] = ACTIONS(7371), + [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5657), + [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_RBRACE] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5657), + [anon_sym_const] = ACTIONS(7371), + [anon_sym_constexpr] = ACTIONS(5657), + [anon_sym_volatile] = ACTIONS(5657), + [anon_sym_restrict] = ACTIONS(5657), + [anon_sym___restrict__] = ACTIONS(5657), + [anon_sym__Atomic] = ACTIONS(5657), + [anon_sym__Noreturn] = ACTIONS(5657), + [anon_sym_noreturn] = ACTIONS(5657), + [anon_sym__Nonnull] = ACTIONS(5657), + [anon_sym_mutable] = ACTIONS(5657), + [anon_sym_constinit] = ACTIONS(5657), + [anon_sym_consteval] = ACTIONS(5657), + [anon_sym_alignas] = ACTIONS(5657), + [anon_sym__Alignas] = ACTIONS(5657), + [anon_sym_QMARK] = ACTIONS(5657), + [anon_sym_LT_EQ_GT] = ACTIONS(5657), + [anon_sym_or] = ACTIONS(5657), + [anon_sym_and] = ACTIONS(5657), + [anon_sym_bitor] = ACTIONS(5657), + [anon_sym_xor] = ACTIONS(5657), + [anon_sym_bitand] = ACTIONS(5657), + [anon_sym_not_eq] = ACTIONS(5657), + [anon_sym_DASH_DASH] = ACTIONS(5657), + [anon_sym_PLUS_PLUS] = ACTIONS(5657), + [anon_sym_DOT] = ACTIONS(7371), + [anon_sym_DOT_STAR] = ACTIONS(5657), + [anon_sym_DASH_GT] = ACTIONS(5657), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(5657), + [anon_sym_override] = ACTIONS(5657), + [anon_sym_requires] = ACTIONS(5657), + [anon_sym_COLON_RBRACK] = ACTIONS(5657), + }, + [STATE(3804)] = { + [sym_identifier] = ACTIONS(8564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8559), + [anon_sym_COMMA] = ACTIONS(8559), + [anon_sym_RPAREN] = ACTIONS(8559), + [aux_sym_preproc_if_token2] = ACTIONS(8559), + [aux_sym_preproc_else_token1] = ACTIONS(8559), + [aux_sym_preproc_elif_token1] = ACTIONS(8564), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8559), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8559), + [anon_sym_LPAREN2] = ACTIONS(8559), + [anon_sym_DASH] = ACTIONS(8564), + [anon_sym_PLUS] = ACTIONS(8564), + [anon_sym_STAR] = ACTIONS(8564), + [anon_sym_SLASH] = ACTIONS(8564), + [anon_sym_PERCENT] = ACTIONS(8564), + [anon_sym_PIPE_PIPE] = ACTIONS(8559), + [anon_sym_AMP_AMP] = ACTIONS(8559), + [anon_sym_PIPE] = ACTIONS(8564), + [anon_sym_CARET] = ACTIONS(8564), + [anon_sym_AMP] = ACTIONS(8564), + [anon_sym_EQ_EQ] = ACTIONS(8559), + [anon_sym_BANG_EQ] = ACTIONS(8559), + [anon_sym_GT] = ACTIONS(8564), + [anon_sym_GT_EQ] = ACTIONS(8559), + [anon_sym_LT_EQ] = ACTIONS(8564), + [anon_sym_LT] = ACTIONS(8564), + [anon_sym_LT_LT] = ACTIONS(8564), + [anon_sym_GT_GT] = ACTIONS(8564), + [anon_sym_SEMI] = ACTIONS(8559), + [anon_sym___attribute__] = ACTIONS(8564), + [anon_sym___attribute] = ACTIONS(8564), + [anon_sym_COLON] = ACTIONS(8564), + [anon_sym_COLON_COLON] = ACTIONS(8559), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8559), + [anon_sym_RBRACE] = ACTIONS(8559), + [anon_sym_LBRACK] = ACTIONS(8559), + [anon_sym_EQ] = ACTIONS(8564), + [anon_sym_QMARK] = ACTIONS(8559), + [anon_sym_STAR_EQ] = ACTIONS(8559), + [anon_sym_SLASH_EQ] = ACTIONS(8559), + [anon_sym_PERCENT_EQ] = ACTIONS(8559), + [anon_sym_PLUS_EQ] = ACTIONS(8559), + [anon_sym_DASH_EQ] = ACTIONS(8559), + [anon_sym_LT_LT_EQ] = ACTIONS(8559), + [anon_sym_GT_GT_EQ] = ACTIONS(8559), + [anon_sym_AMP_EQ] = ACTIONS(8559), + [anon_sym_CARET_EQ] = ACTIONS(8559), + [anon_sym_PIPE_EQ] = ACTIONS(8559), + [anon_sym_and_eq] = ACTIONS(8564), + [anon_sym_or_eq] = ACTIONS(8564), + [anon_sym_xor_eq] = ACTIONS(8564), + [anon_sym_LT_EQ_GT] = ACTIONS(8559), + [anon_sym_or] = ACTIONS(8564), + [anon_sym_and] = ACTIONS(8564), + [anon_sym_bitor] = ACTIONS(8564), + [anon_sym_xor] = ACTIONS(8564), + [anon_sym_bitand] = ACTIONS(8564), + [anon_sym_not_eq] = ACTIONS(8564), + [anon_sym_DASH_DASH] = ACTIONS(8559), + [anon_sym_PLUS_PLUS] = ACTIONS(8559), + [anon_sym_DOT] = ACTIONS(8564), + [anon_sym_DOT_STAR] = ACTIONS(8559), + [anon_sym_DASH_GT] = ACTIONS(8559), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(8559), + }, + [STATE(3805)] = { + [sym_identifier] = ACTIONS(9693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9695), + [anon_sym_COMMA] = ACTIONS(9695), + [anon_sym_RPAREN] = ACTIONS(9695), + [aux_sym_preproc_if_token2] = ACTIONS(9695), + [aux_sym_preproc_else_token1] = ACTIONS(9695), + [aux_sym_preproc_elif_token1] = ACTIONS(9693), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9695), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9695), + [anon_sym_LPAREN2] = ACTIONS(9695), + [anon_sym_DASH] = ACTIONS(9693), + [anon_sym_PLUS] = ACTIONS(9693), + [anon_sym_STAR] = ACTIONS(9693), + [anon_sym_SLASH] = ACTIONS(9693), + [anon_sym_PERCENT] = ACTIONS(9693), + [anon_sym_PIPE_PIPE] = ACTIONS(9695), + [anon_sym_AMP_AMP] = ACTIONS(9695), + [anon_sym_PIPE] = ACTIONS(9693), + [anon_sym_CARET] = ACTIONS(9693), + [anon_sym_AMP] = ACTIONS(9693), + [anon_sym_EQ_EQ] = ACTIONS(9695), + [anon_sym_BANG_EQ] = ACTIONS(9695), + [anon_sym_GT] = ACTIONS(9693), + [anon_sym_GT_EQ] = ACTIONS(9695), + [anon_sym_LT_EQ] = ACTIONS(9693), + [anon_sym_LT] = ACTIONS(9693), + [anon_sym_LT_LT] = ACTIONS(9693), + [anon_sym_GT_GT] = ACTIONS(9693), + [anon_sym_SEMI] = ACTIONS(9695), + [anon_sym___attribute__] = ACTIONS(9693), + [anon_sym___attribute] = ACTIONS(9693), + [anon_sym_COLON] = ACTIONS(9693), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9695), + [anon_sym_LBRACE] = ACTIONS(9695), + [anon_sym_RBRACE] = ACTIONS(9695), + [anon_sym_LBRACK] = ACTIONS(9695), + [anon_sym_EQ] = ACTIONS(9693), + [anon_sym_QMARK] = ACTIONS(9695), + [anon_sym_STAR_EQ] = ACTIONS(9695), + [anon_sym_SLASH_EQ] = ACTIONS(9695), + [anon_sym_PERCENT_EQ] = ACTIONS(9695), + [anon_sym_PLUS_EQ] = ACTIONS(9695), + [anon_sym_DASH_EQ] = ACTIONS(9695), + [anon_sym_LT_LT_EQ] = ACTIONS(9695), + [anon_sym_GT_GT_EQ] = ACTIONS(9695), + [anon_sym_AMP_EQ] = ACTIONS(9695), + [anon_sym_CARET_EQ] = ACTIONS(9695), + [anon_sym_PIPE_EQ] = ACTIONS(9695), + [anon_sym_and_eq] = ACTIONS(9693), + [anon_sym_or_eq] = ACTIONS(9693), + [anon_sym_xor_eq] = ACTIONS(9693), + [anon_sym_LT_EQ_GT] = ACTIONS(9695), + [anon_sym_or] = ACTIONS(9693), + [anon_sym_and] = ACTIONS(9693), + [anon_sym_bitor] = ACTIONS(9693), + [anon_sym_xor] = ACTIONS(9693), + [anon_sym_bitand] = ACTIONS(9693), + [anon_sym_not_eq] = ACTIONS(9693), + [anon_sym_DASH_DASH] = ACTIONS(9695), + [anon_sym_PLUS_PLUS] = ACTIONS(9695), + [anon_sym_DOT] = ACTIONS(9693), + [anon_sym_DOT_STAR] = ACTIONS(9695), + [anon_sym_DASH_GT] = ACTIONS(9695), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9695), + }, + [STATE(3806)] = { + [sym_identifier] = ACTIONS(8750), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8752), + [anon_sym_COMMA] = ACTIONS(8752), + [anon_sym_LPAREN2] = ACTIONS(8752), + [anon_sym_DASH] = ACTIONS(8750), + [anon_sym_PLUS] = ACTIONS(8750), + [anon_sym_STAR] = ACTIONS(8750), + [anon_sym_SLASH] = ACTIONS(8750), + [anon_sym_PERCENT] = ACTIONS(8750), + [anon_sym_PIPE_PIPE] = ACTIONS(8752), + [anon_sym_AMP_AMP] = ACTIONS(8752), + [anon_sym_PIPE] = ACTIONS(8750), + [anon_sym_CARET] = ACTIONS(8750), + [anon_sym_AMP] = ACTIONS(8750), + [anon_sym_EQ_EQ] = ACTIONS(8752), + [anon_sym_BANG_EQ] = ACTIONS(8752), + [anon_sym_GT] = ACTIONS(8750), + [anon_sym_GT_EQ] = ACTIONS(8752), + [anon_sym_LT_EQ] = ACTIONS(8750), + [anon_sym_LT] = ACTIONS(8750), + [anon_sym_LT_LT] = ACTIONS(8750), + [anon_sym_GT_GT] = ACTIONS(8750), + [anon_sym_SEMI] = ACTIONS(8752), + [anon_sym___attribute__] = ACTIONS(8750), + [anon_sym___attribute] = ACTIONS(8750), + [anon_sym_LBRACK] = ACTIONS(8752), + [anon_sym_EQ] = ACTIONS(8750), + [anon_sym_QMARK] = ACTIONS(8752), + [anon_sym_STAR_EQ] = ACTIONS(8752), + [anon_sym_SLASH_EQ] = ACTIONS(8752), + [anon_sym_PERCENT_EQ] = ACTIONS(8752), + [anon_sym_PLUS_EQ] = ACTIONS(8752), + [anon_sym_DASH_EQ] = ACTIONS(8752), + [anon_sym_LT_LT_EQ] = ACTIONS(8752), + [anon_sym_GT_GT_EQ] = ACTIONS(8752), + [anon_sym_AMP_EQ] = ACTIONS(8752), + [anon_sym_CARET_EQ] = ACTIONS(8752), + [anon_sym_PIPE_EQ] = ACTIONS(8752), + [anon_sym_and_eq] = ACTIONS(8750), + [anon_sym_or_eq] = ACTIONS(8750), + [anon_sym_xor_eq] = ACTIONS(8750), + [anon_sym_LT_EQ_GT] = ACTIONS(8752), + [anon_sym_or] = ACTIONS(8750), + [anon_sym_and] = ACTIONS(8750), + [anon_sym_bitor] = ACTIONS(8750), + [anon_sym_xor] = ACTIONS(8750), + [anon_sym_bitand] = ACTIONS(8750), + [anon_sym_not_eq] = ACTIONS(8750), + [anon_sym_DASH_DASH] = ACTIONS(8752), + [anon_sym_PLUS_PLUS] = ACTIONS(8752), + [anon_sym_DOT] = ACTIONS(8750), + [anon_sym_DOT_STAR] = ACTIONS(8752), + [anon_sym_DASH_GT] = ACTIONS(8752), + [anon_sym_L_DQUOTE] = ACTIONS(8752), + [anon_sym_u_DQUOTE] = ACTIONS(8752), + [anon_sym_U_DQUOTE] = ACTIONS(8752), + [anon_sym_u8_DQUOTE] = ACTIONS(8752), + [anon_sym_DQUOTE] = ACTIONS(8752), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8752), + [anon_sym_LR_DQUOTE] = ACTIONS(8752), + [anon_sym_uR_DQUOTE] = ACTIONS(8752), + [anon_sym_UR_DQUOTE] = ACTIONS(8752), + [anon_sym_u8R_DQUOTE] = ACTIONS(8752), + [sym_literal_suffix] = ACTIONS(8750), + }, + [STATE(3807)] = { + [sym_identifier] = ACTIONS(8665), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8667), + [anon_sym_COMMA] = ACTIONS(8667), + [anon_sym_LPAREN2] = ACTIONS(8667), + [anon_sym_DASH] = ACTIONS(8665), + [anon_sym_PLUS] = ACTIONS(8665), + [anon_sym_STAR] = ACTIONS(8665), + [anon_sym_SLASH] = ACTIONS(8665), + [anon_sym_PERCENT] = ACTIONS(8665), + [anon_sym_PIPE_PIPE] = ACTIONS(8667), + [anon_sym_AMP_AMP] = ACTIONS(8667), + [anon_sym_PIPE] = ACTIONS(8665), + [anon_sym_CARET] = ACTIONS(8665), + [anon_sym_AMP] = ACTIONS(8665), + [anon_sym_EQ_EQ] = ACTIONS(8667), + [anon_sym_BANG_EQ] = ACTIONS(8667), + [anon_sym_GT] = ACTIONS(8665), + [anon_sym_GT_EQ] = ACTIONS(8667), + [anon_sym_LT_EQ] = ACTIONS(8665), + [anon_sym_LT] = ACTIONS(8665), + [anon_sym_LT_LT] = ACTIONS(8665), + [anon_sym_GT_GT] = ACTIONS(8665), + [anon_sym_SEMI] = ACTIONS(8667), + [anon_sym___attribute__] = ACTIONS(8665), + [anon_sym___attribute] = ACTIONS(8665), + [anon_sym_LBRACK] = ACTIONS(8667), + [anon_sym_EQ] = ACTIONS(8665), + [anon_sym_QMARK] = ACTIONS(8667), + [anon_sym_STAR_EQ] = ACTIONS(8667), + [anon_sym_SLASH_EQ] = ACTIONS(8667), + [anon_sym_PERCENT_EQ] = ACTIONS(8667), + [anon_sym_PLUS_EQ] = ACTIONS(8667), + [anon_sym_DASH_EQ] = ACTIONS(8667), + [anon_sym_LT_LT_EQ] = ACTIONS(8667), + [anon_sym_GT_GT_EQ] = ACTIONS(8667), + [anon_sym_AMP_EQ] = ACTIONS(8667), + [anon_sym_CARET_EQ] = ACTIONS(8667), + [anon_sym_PIPE_EQ] = ACTIONS(8667), + [anon_sym_and_eq] = ACTIONS(8665), + [anon_sym_or_eq] = ACTIONS(8665), + [anon_sym_xor_eq] = ACTIONS(8665), + [anon_sym_LT_EQ_GT] = ACTIONS(8667), + [anon_sym_or] = ACTIONS(8665), + [anon_sym_and] = ACTIONS(8665), + [anon_sym_bitor] = ACTIONS(8665), + [anon_sym_xor] = ACTIONS(8665), + [anon_sym_bitand] = ACTIONS(8665), + [anon_sym_not_eq] = ACTIONS(8665), + [anon_sym_DASH_DASH] = ACTIONS(8667), + [anon_sym_PLUS_PLUS] = ACTIONS(8667), + [anon_sym_DOT] = ACTIONS(8665), + [anon_sym_DOT_STAR] = ACTIONS(8667), + [anon_sym_DASH_GT] = ACTIONS(8667), + [anon_sym_L_DQUOTE] = ACTIONS(8667), + [anon_sym_u_DQUOTE] = ACTIONS(8667), + [anon_sym_U_DQUOTE] = ACTIONS(8667), + [anon_sym_u8_DQUOTE] = ACTIONS(8667), + [anon_sym_DQUOTE] = ACTIONS(8667), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8667), + [anon_sym_LR_DQUOTE] = ACTIONS(8667), + [anon_sym_uR_DQUOTE] = ACTIONS(8667), + [anon_sym_UR_DQUOTE] = ACTIONS(8667), + [anon_sym_u8R_DQUOTE] = ACTIONS(8667), + [sym_literal_suffix] = ACTIONS(8665), + }, + [STATE(3808)] = { + [sym_identifier] = ACTIONS(7085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), + [anon_sym_COMMA] = ACTIONS(7090), + [anon_sym_RPAREN] = ACTIONS(7090), + [anon_sym_LPAREN2] = ACTIONS(7090), + [anon_sym_TILDE] = ACTIONS(7090), + [anon_sym_STAR] = ACTIONS(7090), + [anon_sym_PIPE_PIPE] = ACTIONS(7090), + [anon_sym_AMP_AMP] = ACTIONS(7090), + [anon_sym_AMP] = ACTIONS(7085), + [anon_sym_SEMI] = ACTIONS(7090), + [anon_sym___extension__] = ACTIONS(7085), + [anon_sym_virtual] = ACTIONS(7085), + [anon_sym_extern] = ACTIONS(7085), + [anon_sym___attribute__] = ACTIONS(7085), + [anon_sym___attribute] = ACTIONS(7085), + [anon_sym_COLON] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7090), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7090), + [anon_sym___declspec] = ACTIONS(7085), + [anon_sym___based] = ACTIONS(7085), + [anon_sym___cdecl] = ACTIONS(7085), + [anon_sym___clrcall] = ACTIONS(7085), + [anon_sym___stdcall] = ACTIONS(7085), + [anon_sym___fastcall] = ACTIONS(7085), + [anon_sym___thiscall] = ACTIONS(7085), + [anon_sym___vectorcall] = ACTIONS(7085), + [anon_sym_LBRACE] = ACTIONS(7090), + [anon_sym_LBRACK] = ACTIONS(7085), + [anon_sym_static] = ACTIONS(7085), + [anon_sym_EQ] = ACTIONS(7090), + [anon_sym_register] = ACTIONS(7085), + [anon_sym_inline] = ACTIONS(7085), + [anon_sym___inline] = ACTIONS(7085), + [anon_sym___inline__] = ACTIONS(7085), + [anon_sym___forceinline] = ACTIONS(7085), + [anon_sym_thread_local] = ACTIONS(7085), + [anon_sym___thread] = ACTIONS(7085), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7085), + [anon_sym_volatile] = ACTIONS(7085), + [anon_sym_restrict] = ACTIONS(7085), + [anon_sym___restrict__] = ACTIONS(7085), + [anon_sym__Atomic] = ACTIONS(7085), + [anon_sym__Noreturn] = ACTIONS(7085), + [anon_sym_noreturn] = ACTIONS(7085), + [anon_sym__Nonnull] = ACTIONS(7085), + [anon_sym_mutable] = ACTIONS(7085), + [anon_sym_constinit] = ACTIONS(7085), + [anon_sym_consteval] = ACTIONS(7085), + [anon_sym_alignas] = ACTIONS(7085), + [anon_sym__Alignas] = ACTIONS(7085), + [anon_sym_or] = ACTIONS(7085), + [anon_sym_and] = ACTIONS(7085), + [anon_sym_DASH_GT] = ACTIONS(7090), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7085), + [anon_sym_final] = ACTIONS(7085), + [anon_sym_override] = ACTIONS(7085), + [anon_sym_template] = ACTIONS(7085), + [anon_sym_GT2] = ACTIONS(7090), + [anon_sym_operator] = ACTIONS(7085), + [anon_sym_noexcept] = ACTIONS(7085), + [anon_sym_throw] = ACTIONS(7085), + [anon_sym_LBRACK_COLON] = ACTIONS(7090), + }, + [STATE(3809)] = { + [sym_identifier] = ACTIONS(9697), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9699), + [anon_sym_COMMA] = ACTIONS(9699), + [anon_sym_RPAREN] = ACTIONS(9699), + [aux_sym_preproc_if_token2] = ACTIONS(9699), + [aux_sym_preproc_else_token1] = ACTIONS(9699), + [aux_sym_preproc_elif_token1] = ACTIONS(9697), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9699), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9699), + [anon_sym_LPAREN2] = ACTIONS(9699), + [anon_sym_DASH] = ACTIONS(9697), + [anon_sym_PLUS] = ACTIONS(9697), + [anon_sym_STAR] = ACTIONS(9697), + [anon_sym_SLASH] = ACTIONS(9697), + [anon_sym_PERCENT] = ACTIONS(9697), + [anon_sym_PIPE_PIPE] = ACTIONS(9699), + [anon_sym_AMP_AMP] = ACTIONS(9699), + [anon_sym_PIPE] = ACTIONS(9697), + [anon_sym_CARET] = ACTIONS(9697), + [anon_sym_AMP] = ACTIONS(9697), + [anon_sym_EQ_EQ] = ACTIONS(9699), + [anon_sym_BANG_EQ] = ACTIONS(9699), + [anon_sym_GT] = ACTIONS(9697), + [anon_sym_GT_EQ] = ACTIONS(9699), + [anon_sym_LT_EQ] = ACTIONS(9697), + [anon_sym_LT] = ACTIONS(9697), + [anon_sym_LT_LT] = ACTIONS(9697), + [anon_sym_GT_GT] = ACTIONS(9697), + [anon_sym_SEMI] = ACTIONS(9699), + [anon_sym___attribute__] = ACTIONS(9697), + [anon_sym___attribute] = ACTIONS(9697), + [anon_sym_COLON] = ACTIONS(9697), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9699), + [anon_sym_RBRACE] = ACTIONS(9699), + [anon_sym_LBRACK] = ACTIONS(9697), + [anon_sym_EQ] = ACTIONS(9697), + [anon_sym_QMARK] = ACTIONS(9699), + [anon_sym_STAR_EQ] = ACTIONS(9699), + [anon_sym_SLASH_EQ] = ACTIONS(9699), + [anon_sym_PERCENT_EQ] = ACTIONS(9699), + [anon_sym_PLUS_EQ] = ACTIONS(9699), + [anon_sym_DASH_EQ] = ACTIONS(9699), + [anon_sym_LT_LT_EQ] = ACTIONS(9699), + [anon_sym_GT_GT_EQ] = ACTIONS(9699), + [anon_sym_AMP_EQ] = ACTIONS(9699), + [anon_sym_CARET_EQ] = ACTIONS(9699), + [anon_sym_PIPE_EQ] = ACTIONS(9699), + [anon_sym_and_eq] = ACTIONS(9697), + [anon_sym_or_eq] = ACTIONS(9697), + [anon_sym_xor_eq] = ACTIONS(9697), + [anon_sym_LT_EQ_GT] = ACTIONS(9699), + [anon_sym_or] = ACTIONS(9697), + [anon_sym_and] = ACTIONS(9697), + [anon_sym_bitor] = ACTIONS(9697), + [anon_sym_xor] = ACTIONS(9697), + [anon_sym_bitand] = ACTIONS(9697), + [anon_sym_not_eq] = ACTIONS(9697), + [anon_sym_DASH_DASH] = ACTIONS(9699), + [anon_sym_PLUS_PLUS] = ACTIONS(9699), + [anon_sym_DOT] = ACTIONS(9697), + [anon_sym_DOT_STAR] = ACTIONS(9699), + [anon_sym_DASH_GT] = ACTIONS(9699), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9699), + [anon_sym_LBRACK_RBRACK] = ACTIONS(9701), + }, + [STATE(3810)] = { + [sym_ms_based_modifier] = STATE(10837), + [sym__declarator] = STATE(8816), + [sym__abstract_declarator] = STATE(9063), + [sym_parenthesized_declarator] = STATE(8555), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_function_declarator] = STATE(8555), + [sym_abstract_function_declarator] = STATE(8596), + [sym_array_declarator] = STATE(8555), + [sym_abstract_array_declarator] = STATE(8596), + [sym_type_qualifier] = STATE(7086), + [sym_alignas_qualifier] = STATE(7511), + [sym_parameter_list] = STATE(5327), + [sym_decltype] = STATE(10768), + [sym_reference_declarator] = STATE(8555), + [sym_abstract_reference_declarator] = STATE(8596), + [sym_structured_binding_declarator] = STATE(8555), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7990), + [sym_qualified_identifier] = STATE(8555), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__type_definition_type_repeat1] = STATE(7086), + [sym_identifier] = ACTIONS(8546), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(8651), + [anon_sym_AMP_AMP] = ACTIONS(8653), + [anon_sym_AMP] = ACTIONS(8655), + [anon_sym___extension__] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(7347), + [anon_sym___attribute] = ACTIONS(7347), + [anon_sym_COLON_COLON] = ACTIONS(8554), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5627), + [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__Nonnull] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_GT2] = ACTIONS(7345), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), + }, + [STATE(3811)] = { + [sym_identifier] = ACTIONS(8657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8659), + [anon_sym_COMMA] = ACTIONS(8659), + [anon_sym_LPAREN2] = ACTIONS(8659), + [anon_sym_DASH] = ACTIONS(8657), + [anon_sym_PLUS] = ACTIONS(8657), + [anon_sym_STAR] = ACTIONS(8657), + [anon_sym_SLASH] = ACTIONS(8657), + [anon_sym_PERCENT] = ACTIONS(8657), + [anon_sym_PIPE_PIPE] = ACTIONS(8659), + [anon_sym_AMP_AMP] = ACTIONS(8659), + [anon_sym_PIPE] = ACTIONS(8657), + [anon_sym_CARET] = ACTIONS(8657), + [anon_sym_AMP] = ACTIONS(8657), + [anon_sym_EQ_EQ] = ACTIONS(8659), + [anon_sym_BANG_EQ] = ACTIONS(8659), + [anon_sym_GT] = ACTIONS(8657), + [anon_sym_GT_EQ] = ACTIONS(8659), + [anon_sym_LT_EQ] = ACTIONS(8657), + [anon_sym_LT] = ACTIONS(8657), + [anon_sym_LT_LT] = ACTIONS(8657), + [anon_sym_GT_GT] = ACTIONS(8657), + [anon_sym_SEMI] = ACTIONS(8659), + [anon_sym___attribute__] = ACTIONS(8657), + [anon_sym___attribute] = ACTIONS(8657), + [anon_sym_LBRACK] = ACTIONS(8659), + [anon_sym_EQ] = ACTIONS(8657), + [anon_sym_QMARK] = ACTIONS(8659), + [anon_sym_STAR_EQ] = ACTIONS(8659), + [anon_sym_SLASH_EQ] = ACTIONS(8659), + [anon_sym_PERCENT_EQ] = ACTIONS(8659), + [anon_sym_PLUS_EQ] = ACTIONS(8659), + [anon_sym_DASH_EQ] = ACTIONS(8659), + [anon_sym_LT_LT_EQ] = ACTIONS(8659), + [anon_sym_GT_GT_EQ] = ACTIONS(8659), + [anon_sym_AMP_EQ] = ACTIONS(8659), + [anon_sym_CARET_EQ] = ACTIONS(8659), + [anon_sym_PIPE_EQ] = ACTIONS(8659), + [anon_sym_and_eq] = ACTIONS(8657), + [anon_sym_or_eq] = ACTIONS(8657), + [anon_sym_xor_eq] = ACTIONS(8657), + [anon_sym_LT_EQ_GT] = ACTIONS(8659), + [anon_sym_or] = ACTIONS(8657), + [anon_sym_and] = ACTIONS(8657), + [anon_sym_bitor] = ACTIONS(8657), + [anon_sym_xor] = ACTIONS(8657), + [anon_sym_bitand] = ACTIONS(8657), + [anon_sym_not_eq] = ACTIONS(8657), + [anon_sym_DASH_DASH] = ACTIONS(8659), + [anon_sym_PLUS_PLUS] = ACTIONS(8659), + [anon_sym_DOT] = ACTIONS(8657), + [anon_sym_DOT_STAR] = ACTIONS(8659), + [anon_sym_DASH_GT] = ACTIONS(8659), + [anon_sym_L_DQUOTE] = ACTIONS(8659), + [anon_sym_u_DQUOTE] = ACTIONS(8659), + [anon_sym_U_DQUOTE] = ACTIONS(8659), + [anon_sym_u8_DQUOTE] = ACTIONS(8659), + [anon_sym_DQUOTE] = ACTIONS(8659), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8659), + [anon_sym_LR_DQUOTE] = ACTIONS(8659), + [anon_sym_uR_DQUOTE] = ACTIONS(8659), + [anon_sym_UR_DQUOTE] = ACTIONS(8659), + [anon_sym_u8R_DQUOTE] = ACTIONS(8659), + [sym_literal_suffix] = ACTIONS(8657), + }, + [STATE(3812)] = { + [sym_identifier] = ACTIONS(8697), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8699), + [anon_sym_COMMA] = ACTIONS(8699), + [anon_sym_LPAREN2] = ACTIONS(8699), + [anon_sym_DASH] = ACTIONS(8697), + [anon_sym_PLUS] = ACTIONS(8697), + [anon_sym_STAR] = ACTIONS(8697), + [anon_sym_SLASH] = ACTIONS(8697), + [anon_sym_PERCENT] = ACTIONS(8697), + [anon_sym_PIPE_PIPE] = ACTIONS(8699), + [anon_sym_AMP_AMP] = ACTIONS(8699), + [anon_sym_PIPE] = ACTIONS(8697), + [anon_sym_CARET] = ACTIONS(8697), + [anon_sym_AMP] = ACTIONS(8697), + [anon_sym_EQ_EQ] = ACTIONS(8699), + [anon_sym_BANG_EQ] = ACTIONS(8699), + [anon_sym_GT] = ACTIONS(8697), + [anon_sym_GT_EQ] = ACTIONS(8699), + [anon_sym_LT_EQ] = ACTIONS(8697), + [anon_sym_LT] = ACTIONS(8697), + [anon_sym_LT_LT] = ACTIONS(8697), + [anon_sym_GT_GT] = ACTIONS(8697), + [anon_sym_SEMI] = ACTIONS(8699), + [anon_sym___attribute__] = ACTIONS(8697), + [anon_sym___attribute] = ACTIONS(8697), + [anon_sym_LBRACK] = ACTIONS(8699), + [anon_sym_EQ] = ACTIONS(8697), + [anon_sym_QMARK] = ACTIONS(8699), + [anon_sym_STAR_EQ] = ACTIONS(8699), + [anon_sym_SLASH_EQ] = ACTIONS(8699), + [anon_sym_PERCENT_EQ] = ACTIONS(8699), + [anon_sym_PLUS_EQ] = ACTIONS(8699), + [anon_sym_DASH_EQ] = ACTIONS(8699), + [anon_sym_LT_LT_EQ] = ACTIONS(8699), + [anon_sym_GT_GT_EQ] = ACTIONS(8699), + [anon_sym_AMP_EQ] = ACTIONS(8699), + [anon_sym_CARET_EQ] = ACTIONS(8699), + [anon_sym_PIPE_EQ] = ACTIONS(8699), + [anon_sym_and_eq] = ACTIONS(8697), + [anon_sym_or_eq] = ACTIONS(8697), + [anon_sym_xor_eq] = ACTIONS(8697), + [anon_sym_LT_EQ_GT] = ACTIONS(8699), + [anon_sym_or] = ACTIONS(8697), + [anon_sym_and] = ACTIONS(8697), + [anon_sym_bitor] = ACTIONS(8697), + [anon_sym_xor] = ACTIONS(8697), + [anon_sym_bitand] = ACTIONS(8697), + [anon_sym_not_eq] = ACTIONS(8697), + [anon_sym_DASH_DASH] = ACTIONS(8699), + [anon_sym_PLUS_PLUS] = ACTIONS(8699), + [anon_sym_DOT] = ACTIONS(8697), + [anon_sym_DOT_STAR] = ACTIONS(8699), + [anon_sym_DASH_GT] = ACTIONS(8699), + [anon_sym_L_DQUOTE] = ACTIONS(8699), + [anon_sym_u_DQUOTE] = ACTIONS(8699), + [anon_sym_U_DQUOTE] = ACTIONS(8699), + [anon_sym_u8_DQUOTE] = ACTIONS(8699), + [anon_sym_DQUOTE] = ACTIONS(8699), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8699), + [anon_sym_LR_DQUOTE] = ACTIONS(8699), + [anon_sym_uR_DQUOTE] = ACTIONS(8699), + [anon_sym_UR_DQUOTE] = ACTIONS(8699), + [anon_sym_u8R_DQUOTE] = ACTIONS(8699), + [sym_literal_suffix] = ACTIONS(8697), + }, + [STATE(3813)] = { + [sym_template_argument_list] = STATE(2206), + [sym_identifier] = ACTIONS(9650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9652), + [anon_sym_COMMA] = ACTIONS(9652), + [anon_sym_RPAREN] = ACTIONS(9652), + [aux_sym_preproc_if_token2] = ACTIONS(9652), + [aux_sym_preproc_else_token1] = ACTIONS(9652), + [aux_sym_preproc_elif_token1] = ACTIONS(9650), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9652), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9652), + [anon_sym_LPAREN2] = ACTIONS(9652), + [anon_sym_DASH] = ACTIONS(9650), + [anon_sym_PLUS] = ACTIONS(9650), + [anon_sym_STAR] = ACTIONS(9650), + [anon_sym_SLASH] = ACTIONS(9650), + [anon_sym_PERCENT] = ACTIONS(9650), + [anon_sym_PIPE_PIPE] = ACTIONS(9652), + [anon_sym_AMP_AMP] = ACTIONS(9652), + [anon_sym_PIPE] = ACTIONS(9650), + [anon_sym_CARET] = ACTIONS(9650), + [anon_sym_AMP] = ACTIONS(9650), + [anon_sym_EQ_EQ] = ACTIONS(9652), + [anon_sym_BANG_EQ] = ACTIONS(9652), + [anon_sym_GT] = ACTIONS(9650), + [anon_sym_GT_EQ] = ACTIONS(9652), + [anon_sym_LT_EQ] = ACTIONS(9650), + [anon_sym_LT] = ACTIONS(9654), + [anon_sym_LT_LT] = ACTIONS(9650), + [anon_sym_GT_GT] = ACTIONS(9650), + [anon_sym_SEMI] = ACTIONS(9652), + [anon_sym___attribute__] = ACTIONS(9650), + [anon_sym___attribute] = ACTIONS(9650), + [anon_sym_COLON] = ACTIONS(9650), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9652), + [anon_sym_RBRACE] = ACTIONS(9652), + [anon_sym_LBRACK] = ACTIONS(9652), + [anon_sym_EQ] = ACTIONS(9650), + [anon_sym_QMARK] = ACTIONS(9652), + [anon_sym_STAR_EQ] = ACTIONS(9652), + [anon_sym_SLASH_EQ] = ACTIONS(9652), + [anon_sym_PERCENT_EQ] = ACTIONS(9652), + [anon_sym_PLUS_EQ] = ACTIONS(9652), + [anon_sym_DASH_EQ] = ACTIONS(9652), + [anon_sym_LT_LT_EQ] = ACTIONS(9652), + [anon_sym_GT_GT_EQ] = ACTIONS(9652), + [anon_sym_AMP_EQ] = ACTIONS(9652), + [anon_sym_CARET_EQ] = ACTIONS(9652), + [anon_sym_PIPE_EQ] = ACTIONS(9652), + [anon_sym_and_eq] = ACTIONS(9650), + [anon_sym_or_eq] = ACTIONS(9650), + [anon_sym_xor_eq] = ACTIONS(9650), + [anon_sym_LT_EQ_GT] = ACTIONS(9652), + [anon_sym_or] = ACTIONS(9650), + [anon_sym_and] = ACTIONS(9650), + [anon_sym_bitor] = ACTIONS(9650), + [anon_sym_xor] = ACTIONS(9650), + [anon_sym_bitand] = ACTIONS(9650), + [anon_sym_not_eq] = ACTIONS(9650), + [anon_sym_DASH_DASH] = ACTIONS(9652), + [anon_sym_PLUS_PLUS] = ACTIONS(9652), + [anon_sym_DOT] = ACTIONS(9650), + [anon_sym_DOT_STAR] = ACTIONS(9652), + [anon_sym_DASH_GT] = ACTIONS(9652), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9652), + }, + [STATE(3814)] = { + [sym_identifier] = ACTIONS(9703), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9705), + [anon_sym_COMMA] = ACTIONS(9705), + [anon_sym_RPAREN] = ACTIONS(9705), + [aux_sym_preproc_if_token2] = ACTIONS(9705), + [aux_sym_preproc_else_token1] = ACTIONS(9705), + [aux_sym_preproc_elif_token1] = ACTIONS(9703), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9705), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9705), + [anon_sym_LPAREN2] = ACTIONS(9705), + [anon_sym_DASH] = ACTIONS(9703), + [anon_sym_PLUS] = ACTIONS(9703), + [anon_sym_STAR] = ACTIONS(9703), + [anon_sym_SLASH] = ACTIONS(9703), + [anon_sym_PERCENT] = ACTIONS(9703), + [anon_sym_PIPE_PIPE] = ACTIONS(9705), + [anon_sym_AMP_AMP] = ACTIONS(9705), + [anon_sym_PIPE] = ACTIONS(9703), + [anon_sym_CARET] = ACTIONS(9703), + [anon_sym_AMP] = ACTIONS(9703), + [anon_sym_EQ_EQ] = ACTIONS(9705), + [anon_sym_BANG_EQ] = ACTIONS(9705), + [anon_sym_GT] = ACTIONS(9703), + [anon_sym_GT_EQ] = ACTIONS(9705), + [anon_sym_LT_EQ] = ACTIONS(9703), + [anon_sym_LT] = ACTIONS(9703), + [anon_sym_LT_LT] = ACTIONS(9703), + [anon_sym_GT_GT] = ACTIONS(9703), + [anon_sym_SEMI] = ACTIONS(9705), + [anon_sym___attribute__] = ACTIONS(9703), + [anon_sym___attribute] = ACTIONS(9703), + [anon_sym_COLON] = ACTIONS(9703), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9705), + [anon_sym_LBRACE] = ACTIONS(9705), + [anon_sym_RBRACE] = ACTIONS(9705), + [anon_sym_LBRACK] = ACTIONS(9705), + [anon_sym_EQ] = ACTIONS(9703), + [anon_sym_QMARK] = ACTIONS(9705), + [anon_sym_STAR_EQ] = ACTIONS(9705), + [anon_sym_SLASH_EQ] = ACTIONS(9705), + [anon_sym_PERCENT_EQ] = ACTIONS(9705), + [anon_sym_PLUS_EQ] = ACTIONS(9705), + [anon_sym_DASH_EQ] = ACTIONS(9705), + [anon_sym_LT_LT_EQ] = ACTIONS(9705), + [anon_sym_GT_GT_EQ] = ACTIONS(9705), + [anon_sym_AMP_EQ] = ACTIONS(9705), + [anon_sym_CARET_EQ] = ACTIONS(9705), + [anon_sym_PIPE_EQ] = ACTIONS(9705), + [anon_sym_and_eq] = ACTIONS(9703), + [anon_sym_or_eq] = ACTIONS(9703), + [anon_sym_xor_eq] = ACTIONS(9703), + [anon_sym_LT_EQ_GT] = ACTIONS(9705), + [anon_sym_or] = ACTIONS(9703), + [anon_sym_and] = ACTIONS(9703), + [anon_sym_bitor] = ACTIONS(9703), + [anon_sym_xor] = ACTIONS(9703), + [anon_sym_bitand] = ACTIONS(9703), + [anon_sym_not_eq] = ACTIONS(9703), + [anon_sym_DASH_DASH] = ACTIONS(9705), + [anon_sym_PLUS_PLUS] = ACTIONS(9705), + [anon_sym_DOT] = ACTIONS(9703), + [anon_sym_DOT_STAR] = ACTIONS(9705), + [anon_sym_DASH_GT] = ACTIONS(9705), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9705), + }, + [STATE(3815)] = { + [sym_argument_list] = STATE(3874), + [sym_subscript_argument_list] = STATE(3900), + [sym_identifier] = ACTIONS(9707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9709), + [anon_sym_COMMA] = ACTIONS(9709), + [anon_sym_RPAREN] = ACTIONS(9709), + [aux_sym_preproc_if_token2] = ACTIONS(9709), + [aux_sym_preproc_else_token1] = ACTIONS(9709), + [aux_sym_preproc_elif_token1] = ACTIONS(9707), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9709), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9709), + [anon_sym_LPAREN2] = ACTIONS(9230), + [anon_sym_DASH] = ACTIONS(9707), + [anon_sym_PLUS] = ACTIONS(9707), + [anon_sym_STAR] = ACTIONS(9707), + [anon_sym_SLASH] = ACTIONS(9707), + [anon_sym_PERCENT] = ACTIONS(9707), + [anon_sym_PIPE_PIPE] = ACTIONS(9709), + [anon_sym_AMP_AMP] = ACTIONS(9709), + [anon_sym_PIPE] = ACTIONS(9707), + [anon_sym_CARET] = ACTIONS(9707), + [anon_sym_AMP] = ACTIONS(9707), + [anon_sym_EQ_EQ] = ACTIONS(9709), + [anon_sym_BANG_EQ] = ACTIONS(9709), + [anon_sym_GT] = ACTIONS(9707), + [anon_sym_GT_EQ] = ACTIONS(9709), + [anon_sym_LT_EQ] = ACTIONS(9707), + [anon_sym_LT] = ACTIONS(9707), + [anon_sym_LT_LT] = ACTIONS(9707), + [anon_sym_GT_GT] = ACTIONS(9707), + [anon_sym_SEMI] = ACTIONS(9709), + [anon_sym___attribute__] = ACTIONS(9707), + [anon_sym___attribute] = ACTIONS(9707), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9709), + [anon_sym_RBRACE] = ACTIONS(9709), + [anon_sym_LBRACK] = ACTIONS(9642), + [anon_sym_EQ] = ACTIONS(9707), + [anon_sym_QMARK] = ACTIONS(9709), + [anon_sym_STAR_EQ] = ACTIONS(9709), + [anon_sym_SLASH_EQ] = ACTIONS(9709), + [anon_sym_PERCENT_EQ] = ACTIONS(9709), + [anon_sym_PLUS_EQ] = ACTIONS(9709), + [anon_sym_DASH_EQ] = ACTIONS(9709), + [anon_sym_LT_LT_EQ] = ACTIONS(9709), + [anon_sym_GT_GT_EQ] = ACTIONS(9709), + [anon_sym_AMP_EQ] = ACTIONS(9709), + [anon_sym_CARET_EQ] = ACTIONS(9709), + [anon_sym_PIPE_EQ] = ACTIONS(9709), + [anon_sym_and_eq] = ACTIONS(9707), + [anon_sym_or_eq] = ACTIONS(9707), + [anon_sym_xor_eq] = ACTIONS(9707), + [anon_sym_LT_EQ_GT] = ACTIONS(9709), + [anon_sym_or] = ACTIONS(9707), + [anon_sym_and] = ACTIONS(9707), + [anon_sym_bitor] = ACTIONS(9707), + [anon_sym_xor] = ACTIONS(9707), + [anon_sym_bitand] = ACTIONS(9707), + [anon_sym_not_eq] = ACTIONS(9707), + [anon_sym_DASH_DASH] = ACTIONS(9644), + [anon_sym_PLUS_PLUS] = ACTIONS(9644), + [anon_sym_DOT] = ACTIONS(9646), + [anon_sym_DOT_STAR] = ACTIONS(9648), + [anon_sym_DASH_GT] = ACTIONS(9648), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9709), + }, + [STATE(3816)] = { + [sym_template_argument_list] = STATE(3740), + [sym_identifier] = ACTIONS(9650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9652), + [anon_sym_COMMA] = ACTIONS(9652), + [anon_sym_RPAREN] = ACTIONS(9652), + [aux_sym_preproc_if_token2] = ACTIONS(9652), + [aux_sym_preproc_else_token1] = ACTIONS(9652), + [aux_sym_preproc_elif_token1] = ACTIONS(9650), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9652), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9652), + [anon_sym_LPAREN2] = ACTIONS(9652), + [anon_sym_DASH] = ACTIONS(9650), + [anon_sym_PLUS] = ACTIONS(9650), + [anon_sym_STAR] = ACTIONS(9650), + [anon_sym_SLASH] = ACTIONS(9650), + [anon_sym_PERCENT] = ACTIONS(9650), + [anon_sym_PIPE_PIPE] = ACTIONS(9652), + [anon_sym_AMP_AMP] = ACTIONS(9652), + [anon_sym_PIPE] = ACTIONS(9650), + [anon_sym_CARET] = ACTIONS(9650), + [anon_sym_AMP] = ACTIONS(9650), + [anon_sym_EQ_EQ] = ACTIONS(9652), + [anon_sym_BANG_EQ] = ACTIONS(9652), + [anon_sym_GT] = ACTIONS(9650), + [anon_sym_GT_EQ] = ACTIONS(9652), + [anon_sym_LT_EQ] = ACTIONS(9650), + [anon_sym_LT] = ACTIONS(9654), + [anon_sym_LT_LT] = ACTIONS(9650), + [anon_sym_GT_GT] = ACTIONS(9650), + [anon_sym_SEMI] = ACTIONS(9652), + [anon_sym___attribute__] = ACTIONS(9650), + [anon_sym___attribute] = ACTIONS(9650), + [anon_sym_COLON] = ACTIONS(9650), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9652), + [anon_sym_RBRACE] = ACTIONS(9652), + [anon_sym_LBRACK] = ACTIONS(9652), + [anon_sym_EQ] = ACTIONS(9650), + [anon_sym_QMARK] = ACTIONS(9652), + [anon_sym_STAR_EQ] = ACTIONS(9652), + [anon_sym_SLASH_EQ] = ACTIONS(9652), + [anon_sym_PERCENT_EQ] = ACTIONS(9652), + [anon_sym_PLUS_EQ] = ACTIONS(9652), + [anon_sym_DASH_EQ] = ACTIONS(9652), + [anon_sym_LT_LT_EQ] = ACTIONS(9652), + [anon_sym_GT_GT_EQ] = ACTIONS(9652), + [anon_sym_AMP_EQ] = ACTIONS(9652), + [anon_sym_CARET_EQ] = ACTIONS(9652), + [anon_sym_PIPE_EQ] = ACTIONS(9652), + [anon_sym_and_eq] = ACTIONS(9650), + [anon_sym_or_eq] = ACTIONS(9650), + [anon_sym_xor_eq] = ACTIONS(9650), + [anon_sym_LT_EQ_GT] = ACTIONS(9652), + [anon_sym_or] = ACTIONS(9650), + [anon_sym_and] = ACTIONS(9650), + [anon_sym_bitor] = ACTIONS(9650), + [anon_sym_xor] = ACTIONS(9650), + [anon_sym_bitand] = ACTIONS(9650), + [anon_sym_not_eq] = ACTIONS(9650), + [anon_sym_DASH_DASH] = ACTIONS(9652), + [anon_sym_PLUS_PLUS] = ACTIONS(9652), + [anon_sym_DOT] = ACTIONS(9650), + [anon_sym_DOT_STAR] = ACTIONS(9652), + [anon_sym_DASH_GT] = ACTIONS(9652), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9652), + }, + [STATE(3817)] = { + [sym_identifier] = ACTIONS(9711), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9713), + [anon_sym_COMMA] = ACTIONS(9713), + [anon_sym_RPAREN] = ACTIONS(9713), + [aux_sym_preproc_if_token2] = ACTIONS(9713), + [aux_sym_preproc_else_token1] = ACTIONS(9713), + [aux_sym_preproc_elif_token1] = ACTIONS(9711), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9713), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9713), + [anon_sym_LPAREN2] = ACTIONS(9713), + [anon_sym_DASH] = ACTIONS(9711), + [anon_sym_PLUS] = ACTIONS(9711), + [anon_sym_STAR] = ACTIONS(9711), + [anon_sym_SLASH] = ACTIONS(9711), + [anon_sym_PERCENT] = ACTIONS(9711), + [anon_sym_PIPE_PIPE] = ACTIONS(9713), + [anon_sym_AMP_AMP] = ACTIONS(9713), + [anon_sym_PIPE] = ACTIONS(9711), + [anon_sym_CARET] = ACTIONS(9711), + [anon_sym_AMP] = ACTIONS(9711), + [anon_sym_EQ_EQ] = ACTIONS(9713), + [anon_sym_BANG_EQ] = ACTIONS(9713), + [anon_sym_GT] = ACTIONS(9711), + [anon_sym_GT_EQ] = ACTIONS(9713), + [anon_sym_LT_EQ] = ACTIONS(9711), + [anon_sym_LT] = ACTIONS(9711), + [anon_sym_LT_LT] = ACTIONS(9711), + [anon_sym_GT_GT] = ACTIONS(9711), + [anon_sym_SEMI] = ACTIONS(9713), + [anon_sym___attribute__] = ACTIONS(9711), + [anon_sym___attribute] = ACTIONS(9711), + [anon_sym_COLON] = ACTIONS(9711), + [anon_sym_COLON_COLON] = ACTIONS(7227), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9713), + [anon_sym_RBRACE] = ACTIONS(9713), + [anon_sym_LBRACK] = ACTIONS(9713), + [anon_sym_EQ] = ACTIONS(9711), + [anon_sym_QMARK] = ACTIONS(9713), + [anon_sym_STAR_EQ] = ACTIONS(9713), + [anon_sym_SLASH_EQ] = ACTIONS(9713), + [anon_sym_PERCENT_EQ] = ACTIONS(9713), + [anon_sym_PLUS_EQ] = ACTIONS(9713), + [anon_sym_DASH_EQ] = ACTIONS(9713), + [anon_sym_LT_LT_EQ] = ACTIONS(9713), + [anon_sym_GT_GT_EQ] = ACTIONS(9713), + [anon_sym_AMP_EQ] = ACTIONS(9713), + [anon_sym_CARET_EQ] = ACTIONS(9713), + [anon_sym_PIPE_EQ] = ACTIONS(9713), + [anon_sym_and_eq] = ACTIONS(9711), + [anon_sym_or_eq] = ACTIONS(9711), + [anon_sym_xor_eq] = ACTIONS(9711), + [anon_sym_LT_EQ_GT] = ACTIONS(9713), + [anon_sym_or] = ACTIONS(9711), + [anon_sym_and] = ACTIONS(9711), + [anon_sym_bitor] = ACTIONS(9711), + [anon_sym_xor] = ACTIONS(9711), + [anon_sym_bitand] = ACTIONS(9711), + [anon_sym_not_eq] = ACTIONS(9711), + [anon_sym_DASH_DASH] = ACTIONS(9713), + [anon_sym_PLUS_PLUS] = ACTIONS(9713), + [anon_sym_DOT] = ACTIONS(9711), + [anon_sym_DOT_STAR] = ACTIONS(9713), + [anon_sym_DASH_GT] = ACTIONS(9713), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9713), + }, + [STATE(3818)] = { + [sym_attribute_specifier] = STATE(4056), + [sym_enumerator_list] = STATE(3829), + [sym_identifier] = ACTIONS(7381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7383), + [anon_sym_COMMA] = ACTIONS(7383), + [aux_sym_preproc_if_token2] = ACTIONS(7383), + [aux_sym_preproc_else_token1] = ACTIONS(7383), + [aux_sym_preproc_elif_token1] = ACTIONS(7381), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7383), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7383), + [anon_sym_LPAREN2] = ACTIONS(7383), + [anon_sym_DASH] = ACTIONS(7381), + [anon_sym_PLUS] = ACTIONS(7381), + [anon_sym_STAR] = ACTIONS(7383), + [anon_sym_SLASH] = ACTIONS(7381), + [anon_sym_PERCENT] = ACTIONS(7383), + [anon_sym_PIPE_PIPE] = ACTIONS(7383), + [anon_sym_AMP_AMP] = ACTIONS(7383), + [anon_sym_PIPE] = ACTIONS(7381), + [anon_sym_CARET] = ACTIONS(7383), + [anon_sym_AMP] = ACTIONS(7381), + [anon_sym_EQ_EQ] = ACTIONS(7383), + [anon_sym_BANG_EQ] = ACTIONS(7383), + [anon_sym_GT] = ACTIONS(7381), + [anon_sym_GT_EQ] = ACTIONS(7383), + [anon_sym_LT_EQ] = ACTIONS(7381), + [anon_sym_LT] = ACTIONS(7381), + [anon_sym_LT_LT] = ACTIONS(7383), + [anon_sym_GT_GT] = ACTIONS(7383), + [anon_sym___extension__] = ACTIONS(7381), + [anon_sym___attribute__] = ACTIONS(9244), + [anon_sym___attribute] = ACTIONS(9244), + [anon_sym_LBRACE] = ACTIONS(9413), + [anon_sym_LBRACK] = ACTIONS(7383), + [anon_sym_const] = ACTIONS(7381), + [anon_sym_constexpr] = ACTIONS(7381), + [anon_sym_volatile] = ACTIONS(7381), + [anon_sym_restrict] = ACTIONS(7381), + [anon_sym___restrict__] = ACTIONS(7381), + [anon_sym__Atomic] = ACTIONS(7381), + [anon_sym__Noreturn] = ACTIONS(7381), + [anon_sym_noreturn] = ACTIONS(7381), + [anon_sym__Nonnull] = ACTIONS(7381), + [anon_sym_mutable] = ACTIONS(7381), + [anon_sym_constinit] = ACTIONS(7381), + [anon_sym_consteval] = ACTIONS(7381), + [anon_sym_alignas] = ACTIONS(7381), + [anon_sym__Alignas] = ACTIONS(7381), + [anon_sym_QMARK] = ACTIONS(7383), + [anon_sym_LT_EQ_GT] = ACTIONS(7383), + [anon_sym_or] = ACTIONS(7381), + [anon_sym_and] = ACTIONS(7381), + [anon_sym_bitor] = ACTIONS(7381), + [anon_sym_xor] = ACTIONS(7381), + [anon_sym_bitand] = ACTIONS(7381), + [anon_sym_not_eq] = ACTIONS(7381), + [anon_sym_DASH_DASH] = ACTIONS(7383), + [anon_sym_PLUS_PLUS] = ACTIONS(7383), + [anon_sym_DOT] = ACTIONS(7381), + [anon_sym_DOT_STAR] = ACTIONS(7383), + [anon_sym_DASH_GT] = ACTIONS(7383), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7381), + [anon_sym_override] = ACTIONS(7381), + [anon_sym_requires] = ACTIONS(7381), + }, + [STATE(3819)] = { + [sym_decltype_auto] = STATE(4121), + [sym_identifier] = ACTIONS(7223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [aux_sym_preproc_if_token2] = ACTIONS(7225), + [aux_sym_preproc_else_token1] = ACTIONS(7225), + [aux_sym_preproc_elif_token1] = ACTIONS(7223), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7225), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7225), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7225), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7225), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7225), + [anon_sym_GT_GT] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym_LBRACE] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_RBRACK] = ACTIONS(7225), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7223), + [anon_sym__Alignas] = ACTIONS(7223), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7223), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7223), + [anon_sym_not_eq] = ACTIONS(7223), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9585), + [anon_sym_decltype] = ACTIONS(6813), + [anon_sym_final] = ACTIONS(7223), + [anon_sym_override] = ACTIONS(7223), + [anon_sym_requires] = ACTIONS(7223), + }, + [STATE(3820)] = { + [sym_argument_list] = STATE(3874), + [sym_subscript_argument_list] = STATE(3900), + [sym_identifier] = ACTIONS(9715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9717), + [anon_sym_COMMA] = ACTIONS(9717), + [anon_sym_RPAREN] = ACTIONS(9717), + [aux_sym_preproc_if_token2] = ACTIONS(9717), + [aux_sym_preproc_else_token1] = ACTIONS(9717), + [aux_sym_preproc_elif_token1] = ACTIONS(9715), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9717), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9717), + [anon_sym_LPAREN2] = ACTIONS(9230), + [anon_sym_DASH] = ACTIONS(9715), + [anon_sym_PLUS] = ACTIONS(9715), + [anon_sym_STAR] = ACTIONS(9715), + [anon_sym_SLASH] = ACTIONS(9715), + [anon_sym_PERCENT] = ACTIONS(9715), + [anon_sym_PIPE_PIPE] = ACTIONS(9717), + [anon_sym_AMP_AMP] = ACTIONS(9717), + [anon_sym_PIPE] = ACTIONS(9715), + [anon_sym_CARET] = ACTIONS(9715), + [anon_sym_AMP] = ACTIONS(9715), + [anon_sym_EQ_EQ] = ACTIONS(9717), + [anon_sym_BANG_EQ] = ACTIONS(9717), + [anon_sym_GT] = ACTIONS(9715), + [anon_sym_GT_EQ] = ACTIONS(9717), + [anon_sym_LT_EQ] = ACTIONS(9715), + [anon_sym_LT] = ACTIONS(9715), + [anon_sym_LT_LT] = ACTIONS(9715), + [anon_sym_GT_GT] = ACTIONS(9715), + [anon_sym_SEMI] = ACTIONS(9717), + [anon_sym___attribute__] = ACTIONS(9715), + [anon_sym___attribute] = ACTIONS(9715), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9717), + [anon_sym_RBRACE] = ACTIONS(9717), + [anon_sym_LBRACK] = ACTIONS(9642), + [anon_sym_EQ] = ACTIONS(9715), + [anon_sym_QMARK] = ACTIONS(9717), + [anon_sym_STAR_EQ] = ACTIONS(9717), + [anon_sym_SLASH_EQ] = ACTIONS(9717), + [anon_sym_PERCENT_EQ] = ACTIONS(9717), + [anon_sym_PLUS_EQ] = ACTIONS(9717), + [anon_sym_DASH_EQ] = ACTIONS(9717), + [anon_sym_LT_LT_EQ] = ACTIONS(9717), + [anon_sym_GT_GT_EQ] = ACTIONS(9717), + [anon_sym_AMP_EQ] = ACTIONS(9717), + [anon_sym_CARET_EQ] = ACTIONS(9717), + [anon_sym_PIPE_EQ] = ACTIONS(9717), + [anon_sym_and_eq] = ACTIONS(9715), + [anon_sym_or_eq] = ACTIONS(9715), + [anon_sym_xor_eq] = ACTIONS(9715), + [anon_sym_LT_EQ_GT] = ACTIONS(9717), + [anon_sym_or] = ACTIONS(9715), + [anon_sym_and] = ACTIONS(9715), + [anon_sym_bitor] = ACTIONS(9715), + [anon_sym_xor] = ACTIONS(9715), + [anon_sym_bitand] = ACTIONS(9715), + [anon_sym_not_eq] = ACTIONS(9715), + [anon_sym_DASH_DASH] = ACTIONS(9644), + [anon_sym_PLUS_PLUS] = ACTIONS(9644), + [anon_sym_DOT] = ACTIONS(9646), + [anon_sym_DOT_STAR] = ACTIONS(9648), + [anon_sym_DASH_GT] = ACTIONS(9648), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9717), + }, + [STATE(3821)] = { + [sym_argument_list] = STATE(3894), + [sym_initializer_list] = STATE(5969), + [aux_sym_sized_type_specifier_repeat1] = STATE(3284), + [sym_identifier] = ACTIONS(7223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), + [anon_sym_COMMA] = ACTIONS(7225), + [aux_sym_preproc_if_token2] = ACTIONS(7225), + [aux_sym_preproc_else_token1] = ACTIONS(7225), + [aux_sym_preproc_elif_token1] = ACTIONS(7223), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), + [anon_sym_LPAREN2] = ACTIONS(7687), + [anon_sym_DASH] = ACTIONS(7223), + [anon_sym_PLUS] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(7225), + [anon_sym_SLASH] = ACTIONS(7223), + [anon_sym_PERCENT] = ACTIONS(7225), + [anon_sym_PIPE_PIPE] = ACTIONS(7225), + [anon_sym_AMP_AMP] = ACTIONS(7225), + [anon_sym_PIPE] = ACTIONS(7223), + [anon_sym_CARET] = ACTIONS(7225), + [anon_sym_AMP] = ACTIONS(7223), + [anon_sym_EQ_EQ] = ACTIONS(7225), + [anon_sym_BANG_EQ] = ACTIONS(7225), + [anon_sym_GT] = ACTIONS(7223), + [anon_sym_GT_EQ] = ACTIONS(7225), + [anon_sym_LT_EQ] = ACTIONS(7223), + [anon_sym_LT] = ACTIONS(7223), + [anon_sym_LT_LT] = ACTIONS(7225), + [anon_sym_GT_GT] = ACTIONS(7225), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_signed] = ACTIONS(9114), + [anon_sym_unsigned] = ACTIONS(9114), + [anon_sym_long] = ACTIONS(9114), + [anon_sym_short] = ACTIONS(9114), + [anon_sym_LBRACK] = ACTIONS(7225), + [anon_sym_const] = ACTIONS(7223), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7223), + [anon_sym__Alignas] = ACTIONS(7223), + [anon_sym_QMARK] = ACTIONS(7225), + [anon_sym_LT_EQ_GT] = ACTIONS(7225), + [anon_sym_or] = ACTIONS(7223), + [anon_sym_and] = ACTIONS(7223), + [anon_sym_bitor] = ACTIONS(7223), + [anon_sym_xor] = ACTIONS(7223), + [anon_sym_bitand] = ACTIONS(7223), + [anon_sym_not_eq] = ACTIONS(7223), + [anon_sym_DASH_DASH] = ACTIONS(7225), + [anon_sym_PLUS_PLUS] = ACTIONS(7225), + [anon_sym_DOT] = ACTIONS(7223), + [anon_sym_DOT_STAR] = ACTIONS(7225), + [anon_sym_DASH_GT] = ACTIONS(7225), + [sym_comment] = ACTIONS(3), + }, + [STATE(3822)] = { + [sym_ms_based_modifier] = STATE(10837), + [sym__declarator] = STATE(8808), + [sym__abstract_declarator] = STATE(9023), + [sym_parenthesized_declarator] = STATE(8555), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_function_declarator] = STATE(8555), + [sym_abstract_function_declarator] = STATE(8596), + [sym_array_declarator] = STATE(8555), + [sym_abstract_array_declarator] = STATE(8596), + [sym_type_qualifier] = STATE(7086), + [sym_alignas_qualifier] = STATE(7511), + [sym_parameter_list] = STATE(5327), + [sym_decltype] = STATE(10768), + [sym_reference_declarator] = STATE(8555), + [sym_abstract_reference_declarator] = STATE(8596), + [sym_structured_binding_declarator] = STATE(8555), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7990), + [sym_qualified_identifier] = STATE(8555), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__type_definition_type_repeat1] = STATE(7086), + [sym_identifier] = ACTIONS(8546), + [anon_sym_COMMA] = ACTIONS(6823), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(8651), + [anon_sym_AMP_AMP] = ACTIONS(8653), + [anon_sym_AMP] = ACTIONS(8655), + [anon_sym___extension__] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(6821), + [anon_sym___attribute] = ACTIONS(6821), + [anon_sym_COLON_COLON] = ACTIONS(8554), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5627), + [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__Nonnull] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_GT2] = ACTIONS(6823), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), + }, + [STATE(3823)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3823), + [sym_identifier] = ACTIONS(6999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7001), + [anon_sym_COMMA] = ACTIONS(7001), + [anon_sym_LPAREN2] = ACTIONS(7001), + [anon_sym_DASH] = ACTIONS(6999), + [anon_sym_PLUS] = ACTIONS(6999), + [anon_sym_STAR] = ACTIONS(7001), + [anon_sym_SLASH] = ACTIONS(6999), + [anon_sym_PERCENT] = ACTIONS(7001), + [anon_sym_PIPE_PIPE] = ACTIONS(7001), + [anon_sym_AMP_AMP] = ACTIONS(7001), + [anon_sym_PIPE] = ACTIONS(6999), + [anon_sym_CARET] = ACTIONS(7001), + [anon_sym_AMP] = ACTIONS(6999), + [anon_sym_EQ_EQ] = ACTIONS(7001), + [anon_sym_BANG_EQ] = ACTIONS(7001), + [anon_sym_GT] = ACTIONS(6999), + [anon_sym_GT_EQ] = ACTIONS(6999), + [anon_sym_LT_EQ] = ACTIONS(6999), + [anon_sym_LT] = ACTIONS(6999), + [anon_sym_LT_LT] = ACTIONS(7001), + [anon_sym_GT_GT] = ACTIONS(6999), + [anon_sym___extension__] = ACTIONS(6999), + [anon_sym___attribute__] = ACTIONS(6999), + [anon_sym___attribute] = ACTIONS(6999), + [anon_sym_LBRACE] = ACTIONS(7001), + [anon_sym_signed] = ACTIONS(9607), + [anon_sym_unsigned] = ACTIONS(9607), + [anon_sym_long] = ACTIONS(9607), + [anon_sym_short] = ACTIONS(9607), + [anon_sym_LBRACK] = ACTIONS(7001), + [anon_sym_const] = ACTIONS(6999), + [anon_sym_constexpr] = ACTIONS(6999), + [anon_sym_volatile] = ACTIONS(6999), + [anon_sym_restrict] = ACTIONS(6999), + [anon_sym___restrict__] = ACTIONS(6999), + [anon_sym__Atomic] = ACTIONS(6999), + [anon_sym__Noreturn] = ACTIONS(6999), + [anon_sym_noreturn] = ACTIONS(6999), + [anon_sym__Nonnull] = ACTIONS(6999), + [anon_sym_mutable] = ACTIONS(6999), + [anon_sym_constinit] = ACTIONS(6999), + [anon_sym_consteval] = ACTIONS(6999), + [anon_sym_alignas] = ACTIONS(6999), + [anon_sym__Alignas] = ACTIONS(6999), + [sym_primitive_type] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(7001), + [anon_sym_LT_EQ_GT] = ACTIONS(7001), + [anon_sym_or] = ACTIONS(6999), + [anon_sym_and] = ACTIONS(6999), + [anon_sym_bitor] = ACTIONS(6999), + [anon_sym_xor] = ACTIONS(6999), + [anon_sym_bitand] = ACTIONS(6999), + [anon_sym_not_eq] = ACTIONS(6999), + [anon_sym_DASH_DASH] = ACTIONS(7001), + [anon_sym_PLUS_PLUS] = ACTIONS(7001), + [anon_sym_DOT] = ACTIONS(6999), + [anon_sym_DOT_STAR] = ACTIONS(7001), + [anon_sym_DASH_GT] = ACTIONS(7001), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6999), + [anon_sym_override] = ACTIONS(6999), + [anon_sym_GT2] = ACTIONS(7001), + [anon_sym_requires] = ACTIONS(6999), + }, + [STATE(3824)] = { + [sym_type_qualifier] = STATE(3765), + [sym_alignas_qualifier] = STATE(3497), + [aux_sym__type_definition_type_repeat1] = STATE(3765), + [aux_sym_sized_type_specifier_repeat1] = STATE(4096), + [sym_identifier] = ACTIONS(9719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), + [anon_sym_COMMA] = ACTIONS(7249), + [anon_sym_RPAREN] = ACTIONS(7249), + [anon_sym_LPAREN2] = ACTIONS(7249), + [anon_sym_TILDE] = ACTIONS(7249), + [anon_sym_STAR] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7249), + [anon_sym_AMP] = ACTIONS(7251), + [anon_sym_SEMI] = ACTIONS(7249), + [anon_sym___extension__] = ACTIONS(9722), + [anon_sym_virtual] = ACTIONS(7251), + [anon_sym_extern] = ACTIONS(7251), + [anon_sym___attribute__] = ACTIONS(7251), + [anon_sym___attribute] = ACTIONS(7251), + [anon_sym_COLON_COLON] = ACTIONS(7249), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7249), + [anon_sym___declspec] = ACTIONS(7251), + [anon_sym___based] = ACTIONS(7251), + [anon_sym___cdecl] = ACTIONS(7251), + [anon_sym___clrcall] = ACTIONS(7251), + [anon_sym___stdcall] = ACTIONS(7251), + [anon_sym___fastcall] = ACTIONS(7251), + [anon_sym___thiscall] = ACTIONS(7251), + [anon_sym___vectorcall] = ACTIONS(7251), + [anon_sym_LBRACE] = ACTIONS(7249), + [anon_sym_signed] = ACTIONS(9725), + [anon_sym_unsigned] = ACTIONS(9725), + [anon_sym_long] = ACTIONS(9725), + [anon_sym_short] = ACTIONS(9725), + [anon_sym_LBRACK] = ACTIONS(7251), + [anon_sym_static] = ACTIONS(7251), + [anon_sym_EQ] = ACTIONS(7249), + [anon_sym_register] = ACTIONS(7251), + [anon_sym_inline] = ACTIONS(7251), + [anon_sym___inline] = ACTIONS(7251), + [anon_sym___inline__] = ACTIONS(7251), + [anon_sym___forceinline] = ACTIONS(7251), + [anon_sym_thread_local] = ACTIONS(7251), + [anon_sym___thread] = ACTIONS(7251), + [anon_sym_const] = ACTIONS(9722), + [anon_sym_constexpr] = ACTIONS(9722), + [anon_sym_volatile] = ACTIONS(9722), + [anon_sym_restrict] = ACTIONS(9722), + [anon_sym___restrict__] = ACTIONS(9722), + [anon_sym__Atomic] = ACTIONS(9722), + [anon_sym__Noreturn] = ACTIONS(9722), + [anon_sym_noreturn] = ACTIONS(9722), + [anon_sym__Nonnull] = ACTIONS(9722), + [anon_sym_mutable] = ACTIONS(9722), + [anon_sym_constinit] = ACTIONS(9722), + [anon_sym_consteval] = ACTIONS(9722), + [anon_sym_alignas] = ACTIONS(9727), + [anon_sym__Alignas] = ACTIONS(9727), + [sym_primitive_type] = ACTIONS(9730), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7251), + [anon_sym_template] = ACTIONS(7251), + [anon_sym_GT2] = ACTIONS(7249), + [anon_sym_operator] = ACTIONS(7251), + [anon_sym_LBRACK_COLON] = ACTIONS(7249), + }, + [STATE(3825)] = { + [sym_ms_based_modifier] = STATE(10837), + [sym__declarator] = STATE(8816), + [sym__abstract_declarator] = STATE(9028), + [sym_parenthesized_declarator] = STATE(8555), + [sym_abstract_parenthesized_declarator] = STATE(8596), + [sym_attributed_declarator] = STATE(8555), + [sym_pointer_declarator] = STATE(8555), + [sym_abstract_pointer_declarator] = STATE(8596), + [sym_function_declarator] = STATE(8555), + [sym_abstract_function_declarator] = STATE(8596), + [sym_array_declarator] = STATE(8555), + [sym_abstract_array_declarator] = STATE(8596), + [sym_type_qualifier] = STATE(7086), + [sym_alignas_qualifier] = STATE(7511), + [sym_parameter_list] = STATE(5340), + [sym_decltype] = STATE(10768), + [sym_reference_declarator] = STATE(8555), + [sym_abstract_reference_declarator] = STATE(8596), + [sym_structured_binding_declarator] = STATE(8555), + [sym__function_declarator_seq] = STATE(8598), + [sym_template_type] = STATE(10768), + [sym_template_function] = STATE(8555), + [sym_destructor_name] = STATE(8555), + [sym_dependent_type_identifier] = STATE(10768), + [sym__scope_resolution] = STATE(7990), + [sym_qualified_identifier] = STATE(8555), + [sym_splice_specifier] = STATE(8222), + [sym__splice_specialization_specifier] = STATE(3808), + [sym_splice_type_specifier] = STATE(10768), + [sym_splice_expression] = STATE(10768), + [sym_operator_name] = STATE(8555), + [aux_sym__type_definition_type_repeat1] = STATE(7086), + [sym_identifier] = ACTIONS(8546), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_RPAREN] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(8708), + [anon_sym_AMP_AMP] = ACTIONS(8710), + [anon_sym_AMP] = ACTIONS(8712), + [anon_sym___extension__] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(7347), + [anon_sym___attribute] = ACTIONS(7347), + [anon_sym_COLON_COLON] = ACTIONS(8554), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5627), + [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__Nonnull] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_alignas] = ACTIONS(3272), + [anon_sym__Alignas] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5164), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8400), 27, + ACTIONS(9732), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -432962,6 +451953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -432973,10 +451965,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8402), 36, + sym_identifier, + ACTIONS(9734), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -432984,6 +451981,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -433001,20 +452000,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, 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, - [2376] = 3, + anon_sym_COLON_RBRACK, + [71] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9416), 29, + ACTIONS(9736), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -433044,7 +452034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9418), 34, + ACTIONS(9738), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -433079,10 +452069,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [2447] = 3, + [142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9420), 29, + ACTIONS(9740), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -433112,7 +452102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9422), 34, + ACTIONS(9742), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -433147,99 +452137,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [2518] = 3, + [213] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9308), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + STATE(4115), 1, + sym_attribute_specifier, + ACTIONS(9244), 2, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, - 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_identifier, - ACTIONS(9310), 34, + ACTIONS(7523), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - 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, - anon_sym_COLON_RBRACK, - [2589] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9424), 29, + ACTIONS(7521), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -433248,117 +452204,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9426), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [2660] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [288] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 29, - aux_sym_preproc_elif_token1, + ACTIONS(9244), 1, + anon_sym___attribute, + ACTIONS(9312), 1, + anon_sym___attribute__, + STATE(3139), 1, + sym_attribute_specifier, + ACTIONS(7521), 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___attribute__, - anon_sym___attribute, anon_sym_COLON, - 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_DOT, - sym_identifier, - ACTIONS(9406), 34, + ACTIONS(7523), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym___extension__, anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_COLON_RBRACK, - [2731] = 3, + [365] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9428), 29, - aux_sym_preproc_elif_token1, + ACTIONS(9744), 1, + anon_sym_delete, + ACTIONS(9746), 1, + anon_sym_new, + ACTIONS(9601), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9595), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9599), 24, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -433369,9 +452309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -433383,15 +452321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9430), 34, + ACTIONS(9597), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -433399,9 +452332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -433419,78 +452350,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [2802] = 3, + [444] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9432), 29, - aux_sym_preproc_elif_token1, + ACTIONS(9244), 1, + anon_sym___attribute, + ACTIONS(9312), 1, + anon_sym___attribute__, + STATE(3235), 1, + sym_attribute_specifier, + ACTIONS(7423), 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___attribute__, - anon_sym___attribute, anon_sym_COLON, - 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_DOT, - sym_identifier, - ACTIONS(9434), 34, + ACTIONS(7425), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym___extension__, anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_COLON_RBRACK, - [2873] = 3, + [521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9436), 29, + ACTIONS(9599), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -433520,7 +452454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9438), 34, + ACTIONS(9597), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -433555,57 +452489,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [2944] = 3, + [592] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9440), 29, - aux_sym_preproc_elif_token1, + ACTIONS(6825), 1, + anon_sym_LPAREN2, + ACTIONS(6839), 1, + anon_sym_LBRACK, + ACTIONS(6923), 1, + anon_sym_STAR, + ACTIONS(6925), 1, + anon_sym_AMP_AMP, + ACTIONS(6927), 1, + anon_sym_AMP, + STATE(1976), 1, + sym_parameter_list, + STATE(3626), 1, + sym__function_declarator_seq, + STATE(4548), 1, + sym__abstract_declarator, + STATE(3625), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9429), 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___attribute__, anon_sym___attribute, - anon_sym_COLON, 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_identifier, - ACTIONS(9442), 34, + ACTIONS(9427), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -433617,21 +452552,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_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [3015] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [681] = 5, ACTIONS(3), 1, sym_comment, - STATE(3951), 1, + STATE(4068), 1, sym_attribute_specifier, - ACTIONS(8907), 2, + ACTIONS(9244), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7101), 25, + ACTIONS(7433), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -433657,7 +452600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7099), 35, + ACTIONS(7431), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -433693,87 +452636,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [3090] = 12, + [756] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(6475), 1, - anon_sym_LBRACK, - ACTIONS(6576), 1, - anon_sym_STAR, - ACTIONS(6578), 1, - anon_sym_AMP_AMP, - ACTIONS(6580), 1, - anon_sym_AMP, - STATE(1870), 1, - sym_parameter_list, - STATE(3515), 1, - sym__function_declarator_seq, - STATE(4339), 1, - sym__abstract_declarator, - STATE(3510), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9074), 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___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9072), 33, - 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, + STATE(4122), 1, + sym_attribute_specifier, + ACTIONS(9244), 2, anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [3179] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7261), 26, + anon_sym___attribute, + ACTIONS(7533), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -433793,14 +452664,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7259), 37, + ACTIONS(7531), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -433811,8 +452681,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -433838,10 +452706,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [3250] = 3, + [831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9444), 29, + ACTIONS(4930), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -433871,7 +452739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9446), 34, + ACTIONS(4928), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -433906,11 +452774,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [3321] = 3, + [902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8208), 29, - aux_sym_preproc_elif_token1, + ACTIONS(8665), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -433924,9 +452791,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -433938,24 +452802,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + anon_sym_DASH_GT, sym_identifier, - ACTIONS(3888), 34, + sym_literal_suffix, + ACTIONS(8667), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -433972,86 +452831,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [3392] = 9, + 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_DASH_GT_STAR, + [973] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7554), 1, - anon_sym_DASH_GT, - ACTIONS(7560), 1, - anon_sym_requires, - STATE(2961), 1, - sym_trailing_return_type, - ACTIONS(7557), 2, - anon_sym_final, - anon_sym_override, - STATE(3248), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3513), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 19, + ACTIONS(9244), 1, + anon_sym___attribute, + ACTIONS(9312), 1, + anon_sym___attribute__, + STATE(3246), 1, + sym_attribute_specifier, + ACTIONS(7431), 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_COLON, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(7544), 35, + ACTIONS(7433), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym___extension__, anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_COLON_RBRACK, - [3475] = 3, + [1050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9448), 29, + ACTIONS(9748), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -434081,7 +452946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9450), 34, + ACTIONS(9750), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -434116,10 +452981,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [3546] = 3, + [1121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8446), 27, + ACTIONS(5645), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -434133,6 +452999,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -434144,19 +453013,24 @@ 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_literal_suffix, - ACTIONS(8448), 36, + ACTIONS(5638), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -434173,21 +453047,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [1192] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4147), 1, + sym_attribute_specifier, + ACTIONS(9244), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7429), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7427), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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_final, + anon_sym_override, + anon_sym_requires, + [1267] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(3760), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(7034), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, + ACTIONS(7040), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [3617] = 3, + ACTIONS(9118), 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_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(9116), 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, + [1344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9262), 29, + ACTIONS(5645), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -434217,7 +453223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9264), 34, + ACTIONS(5638), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -434252,85 +453258,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [3688] = 8, + [1415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6507), 1, - anon_sym_decltype, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(7183), 1, - anon_sym_LBRACE, - ACTIONS(9076), 1, - sym_auto, - STATE(3030), 1, - sym_decltype_auto, - ACTIONS(6798), 12, + ACTIONS(9752), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, anon_sym___attribute, anon_sym_COLON, - anon_sym_const, + 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(6800), 46, + sym_identifier, + ACTIONS(9754), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_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, anon_sym_COLON_RBRACK, - [3769] = 3, + [1486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6718), 20, + ACTIONS(7749), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -434339,34 +453344,31 @@ 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_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(6716), 43, + ACTIONS(7747), 37, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, 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___extension__, anon_sym___attribute__, anon_sym___attribute, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -434381,7 +453383,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -434393,44 +453394,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [3840] = 12, + [1557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(6475), 1, - anon_sym_LBRACK, - ACTIONS(6594), 1, - anon_sym_STAR, - ACTIONS(6596), 1, - anon_sym_AMP_AMP, - ACTIONS(6598), 1, - anon_sym_AMP, - STATE(1841), 1, - sym_parameter_list, - STATE(3515), 1, - sym__function_declarator_seq, - STATE(4421), 1, - sym__abstract_declarator, - STATE(3510), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9074), 24, + ACTIONS(9756), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -434443,17 +453427,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9072), 26, + ACTIONS(9758), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -434470,65 +453461,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3929] = 5, + anon_sym_COLON_RBRACK, + [1628] = 3, ACTIONS(3), 1, sym_comment, - STATE(4023), 1, - sym_attribute_specifier, - ACTIONS(8907), 2, + ACTIONS(9760), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7055), 25, + anon_sym_COLON, + 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_identifier, + ACTIONS(9762), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7053), 35, + anon_sym_COLON_RBRACK, + [1699] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9764), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -434537,13 +453563,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [4004] = 3, + ACTIONS(9766), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [1770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9452), 29, + ACTIONS(9760), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -434573,7 +453631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9454), 34, + ACTIONS(9762), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -434608,10 +453666,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [4075] = 3, + [1841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9456), 29, + ACTIONS(9760), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -434641,7 +453699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9458), 34, + ACTIONS(9762), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -434676,10 +453734,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [4146] = 3, + [1912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5260), 29, + ACTIONS(9760), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -434709,7 +453767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5253), 34, + ACTIONS(9762), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -434744,98 +453802,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [4217] = 6, + [1983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8907), 1, - anon_sym___attribute, - ACTIONS(9025), 1, - anon_sym___attribute__, - STATE(3135), 1, - sym_attribute_specifier, - ACTIONS(7065), 11, + ACTIONS(9760), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_COLON, - anon_sym_const, + 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(7067), 49, + sym_identifier, + ACTIONS(9762), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___extension__, anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_COLON_RBRACK, - [4294] = 7, + [2054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9460), 1, - anon_sym_delete, - ACTIONS(9462), 1, - anon_sym_new, - ACTIONS(9346), 3, - anon_sym_TILDE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9340), 6, - anon_sym_STAR, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9344), 24, + ACTIONS(9768), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -434846,7 +453888,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -434858,39 +453902,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9342), 28, + sym_identifier, + ACTIONS(9770), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [2125] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9244), 1, + anon_sym___attribute, + ACTIONS(9312), 1, + anon_sym___attribute__, + STATE(3103), 1, + sym_attribute_specifier, + ACTIONS(7435), 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_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7437), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym___extension__, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_COLON_RBRACK, - [4373] = 3, + [2202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9464), 29, + ACTIONS(9760), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -434920,7 +454042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9466), 34, + ACTIONS(9762), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -434955,10 +454077,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [4444] = 3, + [2273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9468), 29, + ACTIONS(9772), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -434988,7 +454110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9470), 34, + ACTIONS(9774), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -435023,11 +454145,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [4515] = 3, + [2344] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 29, - aux_sym_preproc_elif_token1, + ACTIONS(9776), 1, + sym_identifier, + STATE(3879), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(5995), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5997), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8468), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435041,13 +454180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -435055,24 +454188,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9406), 34, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(8466), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -435089,12 +454216,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [4586] = 3, + anon_sym_DASH_GT_STAR, + [2423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9472), 29, + ACTIONS(9778), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -435124,7 +454250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9474), 34, + ACTIONS(9780), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -435159,31 +454285,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [4657] = 3, + [2494] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9476), 29, + STATE(4183), 1, + sym_alignas_qualifier, + ACTIONS(9785), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3860), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6889), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -435192,47 +454328,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9478), 34, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6891), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, 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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [4728] = 3, + [2573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2758), 20, + ACTIONS(7587), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -435241,34 +454375,31 @@ 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_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(2768), 43, + ACTIONS(7585), 37, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, 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___extension__, anon_sym___attribute__, anon_sym___attribute, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -435283,7 +454414,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -435295,84 +454425,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [4799] = 3, + [2644] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9472), 29, - aux_sym_preproc_elif_token1, + ACTIONS(9244), 1, + anon_sym___attribute, + ACTIONS(9312), 1, + anon_sym___attribute__, + STATE(3223), 1, + sym_attribute_specifier, + ACTIONS(7547), 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___attribute__, - anon_sym___attribute, anon_sym_COLON, - 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_DOT, - sym_identifier, - ACTIONS(9474), 34, + ACTIONS(7549), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym___extension__, anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_COLON_RBRACK, - [4870] = 6, + [2721] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8907), 1, + ACTIONS(9244), 1, anon_sym___attribute, - ACTIONS(9025), 1, + ACTIONS(9312), 1, anon_sym___attribute__, - STATE(3009), 1, + STATE(3116), 1, sym_attribute_specifier, - ACTIONS(7095), 11, + ACTIONS(7551), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -435384,7 +454517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(7097), 49, + ACTIONS(7553), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -435434,38 +454567,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_COLON_RBRACK, - [4947] = 3, + [2798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7335), 26, + ACTIONS(9788), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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_identifier, + ACTIONS(9790), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7333), 37, - aux_sym_preproc_elif_token1, + anon_sym_COLON_RBRACK, + [2869] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9244), 1, + anon_sym___attribute, + ACTIONS(9312), 1, + anon_sym___attribute__, + STATE(3175), 1, + sym_attribute_specifier, + ACTIONS(7453), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -435474,10 +454653,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_COLON, anon_sym_const, + anon_sym_DOT, + ACTIONS(7455), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -435491,21 +454690,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_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_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - [5018] = 3, + anon_sym_COLON_RBRACK, + [2946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 29, + ACTIONS(9792), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -435535,7 +454739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9406), 34, + ACTIONS(9794), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -435570,25 +454774,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [5089] = 9, + [3017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6183), 1, - anon_sym_requires, - ACTIONS(7631), 1, - anon_sym_DASH_GT, - STATE(2959), 1, - sym_trailing_return_type, - ACTIONS(6181), 2, - anon_sym_final, - anon_sym_override, - STATE(3248), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3497), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 19, + ACTIONS(8750), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435602,16 +454791,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, + anon_sym___attribute__, + anon_sym___attribute, 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(7627), 35, + sym_literal_suffix, + ACTIONS(8752), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -435619,8 +454815,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -435633,22 +454827,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, anon_sym_DOT_STAR, - anon_sym_COLON_RBRACK, - [5172] = 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_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [3088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9480), 29, - aux_sym_preproc_elif_token1, + ACTIONS(8665), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435664,7 +454861,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -435676,15 +454872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9482), 34, + sym_literal_suffix, + ACTIONS(8667), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -435692,8 +454883,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -435711,11 +454900,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [5243] = 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, + [3159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8454), 27, + ACTIONS(9796), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435729,6 +454928,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -435740,19 +454942,24 @@ 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_literal_suffix, - ACTIONS(8456), 36, + ACTIONS(9798), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -435769,27 +454976,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - 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_DASH_GT_STAR, - [5314] = 6, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [3230] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8907), 1, - anon_sym___attribute, - ACTIONS(9025), 1, - anon_sym___attribute__, - STATE(2994), 1, - sym_attribute_specifier, - ACTIONS(7091), 11, + ACTIONS(6871), 1, + anon_sym_decltype, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(7457), 1, + anon_sym_LBRACE, + ACTIONS(9443), 1, + sym_auto, + STATE(3215), 1, + sym_decltype_auto, + ACTIONS(7223), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -435798,10 +455000,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute, anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(7093), 49, + ACTIONS(7225), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -435818,8 +455021,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_constexpr, @@ -435847,15 +455050,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_COLON_RBRACK, - [5391] = 3, + [3311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9484), 29, - aux_sym_preproc_elif_token1, + ACTIONS(8657), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -435871,7 +455070,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -435883,15 +455081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9486), 34, + sym_literal_suffix, + ACTIONS(8659), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -435899,8 +455092,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -435918,82 +455109,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [5462] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3948), 1, - sym_attribute_specifier, - ACTIONS(8907), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7093), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7091), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - 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_final, - anon_sym_override, - anon_sym_requires, - [5537] = 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, + [3382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8831), 29, - aux_sym_preproc_elif_token1, + ACTIONS(8697), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436009,7 +455138,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -436021,15 +455149,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(8829), 34, + sym_literal_suffix, + ACTIONS(8699), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -436037,8 +455160,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -436056,17 +455177,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [5608] = 6, + 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, + [3453] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8907), 1, + ACTIONS(9244), 1, anon_sym___attribute, - ACTIONS(9025), 1, + ACTIONS(9312), 1, anon_sym___attribute__, - STATE(3058), 1, + STATE(3187), 1, sym_attribute_specifier, - ACTIONS(7057), 11, + ACTIONS(7413), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -436078,7 +455208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(7059), 49, + ACTIONS(7415), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -436128,28 +455258,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_COLON_RBRACK, - [5685] = 7, + [3530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9488), 1, - sym_identifier, - STATE(3733), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(5601), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5603), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8127), 23, + ACTIONS(9800), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436163,7 +455276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -436171,18 +455290,24 @@ 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(8125), 26, + sym_identifier, + ACTIONS(9802), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -436199,26 +455324,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [5764] = 9, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [3601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6183), 1, - anon_sym_requires, - ACTIONS(8120), 1, - anon_sym_DASH_GT, - STATE(2964), 1, - sym_trailing_return_type, - ACTIONS(6181), 2, - anon_sym_final, - anon_sym_override, - STATE(3248), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3528), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 19, + ACTIONS(9804), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436232,16 +455344,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_COLON, 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(8089), 35, + sym_identifier, + ACTIONS(9806), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -436263,39 +455388,17 @@ 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, anon_sym_COLON_RBRACK, - [5847] = 7, + [3672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9490), 1, - sym_identifier, - STATE(3800), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(9493), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(9496), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8047), 23, + ACTIONS(9808), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436309,7 +455412,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -436317,18 +455426,24 @@ 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(8045), 26, + sym_identifier, + ACTIONS(9810), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -436345,17 +455460,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [5926] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [3743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7285), 26, + ACTIONS(3118), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -436376,8 +455488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7283), 37, - aux_sym_preproc_elif_token1, + ACTIONS(3128), 41, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -436389,6 +455500,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___extension__, anon_sym___attribute__, anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -436403,6 +455518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -436414,50 +455530,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [5997] = 6, + [3814] = 3, ACTIONS(3), 1, sym_comment, - STATE(3652), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(6640), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6646), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8739), 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_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(8737), 27, + ACTIONS(9812), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436467,13 +455544,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___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -436484,12 +455562,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - [6074] = 3, + sym_identifier, + ACTIONS(9814), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [3885] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9499), 29, - aux_sym_preproc_elif_token1, + ACTIONS(9816), 1, + sym_identifier, + STATE(3897), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(5995), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5997), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8456), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436503,13 +455633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -436517,24 +455641,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9501), 34, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(8454), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -436551,28 +455669,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [6145] = 9, + anon_sym_DASH_GT_STAR, + [3964] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6140), 1, - anon_sym_requires, - ACTIONS(7579), 1, + ACTIONS(7849), 1, anon_sym_DASH_GT, - STATE(2911), 1, + ACTIONS(7873), 1, + anon_sym_requires, + STATE(3075), 1, sym_trailing_return_type, - ACTIONS(6134), 2, + ACTIONS(7870), 2, anon_sym_final, anon_sym_override, - STATE(3248), 2, + STATE(3433), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(3513), 2, + STATE(3628), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7546), 26, - aux_sym_preproc_elif_token1, + ACTIONS(7789), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436586,31 +455702,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_COLON, 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_identifier, - ACTIONS(7544), 28, + ACTIONS(7791), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -436623,14 +455733,22 @@ 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, - [6228] = 3, + anon_sym_COLON_RBRACK, + [4047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8382), 27, + ACTIONS(9818), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -436644,6 +455762,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -436655,19 +455776,24 @@ 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_literal_suffix, - ACTIONS(8384), 36, + ACTIONS(9820), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -436684,21 +455810,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - 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_DASH_GT_STAR, - [6299] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [4118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9503), 29, + ACTIONS(8598), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -436728,7 +455845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9505), 34, + ACTIONS(3488), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -436763,38 +455880,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [6370] = 12, + [4189] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(6475), 1, - anon_sym_LBRACK, - ACTIONS(6560), 1, - anon_sym_STAR, - ACTIONS(6562), 1, - anon_sym_AMP_AMP, - ACTIONS(6564), 1, - anon_sym_AMP, - STATE(1847), 1, - sym_parameter_list, - STATE(3515), 1, - sym__function_declarator_seq, - STATE(4382), 1, - sym__abstract_declarator, - STATE(3510), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9074), 17, + ACTIONS(6563), 1, + anon_sym_requires, + ACTIONS(7849), 1, + anon_sym_DASH_GT, + STATE(3071), 1, + sym_trailing_return_type, + ACTIONS(6561), 2, + anon_sym_final, + anon_sym_override, + STATE(3433), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3628), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, @@ -436806,17 +455918,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9072), 33, + ACTIONS(7791), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -436838,12 +455953,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [6459] = 3, + [4272] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4066), 1, + sym_attribute_specifier, + ACTIONS(9244), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7415), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7413), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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_final, + anon_sym_override, + anon_sym_requires, + [4347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7649), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7647), 37, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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_final, + anon_sym_override, + anon_sym_requires, + [4418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7079), 22, + 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_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7077), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [4489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9507), 29, + ACTIONS(9822), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -436873,7 +456193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9509), 34, + ACTIONS(9824), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -436908,10 +456228,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [6530] = 3, + [4560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9511), 29, + ACTIONS(9697), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -436941,7 +456261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9513), 34, + ACTIONS(9699), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -436976,25 +456296,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [6601] = 9, + [4631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6183), 1, - anon_sym_requires, - ACTIONS(9395), 1, - anon_sym_DASH_GT, - STATE(2968), 1, - sym_trailing_return_type, - ACTIONS(6181), 2, - anon_sym_final, - anon_sym_override, - STATE(3248), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3541), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 19, + ACTIONS(9826), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -437008,16 +456314,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_COLON, 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(8543), 35, + sym_identifier, + ACTIONS(9828), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -437039,21 +456358,16 @@ 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, anon_sym_COLON_RBRACK, - [6684] = 3, + [4702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9515), 29, + ACTIONS(9830), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -437083,7 +456397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9517), 34, + ACTIONS(9832), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -437118,26 +456432,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [6755] = 9, + [4773] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6140), 1, - anon_sym_requires, - ACTIONS(7642), 1, + ACTIONS(7970), 1, anon_sym_DASH_GT, - STATE(2959), 1, + ACTIONS(7976), 1, + anon_sym_requires, + STATE(3076), 1, sym_trailing_return_type, - ACTIONS(6134), 2, + ACTIONS(7973), 2, anon_sym_final, anon_sym_override, - STATE(3248), 2, + STATE(3433), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(3497), 2, + STATE(3655), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7629), 26, - aux_sym_preproc_elif_token1, + ACTIONS(7968), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -437151,31 +456464,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_COLON, 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_identifier, - ACTIONS(7627), 28, + ACTIONS(7966), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -437188,29 +456495,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_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [6838] = 9, + anon_sym_COLON_RBRACK, + [4856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6140), 1, - anon_sym_requires, - ACTIONS(8091), 1, - anon_sym_DASH_GT, - STATE(2964), 1, - sym_trailing_return_type, - ACTIONS(6134), 2, - anon_sym_final, - anon_sym_override, - STATE(3248), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3528), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 26, + ACTIONS(9834), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -437225,6 +456524,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -437237,9 +456539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(8089), 28, + ACTIONS(9836), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -437250,6 +456553,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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -437266,11 +456572,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [6921] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [4927] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9519), 29, - aux_sym_preproc_elif_token1, + STATE(3730), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(7069), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7075), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(9116), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -437284,9 +456606,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -437298,25 +456617,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9521), 34, + sym_literal_suffix, + ACTIONS(9118), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -437333,11 +456645,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [6992] = 3, + [5004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9523), 29, + ACTIONS(9800), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -437367,7 +456678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9525), 34, + ACTIONS(9802), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -437402,82 +456713,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [7063] = 6, + [5075] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8907), 1, - anon_sym___attribute, - ACTIONS(9025), 1, - anon_sym___attribute__, - STATE(3128), 1, - sym_attribute_specifier, - ACTIONS(7123), 11, + ACTIONS(8426), 1, + anon_sym_DASH_GT, + ACTIONS(8461), 1, + anon_sym_requires, + STATE(3077), 1, + sym_trailing_return_type, + ACTIONS(8458), 2, + anon_sym_final, + anon_sym_override, + STATE(3433), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3675), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7125), 49, + ACTIONS(8422), 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___extension__, anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_COLON_RBRACK, - [7140] = 3, + [5158] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9527), 29, - aux_sym_preproc_elif_token1, + ACTIONS(9838), 1, + anon_sym_DASH_GT, + ACTIONS(9844), 1, + anon_sym_requires, + STATE(3078), 1, + sym_trailing_return_type, + ACTIONS(9841), 2, + anon_sym_final, + anon_sym_override, + STATE(3433), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3687), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -437491,29 +456819,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_COLON, 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_identifier, - ACTIONS(9529), 34, + ACTIONS(8907), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -437535,71 +456850,53 @@ 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, anon_sym_COLON_RBRACK, - [7211] = 5, + [5241] = 7, ACTIONS(3), 1, sym_comment, - STATE(3973), 1, - sym_attribute_specifier, - ACTIONS(8907), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7089), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7087), 35, - aux_sym_preproc_elif_token1, + ACTIONS(9847), 1, + sym_identifier, + STATE(3897), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(9850), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(9853), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8408), 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___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -437607,14 +456904,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [7286] = 3, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(8406), 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, + [5320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9531), 29, + ACTIONS(9856), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -437644,7 +456966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9533), 34, + ACTIONS(9858), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -437679,25 +457001,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [7357] = 9, + [5391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6140), 1, - anon_sym_requires, - ACTIONS(9535), 1, - anon_sym_DASH_GT, - STATE(2968), 1, - sym_trailing_return_type, - ACTIONS(6134), 2, - anon_sym_final, - anon_sym_override, - STATE(3248), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3541), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 26, + ACTIONS(9860), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -437712,6 +457019,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -437724,9 +457034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(8543), 28, + ACTIONS(9862), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -437737,6 +457048,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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -437753,10 +457067,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [7440] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [5462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 29, + ACTIONS(9864), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -437786,7 +457102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4568), 34, + ACTIONS(9866), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -437821,31 +457137,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [7511] = 6, + [5533] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8907), 1, - anon_sym___attribute, - ACTIONS(9025), 1, - anon_sym___attribute__, - STATE(3035), 1, + STATE(4089), 1, sym_attribute_specifier, - ACTIONS(7103), 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_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7105), 49, + ACTIONS(9244), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7549), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -437857,12 +457163,26 @@ 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___extension__, - 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_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7547), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -437876,94 +457196,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_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, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_COLON_RBRACK, - [7588] = 3, + [5608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9538), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - 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_identifier, - ACTIONS(9540), 34, + ACTIONS(7737), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [7659] = 3, + ACTIONS(7735), 37, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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_final, + anon_sym_override, + anon_sym_requires, + [5679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9542), 29, + ACTIONS(9868), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -437993,7 +457308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9544), 34, + ACTIONS(9870), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -438028,11 +457343,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [7730] = 3, + [5750] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9546), 29, - aux_sym_preproc_elif_token1, + ACTIONS(6563), 1, + anon_sym_requires, + ACTIONS(7970), 1, + anon_sym_DASH_GT, + STATE(3029), 1, + sym_trailing_return_type, + ACTIONS(6561), 2, + anon_sym_final, + anon_sym_override, + STATE(3433), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3655), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438046,29 +457375,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_COLON, 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_identifier, - ACTIONS(9548), 34, + ACTIONS(7966), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -438090,16 +457406,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_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [7801] = 3, + [5833] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7197), 26, + STATE(4128), 1, + sym_attribute_specifier, + ACTIONS(9244), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7553), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -438119,14 +457445,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7195), 37, + ACTIONS(7551), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -438137,8 +457462,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -438164,10 +457487,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [7872] = 3, + [5908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9344), 29, + ACTIONS(9872), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -438197,7 +457520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9342), 34, + ACTIONS(9874), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -438232,25 +457555,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [7943] = 9, + [5979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7579), 1, - anon_sym_DASH_GT, - ACTIONS(7585), 1, - anon_sym_requires, - STATE(2961), 1, - sym_trailing_return_type, - ACTIONS(7582), 2, - anon_sym_final, - anon_sym_override, - STATE(3248), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3513), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 26, + ACTIONS(9876), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -438265,6 +457573,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -438277,9 +457588,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7544), 28, + ACTIONS(9878), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -438290,6 +457602,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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -438306,10 +457621,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [8026] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [6050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9550), 29, + ACTIONS(9880), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -438339,7 +457656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9552), 34, + ACTIONS(9882), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -438374,57 +457691,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [8097] = 3, + [6121] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9554), 29, - aux_sym_preproc_elif_token1, + ACTIONS(6825), 1, + anon_sym_LPAREN2, + ACTIONS(6839), 1, + anon_sym_LBRACK, + ACTIONS(6929), 1, + anon_sym_STAR, + ACTIONS(6931), 1, + anon_sym_AMP_AMP, + ACTIONS(6933), 1, + anon_sym_AMP, + STATE(1957), 1, + sym_parameter_list, + STATE(3626), 1, + sym__function_declarator_seq, + STATE(4484), 1, + sym__abstract_declarator, + STATE(3625), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9429), 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___attribute__, - anon_sym___attribute, anon_sym_COLON, 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_identifier, - ACTIONS(9556), 34, + ACTIONS(9427), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -438436,31 +457756,22 @@ 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, anon_sym_COLON_RBRACK, - [8168] = 9, + [6210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7642), 1, - anon_sym_DASH_GT, - ACTIONS(7648), 1, - anon_sym_requires, - STATE(2975), 1, - sym_trailing_return_type, - ACTIONS(7645), 2, - anon_sym_final, - anon_sym_override, - STATE(3248), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3497), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 26, + ACTIONS(9884), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -438475,6 +457786,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -438487,9 +457801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7627), 28, + ACTIONS(9886), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -438500,6 +457815,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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -438516,207 +457834,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [8251] = 6, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [6281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8907), 1, - anon_sym___attribute, - ACTIONS(9025), 1, - anon_sym___attribute__, - STATE(3077), 1, - sym_attribute_specifier, - ACTIONS(7087), 11, + ACTIONS(9888), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7089), 49, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [8328] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8907), 1, - anon_sym___attribute, - ACTIONS(9025), 1, - anon_sym___attribute__, - STATE(3114), 1, - sym_attribute_specifier, - ACTIONS(7133), 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_COLON, - anon_sym_const, anon_sym_DOT, - ACTIONS(7135), 49, + sym_identifier, + ACTIONS(9890), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___extension__, anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_COLON_RBRACK, - [8405] = 5, + [6352] = 3, ACTIONS(3), 1, sym_comment, - STATE(3952), 1, - sym_attribute_specifier, - ACTIONS(8907), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7105), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7103), 35, + ACTIONS(9892), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -438725,83 +457937,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [8480] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3995), 1, - sym_attribute_specifier, - ACTIONS(8907), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7189), 25, + ACTIONS(9894), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7187), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - 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_final, - anon_sym_override, - anon_sym_requires, - [8555] = 3, + anon_sym_COLON_RBRACK, + [6423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8400), 27, + ACTIONS(9896), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438815,6 +457990,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -438826,19 +458004,24 @@ 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_literal_suffix, - ACTIONS(8402), 36, + ACTIONS(9898), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -438855,108 +458038,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - 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_DASH_GT_STAR, - [8626] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8907), 1, - anon_sym___attribute, - ACTIONS(9025), 1, - anon_sym___attribute__, - STATE(3081), 1, - sym_attribute_specifier, - ACTIONS(7187), 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_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7189), 49, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_COLON_RBRACK, - [8703] = 9, + [6494] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8091), 1, - anon_sym_DASH_GT, - ACTIONS(8105), 1, + ACTIONS(6563), 1, anon_sym_requires, - STATE(2867), 1, + ACTIONS(8426), 1, + anon_sym_DASH_GT, + STATE(2973), 1, sym_trailing_return_type, - ACTIONS(8102), 2, + ACTIONS(6561), 2, anon_sym_final, anon_sym_override, - STATE(3248), 2, + STATE(3433), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(3528), 2, + STATE(3675), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8087), 26, - aux_sym_preproc_elif_token1, + ACTIONS(8424), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -438970,31 +458072,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_COLON, 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_identifier, - ACTIONS(8089), 28, + ACTIONS(8422), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -439007,14 +458103,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_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [8786] = 3, + anon_sym_COLON_RBRACK, + [6577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9558), 29, + ACTIONS(9900), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -439044,7 +458147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9560), 34, + ACTIONS(9902), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -439079,12 +458182,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [8857] = 3, + [6648] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6718), 22, + STATE(4132), 1, + sym_attribute_specifier, + ACTIONS(9244), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7399), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -439098,14 +458210,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6716), 41, + ACTIONS(7397), 35, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -439115,12 +458227,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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_final, + anon_sym_override, + anon_sym_requires, + [6723] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4141), 1, + sym_attribute_specifier, + ACTIONS(9244), 2, anon_sym___attribute__, anon_sym___attribute, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(7507), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7505), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -439135,7 +458311,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -439147,10 +458322,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [8928] = 3, + [6798] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 29, + ACTIONS(6508), 1, + anon_sym_requires, + ACTIONS(7799), 1, + anon_sym_DASH_GT, + STATE(3071), 1, + sym_trailing_return_type, + ACTIONS(6502), 2, + anon_sym_final, + anon_sym_override, + STATE(3433), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3628), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -439165,9 +458355,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -439180,10 +458367,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9564), 34, + ACTIONS(7791), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -439194,9 +458380,6 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -439213,27 +458396,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [8999] = 9, + [6881] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8548), 1, + ACTIONS(6508), 1, anon_sym_requires, - ACTIONS(9535), 1, + ACTIONS(7991), 1, anon_sym_DASH_GT, - STATE(2872), 1, + STATE(3029), 1, sym_trailing_return_type, - ACTIONS(8545), 2, + ACTIONS(6502), 2, anon_sym_final, anon_sym_override, - STATE(3248), 2, + STATE(3433), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(3541), 2, + STATE(3655), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8541), 26, + ACTIONS(7968), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -439260,7 +458441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(8543), 28, + ACTIONS(7966), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -439289,78 +458470,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [9082] = 3, + [6964] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7255), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(6508), 1, + anon_sym_requires, + ACTIONS(8478), 1, anon_sym_DASH_GT, - ACTIONS(7253), 37, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, + STATE(2973), 1, + sym_trailing_return_type, + ACTIONS(6502), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [9153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9566), 29, + STATE(3433), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3675), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -439375,9 +458503,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -439390,10 +458515,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9568), 34, + ACTIONS(8422), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -439404,9 +458528,6 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -439423,27 +458544,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [9224] = 9, + [7047] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7631), 1, - anon_sym_DASH_GT, - ACTIONS(7637), 1, + ACTIONS(6508), 1, anon_sym_requires, - STATE(2975), 1, + ACTIONS(9904), 1, + anon_sym_DASH_GT, + STATE(2977), 1, sym_trailing_return_type, - ACTIONS(7634), 2, + ACTIONS(6502), 2, anon_sym_final, anon_sym_override, - STATE(3248), 2, + STATE(3433), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(3497), 2, + STATE(3687), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7629), 19, + ACTIONS(8905), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439457,25 +458577,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, 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(7627), 35, + sym_identifier, + ACTIONS(8907), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -439488,21 +458614,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_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_COLON_RBRACK, - [9307] = 3, + [7130] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9570), 29, + ACTIONS(7799), 1, + anon_sym_DASH_GT, + ACTIONS(7805), 1, + anon_sym_requires, + STATE(3075), 1, + sym_trailing_return_type, + ACTIONS(7802), 2, + anon_sym_final, + anon_sym_override, + STATE(3433), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3628), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -439517,9 +458651,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -439532,10 +458663,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9572), 34, + ACTIONS(7791), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -439546,9 +458676,6 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -439565,12 +458692,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [9378] = 3, + [7213] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9574), 29, + ACTIONS(7991), 1, + anon_sym_DASH_GT, + ACTIONS(7997), 1, + anon_sym_requires, + STATE(3076), 1, + sym_trailing_return_type, + ACTIONS(7994), 2, + anon_sym_final, + anon_sym_override, + STATE(3433), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3655), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -439585,9 +458725,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -439600,10 +458737,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9576), 34, + ACTIONS(7966), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -439614,9 +458750,6 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -439633,12 +458766,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [9449] = 3, + [7296] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9578), 29, + ACTIONS(8478), 1, + anon_sym_DASH_GT, + ACTIONS(8484), 1, + anon_sym_requires, + STATE(3077), 1, + sym_trailing_return_type, + ACTIONS(8481), 2, + anon_sym_final, + anon_sym_override, + STATE(3433), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3675), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -439653,9 +458799,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -439668,10 +458811,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9580), 34, + ACTIONS(8422), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -439682,9 +458824,6 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -439701,12 +458840,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [9520] = 3, + [7379] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9582), 29, + ACTIONS(9018), 1, + anon_sym_requires, + ACTIONS(9904), 1, + anon_sym_DASH_GT, + STATE(3078), 1, + sym_trailing_return_type, + ACTIONS(9015), 2, + anon_sym_final, + anon_sym_override, + STATE(3433), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3687), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -439721,9 +458873,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -439736,10 +458885,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9584), 34, + ACTIONS(8907), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -439750,9 +458898,6 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -439769,12 +458914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [9591] = 3, + [7462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8454), 28, + ACTIONS(9907), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -439784,13 +458928,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___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -439802,15 +458947,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(8456), 34, + ACTIONS(9909), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -439819,6 +458972,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, @@ -439827,53 +458981,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, 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, - [9661] = 12, + anon_sym_COLON_RBRACK, + [7533] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, - anon_sym_COLON, - ACTIONS(8909), 1, - anon_sym_LBRACE, - ACTIONS(9586), 1, + STATE(4055), 1, + sym_attribute_specifier, + ACTIONS(9244), 2, anon_sym___attribute__, - ACTIONS(9588), 1, anon_sym___attribute, - STATE(4006), 1, - sym_attribute_specifier, - STATE(4282), 1, - sym_field_declaration_list, - STATE(9403), 1, - sym_virtual_specifier, - STATE(10085), 1, - sym_base_class_clause, - ACTIONS(7821), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6826), 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(6828), 42, + ACTIONS(7425), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -439885,9 +459008,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7423), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -439901,542 +459041,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_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, - anon_sym_requires, - [9749] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9590), 1, - anon_sym_LT, - STATE(4107), 1, - sym_template_argument_list, - ACTIONS(6208), 28, - 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_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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(6201), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_typename, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + anon_sym_DOT, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, + anon_sym_final, + anon_sym_override, anon_sym_requires, - sym_this, - [9825] = 3, + [7608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 13, + ACTIONS(9711), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(6722), 49, - 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___extension__, anon_sym___attribute__, - anon_sym_LBRACK_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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym___attribute, + anon_sym_COLON, + 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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [9895] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7109), 27, + anon_sym_DOT, + sym_identifier, + ACTIONS(9713), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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_COLON, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7107), 35, - aux_sym_preproc_elif_token1, + anon_sym_COLON_RBRACK, + [7679] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6563), 1, + anon_sym_requires, + ACTIONS(9838), 1, + anon_sym_DASH_GT, + STATE(2977), 1, + sym_trailing_return_type, + ACTIONS(6561), 2, + anon_sym_final, + anon_sym_override, + STATE(3433), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3687), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, + anon_sym_DOT, + ACTIONS(8907), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [9965] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [7762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6794), 13, + ACTIONS(9911), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, + anon_sym_COLON, + 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(6796), 49, + sym_identifier, + ACTIONS(9913), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [10035] = 3, + anon_sym_COLON_RBRACK, + [7833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6786), 13, + ACTIONS(9915), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, + anon_sym_COLON, + 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(6788), 49, + sym_identifier, + ACTIONS(9917), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [10105] = 17, + anon_sym_COLON_RBRACK, + [7904] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7739), 1, - anon_sym_const, - ACTIONS(8246), 1, + ACTIONS(6825), 1, anon_sym_LPAREN2, - ACTIONS(8262), 1, + ACTIONS(6839), 1, anon_sym_LBRACK, - ACTIONS(8520), 1, + ACTIONS(6917), 1, anon_sym_STAR, - ACTIONS(8522), 1, + ACTIONS(6919), 1, anon_sym_AMP_AMP, - ACTIONS(8524), 1, + ACTIONS(6921), 1, anon_sym_AMP, - STATE(2180), 1, + STATE(1946), 1, sym_parameter_list, - STATE(4050), 1, - sym_alignas_qualifier, - STATE(6536), 1, + STATE(3626), 1, sym__function_declarator_seq, - STATE(6767), 1, + STATE(4523), 1, sym__abstract_declarator, - ACTIONS(8264), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3918), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6612), 5, + STATE(3625), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6993), 8, + ACTIONS(9429), 24, + aux_sym_preproc_elif_token1, 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_DOT, - ACTIONS(8254), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6991), 23, - 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_RBRACK, - 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_DOT_STAR, - anon_sym_DASH_GT, - [10203] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7817), 1, - anon_sym_COLON, - ACTIONS(9592), 1, - anon_sym___attribute__, - ACTIONS(9594), 1, - anon_sym___attribute, - ACTIONS(9596), 1, - anon_sym_LBRACE, - STATE(4235), 1, - sym_field_declaration_list, - STATE(4399), 1, - sym_attribute_specifier, - STATE(9295), 1, - sym_virtual_specifier, - STATE(10069), 1, - sym_base_class_clause, - ACTIONS(7821), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6826), 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(6828), 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___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_GT2, - anon_sym_requires, - [10291] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9462), 1, - anon_sym_new, - ACTIONS(9598), 1, - anon_sym_delete, - ACTIONS(9346), 3, - anon_sym_TILDE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9340), 6, - anon_sym_STAR, - anon_sym___based, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9342), 25, + ACTIONS(9427), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -440453,9 +459407,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9344), 26, + [7993] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9919), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -440468,7 +459427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -440480,300 +459439,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - [10369] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9590), 1, - anon_sym_LT, - STATE(4107), 1, - sym_template_argument_list, - ACTIONS(5272), 28, - 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_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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(7031), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_typename, - anon_sym_asm, - 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, - [10445] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(9604), 1, - anon_sym_virtual, - STATE(4644), 1, - sym_alignas_qualifier, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3915), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(7874), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(9602), 12, + ACTIONS(9921), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7870), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(9600), 13, - anon_sym_AMP, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [10533] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9606), 1, - sym_ms_restrict_modifier, - STATE(4191), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(9609), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(9612), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3862), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(6600), 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(6602), 44, - 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___extension__, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [10613] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7441), 1, - anon_sym___attribute__, - ACTIONS(7443), 1, - anon_sym___attribute, - ACTIONS(7445), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7456), 1, - anon_sym_noexcept, - ACTIONS(7458), 1, - anon_sym_throw, - ACTIONS(7460), 1, - anon_sym_requires, - ACTIONS(9615), 1, - anon_sym_AMP_AMP, - ACTIONS(9618), 1, - anon_sym_AMP, - ACTIONS(9621), 1, - anon_sym_DASH_GT, - STATE(3996), 1, - sym_ref_qualifier, - STATE(6163), 1, - sym__function_attributes_end, - STATE(6254), 1, - sym_trailing_return_type, - STATE(8995), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7454), 2, - anon_sym_final, - anon_sym_override, - STATE(6065), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6276), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6331), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6604), 2, - sym__function_postfix, - sym_requires_clause, - STATE(4464), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7546), 11, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [8064] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9244), 1, + anon_sym___attribute, + ACTIONS(9312), 1, + anon_sym___attribute__, + STATE(3243), 1, + sym_attribute_specifier, + ACTIONS(7397), 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_LBRACK, + anon_sym_COLON, + anon_sym_const, anon_sym_DOT, - ACTIONS(7544), 22, + ACTIONS(7399), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -440785,17 +459541,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_GT2, - [10725] = 6, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [8141] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(8879), 1, - anon_sym_LT, - STATE(4000), 1, - sym_template_argument_list, - ACTIONS(6201), 11, + ACTIONS(9244), 1, + anon_sym___attribute, + ACTIONS(9312), 1, + anon_sym___attribute__, + STATE(3164), 1, + sym_attribute_specifier, + ACTIONS(7505), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -440803,13 +459563,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym___attribute, + anon_sym_LT, anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(6208), 48, + ACTIONS(7507), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -440821,11 +459582,12 @@ 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___extension__, - anon_sym___attribute__, + 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, @@ -440851,103 +459613,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_requires, - [10801] = 24, + anon_sym_COLON_RBRACK, + [8218] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7497), 1, + STATE(4078), 1, + sym_attribute_specifier, + ACTIONS(9244), 2, anon_sym___attribute__, - ACTIONS(7499), 1, anon_sym___attribute, - ACTIONS(7501), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7513), 1, - anon_sym_noexcept, - ACTIONS(7515), 1, - anon_sym_throw, - ACTIONS(7598), 1, - anon_sym_requires, - ACTIONS(9624), 1, - anon_sym_AMP_AMP, - ACTIONS(9627), 1, - anon_sym_AMP, - ACTIONS(9630), 1, - anon_sym_DASH_GT, - STATE(4011), 1, - sym_ref_qualifier, - STATE(6170), 1, - sym__function_attributes_end, - STATE(6194), 1, - sym_trailing_return_type, - STATE(8976), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7596), 2, - anon_sym_final, - anon_sym_override, - STATE(6071), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6313), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6389), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6558), 2, - sym__function_postfix, - sym_requires_clause, - STATE(4489), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7546), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(7544), 24, + ACTIONS(7437), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7435), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_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, - [10913] = 3, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [8293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8446), 28, + ACTIONS(9923), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -440957,13 +459701,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___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -440975,15 +459720,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(8448), 34, + ACTIONS(9925), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -440992,6 +459745,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, @@ -441000,88 +459754,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, 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, - [10983] = 3, + anon_sym_COLON_RBRACK, + [8364] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6790), 15, + ACTIONS(9927), 1, + anon_sym_LT, + STATE(3805), 1, + sym_template_argument_list, + ACTIONS(9711), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, + 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(6792), 47, + sym_identifier, + ACTIONS(9713), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [11053] = 3, + anon_sym_COLON_RBRACK, + [8439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8382), 28, + ACTIONS(9930), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441091,13 +459839,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___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -441109,15 +459858,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(8384), 34, + ACTIONS(9932), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -441126,6 +459883,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, @@ -441134,21 +459892,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, 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, - [11123] = 3, + anon_sym_COLON_RBRACK, + [8510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8400), 28, + ACTIONS(8657), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441158,13 +459906,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, @@ -441175,16 +459921,19 @@ 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_literal_suffix, - ACTIONS(8402), 34, + ACTIONS(8659), 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, @@ -441193,6 +459942,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, @@ -441200,22 +459950,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - 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, - [11193] = 3, + anon_sym_DASH_GT_STAR, + [8581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8446), 26, + ACTIONS(9224), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441229,6 +459979,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -441240,18 +459993,24 @@ 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(8448), 36, + sym_identifier, + ACTIONS(9222), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -441268,21 +460027,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - 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_DASH_GT_STAR, - [11263] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [8652] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4084), 1, + sym_attribute_specifier, + ACTIONS(9244), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7455), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7453), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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_final, + anon_sym_override, + anon_sym_requires, + [8727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 21, + ACTIONS(9934), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441296,18 +460117,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, + anon_sym_COLON, 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___asm, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9406), 41, + sym_identifier, + ACTIONS(9936), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -441315,12 +460147,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -441332,24 +460161,17 @@ 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_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_try, - [11333] = 3, + anon_sym_COLON_RBRACK, + [8798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 21, + ACTIONS(9938), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441363,18 +460185,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, + anon_sym_COLON, 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___asm, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9406), 41, + sym_identifier, + ACTIONS(9940), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -441382,12 +460215,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -441399,38 +460229,16 @@ 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_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_try, - [11403] = 3, + anon_sym_COLON_RBRACK, + [8869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6790), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(6792), 49, + ACTIONS(3118), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -441441,13 +460249,35 @@ 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3128), 43, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + 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___extension__, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, + anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -441461,47 +460291,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + sym_primitive_type, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [11473] = 3, + [8940] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2768), 15, + ACTIONS(9244), 1, + anon_sym___attribute, + ACTIONS(9312), 1, + anon_sym___attribute__, + STATE(3199), 1, + sym_attribute_specifier, + ACTIONS(7427), 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___attribute, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_const, - anon_sym___asm, anon_sym_DOT, - ACTIONS(2758), 47, + ACTIONS(7429), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -441510,10 +460336,15 @@ 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -441537,20 +460368,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [11543] = 3, + anon_sym_COLON_RBRACK, + [9017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 15, + ACTIONS(7079), 20, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(7077), 43, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -441561,14 +460409,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, + anon_sym___extension__, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, - anon_sym___asm, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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, - ACTIONS(6718), 47, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [9088] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7633), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -441577,10 +460460,32 @@ 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_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7631), 37, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -441594,30 +460499,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [11613] = 3, + [9159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 21, + ACTIONS(8750), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441631,15 +460527,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym___asm, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9406), 41, + anon_sym_DASH_GT, + sym_identifier, + sym_literal_suffix, + ACTIONS(8752), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -441649,13 +460551,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___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -441667,24 +460563,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_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [11683] = 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_DASH_GT_STAR, + [9230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 21, + ACTIONS(9942), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441698,18 +460596,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, + anon_sym_COLON, 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___asm, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9406), 41, + sym_identifier, + ACTIONS(9944), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -441717,12 +460626,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -441734,24 +460640,17 @@ 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_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_try, - [11753] = 3, + anon_sym_COLON_RBRACK, + [9301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 21, + ACTIONS(9946), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441765,18 +460664,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, + anon_sym_COLON, 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___asm, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9406), 41, + sym_identifier, + ACTIONS(9948), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -441784,12 +460694,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -441801,24 +460708,371 @@ 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, + anon_sym_COLON_RBRACK, + [9372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8697), 27, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + sym_literal_suffix, + ACTIONS(8699), 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_DOT_STAR, + 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_DASH_GT_STAR, + [9443] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7719), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7717), 37, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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_final, + anon_sym_override, + anon_sym_requires, + [9514] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9244), 1, + anon_sym___attribute, + ACTIONS(9312), 1, + anon_sym___attribute__, + STATE(3212), 1, + sym_attribute_specifier, + ACTIONS(7531), 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_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7533), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [9591] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7077), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(7079), 49, + 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___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [9661] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8600), 1, + anon_sym_LPAREN2, + ACTIONS(8616), 1, + anon_sym_LBRACK, + ACTIONS(8618), 1, + anon_sym_const, + ACTIONS(8958), 1, + anon_sym_STAR, + ACTIONS(8960), 1, + anon_sym_AMP_AMP, + ACTIONS(8962), 1, + anon_sym_AMP, + STATE(2249), 1, + sym_parameter_list, + STATE(3945), 1, + sym_alignas_qualifier, + STATE(6709), 1, + sym__function_declarator_seq, + STATE(6902), 1, + sym__abstract_declarator, + ACTIONS(8620), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6708), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6821), 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(8608), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6823), 21, + 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_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_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_try, - [11823] = 3, + anon_sym_GT2, + [9759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 21, + ACTIONS(9760), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441840,7 +461094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym___asm, anon_sym_DOT, - ACTIONS(9406), 41, + ACTIONS(9762), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -441882,10 +461136,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_try, - [11893] = 3, + [9829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8446), 26, + ACTIONS(8657), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -441895,11 +461149,13 @@ 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, @@ -441912,7 +461168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_identifier, sym_literal_suffix, - ACTIONS(8448), 36, + ACTIONS(8659), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -441920,9 +461176,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -441930,7 +461184,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, @@ -441944,68 +461197,119 @@ static const uint16_t ts_small_parse_table[] = { 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, - [11963] = 3, + [9899] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8454), 26, + ACTIONS(8092), 1, + anon_sym_const, + ACTIONS(8572), 1, + anon_sym_LPAREN2, + ACTIONS(8588), 1, + anon_sym_LBRACK, + ACTIONS(8964), 1, + anon_sym_STAR, + ACTIONS(8966), 1, + anon_sym_AMP_AMP, + ACTIONS(8968), 1, + anon_sym_AMP, + STATE(2267), 1, + sym_parameter_list, + STATE(4183), 1, + sym_alignas_qualifier, + STATE(6608), 1, + sym__function_declarator_seq, + STATE(6872), 1, + sym__abstract_declarator, + ACTIONS(8590), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3860), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6607), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7347), 8, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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_identifier, - sym_literal_suffix, - ACTIONS(8456), 36, + ACTIONS(8580), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(7345), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_PERCENT, anon_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_LT_LT, + anon_sym_GT_GT, 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, + [9997] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7087), 1, + anon_sym_COLON_COLON, + ACTIONS(9950), 1, + anon_sym_LT, + STATE(4219), 1, + sym_template_argument_list, + ACTIONS(7090), 28, + 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_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, @@ -442016,63 +461320,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [12033] = 3, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(7085), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + 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, + [10073] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8382), 26, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + STATE(3892), 1, + sym_argument_list, + STATE(5964), 1, + sym_initializer_list, + ACTIONS(7457), 26, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + 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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(7459), 31, anon_sym_DASH, anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + 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, + [10153] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8600), 1, + anon_sym_LPAREN2, + ACTIONS(8616), 1, + anon_sym_LBRACK, + ACTIONS(8618), 1, + anon_sym_const, + ACTIONS(8958), 1, anon_sym_STAR, + ACTIONS(8960), 1, + anon_sym_AMP_AMP, + ACTIONS(8962), 1, + anon_sym_AMP, + STATE(2249), 1, + sym_parameter_list, + STATE(3945), 1, + sym_alignas_qualifier, + STATE(6709), 1, + sym__function_declarator_seq, + STATE(6812), 1, + sym__abstract_declarator, + ACTIONS(8620), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6708), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7353), 10, + 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_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_literal_suffix, - ACTIONS(8384), 36, + ACTIONS(8608), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(7355), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_PERCENT, anon_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_RBRACK, + 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_GT_GT_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, + anon_sym_GT2, + [10251] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(9950), 1, + anon_sym_LT, + STATE(4214), 1, + sym_template_argument_list, + ACTIONS(6572), 28, + 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_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, @@ -442083,10 +461543,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [12103] = 3, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6565), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + 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, + [10327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8400), 26, + ACTIONS(8697), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -442096,11 +461590,13 @@ 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, @@ -442113,7 +461609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_identifier, sym_literal_suffix, - ACTIONS(8402), 36, + ACTIONS(8699), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -442121,9 +461617,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -442131,7 +461625,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, @@ -442145,15 +461638,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [12173] = 3, + [10397] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2768), 13, + ACTIONS(9952), 1, + sym_ms_restrict_modifier, + STATE(4309), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(9955), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(9958), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3965), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(6942), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -442162,12 +461669,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - anon_sym_LBRACK, anon_sym_const, - anon_sym___asm, anon_sym_DOT, - ACTIONS(2758), 49, + ACTIONS(6944), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -442182,8 +461686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, @@ -442208,33 +461711,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [12243] = 3, + [10477] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 13, + ACTIONS(8156), 1, + anon_sym_COLON, + ACTIONS(9961), 1, + anon_sym___attribute__, + ACTIONS(9963), 1, + anon_sym___attribute, + ACTIONS(9965), 1, + anon_sym_LBRACE, + STATE(4376), 1, + sym_field_declaration_list, + STATE(4531), 1, + sym_attribute_specifier, + STATE(9423), 1, + sym_virtual_specifier, + STATE(10286), 1, + sym_base_class_clause, + ACTIONS(8160), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7235), 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___attribute, - anon_sym_LBRACK, + anon_sym_GT_GT, anon_sym_const, - anon_sym___asm, anon_sym_DOT, - ACTIONS(6718), 49, + ACTIONS(7237), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -442245,13 +461762,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___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -442275,109 +461788,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [12313] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(6861), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6915), 1, - anon_sym_noexcept, - ACTIONS(6917), 1, - anon_sym_throw, - ACTIONS(6919), 1, + anon_sym_GT2, anon_sym_requires, - ACTIONS(8812), 1, - anon_sym_AMP_AMP, - ACTIONS(8815), 1, - anon_sym_AMP, - ACTIONS(9633), 1, - anon_sym___attribute__, - ACTIONS(9636), 1, - anon_sym___attribute, - ACTIONS(9639), 1, - anon_sym_DASH_GT, - STATE(3957), 1, - sym_ref_qualifier, - STATE(5718), 1, - sym_trailing_return_type, - STATE(6082), 1, - sym__function_attributes_end, - STATE(8992), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(6913), 2, - anon_sym_final, - anon_sym_override, - STATE(4374), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4622), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5258), 2, - sym__function_postfix, - sym_requires_clause, - STATE(4487), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7546), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(7544), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [12425] = 4, + [10565] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, + ACTIONS(7227), 1, anon_sym_COLON_COLON, - ACTIONS(6800), 26, + ACTIONS(7225), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -442404,7 +461824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6798), 35, + ACTIONS(7223), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -442440,82 +461860,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [12497] = 24, + [10637] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7441), 1, + ACTIONS(9746), 1, + anon_sym_new, + ACTIONS(9967), 1, + anon_sym_delete, + ACTIONS(9601), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9595), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9597), 25, + anon_sym_DOT_DOT_DOT, + 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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, + ACTIONS(9599), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, - ACTIONS(7443), 1, anon_sym___attribute, - ACTIONS(7445), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7456), 1, - anon_sym_noexcept, - ACTIONS(7458), 1, - anon_sym_throw, - ACTIONS(9615), 1, + anon_sym_LBRACK, + 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, + [10715] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8092), 1, + anon_sym_const, + ACTIONS(8572), 1, + anon_sym_LPAREN2, + ACTIONS(8588), 1, + anon_sym_LBRACK, + ACTIONS(8964), 1, + anon_sym_STAR, + ACTIONS(8966), 1, anon_sym_AMP_AMP, - ACTIONS(9618), 1, + ACTIONS(8968), 1, anon_sym_AMP, - ACTIONS(9621), 1, + STATE(2267), 1, + sym_parameter_list, + STATE(4183), 1, + sym_alignas_qualifier, + STATE(6608), 1, + sym__function_declarator_seq, + STATE(6772), 1, + sym__abstract_declarator, + ACTIONS(8590), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3860), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6607), 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_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8580), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6823), 23, + 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_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_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9645), 1, - anon_sym_requires, - STATE(3961), 1, - sym_ref_qualifier, - STATE(6181), 1, - sym__function_attributes_end, - STATE(6215), 1, - sym_trailing_return_type, - STATE(8995), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9642), 2, - anon_sym_final, - anon_sym_override, - STATE(6065), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6276), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6331), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6604), 2, - sym__function_postfix, - sym_requires_clause, - STATE(4503), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7546), 11, + [10813] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9969), 1, + sym_ms_restrict_modifier, + STATE(4321), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(9972), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(9975), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3970), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(6942), 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_LBRACK, + anon_sym_const, anon_sym_DOT, - ACTIONS(7544), 22, + ACTIONS(6944), 42, 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___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -442527,84 +462079,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_GT2, - [12609] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7497), 1, - anon_sym___attribute__, - ACTIONS(7499), 1, - anon_sym___attribute, - ACTIONS(7501), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7513), 1, - anon_sym_noexcept, - ACTIONS(7515), 1, - anon_sym_throw, - ACTIONS(9624), 1, - anon_sym_AMP_AMP, - ACTIONS(9627), 1, - anon_sym_AMP, - ACTIONS(9630), 1, anon_sym_DASH_GT, - ACTIONS(9651), 1, - anon_sym_requires, - STATE(3964), 1, - sym_ref_qualifier, - STATE(6162), 1, - sym__function_attributes_end, - STATE(6234), 1, - sym_trailing_return_type, - STATE(8976), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9648), 2, anon_sym_final, anon_sym_override, - STATE(6071), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6313), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6389), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6558), 2, - sym__function_postfix, - sym_requires_clause, - STATE(4516), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7546), 9, + anon_sym_GT2, + anon_sym_requires, + [10893] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(9978), 1, + anon_sym_LT, + STATE(4054), 1, + sym_template_argument_list, + ACTIONS(6565), 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_LBRACK, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, anon_sym_DOT, - ACTIONS(7544), 24, + ACTIONS(6572), 46, 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___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -442616,10 +462147,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [12721] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [10969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8454), 26, + ACTIONS(9760), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -442633,20 +462171,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_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___asm, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(8456), 36, + ACTIONS(9762), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -442656,7 +462189,13 @@ 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_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -442668,57 +462207,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, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - 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_DASH_GT_STAR, - [12791] = 17, + anon_sym_DASH_GT, + anon_sym_try, + [11039] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8224), 1, + ACTIONS(8600), 1, anon_sym_LPAREN2, - ACTIONS(8240), 1, + ACTIONS(8616), 1, anon_sym_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8618), 1, anon_sym_const, - ACTIONS(8589), 1, + ACTIONS(8958), 1, anon_sym_STAR, - ACTIONS(8591), 1, + ACTIONS(8960), 1, anon_sym_AMP_AMP, - ACTIONS(8593), 1, + ACTIONS(8962), 1, anon_sym_AMP, - STATE(2144), 1, + STATE(2249), 1, sym_parameter_list, - STATE(3785), 1, + STATE(3945), 1, sym_alignas_qualifier, - STATE(6497), 1, + STATE(6709), 1, sym__function_declarator_seq, - STATE(6670), 1, + STATE(6737), 1, sym__abstract_declarator, - ACTIONS(8244), 2, + ACTIONS(8620), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3553), 2, + STATE(3981), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6488), 5, + STATE(6708), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6997), 10, + ACTIONS(7393), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -442729,7 +462267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(8232), 12, + ACTIONS(8608), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -442742,7 +462280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6995), 21, + ACTIONS(7391), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PERCENT, @@ -442764,54 +462302,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [12889] = 17, + [11137] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8224), 1, - anon_sym_LPAREN2, - ACTIONS(8240), 1, - anon_sym_LBRACK, - ACTIONS(8242), 1, - anon_sym_const, - ACTIONS(8589), 1, - anon_sym_STAR, - ACTIONS(8591), 1, - anon_sym_AMP_AMP, - ACTIONS(8593), 1, - anon_sym_AMP, - STATE(2144), 1, - sym_parameter_list, - STATE(3785), 1, - sym_alignas_qualifier, - STATE(6497), 1, - sym__function_declarator_seq, - STATE(6673), 1, - sym__abstract_declarator, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3897), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6488), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7001), 10, + ACTIONS(6871), 1, + anon_sym_decltype, + ACTIONS(7457), 1, + anon_sym_LBRACE, + ACTIONS(9443), 1, + sym_auto, + STATE(3215), 1, + sym_decltype_auto, + ACTIONS(7223), 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___attribute, + anon_sym_COLON, + anon_sym_const, anon_sym_DOT, - ACTIONS(8232), 12, + ACTIONS(7225), 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___extension__, + anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -442823,15 +462358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6999), 21, - 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_LT_LT, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -442844,154 +462372,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [12987] = 6, + anon_sym_COLON_RBRACK, + [11215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6748), 1, - anon_sym_COLON_COLON, - ACTIONS(9590), 1, - anon_sym_LT, - STATE(4164), 1, - sym_template_argument_list, - ACTIONS(6751), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(9760), 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_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(9762), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - 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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(6746), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_typename, anon_sym_asm, 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, - [13063] = 24, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_try, + [11285] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(6861), 1, + ACTIONS(7816), 1, + anon_sym___attribute__, + ACTIONS(7818), 1, + anon_sym___attribute, + ACTIONS(7820), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6915), 1, + ACTIONS(7831), 1, anon_sym_noexcept, - ACTIONS(6917), 1, + ACTIONS(7833), 1, anon_sym_throw, - ACTIONS(8812), 1, + ACTIONS(7835), 1, + anon_sym_requires, + ACTIONS(9981), 1, anon_sym_AMP_AMP, - ACTIONS(8815), 1, + ACTIONS(9984), 1, anon_sym_AMP, - ACTIONS(8824), 1, - anon_sym_requires, - ACTIONS(9633), 1, - anon_sym___attribute__, - ACTIONS(9636), 1, - anon_sym___attribute, - ACTIONS(9639), 1, + ACTIONS(9987), 1, anon_sym_DASH_GT, - STATE(3971), 1, + STATE(4085), 1, sym_ref_qualifier, - STATE(5711), 1, - sym_trailing_return_type, - STATE(6050), 1, + STATE(6274), 1, sym__function_attributes_end, - STATE(8992), 1, + STATE(6299), 1, + sym_trailing_return_type, + STATE(9096), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8821), 2, + ACTIONS(7829), 2, anon_sym_final, anon_sym_override, - STATE(4374), 2, + STATE(6157), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4622), 2, + STATE(6403), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4709), 2, + STATE(6501), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5258), 2, + STATE(6697), 2, sym__function_postfix, sym_requires_clause, - STATE(4506), 3, + STATE(4608), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7546), 9, + ACTIONS(7789), 11, + 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_LBRACK, + anon_sym_DOT, + ACTIONS(7791), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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_GT2, + [11397] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7108), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute, anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, anon_sym_DOT, - ACTIONS(7544), 24, + ACTIONS(7110), 49, 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_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -443002,11 +462586,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - [13175] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [11467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 15, + ACTIONS(7108), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -443022,7 +462614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym___asm, anon_sym_DOT, - ACTIONS(6722), 47, + ACTIONS(7110), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -443070,54 +462662,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [13245] = 17, + [11537] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8224), 1, - anon_sym_LPAREN2, ACTIONS(8240), 1, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, ACTIONS(8242), 1, - anon_sym_const, - ACTIONS(8589), 1, - anon_sym_STAR, - ACTIONS(8591), 1, - anon_sym_AMP_AMP, - ACTIONS(8593), 1, - anon_sym_AMP, - STATE(2144), 1, - sym_parameter_list, - STATE(3785), 1, + anon_sym___declspec, + ACTIONS(9994), 1, + anon_sym_virtual, + STATE(4722), 1, sym_alignas_qualifier, - STATE(6497), 1, - sym__function_declarator_seq, - STATE(6697), 1, - sym__abstract_declarator, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3553), 2, + STATE(4024), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6488), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6495), 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(8232), 12, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(8234), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(9992), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(8230), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -443129,15 +462724,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6497), 21, + ACTIONS(9990), 13, + anon_sym_AMP, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [11625] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7180), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7192), 1, + anon_sym_noexcept, + ACTIONS(7194), 1, + anon_sym_throw, + ACTIONS(9196), 1, + anon_sym_AMP_AMP, + ACTIONS(9199), 1, + anon_sym_AMP, + ACTIONS(9219), 1, + anon_sym_requires, + ACTIONS(9996), 1, + anon_sym___attribute__, + ACTIONS(9999), 1, + anon_sym___attribute, + ACTIONS(10002), 1, + anon_sym_DASH_GT, + STATE(4087), 1, + sym_ref_qualifier, + STATE(5898), 1, + sym_trailing_return_type, + STATE(6162), 1, + sym__function_attributes_end, + STATE(9134), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9216), 2, + anon_sym_final, + anon_sym_override, + STATE(4485), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5460), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4598), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7789), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7791), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -443149,44 +462826,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [13343] = 17, + [11737] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8224), 1, + ACTIONS(8600), 1, anon_sym_LPAREN2, - ACTIONS(8240), 1, + ACTIONS(8616), 1, anon_sym_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8618), 1, anon_sym_const, - ACTIONS(8589), 1, + ACTIONS(8958), 1, anon_sym_STAR, - ACTIONS(8591), 1, + ACTIONS(8960), 1, anon_sym_AMP_AMP, - ACTIONS(8593), 1, + ACTIONS(8962), 1, anon_sym_AMP, - STATE(2144), 1, + STATE(2249), 1, sym_parameter_list, - STATE(3785), 1, + STATE(3945), 1, sym_alignas_qualifier, - STATE(6497), 1, + STATE(6709), 1, sym__function_declarator_seq, - STATE(6676), 1, + STATE(6743), 1, sym__abstract_declarator, - ACTIONS(8244), 2, + ACTIONS(8620), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3553), 2, + STATE(3691), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6488), 5, + STATE(6708), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7005), 10, + ACTIONS(7349), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -443197,7 +462872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(8232), 12, + ACTIONS(8608), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -443210,7 +462885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7003), 21, + ACTIONS(7351), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PERCENT, @@ -443232,10 +462907,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [13441] = 3, + [11835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8382), 26, + ACTIONS(8697), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443262,7 +462937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_literal_suffix, - ACTIONS(8384), 36, + ACTIONS(8699), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -443299,169 +462974,332 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, anon_sym_DASH_GT_STAR, - [13511] = 12, + [11905] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6648), 1, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(9950), 1, + anon_sym_LT, + STATE(4214), 1, + sym_template_argument_list, + ACTIONS(5657), 28, anon_sym_LPAREN2, - ACTIONS(6650), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(7371), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + 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, + [11981] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, + anon_sym_LT, + STATE(3735), 1, + sym_template_argument_list, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5659), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7359), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(6652), 1, anon_sym_AMP_AMP, - ACTIONS(6654), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7357), 41, anon_sym_AMP, - ACTIONS(6664), 1, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [12061] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8600), 1, + anon_sym_LPAREN2, + ACTIONS(8616), 1, anon_sym_LBRACK, - STATE(1867), 1, + ACTIONS(8618), 1, + anon_sym_const, + ACTIONS(8958), 1, + anon_sym_STAR, + ACTIONS(8960), 1, + anon_sym_AMP_AMP, + ACTIONS(8962), 1, + anon_sym_AMP, + STATE(2249), 1, sym_parameter_list, - STATE(4465), 1, - sym__abstract_declarator, - STATE(4681), 1, + STATE(3945), 1, + sym_alignas_qualifier, + STATE(6709), 1, sym__function_declarator_seq, - STATE(4672), 5, + STATE(6748), 1, + sym__abstract_declarator, + ACTIONS(8620), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3962), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6708), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(9074), 17, + ACTIONS(7341), 10, 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_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9072), 32, + ACTIONS(8608), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(7343), 21, 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [13599] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [12159] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9456), 21, + ACTIONS(8600), 1, + anon_sym_LPAREN2, + ACTIONS(8616), 1, + anon_sym_LBRACK, + ACTIONS(8618), 1, + anon_sym_const, + ACTIONS(8958), 1, + anon_sym_STAR, + ACTIONS(8960), 1, + anon_sym_AMP_AMP, + ACTIONS(8962), 1, + anon_sym_AMP, + STATE(2249), 1, + sym_parameter_list, + STATE(3945), 1, + sym_alignas_qualifier, + STATE(6709), 1, + sym__function_declarator_seq, + STATE(6878), 1, + sym__abstract_declarator, + ACTIONS(8620), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6708), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7347), 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___attribute, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym___asm, anon_sym_DOT, - ACTIONS(9458), 41, + ACTIONS(8608), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(7345), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_PERCENT, anon_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___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + 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_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_try, - [13669] = 3, + anon_sym_GT2, + [12257] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6794), 15, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(9262), 1, + anon_sym_LT, + STATE(4130), 1, + sym_template_argument_list, + ACTIONS(6565), 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___attribute, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_const, - anon_sym___asm, anon_sym_DOT, - ACTIONS(6796), 47, + ACTIONS(6572), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -443472,10 +463310,14 @@ 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___extension__, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -443499,140 +463341,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [13739] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(9604), 1, - anon_sym_virtual, - STATE(4644), 1, - sym_alignas_qualifier, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3915), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(7874), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(9656), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7870), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(9654), 13, - anon_sym_AMP, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [13827] = 17, + [12333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8224), 1, - anon_sym_LPAREN2, - ACTIONS(8240), 1, - anon_sym_LBRACK, - ACTIONS(8242), 1, - anon_sym_const, - ACTIONS(8589), 1, - anon_sym_STAR, - ACTIONS(8591), 1, - anon_sym_AMP_AMP, - ACTIONS(8593), 1, - anon_sym_AMP, - STATE(2144), 1, - sym_parameter_list, - STATE(3785), 1, - sym_alignas_qualifier, - STATE(6497), 1, - sym__function_declarator_seq, - STATE(6683), 1, - sym__abstract_declarator, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3553), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6488), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7009), 10, + ACTIONS(7132), 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___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, anon_sym_DOT, - ACTIONS(8232), 12, + ACTIONS(7134), 49, + 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___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -443644,15 +463394,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7007), 21, - 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_LT_LT, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -443663,104 +463406,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [13925] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(9658), 1, - anon_sym_LBRACE, - STATE(4569), 1, - sym_field_declaration_list, - STATE(4673), 1, - sym_attribute_specifier, - STATE(9463), 1, - sym_virtual_specifier, - STATE(10317), 1, - sym_base_class_clause, - ACTIONS(6836), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6828), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6826), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [14011] = 3, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [12403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6786), 15, + ACTIONS(7158), 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___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, anon_sym_DOT, - ACTIONS(6788), 47, + ACTIONS(7160), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -443771,10 +463443,13 @@ 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___extension__, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -443804,14 +463479,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [14081] = 3, + [12473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8400), 26, + ACTIONS(8657), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443838,7 +463512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_literal_suffix, - ACTIONS(8402), 36, + ACTIONS(8659), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -443875,34 +463549,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, anon_sym_DASH_GT_STAR, - [14151] = 7, + [12543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6507), 1, - anon_sym_decltype, - ACTIONS(7183), 1, - anon_sym_LBRACE, - ACTIONS(9076), 1, - sym_auto, - STATE(3030), 1, - sym_decltype_auto, - ACTIONS(6798), 12, + ACTIONS(3128), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, 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___attribute, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_const, + anon_sym___asm, anon_sym_DOT, - ACTIONS(6800), 46, + ACTIONS(3118), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -443911,15 +463579,10 @@ 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___extension__, anon_sym___attribute__, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -443943,13 +463606,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [14229] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [12613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8416), 22, + ACTIONS(8704), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -443972,7 +463642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8418), 40, + ACTIONS(8706), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -444013,88 +463683,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_requires, anon_sym_DASH_GT_STAR, - [14299] = 8, + [12683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9660), 1, - sym_ms_restrict_modifier, - STATE(4192), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(9663), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(9666), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3909), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(6600), 12, + ACTIONS(8750), 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_const, + 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(6602), 42, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(8752), 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_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [14379] = 6, + 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_DASH_GT_STAR, + [12753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9669), 1, - anon_sym_LT, - STATE(3968), 1, - sym_template_argument_list, - ACTIONS(6201), 13, + ACTIONS(7077), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -444103,12 +463762,14 @@ 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___attribute, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_const, + anon_sym___asm, anon_sym_DOT, - ACTIONS(6208), 46, + ACTIONS(7079), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -444122,8 +463783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -444147,97 +463807,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_GT2, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [14455] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - STATE(3601), 1, - sym_template_argument_list, - STATE(4121), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5274), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7019), 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7017), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [14535] = 5, + [12823] = 3, ACTIONS(3), 1, sym_comment, - STATE(3913), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9674), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6798), 13, + ACTIONS(7081), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -444249,9 +463832,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, + anon_sym___asm, anon_sym_DOT, - ACTIONS(6800), 44, + ACTIONS(7083), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -444265,8 +463850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -444290,237 +463874,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [14609] = 5, + [12893] = 3, ACTIONS(3), 1, sym_comment, - STATE(3670), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9676), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7387), 13, + ACTIONS(9760), 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___attribute, - anon_sym_const, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - ACTIONS(7389), 44, + ACTIONS(9762), 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_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + 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_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [14683] = 5, + anon_sym_try, + [12963] = 9, ACTIONS(3), 1, sym_comment, - STATE(3670), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9676), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7391), 13, + ACTIONS(7385), 1, + anon_sym_LBRACE, + ACTIONS(10007), 1, + anon_sym_COLON, + STATE(2119), 1, + sym__enum_base_clause, + STATE(2137), 1, + sym_enumerator_list, + STATE(2196), 1, + sym_attribute_specifier, + ACTIONS(7239), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8000), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + 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(7393), 44, + sym_identifier, + ACTIONS(8002), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_EQ, 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [14757] = 12, + [13045] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9685), 1, - anon_sym_virtual, - ACTIONS(9694), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9697), 1, - anon_sym___declspec, - STATE(4644), 1, - sym_alignas_qualifier, - ACTIONS(9691), 2, + ACTIONS(7385), 1, + anon_sym_LBRACE, + ACTIONS(10007), 1, + anon_sym_COLON, + STATE(2118), 1, + sym__enum_base_clause, + STATE(2136), 1, + sym_enumerator_list, + STATE(2200), 1, + sym_attribute_specifier, + ACTIONS(7239), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(9700), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3915), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(9688), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(9680), 12, + ACTIONS(8006), 26, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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_identifier, + ACTIONS(8008), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(9678), 13, - anon_sym_AMP, - 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_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9682), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [14845] = 5, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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, + [13127] = 5, ACTIONS(3), 1, sym_comment, - STATE(3922), 1, + STATE(3823), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(9703), 4, + ACTIONS(10009), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7402), 13, + ACTIONS(7727), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -444534,7 +464121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7404), 44, + ACTIONS(7729), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -444579,33 +464166,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [14919] = 5, + [13201] = 3, ACTIONS(3), 1, sym_comment, - STATE(3923), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9705), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7408), 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___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7410), 44, + ACTIONS(7475), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -444614,11 +464184,31 @@ 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___extension__, - anon_sym___attribute__, + anon_sym_GT_GT, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7473), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -444632,139 +464222,348 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_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, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [14993] = 17, + [13271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7739), 1, - anon_sym_const, - ACTIONS(8246), 1, + ACTIONS(8665), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(8667), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8262), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - ACTIONS(8520), 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_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_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_DASH_GT_STAR, + [13341] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7006), 1, + anon_sym_LPAREN2, + ACTIONS(7008), 1, anon_sym_STAR, - ACTIONS(8522), 1, + ACTIONS(7010), 1, anon_sym_AMP_AMP, - ACTIONS(8524), 1, + ACTIONS(7012), 1, anon_sym_AMP, - STATE(2180), 1, + ACTIONS(7022), 1, + anon_sym_LBRACK, + STATE(1972), 1, sym_parameter_list, - STATE(4050), 1, - sym_alignas_qualifier, - STATE(6536), 1, - sym__function_declarator_seq, - STATE(6680), 1, + STATE(4623), 1, sym__abstract_declarator, - ACTIONS(8264), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3734), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6612), 5, + STATE(4934), 1, + sym__function_declarator_seq, + STATE(4825), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6997), 8, + ACTIONS(9429), 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, - ACTIONS(8254), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6995), 23, + anon_sym_DASH_GT, + ACTIONS(9427), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PERCENT, + anon_sym_RPAREN, 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_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_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [13429] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8750), 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_identifier, + sym_literal_suffix, + ACTIONS(8752), 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_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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_DOT_STAR, anon_sym_DASH_GT, - [15091] = 17, + 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, + [13499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7739), 1, - anon_sym_const, - ACTIONS(8246), 1, + ACTIONS(8665), 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_identifier, + sym_literal_suffix, + ACTIONS(8667), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8262), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - ACTIONS(8520), 1, - anon_sym_STAR, - ACTIONS(8522), 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + 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, + [13569] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7884), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym___attribute, + ACTIONS(7888), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7899), 1, + anon_sym_noexcept, + ACTIONS(7901), 1, + anon_sym_throw, + ACTIONS(10011), 1, anon_sym_AMP_AMP, - ACTIONS(8524), 1, + ACTIONS(10014), 1, anon_sym_AMP, - STATE(2180), 1, - sym_parameter_list, - STATE(4050), 1, - sym_alignas_qualifier, - STATE(6536), 1, - sym__function_declarator_seq, - STATE(6682), 1, - sym__abstract_declarator, - ACTIONS(8264), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3930), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6612), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7001), 8, + ACTIONS(10017), 1, + anon_sym_DASH_GT, + ACTIONS(10023), 1, + anon_sym_requires, + STATE(4094), 1, + sym_ref_qualifier, + STATE(6290), 1, + sym__function_attributes_end, + STATE(6316), 1, + sym_trailing_return_type, + STATE(9133), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10020), 2, + anon_sym_final, + anon_sym_override, + STATE(6193), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6393), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6457), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6622), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4584), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7789), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -444772,23 +464571,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(8254), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6999), 23, + ACTIONS(7791), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -444809,25 +464598,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [15189] = 12, + [13681] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9711), 1, + ACTIONS(10030), 1, anon_sym_virtual, - STATE(4644), 1, + STATE(4722), 1, sym_alignas_qualifier, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3861), 7, + STATE(4031), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -444835,7 +464623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(7874), 9, + ACTIONS(8234), 9, anon_sym_extern, anon_sym_static, anon_sym_register, @@ -444845,7 +464633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(9709), 12, + ACTIONS(10028), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -444858,7 +464646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7870), 13, + ACTIONS(8230), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -444872,7 +464660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(9707), 13, + ACTIONS(10026), 13, anon_sym_AMP, anon_sym___based, anon_sym___cdecl, @@ -444886,98 +464674,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [15277] = 17, + [13769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8224), 1, - anon_sym_LPAREN2, - ACTIONS(8240), 1, - anon_sym_LBRACK, - ACTIONS(8242), 1, - anon_sym_const, - ACTIONS(8589), 1, - anon_sym_STAR, - ACTIONS(8591), 1, - anon_sym_AMP_AMP, - ACTIONS(8593), 1, - anon_sym_AMP, - STATE(2144), 1, - sym_parameter_list, - STATE(3785), 1, - sym_alignas_qualifier, - STATE(6497), 1, - sym__function_declarator_seq, - STATE(6657), 1, - sym__abstract_declarator, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3891), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6488), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6993), 10, + ACTIONS(8750), 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_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(8232), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6991), 21, + sym_identifier, + sym_literal_suffix, + ACTIONS(8752), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PERCENT, + anon_sym_LPAREN2, 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_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, - anon_sym_GT2, - [15375] = 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, + [13839] = 5, ACTIONS(3), 1, sym_comment, - STATE(3670), 1, + STATE(4010), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(9676), 4, + ACTIONS(10032), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7414), 13, + ACTIONS(7223), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -444991,7 +464765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7416), 44, + ACTIONS(7225), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -445036,17 +464810,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [15449] = 5, + [13913] = 3, ACTIONS(3), 1, sym_comment, - STATE(3670), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9676), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7199), 13, + ACTIONS(7132), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -445058,9 +464825,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, + anon_sym___asm, anon_sym_DOT, - ACTIONS(7201), 44, + ACTIONS(7134), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -445074,8 +464843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -445099,23 +464867,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [15523] = 5, + [13983] = 5, ACTIONS(3), 1, sym_comment, - STATE(3933), 1, + STATE(3823), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(9713), 4, + ACTIONS(10009), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7213), 13, + ACTIONS(7675), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -445129,7 +464901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7215), 44, + ACTIONS(7677), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -445174,17 +464946,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [15597] = 5, + [14057] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8665), 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_identifier, + sym_literal_suffix, + ACTIONS(8667), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + 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, + [14127] = 5, ACTIONS(3), 1, sym_comment, - STATE(3934), 1, + STATE(4010), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(9715), 4, + ACTIONS(10032), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7239), 13, + ACTIONS(7717), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -445198,7 +465037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7241), 44, + ACTIONS(7719), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -445243,17 +465082,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [15671] = 5, + [14201] = 3, ACTIONS(3), 1, sym_comment, - STATE(3670), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9676), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7249), 13, + ACTIONS(7158), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -445265,9 +465097,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, + anon_sym___asm, anon_sym_DOT, - ACTIONS(7251), 44, + ACTIONS(7160), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -445281,8 +465115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -445306,103 +465139,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [15745] = 9, + [14271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6989), 1, - anon_sym_LBRACE, - ACTIONS(9717), 1, - anon_sym_COLON, - STATE(2001), 1, - sym__enum_base_clause, - STATE(2034), 1, - sym_enumerator_list, - STATE(2074), 1, - sym_attribute_specifier, - ACTIONS(6830), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7600), 26, - aux_sym_preproc_elif_token1, + ACTIONS(7081), 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_EQ, anon_sym_LT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(7083), 49, + 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_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [14341] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3823), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10009), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7681), 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___attribute, + anon_sym_const, anon_sym_DOT, - sym_identifier, - ACTIONS(7602), 29, + ACTIONS(7683), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_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, - [15827] = 9, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [14415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6989), 1, - anon_sym_LBRACE, - ACTIONS(9717), 1, - anon_sym_COLON, - STATE(2009), 1, - sym__enum_base_clause, - STATE(2043), 1, - sym_enumerator_list, - STATE(2092), 1, - sym_attribute_specifier, - ACTIONS(6830), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7651), 26, - aux_sym_preproc_elif_token1, + ACTIONS(9760), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -445416,32 +465302,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_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___asm, anon_sym_DOT, - sym_identifier, - ACTIONS(7653), 29, + ACTIONS(9762), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -445453,57 +465338,71 @@ 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_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [15909] = 17, + anon_sym_try, + [14485] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7739), 1, - anon_sym_const, - ACTIONS(8246), 1, - anon_sym_LPAREN2, - ACTIONS(8262), 1, - anon_sym_LBRACK, - ACTIONS(8520), 1, - anon_sym_STAR, - ACTIONS(8522), 1, - anon_sym_AMP_AMP, - ACTIONS(8524), 1, - anon_sym_AMP, - STATE(2180), 1, - sym_parameter_list, - STATE(4050), 1, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(10038), 1, + anon_sym_virtual, + STATE(4722), 1, sym_alignas_qualifier, - STATE(6536), 1, - sym__function_declarator_seq, - STATE(6706), 1, - sym__abstract_declarator, - ACTIONS(8264), 2, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3734), 2, + STATE(3979), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6612), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6495), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8254), 12, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(8234), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(10036), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(8230), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -445515,122 +465414,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6497), 23, - 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_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_DOT_STAR, - anon_sym_DASH_GT, - [16007] = 17, + ACTIONS(10034), 13, + anon_sym_AMP, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [14573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7739), 1, - anon_sym_const, - ACTIONS(8246), 1, - anon_sym_LPAREN2, - ACTIONS(8262), 1, - anon_sym_LBRACK, - ACTIONS(8520), 1, - anon_sym_STAR, - ACTIONS(8522), 1, - anon_sym_AMP_AMP, - ACTIONS(8524), 1, - anon_sym_AMP, - STATE(2180), 1, - sym_parameter_list, - STATE(4050), 1, - sym_alignas_qualifier, - STATE(6536), 1, - sym__function_declarator_seq, - STATE(6751), 1, - sym__abstract_declarator, - ACTIONS(8264), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3734), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6612), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7005), 8, + ACTIONS(9760), 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_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - ACTIONS(8254), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(7003), 23, + ACTIONS(9762), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PERCENT, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, anon_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_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + 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_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [16105] = 5, + anon_sym_try, + [14643] = 5, ACTIONS(3), 1, sym_comment, - STATE(3913), 1, + STATE(4035), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(9674), 4, + ACTIONS(10040), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7253), 13, + ACTIONS(7555), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -445644,7 +465519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7255), 44, + ACTIONS(7557), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -445689,34 +465564,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [16179] = 8, + [14717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - STATE(3723), 1, - sym_argument_list, - STATE(5901), 1, - sym_initializer_list, - ACTIONS(7183), 26, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(8657), 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_SEMI, - anon_sym_RBRACE, - 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_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_identifier, + sym_literal_suffix, + ACTIONS(8659), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -445727,51 +465631,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(7185), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_typename, - anon_sym_asm, - 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, - [16259] = 5, + [14787] = 5, ACTIONS(3), 1, sym_comment, - STATE(3670), 1, + STATE(4036), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(9676), 4, + ACTIONS(10042), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7383), 13, + ACTIONS(7783), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -445785,7 +465655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7385), 44, + ACTIONS(7785), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -445830,46 +465700,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [16333] = 5, + [14861] = 17, ACTIONS(3), 1, sym_comment, - STATE(3670), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9676), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7395), 13, + ACTIONS(8092), 1, + anon_sym_const, + ACTIONS(8572), 1, + anon_sym_LPAREN2, + ACTIONS(8588), 1, + anon_sym_LBRACK, + ACTIONS(8964), 1, + anon_sym_STAR, + ACTIONS(8966), 1, + anon_sym_AMP_AMP, + ACTIONS(8968), 1, + anon_sym_AMP, + STATE(2267), 1, + sym_parameter_list, + STATE(4183), 1, + sym_alignas_qualifier, + STATE(6608), 1, + sym__function_declarator_seq, + STATE(6730), 1, + sym__abstract_declarator, + ACTIONS(8590), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3860), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6607), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7349), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, 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___attribute, - anon_sym_const, anon_sym_DOT, - ACTIONS(7397), 44, - 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, + ACTIONS(8580), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -445881,8 +465757,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(7351), 23, + 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -445895,46 +465781,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [16407] = 17, + [14959] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7739), 1, + ACTIONS(8092), 1, anon_sym_const, - ACTIONS(8246), 1, + ACTIONS(8572), 1, anon_sym_LPAREN2, - ACTIONS(8262), 1, + ACTIONS(8588), 1, anon_sym_LBRACK, - ACTIONS(8520), 1, + ACTIONS(8964), 1, anon_sym_STAR, - ACTIONS(8522), 1, + ACTIONS(8966), 1, anon_sym_AMP_AMP, - ACTIONS(8524), 1, + ACTIONS(8968), 1, anon_sym_AMP, - STATE(2180), 1, + STATE(2267), 1, sym_parameter_list, - STATE(4050), 1, + STATE(4183), 1, sym_alignas_qualifier, - STATE(6536), 1, + STATE(6608), 1, sym__function_declarator_seq, - STATE(6702), 1, + STATE(6745), 1, sym__abstract_declarator, - ACTIONS(8264), 2, + ACTIONS(8590), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3734), 2, + STATE(4028), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6612), 5, + STATE(6607), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7009), 8, + ACTIONS(7341), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -445943,7 +465825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8254), 12, + ACTIONS(8580), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -445956,7 +465838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7007), 23, + ACTIONS(7343), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PERCENT, @@ -445980,24 +465862,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [16505] = 12, + [15057] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(10051), 1, + anon_sym_virtual, + ACTIONS(10060), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(10063), 1, anon_sym___declspec, - ACTIONS(9723), 1, - anon_sym_virtual, - STATE(4644), 1, + STATE(4722), 1, sym_alignas_qualifier, - ACTIONS(7876), 2, + ACTIONS(10057), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(10066), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3902), 7, + STATE(4024), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -446005,7 +465887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(7874), 9, + ACTIONS(10054), 9, anon_sym_extern, anon_sym_static, anon_sym_register, @@ -446015,7 +465897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(9721), 12, + ACTIONS(10046), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -446028,21 +465910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7870), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(9719), 13, + ACTIONS(10044), 13, anon_sym_AMP, anon_sym___based, anon_sym___cdecl, @@ -446056,83 +465924,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [16593] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6830), 1, - anon_sym___attribute, - ACTIONS(6989), 1, - anon_sym_LBRACE, - ACTIONS(7714), 1, - anon_sym___attribute__, - ACTIONS(9725), 1, - anon_sym_COLON, - STATE(2001), 1, - sym__enum_base_clause, - STATE(2034), 1, - sym_enumerator_list, - STATE(2074), 1, - sym_attribute_specifier, - ACTIONS(7600), 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(7602), 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_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [16676] = 3, + ACTIONS(10048), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [15145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8446), 25, + ACTIONS(8697), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446157,8 +465966,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + sym_identifier, sym_literal_suffix, - ACTIONS(8448), 36, + ACTIONS(8699), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -446195,46 +466005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [16745] = 18, + [15215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(6859), 1, - anon_sym___attribute, - ACTIONS(6861), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6906), 1, - anon_sym___attribute__, - ACTIONS(9727), 1, - anon_sym_DASH_GT, - ACTIONS(9733), 1, - anon_sym_requires, - STATE(5721), 1, - sym_trailing_return_type, - STATE(5843), 1, - sym__function_attributes_end, - STATE(8992), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9730), 2, - anon_sym_final, - anon_sym_override, - STATE(4374), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4622), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5364), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 11, + ACTIONS(3128), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -446243,13 +466017,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, + anon_sym___attribute, anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, anon_sym_DOT, - ACTIONS(8089), 29, + ACTIONS(3118), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -446261,9 +466036,23 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -446274,12 +466063,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_COLON_RBRACK, - [16844] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [15285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8454), 25, + ACTIONS(9915), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -446293,28 +466089,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_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___asm, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8456), 36, + ACTIONS(9917), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_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___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -446327,63 +466125,66 @@ 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_asm, + anon_sym___asm__, anon_sym_DOT_STAR, 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, - [16913] = 3, + anon_sym_try, + [15355] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7301), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(8092), 1, + anon_sym_const, + ACTIONS(8572), 1, anon_sym_LPAREN2, + ACTIONS(8588), 1, + anon_sym_LBRACK, + ACTIONS(8964), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8966), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7299), 35, - aux_sym_preproc_elif_token1, + ACTIONS(8968), 1, + anon_sym_AMP, + STATE(2267), 1, + sym_parameter_list, + STATE(4183), 1, + sym_alignas_qualifier, + STATE(6608), 1, + sym__function_declarator_seq, + STATE(6749), 1, + sym__abstract_declarator, + ACTIONS(8590), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3860), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6607), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7353), 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, + anon_sym_DOT, + ACTIONS(8580), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -446395,60 +466196,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - 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_final, - anon_sym_override, - anon_sym_requires, - [16982] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7289), 26, + ACTIONS(7355), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_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_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7287), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + [15453] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(10069), 1, + anon_sym_LBRACE, + STATE(4730), 1, + sym_field_declaration_list, + STATE(4978), 1, + sym_attribute_specifier, + STATE(9508), 1, + sym_virtual_specifier, + STATE(10399), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7237), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7235), 39, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -446463,27 +466291,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - 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_final, - anon_sym_override, - anon_sym_requires, - [17051] = 3, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [15539] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7305), 26, + STATE(3823), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10009), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7723), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7725), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -446492,30 +466330,11 @@ 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___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7303), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -446529,159 +466348,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_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_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [17120] = 3, + [15613] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8382), 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(8384), 36, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(9994), 1, + anon_sym_virtual, + STATE(4722), 1, + sym_alignas_qualifier, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4024), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(8234), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(10073), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(8230), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(10071), 13, + anon_sym_AMP, + 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - 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, - [17189] = 3, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [15701] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8400), 25, + ACTIONS(8156), 1, + anon_sym_COLON, + ACTIONS(9246), 1, + anon_sym_LBRACE, + ACTIONS(10075), 1, + anon_sym___attribute__, + ACTIONS(10077), 1, + anon_sym___attribute, + STATE(4098), 1, + sym_attribute_specifier, + STATE(4384), 1, + sym_field_declaration_list, + STATE(9615), 1, + sym_virtual_specifier, + STATE(10357), 1, + sym_base_class_clause, + ACTIONS(8160), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7235), 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_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_DOT, - sym_literal_suffix, - ACTIONS(8402), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - 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, - [17258] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7331), 26, + ACTIONS(7237), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -446693,27 +466487,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym___extension__, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7329), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -446727,59 +466503,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_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_final, - anon_sym_override, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_requires, - [17327] = 3, + [15789] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7237), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(8092), 1, + anon_sym_const, + ACTIONS(8572), 1, anon_sym_LPAREN2, + ACTIONS(8588), 1, + anon_sym_LBRACK, + ACTIONS(8964), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8966), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7235), 35, - aux_sym_preproc_elif_token1, + ACTIONS(8968), 1, + anon_sym_AMP, + STATE(2267), 1, + sym_parameter_list, + STATE(4183), 1, + sym_alignas_qualifier, + STATE(6608), 1, + sym__function_declarator_seq, + STATE(6815), 1, + sym__abstract_declarator, + ACTIONS(8590), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4022), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6607), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7393), 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, + anon_sym_DOT, + ACTIONS(8580), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -446791,161 +466573,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - 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_final, - anon_sym_override, - anon_sym_requires, - [17396] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7339), 26, + ACTIONS(7391), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_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_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7337), 35, - aux_sym_preproc_elif_token1, + [15887] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7816), 1, + anon_sym___attribute__, + ACTIONS(7818), 1, + anon_sym___attribute, + ACTIONS(7820), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7831), 1, + anon_sym_noexcept, + ACTIONS(7833), 1, + anon_sym_throw, + ACTIONS(9981), 1, + anon_sym_AMP_AMP, + ACTIONS(9984), 1, + anon_sym_AMP, + ACTIONS(9987), 1, + anon_sym_DASH_GT, + ACTIONS(10082), 1, + anon_sym_requires, + STATE(4138), 1, + sym_ref_qualifier, + STATE(6278), 1, + sym__function_attributes_end, + STATE(6292), 1, + sym_trailing_return_type, + STATE(9096), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10079), 2, + anon_sym_final, + anon_sym_override, + STATE(6157), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6403), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6501), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6697), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4575), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7789), 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___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - 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_LBRACK, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [17465] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7343), 26, + ACTIONS(7791), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_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_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7341), 35, - aux_sym_preproc_elif_token1, + anon_sym_GT2, + [15999] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3823), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10009), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7693), 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___extension__, + anon_sym_GT_GT, + anon_sym___attribute, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - 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_final, - anon_sym_override, - anon_sym_requires, - [17534] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7347), 26, + ACTIONS(7695), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -446954,30 +466720,11 @@ 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___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7345), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -446991,27 +466738,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_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_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [17603] = 3, + [16073] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7353), 26, + STATE(3823), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10009), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7697), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7699), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -447020,30 +466789,11 @@ 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___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7351), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -447057,59 +466807,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_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_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [17672] = 3, + [16147] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7357), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7355), 35, - aux_sym_preproc_elif_token1, + STATE(4030), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10085), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7701), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7703), 44, + 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___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -447123,27 +466876,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_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_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [17741] = 3, + [16221] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 26, + STATE(3999), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10087), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7707), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7709), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -447152,30 +466927,11 @@ 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___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7359), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -447189,45 +466945,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_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_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [17810] = 7, + [16295] = 5, ACTIONS(3), 1, sym_comment, - STATE(4238), 1, - sym_alignas_qualifier, - ACTIONS(9739), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3954), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6527), 13, + STATE(3823), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10009), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7713), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7715), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(9736), 13, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -447239,103 +467012,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6525), 30, - anon_sym_AMP, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - sym_primitive_type, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, + anon_sym_GT2, anon_sym_requires, - [17887] = 21, + [16369] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(6861), 1, + ACTIONS(7180), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6915), 1, + ACTIONS(7192), 1, anon_sym_noexcept, - ACTIONS(6917), 1, + ACTIONS(7194), 1, anon_sym_throw, - ACTIONS(6919), 1, + ACTIONS(7221), 1, anon_sym_requires, - ACTIONS(9633), 1, + ACTIONS(9196), 1, + anon_sym_AMP_AMP, + ACTIONS(9199), 1, + anon_sym_AMP, + ACTIONS(9996), 1, anon_sym___attribute__, - ACTIONS(9636), 1, + ACTIONS(9999), 1, anon_sym___attribute, - ACTIONS(9639), 1, + ACTIONS(10002), 1, anon_sym_DASH_GT, - STATE(5718), 1, + STATE(4146), 1, + sym_ref_qualifier, + STATE(5881), 1, sym_trailing_return_type, - STATE(6082), 1, + STATE(6191), 1, sym__function_attributes_end, - STATE(8992), 1, + STATE(9134), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(6913), 2, + ACTIONS(7219), 2, anon_sym_final, anon_sym_override, - STATE(4374), 2, + STATE(4485), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4622), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4709), 2, + STATE(4778), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5258), 2, + STATE(5460), 2, sym__function_postfix, sym_requires_clause, - STATE(4487), 3, + STATE(4550), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7546), 10, + ACTIONS(7789), 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_LBRACK, anon_sym_DOT, - ACTIONS(7544), 25, + ACTIONS(7791), 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, @@ -447354,120 +467118,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [17992] = 3, + [16481] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7247), 26, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7884), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym___attribute, + ACTIONS(7888), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7899), 1, + anon_sym_noexcept, + ACTIONS(7901), 1, + anon_sym_throw, + ACTIONS(7903), 1, + anon_sym_requires, + ACTIONS(10011), 1, + anon_sym_AMP_AMP, + ACTIONS(10014), 1, + anon_sym_AMP, + ACTIONS(10017), 1, + anon_sym_DASH_GT, + STATE(4083), 1, + sym_ref_qualifier, + STATE(6272), 1, + sym__function_attributes_end, + STATE(6306), 1, + sym_trailing_return_type, + STATE(9133), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7897), 2, + anon_sym_final, + anon_sym_override, + STATE(6193), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6393), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6457), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6622), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4588), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7789), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7791), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7245), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, 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_final, - anon_sym_override, - anon_sym_requires, - [18061] = 21, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [16593] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(6861), 1, + ACTIONS(7180), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6915), 1, + ACTIONS(7192), 1, anon_sym_noexcept, - ACTIONS(6917), 1, + ACTIONS(7194), 1, anon_sym_throw, - ACTIONS(6919), 1, + ACTIONS(7221), 1, anon_sym_requires, - ACTIONS(9742), 1, + ACTIONS(9996), 1, anon_sym___attribute__, - ACTIONS(9745), 1, + ACTIONS(9999), 1, anon_sym___attribute, - ACTIONS(9748), 1, + ACTIONS(10002), 1, anon_sym_DASH_GT, - STATE(5666), 1, + STATE(5881), 1, sym_trailing_return_type, - STATE(6048), 1, + STATE(6191), 1, sym__function_attributes_end, - STATE(8992), 1, + STATE(9134), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(6913), 2, + ACTIONS(7219), 2, anon_sym_final, anon_sym_override, - STATE(4374), 2, + STATE(4485), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4622), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4709), 2, + STATE(4778), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5305), 2, + STATE(5460), 2, sym__function_postfix, sym_requires_clause, - STATE(4472), 3, + STATE(4550), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7629), 10, + ACTIONS(7789), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -447478,7 +467264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7627), 25, + ACTIONS(7791), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -447504,16 +467290,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [18166] = 3, + [16698] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7377), 26, + ACTIONS(6991), 1, + anon_sym_decltype, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(10089), 1, + sym_auto, + STATE(4464), 1, + sym_decltype_auto, + ACTIONS(7223), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7225), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -447522,30 +467326,11 @@ 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___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7375), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -447559,65 +467344,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_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_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [18235] = 21, + [16775] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7441), 1, + ACTIONS(7816), 1, anon_sym___attribute__, - ACTIONS(7443), 1, + ACTIONS(7818), 1, anon_sym___attribute, - ACTIONS(7445), 1, + ACTIONS(7820), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7456), 1, + ACTIONS(7831), 1, anon_sym_noexcept, - ACTIONS(7458), 1, + ACTIONS(7833), 1, anon_sym_throw, - ACTIONS(9621), 1, - anon_sym_DASH_GT, - ACTIONS(9645), 1, + ACTIONS(7835), 1, anon_sym_requires, - STATE(6181), 1, + ACTIONS(9987), 1, + anon_sym_DASH_GT, + STATE(6274), 1, sym__function_attributes_end, - STATE(6215), 1, + STATE(6299), 1, sym_trailing_return_type, - STATE(8995), 1, + STATE(9096), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9642), 2, + ACTIONS(7829), 2, anon_sym_final, anon_sym_override, - STATE(6065), 2, + STATE(6157), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6276), 2, + STATE(6403), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6331), 2, + STATE(6501), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6604), 2, + STATE(6697), 2, sym__function_postfix, sym_requires_clause, - STATE(4503), 3, + STATE(4608), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7546), 12, + ACTIONS(7789), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -447630,7 +467420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7544), 23, + ACTIONS(7791), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -447654,135 +467444,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_GT2, - [18340] = 3, + [16880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7381), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6601), 2, + anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7379), 35, - aux_sym_preproc_elif_token1, + ACTIONS(6603), 22, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(6596), 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___attribute__, + 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_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [18409] = 21, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [16951] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7441), 1, - anon_sym___attribute__, - ACTIONS(7443), 1, - anon_sym___attribute, - ACTIONS(7445), 1, + ACTIONS(7180), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7456), 1, - anon_sym_noexcept, - ACTIONS(7458), 1, - anon_sym_throw, - ACTIONS(9751), 1, - anon_sym_DASH_GT, - ACTIONS(9757), 1, + ACTIONS(7285), 1, anon_sym_requires, - STATE(6161), 1, + ACTIONS(9202), 1, + anon_sym_DASH_GT, + STATE(5950), 1, sym__function_attributes_end, - STATE(6219), 1, + STATE(6121), 1, sym_trailing_return_type, - STATE(8995), 1, + STATE(9134), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9754), 2, + ACTIONS(7178), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7283), 2, anon_sym_final, anon_sym_override, - STATE(6065), 2, + STATE(4485), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6276), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6331), 2, + STATE(4778), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6467), 2, + STATE(5460), 2, sym__function_postfix, sym_requires_clause, - STATE(4459), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7629), 12, + ACTIONS(6497), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(7789), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, 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_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7627), 23, + sym_identifier, + ACTIONS(7791), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -447791,67 +467582,53 @@ 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_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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_GT2, - [18514] = 21, + [17046] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7497), 1, - anon_sym___attribute__, - ACTIONS(7499), 1, - anon_sym___attribute, - ACTIONS(7501), 1, + ACTIONS(7180), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7513), 1, - anon_sym_noexcept, - ACTIONS(7515), 1, - anon_sym_throw, - ACTIONS(9630), 1, - anon_sym_DASH_GT, - ACTIONS(9651), 1, + ACTIONS(7285), 1, anon_sym_requires, - STATE(6162), 1, + ACTIONS(9352), 1, + anon_sym_DASH_GT, + STATE(5951), 1, sym__function_attributes_end, - STATE(6234), 1, + STATE(6123), 1, sym_trailing_return_type, - STATE(8976), 1, + STATE(9134), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9648), 2, + ACTIONS(7178), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7283), 2, anon_sym_final, anon_sym_override, - STATE(6071), 2, + STATE(4485), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6313), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6389), 2, + STATE(4778), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6558), 2, + STATE(5532), 2, sym__function_postfix, sym_requires_clause, - STATE(4516), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7546), 10, + ACTIONS(6497), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(7968), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -447861,10 +467638,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7544), 25, + sym_identifier, + ACTIONS(7966), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -447876,22 +467664,15 @@ 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_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [18619] = 3, + [17141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7297), 26, + ACTIONS(7597), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -447918,7 +467699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7295), 35, + ACTIONS(7595), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -447954,54 +467735,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [18688] = 21, + [17210] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7497), 1, - anon_sym___attribute__, - ACTIONS(7499), 1, - anon_sym___attribute, - ACTIONS(7501), 1, + ACTIONS(7180), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7513), 1, - anon_sym_noexcept, - ACTIONS(7515), 1, - anon_sym_throw, - ACTIONS(9760), 1, - anon_sym_DASH_GT, - ACTIONS(9766), 1, + ACTIONS(7285), 1, anon_sym_requires, - STATE(6155), 1, + ACTIONS(10091), 1, + anon_sym_DASH_GT, + STATE(5952), 1, sym__function_attributes_end, - STATE(6235), 1, + STATE(6126), 1, sym_trailing_return_type, - STATE(8976), 1, + STATE(9134), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9763), 2, + ACTIONS(7178), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7283), 2, anon_sym_final, anon_sym_override, - STATE(6071), 2, + STATE(4485), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6313), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6389), 2, + STATE(4778), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6509), 2, + STATE(5396), 2, sym__function_postfix, sym_requires_clause, - STATE(4446), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7629), 10, + ACTIONS(6497), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(8424), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -448011,61 +467783,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(7627), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [18793] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6698), 1, - anon_sym_decltype, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(9769), 1, - sym_auto, - STATE(4315), 1, - sym_decltype_auto, - ACTIONS(6798), 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___attribute, - anon_sym_const, anon_sym_DOT, - ACTIONS(6800), 44, + sym_identifier, + ACTIONS(8422), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -448074,113 +467806,58 @@ 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___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [18870] = 4, + [17305] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6233), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6235), 22, + ACTIONS(10094), 1, + sym_identifier, + STATE(4050), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(10097), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10100), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8408), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(6228), 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___attribute__, - 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_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [18941] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7423), 26, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8406), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -448196,70 +467873,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7421), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - 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_final, - anon_sym_override, - anon_sym_requires, - [19010] = 3, + anon_sym_COLON_RBRACK, + [17382] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6226), 14, + ACTIONS(9413), 1, + anon_sym_LBRACE, + ACTIONS(10075), 1, + anon_sym___attribute__, + ACTIONS(10077), 1, + anon_sym___attribute, + ACTIONS(10103), 1, + anon_sym_COLON, + STATE(4059), 1, + sym_attribute_specifier, + STATE(4319), 1, + sym__enum_base_clause, + STATE(4382), 1, + sym_enumerator_list, + ACTIONS(8000), 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, - anon_sym___attribute, - anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(6233), 47, + ACTIONS(8002), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -448270,12 +467923,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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -448301,60 +467954,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [19079] = 21, + [17465] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(6861), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6915), 1, - anon_sym_noexcept, - ACTIONS(6917), 1, - anon_sym_throw, - ACTIONS(8824), 1, - anon_sym_requires, - ACTIONS(9633), 1, + ACTIONS(9413), 1, + anon_sym_LBRACE, + ACTIONS(10075), 1, anon_sym___attribute__, - ACTIONS(9636), 1, + ACTIONS(10077), 1, anon_sym___attribute, - ACTIONS(9639), 1, - anon_sym_DASH_GT, - STATE(5711), 1, - sym_trailing_return_type, - STATE(6050), 1, - sym__function_attributes_end, - STATE(8992), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8821), 2, - anon_sym_final, - anon_sym_override, - STATE(4374), 2, + ACTIONS(10103), 1, + anon_sym_COLON, + STATE(4095), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4622), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5258), 2, - sym__function_postfix, - sym_requires_clause, - STATE(4506), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7546), 10, + STATE(4320), 1, + sym__enum_base_clause, + STATE(4386), 1, + sym_enumerator_list, + ACTIONS(8006), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -448363,9 +467983,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LBRACK, + anon_sym_const, anon_sym_DOT, - ACTIONS(7544), 25, + ACTIONS(8008), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -448379,7 +467999,22 @@ 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___extension__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -448391,10 +468026,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [19184] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [17548] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8416), 21, + ACTIONS(7239), 1, + anon_sym___attribute, + ACTIONS(7385), 1, + anon_sym_LBRACE, + ACTIONS(8028), 1, + anon_sym___attribute__, + ACTIONS(10105), 1, + anon_sym_COLON, + STATE(2119), 1, + sym__enum_base_clause, + STATE(2137), 1, + sym_enumerator_list, + STATE(2196), 1, + sym_attribute_specifier, + ACTIONS(8000), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448408,26 +468061,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym___asm, anon_sym_DOT, - ACTIONS(8418), 40, + ACTIONS(8002), 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___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -448448,74 +468100,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [19253] = 21, + anon_sym_COLON_RBRACK, + [17631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(6861), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6915), 1, - anon_sym_noexcept, - ACTIONS(6917), 1, - anon_sym_throw, - ACTIONS(8977), 1, - anon_sym_requires, - ACTIONS(9742), 1, - anon_sym___attribute__, - ACTIONS(9745), 1, - anon_sym___attribute, - ACTIONS(9748), 1, - anon_sym_DASH_GT, - STATE(5719), 1, - sym_trailing_return_type, - STATE(6079), 1, - sym__function_attributes_end, - STATE(8992), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8974), 2, - anon_sym_final, - anon_sym_override, - STATE(4374), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4622), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5305), 2, - sym__function_postfix, - sym_requires_clause, - STATE(4519), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7629), 10, + ACTIONS(6594), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, anon_sym_DOT, - ACTIONS(7627), 25, + ACTIONS(6601), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -448526,10 +468132,25 @@ 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___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -448541,61 +468162,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [19358] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(6859), 1, - anon_sym___attribute, - ACTIONS(6861), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6906), 1, - anon_sym___attribute__, - ACTIONS(6919), 1, - anon_sym_requires, - ACTIONS(8818), 1, anon_sym_DASH_GT, - STATE(5718), 1, - sym_trailing_return_type, - STATE(5867), 1, - sym__function_attributes_end, - STATE(8992), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(6913), 2, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4374), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4622), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5258), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 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_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(7544), 29, + anon_sym_GT2, + anon_sym_requires, + [17700] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7637), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -448607,25 +468190,55 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7635), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_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_COLON_RBRACK, - [19457] = 3, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [17769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7207), 26, + ACTIONS(7641), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -448652,7 +468265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7205), 35, + ACTIONS(7639), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -448688,10 +468301,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [19526] = 3, + [17838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7211), 26, + ACTIONS(7741), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -448718,7 +468331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7209), 35, + ACTIONS(7739), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -448754,34 +468367,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [19595] = 6, + [17907] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6627), 1, - sym_primitive_type, - STATE(4035), 1, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(7687), 1, + anon_sym_LPAREN2, + STATE(3894), 1, + sym_argument_list, + STATE(4225), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(9771), 4, + STATE(5969), 1, + sym_initializer_list, + ACTIONS(10107), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7081), 14, + ACTIONS(7225), 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_LBRACE, anon_sym_EQ, - anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7084), 41, + ACTIONS(7223), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -448820,23 +468436,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [19670] = 8, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [17988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7645), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7643), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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_final, + anon_sym_override, + anon_sym_requires, + [18057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6451), 1, - anon_sym_decltype, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(7183), 1, - anon_sym_LBRACE, - ACTIONS(9191), 1, - sym_auto, - STATE(3963), 1, - sym_decltype_auto, - ACTIONS(6800), 24, + ACTIONS(7745), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -448854,14 +468526,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6798), 32, + ACTIONS(7743), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -448894,80 +468568,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - [19749] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [18126] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9774), 1, - sym_identifier, - STATE(4015), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(3359), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3369), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8118), 18, - aux_sym_preproc_elif_token1, + ACTIONS(6646), 1, + anon_sym___attribute__, + ACTIONS(6648), 1, + anon_sym___attribute, + ACTIONS(6650), 1, + anon_sym_LBRACK_LBRACK, + STATE(2353), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4512), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8833), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, + 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, - sym_literal_suffix, - ACTIONS(8116), 29, + anon_sym_DASH_GT, + ACTIONS(8835), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [19826] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [18205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8446), 27, + ACTIONS(8657), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -448977,13 +468655,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, @@ -448995,7 +468671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(8448), 34, + ACTIONS(8659), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -449003,7 +468679,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -449011,6 +468689,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, @@ -449024,16 +468703,15 @@ static const uint16_t ts_small_parse_table[] = { 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, - [19895] = 3, + [18274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8454), 27, + ACTIONS(8704), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -449043,25 +468721,19 @@ 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___attribute, + anon_sym_LBRACK, 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___asm, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8456), 34, + ACTIONS(8706), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -449069,7 +468741,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___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -449077,80 +468752,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_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, - 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, - [19964] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(6859), 1, - anon_sym___attribute, - ACTIONS(6861), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6906), 1, - anon_sym___attribute__, - ACTIONS(6919), 1, - anon_sym_requires, - ACTIONS(8971), 1, - anon_sym_DASH_GT, - STATE(5666), 1, - sym_trailing_return_type, - STATE(5842), 1, - sym__function_attributes_end, - STATE(8992), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(6913), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - STATE(4374), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4622), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5305), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 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_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(7627), 29, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [18343] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7225), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -449162,57 +468795,27 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, + 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_DOT_STAR, - anon_sym_COLON_RBRACK, - [20063] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(6949), 14, + anon_sym_DASH_GT, + ACTIONS(7223), 35, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, 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___attribute, - anon_sym_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6951), 46, - 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -449226,60 +468829,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_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, - sym_auto, - anon_sym_decltype, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [20134] = 4, + [18412] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(6949), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - 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___attribute, - anon_sym_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6951), 46, + STATE(4065), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10109), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7001), 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_LT_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6999), 42, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -449293,213 +468903,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - sym_auto, + sym_primitive_type, + sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [20205] = 12, + anon_sym_template, + anon_sym_operator, + [18485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6724), 1, + ACTIONS(7653), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - ACTIONS(6726), 1, anon_sym_STAR, - ACTIONS(6728), 1, - anon_sym_AMP_AMP, - ACTIONS(6730), 1, - anon_sym_AMP, - ACTIONS(6740), 1, - anon_sym_LBRACK, - STATE(1874), 1, - sym_parameter_list, - STATE(4536), 1, - sym__abstract_declarator, - STATE(4970), 1, - sym__function_declarator_seq, - STATE(4956), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9074), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9072), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [20292] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6766), 1, - anon_sym_LPAREN2, - ACTIONS(6768), 1, - anon_sym_STAR, - ACTIONS(6770), 1, - anon_sym_AMP_AMP, - ACTIONS(6772), 1, - anon_sym_AMP, - ACTIONS(6782), 1, - anon_sym_LBRACK, - STATE(1872), 1, - sym_parameter_list, - STATE(4548), 1, - sym__abstract_declarator, - STATE(4975), 1, - sym__function_declarator_seq, - STATE(4966), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9074), 16, + ACTIONS(7651), 35, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9072), 32, - 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_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_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, anon_sym_requires, - [20379] = 16, + [18554] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6861), 1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7884), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym___attribute, + ACTIONS(7888), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8882), 1, + ACTIONS(7899), 1, + anon_sym_noexcept, + ACTIONS(7901), 1, + anon_sym_throw, + ACTIONS(10017), 1, anon_sym_DASH_GT, - ACTIONS(8888), 1, + ACTIONS(10023), 1, anon_sym_requires, - STATE(5908), 1, + STATE(6290), 1, sym__function_attributes_end, - STATE(6005), 1, + STATE(6316), 1, sym_trailing_return_type, - STATE(8992), 1, + STATE(9133), 1, sym_gnu_asm_expression, - ACTIONS(6859), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8885), 2, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10020), 2, anon_sym_final, anon_sym_override, - STATE(4374), 2, + STATE(6193), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4622), 2, + STATE(6393), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4709), 2, + STATE(6457), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5258), 2, + STATE(6622), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(6129), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(7546), 18, - aux_sym_preproc_elif_token1, + STATE(4584), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7789), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -449509,15 +469031,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7791), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(7544), 22, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [18659] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7657), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -449535,49 +469079,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [20474] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6861), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8996), 1, anon_sym_DASH_GT, - ACTIONS(9124), 1, - anon_sym_requires, - STATE(5909), 1, - sym__function_attributes_end, - STATE(6006), 1, - sym_trailing_return_type, - STATE(8992), 1, - sym_gnu_asm_expression, - ACTIONS(6859), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(9121), 2, - anon_sym_final, - anon_sym_override, - STATE(4374), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4622), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5305), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(6129), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(7629), 18, + ACTIONS(7655), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -449587,7 +469098,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LBRACK, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -449596,68 +469121,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7627), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [20569] = 16, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [18728] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6861), 1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7180), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9776), 1, - anon_sym_DASH_GT, - ACTIONS(9782), 1, + ACTIONS(7192), 1, + anon_sym_noexcept, + ACTIONS(7194), 1, + anon_sym_throw, + ACTIONS(9219), 1, anon_sym_requires, - STATE(5910), 1, - sym__function_attributes_end, - STATE(6007), 1, - sym_trailing_return_type, - STATE(8992), 1, - sym_gnu_asm_expression, - ACTIONS(6859), 2, + ACTIONS(9996), 1, anon_sym___attribute__, + ACTIONS(9999), 1, anon_sym___attribute, - ACTIONS(9779), 2, + ACTIONS(10002), 1, + anon_sym_DASH_GT, + STATE(5898), 1, + sym_trailing_return_type, + STATE(6162), 1, + sym__function_attributes_end, + STATE(9134), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9216), 2, anon_sym_final, anon_sym_override, - STATE(4374), 2, + STATE(4485), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4622), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4709), 2, + STATE(4778), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5364), 2, + STATE(5460), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(6129), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(8087), 18, - aux_sym_preproc_elif_token1, + STATE(4598), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7789), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -449667,21 +469181,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_LBRACK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(8089), 22, + ACTIONS(7791), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -449693,84 +469196,22 @@ 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_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [20664] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(3670), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9259), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6627), 17, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - ACTIONS(7084), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - 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___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(7081), 20, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [20739] = 3, + [18833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6967), 14, + ACTIONS(6632), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -449785,7 +469226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(6969), 47, + ACTIONS(6634), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -449833,196 +469274,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [20808] = 30, + [18902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5301), 1, - anon_sym_LPAREN2, - ACTIONS(5303), 1, + ACTIONS(8750), 27, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(5305), 1, - anon_sym_AMP_AMP, - ACTIONS(5307), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(5311), 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_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(8752), 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_LBRACK, - ACTIONS(6497), 1, - anon_sym_RPAREN, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4601), 1, - sym_parameter_list, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8694), 1, - sym__declarator, - STATE(8877), 1, - sym__abstract_declarator, - STATE(11063), 1, - sym_ms_based_modifier, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6842), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [20931] = 30, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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_DOT_STAR, + 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, + [18971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5301), 1, + ACTIONS(7233), 30, anon_sym_LPAREN2, - ACTIONS(5303), 1, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(5305), 1, - anon_sym_AMP_AMP, - ACTIONS(5307), 1, anon_sym_AMP, - ACTIONS(5311), 1, - anon_sym_LBRACK, - ACTIONS(7007), 1, - anon_sym_RPAREN, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8360), 1, + anon_sym_LT, + anon_sym_SEMI, anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4601), 1, - sym_parameter_list, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8701), 1, - sym__declarator, - STATE(8868), 1, - sym__abstract_declarator, - STATE(11063), 1, - sym_ms_based_modifier, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6842), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(7231), 31, + anon_sym_DASH, + anon_sym_PLUS, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [21054] = 3, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + 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, + [19040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7281), 26, + ACTIONS(7567), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -450049,7 +469436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7279), 35, + ACTIONS(7565), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -450085,46 +469472,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [21123] = 18, + [19109] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(6859), 1, + ACTIONS(7884), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, anon_sym___attribute, - ACTIONS(6861), 1, + ACTIONS(7888), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6906), 1, - anon_sym___attribute__, - ACTIONS(8971), 1, - anon_sym_DASH_GT, - ACTIONS(8977), 1, + ACTIONS(7899), 1, + anon_sym_noexcept, + ACTIONS(7901), 1, + anon_sym_throw, + ACTIONS(7903), 1, anon_sym_requires, - STATE(5719), 1, - sym_trailing_return_type, - STATE(5841), 1, + ACTIONS(10017), 1, + anon_sym_DASH_GT, + STATE(6272), 1, sym__function_attributes_end, - STATE(8992), 1, + STATE(6306), 1, + sym_trailing_return_type, + STATE(9133), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8974), 2, + ACTIONS(7897), 2, anon_sym_final, anon_sym_override, - STATE(4374), 2, + STATE(6193), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4622), 2, + STATE(6393), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4709), 2, + STATE(6457), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5305), 2, + STATE(6622), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7629), 11, + STATE(4588), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7789), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -450133,13 +469528,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7627), 29, + ACTIONS(7791), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -450151,9 +469544,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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -450165,55 +469556,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_COLON_RBRACK, - [21222] = 21, + [19214] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7441), 1, + ACTIONS(9961), 1, anon_sym___attribute__, - ACTIONS(7443), 1, + ACTIONS(9963), 1, anon_sym___attribute, - ACTIONS(7445), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7456), 1, - anon_sym_noexcept, - ACTIONS(7458), 1, - anon_sym_throw, - ACTIONS(7460), 1, - anon_sym_requires, - ACTIONS(9621), 1, + ACTIONS(10112), 1, + anon_sym_COLON, + ACTIONS(10114), 1, + anon_sym_LBRACE, + STATE(4316), 1, + sym__enum_base_clause, + STATE(4370), 1, + sym_enumerator_list, + STATE(4517), 1, + sym_attribute_specifier, + ACTIONS(8000), 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(8002), 42, + 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___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, - STATE(6163), 1, - sym__function_attributes_end, - STATE(6254), 1, - sym_trailing_return_type, - STATE(8995), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7454), 2, anon_sym_final, anon_sym_override, - STATE(6065), 2, + anon_sym_GT2, + anon_sym_requires, + [19297] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9961), 1, + anon_sym___attribute__, + ACTIONS(9963), 1, + anon_sym___attribute, + ACTIONS(10112), 1, + anon_sym_COLON, + ACTIONS(10114), 1, + anon_sym_LBRACE, + STATE(4291), 1, + sym__enum_base_clause, + STATE(4328), 1, + sym_enumerator_list, + STATE(4429), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6276), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6331), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6604), 2, - sym__function_postfix, - sym_requires_clause, - STATE(4464), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7546), 12, + ACTIONS(8006), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -450224,9 +469657,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym_const, anon_sym_DOT, - ACTIONS(7544), 23, + ACTIONS(8008), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -450238,6 +469671,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -450249,11 +469697,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [21327] = 3, + anon_sym_requires, + [19380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7229), 26, + ACTIONS(7571), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -450280,7 +469732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7227), 35, + ACTIONS(7569), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -450316,69 +469768,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [21396] = 21, + [19449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7441), 1, - anon_sym___attribute__, - ACTIONS(7443), 1, - anon_sym___attribute, - ACTIONS(7445), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7456), 1, - anon_sym_noexcept, - ACTIONS(7458), 1, - anon_sym_throw, - ACTIONS(7460), 1, - anon_sym_requires, - ACTIONS(9751), 1, - anon_sym_DASH_GT, - STATE(6169), 1, - sym__function_attributes_end, - STATE(6263), 1, - sym_trailing_return_type, - STATE(8995), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7454), 2, - anon_sym_final, - anon_sym_override, - STATE(6065), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6276), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6331), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6467), 2, - sym__function_postfix, - sym_requires_clause, - STATE(4467), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7629), 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_LBRACK, - anon_sym_DOT, - ACTIONS(7627), 23, + ACTIONS(7665), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -450387,23 +469786,58 @@ 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_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7663), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_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_GT2, - [21501] = 3, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [19518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8382), 27, + ACTIONS(8665), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -450431,7 +469865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(8384), 34, + ACTIONS(8667), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -450466,24 +469900,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [21570] = 10, + [19587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6830), 1, + ACTIONS(7301), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + 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___attribute, - ACTIONS(6989), 1, - anon_sym_LBRACE, - ACTIONS(7714), 1, - anon_sym___attribute__, - ACTIONS(9725), 1, anon_sym_COLON, - STATE(2009), 1, - sym__enum_base_clause, - STATE(2043), 1, - sym_enumerator_list, - STATE(2092), 1, - sym_attribute_specifier, - ACTIONS(7651), 18, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7303), 47, + 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___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [19656] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8697), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -450498,24 +469984,28 @@ 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, - ACTIONS(7653), 36, + sym_literal_suffix, + ACTIONS(8699), 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_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -450527,72 +470017,62 @@ 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, - anon_sym_COLON_RBRACK, - [21653] = 9, + 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, + [19725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(7399), 1, - anon_sym_LPAREN2, - STATE(3783), 1, - sym_argument_list, - STATE(4096), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5860), 1, - sym_initializer_list, - ACTIONS(9785), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6800), 11, + ACTIONS(7563), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_TILDE, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_LBRACK_COLON, - ACTIONS(6798), 41, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7561), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -450607,14 +470087,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + 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_decltype, - anon_sym_template, - anon_sym_operator, - [21734] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [19794] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6226), 12, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7884), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym___attribute, + ACTIONS(7888), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7899), 1, + anon_sym_noexcept, + ACTIONS(7901), 1, + anon_sym_throw, + ACTIONS(7903), 1, + anon_sym_requires, + ACTIONS(10116), 1, + anon_sym_DASH_GT, + STATE(6269), 1, + sym__function_attributes_end, + STATE(6324), 1, + sym_trailing_return_type, + STATE(9133), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7897), 2, + anon_sym_final, + anon_sym_override, + STATE(6193), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6393), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6457), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6630), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4558), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7968), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -450623,11 +470154,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(6233), 49, + ACTIONS(7966), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -450641,25 +470170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -450671,74 +470182,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [21803] = 7, + [19899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9787), 1, - anon_sym_delete, - ACTIONS(9789), 1, - anon_sym_new, - ACTIONS(9346), 3, - anon_sym_TILDE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9340), 6, - anon_sym_STAR, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9342), 25, + ACTIONS(7669), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - ACTIONS(9344), 25, + anon_sym_DASH_GT, + ACTIONS(7667), 35, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -450746,172 +470244,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - [21880] = 8, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [19968] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6282), 1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7816), 1, anon_sym___attribute__, - ACTIONS(6284), 1, + ACTIONS(7818), 1, anon_sym___attribute, - ACTIONS(6286), 1, + ACTIONS(7820), 1, anon_sym_LBRACK_LBRACK, - STATE(2243), 2, + ACTIONS(7831), 1, + anon_sym_noexcept, + ACTIONS(7833), 1, + anon_sym_throw, + ACTIONS(7835), 1, + anon_sym_requires, + ACTIONS(10119), 1, + anon_sym_DASH_GT, + STATE(6286), 1, + sym__function_attributes_end, + STATE(6332), 1, + sym_trailing_return_type, + STATE(9096), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7829), 2, + anon_sym_final, + anon_sym_override, + STATE(6157), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4381), 2, + STATE(6403), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8512), 20, + STATE(6501), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6571), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4624), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7968), 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_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8514), 34, + ACTIONS(7966), 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [21959] = 8, + anon_sym_GT2, + [20073] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6282), 1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7176), 1, anon_sym___attribute__, - ACTIONS(6284), 1, + ACTIONS(7178), 1, anon_sym___attribute, - ACTIONS(6286), 1, + ACTIONS(7180), 1, anon_sym_LBRACK_LBRACK, - STATE(2243), 2, + ACTIONS(7221), 1, + anon_sym_requires, + ACTIONS(9211), 1, + anon_sym_DASH_GT, + STATE(5881), 1, + sym_trailing_return_type, + STATE(5960), 1, + sym__function_attributes_end, + STATE(9134), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7219), 2, + anon_sym_final, + anon_sym_override, + STATE(4485), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4363), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8479), 20, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5460), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 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_COLON, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8481), 34, + ACTIONS(7791), 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_RBRACK_RBRACK, + 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_or, + anon_sym_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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [22038] = 7, + anon_sym_COLON_RBRACK, + [20172] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(9791), 1, - sym_identifier, - STATE(3977), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(3359), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3369), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8127), 18, - aux_sym_preproc_elif_token1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7180), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7192), 1, + anon_sym_noexcept, + ACTIONS(7194), 1, + anon_sym_throw, + ACTIONS(9293), 1, + anon_sym_requires, + ACTIONS(10122), 1, + anon_sym___attribute__, + ACTIONS(10125), 1, + anon_sym___attribute, + ACTIONS(10128), 1, + anon_sym_DASH_GT, + STATE(5907), 1, + sym_trailing_return_type, + STATE(6163), 1, + sym__function_attributes_end, + STATE(9134), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9290), 2, + anon_sym_final, + anon_sym_override, + STATE(4485), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5532), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4600), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7968), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -450920,23 +470469,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LBRACK, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8125), 29, + ACTIONS(7966), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -450949,26 +470486,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [22115] = 7, + [20277] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6746), 1, + ACTIONS(7085), 1, anon_sym_const, - ACTIONS(8390), 1, + ACTIONS(8695), 1, anon_sym_LT, - STATE(2848), 1, + STATE(2992), 1, sym_template_argument_list, - ACTIONS(6755), 10, + ACTIONS(7094), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -450979,7 +470517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_COLON, anon_sym_DOT, - ACTIONS(6751), 15, + ACTIONS(7090), 15, anon_sym___extension__, anon_sym_LBRACE, anon_sym_constexpr, @@ -450995,7 +470533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(6748), 33, + ACTIONS(7087), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -451029,10 +470567,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [22192] = 3, + [20354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7233), 26, + ACTIONS(7629), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -451059,7 +470597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7231), 35, + ACTIONS(7627), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -451095,18 +470633,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [22261] = 3, + [20423] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8400), 27, + ACTIONS(7136), 1, + anon_sym_LPAREN2, + ACTIONS(7138), 1, + anon_sym_STAR, + ACTIONS(7140), 1, + anon_sym_AMP_AMP, + ACTIONS(7142), 1, + anon_sym_AMP, + ACTIONS(7152), 1, + anon_sym_LBRACK, + STATE(1980), 1, + sym_parameter_list, + STATE(4699), 1, + sym__abstract_declarator, + STATE(5091), 1, + sym__function_declarator_seq, + STATE(5090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9429), 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, @@ -451115,26 +470673,16 @@ static const uint16_t ts_small_parse_table[] = { 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(8402), 34, + ACTIONS(9427), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -451145,136 +470693,61 @@ 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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [22330] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6846), 30, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_LT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(6844), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_typename, - anon_sym_asm, - 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, - [22399] = 21, + [20510] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7497), 1, + ACTIONS(7176), 1, anon_sym___attribute__, - ACTIONS(7499), 1, + ACTIONS(7178), 1, anon_sym___attribute, - ACTIONS(7501), 1, + ACTIONS(7180), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7513), 1, - anon_sym_noexcept, - ACTIONS(7515), 1, - anon_sym_throw, - ACTIONS(7598), 1, + ACTIONS(7221), 1, anon_sym_requires, - ACTIONS(9630), 1, + ACTIONS(10131), 1, anon_sym_DASH_GT, - STATE(6170), 1, - sym__function_attributes_end, - STATE(6194), 1, + STATE(5932), 1, sym_trailing_return_type, - STATE(8976), 1, + STATE(5994), 1, + sym__function_attributes_end, + STATE(9134), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7596), 2, + ACTIONS(7219), 2, anon_sym_final, anon_sym_override, - STATE(6071), 2, + STATE(4485), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6313), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6389), 2, + STATE(4778), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6558), 2, + STATE(5396), 2, sym__function_postfix, sym_requires_clause, - STATE(4489), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7546), 10, + ACTIONS(8424), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -451283,11 +470756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7544), 25, + ACTIONS(8422), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -451299,7 +470774,9 @@ 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_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -451311,10 +470788,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [22504] = 3, + anon_sym_COLON_RBRACK, + [20609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7225), 26, + ACTIONS(6612), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + 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___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6614), 47, + 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___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [20678] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7673), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -451341,7 +470885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7223), 35, + ACTIONS(7671), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -451377,54 +470921,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [22573] = 21, + [20747] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7497), 1, + ACTIONS(7884), 1, anon_sym___attribute__, - ACTIONS(7499), 1, + ACTIONS(7886), 1, anon_sym___attribute, - ACTIONS(7501), 1, + ACTIONS(7888), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7513), 1, + ACTIONS(7899), 1, anon_sym_noexcept, - ACTIONS(7515), 1, + ACTIONS(7901), 1, anon_sym_throw, - ACTIONS(7598), 1, - anon_sym_requires, - ACTIONS(9760), 1, + ACTIONS(10116), 1, anon_sym_DASH_GT, - STATE(6156), 1, + ACTIONS(10137), 1, + anon_sym_requires, + STATE(6268), 1, sym__function_attributes_end, - STATE(6209), 1, + STATE(6363), 1, sym_trailing_return_type, - STATE(8976), 1, + STATE(9133), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7596), 2, + ACTIONS(10134), 2, anon_sym_final, anon_sym_override, - STATE(6071), 2, + STATE(6193), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6313), 2, + STATE(6393), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6389), 2, + STATE(6457), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6509), 2, + STATE(6630), 2, sym__function_postfix, sym_requires_clause, - STATE(4508), 3, + STATE(4585), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7629), 10, + ACTIONS(7968), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -451435,7 +470979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7627), 25, + ACTIONS(7966), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -451461,10 +471005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [22678] = 3, + [20852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7225), 26, + ACTIONS(7661), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -451491,7 +471035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7223), 35, + ACTIONS(7659), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -451527,17 +471071,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [22747] = 6, + [20921] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6999), 1, + sym_primitive_type, + STATE(4065), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10109), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7525), 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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7528), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [20996] = 6, ACTIONS(3), 1, sym_comment, - STATE(3716), 1, + STATE(3766), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(9256), 4, + ACTIONS(9623), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6627), 17, + ACTIONS(6999), 17, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -451555,7 +471168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - ACTIONS(7084), 17, + ACTIONS(7528), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -451573,7 +471186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7081), 22, + ACTIONS(7525), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -451596,10 +471209,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [22822] = 3, + [21071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 26, + ACTIONS(7605), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -451626,7 +471239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7325), 35, + ACTIONS(7603), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -451662,29 +471275,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [22891] = 7, + [21140] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9793), 1, - sym_identifier, - STATE(4015), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(9796), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(9799), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8047), 18, - aux_sym_preproc_elif_token1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7176), 1, + anon_sym___attribute__, + ACTIONS(7178), 1, + anon_sym___attribute, + ACTIONS(7180), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7221), 1, + anon_sym_requires, + ACTIONS(9287), 1, + anon_sym_DASH_GT, + STATE(5857), 1, + sym_trailing_return_type, + STATE(5963), 1, + sym__function_attributes_end, + STATE(9134), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7219), 2, + anon_sym_final, + anon_sym_override, + STATE(4485), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5532), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -451694,22 +471324,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LBRACK, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8045), 29, + ACTIONS(7966), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -451724,77 +471344,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RBRACK_RBRACK, 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_DOT_STAR, - anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [22968] = 16, + [21239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6861), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6874), 1, - anon_sym_requires, - ACTIONS(8882), 1, - anon_sym_DASH_GT, - STATE(5849), 1, - sym__function_attributes_end, - STATE(5969), 1, - sym_trailing_return_type, - STATE(8992), 1, - sym_gnu_asm_expression, - ACTIONS(6859), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6868), 2, - anon_sym_final, - anon_sym_override, - STATE(4374), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4622), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5258), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(6129), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(7546), 18, - aux_sym_preproc_elif_token1, + ACTIONS(6624), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, 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___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6626), 47, + 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___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [21308] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6628), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + 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___attribute, + anon_sym_COLON, + anon_sym_const, anon_sym_DOT, - sym_identifier, - ACTIONS(7544), 22, + ACTIONS(6630), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -451803,52 +471451,81 @@ 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___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, - [23063] = 16, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [21377] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6861), 1, + ACTIONS(7180), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6874), 1, - anon_sym_requires, - ACTIONS(8996), 1, + ACTIONS(9202), 1, anon_sym_DASH_GT, - STATE(5850), 1, + ACTIONS(9208), 1, + anon_sym_requires, + STATE(6021), 1, sym__function_attributes_end, - STATE(5924), 1, + STATE(6116), 1, sym_trailing_return_type, - STATE(8992), 1, + STATE(9134), 1, sym_gnu_asm_expression, - ACTIONS(6859), 2, + ACTIONS(7178), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6868), 2, + ACTIONS(9205), 2, anon_sym_final, anon_sym_override, - STATE(4374), 2, + STATE(4485), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4622), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4709), 2, + STATE(4778), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5305), 2, + STATE(5460), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(6129), 3, + ACTIONS(6497), 3, anon_sym_asm, anon_sym___asm__, anon_sym___asm, - ACTIONS(7629), 18, + ACTIONS(7789), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -451867,7 +471544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7627), 22, + ACTIONS(7791), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -451890,44 +471567,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [23158] = 16, + [21472] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6861), 1, + ACTIONS(7180), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6874), 1, - anon_sym_requires, - ACTIONS(9776), 1, + ACTIONS(9352), 1, anon_sym_DASH_GT, - STATE(5851), 1, + ACTIONS(9358), 1, + anon_sym_requires, + STATE(6022), 1, sym__function_attributes_end, - STATE(5977), 1, + STATE(6118), 1, sym_trailing_return_type, - STATE(8992), 1, + STATE(9134), 1, sym_gnu_asm_expression, - ACTIONS(6859), 2, + ACTIONS(7178), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6868), 2, + ACTIONS(9355), 2, anon_sym_final, anon_sym_override, - STATE(4374), 2, + STATE(4485), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4622), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4709), 2, + STATE(4778), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5364), 2, + STATE(5532), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(6129), 3, + ACTIONS(6497), 3, anon_sym_asm, anon_sym___asm__, anon_sym___asm, - ACTIONS(8087), 18, + ACTIONS(7968), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -451946,7 +471623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(8089), 22, + ACTIONS(7966), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -451969,10 +471646,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [23253] = 3, + [21567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8416), 23, + ACTIONS(8657), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -451987,16 +471664,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_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___asm, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(8418), 38, + sym_literal_suffix, + ACTIONS(8659), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -452004,8 +471685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -452016,43 +471696,45 @@ 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_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [23322] = 10, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [21636] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9021), 1, - anon_sym_LBRACE, - ACTIONS(9586), 1, - anon_sym___attribute__, - ACTIONS(9588), 1, - anon_sym___attribute, - ACTIONS(9802), 1, - anon_sym_COLON, - STATE(3974), 1, - sym_attribute_specifier, - STATE(4216), 1, - sym__enum_base_clause, - STATE(4280), 1, - sym_enumerator_list, - ACTIONS(7600), 10, + ACTIONS(10140), 1, + sym_identifier, + STATE(4140), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3889), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3899), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8468), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452061,11 +471743,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + 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(7602), 44, + sym_literal_suffix, + ACTIONS(8466), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -452077,68 +471771,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___extension__, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [23405] = 10, + anon_sym_COLON_RBRACK, + [21713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9021), 1, - anon_sym_LBRACE, - ACTIONS(9586), 1, - anon_sym___attribute__, - ACTIONS(9588), 1, - anon_sym___attribute, - ACTIONS(9802), 1, - anon_sym_COLON, - STATE(4024), 1, - sym_attribute_specifier, - STATE(4217), 1, - sym__enum_base_clause, - STATE(4284), 1, - sym_enumerator_list, - ACTIONS(7651), 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(7653), 44, + ACTIONS(7753), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -452150,9 +471803,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7751), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -452166,106 +471837,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_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, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, anon_sym_requires, - [23488] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(6859), 1, - anon_sym___attribute, - ACTIONS(6861), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6906), 1, - anon_sym___attribute__, - ACTIONS(6919), 1, - anon_sym_requires, - ACTIONS(9727), 1, - anon_sym_DASH_GT, - STATE(5742), 1, - sym_trailing_return_type, - STATE(5864), 1, - sym__function_attributes_end, - STATE(8992), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(6913), 2, - anon_sym_final, - anon_sym_override, - STATE(4374), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4622), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5364), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 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_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(8089), 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_RBRACK_RBRACK, - 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_DOT_STAR, - anon_sym_COLON_RBRACK, - [23587] = 3, + [21782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7265), 26, + ACTIONS(7757), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -452292,7 +471878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7263), 35, + ACTIONS(7755), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -452328,10 +471914,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [23656] = 3, + [21851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7269), 26, + ACTIONS(7761), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -452358,7 +471944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7267), 35, + ACTIONS(7759), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -452394,10 +471980,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [23725] = 3, + [21920] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(4333), 1, + sym_alignas_qualifier, + ACTIONS(10145), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4109), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6891), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(10142), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6889), 30, + anon_sym_AMP, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [21997] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7112), 1, + anon_sym_LPAREN2, + ACTIONS(7114), 1, + anon_sym_STAR, + ACTIONS(7116), 1, + anon_sym_AMP_AMP, + ACTIONS(7118), 1, + anon_sym_AMP, + ACTIONS(7128), 1, + anon_sym_LBRACK, + STATE(1977), 1, + sym_parameter_list, + STATE(4659), 1, + sym__abstract_declarator, + STATE(5065), 1, + sym__function_declarator_seq, + STATE(5063), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9429), 16, + 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, + ACTIONS(9427), 32, + 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_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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [22084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7273), 26, + ACTIONS(7563), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -452424,7 +472155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7271), 35, + ACTIONS(7561), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -452460,27 +472191,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [23794] = 3, + [22153] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6270), 14, + ACTIONS(7180), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10091), 1, + anon_sym_DASH_GT, + ACTIONS(10151), 1, + anon_sym_requires, + STATE(5983), 1, + sym__function_attributes_end, + STATE(6119), 1, + sym_trailing_return_type, + STATE(9134), 1, + sym_gnu_asm_expression, + ACTIONS(7178), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(10148), 2, + anon_sym_final, + anon_sym_override, + STATE(4485), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6497), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(8424), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, 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___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6272), 47, + sym_identifier, + ACTIONS(8422), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -452489,47 +472262,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___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [23863] = 3, + [22248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6242), 14, + ACTIONS(6608), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452544,7 +472288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(6244), 47, + ACTIONS(6610), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -452592,10 +472336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [23932] = 3, + [22317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6246), 14, + ACTIONS(6616), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452610,7 +472354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(6248), 47, + ACTIONS(6618), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -452658,27 +472402,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [24001] = 3, + [22386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6250), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - 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___attribute, - anon_sym_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6252), 47, + ACTIONS(7769), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -452687,12 +472420,30 @@ 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, + anon_sym_GT_GT, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7767), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -452706,28 +472457,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_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, - sym_auto, - anon_sym_decltype, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [24070] = 3, + [22455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7277), 26, + ACTIONS(7765), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -452754,7 +472498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7275), 35, + ACTIONS(7763), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -452790,24 +472534,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [24139] = 10, + [22524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9592), 1, - anon_sym___attribute__, - ACTIONS(9594), 1, - anon_sym___attribute, - ACTIONS(9804), 1, - anon_sym_COLON, - ACTIONS(9806), 1, - anon_sym_LBRACE, - STATE(4204), 1, - sym__enum_base_clause, - STATE(4254), 1, - sym_enumerator_list, - STATE(4375), 1, - sym_attribute_specifier, - ACTIONS(7600), 12, + ACTIONS(6620), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452818,9 +472548,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(7602), 42, + ACTIONS(6622), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -452833,6 +472565,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_LT, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, @@ -452859,28 +472594,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [24222] = 10, + [22593] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9592), 1, - anon_sym___attribute__, - ACTIONS(9594), 1, - anon_sym___attribute, - ACTIONS(9804), 1, - anon_sym_COLON, - ACTIONS(9806), 1, - anon_sym_LBRACE, - STATE(4180), 1, - sym__enum_base_clause, - STATE(4251), 1, - sym_enumerator_list, - STATE(4323), 1, - sym_attribute_specifier, - ACTIONS(7651), 12, + STATE(3823), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9607), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6999), 17, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + ACTIONS(7528), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452891,9 +472639,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7653), 42, + ACTIONS(7525), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -452905,58 +472660,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym___extension__, + 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [24305] = 3, + [22668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6254), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - 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___attribute, - anon_sym_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6256), 47, + ACTIONS(7733), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -452965,12 +472687,30 @@ 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, + anon_sym_GT_GT, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7731), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -452984,45 +472724,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_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, - sym_auto, - anon_sym_decltype, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [24374] = 3, + [22737] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6258), 14, + ACTIONS(10154), 1, + anon_sym_delete, + ACTIONS(10156), 1, + anon_sym_new, + ACTIONS(9601), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9595), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9597), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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(9599), 25, 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___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_LBRACK, + 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(6260), 47, + anon_sym_DASH_GT, + [22814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7781), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -453031,12 +472823,30 @@ 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, + anon_sym_GT_GT, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7779), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -453050,73 +472860,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_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, - sym_auto, - anon_sym_decltype, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [24443] = 5, + [22883] = 3, ACTIONS(3), 1, sym_comment, - STATE(4035), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9771), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6629), 14, + ACTIONS(7773), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_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_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6627), 42, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7771), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -453131,15 +472926,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - 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, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [24516] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [22952] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6262), 14, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(7291), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -453154,7 +472957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(6264), 47, + ACTIONS(7293), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -453168,7 +472971,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, @@ -453202,25 +473004,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [24585] = 6, + [23023] = 8, ACTIONS(3), 1, sym_comment, - STATE(3798), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(5601), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5603), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8737), 23, + ACTIONS(6646), 1, + anon_sym___attribute__, + ACTIONS(6648), 1, + anon_sym___attribute, + ACTIONS(6650), 1, + anon_sym_LBRACK_LBRACK, + STATE(2353), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4488), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8837), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453234,17 +473033,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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(8739), 26, + ACTIONS(8839), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453254,7 +473050,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, @@ -453266,15 +473061,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_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [24660] = 3, + [23102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7289), 26, + ACTIONS(7597), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -453301,7 +473105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7287), 35, + ACTIONS(7595), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -453337,61 +473141,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [24729] = 18, + [23171] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(6859), 1, - anon_sym___attribute, - ACTIONS(6861), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6906), 1, - anon_sym___attribute__, - ACTIONS(8818), 1, - anon_sym_DASH_GT, - ACTIONS(8824), 1, - anon_sym_requires, - STATE(5711), 1, - sym_trailing_return_type, - STATE(5837), 1, - sym__function_attributes_end, - STATE(8992), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8821), 2, - anon_sym_final, - anon_sym_override, - STATE(4374), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4622), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5258), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 11, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5617), 1, + anon_sym_LPAREN2, + ACTIONS(5619), 1, + anon_sym_STAR, + ACTIONS(5621), 1, + anon_sym_AMP_AMP, + ACTIONS(5623), 1, + anon_sym_AMP, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(6823), 1, + anon_sym_RPAREN, + ACTIONS(8228), 1, + sym_identifier, + ACTIONS(8675), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4706), 1, + sym_parameter_list, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7993), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8785), 1, + sym__declarator, + STATE(9003), 1, + sym__abstract_declarator, + STATE(11554), 1, + sym_ms_based_modifier, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7086), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [23294] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(7291), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, 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___attribute, anon_sym_COLON, - anon_sym_LBRACK, + anon_sym_const, anon_sym_DOT, - ACTIONS(7544), 29, + ACTIONS(7293), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -453400,12 +473265,24 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -453417,11 +473294,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_COLON_RBRACK, - [24828] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [23365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7293), 26, + ACTIONS(7601), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -453448,7 +473331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7291), 35, + ACTIONS(7599), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -453484,16 +473367,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [24897] = 3, + [23434] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5617), 1, + anon_sym_LPAREN2, + ACTIONS(5619), 1, + anon_sym_STAR, + ACTIONS(5621), 1, + anon_sym_AMP_AMP, + ACTIONS(5623), 1, + anon_sym_AMP, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(7345), 1, + anon_sym_RPAREN, + ACTIONS(8228), 1, + sym_identifier, + ACTIONS(8675), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4706), 1, + sym_parameter_list, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7993), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8804), 1, + sym__declarator, + STATE(8987), 1, + sym__abstract_declarator, + STATE(11554), 1, + sym_ms_based_modifier, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7086), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [23557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7193), 26, + ACTIONS(6594), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(6601), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -453505,27 +473490,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7191), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -453539,21 +473509,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_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_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_requires, - [24966] = 3, + [23626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6800), 26, + ACTIONS(7563), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -453580,7 +473556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6798), 35, + ACTIONS(7561), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -453616,10 +473592,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [25035] = 3, + [23695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7225), 26, + ACTIONS(7609), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -453646,7 +473622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7223), 35, + ACTIONS(7607), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -453682,25 +473658,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [25104] = 9, + [23764] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7637), 1, - anon_sym_requires, - ACTIONS(8076), 1, - anon_sym_DASH_GT, - STATE(2975), 1, - sym_trailing_return_type, - ACTIONS(7634), 2, - anon_sym_final, - anon_sym_override, - STATE(3248), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3497), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 19, + STATE(3858), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(5995), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5997), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(9116), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453714,23 +473690,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7627), 32, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(9118), 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___attribute__, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -453743,86 +473722,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_DOT_STAR, - [25184] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(7183), 28, - 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_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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(7185), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_typename, - anon_sym_asm, - 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, - [25254] = 3, + anon_sym_DASH_GT_STAR, + [23839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8446), 24, + ACTIONS(8704), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453832,32 +473740,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___attribute, + anon_sym_LBRACK, 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___asm, anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(8448), 36, + ACTIONS(8706), 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_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -453865,162 +473771,186 @@ 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_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - 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_DASH_GT_STAR, - [25322] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [23908] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8454), 24, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7176), 1, + anon_sym___attribute__, + ACTIONS(7178), 1, + anon_sym___attribute, + ACTIONS(7180), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9211), 1, + anon_sym_DASH_GT, + ACTIONS(9219), 1, + anon_sym_requires, + STATE(5898), 1, + sym_trailing_return_type, + STATE(6006), 1, + sym__function_attributes_end, + STATE(9134), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9216), 2, + anon_sym_final, + anon_sym_override, + STATE(4485), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5460), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 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_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(8456), 36, + ACTIONS(7791), 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_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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, anon_sym_DOT_STAR, - 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_DASH_GT_STAR, - [25390] = 6, + anon_sym_COLON_RBRACK, + [24007] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 1, - anon_sym_decltype, - ACTIONS(9769), 1, - sym_auto, - STATE(4315), 1, - sym_decltype_auto, - ACTIONS(6798), 13, + ACTIONS(7239), 1, + anon_sym___attribute, + ACTIONS(7385), 1, + anon_sym_LBRACE, + ACTIONS(8028), 1, + anon_sym___attribute__, + ACTIONS(10105), 1, + anon_sym_COLON, + STATE(2118), 1, + sym__enum_base_clause, + STATE(2136), 1, + sym_enumerator_list, + STATE(2200), 1, + sym_attribute_specifier, + ACTIONS(8006), 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___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6800), 44, + ACTIONS(8008), 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_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [25464] = 3, + anon_sym_COLON_RBRACK, + [24090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8400), 24, + ACTIONS(8697), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454030,11 +473960,16 @@ 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, @@ -454042,19 +473977,15 @@ 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_literal_suffix, - ACTIONS(8402), 36, + ACTIONS(8699), 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, @@ -454063,7 +473994,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, @@ -454071,27 +474001,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + 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, - anon_sym_DASH_GT_STAR, - [25532] = 3, + [24159] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2758), 25, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7816), 1, + anon_sym___attribute__, + ACTIONS(7818), 1, + anon_sym___attribute, + ACTIONS(7820), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7831), 1, + anon_sym_noexcept, + ACTIONS(7833), 1, + anon_sym_throw, + ACTIONS(10119), 1, + anon_sym_DASH_GT, + ACTIONS(10161), 1, + anon_sym_requires, + STATE(6273), 1, + sym__function_attributes_end, + STATE(6295), 1, + sym_trailing_return_type, + STATE(9096), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10158), 2, + anon_sym_final, + anon_sym_override, + STATE(6157), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6403), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6501), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6571), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4577), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7968), 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_LBRACK, + anon_sym_DOT, + ACTIONS(7966), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -454100,19 +474084,59 @@ 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_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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_GT2, + [24264] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7176), 1, + anon_sym___attribute__, + ACTIONS(7178), 1, + anon_sym___attribute, + ACTIONS(7180), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9287), 1, anon_sym_DASH_GT, - ACTIONS(2768), 35, - aux_sym_preproc_elif_token1, + ACTIONS(9293), 1, + anon_sym_requires, + STATE(5907), 1, + sym_trailing_return_type, + STATE(6012), 1, + sym__function_attributes_end, + STATE(9134), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9290), 2, + anon_sym_final, + anon_sym_override, + STATE(4485), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5532), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -454121,42 +474145,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [25600] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6718), 25, + ACTIONS(7966), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -454168,606 +474163,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6716), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, 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_final, - anon_sym_override, - anon_sym_requires, - [25668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9810), 29, - 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_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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(9808), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_typename, - anon_sym_asm, - 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, - [25736] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6272), 29, - 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_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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(6270), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_typename, - anon_sym_asm, - 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, - [25804] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6244), 29, - 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_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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(6242), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_typename, - anon_sym_asm, - 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, - [25872] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6248), 29, - 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_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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(6246), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_typename, - anon_sym_asm, - 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, - [25940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6252), 29, - 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_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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(6250), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_typename, - anon_sym_asm, - 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, - [26008] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6256), 29, - 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_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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(6254), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_typename, - anon_sym_asm, - 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, - [26076] = 3, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [24363] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6260), 29, - 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_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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(6258), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_typename, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + ACTIONS(10164), 1, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [26144] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6264), 29, - 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_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(4050), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3889), 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_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(6262), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_typename, - anon_sym_asm, - 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, - [26212] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9812), 1, - anon_sym_delete, - ACTIONS(9814), 1, - anon_sym_new, - ACTIONS(9346), 3, - anon_sym_TILDE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9340), 6, - anon_sym_STAR, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9344), 24, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3899), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8456), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -454775,148 +474217,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9342), 25, + sym_literal_suffix, + ACTIONS(8454), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [26288] = 5, + anon_sym_COLON_RBRACK, + [24440] = 3, ACTIONS(3), 1, sym_comment, - STATE(4165), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9816), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7385), 14, + ACTIONS(7625), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_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_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7383), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [26360] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4165), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9816), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7397), 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_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7395), 41, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7623), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -454931,79 +474303,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + 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_decltype, - anon_sym_template, - anon_sym_operator, - [26432] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6969), 29, - 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_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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(6967), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_typename, - anon_sym_asm, - 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_final, + anon_sym_override, anon_sym_requires, - sym_this, - [26500] = 3, + [24509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8551), 22, + ACTIONS(8750), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455017,27 +474331,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym___asm, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8553), 38, + sym_literal_suffix, + ACTIONS(8752), 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___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -455049,26 +474365,190 @@ 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + 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, + [24578] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7176), 1, + anon_sym___attribute__, + ACTIONS(7178), 1, + anon_sym___attribute, + ACTIONS(7180), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10131), 1, + anon_sym_DASH_GT, + ACTIONS(10169), 1, + anon_sym_requires, + STATE(5908), 1, + sym_trailing_return_type, + STATE(6013), 1, + sym__function_attributes_end, + STATE(9134), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10166), 2, + anon_sym_final, + anon_sym_override, + STATE(4485), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 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_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(8422), 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_RBRACK_RBRACK, + 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_DOT_STAR, + anon_sym_COLON_RBRACK, + [24677] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7816), 1, + anon_sym___attribute__, + ACTIONS(7818), 1, + anon_sym___attribute, + ACTIONS(7820), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7831), 1, + anon_sym_noexcept, + ACTIONS(7833), 1, + anon_sym_throw, + ACTIONS(9987), 1, + anon_sym_DASH_GT, + ACTIONS(10082), 1, + anon_sym_requires, + STATE(6278), 1, + sym__function_attributes_end, + STATE(6292), 1, + sym_trailing_return_type, + STATE(9096), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_DOT_STAR, + ACTIONS(10079), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [26568] = 3, + STATE(6157), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6403), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6501), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6697), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4575), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7789), 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_LBRACK, + anon_sym_DOT, + ACTIONS(7791), 23, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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_GT2, + [24782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8555), 22, + ACTIONS(8665), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455082,27 +474562,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym___asm, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8557), 38, + sym_literal_suffix, + ACTIONS(8667), 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___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -455114,43 +474596,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_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [26636] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2910), 29, - 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_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, @@ -455161,64 +474611,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(2905), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_typename, - anon_sym_asm, - 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, - [26704] = 6, + [24851] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6748), 1, - anon_sym_COLON_COLON, - ACTIONS(9187), 1, - anon_sym_LT, - STATE(4211), 1, - sym_template_argument_list, - ACTIONS(6746), 13, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7180), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7192), 1, + anon_sym_noexcept, + ACTIONS(7194), 1, + anon_sym_throw, + ACTIONS(7221), 1, + anon_sym_requires, + ACTIONS(10122), 1, + anon_sym___attribute__, + ACTIONS(10125), 1, + anon_sym___attribute, + ACTIONS(10128), 1, + anon_sym_DASH_GT, + STATE(5857), 1, + sym_trailing_return_type, + STATE(6192), 1, + sym__function_attributes_end, + STATE(9134), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7219), 2, + anon_sym_final, + anon_sym_override, + STATE(4485), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5532), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4570), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7968), 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___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_LT, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(6751), 44, + ACTIONS(7966), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -455229,11 +474680,63 @@ 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___extension__, - anon_sym___attribute__, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [24956] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7777), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7775), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -455247,100 +474750,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_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, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [26778] = 29, + [25025] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(6813), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(7457), 1, + anon_sym_LBRACE, + ACTIONS(9585), 1, + sym_auto, + STATE(4121), 1, + sym_decltype_auto, + ACTIONS(7225), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3051), 1, anon_sym_STAR, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3065), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(6570), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8701), 1, - sym__declarator, - STATE(11063), 1, - sym_ms_based_modifier, - ACTIONS(2935), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5422), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6287), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2933), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7223), 32, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -455354,10 +474822,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [26898] = 3, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + [25104] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8579), 22, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1953), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10174), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455371,27 +474857,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym___asm, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8581), 38, + ACTIONS(10172), 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___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -455412,108 +474895,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [26966] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3051), 1, - anon_sym_STAR, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(6570), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8694), 1, - sym__declarator, - STATE(11063), 1, - sym_ms_based_modifier, - ACTIONS(2935), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4068), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5300), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2933), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [27086] = 3, + anon_sym_COLON_RBRACK, + [25180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2954), 29, + ACTIONS(7090), 29, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -455543,7 +474934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u8R_DQUOTE, anon_sym_CARET_CARET, anon_sym_LBRACK_COLON, - ACTIONS(2949), 31, + ACTIONS(7085), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -455575,372 +474966,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [27154] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6748), 1, - anon_sym_COLON_COLON, - ACTIONS(8526), 1, - anon_sym_LT, - STATE(3619), 1, - sym_template_argument_list, - ACTIONS(6746), 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___attribute, - anon_sym_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6751), 46, - 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___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [27228] = 29, + [25248] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8554), 1, anon_sym_COLON_COLON, - ACTIONS(9818), 1, + ACTIONS(10178), 1, anon_sym_STAR, - ACTIONS(9820), 1, + ACTIONS(10180), 1, anon_sym_AMP_AMP, - ACTIONS(9822), 1, + ACTIONS(10182), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(6570), 1, + STATE(6574), 1, sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7878), 1, + STATE(7990), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8384), 1, + STATE(8541), 1, sym__declarator, - STATE(11190), 1, + STATE(11622), 1, sym_ms_based_modifier, - ACTIONS(2935), 2, + ACTIONS(3268), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4127), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5296), 2, + STATE(5416), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2933), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [27348] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, - sym_identifier, - ACTIONS(8203), 1, - anon_sym_COLON_COLON, - ACTIONS(9818), 1, - anon_sym_STAR, - ACTIONS(9820), 1, - anon_sym_AMP_AMP, - ACTIONS(9822), 1, - anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(6570), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7878), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8415), 1, - sym__declarator, - STATE(11190), 1, - sym_ms_based_modifier, - ACTIONS(2935), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4077), 2, + STATE(6427), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(5279), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2933), 3, + ACTIONS(3266), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [27468] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4088), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9824), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7404), 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_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7402), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [27540] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4091), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9826), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7410), 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_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7408), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + 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, + ACTIONS(3270), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -455953,78 +475057,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [27612] = 29, + [25368] = 29, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3446), 1, + anon_sym_STAR, + ACTIONS(3448), 1, + anon_sym_AMP, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(9818), 1, - anon_sym_STAR, - ACTIONS(9820), 1, - anon_sym_AMP_AMP, - ACTIONS(9822), 1, - anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(6570), 1, + STATE(6574), 1, sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7878), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8467), 1, + STATE(8785), 1, sym__declarator, - STATE(11190), 1, + STATE(11554), 1, sym_ms_based_modifier, - ACTIONS(2935), 2, + ACTIONS(3268), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5291), 2, + STATE(5498), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6287), 2, + STATE(6427), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2933), 3, + ACTIONS(3266), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -456036,7 +475134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -456050,137 +475148,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [27732] = 8, + [25488] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(6326), 1, - anon_sym___attribute__, - ACTIONS(6328), 1, - anon_sym___attribute, - ACTIONS(6330), 1, - anon_sym_LBRACK_LBRACK, - STATE(2260), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4445), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8512), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3446), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3448), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3460), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8514), 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_GT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [27810] = 8, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8228), 1, + sym_identifier, + ACTIONS(8675), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(6574), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7993), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8826), 1, + sym__declarator, + STATE(11554), 1, + sym_ms_based_modifier, + ACTIONS(3268), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4152), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5390), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3266), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [25608] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6326), 1, - anon_sym___attribute__, - ACTIONS(6328), 1, - anon_sym___attribute, - ACTIONS(6330), 1, - anon_sym_LBRACK_LBRACK, - STATE(2260), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4504), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8479), 19, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(8883), 1, + anon_sym_LT, + STATE(4130), 1, + sym_template_argument_list, + ACTIONS(7371), 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_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, anon_sym_DOT, - ACTIONS(8481), 34, + ACTIONS(5657), 46, 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___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, @@ -456190,18 +475307,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [27888] = 7, + [25682] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6451), 1, + ACTIONS(6813), 1, anon_sym_decltype, - ACTIONS(7183), 1, + ACTIONS(7457), 1, anon_sym_LBRACE, - ACTIONS(9191), 1, + ACTIONS(9585), 1, sym_auto, - STATE(3963), 1, + STATE(4121), 1, sym_decltype_auto, - ACTIONS(6800), 24, + ACTIONS(7225), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -456226,7 +475343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6798), 32, + ACTIONS(7223), 32, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -456259,10 +475376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - [27964] = 3, + [25758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9830), 29, + ACTIONS(3315), 29, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -456292,73 +475409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u8R_DQUOTE, anon_sym_CARET_CARET, anon_sym_LBRACK_COLON, - ACTIONS(9828), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_typename, - anon_sym_asm, - 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, - [28032] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(6951), 28, - 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_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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(6949), 31, + ACTIONS(3310), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -456390,18 +475441,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [28102] = 7, + [25826] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, + ACTIONS(9304), 1, anon_sym_LPAREN2, - ACTIONS(9836), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - STATE(1843), 1, + STATE(1953), 1, sym_parameter_list, - STATE(3573), 1, + STATE(3611), 1, sym__function_declarator_seq, - ACTIONS(9834), 19, + ACTIONS(10186), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456421,7 +475472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9832), 37, + ACTIONS(10184), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -456459,18 +475510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_COLON_RBRACK, - [28178] = 7, + [25902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1843), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9840), 19, + ACTIONS(8938), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456484,24 +475527,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - ACTIONS(9838), 37, + anon_sym_DASH_GT, + ACTIONS(8940), 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -456522,24 +475568,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_COLON_RBRACK, - [28254] = 7, + anon_sym_DASH_GT_STAR, + [25970] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, + ACTIONS(9304), 1, anon_sym_LPAREN2, - ACTIONS(9836), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - STATE(1843), 1, + STATE(1953), 1, sym_parameter_list, - STATE(3573), 1, + STATE(3611), 1, sym__function_declarator_seq, - ACTIONS(9844), 19, + ACTIONS(10190), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456559,7 +475606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9842), 37, + ACTIONS(10188), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -456597,18 +475644,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_COLON_RBRACK, - [28330] = 7, + [26046] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, + ACTIONS(9304), 1, anon_sym_LPAREN2, - ACTIONS(9836), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - STATE(1843), 1, + STATE(1953), 1, sym_parameter_list, - STATE(3573), 1, + STATE(3611), 1, sym__function_declarator_seq, - ACTIONS(9848), 19, + ACTIONS(10194), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456628,7 +475675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9846), 37, + ACTIONS(10192), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -456666,18 +475713,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_COLON_RBRACK, - [28406] = 7, + [26122] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1843), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9852), 19, + ACTIONS(6681), 1, + anon_sym___attribute__, + ACTIONS(6683), 1, + anon_sym___attribute, + ACTIONS(6685), 1, + anon_sym_LBRACK_LBRACK, + STATE(2375), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4587), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8837), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456687,28 +475738,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_COLON, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9850), 37, + ACTIONS(8839), 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_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -456716,7 +475765,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, @@ -456733,87 +475781,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [28482] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4165), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9816), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7416), 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_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7414), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [28554] = 7, + anon_sym_requires, + [26200] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, + ACTIONS(9304), 1, anon_sym_LPAREN2, - ACTIONS(9836), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - STATE(1843), 1, + STATE(1953), 1, sym_parameter_list, - STATE(3573), 1, + STATE(3611), 1, sym__function_declarator_seq, - ACTIONS(9856), 19, + ACTIONS(10198), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456833,7 +475814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9854), 37, + ACTIONS(10196), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -456871,18 +475852,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_COLON_RBRACK, - [28630] = 7, + [26276] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, + ACTIONS(9304), 1, anon_sym_LPAREN2, - ACTIONS(9836), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - STATE(1843), 1, + STATE(1953), 1, sym_parameter_list, - STATE(3573), 1, + STATE(3611), 1, sym__function_declarator_seq, - ACTIONS(9860), 19, + ACTIONS(10202), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456902,7 +475883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9858), 37, + ACTIONS(10200), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -456940,85 +475921,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_COLON_RBRACK, - [28706] = 5, + [26352] = 3, ACTIONS(3), 1, sym_comment, - STATE(4165), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9816), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7201), 14, + ACTIONS(8750), 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_identifier, + sym_literal_suffix, + ACTIONS(8752), 36, 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, - anon_sym_LBRACK_COLON, - ACTIONS(7199), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [28778] = 7, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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_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_DASH_GT_STAR, + [26420] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, + ACTIONS(9304), 1, anon_sym_LPAREN2, - ACTIONS(9836), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - STATE(1843), 1, + STATE(1953), 1, sym_parameter_list, - STATE(3573), 1, + STATE(3611), 1, sym__function_declarator_seq, - ACTIONS(9864), 19, + ACTIONS(10206), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457038,7 +476017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9862), 37, + ACTIONS(10204), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -457076,525 +476055,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_COLON_RBRACK, - [28854] = 5, + [26496] = 7, ACTIONS(3), 1, sym_comment, - STATE(4061), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9866), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7215), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9304), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1953), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10210), 19, + 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, - anon_sym_LBRACK_COLON, - ACTIONS(7213), 41, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [28926] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4062), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9868), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7241), 14, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10208), 37, 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_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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7239), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [28998] = 5, + anon_sym_RBRACK_RBRACK, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [26572] = 3, ACTIONS(3), 1, sym_comment, - STATE(4165), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9816), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7251), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(8979), 22, + 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, - anon_sym_LBRACK_COLON, - ACTIONS(7249), 41, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [29070] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4165), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9816), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7389), 14, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8981), 38, 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, - anon_sym_LBRACK_COLON, - ACTIONS(7387), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [29142] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9872), 29, - 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_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(9870), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_typename, anon_sym_asm, 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_DOT_STAR, + anon_sym_final, + anon_sym_override, anon_sym_requires, - sym_this, - [29210] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, - sym_identifier, - ACTIONS(9876), 1, - anon_sym_STAR, - ACTIONS(9878), 1, - anon_sym_AMP_AMP, - ACTIONS(9880), 1, - anon_sym_AMP, - ACTIONS(9882), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(6570), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7870), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8384), 1, - sym__declarator, - STATE(11345), 1, - sym_ms_based_modifier, - ACTIONS(2935), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4152), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5348), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2933), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [29330] = 29, + anon_sym_DASH_GT_STAR, + [26640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, - sym_identifier, - ACTIONS(9876), 1, + ACTIONS(8665), 24, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(9878), 1, - anon_sym_AMP_AMP, - ACTIONS(9880), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(9882), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(6570), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7870), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8415), 1, - sym__declarator, - STATE(11345), 1, - sym_ms_based_modifier, - ACTIONS(2935), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4101), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5170), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2933), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [29450] = 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_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + sym_literal_suffix, + ACTIONS(8667), 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_DOT_STAR, + 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_DASH_GT_STAR, + [26708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9886), 29, + ACTIONS(10214), 29, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -457624,7 +476287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u8R_DQUOTE, anon_sym_CARET_CARET, anon_sym_LBRACK_COLON, - ACTIONS(9884), 31, + ACTIONS(10212), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -457656,72 +476319,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [29518] = 29, + [26776] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(9876), 1, + ACTIONS(10218), 1, anon_sym_STAR, - ACTIONS(9878), 1, + ACTIONS(10220), 1, anon_sym_AMP_AMP, - ACTIONS(9880), 1, + ACTIONS(10222), 1, anon_sym_AMP, - ACTIONS(9882), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(6570), 1, + STATE(6574), 1, sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7870), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8467), 1, + STATE(8528), 1, sym__declarator, - STATE(11345), 1, + STATE(11612), 1, sym_ms_based_modifier, - ACTIONS(2935), 2, + ACTIONS(3268), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5174), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6287), 2, + STATE(4249), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2933), 3, + STATE(5425), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3266), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -457733,7 +476396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -457747,58 +476410,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [29638] = 12, + [26896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(6475), 1, - anon_sym_LBRACK, - ACTIONS(6838), 1, - anon_sym_STAR, - ACTIONS(6840), 1, - anon_sym_AMP_AMP, - ACTIONS(6842), 1, - anon_sym_AMP, - STATE(1871), 1, - sym_parameter_list, - STATE(3515), 1, - sym__function_declarator_seq, - STATE(4693), 1, - sym__abstract_declarator, - STATE(3510), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9074), 17, + ACTIONS(9007), 22, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - ACTIONS(9072), 30, + anon_sym_DASH_GT, + ACTIONS(9009), 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___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457819,256 +476468,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [29724] = 29, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [26964] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - ACTIONS(9888), 1, + ACTIONS(10218), 1, anon_sym_STAR, - ACTIONS(9890), 1, + ACTIONS(10220), 1, anon_sym_AMP_AMP, - ACTIONS(9892), 1, + ACTIONS(10222), 1, anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(6570), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8384), 1, - sym__declarator, - STATE(10719), 1, - sym_ms_based_modifier, - ACTIONS(2935), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4156), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5369), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2933), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [29844] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, - sym_identifier, - ACTIONS(9882), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(9894), 1, - anon_sym_STAR, - ACTIONS(9896), 1, - anon_sym_AMP_AMP, - ACTIONS(9898), 1, - anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(6570), 1, + STATE(6574), 1, sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7870), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8694), 1, + STATE(8523), 1, sym__declarator, - STATE(10563), 1, + STATE(11612), 1, sym_ms_based_modifier, - ACTIONS(2935), 2, + ACTIONS(3268), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4105), 2, + STATE(4176), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(5200), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2933), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [29964] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, - sym_identifier, - ACTIONS(9882), 1, - anon_sym_COLON_COLON, - ACTIONS(9894), 1, - anon_sym_STAR, - ACTIONS(9896), 1, - anon_sym_AMP_AMP, - ACTIONS(9898), 1, - anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(6570), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7870), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8701), 1, - sym__declarator, - STATE(10563), 1, - sym_ms_based_modifier, - ACTIONS(2935), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5203), 2, + STATE(5295), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6287), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2933), 3, + ACTIONS(3266), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -458080,7 +476552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -458094,18 +476566,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [30084] = 4, + [27084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(6951), 28, + ACTIONS(10228), 29, 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_DASH_DASH, @@ -458128,7 +476599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u8R_DQUOTE, anon_sym_CARET_CARET, anon_sym_LBRACK_COLON, - ACTIONS(6949), 31, + ACTIONS(10226), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -458160,27 +476631,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [30154] = 3, + [27152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6233), 29, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(8657), 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_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_GT, + anon_sym_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_identifier, + sym_literal_suffix, + ACTIONS(8659), 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, - 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_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -458191,361 +476695,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(6226), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_typename, - anon_sym_asm, - 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, - [30222] = 29, + anon_sym_DASH_GT_STAR, + [27220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3051), 1, + ACTIONS(8697), 24, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(3053), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(6570), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8694), 1, - sym__declarator, - STATE(11063), 1, - sym_ms_based_modifier, - ACTIONS(2935), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5300), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6287), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2933), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [30342] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(5280), 1, - sym_auto, - ACTIONS(5282), 1, - anon_sym_decltype, - ACTIONS(9672), 1, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - STATE(4121), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4203), 1, - sym_template_argument_list, - STATE(4767), 1, - sym_decltype_auto, - ACTIONS(5274), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5258), 9, + 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_identifier, + sym_literal_suffix, + ACTIONS(8699), 36, + 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_LBRACK_COLON, - ACTIONS(5251), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [30426] = 29, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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_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_DASH_GT_STAR, + [27288] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(8203), 1, - anon_sym_COLON_COLON, - ACTIONS(9900), 1, + ACTIONS(10218), 1, anon_sym_STAR, - ACTIONS(9902), 1, + ACTIONS(10220), 1, anon_sym_AMP_AMP, - ACTIONS(9904), 1, + ACTIONS(10222), 1, anon_sym_AMP, - STATE(3682), 1, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(6570), 1, + STATE(6574), 1, sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7878), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8686), 1, + STATE(8541), 1, sym__declarator, - STATE(10656), 1, + STATE(11612), 1, sym_ms_based_modifier, - ACTIONS(2935), 2, + ACTIONS(3268), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4158), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5375), 2, + STATE(5344), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2933), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [30546] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, - sym_identifier, - ACTIONS(8203), 1, - anon_sym_COLON_COLON, - ACTIONS(9900), 1, - anon_sym_STAR, - ACTIONS(9902), 1, - anon_sym_AMP_AMP, - ACTIONS(9904), 1, - anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(6570), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7878), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8646), 1, - sym__declarator, - STATE(10656), 1, - sym_ms_based_modifier, - ACTIONS(2935), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4112), 2, + STATE(6427), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(5225), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2933), 3, + ACTIONS(3266), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -458557,7 +476838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -458571,503 +476852,351 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [30666] = 29, + [27408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(10232), 29, anon_sym_LPAREN2, - ACTIONS(3049), 1, + anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, - sym_identifier, - ACTIONS(8203), 1, - anon_sym_COLON_COLON, - ACTIONS(9900), 1, anon_sym_STAR, - ACTIONS(9902), 1, - anon_sym_AMP_AMP, - ACTIONS(9904), 1, anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(6570), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7878), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8705), 1, - sym__declarator, - STATE(10656), 1, - sym_ms_based_modifier, - ACTIONS(2935), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5228), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6287), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2933), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(10230), 31, + anon_sym_DASH, + anon_sym_PLUS, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [30786] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - ACTIONS(9906), 1, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [27476] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6719), 1, + anon_sym___attribute__, + ACTIONS(6721), 1, + anon_sym___attribute, + ACTIONS(6723), 1, + anon_sym_LBRACK_LBRACK, + STATE(2388), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4556), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8833), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(9908), 1, - anon_sym_AMP_AMP, - ACTIONS(9910), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(6570), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8686), 1, - sym__declarator, - STATE(10827), 1, - sym_ms_based_modifier, - ACTIONS(2935), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4159), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5378), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2933), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [30906] = 29, + 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(8835), 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_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [27554] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - ACTIONS(9888), 1, + ACTIONS(6719), 1, + anon_sym___attribute__, + ACTIONS(6721), 1, + anon_sym___attribute, + ACTIONS(6723), 1, + anon_sym_LBRACK_LBRACK, + STATE(2388), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4563), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8837), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(9890), 1, - anon_sym_AMP_AMP, - ACTIONS(9892), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(6570), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8415), 1, - sym__declarator, - STATE(10719), 1, - sym_ms_based_modifier, - ACTIONS(2935), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4115), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5235), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2933), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [31026] = 29, + 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(8839), 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_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [27632] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(6825), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(6839), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - ACTIONS(9888), 1, + ACTIONS(7162), 1, anon_sym_STAR, - ACTIONS(9890), 1, + ACTIONS(7164), 1, anon_sym_AMP_AMP, - ACTIONS(9892), 1, + ACTIONS(7166), 1, anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(6570), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8467), 1, - sym__declarator, - STATE(10719), 1, - sym_ms_based_modifier, - ACTIONS(2935), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5239), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6287), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2933), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [31146] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4096), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9785), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7255), 14, + STATE(1979), 1, + sym_parameter_list, + STATE(3626), 1, + sym__function_declarator_seq, + STATE(4805), 1, + sym__abstract_declarator, + STATE(3625), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9429), 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___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9427), 30, 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_PIPE_PIPE, + 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7253), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [31218] = 29, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + [27718] = 29, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3446), 1, + anon_sym_STAR, + ACTIONS(3448), 1, + anon_sym_AMP, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(9912), 1, - anon_sym_STAR, - ACTIONS(9914), 1, - anon_sym_AMP_AMP, - ACTIONS(9916), 1, - anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(6570), 1, + STATE(6574), 1, sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7878), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8694), 1, + STATE(8785), 1, sym__declarator, - STATE(10776), 1, + STATE(11554), 1, sym_ms_based_modifier, - ACTIONS(2935), 2, + ACTIONS(3268), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4118), 2, + STATE(4188), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(5249), 2, + STATE(5498), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2933), 3, + ACTIONS(3266), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -459079,7 +477208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -459093,72 +477222,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [31338] = 29, + [27838] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(9912), 1, + ACTIONS(10234), 1, anon_sym_STAR, - ACTIONS(9914), 1, + ACTIONS(10236), 1, anon_sym_AMP_AMP, - ACTIONS(9916), 1, + ACTIONS(10238), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(6570), 1, + STATE(6574), 1, sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7878), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8701), 1, + STATE(8528), 1, sym__declarator, - STATE(10776), 1, + STATE(10900), 1, sym_ms_based_modifier, - ACTIONS(2935), 2, + ACTIONS(3268), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5252), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6287), 2, + STATE(4256), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2933), 3, + STATE(5437), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3266), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -459170,7 +477299,59 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [27958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3118), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(3128), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -459184,72 +477365,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [31458] = 29, + anon_sym_alignas, + anon_sym__Alignas, + 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_final, + anon_sym_override, + anon_sym_requires, + [28026] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(8360), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(9906), 1, + ACTIONS(10240), 1, anon_sym_STAR, - ACTIONS(9908), 1, + ACTIONS(10242), 1, anon_sym_AMP_AMP, - ACTIONS(9910), 1, + ACTIONS(10244), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(6570), 1, + STATE(6574), 1, sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7869), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8646), 1, + STATE(8785), 1, sym__declarator, - STATE(10827), 1, + STATE(10743), 1, sym_ms_based_modifier, - ACTIONS(2935), 2, + ACTIONS(3268), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4120), 2, + STATE(4185), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(5261), 2, + STATE(5269), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2933), 3, + ACTIONS(3266), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -459261,7 +477455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -459275,72 +477469,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [31578] = 29, + [28146] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(8360), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(9906), 1, + ACTIONS(10240), 1, anon_sym_STAR, - ACTIONS(9908), 1, + ACTIONS(10242), 1, anon_sym_AMP_AMP, - ACTIONS(9910), 1, + ACTIONS(10244), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(6570), 1, + STATE(6574), 1, sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7869), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8705), 1, + STATE(8804), 1, sym__declarator, - STATE(10827), 1, + STATE(10743), 1, sym_ms_based_modifier, - ACTIONS(2935), 2, + ACTIONS(3268), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5265), 2, + STATE(5275), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6287), 2, + STATE(6427), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2933), 3, + ACTIONS(3266), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -459352,7 +477546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -459366,17 +477560,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [31698] = 5, + [28266] = 5, ACTIONS(3), 1, sym_comment, - STATE(4165), 1, + STATE(4225), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(9816), 4, + ACTIONS(10107), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7393), 14, + ACTIONS(7719), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -459391,7 +477585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7391), 41, + ACTIONS(7717), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -459433,202 +477627,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [31770] = 4, + [28338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9918), 1, + ACTIONS(7079), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - ACTIONS(8583), 22, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym___asm, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8585), 37, - 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___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_asm, - anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [31840] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3051), 1, - anon_sym_STAR, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(6570), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8702), 1, - sym__declarator, - STATE(11063), 1, - sym_ms_based_modifier, - ACTIONS(2935), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4108), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5224), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2933), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [31960] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9187), 1, - anon_sym_LT, - STATE(3968), 1, - sym_template_argument_list, - ACTIONS(7031), 13, + anon_sym_DASH_GT, + ACTIONS(7077), 35, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_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___attribute, - anon_sym_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(5272), 44, - 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_LT, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -459642,225 +477681,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_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, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [32034] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9920), 1, - anon_sym_delete, - ACTIONS(9922), 1, - anon_sym_new, - ACTIONS(9346), 3, - anon_sym_TILDE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9340), 6, - anon_sym_STAR, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9342), 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(9344), 26, - 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_LBRACK, - 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, - [32110] = 6, + [28406] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(9930), 1, - anon_sym_template, - STATE(2000), 1, - sym_string_literal, - ACTIONS(9928), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(9926), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(29), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(9924), 46, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_operator, - [32184] = 29, - ACTIONS(3), 1, - sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3446), 1, + anon_sym_STAR, + ACTIONS(3448), 1, + anon_sym_AMP, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(9818), 1, - anon_sym_STAR, - ACTIONS(9820), 1, - anon_sym_AMP_AMP, - ACTIONS(9822), 1, - anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(6570), 1, + STATE(6574), 1, sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7878), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8415), 1, + STATE(8804), 1, sym__declarator, - STATE(11190), 1, + STATE(11554), 1, sym_ms_based_modifier, - ACTIONS(2935), 2, + ACTIONS(3268), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5279), 2, + STATE(5304), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6287), 2, + STATE(6427), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2933), 3, + ACTIONS(3266), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -459872,7 +477769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -459886,72 +477783,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [32304] = 29, + [28526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6634), 29, + 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_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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6632), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + 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, + [28594] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(9882), 1, + ACTIONS(8554), 1, anon_sym_COLON_COLON, - ACTIONS(9894), 1, + ACTIONS(10246), 1, anon_sym_STAR, - ACTIONS(9896), 1, + ACTIONS(10248), 1, anon_sym_AMP_AMP, - ACTIONS(9898), 1, + ACTIONS(10250), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(6570), 1, + STATE(6574), 1, sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7870), 1, + STATE(7990), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8702), 1, + STATE(8823), 1, sym__declarator, - STATE(10563), 1, + STATE(10837), 1, sym_ms_based_modifier, - ACTIONS(2935), 2, + ACTIONS(3268), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4155), 2, + STATE(4259), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(5359), 2, + STATE(5445), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2933), 3, + ACTIONS(3266), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -459963,7 +477925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -459977,561 +477939,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [32424] = 6, + [28714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9932), 1, - anon_sym_template, - STATE(2014), 1, - sym_string_literal, - ACTIONS(9928), 5, + ACTIONS(6614), 29, + 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_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(9926), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, anon_sym_LBRACK_COLON, - ACTIONS(9924), 46, - anon_sym_AMP, + ACTIONS(6612), 31, + anon_sym_DASH, + anon_sym_PLUS, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_operator, - [32498] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8637), 22, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym___asm, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8639), 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___attribute__, - 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_asm, anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [32566] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9462), 1, - anon_sym_new, - ACTIONS(9934), 1, - anon_sym_delete, - ACTIONS(9346), 3, - anon_sym_TILDE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9340), 6, - anon_sym_STAR, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9344), 24, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - 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(9342), 25, - anon_sym_DOT_DOT_DOT, - 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_RBRACK_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [32642] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8641), 22, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym___asm, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8643), 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___attribute__, - 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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [32710] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6183), 1, - anon_sym_requires, - ACTIONS(7933), 1, - anon_sym_DASH_GT, - STATE(2911), 1, - sym_trailing_return_type, - ACTIONS(6181), 2, - anon_sym_final, - anon_sym_override, - STATE(3248), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3513), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(7544), 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___attribute__, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - [32790] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6183), 1, - anon_sym_requires, - ACTIONS(8076), 1, - anon_sym_DASH_GT, - STATE(2959), 1, - sym_trailing_return_type, - ACTIONS(6181), 2, - anon_sym_final, - anon_sym_override, - STATE(3248), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3497), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(7627), 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___attribute__, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - [32870] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6183), 1, - anon_sym_requires, - ACTIONS(8534), 1, - anon_sym_DASH_GT, - STATE(2964), 1, - sym_trailing_return_type, - ACTIONS(6181), 2, - anon_sym_final, - anon_sym_override, - STATE(3248), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3528), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8089), 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___attribute__, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - [32950] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6183), 1, - anon_sym_requires, - ACTIONS(9936), 1, - anon_sym_DASH_GT, - STATE(2968), 1, - sym_trailing_return_type, - ACTIONS(6181), 2, - anon_sym_final, - anon_sym_override, - STATE(3248), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3541), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8543), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + 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, + [28782] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6626), 29, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [33030] = 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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6624), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + 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, + [28850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6951), 29, + ACTIONS(6630), 29, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -460561,7 +478102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u8R_DQUOTE, anon_sym_CARET_CARET, anon_sym_LBRACK_COLON, - ACTIONS(6949), 31, + ACTIONS(6628), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -460593,81 +478134,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [33098] = 9, + [28918] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(7560), 1, - anon_sym_requires, - ACTIONS(7933), 1, - anon_sym_DASH_GT, - STATE(2961), 1, - sym_trailing_return_type, - ACTIONS(7557), 2, - anon_sym_final, - anon_sym_override, - STATE(3248), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3513), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8554), 1, + anon_sym_COLON_COLON, + ACTIONS(10246), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(10248), 1, + anon_sym_AMP_AMP, + ACTIONS(10250), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(7544), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(6574), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7990), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8808), 1, + sym__declarator, + STATE(10837), 1, + sym_ms_based_modifier, + ACTIONS(3268), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4195), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5292), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3266), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [29038] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 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___attribute__, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - [33178] = 3, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8554), 1, + anon_sym_COLON_COLON, + ACTIONS(10246), 1, + anon_sym_STAR, + ACTIONS(10248), 1, + anon_sym_AMP_AMP, + ACTIONS(10250), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(6574), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7990), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8816), 1, + sym__declarator, + STATE(10837), 1, + sym_ms_based_modifier, + ACTIONS(3268), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5297), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6427), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3266), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [29158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6751), 29, + ACTIONS(6610), 29, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -460697,7 +478349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u8R_DQUOTE, anon_sym_CARET_CARET, anon_sym_LBRACK_COLON, - ACTIONS(6746), 31, + ACTIONS(6608), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -460729,606 +478381,637 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [33246] = 9, + [29226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8132), 1, - anon_sym_requires, - ACTIONS(8534), 1, - anon_sym_DASH_GT, - STATE(2867), 1, - sym_trailing_return_type, - ACTIONS(8129), 2, - anon_sym_final, - anon_sym_override, - STATE(3248), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3528), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6618), 29, + 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___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8089), 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___attribute__, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [33326] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9401), 1, - anon_sym_requires, - ACTIONS(9936), 1, - anon_sym_DASH_GT, - STATE(2872), 1, - sym_trailing_return_type, - ACTIONS(9398), 2, - anon_sym_final, - anon_sym_override, - STATE(3248), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3541), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 19, + 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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6616), 31, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8543), 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___attribute__, + anon_sym___extension__, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - [33406] = 7, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + 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, + [29294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, + ACTIONS(6622), 29, anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1842), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9832), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_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_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_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9834), 29, - aux_sym_preproc_elif_token1, + 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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6620), 31, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - anon_sym_final, - anon_sym_override, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - [33482] = 7, + sym_this, + [29362] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(9836), 1, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, anon_sym_LBRACK, - STATE(1842), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9838), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9840), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8228), 1, + sym_identifier, + ACTIONS(8675), 1, + anon_sym_COLON_COLON, + ACTIONS(10252), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(10254), 1, + anon_sym_AMP_AMP, + ACTIONS(10256), 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, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [33558] = 7, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(6574), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7993), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8823), 1, + sym__declarator, + STATE(11008), 1, + sym_ms_based_modifier, + ACTIONS(3268), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4261), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5450), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3266), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [29482] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1842), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9842), 27, - anon_sym_DOT_DOT_DOT, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(5665), 1, + sym_auto, + ACTIONS(5667), 1, + anon_sym_decltype, + ACTIONS(10005), 1, + anon_sym_LT, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4318), 1, + sym_template_argument_list, + STATE(4991), 1, + sym_decltype_auto, + ACTIONS(5659), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5643), 9, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9844), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_RPAREN, + 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_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(5636), 40, anon_sym_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___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [33634] = 7, + anon_sym_template, + anon_sym_operator, + [29566] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(9836), 1, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, anon_sym_LBRACK, - STATE(1842), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9846), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9848), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8228), 1, + sym_identifier, + ACTIONS(8675), 1, + anon_sym_COLON_COLON, + ACTIONS(10234), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(10236), 1, + anon_sym_AMP_AMP, + ACTIONS(10238), 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, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [33710] = 7, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(6574), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7993), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8523), 1, + sym__declarator, + STATE(10900), 1, + sym_ms_based_modifier, + ACTIONS(3268), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4202), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5316), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3266), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [29686] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(9836), 1, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, anon_sym_LBRACK, - STATE(1842), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9850), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8228), 1, + sym_identifier, + ACTIONS(8675), 1, + anon_sym_COLON_COLON, + ACTIONS(10234), 1, + anon_sym_STAR, + ACTIONS(10236), 1, 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, + ACTIONS(10238), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(6574), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7993), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8541), 1, + sym__declarator, + STATE(10900), 1, + sym_ms_based_modifier, + ACTIONS(3268), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5319), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6427), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3266), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [29806] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(7457), 28, + 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_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9852), 29, - aux_sym_preproc_elif_token1, + 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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(7459), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + 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, + [29876] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6991), 1, + anon_sym_decltype, + ACTIONS(10089), 1, + sym_auto, + STATE(4464), 1, + sym_decltype_auto, + ACTIONS(7223), 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___attribute, + anon_sym_const, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [33786] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1842), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9854), 27, + ACTIONS(7225), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - 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, - ACTIONS(9856), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_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_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [33862] = 7, + [29950] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1842), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9858), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9860), 29, - aux_sym_preproc_elif_token1, + ACTIONS(10258), 1, + anon_sym_delete, + ACTIONS(10260), 1, + anon_sym_new, + ACTIONS(9601), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9595), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9599), 24, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -461339,6 +479022,7 @@ 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_and_eq, anon_sym_or_eq, @@ -461350,33 +479034,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [33938] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1842), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9862), 27, + ACTIONS(9597), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -461393,58 +479060,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9864), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_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_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [34014] = 6, + [30026] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9939), 1, - anon_sym_template, - STATE(2010), 1, - sym_string_literal, - ACTIONS(9928), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(9926), 7, + STATE(4228), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10262), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7725), 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_GT2, anon_sym_LBRACK_COLON, - ACTIONS(9924), 46, + ACTIONS(7723), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -461453,10 +479094,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -461480,148 +479123,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_explicit, + anon_sym_template, anon_sym_operator, - [34088] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6949), 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___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6951), 47, - 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___extension__, - anon_sym___attribute__, - anon_sym_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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [34156] = 29, + [30098] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(9876), 1, + ACTIONS(8554), 1, + anon_sym_COLON_COLON, + ACTIONS(10264), 1, anon_sym_STAR, - ACTIONS(9878), 1, + ACTIONS(10266), 1, anon_sym_AMP_AMP, - ACTIONS(9880), 1, + ACTIONS(10268), 1, anon_sym_AMP, - ACTIONS(9882), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(6570), 1, + STATE(6574), 1, sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7870), 1, + STATE(7990), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8415), 1, + STATE(8785), 1, sym__declarator, - STATE(11345), 1, + STATE(10957), 1, sym_ms_based_modifier, - ACTIONS(2935), 2, + ACTIONS(3268), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5170), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6287), 2, + STATE(4208), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2933), 3, + STATE(5329), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3266), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -461633,7 +479204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -461647,72 +479218,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [34276] = 29, + [30218] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8554), 1, anon_sym_COLON_COLON, - ACTIONS(9912), 1, + ACTIONS(10264), 1, anon_sym_STAR, - ACTIONS(9914), 1, + ACTIONS(10266), 1, anon_sym_AMP_AMP, - ACTIONS(9916), 1, + ACTIONS(10268), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(6570), 1, + STATE(6574), 1, sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7878), 1, + STATE(7990), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8702), 1, + STATE(8804), 1, sym__declarator, - STATE(10776), 1, + STATE(10957), 1, sym_ms_based_modifier, - ACTIONS(2935), 2, + ACTIONS(3268), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4157), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5372), 2, + STATE(5337), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2933), 3, + STATE(6427), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3266), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -461724,7 +479295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -461738,20 +479309,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [34396] = 6, + [30338] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9941), 1, + ACTIONS(10276), 1, anon_sym_template, - STATE(2013), 1, + STATE(2111), 1, sym_string_literal, - ACTIONS(9928), 5, + ACTIONS(10274), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(9926), 7, + ACTIONS(10272), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -461759,7 +479330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(9924), 46, + ACTIONS(10270), 46, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -461806,72 +479377,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_explicit, anon_sym_operator, - [34470] = 29, + [30412] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(9882), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(9894), 1, + ACTIONS(10252), 1, anon_sym_STAR, - ACTIONS(9896), 1, + ACTIONS(10254), 1, anon_sym_AMP_AMP, - ACTIONS(9898), 1, + ACTIONS(10256), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(6570), 1, + STATE(6574), 1, sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7870), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8694), 1, + STATE(8808), 1, sym__declarator, - STATE(10563), 1, + STATE(11008), 1, sym_ms_based_modifier, - ACTIONS(2935), 2, + ACTIONS(3268), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5200), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6287), 2, + STATE(4212), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2933), 3, + STATE(5345), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3266), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -461883,7 +479454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -461897,72 +479468,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [34590] = 29, + [30532] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10280), 29, + 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_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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(10278), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + 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, + [30600] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(8360), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(9888), 1, + ACTIONS(10252), 1, anon_sym_STAR, - ACTIONS(9890), 1, + ACTIONS(10254), 1, anon_sym_AMP_AMP, - ACTIONS(9892), 1, + ACTIONS(10256), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(6570), 1, + STATE(6574), 1, sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7869), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8415), 1, + STATE(8816), 1, sym__declarator, - STATE(10719), 1, + STATE(11008), 1, sym_ms_based_modifier, - ACTIONS(2935), 2, + ACTIONS(3268), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5235), 2, + STATE(5350), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6287), 2, + STATE(6427), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2933), 3, + ACTIONS(3266), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -461974,8 +479610,591 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [30720] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4228), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10262), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7729), 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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7727), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [30792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6601), 29, + 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_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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6594), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + 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, + [30860] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(7293), 28, + 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_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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(7291), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + 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, + [30930] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4247), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10282), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7557), 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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7555), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [31002] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(7293), 28, + 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_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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(7291), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + 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, + [31072] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7293), 29, + 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_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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(7291), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + 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, + [31140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7106), 29, + 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_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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(7104), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + 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, + [31208] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4248), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10284), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7785), 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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7783), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [31280] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10286), 1, + anon_sym_template, + STATE(2116), 1, + sym_string_literal, + ACTIONS(10274), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10272), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(10270), 46, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -461988,72 +480207,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [34710] = 29, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_operator, + [31354] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7303), 29, + 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_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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(7301), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + 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, + [31422] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8554), 1, anon_sym_COLON_COLON, - ACTIONS(9912), 1, + ACTIONS(10178), 1, anon_sym_STAR, - ACTIONS(9914), 1, + ACTIONS(10180), 1, anon_sym_AMP_AMP, - ACTIONS(9916), 1, + ACTIONS(10182), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(6570), 1, + STATE(6574), 1, sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7878), 1, + STATE(7990), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8694), 1, + STATE(8523), 1, sym__declarator, - STATE(10776), 1, + STATE(11622), 1, sym_ms_based_modifier, - ACTIONS(2935), 2, + ACTIONS(3268), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5249), 2, + STATE(5384), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6287), 2, + STATE(6427), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2933), 3, + ACTIONS(3266), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -462065,7 +480362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -462079,72 +480376,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [34830] = 29, + [31542] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(9900), 1, + ACTIONS(10240), 1, anon_sym_STAR, - ACTIONS(9902), 1, + ACTIONS(10242), 1, anon_sym_AMP_AMP, - ACTIONS(9904), 1, + ACTIONS(10244), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(6570), 1, + STATE(6574), 1, sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7878), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8646), 1, + STATE(8826), 1, sym__declarator, - STATE(10656), 1, + STATE(10743), 1, sym_ms_based_modifier, - ACTIONS(2935), 2, + ACTIONS(3268), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5225), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6287), 2, + STATE(4255), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2933), 3, + STATE(5434), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3266), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -462156,7 +480453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -462170,85 +480467,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [34950] = 29, + [31662] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, + STATE(4228), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10262), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7677), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3049), 1, anon_sym_TILDE, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - ACTIONS(9906), 1, anon_sym_STAR, - ACTIONS(9908), 1, anon_sym_AMP_AMP, - ACTIONS(9910), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7675), 41, anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(6570), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8646), 1, - sym__declarator, - STATE(10827), 1, - sym_ms_based_modifier, - ACTIONS(2935), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5261), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6287), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2933), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -462261,150 +480528,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [35070] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6361), 1, - anon_sym___attribute__, - ACTIONS(6363), 1, - anon_sym___attribute, - ACTIONS(6365), 1, - anon_sym_LBRACK_LBRACK, - STATE(2281), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4499), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8512), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8514), 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [35148] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6361), 1, - anon_sym___attribute__, - ACTIONS(6363), 1, - anon_sym___attribute, - ACTIONS(6365), 1, - anon_sym_LBRACK_LBRACK, - STATE(2281), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4480), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8479), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8481), 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [35226] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [31734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9945), 29, + ACTIONS(3389), 29, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -462434,7 +480567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u8R_DQUOTE, anon_sym_CARET_CARET, anon_sym_LBRACK_COLON, - ACTIONS(9943), 31, + ACTIONS(3384), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -462466,46 +480599,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [35294] = 6, + [31802] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(9746), 1, + anon_sym_new, + ACTIONS(10288), 1, + anon_sym_delete, + ACTIONS(9601), 3, + anon_sym_TILDE, anon_sym_COLON_COLON, - ACTIONS(8526), 1, - anon_sym_LT, - STATE(4000), 1, - sym_template_argument_list, - ACTIONS(7031), 11, + anon_sym_LBRACK_COLON, + ACTIONS(9595), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9599), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + 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(5272), 46, + ACTIONS(9597), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_RBRACK_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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [31878] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4228), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10290), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7001), 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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6999), 41, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + 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_RBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -462519,25 +480731,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [35368] = 3, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [31950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6764), 29, + ACTIONS(10295), 29, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -462567,7 +480768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u8R_DQUOTE, anon_sym_CARET_CARET, anon_sym_LBRACK_COLON, - ACTIONS(6762), 31, + ACTIONS(10293), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -462599,92 +480800,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [35436] = 5, + [32018] = 9, ACTIONS(3), 1, sym_comment, - STATE(4165), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9947), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6629), 14, + ACTIONS(6563), 1, + anon_sym_requires, + ACTIONS(8336), 1, + anon_sym_DASH_GT, + STATE(3071), 1, + sym_trailing_return_type, + ACTIONS(6561), 2, + anon_sym_final, + anon_sym_override, + STATE(3433), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3628), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7791), 32, 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_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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6627), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [35508] = 7, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + [32098] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9462), 1, - anon_sym_new, - ACTIONS(9950), 1, - anon_sym_delete, - ACTIONS(9346), 3, - anon_sym_TILDE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9340), 6, + ACTIONS(6563), 1, + anon_sym_requires, + ACTIONS(8397), 1, + anon_sym_DASH_GT, + STATE(3029), 1, + sym_trailing_return_type, + ACTIONS(6561), 2, + anon_sym_final, + anon_sym_override, + STATE(3433), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3655), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9342), 24, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7966), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -462693,6 +480918,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___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -462704,14 +480932,38 @@ 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, + [32178] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6563), 1, + anon_sym_requires, + ACTIONS(8976), 1, anon_sym_DASH_GT, - ACTIONS(9344), 25, + STATE(2973), 1, + sym_trailing_return_type, + ACTIONS(6561), 2, + anon_sym_final, + anon_sym_override, + STATE(3433), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3675), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -462722,23 +480974,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_LBRACK, + anon_sym___attribute, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8422), 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___attribute__, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_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, - [35584] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [32258] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8382), 24, + ACTIONS(6563), 1, + anon_sym_requires, + ACTIONS(10297), 1, + anon_sym_DASH_GT, + STATE(2977), 1, + sym_trailing_return_type, + ACTIONS(6561), 2, + anon_sym_final, + anon_sym_override, + STATE(3433), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3687), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462752,27 +481045,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(8384), 36, + ACTIONS(8907), 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___attribute__, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -462785,104 +481074,106 @@ 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_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_DASH_GT_STAR, - [35652] = 3, + [32338] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6846), 15, + ACTIONS(7873), 1, + anon_sym_requires, + ACTIONS(8336), 1, + anon_sym_DASH_GT, + STATE(3075), 1, + sym_trailing_return_type, + ACTIONS(7870), 2, + anon_sym_final, + anon_sym_override, + STATE(3433), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3628), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7791), 32, 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_LT, + 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6844), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [35719] = 9, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + [32418] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6307), 1, + ACTIONS(7976), 1, anon_sym_requires, - ACTIONS(9952), 1, + ACTIONS(8397), 1, anon_sym_DASH_GT, - STATE(4264), 1, + STATE(3076), 1, sym_trailing_return_type, - ACTIONS(6305), 2, + ACTIONS(7973), 2, anon_sym_final, anon_sym_override, - STATE(4455), 2, + STATE(3433), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(4702), 2, + STATE(3655), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8541), 18, + ACTIONS(7968), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462896,21 +481187,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8543), 32, + ACTIONS(7966), 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___attribute__, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -462933,76 +481226,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [35798] = 4, + [32498] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(7185), 14, + ACTIONS(8461), 1, + anon_sym_requires, + ACTIONS(8976), 1, + anon_sym_DASH_GT, + STATE(3077), 1, + sym_trailing_return_type, + ACTIONS(8458), 2, + anon_sym_final, + anon_sym_override, + STATE(3433), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3675), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7183), 44, + ACTIONS(8422), 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___extension__, + anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_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, + [32578] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9844), 1, + anon_sym_requires, + ACTIONS(10297), 1, anon_sym_DASH_GT, + STATE(3078), 1, + sym_trailing_return_type, + ACTIONS(9841), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [35867] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8551), 21, + STATE(3433), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3687), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463017,14 +481330,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym___asm, anon_sym_DOT, - ACTIONS(8553), 38, + ACTIONS(8907), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -463033,9 +481344,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___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -463056,87 +481367,324 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, + anon_sym_DOT_STAR, + [32658] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1947), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10184), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_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_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + ACTIONS(10186), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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_identifier, anon_sym_final, anon_sym_override, anon_sym_requires, - [35934] = 9, + [32734] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 1, - anon_sym_LBRACE, - ACTIONS(7399), 1, + ACTIONS(9304), 1, anon_sym_LPAREN2, - STATE(3483), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3783), 1, - sym_argument_list, - STATE(5860), 1, - sym_initializer_list, - ACTIONS(8827), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6798), 10, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1947), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10188), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10190), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [32810] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1947), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10192), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10194), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [32886] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1947), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10172), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10174), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + 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(6800), 40, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [32962] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1947), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10196), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___extension__, - anon_sym_RBRACK_RBRACK, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_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, - [36013] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8555), 21, + ACTIONS(10198), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463150,26 +481698,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym___asm, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(8557), 38, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [33038] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1947), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10200), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -463181,26 +481747,13 @@ 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_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [36080] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8579), 21, + ACTIONS(10202), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463214,26 +481767,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym___asm, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(8581), 38, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [33114] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1947), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10204), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -463245,26 +481816,13 @@ 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_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [36147] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8382), 23, + ACTIONS(10206), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463279,6 +481837,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, @@ -463286,19 +481847,33 @@ 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(8384), 36, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [33190] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1947), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10208), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -463314,42 +481889,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10210), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [33266] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10300), 1, + anon_sym_template, + STATE(2123), 1, + sym_string_literal, + ACTIONS(10274), 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_DASH_GT_STAR, - [36214] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4096), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9785), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6800), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10272), 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, - anon_sym_EQ, - anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(6798), 41, + ACTIONS(10270), 46, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -463358,12 +481950,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -463387,45 +481977,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, sym_identifier, + sym_auto, anon_sym_decltype, - anon_sym_template, + anon_sym_explicit, anon_sym_operator, - [36285] = 3, + [33340] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6844), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - 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___attribute, - anon_sym_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6846), 45, + STATE(4228), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10262), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7695), 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_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_SEMI, anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7693), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -463439,90 +482051,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [36352] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8416), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym___asm, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8418), 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___attribute__, - 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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [36419] = 3, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [33412] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6718), 14, + STATE(4228), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10262), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7699), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -463537,14 +482080,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(6716), 45, + ACTIONS(7697), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -463578,51 +482120,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_explicit, anon_sym_template, anon_sym_operator, - [36486] = 8, + [33484] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(9592), 1, - anon_sym___attribute__, - ACTIONS(9594), 1, - anon_sym___attribute, - ACTIONS(9806), 1, - anon_sym_LBRACE, - STATE(4261), 1, - sym_enumerator_list, - STATE(4428), 1, - sym_attribute_specifier, - ACTIONS(7011), 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(7013), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10216), 1, + sym_identifier, + ACTIONS(10218), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(10220), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + ACTIONS(10222), 1, + anon_sym_AMP, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(6574), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7986), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8523), 1, + sym__declarator, + STATE(11612), 1, + sym_ms_based_modifier, + ACTIONS(3268), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5295), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6427), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3266), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, anon_sym___extension__, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -463634,59 +482213,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [36563] = 3, + [33604] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(6806), 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, - sym_ms_restrict_modifier, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6808), 46, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8554), 1, + anon_sym_COLON_COLON, + ACTIONS(10264), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(10266), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, + ACTIONS(10268), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(6574), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7990), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8826), 1, + sym__declarator, + STATE(10957), 1, + sym_ms_based_modifier, + ACTIONS(3268), 2, anon_sym__unaligned, anon_sym___unaligned, - anon_sym_LBRACK, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4258), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5439), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3266), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -463698,28 +482304,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [36630] = 3, + [33724] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8400), 23, + ACTIONS(6681), 1, + anon_sym___attribute__, + ACTIONS(6683), 1, + anon_sym___attribute, + ACTIONS(6685), 1, + anon_sym_LBRACK_LBRACK, + STATE(2375), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4566), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8833), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463729,31 +482329,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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(8402), 36, + ACTIONS(8835), 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, @@ -463761,70 +482356,68 @@ 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [33802] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10302), 1, + anon_sym_template, + STATE(2109), 1, + sym_string_literal, + ACTIONS(10274), 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_DASH_GT_STAR, - [36697] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(8219), 1, + ACTIONS(10272), 7, anon_sym_LPAREN2, - STATE(3287), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5801), 1, - sym_argument_list, - STATE(7210), 1, - sym_initializer_list, - ACTIONS(9955), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(10270), 46, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6798), 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(6800), 40, - 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___extension__, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -463838,54 +482431,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [36776] = 3, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_operator, + [33876] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6844), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6846), 47, + STATE(4206), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10304), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7703), 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___extension__, - anon_sym___attribute__, + anon_sym_SEMI, anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7701), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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_RBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -463899,97 +482505,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [36843] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7994), 1, - anon_sym_DASH_GT, - ACTIONS(8000), 1, - anon_sym_requires, - STATE(4230), 1, - sym_trailing_return_type, - ACTIONS(7997), 2, - anon_sym_final, - anon_sym_override, - STATE(4455), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4846), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 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(7627), 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, - [36922] = 4, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [33948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9957), 1, - anon_sym_LPAREN2, - ACTIONS(8583), 23, + ACTIONS(8889), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463999,7 +482522,6 @@ 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, @@ -464007,19 +482529,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym___asm, anon_sym_DOT, - ACTIONS(8585), 35, + anon_sym_DASH_GT, + ACTIONS(8891), 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___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_QMARK, @@ -464029,6 +482554,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, @@ -464044,85 +482570,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [36991] = 9, + anon_sym_DASH_GT_STAR, + [34016] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(6307), 1, - anon_sym_requires, - ACTIONS(7841), 1, - anon_sym_DASH_GT, - STATE(4241), 1, - sym_trailing_return_type, - ACTIONS(6305), 2, - anon_sym_final, - anon_sym_override, - STATE(4455), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4844), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10216), 1, + sym_identifier, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + ACTIONS(10240), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(10242), 1, + anon_sym_AMP_AMP, + ACTIONS(10244), 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(7544), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(6574), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7986), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8785), 1, + sym__declarator, + STATE(10743), 1, + sym_ms_based_modifier, + ACTIONS(3268), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5269), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6427), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3266), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [34136] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - [37070] = 3, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8228), 1, + sym_identifier, + ACTIONS(8675), 1, + anon_sym_COLON_COLON, + ACTIONS(10234), 1, + anon_sym_STAR, + ACTIONS(10236), 1, + anon_sym_AMP_AMP, + ACTIONS(10238), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(6574), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7993), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8523), 1, + sym__declarator, + STATE(10900), 1, + sym_ms_based_modifier, + ACTIONS(3268), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5316), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6427), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3266), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [34256] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8446), 23, + ACTIONS(10306), 1, + anon_sym_LPAREN2, + ACTIONS(9027), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464136,27 +482775,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___asm, anon_sym_DOT, anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(8448), 36, + ACTIONS(9029), 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_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -464168,56 +482806,102 @@ 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_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - 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_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [37137] = 3, + [34326] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(6746), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - 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___attribute, - anon_sym_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6751), 45, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8554), 1, + anon_sym_COLON_COLON, + ACTIONS(10264), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(10266), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + ACTIONS(10268), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(6574), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7990), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8785), 1, + sym__declarator, + STATE(10957), 1, + sym_ms_based_modifier, + ACTIONS(3268), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5329), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6427), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3266), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -464229,43 +482913,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [34446] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8554), 1, + anon_sym_COLON_COLON, + ACTIONS(10246), 1, + anon_sym_STAR, + ACTIONS(10248), 1, + anon_sym_AMP_AMP, + ACTIONS(10250), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(6574), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7990), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8808), 1, + sym__declarator, + STATE(10837), 1, + sym_ms_based_modifier, + ACTIONS(3268), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [37204] = 9, + STATE(5292), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6427), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3266), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [34566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8470), 1, - anon_sym_DASH_GT, - ACTIONS(8476), 1, - anon_sym_requires, - STATE(4232), 1, - sym_trailing_return_type, - ACTIONS(8473), 2, - anon_sym_final, - anon_sym_override, - STATE(4455), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4685), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 18, + ACTIONS(8897), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464279,12 +483021,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - ACTIONS(8089), 32, + anon_sym_DASH_GT, + ACTIONS(8899), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -464294,7 +483040,8 @@ 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___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -464315,24 +483062,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [37283] = 3, + [34634] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8228), 1, + sym_identifier, + ACTIONS(8675), 1, + anon_sym_COLON_COLON, + ACTIONS(10252), 1, + anon_sym_STAR, + ACTIONS(10254), 1, + anon_sym_AMP_AMP, + ACTIONS(10256), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(6574), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7993), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8808), 1, + sym__declarator, + STATE(11008), 1, + sym_ms_based_modifier, + ACTIONS(3268), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5345), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6427), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3266), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [34754] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 11, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(9552), 1, + anon_sym_LT, + STATE(4054), 1, + sym_template_argument_list, + ACTIONS(7371), 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, - sym_ms_restrict_modifier, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(6902), 48, + ACTIONS(5657), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -464343,16 +483194,11 @@ 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___extension__, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -464380,25 +483226,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [37350] = 3, + [34828] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 13, + ACTIONS(7087), 1, + anon_sym_COLON_COLON, + ACTIONS(8883), 1, + anon_sym_LT, + STATE(3733), 1, + sym_template_argument_list, + ACTIONS(7085), 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, - sym_ms_restrict_modifier, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(6902), 46, + ACTIONS(7090), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -464409,13 +483260,14 @@ 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___extension__, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -464443,60 +483295,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [37417] = 11, + [34902] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(10308), 1, + anon_sym_delete, + ACTIONS(10310), 1, + anon_sym_new, + ACTIONS(9601), 3, + anon_sym_TILDE, anon_sym_COLON_COLON, - ACTIONS(9959), 1, - anon_sym_LT, - ACTIONS(9963), 1, - sym_auto, - ACTIONS(9965), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9595), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, anon_sym_decltype, - STATE(3601), 1, - sym_template_argument_list, - STATE(5101), 1, + anon_sym_template, + anon_sym_operator, + ACTIONS(9597), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(9599), 26, + 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_LBRACK, + 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, + [34978] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4213), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5980), 1, - sym_decltype_auto, - ACTIONS(9961), 4, + ACTIONS(10312), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5251), 7, + ACTIONS(7709), 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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7707), 41, anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, - anon_sym___asm, - ACTIONS(5258), 41, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [35050] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4228), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10262), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7715), 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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7713), 41, + anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute, anon_sym___declspec, - anon_sym_LBRACE, + 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_EQ, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -464510,109 +483495,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [37500] = 9, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [35122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9952), 1, - anon_sym_DASH_GT, - ACTIONS(9970), 1, - anon_sym_requires, - STATE(4237), 1, - sym_trailing_return_type, - ACTIONS(9967), 2, - anon_sym_final, - anon_sym_override, - STATE(4455), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4702), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 18, + ACTIONS(7291), 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, + anon_sym___attribute, + anon_sym_const, anon_sym_DOT, - ACTIONS(8543), 32, + ACTIONS(7293), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, - [37579] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [35190] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(8637), 21, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8554), 1, + anon_sym_COLON_COLON, + ACTIONS(10178), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(10180), 1, + anon_sym_AMP_AMP, + ACTIONS(10182), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(8639), 38, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(6574), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7990), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8528), 1, + sym__declarator, + STATE(11622), 1, + sym_ms_based_modifier, + ACTIONS(3268), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4223), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5377), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3266), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [35310] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9746), 1, + anon_sym_new, + ACTIONS(10314), 1, + anon_sym_delete, + ACTIONS(9601), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9595), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9597), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -464621,9 +483682,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -464635,29 +483693,14 @@ 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_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [37646] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8641), 21, + ACTIONS(9599), 25, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -464668,72 +483711,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(8643), 38, - anon_sym_DOT_DOT_DOT, - 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___attribute__, - anon_sym_LBRACK_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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [37713] = 9, + anon_sym_DOT, + [35386] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 1, - anon_sym_LBRACE, - ACTIONS(8274), 1, - anon_sym_LPAREN2, - STATE(3913), 1, + STATE(4228), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5660), 1, - sym_argument_list, - STATE(7265), 1, - sym_initializer_list, - ACTIONS(9674), 4, + ACTIONS(10262), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6798), 12, + ACTIONS(7683), 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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7681), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [35458] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8554), 1, + anon_sym_COLON_COLON, + ACTIONS(10178), 1, + anon_sym_STAR, + ACTIONS(10180), 1, + anon_sym_AMP_AMP, + ACTIONS(10182), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(6574), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7990), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8523), 1, + sym__declarator, + STATE(11622), 1, + sym_ms_based_modifier, + ACTIONS(3268), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4151), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5384), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3266), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [35578] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7087), 1, + anon_sym_COLON_COLON, + ACTIONS(9552), 1, + anon_sym_LT, + STATE(4313), 1, + sym_template_argument_list, + ACTIONS(7085), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -464742,13 +483900,15 @@ 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___attribute, + anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(6800), 38, + ACTIONS(7090), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -464758,6 +483918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_LT, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, @@ -464784,26 +483946,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [37792] = 9, + anon_sym_requires, + [35652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6307), 1, - anon_sym_requires, - ACTIONS(7994), 1, - anon_sym_DASH_GT, - STATE(4274), 1, - sym_trailing_return_type, - ACTIONS(6305), 2, + ACTIONS(7233), 15, + 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_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7231), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4455), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4846), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 18, + anon_sym_template, + anon_sym_operator, + [35719] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8750), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464820,9 +484034,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(7627), 32, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(8752), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -464844,55 +484063,69 @@ 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_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_DASH_GT_STAR, - [37871] = 4, + [35786] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9973), 1, + ACTIONS(7305), 1, anon_sym_LPAREN2, - ACTIONS(8583), 21, + ACTIONS(7307), 1, + anon_sym_STAR, + ACTIONS(7309), 1, + anon_sym_AMP_AMP, + ACTIONS(7311), 1, + anon_sym_AMP, + ACTIONS(7321), 1, + anon_sym_LBRACK, + STATE(1991), 1, + sym_parameter_list, + STATE(5254), 1, + sym__abstract_declarator, + STATE(5694), 1, + sym__function_declarator_seq, + STATE(5693), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9429), 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___attribute, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym___asm, anon_sym_DOT, - ACTIONS(8585), 37, + anon_sym_DASH_GT, + ACTIONS(9427), 32, 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___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -464904,154 +484137,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_asm, - anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - [37940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6792), 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_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6790), 45, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [38007] = 3, + anon_sym_DASH_GT_STAR, + [35871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9977), 14, + ACTIONS(8889), 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_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8891), 36, 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, - anon_sym_LBRACK_COLON, - ACTIONS(9975), 45, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, + 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [38074] = 3, + anon_sym_GT2, + anon_sym_requires, + [35938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8454), 23, + ACTIONS(8657), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465075,7 +484242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_literal_suffix, - ACTIONS(8456), 36, + ACTIONS(8659), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -465112,10 +484279,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, anon_sym_DASH_GT_STAR, - [38141] = 3, + [36005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6233), 14, + ACTIONS(10318), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -465130,7 +484297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(6226), 45, + ACTIONS(10316), 45, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -465170,41 +484337,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - [38208] = 8, + [36072] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9592), 1, - anon_sym___attribute__, - ACTIONS(9594), 1, - anon_sym___attribute, - ACTIONS(9806), 1, + ACTIONS(7090), 1, anon_sym_LBRACE, - STATE(4255), 1, - sym_enumerator_list, - STATE(4334), 1, - sym_attribute_specifier, - ACTIONS(6985), 12, + ACTIONS(8883), 1, + anon_sym_LT, + STATE(3733), 1, + sym_template_argument_list, + ACTIONS(7085), 15, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7094), 16, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6987), 42, + sym_identifier, + ACTIONS(7087), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -465213,64 +484400,43 @@ 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___extension__, + anon_sym_GT_GT, + anon_sym_COLON_COLON, 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [38285] = 12, + [36147] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6927), 1, + ACTIONS(7006), 1, anon_sym_LPAREN2, - ACTIONS(6929), 1, + ACTIONS(7022), 1, + anon_sym_LBRACK, + ACTIONS(7295), 1, anon_sym_STAR, - ACTIONS(6931), 1, + ACTIONS(7297), 1, anon_sym_AMP_AMP, - ACTIONS(6933), 1, + ACTIONS(7299), 1, anon_sym_AMP, - ACTIONS(6943), 1, - anon_sym_LBRACK, - STATE(1885), 1, + STATE(1974), 1, sym_parameter_list, - STATE(4987), 1, - sym__abstract_declarator, - STATE(5582), 1, + STATE(4934), 1, sym__function_declarator_seq, - STATE(5581), 5, + STATE(5051), 1, + sym__abstract_declarator, + STATE(4825), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(9074), 14, + ACTIONS(9429), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -465283,9 +484449,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(9072), 32, + ACTIONS(9427), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -465304,107 +484473,149 @@ 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, + [36232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8889), 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_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8891), 38, + anon_sym_DOT_DOT_DOT, + 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___attribute__, + anon_sym_LBRACK_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_asm, + anon_sym___asm__, anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [38370] = 7, + [36299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6751), 1, - anon_sym_LBRACE, - ACTIONS(8526), 1, - anon_sym_LT, - STATE(3619), 1, - sym_template_argument_list, - ACTIONS(6746), 15, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6755), 16, - aux_sym_preproc_elif_token1, + ACTIONS(8897), 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_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + 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___asm, anon_sym_DOT, - sym_identifier, - ACTIONS(6748), 25, + ACTIONS(8899), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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_COLON, - anon_sym_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACK_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_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [38445] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6307), 1, - anon_sym_requires, - ACTIONS(8470), 1, - anon_sym_DASH_GT, - STATE(4259), 1, - sym_trailing_return_type, - ACTIONS(6305), 2, anon_sym_final, anon_sym_override, - STATE(4455), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4685), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 18, + anon_sym_requires, + [36366] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8938), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465414,26 +484625,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___attribute, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - ACTIONS(8089), 32, + ACTIONS(8940), 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___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -465441,7 +484656,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, @@ -465454,12 +484668,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [38524] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [36433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8637), 23, + ACTIONS(8979), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465483,7 +484703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym___asm, anon_sym_DOT, - ACTIONS(8639), 36, + ACTIONS(8981), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -465520,10 +484740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [38591] = 3, + [36500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8641), 23, + ACTIONS(8897), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465547,7 +484767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym___asm, anon_sym_DOT, - ACTIONS(8643), 36, + ACTIONS(8899), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -465584,57 +484804,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [38658] = 12, + [36567] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6648), 1, - anon_sym_LPAREN2, - ACTIONS(6664), 1, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10320), 1, + anon_sym_LT, + ACTIONS(10324), 1, + sym_auto, + ACTIONS(10326), 1, + anon_sym_decltype, + STATE(3735), 1, + sym_template_argument_list, + STATE(5103), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6073), 1, + sym_decltype_auto, + ACTIONS(10322), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5636), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(6971), 1, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5643), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6973), 1, anon_sym_AMP_AMP, - ACTIONS(6975), 1, - anon_sym_AMP, - STATE(1869), 1, - sym_parameter_list, - STATE(4681), 1, - sym__function_declarator_seq, - STATE(4963), 1, - sym__abstract_declarator, - STATE(4672), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9074), 17, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [36650] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10328), 1, + anon_sym_LPAREN2, + ACTIONS(9027), 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_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9072), 29, + ACTIONS(9029), 37, 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___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -465655,12 +484934,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [38743] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [36719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6762), 14, + ACTIONS(7231), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -465675,7 +484959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(6764), 45, + ACTIONS(7233), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -465721,25 +485005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [38810] = 9, + [36786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7841), 1, - anon_sym_DASH_GT, - ACTIONS(7851), 1, - anon_sym_requires, - STATE(4273), 1, - sym_trailing_return_type, - ACTIONS(7848), 2, - anon_sym_final, - anon_sym_override, - STATE(4455), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4844), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 18, + ACTIONS(8704), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465753,12 +485022,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - ACTIONS(7544), 32, + anon_sym_DASH_GT, + ACTIONS(8706), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -465768,7 +485038,8 @@ 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___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -465780,21 +485051,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_asm, + anon_sym___asm__, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [38889] = 3, + [36853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8551), 23, + ACTIONS(9007), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465818,7 +485096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym___asm, anon_sym_DOT, - ACTIONS(8553), 36, + ACTIONS(9009), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -465855,10 +485133,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [38956] = 3, + [36920] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9961), 1, + anon_sym___attribute__, + ACTIONS(9963), 1, + anon_sym___attribute, + ACTIONS(10114), 1, + anon_sym_LBRACE, + STATE(4340), 1, + sym_enumerator_list, + STATE(4405), 1, + sym_attribute_specifier, + ACTIONS(7381), 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(7383), 42, + 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___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [36997] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8555), 23, + ACTIONS(6671), 1, + anon_sym_requires, + ACTIONS(8271), 1, + anon_sym_DASH_GT, + STATE(4347), 1, + sym_trailing_return_type, + ACTIONS(6669), 2, + anon_sym_final, + anon_sym_override, + STATE(4610), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4890), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465868,30 +485230,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___attribute, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym___asm, anon_sym_DOT, - ACTIONS(8557), 36, + ACTIONS(7966), 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___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -465899,6 +485257,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, @@ -465911,18 +485270,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [39023] = 3, + anon_sym_DASH_GT_STAR, + [37076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8579), 23, + ACTIONS(8697), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465932,30 +485285,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___attribute, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym___asm, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(8581), 36, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(8699), 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___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -465963,40 +485317,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [39090] = 8, + 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_DASH_GT_STAR, + [37143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9021), 1, - anon_sym_LBRACE, - ACTIONS(9586), 1, - anon_sym___attribute__, - ACTIONS(9588), 1, - anon_sym___attribute, - STATE(4030), 1, - sym_attribute_specifier, - STATE(4286), 1, - sym_enumerator_list, - ACTIONS(6985), 10, + ACTIONS(7231), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -466005,9 +485348,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(6987), 44, + ACTIONS(7233), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -466022,6 +485367,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_constexpr, @@ -466052,31 +485400,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [39167] = 8, + [37210] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9021), 1, - anon_sym_LBRACE, - ACTIONS(9586), 1, - anon_sym___attribute__, - ACTIONS(9588), 1, - anon_sym___attribute, - STATE(3949), 1, - sym_attribute_specifier, - STATE(4289), 1, - sym_enumerator_list, - ACTIONS(7011), 10, + ACTIONS(8168), 1, + anon_sym_DASH_GT, + ACTIONS(8177), 1, + anon_sym_requires, + STATE(4339), 1, + sym_trailing_return_type, + ACTIONS(8174), 2, + anon_sym_final, + anon_sym_override, + STATE(4610), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4840), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 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(7791), 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, + [37289] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(7459), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, 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___attribute, + anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(7013), 44, + ACTIONS(7457), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -466087,12 +485501,11 @@ 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___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -466120,11 +485533,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [39244] = 3, + [37358] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6806), 11, + ACTIONS(4922), 1, + anon_sym_LBRACE, + ACTIONS(7687), 1, + anon_sym_LPAREN2, + STATE(3537), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3894), 1, + sym_argument_list, + STATE(5969), 1, + sym_initializer_list, + ACTIONS(9214), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7223), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -466133,13 +485562,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - sym_ms_restrict_modifier, anon_sym_const, anon_sym_DOT, - ACTIONS(6808), 48, + ACTIONS(7225), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -466151,12 +485578,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___extension__, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -466182,97 +485605,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [39311] = 13, + [37437] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(5280), 1, - sym_auto, - ACTIONS(5282), 1, - anon_sym_decltype, - ACTIONS(9672), 1, + ACTIONS(8271), 1, + anon_sym_DASH_GT, + ACTIONS(8304), 1, + anon_sym_requires, + STATE(4345), 1, + sym_trailing_return_type, + ACTIONS(8301), 2, + anon_sym_final, + anon_sym_override, + STATE(4610), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4890), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 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, - ACTIONS(9979), 1, - anon_sym_LBRACK, - STATE(4121), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4767), 1, - sym_decltype_auto, - STATE(5816), 1, - sym_template_argument_list, - ACTIONS(5290), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7966), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(5274), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5258), 5, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_COLON, - ACTIONS(5251), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [39397] = 7, + 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, + [37516] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6307), 1, + ACTIONS(8845), 1, + anon_sym_DASH_GT, + ACTIONS(8854), 1, anon_sym_requires, - ACTIONS(6305), 2, + STATE(4349), 1, + sym_trailing_return_type, + ACTIONS(8851), 2, anon_sym_final, anon_sym_override, - STATE(4455), 2, + STATE(4610), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(4844), 2, + STATE(4813), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7546), 19, + ACTIONS(8424), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -466291,8 +485712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7544), 32, + ACTIONS(8422), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -466325,92 +485745,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [39471] = 11, + [37595] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9982), 1, - sym_identifier, - ACTIONS(9992), 1, - sym_primitive_type, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(5120), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9989), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3954), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(9987), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6884), 11, + ACTIONS(6671), 1, + anon_sym_requires, + ACTIONS(8845), 1, + anon_sym_DASH_GT, + STATE(4365), 1, + sym_trailing_return_type, + ACTIONS(6669), 2, + anon_sym_final, + anon_sym_override, + STATE(4610), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4813), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 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(8422), 32, + 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_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(9984), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6886), 22, - anon_sym_AMP, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, + 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [39553] = 7, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + [37674] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7851), 1, + ACTIONS(10330), 1, + anon_sym_DASH_GT, + ACTIONS(10336), 1, anon_sym_requires, - ACTIONS(7848), 2, + STATE(4352), 1, + sym_trailing_return_type, + ACTIONS(10333), 2, anon_sym_final, anon_sym_override, - STATE(4455), 2, + STATE(4610), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(4844), 2, + STATE(4775), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7546), 19, + ACTIONS(8905), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -466429,8 +485852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7544), 32, + ACTIONS(8907), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -466463,20 +485885,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [39627] = 3, + [37753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8382), 19, - aux_sym_preproc_elif_token1, + ACTIONS(8665), 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_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -466484,17 +485910,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, + anon_sym_DASH_GT, sym_literal_suffix, - ACTIONS(8384), 39, + ACTIONS(8667), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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_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_DASH_GT_STAR, + [37820] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(8626), 1, + anon_sym_LPAREN2, + STATE(3284), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5772), 1, + sym_argument_list, + STATE(7298), 1, + sym_initializer_list, + ACTIONS(10339), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7223), 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(7225), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -466505,46 +485991,38 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___extension__, 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, - 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_COLON_RBRACK, - [39693] = 9, + [37899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6386), 1, - anon_sym_requires, - ACTIONS(7951), 1, - anon_sym_DASH_GT, - STATE(4424), 1, - sym_trailing_return_type, - ACTIONS(6384), 2, - anon_sym_final, - anon_sym_override, - STATE(4532), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4984), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 20, + ACTIONS(8938), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -466554,18 +486032,19 @@ 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___attribute, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - ACTIONS(7544), 29, + ACTIONS(8940), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -466573,7 +486052,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___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -466581,6 +486063,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, @@ -466593,165 +486076,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_GT2, - [39771] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6351), 1, - anon_sym_requires, - ACTIONS(7966), 1, anon_sym_DASH_GT, - STATE(4310), 1, - sym_trailing_return_type, - ACTIONS(6349), 2, anon_sym_final, anon_sym_override, - STATE(4611), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4983), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 18, + anon_sym_requires, + [37966] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7085), 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_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, anon_sym_DOT, - ACTIONS(7544), 31, + ACTIONS(7090), 45, 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___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, - [39849] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7966), 1, anon_sym_DASH_GT, - ACTIONS(7972), 1, - anon_sym_requires, - STATE(4305), 1, - sym_trailing_return_type, - ACTIONS(7969), 2, anon_sym_final, anon_sym_override, - STATE(4611), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4983), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 18, + anon_sym_GT2, + anon_sym_requires, + [38033] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4910), 1, + anon_sym_LBRACE, + ACTIONS(8592), 1, + anon_sym_LPAREN2, + STATE(4010), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5862), 1, + sym_argument_list, + STATE(7380), 1, + sym_initializer_list, + ACTIONS(10032), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7223), 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, - ACTIONS(7544), 31, + ACTIONS(7225), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, - [39927] = 9, + anon_sym_DASH_GT, + anon_sym_GT2, + [38112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8061), 1, - anon_sym_DASH_GT, - ACTIONS(8067), 1, - anon_sym_requires, - STATE(4308), 1, - sym_trailing_return_type, - ACTIONS(8064), 2, - anon_sym_final, - anon_sym_override, - STATE(4611), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4995), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 18, + ACTIONS(8979), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -466765,12 +486234,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - ACTIONS(7627), 31, + ACTIONS(8981), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -466779,7 +486251,8 @@ 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___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -466801,11 +486274,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - [40005] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [38179] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6792), 11, + STATE(4225), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10107), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7225), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -466815,9 +486302,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(6790), 47, + ACTIONS(7223), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -466826,10 +486314,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -466853,193 +486343,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_explicit, anon_sym_template, anon_sym_operator, - [40071] = 9, + [38250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6386), 1, - anon_sym_requires, - ACTIONS(9994), 1, - anon_sym_DASH_GT, - STATE(4377), 1, - sym_trailing_return_type, - ACTIONS(6384), 2, - anon_sym_final, - anon_sym_override, - STATE(4532), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5014), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 20, + ACTIONS(7287), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + sym_ms_restrict_modifier, + anon_sym_const, anon_sym_DOT, - ACTIONS(8543), 29, + ACTIONS(7289), 48, 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___extension__, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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_GT2, - [40149] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8476), 1, - anon_sym_requires, - ACTIONS(8473), 2, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - STATE(4455), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4685), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 19, + anon_sym_requires, + [38317] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7199), 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, + sym_ms_restrict_modifier, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8089), 32, + ACTIONS(7201), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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, - [40223] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6718), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(6716), 45, - anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -467053,32 +486460,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - 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_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [40289] = 7, + [38384] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9970), 1, + ACTIONS(6671), 1, anon_sym_requires, - ACTIONS(9967), 2, + ACTIONS(8168), 1, + anon_sym_DASH_GT, + STATE(4383), 1, + sym_trailing_return_type, + ACTIONS(6669), 2, anon_sym_final, anon_sym_override, - STATE(4455), 2, + STATE(4610), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(4702), 2, + STATE(4840), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8541), 19, + ACTIONS(7789), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -467097,8 +486512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8543), 32, + ACTIONS(7791), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -467131,25 +486545,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [40363] = 9, + [38463] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8576), 1, - anon_sym_DASH_GT, - ACTIONS(8662), 1, + ACTIONS(6671), 1, anon_sym_requires, - STATE(4309), 1, + ACTIONS(10330), 1, + anon_sym_DASH_GT, + STATE(4372), 1, sym_trailing_return_type, - ACTIONS(8659), 2, + ACTIONS(6669), 2, anon_sym_final, anon_sym_override, - STATE(4611), 2, + STATE(4610), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5002), 2, + STATE(4775), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8087), 18, + ACTIONS(8905), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -467168,9 +486582,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8089), 31, + ACTIONS(8907), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -467178,7 +486593,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -467200,106 +486614,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [40441] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6111), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10003), 1, - anon_sym___attribute__, - ACTIONS(10006), 1, - anon_sym___attribute, - ACTIONS(10009), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10016), 1, - anon_sym_DASH_GT, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10022), 1, - anon_sym_requires, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(6569), 1, - sym__function_attributes_start, - STATE(7100), 1, - sym_ref_qualifier, - STATE(7934), 1, - sym_trailing_return_type, - STATE(7956), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7821), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6036), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6264), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8160), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7550), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6113), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [40561] = 6, + anon_sym_DASH_GT_STAR, + [38542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9592), 1, - anon_sym___attribute__, - ACTIONS(9594), 1, - anon_sym___attribute, - STATE(4345), 1, - sym_attribute_specifier, - ACTIONS(7061), 12, + ACTIONS(7104), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -467310,9 +486629,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(7063), 43, + ACTIONS(7106), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -467325,6 +486646,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_LT, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, @@ -467356,25 +486679,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [40633] = 9, + [38609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10024), 1, - anon_sym_DASH_GT, - ACTIONS(10030), 1, - anon_sym_requires, - STATE(4311), 1, - sym_trailing_return_type, - ACTIONS(10027), 2, - anon_sym_final, - anon_sym_override, - STATE(4611), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5005), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 18, + ACTIONS(10341), 1, + anon_sym_LPAREN2, + ACTIONS(9027), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -467384,26 +486694,29 @@ 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___attribute, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - ACTIONS(8543), 31, + ACTIONS(9029), 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_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -467411,7 +486724,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, @@ -467424,22 +486736,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - [40711] = 7, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [38678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10036), 1, - anon_sym_requires, - ACTIONS(10033), 2, + ACTIONS(7079), 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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7077), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4455), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4721), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8559), 19, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [38745] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9961), 1, + anon_sym___attribute__, + ACTIONS(9963), 1, + anon_sym___attribute, + ACTIONS(10114), 1, + anon_sym_LBRACE, + STATE(4335), 1, + sym_enumerator_list, + STATE(4455), 1, + sym_attribute_specifier, + ACTIONS(7387), 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(7389), 42, + 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___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [38822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9007), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -467453,23 +486894,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8561), 32, + ACTIONS(9009), 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_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -467490,37 +486934,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [40785] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [38889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2758), 13, + ACTIONS(6601), 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, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(2768), 45, + anon_sym_LBRACK_COLON, + ACTIONS(6594), 45, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -467544,22 +486998,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, sym_identifier, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [40851] = 3, + anon_sym_template, + anon_sym_operator, + [38956] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8446), 19, - aux_sym_preproc_elif_token1, + ACTIONS(9413), 1, + anon_sym_LBRACE, + ACTIONS(10075), 1, + anon_sym___attribute__, + ACTIONS(10077), 1, + anon_sym___attribute, + STATE(4077), 1, + sym_attribute_specifier, + STATE(4388), 1, + sym_enumerator_list, + ACTIONS(7387), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -467568,24 +487027,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_const, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(8448), 39, + ACTIONS(7389), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -467597,311 +487043,278 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___extension__, 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, - 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_COLON_RBRACK, - [40917] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7951), 1, - anon_sym_DASH_GT, - ACTIONS(7957), 1, - anon_sym_requires, - STATE(4410), 1, - sym_trailing_return_type, - ACTIONS(7954), 2, anon_sym_final, anon_sym_override, - STATE(4532), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4984), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 20, + anon_sym_requires, + [39033] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9413), 1, + anon_sym_LBRACE, + ACTIONS(10075), 1, + anon_sym___attribute__, + ACTIONS(10077), 1, + anon_sym___attribute, + STATE(4056), 1, + sym_attribute_specifier, + STATE(4391), 1, + sym_enumerator_list, + ACTIONS(7381), 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(7544), 29, + ACTIONS(7383), 44, 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___extension__, 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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_GT2, - [40995] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6307), 1, - anon_sym_requires, - ACTIONS(6305), 2, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - STATE(4455), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4846), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 19, + anon_sym_requires, + [39110] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7287), 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, + sym_ms_restrict_modifier, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7627), 32, + ACTIONS(7289), 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___extension__, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, - [41069] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6386), 1, - anon_sym_requires, - ACTIONS(8039), 1, anon_sym_DASH_GT, - STATE(4325), 1, - sym_trailing_return_type, - ACTIONS(6384), 2, anon_sym_final, anon_sym_override, - STATE(4532), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5047), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 20, + anon_sym_GT2, + anon_sym_requires, + [39177] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7199), 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, + sym_ms_restrict_modifier, + anon_sym_const, anon_sym_DOT, - ACTIONS(7627), 29, + ACTIONS(7201), 46, 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___extension__, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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_GT2, - [41147] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6111), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10003), 1, - anon_sym___attribute__, - ACTIONS(10006), 1, - anon_sym___attribute, - ACTIONS(10009), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10016), 1, anon_sym_DASH_GT, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10042), 1, - anon_sym_requires, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(6591), 1, - sym__function_attributes_start, - STATE(7246), 1, - sym_ref_qualifier, - STATE(7924), 1, - sym_trailing_return_type, - STATE(7947), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10039), 2, anon_sym_final, anon_sym_override, - STATE(6036), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6264), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8160), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7541), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6113), 9, + anon_sym_GT2, + anon_sym_requires, + [39244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 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, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - anon_sym_try, - ACTIONS(10001), 12, + anon_sym_LBRACK_COLON, + ACTIONS(7158), 45, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -467913,60 +487326,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [41267] = 8, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [39311] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6410), 1, + ACTIONS(10075), 1, anon_sym___attribute__, - ACTIONS(6412), 1, + ACTIONS(10077), 1, anon_sym___attribute, - ACTIONS(6414), 1, - anon_sym_LBRACK_LBRACK, - STATE(2419), 2, + STATE(4066), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4763), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8512), 17, + ACTIONS(7413), 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_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8514), 34, + ACTIONS(7415), 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___extension__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -467977,29 +487397,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [41343] = 9, + [39383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6351), 1, + ACTIONS(8704), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + ACTIONS(8706), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [39449] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6744), 1, anon_sym_requires, - ACTIONS(8061), 1, + ACTIONS(10343), 1, anon_sym_DASH_GT, - STATE(4326), 1, + STATE(4536), 1, sym_trailing_return_type, - ACTIONS(6349), 2, + ACTIONS(6742), 2, anon_sym_final, anon_sym_override, - STATE(4611), 2, + STATE(4653), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(4995), 2, + STATE(5128), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7629), 18, + ACTIONS(8905), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -468018,7 +487501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7627), 31, + ACTIONS(8907), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -468050,25 +487533,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [41421] = 9, + [39527] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6351), 1, - anon_sym_requires, - ACTIONS(8576), 1, - anon_sym_DASH_GT, - STATE(4327), 1, - sym_trailing_return_type, - ACTIONS(6349), 2, - anon_sym_final, - anon_sym_override, - STATE(4611), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5002), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 18, + ACTIONS(8152), 1, + anon_sym___attribute__, + ACTIONS(8154), 1, + anon_sym___attribute, + ACTIONS(8383), 1, + anon_sym_LBRACE, + ACTIONS(10346), 1, + anon_sym_COLON, + STATE(2608), 1, + sym__enum_base_clause, + STATE(2666), 1, + sym_enumerator_list, + STATE(3047), 1, + sym_attribute_specifier, + ACTIONS(8006), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -468087,9 +487569,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8089), 31, + anon_sym_DASH_GT, + ACTIONS(8008), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -468097,7 +487581,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -468119,60 +487602,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [41499] = 8, + anon_sym_DASH_GT_STAR, + [39607] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6410), 1, + ACTIONS(9961), 1, anon_sym___attribute__, - ACTIONS(6412), 1, + ACTIONS(9963), 1, anon_sym___attribute, - ACTIONS(6414), 1, - anon_sym_LBRACK_LBRACK, - STATE(2419), 2, + STATE(4540), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4745), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8479), 17, + ACTIONS(7423), 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_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8481), 34, + ACTIONS(7425), 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___extension__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -468183,42 +487664,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [41575] = 12, + [39679] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6766), 1, - anon_sym_LPAREN2, - ACTIONS(6782), 1, - anon_sym_LBRACK, - ACTIONS(6977), 1, - anon_sym_STAR, - ACTIONS(6979), 1, - anon_sym_AMP_AMP, - ACTIONS(6981), 1, - anon_sym_AMP, - STATE(1873), 1, - sym_parameter_list, - STATE(4975), 1, - sym__function_declarator_seq, - STATE(5350), 1, - sym__abstract_declarator, - STATE(4966), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9074), 16, + ACTIONS(8177), 1, + anon_sym_requires, + ACTIONS(8174), 2, + anon_sym_final, + anon_sym_override, + STATE(4610), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4840), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, @@ -468229,14 +487702,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9072), 29, + anon_sym_DASH_GT, + ACTIONS(7791), 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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -468258,26 +487735,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [39753] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6479), 1, + anon_sym_LBRACK, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(10348), 1, + anon_sym_AMP_AMP, + ACTIONS(10350), 1, + anon_sym_AMP, + ACTIONS(10354), 1, + anon_sym___attribute__, + ACTIONS(10357), 1, + anon_sym___attribute, + ACTIONS(10360), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(10367), 1, anon_sym_DASH_GT, - [41659] = 9, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10376), 1, + anon_sym_requires, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(6567), 1, + sym__function_attributes_start, + STATE(7358), 1, + sym_ref_qualifier, + STATE(8054), 1, + sym_trailing_return_type, + STATE(8063), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10369), 2, + anon_sym_final, + anon_sym_override, + STATE(6144), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6360), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8298), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7665), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6481), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [39873] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6351), 1, + ACTIONS(6700), 1, anon_sym_requires, - ACTIONS(10024), 1, + ACTIONS(10379), 1, anon_sym_DASH_GT, - STATE(4349), 1, + STATE(4447), 1, sym_trailing_return_type, - ACTIONS(6349), 2, + ACTIONS(6694), 2, anon_sym_final, anon_sym_override, - STATE(4611), 2, + STATE(4705), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5005), 2, + STATE(5071), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8541), 18, + ACTIONS(8905), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -468287,16 +487854,18 @@ 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(8543), 31, + ACTIONS(8907), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -468304,9 +487873,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -468314,7 +487881,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, @@ -468328,31 +487894,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [41737] = 6, + anon_sym_GT2, + [39951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9592), 1, - anon_sym___attribute__, - ACTIONS(9594), 1, - anon_sym___attribute, - STATE(4317), 1, - sym_attribute_specifier, - ACTIONS(7053), 12, + ACTIONS(8665), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7055), 43, + sym_identifier, + sym_literal_suffix, + ACTIONS(8667), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -468361,10 +487934,69 @@ 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___extension__, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + 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, + anon_sym_COLON_RBRACK, + [40017] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3118), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3128), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -468378,32 +488010,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, + sym_primitive_type, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [40083] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6479), 1, + anon_sym_LBRACK, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(10348), 1, + anon_sym_AMP_AMP, + ACTIONS(10350), 1, + anon_sym_AMP, + ACTIONS(10354), 1, + anon_sym___attribute__, + ACTIONS(10357), 1, + anon_sym___attribute, + ACTIONS(10360), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(10367), 1, anon_sym_DASH_GT, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10382), 1, + anon_sym_requires, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(6664), 1, + sym__function_attributes_start, + STATE(7333), 1, + sym_ref_qualifier, + STATE(8038), 1, + sym_trailing_return_type, + STATE(8075), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8160), 2, anon_sym_final, anon_sym_override, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6144), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6360), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8298), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7657), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6481), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - anon_sym_requires, - [41809] = 6, + anon_sym_try, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [40203] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9592), 1, + ACTIONS(9961), 1, anon_sym___attribute__, - ACTIONS(9594), 1, + ACTIONS(9963), 1, anon_sym___attribute, - STATE(4407), 1, + STATE(4416), 1, sym_attribute_specifier, - ACTIONS(7091), 12, + ACTIONS(7431), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -468416,7 +488133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(7093), 43, + ACTIONS(7433), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -468460,41 +488177,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [41881] = 4, + [40275] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, + ACTIONS(5655), 1, anon_sym_COLON_COLON, - ACTIONS(6798), 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, + ACTIONS(5665), 1, + sym_auto, + ACTIONS(5667), 1, + anon_sym_decltype, + ACTIONS(10005), 1, anon_sym_LT, - anon_sym_GT_GT, + ACTIONS(10384), 1, + anon_sym_LBRACK, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4991), 1, + sym_decltype_auto, + STATE(5825), 1, + sym_template_argument_list, + ACTIONS(5675), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(5659), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5643), 5, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_COLON, + ACTIONS(5636), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, 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_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, - anon_sym_DOT, - ACTIONS(6800), 44, - anon_sym_DOT_DOT_DOT, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [40361] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 11, 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_LBRACK_LBRACK, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7158), 47, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -468508,41 +488301,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [40427] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8697), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + 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_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_literal_suffix, + ACTIONS(8699), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [41949] = 9, + 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_COLON_RBRACK, + [40493] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8039), 1, - anon_sym_DASH_GT, - ACTIONS(8058), 1, + ACTIONS(8304), 1, anon_sym_requires, - STATE(4412), 1, - sym_trailing_return_type, - ACTIONS(8055), 2, + ACTIONS(8301), 2, anon_sym_final, anon_sym_override, - STATE(4532), 2, + STATE(4610), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5047), 2, + STATE(4890), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7629), 20, + ACTIONS(7968), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -468552,25 +488400,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(7627), 29, + anon_sym_DASH_GT, + ACTIONS(7966), 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, @@ -468579,6 +488428,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, @@ -468592,17 +488442,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_GT2, - [42027] = 6, + anon_sym_DASH_GT_STAR, + [40567] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9592), 1, + ACTIONS(9961), 1, anon_sym___attribute__, - ACTIONS(9594), 1, + ACTIONS(9963), 1, anon_sym___attribute, - STATE(4332), 1, + STATE(4433), 1, sym_attribute_specifier, - ACTIONS(7057), 12, + ACTIONS(7521), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -468615,7 +488465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(7059), 43, + ACTIONS(7523), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -468659,16 +488509,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [42099] = 6, + [40639] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10387), 1, + anon_sym_delete, + ACTIONS(10389), 1, + anon_sym_new, + ACTIONS(9601), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9595), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9599), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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(9597), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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, + [40713] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9592), 1, + ACTIONS(9961), 1, anon_sym___attribute__, - ACTIONS(9594), 1, + ACTIONS(9963), 1, anon_sym___attribute, - STATE(4430), 1, + STATE(4420), 1, sym_attribute_specifier, - ACTIONS(7095), 12, + ACTIONS(7435), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -468681,7 +488598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(7097), 43, + ACTIONS(7437), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -468725,82 +488642,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [42171] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - STATE(4203), 1, - sym_template_argument_list, - ACTIONS(6208), 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK_COLON, - ACTIONS(6201), 45, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [42243] = 6, + [40785] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9592), 1, + ACTIONS(9961), 1, anon_sym___attribute__, - ACTIONS(9594), 1, + ACTIONS(9963), 1, anon_sym___attribute, - STATE(4396), 1, + STATE(4423), 1, sym_attribute_specifier, - ACTIONS(7187), 12, + ACTIONS(7453), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -468813,7 +488664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(7189), 43, + ACTIONS(7455), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -468857,44 +488708,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [42315] = 12, + [40857] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(5655), 1, anon_sym_COLON_COLON, - ACTIONS(5272), 1, - anon_sym_SEMI, - ACTIONS(5280), 1, - sym_auto, - ACTIONS(5282), 1, - anon_sym_decltype, - ACTIONS(9672), 1, + ACTIONS(10005), 1, anon_sym_LT, - STATE(4121), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4203), 1, + STATE(4318), 1, sym_template_argument_list, - STATE(4767), 1, - sym_decltype_auto, - ACTIONS(5274), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5258), 6, + ACTIONS(6572), 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_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_LBRACK_COLON, - ACTIONS(5251), 40, + ACTIONS(6565), 45, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -468927,23 +488768,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_template, anon_sym_operator, - [42399] = 7, + [40929] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6307), 1, + ACTIONS(8854), 1, anon_sym_requires, - ACTIONS(6305), 2, + ACTIONS(8851), 2, anon_sym_final, anon_sym_override, - STATE(4455), 2, + STATE(4610), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(4702), 2, + STATE(4813), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8541), 19, + ACTIONS(8424), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -468963,7 +488808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8543), 32, + ACTIONS(8422), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -468996,82 +488841,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [42473] = 6, + [41003] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9592), 1, - anon_sym___attribute__, - ACTIONS(9594), 1, - anon_sym___attribute, - STATE(4295), 1, - sym_attribute_specifier, - ACTIONS(7099), 12, + ACTIONS(8318), 1, + anon_sym_DASH_GT, + ACTIONS(8324), 1, + anon_sym_requires, + STATE(4468), 1, + sym_trailing_return_type, + ACTIONS(8321), 2, + anon_sym_final, + anon_sym_override, + STATE(4705), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5258), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, 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(7101), 43, + ACTIONS(7791), 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_DOT_STAR, + anon_sym_GT2, + [41081] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6671), 1, + anon_sym_requires, + ACTIONS(6669), 2, + anon_sym_final, + anon_sym_override, + STATE(4610), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4813), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(8422), 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_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_GT_EQ, 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, + [41155] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7112), 1, + anon_sym_LPAREN2, + ACTIONS(7128), 1, + anon_sym_LBRACK, + ACTIONS(7363), 1, + anon_sym_STAR, + ACTIONS(7365), 1, + anon_sym_AMP_AMP, + ACTIONS(7367), 1, + anon_sym_AMP, + STATE(1978), 1, + sym_parameter_list, + STATE(5065), 1, + sym__function_declarator_seq, + STATE(5285), 1, + sym__abstract_declarator, + STATE(5063), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9429), 16, + 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_bitor, anon_sym_xor, + anon_sym_DOT, + ACTIONS(9427), 29, + 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_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_DOT_STAR, anon_sym_DASH_GT, + [41239] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10336), 1, + anon_sym_requires, + ACTIONS(10333), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [42545] = 6, + STATE(4610), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4775), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(8907), 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, + [41313] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9592), 1, + ACTIONS(9961), 1, anon_sym___attribute__, - ACTIONS(9594), 1, + ACTIONS(9963), 1, anon_sym___attribute, - STATE(4318), 1, + STATE(4530), 1, sym_attribute_specifier, - ACTIONS(7123), 12, + ACTIONS(7551), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -469084,7 +489138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(7125), 43, + ACTIONS(7553), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -469128,79 +489182,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [42617] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8454), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(8456), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - 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, - anon_sym_COLON_RBRACK, - [42683] = 6, + [41385] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9592), 1, + ACTIONS(9961), 1, anon_sym___attribute__, - ACTIONS(9594), 1, + ACTIONS(9963), 1, anon_sym___attribute, - STATE(4322), 1, + STATE(4398), 1, sym_attribute_specifier, - ACTIONS(7133), 12, + ACTIONS(7531), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -469213,7 +489204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(7135), 43, + ACTIONS(7533), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -469257,21 +489248,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [42755] = 7, + [41457] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6307), 1, + ACTIONS(10394), 1, anon_sym_requires, - ACTIONS(6305), 2, + ACTIONS(10391), 2, anon_sym_final, anon_sym_override, - STATE(4455), 2, + STATE(4610), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(4721), 2, + STATE(4791), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8559), 19, + ACTIONS(8913), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -469291,7 +489282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8561), 32, + ACTIONS(8915), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -469324,25 +489315,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [42829] = 9, + [41531] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8626), 1, + ACTIONS(8429), 1, anon_sym_DASH_GT, - ACTIONS(8648), 1, + ACTIONS(8435), 1, anon_sym_requires, - STATE(4414), 1, + STATE(4470), 1, sym_trailing_return_type, - ACTIONS(8645), 2, + ACTIONS(8432), 2, anon_sym_final, anon_sym_override, - STATE(4532), 2, + STATE(4705), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5023), 2, + STATE(5047), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8087), 20, + ACTIONS(7968), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -469363,7 +489354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8089), 29, + ACTIONS(7966), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -469393,91 +489384,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_GT2, - [42907] = 6, + [41609] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9592), 1, - anon_sym___attribute__, - ACTIONS(9594), 1, - anon_sym___attribute, - STATE(4298), 1, - sym_attribute_specifier, - ACTIONS(7103), 12, + ACTIONS(8983), 1, + anon_sym_DASH_GT, + ACTIONS(8989), 1, + anon_sym_requires, + STATE(4471), 1, + sym_trailing_return_type, + ACTIONS(8986), 2, + anon_sym_final, + anon_sym_override, + STATE(4705), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5066), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, 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(7105), 43, + ACTIONS(8422), 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___extension__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_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_GT2, + [41687] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6700), 1, + anon_sym_requires, + ACTIONS(8429), 1, anon_sym_DASH_GT, + STATE(4440), 1, + sym_trailing_return_type, + ACTIONS(6694), 2, anon_sym_final, anon_sym_override, + STATE(4705), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5047), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7966), 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_DOT_STAR, anon_sym_GT2, - anon_sym_requires, - [42979] = 9, + [41765] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9994), 1, + ACTIONS(10379), 1, anon_sym_DASH_GT, - ACTIONS(10048), 1, + ACTIONS(10400), 1, anon_sym_requires, - STATE(4419), 1, + STATE(4472), 1, sym_trailing_return_type, - ACTIONS(10045), 2, + ACTIONS(10397), 2, anon_sym_final, anon_sym_override, - STATE(4532), 2, + STATE(4705), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5014), 2, + STATE(5071), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8541), 20, + ACTIONS(8905), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -469498,7 +489561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8543), 29, + ACTIONS(8907), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -469528,27 +489591,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_GT2, - [43057] = 7, + [41843] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10051), 1, - anon_sym_delete, - ACTIONS(10053), 1, - anon_sym_new, - ACTIONS(9346), 3, - anon_sym_TILDE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9340), 6, - anon_sym_STAR, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9344), 22, + ACTIONS(6744), 1, + anon_sym_requires, + ACTIONS(8360), 1, + anon_sym_DASH_GT, + STATE(4532), 1, + sym_trailing_return_type, + ACTIONS(6742), 2, + anon_sym_final, + anon_sym_override, + STATE(4653), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5110), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -469559,26 +489623,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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9342), 25, + ACTIONS(7791), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -469590,52 +489650,107 @@ 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, - [43131] = 3, + [41921] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8416), 29, - aux_sym_preproc_elif_token1, + ACTIONS(9961), 1, + anon_sym___attribute__, + ACTIONS(9963), 1, + anon_sym___attribute, + STATE(4513), 1, + sym_attribute_specifier, + ACTIONS(7547), 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___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7549), 43, + 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___extension__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - anon_sym_DOT, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, + anon_sym_GT2, anon_sym_requires, - ACTIONS(8418), 29, + [41993] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9961), 1, + anon_sym___attribute__, + ACTIONS(9963), 1, + anon_sym___attribute, + STATE(4427), 1, + sym_attribute_specifier, + ACTIONS(7413), 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(7415), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -469644,43 +489759,44 @@ 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_LBRACK_LBRACK, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___extension__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, - anon_sym_COLON_RBRACK, - [43197] = 11, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [42065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10055), 1, - sym_identifier, - ACTIONS(10065), 1, - sym_primitive_type, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(4642), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10062), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4221), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(10060), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6812), 11, + ACTIONS(7079), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -469691,28 +489807,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(10057), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6814), 22, + ACTIONS(7077), 45, anon_sym_AMP, + anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -469722,31 +489830,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, anon_sym_asm, anon_sym___asm__, anon_sym___asm, + sym_identifier, anon_sym_final, anon_sym_override, anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [43279] = 10, + [42131] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7813), 1, - anon_sym___attribute__, - ACTIONS(7815), 1, - anon_sym___attribute, - ACTIONS(7992), 1, - anon_sym_LBRACE, - ACTIONS(10067), 1, - anon_sym_COLON, - STATE(2543), 1, - sym__enum_base_clause, - STATE(2617), 1, - sym_enumerator_list, - STATE(2931), 1, - sym_attribute_specifier, - ACTIONS(7651), 19, + ACTIONS(6700), 1, + anon_sym_requires, + ACTIONS(8983), 1, + anon_sym_DASH_GT, + STATE(4443), 1, + sym_trailing_return_type, + ACTIONS(6694), 2, + anon_sym_final, + anon_sym_override, + STATE(4705), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5066), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -469756,26 +489883,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(7653), 32, + ACTIONS(8422), 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, @@ -469784,7 +489910,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, @@ -469798,94 +489923,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [43359] = 12, + anon_sym_GT2, + [42209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6724), 1, - anon_sym_LPAREN2, - ACTIONS(6740), 1, - anon_sym_LBRACK, - ACTIONS(7025), 1, - anon_sym_STAR, - ACTIONS(7027), 1, - anon_sym_AMP_AMP, - ACTIONS(7029), 1, - anon_sym_AMP, - STATE(1875), 1, - sym_parameter_list, - STATE(4970), 1, - sym__function_declarator_seq, - STATE(5363), 1, - sym__abstract_declarator, - STATE(4956), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9074), 18, + ACTIONS(8657), 19, + aux_sym_preproc_elif_token1, 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_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9072), 27, + sym_identifier, + sym_literal_suffix, + ACTIONS(8659), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [43443] = 7, + 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_COLON_RBRACK, + [42275] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8000), 1, + ACTIONS(8360), 1, + anon_sym_DASH_GT, + ACTIONS(8366), 1, anon_sym_requires, - ACTIONS(7997), 2, + STATE(4476), 1, + sym_trailing_return_type, + ACTIONS(8363), 2, anon_sym_final, anon_sym_override, - STATE(4455), 2, + STATE(4653), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(4846), 2, + STATE(5110), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7629), 19, + ACTIONS(7789), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -469904,11 +490024,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7627), 32, + ACTIONS(7791), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -469916,6 +490034,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -469937,22 +490056,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [43517] = 7, + [42353] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6307), 1, + ACTIONS(6744), 1, anon_sym_requires, - ACTIONS(6305), 2, + ACTIONS(8880), 1, + anon_sym_DASH_GT, + STATE(4535), 1, + sym_trailing_return_type, + ACTIONS(6742), 2, anon_sym_final, anon_sym_override, - STATE(4455), 2, + STATE(4653), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(4685), 2, + STATE(5126), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8087), 19, + ACTIONS(8424), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -469971,11 +490093,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8089), 32, + ACTIONS(8422), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -469983,6 +490103,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -470004,220 +490125,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [43591] = 3, + [42431] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7107), 13, + ACTIONS(6671), 1, + anon_sym_requires, + ACTIONS(6669), 2, + anon_sym_final, + anon_sym_override, + STATE(4610), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4775), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7109), 45, + anon_sym_DASH_GT, + ACTIONS(8907), 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_GT_EQ, 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_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, + [42505] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8440), 1, anon_sym_DASH_GT, + ACTIONS(8446), 1, + anon_sym_requires, + STATE(4477), 1, + sym_trailing_return_type, + ACTIONS(8443), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [43657] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9586), 1, - anon_sym___attribute__, - ACTIONS(9588), 1, - anon_sym___attribute, - STATE(3973), 1, - sym_attribute_specifier, - ACTIONS(7087), 10, + STATE(4653), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5121), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 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(7089), 45, + ACTIONS(7966), 31, 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___extension__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_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, + [42583] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8880), 1, anon_sym_DASH_GT, + ACTIONS(8931), 1, + anon_sym_requires, + STATE(4549), 1, + sym_trailing_return_type, + ACTIONS(8928), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [43729] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9586), 1, - anon_sym___attribute__, - ACTIONS(9588), 1, - anon_sym___attribute, - STATE(3995), 1, - sym_attribute_specifier, - ACTIONS(7187), 10, + STATE(4653), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5126), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 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(7189), 45, + ACTIONS(8422), 31, 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___extension__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [43801] = 10, + [42661] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7813), 1, + ACTIONS(8152), 1, anon_sym___attribute__, - ACTIONS(7815), 1, + ACTIONS(8154), 1, anon_sym___attribute, - ACTIONS(7992), 1, + ACTIONS(8383), 1, anon_sym_LBRACE, - ACTIONS(10067), 1, + ACTIONS(10346), 1, anon_sym_COLON, - STATE(2522), 1, + STATE(2626), 1, sym__enum_base_clause, - STATE(2601), 1, + STATE(2729), 1, sym_enumerator_list, - STATE(2851), 1, + STATE(2962), 1, sym_attribute_specifier, - ACTIONS(7600), 19, + ACTIONS(8000), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -470237,7 +490367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7602), 32, + ACTIONS(8002), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -470270,93 +490400,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [43881] = 6, + [42741] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9586), 1, - anon_sym___attribute__, - ACTIONS(9588), 1, - anon_sym___attribute, - STATE(4023), 1, - sym_attribute_specifier, - ACTIONS(7053), 10, + ACTIONS(10343), 1, + anon_sym_DASH_GT, + ACTIONS(10406), 1, + anon_sym_requires, + STATE(4481), 1, + sym_trailing_return_type, + ACTIONS(10403), 2, + anon_sym_final, + anon_sym_override, + STATE(4653), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5128), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 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(7055), 45, + ACTIONS(8907), 31, 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___extension__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [43953] = 6, + [42819] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9586), 1, + ACTIONS(9961), 1, anon_sym___attribute__, - ACTIONS(9588), 1, + ACTIONS(9963), 1, anon_sym___attribute, - STATE(4025), 1, + STATE(4452), 1, sym_attribute_specifier, - ACTIONS(7057), 10, + ACTIONS(7427), 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(7059), 45, + ACTIONS(7429), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -470367,13 +490502,10 @@ 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___extension__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -470401,58 +490533,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [44025] = 6, + [42891] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9592), 1, + ACTIONS(6764), 1, anon_sym___attribute__, - ACTIONS(9594), 1, + ACTIONS(6766), 1, anon_sym___attribute, - STATE(4373), 1, + ACTIONS(6768), 1, + anon_sym_LBRACK_LBRACK, + STATE(2470), 2, sym_attribute_specifier, - ACTIONS(7087), 12, + aux_sym_type_definition_repeat1, + STATE(4827), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8833), 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_LBRACK, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(7089), 43, + anon_sym_DASH_GT, + ACTIONS(8835), 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___extension__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + 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, @@ -470463,98 +490599,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [44097] = 6, + anon_sym_DASH_GT_STAR, + [42967] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9586), 1, - anon_sym___attribute__, - ACTIONS(9588), 1, - anon_sym___attribute, - STATE(4040), 1, - sym_attribute_specifier, - ACTIONS(7061), 10, + ACTIONS(6671), 1, + anon_sym_requires, + ACTIONS(6669), 2, + anon_sym_final, + anon_sym_override, + STATE(4610), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4791), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8913), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + 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(7063), 45, + anon_sym_DASH_GT, + ACTIONS(8915), 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___extension__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [44169] = 6, + anon_sym_DASH_GT_STAR, + [43041] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9586), 1, - anon_sym___attribute__, - ACTIONS(9588), 1, - anon_sym___attribute, - STATE(3941), 1, - sym_attribute_specifier, - ACTIONS(7065), 10, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(7223), 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___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7067), 45, + ACTIONS(7225), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -470565,13 +490700,11 @@ 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___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -470599,45 +490732,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [44241] = 6, + [43109] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9586), 1, - anon_sym___attribute__, - ACTIONS(9588), 1, - anon_sym___attribute, - STATE(3948), 1, - sym_attribute_specifier, - ACTIONS(7091), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(5657), 1, + anon_sym_SEMI, + ACTIONS(5665), 1, + sym_auto, + ACTIONS(5667), 1, + anon_sym_decltype, + ACTIONS(10005), 1, anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7093), 45, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4318), 1, + sym_template_argument_list, + STATE(4991), 1, + sym_decltype_auto, + ACTIONS(5659), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5643), 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_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(5636), 40, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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_RBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -470651,108 +490803,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [43193] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6700), 1, + anon_sym_requires, + ACTIONS(8318), 1, anon_sym_DASH_GT, + STATE(4432), 1, + sym_trailing_return_type, + ACTIONS(6694), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [44313] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9592), 1, - anon_sym___attribute__, - ACTIONS(9594), 1, - anon_sym___attribute, - STATE(4351), 1, - sym_attribute_specifier, - ACTIONS(7065), 12, + STATE(4705), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5258), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, 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(7067), 43, + ACTIONS(7791), 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___extension__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_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, - anon_sym_final, - anon_sym_override, + anon_sym_DOT_STAR, anon_sym_GT2, - anon_sym_requires, - [44385] = 6, + [43271] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9586), 1, + ACTIONS(9961), 1, anon_sym___attribute__, - ACTIONS(9588), 1, + ACTIONS(9963), 1, anon_sym___attribute, - STATE(3950), 1, + STATE(4462), 1, sym_attribute_specifier, - ACTIONS(7095), 10, + ACTIONS(7397), 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(7097), 45, + ACTIONS(7399), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -470763,13 +490908,10 @@ 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___extension__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -470797,28 +490939,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [44457] = 6, + [43343] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9586), 1, + ACTIONS(9961), 1, anon_sym___attribute__, - ACTIONS(9588), 1, + ACTIONS(9963), 1, anon_sym___attribute, - STATE(3951), 1, + STATE(4463), 1, sym_attribute_specifier, - ACTIONS(7099), 10, + ACTIONS(7505), 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(7101), 45, + ACTIONS(7507), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -470829,13 +490974,10 @@ 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___extension__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -470863,28 +491005,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [44529] = 6, + [43415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9586), 1, - anon_sym___attribute__, - ACTIONS(9588), 1, - anon_sym___attribute, - STATE(3952), 1, - sym_attribute_specifier, - ACTIONS(7103), 10, + ACTIONS(7473), 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___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7105), 45, + ACTIONS(7475), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -470895,13 +491035,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___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -470929,17 +491068,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [44601] = 6, + [43481] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9586), 1, + ACTIONS(10075), 1, anon_sym___attribute__, - ACTIONS(9588), 1, + ACTIONS(10077), 1, anon_sym___attribute, - STATE(3958), 1, + STATE(4089), 1, sym_attribute_specifier, - ACTIONS(7123), 10, + ACTIONS(7547), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -470950,7 +491090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(7125), 45, + ACTIONS(7549), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -470996,16 +491136,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [44673] = 6, + [43553] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9586), 1, + ACTIONS(10075), 1, anon_sym___attribute__, - ACTIONS(9588), 1, + ACTIONS(10077), 1, anon_sym___attribute, - STATE(3960), 1, + STATE(4128), 1, sym_attribute_specifier, - ACTIONS(7133), 10, + ACTIONS(7551), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -471016,7 +491156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(7135), 45, + ACTIONS(7553), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -471062,88 +491202,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [44745] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8400), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(8402), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - 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, - anon_sym_COLON_RBRACK, - [44811] = 9, + [43625] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6386), 1, - anon_sym_requires, - ACTIONS(8626), 1, - anon_sym_DASH_GT, - STATE(4354), 1, - sym_trailing_return_type, - ACTIONS(6384), 2, - anon_sym_final, - anon_sym_override, - STATE(4532), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5023), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 20, + ACTIONS(6764), 1, + anon_sym___attribute__, + ACTIONS(6766), 1, + anon_sym___attribute, + ACTIONS(6768), 1, + anon_sym_LBRACK_LBRACK, + STATE(2470), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5004), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8837), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -471153,26 +491227,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_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(8089), 29, + anon_sym_DASH_GT, + ACTIONS(8839), 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_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -471180,104 +491252,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_DOT_STAR, - anon_sym_GT2, - [44889] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [43701] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1841), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9848), 26, - aux_sym_preproc_elif_token1, + ACTIONS(10075), 1, + anon_sym___attribute__, + ACTIONS(10077), 1, + anon_sym___attribute, + STATE(4147), 1, + sym_attribute_specifier, + ACTIONS(7427), 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_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_DOT, - sym_identifier, - ACTIONS(9846), 27, + ACTIONS(7429), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_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, - [44962] = 10, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [43773] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8003), 1, - anon_sym___attribute__, - ACTIONS(8005), 1, - anon_sym___attribute, - ACTIONS(8100), 1, - anon_sym_LBRACE, - ACTIONS(10069), 1, - anon_sym_COLON, - STATE(2585), 1, - sym__enum_base_clause, - STATE(2679), 1, - sym_enumerator_list, - STATE(3045), 1, - sym_attribute_specifier, - ACTIONS(7651), 18, + ACTIONS(6671), 1, + anon_sym_requires, + ACTIONS(6669), 2, + anon_sym_final, + anon_sym_override, + STATE(4610), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4890), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -471296,9 +491369,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7653), 32, + anon_sym_DASH_GT, + ACTIONS(7966), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -471306,7 +491381,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -471328,25 +491402,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [45041] = 3, + anon_sym_DASH_GT_STAR, + [43847] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7351), 13, + ACTIONS(10075), 1, + anon_sym___attribute__, + ACTIONS(10077), 1, + anon_sym___attribute, + STATE(4132), 1, + sym_attribute_specifier, + ACTIONS(7397), 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, - anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7353), 44, + ACTIONS(7399), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -471357,11 +491434,13 @@ 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___extension__, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -471389,110 +491468,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [45106] = 7, + [43919] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6351), 1, - anon_sym_requires, - ACTIONS(6349), 2, - anon_sym_final, - anon_sym_override, - STATE(4611), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4983), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 18, + ACTIONS(10075), 1, + anon_sym___attribute__, + ACTIONS(10077), 1, + anon_sym___attribute, + STATE(4141), 1, + sym_attribute_specifier, + ACTIONS(7505), 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(7544), 32, + ACTIONS(7507), 45, 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_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_DOT_STAR, - anon_sym_DASH_GT, - [45179] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6256), 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_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6254), 45, - anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -471506,37 +491520,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, + 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, anon_sym_final, anon_sym_override, - anon_sym_operator, - anon_sym_try, anon_sym_requires, - [45244] = 3, + [43991] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7355), 13, + ACTIONS(10075), 1, + anon_sym___attribute__, + ACTIONS(10077), 1, + anon_sym___attribute, + STATE(4055), 1, + sym_attribute_specifier, + ACTIONS(7423), 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, - anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7357), 44, + ACTIONS(7425), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -471547,11 +491566,13 @@ 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___extension__, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -471579,43 +491600,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [45309] = 3, + [44063] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6260), 12, + ACTIONS(10409), 1, + sym_identifier, + ACTIONS(10419), 1, + sym_primitive_type, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(4711), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10416), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4395), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(10414), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7249), 11, 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_COLON_COLON, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6258), 45, - anon_sym_AMP, + ACTIONS(10411), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -471628,47 +491649,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [45374] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6264), 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_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6262), 45, + ACTIONS(7251), 22, anon_sym_AMP, - anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -471678,51 +491665,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_operator, anon_sym_try, anon_sym_requires, - [45439] = 3, + [44145] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7359), 13, + ACTIONS(10075), 1, + anon_sym___attribute__, + ACTIONS(10077), 1, + anon_sym___attribute, + STATE(4068), 1, + sym_attribute_specifier, + ACTIONS(7431), 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, - anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7361), 44, + ACTIONS(7433), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -471733,11 +491703,13 @@ 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___extension__, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -471765,193 +491737,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [45504] = 13, + [44217] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(9711), 1, - anon_sym_virtual, - ACTIONS(10071), 1, - anon_sym_SEMI, - STATE(4644), 1, - sym_alignas_qualifier, - ACTIONS(7876), 2, + ACTIONS(10075), 1, anon_sym___attribute__, + ACTIONS(10077), 1, anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(9709), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - STATE(3861), 7, - sym__declaration_modifiers, + STATE(4078), 1, sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(7874), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(7870), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(9707), 13, - anon_sym_AMP, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [45589] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7972), 1, - anon_sym_requires, - ACTIONS(7969), 2, - anon_sym_final, - anon_sym_override, - STATE(4611), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4983), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 18, + ACTIONS(7435), 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(7544), 32, + ACTIONS(7437), 45, 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___extension__, + 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - [45662] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(9711), 1, - anon_sym_virtual, - ACTIONS(10073), 1, - anon_sym_SEMI, - STATE(4644), 1, - sym_alignas_qualifier, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(9709), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - STATE(3861), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(7874), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(7870), 13, - anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -471963,104 +491787,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(9707), 13, - anon_sym_AMP, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [45747] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8067), 1, - anon_sym_requires, - ACTIONS(8064), 2, - anon_sym_final, - anon_sym_override, - STATE(4611), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4995), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 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(7627), 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_LBRACK, - anon_sym_RBRACK, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, - [45820] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [44289] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7245), 13, + ACTIONS(10075), 1, + anon_sym___attribute__, + ACTIONS(10077), 1, + anon_sym___attribute, + STATE(4084), 1, + sym_attribute_specifier, + ACTIONS(7453), 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, - anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7247), 44, + ACTIONS(7455), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -472071,11 +491835,13 @@ 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___extension__, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -472103,287 +491869,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [45885] = 7, + [44361] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1847), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9864), 19, + ACTIONS(10075), 1, + anon_sym___attribute__, + ACTIONS(10077), 1, + anon_sym___attribute, + STATE(4115), 1, + sym_attribute_specifier, + ACTIONS(7521), 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_COLON, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(9862), 34, + ACTIONS(7523), 45, 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_RBRACK_RBRACK, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [45958] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8662), 1, - anon_sym_requires, - ACTIONS(8659), 2, - anon_sym_final, - anon_sym_override, - STATE(4611), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5002), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 18, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(8089), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, - [46031] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10030), 1, - anon_sym_requires, - ACTIONS(10027), 2, anon_sym_final, anon_sym_override, - STATE(4611), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5005), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 18, + anon_sym_requires, + [44433] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10075), 1, + anon_sym___attribute__, + ACTIONS(10077), 1, + anon_sym___attribute, + STATE(4122), 1, + sym_attribute_specifier, + ACTIONS(7531), 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(8543), 32, + ACTIONS(7533), 45, 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___extension__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, - [46104] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6351), 1, - anon_sym_requires, - ACTIONS(6349), 2, anon_sym_final, anon_sym_override, - STATE(4611), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4995), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 18, + anon_sym_requires, + [44505] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8750), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_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(7627), 32, + sym_identifier, + sym_literal_suffix, + ACTIONS(8752), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_DOT_STAR, anon_sym_DASH_GT, - [46177] = 7, + 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_COLON_RBRACK, + [44571] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10078), 1, + ACTIONS(6744), 1, anon_sym_requires, - ACTIONS(10075), 2, + ACTIONS(8440), 1, + anon_sym_DASH_GT, + STATE(4534), 1, + sym_trailing_return_type, + ACTIONS(6742), 2, anon_sym_final, anon_sym_override, - STATE(4611), 2, + STATE(4653), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5008), 2, + STATE(5121), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8559), 18, + ACTIONS(7968), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -472402,7 +492102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8561), 32, + ACTIONS(7966), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -472434,122 +492134,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [46250] = 3, + [44649] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10083), 26, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_COLON_COLON, - 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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(10081), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_typename, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + ACTIONS(10421), 1, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [46315] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(10085), 1, - anon_sym_SEMI, - STATE(4569), 1, - sym_field_declaration_list, - STATE(4673), 1, - sym_attribute_specifier, - STATE(9463), 1, - sym_virtual_specifier, - STATE(10317), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6828), 7, + ACTIONS(10431), 1, + sym_primitive_type, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(5041), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10428), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4109), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(10426), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7205), 11, + 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_LBRACK_COLON, - ACTIONS(6826), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(10423), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -472562,56 +492182,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [46398] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(10087), 1, - anon_sym_SEMI, - STATE(4569), 1, - sym_field_declaration_list, - STATE(4673), 1, - sym_attribute_specifier, - STATE(9463), 1, - sym_virtual_specifier, - STATE(10317), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6828), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(6826), 39, + ACTIONS(7207), 22, anon_sym_AMP, - anon_sym___extension__, anon_sym_virtual, anon_sym_extern, + anon_sym___attribute__, + 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, @@ -472621,152 +492198,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [46481] = 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [44731] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7295), 13, + ACTIONS(7136), 1, + anon_sym_LPAREN2, + ACTIONS(7152), 1, + anon_sym_LBRACK, + ACTIONS(7375), 1, + anon_sym_STAR, + ACTIONS(7377), 1, + anon_sym_AMP_AMP, + ACTIONS(7379), 1, + anon_sym_AMP, + STATE(1975), 1, + sym_parameter_list, + STATE(5091), 1, + sym__function_declarator_seq, + STATE(5419), 1, + sym__abstract_declarator, + STATE(5090), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9429), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_AMP, + 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___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7297), 44, + ACTIONS(9427), 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___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_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, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [46546] = 3, + [44815] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7259), 13, + ACTIONS(6671), 1, + anon_sym_requires, + ACTIONS(6669), 2, + anon_sym_final, + anon_sym_override, + STATE(4610), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4840), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7261), 44, + anon_sym_DASH_GT, + ACTIONS(7791), 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_EQ, 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [46611] = 3, + anon_sym_DASH_GT_STAR, + [44889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7263), 13, + ACTIONS(7771), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -472780,7 +492361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7265), 44, + ACTIONS(7773), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -472825,39 +492406,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [46676] = 3, + [44954] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7375), 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, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(10038), 1, + anon_sym_virtual, + ACTIONS(10433), 1, + anon_sym_SEMI, + STATE(4722), 1, + sym_alignas_qualifier, + ACTIONS(8236), 2, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7377), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10036), 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_COLON_COLON, + anon_sym_LBRACK_COLON, + STATE(3979), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(8234), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(8230), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -472869,98 +492464,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, + ACTIONS(10034), 13, + anon_sym_AMP, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [45039] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10445), 1, + anon_sym_AMP_AMP, + ACTIONS(10457), 1, + anon_sym_GT_EQ, + ACTIONS(10461), 1, anon_sym_LT_EQ_GT, + ACTIONS(10463), 1, anon_sym_or, + ACTIONS(10465), 1, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(10467), 1, anon_sym_not_eq, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [46741] = 25, + ACTIONS(10439), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10447), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(10449), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10451), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10459), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10441), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10455), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10435), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(10437), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [45148] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(10097), 1, + ACTIONS(10443), 1, anon_sym_PIPE_PIPE, - ACTIONS(10099), 1, + ACTIONS(10445), 1, anon_sym_AMP_AMP, - ACTIONS(10111), 1, + ACTIONS(10457), 1, anon_sym_GT_EQ, - ACTIONS(10115), 1, + ACTIONS(10461), 1, anon_sym_LT_EQ_GT, - ACTIONS(10117), 1, + ACTIONS(10463), 1, anon_sym_or, - ACTIONS(10119), 1, + ACTIONS(10465), 1, anon_sym_and, - ACTIONS(10121), 1, + ACTIONS(10467), 1, anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(10469), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10471), 1, + anon_sym_QMARK, + STATE(3874), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10093), 2, + ACTIONS(10439), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10101), 2, + ACTIONS(10447), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(10103), 2, + ACTIONS(10449), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(10105), 2, + ACTIONS(10451), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(10107), 2, + ACTIONS(10453), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10113), 2, + ACTIONS(10459), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10095), 3, + ACTIONS(10441), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10109), 3, + ACTIONS(10455), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10089), 6, + ACTIONS(9826), 6, aux_sym_preproc_elif_token1, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, sym_identifier, - ACTIONS(10091), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(9828), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -472971,79 +492648,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46850] = 25, + [45261] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(10097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10099), 1, + ACTIONS(10445), 1, anon_sym_AMP_AMP, - ACTIONS(10111), 1, + ACTIONS(10457), 1, anon_sym_GT_EQ, - ACTIONS(10115), 1, + ACTIONS(10461), 1, anon_sym_LT_EQ_GT, - ACTIONS(10117), 1, - anon_sym_or, - ACTIONS(10119), 1, + ACTIONS(10465), 1, anon_sym_and, - ACTIONS(10121), 1, + ACTIONS(10467), 1, anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10093), 2, + ACTIONS(10439), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10101), 2, + ACTIONS(10447), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(10103), 2, + ACTIONS(10449), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(10105), 2, + ACTIONS(10451), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(10107), 2, + ACTIONS(10453), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10113), 2, + ACTIONS(10459), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10095), 3, + ACTIONS(10441), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10109), 3, + ACTIONS(10455), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10123), 6, + ACTIONS(9707), 7, aux_sym_preproc_elif_token1, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_or, sym_identifier, - ACTIONS(10125), 17, + ACTIONS(9709), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -473055,79 +492730,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46959] = 25, + [45366] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(10097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10099), 1, - anon_sym_AMP_AMP, - ACTIONS(10111), 1, + ACTIONS(10457), 1, anon_sym_GT_EQ, - ACTIONS(10115), 1, + ACTIONS(10461), 1, anon_sym_LT_EQ_GT, - ACTIONS(10117), 1, - anon_sym_or, - ACTIONS(10119), 1, - anon_sym_and, - ACTIONS(10121), 1, + ACTIONS(10467), 1, anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10093), 2, + ACTIONS(10439), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10101), 2, + ACTIONS(10447), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(10103), 2, + ACTIONS(10449), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10451), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10459), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10441), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10455), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9707), 8, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + sym_identifier, + ACTIONS(9709), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_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, + [45467] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10457), 1, + anon_sym_GT_EQ, + ACTIONS(10461), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10467), 1, + anon_sym_not_eq, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10439), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10449), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(10105), 2, + ACTIONS(10451), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(10107), 2, + ACTIONS(10453), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10113), 2, + ACTIONS(10459), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10095), 3, + ACTIONS(10441), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10109), 3, + ACTIONS(10455), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9344), 6, + ACTIONS(9707), 10, aux_sym_preproc_elif_token1, + anon_sym_PIPE, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, sym_identifier, - ACTIONS(9342), 17, + ACTIONS(9709), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -473139,10 +492889,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [47068] = 3, + [45566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7379), 13, + ACTIONS(7639), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -473156,7 +492906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7381), 44, + ACTIONS(7641), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -473201,39 +492951,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [47133] = 3, + [45631] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7267), 13, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10457), 1, + anon_sym_GT_EQ, + ACTIONS(10461), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10467), 1, + anon_sym_not_eq, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10439), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(10451), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10459), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10441), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10455), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7269), 44, + ACTIONS(9707), 12, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + 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, + sym_identifier, + ACTIONS(9709), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [45728] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10457), 1, + anon_sym_GT_EQ, + ACTIONS(10461), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10467), 1, + anon_sym_not_eq, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10439), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10453), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(10459), 2, anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10441), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10455), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9707), 14, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + 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, + sym_identifier, + ACTIONS(9709), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_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, + [45823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6610), 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6608), 45, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -473247,58 +493155,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_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, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [47198] = 13, + [45888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(6618), 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_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(9711), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6616), 45, + anon_sym_AMP, + anon_sym___extension__, anon_sym_virtual, - ACTIONS(10127), 1, - anon_sym_SEMI, - STATE(4644), 1, - sym_alignas_qualifier, - ACTIONS(7876), 2, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(9709), 6, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [45953] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6622), 12, + 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_COLON, - STATE(3861), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(7874), 9, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6620), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -473307,8 +493265,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(7870), 13, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -473321,64 +493277,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(9707), 13, - anon_sym_AMP, - 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_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, sym_identifier, + sym_auto, anon_sym_decltype, - anon_sym_template, + anon_sym_final, + anon_sym_override, anon_sym_operator, - [47283] = 7, + anon_sym_try, + anon_sym_requires, + [46018] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6386), 1, - anon_sym_requires, - ACTIONS(6384), 2, - anon_sym_final, - anon_sym_override, - STATE(4532), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5023), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 20, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10457), 1, + anon_sym_GT_EQ, + ACTIONS(10461), 1, + anon_sym_LT_EQ_GT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10439), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10459), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10441), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10455), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9707), 15, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, 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_DOT, - ACTIONS(8089), 30, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(9709), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -473386,65 +493363,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, + [46109] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10461), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [47356] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6351), 1, - anon_sym_requires, - ACTIONS(6349), 2, - anon_sym_final, - anon_sym_override, - STATE(4611), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5002), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 18, + ACTIONS(10439), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10459), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10441), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9707), 18, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_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_DOT, - ACTIONS(8089), 32, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(9709), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -473456,61 +493440,79 @@ 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, + [46196] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10445), 1, + anon_sym_AMP_AMP, + ACTIONS(10457), 1, + anon_sym_GT_EQ, + ACTIONS(10461), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, + ACTIONS(10463), 1, + anon_sym_or, + ACTIONS(10465), 1, + anon_sym_and, + ACTIONS(10467), 1, anon_sym_not_eq, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [47429] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6351), 1, - anon_sym_requires, - ACTIONS(6349), 2, - anon_sym_final, - anon_sym_override, - STATE(4611), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5005), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 18, + ACTIONS(10439), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10447), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(10449), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(10451), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10459), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10441), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10455), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10473), 6, + aux_sym_preproc_elif_token1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8543), 32, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(10475), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -473522,85 +493524,229 @@ 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, + [46305] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10445), 1, + anon_sym_AMP_AMP, + ACTIONS(10457), 1, + anon_sym_GT_EQ, + ACTIONS(10461), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, + ACTIONS(10463), 1, + anon_sym_or, + ACTIONS(10465), 1, + anon_sym_and, + ACTIONS(10467), 1, anon_sym_not_eq, + ACTIONS(10469), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10471), 1, + anon_sym_QMARK, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [47502] = 5, + ACTIONS(10439), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10447), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(10449), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10451), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10459), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10441), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10455), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10477), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(10479), 15, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [46418] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6286), 1, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(10481), 1, + anon_sym_SEMI, + STATE(4730), 1, + sym_field_declaration_list, + STATE(4978), 1, + sym_attribute_specifier, + STATE(9508), 1, + sym_virtual_specifier, + STATE(10399), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7237), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - STATE(4365), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8479), 20, + anon_sym_LBRACK_COLON, + ACTIONS(7235), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [46501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7655), 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_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym___attribute, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8481), 34, + ACTIONS(7657), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [47571] = 3, + [46566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7253), 13, + ACTIONS(7647), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -473614,7 +493760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7255), 44, + ACTIONS(7649), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -473659,30 +493805,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [47636] = 12, + [46631] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10129), 1, + ACTIONS(10483), 1, anon_sym_SEMI, - STATE(4569), 1, + STATE(4730), 1, sym_field_declaration_list, - STATE(4673), 1, + STATE(4978), 1, sym_attribute_specifier, - STATE(9463), 1, + STATE(9508), 1, sym_virtual_specifier, - STATE(10317), 1, + STATE(10399), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6828), 7, + ACTIONS(7237), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -473690,7 +493836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(6826), 39, + ACTIONS(7235), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -473730,180 +493876,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [47719] = 12, + [46714] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(10131), 1, - anon_sym_SEMI, - STATE(4569), 1, - sym_field_declaration_list, - STATE(4673), 1, - sym_attribute_specifier, - STATE(9463), 1, - sym_virtual_specifier, - STATE(10317), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6828), 7, + ACTIONS(9230), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(6826), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + ACTIONS(9642), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [47802] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7271), 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___attribute, - anon_sym_const, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(7273), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(10443), 1, anon_sym_PIPE_PIPE, + ACTIONS(10445), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, + ACTIONS(10457), 1, + anon_sym_GT_EQ, + ACTIONS(10461), 1, anon_sym_LT_EQ_GT, + ACTIONS(10463), 1, anon_sym_or, + ACTIONS(10465), 1, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(10467), 1, anon_sym_not_eq, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [47867] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1870), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9834), 19, + ACTIONS(10439), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10447), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(10449), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(10451), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10459), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10441), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10455), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, + ACTIONS(10485), 6, + aux_sym_preproc_elif_token1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9832), 34, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(10487), 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___attribute__, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -473915,24 +493960,10 @@ 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [47940] = 3, + [46823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7275), 13, + ACTIONS(7663), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -473946,7 +493977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7277), 44, + ACTIONS(7665), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -473991,180 +494022,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [48005] = 7, + [46888] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9836), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(1870), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9840), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(9838), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10443), 1, anon_sym_PIPE_PIPE, + ACTIONS(10445), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(10457), 1, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - 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(10461), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, + ACTIONS(10463), 1, + anon_sym_or, + ACTIONS(10465), 1, + anon_sym_and, + ACTIONS(10467), 1, anon_sym_not_eq, + ACTIONS(10469), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10471), 1, + anon_sym_QMARK, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [48078] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1870), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9844), 19, + ACTIONS(10439), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10447), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(10449), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9842), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(10451), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10453), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [48151] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1870), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9848), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10459), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10441), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10455), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, + ACTIONS(10489), 6, + aux_sym_preproc_elif_token1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9846), 34, - anon_sym_DOT_DOT_DOT, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(10491), 15, 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___attribute__, - anon_sym_QMARK, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -474175,32 +494108,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_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [48224] = 7, + [47001] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1870), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9852), 19, + ACTIONS(6700), 1, + anon_sym_requires, + ACTIONS(6694), 2, + anon_sym_final, + anon_sym_override, + STATE(4705), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5258), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -474210,26 +494132,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___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9850), 34, + ACTIONS(7791), 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_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -474237,7 +494159,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, @@ -474252,66 +494173,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [48297] = 7, + anon_sym_GT2, + [47074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1870), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9856), 19, + ACTIONS(7667), 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___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(9854), 34, + ACTIONS(7669), 44, 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_SEMI, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, @@ -474320,64 +494234,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [48370] = 7, + [47139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1870), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9860), 19, + ACTIONS(7671), 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___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(9858), 34, + ACTIONS(7673), 44, 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_SEMI, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, @@ -474386,19 +494296,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [48443] = 7, + [47204] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, + ACTIONS(9304), 1, anon_sym_LPAREN2, - ACTIONS(9836), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - STATE(1870), 1, + STATE(1957), 1, sym_parameter_list, - STATE(3573), 1, + STATE(3611), 1, sym__function_declarator_seq, - ACTIONS(9864), 19, + ACTIONS(10210), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -474412,22 +494323,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9862), 34, + ACTIONS(10208), 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___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -474450,147 +494363,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [48516] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(9711), 1, - anon_sym_virtual, - ACTIONS(10133), 1, - anon_sym_SEMI, - STATE(4644), 1, - sym_alignas_qualifier, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(9709), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - STATE(3861), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(7874), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(7870), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(9707), 13, - anon_sym_AMP, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [48601] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7283), 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___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7285), 44, - 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___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [48666] = 3, + anon_sym_COLON_RBRACK, + [47277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 13, + ACTIONS(7731), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -474604,7 +494381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7289), 44, + ACTIONS(7733), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -474649,10 +494426,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [48731] = 3, + [47342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7291), 13, + ACTIONS(7651), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -474666,7 +494443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7293), 44, + ACTIONS(7653), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -474711,175 +494488,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [48796] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(10135), 1, - anon_sym_SEMI, - STATE(4569), 1, - sym_field_declaration_list, - STATE(4673), 1, - sym_attribute_specifier, - STATE(9463), 1, - sym_virtual_specifier, - STATE(10317), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6828), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(6826), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [48879] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(10137), 1, - anon_sym_SEMI, - STATE(4569), 1, - sym_field_declaration_list, - STATE(4673), 1, - sym_attribute_specifier, - STATE(9463), 1, - sym_virtual_specifier, - STATE(10317), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6828), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(6826), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [48962] = 13, + [47407] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9711), 1, + ACTIONS(10038), 1, anon_sym_virtual, - ACTIONS(10139), 1, + ACTIONS(10493), 1, anon_sym_SEMI, - STATE(4644), 1, + STATE(4722), 1, sym_alignas_qualifier, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(9709), 6, + ACTIONS(10036), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - STATE(3861), 7, + STATE(3979), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -474887,7 +494522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(7874), 9, + ACTIONS(8234), 9, anon_sym_extern, anon_sym_static, anon_sym_register, @@ -474897,7 +494532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(7870), 13, + ACTIONS(8230), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -474911,115 +494546,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(9707), 13, - anon_sym_AMP, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [49047] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6351), 1, - anon_sym_requires, - ACTIONS(6349), 2, - anon_sym_final, - anon_sym_override, - STATE(4611), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5008), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8559), 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(8561), 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_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_DOT_STAR, - anon_sym_DASH_GT, - [49120] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6748), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - STATE(1956), 1, - sym_template_argument_list, - ACTIONS(6751), 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK_COLON, - ACTIONS(6746), 44, + ACTIONS(10034), 13, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -475028,38 +494556,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___thiscall, anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - [49191] = 3, + [47492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 13, + ACTIONS(7659), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -475073,7 +494577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7301), 44, + ACTIONS(7661), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -475118,131 +494622,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [49256] = 12, + [47557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(10141), 1, - anon_sym_SEMI, - STATE(4569), 1, - sym_field_declaration_list, - STATE(4673), 1, - sym_attribute_specifier, - STATE(9463), 1, - sym_virtual_specifier, - STATE(10317), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6828), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(6826), 39, + ACTIONS(7223), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [49339] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(10143), 1, - anon_sym_SEMI, - STATE(4569), 1, - sym_field_declaration_list, - STATE(4673), 1, - sym_attribute_specifier, - STATE(9463), 1, - sym_virtual_specifier, - STATE(10317), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym___attribute, - ACTIONS(6828), 7, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7225), 44, + 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, - anon_sym_LBRACK_COLON, - ACTIONS(6826), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -475256,25 +494668,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [49422] = 7, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [47622] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1957), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10186), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10184), 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_RBRACK_RBRACK, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [47695] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6386), 1, + ACTIONS(6700), 1, anon_sym_requires, - ACTIONS(6384), 2, + ACTIONS(6694), 2, anon_sym_final, anon_sym_override, - STATE(4532), 2, + STATE(4705), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5014), 2, + STATE(5047), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8541), 20, + ACTIONS(7968), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -475295,7 +494785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8543), 30, + ACTIONS(7966), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -475326,76 +494816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [49495] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10145), 1, - anon_sym_LBRACE, - STATE(4620), 1, - sym_enumerator_list, - STATE(4810), 1, - sym_attribute_specifier, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7013), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7011), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [49568] = 3, + [47768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 13, + ACTIONS(7767), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -475409,7 +494833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7289), 44, + ACTIONS(7769), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -475454,42 +494878,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [49633] = 13, + [47833] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(9711), 1, - anon_sym_virtual, - ACTIONS(10147), 1, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(10495), 1, anon_sym_SEMI, - STATE(4644), 1, - sym_alignas_qualifier, - ACTIONS(7876), 2, + STATE(4730), 1, + sym_field_declaration_list, + STATE(4978), 1, + sym_attribute_specifier, + STATE(9508), 1, + sym_virtual_specifier, + STATE(10399), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(9709), 6, + ACTIONS(7237), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - STATE(3861), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(7874), 9, + ACTIONS(7235), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -475498,8 +494931,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(7870), 13, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -475512,106 +494943,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(9707), 13, - anon_sym_AMP, - 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_alignas, + anon_sym__Alignas, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [49718] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7303), 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___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7305), 44, - 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___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [49783] = 12, + [47916] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10149), 1, + ACTIONS(10497), 1, anon_sym_SEMI, - STATE(4569), 1, + STATE(4730), 1, sym_field_declaration_list, - STATE(4673), 1, + STATE(4978), 1, sym_attribute_specifier, - STATE(9463), 1, + STATE(9508), 1, sym_virtual_specifier, - STATE(10317), 1, + STATE(10399), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6828), 7, + ACTIONS(7237), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -475619,7 +494980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(6826), 39, + ACTIONS(7235), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -475659,30 +495020,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [49866] = 12, + [47999] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10151), 1, + ACTIONS(10499), 1, anon_sym_SEMI, - STATE(4569), 1, + STATE(4730), 1, sym_field_declaration_list, - STATE(4673), 1, + STATE(4978), 1, sym_attribute_specifier, - STATE(9463), 1, + STATE(9508), 1, sym_virtual_specifier, - STATE(10317), 1, + STATE(10399), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6828), 7, + ACTIONS(7237), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -475690,7 +495051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(6826), 39, + ACTIONS(7235), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -475730,18 +495091,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [49949] = 7, + [48082] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, + ACTIONS(9304), 1, anon_sym_LPAREN2, - ACTIONS(9836), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - STATE(1847), 1, + STATE(1957), 1, sym_parameter_list, - STATE(3573), 1, + STATE(3611), 1, sym__function_declarator_seq, - ACTIONS(9840), 19, + ACTIONS(10190), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -475761,7 +495122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9838), 34, + ACTIONS(10188), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -475796,18 +495157,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [50022] = 7, + [48155] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, + ACTIONS(9304), 1, anon_sym_LPAREN2, - ACTIONS(9836), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - STATE(1847), 1, + STATE(1957), 1, sym_parameter_list, - STATE(3573), 1, + STATE(3611), 1, sym__function_declarator_seq, - ACTIONS(9844), 19, + ACTIONS(10194), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -475827,7 +495188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9842), 34, + ACTIONS(10192), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -475862,103 +495223,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [50095] = 5, + [48228] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6286), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - STATE(4365), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8512), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(8514), 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [50164] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7195), 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, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(10038), 1, + anon_sym_virtual, + ACTIONS(10501), 1, + anon_sym_SEMI, + STATE(4722), 1, + sym_alignas_qualifier, + ACTIONS(8236), 2, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7197), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10036), 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_COLON_COLON, + anon_sym_LBRACK_COLON, + STATE(3979), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(8234), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(8230), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -475970,33 +495281,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [50229] = 5, + ACTIONS(10034), 13, + anon_sym_AMP, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [48313] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10153), 1, - anon_sym_LBRACK_LBRACK, - STATE(4365), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2101), 20, + ACTIONS(6700), 1, + anon_sym_requires, + ACTIONS(6694), 2, + anon_sym_final, + anon_sym_override, + STATE(4705), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5066), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -476006,27 +495319,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, - anon_sym_DASH_GT, - ACTIONS(8700), 34, + ACTIONS(8422), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -476034,7 +495346,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, @@ -476048,76 +495359,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [50298] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8637), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym___asm, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8639), 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___attribute__, - 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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [50363] = 3, + anon_sym_GT2, + [48386] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8641), 19, + ACTIONS(10503), 1, + anon_sym_LPAREN2, + ACTIONS(9027), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -476137,11 +495386,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8643), 38, + ACTIONS(9029), 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, @@ -476176,95 +495424,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [50428] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6272), 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_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6270), 45, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [50493] = 13, + [48453] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9711), 1, + ACTIONS(10038), 1, anon_sym_virtual, - ACTIONS(10156), 1, + ACTIONS(10505), 1, anon_sym_SEMI, - STATE(4644), 1, + STATE(4722), 1, sym_alignas_qualifier, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(9709), 6, + ACTIONS(10036), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - STATE(3861), 7, + STATE(3979), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -476272,7 +495458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(7874), 9, + ACTIONS(8234), 9, anon_sym_extern, anon_sym_static, anon_sym_register, @@ -476282,7 +495468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(7870), 13, + ACTIONS(8230), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -476296,7 +495482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(9707), 13, + ACTIONS(10034), 13, anon_sym_AMP, anon_sym___based, anon_sym___cdecl, @@ -476310,95 +495496,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [50578] = 12, + [48538] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(10158), 1, - anon_sym_SEMI, - STATE(4569), 1, - sym_field_declaration_list, - STATE(4673), 1, - sym_attribute_specifier, - STATE(9463), 1, - sym_virtual_specifier, - STATE(10317), 1, - sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(6700), 1, + anon_sym_requires, + ACTIONS(6694), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6828), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(6826), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [50661] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7862), 1, - anon_sym___attribute__, - ACTIONS(7864), 1, - anon_sym___attribute, - ACTIONS(8096), 1, - anon_sym_LBRACE, - ACTIONS(10160), 1, - anon_sym_COLON, - STATE(2582), 1, - sym__enum_base_clause, - STATE(2653), 1, - sym_enumerator_list, - STATE(3010), 1, - sym_attribute_specifier, - ACTIONS(7651), 20, + STATE(4705), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5071), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -476419,7 +495531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7653), 30, + ACTIONS(8907), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -476450,204 +495562,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [50740] = 7, + [48611] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6861), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6859), 2, + ACTIONS(8265), 1, anon_sym___attribute__, + ACTIONS(8267), 1, anon_sym___attribute, - STATE(2436), 2, + ACTIONS(8472), 1, + anon_sym_LBRACE, + ACTIONS(10507), 1, + anon_sym_COLON, + STATE(2728), 1, + sym__enum_base_clause, + STATE(2886), 1, + sym_enumerator_list, + STATE(3217), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4589), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8512), 22, - aux_sym_preproc_elif_token1, + ACTIONS(8000), 20, anon_sym_DASH, 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_LBRACK, - 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_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8514), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [50813] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7205), 13, - 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___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7207), 44, + ACTIONS(8002), 30, 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___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_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, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [50878] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6861), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6859), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(2436), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8479), 22, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - 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_LBRACK, - 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_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8481), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [50951] = 3, + [48690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7209), 13, + ACTIONS(7717), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -476661,7 +495648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7211), 44, + ACTIONS(7719), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -476706,10 +495693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [51016] = 3, + [48755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 13, + ACTIONS(7739), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -476723,7 +495710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7237), 44, + ACTIONS(7741), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -476768,21 +495755,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [51081] = 7, + [48820] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6386), 1, + ACTIONS(6700), 1, anon_sym_requires, - ACTIONS(6384), 2, + ACTIONS(6694), 2, anon_sym_final, anon_sym_override, - STATE(4532), 2, + STATE(4705), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5135), 2, + STATE(5074), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8559), 20, + ACTIONS(8913), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -476803,7 +495790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8561), 30, + ACTIONS(8915), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -476834,96 +495821,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [51154] = 7, + [48893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6386), 1, - anon_sym_requires, - ACTIONS(6384), 2, - anon_sym_final, - anon_sym_override, - STATE(4532), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4984), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 20, + ACTIONS(7743), 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___attribute, + anon_sym_const, anon_sym_DOT, - ACTIONS(7544), 30, + ACTIONS(7745), 44, 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___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [51227] = 12, + anon_sym_requires, + [48958] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10162), 1, + ACTIONS(10509), 1, anon_sym_SEMI, - STATE(4569), 1, + STATE(4730), 1, sym_field_declaration_list, - STATE(4673), 1, + STATE(4978), 1, sym_attribute_specifier, - STATE(9463), 1, + STATE(9508), 1, sym_virtual_specifier, - STATE(10317), 1, + STATE(10399), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6828), 7, + ACTIONS(7237), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -476931,7 +495914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(6826), 39, + ACTIONS(7235), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -476971,81 +495954,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [51310] = 7, + [49041] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(10511), 1, + anon_sym_SEMI, + STATE(4730), 1, + sym_field_declaration_list, + STATE(4978), 1, + sym_attribute_specifier, + STATE(9508), 1, + sym_virtual_specifier, + STATE(10399), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7237), 7, anon_sym_LPAREN2, - ACTIONS(9836), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(7235), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - STATE(1847), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9852), 19, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [49124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7751), 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_COLON, - anon_sym_EQ, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7753), 44, + 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___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [49189] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7775), 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___attribute, + anon_sym_const, anon_sym_DOT, - ACTIONS(9850), 34, + ACTIONS(7777), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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_RBRACK_RBRACK, - 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_LT, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, - anon_sym_COLON_RBRACK, - [51383] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [49254] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6286), 1, + ACTIONS(10513), 1, anon_sym_LBRACK_LBRACK, - STATE(4365), 2, + STATE(4453), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8725), 20, + ACTIONS(2461), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -477066,7 +496178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8727), 34, + ACTIONS(9075), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -477101,118 +496213,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [51452] = 7, + [49323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, + ACTIONS(10518), 26, anon_sym_LPAREN2, - ACTIONS(9836), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_COLON_COLON, + 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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(10516), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, anon_sym_LBRACK, - STATE(1847), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9856), 19, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_typename, + anon_sym_asm, + 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, + [49388] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7569), 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_COLON, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym___attribute, + anon_sym_const, anon_sym_DOT, - ACTIONS(9854), 34, + ACTIONS(7571), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, - anon_sym_COLON_RBRACK, - [51525] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [49453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8551), 19, + ACTIONS(7755), 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___attribute, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym___asm, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8553), 38, + ACTIONS(7757), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -477222,59 +496393,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [51590] = 3, + [49518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8555), 19, + ACTIONS(7759), 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___attribute, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym___asm, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8557), 38, + ACTIONS(7761), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -477284,17 +496455,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [51655] = 3, + [49583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7219), 13, + ACTIONS(7763), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -477308,7 +496478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7221), 44, + ACTIONS(7765), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -477353,184 +496523,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [51720] = 12, + [49648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(10164), 1, - anon_sym_SEMI, - STATE(4569), 1, - sym_field_declaration_list, - STATE(4673), 1, - sym_attribute_specifier, - STATE(9463), 1, - sym_virtual_specifier, - STATE(10317), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6828), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(6826), 39, + ACTIONS(7585), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [51803] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(10166), 1, - anon_sym_SEMI, - STATE(4569), 1, - sym_field_declaration_list, - STATE(4673), 1, - sym_attribute_specifier, - STATE(9463), 1, - sym_virtual_specifier, - STATE(10317), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym___attribute, - ACTIONS(6828), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(6826), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [51886] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6244), 12, + anon_sym_DOT, + ACTIONS(7587), 44, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, 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(6242), 45, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -477544,23 +496569,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, + 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, anon_sym_final, anon_sym_override, - anon_sym_operator, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [51951] = 3, + [49713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6248), 12, + ACTIONS(6634), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -477573,7 +496601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6246), 45, + ACTIONS(6632), 45, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -477619,42 +496647,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [52016] = 3, + [49778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6252), 12, + ACTIONS(7595), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7597), 44, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, 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(6250), 45, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -477668,236 +496693,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [52081] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10095), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9282), 22, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_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, - sym_identifier, - ACTIONS(9284), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_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, - [52162] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10093), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10095), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9282), 20, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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, - sym_identifier, - ACTIONS(9284), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_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, - [52245] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10093), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10095), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9282), 18, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - 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, - sym_identifier, - ACTIONS(9284), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_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, - [52330] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [49843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7223), 13, + ACTIONS(7607), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -477911,7 +496726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7225), 44, + ACTIONS(7609), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -477956,10 +496771,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [52395] = 3, + [49908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7279), 13, + ACTIONS(7623), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -477973,7 +496788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7281), 44, + ACTIONS(7625), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -478018,10 +496833,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [52460] = 3, + [49973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 13, + ACTIONS(7779), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -478035,7 +496850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7229), 44, + ACTIONS(7781), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -478080,18 +496895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [52525] = 7, + [50038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1847), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9848), 19, + ACTIONS(9007), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -478105,24 +496912,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - ACTIONS(9846), 34, + anon_sym_DASH_GT, + ACTIONS(9009), 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -478134,22 +496941,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_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [52598] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [50103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 13, + ACTIONS(7595), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -478163,7 +496974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7335), 44, + ACTIONS(7597), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -478208,10 +497019,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [52663] = 3, + [50168] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8324), 1, + anon_sym_requires, + ACTIONS(8321), 2, + anon_sym_final, + anon_sym_override, + STATE(4705), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5258), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7791), 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_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + anon_sym_GT2, + [50241] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8435), 1, + anon_sym_requires, + ACTIONS(8432), 2, + anon_sym_final, + anon_sym_override, + STATE(4705), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5047), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7966), 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_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + anon_sym_GT2, + [50314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7231), 13, + ACTIONS(7565), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -478225,7 +497168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7233), 44, + ACTIONS(7567), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -478270,39 +497213,329 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [52728] = 3, + [50379] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7421), 13, + ACTIONS(8989), 1, + anon_sym_requires, + ACTIONS(8986), 2, + anon_sym_final, + anon_sym_override, + STATE(4705), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5066), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8422), 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_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + anon_sym_GT2, + [50452] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10400), 1, + anon_sym_requires, + ACTIONS(10397), 2, + anon_sym_final, + anon_sym_override, + STATE(4705), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5071), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7423), 44, + ACTIONS(8907), 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_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + anon_sym_GT2, + [50525] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10523), 1, + anon_sym_requires, + ACTIONS(10520), 2, + anon_sym_final, + anon_sym_override, + STATE(4705), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5074), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8913), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8915), 30, + 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_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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [50598] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(10526), 1, + anon_sym_SEMI, + STATE(4730), 1, + sym_field_declaration_list, + STATE(4978), 1, + sym_attribute_specifier, + STATE(9508), 1, + sym_virtual_specifier, + STATE(10399), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7237), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(7235), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [50681] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(10528), 1, + anon_sym_SEMI, + STATE(4730), 1, + sym_field_declaration_list, + STATE(4978), 1, + sym_attribute_specifier, + STATE(9508), 1, + sym_virtual_specifier, + STATE(10399), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7237), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(7235), 39, + anon_sym_AMP, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -478316,158 +497549,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [52793] = 3, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [50764] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7191), 13, + ACTIONS(8366), 1, + anon_sym_requires, + ACTIONS(8363), 2, + anon_sym_final, + anon_sym_override, + STATE(4653), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5110), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 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___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7193), 44, + ACTIONS(7791), 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_EQ, 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + 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_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [52858] = 3, + [50837] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6798), 13, + ACTIONS(8446), 1, + anon_sym_requires, + ACTIONS(8443), 2, + anon_sym_final, + anon_sym_override, + STATE(4653), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5121), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 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___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6800), 44, + ACTIONS(7966), 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_EQ, 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + 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_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [52923] = 7, + [50910] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1847), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9834), 19, + ACTIONS(8931), 1, + anon_sym_requires, + ACTIONS(8928), 2, + anon_sym_final, + anon_sym_override, + STATE(4653), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5126), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -478481,24 +497713,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9832), 34, + ACTIONS(8422), 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -478521,59 +497751,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [52996] = 3, + [50983] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7223), 13, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1976), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10206), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7225), 44, + ACTIONS(10204), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_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, @@ -478582,12 +497816,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [53061] = 3, + [51056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8579), 19, + ACTIONS(8938), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -478607,7 +497840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8581), 38, + ACTIONS(8940), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -478646,39 +497879,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [53126] = 3, + [51121] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7223), 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, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7225), 44, - anon_sym_DOT_DOT_DOT, + STATE(4318), 1, + sym_template_argument_list, + ACTIONS(5657), 10, 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(7371), 44, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, + anon_sym_COLON, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -478692,227 +497938,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [53191] = 3, + anon_sym_template, + anon_sym_operator, + [51192] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7337), 13, + ACTIONS(10533), 1, + anon_sym_requires, + ACTIONS(10530), 2, + anon_sym_final, + anon_sym_override, + STATE(4653), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5129), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8913), 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___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7339), 44, + ACTIONS(8915), 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_EQ, 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + 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_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [53256] = 3, + [51265] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7325), 13, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1957), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10198), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7327), 44, + ACTIONS(10196), 34, 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___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [53321] = 7, + anon_sym_COLON_RBRACK, + [51338] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7957), 1, - anon_sym_requires, - ACTIONS(7954), 2, - anon_sym_final, - anon_sym_override, - STATE(4532), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4984), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 20, + ACTIONS(7180), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7178), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(2548), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4649), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8833), 22, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_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_LBRACK, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7544), 30, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8835), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [53394] = 7, + anon_sym_COLON_RBRACK, + [51411] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8058), 1, - anon_sym_requires, - ACTIONS(8055), 2, - anon_sym_final, - anon_sym_override, - STATE(4532), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5047), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 20, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1957), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10202), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -478922,26 +498163,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_COLON, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7627), 30, + ACTIONS(10200), 34, 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_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -478949,6 +498192,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, @@ -478963,27 +498207,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [53467] = 3, + anon_sym_COLON_RBRACK, + [51484] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7329), 13, + ACTIONS(7180), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7178), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(2548), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4648), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8837), 22, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, 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___attribute, - anon_sym_const, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7331), 44, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8839), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -478992,55 +498261,23 @@ 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___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [53532] = 7, + anon_sym_COLON_RBRACK, + [51557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8648), 1, - anon_sym_requires, - ACTIONS(8645), 2, - anon_sym_final, - anon_sym_override, - STATE(4532), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5023), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 20, + ACTIONS(8979), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -479050,26 +498287,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___attribute, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - ACTIONS(8089), 30, + anon_sym_DASH_GT, + ACTIONS(8981), 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_LBRACK, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -479077,39 +498316,44 @@ 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_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [53605] = 10, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [51622] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8003), 1, + ACTIONS(8293), 1, anon_sym___attribute__, - ACTIONS(8005), 1, + ACTIONS(8295), 1, anon_sym___attribute, - ACTIONS(8100), 1, + ACTIONS(8476), 1, anon_sym_LBRACE, - ACTIONS(10069), 1, + ACTIONS(10536), 1, anon_sym_COLON, - STATE(2583), 1, + STATE(2665), 1, sym__enum_base_clause, - STATE(2663), 1, + STATE(2891), 1, sym_enumerator_list, - STATE(3026), 1, + STATE(3104), 1, sym_attribute_specifier, - ACTIONS(7600), 18, + ACTIONS(8000), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -479128,7 +498372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7602), 32, + ACTIONS(8002), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -479161,21 +498405,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [53684] = 7, + [51701] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10048), 1, - anon_sym_requires, - ACTIONS(10045), 2, - anon_sym_final, - anon_sym_override, - STATE(4532), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5014), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 20, + ACTIONS(6650), 1, + anon_sym_LBRACK_LBRACK, + STATE(4453), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8833), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -479185,26 +498423,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_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8543), 30, + anon_sym_DASH_GT, + ACTIONS(8835), 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_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -479212,6 +498451,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, @@ -479225,60 +498465,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [53757] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [51770] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6790), 13, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1976), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10210), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6792), 44, + ACTIONS(10208), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_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, @@ -479287,21 +498534,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [53822] = 7, + [51843] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1841), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9834), 26, - aux_sym_preproc_elif_token1, + ACTIONS(6650), 1, + anon_sym_LBRACK_LBRACK, + STATE(4453), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8837), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -479315,25 +498557,18 @@ 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_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, - ACTIONS(9832), 27, + anon_sym_DASH_GT, + ACTIONS(8839), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -479350,61 +498585,93 @@ 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, - [53895] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [51912] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9836), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(1841), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9840), 26, - aux_sym_preproc_elif_token1, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10445), 1, + anon_sym_AMP_AMP, + ACTIONS(10457), 1, + anon_sym_GT_EQ, + ACTIONS(10461), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10463), 1, + anon_sym_or, + ACTIONS(10465), 1, + anon_sym_and, + ACTIONS(10467), 1, + anon_sym_not_eq, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10439), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10447), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(10449), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(10451), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10459), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10441), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10455), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10538), 6, + aux_sym_preproc_elif_token1, 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_identifier, - ACTIONS(9838), 27, + ACTIONS(10540), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_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, @@ -479416,61 +498683,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [52021] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10445), 1, + anon_sym_AMP_AMP, + ACTIONS(10457), 1, + anon_sym_GT_EQ, + ACTIONS(10461), 1, anon_sym_LT_EQ_GT, + ACTIONS(10463), 1, + anon_sym_or, + ACTIONS(10465), 1, + anon_sym_and, + ACTIONS(10467), 1, + anon_sym_not_eq, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [53968] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1841), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9844), 26, - aux_sym_preproc_elif_token1, + ACTIONS(10439), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10447), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(10449), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(10451), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10459), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10441), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10455), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10542), 6, + aux_sym_preproc_elif_token1, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + sym_identifier, + ACTIONS(10544), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [52130] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10445), 1, + anon_sym_AMP_AMP, + ACTIONS(10457), 1, + anon_sym_GT_EQ, + ACTIONS(10461), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10463), 1, anon_sym_or, + ACTIONS(10465), 1, anon_sym_and, + ACTIONS(10467), 1, + anon_sym_not_eq, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10439), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10447), 2, + anon_sym_PIPE, anon_sym_bitor, + ACTIONS(10449), 2, + anon_sym_CARET, anon_sym_xor, + ACTIONS(10451), 2, + anon_sym_AMP, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + ACTIONS(10453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10459), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10441), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10455), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9599), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, sym_identifier, - ACTIONS(9842), 27, + ACTIONS(9597), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_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, @@ -479482,26 +498851,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [52239] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7158), 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___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7160), 44, + 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___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, - [54041] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [52304] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(10546), 1, + anon_sym_SEMI, + STATE(4730), 1, + sym_field_declaration_list, + STATE(4978), 1, + sym_attribute_specifier, + STATE(9508), 1, + sym_virtual_specifier, + STATE(10399), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7237), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(7235), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [52387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10171), 1, - anon_sym_requires, - ACTIONS(10168), 2, - anon_sym_final, - anon_sym_override, - STATE(4532), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5135), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8559), 20, + ACTIONS(8889), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -479511,26 +498997,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___attribute, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - ACTIONS(8561), 30, + anon_sym_DASH_GT, + ACTIONS(8891), 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_LBRACK, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -479538,34 +499026,30 @@ 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_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [54114] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [52452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1841), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9852), 26, - aux_sym_preproc_elif_token1, + ACTIONS(8897), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -479579,30 +499063,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_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___asm, anon_sym_DOT, - sym_identifier, - ACTIONS(9850), 27, + anon_sym_DASH_GT, + ACTIONS(8899), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -479615,28 +499093,48 @@ 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, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [54187] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [52517] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9836), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(1841), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9856), 26, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9646), 1, + anon_sym_DOT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10441), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9707), 22, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -479655,9 +499153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(9854), 27, + ACTIONS(9709), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -479681,28 +499178,34 @@ static const uint16_t ts_small_parse_table[] = { 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, - [54260] = 7, + [52598] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9836), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(1841), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9860), 26, - aux_sym_preproc_elif_token1, + ACTIONS(9646), 1, + anon_sym_DOT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10439), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10441), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9707), 20, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -479721,9 +499224,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(9858), 27, + ACTIONS(9709), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -479747,36 +499249,43 @@ static const uint16_t ts_small_parse_table[] = { 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, - [54333] = 7, + [52681] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9836), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(1841), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9864), 26, - aux_sym_preproc_elif_token1, + ACTIONS(9646), 1, + anon_sym_DOT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10439), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10459), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10441), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9707), 18, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_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, @@ -479787,9 +499296,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(9862), 27, + ACTIONS(9709), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -479813,25 +499321,303 @@ static const uint16_t ts_small_parse_table[] = { 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, - [54406] = 7, + [52766] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6386), 1, - anon_sym_requires, - ACTIONS(6384), 2, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(10548), 1, + anon_sym_SEMI, + STATE(4730), 1, + sym_field_declaration_list, + STATE(4978), 1, + sym_attribute_specifier, + STATE(9508), 1, + sym_virtual_specifier, + STATE(10399), 1, + sym_base_class_clause, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(4532), 2, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7237), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(7235), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [52849] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(10038), 1, + anon_sym_virtual, + ACTIONS(10550), 1, + anon_sym_SEMI, + STATE(4722), 1, + sym_alignas_qualifier, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10036), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + STATE(3979), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(8234), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(8230), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(10034), 13, + anon_sym_AMP, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [52934] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(10552), 1, + anon_sym_SEMI, + STATE(4730), 1, + sym_field_declaration_list, + STATE(4978), 1, + sym_attribute_specifier, + STATE(9508), 1, sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5047), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 20, + STATE(10399), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7237), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(7235), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [53017] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7087), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, + anon_sym_LT, + STATE(2053), 1, + sym_template_argument_list, + ACTIONS(7090), 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(7085), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [53088] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8293), 1, + anon_sym___attribute__, + ACTIONS(8295), 1, + anon_sym___attribute, + ACTIONS(8476), 1, + anon_sym_LBRACE, + ACTIONS(10536), 1, + anon_sym_COLON, + STATE(2680), 1, + sym__enum_base_clause, + STATE(2748), 1, + sym_enumerator_list, + STATE(3130), 1, + sym_attribute_specifier, + ACTIONS(8006), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -479841,18 +499627,16 @@ 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(7627), 30, + ACTIONS(8008), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -479860,7 +499644,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -479868,6 +499654,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, @@ -479882,97 +499669,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [54479] = 10, + [53167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7862), 1, - anon_sym___attribute__, - ACTIONS(7864), 1, - anon_sym___attribute, - ACTIONS(8096), 1, - anon_sym_LBRACE, - ACTIONS(10160), 1, - anon_sym_COLON, - STATE(2562), 1, - sym__enum_base_clause, - STATE(2717), 1, - sym_enumerator_list, - STATE(3091), 1, - sym_attribute_specifier, - ACTIONS(7600), 20, + ACTIONS(7735), 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___attribute, + anon_sym_const, anon_sym_DOT, - ACTIONS(7602), 30, + ACTIONS(7737), 44, 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___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [54558] = 6, + anon_sym_requires, + [53232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(6614), 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_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - STATE(4203), 1, - sym_template_argument_list, - ACTIONS(5272), 10, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6612), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [53297] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6626), 12, 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_LBRACK_COLON, - ACTIONS(7031), 44, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6624), 45, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -479982,6 +499819,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym___declspec, anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [53362] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10554), 1, + anon_sym_LBRACE, + STATE(4676), 1, + sym_enumerator_list, + STATE(4799), 1, + sym_attribute_specifier, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7389), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7387), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, @@ -480013,22 +499919,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - [54629] = 7, + [53435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, + ACTIONS(6630), 12, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9836), 1, + 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(6628), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - STATE(1847), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9860), 19, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [53500] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8265), 1, + anon_sym___attribute__, + ACTIONS(8267), 1, + anon_sym___attribute, + ACTIONS(8472), 1, + anon_sym_LBRACE, + ACTIONS(10507), 1, + anon_sym_COLON, + STATE(2667), 1, + sym__enum_base_clause, + STATE(2774), 1, + sym_enumerator_list, + STATE(3147), 1, + sym_attribute_specifier, + ACTIONS(8006), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -480038,28 +500010,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_COLON, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9858), 34, + ACTIONS(8008), 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -480067,7 +500037,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, @@ -480082,75 +500051,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [54702] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7341), 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___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7343), 44, - 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___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [54767] = 4, + [53579] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10174), 1, - anon_sym_LPAREN2, - ACTIONS(8583), 19, + ACTIONS(6650), 1, + anon_sym_LBRACK_LBRACK, + STATE(4453), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9071), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -480164,23 +500074,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_LBRACK, anon_sym_EQ, - anon_sym___asm, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8585), 37, + ACTIONS(9073), 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___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -480192,26 +500102,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_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_final, anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [54834] = 3, + [53648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7345), 13, + ACTIONS(7627), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -480225,7 +500133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7347), 44, + ACTIONS(7629), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -480270,327 +500178,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [54899] = 25, + [53713] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10099), 1, - anon_sym_AMP_AMP, - ACTIONS(10111), 1, - anon_sym_GT_EQ, - ACTIONS(10115), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10117), 1, - anon_sym_or, - ACTIONS(10119), 1, - anon_sym_and, - ACTIONS(10121), 1, - anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10093), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10101), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(10103), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10105), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(10107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10095), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10109), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10176), 6, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(10178), 17, + ACTIONS(10554), 1, + anon_sym_LBRACE, + STATE(4674), 1, + sym_enumerator_list, + STATE(5003), 1, + sym_attribute_specifier, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7383), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [55008] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10099), 1, - anon_sym_AMP_AMP, - ACTIONS(10111), 1, - anon_sym_GT_EQ, - ACTIONS(10115), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10117), 1, - anon_sym_or, - ACTIONS(10119), 1, - anon_sym_and, - ACTIONS(10121), 1, - anon_sym_not_eq, - ACTIONS(10180), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10182), 1, - anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10093), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10101), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(10103), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10105), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(10107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10095), 3, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10109), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9436), 6, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(9438), 15, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [55121] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10099), 1, anon_sym_AMP_AMP, - ACTIONS(10111), 1, - anon_sym_GT_EQ, - ACTIONS(10115), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10119), 1, - anon_sym_and, - ACTIONS(10121), 1, - anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10093), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10101), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(10103), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10105), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(10107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10095), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10109), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9282), 7, - aux_sym_preproc_elif_token1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7381), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - ACTIONS(9284), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_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, - [55226] = 21, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [53786] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10111), 1, - anon_sym_GT_EQ, - ACTIONS(10115), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10121), 1, - anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10093), 2, + ACTIONS(6744), 1, + anon_sym_requires, + ACTIONS(6742), 2, + anon_sym_final, + anon_sym_override, + STATE(4653), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5110), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 18, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10101), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(10103), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10105), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(10107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10095), 3, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10109), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9282), 8, - aux_sym_preproc_elif_token1, + 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, - sym_identifier, - ACTIONS(9284), 19, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7791), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_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, @@ -480602,74 +500299,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [55327] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10111), 1, - anon_sym_GT_EQ, - ACTIONS(10115), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(10121), 1, + anon_sym_bitor, + anon_sym_bitand, anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10093), 2, + [53859] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1957), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10174), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10103), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10105), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(10107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10095), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10109), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9282), 10, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, - sym_identifier, - ACTIONS(9284), 19, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10172), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -480681,131 +500364,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [55426] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10111), 1, - anon_sym_GT_EQ, - ACTIONS(10115), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(10121), 1, + anon_sym_bitor, + anon_sym_bitand, anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10093), 2, + anon_sym_COLON_RBRACK, + [53932] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7643), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10105), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(10107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10095), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10109), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9282), 12, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - 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, - sym_identifier, - ACTIONS(9284), 19, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7645), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, 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, - [55523] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10111), 1, - anon_sym_GT_EQ, - ACTIONS(10115), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(10121), 1, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10093), 2, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [53997] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1946), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10186), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10095), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10109), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9282), 14, - aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_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, @@ -480815,8 +500473,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_xor, anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(9284), 19, + ACTIONS(10184), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -480825,6 +500485,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -480836,48 +500499,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [55618] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10111), 1, - anon_sym_GT_EQ, - ACTIONS(10115), 1, anon_sym_LT_EQ_GT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10093), 2, + [54070] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1946), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10190), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10095), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10109), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9282), 15, - aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_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, @@ -480888,8 +500540,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(9284), 21, + ACTIONS(10188), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -480900,6 +500553,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -480911,45 +500565,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [55709] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10115), 1, anon_sym_LT_EQ_GT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10093), 2, + [54143] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1946), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10194), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10095), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9282), 18, - aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_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, @@ -480960,8 +500606,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(9284), 22, + ACTIONS(10192), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -480984,79 +500631,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [55796] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10099), 1, - anon_sym_AMP_AMP, - ACTIONS(10111), 1, - anon_sym_GT_EQ, - ACTIONS(10115), 1, anon_sym_LT_EQ_GT, - ACTIONS(10117), 1, - anon_sym_or, - ACTIONS(10119), 1, - anon_sym_and, - ACTIONS(10121), 1, - anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10093), 2, + [54216] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1946), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10174), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10101), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(10103), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10105), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(10107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10095), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10109), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10184), 6, - aux_sym_preproc_elif_token1, + 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_identifier, - ACTIONS(10186), 17, + ACTIONS(10172), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_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, @@ -481068,165 +500697,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [55905] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10099), 1, - anon_sym_AMP_AMP, - ACTIONS(10111), 1, - anon_sym_GT_EQ, - ACTIONS(10115), 1, anon_sym_LT_EQ_GT, - ACTIONS(10117), 1, - anon_sym_or, - ACTIONS(10119), 1, - anon_sym_and, - ACTIONS(10121), 1, - anon_sym_not_eq, - ACTIONS(10180), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10182), 1, - anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10093), 2, + [54289] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1946), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10198), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10101), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(10103), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10105), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(10107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10095), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10109), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10188), 6, - aux_sym_preproc_elif_token1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - sym_identifier, - ACTIONS(10190), 15, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [56018] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10099), 1, - anon_sym_AMP_AMP, - ACTIONS(10111), 1, - anon_sym_GT_EQ, - ACTIONS(10115), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10117), 1, anon_sym_or, - ACTIONS(10119), 1, anon_sym_and, - ACTIONS(10121), 1, - anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10093), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10101), 2, - anon_sym_PIPE, anon_sym_bitor, - ACTIONS(10103), 2, - anon_sym_CARET, anon_sym_xor, - ACTIONS(10105), 2, - anon_sym_AMP, anon_sym_bitand, - ACTIONS(10107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10095), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10109), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10192), 6, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(10194), 17, + ACTIONS(10196), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_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, @@ -481238,82 +500763,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [56127] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10097), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10099), 1, - anon_sym_AMP_AMP, - ACTIONS(10111), 1, - anon_sym_GT_EQ, - ACTIONS(10115), 1, anon_sym_LT_EQ_GT, - ACTIONS(10117), 1, - anon_sym_or, - ACTIONS(10119), 1, - anon_sym_and, - ACTIONS(10121), 1, - anon_sym_not_eq, - ACTIONS(10180), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10182), 1, - anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10093), 2, + [54362] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1946), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10202), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10101), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(10103), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10105), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(10107), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10095), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10109), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10196), 6, - aux_sym_preproc_elif_token1, + 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_identifier, - ACTIONS(10198), 15, + ACTIONS(10200), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_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, @@ -481324,81 +500829,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [56240] = 7, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [54435] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10145), 1, - anon_sym_LBRACE, - STATE(4594), 1, - sym_enumerator_list, - STATE(4750), 1, - sym_attribute_specifier, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6987), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9304), 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, - anon_sym_LBRACK_COLON, - ACTIONS(6985), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + ACTIONS(10176), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [56313] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6330), 1, - anon_sym_LBRACK_LBRACK, - STATE(4485), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8725), 19, + STATE(1946), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10206), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -481412,22 +500860,30 @@ 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_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(8727), 34, + sym_identifier, + ACTIONS(10204), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -481439,108 +500895,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_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [56381] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7497), 1, - anon_sym___attribute__, - ACTIONS(7499), 1, - anon_sym___attribute, - ACTIONS(7501), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10200), 1, - anon_sym_DASH_GT, - ACTIONS(10206), 1, - anon_sym_requires, - STATE(6165), 1, - sym__function_attributes_end, - STATE(6236), 1, - sym_trailing_return_type, - STATE(8976), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10203), 2, - anon_sym_final, - anon_sym_override, - STATE(6071), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6313), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6389), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6524), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 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_LBRACK, - anon_sym_DOT, - ACTIONS(8089), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [56475] = 7, + [54508] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10209), 1, + ACTIONS(9304), 1, anon_sym_LPAREN2, - ACTIONS(10211), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - STATE(1867), 1, + STATE(1946), 1, sym_parameter_list, - STATE(4744), 1, + STATE(3611), 1, sym__function_declarator_seq, - ACTIONS(9834), 19, + ACTIONS(10210), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -481555,15 +500927,24 @@ 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(9832), 33, + sym_identifier, + ACTIONS(10208), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -481580,76 +500961,58 @@ 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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [56547] = 9, + anon_sym_DASH_GT, + [54581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_requires, - ACTIONS(8210), 1, - anon_sym_DASH_GT, - STATE(4551), 1, - sym_trailing_return_type, - ACTIONS(6453), 2, - anon_sym_final, - anon_sym_override, - STATE(4992), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5590), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 15, + ACTIONS(7747), 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___attribute, + anon_sym_const, anon_sym_DOT, - ACTIONS(7627), 32, + ACTIONS(7749), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -481660,38 +501023,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [56623] = 7, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [54646] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5282), 1, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(10038), 1, + anon_sym_virtual, + ACTIONS(10556), 1, + anon_sym_SEMI, + STATE(4722), 1, + sym_alignas_qualifier, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10036), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + STATE(3979), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(8234), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(8230), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(10034), 13, + anon_sym_AMP, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, anon_sym_decltype, - ACTIONS(7183), 1, + anon_sym_template, + anon_sym_operator, + [54731] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10213), 1, - sym_auto, - STATE(4817), 1, - sym_decltype_auto, - ACTIONS(6800), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10558), 1, + anon_sym_SEMI, + STATE(4730), 1, + sym_field_declaration_list, + STATE(4978), 1, + sym_attribute_specifier, + STATE(9508), 1, + sym_virtual_specifier, + STATE(10399), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7237), 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, - anon_sym_EQ, anon_sym_LBRACK_COLON, - ACTIONS(6798), 40, + ACTIONS(7235), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -481724,304 +501168,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, + anon_sym_decltype, anon_sym_template, anon_sym_operator, - [56695] = 7, + [54814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10209), 1, - anon_sym_LPAREN2, - ACTIONS(10211), 1, - anon_sym_LBRACK, - STATE(1867), 1, - sym_parameter_list, - STATE(4744), 1, - sym__function_declarator_seq, - ACTIONS(9840), 19, + ACTIONS(7561), 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, + anon_sym___attribute, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9838), 33, + ACTIONS(7563), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [56767] = 7, + [54879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10209), 1, - anon_sym_LPAREN2, - ACTIONS(10211), 1, - anon_sym_LBRACK, - STATE(1867), 1, - sym_parameter_list, - STATE(4744), 1, - sym__function_declarator_seq, - ACTIONS(9844), 19, + ACTIONS(7599), 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, + anon_sym___attribute, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9842), 33, + ACTIONS(7601), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [56839] = 7, + [54944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10209), 1, - anon_sym_LPAREN2, - ACTIONS(10211), 1, - anon_sym_LBRACK, - STATE(1867), 1, - sym_parameter_list, - STATE(4744), 1, - sym__function_declarator_seq, - ACTIONS(9848), 19, + ACTIONS(7603), 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, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9846), 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [56911] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(609), 1, - sym_compound_statement, - ACTIONS(2758), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(2768), 47, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [56979] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10215), 1, - anon_sym_LBRACE, - STATE(3179), 1, - sym_compound_statement, - ACTIONS(2758), 7, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7605), 44, + 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, - anon_sym_LBRACK_COLON, - ACTIONS(2768), 47, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -482035,28 +501341,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [57047] = 5, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [55009] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6305), 2, + ACTIONS(6744), 1, + anon_sym_requires, + ACTIONS(6742), 2, anon_sym_final, anon_sym_override, - STATE(4460), 2, + STATE(4653), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - ACTIONS(8774), 19, + STATE(5121), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -482075,11 +501390,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8776), 33, + ACTIONS(7966), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -482087,6 +501400,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -482108,16 +501422,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [57115] = 5, + anon_sym_DASH_GT, + [55082] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(10069), 1, anon_sym_LBRACE, - STATE(866), 1, - sym_compound_statement, - ACTIONS(2758), 7, + ACTIONS(10560), 1, + anon_sym_SEMI, + STATE(4730), 1, + sym_field_declaration_list, + STATE(4978), 1, + sym_attribute_specifier, + STATE(9508), 1, + sym_virtual_specifier, + STATE(10399), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7237), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -482125,19 +501454,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(2768), 47, + ACTIONS(7235), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -482161,37 +501490,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_explicit, anon_sym_template, anon_sym_operator, - [57183] = 9, + [55165] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6455), 1, + ACTIONS(6744), 1, anon_sym_requires, - ACTIONS(10217), 1, - anon_sym_DASH_GT, - STATE(4567), 1, - sym_trailing_return_type, - ACTIONS(6453), 2, + ACTIONS(6742), 2, anon_sym_final, anon_sym_override, - STATE(4992), 2, + STATE(4653), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5609), 2, + STATE(5126), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8541), 15, + ACTIONS(8424), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -482206,11 +501523,13 @@ 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(8543), 32, + ACTIONS(8422), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -482218,6 +501537,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -482229,29 +501549,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_or, - anon_sym_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, - [57259] = 7, + anon_sym_DASH_GT, + [55238] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10209), 1, - anon_sym_LPAREN2, - ACTIONS(10211), 1, - anon_sym_LBRACK, - STATE(1867), 1, - sym_parameter_list, - STATE(4744), 1, - sym__function_declarator_seq, - ACTIONS(9852), 19, + ACTIONS(6744), 1, + anon_sym_requires, + ACTIONS(6742), 2, + anon_sym_final, + anon_sym_override, + STATE(4653), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5128), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -482270,16 +501593,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9850), 33, + ACTIONS(8907), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -482301,96 +501625,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [57331] = 18, + anon_sym_DASH_GT, + [55311] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7441), 1, - anon_sym___attribute__, - ACTIONS(7443), 1, - anon_sym___attribute, - ACTIONS(7445), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10220), 1, - anon_sym_DASH_GT, - ACTIONS(10226), 1, + ACTIONS(6744), 1, anon_sym_requires, - STATE(6168), 1, - sym__function_attributes_end, - STATE(6221), 1, - sym_trailing_return_type, - STATE(8995), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10223), 2, + ACTIONS(6742), 2, anon_sym_final, anon_sym_override, - STATE(6065), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6276), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6331), 2, + STATE(4653), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6482), 2, + STATE(5129), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8087), 12, + ACTIONS(8913), 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_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(8089), 23, + ACTIONS(8915), 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_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_or, - anon_sym_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_GT2, - [57425] = 5, + anon_sym_DASH_GT, + [55384] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10229), 2, - anon_sym_final, - anon_sym_override, - STATE(4460), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(8755), 19, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1976), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10186), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -482404,23 +501717,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8757), 33, + ACTIONS(10184), 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_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -482442,109 +501754,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [57493] = 5, + [55457] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, - anon_sym_LBRACE, - STATE(513), 1, - sym_compound_statement, - ACTIONS(2758), 7, + ACTIONS(9304), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1957), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10206), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10204), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(2768), 47, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [55530] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7631), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [57561] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10232), 1, - anon_sym_LBRACE, - STATE(2700), 1, - sym_compound_statement, - ACTIONS(2758), 7, + anon_sym_DOT, + ACTIONS(7633), 44, + 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, - anon_sym_LBRACK_COLON, - ACTIONS(2768), 47, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -482558,58 +501870,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [57629] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7441), 1, - anon_sym___attribute__, - ACTIONS(7443), 1, - anon_sym___attribute, - ACTIONS(7445), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7460), 1, - anon_sym_requires, - ACTIONS(9621), 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_DOT_STAR, anon_sym_DASH_GT, - STATE(6163), 1, - sym__function_attributes_end, - STATE(6254), 1, - sym_trailing_return_type, - STATE(8995), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7454), 2, anon_sym_final, anon_sym_override, - STATE(6065), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6276), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6331), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6604), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 12, + anon_sym_GT2, + anon_sym_requires, + [55595] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7635), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -482620,9 +501900,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym___attribute, + anon_sym_const, anon_sym_DOT, - ACTIONS(7544), 23, + ACTIONS(7637), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -482634,6 +501915,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -482645,95 +501943,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_GT2, - [57723] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7441), 1, - anon_sym___attribute__, - ACTIONS(7443), 1, - anon_sym___attribute, - ACTIONS(7445), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7460), 1, - anon_sym_requires, - ACTIONS(9751), 1, anon_sym_DASH_GT, - STATE(6169), 1, - sym__function_attributes_end, - STATE(6263), 1, - sym_trailing_return_type, - STATE(8995), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7454), 2, anon_sym_final, anon_sym_override, - STATE(6065), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6276), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6331), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6467), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 12, + anon_sym_GT2, + anon_sym_requires, + [55660] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1976), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10190), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, 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___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7627), 23, + ACTIONS(10188), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_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_GT2, - [57817] = 7, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [55733] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10209), 1, + ACTIONS(9304), 1, anon_sym_LPAREN2, - ACTIONS(10211), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - STATE(1867), 1, + STATE(1976), 1, sym_parameter_list, - STATE(4744), 1, + STATE(3611), 1, sym__function_declarator_seq, - ACTIONS(9856), 19, + ACTIONS(10194), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -482747,21 +502039,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9854), 33, + ACTIONS(10192), 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___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -482783,35 +502076,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [57889] = 8, + [55806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6623), 1, - anon_sym_decltype, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(7183), 1, - anon_sym_LBRACE, - ACTIONS(10234), 1, - sym_auto, - STATE(3963), 1, - sym_decltype_auto, - ACTIONS(6798), 10, + ACTIONS(7561), 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___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(6800), 41, + ACTIONS(7563), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -482822,12 +502108,11 @@ 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___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -482853,46 +502138,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [57963] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7441), 1, - anon_sym___attribute__, - ACTIONS(7443), 1, - anon_sym___attribute, - ACTIONS(7445), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7460), 1, - anon_sym_requires, - ACTIONS(10220), 1, - anon_sym_DASH_GT, - STATE(6167), 1, - sym__function_attributes_end, - STATE(6265), 1, - sym_trailing_return_type, - STATE(8995), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7454), 2, anon_sym_final, anon_sym_override, - STATE(6065), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6276), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6331), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6482), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 12, + anon_sym_GT2, + anon_sym_requires, + [55871] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7561), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -482903,9 +502156,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym___attribute, + anon_sym_const, anon_sym_DOT, - ACTIONS(8089), 23, + ACTIONS(7563), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -482917,6 +502171,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -482928,53 +502199,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [58057] = 8, + anon_sym_requires, + [55936] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - STATE(3601), 1, - sym_template_argument_list, - STATE(5101), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9961), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7017), 7, - anon_sym_AMP, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(10038), 1, + anon_sym_virtual, + ACTIONS(10562), 1, + anon_sym_SEMI, + STATE(4722), 1, + sym_alignas_qualifier, + ACTIONS(8236), 2, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7019), 41, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10036), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + STATE(3979), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(8234), 9, anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, anon_sym_static, - anon_sym_EQ, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + ACTIONS(8230), 13, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -482986,22 +502262,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [58131] = 4, + ACTIONS(10034), 13, + anon_sym_AMP, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [56021] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10236), 1, - sym_literal_suffix, - ACTIONS(5260), 26, - aux_sym_preproc_elif_token1, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1976), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10174), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -483015,32 +502301,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, - anon_sym_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, - ACTIONS(5253), 29, + ACTIONS(10172), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_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___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -483052,84 +502328,98 @@ 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, - [58197] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [56094] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8551), 27, - aux_sym_preproc_elif_token1, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1976), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10198), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute, - anon_sym_COLON, - 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_asm, - anon_sym___asm__, - anon_sym___asm, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8553), 29, + ACTIONS(10196), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - anon_sym_COLON_RBRACK, - [58261] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [56167] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10209), 1, + ACTIONS(9304), 1, anon_sym_LPAREN2, - ACTIONS(10211), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - STATE(1867), 1, + STATE(1976), 1, sym_parameter_list, - STATE(4744), 1, + STATE(3611), 1, sym__function_declarator_seq, - ACTIONS(9860), 19, + ACTIONS(10202), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -483143,21 +502433,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9858), 33, + ACTIONS(10200), 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___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -483179,91 +502470,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [58333] = 18, + [56240] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(6861), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6919), 1, + ACTIONS(10406), 1, anon_sym_requires, - ACTIONS(10238), 1, - anon_sym___attribute__, - ACTIONS(10241), 1, - anon_sym___attribute, - ACTIONS(10244), 1, - anon_sym_DASH_GT, - STATE(5742), 1, - sym_trailing_return_type, - STATE(6054), 1, - sym__function_attributes_end, - STATE(8992), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(6913), 2, + ACTIONS(10403), 2, anon_sym_final, anon_sym_override, - STATE(4374), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4622), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4709), 2, + STATE(4653), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5364), 2, + STATE(5128), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8087), 10, + ACTIONS(8905), 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_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(8089), 25, + ACTIONS(8907), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + 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_STAR, - [58427] = 3, + anon_sym_DASH_GT, + [56313] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8637), 27, - aux_sym_preproc_elif_token1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7180), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7221), 1, + anon_sym_requires, + ACTIONS(10122), 1, + anon_sym___attribute__, + ACTIONS(10125), 1, + anon_sym___attribute, + ACTIONS(10128), 1, + anon_sym_DASH_GT, + STATE(5857), 1, + sym_trailing_return_type, + STATE(6192), 1, + sym__function_attributes_end, + STATE(9134), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7219), 2, + anon_sym_final, + anon_sym_override, + STATE(4485), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5532), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -483272,32 +502588,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8639), 29, + ACTIONS(7966), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -483310,22 +502605,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK_RBRACK, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [58491] = 4, + [56407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10236), 1, - sym_literal_suffix, - ACTIONS(5260), 25, + ACTIONS(10566), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -483351,7 +502645,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5253), 30, + sym_literal_suffix, + ACTIONS(10564), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -483382,79 +502677,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [58557] = 3, + [56471] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8641), 27, - aux_sym_preproc_elif_token1, + ACTIONS(10568), 1, + anon_sym_LPAREN2, + ACTIONS(10570), 1, + anon_sym_LBRACK, + STATE(1972), 1, + sym_parameter_list, + STATE(4999), 1, + sym__function_declarator_seq, + ACTIONS(10206), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, + 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_asm, - anon_sym___asm__, - anon_sym___asm, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8643), 29, + anon_sym_DASH_GT, + ACTIONS(10204), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK_RBRACK, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [58621] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [56543] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10209), 1, + ACTIONS(10568), 1, anon_sym_LPAREN2, - ACTIONS(10211), 1, + ACTIONS(10570), 1, anon_sym_LBRACK, - STATE(1867), 1, + STATE(1972), 1, sym_parameter_list, - STATE(4744), 1, + STATE(4999), 1, sym__function_declarator_seq, - ACTIONS(9864), 19, + ACTIONS(10210), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -483474,7 +502773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9862), 33, + ACTIONS(10208), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -483508,76 +502807,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [58693] = 8, + [56615] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5282), 1, - anon_sym_decltype, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(7183), 1, - anon_sym_LBRACE, - ACTIONS(10213), 1, - sym_auto, - STATE(4817), 1, - sym_decltype_auto, - ACTIONS(6800), 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, + ACTIONS(6723), 1, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_LBRACK_COLON, - ACTIONS(6798), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [58767] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10249), 26, + STATE(4559), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8837), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -483591,33 +502829,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_LBRACK, 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(10247), 30, + ACTIONS(8839), 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_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -483629,61 +502856,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_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [58831] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [56683] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(6802), 1, + ACTIONS(5655), 1, anon_sym_COLON_COLON, - ACTIONS(7399), 1, - anon_sym_LPAREN2, - STATE(3723), 1, - sym_argument_list, - STATE(5901), 1, - sym_initializer_list, - ACTIONS(6800), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(10320), 1, + anon_sym_LT, + STATE(3735), 1, + sym_template_argument_list, + ACTIONS(6565), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(6572), 46, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_TILDE, + anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_LBRACK_COLON, - ACTIONS(6798), 41, - anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LBRACK_LBRACK, 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_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -483697,19 +502923,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_auto, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [58905] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [56753] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6365), 1, + ACTIONS(6723), 1, anon_sym_LBRACK_LBRACK, - STATE(4497), 2, + STATE(4559), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8512), 21, + ACTIONS(9071), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -483719,19 +502952,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(8514), 32, + ACTIONS(9073), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -483739,6 +502970,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -483746,6 +502979,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, @@ -483762,48 +502996,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [58973] = 18, + [56821] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10572), 1, + anon_sym_LBRACE, + STATE(3463), 1, + sym_compound_statement, + ACTIONS(3118), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3128), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [56889] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7497), 1, + ACTIONS(7884), 1, anon_sym___attribute__, - ACTIONS(7499), 1, + ACTIONS(7886), 1, anon_sym___attribute, - ACTIONS(7501), 1, + ACTIONS(7888), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7598), 1, + ACTIONS(7903), 1, anon_sym_requires, - ACTIONS(9630), 1, + ACTIONS(10574), 1, anon_sym_DASH_GT, - STATE(6170), 1, + STATE(6267), 1, sym__function_attributes_end, - STATE(6194), 1, + STATE(6319), 1, sym_trailing_return_type, - STATE(8976), 1, + STATE(9133), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7596), 2, + ACTIONS(7897), 2, anon_sym_final, anon_sym_override, - STATE(6071), 2, + STATE(6193), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6313), 2, + STATE(6393), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6389), 2, + STATE(6457), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6558), 2, + STATE(6637), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7546), 10, + ACTIONS(8424), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -483814,7 +503110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7544), 25, + ACTIONS(8422), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -483840,213 +503136,294 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [59067] = 3, + [56983] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8555), 27, - aux_sym_preproc_elif_token1, + ACTIONS(10577), 1, + anon_sym_LBRACK_LBRACK, + STATE(4559), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2461), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + 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_asm, - anon_sym___asm__, - anon_sym___asm, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8557), 29, + ACTIONS(9075), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [59131] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(6861), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6919), 1, - anon_sym_requires, - ACTIONS(9633), 1, - anon_sym___attribute__, - ACTIONS(9636), 1, - anon_sym___attribute, - ACTIONS(9639), 1, - anon_sym_DASH_GT, - STATE(5718), 1, - sym_trailing_return_type, - STATE(6082), 1, - sym__function_attributes_end, - STATE(8992), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(6913), 2, anon_sym_final, anon_sym_override, - STATE(4374), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4622), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5258), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 10, + anon_sym_requires, + [57051] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10568), 1, + anon_sym_LPAREN2, + ACTIONS(10570), 1, + anon_sym_LBRACK, + STATE(1972), 1, + sym_parameter_list, + STATE(4999), 1, + sym__function_declarator_seq, + ACTIONS(10186), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7544), 25, + anon_sym_DASH_GT, + ACTIONS(10184), 33, 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_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, - [59225] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [57123] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8579), 27, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(10580), 1, + anon_sym_LBRACE, + STATE(2808), 1, + sym_compound_statement, + ACTIONS(3118), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3128), 47, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - anon_sym_DOT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [57191] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6479), 1, + anon_sym_LBRACK, + ACTIONS(10348), 1, + anon_sym_AMP_AMP, + ACTIONS(10350), 1, + anon_sym_AMP, + ACTIONS(10360), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10376), 1, + anon_sym_requires, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10589), 1, + anon_sym___asm, + ACTIONS(10592), 1, + anon_sym_DASH_GT, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(7000), 1, + sym__function_attributes_start, + STATE(7522), 1, + sym_ref_qualifier, + STATE(8054), 1, + sym_trailing_return_type, + STATE(8124), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10369), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - ACTIONS(8581), 29, - anon_sym_DOT_DOT_DOT, + ACTIONS(10586), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6144), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6360), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8298), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7703), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6481), 7, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [59289] = 5, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [57309] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10251), 1, + ACTIONS(6723), 1, anon_sym_LBRACK_LBRACK, - STATE(4485), 2, + STATE(4559), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2101), 19, + ACTIONS(8833), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -484066,7 +503443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8700), 34, + ACTIONS(8835), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -484101,74 +503478,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [59357] = 30, + [57377] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6111), 1, + ACTIONS(6479), 1, anon_sym_LBRACK, - ACTIONS(9997), 1, + ACTIONS(10348), 1, anon_sym_AMP_AMP, - ACTIONS(9999), 1, + ACTIONS(10350), 1, anon_sym_AMP, - ACTIONS(10009), 1, + ACTIONS(10360), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10012), 1, + ACTIONS(10363), 1, anon_sym_const, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10042), 1, + ACTIONS(10382), 1, anon_sym_requires, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10261), 1, + ACTIONS(10589), 1, anon_sym___asm, - ACTIONS(10264), 1, + ACTIONS(10592), 1, anon_sym_DASH_GT, - STATE(4238), 1, + STATE(4333), 1, sym_alignas_qualifier, - STATE(6993), 1, + STATE(7032), 1, sym__function_attributes_start, - STATE(7412), 1, + STATE(7520), 1, sym_ref_qualifier, - STATE(7924), 1, + STATE(8038), 1, sym_trailing_return_type, - STATE(8011), 1, + STATE(8087), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10039), 2, + ACTIONS(8160), 2, anon_sym_final, anon_sym_override, - ACTIONS(10258), 2, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10586), 2, anon_sym_asm, anon_sym___asm__, - STATE(6036), 2, + STATE(6144), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6264), 2, + STATE(6360), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8160), 2, + STATE(8298), 2, sym__function_postfix, sym_requires_clause, - STATE(7606), 3, + STATE(7726), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(6113), 7, + ACTIONS(6481), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -484176,7 +503553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - ACTIONS(10001), 12, + ACTIONS(10352), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -484189,91 +503566,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [59475] = 18, + [57495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(6861), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6919), 1, - anon_sym_requires, - ACTIONS(9742), 1, - anon_sym___attribute__, - ACTIONS(9745), 1, - anon_sym___attribute, - ACTIONS(9748), 1, - anon_sym_DASH_GT, - STATE(5666), 1, - sym_trailing_return_type, - STATE(6048), 1, - sym__function_attributes_end, - STATE(8992), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(6913), 2, - anon_sym_final, - anon_sym_override, - STATE(4374), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4622), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5305), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 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_LBRACK, - anon_sym_DOT, - ACTIONS(7627), 25, - anon_sym_DOT_DOT_DOT, + ACTIONS(7293), 12, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_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_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(7291), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_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, - [59569] = 5, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [57559] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6330), 1, + ACTIONS(6685), 1, anon_sym_LBRACK_LBRACK, - STATE(4485), 2, + STATE(4614), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8479), 19, + ACTIONS(9071), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -484283,17 +503645,19 @@ 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(8481), 34, + ACTIONS(9073), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -484301,8 +503665,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -484310,7 +503672,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, @@ -484327,47 +503688,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [59637] = 18, + [57627] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7497), 1, - anon_sym___attribute__, - ACTIONS(7499), 1, - anon_sym___attribute, - ACTIONS(7501), 1, + ACTIONS(7180), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7598), 1, + ACTIONS(7221), 1, anon_sym_requires, - ACTIONS(9760), 1, + ACTIONS(9996), 1, + anon_sym___attribute__, + ACTIONS(9999), 1, + anon_sym___attribute, + ACTIONS(10002), 1, anon_sym_DASH_GT, - STATE(6156), 1, - sym__function_attributes_end, - STATE(6209), 1, + STATE(5881), 1, sym_trailing_return_type, - STATE(8976), 1, + STATE(6191), 1, + sym__function_attributes_end, + STATE(9134), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7596), 2, + ACTIONS(7219), 2, anon_sym_final, anon_sym_override, - STATE(6071), 2, + STATE(4485), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6313), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6389), 2, + STATE(4778), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6509), 2, + STATE(5460), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7629), 10, + ACTIONS(7789), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -484378,7 +503740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7627), 25, + ACTIONS(7791), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -484392,7 +503754,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_SEMI, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -484404,150 +503766,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [59731] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6951), 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_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6949), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [59795] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9959), 1, - anon_sym_LT, - STATE(3601), 1, - sym_template_argument_list, - ACTIONS(6201), 7, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6208), 46, - 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___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [59865] = 9, + [57721] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8164), 1, + ACTIONS(8514), 1, anon_sym_DASH_GT, - ACTIONS(8177), 1, + ACTIONS(8520), 1, anon_sym_requires, - STATE(4602), 1, + STATE(4740), 1, sym_trailing_return_type, - ACTIONS(8174), 2, + ACTIONS(8517), 2, anon_sym_final, anon_sym_override, - STATE(4992), 2, + STATE(5261), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5531), 2, + STATE(5696), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7546), 15, + ACTIONS(7789), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -484563,7 +503800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(7544), 32, + ACTIONS(7791), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -484596,59 +503833,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [59941] = 18, + [57797] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7441), 1, + ACTIONS(7884), 1, anon_sym___attribute__, - ACTIONS(7443), 1, + ACTIONS(7886), 1, anon_sym___attribute, - ACTIONS(7445), 1, + ACTIONS(7888), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9621), 1, - anon_sym_DASH_GT, - ACTIONS(9645), 1, + ACTIONS(7903), 1, anon_sym_requires, - STATE(6181), 1, + ACTIONS(10017), 1, + anon_sym_DASH_GT, + STATE(6272), 1, sym__function_attributes_end, - STATE(6215), 1, + STATE(6306), 1, sym_trailing_return_type, - STATE(8995), 1, + STATE(9133), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9642), 2, + ACTIONS(7897), 2, anon_sym_final, anon_sym_override, - STATE(6065), 2, + STATE(6193), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6276), 2, + STATE(6393), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6331), 2, + STATE(6457), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6604), 2, + STATE(6622), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7546), 12, + ACTIONS(7789), 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, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7544), 23, + ACTIONS(7791), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -484659,7 +503894,10 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -484671,198 +503909,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_GT2, - [60035] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6111), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10009), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10022), 1, - anon_sym_requires, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10266), 1, - anon_sym_DASH_GT, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(7026), 1, - sym__function_attributes_start, - STATE(7442), 1, - sym_ref_qualifier, - STATE(7934), 1, - sym_trailing_return_type, - STATE(8284), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7821), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6036), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6264), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8160), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7596), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6113), 7, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [60153] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1162), 1, - anon_sym_LBRACE, - STATE(865), 1, - sym_compound_statement, - ACTIONS(2758), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(2768), 47, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [60221] = 18, + [57891] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(6861), 1, + ACTIONS(7180), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8824), 1, + ACTIONS(7221), 1, anon_sym_requires, - ACTIONS(9633), 1, + ACTIONS(10594), 1, anon_sym___attribute__, - ACTIONS(9636), 1, + ACTIONS(10597), 1, anon_sym___attribute, - ACTIONS(9639), 1, + ACTIONS(10600), 1, anon_sym_DASH_GT, - STATE(5711), 1, + STATE(5932), 1, sym_trailing_return_type, - STATE(6050), 1, + STATE(6167), 1, sym__function_attributes_end, - STATE(8992), 1, + STATE(9134), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8821), 2, + ACTIONS(7219), 2, anon_sym_final, anon_sym_override, - STATE(4374), 2, + STATE(4485), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4622), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4709), 2, + STATE(4778), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5258), 2, + STATE(5396), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7546), 10, + ACTIONS(8424), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -484873,7 +503959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7544), 25, + ACTIONS(8422), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -484899,15 +503985,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [60315] = 5, + [57985] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10268), 1, - anon_sym_LBRACK_LBRACK, - STATE(4497), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2101), 21, + ACTIONS(10568), 1, + anon_sym_LPAREN2, + ACTIONS(10570), 1, + anon_sym_LBRACK, + STATE(1972), 1, + sym_parameter_list, + STATE(4999), 1, + sym__function_declarator_seq, + ACTIONS(10190), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -484917,26 +504006,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_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8700), 32, + anon_sym_DASH_GT, + ACTIONS(10188), 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_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -484944,6 +504032,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, @@ -484957,30 +504046,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [60383] = 9, + anon_sym_DASH_GT_STAR, + [58057] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6455), 1, + ACTIONS(6783), 1, anon_sym_requires, - ACTIONS(8164), 1, + ACTIONS(9124), 1, anon_sym_DASH_GT, - STATE(4529), 1, + STATE(4715), 1, sym_trailing_return_type, - ACTIONS(6453), 2, + ACTIONS(6777), 2, anon_sym_final, anon_sym_override, - STATE(4992), 2, + STATE(5261), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5531), 2, + STATE(5550), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7546), 15, + ACTIONS(8424), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -484996,7 +504084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(7544), 32, + ACTIONS(8422), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -485020,248 +504108,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, - anon_sym_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, - [60459] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6365), 1, - anon_sym_LBRACK_LBRACK, - STATE(4497), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8725), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8727), 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [60527] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10271), 1, - anon_sym_LBRACE, - STATE(3337), 1, - sym_compound_statement, - ACTIONS(2758), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(2768), 47, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [60595] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10145), 1, - anon_sym_LBRACE, - ACTIONS(10273), 1, - anon_sym_COLON, - STATE(4444), 1, - sym__enum_base_clause, - STATE(4573), 1, - sym_enumerator_list, - STATE(4866), 1, - sym_attribute_specifier, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7602), 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_LBRACK_COLON, - ACTIONS(7600), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [60671] = 9, + anon_sym_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, + [58133] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10145), 1, + ACTIONS(10603), 1, anon_sym_LBRACE, - ACTIONS(10273), 1, - anon_sym_COLON, - STATE(4355), 1, - sym__enum_base_clause, - STATE(4592), 1, - sym_enumerator_list, - STATE(4746), 1, - sym_attribute_specifier, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7653), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(3342), 1, + sym_compound_statement, + ACTIONS(3118), 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, anon_sym_LBRACK_COLON, - ACTIONS(7651), 39, + ACTIONS(3128), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -485285,50 +504168,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, sym_identifier, + sym_auto, anon_sym_decltype, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - [60747] = 18, + [58201] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7441), 1, + ACTIONS(7816), 1, anon_sym___attribute__, - ACTIONS(7443), 1, + ACTIONS(7818), 1, anon_sym___attribute, - ACTIONS(7445), 1, + ACTIONS(7820), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9751), 1, + ACTIONS(9987), 1, anon_sym_DASH_GT, - ACTIONS(9757), 1, + ACTIONS(10082), 1, anon_sym_requires, - STATE(6161), 1, + STATE(6278), 1, sym__function_attributes_end, - STATE(6219), 1, + STATE(6292), 1, sym_trailing_return_type, - STATE(8995), 1, + STATE(9096), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9754), 2, + ACTIONS(10079), 2, anon_sym_final, anon_sym_override, - STATE(6065), 2, + STATE(6157), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6276), 2, + STATE(6403), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6331), 2, + STATE(6501), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6467), 2, + STATE(6697), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7629), 12, + ACTIONS(7789), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -485341,7 +504232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7627), 23, + ACTIONS(7791), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -485365,208 +504256,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_GT2, - [60841] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6330), 1, - anon_sym_LBRACK_LBRACK, - STATE(4485), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8512), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(8514), 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_GT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [60909] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6111), 1, - anon_sym_LBRACK, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10009), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10022), 1, - anon_sym_requires, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10261), 1, - anon_sym___asm, - ACTIONS(10264), 1, - anon_sym_DASH_GT, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(6919), 1, - sym__function_attributes_start, - STATE(7413), 1, - sym_ref_qualifier, - STATE(7934), 1, - sym_trailing_return_type, - STATE(8005), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(7821), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10258), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6036), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6264), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8160), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7585), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6113), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [61027] = 18, + [58295] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(6861), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8977), 1, - anon_sym_requires, - ACTIONS(9742), 1, + ACTIONS(7816), 1, anon_sym___attribute__, - ACTIONS(9745), 1, + ACTIONS(7818), 1, anon_sym___attribute, - ACTIONS(9748), 1, + ACTIONS(7820), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10119), 1, anon_sym_DASH_GT, - STATE(5719), 1, - sym_trailing_return_type, - STATE(6079), 1, + ACTIONS(10161), 1, + anon_sym_requires, + STATE(6273), 1, sym__function_attributes_end, - STATE(8992), 1, + STATE(6295), 1, + sym_trailing_return_type, + STATE(9096), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8974), 2, + ACTIONS(10158), 2, anon_sym_final, anon_sym_override, - STATE(4374), 2, + STATE(6157), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4622), 2, + STATE(6403), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4709), 2, + STATE(6501), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5305), 2, + STATE(6571), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7629), 10, + ACTIONS(7968), 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_LBRACK, anon_sym_DOT, - ACTIONS(7627), 25, + ACTIONS(7966), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -485577,10 +504319,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -485592,25 +504331,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [61121] = 9, + anon_sym_GT2, + [58389] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8210), 1, + ACTIONS(8595), 1, anon_sym_DASH_GT, - ACTIONS(8216), 1, + ACTIONS(8636), 1, anon_sym_requires, - STATE(4603), 1, + STATE(4660), 1, sym_trailing_return_type, - ACTIONS(8213), 2, + ACTIONS(8633), 2, anon_sym_final, anon_sym_override, - STATE(4992), 2, + STATE(5261), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5590), 2, + STATE(5681), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7629), 15, + ACTIONS(7968), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -485626,7 +504366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(7627), 32, + ACTIONS(7966), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -485659,57 +504399,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [61197] = 18, + [58465] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7497), 1, + ACTIONS(7816), 1, anon_sym___attribute__, - ACTIONS(7499), 1, + ACTIONS(7818), 1, anon_sym___attribute, - ACTIONS(7501), 1, + ACTIONS(7820), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7598), 1, - anon_sym_requires, - ACTIONS(10200), 1, + ACTIONS(10605), 1, anon_sym_DASH_GT, - STATE(6180), 1, + ACTIONS(10611), 1, + anon_sym_requires, + STATE(6271), 1, sym__function_attributes_end, - STATE(6213), 1, + STATE(6357), 1, sym_trailing_return_type, - STATE(8976), 1, + STATE(9096), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7596), 2, + ACTIONS(10608), 2, anon_sym_final, anon_sym_override, - STATE(6071), 2, + STATE(6157), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6313), 2, + STATE(6403), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6389), 2, + STATE(6501), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6524), 2, + STATE(6641), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8087), 10, + ACTIONS(8424), 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_LBRACK, anon_sym_DOT, - ACTIONS(8089), 25, + ACTIONS(8422), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -485720,10 +504462,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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -485735,83 +504474,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [61291] = 30, + anon_sym_GT2, + [58559] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6111), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10009), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10042), 1, - anon_sym_requires, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10266), 1, - anon_sym_DASH_GT, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(6912), 1, - sym__function_attributes_start, - STATE(7410), 1, - sym_ref_qualifier, - STATE(7924), 1, - sym_trailing_return_type, - STATE(8266), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10039), 2, - anon_sym_final, - anon_sym_override, - STATE(6036), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6264), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8160), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7593), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6113), 7, + ACTIONS(5667), 1, + anon_sym_decltype, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(10614), 1, + sym_auto, + STATE(4812), 1, + sym_decltype_auto, + ACTIONS(7225), 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, - anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_EQ, - anon_sym_try, - ACTIONS(10001), 12, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7223), 40, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -485823,25 +504535,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [61409] = 9, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [58631] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8762), 1, - anon_sym_DASH_GT, - ACTIONS(8768), 1, + ACTIONS(6783), 1, anon_sym_requires, - STATE(4604), 1, + ACTIONS(8595), 1, + anon_sym_DASH_GT, + STATE(4639), 1, sym_trailing_return_type, - ACTIONS(8765), 2, + ACTIONS(6777), 2, anon_sym_final, anon_sym_override, - STATE(4992), 2, + STATE(5261), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5603), 2, + STATE(5681), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8087), 15, + ACTIONS(7968), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -485857,7 +504574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(8089), 32, + ACTIONS(7966), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -485890,25 +504607,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [61485] = 9, + [58707] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_requires, - ACTIONS(8762), 1, - anon_sym_DASH_GT, - STATE(4563), 1, - sym_trailing_return_type, - ACTIONS(6453), 2, - anon_sym_final, - anon_sym_override, - STATE(4992), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5603), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 15, + ACTIONS(10616), 1, + sym_literal_suffix, + ACTIONS(5645), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -485922,9 +504626,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_COLON, 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(8089), 32, + ACTIONS(5638), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -485934,6 +504648,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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -485947,22 +504664,15 @@ 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, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [61561] = 4, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [58773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10275), 1, - anon_sym_LPAREN2, - ACTIONS(8583), 27, + ACTIONS(9007), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -485990,7 +504700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8585), 28, + ACTIONS(9009), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -485998,6 +504708,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -486019,29 +504730,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [61627] = 11, + [58837] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(5667), 1, + anon_sym_decltype, + ACTIONS(7227), 1, anon_sym_COLON_COLON, - ACTIONS(5280), 1, + ACTIONS(7457), 1, + anon_sym_LBRACE, + ACTIONS(10614), 1, sym_auto, - ACTIONS(5282), 1, - anon_sym_decltype, - ACTIONS(10277), 1, - anon_sym_LT, - STATE(4121), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4203), 1, - sym_template_argument_list, - STATE(4767), 1, + STATE(4812), 1, sym_decltype_auto, - ACTIONS(5274), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5258), 11, + ACTIONS(7225), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -486049,11 +504751,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_EQ, - anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(5251), 34, + ACTIONS(7223), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -486062,6 +504764,12 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -486088,62 +504796,72 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_template, anon_sym_operator, - [61707] = 9, + [58911] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(10217), 1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7884), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym___attribute, + ACTIONS(7888), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10017), 1, anon_sym_DASH_GT, - ACTIONS(10282), 1, + ACTIONS(10023), 1, anon_sym_requires, - STATE(4608), 1, + STATE(6290), 1, + sym__function_attributes_end, + STATE(6316), 1, sym_trailing_return_type, - ACTIONS(10279), 2, + STATE(9133), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10020), 2, anon_sym_final, anon_sym_override, - STATE(4992), 2, + STATE(6193), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6393), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6457), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5609), 2, + STATE(6622), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8541), 15, + ACTIONS(7789), 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_LBRACK, anon_sym_DOT, - ACTIONS(8543), 32, + ACTIONS(7791), 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_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, @@ -486154,47 +504872,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [61783] = 18, + [59005] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7497), 1, + ACTIONS(7884), 1, anon_sym___attribute__, - ACTIONS(7499), 1, + ACTIONS(7886), 1, anon_sym___attribute, - ACTIONS(7501), 1, + ACTIONS(7888), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9630), 1, + ACTIONS(10116), 1, anon_sym_DASH_GT, - ACTIONS(9651), 1, + ACTIONS(10137), 1, anon_sym_requires, - STATE(6162), 1, + STATE(6268), 1, sym__function_attributes_end, - STATE(6234), 1, + STATE(6363), 1, sym_trailing_return_type, - STATE(8976), 1, + STATE(9133), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9648), 2, + ACTIONS(10134), 2, anon_sym_final, anon_sym_override, - STATE(6071), 2, + STATE(6193), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6313), 2, + STATE(6393), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6389), 2, + STATE(6457), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6558), 2, + STATE(6630), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7546), 10, + ACTIONS(7968), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -486205,7 +504922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7544), 25, + ACTIONS(7966), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -486231,46 +504948,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [61877] = 18, + [59099] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7497), 1, + ACTIONS(7884), 1, anon_sym___attribute__, - ACTIONS(7499), 1, + ACTIONS(7886), 1, anon_sym___attribute, - ACTIONS(7501), 1, + ACTIONS(7888), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9760), 1, + ACTIONS(10574), 1, anon_sym_DASH_GT, - ACTIONS(9766), 1, + ACTIONS(10621), 1, anon_sym_requires, - STATE(6155), 1, + STATE(6277), 1, sym__function_attributes_end, - STATE(6235), 1, + STATE(6318), 1, sym_trailing_return_type, - STATE(8976), 1, + STATE(9133), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9763), 2, + ACTIONS(10618), 2, anon_sym_final, anon_sym_override, - STATE(6071), 2, + STATE(6193), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6313), 2, + STATE(6393), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6389), 2, + STATE(6457), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6509), 2, + STATE(6637), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7629), 10, + ACTIONS(8424), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -486281,7 +504998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7627), 25, + ACTIONS(8422), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -486307,55 +505024,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [61971] = 8, + [59193] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(7399), 1, - anon_sym_LPAREN2, - STATE(3783), 1, - sym_argument_list, - STATE(5860), 1, - sym_initializer_list, - ACTIONS(6800), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(6479), 1, + anon_sym_LBRACK, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(10348), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_LBRACK_COLON, - ACTIONS(6798), 41, + ACTIONS(10350), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + ACTIONS(10360), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10382), 1, + anon_sym_requires, + ACTIONS(10582), 1, anon_sym___attribute__, + ACTIONS(10584), 1, 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, + ACTIONS(10624), 1, + anon_sym_DASH_GT, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(7130), 1, + sym__function_attributes_start, + STATE(7514), 1, + sym_ref_qualifier, + STATE(8038), 1, + sym_trailing_return_type, + STATE(8405), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8160), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6144), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6360), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8298), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7728), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6481), 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(10352), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -486367,21 +505112,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [62045] = 5, + [59311] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6365), 1, + ACTIONS(6685), 1, anon_sym_LBRACK_LBRACK, - STATE(4497), 2, + STATE(4614), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8479), 21, + ACTIONS(8833), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -486403,7 +505142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8481), 32, + ACTIONS(8835), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -486436,46 +505175,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [62113] = 18, + [59379] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(6861), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9733), 1, - anon_sym_requires, - ACTIONS(10238), 1, + ACTIONS(7884), 1, anon_sym___attribute__, - ACTIONS(10241), 1, + ACTIONS(7886), 1, anon_sym___attribute, - ACTIONS(10244), 1, + ACTIONS(7888), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7903), 1, + anon_sym_requires, + ACTIONS(10116), 1, anon_sym_DASH_GT, - STATE(5721), 1, - sym_trailing_return_type, - STATE(6074), 1, + STATE(6269), 1, sym__function_attributes_end, - STATE(8992), 1, + STATE(6324), 1, + sym_trailing_return_type, + STATE(9133), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9730), 2, + ACTIONS(7897), 2, anon_sym_final, anon_sym_override, - STATE(4374), 2, + STATE(6193), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4622), 2, + STATE(6393), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4709), 2, + STATE(6457), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5364), 2, + STATE(6630), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8087), 10, + ACTIONS(7968), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -486486,7 +505225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(8089), 25, + ACTIONS(7966), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -486500,7 +505239,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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -486512,140 +505251,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [62207] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5282), 1, - anon_sym_decltype, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(10213), 1, - sym_auto, - STATE(4817), 1, - sym_decltype_auto, - ACTIONS(6800), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6798), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [62279] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5282), 1, - anon_sym_decltype, - ACTIONS(10213), 1, - sym_auto, - STATE(4817), 1, - sym_decltype_auto, - ACTIONS(6800), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6798), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [62349] = 3, + [59473] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10249), 27, - aux_sym_preproc_elif_token1, + ACTIONS(10626), 2, + anon_sym_final, + anon_sym_override, + STATE(4589), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9143), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -486660,25 +505275,15 @@ 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, - sym_identifier, - sym_literal_suffix, - ACTIONS(10247), 29, + anon_sym_DASH_GT, + ACTIONS(9145), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -486697,109 +505302,45 @@ 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [62413] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6698), 1, - anon_sym_decltype, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(7183), 1, - anon_sym_LBRACE, - ACTIONS(9769), 1, - sym_auto, - STATE(4315), 1, - sym_decltype_auto, - ACTIONS(6798), 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(6800), 39, - 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___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_GT2, - [62487] = 12, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [59541] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6927), 1, - anon_sym_LPAREN2, - ACTIONS(6943), 1, - anon_sym_LBRACK, - ACTIONS(7319), 1, - anon_sym_STAR, - ACTIONS(7321), 1, - anon_sym_AMP_AMP, - ACTIONS(7323), 1, - anon_sym_AMP, - STATE(1888), 1, - sym_parameter_list, - STATE(5582), 1, - sym__function_declarator_seq, - STATE(5730), 1, - sym__abstract_declarator, - STATE(5581), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9074), 14, + ACTIONS(6783), 1, + anon_sym_requires, + ACTIONS(8514), 1, + anon_sym_DASH_GT, + STATE(4642), 1, + sym_trailing_return_type, + ACTIONS(6777), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5696), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 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, @@ -486807,15 +505348,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9072), 29, + ACTIONS(7791), 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, @@ -486838,314 +505381,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [62569] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10285), 1, - anon_sym_namespace, - ACTIONS(9926), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(9924), 47, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [62634] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10287), 1, - anon_sym_friend, - ACTIONS(2758), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(2768), 47, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [62699] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10291), 1, - anon_sym_RPAREN, - ACTIONS(10293), 1, - anon_sym_COLON_COLON, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, - sym_type_specifier, - STATE(8605), 1, - sym__scope_resolution, - STATE(9568), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4954), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [62818] = 26, + [59617] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10123), 1, - anon_sym_EQ, - ACTIONS(10305), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10307), 1, - anon_sym_AMP_AMP, - ACTIONS(10309), 1, - anon_sym_PIPE, - ACTIONS(10313), 1, - anon_sym_AMP, - ACTIONS(10319), 1, - anon_sym_GT_EQ, - ACTIONS(10323), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10325), 1, - anon_sym_or, - ACTIONS(10327), 1, - anon_sym_and, - ACTIONS(10329), 1, - anon_sym_bitor, - ACTIONS(10331), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, + ACTIONS(9124), 1, anon_sym_DASH_GT, - ACTIONS(10301), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10311), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10321), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10303), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10315), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10317), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10125), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - 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_COLON_RBRACK, - [62927] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6455), 1, + ACTIONS(9136), 1, anon_sym_requires, - ACTIONS(6453), 2, + STATE(4665), 1, + sym_trailing_return_type, + ACTIONS(9133), 2, anon_sym_final, anon_sym_override, - STATE(4992), 2, + STATE(5261), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5590), 2, + STATE(5550), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7629), 16, + ACTIONS(8424), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -487161,8 +505415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7627), 32, + ACTIONS(8422), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -487195,99 +505448,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [62998] = 26, + [59693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(9344), 1, - anon_sym_EQ, - ACTIONS(10305), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10307), 1, - anon_sym_AMP_AMP, - ACTIONS(10309), 1, + ACTIONS(8889), 27, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(10313), 1, anon_sym_AMP, - ACTIONS(10319), 1, - anon_sym_GT_EQ, - ACTIONS(10323), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10325), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_or, - ACTIONS(10327), 1, anon_sym_and, - ACTIONS(10329), 1, anon_sym_bitor, - ACTIONS(10331), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, + anon_sym_not_eq, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8891), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10301), 2, + anon_sym_COLON_RBRACK, + [59757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8897), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10311), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10321), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10303), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10315), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10317), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9342), 20, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8899), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [63107] = 5, + [59821] = 9, ACTIONS(3), 1, sym_comment, - STATE(4901), 1, + ACTIONS(10554), 1, + anon_sym_LBRACE, + ACTIONS(10629), 1, + anon_sym_COLON, + STATE(4514), 1, + sym__enum_base_clause, + STATE(4683), 1, + sym_enumerator_list, + STATE(4912), 1, sym_attribute_specifier, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7135), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(8008), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -487297,10 +505596,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7133), 39, + ACTIONS(8006), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -487340,16 +505637,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [63174] = 5, + [59897] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6384), 2, + ACTIONS(10631), 1, + anon_sym_DASH_GT, + ACTIONS(10637), 1, + anon_sym_requires, + STATE(4669), 1, + sym_trailing_return_type, + ACTIONS(10634), 2, anon_sym_final, anon_sym_override, - STATE(4559), 2, + STATE(5261), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - ACTIONS(8774), 20, + STATE(5581), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -487359,25 +505665,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(8776), 31, + ACTIONS(8907), 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, @@ -487386,96 +505689,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, - anon_sym_GT2, - anon_sym_requires, - [63241] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4900), 1, - sym_attribute_specifier, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7089), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7087), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [63308] = 7, + anon_sym_DASH_GT_STAR, + [59973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10333), 1, - anon_sym_LPAREN2, - ACTIONS(10335), 1, - anon_sym_LBRACK, - STATE(1872), 1, - sym_parameter_list, - STATE(5159), 1, - sym__function_declarator_seq, - ACTIONS(9834), 18, + ACTIONS(10566), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -487490,19 +505723,32 @@ 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, - ACTIONS(9832), 33, + sym_identifier, + sym_literal_suffix, + ACTIONS(10564), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -487514,96 +505760,175 @@ 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [63379] = 7, + [60037] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(10337), 1, - anon_sym_LPAREN2, - ACTIONS(10339), 1, - anon_sym_LBRACK, - STATE(1874), 1, - sym_parameter_list, - STATE(5063), 1, - sym__function_declarator_seq, - ACTIONS(9852), 20, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7180), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9219), 1, + anon_sym_requires, + ACTIONS(9996), 1, + anon_sym___attribute__, + ACTIONS(9999), 1, + anon_sym___attribute, + ACTIONS(10002), 1, + anon_sym_DASH_GT, + STATE(5898), 1, + sym_trailing_return_type, + STATE(6162), 1, + sym__function_attributes_end, + STATE(9134), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9216), 2, + anon_sym_final, + anon_sym_override, + STATE(4485), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5460), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 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_LBRACK, + anon_sym_DOT, + ACTIONS(7791), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_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, + [60131] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7180), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9293), 1, + anon_sym_requires, + ACTIONS(10122), 1, + anon_sym___attribute__, + ACTIONS(10125), 1, + anon_sym___attribute, + ACTIONS(10128), 1, + anon_sym_DASH_GT, + STATE(5907), 1, + sym_trailing_return_type, + STATE(6163), 1, + sym__function_attributes_end, + STATE(9134), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9290), 2, + anon_sym_final, + anon_sym_override, + STATE(4485), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5532), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 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_LBRACK, anon_sym_DOT, - ACTIONS(9850), 31, + ACTIONS(7966), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [63450] = 7, + [60225] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10337), 1, + ACTIONS(10568), 1, anon_sym_LPAREN2, - ACTIONS(10339), 1, + ACTIONS(10570), 1, anon_sym_LBRACK, - STATE(1874), 1, + STATE(1972), 1, sym_parameter_list, - STATE(5063), 1, + STATE(4999), 1, sym__function_declarator_seq, - ACTIONS(9856), 20, + ACTIONS(10194), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -487613,24 +505938,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(9854), 31, + anon_sym_DASH_GT, + ACTIONS(10192), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -487638,6 +505964,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, @@ -487651,87 +505978,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [63521] = 7, + anon_sym_DASH_GT_STAR, + [60297] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(10333), 1, - anon_sym_LPAREN2, - ACTIONS(10335), 1, - anon_sym_LBRACK, - STATE(1872), 1, - sym_parameter_list, - STATE(5159), 1, - sym__function_declarator_seq, - ACTIONS(9840), 18, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7180), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10169), 1, + anon_sym_requires, + ACTIONS(10594), 1, + anon_sym___attribute__, + ACTIONS(10597), 1, + anon_sym___attribute, + ACTIONS(10600), 1, + anon_sym_DASH_GT, + STATE(5908), 1, + sym_trailing_return_type, + STATE(6164), 1, + sym__function_attributes_end, + STATE(9134), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10166), 2, + anon_sym_final, + anon_sym_override, + STATE(4485), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 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_LBRACK, anon_sym_DOT, - ACTIONS(9838), 33, + ACTIONS(8422), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [63592] = 7, + [60391] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5667), 1, + anon_sym_decltype, + ACTIONS(10614), 1, + sym_auto, + STATE(4812), 1, + sym_decltype_auto, + ACTIONS(7225), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7223), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [60461] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10333), 1, + ACTIONS(10568), 1, anon_sym_LPAREN2, - ACTIONS(10335), 1, + ACTIONS(10570), 1, anon_sym_LBRACK, - STATE(1872), 1, + STATE(1972), 1, sym_parameter_list, - STATE(5159), 1, + STATE(4999), 1, sym__function_declarator_seq, - ACTIONS(9844), 18, + ACTIONS(10174), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -487750,15 +506152,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9842), 33, + anon_sym_DASH_GT, + ACTIONS(10172), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -487780,177 +506183,309 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - [63663] = 7, + anon_sym_DASH_GT_STAR, + [60533] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10337), 1, + ACTIONS(10640), 1, anon_sym_LPAREN2, - ACTIONS(10339), 1, - anon_sym_LBRACK, - STATE(1874), 1, - sym_parameter_list, - STATE(5063), 1, - sym__function_declarator_seq, - ACTIONS(9860), 20, + ACTIONS(9027), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, anon_sym_DOT, - ACTIONS(9858), 31, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9029), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, + 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, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [63734] = 7, + anon_sym_COLON_RBRACK, + [60599] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10333), 1, + ACTIONS(5667), 1, + anon_sym_decltype, + ACTIONS(7457), 1, + anon_sym_LBRACE, + ACTIONS(10614), 1, + sym_auto, + STATE(4812), 1, + sym_decltype_auto, + ACTIONS(7225), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10335), 1, + 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_LBRACK_COLON, + ACTIONS(7223), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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, - STATE(1872), 1, - sym_parameter_list, - STATE(5159), 1, - sym__function_declarator_seq, - ACTIONS(9848), 18, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [60671] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(960), 1, + anon_sym_LBRACE, + STATE(855), 1, + sym_compound_statement, + ACTIONS(3118), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3128), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [60739] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8938), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, anon_sym_DOT, - ACTIONS(9846), 33, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8940), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, + 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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [63805] = 7, + anon_sym_COLON_RBRACK, + [60803] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10337), 1, + ACTIONS(7305), 1, anon_sym_LPAREN2, - ACTIONS(10339), 1, + ACTIONS(7321), 1, anon_sym_LBRACK, - STATE(1874), 1, + ACTIONS(7589), 1, + anon_sym_STAR, + ACTIONS(7591), 1, + anon_sym_AMP_AMP, + ACTIONS(7593), 1, + anon_sym_AMP, + STATE(1989), 1, sym_parameter_list, - STATE(5063), 1, + STATE(5694), 1, sym__function_declarator_seq, - ACTIONS(9864), 20, + STATE(5743), 1, + sym__abstract_declarator, + STATE(5693), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9429), 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_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(9862), 31, + anon_sym_DASH_GT, + ACTIONS(9427), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -487958,100 +506493,173 @@ 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, + [60885] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7816), 1, + anon_sym___attribute__, + ACTIONS(7818), 1, + anon_sym___attribute, + ACTIONS(7820), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7835), 1, + anon_sym_requires, + ACTIONS(10119), 1, anon_sym_DASH_GT, + STATE(6286), 1, + sym__function_attributes_end, + STATE(6332), 1, + sym_trailing_return_type, + STATE(9096), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7829), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [63876] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10337), 1, - anon_sym_LPAREN2, - ACTIONS(10339), 1, - anon_sym_LBRACK, - STATE(1874), 1, - sym_parameter_list, - STATE(5063), 1, - sym__function_declarator_seq, - ACTIONS(9834), 20, + STATE(6157), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6403), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6501), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6571), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 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_LBRACK, anon_sym_DOT, - ACTIONS(9832), 31, + ACTIONS(7966), 23, 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [63947] = 7, + [60979] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10337), 1, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(7687), 1, anon_sym_LPAREN2, - ACTIONS(10339), 1, + STATE(3892), 1, + sym_argument_list, + STATE(5964), 1, + sym_initializer_list, + ACTIONS(7225), 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_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(7223), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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, - STATE(1874), 1, - sym_parameter_list, - STATE(5063), 1, - sym__function_declarator_seq, - ACTIONS(9840), 20, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [61053] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6669), 2, + anon_sym_final, + anon_sym_override, + STATE(4589), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9139), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -488061,24 +506669,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(9838), 31, + anon_sym_DASH_GT, + ACTIONS(9141), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -488086,6 +506697,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, @@ -488099,23 +506711,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [61121] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, + anon_sym_LT, + STATE(3735), 1, + sym_template_argument_list, + STATE(5103), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10322), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7357), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7359), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [61195] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10554), 1, + anon_sym_LBRACE, + ACTIONS(10629), 1, + anon_sym_COLON, + STATE(4509), 1, + sym__enum_base_clause, + STATE(4668), 1, + sym_enumerator_list, + STATE(4868), 1, + sym_attribute_specifier, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8002), 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_LBRACK_COLON, + ACTIONS(8000), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [61271] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6479), 1, + anon_sym_LBRACK, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(10348), 1, + anon_sym_AMP_AMP, + ACTIONS(10350), 1, + anon_sym_AMP, + ACTIONS(10360), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10376), 1, anon_sym_requires, - [64018] = 7, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10624), 1, + anon_sym_DASH_GT, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(7150), 1, + sym__function_attributes_start, + STATE(7564), 1, + sym_ref_qualifier, + STATE(8054), 1, + sym_trailing_return_type, + STATE(8411), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10369), 2, + anon_sym_final, + anon_sym_override, + STATE(6144), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6360), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8298), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7729), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6481), 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [61389] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10337), 1, - anon_sym_LPAREN2, - ACTIONS(10339), 1, - anon_sym_LBRACK, - STATE(1874), 1, - sym_parameter_list, - STATE(5063), 1, - sym__function_declarator_seq, - ACTIONS(9844), 20, + ACTIONS(10642), 1, + anon_sym_LBRACK_LBRACK, + STATE(4614), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2461), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -488130,15 +506957,17 @@ 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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9842), 31, + ACTIONS(9075), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -488168,18 +506997,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [64089] = 7, + [61457] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10337), 1, + ACTIONS(10568), 1, anon_sym_LPAREN2, - ACTIONS(10339), 1, + ACTIONS(10570), 1, anon_sym_LBRACK, - STATE(1874), 1, + STATE(1972), 1, sym_parameter_list, - STATE(5063), 1, + STATE(4999), 1, sym__function_declarator_seq, - ACTIONS(9848), 20, + ACTIONS(10198), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -488189,24 +507018,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(9846), 31, + anon_sym_DASH_GT, + ACTIONS(10196), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -488214,6 +507044,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, @@ -488227,46 +507058,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [64160] = 5, + anon_sym_DASH_GT_STAR, + [61529] = 5, ACTIONS(3), 1, sym_comment, - STATE(4816), 1, - sym_attribute_specifier, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7189), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(964), 1, + sym_compound_statement, + ACTIONS(3118), 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, - anon_sym_EQ, - anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7187), 39, + ACTIONS(3128), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -488290,22 +507113,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, sym_identifier, + sym_auto, anon_sym_decltype, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - [64227] = 7, + [61597] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10333), 1, - anon_sym_LPAREN2, - ACTIONS(10335), 1, - anon_sym_LBRACK, - STATE(1872), 1, - sym_parameter_list, - STATE(5159), 1, - sym__function_declarator_seq, - ACTIONS(9852), 18, + ACTIONS(6685), 1, + anon_sym_LBRACK_LBRACK, + STATE(4614), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8837), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -488315,24 +507143,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(9850), 33, + ACTIONS(8839), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -488340,7 +507170,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, @@ -488357,19 +507186,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [64298] = 7, + [61665] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10333), 1, - anon_sym_LPAREN2, - ACTIONS(10335), 1, - anon_sym_LBRACK, - STATE(1872), 1, - sym_parameter_list, - STATE(5159), 1, - sym__function_declarator_seq, - ACTIONS(9856), 18, + ACTIONS(10616), 1, + sym_literal_suffix, + ACTIONS(5645), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -488384,19 +507209,31 @@ 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, - ACTIONS(9854), 33, + sym_identifier, + ACTIONS(5638), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -488408,32 +507245,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_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [64369] = 7, + [61731] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10333), 1, - anon_sym_LPAREN2, - ACTIONS(10335), 1, - anon_sym_LBRACK, - STATE(1872), 1, - sym_parameter_list, - STATE(5159), 1, - sym__function_declarator_seq, - ACTIONS(9860), 18, + ACTIONS(6783), 1, + anon_sym_requires, + ACTIONS(10631), 1, + anon_sym_DASH_GT, + STATE(4702), 1, + sym_trailing_return_type, + ACTIONS(6777), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5581), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -488448,19 +507283,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, - ACTIONS(9858), 33, + ACTIONS(8907), 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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -488472,32 +507306,221 @@ 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, + [61807] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1113), 1, + anon_sym_LBRACE, + STATE(708), 1, + sym_compound_statement, + ACTIONS(3118), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3128), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [61875] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(309), 1, + anon_sym_LBRACE, + STATE(406), 1, + sym_compound_statement, + ACTIONS(3118), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3128), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [61943] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7052), 1, + anon_sym_decltype, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(7457), 1, + anon_sym_LBRACE, + ACTIONS(10645), 1, + sym_auto, + STATE(4121), 1, + sym_decltype_auto, + ACTIONS(7223), 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(7225), 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_GT_GT, + anon_sym___extension__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [64440] = 7, + [62017] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10333), 1, + ACTIONS(10568), 1, anon_sym_LPAREN2, - ACTIONS(10335), 1, + ACTIONS(10570), 1, anon_sym_LBRACK, - STATE(1872), 1, + STATE(1972), 1, sym_parameter_list, - STATE(5159), 1, + STATE(4999), 1, sym__function_declarator_seq, - ACTIONS(9864), 18, + ACTIONS(10202), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -488516,15 +507539,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9862), 33, + anon_sym_DASH_GT, + ACTIONS(10200), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -488546,63 +507570,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - [64511] = 7, + anon_sym_DASH_GT_STAR, + [62089] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6455), 1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7816), 1, + anon_sym___attribute__, + ACTIONS(7818), 1, + anon_sym___attribute, + ACTIONS(7820), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7835), 1, anon_sym_requires, - ACTIONS(6453), 2, + ACTIONS(10605), 1, + anon_sym_DASH_GT, + STATE(6270), 1, + sym__function_attributes_end, + STATE(6294), 1, + sym_trailing_return_type, + STATE(9096), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7829), 2, anon_sym_final, anon_sym_override, - STATE(4992), 2, + STATE(6157), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6403), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6501), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5603), 2, + STATE(6641), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8087), 16, + ACTIONS(8424), 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_LBRACK, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8089), 32, + ACTIONS(8422), 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_LBRACK, + 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_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -488613,275 +507649,329 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [64582] = 52, + anon_sym_GT2, + [62183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10341), 1, + ACTIONS(8979), 27, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8981), 29, anon_sym_DOT_DOT_DOT, - ACTIONS(10343), 1, anon_sym_COMMA, - ACTIONS(10345), 1, anon_sym_RPAREN, - ACTIONS(10347), 1, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - ACTIONS(10349), 1, - anon_sym_DASH, - ACTIONS(10351), 1, - anon_sym_PLUS, - ACTIONS(10353), 1, anon_sym_STAR, - ACTIONS(10355), 1, - anon_sym_SLASH, - ACTIONS(10357), 1, anon_sym_PERCENT, - ACTIONS(10359), 1, anon_sym_PIPE_PIPE, - ACTIONS(10361), 1, anon_sym_AMP_AMP, - ACTIONS(10363), 1, - anon_sym_PIPE, - ACTIONS(10365), 1, anon_sym_CARET, - ACTIONS(10367), 1, - anon_sym_AMP, - ACTIONS(10369), 1, anon_sym_EQ_EQ, - ACTIONS(10371), 1, anon_sym_BANG_EQ, - ACTIONS(10373), 1, - anon_sym_GT, - ACTIONS(10375), 1, anon_sym_GT_EQ, - ACTIONS(10377), 1, - anon_sym_LT_EQ, - ACTIONS(10379), 1, - anon_sym_LT, - ACTIONS(10381), 1, anon_sym_LT_LT, - ACTIONS(10383), 1, anon_sym_GT_GT, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10387), 1, - anon_sym_EQ, - ACTIONS(10389), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, - ACTIONS(10391), 1, - anon_sym_STAR_EQ, - ACTIONS(10393), 1, - anon_sym_SLASH_EQ, - ACTIONS(10395), 1, - anon_sym_PERCENT_EQ, - ACTIONS(10397), 1, - anon_sym_PLUS_EQ, - ACTIONS(10399), 1, - anon_sym_DASH_EQ, - ACTIONS(10401), 1, - anon_sym_LT_LT_EQ, - ACTIONS(10403), 1, - anon_sym_GT_GT_EQ, - ACTIONS(10405), 1, - anon_sym_AMP_EQ, - ACTIONS(10407), 1, - anon_sym_CARET_EQ, - ACTIONS(10409), 1, - anon_sym_PIPE_EQ, - ACTIONS(10413), 1, anon_sym_LT_EQ_GT, - ACTIONS(10415), 1, - anon_sym_or, - ACTIONS(10417), 1, - anon_sym_and, - ACTIONS(10419), 1, - anon_sym_bitor, - ACTIONS(10421), 1, - anon_sym_xor, - ACTIONS(10423), 1, - anon_sym_bitand, - ACTIONS(10425), 1, - anon_sym_not_eq, - ACTIONS(10431), 1, - anon_sym_DOT_STAR, - ACTIONS(10433), 1, - anon_sym_DASH_GT_STAR, - STATE(1667), 1, - sym__binary_fold_operator, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - STATE(10893), 1, - sym__fold_operator, - ACTIONS(10427), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10411), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [64743] = 26, + anon_sym_COLON_RBRACK, + [62247] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(7687), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10176), 1, - anon_sym_EQ, - ACTIONS(10305), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10307), 1, + STATE(3894), 1, + sym_argument_list, + STATE(5969), 1, + sym_initializer_list, + ACTIONS(7225), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(10309), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(7223), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [62321] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6991), 1, + anon_sym_decltype, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(7457), 1, + anon_sym_LBRACE, + ACTIONS(10089), 1, + sym_auto, + STATE(4464), 1, + sym_decltype_auto, + ACTIONS(7223), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(10313), 1, anon_sym_AMP, - ACTIONS(10319), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(10323), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7225), 39, + 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___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(10325), 1, anon_sym_or, - ACTIONS(10327), 1, anon_sym_and, - ACTIONS(10329), 1, anon_sym_bitor, - ACTIONS(10331), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10301), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10311), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10321), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10303), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10315), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10317), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10178), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - 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_COLON_RBRACK, - [64852] = 30, + anon_sym_GT2, + [62395] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6111), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10254), 1, + ACTIONS(7816), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(7818), 1, anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(7820), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10437), 1, - anon_sym_DASH_GT, - ACTIONS(10442), 1, + ACTIONS(7835), 1, anon_sym_requires, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(7101), 1, - sym__function_attributes_start, - STATE(7478), 1, - sym_ref_qualifier, - STATE(8422), 1, + ACTIONS(9987), 1, + anon_sym_DASH_GT, + STATE(6274), 1, sym__function_attributes_end, - STATE(8423), 1, + STATE(6299), 1, sym_trailing_return_type, - STATE(8982), 1, + STATE(9096), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10439), 2, + ACTIONS(7829), 2, anon_sym_final, anon_sym_override, - STATE(6036), 2, + STATE(6157), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6264), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(7882), 2, + STATE(6403), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(6501), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8457), 2, + STATE(6697), 2, sym__function_postfix, sym_requires_clause, - STATE(7620), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6113), 6, + ACTIONS(7789), 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_LBRACK, + anon_sym_DOT, + ACTIONS(7791), 23, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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_GT2, + [62489] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(5665), 1, + sym_auto, + ACTIONS(5667), 1, + anon_sym_decltype, + ACTIONS(10647), 1, + anon_sym_LT, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4318), 1, + sym_template_argument_list, + STATE(4991), 1, + sym_decltype_auto, + ACTIONS(5659), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5643), 11, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - ACTIONS(10001), 12, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(5636), 34, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -488893,73 +507983,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [64969] = 31, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [62569] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(10651), 1, + anon_sym_RPAREN, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(10657), 1, anon_sym_typename, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - ACTIONS(10445), 1, - anon_sym_RPAREN, - STATE(2634), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, + STATE(7223), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(9981), 1, + STATE(9834), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -488981,227 +508076,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [65088] = 3, + [62688] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(9926), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9230), 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, - anon_sym_LBRACK_COLON, - ACTIONS(9924), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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(9642), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [65151] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6790), 10, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10667), 1, + anon_sym_AMP, + ACTIONS(10673), 1, + anon_sym_GT_EQ, + ACTIONS(10677), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10679), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10661), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10665), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10675), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10663), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(10669), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10671), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6792), 45, + ACTIONS(9707), 4, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(9709), 23, 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___extension__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_SEMI, + anon_sym_RBRACE, 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_COLON_RBRACK, + [62785] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10667), 1, + anon_sym_AMP, + ACTIONS(10673), 1, + anon_sym_GT_EQ, + ACTIONS(10677), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10679), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [65214] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10447), 1, - anon_sym_LBRACK_LBRACK, - STATE(4558), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2101), 24, - aux_sym_preproc_elif_token1, + ACTIONS(10661), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10675), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10663), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(10669), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10671), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, + ACTIONS(9707), 6, + anon_sym_PIPE, + anon_sym_CARET, + 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_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8700), 28, + ACTIONS(9709), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, 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_bitor, + anon_sym_COLON_RBRACK, + [62880] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10673), 1, + anon_sym_GT_EQ, + ACTIONS(10677), 1, anon_sym_LT_EQ_GT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [65281] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10450), 2, - anon_sym_final, - anon_sym_override, - STATE(4559), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(8755), 20, + ACTIONS(10661), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10675), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10669), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10671), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9707), 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(8757), 31, + ACTIONS(9709), 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_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -489209,141 +508293,142 @@ 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_requires, - [65348] = 8, + anon_sym_COLON_RBRACK, + [62971] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 1, - anon_sym_LBRACE, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(7399), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - STATE(3783), 1, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10673), 1, + anon_sym_GT_EQ, + ACTIONS(10677), 1, + anon_sym_LT_EQ_GT, + STATE(3874), 1, sym_argument_list, - STATE(5860), 1, - sym_initializer_list, - ACTIONS(6798), 10, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10661), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10675), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10663), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(10671), 3, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6800), 40, + anon_sym_LT, + ACTIONS(9707), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9709), 27, 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___extension__, - anon_sym_RBRACK_RBRACK, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_SEMI, + anon_sym_RBRACE, 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_DOT_STAR, - anon_sym_DASH_GT, - [65421] = 8, + anon_sym_COLON_RBRACK, + [63060] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 1, - anon_sym_LBRACE, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(7399), 1, - anon_sym_LPAREN2, - STATE(3723), 1, - sym_argument_list, - STATE(5901), 1, - sym_initializer_list, - ACTIONS(6798), 10, + ACTIONS(6783), 1, + anon_sym_requires, + ACTIONS(6777), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5696), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 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(6800), 40, + anon_sym_DASH_GT, + ACTIONS(7791), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, + 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___extension__, - anon_sym_RBRACK_RBRACK, 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -489354,22 +508439,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [65494] = 5, + anon_sym_DASH_GT_STAR, + [63131] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5245), 1, - anon_sym_using, - ACTIONS(5247), 6, + ACTIONS(10681), 1, + anon_sym_namespace, + ACTIONS(10272), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(5249), 47, + ACTIONS(10270), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -489417,48 +508501,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_explicit, anon_sym_template, anon_sym_operator, - [65561] = 7, + [63196] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_requires, - ACTIONS(6453), 2, - anon_sym_final, - anon_sym_override, - STATE(4992), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5609), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 16, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10677), 1, + anon_sym_LT_EQ_GT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10661), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10675), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9707), 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(8543), 32, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9709), 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_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -489470,40 +508565,40 @@ 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_COLON_RBRACK, + [63281] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [65632] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8189), 1, - anon_sym___attribute__, - ACTIONS(8191), 1, - anon_sym___attribute, - ACTIONS(8272), 1, - anon_sym_LBRACE, - ACTIONS(10453), 1, - anon_sym_COLON, - STATE(2829), 1, - sym__enum_base_clause, - STATE(2846), 1, - sym_enumerator_list, - STATE(3410), 1, - sym_attribute_specifier, - ACTIONS(7600), 16, + anon_sym_DASH_GT, + ACTIONS(10661), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9707), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -489513,19 +508608,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(7602), 32, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9709), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -489537,226 +508633,93 @@ 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, - [65709] = 28, + anon_sym_COLON_RBRACK, + [63362] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(9436), 1, - anon_sym_EQ, - ACTIONS(10180), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10305), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10307), 1, - anon_sym_AMP_AMP, - ACTIONS(10309), 1, - anon_sym_PIPE, - ACTIONS(10313), 1, - anon_sym_AMP, - ACTIONS(10319), 1, - anon_sym_GT_EQ, - ACTIONS(10323), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10325), 1, - anon_sym_or, - ACTIONS(10327), 1, - anon_sym_and, - ACTIONS(10329), 1, - anon_sym_bitor, - ACTIONS(10331), 1, - anon_sym_bitand, - ACTIONS(10455), 1, - anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10301), 2, + ACTIONS(6783), 1, + anon_sym_requires, + ACTIONS(6777), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5550), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10311), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10321), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10315), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10317), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9438), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_COLON_RBRACK, - [65822] = 52, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10341), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8422), 32, anon_sym_DOT_DOT_DOT, - ACTIONS(10343), 1, anon_sym_COMMA, - ACTIONS(10347), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10349), 1, - anon_sym_DASH, - ACTIONS(10351), 1, - anon_sym_PLUS, - ACTIONS(10353), 1, - anon_sym_STAR, - ACTIONS(10355), 1, - anon_sym_SLASH, - ACTIONS(10357), 1, - anon_sym_PERCENT, - ACTIONS(10359), 1, anon_sym_PIPE_PIPE, - ACTIONS(10361), 1, anon_sym_AMP_AMP, - ACTIONS(10363), 1, - anon_sym_PIPE, - ACTIONS(10365), 1, - anon_sym_CARET, - ACTIONS(10367), 1, - anon_sym_AMP, - ACTIONS(10369), 1, anon_sym_EQ_EQ, - ACTIONS(10371), 1, anon_sym_BANG_EQ, - ACTIONS(10373), 1, - anon_sym_GT, - ACTIONS(10375), 1, anon_sym_GT_EQ, - ACTIONS(10377), 1, - anon_sym_LT_EQ, - ACTIONS(10379), 1, - anon_sym_LT, - ACTIONS(10381), 1, - anon_sym_LT_LT, - ACTIONS(10383), 1, - anon_sym_GT_GT, - ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(10387), 1, - anon_sym_EQ, - ACTIONS(10389), 1, anon_sym_QMARK, - ACTIONS(10391), 1, anon_sym_STAR_EQ, - ACTIONS(10393), 1, anon_sym_SLASH_EQ, - ACTIONS(10395), 1, anon_sym_PERCENT_EQ, - ACTIONS(10397), 1, anon_sym_PLUS_EQ, - ACTIONS(10399), 1, anon_sym_DASH_EQ, - ACTIONS(10401), 1, anon_sym_LT_LT_EQ, - ACTIONS(10403), 1, anon_sym_GT_GT_EQ, - ACTIONS(10405), 1, anon_sym_AMP_EQ, - ACTIONS(10407), 1, anon_sym_CARET_EQ, - ACTIONS(10409), 1, anon_sym_PIPE_EQ, - ACTIONS(10413), 1, anon_sym_LT_EQ_GT, - ACTIONS(10415), 1, anon_sym_or, - ACTIONS(10417), 1, anon_sym_and, - ACTIONS(10419), 1, anon_sym_bitor, - ACTIONS(10421), 1, anon_sym_xor, - ACTIONS(10423), 1, anon_sym_bitand, - ACTIONS(10425), 1, anon_sym_not_eq, - ACTIONS(10431), 1, - anon_sym_DOT_STAR, - ACTIONS(10433), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(10457), 1, - anon_sym_RPAREN, - STATE(1667), 1, - sym__binary_fold_operator, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - STATE(10893), 1, - sym__fold_operator, - ACTIONS(10427), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10411), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [65983] = 7, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [63433] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_requires, - ACTIONS(6453), 2, - anon_sym_final, - anon_sym_override, - STATE(4992), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5614), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8559), 16, + ACTIONS(6650), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10568), 1, + anon_sym_LPAREN2, + ACTIONS(10683), 1, + anon_sym_LBRACK, + STATE(5409), 1, + sym_parameter_list, + STATE(4910), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9476), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -489771,19 +508734,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(8561), 32, + ACTIONS(9478), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -489795,31 +508759,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_or, - anon_sym_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, - [66054] = 4, + [63506] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10459), 1, - anon_sym_namespace, - ACTIONS(9926), 7, + ACTIONS(5600), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5605), 1, + anon_sym_using, + ACTIONS(5607), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(9924), 47, + ACTIONS(5609), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -489867,233 +508832,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_explicit, anon_sym_template, anon_sym_operator, - [66119] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4775), 1, - sym_attribute_specifier, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7063), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7061), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [66186] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4781), 1, - sym_attribute_specifier, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7067), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7065), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [66253] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10293), 1, - anon_sym_COLON_COLON, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10461), 1, - anon_sym_RPAREN, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, - sym_type_specifier, - STATE(8605), 1, - sym__scope_resolution, - STATE(10027), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4954), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [66372] = 7, + [63573] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6455), 1, + ACTIONS(6783), 1, anon_sym_requires, - ACTIONS(6453), 2, + ACTIONS(6777), 2, anon_sym_final, anon_sym_override, - STATE(4992), 2, + STATE(5261), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5531), 2, + STATE(5681), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7546), 16, + ACTIONS(7968), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -490110,7 +508863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7544), 32, + ACTIONS(7966), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -490143,107 +508896,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [66443] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4748), 1, - sym_attribute_specifier, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7059), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7057), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [66510] = 11, + [63644] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10303), 3, + ACTIONS(10661), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10675), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9282), 14, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9707), 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(9284), 29, + ACTIONS(9709), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -490273,18 +508966,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_COLON_RBRACK, - [66589] = 7, + [63727] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6623), 1, - anon_sym_decltype, - ACTIONS(7183), 1, + ACTIONS(4676), 1, anon_sym_LBRACE, - ACTIONS(10234), 1, - sym_auto, - STATE(3963), 1, - sym_decltype_auto, - ACTIONS(6798), 10, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(8626), 1, + anon_sym_LPAREN2, + STATE(5772), 1, + sym_argument_list, + STATE(7298), 1, + sym_initializer_list, + ACTIONS(7223), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -490295,10 +508990,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(6800), 41, + ACTIONS(7225), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -490337,72 +509031,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [66660] = 24, + [63800] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10685), 1, + anon_sym_friend, + ACTIONS(3118), 7, anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10307), 1, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(10309), 1, - anon_sym_PIPE, - ACTIONS(10313), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3128), 47, anon_sym_AMP, - ACTIONS(10319), 1, - anon_sym_GT_EQ, - ACTIONS(10323), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10327), 1, - anon_sym_and, - ACTIONS(10329), 1, - anon_sym_bitor, - ACTIONS(10331), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9282), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(10301), 2, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [63865] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6650), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10568), 1, + anon_sym_LPAREN2, + ACTIONS(10683), 1, + anon_sym_LBRACK, + STATE(5409), 1, + sym_parameter_list, + STATE(4910), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9480), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10311), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10321), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10315), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10317), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 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(9482), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym_RBRACE, + 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, @@ -490417,16 +509149,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_COLON_RBRACK, - [66765] = 5, + anon_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, + [63938] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6445), 4, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10689), 1, + anon_sym_LBRACK, + STATE(4762), 1, + sym_new_declarator, + STATE(5618), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9256), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_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, - ACTIONS(6447), 10, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9258), 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, @@ -490437,28 +509211,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(5253), 19, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + [64011] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7180), 1, + anon_sym_LBRACK_LBRACK, + STATE(4755), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8833), 24, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + 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_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8835), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(5260), 22, + anon_sym_COLON_RBRACK, + [64078] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7180), 1, + anon_sym_LBRACK_LBRACK, + STATE(4755), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9071), 24, aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + 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_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9073), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [64145] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2248), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_class, + ACTIONS(2252), 1, + anon_sym_struct, + ACTIONS(2254), 1, + anon_sym_union, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10691), 1, + anon_sym_RPAREN, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, + sym__scope_resolution, + STATE(9814), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5167), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [64264] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10689), 1, + anon_sym_LBRACK, + STATE(4974), 1, + sym_new_declarator, + STATE(5578), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9274), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -490472,78 +509462,167 @@ 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_bitor, anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9276), 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_DOT, - sym_identifier, - [66832] = 22, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [64337] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(10309), 1, - anon_sym_PIPE, - ACTIONS(10313), 1, + ACTIONS(10469), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10489), 1, + anon_sym_EQ, + ACTIONS(10667), 1, anon_sym_AMP, - ACTIONS(10319), 1, + ACTIONS(10673), 1, anon_sym_GT_EQ, - ACTIONS(10323), 1, + ACTIONS(10677), 1, anon_sym_LT_EQ_GT, - ACTIONS(10329), 1, - anon_sym_bitor, - ACTIONS(10331), 1, + ACTIONS(10679), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(10693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10695), 1, + anon_sym_AMP_AMP, + ACTIONS(10697), 1, + anon_sym_PIPE, + ACTIONS(10699), 1, + anon_sym_QMARK, + ACTIONS(10701), 1, + anon_sym_or, + ACTIONS(10703), 1, + anon_sym_and, + ACTIONS(10705), 1, + anon_sym_bitor, + STATE(3874), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10301), 2, + ACTIONS(10661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10311), 2, + ACTIONS(10665), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(10321), 2, + ACTIONS(10675), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9282), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(10303), 3, + ACTIONS(10663), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10669), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10671), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10491), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_COLON_RBRACK, + [64450] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6742), 2, + anon_sym_final, + anon_sym_override, + STATE(4737), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9139), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10315), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10317), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 22, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9141), 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_SEMI, - anon_sym_RBRACE, + 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, @@ -490558,68 +509637,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_COLON_RBRACK, - [66933] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10313), 1, - anon_sym_AMP, - ACTIONS(10319), 1, - anon_sym_GT_EQ, - ACTIONS(10323), 1, anon_sym_LT_EQ_GT, - ACTIONS(10331), 1, + anon_sym_bitor, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10301), 2, + anon_sym_requires, + [64517] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4969), 1, + sym_attribute_specifier, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7553), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7551), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [64584] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10707), 1, + anon_sym_namespace, + ACTIONS(10272), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(10270), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [64649] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8499), 1, + anon_sym___attribute__, + ACTIONS(8501), 1, + anon_sym___attribute, + ACTIONS(8624), 1, + anon_sym_LBRACE, + ACTIONS(10709), 1, + anon_sym_COLON, + STATE(2916), 1, + sym__enum_base_clause, + STATE(2965), 1, + sym_enumerator_list, + STATE(3555), 1, + sym_attribute_specifier, + ACTIONS(8006), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10311), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10321), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10315), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10317), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9282), 4, - anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(9284), 23, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8008), 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_SEMI, - anon_sym_RBRACE, + 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, @@ -490631,15 +509825,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_COLON_RBRACK, - [67030] = 3, + 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, + [64726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5231), 7, + ACTIONS(5591), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -490647,7 +509847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(5229), 48, + ACTIONS(5589), 48, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -490696,64 +509896,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_explicit, anon_sym_template, anon_sym_operator, - [67093] = 19, + [64789] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(10313), 1, + ACTIONS(10538), 1, + anon_sym_EQ, + ACTIONS(10667), 1, anon_sym_AMP, - ACTIONS(10319), 1, + ACTIONS(10673), 1, anon_sym_GT_EQ, - ACTIONS(10323), 1, + ACTIONS(10677), 1, anon_sym_LT_EQ_GT, - ACTIONS(10331), 1, + ACTIONS(10679), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(10693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10695), 1, + anon_sym_AMP_AMP, + ACTIONS(10697), 1, + anon_sym_PIPE, + ACTIONS(10701), 1, + anon_sym_or, + ACTIONS(10703), 1, + anon_sym_and, + ACTIONS(10705), 1, + anon_sym_bitor, + STATE(3874), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10301), 2, + ACTIONS(10661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10321), 2, + ACTIONS(10665), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10675), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10303), 3, + ACTIONS(10663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10315), 3, + ACTIONS(10669), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10317), 3, + ACTIONS(10671), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9282), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(9284), 23, + ACTIONS(10540), 20, 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, @@ -490770,65 +509978,46 @@ 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_COLON_RBRACK, - [67188] = 17, + [64898] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10711), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(10713), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10319), 1, - anon_sym_GT_EQ, - ACTIONS(10323), 1, - anon_sym_LT_EQ_GT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10301), 2, + STATE(1977), 1, + sym_parameter_list, + STATE(5085), 1, + sym__function_declarator_seq, + ACTIONS(10202), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10321), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10315), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10317), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9282), 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(9284), 24, + anon_sym_DOT, + ACTIONS(10200), 33, 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -490843,64 +510032,59 @@ 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_COLON_RBRACK, - [67279] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10319), 1, - anon_sym_GT_EQ, - ACTIONS(10323), 1, - anon_sym_LT_EQ_GT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10301), 2, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [64969] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9136), 1, + anon_sym_requires, + ACTIONS(9133), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5550), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10321), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10317), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9282), 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(9284), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8422), 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_SEMI, - anon_sym_RBRACE, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -490912,56 +510096,175 @@ 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_COLON_RBRACK, - [67368] = 14, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [65040] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10715), 1, + anon_sym_friend, + ACTIONS(3118), 7, anon_sym_LPAREN2, - ACTIONS(9236), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3128), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - ACTIONS(9240), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [65105] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6594), 1, + anon_sym_const, + ACTIONS(6605), 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(10323), 1, + ACTIONS(6601), 18, + anon_sym___extension__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + ACTIONS(6598), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, + anon_sym_or, + 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(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10301), 2, + anon_sym_GT2, + [65172] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10689), 1, + anon_sym_LBRACK, + STATE(4953), 1, + sym_new_declarator, + STATE(5589), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9226), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10321), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9282), 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(9284), 28, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9228), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -490970,8 +510273,6 @@ 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -490986,130 +510287,165 @@ 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_COLON_RBRACK, - [67453] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10301), 2, + anon_sym_DASH_GT_STAR, + [65245] = 52, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10719), 1, + anon_sym_COMMA, + ACTIONS(10721), 1, + anon_sym_RPAREN, + ACTIONS(10723), 1, anon_sym_DASH, + ACTIONS(10725), 1, anon_sym_PLUS, - ACTIONS(10303), 3, + ACTIONS(10727), 1, anon_sym_STAR, + ACTIONS(10729), 1, anon_sym_SLASH, + ACTIONS(10731), 1, anon_sym_PERCENT, - ACTIONS(9282), 12, + ACTIONS(10733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10735), 1, + anon_sym_AMP_AMP, + ACTIONS(10737), 1, anon_sym_PIPE, + ACTIONS(10739), 1, anon_sym_CARET, + ACTIONS(10741), 1, anon_sym_AMP, + ACTIONS(10743), 1, + anon_sym_EQ_EQ, + ACTIONS(10745), 1, + anon_sym_BANG_EQ, + ACTIONS(10747), 1, anon_sym_GT, + ACTIONS(10749), 1, + anon_sym_GT_EQ, + ACTIONS(10751), 1, anon_sym_LT_EQ, + ACTIONS(10753), 1, anon_sym_LT, + ACTIONS(10755), 1, anon_sym_LT_LT, + ACTIONS(10757), 1, anon_sym_GT_GT, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10761), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(9284), 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, + ACTIONS(10763), 1, anon_sym_QMARK, + ACTIONS(10765), 1, anon_sym_STAR_EQ, + ACTIONS(10767), 1, anon_sym_SLASH_EQ, + ACTIONS(10769), 1, anon_sym_PERCENT_EQ, + ACTIONS(10771), 1, anon_sym_PLUS_EQ, + ACTIONS(10773), 1, anon_sym_DASH_EQ, + ACTIONS(10775), 1, anon_sym_LT_LT_EQ, + ACTIONS(10777), 1, anon_sym_GT_GT_EQ, + ACTIONS(10779), 1, anon_sym_AMP_EQ, + ACTIONS(10781), 1, anon_sym_CARET_EQ, + ACTIONS(10783), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(10787), 1, anon_sym_LT_EQ_GT, + ACTIONS(10789), 1, + anon_sym_or, + ACTIONS(10791), 1, + anon_sym_and, + ACTIONS(10793), 1, anon_sym_bitor, + ACTIONS(10795), 1, + anon_sym_xor, + ACTIONS(10797), 1, anon_sym_bitand, + ACTIONS(10799), 1, anon_sym_not_eq, - anon_sym_COLON_RBRACK, - [67534] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(10805), 1, + anon_sym_DOT_STAR, + ACTIONS(10807), 1, + anon_sym_DASH_GT_STAR, + STATE(1712), 1, + sym__binary_fold_operator, + STATE(5663), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(5664), 1, + sym_subscript_argument_list, + STATE(10629), 1, + sym__fold_operator, + ACTIONS(10801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, + ACTIONS(10803), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10301), 2, + ACTIONS(10785), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [65406] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10637), 1, + anon_sym_requires, + ACTIONS(10634), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5581), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10321), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9282), 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(9284), 29, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8907), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -491121,47 +510457,70 @@ 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_COLON_RBRACK, - [67617] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [65477] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6226), 1, - anon_sym_const, - ACTIONS(6237), 1, - anon_sym_AMP, - ACTIONS(6230), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4922), 1, + anon_sym_LBRACE, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(7687), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(6235), 10, + STATE(3894), 1, + sym_argument_list, + STATE(5969), 1, + sym_initializer_list, + ACTIONS(7223), 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, + anon_sym_const, anon_sym_DOT, - ACTIONS(6228), 18, + ACTIONS(7225), 40, + 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___extension__, + anon_sym_RBRACK_RBRACK, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -491174,10 +510533,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6233), 18, - anon_sym___extension__, + [65550] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10809), 1, + anon_sym_friend, + ACTIONS(3118), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3128), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -491191,84 +510582,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - [67688] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, + sym_primitive_type, anon_sym_enum, - ACTIONS(1888), 1, anon_sym_class, - ACTIONS(1890), 1, anon_sym_struct, - ACTIONS(1892), 1, anon_sym_union, - ACTIONS(1918), 1, + anon_sym_typename, + sym_identifier, sym_auto, - ACTIONS(1920), 1, anon_sym_decltype, - ACTIONS(4800), 1, + anon_sym_explicit, anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10293), 1, + anon_sym_operator, + [65615] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4795), 1, + sym_attribute_specifier, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7429), 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, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(10463), 1, - anon_sym_RPAREN, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, - sym_type_specifier, - STATE(8605), 1, - sym__scope_resolution, - STATE(9941), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4954), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, + ACTIONS(7427), 39, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -491281,145 +510650,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [67807] = 5, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [65682] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6861), 1, - anon_sym_LBRACK_LBRACK, - STATE(4558), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8725), 24, - aux_sym_preproc_elif_token1, + ACTIONS(10814), 1, + anon_sym_requires, + ACTIONS(10811), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5623), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8913), 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___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8915), 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, + [65753] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6650), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10568), 1, + anon_sym_LPAREN2, + ACTIONS(10683), 1, + anon_sym_LBRACK, + STATE(5409), 1, + sym_parameter_list, + STATE(4910), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9484), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8727), 28, + anon_sym_DASH_GT, + ACTIONS(9486), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [67874] = 31, + anon_sym_DASH_GT_STAR, + [65826] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10293), 1, + STATE(4887), 1, + sym_attribute_specifier, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7415), 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, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(10465), 1, - anon_sym_RPAREN, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, + ACTIONS(7413), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [65893] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6479), 1, + anon_sym_LBRACK, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(10348), 1, + anon_sym_AMP_AMP, + ACTIONS(10350), 1, + anon_sym_AMP, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10819), 1, + anon_sym_DASH_GT, + ACTIONS(10824), 1, + anon_sym_requires, + STATE(4333), 1, sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, - sym_type_specifier, - STATE(8605), 1, - sym__scope_resolution, - STATE(9671), 1, - sym_type_descriptor, - ACTIONS(71), 2, + STATE(7357), 1, + sym__function_attributes_start, + STATE(7604), 1, + sym_ref_qualifier, + STATE(8587), 1, + sym__function_attributes_end, + STATE(8588), 1, + sym_trailing_return_type, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10365), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4954), 2, + ACTIONS(10821), 2, + anon_sym_final, + anon_sym_override, + STATE(6144), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6360), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8522), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7737), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6481), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + ACTIONS(10352), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -491431,46 +510934,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [67993] = 5, + [66010] = 8, ACTIONS(3), 1, sym_comment, - STATE(4591), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10467), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6629), 11, + ACTIONS(4910), 1, + anon_sym_LBRACE, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(8592), 1, + anon_sym_LPAREN2, + STATE(5862), 1, + sym_argument_list, + STATE(7380), 1, + sym_initializer_list, + ACTIONS(7223), 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(7225), 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_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6627), 39, - anon_sym_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -491484,24 +510986,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [68060] = 5, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + anon_sym_GT2, + [66083] = 5, ACTIONS(3), 1, sym_comment, - STATE(4809), 1, + STATE(4993), 1, sym_attribute_specifier, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7093), 13, + ACTIONS(7523), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -491515,7 +511021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7091), 39, + ACTIONS(7521), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -491555,25 +511061,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [68127] = 3, + [66150] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7255), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10827), 1, + anon_sym_friend, + ACTIONS(3118), 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, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7253), 41, + ACTIONS(3128), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -491582,12 +511083,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -491611,19 +511110,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, sym_identifier, + sym_auto, anon_sym_decltype, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - [68190] = 5, + [66215] = 5, ACTIONS(3), 1, sym_comment, - STATE(4813), 1, + STATE(5027), 1, sym_attribute_specifier, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7097), 13, + ACTIONS(7433), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -491637,7 +511144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7095), 39, + ACTIONS(7431), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -491677,104 +511184,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [68257] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10184), 1, - anon_sym_EQ, - ACTIONS(10305), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10307), 1, - anon_sym_AMP_AMP, - ACTIONS(10309), 1, - anon_sym_PIPE, - ACTIONS(10313), 1, - anon_sym_AMP, - ACTIONS(10319), 1, - anon_sym_GT_EQ, - ACTIONS(10323), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10325), 1, - anon_sym_or, - ACTIONS(10327), 1, - anon_sym_and, - ACTIONS(10329), 1, - anon_sym_bitor, - ACTIONS(10331), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10301), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10311), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10321), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10303), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10315), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10317), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10186), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - 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_COLON_RBRACK, - [68366] = 7, + [66282] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8177), 1, + ACTIONS(8520), 1, anon_sym_requires, - ACTIONS(8174), 2, + ACTIONS(8517), 2, anon_sym_final, anon_sym_override, - STATE(4992), 2, + STATE(5261), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5531), 2, + STATE(5696), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7546), 16, + ACTIONS(7789), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -491791,7 +511215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7544), 32, + ACTIONS(7791), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -491824,138 +511248,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [68437] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(8219), 1, - anon_sym_LPAREN2, - STATE(5801), 1, - sym_argument_list, - STATE(7210), 1, - sym_initializer_list, - ACTIONS(6798), 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(6800), 40, - 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___extension__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [68510] = 31, + [66353] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(10657), 1, anon_sym_typename, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - ACTIONS(10470), 1, + ACTIONS(10829), 1, anon_sym_RPAREN, - STATE(2634), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, + STATE(7223), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(9789), 1, + STATE(10151), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -491977,21 +511336,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [68629] = 8, + [66472] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, - anon_sym_LBRACE, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10472), 1, - anon_sym_LBRACK, - STATE(4903), 1, - sym_new_declarator, - STATE(5600), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8841), 19, + ACTIONS(10831), 2, + anon_sym_final, + anon_sym_override, + STATE(4679), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9143), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -492001,25 +511355,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(8843), 30, + ACTIONS(9145), 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, @@ -492027,7 +511382,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, @@ -492041,22 +511395,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68702] = 8, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [66539] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6286), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10209), 1, + ACTIONS(10711), 1, anon_sym_LPAREN2, - ACTIONS(10474), 1, + ACTIONS(10713), 1, anon_sym_LBRACK, - STATE(5255), 1, + STATE(1977), 1, sym_parameter_list, - STATE(4833), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8931), 19, + STATE(5085), 1, + sym__function_declarator_seq, + ACTIONS(10206), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -492075,16 +511428,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8933), 30, + ACTIONS(10204), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -492106,83 +511458,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68775] = 30, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [66610] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6111), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(9997), 1, + ACTIONS(10834), 1, + anon_sym_friend, + ACTIONS(3118), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(9999), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3128), 47, anon_sym_AMP, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10254), 1, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10437), 1, - anon_sym_DASH_GT, - ACTIONS(10478), 1, - anon_sym_requires, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(7227), 1, - sym__function_attributes_start, - STATE(7458), 1, - sym_ref_qualifier, - STATE(8452), 1, - sym__function_attributes_end, - STATE(8458), 1, - sym_trailing_return_type, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(6036), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6264), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8457), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7621), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6113), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - ACTIONS(10001), 12, - anon_sym___extension__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -492194,21 +511509,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [68892] = 7, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [66675] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8216), 1, - anon_sym_requires, - ACTIONS(8213), 2, - anon_sym_final, - anon_sym_override, - STATE(4992), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5590), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 16, + ACTIONS(10711), 1, + anon_sym_LPAREN2, + ACTIONS(10713), 1, + anon_sym_LBRACK, + STATE(1977), 1, + sym_parameter_list, + STATE(5085), 1, + sym__function_declarator_seq, + ACTIONS(10210), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -492223,19 +511549,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(7627), 32, + ACTIONS(10208), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -492247,32 +511573,215 @@ 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, - [68963] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8768), 1, - anon_sym_requires, - ACTIONS(8765), 2, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - STATE(4992), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5603), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 16, + anon_sym_requires, + [66746] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5000), 1, + sym_attribute_specifier, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7425), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7423), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [66813] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5595), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(5593), 48, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_using, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [66876] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10836), 1, + anon_sym_namespace, + ACTIONS(10272), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(10270), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [66941] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10711), 1, + anon_sym_LPAREN2, + ACTIONS(10713), 1, + anon_sym_LBRACK, + STATE(1977), 1, + sym_parameter_list, + STATE(5085), 1, + sym__function_declarator_seq, + ACTIONS(10186), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -492287,19 +511796,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(8089), 32, + ACTIONS(10184), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -492311,59 +511820,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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69034] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10282), 1, - anon_sym_requires, - ACTIONS(10279), 2, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - STATE(4992), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5609), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 16, + anon_sym_requires, + [67012] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10542), 1, + anon_sym_EQ, + ACTIONS(10667), 1, + anon_sym_AMP, + ACTIONS(10673), 1, + anon_sym_GT_EQ, + ACTIONS(10677), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10679), 1, + anon_sym_bitand, + ACTIONS(10693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10695), 1, + anon_sym_AMP_AMP, + ACTIONS(10697), 1, + anon_sym_PIPE, + ACTIONS(10701), 1, + anon_sym_or, + ACTIONS(10703), 1, + anon_sym_and, + ACTIONS(10705), 1, + anon_sym_bitor, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10661), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10665), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10675), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10669), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10671), 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(8543), 32, + ACTIONS(10544), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -492375,93 +511913,45 @@ 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, - [69105] = 31, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_COLON_RBRACK, + [67121] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10293), 1, + ACTIONS(10838), 1, + anon_sym_typedef, + ACTIONS(3118), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(10480), 1, - anon_sym_RPAREN, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, - sym_type_specifier, - STATE(8605), 1, - sym__scope_resolution, - STATE(9887), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4954), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(3128), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -492474,253 +511964,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [69224] = 28, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [67186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(7158), 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(10180), 1, + ACTIONS(7160), 45, anon_sym_DOT_DOT_DOT, - ACTIONS(10188), 1, - anon_sym_EQ, - ACTIONS(10305), 1, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(10307), 1, anon_sym_AMP_AMP, - ACTIONS(10309), 1, - anon_sym_PIPE, - ACTIONS(10313), 1, - anon_sym_AMP, - ACTIONS(10319), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(10323), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(10325), 1, anon_sym_or, - ACTIONS(10327), 1, anon_sym_and, - ACTIONS(10329), 1, anon_sym_bitor, - ACTIONS(10331), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(10455), 1, - anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10301), 2, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [67249] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4910), 1, + anon_sym_LBRACE, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(8592), 1, + anon_sym_LPAREN2, + STATE(5807), 1, + sym_argument_list, + STATE(7256), 1, + sym_initializer_list, + ACTIONS(7223), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10311), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10321), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10303), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10315), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10317), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10190), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_COLON_RBRACK, - [69337] = 52, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10341), 1, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7225), 38, anon_sym_DOT_DOT_DOT, - ACTIONS(10343), 1, anon_sym_COMMA, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10349), 1, - anon_sym_DASH, - ACTIONS(10351), 1, - anon_sym_PLUS, - ACTIONS(10353), 1, anon_sym_STAR, - ACTIONS(10355), 1, - anon_sym_SLASH, - ACTIONS(10357), 1, anon_sym_PERCENT, - ACTIONS(10359), 1, anon_sym_PIPE_PIPE, - ACTIONS(10361), 1, anon_sym_AMP_AMP, - ACTIONS(10363), 1, - anon_sym_PIPE, - ACTIONS(10365), 1, anon_sym_CARET, - ACTIONS(10367), 1, - anon_sym_AMP, - ACTIONS(10369), 1, anon_sym_EQ_EQ, - ACTIONS(10371), 1, anon_sym_BANG_EQ, - ACTIONS(10373), 1, - anon_sym_GT, - ACTIONS(10375), 1, - anon_sym_GT_EQ, - ACTIONS(10377), 1, - anon_sym_LT_EQ, - ACTIONS(10379), 1, - anon_sym_LT, - ACTIONS(10381), 1, anon_sym_LT_LT, - ACTIONS(10383), 1, - anon_sym_GT_GT, - ACTIONS(10385), 1, + anon_sym___extension__, anon_sym_LBRACK, - ACTIONS(10387), 1, - anon_sym_EQ, - ACTIONS(10389), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - ACTIONS(10391), 1, - anon_sym_STAR_EQ, - ACTIONS(10393), 1, - anon_sym_SLASH_EQ, - ACTIONS(10395), 1, - anon_sym_PERCENT_EQ, - ACTIONS(10397), 1, - anon_sym_PLUS_EQ, - ACTIONS(10399), 1, - anon_sym_DASH_EQ, - ACTIONS(10401), 1, - anon_sym_LT_LT_EQ, - ACTIONS(10403), 1, - anon_sym_GT_GT_EQ, - ACTIONS(10405), 1, - anon_sym_AMP_EQ, - ACTIONS(10407), 1, - anon_sym_CARET_EQ, - ACTIONS(10409), 1, - anon_sym_PIPE_EQ, - ACTIONS(10413), 1, anon_sym_LT_EQ_GT, - ACTIONS(10415), 1, anon_sym_or, - ACTIONS(10417), 1, anon_sym_and, - ACTIONS(10419), 1, anon_sym_bitor, - ACTIONS(10421), 1, anon_sym_xor, - ACTIONS(10423), 1, anon_sym_bitand, - ACTIONS(10425), 1, anon_sym_not_eq, - ACTIONS(10431), 1, - anon_sym_DOT_STAR, - ACTIONS(10433), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(10482), 1, - anon_sym_RPAREN, - STATE(1667), 1, - sym__binary_fold_operator, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - STATE(10893), 1, - sym__fold_operator, - ACTIONS(10427), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10411), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [69498] = 7, + anon_sym_GT2, + [67322] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10487), 1, - anon_sym_requires, - ACTIONS(10484), 2, - anon_sym_final, - anon_sym_override, - STATE(4992), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5614), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8559), 16, + ACTIONS(6594), 1, + anon_sym_const, + ACTIONS(6605), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_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(8561), 32, + ACTIONS(6601), 18, + anon_sym___extension__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + ACTIONS(6598), 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_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, @@ -492731,22 +512164,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69569] = 8, + anon_sym_DASH_GT, + [67389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6286), 1, + ACTIONS(10840), 1, + anon_sym_friend, + ACTIONS(3118), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(10209), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3128), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [67454] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10842), 1, anon_sym_LPAREN2, - ACTIONS(10474), 1, + ACTIONS(10844), 1, anon_sym_LBRACK, - STATE(5255), 1, + STATE(1980), 1, sym_parameter_list, - STATE(4833), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9127), 19, + STATE(5229), 1, + sym__function_declarator_seq, + ACTIONS(10198), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -492756,25 +512247,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(9129), 30, + ACTIONS(10196), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -492782,7 +512272,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, @@ -492796,74 +512285,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69642] = 31, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [67525] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10846), 1, + anon_sym_friend, + ACTIONS(3118), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3128), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [67590] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(10657), 1, anon_sym_typename, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - ACTIONS(10490), 1, + ACTIONS(10848), 1, anon_sym_RPAREN, - STATE(2634), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(7086), 1, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, sym_splice_specifier, - STATE(7094), 1, + STATE(8711), 1, + sym__scope_resolution, + STATE(10095), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5167), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [67709] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2248), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_class, + ACTIONS(2252), 1, + anon_sym_struct, + ACTIONS(2254), 1, + anon_sym_union, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10850), 1, + anon_sym_RPAREN, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7223), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(10011), 1, + STATE(10005), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -492885,16 +512527,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [69761] = 5, + [67828] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6349), 2, - anon_sym_final, - anon_sym_override, - STATE(4625), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(8774), 18, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(6572), 1, + anon_sym_LBRACE, + ACTIONS(10852), 1, + anon_sym_LT, + STATE(4045), 1, + sym_template_argument_list, + ACTIONS(6574), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -492905,15 +512549,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8776), 33, + ACTIONS(6567), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -492922,8 +512566,9 @@ 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_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -492946,34 +512591,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_requires, - [69828] = 8, + [67899] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 1, + ACTIONS(4922), 1, anon_sym_LBRACE, - ACTIONS(6802), 1, + ACTIONS(7227), 1, anon_sym_COLON_COLON, - ACTIONS(8274), 1, + ACTIONS(7687), 1, anon_sym_LPAREN2, - STATE(5660), 1, + STATE(3892), 1, sym_argument_list, - STATE(7265), 1, + STATE(5964), 1, sym_initializer_list, - ACTIONS(6798), 12, + ACTIONS(7223), 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, anon_sym_const, anon_sym_DOT, - ACTIONS(6800), 38, + ACTIONS(7225), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -492983,8 +512625,11 @@ 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___extension__, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, @@ -493011,42 +512656,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [69901] = 5, + [67972] = 7, ACTIONS(3), 1, sym_comment, - STATE(4815), 1, - sym_attribute_specifier, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7101), 13, + ACTIONS(10842), 1, + anon_sym_LPAREN2, + ACTIONS(10844), 1, + anon_sym_LBRACK, + STATE(1980), 1, + sym_parameter_list, + STATE(5229), 1, + sym__function_declarator_seq, + ACTIONS(10202), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10200), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [68043] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(5665), 1, + sym_auto, + ACTIONS(5667), 1, + anon_sym_decltype, + ACTIONS(10647), 1, + anon_sym_LT, + ACTIONS(10857), 1, + anon_sym_EQ, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4318), 1, + sym_template_argument_list, + STATE(4991), 1, + sym_decltype_auto, + ACTIONS(10855), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5659), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5643), 7, + anon_sym_DOT_DOT_DOT, 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, anon_sym_LBRACK_COLON, - ACTIONS(7099), 39, + ACTIONS(5636), 34, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, + anon_sym___attribute__, + 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, @@ -493071,18 +512788,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - anon_sym_decltype, anon_sym_template, anon_sym_operator, - [69968] = 5, + [68126] = 5, ACTIONS(3), 1, sym_comment, - STATE(4704), 1, + STATE(4863), 1, sym_attribute_specifier, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7105), 13, + ACTIONS(7549), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -493096,7 +512812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7103), 39, + ACTIONS(7547), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -493136,74 +512852,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [70035] = 26, + [68193] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10192), 1, + ACTIONS(6783), 1, + anon_sym_requires, + ACTIONS(6777), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5623), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8913), 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, - ACTIONS(10305), 1, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8915), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - ACTIONS(10307), 1, anon_sym_AMP_AMP, - ACTIONS(10309), 1, - anon_sym_PIPE, - ACTIONS(10313), 1, - anon_sym_AMP, - ACTIONS(10319), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(10323), 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, - ACTIONS(10325), 1, anon_sym_or, - ACTIONS(10327), 1, anon_sym_and, - ACTIONS(10329), 1, anon_sym_bitor, - ACTIONS(10331), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10301), 2, + anon_sym_DASH_GT_STAR, + [68264] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10711), 1, + anon_sym_LPAREN2, + ACTIONS(10713), 1, + anon_sym_LBRACK, + STATE(1977), 1, + sym_parameter_list, + STATE(5085), 1, + sym__function_declarator_seq, + ACTIONS(10194), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10311), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10321), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10315), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(10192), 33, + 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_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, - ACTIONS(10317), 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [68335] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6650), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10568), 1, + anon_sym_LPAREN2, + ACTIONS(10683), 1, + anon_sym_LBRACK, + STATE(5409), 1, + sym_parameter_list, + STATE(4910), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9439), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10194), 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(9441), 30, 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -493218,65 +513037,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_COLON_RBRACK, - [70144] = 8, + anon_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, + [68408] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 1, - anon_sym_LBRACE, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(8274), 1, - anon_sym_LPAREN2, - STATE(5662), 1, - sym_argument_list, - STATE(7145), 1, - sym_initializer_list, - ACTIONS(6798), 12, + ACTIONS(6694), 2, + anon_sym_final, + anon_sym_override, + STATE(4679), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9139), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, 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(6800), 38, + ACTIONS(9141), 31, 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___extension__, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_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, @@ -493284,42 +513106,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [70217] = 4, + anon_sym_requires, + [68475] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(10492), 1, - anon_sym_namespace, - ACTIONS(9926), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(6479), 1, + anon_sym_LBRACK, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(10348), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(9924), 47, + ACTIONS(10350), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10582), 1, anon_sym___attribute__, + ACTIONS(10584), 1, anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10819), 1, + anon_sym_DASH_GT, + ACTIONS(10861), 1, + anon_sym_requires, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(7350), 1, + sym__function_attributes_start, + STATE(7569), 1, + sym_ref_qualifier, + STATE(8515), 1, + sym__function_attributes_end, + STATE(8526), 1, + sym_trailing_return_type, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(6144), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6360), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8522), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7736), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6481), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + ACTIONS(10352), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -493331,55 +513194,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + [68592] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2248), 1, anon_sym_enum, + ACTIONS(2250), 1, anon_sym_class, + ACTIONS(2252), 1, anon_sym_struct, + ACTIONS(2254), 1, anon_sym_union, - anon_sym_typename, - sym_identifier, + ACTIONS(2280), 1, sym_auto, + ACTIONS(2282), 1, anon_sym_decltype, - anon_sym_explicit, + ACTIONS(5160), 1, anon_sym_template, - anon_sym_operator, - [70282] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10494), 1, - anon_sym_friend, - ACTIONS(2758), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - ACTIONS(2768), 47, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, + ACTIONS(10863), 1, + anon_sym_RPAREN, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, + sym__scope_resolution, + STATE(9915), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5167), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(3100), 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(67), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -493392,24 +513282,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [70347] = 3, + [68711] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5229), 20, + ACTIONS(8499), 1, + anon_sym___attribute__, + ACTIONS(8501), 1, + anon_sym___attribute, + ACTIONS(8624), 1, + anon_sym_LBRACE, + ACTIONS(10709), 1, + anon_sym_COLON, + STATE(2929), 1, + sym__enum_base_clause, + STATE(3008), 1, + sym_enumerator_list, + STATE(3544), 1, + sym_attribute_specifier, + ACTIONS(8000), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -493423,24 +513313,149 @@ 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_DOT, + anon_sym_DASH_GT, + ACTIONS(8002), 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, + [68788] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, anon_sym_DOT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(5231), 35, + ACTIONS(10663), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(9707), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9709), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_COLON_RBRACK, + [68867] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10711), 1, anon_sym_LPAREN2, + ACTIONS(10713), 1, + anon_sym_LBRACK, + STATE(1977), 1, + sym_parameter_list, + STATE(5085), 1, + sym__function_declarator_seq, + ACTIONS(10198), 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(10196), 33, + 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_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -493462,45 +513477,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [70410] = 5, + [68938] = 6, ACTIONS(3), 1, sym_comment, - STATE(4870), 1, - sym_attribute_specifier, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7125), 13, - anon_sym_DOT_DOT_DOT, + STATE(4735), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6999), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(10865), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7525), 11, 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_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7123), 39, + ACTIONS(7528), 37, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, + anon_sym___attribute__, + 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, @@ -493524,166 +513537,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [70477] = 28, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [69007] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10180), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10196), 1, - anon_sym_EQ, - ACTIONS(10305), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10307), 1, - anon_sym_AMP_AMP, - ACTIONS(10309), 1, - anon_sym_PIPE, - ACTIONS(10313), 1, - anon_sym_AMP, - ACTIONS(10319), 1, - anon_sym_GT_EQ, - ACTIONS(10323), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10325), 1, - anon_sym_or, - ACTIONS(10327), 1, - anon_sym_and, - ACTIONS(10329), 1, - anon_sym_bitor, - ACTIONS(10331), 1, - anon_sym_bitand, - ACTIONS(10455), 1, - anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10301), 2, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(6572), 1, + anon_sym_LBRACE, + ACTIONS(8701), 1, + anon_sym_LT, + STATE(4811), 1, + sym_template_argument_list, + ACTIONS(6574), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10311), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10321), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10303), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10315), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10317), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10198), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_COLON_RBRACK, - [70590] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6861), 1, - anon_sym_LBRACK_LBRACK, - STATE(4558), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8479), 24, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + 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, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8481), 28, + anon_sym_DASH_GT, + ACTIONS(6567), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + 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, - anon_sym_COLON_RBRACK, - [70657] = 5, + anon_sym_DASH_GT_STAR, + [69078] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6861), 1, + ACTIONS(7180), 1, anon_sym_LBRACK_LBRACK, - STATE(4558), 2, + STATE(4755), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8512), 24, + ACTIONS(8837), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -493708,7 +513641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8514), 28, + ACTIONS(8839), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -493737,80 +513670,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [70724] = 7, + [69145] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(6208), 1, + ACTIONS(6991), 1, + anon_sym_decltype, + ACTIONS(7457), 1, anon_sym_LBRACE, - ACTIONS(10496), 1, - anon_sym_LT, - STATE(3966), 1, - sym_template_argument_list, - ACTIONS(6210), 18, + ACTIONS(10089), 1, + sym_auto, + STATE(4464), 1, + sym_decltype_auto, + ACTIONS(7223), 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_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(6203), 33, + ACTIONS(7225), 39, 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_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, - [70795] = 5, + anon_sym_GT2, + [69216] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10499), 2, + ACTIONS(6783), 1, + anon_sym_requires, + ACTIONS(6777), 2, anon_sym_final, anon_sym_override, - STATE(4625), 2, + STATE(5261), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - ACTIONS(8755), 18, + STATE(5581), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -493825,13 +513763,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, - ACTIONS(8757), 33, + anon_sym_DASH_GT, + ACTIONS(8907), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -493839,7 +513776,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -493851,98 +513787,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_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_requires, - [70862] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6286), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10209), 1, - anon_sym_LPAREN2, - ACTIONS(10474), 1, - anon_sym_LBRACK, - STATE(5255), 1, - sym_parameter_list, - STATE(4833), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8923), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(8925), 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_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, - [70935] = 8, + [69287] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6286), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10209), 1, + ACTIONS(10842), 1, anon_sym_LPAREN2, - ACTIONS(10474), 1, + ACTIONS(10844), 1, anon_sym_LBRACK, - STATE(5255), 1, + STATE(1980), 1, sym_parameter_list, - STATE(4833), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8947), 19, + STATE(5229), 1, + sym__function_declarator_seq, + ACTIONS(10206), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -493952,25 +513819,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(8949), 30, + ACTIONS(10204), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -493978,7 +513844,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, @@ -493992,95 +513857,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [71008] = 5, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [69358] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6226), 1, - anon_sym_const, - ACTIONS(6237), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10485), 1, + anon_sym_EQ, + ACTIONS(10667), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(10673), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6233), 18, - anon_sym___extension__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - ACTIONS(6230), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(10677), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10679), 1, + anon_sym_bitand, + ACTIONS(10693), 1, anon_sym_PIPE_PIPE, + ACTIONS(10695), 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, + ACTIONS(10697), 1, + anon_sym_PIPE, + ACTIONS(10701), 1, anon_sym_or, + ACTIONS(10703), 1, anon_sym_and, + ACTIONS(10705), 1, anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [71075] = 4, + ACTIONS(10661), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10665), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10675), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10663), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10669), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10671), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10487), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + 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_COLON_RBRACK, + [69467] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10502), 1, - anon_sym_friend, - ACTIONS(2758), 7, + STATE(4815), 1, + sym_attribute_specifier, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7437), 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_EQ, + anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(2768), 47, + ACTIONS(7435), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -494104,33 +514003,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [69534] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10667), 1, + anon_sym_AMP, + ACTIONS(10673), 1, + anon_sym_GT_EQ, + ACTIONS(10677), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10679), 1, + anon_sym_bitand, + ACTIONS(10695), 1, + anon_sym_AMP_AMP, + ACTIONS(10697), 1, + anon_sym_PIPE, + ACTIONS(10703), 1, + anon_sym_and, + ACTIONS(10705), 1, + anon_sym_bitor, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9707), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(10661), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10665), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10675), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10663), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10669), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10671), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 21, + 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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_COLON_RBRACK, + [69639] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2248), 1, anon_sym_enum, + ACTIONS(2250), 1, anon_sym_class, + ACTIONS(2252), 1, anon_sym_struct, + ACTIONS(2254), 1, anon_sym_union, - anon_sym_typename, - sym_identifier, + ACTIONS(2280), 1, sym_auto, + ACTIONS(2282), 1, anon_sym_decltype, - anon_sym_explicit, + ACTIONS(5160), 1, anon_sym_template, - anon_sym_operator, - [71140] = 8, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10868), 1, + anon_sym_RPAREN, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, + sym__scope_resolution, + STATE(10166), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5167), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [69758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6286), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10209), 1, - anon_sym_LPAREN2, - ACTIONS(10474), 1, - anon_sym_LBRACK, - STATE(5255), 1, - sym_parameter_list, - STATE(4833), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9033), 19, + ACTIONS(5589), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -494144,21 +514193,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, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9035), 30, + ACTIONS(5591), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_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, @@ -494180,21 +514232,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [71213] = 4, + [69821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10504), 1, - anon_sym_namespace, - ACTIONS(9926), 7, + ACTIONS(3118), 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_EQ, + anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(9924), 47, + ACTIONS(3128), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -494203,10 +514262,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -494230,89 +514291,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, sym_identifier, - sym_auto, anon_sym_decltype, anon_sym_explicit, anon_sym_template, anon_sym_operator, - [71278] = 10, + [69884] = 52, ACTIONS(3), 1, sym_comment, - ACTIONS(8189), 1, - anon_sym___attribute__, - ACTIONS(8191), 1, - anon_sym___attribute, - ACTIONS(8272), 1, - anon_sym_LBRACE, - ACTIONS(10453), 1, - anon_sym_COLON, - STATE(2826), 1, - sym__enum_base_clause, - STATE(2894), 1, - sym_enumerator_list, - STATE(3442), 1, - sym_attribute_specifier, - ACTIONS(7651), 16, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10719), 1, + anon_sym_COMMA, + ACTIONS(10723), 1, anon_sym_DASH, + ACTIONS(10725), 1, anon_sym_PLUS, + ACTIONS(10727), 1, anon_sym_STAR, + ACTIONS(10729), 1, anon_sym_SLASH, + ACTIONS(10731), 1, anon_sym_PERCENT, + ACTIONS(10733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10735), 1, + anon_sym_AMP_AMP, + ACTIONS(10737), 1, anon_sym_PIPE, + ACTIONS(10739), 1, anon_sym_CARET, + ACTIONS(10741), 1, anon_sym_AMP, + ACTIONS(10743), 1, + anon_sym_EQ_EQ, + ACTIONS(10745), 1, + anon_sym_BANG_EQ, + ACTIONS(10747), 1, anon_sym_GT, + ACTIONS(10749), 1, + anon_sym_GT_EQ, + ACTIONS(10751), 1, anon_sym_LT_EQ, + ACTIONS(10753), 1, anon_sym_LT, + ACTIONS(10755), 1, anon_sym_LT_LT, + ACTIONS(10757), 1, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7653), 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, + ACTIONS(10759), 1, anon_sym_LBRACK, + ACTIONS(10761), 1, + anon_sym_EQ, + ACTIONS(10763), 1, anon_sym_QMARK, + ACTIONS(10765), 1, anon_sym_STAR_EQ, + ACTIONS(10767), 1, anon_sym_SLASH_EQ, + ACTIONS(10769), 1, anon_sym_PERCENT_EQ, + ACTIONS(10771), 1, anon_sym_PLUS_EQ, + ACTIONS(10773), 1, anon_sym_DASH_EQ, + ACTIONS(10775), 1, anon_sym_LT_LT_EQ, + ACTIONS(10777), 1, anon_sym_GT_GT_EQ, + ACTIONS(10779), 1, anon_sym_AMP_EQ, + ACTIONS(10781), 1, anon_sym_CARET_EQ, + ACTIONS(10783), 1, anon_sym_PIPE_EQ, + ACTIONS(10787), 1, anon_sym_LT_EQ_GT, + ACTIONS(10789), 1, anon_sym_or, + ACTIONS(10791), 1, anon_sym_and, + ACTIONS(10793), 1, anon_sym_bitor, + ACTIONS(10795), 1, anon_sym_xor, + ACTIONS(10797), 1, anon_sym_bitand, + ACTIONS(10799), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(10805), 1, anon_sym_DOT_STAR, + ACTIONS(10807), 1, anon_sym_DASH_GT_STAR, - [71355] = 3, + ACTIONS(10870), 1, + anon_sym_RPAREN, + STATE(1712), 1, + sym__binary_fold_operator, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + STATE(10629), 1, + sym__fold_operator, + ACTIONS(10801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10785), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [70045] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5233), 20, + ACTIONS(10842), 1, + anon_sym_LPAREN2, + ACTIONS(10844), 1, + anon_sym_LBRACK, + STATE(1980), 1, + sym_parameter_list, + STATE(5229), 1, + sym__function_declarator_seq, + ACTIONS(10190), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -494322,28 +514426,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_LBRACK, 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(5235), 35, + ACTIONS(10188), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -494351,7 +514451,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, @@ -494365,46 +514464,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [71418] = 4, + [70116] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10506), 1, - anon_sym_friend, - ACTIONS(2758), 7, + ACTIONS(6594), 1, + anon_sym_const, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6598), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(2768), 47, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, + anon_sym_GT2, + ACTIONS(6603), 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(6596), 18, + 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_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6601), 18, + anon_sym___extension__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -494418,60 +514531,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [71483] = 7, + [70187] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(6208), 1, - anon_sym_LBRACE, - ACTIONS(8351), 1, - anon_sym_LT, - STATE(4731), 1, - sym_template_argument_list, - ACTIONS(6210), 19, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10667), 1, + anon_sym_AMP, + ACTIONS(10673), 1, + anon_sym_GT_EQ, + ACTIONS(10677), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10679), 1, + anon_sym_bitand, + ACTIONS(10697), 1, + anon_sym_PIPE, + ACTIONS(10705), 1, + anon_sym_bitor, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10661), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(10665), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, + anon_sym_xor, + ACTIONS(10675), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(9707), 3, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6203), 32, + ACTIONS(10663), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10669), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10671), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 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_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -494486,58 +514611,78 @@ 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, - [71554] = 8, + anon_sym_COLON_RBRACK, + [70288] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, - anon_sym_LBRACE, - ACTIONS(10347), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10472), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(4851), 1, - sym_new_declarator, - STATE(5552), 2, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(9826), 1, + anon_sym_EQ, + ACTIONS(10469), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10667), 1, + anon_sym_AMP, + ACTIONS(10673), 1, + anon_sym_GT_EQ, + ACTIONS(10677), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10679), 1, + anon_sym_bitand, + ACTIONS(10693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10695), 1, + anon_sym_AMP_AMP, + ACTIONS(10697), 1, + anon_sym_PIPE, + ACTIONS(10699), 1, + anon_sym_QMARK, + ACTIONS(10701), 1, + anon_sym_or, + ACTIONS(10703), 1, + anon_sym_and, + ACTIONS(10705), 1, + anon_sym_bitor, + STATE(3874), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(8866), 19, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10661), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10665), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10675), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10669), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10671), 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(8868), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(9828), 18, 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_SEMI, + anon_sym_RBRACE, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -494551,90 +514696,13 @@ 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, - [71627] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(5280), 1, - sym_auto, - ACTIONS(5282), 1, - anon_sym_decltype, - ACTIONS(10277), 1, - anon_sym_LT, - ACTIONS(10510), 1, - anon_sym_EQ, - STATE(4121), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4203), 1, - sym_template_argument_list, - STATE(4767), 1, - sym_decltype_auto, - ACTIONS(10508), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(5274), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5258), 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_LBRACK_COLON, - ACTIONS(5251), 34, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [71710] = 4, + anon_sym_COLON_RBRACK, + [70401] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10512), 1, - anon_sym_friend, - ACTIONS(2758), 7, + ACTIONS(10872), 1, + anon_sym_typedef, + ACTIONS(3118), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -494642,7 +514710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(2768), 47, + ACTIONS(3128), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -494690,97 +514758,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_explicit, anon_sym_template, anon_sym_operator, - [71775] = 8, + [70466] = 52, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, - anon_sym_LBRACE, - ACTIONS(10347), 1, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(10472), 1, - anon_sym_LBRACK, - STATE(4683), 1, - sym_new_declarator, - STATE(5539), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8903), 19, + ACTIONS(10717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10719), 1, + anon_sym_COMMA, + ACTIONS(10723), 1, anon_sym_DASH, + ACTIONS(10725), 1, anon_sym_PLUS, + ACTIONS(10727), 1, anon_sym_STAR, + ACTIONS(10729), 1, anon_sym_SLASH, + ACTIONS(10731), 1, anon_sym_PERCENT, + ACTIONS(10733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10735), 1, + anon_sym_AMP_AMP, + ACTIONS(10737), 1, anon_sym_PIPE, + ACTIONS(10739), 1, anon_sym_CARET, + ACTIONS(10741), 1, anon_sym_AMP, + ACTIONS(10743), 1, + anon_sym_EQ_EQ, + ACTIONS(10745), 1, + anon_sym_BANG_EQ, + ACTIONS(10747), 1, anon_sym_GT, + ACTIONS(10749), 1, + anon_sym_GT_EQ, + ACTIONS(10751), 1, anon_sym_LT_EQ, + ACTIONS(10753), 1, anon_sym_LT, + ACTIONS(10755), 1, anon_sym_LT_LT, + ACTIONS(10757), 1, anon_sym_GT_GT, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10761), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8905), 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, + ACTIONS(10763), 1, anon_sym_QMARK, + ACTIONS(10765), 1, anon_sym_STAR_EQ, + ACTIONS(10767), 1, anon_sym_SLASH_EQ, + ACTIONS(10769), 1, anon_sym_PERCENT_EQ, + ACTIONS(10771), 1, anon_sym_PLUS_EQ, + ACTIONS(10773), 1, anon_sym_DASH_EQ, + ACTIONS(10775), 1, anon_sym_LT_LT_EQ, + ACTIONS(10777), 1, anon_sym_GT_GT_EQ, + ACTIONS(10779), 1, anon_sym_AMP_EQ, + ACTIONS(10781), 1, anon_sym_CARET_EQ, + ACTIONS(10783), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(10787), 1, anon_sym_LT_EQ_GT, + ACTIONS(10789), 1, + anon_sym_or, + ACTIONS(10791), 1, + anon_sym_and, + ACTIONS(10793), 1, anon_sym_bitor, + ACTIONS(10795), 1, + anon_sym_xor, + ACTIONS(10797), 1, anon_sym_bitand, + ACTIONS(10799), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(10805), 1, anon_sym_DOT_STAR, + ACTIONS(10807), 1, anon_sym_DASH_GT_STAR, - [71848] = 4, + ACTIONS(10874), 1, + anon_sym_RPAREN, + STATE(1712), 1, + sym__binary_fold_operator, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + STATE(10629), 1, + sym__fold_operator, + ACTIONS(10801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10785), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [70627] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10514), 1, - anon_sym_friend, - ACTIONS(2758), 7, + STATE(4842), 1, + sym_attribute_specifier, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7399), 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_EQ, + anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(2768), 47, + ACTIONS(7397), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -494804,44 +514925,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_explicit, anon_sym_template, anon_sym_operator, - [71913] = 4, + [70694] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10516), 1, - anon_sym_friend, - ACTIONS(2758), 7, + STATE(4852), 1, + sym_attribute_specifier, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7507), 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_EQ, + anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(2768), 47, + ACTIONS(7505), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -494865,396 +514987,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_explicit, anon_sym_template, anon_sym_operator, - [71978] = 6, + [70761] = 7, ACTIONS(3), 1, sym_comment, - STATE(4591), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6627), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(10467), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7081), 11, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10711), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7084), 37, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, + ACTIONS(10713), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [72047] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6226), 1, - anon_sym_const, - ACTIONS(6237), 9, + STATE(1977), 1, + sym_parameter_list, + STATE(5085), 1, + sym__function_declarator_seq, + ACTIONS(10174), 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(6233), 18, - anon_sym___extension__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - ACTIONS(6230), 27, + ACTIONS(10172), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - 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_STAR, anon_sym_DASH_GT, - [72114] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [70832] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2758), 13, + ACTIONS(6807), 4, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(6809), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(5638), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_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, - anon_sym_LBRACK_COLON, - ACTIONS(2768), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5645), 22, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_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_identifier, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [72177] = 52, + [70899] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10341), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10343), 1, - anon_sym_COMMA, - ACTIONS(10347), 1, + ACTIONS(10842), 1, anon_sym_LPAREN2, - ACTIONS(10349), 1, + ACTIONS(10844), 1, + anon_sym_LBRACK, + STATE(1980), 1, + sym_parameter_list, + STATE(5229), 1, + sym__function_declarator_seq, + ACTIONS(10186), 20, anon_sym_DASH, - ACTIONS(10351), 1, anon_sym_PLUS, - ACTIONS(10353), 1, anon_sym_STAR, - ACTIONS(10355), 1, anon_sym_SLASH, - ACTIONS(10357), 1, anon_sym_PERCENT, - ACTIONS(10359), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10361), 1, - anon_sym_AMP_AMP, - ACTIONS(10363), 1, anon_sym_PIPE, - ACTIONS(10365), 1, anon_sym_CARET, - ACTIONS(10367), 1, anon_sym_AMP, - ACTIONS(10369), 1, - anon_sym_EQ_EQ, - ACTIONS(10371), 1, - anon_sym_BANG_EQ, - ACTIONS(10373), 1, anon_sym_GT, - ACTIONS(10375), 1, anon_sym_GT_EQ, - ACTIONS(10377), 1, anon_sym_LT_EQ, - ACTIONS(10379), 1, anon_sym_LT, - ACTIONS(10381), 1, anon_sym_LT_LT, - ACTIONS(10383), 1, anon_sym_GT_GT, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10387), 1, anon_sym_EQ, - ACTIONS(10389), 1, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10184), 31, + 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, - ACTIONS(10391), 1, anon_sym_STAR_EQ, - ACTIONS(10393), 1, anon_sym_SLASH_EQ, - ACTIONS(10395), 1, anon_sym_PERCENT_EQ, - ACTIONS(10397), 1, anon_sym_PLUS_EQ, - ACTIONS(10399), 1, anon_sym_DASH_EQ, - ACTIONS(10401), 1, anon_sym_LT_LT_EQ, - ACTIONS(10403), 1, - anon_sym_GT_GT_EQ, - ACTIONS(10405), 1, anon_sym_AMP_EQ, - ACTIONS(10407), 1, anon_sym_CARET_EQ, - ACTIONS(10409), 1, anon_sym_PIPE_EQ, - ACTIONS(10413), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(10415), 1, - anon_sym_or, - ACTIONS(10417), 1, - anon_sym_and, - ACTIONS(10419), 1, anon_sym_bitor, - ACTIONS(10421), 1, - anon_sym_xor, - ACTIONS(10423), 1, anon_sym_bitand, - ACTIONS(10425), 1, anon_sym_not_eq, - ACTIONS(10431), 1, - anon_sym_DOT_STAR, - ACTIONS(10433), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(10518), 1, - anon_sym_RPAREN, - STATE(1667), 1, - sym__binary_fold_operator, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - STATE(10893), 1, - sym__fold_operator, - ACTIONS(10427), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10411), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [72338] = 13, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [70970] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(5280), 1, - sym_auto, - ACTIONS(5282), 1, - anon_sym_decltype, - ACTIONS(9979), 1, - anon_sym_LBRACK, - ACTIONS(10277), 1, - anon_sym_LT, - STATE(4121), 1, + STATE(4735), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4767), 1, - sym_decltype_auto, - STATE(5936), 1, - sym_template_argument_list, - ACTIONS(5290), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(5274), 4, + ACTIONS(10865), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5258), 7, - anon_sym_DOT_DOT_DOT, + ACTIONS(7001), 11, anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_EQ, - anon_sym_LBRACK_COLON, - ACTIONS(5251), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [72421] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10520), 1, - anon_sym_typedef, - ACTIONS(2758), 7, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(2768), 47, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6999), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -495262,11 +515211,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym___attribute, anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -495291,26 +515235,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [72486] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [71037] = 5, ACTIONS(3), 1, sym_comment, - STATE(4743), 1, + STATE(4908), 1, sym_attribute_specifier, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7055), 13, + ACTIONS(7455), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -495324,7 +515265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7053), 39, + ACTIONS(7453), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -495364,140 +515305,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [72553] = 8, + [71104] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(8219), 1, - anon_sym_LPAREN2, - STATE(5707), 1, - sym_argument_list, - STATE(7118), 1, - sym_initializer_list, - ACTIONS(6798), 10, + ACTIONS(10876), 2, + anon_sym_final, + anon_sym_override, + STATE(4737), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9143), 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(6800), 40, + ACTIONS(9145), 33, 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___extension__, 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, + anon_sym_requires, + [71171] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10842), 1, + anon_sym_LPAREN2, + ACTIONS(10844), 1, + anon_sym_LBRACK, + STATE(1980), 1, + sym_parameter_list, + STATE(5229), 1, + sym__function_declarator_seq, + ACTIONS(10210), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + 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_DOT, + ACTIONS(10208), 31, + 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_DOT_STAR, anon_sym_DASH_GT, - [72626] = 26, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [71242] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(10089), 1, + ACTIONS(10469), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10477), 1, anon_sym_EQ, - ACTIONS(10305), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10307), 1, - anon_sym_AMP_AMP, - ACTIONS(10309), 1, - anon_sym_PIPE, - ACTIONS(10313), 1, + ACTIONS(10667), 1, anon_sym_AMP, - ACTIONS(10319), 1, + ACTIONS(10673), 1, anon_sym_GT_EQ, - ACTIONS(10323), 1, + ACTIONS(10677), 1, anon_sym_LT_EQ_GT, - ACTIONS(10325), 1, + ACTIONS(10679), 1, + anon_sym_bitand, + ACTIONS(10693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10695), 1, + anon_sym_AMP_AMP, + ACTIONS(10697), 1, + anon_sym_PIPE, + ACTIONS(10699), 1, + anon_sym_QMARK, + ACTIONS(10701), 1, anon_sym_or, - ACTIONS(10327), 1, + ACTIONS(10703), 1, anon_sym_and, - ACTIONS(10329), 1, + ACTIONS(10705), 1, anon_sym_bitor, - ACTIONS(10331), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10301), 2, + ACTIONS(10661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10311), 2, + ACTIONS(10665), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(10321), 2, + ACTIONS(10675), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10303), 3, + ACTIONS(10663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10315), 3, + ACTIONS(10669), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10317), 3, + ACTIONS(10671), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10091), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(10479), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -495512,108 +515516,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_COLON_RBRACK, - [72735] = 31, + [71355] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10293), 1, - anon_sym_COLON_COLON, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10522), 1, + ACTIONS(8636), 1, + anon_sym_requires, + ACTIONS(8633), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5681), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 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(7966), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, - sym_type_specifier, - STATE(8605), 1, - sym__scope_resolution, - STATE(9553), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4954), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [72854] = 4, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_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, + [71426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10524), 1, - anon_sym_typedef, - ACTIONS(2758), 7, + ACTIONS(7719), 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_GT2, anon_sym_LBRACK_COLON, - ACTIONS(2768), 47, + ACTIONS(7717), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -495622,10 +515607,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -495649,33 +515636,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_explicit, anon_sym_template, anon_sym_operator, - [72919] = 8, + [71489] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, - anon_sym_LBRACE, - ACTIONS(10347), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10472), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(4778), 1, - sym_new_declarator, - STATE(5467), 2, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10435), 1, + anon_sym_EQ, + ACTIONS(10667), 1, + anon_sym_AMP, + ACTIONS(10673), 1, + anon_sym_GT_EQ, + ACTIONS(10677), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10679), 1, + anon_sym_bitand, + ACTIONS(10693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10695), 1, + anon_sym_AMP_AMP, + ACTIONS(10697), 1, + anon_sym_PIPE, + ACTIONS(10701), 1, + anon_sym_or, + ACTIONS(10703), 1, + anon_sym_and, + ACTIONS(10705), 1, + anon_sym_bitor, + STATE(3874), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(8804), 19, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10661), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10665), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10675), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10663), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10669), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10671), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10437), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + 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_COLON_RBRACK, + [71598] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10842), 1, + anon_sym_LPAREN2, + ACTIONS(10844), 1, + anon_sym_LBRACK, + STATE(1980), 1, + sym_parameter_list, + STATE(5229), 1, + sym__function_declarator_seq, + ACTIONS(10194), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -495685,25 +515744,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(8806), 30, + ACTIONS(10192), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -495711,7 +515769,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, @@ -495725,42 +515782,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [72992] = 4, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [71669] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10526), 1, - anon_sym_typedef, - ACTIONS(2758), 7, + ACTIONS(10842), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(10844), 1, + anon_sym_LBRACK, + STATE(1980), 1, + sym_parameter_list, + STATE(5229), 1, + sym__function_declarator_seq, + ACTIONS(10174), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10172), 31, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [71740] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2248), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_class, + ACTIONS(2252), 1, + anon_sym_struct, + ACTIONS(2254), 1, + anon_sym_union, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - ACTIONS(2768), 47, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, + ACTIONS(10879), 1, + anon_sym_RPAREN, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, + sym__scope_resolution, + STATE(9944), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5167), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(3100), 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(67), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -495773,88 +515939,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [73057] = 7, + [71859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 1, - anon_sym_decltype, - ACTIONS(7183), 1, - anon_sym_LBRACE, - ACTIONS(9769), 1, - sym_auto, - STATE(4315), 1, - sym_decltype_auto, - ACTIONS(6798), 12, + 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_const, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6800), 39, + anon_sym_DASH_GT, + ACTIONS(5595), 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___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + 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_or, - anon_sym_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, - anon_sym_GT2, - [73128] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [71922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 7, + ACTIONS(10881), 1, + anon_sym_namespace, + ACTIONS(10272), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -495862,14 +516012,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(5233), 48, + ACTIONS(10270), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_using, anon_sym___declspec, anon_sym___based, anon_sym_signed, @@ -495911,40 +516060,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_explicit, anon_sym_template, anon_sym_operator, - [73191] = 3, + [71987] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9101), 19, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10473), 1, + anon_sym_EQ, + ACTIONS(10667), 1, + anon_sym_AMP, + ACTIONS(10673), 1, + anon_sym_GT_EQ, + ACTIONS(10677), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10679), 1, + anon_sym_bitand, + ACTIONS(10693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10695), 1, + anon_sym_AMP_AMP, + ACTIONS(10697), 1, + anon_sym_PIPE, + ACTIONS(10701), 1, + anon_sym_or, + ACTIONS(10703), 1, + anon_sym_and, + ACTIONS(10705), 1, + anon_sym_bitor, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10661), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10665), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10675), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10669), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10671), 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(9103), 35, + ACTIONS(10475), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -495959,21 +516142,22 @@ 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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [73253] = 3, + anon_sym_COLON_RBRACK, + [72096] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8599), 19, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10689), 1, + anon_sym_LBRACK, + STATE(4851), 1, + sym_new_declarator, + STATE(5628), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9248), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -495993,17 +516177,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8601), 35, + ACTIONS(9250), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -496025,103 +516207,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [73315] = 3, + [72169] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9003), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9599), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9005), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(10667), 1, + anon_sym_AMP, + ACTIONS(10673), 1, 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, + ACTIONS(10677), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, + ACTIONS(10679), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(10693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10695), 1, + anon_sym_AMP_AMP, + ACTIONS(10697), 1, + anon_sym_PIPE, + ACTIONS(10701), 1, + anon_sym_or, + ACTIONS(10703), 1, + anon_sym_and, + ACTIONS(10705), 1, + anon_sym_bitor, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [73377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9011), 19, + anon_sym_DASH_GT, + ACTIONS(10661), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10665), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10675), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10669), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10671), 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(9013), 35, + ACTIONS(9597), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -496136,91 +516290,42 @@ 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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [73439] = 30, + anon_sym_COLON_RBRACK, + [72278] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10293), 1, + ACTIONS(10883), 1, + anon_sym_typedef, + ACTIONS(3118), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7480), 1, - sym_type_specifier, - STATE(8181), 1, - sym_type_descriptor, - STATE(8605), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4943), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(3128), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -496233,102 +516338,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [73555] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [72343] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9015), 19, + ACTIONS(7052), 1, + anon_sym_decltype, + ACTIONS(7457), 1, + anon_sym_LBRACE, + ACTIONS(10645), 1, + sym_auto, + STATE(4121), 1, + sym_decltype_auto, + ACTIONS(7223), 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(9017), 35, + ACTIONS(7225), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [73617] = 6, + anon_sym_DASH_GT, + [72414] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2248), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_class, + ACTIONS(2252), 1, + anon_sym_struct, + ACTIONS(2254), 1, + anon_sym_union, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10885), 1, + anon_sym_RPAREN, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, + sym__scope_resolution, + STATE(9849), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5167), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [72533] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10535), 3, + ACTIONS(5655), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(10531), 4, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(10533), 5, - anon_sym_AMP, - anon_sym___based, + ACTIONS(5665), 1, + sym_auto, + ACTIONS(5667), 1, + anon_sym_decltype, + ACTIONS(10384), 1, anon_sym_LBRACK, - anon_sym_explicit, - anon_sym_operator, - ACTIONS(10538), 11, + ACTIONS(10647), 1, + anon_sym_LT, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4991), 1, + sym_decltype_auto, + STATE(6086), 1, + sym_template_argument_list, + ACTIONS(5675), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(5659), 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, - anon_sym_typename, - sym_auto, - ACTIONS(10528), 31, + ACTIONS(5643), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(5636), 33, + anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, anon_sym___declspec, + anon_sym___based, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -496352,135 +516572,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - anon_sym_decltype, anon_sym_template, - [73685] = 8, + anon_sym_operator, + [72616] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6125), 1, + ACTIONS(10887), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(10540), 1, - anon_sym_LBRACK, - STATE(5561), 1, - sym_parameter_list, - STATE(5151), 2, + STATE(4755), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8923), 18, + ACTIONS(2461), 24, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8925), 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_RBRACK_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_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [73757] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9097), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(9099), 35, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9075), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [73819] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [72683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 13, + ACTIONS(10272), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -496494,7 +516653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7219), 41, + ACTIONS(10270), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -496534,151 +516693,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_identifier, anon_sym_decltype, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - [73881] = 8, + [72746] = 52, ACTIONS(3), 1, sym_comment, - ACTIONS(6330), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8929), 1, - anon_sym_LBRACK, - ACTIONS(10333), 1, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(3121), 1, - sym_parameter_list, - STATE(5017), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9127), 18, + ACTIONS(10717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10719), 1, + anon_sym_COMMA, + ACTIONS(10723), 1, anon_sym_DASH, + ACTIONS(10725), 1, anon_sym_PLUS, + ACTIONS(10727), 1, anon_sym_STAR, + ACTIONS(10729), 1, anon_sym_SLASH, + ACTIONS(10731), 1, anon_sym_PERCENT, + ACTIONS(10733), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10735), 1, + anon_sym_AMP_AMP, + ACTIONS(10737), 1, anon_sym_PIPE, + ACTIONS(10739), 1, anon_sym_CARET, + ACTIONS(10741), 1, anon_sym_AMP, + ACTIONS(10743), 1, + anon_sym_EQ_EQ, + ACTIONS(10745), 1, + anon_sym_BANG_EQ, + ACTIONS(10747), 1, anon_sym_GT, + ACTIONS(10749), 1, + anon_sym_GT_EQ, + ACTIONS(10751), 1, anon_sym_LT_EQ, + ACTIONS(10753), 1, anon_sym_LT, + ACTIONS(10755), 1, anon_sym_LT_LT, + ACTIONS(10757), 1, anon_sym_GT_GT, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10761), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9129), 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_RBRACK, + ACTIONS(10763), 1, anon_sym_QMARK, + ACTIONS(10765), 1, anon_sym_STAR_EQ, + ACTIONS(10767), 1, anon_sym_SLASH_EQ, + ACTIONS(10769), 1, anon_sym_PERCENT_EQ, + ACTIONS(10771), 1, anon_sym_PLUS_EQ, + ACTIONS(10773), 1, anon_sym_DASH_EQ, + ACTIONS(10775), 1, anon_sym_LT_LT_EQ, + ACTIONS(10777), 1, anon_sym_GT_GT_EQ, + ACTIONS(10779), 1, anon_sym_AMP_EQ, + ACTIONS(10781), 1, anon_sym_CARET_EQ, + ACTIONS(10783), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(10787), 1, anon_sym_LT_EQ_GT, + ACTIONS(10789), 1, + anon_sym_or, + ACTIONS(10791), 1, + anon_sym_and, + ACTIONS(10793), 1, anon_sym_bitor, + ACTIONS(10795), 1, + anon_sym_xor, + ACTIONS(10797), 1, anon_sym_bitand, + ACTIONS(10799), 1, anon_sym_not_eq, + ACTIONS(10805), 1, + anon_sym_DOT_STAR, + ACTIONS(10807), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(10890), 1, + anon_sym_RPAREN, + STATE(1712), 1, + sym__binary_fold_operator, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + STATE(10629), 1, + sym__fold_operator, + ACTIONS(10801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(10803), 2, + anon_sym_DOT, anon_sym_DASH_GT, - [73953] = 8, + ACTIONS(10785), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [72907] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6330), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8929), 1, - anon_sym_LBRACK, - ACTIONS(10333), 1, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(8626), 1, anon_sym_LPAREN2, - STATE(3121), 1, - sym_parameter_list, - STATE(5017), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8947), 18, + STATE(5789), 1, + sym_argument_list, + STATE(7373), 1, + sym_initializer_list, + ACTIONS(7223), 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(8949), 30, + ACTIONS(7225), 40, 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___extension__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, - [74025] = 8, + [72980] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6330), 1, + ACTIONS(6650), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8929), 1, - anon_sym_LBRACK, - ACTIONS(10333), 1, + ACTIONS(10568), 1, anon_sym_LPAREN2, - STATE(3121), 1, + ACTIONS(10683), 1, + anon_sym_LBRACK, + STATE(5409), 1, sym_parameter_list, - STATE(5017), 2, + STATE(4910), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9033), 18, + ACTIONS(9300), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -496697,15 +516903,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9035), 30, + anon_sym_DASH_GT, + ACTIONS(9302), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -496727,86 +516934,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [74097] = 8, + anon_sym_DASH_GT_STAR, + [73053] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, - anon_sym_LBRACE, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - ACTIONS(10544), 1, - anon_sym_LBRACK, - STATE(4967), 1, - sym_new_declarator, - STATE(5619), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8841), 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(8843), 30, + STATE(4870), 1, + sym_attribute_specifier, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7533), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - [74169] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6330), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(8929), 1, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7531), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - ACTIONS(10333), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [73120] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10711), 1, anon_sym_LPAREN2, - STATE(3121), 1, + ACTIONS(10713), 1, + anon_sym_LBRACK, + STATE(1977), 1, sym_parameter_list, - STATE(5017), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8931), 18, + STATE(5085), 1, + sym__function_declarator_seq, + ACTIONS(10190), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -496825,7 +517027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8933), 30, + ACTIONS(10188), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -496856,10 +517058,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [74241] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [73191] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8955), 19, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + STATE(5651), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9377), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -496879,11 +517091,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8957), 35, + ACTIONS(9379), 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, @@ -496911,14 +517122,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [74303] = 3, + [73259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7233), 13, + ACTIONS(7737), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -496932,7 +517140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7231), 41, + ACTIONS(7735), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -496974,105 +517182,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [74365] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10180), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10552), 1, - anon_sym_AMP_AMP, - ACTIONS(10554), 1, - anon_sym_PIPE, - ACTIONS(10558), 1, - anon_sym_AMP, - ACTIONS(10564), 1, - anon_sym_GT_EQ, - ACTIONS(10568), 1, - anon_sym_QMARK, - ACTIONS(10570), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10572), 1, - anon_sym_or, - ACTIONS(10574), 1, - anon_sym_and, - ACTIONS(10576), 1, - anon_sym_bitor, - ACTIONS(10578), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9436), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(10546), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10556), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10566), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10560), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10562), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9438), 16, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [74477] = 8, + [73321] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6330), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8929), 1, - anon_sym_LBRACK, - ACTIONS(10333), 1, - anon_sym_LPAREN2, - STATE(3121), 1, - sym_parameter_list, - STATE(5017), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8923), 18, + ACTIONS(10898), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(10896), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(10894), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497087,20 +517206,19 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, - ACTIONS(8925), 30, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + ACTIONS(10892), 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_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -497114,18 +517232,32 @@ 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_DASH_GT, - [74549] = 3, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [73387] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8618), 19, + ACTIONS(3052), 1, + anon_sym_LBRACE, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(10902), 1, + anon_sym_LBRACK, + STATE(5163), 1, + sym_new_declarator, + STATE(5923), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9226), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497144,18 +517276,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8620), 35, + ACTIONS(9228), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -497177,20 +517306,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [74611] = 6, + anon_sym_DASH_GT, + [73459] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(7227), 1, anon_sym_COLON_COLON, - ACTIONS(9959), 1, - anon_sym_LT, - STATE(3601), 1, - sym_template_argument_list, - ACTIONS(7031), 7, + ACTIONS(7291), 7, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, @@ -497198,7 +517320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(5272), 44, + ACTIONS(7293), 46, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -497238,99 +517360,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_asm, anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [74679] = 28, + [73523] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10180), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10552), 1, - anon_sym_AMP_AMP, - ACTIONS(10554), 1, + STATE(4105), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(3889), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3899), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(9116), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(10558), 1, anon_sym_AMP, - ACTIONS(10564), 1, - anon_sym_GT_EQ, - ACTIONS(10568), 1, - anon_sym_QMARK, - ACTIONS(10570), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10572), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, anon_sym_or, - ACTIONS(10574), 1, anon_sym_and, - ACTIONS(10576), 1, anon_sym_bitor, - ACTIONS(10578), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10188), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(10546), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10556), 2, - anon_sym_CARET, anon_sym_xor, - ACTIONS(10566), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10548), 3, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(9118), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10560), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10562), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10190), 16, - anon_sym_COMMA, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [74791] = 3, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [73591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9109), 19, + ACTIONS(9389), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497350,7 +517452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9111), 35, + ACTIONS(9391), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -497386,69 +517488,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [74853] = 3, + [73653] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 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, + ACTIONS(10904), 1, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7325), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [74915] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8992), 19, + STATE(4769), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2461), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497462,13 +517510,11 @@ 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(8994), 35, + ACTIONS(9075), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -497478,7 +517524,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, @@ -497490,11 +517535,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, @@ -497504,10 +517549,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [74977] = 3, + [73719] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7546), 19, + ACTIONS(6685), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10842), 1, + anon_sym_LPAREN2, + ACTIONS(10907), 1, + anon_sym_LBRACK, + STATE(5634), 1, + sym_parameter_list, + STATE(5067), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9484), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497517,27 +517573,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(7544), 35, + ACTIONS(9486), 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, @@ -497545,7 +517598,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, @@ -497559,21 +517611,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [75039] = 6, + anon_sym_DASH_GT, + anon_sym_GT2, + [73791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, - anon_sym_LBRACE, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - STATE(5503), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8951), 19, + ACTIONS(9407), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497593,10 +517636,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8953), 31, + ACTIONS(9409), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -497624,49 +517668,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [75107] = 3, + [73853] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7331), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10320), 1, + anon_sym_LT, + STATE(3735), 1, + sym_template_argument_list, + ACTIONS(7371), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5657), 44, 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, - anon_sym_LBRACK_COLON, - ACTIONS(7329), 41, - anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LBRACK_LBRACK, 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_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -497680,81 +517725,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [75169] = 3, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [73921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8541), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(7291), 7, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(8543), 35, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7293), 46, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + 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_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [75231] = 7, + [73985] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1871), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9834), 19, + ACTIONS(10915), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(10913), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(10911), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497768,23 +517817,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9832), 31, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + ACTIONS(10909), 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_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -497798,26 +517844,21 @@ 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_DASH_GT, - [75301] = 7, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [74051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1871), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9840), 19, + ACTIONS(8913), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497831,22 +517872,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9838), 31, + anon_sym_DASH_GT, + ACTIONS(8915), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -497868,136 +517910,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [75371] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [74113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1871), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9844), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9842), 31, + ACTIONS(7761), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7759), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - [75441] = 26, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [74175] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(10550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10552), 1, - anon_sym_AMP_AMP, - ACTIONS(10554), 1, - anon_sym_PIPE, - ACTIONS(10558), 1, - anon_sym_AMP, - ACTIONS(10564), 1, - anon_sym_GT_EQ, - ACTIONS(10570), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10572), 1, - anon_sym_or, - ACTIONS(10574), 1, - anon_sym_and, - ACTIONS(10576), 1, - anon_sym_bitor, - ACTIONS(10578), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10192), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(10546), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10556), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10566), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10548), 3, + ACTIONS(10917), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10560), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10562), 3, + ACTIONS(9707), 15, + 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(10194), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9709), 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_GT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_QMARK, @@ -498014,109 +518036,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [75549] = 7, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [74253] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1871), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9848), 19, + ACTIONS(7283), 2, + anon_sym_final, + anon_sym_override, + STATE(4889), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9139), 21, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___attribute__, anon_sym___attribute, - 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(9846), 31, + sym_identifier, + anon_sym_requires, + ACTIONS(9141), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_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_RBRACK_RBRACK, + 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, - [75619] = 6, + anon_sym_COLON_RBRACK, + [74319] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6748), 1, - anon_sym_COLON_COLON, - ACTIONS(9959), 1, - anon_sym_LT, - STATE(5427), 1, - sym_template_argument_list, - ACTIONS(6746), 7, + ACTIONS(6479), 1, + anon_sym_LBRACK, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(10348), 1, + anon_sym_AMP_AMP, + ACTIONS(10350), 1, anon_sym_AMP, + ACTIONS(10354), 1, + anon_sym___attribute__, + ACTIONS(10357), 1, anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, + ACTIONS(10363), 1, anon_sym_const, - anon_sym___asm, - ACTIONS(6751), 44, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10919), 1, + anon_sym_DASH_GT, + ACTIONS(10921), 1, + anon_sym_requires, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(7452), 1, + sym__function_attributes_start, + STATE(7642), 1, + sym_ref_qualifier, + STATE(8440), 1, + sym_trailing_return_type, + STATE(8491), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(6144), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6360), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8522), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7754), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6481), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [74435] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7567), 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7565), 41, + anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [74497] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10930), 3, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(10926), 4, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(10928), 5, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_explicit, + anon_sym_operator, + ACTIONS(10933), 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, + anon_sym_typename, + sym_auto, + ACTIONS(10923), 31, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, - anon_sym_LBRACE, anon_sym_static, - anon_sym_EQ, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -498130,57 +518305,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [75687] = 7, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + [74565] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5132), 1, + sym_identifier, + ACTIONS(5140), 1, + anon_sym_COLON_COLON, + ACTIONS(5144), 1, + sym_primitive_type, + ACTIONS(5146), 1, + anon_sym_enum, + ACTIONS(5148), 1, + anon_sym_class, + ACTIONS(5150), 1, + anon_sym_struct, + ACTIONS(5152), 1, + anon_sym_union, + ACTIONS(5154), 1, + anon_sym_typename, + ACTIONS(5156), 1, + sym_auto, + ACTIONS(5158), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(4387), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4802), 1, + sym_splice_specifier, + STATE(5365), 1, + sym_template_type, + STATE(5472), 1, + sym__splice_specialization_specifier, + STATE(5574), 1, + sym_qualified_type_identifier, + STATE(6031), 1, + sym_decltype_auto, + STATE(6289), 1, + sym_type_specifier, + STATE(8362), 1, + sym_type_descriptor, + STATE(8757), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5185), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5973), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(5142), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6050), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [74681] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9836), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(1871), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9852), 19, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10469), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10939), 1, + anon_sym_AMP_AMP, + ACTIONS(10941), 1, + anon_sym_PIPE, + ACTIONS(10945), 1, + anon_sym_AMP, + ACTIONS(10951), 1, + anon_sym_GT_EQ, + ACTIONS(10955), 1, + anon_sym_QMARK, + ACTIONS(10957), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10959), 1, + anon_sym_or, + ACTIONS(10961), 1, + anon_sym_and, + ACTIONS(10963), 1, + anon_sym_bitor, + ACTIONS(10965), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10477), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(10935), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10943), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10917), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9850), 31, - anon_sym_DOT_DOT_DOT, + ACTIONS(10479), 16, 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___attribute__, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -498194,26 +518478,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, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [75757] = 7, + [74793] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1871), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9856), 19, + ACTIONS(5166), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(10967), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(5136), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -498227,23 +518501,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9854), 31, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + ACTIONS(5134), 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_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -498257,26 +518528,32 @@ 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_DASH_GT, - [75827] = 7, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [74859] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, + ACTIONS(6493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9304), 1, anon_sym_LPAREN2, - ACTIONS(9836), 1, + ACTIONS(10969), 1, anon_sym_LBRACK, - STATE(1871), 1, + STATE(5585), 1, sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9860), 19, + STATE(5055), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9484), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -498290,13 +518567,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9858), 31, + ACTIONS(9486), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -498304,8 +518580,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___attribute__, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -498328,18 +518603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [75897] = 7, + [74931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(9836), 1, - anon_sym_LBRACK, - STATE(1871), 1, - sym_parameter_list, - STATE(3573), 1, - sym__function_declarator_seq, - ACTIONS(9864), 19, + ACTIONS(3155), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -498353,22 +518620,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9862), 31, + anon_sym_DASH_GT, + ACTIONS(3153), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -498390,49 +518658,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [75967] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [74993] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6365), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10337), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10580), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(5557), 1, - sym_parameter_list, - STATE(5016), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8923), 20, + ACTIONS(9646), 1, + anon_sym_DOT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10935), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10917), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9707), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(8925), 28, + ACTIONS(9709), 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_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -498440,6 +518719,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, @@ -498450,45 +518730,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [75073] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [76039] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9029), 19, + ACTIONS(10935), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10917), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9707), 11, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9031), 35, + ACTIONS(9709), 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_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -498507,28 +518799,10 @@ 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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [76101] = 8, + [75155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2608), 1, - anon_sym_LBRACE, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(10584), 1, - anon_sym_LBRACK, - STATE(5088), 1, - sym_new_declarator, - STATE(5668), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8841), 20, + ACTIONS(5593), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -498538,24 +518812,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_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8843), 28, + ACTIONS(5595), 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_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -498563,6 +518840,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, @@ -498577,16 +518855,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [76173] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [75217] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4814), 1, + ACTIONS(10977), 1, anon_sym_DQUOTE_DQUOTE, - ACTIONS(10586), 2, + ACTIONS(10975), 2, anon_sym_delete, anon_sym_new, - ACTIONS(4810), 20, + ACTIONS(10973), 20, anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, @@ -498607,7 +518887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DASH_GT, - ACTIONS(4808), 31, + ACTIONS(10971), 31, anon_sym_COMMA, anon_sym_TILDE, anon_sym_PIPE_PIPE, @@ -498639,10 +518919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT_STAR, anon_sym_LPAREN_RPAREN, anon_sym_LBRACK_RBRACK, - [76239] = 3, + [75283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5233), 19, + ACTIONS(9445), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -498656,23 +518936,23 @@ 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(5235), 35, + anon_sym_DASH_GT, + ACTIONS(9447), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -498694,100 +518974,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - [76301] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10293), 1, - anon_sym_COLON_COLON, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, - sym_type_specifier, - STATE(8605), 1, - sym__scope_resolution, - STATE(11410), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4954), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [76417] = 3, + anon_sym_DASH_GT_STAR, + [75345] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8559), 19, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1979), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10186), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -498801,23 +519003,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8561), 35, + ACTIONS(10184), 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_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -498839,100 +519040,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [76479] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10293), 1, - anon_sym_COLON_COLON, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(6607), 1, - sym_type_specifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(8466), 1, - sym_type_descriptor, - STATE(8605), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5007), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [76595] = 3, + anon_sym_DASH_GT, + [75415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7357), 13, + ACTIONS(7757), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -498946,7 +519058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7355), 41, + ACTIONS(7755), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -498988,18 +519100,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [76657] = 3, + [75477] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10939), 1, + anon_sym_AMP_AMP, + ACTIONS(10941), 1, + anon_sym_PIPE, + ACTIONS(10945), 1, + anon_sym_AMP, + ACTIONS(10951), 1, + anon_sym_GT_EQ, + ACTIONS(10957), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10961), 1, + anon_sym_and, + ACTIONS(10963), 1, + anon_sym_bitor, + ACTIONS(10965), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10935), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10943), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9707), 3, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + ACTIONS(10917), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [75581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9977), 7, + ACTIONS(7777), 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_EQ, + anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(9975), 47, + ACTIONS(7775), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -499008,10 +519206,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -499035,60 +519235,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_explicit, anon_sym_template, anon_sym_operator, - [76719] = 3, + [75643] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7193), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(6479), 1, + anon_sym_LBRACK, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(10348), 1, + anon_sym_AMP_AMP, + ACTIONS(10350), 1, + anon_sym_AMP, + ACTIONS(10354), 1, + anon_sym___attribute__, + ACTIONS(10357), 1, + anon_sym___attribute, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10919), 1, + anon_sym_DASH_GT, + ACTIONS(10979), 1, + anon_sym_requires, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(7505), 1, + sym__function_attributes_start, + STATE(7615), 1, + sym_ref_qualifier, + STATE(8396), 1, + sym_trailing_return_type, + STATE(8470), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10821), 2, + anon_sym_final, + anon_sym_override, + STATE(6144), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6360), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8522), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7765), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6481), 5, 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, - anon_sym_LBRACK_COLON, - ACTIONS(7191), 41, - anon_sym_AMP, + ACTIONS(10352), 12, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -499100,16 +519325,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [76781] = 3, + [75759] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6270), 19, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1979), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10190), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -499123,26 +519350,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6272), 35, + ACTIONS(10188), 31, 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___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + [75829] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9304), 1, anon_sym_LPAREN2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(1979), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10194), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10192), 31, + 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_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -499165,10 +519451,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [76843] = 3, + [75899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 13, + ACTIONS(7571), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -499182,7 +519468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7359), 41, + ACTIONS(7569), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -499224,82 +519510,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [76905] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6868), 2, - anon_sym_final, - anon_sym_override, - STATE(4762), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(8774), 21, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_identifier, - anon_sym_requires, - ACTIONS(8776), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [76971] = 8, + [75961] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2608), 1, + ACTIONS(2968), 1, anon_sym_LBRACE, - ACTIONS(10582), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(10584), 1, + ACTIONS(10984), 1, anon_sym_LBRACK, - STATE(4928), 1, + STATE(5173), 1, sym_new_declarator, - STATE(5710), 2, + STATE(5754), 2, sym_argument_list, sym_initializer_list, - ACTIONS(8866), 20, + ACTIONS(9226), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -499320,7 +519545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8868), 28, + ACTIONS(9228), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -499349,77 +519574,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [77043] = 28, + [76033] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9304), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10180), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10552), 1, - anon_sym_AMP_AMP, - ACTIONS(10554), 1, - anon_sym_PIPE, - ACTIONS(10558), 1, - anon_sym_AMP, - ACTIONS(10564), 1, - anon_sym_GT_EQ, - ACTIONS(10568), 1, - anon_sym_QMARK, - ACTIONS(10570), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10572), 1, - anon_sym_or, - ACTIONS(10574), 1, - anon_sym_and, - ACTIONS(10576), 1, - anon_sym_bitor, - ACTIONS(10578), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10196), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(10546), 2, + STATE(1979), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10174), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10556), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10566), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10548), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10560), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10562), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10198), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10172), 31, + 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___attribute__, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -499433,40 +519629,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [77155] = 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_DOT_STAR, + anon_sym_DASH_GT, + [76103] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9926), 7, + ACTIONS(7087), 1, + anon_sym_COLON_COLON, + ACTIONS(10320), 1, + anon_sym_LT, + STATE(5334), 1, + sym_template_argument_list, + ACTIONS(7085), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7090), 44, + 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, - anon_sym_LBRACK_COLON, - ACTIONS(9924), 47, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -499480,83 +519690,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [77217] = 30, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [76171] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - ACTIONS(10588), 1, + ACTIONS(10986), 1, sym_identifier, - ACTIONS(10590), 1, + ACTIONS(10988), 1, anon_sym_COLON_COLON, - ACTIONS(10594), 1, + ACTIONS(10992), 1, sym_primitive_type, - ACTIONS(10596), 1, + ACTIONS(10994), 1, anon_sym_enum, - ACTIONS(10598), 1, + ACTIONS(10996), 1, anon_sym_class, - ACTIONS(10600), 1, + ACTIONS(10998), 1, anon_sym_struct, - ACTIONS(10602), 1, + ACTIONS(11000), 1, anon_sym_union, - ACTIONS(10604), 1, + ACTIONS(11002), 1, anon_sym_typename, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, + ACTIONS(11004), 1, + sym_auto, + ACTIONS(11006), 1, + anon_sym_decltype, + STATE(3497), 1, sym_alignas_qualifier, - STATE(7299), 1, - sym_splice_specifier, - STATE(7459), 1, + STATE(6426), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7577), 1, - sym_template_type, - STATE(7587), 1, + STATE(6581), 1, + sym_splice_specifier, + STATE(6741), 1, sym_type_specifier, - STATE(7603), 1, + STATE(7121), 1, + sym__splice_specialization_specifier, + STATE(7225), 1, + sym_template_type, + STATE(7440), 1, sym_qualified_type_identifier, - STATE(8072), 1, - sym__type_definition_type, - STATE(8564), 1, + STATE(7625), 1, + sym_decltype_auto, + STATE(8509), 1, + sym_type_descriptor, + STATE(8700), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4949), 2, + STATE(5179), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(7592), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(10592), 4, + ACTIONS(10990), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(7655), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -499578,80 +519785,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [77333] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6800), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6798), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [77395] = 8, + [76287] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6365), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10337), 1, + ACTIONS(9304), 1, anon_sym_LPAREN2, - ACTIONS(10580), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - STATE(5557), 1, + STATE(1979), 1, sym_parameter_list, - STATE(5016), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9033), 20, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10198), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -499661,24 +519806,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___attribute, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9035), 28, + ACTIONS(10196), 31, 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___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -499686,6 +519833,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, @@ -499700,71 +519848,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [77467] = 24, + [76357] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9304), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10552), 1, - anon_sym_AMP_AMP, - ACTIONS(10554), 1, - anon_sym_PIPE, - ACTIONS(10558), 1, - anon_sym_AMP, - ACTIONS(10564), 1, - anon_sym_GT_EQ, - ACTIONS(10570), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10574), 1, - anon_sym_and, - ACTIONS(10576), 1, - anon_sym_bitor, - ACTIONS(10578), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10546), 2, + STATE(1979), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10202), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10556), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10566), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9282), 3, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - ACTIONS(10548), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10560), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10562), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10200), 31, 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___attribute__, anon_sym_QMARK, @@ -499781,143 +519903,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [77571] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10554), 1, - anon_sym_PIPE, - ACTIONS(10558), 1, - anon_sym_AMP, - ACTIONS(10564), 1, - anon_sym_GT_EQ, - ACTIONS(10570), 1, anon_sym_LT_EQ_GT, - ACTIONS(10576), 1, anon_sym_bitor, - ACTIONS(10578), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10546), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10556), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10566), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10560), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10562), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9282), 4, + [76427] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7301), 7, + anon_sym_AMP, anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(9284), 20, - anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7303), 47, 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___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [77671] = 20, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [76489] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9304), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10558), 1, - anon_sym_AMP, - ACTIONS(10564), 1, - anon_sym_GT_EQ, - ACTIONS(10570), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10578), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10546), 2, + STATE(1979), 1, + sym_parameter_list, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10206), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10556), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10566), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10548), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10560), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10562), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9282), 5, - anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, - ACTIONS(9284), 21, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10204), 31, 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___attribute__, anon_sym_QMARK, @@ -499934,22 +520025,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, - [77767] = 8, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [76559] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6125), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8927), 1, + ACTIONS(9304), 1, anon_sym_LPAREN2, - ACTIONS(10540), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - STATE(5561), 1, + STATE(1979), 1, sym_parameter_list, - STATE(5151), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9033), 18, + STATE(3611), 1, + sym__function_declarator_seq, + ACTIONS(10210), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -499963,12 +520058,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9035), 30, + ACTIONS(10208), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -499976,7 +520072,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -499999,60 +520096,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [77839] = 19, + [76629] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(10558), 1, + ACTIONS(10941), 1, + anon_sym_PIPE, + ACTIONS(10945), 1, anon_sym_AMP, - ACTIONS(10564), 1, + ACTIONS(10951), 1, anon_sym_GT_EQ, - ACTIONS(10570), 1, + ACTIONS(10957), 1, anon_sym_LT_EQ_GT, - ACTIONS(10578), 1, + ACTIONS(10963), 1, + anon_sym_bitor, + ACTIONS(10965), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10546), 2, + ACTIONS(10935), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10566), 2, + ACTIONS(10943), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10548), 3, + ACTIONS(10917), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10560), 3, + ACTIONS(10947), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10562), 3, + ACTIONS(10949), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9282), 7, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(9707), 4, anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - ACTIONS(9284), 21, + ACTIONS(9709), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -500073,11 +520174,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - [77933] = 3, + [76729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 19, + ACTIONS(9415), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -500097,7 +520197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9039), 35, + ACTIONS(9417), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -500133,10 +520233,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [77995] = 3, + [76791] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9007), 19, + ACTIONS(6601), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6603), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -500150,13 +520253,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(9009), 35, + ACTIONS(6596), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -500166,7 +520270,7 @@ 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -500188,25 +520292,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [78057] = 8, + [76855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6365), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10337), 1, + ACTIONS(7781), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10580), 1, + 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, + anon_sym_LBRACK_COLON, + ACTIONS(7779), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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, - STATE(5557), 1, - sym_parameter_list, - STATE(5016), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9127), 20, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [76917] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8905), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -500216,24 +520365,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(9129), 28, + anon_sym_DASH_GT, + ACTIONS(8907), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_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, @@ -500241,6 +520393,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, @@ -500254,156 +520407,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [78129] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10564), 1, - anon_sym_GT_EQ, - ACTIONS(10570), 1, - anon_sym_LT_EQ_GT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10546), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10566), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10560), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10562), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9282), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(9284), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_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, - [78219] = 30, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [76979] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6111), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10606), 1, - anon_sym_DASH_GT, - ACTIONS(10608), 1, - anon_sym_requires, - STATE(4238), 1, + ACTIONS(2300), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3732), 1, + anon_sym_enum, + ACTIONS(3734), 1, + anon_sym_class, + ACTIONS(3736), 1, + anon_sym_struct, + ACTIONS(3738), 1, + anon_sym_union, + ACTIONS(3742), 1, + sym_auto, + ACTIONS(3744), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11008), 1, + sym_identifier, + ACTIONS(11010), 1, + anon_sym_COLON_COLON, + ACTIONS(11012), 1, + sym_primitive_type, + ACTIONS(11014), 1, + anon_sym_typename, + STATE(2180), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2292), 1, + sym_type_specifier, + STATE(2547), 1, + sym_splice_specifier, + STATE(2601), 1, + sym__splice_specialization_specifier, + STATE(2622), 1, + sym_template_type, + STATE(2698), 1, + sym_qualified_type_identifier, + STATE(2997), 1, + sym_decltype_auto, + STATE(3497), 1, sym_alignas_qualifier, - STATE(7337), 1, - sym__function_attributes_start, - STATE(7523), 1, - sym_ref_qualifier, - STATE(8306), 1, - sym_trailing_return_type, - STATE(8534), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10014), 2, + STATE(5020), 1, + sym_type_descriptor, + STATE(8682), 1, + sym__scope_resolution, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(10439), 2, - anon_sym_final, - anon_sym_override, - STATE(6036), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6264), 2, + STATE(2942), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5188), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8457), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7650), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6113), 5, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3728), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3067), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [77095] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7665), 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_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_EQ, - anon_sym_try, - ACTIONS(10001), 12, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7663), 41, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -500415,10 +520550,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [78335] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [77157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8651), 19, + ACTIONS(8992), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -500438,7 +520579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8653), 35, + ACTIONS(8994), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -500474,48 +520615,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [78397] = 8, + [77219] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2608), 1, - anon_sym_LBRACE, - ACTIONS(10582), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10584), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(4981), 1, - sym_new_declarator, - STATE(5746), 2, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10945), 1, + anon_sym_AMP, + ACTIONS(10951), 1, + anon_sym_GT_EQ, + ACTIONS(10957), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10965), 1, + anon_sym_bitand, + STATE(3874), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(8804), 20, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10935), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10943), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10917), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9707), 5, + anon_sym_PIPE, + anon_sym___attribute, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8806), 28, + ACTIONS(9709), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -500523,30 +520683,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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [78469] = 5, + [77315] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10617), 1, + ACTIONS(5174), 1, anon_sym_DQUOTE_DQUOTE, - ACTIONS(10615), 2, + ACTIONS(11016), 2, anon_sym_delete, anon_sym_new, - ACTIONS(10613), 20, + ACTIONS(5170), 20, anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, @@ -500567,7 +520720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DASH_GT, - ACTIONS(10611), 31, + ACTIONS(5168), 31, anon_sym_COMMA, anon_sym_TILDE, anon_sym_PIPE_PIPE, @@ -500599,191 +520752,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT_STAR, anon_sym_LPAREN_RPAREN, anon_sym_LBRACK_RBRACK, - [78535] = 5, + [77381] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6414), 1, - anon_sym_LBRACK_LBRACK, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8479), 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, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(9646), 1, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8481), 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, + ACTIONS(10945), 1, + anon_sym_AMP, + ACTIONS(10951), 1, 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, + ACTIONS(10957), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, + ACTIONS(10965), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [78601] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10619), 1, - sym_identifier, - ACTIONS(10621), 1, - anon_sym_COLON_COLON, - ACTIONS(10625), 1, - sym_primitive_type, - ACTIONS(10627), 1, - anon_sym_enum, - ACTIONS(10629), 1, - anon_sym_class, - ACTIONS(10631), 1, - anon_sym_struct, - ACTIONS(10633), 1, - anon_sym_union, - ACTIONS(10635), 1, - anon_sym_typename, - ACTIONS(10637), 1, - sym_auto, - ACTIONS(10639), 1, - anon_sym_decltype, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(6310), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6603), 1, - sym_splice_specifier, - STATE(6703), 1, - sym_type_specifier, - STATE(7033), 1, - sym__splice_specialization_specifier, - STATE(7218), 1, - sym_template_type, - STATE(7294), 1, - sym_qualified_type_identifier, - STATE(7496), 1, - sym_decltype_auto, - STATE(8466), 1, - sym_type_descriptor, - STATE(8612), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5106), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(7484), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(10623), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(7497), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [78717] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6233), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6235), 20, + anon_sym_DASH_GT, + ACTIONS(10935), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10917), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(9707), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6228), 32, + ACTIONS(9709), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_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___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -500798,24 +520826,11 @@ 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, - [78781] = 6, + [77475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(10277), 1, - anon_sym_LT, - STATE(4203), 1, - sym_template_argument_list, - ACTIONS(6208), 12, + ACTIONS(7587), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -500823,21 +520838,27 @@ 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, anon_sym_LBRACK_COLON, - ACTIONS(6201), 39, + ACTIONS(7585), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, 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, @@ -500859,230 +520880,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [78849] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2608), 1, - anon_sym_LBRACE, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(10584), 1, - anon_sym_LBRACK, - STATE(5045), 1, - sym_new_declarator, - STATE(5780), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8903), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8905), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - anon_sym_GT2, - [78921] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10293), 1, - anon_sym_COLON_COLON, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, - sym_type_specifier, - STATE(8605), 1, - sym__scope_resolution, - STATE(10642), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4954), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [79037] = 30, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [77537] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(10657), 1, anon_sym_typename, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(2634), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, + STATE(7223), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(10676), 1, + STATE(10730), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -501104,21 +520972,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [79153] = 8, + [77653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, - anon_sym_LBRACE, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - ACTIONS(10544), 1, - anon_sym_LBRACK, - STATE(5095), 1, - sym_new_declarator, - STATE(5725), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8903), 18, + ACTIONS(9419), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -501137,15 +520994,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8905), 30, + anon_sym_DASH_GT, + ACTIONS(9421), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -501167,11 +521027,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [79225] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [77715] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6254), 19, + ACTIONS(3052), 1, + anon_sym_LBRACE, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(10902), 1, + anon_sym_LBRACK, + STATE(5233), 1, + sym_new_declarator, + STATE(5779), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9248), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -501185,26 +521059,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6256), 35, + ACTIONS(9250), 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_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -501227,71 +521095,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [79287] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10647), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(10645), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(10643), 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(10641), 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, - [79353] = 3, + [77787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7237), 13, + ACTIONS(7475), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -501305,7 +521112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7235), 41, + ACTIONS(7473), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -501347,10 +521154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [79415] = 3, + [77849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9078), 19, + ACTIONS(9333), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -501370,7 +521177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9080), 35, + ACTIONS(9335), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -501406,71 +521213,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [79477] = 30, + [77911] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3291), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(3293), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(3295), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(3297), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(4800), 1, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10295), 1, - sym_primitive_type, ACTIONS(10649), 1, sym_identifier, - ACTIONS(10651), 1, - anon_sym_COLON_COLON, ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, anon_sym_typename, - STATE(2634), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(2866), 1, - sym_type_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(3688), 1, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, sym_splice_specifier, - STATE(5214), 1, - sym_type_descriptor, - STATE(8621), 1, + STATE(8711), 1, sym__scope_resolution, + STATE(10647), 1, + sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(5127), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -501492,47 +521299,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [79593] = 3, + [78027] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7261), 13, + ACTIONS(6768), 1, + anon_sym_LBRACK_LBRACK, + STATE(4769), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9071), 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_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9073), 34, anon_sym_DOT_DOT_DOT, 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [78093] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10951), 1, + anon_sym_GT_EQ, + ACTIONS(10957), 1, + anon_sym_LT_EQ_GT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10935), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10917), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9707), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9709), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [78183] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2248), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_class, + ACTIONS(2252), 1, + anon_sym_struct, + ACTIONS(2254), 1, + anon_sym_union, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - ACTIONS(7259), 41, - anon_sym_AMP, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, + sym__scope_resolution, + STATE(11126), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5167), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -501545,16 +521519,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [79655] = 3, + [78299] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7265), 13, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(7225), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -501563,12 +521533,11 @@ 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_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7263), 41, + ACTIONS(7223), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -501610,10 +521579,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [79717] = 3, + [78363] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2248), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_class, + ACTIONS(2252), 1, + anon_sym_struct, + ACTIONS(2254), 1, + anon_sym_union, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, + sym__scope_resolution, + STATE(10747), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5167), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [78479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9082), 19, + ACTIONS(8921), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -501633,7 +521688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9084), 35, + ACTIONS(8923), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -501669,15 +521724,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [79779] = 5, + [78541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6414), 1, - anon_sym_LBRACK_LBRACK, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8512), 17, + ACTIONS(8946), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -501691,11 +521741,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(8514), 34, + ACTIONS(8948), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -501705,6 +521757,7 @@ 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, @@ -501716,11 +521769,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, @@ -501730,47 +521783,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [79845] = 3, + [78603] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7269), 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_EQ, - anon_sym_GT2, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(7267), 41, - anon_sym_AMP, + ACTIONS(11018), 1, + sym_identifier, + ACTIONS(11020), 1, + anon_sym_COLON_COLON, + ACTIONS(11024), 1, + sym_primitive_type, + ACTIONS(11026), 1, + anon_sym_enum, + ACTIONS(11028), 1, + anon_sym_class, + ACTIONS(11030), 1, + anon_sym_struct, + ACTIONS(11032), 1, + anon_sym_union, + ACTIONS(11034), 1, + anon_sym_typename, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(7481), 1, + sym_splice_specifier, + STATE(7606), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7693), 1, + sym_template_type, + STATE(7707), 1, + sym_type_specifier, + STATE(7716), 1, + sym_qualified_type_identifier, + STATE(8162), 1, + sym__type_definition_type, + STATE(8691), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11022), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -501783,80 +521869,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [79907] = 8, + [78719] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6365), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10337), 1, - anon_sym_LPAREN2, - ACTIONS(10580), 1, - anon_sym_LBRACK, - STATE(5557), 1, - sym_parameter_list, - STATE(5016), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8947), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8949), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - anon_sym_GT2, - [79979] = 3, + ACTIONS(2248), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_class, + ACTIONS(2252), 1, + anon_sym_struct, + ACTIONS(2254), 1, + anon_sym_union, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, + sym__scope_resolution, + STATE(11399), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5167), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [78835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7273), 13, + ACTIONS(7597), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -501870,7 +521972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7271), 41, + ACTIONS(7595), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -501912,16 +522014,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [80041] = 5, + [78897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10661), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(10659), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(10657), 20, - anon_sym_BANG, + ACTIONS(5589), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -501931,52 +522027,56 @@ 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_not, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(10655), 31, + anon_sym_DOT, + ACTIONS(5591), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + anon_sym_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_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, - [80107] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [78959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7277), 13, + ACTIONS(7633), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -501990,7 +522090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7275), 41, + ACTIONS(7631), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -502032,129 +522132,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [80169] = 16, + [79021] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(10564), 1, + ACTIONS(10951), 1, anon_sym_GT_EQ, - ACTIONS(10570), 1, + ACTIONS(10957), 1, anon_sym_LT_EQ_GT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10546), 2, + ACTIONS(10935), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10566), 2, + ACTIONS(10953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10548), 3, + ACTIONS(10917), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10562), 3, + ACTIONS(10949), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9282), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(9284), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_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, - [80257] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10570), 1, - anon_sym_LT_EQ_GT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10546), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10566), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9282), 11, + ACTIONS(9707), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9284), 26, + ACTIONS(9709), 25, 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___attribute__, anon_sym_QMARK, @@ -502174,16 +522204,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [80341] = 5, + [79109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(10663), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(4776), 20, - anon_sym_BANG, + ACTIONS(7968), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -502198,19 +522222,23 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, anon_sym_DASH_GT, - ACTIONS(4774), 31, + ACTIONS(7966), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_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, @@ -502224,82 +522252,82 @@ 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_co_await, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [80407] = 30, + [79171] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, - sym_identifier, - ACTIONS(4780), 1, - anon_sym_COLON_COLON, - ACTIONS(4784), 1, - sym_primitive_type, - ACTIONS(4786), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(4788), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(4790), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(4792), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(4794), 1, - anon_sym_typename, - ACTIONS(4796), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(4798), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(4270), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4691), 1, - sym_splice_specifier, - STATE(5263), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(5264), 1, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, sym_template_type, - STATE(5495), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(6020), 1, - sym_decltype_auto, - STATE(6166), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(7593), 1, sym_type_specifier, - STATE(8181), 1, + STATE(8362), 1, sym_type_descriptor, - STATE(8584), 1, + STATE(8711), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5134), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5891), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(5211), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(4782), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5975), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -502321,10 +522349,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [80523] = 3, + [79287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7609), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7607), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [79349] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 19, + ACTIONS(2968), 1, + anon_sym_LBRACE, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + ACTIONS(10984), 1, + anon_sym_LBRACK, + STATE(5197), 1, + sym_new_declarator, + STATE(5813), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9248), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -502334,27 +522432,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(8635), 35, + ACTIONS(9250), 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, @@ -502362,7 +522457,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, @@ -502376,166 +522470,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [80585] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [79421] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8595), 19, + STATE(4105), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(3889), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3899), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(9116), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_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(8597), 35, + sym_identifier, + sym_literal_suffix, + ACTIONS(9118), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [80647] = 7, + anon_sym_DASH_GT, + [79489] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10665), 1, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10937), 1, anon_sym_PIPE_PIPE, - ACTIONS(10667), 1, + ACTIONS(10939), 1, anon_sym_AMP_AMP, - ACTIONS(10669), 1, - anon_sym_or, - ACTIONS(10671), 1, - anon_sym_and, - ACTIONS(8959), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10941), 1, anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(10945), 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_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8961), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(10951), 1, 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, + ACTIONS(10957), 1, anon_sym_LT_EQ_GT, + ACTIONS(10959), 1, + anon_sym_or, + ACTIONS(10961), 1, + anon_sym_and, + ACTIONS(10963), 1, anon_sym_bitor, + ACTIONS(10965), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [80717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5233), 21, + anon_sym_DASH_GT, + ACTIONS(10435), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(10935), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10943), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10917), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 3, 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(5235), 33, + ACTIONS(10437), 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_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -502543,28 +522609,103 @@ 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [80779] = 3, + [79597] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2248), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_class, + ACTIONS(2252), 1, + anon_sym_struct, + ACTIONS(2254), 1, + anon_sym_union, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8362), 1, + sym_type_descriptor, + STATE(8711), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5167), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [79713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9093), 19, + ACTIONS(3163), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -502584,7 +522725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9095), 35, + ACTIONS(3161), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -502620,10 +522761,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [80841] = 3, + [79775] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3807), 1, + anon_sym_enum, + ACTIONS(3809), 1, + anon_sym_class, + ACTIONS(3811), 1, + anon_sym_struct, + ACTIONS(3813), 1, + anon_sym_union, + ACTIONS(3819), 1, + sym_auto, + ACTIONS(3821), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11036), 1, + sym_identifier, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(11040), 1, + sym_primitive_type, + ACTIONS(11042), 1, + anon_sym_typename, + STATE(2073), 1, + sym_template_type, + STATE(2076), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2087), 1, + sym_qualified_type_identifier, + STATE(2104), 1, + sym_splice_specifier, + STATE(2121), 1, + sym_type_specifier, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2221), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3603), 1, + sym_type_descriptor, + STATE(8763), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2169), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5189), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3803), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2222), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [79891] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8655), 19, + ACTIONS(3052), 1, + anon_sym_LBRACE, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(10902), 1, + anon_sym_LBRACK, + STATE(5249), 1, + sym_new_declarator, + STATE(5853), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9256), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -502642,18 +522880,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8657), 35, + ACTIONS(9258), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -502675,14 +522910,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [80903] = 3, + anon_sym_DASH_GT, + [79963] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 19, + ACTIONS(6493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10969), 1, + anon_sym_LBRACK, + STATE(5585), 1, + sym_parameter_list, + STATE(5055), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9476), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -502701,18 +522944,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2801), 35, + ACTIONS(9478), 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_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -502734,80 +522974,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [80965] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10673), 2, - anon_sym_final, - anon_sym_override, - STATE(4762), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(8755), 21, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_identifier, - anon_sym_requires, - ACTIONS(8757), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [81031] = 5, + [80035] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6414), 1, - anon_sym_LBRACK_LBRACK, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8725), 17, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + STATE(5577), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9431), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -502821,20 +522999,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(8727), 34, + ACTIONS(9433), 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, @@ -502846,167 +523026,141 @@ 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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [81097] = 26, + [80103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10552), 1, - anon_sym_AMP_AMP, - ACTIONS(10554), 1, - anon_sym_PIPE, - ACTIONS(10558), 1, - anon_sym_AMP, - ACTIONS(10564), 1, - anon_sym_GT_EQ, - ACTIONS(10570), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10572), 1, - anon_sym_or, - ACTIONS(10574), 1, - anon_sym_and, - ACTIONS(10576), 1, - anon_sym_bitor, - ACTIONS(10578), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10089), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(10546), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10556), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10566), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10560), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10562), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10091), 18, + ACTIONS(7625), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7623), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [81205] = 30, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [80165] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3197), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(3199), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(3201), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(3203), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(3207), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(3209), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10676), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10678), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10680), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10682), 1, + ACTIONS(10657), 1, anon_sym_typename, - STATE(2119), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2189), 1, - sym_type_specifier, - STATE(2431), 1, - sym_splice_specifier, - STATE(2509), 1, - sym_template_type, - STATE(2514), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(2568), 1, - sym_qualified_type_identifier, - STATE(2925), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(4722), 1, - sym_type_descriptor, - STATE(8639), 1, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, + STATE(11022), 1, + sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2832), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(5140), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3193), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2926), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -503028,74 +523182,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [81321] = 26, + [80281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10552), 1, - anon_sym_AMP_AMP, - ACTIONS(10554), 1, - anon_sym_PIPE, - ACTIONS(10558), 1, - anon_sym_AMP, - ACTIONS(10564), 1, - anon_sym_GT_EQ, - ACTIONS(10570), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10572), 1, - anon_sym_or, - ACTIONS(10574), 1, - anon_sym_and, - ACTIONS(10576), 1, - anon_sym_bitor, - ACTIONS(10578), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10123), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(10546), 2, + ACTIONS(5589), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10556), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10566), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10548), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10560), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10562), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10125), 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(5591), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -503110,47 +523230,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [81429] = 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [80343] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7247), 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, + ACTIONS(2248), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_class, + ACTIONS(2252), 1, + anon_sym_struct, + ACTIONS(2254), 1, + anon_sym_union, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - ACTIONS(7245), 41, - anon_sym_AMP, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, + sym__scope_resolution, + STATE(11221), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5167), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -503163,80 +523327,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [81491] = 26, + [80459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10552), 1, - anon_sym_AMP_AMP, - ACTIONS(10554), 1, - anon_sym_PIPE, - ACTIONS(10558), 1, - anon_sym_AMP, - ACTIONS(10564), 1, - anon_sym_GT_EQ, - ACTIONS(10570), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10572), 1, - anon_sym_or, - ACTIONS(10574), 1, - anon_sym_and, - ACTIONS(10576), 1, - anon_sym_bitor, - ACTIONS(10578), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9344), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(10546), 2, + ACTIONS(9423), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10556), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10566), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10548), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10560), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10562), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9342), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9425), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_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, @@ -503251,71 +523375,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [81599] = 30, + anon_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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [80521] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3173), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(3175), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(3177), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(3179), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(3185), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(3187), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10684), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10686), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10688), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10690), 1, + ACTIONS(10657), 1, anon_sym_typename, - STATE(1963), 1, - sym_template_type, - STATE(1965), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1994), 1, - sym_qualified_type_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2002), 1, - sym_type_specifier, - STATE(2026), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(2070), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3523), 1, - sym_type_descriptor, - STATE(8593), 1, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, + STATE(10758), 1, + sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2063), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(5143), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3169), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2089), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -503337,47 +523472,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [81715] = 3, + [80637] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7285), 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, + ACTIONS(2248), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_class, + ACTIONS(2252), 1, + anon_sym_struct, + ACTIONS(2254), 1, + anon_sym_union, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - ACTIONS(7283), 41, - anon_sym_AMP, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, + sym__scope_resolution, + STATE(11530), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5167), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -503390,16 +523558,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [81777] = 3, + [80753] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6258), 19, + ACTIONS(6685), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10842), 1, + anon_sym_LPAREN2, + ACTIONS(10907), 1, + anon_sym_LBRACK, + STATE(5634), 1, + sym_parameter_list, + STATE(5067), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9439), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -503409,30 +523582,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_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6260), 35, + ACTIONS(9441), 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_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -503440,7 +523607,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, @@ -503455,107 +523621,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [81839] = 3, + anon_sym_GT2, + [80825] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6262), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2248), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_class, + ACTIONS(2252), 1, + anon_sym_struct, + ACTIONS(2254), 1, + anon_sym_union, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, + sym__scope_resolution, + STATE(11506), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5167), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [80941] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6479), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6264), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(10348), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, + ACTIONS(10350), 1, + anon_sym_AMP, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - 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_DOT_STAR, + ACTIONS(10979), 1, + anon_sym_requires, + ACTIONS(11044), 1, anon_sym_DASH_GT, - [81901] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7225), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(7469), 1, + sym__function_attributes_start, + STATE(7652), 1, + sym_ref_qualifier, + STATE(8396), 1, + sym_trailing_return_type, + STATE(8626), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10821), 2, + anon_sym_final, + anon_sym_override, + STATE(6144), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6360), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8522), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7793), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6481), 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, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7223), 41, - anon_sym_AMP, + anon_sym_try, + ACTIONS(10352), 12, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -503567,16 +523794,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [81963] = 3, + [81057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7289), 13, + ACTIONS(7597), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -503590,7 +523811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7287), 41, + ACTIONS(7595), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -503632,10 +523853,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [82025] = 3, + [81119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7293), 13, + ACTIONS(7629), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -503649,7 +523870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7291), 41, + ACTIONS(7627), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -503691,132 +523912,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [82087] = 5, + [81181] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(10692), 1, - anon_sym_LBRACK_LBRACK, - STATE(4776), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2101), 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_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8700), 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [82153] = 30, + ACTIONS(2248), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_class, + ACTIONS(2252), 1, + anon_sym_struct, + ACTIONS(2254), 1, + anon_sym_union, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(6583), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8509), 1, + sym_type_descriptor, + STATE(8711), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [81297] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2823), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(2825), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(2827), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(2829), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(2855), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(2857), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10695), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10697), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10699), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10701), 1, + ACTIONS(10657), 1, anon_sym_typename, - STATE(3482), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3965), 1, + STATE(3684), 1, sym_template_type, - STATE(4048), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(4189), 1, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, + sym__scope_resolution, + STATE(11724), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5167), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [81413] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2248), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_class, + ACTIONS(2252), 1, + anon_sym_struct, + ACTIONS(2254), 1, + anon_sym_union, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(4401), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(6549), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7032), 1, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7223), 1, sym_type_specifier, - STATE(7130), 1, + STATE(7260), 1, sym_splice_specifier, - STATE(8466), 1, - sym_type_descriptor, - STATE(8634), 1, + STATE(8711), 1, sym__scope_resolution, + STATE(11034), 1, + sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4252), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(5145), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2819), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4402), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -503838,131 +524170,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [82269] = 6, + [81529] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, - anon_sym_LBRACE, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - STATE(5589), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9117), 19, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(9552), 1, + anon_sym_LT, + STATE(4313), 1, + sym_template_argument_list, + ACTIONS(7094), 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_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9119), 31, + ACTIONS(7090), 15, + anon_sym___extension__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7087), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_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_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, - [82337] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [81599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8606), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(8608), 35, + ACTIONS(7645), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7643), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [82399] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [81661] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8610), 19, + ACTIONS(6685), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10842), 1, + anon_sym_LPAREN2, + ACTIONS(10907), 1, + anon_sym_LBRACK, + STATE(5634), 1, + sym_parameter_list, + STATE(5067), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9300), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -503972,27 +524316,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(8612), 35, + ACTIONS(9302), 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, @@ -504000,7 +524341,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, @@ -504014,14 +524354,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [82461] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [81733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7301), 13, + ACTIONS(7773), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -504035,7 +524373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7299), 41, + ACTIONS(7771), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -504077,71 +524415,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [82523] = 30, + [81795] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2823), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(2825), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(2827), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(2829), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(2855), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(2857), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10695), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10697), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10699), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10701), 1, + ACTIONS(10657), 1, anon_sym_typename, - STATE(3482), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3965), 1, + STATE(3684), 1, sym_template_type, - STATE(4048), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(4189), 1, - sym__splice_specialization_specifier, - STATE(4401), 1, - sym_decltype_auto, - STATE(6549), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6632), 1, + STATE(7223), 1, sym_type_specifier, - STATE(7130), 1, + STATE(7260), 1, sym_splice_specifier, - STATE(8466), 1, - sym_type_descriptor, - STATE(8634), 1, + STATE(8711), 1, sym__scope_resolution, + STATE(11396), 1, + sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4252), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(5147), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2819), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4402), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -504163,72 +524501,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [82639] = 6, + [81911] = 8, ACTIONS(3), 1, sym_comment, - STATE(4004), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(3359), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3369), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8737), 17, - anon_sym_DASH, - 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8739), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6685), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10842), 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_RBRACK_RBRACK, - anon_sym_RBRACE, + ACTIONS(10907), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [82707] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8622), 19, + STATE(5634), 1, + sym_parameter_list, + STATE(5067), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9476), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -504238,27 +524525,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(8624), 35, + ACTIONS(9478), 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, @@ -504266,7 +524550,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, @@ -504280,100 +524563,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [82769] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10293), 1, - anon_sym_COLON_COLON, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(6678), 1, - sym_type_specifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(8466), 1, - sym_type_descriptor, - STATE(8605), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5031), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [82885] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [81983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7289), 13, + ACTIONS(7649), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -504387,7 +524582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7287), 41, + ACTIONS(7647), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -504429,71 +524624,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [82947] = 30, + [82045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, - sym_identifier, - ACTIONS(4780), 1, - anon_sym_COLON_COLON, - ACTIONS(4784), 1, - sym_primitive_type, - ACTIONS(4786), 1, + ACTIONS(7789), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(7791), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [82107] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10469), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10939), 1, + anon_sym_AMP_AMP, + ACTIONS(10941), 1, + anon_sym_PIPE, + ACTIONS(10945), 1, + anon_sym_AMP, + ACTIONS(10951), 1, + anon_sym_GT_EQ, + ACTIONS(10955), 1, + anon_sym_QMARK, + ACTIONS(10957), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10959), 1, + anon_sym_or, + ACTIONS(10961), 1, + anon_sym_and, + ACTIONS(10963), 1, + anon_sym_bitor, + ACTIONS(10965), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10489), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(10935), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10943), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10917), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10491), 16, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [82219] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(4788), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(4790), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(4792), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(4794), 1, - anon_sym_typename, - ACTIONS(4796), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(4798), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(4270), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4691), 1, - sym_splice_specifier, - STATE(5263), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(5264), 1, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, sym_template_type, - STATE(5495), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(6020), 1, - sym_decltype_auto, - STATE(6087), 1, + STATE(7223), 1, sym_type_specifier, - STATE(8181), 1, - sym_type_descriptor, - STATE(8584), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, + STATE(11024), 1, + sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5155), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5891), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(5167), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(4782), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5975), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -504515,71 +524853,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [83063] = 30, + [82335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 1, - sym_auto, - ACTIONS(2857), 1, - anon_sym_decltype, - ACTIONS(2875), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3544), 1, + ACTIONS(8954), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(8956), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [82397] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3204), 1, anon_sym_enum, - ACTIONS(3546), 1, + ACTIONS(3206), 1, anon_sym_class, - ACTIONS(3548), 1, + ACTIONS(3208), 1, anon_sym_struct, - ACTIONS(3550), 1, + ACTIONS(3210), 1, anon_sym_union, - ACTIONS(4800), 1, + ACTIONS(3236), 1, + sym_auto, + ACTIONS(3238), 1, + anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10699), 1, - sym_primitive_type, - ACTIONS(10703), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11046), 1, sym_identifier, - ACTIONS(10705), 1, + ACTIONS(11048), 1, anon_sym_COLON_COLON, - ACTIONS(10707), 1, + ACTIONS(11050), 1, + sym_primitive_type, + ACTIONS(11052), 1, anon_sym_typename, - STATE(3378), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3644), 1, - sym_type_specifier, - STATE(3965), 1, + STATE(4043), 1, sym_template_type, - STATE(4048), 1, + STATE(4204), 1, sym_qualified_type_identifier, - STATE(4067), 1, - sym_splice_specifier, - STATE(4189), 1, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(4401), 1, + STATE(4426), 1, sym_decltype_auto, - STATE(6529), 1, + STATE(6642), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7088), 1, + sym_type_specifier, + STATE(7326), 1, + sym_splice_specifier, + STATE(8509), 1, sym_type_descriptor, - STATE(8549), 1, + STATE(8745), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4252), 2, + STATE(4373), 2, sym_decltype, sym_splice_type_specifier, - STATE(5158), 2, + STATE(5190), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3542), 4, + ACTIONS(3200), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4402), 7, + STATE(4430), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -504601,71 +524998,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [83179] = 30, + [82513] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10619), 1, - sym_identifier, - ACTIONS(10621), 1, - anon_sym_COLON_COLON, - ACTIONS(10625), 1, - sym_primitive_type, - ACTIONS(10627), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(10629), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(10631), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(10633), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(10635), 1, - anon_sym_typename, - ACTIONS(10637), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(10639), 1, + ACTIONS(2282), 1, anon_sym_decltype, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(6310), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6417), 1, - sym_type_specifier, - STATE(6603), 1, - sym_splice_specifier, - STATE(7033), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(7218), 1, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, sym_template_type, - STATE(7294), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(7496), 1, - sym_decltype_auto, - STATE(8466), 1, - sym_type_descriptor, - STATE(8612), 1, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, + STATE(11140), 1, + sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4925), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(7484), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(5167), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(10623), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(7497), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -504687,12 +525084,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [83295] = 4, + [82629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(6800), 12, + ACTIONS(7741), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -504701,11 +525096,12 @@ 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_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(6798), 41, + ACTIONS(7739), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -504747,157 +525143,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [83359] = 30, + [82691] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2744), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3455), 1, + ACTIONS(2968), 1, + anon_sym_LBRACE, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + ACTIONS(10984), 1, + anon_sym_LBRACK, + STATE(5218), 1, + sym_new_declarator, + STATE(5896), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9256), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9258), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + anon_sym_GT2, + [82763] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(3457), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(3459), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(3465), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(3467), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10709), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10711), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10713), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10715), 1, + ACTIONS(10657), 1, anon_sym_typename, - STATE(2240), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2287), 1, - sym_type_specifier, - STATE(2677), 1, - sym_splice_specifier, - STATE(2814), 1, - sym_template_type, - STATE(2837), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(2887), 1, - sym_qualified_type_identifier, - STATE(3453), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(5482), 1, - sym_type_descriptor, - STATE(8588), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3262), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4927), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3451), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3460), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [83475] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3361), 1, - sym_auto, - ACTIONS(3363), 1, - anon_sym_decltype, - ACTIONS(3397), 1, - anon_sym_enum, - ACTIONS(3399), 1, - anon_sym_class, - ACTIONS(3401), 1, - anon_sym_struct, - ACTIONS(3403), 1, - anon_sym_union, - ACTIONS(3443), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10717), 1, - sym_identifier, - ACTIONS(10719), 1, - anon_sym_COLON_COLON, - ACTIONS(10721), 1, - sym_primitive_type, - ACTIONS(10723), 1, - anon_sym_typename, - STATE(3403), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3627), 1, + STATE(3684), 1, sym_template_type, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(3645), 1, - sym_type_specifier, - STATE(3658), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(4041), 1, - sym_decltype_auto, - STATE(4072), 1, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, sym_splice_specifier, - STATE(6579), 1, - sym_type_descriptor, - STATE(8571), 1, + STATE(8711), 1, sym__scope_resolution, + STATE(11242), 1, + sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3887), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4929), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3393), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4042), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -504919,81 +525293,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [83591] = 30, + [82879] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2648), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3243), 1, - anon_sym_enum, - ACTIONS(3245), 1, - anon_sym_class, - ACTIONS(3247), 1, - anon_sym_struct, - ACTIONS(3249), 1, - anon_sym_union, - ACTIONS(3255), 1, - sym_auto, - ACTIONS(3257), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10725), 1, - sym_identifier, - ACTIONS(10727), 1, - anon_sym_COLON_COLON, - ACTIONS(10729), 1, - sym_primitive_type, - ACTIONS(10731), 1, - anon_sym_typename, - STATE(2169), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2224), 1, - sym_type_specifier, - STATE(2519), 1, - sym_splice_specifier, - STATE(2567), 1, - sym__splice_specialization_specifier, - STATE(2591), 1, - sym_template_type, - STATE(2699), 1, - sym_qualified_type_identifier, - STATE(3138), 1, - sym_decltype_auto, - STATE(3482), 1, + ACTIONS(6479), 1, + anon_sym_LBRACK, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(10348), 1, + anon_sym_AMP_AMP, + ACTIONS(10350), 1, + anon_sym_AMP, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10921), 1, + anon_sym_requires, + ACTIONS(11044), 1, + anon_sym_DASH_GT, + STATE(4333), 1, sym_alignas_qualifier, - STATE(4964), 1, - sym_type_descriptor, - STATE(8604), 1, - sym__scope_resolution, - ACTIONS(71), 2, + STATE(7471), 1, + sym__function_attributes_start, + STATE(7654), 1, + sym_ref_qualifier, + STATE(8440), 1, + sym_trailing_return_type, + STATE(8661), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10365), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2973), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4932), 2, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(6144), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6360), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3239), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3140), 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(67), 13, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8522), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7799), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6481), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(10352), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -505005,80 +525379,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [83707] = 30, + [82995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2732), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3512), 1, - anon_sym_enum, - ACTIONS(3514), 1, - anon_sym_class, - ACTIONS(3516), 1, - anon_sym_struct, - ACTIONS(3518), 1, - anon_sym_union, - ACTIONS(3524), 1, - sym_auto, - ACTIONS(3526), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10733), 1, - sym_identifier, - ACTIONS(10735), 1, + ACTIONS(7745), 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, - ACTIONS(10737), 1, - sym_primitive_type, - ACTIONS(10739), 1, - anon_sym_typename, - STATE(2162), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2230), 1, - sym_type_specifier, - STATE(2530), 1, - sym_splice_specifier, - STATE(2580), 1, - sym_template_type, - STATE(2597), 1, - sym__splice_specialization_specifier, - STATE(2641), 1, - sym_qualified_type_identifier, - STATE(2982), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(5098), 1, - sym_type_descriptor, - STATE(8624), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2856), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4933), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3508), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2983), 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(67), 13, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7743), 41, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -505091,80 +525432,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [83823] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3291), 1, - anon_sym_enum, - ACTIONS(3293), 1, - anon_sym_class, - ACTIONS(3295), 1, - anon_sym_struct, - ACTIONS(3297), 1, - anon_sym_union, - ACTIONS(4800), 1, anon_sym_template, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10651), 1, + anon_sym_operator, + [83057] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, anon_sym_COLON_COLON, - ACTIONS(10653), 1, - anon_sym_typename, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3389), 1, - sym_type_specifier, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(3688), 1, - sym_splice_specifier, - STATE(5214), 1, - sym_type_descriptor, - STATE(8621), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4935), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, + ACTIONS(10647), 1, + anon_sym_LT, + STATE(4318), 1, + sym_template_argument_list, + ACTIONS(6572), 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6565), 39, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -505177,71 +525491,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [83939] = 30, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [83125] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3341), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(3343), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(3345), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(3347), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(3361), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(3363), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10721), 1, - sym_primitive_type, - ACTIONS(10741), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10743), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10745), 1, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, anon_sym_typename, - STATE(2838), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2952), 1, - sym_type_specifier, - STATE(3482), 1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3627), 1, + STATE(3684), 1, sym_template_type, - STATE(3634), 1, - sym_splice_specifier, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(3658), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(4041), 1, - sym_decltype_auto, - STATE(5214), 1, - sym_type_descriptor, - STATE(8631), 1, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, + STATE(10697), 1, + sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3887), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4936), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3337), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4042), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -505263,71 +525586,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [84055] = 30, + [83241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 1, + ACTIONS(7653), 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_EQ, + anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(3173), 1, + ACTIONS(7651), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [83303] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(3175), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(3177), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(3179), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(3185), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(3187), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10684), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10686), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10688), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10690), 1, + ACTIONS(10657), 1, anon_sym_typename, - STATE(1963), 1, - sym_template_type, - STATE(1965), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1994), 1, - sym_qualified_type_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(2070), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(2146), 1, - sym_type_specifier, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3523), 1, - sym_type_descriptor, - STATE(8593), 1, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, + STATE(10763), 1, + sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2063), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4937), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3169), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2089), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -505349,71 +525731,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [84171] = 30, + [83419] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3175), 1, + ACTIONS(11054), 2, + anon_sym_final, + anon_sym_override, + STATE(4889), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9143), 21, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + 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_identifier, + anon_sym_requires, + ACTIONS(9145), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [83485] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8424), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(8422), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [83547] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3204), 1, + anon_sym_enum, + ACTIONS(3206), 1, anon_sym_class, - ACTIONS(3177), 1, + ACTIONS(3208), 1, anon_sym_struct, - ACTIONS(3179), 1, + ACTIONS(3210), 1, anon_sym_union, - ACTIONS(3185), 1, + ACTIONS(3236), 1, sym_auto, - ACTIONS(3187), 1, + ACTIONS(3238), 1, anon_sym_decltype, - ACTIONS(3273), 1, - anon_sym_enum, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10686), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11046), 1, + sym_identifier, + ACTIONS(11048), 1, anon_sym_COLON_COLON, - ACTIONS(10737), 1, + ACTIONS(11050), 1, sym_primitive_type, - ACTIONS(10747), 1, - sym_identifier, - ACTIONS(10749), 1, + ACTIONS(11052), 1, anon_sym_typename, - STATE(1963), 1, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(4043), 1, sym_template_type, - STATE(1988), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1994), 1, + STATE(4204), 1, sym_qualified_type_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2016), 1, - sym_type_specifier, - STATE(2026), 1, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(2070), 1, + STATE(4426), 1, sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3523), 1, + STATE(6642), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6835), 1, + sym_type_specifier, + STATE(7326), 1, + sym_splice_specifier, + STATE(8509), 1, sym_type_descriptor, - STATE(8593), 1, + STATE(8745), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2063), 2, + STATE(4373), 2, sym_decltype, sym_splice_type_specifier, - STATE(4938), 2, + STATE(5191), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3269), 4, + ACTIONS(3200), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2089), 7, + STATE(4430), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -505435,14 +525937,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [84287] = 5, + [83663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10667), 1, - anon_sym_AMP_AMP, - ACTIONS(10671), 1, - anon_sym_and, - ACTIONS(8939), 18, + ACTIONS(8996), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -505458,15 +525956,17 @@ 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(8941), 34, + ACTIONS(8998), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -505496,10 +525996,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [84353] = 3, + [83725] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2248), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_class, + ACTIONS(2252), 1, + anon_sym_struct, + ACTIONS(2254), 1, + anon_sym_union, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, + sym__scope_resolution, + STATE(10830), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5167), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [83841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8614), 19, + ACTIONS(9361), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -505519,7 +526105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8616), 35, + ACTIONS(9363), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -505555,18 +526141,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [84415] = 7, + [83903] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(6208), 1, - anon_sym_LBRACE, - ACTIONS(8492), 1, - anon_sym_LT, - STATE(5009), 1, - sym_template_argument_list, - ACTIONS(6210), 18, + ACTIONS(6768), 1, + anon_sym_LBRACK_LBRACK, + STATE(4769), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8837), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -505577,15 +526160,14 @@ 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(6203), 32, + ACTIONS(8839), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -505595,7 +526177,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, @@ -505607,40 +526188,95 @@ 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_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [84485] = 7, + [83969] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6746), 1, - anon_sym_const, - ACTIONS(9187), 1, - anon_sym_LT, - STATE(4211), 1, - sym_template_argument_list, - ACTIONS(6755), 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(6751), 15, + ACTIONS(2248), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_class, + ACTIONS(2252), 1, + anon_sym_struct, + ACTIONS(2254), 1, + anon_sym_union, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(6746), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8509), 1, + sym_type_descriptor, + STATE(8711), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5239), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -505652,100 +526288,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6748), 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_COLON_COLON, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [84555] = 30, + [84085] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(5132), 1, + sym_identifier, + ACTIONS(5140), 1, + anon_sym_COLON_COLON, + ACTIONS(5144), 1, + sym_primitive_type, + ACTIONS(5146), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(5148), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(5150), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(5152), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(5154), 1, + anon_sym_typename, + ACTIONS(5156), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(5158), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10293), 1, - anon_sym_COLON_COLON, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(4387), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4802), 1, + sym_splice_specifier, + STATE(5365), 1, sym_template_type, - STATE(3623), 1, + STATE(5472), 1, + sym__splice_specialization_specifier, + STATE(5574), 1, sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, + STATE(6031), 1, + sym_decltype_auto, + STATE(6205), 1, sym_type_specifier, - STATE(8605), 1, - sym__scope_resolution, - STATE(10477), 1, + STATE(8362), 1, sym_type_descriptor, + STATE(8757), 1, + sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4954), 2, + STATE(5195), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(5973), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(5142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(6050), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -505767,71 +526374,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [84671] = 30, + [84201] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(10657), 1, anon_sym_typename, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(2634), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, + STATE(7223), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(10821), 1, + STATE(11033), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -505853,71 +526460,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [84787] = 30, + [84317] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(3236), 1, + sym_auto, + ACTIONS(3238), 1, + anon_sym_decltype, + ACTIONS(3256), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4397), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(4399), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(4401), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(4403), 1, anon_sym_union, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(11050), 1, + sym_primitive_type, + ACTIONS(11057), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(11059), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(11061), 1, anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, + STATE(3490), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3704), 1, + sym_type_specifier, + STATE(4043), 1, sym_template_type, - STATE(3623), 1, + STATE(4204), 1, sym_qualified_type_identifier, - STATE(7086), 1, + STATE(4272), 1, sym_splice_specifier, - STATE(7094), 1, - sym_type_specifier, - STATE(8605), 1, - sym__scope_resolution, - STATE(11353), 1, + STATE(4305), 1, + sym__splice_specialization_specifier, + STATE(4426), 1, + sym_decltype_auto, + STATE(6695), 1, sym_type_descriptor, + STATE(8676), 1, + sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(4373), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5196), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(4395), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(4430), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -505939,71 +526546,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [84903] = 30, + [84433] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(10657), 1, anon_sym_typename, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(2634), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, + STATE(7223), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(11442), 1, + STATE(11120), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -506025,71 +526632,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [85019] = 30, + [84549] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(10657), 1, anon_sym_typename, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(2634), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, + STATE(7223), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(10880), 1, + STATE(11170), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -506111,10 +526718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [85135] = 3, + [84665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7335), 13, + ACTIONS(7749), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -506128,7 +526735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7333), 41, + ACTIONS(7747), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -506170,47 +526777,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [85197] = 3, + [84727] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7339), 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, + ACTIONS(2248), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_class, + ACTIONS(2252), 1, + anon_sym_struct, + ACTIONS(2254), 1, + anon_sym_union, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - ACTIONS(7337), 41, - anon_sym_AMP, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, + sym__scope_resolution, + STATE(11410), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5167), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -506223,53 +526863,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [85259] = 3, + [84843] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7343), 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, + ACTIONS(2248), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_class, + ACTIONS(2252), 1, + anon_sym_struct, + ACTIONS(2254), 1, + anon_sym_union, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - ACTIONS(7341), 41, - anon_sym_AMP, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, + sym__scope_resolution, + STATE(11512), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5167), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -506282,54 +526949,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [85321] = 3, + [84959] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7305), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(11069), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(11067), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(11065), 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(11063), 31, 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, - anon_sym_LBRACK_COLON, - ACTIONS(7303), 41, + 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, + [85025] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(8883), 1, + anon_sym_LT, + STATE(3733), 1, + sym_template_argument_list, + ACTIONS(7094), 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_DOT, + ACTIONS(7090), 15, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, + anon_sym_LBRACE, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -506343,51 +527044,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [85383] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7109), 13, + ACTIONS(7087), 28, 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_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, + 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_DOT_STAR, + anon_sym_DASH_GT, + [85095] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - ACTIONS(7107), 41, - anon_sym_AMP, + ACTIONS(10986), 1, + sym_identifier, + ACTIONS(10988), 1, + anon_sym_COLON_COLON, + ACTIONS(10992), 1, + sym_primitive_type, + ACTIONS(10994), 1, + anon_sym_enum, + ACTIONS(10996), 1, + anon_sym_class, + ACTIONS(10998), 1, + anon_sym_struct, + ACTIONS(11000), 1, + anon_sym_union, + ACTIONS(11002), 1, + anon_sym_typename, + ACTIONS(11004), 1, + sym_auto, + ACTIONS(11006), 1, + anon_sym_decltype, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(6426), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6549), 1, + sym_type_specifier, + STATE(6581), 1, + sym_splice_specifier, + STATE(7121), 1, + sym__splice_specialization_specifier, + STATE(7225), 1, + sym_template_type, + STATE(7440), 1, + sym_qualified_type_identifier, + STATE(7625), 1, + sym_decltype_auto, + STATE(8509), 1, + sym_type_descriptor, + STATE(8700), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5198), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7592), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10990), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(7655), 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(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -506400,16 +527159,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [85445] = 3, + [85211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7347), 13, + ACTIONS(7669), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -506423,7 +527176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7345), 41, + ACTIONS(7667), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -506465,70 +527218,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [85507] = 4, + [85273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(6949), 7, + ACTIONS(9365), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6951), 46, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(9367), 35, + 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___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, + 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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [85335] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6650), 1, anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, + STATE(4453), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9517), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_or, anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9519), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [85401] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9369), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(9371), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_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_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [85571] = 3, + anon_sym_DASH_GT_STAR, + [85463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7353), 13, + ACTIONS(7661), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -506542,7 +527414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7351), 41, + ACTIONS(7659), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -506584,106 +527456,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [85633] = 3, + [85525] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7229), 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_EQ, - anon_sym_GT2, + ACTIONS(3104), 1, anon_sym_LBRACK_COLON, - ACTIONS(7227), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, + ACTIONS(4062), 1, + anon_sym_enum, + ACTIONS(4064), 1, + anon_sym_class, + ACTIONS(4066), 1, + anon_sym_struct, + ACTIONS(4068), 1, + anon_sym_union, + ACTIONS(4072), 1, + sym_auto, + ACTIONS(4074), 1, anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - anon_sym_operator, - [85695] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7297), 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, + ACTIONS(11071), 1, + sym_identifier, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7295), 41, - anon_sym_AMP, + ACTIONS(11075), 1, + sym_primitive_type, + ACTIONS(11077), 1, + anon_sym_typename, + STATE(2356), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2391), 1, + sym_type_specifier, + STATE(2742), 1, + sym_splice_specifier, + STATE(2921), 1, + sym__splice_specialization_specifier, + STATE(2933), 1, + sym_template_type, + STATE(3031), 1, + sym_qualified_type_identifier, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3527), 1, + sym_decltype_auto, + STATE(5717), 1, + sym_type_descriptor, + STATE(8686), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3447), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5199), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4058), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3528), 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(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -506696,16 +527542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [85757] = 3, + [85641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6242), 19, + ACTIONS(9373), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -506719,26 +527559,23 @@ 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(6244), 35, + anon_sym_DASH_GT, + ACTIONS(9375), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_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, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -506760,11 +527597,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [85703] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3891), 1, + sym_auto, + ACTIONS(3893), 1, + anon_sym_decltype, + ACTIONS(4314), 1, + anon_sym_enum, + ACTIONS(4316), 1, + anon_sym_class, + ACTIONS(4318), 1, + anon_sym_struct, + ACTIONS(4320), 1, + anon_sym_union, + ACTIONS(4360), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11079), 1, + sym_identifier, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(11085), 1, + anon_sym_typename, + STATE(3488), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3711), 1, + sym__splice_specialization_specifier, + STATE(3725), 1, + sym_type_specifier, + STATE(3759), 1, + sym_template_type, + STATE(3819), 1, + sym_qualified_type_identifier, + STATE(4119), 1, + sym_decltype_auto, + STATE(4263), 1, + sym_splice_specifier, + STATE(6615), 1, + sym_type_descriptor, + STATE(8675), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3967), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5200), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4310), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4064), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, [85819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6246), 19, + ACTIONS(9011), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -506778,26 +527704,23 @@ 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(6248), 35, + anon_sym_DASH_GT, + ACTIONS(9013), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_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, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -506819,82 +527742,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, [85881] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6111), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10003), 1, - anon_sym___attribute__, - ACTIONS(10006), 1, - anon_sym___attribute, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10751), 1, - anon_sym_DASH_GT, - ACTIONS(10753), 1, - anon_sym_requires, - STATE(4238), 1, + ACTIONS(3008), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4427), 1, + anon_sym_enum, + ACTIONS(4429), 1, + anon_sym_class, + ACTIONS(4431), 1, + anon_sym_struct, + ACTIONS(4433), 1, + anon_sym_union, + ACTIONS(4439), 1, + sym_auto, + ACTIONS(4441), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11087), 1, + sym_identifier, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(11091), 1, + sym_primitive_type, + ACTIONS(11093), 1, + anon_sym_typename, + STATE(2283), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2362), 1, + sym_type_specifier, + STATE(2638), 1, + sym_splice_specifier, + STATE(2696), 1, + sym__splice_specialization_specifier, + STATE(2701), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(3099), 1, + sym_decltype_auto, + STATE(3497), 1, sym_alignas_qualifier, - STATE(7379), 1, - sym__function_attributes_start, - STATE(7502), 1, - sym_ref_qualifier, - STATE(8269), 1, - sym_trailing_return_type, - STATE(8329), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10014), 2, + STATE(5221), 1, + sym_type_descriptor, + STATE(8687), 1, + sym__scope_resolution, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(6036), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6264), 2, + STATE(2984), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5203), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8457), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7660), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6113), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(10001), 12, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4423), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3123), 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(67), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -506906,101 +527832,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [85997] = 3, + [85997] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6250), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(6252), 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_GT_EQ, - anon_sym_SEMI, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11018), 1, + sym_identifier, + ACTIONS(11020), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - 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_DOT_STAR, - anon_sym_DASH_GT, - [86059] = 4, + ACTIONS(11024), 1, + sym_primitive_type, + ACTIONS(11026), 1, + anon_sym_enum, + ACTIONS(11028), 1, + anon_sym_class, + ACTIONS(11030), 1, + anon_sym_struct, + ACTIONS(11032), 1, + anon_sym_union, + ACTIONS(11034), 1, + anon_sym_typename, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(7481), 1, + sym_splice_specifier, + STATE(7606), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7693), 1, + sym_template_type, + STATE(7707), 1, + sym_type_specifier, + STATE(7716), 1, + sym_qualified_type_identifier, + STATE(8239), 1, + sym__type_definition_type, + STATE(8691), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11022), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [86113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(6949), 7, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6951), 46, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10272), 7, 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_LBRACK_COLON, + ACTIONS(10270), 47, + anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute, anon_sym___declspec, - anon_sym_LBRACE, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, anon_sym_static, - anon_sym_EQ, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -507014,118 +527965,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [86123] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6111), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10003), 1, - anon_sym___attribute__, - ACTIONS(10006), 1, - anon_sym___attribute, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10608), 1, - anon_sym_requires, - ACTIONS(10751), 1, - anon_sym_DASH_GT, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(7292), 1, - sym__function_attributes_start, - STATE(7518), 1, - sym_ref_qualifier, - STATE(8306), 1, - sym_trailing_return_type, - STATE(8333), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10439), 2, - anon_sym_final, - anon_sym_override, - STATE(6036), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6264), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8457), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7642), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6113), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [86239] = 8, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [86175] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(6572), 1, anon_sym_LBRACE, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - ACTIONS(10544), 1, - anon_sym_LBRACK, - STATE(5153), 1, - sym_new_declarator, - STATE(5647), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8804), 18, + ACTIONS(8830), 1, + anon_sym_LT, + STATE(5135), 1, + sym_template_argument_list, + ACTIONS(6574), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -507136,7 +527999,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, @@ -507144,15 +528006,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8806), 30, + anon_sym_DASH_GT, + ACTIONS(6567), 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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -507174,72 +528039,416 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [86311] = 30, + anon_sym_DASH_GT_STAR, + [86245] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(3092), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3837), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(3839), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(3841), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(3843), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(3849), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(3851), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(11095), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(11097), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(11099), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(11101), 1, anon_sym_typename, - ACTIONS(10299), 1, + STATE(2263), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2332), 1, + sym_type_specifier, + STATE(2605), 1, + sym_splice_specifier, + STATE(2659), 1, + sym__splice_specialization_specifier, + STATE(2712), 1, + sym_template_type, + STATE(2843), 1, + sym_qualified_type_identifier, + STATE(3166), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(5079), 1, + sym_type_descriptor, + STATE(8702), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3053), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5204), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3833), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3167), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [86361] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - STATE(2634), 1, + ACTIONS(11018), 1, + sym_identifier, + ACTIONS(11020), 1, + anon_sym_COLON_COLON, + ACTIONS(11024), 1, + sym_primitive_type, + ACTIONS(11026), 1, + anon_sym_enum, + ACTIONS(11028), 1, + anon_sym_class, + ACTIONS(11030), 1, + anon_sym_struct, + ACTIONS(11032), 1, + anon_sym_union, + ACTIONS(11034), 1, + anon_sym_typename, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(7481), 1, + sym_splice_specifier, + STATE(7606), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(7693), 1, + sym_template_type, + STATE(7707), 1, + sym_type_specifier, + STATE(7716), 1, + sym_qualified_type_identifier, + STATE(8175), 1, + sym__type_definition_type, + STATE(8691), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11022), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [86477] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11018), 1, + sym_identifier, + ACTIONS(11020), 1, + anon_sym_COLON_COLON, + ACTIONS(11024), 1, + sym_primitive_type, + ACTIONS(11026), 1, + anon_sym_enum, + ACTIONS(11028), 1, + anon_sym_class, + ACTIONS(11030), 1, + anon_sym_struct, + ACTIONS(11032), 1, + anon_sym_union, + ACTIONS(11034), 1, + anon_sym_typename, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(7481), 1, + sym_splice_specifier, + STATE(7606), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7693), 1, + sym_template_type, + STATE(7707), 1, + sym_type_specifier, + STATE(7716), 1, + sym_qualified_type_identifier, + STATE(8165), 1, + sym__type_definition_type, + STATE(8691), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11022), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [86593] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3704), 1, + anon_sym_enum, + ACTIONS(3706), 1, + anon_sym_class, + ACTIONS(3708), 1, + anon_sym_struct, + ACTIONS(3710), 1, + anon_sym_union, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(11103), 1, + sym_identifier, + ACTIONS(11105), 1, + anon_sym_COLON_COLON, + ACTIONS(11107), 1, + anon_sym_typename, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3541), 1, + sym_type_specifier, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(7086), 1, + STATE(3800), 1, sym_splice_specifier, - STATE(7094), 1, + STATE(5430), 1, + sym_type_descriptor, + STATE(8738), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5206), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [86709] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3871), 1, + anon_sym_enum, + ACTIONS(3873), 1, + anon_sym_class, + ACTIONS(3875), 1, + anon_sym_struct, + ACTIONS(3877), 1, + anon_sym_union, + ACTIONS(3891), 1, + sym_auto, + ACTIONS(3893), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(11109), 1, + sym_identifier, + ACTIONS(11111), 1, + anon_sym_COLON_COLON, + ACTIONS(11113), 1, + anon_sym_typename, + STATE(2941), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3062), 1, sym_type_specifier, - STATE(8181), 1, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3711), 1, + sym__splice_specialization_specifier, + STATE(3719), 1, + sym_splice_specifier, + STATE(3759), 1, + sym_template_type, + STATE(3819), 1, + sym_qualified_type_identifier, + STATE(4119), 1, + sym_decltype_auto, + STATE(5430), 1, sym_type_descriptor, - STATE(8605), 1, + STATE(8707), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3967), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5207), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(3867), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(4064), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -507261,10 +528470,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [86427] = 3, + [86825] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 19, + ACTIONS(3098), 1, + anon_sym_LBRACE, + ACTIONS(8569), 1, + anon_sym_LPAREN2, + STATE(4225), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5537), 1, + sym_argument_list, + STATE(6093), 1, + sym_initializer_list, + ACTIONS(10107), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7225), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(7223), 35, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [86899] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8893), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -507284,7 +528558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8631), 35, + ACTIONS(8895), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -507320,10 +528594,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [86489] = 3, + [86961] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3807), 1, + anon_sym_enum, + ACTIONS(3809), 1, + anon_sym_class, + ACTIONS(3811), 1, + anon_sym_struct, + ACTIONS(3813), 1, + anon_sym_union, + ACTIONS(3819), 1, + sym_auto, + ACTIONS(3821), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11036), 1, + sym_identifier, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(11040), 1, + sym_primitive_type, + ACTIONS(11042), 1, + anon_sym_typename, + STATE(2073), 1, + sym_template_type, + STATE(2076), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2087), 1, + sym_qualified_type_identifier, + STATE(2104), 1, + sym_splice_specifier, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2221), 1, + sym_decltype_auto, + STATE(2259), 1, + sym_type_specifier, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3603), 1, + sym_type_descriptor, + STATE(8763), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2169), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5208), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3803), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2222), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [87077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 19, + ACTIONS(8901), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -507343,7 +528703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8631), 35, + ACTIONS(8903), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -507379,71 +528739,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [86551] = 30, + [87139] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3809), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(3811), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(3813), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(3819), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(3821), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(3978), 1, + anon_sym_enum, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10293), 1, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(11099), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(11115), 1, + sym_identifier, + ACTIONS(11117), 1, anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, + STATE(2073), 1, sym_template_type, - STATE(3623), 1, + STATE(2087), 1, sym_qualified_type_identifier, - STATE(7086), 1, + STATE(2093), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2104), 1, sym_splice_specifier, - STATE(7094), 1, + STATE(2122), 1, sym_type_specifier, - STATE(8605), 1, - sym__scope_resolution, - STATE(10746), 1, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2221), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3603), 1, sym_type_descriptor, + STATE(8763), 1, + sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(2169), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5209), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(3974), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(2222), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -507465,10 +528825,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [86667] = 3, + [87255] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2968), 1, + anon_sym_LBRACE, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + ACTIONS(10984), 1, + anon_sym_LBRACK, + STATE(5226), 1, + sym_new_declarator, + STATE(5747), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9274), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9276), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + anon_sym_GT2, + [87327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7225), 13, + ACTIONS(7673), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -507482,7 +528906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7223), 41, + ACTIONS(7671), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -507524,118 +528948,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [86729] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10293), 1, - anon_sym_COLON_COLON, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, - sym_type_specifier, - STATE(8605), 1, - sym__scope_resolution, - STATE(10936), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4954), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [86845] = 11, + [87389] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(6723), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9306), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10548), 3, + ACTIONS(10711), 1, + anon_sym_LPAREN2, + STATE(3140), 1, + sym_parameter_list, + STATE(5043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9480), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9282), 15, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -507644,12 +528976,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9284), 27, + anon_sym_DOT, + ACTIONS(9482), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -507657,8 +528989,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___attribute__, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -507677,21 +529008,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [86923] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [87461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, - anon_sym_LBRACE, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - ACTIONS(10544), 1, - anon_sym_LBRACK, - STATE(5142), 1, - sym_new_declarator, - STATE(5784), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8866), 18, + ACTIONS(9337), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -507710,15 +529034,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8868), 30, + anon_sym_DASH_GT, + ACTIONS(9339), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -507740,16 +529067,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [86995] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [87523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6286), 1, + ACTIONS(7225), 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, - STATE(4365), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9211), 20, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7223), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [87585] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11119), 1, + anon_sym_AMP_AMP, + ACTIONS(11121), 1, + anon_sym_and, + ACTIONS(9322), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -507763,23 +529151,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, anon_sym_DASH_GT, - ACTIONS(9213), 31, + ACTIONS(9324), 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, @@ -507801,11 +529187,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [87061] = 3, + [87651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5229), 21, + ACTIONS(8942), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -507815,27 +529204,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_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5231), 33, + anon_sym_DASH_GT, + ACTIONS(8944), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + 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_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -507843,6 +529232,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, @@ -507856,15 +529246,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [87123] = 3, + anon_sym_DASH_GT_STAR, + [87713] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 19, + ACTIONS(6723), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9306), 1, + anon_sym_LBRACK, + ACTIONS(10711), 1, + anon_sym_LPAREN2, + STATE(3140), 1, + sym_parameter_list, + STATE(5043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9484), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -507883,18 +529283,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8631), 35, + ACTIONS(9486), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -507916,75 +529313,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [87185] = 30, + anon_sym_DASH_GT, + [87785] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3704), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(3706), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(3708), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(3710), 1, anon_sym_union, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(11103), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(11105), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(11107), 1, anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(2993), 1, + sym_type_specifier, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(7086), 1, + STATE(3800), 1, sym_splice_specifier, - STATE(7094), 1, - sym_type_specifier, - STATE(8605), 1, - sym__scope_resolution, - STATE(11059), 1, + STATE(5430), 1, sym_type_descriptor, + STATE(8738), 1, + sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5182), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -508006,71 +529400,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [87301] = 30, + [87901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(10318), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(10316), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, anon_sym_enum, - ACTIONS(1888), 1, anon_sym_class, - ACTIONS(1890), 1, anon_sym_struct, - ACTIONS(1892), 1, anon_sym_union, - ACTIONS(1918), 1, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [87963] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11018), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(11020), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(11024), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(11026), 1, + anon_sym_enum, + ACTIONS(11028), 1, + anon_sym_class, + ACTIONS(11030), 1, + anon_sym_struct, + ACTIONS(11032), 1, + anon_sym_union, + ACTIONS(11034), 1, anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(7481), 1, + sym_splice_specifier, + STATE(7606), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7693), 1, sym_template_type, - STATE(3623), 1, + STATE(7707), 1, + sym_type_specifier, + STATE(7716), 1, sym_qualified_type_identifier, - STATE(7086), 1, + STATE(8157), 1, + sym__type_definition_type, + STATE(8691), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11022), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [88079] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11018), 1, + sym_identifier, + ACTIONS(11020), 1, + anon_sym_COLON_COLON, + ACTIONS(11024), 1, + sym_primitive_type, + ACTIONS(11026), 1, + anon_sym_enum, + ACTIONS(11028), 1, + anon_sym_class, + ACTIONS(11030), 1, + anon_sym_struct, + ACTIONS(11032), 1, + anon_sym_union, + ACTIONS(11034), 1, + anon_sym_typename, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(7481), 1, sym_splice_specifier, - STATE(7094), 1, + STATE(7606), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7693), 1, + sym_template_type, + STATE(7707), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7716), 1, + sym_qualified_type_identifier, + STATE(8154), 1, + sym__type_definition_type, + STATE(8691), 1, sym__scope_resolution, - STATE(10692), 1, - sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(11022), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -508092,69 +529631,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [87417] = 3, + [88195] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(8667), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9304), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(10969), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [87479] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8516), 19, + STATE(5585), 1, + sym_parameter_list, + STATE(5055), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9300), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -508173,84 +529664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8518), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [87541] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10546), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9282), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(9284), 27, + ACTIONS(9302), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -508258,8 +529672,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___attribute__, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -508278,140 +529691,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [87621] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10546), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10566), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9282), 11, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(9284), 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_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [87703] = 30, + [88267] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11018), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(11020), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(11024), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(11026), 1, + anon_sym_enum, + ACTIONS(11028), 1, + anon_sym_class, + ACTIONS(11030), 1, + anon_sym_struct, + ACTIONS(11032), 1, + anon_sym_union, + ACTIONS(11034), 1, anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, + STATE(7481), 1, sym_splice_specifier, - STATE(7094), 1, + STATE(7606), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7693), 1, + sym_template_type, + STATE(7707), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7716), 1, + sym_qualified_type_identifier, + STATE(8208), 1, + sym__type_definition_type, + STATE(8691), 1, sym__scope_resolution, - STATE(10906), 1, - sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(11022), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -508433,71 +529781,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [87819] = 30, + [88383] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11018), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(11020), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(11024), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(11026), 1, + anon_sym_enum, + ACTIONS(11028), 1, + anon_sym_class, + ACTIONS(11030), 1, + anon_sym_struct, + ACTIONS(11032), 1, + anon_sym_union, + ACTIONS(11034), 1, anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, + STATE(7481), 1, sym_splice_specifier, - STATE(7094), 1, + STATE(7606), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7693), 1, + sym_template_type, + STATE(7707), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7716), 1, + sym_qualified_type_identifier, + STATE(8225), 1, + sym__type_definition_type, + STATE(8691), 1, sym__scope_resolution, - STATE(11540), 1, - sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(11022), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -508519,10 +529867,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [87935] = 3, + [88499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 19, + ACTIONS(9000), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -508542,7 +529890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7627), 35, + ACTIONS(9002), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -508578,71 +529926,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [87997] = 30, + [88561] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11018), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(11020), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(11024), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(11026), 1, + anon_sym_enum, + ACTIONS(11028), 1, + anon_sym_class, + ACTIONS(11030), 1, + anon_sym_struct, + ACTIONS(11032), 1, + anon_sym_union, + ACTIONS(11034), 1, anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, + STATE(7481), 1, sym_splice_specifier, - STATE(7094), 1, + STATE(7606), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7693), 1, + sym_template_type, + STATE(7707), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7716), 1, + sym_qualified_type_identifier, + STATE(8213), 1, + sym__type_definition_type, + STATE(8691), 1, sym__scope_resolution, - STATE(11541), 1, - sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(11022), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -508664,189 +530012,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [88113] = 3, + [88677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8087), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(8089), 35, + ACTIONS(7733), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [88175] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2795), 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(2793), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7731), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [88237] = 30, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [88739] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11018), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(11020), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(11024), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(11026), 1, + anon_sym_enum, + ACTIONS(11028), 1, + anon_sym_class, + ACTIONS(11030), 1, + anon_sym_struct, + ACTIONS(11032), 1, + anon_sym_union, + ACTIONS(11034), 1, anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, + STATE(7481), 1, sym_splice_specifier, - STATE(7094), 1, + STATE(7606), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7693), 1, + sym_template_type, + STATE(7707), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7716), 1, + sym_qualified_type_identifier, + STATE(8166), 1, + sym__type_definition_type, + STATE(8691), 1, sym__scope_resolution, - STATE(11460), 1, - sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(11022), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -508868,71 +530157,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [88353] = 30, + [88855] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11018), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(11020), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(11024), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(11026), 1, + anon_sym_enum, + ACTIONS(11028), 1, + anon_sym_class, + ACTIONS(11030), 1, + anon_sym_struct, + ACTIONS(11032), 1, + anon_sym_union, + ACTIONS(11034), 1, anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, + STATE(7481), 1, sym_splice_specifier, - STATE(7094), 1, + STATE(7606), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7693), 1, + sym_template_type, + STATE(7707), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7716), 1, + sym_qualified_type_identifier, + STATE(8214), 1, + sym__type_definition_type, + STATE(8691), 1, sym__scope_resolution, - STATE(10733), 1, - sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(11022), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -508954,71 +530243,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [88469] = 30, + [88971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(7753), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7751), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [89033] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11018), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(11020), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(11024), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(11026), 1, + anon_sym_enum, + ACTIONS(11028), 1, + anon_sym_class, + ACTIONS(11030), 1, + anon_sym_struct, + ACTIONS(11032), 1, + anon_sym_union, + ACTIONS(11034), 1, anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, + STATE(7481), 1, sym_splice_specifier, - STATE(7094), 1, + STATE(7606), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7693), 1, + sym_template_type, + STATE(7707), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7716), 1, + sym_qualified_type_identifier, + STATE(8233), 1, + sym__type_definition_type, + STATE(8691), 1, sym__scope_resolution, - STATE(11045), 1, - sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(11022), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -509040,17 +530388,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [88585] = 6, + [89149] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(2952), 1, anon_sym_LBRACE, - ACTIONS(10347), 1, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(5509), 2, + STATE(5617), 2, sym_argument_list, sym_initializer_list, - ACTIONS(9086), 19, + ACTIONS(9491), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -509070,7 +530418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9088), 31, + ACTIONS(9493), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -509097,227 +530445,76 @@ static const uint16_t ts_small_parse_table[] = { anon_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, - [88653] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6746), 1, - anon_sym_const, - ACTIONS(6755), 1, - anon_sym_AMP, - ACTIONS(9187), 1, - anon_sym_LT, - STATE(4211), 1, - sym_template_argument_list, - ACTIONS(6748), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(6753), 9, - 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_GT_GT, - anon_sym_DOT, - ACTIONS(6751), 15, - anon_sym___extension__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6758), 18, - 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_DOT_STAR, - anon_sym_DASH_GT, - [88727] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10293), 1, - anon_sym_COLON_COLON, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, - sym_type_specifier, - STATE(8605), 1, - sym__scope_resolution, - STATE(10483), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4954), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [88843] = 30, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89217] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11018), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(11020), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(11024), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(11026), 1, + anon_sym_enum, + ACTIONS(11028), 1, + anon_sym_class, + ACTIONS(11030), 1, + anon_sym_struct, + ACTIONS(11032), 1, + anon_sym_union, + ACTIONS(11034), 1, anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, + STATE(7481), 1, sym_splice_specifier, - STATE(7094), 1, + STATE(7606), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7693), 1, + sym_template_type, + STATE(7707), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7716), 1, + sym_qualified_type_identifier, + STATE(8169), 1, + sym__type_definition_type, + STATE(8691), 1, sym__scope_resolution, - STATE(10892), 1, - sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(11022), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -509339,10 +530536,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [88959] = 3, + [89333] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5229), 19, + ACTIONS(6723), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9306), 1, + anon_sym_LBRACK, + ACTIONS(10711), 1, + anon_sym_LPAREN2, + STATE(3140), 1, + sym_parameter_list, + STATE(5043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9439), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -509356,22 +530564,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(5231), 35, + ACTIONS(9441), 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_GT_EQ, - anon_sym_LBRACK_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -509395,160 +530600,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [89021] = 30, + [89405] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11018), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(11020), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(11024), 1, sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, - sym_type_specifier, - STATE(8605), 1, - sym__scope_resolution, - STATE(11132), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4954), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [89137] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, + ACTIONS(11026), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(11028), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(11030), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(11032), 1, anon_sym_union, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10293), 1, - anon_sym_COLON_COLON, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(11034), 1, anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, + STATE(7481), 1, sym_splice_specifier, - STATE(7094), 1, + STATE(7606), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7693), 1, + sym_template_type, + STATE(7707), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7716), 1, + sym_qualified_type_identifier, + STATE(8171), 1, + sym__type_definition_type, + STATE(8691), 1, sym__scope_resolution, - STATE(10873), 1, - sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(11022), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -509570,216 +530686,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [89253] = 30, + [89521] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11018), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(11020), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(11024), 1, sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, - sym_type_specifier, - STATE(8605), 1, - sym__scope_resolution, - STATE(11014), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4954), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [89369] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7281), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7279), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [89431] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, + ACTIONS(11026), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(11028), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(11030), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(11032), 1, anon_sym_union, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10293), 1, - anon_sym_COLON_COLON, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(11034), 1, anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, + STATE(7481), 1, sym_splice_specifier, - STATE(7094), 1, + STATE(7606), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7693), 1, + sym_template_type, + STATE(7707), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7716), 1, + sym_qualified_type_identifier, + STATE(8189), 1, + sym__type_definition_type, + STATE(8691), 1, sym__scope_resolution, - STATE(11148), 1, - sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(11022), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -509801,71 +530772,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [89547] = 30, + [89637] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11018), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(11020), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(11024), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(11026), 1, + anon_sym_enum, + ACTIONS(11028), 1, + anon_sym_class, + ACTIONS(11030), 1, + anon_sym_struct, + ACTIONS(11032), 1, + anon_sym_union, + ACTIONS(11034), 1, anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, + STATE(7481), 1, sym_splice_specifier, - STATE(7094), 1, + STATE(7606), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7693), 1, + sym_template_type, + STATE(7707), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7716), 1, + sym_qualified_type_identifier, + STATE(8194), 1, + sym__type_definition_type, + STATE(8691), 1, sym__scope_resolution, - STATE(10606), 1, - sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(11022), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -509887,71 +530858,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [89663] = 30, + [89753] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11018), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(11020), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(11024), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(11026), 1, + anon_sym_enum, + ACTIONS(11028), 1, + anon_sym_class, + ACTIONS(11030), 1, + anon_sym_struct, + ACTIONS(11032), 1, + anon_sym_union, + ACTIONS(11034), 1, anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, + STATE(7481), 1, sym_splice_specifier, - STATE(7094), 1, + STATE(7606), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7693), 1, + sym_template_type, + STATE(7707), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7716), 1, + sym_qualified_type_identifier, + STATE(8196), 1, + sym__type_definition_type, + STATE(8691), 1, sym__scope_resolution, - STATE(10672), 1, - sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(11022), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -509973,71 +530944,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [89779] = 30, + [89869] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11018), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(11020), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(11024), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(11026), 1, + anon_sym_enum, + ACTIONS(11028), 1, + anon_sym_class, + ACTIONS(11030), 1, + anon_sym_struct, + ACTIONS(11032), 1, + anon_sym_union, + ACTIONS(11034), 1, anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, + STATE(7481), 1, sym_splice_specifier, - STATE(7094), 1, + STATE(7606), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7693), 1, + sym_template_type, + STATE(7707), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7716), 1, + sym_qualified_type_identifier, + STATE(8197), 1, + sym__type_definition_type, + STATE(8691), 1, sym__scope_resolution, - STATE(10749), 1, - sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(11022), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -510059,71 +531030,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [89895] = 30, + [89985] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8992), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(8994), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [90047] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11129), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(11127), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(11125), 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(11123), 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, + [90113] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6493), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9304), 1, + anon_sym_LPAREN2, + ACTIONS(10969), 1, + anon_sym_LBRACK, + STATE(5585), 1, + sym_parameter_list, + STATE(5055), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9480), 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(9482), 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_RBRACK_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_DOT_STAR, + anon_sym_DASH_GT, + [90185] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(10657), 1, anon_sym_typename, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(2634), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, + STATE(7223), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(11085), 1, + STATE(11169), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -510145,71 +531300,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [90011] = 30, + [90301] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8885), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(8887), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [90363] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(10657), 1, anon_sym_typename, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(2634), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, + STATE(7223), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(11145), 1, + STATE(10564), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -510231,10 +531445,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [90127] = 3, + [90479] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6632), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(6634), 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_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + 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_DOT_STAR, + anon_sym_DASH_GT, + [90541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7211), 13, + ACTIONS(7563), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -510248,7 +531521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7209), 41, + ACTIONS(7561), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -510290,10 +531563,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [90189] = 3, + [90603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7423), 13, + ACTIONS(7601), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -510307,7 +531580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7421), 41, + ACTIONS(7599), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -510349,252 +531622,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [90251] = 7, + [90665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6746), 1, - anon_sym_const, - ACTIONS(8526), 1, - anon_sym_LT, - STATE(3619), 1, - sym_template_argument_list, - ACTIONS(6755), 8, + ACTIONS(6612), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_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(6751), 15, - anon_sym___extension__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6748), 28, + ACTIONS(6614), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + 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_or, - anon_sym_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, - [90321] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6967), 7, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6969), 47, - 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___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [90383] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7377), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7375), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [90445] = 30, + [90727] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, + ACTIONS(2248), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_class, + ACTIONS(2252), 1, + anon_sym_struct, + ACTIONS(2254), 1, + anon_sym_union, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10588), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10590), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10594), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10596), 1, - anon_sym_enum, - ACTIONS(10598), 1, - anon_sym_class, - ACTIONS(10600), 1, - anon_sym_struct, - ACTIONS(10602), 1, - anon_sym_union, - ACTIONS(10604), 1, + ACTIONS(10657), 1, anon_sym_typename, - STATE(2855), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(7299), 1, - sym_splice_specifier, - STATE(7459), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7577), 1, + STATE(3684), 1, sym_template_type, - STATE(7587), 1, - sym_type_specifier, - STATE(7603), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(8037), 1, - sym__type_definition_type, - STATE(8564), 1, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, + STATE(11145), 1, + sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4949), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(10592), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -510616,71 +531767,338 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [90561] = 30, + [90843] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6624), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(6626), 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_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + 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_DOT_STAR, + anon_sym_DASH_GT, + [90905] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10939), 1, + anon_sym_AMP_AMP, + ACTIONS(10941), 1, + anon_sym_PIPE, + ACTIONS(10945), 1, + anon_sym_AMP, + ACTIONS(10951), 1, + anon_sym_GT_EQ, + ACTIONS(10957), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10959), 1, + anon_sym_or, + ACTIONS(10961), 1, + anon_sym_and, + ACTIONS(10963), 1, + anon_sym_bitor, + ACTIONS(10965), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10473), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(10935), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10943), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10917), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10475), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [91013] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + STATE(5708), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9381), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(9383), 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, + [91081] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6723), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9306), 1, + anon_sym_LBRACK, + ACTIONS(10711), 1, + anon_sym_LPAREN2, + STATE(3140), 1, + sym_parameter_list, + STATE(5043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9476), 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(9478), 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_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_DOT_STAR, + anon_sym_DASH_GT, + [91153] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, + ACTIONS(2248), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_class, + ACTIONS(2252), 1, + anon_sym_struct, + ACTIONS(2254), 1, + anon_sym_union, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10588), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10590), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10594), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10596), 1, - anon_sym_enum, - ACTIONS(10598), 1, - anon_sym_class, - ACTIONS(10600), 1, - anon_sym_struct, - ACTIONS(10602), 1, - anon_sym_union, - ACTIONS(10604), 1, + ACTIONS(10657), 1, anon_sym_typename, - STATE(2855), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(7299), 1, - sym_splice_specifier, - STATE(7459), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7577), 1, + STATE(3684), 1, sym_template_type, - STATE(7587), 1, - sym_type_specifier, - STATE(7603), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(8040), 1, - sym__type_definition_type, - STATE(8564), 1, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, + STATE(11205), 1, + sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4949), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(10592), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -510702,75 +532120,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [90677] = 9, + [91269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, - anon_sym_LBRACE, - ACTIONS(8167), 1, - anon_sym_LPAREN2, - STATE(4096), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5523), 1, - sym_argument_list, - STATE(5932), 1, - sym_initializer_list, - ACTIONS(9785), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6800), 10, + ACTIONS(6608), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(6610), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_LPAREN2, + anon_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, - anon_sym_EQ, - anon_sym_LBRACK_COLON, - ACTIONS(6798), 35, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [90751] = 3, + anon_sym_LBRACE, + 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_DOT_STAR, + anon_sym_DASH_GT, + [91331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7225), 13, + ACTIONS(7605), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -510784,7 +532196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7223), 41, + ACTIONS(7603), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -510826,16 +532238,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [90813] = 5, + [91393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10761), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(10759), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(10757), 20, - anon_sym_BANG, + ACTIONS(9435), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -510850,19 +532256,23 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, anon_sym_DASH_GT, - ACTIONS(10755), 31, + ACTIONS(9437), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_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, @@ -510876,320 +532286,235 @@ 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_co_await, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [90879] = 7, + [91455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6226), 1, - anon_sym_const, - ACTIONS(6237), 1, + ACTIONS(8950), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(6230), 5, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(8952), 35, + 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - ACTIONS(6235), 8, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [91517] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6616), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_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(6233), 18, - anon_sym___extension__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_auto, - anon_sym_decltype, - ACTIONS(6228), 21, + ACTIONS(6618), 35, anon_sym_DOT_DOT_DOT, - anon_sym_PERCENT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, anon_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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_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, - [90949] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10588), 1, - sym_identifier, - ACTIONS(10590), 1, - anon_sym_COLON_COLON, - ACTIONS(10594), 1, - sym_primitive_type, - ACTIONS(10596), 1, - anon_sym_enum, - ACTIONS(10598), 1, - anon_sym_class, - ACTIONS(10600), 1, - anon_sym_struct, - ACTIONS(10602), 1, - anon_sym_union, - ACTIONS(10604), 1, - anon_sym_typename, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(7299), 1, - sym_splice_specifier, - STATE(7459), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7577), 1, - sym_template_type, - STATE(7587), 1, - sym_type_specifier, - STATE(7603), 1, - sym_qualified_type_identifier, - STATE(8073), 1, - sym__type_definition_type, - STATE(8564), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4949), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(10592), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [91065] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10588), 1, - sym_identifier, - ACTIONS(10590), 1, - anon_sym_COLON_COLON, - ACTIONS(10594), 1, - sym_primitive_type, - ACTIONS(10596), 1, - anon_sym_enum, - ACTIONS(10598), 1, - anon_sym_class, - ACTIONS(10600), 1, - anon_sym_struct, - ACTIONS(10602), 1, - anon_sym_union, - ACTIONS(10604), 1, - anon_sym_typename, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(7299), 1, - sym_splice_specifier, - STATE(7459), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7577), 1, - sym_template_type, - STATE(7587), 1, - sym_type_specifier, - STATE(7603), 1, - sym_qualified_type_identifier, - STATE(8074), 1, - sym__type_definition_type, - STATE(8564), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4949), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(10592), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [91181] = 26, + [91579] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10552), 1, + ACTIONS(11119), 1, anon_sym_AMP_AMP, - ACTIONS(10554), 1, + ACTIONS(11121), 1, + anon_sym_and, + ACTIONS(11131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11133), 1, + anon_sym_or, + ACTIONS(9393), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(10558), 1, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(10564), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9395), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(10570), 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(10572), 1, - anon_sym_or, - ACTIONS(10574), 1, - anon_sym_and, - ACTIONS(10576), 1, anon_sym_bitor, - ACTIONS(10578), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10176), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(10546), 2, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [91649] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6620), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10556), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10566), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10548), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10560), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10562), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10178), 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(6622), 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_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -511204,768 +532529,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [91289] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10588), 1, - sym_identifier, - ACTIONS(10590), 1, - anon_sym_COLON_COLON, - ACTIONS(10594), 1, - sym_primitive_type, - ACTIONS(10596), 1, - anon_sym_enum, - ACTIONS(10598), 1, - anon_sym_class, - ACTIONS(10600), 1, - anon_sym_struct, - ACTIONS(10602), 1, - anon_sym_union, - ACTIONS(10604), 1, - anon_sym_typename, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(7299), 1, - sym_splice_specifier, - STATE(7459), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7577), 1, - sym_template_type, - STATE(7587), 1, - sym_type_specifier, - STATE(7603), 1, - sym_qualified_type_identifier, - STATE(8080), 1, - sym__type_definition_type, - STATE(8564), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4949), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(10592), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [91405] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10588), 1, - sym_identifier, - ACTIONS(10590), 1, - anon_sym_COLON_COLON, - ACTIONS(10594), 1, - sym_primitive_type, - ACTIONS(10596), 1, - anon_sym_enum, - ACTIONS(10598), 1, - anon_sym_class, - ACTIONS(10600), 1, - anon_sym_struct, - ACTIONS(10602), 1, - anon_sym_union, - ACTIONS(10604), 1, - anon_sym_typename, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(7299), 1, - sym_splice_specifier, - STATE(7459), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7577), 1, - sym_template_type, - STATE(7587), 1, - sym_type_specifier, - STATE(7603), 1, - sym_qualified_type_identifier, - STATE(8083), 1, - sym__type_definition_type, - STATE(8564), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4949), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(10592), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [91521] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10588), 1, - sym_identifier, - ACTIONS(10590), 1, - anon_sym_COLON_COLON, - ACTIONS(10594), 1, - sym_primitive_type, - ACTIONS(10596), 1, - anon_sym_enum, - ACTIONS(10598), 1, - anon_sym_class, - ACTIONS(10600), 1, - anon_sym_struct, - ACTIONS(10602), 1, - anon_sym_union, - ACTIONS(10604), 1, - anon_sym_typename, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(7299), 1, - sym_splice_specifier, - STATE(7459), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7577), 1, - sym_template_type, - STATE(7587), 1, - sym_type_specifier, - STATE(7603), 1, - sym_qualified_type_identifier, - STATE(8087), 1, - sym__type_definition_type, - STATE(8564), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4949), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(10592), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [91637] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10588), 1, - sym_identifier, - ACTIONS(10590), 1, - anon_sym_COLON_COLON, - ACTIONS(10594), 1, - sym_primitive_type, - ACTIONS(10596), 1, - anon_sym_enum, - ACTIONS(10598), 1, - anon_sym_class, - ACTIONS(10600), 1, - anon_sym_struct, - ACTIONS(10602), 1, - anon_sym_union, - ACTIONS(10604), 1, - anon_sym_typename, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(7299), 1, - sym_splice_specifier, - STATE(7459), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7577), 1, - sym_template_type, - STATE(7587), 1, - sym_type_specifier, - STATE(7603), 1, - sym_qualified_type_identifier, - STATE(8088), 1, - sym__type_definition_type, - STATE(8564), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4949), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(10592), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [91753] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10588), 1, - sym_identifier, - ACTIONS(10590), 1, - anon_sym_COLON_COLON, - ACTIONS(10594), 1, - sym_primitive_type, - ACTIONS(10596), 1, - anon_sym_enum, - ACTIONS(10598), 1, - anon_sym_class, - ACTIONS(10600), 1, - anon_sym_struct, - ACTIONS(10602), 1, - anon_sym_union, - ACTIONS(10604), 1, - anon_sym_typename, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(7299), 1, - sym_splice_specifier, - STATE(7459), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7577), 1, - sym_template_type, - STATE(7587), 1, - sym_type_specifier, - STATE(7603), 1, - sym_qualified_type_identifier, - STATE(8092), 1, - sym__type_definition_type, - STATE(8564), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4949), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(10592), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [91869] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10588), 1, - sym_identifier, - ACTIONS(10590), 1, - anon_sym_COLON_COLON, - ACTIONS(10594), 1, - sym_primitive_type, - ACTIONS(10596), 1, - anon_sym_enum, - ACTIONS(10598), 1, - anon_sym_class, - ACTIONS(10600), 1, - anon_sym_struct, - ACTIONS(10602), 1, - anon_sym_union, - ACTIONS(10604), 1, - anon_sym_typename, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(7299), 1, - sym_splice_specifier, - STATE(7459), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7577), 1, - sym_template_type, - STATE(7587), 1, - sym_type_specifier, - STATE(7603), 1, - sym_qualified_type_identifier, - STATE(8093), 1, - sym__type_definition_type, - STATE(8564), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4949), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(10592), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [91985] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10588), 1, - sym_identifier, - ACTIONS(10590), 1, - anon_sym_COLON_COLON, - ACTIONS(10594), 1, - sym_primitive_type, - ACTIONS(10596), 1, - anon_sym_enum, - ACTIONS(10598), 1, - anon_sym_class, - ACTIONS(10600), 1, - anon_sym_struct, - ACTIONS(10602), 1, - anon_sym_union, - ACTIONS(10604), 1, - anon_sym_typename, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(7299), 1, - sym_splice_specifier, - STATE(7459), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7577), 1, - sym_template_type, - STATE(7587), 1, - sym_type_specifier, - STATE(7603), 1, - sym_qualified_type_identifier, - STATE(8095), 1, - sym__type_definition_type, - STATE(8564), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4949), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(10592), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [92101] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10588), 1, - sym_identifier, - ACTIONS(10590), 1, - anon_sym_COLON_COLON, - ACTIONS(10594), 1, - sym_primitive_type, - ACTIONS(10596), 1, - anon_sym_enum, - ACTIONS(10598), 1, - anon_sym_class, - ACTIONS(10600), 1, - anon_sym_struct, - ACTIONS(10602), 1, - anon_sym_union, - ACTIONS(10604), 1, - anon_sym_typename, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(7299), 1, - sym_splice_specifier, - STATE(7459), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7577), 1, - sym_template_type, - STATE(7587), 1, - sym_type_specifier, - STATE(7603), 1, - sym_qualified_type_identifier, - STATE(8096), 1, - sym__type_definition_type, - STATE(8564), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4949), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(10592), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [92217] = 30, + anon_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, + [91711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10588), 1, - sym_identifier, - ACTIONS(10590), 1, + ACTIONS(7563), 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, - ACTIONS(10594), 1, - sym_primitive_type, - ACTIONS(10596), 1, - anon_sym_enum, - ACTIONS(10598), 1, - anon_sym_class, - ACTIONS(10600), 1, - anon_sym_struct, - ACTIONS(10602), 1, - anon_sym_union, - ACTIONS(10604), 1, - anon_sym_typename, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(7299), 1, - sym_splice_specifier, - STATE(7459), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7577), 1, - sym_template_type, - STATE(7587), 1, - sym_type_specifier, - STATE(7603), 1, - sym_qualified_type_identifier, - STATE(8097), 1, - sym__type_definition_type, - STATE(8564), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4949), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(10592), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7561), 41, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -511978,354 +532590,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [92333] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10588), 1, - sym_identifier, - ACTIONS(10590), 1, - anon_sym_COLON_COLON, - ACTIONS(10594), 1, - sym_primitive_type, - ACTIONS(10596), 1, - anon_sym_enum, - ACTIONS(10598), 1, - anon_sym_class, - ACTIONS(10600), 1, - anon_sym_struct, - ACTIONS(10602), 1, - anon_sym_union, - ACTIONS(10604), 1, - anon_sym_typename, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(7299), 1, - sym_splice_specifier, - STATE(7459), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7577), 1, - sym_template_type, - STATE(7587), 1, - sym_type_specifier, - STATE(7603), 1, - sym_qualified_type_identifier, - STATE(8098), 1, - sym__type_definition_type, - STATE(8564), 1, - sym__scope_resolution, - ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4949), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(10592), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [92449] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, + sym_identifier, anon_sym_decltype, - ACTIONS(4800), 1, anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10588), 1, - sym_identifier, - ACTIONS(10590), 1, - anon_sym_COLON_COLON, - ACTIONS(10594), 1, - sym_primitive_type, - ACTIONS(10596), 1, - anon_sym_enum, - ACTIONS(10598), 1, - anon_sym_class, - ACTIONS(10600), 1, - anon_sym_struct, - ACTIONS(10602), 1, - anon_sym_union, - ACTIONS(10604), 1, - anon_sym_typename, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(7299), 1, - sym_splice_specifier, - STATE(7459), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7577), 1, - sym_template_type, - STATE(7587), 1, - sym_type_specifier, - STATE(7603), 1, - sym_qualified_type_identifier, - STATE(8100), 1, - sym__type_definition_type, - STATE(8564), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4949), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(10592), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [92565] = 30, + anon_sym_operator, + [91773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10588), 1, - sym_identifier, - ACTIONS(10590), 1, - anon_sym_COLON_COLON, - ACTIONS(10594), 1, - sym_primitive_type, - ACTIONS(10596), 1, - anon_sym_enum, - ACTIONS(10598), 1, - anon_sym_class, - ACTIONS(10600), 1, - anon_sym_struct, - ACTIONS(10602), 1, - anon_sym_union, - ACTIONS(10604), 1, - anon_sym_typename, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(7299), 1, - sym_splice_specifier, - STATE(7459), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7577), 1, - sym_template_type, - STATE(7587), 1, - sym_type_specifier, - STATE(7603), 1, - sym_qualified_type_identifier, - STATE(8102), 1, - sym__type_definition_type, - STATE(8564), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4949), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(10592), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [92681] = 30, + ACTIONS(8909), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(8911), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [91835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10293), 1, + ACTIONS(6628), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(6630), 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_GT_EQ, + anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, - sym_type_specifier, - STATE(8605), 1, - sym__scope_resolution, - STATE(10987), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4954), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [92797] = 3, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + 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_DOT_STAR, + anon_sym_DASH_GT, + [91897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7197), 13, + ACTIONS(7563), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -512339,7 +532731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7195), 41, + ACTIONS(7561), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -512381,16 +532773,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [92859] = 5, + [91959] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10769), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(10767), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(10765), 20, - anon_sym_BANG, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(7094), 1, + anon_sym_AMP, + ACTIONS(9552), 1, + anon_sym_LT, + STATE(4313), 1, + sym_template_argument_list, + ACTIONS(7087), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(7092), 9, + 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_GT_GT, + anon_sym_DOT, + ACTIONS(7090), 15, + anon_sym___extension__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7097), 18, + 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_DOT_STAR, + anon_sym_DASH_GT, + [92033] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7090), 1, + anon_sym_LBRACE, + ACTIONS(7445), 1, + anon_sym_LT, + STATE(2053), 1, + sym_template_argument_list, + ACTIONS(7087), 2, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + ACTIONS(7092), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -512401,23 +532861,25 @@ 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_not, anon_sym_or, anon_sym_and, anon_sym_xor, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10763), 31, + ACTIONS(7097), 31, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + 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, @@ -512431,82 +532893,79 @@ 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_co_await, + anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [92925] = 30, + [92103] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, + ACTIONS(2248), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_class, + ACTIONS(2252), 1, + anon_sym_struct, + ACTIONS(2254), 1, + anon_sym_union, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10588), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10590), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10594), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10596), 1, - anon_sym_enum, - ACTIONS(10598), 1, - anon_sym_class, - ACTIONS(10600), 1, - anon_sym_struct, - ACTIONS(10602), 1, - anon_sym_union, - ACTIONS(10604), 1, + ACTIONS(10657), 1, anon_sym_typename, - STATE(2855), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(7299), 1, - sym_splice_specifier, - STATE(7459), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7577), 1, + STATE(3684), 1, sym_template_type, - STATE(7587), 1, - sym_type_specifier, - STATE(7603), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(8038), 1, - sym__type_definition_type, - STATE(8564), 1, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, + STATE(11532), 1, + sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4949), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(10592), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -512528,71 +532987,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [93041] = 30, + [92219] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7765), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7763), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [92281] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(10657), 1, anon_sym_typename, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(2634), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, + STATE(7223), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(11023), 1, + STATE(10777), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -512614,71 +533132,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [93157] = 30, + [92397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, - sym_identifier, - ACTIONS(4780), 1, + ACTIONS(7769), 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, - ACTIONS(4784), 1, - sym_primitive_type, - ACTIONS(4786), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7767), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [92459] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(4788), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(4790), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(4792), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(4794), 1, - anon_sym_typename, - ACTIONS(4796), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(4798), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(4270), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4691), 1, - sym_splice_specifier, - STATE(5263), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(5264), 1, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, sym_template_type, - STATE(5495), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(6020), 1, - sym_decltype_auto, - STATE(6359), 1, + STATE(7223), 1, sym_type_specifier, - STATE(8181), 1, - sym_type_descriptor, - STATE(8584), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, + STATE(11667), 1, + sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5079), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5891), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(5167), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(4782), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5975), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -512700,21 +533277,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [93273] = 8, + [92575] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6125), 1, + ACTIONS(6723), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8927), 1, - anon_sym_LPAREN2, - ACTIONS(10540), 1, + ACTIONS(9306), 1, anon_sym_LBRACK, - STATE(5561), 1, + ACTIONS(10711), 1, + anon_sym_LPAREN2, + STATE(3140), 1, sym_parameter_list, - STATE(5151), 2, + STATE(5043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9127), 18, + ACTIONS(9300), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -512733,7 +533310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9129), 30, + ACTIONS(9302), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -512741,7 +533318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -512764,21 +533341,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [93345] = 8, + [92647] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10939), 1, + anon_sym_AMP_AMP, + ACTIONS(10941), 1, + anon_sym_PIPE, + ACTIONS(10945), 1, + anon_sym_AMP, + ACTIONS(10951), 1, + anon_sym_GT_EQ, + ACTIONS(10957), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10959), 1, + anon_sym_or, + ACTIONS(10961), 1, + anon_sym_and, + ACTIONS(10963), 1, + anon_sym_bitor, + ACTIONS(10965), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10538), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(10935), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10943), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10917), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10540), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [92755] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6365), 1, + ACTIONS(6493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10337), 1, + ACTIONS(9304), 1, anon_sym_LPAREN2, - ACTIONS(10580), 1, + ACTIONS(10969), 1, anon_sym_LBRACK, - STATE(5557), 1, + STATE(5585), 1, sym_parameter_list, - STATE(5016), 2, + STATE(5055), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8931), 20, + ACTIONS(9439), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -512788,24 +533447,80 @@ 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, + anon_sym_DOT, + ACTIONS(9441), 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_RBRACK_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_DOT_STAR, + anon_sym_DASH_GT, + [92827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9308), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(8933), 28, + anon_sym_DASH_GT, + ACTIONS(9310), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_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, @@ -512813,6 +533528,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, @@ -512826,12 +533542,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [92889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9316), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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, - anon_sym_GT2, - [93417] = 3, + ACTIONS(9318), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [92951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7207), 13, + ACTIONS(7637), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -512840,57 +533617,221 @@ 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7205), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7635), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [93013] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10939), 1, + anon_sym_AMP_AMP, + ACTIONS(10941), 1, + anon_sym_PIPE, + ACTIONS(10945), 1, + anon_sym_AMP, + ACTIONS(10951), 1, + anon_sym_GT_EQ, + ACTIONS(10957), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10959), 1, + anon_sym_or, + ACTIONS(10961), 1, + anon_sym_and, + ACTIONS(10963), 1, + anon_sym_bitor, + ACTIONS(10965), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10542), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(10935), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10943), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10917), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10544), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [93121] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10939), 1, + anon_sym_AMP_AMP, + ACTIONS(10941), 1, + anon_sym_PIPE, + ACTIONS(10945), 1, + anon_sym_AMP, + ACTIONS(10951), 1, + anon_sym_GT_EQ, + ACTIONS(10957), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10959), 1, + anon_sym_or, + ACTIONS(10961), 1, + anon_sym_and, + ACTIONS(10963), 1, + anon_sym_bitor, + ACTIONS(10965), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9599), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10935), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10943), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10917), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9597), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [93479] = 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, + [93229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7381), 13, + ACTIONS(7641), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -512904,7 +533845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7379), 41, + ACTIONS(7639), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -512946,99 +533887,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [93541] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10550), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10552), 1, - anon_sym_AMP_AMP, - ACTIONS(10554), 1, - anon_sym_PIPE, - ACTIONS(10558), 1, - anon_sym_AMP, - ACTIONS(10564), 1, - anon_sym_GT_EQ, - ACTIONS(10570), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10572), 1, - anon_sym_or, - ACTIONS(10574), 1, - anon_sym_and, - ACTIONS(10576), 1, - anon_sym_bitor, - ACTIONS(10578), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10184), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(10546), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10556), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10566), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10548), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10560), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10562), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10186), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [93649] = 6, + [93291] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, - anon_sym_LBRACE, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - STATE(5464), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9105), 19, + ACTIONS(6768), 1, + anon_sym_LBRACK_LBRACK, + STATE(4769), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8833), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -513052,22 +533909,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_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9107), 31, + ACTIONS(8835), 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, @@ -513079,21 +533934,110 @@ 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_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [93717] = 3, + [93357] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2248), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_class, + ACTIONS(2252), 1, + anon_sym_struct, + ACTIONS(2254), 1, + anon_sym_union, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, + sym__scope_resolution, + STATE(11308), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5167), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [93473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8999), 19, + ACTIONS(8992), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -513113,7 +534057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9001), 35, + ACTIONS(8994), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -513149,71 +534093,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [93779] = 30, + [93535] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(10657), 1, anon_sym_typename, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(2634), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, + STATE(7223), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(11125), 1, + STATE(11313), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -513235,71 +534179,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [93895] = 30, + [93651] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(10657), 1, anon_sym_typename, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(2634), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, + STATE(7223), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(11130), 1, + STATE(11332), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -513321,71 +534265,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94011] = 30, + [93767] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(10657), 1, anon_sym_typename, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(2634), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, + STATE(7223), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(11149), 1, + STATE(11337), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -513407,71 +534351,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94127] = 30, + [93883] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(10657), 1, anon_sym_typename, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(2634), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, + STATE(7223), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(11154), 1, + STATE(11354), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -513493,71 +534437,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94243] = 30, + [93999] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(10657), 1, anon_sym_typename, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(2634), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, + STATE(7223), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(11171), 1, + STATE(11358), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -513579,71 +534523,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94359] = 30, + [94115] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(10657), 1, anon_sym_typename, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(2634), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, + STATE(7223), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(11175), 1, + STATE(11374), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -513665,71 +534609,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94475] = 30, + [94231] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(10657), 1, anon_sym_typename, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(2634), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, + STATE(7223), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(11191), 1, + STATE(11378), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -513751,71 +534695,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94591] = 30, + [94347] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(10657), 1, anon_sym_typename, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(2634), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, + STATE(7223), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(11195), 1, + STATE(11394), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -513837,71 +534781,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94707] = 30, + [94463] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(10657), 1, anon_sym_typename, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(2634), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, + STATE(7223), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(11211), 1, + STATE(11398), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -513923,71 +534867,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94823] = 30, + [94579] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(10657), 1, anon_sym_typename, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(2634), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, + STATE(7223), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(11215), 1, + STATE(11411), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -514009,71 +534953,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94939] = 30, + [94695] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(10657), 1, anon_sym_typename, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(2634), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, + STATE(7223), 1, sym_type_specifier, - STATE(8605), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(11228), 1, + STATE(11414), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(4954), 2, + STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -514095,71 +535039,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [95055] = 30, + [94811] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10939), 1, + anon_sym_AMP_AMP, + ACTIONS(10941), 1, + anon_sym_PIPE, + ACTIONS(10945), 1, + anon_sym_AMP, + ACTIONS(10951), 1, + anon_sym_GT_EQ, + ACTIONS(10957), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10959), 1, + anon_sym_or, + ACTIONS(10961), 1, + anon_sym_and, + ACTIONS(10963), 1, + anon_sym_bitor, + ACTIONS(10965), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10485), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(10935), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10943), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10917), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10487), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [94919] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(5132), 1, + sym_identifier, + ACTIONS(5140), 1, + anon_sym_COLON_COLON, + ACTIONS(5144), 1, + sym_primitive_type, + ACTIONS(5146), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(5148), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(5150), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(5152), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(5154), 1, + anon_sym_typename, + ACTIONS(5156), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(5158), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10293), 1, - anon_sym_COLON_COLON, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(4387), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4802), 1, + sym_splice_specifier, + STATE(5365), 1, sym_template_type, - STATE(3623), 1, + STATE(5472), 1, + sym__splice_specialization_specifier, + STATE(5574), 1, sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, + STATE(6031), 1, + sym_decltype_auto, + STATE(6469), 1, sym_type_specifier, - STATE(8605), 1, - sym__scope_resolution, - STATE(11231), 1, + STATE(8362), 1, sym_type_descriptor, + STATE(8757), 1, + sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4954), 2, + STATE(5160), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(5973), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(5142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(6050), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -514181,10 +535207,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [95171] = 3, + [95035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8935), 19, + ACTIONS(9296), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -514204,7 +535230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8937), 35, + ACTIONS(9298), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -514240,21 +535266,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [95233] = 8, + [95097] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6594), 1, + anon_sym_const, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6598), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + ACTIONS(6603), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6601), 18, + anon_sym___extension__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + ACTIONS(6596), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [95167] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6125), 1, + ACTIONS(6685), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8927), 1, + ACTIONS(10842), 1, anon_sym_LPAREN2, - ACTIONS(10540), 1, + ACTIONS(10907), 1, anon_sym_LBRACK, - STATE(5561), 1, + STATE(5634), 1, sym_parameter_list, - STATE(5151), 2, + STATE(5067), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8947), 18, + ACTIONS(9480), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -514264,24 +535353,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(8949), 30, + ACTIONS(9482), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -514289,7 +535378,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, @@ -514304,83 +535392,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [95305] = 6, + anon_sym_GT2, + [95239] = 30, ACTIONS(3), 1, sym_comment, - STATE(4004), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(3359), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3369), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8737), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - 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(2248), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_class, + ACTIONS(2252), 1, + anon_sym_struct, + ACTIONS(2254), 1, + anon_sym_union, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10649), 1, sym_identifier, - sym_literal_suffix, - ACTIONS(8739), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [95373] = 8, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7223), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, + sym__scope_resolution, + STATE(11258), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5167), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [95355] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6125), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8927), 1, + ACTIONS(3052), 1, + anon_sym_LBRACE, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10540), 1, + ACTIONS(10902), 1, anon_sym_LBRACK, - STATE(5561), 1, - sym_parameter_list, - STATE(5151), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8931), 18, + STATE(5031), 1, + sym_new_declarator, + STATE(5775), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9274), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -514399,7 +535512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8933), 30, + ACTIONS(9276), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -514407,7 +535520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -514430,19 +535543,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [95445] = 7, + [95427] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6751), 1, - anon_sym_LBRACE, - ACTIONS(7037), 1, - anon_sym_LT, - STATE(1956), 1, - sym_template_argument_list, - ACTIONS(6748), 2, + ACTIONS(9230), 1, anon_sym_LPAREN2, - anon_sym_COLON_COLON, - ACTIONS(6753), 18, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10469), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10937), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10939), 1, + anon_sym_AMP_AMP, + ACTIONS(10941), 1, + anon_sym_PIPE, + ACTIONS(10945), 1, + anon_sym_AMP, + ACTIONS(10951), 1, + anon_sym_GT_EQ, + ACTIONS(10955), 1, + anon_sym_QMARK, + ACTIONS(10957), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10959), 1, + anon_sym_or, + ACTIONS(10961), 1, + anon_sym_and, + ACTIONS(10963), 1, + anon_sym_bitor, + ACTIONS(10965), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9826), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(10935), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10943), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10917), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9828), 16, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [95539] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5593), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -514452,25 +535640,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_LBRACK, 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(6758), 31, + ACTIONS(5595), 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_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -514478,7 +535668,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, @@ -514492,81 +535681,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [95515] = 30, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [95601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10293), 1, + ACTIONS(7657), 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, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7094), 1, - sym_type_specifier, - STATE(8605), 1, - sym__scope_resolution, - STATE(10929), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(4954), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, + ACTIONS(7655), 41, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -514579,156 +535739,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [95631] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6111), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10606), 1, - anon_sym_DASH_GT, - ACTIONS(10753), 1, - anon_sym_requires, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(7386), 1, - sym__function_attributes_start, - STATE(7510), 1, - sym_ref_qualifier, - STATE(8269), 1, - sym_trailing_return_type, - STATE(8495), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10014), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(6036), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6264), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8457), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7664), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6113), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [95747] = 24, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [95663] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10413), 1, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10957), 1, anon_sym_LT_EQ_GT, - ACTIONS(10775), 1, - anon_sym_AMP_AMP, - ACTIONS(10777), 1, - anon_sym_PIPE, - ACTIONS(10781), 1, - anon_sym_AMP, - ACTIONS(10787), 1, - anon_sym_GT_EQ, - ACTIONS(10791), 1, - anon_sym_and, - ACTIONS(10793), 1, - anon_sym_bitor, - ACTIONS(10795), 1, - anon_sym_bitand, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - STATE(5506), 1, + STATE(3874), 1, sym_argument_list, - STATE(5507), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(9282), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(10427), 2, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, - anon_sym_DOT, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10771), 2, + ACTIONS(10935), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10779), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10789), 2, + ACTIONS(10953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10773), 3, + ACTIONS(10917), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10783), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10785), 3, + ACTIONS(9707), 11, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 19, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9709), 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_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -514743,99 +535812,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DASH_GT_STAR, - [95850] = 29, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [95747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10619), 1, + ACTIONS(9011), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + 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_identifier, - ACTIONS(10621), 1, - anon_sym_COLON_COLON, - ACTIONS(10625), 1, - sym_primitive_type, - ACTIONS(10627), 1, - anon_sym_enum, - ACTIONS(10629), 1, - anon_sym_class, - ACTIONS(10631), 1, - anon_sym_struct, - ACTIONS(10633), 1, - anon_sym_union, - ACTIONS(10635), 1, - anon_sym_typename, - ACTIONS(10637), 1, - sym_auto, - ACTIONS(10639), 1, - anon_sym_decltype, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(6310), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6441), 1, - sym_type_specifier, - STATE(6603), 1, - sym_splice_specifier, - STATE(7033), 1, - sym__splice_specialization_specifier, - STATE(7218), 1, - sym_template_type, - STATE(7294), 1, - sym_qualified_type_identifier, - STATE(7496), 1, - sym_decltype_auto, - STATE(8612), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(7484), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(10623), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(7497), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [95963] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9013), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [95808] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8992), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + 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_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8994), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [95869] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10799), 1, - anon_sym_LT, - STATE(1855), 1, - sym_template_argument_list, - ACTIONS(9225), 17, + ACTIONS(3052), 1, + anon_sym_LBRACE, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + STATE(5883), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9381), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -514846,6 +535952,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, @@ -514853,19 +535960,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9227), 34, + ACTIONS(9383), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -514888,69 +535992,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [96028] = 29, + [95936] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2744), 1, + ACTIONS(2300), 1, anon_sym_LBRACK_COLON, - ACTIONS(3455), 1, + ACTIONS(3732), 1, anon_sym_enum, - ACTIONS(3457), 1, + ACTIONS(3734), 1, anon_sym_class, - ACTIONS(3459), 1, + ACTIONS(3736), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(3738), 1, anon_sym_union, - ACTIONS(3465), 1, + ACTIONS(3742), 1, sym_auto, - ACTIONS(3467), 1, + ACTIONS(3744), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10709), 1, + ACTIONS(11008), 1, sym_identifier, - ACTIONS(10711), 1, + ACTIONS(11010), 1, anon_sym_COLON_COLON, - ACTIONS(10713), 1, + ACTIONS(11012), 1, sym_primitive_type, - ACTIONS(10715), 1, + ACTIONS(11014), 1, anon_sym_typename, - STATE(2240), 1, + STATE(2180), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2294), 1, + STATE(2433), 1, sym_type_specifier, - STATE(2677), 1, + STATE(2547), 1, sym_splice_specifier, - STATE(2814), 1, - sym_template_type, - STATE(2837), 1, + STATE(2601), 1, sym__splice_specialization_specifier, - STATE(2887), 1, + STATE(2622), 1, + sym_template_type, + STATE(2698), 1, sym_qualified_type_identifier, - STATE(3453), 1, + STATE(2997), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(8588), 1, + STATE(8682), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(3262), 2, + STATE(2942), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3451), 4, + ACTIONS(3728), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3460), 7, + STATE(3067), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -514972,140 +536076,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [96141] = 6, + [96049] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2608), 1, - anon_sym_LBRACE, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - STATE(5779), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9086), 20, + ACTIONS(11135), 1, + sym_identifier, + STATE(5077), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6913), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6915), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8468), 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___attribute__, + anon_sym___attribute, + 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(8466), 21, + 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_EQ, - anon_sym_GT_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [96118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8992), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + 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(9088), 29, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8994), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [96179] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8992), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + 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_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8994), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + 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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [96208] = 29, + anon_sym_COLON_RBRACK, + [96240] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, - sym_auto, - ACTIONS(3363), 1, - anon_sym_decltype, - ACTIONS(3397), 1, - anon_sym_enum, - ACTIONS(3399), 1, - anon_sym_class, - ACTIONS(3401), 1, - anon_sym_struct, - ACTIONS(3403), 1, - anon_sym_union, - ACTIONS(3443), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10717), 1, - sym_identifier, - ACTIONS(10719), 1, - anon_sym_COLON_COLON, - ACTIONS(10721), 1, - sym_primitive_type, - ACTIONS(10723), 1, - anon_sym_typename, - STATE(3403), 1, + STATE(4735), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3627), 1, - sym_template_type, - STATE(3639), 1, - sym_type_specifier, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(3658), 1, - sym_qualified_type_identifier, - STATE(4041), 1, - sym_decltype_auto, - STATE(4072), 1, - sym_splice_specifier, - STATE(8571), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(3887), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3393), 4, + ACTIONS(11137), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4042), 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(67), 13, - anon_sym___extension__, + ACTIONS(7693), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7695), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -515117,163 +536305,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [96321] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3341), 1, - anon_sym_enum, - ACTIONS(3343), 1, - anon_sym_class, - ACTIONS(3345), 1, - anon_sym_struct, - ACTIONS(3347), 1, - anon_sym_union, - ACTIONS(3361), 1, - sym_auto, - ACTIONS(3363), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10721), 1, - sym_primitive_type, - ACTIONS(10741), 1, - sym_identifier, - ACTIONS(10743), 1, - anon_sym_COLON_COLON, - ACTIONS(10745), 1, - anon_sym_typename, - STATE(2838), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3398), 1, - sym_type_specifier, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3627), 1, - sym_template_type, - STATE(3634), 1, - sym_splice_specifier, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(3658), 1, - sym_qualified_type_identifier, - STATE(4041), 1, - sym_decltype_auto, - STATE(8631), 1, - sym__scope_resolution, - ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(3887), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3337), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4042), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [96434] = 29, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [96305] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3173), 1, - anon_sym_enum, - ACTIONS(3175), 1, - anon_sym_class, - ACTIONS(3177), 1, - anon_sym_struct, - ACTIONS(3179), 1, - anon_sym_union, - ACTIONS(3185), 1, - sym_auto, - ACTIONS(3187), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10684), 1, - sym_identifier, - ACTIONS(10686), 1, - anon_sym_COLON_COLON, - ACTIONS(10688), 1, - sym_primitive_type, - ACTIONS(10690), 1, - anon_sym_typename, - STATE(1963), 1, - sym_template_type, - STATE(1965), 1, + STATE(4735), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1994), 1, - sym_qualified_type_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, - sym__splice_specialization_specifier, - STATE(2070), 1, - sym_decltype_auto, - STATE(2265), 1, - sym_type_specifier, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(8593), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2063), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3169), 4, + ACTIONS(11137), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2089), 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(67), 13, - anon_sym___extension__, + ACTIONS(7697), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7699), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -515285,163 +536365,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [96547] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2648), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3243), 1, - anon_sym_enum, - ACTIONS(3245), 1, - anon_sym_class, - ACTIONS(3247), 1, - anon_sym_struct, - ACTIONS(3249), 1, - anon_sym_union, - ACTIONS(3255), 1, - sym_auto, - ACTIONS(3257), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10725), 1, - sym_identifier, - ACTIONS(10727), 1, - anon_sym_COLON_COLON, - ACTIONS(10729), 1, - sym_primitive_type, - ACTIONS(10731), 1, - anon_sym_typename, - STATE(2169), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2226), 1, - sym_type_specifier, - STATE(2519), 1, - sym_splice_specifier, - STATE(2567), 1, - sym__splice_specialization_specifier, - STATE(2591), 1, - sym_template_type, - STATE(2699), 1, - sym_qualified_type_identifier, - STATE(3138), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(8604), 1, - sym__scope_resolution, - ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2973), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3239), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3140), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [96660] = 29, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [96370] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2732), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3512), 1, - anon_sym_enum, - ACTIONS(3514), 1, - anon_sym_class, - ACTIONS(3516), 1, - anon_sym_struct, - ACTIONS(3518), 1, - anon_sym_union, - ACTIONS(3524), 1, - sym_auto, - ACTIONS(3526), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10733), 1, - sym_identifier, - ACTIONS(10735), 1, - anon_sym_COLON_COLON, - ACTIONS(10737), 1, - sym_primitive_type, - ACTIONS(10739), 1, - anon_sym_typename, - STATE(2162), 1, + STATE(5148), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2232), 1, - sym_type_specifier, - STATE(2530), 1, - sym_splice_specifier, - STATE(2580), 1, - sym_template_type, - STATE(2597), 1, - sym__splice_specialization_specifier, - STATE(2641), 1, - sym_qualified_type_identifier, - STATE(2982), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(8624), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2856), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3508), 4, + ACTIONS(11139), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2983), 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(67), 13, - anon_sym___extension__, + ACTIONS(7701), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7703), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -515453,163 +536425,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [96773] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2078), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3175), 1, - anon_sym_class, - ACTIONS(3177), 1, - anon_sym_struct, - ACTIONS(3179), 1, - anon_sym_union, - ACTIONS(3185), 1, - sym_auto, - ACTIONS(3187), 1, - anon_sym_decltype, - ACTIONS(3273), 1, - anon_sym_enum, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10686), 1, - anon_sym_COLON_COLON, - ACTIONS(10737), 1, - sym_primitive_type, - ACTIONS(10747), 1, - sym_identifier, - ACTIONS(10749), 1, - anon_sym_typename, - STATE(1963), 1, - sym_template_type, - STATE(1988), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1994), 1, - sym_qualified_type_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, - sym__splice_specialization_specifier, - STATE(2070), 1, - sym_decltype_auto, - STATE(2140), 1, - sym_type_specifier, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(8593), 1, - sym__scope_resolution, - ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2063), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3269), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2089), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [96886] = 29, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [96435] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3291), 1, - anon_sym_enum, - ACTIONS(3293), 1, - anon_sym_class, - ACTIONS(3295), 1, - anon_sym_struct, - ACTIONS(3297), 1, - anon_sym_union, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10651), 1, - anon_sym_COLON_COLON, - ACTIONS(10653), 1, - anon_sym_typename, - STATE(2634), 1, + STATE(5149), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3433), 1, - sym_type_specifier, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(3688), 1, - sym_splice_specifier, - STATE(8621), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(11141), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, + ACTIONS(7707), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7709), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -515621,78 +536485,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [96999] = 29, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [96500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3341), 1, - anon_sym_enum, - ACTIONS(3343), 1, - anon_sym_class, - ACTIONS(3345), 1, - anon_sym_struct, - ACTIONS(3347), 1, - anon_sym_union, - ACTIONS(3361), 1, - sym_auto, - ACTIONS(3363), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10721), 1, - sym_primitive_type, - ACTIONS(10741), 1, - sym_identifier, - ACTIONS(10743), 1, + ACTIONS(8699), 5, + anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(10745), 1, - anon_sym_typename, - STATE(2838), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2905), 1, - sym_type_specifier, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3627), 1, - sym_template_type, - STATE(3634), 1, - sym_splice_specifier, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(3658), 1, - sym_qualified_type_identifier, - STATE(4041), 1, - sym_decltype_auto, - STATE(8631), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(3887), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3337), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(8697), 48, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4042), 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(67), 13, - anon_sym___extension__, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -515705,163 +536540,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [97112] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2078), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3173), 1, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, anon_sym_enum, - ACTIONS(3175), 1, anon_sym_class, - ACTIONS(3177), 1, anon_sym_struct, - ACTIONS(3179), 1, anon_sym_union, - ACTIONS(3185), 1, + anon_sym_typename, + sym_identifier, sym_auto, - ACTIONS(3187), 1, anon_sym_decltype, - ACTIONS(4800), 1, anon_sym_template, - ACTIONS(10684), 1, - sym_identifier, - ACTIONS(10686), 1, - anon_sym_COLON_COLON, - ACTIONS(10688), 1, - sym_primitive_type, - ACTIONS(10690), 1, - anon_sym_typename, - STATE(1963), 1, - sym_template_type, - STATE(1965), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1994), 1, - sym_qualified_type_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, - sym__splice_specialization_specifier, - STATE(2070), 1, - sym_decltype_auto, - STATE(2148), 1, - sym_type_specifier, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(8593), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2063), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3169), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2089), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [97225] = 29, + [96561] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3175), 1, - anon_sym_class, - ACTIONS(3177), 1, - anon_sym_struct, - ACTIONS(3179), 1, - anon_sym_union, - ACTIONS(3185), 1, - sym_auto, - ACTIONS(3187), 1, - anon_sym_decltype, - ACTIONS(3273), 1, - anon_sym_enum, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10686), 1, - anon_sym_COLON_COLON, - ACTIONS(10737), 1, - sym_primitive_type, - ACTIONS(10747), 1, - sym_identifier, - ACTIONS(10749), 1, - anon_sym_typename, - STATE(1963), 1, - sym_template_type, - STATE(1988), 1, + STATE(4735), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1994), 1, - sym_qualified_type_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2018), 1, - sym_type_specifier, - STATE(2026), 1, - sym__splice_specialization_specifier, - STATE(2070), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(8593), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2063), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3269), 4, + ACTIONS(11137), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2089), 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(67), 13, - anon_sym___extension__, + ACTIONS(7713), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7715), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -515873,10 +536603,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [97338] = 3, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [96626] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9093), 20, + ACTIONS(11143), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11145), 1, + anon_sym_AMP_AMP, + ACTIONS(11147), 1, + anon_sym_or, + ACTIONS(11149), 1, + anon_sym_and, + ACTIONS(9393), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -515893,16 +536640,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9095), 33, + ACTIONS(9395), 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, @@ -515931,68 +536674,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [97399] = 3, + [96695] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8655), 23, - aux_sym_preproc_elif_token1, + ACTIONS(6723), 1, + anon_sym_LBRACK_LBRACK, + STATE(4559), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9517), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(9519), 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_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + [96760] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7087), 1, + anon_sym_COLON_COLON, + ACTIONS(7445), 1, + anon_sym_LT, + STATE(2053), 1, + sym_template_argument_list, + ACTIONS(7092), 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(7097), 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, + [96827] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(6572), 1, + anon_sym_LBRACE, + ACTIONS(9004), 1, + anon_sym_LT, + STATE(5312), 1, + sym_template_argument_list, + ACTIONS(6574), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8657), 30, + ACTIONS(6567), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - anon_sym_COLON_RBRACK, - [97460] = 3, + anon_sym_GT2, + [96896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 20, + ACTIONS(9389), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -516002,18 +536870,16 @@ 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(8631), 33, + ACTIONS(9391), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -516021,7 +536887,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -516029,6 +536897,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, @@ -516045,12 +536914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [97521] = 3, + [96957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 20, + ACTIONS(8424), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -516071,7 +536939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8631), 33, + ACTIONS(8422), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -516105,116 +536973,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [97582] = 29, + [97018] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10293), 1, + ACTIONS(11154), 1, + anon_sym_virtual, + ACTIONS(11163), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11166), 1, + anon_sym___declspec, + STATE(3497), 1, + sym_alignas_qualifier, + ACTIONS(10046), 2, anon_sym_COLON_COLON, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7462), 1, - sym_type_specifier, - STATE(8605), 1, - sym__scope_resolution, - ACTIONS(71), 2, + ACTIONS(11160), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(11169), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3090), 2, + STATE(5048), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [97695] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8384), 5, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK_COLON, - ACTIONS(8382), 48, - anon_sym___extension__, - anon_sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(11157), 9, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -516223,6 +537011,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + ACTIONS(11151), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -516235,8 +537025,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(10044), 14, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, sym_primitive_type, anon_sym_enum, anon_sym_class, @@ -516247,10 +537040,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [97756] = 3, + [97097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 20, + ACTIONS(9407), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -516271,7 +537064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8631), 33, + ACTIONS(9409), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -516305,137 +537098,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [97817] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(10277), 1, - anon_sym_LT, - STATE(4203), 1, - sym_template_argument_list, - ACTIONS(5272), 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7031), 38, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [97884] = 9, + [97158] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6746), 1, - anon_sym_const, - ACTIONS(6755), 1, - anon_sym_AMP, - ACTIONS(8390), 1, - anon_sym_LT, - STATE(2848), 1, - sym_template_argument_list, - ACTIONS(6748), 6, - anon_sym_RPAREN, + ACTIONS(10568), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + ACTIONS(10570), 1, anon_sym_LBRACK, - ACTIONS(6753), 7, + STATE(1974), 1, + sym_parameter_list, + STATE(4999), 1, + sym__function_declarator_seq, + ACTIONS(10198), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_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(6751), 15, - anon_sym___extension__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6758), 21, + anon_sym_DASH_GT, + ACTIONS(10196), 30, anon_sym_DOT_DOT_DOT, - anon_sym_PERCENT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_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, - [97957] = 4, + anon_sym_DASH_GT_STAR, + [97227] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10802), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(9308), 19, + ACTIONS(10568), 1, + anon_sym_LPAREN2, + ACTIONS(10570), 1, + anon_sym_LBRACK, + STATE(1974), 1, + sym_parameter_list, + STATE(4999), 1, + sym__function_declarator_seq, + ACTIONS(10202), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -516449,24 +537185,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(9310), 33, + anon_sym_DASH_GT, + ACTIONS(10200), 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, @@ -516488,471 +537221,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [98020] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10588), 1, - sym_identifier, - ACTIONS(10590), 1, - anon_sym_COLON_COLON, - ACTIONS(10594), 1, - sym_primitive_type, - ACTIONS(10596), 1, - anon_sym_enum, - ACTIONS(10598), 1, - anon_sym_class, - ACTIONS(10600), 1, - anon_sym_struct, - ACTIONS(10602), 1, - anon_sym_union, - ACTIONS(10604), 1, - anon_sym_typename, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(7299), 1, - sym_splice_specifier, - STATE(7459), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7577), 1, - sym_template_type, - STATE(7594), 1, - sym_type_specifier, - STATE(7603), 1, - sym_qualified_type_identifier, - STATE(8564), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(10592), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [98133] = 3, + anon_sym_DASH_GT_STAR, + [97296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 23, - aux_sym_preproc_elif_token1, + ACTIONS(3163), 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___attribute__, - anon_sym___attribute, - anon_sym_COLON, + 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_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8631), 30, + ACTIONS(3161), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [98194] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [97357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 23, - aux_sym_preproc_elif_token1, + ACTIONS(9415), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8631), 30, + ACTIONS(9417), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - anon_sym_COLON_RBRACK, - [98255] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [97418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 23, - aux_sym_preproc_elif_token1, + ACTIONS(9419), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8631), 30, + ACTIONS(9421), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - anon_sym_COLON_RBRACK, - [98316] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [97479] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5233), 24, - aux_sym_preproc_elif_token1, + ACTIONS(6493), 1, + anon_sym_LBRACK_LBRACK, + STATE(3170), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9517), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + 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, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5235), 29, + ACTIONS(9519), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_RBRACK_RBRACK, - 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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [98377] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10293), 1, - anon_sym_COLON_COLON, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(7099), 1, - sym_type_specifier, - STATE(8605), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [98490] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5116), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10804), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7253), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7255), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [98555] = 3, + [97544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8955), 20, + ACTIONS(9423), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -516973,7 +537480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8957), 33, + ACTIONS(9425), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -517007,102 +537514,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [98616] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2855), 1, - sym_auto, - ACTIONS(2857), 1, - anon_sym_decltype, - ACTIONS(2875), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3544), 1, - anon_sym_enum, - ACTIONS(3546), 1, - anon_sym_class, - ACTIONS(3548), 1, - anon_sym_struct, - ACTIONS(3550), 1, - anon_sym_union, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10699), 1, - sym_primitive_type, - ACTIONS(10703), 1, - sym_identifier, - ACTIONS(10705), 1, - anon_sym_COLON_COLON, - ACTIONS(10707), 1, - anon_sym_typename, - STATE(3378), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3892), 1, - sym_type_specifier, - STATE(3965), 1, - sym_template_type, - STATE(4048), 1, - sym_qualified_type_identifier, - STATE(4067), 1, - sym_splice_specifier, - STATE(4189), 1, - sym__splice_specialization_specifier, - STATE(4401), 1, - sym_decltype_auto, - STATE(8549), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(4252), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3542), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4402), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [98729] = 7, + [97605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10209), 1, - anon_sym_LPAREN2, - ACTIONS(10211), 1, - anon_sym_LBRACK, - STATE(1869), 1, - sym_parameter_list, - STATE(4744), 1, - sym__function_declarator_seq, - ACTIONS(9860), 19, + ACTIONS(3155), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -517121,16 +537536,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9858), 30, + ACTIONS(3153), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_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, @@ -517152,186 +537568,397 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [98798] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [97666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 18, + ACTIONS(8893), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + 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(2793), 35, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8895), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_DOT_STAR, anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [97727] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6861), 1, + anon_sym___attribute, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(11172), 1, + anon_sym_LPAREN2, + ACTIONS(11174), 1, + anon_sym_STAR, + ACTIONS(11176), 1, + anon_sym_AMP_AMP, + ACTIONS(11178), 1, + anon_sym_AMP, + ACTIONS(11180), 1, + sym_ms_restrict_modifier, + ACTIONS(11186), 1, + anon_sym_LBRACK, + STATE(4330), 1, + sym_parameter_list, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(6387), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8314), 1, + sym__function_declarator_seq, + STATE(8379), 1, + sym__abstract_declarator, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11182), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11184), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5060), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6252), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8312), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6859), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + 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, - [98859] = 17, + [97826] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, + ACTIONS(6821), 1, + anon_sym___attribute, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(11172), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(11174), 1, + anon_sym_STAR, + ACTIONS(11176), 1, + anon_sym_AMP_AMP, + ACTIONS(11178), 1, + anon_sym_AMP, + ACTIONS(11180), 1, + sym_ms_restrict_modifier, + ACTIONS(11186), 1, anon_sym_LBRACK, - ACTIONS(10413), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10787), 1, - anon_sym_GT_EQ, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10427), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10771), 2, + STATE(4330), 1, + sym_parameter_list, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(6387), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8314), 1, + sym__function_declarator_seq, + STATE(8385), 1, + sym__abstract_declarator, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11182), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11184), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6210), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6215), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8312), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6823), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + 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, + [97925] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8954), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10789), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10773), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10783), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10785), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9282), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(9284), 22, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8956), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_DASH_GT_STAR, - [98948] = 13, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [97986] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3807), 1, + anon_sym_enum, + ACTIONS(3809), 1, + anon_sym_class, + ACTIONS(3811), 1, + anon_sym_struct, + ACTIONS(3813), 1, + anon_sym_union, + ACTIONS(3819), 1, + sym_auto, + ACTIONS(3821), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11036), 1, + sym_identifier, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(11040), 1, + sym_primitive_type, + ACTIONS(11042), 1, + anon_sym_typename, + STATE(2073), 1, + sym_template_type, + STATE(2076), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2087), 1, + sym_qualified_type_identifier, + STATE(2104), 1, + sym_splice_specifier, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2221), 1, + sym_decltype_auto, + STATE(2266), 1, + sym_type_specifier, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(8763), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2169), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3803), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2222), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [98099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10427), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10771), 2, + ACTIONS(9333), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10789), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10773), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9282), 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(9284), 27, + anon_sym_DOT, + ACTIONS(9335), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_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, @@ -517350,19 +537977,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [99029] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [98160] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10209), 1, + ACTIONS(7090), 1, + anon_sym_LBRACE, + ACTIONS(7445), 1, + anon_sym_LT, + STATE(2053), 1, + sym_template_argument_list, + ACTIONS(7087), 2, anon_sym_LPAREN2, - ACTIONS(10211), 1, - anon_sym_LBRACK, - STATE(1869), 1, - sym_parameter_list, - STATE(4744), 1, - sym__function_declarator_seq, - ACTIONS(9852), 19, + anon_sym_COLON_COLON, + ACTIONS(7092), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -517372,25 +538006,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(9850), 30, + ACTIONS(7097), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -517398,7 +538031,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, @@ -517412,19 +538044,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [99098] = 7, + anon_sym_DASH_GT, + anon_sym_GT2, + [98229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10209), 1, - anon_sym_LPAREN2, - ACTIONS(10211), 1, - anon_sym_LBRACK, - STATE(1869), 1, - sym_parameter_list, - STATE(4744), 1, - sym__function_declarator_seq, - ACTIONS(9856), 19, + ACTIONS(9337), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -517443,16 +538068,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9854), 30, + ACTIONS(9339), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_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, @@ -517474,11 +538100,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [99167] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [98290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9007), 20, + ACTIONS(8905), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -517499,7 +538128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9009), 33, + ACTIONS(8907), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -517533,10 +538162,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [99228] = 3, + [98351] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 20, + ACTIONS(6685), 1, + anon_sym_LBRACK_LBRACK, + STATE(4614), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9517), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -517551,13 +538185,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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(2801), 33, + ACTIONS(9519), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -517565,7 +538200,6 @@ 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -517587,79 +538221,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_GT2, + [98416] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5081), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11188), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7223), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7225), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [99289] = 3, + [98481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8955), 18, + ACTIONS(5589), 24, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(8957), 35, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(5591), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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_RBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, + 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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [99350] = 6, + anon_sym_COLON_RBRACK, + [98542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, - anon_sym_LBRACE, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - STATE(5646), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9105), 18, + ACTIONS(9435), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -517669,25 +538353,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(9107), 31, + ACTIONS(9437), 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_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -517695,7 +538380,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, @@ -517710,18 +538394,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [99417] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [98603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10806), 1, - anon_sym_LPAREN2, - ACTIONS(10808), 1, - anon_sym_LBRACK, - STATE(1885), 1, - sym_parameter_list, - STATE(5493), 1, - sym__function_declarator_seq, - ACTIONS(9852), 16, + ACTIONS(8913), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -517731,22 +538411,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(9850), 33, + ACTIONS(8915), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -517754,98 +538438,81 @@ 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, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [99486] = 30, + [98664] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6111), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(11197), 1, + anon_sym_virtual, + ACTIONS(11206), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10810), 1, - anon_sym_DASH_GT, - ACTIONS(10812), 1, - anon_sym_requires, - STATE(4238), 1, + ACTIONS(11209), 1, + anon_sym___declspec, + ACTIONS(11215), 1, + anon_sym_explicit, + STATE(4722), 1, sym_alignas_qualifier, - STATE(7408), 1, - sym__function_attributes_start, - STATE(7549), 1, - sym_ref_qualifier, - STATE(8608), 1, - sym__function_attributes_end, - STATE(8615), 1, - sym_trailing_return_type, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10014), 2, + ACTIONS(11203), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(11212), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(6036), 2, + ACTIONS(11192), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(11190), 7, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(11200), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + STATE(5072), 9, + sym__declaration_modifiers, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6264), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(7882), 2, sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8457), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7745), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6113), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - ACTIONS(10001), 12, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + ACTIONS(11194), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -517857,10 +538524,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [99601] = 3, + [98745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 20, + ACTIONS(11218), 2, + anon_sym_final, + anon_sym_override, + STATE(5073), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9143), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -517870,25 +538543,23 @@ 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(8994), 33, + anon_sym_DASH_GT, + ACTIONS(9145), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -517897,28 +538568,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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [99662] = 3, + anon_sym_DASH_GT_STAR, + [98810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9015), 20, + ACTIONS(9445), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -517939,7 +538608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9017), 33, + ACTIONS(9447), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -517973,117 +538642,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [99723] = 10, + [98871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10427), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9244), 17, + ACTIONS(3163), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(9246), 27, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(3161), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [99798] = 10, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [98932] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, + ACTIONS(10435), 1, + anon_sym_EQ, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(10759), 1, anon_sym_LBRACK, - ACTIONS(10797), 1, + ACTIONS(10787), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11225), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11227), 1, + anon_sym_AMP_AMP, + ACTIONS(11229), 1, + anon_sym_PIPE, + ACTIONS(11233), 1, + anon_sym_AMP, + ACTIONS(11239), 1, + anon_sym_GT_EQ, + ACTIONS(11243), 1, + anon_sym_or, + ACTIONS(11245), 1, + anon_sym_and, + ACTIONS(11247), 1, + anon_sym_bitor, + ACTIONS(11249), 1, + anon_sym_bitand, + ACTIONS(11251), 1, anon_sym_DOT_STAR, - STATE(5506), 1, + STATE(5663), 1, sym_argument_list, - STATE(5507), 1, + STATE(5664), 1, sym_subscript_argument_list, - ACTIONS(10427), 2, + ACTIONS(10801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, + ACTIONS(10803), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9252), 17, + ACTIONS(11221), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11231), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11241), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11235), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11237), 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(9254), 27, + ACTIONS(10437), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -518098,23 +538780,73 @@ 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_DASH_GT_STAR, + [99039] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11253), 1, + sym_identifier, + STATE(5108), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6913), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6915), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8456), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [99873] = 7, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8454), 21, + 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_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [99108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(6208), 1, - anon_sym_LBRACE, - ACTIONS(10814), 1, - anon_sym_LT, - STATE(5247), 1, - sym_template_argument_list, - ACTIONS(6210), 17, + ACTIONS(7789), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -518125,6 +538857,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, @@ -518132,7 +538865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6203), 32, + ACTIONS(7791), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -518165,10 +538898,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [99942] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [99169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 18, + ACTIONS(9296), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -518187,7 +538923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8994), 35, + ACTIONS(9298), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -518223,32 +538959,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [100003] = 11, + [99230] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, + ACTIONS(10568), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(10570), 1, anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10427), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10773), 3, + STATE(1974), 1, + sym_parameter_list, + STATE(4999), 1, + sym__function_declarator_seq, + ACTIONS(10174), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9282), 14, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -518261,7 +538988,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9284), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10172), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -518288,11 +539017,134 @@ 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, - [100080] = 3, + [99299] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4735), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11137), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7675), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7677), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [99364] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5081), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11188), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7717), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7719), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [99429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8595), 23, + ACTIONS(8901), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -518316,7 +539168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8597), 30, + ACTIONS(8903), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -518347,10 +539199,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [100141] = 3, + [99490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9029), 20, + ACTIONS(9308), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -518360,18 +539212,16 @@ 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(9031), 33, + ACTIONS(9310), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -518379,7 +539229,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -518387,6 +539239,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, @@ -518403,74 +539256,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [100202] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10817), 1, - sym_identifier, - STATE(4979), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(10820), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(10823), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8047), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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(8045), 21, - 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_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [100271] = 3, + [99551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7546), 20, + ACTIONS(9316), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -518480,18 +539270,16 @@ 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(7544), 33, + ACTIONS(9318), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -518499,7 +539287,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -518507,6 +539297,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, @@ -518523,19 +539314,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [100332] = 6, + [99612] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2608), 1, - anon_sym_LBRACE, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - STATE(5796), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9117), 20, + ACTIONS(5661), 1, + anon_sym_EQ, + ACTIONS(5663), 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(5645), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -518545,38 +539344,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(9119), 29, + ACTIONS(5638), 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_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, @@ -518585,40 +539374,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [100399] = 3, + anon_sym_COLON_RBRACK, + [99677] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3204), 1, + anon_sym_enum, + ACTIONS(3206), 1, + anon_sym_class, + ACTIONS(3208), 1, + anon_sym_struct, + ACTIONS(3210), 1, + anon_sym_union, + ACTIONS(3236), 1, + sym_auto, + ACTIONS(3238), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11046), 1, + sym_identifier, + ACTIONS(11048), 1, + anon_sym_COLON_COLON, + ACTIONS(11050), 1, + sym_primitive_type, + ACTIONS(11052), 1, + anon_sym_typename, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(4043), 1, + sym_template_type, + STATE(4204), 1, + sym_qualified_type_identifier, + STATE(4305), 1, + sym__splice_specialization_specifier, + STATE(4426), 1, + sym_decltype_auto, + STATE(6642), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7326), 1, + sym_splice_specifier, + STATE(7518), 1, + sym_type_specifier, + STATE(8745), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4373), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3200), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4430), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [99790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8622), 20, + ACTIONS(5593), 24, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(8624), 33, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(5595), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [99851] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10473), 1, + anon_sym_EQ, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, anon_sym_LBRACK, + ACTIONS(10787), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11225), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11227), 1, + anon_sym_AMP_AMP, + ACTIONS(11229), 1, + anon_sym_PIPE, + ACTIONS(11233), 1, + anon_sym_AMP, + ACTIONS(11239), 1, + anon_sym_GT_EQ, + ACTIONS(11243), 1, + anon_sym_or, + ACTIONS(11245), 1, + anon_sym_and, + ACTIONS(11247), 1, + anon_sym_bitor, + ACTIONS(11249), 1, + anon_sym_bitand, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11221), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11231), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11241), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11223), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11235), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11237), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10475), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -518626,28 +539590,18 @@ 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [100460] = 3, + anon_sym_DASH_GT_STAR, + [99958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 18, + ACTIONS(9333), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -518657,16 +539611,18 @@ 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(7627), 35, + ACTIONS(9335), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -518674,9 +539630,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -518684,7 +539638,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, @@ -518701,11 +539654,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [100521] = 3, + [100019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 20, + ACTIONS(9337), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -518726,7 +539680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7627), 33, + ACTIONS(9339), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -518760,95 +539714,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [100582] = 30, + [100080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6111), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, + ACTIONS(8921), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10254), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___attribute__, - ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10810), 1, - anon_sym_DASH_GT, - ACTIONS(10826), 1, - anon_sym_requires, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(7434), 1, - sym__function_attributes_start, - STATE(7540), 1, - sym_ref_qualifier, - STATE(8561), 1, - sym__function_attributes_end, - STATE(8562), 1, - sym_trailing_return_type, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10439), 2, + 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_identifier, anon_sym_final, anon_sym_override, - STATE(6036), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6264), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8457), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7709), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6113), 4, + anon_sym_requires, + ACTIONS(8923), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_GT2, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [100697] = 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [100141] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9093), 18, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9657), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -518866,18 +539806,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9095), 35, + ACTIONS(9659), 29, 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -518898,28 +539835,33 @@ 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [100758] = 7, + anon_sym_DASH_GT_STAR, + [100214] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10806), 1, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(10808), 1, + ACTIONS(10759), 1, anon_sym_LBRACK, - STATE(1885), 1, - sym_parameter_list, - STATE(5493), 1, - sym__function_declarator_seq, - ACTIONS(9856), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9707), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -518929,9 +539871,10 @@ 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(9854), 33, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9709), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -518951,24 +539894,34 @@ 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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [100827] = 3, + [100291] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9097), 18, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9707), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -518986,18 +539939,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9099), 35, + ACTIONS(9709), 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_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -519016,46 +539966,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [100366] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10787), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11227), 1, + anon_sym_AMP_AMP, + ACTIONS(11229), 1, + anon_sym_PIPE, + ACTIONS(11233), 1, + anon_sym_AMP, + ACTIONS(11239), 1, + anon_sym_GT_EQ, + ACTIONS(11245), 1, + anon_sym_and, + ACTIONS(11247), 1, + anon_sym_bitor, + ACTIONS(11249), 1, + anon_sym_bitand, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(9707), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(10801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(10803), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [100888] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9101), 18, + ACTIONS(11221), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11231), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11241), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11235), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11237), 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(9103), 35, + ACTIONS(9709), 19, 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -519070,50 +540045,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_DASH_GT_STAR, + [100469] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10787), 1, anon_sym_LT_EQ_GT, + ACTIONS(11229), 1, + anon_sym_PIPE, + ACTIONS(11233), 1, + anon_sym_AMP, + ACTIONS(11239), 1, + anon_sym_GT_EQ, + ACTIONS(11247), 1, anon_sym_bitor, + ACTIONS(11249), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(10803), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [100949] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9109), 18, + ACTIONS(11221), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(11231), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(11241), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(9707), 3, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9111), 35, + ACTIONS(11223), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11235), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11237), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 20, 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -519128,54 +540122,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_DASH_GT_STAR, + [100568] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10787), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, + ACTIONS(11233), 1, + anon_sym_AMP, + ACTIONS(11239), 1, + anon_sym_GT_EQ, + ACTIONS(11249), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(10803), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [101010] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10829), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(9308), 20, + ACTIONS(11221), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11231), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11241), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11235), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11237), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(9707), 4, + anon_sym_PIPE, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9310), 32, + ACTIONS(9709), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_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, @@ -519190,51 +540196,66 @@ 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, - [101073] = 5, + [100663] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6453), 2, - anon_sym_final, - anon_sym_override, - STATE(5070), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(8774), 16, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10787), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11233), 1, + anon_sym_AMP, + ACTIONS(11239), 1, + anon_sym_GT_EQ, + ACTIONS(11249), 1, + anon_sym_bitand, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11221), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11241), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11235), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11237), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9707), 6, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8776), 33, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9709), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_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, @@ -519246,51 +540267,66 @@ 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, - anon_sym_DOT_STAR, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [101138] = 3, + [100756] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8935), 20, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10787), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11239), 1, + anon_sym_GT_EQ, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11221), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11241), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11235), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11237), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9707), 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(8937), 33, + ACTIONS(9709), 22, 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -519298,57 +540334,69 @@ 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_GT_STAR, + [100845] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10787), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11239), 1, + anon_sym_GT_EQ, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(10803), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [101199] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9097), 20, + ACTIONS(11221), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11241), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11237), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9707), 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(9099), 33, + ACTIONS(9709), 25, 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -519356,57 +540404,68 @@ 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_GT_STAR, + [100932] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10787), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(10803), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [101260] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8087), 18, + ACTIONS(11221), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11241), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9707), 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, - ACTIONS(8089), 35, + ACTIONS(9709), 26, 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -519421,30 +540480,97 @@ 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, + anon_sym_DASH_GT_STAR, + [101015] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4735), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11137), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7681), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7683), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [101321] = 5, + [101080] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10831), 1, - anon_sym_AMP_AMP, - ACTIONS(10833), 1, - anon_sym_and, - ACTIONS(8939), 17, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11221), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9707), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -519455,18 +540581,17 @@ 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, - ACTIONS(8941), 34, + ACTIONS(9709), 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_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -519485,17 +540610,19 @@ 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [101386] = 3, + anon_sym_DASH_GT_STAR, + [101159] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8999), 18, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(6572), 1, + anon_sym_LBRACE, + ACTIONS(11255), 1, + anon_sym_LT, + STATE(5351), 1, + sym_template_argument_list, + ACTIONS(6574), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -519506,7 +540633,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, @@ -519514,7 +540640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9001), 35, + ACTIONS(6567), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -519547,100 +540673,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [101447] = 3, + [101228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9003), 18, + ACTIONS(8946), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + 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(9005), 35, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8948), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [101508] = 3, + anon_sym_COLON_RBRACK, + [101289] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 18, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11221), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11241), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9707), 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, - ACTIONS(9013), 35, + ACTIONS(9709), 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_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -519659,140 +540798,109 @@ 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [101569] = 3, + anon_sym_DASH_GT_STAR, + [101370] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9015), 18, + ACTIONS(11258), 1, + sym_identifier, + STATE(5108), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(11261), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(11264), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8408), 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___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9017), 35, + sym_literal_suffix, + ACTIONS(8406), 21, 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_SEMI, 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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [101630] = 28, + [101439] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10188), 1, - anon_sym_EQ, - ACTIONS(10341), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10389), 1, - anon_sym_QMARK, - ACTIONS(10413), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10775), 1, - anon_sym_AMP_AMP, - ACTIONS(10777), 1, - anon_sym_PIPE, - ACTIONS(10781), 1, - anon_sym_AMP, - ACTIONS(10787), 1, - anon_sym_GT_EQ, - ACTIONS(10791), 1, - anon_sym_and, - ACTIONS(10793), 1, - anon_sym_bitor, - ACTIONS(10795), 1, - anon_sym_bitand, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - ACTIONS(10835), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10837), 1, - anon_sym_or, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10427), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10771), 2, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(11267), 1, + anon_sym_LT, + STATE(5314), 1, + sym_template_argument_list, + ACTIONS(9578), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10779), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10789), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10773), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10783), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10785), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10190), 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(9580), 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, @@ -519806,11 +540914,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, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [101741] = 3, + [101506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8541), 18, + ACTIONS(7968), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -519829,7 +540944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8543), 35, + ACTIONS(7966), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -519865,10 +540980,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [101802] = 3, + [101567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9029), 18, + ACTIONS(9361), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -519887,7 +541002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9031), 35, + ACTIONS(9363), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -519923,14 +541038,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [101863] = 5, + [101628] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10839), 1, + ACTIONS(11270), 1, anon_sym_LT, - STATE(2655), 1, + STATE(1963), 1, sym_template_argument_list, - ACTIONS(9225), 19, + ACTIONS(9650), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -519943,14 +541058,12 @@ static const uint16_t ts_small_parse_table[] = { 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(9227), 32, + ACTIONS(9652), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -519960,7 +541073,9 @@ 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, @@ -519982,11 +541097,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [101928] = 3, + anon_sym_DASH_GT, + [101693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8559), 18, + ACTIONS(9365), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -520005,7 +541120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8561), 35, + ACTIONS(9367), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -520041,19 +541156,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [101989] = 7, + [101754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6751), 1, - anon_sym_LBRACE, - ACTIONS(7037), 1, - anon_sym_LT, - STATE(1956), 1, - sym_template_argument_list, - ACTIONS(6748), 2, - anon_sym_LPAREN2, - anon_sym_COLON_COLON, - ACTIONS(6753), 19, + ACTIONS(9369), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -520063,24 +541169,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(6758), 29, + ACTIONS(9371), 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_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -520088,6 +541196,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, @@ -520102,95 +541211,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [102058] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10293), 1, - anon_sym_COLON_COLON, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(6550), 1, - sym_type_specifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(8605), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [102171] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [101815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 18, + ACTIONS(9373), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -520209,7 +541236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9039), 35, + ACTIONS(9375), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -520245,13 +541272,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [102232] = 4, + [101876] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6233), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6235), 19, + ACTIONS(11270), 1, + anon_sym_LT, + STATE(1973), 1, + sym_template_argument_list, + ACTIONS(9650), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -520262,26 +541290,26 @@ 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(6228), 32, + ACTIONS(9652), 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_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -520303,269 +541331,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [102295] = 3, + anon_sym_DASH_GT, + [101941] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8516), 23, - aux_sym_preproc_elif_token1, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9638), 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___attribute__, - anon_sym___attribute, - anon_sym_COLON, + 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_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8518), 30, + ACTIONS(9640), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [102356] = 28, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [102016] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3236), 1, + sym_auto, + ACTIONS(3238), 1, + anon_sym_decltype, + ACTIONS(3256), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4397), 1, + anon_sym_enum, + ACTIONS(4399), 1, + anon_sym_class, + ACTIONS(4401), 1, + anon_sym_struct, + ACTIONS(4403), 1, + anon_sym_union, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11050), 1, + sym_primitive_type, + ACTIONS(11057), 1, + sym_identifier, + ACTIONS(11059), 1, + anon_sym_COLON_COLON, + ACTIONS(11061), 1, + anon_sym_typename, + STATE(3490), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3985), 1, + sym_type_specifier, + STATE(4043), 1, + sym_template_type, + STATE(4204), 1, + sym_qualified_type_identifier, + STATE(4272), 1, + sym_splice_specifier, + STATE(4305), 1, + sym__splice_specialization_specifier, + STATE(4426), 1, + sym_decltype_auto, + STATE(8676), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4373), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4395), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4430), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [102129] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10196), 1, + ACTIONS(10538), 1, anon_sym_EQ, - ACTIONS(10341), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10347), 1, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(10759), 1, anon_sym_LBRACK, - ACTIONS(10389), 1, - anon_sym_QMARK, - ACTIONS(10413), 1, + ACTIONS(10787), 1, anon_sym_LT_EQ_GT, - ACTIONS(10775), 1, + ACTIONS(11225), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11227), 1, anon_sym_AMP_AMP, - ACTIONS(10777), 1, + ACTIONS(11229), 1, anon_sym_PIPE, - ACTIONS(10781), 1, + ACTIONS(11233), 1, anon_sym_AMP, - ACTIONS(10787), 1, + ACTIONS(11239), 1, anon_sym_GT_EQ, - ACTIONS(10791), 1, + ACTIONS(11243), 1, + anon_sym_or, + ACTIONS(11245), 1, anon_sym_and, - ACTIONS(10793), 1, + ACTIONS(11247), 1, anon_sym_bitor, - ACTIONS(10795), 1, + ACTIONS(11249), 1, anon_sym_bitand, - ACTIONS(10797), 1, + ACTIONS(11251), 1, anon_sym_DOT_STAR, - ACTIONS(10835), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10837), 1, - anon_sym_or, - STATE(5506), 1, + STATE(5663), 1, sym_argument_list, - STATE(5507), 1, + STATE(5664), 1, sym_subscript_argument_list, - ACTIONS(10427), 2, + ACTIONS(10801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, + ACTIONS(10803), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10771), 2, + ACTIONS(11221), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10779), 2, + ACTIONS(11231), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(10789), 2, + ACTIONS(11241), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10773), 3, + ACTIONS(11223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10783), 3, + ACTIONS(11235), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10785), 3, + ACTIONS(11237), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10198), 16, - 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_DASH_GT_STAR, - [102467] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10236), 1, - sym_literal_suffix, - ACTIONS(5253), 26, + ACTIONS(10540), 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_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(5260), 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___attribute__, - anon_sym___attribute, - anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - [102530] = 3, + anon_sym_DASH_GT_STAR, + [102236] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5229), 24, - aux_sym_preproc_elif_token1, + ACTIONS(11273), 1, + anon_sym_LT, + STATE(2846), 1, + sym_template_argument_list, + ACTIONS(9650), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + 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, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5231), 29, + anon_sym_DASH_GT, + ACTIONS(9652), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK_RBRACK, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [102591] = 3, + anon_sym_DASH_GT_STAR, + [102301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8559), 20, + ACTIONS(8424), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -520575,18 +541635,16 @@ 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(8561), 33, + ACTIONS(8422), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -520594,7 +541652,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -520602,6 +541662,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, @@ -520618,20 +541679,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [102652] = 7, + [102362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10806), 1, - anon_sym_LPAREN2, - ACTIONS(10808), 1, - anon_sym_LBRACK, - STATE(1885), 1, - sym_parameter_list, - STATE(5493), 1, - sym__function_declarator_seq, - ACTIONS(9860), 16, + ACTIONS(9407), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -520646,17 +541698,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(9858), 33, + ACTIONS(9409), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_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, @@ -520668,29 +541724,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_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [102721] = 5, + [102423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6365), 1, - anon_sym_LBRACK_LBRACK, - STATE(4497), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9211), 21, + ACTIONS(9415), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -520700,19 +541751,16 @@ 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(9213), 29, + ACTIONS(9417), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -520720,6 +541768,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -520727,6 +541778,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, @@ -520741,16 +541793,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [102786] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [102484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6330), 1, - anon_sym_LBRACK_LBRACK, - STATE(4485), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9211), 19, + ACTIONS(9419), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -520764,13 +541813,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, - ACTIONS(9213), 31, + ACTIONS(9421), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -520779,6 +541827,7 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -520802,10 +541851,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [102851] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [102545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 20, + ACTIONS(9423), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -520815,18 +541867,16 @@ 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(8635), 33, + ACTIONS(9425), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -520834,7 +541884,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -520842,6 +541894,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, @@ -520858,158 +541911,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [102912] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2744), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3455), 1, - anon_sym_enum, - ACTIONS(3457), 1, - anon_sym_class, - ACTIONS(3459), 1, - anon_sym_struct, - ACTIONS(3461), 1, - anon_sym_union, - ACTIONS(3465), 1, - sym_auto, - ACTIONS(3467), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10709), 1, - sym_identifier, - ACTIONS(10711), 1, - anon_sym_COLON_COLON, - ACTIONS(10713), 1, - sym_primitive_type, - ACTIONS(10715), 1, - anon_sym_typename, - STATE(2240), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2504), 1, - sym_type_specifier, - STATE(2677), 1, - sym_splice_specifier, - STATE(2814), 1, - sym_template_type, - STATE(2837), 1, - sym__splice_specialization_specifier, - STATE(2887), 1, - sym_qualified_type_identifier, - STATE(3453), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(8588), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(3262), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3451), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3460), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [103025] = 26, + [102606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10123), 1, - anon_sym_EQ, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10413), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10775), 1, - anon_sym_AMP_AMP, - ACTIONS(10777), 1, - anon_sym_PIPE, - ACTIONS(10781), 1, - anon_sym_AMP, - ACTIONS(10787), 1, - anon_sym_GT_EQ, - ACTIONS(10791), 1, - anon_sym_and, - ACTIONS(10793), 1, - anon_sym_bitor, - ACTIONS(10795), 1, - anon_sym_bitand, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - ACTIONS(10835), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10837), 1, - anon_sym_or, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10427), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10771), 2, + ACTIONS(8905), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10779), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10789), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10773), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10783), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10785), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10125), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8907), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_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, @@ -521024,11 +541959,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DASH_GT_STAR, - [103132] = 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [102667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 20, + ACTIONS(9435), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -521038,18 +541983,16 @@ 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(8667), 33, + ACTIONS(9437), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -521057,7 +542000,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -521065,6 +542010,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, @@ -521081,12 +542027,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [103193] = 3, + [102728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8516), 20, + ACTIONS(8913), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -521096,18 +542041,16 @@ 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(8518), 33, + ACTIONS(8915), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -521115,7 +542058,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -521123,6 +542068,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, @@ -521139,12 +542085,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [103254] = 3, + [102789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8541), 20, + ACTIONS(9445), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -521154,18 +542099,16 @@ 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(8543), 33, + ACTIONS(9447), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -521173,7 +542116,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -521181,6 +542126,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, @@ -521197,45 +542143,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [103315] = 7, + [102850] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10806), 1, - anon_sym_LPAREN2, - ACTIONS(10808), 1, - anon_sym_LBRACK, - STATE(1885), 1, - sym_parameter_list, - STATE(5493), 1, - sym__function_declarator_seq, - ACTIONS(9834), 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(9832), 33, + ACTIONS(10616), 1, + sym_literal_suffix, + ACTIONS(5638), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -521248,23 +542172,47 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(5645), 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___attribute__, + anon_sym___attribute, + 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_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [103384] = 3, + anon_sym_DOT, + [102913] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 18, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(11276), 1, + anon_sym_LT, + STATE(5314), 1, + sym_template_argument_list, + ACTIONS(9495), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -521275,7 +542223,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, @@ -521283,9 +542230,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8635), 35, + anon_sym_DASH_GT, + ACTIONS(9497), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -521293,7 +542242,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -521315,111 +542263,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [103445] = 7, + anon_sym_DASH_GT_STAR, + [102980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6751), 1, - anon_sym_LBRACE, - ACTIONS(7037), 1, - anon_sym_LT, - STATE(1956), 1, - sym_template_argument_list, - ACTIONS(6748), 2, - anon_sym_LPAREN2, - anon_sym_COLON_COLON, - ACTIONS(6753), 17, + ACTIONS(8996), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + 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(6758), 31, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8998), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_DOT_STAR, anon_sym_DASH_GT, - [103514] = 12, + anon_sym_COLON_RBRACK, + [103041] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(10845), 1, - anon_sym_virtual, - ACTIONS(10854), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10857), 1, - anon_sym___declspec, - STATE(3482), 1, - sym_alignas_qualifier, - ACTIONS(9680), 2, - anon_sym_COLON_COLON, + ACTIONS(3104), 1, anon_sym_LBRACK_COLON, - ACTIONS(10851), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(10860), 2, + ACTIONS(4062), 1, + anon_sym_enum, + ACTIONS(4064), 1, + anon_sym_class, + ACTIONS(4066), 1, + anon_sym_struct, + ACTIONS(4068), 1, + anon_sym_union, + ACTIONS(4072), 1, + sym_auto, + ACTIONS(4074), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11071), 1, + sym_identifier, + ACTIONS(11073), 1, + anon_sym_COLON_COLON, + ACTIONS(11075), 1, + sym_primitive_type, + ACTIONS(11077), 1, + anon_sym_typename, + STATE(2356), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2630), 1, + sym_type_specifier, + STATE(2742), 1, + sym_splice_specifier, + STATE(2921), 1, + sym__splice_specialization_specifier, + STATE(2933), 1, + sym_template_type, + STATE(3031), 1, + sym_qualified_type_identifier, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3527), 1, + sym_decltype_auto, + STATE(8686), 1, + sym__scope_resolution, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5027), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + STATE(3138), 2, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(10848), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(10842), 13, + aux_sym__type_definition_type_repeat1, + STATE(3447), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4058), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3528), 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(67), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -521433,33 +542406,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(9678), 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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [103593] = 7, + [103154] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10831), 1, - anon_sym_AMP_AMP, - ACTIONS(10833), 1, - anon_sym_and, - ACTIONS(10863), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10865), 1, - anon_sym_or, - ACTIONS(8959), 16, + ACTIONS(7090), 1, + anon_sym_LBRACE, + ACTIONS(7445), 1, + anon_sym_LT, + STATE(2053), 1, + sym_template_argument_list, + ACTIONS(7087), 2, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + ACTIONS(7092), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -521470,16 +542429,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(8961), 33, + ACTIONS(7097), 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_GT_EQ, @@ -521507,21 +542468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [103662] = 7, + [103223] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10806), 1, - anon_sym_LPAREN2, - ACTIONS(10808), 1, - anon_sym_LBRACK, - STATE(1885), 1, - sym_parameter_list, - STATE(5493), 1, - sym__function_declarator_seq, - ACTIONS(9864), 16, + ACTIONS(6601), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6603), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -521536,17 +542489,22 @@ 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(9862), 33, + ACTIONS(6596), 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, @@ -521558,176 +542516,104 @@ 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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [103731] = 13, + [103286] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10874), 1, - anon_sym_virtual, - ACTIONS(10883), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10886), 1, - anon_sym___declspec, - ACTIONS(10892), 1, - anon_sym_explicit, - STATE(4644), 1, - sym_alignas_qualifier, - ACTIONS(10880), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(10889), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10869), 6, + ACTIONS(10477), 1, + anon_sym_EQ, + ACTIONS(10687), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(10717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10763), 1, + anon_sym_QMARK, + ACTIONS(10787), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11225), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11227), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(10867), 7, + ACTIONS(11229), 1, + anon_sym_PIPE, + ACTIONS(11233), 1, anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(10877), 9, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - STATE(5030), 9, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - ACTIONS(10871), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [103812] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10293), 1, - anon_sym_COLON_COLON, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(6618), 1, - sym_type_specifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(8605), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [103925] = 3, + ACTIONS(11239), 1, + anon_sym_GT_EQ, + ACTIONS(11243), 1, + anon_sym_or, + ACTIONS(11245), 1, + anon_sym_and, + ACTIONS(11247), 1, + anon_sym_bitor, + ACTIONS(11249), 1, + anon_sym_bitand, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11221), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11231), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11241), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11223), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11235), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11237), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10479), 16, + 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_DASH_GT_STAR, + [103397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8610), 18, + ACTIONS(8950), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -521746,7 +542632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8612), 35, + ACTIONS(8952), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -521782,18 +542668,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [103986] = 7, + [103458] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10895), 1, + ACTIONS(11279), 1, anon_sym_PIPE_PIPE, - ACTIONS(10897), 1, + ACTIONS(11281), 1, anon_sym_AMP_AMP, - ACTIONS(10899), 1, + ACTIONS(11283), 1, anon_sym_or, - ACTIONS(10901), 1, + ACTIONS(11285), 1, anon_sym_and, - ACTIONS(8959), 18, + ACTIONS(9393), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -521803,22 +542689,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_xor, anon_sym_DOT, - ACTIONS(8961), 31, + ACTIONS(9395), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, 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, @@ -521826,6 +542712,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, @@ -521842,61 +542729,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [104055] = 16, + [103527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10413), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10787), 1, - anon_sym_GT_EQ, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10427), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10771), 2, + ACTIONS(8954), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10789), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10773), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10785), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9282), 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(9284), 25, + anon_sym_DOT, + ACTIONS(8956), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_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, @@ -521911,22 +542777,23 @@ 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_GT_STAR, - [104142] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [103588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10806), 1, - anon_sym_LPAREN2, - ACTIONS(10808), 1, - anon_sym_LBRACK, - STATE(1885), 1, - sym_parameter_list, - STATE(5493), 1, - sym__function_declarator_seq, - ACTIONS(9840), 16, + ACTIONS(11287), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9697), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -521940,18 +542807,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, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9838), 33, + ACTIONS(9699), 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, @@ -521963,90 +542836,79 @@ 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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [104211] = 3, + [103651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8610), 23, - aux_sym_preproc_elif_token1, + ACTIONS(8950), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8612), 30, + ACTIONS(8952), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - anon_sym_COLON_RBRACK, - [104272] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [103712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10806), 1, - anon_sym_LPAREN2, - ACTIONS(10808), 1, - anon_sym_LBRACK, - STATE(1885), 1, - sym_parameter_list, - STATE(5493), 1, - sym__function_declarator_seq, - ACTIONS(9844), 16, + ACTIONS(8992), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -522061,17 +542923,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(9842), 33, + ACTIONS(8994), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_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, @@ -522083,37 +542949,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_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [104341] = 9, + [103773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9290), 17, + ACTIONS(8992), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -522131,15 +542984,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9292), 29, + anon_sym_DOT, + ACTIONS(8994), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_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, @@ -522160,47 +543016,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT_STAR, - [104414] = 5, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [103834] = 29, ACTIONS(3), 1, sym_comment, - STATE(5100), 1, + ACTIONS(3891), 1, + sym_auto, + ACTIONS(3893), 1, + anon_sym_decltype, + ACTIONS(4314), 1, + anon_sym_enum, + ACTIONS(4316), 1, + anon_sym_class, + ACTIONS(4318), 1, + anon_sym_struct, + ACTIONS(4320), 1, + anon_sym_union, + ACTIONS(4360), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11079), 1, + sym_identifier, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(11085), 1, + anon_sym_typename, + STATE(3488), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(10903), 4, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3711), 1, + sym__splice_specialization_specifier, + STATE(3759), 1, + sym_template_type, + STATE(3819), 1, + sym_qualified_type_identifier, + STATE(4023), 1, + sym_type_specifier, + STATE(4119), 1, + sym_decltype_auto, + STATE(4263), 1, + sym_splice_specifier, + STATE(8675), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3967), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4310), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7402), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7404), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(4064), 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(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -522212,66 +543105,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [104479] = 14, + [103947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10413), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10427), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10771), 2, + ACTIONS(8992), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10789), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10773), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9282), 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(9284), 26, + anon_sym_DOT, + ACTIONS(8994), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_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, @@ -522286,76 +543152,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_bitand, - anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [104562] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10176), 1, - anon_sym_EQ, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10413), 1, anon_sym_LT_EQ_GT, - ACTIONS(10775), 1, - anon_sym_AMP_AMP, - ACTIONS(10777), 1, - anon_sym_PIPE, - ACTIONS(10781), 1, - anon_sym_AMP, - ACTIONS(10787), 1, - anon_sym_GT_EQ, - ACTIONS(10791), 1, - anon_sym_and, - ACTIONS(10793), 1, anon_sym_bitor, - ACTIONS(10795), 1, anon_sym_bitand, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - ACTIONS(10835), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10837), 1, - anon_sym_or, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10427), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10771), 2, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [104008] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8954), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10779), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10789), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10773), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10783), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10785), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10178), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8956), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -522363,92 +543203,100 @@ 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_DASH_GT_STAR, - [104669] = 5, + anon_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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [104069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10839), 1, - anon_sym_LT, - STATE(4731), 1, - sym_template_argument_list, - ACTIONS(9225), 19, + ACTIONS(8885), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + 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, - anon_sym_DASH_GT, - ACTIONS(9227), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8887), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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_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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_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, - [104734] = 5, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [104130] = 5, ACTIONS(3), 1, sym_comment, - STATE(4591), 1, + STATE(4735), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(10905), 4, + ACTIONS(11137), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7383), 6, + ACTIONS(7723), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7385), 42, + ACTIONS(7725), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -522491,48 +543339,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [104799] = 6, + [104195] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6748), 1, - anon_sym_COLON_COLON, - ACTIONS(10277), 1, - anon_sym_LT, - STATE(5490), 1, - sym_template_argument_list, - ACTIONS(6751), 12, - anon_sym_DOT_DOT_DOT, + STATE(4735), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11137), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7727), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7729), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6746), 38, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -522546,91 +543392,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_template, - anon_sym_operator, - [104866] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2608), 1, - anon_sym_LBRACE, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - STATE(5819), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8951), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8953), 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_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, anon_sym_GT2, - [104933] = 5, + anon_sym_try, + anon_sym_requires, + [104260] = 5, ACTIONS(3), 1, sym_comment, - STATE(4591), 1, + STATE(5036), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(10905), 4, + ACTIONS(11289), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7395), 6, + ACTIONS(7555), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7397), 42, + ACTIONS(7557), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -522673,10 +543459,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [104998] = 3, + [104325] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8087), 20, + ACTIONS(10568), 1, + anon_sym_LPAREN2, + ACTIONS(10570), 1, + anon_sym_LBRACK, + STATE(1974), 1, + sym_parameter_list, + STATE(4999), 1, + sym__function_declarator_seq, + ACTIONS(10206), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -522686,26 +543480,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(8089), 33, + anon_sym_DASH_GT, + ACTIONS(10204), 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_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -522713,6 +543506,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, @@ -522726,107 +543520,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [105059] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2078), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3173), 1, - anon_sym_enum, - ACTIONS(3175), 1, - anon_sym_class, - ACTIONS(3177), 1, - anon_sym_struct, - ACTIONS(3179), 1, - anon_sym_union, - ACTIONS(3185), 1, - sym_auto, - ACTIONS(3187), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10684), 1, - sym_identifier, - ACTIONS(10686), 1, - anon_sym_COLON_COLON, - ACTIONS(10688), 1, - sym_primitive_type, - ACTIONS(10690), 1, - anon_sym_typename, - STATE(1963), 1, - sym_template_type, - STATE(1965), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1994), 1, - sym_qualified_type_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, - sym__splice_specialization_specifier, - STATE(2070), 1, - sym_decltype_auto, - STATE(2135), 1, - sym_type_specifier, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(8593), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2063), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3169), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2089), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [105172] = 7, + anon_sym_DASH_GT_STAR, + [104394] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10806), 1, + ACTIONS(10568), 1, anon_sym_LPAREN2, - ACTIONS(10808), 1, + ACTIONS(10570), 1, anon_sym_LBRACK, - STATE(1885), 1, + STATE(1974), 1, sym_parameter_list, - STATE(5493), 1, + STATE(4999), 1, sym__function_declarator_seq, - ACTIONS(9848), 16, + ACTIONS(10186), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -522841,9 +543547,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(9846), 33, + ACTIONS(10184), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -522863,66 +543572,91 @@ 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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [105241] = 10, + [104463] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, + STATE(5037), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11291), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7783), 6, + anon_sym_AMP, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10427), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9232), 17, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7785), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(9234), 27, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [104528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10564), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -522934,26 +543668,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_GT_STAR, - [105316] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10209), 1, - anon_sym_LPAREN2, - ACTIONS(10211), 1, - anon_sym_LBRACK, - STATE(1869), 1, - sym_parameter_list, - STATE(4744), 1, - sym__function_declarator_seq, - ACTIONS(9864), 19, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10566), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -522967,55 +543687,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9862), 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_or, + anon_sym_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, - [105385] = 7, + anon_sym_DOT, + sym_literal_suffix, + [104589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10209), 1, - anon_sym_LPAREN2, - ACTIONS(10211), 1, - anon_sym_LBRACK, - STATE(1869), 1, - sym_parameter_list, - STATE(4744), 1, - sym__function_declarator_seq, - ACTIONS(9844), 19, + ACTIONS(8885), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -523034,16 +543723,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9842), 30, + ACTIONS(8887), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_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, @@ -523065,98 +543755,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [105454] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9344), 1, - anon_sym_EQ, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10413), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10775), 1, - anon_sym_AMP_AMP, - ACTIONS(10777), 1, - anon_sym_PIPE, - ACTIONS(10781), 1, - anon_sym_AMP, - ACTIONS(10787), 1, - anon_sym_GT_EQ, - ACTIONS(10791), 1, - anon_sym_and, - ACTIONS(10793), 1, - anon_sym_bitor, - ACTIONS(10795), 1, - anon_sym_bitand, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - ACTIONS(10835), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10837), 1, - anon_sym_or, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10427), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10771), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10779), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10789), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10773), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10783), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10785), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9342), 18, - 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_DASH_GT_STAR, - [105561] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [104650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(10907), 1, - anon_sym_LT, - STATE(5379), 1, - sym_template_argument_list, - ACTIONS(9177), 18, + ACTIONS(8909), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -523167,6 +543773,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, @@ -523174,11 +543781,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9179), 32, + ACTIONS(8911), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -523186,6 +543791,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -523207,47 +543813,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [105628] = 5, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [104711] = 6, ACTIONS(3), 1, sym_comment, - STATE(5109), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10910), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7408), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7410), 42, + ACTIONS(7087), 1, + anon_sym_COLON_COLON, + ACTIONS(10647), 1, + anon_sym_LT, + STATE(5613), 1, + sym_template_argument_list, + ACTIONS(7090), 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, + anon_sym_LBRACK_COLON, + ACTIONS(7085), 38, + anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, + anon_sym___attribute, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym_LBRACE, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, - anon_sym_EQ, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -523261,79 +543872,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [105693] = 7, + anon_sym_template, + anon_sym_operator, + [104778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10912), 1, - sym_identifier, - STATE(5078), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6539), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6541), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8127), 18, + ACTIONS(8992), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + 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(8125), 21, + ACTIONS(8994), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - 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, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [105762] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [104839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9078), 20, + ACTIONS(8992), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -523354,7 +543960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9080), 33, + ACTIONS(8994), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -523388,150 +543994,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [105823] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10089), 1, - anon_sym_EQ, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10413), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10775), 1, - anon_sym_AMP_AMP, - ACTIONS(10777), 1, - anon_sym_PIPE, - ACTIONS(10781), 1, - anon_sym_AMP, - ACTIONS(10787), 1, - anon_sym_GT_EQ, - ACTIONS(10791), 1, - anon_sym_and, - ACTIONS(10793), 1, - anon_sym_bitor, - ACTIONS(10795), 1, - anon_sym_bitand, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - ACTIONS(10835), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10837), 1, - anon_sym_or, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10427), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10771), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10779), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10789), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10773), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10783), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10785), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10091), 18, - 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_DASH_GT_STAR, - [105930] = 29, + [104900] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, - sym_auto, - ACTIONS(3363), 1, - anon_sym_decltype, - ACTIONS(3397), 1, + ACTIONS(5132), 1, + sym_identifier, + ACTIONS(5140), 1, + anon_sym_COLON_COLON, + ACTIONS(5144), 1, + sym_primitive_type, + ACTIONS(5146), 1, anon_sym_enum, - ACTIONS(3399), 1, + ACTIONS(5148), 1, anon_sym_class, - ACTIONS(3401), 1, + ACTIONS(5150), 1, anon_sym_struct, - ACTIONS(3403), 1, + ACTIONS(5152), 1, anon_sym_union, - ACTIONS(3443), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10717), 1, - sym_identifier, - ACTIONS(10719), 1, - anon_sym_COLON_COLON, - ACTIONS(10721), 1, - sym_primitive_type, - ACTIONS(10723), 1, + ACTIONS(5154), 1, anon_sym_typename, - STATE(3403), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3482), 1, + ACTIONS(5156), 1, + sym_auto, + ACTIONS(5158), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3627), 1, + STATE(4387), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4802), 1, + sym_splice_specifier, + STATE(5365), 1, sym_template_type, - STATE(3640), 1, + STATE(5472), 1, sym__splice_specialization_specifier, - STATE(3658), 1, + STATE(5574), 1, sym_qualified_type_identifier, - STATE(3919), 1, - sym_type_specifier, - STATE(4041), 1, + STATE(6031), 1, sym_decltype_auto, - STATE(4072), 1, - sym_splice_specifier, - STATE(8571), 1, + STATE(6452), 1, + sym_type_specifier, + STATE(8757), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3090), 2, + STATE(3138), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(3887), 2, + STATE(5973), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3393), 4, + ACTIONS(5142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4042), 7, + STATE(6050), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -523553,10 +544078,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [106043] = 3, + [105013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 18, + ACTIONS(8921), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -523575,7 +544100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8631), 35, + ACTIONS(8923), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -523611,149 +544136,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [106104] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10184), 1, - anon_sym_EQ, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10413), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10775), 1, - anon_sym_AMP_AMP, - ACTIONS(10777), 1, - anon_sym_PIPE, - ACTIONS(10781), 1, - anon_sym_AMP, - ACTIONS(10787), 1, - anon_sym_GT_EQ, - ACTIONS(10791), 1, - anon_sym_and, - ACTIONS(10793), 1, - anon_sym_bitor, - ACTIONS(10795), 1, - anon_sym_bitand, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - ACTIONS(10835), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10837), 1, - anon_sym_or, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10427), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10771), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10779), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10789), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10773), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10783), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10785), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10186), 18, - 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_DASH_GT_STAR, - [106211] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8633), 23, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8635), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [106272] = 3, + [105074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9082), 20, + ACTIONS(8946), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -523763,18 +544149,16 @@ 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(9084), 33, + ACTIONS(8948), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -523782,7 +544166,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -523790,6 +544176,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, @@ -523806,78 +544193,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [106333] = 5, + [105135] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - anon_sym_EQ, - ACTIONS(5278), 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(5260), 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(5253), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3052), 1, + anon_sym_LBRACE, + ACTIONS(10900), 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, - 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, - anon_sym_COLON_RBRACK, - [106398] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(10914), 1, - anon_sym_LT, - STATE(5379), 1, - sym_template_argument_list, - ACTIONS(9135), 18, + STATE(5848), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9491), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -523888,6 +544215,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, @@ -523895,18 +544223,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9137), 32, + ACTIONS(9493), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -523928,11 +544254,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [106465] = 3, + anon_sym_DASH_GT, + [105202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 18, + ACTIONS(8996), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -523951,7 +544277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8631), 35, + ACTIONS(8998), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -523987,10 +544313,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [106526] = 3, + [105263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 18, + ACTIONS(9011), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -524009,7 +544335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8631), 35, + ACTIONS(9013), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -524045,10 +544371,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [106587] = 3, + [105324] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8610), 20, + ACTIONS(11145), 1, + anon_sym_AMP_AMP, + ACTIONS(11149), 1, + anon_sym_and, + ACTIONS(9322), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -524066,15 +544396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, - anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8612), 33, + ACTIONS(9324), 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_LBRACK, @@ -524103,74 +544431,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [106648] = 3, + [105389] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(8606), 23, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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(2248), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_class, + ACTIONS(2252), 1, + anon_sym_struct, + ACTIONS(2254), 1, + anon_sym_union, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10649), 1, sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8608), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [106709] = 5, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(7272), 1, + sym_type_specifier, + STATE(8711), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [105502] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3008), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4427), 1, + anon_sym_enum, + ACTIONS(4429), 1, + anon_sym_class, + ACTIONS(4431), 1, + anon_sym_struct, + ACTIONS(4433), 1, + anon_sym_union, + ACTIONS(4439), 1, + sym_auto, + ACTIONS(4441), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11087), 1, + sym_identifier, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(11091), 1, + sym_primitive_type, + ACTIONS(11093), 1, + anon_sym_typename, + STATE(2283), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2526), 1, + sym_type_specifier, + STATE(2638), 1, + sym_splice_specifier, + STATE(2696), 1, + sym__splice_specialization_specifier, + STATE(2701), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(3099), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(8687), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2984), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4423), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3123), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [105615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10917), 2, - anon_sym_final, - anon_sym_override, - STATE(5070), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(8755), 16, + ACTIONS(9000), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -524185,12 +544617,13 @@ 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(8757), 33, + ACTIONS(9002), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -524198,6 +544631,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -524209,28 +544643,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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [106774] = 6, + [105676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6748), 1, - anon_sym_COLON_COLON, - ACTIONS(7037), 1, - anon_sym_LT, - STATE(1956), 1, - sym_template_argument_list, - ACTIONS(6753), 18, + ACTIONS(8893), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -524241,6 +544671,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, @@ -524248,11 +544679,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6758), 32, + ACTIONS(8895), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -524260,6 +544689,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -524281,11 +544711,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [106841] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [105737] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8595), 20, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9673), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -524295,26 +544744,23 @@ 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(8597), 33, + ACTIONS(9675), 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_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -524322,6 +544768,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, @@ -524332,76 +544779,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [105812] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(10803), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [106902] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8622), 23, - aux_sym_preproc_elif_token1, + ACTIONS(9677), 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___attribute__, - anon_sym___attribute, - anon_sym_COLON, + 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_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8624), 30, + ACTIONS(9679), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [106963] = 3, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [105887] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9101), 20, + ACTIONS(2968), 1, + anon_sym_LBRACE, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + STATE(5895), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9491), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -524422,10 +544876,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9103), 33, + ACTIONS(9493), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -524452,14 +544905,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [107024] = 3, + [105954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8999), 20, + ACTIONS(8901), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -524469,18 +544919,16 @@ 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(9001), 33, + ACTIONS(8903), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -524488,7 +544936,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -524496,6 +544946,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, @@ -524512,70 +544963,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [107085] = 3, + [106015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 23, - aux_sym_preproc_elif_token1, + ACTIONS(8885), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(2793), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [107146] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10247), 26, + ACTIONS(8887), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -524583,8 +544996,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -524593,16 +545004,28 @@ 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_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10249), 27, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [106076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8909), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -524612,149 +545035,114 @@ 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___attribute__, - anon_sym___attribute, 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, - [107207] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10920), 1, - sym_identifier, - STATE(4979), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6539), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6541), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8118), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + 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(8116), 21, + ACTIONS(8911), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - 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, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [107276] = 29, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [106137] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, - sym_identifier, - ACTIONS(4780), 1, - anon_sym_COLON_COLON, - ACTIONS(4784), 1, - sym_primitive_type, - ACTIONS(4786), 1, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3704), 1, anon_sym_enum, - ACTIONS(4788), 1, + ACTIONS(3706), 1, anon_sym_class, - ACTIONS(4790), 1, + ACTIONS(3708), 1, anon_sym_struct, - ACTIONS(4792), 1, + ACTIONS(3710), 1, anon_sym_union, - ACTIONS(4794), 1, - anon_sym_typename, - ACTIONS(4796), 1, - sym_auto, - ACTIONS(4798), 1, - anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(4270), 1, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(11103), 1, + sym_identifier, + ACTIONS(11105), 1, + anon_sym_COLON_COLON, + ACTIONS(11107), 1, + anon_sym_typename, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4691), 1, - sym_splice_specifier, - STATE(5263), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(5264), 1, - sym_template_type, - STATE(5495), 1, - sym_qualified_type_identifier, - STATE(6020), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(6336), 1, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3536), 1, sym_type_specifier, - STATE(8584), 1, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(3800), 1, + sym_splice_specifier, + STATE(8738), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5891), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(4782), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5975), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -524776,10 +545164,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [107389] = 3, + [106250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8614), 23, + ACTIONS(3155), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -524803,7 +545191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8616), 30, + ACTIONS(3153), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -524834,10 +545222,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [107450] = 3, + [106311] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10986), 1, + sym_identifier, + ACTIONS(10988), 1, + anon_sym_COLON_COLON, + ACTIONS(10992), 1, + sym_primitive_type, + ACTIONS(10994), 1, + anon_sym_enum, + ACTIONS(10996), 1, + anon_sym_class, + ACTIONS(10998), 1, + anon_sym_struct, + ACTIONS(11000), 1, + anon_sym_union, + ACTIONS(11002), 1, + anon_sym_typename, + ACTIONS(11004), 1, + sym_auto, + ACTIONS(11006), 1, + anon_sym_decltype, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(6426), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6581), 1, + sym_splice_specifier, + STATE(6894), 1, + sym_type_specifier, + STATE(7121), 1, + sym__splice_specialization_specifier, + STATE(7225), 1, + sym_template_type, + STATE(7440), 1, + sym_qualified_type_identifier, + STATE(7625), 1, + sym_decltype_auto, + STATE(8700), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7592), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10990), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(7655), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [106424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8599), 18, + ACTIONS(8942), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -524856,7 +545328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8601), 35, + ACTIONS(8944), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -524892,232 +545364,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [107511] = 3, + [106485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9109), 20, + ACTIONS(8942), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, + 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(9111), 33, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8944), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [107572] = 3, + anon_sym_COLON_RBRACK, + [106546] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(8402), 5, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(8400), 48, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + ACTIONS(3704), 1, anon_sym_enum, + ACTIONS(3706), 1, anon_sym_class, + ACTIONS(3708), 1, anon_sym_struct, + ACTIONS(3710), 1, anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - [107633] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8618), 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(8620), 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_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, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [107694] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6457), 1, - anon_sym___attribute, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10922), 1, - anon_sym_LPAREN2, - ACTIONS(10924), 1, - anon_sym_STAR, - ACTIONS(10926), 1, - anon_sym_AMP_AMP, - ACTIONS(10928), 1, - anon_sym_AMP, - ACTIONS(10930), 1, - sym_ms_restrict_modifier, - ACTIONS(10936), 1, - anon_sym_LBRACK, - STATE(4238), 1, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(11103), 1, + sym_identifier, + ACTIONS(11105), 1, + anon_sym_COLON_COLON, + ACTIONS(11107), 1, + anon_sym_typename, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3084), 1, + sym_type_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, sym_alignas_qualifier, - STATE(4243), 1, - sym_parameter_list, - STATE(6312), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8183), 1, - sym__function_declarator_seq, - STATE(8307), 1, - sym__abstract_declarator, - ACTIONS(10014), 2, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(3800), 1, + sym_splice_specifier, + STATE(8738), 1, + sym__scope_resolution, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(10932), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(10934), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5141), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6090), 2, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3138), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8180), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(10001), 12, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -525129,97 +545506,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6459), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - 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, - [107793] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10427), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9282), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(9284), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [107868] = 7, + [106659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(6208), 1, - anon_sym_LBRACE, - ACTIONS(8569), 1, - anon_sym_LT, - STATE(5220), 1, - sym_template_argument_list, - ACTIONS(6210), 19, + ACTIONS(8921), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -525231,6 +545521,7 @@ 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, @@ -525239,7 +545530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6203), 30, + ACTIONS(8923), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -525269,18 +545560,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [107937] = 6, + anon_sym_requires, + [106720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2608), 1, - anon_sym_LBRACE, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - STATE(5745), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9105), 20, + ACTIONS(8946), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -525301,9 +545588,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9107), 29, + ACTIONS(8948), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -525330,70 +545618,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [108004] = 29, + anon_sym_requires, + [106781] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3291), 1, + ACTIONS(5132), 1, + sym_identifier, + ACTIONS(5140), 1, + anon_sym_COLON_COLON, + ACTIONS(5144), 1, + sym_primitive_type, + ACTIONS(5146), 1, anon_sym_enum, - ACTIONS(3293), 1, + ACTIONS(5148), 1, anon_sym_class, - ACTIONS(3295), 1, + ACTIONS(5150), 1, anon_sym_struct, - ACTIONS(3297), 1, + ACTIONS(5152), 1, anon_sym_union, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10651), 1, - anon_sym_COLON_COLON, - ACTIONS(10653), 1, + ACTIONS(5154), 1, anon_sym_typename, - STATE(2634), 1, + ACTIONS(5156), 1, + sym_auto, + ACTIONS(5158), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(4387), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(4802), 1, + sym_splice_specifier, + STATE(5365), 1, + sym_template_type, + STATE(5472), 1, sym__splice_specialization_specifier, - STATE(3100), 1, + STATE(5574), 1, + sym_qualified_type_identifier, + STATE(6031), 1, sym_decltype_auto, - STATE(3458), 1, + STATE(6285), 1, sym_type_specifier, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(3688), 1, - sym_splice_specifier, - STATE(8621), 1, + STATE(8757), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3090), 2, + STATE(3138), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(5973), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(5142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(6050), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -525415,69 +545706,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [108117] = 26, + [106894] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10192), 1, + ACTIONS(10485), 1, anon_sym_EQ, - ACTIONS(10347), 1, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(10759), 1, anon_sym_LBRACK, - ACTIONS(10413), 1, + ACTIONS(10787), 1, anon_sym_LT_EQ_GT, - ACTIONS(10775), 1, + ACTIONS(11225), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11227), 1, anon_sym_AMP_AMP, - ACTIONS(10777), 1, + ACTIONS(11229), 1, anon_sym_PIPE, - ACTIONS(10781), 1, + ACTIONS(11233), 1, anon_sym_AMP, - ACTIONS(10787), 1, + ACTIONS(11239), 1, anon_sym_GT_EQ, - ACTIONS(10791), 1, + ACTIONS(11243), 1, + anon_sym_or, + ACTIONS(11245), 1, anon_sym_and, - ACTIONS(10793), 1, + ACTIONS(11247), 1, anon_sym_bitor, - ACTIONS(10795), 1, + ACTIONS(11249), 1, anon_sym_bitand, - ACTIONS(10797), 1, + ACTIONS(11251), 1, anon_sym_DOT_STAR, - ACTIONS(10835), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10837), 1, - anon_sym_or, - STATE(5506), 1, + STATE(5663), 1, sym_argument_list, - STATE(5507), 1, + STATE(5664), 1, sym_subscript_argument_list, - ACTIONS(10427), 2, + ACTIONS(10801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, + ACTIONS(10803), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10771), 2, + ACTIONS(11221), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10779), 2, + ACTIONS(11231), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(10789), 2, + ACTIONS(11241), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10773), 3, + ACTIONS(11223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10783), 3, + ACTIONS(11235), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10785), 3, + ACTIONS(11237), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10194), 18, + ACTIONS(10487), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -525496,77 +545787,514 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_DASH_GT_STAR, - [108224] = 12, + [107001] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3092), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3837), 1, + anon_sym_enum, + ACTIONS(3839), 1, + anon_sym_class, + ACTIONS(3841), 1, + anon_sym_struct, + ACTIONS(3843), 1, + anon_sym_union, + ACTIONS(3849), 1, + sym_auto, + ACTIONS(3851), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11095), 1, + sym_identifier, + ACTIONS(11097), 1, + anon_sym_COLON_COLON, + ACTIONS(11099), 1, + sym_primitive_type, + ACTIONS(11101), 1, + anon_sym_typename, + STATE(2263), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2527), 1, + sym_type_specifier, + STATE(2605), 1, + sym_splice_specifier, + STATE(2659), 1, + sym__splice_specialization_specifier, + STATE(2712), 1, + sym_template_type, + STATE(2843), 1, + sym_qualified_type_identifier, + STATE(3166), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(8702), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3053), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3833), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3167), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107114] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2300), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3732), 1, + anon_sym_enum, + ACTIONS(3734), 1, + anon_sym_class, + ACTIONS(3736), 1, + anon_sym_struct, + ACTIONS(3738), 1, + anon_sym_union, + ACTIONS(3742), 1, + sym_auto, + ACTIONS(3744), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11008), 1, + sym_identifier, + ACTIONS(11010), 1, + anon_sym_COLON_COLON, + ACTIONS(11012), 1, + sym_primitive_type, + ACTIONS(11014), 1, + anon_sym_typename, + STATE(2180), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2296), 1, + sym_type_specifier, + STATE(2547), 1, + sym_splice_specifier, + STATE(2601), 1, + sym__splice_specialization_specifier, + STATE(2622), 1, + sym_template_type, + STATE(2698), 1, + sym_qualified_type_identifier, + STATE(2997), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(8682), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2942), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3728), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3067), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107227] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3807), 1, + anon_sym_enum, + ACTIONS(3809), 1, + anon_sym_class, + ACTIONS(3811), 1, + anon_sym_struct, + ACTIONS(3813), 1, + anon_sym_union, + ACTIONS(3819), 1, + sym_auto, + ACTIONS(3821), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11036), 1, + sym_identifier, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(11040), 1, + sym_primitive_type, + ACTIONS(11042), 1, + anon_sym_typename, + STATE(2073), 1, + sym_template_type, + STATE(2076), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2087), 1, + sym_qualified_type_identifier, + STATE(2104), 1, + sym_splice_specifier, + STATE(2125), 1, + sym_type_specifier, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2221), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(8763), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2169), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3803), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2222), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107340] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3204), 1, + anon_sym_enum, + ACTIONS(3206), 1, + anon_sym_class, + ACTIONS(3208), 1, + anon_sym_struct, + ACTIONS(3210), 1, + anon_sym_union, + ACTIONS(3236), 1, + sym_auto, + ACTIONS(3238), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11046), 1, + sym_identifier, + ACTIONS(11048), 1, + anon_sym_COLON_COLON, + ACTIONS(11050), 1, + sym_primitive_type, + ACTIONS(11052), 1, + anon_sym_typename, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(4043), 1, + sym_template_type, + STATE(4204), 1, + sym_qualified_type_identifier, + STATE(4305), 1, + sym__splice_specialization_specifier, + STATE(4426), 1, + sym_decltype_auto, + STATE(6642), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6946), 1, + sym_type_specifier, + STATE(7326), 1, + sym_splice_specifier, + STATE(8745), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4373), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3200), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4430), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107453] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3204), 1, + anon_sym_enum, + ACTIONS(3206), 1, + anon_sym_class, + ACTIONS(3208), 1, + anon_sym_struct, + ACTIONS(3210), 1, + anon_sym_union, + ACTIONS(3236), 1, + sym_auto, + ACTIONS(3238), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11046), 1, + sym_identifier, + ACTIONS(11048), 1, + anon_sym_COLON_COLON, + ACTIONS(11050), 1, + sym_primitive_type, + ACTIONS(11052), 1, + anon_sym_typename, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(4043), 1, + sym_template_type, + STATE(4204), 1, + sym_qualified_type_identifier, + STATE(4305), 1, + sym__splice_specialization_specifier, + STATE(4426), 1, + sym_decltype_auto, + STATE(6642), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6825), 1, + sym_type_specifier, + STATE(7326), 1, + sym_splice_specifier, + STATE(8745), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4373), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3200), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4430), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107566] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10427), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10771), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10773), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9282), 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(9284), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [108303] = 3, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3704), 1, + anon_sym_enum, + ACTIONS(3706), 1, + anon_sym_class, + ACTIONS(3708), 1, + anon_sym_struct, + ACTIONS(3710), 1, + anon_sym_union, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(11103), 1, + sym_identifier, + ACTIONS(11105), 1, + anon_sym_COLON_COLON, + ACTIONS(11107), 1, + anon_sym_typename, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(3775), 1, + sym_type_specifier, + STATE(3800), 1, + sym_splice_specifier, + STATE(8738), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8599), 20, + ACTIONS(7789), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -525587,7 +546315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8601), 33, + ACTIONS(7791), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -525621,10 +546349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [108364] = 3, + [107740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7546), 18, + ACTIONS(3163), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -525634,16 +546362,18 @@ 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(7544), 35, + ACTIONS(3161), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -525651,9 +546381,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -525661,7 +546389,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, @@ -525678,101 +546405,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [108425] = 28, + [107801] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(9436), 1, - anon_sym_EQ, - ACTIONS(10341), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10389), 1, - anon_sym_QMARK, - ACTIONS(10413), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10775), 1, - anon_sym_AMP_AMP, - ACTIONS(10777), 1, - anon_sym_PIPE, - ACTIONS(10781), 1, - anon_sym_AMP, - ACTIONS(10787), 1, - anon_sym_GT_EQ, - ACTIONS(10791), 1, - anon_sym_and, - ACTIONS(10793), 1, - anon_sym_bitor, - ACTIONS(10795), 1, - anon_sym_bitand, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - ACTIONS(10835), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10837), 1, - anon_sym_or, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10427), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10771), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10779), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10789), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10773), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10783), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10785), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9438), 16, - 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_DASH_GT_STAR, - [108536] = 6, + ACTIONS(5132), 1, + sym_identifier, + ACTIONS(5140), 1, + anon_sym_COLON_COLON, + ACTIONS(5144), 1, + sym_primitive_type, + ACTIONS(5146), 1, + anon_sym_enum, + ACTIONS(5148), 1, + anon_sym_class, + ACTIONS(5150), 1, + anon_sym_struct, + ACTIONS(5152), 1, + anon_sym_union, + ACTIONS(5154), 1, + anon_sym_typename, + ACTIONS(5156), 1, + sym_auto, + ACTIONS(5158), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(4387), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4802), 1, + sym_splice_specifier, + STATE(5365), 1, + sym_template_type, + STATE(5472), 1, + sym__splice_specialization_specifier, + STATE(5574), 1, + sym_qualified_type_identifier, + STATE(6031), 1, + sym_decltype_auto, + STATE(6235), 1, + sym_type_specifier, + STATE(8757), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5973), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(5142), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6050), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107914] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3236), 1, + sym_auto, + ACTIONS(3238), 1, + anon_sym_decltype, + ACTIONS(3256), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4397), 1, + anon_sym_enum, + ACTIONS(4399), 1, + anon_sym_class, + ACTIONS(4401), 1, + anon_sym_struct, + ACTIONS(4403), 1, + anon_sym_union, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11050), 1, + sym_primitive_type, + ACTIONS(11057), 1, + sym_identifier, + ACTIONS(11059), 1, + anon_sym_COLON_COLON, + ACTIONS(11061), 1, + anon_sym_typename, + STATE(3490), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3715), 1, + sym_type_specifier, + STATE(4043), 1, + sym_template_type, + STATE(4204), 1, + sym_qualified_type_identifier, + STATE(4272), 1, + sym_splice_specifier, + STATE(4305), 1, + sym__splice_specialization_specifier, + STATE(4426), 1, + sym_decltype_auto, + STATE(8676), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4373), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4395), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4430), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108027] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, + ACTIONS(2968), 1, anon_sym_LBRACE, - ACTIONS(10542), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - STATE(5813), 2, + STATE(5746), 2, sym_argument_list, sym_initializer_list, - ACTIONS(8951), 18, + ACTIONS(9431), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -525782,25 +546595,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(8953), 31, + ACTIONS(9433), 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -525808,7 +546621,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, @@ -525823,69 +546635,322 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [108603] = 29, + anon_sym_GT2, + [108094] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10986), 1, + sym_identifier, + ACTIONS(10988), 1, + anon_sym_COLON_COLON, + ACTIONS(10992), 1, + sym_primitive_type, + ACTIONS(10994), 1, + anon_sym_enum, + ACTIONS(10996), 1, + anon_sym_class, + ACTIONS(10998), 1, + anon_sym_struct, + ACTIONS(11000), 1, + anon_sym_union, + ACTIONS(11002), 1, + anon_sym_typename, + ACTIONS(11004), 1, + sym_auto, + ACTIONS(11006), 1, + anon_sym_decltype, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(6426), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6507), 1, + sym_type_specifier, + STATE(6581), 1, + sym_splice_specifier, + STATE(7121), 1, + sym__splice_specialization_specifier, + STATE(7225), 1, + sym_template_type, + STATE(7440), 1, + sym_qualified_type_identifier, + STATE(7625), 1, + sym_decltype_auto, + STATE(8700), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7592), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10990), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(7655), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108207] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2648), 1, + ACTIONS(3104), 1, anon_sym_LBRACK_COLON, - ACTIONS(3243), 1, + ACTIONS(4062), 1, anon_sym_enum, - ACTIONS(3245), 1, + ACTIONS(4064), 1, anon_sym_class, - ACTIONS(3247), 1, + ACTIONS(4066), 1, anon_sym_struct, - ACTIONS(3249), 1, + ACTIONS(4068), 1, anon_sym_union, - ACTIONS(3255), 1, + ACTIONS(4072), 1, sym_auto, - ACTIONS(3257), 1, + ACTIONS(4074), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10725), 1, + ACTIONS(11071), 1, sym_identifier, - ACTIONS(10727), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(10729), 1, + ACTIONS(11075), 1, sym_primitive_type, - ACTIONS(10731), 1, + ACTIONS(11077), 1, anon_sym_typename, - STATE(2169), 1, + STATE(2356), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2388), 1, + STATE(2404), 1, sym_type_specifier, - STATE(2519), 1, + STATE(2742), 1, sym_splice_specifier, - STATE(2567), 1, + STATE(2921), 1, sym__splice_specialization_specifier, - STATE(2591), 1, + STATE(2933), 1, sym_template_type, - STATE(2699), 1, + STATE(3031), 1, sym_qualified_type_identifier, - STATE(3138), 1, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3527), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(8686), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3447), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4058), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3528), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108320] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3891), 1, + sym_auto, + ACTIONS(3893), 1, + anon_sym_decltype, + ACTIONS(4314), 1, + anon_sym_enum, + ACTIONS(4316), 1, + anon_sym_class, + ACTIONS(4318), 1, + anon_sym_struct, + ACTIONS(4320), 1, + anon_sym_union, + ACTIONS(4360), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11079), 1, + sym_identifier, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(11085), 1, + anon_sym_typename, + STATE(3488), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(8604), 1, + STATE(3711), 1, + sym__splice_specialization_specifier, + STATE(3721), 1, + sym_type_specifier, + STATE(3759), 1, + sym_template_type, + STATE(3819), 1, + sym_qualified_type_identifier, + STATE(4119), 1, + sym_decltype_auto, + STATE(4263), 1, + sym_splice_specifier, + STATE(8675), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2973), 2, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3967), 2, sym_decltype, sym_splice_type_specifier, - STATE(3090), 2, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4310), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4064), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108433] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3871), 1, + anon_sym_enum, + ACTIONS(3873), 1, + anon_sym_class, + ACTIONS(3875), 1, + anon_sym_struct, + ACTIONS(3877), 1, + anon_sym_union, + ACTIONS(3891), 1, + sym_auto, + ACTIONS(3893), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(11109), 1, + sym_identifier, + ACTIONS(11111), 1, + anon_sym_COLON_COLON, + ACTIONS(11113), 1, + anon_sym_typename, + STATE(2941), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3512), 1, + sym_type_specifier, + STATE(3711), 1, + sym__splice_specialization_specifier, + STATE(3719), 1, + sym_splice_specifier, + STATE(3759), 1, + sym_template_type, + STATE(3819), 1, + sym_qualified_type_identifier, + STATE(4119), 1, + sym_decltype_auto, + STATE(8707), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(3967), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3239), 4, + ACTIONS(3867), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3140), 7, + STATE(4064), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -525907,220 +546972,583 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [108716] = 3, + [108546] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(8618), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8620), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [108777] = 3, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3807), 1, + anon_sym_enum, + ACTIONS(3809), 1, + anon_sym_class, + ACTIONS(3811), 1, + anon_sym_struct, + ACTIONS(3813), 1, + anon_sym_union, + ACTIONS(3819), 1, + sym_auto, + ACTIONS(3821), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11036), 1, + sym_identifier, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(11040), 1, + sym_primitive_type, + ACTIONS(11042), 1, + anon_sym_typename, + STATE(2073), 1, + sym_template_type, + STATE(2076), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2087), 1, + sym_qualified_type_identifier, + STATE(2104), 1, + sym_splice_specifier, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2221), 1, + sym_decltype_auto, + STATE(2380), 1, + sym_type_specifier, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(8763), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2169), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3803), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2222), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108659] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(9007), 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(9009), 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_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, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [108838] = 3, + ACTIONS(3008), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4427), 1, + anon_sym_enum, + ACTIONS(4429), 1, + anon_sym_class, + ACTIONS(4431), 1, + anon_sym_struct, + ACTIONS(4433), 1, + anon_sym_union, + ACTIONS(4439), 1, + sym_auto, + ACTIONS(4441), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11087), 1, + sym_identifier, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(11091), 1, + sym_primitive_type, + ACTIONS(11093), 1, + anon_sym_typename, + STATE(2283), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2328), 1, + sym_type_specifier, + STATE(2638), 1, + sym_splice_specifier, + STATE(2696), 1, + sym__splice_specialization_specifier, + STATE(2701), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(3099), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(8687), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2984), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4423), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3123), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108772] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(8935), 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(8937), 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_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, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [108899] = 5, + ACTIONS(3092), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3837), 1, + anon_sym_enum, + ACTIONS(3839), 1, + anon_sym_class, + ACTIONS(3841), 1, + anon_sym_struct, + ACTIONS(3843), 1, + anon_sym_union, + ACTIONS(3849), 1, + sym_auto, + ACTIONS(3851), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11095), 1, + sym_identifier, + ACTIONS(11097), 1, + anon_sym_COLON_COLON, + ACTIONS(11099), 1, + sym_primitive_type, + ACTIONS(11101), 1, + anon_sym_typename, + STATE(2263), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2335), 1, + sym_type_specifier, + STATE(2605), 1, + sym_splice_specifier, + STATE(2659), 1, + sym__splice_specialization_specifier, + STATE(2712), 1, + sym_template_type, + STATE(2843), 1, + sym_qualified_type_identifier, + STATE(3166), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(8702), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3053), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3833), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3167), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108885] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3809), 1, + anon_sym_class, + ACTIONS(3811), 1, + anon_sym_struct, + ACTIONS(3813), 1, + anon_sym_union, + ACTIONS(3819), 1, + sym_auto, + ACTIONS(3821), 1, + anon_sym_decltype, + ACTIONS(3978), 1, + anon_sym_enum, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(11099), 1, + sym_primitive_type, + ACTIONS(11115), 1, + sym_identifier, + ACTIONS(11117), 1, + anon_sym_typename, + STATE(2073), 1, + sym_template_type, + STATE(2087), 1, + sym_qualified_type_identifier, + STATE(2093), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2104), 1, + sym_splice_specifier, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2221), 1, + sym_decltype_auto, + STATE(2243), 1, + sym_type_specifier, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(8763), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2169), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3974), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2222), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108998] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3704), 1, + anon_sym_enum, + ACTIONS(3706), 1, + anon_sym_class, + ACTIONS(3708), 1, + anon_sym_struct, + ACTIONS(3710), 1, + anon_sym_union, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(11103), 1, + sym_identifier, + ACTIONS(11105), 1, + anon_sym_COLON_COLON, + ACTIONS(11107), 1, + anon_sym_typename, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3521), 1, + sym_type_specifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(3800), 1, + sym_splice_specifier, + STATE(8738), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [109111] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3871), 1, + anon_sym_enum, + ACTIONS(3873), 1, + anon_sym_class, + ACTIONS(3875), 1, + anon_sym_struct, + ACTIONS(3877), 1, + anon_sym_union, + ACTIONS(3891), 1, + sym_auto, + ACTIONS(3893), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(11109), 1, + sym_identifier, + ACTIONS(11111), 1, + anon_sym_COLON_COLON, + ACTIONS(11113), 1, + anon_sym_typename, + STATE(2941), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2967), 1, + sym_type_specifier, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3711), 1, + sym__splice_specialization_specifier, + STATE(3719), 1, + sym_splice_specifier, + STATE(3759), 1, + sym_template_type, + STATE(3819), 1, + sym_qualified_type_identifier, + STATE(4119), 1, + sym_decltype_auto, + STATE(8707), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3967), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3867), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4064), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [109224] = 29, ACTIONS(3), 1, sym_comment, - STATE(4591), 1, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3807), 1, + anon_sym_enum, + ACTIONS(3809), 1, + anon_sym_class, + ACTIONS(3811), 1, + anon_sym_struct, + ACTIONS(3813), 1, + anon_sym_union, + ACTIONS(3819), 1, + sym_auto, + ACTIONS(3821), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11036), 1, + sym_identifier, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(11040), 1, + sym_primitive_type, + ACTIONS(11042), 1, + anon_sym_typename, + STATE(2073), 1, + sym_template_type, + STATE(2076), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(10905), 4, + STATE(2087), 1, + sym_qualified_type_identifier, + STATE(2104), 1, + sym_splice_specifier, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2221), 1, + sym_decltype_auto, + STATE(2261), 1, + sym_type_specifier, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(8763), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2169), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3803), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7414), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7416), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(2222), 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(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -526132,55 +547560,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [108964] = 5, + [109337] = 29, ACTIONS(3), 1, sym_comment, - STATE(4591), 1, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3809), 1, + anon_sym_class, + ACTIONS(3811), 1, + anon_sym_struct, + ACTIONS(3813), 1, + anon_sym_union, + ACTIONS(3819), 1, + sym_auto, + ACTIONS(3821), 1, + anon_sym_decltype, + ACTIONS(3978), 1, + anon_sym_enum, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(11099), 1, + sym_primitive_type, + ACTIONS(11115), 1, + sym_identifier, + ACTIONS(11117), 1, + anon_sym_typename, + STATE(2073), 1, + sym_template_type, + STATE(2087), 1, + sym_qualified_type_identifier, + STATE(2093), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(10905), 4, + STATE(2101), 1, + sym_type_specifier, + STATE(2104), 1, + sym_splice_specifier, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2221), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(8763), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2169), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3974), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7391), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7393), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(2222), 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(67), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -526192,32 +547644,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [109029] = 9, + [109450] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(10759), 1, anon_sym_LBRACK, - ACTIONS(10797), 1, + ACTIONS(11251), 1, anon_sym_DOT_STAR, - STATE(5506), 1, + STATE(5663), 1, sym_argument_list, - STATE(5507), 1, + STATE(5664), 1, sym_subscript_argument_list, - ACTIONS(10429), 2, + ACTIONS(10801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10803), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9286), 17, + ACTIONS(9715), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -526235,7 +547681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9288), 29, + ACTIONS(9717), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -526262,72 +547708,70 @@ 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_STAR, - [109102] = 29, + [109525] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2823), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(2825), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(2827), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(2829), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(2855), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(2857), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10695), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10697), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10699), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10701), 1, + ACTIONS(10657), 1, anon_sym_typename, - STATE(3482), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3965), 1, + STATE(3684), 1, sym_template_type, - STATE(4048), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(4189), 1, - sym__splice_specialization_specifier, - STATE(4401), 1, - sym_decltype_auto, - STATE(6549), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7130), 1, + STATE(7260), 1, sym_splice_specifier, - STATE(7399), 1, + STATE(7568), 1, sym_type_specifier, - STATE(8634), 1, + STATE(8711), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(4252), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2819), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4402), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -526349,106 +547793,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [109215] = 5, + [109638] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10472), 1, - anon_sym_LBRACK, - STATE(5206), 1, - sym_new_declarator, - ACTIONS(9173), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10542), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9175), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10687), 1, anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10787), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11225), 1, anon_sym_PIPE_PIPE, + ACTIONS(11227), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(11229), 1, + anon_sym_PIPE, + ACTIONS(11233), 1, + anon_sym_AMP, + ACTIONS(11239), 1, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, + ACTIONS(11243), 1, + anon_sym_or, + ACTIONS(11245), 1, + anon_sym_and, + ACTIONS(11247), 1, anon_sym_bitor, + ACTIONS(11249), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [109280] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10209), 1, - anon_sym_LPAREN2, - ACTIONS(10211), 1, - anon_sym_LBRACK, - STATE(1869), 1, - sym_parameter_list, - STATE(4744), 1, - sym__function_declarator_seq, - ACTIONS(9848), 19, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11221), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11231), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11241), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11235), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11237), 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(9846), 30, + ACTIONS(10544), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -526463,86 +547873,48 @@ 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, - [109349] = 29, + [109745] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10619), 1, - sym_identifier, - ACTIONS(10621), 1, + ACTIONS(5655), 1, anon_sym_COLON_COLON, - ACTIONS(10625), 1, - sym_primitive_type, - ACTIONS(10627), 1, - anon_sym_enum, - ACTIONS(10629), 1, - anon_sym_class, - ACTIONS(10631), 1, - anon_sym_struct, - ACTIONS(10633), 1, - anon_sym_union, - ACTIONS(10635), 1, - anon_sym_typename, - ACTIONS(10637), 1, - sym_auto, - ACTIONS(10639), 1, - anon_sym_decltype, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(6310), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6603), 1, - sym_splice_specifier, - STATE(6669), 1, - sym_type_specifier, - STATE(7033), 1, - sym__splice_specialization_specifier, - STATE(7218), 1, - sym_template_type, - STATE(7294), 1, - sym_qualified_type_identifier, - STATE(7496), 1, - sym_decltype_auto, - STATE(8612), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(7484), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(10623), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(7497), 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(67), 13, + ACTIONS(10647), 1, + anon_sym_LT, + STATE(4318), 1, + sym_template_argument_list, + ACTIONS(5657), 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7371), 38, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -526555,10 +547927,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [109462] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [109812] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8651), 18, + ACTIONS(10568), 1, + anon_sym_LPAREN2, + ACTIONS(10570), 1, + anon_sym_LBRACK, + STATE(1974), 1, + sym_parameter_list, + STATE(4999), 1, + sym__function_declarator_seq, + ACTIONS(10210), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -526577,17 +547965,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8653), 35, + anon_sym_DASH_GT, + ACTIONS(10208), 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -526609,14 +547996,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [109523] = 3, + anon_sym_DASH_GT_STAR, + [109881] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9003), 20, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9681), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -526626,26 +548023,23 @@ 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(9005), 33, + ACTIONS(9683), 29, 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, @@ -526653,6 +548047,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, @@ -526665,136 +548060,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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [109584] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4591), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10905), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7199), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7201), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [109649] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5043), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10938), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7213), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7215), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [109714] = 3, + anon_sym_DASH_GT_STAR, + [109954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8655), 18, + ACTIONS(3155), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -526804,16 +548074,18 @@ 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(8657), 35, + ACTIONS(3153), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -526821,9 +548093,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -526831,7 +548101,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, @@ -526848,129 +548117,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_requires, - [109775] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5046), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10940), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7239), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7241), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [109840] = 22, + [110015] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, + ACTIONS(9599), 1, + anon_sym_EQ, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(10759), 1, anon_sym_LBRACK, - ACTIONS(10413), 1, + ACTIONS(10787), 1, anon_sym_LT_EQ_GT, - ACTIONS(10777), 1, + ACTIONS(11225), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11227), 1, + anon_sym_AMP_AMP, + ACTIONS(11229), 1, anon_sym_PIPE, - ACTIONS(10781), 1, + ACTIONS(11233), 1, anon_sym_AMP, - ACTIONS(10787), 1, + ACTIONS(11239), 1, anon_sym_GT_EQ, - ACTIONS(10793), 1, + ACTIONS(11243), 1, + anon_sym_or, + ACTIONS(11245), 1, + anon_sym_and, + ACTIONS(11247), 1, anon_sym_bitor, - ACTIONS(10795), 1, + ACTIONS(11249), 1, anon_sym_bitand, - ACTIONS(10797), 1, + ACTIONS(11251), 1, anon_sym_DOT_STAR, - STATE(5506), 1, + STATE(5663), 1, sym_argument_list, - STATE(5507), 1, + STATE(5664), 1, sym_subscript_argument_list, - ACTIONS(10427), 2, + ACTIONS(10801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, + ACTIONS(10803), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10771), 2, + ACTIONS(11221), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10779), 2, + ACTIONS(11231), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(10789), 2, + ACTIONS(11241), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9282), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(10773), 3, + ACTIONS(11223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10783), 3, + ACTIONS(11235), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10785), 3, + ACTIONS(11237), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 20, + ACTIONS(9597), 18, 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, @@ -526986,10 +548200,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_DASH_GT_STAR, - [109939] = 3, + [110122] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 20, + ACTIONS(2968), 1, + anon_sym_LBRACE, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + STATE(5777), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9377), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -527010,10 +548231,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(2793), 33, + ACTIONS(9379), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -527040,14 +548260,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [110000] = 3, + [110189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8606), 18, + ACTIONS(9011), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -527057,16 +548274,18 @@ 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(8608), 35, + ACTIONS(9013), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -527074,9 +548293,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -527084,7 +548301,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, @@ -527101,71 +548317,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_requires, - [110061] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4591), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10905), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7387), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7389), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [110126] = 3, + [110250] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8622), 18, + ACTIONS(11293), 1, + anon_sym_LT, + STATE(4045), 1, + sym_template_argument_list, + ACTIONS(9650), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -527176,15 +548337,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8624), 35, + ACTIONS(9652), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -527193,8 +548354,9 @@ 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_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -527217,17 +548379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [110187] = 5, + [110315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10897), 1, - anon_sym_AMP_AMP, - ACTIONS(10901), 1, - anon_sym_and, - ACTIONS(8939), 19, + ACTIONS(9296), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -527245,13 +548400,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, + anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8941), 32, + ACTIONS(9298), 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, @@ -527280,65 +548437,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [110252] = 20, + [110376] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(6479), 1, anon_sym_LBRACK, - ACTIONS(10413), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10781), 1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(10348), 1, + anon_sym_AMP_AMP, + ACTIONS(10350), 1, anon_sym_AMP, - ACTIONS(10787), 1, - anon_sym_GT_EQ, - ACTIONS(10795), 1, - anon_sym_bitand, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10427), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, - anon_sym_DOT, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11296), 1, anon_sym_DASH_GT, - ACTIONS(10771), 2, + ACTIONS(11298), 1, + anon_sym_requires, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(7533), 1, + sym__function_attributes_start, + STATE(7662), 1, + sym_ref_qualifier, + STATE(8683), 1, + sym__function_attributes_end, + STATE(8688), 1, + sym_trailing_return_type, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(6144), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6360), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8522), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7833), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6481), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [110491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8909), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10779), 2, - anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(10789), 2, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8911), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10773), 3, + anon_sym_SEMI, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [110552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8893), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10783), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10785), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9282), 4, - anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - ACTIONS(9284), 21, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8895), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -527346,79 +548620,28 @@ 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_DASH_GT_STAR, - [110347] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4591), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10905), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7249), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7251), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [110412] = 3, + [110613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8614), 18, + ACTIONS(8901), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -527428,16 +548651,18 @@ 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(8616), 35, + ACTIONS(8903), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -527445,9 +548670,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -527455,7 +548678,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, @@ -527472,153 +548694,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [110473] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1938), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3197), 1, - anon_sym_enum, - ACTIONS(3199), 1, - anon_sym_class, - ACTIONS(3201), 1, - anon_sym_struct, - ACTIONS(3203), 1, - anon_sym_union, - ACTIONS(3207), 1, - sym_auto, - ACTIONS(3209), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10676), 1, - sym_identifier, - ACTIONS(10678), 1, - anon_sym_COLON_COLON, - ACTIONS(10680), 1, - sym_primitive_type, - ACTIONS(10682), 1, - anon_sym_typename, - STATE(2119), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2308), 1, - sym_type_specifier, - STATE(2431), 1, - sym_splice_specifier, - STATE(2509), 1, - sym_template_type, - STATE(2514), 1, - sym__splice_specialization_specifier, - STATE(2568), 1, - sym_qualified_type_identifier, - STATE(2925), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(8639), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2832), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3193), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2926), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [110586] = 3, + [110674] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 23, - aux_sym_preproc_elif_token1, + ACTIONS(2968), 1, + anon_sym_LBRACE, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + STATE(5796), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9381), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_bitor, anon_sym_xor, + anon_sym_DOT, + ACTIONS(9383), 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_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [110741] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6479), 1, + anon_sym_LBRACK, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(10348), 1, + anon_sym_AMP_AMP, + ACTIONS(10350), 1, + anon_sym_AMP, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11296), 1, + anon_sym_DASH_GT, + ACTIONS(11300), 1, + anon_sym_requires, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(7536), 1, + sym__function_attributes_start, + STATE(7658), 1, + sym_ref_qualifier, + STATE(8712), 1, + sym__function_attributes_end, + STATE(8713), 1, + sym_trailing_return_type, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10821), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - ACTIONS(8667), 30, + STATE(6144), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6360), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8522), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7847), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6481), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [110647] = 3, + anon_sym_GT2, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [110856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 20, + ACTIONS(9308), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -527639,7 +548866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9013), 33, + ACTIONS(9310), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -527673,14 +548900,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [110708] = 5, + [110917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10942), 1, - anon_sym_LT, - STATE(3966), 1, - sym_template_argument_list, - ACTIONS(9225), 18, + ACTIONS(9316), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -527690,16 +548913,18 @@ 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(9227), 33, + ACTIONS(9318), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -527707,10 +548932,7 @@ static const uint16_t ts_small_parse_table[] = { 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -527718,7 +548940,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, @@ -527733,46 +548954,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [110773] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [110978] = 9, ACTIONS(3), 1, sym_comment, - STATE(5116), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10804), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6798), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, + ACTIONS(7085), 1, anon_sym_const, - anon_sym___asm, - ACTIONS(6800), 42, - anon_sym_COMMA, + ACTIONS(7094), 1, + anon_sym_AMP, + ACTIONS(8695), 1, + anon_sym_LT, + STATE(2992), 1, + sym_template_argument_list, + ACTIONS(7087), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + ACTIONS(7092), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_DOT, + ACTIONS(7090), 15, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -527786,76 +549000,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [110838] = 29, + ACTIONS(7097), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [111051] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3291), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(3293), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(3295), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(3297), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(4800), 1, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10295), 1, - sym_primitive_type, ACTIONS(10649), 1, sym_identifier, - ACTIONS(10651), 1, - anon_sym_COLON_COLON, ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, anon_sym_typename, - STATE(2634), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(2938), 1, - sym_type_specifier, - STATE(3100), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3561), 1, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(3688), 1, + STATE(6587), 1, + sym_type_specifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 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(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [111164] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11018), 1, + sym_identifier, + ACTIONS(11020), 1, + anon_sym_COLON_COLON, + ACTIONS(11024), 1, + sym_primitive_type, + ACTIONS(11026), 1, + anon_sym_enum, + ACTIONS(11028), 1, + anon_sym_class, + ACTIONS(11030), 1, + anon_sym_struct, + ACTIONS(11032), 1, + anon_sym_union, + ACTIONS(11034), 1, + anon_sym_typename, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(7481), 1, sym_splice_specifier, - STATE(8621), 1, + STATE(7606), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7693), 1, + sym_template_type, + STATE(7716), 1, + sym_qualified_type_identifier, + STATE(7722), 1, + sym_type_specifier, + STATE(8691), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(3090), 2, + STATE(3138), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(11022), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -527877,26 +549190,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [110951] = 10, + [111277] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, + ACTIONS(3052), 1, + anon_sym_LBRACE, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - STATE(5506), 1, + STATE(5758), 2, sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10427), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9270), 17, + sym_initializer_list, + ACTIONS(9431), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -527914,15 +549218,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9272), 27, + anon_sym_DOT, + ACTIONS(9433), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -527941,69 +549247,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [111026] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [111344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 23, - aux_sym_preproc_elif_token1, + ACTIONS(8942), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(2801), 30, + ACTIONS(8944), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - anon_sym_COLON_RBRACK, - [111087] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [111405] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 18, + ACTIONS(11273), 1, + anon_sym_LT, + STATE(4811), 1, + sym_template_argument_list, + ACTIONS(9650), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -528014,25 +549327,26 @@ 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(8667), 35, + anon_sym_DASH_GT, + ACTIONS(9652), 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_RBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -528054,14 +549368,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [111148] = 3, + anon_sym_DASH_GT_STAR, + [111470] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8516), 18, + ACTIONS(10689), 1, + anon_sym_LBRACK, + STATE(5470), 1, + sym_new_declarator, + ACTIONS(9535), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -528080,17 +549395,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8518), 35, + anon_sym_DASH_GT, + ACTIONS(9537), 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_RBRACK, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -528112,102 +549428,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [111209] = 3, + anon_sym_DASH_GT_STAR, + [111535] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8599), 23, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(9826), 1, + anon_sym_EQ, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10763), 1, + anon_sym_QMARK, + ACTIONS(10787), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11225), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11227), 1, + anon_sym_AMP_AMP, + ACTIONS(11229), 1, anon_sym_PIPE, + ACTIONS(11233), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + ACTIONS(11239), 1, + anon_sym_GT_EQ, + ACTIONS(11243), 1, anon_sym_or, + ACTIONS(11245), 1, anon_sym_and, + ACTIONS(11247), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11249), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8601), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(10803), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [111270] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8595), 18, + ACTIONS(11221), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11231), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11241), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11235), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11237), 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(8597), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(9828), 16, 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_RPAREN, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -528221,80 +549511,128 @@ 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [111331] = 29, + anon_sym_DASH_GT_STAR, + [111646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, - sym_identifier, - ACTIONS(4780), 1, + ACTIONS(8659), 5, + anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(4784), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(8657), 48, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - ACTIONS(4786), 1, anon_sym_enum, - ACTIONS(4788), 1, anon_sym_class, - ACTIONS(4790), 1, anon_sym_struct, - ACTIONS(4792), 1, anon_sym_union, - ACTIONS(4794), 1, anon_sym_typename, - ACTIONS(4796), 1, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [111707] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2248), 1, + anon_sym_enum, + ACTIONS(2250), 1, + anon_sym_class, + ACTIONS(2252), 1, + anon_sym_struct, + ACTIONS(2254), 1, + anon_sym_union, + ACTIONS(2280), 1, sym_auto, - ACTIONS(4798), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, + anon_sym_typename, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(4270), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4691), 1, - sym_splice_specifier, - STATE(5263), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(5264), 1, + STATE(3197), 1, + sym_decltype_auto, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3684), 1, sym_template_type, - STATE(5495), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(6020), 1, - sym_decltype_auto, - STATE(6179), 1, + STATE(6907), 1, sym_type_specifier, - STATE(8584), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5891), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(4782), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5975), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -528316,10 +549654,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [111444] = 3, + [111820] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 20, + ACTIONS(11281), 1, + anon_sym_AMP_AMP, + ACTIONS(11285), 1, + anon_sym_and, + ACTIONS(9322), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -528329,26 +549671,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(9039), 33, + ACTIONS(9324), 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_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -528356,6 +549696,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, @@ -528372,104 +549713,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [111505] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2732), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3512), 1, - anon_sym_enum, - ACTIONS(3514), 1, - anon_sym_class, - ACTIONS(3516), 1, - anon_sym_struct, - ACTIONS(3518), 1, - anon_sym_union, - ACTIONS(3524), 1, - sym_auto, - ACTIONS(3526), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10733), 1, - sym_identifier, - ACTIONS(10735), 1, - anon_sym_COLON_COLON, - ACTIONS(10737), 1, - sym_primitive_type, - ACTIONS(10739), 1, - anon_sym_typename, - STATE(2162), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2338), 1, - sym_type_specifier, - STATE(2530), 1, - sym_splice_specifier, - STATE(2580), 1, - sym_template_type, - STATE(2597), 1, - sym__splice_specialization_specifier, - STATE(2641), 1, - sym_qualified_type_identifier, - STATE(2982), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(8624), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2856), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3508), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2983), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [111618] = 7, + [111885] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10209), 1, - anon_sym_LPAREN2, - ACTIONS(10211), 1, - anon_sym_LBRACK, - STATE(1869), 1, - sym_parameter_list, - STATE(4744), 1, - sym__function_declarator_seq, - ACTIONS(9834), 19, + ACTIONS(11303), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9697), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -528483,21 +549733,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, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9832), 30, + ACTIONS(9699), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -528519,65 +549772,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [111687] = 19, + anon_sym_DASH_GT, + [111948] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, + ACTIONS(10489), 1, + anon_sym_EQ, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(10717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10759), 1, anon_sym_LBRACK, - ACTIONS(10413), 1, + ACTIONS(10763), 1, + anon_sym_QMARK, + ACTIONS(10787), 1, anon_sym_LT_EQ_GT, - ACTIONS(10781), 1, + ACTIONS(11225), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11227), 1, + anon_sym_AMP_AMP, + ACTIONS(11229), 1, + anon_sym_PIPE, + ACTIONS(11233), 1, anon_sym_AMP, - ACTIONS(10787), 1, + ACTIONS(11239), 1, anon_sym_GT_EQ, - ACTIONS(10795), 1, + ACTIONS(11243), 1, + anon_sym_or, + ACTIONS(11245), 1, + anon_sym_and, + ACTIONS(11247), 1, + anon_sym_bitor, + ACTIONS(11249), 1, anon_sym_bitand, - ACTIONS(10797), 1, + ACTIONS(11251), 1, anon_sym_DOT_STAR, - STATE(5506), 1, + STATE(5663), 1, sym_argument_list, - STATE(5507), 1, + STATE(5664), 1, sym_subscript_argument_list, - ACTIONS(10427), 2, + ACTIONS(10801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10429), 2, + ACTIONS(10803), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10771), 2, + ACTIONS(11221), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10789), 2, + ACTIONS(11231), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11241), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10773), 3, + ACTIONS(11223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10783), 3, + ACTIONS(11235), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10785), 3, + ACTIONS(11237), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9282), 6, + ACTIONS(10491), 16, + 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_DASH_GT_STAR, + [112059] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10568), 1, + anon_sym_LPAREN2, + ACTIONS(10570), 1, + anon_sym_LBRACK, + STATE(1974), 1, + sym_parameter_list, + STATE(4999), 1, + sym__function_declarator_seq, + ACTIONS(10190), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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(9284), 21, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10188), 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, @@ -528592,16 +549910,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, + anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [111780] = 5, + [112128] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10799), 1, - anon_sym_LT, - STATE(1868), 1, - sym_template_argument_list, - ACTIONS(9225), 18, + ACTIONS(10568), 1, + anon_sym_LPAREN2, + ACTIONS(10570), 1, + anon_sym_LBRACK, + STATE(1974), 1, + sym_parameter_list, + STATE(4999), 1, + sym__function_declarator_seq, + ACTIONS(10194), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -528612,26 +549940,24 @@ 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(9227), 33, + anon_sym_DASH_GT, + ACTIONS(10192), 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, @@ -528653,179 +549979,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [111845] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1938), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3197), 1, - anon_sym_enum, - ACTIONS(3199), 1, - anon_sym_class, - ACTIONS(3201), 1, - anon_sym_struct, - ACTIONS(3203), 1, - anon_sym_union, - ACTIONS(3207), 1, - sym_auto, - ACTIONS(3209), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10676), 1, - sym_identifier, - ACTIONS(10678), 1, - anon_sym_COLON_COLON, - ACTIONS(10680), 1, - sym_primitive_type, - ACTIONS(10682), 1, - anon_sym_typename, - STATE(2119), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2185), 1, - sym_type_specifier, - STATE(2431), 1, - sym_splice_specifier, - STATE(2509), 1, - sym_template_type, - STATE(2514), 1, - sym__splice_specialization_specifier, - STATE(2568), 1, - sym_qualified_type_identifier, - STATE(2925), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(8639), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2832), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3193), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2926), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [111958] = 22, + anon_sym_DASH_GT_STAR, + [112197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, - anon_sym___attribute, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10922), 1, - anon_sym_LPAREN2, - ACTIONS(10924), 1, - anon_sym_STAR, - ACTIONS(10926), 1, - anon_sym_AMP_AMP, - ACTIONS(10928), 1, + ACTIONS(9000), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(10930), 1, - sym_ms_restrict_modifier, - ACTIONS(10936), 1, - anon_sym_LBRACK, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(4243), 1, - sym_parameter_list, - STATE(6312), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8183), 1, - sym__function_declarator_seq, - STATE(8311), 1, - sym__abstract_declarator, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10932), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(10934), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6129), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6140), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(8180), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6497), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___attribute__, + anon_sym___attribute, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - 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_identifier, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [112057] = 6, + ACTIONS(9002), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [112258] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, - anon_sym_LBRACE, - ACTIONS(10542), 1, + ACTIONS(11305), 1, anon_sym_LPAREN2, - STATE(5724), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9086), 18, + ACTIONS(11307), 1, + anon_sym_LBRACK, + STATE(1991), 1, + sym_parameter_list, + STATE(5586), 1, + sym__function_declarator_seq, + ACTIONS(10186), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -528840,20 +550064,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(9088), 31, + anon_sym_DASH_GT, + ACTIONS(10184), 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -528865,105 +550086,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_or, + anon_sym_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, - [112124] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2078), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3173), 1, - anon_sym_enum, - ACTIONS(3175), 1, - anon_sym_class, - ACTIONS(3177), 1, - anon_sym_struct, - ACTIONS(3179), 1, - anon_sym_union, - ACTIONS(3185), 1, - sym_auto, - ACTIONS(3187), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10684), 1, - sym_identifier, - ACTIONS(10686), 1, - anon_sym_COLON_COLON, - ACTIONS(10688), 1, - sym_primitive_type, - ACTIONS(10690), 1, - anon_sym_typename, - STATE(1963), 1, - sym_template_type, - STATE(1965), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1994), 1, - sym_qualified_type_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2004), 1, - sym_type_specifier, - STATE(2026), 1, - sym__splice_specialization_specifier, - STATE(2070), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(8593), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2063), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3169), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2089), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [112237] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [112327] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8651), 20, + ACTIONS(11305), 1, + anon_sym_LPAREN2, + ACTIONS(11307), 1, + anon_sym_LBRACK, + STATE(1991), 1, + sym_parameter_list, + STATE(5586), 1, + sym__function_declarator_seq, + ACTIONS(10190), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -528973,26 +550121,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(8653), 33, + anon_sym_DASH_GT, + ACTIONS(10188), 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_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -529000,112 +550144,97 @@ 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, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [112298] = 29, + anon_sym_DASH_GT_STAR, + [112396] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2823), 1, - anon_sym_enum, - ACTIONS(2825), 1, - anon_sym_class, - ACTIONS(2827), 1, - anon_sym_struct, - ACTIONS(2829), 1, - anon_sym_union, - ACTIONS(2855), 1, - sym_auto, - ACTIONS(2857), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10695), 1, - sym_identifier, - ACTIONS(10697), 1, - anon_sym_COLON_COLON, - ACTIONS(10699), 1, - sym_primitive_type, - ACTIONS(10701), 1, - anon_sym_typename, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3965), 1, - sym_template_type, - STATE(4048), 1, - sym_qualified_type_identifier, - STATE(4189), 1, - sym__splice_specialization_specifier, - STATE(4401), 1, - sym_decltype_auto, - STATE(6549), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6876), 1, - sym_type_specifier, - STATE(7130), 1, - sym_splice_specifier, - STATE(8634), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(4252), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2819), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4402), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [112411] = 3, + ACTIONS(11305), 1, + anon_sym_LPAREN2, + ACTIONS(11307), 1, + anon_sym_LBRACK, + STATE(1991), 1, + sym_parameter_list, + STATE(5586), 1, + sym__function_declarator_seq, + ACTIONS(10194), 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(10192), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [112465] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8655), 20, + ACTIONS(3052), 1, + anon_sym_LBRACE, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + STATE(5830), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9377), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -529115,26 +550244,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(8657), 33, + ACTIONS(9379), 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_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -529142,6 +550270,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, @@ -529156,98 +550285,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [112472] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2823), 1, - anon_sym_enum, - ACTIONS(2825), 1, - anon_sym_class, - ACTIONS(2827), 1, - anon_sym_struct, - ACTIONS(2829), 1, - anon_sym_union, - ACTIONS(2855), 1, - sym_auto, - ACTIONS(2857), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10695), 1, - sym_identifier, - ACTIONS(10697), 1, - anon_sym_COLON_COLON, - ACTIONS(10699), 1, - sym_primitive_type, - ACTIONS(10701), 1, - anon_sym_typename, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3965), 1, - sym_template_type, - STATE(4048), 1, - sym_qualified_type_identifier, - STATE(4189), 1, - sym__splice_specialization_specifier, - STATE(4401), 1, - sym_decltype_auto, - STATE(6549), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6659), 1, - sym_type_specifier, - STATE(7130), 1, - sym_splice_specifier, - STATE(8634), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(4252), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2819), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4402), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [112585] = 3, + [112532] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9078), 18, + ACTIONS(11305), 1, + anon_sym_LPAREN2, + ACTIONS(11307), 1, + anon_sym_LBRACK, + STATE(1991), 1, + sym_parameter_list, + STATE(5586), 1, + sym__function_declarator_seq, + ACTIONS(10174), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -529262,21 +550311,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(9080), 35, + anon_sym_DASH_GT, + ACTIONS(10172), 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_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -529288,24 +550333,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_DOT_STAR, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - [112646] = 3, + anon_sym_DASH_GT_STAR, + [112601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 18, + ACTIONS(8996), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -529315,16 +550360,18 @@ 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(2801), 35, + ACTIONS(8998), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -529332,9 +550379,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -529342,7 +550387,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, @@ -529359,100 +550403,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [112707] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3291), 1, - anon_sym_enum, - ACTIONS(3293), 1, - anon_sym_class, - ACTIONS(3295), 1, - anon_sym_struct, - ACTIONS(3297), 1, - anon_sym_union, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10651), 1, - anon_sym_COLON_COLON, - ACTIONS(10653), 1, - anon_sym_typename, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(3688), 1, - sym_splice_specifier, - STATE(3693), 1, - sym_type_specifier, - STATE(8621), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [112820] = 5, + [112662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6125), 1, - anon_sym_LBRACK_LBRACK, - STATE(3105), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9211), 19, + ACTIONS(9000), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -529462,17 +550418,18 @@ 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(9213), 31, + ACTIONS(9002), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -529480,8 +550437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -529489,7 +550445,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, @@ -529504,75 +550459,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [112885] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [112723] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8618), 23, - aux_sym_preproc_elif_token1, + ACTIONS(11305), 1, + anon_sym_LPAREN2, + ACTIONS(11307), 1, + anon_sym_LBRACK, + STATE(1991), 1, + sym_parameter_list, + STATE(5586), 1, + sym__function_declarator_seq, + ACTIONS(10198), 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___attribute__, - anon_sym___attribute, - anon_sym_COLON, - 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_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8620), 30, + anon_sym_DASH_GT, + ACTIONS(10196), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [112946] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [112792] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, - anon_sym_LBRACE, - ACTIONS(10542), 1, + ACTIONS(11305), 1, anon_sym_LPAREN2, - STATE(5758), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9117), 18, + ACTIONS(11307), 1, + anon_sym_LBRACK, + STATE(1991), 1, + sym_parameter_list, + STATE(5586), 1, + sym__function_declarator_seq, + ACTIONS(10202), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -529587,20 +550551,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(9119), 31, + anon_sym_DASH_GT, + ACTIONS(10200), 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -529612,21 +550573,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_or, + anon_sym_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, - [113013] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [112861] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8606), 20, + ACTIONS(11305), 1, + anon_sym_LPAREN2, + ACTIONS(11307), 1, + anon_sym_LBRACK, + STATE(1991), 1, + sym_parameter_list, + STATE(5586), 1, + sym__function_declarator_seq, + ACTIONS(10206), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -529636,26 +550608,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(8608), 33, + anon_sym_DASH_GT, + ACTIONS(10204), 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_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -529663,120 +550631,36 @@ 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, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [113074] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4772), 1, - sym_identifier, - ACTIONS(4780), 1, - anon_sym_COLON_COLON, - ACTIONS(4784), 1, - sym_primitive_type, - ACTIONS(4786), 1, - anon_sym_enum, - ACTIONS(4788), 1, - anon_sym_class, - ACTIONS(4790), 1, - anon_sym_struct, - ACTIONS(4792), 1, - anon_sym_union, - ACTIONS(4794), 1, - anon_sym_typename, - ACTIONS(4796), 1, - sym_auto, - ACTIONS(4798), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(4270), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4691), 1, - sym_splice_specifier, - STATE(5263), 1, - sym__splice_specialization_specifier, - STATE(5264), 1, - sym_template_type, - STATE(5495), 1, - sym_qualified_type_identifier, - STATE(6020), 1, - sym_decltype_auto, - STATE(6152), 1, - sym_type_specifier, - STATE(8584), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5891), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(4782), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5975), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [113187] = 7, + anon_sym_DASH_GT_STAR, + [112930] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10209), 1, + ACTIONS(11305), 1, anon_sym_LPAREN2, - ACTIONS(10211), 1, + ACTIONS(11307), 1, anon_sym_LBRACK, - STATE(1869), 1, + STATE(1991), 1, sym_parameter_list, - STATE(4744), 1, + STATE(5586), 1, sym__function_declarator_seq, - ACTIONS(9840), 19, + ACTIONS(10210), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -529791,12 +550675,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(9838), 30, + ACTIONS(10208), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -529816,21 +550697,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_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [113256] = 3, + [112999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8614), 20, + ACTIONS(9389), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -529851,7 +550735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8616), 33, + ACTIONS(9391), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -529885,94 +550769,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [113317] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2855), 1, - sym_auto, - ACTIONS(2857), 1, - anon_sym_decltype, - ACTIONS(2875), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3544), 1, - anon_sym_enum, - ACTIONS(3546), 1, - anon_sym_class, - ACTIONS(3548), 1, - anon_sym_struct, - ACTIONS(3550), 1, - anon_sym_union, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10699), 1, - sym_primitive_type, - ACTIONS(10703), 1, - sym_identifier, - ACTIONS(10705), 1, - anon_sym_COLON_COLON, - ACTIONS(10707), 1, - anon_sym_typename, - STATE(3378), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3629), 1, - sym_type_specifier, - STATE(3965), 1, - sym_template_type, - STATE(4048), 1, - sym_qualified_type_identifier, - STATE(4067), 1, - sym_splice_specifier, - STATE(4189), 1, - sym__splice_specialization_specifier, - STATE(4401), 1, - sym_decltype_auto, - STATE(8549), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(4252), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3542), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4402), 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(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [113430] = 3, + [113060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9082), 18, + ACTIONS(7968), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -529982,16 +550782,18 @@ 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(9084), 35, + ACTIONS(7966), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -529999,9 +550801,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -530009,7 +550809,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, @@ -530026,11 +550825,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [113491] = 3, + [113121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8651), 23, + ACTIONS(8950), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -530054,7 +550854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8653), 30, + ACTIONS(8952), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -530085,68 +550885,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [113552] = 22, + [113182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(10949), 1, - anon_sym_PIPE, - ACTIONS(10953), 1, - anon_sym_AMP, - ACTIONS(10959), 1, - anon_sym_GT_EQ, - ACTIONS(10963), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10965), 1, - anon_sym_bitor, - ACTIONS(10967), 1, - anon_sym_bitand, - ACTIONS(10969), 1, - anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10945), 2, + ACTIONS(9361), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10951), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10961), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10971), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9282), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(10947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10955), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10957), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9363), 33, 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -530154,17 +550925,34 @@ 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, - [113650] = 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [113243] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8145), 19, + ACTIONS(6777), 2, + anon_sym_final, + anon_sym_override, + STATE(5073), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9139), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -530179,12 +550967,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(8140), 33, + ACTIONS(9141), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -530194,7 +550979,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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -530207,37 +550991,22 @@ 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_requires, anon_sym_DASH_GT_STAR, - [113710] = 10, + [113308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - ACTIONS(10973), 1, - anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - STATE(5762), 1, - sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(10975), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9252), 17, + ACTIONS(9365), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -530247,23 +551016,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, - ACTIONS(9254), 26, + anon_sym_DOT, + ACTIONS(9367), 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_GT_EQ, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -530271,7 +551043,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, @@ -530282,459 +551053,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [113784] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [113369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8955), 23, - aux_sym_preproc_elif_token1, + ACTIONS(9369), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8957), 29, + ACTIONS(9371), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [113844] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [113430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 23, - aux_sym_preproc_elif_token1, + ACTIONS(9373), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8994), 29, + ACTIONS(9375), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [113904] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(7185), 7, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7183), 44, - 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___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [113966] = 3, + [113491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(8992), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6242), 39, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [114026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6248), 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_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6246), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [114086] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6252), 13, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8994), 33, 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, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6250), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, anon_sym_final, anon_sym_override, - anon_sym_template, - anon_sym_operator, - [114146] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, - sym_identifier, - ACTIONS(9876), 1, - anon_sym_STAR, - ACTIONS(9878), 1, - anon_sym_AMP_AMP, - ACTIONS(9880), 1, - anon_sym_AMP, - ACTIONS(9882), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7870), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8467), 1, - sym__declarator, - STATE(11345), 1, - sym_ms_based_modifier, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6842), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [114250] = 7, + anon_sym_GT2, + anon_sym_requires, + [113552] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10333), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10335), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(1873), 1, - sym_parameter_list, - STATE(5159), 1, - sym__function_declarator_seq, - ACTIONS(9834), 18, + ACTIONS(11315), 1, + anon_sym_DOT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11309), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11313), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11311), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9707), 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, - ACTIONS(9832), 30, + ACTIONS(9709), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -530742,7 +551283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -530761,251 +551302,181 @@ 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, - [114318] = 51, + [113632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10431), 1, - anon_sym_DOT_STAR, - ACTIONS(10433), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(10981), 1, + ACTIONS(9373), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + 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_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9375), 29, anon_sym_DOT_DOT_DOT, - ACTIONS(10983), 1, anon_sym_COMMA, - ACTIONS(10985), 1, anon_sym_RPAREN, - ACTIONS(10987), 1, - anon_sym_DASH, - ACTIONS(10989), 1, - anon_sym_PLUS, - ACTIONS(10991), 1, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(10993), 1, - anon_sym_SLASH, - ACTIONS(10995), 1, anon_sym_PERCENT, - ACTIONS(10997), 1, anon_sym_PIPE_PIPE, - ACTIONS(10999), 1, anon_sym_AMP_AMP, - ACTIONS(11001), 1, - anon_sym_PIPE, - ACTIONS(11003), 1, anon_sym_CARET, - ACTIONS(11005), 1, - anon_sym_AMP, - ACTIONS(11007), 1, anon_sym_EQ_EQ, - ACTIONS(11009), 1, anon_sym_BANG_EQ, - ACTIONS(11011), 1, - anon_sym_GT, - ACTIONS(11013), 1, anon_sym_GT_EQ, - ACTIONS(11015), 1, - anon_sym_LT_EQ, - ACTIONS(11017), 1, - anon_sym_LT, - ACTIONS(11019), 1, anon_sym_LT_LT, - ACTIONS(11021), 1, anon_sym_GT_GT, - ACTIONS(11023), 1, - anon_sym_EQ, - ACTIONS(11025), 1, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(11027), 1, - anon_sym_STAR_EQ, - ACTIONS(11029), 1, - anon_sym_SLASH_EQ, - ACTIONS(11031), 1, - anon_sym_PERCENT_EQ, - ACTIONS(11033), 1, - anon_sym_PLUS_EQ, - ACTIONS(11035), 1, - anon_sym_DASH_EQ, - ACTIONS(11037), 1, - anon_sym_LT_LT_EQ, - ACTIONS(11039), 1, - anon_sym_GT_GT_EQ, - ACTIONS(11041), 1, - anon_sym_AMP_EQ, - ACTIONS(11043), 1, - anon_sym_CARET_EQ, - ACTIONS(11045), 1, - anon_sym_PIPE_EQ, - ACTIONS(11047), 1, anon_sym_LT_EQ_GT, - ACTIONS(11049), 1, - anon_sym_or, - ACTIONS(11051), 1, - anon_sym_and, - ACTIONS(11053), 1, - anon_sym_bitor, - ACTIONS(11055), 1, - anon_sym_xor, - ACTIONS(11057), 1, - anon_sym_bitand, - ACTIONS(11059), 1, - anon_sym_not_eq, - STATE(1667), 1, - sym__binary_fold_operator, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - STATE(10893), 1, - sym__fold_operator, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11061), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [114474] = 28, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [113692] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9436), 1, - anon_sym_EQ, - ACTIONS(10542), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11063), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11069), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11071), 1, - anon_sym_AMP_AMP, - ACTIONS(11073), 1, - anon_sym_PIPE, - ACTIONS(11077), 1, - anon_sym_AMP, - ACTIONS(11083), 1, - anon_sym_GT_EQ, - ACTIONS(11087), 1, - anon_sym_QMARK, - ACTIONS(11089), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11091), 1, - anon_sym_or, - ACTIONS(11093), 1, - anon_sym_and, - ACTIONS(11095), 1, - anon_sym_bitor, - ACTIONS(11097), 1, - anon_sym_bitand, - STATE(5762), 1, + STATE(5741), 1, sym_argument_list, - STATE(5765), 1, + STATE(5917), 1, sym_subscript_argument_list, - ACTIONS(10975), 2, + ACTIONS(11321), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10979), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11065), 2, + ACTIONS(9638), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11075), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11079), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11081), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9438), 15, + anon_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(9640), 24, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [114584] = 25, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [113766] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(9876), 1, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + ACTIONS(10240), 1, anon_sym_STAR, - ACTIONS(9878), 1, + ACTIONS(10242), 1, anon_sym_AMP_AMP, - ACTIONS(9880), 1, + ACTIONS(10244), 1, anon_sym_AMP, - ACTIONS(9882), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7870), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8407), 1, + STATE(8804), 1, sym__declarator, - STATE(11345), 1, + STATE(10743), 1, sym_ms_based_modifier, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6842), 2, + STATE(7086), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -531017,7 +551488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -531031,103 +551502,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [114688] = 26, + [113870] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9344), 1, - anon_sym_EQ, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11069), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11071), 1, - anon_sym_AMP_AMP, - ACTIONS(11073), 1, - anon_sym_PIPE, - ACTIONS(11077), 1, - anon_sym_AMP, - ACTIONS(11083), 1, - anon_sym_GT_EQ, - ACTIONS(11089), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11091), 1, - anon_sym_or, - ACTIONS(11093), 1, - anon_sym_and, - ACTIONS(11095), 1, - anon_sym_bitor, - ACTIONS(11097), 1, - anon_sym_bitand, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10975), 2, + ACTIONS(11329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11065), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11075), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11067), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11079), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11081), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9342), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - 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, - [114794] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(11103), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9286), 19, + ACTIONS(9638), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -531137,23 +551531,23 @@ 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(9288), 26, + ACTIONS(9640), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -531161,6 +551555,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, @@ -531171,130 +551566,173 @@ 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_GT2, - [114866] = 3, + [113944] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(9456), 20, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10805), 1, + anon_sym_DOT_STAR, + ACTIONS(10807), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(11335), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11337), 1, + anon_sym_COMMA, + ACTIONS(11339), 1, + anon_sym_RPAREN, + ACTIONS(11341), 1, anon_sym_DASH, + ACTIONS(11343), 1, anon_sym_PLUS, + ACTIONS(11345), 1, anon_sym_STAR, + ACTIONS(11347), 1, anon_sym_SLASH, + ACTIONS(11349), 1, anon_sym_PERCENT, + ACTIONS(11351), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11353), 1, + anon_sym_AMP_AMP, + ACTIONS(11355), 1, anon_sym_PIPE, + ACTIONS(11357), 1, anon_sym_CARET, + ACTIONS(11359), 1, anon_sym_AMP, + ACTIONS(11361), 1, + anon_sym_EQ_EQ, + ACTIONS(11363), 1, + anon_sym_BANG_EQ, + ACTIONS(11365), 1, anon_sym_GT, + ACTIONS(11367), 1, + anon_sym_GT_EQ, + ACTIONS(11369), 1, anon_sym_LT_EQ, + ACTIONS(11371), 1, anon_sym_LT, + ACTIONS(11373), 1, anon_sym_LT_LT, + ACTIONS(11375), 1, anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(11377), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9458), 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, + ACTIONS(11379), 1, anon_sym_QMARK, + ACTIONS(11381), 1, anon_sym_STAR_EQ, + ACTIONS(11383), 1, anon_sym_SLASH_EQ, + ACTIONS(11385), 1, anon_sym_PERCENT_EQ, + ACTIONS(11387), 1, anon_sym_PLUS_EQ, + ACTIONS(11389), 1, anon_sym_DASH_EQ, + ACTIONS(11391), 1, anon_sym_LT_LT_EQ, + ACTIONS(11393), 1, anon_sym_GT_GT_EQ, + ACTIONS(11395), 1, anon_sym_AMP_EQ, + ACTIONS(11397), 1, anon_sym_CARET_EQ, + ACTIONS(11399), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(11401), 1, anon_sym_LT_EQ_GT, + ACTIONS(11403), 1, + anon_sym_or, + ACTIONS(11405), 1, + anon_sym_and, + ACTIONS(11407), 1, anon_sym_bitor, + ACTIONS(11409), 1, + anon_sym_xor, + ACTIONS(11411), 1, anon_sym_bitand, + ACTIONS(11413), 1, anon_sym_not_eq, + STATE(1712), 1, + sym__binary_fold_operator, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + STATE(10629), 1, + sym__fold_operator, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [114926] = 6, + [114100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(11105), 1, - anon_sym_LT, - STATE(5480), 1, - sym_template_argument_list, - ACTIONS(9135), 19, + ACTIONS(8665), 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_EQ, - anon_sym_GT_GT_EQ, + anon_sym_LT, + 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(9137), 30, + sym_literal_suffix, + ACTIONS(8667), 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_RBRACK_RBRACK, + 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, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [114992] = 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_COLON_RBRACK, + [114160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8446), 17, + ACTIONS(9415), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -531303,6 +551741,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_COLON, anon_sym_or, anon_sym_and, @@ -531311,11 +551751,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8448), 35, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9417), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -531337,157 +551784,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, 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, anon_sym_COLON_RBRACK, - [115052] = 25, + [114220] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11112), 1, + ACTIONS(10469), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10667), 1, + anon_sym_AMP, + ACTIONS(10673), 1, + anon_sym_GT_EQ, + ACTIONS(10677), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10679), 1, + anon_sym_bitand, + ACTIONS(10693), 1, anon_sym_PIPE_PIPE, - ACTIONS(11114), 1, + ACTIONS(10695), 1, anon_sym_AMP_AMP, - ACTIONS(11116), 1, + ACTIONS(10697), 1, anon_sym_PIPE, - ACTIONS(11120), 1, - anon_sym_AMP, - ACTIONS(11128), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11130), 1, + ACTIONS(10699), 1, + anon_sym_QMARK, + ACTIONS(10701), 1, anon_sym_or, - ACTIONS(11132), 1, + ACTIONS(10703), 1, anon_sym_and, - ACTIONS(11134), 1, + ACTIONS(10705), 1, anon_sym_bitor, - ACTIONS(11136), 1, - anon_sym_bitand, - STATE(5759), 1, + ACTIONS(10874), 1, + anon_sym_RPAREN, + ACTIONS(11417), 1, + anon_sym_COMMA, + ACTIONS(11419), 1, + anon_sym_EQ, + STATE(3874), 1, sym_argument_list, - STATE(5761), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10089), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(11103), 2, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11108), 2, + ACTIONS(10661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11118), 2, + ACTIONS(10665), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11126), 2, + ACTIONS(10675), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11138), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11110), 3, + ACTIONS(10663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11122), 3, + ACTIONS(10669), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11124), 4, + ACTIONS(10671), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10091), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, + ACTIONS(10785), 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_GT2, - [115156] = 3, + [114334] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10247), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 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_DOT_STAR, - anon_sym_DASH_GT_STAR, - ACTIONS(10249), 26, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10216), 1, + sym_identifier, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + ACTIONS(10240), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(10242), 1, + anon_sym_AMP_AMP, + ACTIONS(10244), 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_literal_suffix, - [115216] = 3, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7986), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8794), 1, + sym__declarator, + STATE(10743), 1, + sym_ms_based_modifier, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7086), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [114438] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8689), 20, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(11421), 1, + anon_sym_LT, + STATE(5547), 1, + sym_template_argument_list, + ACTIONS(9495), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -531498,27 +551968,24 @@ 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(8691), 32, + ACTIONS(9497), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -531540,11 +552007,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [115276] = 3, + anon_sym_DASH_GT, + [114504] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8705), 20, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(11424), 1, + anon_sym_LT, + STATE(5547), 1, + sym_template_argument_list, + ACTIONS(9578), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -531555,27 +552028,24 @@ 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(8707), 32, + ACTIONS(9580), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -531597,137 +552067,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [115336] = 3, + anon_sym_DASH_GT, + [114570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8731), 20, + ACTIONS(9389), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + 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, - anon_sym_DASH_GT, - ACTIONS(8733), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9391), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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_RBRACK_RBRACK, + 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, - [115396] = 30, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [114630] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6111), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10003), 1, + ACTIONS(8156), 1, + anon_sym_COLON, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10006), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10812), 1, - anon_sym_requires, - ACTIONS(11140), 1, - anon_sym_DASH_GT, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(7451), 1, - sym__function_attributes_start, - STATE(7582), 1, - sym_ref_qualifier, - STATE(8483), 1, - sym__function_attributes_end, - STATE(8615), 1, - sym_trailing_return_type, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(6036), 2, + ACTIONS(11427), 1, + anon_sym_LBRACE, + STATE(5936), 1, + sym_field_declaration_list, + STATE(6109), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6264), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(9453), 1, sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8457), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(6113), 3, + STATE(10436), 1, + sym_base_class_clause, + ACTIONS(8160), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7235), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7237), 37, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - STATE(7815), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(10001), 12, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -531739,26 +552184,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [115510] = 10, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [114708] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11138), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9244), 19, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(5645), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -531768,23 +552206,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(9246), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5638), 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, @@ -531792,6 +552234,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, @@ -531802,142 +552245,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [115584] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11138), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9252), 19, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [114770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9419), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(9254), 24, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9421), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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, - anon_sym_not_eq, - anon_sym_GT2, - [115658] = 5, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [114830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11142), 1, - anon_sym_LT, - STATE(2859), 1, - sym_template_argument_list, - ACTIONS(9225), 18, + ACTIONS(9423), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + 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, - anon_sym_DASH_GT, - ACTIONS(9227), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9425), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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, - [115722] = 7, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [114890] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10337), 1, + ACTIONS(10711), 1, anon_sym_LPAREN2, - ACTIONS(10339), 1, + ACTIONS(10713), 1, anon_sym_LBRACK, - STATE(1875), 1, + STATE(1978), 1, sym_parameter_list, - STATE(5063), 1, + STATE(5085), 1, sym__function_declarator_seq, - ACTIONS(9848), 20, + ACTIONS(10198), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -531947,24 +552384,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(9846), 28, + ACTIONS(10196), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -531972,6 +552409,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, @@ -531986,11 +552424,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [115790] = 3, + [114958] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9308), 20, + ACTIONS(11429), 1, + anon_sym_LT, + STATE(2003), 1, + sym_template_argument_list, + ACTIONS(9650), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -532001,17 +552442,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9310), 32, + ACTIONS(9652), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -532021,7 +552460,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, @@ -532044,102 +552483,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [115850] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11114), 1, - anon_sym_AMP_AMP, - ACTIONS(11116), 1, - anon_sym_PIPE, - ACTIONS(11120), 1, - anon_sym_AMP, - ACTIONS(11128), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11130), 1, - anon_sym_or, - ACTIONS(11132), 1, - anon_sym_and, - ACTIONS(11134), 1, - anon_sym_bitor, - ACTIONS(11136), 1, - anon_sym_bitand, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(10123), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11108), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11118), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11126), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11138), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11110), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11122), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11124), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10125), 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, - [115954] = 9, + [115022] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(10711), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(10713), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9290), 19, + STATE(1978), 1, + sym_parameter_list, + STATE(5085), 1, + sym__function_declarator_seq, + ACTIONS(10202), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -532149,23 +552504,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, - ACTIONS(9292), 26, + anon_sym_DOT, + ACTIONS(10200), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -532173,6 +552529,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, @@ -532185,11 +552542,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_GT2, - [116026] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [115090] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9308), 19, + ACTIONS(6883), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9236), 1, + anon_sym_LPAREN2, + ACTIONS(9239), 1, + anon_sym_LBRACK, + ACTIONS(5645), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -532203,23 +552567,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9310), 33, + ACTIONS(5638), 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_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -532243,71 +552604,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [116086] = 25, + [115156] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11114), 1, - anon_sym_AMP_AMP, - ACTIONS(11116), 1, - anon_sym_PIPE, - ACTIONS(11120), 1, - anon_sym_AMP, - ACTIONS(11128), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11130), 1, - anon_sym_or, - ACTIONS(11132), 1, - anon_sym_and, - ACTIONS(11134), 1, - anon_sym_bitor, - ACTIONS(11136), 1, - anon_sym_bitand, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(9344), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11108), 2, + ACTIONS(11432), 1, + sym_literal_suffix, + ACTIONS(5645), 25, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11118), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11126), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11138), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11110), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11122), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11124), 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(9342), 16, + 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(5638), 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, @@ -532315,23 +552653,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_GT2, - [116190] = 6, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [115218] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6515), 1, + ACTIONS(6883), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8835), 1, + ACTIONS(9236), 1, anon_sym_LPAREN2, - ACTIONS(8838), 1, + ACTIONS(9239), 1, anon_sym_LBRACK, - ACTIONS(5260), 18, + ACTIONS(5645), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -532350,7 +552690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5253), 31, + ACTIONS(5638), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -532382,16 +552722,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [116256] = 6, + [115284] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6515), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8835), 1, + ACTIONS(10711), 1, anon_sym_LPAREN2, - ACTIONS(8838), 1, + ACTIONS(10713), 1, anon_sym_LBRACK, - ACTIONS(5260), 18, + STATE(1978), 1, + sym_parameter_list, + STATE(5085), 1, + sym__function_declarator_seq, + ACTIONS(10186), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -532410,7 +552752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5253), 31, + ACTIONS(10184), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -532418,8 +552760,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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -532442,83 +552783,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [116322] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(11145), 1, - anon_sym_LPAREN2, - ACTIONS(11147), 1, - anon_sym_LBRACK, - STATE(5592), 1, - sym_new_declarator, - STATE(5854), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8903), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_identifier, - ACTIONS(8905), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [116392] = 8, + [115352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, - anon_sym_LBRACE, - ACTIONS(11149), 1, - anon_sym_LPAREN2, - ACTIONS(11151), 1, - anon_sym_LBRACK, - STATE(5496), 1, - sym_new_declarator, - STATE(6019), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8841), 16, + ACTIONS(9888), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -532532,18 +552800,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, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8843), 30, + ACTIONS(9890), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -532555,83 +552829,57 @@ 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, - [116462] = 26, + anon_sym_DASH_GT, + [115412] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10176), 1, - anon_sym_EQ, - ACTIONS(10542), 1, + ACTIONS(3098), 1, + anon_sym_LBRACE, + ACTIONS(11434), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11436), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - ACTIONS(11069), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11071), 1, - anon_sym_AMP_AMP, - ACTIONS(11073), 1, - anon_sym_PIPE, - ACTIONS(11077), 1, - anon_sym_AMP, - ACTIONS(11083), 1, - anon_sym_GT_EQ, - ACTIONS(11089), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11091), 1, - anon_sym_or, - ACTIONS(11093), 1, - anon_sym_and, - ACTIONS(11095), 1, - anon_sym_bitor, - ACTIONS(11097), 1, - anon_sym_bitand, - STATE(5762), 1, + STATE(5597), 1, + sym_new_declarator, + STATE(6094), 2, sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(10975), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11065), 2, + sym_initializer_list, + ACTIONS(9248), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11075), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11079), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11081), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10178), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9250), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK, + 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, @@ -532643,63 +552891,71 @@ 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, - [116568] = 25, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [115482] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(9882), 1, + ACTIONS(8554), 1, anon_sym_COLON_COLON, - ACTIONS(9894), 1, + ACTIONS(10246), 1, anon_sym_STAR, - ACTIONS(9896), 1, + ACTIONS(10248), 1, anon_sym_AMP_AMP, - ACTIONS(9898), 1, + ACTIONS(10250), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7870), 1, + STATE(7990), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8701), 1, + STATE(8816), 1, sym__declarator, - STATE(10563), 1, + STATE(10837), 1, sym_ms_based_modifier, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6842), 2, + STATE(7086), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -532711,7 +552967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -532725,222 +552981,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [116672] = 51, + [115586] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11438), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9697), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(9699), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [115648] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(10759), 1, anon_sym_LBRACK, - ACTIONS(10431), 1, + ACTIONS(10805), 1, anon_sym_DOT_STAR, - ACTIONS(10433), 1, + ACTIONS(10807), 1, anon_sym_DASH_GT_STAR, - ACTIONS(10981), 1, + ACTIONS(11335), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(10983), 1, + ACTIONS(11337), 1, anon_sym_COMMA, - ACTIONS(10987), 1, + ACTIONS(11341), 1, anon_sym_DASH, - ACTIONS(10989), 1, + ACTIONS(11343), 1, anon_sym_PLUS, - ACTIONS(10991), 1, + ACTIONS(11345), 1, anon_sym_STAR, - ACTIONS(10993), 1, + ACTIONS(11347), 1, anon_sym_SLASH, - ACTIONS(10995), 1, + ACTIONS(11349), 1, anon_sym_PERCENT, - ACTIONS(10997), 1, + ACTIONS(11351), 1, anon_sym_PIPE_PIPE, - ACTIONS(10999), 1, + ACTIONS(11353), 1, anon_sym_AMP_AMP, - ACTIONS(11001), 1, + ACTIONS(11355), 1, anon_sym_PIPE, - ACTIONS(11003), 1, + ACTIONS(11357), 1, anon_sym_CARET, - ACTIONS(11005), 1, + ACTIONS(11359), 1, anon_sym_AMP, - ACTIONS(11007), 1, + ACTIONS(11361), 1, anon_sym_EQ_EQ, - ACTIONS(11009), 1, + ACTIONS(11363), 1, anon_sym_BANG_EQ, - ACTIONS(11011), 1, + ACTIONS(11365), 1, anon_sym_GT, - ACTIONS(11013), 1, + ACTIONS(11367), 1, anon_sym_GT_EQ, - ACTIONS(11015), 1, + ACTIONS(11369), 1, anon_sym_LT_EQ, - ACTIONS(11017), 1, + ACTIONS(11371), 1, anon_sym_LT, - ACTIONS(11019), 1, + ACTIONS(11373), 1, anon_sym_LT_LT, - ACTIONS(11021), 1, + ACTIONS(11375), 1, anon_sym_GT_GT, - ACTIONS(11023), 1, + ACTIONS(11377), 1, anon_sym_EQ, - ACTIONS(11025), 1, + ACTIONS(11379), 1, anon_sym_QMARK, - ACTIONS(11027), 1, + ACTIONS(11381), 1, anon_sym_STAR_EQ, - ACTIONS(11029), 1, + ACTIONS(11383), 1, anon_sym_SLASH_EQ, - ACTIONS(11031), 1, + ACTIONS(11385), 1, anon_sym_PERCENT_EQ, - ACTIONS(11033), 1, + ACTIONS(11387), 1, anon_sym_PLUS_EQ, - ACTIONS(11035), 1, + ACTIONS(11389), 1, anon_sym_DASH_EQ, - ACTIONS(11037), 1, + ACTIONS(11391), 1, anon_sym_LT_LT_EQ, - ACTIONS(11039), 1, + ACTIONS(11393), 1, anon_sym_GT_GT_EQ, - ACTIONS(11041), 1, + ACTIONS(11395), 1, anon_sym_AMP_EQ, - ACTIONS(11043), 1, + ACTIONS(11397), 1, anon_sym_CARET_EQ, - ACTIONS(11045), 1, + ACTIONS(11399), 1, anon_sym_PIPE_EQ, - ACTIONS(11047), 1, + ACTIONS(11401), 1, anon_sym_LT_EQ_GT, - ACTIONS(11049), 1, + ACTIONS(11403), 1, anon_sym_or, - ACTIONS(11051), 1, + ACTIONS(11405), 1, anon_sym_and, - ACTIONS(11053), 1, + ACTIONS(11407), 1, anon_sym_bitor, - ACTIONS(11055), 1, + ACTIONS(11409), 1, anon_sym_xor, - ACTIONS(11057), 1, + ACTIONS(11411), 1, anon_sym_bitand, - ACTIONS(11059), 1, + ACTIONS(11413), 1, anon_sym_not_eq, - ACTIONS(11153), 1, + ACTIONS(11440), 1, anon_sym_RPAREN, - STATE(1667), 1, + STATE(1712), 1, sym__binary_fold_operator, - STATE(5506), 1, + STATE(5663), 1, sym_argument_list, - STATE(5507), 1, + STATE(5664), 1, sym_subscript_argument_list, - STATE(10893), 1, + STATE(10629), 1, sym__fold_operator, - ACTIONS(10429), 2, + ACTIONS(10803), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11061), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [116828] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7546), 23, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7544), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [116888] = 25, + [115804] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(9882), 1, - anon_sym_COLON_COLON, - ACTIONS(9894), 1, + ACTIONS(10218), 1, anon_sym_STAR, - ACTIONS(9896), 1, + ACTIONS(10220), 1, anon_sym_AMP_AMP, - ACTIONS(9898), 1, + ACTIONS(10222), 1, anon_sym_AMP, - STATE(3682), 1, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7870), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8644), 1, + STATE(8541), 1, sym__declarator, - STATE(10563), 1, + STATE(11612), 1, sym_ms_based_modifier, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6842), 2, + STATE(7086), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -532952,7 +553209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -532966,99 +553223,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [116992] = 3, + [115908] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8831), 20, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + ACTIONS(11319), 1, + anon_sym_LBRACK, + ACTIONS(11323), 1, + anon_sym_DOT, + ACTIONS(11442), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11448), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11450), 1, + anon_sym_AMP_AMP, + ACTIONS(11452), 1, + anon_sym_PIPE, + ACTIONS(11456), 1, + anon_sym_AMP, + ACTIONS(11464), 1, + anon_sym_QMARK, + ACTIONS(11466), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11468), 1, + anon_sym_or, + ACTIONS(11470), 1, + anon_sym_and, + ACTIONS(11472), 1, + anon_sym_bitor, + ACTIONS(11474), 1, + anon_sym_bitand, + STATE(5741), 1, + sym_argument_list, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(10489), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11321), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11444), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11454), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11462), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11458), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11460), 4, 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_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8829), 32, - anon_sym_DOT_DOT_DOT, + ACTIONS(10491), 14, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_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, - [117052] = 3, + anon_sym_GT2, + [116016] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6256), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, anon_sym_LPAREN2, + ACTIONS(3444), 1, anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8554), 1, + anon_sym_COLON_COLON, + ACTIONS(10246), 1, anon_sym_STAR, + ACTIONS(10248), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6254), 39, + ACTIONS(10250), 1, anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7990), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8789), 1, + sym__declarator, + STATE(10837), 1, + sym_ms_based_modifier, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7086), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -533071,19 +553383,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [117112] = 3, + [116120] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9358), 19, + ACTIONS(3098), 1, + anon_sym_LBRACE, + ACTIONS(11434), 1, + anon_sym_LPAREN2, + ACTIONS(11436), 1, + anon_sym_LBRACK, + STATE(5611), 1, + sym_new_declarator, + STATE(6042), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9256), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -533098,23 +553412,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, anon_sym_DASH_GT, - ACTIONS(9360), 33, + ACTIONS(9258), 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, @@ -533126,194 +553434,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_or, + anon_sym_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, - [117172] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6260), 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_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6258), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [117232] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6264), 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_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6262), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [117292] = 26, + [116190] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10184), 1, - anon_sym_EQ, ACTIONS(10542), 1, + anon_sym_EQ, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11069), 1, + ACTIONS(11480), 1, anon_sym_PIPE_PIPE, - ACTIONS(11071), 1, + ACTIONS(11482), 1, anon_sym_AMP_AMP, - ACTIONS(11073), 1, + ACTIONS(11484), 1, anon_sym_PIPE, - ACTIONS(11077), 1, + ACTIONS(11488), 1, anon_sym_AMP, - ACTIONS(11083), 1, + ACTIONS(11494), 1, anon_sym_GT_EQ, - ACTIONS(11089), 1, + ACTIONS(11498), 1, anon_sym_LT_EQ_GT, - ACTIONS(11091), 1, + ACTIONS(11500), 1, anon_sym_or, - ACTIONS(11093), 1, + ACTIONS(11502), 1, anon_sym_and, - ACTIONS(11095), 1, + ACTIONS(11504), 1, anon_sym_bitor, - ACTIONS(11097), 1, + ACTIONS(11506), 1, anon_sym_bitand, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10975), 2, + ACTIONS(11329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11065), 2, + ACTIONS(11476), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11075), 2, + ACTIONS(11486), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11085), 2, + ACTIONS(11496), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11067), 3, + ACTIONS(11478), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11079), 3, + ACTIONS(11490), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11081), 3, + ACTIONS(11492), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10186), 17, + ACTIONS(10544), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RBRACK, @@ -533331,10 +553525,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [117398] = 3, + [116296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8913), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + 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_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8915), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [116356] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8671), 20, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(11327), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, + anon_sym_DOT, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9681), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -533348,24 +553612,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, - anon_sym_DASH_GT, - ACTIONS(8673), 32, + ACTIONS(9683), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -533386,12 +553645,26 @@ 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, - [117458] = 3, + [116428] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8675), 20, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + ACTIONS(11319), 1, + anon_sym_LBRACK, + ACTIONS(11323), 1, + anon_sym_DOT, + STATE(5741), 1, + sym_argument_list, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11321), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9715), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -533401,28 +553674,23 @@ 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, - anon_sym_DASH_GT, - ACTIONS(8677), 32, + ACTIONS(9717), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -533430,7 +553698,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, @@ -533441,86 +553708,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_GT2, + [116502] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10435), 1, + anon_sym_EQ, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(11327), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, + anon_sym_DOT, + ACTIONS(11480), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11482), 1, + anon_sym_AMP_AMP, + ACTIONS(11484), 1, + anon_sym_PIPE, + ACTIONS(11488), 1, + anon_sym_AMP, + ACTIONS(11494), 1, + anon_sym_GT_EQ, + ACTIONS(11498), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11500), 1, + anon_sym_or, + ACTIONS(11502), 1, + anon_sym_and, + ACTIONS(11504), 1, + anon_sym_bitor, + ACTIONS(11506), 1, + anon_sym_bitand, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(11333), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [117518] = 33, + anon_sym_DASH_GT, + ACTIONS(11476), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11486), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11496), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11478), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11490), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11492), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10437), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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, + [116608] = 25, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(4800), 1, + ACTIONS(3446), 1, + anon_sym_STAR, + ACTIONS(3448), 1, + anon_sym_AMP, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5301), 1, - anon_sym_LPAREN2, - ACTIONS(5311), 1, - anon_sym_LBRACK, - ACTIONS(8195), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(8307), 1, - anon_sym_STAR, - ACTIONS(11155), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11159), 1, - anon_sym_AMP_AMP, - ACTIONS(11161), 1, - anon_sym_AMP, - ACTIONS(11163), 1, - anon_sym_EQ, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(5185), 1, - sym_parameter_list, - STATE(7878), 1, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8611), 1, + STATE(8794), 1, sym__declarator, - STATE(8846), 1, - sym__abstract_declarator, - STATE(9000), 1, - sym_abstract_reference_declarator, - STATE(9736), 1, - sym_variadic_declarator, - STATE(9741), 1, - sym_variadic_reference_declarator, - STATE(10656), 1, + STATE(11554), 1, sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(11157), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(9025), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8389), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(10976), 5, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7086), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -533532,16 +553854,32 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [117638] = 6, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [116712] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(11165), 1, - anon_sym_LT, - STATE(5480), 1, - sym_template_argument_list, - ACTIONS(9177), 19, + ACTIONS(10711), 1, + anon_sym_LPAREN2, + ACTIONS(10713), 1, + anon_sym_LBRACK, + STATE(1978), 1, + sym_parameter_list, + STATE(5085), 1, + sym__function_declarator_seq, + ACTIONS(10206), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -533551,25 +553889,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(9179), 30, + ACTIONS(10204), 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_LBRACK, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -533577,6 +553914,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, @@ -533591,68 +553929,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [117704] = 3, + [116780] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(9007), 23, - aux_sym_preproc_elif_token1, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10805), 1, + anon_sym_DOT_STAR, + ACTIONS(10807), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(11335), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11337), 1, + anon_sym_COMMA, + ACTIONS(11341), 1, anon_sym_DASH, + ACTIONS(11343), 1, anon_sym_PLUS, + ACTIONS(11345), 1, + anon_sym_STAR, + ACTIONS(11347), 1, anon_sym_SLASH, + ACTIONS(11349), 1, + anon_sym_PERCENT, + ACTIONS(11351), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11353), 1, + anon_sym_AMP_AMP, + ACTIONS(11355), 1, anon_sym_PIPE, + ACTIONS(11357), 1, + anon_sym_CARET, + ACTIONS(11359), 1, anon_sym_AMP, + ACTIONS(11361), 1, + anon_sym_EQ_EQ, + ACTIONS(11363), 1, + anon_sym_BANG_EQ, + ACTIONS(11365), 1, anon_sym_GT, + ACTIONS(11367), 1, + anon_sym_GT_EQ, + ACTIONS(11369), 1, anon_sym_LT_EQ, + ACTIONS(11371), 1, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + ACTIONS(11373), 1, + anon_sym_LT_LT, + ACTIONS(11375), 1, + anon_sym_GT_GT, + ACTIONS(11377), 1, + anon_sym_EQ, + ACTIONS(11379), 1, + anon_sym_QMARK, + ACTIONS(11381), 1, + anon_sym_STAR_EQ, + ACTIONS(11383), 1, + anon_sym_SLASH_EQ, + ACTIONS(11385), 1, + anon_sym_PERCENT_EQ, + ACTIONS(11387), 1, + anon_sym_PLUS_EQ, + ACTIONS(11389), 1, + anon_sym_DASH_EQ, + ACTIONS(11391), 1, + anon_sym_LT_LT_EQ, + ACTIONS(11393), 1, + anon_sym_GT_GT_EQ, + ACTIONS(11395), 1, + anon_sym_AMP_EQ, + ACTIONS(11397), 1, + anon_sym_CARET_EQ, + ACTIONS(11399), 1, + anon_sym_PIPE_EQ, + ACTIONS(11401), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11403), 1, anon_sym_or, + ACTIONS(11405), 1, anon_sym_and, + ACTIONS(11407), 1, anon_sym_bitor, + ACTIONS(11409), 1, anon_sym_xor, + ACTIONS(11411), 1, anon_sym_bitand, + ACTIONS(11413), 1, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9009), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(11508), 1, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + STATE(1712), 1, + sym__binary_fold_operator, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + STATE(10629), 1, + sym__fold_operator, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [117764] = 3, + [116936] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8693), 20, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(9711), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -533666,14 +554053,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(8695), 32, + ACTIONS(9713), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -533683,7 +554069,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, @@ -533706,94 +554092,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [117824] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6111), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10003), 1, - anon_sym___attribute__, - ACTIONS(10006), 1, - anon_sym___attribute, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10826), 1, - anon_sym_requires, - ACTIONS(11140), 1, - anon_sym_DASH_GT, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(7455), 1, - sym__function_attributes_start, - STATE(7566), 1, - sym_ref_qualifier, - STATE(8489), 1, - sym__function_attributes_end, - STATE(8562), 1, - sym_trailing_return_type, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10439), 2, - anon_sym_final, - anon_sym_override, - STATE(6036), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6264), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8457), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(6113), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - STATE(7801), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [117938] = 3, + [116998] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9440), 20, + ACTIONS(11510), 1, + anon_sym_LT, + STATE(5535), 1, + sym_template_argument_list, + ACTIONS(9711), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -533804,17 +554110,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9442), 32, + ACTIONS(9713), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -533824,7 +554128,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, @@ -533847,23 +554151,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [117998] = 9, + [117062] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - ACTIONS(10973), 1, - anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - STATE(5762), 1, - sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9286), 17, + ACTIONS(11513), 1, + anon_sym_LT, + STATE(2998), 1, + sym_template_argument_list, + ACTIONS(9650), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -533874,22 +554169,25 @@ 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, - ACTIONS(9288), 28, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9652), 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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -533910,14 +554208,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [118070] = 5, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [117126] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(11168), 1, - anon_sym_LT, - STATE(1898), 1, - sym_template_argument_list, - ACTIONS(9225), 18, + ACTIONS(6479), 1, + anon_sym_LBRACK, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(10348), 1, + anon_sym_AMP_AMP, + ACTIONS(10350), 1, + anon_sym_AMP, + ACTIONS(10354), 1, + anon_sym___attribute__, + ACTIONS(10357), 1, + anon_sym___attribute, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11300), 1, + anon_sym_requires, + ACTIONS(11516), 1, + anon_sym_DASH_GT, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(7596), 1, + sym__function_attributes_start, + STATE(7672), 1, + sym_ref_qualifier, + STATE(8636), 1, + sym__function_attributes_end, + STATE(8713), 1, + sym_trailing_return_type, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10821), 2, + anon_sym_final, + anon_sym_override, + STATE(6144), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6360), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8522), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6481), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + STATE(7936), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [117240] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9915), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -533928,15 +554308,17 @@ 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(9227), 32, + ACTIONS(9917), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -533946,7 +554328,7 @@ 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -533969,13 +554351,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [118134] = 4, + [117300] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6233), 2, + ACTIONS(6601), 2, anon_sym_COLON_COLON, anon_sym_LBRACE, - ACTIONS(6235), 20, + ACTIONS(6603), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -533996,7 +554378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6228), 30, + ACTIONS(6596), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -534027,116 +554409,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [118196] = 30, + [117362] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6111), 1, + ACTIONS(6479), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(9997), 1, + ACTIONS(10348), 1, anon_sym_AMP_AMP, - ACTIONS(9999), 1, + ACTIONS(10350), 1, anon_sym_AMP, - ACTIONS(10003), 1, + ACTIONS(10354), 1, anon_sym___attribute__, - ACTIONS(10006), 1, + ACTIONS(10357), 1, anon_sym___attribute, - ACTIONS(10012), 1, + ACTIONS(10363), 1, anon_sym_const, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10442), 1, + ACTIONS(10824), 1, anon_sym_requires, - ACTIONS(11171), 1, + ACTIONS(11518), 1, anon_sym_DASH_GT, - STATE(4238), 1, + STATE(4333), 1, sym_alignas_qualifier, - STATE(7464), 1, + STATE(7573), 1, sym__function_attributes_start, - STATE(7557), 1, + STATE(7677), 1, sym_ref_qualifier, - STATE(8423), 1, + STATE(8588), 1, sym_trailing_return_type, - STATE(8501), 1, + STATE(8670), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10014), 2, + ACTIONS(10365), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(10439), 2, + ACTIONS(10821), 2, anon_sym_final, anon_sym_override, - STATE(6036), 2, + STATE(6144), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6264), 2, + STATE(6360), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8457), 2, + STATE(8522), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(6113), 3, + ACTIONS(6481), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(7806), 3, + STATE(7964), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(10001), 12, + ACTIONS(10352), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [118310] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - ACTIONS(10973), 1, - anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - STATE(5762), 1, - sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(10975), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11067), 3, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [117476] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6601), 1, + anon_sym_COLON_COLON, + ACTIONS(9513), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9282), 14, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -534149,15 +554516,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9284), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9515), 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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -534176,203 +554547,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [118386] = 10, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [117538] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11323), 1, anon_sym_DOT, - STATE(5762), 1, + ACTIONS(11442), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11448), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11450), 1, + anon_sym_AMP_AMP, + ACTIONS(11452), 1, + anon_sym_PIPE, + ACTIONS(11456), 1, + anon_sym_AMP, + ACTIONS(11464), 1, + anon_sym_QMARK, + ACTIONS(11466), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11468), 1, + anon_sym_or, + ACTIONS(11470), 1, + anon_sym_and, + ACTIONS(11472), 1, + anon_sym_bitor, + ACTIONS(11474), 1, + anon_sym_bitand, + STATE(5741), 1, sym_argument_list, - STATE(5765), 1, + STATE(5917), 1, sym_subscript_argument_list, - ACTIONS(10975), 2, + ACTIONS(10477), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11321), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10979), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9282), 17, + ACTIONS(11444), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11454), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11462), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11458), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11460), 4, anon_sym_GT, + 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(9284), 26, - anon_sym_DOT_DOT_DOT, + ACTIONS(10479), 14, 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_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, - [118460] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3051), 1, - anon_sym_STAR, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8694), 1, - sym__declarator, - STATE(11063), 1, - sym_ms_based_modifier, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6842), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [118564] = 25, + anon_sym_GT2, + [117646] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(9900), 1, + ACTIONS(10234), 1, anon_sym_STAR, - ACTIONS(9902), 1, + ACTIONS(10236), 1, anon_sym_AMP_AMP, - ACTIONS(9904), 1, + ACTIONS(10238), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7878), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8705), 1, + STATE(8541), 1, sym__declarator, - STATE(10656), 1, + STATE(10900), 1, sym_ms_based_modifier, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6842), 2, + STATE(7086), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -534384,7 +554697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -534398,121 +554711,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [118668] = 51, + [117750] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(10759), 1, anon_sym_LBRACK, - ACTIONS(10431), 1, + ACTIONS(10805), 1, anon_sym_DOT_STAR, - ACTIONS(10433), 1, + ACTIONS(10807), 1, anon_sym_DASH_GT_STAR, - ACTIONS(10981), 1, + ACTIONS(11335), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(10983), 1, + ACTIONS(11337), 1, anon_sym_COMMA, - ACTIONS(10987), 1, + ACTIONS(11341), 1, anon_sym_DASH, - ACTIONS(10989), 1, + ACTIONS(11343), 1, anon_sym_PLUS, - ACTIONS(10991), 1, + ACTIONS(11345), 1, anon_sym_STAR, - ACTIONS(10993), 1, + ACTIONS(11347), 1, anon_sym_SLASH, - ACTIONS(10995), 1, + ACTIONS(11349), 1, anon_sym_PERCENT, - ACTIONS(10997), 1, + ACTIONS(11351), 1, anon_sym_PIPE_PIPE, - ACTIONS(10999), 1, + ACTIONS(11353), 1, anon_sym_AMP_AMP, - ACTIONS(11001), 1, + ACTIONS(11355), 1, anon_sym_PIPE, - ACTIONS(11003), 1, + ACTIONS(11357), 1, anon_sym_CARET, - ACTIONS(11005), 1, + ACTIONS(11359), 1, anon_sym_AMP, - ACTIONS(11007), 1, + ACTIONS(11361), 1, anon_sym_EQ_EQ, - ACTIONS(11009), 1, + ACTIONS(11363), 1, anon_sym_BANG_EQ, - ACTIONS(11011), 1, + ACTIONS(11365), 1, anon_sym_GT, - ACTIONS(11013), 1, + ACTIONS(11367), 1, anon_sym_GT_EQ, - ACTIONS(11015), 1, + ACTIONS(11369), 1, anon_sym_LT_EQ, - ACTIONS(11017), 1, + ACTIONS(11371), 1, anon_sym_LT, - ACTIONS(11019), 1, + ACTIONS(11373), 1, anon_sym_LT_LT, - ACTIONS(11021), 1, + ACTIONS(11375), 1, anon_sym_GT_GT, - ACTIONS(11023), 1, + ACTIONS(11377), 1, anon_sym_EQ, - ACTIONS(11025), 1, + ACTIONS(11379), 1, anon_sym_QMARK, - ACTIONS(11027), 1, + ACTIONS(11381), 1, anon_sym_STAR_EQ, - ACTIONS(11029), 1, + ACTIONS(11383), 1, anon_sym_SLASH_EQ, - ACTIONS(11031), 1, + ACTIONS(11385), 1, anon_sym_PERCENT_EQ, - ACTIONS(11033), 1, + ACTIONS(11387), 1, anon_sym_PLUS_EQ, - ACTIONS(11035), 1, + ACTIONS(11389), 1, anon_sym_DASH_EQ, - ACTIONS(11037), 1, + ACTIONS(11391), 1, anon_sym_LT_LT_EQ, - ACTIONS(11039), 1, + ACTIONS(11393), 1, anon_sym_GT_GT_EQ, - ACTIONS(11041), 1, + ACTIONS(11395), 1, anon_sym_AMP_EQ, - ACTIONS(11043), 1, + ACTIONS(11397), 1, anon_sym_CARET_EQ, - ACTIONS(11045), 1, + ACTIONS(11399), 1, anon_sym_PIPE_EQ, - ACTIONS(11047), 1, + ACTIONS(11401), 1, anon_sym_LT_EQ_GT, - ACTIONS(11049), 1, + ACTIONS(11403), 1, anon_sym_or, - ACTIONS(11051), 1, + ACTIONS(11405), 1, anon_sym_and, - ACTIONS(11053), 1, + ACTIONS(11407), 1, anon_sym_bitor, - ACTIONS(11055), 1, + ACTIONS(11409), 1, anon_sym_xor, - ACTIONS(11057), 1, + ACTIONS(11411), 1, anon_sym_bitand, - ACTIONS(11059), 1, + ACTIONS(11413), 1, anon_sym_not_eq, - ACTIONS(11173), 1, + ACTIONS(11520), 1, anon_sym_RPAREN, - STATE(1667), 1, + STATE(1712), 1, sym__binary_fold_operator, - STATE(5506), 1, + STATE(5663), 1, sym_argument_list, - STATE(5507), 1, + STATE(5664), 1, sym_subscript_argument_list, - STATE(10893), 1, + STATE(10629), 1, sym__fold_operator, - ACTIONS(10429), 2, + ACTIONS(10803), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11061), 2, + ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [118824] = 6, + [117906] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6748), 1, - anon_sym_COLON_COLON, - ACTIONS(7037), 1, - anon_sym_LT, - STATE(1956), 1, - sym_template_argument_list, - ACTIONS(6753), 19, + ACTIONS(10711), 1, + anon_sym_LPAREN2, + ACTIONS(10713), 1, + anon_sym_LBRACK, + STATE(1978), 1, + sym_parameter_list, + STATE(5085), 1, + sym__function_declarator_seq, + ACTIONS(10210), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -534522,25 +554837,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(6758), 30, + ACTIONS(10208), 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_LBRACK, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -534548,6 +554862,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, @@ -534562,61 +554877,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [118890] = 25, + [117974] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(9900), 1, + ACTIONS(10234), 1, anon_sym_STAR, - ACTIONS(9902), 1, + ACTIONS(10236), 1, anon_sym_AMP_AMP, - ACTIONS(9904), 1, + ACTIONS(10238), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7878), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8652), 1, + STATE(8548), 1, sym__declarator, - STATE(10656), 1, + STATE(10900), 1, sym_ms_based_modifier, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6842), 2, + STATE(7086), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -534628,7 +554942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -534642,79 +554956,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [118994] = 3, + [118078] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9078), 23, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9080), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(8084), 1, anon_sym_LPAREN2, + ACTIONS(8086), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8088), 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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + ACTIONS(8090), 1, + anon_sym_AMP, + ACTIONS(8098), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [119054] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9082), 23, + STATE(2079), 1, + sym_parameter_list, + STATE(5348), 1, + sym__function_declarator_seq, + STATE(6149), 1, + sym__abstract_declarator, + STATE(5347), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9429), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, - anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -534726,103 +555001,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(9084), 29, + ACTIONS(9427), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [119114] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6790), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6792), 46, - 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___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - 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, - [119174] = 6, + [118156] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(7087), 1, anon_sym_COLON_COLON, - ACTIONS(11175), 1, + ACTIONS(7445), 1, anon_sym_LT, - STATE(5429), 1, + STATE(2053), 1, sym_template_argument_list, - ACTIONS(9177), 17, + ACTIONS(7092), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -534832,15 +555041,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_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9179), 32, + ACTIONS(7097), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -534848,9 +555059,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -534858,7 +555067,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, @@ -534873,14 +555081,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [119240] = 5, + anon_sym_GT2, + [118222] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(11142), 1, + ACTIONS(9599), 1, + anon_sym_EQ, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(11327), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, + anon_sym_DOT, + ACTIONS(11480), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11482), 1, + anon_sym_AMP_AMP, + ACTIONS(11484), 1, + anon_sym_PIPE, + ACTIONS(11488), 1, + anon_sym_AMP, + ACTIONS(11494), 1, + anon_sym_GT_EQ, + ACTIONS(11498), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11500), 1, + anon_sym_or, + ACTIONS(11502), 1, + anon_sym_and, + ACTIONS(11504), 1, + anon_sym_bitor, + ACTIONS(11506), 1, + anon_sym_bitand, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11329), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11476), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11486), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11496), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11478), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11490), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11492), 3, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - STATE(2966), 1, - sym_template_argument_list, - ACTIONS(9225), 18, + ACTIONS(9597), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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, + [118328] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + ACTIONS(11319), 1, + anon_sym_LBRACK, + ACTIONS(11323), 1, + anon_sym_DOT, + STATE(5741), 1, + sym_argument_list, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9657), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -534890,26 +555188,23 @@ 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(9227), 32, + ACTIONS(9659), 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, @@ -534917,7 +555212,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, @@ -534930,31 +555224,20 @@ 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, - [119304] = 4, + anon_sym_GT2, + [118400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11178), 1, - sym_literal_suffix, - ACTIONS(5260), 25, + ACTIONS(8750), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -534962,222 +555245,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5253), 26, + sym_literal_suffix, + ACTIONS(8752), 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_RBRACK_RBRACK, + 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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [119366] = 25, + 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, + anon_sym_COLON_RBRACK, + [118460] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - ACTIONS(9888), 1, - anon_sym_STAR, - ACTIONS(9890), 1, + ACTIONS(11323), 1, + anon_sym_DOT, + ACTIONS(11448), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11450), 1, anon_sym_AMP_AMP, - ACTIONS(9892), 1, + ACTIONS(11452), 1, + anon_sym_PIPE, + ACTIONS(11456), 1, anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8467), 1, - sym__declarator, - STATE(10719), 1, - sym_ms_based_modifier, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6842), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [119470] = 51, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10431), 1, + ACTIONS(11466), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11468), 1, + anon_sym_or, + ACTIONS(11470), 1, + anon_sym_and, + ACTIONS(11472), 1, + anon_sym_bitor, + ACTIONS(11474), 1, + anon_sym_bitand, + STATE(5741), 1, + sym_argument_list, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(10538), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11321), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11325), 2, anon_sym_DOT_STAR, - ACTIONS(10433), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(10981), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10983), 1, - anon_sym_COMMA, - ACTIONS(10987), 1, + anon_sym_DASH_GT, + ACTIONS(11444), 2, anon_sym_DASH, - ACTIONS(10989), 1, anon_sym_PLUS, - ACTIONS(10991), 1, + ACTIONS(11454), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11462), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11446), 3, anon_sym_STAR, - ACTIONS(10993), 1, anon_sym_SLASH, - ACTIONS(10995), 1, anon_sym_PERCENT, - ACTIONS(10997), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10999), 1, - anon_sym_AMP_AMP, - ACTIONS(11001), 1, - anon_sym_PIPE, - ACTIONS(11003), 1, - anon_sym_CARET, - ACTIONS(11005), 1, - anon_sym_AMP, - ACTIONS(11007), 1, + ACTIONS(11458), 3, anon_sym_EQ_EQ, - ACTIONS(11009), 1, anon_sym_BANG_EQ, - ACTIONS(11011), 1, + anon_sym_not_eq, + ACTIONS(11460), 4, anon_sym_GT, - ACTIONS(11013), 1, anon_sym_GT_EQ, - ACTIONS(11015), 1, anon_sym_LT_EQ, - ACTIONS(11017), 1, anon_sym_LT, - ACTIONS(11019), 1, - anon_sym_LT_LT, - ACTIONS(11021), 1, - anon_sym_GT_GT, - ACTIONS(11023), 1, - anon_sym_EQ, - ACTIONS(11025), 1, + ACTIONS(10540), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_QMARK, - ACTIONS(11027), 1, anon_sym_STAR_EQ, - ACTIONS(11029), 1, anon_sym_SLASH_EQ, - ACTIONS(11031), 1, anon_sym_PERCENT_EQ, - ACTIONS(11033), 1, anon_sym_PLUS_EQ, - ACTIONS(11035), 1, anon_sym_DASH_EQ, - ACTIONS(11037), 1, anon_sym_LT_LT_EQ, - ACTIONS(11039), 1, - anon_sym_GT_GT_EQ, - ACTIONS(11041), 1, anon_sym_AMP_EQ, - ACTIONS(11043), 1, anon_sym_CARET_EQ, - ACTIONS(11045), 1, anon_sym_PIPE_EQ, - ACTIONS(11047), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11049), 1, - anon_sym_or, - ACTIONS(11051), 1, - anon_sym_and, - ACTIONS(11053), 1, - anon_sym_bitor, - ACTIONS(11055), 1, - anon_sym_xor, - ACTIONS(11057), 1, - anon_sym_bitand, - ACTIONS(11059), 1, - anon_sym_not_eq, - ACTIONS(11180), 1, - anon_sym_RPAREN, - STATE(1667), 1, - sym__binary_fold_operator, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - STATE(10893), 1, - sym__fold_operator, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11061), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [119626] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [118564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8831), 19, + ACTIONS(9063), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -535197,18 +555384,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8829), 33, + anon_sym_DASH_GT, + ACTIONS(9065), 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, @@ -535230,118 +555417,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [118624] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6479), 1, + anon_sym_LBRACK, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(10348), 1, + anon_sym_AMP_AMP, + ACTIONS(10350), 1, + anon_sym_AMP, + ACTIONS(10354), 1, + anon_sym___attribute__, + ACTIONS(10357), 1, + anon_sym___attribute, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11298), 1, + anon_sym_requires, + ACTIONS(11516), 1, anon_sym_DASH_GT, - [119686] = 3, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(7588), 1, + sym__function_attributes_start, + STATE(7681), 1, + sym_ref_qualifier, + STATE(8666), 1, + sym__function_attributes_end, + STATE(8688), 1, + sym_trailing_return_type, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(6144), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6360), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8522), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6481), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + STATE(7916), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118738] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8382), 17, + ACTIONS(10902), 1, + anon_sym_LBRACK, + STATE(5674), 1, + sym_new_declarator, + ACTIONS(9535), 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_COLON, + 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(8384), 35, + ACTIONS(9537), 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_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LBRACE, + 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_DOT_STAR, 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, - anon_sym_COLON_RBRACK, - [119746] = 25, + [118802] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(8360), 1, + ACTIONS(8554), 1, anon_sym_COLON_COLON, - ACTIONS(9888), 1, + ACTIONS(10264), 1, anon_sym_STAR, - ACTIONS(9890), 1, + ACTIONS(10266), 1, anon_sym_AMP_AMP, - ACTIONS(9892), 1, + ACTIONS(10268), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7869), 1, + STATE(7990), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8407), 1, + STATE(8804), 1, sym__declarator, - STATE(10719), 1, + STATE(10957), 1, sym_ms_based_modifier, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6842), 2, + STATE(7086), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -535353,7 +555626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -535367,99 +555640,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [119850] = 24, + [118906] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - ACTIONS(10973), 1, - anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - ACTIONS(11071), 1, - anon_sym_AMP_AMP, - ACTIONS(11073), 1, - anon_sym_PIPE, - ACTIONS(11077), 1, - anon_sym_AMP, - ACTIONS(11083), 1, - anon_sym_GT_EQ, - ACTIONS(11089), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11093), 1, - anon_sym_and, - ACTIONS(11095), 1, - anon_sym_bitor, - ACTIONS(11097), 1, - anon_sym_bitand, - STATE(5762), 1, - sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(9282), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(10975), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11065), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11075), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11067), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11079), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11081), 3, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(11522), 1, anon_sym_LT, - ACTIONS(9284), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [119952] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2738), 1, - anon_sym_LBRACE, - ACTIONS(11149), 1, - anon_sym_LPAREN2, - ACTIONS(11151), 1, - anon_sym_LBRACK, - STATE(5563), 1, - sym_new_declarator, - STATE(5986), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8866), 16, + STATE(5542), 1, + sym_template_argument_list, + ACTIONS(9495), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -535469,22 +555659,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(8868), 30, + ACTIONS(9497), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -535492,149 +555685,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_or, - anon_sym_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, - [120022] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7731), 1, - anon_sym_LPAREN2, - ACTIONS(7733), 1, - anon_sym_STAR, - ACTIONS(7735), 1, - anon_sym_AMP_AMP, - ACTIONS(7737), 1, - anon_sym_AMP, - ACTIONS(7745), 1, - anon_sym_LBRACK, - STATE(1971), 1, - sym_parameter_list, - STATE(5165), 1, - sym__function_declarator_seq, - STATE(6038), 1, - sym__abstract_declarator, - STATE(5164), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9074), 19, - aux_sym_preproc_elif_token1, - 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, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9072), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [120100] = 22, + anon_sym_GT2, + [118972] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11073), 1, - anon_sym_PIPE, - ACTIONS(11077), 1, - anon_sym_AMP, - ACTIONS(11083), 1, - anon_sym_GT_EQ, - ACTIONS(11089), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11095), 1, - anon_sym_bitor, - ACTIONS(11097), 1, - anon_sym_bitand, - STATE(5762), 1, + STATE(5741), 1, sym_argument_list, - STATE(5765), 1, + STATE(5917), 1, sym_subscript_argument_list, - ACTIONS(10975), 2, + ACTIONS(11321), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10979), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11065), 2, + ACTIONS(9673), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11075), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9282), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(11067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11079), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11081), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 19, + anon_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(9675), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -535642,156 +555753,63 @@ 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, - [120198] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10180), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10305), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10307), 1, - anon_sym_AMP_AMP, - ACTIONS(10309), 1, - anon_sym_PIPE, - ACTIONS(10313), 1, - anon_sym_AMP, - ACTIONS(10319), 1, - anon_sym_GT_EQ, - ACTIONS(10323), 1, anon_sym_LT_EQ_GT, - ACTIONS(10325), 1, - anon_sym_or, - ACTIONS(10327), 1, - anon_sym_and, - ACTIONS(10329), 1, anon_sym_bitor, - ACTIONS(10331), 1, anon_sym_bitand, - ACTIONS(10455), 1, - anon_sym_QMARK, - ACTIONS(10482), 1, - anon_sym_RPAREN, - ACTIONS(11182), 1, - anon_sym_COMMA, - ACTIONS(11184), 1, - anon_sym_EQ, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10301), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10311), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10321), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10303), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10315), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10317), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10411), 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, - [120312] = 20, + anon_sym_GT2, + [119046] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11077), 1, - anon_sym_AMP, - ACTIONS(11083), 1, - anon_sym_GT_EQ, - ACTIONS(11089), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11097), 1, - anon_sym_bitand, - STATE(5762), 1, + STATE(5741), 1, sym_argument_list, - STATE(5765), 1, + STATE(5917), 1, sym_subscript_argument_list, - ACTIONS(10975), 2, + ACTIONS(11321), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10979), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11065), 2, + ACTIONS(9677), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11075), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11079), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11081), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9282), 4, - anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - ACTIONS(9284), 20, + anon_sym_xor, + ACTIONS(9679), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -535799,259 +555817,400 @@ 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, - [120406] = 19, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [119120] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(10759), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - ACTIONS(11077), 1, - anon_sym_AMP, - ACTIONS(11083), 1, - anon_sym_GT_EQ, - ACTIONS(11089), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11097), 1, - anon_sym_bitand, - STATE(5762), 1, - sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(10975), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10979), 2, + ACTIONS(10805), 1, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11065), 2, + ACTIONS(10807), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(11335), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11337), 1, + anon_sym_COMMA, + ACTIONS(11341), 1, anon_sym_DASH, + ACTIONS(11343), 1, anon_sym_PLUS, - ACTIONS(11085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11067), 3, + ACTIONS(11345), 1, anon_sym_STAR, + ACTIONS(11347), 1, anon_sym_SLASH, + ACTIONS(11349), 1, anon_sym_PERCENT, - ACTIONS(11079), 3, + ACTIONS(11351), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11353), 1, + anon_sym_AMP_AMP, + ACTIONS(11355), 1, + anon_sym_PIPE, + ACTIONS(11357), 1, + anon_sym_CARET, + ACTIONS(11359), 1, + anon_sym_AMP, + ACTIONS(11361), 1, anon_sym_EQ_EQ, + ACTIONS(11363), 1, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11081), 3, + ACTIONS(11365), 1, anon_sym_GT, + ACTIONS(11367), 1, + anon_sym_GT_EQ, + ACTIONS(11369), 1, anon_sym_LT_EQ, + ACTIONS(11371), 1, anon_sym_LT, - ACTIONS(9282), 6, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(11373), 1, + anon_sym_LT_LT, + ACTIONS(11375), 1, + anon_sym_GT_GT, + ACTIONS(11377), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(9284), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, + ACTIONS(11379), 1, anon_sym_QMARK, + ACTIONS(11381), 1, anon_sym_STAR_EQ, + ACTIONS(11383), 1, anon_sym_SLASH_EQ, + ACTIONS(11385), 1, anon_sym_PERCENT_EQ, + ACTIONS(11387), 1, anon_sym_PLUS_EQ, + ACTIONS(11389), 1, anon_sym_DASH_EQ, + ACTIONS(11391), 1, anon_sym_LT_LT_EQ, + ACTIONS(11393), 1, anon_sym_GT_GT_EQ, + ACTIONS(11395), 1, anon_sym_AMP_EQ, + ACTIONS(11397), 1, anon_sym_CARET_EQ, + ACTIONS(11399), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(11401), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11403), 1, + anon_sym_or, + ACTIONS(11405), 1, + anon_sym_and, + ACTIONS(11407), 1, anon_sym_bitor, - [120498] = 4, + ACTIONS(11409), 1, + anon_sym_xor, + ACTIONS(11411), 1, + anon_sym_bitand, + ACTIONS(11413), 1, + anon_sym_not_eq, + ACTIONS(11525), 1, + anon_sym_RPAREN, + STATE(1712), 1, + sym__binary_fold_operator, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + STATE(10629), 1, + sym__fold_operator, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11415), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [119276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6233), 2, + ACTIONS(7104), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7106), 45, + 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___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [119336] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4676), 1, anon_sym_LBRACE, - ACTIONS(6235), 18, + ACTIONS(11527), 1, + anon_sym_LPAREN2, + ACTIONS(11529), 1, + anon_sym_LBRACK, + STATE(5718), 1, + sym_new_declarator, + STATE(6024), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9256), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + 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(6228), 32, + sym_identifier, + ACTIONS(9258), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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_RBRACK, + 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_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, - [120560] = 6, + anon_sym_COLON_RBRACK, + [119406] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(6748), 1, - anon_sym_COLON_COLON, - ACTIONS(7037), 1, - anon_sym_LT, - STATE(1956), 1, - sym_template_argument_list, - ACTIONS(6753), 17, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10805), 1, + anon_sym_DOT_STAR, + ACTIONS(10807), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(11335), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11337), 1, + anon_sym_COMMA, + ACTIONS(11341), 1, anon_sym_DASH, + ACTIONS(11343), 1, anon_sym_PLUS, + ACTIONS(11345), 1, anon_sym_STAR, + ACTIONS(11347), 1, anon_sym_SLASH, + ACTIONS(11349), 1, anon_sym_PERCENT, + ACTIONS(11351), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11353), 1, + anon_sym_AMP_AMP, + ACTIONS(11355), 1, anon_sym_PIPE, + ACTIONS(11357), 1, anon_sym_CARET, + ACTIONS(11359), 1, anon_sym_AMP, + ACTIONS(11361), 1, + anon_sym_EQ_EQ, + ACTIONS(11363), 1, + anon_sym_BANG_EQ, + ACTIONS(11365), 1, anon_sym_GT, + ACTIONS(11367), 1, + anon_sym_GT_EQ, + ACTIONS(11369), 1, anon_sym_LT_EQ, + ACTIONS(11371), 1, + anon_sym_LT, + ACTIONS(11373), 1, anon_sym_LT_LT, + ACTIONS(11375), 1, anon_sym_GT_GT, + ACTIONS(11377), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6758), 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_LBRACK, - anon_sym_RBRACK, + ACTIONS(11379), 1, anon_sym_QMARK, + ACTIONS(11381), 1, anon_sym_STAR_EQ, + ACTIONS(11383), 1, anon_sym_SLASH_EQ, + ACTIONS(11385), 1, anon_sym_PERCENT_EQ, + ACTIONS(11387), 1, anon_sym_PLUS_EQ, + ACTIONS(11389), 1, anon_sym_DASH_EQ, + ACTIONS(11391), 1, anon_sym_LT_LT_EQ, + ACTIONS(11393), 1, anon_sym_GT_GT_EQ, + ACTIONS(11395), 1, anon_sym_AMP_EQ, + ACTIONS(11397), 1, anon_sym_CARET_EQ, + ACTIONS(11399), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(11401), 1, anon_sym_LT_EQ_GT, + ACTIONS(11403), 1, + anon_sym_or, + ACTIONS(11405), 1, + anon_sym_and, + ACTIONS(11407), 1, anon_sym_bitor, + ACTIONS(11409), 1, + anon_sym_xor, + ACTIONS(11411), 1, anon_sym_bitand, + ACTIONS(11413), 1, anon_sym_not_eq, + ACTIONS(11531), 1, + anon_sym_RPAREN, + STATE(1712), 1, + sym__binary_fold_operator, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + STATE(10629), 1, + sym__fold_operator, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [120626] = 25, + [119562] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8554), 1, anon_sym_COLON_COLON, - ACTIONS(9912), 1, + ACTIONS(10264), 1, anon_sym_STAR, - ACTIONS(9914), 1, + ACTIONS(10266), 1, anon_sym_AMP_AMP, - ACTIONS(9916), 1, + ACTIONS(10268), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7878), 1, + STATE(7990), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8701), 1, + STATE(8794), 1, sym__declarator, - STATE(10776), 1, + STATE(10957), 1, sym_ms_based_modifier, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6842), 2, + STATE(7086), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -536063,7 +556222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -536077,166 +556236,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [120730] = 51, + [119666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10431), 1, - anon_sym_DOT_STAR, - ACTIONS(10433), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(10981), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10983), 1, - anon_sym_COMMA, - ACTIONS(10987), 1, + ACTIONS(9697), 20, anon_sym_DASH, - ACTIONS(10989), 1, anon_sym_PLUS, - ACTIONS(10991), 1, anon_sym_STAR, - ACTIONS(10993), 1, anon_sym_SLASH, - ACTIONS(10995), 1, anon_sym_PERCENT, - ACTIONS(10997), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10999), 1, - anon_sym_AMP_AMP, - ACTIONS(11001), 1, anon_sym_PIPE, - ACTIONS(11003), 1, anon_sym_CARET, - ACTIONS(11005), 1, anon_sym_AMP, - ACTIONS(11007), 1, - anon_sym_EQ_EQ, - ACTIONS(11009), 1, - anon_sym_BANG_EQ, - ACTIONS(11011), 1, anon_sym_GT, - ACTIONS(11013), 1, - anon_sym_GT_EQ, - ACTIONS(11015), 1, anon_sym_LT_EQ, - ACTIONS(11017), 1, anon_sym_LT, - ACTIONS(11019), 1, anon_sym_LT_LT, - ACTIONS(11021), 1, anon_sym_GT_GT, - ACTIONS(11023), 1, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(11025), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9699), 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, - ACTIONS(11027), 1, anon_sym_STAR_EQ, - ACTIONS(11029), 1, anon_sym_SLASH_EQ, - ACTIONS(11031), 1, anon_sym_PERCENT_EQ, - ACTIONS(11033), 1, anon_sym_PLUS_EQ, - ACTIONS(11035), 1, anon_sym_DASH_EQ, - ACTIONS(11037), 1, anon_sym_LT_LT_EQ, - ACTIONS(11039), 1, anon_sym_GT_GT_EQ, - ACTIONS(11041), 1, anon_sym_AMP_EQ, - ACTIONS(11043), 1, anon_sym_CARET_EQ, - ACTIONS(11045), 1, anon_sym_PIPE_EQ, - ACTIONS(11047), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(11049), 1, - anon_sym_or, - ACTIONS(11051), 1, - anon_sym_and, - ACTIONS(11053), 1, anon_sym_bitor, - ACTIONS(11055), 1, - anon_sym_xor, - ACTIONS(11057), 1, anon_sym_bitand, - ACTIONS(11059), 1, anon_sym_not_eq, - ACTIONS(11186), 1, - anon_sym_RPAREN, - STATE(1667), 1, - sym__binary_fold_operator, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - STATE(10893), 1, - sym__fold_operator, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11061), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [120886] = 17, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [119726] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11083), 1, - anon_sym_GT_EQ, - ACTIONS(11089), 1, + ACTIONS(11448), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11450), 1, + anon_sym_AMP_AMP, + ACTIONS(11452), 1, + anon_sym_PIPE, + ACTIONS(11456), 1, + anon_sym_AMP, + ACTIONS(11466), 1, anon_sym_LT_EQ_GT, - STATE(5762), 1, + ACTIONS(11468), 1, + anon_sym_or, + ACTIONS(11470), 1, + anon_sym_and, + ACTIONS(11472), 1, + anon_sym_bitor, + ACTIONS(11474), 1, + anon_sym_bitand, + STATE(5741), 1, sym_argument_list, - STATE(5765), 1, + STATE(5917), 1, sym_subscript_argument_list, - ACTIONS(10975), 2, + ACTIONS(10542), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11321), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10979), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11065), 2, + ACTIONS(11444), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11085), 2, + ACTIONS(11454), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11462), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11067), 3, + ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11079), 3, + ACTIONS(11458), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11081), 3, + ACTIONS(11460), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9282), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(9284), 21, + ACTIONS(10544), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -536244,83 +556365,86 @@ 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_bitor, - anon_sym_bitand, - [120974] = 25, + anon_sym_GT2, + [119830] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(6479), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, - sym_identifier, - ACTIONS(8203), 1, - anon_sym_COLON_COLON, - ACTIONS(9912), 1, - anon_sym_STAR, - ACTIONS(9914), 1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(10348), 1, anon_sym_AMP_AMP, - ACTIONS(9916), 1, + ACTIONS(10350), 1, anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7436), 1, + ACTIONS(10354), 1, + anon_sym___attribute__, + ACTIONS(10357), 1, + anon_sym___attribute, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10861), 1, + anon_sym_requires, + ACTIONS(11518), 1, + anon_sym_DASH_GT, + STATE(4333), 1, sym_alignas_qualifier, - STATE(7878), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8644), 1, - sym__declarator, - STATE(10776), 1, - sym_ms_based_modifier, - ACTIONS(2939), 2, + STATE(7587), 1, + sym__function_attributes_start, + STATE(7688), 1, + sym_ref_qualifier, + STATE(8526), 1, + sym_trailing_return_type, + STATE(8665), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10365), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6842), 2, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(6144), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6360), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8522), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6481), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(7929), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(10352), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -536332,59 +556456,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [121078] = 16, + [119944] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11083), 1, - anon_sym_GT_EQ, - ACTIONS(11089), 1, - anon_sym_LT_EQ_GT, - STATE(5762), 1, + STATE(5741), 1, sym_argument_list, - STATE(5765), 1, + STATE(5917), 1, sym_subscript_argument_list, - ACTIONS(10975), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10979), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11065), 2, + ACTIONS(9681), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11081), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9282), 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, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9284), 24, + ACTIONS(9683), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -536392,133 +556506,163 @@ 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, - [121164] = 28, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_GT2, + [120016] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10188), 1, - anon_sym_EQ, - ACTIONS(10542), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11063), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11069), 1, + ACTIONS(11448), 1, anon_sym_PIPE_PIPE, - ACTIONS(11071), 1, + ACTIONS(11450), 1, anon_sym_AMP_AMP, - ACTIONS(11073), 1, + ACTIONS(11452), 1, anon_sym_PIPE, - ACTIONS(11077), 1, + ACTIONS(11456), 1, anon_sym_AMP, - ACTIONS(11083), 1, - anon_sym_GT_EQ, - ACTIONS(11087), 1, - anon_sym_QMARK, - ACTIONS(11089), 1, + ACTIONS(11466), 1, anon_sym_LT_EQ_GT, - ACTIONS(11091), 1, + ACTIONS(11468), 1, anon_sym_or, - ACTIONS(11093), 1, + ACTIONS(11470), 1, anon_sym_and, - ACTIONS(11095), 1, + ACTIONS(11472), 1, anon_sym_bitor, - ACTIONS(11097), 1, + ACTIONS(11474), 1, anon_sym_bitand, - STATE(5762), 1, + STATE(5741), 1, sym_argument_list, - STATE(5765), 1, + STATE(5917), 1, sym_subscript_argument_list, - ACTIONS(10975), 2, + ACTIONS(9599), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11321), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10979), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11065), 2, + ACTIONS(11444), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11075), 2, + ACTIONS(11454), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11085), 2, + ACTIONS(11462), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11067), 3, + ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11079), 3, + ACTIONS(11458), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11081), 3, + ACTIONS(11460), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10190), 15, + ACTIONS(9597), 16, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - 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, - [121274] = 3, + anon_sym_GT2, + [120120] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(8721), 20, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + ACTIONS(11319), 1, + anon_sym_LBRACK, + ACTIONS(11323), 1, + anon_sym_DOT, + ACTIONS(11448), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11450), 1, + anon_sym_AMP_AMP, + ACTIONS(11452), 1, + anon_sym_PIPE, + ACTIONS(11456), 1, + anon_sym_AMP, + ACTIONS(11466), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11468), 1, + anon_sym_or, + ACTIONS(11470), 1, + anon_sym_and, + ACTIONS(11472), 1, + anon_sym_bitor, + ACTIONS(11474), 1, + anon_sym_bitand, + STATE(5741), 1, + sym_argument_list, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(10473), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11321), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11444), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11454), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11462), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11458), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11460), 4, 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_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8723), 32, + ACTIONS(10475), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_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, @@ -536526,94 +556670,160 @@ 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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [121334] = 30, + anon_sym_GT2, + [120224] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6111), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(9997), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10216), 1, + sym_identifier, + ACTIONS(10218), 1, + anon_sym_STAR, + ACTIONS(10220), 1, anon_sym_AMP_AMP, - ACTIONS(9999), 1, + ACTIONS(10222), 1, anon_sym_AMP, - ACTIONS(10003), 1, - anon_sym___attribute__, - ACTIONS(10006), 1, - anon_sym___attribute, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10478), 1, - anon_sym_requires, - ACTIONS(11171), 1, - anon_sym_DASH_GT, - STATE(4238), 1, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7483), 1, - sym__function_attributes_start, - STATE(7576), 1, - sym_ref_qualifier, - STATE(8458), 1, - sym_trailing_return_type, - STATE(8542), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10014), 2, + STATE(7986), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8548), 1, + sym__declarator, + STATE(11612), 1, + sym_ms_based_modifier, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(6036), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6264), 2, + STATE(7086), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8457), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(6113), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [120328] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, anon_sym_LPAREN2, - STATE(7846), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(10001), 12, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8228), 1, + sym_identifier, + ACTIONS(8675), 1, + anon_sym_COLON_COLON, + ACTIONS(10252), 1, + anon_sym_STAR, + ACTIONS(10254), 1, + anon_sym_AMP_AMP, + ACTIONS(10256), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7993), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8816), 1, + sym__declarator, + STATE(11008), 1, + sym_ms_based_modifier, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7086), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -536625,69 +556835,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [121448] = 5, + [120432] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(10584), 1, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, anon_sym_LBRACK, - STATE(5497), 1, - sym_new_declarator, - ACTIONS(9173), 20, + ACTIONS(10805), 1, + anon_sym_DOT_STAR, + ACTIONS(10807), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(11335), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11337), 1, + anon_sym_COMMA, + ACTIONS(11341), 1, anon_sym_DASH, + ACTIONS(11343), 1, anon_sym_PLUS, + ACTIONS(11345), 1, anon_sym_STAR, + ACTIONS(11347), 1, anon_sym_SLASH, + ACTIONS(11349), 1, anon_sym_PERCENT, + ACTIONS(11351), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11353), 1, + anon_sym_AMP_AMP, + ACTIONS(11355), 1, anon_sym_PIPE, + ACTIONS(11357), 1, anon_sym_CARET, + ACTIONS(11359), 1, anon_sym_AMP, + ACTIONS(11361), 1, + anon_sym_EQ_EQ, + ACTIONS(11363), 1, + anon_sym_BANG_EQ, + ACTIONS(11365), 1, anon_sym_GT, + ACTIONS(11367), 1, anon_sym_GT_EQ, + ACTIONS(11369), 1, anon_sym_LT_EQ, + ACTIONS(11371), 1, anon_sym_LT, + ACTIONS(11373), 1, anon_sym_LT_LT, + ACTIONS(11375), 1, anon_sym_GT_GT, + ACTIONS(11377), 1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9175), 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, + ACTIONS(11379), 1, anon_sym_QMARK, + ACTIONS(11381), 1, anon_sym_STAR_EQ, + ACTIONS(11383), 1, anon_sym_SLASH_EQ, + ACTIONS(11385), 1, anon_sym_PERCENT_EQ, + ACTIONS(11387), 1, anon_sym_PLUS_EQ, + ACTIONS(11389), 1, anon_sym_DASH_EQ, + ACTIONS(11391), 1, anon_sym_LT_LT_EQ, + ACTIONS(11393), 1, + anon_sym_GT_GT_EQ, + ACTIONS(11395), 1, anon_sym_AMP_EQ, + ACTIONS(11397), 1, anon_sym_CARET_EQ, + ACTIONS(11399), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(11401), 1, anon_sym_LT_EQ_GT, + ACTIONS(11403), 1, + anon_sym_or, + ACTIONS(11405), 1, + anon_sym_and, + ACTIONS(11407), 1, anon_sym_bitor, + ACTIONS(11409), 1, + anon_sym_xor, + ACTIONS(11411), 1, anon_sym_bitand, + ACTIONS(11413), 1, anon_sym_not_eq, + ACTIONS(11533), 1, + anon_sym_RPAREN, + STATE(1712), 1, + sym__binary_fold_operator, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + STATE(10629), 1, + sym__fold_operator, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [121512] = 3, + [120588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 23, + ACTIONS(9333), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -536711,7 +556967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(7627), 29, + ACTIONS(9335), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -536741,19 +556997,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [121572] = 7, + [120648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6751), 1, - anon_sym_LBRACE, - ACTIONS(7037), 1, - anon_sym_LT, - STATE(1956), 1, - sym_template_argument_list, - ACTIONS(6748), 2, - anon_sym_LPAREN2, - anon_sym_COLON_COLON, - ACTIONS(6753), 19, + ACTIONS(9337), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -536762,6 +557009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, anon_sym_COLON, @@ -536773,7 +557021,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6758), 28, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9339), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -536781,6 +557032,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -536802,42 +557054,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [121640] = 3, + [120708] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9440), 19, + ACTIONS(9826), 1, + anon_sym_EQ, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(11327), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, + anon_sym_DOT, + ACTIONS(11480), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11482), 1, + anon_sym_AMP_AMP, + ACTIONS(11484), 1, + anon_sym_PIPE, + ACTIONS(11488), 1, + anon_sym_AMP, + ACTIONS(11494), 1, + anon_sym_GT_EQ, + ACTIONS(11498), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11500), 1, + anon_sym_or, + ACTIONS(11502), 1, + anon_sym_and, + ACTIONS(11504), 1, + anon_sym_bitor, + ACTIONS(11506), 1, + anon_sym_bitand, + ACTIONS(11535), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11537), 1, + anon_sym_QMARK, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11329), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11476), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11486), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11496), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11478), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11490), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11492), 3, 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(9442), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(9828), 15, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, + anon_sym_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -536851,68 +557136,60 @@ 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, - [121700] = 25, + [120818] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(8360), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(9906), 1, + ACTIONS(10252), 1, anon_sym_STAR, - ACTIONS(9908), 1, + ACTIONS(10254), 1, anon_sym_AMP_AMP, - ACTIONS(9910), 1, + ACTIONS(10256), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7869), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8705), 1, + STATE(8789), 1, sym__declarator, - STATE(10827), 1, + STATE(11008), 1, sym_ms_based_modifier, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6842), 2, + STATE(7086), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -536924,7 +557201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -536938,323 +557215,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [121804] = 51, + [120922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10431), 1, - anon_sym_DOT_STAR, - ACTIONS(10433), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(10981), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10983), 1, - anon_sym_COMMA, - ACTIONS(10987), 1, + ACTIONS(6601), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6603), 18, anon_sym_DASH, - ACTIONS(10989), 1, anon_sym_PLUS, - ACTIONS(10991), 1, anon_sym_STAR, - ACTIONS(10993), 1, anon_sym_SLASH, - ACTIONS(10995), 1, anon_sym_PERCENT, - ACTIONS(10997), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10999), 1, - anon_sym_AMP_AMP, - ACTIONS(11001), 1, anon_sym_PIPE, - ACTIONS(11003), 1, anon_sym_CARET, - ACTIONS(11005), 1, anon_sym_AMP, - ACTIONS(11007), 1, - anon_sym_EQ_EQ, - ACTIONS(11009), 1, - anon_sym_BANG_EQ, - ACTIONS(11011), 1, anon_sym_GT, - ACTIONS(11013), 1, - anon_sym_GT_EQ, - ACTIONS(11015), 1, anon_sym_LT_EQ, - ACTIONS(11017), 1, anon_sym_LT, - ACTIONS(11019), 1, anon_sym_LT_LT, - ACTIONS(11021), 1, anon_sym_GT_GT, - ACTIONS(11023), 1, anon_sym_EQ, - ACTIONS(11025), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6596), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(11027), 1, anon_sym_STAR_EQ, - ACTIONS(11029), 1, anon_sym_SLASH_EQ, - ACTIONS(11031), 1, anon_sym_PERCENT_EQ, - ACTIONS(11033), 1, anon_sym_PLUS_EQ, - ACTIONS(11035), 1, anon_sym_DASH_EQ, - ACTIONS(11037), 1, anon_sym_LT_LT_EQ, - ACTIONS(11039), 1, anon_sym_GT_GT_EQ, - ACTIONS(11041), 1, anon_sym_AMP_EQ, - ACTIONS(11043), 1, anon_sym_CARET_EQ, - ACTIONS(11045), 1, anon_sym_PIPE_EQ, - ACTIONS(11047), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(11049), 1, - anon_sym_or, - ACTIONS(11051), 1, - anon_sym_and, - ACTIONS(11053), 1, anon_sym_bitor, - ACTIONS(11055), 1, - anon_sym_xor, - ACTIONS(11057), 1, anon_sym_bitand, - ACTIONS(11059), 1, anon_sym_not_eq, - ACTIONS(11188), 1, - anon_sym_RPAREN, - STATE(1667), 1, - sym__binary_fold_operator, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - STATE(10893), 1, - sym__fold_operator, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11061), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [121960] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [120984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6746), 7, + ACTIONS(9445), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, anon_sym___attribute, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6751), 45, - 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___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_or, anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [122020] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(9965), 1, - anon_sym_decltype, - ACTIONS(11190), 1, - sym_auto, - STATE(5972), 1, - sym_decltype_auto, - ACTIONS(6798), 7, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6800), 41, + ACTIONS(9447), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [122088] = 25, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [121044] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8360), 1, + ACTIONS(7087), 1, anon_sym_COLON_COLON, - ACTIONS(9906), 1, + ACTIONS(7445), 1, + anon_sym_LT, + STATE(2053), 1, + sym_template_argument_list, + ACTIONS(7092), 17, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(9908), 1, - anon_sym_AMP_AMP, - ACTIONS(9910), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8652), 1, - sym__declarator, - STATE(10827), 1, - sym_ms_based_modifier, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6842), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [122192] = 8, + 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(7097), 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_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_DOT_STAR, + anon_sym_DASH_GT, + [121110] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, - anon_sym_LBRACE, - ACTIONS(11149), 1, - anon_sym_LPAREN2, - ACTIONS(11151), 1, - anon_sym_LBRACK, - STATE(5457), 1, - sym_new_declarator, - STATE(6014), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8804), 16, + ACTIONS(11513), 1, + anon_sym_LT, + STATE(5135), 1, + sym_template_argument_list, + ACTIONS(9650), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -537265,21 +557408,25 @@ 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(8806), 30, + ACTIONS(9652), 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, @@ -537291,68 +557438,52 @@ 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, - [122262] = 14, + [121174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - ACTIONS(10973), 1, - anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - ACTIONS(11089), 1, - anon_sym_LT_EQ_GT, - STATE(5762), 1, - sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(10975), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11065), 2, + ACTIONS(9224), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11067), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9282), 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_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9284), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9222), 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_RBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -537367,35 +557498,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, - [122344] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [121234] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - anon_sym_EQ, - ACTIONS(6515), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8835), 1, + ACTIONS(10842), 1, anon_sym_LPAREN2, - ACTIONS(8838), 1, + ACTIONS(10844), 1, anon_sym_LBRACK, - ACTIONS(5278), 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(5260), 17, + STATE(1975), 1, + sym_parameter_list, + STATE(5229), 1, + sym__function_declarator_seq, + ACTIONS(10186), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -537405,25 +557527,37 @@ 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(5253), 18, + ACTIONS(10184), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_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, @@ -537432,181 +557566,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [122414] = 51, + anon_sym_GT2, + [121302] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(10759), 1, anon_sym_LBRACK, - ACTIONS(10431), 1, + ACTIONS(10805), 1, anon_sym_DOT_STAR, - ACTIONS(10433), 1, + ACTIONS(10807), 1, anon_sym_DASH_GT_STAR, - ACTIONS(10981), 1, + ACTIONS(11335), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(10983), 1, + ACTIONS(11337), 1, anon_sym_COMMA, - ACTIONS(10987), 1, + ACTIONS(11341), 1, anon_sym_DASH, - ACTIONS(10989), 1, + ACTIONS(11343), 1, anon_sym_PLUS, - ACTIONS(10991), 1, + ACTIONS(11345), 1, anon_sym_STAR, - ACTIONS(10993), 1, + ACTIONS(11347), 1, anon_sym_SLASH, - ACTIONS(10995), 1, + ACTIONS(11349), 1, anon_sym_PERCENT, - ACTIONS(10997), 1, + ACTIONS(11351), 1, anon_sym_PIPE_PIPE, - ACTIONS(10999), 1, + ACTIONS(11353), 1, anon_sym_AMP_AMP, - ACTIONS(11001), 1, + ACTIONS(11355), 1, anon_sym_PIPE, - ACTIONS(11003), 1, + ACTIONS(11357), 1, anon_sym_CARET, - ACTIONS(11005), 1, + ACTIONS(11359), 1, anon_sym_AMP, - ACTIONS(11007), 1, + ACTIONS(11361), 1, anon_sym_EQ_EQ, - ACTIONS(11009), 1, + ACTIONS(11363), 1, anon_sym_BANG_EQ, - ACTIONS(11011), 1, + ACTIONS(11365), 1, anon_sym_GT, - ACTIONS(11013), 1, + ACTIONS(11367), 1, anon_sym_GT_EQ, - ACTIONS(11015), 1, + ACTIONS(11369), 1, anon_sym_LT_EQ, - ACTIONS(11017), 1, + ACTIONS(11371), 1, anon_sym_LT, - ACTIONS(11019), 1, + ACTIONS(11373), 1, anon_sym_LT_LT, - ACTIONS(11021), 1, + ACTIONS(11375), 1, anon_sym_GT_GT, - ACTIONS(11023), 1, + ACTIONS(11377), 1, anon_sym_EQ, - ACTIONS(11025), 1, + ACTIONS(11379), 1, anon_sym_QMARK, - ACTIONS(11027), 1, + ACTIONS(11381), 1, anon_sym_STAR_EQ, - ACTIONS(11029), 1, + ACTIONS(11383), 1, anon_sym_SLASH_EQ, - ACTIONS(11031), 1, + ACTIONS(11385), 1, anon_sym_PERCENT_EQ, - ACTIONS(11033), 1, + ACTIONS(11387), 1, anon_sym_PLUS_EQ, - ACTIONS(11035), 1, + ACTIONS(11389), 1, anon_sym_DASH_EQ, - ACTIONS(11037), 1, + ACTIONS(11391), 1, anon_sym_LT_LT_EQ, - ACTIONS(11039), 1, + ACTIONS(11393), 1, anon_sym_GT_GT_EQ, - ACTIONS(11041), 1, + ACTIONS(11395), 1, anon_sym_AMP_EQ, - ACTIONS(11043), 1, + ACTIONS(11397), 1, anon_sym_CARET_EQ, - ACTIONS(11045), 1, + ACTIONS(11399), 1, anon_sym_PIPE_EQ, - ACTIONS(11047), 1, + ACTIONS(11401), 1, anon_sym_LT_EQ_GT, - ACTIONS(11049), 1, + ACTIONS(11403), 1, anon_sym_or, - ACTIONS(11051), 1, + ACTIONS(11405), 1, anon_sym_and, - ACTIONS(11053), 1, + ACTIONS(11407), 1, anon_sym_bitor, - ACTIONS(11055), 1, + ACTIONS(11409), 1, anon_sym_xor, - ACTIONS(11057), 1, + ACTIONS(11411), 1, anon_sym_bitand, - ACTIONS(11059), 1, + ACTIONS(11413), 1, anon_sym_not_eq, - ACTIONS(11192), 1, + ACTIONS(11539), 1, anon_sym_RPAREN, - STATE(1667), 1, + STATE(1712), 1, sym__binary_fold_operator, - STATE(5506), 1, + STATE(5663), 1, sym_argument_list, - STATE(5507), 1, + STATE(5664), 1, sym_subscript_argument_list, - STATE(10893), 1, + STATE(10629), 1, sym__fold_operator, - ACTIONS(10429), 2, + ACTIONS(10803), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11061), 2, + ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [122570] = 12, + [121458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - ACTIONS(10973), 1, - anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - STATE(5762), 1, - sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(10975), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11065), 2, + ACTIONS(8657), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11067), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9282), 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_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(9284), 26, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8659), 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_RBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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, - [122648] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + 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, + anon_sym_COLON_RBRACK, + [121518] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9093), 23, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(11527), 1, + anon_sym_LPAREN2, + ACTIONS(11529), 1, + anon_sym_LBRACK, + STATE(5650), 1, + sym_new_declarator, + STATE(5946), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9248), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -537627,10 +557764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9095), 29, + ACTIONS(9250), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -537638,7 +557772,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -537650,9 +557783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, @@ -537660,318 +557791,576 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [122708] = 51, + [121588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9888), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(9890), 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, + [121648] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(10759), 1, anon_sym_LBRACK, - ACTIONS(10431), 1, + ACTIONS(10805), 1, anon_sym_DOT_STAR, - ACTIONS(10433), 1, + ACTIONS(10807), 1, anon_sym_DASH_GT_STAR, - ACTIONS(10981), 1, + ACTIONS(11335), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(10983), 1, + ACTIONS(11337), 1, anon_sym_COMMA, - ACTIONS(10987), 1, + ACTIONS(11341), 1, anon_sym_DASH, - ACTIONS(10989), 1, + ACTIONS(11343), 1, anon_sym_PLUS, - ACTIONS(10991), 1, + ACTIONS(11345), 1, anon_sym_STAR, - ACTIONS(10993), 1, + ACTIONS(11347), 1, anon_sym_SLASH, - ACTIONS(10995), 1, + ACTIONS(11349), 1, anon_sym_PERCENT, - ACTIONS(10997), 1, + ACTIONS(11351), 1, anon_sym_PIPE_PIPE, - ACTIONS(10999), 1, + ACTIONS(11353), 1, anon_sym_AMP_AMP, - ACTIONS(11001), 1, + ACTIONS(11355), 1, anon_sym_PIPE, - ACTIONS(11003), 1, + ACTIONS(11357), 1, anon_sym_CARET, - ACTIONS(11005), 1, + ACTIONS(11359), 1, anon_sym_AMP, - ACTIONS(11007), 1, + ACTIONS(11361), 1, anon_sym_EQ_EQ, - ACTIONS(11009), 1, + ACTIONS(11363), 1, anon_sym_BANG_EQ, - ACTIONS(11011), 1, + ACTIONS(11365), 1, anon_sym_GT, - ACTIONS(11013), 1, + ACTIONS(11367), 1, anon_sym_GT_EQ, - ACTIONS(11015), 1, + ACTIONS(11369), 1, anon_sym_LT_EQ, - ACTIONS(11017), 1, + ACTIONS(11371), 1, anon_sym_LT, - ACTIONS(11019), 1, + ACTIONS(11373), 1, anon_sym_LT_LT, - ACTIONS(11021), 1, + ACTIONS(11375), 1, anon_sym_GT_GT, - ACTIONS(11023), 1, + ACTIONS(11377), 1, anon_sym_EQ, - ACTIONS(11025), 1, + ACTIONS(11379), 1, anon_sym_QMARK, - ACTIONS(11027), 1, + ACTIONS(11381), 1, anon_sym_STAR_EQ, - ACTIONS(11029), 1, + ACTIONS(11383), 1, anon_sym_SLASH_EQ, - ACTIONS(11031), 1, + ACTIONS(11385), 1, anon_sym_PERCENT_EQ, - ACTIONS(11033), 1, + ACTIONS(11387), 1, anon_sym_PLUS_EQ, - ACTIONS(11035), 1, + ACTIONS(11389), 1, anon_sym_DASH_EQ, - ACTIONS(11037), 1, + ACTIONS(11391), 1, anon_sym_LT_LT_EQ, - ACTIONS(11039), 1, + ACTIONS(11393), 1, anon_sym_GT_GT_EQ, - ACTIONS(11041), 1, + ACTIONS(11395), 1, anon_sym_AMP_EQ, - ACTIONS(11043), 1, + ACTIONS(11397), 1, anon_sym_CARET_EQ, - ACTIONS(11045), 1, + ACTIONS(11399), 1, anon_sym_PIPE_EQ, - ACTIONS(11047), 1, + ACTIONS(11401), 1, anon_sym_LT_EQ_GT, - ACTIONS(11049), 1, + ACTIONS(11403), 1, anon_sym_or, - ACTIONS(11051), 1, + ACTIONS(11405), 1, anon_sym_and, - ACTIONS(11053), 1, + ACTIONS(11407), 1, anon_sym_bitor, - ACTIONS(11055), 1, + ACTIONS(11409), 1, anon_sym_xor, - ACTIONS(11057), 1, + ACTIONS(11411), 1, anon_sym_bitand, - ACTIONS(11059), 1, + ACTIONS(11413), 1, anon_sym_not_eq, - ACTIONS(11194), 1, + ACTIONS(11541), 1, anon_sym_RPAREN, - STATE(1667), 1, + STATE(1712), 1, sym__binary_fold_operator, - STATE(5506), 1, + STATE(5663), 1, sym_argument_list, - STATE(5507), 1, + STATE(5664), 1, sym_subscript_argument_list, - STATE(10893), 1, + STATE(10629), 1, sym__fold_operator, - ACTIONS(10429), 2, + ACTIONS(10803), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11061), 2, + ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [122864] = 3, + [121804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9097), 23, - aux_sym_preproc_elif_token1, + ACTIONS(9037), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + 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, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9099), 29, + anon_sym_DASH_GT, + ACTIONS(9039), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + 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, - anon_sym_COLON_RBRACK, - [122924] = 3, + anon_sym_DASH_GT_STAR, + [121864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9101), 23, - aux_sym_preproc_elif_token1, + ACTIONS(9033), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + 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, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9103), 29, + anon_sym_DASH_GT, + ACTIONS(9035), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + 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, - anon_sym_COLON_RBRACK, - [122984] = 3, + anon_sym_DASH_GT_STAR, + [121924] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9109), 23, - aux_sym_preproc_elif_token1, + ACTIONS(6909), 1, + anon_sym_EQ, + ACTIONS(6911), 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(5645), 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___attribute__, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute, - 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_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9111), 29, + ACTIONS(5638), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, 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, - anon_sym_COLON_RBRACK, - [123044] = 3, + [121988] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(10326), 1, + anon_sym_decltype, + ACTIONS(11543), 1, + sym_auto, + STATE(6061), 1, + sym_decltype_auto, + ACTIONS(7223), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7225), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [122056] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 20, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10805), 1, + anon_sym_DOT_STAR, + ACTIONS(10807), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(11335), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11337), 1, + anon_sym_COMMA, + ACTIONS(11341), 1, anon_sym_DASH, + ACTIONS(11343), 1, anon_sym_PLUS, + ACTIONS(11345), 1, anon_sym_STAR, + ACTIONS(11347), 1, anon_sym_SLASH, + ACTIONS(11349), 1, anon_sym_PERCENT, + ACTIONS(11351), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11353), 1, + anon_sym_AMP_AMP, + ACTIONS(11355), 1, anon_sym_PIPE, + ACTIONS(11357), 1, anon_sym_CARET, + ACTIONS(11359), 1, anon_sym_AMP, + ACTIONS(11361), 1, + anon_sym_EQ_EQ, + ACTIONS(11363), 1, + anon_sym_BANG_EQ, + ACTIONS(11365), 1, anon_sym_GT, + ACTIONS(11367), 1, + anon_sym_GT_EQ, + ACTIONS(11369), 1, anon_sym_LT_EQ, + ACTIONS(11371), 1, anon_sym_LT, + ACTIONS(11373), 1, anon_sym_LT_LT, + ACTIONS(11375), 1, anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(11377), 1, anon_sym_EQ, + ACTIONS(11379), 1, + anon_sym_QMARK, + ACTIONS(11381), 1, + anon_sym_STAR_EQ, + ACTIONS(11383), 1, + anon_sym_SLASH_EQ, + ACTIONS(11385), 1, + anon_sym_PERCENT_EQ, + ACTIONS(11387), 1, + anon_sym_PLUS_EQ, + ACTIONS(11389), 1, + anon_sym_DASH_EQ, + ACTIONS(11391), 1, + anon_sym_LT_LT_EQ, + ACTIONS(11393), 1, + anon_sym_GT_GT_EQ, + ACTIONS(11395), 1, + anon_sym_AMP_EQ, + ACTIONS(11397), 1, + anon_sym_CARET_EQ, + ACTIONS(11399), 1, + anon_sym_PIPE_EQ, + ACTIONS(11401), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11403), 1, anon_sym_or, + ACTIONS(11405), 1, anon_sym_and, + ACTIONS(11407), 1, + anon_sym_bitor, + ACTIONS(11409), 1, anon_sym_xor, + ACTIONS(11411), 1, + anon_sym_bitand, + ACTIONS(11413), 1, + anon_sym_not_eq, + ACTIONS(11545), 1, + anon_sym_RPAREN, + STATE(1712), 1, + sym__binary_fold_operator, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + STATE(10629), 1, + sym__fold_operator, + ACTIONS(10803), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9406), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11415), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [122212] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10489), 1, + anon_sym_EQ, + ACTIONS(10900), 1, anon_sym_LPAREN2, + ACTIONS(11327), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, + anon_sym_DOT, + ACTIONS(11480), 1, anon_sym_PIPE_PIPE, + ACTIONS(11482), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(11484), 1, + anon_sym_PIPE, + ACTIONS(11488), 1, + anon_sym_AMP, + ACTIONS(11494), 1, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + ACTIONS(11498), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11500), 1, + anon_sym_or, + ACTIONS(11502), 1, + anon_sym_and, + ACTIONS(11504), 1, + anon_sym_bitor, + ACTIONS(11506), 1, + anon_sym_bitand, + ACTIONS(11535), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11537), 1, anon_sym_QMARK, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11329), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11476), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11486), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11496), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11478), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11490), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11492), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10491), 15, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -537985,123 +558374,154 @@ 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, - [123104] = 51, + [122322] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5617), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(10431), 1, - anon_sym_DOT_STAR, - ACTIONS(10433), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(10981), 1, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8554), 1, + anon_sym_COLON_COLON, + ACTIONS(8651), 1, + anon_sym_STAR, + ACTIONS(11547), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(10983), 1, + ACTIONS(11551), 1, + anon_sym_AMP_AMP, + ACTIONS(11553), 1, + anon_sym_AMP, + ACTIONS(11555), 1, + anon_sym_EQ, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(5327), 1, + sym_parameter_list, + STATE(7990), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8703), 1, + sym__declarator, + STATE(8975), 1, + sym__abstract_declarator, + STATE(9084), 1, + sym_abstract_reference_declarator, + STATE(10001), 1, + sym_variadic_declarator, + STATE(10010), 1, + sym_variadic_reference_declarator, + STATE(10837), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(11549), 2, anon_sym_COMMA, - ACTIONS(10987), 1, + anon_sym_GT2, + STATE(9088), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8596), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + [122442] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5589), 17, anon_sym_DASH, - ACTIONS(10989), 1, anon_sym_PLUS, - ACTIONS(10991), 1, anon_sym_STAR, - ACTIONS(10993), 1, anon_sym_SLASH, - ACTIONS(10995), 1, anon_sym_PERCENT, - ACTIONS(10997), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10999), 1, - anon_sym_AMP_AMP, - ACTIONS(11001), 1, anon_sym_PIPE, - ACTIONS(11003), 1, anon_sym_CARET, - ACTIONS(11005), 1, anon_sym_AMP, - ACTIONS(11007), 1, - anon_sym_EQ_EQ, - ACTIONS(11009), 1, - anon_sym_BANG_EQ, - ACTIONS(11011), 1, anon_sym_GT, - ACTIONS(11013), 1, - anon_sym_GT_EQ, - ACTIONS(11015), 1, anon_sym_LT_EQ, - ACTIONS(11017), 1, anon_sym_LT, - ACTIONS(11019), 1, anon_sym_LT_LT, - ACTIONS(11021), 1, anon_sym_GT_GT, - ACTIONS(11023), 1, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(11025), 1, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5591), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_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, - ACTIONS(11027), 1, anon_sym_STAR_EQ, - ACTIONS(11029), 1, anon_sym_SLASH_EQ, - ACTIONS(11031), 1, anon_sym_PERCENT_EQ, - ACTIONS(11033), 1, anon_sym_PLUS_EQ, - ACTIONS(11035), 1, anon_sym_DASH_EQ, - ACTIONS(11037), 1, anon_sym_LT_LT_EQ, - ACTIONS(11039), 1, anon_sym_GT_GT_EQ, - ACTIONS(11041), 1, anon_sym_AMP_EQ, - ACTIONS(11043), 1, anon_sym_CARET_EQ, - ACTIONS(11045), 1, anon_sym_PIPE_EQ, - ACTIONS(11047), 1, anon_sym_LT_EQ_GT, - ACTIONS(11049), 1, anon_sym_or, - ACTIONS(11051), 1, anon_sym_and, - ACTIONS(11053), 1, anon_sym_bitor, - ACTIONS(11055), 1, anon_sym_xor, - ACTIONS(11057), 1, anon_sym_bitand, - ACTIONS(11059), 1, anon_sym_not_eq, - ACTIONS(11196), 1, - anon_sym_RPAREN, - STATE(1667), 1, - sym__binary_fold_operator, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - STATE(10893), 1, - sym__fold_operator, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11061), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [123260] = 3, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [122502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 20, + ACTIONS(9224), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -538121,18 +558541,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9406), 32, + ACTIONS(9222), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -538154,90 +558574,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [123320] = 25, + anon_sym_DASH_GT, + [122562] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(6883), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9239), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, - sym_identifier, - ACTIONS(8203), 1, - anon_sym_COLON_COLON, - ACTIONS(9818), 1, - anon_sym_STAR, - ACTIONS(9820), 1, - anon_sym_AMP_AMP, - ACTIONS(9822), 1, - anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7878), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8467), 1, - sym__declarator, - STATE(11190), 1, - sym_ms_based_modifier, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6842), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [123424] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9404), 20, + ACTIONS(9236), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(5645), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -538251,24 +558599,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9406), 32, + ACTIONS(5638), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -538291,10 +558635,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [123484] = 3, + [122628] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 20, + ACTIONS(10842), 1, + anon_sym_LPAREN2, + ACTIONS(10844), 1, + anon_sym_LBRACK, + STATE(1975), 1, + sym_parameter_list, + STATE(5229), 1, + sym__function_declarator_seq, + ACTIONS(10210), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -538304,28 +558656,93 @@ 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, - anon_sym_DASH_GT, - ACTIONS(9406), 32, + ACTIONS(10208), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + anon_sym_GT2, + [122696] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10900), 1, anon_sym_LPAREN2, + ACTIONS(11327), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, + anon_sym_DOT, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11329), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11478), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(9707), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9709), 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_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -538344,14 +558761,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [122772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10564), 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, - [123544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9404), 20, + ACTIONS(10566), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -538365,24 +558805,65 @@ 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_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, + [122832] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(11327), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, anon_sym_DOT, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11329), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9406), 32, + ACTIONS(9707), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9709), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -538401,86 +558882,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [122906] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(11327), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, + anon_sym_DOT, + ACTIONS(11482), 1, + anon_sym_AMP_AMP, + ACTIONS(11484), 1, + anon_sym_PIPE, + ACTIONS(11488), 1, + anon_sym_AMP, + ACTIONS(11494), 1, + anon_sym_GT_EQ, + ACTIONS(11498), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11502), 1, + anon_sym_and, + ACTIONS(11504), 1, + anon_sym_bitor, + ACTIONS(11506), 1, + anon_sym_bitand, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(9707), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(11329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(11333), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [123604] = 33, + anon_sym_DASH_GT, + ACTIONS(11476), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11486), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11496), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11478), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11490), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11492), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [123008] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(4800), 1, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5301), 1, - anon_sym_LPAREN2, - ACTIONS(5311), 1, - anon_sym_LBRACK, - ACTIONS(8195), 1, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8554), 1, anon_sym_COLON_COLON, - ACTIONS(8424), 1, + ACTIONS(10178), 1, anon_sym_STAR, - ACTIONS(11155), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11159), 1, + ACTIONS(10180), 1, anon_sym_AMP_AMP, - ACTIONS(11161), 1, + ACTIONS(10182), 1, anon_sym_AMP, - ACTIONS(11198), 1, - anon_sym_EQ, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(5256), 1, - sym_parameter_list, - STATE(7878), 1, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7990), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8633), 1, + STATE(8523), 1, sym__declarator, - STATE(8829), 1, - sym__abstract_declarator, - STATE(8961), 1, - sym_abstract_reference_declarator, - STATE(9736), 1, - sym_variadic_declarator, - STATE(9741), 1, - sym_variadic_reference_declarator, - STATE(10656), 1, + STATE(11622), 1, sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(11157), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(9025), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8389), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(10976), 5, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7086), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -538492,41 +559025,82 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [123724] = 3, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [123112] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 20, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(11327), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, + anon_sym_DOT, + ACTIONS(11484), 1, + anon_sym_PIPE, + ACTIONS(11488), 1, + anon_sym_AMP, + ACTIONS(11494), 1, + anon_sym_GT_EQ, + ACTIONS(11498), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11504), 1, + anon_sym_bitor, + ACTIONS(11506), 1, + anon_sym_bitand, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11329), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11476), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(11486), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(11496), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(9707), 3, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9406), 32, + ACTIONS(11478), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11490), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11492), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -538541,51 +559115,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + [123210] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(11327), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, + anon_sym_DOT, + ACTIONS(11488), 1, + anon_sym_AMP, + ACTIONS(11494), 1, + anon_sym_GT_EQ, + ACTIONS(11498), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, + ACTIONS(11506), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(11333), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [123784] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11142), 1, - anon_sym_LT, - STATE(5009), 1, - sym_template_argument_list, - ACTIONS(9225), 18, + anon_sym_DASH_GT, + ACTIONS(11476), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11486), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11496), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11478), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11490), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11492), 3, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LT, + ACTIONS(9707), 4, + anon_sym_PIPE, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9227), 32, + ACTIONS(9709), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -538600,165 +559188,135 @@ 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, - [123848] = 51, + [123304] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10431), 1, + ACTIONS(11331), 1, + anon_sym_DOT, + ACTIONS(11488), 1, + anon_sym_AMP, + ACTIONS(11494), 1, + anon_sym_GT_EQ, + ACTIONS(11498), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11506), 1, + anon_sym_bitand, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11329), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11333), 2, anon_sym_DOT_STAR, - ACTIONS(10433), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(10981), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10983), 1, - anon_sym_COMMA, - ACTIONS(10987), 1, + anon_sym_DASH_GT, + ACTIONS(11476), 2, anon_sym_DASH, - ACTIONS(10989), 1, anon_sym_PLUS, - ACTIONS(10991), 1, + ACTIONS(11496), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11478), 3, anon_sym_STAR, - ACTIONS(10993), 1, anon_sym_SLASH, - ACTIONS(10995), 1, anon_sym_PERCENT, - ACTIONS(10997), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10999), 1, - anon_sym_AMP_AMP, - ACTIONS(11001), 1, - anon_sym_PIPE, - ACTIONS(11003), 1, - anon_sym_CARET, - ACTIONS(11005), 1, - anon_sym_AMP, - ACTIONS(11007), 1, + ACTIONS(11490), 3, anon_sym_EQ_EQ, - ACTIONS(11009), 1, anon_sym_BANG_EQ, - ACTIONS(11011), 1, + anon_sym_not_eq, + ACTIONS(11492), 3, anon_sym_GT, - ACTIONS(11013), 1, - anon_sym_GT_EQ, - ACTIONS(11015), 1, anon_sym_LT_EQ, - ACTIONS(11017), 1, anon_sym_LT, - ACTIONS(11019), 1, - anon_sym_LT_LT, - ACTIONS(11021), 1, - anon_sym_GT_GT, - ACTIONS(11023), 1, + ACTIONS(9707), 6, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - ACTIONS(11025), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9709), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(11027), 1, anon_sym_STAR_EQ, - ACTIONS(11029), 1, anon_sym_SLASH_EQ, - ACTIONS(11031), 1, anon_sym_PERCENT_EQ, - ACTIONS(11033), 1, anon_sym_PLUS_EQ, - ACTIONS(11035), 1, anon_sym_DASH_EQ, - ACTIONS(11037), 1, anon_sym_LT_LT_EQ, - ACTIONS(11039), 1, anon_sym_GT_GT_EQ, - ACTIONS(11041), 1, anon_sym_AMP_EQ, - ACTIONS(11043), 1, anon_sym_CARET_EQ, - ACTIONS(11045), 1, anon_sym_PIPE_EQ, - ACTIONS(11047), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11049), 1, - anon_sym_or, - ACTIONS(11051), 1, - anon_sym_and, - ACTIONS(11053), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, - ACTIONS(11055), 1, - anon_sym_xor, - ACTIONS(11057), 1, - anon_sym_bitand, - ACTIONS(11059), 1, - anon_sym_not_eq, - ACTIONS(11200), 1, - anon_sym_RPAREN, - STATE(1667), 1, - sym__binary_fold_operator, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - STATE(10893), 1, - sym__fold_operator, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11061), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [124004] = 10, + [123396] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11331), 1, anon_sym_DOT, - STATE(5759), 1, + ACTIONS(11494), 1, + anon_sym_GT_EQ, + ACTIONS(11498), 1, + anon_sym_LT_EQ_GT, + STATE(5875), 1, sym_argument_list, - STATE(5761), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11138), 2, + ACTIONS(11329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9232), 19, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11476), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11496), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11478), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11490), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11492), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9707), 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(9234), 24, + ACTIONS(9709), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -538766,65 +559324,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_GT2, - [124078] = 13, + [123484] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - STATE(5762), 1, + ACTIONS(11494), 1, + anon_sym_GT_EQ, + ACTIONS(11498), 1, + anon_sym_LT_EQ_GT, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10975), 2, + ACTIONS(11329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11065), 2, + ACTIONS(11476), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11085), 2, + ACTIONS(11496), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11067), 3, + ACTIONS(11478), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9282), 10, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11492), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(9707), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9284), 26, + ACTIONS(9709), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -538840,49 +559400,60 @@ 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, - [124158] = 7, + [123570] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10337), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10339), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - STATE(1875), 1, - sym_parameter_list, - STATE(5063), 1, - sym__function_declarator_seq, - ACTIONS(9860), 20, + ACTIONS(11331), 1, + anon_sym_DOT, + ACTIONS(11498), 1, + anon_sym_LT_EQ_GT, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11329), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11476), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11496), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11478), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9707), 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(9858), 28, + ACTIONS(9709), 25, 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -538890,132 +559461,70 @@ 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [124226] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8400), 17, - anon_sym_DASH, - 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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8402), 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_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - 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, - anon_sym_COLON_RBRACK, - [124286] = 25, + [123652] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8554), 1, anon_sym_COLON_COLON, - ACTIONS(9818), 1, + ACTIONS(10178), 1, anon_sym_STAR, - ACTIONS(9820), 1, + ACTIONS(10180), 1, anon_sym_AMP_AMP, - ACTIONS(9822), 1, + ACTIONS(10182), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7878), 1, + STATE(7990), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8407), 1, + STATE(8541), 1, sym__declarator, - STATE(11190), 1, + STATE(11622), 1, sym_ms_based_modifier, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6842), 2, + STATE(7086), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -539027,7 +559536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -539041,21 +559550,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124390] = 8, + [123756] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, + ACTIONS(3098), 1, anon_sym_LBRACE, - ACTIONS(11149), 1, + ACTIONS(11434), 1, anon_sym_LPAREN2, - ACTIONS(11151), 1, + ACTIONS(11436), 1, anon_sym_LBRACK, - STATE(5579), 1, + STATE(5598), 1, sym_new_declarator, - STATE(5979), 2, + STATE(6098), 2, sym_argument_list, sym_initializer_list, - ACTIONS(8903), 16, + ACTIONS(9274), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -539072,7 +559581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8905), 30, + ACTIONS(9276), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -539103,22 +559612,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [124460] = 6, + [123826] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6515), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8838), 1, - anon_sym_LBRACK, - ACTIONS(8835), 2, - anon_sym_RPAREN, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(5260), 19, + ACTIONS(11327), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, + anon_sym_DOT, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11329), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11476), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11478), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9707), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -539131,9 +559651,7 @@ 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(5253), 29, + ACTIONS(9709), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -539141,6 +559659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -539159,182 +559678,320 @@ 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, - [124526] = 6, + [123904] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6515), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8838), 1, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(5665), 1, + sym_auto, + ACTIONS(5667), 1, + anon_sym_decltype, + ACTIONS(6883), 1, + anon_sym_SEMI, + ACTIONS(10005), 1, + anon_sym_LT, + ACTIONS(10384), 1, anon_sym_LBRACK, - ACTIONS(8835), 2, - anon_sym_RPAREN, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4991), 1, + sym_decltype_auto, + STATE(6086), 1, + sym_template_argument_list, + ACTIONS(5675), 2, anon_sym_LPAREN2, - ACTIONS(5260), 19, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_LBRACK_LBRACK, + ACTIONS(5643), 4, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_LBRACK_COLON, + ACTIONS(5659), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5636), 33, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5253), 29, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [123986] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5617), 1, + anon_sym_LPAREN2, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8554), 1, + anon_sym_COLON_COLON, + ACTIONS(8708), 1, + anon_sym_STAR, + ACTIONS(11547), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, + ACTIONS(11551), 1, 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, - [124592] = 4, + ACTIONS(11553), 1, + anon_sym_AMP, + ACTIONS(11557), 1, + anon_sym_EQ, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(5340), 1, + sym_parameter_list, + STATE(7990), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8690), 1, + sym__declarator, + STATE(8982), 1, + sym__abstract_declarator, + STATE(9120), 1, + sym_abstract_reference_declarator, + STATE(10001), 1, + sym_variadic_declarator, + STATE(10010), 1, + sym_variadic_reference_declarator, + STATE(10837), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(11549), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(9088), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8596), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + [124106] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(5260), 19, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10805), 1, + anon_sym_DOT_STAR, + ACTIONS(10807), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(11335), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11337), 1, + anon_sym_COMMA, + ACTIONS(11341), 1, anon_sym_DASH, + ACTIONS(11343), 1, anon_sym_PLUS, + ACTIONS(11345), 1, anon_sym_STAR, + ACTIONS(11347), 1, anon_sym_SLASH, + ACTIONS(11349), 1, anon_sym_PERCENT, + ACTIONS(11351), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11353), 1, + anon_sym_AMP_AMP, + ACTIONS(11355), 1, anon_sym_PIPE, + ACTIONS(11357), 1, anon_sym_CARET, + ACTIONS(11359), 1, anon_sym_AMP, + ACTIONS(11361), 1, + anon_sym_EQ_EQ, + ACTIONS(11363), 1, + anon_sym_BANG_EQ, + ACTIONS(11365), 1, anon_sym_GT, + ACTIONS(11367), 1, + anon_sym_GT_EQ, + ACTIONS(11369), 1, anon_sym_LT_EQ, + ACTIONS(11371), 1, anon_sym_LT, + ACTIONS(11373), 1, anon_sym_LT_LT, + ACTIONS(11375), 1, anon_sym_GT_GT, + ACTIONS(11377), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5253), 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(11379), 1, anon_sym_QMARK, + ACTIONS(11381), 1, anon_sym_STAR_EQ, + ACTIONS(11383), 1, anon_sym_SLASH_EQ, + ACTIONS(11385), 1, anon_sym_PERCENT_EQ, + ACTIONS(11387), 1, anon_sym_PLUS_EQ, + ACTIONS(11389), 1, anon_sym_DASH_EQ, + ACTIONS(11391), 1, anon_sym_LT_LT_EQ, + ACTIONS(11393), 1, anon_sym_GT_GT_EQ, + ACTIONS(11395), 1, anon_sym_AMP_EQ, + ACTIONS(11397), 1, anon_sym_CARET_EQ, + ACTIONS(11399), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(11401), 1, anon_sym_LT_EQ_GT, + ACTIONS(11403), 1, + anon_sym_or, + ACTIONS(11405), 1, + anon_sym_and, + ACTIONS(11407), 1, anon_sym_bitor, + ACTIONS(11409), 1, + anon_sym_xor, + ACTIONS(11411), 1, anon_sym_bitand, + ACTIONS(11413), 1, anon_sym_not_eq, + ACTIONS(11559), 1, + anon_sym_RPAREN, + STATE(1712), 1, + sym__binary_fold_operator, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + STATE(10629), 1, + sym__fold_operator, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [124654] = 25, + [124262] = 25, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3446), 1, + anon_sym_STAR, + ACTIONS(3448), 1, + anon_sym_AMP, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(9818), 1, - anon_sym_STAR, - ACTIONS(9820), 1, - anon_sym_AMP_AMP, - ACTIONS(9822), 1, - anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7878), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8415), 1, + STATE(8785), 1, sym__declarator, - STATE(11190), 1, + STATE(11554), 1, sym_ms_based_modifier, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6842), 2, + STATE(7086), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -539346,8 +560003,56 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [124366] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6634), 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6632), 39, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -539360,10 +560065,326 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124758] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [124426] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(11327), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, + anon_sym_DOT, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11329), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11476), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11496), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11478), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(9707), 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(9709), 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_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, + [124506] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10538), 1, + anon_sym_EQ, + ACTIONS(11565), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11567), 1, + anon_sym_AMP_AMP, + ACTIONS(11569), 1, + anon_sym_PIPE, + ACTIONS(11573), 1, + anon_sym_AMP, + ACTIONS(11579), 1, + anon_sym_GT_EQ, + ACTIONS(11583), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11585), 1, + anon_sym_or, + ACTIONS(11587), 1, + anon_sym_and, + ACTIONS(11589), 1, + anon_sym_bitor, + ACTIONS(11591), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11561), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11571), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11581), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11563), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11575), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11577), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10540), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK_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, + [124612] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10542), 1, + anon_sym_EQ, + ACTIONS(11565), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11567), 1, + anon_sym_AMP_AMP, + ACTIONS(11569), 1, + anon_sym_PIPE, + ACTIONS(11573), 1, + anon_sym_AMP, + ACTIONS(11579), 1, + anon_sym_GT_EQ, + ACTIONS(11583), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11585), 1, + anon_sym_or, + ACTIONS(11587), 1, + anon_sym_and, + ACTIONS(11589), 1, + anon_sym_bitor, + ACTIONS(11591), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11561), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11571), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11581), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11563), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11575), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11577), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10544), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK_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, + [124718] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9599), 1, + anon_sym_EQ, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(11565), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11567), 1, + anon_sym_AMP_AMP, + ACTIONS(11569), 1, + anon_sym_PIPE, + ACTIONS(11573), 1, + anon_sym_AMP, + ACTIONS(11579), 1, + anon_sym_GT_EQ, + ACTIONS(11583), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11585), 1, + anon_sym_or, + ACTIONS(11587), 1, + anon_sym_and, + ACTIONS(11589), 1, + anon_sym_bitor, + ACTIONS(11591), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11561), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11571), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11581), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11563), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11575), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11577), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9597), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK_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, + [124824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8935), 23, + ACTIONS(8905), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -539387,7 +560408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8937), 29, + ACTIONS(8907), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -539417,310 +560438,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [124818] = 12, + [124884] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, - anon_sym_COLON, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(11202), 1, - anon_sym_LBRACE, - STATE(5874), 1, - sym_field_declaration_list, - STATE(6002), 1, - sym_attribute_specifier, - STATE(9330), 1, - sym_virtual_specifier, - STATE(10162), 1, - sym_base_class_clause, - ACTIONS(7821), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6826), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6828), 37, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9230), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [124896] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(5280), 1, - sym_auto, - ACTIONS(5282), 1, - anon_sym_decltype, - ACTIONS(6515), 1, - anon_sym_SEMI, - ACTIONS(9672), 1, - anon_sym_LT, - ACTIONS(9979), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(4121), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4767), 1, - sym_decltype_auto, - STATE(5936), 1, - sym_template_argument_list, - ACTIONS(5290), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(5258), 4, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10435), 1, + anon_sym_EQ, + ACTIONS(11565), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11567), 1, anon_sym_AMP_AMP, - anon_sym_LBRACK_COLON, - ACTIONS(5274), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5251), 33, + ACTIONS(11569), 1, + anon_sym_PIPE, + ACTIONS(11573), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [124978] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3051), 1, + ACTIONS(11579), 1, + anon_sym_GT_EQ, + ACTIONS(11583), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11585), 1, + anon_sym_or, + ACTIONS(11587), 1, + anon_sym_and, + ACTIONS(11589), 1, + anon_sym_bitor, + ACTIONS(11591), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11561), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11571), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11581), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11563), 3, anon_sym_STAR, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8701), 1, - sym__declarator, - STATE(11063), 1, - sym_ms_based_modifier, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6842), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [125082] = 25, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11575), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11577), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10437), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK_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, + [124990] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11112), 1, + ACTIONS(9826), 1, + anon_sym_EQ, + ACTIONS(10469), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11565), 1, anon_sym_PIPE_PIPE, - ACTIONS(11114), 1, + ACTIONS(11567), 1, anon_sym_AMP_AMP, - ACTIONS(11116), 1, + ACTIONS(11569), 1, anon_sym_PIPE, - ACTIONS(11120), 1, + ACTIONS(11573), 1, anon_sym_AMP, - ACTIONS(11128), 1, + ACTIONS(11579), 1, + anon_sym_GT_EQ, + ACTIONS(11583), 1, anon_sym_LT_EQ_GT, - ACTIONS(11130), 1, + ACTIONS(11585), 1, anon_sym_or, - ACTIONS(11132), 1, + ACTIONS(11587), 1, anon_sym_and, - ACTIONS(11134), 1, + ACTIONS(11589), 1, anon_sym_bitor, - ACTIONS(11136), 1, + ACTIONS(11591), 1, anon_sym_bitand, - STATE(5759), 1, + ACTIONS(11593), 1, + anon_sym_QMARK, + STATE(3874), 1, sym_argument_list, - STATE(5761), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10176), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(11103), 2, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11108), 2, + ACTIONS(11561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11118), 2, + ACTIONS(11571), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11126), 2, + ACTIONS(11581), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11138), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11110), 3, + ACTIONS(11563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11122), 3, + ACTIONS(11575), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11124), 4, + ACTIONS(11577), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10178), 16, - anon_sym_DOT_DOT_DOT, + ACTIONS(9828), 15, anon_sym_COMMA, - anon_sym_QMARK, + anon_sym_RBRACK_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, - anon_sym_GT2, - [125186] = 7, + [125100] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(10337), 1, - anon_sym_LPAREN2, - ACTIONS(10339), 1, - anon_sym_LBRACK, - STATE(1875), 1, - sym_parameter_list, - STATE(5063), 1, - sym__function_declarator_seq, - ACTIONS(9834), 20, + sym_comment, + ACTIONS(11513), 1, + anon_sym_LT, + STATE(2999), 1, + sym_template_argument_list, + ACTIONS(9650), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -539730,24 +560617,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(9832), 28, + anon_sym_DASH_GT, + ACTIONS(9652), 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, @@ -539755,6 +560644,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, @@ -539768,25 +560658,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [125254] = 7, + anon_sym_DASH_GT_STAR, + [125164] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10333), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10335), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(1873), 1, - sym_parameter_list, - STATE(5159), 1, - sym__function_declarator_seq, - ACTIONS(9848), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9646), 1, + anon_sym_DOT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9707), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -539799,8 +560697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9846), 30, + ACTIONS(9709), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -539808,7 +560705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -539827,198 +560724,145 @@ 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, - [125322] = 12, + [125240] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7731), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(7745), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(7772), 1, - anon_sym_STAR, - ACTIONS(7774), 1, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(11567), 1, anon_sym_AMP_AMP, - ACTIONS(7776), 1, - anon_sym_AMP, - STATE(1977), 1, - sym_parameter_list, - STATE(5165), 1, - sym__function_declarator_seq, - STATE(6067), 1, - sym__abstract_declarator, - STATE(5164), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9074), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(11569), 1, anon_sym_PIPE, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(9072), 30, - 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, + ACTIONS(11573), 1, + anon_sym_AMP, + ACTIONS(11579), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, + ACTIONS(11583), 1, anon_sym_LT_EQ_GT, - anon_sym_or, + ACTIONS(11587), 1, anon_sym_and, + ACTIONS(11589), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11591), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [125400] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8087), 23, - aux_sym_preproc_elif_token1, + ACTIONS(9707), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(11561), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11571), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11581), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11563), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(11575), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11577), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8089), 29, + ACTIONS(9709), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [125460] = 26, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [125342] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(10089), 1, - anon_sym_EQ, - ACTIONS(11208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11210), 1, - anon_sym_AMP_AMP, - ACTIONS(11212), 1, + ACTIONS(11569), 1, anon_sym_PIPE, - ACTIONS(11216), 1, + ACTIONS(11573), 1, anon_sym_AMP, - ACTIONS(11222), 1, + ACTIONS(11579), 1, anon_sym_GT_EQ, - ACTIONS(11226), 1, + ACTIONS(11583), 1, anon_sym_LT_EQ_GT, - ACTIONS(11228), 1, - anon_sym_or, - ACTIONS(11230), 1, - anon_sym_and, - ACTIONS(11232), 1, + ACTIONS(11589), 1, anon_sym_bitor, - ACTIONS(11234), 1, + ACTIONS(11591), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11204), 2, + ACTIONS(11561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11214), 2, + ACTIONS(11571), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11224), 2, + ACTIONS(11581), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11206), 3, + ACTIONS(9707), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(11563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11218), 3, + ACTIONS(11575), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11220), 3, + ACTIONS(11577), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10091), 17, + ACTIONS(9709), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -540034,71 +560878,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [125566] = 26, + [125440] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(10123), 1, - anon_sym_EQ, - ACTIONS(11208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11210), 1, - anon_sym_AMP_AMP, - ACTIONS(11212), 1, - anon_sym_PIPE, - ACTIONS(11216), 1, + ACTIONS(11573), 1, anon_sym_AMP, - ACTIONS(11222), 1, + ACTIONS(11579), 1, anon_sym_GT_EQ, - ACTIONS(11226), 1, + ACTIONS(11583), 1, anon_sym_LT_EQ_GT, - ACTIONS(11228), 1, - anon_sym_or, - ACTIONS(11230), 1, - anon_sym_and, - ACTIONS(11232), 1, - anon_sym_bitor, - ACTIONS(11234), 1, + ACTIONS(11591), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11204), 2, + ACTIONS(11561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11214), 2, + ACTIONS(11571), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11224), 2, + ACTIONS(11581), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11206), 3, + ACTIONS(11563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11218), 3, + ACTIONS(11575), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11220), 3, + ACTIONS(11577), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10125), 17, + ACTIONS(9707), 4, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(9709), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -540114,71 +560951,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [125672] = 26, + anon_sym_bitor, + [125534] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(9344), 1, - anon_sym_EQ, - ACTIONS(11208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11210), 1, - anon_sym_AMP_AMP, - ACTIONS(11212), 1, - anon_sym_PIPE, - ACTIONS(11216), 1, + ACTIONS(11573), 1, anon_sym_AMP, - ACTIONS(11222), 1, + ACTIONS(11579), 1, anon_sym_GT_EQ, - ACTIONS(11226), 1, + ACTIONS(11583), 1, anon_sym_LT_EQ_GT, - ACTIONS(11228), 1, - anon_sym_or, - ACTIONS(11230), 1, - anon_sym_and, - ACTIONS(11232), 1, - anon_sym_bitor, - ACTIONS(11234), 1, + ACTIONS(11591), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11204), 2, + ACTIONS(11561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11214), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11224), 2, + ACTIONS(11581), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11206), 3, + ACTIONS(11563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11218), 3, + ACTIONS(11575), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11220), 3, + ACTIONS(11577), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9342), 17, + ACTIONS(9707), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9709), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -540194,71 +561024,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [125778] = 26, + anon_sym_bitor, + [125626] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(10176), 1, - anon_sym_EQ, - ACTIONS(11208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11210), 1, - anon_sym_AMP_AMP, - ACTIONS(11212), 1, - anon_sym_PIPE, - ACTIONS(11216), 1, - anon_sym_AMP, - ACTIONS(11222), 1, + ACTIONS(11579), 1, anon_sym_GT_EQ, - ACTIONS(11226), 1, + ACTIONS(11583), 1, anon_sym_LT_EQ_GT, - ACTIONS(11228), 1, - anon_sym_or, - ACTIONS(11230), 1, - anon_sym_and, - ACTIONS(11232), 1, - anon_sym_bitor, - ACTIONS(11234), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11204), 2, + ACTIONS(11561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11214), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11224), 2, + ACTIONS(11581), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11206), 3, + ACTIONS(11563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11218), 3, + ACTIONS(11575), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11220), 3, + ACTIONS(11577), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10178), 17, + ACTIONS(9707), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9709), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -540274,75 +561094,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [125884] = 28, + anon_sym_bitor, + anon_sym_bitand, + [125714] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(9436), 1, - anon_sym_EQ, - ACTIONS(10180), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11210), 1, - anon_sym_AMP_AMP, - ACTIONS(11212), 1, - anon_sym_PIPE, - ACTIONS(11216), 1, - anon_sym_AMP, - ACTIONS(11222), 1, + ACTIONS(11579), 1, anon_sym_GT_EQ, - ACTIONS(11226), 1, + ACTIONS(11583), 1, anon_sym_LT_EQ_GT, - ACTIONS(11228), 1, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11561), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11581), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11563), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11577), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9707), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, anon_sym_or, - ACTIONS(11230), 1, anon_sym_and, - ACTIONS(11232), 1, + anon_sym_xor, + ACTIONS(9709), 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_RBRACK_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, - ACTIONS(11234), 1, anon_sym_bitand, - ACTIONS(11236), 1, - anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + anon_sym_not_eq, + [125800] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(11583), 1, + anon_sym_LT_EQ_GT, + STATE(3874), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11204), 2, + ACTIONS(11561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11214), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11224), 2, + ACTIONS(11581), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11206), 3, + ACTIONS(11563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11218), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11220), 3, + ACTIONS(9707), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9438), 15, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9709), 25, + 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_RBRACK_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -540356,32 +561231,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [125994] = 11, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [125882] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11206), 3, + ACTIONS(11561), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9282), 14, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9707), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -540394,7 +561273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9284), 26, + ACTIONS(9709), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -540421,69 +561300,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [126070] = 24, + [125960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9059), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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, - ACTIONS(9240), 1, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(11210), 1, + anon_sym_DASH_GT, + ACTIONS(9061), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11212), 1, - anon_sym_PIPE, - ACTIONS(11216), 1, - anon_sym_AMP, - ACTIONS(11222), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(11226), 1, + 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, - ACTIONS(11230), 1, - anon_sym_and, - ACTIONS(11232), 1, anon_sym_bitor, - ACTIONS(11234), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [126020] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + STATE(3874), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9282), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(11204), 2, + ACTIONS(11561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11214), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11224), 2, + ACTIONS(11581), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11206), 3, + ACTIONS(11563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11218), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11220), 3, + ACTIONS(9707), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 18, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9709), 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_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -540499,67 +561420,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [126172] = 22, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [126100] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11212), 1, + ACTIONS(10473), 1, + anon_sym_EQ, + ACTIONS(11565), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11567), 1, + anon_sym_AMP_AMP, + ACTIONS(11569), 1, anon_sym_PIPE, - ACTIONS(11216), 1, + ACTIONS(11573), 1, anon_sym_AMP, - ACTIONS(11222), 1, + ACTIONS(11579), 1, anon_sym_GT_EQ, - ACTIONS(11226), 1, + ACTIONS(11583), 1, anon_sym_LT_EQ_GT, - ACTIONS(11232), 1, + ACTIONS(11585), 1, + anon_sym_or, + ACTIONS(11587), 1, + anon_sym_and, + ACTIONS(11589), 1, anon_sym_bitor, - ACTIONS(11234), 1, + ACTIONS(11591), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11204), 2, + ACTIONS(11561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11214), 2, + ACTIONS(11571), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11224), 2, + ACTIONS(11581), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9282), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(11206), 3, + ACTIONS(11563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11218), 3, + ACTIONS(11575), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11220), 3, + ACTIONS(11577), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 19, + ACTIONS(10475), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -540575,66 +561504,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [126270] = 20, + [126206] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11216), 1, + ACTIONS(10469), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10477), 1, + anon_sym_EQ, + ACTIONS(11565), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11567), 1, + anon_sym_AMP_AMP, + ACTIONS(11569), 1, + anon_sym_PIPE, + ACTIONS(11573), 1, anon_sym_AMP, - ACTIONS(11222), 1, + ACTIONS(11579), 1, anon_sym_GT_EQ, - ACTIONS(11226), 1, + ACTIONS(11583), 1, anon_sym_LT_EQ_GT, - ACTIONS(11234), 1, + ACTIONS(11585), 1, + anon_sym_or, + ACTIONS(11587), 1, + anon_sym_and, + ACTIONS(11589), 1, + anon_sym_bitor, + ACTIONS(11591), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(11593), 1, + anon_sym_QMARK, + STATE(3874), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11204), 2, + ACTIONS(11561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11214), 2, + ACTIONS(11571), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11224), 2, + ACTIONS(11581), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11206), 3, + ACTIONS(11563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11218), 3, + ACTIONS(11575), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11220), 3, + ACTIONS(11577), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9282), 4, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(9284), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(10479), 15, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_RBRACK_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -540648,65 +561586,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - [126364] = 19, + [126316] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11216), 1, + ACTIONS(10485), 1, + anon_sym_EQ, + ACTIONS(11565), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11567), 1, + anon_sym_AMP_AMP, + ACTIONS(11569), 1, + anon_sym_PIPE, + ACTIONS(11573), 1, anon_sym_AMP, - ACTIONS(11222), 1, + ACTIONS(11579), 1, anon_sym_GT_EQ, - ACTIONS(11226), 1, + ACTIONS(11583), 1, anon_sym_LT_EQ_GT, - ACTIONS(11234), 1, + ACTIONS(11585), 1, + anon_sym_or, + ACTIONS(11587), 1, + anon_sym_and, + ACTIONS(11589), 1, + anon_sym_bitor, + ACTIONS(11591), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11204), 2, + ACTIONS(11561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11224), 2, + ACTIONS(11571), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11581), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11206), 3, + ACTIONS(11563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11218), 3, + ACTIONS(11575), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11220), 3, + ACTIONS(11577), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9282), 6, + ACTIONS(10487), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK_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, + [126422] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9045), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, anon_sym_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, - ACTIONS(9284), 20, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9047), 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_RBRACK_RBRACK, + 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, @@ -540721,62 +561715,368 @@ 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, + [126482] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7789), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - [126456] = 17, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7791), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [126542] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8554), 1, + anon_sym_COLON_COLON, + ACTIONS(10178), 1, + anon_sym_STAR, + ACTIONS(10180), 1, + anon_sym_AMP_AMP, + ACTIONS(10182), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7990), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8548), 1, + sym__declarator, + STATE(11622), 1, + sym_ms_based_modifier, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7086), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [126646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9435), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + 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(11222), 1, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9437), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_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(11226), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11204), 2, + anon_sym_COLON_RBRACK, + [126706] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10842), 1, + anon_sym_LPAREN2, + ACTIONS(10844), 1, + anon_sym_LBRACK, + STATE(1975), 1, + sym_parameter_list, + STATE(5229), 1, + sym__function_declarator_seq, + ACTIONS(10198), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11224), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11218), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10196), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(11220), 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [126774] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10842), 1, + anon_sym_LPAREN2, + ACTIONS(10844), 1, + anon_sym_LBRACK, + STATE(1975), 1, + sym_parameter_list, + STATE(5229), 1, + sym__function_declarator_seq, + ACTIONS(10202), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9282), 7, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10200), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + anon_sym_GT2, + [126842] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10711), 1, + anon_sym_LPAREN2, + ACTIONS(10713), 1, + anon_sym_LBRACK, + STATE(1978), 1, + sym_parameter_list, + STATE(5085), 1, + sym__function_declarator_seq, + ACTIONS(10190), 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, - ACTIONS(9284), 21, + anon_sym_DOT, + ACTIONS(10188), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -540791,61 +562091,117 @@ 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, - [126544] = 16, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [126910] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11222), 1, - anon_sym_GT_EQ, - ACTIONS(11226), 1, - anon_sym_LT_EQ_GT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11204), 2, + ACTIONS(9715), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11224), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11220), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9282), 7, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9717), 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_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, + [126984] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10711), 1, + anon_sym_LPAREN2, + ACTIONS(10713), 1, + anon_sym_LBRACK, + STATE(1978), 1, + sym_parameter_list, + STATE(5085), 1, + sym__function_declarator_seq, + ACTIONS(10194), 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, - ACTIONS(9284), 24, + anon_sym_DOT, + ACTIONS(10192), 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_RBRACK_RBRACK, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -540860,60 +562216,245 @@ 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, - [126630] = 14, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [127052] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(7459), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7457), 44, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9236), 1, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [127114] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10984), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + STATE(5656), 1, + sym_new_declarator, + ACTIONS(9535), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(11226), 1, + ACTIONS(9537), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11204), 2, + anon_sym_GT2, + [127178] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10216), 1, + sym_identifier, + ACTIONS(10218), 1, + anon_sym_STAR, + ACTIONS(10220), 1, + anon_sym_AMP_AMP, + ACTIONS(10222), 1, + anon_sym_AMP, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7986), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8523), 1, + sym__declarator, + STATE(11612), 1, + sym_ms_based_modifier, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7086), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [127282] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8564), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11224), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9282), 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(9284), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8559), 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_RBRACK_RBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -540928,36 +562469,30 @@ 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, - [126712] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11204), 2, + anon_sym_DASH_GT_STAR, + [127342] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6883), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9239), 1, + anon_sym_LBRACK, + ACTIONS(9236), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(5645), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9282), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -540970,7 +562505,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9284), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5638), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -540978,7 +562515,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -540997,55 +562533,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [126790] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11204), 2, + anon_sym_DASH_GT_STAR, + [127408] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(11595), 1, + anon_sym_LT, + STATE(5542), 1, + sym_template_argument_list, + ACTIONS(9578), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11224), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9282), 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, - ACTIONS(9284), 26, + anon_sym_DOT, + ACTIONS(9580), 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_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -541053,7 +562582,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, @@ -541064,315 +562592,296 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [126870] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [127474] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(8084), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(8098), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11114), 1, + ACTIONS(8111), 1, + anon_sym_STAR, + ACTIONS(8113), 1, anon_sym_AMP_AMP, - ACTIONS(11116), 1, - anon_sym_PIPE, - ACTIONS(11120), 1, + ACTIONS(8115), 1, anon_sym_AMP, - ACTIONS(11128), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11130), 1, - anon_sym_or, - ACTIONS(11132), 1, - anon_sym_and, - ACTIONS(11134), 1, - anon_sym_bitor, - ACTIONS(11136), 1, - anon_sym_bitand, - ACTIONS(11238), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11240), 1, - anon_sym_QMARK, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(9436), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11108), 2, + STATE(2069), 1, + sym_parameter_list, + STATE(5348), 1, + sym__function_declarator_seq, + STATE(6175), 1, + sym__abstract_declarator, + STATE(5347), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9429), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11118), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11126), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11138), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11110), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11122), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11124), 4, + anon_sym_PIPE, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9438), 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, - [126978] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(10184), 1, - anon_sym_EQ, - ACTIONS(11208), 1, + ACTIONS(9427), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(11210), 1, - anon_sym_AMP_AMP, - ACTIONS(11212), 1, - anon_sym_PIPE, - ACTIONS(11216), 1, - anon_sym_AMP, - ACTIONS(11222), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(11226), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(11228), 1, anon_sym_or, - ACTIONS(11230), 1, anon_sym_and, - ACTIONS(11232), 1, anon_sym_bitor, - ACTIONS(11234), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11204), 2, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [127552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9296), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11214), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11224), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11206), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11218), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11220), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10186), 17, + anon_sym___attribute__, + anon_sym___attribute, + 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_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9298), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_RBRACK_RBRACK, + 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, - [127084] = 28, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [127612] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(11527), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11529), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10180), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10188), 1, - anon_sym_EQ, - ACTIONS(11208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11210), 1, - anon_sym_AMP_AMP, - ACTIONS(11212), 1, + STATE(5689), 1, + sym_new_declarator, + STATE(5978), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9274), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(11216), 1, anon_sym_AMP, - ACTIONS(11222), 1, - anon_sym_GT_EQ, - ACTIONS(11226), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11228), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, - ACTIONS(11230), 1, anon_sym_and, - ACTIONS(11232), 1, anon_sym_bitor, - ACTIONS(11234), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(11236), 1, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9276), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11204), 2, + anon_sym_COLON_RBRACK, + [127682] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10842), 1, + anon_sym_LPAREN2, + ACTIONS(10844), 1, + anon_sym_LBRACK, + STATE(1975), 1, + sym_parameter_list, + STATE(5229), 1, + sym__function_declarator_seq, + ACTIONS(10190), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11214), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11224), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11218), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11220), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10190), 15, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10188), 28, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [127194] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10192), 1, - anon_sym_EQ, - ACTIONS(11208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11210), 1, - anon_sym_AMP_AMP, - ACTIONS(11212), 1, - anon_sym_PIPE, - ACTIONS(11216), 1, - anon_sym_AMP, - ACTIONS(11222), 1, - anon_sym_GT_EQ, - ACTIONS(11226), 1, anon_sym_LT_EQ_GT, - ACTIONS(11228), 1, - anon_sym_or, - ACTIONS(11230), 1, - anon_sym_and, - ACTIONS(11232), 1, anon_sym_bitor, - ACTIONS(11234), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11204), 2, + anon_sym_GT2, + [127750] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10842), 1, + anon_sym_LPAREN2, + ACTIONS(10844), 1, + anon_sym_LBRACK, + STATE(1975), 1, + sym_parameter_list, + STATE(5229), 1, + sym__function_declarator_seq, + ACTIONS(10194), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11214), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11224), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11218), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11220), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10194), 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(10192), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, + 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, @@ -541380,82 +562889,133 @@ 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, - [127300] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10180), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10196), 1, - anon_sym_EQ, - ACTIONS(11208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11210), 1, - anon_sym_AMP_AMP, - ACTIONS(11212), 1, - anon_sym_PIPE, - ACTIONS(11216), 1, - anon_sym_AMP, - ACTIONS(11222), 1, - anon_sym_GT_EQ, - ACTIONS(11226), 1, anon_sym_LT_EQ_GT, - ACTIONS(11228), 1, - anon_sym_or, - ACTIONS(11230), 1, - anon_sym_and, - ACTIONS(11232), 1, anon_sym_bitor, - ACTIONS(11234), 1, anon_sym_bitand, - ACTIONS(11236), 1, - anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11204), 2, + anon_sym_GT2, + [127818] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10216), 1, + sym_identifier, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + ACTIONS(10240), 1, + anon_sym_STAR, + ACTIONS(10242), 1, + anon_sym_AMP_AMP, + ACTIONS(10244), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7986), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8785), 1, + sym__declarator, + STATE(10743), 1, + sym_ms_based_modifier, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7086), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [127922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5593), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11214), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11224), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11218), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11220), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10198), 15, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5595), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, + anon_sym_RPAREN, + anon_sym_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, @@ -541466,15 +563026,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, - [127410] = 4, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [127982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(9262), 19, + ACTIONS(9067), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541488,13 +563057,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(9264), 32, + ACTIONS(9069), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -541504,7 +563074,7 @@ 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -541527,12 +563097,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [127472] = 4, + [128042] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(11242), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(9308), 20, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8228), 1, + sym_identifier, + ACTIONS(8675), 1, + anon_sym_COLON_COLON, + ACTIONS(10234), 1, + anon_sym_STAR, + ACTIONS(10236), 1, + anon_sym_AMP_AMP, + ACTIONS(10238), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7993), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8523), 1, + sym__declarator, + STATE(10900), 1, + sym_ms_based_modifier, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7086), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [128146] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9697), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541552,17 +563199,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9310), 31, + ACTIONS(9699), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -541584,182 +563232,294 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [127534] = 3, + anon_sym_DASH_GT, + [128206] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(8999), 23, - aux_sym_preproc_elif_token1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8554), 1, + anon_sym_COLON_COLON, + ACTIONS(10264), 1, + anon_sym_STAR, + ACTIONS(10266), 1, + anon_sym_AMP_AMP, + ACTIONS(10268), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7990), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8785), 1, + sym__declarator, + STATE(10957), 1, + sym_ms_based_modifier, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7086), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [128310] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3098), 1, + anon_sym_LBRACE, + ACTIONS(11434), 1, + anon_sym_LPAREN2, + ACTIONS(11436), 1, + anon_sym_LBRACK, + STATE(5645), 1, + sym_new_declarator, + STATE(6041), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9226), 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___attribute__, - anon_sym___attribute, - anon_sym_COLON, - 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_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9001), 29, + anon_sym_DASH_GT, + ACTIONS(9228), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [127594] = 3, + anon_sym_DASH_GT_STAR, + [128380] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9003), 23, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + ACTIONS(11319), 1, + anon_sym_LBRACK, + ACTIONS(11323), 1, + anon_sym_DOT, + ACTIONS(11448), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11450), 1, + anon_sym_AMP_AMP, + ACTIONS(11452), 1, anon_sym_PIPE, + ACTIONS(11456), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + ACTIONS(11466), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11468), 1, anon_sym_or, + ACTIONS(11470), 1, anon_sym_and, + ACTIONS(11472), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11474), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9005), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + STATE(5741), 1, + sym_argument_list, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(10485), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11321), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11444), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11454), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11462), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11446), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(11458), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11460), 4, + anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10487), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [127654] = 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_GT2, + [128484] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 23, - aux_sym_preproc_elif_token1, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(11327), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, + anon_sym_DOT, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9657), 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___attribute__, - anon_sym___attribute, - anon_sym_COLON, + 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_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9013), 29, + ACTIONS(9659), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [127714] = 3, + [128556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9015), 23, + ACTIONS(9308), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -541783,7 +563543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(9017), 29, + ACTIONS(9310), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -541813,21 +563573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [127774] = 8, + [128616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(11145), 1, - anon_sym_LPAREN2, - ACTIONS(11147), 1, - anon_sym_LBRACK, - STATE(5530), 1, - sym_new_declarator, - STATE(5871), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8804), 20, + ACTIONS(9316), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -541848,7 +563597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(8806), 26, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9318), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -541856,6 +563608,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -541867,7 +563620,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, @@ -541875,10 +563630,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [127844] = 3, + [128676] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8554), 1, + anon_sym_COLON_COLON, + ACTIONS(10246), 1, + anon_sym_STAR, + ACTIONS(10248), 1, + anon_sym_AMP_AMP, + ACTIONS(10250), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7990), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8808), 1, + sym__declarator, + STATE(10837), 1, + sym_ms_based_modifier, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7086), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [128780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5229), 17, + ACTIONS(9080), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541894,9 +563728,12 @@ static const uint16_t ts_small_parse_table[] = { 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(5231), 35, + ACTIONS(9082), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -541918,77 +563755,6 @@ 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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [127904] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11138), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11110), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9282), 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(9284), 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, @@ -541996,134 +563762,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [127980] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11138), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9282), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_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(9284), 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, - [128054] = 26, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [128840] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10192), 1, + ACTIONS(10538), 1, anon_sym_EQ, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11069), 1, + ACTIONS(11480), 1, anon_sym_PIPE_PIPE, - ACTIONS(11071), 1, + ACTIONS(11482), 1, anon_sym_AMP_AMP, - ACTIONS(11073), 1, + ACTIONS(11484), 1, anon_sym_PIPE, - ACTIONS(11077), 1, + ACTIONS(11488), 1, anon_sym_AMP, - ACTIONS(11083), 1, + ACTIONS(11494), 1, anon_sym_GT_EQ, - ACTIONS(11089), 1, + ACTIONS(11498), 1, anon_sym_LT_EQ_GT, - ACTIONS(11091), 1, + ACTIONS(11500), 1, anon_sym_or, - ACTIONS(11093), 1, + ACTIONS(11502), 1, anon_sym_and, - ACTIONS(11095), 1, + ACTIONS(11504), 1, anon_sym_bitor, - ACTIONS(11097), 1, + ACTIONS(11506), 1, anon_sym_bitand, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10975), 2, + ACTIONS(11329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11065), 2, + ACTIONS(11476), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11075), 2, + ACTIONS(11486), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11085), 2, + ACTIONS(11496), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11067), 3, + ACTIONS(11478), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11079), 3, + ACTIONS(11490), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11081), 3, + ACTIONS(11492), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10194), 17, + ACTIONS(10540), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RBRACK, @@ -542141,18 +563846,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [128160] = 7, + [128946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10333), 1, - anon_sym_LPAREN2, - ACTIONS(10335), 1, - anon_sym_LBRACK, - STATE(1873), 1, - sym_parameter_list, - STATE(5159), 1, - sym__function_declarator_seq, - ACTIONS(9852), 18, + ACTIONS(9084), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -542166,20 +563863,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, anon_sym_DOT, - ACTIONS(9850), 30, + anon_sym_DASH_GT, + ACTIONS(9086), 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_RBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -542201,70 +563902,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [128228] = 23, + anon_sym_DASH_GT_STAR, + [129006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11114), 1, - anon_sym_AMP_AMP, - ACTIONS(11116), 1, + ACTIONS(8697), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(11120), 1, anon_sym_AMP, - ACTIONS(11128), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11132), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_or, anon_sym_and, - ACTIONS(11134), 1, anon_sym_bitor, - ACTIONS(11136), 1, + anon_sym_xor, anon_sym_bitand, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11108), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11118), 2, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8699), 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_xor, - ACTIONS(11126), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11138), 2, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9282), 3, + anon_sym_DOT_STAR, + 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, + anon_sym_COLON_RBRACK, + [129066] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8228), 1, + sym_identifier, + ACTIONS(8675), 1, + anon_sym_COLON_COLON, + ACTIONS(10252), 1, + anon_sym_STAR, + ACTIONS(10254), 1, + anon_sym_AMP_AMP, + ACTIONS(10256), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(7993), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8808), 1, + sym__declarator, + STATE(11008), 1, + sym_ms_based_modifier, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7086), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + ACTIONS(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [129170] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6861), 1, + anon_sym___asm, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(11172), 1, + anon_sym_LPAREN2, + ACTIONS(11180), 1, + sym_ms_restrict_modifier, + ACTIONS(11186), 1, + anon_sym_LBRACK, + ACTIONS(11598), 1, + anon_sym_STAR, + ACTIONS(11600), 1, + anon_sym_AMP_AMP, + ACTIONS(11602), 1, + anon_sym_AMP, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(4562), 1, + sym_parameter_list, + STATE(6387), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8314), 1, + sym__function_declarator_seq, + STATE(8496), 1, + sym__abstract_declarator, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11182), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11184), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5500), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6287), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8312), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6859), 12, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - ACTIONS(11110), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [129268] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11513), 1, + anon_sym_LT, + STATE(2985), 1, + sym_template_argument_list, + ACTIONS(9650), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11122), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11124), 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(9284), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9652), 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, @@ -542272,74 +564159,56 @@ 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, - [128328] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11116), 1, - anon_sym_PIPE, - ACTIONS(11120), 1, - anon_sym_AMP, - ACTIONS(11128), 1, anon_sym_LT_EQ_GT, - ACTIONS(11134), 1, anon_sym_bitor, - ACTIONS(11136), 1, anon_sym_bitand, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(11103), 2, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11108), 2, + anon_sym_DASH_GT_STAR, + [129332] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9760), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11118), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11126), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11138), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11110), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11122), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9282), 4, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(11124), 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(9284), 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, + anon_sym_DASH_GT, + ACTIONS(9762), 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, @@ -542347,71 +564216,170 @@ 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, - [128424] = 19, + anon_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, + [129392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(6614), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11099), 1, + 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, + anon_sym_LBRACK_COLON, + ACTIONS(6612), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11120), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [129452] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7158), 6, anon_sym_AMP, - ACTIONS(11128), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11136), 1, - anon_sym_bitand, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7160), 46, + 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___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, anon_sym_DASH_GT, - ACTIONS(11108), 2, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [129512] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9760), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11118), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11126), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11138), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11110), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11122), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11124), 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(9282), 5, - anon_sym_PIPE, + 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, - ACTIONS(9284), 19, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9762), 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, @@ -542419,71 +564387,56 @@ 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_bitor, - anon_sym_GT2, - [128516] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11120), 1, - anon_sym_AMP, - ACTIONS(11128), 1, anon_sym_LT_EQ_GT, - ACTIONS(11136), 1, + anon_sym_bitor, anon_sym_bitand, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(11103), 2, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11108), 2, + anon_sym_DASH_GT_STAR, + [129572] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9760), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11126), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11138), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11110), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11122), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11124), 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(9282), 7, - anon_sym_PIPE, - anon_sym_CARET, + 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, - ACTIONS(9284), 19, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9762), 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, @@ -542491,151 +564444,227 @@ 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_GT2, - [128606] = 29, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [129632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9436), 1, - anon_sym_EQ, - ACTIONS(10542), 1, + ACTIONS(6626), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10973), 1, + 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, + anon_sym_LBRACK_COLON, + ACTIONS(6624), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - ACTIONS(11063), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [129692] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6630), 13, anon_sym_DOT_DOT_DOT, - ACTIONS(11069), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11071), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(11073), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6628), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [129752] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7968), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(11077), 1, anon_sym_AMP, - ACTIONS(11083), 1, - anon_sym_GT_EQ, - ACTIONS(11087), 1, - anon_sym_QMARK, - ACTIONS(11089), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11091), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, - ACTIONS(11093), 1, anon_sym_and, - ACTIONS(11095), 1, anon_sym_bitor, - ACTIONS(11097), 1, - anon_sym_bitand, - STATE(5762), 1, - sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(10975), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11065), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11075), 2, - anon_sym_CARET, anon_sym_xor, - ACTIONS(11085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11244), 2, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7966), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(11067), 3, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11079), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11081), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9438), 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, - [128718] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11128), 1, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(11103), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11108), 2, + anon_sym_COLON_RBRACK, + [129812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9760), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11126), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11138), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11110), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11122), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11124), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9282), 8, anon_sym_PIPE, anon_sym_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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9284), 20, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9762), 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, @@ -542643,67 +564672,87 @@ 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_GT2, - [128804] = 15, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [129872] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(10473), 1, + anon_sym_EQ, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11128), 1, + ACTIONS(11480), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11482), 1, + anon_sym_AMP_AMP, + ACTIONS(11484), 1, + anon_sym_PIPE, + ACTIONS(11488), 1, + anon_sym_AMP, + ACTIONS(11494), 1, + anon_sym_GT_EQ, + ACTIONS(11498), 1, anon_sym_LT_EQ_GT, - STATE(5759), 1, + ACTIONS(11500), 1, + anon_sym_or, + ACTIONS(11502), 1, + anon_sym_and, + ACTIONS(11504), 1, + anon_sym_bitor, + ACTIONS(11506), 1, + anon_sym_bitand, + STATE(5875), 1, sym_argument_list, - STATE(5761), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(11103), 2, + ACTIONS(11329), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11108), 2, + ACTIONS(11476), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11126), 2, + ACTIONS(11486), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11496), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11138), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11110), 3, + ACTIONS(11478), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11124), 4, + ACTIONS(11490), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11492), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9282), 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(9284), 23, + ACTIONS(10475), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -542711,67 +564760,48 @@ 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_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_GT2, - [128888] = 14, + [129978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11128), 1, - anon_sym_LT_EQ_GT, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11108), 2, + ACTIONS(9760), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11126), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11138), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11110), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9282), 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_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9284), 23, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9762), 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, @@ -542779,64 +564809,118 @@ 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, - [128970] = 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [130038] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10647), 1, + anon_sym_LT, + ACTIONS(10857), 1, + anon_sym_EQ, + STATE(4318), 1, + sym_template_argument_list, + ACTIONS(10855), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5657), 8, + anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, - ACTIONS(11099), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(7371), 38, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11108), 2, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [130108] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9760), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11138), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11110), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9282), 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_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9284), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9762), 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, @@ -542844,6 +564928,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, @@ -542854,141 +564939,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [129048] = 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [130168] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(11527), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(11529), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - STATE(5759), 1, + STATE(5672), 1, + sym_new_declarator, + STATE(6007), 2, sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11108), 2, + sym_initializer_list, + ACTIONS(9226), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11126), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + 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_identifier, + ACTIONS(9228), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11138), 2, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11110), 3, - anon_sym_STAR, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [130238] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9407), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9282), 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___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(9284), 24, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9409), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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, - anon_sym_not_eq, - anon_sym_GT2, - [129128] = 25, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [130298] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(10554), 1, + anon_sym_LBRACE, + ACTIONS(11604), 1, + anon_sym_COLON, + STATE(4509), 1, + sym__enum_base_clause, + STATE(4668), 1, + sym_enumerator_list, + STATE(4868), 1, + sym_attribute_specifier, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8002), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3049), 1, anon_sym_TILDE, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, - sym_identifier, - ACTIONS(9876), 1, anon_sym_STAR, - ACTIONS(9878), 1, anon_sym_AMP_AMP, - ACTIONS(9880), 1, - anon_sym_AMP, - ACTIONS(9882), 1, anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7870), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8415), 1, - sym__declarator, - STATE(11345), 1, - sym_ms_based_modifier, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6842), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(8000), 33, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -543001,41 +565119,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [129232] = 8, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [130370] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(6212), 1, - anon_sym_LBRACK, - ACTIONS(9672), 1, - anon_sym_LT, - STATE(5816), 1, - sym_template_argument_list, - ACTIONS(6205), 2, + ACTIONS(10554), 1, + anon_sym_LBRACE, + ACTIONS(11604), 1, + anon_sym_COLON, + STATE(4514), 1, + sym__enum_base_clause, + STATE(4683), 1, + sym_enumerator_list, + STATE(4912), 1, + sym_attribute_specifier, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8008), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 5, 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, anon_sym_LBRACK_COLON, - ACTIONS(6201), 41, + ACTIONS(8006), 33, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym___attribute__, - 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, @@ -543059,22 +565185,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - sym_auto, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [129302] = 7, + [130442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10333), 1, - anon_sym_LPAREN2, - ACTIONS(10335), 1, - anon_sym_LBRACK, - STATE(1873), 1, - sym_parameter_list, - STATE(5159), 1, - sym__function_declarator_seq, - ACTIONS(9856), 18, + ACTIONS(9703), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -543093,15 +565210,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9854), 30, + anon_sym_DASH_GT, + ACTIONS(9705), 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_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -543123,236 +565244,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [129370] = 5, + anon_sym_DASH_GT_STAR, + [130502] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11246), 1, + ACTIONS(7090), 1, + anon_sym_LBRACE, + ACTIONS(7445), 1, anon_sym_LT, - STATE(5573), 1, + STATE(2053), 1, sym_template_argument_list, - ACTIONS(9262), 18, + ACTIONS(7087), 2, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + ACTIONS(7092), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9264), 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_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, - [129434] = 51, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10431), 1, - anon_sym_DOT_STAR, - ACTIONS(10433), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(10981), 1, + anon_sym_DOT, + sym_identifier, + ACTIONS(7097), 28, anon_sym_DOT_DOT_DOT, - ACTIONS(10983), 1, anon_sym_COMMA, - ACTIONS(10987), 1, - anon_sym_DASH, - ACTIONS(10989), 1, - anon_sym_PLUS, - ACTIONS(10991), 1, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR, - ACTIONS(10993), 1, - anon_sym_SLASH, - ACTIONS(10995), 1, anon_sym_PERCENT, - ACTIONS(10997), 1, anon_sym_PIPE_PIPE, - ACTIONS(10999), 1, anon_sym_AMP_AMP, - ACTIONS(11001), 1, - anon_sym_PIPE, - ACTIONS(11003), 1, anon_sym_CARET, - ACTIONS(11005), 1, - anon_sym_AMP, - ACTIONS(11007), 1, anon_sym_EQ_EQ, - ACTIONS(11009), 1, anon_sym_BANG_EQ, - ACTIONS(11011), 1, - anon_sym_GT, - ACTIONS(11013), 1, anon_sym_GT_EQ, - ACTIONS(11015), 1, - anon_sym_LT_EQ, - ACTIONS(11017), 1, - anon_sym_LT, - ACTIONS(11019), 1, anon_sym_LT_LT, - ACTIONS(11021), 1, anon_sym_GT_GT, - ACTIONS(11023), 1, - anon_sym_EQ, - ACTIONS(11025), 1, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(11027), 1, - anon_sym_STAR_EQ, - ACTIONS(11029), 1, - anon_sym_SLASH_EQ, - ACTIONS(11031), 1, - anon_sym_PERCENT_EQ, - ACTIONS(11033), 1, - anon_sym_PLUS_EQ, - ACTIONS(11035), 1, - anon_sym_DASH_EQ, - ACTIONS(11037), 1, - anon_sym_LT_LT_EQ, - ACTIONS(11039), 1, - anon_sym_GT_GT_EQ, - ACTIONS(11041), 1, - anon_sym_AMP_EQ, - ACTIONS(11043), 1, - anon_sym_CARET_EQ, - ACTIONS(11045), 1, - anon_sym_PIPE_EQ, - ACTIONS(11047), 1, anon_sym_LT_EQ_GT, - ACTIONS(11049), 1, - anon_sym_or, - ACTIONS(11051), 1, - anon_sym_and, - ACTIONS(11053), 1, - anon_sym_bitor, - ACTIONS(11055), 1, - anon_sym_xor, - ACTIONS(11057), 1, - anon_sym_bitand, - ACTIONS(11059), 1, - anon_sym_not_eq, - ACTIONS(11249), 1, - anon_sym_RPAREN, - STATE(1667), 1, - sym__binary_fold_operator, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - STATE(10893), 1, - sym__fold_operator, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11061), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [129590] = 22, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [130570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6457), 1, - anon_sym___asm, - ACTIONS(10012), 1, + ACTIONS(7085), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, - ACTIONS(10922), 1, + anon_sym___asm, + ACTIONS(7090), 45, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10930), 1, - sym_ms_restrict_modifier, - ACTIONS(10936), 1, - anon_sym_LBRACK, - ACTIONS(11251), 1, anon_sym_STAR, - ACTIONS(11253), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11255), 1, - anon_sym_AMP, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(4486), 1, - sym_parameter_list, - STATE(6312), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8183), 1, - sym__function_declarator_seq, - STATE(8328), 1, - sym__abstract_declarator, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10932), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(10934), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5383), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6158), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8180), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6459), 12, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym___declspec, anon_sym_LBRACE, + anon_sym_static, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(10001), 12, - anon_sym___extension__, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -543364,26 +565352,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [129688] = 10, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [130630] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11315), 1, anon_sym_DOT, - STATE(5759), 1, + STATE(3874), 1, sym_argument_list, - STATE(5761), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(11103), 2, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11138), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9270), 19, + ACTIONS(9657), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -543393,23 +565389,23 @@ 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(9272), 24, + ACTIONS(9659), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -543417,6 +565413,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, @@ -543427,42 +565424,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [129762] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [130702] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8685), 20, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(10538), 1, + anon_sym_EQ, + ACTIONS(11315), 1, + anon_sym_DOT, + ACTIONS(11606), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11608), 1, + anon_sym_AMP_AMP, + ACTIONS(11610), 1, + anon_sym_PIPE, + ACTIONS(11614), 1, + anon_sym_AMP, + ACTIONS(11620), 1, + anon_sym_GT_EQ, + ACTIONS(11622), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11624), 1, + anon_sym_or, + ACTIONS(11626), 1, + anon_sym_and, + ACTIONS(11628), 1, + anon_sym_bitor, + ACTIONS(11630), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11309), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11313), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11612), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11311), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11616), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11618), 3, 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(8687), 32, + ACTIONS(10540), 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_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -543477,18 +565506,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, + [130808] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(11315), 1, + anon_sym_DOT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(11317), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [129822] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8709), 20, + anon_sym_DASH_GT, + ACTIONS(9673), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -543502,24 +565539,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, - anon_sym_DASH_GT, - ACTIONS(8711), 32, + ACTIONS(9675), 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_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -543538,14 +565570,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [130882] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(11315), 1, + anon_sym_DOT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(11317), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [129882] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8713), 20, + anon_sym_DASH_GT, + ACTIONS(9677), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -543559,24 +565603,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, - anon_sym_DASH_GT, - ACTIONS(8715), 32, + ACTIONS(9679), 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_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -543595,18 +565634,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [130956] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(10542), 1, + anon_sym_EQ, + ACTIONS(11315), 1, + anon_sym_DOT, + ACTIONS(11606), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11608), 1, + anon_sym_AMP_AMP, + ACTIONS(11610), 1, + anon_sym_PIPE, + ACTIONS(11614), 1, + anon_sym_AMP, + ACTIONS(11620), 1, + anon_sym_GT_EQ, + ACTIONS(11622), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11624), 1, + anon_sym_or, + ACTIONS(11626), 1, + anon_sym_and, + ACTIONS(11628), 1, + anon_sym_bitor, + ACTIONS(11630), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(11309), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11313), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11317), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [129942] = 5, + anon_sym_DASH_GT, + ACTIONS(11612), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11311), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11616), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11618), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10544), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [131062] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11142), 1, - anon_sym_LT, - STATE(2933), 1, - sym_template_argument_list, - ACTIONS(9225), 18, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(11315), 1, + anon_sym_DOT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9681), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -543617,25 +565741,22 @@ 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(9227), 32, + ACTIONS(9683), 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -543656,126 +565777,152 @@ 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, - [130006] = 25, + [131134] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(9599), 1, + anon_sym_EQ, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, - sym_identifier, - ACTIONS(9882), 1, - anon_sym_COLON_COLON, - ACTIONS(9894), 1, - anon_sym_STAR, - ACTIONS(9896), 1, + ACTIONS(11315), 1, + anon_sym_DOT, + ACTIONS(11606), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11608), 1, anon_sym_AMP_AMP, - ACTIONS(9898), 1, + ACTIONS(11610), 1, + anon_sym_PIPE, + ACTIONS(11614), 1, anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7870), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8694), 1, - sym__declarator, - STATE(10563), 1, - sym_ms_based_modifier, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6842), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [130110] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10337), 1, - anon_sym_LPAREN2, - ACTIONS(10339), 1, - anon_sym_LBRACK, - STATE(1875), 1, - sym_parameter_list, - STATE(5063), 1, - sym__function_declarator_seq, - ACTIONS(9852), 20, + ACTIONS(11620), 1, + anon_sym_GT_EQ, + ACTIONS(11622), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11624), 1, + anon_sym_or, + ACTIONS(11626), 1, + anon_sym_and, + ACTIONS(11628), 1, + anon_sym_bitor, + ACTIONS(11630), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11309), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11313), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11612), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11311), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11616), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11618), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9850), 28, + ACTIONS(9597), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [131240] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(10435), 1, + anon_sym_EQ, + ACTIONS(11315), 1, + anon_sym_DOT, + ACTIONS(11606), 1, anon_sym_PIPE_PIPE, + ACTIONS(11608), 1, anon_sym_AMP_AMP, + ACTIONS(11610), 1, + anon_sym_PIPE, + ACTIONS(11614), 1, + anon_sym_AMP, + ACTIONS(11620), 1, + anon_sym_GT_EQ, + ACTIONS(11622), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11624), 1, + anon_sym_or, + ACTIONS(11626), 1, + anon_sym_and, + ACTIONS(11628), 1, + anon_sym_bitor, + ACTIONS(11630), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11309), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11313), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11612), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11311), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11616), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11618), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10437), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -543783,59 +565930,142 @@ 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, + [131346] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9826), 1, + anon_sym_EQ, + ACTIONS(10469), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11315), 1, + anon_sym_DOT, + ACTIONS(11606), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11608), 1, + anon_sym_AMP_AMP, + ACTIONS(11610), 1, + anon_sym_PIPE, + ACTIONS(11614), 1, + anon_sym_AMP, + ACTIONS(11620), 1, + anon_sym_GT_EQ, + ACTIONS(11622), 1, anon_sym_LT_EQ_GT, + ACTIONS(11624), 1, + anon_sym_or, + ACTIONS(11626), 1, + anon_sym_and, + ACTIONS(11628), 1, anon_sym_bitor, + ACTIONS(11630), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(11632), 1, + anon_sym_QMARK, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(11309), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11313), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [130178] = 6, + ACTIONS(11612), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11311), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11616), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11618), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9828), 15, + anon_sym_COMMA, + 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, + [131456] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(11257), 1, - anon_sym_LT, - STATE(5429), 1, - sym_template_argument_list, - ACTIONS(9135), 17, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(11315), 1, + anon_sym_DOT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11311), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9707), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9137), 32, + ACTIONS(9709), 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_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -543854,14 +566084,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [131532] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(11315), 1, + anon_sym_DOT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [130244] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8717), 20, + ACTIONS(9707), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -543875,24 +566117,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, - anon_sym_DASH_GT, - ACTIONS(8719), 32, + ACTIONS(9709), 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_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -543911,49 +566148,70 @@ 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, - [130304] = 7, + [131606] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10337), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10339), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(1875), 1, - sym_parameter_list, - STATE(5063), 1, - sym__function_declarator_seq, - ACTIONS(9856), 20, + ACTIONS(11315), 1, + anon_sym_DOT, + ACTIONS(11608), 1, + anon_sym_AMP_AMP, + ACTIONS(11610), 1, + anon_sym_PIPE, + ACTIONS(11614), 1, + anon_sym_AMP, + ACTIONS(11620), 1, + anon_sym_GT_EQ, + ACTIONS(11622), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11626), 1, + anon_sym_and, + ACTIONS(11628), 1, + anon_sym_bitor, + ACTIONS(11630), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9707), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(11309), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11313), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11612), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11311), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11616), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11618), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9854), 28, + ACTIONS(9709), 18, 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -543961,263 +566219,291 @@ 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, + [131708] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(11315), 1, + anon_sym_DOT, + ACTIONS(11610), 1, + anon_sym_PIPE, + ACTIONS(11614), 1, + anon_sym_AMP, + ACTIONS(11620), 1, + anon_sym_GT_EQ, + ACTIONS(11622), 1, anon_sym_LT_EQ_GT, + ACTIONS(11628), 1, anon_sym_bitor, + ACTIONS(11630), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [130372] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8541), 23, - aux_sym_preproc_elif_token1, + ACTIONS(11309), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11313), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11612), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9707), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(11311), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(11616), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11618), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8543), 29, + ACTIONS(9709), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [131806] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(11315), 1, + anon_sym_DOT, + ACTIONS(11614), 1, + anon_sym_AMP, + ACTIONS(11620), 1, + anon_sym_GT_EQ, + ACTIONS(11622), 1, anon_sym_LT_EQ_GT, + ACTIONS(11630), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [130432] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9029), 23, - aux_sym_preproc_elif_token1, + ACTIONS(11309), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11313), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11612), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11311), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(11616), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11618), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + ACTIONS(9707), 4, + anon_sym_PIPE, + 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_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9031), 29, + ACTIONS(9709), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + [131900] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(11315), 1, + anon_sym_DOT, + ACTIONS(11614), 1, + anon_sym_AMP, + ACTIONS(11620), 1, + anon_sym_GT_EQ, + ACTIONS(11622), 1, anon_sym_LT_EQ_GT, + ACTIONS(11630), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(11309), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11313), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [130492] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(10277), 1, + ACTIONS(11311), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11616), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11618), 3, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10510), 1, + ACTIONS(9707), 6, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - STATE(4203), 1, - sym_template_argument_list, - ACTIONS(10508), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(5272), 8, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9709), 20, anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK_COLON, - ACTIONS(7031), 38, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [130562] = 26, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [131992] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(10123), 1, - anon_sym_EQ, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - ACTIONS(10973), 1, - anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - ACTIONS(11069), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11071), 1, - anon_sym_AMP_AMP, - ACTIONS(11073), 1, - anon_sym_PIPE, - ACTIONS(11077), 1, - anon_sym_AMP, - ACTIONS(11083), 1, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(11315), 1, + anon_sym_DOT, + ACTIONS(11620), 1, anon_sym_GT_EQ, - ACTIONS(11089), 1, + ACTIONS(11622), 1, anon_sym_LT_EQ_GT, - ACTIONS(11091), 1, - anon_sym_or, - ACTIONS(11093), 1, - anon_sym_and, - ACTIONS(11095), 1, - anon_sym_bitor, - ACTIONS(11097), 1, - anon_sym_bitand, - STATE(5762), 1, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10975), 2, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11065), 2, + ACTIONS(11309), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11075), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11085), 2, + ACTIONS(11313), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11067), 3, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11311), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11079), 3, + ACTIONS(11616), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11081), 3, + ACTIONS(11618), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10125), 17, + ACTIONS(9707), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9709), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -544232,45 +566518,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [130668] = 7, + anon_sym_bitor, + anon_sym_bitand, + [132080] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(10333), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10335), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(1873), 1, - sym_parameter_list, - STATE(5159), 1, - sym__function_declarator_seq, - ACTIONS(9840), 18, + ACTIONS(11315), 1, + anon_sym_DOT, + ACTIONS(11620), 1, + anon_sym_GT_EQ, + ACTIONS(11622), 1, + anon_sym_LT_EQ_GT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11309), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11313), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11311), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11618), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9707), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9838), 30, + ACTIONS(9709), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -544285,131 +566587,52 @@ 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, - [130736] = 25, + [132166] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - ACTIONS(9888), 1, - anon_sym_STAR, - ACTIONS(9890), 1, - anon_sym_AMP_AMP, - ACTIONS(9892), 1, - anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8415), 1, - sym__declarator, - STATE(10719), 1, - sym_ms_based_modifier, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6842), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [130840] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11315), 1, anon_sym_DOT, - STATE(5762), 1, + ACTIONS(11622), 1, + anon_sym_LT_EQ_GT, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10975), 2, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9270), 17, + ACTIONS(11309), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11313), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11311), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9707), 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(9272), 26, + ACTIONS(9709), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -544417,7 +566640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -544432,462 +566655,447 @@ 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, - [130914] = 8, + [132248] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(11145), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11147), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(5468), 1, - sym_new_declarator, - STATE(5875), 2, + ACTIONS(11315), 1, + anon_sym_DOT, + STATE(3874), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(8866), 20, - aux_sym_preproc_elif_token1, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11309), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11311), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(9707), 12, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + 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_identifier, - ACTIONS(8868), 26, + ACTIONS(9709), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_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, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [130984] = 25, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [132326] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(10485), 1, + anon_sym_EQ, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, - sym_identifier, - ACTIONS(8203), 1, - anon_sym_COLON_COLON, - ACTIONS(9912), 1, - anon_sym_STAR, - ACTIONS(9914), 1, + ACTIONS(11331), 1, + anon_sym_DOT, + ACTIONS(11480), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11482), 1, anon_sym_AMP_AMP, - ACTIONS(9916), 1, + ACTIONS(11484), 1, + anon_sym_PIPE, + ACTIONS(11488), 1, anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7878), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8694), 1, - sym__declarator, - STATE(10776), 1, - sym_ms_based_modifier, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6842), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [131088] = 3, + ACTIONS(11494), 1, + anon_sym_GT_EQ, + ACTIONS(11498), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11500), 1, + anon_sym_or, + ACTIONS(11502), 1, + anon_sym_and, + ACTIONS(11504), 1, + anon_sym_bitor, + ACTIONS(11506), 1, + anon_sym_bitand, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11329), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11476), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11486), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11496), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11478), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11490), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11492), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10487), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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, + [132432] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8559), 23, - aux_sym_preproc_elif_token1, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(11315), 1, + anon_sym_DOT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9715), 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___attribute__, - anon_sym___attribute, - anon_sym_COLON, + 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_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8561), 29, + ACTIONS(9717), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [132506] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(10473), 1, + anon_sym_EQ, + ACTIONS(11315), 1, + anon_sym_DOT, + ACTIONS(11606), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11608), 1, + anon_sym_AMP_AMP, + ACTIONS(11610), 1, + anon_sym_PIPE, + ACTIONS(11614), 1, + anon_sym_AMP, + ACTIONS(11620), 1, + anon_sym_GT_EQ, + ACTIONS(11622), 1, anon_sym_LT_EQ_GT, + ACTIONS(11624), 1, + anon_sym_or, + ACTIONS(11626), 1, + anon_sym_and, + ACTIONS(11628), 1, + anon_sym_bitor, + ACTIONS(11630), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(11309), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11313), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [131148] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6272), 13, + ACTIONS(11612), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11311), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11616), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11618), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10475), 17, 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, - anon_sym_LBRACK_COLON, - ACTIONS(6270), 39, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [131208] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, - sym_identifier, - ACTIONS(8203), 1, - anon_sym_COLON_COLON, - ACTIONS(9900), 1, - anon_sym_STAR, - ACTIONS(9902), 1, - anon_sym_AMP_AMP, - ACTIONS(9904), 1, - anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7878), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8646), 1, - sym__declarator, - STATE(10656), 1, - sym_ms_based_modifier, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6842), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [131312] = 25, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [132612] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(10469), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10477), 1, + anon_sym_EQ, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(11112), 1, + ACTIONS(11606), 1, anon_sym_PIPE_PIPE, - ACTIONS(11114), 1, + ACTIONS(11608), 1, anon_sym_AMP_AMP, - ACTIONS(11116), 1, + ACTIONS(11610), 1, anon_sym_PIPE, - ACTIONS(11120), 1, + ACTIONS(11614), 1, anon_sym_AMP, - ACTIONS(11128), 1, + ACTIONS(11620), 1, + anon_sym_GT_EQ, + ACTIONS(11622), 1, anon_sym_LT_EQ_GT, - ACTIONS(11130), 1, + ACTIONS(11624), 1, anon_sym_or, - ACTIONS(11132), 1, + ACTIONS(11626), 1, anon_sym_and, - ACTIONS(11134), 1, + ACTIONS(11628), 1, anon_sym_bitor, - ACTIONS(11136), 1, + ACTIONS(11630), 1, anon_sym_bitand, - STATE(5759), 1, + ACTIONS(11632), 1, + anon_sym_QMARK, + STATE(3874), 1, sym_argument_list, - STATE(5761), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10184), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11108), 2, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11309), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11118), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11126), 2, + ACTIONS(11313), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11138), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11110), 3, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11612), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11311), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11122), 3, + ACTIONS(11616), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11124), 4, + ACTIONS(11618), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10186), 16, - anon_sym_DOT_DOT_DOT, + ACTIONS(10479), 15, anon_sym_COMMA, - anon_sym_QMARK, + 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, - anon_sym_GT2, - [131416] = 7, + [132722] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10333), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10335), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(1873), 1, - sym_parameter_list, - STATE(5159), 1, - sym__function_declarator_seq, - ACTIONS(9844), 18, + ACTIONS(10485), 1, + anon_sym_EQ, + ACTIONS(11315), 1, + anon_sym_DOT, + ACTIONS(11606), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11608), 1, + anon_sym_AMP_AMP, + ACTIONS(11610), 1, + anon_sym_PIPE, + ACTIONS(11614), 1, + anon_sym_AMP, + ACTIONS(11620), 1, + anon_sym_GT_EQ, + ACTIONS(11622), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11624), 1, + anon_sym_or, + ACTIONS(11626), 1, + anon_sym_and, + ACTIONS(11628), 1, + anon_sym_bitor, + ACTIONS(11630), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11309), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11313), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11612), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11311), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11616), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11618), 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(9842), 30, + ACTIONS(10487), 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_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -544902,68 +567110,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + [132828] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(10469), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10489), 1, + anon_sym_EQ, + ACTIONS(11315), 1, + anon_sym_DOT, + ACTIONS(11606), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11608), 1, + anon_sym_AMP_AMP, + ACTIONS(11610), 1, + anon_sym_PIPE, + ACTIONS(11614), 1, + anon_sym_AMP, + ACTIONS(11620), 1, + anon_sym_GT_EQ, + ACTIONS(11622), 1, anon_sym_LT_EQ_GT, + ACTIONS(11624), 1, + anon_sym_or, + ACTIONS(11626), 1, + anon_sym_and, + ACTIONS(11628), 1, anon_sym_bitor, + ACTIONS(11630), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(11632), 1, + anon_sym_QMARK, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(11309), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11313), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [131484] = 25, + ACTIONS(11612), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11311), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11616), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11618), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10491), 15, + anon_sym_COMMA, + 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, + [132938] = 25, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3446), 1, + anon_sym_STAR, + ACTIONS(3448), 1, + anon_sym_AMP, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(8360), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(9906), 1, - anon_sym_STAR, - ACTIONS(9908), 1, - anon_sym_AMP_AMP, - ACTIONS(9910), 1, - anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(7869), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8646), 1, + STATE(8804), 1, sym__declarator, - STATE(10827), 1, + STATE(11554), 1, sym_ms_based_modifier, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6842), 2, + STATE(7086), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -544975,7 +567257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -544989,12 +567271,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131588] = 4, + [133042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6233), 1, - anon_sym_COLON_COLON, - ACTIONS(9142), 19, + ACTIONS(9088), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -545008,13 +567288,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(9144), 32, + ACTIONS(9090), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -545024,7 +567305,7 @@ 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -545047,69 +567328,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [131650] = 5, + [133102] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(10544), 1, + ACTIONS(6821), 1, + anon_sym___asm, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(11172), 1, + anon_sym_LPAREN2, + ACTIONS(11180), 1, + sym_ms_restrict_modifier, + ACTIONS(11186), 1, anon_sym_LBRACK, - STATE(5617), 1, - sym_new_declarator, - ACTIONS(9173), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11598), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(11600), 1, + anon_sym_AMP_AMP, + ACTIONS(11602), 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(9175), 32, - anon_sym_DOT_DOT_DOT, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(4562), 1, + sym_parameter_list, + STATE(6387), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8314), 1, + sym__function_declarator_seq, + STATE(8499), 1, + sym__abstract_declarator, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11182), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11184), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6210), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6264), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8312), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6823), 12, 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_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - 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_DOT_STAR, - anon_sym_DASH_GT, - [131714] = 3, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [133200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 23, + ACTIONS(9361), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -545133,7 +567431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(9039), 29, + ACTIONS(9363), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -545163,74 +567461,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [131774] = 27, + [133260] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11112), 1, + ACTIONS(11448), 1, anon_sym_PIPE_PIPE, - ACTIONS(11114), 1, + ACTIONS(11450), 1, anon_sym_AMP_AMP, - ACTIONS(11116), 1, + ACTIONS(11452), 1, anon_sym_PIPE, - ACTIONS(11120), 1, + ACTIONS(11456), 1, anon_sym_AMP, - ACTIONS(11128), 1, + ACTIONS(11466), 1, anon_sym_LT_EQ_GT, - ACTIONS(11130), 1, + ACTIONS(11468), 1, anon_sym_or, - ACTIONS(11132), 1, + ACTIONS(11470), 1, anon_sym_and, - ACTIONS(11134), 1, + ACTIONS(11472), 1, anon_sym_bitor, - ACTIONS(11136), 1, + ACTIONS(11474), 1, anon_sym_bitand, - ACTIONS(11238), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11240), 1, - anon_sym_QMARK, - STATE(5759), 1, + STATE(5741), 1, sym_argument_list, - STATE(5761), 1, + STATE(5917), 1, sym_subscript_argument_list, - ACTIONS(10188), 2, + ACTIONS(10435), 2, anon_sym_EQ, anon_sym_GT_GT_EQ, - ACTIONS(11103), 2, + ACTIONS(11321), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11108), 2, + ACTIONS(11444), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11118), 2, + ACTIONS(11454), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11126), 2, + ACTIONS(11462), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11138), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11110), 3, + ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11122), 3, + ACTIONS(11458), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11124), 4, + ACTIONS(11460), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10190), 14, + ACTIONS(10437), 16, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -545244,157 +567540,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_GT2, - [131882] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6495), 1, - anon_sym___asm, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10922), 1, - anon_sym_LPAREN2, - ACTIONS(10930), 1, - sym_ms_restrict_modifier, - ACTIONS(10936), 1, - anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_STAR, - ACTIONS(11253), 1, - anon_sym_AMP_AMP, - ACTIONS(11255), 1, - anon_sym_AMP, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(4486), 1, - sym_parameter_list, - STATE(6312), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8183), 1, - sym__function_declarator_seq, - STATE(8358), 1, - sym__abstract_declarator, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10932), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(10934), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6140), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6182), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8180), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6497), 12, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [131980] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10145), 1, - anon_sym_LBRACE, - ACTIONS(11260), 1, - anon_sym_COLON, - STATE(4444), 1, - sym__enum_base_clause, - STATE(4573), 1, - sym_enumerator_list, - STATE(4866), 1, - sym_attribute_specifier, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7602), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7600), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [132052] = 7, + [133364] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10333), 1, + ACTIONS(10842), 1, anon_sym_LPAREN2, - ACTIONS(10335), 1, + ACTIONS(10844), 1, anon_sym_LBRACK, - STATE(1873), 1, + STATE(1975), 1, sym_parameter_list, - STATE(5159), 1, + STATE(5229), 1, sym__function_declarator_seq, - ACTIONS(9860), 18, + ACTIONS(10174), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -545404,24 +567561,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(9858), 30, + ACTIONS(10172), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -545429,7 +567586,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, @@ -545444,148 +567600,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [132120] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10145), 1, - anon_sym_LBRACE, - ACTIONS(11260), 1, - anon_sym_COLON, - STATE(4355), 1, - sym__enum_base_clause, - STATE(4592), 1, - sym_enumerator_list, - STATE(4746), 1, - sym_attribute_specifier, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7653), 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_EQ, anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7651), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [132192] = 8, + [133432] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(11145), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11147), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(5454), 1, - sym_new_declarator, - STATE(5914), 2, + ACTIONS(11315), 1, + anon_sym_DOT, + STATE(3874), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(8841), 20, - aux_sym_preproc_elif_token1, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9644), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9638), 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___attribute__, - anon_sym___attribute, - anon_sym_COLON, + 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_identifier, - ACTIONS(8843), 26, + ACTIONS(9640), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_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, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [132262] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(10969), 1, - anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(10971), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9286), 17, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [133506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9095), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -545599,19 +567682,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(9288), 28, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9097), 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, @@ -545632,72 +567720,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [132334] = 26, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [133566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(10089), 1, - anon_sym_EQ, - ACTIONS(10949), 1, - anon_sym_PIPE, - ACTIONS(10953), 1, - anon_sym_AMP, - ACTIONS(10959), 1, - anon_sym_GT_EQ, - ACTIONS(10963), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10965), 1, - anon_sym_bitor, - ACTIONS(10967), 1, - anon_sym_bitand, - ACTIONS(10969), 1, - anon_sym_DOT, - ACTIONS(11262), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11264), 1, - anon_sym_AMP_AMP, - ACTIONS(11266), 1, - anon_sym_or, - ACTIONS(11268), 1, - anon_sym_and, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10945), 2, + ACTIONS(9041), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10951), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10961), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10971), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10955), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10957), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10091), 17, + 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(9043), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_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, @@ -545712,53 +567771,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [132440] = 10, + anon_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, + [133626] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10477), 1, + anon_sym_EQ, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11331), 1, anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(11480), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11482), 1, + anon_sym_AMP_AMP, + ACTIONS(11484), 1, + anon_sym_PIPE, + ACTIONS(11488), 1, + anon_sym_AMP, + ACTIONS(11494), 1, + anon_sym_GT_EQ, + ACTIONS(11498), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11500), 1, + anon_sym_or, + ACTIONS(11502), 1, + anon_sym_and, + ACTIONS(11504), 1, + anon_sym_bitor, + ACTIONS(11506), 1, + anon_sym_bitand, + ACTIONS(11535), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11537), 1, + anon_sym_QMARK, + STATE(5875), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10971), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9244), 17, + ACTIONS(11476), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11486), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11496), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11478), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11490), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11492), 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(9246), 26, - anon_sym_DOT_DOT_DOT, + ACTIONS(10479), 15, 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_COLON, - anon_sym_QMARK, + anon_sym_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -545772,30 +567861,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, - [132514] = 10, + [133736] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11331), 1, anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10971), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9252), 17, + ACTIONS(9673), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -545813,7 +567898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9254), 26, + ACTIONS(9675), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -545821,7 +567906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -545840,103 +567925,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [132588] = 26, + [133810] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(10123), 1, - anon_sym_EQ, - ACTIONS(10949), 1, - anon_sym_PIPE, - ACTIONS(10953), 1, - anon_sym_AMP, - ACTIONS(10959), 1, - anon_sym_GT_EQ, - ACTIONS(10963), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10965), 1, - anon_sym_bitor, - ACTIONS(10967), 1, - anon_sym_bitand, - ACTIONS(10969), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11262), 1, + ACTIONS(11442), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11448), 1, anon_sym_PIPE_PIPE, - ACTIONS(11264), 1, + ACTIONS(11450), 1, anon_sym_AMP_AMP, - ACTIONS(11266), 1, + ACTIONS(11452), 1, + anon_sym_PIPE, + ACTIONS(11456), 1, + anon_sym_AMP, + ACTIONS(11464), 1, + anon_sym_QMARK, + ACTIONS(11466), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11468), 1, anon_sym_or, - ACTIONS(11268), 1, + ACTIONS(11470), 1, anon_sym_and, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(11472), 1, + anon_sym_bitor, + ACTIONS(11474), 1, + anon_sym_bitand, + STATE(5741), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(9826), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11321), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10945), 2, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11444), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10951), 2, + ACTIONS(11454), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(10961), 2, + ACTIONS(11462), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10971), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10947), 3, + ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10955), 3, + ACTIONS(11458), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10957), 3, + ACTIONS(11460), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10125), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(9828), 14, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [132694] = 9, + anon_sym_GT2, + [133918] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11331), 1, anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11329), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9290), 17, + ACTIONS(9677), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -545954,7 +568043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9292), 28, + ACTIONS(9679), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -545962,7 +568051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -545981,74 +568070,107 @@ 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, - [132766] = 26, + [133992] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, + ACTIONS(5661), 1, + anon_sym_EQ, + ACTIONS(6883), 1, + anon_sym_LBRACK_LBRACK, ACTIONS(9236), 1, + anon_sym_LPAREN2, + ACTIONS(9239), 1, anon_sym_LBRACK, - ACTIONS(9344), 1, - anon_sym_EQ, - ACTIONS(10949), 1, + ACTIONS(5663), 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(5645), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(10953), 1, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(10959), 1, + 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(5638), 18, + 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, - ACTIONS(10963), 1, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(10965), 1, anon_sym_bitor, - ACTIONS(10967), 1, anon_sym_bitand, - ACTIONS(10969), 1, - anon_sym_DOT, - ACTIONS(11262), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11264), 1, - anon_sym_AMP_AMP, - ACTIONS(11266), 1, - anon_sym_or, - ACTIONS(11268), 1, - anon_sym_and, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10945), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10951), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10961), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10971), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10947), 3, + [134062] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10842), 1, + anon_sym_LPAREN2, + ACTIONS(10844), 1, + anon_sym_LBRACK, + STATE(1975), 1, + sym_parameter_list, + STATE(5229), 1, + sym__function_declarator_seq, + ACTIONS(10206), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10955), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10957), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9342), 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(10204), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, + 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, @@ -546056,80 +568178,91 @@ 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, - [132872] = 26, + anon_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, + anon_sym_GT2, + [134130] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9826), 1, + anon_sym_EQ, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10176), 1, - anon_sym_EQ, - ACTIONS(10949), 1, + ACTIONS(11331), 1, + anon_sym_DOT, + ACTIONS(11480), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11482), 1, + anon_sym_AMP_AMP, + ACTIONS(11484), 1, anon_sym_PIPE, - ACTIONS(10953), 1, + ACTIONS(11488), 1, anon_sym_AMP, - ACTIONS(10959), 1, + ACTIONS(11494), 1, anon_sym_GT_EQ, - ACTIONS(10963), 1, + ACTIONS(11498), 1, anon_sym_LT_EQ_GT, - ACTIONS(10965), 1, - anon_sym_bitor, - ACTIONS(10967), 1, - anon_sym_bitand, - ACTIONS(10969), 1, - anon_sym_DOT, - ACTIONS(11262), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11264), 1, - anon_sym_AMP_AMP, - ACTIONS(11266), 1, + ACTIONS(11500), 1, anon_sym_or, - ACTIONS(11268), 1, + ACTIONS(11502), 1, anon_sym_and, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(11504), 1, + anon_sym_bitor, + ACTIONS(11506), 1, + anon_sym_bitand, + ACTIONS(11535), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11537), 1, + anon_sym_QMARK, + STATE(5875), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10945), 2, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11476), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10951), 2, + ACTIONS(11486), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(10961), 2, + ACTIONS(11496), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10971), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10947), 3, + ACTIONS(11634), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(11478), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10955), 3, + ACTIONS(11490), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10957), 3, + ACTIONS(11492), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10178), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(9828), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -546143,75 +568276,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [132978] = 28, + [134242] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10711), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(10713), 1, anon_sym_LBRACK, - ACTIONS(9436), 1, - anon_sym_EQ, - ACTIONS(10180), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10949), 1, - anon_sym_PIPE, - ACTIONS(10953), 1, - anon_sym_AMP, - ACTIONS(10959), 1, - anon_sym_GT_EQ, - ACTIONS(10963), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10965), 1, - anon_sym_bitor, - ACTIONS(10967), 1, - anon_sym_bitand, - ACTIONS(10969), 1, - anon_sym_DOT, - ACTIONS(11262), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11264), 1, - anon_sym_AMP_AMP, - ACTIONS(11266), 1, - anon_sym_or, - ACTIONS(11268), 1, - anon_sym_and, - ACTIONS(11270), 1, - anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10945), 2, + STATE(1978), 1, + sym_parameter_list, + STATE(5085), 1, + sym__function_declarator_seq, + ACTIONS(10174), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10951), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10961), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10971), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10947), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10955), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10957), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9438), 15, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10172), 30, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -546225,53 +568329,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [133088] = 11, + anon_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, + [134310] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(6576), 1, + anon_sym_LBRACK, + ACTIONS(10005), 1, + anon_sym_LT, + STATE(5825), 1, + sym_template_argument_list, + ACTIONS(6569), 2, anon_sym_LPAREN2, - ACTIONS(9236), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6572), 5, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_COLON, + ACTIONS(6565), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [134380] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11323), 1, anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5741), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11321), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10971), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10947), 3, + ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9282), 14, + ACTIONS(9707), 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(9284), 26, + ACTIONS(9709), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -546279,7 +568453,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, @@ -546290,26 +568463,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [133164] = 10, + anon_sym_GT2, + [134456] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11323), 1, anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5741), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11321), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10971), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9282), 17, + ACTIONS(9707), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -546319,23 +568493,23 @@ 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(9284), 26, + ACTIONS(9709), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -546343,7 +568517,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, @@ -546354,70 +568527,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [133238] = 24, + anon_sym_GT2, + [134530] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(10949), 1, + ACTIONS(11323), 1, + anon_sym_DOT, + ACTIONS(11450), 1, + anon_sym_AMP_AMP, + ACTIONS(11452), 1, anon_sym_PIPE, - ACTIONS(10953), 1, + ACTIONS(11456), 1, anon_sym_AMP, - ACTIONS(10959), 1, - anon_sym_GT_EQ, - ACTIONS(10963), 1, + ACTIONS(11466), 1, anon_sym_LT_EQ_GT, - ACTIONS(10965), 1, + ACTIONS(11470), 1, + anon_sym_and, + ACTIONS(11472), 1, anon_sym_bitor, - ACTIONS(10967), 1, + ACTIONS(11474), 1, anon_sym_bitand, - ACTIONS(10969), 1, - anon_sym_DOT, - ACTIONS(11264), 1, - anon_sym_AMP_AMP, - ACTIONS(11268), 1, - anon_sym_and, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5741), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11321), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9282), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(10945), 2, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11444), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10951), 2, + ACTIONS(11454), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(10961), 2, + ACTIONS(11462), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10971), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10947), 3, + ACTIONS(9707), 3, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10955), 3, + ACTIONS(11458), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10957), 3, + ACTIONS(11460), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 18, + ACTIONS(9709), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -546425,72 +568598,74 @@ 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, - [133340] = 20, + anon_sym_GT2, + [134630] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(10953), 1, + ACTIONS(11323), 1, + anon_sym_DOT, + ACTIONS(11452), 1, + anon_sym_PIPE, + ACTIONS(11456), 1, anon_sym_AMP, - ACTIONS(10959), 1, - anon_sym_GT_EQ, - ACTIONS(10963), 1, + ACTIONS(11466), 1, anon_sym_LT_EQ_GT, - ACTIONS(10967), 1, + ACTIONS(11472), 1, + anon_sym_bitor, + ACTIONS(11474), 1, anon_sym_bitand, - ACTIONS(10969), 1, - anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5741), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11321), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10945), 2, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11444), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10951), 2, + ACTIONS(11454), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(10961), 2, + ACTIONS(11462), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10971), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10947), 3, + ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10955), 3, + ACTIONS(11458), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10957), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9282), 4, - anon_sym_PIPE, + ACTIONS(9707), 4, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - ACTIONS(9284), 20, + ACTIONS(11460), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -546498,72 +568673,71 @@ 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_bitor, - [133434] = 19, + anon_sym_GT2, + [134726] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(10953), 1, + ACTIONS(11323), 1, + anon_sym_DOT, + ACTIONS(11456), 1, anon_sym_AMP, - ACTIONS(10959), 1, - anon_sym_GT_EQ, - ACTIONS(10963), 1, + ACTIONS(11466), 1, anon_sym_LT_EQ_GT, - ACTIONS(10967), 1, + ACTIONS(11474), 1, anon_sym_bitand, - ACTIONS(10969), 1, - anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5741), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11321), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10945), 2, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11444), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10961), 2, + ACTIONS(11454), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11462), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10971), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10947), 3, + ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10955), 3, + ACTIONS(11458), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10957), 3, + ACTIONS(11460), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9282), 6, + ACTIONS(9707), 5, anon_sym_PIPE, - anon_sym_CARET, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - ACTIONS(9284), 20, + ACTIONS(9709), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -546571,7 +568745,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, @@ -546579,61 +568752,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_bitor, - [133526] = 17, + anon_sym_GT2, + [134818] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(10959), 1, - anon_sym_GT_EQ, - ACTIONS(10963), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10969), 1, + ACTIONS(11323), 1, anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(11456), 1, + anon_sym_AMP, + ACTIONS(11466), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11474), 1, + anon_sym_bitand, + STATE(5741), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11321), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10945), 2, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11444), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10961), 2, + ACTIONS(11462), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10971), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10947), 3, + ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10955), 3, + ACTIONS(11458), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10957), 3, + ACTIONS(11460), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9282), 7, + ACTIONS(9707), 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(9284), 21, + ACTIONS(9709), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -546641,7 +568817,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, @@ -546649,60 +568824,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_bitor, - anon_sym_bitand, - [133614] = 16, + anon_sym_GT2, + [134908] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(10959), 1, - anon_sym_GT_EQ, - ACTIONS(10963), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10969), 1, + ACTIONS(11323), 1, anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(11466), 1, + anon_sym_LT_EQ_GT, + STATE(5741), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11321), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10945), 2, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11444), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10961), 2, + ACTIONS(11462), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10971), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10947), 3, + ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10957), 3, + ACTIONS(11458), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11460), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9282), 7, + ACTIONS(9707), 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(9284), 24, + ACTIONS(9709), 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -546710,7 +568886,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, @@ -546719,58 +568894,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor_eq, anon_sym_bitor, anon_sym_bitand, - anon_sym_not_eq, - [133700] = 14, + anon_sym_GT2, + [134994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6610), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9236), 1, + 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, + anon_sym_LBRACK_COLON, + ACTIONS(6608), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(10963), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10969), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [135054] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + ACTIONS(11319), 1, + anon_sym_LBRACK, + ACTIONS(11323), 1, anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(11466), 1, + anon_sym_LT_EQ_GT, + STATE(5741), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11321), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10945), 2, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11444), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10961), 2, + ACTIONS(11462), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10971), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10947), 3, + ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9282), 10, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11460), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(9707), 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(9284), 25, + ACTIONS(9709), 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_GT_EQ, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -546778,7 +569011,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, @@ -546788,54 +569020,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [133782] = 12, + anon_sym_GT2, + [135138] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11323), 1, anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(11466), 1, + anon_sym_LT_EQ_GT, + STATE(5741), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11321), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10945), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10971), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10947), 3, + ACTIONS(11444), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11462), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9282), 12, + ACTIONS(9707), 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, - ACTIONS(9284), 26, + ACTIONS(9709), 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_GT_EQ, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -546843,66 +569079,64 @@ 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, - [133860] = 13, + anon_sym_GT2, + [135220] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11323), 1, anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5741), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11321), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10945), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10961), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10971), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10947), 3, + ACTIONS(11444), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9282), 10, + ACTIONS(9707), 14, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9284), 26, + ACTIONS(9709), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -546910,7 +569144,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, @@ -546921,52 +569154,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [133940] = 10, + anon_sym_GT2, + [135298] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11323), 1, anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5741), 1, sym_argument_list, - ACTIONS(9238), 2, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11321), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10971), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9270), 17, + ACTIONS(11444), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11462), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9707), 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, - ACTIONS(9272), 26, + ACTIONS(9709), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -546974,7 +569211,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, @@ -546985,541 +569221,361 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [134014] = 25, + anon_sym_GT2, + [135378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(6618), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11114), 1, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(11116), 1, - anon_sym_PIPE, - ACTIONS(11120), 1, - anon_sym_AMP, - ACTIONS(11128), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11130), 1, - anon_sym_or, - ACTIONS(11132), 1, - anon_sym_and, - ACTIONS(11134), 1, - anon_sym_bitor, - ACTIONS(11136), 1, - anon_sym_bitand, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(10192), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11108), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11118), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11126), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11138), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11110), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11122), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11124), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10194), 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, - [134118] = 26, + anon_sym_LBRACK_COLON, + ACTIONS(6616), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [135438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6622), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(10184), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(10949), 1, - anon_sym_PIPE, - ACTIONS(10953), 1, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6620), 39, anon_sym_AMP, - ACTIONS(10959), 1, - anon_sym_GT_EQ, - ACTIONS(10963), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10965), 1, - anon_sym_bitor, - ACTIONS(10967), 1, - anon_sym_bitand, - ACTIONS(10969), 1, - anon_sym_DOT, - ACTIONS(11262), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11264), 1, - anon_sym_AMP_AMP, - ACTIONS(11266), 1, - anon_sym_or, - ACTIONS(11268), 1, - anon_sym_and, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10945), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10951), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10961), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10971), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10947), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10955), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10957), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10186), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [134224] = 28, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [135498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(10180), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10188), 1, - anon_sym_EQ, - ACTIONS(10949), 1, - anon_sym_PIPE, - ACTIONS(10953), 1, - anon_sym_AMP, - ACTIONS(10959), 1, - anon_sym_GT_EQ, - ACTIONS(10963), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10965), 1, - anon_sym_bitor, - ACTIONS(10967), 1, - anon_sym_bitand, - ACTIONS(10969), 1, - anon_sym_DOT, - ACTIONS(11262), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11264), 1, - anon_sym_AMP_AMP, - ACTIONS(11266), 1, - anon_sym_or, - ACTIONS(11268), 1, - anon_sym_and, - ACTIONS(11270), 1, - anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10945), 2, + ACTIONS(9365), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10951), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10961), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10971), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10947), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10955), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10957), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10190), 15, - anon_sym_COMMA, + anon_sym___attribute__, + anon_sym___attribute, 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, - [134334] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(10192), 1, - anon_sym_EQ, - ACTIONS(10949), 1, - anon_sym_PIPE, - ACTIONS(10953), 1, - anon_sym_AMP, - ACTIONS(10959), 1, - anon_sym_GT_EQ, - ACTIONS(10963), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10965), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(10967), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(10969), 1, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(11262), 1, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9367), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(11264), 1, anon_sym_AMP_AMP, - ACTIONS(11266), 1, - anon_sym_or, - ACTIONS(11268), 1, - anon_sym_and, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10945), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10951), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(10961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10971), 2, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10947), 3, - anon_sym_STAR, + anon_sym_COLON_RBRACK, + [135558] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9369), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10955), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10957), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10194), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [134440] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(10180), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10196), 1, - anon_sym_EQ, - ACTIONS(10949), 1, - anon_sym_PIPE, - ACTIONS(10953), 1, - anon_sym_AMP, - ACTIONS(10959), 1, - anon_sym_GT_EQ, - ACTIONS(10963), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10965), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(10967), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(10969), 1, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(11262), 1, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9371), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(11264), 1, anon_sym_AMP_AMP, - ACTIONS(11266), 1, - anon_sym_or, - ACTIONS(11268), 1, - anon_sym_and, - ACTIONS(11270), 1, - anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10945), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10951), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(10961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10971), 2, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10947), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10955), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10957), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10198), 15, - anon_sym_COMMA, - 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, - [134550] = 9, + anon_sym_COLON_RBRACK, + [135618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - ACTIONS(10973), 1, - anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - STATE(5762), 1, - sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9290), 17, + ACTIONS(8424), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(9292), 28, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8422), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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, - [134622] = 28, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [135678] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10196), 1, - anon_sym_EQ, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11063), 1, + ACTIONS(10469), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11069), 1, + ACTIONS(10489), 1, + anon_sym_EQ, + ACTIONS(11565), 1, anon_sym_PIPE_PIPE, - ACTIONS(11071), 1, + ACTIONS(11567), 1, anon_sym_AMP_AMP, - ACTIONS(11073), 1, + ACTIONS(11569), 1, anon_sym_PIPE, - ACTIONS(11077), 1, + ACTIONS(11573), 1, anon_sym_AMP, - ACTIONS(11083), 1, + ACTIONS(11579), 1, anon_sym_GT_EQ, - ACTIONS(11087), 1, - anon_sym_QMARK, - ACTIONS(11089), 1, + ACTIONS(11583), 1, anon_sym_LT_EQ_GT, - ACTIONS(11091), 1, + ACTIONS(11585), 1, anon_sym_or, - ACTIONS(11093), 1, + ACTIONS(11587), 1, anon_sym_and, - ACTIONS(11095), 1, + ACTIONS(11589), 1, anon_sym_bitor, - ACTIONS(11097), 1, + ACTIONS(11591), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(11593), 1, + anon_sym_QMARK, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10975), 2, + ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11065), 2, + ACTIONS(11561), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11075), 2, + ACTIONS(11571), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11085), 2, + ACTIONS(11581), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11067), 3, + ACTIONS(11563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11079), 3, + ACTIONS(11575), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11081), 3, + ACTIONS(11577), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10198), 15, + ACTIONS(10491), 15, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -547533,18 +569589,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [134732] = 7, + [135788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10333), 1, - anon_sym_LPAREN2, - ACTIONS(10335), 1, - anon_sym_LBRACK, - STATE(1873), 1, - sym_parameter_list, - STATE(5159), 1, - sym__function_declarator_seq, - ACTIONS(9864), 18, + ACTIONS(9080), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -547554,24 +569602,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_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9862), 30, + ACTIONS(9082), 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_GT_EQ, - anon_sym_RBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -547579,7 +569630,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, @@ -547594,18 +569644,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [134800] = 7, + anon_sym_GT2, + [135847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10337), 1, - anon_sym_LPAREN2, - ACTIONS(10339), 1, - anon_sym_LBRACK, - STATE(1875), 1, - sym_parameter_list, - STATE(5063), 1, - sym__function_declarator_seq, - ACTIONS(9840), 20, + ACTIONS(9693), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -547615,24 +569658,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(9838), 28, + anon_sym_DASH_GT, + ACTIONS(9695), 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, @@ -547640,6 +569686,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, @@ -547653,20 +569700,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [134868] = 7, + anon_sym_DASH_GT_STAR, + [135906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10337), 1, - anon_sym_LPAREN2, - ACTIONS(10339), 1, - anon_sym_LBRACK, - STATE(1875), 1, - sym_parameter_list, - STATE(5063), 1, - sym__function_declarator_seq, - ACTIONS(9844), 20, + ACTIONS(9419), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -547676,24 +569714,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(9842), 28, + anon_sym_DASH_GT, + ACTIONS(9421), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_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, @@ -547701,121 +569739,28 @@ 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [134936] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10089), 1, - anon_sym_EQ, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - ACTIONS(10973), 1, - anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - ACTIONS(11069), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11071), 1, - anon_sym_AMP_AMP, - ACTIONS(11073), 1, - anon_sym_PIPE, - ACTIONS(11077), 1, - anon_sym_AMP, - ACTIONS(11083), 1, - anon_sym_GT_EQ, - ACTIONS(11089), 1, anon_sym_LT_EQ_GT, - ACTIONS(11091), 1, anon_sym_or, - ACTIONS(11093), 1, anon_sym_and, - ACTIONS(11095), 1, anon_sym_bitor, - ACTIONS(11097), 1, + anon_sym_xor, anon_sym_bitand, - STATE(5762), 1, - sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(10975), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10979), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11065), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11075), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11067), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11079), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11081), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10091), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - 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, - [135042] = 10, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [135965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - ACTIONS(10973), 1, - anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - STATE(5762), 1, - sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(10975), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9232), 17, + ACTIONS(9800), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -547833,15 +569778,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9234), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9802), 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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -547860,26 +569809,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [135116] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(10969), 1, - anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9238), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10971), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9232), 17, + anon_sym_DASH_GT_STAR, + [136024] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9860), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -547897,15 +569834,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9234), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9862), 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, @@ -547924,10 +569865,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [135190] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [136083] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5233), 17, + ACTIONS(11270), 1, + anon_sym_LT, + STATE(2031), 1, + sym_template_argument_list, + ACTIONS(9650), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -547938,14 +569887,14 @@ 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(5235), 35, + ACTIONS(9652), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -547955,7 +569904,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, @@ -547967,111 +569916,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_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [135250] = 25, + anon_sym_DASH_GT, + [136146] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3051), 1, - anon_sym_STAR, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8360), 1, + ACTIONS(7227), 1, anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8644), 1, - sym__declarator, - STATE(11063), 1, - sym_ms_based_modifier, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6842), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - ACTIONS(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [135354] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10337), 1, - anon_sym_LPAREN2, - ACTIONS(10339), 1, - anon_sym_LBRACK, - STATE(1875), 1, - sym_parameter_list, - STATE(5063), 1, - sym__function_declarator_seq, - ACTIONS(9864), 20, + ACTIONS(5645), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548092,13 +569953,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9862), 28, + ACTIONS(5638), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -548121,107 +569984,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [135422] = 27, + [136207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11112), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11114), 1, - anon_sym_AMP_AMP, - ACTIONS(11116), 1, - anon_sym_PIPE, - ACTIONS(11120), 1, - anon_sym_AMP, - ACTIONS(11128), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11130), 1, - anon_sym_or, - ACTIONS(11132), 1, - anon_sym_and, - ACTIONS(11134), 1, - anon_sym_bitor, - ACTIONS(11136), 1, - anon_sym_bitand, - ACTIONS(11238), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11240), 1, - anon_sym_QMARK, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(10196), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11108), 2, + ACTIONS(9423), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11118), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11126), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11138), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11110), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11122), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11124), 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(10198), 14, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9425), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_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_GT2, - [135530] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - ACTIONS(10973), 1, - anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - STATE(5762), 1, - sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(10975), 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(10979), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9244), 17, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [136266] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6601), 1, + anon_sym_COLON_COLON, + ACTIONS(9513), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548231,23 +570055,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, - ACTIONS(9246), 26, + anon_sym_DOT, + ACTIONS(9515), 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_GT_EQ, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -548255,7 +570082,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, @@ -548266,10 +570092,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [135604] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [136327] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8454), 17, + ACTIONS(11529), 1, + anon_sym_LBRACK, + STATE(5850), 1, + sym_new_declarator, + ACTIONS(9535), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -548278,6 +570114,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_COLON, anon_sym_or, anon_sym_and, @@ -548286,11 +570124,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8456), 35, + sym_identifier, + ACTIONS(9537), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -548304,88 +570146,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SEMI, 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_DOT_STAR, 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, anon_sym_COLON_RBRACK, - [135664] = 3, + [136390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6762), 7, + ACTIONS(9911), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6764), 45, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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(9913), 32, + 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___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [135724] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6535), 1, - anon_sym_EQ, - ACTIONS(6537), 13, + 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, @@ -548399,7 +570203,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(5260), 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_DOT_STAR, + anon_sym_DASH_GT_STAR, + [136449] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3163), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548413,38 +570228,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(5253), 20, + anon_sym_DASH_GT, + ACTIONS(3161), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, - [135788] = 4, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [136508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6233), 1, - anon_sym_COLON_COLON, - ACTIONS(9142), 18, + ACTIONS(9689), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548463,9 +570289,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9144), 32, + anon_sym_DASH_GT, + ACTIONS(9691), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -548473,7 +570301,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -548495,11 +570322,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [135849] = 3, + anon_sym_DASH_GT_STAR, + [136567] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8689), 19, + ACTIONS(6601), 1, + anon_sym_COLON_COLON, + ACTIONS(9513), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548513,13 +570342,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, - ACTIONS(8691), 32, + ACTIONS(9515), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -548528,8 +570356,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_RBRACK_RBRACK, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -548552,10 +570380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [135908] = 3, + [136628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8606), 16, + ACTIONS(8893), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548572,7 +570400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8608), 35, + ACTIONS(8895), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -548608,69 +570436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [135967] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5229), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5231), 45, - 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___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [136026] = 4, + [136687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11272), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8939), 16, + ACTIONS(8901), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548687,12 +570456,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8941), 33, + ACTIONS(8903), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -548710,6 +570480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, + anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, @@ -548721,10 +570492,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [136087] = 3, + [136746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8614), 16, + ACTIONS(8905), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548741,7 +570512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8616), 35, + ACTIONS(8907), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -548777,10 +570548,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [136146] = 3, + [136805] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8705), 19, + ACTIONS(11636), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11638), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9393), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548794,23 +570571,18 @@ 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(8707), 32, + anon_sym_DASH_GT, + ACTIONS(9395), 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_RBRACK_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -548822,50 +570594,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_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, - [136205] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [136868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9468), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(9470), 32, + ACTIONS(10564), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -548874,29 +570625,47 @@ 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(10566), 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [136264] = 5, + anon_sym_DOT, + sym_literal_suffix, + [136927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10799), 1, - anon_sym_LT, - STATE(1924), 1, - sym_template_argument_list, - ACTIONS(9225), 17, + ACTIONS(9435), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548907,14 +570676,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_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(9227), 32, + anon_sym_DASH_GT, + ACTIONS(9437), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -548936,21 +570704,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_DOT_STAR, - anon_sym_DASH_GT, - [136327] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [136986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9391), 19, + ACTIONS(3155), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548965,12 +570736,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(9393), 32, + ACTIONS(3153), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -548992,21 +570760,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_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [136386] = 3, + [137045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9464), 19, + ACTIONS(8921), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549021,12 +570792,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(9466), 32, + ACTIONS(8923), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -549048,164 +570816,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_or, + anon_sym_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_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [136445] = 7, + [137104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11274), 1, - sym_identifier, - STATE(5477), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6694), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6700), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8127), 18, + ACTIONS(8564), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + 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(8125), 19, + ACTIONS(8559), 31, 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_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, anon_sym_GT2, - [136512] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6111), 1, - anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10437), 1, - anon_sym_DASH_GT, - ACTIONS(10442), 1, - anon_sym_requires, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(7533), 1, - sym__function_attributes_start, - STATE(7598), 1, - sym_ref_qualifier, - STATE(8719), 1, - sym__function_attributes_end, - STATE(8854), 1, - sym_trailing_return_type, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6113), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(6036), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6264), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8457), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7874), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [136625] = 3, + [137163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9578), 19, + ACTIONS(8946), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549220,12 +570904,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(9580), 32, + ACTIONS(8948), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -549247,21 +570928,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_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [136684] = 3, + [137222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9420), 19, + ACTIONS(9915), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549281,7 +570965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9422), 32, + ACTIONS(9917), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -549314,10 +570998,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [136743] = 3, + [137281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9416), 19, + ACTIONS(9037), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549327,27 +571011,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_LBRACK, 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(9418), 32, + ACTIONS(9039), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -549355,7 +571039,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, @@ -549369,11 +571052,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [136802] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [137340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9499), 19, + ACTIONS(9033), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549383,27 +571067,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_LBRACK, 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(9501), 32, + ACTIONS(9035), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -549411,7 +571095,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, @@ -549425,11 +571108,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [136861] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [137399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9412), 19, + ACTIONS(9740), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549449,7 +571133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9414), 32, + ACTIONS(9742), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -549482,93 +571166,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [136920] = 4, + [137458] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(9262), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9264), 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_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_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, - anon_sym_GT2, - [136981] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11276), 1, + ACTIONS(11640), 1, sym_identifier, - STATE(5519), 3, + STATE(5562), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(6619), 5, + ACTIONS(11643), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(6625), 5, + ACTIONS(11646), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(8118), 16, + ACTIONS(8408), 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, @@ -549577,7 +571206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(8116), 21, + ACTIONS(8406), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -549588,21 +571217,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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [137048] = 3, + anon_sym_GT2, + [137525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9480), 19, + ACTIONS(9224), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549622,7 +571249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9482), 32, + ACTIONS(9222), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -549655,74 +571282,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [137107] = 7, + [137584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11278), 1, - sym_identifier, - STATE(5450), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(11281), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(11284), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8047), 18, + ACTIONS(5645), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - 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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8045), 19, + anon_sym_DASH_GT, + ACTIONS(5638), 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_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, + [137643] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5589), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5591), 45, + 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___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [137174] = 5, + anon_sym_try, + anon_sym_requires, + [137702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11287), 1, - anon_sym_LT, - STATE(5715), 1, - sym_template_argument_list, - ACTIONS(9262), 19, + ACTIONS(9768), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549732,24 +571407,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(9264), 30, + anon_sym_DASH_GT, + ACTIONS(9770), 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, @@ -549758,6 +571435,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, @@ -549771,12 +571449,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [137237] = 3, + anon_sym_DASH_GT_STAR, + [137761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9308), 19, + ACTIONS(9792), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549796,7 +571473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9310), 32, + ACTIONS(9794), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -549829,10 +571506,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [137296] = 3, + [137820] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(11649), 1, + anon_sym_COLON, + ACTIONS(11651), 1, + anon_sym_LBRACE, + STATE(5771), 1, + sym__enum_base_clause, + STATE(6010), 1, + sym_enumerator_list, + STATE(6091), 1, + sym_attribute_specifier, + ACTIONS(8000), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(8002), 39, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [137893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9582), 19, + ACTIONS(9834), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549852,7 +571592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9584), 32, + ACTIONS(9836), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -549885,75 +571625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [137355] = 6, + [137952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(11145), 1, - anon_sym_LPAREN2, - STATE(5870), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9105), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_identifier, - ACTIONS(9107), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [137420] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11272), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11290), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8959), 16, + ACTIONS(9804), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549968,13 +571643,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(8961), 31, + ACTIONS(9806), 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, @@ -549990,22 +571670,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_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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [137483] = 3, + [138011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8731), 19, + ACTIONS(9812), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550019,23 +571698,23 @@ 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(8733), 32, + anon_sym_DASH_GT, + ACTIONS(9814), 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_RBRACK_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -550057,18 +571736,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [137542] = 6, + anon_sym_DASH_GT_STAR, + [138070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, - anon_sym_LBRACE, - ACTIONS(11149), 1, - anon_sym_LPAREN2, - STATE(6017), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9117), 16, + ACTIONS(9818), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550083,12 +571755,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_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9119), 31, + ACTIONS(9820), 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, @@ -550106,79 +571782,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, - [137607] = 5, + [138129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11147), 1, - anon_sym_LBRACK, - STATE(5709), 1, - sym_new_declarator, - ACTIONS(9173), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_identifier, - ACTIONS(9175), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [137670] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8610), 16, + ACTIONS(9732), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550193,9 +571811,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(8612), 35, + ACTIONS(9734), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -550217,44 +571838,34 @@ 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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [137729] = 10, + [138188] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(11292), 1, - anon_sym_COLON, - ACTIONS(11294), 1, - anon_sym_LBRACE, - STATE(5731), 1, - sym__enum_base_clause, - STATE(5855), 1, - sym_enumerator_list, - STATE(5923), 1, - sym_attribute_specifier, - ACTIONS(7651), 5, + ACTIONS(10326), 1, + anon_sym_decltype, + ACTIONS(11543), 1, + sym_auto, + STATE(6061), 1, + sym_decltype_auto, + ACTIONS(7223), 6, anon_sym_AMP, + anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7653), 39, + ACTIONS(7225), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -550264,8 +571875,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___extension__, anon_sym_virtual, anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym___declspec, + anon_sym_LBRACE, anon_sym_static, anon_sym_EQ, anon_sym_register, @@ -550294,10 +571908,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [137802] = 3, + [138253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8622), 16, + ACTIONS(9067), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550311,20 +571925,23 @@ 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(8624), 35, + ACTIONS(9069), 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_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -550336,24 +571953,79 @@ 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, + [138312] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11653), 1, + anon_sym_LT, + STATE(3157), 1, + sym_template_argument_list, + ACTIONS(9650), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_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_bitor, anon_sym_xor, + anon_sym_DOT, + ACTIONS(9652), 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_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [137861] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [138375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7546), 16, + ACTIONS(9856), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550368,9 +572040,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(7544), 35, + ACTIONS(9858), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -550392,24 +572067,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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [137920] = 3, + [138434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 19, + ACTIONS(9756), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550429,7 +572101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9406), 32, + ACTIONS(9758), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -550462,10 +572134,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [137979] = 3, + [138493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9527), 19, + ACTIONS(9822), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550485,7 +572157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9529), 32, + ACTIONS(9824), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -550518,10 +572190,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [138038] = 3, + [138552] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9503), 19, + ACTIONS(11656), 1, + sym_identifier, + STATE(5707), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(7048), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7054), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8468), 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(8466), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [138619] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8913), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550536,12 +572268,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(9505), 32, + ACTIONS(8915), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -550563,81 +572292,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_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [138097] = 7, + [138678] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11296), 1, - sym_identifier, - STATE(5448), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6619), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6625), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8127), 16, + ACTIONS(11653), 1, + anon_sym_LT, + STATE(3193), 1, + sym_template_argument_list, + ACTIONS(9650), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + 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(8125), 21, + ACTIONS(9652), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - [138164] = 3, + anon_sym_GT2, + [138741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9531), 19, + ACTIONS(9037), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550651,23 +572381,23 @@ 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(9533), 32, + ACTIONS(9039), 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_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -550689,70 +572419,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [138223] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(11145), 1, - anon_sym_LPAREN2, - STATE(5876), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9086), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_identifier, - ACTIONS(9088), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [138288] = 3, + [138800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9344), 19, + ACTIONS(9942), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550772,7 +572443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9342), 32, + ACTIONS(9944), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -550805,10 +572476,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [138347] = 3, + [138859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8689), 21, + ACTIONS(9059), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550818,19 +572489,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(8691), 30, + ACTIONS(9061), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -550838,7 +572507,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -550846,6 +572517,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, @@ -550860,11 +572532,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [138406] = 3, + [138918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8705), 21, + ACTIONS(9316), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550874,27 +572545,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_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(8707), 30, + anon_sym_DASH_GT, + ACTIONS(9318), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + 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_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -550902,25 +572570,28 @@ 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, - anon_sym_GT2, - [138465] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [138977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9507), 19, + ACTIONS(9872), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550940,7 +572611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9509), 32, + ACTIONS(9874), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -550973,10 +572644,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [138524] = 3, + [139036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 19, + ACTIONS(9934), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550996,7 +572667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4568), 32, + ACTIONS(9936), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -551029,10 +572700,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [138583] = 3, + [139095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 19, + ACTIONS(9868), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551052,7 +572723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9406), 32, + ACTIONS(9870), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -551085,10 +572756,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [138642] = 3, + [139154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8595), 16, + ACTIONS(5645), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551103,9 +572774,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(8597), 35, + ACTIONS(5638), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -551127,26 +572801,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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [138701] = 4, + [139213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(5260), 20, + ACTIONS(9033), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551156,18 +572825,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(5253), 30, + ACTIONS(9035), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -551175,7 +572843,9 @@ 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_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -551183,6 +572853,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, @@ -551197,71 +572868,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [138762] = 7, + [139272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11298), 1, - sym_identifier, - STATE(5450), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6694), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6700), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8118), 18, + ACTIONS(9063), 21, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8116), 19, + ACTIONS(9065), 30, 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_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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, anon_sym_GT2, - [138829] = 3, + [139331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 19, + ACTIONS(9067), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551271,27 +572937,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_LBRACK, 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(9564), 32, + ACTIONS(9069), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -551299,7 +572965,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, @@ -551313,11 +572978,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [138888] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [139390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9566), 19, + ACTIONS(9084), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551327,27 +572993,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_LBRACK, 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(9568), 32, + ACTIONS(9086), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -551355,7 +573021,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, @@ -551369,13 +573034,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [138947] = 4, + anon_sym_DASH_GT, + anon_sym_GT2, + [139449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6233), 1, - anon_sym_COLON_COLON, - ACTIONS(9142), 20, + ACTIONS(9876), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551385,25 +573049,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(9144), 30, + anon_sym_DASH_GT, + ACTIONS(9878), 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, @@ -551412,6 +573077,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, @@ -551425,12 +573091,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [139008] = 3, + anon_sym_DASH_GT_STAR, + [139508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 19, + ACTIONS(9923), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551450,7 +573115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9406), 32, + ACTIONS(9925), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -551483,10 +573148,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [139067] = 3, + [139567] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9007), 16, + ACTIONS(3098), 1, + anon_sym_LBRACE, + ACTIONS(11434), 1, + anon_sym_LPAREN2, + STATE(6096), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9431), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551503,11 +573175,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9009), 35, + ACTIONS(9433), 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, @@ -551535,18 +573206,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [139126] = 5, + [139632] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11300), 1, - anon_sym_LT, - STATE(3016), 1, - sym_template_argument_list, - ACTIONS(9225), 19, + ACTIONS(3098), 1, + anon_sym_LBRACE, + ACTIONS(11434), 1, + anon_sym_LPAREN2, + STATE(6043), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9381), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551556,24 +573227,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(9227), 30, + anon_sym_DASH_GT, + ACTIONS(9383), 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, @@ -551582,29 +573251,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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [139189] = 5, + anon_sym_DASH_GT_STAR, + [139697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11303), 1, - anon_sym_LT, - STATE(5247), 1, - sym_template_argument_list, - ACTIONS(9225), 17, + ACTIONS(9888), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551615,6 +573280,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, @@ -551622,9 +573288,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9227), 32, + anon_sym_DASH_GT, + ACTIONS(9890), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -551632,7 +573300,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -551654,11 +573321,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [139252] = 3, + anon_sym_DASH_GT_STAR, + [139756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8731), 21, + ACTIONS(9088), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551680,7 +573347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8733), 30, + ACTIONS(9090), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -551711,10 +573378,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [139311] = 3, + [139815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 19, + ACTIONS(9095), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551724,27 +573391,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_LBRACK, 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(9406), 32, + ACTIONS(9097), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -551752,7 +573419,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, @@ -551766,123 +573432,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [139370] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [139874] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 16, + ACTIONS(11658), 1, + sym_identifier, + STATE(5562), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6987), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6993), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8456), 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_DOT, - anon_sym_DASH_GT, - ACTIONS(2793), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [139429] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9294), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(9296), 32, + sym_literal_suffix, + ACTIONS(8454), 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_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_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_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, - [139488] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [139941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 19, + ACTIONS(9041), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551892,27 +573507,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_LBRACK, 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(9406), 32, + ACTIONS(9043), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -551920,7 +573535,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, @@ -551934,44 +573548,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [139547] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [140000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6764), 13, + ACTIONS(5593), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5595), 45, 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, - anon_sym_LBRACK_COLON, - ACTIONS(6762), 38, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_static, + anon_sym_RBRACK, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -551985,16 +573598,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_template, - anon_sym_operator, - [139606] = 3, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [140059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9078), 16, + ACTIONS(8996), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552011,7 +573626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9080), 35, + ACTIONS(8998), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -552047,66 +573662,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [139665] = 3, + [140118] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5260), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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(5253), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(11638), 2, anon_sym_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, - [139724] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9082), 16, + anon_sym_and, + ACTIONS(9322), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552123,13 +573685,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9084), 35, + ACTIONS(9324), 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, @@ -552147,7 +573708,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, - anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, @@ -552159,10 +573719,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [139783] = 3, + [140179] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6270), 18, + ACTIONS(11660), 1, + anon_sym_LT, + STATE(3805), 1, + sym_template_argument_list, + ACTIONS(9711), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552173,7 +573737,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, @@ -552181,7 +573744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6272), 33, + ACTIONS(9713), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -552192,7 +573755,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -552215,76 +573777,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [139842] = 6, + [140242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9965), 1, - anon_sym_decltype, - ACTIONS(11190), 1, - sym_auto, - STATE(5972), 1, - sym_decltype_auto, - ACTIONS(6798), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6800), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [139907] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2738), 1, - anon_sym_LBRACE, - ACTIONS(11149), 1, - anon_sym_LPAREN2, - STATE(6004), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9105), 16, + ACTIONS(9000), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552301,10 +573797,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9107), 31, + ACTIONS(9002), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -552332,11 +573829,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [139972] = 3, + [140301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9358), 20, + ACTIONS(9599), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552346,26 +573846,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(9360), 31, + anon_sym_DASH_GT, + ACTIONS(9597), 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, @@ -552374,6 +573874,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, @@ -552387,12 +573888,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [140031] = 3, + anon_sym_DASH_GT_STAR, + [140360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 19, + ACTIONS(9892), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552412,7 +573912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9406), 32, + ACTIONS(9894), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -552445,10 +573945,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [140090] = 3, + [140419] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8599), 16, + ACTIONS(3098), 1, + anon_sym_LBRACE, + ACTIONS(11434), 1, + anon_sym_LPAREN2, + STATE(6104), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9377), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552465,11 +573972,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8601), 35, + ACTIONS(9379), 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, @@ -552497,14 +574003,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [140149] = 3, + [140484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8618), 16, + ACTIONS(6632), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552519,19 +574022,22 @@ 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(8620), 35, + ACTIONS(6634), 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, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -552543,24 +574049,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, + [140543] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7106), 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7104), 38, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [140208] = 3, + anon_sym_template, + anon_sym_operator, + [140602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8693), 19, + ACTIONS(4930), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552574,23 +574133,23 @@ 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(8695), 32, + anon_sym_DASH_GT, + ACTIONS(4928), 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_RBRACK_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -552612,11 +574171,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [140267] = 3, + anon_sym_DASH_GT_STAR, + [140661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8671), 21, + ACTIONS(9880), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552626,27 +574185,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_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8673), 30, + anon_sym_DASH_GT, + ACTIONS(9882), 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_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -552654,6 +574213,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, @@ -552667,68 +574227,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [140326] = 3, + anon_sym_DASH_GT_STAR, + [140720] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9484), 19, + ACTIONS(6601), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6603), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + 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, - anon_sym_DASH_GT, - ACTIONS(9486), 32, + sym_identifier, + ACTIONS(6596), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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, - [140385] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [140781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9519), 19, + ACTIONS(9748), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552748,7 +574308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9521), 32, + ACTIONS(9750), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -552781,69 +574341,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [140444] = 6, + [140840] = 3, ACTIONS(3), 1, sym_comment, - STATE(5056), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(6539), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6541), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8737), 18, + ACTIONS(9764), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + 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(8739), 21, + anon_sym_DASH_GT, + ACTIONS(9766), 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_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - [140509] = 3, + anon_sym_DASH_GT_STAR, + [140899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9472), 19, + ACTIONS(9896), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552863,7 +574420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9474), 32, + ACTIONS(9898), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -552896,10 +574453,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [140568] = 3, + [140958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9476), 19, + ACTIONS(9697), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552919,7 +574476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9478), 32, + ACTIONS(9699), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -552952,10 +574509,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [140627] = 3, + [141017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 16, + ACTIONS(9011), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552972,7 +574529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8635), 35, + ACTIONS(9013), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -553008,10 +574565,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [140686] = 3, + [141076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9550), 19, + ACTIONS(9045), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -553021,27 +574578,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_LBRACK, 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(9552), 32, + ACTIONS(9047), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -553049,7 +574606,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, @@ -553063,20 +574619,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [140745] = 4, + anon_sym_DASH_GT, + anon_sym_GT2, + [141135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11306), 1, - sym_literal_suffix, - ACTIONS(5253), 24, + ACTIONS(9445), 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(9447), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -553085,46 +574659,91 @@ 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(5260), 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, - [140806] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [141194] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(11649), 1, + anon_sym_COLON, + ACTIONS(11651), 1, + anon_sym_LBRACE, + STATE(5878), 1, + sym__enum_base_clause, + STATE(5989), 1, + sym_enumerator_list, + STATE(6056), 1, + sym_attribute_specifier, + ACTIONS(8006), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(8008), 39, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [141267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8675), 21, + ACTIONS(6612), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -553134,19 +574753,16 @@ 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(8677), 30, + ACTIONS(6614), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -553154,7 +574770,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -553162,6 +574781,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, @@ -553176,15 +574796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [140865] = 5, + [141326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11300), 1, - anon_sym_LT, - STATE(5220), 1, - sym_template_argument_list, - ACTIONS(9225), 19, + ACTIONS(6624), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -553194,17 +574809,16 @@ 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(9227), 30, + ACTIONS(6626), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -553212,7 +574826,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -553220,6 +574837,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, @@ -553234,11 +574852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [140928] = 3, + [141385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8208), 19, + ACTIONS(6628), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -553257,18 +574874,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3888), 32, + ACTIONS(6630), 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, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -553290,11 +574907,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [140987] = 3, + anon_sym_DASH_GT, + [141444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 16, + ACTIONS(9930), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -553309,9 +574926,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(8667), 35, + ACTIONS(9932), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -553333,26 +574953,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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [141046] = 4, + [141503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(5260), 18, + ACTIONS(9946), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -553371,9 +574986,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5253), 32, + anon_sym_DASH_GT, + ACTIONS(9948), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -553381,7 +574998,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -553403,11 +575019,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [141107] = 3, + anon_sym_DASH_GT_STAR, + [141562] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5667), 1, + anon_sym_decltype, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(7457), 1, + anon_sym_SEMI, + ACTIONS(10614), 1, + sym_auto, + STATE(4812), 1, + sym_decltype_auto, + ACTIONS(7225), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(7223), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [141631] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5667), 1, + anon_sym_decltype, + ACTIONS(7457), 1, + anon_sym_SEMI, + ACTIONS(10614), 1, + sym_auto, + STATE(4812), 1, + sym_decltype_auto, + ACTIONS(7225), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(7223), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [141698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8516), 16, + ACTIONS(6608), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -553422,19 +575159,22 @@ 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(8518), 35, + ACTIONS(6610), 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, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -553446,24 +575186,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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [141166] = 3, + anon_sym_DASH_GT, + [141757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8145), 20, + ACTIONS(6616), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -553473,18 +575210,16 @@ 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(8140), 31, + ACTIONS(6618), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -553492,8 +575227,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_COLON_COLON, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -553501,6 +575238,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, @@ -553515,11 +575253,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [141225] = 3, + [141816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9375), 19, + ACTIONS(9059), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -553529,27 +575266,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_LBRACK, 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(9377), 32, + ACTIONS(9061), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -553557,7 +575294,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, @@ -553571,75 +575307,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [141284] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11308), 1, - sym_identifier, - STATE(5519), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(11311), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(11314), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8047), 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(8045), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141351] = 5, + anon_sym_GT2, + [141875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11300), 1, - anon_sym_LT, - STATE(2992), 1, - sym_template_argument_list, - ACTIONS(9225), 19, + ACTIONS(9788), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -553649,24 +575322,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(9227), 30, + anon_sym_DASH_GT, + ACTIONS(9790), 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, @@ -553675,6 +575350,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, @@ -553688,12 +575364,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [141414] = 3, + anon_sym_DASH_GT_STAR, + [141934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8693), 21, + ACTIONS(9808), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -553703,27 +575378,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_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8695), 30, + anon_sym_DASH_GT, + ACTIONS(9810), 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_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -553731,6 +575406,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, @@ -553744,12 +575420,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [141473] = 3, + anon_sym_DASH_GT_STAR, + [141993] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9558), 19, + ACTIONS(6958), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(5645), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -553769,7 +575448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9560), 32, + ACTIONS(5638), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -553791,9 +575470,6 @@ 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, @@ -553802,10 +575478,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [141532] = 3, + [142054] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9472), 19, + ACTIONS(11653), 1, + anon_sym_LT, + STATE(3151), 1, + sym_template_argument_list, + ACTIONS(9650), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -553815,26 +575495,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(9474), 32, + ACTIONS(9652), 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_QMARK, anon_sym_STAR_EQ, @@ -553843,7 +575521,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, @@ -553857,11 +575534,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [141591] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [142117] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9515), 19, + ACTIONS(11663), 1, + anon_sym_LT, + STATE(3131), 1, + sym_template_argument_list, + ACTIONS(9650), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -553872,7 +575554,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, @@ -553880,11 +575561,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9517), 32, + ACTIONS(9652), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -553892,6 +575571,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -553913,15 +575593,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [141650] = 5, + anon_sym_DASH_GT, + [142180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11303), 1, - anon_sym_LT, - STATE(3043), 1, - sym_template_argument_list, - ACTIONS(9225), 17, + ACTIONS(9830), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -553932,6 +575608,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, @@ -553939,9 +575616,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9227), 32, + anon_sym_DASH_GT, + ACTIONS(9832), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -553949,7 +575628,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -553971,11 +575649,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [141713] = 3, + anon_sym_DASH_GT_STAR, + [142239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8935), 16, + ACTIONS(9308), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -553992,7 +575670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8937), 35, + ACTIONS(9310), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -554028,10 +575706,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [141772] = 3, + [142298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9248), 19, + ACTIONS(8598), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554051,7 +575729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9250), 32, + ACTIONS(3488), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -554084,17 +575762,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [141831] = 3, + [142357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10247), 24, + ACTIONS(9361), 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(9363), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -554103,47 +575800,28 @@ 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(10249), 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, - [141890] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [142416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9428), 19, + ACTIONS(9084), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554157,23 +575835,23 @@ 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(9430), 32, + ACTIONS(9086), 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_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -554195,70 +575873,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [141949] = 6, + anon_sym_DASH_GT, + [142475] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(3098), 1, anon_sym_LBRACE, - ACTIONS(11145), 1, + ACTIONS(11434), 1, anon_sym_LPAREN2, - STATE(5863), 2, + STATE(6103), 2, sym_argument_list, sym_initializer_list, - ACTIONS(9117), 20, - aux_sym_preproc_elif_token1, + ACTIONS(9491), 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___attribute__, - anon_sym___attribute, - anon_sym_COLON, - 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_DOT, - sym_identifier, - ACTIONS(9119), 27, + anon_sym_DASH_GT, + ACTIONS(9493), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_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_GT_GT_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, - anon_sym_COLON_RBRACK, - [142014] = 3, + anon_sym_DASH_GT_STAR, + [142540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 16, + ACTIONS(9938), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554273,9 +575951,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(7627), 35, + ACTIONS(9940), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -554297,24 +575978,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_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [142073] = 3, + [142599] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8685), 21, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(9711), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554329,14 +576009,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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8687), 30, + ACTIONS(9713), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -554344,7 +576023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -554367,10 +576046,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [142132] = 3, + [142660] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8709), 21, + ACTIONS(11666), 1, + anon_sym_LT, + STATE(5732), 1, + sym_template_argument_list, + ACTIONS(9711), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554382,17 +576065,15 @@ 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_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8711), 30, + ACTIONS(9713), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -554400,7 +576081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -554423,10 +576104,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [142191] = 3, + [142723] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9511), 19, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(9711), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554445,11 +576128,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9513), 32, + ACTIONS(9713), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -554457,6 +576138,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -554478,11 +576160,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [142250] = 3, + anon_sym_DASH_GT, + [142784] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9523), 19, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(11527), 1, + anon_sym_LPAREN2, + STATE(5977), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9431), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + 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_identifier, + ACTIONS(9433), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [142849] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9778), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554502,7 +576243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9525), 32, + ACTIONS(9780), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -554535,10 +576276,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [142309] = 3, + [142908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9248), 19, + ACTIONS(8885), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554553,12 +576294,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(9250), 32, + ACTIONS(8887), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -554580,21 +576318,33 @@ 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_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [142368] = 3, + [142967] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9248), 19, + ACTIONS(7090), 1, + anon_sym_LBRACE, + ACTIONS(7445), 1, + anon_sym_LT, + STATE(2053), 1, + sym_template_argument_list, + ACTIONS(7087), 2, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + ACTIONS(7092), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554605,20 +576355,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_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9250), 32, + ACTIONS(7097), 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, @@ -554636,21 +576381,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, - [142427] = 3, + [143034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8655), 16, + ACTIONS(9365), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554667,7 +576412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8657), 35, + ACTIONS(9367), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -554703,10 +576448,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [142486] = 3, + [143093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9574), 19, + ACTIONS(8909), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554721,65 +576466,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(9576), 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, - [142545] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9093), 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(9095), 35, + ACTIONS(8911), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -554815,10 +576504,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [142604] = 3, + [143152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9554), 19, + ACTIONS(9703), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554828,26 +576517,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(9556), 32, + ACTIONS(9705), 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, @@ -554856,7 +576545,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, @@ -554870,11 +576558,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [142663] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [143211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9097), 16, + ACTIONS(9369), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554891,7 +576580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9099), 35, + ACTIONS(9371), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -554927,10 +576616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [142722] = 3, + [143270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9101), 16, + ACTIONS(9373), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554947,7 +576636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9103), 35, + ACTIONS(9375), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -554983,126 +576672,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [142781] = 3, + [143329] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9109), 16, + ACTIONS(11669), 1, + sym_identifier, + STATE(5602), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6987), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6993), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8468), 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_DOT, - anon_sym_DASH_GT, - ACTIONS(9111), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [142840] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6751), 1, - anon_sym_LBRACE, - ACTIONS(7037), 1, - anon_sym_LT, - STATE(1956), 1, - sym_template_argument_list, - ACTIONS(6748), 2, - anon_sym_LPAREN2, - anon_sym_COLON_COLON, - ACTIONS(6753), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6758), 31, + sym_literal_suffix, + ACTIONS(8466), 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_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_GT_GT_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, - [142907] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [143396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9371), 19, + ACTIONS(9919), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -555122,7 +576755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9373), 32, + ACTIONS(9921), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -555155,10 +576788,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [142966] = 3, + [143455] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9452), 19, + ACTIONS(11671), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9697), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -555168,27 +576803,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, - anon_sym_DASH_GT, - ACTIONS(9454), 32, + ACTIONS(9699), 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, @@ -555196,7 +576830,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, @@ -555210,11 +576843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [143025] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [143516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9456), 19, + ACTIONS(9752), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -555234,7 +576868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9458), 32, + ACTIONS(9754), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -555267,10 +576901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [143084] = 3, + [143575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6242), 18, + ACTIONS(9800), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -555289,18 +576923,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6244), 33, + anon_sym_DASH_GT, + ACTIONS(9802), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -555322,13 +576956,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [143143] = 4, + anon_sym_DASH_GT_STAR, + [143634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11317), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(9308), 19, + ACTIONS(9864), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -555342,22 +576974,23 @@ 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(9310), 31, + anon_sym_DASH_GT, + ACTIONS(9866), 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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -555379,11 +577012,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [143204] = 3, + anon_sym_DASH_GT_STAR, + [143693] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6246), 18, + ACTIONS(11673), 1, + sym_literal_suffix, + ACTIONS(5645), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -555398,11 +577033,17 @@ 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, - ACTIONS(6248), 33, + ACTIONS(5638), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -555411,7 +577052,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, @@ -555425,77 +577065,74 @@ 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, - [143263] = 3, + [143754] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9432), 19, + STATE(5033), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(6913), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6915), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(9116), 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___attribute__, + anon_sym___attribute, 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(9434), 32, + sym_literal_suffix, + ACTIONS(9118), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, - [143322] = 3, + anon_sym_DASH_GT, + [143819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6250), 18, + ACTIONS(9900), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -555514,18 +577151,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6252), 33, + anon_sym_DASH_GT, + ACTIONS(9902), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -555547,13 +577184,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [143381] = 4, + anon_sym_DASH_GT_STAR, + [143878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(9262), 18, + ACTIONS(9907), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -555572,9 +577207,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9264), 32, + anon_sym_DASH_GT, + ACTIONS(9909), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -555582,7 +577219,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -555604,15 +577240,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [143442] = 5, + anon_sym_DASH_GT_STAR, + [143937] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11319), 1, - anon_sym_LT, - STATE(5733), 1, - sym_template_argument_list, - ACTIONS(9262), 17, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(5645), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -555623,6 +577257,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, @@ -555630,7 +577265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9264), 32, + ACTIONS(5638), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -555663,10 +577298,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [143505] = 3, + [143998] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10249), 25, + ACTIONS(11675), 1, + sym_literal_suffix, + ACTIONS(5638), 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_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(5645), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -555676,11 +577338,13 @@ 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, @@ -555691,10 +577355,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(10247), 26, + [144059] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8950), 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(8952), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -555702,7 +577386,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -555715,70 +577398,82 @@ 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, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [143564] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [144118] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8721), 21, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(11527), 1, + anon_sym_LPAREN2, + STATE(6023), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9491), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_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___attribute__, + anon_sym___attribute, + 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(8723), 30, + sym_identifier, + ACTIONS(9493), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + 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_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [143623] = 3, + anon_sym_COLON_RBRACK, + [144183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9570), 19, + ACTIONS(8942), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -555793,12 +577488,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(9572), 32, + ACTIONS(8944), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -555820,23 +577512,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_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [143682] = 4, + [144242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11322), 1, - sym_literal_suffix, - ACTIONS(5260), 24, + ACTIONS(9703), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -555851,17 +577544,11 @@ 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, - ACTIONS(5253), 26, + ACTIONS(9705), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -555870,6 +577557,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_RBRACK, anon_sym_QMARK, @@ -555883,15 +577571,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_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [143743] = 3, + [144301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6254), 18, + ACTIONS(9711), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -555910,18 +577604,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6256), 33, + anon_sym_DASH_GT, + ACTIONS(9713), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -555943,11 +577637,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [143802] = 3, + anon_sym_DASH_GT_STAR, + [144360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8721), 19, + ACTIONS(9080), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -555967,7 +577661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8723), 32, + ACTIONS(9082), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -556000,10 +577694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [143861] = 3, + [144419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9379), 19, + ACTIONS(9389), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -556018,12 +577712,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(9381), 32, + ACTIONS(9391), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -556045,28 +577736,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_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [143920] = 6, + [144478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, - anon_sym_LBRACE, - ACTIONS(11149), 1, - anon_sym_LPAREN2, - STATE(5978), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9086), 16, + ACTIONS(10566), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -556081,18 +577768,28 @@ 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(9088), 31, + sym_literal_suffix, + ACTIONS(10564), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -556105,20 +577802,16 @@ 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, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [143985] = 3, + anon_sym_DASH_GT, + [144537] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9538), 19, + ACTIONS(11677), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9697), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -556132,23 +577825,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(9540), 32, + ACTIONS(9699), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -556170,67 +577862,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [144044] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5233), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5235), 45, - 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___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [144103] = 3, + [144598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5260), 19, + ACTIONS(9736), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -556250,7 +577886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5253), 32, + ACTIONS(9738), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -556283,10 +577919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [144162] = 3, + [144657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 16, + ACTIONS(8424), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -556303,7 +577939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8631), 35, + ACTIONS(8422), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -556339,66 +577975,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [144221] = 3, + [144716] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 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(11653), 1, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8631), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [144280] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8831), 19, + STATE(5312), 1, + sym_template_argument_list, + ACTIONS(9650), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -556408,26 +577992,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(8829), 32, + ACTIONS(9652), 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_QMARK, anon_sym_STAR_EQ, @@ -556436,7 +578018,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, @@ -556450,11 +578031,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [144339] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [144779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9262), 19, + ACTIONS(9884), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -556474,7 +578056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9264), 32, + ACTIONS(9886), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -556507,10 +578089,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [144398] = 3, + [144838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 16, + ACTIONS(9088), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -556524,68 +578106,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8631), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [144457] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6258), 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(6260), 33, + ACTIONS(9090), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -556594,9 +578121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -556619,10 +578145,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144516] = 3, + [144897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 19, + ACTIONS(9095), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -556636,23 +578162,23 @@ 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(9306), 32, + ACTIONS(9097), 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_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -556674,11 +578200,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [144575] = 3, + anon_sym_DASH_GT, + [144956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9542), 19, + ACTIONS(8954), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -556693,12 +578219,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(9544), 32, + ACTIONS(8956), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -556720,21 +578243,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_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [144634] = 3, + [145015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8671), 19, + ACTIONS(9041), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -556754,7 +578280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8673), 32, + ACTIONS(9043), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -556787,122 +578313,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144693] = 3, + [145074] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8675), 19, + ACTIONS(11679), 1, + sym_identifier, + STATE(5688), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(11682), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(11685), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8408), 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, - ACTIONS(8677), 32, + sym_literal_suffix, + ACTIONS(8406), 21, 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_LBRACK_LBRACK, - anon_sym_RBRACK_RBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_DOT_STAR, anon_sym_DASH_GT, - [144752] = 3, + [145141] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6262), 18, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(11527), 1, + anon_sym_LPAREN2, + STATE(5982), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9381), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + 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(6264), 33, + sym_identifier, + ACTIONS(9383), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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_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_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_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, - [144811] = 3, + anon_sym_COLON_RBRACK, + [145206] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9546), 19, + ACTIONS(11663), 1, + anon_sym_LT, + STATE(3137), 1, + sym_template_argument_list, + ACTIONS(9650), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -556913,7 +578450,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, @@ -556921,11 +578457,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9548), 32, + ACTIONS(9652), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -556933,6 +578467,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -556954,18 +578489,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [144870] = 6, + anon_sym_DASH_GT, + [145269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, - anon_sym_LBRACE, - ACTIONS(11149), 1, - anon_sym_LPAREN2, - STATE(5994), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8951), 16, + ACTIONS(9760), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -556980,12 +578508,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_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8953), 31, + ACTIONS(9762), 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, @@ -557003,21 +578535,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, - [144935] = 3, + [145328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9436), 19, + ACTIONS(8564), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557036,18 +578568,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9438), 32, + ACTIONS(8559), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -557069,11 +578601,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [144994] = 3, + anon_sym_DASH_GT, + [145387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8955), 16, + ACTIONS(9333), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557090,7 +578622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8957), 35, + ACTIONS(9335), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -557126,10 +578658,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [145053] = 3, + [145446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 16, + ACTIONS(9337), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557146,7 +578678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8994), 35, + ACTIONS(9339), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -557182,10 +578714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [145112] = 3, + [145505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9278), 19, + ACTIONS(9760), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557205,7 +578737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9280), 32, + ACTIONS(9762), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -557238,10 +578770,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [145171] = 3, + [145564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9424), 19, + ACTIONS(7968), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557256,12 +578788,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(9426), 32, + ACTIONS(7966), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -557283,21 +578812,107 @@ 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_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [145230] = 3, + [145623] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6479), 1, + anon_sym_LBRACK, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(10348), 1, + anon_sym_AMP_AMP, + ACTIONS(10350), 1, + anon_sym_AMP, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10819), 1, + anon_sym_DASH_GT, + ACTIONS(10824), 1, + anon_sym_requires, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(7649), 1, + sym__function_attributes_start, + STATE(7721), 1, + sym_ref_qualifier, + STATE(8851), 1, + sym__function_attributes_end, + STATE(8980), 1, + sym_trailing_return_type, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6481), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(6144), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6360), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8522), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7989), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [145736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9448), 19, + ACTIONS(9045), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557311,23 +578926,23 @@ 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(9450), 32, + ACTIONS(9047), 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_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -557349,15 +578964,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [145289] = 5, + anon_sym_DASH_GT, + [145795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11300), 1, - anon_sym_LT, - STATE(3024), 1, - sym_template_argument_list, - ACTIONS(9225), 19, + ACTIONS(9630), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557367,24 +578978,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(9227), 30, + anon_sym_DASH_GT, + ACTIONS(9632), 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, @@ -557393,6 +579006,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, @@ -557406,16 +579020,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [145352] = 5, + anon_sym_DASH_GT_STAR, + [145854] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11319), 1, + ACTIONS(11660), 1, anon_sym_LT, - STATE(3698), 1, + STATE(5840), 1, sym_template_argument_list, - ACTIONS(9262), 17, + ACTIONS(9711), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557433,7 +579046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9264), 32, + ACTIONS(9713), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -557442,8 +579055,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -557466,10 +579079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [145415] = 3, + [145917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9440), 19, + ACTIONS(9760), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557489,7 +579102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9442), 32, + ACTIONS(9762), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -557522,10 +579135,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [145474] = 3, + [145976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9408), 19, + ACTIONS(9760), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557545,7 +579158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9410), 32, + ACTIONS(9762), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -557578,10 +579191,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [145533] = 3, + [146035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8087), 16, + ACTIONS(9407), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557598,7 +579211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8089), 35, + ACTIONS(9409), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -557634,14 +579247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [145592] = 5, + [146094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11303), 1, - anon_sym_LT, - STATE(3042), 1, - sym_template_argument_list, - ACTIONS(9225), 17, + ACTIONS(9760), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557652,6 +579261,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, @@ -557659,9 +579269,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9227), 32, + anon_sym_DASH_GT, + ACTIONS(9762), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -557669,7 +579281,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -557691,19 +579302,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [146153] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9760), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_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, - [145655] = 6, + ACTIONS(9762), 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, + [146212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(11145), 1, + ACTIONS(9063), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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(9065), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - STATE(5857), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8951), 20, - aux_sym_preproc_elif_token1, + 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_RBRACK_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_DOT_STAR, + anon_sym_DASH_GT, + [146271] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11688), 1, + sym_identifier, + STATE(5688), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(7048), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7054), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8456), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -557712,9 +579445,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -557722,15 +579452,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(8953), 27, + sym_literal_suffix, + ACTIONS(8454), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -557741,20 +579467,18 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [145720] = 3, + [146338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8685), 19, + ACTIONS(9772), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557768,23 +579492,23 @@ 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(8687), 32, + anon_sym_DASH_GT, + ACTIONS(9774), 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_RBRACK_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -557806,13 +579530,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [145779] = 4, + anon_sym_DASH_GT_STAR, + [146397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11324), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(9308), 21, + ACTIONS(9626), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557822,26 +579544,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_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9310), 29, + anon_sym_DASH_GT, + ACTIONS(9628), 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, @@ -557849,6 +579572,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, @@ -557862,69 +579586,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [145840] = 4, + anon_sym_DASH_GT_STAR, + [146456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6233), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6235), 20, - aux_sym_preproc_elif_token1, + ACTIONS(9685), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + 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_identifier, - ACTIONS(6228), 29, + anon_sym_DASH_GT, + ACTIONS(9687), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [145901] = 3, + anon_sym_DASH_GT_STAR, + [146515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8999), 16, + ACTIONS(7789), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557941,7 +579663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9001), 35, + ACTIONS(7791), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -557977,10 +579699,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [145960] = 3, + [146574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9003), 16, + ACTIONS(9796), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557995,9 +579717,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(9005), 35, + ACTIONS(9798), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -558019,24 +579744,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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [146019] = 3, + [146633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 16, + ACTIONS(9626), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558051,9 +579773,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(9013), 35, + ACTIONS(9628), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -558075,24 +579800,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, + [146692] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9626), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_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, + anon_sym_DASH_GT, + ACTIONS(9628), 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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [146078] = 3, + [146751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9015), 16, + ACTIONS(8992), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558109,7 +579887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9017), 35, + ACTIONS(8994), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -558145,10 +579923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [146137] = 3, + [146810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9444), 19, + ACTIONS(8992), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558163,12 +579941,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(9446), 32, + ACTIONS(8994), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -558190,21 +579965,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_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [146196] = 3, + [146869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8713), 21, + ACTIONS(9296), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558214,27 +579992,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_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(8715), 30, + anon_sym_DASH_GT, + ACTIONS(9298), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + 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_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -558242,25 +580017,91 @@ 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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [146928] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(11527), 1, + anon_sym_LPAREN2, + STATE(5980), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9377), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + 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_identifier, + ACTIONS(9379), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [146255] = 3, + anon_sym_COLON_RBRACK, + [146993] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8709), 19, + ACTIONS(11663), 1, + anon_sym_LT, + STATE(5351), 1, + sym_template_argument_list, + ACTIONS(9650), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558271,16 +580112,14 @@ 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(8711), 32, + ACTIONS(9652), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -558289,8 +580128,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_RBRACK_RBRACK, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -558313,10 +580152,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [146314] = 3, + [147056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8541), 16, + ACTIONS(8992), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558333,7 +580172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8543), 35, + ACTIONS(8994), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -558369,10 +580208,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [146373] = 3, + [147115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9266), 19, + ACTIONS(9415), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558387,12 +580226,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(9268), 32, + ACTIONS(9417), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -558414,21 +580250,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_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [146432] = 3, + [147174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8713), 19, + ACTIONS(9826), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558442,23 +580281,23 @@ 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(8715), 32, + anon_sym_DASH_GT, + ACTIONS(9828), 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_RBRACK_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -558480,11 +580319,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [146491] = 3, + anon_sym_DASH_GT_STAR, + [147233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8717), 19, + ACTIONS(6620), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558498,13 +580337,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, - ACTIONS(8719), 32, + ACTIONS(6622), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -558513,8 +580351,9 @@ 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_RBRACK_RBRACK, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -558537,10 +580376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [146550] = 3, + [147292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8717), 21, + ACTIONS(9907), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558555,14 +580394,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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8719), 30, + ACTIONS(9909), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -558570,7 +580408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -558593,10 +580431,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [146609] = 3, + [147350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9029), 16, + ACTIONS(9732), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558606,23 +580444,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(9031), 35, + ACTIONS(9734), 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_QMARK, anon_sym_STAR_EQ, @@ -558631,28 +580471,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_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [146668] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [147408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8559), 16, + ACTIONS(9626), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558667,12 +580504,13 @@ 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(8561), 35, + ACTIONS(9628), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -558680,6 +580518,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -558691,145 +580530,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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [146727] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5282), 1, - anon_sym_decltype, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(7183), 1, - anon_sym_SEMI, - ACTIONS(10213), 1, - sym_auto, - STATE(4817), 1, - sym_decltype_auto, - ACTIONS(6800), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(6798), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [146796] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5282), 1, - anon_sym_decltype, - ACTIONS(7183), 1, - anon_sym_SEMI, - ACTIONS(10213), 1, - sym_auto, - STATE(4817), 1, - sym_decltype_auto, - ACTIONS(6800), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(6798), 40, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [146863] = 3, + anon_sym_DASH_GT, + [147466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8145), 18, + ACTIONS(4930), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558848,7 +580563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8140), 33, + ACTIONS(4928), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -558857,7 +580572,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_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, @@ -558882,14 +580596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [146922] = 4, + [147524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6588), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(5260), 19, + ACTIONS(9626), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558908,11 +580618,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5253), 29, + ACTIONS(9628), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -558920,6 +580628,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -558931,6 +580640,9 @@ 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, @@ -558938,11 +580650,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [146983] = 3, + anon_sym_DASH_GT, + [147582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 16, + ACTIONS(9892), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558952,23 +580664,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(9039), 35, + ACTIONS(9894), 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_QMARK, anon_sym_STAR_EQ, @@ -558977,91 +580691,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_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [147042] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(11292), 1, - anon_sym_COLON, - ACTIONS(11294), 1, - anon_sym_LBRACE, - STATE(5797), 1, - sym__enum_base_clause, - STATE(5893), 1, - sym_enumerator_list, - STATE(5985), 1, - sym_attribute_specifier, - ACTIONS(7600), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7602), 39, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [147115] = 3, + [147640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 16, + ACTIONS(9626), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -559076,12 +580724,13 @@ 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(2801), 35, + ACTIONS(9628), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -559089,6 +580738,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -559100,24 +580750,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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [147174] = 3, + anon_sym_DASH_GT, + [147698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9358), 18, + ACTIONS(9896), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -559136,7 +580783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9360), 33, + ACTIONS(9898), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -559145,7 +580792,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_RBRACK, anon_sym_QMARK, @@ -559170,10 +580816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [147233] = 3, + [147756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8651), 16, + ACTIONS(9693), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -559183,23 +580829,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(8653), 35, + ACTIONS(9695), 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_QMARK, anon_sym_STAR_EQ, @@ -559208,28 +580856,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_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [147292] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [147814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9444), 18, + ACTIONS(9740), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -559248,7 +580893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9446), 32, + ACTIONS(9742), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -559281,10 +580926,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [147350] = 3, + [147872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9554), 18, + ACTIONS(9768), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -559303,7 +580948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9556), 32, + ACTIONS(9770), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -559336,52 +580981,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [147408] = 3, + [147930] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9448), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5661), 1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9450), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5796), 1, + anon_sym_SEMI, + ACTIONS(6883), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9236), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(9239), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(5663), 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(5638), 15, + 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -559390,11 +581024,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [147466] = 3, + ACTIONS(5645), 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, + [148000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9266), 20, + ACTIONS(9792), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -559404,18 +581055,16 @@ 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(9268), 30, + ACTIONS(9794), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -559423,7 +581072,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -559431,6 +581082,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, @@ -559445,72 +581097,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [147524] = 25, + [148058] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9344), 1, + ACTIONS(9707), 1, anon_sym_EQ, - ACTIONS(10347), 1, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(10759), 1, anon_sym_LBRACK, - ACTIONS(10797), 1, + ACTIONS(11251), 1, anon_sym_DOT_STAR, - ACTIONS(11047), 1, + ACTIONS(11401), 1, anon_sym_LT_EQ_GT, - ACTIONS(11334), 1, + ACTIONS(11696), 1, anon_sym_PIPE, - ACTIONS(11336), 1, + ACTIONS(11698), 1, anon_sym_CARET, - ACTIONS(11338), 1, + ACTIONS(11700), 1, anon_sym_AMP, - ACTIONS(11344), 1, + ACTIONS(11706), 1, anon_sym_GT_EQ, - ACTIONS(11348), 1, + ACTIONS(11710), 1, anon_sym_bitor, - ACTIONS(11350), 1, + ACTIONS(11712), 1, anon_sym_xor, - ACTIONS(11352), 1, + ACTIONS(11714), 1, anon_sym_bitand, - STATE(5506), 1, + STATE(5663), 1, sym_argument_list, - STATE(5507), 1, + STATE(5664), 1, sym_subscript_argument_list, - ACTIONS(10429), 2, + ACTIONS(10803), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11061), 2, + ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11326), 2, + ACTIONS(11690), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11330), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11332), 2, + ACTIONS(11694), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11346), 2, + ACTIONS(11708), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11328), 3, + ACTIONS(11692), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11340), 3, + ACTIONS(11702), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11342), 3, + ACTIONS(11704), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9342), 15, + ACTIONS(9709), 17, 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, @@ -559522,11 +581171,12 @@ 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_DASH_GT_STAR, - [147626] = 3, + [148158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8208), 18, + ACTIONS(9822), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -559536,16 +581186,18 @@ 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(3888), 32, + ACTIONS(9824), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -559553,9 +581205,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -559563,7 +581213,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, @@ -559578,10 +581227,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [147684] = 3, + anon_sym_GT2, + [148216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9379), 18, + ACTIONS(9818), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -559591,16 +581241,18 @@ 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(9381), 32, + ACTIONS(9820), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -559608,9 +581260,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -559618,7 +581268,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, @@ -559633,65 +581282,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [147742] = 3, + anon_sym_GT2, + [148274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9578), 20, + ACTIONS(9934), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, + 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(9580), 30, + sym_identifier, + ACTIONS(9936), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_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_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [147800] = 3, + anon_sym_COLON_RBRACK, + [148332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9499), 20, + ACTIONS(9800), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -559712,7 +581362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9501), 30, + ACTIONS(9802), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -559743,67 +581393,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [147858] = 5, + [148390] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11354), 1, - anon_sym_COMMA, - ACTIONS(11356), 1, - anon_sym_RBRACK, - ACTIONS(5260), 18, + ACTIONS(7221), 1, + anon_sym_requires, + ACTIONS(7219), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5352), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8913), 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___attribute, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(5253), 30, + ACTIONS(8915), 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___attribute__, + anon_sym_RBRACK_RBRACK, + 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_or, + anon_sym_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, - [147920] = 3, + anon_sym_COLON_RBRACK, + [148456] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9542), 18, + ACTIONS(11305), 1, + anon_sym_LPAREN2, + ACTIONS(11307), 1, + anon_sym_LBRACK, + STATE(1989), 1, + sym_parameter_list, + STATE(5586), 1, + sym__function_declarator_seq, + ACTIONS(10202), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -559818,21 +581478,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(9544), 32, + anon_sym_DASH_GT, + ACTIONS(10200), 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -559844,61 +581500,50 @@ 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, - [147978] = 11, + anon_sym_DASH_GT_STAR, + [148522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11061), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11328), 3, + ACTIONS(9826), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9282), 11, - 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, - ACTIONS(9284), 27, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9828), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -559906,38 +581551,33 @@ 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_GT_STAR, - [148052] = 10, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [148580] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, + ACTIONS(11305), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(11307), 1, anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11061), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9282), 14, + STATE(1989), 1, + sym_parameter_list, + STATE(5586), 1, + sym__function_declarator_seq, + ACTIONS(10174), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -559952,7 +581592,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(9284), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10172), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -559979,11 +581621,14 @@ 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_DOT_STAR, anon_sym_DASH_GT_STAR, - [148124] = 3, + [148646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8208), 20, + ACTIONS(9856), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -560004,7 +581649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3888), 30, + ACTIONS(9858), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -560035,10 +581680,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [148182] = 3, + [148704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5260), 20, + ACTIONS(9756), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -560059,7 +581704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5253), 30, + ACTIONS(9758), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -560090,69 +581735,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [148240] = 24, + [148762] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(9282), 1, + ACTIONS(9707), 1, anon_sym_EQ, - ACTIONS(10347), 1, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(10759), 1, anon_sym_LBRACK, - ACTIONS(10797), 1, + ACTIONS(11251), 1, anon_sym_DOT_STAR, - ACTIONS(11047), 1, + ACTIONS(11401), 1, anon_sym_LT_EQ_GT, - ACTIONS(11334), 1, + ACTIONS(11696), 1, anon_sym_PIPE, - ACTIONS(11336), 1, + ACTIONS(11698), 1, anon_sym_CARET, - ACTIONS(11338), 1, + ACTIONS(11700), 1, anon_sym_AMP, - ACTIONS(11344), 1, + ACTIONS(11706), 1, anon_sym_GT_EQ, - ACTIONS(11348), 1, + ACTIONS(11710), 1, anon_sym_bitor, - ACTIONS(11350), 1, + ACTIONS(11712), 1, anon_sym_xor, - ACTIONS(11352), 1, + ACTIONS(11714), 1, anon_sym_bitand, - STATE(5506), 1, + STATE(5663), 1, sym_argument_list, - STATE(5507), 1, + STATE(5664), 1, sym_subscript_argument_list, - ACTIONS(10429), 2, + ACTIONS(10803), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11061), 2, + ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11326), 2, + ACTIONS(11690), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11332), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11346), 2, + ACTIONS(11708), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11328), 3, + ACTIONS(11692), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11340), 3, + ACTIONS(11702), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11342), 3, + ACTIONS(11704), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 17, + ACTIONS(9709), 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, @@ -560165,27 +581808,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_or, + anon_sym_and, anon_sym_DASH_GT_STAR, - [148340] = 5, + [148860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6615), 1, - anon_sym_EQ, - ACTIONS(6617), 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(5260), 17, + ACTIONS(9934), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -560195,15 +581823,18 @@ 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(5253), 19, + ACTIONS(9936), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -560211,10 +581842,20 @@ static const uint16_t ts_small_parse_table[] = { 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -560223,67 +581864,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [148402] = 23, + anon_sym_GT2, + [148918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9282), 1, - anon_sym_EQ, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - ACTIONS(11047), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11334), 1, + ACTIONS(8697), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(11336), 1, - anon_sym_CARET, - ACTIONS(11338), 1, anon_sym_AMP, - ACTIONS(11344), 1, - anon_sym_GT_EQ, - ACTIONS(11348), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(11350), 1, anon_sym_xor, - ACTIONS(11352), 1, anon_sym_bitand, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10429), 2, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11061), 2, + sym_identifier, + sym_literal_suffix, + ACTIONS(8699), 31, + 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_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11326), 2, + anon_sym_DOT_STAR, + 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, + [148976] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9599), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11346), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11328), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11340), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11342), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 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(9597), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -560295,67 +581964,50 @@ 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_DASH_GT_STAR, - [148500] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - ACTIONS(11047), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(11336), 1, - anon_sym_CARET, - ACTIONS(11338), 1, - anon_sym_AMP, - ACTIONS(11344), 1, - anon_sym_GT_EQ, - ACTIONS(11350), 1, - anon_sym_xor, - ACTIONS(11352), 1, + anon_sym_bitor, anon_sym_bitand, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(9282), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11061), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11326), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [149034] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9911), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11346), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11328), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11340), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11342), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 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(9913), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -560367,65 +582019,50 @@ 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_bitor, - anon_sym_DASH_GT_STAR, - [148594] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - ACTIONS(11047), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(11338), 1, - anon_sym_AMP, - ACTIONS(11344), 1, - anon_sym_GT_EQ, - ACTIONS(11352), 1, + anon_sym_bitor, anon_sym_bitand, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11061), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11326), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [149092] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9884), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11346), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9282), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(11328), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11340), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11342), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9886), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -560437,63 +582074,50 @@ 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_bitor, - anon_sym_xor, - anon_sym_DASH_GT_STAR, - [148684] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - ACTIONS(11047), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(11344), 1, - anon_sym_GT_EQ, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11061), 2, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11326), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [149150] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9868), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11346), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11328), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11340), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11342), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9282), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_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(9284), 22, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9870), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -560501,66 +582125,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_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_DASH_GT_STAR, - [148770] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - ACTIONS(11047), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11344), 1, - anon_sym_GT_EQ, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11061), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11326), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [149208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9752), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11346), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11328), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11342), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9282), 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(9284), 25, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9754), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -560572,61 +582184,134 @@ 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, + [149266] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11716), 1, + anon_sym_delete, + ACTIONS(11718), 1, + anon_sym_new, + ACTIONS(9601), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9595), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9599), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [148854] = 14, + anon_sym_DOT, + ACTIONS(9597), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [149332] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(10759), 1, anon_sym_LBRACK, - ACTIONS(10797), 1, + ACTIONS(11251), 1, anon_sym_DOT_STAR, - ACTIONS(11047), 1, + ACTIONS(11401), 1, anon_sym_LT_EQ_GT, - STATE(5506), 1, + ACTIONS(11698), 1, + anon_sym_CARET, + ACTIONS(11700), 1, + anon_sym_AMP, + ACTIONS(11706), 1, + anon_sym_GT_EQ, + ACTIONS(11712), 1, + anon_sym_xor, + ACTIONS(11714), 1, + anon_sym_bitand, + STATE(5663), 1, sym_argument_list, - STATE(5507), 1, + STATE(5664), 1, sym_subscript_argument_list, - ACTIONS(10429), 2, + ACTIONS(9707), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(10803), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11061), 2, + ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11326), 2, + ACTIONS(11690), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11346), 2, + ACTIONS(11708), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11328), 3, + ACTIONS(11692), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9282), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11702), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11704), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_EQ, - ACTIONS(9284), 26, + ACTIONS(9709), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -560641,14 +582326,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [148934] = 3, + [149426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9499), 18, + ACTIONS(9856), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -560667,7 +582349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9501), 32, + ACTIONS(9858), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -560700,116 +582382,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [148992] = 12, + [149484] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, + ACTIONS(10435), 1, + anon_sym_EQ, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(10759), 1, anon_sym_LBRACK, - ACTIONS(10797), 1, + ACTIONS(11251), 1, anon_sym_DOT_STAR, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11061), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11326), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11328), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9282), 9, + ACTIONS(11401), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11696), 1, anon_sym_PIPE, + ACTIONS(11698), 1, anon_sym_CARET, + ACTIONS(11700), 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, - ACTIONS(9284), 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, + ACTIONS(11706), 1, 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, + ACTIONS(11710), 1, anon_sym_bitor, + ACTIONS(11712), 1, anon_sym_xor, + ACTIONS(11714), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [149068] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - STATE(5506), 1, + STATE(5663), 1, sym_argument_list, - STATE(5507), 1, + STATE(5664), 1, sym_subscript_argument_list, - ACTIONS(10429), 2, + ACTIONS(10803), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11061), 2, + ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11326), 2, + ACTIONS(11690), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11346), 2, + ACTIONS(11694), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11708), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11328), 3, + ACTIONS(11720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11692), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9282), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11702), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11704), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_EQ, - ACTIONS(9284), 27, + ACTIONS(10437), 15, 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, @@ -560821,18 +582458,11 @@ 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_GT_STAR, - [149146] = 3, + [149586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9582), 20, + ACTIONS(9896), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -560853,7 +582483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9584), 30, + ACTIONS(9898), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -560884,10 +582514,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [149204] = 3, + [149644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9527), 18, + ACTIONS(9689), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -560906,7 +582536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9529), 32, + ACTIONS(9691), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -560939,10 +582569,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [149262] = 3, + [149702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9531), 18, + ACTIONS(9788), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -560952,16 +582582,18 @@ 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(9533), 32, + ACTIONS(9790), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -560969,9 +582601,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -560979,7 +582609,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, @@ -560994,10 +582623,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [149320] = 3, + anon_sym_GT2, + [149760] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9262), 20, + ACTIONS(6983), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(6985), 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(5638), 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_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, + anon_sym_GT2, + ACTIONS(5645), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -561012,21 +582677,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9264), 30, + [149822] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9707), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(9709), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_COLON_RBRACK, + [149894] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, anon_sym_LBRACK, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + ACTIONS(11401), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11700), 1, + anon_sym_AMP, + ACTIONS(11706), 1, + anon_sym_GT_EQ, + ACTIONS(11714), 1, + anon_sym_bitand, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11415), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11690), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11708), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9707), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(11692), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11702), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11704), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 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, @@ -561034,25 +582805,19 @@ 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_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [149378] = 3, + anon_sym_xor, + anon_sym_DASH_GT_STAR, + [149984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9546), 20, + ACTIONS(9732), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -561062,18 +582827,16 @@ 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(9548), 30, + ACTIONS(9734), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -561081,7 +582844,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -561089,6 +582854,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, @@ -561103,11 +582869,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [149436] = 3, + [150042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9515), 18, + ACTIONS(9923), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -561126,7 +582891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9517), 32, + ACTIONS(9925), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -561159,10 +582924,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [149494] = 3, + [150100] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9308), 18, + ACTIONS(6995), 1, + anon_sym_EQ, + ACTIONS(6997), 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(5645), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -561176,12 +582957,11 @@ 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(9310), 32, + ACTIONS(5638), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -561190,22 +582970,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, 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, @@ -561214,10 +582981,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [149552] = 3, + [150162] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9344), 18, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9657), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -561232,21 +583012,15 @@ 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(9342), 32, + ACTIONS(9659), 29, 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -561258,25 +583032,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, - [149610] = 5, + anon_sym_DASH_GT_STAR, + [150232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9229), 1, - anon_sym_LT, - STATE(3275), 1, - sym_template_argument_list, - ACTIONS(9225), 17, + ACTIONS(9812), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -561287,6 +583056,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, @@ -561294,9 +583064,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9227), 31, + ACTIONS(9814), 32, anon_sym_DOT_DOT_DOT, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -561304,6 +583074,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -561326,10 +583097,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [149672] = 3, + [150290] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(11651), 1, + anon_sym_LBRACE, + STATE(5993), 1, + sym_enumerator_list, + STATE(6063), 1, + sym_attribute_specifier, + ACTIONS(7387), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7389), 40, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [150358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9436), 20, + ACTIONS(9800), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -561339,18 +583170,16 @@ 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(9438), 30, + ACTIONS(9802), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -561358,7 +583187,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -561366,6 +583197,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, @@ -561380,15 +583212,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [149730] = 5, + [150416] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9217), 1, + ACTIONS(10538), 1, + anon_sym_EQ, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + ACTIONS(11401), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11696), 1, + anon_sym_PIPE, + ACTIONS(11698), 1, + anon_sym_CARET, + ACTIONS(11700), 1, + anon_sym_AMP, + ACTIONS(11706), 1, + anon_sym_GT_EQ, + ACTIONS(11710), 1, + anon_sym_bitor, + ACTIONS(11712), 1, + anon_sym_xor, + ACTIONS(11714), 1, + anon_sym_bitand, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11415), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11690), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11694), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11708), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11692), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11702), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11704), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10540), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(9219), 1, - anon_sym_RBRACK, - ACTIONS(5260), 18, + 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_DASH_GT_STAR, + [150518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9915), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -561398,23 +583302,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(5253), 30, + ACTIONS(9917), 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_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -561423,7 +583329,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, @@ -561438,10 +583343,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [149792] = 3, + anon_sym_GT2, + [150576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5260), 18, + ACTIONS(9756), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -561460,7 +583366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5253), 32, + ACTIONS(9758), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -561493,50 +583399,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [149850] = 9, + [150634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - anon_sym_EQ, - ACTIONS(5406), 1, - anon_sym_SEMI, - ACTIONS(6515), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8835), 1, - anon_sym_LPAREN2, - ACTIONS(8838), 1, - anon_sym_LBRACK, - ACTIONS(5278), 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(5253), 15, - 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_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, - ACTIONS(5260), 17, + ACTIONS(9907), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -561550,53 +583416,22 @@ 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, - [149920] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11061), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9270), 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(9272), 27, + ACTIONS(9909), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -561608,31 +583443,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_GT_STAR, - [149992] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10797), 1, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10429), 2, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9286), 14, + [150692] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9778), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -561642,20 +583467,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, - ACTIONS(9288), 29, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9780), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -561663,24 +583494,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_STAR, - [150062] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [150750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9472), 20, + ACTIONS(9599), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -561701,7 +583533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9474), 30, + ACTIONS(9597), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -561732,72 +583564,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [150120] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9270), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(9272), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_COLON_RBRACK, - [150192] = 3, + [150808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9371), 20, + ACTIONS(9930), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -561807,18 +583577,16 @@ 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(9373), 30, + ACTIONS(9932), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -561826,7 +583594,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -561834,6 +583604,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, @@ -561848,66 +583619,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [150250] = 3, + [150866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9464), 20, - aux_sym_preproc_elif_token1, + ACTIONS(9822), 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___attribute__, - anon_sym___attribute, - anon_sym_COLON, + 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_identifier, - ACTIONS(9466), 30, + ACTIONS(9824), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - anon_sym_COLON_RBRACK, - [150308] = 3, + [150924] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9515), 20, + ACTIONS(11436), 1, + anon_sym_LBRACK, + STATE(5984), 1, + sym_new_declarator, + ACTIONS(9535), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -561917,26 +583691,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(9517), 30, + anon_sym_DASH_GT, + ACTIONS(9537), 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_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -561944,25 +583716,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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [150366] = 3, + anon_sym_DASH_GT_STAR, + [150986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9248), 18, + ACTIONS(5645), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -561981,7 +583753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9250), 32, + ACTIONS(5638), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -562014,53 +583786,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150424] = 7, + [151044] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6919), 1, - anon_sym_requires, - ACTIONS(6913), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5364), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 11, + ACTIONS(11305), 1, + anon_sym_LPAREN2, + ACTIONS(11307), 1, + anon_sym_LBRACK, + STATE(1989), 1, + sym_parameter_list, + STATE(5586), 1, + sym__function_declarator_seq, + ACTIONS(10206), 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___attribute, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(8089), 32, + anon_sym_DASH_GT, + ACTIONS(10204), 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___attribute__, - anon_sym_RBRACK_RBRACK, - 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, @@ -562071,12 +583844,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [150490] = 3, + anon_sym_DASH_GT_STAR, + [151110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 18, + ACTIONS(9711), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562086,16 +583858,18 @@ 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(9406), 32, + ACTIONS(9713), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -562103,9 +583877,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -562113,7 +583885,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, @@ -562128,10 +583899,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150548] = 3, + anon_sym_GT2, + [151168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9444), 20, + ACTIONS(9685), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562141,18 +583913,16 @@ 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(9446), 30, + ACTIONS(9687), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -562160,7 +583930,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -562168,6 +583940,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, @@ -562182,11 +583955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [150606] = 3, + [151226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 18, + ACTIONS(4930), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562196,16 +583968,18 @@ 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(9406), 32, + ACTIONS(4928), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -562213,9 +583987,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -562223,7 +583995,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, @@ -562238,10 +584009,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150664] = 3, + anon_sym_GT2, + [151284] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 18, + ACTIONS(11724), 1, + anon_sym_COMMA, + ACTIONS(11726), 1, + anon_sym_RBRACK, + ACTIONS(5645), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562260,9 +584036,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9406), 32, + ACTIONS(5638), 30, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -562270,7 +584045,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -562293,10 +584067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150722] = 3, + [151346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 18, + ACTIONS(9626), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562306,16 +584080,18 @@ 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(9406), 32, + ACTIONS(9628), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -562323,9 +584099,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -562333,7 +584107,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, @@ -562348,10 +584121,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150780] = 3, + anon_sym_GT2, + [151404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 18, + ACTIONS(9834), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562370,7 +584144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9406), 32, + ACTIONS(9836), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -562403,10 +584177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150838] = 3, + [151462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9294), 20, + ACTIONS(9892), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562416,18 +584190,16 @@ 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(9296), 30, + ACTIONS(9894), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -562435,7 +584207,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -562443,6 +584217,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, @@ -562457,11 +584232,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [150896] = 3, + [151520] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11731), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(11729), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [151578] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9507), 18, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11415), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9673), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562476,21 +584321,15 @@ 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(9509), 32, + ACTIONS(9675), 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_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -562502,21 +584341,34 @@ 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, - [150954] = 3, + anon_sym_DASH_GT_STAR, + [151650] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 18, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11415), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9677), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562531,21 +584383,15 @@ 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(9406), 32, + ACTIONS(9679), 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_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -562557,37 +584403,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_or, + anon_sym_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, - [151012] = 5, + anon_sym_DASH_GT_STAR, + [151722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6709), 1, - anon_sym_EQ, - ACTIONS(6711), 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(5260), 17, + ACTIONS(9626), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562597,15 +584424,18 @@ 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(5253), 19, + ACTIONS(9628), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -562613,10 +584443,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -562625,10 +584465,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [151074] = 3, + anon_sym_GT2, + [151780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9511), 18, + ACTIONS(9736), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562647,7 +584488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9513), 32, + ACTIONS(9738), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -562680,126 +584521,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [151132] = 3, + [151838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8145), 20, - aux_sym_preproc_elif_token1, + ACTIONS(9772), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(8140), 30, + ACTIONS(9774), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_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_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [151190] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10089), 1, - anon_sym_EQ, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - ACTIONS(11047), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11334), 1, - anon_sym_PIPE, - ACTIONS(11336), 1, - anon_sym_CARET, - ACTIONS(11338), 1, - anon_sym_AMP, - ACTIONS(11344), 1, - anon_sym_GT_EQ, - ACTIONS(11348), 1, - anon_sym_bitor, - ACTIONS(11350), 1, - anon_sym_xor, - ACTIONS(11352), 1, - anon_sym_bitand, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11061), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11326), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11330), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11332), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11346), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11328), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11340), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11342), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10091), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -562807,15 +584561,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_DASH_GT_STAR, - [151292] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + anon_sym_GT2, + [151896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9375), 18, + ACTIONS(9796), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562825,16 +584589,18 @@ 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(9377), 32, + ACTIONS(9798), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -562842,9 +584608,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -562852,7 +584616,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, @@ -562867,10 +584630,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [151350] = 3, + anon_sym_GT2, + [151954] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9424), 18, + ACTIONS(11305), 1, + anon_sym_LPAREN2, + ACTIONS(11307), 1, + anon_sym_LBRACK, + STATE(1989), 1, + sym_parameter_list, + STATE(5586), 1, + sym__function_declarator_seq, + ACTIONS(10190), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562885,21 +584657,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(9426), 32, + anon_sym_DASH_GT, + ACTIONS(10188), 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -562911,21 +584679,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, - [151408] = 3, + anon_sym_DASH_GT_STAR, + [152020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9558), 18, + ACTIONS(9923), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562935,16 +584703,18 @@ 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(9560), 32, + ACTIONS(9925), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -562952,9 +584722,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -562962,7 +584730,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, @@ -562977,10 +584744,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [151466] = 3, + anon_sym_GT2, + [152078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8831), 18, + ACTIONS(9938), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562999,7 +584767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8829), 32, + ACTIONS(9940), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -563032,10 +584800,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [151524] = 3, + [152136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9546), 18, + ACTIONS(9872), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -563045,16 +584813,18 @@ 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(9548), 32, + ACTIONS(9874), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -563062,9 +584832,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -563072,7 +584840,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, @@ -563087,10 +584854,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [151582] = 3, + anon_sym_GT2, + [152194] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9420), 18, + ACTIONS(11305), 1, + anon_sym_LPAREN2, + ACTIONS(11307), 1, + anon_sym_LBRACK, + STATE(1989), 1, + sym_parameter_list, + STATE(5586), 1, + sym__function_declarator_seq, + ACTIONS(10194), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -563105,21 +584881,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(9422), 32, + anon_sym_DASH_GT, + ACTIONS(10192), 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -563131,21 +584903,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, - [151640] = 3, + anon_sym_DASH_GT_STAR, + [152260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9538), 20, + ACTIONS(9697), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -563166,7 +584938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9540), 30, + ACTIONS(9699), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -563197,10 +584969,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [151698] = 3, + [152318] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9468), 20, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11415), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9715), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -563210,26 +584998,20 @@ 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(9470), 30, + ACTIONS(9717), 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_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -563237,25 +585019,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_or, + anon_sym_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, - anon_sym_GT2, - [151756] = 3, + anon_sym_DASH_GT_STAR, + [152390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9416), 18, + ACTIONS(9752), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -563265,16 +585044,18 @@ 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(9418), 32, + ACTIONS(9754), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -563282,9 +585063,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -563292,7 +585071,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, @@ -563307,40 +585085,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [151814] = 4, + anon_sym_GT2, + [152448] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6233), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6235), 16, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + ACTIONS(11401), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11706), 1, + anon_sym_GT_EQ, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11415), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11690), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11708), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11692), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11702), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11704), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9707), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6228), 32, + ACTIONS(9709), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -563352,21 +585149,16 @@ 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, - [151874] = 3, + [152534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9412), 18, + ACTIONS(9834), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -563376,16 +585168,18 @@ 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(9414), 32, + ACTIONS(9836), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -563393,9 +585187,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -563403,7 +585195,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, @@ -563418,10 +585209,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [151932] = 3, + anon_sym_GT2, + [152592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9582), 18, + ACTIONS(9740), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -563431,16 +585223,18 @@ 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(9584), 32, + ACTIONS(9742), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -563448,9 +585242,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -563458,7 +585250,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, @@ -563473,10 +585264,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [151990] = 3, + anon_sym_GT2, + [152650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9424), 20, + ACTIONS(9812), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -563497,7 +585289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9426), 30, + ACTIONS(9814), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -563528,72 +585320,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [152048] = 27, + [152708] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10196), 1, + ACTIONS(9826), 1, anon_sym_EQ, - ACTIONS(10347), 1, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(10759), 1, anon_sym_LBRACK, - ACTIONS(10797), 1, + ACTIONS(11251), 1, anon_sym_DOT_STAR, - ACTIONS(10981), 1, + ACTIONS(11335), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11025), 1, + ACTIONS(11379), 1, anon_sym_QMARK, - ACTIONS(11047), 1, + ACTIONS(11401), 1, anon_sym_LT_EQ_GT, - ACTIONS(11334), 1, + ACTIONS(11696), 1, anon_sym_PIPE, - ACTIONS(11336), 1, + ACTIONS(11698), 1, anon_sym_CARET, - ACTIONS(11338), 1, + ACTIONS(11700), 1, anon_sym_AMP, - ACTIONS(11344), 1, + ACTIONS(11706), 1, anon_sym_GT_EQ, - ACTIONS(11348), 1, + ACTIONS(11710), 1, anon_sym_bitor, - ACTIONS(11350), 1, + ACTIONS(11712), 1, anon_sym_xor, - ACTIONS(11352), 1, + ACTIONS(11714), 1, anon_sym_bitand, - STATE(5506), 1, + STATE(5663), 1, sym_argument_list, - STATE(5507), 1, + STATE(5664), 1, sym_subscript_argument_list, - ACTIONS(10429), 2, + ACTIONS(10803), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11061), 2, + ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11326), 2, + ACTIONS(11690), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11330), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11332), 2, + ACTIONS(11694), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11346), 2, + ACTIONS(11708), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11328), 3, + ACTIONS(11720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11692), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11340), 3, + ACTIONS(11702), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11342), 3, + ACTIONS(11704), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10198), 13, + ACTIONS(9828), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_STAR_EQ, @@ -563607,69 +585399,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_DASH_GT_STAR, - [152154] = 7, + [152814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11361), 1, - anon_sym_delete, - ACTIONS(11363), 1, - anon_sym_new, - ACTIONS(9346), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9340), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9344), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LBRACK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(9342), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [152220] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9456), 20, + ACTIONS(9685), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -563690,7 +585423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9458), 30, + ACTIONS(9687), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -563721,10 +585454,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [152278] = 3, + [152872] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9440), 18, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9681), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(9683), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_COLON_RBRACK, + [152942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9930), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -563734,16 +585528,18 @@ 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(9442), 32, + ACTIONS(9932), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -563751,9 +585547,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -563761,7 +585555,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, @@ -563776,10 +585569,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [152336] = 3, + anon_sym_GT2, + [153000] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9248), 18, + ACTIONS(9544), 1, + anon_sym_COMMA, + ACTIONS(9549), 1, + anon_sym_RBRACK, + ACTIONS(5645), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -563798,9 +585596,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9250), 32, + ACTIONS(5638), 30, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -563808,7 +585605,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -563831,127 +585627,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [152394] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11367), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(11365), 44, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [152452] = 10, + [153062] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(10759), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, + ACTIONS(11251), 1, anon_sym_DOT_STAR, + ACTIONS(11401), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11706), 1, + anon_sym_GT_EQ, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10803), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9244), 18, - aux_sym_preproc_elif_token1, + ACTIONS(11690), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11708), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11692), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(11704), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(9246), 23, + ACTIONS(9707), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(9709), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_COLON_RBRACK, - [152524] = 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_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_GT_STAR, + [153146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9248), 18, + ACTIONS(9919), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -563970,7 +585717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9250), 32, + ACTIONS(9921), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -564003,130 +585750,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [152582] = 10, + [153204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9252), 18, - aux_sym_preproc_elif_token1, + ACTIONS(9818), 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___attribute__, - anon_sym___attribute, + 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, - sym_identifier, - ACTIONS(9254), 23, + anon_sym_DOT, + ACTIONS(9820), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_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_RBRACK_RBRACK, - 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_COLON_RBRACK, - [152654] = 25, + 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, + [153262] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10184), 1, + ACTIONS(10542), 1, anon_sym_EQ, - ACTIONS(10347), 1, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(10759), 1, anon_sym_LBRACK, - ACTIONS(10797), 1, + ACTIONS(11251), 1, anon_sym_DOT_STAR, - ACTIONS(11047), 1, + ACTIONS(11401), 1, anon_sym_LT_EQ_GT, - ACTIONS(11334), 1, + ACTIONS(11696), 1, anon_sym_PIPE, - ACTIONS(11336), 1, + ACTIONS(11698), 1, anon_sym_CARET, - ACTIONS(11338), 1, + ACTIONS(11700), 1, anon_sym_AMP, - ACTIONS(11344), 1, + ACTIONS(11706), 1, anon_sym_GT_EQ, - ACTIONS(11348), 1, + ACTIONS(11710), 1, anon_sym_bitor, - ACTIONS(11350), 1, + ACTIONS(11712), 1, anon_sym_xor, - ACTIONS(11352), 1, + ACTIONS(11714), 1, anon_sym_bitand, - STATE(5506), 1, + STATE(5663), 1, sym_argument_list, - STATE(5507), 1, + STATE(5664), 1, sym_subscript_argument_list, - ACTIONS(10429), 2, + ACTIONS(10803), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11061), 2, + ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11326), 2, + ACTIONS(11690), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11330), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11332), 2, + ACTIONS(11694), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11346), 2, + ACTIONS(11708), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11328), 3, + ACTIONS(11720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11692), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11340), 3, + ACTIONS(11702), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11342), 3, + ACTIONS(11704), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10186), 15, + ACTIONS(10544), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -564142,18 +585882,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_DASH_GT_STAR, - [152756] = 7, + [153364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10806), 1, - anon_sym_LPAREN2, - ACTIONS(10808), 1, - anon_sym_LBRACK, - STATE(1888), 1, - sym_parameter_list, - STATE(5493), 1, - sym__function_declarator_seq, - ACTIONS(9840), 16, + ACTIONS(9768), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -564163,22 +585895,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(9838), 30, + ACTIONS(9770), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -564186,25 +585922,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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [152822] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [153422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9428), 20, + ACTIONS(9872), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -564214,18 +585950,16 @@ 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(9430), 30, + ACTIONS(9874), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -564233,7 +585967,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -564241,6 +585977,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, @@ -564255,19 +585992,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [152880] = 7, + [153480] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10806), 1, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(10808), 1, + ACTIONS(10759), 1, anon_sym_LBRACK, - STATE(1888), 1, - sym_parameter_list, - STATE(5493), 1, - sym__function_declarator_seq, - ACTIONS(9844), 16, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9681), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -564282,9 +586023,7 @@ 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(9842), 30, + ACTIONS(9683), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -564313,23 +586052,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, - [152946] = 7, + [153550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8824), 1, - anon_sym_requires, - ACTIONS(8821), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5258), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 11, + ACTIONS(8665), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -564338,13 +586065,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym___attribute, - 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(7544), 32, + sym_identifier, + sym_literal_suffix, + ACTIONS(8667), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -564357,27 +586091,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACK_RBRACK, - 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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [153012] = 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, + [153608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9371), 18, + ACTIONS(5645), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -564396,7 +586130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9373), 32, + ACTIONS(5638), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -564429,120 +586163,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [153070] = 3, + [153666] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9480), 20, - aux_sym_preproc_elif_token1, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + ACTIONS(11401), 1, + anon_sym_LT_EQ_GT, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11415), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11690), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11708), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11692), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(9707), 7, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_EQ, + ACTIONS(9709), 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_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, - sym_identifier, - ACTIONS(9482), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_DASH_GT_STAR, + [153746] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6605), 1, + anon_sym_LBRACK, + ACTIONS(6598), 2, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(6601), 6, + 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [153128] = 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(6594), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [153808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9358), 20, - aux_sym_preproc_elif_token1, + ACTIONS(5645), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9360), 30, + ACTIONS(5638), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_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, - anon_sym_COLON_RBRACK, - [153186] = 3, + anon_sym_GT2, + [153866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9432), 20, + ACTIONS(9934), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -564552,18 +586354,16 @@ 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(9434), 30, + ACTIONS(9936), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -564571,7 +586371,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -564579,6 +586381,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, @@ -564593,54 +586396,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [153244] = 7, + [153924] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8977), 1, - anon_sym_requires, - ACTIONS(8974), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5305), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 11, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11415), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11690), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11692), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(9707), 9, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(7627), 32, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(9709), 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___attribute__, - anon_sym_RBRACK_RBRACK, - 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, @@ -564648,55 +586459,75 @@ 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [153310] = 10, + anon_sym_DASH_GT_STAR, + [154000] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, + ACTIONS(10489), 1, + anon_sym_EQ, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(10759), 1, anon_sym_LBRACK, - ACTIONS(10797), 1, + ACTIONS(11251), 1, anon_sym_DOT_STAR, - STATE(5506), 1, + ACTIONS(11335), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11379), 1, + anon_sym_QMARK, + ACTIONS(11401), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11696), 1, + anon_sym_PIPE, + ACTIONS(11698), 1, + anon_sym_CARET, + ACTIONS(11700), 1, + anon_sym_AMP, + ACTIONS(11706), 1, + anon_sym_GT_EQ, + ACTIONS(11710), 1, + anon_sym_bitor, + ACTIONS(11712), 1, + anon_sym_xor, + ACTIONS(11714), 1, + anon_sym_bitand, + STATE(5663), 1, sym_argument_list, - STATE(5507), 1, + STATE(5664), 1, sym_subscript_argument_list, - ACTIONS(10429), 2, + ACTIONS(10803), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11061), 2, + ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9244), 14, + ACTIONS(11690), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11694), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11708), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11692), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11702), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11704), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(9246), 27, - anon_sym_DOT_DOT_DOT, + ACTIONS(10491), 13, 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, @@ -564707,18 +586538,11 @@ 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_GT_STAR, - [153382] = 3, + [154106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9262), 18, + ACTIONS(9778), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -564737,7 +586561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9264), 32, + ACTIONS(9780), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -564770,49 +586594,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [153440] = 10, + [154164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9938), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + 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_identifier, + ACTIONS(9940), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [154222] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, + ACTIONS(9599), 1, + anon_sym_EQ, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(10759), 1, anon_sym_LBRACK, - ACTIONS(10797), 1, + ACTIONS(11251), 1, anon_sym_DOT_STAR, - STATE(5506), 1, + ACTIONS(11401), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11696), 1, + anon_sym_PIPE, + ACTIONS(11698), 1, + anon_sym_CARET, + ACTIONS(11700), 1, + anon_sym_AMP, + ACTIONS(11706), 1, + anon_sym_GT_EQ, + ACTIONS(11710), 1, + anon_sym_bitor, + ACTIONS(11712), 1, + anon_sym_xor, + ACTIONS(11714), 1, + anon_sym_bitand, + STATE(5663), 1, sym_argument_list, - STATE(5507), 1, + STATE(5664), 1, sym_subscript_argument_list, - ACTIONS(10429), 2, + ACTIONS(10803), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11061), 2, + ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9252), 14, + ACTIONS(11690), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11694), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11708), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11692), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11702), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11704), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(9254), 27, + ACTIONS(9597), 15, 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, @@ -564824,18 +586725,11 @@ 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_GT_STAR, - [153512] = 3, + [154324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 20, + ACTIONS(9942), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -564845,18 +586739,16 @@ 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(9306), 30, + ACTIONS(9944), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -564864,7 +586756,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -564872,6 +586766,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, @@ -564886,11 +586781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [153570] = 3, + [154382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9523), 20, + ACTIONS(9888), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -564911,7 +586805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9525), 30, + ACTIONS(9890), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -564942,10 +586836,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [153628] = 3, + [154440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9480), 20, + ACTIONS(9630), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -564955,18 +586849,16 @@ 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(9482), 30, + ACTIONS(9632), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -564974,7 +586866,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -564982,6 +586876,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, @@ -564996,158 +586891,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [153686] = 7, + [154498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6919), 1, - anon_sym_requires, - ACTIONS(6913), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5305), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 11, + ACTIONS(9760), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(7627), 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___attribute__, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [153752] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9733), 1, - anon_sym_requires, - ACTIONS(9730), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5364), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 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___attribute, - anon_sym_COLON, anon_sym_DOT, - ACTIONS(8089), 32, + ACTIONS(9762), 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___attribute__, - anon_sym_RBRACK_RBRACK, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [153818] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6615), 1, - anon_sym_EQ, - ACTIONS(9146), 1, - anon_sym_COMMA, - ACTIONS(9148), 1, - anon_sym_RBRACK, - ACTIONS(6617), 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(5253), 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -565156,39 +586945,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(5260), 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, - [153884] = 7, + anon_sym_GT2, + [154556] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11372), 1, - anon_sym_requires, - ACTIONS(11369), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5373), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 11, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9657), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -565197,14 +586972,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(8543), 32, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(9659), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -565216,27 +587000,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACK_RBRACK, 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_DOT_STAR, - anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [153950] = 3, + [154626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9456), 18, + ACTIONS(9946), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -565255,7 +587029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9458), 32, + ACTIONS(9948), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -565288,53 +587062,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [154008] = 7, + [154684] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11378), 1, - anon_sym_requires, - ACTIONS(11375), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5381), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8559), 11, + ACTIONS(11305), 1, + anon_sym_LPAREN2, + ACTIONS(11307), 1, + anon_sym_LBRACK, + STATE(1989), 1, + sym_parameter_list, + STATE(5586), 1, + sym__function_declarator_seq, + ACTIONS(10198), 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___attribute, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(8561), 32, + anon_sym_DASH_GT, + ACTIONS(10196), 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___attribute__, - anon_sym_RBRACK_RBRACK, - 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, @@ -565345,12 +587120,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [154074] = 3, + anon_sym_DASH_GT_STAR, + [154750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9550), 18, + ACTIONS(9693), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -565369,7 +587143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9552), 32, + ACTIONS(9695), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -565402,10 +587176,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [154132] = 3, + [154808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9574), 18, + ACTIONS(9760), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -565415,16 +587189,18 @@ 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(9576), 32, + ACTIONS(9762), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -565432,9 +587208,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -565442,7 +587216,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, @@ -565457,77 +587230,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [154190] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6919), 1, - anon_sym_requires, - ACTIONS(6913), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5258), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 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___attribute, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(7544), 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___attribute__, - anon_sym_RBRACK_RBRACK, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [154256] = 7, + anon_sym_GT2, + [154866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10806), 1, - anon_sym_LPAREN2, - ACTIONS(10808), 1, - anon_sym_LBRACK, - STATE(1888), 1, - sym_parameter_list, - STATE(5493), 1, - sym__function_declarator_seq, - ACTIONS(9852), 16, + ACTIONS(9626), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -565537,22 +587244,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(9850), 30, + ACTIONS(9628), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -565560,25 +587271,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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [154322] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [154924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9523), 18, + ACTIONS(9860), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -565597,7 +587308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9525), 32, + ACTIONS(9862), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -565630,10 +587341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [154380] = 3, + [154982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9464), 18, + ACTIONS(9697), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -565652,7 +587363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9466), 32, + ACTIONS(9699), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -565685,18 +587396,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [154438] = 7, + [155040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10806), 1, - anon_sym_LPAREN2, - ACTIONS(10808), 1, - anon_sym_LBRACK, - STATE(1888), 1, - sym_parameter_list, - STATE(5493), 1, - sym__function_declarator_seq, - ACTIONS(9856), 16, + ACTIONS(9760), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -565706,22 +587409,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(9854), 30, + ACTIONS(9762), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -565729,85 +587436,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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [154504] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(11294), 1, - anon_sym_LBRACE, - STATE(5830), 1, - sym_enumerator_list, - STATE(5984), 1, - sym_attribute_specifier, - ACTIONS(7011), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7013), 40, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [154572] = 3, + [155098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 20, + ACTIONS(9946), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -565828,7 +587475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9564), 30, + ACTIONS(9948), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -565859,10 +587506,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [154630] = 3, + [155156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 18, + ACTIONS(9938), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -565872,16 +587519,18 @@ 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(9306), 32, + ACTIONS(9940), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -565889,9 +587538,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -565899,7 +587546,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, @@ -565914,65 +587560,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [154688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8446), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_literal_suffix, - ACTIONS(8448), 31, - 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_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - 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, - [154746] = 3, + anon_sym_GT2, + [155214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9503), 20, + ACTIONS(9748), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -565982,18 +587574,16 @@ 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(9505), 30, + ACTIONS(9750), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -566001,7 +587591,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -566009,6 +587601,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, @@ -566023,11 +587616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [154804] = 3, + [155272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9294), 18, + ACTIONS(9760), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -566037,16 +587629,18 @@ 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(9296), 32, + ACTIONS(9762), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -566054,9 +587648,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -566064,7 +587656,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, @@ -566079,144 +587670,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [154862] = 3, + anon_sym_GT2, + [155330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9566), 18, + ACTIONS(9703), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + 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(9568), 32, + sym_identifier, + ACTIONS(9705), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_DOT_STAR, anon_sym_DASH_GT, - [154920] = 27, + anon_sym_COLON_RBRACK, + [155388] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10188), 1, - anon_sym_EQ, - ACTIONS(10347), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - ACTIONS(10981), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11025), 1, - anon_sym_QMARK, - ACTIONS(11047), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11334), 1, - anon_sym_PIPE, - ACTIONS(11336), 1, - anon_sym_CARET, - ACTIONS(11338), 1, - anon_sym_AMP, - ACTIONS(11344), 1, - anon_sym_GT_EQ, - ACTIONS(11348), 1, - anon_sym_bitor, - ACTIONS(11350), 1, - anon_sym_xor, - ACTIONS(11352), 1, - anon_sym_bitand, - STATE(5506), 1, + ACTIONS(9646), 1, + anon_sym_DOT, + STATE(3874), 1, sym_argument_list, - STATE(5507), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10429), 2, - anon_sym_DOT, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11061), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11326), 2, + ACTIONS(9673), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11330), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11332), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11346), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11328), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11340), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11342), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10190), 13, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(9675), 23, + anon_sym_DOT_DOT_DOT, 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_DASH_GT_STAR, - [155026] = 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_COLON_RBRACK, + [155460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8454), 19, + ACTIONS(8750), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -566236,7 +587811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_identifier, sym_literal_suffix, - ACTIONS(8456), 31, + ACTIONS(8752), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -566268,10 +587843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [155084] = 3, + [155518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9570), 18, + ACTIONS(9764), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -566290,7 +587865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9572), 32, + ACTIONS(9766), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -566323,10 +587898,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [155142] = 3, + [155576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 18, + ACTIONS(9760), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -566345,7 +587920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4568), 32, + ACTIONS(9762), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -566378,227 +587953,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [155200] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6919), 1, - anon_sym_requires, - ACTIONS(6913), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5373), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 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___attribute, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(8543), 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___attribute__, - anon_sym_RBRACK_RBRACK, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [155266] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5301), 1, - anon_sym_LPAREN2, - ACTIONS(5311), 1, - anon_sym_LBRACK, - ACTIONS(8195), 1, - sym_identifier, - ACTIONS(8197), 1, - anon_sym_STAR, - ACTIONS(8199), 1, - anon_sym_AMP_AMP, - ACTIONS(8201), 1, - anon_sym_AMP, - ACTIONS(8203), 1, - anon_sym_COLON_COLON, - ACTIONS(11155), 1, - anon_sym_DOT_DOT_DOT, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4820), 1, - sym_parameter_list, - STATE(7878), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8689), 1, - sym__declarator, - STATE(8839), 1, - sym__abstract_declarator, - STATE(9787), 1, - sym_variadic_declarator, - STATE(10656), 1, - sym_ms_based_modifier, - ACTIONS(9074), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(9072), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT2, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - [155376] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10176), 1, - anon_sym_EQ, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - ACTIONS(11047), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11334), 1, - anon_sym_PIPE, - ACTIONS(11336), 1, - anon_sym_CARET, - ACTIONS(11338), 1, - anon_sym_AMP, - ACTIONS(11344), 1, - anon_sym_GT_EQ, - ACTIONS(11348), 1, - anon_sym_bitor, - ACTIONS(11350), 1, - anon_sym_xor, - ACTIONS(11352), 1, - anon_sym_bitand, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11061), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11326), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11330), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11332), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11346), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11328), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11340), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11342), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10178), 15, - 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_DASH_GT_STAR, - [155478] = 3, + [155634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9527), 20, + ACTIONS(9224), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -566619,7 +587977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9529), 30, + ACTIONS(9222), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -566650,10 +588008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [155536] = 3, + [155692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9531), 20, + ACTIONS(9760), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -566663,18 +588021,16 @@ 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(9533), 30, + ACTIONS(9762), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -566682,7 +588038,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -566690,6 +588048,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, @@ -566704,66 +588063,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [155594] = 3, + [155750] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9436), 18, + ACTIONS(7221), 1, + anon_sym_requires, + ACTIONS(7219), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 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___attribute, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(9438), 32, + ACTIONS(8422), 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___attribute__, + anon_sym_RBRACK_RBRACK, + 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_STAR, anon_sym_DASH_GT, - [155652] = 3, + anon_sym_COLON_RBRACK, + [155816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9519), 18, + ACTIONS(9760), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -566782,7 +588144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9521), 32, + ACTIONS(9762), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -566815,10 +588177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [155710] = 3, + [155874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9566), 20, + ACTIONS(9760), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -566828,18 +588190,16 @@ 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(9568), 30, + ACTIONS(9762), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -566847,7 +588207,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -566855,6 +588217,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, @@ -566869,149 +588232,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [155768] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9286), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(9288), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_COLON_RBRACK, - [155838] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10123), 1, - anon_sym_EQ, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - ACTIONS(11047), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11334), 1, - anon_sym_PIPE, - ACTIONS(11336), 1, - anon_sym_CARET, - ACTIONS(11338), 1, - anon_sym_AMP, - ACTIONS(11344), 1, - anon_sym_GT_EQ, - ACTIONS(11348), 1, - anon_sym_bitor, - ACTIONS(11350), 1, - anon_sym_xor, - ACTIONS(11352), 1, - anon_sym_bitand, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11061), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11326), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11330), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11332), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11346), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11328), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11340), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11342), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10125), 15, - 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_DASH_GT_STAR, - [155940] = 3, + [155932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9428), 18, + ACTIONS(9760), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -567030,7 +588254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9430), 32, + ACTIONS(9762), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -567063,10 +588287,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [155998] = 3, + [155990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8831), 20, + ACTIONS(9760), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -567087,7 +588311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8829), 30, + ACTIONS(9762), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -567118,10 +588342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [156056] = 3, + [156048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9391), 20, + ACTIONS(9800), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -567142,7 +588366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9393), 30, + ACTIONS(9802), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -567173,10 +588397,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [156114] = 3, + [156106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9344), 20, + ACTIONS(9760), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -567186,18 +588410,16 @@ 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(9342), 30, + ACTIONS(9762), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -567205,7 +588427,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -567213,6 +588437,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, @@ -567227,11 +588452,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [156172] = 3, + [156164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9278), 18, + ACTIONS(9900), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -567250,7 +588474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9280), 32, + ACTIONS(9902), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -567283,98 +588507,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [156230] = 7, + [156222] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6919), 1, - anon_sym_requires, - ACTIONS(6913), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5381), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8559), 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___attribute, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(8561), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10473), 1, + anon_sym_EQ, + ACTIONS(10687), 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___attribute__, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + ACTIONS(10759), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + ACTIONS(11401), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(11696), 1, + anon_sym_PIPE, + ACTIONS(11698), 1, + anon_sym_CARET, + ACTIONS(11700), 1, + anon_sym_AMP, + ACTIONS(11706), 1, + anon_sym_GT_EQ, + ACTIONS(11710), 1, anon_sym_bitor, + ACTIONS(11712), 1, anon_sym_xor, + ACTIONS(11714), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [156296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9408), 18, + ACTIONS(11690), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11694), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11708), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11692), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11702), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11704), 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(9410), 32, + ACTIONS(10475), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -567386,105 +588583,72 @@ 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, - [156354] = 3, + anon_sym_DASH_GT_STAR, + [156324] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9472), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10485), 1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9474), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10687), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(10759), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + ACTIONS(11401), 1, anon_sym_LT_EQ_GT, + ACTIONS(11696), 1, + anon_sym_PIPE, + ACTIONS(11698), 1, + anon_sym_CARET, + ACTIONS(11700), 1, + anon_sym_AMP, + ACTIONS(11706), 1, + anon_sym_GT_EQ, + ACTIONS(11710), 1, anon_sym_bitor, + ACTIONS(11712), 1, + anon_sym_xor, + ACTIONS(11714), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [156412] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9578), 18, + ACTIONS(11690), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11694), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11708), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11692), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11702), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11704), 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(9580), 32, + ACTIONS(10487), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -567496,21 +588660,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_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [156470] = 3, + anon_sym_DASH_GT_STAR, + [156426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9476), 20, + ACTIONS(9911), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -567531,7 +588685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9478), 30, + ACTIONS(9913), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -567562,10 +588716,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [156528] = 3, + [156484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9472), 18, + ACTIONS(9804), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -567584,7 +588738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9474), 32, + ACTIONS(9806), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -567617,71 +588771,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [156586] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9290), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(9292), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_COLON_RBRACK, - [156656] = 3, + [156542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 20, + ACTIONS(9736), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -567702,7 +588795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4568), 30, + ACTIONS(9738), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -567733,10 +588826,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [156714] = 3, + [156600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9476), 18, + ACTIONS(8598), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -567755,7 +588848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9478), 32, + ACTIONS(3488), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -567788,10 +588881,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [156772] = 3, + [156658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9519), 20, + ACTIONS(9760), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -567812,7 +588905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9521), 30, + ACTIONS(9762), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -567843,35 +588936,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [156830] = 7, + [156716] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10806), 1, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(10808), 1, + ACTIONS(10759), 1, anon_sym_LBRACK, - STATE(1888), 1, - sym_parameter_list, - STATE(5493), 1, - sym__function_declarator_seq, - ACTIONS(9860), 16, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11415), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11690), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11708), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11692), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9707), 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_DOT, - anon_sym_DASH_GT, - ACTIONS(9858), 30, + ACTIONS(9709), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -567898,14 +589000,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_DOT_STAR, anon_sym_DASH_GT_STAR, - [156896] = 3, + [156794] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9554), 20, + ACTIONS(7044), 1, + anon_sym_EQ, + ACTIONS(9539), 1, + anon_sym_COMMA, + ACTIONS(9541), 1, + anon_sym_RBRACK, + ACTIONS(7046), 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(5638), 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_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, + ACTIONS(5645), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -567915,39 +589052,49 @@ 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(9556), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + [156860] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5661), 1, + anon_sym_EQ, + ACTIONS(5906), 1, + anon_sym_SEMI, + ACTIONS(6883), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9236), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(9239), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(5663), 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(5638), 15, + 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -567956,11 +589103,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [156954] = 3, + ACTIONS(5645), 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, + [156930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 20, + ACTIONS(9800), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -567970,18 +589134,16 @@ 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(9406), 30, + ACTIONS(9802), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -567989,7 +589151,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -567997,6 +589161,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, @@ -568011,11 +589176,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [157012] = 3, + [156988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 20, + ACTIONS(9860), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -568036,7 +589200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9406), 30, + ACTIONS(9862), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -568067,10 +589231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [157070] = 3, + [157046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 18, + ACTIONS(9711), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -568089,7 +589253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9564), 32, + ACTIONS(9713), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -568122,11 +589286,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [157128] = 3, + [157104] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9452), 20, - aux_sym_preproc_elif_token1, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(11651), 1, + anon_sym_LBRACE, + STATE(5975), 1, + sym_enumerator_list, + STATE(6127), 1, + sym_attribute_specifier, + ACTIONS(7381), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7383), 40, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [157172] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8657), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -568137,7 +589360,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -568146,14 +589368,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9454), 30, + sym_literal_suffix, + ACTIONS(8659), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -568166,21 +589384,27 @@ static const uint16_t ts_small_parse_table[] = { 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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [157186] = 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, + [157230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 20, + ACTIONS(9942), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -568201,7 +589425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9406), 30, + ACTIONS(9944), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -568232,27 +589456,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [157244] = 10, + [157288] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9282), 18, - aux_sym_preproc_elif_token1, + ACTIONS(7221), 1, + anon_sym_requires, + ACTIONS(7219), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5532), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -568261,23 +589479,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(9284), 23, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(7966), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -568289,15 +589498,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_RBRACK_RBRACK, 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_DOT_STAR, + anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [157316] = 3, + [157354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 20, + ACTIONS(9224), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -568307,18 +589528,16 @@ 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(9406), 30, + ACTIONS(9222), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -568326,7 +589545,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -568334,6 +589555,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, @@ -568348,19 +589570,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [157374] = 7, + [157412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10806), 1, - anon_sym_LPAREN2, - ACTIONS(10808), 1, - anon_sym_LBRACK, - STATE(1888), 1, - sym_parameter_list, - STATE(5493), 1, - sym__function_declarator_seq, - ACTIONS(9848), 16, + ACTIONS(9772), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -568375,17 +589588,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(9846), 30, + ACTIONS(9774), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -568397,21 +589614,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, - [157440] = 3, + anon_sym_DASH_GT, + [157470] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5260), 20, + ACTIONS(9654), 1, + anon_sym_LT, + STATE(3376), 1, + sym_template_argument_list, + ACTIONS(9650), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -568421,25 +589642,23 @@ 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(5253), 30, + ACTIONS(9652), 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, @@ -568448,6 +589667,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, @@ -568462,48 +589682,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [157498] = 9, + [157532] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10347), 1, + ACTIONS(5661), 1, + anon_sym_EQ, + ACTIONS(5800), 1, + anon_sym_SEMI, + ACTIONS(6883), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9236), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(9239), 1, anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9290), 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(9292), 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_QMARK, + ACTIONS(5663), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -568514,20 +589706,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, + ACTIONS(5638), 15, + 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_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT_STAR, - [157568] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9550), 20, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5645), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -568537,81 +589735,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9552), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + [157602] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10687), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(10759), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(11251), 1, anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10803), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_GT2, - [157626] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9574), 20, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11415), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11692), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9707), 11, + 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, - anon_sym_DOT, - ACTIONS(9576), 30, + ACTIONS(9709), 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_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -568619,25 +589794,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_or, + anon_sym_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, - anon_sym_GT2, - [157684] = 3, + anon_sym_DASH_GT_STAR, + [157676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 20, + ACTIONS(9808), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -568658,7 +589830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9406), 30, + ACTIONS(9810), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -568689,10 +589861,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [157742] = 3, + [157734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9464), 20, + ACTIONS(9830), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -568713,7 +589885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9466), 30, + ACTIONS(9832), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -568744,12 +589916,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [157800] = 4, + [157792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(5260), 20, + ACTIONS(8598), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -568770,7 +589940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5253), 29, + ACTIONS(3488), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -568790,9 +589960,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, @@ -568800,10 +589971,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [157860] = 3, + [157850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9432), 18, + ACTIONS(9876), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -568813,16 +589984,18 @@ 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(9434), 32, + ACTIONS(9878), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -568830,9 +590003,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -568840,7 +590011,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, @@ -568855,71 +590025,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [157918] = 25, + anon_sym_GT2, + [157908] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(10192), 1, - anon_sym_EQ, - ACTIONS(10347), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5617), 1, anon_sym_LPAREN2, - ACTIONS(10385), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - ACTIONS(11047), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11334), 1, - anon_sym_PIPE, - ACTIONS(11336), 1, - anon_sym_CARET, - ACTIONS(11338), 1, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8548), 1, + anon_sym_STAR, + ACTIONS(8550), 1, + anon_sym_AMP_AMP, + ACTIONS(8552), 1, anon_sym_AMP, - ACTIONS(11344), 1, - anon_sym_GT_EQ, - ACTIONS(11348), 1, - anon_sym_bitor, - ACTIONS(11350), 1, - anon_sym_xor, - ACTIONS(11352), 1, - anon_sym_bitand, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11061), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11326), 2, + ACTIONS(8554), 1, + anon_sym_COLON_COLON, + ACTIONS(11547), 1, + anon_sym_DOT_DOT_DOT, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4779), 1, + sym_parameter_list, + STATE(7990), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8788), 1, + sym__declarator, + STATE(8974), 1, + sym__abstract_declarator, + STATE(10167), 1, + sym_variadic_declarator, + STATE(10837), 1, + sym_ms_based_modifier, + ACTIONS(9429), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(9427), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + [158018] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11305), 1, + anon_sym_LPAREN2, + ACTIONS(11307), 1, + anon_sym_LBRACK, + STATE(1989), 1, + sym_parameter_list, + STATE(5586), 1, + sym__function_declarator_seq, + ACTIONS(10186), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11330), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11332), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11346), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11328), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11340), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11342), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10194), 15, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10184), 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, @@ -568931,12 +590155,32 @@ 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, - [158020] = 3, + [158084] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8208), 20, - aux_sym_preproc_elif_token1, + ACTIONS(9219), 1, + anon_sym_requires, + ACTIONS(9216), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5460), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -568945,25 +590189,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, anon_sym___attribute, 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_identifier, - ACTIONS(3888), 30, + ACTIONS(7791), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -568976,21 +590208,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, 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_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [158078] = 3, + [158150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9440), 20, + ACTIONS(9804), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -569011,7 +590249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9442), 30, + ACTIONS(9806), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -569042,13 +590280,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [158136] = 5, + [158208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6690), 2, + ACTIONS(9748), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, - ACTIONS(6692), 12, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9750), 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_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -569061,16 +590326,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(5253), 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_LBRACK, - anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -569080,7 +590335,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(5260), 18, + [158266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9764), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -569095,14 +590353,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - [158198] = 3, + ACTIONS(9766), 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_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + anon_sym_GT2, + [158324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 20, + ACTIONS(9630), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -569123,7 +590414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9406), 30, + ACTIONS(9632), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -569154,10 +590445,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [158256] = 3, + [158382] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8382), 19, + ACTIONS(9293), 1, + anon_sym_requires, + ACTIONS(9290), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5532), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -569166,20 +590468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_COLON, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(8384), 31, + ACTIONS(7966), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -569192,27 +590487,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + 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_DOT_STAR, 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, - [158314] = 3, + anon_sym_COLON_RBRACK, + [158448] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9379), 20, + ACTIONS(7056), 1, + anon_sym_EQ, + ACTIONS(7058), 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(5645), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -569222,18 +590533,57 @@ 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_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5638), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_COLON, + 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, + [158510] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9888), 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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9381), 30, + ACTIONS(9890), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -569241,7 +590591,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -569249,6 +590601,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, @@ -569263,11 +590616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [158372] = 3, + [158568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9542), 20, + ACTIONS(9826), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -569277,18 +590629,71 @@ 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, + anon_sym_DOT, + ACTIONS(9828), 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_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_DOT_STAR, + anon_sym_DASH_GT, + [158626] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9876), 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(9544), 30, + ACTIONS(9878), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -569296,7 +590701,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -569304,6 +590711,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, @@ -569318,11 +590726,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [158430] = 3, + [158684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8400), 19, + ACTIONS(8564), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -569333,6 +590741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -569341,10 +590750,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(8402), 31, + ACTIONS(8559), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -569357,6 +590770,9 @@ 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -569364,20 +590780,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, 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, - [158488] = 3, + anon_sym_COLON_RBRACK, + [158742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9570), 20, + ACTIONS(9796), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -569387,18 +590794,16 @@ 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(9572), 30, + ACTIONS(9798), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -569406,7 +590811,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -569414,6 +590821,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, @@ -569428,75 +590836,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [158546] = 27, + [158800] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9436), 1, + ACTIONS(7044), 1, anon_sym_EQ, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - ACTIONS(10385), 1, - anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_DOT_STAR, - ACTIONS(10981), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11025), 1, - anon_sym_QMARK, - ACTIONS(11047), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11334), 1, - anon_sym_PIPE, - ACTIONS(11336), 1, - anon_sym_CARET, - ACTIONS(11338), 1, - anon_sym_AMP, - ACTIONS(11344), 1, - anon_sym_GT_EQ, - ACTIONS(11348), 1, - anon_sym_bitor, - ACTIONS(11350), 1, - anon_sym_xor, - ACTIONS(11352), 1, - anon_sym_bitand, - STATE(5506), 1, - sym_argument_list, - STATE(5507), 1, - sym_subscript_argument_list, - ACTIONS(10429), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11061), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11326), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11330), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11332), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11346), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11328), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11340), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11342), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9438), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7046), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -569507,11 +590852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_GT_STAR, - [158652] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9408), 20, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(5645), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -569521,18 +590865,15 @@ 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(9410), 30, + ACTIONS(5638), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -569540,20 +590881,10 @@ static const uint16_t ts_small_parse_table[] = { 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -569562,71 +590893,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [158710] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(11294), 1, - anon_sym_LBRACE, - STATE(5859), 1, - sym_enumerator_list, - STATE(5931), 1, - sym_attribute_specifier, - ACTIONS(6985), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6987), 40, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [158778] = 3, + [158862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9308), 20, + ACTIONS(9689), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -569647,7 +590917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9310), 30, + ACTIONS(9691), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -569678,111 +590948,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [158836] = 5, + [158920] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6702), 1, - anon_sym_EQ, - ACTIONS(6704), 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(5260), 17, + ACTIONS(10169), 1, + anon_sym_requires, + ACTIONS(10166), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym___attribute, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(5253), 19, + ACTIONS(8422), 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_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + 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_DOT_STAR, anon_sym_DASH_GT, - [158898] = 7, + anon_sym_COLON_RBRACK, + [158986] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10806), 1, - anon_sym_LPAREN2, - ACTIONS(10808), 1, - anon_sym_LBRACK, - STATE(1888), 1, - sym_parameter_list, - STATE(5493), 1, - sym__function_declarator_seq, - ACTIONS(9864), 16, + ACTIONS(11736), 1, + anon_sym_requires, + ACTIONS(11733), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5300), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 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___attribute, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9862), 30, + ACTIONS(8907), 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___attribute__, + anon_sym_RBRACK_RBRACK, + 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, @@ -569793,11 +591064,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [158964] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [159052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9472), 18, + ACTIONS(9880), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -569816,7 +591088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9474), 32, + ACTIONS(9882), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -569849,10 +591121,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [159022] = 3, + [159110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9248), 20, + ACTIONS(9880), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -569873,7 +591145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9250), 30, + ACTIONS(9882), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -569904,120 +591176,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [159080] = 3, + [159168] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9507), 20, + ACTIONS(11742), 1, + anon_sym_requires, + ACTIONS(11739), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5352), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8913), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym___attribute, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(9509), 30, + ACTIONS(8915), 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_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + 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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [159138] = 3, + anon_sym_COLON_RBRACK, + [159234] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9511), 20, + ACTIONS(7221), 1, + anon_sym_requires, + ACTIONS(7219), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5460), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym___attribute, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(9513), 30, + ACTIONS(7791), 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___attribute__, + anon_sym_RBRACK_RBRACK, + 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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [159196] = 3, + anon_sym_COLON_RBRACK, + [159300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9248), 20, + ACTIONS(9808), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570027,18 +591307,16 @@ 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(9250), 30, + ACTIONS(9810), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -570046,7 +591324,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -570054,6 +591334,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, @@ -570068,19 +591349,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [159254] = 7, + [159358] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10806), 1, + ACTIONS(10687), 1, anon_sym_LPAREN2, - ACTIONS(10808), 1, + ACTIONS(10759), 1, anon_sym_LBRACK, - STATE(1888), 1, - sym_parameter_list, - STATE(5493), 1, - sym__function_declarator_seq, - ACTIONS(9834), 16, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11415), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9707), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570095,9 +591383,7 @@ 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(9832), 30, + ACTIONS(9709), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -570124,14 +591410,11 @@ 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_DOT_STAR, anon_sym_DASH_GT_STAR, - [159320] = 3, + [159430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9448), 18, + ACTIONS(9830), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570150,7 +591433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9450), 32, + ACTIONS(9832), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -570183,10 +591466,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [159378] = 3, + [159488] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9375), 20, + ACTIONS(6601), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6603), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570196,25 +591482,23 @@ 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(9377), 30, + anon_sym_DASH_GT, + ACTIONS(6596), 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, @@ -570223,25 +591507,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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [159436] = 3, + anon_sym_DASH_GT_STAR, + [159548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9558), 20, + ACTIONS(9864), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570262,7 +591546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9560), 30, + ACTIONS(9866), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -570293,10 +591577,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [159494] = 3, + [159606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9266), 18, + ACTIONS(9884), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570306,16 +591590,18 @@ 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(9268), 32, + ACTIONS(9886), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -570323,9 +591609,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -570333,7 +591617,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, @@ -570348,10 +591631,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [159552] = 3, + anon_sym_GT2, + [159664] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9248), 20, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9715), 18, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(9717), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_COLON_RBRACK, + [159736] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9864), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570361,18 +591707,16 @@ 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(9250), 30, + ACTIONS(9866), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -570380,7 +591724,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -570388,6 +591734,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, @@ -570402,66 +591749,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [159610] = 3, + [159794] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9420), 20, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(5645), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, + 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(9422), 30, + sym_identifier, + ACTIONS(5638), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [159668] = 3, + anon_sym_COLON_RBRACK, + [159854] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9484), 18, + ACTIONS(11305), 1, + anon_sym_LPAREN2, + ACTIONS(11307), 1, + anon_sym_LBRACK, + STATE(1989), 1, + sym_parameter_list, + STATE(5586), 1, + sym__function_declarator_seq, + ACTIONS(10210), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570476,21 +591831,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(9486), 32, + anon_sym_DASH_GT, + ACTIONS(10208), 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -570502,21 +591853,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, - [159726] = 3, + anon_sym_DASH_GT_STAR, + [159920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9452), 18, + ACTIONS(9868), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570535,7 +591886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9454), 32, + ACTIONS(9870), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -570568,122 +591919,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [159784] = 3, + [159978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9416), 20, + ACTIONS(9796), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, + 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(9418), 30, + sym_identifier, + ACTIONS(9798), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_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_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [159842] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6237), 1, - anon_sym_LBRACK, - ACTIONS(6230), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(6233), 6, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(6226), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [159904] = 3, + anon_sym_COLON_RBRACK, + [160036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9538), 18, + ACTIONS(8598), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570693,16 +591987,18 @@ 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(9540), 32, + ACTIONS(3488), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -570710,9 +592006,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -570720,7 +592014,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, @@ -570735,10 +592028,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [159962] = 3, + anon_sym_GT2, + [160094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9503), 18, + ACTIONS(9915), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570757,7 +592051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9505), 32, + ACTIONS(9917), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -570790,10 +592084,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [160020] = 3, + [160152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9484), 20, + ACTIONS(9792), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570814,7 +592108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9486), 30, + ACTIONS(9794), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -570845,10 +592139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [160078] = 3, + [160210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9412), 20, + ACTIONS(9788), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570858,18 +592152,16 @@ 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(9414), 30, + ACTIONS(9790), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -570877,7 +592169,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -570885,6 +592179,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, @@ -570899,11 +592194,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [160136] = 3, + [160268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9452), 20, + ACTIONS(5645), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570924,7 +592218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9454), 30, + ACTIONS(5638), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -570955,42 +592249,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [160194] = 5, + [160326] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(11151), 1, + ACTIONS(10477), 1, + anon_sym_EQ, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + ACTIONS(10759), 1, anon_sym_LBRACK, - STATE(5834), 1, - sym_new_declarator, - ACTIONS(9173), 16, + ACTIONS(11251), 1, + anon_sym_DOT_STAR, + ACTIONS(11335), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11379), 1, + anon_sym_QMARK, + ACTIONS(11401), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11696), 1, + anon_sym_PIPE, + ACTIONS(11698), 1, + anon_sym_CARET, + ACTIONS(11700), 1, + anon_sym_AMP, + ACTIONS(11706), 1, + anon_sym_GT_EQ, + ACTIONS(11710), 1, + anon_sym_bitor, + ACTIONS(11712), 1, + anon_sym_xor, + ACTIONS(11714), 1, + anon_sym_bitand, + STATE(5663), 1, + sym_argument_list, + STATE(5664), 1, + sym_subscript_argument_list, + ACTIONS(10803), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11415), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11690), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11694), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11708), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11720), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11692), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11702), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11704), 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(9175), 32, - anon_sym_DOT_DOT_DOT, + ACTIONS(10479), 13, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_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, @@ -571001,21 +592327,11 @@ 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, - [160256] = 3, + [160432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9391), 18, + ACTIONS(9900), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571025,16 +592341,18 @@ 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(9393), 32, + ACTIONS(9902), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -571042,9 +592360,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -571052,7 +592368,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, @@ -571067,65 +592382,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [160314] = 3, + anon_sym_GT2, + [160490] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5260), 18, + ACTIONS(7221), 1, + anon_sym_requires, + ACTIONS(7219), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5300), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 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___attribute, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(5253), 32, + ACTIONS(8907), 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___attribute__, + anon_sym_RBRACK_RBRACK, + 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_STAR, anon_sym_DASH_GT, - [160372] = 3, + anon_sym_COLON_RBRACK, + [160556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9278), 20, + ACTIONS(9919), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571146,7 +592466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9280), 30, + ACTIONS(9921), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -571177,65 +592497,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [160430] = 3, + [160614] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9480), 18, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9677), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9482), 32, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(9679), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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_RBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_DOT_STAR, - anon_sym_DASH_GT, - [160488] = 3, + anon_sym_COLON_RBRACK, + [160686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9468), 18, + ACTIONS(8564), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571250,21 +592577,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(9470), 32, + anon_sym_DASH_GT, + ACTIONS(8559), 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -571276,33 +592602,33 @@ 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, - [160546] = 6, + anon_sym_DASH_GT_STAR, + [160743] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - STATE(5951), 1, + STATE(6078), 1, sym_attribute_specifier, - ACTIONS(7065), 5, + ACTIONS(7397), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7067), 41, + ACTIONS(7399), 41, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -571344,10 +592670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [160609] = 3, + [160806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9499), 20, + ACTIONS(9919), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -571368,7 +592694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9501), 29, + ACTIONS(9921), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -571398,22 +592724,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [160666] = 6, + [160863] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - STATE(5995), 1, + STATE(6080), 1, sym_attribute_specifier, - ACTIONS(7123), 5, + ACTIONS(7505), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7125), 41, + ACTIONS(7507), 41, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -571455,55 +592781,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [160729] = 21, + [160926] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(5659), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(6987), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6993), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(9116), 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(9118), 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_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [160989] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10012), 1, + ACTIONS(10363), 1, anon_sym_const, - ACTIONS(10922), 1, + ACTIONS(11172), 1, anon_sym_LPAREN2, - ACTIONS(10930), 1, + ACTIONS(11180), 1, sym_ms_restrict_modifier, - ACTIONS(10936), 1, + ACTIONS(11186), 1, anon_sym_LBRACK, - ACTIONS(11381), 1, + ACTIONS(11745), 1, anon_sym_STAR, - ACTIONS(11383), 1, + ACTIONS(11747), 1, anon_sym_AMP_AMP, - ACTIONS(11385), 1, + ACTIONS(11749), 1, anon_sym_AMP, - STATE(4238), 1, + STATE(4333), 1, sym_alignas_qualifier, - STATE(4509), 1, + STATE(4613), 1, sym_parameter_list, - STATE(6312), 1, + STATE(6387), 1, sym_ms_unaligned_ptr_modifier, - STATE(8183), 1, + STATE(8314), 1, sym__function_declarator_seq, - STATE(8613), 1, + STATE(8704), 1, sym__abstract_declarator, - ACTIONS(10014), 2, + ACTIONS(10365), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(10932), 2, + ACTIONS(11182), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(10934), 2, + ACTIONS(11184), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5858), 2, + STATE(6210), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6360), 2, + STATE(6464), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8180), 5, + STATE(8312), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6459), 10, + ACTIONS(6823), 10, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, @@ -571514,8 +592897,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(10001), 12, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [161082] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11432), 1, + sym_literal_suffix, + ACTIONS(5645), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5638), 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, + [161141] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(5645), 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(5638), 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, + [161200] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3098), 1, + anon_sym_LBRACE, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(8569), 1, + anon_sym_LPAREN2, + STATE(5569), 1, + sym_argument_list, + STATE(6057), 1, + sym_initializer_list, + ACTIONS(7225), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(7223), 35, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -571527,10 +593073,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [160822] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [161267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9570), 20, + ACTIONS(9792), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -571551,7 +593103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9572), 29, + ACTIONS(9794), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -571581,46 +593133,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [160879] = 12, + [161324] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7731), 1, - anon_sym_LPAREN2, - ACTIONS(7745), 1, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + STATE(6070), 1, + sym_attribute_specifier, + ACTIONS(7531), 5, + anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(8108), 1, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7533), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(8110), 1, anon_sym_AMP_AMP, - ACTIONS(8112), 1, - anon_sym_AMP, - STATE(2157), 1, - sym_parameter_list, - STATE(5165), 1, - sym__function_declarator_seq, - STATE(6187), 1, - sym__abstract_declarator, - STATE(5164), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9074), 9, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [161387] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9930), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, anon_sym___attribute, + 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(9072), 27, + sym_identifier, + ACTIONS(9932), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -571628,26 +593234,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [161444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + 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_identifier, + ACTIONS(9820), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [160954] = 3, + anon_sym_COLON_RBRACK, + [161501] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9358), 16, + ACTIONS(5661), 1, + anon_sym_EQ, + ACTIONS(5906), 1, + anon_sym_SEMI, + ACTIONS(5663), 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(5638), 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_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, + ACTIONS(5645), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571661,62 +593351,150 @@ 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, + [161564] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7285), 1, + anon_sym_requires, + ACTIONS(9202), 1, + anon_sym_DASH_GT, + STATE(6121), 1, + sym_trailing_return_type, + ACTIONS(7283), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5460), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + 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_identifier, + ACTIONS(7791), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [161633] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7285), 1, + anon_sym_requires, + ACTIONS(9352), 1, + anon_sym_DASH_GT, + STATE(6123), 1, + sym_trailing_return_type, + ACTIONS(7283), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5532), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + 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, - anon_sym_DASH_GT, - ACTIONS(9360), 33, + sym_identifier, + ACTIONS(7966), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_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, - [161011] = 9, + [161702] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8818), 1, - anon_sym_DASH_GT, - ACTIONS(8824), 1, + ACTIONS(7285), 1, anon_sym_requires, - STATE(5711), 1, + ACTIONS(10091), 1, + anon_sym_DASH_GT, + STATE(6126), 1, sym_trailing_return_type, - ACTIONS(8821), 2, + ACTIONS(7283), 2, anon_sym_final, anon_sym_override, - STATE(4709), 2, + STATE(4778), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5258), 2, + STATE(5396), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7546), 10, + ACTIONS(8424), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -571725,12 +593503,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - 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(7544), 30, + sym_identifier, + ACTIONS(8422), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -571742,26 +593529,31 @@ 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_RBRACK_RBRACK, - 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_DOT_STAR, - anon_sym_COLON_RBRACK, - [161080] = 3, + [161771] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 20, + ACTIONS(7285), 1, + anon_sym_requires, + ACTIONS(11751), 1, + anon_sym_DASH_GT, + STATE(6128), 1, + sym_trailing_return_type, + ACTIONS(7283), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5300), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -571771,9 +593563,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -571782,10 +593571,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4568), 29, + ACTIONS(8907), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -571801,36 +593589,17 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [161137] = 9, + [161840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8971), 1, - anon_sym_DASH_GT, - ACTIONS(8977), 1, - anon_sym_requires, - STATE(5719), 1, - sym_trailing_return_type, - ACTIONS(8974), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5305), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 10, + ACTIONS(9872), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -571839,12 +593608,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, 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(7627), 30, + sym_identifier, + ACTIONS(9874), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -571862,58 +593644,48 @@ 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_DOT_STAR, + anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [161206] = 8, + [161897] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, - anon_sym_LBRACE, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(8167), 1, - anon_sym_LPAREN2, - STATE(5546), 1, - sym_argument_list, - STATE(5981), 1, - sym_initializer_list, - ACTIONS(6800), 9, - anon_sym_DOT_DOT_DOT, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + STATE(6032), 1, + sym_attribute_specifier, + ACTIONS(7551), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7553), 41, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_TILDE, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_LBRACK_COLON, - ACTIONS(6798), 35, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -571927,14 +593699,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [161273] = 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [161960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9538), 20, + ACTIONS(9804), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -571955,7 +593730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9540), 29, + ACTIONS(9806), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -571985,10 +593760,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [161330] = 3, + [162017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9428), 20, + ACTIONS(9876), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -572009,7 +593784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9430), 29, + ACTIONS(9878), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -572039,25 +593814,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [161387] = 9, + [162074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9727), 1, - anon_sym_DASH_GT, - ACTIONS(9733), 1, - anon_sym_requires, - STATE(5721), 1, - sym_trailing_return_type, - ACTIONS(9730), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5364), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 10, + ACTIONS(9880), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -572066,12 +593827,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, 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(8089), 30, + sym_identifier, + ACTIONS(9882), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -572089,35 +593863,16 @@ 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_DOT_STAR, + anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [161456] = 9, + [162131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6919), 1, - anon_sym_requires, - ACTIONS(9727), 1, - anon_sym_DASH_GT, - STATE(5742), 1, - sym_trailing_return_type, - ACTIONS(6913), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5364), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 10, + ACTIONS(9884), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -572126,12 +593881,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, 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(8089), 30, + sym_identifier, + ACTIONS(9886), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -572149,35 +593917,16 @@ 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_DOT_STAR, + anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [161525] = 9, + [162188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11372), 1, - anon_sym_requires, - ACTIONS(11387), 1, - anon_sym_DASH_GT, - STATE(5723), 1, - sym_trailing_return_type, - ACTIONS(11369), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5373), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 10, + ACTIONS(9768), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -572186,12 +593935,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, 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(8543), 30, + sym_identifier, + ACTIONS(9770), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -572209,20 +593971,30 @@ 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_DOT_STAR, + anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [161594] = 3, + [162245] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8382), 18, + ACTIONS(7221), 1, + anon_sym_requires, + ACTIONS(9287), 1, + anon_sym_DASH_GT, + STATE(5857), 1, + sym_trailing_return_type, + ACTIONS(7219), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5532), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -572231,19 +594003,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_COLON, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8384), 31, + ACTIONS(7966), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -572256,27 +594021,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_DOT_STAR, - 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, - [161651] = 3, + anon_sym_COLON_RBRACK, + [162314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8400), 18, + ACTIONS(9736), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -572287,6 +594051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -572294,10 +594059,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8402), 31, + sym_identifier, + ACTIONS(9738), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -572310,6 +594080,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -572317,111 +594089,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, 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, - [161708] = 7, + anon_sym_COLON_RBRACK, + [162371] = 13, ACTIONS(3), 1, sym_comment, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(11393), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5846), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(11390), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(6602), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(5665), 1, + sym_auto, + ACTIONS(5667), 1, + anon_sym_decltype, + ACTIONS(10320), 1, + anon_sym_LT, + ACTIONS(11754), 1, + anon_sym_LBRACK, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4991), 1, + sym_decltype_auto, + STATE(6491), 1, + sym_template_argument_list, + ACTIONS(5675), 2, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(5643), 3, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6600), 29, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, + ACTIONS(5659), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [161773] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - STATE(5964), 1, - sym_attribute_specifier, - ACTIONS(7087), 5, + ACTIONS(5636), 32, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7089), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, - anon_sym_LBRACE, + anon_sym___based, anon_sym_static, - anon_sym_EQ, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -572435,33 +594152,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [161836] = 9, + sym_identifier, + anon_sym_operator, + [162448] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6874), 1, + ACTIONS(7221), 1, anon_sym_requires, - ACTIONS(8882), 1, + ACTIONS(10131), 1, anon_sym_DASH_GT, - STATE(5969), 1, + STATE(5932), 1, sym_trailing_return_type, - ACTIONS(6868), 2, + ACTIONS(7219), 2, anon_sym_final, anon_sym_override, - STATE(4709), 2, + STATE(4778), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5258), 2, + STATE(5396), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7546), 17, - aux_sym_preproc_elif_token1, + ACTIONS(8424), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -572470,21 +594181,12 @@ static const uint16_t ts_small_parse_table[] = { 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_COLON, anon_sym_DOT, - sym_identifier, - ACTIONS(7544), 23, + ACTIONS(8422), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -572496,91 +594198,26 @@ 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [161905] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6874), 1, - anon_sym_requires, - ACTIONS(8996), 1, - anon_sym_DASH_GT, - STATE(5924), 1, - sym_trailing_return_type, - ACTIONS(6868), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5305), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - 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_identifier, - ACTIONS(7627), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [161974] = 9, + anon_sym_COLON_RBRACK, + [162517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6874), 1, - anon_sym_requires, - ACTIONS(9776), 1, - anon_sym_DASH_GT, - STATE(5977), 1, - sym_trailing_return_type, - ACTIONS(6868), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5364), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 17, + ACTIONS(9822), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -572590,6 +594227,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -572598,9 +594238,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(8089), 23, + ACTIONS(9824), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -572616,31 +594257,21 @@ 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [162043] = 9, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [162574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6874), 1, - anon_sym_requires, - ACTIONS(11396), 1, - anon_sym_DASH_GT, - STATE(5920), 1, - sym_trailing_return_type, - ACTIONS(6868), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5373), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 17, + ACTIONS(9599), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -572650,6 +594281,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -572658,9 +594292,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(8543), 23, + ACTIONS(9597), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -572676,16 +594311,21 @@ 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [162112] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [162631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9578), 20, + ACTIONS(9896), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -572706,7 +594346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9580), 29, + ACTIONS(9898), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -572736,70 +594376,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [162169] = 8, + [162688] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(6212), 1, - anon_sym_LBRACK, - ACTIONS(10277), 1, - anon_sym_LT, - STATE(5936), 1, - sym_template_argument_list, - ACTIONS(6205), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(11756), 1, + anon_sym_delete, + ACTIONS(11758), 1, + anon_sym_new, + ACTIONS(9601), 4, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_EQ, + anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(6201), 35, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, + ACTIONS(9595), 5, anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, sym_identifier, - sym_auto, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [162236] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9574), 20, - aux_sym_preproc_elif_token1, + ACTIONS(9599), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -572808,9 +594403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -572818,17 +594411,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9576), 29, + ACTIONS(9597), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -572839,9 +594426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, @@ -572849,71 +594434,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [162293] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - STATE(5983), 1, - sym_attribute_specifier, - ACTIONS(7091), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7093), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [162356] = 6, + [162753] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5661), 1, anon_sym_EQ, - ACTIONS(5406), 1, + ACTIONS(5796), 1, anon_sym_SEMI, - ACTIONS(5278), 13, + ACTIONS(5663), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -572927,7 +594455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(5253), 17, + ACTIONS(5638), 17, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -572945,7 +594473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(5260), 17, + ACTIONS(5645), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572963,10 +594491,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - [162419] = 3, + [162816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9484), 20, + ACTIONS(9860), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -572987,7 +594515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9486), 29, + ACTIONS(9862), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -573017,115 +594545,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [162476] = 21, + [162873] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10922), 1, + ACTIONS(3098), 1, + anon_sym_LBRACE, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(8569), 1, anon_sym_LPAREN2, - ACTIONS(10930), 1, - sym_ms_restrict_modifier, - ACTIONS(10936), 1, - anon_sym_LBRACK, - ACTIONS(11381), 1, + STATE(5537), 1, + sym_argument_list, + STATE(6093), 1, + sym_initializer_list, + ACTIONS(7225), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(11383), 1, anon_sym_AMP_AMP, - ACTIONS(11385), 1, - anon_sym_AMP, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(4509), 1, - sym_parameter_list, - STATE(6312), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8183), 1, - sym__function_declarator_seq, - STATE(8616), 1, - sym__abstract_declarator, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10932), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(10934), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6140), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6364), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8180), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6497), 10, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [162569] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - STATE(5918), 1, - sym_attribute_specifier, - ACTIONS(7095), 5, + anon_sym_LBRACK_COLON, + ACTIONS(7223), 35, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7097), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, - anon_sym_LBRACE, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, - anon_sym_EQ, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -573139,17 +594600,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [162632] = 3, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [162940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9515), 20, + ACTIONS(9752), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -573170,7 +594628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9517), 29, + ACTIONS(9754), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -573200,22 +594658,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [162689] = 6, + [162997] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(8084), 1, + anon_sym_LPAREN2, + ACTIONS(8098), 1, + anon_sym_LBRACK, + ACTIONS(8385), 1, + anon_sym_STAR, + ACTIONS(8387), 1, + anon_sym_AMP_AMP, + ACTIONS(8389), 1, + anon_sym_AMP, + STATE(2275), 1, + sym_parameter_list, + STATE(5348), 1, + sym__function_declarator_seq, + STATE(6344), 1, + sym__abstract_declarator, + STATE(5347), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9429), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___attribute, - STATE(5998), 1, - sym_attribute_specifier, - ACTIONS(7187), 5, + anon_sym_DOT, + ACTIONS(9427), 27, + 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_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [163072] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(7223), 7, anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7189), 41, + ACTIONS(7225), 41, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -573225,7 +594744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym_COLON, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym___declspec, anon_sym_LBRACE, @@ -573257,22 +594776,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [162752] = 6, + [163131] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10254), 1, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(6576), 1, + anon_sym_LBRACK, + ACTIONS(10647), 1, + anon_sym_LT, + STATE(6086), 1, + sym_template_argument_list, + ACTIONS(6569), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(6572), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(6565), 35, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(10256), 1, anon_sym___attribute, - STATE(5925), 1, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [163198] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + STATE(6115), 1, sym_attribute_specifier, - ACTIONS(7133), 5, + ACTIONS(7521), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7135), 41, + ACTIONS(7523), 41, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -573314,10 +594892,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [162815] = 3, + [163261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9408), 20, + ACTIONS(9740), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -573338,7 +594916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9410), 29, + ACTIONS(9742), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -573368,70 +594946,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [162872] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6919), 1, - anon_sym_requires, - ACTIONS(11387), 1, - anon_sym_DASH_GT, - STATE(5757), 1, - sym_trailing_return_type, - ACTIONS(6913), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5373), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 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(8543), 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_RBRACK_RBRACK, - 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_DOT_STAR, - anon_sym_COLON_RBRACK, - [162941] = 3, + [163318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8446), 18, + ACTIONS(9856), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -573442,6 +594961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -573449,10 +594969,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8448), 31, + sym_identifier, + ACTIONS(9858), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -573465,6 +594990,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -573472,20 +594999,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, 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, - [162998] = 3, + anon_sym_COLON_RBRACK, + [163375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9436), 20, + ACTIONS(9756), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -573506,7 +595024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9438), 29, + ACTIONS(9758), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -573536,139 +595054,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [163055] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6919), 1, - anon_sym_requires, - ACTIONS(8971), 1, - anon_sym_DASH_GT, - STATE(5666), 1, - sym_trailing_return_type, - ACTIONS(6913), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5305), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 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(7627), 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_RBRACK_RBRACK, - 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_DOT_STAR, - anon_sym_COLON_RBRACK, - [163124] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - STATE(5937), 1, - sym_attribute_specifier, - ACTIONS(7099), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7101), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [163187] = 6, + [163432] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - STATE(5942), 1, + STATE(6089), 1, sym_attribute_specifier, - ACTIONS(7103), 5, + ACTIONS(7547), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7105), 41, + ACTIONS(7549), 41, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -573710,10 +595111,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [163250] = 3, + [163495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9527), 20, + ACTIONS(9778), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -573734,7 +595135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9529), 29, + ACTIONS(9780), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -573764,10 +595165,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [163307] = 3, + [163552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9531), 20, + ACTIONS(9892), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -573788,7 +595189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9533), 29, + ACTIONS(9894), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -573818,10 +595219,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [163364] = 3, + [163609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8454), 18, + ACTIONS(9772), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -573832,6 +595234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -573839,10 +595242,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8456), 31, + sym_identifier, + ACTIONS(9774), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -573855,6 +595263,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -573862,20 +595272,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, 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, - [163421] = 3, + anon_sym_COLON_RBRACK, + [163666] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9554), 20, + ACTIONS(11751), 1, + anon_sym_DASH_GT, + ACTIONS(11763), 1, + anon_sym_requires, + STATE(6124), 1, + sym_trailing_return_type, + ACTIONS(11760), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5300), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -573885,9 +595301,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -573896,10 +595309,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9556), 29, + ACTIONS(8907), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -573915,78 +595327,70 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [163478] = 6, + [163735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - STATE(5949), 1, - sym_attribute_specifier, - ACTIONS(7061), 5, + ACTIONS(9703), 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_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7063), 41, + 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(9705), 33, + 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___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [163541] = 3, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_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, + [163792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9432), 20, + ACTIONS(9788), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -574007,7 +595411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9434), 29, + ACTIONS(9790), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -574037,10 +595441,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [163598] = 3, + [163849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9550), 20, + ACTIONS(9923), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -574061,7 +595465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9552), 29, + ACTIONS(9925), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -574091,35 +595495,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [163655] = 6, + [163906] = 3, ACTIONS(3), 1, sym_comment, - STATE(5440), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(6694), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6700), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8737), 18, + ACTIONS(8665), 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___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -574128,7 +595517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(8739), 19, + ACTIONS(8667), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -574139,7 +595528,10 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -574147,11 +595539,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [163718] = 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, + [163963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9503), 20, + ACTIONS(9942), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -574172,7 +595573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9505), 29, + ACTIONS(9944), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -574202,55 +595603,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [163775] = 13, + [164020] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(5280), 1, - sym_auto, - ACTIONS(5282), 1, - anon_sym_decltype, - ACTIONS(9959), 1, - anon_sym_LT, - ACTIONS(11399), 1, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + STATE(6099), 1, + sym_attribute_specifier, + ACTIONS(7423), 5, + anon_sym_AMP, anon_sym_LBRACK, - STATE(4121), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4767), 1, - sym_decltype_auto, - STATE(6335), 1, - sym_template_argument_list, - ACTIONS(5290), 2, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7425), 41, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(5258), 3, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - ACTIONS(5274), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5251), 32, - anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -574264,42 +595653,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_operator, - [163852] = 12, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [164083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7731), 1, - anon_sym_LPAREN2, - ACTIONS(7745), 1, - anon_sym_LBRACK, - ACTIONS(8081), 1, - anon_sym_STAR, - ACTIONS(8083), 1, - anon_sym_AMP_AMP, - ACTIONS(8085), 1, - anon_sym_AMP, - STATE(1970), 1, - sym_parameter_list, - STATE(5165), 1, - sym__function_declarator_seq, - STATE(6260), 1, - sym__abstract_declarator, - STATE(5164), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9074), 16, + ACTIONS(4930), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -574308,31 +595684,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9072), 20, + ACTIONS(4928), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [163927] = 3, + anon_sym_COLON_RBRACK, + [164140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9507), 20, + ACTIONS(9812), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -574353,7 +595738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9509), 29, + ACTIONS(9814), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -574383,67 +595768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [163984] = 6, + [164197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - STATE(5922), 1, - sym_attribute_specifier, - ACTIONS(7053), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7055), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [164047] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9519), 20, + ACTIONS(9826), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -574464,7 +595792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9521), 29, + ACTIONS(9828), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -574494,18 +595822,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [164104] = 3, + [164254] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7107), 7, - anon_sym_AMP, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, anon_sym___attribute, - anon_sym_COLON, + STATE(6102), 1, + sym_attribute_specifier, + ACTIONS(7431), 5, + anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7109), 42, + ACTIONS(7433), 41, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -574515,8 +595847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON_COLON, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym___declspec, anon_sym_LBRACE, @@ -574548,11 +595879,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [164161] = 3, + [164317] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9379), 20, - aux_sym_preproc_elif_token1, + ACTIONS(7221), 1, + anon_sym_requires, + ACTIONS(11766), 1, + anon_sym_DASH_GT, + STATE(5742), 1, + sym_trailing_return_type, + ACTIONS(7219), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5300), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -574561,25 +595906,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, 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_identifier, - ACTIONS(9381), 29, + ACTIONS(8907), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -574597,124 +595929,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [164218] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9412), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_identifier, - ACTIONS(9414), 29, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [164386] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(11772), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5995), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(11769), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(6944), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [164275] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9511), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6942), 29, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym___extension__, anon_sym___attribute__, anon_sym___attribute, - 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, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - ACTIONS(9513), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [164332] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [164451] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 20, - aux_sym_preproc_elif_token1, + STATE(5580), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(7048), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7054), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(9116), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -574723,9 +596024,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -574733,15 +596031,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9564), 29, + sym_literal_suffix, + ACTIONS(9118), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -574753,21 +596046,18 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [164389] = 3, + [164514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9523), 20, + ACTIONS(9808), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -574788,7 +596078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9525), 29, + ACTIONS(9810), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -574818,10 +596108,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [164446] = 3, + [164571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9566), 20, + ACTIONS(9946), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -574842,7 +596132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9568), 29, + ACTIONS(9948), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -574872,20 +596162,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [164503] = 4, + [164628] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(6798), 7, - anon_sym_AMP, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, anon_sym___attribute, - anon_sym_COLON, + STATE(6059), 1, + sym_attribute_specifier, + ACTIONS(7435), 5, + anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6800), 41, + ACTIONS(7437), 41, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -574895,7 +596187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym___declspec, anon_sym_LBRACE, @@ -574927,76 +596219,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [164562] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9344), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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_identifier, - ACTIONS(9342), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [164619] = 6, + [164691] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - STATE(5929), 1, + STATE(6117), 1, sym_attribute_specifier, - ACTIONS(7057), 5, + ACTIONS(7453), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7059), 41, + ACTIONS(7455), 41, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -575038,25 +596276,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [164682] = 7, + [164754] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11401), 1, - anon_sym_delete, - ACTIONS(11403), 1, - anon_sym_new, - ACTIONS(9346), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9340), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9344), 16, + ACTIONS(9211), 1, + anon_sym_DASH_GT, + ACTIONS(9219), 1, + anon_sym_requires, + STATE(5898), 1, + sym_trailing_return_type, + ACTIONS(9216), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5460), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -575065,19 +596303,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LBRACK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(9342), 22, + ACTIONS(7791), 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, @@ -575088,89 +596321,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, 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_DOT_STAR, - anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [164747] = 8, + [164823] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, - anon_sym_LBRACE, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(8167), 1, + ACTIONS(8084), 1, anon_sym_LPAREN2, - STATE(5523), 1, - sym_argument_list, - STATE(5932), 1, - sym_initializer_list, - ACTIONS(6800), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_TILDE, + ACTIONS(8098), 1, + anon_sym_LBRACK, + ACTIONS(8416), 1, anon_sym_STAR, + ACTIONS(8418), 1, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_LBRACK_COLON, - ACTIONS(6798), 35, + ACTIONS(8420), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [164814] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9416), 20, + STATE(2080), 1, + sym_parameter_list, + STATE(5348), 1, + sym__function_declarator_seq, + STATE(6334), 1, + sym__abstract_declarator, + STATE(5347), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9429), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, - anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -575179,52 +596378,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9418), 29, + ACTIONS(9427), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [164898] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5661), 1, + anon_sym_EQ, + ACTIONS(5800), 1, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + ACTIONS(5663), 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(5638), 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_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, - anon_sym_COLON_RBRACK, - [164871] = 3, + ACTIONS(5645), 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, + [164961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9375), 20, - aux_sym_preproc_elif_token1, + ACTIONS(10566), 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___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -575232,76 +596481,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9377), 29, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(10564), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [164928] = 5, + anon_sym_DASH_GT_STAR, + [165018] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(7183), 1, - anon_sym_SEMI, - ACTIONS(6800), 6, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + STATE(6055), 1, + sym_attribute_specifier, + ACTIONS(7413), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7415), 41, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(6798), 41, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, 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_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -575315,15 +596560,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [164989] = 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [165081] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9558), 20, - aux_sym_preproc_elif_token1, + ACTIONS(9287), 1, + anon_sym_DASH_GT, + ACTIONS(9293), 1, + anon_sym_requires, + STATE(5907), 1, + sym_trailing_return_type, + ACTIONS(9290), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5532), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -575332,25 +596594,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, 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_identifier, - ACTIONS(9560), 29, + ACTIONS(7966), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -575368,15 +596617,20 @@ 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_DOT_STAR, - anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [165046] = 3, + [165150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5260), 20, + ACTIONS(9868), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -575397,7 +596651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5253), 29, + ACTIONS(9870), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -575427,10 +596681,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [165103] = 3, + [165207] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7473), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7475), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [165264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9546), 20, + ACTIONS(5645), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -575451,7 +596759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9548), 29, + ACTIONS(5638), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -575481,65 +596789,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [165160] = 3, + [165321] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + STATE(6062), 1, + sym_attribute_specifier, + ACTIONS(7427), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7429), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [165384] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10249), 23, + ACTIONS(8084), 1, + anon_sym_LPAREN2, + ACTIONS(8098), 1, + anon_sym_LBRACK, + ACTIONS(8487), 1, + anon_sym_STAR, + ACTIONS(8489), 1, + anon_sym_AMP_AMP, + ACTIONS(8491), 1, + anon_sym_AMP, + STATE(2072), 1, + sym_parameter_list, + STATE(5348), 1, + sym__function_declarator_seq, + STATE(6322), 1, + sym__abstract_declarator, + STATE(5347), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9429), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(9427), 27, + 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_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_DOT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(10247), 26, + anon_sym_COLON_RBRACK, + [165459] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10131), 1, + anon_sym_DASH_GT, + ACTIONS(10169), 1, + anon_sym_requires, + STATE(5908), 1, + sym_trailing_return_type, + ACTIONS(10166), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 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(8422), 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_RBRACK_RBRACK, + 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, - [165217] = 3, + anon_sym_COLON_RBRACK, + [165528] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9420), 20, - aux_sym_preproc_elif_token1, + ACTIONS(11736), 1, + anon_sym_requires, + ACTIONS(11766), 1, + anon_sym_DASH_GT, + STATE(5911), 1, + sym_trailing_return_type, + ACTIONS(11733), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5300), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -575548,25 +596996,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, 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_identifier, - ACTIONS(9422), 29, + ACTIONS(8907), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -575584,15 +597019,20 @@ 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_DOT_STAR, - anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [165274] = 3, + [165597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9542), 20, + ACTIONS(9830), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -575613,7 +597053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9544), 29, + ACTIONS(9832), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -575643,25 +597083,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [165331] = 9, + [165654] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6919), 1, + ACTIONS(7221), 1, anon_sym_requires, - ACTIONS(8818), 1, + ACTIONS(9211), 1, anon_sym_DASH_GT, - STATE(5718), 1, + STATE(5881), 1, sym_trailing_return_type, - ACTIONS(6913), 2, + ACTIONS(7219), 2, anon_sym_final, anon_sym_override, - STATE(4709), 2, + STATE(4778), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5258), 2, + STATE(5460), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7546), 10, + ACTIONS(7789), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -575672,7 +597112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON, anon_sym_DOT, - ACTIONS(7544), 30, + ACTIONS(7791), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -575703,25 +597143,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_COLON_RBRACK, - [165400] = 6, + [165723] = 3, ACTIONS(3), 1, sym_comment, - STATE(5466), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(6619), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6625), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8737), 16, + ACTIONS(8657), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -575730,6 +597155,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -575738,7 +597165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(8739), 21, + ACTIONS(8659), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -575752,34 +597179,100 @@ 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [165463] = 9, + 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, + [165780] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8882), 1, - anon_sym_DASH_GT, - ACTIONS(8888), 1, - anon_sym_requires, - STATE(6005), 1, - sym_trailing_return_type, - ACTIONS(8885), 2, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(11172), 1, + anon_sym_LPAREN2, + ACTIONS(11180), 1, + sym_ms_restrict_modifier, + ACTIONS(11186), 1, + anon_sym_LBRACK, + ACTIONS(11745), 1, + anon_sym_STAR, + ACTIONS(11747), 1, + anon_sym_AMP_AMP, + ACTIONS(11749), 1, + anon_sym_AMP, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(4613), 1, + sym_parameter_list, + STATE(6387), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8314), 1, + sym__function_declarator_seq, + STATE(8764), 1, + sym__abstract_declarator, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11182), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11184), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5940), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6458), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8312), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6859), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5258), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 17, - aux_sym_preproc_elif_token1, + anon_sym_try, + anon_sym_requires, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [165873] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8697), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -575788,6 +597281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -575795,14 +597290,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(7544), 23, + sym_literal_suffix, + ACTIONS(8699), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -575814,31 +597305,99 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [165532] = 9, + 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, + [165930] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8996), 1, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(7457), 1, + anon_sym_SEMI, + ACTIONS(7225), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(7223), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + 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___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [165991] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9202), 1, anon_sym_DASH_GT, - ACTIONS(9124), 1, + ACTIONS(9208), 1, anon_sym_requires, - STATE(6006), 1, + STATE(6116), 1, sym_trailing_return_type, - ACTIONS(9121), 2, + ACTIONS(9205), 2, anon_sym_final, anon_sym_override, - STATE(4709), 2, + STATE(4778), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5305), 2, + STATE(5460), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7629), 17, + ACTIONS(7789), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -575856,7 +597415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7627), 23, + ACTIONS(7791), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -575880,25 +597439,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [165601] = 9, + [166060] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9776), 1, + ACTIONS(9352), 1, anon_sym_DASH_GT, - ACTIONS(9782), 1, + ACTIONS(9358), 1, anon_sym_requires, - STATE(6007), 1, + STATE(6118), 1, sym_trailing_return_type, - ACTIONS(9779), 2, + ACTIONS(9355), 2, anon_sym_final, anon_sym_override, - STATE(4709), 2, + STATE(4778), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5364), 2, + STATE(5532), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8087), 17, + ACTIONS(7968), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -575916,7 +597475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(8089), 23, + ACTIONS(7966), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -575940,25 +597499,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [165670] = 9, + [166129] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11396), 1, + ACTIONS(10091), 1, anon_sym_DASH_GT, - ACTIONS(11408), 1, + ACTIONS(10151), 1, anon_sym_requires, - STATE(6009), 1, + STATE(6119), 1, sym_trailing_return_type, - ACTIONS(11405), 2, + ACTIONS(10148), 2, anon_sym_final, anon_sym_override, - STATE(4709), 2, + STATE(4778), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5373), 2, + STATE(5396), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8541), 17, + ACTIONS(8424), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -575976,7 +597535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(8543), 23, + ACTIONS(8422), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -576000,10 +597559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [165739] = 3, + [166198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9391), 20, + ACTIONS(9748), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -576024,7 +597583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9393), 29, + ACTIONS(9750), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -576054,119 +597613,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [165796] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11178), 1, - sym_literal_suffix, - ACTIONS(5260), 22, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5253), 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, - [165855] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8145), 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(8140), 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_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_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, - [165912] = 3, + [166255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9444), 20, + ACTIONS(9764), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -576187,7 +597637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9446), 29, + ACTIONS(9766), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -576217,150 +597667,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [165969] = 4, + [166312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(5260), 16, + ACTIONS(8750), 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_DOT, - anon_sym_DASH_GT, - ACTIONS(5253), 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, - [166028] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7731), 1, - anon_sym_LPAREN2, - ACTIONS(7745), 1, - anon_sym_LBRACK, - ACTIONS(8030), 1, - anon_sym_STAR, - ACTIONS(8032), 1, - anon_sym_AMP_AMP, - ACTIONS(8034), 1, anon_sym_AMP, - STATE(1976), 1, - sym_parameter_list, - STATE(5165), 1, - sym__function_declarator_seq, - STATE(6191), 1, - sym__abstract_declarator, - STATE(5164), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9074), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(9072), 27, - 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_RBRACK_RBRACK, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [166103] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9021), 1, - anon_sym_LBRACE, - ACTIONS(11411), 1, - anon_sym_COLON, - STATE(3694), 1, - sym__enum_base_clause, - STATE(3746), 1, - sym_enumerator_list, - STATE(3974), 1, - sym_attribute_specifier, - ACTIONS(8907), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7600), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - 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, @@ -576368,14 +597688,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(7602), 24, + sym_literal_suffix, + ACTIONS(8752), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -576387,6 +597703,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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -576394,17 +597711,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [166171] = 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, + [166369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7345), 6, + ACTIONS(7759), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7347), 42, + ACTIONS(7761), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -576447,10 +597774,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [166227] = 3, + [166425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9344), 16, + ACTIONS(9826), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576467,7 +597794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9342), 32, + ACTIONS(9828), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -576500,30 +597827,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [166283] = 7, + [166481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6874), 1, - anon_sym_requires, - ACTIONS(6868), 2, + ACTIONS(7671), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7673), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5381), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8559), 17, - aux_sym_preproc_elif_token1, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [166537] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8697), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, 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, @@ -576532,13 +597902,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(8561), 24, + sym_literal_suffix, + ACTIONS(8699), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -576547,9 +597914,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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -576557,70 +597922,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [166347] = 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, + [166593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9538), 16, + ACTIONS(8665), 17, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9540), 32, + sym_identifier, + sym_literal_suffix, + ACTIONS(8667), 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_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, - [166403] = 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_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [166649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7263), 6, + ACTIONS(7731), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7265), 42, + ACTIONS(7733), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -576663,17 +598039,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [166459] = 3, + [166705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7267), 6, + ACTIONS(7599), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7269), 42, + ACTIONS(7601), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -576716,74 +598092,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [166515] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6874), 1, - anon_sym_requires, - ACTIONS(6868), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5364), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - 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_identifier, - ACTIONS(8089), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [166579] = 3, + [166761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7379), 6, + ACTIONS(7755), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7381), 42, + ACTIONS(7757), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -576826,10 +598145,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [166635] = 3, + [166817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9416), 16, + ACTIONS(4930), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576846,7 +598165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9418), 32, + ACTIONS(4928), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -576879,70 +598198,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [166691] = 3, + [166873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7223), 6, + ACTIONS(9752), 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___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7225), 42, + 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(9754), 32, + 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___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [166747] = 3, + 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, + [166929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7253), 6, + ACTIONS(7561), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7255), 42, + ACTIONS(7563), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -576985,63 +598304,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [166803] = 3, + [166985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7271), 6, + ACTIONS(9942), 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___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7273), 42, + 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(9944), 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, + [167041] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5617), 1, + anon_sym_LPAREN2, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8548), 1, anon_sym_STAR, + ACTIONS(8550), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + ACTIONS(8552), 1, + anon_sym_AMP, + ACTIONS(8554), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4779), 1, + sym_parameter_list, + STATE(7990), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8788), 1, + sym__declarator, + STATE(8974), 1, + sym__abstract_declarator, + STATE(10837), 1, + sym_ms_based_modifier, + ACTIONS(9429), 2, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, + anon_sym___attribute, + ACTIONS(9427), 4, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [166859] = 3, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + [167145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9480), 16, + ACTIONS(9934), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577058,7 +598454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9482), 32, + ACTIONS(9936), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -577091,63 +598487,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [166915] = 3, + [167201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7275), 6, + ACTIONS(9804), 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___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7277), 42, + 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(9806), 32, + 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___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [166971] = 3, + 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, + [167257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9515), 16, + ACTIONS(9868), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577164,7 +598560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9517), 32, + ACTIONS(9870), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -577197,63 +598593,328 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [167027] = 3, + [167313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8382), 17, + ACTIONS(9764), 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(9766), 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, + [167369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9772), 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, - sym_identifier, - sym_literal_suffix, - ACTIONS(8384), 31, + anon_sym_DASH_GT, + ACTIONS(9774), 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, + [167425] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9796), 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(9798), 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, + [167481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9872), 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(9874), 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, + [167537] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9876), 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(9878), 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_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, + [167593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9880), 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, - 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, - [167083] = 3, + ACTIONS(9882), 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, + [167649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9499), 16, + ACTIONS(9946), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577270,7 +598931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9501), 32, + ACTIONS(9948), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -577303,10 +598964,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [167139] = 3, + [167705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9412), 16, + ACTIONS(8598), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577323,7 +598984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9414), 32, + ACTIONS(3488), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -577356,44 +599017,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [167195] = 6, + [167761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6228), 1, - anon_sym_SEMI, - ACTIONS(6237), 1, + ACTIONS(7223), 6, + anon_sym_AMP, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(6230), 3, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7225), 42, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(6233), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_LBRACK_COLON, - ACTIONS(6226), 35, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -577407,22 +599063,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [167257] = 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [167817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7351), 6, + ACTIONS(7647), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7353), 42, + ACTIONS(7649), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -577465,36 +599123,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [167313] = 7, + [167873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11403), 1, - anon_sym_new, - ACTIONS(11413), 1, - anon_sym_delete, - ACTIONS(9346), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9340), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9344), 18, + ACTIONS(9830), 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(9832), 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, + [167929] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9413), 1, + anon_sym_LBRACE, + ACTIONS(11775), 1, + anon_sym_COLON, + STATE(3793), 1, + sym__enum_base_clause, + STATE(3842), 1, + sym_enumerator_list, + STATE(4059), 1, + sym_attribute_specifier, + ACTIONS(9244), 2, anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(8000), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + 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, @@ -577502,10 +599209,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9342), 19, + sym_identifier, + ACTIONS(8002), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -577515,24 +599228,130 @@ 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_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [167997] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8750), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + 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_identifier, + sym_literal_suffix, + ACTIONS(8752), 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_DOT_STAR, anon_sym_DASH_GT, - [167377] = 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, + [168053] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7651), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7653), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [168109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 6, + ACTIONS(7659), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7285), 42, + ACTIONS(7661), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -577575,10 +599394,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [167433] = 3, + [168165] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9822), 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(9824), 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, + [168221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9452), 16, + ACTIONS(9736), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577595,7 +599467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9454), 32, + ACTIONS(9738), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -577628,17 +599500,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [167489] = 3, + [168277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7223), 6, + ACTIONS(7663), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7225), 42, + ACTIONS(7665), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -577681,17 +599553,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [167545] = 3, + [168333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7355), 6, + ACTIONS(7717), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7357), 42, + ACTIONS(7719), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -577734,94 +599606,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [167601] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5301), 1, - anon_sym_LPAREN2, - ACTIONS(5311), 1, - anon_sym_LBRACK, - ACTIONS(8195), 1, - sym_identifier, - ACTIONS(8197), 1, - anon_sym_STAR, - ACTIONS(8199), 1, - anon_sym_AMP_AMP, - ACTIONS(8201), 1, - anon_sym_AMP, - ACTIONS(8203), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4820), 1, - sym_parameter_list, - STATE(7878), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8689), 1, - sym__declarator, - STATE(8839), 1, - sym__abstract_declarator, - STATE(10656), 1, - sym_ms_based_modifier, - ACTIONS(9074), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(9072), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT2, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - [167705] = 3, + [168389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7279), 6, + ACTIONS(7779), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7281), 42, + ACTIONS(7781), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -577864,17 +599659,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [167761] = 3, + [168445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7359), 6, + ACTIONS(7775), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7361), 42, + ACTIONS(7777), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -577917,70 +599712,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [167817] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8400), 17, - anon_sym_DASH, - 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_identifier, - sym_literal_suffix, - ACTIONS(8402), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - 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, - [167873] = 3, + [168501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7421), 6, + ACTIONS(7569), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7423), 42, + ACTIONS(7571), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -578023,17 +599765,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [167929] = 3, + [168557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 6, + ACTIONS(7739), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7289), 42, + ACTIONS(7741), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -578076,17 +599818,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [167985] = 3, + [168613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7291), 6, + ACTIONS(7743), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7293), 42, + ACTIONS(7745), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -578129,92 +599871,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [168041] = 3, + [168669] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9503), 16, + ACTIONS(11758), 1, + anon_sym_new, + ACTIONS(11777), 1, + anon_sym_delete, + ACTIONS(9601), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9595), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9599), 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___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + 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(9505), 32, + ACTIONS(9597), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PERCENT, anon_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_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - 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, + [168733] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8657), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + 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_identifier, + sym_literal_suffix, + ACTIONS(8659), 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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [168097] = 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, + [168789] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 6, - anon_sym_AMP, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(6861), 1, anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym_STAR, + ACTIONS(11781), 1, + anon_sym_AMP_AMP, + ACTIONS(11783), 1, + anon_sym_AMP, + ACTIONS(11787), 1, + sym_ms_restrict_modifier, + ACTIONS(11793), 1, anon_sym_LBRACK, - anon_sym___inline, + ACTIONS(11795), 1, anon_sym_const, - anon_sym___asm, - ACTIONS(7301), 42, + STATE(4796), 1, + sym_parameter_list, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8777), 1, + sym__abstract_declarator, + ACTIONS(11789), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11791), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6069), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6556), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6859), 8, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11785), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -578226,79 +600053,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [168153] = 3, + [168883] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(6821), 1, + anon_sym___attribute, + ACTIONS(11779), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(11781), 1, + anon_sym_AMP_AMP, + ACTIONS(11783), 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_DOT, - anon_sym_DASH_GT, - ACTIONS(4568), 32, - anon_sym_DOT_DOT_DOT, + ACTIONS(11787), 1, + sym_ms_restrict_modifier, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11795), 1, + anon_sym_const, + STATE(4796), 1, + sym_parameter_list, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8791), 1, + sym__abstract_declarator, + ACTIONS(11789), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11791), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5995), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6528), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6823), 8, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_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, - [168209] = 3, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [168977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 6, + ACTIONS(7771), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7289), 42, + ACTIONS(7773), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -578341,10 +600178,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [168265] = 3, + [169033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9428), 16, + ACTIONS(9892), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578361,7 +600198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9430), 32, + ACTIONS(9894), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -578394,70 +600231,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [168321] = 3, + [169089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9554), 16, + ACTIONS(8697), 17, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9556), 32, + sym_identifier, + sym_literal_suffix, + ACTIONS(8699), 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_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, - [168377] = 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_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [169145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7325), 6, + ACTIONS(7763), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7327), 42, + ACTIONS(7765), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -578500,123 +600337,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [168433] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8208), 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(3888), 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, - [168489] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9519), 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(9521), 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, - [168545] = 3, + [169201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7329), 6, + ACTIONS(7585), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7331), 42, + ACTIONS(7587), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -578659,63 +600390,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [168601] = 3, + [169257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8382), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7735), 6, 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_identifier, - sym_literal_suffix, - ACTIONS(8384), 29, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7737), 42, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_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_DOT_STAR, - 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_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [168657] = 3, + anon_sym_try, + anon_sym_requires, + [169313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9578), 16, + ACTIONS(9896), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578732,7 +600463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9580), 32, + ACTIONS(9898), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -578765,142 +600496,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [168713] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7195), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7197), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [168769] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(6457), 1, - anon_sym___attribute, - ACTIONS(11415), 1, - anon_sym_STAR, - ACTIONS(11417), 1, - anon_sym_AMP_AMP, - ACTIONS(11419), 1, - anon_sym_AMP, - ACTIONS(11423), 1, - sym_ms_restrict_modifier, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - STATE(4823), 1, - sym_parameter_list, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8673), 1, - sym__abstract_declarator, - ACTIONS(11425), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11427), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5966), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6405), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6459), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [168863] = 3, + [169369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7205), 6, + ACTIONS(7595), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7207), 42, + ACTIONS(7597), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -578943,17 +600549,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [168919] = 3, + [169425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7303), 6, + ACTIONS(7607), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7305), 42, + ACTIONS(7609), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -578996,252 +600602,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [168975] = 22, + [169481] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5617), 1, anon_sym_LPAREN2, - ACTIONS(6495), 1, - anon_sym___attribute, - ACTIONS(11415), 1, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(8228), 1, + sym_identifier, + ACTIONS(8669), 1, anon_sym_STAR, - ACTIONS(11417), 1, + ACTIONS(8671), 1, anon_sym_AMP_AMP, - ACTIONS(11419), 1, + ACTIONS(8673), 1, anon_sym_AMP, - ACTIONS(11423), 1, - sym_ms_restrict_modifier, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - STATE(4823), 1, + ACTIONS(8675), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(5340), 1, sym_parameter_list, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, + STATE(7993), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8598), 1, sym__function_declarator_seq, - STATE(8678), 1, + STATE(8802), 1, + sym__declarator, + STATE(8982), 1, sym__abstract_declarator, - ACTIONS(11425), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11427), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5846), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6406), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, + STATE(11008), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(11549), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(9088), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6497), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [169069] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9507), 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(9509), 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, - [169125] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8400), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - 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_identifier, - sym_literal_suffix, - ACTIONS(8402), 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_DOT_STAR, - 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, - [169181] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6874), 1, - anon_sym_requires, - ACTIONS(6868), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5305), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - 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_identifier, - ACTIONS(7627), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [169245] = 3, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + [169587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 6, + ACTIONS(7623), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7237), 42, + ACTIONS(7625), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -579284,10 +600733,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [169301] = 3, + [169643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9420), 16, + ACTIONS(9884), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579304,7 +600753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9422), 32, + ACTIONS(9886), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -579337,17 +600786,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [169357] = 3, + [169699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7295), 6, + ACTIONS(7595), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7297), 42, + ACTIONS(7597), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -579375,78 +600824,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_restrict, anon_sym___restrict__, anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [169413] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8454), 17, - anon_sym_DASH, - 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_identifier, - sym_literal_suffix, - ACTIONS(8456), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - 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, - [169469] = 3, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [169755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9511), 16, + ACTIONS(5645), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579463,7 +600859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9513), 32, + ACTIONS(5638), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -579496,17 +600892,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [169525] = 3, + [169811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6798), 6, + ACTIONS(7751), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6800), 42, + ACTIONS(7753), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -579549,17 +600945,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [169581] = 3, + [169867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 6, + ACTIONS(7561), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7335), 42, + ACTIONS(7563), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -579602,22 +600998,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [169637] = 7, + [169923] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6874), 1, - anon_sym_requires, - ACTIONS(6868), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5373), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 17, - aux_sym_preproc_elif_token1, + ACTIONS(6596), 1, + anon_sym_SEMI, + ACTIONS(6605), 1, + anon_sym_LBRACK, + ACTIONS(6598), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(6601), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(6594), 35, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [169985] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8750), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -579634,13 +601074,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(8543), 24, + sym_literal_suffix, + ACTIONS(8752), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -579653,69 +601090,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [169701] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9550), 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(9552), 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, - [169757] = 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, + [170041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9574), 16, + ACTIONS(9923), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579732,7 +601127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9576), 32, + ACTIONS(9925), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -579765,17 +601160,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [169813] = 3, + [170097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7245), 6, + ACTIONS(7627), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7247), 42, + ACTIONS(7629), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -579818,10 +601213,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [169869] = 3, + [170153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9546), 16, + ACTIONS(9938), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579838,7 +601233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9548), 32, + ACTIONS(9940), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -579871,123 +601266,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [169925] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7259), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7261), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [169981] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7337), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7339), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [170037] = 3, + [170209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7341), 6, + ACTIONS(7643), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7343), 42, + ACTIONS(7645), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -580030,17 +601319,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [170093] = 3, + [170265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7209), 6, + ACTIONS(7565), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7211), 42, + ACTIONS(7567), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -580083,63 +601372,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [170149] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9432), 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(9434), 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, - [170205] = 3, + [170321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9523), 16, + ACTIONS(9860), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580156,7 +601392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9525), 32, + ACTIONS(9862), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -580189,10 +601425,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [170261] = 3, + [170377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9464), 16, + ACTIONS(9930), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580209,7 +601445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9466), 32, + ACTIONS(9932), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -580242,10 +601478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [170317] = 3, + [170433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9391), 16, + ACTIONS(9740), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580262,7 +601498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9393), 32, + ACTIONS(9742), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -580295,63 +601531,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [170373] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8446), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - 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_identifier, - sym_literal_suffix, - ACTIONS(8448), 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_DOT_STAR, - 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, - [170429] = 3, + [170489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9436), 16, + ACTIONS(9856), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580368,7 +601551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9438), 32, + ACTIONS(9858), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -580401,69 +601584,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [170485] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9021), 1, - anon_sym_LBRACE, - ACTIONS(11411), 1, - anon_sym_COLON, - STATE(3713), 1, - sym__enum_base_clause, - STATE(3795), 1, - sym_enumerator_list, - STATE(4024), 1, - sym_attribute_specifier, - ACTIONS(8907), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7651), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - 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_identifier, - ACTIONS(7653), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [170553] = 3, + [170545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 16, + ACTIONS(9768), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580480,7 +601604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9564), 32, + ACTIONS(9770), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -580513,10 +601637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [170609] = 3, + [170601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9484), 16, + ACTIONS(9756), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580533,7 +601657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9486), 32, + ACTIONS(9758), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -580566,176 +601690,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [170665] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7375), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7377), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [170721] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7219), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7221), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [170777] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7223), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7225), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [170833] = 3, + [170657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 6, + ACTIONS(7635), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7229), 42, + ACTIONS(7637), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -580778,98 +601743,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [170889] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5301), 1, - anon_sym_LPAREN2, - ACTIONS(5311), 1, - anon_sym_LBRACK, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8354), 1, - anon_sym_STAR, - ACTIONS(8356), 1, - anon_sym_AMP_AMP, - ACTIONS(8358), 1, - anon_sym_AMP, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(5256), 1, - sym_parameter_list, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8665), 1, - sym__declarator, - STATE(8829), 1, - sym__abstract_declarator, - STATE(10827), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(11157), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(9025), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - [170995] = 3, + [170713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8454), 19, + ACTIONS(8657), 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, @@ -580879,7 +601764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_identifier, sym_literal_suffix, - ACTIONS(8456), 29, + ACTIONS(8659), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -580890,8 +601775,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, @@ -580903,16 +601791,15 @@ static const uint16_t ts_small_parse_table[] = { 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, - [171051] = 3, + [170769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5260), 16, + ACTIONS(9788), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580929,7 +601816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5253), 32, + ACTIONS(9790), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -580962,17 +601849,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [171107] = 3, + [170825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7231), 6, + ACTIONS(7655), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7233), 42, + ACTIONS(7657), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -581015,67 +601902,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [171163] = 7, + [170881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8888), 1, - anon_sym_requires, - ACTIONS(8885), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5258), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 17, - aux_sym_preproc_elif_token1, + ACTIONS(9748), 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_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_DOT, - sym_identifier, - ACTIONS(7544), 24, + anon_sym_DASH_GT, + ACTIONS(9750), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_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, - [171227] = 3, + anon_sym_DASH_GT_STAR, + [170937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9527), 16, + ACTIONS(9778), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -581092,7 +601975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9529), 32, + ACTIONS(9780), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -581125,181 +602008,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [171283] = 7, + [170993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9124), 1, - anon_sym_requires, - ACTIONS(9121), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5305), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 17, - aux_sym_preproc_elif_token1, + ACTIONS(9792), 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_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_DOT, - sym_identifier, - ACTIONS(7627), 24, + anon_sym_DASH_GT, + ACTIONS(9794), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_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, - [171347] = 7, + anon_sym_DASH_GT_STAR, + [171049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9782), 1, - anon_sym_requires, - ACTIONS(9779), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5364), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 17, - aux_sym_preproc_elif_token1, + ACTIONS(9808), 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_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_DOT, - sym_identifier, - ACTIONS(8089), 24, + anon_sym_DASH_GT, + ACTIONS(9810), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_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, - [171411] = 7, + anon_sym_DASH_GT_STAR, + [171105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11408), 1, - anon_sym_requires, - ACTIONS(11405), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5373), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 17, - aux_sym_preproc_elif_token1, + ACTIONS(9812), 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_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_DOT, - sym_identifier, - ACTIONS(8543), 24, + anon_sym_DASH_GT, + ACTIONS(9814), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_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, - [171475] = 3, + anon_sym_DASH_GT_STAR, + [171161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9375), 16, + ACTIONS(9818), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -581316,7 +602187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9377), 32, + ACTIONS(9820), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -581349,21 +602220,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [171531] = 7, + [171217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11438), 1, + ACTIONS(7603), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7605), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [171273] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8665), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + 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_identifier, + sym_literal_suffix, + ACTIONS(8667), 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_DOT_STAR, + 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, + [171329] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7285), 1, anon_sym_requires, - ACTIONS(11435), 2, + ACTIONS(7283), 2, anon_sym_final, anon_sym_override, - STATE(4709), 2, + STATE(4778), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5381), 2, + STATE(5460), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8559), 17, + ACTIONS(7789), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -581381,7 +602358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(8561), 24, + ACTIONS(7791), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -581406,10 +602383,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [171595] = 3, + [171393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9570), 16, + ACTIONS(9919), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -581426,7 +602403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9572), 32, + ACTIONS(9921), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -581459,10 +602436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [171651] = 3, + [171449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9379), 16, + ACTIONS(9599), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -581479,7 +602456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9381), 32, + ACTIONS(9597), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -581512,222 +602489,358 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [171707] = 3, + [171505] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9542), 16, + ACTIONS(9208), 1, + anon_sym_requires, + ACTIONS(9205), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5460), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_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(9544), 32, + sym_identifier, + ACTIONS(7791), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_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, - [171763] = 3, + anon_sym_DASH_GT, + [171569] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7767), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7769), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [171625] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9558), 16, + ACTIONS(9358), 1, + anon_sym_requires, + ACTIONS(9355), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5532), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_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(9560), 32, + sym_identifier, + ACTIONS(7966), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_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, - [171819] = 3, + anon_sym_DASH_GT, + [171689] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7667), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7669), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [171745] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9531), 16, + ACTIONS(10151), 1, + anon_sym_requires, + ACTIONS(10148), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_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(9533), 32, + sym_identifier, + ACTIONS(8422), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_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, - [171875] = 3, + anon_sym_DASH_GT, + [171809] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9566), 16, + ACTIONS(11763), 1, + anon_sym_requires, + ACTIONS(11760), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5300), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_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(9568), 32, + sym_identifier, + ACTIONS(8907), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_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, - [171931] = 3, + anon_sym_DASH_GT, + [171873] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8446), 17, + ACTIONS(9413), 1, + anon_sym_LBRACE, + ACTIONS(11775), 1, + anon_sym_COLON, + STATE(3818), 1, + sym__enum_base_clause, + STATE(3927), 1, + sym_enumerator_list, + STATE(4095), 1, + sym_attribute_specifier, + ACTIONS(9244), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8006), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -581744,10 +602857,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(8448), 31, + ACTIONS(8008), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -581760,91 +602876,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, 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, - [171987] = 3, + [171941] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9408), 16, + ACTIONS(7285), 1, + anon_sym_requires, + ACTIONS(7283), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5532), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_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(9410), 32, + sym_identifier, + ACTIONS(7966), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_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, - [172043] = 7, + anon_sym_DASH_GT, + [172005] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7561), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7563), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [172061] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6874), 1, + ACTIONS(7285), 1, anon_sym_requires, - ACTIONS(6868), 2, + ACTIONS(7283), 2, anon_sym_final, anon_sym_override, - STATE(4709), 2, + STATE(4778), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5258), 2, + STATE(5396), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7546), 17, + ACTIONS(8424), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -581862,7 +603024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7544), 24, + ACTIONS(8422), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -581887,70 +603049,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [172107] = 3, + [172125] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9444), 16, + ACTIONS(11802), 1, + anon_sym_requires, + ACTIONS(11799), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5352), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8913), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_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(9446), 32, + sym_identifier, + ACTIONS(8915), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_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, - [172163] = 3, + anon_sym_DASH_GT, + [172189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7191), 6, + ACTIONS(7747), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7193), 42, + ACTIONS(7749), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -581993,24 +603159,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [172219] = 10, + [172245] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8907), 1, - anon_sym___attribute, - ACTIONS(9025), 1, - anon_sym___attribute__, - ACTIONS(9162), 1, - anon_sym_LBRACE, - ACTIONS(11441), 1, - anon_sym_COLON, - STATE(3021), 1, - sym_attribute_specifier, - STATE(3671), 1, - sym__enum_base_clause, - STATE(3793), 1, - sym_enumerator_list, - ACTIONS(7651), 9, + ACTIONS(7285), 1, + anon_sym_requires, + ACTIONS(7283), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5300), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -582019,11 +603183,21 @@ static const uint16_t ts_small_parse_table[] = { 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(7653), 31, + sym_identifier, + ACTIONS(8907), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -582035,27 +603209,82 @@ 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_RBRACK_RBRACK, - 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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [172288] = 3, + [172309] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7639), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7641), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [172365] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8382), 16, + ACTIONS(7285), 1, + anon_sym_requires, + ACTIONS(7283), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5352), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8913), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -582071,10 +603300,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8384), 31, + sym_identifier, + ACTIONS(8915), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -582087,27 +603320,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, 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, - [172343] = 3, + [172429] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7631), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7633), 42, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [172485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8416), 14, + ACTIONS(8665), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -582118,11 +603393,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(8418), 33, + sym_literal_suffix, + ACTIONS(8667), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -582134,42 +603413,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + 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_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [172398] = 3, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [172540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8382), 18, + ACTIONS(8657), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, 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, @@ -582178,7 +603451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(8384), 29, + ACTIONS(8659), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -582189,8 +603462,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, @@ -582202,30 +603478,99 @@ static const uint16_t ts_small_parse_table[] = { 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, - [172453] = 10, + [172595] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(8123), 1, + anon_sym_const, + ACTIONS(11787), 1, + sym_ms_restrict_modifier, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11805), 1, + anon_sym_STAR, + ACTIONS(11807), 1, + anon_sym_AMP_AMP, + ACTIONS(11809), 1, + anon_sym_AMP, + STATE(2726), 1, + sym_alignas_qualifier, + STATE(4672), 1, + sym_parameter_list, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8849), 1, + sym__abstract_declarator, + ACTIONS(8125), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11789), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11791), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5995), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6597), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6823), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8117), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [172686] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8907), 1, + ACTIONS(9244), 1, anon_sym___attribute, - ACTIONS(9025), 1, + ACTIONS(9312), 1, anon_sym___attribute__, - ACTIONS(9162), 1, + ACTIONS(9576), 1, anon_sym_LBRACE, - ACTIONS(11441), 1, + ACTIONS(11811), 1, anon_sym_COLON, - STATE(3078), 1, + STATE(3191), 1, sym_attribute_specifier, - STATE(3687), 1, + STATE(3796), 1, sym__enum_base_clause, - STATE(3797), 1, + STATE(3832), 1, sym_enumerator_list, - ACTIONS(7600), 9, + ACTIONS(8006), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -582235,7 +603580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7602), 31, + ACTIONS(8008), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -582267,20 +603612,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [172522] = 3, + [172755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8400), 18, + ACTIONS(8665), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, 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, @@ -582289,7 +603632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(8402), 29, + ACTIONS(8667), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -582300,8 +603643,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, @@ -582313,107 +603659,103 @@ static const uint16_t ts_small_parse_table[] = { 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, - [172577] = 21, + [172810] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(8572), 1, anon_sym_LPAREN2, - ACTIONS(7784), 1, - anon_sym_const, - ACTIONS(11423), 1, - sym_ms_restrict_modifier, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11443), 1, + ACTIONS(8574), 1, anon_sym_STAR, - ACTIONS(11445), 1, + ACTIONS(8576), 1, anon_sym_AMP_AMP, - ACTIONS(11447), 1, + ACTIONS(8578), 1, anon_sym_AMP, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(4554), 1, + ACTIONS(8588), 1, + anon_sym_LBRACK, + STATE(2281), 1, sym_parameter_list, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8727), 1, + STATE(6441), 1, sym__abstract_declarator, - ACTIONS(7786), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11425), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11427), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6032), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6474), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, + STATE(6608), 1, + sym__function_declarator_seq, + STATE(6607), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6459), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7778), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [172668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8446), 18, + ACTIONS(9429), 8, anon_sym_DASH, anon_sym_PLUS, anon_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(9427), 26, + 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_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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [172883] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9244), 1, + anon_sym___attribute, + ACTIONS(9312), 1, + anon_sym___attribute__, + ACTIONS(9576), 1, + anon_sym_LBRACE, + ACTIONS(11811), 1, + anon_sym_COLON, + STATE(3105), 1, + sym_attribute_specifier, + STATE(3767), 1, + sym__enum_base_clause, + STATE(3946), 1, + sym_enumerator_list, + ACTIONS(8000), 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, - sym_literal_suffix, - ACTIONS(8448), 29, + ACTIONS(8002), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -582422,29 +603764,30 @@ 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_RBRACK_RBRACK, + 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_DOT_STAR, 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, - [172723] = 3, + anon_sym_COLON_RBRACK, + [172952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8416), 12, + ACTIONS(8704), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -582457,7 +603800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym___asm, anon_sym_DOT, - ACTIONS(8418), 35, + ACTIONS(8706), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -582493,79 +603836,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [172778] = 12, + [173007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8246), 1, - anon_sym_LPAREN2, - ACTIONS(8248), 1, - anon_sym_STAR, - ACTIONS(8250), 1, - anon_sym_AMP_AMP, - ACTIONS(8252), 1, - anon_sym_AMP, - ACTIONS(8262), 1, - anon_sym_LBRACK, - STATE(2154), 1, - sym_parameter_list, - STATE(6326), 1, - sym__abstract_declarator, - STATE(6536), 1, - sym__function_declarator_seq, - STATE(6612), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9074), 8, + ACTIONS(8697), 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, - ACTIONS(9072), 26, + sym_literal_suffix, + ACTIONS(8699), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [172851] = 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, + [173062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8446), 16, + ACTIONS(8697), 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, @@ -582574,7 +603910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(8448), 31, + ACTIONS(8699), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -582585,11 +603921,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, @@ -582601,60 +603934,61 @@ static const uint16_t ts_small_parse_table[] = { 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, - [172906] = 21, + [173117] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(7784), 1, + ACTIONS(8123), 1, anon_sym_const, - ACTIONS(11423), 1, + ACTIONS(11787), 1, sym_ms_restrict_modifier, - ACTIONS(11429), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(11443), 1, + ACTIONS(11805), 1, anon_sym_STAR, - ACTIONS(11445), 1, + ACTIONS(11807), 1, anon_sym_AMP_AMP, - ACTIONS(11447), 1, + ACTIONS(11809), 1, anon_sym_AMP, - STATE(2592), 1, + STATE(2726), 1, sym_alignas_qualifier, - STATE(4554), 1, + STATE(4672), 1, sym_parameter_list, - STATE(6080), 1, + STATE(6178), 1, sym_ms_unaligned_ptr_modifier, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(8732), 1, + STATE(8858), 1, sym__abstract_declarator, - ACTIONS(7786), 2, + ACTIONS(8125), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11425), 2, + ACTIONS(11789), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11427), 2, + ACTIONS(11791), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5846), 2, + STATE(6132), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6544), 2, + STATE(6594), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6497), 8, + ACTIONS(6859), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -582663,7 +603997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(7778), 12, + ACTIONS(8117), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -582676,84 +604010,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [172997] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8454), 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(8456), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - 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, - [173052] = 12, + [173208] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8224), 1, + ACTIONS(8600), 1, anon_sym_LPAREN2, - ACTIONS(8226), 1, + ACTIONS(8602), 1, anon_sym_STAR, - ACTIONS(8228), 1, + ACTIONS(8604), 1, anon_sym_AMP_AMP, - ACTIONS(8230), 1, + ACTIONS(8606), 1, anon_sym_AMP, - ACTIONS(8240), 1, + ACTIONS(8616), 1, anon_sym_LBRACK, - STATE(2153), 1, + STATE(2277), 1, sym_parameter_list, - STATE(6377), 1, + STATE(6493), 1, sym__abstract_declarator, - STATE(6497), 1, + STATE(6709), 1, sym__function_declarator_seq, - STATE(6488), 5, + STATE(6708), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(9074), 10, + ACTIONS(9429), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -582764,7 +604046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9072), 24, + ACTIONS(9427), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PERCENT, @@ -582789,10 +604071,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [173125] = 3, + [173281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8454), 18, + ACTIONS(8750), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -582811,7 +604093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(8456), 29, + ACTIONS(8752), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -582841,77 +604123,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [173180] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10012), 1, - anon_sym_const, - STATE(4238), 1, - sym_alignas_qualifier, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6185), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6299), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6388), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6390), 21, - 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_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - 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, - [173249] = 3, + [173336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8400), 16, + ACTIONS(8657), 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, @@ -582920,7 +604145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(8402), 31, + ACTIONS(8659), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -582931,11 +604156,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, @@ -582947,85 +604169,75 @@ static const uint16_t ts_small_parse_table[] = { 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, - [173304] = 7, + [173391] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, - anon_sym_LPAREN2, - ACTIONS(11451), 1, - anon_sym_LBRACK, - STATE(1971), 1, - sym_parameter_list, - STATE(5230), 1, - sym__function_declarator_seq, - ACTIONS(9856), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(10363), 1, + anon_sym_const, + STATE(4333), 1, + sym_alignas_qualifier, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6372), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6377), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8005), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6752), 4, 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_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9854), 22, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6754), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DASH_GT, - [173366] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [173460] = 3, ACTIONS(3), 1, - sym_comment, - ACTIONS(11453), 1, - anon_sym_delete, - ACTIONS(11455), 1, - anon_sym_new, - ACTIONS(9346), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9340), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9344), 16, + sym_comment, + ACTIONS(8750), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -583034,7 +604246,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -583042,10 +604253,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9342), 19, + sym_literal_suffix, + ACTIONS(8752), 31, 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, @@ -583055,6 +604268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -583062,36 +604276,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [173428] = 9, + 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, + [173515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8824), 1, - anon_sym_requires, - ACTIONS(9639), 1, - anon_sym_DASH_GT, - STATE(5711), 1, - sym_trailing_return_type, - ACTIONS(8821), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5258), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 10, + ACTIONS(8704), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, 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___attribute, + anon_sym_LBRACK, + anon_sym___asm, anon_sym_DOT, - ACTIONS(7544), 27, + ACTIONS(8706), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -583102,12 +604315,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___attribute__, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -583118,26 +604328,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - [173494] = 7, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [173570] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11457), 1, + ACTIONS(11813), 1, anon_sym_delete, - ACTIONS(11459), 1, + ACTIONS(11815), 1, anon_sym_new, - ACTIONS(9346), 4, + ACTIONS(9601), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9340), 5, + ACTIONS(9595), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - ACTIONS(9344), 16, + ACTIONS(9599), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -583154,7 +604373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9342), 19, + ACTIONS(9597), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -583167,25 +604386,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [173556] = 7, + [173632] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(1971), 1, + STATE(2079), 1, sym_parameter_list, - STATE(5230), 1, + STATE(5444), 1, sym__function_declarator_seq, - ACTIONS(9834), 20, + ACTIONS(10198), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -583206,7 +604425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(9832), 22, + ACTIONS(10196), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -583229,18 +604448,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [173618] = 7, + [173694] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(1971), 1, + STATE(2079), 1, sym_parameter_list, - STATE(5230), 1, + STATE(5444), 1, sym__function_declarator_seq, - ACTIONS(9864), 20, + ACTIONS(10202), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -583261,7 +604480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(9862), 22, + ACTIONS(10200), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -583284,18 +604503,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [173680] = 7, + [173756] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(1971), 1, + STATE(2079), 1, sym_parameter_list, - STATE(5230), 1, + STATE(5444), 1, sym__function_declarator_seq, - ACTIONS(9848), 20, + ACTIONS(10206), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -583316,7 +604535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(9846), 22, + ACTIONS(10204), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -583339,18 +604558,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [173742] = 7, + [173818] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(1977), 1, + STATE(2079), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10210), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + 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_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(10208), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [173880] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2069), 1, sym_parameter_list, - STATE(5230), 1, + STATE(5444), 1, sym__function_declarator_seq, - ACTIONS(9864), 10, + ACTIONS(10174), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -583361,7 +604635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON, anon_sym_DOT, - ACTIONS(9862), 32, + ACTIONS(10172), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -583394,64 +604668,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_COLON_RBRACK, - [173804] = 22, + [173942] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(6457), 1, - anon_sym___attribute, - ACTIONS(11423), 1, + ACTIONS(11787), 1, sym_ms_restrict_modifier, - ACTIONS(11429), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(11431), 1, + ACTIONS(11795), 1, anon_sym_const, - ACTIONS(11461), 1, + ACTIONS(11821), 1, anon_sym_STAR, - ACTIONS(11463), 1, + ACTIONS(11823), 1, anon_sym_AMP_AMP, - ACTIONS(11465), 1, + ACTIONS(11825), 1, anon_sym_AMP, - STATE(5216), 1, + STATE(4861), 1, sym_parameter_list, - STATE(6080), 1, + STATE(6178), 1, sym_ms_unaligned_ptr_modifier, - STATE(6485), 1, + STATE(6707), 1, sym_alignas_qualifier, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(8766), 1, + STATE(8891), 1, sym__abstract_declarator, - ACTIONS(11425), 2, + ACTIONS(11789), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11427), 2, + ACTIONS(11791), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(11433), 2, + ACTIONS(11797), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6083), 2, + STATE(5995), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6711), 2, + STATE(6727), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6459), 6, - anon_sym_COMMA, - anon_sym___attribute__, + ACTIONS(6823), 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, - ACTIONS(11421), 12, + ACTIONS(11785), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -583464,80 +604737,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [173896] = 7, + [174032] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11403), 1, - anon_sym_new, - ACTIONS(11467), 1, - anon_sym_delete, - ACTIONS(9346), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9340), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9344), 17, + ACTIONS(7816), 1, + anon_sym___attribute__, + ACTIONS(7818), 1, + anon_sym___attribute, + ACTIONS(7820), 1, + anon_sym_LBRACK_LBRACK, + STATE(3786), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6412), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8833), 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_COLON, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9342), 18, + ACTIONS(8835), 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_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, - [173958] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6919), 1, - anon_sym_requires, - ACTIONS(10244), 1, - anon_sym_DASH_GT, - STATE(5742), 1, - sym_trailing_return_type, - ACTIONS(6913), 2, anon_sym_final, anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5364), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 10, + anon_sym_GT2, + anon_sym_requires, + [174096] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(6567), 1, + anon_sym_SEMI, + ACTIONS(6576), 1, + anon_sym_LBRACK, + ACTIONS(10005), 1, + anon_sym_LT, + STATE(6086), 1, + sym_template_argument_list, + ACTIONS(6569), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(6572), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_COLON, + ACTIONS(6565), 35, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [174162] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2069), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10190), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -583546,12 +604870,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(8089), 27, + ACTIONS(10188), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -583563,8 +604887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -583576,46 +604900,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [174024] = 4, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [174224] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11469), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8939), 11, + ACTIONS(7816), 1, + anon_sym___attribute__, + ACTIONS(7818), 1, + anon_sym___attribute, + ACTIONS(7820), 1, + anon_sym_LBRACK_LBRACK, + STATE(3786), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6408), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8837), 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___attribute, - anon_sym_COLON, + anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(8941), 33, + ACTIONS(8839), 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___attribute__, - anon_sym_RBRACK_RBRACK, - 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, @@ -583626,27 +604959,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - anon_sym_COLON_RBRACK, - [174080] = 9, + [174288] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8977), 1, - anon_sym_requires, - ACTIONS(9748), 1, - anon_sym_DASH_GT, - STATE(5719), 1, - sym_trailing_return_type, - ACTIONS(8974), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5305), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 10, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2079), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10186), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -583655,12 +604982,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7627), 27, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(10184), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -583671,60 +605010,119 @@ 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___attribute__, - 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_DOT_STAR, - [174146] = 12, + anon_sym_DASH_GT, + [174350] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7731), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(7745), 1, + ACTIONS(6861), 1, + anon_sym___attribute, + ACTIONS(11787), 1, + sym_ms_restrict_modifier, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(8341), 1, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(11827), 1, anon_sym_STAR, - ACTIONS(8343), 1, + ACTIONS(11829), 1, anon_sym_AMP_AMP, - ACTIONS(8345), 1, + ACTIONS(11831), 1, anon_sym_AMP, - STATE(2152), 1, + STATE(5310), 1, sym_parameter_list, - STATE(5165), 1, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, sym__function_declarator_seq, - STATE(6429), 1, + STATE(8914), 1, sym__abstract_declarator, - STATE(5164), 5, + ACTIONS(11789), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11791), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6176), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6762), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(9074), 9, + ACTIONS(6859), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [174442] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9219), 1, + anon_sym_requires, + ACTIONS(10002), 1, + anon_sym_DASH_GT, + STATE(5898), 1, + sym_trailing_return_type, + ACTIONS(9216), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5460), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 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___attribute, anon_sym_DOT, - ACTIONS(9072), 24, + ACTIONS(7791), 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, @@ -583733,6 +605131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -583744,19 +605143,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [174218] = 7, + [174508] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(1977), 1, + STATE(2069), 1, sym_parameter_list, - STATE(5230), 1, + STATE(5444), 1, sym__function_declarator_seq, - ACTIONS(9852), 10, + ACTIONS(10194), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -583767,7 +605165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON, anon_sym_DOT, - ACTIONS(9850), 32, + ACTIONS(10192), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -583800,100 +605198,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_COLON_RBRACK, - [174280] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5301), 1, - anon_sym_LPAREN2, - ACTIONS(5311), 1, - anon_sym_LBRACK, - ACTIONS(8195), 1, - sym_identifier, - ACTIONS(8203), 1, - anon_sym_COLON_COLON, - ACTIONS(8424), 1, - anon_sym_STAR, - ACTIONS(8426), 1, - anon_sym_AMP_AMP, - ACTIONS(8428), 1, - anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(5256), 1, - sym_parameter_list, - STATE(7878), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8689), 1, - sym__declarator, - STATE(8903), 1, - sym__abstract_declarator, - STATE(10656), 1, - sym_ms_based_modifier, - ACTIONS(9072), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(9074), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - [174382] = 9, + [174570] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6919), 1, + ACTIONS(9293), 1, anon_sym_requires, - ACTIONS(11471), 1, + ACTIONS(10128), 1, anon_sym_DASH_GT, - STATE(5757), 1, + STATE(5907), 1, sym_trailing_return_type, - ACTIONS(6913), 2, + ACTIONS(9290), 2, anon_sym_final, anon_sym_override, - STATE(4709), 2, + STATE(4778), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5373), 2, + STATE(5532), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8541), 10, + ACTIONS(7968), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -583904,7 +605227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(8543), 27, + ACTIONS(7966), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -583932,87 +605255,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [174448] = 21, + [174636] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(11423), 1, - sym_ms_restrict_modifier, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11474), 1, - anon_sym_STAR, - ACTIONS(11476), 1, - anon_sym_AMP_AMP, - ACTIONS(11478), 1, - anon_sym_AMP, - STATE(4725), 1, - sym_parameter_list, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8746), 1, - sym__abstract_declarator, - ACTIONS(11425), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11427), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6061), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6760), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6459), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(10169), 1, + anon_sym_requires, + ACTIONS(10600), 1, + anon_sym_DASH_GT, + STATE(5908), 1, + sym_trailing_return_type, + ACTIONS(10166), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [174538] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11449), 1, - anon_sym_LPAREN2, - ACTIONS(11451), 1, - anon_sym_LBRACK, - STATE(1977), 1, - sym_parameter_list, - STATE(5230), 1, - sym__function_declarator_seq, - ACTIONS(9834), 10, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5396), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -584021,12 +605282,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(9832), 32, + ACTIONS(8422), 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, @@ -584038,8 +605299,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -584051,94 +605312,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [174600] = 22, + [174702] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(6457), 1, - anon_sym___attribute, - ACTIONS(7784), 1, - anon_sym_const, - ACTIONS(11423), 1, - sym_ms_restrict_modifier, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11480), 1, - anon_sym_STAR, - ACTIONS(11482), 1, - anon_sym_AMP_AMP, - ACTIONS(11484), 1, - anon_sym_AMP, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(5221), 1, - sym_parameter_list, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8791), 1, - sym__abstract_declarator, - ACTIONS(7786), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11425), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11427), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6064), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6786), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6459), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + ACTIONS(11736), 1, + anon_sym_requires, + ACTIONS(11833), 1, + anon_sym_DASH_GT, + STATE(5911), 1, + sym_trailing_return_type, + ACTIONS(11733), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - ACTIONS(7778), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [174692] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11449), 1, - anon_sym_LPAREN2, - ACTIONS(11451), 1, - anon_sym_LBRACK, - STATE(1971), 1, - sym_parameter_list, - STATE(5230), 1, - sym__function_declarator_seq, - ACTIONS(9860), 20, - aux_sym_preproc_elif_token1, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5300), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -584147,24 +605339,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(8907), 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_SEMI, + anon_sym___attribute__, + 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_DOT_STAR, + [174768] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7884), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym___attribute, + ACTIONS(7888), 1, + anon_sym_LBRACK_LBRACK, + STATE(3784), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6397), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8833), 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_LBRACK, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9858), 22, + ACTIONS(8835), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -584175,24 +605409,34 @@ 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_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, - [174754] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [174832] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(1971), 1, + STATE(2079), 1, sym_parameter_list, - STATE(5230), 1, + STATE(5444), 1, sym__function_declarator_seq, - ACTIONS(9844), 20, + ACTIONS(10190), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -584213,7 +605457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(9842), 22, + ACTIONS(10188), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -584236,35 +605480,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [174816] = 8, + [174894] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 1, - anon_sym___attribute__, - ACTIONS(7443), 1, - anon_sym___attribute, - ACTIONS(7445), 1, - anon_sym_LBRACK_LBRACK, - STATE(3715), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6269), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8512), 12, + ACTIONS(7221), 1, + anon_sym_requires, + ACTIONS(11833), 1, + anon_sym_DASH_GT, + STATE(5742), 1, + sym_trailing_return_type, + ACTIONS(7219), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5300), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 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, - anon_sym_LBRACK, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(8514), 27, + ACTIONS(8907), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -584275,7 +605520,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_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -584287,92 +605537,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [174880] = 21, + [174960] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(8084), 1, anon_sym_LPAREN2, - ACTIONS(11423), 1, - sym_ms_restrict_modifier, - ACTIONS(11429), 1, + ACTIONS(8098), 1, anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11474), 1, + ACTIONS(8677), 1, anon_sym_STAR, - ACTIONS(11476), 1, + ACTIONS(8679), 1, anon_sym_AMP_AMP, - ACTIONS(11478), 1, + ACTIONS(8681), 1, anon_sym_AMP, - STATE(4725), 1, + STATE(2274), 1, sym_parameter_list, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, + STATE(5348), 1, sym__function_declarator_seq, - STATE(8753), 1, + STATE(6547), 1, sym__abstract_declarator, - ACTIONS(11425), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11427), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5846), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6623), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, + STATE(5347), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6497), 7, + ACTIONS(9429), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(9427), 24, + 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_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [174970] = 7, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [175032] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11758), 1, + anon_sym_new, + ACTIONS(11836), 1, + anon_sym_delete, + ACTIONS(9601), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9595), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9599), 17, + anon_sym_DASH, + 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_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(9597), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [175094] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(1977), 1, + STATE(2069), 1, sym_parameter_list, - STATE(5230), 1, + STATE(5444), 1, sym__function_declarator_seq, - ACTIONS(9860), 10, + ACTIONS(10198), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -584383,7 +605674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON, anon_sym_DOT, - ACTIONS(9858), 32, + ACTIONS(10196), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -584416,18 +605707,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_COLON_RBRACK, - [175032] = 7, + [175156] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(1971), 1, + STATE(2079), 1, sym_parameter_list, - STATE(5230), 1, + STATE(5444), 1, sym__function_declarator_seq, - ACTIONS(9840), 20, + ACTIONS(10194), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -584448,7 +605739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(9838), 22, + ACTIONS(10192), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -584471,64 +605762,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [175094] = 22, + [175218] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(6495), 1, + ACTIONS(6861), 1, anon_sym___attribute, - ACTIONS(7784), 1, + ACTIONS(8123), 1, anon_sym_const, - ACTIONS(11423), 1, + ACTIONS(11787), 1, sym_ms_restrict_modifier, - ACTIONS(11429), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(11480), 1, + ACTIONS(11838), 1, anon_sym_STAR, - ACTIONS(11482), 1, + ACTIONS(11840), 1, anon_sym_AMP_AMP, - ACTIONS(11484), 1, + ACTIONS(11842), 1, anon_sym_AMP, - STATE(2592), 1, + STATE(2726), 1, sym_alignas_qualifier, - STATE(5221), 1, + STATE(5313), 1, sym_parameter_list, - STATE(6080), 1, + STATE(6178), 1, sym_ms_unaligned_ptr_modifier, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(8796), 1, + STATE(8938), 1, sym__abstract_declarator, - ACTIONS(7786), 2, + ACTIONS(8125), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11425), 2, + ACTIONS(11789), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11427), 2, + ACTIONS(11791), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5846), 2, + STATE(6173), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6686), 2, + STATE(6834), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6497), 6, + ACTIONS(6859), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(7778), 12, + ACTIONS(8117), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -584541,126 +605832,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [175186] = 8, + [175310] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 1, - anon_sym___attribute__, - ACTIONS(7443), 1, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(6821), 1, anon_sym___attribute, - ACTIONS(7445), 1, - anon_sym_LBRACK_LBRACK, - STATE(3715), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6295), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8479), 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, + ACTIONS(8123), 1, + anon_sym_const, + ACTIONS(11787), 1, + sym_ms_restrict_modifier, + ACTIONS(11793), 1, anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(8481), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11838), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11840), 1, 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_DOT_STAR, - anon_sym_DASH_GT, + ACTIONS(11842), 1, + anon_sym_AMP, + STATE(2726), 1, + sym_alignas_qualifier, + STATE(5313), 1, + sym_parameter_list, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8942), 1, + sym__abstract_declarator, + ACTIONS(8125), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11789), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11791), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5995), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6843), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6823), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [175250] = 27, + ACTIONS(8117), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [175402] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5301), 1, + ACTIONS(5617), 1, anon_sym_LPAREN2, - ACTIONS(5311), 1, + ACTIONS(5627), 1, anon_sym_LBRACK, - ACTIONS(8195), 1, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8554), 1, anon_sym_COLON_COLON, - ACTIONS(8307), 1, + ACTIONS(8708), 1, anon_sym_STAR, - ACTIONS(8309), 1, + ACTIONS(8710), 1, anon_sym_AMP_AMP, - ACTIONS(8311), 1, + ACTIONS(8712), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(5185), 1, + STATE(5340), 1, sym_parameter_list, - STATE(7878), 1, + STATE(7990), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(8689), 1, + STATE(8788), 1, sym__declarator, - STATE(8881), 1, + STATE(9068), 1, sym__abstract_declarator, - STATE(10656), 1, + STATE(10837), 1, sym_ms_based_modifier, - ACTIONS(9072), 2, + ACTIONS(9427), 2, anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(9074), 2, + anon_sym_RPAREN, + ACTIONS(9429), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -584672,18 +605977,18 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [175352] = 7, + [175504] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(1977), 1, + STATE(2069), 1, sym_parameter_list, - STATE(5230), 1, + STATE(5444), 1, sym__function_declarator_seq, - ACTIONS(9856), 10, + ACTIONS(10202), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -584694,7 +605999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON, anon_sym_DOT, - ACTIONS(9854), 32, + ACTIONS(10200), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -584727,18 +606032,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_COLON_RBRACK, - [175414] = 7, + [175566] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(6821), 1, + anon_sym___attribute, + ACTIONS(11787), 1, + sym_ms_restrict_modifier, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(11827), 1, + anon_sym_STAR, + ACTIONS(11829), 1, + anon_sym_AMP_AMP, + ACTIONS(11831), 1, + anon_sym_AMP, + STATE(5310), 1, + sym_parameter_list, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8920), 1, + sym__abstract_declarator, + ACTIONS(11789), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11791), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5995), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6764), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6823), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [175658] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(1971), 1, + STATE(2079), 1, sym_parameter_list, - STATE(5230), 1, + STATE(5444), 1, sym__function_declarator_seq, - ACTIONS(9852), 20, + ACTIONS(10174), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -584759,7 +606134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(9850), 22, + ACTIONS(10172), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -584782,18 +606157,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [175476] = 7, + [175720] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7289), 12, + 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_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(7287), 34, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [175774] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2069), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10206), 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(10204), 32, + 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_RBRACK_RBRACK, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [175836] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(11787), 1, + sym_ms_restrict_modifier, + ACTIONS(11793), 1, anon_sym_LBRACK, - STATE(1977), 1, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(11821), 1, + anon_sym_STAR, + ACTIONS(11823), 1, + anon_sym_AMP_AMP, + ACTIONS(11825), 1, + anon_sym_AMP, + STATE(4861), 1, + sym_parameter_list, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8884), 1, + sym__abstract_declarator, + ACTIONS(11789), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11791), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6153), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6925), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6859), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [175926] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2069), 1, sym_parameter_list, - STATE(5230), 1, + STATE(5444), 1, sym__function_declarator_seq, - ACTIONS(9840), 10, + ACTIONS(10186), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -584804,7 +606354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON, anon_sym_DOT, - ACTIONS(9838), 32, + ACTIONS(10184), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -584837,18 +606387,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_COLON_RBRACK, - [175538] = 7, + [175988] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(1977), 1, + STATE(2069), 1, sym_parameter_list, - STATE(5230), 1, + STATE(5444), 1, sym__function_declarator_seq, - ACTIONS(9844), 10, + ACTIONS(10210), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -584859,7 +606409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON, anon_sym_DOT, - ACTIONS(9842), 32, + ACTIONS(10208), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -584892,22 +606442,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_COLON_RBRACK, - [175600] = 8, + [176050] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7497), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5617), 1, + anon_sym_LPAREN2, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(8228), 1, + sym_identifier, + ACTIONS(8669), 1, + anon_sym_STAR, + ACTIONS(8671), 1, + anon_sym_AMP_AMP, + ACTIONS(8673), 1, + anon_sym_AMP, + ACTIONS(8675), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(5340), 1, + sym_parameter_list, + STATE(7993), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8788), 1, + sym__declarator, + STATE(9068), 1, + sym__abstract_declarator, + STATE(11008), 1, + sym_ms_based_modifier, + ACTIONS(9427), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(9429), 2, anon_sym___attribute__, - ACTIONS(7499), 1, anon_sym___attribute, - ACTIONS(7501), 1, - anon_sym_LBRACK_LBRACK, - STATE(3719), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6297), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8479), 10, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + [176152] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11844), 1, + anon_sym_delete, + ACTIONS(11846), 1, + anon_sym_new, + ACTIONS(9601), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9595), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9599), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -584917,12 +606545,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(8481), 29, + ACTIONS(9597), 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, @@ -584932,83 +606565,147 @@ 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_RBRACK_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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [175664] = 9, + [176214] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(6203), 1, - anon_sym_SEMI, - ACTIONS(6212), 1, - anon_sym_LBRACK, - ACTIONS(9672), 1, - anon_sym_LT, - STATE(5936), 1, - sym_template_argument_list, - ACTIONS(6205), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 4, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3444), 1, anon_sym_TILDE, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5617), 1, + anon_sym_LPAREN2, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8554), 1, + anon_sym_COLON_COLON, + ACTIONS(8651), 1, anon_sym_STAR, + ACTIONS(8653), 1, anon_sym_AMP_AMP, - anon_sym_LBRACK_COLON, - ACTIONS(6201), 35, + ACTIONS(8655), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(5327), 1, + sym_parameter_list, + STATE(7990), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8788), 1, + sym__declarator, + STATE(9037), 1, + sym__abstract_declarator, + STATE(10837), 1, + sym_ms_based_modifier, + ACTIONS(9427), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(9429), 2, anon_sym___attribute__, anon_sym___attribute, - anon_sym___declspec, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + [176316] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11848), 1, + anon_sym_delete, + ACTIONS(11850), 1, + anon_sym_new, + ACTIONS(9601), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9595), 5, anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, sym_identifier, - sym_auto, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [175730] = 3, + ACTIONS(9597), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PERCENT, + anon_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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(9599), 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_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + [176378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6808), 12, + ACTIONS(7201), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -585021,7 +606718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6806), 34, + ACTIONS(7199), 34, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -585056,25 +606753,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [175784] = 9, + [176432] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11372), 1, - anon_sym_requires, - ACTIONS(11471), 1, - anon_sym_DASH_GT, - STATE(5723), 1, - sym_trailing_return_type, - ACTIONS(11369), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5373), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 10, + ACTIONS(11852), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11854), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9393), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -585084,15 +606772,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(8543), 27, + ACTIONS(9395), 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, @@ -585101,11 +606789,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + 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, @@ -585113,18 +606801,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [175850] = 7, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [176490] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, - anon_sym_LPAREN2, - ACTIONS(11451), 1, - anon_sym_LBRACK, - STATE(1977), 1, - sym_parameter_list, - STATE(5230), 1, - sym__function_declarator_seq, - ACTIONS(9848), 10, + ACTIONS(7221), 1, + anon_sym_requires, + ACTIONS(10002), 1, + anon_sym_DASH_GT, + STATE(5881), 1, + sym_trailing_return_type, + ACTIONS(7219), 2, + anon_sym_final, + anon_sym_override, + STATE(4778), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5460), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -585133,12 +606833,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(9846), 32, + ACTIONS(7791), 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, @@ -585150,8 +606850,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -585163,76 +606863,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [175912] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11486), 1, - anon_sym_delete, - ACTIONS(11488), 1, - anon_sym_new, - ACTIONS(9346), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9340), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9342), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PERCENT, - anon_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(9344), 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_LBRACK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - [175974] = 5, + [176556] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11469), 2, + ACTIONS(11854), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11490), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8959), 11, + ACTIONS(9322), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -585244,13 +606881,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_COLON, anon_sym_DOT, - ACTIONS(8961), 31, + ACTIONS(9324), 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_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -585264,6 +606902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, @@ -585276,25 +606915,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_COLON_RBRACK, - [176032] = 9, + [176612] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6919), 1, + ACTIONS(7221), 1, anon_sym_requires, - ACTIONS(9639), 1, + ACTIONS(10128), 1, anon_sym_DASH_GT, - STATE(5718), 1, + STATE(5857), 1, sym_trailing_return_type, - ACTIONS(6913), 2, + ACTIONS(7219), 2, anon_sym_final, anon_sym_override, - STATE(4709), 2, + STATE(4778), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5258), 2, + STATE(5532), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7546), 10, + ACTIONS(7968), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -585305,7 +606944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(7544), 27, + ACTIONS(7966), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -585333,25 +606972,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [176098] = 9, + [176678] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9733), 1, + ACTIONS(7221), 1, anon_sym_requires, - ACTIONS(10244), 1, + ACTIONS(10600), 1, anon_sym_DASH_GT, - STATE(5721), 1, + STATE(5932), 1, sym_trailing_return_type, - ACTIONS(9730), 2, + ACTIONS(7219), 2, anon_sym_final, anon_sym_override, - STATE(4709), 2, + STATE(4778), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5364), 2, + STATE(5396), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8087), 10, + ACTIONS(8424), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -585362,7 +607001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(8089), 27, + ACTIONS(8422), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -585390,73 +607029,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [176164] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6902), 12, - 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_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6900), 34, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [176218] = 8, + [176744] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7497), 1, + ACTIONS(7884), 1, anon_sym___attribute__, - ACTIONS(7499), 1, + ACTIONS(7886), 1, anon_sym___attribute, - ACTIONS(7501), 1, + ACTIONS(7888), 1, anon_sym_LBRACK_LBRACK, - STATE(3719), 2, + STATE(3784), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6314), 2, + STATE(6395), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8512), 10, + ACTIONS(8837), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -585467,7 +607055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(8514), 29, + ACTIONS(8839), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -585497,121 +607085,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [176282] = 9, + [176808] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6919), 1, - anon_sym_requires, - ACTIONS(9748), 1, - anon_sym_DASH_GT, - STATE(5666), 1, - sym_trailing_return_type, - ACTIONS(6913), 2, - anon_sym_final, - anon_sym_override, - STATE(4709), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5305), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 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___attribute, - anon_sym_DOT, - ACTIONS(7627), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11856), 1, + sym_identifier, + ACTIONS(11858), 1, anon_sym_LPAREN2, + ACTIONS(11860), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11862), 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_SEMI, - anon_sym___attribute__, - 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_DOT_STAR, - [176348] = 22, + ACTIONS(11864), 1, + anon_sym_AMP, + ACTIONS(11870), 1, + sym_primitive_type, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8339), 1, + sym__type_declarator, + STATE(8576), 1, + sym_pointer_type_declarator, + STATE(11686), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11866), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6258), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6977), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11787), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11868), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(8574), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [176897] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(6495), 1, - anon_sym___attribute, - ACTIONS(11423), 1, + ACTIONS(11787), 1, sym_ms_restrict_modifier, - ACTIONS(11429), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(11431), 1, + ACTIONS(11795), 1, anon_sym_const, - ACTIONS(11461), 1, + ACTIONS(11872), 1, anon_sym_STAR, - ACTIONS(11463), 1, + ACTIONS(11874), 1, anon_sym_AMP_AMP, - ACTIONS(11465), 1, + ACTIONS(11876), 1, anon_sym_AMP, - STATE(5216), 1, + STATE(5227), 1, sym_parameter_list, - STATE(6080), 1, + STATE(6178), 1, sym_ms_unaligned_ptr_modifier, - STATE(6485), 1, + STATE(6707), 1, sym_alignas_qualifier, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(8768), 1, + STATE(8958), 1, sym__abstract_declarator, - ACTIONS(11425), 2, + ACTIONS(11789), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11427), 2, + ACTIONS(11791), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(11433), 2, + ACTIONS(11797), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5846), 2, + STATE(6196), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6756), 2, + STATE(7108), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6497), 6, + ACTIONS(6859), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(11421), 12, + ACTIONS(11785), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -585624,87 +607221,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [176440] = 27, + [176986] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5301), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(5311), 1, + ACTIONS(11787), 1, + sym_ms_restrict_modifier, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8354), 1, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(11872), 1, anon_sym_STAR, - ACTIONS(8356), 1, + ACTIONS(11874), 1, anon_sym_AMP_AMP, - ACTIONS(8358), 1, + ACTIONS(11876), 1, anon_sym_AMP, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(5256), 1, + STATE(5227), 1, sym_parameter_list, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8393), 1, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, sym__function_declarator_seq, - STATE(8689), 1, - sym__declarator, - STATE(8903), 1, + STATE(8963), 1, sym__abstract_declarator, - STATE(10827), 1, - sym_ms_based_modifier, - ACTIONS(9072), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(9074), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(8389), 5, + ACTIONS(11789), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11791), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5995), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7109), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - [176542] = 4, + ACTIONS(6823), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [177075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3632), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3630), 42, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [177128] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11878), 1, + sym_identifier, + ACTIONS(11880), 1, + anon_sym_LPAREN2, + ACTIONS(11882), 1, + anon_sym_STAR, + ACTIONS(11884), 1, + anon_sym_AMP_AMP, + ACTIONS(11886), 1, + anon_sym_AMP, + ACTIONS(11890), 1, + sym_primitive_type, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(4640), 1, + sym__type_declarator, + STATE(5448), 1, + sym_pointer_type_declarator, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(11657), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11866), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5995), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7077), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11787), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11888), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5436), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [177217] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(11492), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11856), 1, + sym_identifier, + ACTIONS(11858), 1, anon_sym_LPAREN2, - ACTIONS(8583), 14, + ACTIONS(11860), 1, + anon_sym_STAR, + ACTIONS(11862), 1, + anon_sym_AMP_AMP, + ACTIONS(11864), 1, + anon_sym_AMP, + ACTIONS(11870), 1, + sym_primitive_type, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8339), 1, + sym__type_declarator, + STATE(8576), 1, + sym_pointer_type_declarator, + STATE(11686), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11866), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5995), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6977), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11787), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11868), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(8574), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [177306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8938), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -585719,9 +607493,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym___asm, anon_sym_DOT, - ACTIONS(8585), 30, + ACTIONS(8940), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -585750,23 +607525,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [176597] = 3, + [177359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8579), 12, + ACTIONS(9007), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, 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___attribute, anon_sym_LBRACK, anon_sym___asm, anon_sym_DOT, - ACTIONS(8581), 33, + ACTIONS(9009), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -585777,12 +607554,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___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -585799,120 +607573,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_requires, - [176650] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6993), 1, - anon_sym___attribute, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10922), 1, - anon_sym_LPAREN2, - ACTIONS(10924), 1, - anon_sym_STAR, - ACTIONS(10926), 1, - anon_sym_AMP_AMP, - ACTIONS(10928), 1, - anon_sym_AMP, - ACTIONS(10936), 1, - anon_sym_LBRACK, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(4243), 1, - sym_parameter_list, - STATE(8183), 1, - sym__function_declarator_seq, - STATE(8305), 1, - sym__abstract_declarator, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6115), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8180), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6991), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - 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, - [176731] = 21, + [177412] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(11496), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11498), 1, + ACTIONS(11896), 1, anon_sym_STAR, - ACTIONS(11500), 1, + ACTIONS(11898), 1, anon_sym_AMP_AMP, - ACTIONS(11502), 1, + ACTIONS(11900), 1, anon_sym_AMP, - ACTIONS(11508), 1, + ACTIONS(11904), 1, sym_primitive_type, - STATE(3117), 1, + STATE(3180), 1, sym_pointer_type_declarator, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(6080), 1, + STATE(6178), 1, sym_ms_unaligned_ptr_modifier, - STATE(8279), 1, + STATE(8406), 1, sym__type_declarator, - STATE(10974), 1, + STATE(11156), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11504), 2, + ACTIONS(11866), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6097), 2, + STATE(5995), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6959), 2, + STATE(7098), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, + ACTIONS(11787), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11506), 4, + ACTIONS(11902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, + STATE(3152), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -585932,62 +607643,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [176820] = 21, + [177501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11510), 1, - sym_identifier, - ACTIONS(11512), 1, - anon_sym_LPAREN2, - ACTIONS(11514), 1, - anon_sym_STAR, - ACTIONS(11516), 1, - anon_sym_AMP_AMP, - ACTIONS(11518), 1, - anon_sym_AMP, - ACTIONS(11522), 1, - sym_primitive_type, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8240), 1, - sym__type_declarator, - STATE(8475), 1, - sym_pointer_type_declarator, - STATE(10589), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11504), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5846), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7012), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11520), 4, + ACTIONS(3624), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3622), 42, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(8383), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -586000,44 +607681,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [176909] = 17, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [177554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8979), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + 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___attribute, + anon_sym_LBRACK, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8981), 31, + 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___attribute__, + anon_sym_LBRACK_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_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [177607] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, + ACTIONS(7393), 1, anon_sym___attribute, - ACTIONS(10012), 1, + ACTIONS(10363), 1, anon_sym_const, - ACTIONS(10922), 1, + ACTIONS(11172), 1, anon_sym_LPAREN2, - ACTIONS(10924), 1, + ACTIONS(11174), 1, anon_sym_STAR, - ACTIONS(10926), 1, + ACTIONS(11176), 1, anon_sym_AMP_AMP, - ACTIONS(10928), 1, + ACTIONS(11178), 1, anon_sym_AMP, - ACTIONS(10936), 1, + ACTIONS(11186), 1, anon_sym_LBRACK, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(4243), 1, + STATE(4330), 1, sym_parameter_list, - STATE(8183), 1, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(8314), 1, sym__function_declarator_seq, - STATE(8311), 1, + STATE(8376), 1, sym__abstract_declarator, - ACTIONS(10014), 2, + ACTIONS(10365), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3954), 2, + STATE(6234), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8180), 5, + STATE(8312), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(10001), 12, + ACTIONS(10352), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -586050,7 +607793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6497), 13, + ACTIONS(7391), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -586064,105 +607807,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [176990] = 3, + [177688] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3728), 42, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, + anon_sym_LPAREN2, + ACTIONS(11904), 1, + sym_primitive_type, + ACTIONS(11906), 1, + anon_sym_STAR, + ACTIONS(11908), 1, + anon_sym_AMP_AMP, + ACTIONS(11910), 1, + anon_sym_AMP, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(4955), 1, + sym__type_declarator, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(11304), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11866), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5995), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7117), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11787), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [177043] = 21, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [177777] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(11496), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11508), 1, + ACTIONS(11904), 1, sym_primitive_type, - ACTIONS(11524), 1, + ACTIONS(11912), 1, anon_sym_STAR, - ACTIONS(11526), 1, + ACTIONS(11914), 1, anon_sym_AMP_AMP, - ACTIONS(11528), 1, + ACTIONS(11916), 1, anon_sym_AMP, - STATE(3117), 1, + STATE(3180), 1, sym_pointer_type_declarator, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(4671), 1, + STATE(3681), 1, sym__type_declarator, - STATE(6080), 1, + STATE(6178), 1, sym_ms_unaligned_ptr_modifier, - STATE(11121), 1, + STATE(11037), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11504), 2, + ACTIONS(11866), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5846), 2, + STATE(5995), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6843), 2, + STATE(7084), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, + ACTIONS(11787), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11506), 4, + ACTIONS(11902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, + STATE(3152), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -586182,14 +607943,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [177132] = 3, + [177866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3892), 3, + ACTIONS(3664), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3890), 42, + ACTIONS(3662), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -586232,14 +607993,14 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [177185] = 3, + [177919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3632), 3, + ACTIONS(3628), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3630), 42, + ACTIONS(3626), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -586282,14 +608043,137 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [177238] = 3, + [177972] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3632), 3, + ACTIONS(11918), 1, + sym_ms_restrict_modifier, + STATE(6387), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(11921), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6210), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(6942), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6944), 32, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [178035] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, + anon_sym_LPAREN2, + ACTIONS(11904), 1, + sym_primitive_type, + ACTIONS(11912), 1, + anon_sym_STAR, + ACTIONS(11914), 1, + anon_sym_AMP_AMP, + ACTIONS(11916), 1, + anon_sym_AMP, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3694), 1, + sym__type_declarator, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(11037), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11866), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5995), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7134), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11787), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [178124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4194), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3630), 42, + ACTIONS(4192), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -586332,55 +608216,55 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [177291] = 21, + [178177] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11530), 1, + ACTIONS(11878), 1, sym_identifier, - ACTIONS(11532), 1, + ACTIONS(11880), 1, anon_sym_LPAREN2, - ACTIONS(11534), 1, + ACTIONS(11882), 1, anon_sym_STAR, - ACTIONS(11536), 1, + ACTIONS(11884), 1, anon_sym_AMP_AMP, - ACTIONS(11538), 1, + ACTIONS(11886), 1, anon_sym_AMP, - ACTIONS(11542), 1, + ACTIONS(11890), 1, sym_primitive_type, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(4723), 1, + STATE(4704), 1, sym__type_declarator, - STATE(5607), 1, + STATE(5448), 1, sym_pointer_type_declarator, - STATE(6080), 1, + STATE(6178), 1, sym_ms_unaligned_ptr_modifier, - STATE(10900), 1, + STATE(11657), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11504), 2, + ACTIONS(11866), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6127), 2, + STATE(5995), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6966), 2, + STATE(7005), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, + ACTIONS(11787), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11540), 4, + ACTIONS(11888), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5533), 5, + STATE(5436), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -586400,55 +608284,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [177380] = 21, + [178266] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(11856), 1, sym_identifier, - ACTIONS(11496), 1, + ACTIONS(11858), 1, anon_sym_LPAREN2, - ACTIONS(11498), 1, + ACTIONS(11860), 1, anon_sym_STAR, - ACTIONS(11500), 1, + ACTIONS(11862), 1, anon_sym_AMP_AMP, - ACTIONS(11502), 1, + ACTIONS(11864), 1, anon_sym_AMP, - ACTIONS(11508), 1, + ACTIONS(11870), 1, sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(6080), 1, + STATE(6178), 1, sym_ms_unaligned_ptr_modifier, - STATE(8242), 1, + STATE(8251), 1, sym__type_declarator, - STATE(10974), 1, + STATE(8576), 1, + sym_pointer_type_declarator, + STATE(11686), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11504), 2, + ACTIONS(11866), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5846), 2, + STATE(6199), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7085), 2, + STATE(7172), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, + ACTIONS(11787), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11506), 4, + ACTIONS(11868), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, + STATE(8574), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -586468,91 +608352,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [177469] = 11, + [178355] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, - anon_sym_COLON, - ACTIONS(9658), 1, - anon_sym_LBRACE, - STATE(4569), 1, - sym_field_declaration_list, - STATE(4673), 1, - sym_attribute_specifier, - STATE(9463), 1, - sym_virtual_specifier, - STATE(10317), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, + ACTIONS(7347), 1, anon_sym___attribute, - ACTIONS(6828), 5, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(11172), 1, anon_sym_LPAREN2, + ACTIONS(11174), 1, anon_sym_STAR, + ACTIONS(11176), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(6826), 30, + ACTIONS(11178), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(11186), 1, + anon_sym_LBRACK, + STATE(4330), 1, + sym_parameter_list, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(8314), 1, + sym__function_declarator_seq, + STATE(8387), 1, + sym__abstract_declarator, + ACTIONS(10365), 2, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_operator, - [177538] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3638), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3636), 42, + STATE(4109), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8312), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(10352), 12, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -586564,76 +608402,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [177591] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3682), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3680), 42, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + ACTIONS(7345), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [177644] = 3, + anon_sym_COLON, + 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, + [178436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2954), 3, + ACTIONS(3664), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(2949), 42, + ACTIONS(3662), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -586676,64 +608466,65 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [177697] = 3, + [178489] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3728), 42, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, + ACTIONS(11927), 1, + anon_sym_LPAREN2, + ACTIONS(9027), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + 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___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [177750] = 3, + anon_sym_LBRACK, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(9029), 30, + 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___attribute__, + anon_sym_LBRACK_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_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [178544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3706), 3, + ACTIONS(3620), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3704), 42, + ACTIONS(3618), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -586776,100 +608567,62 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [177803] = 21, + [178597] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11929), 1, + sym_identifier, + ACTIONS(11931), 1, anon_sym_LPAREN2, - ACTIONS(11423), 1, - sym_ms_restrict_modifier, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11544), 1, + ACTIONS(11933), 1, anon_sym_STAR, - ACTIONS(11546), 1, + ACTIONS(11935), 1, anon_sym_AMP_AMP, - ACTIONS(11548), 1, + ACTIONS(11937), 1, anon_sym_AMP, - STATE(4985), 1, - sym_parameter_list, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6485), 1, + ACTIONS(11941), 1, + sym_primitive_type, + STATE(3497), 1, sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8820), 1, - sym__abstract_declarator, - ACTIONS(11425), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11427), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(11433), 2, + STATE(4859), 1, + sym__type_declarator, + STATE(5594), 1, + sym_pointer_type_declarator, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(11053), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6153), 2, + ACTIONS(11866), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5995), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7066), 2, + STATE(7103), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6459), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [177892] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4044), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(4042), 42, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, + ACTIONS(11787), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11939), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(5593), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -586882,44 +608635,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [177945] = 3, + [178686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3706), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3704), 42, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + ACTIONS(8889), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8891), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, + anon_sym_LBRACK_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_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [178739] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8897), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___attribute, - anon_sym___declspec, + anon_sym_LBRACK, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8899), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_LBRACK_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_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [178792] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11878), 1, + sym_identifier, + ACTIONS(11880), 1, + anon_sym_LPAREN2, + ACTIONS(11882), 1, + anon_sym_STAR, + ACTIONS(11884), 1, + anon_sym_AMP_AMP, + ACTIONS(11886), 1, + anon_sym_AMP, + ACTIONS(11890), 1, + sym_primitive_type, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(4704), 1, + sym__type_declarator, + STATE(5448), 1, + sym_pointer_type_declarator, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(11657), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11866), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6198), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7005), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11787), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11888), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(5436), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -586932,57 +608803,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [177998] = 17, + [178881] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7005), 1, - anon_sym___attribute, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10922), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(10924), 1, + ACTIONS(11896), 1, anon_sym_STAR, - ACTIONS(10926), 1, + ACTIONS(11898), 1, anon_sym_AMP_AMP, - ACTIONS(10928), 1, + ACTIONS(11900), 1, anon_sym_AMP, - ACTIONS(10936), 1, - anon_sym_LBRACK, - STATE(4238), 1, + ACTIONS(11904), 1, + sym_primitive_type, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(3497), 1, sym_alignas_qualifier, - STATE(4243), 1, - sym_parameter_list, - STATE(8183), 1, - sym__function_declarator_seq, - STATE(8312), 1, - sym__abstract_declarator, - ACTIONS(10014), 2, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8446), 1, + sym__type_declarator, + STATE(11156), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3954), 2, + ACTIONS(11866), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6247), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7095), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8180), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(10001), 12, + ACTIONS(11787), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -586994,69 +608871,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7003), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - 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, - [178079] = 21, + [178970] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11550), 1, + ACTIONS(11929), 1, sym_identifier, - ACTIONS(11552), 1, + ACTIONS(11931), 1, anon_sym_LPAREN2, - ACTIONS(11554), 1, + ACTIONS(11933), 1, anon_sym_STAR, - ACTIONS(11556), 1, + ACTIONS(11935), 1, anon_sym_AMP_AMP, - ACTIONS(11558), 1, + ACTIONS(11937), 1, anon_sym_AMP, - ACTIONS(11562), 1, + ACTIONS(11941), 1, sym_primitive_type, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(4898), 1, + STATE(5022), 1, sym__type_declarator, - STATE(5606), 1, + STATE(5594), 1, sym_pointer_type_declarator, - STATE(6080), 1, + STATE(6178), 1, sym_ms_unaligned_ptr_modifier, - STATE(10593), 1, + STATE(11053), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11504), 2, + ACTIONS(11866), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6133), 2, + STATE(6219), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6855), 2, + STATE(7054), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, + ACTIONS(11787), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11560), 4, + ACTIONS(11939), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5602), 5, + STATE(5593), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -587076,55 +608939,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [178168] = 21, + [179059] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(11496), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11508), 1, + ACTIONS(11904), 1, sym_primitive_type, - ACTIONS(11564), 1, + ACTIONS(11912), 1, anon_sym_STAR, - ACTIONS(11566), 1, + ACTIONS(11914), 1, anon_sym_AMP_AMP, - ACTIONS(11568), 1, + ACTIONS(11916), 1, anon_sym_AMP, - STATE(3117), 1, + STATE(3180), 1, sym_pointer_type_declarator, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3540), 1, + STATE(3681), 1, sym__type_declarator, - STATE(6080), 1, + STATE(6178), 1, sym_ms_unaligned_ptr_modifier, - STATE(10884), 1, + STATE(11037), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11504), 2, + ACTIONS(11866), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5846), 2, + STATE(6211), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6947), 2, + STATE(7084), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, + ACTIONS(11787), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11506), 4, + ACTIONS(11902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, + STATE(3152), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -587144,14 +609007,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [178257] = 3, + [179148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3878), 3, + ACTIONS(3315), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3876), 42, + ACTIONS(3310), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -587194,112 +609057,32 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [178310] = 3, + [179201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8579), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - 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___attribute, - anon_sym_LBRACK, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(8581), 31, - 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___attribute__, + ACTIONS(3602), 3, + anon_sym_COLON_COLON, anon_sym_LBRACK_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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [178363] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11570), 1, - sym_identifier, - ACTIONS(11572), 1, - anon_sym_LPAREN2, - ACTIONS(11574), 1, - anon_sym_STAR, - ACTIONS(11576), 1, - anon_sym_AMP_AMP, - ACTIONS(11578), 1, - anon_sym_AMP, - ACTIONS(11582), 1, - sym_primitive_type, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(4630), 1, - sym__type_declarator, - STATE(5362), 1, - sym_pointer_type_declarator, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(11462), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11504), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5846), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6873), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11580), 4, + anon_sym_LBRACK_COLON, + ACTIONS(3600), 42, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5356), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -587312,62 +609095,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [178452] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, - anon_sym_LPAREN2, - ACTIONS(11508), 1, - sym_primitive_type, - ACTIONS(11564), 1, - anon_sym_STAR, - ACTIONS(11566), 1, - anon_sym_AMP_AMP, - ACTIONS(11568), 1, - anon_sym_AMP, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3491), 1, - sym__type_declarator, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(10884), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11504), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5846), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6934), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11506), 4, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [179254] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3624), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3622), 42, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -587380,14 +609145,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [178541] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [179307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3678), 3, + ACTIONS(3602), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3676), 42, + ACTIONS(3600), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -587430,45 +609207,63 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [178594] = 17, + [179360] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6997), 1, - anon_sym___attribute, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10922), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11929), 1, + sym_identifier, + ACTIONS(11931), 1, anon_sym_LPAREN2, - ACTIONS(10924), 1, + ACTIONS(11933), 1, anon_sym_STAR, - ACTIONS(10926), 1, + ACTIONS(11935), 1, anon_sym_AMP_AMP, - ACTIONS(10928), 1, + ACTIONS(11937), 1, anon_sym_AMP, - ACTIONS(10936), 1, - anon_sym_LBRACK, - STATE(4238), 1, + ACTIONS(11941), 1, + sym_primitive_type, + STATE(3497), 1, sym_alignas_qualifier, - STATE(4243), 1, - sym_parameter_list, - STATE(8183), 1, - sym__function_declarator_seq, - STATE(8309), 1, - sym__abstract_declarator, - ACTIONS(10014), 2, + STATE(4859), 1, + sym__type_declarator, + STATE(5594), 1, + sym_pointer_type_declarator, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(11053), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3954), 2, + ACTIONS(11866), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6243), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7103), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8180), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(10001), 12, + ACTIONS(11787), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11939), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5593), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -587480,69 +609275,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6995), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - 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, - [178675] = 21, + [179449] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11550), 1, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(11552), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11554), 1, + ACTIONS(11904), 1, + sym_primitive_type, + ACTIONS(11906), 1, anon_sym_STAR, - ACTIONS(11556), 1, + ACTIONS(11908), 1, anon_sym_AMP_AMP, - ACTIONS(11558), 1, + ACTIONS(11910), 1, anon_sym_AMP, - ACTIONS(11562), 1, - sym_primitive_type, - STATE(3482), 1, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(3497), 1, sym_alignas_qualifier, - STATE(4719), 1, + STATE(4975), 1, sym__type_declarator, - STATE(5606), 1, - sym_pointer_type_declarator, - STATE(6080), 1, + STATE(6178), 1, sym_ms_unaligned_ptr_modifier, - STATE(10593), 1, + STATE(11304), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11504), 2, + ACTIONS(11866), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6150), 2, + STATE(5995), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6881), 2, + STATE(7118), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, + ACTIONS(11787), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11560), 4, + ACTIONS(11902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5602), 5, + STATE(3152), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -587562,55 +609343,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [178764] = 21, + [179538] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(11943), 1, sym_identifier, - ACTIONS(11496), 1, + ACTIONS(11945), 1, anon_sym_LPAREN2, - ACTIONS(11508), 1, - sym_primitive_type, - ACTIONS(11524), 1, + ACTIONS(11947), 1, anon_sym_STAR, - ACTIONS(11526), 1, + ACTIONS(11949), 1, anon_sym_AMP_AMP, - ACTIONS(11528), 1, + ACTIONS(11951), 1, anon_sym_AMP, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(3482), 1, + ACTIONS(11955), 1, + sym_primitive_type, + STATE(3497), 1, sym_alignas_qualifier, - STATE(4667), 1, + STATE(4997), 1, sym__type_declarator, - STATE(6080), 1, + STATE(5644), 1, + sym_pointer_type_declarator, + STATE(6178), 1, sym_ms_unaligned_ptr_modifier, - STATE(11121), 1, + STATE(10893), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11504), 2, + ACTIONS(11866), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6142), 2, + STATE(6259), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6839), 2, + STATE(7125), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, + ACTIONS(11787), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11506), 4, + ACTIONS(11953), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, + STATE(5575), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -587630,64 +609411,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [178853] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8551), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - 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___attribute, - anon_sym_LBRACK, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(8553), 31, - 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___attribute__, - anon_sym_LBRACK_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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [178906] = 3, + [179627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3886), 3, + ACTIONS(3680), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3884), 42, + ACTIONS(3678), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -587718,172 +609449,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [178959] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8637), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - 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___attribute, - anon_sym_LBRACK, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(8639), 31, - anon_sym_DOT_DOT_DOT, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [179680] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7349), 1, + anon_sym___attribute, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(11172), 1, + anon_sym_LPAREN2, + ACTIONS(11174), 1, + anon_sym_STAR, + ACTIONS(11176), 1, + anon_sym_AMP_AMP, + ACTIONS(11178), 1, + anon_sym_AMP, + ACTIONS(11186), 1, + anon_sym_LBRACK, + STATE(4330), 1, + sym_parameter_list, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(8314), 1, + sym__function_declarator_seq, + STATE(8382), 1, + sym__abstract_declarator, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4109), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8312), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(7351), 13, 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_RPAREN, + anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [179012] = 3, + [179761] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8555), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - 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(7341), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(8557), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(11172), 1, anon_sym_LPAREN2, + ACTIONS(11174), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11176), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACK_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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [179065] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8637), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(11178), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute, + ACTIONS(11186), 1, anon_sym_LBRACK, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(8639), 33, - anon_sym_DOT_DOT_DOT, + STATE(4330), 1, + sym_parameter_list, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(8314), 1, + sym__function_declarator_seq, + STATE(8384), 1, + sym__abstract_declarator, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6260), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8312), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(7343), 13, 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_RPAREN, + anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [179118] = 3, + [179842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8641), 14, + ACTIONS(8889), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -587898,7 +609607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym___asm, anon_sym_DOT, - ACTIONS(8643), 31, + ACTIONS(8891), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -587930,73 +609639,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [179171] = 3, + [179895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8551), 12, + ACTIONS(8897), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(8553), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_LBRACK_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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [179224] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8641), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, anon_sym_DOT, - ACTIONS(8643), 33, + ACTIONS(8899), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -588007,12 +609668,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___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -588029,56 +609687,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [179277] = 21, + [179948] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11570), 1, + ACTIONS(11878), 1, sym_identifier, - ACTIONS(11572), 1, + ACTIONS(11880), 1, anon_sym_LPAREN2, - ACTIONS(11574), 1, + ACTIONS(11882), 1, anon_sym_STAR, - ACTIONS(11576), 1, + ACTIONS(11884), 1, anon_sym_AMP_AMP, - ACTIONS(11578), 1, + ACTIONS(11886), 1, anon_sym_AMP, - ACTIONS(11582), 1, + ACTIONS(11890), 1, sym_primitive_type, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(4609), 1, + STATE(4646), 1, sym__type_declarator, - STATE(5362), 1, + STATE(5448), 1, sym_pointer_type_declarator, - STATE(6080), 1, + STATE(6178), 1, sym_ms_unaligned_ptr_modifier, - STATE(11462), 1, + STATE(11657), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11504), 2, + ACTIONS(11866), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6112), 2, + STATE(6213), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6980), 2, + STATE(7168), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, + ACTIONS(11787), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11580), 4, + ACTIONS(11888), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5356), 5, + STATE(5436), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -588098,123 +609757,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [179366] = 21, + [180037] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11530), 1, + ACTIONS(11943), 1, sym_identifier, - ACTIONS(11532), 1, + ACTIONS(11945), 1, anon_sym_LPAREN2, - ACTIONS(11534), 1, + ACTIONS(11947), 1, anon_sym_STAR, - ACTIONS(11536), 1, + ACTIONS(11949), 1, anon_sym_AMP_AMP, - ACTIONS(11538), 1, + ACTIONS(11951), 1, anon_sym_AMP, - ACTIONS(11542), 1, + ACTIONS(11955), 1, sym_primitive_type, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(4715), 1, + STATE(4997), 1, sym__type_declarator, - STATE(5607), 1, - sym_pointer_type_declarator, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(10900), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11504), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5846), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6829), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11540), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5533), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [179455] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, - anon_sym_LPAREN2, - ACTIONS(11508), 1, - sym_primitive_type, - ACTIONS(11564), 1, - anon_sym_STAR, - ACTIONS(11566), 1, - anon_sym_AMP_AMP, - ACTIONS(11568), 1, - anon_sym_AMP, - STATE(3117), 1, + STATE(5644), 1, sym_pointer_type_declarator, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3598), 1, - sym__type_declarator, - STATE(6080), 1, + STATE(6178), 1, sym_ms_unaligned_ptr_modifier, - STATE(10884), 1, + STATE(10893), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11504), 2, + ACTIONS(11866), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6109), 2, + STATE(5995), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6896), 2, + STATE(7125), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, + ACTIONS(11787), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11506), 4, + ACTIONS(11953), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, + STATE(5575), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -588234,128 +609825,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [179544] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7009), 1, - anon_sym___attribute, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10922), 1, - anon_sym_LPAREN2, - ACTIONS(10924), 1, - anon_sym_STAR, - ACTIONS(10926), 1, - anon_sym_AMP_AMP, - ACTIONS(10928), 1, - anon_sym_AMP, - ACTIONS(10936), 1, - anon_sym_LBRACK, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(4243), 1, - sym_parameter_list, - STATE(8183), 1, - sym__function_declarator_seq, - STATE(8313), 1, - sym__abstract_declarator, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3954), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8180), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(7007), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - 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, - [179625] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2910), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(2905), 42, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [179678] = 3, + [180126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3008), 3, + ACTIONS(3389), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3003), 42, + ACTIONS(3384), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -588398,55 +609875,55 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [179731] = 21, + [180179] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11570), 1, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(11572), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11574), 1, + ACTIONS(11904), 1, + sym_primitive_type, + ACTIONS(11912), 1, anon_sym_STAR, - ACTIONS(11576), 1, + ACTIONS(11914), 1, anon_sym_AMP_AMP, - ACTIONS(11578), 1, + ACTIONS(11916), 1, anon_sym_AMP, - ACTIONS(11582), 1, - sym_primitive_type, - STATE(3482), 1, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(3497), 1, sym_alignas_qualifier, - STATE(4600), 1, + STATE(3696), 1, sym__type_declarator, - STATE(5362), 1, - sym_pointer_type_declarator, - STATE(6080), 1, + STATE(6178), 1, sym_ms_unaligned_ptr_modifier, - STATE(11462), 1, + STATE(11037), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11504), 2, + ACTIONS(11866), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5846), 2, + STATE(6207), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7009), 2, + STATE(6961), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, + ACTIONS(11787), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11580), 4, + ACTIONS(11902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5356), 5, + STATE(3152), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -588466,55 +609943,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [179820] = 21, + [180268] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11550), 1, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(11552), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11554), 1, + ACTIONS(11904), 1, + sym_primitive_type, + ACTIONS(11906), 1, anon_sym_STAR, - ACTIONS(11556), 1, + ACTIONS(11908), 1, anon_sym_AMP_AMP, - ACTIONS(11558), 1, + ACTIONS(11910), 1, anon_sym_AMP, - ACTIONS(11562), 1, - sym_primitive_type, - STATE(3482), 1, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(3497), 1, sym_alignas_qualifier, - STATE(4719), 1, + STATE(4955), 1, sym__type_declarator, - STATE(5606), 1, - sym_pointer_type_declarator, - STATE(6080), 1, + STATE(6178), 1, sym_ms_unaligned_ptr_modifier, - STATE(10593), 1, + STATE(11304), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11504), 2, + ACTIONS(11866), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5846), 2, + STATE(6231), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6881), 2, + STATE(7117), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, + ACTIONS(11787), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11560), 4, + ACTIONS(11902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5602), 5, + STATE(3152), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -588534,55 +610011,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [179909] = 21, + [180357] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11530), 1, + ACTIONS(11929), 1, sym_identifier, - ACTIONS(11532), 1, + ACTIONS(11931), 1, anon_sym_LPAREN2, - ACTIONS(11534), 1, + ACTIONS(11933), 1, anon_sym_STAR, - ACTIONS(11536), 1, + ACTIONS(11935), 1, anon_sym_AMP_AMP, - ACTIONS(11538), 1, + ACTIONS(11937), 1, anon_sym_AMP, - ACTIONS(11542), 1, + ACTIONS(11941), 1, sym_primitive_type, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(4715), 1, + STATE(4872), 1, sym__type_declarator, - STATE(5607), 1, + STATE(5594), 1, sym_pointer_type_declarator, - STATE(6080), 1, + STATE(6178), 1, sym_ms_unaligned_ptr_modifier, - STATE(10900), 1, + STATE(11053), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11504), 2, + ACTIONS(11866), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6138), 2, + STATE(5995), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6829), 2, + STATE(7119), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, + ACTIONS(11787), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11540), 4, + ACTIONS(11939), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5533), 5, + STATE(5593), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -588602,14 +610079,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [179998] = 3, + [180446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3878), 3, + ACTIONS(3668), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3876), 42, + ACTIONS(3666), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -588652,12 +610129,60 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [180051] = 4, + [180499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11584), 1, - anon_sym_LPAREN2, - ACTIONS(8583), 12, + ACTIONS(3606), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3604), 42, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [180552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8938), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -588670,9 +610195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym___asm, anon_sym_DOT, - ACTIONS(8585), 32, + ACTIONS(8940), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -588703,55 +610229,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [180106] = 21, + [180605] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(11496), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11498), 1, + ACTIONS(11896), 1, anon_sym_STAR, - ACTIONS(11500), 1, + ACTIONS(11898), 1, anon_sym_AMP_AMP, - ACTIONS(11502), 1, + ACTIONS(11900), 1, anon_sym_AMP, - ACTIONS(11508), 1, + ACTIONS(11904), 1, sym_primitive_type, - STATE(3117), 1, + STATE(3180), 1, sym_pointer_type_declarator, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(6080), 1, + STATE(6178), 1, sym_ms_unaligned_ptr_modifier, - STATE(8246), 1, + STATE(8430), 1, sym__type_declarator, - STATE(10974), 1, + STATE(11156), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11504), 2, + ACTIONS(11866), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6148), 2, + STATE(5995), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6951), 2, + STATE(7096), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, + ACTIONS(11787), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11506), 4, + ACTIONS(11902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, + STATE(3152), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -588771,82 +610297,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [180195] = 21, + [180694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11530), 1, - sym_identifier, - ACTIONS(11532), 1, + ACTIONS(9007), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(9009), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_LBRACK_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_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [180747] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11957), 1, anon_sym_LPAREN2, - ACTIONS(11534), 1, + ACTIONS(9027), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(9029), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, - ACTIONS(11536), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11538), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_LBRACK_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_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [180802] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8979), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11542), 1, - sym_primitive_type, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(4899), 1, - sym__type_declarator, - STATE(5607), 1, - sym_pointer_type_declarator, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(10900), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11504), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5846), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6825), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11540), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5533), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [180284] = 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8981), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_LBRACK_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_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [180855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3650), 3, + ACTIONS(4284), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3648), 42, + ACTIONS(4282), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -588889,41 +610498,45 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [180337] = 8, + [180908] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(11586), 1, - sym_ms_restrict_modifier, - STATE(6312), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(11589), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11592), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6140), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(6600), 5, - anon_sym_AMP, + ACTIONS(6821), 1, anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(10363), 1, anon_sym_const, - anon_sym___asm, - ACTIONS(6602), 32, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11172), 1, anon_sym_LPAREN2, + ACTIONS(11174), 1, anon_sym_STAR, + ACTIONS(11176), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(11178), 1, + anon_sym_AMP, + ACTIONS(11186), 1, + anon_sym_LBRACK, + STATE(4330), 1, + sym_parameter_list, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(8314), 1, + sym__function_declarator_seq, + STATE(8385), 1, + sym__abstract_declarator, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4109), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8312), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(10352), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -588935,23 +610548,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(6823), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + 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, - [180400] = 3, + [180989] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, + anon_sym_LPAREN2, + ACTIONS(11896), 1, + anon_sym_STAR, + ACTIONS(11898), 1, + anon_sym_AMP_AMP, + ACTIONS(11900), 1, + anon_sym_AMP, + ACTIONS(11904), 1, + sym_primitive_type, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8430), 1, + sym__type_declarator, + STATE(11156), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11866), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6202), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7096), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11787), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [181078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4088), 3, + ACTIONS(3660), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(4086), 42, + ACTIONS(3658), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -588994,55 +610680,55 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [180453] = 21, + [181131] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(11943), 1, sym_identifier, - ACTIONS(11496), 1, + ACTIONS(11945), 1, anon_sym_LPAREN2, - ACTIONS(11508), 1, - sym_primitive_type, - ACTIONS(11524), 1, + ACTIONS(11947), 1, anon_sym_STAR, - ACTIONS(11526), 1, + ACTIONS(11949), 1, anon_sym_AMP_AMP, - ACTIONS(11528), 1, + ACTIONS(11951), 1, anon_sym_AMP, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(3482), 1, + ACTIONS(11955), 1, + sym_primitive_type, + STATE(3497), 1, sym_alignas_qualifier, - STATE(4669), 1, + STATE(4963), 1, sym__type_declarator, - STATE(6080), 1, + STATE(5644), 1, + sym_pointer_type_declarator, + STATE(6178), 1, sym_ms_unaligned_ptr_modifier, - STATE(11121), 1, + STATE(10893), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11504), 2, + ACTIONS(11866), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5846), 2, + STATE(6239), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6841), 2, + STATE(7024), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, + ACTIONS(11787), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11506), 4, + ACTIONS(11953), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, + STATE(5575), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -589062,62 +610748,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [180542] = 21, + [181220] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, + ACTIONS(8156), 1, + anon_sym_COLON, + ACTIONS(10069), 1, + anon_sym_LBRACE, + STATE(4730), 1, + sym_field_declaration_list, + STATE(4978), 1, + sym_attribute_specifier, + STATE(9508), 1, + sym_virtual_specifier, + STATE(10399), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7237), 5, anon_sym_LPAREN2, - ACTIONS(11508), 1, - sym_primitive_type, - ACTIONS(11564), 1, anon_sym_STAR, - ACTIONS(11566), 1, anon_sym_AMP_AMP, - ACTIONS(11568), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(7235), 30, anon_sym_AMP, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3540), 1, - sym__type_declarator, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(10884), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11504), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6113), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6947), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -589130,55 +610802,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [180631] = 21, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_operator, + [181289] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11510), 1, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(11512), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11514), 1, + ACTIONS(11904), 1, + sym_primitive_type, + ACTIONS(11906), 1, anon_sym_STAR, - ACTIONS(11516), 1, + ACTIONS(11908), 1, anon_sym_AMP_AMP, - ACTIONS(11518), 1, + ACTIONS(11910), 1, anon_sym_AMP, - ACTIONS(11522), 1, - sym_primitive_type, - STATE(3482), 1, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(3497), 1, sym_alignas_qualifier, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8155), 1, + STATE(4933), 1, sym__type_declarator, - STATE(8475), 1, - sym_pointer_type_declarator, - STATE(10589), 1, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(11304), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11504), 2, + ACTIONS(11866), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5846), 2, + STATE(6206), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6877), 2, + STATE(7116), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, + ACTIONS(11787), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11520), 4, + ACTIONS(11902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(8383), 5, + STATE(3152), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -589198,55 +610874,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [180720] = 21, + [181378] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11510), 1, + ACTIONS(11856), 1, sym_identifier, - ACTIONS(11512), 1, + ACTIONS(11858), 1, anon_sym_LPAREN2, - ACTIONS(11514), 1, + ACTIONS(11860), 1, anon_sym_STAR, - ACTIONS(11516), 1, + ACTIONS(11862), 1, anon_sym_AMP_AMP, - ACTIONS(11518), 1, + ACTIONS(11864), 1, anon_sym_AMP, - ACTIONS(11522), 1, + ACTIONS(11870), 1, sym_primitive_type, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(6080), 1, + STATE(6178), 1, sym_ms_unaligned_ptr_modifier, - STATE(8140), 1, + STATE(8266), 1, sym__type_declarator, - STATE(8475), 1, + STATE(8576), 1, sym_pointer_type_declarator, - STATE(10589), 1, + STATE(11686), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11504), 2, + ACTIONS(11866), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6144), 2, + STATE(5995), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6960), 2, + STATE(7078), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, + ACTIONS(11787), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11520), 4, + ACTIONS(11868), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(8383), 5, + STATE(8574), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -589266,105 +610942,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [180809] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8555), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(8557), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_LBRACK_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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [180862] = 21, + [181467] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11510), 1, + ACTIONS(11943), 1, sym_identifier, - ACTIONS(11512), 1, + ACTIONS(11945), 1, anon_sym_LPAREN2, - ACTIONS(11514), 1, + ACTIONS(11947), 1, anon_sym_STAR, - ACTIONS(11516), 1, + ACTIONS(11949), 1, anon_sym_AMP_AMP, - ACTIONS(11518), 1, + ACTIONS(11951), 1, anon_sym_AMP, - ACTIONS(11522), 1, + ACTIONS(11955), 1, sym_primitive_type, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8155), 1, + STATE(4850), 1, sym__type_declarator, - STATE(8475), 1, + STATE(5644), 1, sym_pointer_type_declarator, - STATE(10589), 1, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(10893), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11504), 2, + ACTIONS(11866), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6089), 2, + STATE(5995), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6877), 2, + STATE(7161), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, + ACTIONS(11787), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11520), 4, + ACTIONS(11953), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(8383), 5, + STATE(5575), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -589384,62 +611010,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [180951] = 21, + [181556] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, + ACTIONS(7353), 1, + anon_sym___attribute, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(11172), 1, anon_sym_LPAREN2, - ACTIONS(11498), 1, + ACTIONS(11174), 1, anon_sym_STAR, - ACTIONS(11500), 1, + ACTIONS(11176), 1, anon_sym_AMP_AMP, - ACTIONS(11502), 1, + ACTIONS(11178), 1, anon_sym_AMP, - ACTIONS(11508), 1, - sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(3482), 1, + ACTIONS(11186), 1, + anon_sym_LBRACK, + STATE(4330), 1, + sym_parameter_list, + STATE(4333), 1, sym_alignas_qualifier, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8279), 1, - sym__type_declarator, - STATE(10974), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, + STATE(8314), 1, + sym__function_declarator_seq, + STATE(8386), 1, + sym__abstract_declarator, + ACTIONS(10365), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11504), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5846), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6959), 2, + STATE(4109), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11506), 4, + STATE(8312), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(7355), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + 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, + [181637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3620), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3618), 42, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -589452,62 +611112,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [181040] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, - anon_sym_LPAREN2, - ACTIONS(11508), 1, - sym_primitive_type, - ACTIONS(11524), 1, - anon_sym_STAR, - ACTIONS(11526), 1, - anon_sym_AMP_AMP, - ACTIONS(11528), 1, - anon_sym_AMP, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(4669), 1, - sym__type_declarator, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(11121), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11504), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6092), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6841), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11506), 4, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [181690] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3345), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3340), 42, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -589520,63 +611162,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [181129] = 21, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [181743] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11550), 1, - sym_identifier, - ACTIONS(11552), 1, + ACTIONS(7353), 1, + anon_sym___asm, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(11172), 1, anon_sym_LPAREN2, - ACTIONS(11554), 1, + ACTIONS(11186), 1, + anon_sym_LBRACK, + ACTIONS(11598), 1, anon_sym_STAR, - ACTIONS(11556), 1, + ACTIONS(11600), 1, anon_sym_AMP_AMP, - ACTIONS(11558), 1, + ACTIONS(11602), 1, anon_sym_AMP, - ACTIONS(11562), 1, - sym_primitive_type, - STATE(3482), 1, + STATE(4333), 1, sym_alignas_qualifier, - STATE(4920), 1, - sym__type_declarator, - STATE(5606), 1, - sym_pointer_type_declarator, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(10593), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, + STATE(4562), 1, + sym_parameter_list, + STATE(8314), 1, + sym__function_declarator_seq, + STATE(8477), 1, + sym__abstract_declarator, + ACTIONS(10365), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11504), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5846), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6927), 2, + STATE(4109), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11560), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5602), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, + STATE(8312), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7355), 12, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(10352), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -589588,63 +611237,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [181218] = 21, + [181823] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11570), 1, - sym_identifier, - ACTIONS(11572), 1, + ACTIONS(7347), 1, + anon_sym___asm, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(11172), 1, anon_sym_LPAREN2, - ACTIONS(11574), 1, + ACTIONS(11186), 1, + anon_sym_LBRACK, + ACTIONS(11598), 1, anon_sym_STAR, - ACTIONS(11576), 1, + ACTIONS(11600), 1, anon_sym_AMP_AMP, - ACTIONS(11578), 1, + ACTIONS(11602), 1, anon_sym_AMP, - ACTIONS(11582), 1, - sym_primitive_type, - STATE(3482), 1, + STATE(4333), 1, sym_alignas_qualifier, - STATE(4630), 1, - sym__type_declarator, - STATE(5362), 1, - sym_pointer_type_declarator, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(11462), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, + STATE(4562), 1, + sym_parameter_list, + STATE(8314), 1, + sym__function_declarator_seq, + STATE(8494), 1, + sym__abstract_declarator, + ACTIONS(10365), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11504), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6132), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6873), 2, + STATE(4109), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11423), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11580), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5356), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, + STATE(8312), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7345), 12, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(10352), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -589656,44 +611300,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [181307] = 17, + [181903] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7001), 1, - anon_sym___attribute, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10922), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(10924), 1, + ACTIONS(6463), 1, anon_sym_STAR, - ACTIONS(10926), 1, + ACTIONS(6465), 1, anon_sym_AMP_AMP, - ACTIONS(10928), 1, + ACTIONS(6467), 1, anon_sym_AMP, - ACTIONS(10936), 1, + ACTIONS(8123), 1, + anon_sym_const, + ACTIONS(11787), 1, + sym_ms_restrict_modifier, + ACTIONS(11793), 1, anon_sym_LBRACK, - STATE(4238), 1, + STATE(2726), 1, sym_alignas_qualifier, - STATE(4243), 1, + STATE(4706), 1, sym_parameter_list, - STATE(8183), 1, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8598), 1, sym__function_declarator_seq, - STATE(8310), 1, + STATE(8989), 1, sym__abstract_declarator, - ACTIONS(10014), 2, + ACTIONS(8125), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6107), 2, + ACTIONS(11789), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11791), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6266), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7257), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8180), 5, + ACTIONS(6859), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(10001), 12, + ACTIONS(8117), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -589706,76 +611367,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6999), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - 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, - [181388] = 21, + [181991] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(11423), 1, - sym_ms_restrict_modifier, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11544), 1, + ACTIONS(6463), 1, anon_sym_STAR, - ACTIONS(11546), 1, + ACTIONS(6465), 1, anon_sym_AMP_AMP, - ACTIONS(11548), 1, + ACTIONS(6467), 1, anon_sym_AMP, - STATE(4985), 1, + ACTIONS(8123), 1, + anon_sym_const, + ACTIONS(11787), 1, + sym_ms_restrict_modifier, + ACTIONS(11793), 1, + anon_sym_LBRACK, + STATE(2726), 1, + sym_alignas_qualifier, + STATE(4706), 1, sym_parameter_list, - STATE(6080), 1, + STATE(6178), 1, sym_ms_unaligned_ptr_modifier, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(8837), 1, + STATE(9003), 1, sym__abstract_declarator, - ACTIONS(11425), 2, + ACTIONS(8125), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11789), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11427), 2, + ACTIONS(11791), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5846), 2, + STATE(5995), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7067), 2, + STATE(7248), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8389), 5, + ACTIONS(6823), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6497), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11421), 12, + ACTIONS(8117), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -589788,78 +611434,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [181477] = 7, + [182079] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11595), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11597), 1, - anon_sym_AMP_AMP, - ACTIONS(11599), 1, - anon_sym_or, - ACTIONS(11601), 1, - anon_sym_and, - ACTIONS(8959), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, + ACTIONS(7903), 1, anon_sym_requires, - ACTIONS(8961), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_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_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [181537] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10200), 1, + ACTIONS(11959), 1, anon_sym_DASH_GT, - ACTIONS(10206), 1, - anon_sym_requires, - STATE(6236), 1, + STATE(6314), 1, sym_trailing_return_type, - ACTIONS(10203), 2, + ACTIONS(7897), 2, anon_sym_final, anon_sym_override, - STATE(6389), 2, + STATE(6457), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6524), 2, + STATE(6639), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8087), 9, + ACTIONS(8905), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -589869,7 +611462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8089), 26, + ACTIONS(8907), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -589896,25 +611489,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [181601] = 9, + [182143] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7598), 1, - anon_sym_requires, - ACTIONS(10200), 1, + ACTIONS(10574), 1, anon_sym_DASH_GT, - STATE(6213), 1, + ACTIONS(10621), 1, + anon_sym_requires, + STATE(6318), 1, sym_trailing_return_type, - ACTIONS(7596), 2, + ACTIONS(10618), 2, anon_sym_final, anon_sym_override, - STATE(6389), 2, + STATE(6457), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6524), 2, + STATE(6637), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8087), 9, + ACTIONS(8424), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -589924,7 +611517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8089), 26, + ACTIONS(8422), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -589951,167 +611544,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [181665] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5282), 1, - anon_sym_decltype, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(10213), 1, - sym_auto, - STATE(4817), 1, - sym_decltype_auto, - ACTIONS(6800), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(6798), 34, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [181725] = 17, + [182207] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, - anon_sym___asm, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10922), 1, - anon_sym_LPAREN2, - ACTIONS(10936), 1, - anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_STAR, - ACTIONS(11253), 1, - anon_sym_AMP_AMP, - ACTIONS(11255), 1, - anon_sym_AMP, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(4486), 1, - sym_parameter_list, - STATE(8183), 1, - sym__function_declarator_seq, - STATE(8358), 1, - sym__abstract_declarator, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3954), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8180), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6497), 12, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(7903), 1, + anon_sym_requires, + ACTIONS(10574), 1, + anon_sym_DASH_GT, + STATE(6319), 1, + sym_trailing_return_type, + ACTIONS(7897), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [181805] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8246), 1, - anon_sym_LPAREN2, - ACTIONS(8262), 1, - anon_sym_LBRACK, - ACTIONS(8520), 1, - anon_sym_STAR, - ACTIONS(8522), 1, - anon_sym_AMP_AMP, - ACTIONS(8524), 1, - anon_sym_AMP, - STATE(2180), 1, - sym_parameter_list, - STATE(6536), 1, - sym__function_declarator_seq, - STATE(6755), 1, - sym__abstract_declarator, - STATE(6612), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9074), 8, + STATE(6457), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6637), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 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(9072), 23, + ACTIONS(8422), 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_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -590124,36 +611599,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [181875] = 9, + [182271] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9630), 1, - anon_sym_DASH_GT, - ACTIONS(9651), 1, + ACTIONS(7835), 1, anon_sym_requires, - STATE(6234), 1, + ACTIONS(11962), 1, + anon_sym_DASH_GT, + STATE(6353), 1, sym_trailing_return_type, - ACTIONS(9648), 2, + ACTIONS(7829), 2, anon_sym_final, anon_sym_override, - STATE(6389), 2, + STATE(6501), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6558), 2, + STATE(6658), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7546), 9, + ACTIONS(8905), 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(7544), 26, + ACTIONS(8907), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -590164,11 +611640,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -590180,25 +611653,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [181939] = 9, + anon_sym_GT2, + [182335] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10220), 1, + ACTIONS(11962), 1, anon_sym_DASH_GT, - ACTIONS(10226), 1, + ACTIONS(11968), 1, anon_sym_requires, - STATE(6221), 1, + STATE(6323), 1, sym_trailing_return_type, - ACTIONS(10223), 2, + ACTIONS(11965), 2, anon_sym_final, anon_sym_override, - STATE(6331), 2, + STATE(6501), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6482), 2, + STATE(6658), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8087), 11, + ACTIONS(8905), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -590210,7 +611684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(8089), 24, + ACTIONS(8907), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -590235,25 +611709,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_GT2, - [182003] = 9, + [182399] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 1, - anon_sym_DASH_GT, - ACTIONS(9766), 1, + ACTIONS(7903), 1, anon_sym_requires, - STATE(6235), 1, + ACTIONS(10116), 1, + anon_sym_DASH_GT, + STATE(6324), 1, sym_trailing_return_type, - ACTIONS(9763), 2, + ACTIONS(7897), 2, anon_sym_final, anon_sym_override, - STATE(6389), 2, + STATE(6457), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6509), 2, + STATE(6630), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7629), 9, + ACTIONS(7968), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -590263,7 +611737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7627), 26, + ACTIONS(7966), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -590290,25 +611764,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [182067] = 9, + [182463] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7460), 1, - anon_sym_requires, - ACTIONS(9751), 1, + ACTIONS(10605), 1, anon_sym_DASH_GT, - STATE(6263), 1, + ACTIONS(10611), 1, + anon_sym_requires, + STATE(6357), 1, sym_trailing_return_type, - ACTIONS(7454), 2, + ACTIONS(10608), 2, anon_sym_final, anon_sym_override, - STATE(6331), 2, + STATE(6501), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6467), 2, + STATE(6641), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7629), 11, + ACTIONS(8424), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -590320,7 +611794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7627), 24, + ACTIONS(8422), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -590345,93 +611819,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_GT2, - [182131] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8224), 1, - anon_sym_LPAREN2, - ACTIONS(8240), 1, - anon_sym_LBRACK, - ACTIONS(8589), 1, - anon_sym_STAR, - ACTIONS(8591), 1, - anon_sym_AMP_AMP, - ACTIONS(8593), 1, - anon_sym_AMP, - STATE(2144), 1, - sym_parameter_list, - STATE(6497), 1, - sym__function_declarator_seq, - STATE(6652), 1, - sym__abstract_declarator, - STATE(6488), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9074), 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(9072), 21, - 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [182201] = 9, + [182527] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11603), 1, - anon_sym_DASH_GT, - ACTIONS(11609), 1, + ACTIONS(7835), 1, anon_sym_requires, - STATE(6238), 1, + ACTIONS(10119), 1, + anon_sym_DASH_GT, + STATE(6332), 1, sym_trailing_return_type, - ACTIONS(11606), 2, + ACTIONS(7829), 2, anon_sym_final, anon_sym_override, - STATE(6389), 2, + STATE(6501), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6538), 2, + STATE(6571), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8541), 9, + ACTIONS(7968), 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(8543), 26, + ACTIONS(7966), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -590442,11 +611860,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -590458,112 +611873,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [182265] = 17, + anon_sym_GT2, + [182591] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6993), 1, - anon_sym___asm, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10922), 1, + ACTIONS(8572), 1, anon_sym_LPAREN2, - ACTIONS(10936), 1, + ACTIONS(8588), 1, anon_sym_LBRACK, - ACTIONS(11251), 1, + ACTIONS(8964), 1, anon_sym_STAR, - ACTIONS(11253), 1, + ACTIONS(8966), 1, anon_sym_AMP_AMP, - ACTIONS(11255), 1, + ACTIONS(8968), 1, anon_sym_AMP, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(4486), 1, + STATE(2267), 1, sym_parameter_list, - STATE(8183), 1, + STATE(6608), 1, sym__function_declarator_seq, - STATE(8350), 1, + STATE(6751), 1, sym__abstract_declarator, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6178), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8180), 5, + STATE(6607), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6991), 12, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [182345] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7460), 1, - anon_sym_requires, - ACTIONS(11612), 1, - anon_sym_DASH_GT, - STATE(6227), 1, - sym_trailing_return_type, - ACTIONS(7454), 2, - anon_sym_final, - anon_sym_override, - STATE(6331), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6486), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 11, + ACTIONS(9429), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, 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(8543), 24, + ACTIONS(9427), 23, 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, @@ -590575,26 +611931,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_GT2, - [182409] = 9, + anon_sym_DASH_GT, + [182661] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11612), 1, - anon_sym_DASH_GT, - ACTIONS(11618), 1, + ACTIONS(7835), 1, anon_sym_requires, - STATE(6223), 1, + ACTIONS(9987), 1, + anon_sym_DASH_GT, + STATE(6299), 1, sym_trailing_return_type, - ACTIONS(11615), 2, + ACTIONS(7829), 2, anon_sym_final, anon_sym_override, - STATE(6331), 2, + STATE(6501), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6486), 2, + STATE(6697), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8541), 11, + ACTIONS(7789), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -590606,7 +611962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(8543), 24, + ACTIONS(7791), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -590631,37 +611987,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_GT2, - [182473] = 9, + [182725] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7460), 1, - anon_sym_requires, - ACTIONS(10220), 1, + ACTIONS(11959), 1, anon_sym_DASH_GT, - STATE(6265), 1, + ACTIONS(11974), 1, + anon_sym_requires, + STATE(6305), 1, sym_trailing_return_type, - ACTIONS(7454), 2, + ACTIONS(11971), 2, anon_sym_final, anon_sym_override, - STATE(6331), 2, + STATE(6457), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6482), 2, + STATE(6639), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8087), 11, + ACTIONS(8905), 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(8089), 24, + ACTIONS(8907), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -590672,8 +612026,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -590685,36 +612042,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_GT2, - [182537] = 9, + [182789] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7598), 1, - anon_sym_requires, - ACTIONS(9760), 1, + ACTIONS(10119), 1, anon_sym_DASH_GT, - STATE(6209), 1, + ACTIONS(10161), 1, + anon_sym_requires, + STATE(6295), 1, sym_trailing_return_type, - ACTIONS(7596), 2, + ACTIONS(10158), 2, anon_sym_final, anon_sym_override, - STATE(6389), 2, + STATE(6501), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6509), 2, + STATE(6571), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7629), 9, + ACTIONS(7968), 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(7627), 26, + ACTIONS(7966), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -590725,11 +612083,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -590741,37 +612096,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [182601] = 9, + anon_sym_GT2, + [182853] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7460), 1, - anon_sym_requires, - ACTIONS(9621), 1, + ACTIONS(10017), 1, anon_sym_DASH_GT, - STATE(6254), 1, + ACTIONS(10023), 1, + anon_sym_requires, + STATE(6316), 1, sym_trailing_return_type, - ACTIONS(7454), 2, + ACTIONS(10020), 2, anon_sym_final, anon_sym_override, - STATE(6331), 2, + STATE(6457), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6604), 2, + STATE(6622), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7546), 11, + ACTIONS(7789), 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(7544), 24, + ACTIONS(7791), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -590782,8 +612136,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -590795,248 +612152,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_GT2, - [182665] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7005), 1, - anon_sym___asm, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10922), 1, - anon_sym_LPAREN2, - ACTIONS(10936), 1, - anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_STAR, - ACTIONS(11253), 1, - anon_sym_AMP_AMP, - ACTIONS(11255), 1, - anon_sym_AMP, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(4486), 1, - sym_parameter_list, - STATE(8183), 1, - sym__function_declarator_seq, - STATE(8363), 1, - sym__abstract_declarator, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3954), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8180), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7003), 12, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [182745] = 21, + [182917] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(8600), 1, anon_sym_LPAREN2, - ACTIONS(6095), 1, - anon_sym_STAR, - ACTIONS(6097), 1, - anon_sym_AMP_AMP, - ACTIONS(6099), 1, - anon_sym_AMP, - ACTIONS(7784), 1, - anon_sym_const, - ACTIONS(11423), 1, - sym_ms_restrict_modifier, - ACTIONS(11429), 1, + ACTIONS(8616), 1, anon_sym_LBRACK, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(4601), 1, - sym_parameter_list, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8875), 1, - sym__abstract_declarator, - ACTIONS(7786), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11425), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11427), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6174), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6459), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7778), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [182833] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(6095), 1, + ACTIONS(8958), 1, anon_sym_STAR, - ACTIONS(6097), 1, + ACTIONS(8960), 1, anon_sym_AMP_AMP, - ACTIONS(6099), 1, + ACTIONS(8962), 1, anon_sym_AMP, - ACTIONS(7784), 1, - anon_sym_const, - ACTIONS(11423), 1, - sym_ms_restrict_modifier, - ACTIONS(11429), 1, - anon_sym_LBRACK, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(4601), 1, + STATE(2249), 1, sym_parameter_list, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8393), 1, + STATE(6709), 1, sym__function_declarator_seq, - STATE(8877), 1, + STATE(6778), 1, sym__abstract_declarator, - ACTIONS(7786), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11425), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11427), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5846), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7149), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6497), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - STATE(8389), 5, + STATE(6708), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7778), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [182921] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7598), 1, - anon_sym_requires, - ACTIONS(9630), 1, - anon_sym_DASH_GT, - STATE(6194), 1, - sym_trailing_return_type, - ACTIONS(7596), 2, - anon_sym_final, - anon_sym_override, - STATE(6389), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6558), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 9, + ACTIONS(9429), 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, anon_sym_DOT, - ACTIONS(7544), 26, + ACTIONS(9427), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -591048,25 +612208,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [182985] = 9, + anon_sym_DASH_GT, + anon_sym_GT2, + [182987] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9621), 1, + ACTIONS(9987), 1, anon_sym_DASH_GT, - ACTIONS(9645), 1, + ACTIONS(10082), 1, anon_sym_requires, - STATE(6215), 1, + STATE(6292), 1, sym_trailing_return_type, - ACTIONS(9642), 2, + ACTIONS(10079), 2, anon_sym_final, anon_sym_override, - STATE(6331), 2, + STATE(6501), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6604), 2, + STATE(6697), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7546), 11, + ACTIONS(7789), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -591078,7 +612240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7544), 24, + ACTIONS(7791), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -591103,14 +612265,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_GT2, - [183049] = 5, + [183051] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11597), 1, + ACTIONS(11977), 1, anon_sym_AMP_AMP, - ACTIONS(11601), 1, + ACTIONS(11979), 1, anon_sym_and, - ACTIONS(8939), 19, + ACTIONS(9322), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -591130,7 +612292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8941), 23, + ACTIONS(9324), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -591154,44 +612316,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [183105] = 17, + [183107] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6997), 1, + ACTIONS(7349), 1, anon_sym___asm, - ACTIONS(10012), 1, + ACTIONS(10363), 1, anon_sym_const, - ACTIONS(10922), 1, + ACTIONS(11172), 1, anon_sym_LPAREN2, - ACTIONS(10936), 1, + ACTIONS(11186), 1, anon_sym_LBRACK, - ACTIONS(11251), 1, + ACTIONS(11598), 1, anon_sym_STAR, - ACTIONS(11253), 1, + ACTIONS(11600), 1, anon_sym_AMP_AMP, - ACTIONS(11255), 1, + ACTIONS(11602), 1, anon_sym_AMP, - STATE(4238), 1, + STATE(4333), 1, sym_alignas_qualifier, - STATE(4486), 1, + STATE(4562), 1, sym_parameter_list, - STATE(8183), 1, + STATE(8314), 1, sym__function_declarator_seq, - STATE(8377), 1, + STATE(8482), 1, sym__abstract_declarator, - ACTIONS(10014), 2, + ACTIONS(10365), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3954), 2, + STATE(4109), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8180), 5, + STATE(8312), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6995), 12, + ACTIONS(7351), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -591204,8 +612366,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(10001), 12, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [183187] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5667), 1, + anon_sym_decltype, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(10614), 1, + sym_auto, + STATE(4812), 1, + sym_decltype_auto, + ACTIONS(7225), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(7223), 34, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -591217,44 +612427,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [183185] = 17, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [183247] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7001), 1, + ACTIONS(7341), 1, anon_sym___asm, - ACTIONS(10012), 1, + ACTIONS(10363), 1, anon_sym_const, - ACTIONS(10922), 1, + ACTIONS(11172), 1, anon_sym_LPAREN2, - ACTIONS(10936), 1, + ACTIONS(11186), 1, anon_sym_LBRACK, - ACTIONS(11251), 1, + ACTIONS(11598), 1, anon_sym_STAR, - ACTIONS(11253), 1, + ACTIONS(11600), 1, anon_sym_AMP_AMP, - ACTIONS(11255), 1, + ACTIONS(11602), 1, anon_sym_AMP, - STATE(4238), 1, + STATE(4333), 1, sym_alignas_qualifier, - STATE(4486), 1, + STATE(4562), 1, sym_parameter_list, - STATE(8183), 1, + STATE(8314), 1, sym__function_declarator_seq, - STATE(8354), 1, + STATE(8485), 1, sym__abstract_declarator, - ACTIONS(10014), 2, + ACTIONS(10365), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6172), 2, + STATE(6263), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8180), 5, + STATE(8312), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6999), 12, + ACTIONS(7343), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -591267,7 +612482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(10001), 12, + ACTIONS(10352), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -591280,80 +612495,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [183265] = 9, + [183327] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7598), 1, + ACTIONS(7835), 1, anon_sym_requires, - ACTIONS(11603), 1, - anon_sym_DASH_GT, - STATE(6224), 1, - sym_trailing_return_type, - ACTIONS(7596), 2, - anon_sym_final, - anon_sym_override, - STATE(6389), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6538), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 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(8543), 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_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_DOT_STAR, - [183329] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9751), 1, + ACTIONS(10605), 1, anon_sym_DASH_GT, - ACTIONS(9757), 1, - anon_sym_requires, - STATE(6219), 1, + STATE(6294), 1, sym_trailing_return_type, - ACTIONS(9754), 2, + ACTIONS(7829), 2, anon_sym_final, anon_sym_override, - STATE(6331), 2, + STATE(6501), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6467), 2, + STATE(6641), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7629), 11, + ACTIONS(8424), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -591365,7 +612525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7627), 24, + ACTIONS(8422), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -591390,44 +612550,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_GT2, - [183393] = 17, + [183391] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7009), 1, + ACTIONS(6821), 1, anon_sym___asm, - ACTIONS(10012), 1, + ACTIONS(10363), 1, anon_sym_const, - ACTIONS(10922), 1, + ACTIONS(11172), 1, anon_sym_LPAREN2, - ACTIONS(10936), 1, + ACTIONS(11186), 1, anon_sym_LBRACK, - ACTIONS(11251), 1, + ACTIONS(11598), 1, anon_sym_STAR, - ACTIONS(11253), 1, + ACTIONS(11600), 1, anon_sym_AMP_AMP, - ACTIONS(11255), 1, + ACTIONS(11602), 1, anon_sym_AMP, - STATE(4238), 1, + STATE(4333), 1, sym_alignas_qualifier, - STATE(4486), 1, + STATE(4562), 1, sym_parameter_list, - STATE(8183), 1, + STATE(8314), 1, sym__function_declarator_seq, - STATE(8351), 1, + STATE(8499), 1, sym__abstract_declarator, - ACTIONS(10014), 2, + ACTIONS(10365), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3954), 2, + STATE(4109), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8180), 5, + STATE(8312), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7007), 12, + ACTIONS(6823), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -591440,7 +612600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(10001), 12, + ACTIONS(10352), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -591453,18 +612613,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [183473] = 7, + [183471] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, - anon_sym_LPAREN2, - ACTIONS(11451), 1, - anon_sym_LBRACK, - STATE(2157), 1, - sym_parameter_list, - STATE(5230), 1, - sym__function_declarator_seq, - ACTIONS(9860), 10, + ACTIONS(11977), 1, + anon_sym_AMP_AMP, + ACTIONS(11979), 1, + anon_sym_and, + ACTIONS(11981), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11983), 1, + anon_sym_or, + ACTIONS(9393), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -591473,106 +612634,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9858), 29, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9395), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_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, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [183532] = 4, + [183531] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(11623), 1, + ACTIONS(7393), 1, + anon_sym___asm, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(11172), 1, anon_sym_LPAREN2, - ACTIONS(11625), 6, - anon_sym_TILDE, + ACTIONS(11186), 1, + anon_sym_LBRACK, + ACTIONS(11598), 1, anon_sym_STAR, + ACTIONS(11600), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(11621), 36, + ACTIONS(11602), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [183585] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10012), 1, - anon_sym_const, - STATE(4238), 1, + STATE(4333), 1, sym_alignas_qualifier, - ACTIONS(10014), 2, + STATE(4562), 1, + sym_parameter_list, + STATE(8314), 1, + sym__function_declarator_seq, + STATE(8487), 1, + sym__abstract_declarator, + ACTIONS(10365), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3954), 2, + STATE(6283), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6521), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10001), 12, + STATE(8312), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7391), 12, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(10352), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -591585,40 +612729,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6523), 21, - 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_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + [183611] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10116), 1, anon_sym_DASH_GT, + ACTIONS(10137), 1, + anon_sym_requires, + STATE(6363), 1, + sym_trailing_return_type, + ACTIONS(10134), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [183646] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11449), 1, - anon_sym_LPAREN2, - ACTIONS(11451), 1, - anon_sym_LBRACK, - STATE(2157), 1, - sym_parameter_list, - STATE(5230), 1, - sym__function_declarator_seq, - ACTIONS(9852), 10, + STATE(6457), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6630), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -591627,11 +612756,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, anon_sym_DOT, - ACTIONS(9850), 29, + ACTIONS(7966), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -591642,8 +612771,8 @@ 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___attribute__, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -591655,22 +612784,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + [183675] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7903), 1, + anon_sym_requires, + ACTIONS(10017), 1, anon_sym_DASH_GT, + STATE(6306), 1, + sym_trailing_return_type, + ACTIONS(7897), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [183705] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11449), 1, - anon_sym_LPAREN2, - ACTIONS(11451), 1, - anon_sym_LBRACK, - STATE(2157), 1, - sym_parameter_list, - STATE(5230), 1, - sym__function_declarator_seq, - ACTIONS(9856), 10, + STATE(6457), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6622), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -591679,11 +612811,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, anon_sym_DOT, - ACTIONS(9854), 29, + ACTIONS(7791), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -591694,8 +612826,8 @@ 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___attribute__, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -591707,35 +612839,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [183764] = 7, + [183739] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, - anon_sym_LPAREN2, - ACTIONS(11451), 1, - anon_sym_LBRACK, - STATE(2157), 1, - sym_parameter_list, - STATE(5230), 1, - sym__function_declarator_seq, - ACTIONS(9864), 10, + ACTIONS(10161), 1, + anon_sym_requires, + ACTIONS(10158), 2, + anon_sym_final, + anon_sym_override, + STATE(6501), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6571), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 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___attribute, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9862), 29, + ACTIONS(7966), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -591743,11 +612876,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___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -591760,53 +612890,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [183823] = 20, + anon_sym_GT2, + [183798] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(11627), 1, + ACTIONS(11985), 1, sym_identifier, - ACTIONS(11629), 1, + ACTIONS(11987), 1, anon_sym_LPAREN2, - ACTIONS(11631), 1, + ACTIONS(11989), 1, anon_sym_STAR, - ACTIONS(11633), 1, + ACTIONS(11991), 1, anon_sym_AMP_AMP, - ACTIONS(11635), 1, + ACTIONS(11993), 1, anon_sym_AMP, - STATE(6570), 1, + STATE(6574), 1, sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(8539), 1, + STATE(8612), 1, sym__field_declarator, - STATE(8661), 1, + STATE(8807), 1, sym_operator_name, - STATE(11372), 1, + STATE(10687), 1, sym_ms_based_modifier, - ACTIONS(2935), 2, + ACTIONS(3268), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6287), 2, + STATE(6427), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7351), 2, + STATE(7429), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2933), 3, + ACTIONS(3266), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8721), 7, + STATE(8839), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -591814,7 +612942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -591828,32 +612956,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [183908] = 7, + [183883] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, - anon_sym_LPAREN2, - ACTIONS(11451), 1, - anon_sym_LBRACK, - STATE(1976), 1, - sym_parameter_list, - STATE(5230), 1, - sym__function_declarator_seq, - ACTIONS(9852), 10, + ACTIONS(7835), 1, + anon_sym_requires, + ACTIONS(7829), 2, + anon_sym_final, + anon_sym_override, + STATE(6501), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6658), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 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(9850), 29, + ACTIONS(8907), 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, @@ -591861,12 +612993,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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -591879,33 +613007,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [183967] = 7, + anon_sym_GT2, + [183942] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, - anon_sym_LPAREN2, - ACTIONS(11451), 1, - anon_sym_LBRACK, - STATE(1976), 1, - sym_parameter_list, - STATE(5230), 1, - sym__function_declarator_seq, - ACTIONS(9856), 10, + ACTIONS(10611), 1, + anon_sym_requires, + ACTIONS(10608), 2, + anon_sym_final, + anon_sym_override, + STATE(6501), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6641), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 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(9854), 29, + ACTIONS(8422), 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, @@ -591913,12 +613045,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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -591931,62 +613059,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [184026] = 21, + anon_sym_GT2, + [184001] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(11987), 1, anon_sym_LPAREN2, - ACTIONS(11423), 1, - sym_ms_restrict_modifier, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11637), 1, + ACTIONS(11995), 1, + sym_identifier, + ACTIONS(11997), 1, anon_sym_STAR, - ACTIONS(11639), 1, + ACTIONS(11999), 1, anon_sym_AMP_AMP, - ACTIONS(11641), 1, + ACTIONS(12001), 1, anon_sym_AMP, - STATE(4923), 1, - sym_parameter_list, - STATE(6080), 1, + STATE(6574), 1, sym_ms_unaligned_ptr_modifier, - STATE(6485), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8907), 1, - sym__abstract_declarator, - ACTIONS(11425), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11427), 2, + STATE(9033), 1, + sym__field_declarator, + STATE(9236), 1, + sym_operator_name, + STATE(11191), 1, + sym_ms_based_modifier, + ACTIONS(3268), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(11433), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6195), 2, + STATE(6427), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7335), 2, + STATE(7433), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6459), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(11421), 12, + ACTIONS(3266), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8839), 7, + 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(3270), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -591998,18 +613125,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [184113] = 7, + [184086] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(1976), 1, + STATE(2072), 1, sym_parameter_list, - STATE(5230), 1, + STATE(5444), 1, sym__function_declarator_seq, - ACTIONS(9834), 10, + ACTIONS(10190), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -592020,7 +613147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON, anon_sym_DOT, - ACTIONS(9832), 29, + ACTIONS(10188), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -592050,31 +613177,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [184172] = 7, + [184145] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12007), 1, + anon_sym_SLASH, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12003), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12005), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9707), 13, + aux_sym_preproc_elif_token1, + 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, + sym_identifier, + ACTIONS(9709), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + [184216] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7598), 1, + ACTIONS(7835), 1, anon_sym_requires, - ACTIONS(7596), 2, + ACTIONS(7829), 2, anon_sym_final, anon_sym_override, - STATE(6389), 2, + STATE(6501), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6509), 2, + STATE(6571), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7629), 9, + ACTIONS(7968), 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(7627), 27, + ACTIONS(7966), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -592085,11 +613272,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -592102,84 +613286,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [184231] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(11423), 1, - sym_ms_restrict_modifier, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11637), 1, - anon_sym_STAR, - ACTIONS(11639), 1, - anon_sym_AMP_AMP, - ACTIONS(11641), 1, - anon_sym_AMP, - STATE(4923), 1, - sym_parameter_list, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8891), 1, - sym__abstract_declarator, - ACTIONS(11425), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11427), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5846), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7368), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6497), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [184318] = 7, + anon_sym_GT2, + [184275] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(1976), 1, + STATE(2072), 1, sym_parameter_list, - STATE(5230), 1, + STATE(5444), 1, sym__function_declarator_seq, - ACTIONS(9840), 10, + ACTIONS(10194), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -592190,7 +613309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON, anon_sym_DOT, - ACTIONS(9838), 29, + ACTIONS(10192), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -592220,18 +613339,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [184377] = 7, + [184334] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(1976), 1, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12007), 1, + anon_sym_SLASH, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12017), 1, + anon_sym_AMP_AMP, + ACTIONS(12021), 1, + anon_sym_CARET, + ACTIONS(12029), 1, + anon_sym_GT_EQ, + ACTIONS(12033), 1, + anon_sym_QMARK, + ACTIONS(12035), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12037), 1, + anon_sym_or, + ACTIONS(12039), 1, + anon_sym_and, + ACTIONS(12041), 1, + anon_sym_xor, + ACTIONS(12043), 1, + anon_sym_not_eq, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12003), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12005), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12009), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(12019), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12023), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(12025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12031), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12027), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(12013), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [184437] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2072), 1, sym_parameter_list, - STATE(5230), 1, + STATE(5444), 1, sym__function_declarator_seq, - ACTIONS(9844), 10, + ACTIONS(10198), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -592242,7 +613435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON, anon_sym_DOT, - ACTIONS(9842), 29, + ACTIONS(10196), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -592272,18 +613465,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [184436] = 7, + [184496] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(9961), 1, + anon_sym___attribute__, + ACTIONS(9963), 1, + anon_sym___attribute, + ACTIONS(10114), 1, + anon_sym_LBRACE, + ACTIONS(12045), 1, + anon_sym_COLON, + STATE(4291), 1, + sym__enum_base_clause, + STATE(4328), 1, + sym_enumerator_list, + STATE(4429), 1, + sym_attribute_specifier, + ACTIONS(8006), 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(8008), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(11451), 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, - STATE(1976), 1, - sym_parameter_list, - STATE(5230), 1, - sym__function_declarator_seq, - ACTIONS(9848), 10, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + anon_sym_GT2, + [184561] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(11987), 1, + anon_sym_LPAREN2, + ACTIONS(11995), 1, + sym_identifier, + ACTIONS(11997), 1, + anon_sym_STAR, + ACTIONS(11999), 1, + anon_sym_AMP_AMP, + ACTIONS(12001), 1, + anon_sym_AMP, + STATE(6574), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(9033), 1, + sym__field_declarator, + STATE(9236), 1, + sym_operator_name, + STATE(11191), 1, + sym_ms_based_modifier, + ACTIONS(3268), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6376), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7433), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3266), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8839), 7, + 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(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [184646] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12050), 1, + anon_sym_requires, + ACTIONS(12047), 2, + anon_sym_final, + anon_sym_override, + STATE(6457), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6640), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8913), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -592292,12 +613608,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, anon_sym_DOT, - ACTIONS(9846), 29, + ACTIONS(8915), 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, @@ -592308,9 +613623,8 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -592323,164 +613637,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [184495] = 29, + [184705] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(7903), 1, + anon_sym_requires, + ACTIONS(7897), 2, + anon_sym_final, + anon_sym_override, + STATE(6457), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6630), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 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(11645), 1, + ACTIONS(7966), 27, anon_sym_DOT_DOT_DOT, - ACTIONS(11653), 1, - anon_sym_SLASH, - ACTIONS(11655), 1, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(11657), 1, anon_sym_AMP_AMP, - ACTIONS(11661), 1, anon_sym_CARET, - ACTIONS(11669), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(11673), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(11675), 1, anon_sym_LT_EQ_GT, - ACTIONS(11677), 1, anon_sym_or, - ACTIONS(11679), 1, anon_sym_and, - ACTIONS(11681), 1, + anon_sym_bitor, anon_sym_xor, - ACTIONS(11683), 1, + anon_sym_bitand, anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [184764] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12007), 1, + anon_sym_SLASH, + ACTIONS(12017), 1, + anon_sym_AMP_AMP, + ACTIONS(12021), 1, + anon_sym_CARET, + ACTIONS(12029), 1, + anon_sym_GT_EQ, + ACTIONS(12035), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12039), 1, + anon_sym_and, + ACTIONS(12041), 1, + anon_sym_xor, + ACTIONS(12043), 1, + anon_sym_not_eq, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11643), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(11649), 2, + ACTIONS(12003), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11651), 2, + ACTIONS(12005), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11659), 2, + ACTIONS(12019), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(11663), 2, + ACTIONS(12023), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(11665), 2, + ACTIONS(12025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(11671), 2, + ACTIONS(12031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11667), 3, + ACTIONS(9707), 3, + aux_sym_preproc_elif_token1, + anon_sym_or, + sym_identifier, + ACTIONS(12027), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(11647), 5, + ACTIONS(9709), 8, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [184598] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5301), 1, - anon_sym_LPAREN2, - ACTIONS(5303), 1, - anon_sym_STAR, - ACTIONS(5305), 1, - anon_sym_AMP_AMP, - ACTIONS(5307), 1, - anon_sym_AMP, - ACTIONS(5311), 1, - anon_sym_LBRACK, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - ACTIONS(9072), 1, - anon_sym_RPAREN, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4601), 1, - sym_parameter_list, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8684), 1, - sym__declarator, - STATE(8876), 1, - sym__abstract_declarator, - STATE(11063), 1, - sym_ms_based_modifier, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - [184695] = 7, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + [184859] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2157), 1, + STATE(2080), 1, sym_parameter_list, - STATE(5230), 1, + STATE(5444), 1, sym__function_declarator_seq, - ACTIONS(9834), 10, + ACTIONS(10190), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -592489,11 +613780,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9832), 29, + sym_identifier, + ACTIONS(10188), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -592504,67 +613805,113 @@ 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___attribute__, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [184918] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12007), 1, + anon_sym_SLASH, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12005), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9707), 15, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [184754] = 20, + sym_identifier, + ACTIONS(9709), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + [184987] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(11627), 1, + ACTIONS(11985), 1, sym_identifier, - ACTIONS(11629), 1, + ACTIONS(11987), 1, anon_sym_LPAREN2, - ACTIONS(11631), 1, + ACTIONS(11989), 1, anon_sym_STAR, - ACTIONS(11633), 1, + ACTIONS(11991), 1, anon_sym_AMP_AMP, - ACTIONS(11635), 1, + ACTIONS(11993), 1, anon_sym_AMP, - STATE(6570), 1, + STATE(6574), 1, sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(8512), 1, + STATE(8638), 1, sym__field_declarator, - STATE(8661), 1, + STATE(8807), 1, sym_operator_name, - STATE(11372), 1, + STATE(10687), 1, sym_ms_based_modifier, - ACTIONS(2935), 2, + ACTIONS(3268), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(2939), 2, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6207), 2, + STATE(6427), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7300), 2, + STATE(7459), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2933), 3, + ACTIONS(3266), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8721), 7, + STATE(8839), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -592572,7 +613919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - ACTIONS(2937), 13, + ACTIONS(3270), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -592586,18 +613933,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [184839] = 7, + [185072] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2157), 1, + STATE(2275), 1, sym_parameter_list, - STATE(5230), 1, + STATE(5444), 1, sym__function_declarator_seq, - ACTIONS(9840), 10, + ACTIONS(10206), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -592608,7 +613955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(9838), 29, + ACTIONS(10204), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -592638,18 +613985,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [184898] = 7, + [185131] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5617), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(5619), 1, + anon_sym_STAR, + ACTIONS(5621), 1, + anon_sym_AMP_AMP, + ACTIONS(5623), 1, + anon_sym_AMP, + ACTIONS(5627), 1, anon_sym_LBRACK, - STATE(2157), 1, + ACTIONS(8228), 1, + sym_identifier, + ACTIONS(8675), 1, + anon_sym_COLON_COLON, + ACTIONS(9427), 1, + anon_sym_RPAREN, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4706), 1, sym_parameter_list, - STATE(5230), 1, + STATE(7993), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8598), 1, sym__function_declarator_seq, - ACTIONS(9844), 10, + STATE(8831), 1, + sym__declarator, + STATE(8994), 1, + sym__abstract_declarator, + STATE(11554), 1, + sym_ms_based_modifier, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + [185228] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12007), 1, + anon_sym_SLASH, + ACTIONS(12015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12017), 1, + anon_sym_AMP_AMP, + ACTIONS(12021), 1, + anon_sym_CARET, + ACTIONS(12029), 1, + anon_sym_GT_EQ, + ACTIONS(12035), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12037), 1, + anon_sym_or, + ACTIONS(12039), 1, + anon_sym_and, + ACTIONS(12041), 1, + anon_sym_xor, + ACTIONS(12043), 1, + anon_sym_not_eq, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10473), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12003), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12005), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12019), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12023), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(12025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12031), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12027), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10475), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_QMARK, + [185327] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7903), 1, + anon_sym_requires, + ACTIONS(7897), 2, + anon_sym_final, + anon_sym_override, + STATE(6457), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6640), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8913), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -592658,11 +614151,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, anon_sym_DOT, - ACTIONS(9842), 29, + ACTIONS(8915), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -592673,8 +614166,8 @@ 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___attribute__, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -592687,34 +614180,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [184957] = 7, + [185386] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, - anon_sym_LPAREN2, - ACTIONS(11451), 1, - anon_sym_LBRACK, - STATE(2157), 1, - sym_parameter_list, - STATE(5230), 1, - sym__function_declarator_seq, - ACTIONS(9848), 10, + ACTIONS(7835), 1, + anon_sym_requires, + ACTIONS(7829), 2, + anon_sym_final, + anon_sym_override, + STATE(6501), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6697), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 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___attribute, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9846), 29, + ACTIONS(7791), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -592722,11 +614217,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___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -592739,21 +614231,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [185016] = 7, + anon_sym_GT2, + [185445] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, - anon_sym_LPAREN2, - ACTIONS(11451), 1, - anon_sym_LBRACK, - STATE(1976), 1, - sym_parameter_list, - STATE(5230), 1, - sym__function_declarator_seq, - ACTIONS(9860), 10, + ACTIONS(10137), 1, + anon_sym_requires, + ACTIONS(10134), 2, + anon_sym_final, + anon_sym_override, + STATE(6457), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6630), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -592762,12 +614255,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, anon_sym_DOT, - ACTIONS(9858), 29, + ACTIONS(7966), 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, @@ -592778,9 +614270,8 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -592793,60 +614284,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [185075] = 20, + [185504] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(11627), 1, - sym_identifier, - ACTIONS(11629), 1, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(6574), 1, + anon_sym_LBRACK, + ACTIONS(10320), 1, + anon_sym_LT, + STATE(6491), 1, + sym_template_argument_list, + ACTIONS(6569), 2, anon_sym_LPAREN2, - ACTIONS(11631), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6572), 3, anon_sym_STAR, - ACTIONS(11633), 1, anon_sym_AMP_AMP, - ACTIONS(11635), 1, + anon_sym_SEMI, + ACTIONS(6565), 34, anon_sym_AMP, - STATE(6570), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(8531), 1, - sym__field_declarator, - STATE(8661), 1, - sym_operator_name, - STATE(11372), 1, - sym_ms_based_modifier, - ACTIONS(2935), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6287), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7295), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2933), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(8721), 7, - 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(2937), 13, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -592859,24 +614331,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [185160] = 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_operator, + [185565] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9021), 1, - anon_sym_LBRACE, - ACTIONS(9586), 1, - anon_sym___attribute__, - ACTIONS(9588), 1, - anon_sym___attribute, - ACTIONS(11685), 1, - anon_sym_COLON, - STATE(3974), 1, - sym_attribute_specifier, - STATE(4216), 1, - sym__enum_base_clause, - STATE(4280), 1, - sym_enumerator_list, - ACTIONS(7600), 9, + ACTIONS(11974), 1, + anon_sym_requires, + ACTIONS(11971), 2, + anon_sym_final, + anon_sym_override, + STATE(6457), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6639), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8905), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -592886,7 +614361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7602), 27, + ACTIONS(8907), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -592914,21 +614389,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [185225] = 7, + [185624] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7598), 1, + ACTIONS(7903), 1, anon_sym_requires, - ACTIONS(7596), 2, + ACTIONS(7897), 2, anon_sym_final, anon_sym_override, - STATE(6389), 2, + STATE(6457), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6524), 2, + STATE(6639), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8087), 9, + ACTIONS(8905), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -592938,7 +614413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8089), 27, + ACTIONS(8907), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -592966,142 +614441,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [185284] = 11, + [185683] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(11687), 1, - anon_sym_LT, - ACTIONS(11691), 1, - sym_auto, - ACTIONS(11693), 1, - anon_sym_decltype, - STATE(6613), 1, - sym_template_argument_list, - STATE(7043), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7532), 1, - sym_decltype_auto, - ACTIONS(5251), 3, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2275), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10198), 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___attribute, - anon_sym_const, - ACTIONS(11689), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5258), 29, + anon_sym_DOT, + ACTIONS(10196), 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___extension__, anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [185351] = 20, + [185742] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(11627), 1, - sym_identifier, - ACTIONS(11629), 1, + ACTIONS(7903), 1, + anon_sym_requires, + ACTIONS(7897), 2, + anon_sym_final, + anon_sym_override, + STATE(6457), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6622), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7789), 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(7791), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(11631), 1, anon_sym_STAR, - ACTIONS(11633), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11635), 1, + anon_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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [185801] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2072), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10202), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - STATE(6570), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(8531), 1, - sym__field_declarator, - STATE(8661), 1, - sym_operator_name, - STATE(11372), 1, - sym_ms_based_modifier, - ACTIONS(2935), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6189), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7295), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2933), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(8721), 7, - 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(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [185436] = 7, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(10200), 29, + 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_RBRACK_RBRACK, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [185860] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9645), 1, + ACTIONS(12056), 1, anon_sym_requires, - ACTIONS(9642), 2, + ACTIONS(12053), 2, anon_sym_final, anon_sym_override, - STATE(6331), 2, + STATE(6501), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6604), 2, + STATE(6661), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7546), 11, + ACTIONS(8913), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -593113,7 +614623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7544), 25, + ACTIONS(8915), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -593139,21 +614649,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [185495] = 7, + [185919] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7598), 1, + ACTIONS(7903), 1, anon_sym_requires, - ACTIONS(7596), 2, + ACTIONS(7897), 2, anon_sym_final, anon_sym_override, - STATE(6389), 2, + STATE(6457), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6538), 2, + STATE(6637), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8541), 9, + ACTIONS(8424), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -593163,7 +614673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8543), 27, + ACTIONS(8422), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -593191,60 +614701,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [185554] = 20, + [185978] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(11629), 1, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(12059), 1, + anon_sym_LT, + ACTIONS(12063), 1, + sym_auto, + ACTIONS(12065), 1, + anon_sym_decltype, + STATE(6693), 1, + sym_template_argument_list, + STATE(7126), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7640), 1, + sym_decltype_auto, + ACTIONS(5636), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(12061), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5643), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11695), 1, - sym_identifier, - ACTIONS(11697), 1, anon_sym_STAR, - ACTIONS(11699), 1, anon_sym_AMP_AMP, - ACTIONS(11701), 1, - anon_sym_AMP, - STATE(6570), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(8909), 1, - sym__field_declarator, - STATE(9063), 1, - sym_operator_name, - STATE(11009), 1, - sym_ms_based_modifier, - ACTIONS(2935), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6216), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7374), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2933), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(8721), 7, - 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(2937), 13, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -593256,36 +614750,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [185639] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9757), 1, - anon_sym_requires, - ACTIONS(9754), 2, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_final, anon_sym_override, - STATE(6331), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6467), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 11, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [186045] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2080), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10194), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, 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(7627), 25, + sym_identifier, + ACTIONS(10192), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -593293,246 +614800,195 @@ 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_LBRACK, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_GT2, - [185698] = 20, + [186104] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(11629), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11695), 1, - sym_identifier, - ACTIONS(11697), 1, - anon_sym_STAR, - ACTIONS(11699), 1, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12007), 1, + anon_sym_SLASH, + ACTIONS(12015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12017), 1, anon_sym_AMP_AMP, - ACTIONS(11701), 1, - anon_sym_AMP, - STATE(6570), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(8932), 1, - sym__field_declarator, - STATE(9063), 1, - sym_operator_name, - STATE(11009), 1, - sym_ms_based_modifier, - ACTIONS(2935), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6287), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7377), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2933), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(8721), 7, - 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(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [185783] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(11629), 1, - anon_sym_LPAREN2, - ACTIONS(11695), 1, + ACTIONS(12021), 1, + anon_sym_CARET, + ACTIONS(12029), 1, + anon_sym_GT_EQ, + ACTIONS(12035), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12037), 1, + anon_sym_or, + ACTIONS(12039), 1, + anon_sym_and, + ACTIONS(12041), 1, + anon_sym_xor, + ACTIONS(12043), 1, + anon_sym_not_eq, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10538), 2, + aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(11697), 1, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12003), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12005), 2, anon_sym_STAR, - ACTIONS(11699), 1, - anon_sym_AMP_AMP, - ACTIONS(11701), 1, + anon_sym_PERCENT, + ACTIONS(12019), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12023), 2, anon_sym_AMP, - STATE(6570), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(8932), 1, - sym__field_declarator, - STATE(9063), 1, - sym_operator_name, - STATE(11009), 1, - sym_ms_based_modifier, - ACTIONS(2935), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6218), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7377), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2933), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(8721), 7, - 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(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [185868] = 20, + anon_sym_bitand, + ACTIONS(12025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12031), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12027), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10540), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_QMARK, + [186203] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(11629), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11695), 1, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12007), 1, + anon_sym_SLASH, + ACTIONS(12015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12017), 1, + anon_sym_AMP_AMP, + ACTIONS(12021), 1, + anon_sym_CARET, + ACTIONS(12029), 1, + anon_sym_GT_EQ, + ACTIONS(12035), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12037), 1, + anon_sym_or, + ACTIONS(12039), 1, + anon_sym_and, + ACTIONS(12041), 1, + anon_sym_xor, + ACTIONS(12043), 1, + anon_sym_not_eq, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10435), 2, + aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(11697), 1, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12003), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12005), 2, anon_sym_STAR, - ACTIONS(11699), 1, - anon_sym_AMP_AMP, - ACTIONS(11701), 1, + anon_sym_PERCENT, + ACTIONS(12019), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12023), 2, anon_sym_AMP, - STATE(6570), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(8937), 1, - sym__field_declarator, - STATE(9063), 1, - sym_operator_name, - STATE(11009), 1, - sym_ms_based_modifier, - ACTIONS(2935), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6287), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7286), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2933), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(8721), 7, - 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(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [185953] = 7, + anon_sym_bitand, + ACTIONS(12025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12031), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12027), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10437), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_QMARK, + [186302] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10226), 1, - anon_sym_requires, - ACTIONS(10223), 2, - anon_sym_final, - anon_sym_override, - STATE(6331), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6482), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 11, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2080), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10174), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, 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(8089), 25, + sym_identifier, + ACTIONS(10172), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -593540,39 +614996,102 @@ 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [186361] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12007), 1, + anon_sym_SLASH, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12017), 1, + anon_sym_AMP_AMP, + ACTIONS(12021), 1, + anon_sym_CARET, + ACTIONS(12029), 1, + anon_sym_GT_EQ, + ACTIONS(12033), 1, anon_sym_QMARK, + ACTIONS(12035), 1, anon_sym_LT_EQ_GT, + ACTIONS(12037), 1, anon_sym_or, + ACTIONS(12039), 1, anon_sym_and, - anon_sym_bitor, + ACTIONS(12041), 1, anon_sym_xor, - anon_sym_bitand, + ACTIONS(12043), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [186012] = 10, + ACTIONS(9826), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12003), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12005), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12019), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12023), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(12025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12031), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12027), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9828), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [186464] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9021), 1, - anon_sym_LBRACE, - ACTIONS(9586), 1, - anon_sym___attribute__, - ACTIONS(9588), 1, - anon_sym___attribute, - ACTIONS(11685), 1, - anon_sym_COLON, - STATE(4024), 1, - sym_attribute_specifier, - STATE(4217), 1, - sym__enum_base_clause, - STATE(4284), 1, - sym_enumerator_list, - ACTIONS(7651), 9, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2080), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10198), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -593581,11 +615100,21 @@ static const uint16_t ts_small_parse_table[] = { 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(7653), 27, + sym_identifier, + ACTIONS(10196), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -593596,35 +615125,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - 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_DOT_STAR, anon_sym_DASH_GT, - [186077] = 7, + [186523] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11618), 1, + ACTIONS(7835), 1, anon_sym_requires, - ACTIONS(11615), 2, + ACTIONS(7829), 2, anon_sym_final, anon_sym_override, - STATE(6331), 2, + STATE(6501), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6486), 2, + STATE(6641), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8541), 11, + ACTIONS(8424), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -593636,7 +615157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(8543), 25, + ACTIONS(8422), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -593662,36 +615183,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [186136] = 3, + [186582] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(11705), 7, + ACTIONS(9230), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12007), 1, + anon_sym_SLASH, + ACTIONS(12021), 1, + anon_sym_CARET, + ACTIONS(12029), 1, + anon_sym_GT_EQ, + ACTIONS(12035), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12041), 1, + anon_sym_xor, + ACTIONS(12043), 1, + anon_sym_not_eq, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12003), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12005), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12019), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12023), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(12025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12031), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12027), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9707), 4, + aux_sym_preproc_elif_token1, + anon_sym_or, + anon_sym_and, + sym_identifier, + ACTIONS(9709), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(11703), 36, + anon_sym_QMARK, + [186673] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2080), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10202), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, + 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_identifier, + ACTIONS(10200), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [186732] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(11787), 1, + sym_ms_restrict_modifier, + ACTIONS(11793), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + ACTIONS(11795), 1, anon_sym_const, + ACTIONS(12067), 1, + anon_sym_STAR, + ACTIONS(12069), 1, + anon_sym_AMP_AMP, + ACTIONS(12071), 1, + anon_sym_AMP, + STATE(4883), 1, + sym_parameter_list, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(9073), 1, + sym__abstract_declarator, + ACTIONS(11789), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11791), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5995), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7467), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6823), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11785), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -593703,43 +615369,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [186187] = 7, + [186819] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11710), 1, - anon_sym_requires, - ACTIONS(11707), 2, - anon_sym_final, - anon_sym_override, - STATE(6331), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6490), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8559), 11, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2072), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10174), 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, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(8561), 25, + ACTIONS(10172), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -593747,8 +615402,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_LBRACK, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -593761,71 +615420,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [186246] = 7, + anon_sym_COLON_RBRACK, + [186878] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7598), 1, - anon_sym_requires, - ACTIONS(7596), 2, - anon_sym_final, - anon_sym_override, - STATE(6389), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6539), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8559), 9, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12007), 1, + anon_sym_SLASH, + ACTIONS(12015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12017), 1, + anon_sym_AMP_AMP, + ACTIONS(12021), 1, + anon_sym_CARET, + ACTIONS(12029), 1, + anon_sym_GT_EQ, + ACTIONS(12035), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12037), 1, + anon_sym_or, + ACTIONS(12039), 1, + anon_sym_and, + ACTIONS(12041), 1, + anon_sym_xor, + ACTIONS(12043), 1, + anon_sym_not_eq, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10485), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12003), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(12005), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12019), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12023), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(12025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12031), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12027), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(8561), 27, + ACTIONS(10487), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_QMARK, + [186977] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12007), 1, + anon_sym_SLASH, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12015), 1, anon_sym_PIPE_PIPE, + ACTIONS(12017), 1, anon_sym_AMP_AMP, + ACTIONS(12021), 1, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(12029), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(12033), 1, anon_sym_QMARK, + ACTIONS(12035), 1, anon_sym_LT_EQ_GT, + ACTIONS(12037), 1, anon_sym_or, + ACTIONS(12039), 1, anon_sym_and, - anon_sym_bitor, + ACTIONS(12041), 1, anon_sym_xor, - anon_sym_bitand, + ACTIONS(12043), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [186305] = 7, + ACTIONS(10489), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12003), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12005), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12019), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12023), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(12025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12031), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12027), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10491), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [187080] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(1976), 1, + STATE(2072), 1, sym_parameter_list, - STATE(5230), 1, + STATE(5444), 1, sym__function_declarator_seq, - ACTIONS(9864), 10, + ACTIONS(10210), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -593836,7 +615589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON, anon_sym_DOT, - ACTIONS(9862), 29, + ACTIONS(10208), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -593866,36 +615619,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [186364] = 10, + [187139] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9592), 1, + ACTIONS(9413), 1, + anon_sym_LBRACE, + ACTIONS(10075), 1, anon_sym___attribute__, - ACTIONS(9594), 1, + ACTIONS(10077), 1, anon_sym___attribute, - ACTIONS(9806), 1, - anon_sym_LBRACE, - ACTIONS(11713), 1, + ACTIONS(12073), 1, anon_sym_COLON, - STATE(4204), 1, + STATE(4059), 1, + sym_attribute_specifier, + STATE(4319), 1, sym__enum_base_clause, - STATE(4254), 1, + STATE(4382), 1, sym_enumerator_list, - STATE(4375), 1, - sym_attribute_specifier, - ACTIONS(7600), 11, + ACTIONS(8000), 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(7602), 25, + ACTIONS(8002), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -593906,8 +615657,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -593920,22 +615674,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [186429] = 7, + [187204] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7460), 1, + ACTIONS(10082), 1, anon_sym_requires, - ACTIONS(7454), 2, + ACTIONS(10079), 2, anon_sym_final, anon_sym_override, - STATE(6331), 2, + STATE(6501), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6490), 2, + STATE(6697), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8559), 11, + ACTIONS(7789), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -593947,7 +615700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(8561), 25, + ACTIONS(7791), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -593973,74 +615726,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [186488] = 7, + [187263] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7460), 1, - anon_sym_requires, - ACTIONS(7454), 2, - anon_sym_final, - anon_sym_override, - STATE(6331), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6604), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 11, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12007), 1, + anon_sym_SLASH, + ACTIONS(12029), 1, + anon_sym_GT_EQ, + ACTIONS(12035), 1, + anon_sym_LT_EQ_GT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12003), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12005), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12031), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12027), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7544), 25, + ACTIONS(9707), 10, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(9709), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [186547] = 7, + [187342] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(1970), 1, - sym_parameter_list, - STATE(5230), 1, - sym__function_declarator_seq, - ACTIONS(9834), 17, - aux_sym_preproc_elif_token1, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12007), 1, + anon_sym_SLASH, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12003), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(12005), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12031), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9707), 13, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -594052,44 +615831,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(9832), 22, + ACTIONS(9709), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [186606] = 7, + [187415] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(1970), 1, + STATE(2275), 1, sym_parameter_list, - STATE(5230), 1, + STATE(5444), 1, sym__function_declarator_seq, - ACTIONS(9840), 17, - aux_sym_preproc_elif_token1, + ACTIONS(10202), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -594098,21 +615867,11 @@ static const uint16_t ts_small_parse_table[] = { 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___attribute, anon_sym_DOT, - sym_identifier, - ACTIONS(9838), 22, + ACTIONS(10200), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -594123,25 +615882,83 @@ 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___attribute__, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, - [186665] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [187474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12077), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(12075), 36, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [187525] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(1970), 1, + STATE(2072), 1, sym_parameter_list, - STATE(5230), 1, + STATE(5444), 1, sym__function_declarator_seq, - ACTIONS(9844), 17, - aux_sym_preproc_elif_token1, + ACTIONS(10206), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -594150,21 +615967,12 @@ static const uint16_t ts_small_parse_table[] = { 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_COLON, anon_sym_DOT, - sym_identifier, - ACTIONS(9842), 22, + ACTIONS(10204), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -594175,28 +615983,56 @@ 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_RBRACK_RBRACK, + 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_DOT_STAR, anon_sym_DASH_GT, - [186724] = 7, + anon_sym_COLON_RBRACK, + [187584] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(1970), 1, - sym_parameter_list, - STATE(5230), 1, - sym__function_declarator_seq, - ACTIONS(9848), 17, - aux_sym_preproc_elif_token1, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12007), 1, + anon_sym_SLASH, + ACTIONS(12035), 1, + anon_sym_LT_EQ_GT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12003), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(12005), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12031), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9707), 13, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -594208,98 +616044,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(9846), 22, + ACTIONS(9709), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [186783] = 7, + [187659] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(9651), 1, - anon_sym_requires, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12007), 1, + anon_sym_SLASH, + ACTIONS(12021), 1, + anon_sym_CARET, + ACTIONS(12029), 1, + anon_sym_GT_EQ, + ACTIONS(12035), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12041), 1, + anon_sym_xor, + ACTIONS(12043), 1, + anon_sym_not_eq, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, ACTIONS(9648), 2, - anon_sym_final, - anon_sym_override, - STATE(6389), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6558), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 9, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12003), 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(7544), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12005), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(12023), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(12025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(12031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(12027), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9707), 6, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, anon_sym_or, anon_sym_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, - [186842] = 7, + sym_identifier, + ACTIONS(9709), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + [187748] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9766), 1, - anon_sym_requires, - ACTIONS(9763), 2, - anon_sym_final, - anon_sym_override, - STATE(6389), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6509), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 9, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2275), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10190), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -594308,11 +616146,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(7627), 27, + ACTIONS(10188), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -594323,8 +616161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -594337,21 +616175,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [186901] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [187807] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10206), 1, + ACTIONS(10023), 1, anon_sym_requires, - ACTIONS(10203), 2, + ACTIONS(10020), 2, anon_sym_final, anon_sym_override, - STATE(6389), 2, + STATE(6457), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6524), 2, + STATE(6622), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8087), 9, + ACTIONS(7789), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -594361,7 +616202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8089), 27, + ACTIONS(7791), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -594389,31 +616230,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [186960] = 7, + [187866] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(11787), 1, + sym_ms_restrict_modifier, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(12067), 1, + anon_sym_STAR, + ACTIONS(12069), 1, + anon_sym_AMP_AMP, + ACTIONS(12071), 1, + anon_sym_AMP, + STATE(4883), 1, + sym_parameter_list, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(9041), 1, + sym__abstract_declarator, + ACTIONS(11789), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11791), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6335), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7453), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6859), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [187953] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(11985), 1, + sym_identifier, + ACTIONS(11987), 1, + anon_sym_LPAREN2, + ACTIONS(11989), 1, + anon_sym_STAR, + ACTIONS(11991), 1, + anon_sym_AMP_AMP, + ACTIONS(11993), 1, + anon_sym_AMP, + STATE(6574), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(8617), 1, + sym__field_declarator, + STATE(8807), 1, + sym_operator_name, + STATE(10687), 1, + sym_ms_based_modifier, + ACTIONS(3268), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6293), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7497), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3266), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8839), 7, + 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(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [188038] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11609), 1, + ACTIONS(7835), 1, anon_sym_requires, - ACTIONS(11606), 2, + ACTIONS(7829), 2, anon_sym_final, anon_sym_override, - STATE(6389), 2, + STATE(6501), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6538), 2, + STATE(6661), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8541), 9, + ACTIONS(8913), 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(8543), 27, + ACTIONS(8915), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -594424,11 +616398,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -594441,71 +616412,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [187019] = 27, + anon_sym_GT2, + [188097] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11653), 1, + ACTIONS(12007), 1, anon_sym_SLASH, - ACTIONS(11655), 1, + ACTIONS(12015), 1, anon_sym_PIPE_PIPE, - ACTIONS(11657), 1, + ACTIONS(12017), 1, anon_sym_AMP_AMP, - ACTIONS(11661), 1, + ACTIONS(12021), 1, anon_sym_CARET, - ACTIONS(11669), 1, + ACTIONS(12029), 1, anon_sym_GT_EQ, - ACTIONS(11675), 1, + ACTIONS(12035), 1, anon_sym_LT_EQ_GT, - ACTIONS(11677), 1, + ACTIONS(12037), 1, anon_sym_or, - ACTIONS(11679), 1, + ACTIONS(12039), 1, anon_sym_and, - ACTIONS(11681), 1, + ACTIONS(12041), 1, anon_sym_xor, - ACTIONS(11683), 1, + ACTIONS(12043), 1, anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10089), 2, + ACTIONS(10542), 2, aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11649), 2, + ACTIONS(12003), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11651), 2, + ACTIONS(12005), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11659), 2, + ACTIONS(12019), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(11663), 2, + ACTIONS(12023), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(11665), 2, + ACTIONS(12025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(11671), 2, + ACTIONS(12031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11667), 3, + ACTIONS(12027), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10091), 7, + ACTIONS(10544), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -594513,31 +616485,147 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_QMARK, - [187118] = 7, + [188196] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(11718), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(11987), 1, + anon_sym_LPAREN2, + ACTIONS(11995), 1, + sym_identifier, + ACTIONS(11997), 1, + anon_sym_STAR, + ACTIONS(11999), 1, + anon_sym_AMP_AMP, + ACTIONS(12001), 1, + anon_sym_AMP, + STATE(6574), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(9079), 1, + sym__field_declarator, + STATE(9236), 1, + sym_operator_name, + STATE(11191), 1, + sym_ms_based_modifier, + ACTIONS(3268), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6296), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7428), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3266), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8839), 7, + 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(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [188281] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12081), 1, + anon_sym_LPAREN2, + ACTIONS(12083), 6, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(12079), 36, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [188334] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11968), 1, anon_sym_requires, - ACTIONS(11715), 2, + ACTIONS(11965), 2, anon_sym_final, anon_sym_override, - STATE(6389), 2, + STATE(6501), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6539), 2, + STATE(6658), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8559), 9, + ACTIONS(8905), 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(8561), 27, + ACTIONS(8907), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -594548,11 +616636,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -594565,143 +616650,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [187177] = 27, + anon_sym_GT2, + [188393] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11653), 1, - anon_sym_SLASH, - ACTIONS(11655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11657), 1, - anon_sym_AMP_AMP, - ACTIONS(11661), 1, - anon_sym_CARET, - ACTIONS(11669), 1, - anon_sym_GT_EQ, - ACTIONS(11675), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11677), 1, - anon_sym_or, - ACTIONS(11679), 1, - anon_sym_and, - ACTIONS(11681), 1, - anon_sym_xor, - ACTIONS(11683), 1, - anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10123), 2, + STATE(2080), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10206), 17, aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11649), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11651), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11659), 2, + anon_sym_SLASH, anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(11663), 2, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(11665), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(11671), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11667), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10125), 7, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(10204), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - [187276] = 27, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [188452] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11653), 1, + ACTIONS(12007), 1, anon_sym_SLASH, - ACTIONS(11655), 1, + ACTIONS(12015), 1, anon_sym_PIPE_PIPE, - ACTIONS(11657), 1, + ACTIONS(12017), 1, anon_sym_AMP_AMP, - ACTIONS(11661), 1, + ACTIONS(12021), 1, anon_sym_CARET, - ACTIONS(11669), 1, + ACTIONS(12029), 1, anon_sym_GT_EQ, - ACTIONS(11675), 1, + ACTIONS(12035), 1, anon_sym_LT_EQ_GT, - ACTIONS(11677), 1, + ACTIONS(12037), 1, anon_sym_or, - ACTIONS(11679), 1, + ACTIONS(12039), 1, anon_sym_and, - ACTIONS(11681), 1, + ACTIONS(12041), 1, anon_sym_xor, - ACTIONS(11683), 1, + ACTIONS(12043), 1, anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9344), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9599), 2, aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(11359), 2, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11649), 2, + ACTIONS(12003), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11651), 2, + ACTIONS(12005), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11659), 2, + ACTIONS(12019), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(11663), 2, + ACTIONS(12023), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(11665), 2, + ACTIONS(12025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(11671), 2, + ACTIONS(12031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11667), 3, + ACTIONS(12027), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9342), 7, + ACTIONS(9597), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -594709,21 +616775,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_QMARK, - [187375] = 7, + [188551] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7598), 1, - anon_sym_requires, - ACTIONS(7596), 2, + ACTIONS(10363), 1, + anon_sym_const, + STATE(4333), 1, + sym_alignas_qualifier, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4109), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6752), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6754), 21, + 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_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - STATE(6389), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6558), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 9, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [188612] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2275), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10194), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -594732,11 +616848,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(7544), 27, + ACTIONS(10192), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -594747,8 +616863,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -594761,199 +616877,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [187434] = 27, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [188671] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11653), 1, - anon_sym_SLASH, - ACTIONS(11655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11657), 1, - anon_sym_AMP_AMP, - ACTIONS(11661), 1, - anon_sym_CARET, - ACTIONS(11669), 1, - anon_sym_GT_EQ, - ACTIONS(11675), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11677), 1, - anon_sym_or, - ACTIONS(11679), 1, - anon_sym_and, - ACTIONS(11681), 1, - anon_sym_xor, - ACTIONS(11683), 1, - anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10176), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11649), 2, + STATE(2275), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10174), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11651), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11659), 2, + anon_sym_SLASH, anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(11663), 2, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(11665), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(11671), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11667), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10178), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_QMARK, - [187533] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(10172), 29, anon_sym_DOT_DOT_DOT, - ACTIONS(11653), 1, - anon_sym_SLASH, - ACTIONS(11655), 1, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(11657), 1, anon_sym_AMP_AMP, - ACTIONS(11661), 1, anon_sym_CARET, - ACTIONS(11669), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(11673), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, - ACTIONS(11675), 1, anon_sym_LT_EQ_GT, - ACTIONS(11677), 1, anon_sym_or, - ACTIONS(11679), 1, anon_sym_and, - ACTIONS(11681), 1, + anon_sym_bitor, anon_sym_xor, - ACTIONS(11683), 1, + anon_sym_bitand, anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9436), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11649), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11651), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11659), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(11663), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(11665), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(11671), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11667), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9438), 5, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [187636] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11653), 1, - anon_sym_SLASH, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11651), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9282), 15, - aux_sym_preproc_elif_token1, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [188730] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10621), 1, + anon_sym_requires, + ACTIONS(10618), 2, + anon_sym_final, + anon_sym_override, + STATE(6457), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6637), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(9284), 16, + anon_sym_DOT, + ACTIONS(8422), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -594962,137 +616970,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [187705] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11653), 1, - anon_sym_SLASH, - ACTIONS(11657), 1, - anon_sym_AMP_AMP, - ACTIONS(11661), 1, - anon_sym_CARET, - ACTIONS(11669), 1, - anon_sym_GT_EQ, - ACTIONS(11675), 1, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(11679), 1, + anon_sym_or, anon_sym_and, - ACTIONS(11681), 1, + anon_sym_bitor, anon_sym_xor, - ACTIONS(11683), 1, + anon_sym_bitand, anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11649), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11651), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11659), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(11663), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(11665), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(11671), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9282), 3, - aux_sym_preproc_elif_token1, - anon_sym_or, - sym_identifier, - ACTIONS(11667), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9284), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - [187800] = 23, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [188789] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11653), 1, + ACTIONS(12007), 1, anon_sym_SLASH, - ACTIONS(11661), 1, - anon_sym_CARET, - ACTIONS(11669), 1, + ACTIONS(12029), 1, anon_sym_GT_EQ, - ACTIONS(11675), 1, + ACTIONS(12035), 1, anon_sym_LT_EQ_GT, - ACTIONS(11681), 1, - anon_sym_xor, - ACTIONS(11683), 1, + ACTIONS(12043), 1, anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11649), 2, + ACTIONS(12003), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11651), 2, + ACTIONS(12005), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11659), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(11663), 2, + ACTIONS(12023), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(11665), 2, + ACTIONS(12025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(11671), 2, + ACTIONS(12031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11667), 3, + ACTIONS(12027), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9282), 4, + ACTIONS(9707), 7, aux_sym_preproc_elif_token1, + anon_sym_PIPE, anon_sym_or, anon_sym_and, + anon_sym_bitor, + anon_sym_xor, sym_identifier, - ACTIONS(9284), 9, + ACTIONS(9709), 10, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -595101,65 +617047,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_QMARK, - [187891] = 22, + [188874] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11653), 1, + ACTIONS(12007), 1, anon_sym_SLASH, - ACTIONS(11661), 1, - anon_sym_CARET, - ACTIONS(11669), 1, + ACTIONS(12029), 1, anon_sym_GT_EQ, - ACTIONS(11675), 1, + ACTIONS(12035), 1, anon_sym_LT_EQ_GT, - ACTIONS(11681), 1, - anon_sym_xor, - ACTIONS(11683), 1, + ACTIONS(12043), 1, anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11649), 2, + ACTIONS(12003), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11651), 2, + ACTIONS(12005), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11663), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(11665), 2, + ACTIONS(12025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(11671), 2, + ACTIONS(12031), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11667), 3, + ACTIONS(12027), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9282), 6, + ACTIONS(9707), 9, aux_sym_preproc_elif_token1, anon_sym_PIPE, + anon_sym_AMP, anon_sym_or, anon_sym_and, anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, sym_identifier, - ACTIONS(9284), 9, + ACTIONS(9709), 10, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -595168,348 +617111,427 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_QMARK, - [187980] = 20, + [188957] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11653), 1, - anon_sym_SLASH, - ACTIONS(11669), 1, - anon_sym_GT_EQ, - ACTIONS(11675), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11683), 1, - anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11649), 2, + STATE(2275), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10186), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11651), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(10184), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11663), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(11665), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(11671), 2, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11667), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9282), 7, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [189016] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(11985), 1, sym_identifier, - ACTIONS(9284), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, + ACTIONS(11987), 1, + anon_sym_LPAREN2, + ACTIONS(11989), 1, + anon_sym_STAR, + ACTIONS(11991), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, - [188065] = 19, + ACTIONS(11993), 1, + anon_sym_AMP, + STATE(6574), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(8612), 1, + sym__field_declarator, + STATE(8807), 1, + sym_operator_name, + STATE(10687), 1, + sym_ms_based_modifier, + ACTIONS(3268), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6310), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7429), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3266), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8839), 7, + 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(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [189101] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11653), 1, - anon_sym_SLASH, - ACTIONS(11669), 1, - anon_sym_GT_EQ, - ACTIONS(11675), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11683), 1, - anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11649), 2, + STATE(2072), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10186), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11651), 2, + 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(10184), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11665), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(11671), 2, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11667), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9282), 9, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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, - sym_identifier, - ACTIONS(9284), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, - [188148] = 17, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [189160] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11653), 1, - anon_sym_SLASH, - ACTIONS(11669), 1, - anon_sym_GT_EQ, - ACTIONS(11675), 1, - anon_sym_LT_EQ_GT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11649), 2, + STATE(2275), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10210), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11651), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11671), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11667), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9282), 10, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(9284), 12, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(10208), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_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_QMARK, - [188227] = 15, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [189219] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11653), 1, + ACTIONS(12007), 1, anon_sym_SLASH, - ACTIONS(11675), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12015), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12017), 1, + anon_sym_AMP_AMP, + ACTIONS(12021), 1, + anon_sym_CARET, + ACTIONS(12029), 1, + anon_sym_GT_EQ, + ACTIONS(12033), 1, + anon_sym_QMARK, + ACTIONS(12035), 1, anon_sym_LT_EQ_GT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12037), 1, + anon_sym_or, + ACTIONS(12039), 1, + anon_sym_and, + ACTIONS(12041), 1, + anon_sym_xor, + ACTIONS(12043), 1, + anon_sym_not_eq, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(10477), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11649), 2, + ACTIONS(12003), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11651), 2, + ACTIONS(12005), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11671), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9282), 13, - aux_sym_preproc_elif_token1, + ACTIONS(12019), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12023), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(12025), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12031), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12027), 3, 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, - sym_identifier, - ACTIONS(9284), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(10479), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - [188302] = 13, + [189322] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11653), 1, - anon_sym_SLASH, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11649), 2, + ACTIONS(9961), 1, + anon_sym___attribute__, + ACTIONS(9963), 1, + anon_sym___attribute, + ACTIONS(10114), 1, + anon_sym_LBRACE, + ACTIONS(12045), 1, + anon_sym_COLON, + STATE(4316), 1, + sym__enum_base_clause, + STATE(4370), 1, + sym_enumerator_list, + STATE(4517), 1, + sym_attribute_specifier, + ACTIONS(8000), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11651), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9282), 13, - aux_sym_preproc_elif_token1, + anon_sym_SLASH, 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(8002), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - sym_identifier, - ACTIONS(9284), 16, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [189387] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10363), 1, + anon_sym_const, + STATE(4333), 1, + sym_alignas_qualifier, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4109), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6899), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6901), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, + 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_QMARK, - anon_sym_LT_EQ_GT, - [188373] = 14, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + 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, + [189448] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11653), 1, - anon_sym_SLASH, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11649), 2, + STATE(2080), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10186), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11651), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11671), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9282), 13, - aux_sym_preproc_elif_token1, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -595521,49 +617543,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(9284), 14, + ACTIONS(10184), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [188446] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [189507] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7460), 1, - anon_sym_requires, - ACTIONS(7454), 2, - anon_sym_final, - anon_sym_override, - STATE(6331), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6467), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7629), 11, + ACTIONS(9413), 1, + anon_sym_LBRACE, + ACTIONS(10075), 1, + anon_sym___attribute__, + ACTIONS(10077), 1, + anon_sym___attribute, + ACTIONS(12073), 1, + anon_sym_COLON, + STATE(4095), 1, + sym_attribute_specifier, + STATE(4320), 1, + sym__enum_base_clause, + STATE(4386), 1, + sym_enumerator_list, + ACTIONS(8006), 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(7627), 25, + ACTIONS(8008), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -595574,8 +617606,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -595588,312 +617623,686 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [188505] = 27, + [189572] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11653), 1, - anon_sym_SLASH, - ACTIONS(11655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11657), 1, - anon_sym_AMP_AMP, - ACTIONS(11661), 1, - anon_sym_CARET, - ACTIONS(11669), 1, - anon_sym_GT_EQ, - ACTIONS(11675), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11677), 1, - anon_sym_or, - ACTIONS(11679), 1, - anon_sym_and, - ACTIONS(11681), 1, - anon_sym_xor, - ACTIONS(11683), 1, - anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10184), 2, + STATE(2080), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10210), 17, aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11649), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11651), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11659), 2, + anon_sym_SLASH, anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(11663), 2, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(11665), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(11671), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11667), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10186), 7, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(10208), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_QMARK, - [188604] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11653), 1, - anon_sym_SLASH, - ACTIONS(11655), 1, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(11657), 1, anon_sym_AMP_AMP, - ACTIONS(11661), 1, anon_sym_CARET, - ACTIONS(11669), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(11673), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - ACTIONS(11675), 1, anon_sym_LT_EQ_GT, - ACTIONS(11677), 1, - anon_sym_or, - ACTIONS(11679), 1, - anon_sym_and, - ACTIONS(11681), 1, - anon_sym_xor, - ACTIONS(11683), 1, - anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10188), 2, - aux_sym_preproc_elif_token1, + [189631] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(11987), 1, + anon_sym_LPAREN2, + ACTIONS(11995), 1, sym_identifier, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11649), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11651), 2, + ACTIONS(11997), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11659), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(11663), 2, + ACTIONS(11999), 1, + anon_sym_AMP_AMP, + ACTIONS(12001), 1, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(11665), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(11671), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11667), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10190), 5, + STATE(6574), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(9026), 1, + sym__field_declarator, + STATE(9236), 1, + sym_operator_name, + STATE(11191), 1, + sym_ms_based_modifier, + ACTIONS(3268), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6427), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7434), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3266), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8839), 7, + 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(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [189716] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12085), 1, + anon_sym___attribute__, + ACTIONS(12088), 1, + anon_sym___attribute, + STATE(6377), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(6935), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6937), 34, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [188707] = 27, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_COLON, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + 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, + [189772] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11653), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12091), 1, + anon_sym_COMMA, + ACTIONS(12097), 1, anon_sym_SLASH, - ACTIONS(11655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11657), 1, - anon_sym_AMP_AMP, - ACTIONS(11661), 1, - anon_sym_CARET, - ACTIONS(11669), 1, + ACTIONS(12103), 1, + anon_sym_PIPE, + ACTIONS(12107), 1, + anon_sym_AMP, + ACTIONS(12113), 1, anon_sym_GT_EQ, - ACTIONS(11675), 1, + ACTIONS(12117), 1, + anon_sym_SEMI, + ACTIONS(12119), 1, + anon_sym___attribute__, + ACTIONS(12121), 1, + anon_sym_QMARK, + ACTIONS(12123), 1, anon_sym_LT_EQ_GT, - ACTIONS(11677), 1, - anon_sym_or, - ACTIONS(11679), 1, - anon_sym_and, - ACTIONS(11681), 1, - anon_sym_xor, - ACTIONS(11683), 1, - anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12125), 1, + anon_sym_bitor, + ACTIONS(12127), 1, + anon_sym_bitand, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + STATE(9217), 1, + aux_sym_field_declaration_repeat1, + STATE(10714), 1, + sym_attribute_specifier, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10192), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11649), 2, + ACTIONS(12093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11651), 2, + ACTIONS(12095), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11659), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(11663), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(11665), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(11671), 2, + ACTIONS(12099), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12101), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12105), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12115), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11667), 3, + ACTIONS(12109), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12111), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10194), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_QMARK, - [188806] = 29, + [189878] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10554), 1, + anon_sym_LBRACE, + ACTIONS(12129), 1, + anon_sym_COLON, + STATE(4509), 1, + sym__enum_base_clause, + STATE(4668), 1, + sym_enumerator_list, + STATE(4868), 1, + sym_attribute_specifier, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8002), 5, anon_sym_LPAREN2, - ACTIONS(9236), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(8000), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_operator, + [189940] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8554), 1, + anon_sym_COLON_COLON, + ACTIONS(10178), 1, + anon_sym_STAR, + ACTIONS(10180), 1, + anon_sym_AMP_AMP, + ACTIONS(10182), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7530), 1, + sym_ms_call_modifier, + STATE(7990), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8437), 1, + sym__declarator, + STATE(9921), 1, + sym_init_declarator, + STATE(11622), 1, + sym_ms_based_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(2242), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8555), 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, + [190032] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10554), 1, + anon_sym_LBRACE, + ACTIONS(12129), 1, + anon_sym_COLON, + STATE(4514), 1, + sym__enum_base_clause, + STATE(4683), 1, + sym_enumerator_list, + STATE(4912), 1, + sym_attribute_specifier, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8008), 5, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(8006), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_operator, + [190094] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11653), 1, + ACTIONS(12091), 1, + anon_sym_COMMA, + ACTIONS(12097), 1, anon_sym_SLASH, - ACTIONS(11655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11657), 1, - anon_sym_AMP_AMP, - ACTIONS(11661), 1, - anon_sym_CARET, - ACTIONS(11669), 1, + ACTIONS(12103), 1, + anon_sym_PIPE, + ACTIONS(12107), 1, + anon_sym_AMP, + ACTIONS(12113), 1, anon_sym_GT_EQ, - ACTIONS(11673), 1, + ACTIONS(12119), 1, + anon_sym___attribute__, + ACTIONS(12121), 1, anon_sym_QMARK, - ACTIONS(11675), 1, + ACTIONS(12123), 1, anon_sym_LT_EQ_GT, - ACTIONS(11677), 1, - anon_sym_or, - ACTIONS(11679), 1, - anon_sym_and, - ACTIONS(11681), 1, - anon_sym_xor, - ACTIONS(11683), 1, - anon_sym_not_eq, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12125), 1, + anon_sym_bitor, + ACTIONS(12127), 1, + anon_sym_bitand, + ACTIONS(12131), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + STATE(9205), 1, + aux_sym_field_declaration_repeat1, + STATE(11041), 1, + sym_attribute_specifier, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10196), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11649), 2, + ACTIONS(12093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11651), 2, + ACTIONS(12095), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11659), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(11663), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(11665), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(11671), 2, + ACTIONS(12099), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12101), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12105), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12115), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11667), 3, + ACTIONS(12109), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12111), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10198), 5, + [190200] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8554), 1, + anon_sym_COLON_COLON, + ACTIONS(10178), 1, + anon_sym_STAR, + ACTIONS(10180), 1, + anon_sym_AMP_AMP, + ACTIONS(10182), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7521), 1, + sym_ms_call_modifier, + STATE(7990), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8481), 1, + sym__declarator, + STATE(10594), 1, + sym_init_declarator, + STATE(11622), 1, + sym_ms_based_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(2242), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8555), 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, + [190292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7132), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(7134), 37, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [188909] = 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_RBRACK, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + 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, + [190342] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, anon_sym_LBRACK, - STATE(1970), 1, - sym_parameter_list, - STATE(5230), 1, - sym__function_declarator_seq, - ACTIONS(9852), 17, - aux_sym_preproc_elif_token1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8554), 1, + anon_sym_COLON_COLON, + ACTIONS(10178), 1, + anon_sym_STAR, + ACTIONS(10180), 1, + anon_sym_AMP_AMP, + ACTIONS(10182), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7507), 1, + sym_ms_call_modifier, + STATE(7990), 1, + sym__scope_resolution, + STATE(8096), 1, + sym__declarator, + STATE(8222), 1, + sym_splice_specifier, + STATE(9927), 1, + sym_init_declarator, + STATE(11622), 1, + sym_ms_based_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(2242), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8555), 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, + [190434] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10616), 1, + sym_literal_suffix, + ACTIONS(5645), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -595902,6 +618311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -595909,14 +618319,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9850), 22, + ACTIONS(5638), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -595927,25 +618334,365 @@ 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_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [188968] = 7, + anon_sym_COLON_RBRACK, + [190486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(7287), 6, + anon_sym_AMP, + anon_sym___attribute, + sym_ms_restrict_modifier, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(7289), 36, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11451), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [190536] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7199), 6, + anon_sym_AMP, + anon_sym___attribute, + sym_ms_restrict_modifier, anon_sym_LBRACK, - STATE(1970), 1, - sym_parameter_list, - STATE(5230), 1, - sym__function_declarator_seq, - ACTIONS(9856), 17, - aux_sym_preproc_elif_token1, + anon_sym_const, + anon_sym___asm, + ACTIONS(7201), 36, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [190586] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12133), 1, + anon_sym_virtual, + ACTIONS(12137), 1, + anon_sym___declspec, + ACTIONS(12139), 1, + anon_sym___inline, + STATE(4333), 1, + sym_alignas_qualifier, + ACTIONS(10034), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10036), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + STATE(6390), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(12135), 8, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [190660] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12137), 1, + anon_sym___declspec, + ACTIONS(12139), 1, + anon_sym___inline, + ACTIONS(12141), 1, + anon_sym_virtual, + STATE(4333), 1, + sym_alignas_qualifier, + ACTIONS(9990), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(9992), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + STATE(6417), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(12135), 8, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [190734] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8554), 1, + anon_sym_COLON_COLON, + ACTIONS(10178), 1, + anon_sym_STAR, + ACTIONS(10180), 1, + anon_sym_AMP_AMP, + ACTIONS(10182), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7567), 1, + sym_ms_call_modifier, + STATE(7990), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8394), 1, + sym__declarator, + STATE(10028), 1, + sym_init_declarator, + STATE(11622), 1, + sym_ms_based_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(2242), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8555), 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, + [190826] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12137), 1, + anon_sym___declspec, + ACTIONS(12139), 1, + anon_sym___inline, + ACTIONS(12143), 1, + anon_sym_virtual, + STATE(4333), 1, + sym_alignas_qualifier, + ACTIONS(10026), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10028), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + STATE(6399), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(12135), 8, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [190900] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7888), 1, + anon_sym_LBRACK_LBRACK, + STATE(6400), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8837), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -595954,21 +618701,12 @@ static const uint16_t ts_small_parse_table[] = { 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_LBRACK, anon_sym_DOT, - sym_identifier, - ACTIONS(9854), 22, + ACTIONS(8839), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -595979,77 +618717,106 @@ 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_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, - [189027] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [190954] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(1970), 1, - sym_parameter_list, - STATE(5230), 1, - sym__function_declarator_seq, - ACTIONS(9860), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12091), 1, + anon_sym_COMMA, + ACTIONS(12097), 1, anon_sym_SLASH, + ACTIONS(12103), 1, anon_sym_PIPE, + ACTIONS(12107), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, + ACTIONS(12113), 1, + anon_sym_GT_EQ, + ACTIONS(12119), 1, + anon_sym___attribute__, + ACTIONS(12121), 1, + anon_sym_QMARK, + ACTIONS(12123), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12125), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12127), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(9858), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(12145), 1, + anon_sym_SEMI, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + STATE(9199), 1, + aux_sym_field_declaration_repeat1, + STATE(10945), 1, + sym_attribute_specifier, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12095), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12099), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12101), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12105), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(12115), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [189086] = 7, + ACTIONS(12109), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12111), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [191060] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, - anon_sym_LPAREN2, - ACTIONS(11451), 1, - anon_sym_LBRACK, - STATE(1970), 1, - sym_parameter_list, - STATE(5230), 1, - sym__function_declarator_seq, - ACTIONS(9864), 17, - aux_sym_preproc_elif_token1, + ACTIONS(7888), 1, + anon_sym_LBRACK_LBRACK, + STATE(6400), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8833), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -596058,21 +618825,12 @@ static const uint16_t ts_small_parse_table[] = { 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_LBRACK, anon_sym_DOT, - sym_identifier, - ACTIONS(9862), 22, + ACTIONS(8835), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -596083,39 +618841,110 @@ 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_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, - [189145] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7460), 1, - anon_sym_requires, - ACTIONS(7454), 2, anon_sym_final, anon_sym_override, - STATE(6331), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6482), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8087), 11, + anon_sym_requires, + [191114] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8554), 1, + anon_sym_COLON_COLON, + ACTIONS(10178), 1, + anon_sym_STAR, + ACTIONS(10180), 1, + anon_sym_AMP_AMP, + ACTIONS(10182), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7551), 1, + sym_ms_call_modifier, + STATE(7990), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8389), 1, + sym__declarator, + STATE(10181), 1, + sym_init_declarator, + STATE(11622), 1, + sym_ms_based_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(2242), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8555), 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, + [191206] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7888), 1, + anon_sym_LBRACK_LBRACK, + STATE(6400), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9071), 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, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(8089), 25, + ACTIONS(9073), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -596126,8 +618955,10 @@ 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_LBRACK, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -596140,26 +618971,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [189204] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [191260] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8554), 1, + anon_sym_COLON_COLON, + ACTIONS(10178), 1, + anon_sym_STAR, + ACTIONS(10180), 1, + anon_sym_AMP_AMP, + ACTIONS(10182), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7555), 1, + sym_ms_call_modifier, + STATE(7990), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8432), 1, + sym__declarator, + STATE(9719), 1, + sym_init_declarator, + STATE(11622), 1, + sym_ms_based_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(2242), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8555), 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, + [191352] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10012), 1, + ACTIONS(10363), 1, anon_sym_const, - STATE(4238), 1, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12137), 1, + anon_sym___declspec, + ACTIONS(12139), 1, + anon_sym___inline, + ACTIONS(12141), 1, + anon_sym_virtual, + STATE(4333), 1, sym_alignas_qualifier, - ACTIONS(10014), 2, + ACTIONS(10071), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(10365), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3954), 2, + ACTIONS(10073), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + STATE(6417), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6388), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10001), 12, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(12135), 8, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(10352), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -596172,55 +619101,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6390), 21, - 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_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - 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, - [189265] = 7, + [191426] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7460), 1, - anon_sym_requires, - ACTIONS(7454), 2, - anon_sym_final, - anon_sym_override, - STATE(6331), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6486), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 11, + ACTIONS(12147), 1, + anon_sym_LBRACK_LBRACK, + STATE(6400), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2461), 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, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(8543), 25, + ACTIONS(9075), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -596231,8 +619131,10 @@ 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_LBRACK, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -596245,42 +619147,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [189324] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [191480] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(6210), 1, - anon_sym_LBRACK, - ACTIONS(9959), 1, - anon_sym_LT, - STATE(6335), 1, - sym_template_argument_list, - ACTIONS(6205), 2, + ACTIONS(12150), 1, + sym_identifier, + ACTIONS(12160), 1, + sym_primitive_type, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(7139), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12157), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6420), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(12155), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7207), 7, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7205), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(6208), 3, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - ACTIONS(6201), 34, - anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(12152), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -596293,44 +619205,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_operator, - [189385] = 10, + [191546] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9592), 1, - anon_sym___attribute__, - ACTIONS(9594), 1, - anon_sym___attribute, - ACTIONS(9806), 1, - anon_sym_LBRACE, - ACTIONS(11713), 1, - anon_sym_COLON, - STATE(4180), 1, - sym__enum_base_clause, - STATE(4251), 1, - sym_enumerator_list, - STATE(4323), 1, - sym_attribute_specifier, - ACTIONS(7651), 11, + ACTIONS(10616), 1, + sym_literal_suffix, + ACTIONS(5645), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, 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(7653), 25, + sym_identifier, + ACTIONS(5638), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -596339,89 +619243,25 @@ 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, - anon_sym_or, - anon_sym_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, - anon_sym_GT2, - [189450] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11724), 1, - anon_sym_virtual, - ACTIONS(11730), 1, - anon_sym___attribute__, - ACTIONS(11733), 1, - anon_sym___attribute, - ACTIONS(11736), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11739), 1, - anon_sym___declspec, - ACTIONS(11742), 1, - anon_sym___inline, - ACTIONS(11745), 1, - anon_sym_const, - STATE(4238), 1, - sym_alignas_qualifier, - ACTIONS(9678), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(11748), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(9680), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - STATE(6268), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(11727), 8, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(11721), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [189524] = 5, + [191598] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 1, + ACTIONS(7820), 1, anon_sym_LBRACK_LBRACK, - STATE(6307), 2, + STATE(6424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8725), 12, + ACTIONS(8837), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -596434,7 +619274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(8727), 27, + ACTIONS(8839), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -596462,12 +619302,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [189578] = 4, + [191652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10236), 1, - sym_literal_suffix, - ACTIONS(5260), 17, + ACTIONS(10566), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -596485,7 +619323,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5253), 24, + sym_literal_suffix, + ACTIONS(10564), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -596510,199 +619349,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [189630] = 24, + [191702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, - sym_identifier, - ACTIONS(8203), 1, - anon_sym_COLON_COLON, - ACTIONS(9818), 1, - anon_sym_STAR, - ACTIONS(9820), 1, - anon_sym_AMP_AMP, - ACTIONS(9822), 1, + ACTIONS(7108), 5, anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7416), 1, - sym_ms_call_modifier, - STATE(7878), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8294), 1, - sym__declarator, - STATE(9749), 1, - sym_init_declarator, - STATE(11190), 1, - sym_ms_based_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - ACTIONS(1880), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(8469), 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, - [189722] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, - sym_identifier, - ACTIONS(8203), 1, - anon_sym_COLON_COLON, - ACTIONS(9818), 1, - anon_sym_STAR, - ACTIONS(9820), 1, + anon_sym_const, + anon_sym___asm, + ACTIONS(7110), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_AMP_AMP, - ACTIONS(9822), 1, - anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7439), 1, - sym_ms_call_modifier, - STATE(7878), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8344), 1, - sym__declarator, - STATE(10110), 1, - sym_init_declarator, - STATE(11190), 1, - sym_ms_based_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - ACTIONS(1880), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(8469), 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, - [189814] = 24, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_RBRACK, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + 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, + [191752] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8554), 1, anon_sym_COLON_COLON, - ACTIONS(9818), 1, + ACTIONS(10178), 1, anon_sym_STAR, - ACTIONS(9820), 1, + ACTIONS(10180), 1, anon_sym_AMP_AMP, - ACTIONS(9822), 1, + ACTIONS(10182), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7392), 1, + STATE(7527), 1, sym_ms_call_modifier, - STATE(7878), 1, + STATE(7990), 1, sym__scope_resolution, - STATE(8019), 1, + STATE(8100), 1, sym__declarator, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(9835), 1, + STATE(9921), 1, sym_init_declarator, - STATE(11190), 1, + STATE(11622), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(1880), 6, + ACTIONS(2242), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -596714,63 +619464,63 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [189906] = 24, + [191844] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8554), 1, anon_sym_COLON_COLON, - ACTIONS(9818), 1, + ACTIONS(10178), 1, anon_sym_STAR, - ACTIONS(9820), 1, + ACTIONS(10180), 1, anon_sym_AMP_AMP, - ACTIONS(9822), 1, + ACTIONS(10182), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7444), 1, + STATE(7545), 1, sym_ms_call_modifier, - STATE(7878), 1, + STATE(7990), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8251), 1, + STATE(8334), 1, sym__declarator, - STATE(9752), 1, + STATE(9963), 1, sym_init_declarator, - STATE(11190), 1, + STATE(11622), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(1880), 6, + ACTIONS(2242), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -596782,90 +619532,15 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [189998] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11751), 1, - anon_sym_COMMA, - ACTIONS(11757), 1, - anon_sym_SLASH, - ACTIONS(11763), 1, - anon_sym_PIPE, - ACTIONS(11767), 1, - anon_sym_AMP, - ACTIONS(11773), 1, - anon_sym_GT_EQ, - ACTIONS(11777), 1, - anon_sym_SEMI, - ACTIONS(11779), 1, - anon_sym___attribute__, - ACTIONS(11781), 1, - anon_sym_QMARK, - ACTIONS(11783), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11785), 1, - anon_sym_bitor, - ACTIONS(11787), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - STATE(9106), 1, - aux_sym_field_declaration_repeat1, - STATE(10571), 1, - sym_attribute_specifier, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11753), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11755), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11759), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11761), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11765), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11775), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11769), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11771), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [190104] = 5, + [191936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 1, + ACTIONS(7820), 1, anon_sym_LBRACK_LBRACK, - STATE(6307), 2, + STATE(6424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8479), 12, + ACTIONS(8833), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -596878,7 +619553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(8481), 27, + ACTIONS(8835), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -596906,121 +619581,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [190158] = 24, + [191990] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(11787), 1, + sym_ms_restrict_modifier, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, - sym_identifier, - ACTIONS(8203), 1, - anon_sym_COLON_COLON, - ACTIONS(9818), 1, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(12162), 1, anon_sym_STAR, - ACTIONS(9820), 1, + ACTIONS(12164), 1, anon_sym_AMP_AMP, - ACTIONS(9822), 1, + ACTIONS(12166), 1, anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7398), 1, - sym_ms_call_modifier, - STATE(7878), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8198), 1, - sym__declarator, - STATE(9740), 1, - sym_init_declarator, - STATE(11190), 1, - sym_ms_based_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - ACTIONS(1880), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(8469), 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, - [190250] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11789), 1, - anon_sym_virtual, - ACTIONS(11793), 1, - anon_sym___declspec, - ACTIONS(11795), 1, - anon_sym___inline, - STATE(4238), 1, + STATE(5222), 1, + sym_parameter_list, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6707), 1, sym_alignas_qualifier, - ACTIONS(9600), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(10014), 2, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(9098), 1, + sym__abstract_declarator, + ACTIONS(11789), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11791), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11797), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(9602), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - STATE(6268), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + STATE(6410), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7537), 2, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(11791), 8, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(10001), 12, + aux_sym__type_definition_type_repeat1, + ACTIONS(6859), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11785), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -597033,114 +619646,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [190324] = 24, + [192076] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(11787), 1, + sym_ms_restrict_modifier, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, - sym_identifier, - ACTIONS(8203), 1, - anon_sym_COLON_COLON, - ACTIONS(9818), 1, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(12162), 1, anon_sym_STAR, - ACTIONS(9820), 1, + ACTIONS(12164), 1, anon_sym_AMP_AMP, - ACTIONS(9822), 1, + ACTIONS(12166), 1, anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7404), 1, - sym_ms_call_modifier, - STATE(7878), 1, - sym__scope_resolution, - STATE(7984), 1, - sym__declarator, - STATE(8089), 1, - sym_splice_specifier, - STATE(9749), 1, - sym_init_declarator, - STATE(11190), 1, - sym_ms_based_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - ACTIONS(1880), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(8469), 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, - [190416] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(6485), 1, + STATE(5222), 1, + sym_parameter_list, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6707), 1, sym_alignas_qualifier, - ACTIONS(11800), 2, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(9105), 1, + sym__abstract_declarator, + ACTIONS(11789), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11791), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11797), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6280), 2, + STATE(5995), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7538), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6527), 11, + ACTIONS(6823), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_GT2, - ACTIONS(6525), 13, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(11797), 13, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11785), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -597152,63 +619711,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [190474] = 24, + [192162] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8554), 1, anon_sym_COLON_COLON, - ACTIONS(9818), 1, + ACTIONS(10178), 1, anon_sym_STAR, - ACTIONS(9820), 1, + ACTIONS(10180), 1, anon_sym_AMP_AMP, - ACTIONS(9822), 1, + ACTIONS(10182), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7444), 1, + STATE(7542), 1, sym_ms_call_modifier, - STATE(7878), 1, + STATE(7990), 1, sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8299), 1, + STATE(8082), 1, sym__declarator, - STATE(9752), 1, + STATE(8222), 1, + sym_splice_specifier, + STATE(10181), 1, sym_init_declarator, - STATE(11190), 1, + STATE(11622), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(1880), 6, + ACTIONS(2242), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -597220,132 +619779,112 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [190566] = 25, + [192254] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5301), 1, + ACTIONS(7820), 1, + anon_sym_LBRACK_LBRACK, + STATE(6424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9071), 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_LBRACK, + anon_sym_DOT, + ACTIONS(9073), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(5303), 1, anon_sym_STAR, - ACTIONS(5305), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(5307), 1, - anon_sym_AMP, - ACTIONS(5311), 1, - anon_sym_LBRACK, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4601), 1, - sym_parameter_list, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8914), 1, - sym__declarator, - STATE(9179), 1, - sym__abstract_declarator, - STATE(11063), 1, - sym_ms_based_modifier, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - [190660] = 24, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [192308] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8554), 1, anon_sym_COLON_COLON, - ACTIONS(9818), 1, + ACTIONS(10178), 1, anon_sym_STAR, - ACTIONS(9820), 1, + ACTIONS(10180), 1, anon_sym_AMP_AMP, - ACTIONS(9822), 1, + ACTIONS(10182), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7411), 1, + STATE(7548), 1, sym_ms_call_modifier, - STATE(7878), 1, + STATE(7990), 1, sym__scope_resolution, - STATE(7991), 1, + STATE(8146), 1, sym__declarator, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(9582), 1, + STATE(9719), 1, sym_init_declarator, - STATE(11190), 1, + STATE(11622), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(1880), 6, + ACTIONS(2242), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -597357,63 +619896,63 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [190752] = 24, + [192400] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8554), 1, anon_sym_COLON_COLON, - ACTIONS(9818), 1, + ACTIONS(10178), 1, anon_sym_STAR, - ACTIONS(9820), 1, + ACTIONS(10180), 1, anon_sym_AMP_AMP, - ACTIONS(9822), 1, + ACTIONS(10182), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7438), 1, + STATE(7553), 1, sym_ms_call_modifier, - STATE(7878), 1, + STATE(7990), 1, sym__scope_resolution, - STATE(8018), 1, + STATE(8121), 1, sym__declarator, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10012), 1, + STATE(9874), 1, sym_init_declarator, - STATE(11190), 1, + STATE(11622), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(1880), 6, + ACTIONS(2242), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -597425,63 +619964,63 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [190844] = 24, + [192492] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8554), 1, anon_sym_COLON_COLON, - ACTIONS(9818), 1, + ACTIONS(10178), 1, anon_sym_STAR, - ACTIONS(9820), 1, + ACTIONS(10180), 1, anon_sym_AMP_AMP, - ACTIONS(9822), 1, + ACTIONS(10182), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7419), 1, + STATE(7556), 1, sym_ms_call_modifier, - STATE(7878), 1, + STATE(7990), 1, sym__scope_resolution, - STATE(7962), 1, + STATE(8108), 1, sym__declarator, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(9831), 1, + STATE(10051), 1, sym_init_declarator, - STATE(11190), 1, + STATE(11622), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(1880), 6, + ACTIONS(2242), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -597493,63 +620032,63 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [190936] = 24, + [192584] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8554), 1, anon_sym_COLON_COLON, - ACTIONS(9818), 1, + ACTIONS(10178), 1, anon_sym_STAR, - ACTIONS(9820), 1, + ACTIONS(10180), 1, anon_sym_AMP_AMP, - ACTIONS(9822), 1, + ACTIONS(10182), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7443), 1, + STATE(7560), 1, sym_ms_call_modifier, - STATE(7878), 1, + STATE(7990), 1, sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8247), 1, + STATE(8128), 1, sym__declarator, - STATE(9805), 1, + STATE(8222), 1, + sym_splice_specifier, + STATE(10121), 1, sym_init_declarator, - STATE(11190), 1, + STATE(11622), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(1880), 6, + ACTIONS(2242), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -597561,95 +620100,54 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [191028] = 7, + [192676] = 15, ACTIONS(3), 1, sym_comment, - STATE(6570), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(11806), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6287), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(11803), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(6602), 10, - 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, - anon_sym_LBRACK_COLON, - ACTIONS(6600), 24, - anon_sym_AMP, - anon_sym___extension__, + ACTIONS(12171), 1, + anon_sym_virtual, + ACTIONS(12177), 1, anon_sym___attribute__, + ACTIONS(12180), 1, anon_sym___attribute, - anon_sym___based, - anon_sym_LBRACK, + ACTIONS(12183), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12186), 1, + anon_sym___declspec, + ACTIONS(12189), 1, + anon_sym___inline, + ACTIONS(12192), 1, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + STATE(4333), 1, + sym_alignas_qualifier, + ACTIONS(10044), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(12195), 2, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [191086] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10145), 1, - anon_sym_LBRACE, - ACTIONS(11809), 1, - anon_sym_COLON, - STATE(4355), 1, - sym__enum_base_clause, - STATE(4592), 1, - sym_enumerator_list, - STATE(4746), 1, - sym_attribute_specifier, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7653), 5, + ACTIONS(10046), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(7651), 30, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, + STATE(6417), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(12174), 8, anon_sym_extern, - anon_sym___declspec, - anon_sym___based, anon_sym_static, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, + ACTIONS(12168), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -597661,142 +620159,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_operator, - [191148] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11751), 1, - anon_sym_COMMA, - ACTIONS(11757), 1, - anon_sym_SLASH, - ACTIONS(11763), 1, - anon_sym_PIPE, - ACTIONS(11767), 1, - anon_sym_AMP, - ACTIONS(11773), 1, - anon_sym_GT_EQ, - ACTIONS(11779), 1, - anon_sym___attribute__, - ACTIONS(11781), 1, - anon_sym_QMARK, - ACTIONS(11783), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11785), 1, - anon_sym_bitor, - ACTIONS(11787), 1, - anon_sym_bitand, - ACTIONS(11811), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - STATE(9071), 1, - aux_sym_field_declaration_repeat1, - STATE(10520), 1, - sym_attribute_specifier, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11753), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11755), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11759), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11761), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11765), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11775), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11769), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11771), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [191254] = 24, + [192750] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8554), 1, anon_sym_COLON_COLON, - ACTIONS(9818), 1, + ACTIONS(10178), 1, anon_sym_STAR, - ACTIONS(9820), 1, + ACTIONS(10180), 1, anon_sym_AMP_AMP, - ACTIONS(9822), 1, + ACTIONS(10182), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7394), 1, + STATE(7567), 1, sym_ms_call_modifier, - STATE(7878), 1, + STATE(7990), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8292), 1, + STATE(8419), 1, sym__declarator, - STATE(10012), 1, + STATE(10028), 1, sym_init_declarator, - STATE(11190), 1, + STATE(11622), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(1880), 6, + ACTIONS(2242), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -597808,33 +620227,93 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [191346] = 3, + [192842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6806), 6, + ACTIONS(10566), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - sym_ms_restrict_modifier, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + 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(10564), 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6808), 36, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [192892] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(6707), 1, + sym_alignas_qualifier, + ACTIONS(12201), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6420), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6891), 11, + 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___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6889), 13, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(12198), 13, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -597846,72 +620325,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [191396] = 24, + [192950] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8554), 1, anon_sym_COLON_COLON, - ACTIONS(9818), 1, + ACTIONS(10178), 1, anon_sym_STAR, - ACTIONS(9820), 1, + ACTIONS(10180), 1, anon_sym_AMP_AMP, - ACTIONS(9822), 1, + ACTIONS(10182), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7407), 1, + STATE(7566), 1, sym_ms_call_modifier, - STATE(7878), 1, + STATE(7990), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8249), 1, + STATE(8392), 1, sym__declarator, - STATE(9835), 1, + STATE(9927), 1, sym_init_declarator, - STATE(11190), 1, + STATE(11622), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(1880), 6, + ACTIONS(2242), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -597923,63 +620393,64 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [191488] = 24, + [193042] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, - sym_identifier, - ACTIONS(8203), 1, - anon_sym_COLON_COLON, - ACTIONS(9818), 1, + ACTIONS(5617), 1, + anon_sym_LPAREN2, + ACTIONS(5619), 1, anon_sym_STAR, - ACTIONS(9820), 1, + ACTIONS(5621), 1, anon_sym_AMP_AMP, - ACTIONS(9822), 1, + ACTIONS(5623), 1, anon_sym_AMP, - STATE(3682), 1, + ACTIONS(5627), 1, + anon_sym_LBRACK, + ACTIONS(8228), 1, + sym_identifier, + ACTIONS(8675), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7444), 1, - sym_ms_call_modifier, - STATE(7878), 1, + STATE(4706), 1, + sym_parameter_list, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8152), 1, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(9044), 1, sym__declarator, - STATE(9752), 1, - sym_init_declarator, - STATE(11190), 1, + STATE(9403), 1, + sym__abstract_declarator, + STATE(11554), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(1880), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -597991,63 +620462,63 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [191580] = 24, + [193136] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8554), 1, anon_sym_COLON_COLON, - ACTIONS(9818), 1, + ACTIONS(10178), 1, anon_sym_STAR, - ACTIONS(9820), 1, + ACTIONS(10180), 1, anon_sym_AMP_AMP, - ACTIONS(9822), 1, + ACTIONS(10182), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7425), 1, + STATE(7567), 1, sym_ms_call_modifier, - STATE(7878), 1, + STATE(7990), 1, sym__scope_resolution, - STATE(7967), 1, - sym__declarator, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(9946), 1, + STATE(8294), 1, + sym__declarator, + STATE(10028), 1, sym_init_declarator, - STATE(11190), 1, + STATE(11622), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(1880), 6, + ACTIONS(2242), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -598059,15 +620530,15 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [191672] = 5, + [193228] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 1, + ACTIONS(12204), 1, anon_sym_LBRACK_LBRACK, - STATE(6307), 2, + STATE(6424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8512), 12, + ACTIONS(2461), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -598080,7 +620551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(8514), 27, + ACTIONS(9075), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -598108,16 +620579,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [191726] = 3, + [193282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 5, + ACTIONS(7081), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(6722), 37, + ACTIONS(7083), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -598151,30 +620622,1111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [193332] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12207), 1, + sym_identifier, + ACTIONS(12217), 1, + sym_primitive_type, + STATE(6560), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6707), 1, + sym_alignas_qualifier, + ACTIONS(12214), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6401), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(12212), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7251), 7, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7249), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(12209), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [193398] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(6574), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(12222), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6427), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(12219), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(6944), 10, + 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, + anon_sym_LBRACK_COLON, + ACTIONS(6942), 24, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [193456] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12229), 1, + anon_sym_SLASH, + ACTIONS(12235), 1, + anon_sym_PIPE, + ACTIONS(12239), 1, + anon_sym_AMP, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12251), 1, + anon_sym_bitor, + ACTIONS(12253), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12227), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10544), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COLON_RBRACK, + [193547] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, + anon_sym_SLASH, + ACTIONS(12235), 1, + anon_sym_PIPE, + ACTIONS(12239), 1, + anon_sym_AMP, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12251), 1, + anon_sym_bitor, + ACTIONS(12253), 1, + anon_sym_bitand, + ACTIONS(12255), 1, + anon_sym_QMARK, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12227), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10491), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON_RBRACK, + [193642] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8954), 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___attribute, + anon_sym_DOT, + ACTIONS(8956), 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___attribute__, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [193691] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12229), 1, + anon_sym_SLASH, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12227), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9707), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 22, + 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, + anon_sym_COLON_RBRACK, + [193758] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12229), 1, + anon_sym_SLASH, + ACTIONS(12235), 1, + anon_sym_PIPE, + ACTIONS(12239), 1, + anon_sym_AMP, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12251), 1, + anon_sym_bitor, + ACTIONS(12253), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12227), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12233), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 9, + 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, + anon_sym_COLON_RBRACK, + [193847] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12229), 1, + anon_sym_SLASH, + ACTIONS(12235), 1, + anon_sym_PIPE, + ACTIONS(12239), 1, + anon_sym_AMP, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12251), 1, + anon_sym_bitor, + ACTIONS(12253), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12227), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12237), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 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_COLON_RBRACK, + [193934] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(9707), 1, + anon_sym_PIPE, + ACTIONS(12229), 1, + anon_sym_SLASH, + ACTIONS(12239), 1, + anon_sym_AMP, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12253), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12227), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12237), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 12, + 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, + anon_sym_COLON_RBRACK, + [194019] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, + anon_sym_SLASH, + ACTIONS(12235), 1, + anon_sym_PIPE, + ACTIONS(12239), 1, + anon_sym_AMP, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12251), 1, + anon_sym_bitor, + ACTIONS(12253), 1, + anon_sym_bitand, + ACTIONS(12255), 1, + anon_sym_QMARK, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12227), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9828), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON_RBRACK, + [194114] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12229), 1, + anon_sym_SLASH, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, + anon_sym_LT_EQ_GT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9707), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12227), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 15, + 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, + anon_sym_COLON_RBRACK, + [194193] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12229), 1, + anon_sym_SLASH, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, + anon_sym_LT_EQ_GT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9707), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12227), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 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_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, + anon_sym_COLON_RBRACK, + [194270] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12257), 1, + anon_sym_LPAREN2, + ACTIONS(12259), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_parameter_list, + STATE(6617), 1, + sym__function_declarator_seq, + ACTIONS(10198), 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(10196), 28, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [194327] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12229), 1, + anon_sym_SLASH, + ACTIONS(12249), 1, + anon_sym_LT_EQ_GT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12227), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9707), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_COLON_RBRACK, + [194400] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12229), 1, + anon_sym_SLASH, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12227), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9707), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 22, + 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, + anon_sym_COLON_RBRACK, + [194469] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12257), 1, + anon_sym_LPAREN2, + ACTIONS(12259), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_parameter_list, + STATE(6617), 1, + sym__function_declarator_seq, + ACTIONS(10202), 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(10200), 28, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [194526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8992), 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___attribute, + anon_sym_DOT, + ACTIONS(8994), 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___attribute__, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [194575] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12257), 1, + anon_sym_LPAREN2, + ACTIONS(12259), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_parameter_list, + STATE(6617), 1, + sym__function_declarator_seq, + ACTIONS(10206), 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(10204), 28, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [194632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8992), 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___attribute, + anon_sym_DOT, + ACTIONS(8994), 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___attribute__, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [191776] = 5, + [194681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7501), 1, - anon_sym_LBRACK_LBRACK, - STATE(6301), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8512), 10, + ACTIONS(8992), 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_LBRACK, + anon_sym_GT_GT, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(8514), 29, + ACTIONS(8994), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -598185,10 +621737,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_RBRACK, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -598203,178 +621754,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_requires, - [191830] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11789), 1, - anon_sym_virtual, - ACTIONS(11793), 1, - anon_sym___declspec, - ACTIONS(11795), 1, - anon_sym___inline, - STATE(4238), 1, - sym_alignas_qualifier, - ACTIONS(9654), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(9656), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - STATE(6268), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(11791), 8, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [191904] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11813), 1, - anon_sym___attribute__, - ACTIONS(11816), 1, - anon_sym___attribute, - STATE(6299), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(6553), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6555), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_COLON, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - 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, - [191960] = 9, + [194730] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10145), 1, - anon_sym_LBRACE, - ACTIONS(11809), 1, - anon_sym_COLON, - STATE(4444), 1, - sym__enum_base_clause, - STATE(4573), 1, - sym_enumerator_list, - STATE(4866), 1, - sym_attribute_specifier, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7602), 5, + ACTIONS(12257), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(7600), 30, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_operator, - [192022] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11819), 1, - anon_sym_LBRACK_LBRACK, - STATE(6301), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2101), 10, + ACTIONS(12259), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_parameter_list, + STATE(6617), 1, + sym__function_declarator_seq, + ACTIONS(10210), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -598383,12 +621776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(8700), 29, + ACTIONS(10208), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -598415,338 +621806,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [192076] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11793), 1, - anon_sym___declspec, - ACTIONS(11795), 1, - anon_sym___inline, - ACTIONS(11822), 1, - anon_sym_virtual, - STATE(4238), 1, - sym_alignas_qualifier, - ACTIONS(9707), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(9709), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - STATE(6278), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(11791), 8, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [192150] = 31, + [194787] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11751), 1, - anon_sym_COMMA, - ACTIONS(11757), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11763), 1, - anon_sym_PIPE, - ACTIONS(11767), 1, - anon_sym_AMP, - ACTIONS(11773), 1, - anon_sym_GT_EQ, - ACTIONS(11779), 1, - anon_sym___attribute__, - ACTIONS(11781), 1, - anon_sym_QMARK, - ACTIONS(11783), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11785), 1, - anon_sym_bitor, - ACTIONS(11787), 1, - anon_sym_bitand, - ACTIONS(11824), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - STATE(9093), 1, - aux_sym_field_declaration_repeat1, - STATE(11202), 1, - sym_attribute_specifier, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11753), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11755), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11759), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11761), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11765), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11775), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11769), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11771), 3, + ACTIONS(9707), 5, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [192256] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(11423), 1, - sym_ms_restrict_modifier, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11826), 1, - anon_sym_STAR, - ACTIONS(11828), 1, - anon_sym_AMP_AMP, - ACTIONS(11830), 1, - anon_sym_AMP, - STATE(4969), 1, - sym_parameter_list, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8964), 1, - sym__abstract_declarator, - ACTIONS(11425), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11427), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6306), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7440), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6459), 3, + ACTIONS(9709), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_GT2, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [192342] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11793), 1, - anon_sym___declspec, - ACTIONS(11795), 1, - anon_sym___inline, - ACTIONS(11832), 1, - anon_sym_virtual, - STATE(4238), 1, - sym_alignas_qualifier, - ACTIONS(9719), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(9721), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - STATE(6298), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(11791), 8, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [192416] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(11423), 1, - sym_ms_restrict_modifier, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11826), 1, - anon_sym_STAR, - ACTIONS(11828), 1, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11830), 1, - anon_sym_AMP, - STATE(4969), 1, - sym_parameter_list, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8968), 1, - sym__abstract_declarator, - ACTIONS(11425), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11427), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5846), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7441), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6497), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [192502] = 5, + 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, + anon_sym_COLON_RBRACK, + [194858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11834), 1, - anon_sym_LBRACK_LBRACK, - STATE(6307), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2101), 12, + ACTIONS(8885), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -598757,9 +621877,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(8700), 27, + ACTIONS(8887), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -598771,6 +621891,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -598787,31 +621909,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [192556] = 3, + [194907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10249), 17, + ACTIONS(8909), 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_COLON, - 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___attribute, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(10247), 25, + ACTIONS(8911), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -598820,132 +621936,78 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, 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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [192606] = 24, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [194956] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(8123), 1, + anon_sym_const, + ACTIONS(11787), 1, + sym_ms_restrict_modifier, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, - sym_identifier, - ACTIONS(8203), 1, - anon_sym_COLON_COLON, - ACTIONS(9818), 1, + ACTIONS(12261), 1, anon_sym_STAR, - ACTIONS(9820), 1, + ACTIONS(12263), 1, anon_sym_AMP_AMP, - ACTIONS(9822), 1, + ACTIONS(12265), 1, anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7429), 1, - sym_ms_call_modifier, - STATE(7878), 1, - sym__scope_resolution, - STATE(7972), 1, - sym__declarator, - STATE(8089), 1, - sym_splice_specifier, - STATE(9805), 1, - sym_init_declarator, - STATE(11190), 1, - sym_ms_based_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - ACTIONS(1880), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(8469), 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, - [192698] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11837), 1, - sym_identifier, - ACTIONS(11847), 1, - sym_primitive_type, - STATE(6485), 1, + STATE(2726), 1, sym_alignas_qualifier, - STATE(6583), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(11844), 2, + STATE(5697), 1, + sym_parameter_list, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(9215), 1, + sym__abstract_declarator, + ACTIONS(6859), 2, + anon_sym_LBRACE, + anon_sym_requires, + ACTIONS(8125), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6316), 2, + ACTIONS(11789), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11791), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6455), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7598), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11842), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6814), 7, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(6812), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(11839), 13, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8117), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -598957,30 +622019,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [192764] = 3, + [195041] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6794), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(10363), 1, anon_sym_const, - anon_sym___asm, - ACTIONS(6796), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11172), 1, anon_sym_LPAREN2, + ACTIONS(11186), 1, + anon_sym_LBRACK, + ACTIONS(11745), 1, + anon_sym_STAR, + ACTIONS(11747), 1, anon_sym_AMP_AMP, + ACTIONS(11749), 1, + anon_sym_AMP, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(4613), 1, + sym_parameter_list, + STATE(8314), 1, + sym__function_declarator_seq, + STATE(8723), 1, + sym__abstract_declarator, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4109), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8312), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7351), 10, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_static, - anon_sym_RBRACK, anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(10352), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -598992,45 +622078,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - 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, - [192814] = 3, + [195116] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 6, - anon_sym_AMP, - anon_sym___attribute, - sym_ms_restrict_modifier, - anon_sym_LBRACK, + ACTIONS(10363), 1, anon_sym_const, - anon_sym___asm, - ACTIONS(6902), 36, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11172), 1, anon_sym_LPAREN2, + ACTIONS(11186), 1, + anon_sym_LBRACK, + ACTIONS(11745), 1, anon_sym_STAR, + ACTIONS(11747), 1, anon_sym_AMP_AMP, + ACTIONS(11749), 1, + anon_sym_AMP, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(4613), 1, + sym_parameter_list, + STATE(8314), 1, + sym__function_declarator_seq, + STATE(8709), 1, + sym__abstract_declarator, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6459), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8312), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7343), 10, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(10352), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -599042,35 +622137,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [192864] = 5, + [195191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7501), 1, - anon_sym_LBRACK_LBRACK, - STATE(6301), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8479), 10, + ACTIONS(8921), 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_LBRACK, + anon_sym_GT_GT, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(8481), 29, + ACTIONS(8923), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -599081,10 +622164,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_RBRACK, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -599099,27 +622181,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [192918] = 5, + [195240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7501), 1, - anon_sym_LBRACK_LBRACK, - STATE(6301), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8725), 10, + ACTIONS(8946), 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_LBRACK, + anon_sym_GT_GT, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(8727), 29, + ACTIONS(8948), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -599130,10 +622210,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_RBRACK, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -599148,98 +622227,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [192972] = 3, + [195289] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6786), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6788), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6461), 1, anon_sym_LPAREN2, + ACTIONS(8123), 1, + anon_sym_const, + ACTIONS(11787), 1, + sym_ms_restrict_modifier, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(12261), 1, + anon_sym_STAR, + ACTIONS(12263), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(12265), 1, + anon_sym_AMP, + STATE(2726), 1, + sym_alignas_qualifier, + STATE(5697), 1, + sym_parameter_list, + STATE(6178), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(9200), 1, + sym__abstract_declarator, + ACTIONS(6823), 2, anon_sym_LBRACE, - anon_sym_static, - anon_sym_RBRACK, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - 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, - [193022] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11849), 1, - sym_identifier, - ACTIONS(11859), 1, - sym_primitive_type, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(6995), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(11856), 2, + ACTIONS(8125), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6280), 2, + ACTIONS(11789), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11791), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5995), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7585), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11854), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6886), 7, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(6884), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(11851), 13, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8117), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -599251,32 +622293,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [193088] = 4, + [195374] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10236), 1, - sym_literal_suffix, - ACTIONS(5260), 16, + ACTIONS(12267), 2, + anon_sym_final, + anon_sym_override, + STATE(6456), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9143), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5253), 25, + ACTIONS(9145), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -599285,79 +622325,32 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [193140] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10249), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - 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_identifier, - sym_literal_suffix, - ACTIONS(10247), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [193190] = 7, + anon_sym_GT2, + anon_sym_requires, + [195427] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11861), 1, - anon_sym_LPAREN2, - ACTIONS(11863), 1, - anon_sym_LBRACK, - STATE(2154), 1, - sym_parameter_list, - STATE(6587), 1, - sym__function_declarator_seq, - ACTIONS(9864), 9, + ACTIONS(7897), 2, + anon_sym_final, + anon_sym_override, + STATE(6463), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9139), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -599367,9 +622360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9862), 28, + ACTIONS(9141), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -599380,6 +622374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -599393,115 +622388,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, anon_sym_requires, - [193247] = 3, + [195480] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(8595), 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___attribute, - anon_sym_DOT, - ACTIONS(8597), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(11172), 1, anon_sym_LPAREN2, + ACTIONS(11186), 1, + anon_sym_LBRACK, + ACTIONS(11745), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11747), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, + ACTIONS(11749), 1, + anon_sym_AMP, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(4613), 1, + sym_parameter_list, + STATE(8314), 1, + sym__function_declarator_seq, + STATE(8704), 1, + sym__abstract_declarator, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4109), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8312), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6823), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + 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, - [193296] = 13, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [195555] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(11172), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11186), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(11745), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9282), 5, - anon_sym_PIPE, + ACTIONS(11747), 1, + anon_sym_AMP_AMP, + ACTIONS(11749), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9284), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(4613), 1, + sym_parameter_list, + STATE(8314), 1, + sym__function_declarator_seq, + STATE(8722), 1, + sym__abstract_declarator, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4109), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8312), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7355), 10, 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, - anon_sym_COLON_RBRACK, - [193365] = 3, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [195630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8610), 12, + ACTIONS(8996), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -599514,7 +622523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(8612), 29, + ACTIONS(8998), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -599544,10 +622553,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [193414] = 3, + [195679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8618), 12, + ACTIONS(9011), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -599560,7 +622569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(8620), 29, + ACTIONS(9013), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -599590,85 +622599,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [193463] = 24, + [195728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11869), 1, + ACTIONS(9000), 12, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(11885), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(9002), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10194), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_COLON_RBRACK, - [193554] = 7, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [195777] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11861), 1, - anon_sym_LPAREN2, - ACTIONS(11863), 1, - anon_sym_LBRACK, - STATE(2154), 1, - sym_parameter_list, - STATE(6587), 1, - sym__function_declarator_seq, - ACTIONS(9852), 9, + ACTIONS(12270), 2, + anon_sym_final, + anon_sym_override, + STATE(6463), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9143), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -599678,9 +622664,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9850), 28, + ACTIONS(9145), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -599691,6 +622678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -599704,33 +622692,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, anon_sym_requires, - [193611] = 7, + [195830] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11861), 1, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(11172), 1, anon_sym_LPAREN2, - ACTIONS(11863), 1, + ACTIONS(11186), 1, anon_sym_LBRACK, - STATE(2154), 1, + ACTIONS(11745), 1, + anon_sym_STAR, + ACTIONS(11747), 1, + anon_sym_AMP_AMP, + ACTIONS(11749), 1, + anon_sym_AMP, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(4613), 1, sym_parameter_list, - STATE(6587), 1, + STATE(8314), 1, sym__function_declarator_seq, - ACTIONS(9856), 9, + STATE(8732), 1, + sym__abstract_declarator, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4109), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8312), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7345), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [195905] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8893), 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___attribute, anon_sym_DOT, - ACTIONS(9854), 28, + ACTIONS(8895), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -599738,10 +622779,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_RBRACK, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -599756,31 +622796,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [193668] = 7, + [195954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11861), 1, - anon_sym_LPAREN2, - ACTIONS(11863), 1, - anon_sym_LBRACK, - STATE(2154), 1, - sym_parameter_list, - STATE(6587), 1, - sym__function_declarator_seq, - ACTIONS(9860), 9, + ACTIONS(8901), 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___attribute, anon_sym_DOT, - ACTIONS(9858), 28, + ACTIONS(8903), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -599788,10 +622825,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_RBRACK, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -599806,45 +622842,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [193725] = 11, + [196003] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(5655), 1, anon_sym_COLON_COLON, - ACTIONS(6505), 1, - sym_auto, - ACTIONS(6507), 1, - anon_sym_decltype, - ACTIONS(11895), 1, + ACTIONS(12059), 1, anon_sym_LT, - STATE(2824), 1, + STATE(6693), 1, sym_template_argument_list, - STATE(3014), 1, - sym_decltype_auto, - STATE(3464), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5251), 4, + ACTIONS(6565), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(6503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5258), 26, + ACTIONS(6572), 34, 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___extension__, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -599858,19 +622884,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [193790] = 5, + [196058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11897), 2, - anon_sym_final, - anon_sym_override, - STATE(6329), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(8755), 11, + ACTIONS(8942), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -599881,8 +622907,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(8757), 26, + ACTIONS(8944), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -599894,6 +622921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -599907,85 +622935,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_requires, - [193843] = 24, + [196107] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10363), 1, + anon_sym_const, + ACTIONS(11172), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11186), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, - anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(11745), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(11747), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10125), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(11749), 1, + anon_sym_AMP, + STATE(4333), 1, + sym_alignas_qualifier, + STATE(4613), 1, + sym_parameter_list, + STATE(8314), 1, + sym__function_declarator_seq, + STATE(8758), 1, + sym__abstract_declarator, + ACTIONS(10365), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6451), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8312), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7391), 10, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COLON_RBRACK, - [193934] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7454), 2, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - STATE(6329), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(8774), 11, + anon_sym_try, + anon_sym_requires, + ACTIONS(10352), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [196182] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12273), 1, + anon_sym_LPAREN2, + ACTIONS(12275), 1, + anon_sym_LBRACK, + STATE(2277), 1, + sym_parameter_list, + STATE(6557), 1, + sym__function_declarator_seq, + ACTIONS(10186), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -599997,10 +623021,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(8776), 26, + ACTIONS(10184), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -600009,7 +623032,6 @@ 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, @@ -600022,227 +623044,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_requires, - [193987] = 18, + [196239] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(12273), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(12275), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11869), 1, + STATE(2277), 1, + sym_parameter_list, + STATE(6557), 1, + sym__function_declarator_seq, + ACTIONS(10190), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9282), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 15, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(10188), 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_SEMI, - anon_sym_RBRACE, + 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_COLON_RBRACK, - [194066] = 17, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [196296] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(12273), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(12275), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11869), 1, + STATE(2277), 1, + sym_parameter_list, + STATE(6557), 1, + sym__function_declarator_seq, + ACTIONS(10194), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9282), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11883), 3, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 18, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(10192), 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_SEMI, - anon_sym_RBRACE, + 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_COLON_RBRACK, - [194143] = 24, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [196353] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(12273), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(12275), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11869), 1, + STATE(2277), 1, + sym_parameter_list, + STATE(6557), 1, + sym__function_declarator_seq, + ACTIONS(10174), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(11885), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(10172), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 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, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [196410] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(6869), 1, + sym_auto, + ACTIONS(6871), 1, + anon_sym_decltype, + ACTIONS(12277), 1, anon_sym_LT, - ACTIONS(10091), 7, - anon_sym_DOT_DOT_DOT, + STATE(2938), 1, + sym_template_argument_list, + STATE(3203), 1, + sym_decltype_auto, + STATE(3552), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5636), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6867), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5643), 26, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COLON_RBRACK, - [194234] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6235), 1, - anon_sym_LBRACK, - ACTIONS(6230), 2, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(6233), 4, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, - ACTIONS(6226), 34, - anon_sym_AMP, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -600256,313 +623249,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_operator, - [194287] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10922), 1, - anon_sym_LPAREN2, - ACTIONS(10936), 1, - anon_sym_LBRACK, - ACTIONS(11381), 1, - anon_sym_STAR, - ACTIONS(11383), 1, - anon_sym_AMP_AMP, - ACTIONS(11385), 1, - anon_sym_AMP, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(4509), 1, - sym_parameter_list, - STATE(8183), 1, - sym__function_declarator_seq, - STATE(8591), 1, - sym__abstract_declarator, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6370), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8180), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6999), 10, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [194362] = 23, + [196475] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11873), 2, + ACTIONS(12231), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 9, + ACTIONS(10475), 7, 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, anon_sym_COLON_RBRACK, - [194451] = 15, + [196566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(3163), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9282), 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(9284), 19, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(3161), 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_SEMI, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym___attribute__, + 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_COLON_RBRACK, - [194524] = 22, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [196615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11869), 1, + ACTIONS(3155), 12, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11877), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 11, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(3153), 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_SEMI, - anon_sym_RBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_sym_COLON_RBRACK, - [194611] = 23, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [196664] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3446), 1, + anon_sym_STAR, + ACTIONS(3448), 1, + anon_sym_AMP, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(9882), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(9894), 1, - anon_sym_STAR, - ACTIONS(9896), 1, - anon_sym_AMP_AMP, - ACTIONS(9898), 1, - anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7391), 1, + STATE(7524), 1, sym_ms_call_modifier, - STATE(7870), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8760), 1, + STATE(9071), 1, sym__declarator, - STATE(10563), 1, + STATE(11554), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(1880), 6, + ACTIONS(2242), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -600574,247 +623477,197 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [194700] = 21, + [196753] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(9282), 1, - anon_sym_PIPE, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11879), 1, + ACTIONS(12235), 1, + anon_sym_PIPE, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11893), 1, + ACTIONS(12251), 1, + anon_sym_bitor, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11877), 2, + ACTIONS(12231), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 12, + ACTIONS(10437), 7, 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, anon_sym_COLON_RBRACK, - [194785] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10922), 1, - anon_sym_LPAREN2, - ACTIONS(10936), 1, - anon_sym_LBRACK, - ACTIONS(11381), 1, - anon_sym_STAR, - ACTIONS(11383), 1, - anon_sym_AMP_AMP, - ACTIONS(11385), 1, - anon_sym_AMP, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(4509), 1, - sym_parameter_list, - STATE(8183), 1, - sym__function_declarator_seq, - STATE(8630), 1, - sym__abstract_declarator, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3954), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8180), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6995), 10, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [194860] = 20, + [196844] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(9282), 1, - anon_sym_PIPE, - ACTIONS(11869), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11879), 1, + ACTIONS(12235), 1, + anon_sym_PIPE, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11893), 1, + ACTIONS(12251), 1, + anon_sym_bitor, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11887), 2, + ACTIONS(12231), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(10479), 5, 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_COLON_RBRACK, - [194943] = 23, + [196939] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(9882), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(9894), 1, + ACTIONS(10240), 1, anon_sym_STAR, - ACTIONS(9896), 1, + ACTIONS(10242), 1, anon_sym_AMP_AMP, - ACTIONS(9898), 1, + ACTIONS(10244), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7395), 1, + STATE(7529), 1, sym_ms_call_modifier, - STATE(7870), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8806), 1, + STATE(8934), 1, sym__declarator, - STATE(10563), 1, + STATE(10743), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(1880), 6, + ACTIONS(2242), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -600826,516 +623679,327 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [195032] = 26, + [197028] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10198), 5, + ACTIONS(10487), 7, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_COLON_RBRACK, - [195127] = 3, + [197119] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8606), 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___attribute, - anon_sym_DOT, - ACTIONS(8608), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(9230), 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___attribute__, + ACTIONS(9642), 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [195176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8651), 12, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, + ACTIONS(12235), 1, anon_sym_PIPE, + ACTIONS(12239), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(12245), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(8653), 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___attribute__, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12251), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12253), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [195225] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8655), 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___attribute, - anon_sym_DOT, - ACTIONS(8657), 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___attribute__, - 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(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [195274] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2803), 12, + ACTIONS(12225), 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___attribute, - anon_sym_DOT, - ACTIONS(2801), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [195323] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(7784), 1, - anon_sym_const, - ACTIONS(11423), 1, - sym_ms_restrict_modifier, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11902), 1, - anon_sym_STAR, - ACTIONS(11904), 1, - anon_sym_AMP_AMP, - ACTIONS(11906), 1, - anon_sym_AMP, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(5441), 1, - sym_parameter_list, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(9101), 1, - sym__abstract_declarator, - ACTIONS(6459), 2, - anon_sym_LBRACE, - anon_sym_requires, - ACTIONS(7786), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11425), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11427), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6371), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7487), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7778), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [195408] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8622), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12243), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(8624), 29, + ACTIONS(9597), 7, 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___attribute__, - anon_sym_LBRACK, + anon_sym_RPAREN, + 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [195457] = 3, + anon_sym_COLON_RBRACK, + [197210] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(8614), 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___attribute, - anon_sym_DOT, - ACTIONS(8616), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10216), 1, + sym_identifier, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + ACTIONS(10240), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(10242), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [195506] = 3, + ACTIONS(10244), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7544), 1, + sym_ms_call_modifier, + STATE(7986), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8931), 1, + sym__declarator, + STATE(10743), 1, + sym_ms_based_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(2242), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8555), 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, + [197299] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 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___attribute, - anon_sym_DOT, - ACTIONS(8667), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10216), 1, + sym_identifier, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + ACTIONS(10240), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(10242), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [195555] = 23, + ACTIONS(10244), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7550), 1, + sym_ms_call_modifier, + STATE(7986), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8879), 1, + sym__declarator, + STATE(10743), 1, + sym_ms_based_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(2242), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8555), 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, + [197388] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(9882), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(9894), 1, + ACTIONS(10240), 1, anon_sym_STAR, - ACTIONS(9896), 1, + ACTIONS(10242), 1, anon_sym_AMP_AMP, - ACTIONS(9898), 1, + ACTIONS(10244), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7406), 1, + STATE(7554), 1, sym_ms_call_modifier, - STATE(7870), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8801), 1, + STATE(8903), 1, sym__declarator, - STATE(10563), 1, + STATE(10743), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(1880), 6, + ACTIONS(2242), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -601347,66 +624011,66 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [195644] = 24, + [197477] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10178), 7, + ACTIONS(10540), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -601414,61 +624078,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_QMARK, anon_sym_COLON_RBRACK, - [195735] = 23, + [197568] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(9882), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(9894), 1, + ACTIONS(10240), 1, anon_sym_STAR, - ACTIONS(9896), 1, + ACTIONS(10242), 1, + anon_sym_AMP_AMP, + ACTIONS(10244), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7557), 1, + sym_ms_call_modifier, + STATE(7986), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8917), 1, + sym__declarator, + STATE(10743), 1, + sym_ms_based_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(2242), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8555), 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, + [197657] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10216), 1, + sym_identifier, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + ACTIONS(10240), 1, + anon_sym_STAR, + ACTIONS(10242), 1, anon_sym_AMP_AMP, - ACTIONS(9898), 1, + ACTIONS(10244), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7414), 1, + STATE(7561), 1, sym_ms_call_modifier, - STATE(7870), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8819), 1, + STATE(8880), 1, sym__declarator, - STATE(10563), 1, + STATE(10743), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(1880), 6, + ACTIONS(2242), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -601480,10 +624210,18 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [195824] = 3, + [197746] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8516), 12, + ACTIONS(12273), 1, + anon_sym_LPAREN2, + ACTIONS(12275), 1, + anon_sym_LBRACK, + STATE(2277), 1, + sym_parameter_list, + STATE(6557), 1, + sym__function_declarator_seq, + ACTIONS(10198), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -601494,12 +624232,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_DOT, - ACTIONS(8518), 29, + ACTIONS(10196), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -601508,8 +624244,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -601526,10 +624260,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [195873] = 3, + [197803] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6603), 1, + anon_sym_LBRACK, + ACTIONS(6598), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(6601), 4, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + ACTIONS(6594), 34, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_operator, + [197856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 12, + ACTIONS(8950), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -601542,7 +624324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(8631), 29, + ACTIONS(8952), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -601572,194 +624354,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [195922] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10922), 1, - anon_sym_LPAREN2, - ACTIONS(10936), 1, - anon_sym_LBRACK, - ACTIONS(11381), 1, - anon_sym_STAR, - ACTIONS(11383), 1, - anon_sym_AMP_AMP, - ACTIONS(11385), 1, - anon_sym_AMP, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(4509), 1, - sym_parameter_list, - STATE(8183), 1, - sym__function_declarator_seq, - STATE(8583), 1, - sym__abstract_declarator, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6342), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8180), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6991), 10, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [195997] = 16, + [197905] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10922), 1, + ACTIONS(12273), 1, anon_sym_LPAREN2, - ACTIONS(10936), 1, + ACTIONS(12275), 1, anon_sym_LBRACK, - ACTIONS(11381), 1, - anon_sym_STAR, - ACTIONS(11383), 1, - anon_sym_AMP_AMP, - ACTIONS(11385), 1, - anon_sym_AMP, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(4509), 1, + STATE(2277), 1, sym_parameter_list, - STATE(8183), 1, + STATE(6557), 1, sym__function_declarator_seq, - STATE(8616), 1, - sym__abstract_declarator, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3954), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8180), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6497), 10, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [196072] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, - sym_identifier, - ACTIONS(9882), 1, - anon_sym_COLON_COLON, - ACTIONS(9894), 1, - anon_sym_STAR, - ACTIONS(9896), 1, - anon_sym_AMP_AMP, - ACTIONS(9898), 1, - anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7420), 1, - sym_ms_call_modifier, - STATE(7870), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8803), 1, - sym__declarator, - STATE(10563), 1, - sym_ms_based_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - ACTIONS(1880), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(8469), 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, - [196161] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8629), 12, + ACTIONS(10202), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -601770,12 +624376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_DOT, - ACTIONS(8631), 29, + ACTIONS(10200), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -601784,8 +624388,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -601802,54 +624404,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [196210] = 14, + [197962] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(12273), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(12275), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + STATE(2277), 1, + sym_parameter_list, + STATE(6557), 1, + sym__function_declarator_seq, + ACTIONS(10206), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9282), 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(9284), 20, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(10204), 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_SEMI, - anon_sym_RBRACE, + anon_sym_LT_LT, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -601858,78 +624446,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_COLON_RBRACK, - [196281] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10922), 1, - anon_sym_LPAREN2, - ACTIONS(10936), 1, - anon_sym_LBRACK, - ACTIONS(11381), 1, - anon_sym_STAR, - ACTIONS(11383), 1, - anon_sym_AMP_AMP, - ACTIONS(11385), 1, - anon_sym_AMP, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(4509), 1, - sym_parameter_list, - STATE(8183), 1, - sym__function_declarator_seq, - STATE(8547), 1, - sym__abstract_declarator, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3954), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8180), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7007), 10, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [196356] = 7, + [198019] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11908), 1, + ACTIONS(12273), 1, anon_sym_LPAREN2, - ACTIONS(11910), 1, + ACTIONS(12275), 1, anon_sym_LBRACK, - STATE(2153), 1, + STATE(2277), 1, sym_parameter_list, - STATE(6543), 1, + STATE(6557), 1, sym__function_declarator_seq, - ACTIONS(9834), 11, + ACTIONS(10210), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -601941,7 +624477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9832), 26, + ACTIONS(10208), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -601968,93 +624504,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [196413] = 24, + [198076] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(12257), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(12259), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11869), 1, + STATE(2281), 1, + sym_parameter_list, + STATE(6617), 1, + sym__function_declarator_seq, + ACTIONS(10186), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(11885), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(10184), 28, + 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, - ACTIONS(11889), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(11893), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [198133] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12257), 1, + anon_sym_LPAREN2, + ACTIONS(12259), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_parameter_list, + STATE(6617), 1, + sym__function_declarator_seq, + ACTIONS(10190), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(10188), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10186), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_COLON_RBRACK, - [196504] = 3, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [198190] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 12, + ACTIONS(12257), 1, + anon_sym_LPAREN2, + ACTIONS(12259), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_parameter_list, + STATE(6617), 1, + sym__function_declarator_seq, + ACTIONS(10194), 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___attribute, anon_sym_DOT, - ACTIONS(8631), 29, + ACTIONS(10192), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -602062,9 +624635,10 @@ 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___attribute__, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -602079,32 +624653,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [196553] = 7, + [198247] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11908), 1, + ACTIONS(12257), 1, anon_sym_LPAREN2, - ACTIONS(11910), 1, + ACTIONS(12259), 1, anon_sym_LBRACK, - STATE(2153), 1, + STATE(2281), 1, sym_parameter_list, - STATE(6543), 1, + STATE(6617), 1, sym__function_declarator_seq, - ACTIONS(9840), 11, + ACTIONS(10174), 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(9838), 26, + ACTIONS(10172), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -602114,7 +624685,10 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -602129,63 +624703,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [196610] = 23, + [198304] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(9882), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(9894), 1, + ACTIONS(10240), 1, anon_sym_STAR, - ACTIONS(9896), 1, + ACTIONS(10242), 1, anon_sym_AMP_AMP, - ACTIONS(9898), 1, + ACTIONS(10244), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7428), 1, + STATE(7510), 1, sym_ms_call_modifier, - STATE(7870), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8745), 1, + STATE(8945), 1, sym__declarator, - STATE(10563), 1, + STATE(10743), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(1880), 6, + ACTIONS(2242), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -602197,141 +624770,16 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [196699] = 16, + [198393] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10012), 1, - anon_sym_const, - ACTIONS(10922), 1, - anon_sym_LPAREN2, - ACTIONS(10936), 1, - anon_sym_LBRACK, - ACTIONS(11381), 1, - anon_sym_STAR, - ACTIONS(11383), 1, - anon_sym_AMP_AMP, - ACTIONS(11385), 1, - anon_sym_AMP, - STATE(4238), 1, - sym_alignas_qualifier, - STATE(4509), 1, - sym_parameter_list, - STATE(8183), 1, - sym__function_declarator_seq, - STATE(8620), 1, - sym__abstract_declarator, - ACTIONS(10014), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3954), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8180), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7003), 10, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7829), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(10001), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [196774] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(7784), 1, - anon_sym_const, - ACTIONS(11423), 1, - sym_ms_restrict_modifier, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11902), 1, - anon_sym_STAR, - ACTIONS(11904), 1, - anon_sym_AMP_AMP, - ACTIONS(11906), 1, - anon_sym_AMP, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(5441), 1, - sym_parameter_list, - STATE(6080), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(9075), 1, - sym__abstract_declarator, - ACTIONS(6497), 2, - anon_sym_LBRACE, - anon_sym_requires, - ACTIONS(7786), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11425), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11427), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5846), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7452), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7778), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [196859] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11908), 1, - anon_sym_LPAREN2, - ACTIONS(11910), 1, - anon_sym_LBRACK, - STATE(2153), 1, - sym_parameter_list, - STATE(6543), 1, - sym__function_declarator_seq, - ACTIONS(9844), 11, + STATE(6456), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9139), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -602343,9 +624791,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9842), 26, + ACTIONS(9141), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -602354,6 +624803,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, @@ -602366,227 +624816,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_requires, - [196916] = 24, + [198446] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(9707), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12229), 1, + anon_sym_SLASH, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9342), 7, + ACTIONS(9709), 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_COLON_RBRACK, - [197007] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3051), 1, - anon_sym_STAR, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7449), 1, - sym_ms_call_modifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8939), 1, - sym__declarator, - STATE(11063), 1, - sym_ms_based_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - ACTIONS(1880), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(8469), 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, - [197096] = 7, + [198529] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(11908), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11910), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(2153), 1, - sym_parameter_list, - STATE(6543), 1, - sym__function_declarator_seq, - ACTIONS(9848), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10435), 1, + anon_sym___attribute, + ACTIONS(12097), 1, anon_sym_SLASH, + ACTIONS(12103), 1, anon_sym_PIPE, + ACTIONS(12107), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(12113), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(9846), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12123), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12125), 1, + anon_sym_bitor, + ACTIONS(12127), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12095), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12099), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12101), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12105), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12115), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12109), 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [197153] = 7, + ACTIONS(12111), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10437), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + [198621] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11908), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11910), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(2153), 1, - sym_parameter_list, - STATE(6543), 1, - sym__function_declarator_seq, - ACTIONS(9852), 11, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12097), 1, + anon_sym_SLASH, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12093), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(12095), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9707), 6, 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(9850), 26, + anon_sym___attribute, + ACTIONS(9709), 20, 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___attribute__, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -602595,26 +625003,21 @@ 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [197210] = 7, + [198689] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11908), 1, + ACTIONS(4910), 1, + anon_sym_LBRACE, + ACTIONS(12279), 1, anon_sym_LPAREN2, - ACTIONS(11910), 1, + ACTIONS(12281), 1, anon_sym_LBRACK, - STATE(2153), 1, - sym_parameter_list, - STATE(6543), 1, - sym__function_declarator_seq, - ACTIONS(9856), 11, + STATE(6577), 1, + sym_new_declarator, + STATE(7231), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9256), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -602626,7 +625029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9854), 26, + ACTIONS(9258), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -602649,84 +625052,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_GT2, + [198747] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(7349), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym_STAR, + ACTIONS(11781), 1, + anon_sym_AMP_AMP, + ACTIONS(11783), 1, + anon_sym_AMP, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11795), 1, + anon_sym_const, + STATE(4796), 1, + sym_parameter_list, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8814), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6420), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7351), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [197267] = 7, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [198823] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(11908), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(11910), 1, + ACTIONS(7341), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym_STAR, + ACTIONS(11781), 1, + anon_sym_AMP_AMP, + ACTIONS(11783), 1, + anon_sym_AMP, + ACTIONS(11793), 1, anon_sym_LBRACK, - STATE(2153), 1, + ACTIONS(11795), 1, + anon_sym_const, + STATE(4796), 1, sym_parameter_list, - STATE(6543), 1, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, sym__function_declarator_seq, - ACTIONS(9860), 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(9858), 26, - anon_sym_DOT_DOT_DOT, + STATE(8820), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6508), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7343), 8, 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_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [197324] = 7, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [198899] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(11908), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(11910), 1, + ACTIONS(7353), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym_STAR, + ACTIONS(11781), 1, + anon_sym_AMP_AMP, + ACTIONS(11783), 1, + anon_sym_AMP, + ACTIONS(11793), 1, anon_sym_LBRACK, - STATE(2153), 1, + ACTIONS(11795), 1, + anon_sym_const, + STATE(4796), 1, sym_parameter_list, - STATE(6543), 1, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, sym__function_declarator_seq, - ACTIONS(9864), 11, + STATE(8828), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6420), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7355), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [198975] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4922), 1, + anon_sym_LBRACE, + ACTIONS(11527), 1, + anon_sym_LPAREN2, + ACTIONS(11529), 1, + anon_sym_LBRACK, + STATE(6704), 1, + sym_new_declarator, + STATE(6007), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9226), 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(9862), 26, + ACTIONS(9228), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -602736,7 +625264,10 @@ 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_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -602749,45 +625280,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [197381] = 5, + [199033] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(11912), 2, - anon_sym_final, - anon_sym_override, - STATE(6380), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(8755), 9, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12097), 1, + anon_sym_SLASH, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12093), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(12095), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12115), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9707), 6, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(8757), 28, + anon_sym___attribute, + ACTIONS(9709), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -602796,23 +625336,21 @@ 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_requires, - [197434] = 7, + [199103] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11861), 1, + ACTIONS(4922), 1, + anon_sym_LBRACE, + ACTIONS(11527), 1, anon_sym_LPAREN2, - ACTIONS(11863), 1, + ACTIONS(11529), 1, anon_sym_LBRACK, - STATE(2154), 1, - sym_parameter_list, - STATE(6587), 1, - sym__function_declarator_seq, - ACTIONS(9834), 9, + STATE(6582), 1, + sym_new_declarator, + STATE(5978), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9274), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -602822,7 +625360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9832), 28, + ACTIONS(9276), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -602835,7 +625373,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_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -602848,100 +625386,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [197491] = 26, + [199161] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(9707), 1, + anon_sym___attribute, + ACTIONS(12097), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12103), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12107), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12113), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12123), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12125), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12127), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12095), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12101), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12105), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12115), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12109), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12111), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10190), 5, + ACTIONS(9709), 7, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON_RBRACK, - [197586] = 7, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_or, + [199251] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11861), 1, + ACTIONS(4910), 1, + anon_sym_LBRACE, + ACTIONS(12279), 1, anon_sym_LPAREN2, - ACTIONS(11863), 1, + ACTIONS(12281), 1, anon_sym_LBRACK, - STATE(2154), 1, - sym_parameter_list, - STATE(6587), 1, - sym__function_declarator_seq, - ACTIONS(9840), 9, + STATE(6569), 1, + sym_new_declarator, + STATE(7389), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9248), 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(9838), 28, + ACTIONS(9250), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -602951,10 +625488,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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -602967,21 +625501,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [197643] = 7, + anon_sym_GT2, + [199309] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11861), 1, + ACTIONS(4922), 1, + anon_sym_LBRACE, + ACTIONS(11527), 1, anon_sym_LPAREN2, - ACTIONS(11863), 1, + ACTIONS(11529), 1, anon_sym_LBRACK, - STATE(2154), 1, - sym_parameter_list, - STATE(6587), 1, - sym__function_declarator_seq, - ACTIONS(9844), 9, + STATE(6575), 1, + sym_new_declarator, + STATE(6024), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9256), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -602991,7 +625526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9842), 28, + ACTIONS(9258), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -603004,7 +625539,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_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -603017,21 +625552,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [197700] = 7, + [199367] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11861), 1, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(12283), 1, anon_sym_LPAREN2, - ACTIONS(11863), 1, + ACTIONS(12285), 1, anon_sym_LBRACK, - STATE(2154), 1, - sym_parameter_list, - STATE(6587), 1, - sym__function_declarator_seq, - ACTIONS(9848), 9, + STATE(6610), 1, + sym_new_declarator, + STATE(7199), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9256), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -603041,7 +625576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9846), 28, + ACTIONS(9258), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -603067,128 +625602,416 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [197757] = 3, + [199425] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 12, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10538), 1, + anon_sym___attribute, + ACTIONS(12097), 1, + anon_sym_SLASH, + ACTIONS(12103), 1, + anon_sym_PIPE, + ACTIONS(12107), 1, + anon_sym_AMP, + ACTIONS(12113), 1, + anon_sym_GT_EQ, + ACTIONS(12123), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12125), 1, + anon_sym_bitor, + ACTIONS(12127), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12093), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12095), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12099), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12101), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12105), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12115), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12109), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12111), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10540), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + [199517] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10542), 1, + anon_sym___attribute, + ACTIONS(12097), 1, anon_sym_SLASH, + ACTIONS(12103), 1, anon_sym_PIPE, + ACTIONS(12107), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(12113), 1, anon_sym_GT_EQ, + ACTIONS(12123), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12125), 1, + anon_sym_bitor, + ACTIONS(12127), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12095), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12099), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12101), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12105), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12115), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12109), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12111), 3, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(2793), 29, + ACTIONS(10544), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + [199609] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, anon_sym_LPAREN2, + ACTIONS(9599), 1, + anon_sym___attribute, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12097), 1, + anon_sym_SLASH, + ACTIONS(12103), 1, + anon_sym_PIPE, + ACTIONS(12107), 1, + anon_sym_AMP, + ACTIONS(12113), 1, + anon_sym_GT_EQ, + ACTIONS(12123), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12125), 1, + anon_sym_bitor, + ACTIONS(12127), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12095), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12099), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12101), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12105), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12115), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12109), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(12111), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9597), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym___attribute__, + anon_sym_QMARK, + [199701] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12097), 1, + anon_sym_SLASH, + ACTIONS(12103), 1, + anon_sym_PIPE, + ACTIONS(12107), 1, + anon_sym_AMP, + ACTIONS(12113), 1, + anon_sym_GT_EQ, + ACTIONS(12121), 1, anon_sym_QMARK, + ACTIONS(12123), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12125), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12127), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(12289), 1, + anon_sym___attribute, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(12093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12095), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12099), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12101), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12105), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12115), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12109), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12111), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(12287), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [199797] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10473), 1, + anon_sym___attribute, + ACTIONS(12097), 1, + anon_sym_SLASH, + ACTIONS(12103), 1, + anon_sym_PIPE, + ACTIONS(12107), 1, + anon_sym_AMP, + ACTIONS(12113), 1, + anon_sym_GT_EQ, + ACTIONS(12123), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12125), 1, + anon_sym_bitor, + ACTIONS(12127), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [197806] = 26, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12095), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12099), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12101), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12105), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12115), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12109), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12111), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10475), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + [199889] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(10477), 1, + anon_sym___attribute, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12097), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12103), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12107), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12113), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12121), 1, + anon_sym_QMARK, + ACTIONS(12123), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12125), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12127), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12095), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12099), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12101), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12105), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12115), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(10479), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + ACTIONS(12109), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12111), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9438), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON_RBRACK, - [197901] = 3, + [199985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8599), 12, + ACTIONS(5589), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -603199,9 +626022,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym___attribute, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(8601), 29, + ACTIONS(5591), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -603213,8 +626036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -603231,26 +626053,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [197950] = 5, + [200033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7596), 2, - anon_sym_final, - anon_sym_override, - STATE(6380), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(8774), 9, + ACTIONS(5593), 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_LBRACK, anon_sym_DOT, - ACTIONS(8776), 28, + ACTIONS(5595), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -603261,11 +626080,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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -603278,148 +626094,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [198003] = 23, + [200081] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, - sym_identifier, - ACTIONS(9882), 1, - anon_sym_COLON_COLON, - ACTIONS(9894), 1, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(10485), 1, + anon_sym___attribute, + ACTIONS(12097), 1, + anon_sym_SLASH, + ACTIONS(12103), 1, + anon_sym_PIPE, + ACTIONS(12107), 1, + anon_sym_AMP, + ACTIONS(12113), 1, + anon_sym_GT_EQ, + ACTIONS(12123), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12125), 1, + anon_sym_bitor, + ACTIONS(12127), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12095), 2, anon_sym_STAR, - ACTIONS(9896), 1, + anon_sym_PERCENT, + ACTIONS(12099), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12101), 2, anon_sym_AMP_AMP, - ACTIONS(9898), 1, - anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7427), 1, - sym_ms_call_modifier, - STATE(7870), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8783), 1, - sym__declarator, - STATE(10563), 1, - sym_ms_based_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - ACTIONS(1880), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(8469), 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, - [198092] = 12, + anon_sym_and, + ACTIONS(12105), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12115), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12109), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12111), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10487), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + [200173] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11869), 1, + ACTIONS(10489), 1, + anon_sym___attribute, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12097), 1, anon_sym_SLASH, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12103), 1, + anon_sym_PIPE, + ACTIONS(12107), 1, + anon_sym_AMP, + ACTIONS(12113), 1, + anon_sym_GT_EQ, + ACTIONS(12121), 1, + anon_sym_QMARK, + ACTIONS(12123), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12125), 1, + anon_sym_bitor, + ACTIONS(12127), 1, + anon_sym_bitand, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11867), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9282), 7, + ACTIONS(12093), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9284), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(12095), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12099), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12101), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12105), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(12115), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(10491), 3, + anon_sym_COMMA, 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___attribute__, + ACTIONS(12109), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_COLON_RBRACK, - [198159] = 6, + ACTIONS(12111), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [200269] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(5655), 1, anon_sym_COLON_COLON, - ACTIONS(11687), 1, + ACTIONS(10005), 1, anon_sym_LT, - STATE(6613), 1, + STATE(3735), 1, sym_template_argument_list, - ACTIONS(6201), 4, + STATE(7126), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7357), 3, anon_sym_AMP, anon_sym___attribute, - anon_sym_COLON, anon_sym_const, - ACTIONS(6208), 34, + ACTIONS(12061), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7359), 29, 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___extension__, @@ -603440,76 +626279,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [198214] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8633), 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___attribute, - anon_sym_DOT, - ACTIONS(8635), 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___attribute__, - 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [198263] = 8, + [200327] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 1, + ACTIONS(4676), 1, anon_sym_LBRACE, - ACTIONS(11145), 1, + ACTIONS(12283), 1, anon_sym_LPAREN2, - ACTIONS(11147), 1, + ACTIONS(12285), 1, anon_sym_LBRACK, - STATE(6610), 1, + STATE(6596), 1, sym_new_declarator, - STATE(5871), 2, + STATE(7217), 2, sym_argument_list, sym_initializer_list, - ACTIONS(8804), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -603519,7 +626308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8806), 25, + ACTIONS(9250), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -603532,7 +626321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -603545,44 +626334,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [198321] = 17, + [200385] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(7005), 1, + ACTIONS(7347), 1, anon_sym___attribute, - ACTIONS(11415), 1, + ACTIONS(11779), 1, anon_sym_STAR, - ACTIONS(11417), 1, + ACTIONS(11781), 1, anon_sym_AMP_AMP, - ACTIONS(11419), 1, + ACTIONS(11783), 1, anon_sym_AMP, - ACTIONS(11429), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(11431), 1, + ACTIONS(11795), 1, anon_sym_const, - STATE(4823), 1, + STATE(4796), 1, sym_parameter_list, - STATE(6485), 1, + STATE(6707), 1, sym_alignas_qualifier, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(8691), 1, + STATE(8803), 1, sym__abstract_declarator, - ACTIONS(11433), 2, + ACTIONS(11797), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6280), 2, + STATE(6420), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7003), 8, + ACTIONS(7345), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -603591,7 +626380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(11421), 12, + ACTIONS(11785), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -603604,303 +626393,336 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [198397] = 7, + [200461] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(2152), 1, - sym_parameter_list, - STATE(5230), 1, - sym__function_declarator_seq, - ACTIONS(9844), 10, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, + ACTIONS(12235), 1, anon_sym_PIPE, + ACTIONS(12239), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(9842), 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, + ACTIONS(12245), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12251), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12253), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [198453] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11757), 1, - anon_sym_SLASH, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12291), 1, + anon_sym_COMMA, + ACTIONS(12293), 1, + anon_sym_SEMI, + ACTIONS(12295), 1, + anon_sym_RBRACE, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + STATE(9672), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11753), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11755), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11775), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9282), 6, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute, - ACTIONS(9284), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - [198523] = 27, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [200561] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11757), 1, + ACTIONS(9707), 1, + anon_sym___attribute, + ACTIONS(12097), 1, anon_sym_SLASH, - ACTIONS(11763), 1, + ACTIONS(12103), 1, anon_sym_PIPE, - ACTIONS(11767), 1, + ACTIONS(12107), 1, anon_sym_AMP, - ACTIONS(11773), 1, + ACTIONS(12113), 1, anon_sym_GT_EQ, - ACTIONS(11781), 1, - anon_sym_QMARK, - ACTIONS(11783), 1, + ACTIONS(12123), 1, anon_sym_LT_EQ_GT, - ACTIONS(11785), 1, + ACTIONS(12125), 1, anon_sym_bitor, - ACTIONS(11787), 1, + ACTIONS(12127), 1, anon_sym_bitand, - ACTIONS(11917), 1, - anon_sym___attribute, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11753), 2, + ACTIONS(12093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11755), 2, + ACTIONS(12095), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11759), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11761), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11765), 2, + ACTIONS(12105), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11775), 2, + ACTIONS(12115), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11769), 3, + ACTIONS(12109), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11771), 3, + ACTIONS(12111), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(11915), 3, + ACTIONS(9709), 9, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, - [198619] = 25, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + [200649] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(10176), 1, - anon_sym___attribute, - ACTIONS(11757), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12097), 1, anon_sym_SLASH, - ACTIONS(11763), 1, + ACTIONS(12103), 1, anon_sym_PIPE, - ACTIONS(11767), 1, + ACTIONS(12107), 1, anon_sym_AMP, - ACTIONS(11773), 1, + ACTIONS(12113), 1, anon_sym_GT_EQ, - ACTIONS(11783), 1, + ACTIONS(12121), 1, + anon_sym_QMARK, + ACTIONS(12123), 1, anon_sym_LT_EQ_GT, - ACTIONS(11785), 1, + ACTIONS(12125), 1, anon_sym_bitor, - ACTIONS(11787), 1, + ACTIONS(12127), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12299), 1, + anon_sym___attribute, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11753), 2, + ACTIONS(12093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11755), 2, + ACTIONS(12095), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11759), 2, + ACTIONS(12099), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11761), 2, + ACTIONS(12101), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11765), 2, + ACTIONS(12105), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11775), 2, + ACTIONS(12115), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11769), 3, + ACTIONS(12109), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11771), 3, + ACTIONS(12111), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10178), 5, - anon_sym_DOT_DOT_DOT, + ACTIONS(12297), 3, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_QMARK, - [198711] = 23, + [200745] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3486), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(6469), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(12301), 1, + sym_identifier, + ACTIONS(12303), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12307), 1, + anon_sym_EQ, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4654), 1, + sym_field_declaration_list, + STATE(4880), 1, + sym__class_declaration, + STATE(4884), 1, + sym__class_declaration_item, + STATE(5157), 1, + sym_splice_specifier, + STATE(7818), 1, + sym_ms_declspec_modifier, + STATE(8756), 1, + sym__scope_resolution, + STATE(9470), 1, + sym_virtual_specifier, + STATE(10307), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(12305), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(3790), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4029), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7819), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7409), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [200847] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(9282), 1, - anon_sym___attribute, - ACTIONS(11757), 1, + ACTIONS(12097), 1, anon_sym_SLASH, - ACTIONS(11763), 1, - anon_sym_PIPE, - ACTIONS(11767), 1, + ACTIONS(12107), 1, anon_sym_AMP, - ACTIONS(11773), 1, + ACTIONS(12113), 1, anon_sym_GT_EQ, - ACTIONS(11783), 1, + ACTIONS(12123), 1, anon_sym_LT_EQ_GT, - ACTIONS(11785), 1, - anon_sym_bitor, - ACTIONS(11787), 1, + ACTIONS(12127), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(9707), 2, + anon_sym_PIPE, + anon_sym___attribute, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11753), 2, + ACTIONS(12093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11755), 2, + ACTIONS(12095), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11765), 2, + ACTIONS(12105), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11775), 2, + ACTIONS(12115), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11769), 3, + ACTIONS(12109), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11771), 3, + ACTIONS(12111), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 9, + ACTIONS(9709), 10, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -603910,21 +626732,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_or, anon_sym_and, - [198799] = 8, + anon_sym_bitor, + [200931] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 1, + ACTIONS(4676), 1, anon_sym_LBRACE, - ACTIONS(11145), 1, + ACTIONS(12283), 1, anon_sym_LPAREN2, - ACTIONS(11147), 1, + ACTIONS(12285), 1, anon_sym_LBRACK, - STATE(6600), 1, + STATE(6684), 1, sym_new_declarator, - STATE(5875), 2, + STATE(7302), 2, sym_argument_list, sym_initializer_list, - ACTIONS(8866), 9, + ACTIONS(9274), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -603934,7 +626757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8868), 25, + ACTIONS(9276), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -603947,7 +626770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -603960,29 +626783,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [198857] = 7, + [200989] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(4910), 1, + anon_sym_LBRACE, + ACTIONS(12279), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(12281), 1, anon_sym_LBRACK, - STATE(2152), 1, - sym_parameter_list, - STATE(5230), 1, - sym__function_declarator_seq, - ACTIONS(9848), 10, + STATE(6598), 1, + sym_new_declarator, + STATE(7325), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9274), 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___attribute, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9846), 26, + ACTIONS(9276), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -603992,11 +626819,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___attribute__, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -604009,84 +626832,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [198913] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11757), 1, - anon_sym_SLASH, - ACTIONS(11767), 1, - anon_sym_AMP, - ACTIONS(11773), 1, - anon_sym_GT_EQ, - ACTIONS(11783), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11787), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9282), 2, - anon_sym_PIPE, - anon_sym___attribute, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11753), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11755), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11765), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11775), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11769), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11771), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9284), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - [198997] = 8, + anon_sym_GT2, + [201047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 1, - anon_sym_LBRACE, - ACTIONS(11145), 1, - anon_sym_LPAREN2, - ACTIONS(11147), 1, - anon_sym_LBRACK, - STATE(6449), 1, - sym_new_declarator, - STATE(5854), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8903), 9, + ACTIONS(5589), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -604095,10 +626845,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(8905), 25, + ACTIONS(5591), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -604109,7 +626861,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK_RBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -604122,296 +626875,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [199055] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(6495), 1, - anon_sym___attribute, - ACTIONS(11415), 1, - anon_sym_STAR, - ACTIONS(11417), 1, - anon_sym_AMP_AMP, - ACTIONS(11419), 1, - anon_sym_AMP, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - STATE(4823), 1, - sym_parameter_list, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8678), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6497), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [199131] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(7009), 1, - anon_sym___attribute, - ACTIONS(11415), 1, - anon_sym_STAR, - ACTIONS(11417), 1, - anon_sym_AMP_AMP, - ACTIONS(11419), 1, - anon_sym_AMP, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - STATE(4823), 1, - sym_parameter_list, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8679), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7007), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [199207] = 20, + [201095] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11757), 1, + ACTIONS(12097), 1, anon_sym_SLASH, - ACTIONS(11767), 1, - anon_sym_AMP, - ACTIONS(11773), 1, - anon_sym_GT_EQ, - ACTIONS(11783), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11787), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9282), 2, - anon_sym_PIPE, - anon_sym___attribute, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11753), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11755), 2, + ACTIONS(12095), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11775), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11769), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11771), 3, + ACTIONS(9707), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 12, + anon_sym___attribute, + ACTIONS(9709), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, anon_sym___attribute__, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - [199289] = 8, + anon_sym_bitand, + anon_sym_not_eq, + [201161] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - STATE(3601), 1, - sym_template_argument_list, - STATE(7043), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7017), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(11689), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7019), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9230), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(9642), 1, 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [199347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5229), 12, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12097), 1, + anon_sym_SLASH, + ACTIONS(12107), 1, + anon_sym_AMP, + ACTIONS(12113), 1, + anon_sym_GT_EQ, + ACTIONS(12123), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12127), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9707), 2, + anon_sym_PIPE, + anon_sym___attribute, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12093), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12095), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12115), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12109), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12111), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(5231), 28, + ACTIONS(9709), 12, 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_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [199395] = 8, + [201243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(11919), 1, - anon_sym_LPAREN2, - ACTIONS(11921), 1, - anon_sym_LBRACK, - STATE(6557), 1, - sym_new_declarator, - STATE(7157), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8866), 9, + ACTIONS(5593), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -604420,10 +627006,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(8868), 25, + ACTIONS(5595), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -604434,6 +627022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -604447,10 +627036,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [199453] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [201291] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5233), 10, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(12283), 1, + anon_sym_LPAREN2, + ACTIONS(12285), 1, + anon_sym_LBRACK, + STATE(6573), 1, + sym_new_declarator, + STATE(7387), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9226), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -604459,12 +627062,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(5235), 30, + ACTIONS(9228), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -604475,7 +627076,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -604489,56 +627089,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [199501] = 18, + [201349] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11757), 1, + ACTIONS(12097), 1, anon_sym_SLASH, - ACTIONS(11773), 1, + ACTIONS(12113), 1, anon_sym_GT_EQ, - ACTIONS(11783), 1, + ACTIONS(12123), 1, anon_sym_LT_EQ_GT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11753), 2, + ACTIONS(12093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11755), 2, + ACTIONS(12095), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11775), 2, + ACTIONS(12115), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9282), 3, + ACTIONS(9707), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym___attribute, - ACTIONS(11769), 3, + ACTIONS(12109), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11771), 3, + ACTIONS(12111), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 13, + ACTIONS(9709), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -604552,24 +627149,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_xor, anon_sym_bitand, - [199579] = 3, + [201427] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5229), 10, + ACTIONS(4910), 1, + anon_sym_LBRACE, + ACTIONS(12279), 1, + anon_sym_LPAREN2, + ACTIONS(12281), 1, + anon_sym_LBRACK, + STATE(6713), 1, + sym_new_declarator, + STATE(7324), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9226), 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_LBRACK, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5231), 30, + ACTIONS(9228), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -604577,11 +627185,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_LBRACK_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -604594,52 +627198,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [199627] = 17, + anon_sym_GT2, + [201485] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11757), 1, + ACTIONS(12097), 1, anon_sym_SLASH, - ACTIONS(11773), 1, + ACTIONS(12113), 1, anon_sym_GT_EQ, - ACTIONS(11783), 1, + ACTIONS(12123), 1, anon_sym_LT_EQ_GT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11753), 2, + ACTIONS(12093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11755), 2, + ACTIONS(12095), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11775), 2, + ACTIONS(12115), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9282), 3, + ACTIONS(9707), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym___attribute, - ACTIONS(11771), 3, + ACTIONS(12111), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 16, + ACTIONS(9709), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -604656,21 +627258,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [199703] = 8, + [201561] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(4922), 1, anon_sym_LBRACE, - ACTIONS(11919), 1, + ACTIONS(11527), 1, anon_sym_LPAREN2, - ACTIONS(11921), 1, + ACTIONS(11529), 1, anon_sym_LBRACK, - STATE(6540), 1, + STATE(6568), 1, sym_new_declarator, - STATE(7122), 2, + STATE(5946), 2, sym_argument_list, sym_initializer_list, - ACTIONS(8841), 9, + ACTIONS(9248), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -604680,7 +627282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8843), 25, + ACTIONS(9250), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -604693,7 +627295,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_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -604706,144 +627308,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [199761] = 25, + [201619] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(10184), 1, + ACTIONS(9826), 1, anon_sym___attribute, - ACTIONS(11757), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12097), 1, anon_sym_SLASH, - ACTIONS(11763), 1, + ACTIONS(12103), 1, anon_sym_PIPE, - ACTIONS(11767), 1, + ACTIONS(12107), 1, anon_sym_AMP, - ACTIONS(11773), 1, + ACTIONS(12113), 1, anon_sym_GT_EQ, - ACTIONS(11783), 1, + ACTIONS(12121), 1, + anon_sym_QMARK, + ACTIONS(12123), 1, anon_sym_LT_EQ_GT, - ACTIONS(11785), 1, + ACTIONS(12125), 1, anon_sym_bitor, - ACTIONS(11787), 1, + ACTIONS(12127), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11753), 2, + ACTIONS(12093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11755), 2, + ACTIONS(12095), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11759), 2, + ACTIONS(12099), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11761), 2, + ACTIONS(12101), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11765), 2, + ACTIONS(12105), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11775), 2, + ACTIONS(12115), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11769), 3, + ACTIONS(9828), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + ACTIONS(12109), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11771), 3, + ACTIONS(12111), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10186), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [199853] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(6993), 1, - anon_sym___attribute, - ACTIONS(11415), 1, - anon_sym_STAR, - ACTIONS(11417), 1, - anon_sym_AMP_AMP, - ACTIONS(11419), 1, - anon_sym_AMP, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - STATE(4823), 1, - sym_parameter_list, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8667), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6438), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6991), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [199929] = 7, + [201715] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2152), 1, + STATE(2274), 1, sym_parameter_list, - STATE(5230), 1, + STATE(5444), 1, sym__function_declarator_seq, - ACTIONS(9840), 10, + ACTIONS(10198), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -604854,7 +627399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(9838), 26, + ACTIONS(10196), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -604881,33 +627426,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [199985] = 8, + [201771] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 1, - anon_sym_LBRACE, - ACTIONS(11923), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11925), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(6470), 1, - sym_new_declarator, - STATE(7134), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8866), 11, + STATE(2274), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10202), 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, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(8868), 23, + ACTIONS(10200), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -604917,7 +627458,11 @@ 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___attribute__, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -604930,22 +627475,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [200043] = 8, + [201827] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(11919), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11921), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(6577), 1, - sym_new_declarator, - STATE(7199), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8804), 9, + STATE(2274), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10206), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -604954,8 +627495,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(8806), 25, + ACTIONS(10204), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -604968,7 +627510,8 @@ 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_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -604981,26 +627524,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [200101] = 3, + [201883] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(7393), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym_STAR, + ACTIONS(11781), 1, + anon_sym_AMP_AMP, + ACTIONS(11783), 1, + anon_sym_AMP, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11795), 1, + anon_sym_const, + STATE(4796), 1, + sym_parameter_list, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8800), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6506), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7391), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [201959] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5233), 12, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2274), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10210), 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, - anon_sym_LBRACK, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(5235), 28, + ACTIONS(10208), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -605008,8 +627615,11 @@ 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_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -605022,25 +627632,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [200149] = 8, + [202015] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 1, - anon_sym_LBRACE, - ACTIONS(11145), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11147), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(6556), 1, - sym_new_declarator, - STATE(5914), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8841), 9, + STATE(2274), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10186), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -605049,8 +627652,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(8843), 25, + ACTIONS(10184), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -605063,7 +627667,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -605076,366 +627681,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [200207] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(6101), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(11927), 1, - sym_identifier, - ACTIONS(11929), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11933), 1, - anon_sym_EQ, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4546), 1, - sym_field_declaration_list, - STATE(4859), 1, - sym__class_declaration, - STATE(4867), 1, - sym__class_declaration_item, - STATE(5044), 1, - sym_splice_specifier, - STATE(7769), 1, - sym_ms_declspec_modifier, - STATE(8579), 1, - sym__scope_resolution, - STATE(9523), 1, - sym_virtual_specifier, - STATE(10297), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11931), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3904), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7705), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [200309] = 27, + [202071] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10188), 1, - anon_sym___attribute, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11757), 1, + STATE(2274), 1, + sym_parameter_list, + STATE(5444), 1, + sym__function_declarator_seq, + ACTIONS(10190), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(11763), 1, anon_sym_PIPE, - ACTIONS(11767), 1, anon_sym_AMP, - ACTIONS(11773), 1, - anon_sym_GT_EQ, - ACTIONS(11781), 1, - anon_sym_QMARK, - ACTIONS(11783), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11785), 1, - anon_sym_bitor, - ACTIONS(11787), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11753), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11755), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11759), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11761), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11765), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11775), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10190), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - ACTIONS(11769), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11771), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [200405] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(9436), 1, anon_sym___attribute, - ACTIONS(11645), 1, + anon_sym_DOT, + ACTIONS(10188), 26, anon_sym_DOT_DOT_DOT, - ACTIONS(11757), 1, - anon_sym_SLASH, - ACTIONS(11763), 1, - anon_sym_PIPE, - ACTIONS(11767), 1, - anon_sym_AMP, - ACTIONS(11773), 1, - anon_sym_GT_EQ, - ACTIONS(11781), 1, - anon_sym_QMARK, - ACTIONS(11783), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11785), 1, - anon_sym_bitor, - ACTIONS(11787), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11753), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11755), 2, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11759), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11761), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11765), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11775), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9438), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - ACTIONS(11769), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11771), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [200501] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10089), 1, - anon_sym___attribute, - ACTIONS(11757), 1, - anon_sym_SLASH, - ACTIONS(11763), 1, - anon_sym_PIPE, - ACTIONS(11767), 1, - anon_sym_AMP, - ACTIONS(11773), 1, anon_sym_GT_EQ, - ACTIONS(11783), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11785), 1, - anon_sym_bitor, - ACTIONS(11787), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11753), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11755), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11759), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11761), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11765), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11775), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11769), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11771), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10091), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, anon_sym_QMARK, - [200593] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, - anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(11935), 1, - anon_sym_COMMA, - ACTIONS(11937), 1, - anon_sym_SEMI, - ACTIONS(11939), 1, - anon_sym_RBRACE, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - STATE(9927), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [200693] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [202127] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2152), 1, + STATE(2274), 1, sym_parameter_list, - STATE(5230), 1, + STATE(5444), 1, sym__function_declarator_seq, - ACTIONS(9852), 10, + ACTIONS(10194), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -605446,7 +627752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(9850), 26, + ACTIONS(10192), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -605473,18 +627779,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [200749] = 7, + [202183] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2152), 1, + STATE(2274), 1, sym_parameter_list, - STATE(5230), 1, + STATE(5444), 1, sym__function_declarator_seq, - ACTIONS(9856), 10, + ACTIONS(10174), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -605495,7 +627801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(9854), 26, + ACTIONS(10172), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -605522,80 +627828,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [200805] = 7, + [202239] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(2152), 1, - sym_parameter_list, - STATE(5230), 1, - sym__function_declarator_seq, - ACTIONS(9860), 10, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12097), 1, + anon_sym_SLASH, + ACTIONS(12123), 1, + anon_sym_LT_EQ_GT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12093), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(12095), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12115), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9707), 6, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute, - anon_sym_DOT, - ACTIONS(9858), 26, + ACTIONS(9709), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, anon_sym___attribute__, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_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, - [200861] = 7, + [202311] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(11451), 1, + ACTIONS(6821), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym_STAR, + ACTIONS(11781), 1, + anon_sym_AMP_AMP, + ACTIONS(11783), 1, + anon_sym_AMP, + ACTIONS(11793), 1, anon_sym_LBRACK, - STATE(2152), 1, + ACTIONS(11795), 1, + anon_sym_const, + STATE(4796), 1, sym_parameter_list, - STATE(5230), 1, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, sym__function_declarator_seq, - ACTIONS(9864), 10, + STATE(8791), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6420), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6823), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [202387] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9316), 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___attribute, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9862), 26, + ACTIONS(9318), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -605603,11 +627970,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___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -605620,449 +627984,669 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [200917] = 25, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [202434] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(10192), 1, - anon_sym___attribute, - ACTIONS(11757), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11763), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11767), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11773), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11783), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11785), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11787), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12309), 1, + anon_sym_COMMA, + ACTIONS(12311), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + STATE(9808), 1, + aux_sym_argument_list_repeat1, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11753), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11755), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11759), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11761), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11765), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11775), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11769), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11771), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10194), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [201009] = 13, + [202531] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11757), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12235), 1, + anon_sym_PIPE, + ACTIONS(12239), 1, + anon_sym_AMP, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12251), 1, + anon_sym_bitor, + ACTIONS(12253), 1, + anon_sym_bitand, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12313), 1, + anon_sym_COMMA, + ACTIONS(12315), 1, + anon_sym_RBRACE, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + STATE(9817), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11753), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11755), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9282), 6, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12231), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + [202628] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(6699), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6999), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(12317), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7525), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(7528), 22, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, anon_sym___attribute, - ACTIONS(9284), 20, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [202681] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + ACTIONS(11319), 1, + anon_sym_LBRACK, + ACTIONS(11323), 1, + anon_sym_DOT, + ACTIONS(12320), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(12322), 1, 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, + ACTIONS(12328), 1, + anon_sym_SLASH, + ACTIONS(12334), 1, + anon_sym_PIPE, + ACTIONS(12338), 1, + anon_sym_AMP, + ACTIONS(12344), 1, anon_sym_LT_LT, + ACTIONS(12346), 1, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(12348), 1, anon_sym_QMARK, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12352), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12354), 1, anon_sym_bitand, - anon_sym_not_eq, - [201077] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4562), 1, - anon_sym_LBRACE, - ACTIONS(11923), 1, - anon_sym_LPAREN2, - ACTIONS(11925), 1, - anon_sym_LBRACK, - STATE(6481), 1, - sym_new_declarator, - STATE(7128), 2, + ACTIONS(12358), 1, + anon_sym_GT2, + STATE(5741), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(8804), 11, + STATE(5917), 1, + sym_subscript_argument_list, + STATE(9827), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12326), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12330), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12332), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12336), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12342), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(8806), 23, - anon_sym_DOT_DOT_DOT, + [202778] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6616), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6618), 35, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, anon_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_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [201135] = 8, + anon_sym_try, + anon_sym_requires, + [202825] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(11919), 1, + ACTIONS(129), 1, + sym_auto, + ACTIONS(131), 1, + anon_sym_decltype, + ACTIONS(2314), 1, + anon_sym_enum, + ACTIONS(2316), 1, + anon_sym_class, + ACTIONS(2318), 1, + anon_sym_struct, + ACTIONS(2320), 1, + anon_sym_union, + ACTIONS(3466), 1, + sym_primitive_type, + ACTIONS(3486), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5629), 1, + anon_sym_typename, + ACTIONS(6469), 1, + anon_sym_COLON_COLON, + ACTIONS(12303), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12307), 1, + anon_sym_EQ, + ACTIONS(12360), 1, + sym_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(3824), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4578), 1, + sym_template_type, + STATE(4601), 1, + sym_qualified_type_identifier, + STATE(4776), 1, + sym_type_specifier, + STATE(4948), 1, + sym_decltype_auto, + STATE(5157), 1, + sym_splice_specifier, + STATE(8756), 1, + sym__scope_resolution, + ACTIONS(12305), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(4830), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4935), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [202922] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(11921), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - STATE(6588), 1, - sym_new_declarator, - STATE(7233), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8903), 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, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(8905), 25, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(12364), 1, 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, + ACTIONS(12370), 1, + anon_sym_SLASH, + ACTIONS(12376), 1, + anon_sym_PIPE, + ACTIONS(12380), 1, + anon_sym_AMP, + ACTIONS(12386), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(12390), 1, anon_sym_RBRACK, + ACTIONS(12392), 1, anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, + ACTIONS(12396), 1, + anon_sym_bitor, + ACTIONS(12398), 1, + anon_sym_bitand, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + STATE(9848), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12366), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12368), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12372), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(12374), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12378), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(12388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [201193] = 27, + ACTIONS(12382), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12384), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [203019] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11757), 1, + ACTIONS(12364), 1, + anon_sym_COMMA, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11763), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11767), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11773), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11781), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(11783), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11785), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11787), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11943), 1, - anon_sym___attribute, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12402), 1, + anon_sym_RBRACK, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + STATE(9942), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11753), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11755), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11759), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11761), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11765), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11775), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11769), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11771), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(11941), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [201289] = 24, + [203116] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(9282), 1, - anon_sym___attribute, - ACTIONS(11757), 1, + ACTIONS(11417), 1, + anon_sym_COMMA, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11763), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11767), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11773), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11783), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11785), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11787), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11753), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11755), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11761), 2, + ACTIONS(12231), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11765), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11775), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11769), 3, + ACTIONS(12404), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11771), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_or, - [201379] = 17, + [203211] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(6997), 1, - anon_sym___attribute, - ACTIONS(11415), 1, - anon_sym_STAR, - ACTIONS(11417), 1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10348), 1, anon_sym_AMP_AMP, - ACTIONS(11419), 1, + ACTIONS(10350), 1, anon_sym_AMP, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - STATE(4823), 1, - sym_parameter_list, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8651), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6995), 8, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10367), 1, + anon_sym_DASH_GT, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(12406), 1, anon_sym___attribute__, - anon_sym_EQ, + ACTIONS(12409), 1, + anon_sym___attribute, + ACTIONS(12412), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12418), 1, + anon_sym_requires, + STATE(7376), 1, + sym_ref_qualifier, + STATE(8013), 1, + sym_trailing_return_type, + STATE(8066), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(12415), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [201455] = 8, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8313), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7656), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7791), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [203300] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 1, + ACTIONS(4922), 1, anon_sym_LBRACE, - ACTIONS(11923), 1, + ACTIONS(11527), 1, anon_sym_LPAREN2, - ACTIONS(11925), 1, - anon_sym_LBRACK, - STATE(6595), 1, - sym_new_declarator, - STATE(7244), 2, + STATE(5977), 2, sym_argument_list, sym_initializer_list, - ACTIONS(8903), 11, + ACTIONS(9431), 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(8905), 23, + ACTIONS(9433), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -606072,7 +628656,11 @@ 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_RBRACK_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -606085,122 +628673,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [201513] = 25, + [203353] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(4910), 1, + anon_sym_LBRACE, + ACTIONS(12279), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10123), 1, - anon_sym___attribute, - ACTIONS(11757), 1, + STATE(7303), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9431), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(11763), 1, anon_sym_PIPE, - ACTIONS(11767), 1, anon_sym_AMP, - ACTIONS(11773), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(11783), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11785), 1, - anon_sym_bitor, - ACTIONS(11787), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11753), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11755), 2, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9433), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11759), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11761), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11765), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11775), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11769), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11771), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10125), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, - [201605] = 17, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + anon_sym_GT2, + [203406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(7001), 1, - anon_sym___attribute, - ACTIONS(11415), 1, - anon_sym_STAR, - ACTIONS(11417), 1, - anon_sym_AMP_AMP, - ACTIONS(11419), 1, + ACTIONS(6620), 4, anon_sym_AMP, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - STATE(4823), 1, - sym_parameter_list, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8656), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6395), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6999), 8, + ACTIONS(6622), 35, 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___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -606212,100 +628753,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [201681] = 25, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [203453] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8424), 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(8422), 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_or, + anon_sym_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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [203500] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(9344), 1, - anon_sym___attribute, - ACTIONS(11757), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11763), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11767), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11773), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11783), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11785), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11787), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12421), 1, + anon_sym_COMMA, + ACTIONS(12423), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + STATE(9885), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11753), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11755), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11759), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11761), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11765), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11775), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11769), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11771), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9342), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [201773] = 8, + [203597] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 1, + ACTIONS(4676), 1, anon_sym_LBRACE, - ACTIONS(11923), 1, + ACTIONS(12283), 1, anon_sym_LPAREN2, - ACTIONS(11925), 1, - anon_sym_LBRACK, - STATE(6599), 1, - sym_new_declarator, - STATE(7254), 2, + STATE(7391), 2, sym_argument_list, sym_initializer_list, - ACTIONS(8841), 11, + ACTIONS(9491), 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(8843), 23, + ACTIONS(9493), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -606315,7 +628907,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -606328,19 +628924,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [201831] = 7, + [203650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11449), 1, + ACTIONS(7289), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11451), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7287), 29, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + 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_LBRACK, - STATE(2152), 1, - sym_parameter_list, - STATE(5230), 1, - sym__function_declarator_seq, - ACTIONS(9834), 10, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [203697] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4922), 1, + anon_sym_LBRACE, + ACTIONS(11527), 1, + anon_sym_LPAREN2, + STATE(5980), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9377), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -606349,9 +628987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, anon_sym_DOT, - ACTIONS(9832), 26, + ACTIONS(9379), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -606364,8 +629001,8 @@ 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___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -606378,121 +629015,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [201887] = 27, + [203750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(10196), 1, - anon_sym___attribute, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11757), 1, - anon_sym_SLASH, - ACTIONS(11763), 1, - anon_sym_PIPE, - ACTIONS(11767), 1, - anon_sym_AMP, - ACTIONS(11773), 1, - anon_sym_GT_EQ, - ACTIONS(11781), 1, - anon_sym_QMARK, - ACTIONS(11783), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11785), 1, - anon_sym_bitor, - ACTIONS(11787), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11753), 2, + ACTIONS(9407), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11755), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11759), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11761), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11765), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11775), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10198), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - ACTIONS(11769), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11771), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [201983] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11757), 1, anon_sym_SLASH, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11755), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9282), 8, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - ACTIONS(9284), 20, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9409), 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_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -606501,143 +629051,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [202049] = 15, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [203797] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(4910), 1, + anon_sym_LBRACE, + ACTIONS(12279), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11757), 1, - anon_sym_SLASH, - ACTIONS(11783), 1, - anon_sym_LT_EQ_GT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(7347), 2, sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11753), 2, + sym_initializer_list, + ACTIONS(9377), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11755), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11775), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9282), 6, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - ACTIONS(9284), 17, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9379), 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_SEMI, - anon_sym___attribute__, + 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, - [202121] = 28, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [203850] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11945), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(11953), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11959), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11963), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, - anon_sym_GT_GT, - ACTIONS(11973), 1, - anon_sym_QMARK, - ACTIONS(11975), 1, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11979), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11983), 1, - anon_sym_GT2, - STATE(5759), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12421), 1, + anon_sym_COMMA, + ACTIONS(12425), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5761), 1, + STATE(3900), 1, sym_subscript_argument_list, - STATE(9596), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11103), 2, + STATE(9694), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11957), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11961), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11967), 4, + ACTIONS(12243), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [202218] = 6, + [203947] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 1, + ACTIONS(7090), 1, anon_sym_LBRACE, - ACTIONS(11145), 1, + ACTIONS(7445), 1, + anon_sym_LT, + STATE(2053), 1, + sym_template_argument_list, + ACTIONS(7087), 2, anon_sym_LPAREN2, - STATE(5857), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8951), 9, + anon_sym_COLON_COLON, + ACTIONS(7092), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -606645,9 +629195,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_DOT, - ACTIONS(8953), 26, + ACTIONS(7097), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -606660,8 +629209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK_RBRACK, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -606674,39 +629223,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [202271] = 3, + [204002] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8606), 9, + ACTIONS(12427), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9322), 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(8608), 30, + ACTIONS(9324), 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_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, @@ -606717,55 +629266,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [202318] = 3, + [204051] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9093), 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(7087), 1, + anon_sym_COLON_COLON, + ACTIONS(12059), 1, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(9095), 28, - anon_sym_DOT_DOT_DOT, + STATE(7148), 1, + sym_template_argument_list, + ACTIONS(7085), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(7090), 32, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, anon_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___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_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, anon_sym_final, anon_sym_override, anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [202365] = 3, + [204104] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8622), 9, + ACTIONS(4922), 1, + anon_sym_LBRACE, + ACTIONS(11527), 1, + anon_sym_LPAREN2, + STATE(5982), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9381), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -606775,10 +629335,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8624), 30, + ACTIONS(9383), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -606789,8 +629348,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -606803,23 +629362,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + [204157] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(8123), 1, + anon_sym_const, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11805), 1, + anon_sym_STAR, + ACTIONS(11807), 1, + anon_sym_AMP_AMP, + ACTIONS(11809), 1, + anon_sym_AMP, + STATE(2726), 1, + sym_alignas_qualifier, + STATE(4672), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8857), 1, + sym__abstract_declarator, + ACTIONS(8125), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6586), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7391), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, anon_sym_requires, - [202412] = 3, + ACTIONS(8117), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [204230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8614), 9, + ACTIONS(9415), 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(8616), 30, + ACTIONS(9417), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -606830,11 +629445,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -606849,11 +629461,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [204277] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, + anon_sym_SLASH, + ACTIONS(12235), 1, + anon_sym_PIPE, + ACTIONS(12239), 1, + anon_sym_AMP, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12251), 1, + anon_sym_bitor, + ACTIONS(12253), 1, + anon_sym_bitand, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12421), 1, + anon_sym_COMMA, + ACTIONS(12429), 1, + anon_sym_RPAREN, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + STATE(10108), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12227), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [204374] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(8123), 1, + anon_sym_const, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11805), 1, + anon_sym_STAR, + ACTIONS(11807), 1, + anon_sym_AMP_AMP, + ACTIONS(11809), 1, + anon_sym_AMP, + STATE(2726), 1, + sym_alignas_qualifier, + STATE(4672), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8841), 1, + sym__abstract_declarator, + ACTIONS(8125), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2488), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7351), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8117), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [204447] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(8123), 1, + anon_sym_const, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11805), 1, + anon_sym_STAR, + ACTIONS(11807), 1, + anon_sym_AMP_AMP, + ACTIONS(11809), 1, + anon_sym_AMP, + STATE(2726), 1, + sym_alignas_qualifier, + STATE(4672), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8846), 1, + sym__abstract_declarator, + ACTIONS(8125), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6595), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7343), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, anon_sym_requires, - [202459] = 3, + ACTIONS(8117), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [204520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9097), 11, + ACTIONS(9419), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -606865,7 +629661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9099), 28, + ACTIONS(9421), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -606894,148 +629690,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [202506] = 28, + [204567] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(11985), 1, + ACTIONS(12309), 1, anon_sym_COMMA, - ACTIONS(11987), 1, + ACTIONS(12431), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - STATE(9772), 1, + STATE(3900), 1, + sym_subscript_argument_list, + STATE(10113), 1, aux_sym_argument_list_repeat1, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [202603] = 28, + [204664] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(11989), 1, + ACTIONS(12433), 1, anon_sym_COMMA, - ACTIONS(11991), 1, + ACTIONS(12435), 1, anon_sym_RBRACE, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - STATE(9773), 1, + STATE(3900), 1, + sym_subscript_argument_list, + STATE(10118), 1, aux_sym_initializer_list_repeat1, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [202700] = 3, + [204761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9101), 11, + ACTIONS(9423), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -607047,7 +629843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9103), 28, + ACTIONS(9425), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -607076,167 +629872,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [202747] = 3, + [204808] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9109), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + ACTIONS(11319), 1, + anon_sym_LBRACK, + ACTIONS(11323), 1, + anon_sym_DOT, + ACTIONS(12320), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(12328), 1, anon_sym_SLASH, + ACTIONS(12334), 1, anon_sym_PIPE, + ACTIONS(12338), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(9111), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12348), 1, + anon_sym_QMARK, + ACTIONS(12350), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12352), 1, + anon_sym_bitor, + ACTIONS(12354), 1, + anon_sym_bitand, + ACTIONS(12437), 1, + anon_sym_GT2, + STATE(5741), 1, + sym_argument_list, + STATE(5917), 1, + sym_subscript_argument_list, + STATE(10128), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12324), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12330), 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(12332), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12336), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(12356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [202794] = 28, + ACTIONS(12340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12342), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [204905] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11945), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11947), 1, + ACTIONS(12364), 1, anon_sym_COMMA, - ACTIONS(11953), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11959), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11963), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, - anon_sym_GT_GT, - ACTIONS(11973), 1, + ACTIONS(12386), 1, + anon_sym_GT_EQ, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(11975), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11979), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11993), 1, - anon_sym_GT2, - STATE(5759), 1, + ACTIONS(12439), 1, + anon_sym_RBRACK, + STATE(5875), 1, sym_argument_list, - STATE(5761), 1, + STATE(5920), 1, sym_subscript_argument_list, - STATE(9778), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11103), 2, + STATE(10149), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11957), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11961), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11981), 2, + ACTIONS(12388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11967), 4, + ACTIONS(12384), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [202891] = 3, + [205002] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(8123), 1, + anon_sym_const, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11805), 1, + anon_sym_STAR, + ACTIONS(11807), 1, + anon_sym_AMP_AMP, + ACTIONS(11809), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8667), 30, - anon_sym_DOT_DOT_DOT, + STATE(2726), 1, + sym_alignas_qualifier, + STATE(4672), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8849), 1, + sym__abstract_declarator, + ACTIONS(8125), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2488), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6823), 8, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8117), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [205075] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, anon_sym_LPAREN2, + ACTIONS(8123), 1, + anon_sym_const, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11805), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11807), 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_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_DOT_STAR, - anon_sym_DASH_GT, + ACTIONS(11809), 1, + anon_sym_AMP, + STATE(2726), 1, + sym_alignas_qualifier, + STATE(4672), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8835), 1, + sym__abstract_declarator, + ACTIONS(8125), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2488), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7355), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, anon_sym_requires, - [202938] = 3, + ACTIONS(8117), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [205148] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8516), 9, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(12283), 1, + anon_sym_LPAREN2, + STATE(7290), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9431), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -607246,10 +630144,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8518), 30, + ACTIONS(9433), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -607274,164 +630171,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [202985] = 28, + [205201] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(8123), 1, + anon_sym_const, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - ACTIONS(11995), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11997), 1, - anon_sym_COMMA, - ACTIONS(12003), 1, - anon_sym_SLASH, - ACTIONS(12009), 1, - anon_sym_PIPE, - ACTIONS(12013), 1, - anon_sym_AMP, - ACTIONS(12019), 1, - anon_sym_GT_EQ, - ACTIONS(12023), 1, - anon_sym_RBRACK, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, - anon_sym_bitor, - ACTIONS(12031), 1, - anon_sym_bitand, - STATE(5762), 1, - sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - STATE(10010), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11999), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(11805), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12005), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(11807), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12011), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12017), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [203082] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(11809), 1, anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12035), 1, + STATE(2726), 1, + sym_alignas_qualifier, + STATE(4672), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8838), 1, + sym__abstract_declarator, + ACTIONS(8125), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2488), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7345), 8, anon_sym_COMMA, - ACTIONS(12037), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - STATE(9633), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [203179] = 3, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8117), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [205274] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9093), 9, + ACTIONS(4910), 1, + anon_sym_LBRACE, + ACTIONS(12279), 1, + anon_sym_LPAREN2, + STATE(7365), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9381), 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(9095), 30, + ACTIONS(9383), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -607439,11 +630260,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -607456,82 +630274,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [203226] = 28, + anon_sym_GT2, + [205327] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12035), 1, + ACTIONS(12421), 1, anon_sym_COMMA, - ACTIONS(12039), 1, + ACTIONS(12441), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - STATE(9802), 1, + STATE(3900), 1, + sym_subscript_argument_list, + STATE(10197), 1, aux_sym_generic_expression_repeat1, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [203323] = 3, + [205424] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9097), 9, + ACTIONS(10616), 1, + sym_literal_suffix, + ACTIONS(5645), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -607540,8 +630358,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9099), 30, + ACTIONS(5638), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -607555,71 +630381,62 @@ 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_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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [203370] = 3, + [205473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8087), 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(8089), 28, - anon_sym_DOT_DOT_DOT, + ACTIONS(7201), 10, 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, + anon_sym_COLON_COLON, + anon_sym_EQ, anon_sym_GT2, - anon_sym_requires, - [203417] = 3, + anon_sym_LBRACK_COLON, + ACTIONS(7199), 29, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + 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_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [205520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9101), 9, + ACTIONS(9389), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -607629,7 +630446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9103), 30, + ACTIONS(9391), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -607660,377 +630477,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [203464] = 3, + [205567] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9109), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, + ACTIONS(12235), 1, anon_sym_PIPE, + ACTIONS(12239), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(9111), 30, - 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, + ACTIONS(12245), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12251), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12253), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12445), 1, + anon_sym_RPAREN, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [203511] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4562), 1, - anon_sym_LBRACE, - ACTIONS(11923), 1, - anon_sym_LPAREN2, - STATE(7241), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9086), 11, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 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(9088), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12443), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(12241), 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [203564] = 28, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [205662] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(11985), 1, + ACTIONS(12309), 1, anon_sym_COMMA, - ACTIONS(12041), 1, + ACTIONS(12447), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - STATE(9870), 1, + STATE(3900), 1, + sym_subscript_argument_list, + STATE(9792), 1, aux_sym_argument_list_repeat1, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [203661] = 28, + [205759] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12043), 1, + ACTIONS(12449), 1, anon_sym_COMMA, - ACTIONS(12045), 1, + ACTIONS(12451), 1, anon_sym_RBRACE, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - STATE(9871), 1, + STATE(3900), 1, + sym_subscript_argument_list, + STATE(9793), 1, aux_sym_initializer_list_repeat1, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [203758] = 28, + [205856] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11945), 1, + ACTIONS(12320), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(11953), 1, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(11959), 1, + ACTIONS(12334), 1, anon_sym_PIPE, - ACTIONS(11963), 1, + ACTIONS(12338), 1, anon_sym_AMP, - ACTIONS(11969), 1, + ACTIONS(12344), 1, anon_sym_LT_LT, - ACTIONS(11971), 1, + ACTIONS(12346), 1, anon_sym_GT_GT, - ACTIONS(11973), 1, + ACTIONS(12348), 1, anon_sym_QMARK, - ACTIONS(11975), 1, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + ACTIONS(12352), 1, anon_sym_bitor, - ACTIONS(11979), 1, + ACTIONS(12354), 1, anon_sym_bitand, - ACTIONS(12047), 1, + ACTIONS(12453), 1, anon_sym_GT2, - STATE(5759), 1, + STATE(5741), 1, sym_argument_list, - STATE(5761), 1, + STATE(5917), 1, sym_subscript_argument_list, - STATE(9877), 1, + STATE(9800), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11103), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, + ACTIONS(12330), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11957), 2, + ACTIONS(12332), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11961), 2, + ACTIONS(12336), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11981), 2, + ACTIONS(12356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, + ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11967), 4, + ACTIONS(12342), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [203855] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(7784), 1, - anon_sym_const, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11443), 1, - anon_sym_STAR, - ACTIONS(11445), 1, - anon_sym_AMP_AMP, - ACTIONS(11447), 1, - anon_sym_AMP, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(4554), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8732), 1, - sym__abstract_declarator, - ACTIONS(7786), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2399), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6497), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7778), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [203928] = 3, + [205953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8999), 11, + ACTIONS(9333), 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(9001), 28, + ACTIONS(9335), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -608041,142 +630776,11 @@ 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [203975] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(6476), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(12049), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6629), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6627), 24, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [204026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9003), 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(9005), 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_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [204073] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9011), 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(9013), 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -608191,24 +630795,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [204120] = 3, + [206000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9015), 11, + ACTIONS(9337), 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(9017), 28, + ACTIONS(9339), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -608219,8 +630820,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -608235,100 +630839,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [204167] = 28, + [206047] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12035), 1, + ACTIONS(12421), 1, anon_sym_COMMA, - ACTIONS(12052), 1, + ACTIONS(12455), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - STATE(9906), 1, + STATE(3900), 1, + sym_subscript_argument_list, + STATE(9837), 1, aux_sym_generic_expression_repeat1, - ACTIONS(9242), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [204264] = 6, + [206144] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 1, + ACTIONS(4676), 1, anon_sym_LBRACE, - ACTIONS(11923), 1, + ACTIONS(12283), 1, anon_sym_LPAREN2, - STATE(7258), 2, + STATE(7369), 2, sym_argument_list, sym_initializer_list, - ACTIONS(9117), 11, + ACTIONS(9377), 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(9119), 24, + ACTIONS(9379), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -608338,49 +630939,11 @@ 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [204317] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8541), 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(8543), 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_GT_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -608393,71 +630956,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [204364] = 4, + [206197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12054), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8939), 11, + ACTIONS(10566), 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_DOT, - ACTIONS(8941), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, + anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [204413] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9029), 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(9031), 28, + sym_literal_suffix, + ACTIONS(10564), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -608468,49 +630989,44 @@ 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_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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [204460] = 3, + [206244] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2758), 11, - anon_sym_DOT_DOT_DOT, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(12059), 1, + anon_sym_LT, + STATE(6693), 1, + sym_template_argument_list, + ACTIONS(7371), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(5657), 32, 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___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(2768), 28, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -608524,28 +631040,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [204507] = 3, + [206297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8559), 11, + ACTIONS(7789), 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(8561), 28, + ACTIONS(7791), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -608556,8 +631071,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -608572,109 +631090,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [204554] = 28, + [206344] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, - anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(11985), 1, - anon_sym_COMMA, - ACTIONS(12056), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - STATE(9999), 1, - aux_sym_argument_list_repeat1, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12457), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [204651] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8955), 11, + ACTIONS(9322), 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(8957), 28, + ACTIONS(9324), 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_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, 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, @@ -608685,93 +631135,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [204698] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11945), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(11953), 1, - anon_sym_SLASH, - ACTIONS(11959), 1, - anon_sym_PIPE, - ACTIONS(11963), 1, - anon_sym_AMP, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, - anon_sym_GT_GT, - ACTIONS(11973), 1, - anon_sym_QMARK, - ACTIONS(11975), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, - anon_sym_bitor, - ACTIONS(11979), 1, - anon_sym_bitand, - ACTIONS(12058), 1, - anon_sym_GT2, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - STATE(10003), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11951), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11955), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11957), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11961), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11967), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [204795] = 3, + [206393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 11, + ACTIONS(9296), 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(9039), 28, + ACTIONS(9298), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -608782,8 +631160,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -608798,12 +631179,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [204842] = 3, + [206440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8595), 9, + ACTIONS(9308), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -608813,7 +631193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8597), 30, + ACTIONS(9310), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -608844,22 +631224,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [204889] = 3, + [206487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7546), 11, + ACTIONS(9316), 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(7544), 28, + ACTIONS(9318), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -608870,8 +631248,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -608886,353 +631267,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [204936] = 28, + [206534] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11945), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(11953), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11959), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11963), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, - anon_sym_GT_GT, - ACTIONS(11973), 1, - anon_sym_QMARK, - ACTIONS(11975), 1, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11979), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(12060), 1, - anon_sym_GT2, - STATE(5759), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12309), 1, + anon_sym_COMMA, + ACTIONS(12459), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5761), 1, + STATE(3900), 1, sym_subscript_argument_list, - STATE(10050), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11103), 2, + STATE(9902), 1, + aux_sym_argument_list_repeat1, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11957), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11961), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11967), 4, + ACTIONS(12243), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [205033] = 3, + [206631] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6718), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9230), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(9642), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6716), 28, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [205080] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12054), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12062), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8959), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, + ACTIONS(12235), 1, anon_sym_PIPE, + ACTIONS(12239), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(12245), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(8961), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(12249), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12251), 1, + anon_sym_bitor, + ACTIONS(12253), 1, + anon_sym_bitand, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12461), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12463), 1, + anon_sym_RBRACE, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + STATE(9903), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 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_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [205131] = 28, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [206728] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11945), 1, + ACTIONS(12320), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(11953), 1, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(11959), 1, + ACTIONS(12334), 1, anon_sym_PIPE, - ACTIONS(11963), 1, + ACTIONS(12338), 1, anon_sym_AMP, - ACTIONS(11969), 1, + ACTIONS(12344), 1, anon_sym_LT_LT, - ACTIONS(11971), 1, + ACTIONS(12346), 1, anon_sym_GT_GT, - ACTIONS(11973), 1, + ACTIONS(12348), 1, anon_sym_QMARK, - ACTIONS(11975), 1, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + ACTIONS(12352), 1, anon_sym_bitor, - ACTIONS(11979), 1, + ACTIONS(12354), 1, anon_sym_bitand, - ACTIONS(12064), 1, + ACTIONS(12465), 1, anon_sym_GT2, - STATE(5759), 1, + STATE(5741), 1, sym_argument_list, - STATE(5761), 1, + STATE(5917), 1, sym_subscript_argument_list, - STATE(9545), 1, + STATE(9907), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11103), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, + ACTIONS(12330), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11957), 2, + ACTIONS(12332), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11961), 2, + ACTIONS(12336), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11981), 2, + ACTIONS(12356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, + ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11967), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [205228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8992), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12342), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(8994), 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_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [205275] = 28, + [206825] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11945), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(11953), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11959), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11963), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, - anon_sym_GT_GT, - ACTIONS(11973), 1, - anon_sym_QMARK, - ACTIONS(11975), 1, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11979), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(12066), 1, - anon_sym_GT2, - STATE(5759), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12421), 1, + anon_sym_COMMA, + ACTIONS(12467), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5761), 1, + STATE(3900), 1, sym_subscript_argument_list, - STATE(9563), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11103), 2, + STATE(9925), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11957), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11961), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11967), 4, + ACTIONS(12243), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [205372] = 3, + [206922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 9, + ACTIONS(7968), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -609242,7 +631557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(2801), 30, + ACTIONS(7966), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -609273,148 +631588,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [205419] = 28, + [206969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11945), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(11953), 1, + ACTIONS(9361), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, - anon_sym_GT_GT, - ACTIONS(11973), 1, - anon_sym_QMARK, - ACTIONS(11975), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, - anon_sym_bitor, - ACTIONS(11979), 1, - anon_sym_bitand, - ACTIONS(12068), 1, - anon_sym_GT2, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - STATE(9579), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11951), 2, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9363), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11957), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11961), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11967), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [205516] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11945), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(11953), 1, - anon_sym_SLASH, - ACTIONS(11959), 1, - anon_sym_PIPE, - ACTIONS(11963), 1, - anon_sym_AMP, - ACTIONS(11969), 1, anon_sym_LT_LT, - ACTIONS(11971), 1, anon_sym_GT_GT, - ACTIONS(11973), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, - anon_sym_bitor, - ACTIONS(11979), 1, - anon_sym_bitand, - ACTIONS(12070), 1, - anon_sym_GT2, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - STATE(9586), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11951), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11955), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11957), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11961), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(11981), 2, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11967), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [205613] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [207016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 9, + ACTIONS(9365), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -609424,7 +631645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(2793), 30, + ACTIONS(9367), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -609455,424 +631676,437 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [205660] = 28, + [207063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11945), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(11953), 1, + ACTIONS(9369), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(11969), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9371), 30, + 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, - ACTIONS(11971), 1, anon_sym_GT_GT, - ACTIONS(11973), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(11979), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(12072), 1, - anon_sym_GT2, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - STATE(9606), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11103), 2, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [207110] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9373), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9375), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11957), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11961), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11967), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [205757] = 28, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [207157] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11945), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(11953), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11959), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11963), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, - anon_sym_GT_GT, - ACTIONS(11973), 1, - anon_sym_QMARK, - ACTIONS(11975), 1, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11979), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(12074), 1, - anon_sym_GT2, - STATE(5759), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12309), 1, + anon_sym_COMMA, + ACTIONS(12469), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5761), 1, + STATE(3900), 1, sym_subscript_argument_list, - STATE(9617), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11103), 2, + STATE(9987), 1, + aux_sym_argument_list_repeat1, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11957), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11961), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11967), 4, + ACTIONS(12243), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [205854] = 28, + [207254] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11945), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(11953), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11959), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11963), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, - anon_sym_GT_GT, - ACTIONS(11973), 1, - anon_sym_QMARK, - ACTIONS(11975), 1, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11979), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(12076), 1, - anon_sym_GT2, - STATE(5759), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12471), 1, + anon_sym_COMMA, + ACTIONS(12473), 1, + anon_sym_RBRACE, + STATE(3874), 1, sym_argument_list, - STATE(5761), 1, + STATE(3900), 1, sym_subscript_argument_list, - STATE(9627), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11103), 2, + STATE(9988), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11957), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11961), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11967), 4, + ACTIONS(12243), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [205951] = 28, + [207351] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11945), 1, + ACTIONS(12320), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(11953), 1, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(11959), 1, + ACTIONS(12334), 1, anon_sym_PIPE, - ACTIONS(11963), 1, + ACTIONS(12338), 1, anon_sym_AMP, - ACTIONS(11969), 1, + ACTIONS(12344), 1, anon_sym_LT_LT, - ACTIONS(11971), 1, + ACTIONS(12346), 1, anon_sym_GT_GT, - ACTIONS(11973), 1, + ACTIONS(12348), 1, anon_sym_QMARK, - ACTIONS(11975), 1, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + ACTIONS(12352), 1, anon_sym_bitor, - ACTIONS(11979), 1, + ACTIONS(12354), 1, anon_sym_bitand, - ACTIONS(12078), 1, + ACTIONS(12475), 1, anon_sym_GT2, - STATE(5759), 1, + STATE(5741), 1, sym_argument_list, - STATE(5761), 1, + STATE(5917), 1, sym_subscript_argument_list, - STATE(9635), 1, + STATE(9994), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11103), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, + ACTIONS(12330), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11957), 2, + ACTIONS(12332), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11961), 2, + ACTIONS(12336), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11981), 2, + ACTIONS(12356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, + ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11967), 4, + ACTIONS(12342), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [206048] = 28, + [207448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11945), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(11953), 1, + ACTIONS(8424), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(11969), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8422), 30, + 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, - ACTIONS(11971), 1, anon_sym_GT_GT, - ACTIONS(11973), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(11979), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(12080), 1, - anon_sym_GT2, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - STATE(9640), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11103), 2, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [207495] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9407), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9409), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11957), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11961), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11967), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [206145] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11945), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(11953), 1, - anon_sym_SLASH, - ACTIONS(11959), 1, - anon_sym_PIPE, - ACTIONS(11963), 1, - anon_sym_AMP, - ACTIONS(11969), 1, anon_sym_LT_LT, - ACTIONS(11971), 1, anon_sym_GT_GT, - ACTIONS(11973), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(11979), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(12082), 1, - anon_sym_GT2, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - STATE(9650), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11103), 2, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [207542] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9415), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9417), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11957), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11961), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11967), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [206242] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [207589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8087), 9, + ACTIONS(9419), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -609882,7 +632116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8089), 30, + ACTIONS(9421), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -609913,79 +632147,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [206289] = 28, + [207636] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(11985), 1, + ACTIONS(12421), 1, anon_sym_COMMA, - ACTIONS(12084), 1, + ACTIONS(12477), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - STATE(9890), 1, - aux_sym_argument_list_repeat1, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + STATE(10027), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [206386] = 3, + [207733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10249), 18, + ACTIONS(9423), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -609994,17 +632228,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - 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(10247), 21, + ACTIONS(9425), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -610018,87 +632243,72 @@ 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_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_DOT_STAR, anon_sym_DASH_GT, - [206433] = 28, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [207780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, - anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12086), 1, - anon_sym_COMMA, - ACTIONS(12088), 1, - anon_sym_RBRACE, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - STATE(9892), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + STATE(1541), 1, + sym__fold_operator, + ACTIONS(12481), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + anon_sym_EQ, + ACTIONS(12479), 25, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [206530] = 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_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, + [207829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8999), 9, + ACTIONS(8905), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -610108,7 +632318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9001), 30, + ACTIONS(8907), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -610139,10 +632349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [206577] = 3, + [207876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9003), 9, + ACTIONS(9435), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -610152,7 +632362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9005), 30, + ACTIONS(9437), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -610183,79 +632393,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [206624] = 28, + [207923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11945), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(11953), 1, + ACTIONS(8913), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(11969), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8915), 30, + 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, - ACTIONS(11971), 1, anon_sym_GT_GT, - ACTIONS(11973), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(11975), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, - anon_sym_bitor, - ACTIONS(11979), 1, - anon_sym_bitand, - ACTIONS(12090), 1, - anon_sym_GT2, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - STATE(9917), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11951), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11955), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11957), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11961), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(11981), 2, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11967), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [206721] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [207970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 9, + ACTIONS(9445), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -610265,7 +632450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9013), 30, + ACTIONS(9447), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -610296,20 +632481,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [206768] = 3, + [208017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9015), 9, + ACTIONS(8905), 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(9017), 30, + ACTIONS(8907), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -610320,11 +632507,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -610339,20 +632523,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [206815] = 7, + [208064] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6751), 1, - anon_sym_LBRACE, - ACTIONS(7037), 1, - anon_sym_LT, - STATE(1956), 1, - sym_template_argument_list, - ACTIONS(6748), 2, + ACTIONS(9172), 1, + sym_identifier, + ACTIONS(9182), 1, + sym_primitive_type, + STATE(3764), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6707), 1, + sym_alignas_qualifier, + ACTIONS(12214), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6652), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9177), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7251), 6, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7249), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_COLON_COLON, - ACTIONS(6753), 10, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(12209), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [208127] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9435), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -610361,11 +632589,13 @@ 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(6758), 24, + ACTIONS(9437), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -610387,24 +632617,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [206870] = 3, + anon_sym_requires, + [208174] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, + anon_sym_SLASH, + ACTIONS(12235), 1, + anon_sym_PIPE, + ACTIONS(12239), 1, + anon_sym_AMP, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12251), 1, + anon_sym_bitor, + ACTIONS(12253), 1, + anon_sym_bitand, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12309), 1, + anon_sym_COMMA, + ACTIONS(12483), 1, + anon_sym_RPAREN, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + STATE(10082), 1, + aux_sym_argument_list_repeat1, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12227), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [208271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6844), 4, + ACTIONS(6608), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(6846), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(6610), 35, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, @@ -610427,254 +632727,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, anon_sym_or, anon_sym_and, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [206917] = 28, + [208318] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12320), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11997), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(12003), 1, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12334), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12338), 1, anon_sym_AMP, - ACTIONS(12019), 1, - anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12348), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12352), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12354), 1, anon_sym_bitand, - ACTIONS(12092), 1, - anon_sym_RBRACK, - STATE(5762), 1, + ACTIONS(12485), 1, + anon_sym_GT2, + STATE(5741), 1, sym_argument_list, - STATE(5765), 1, + STATE(5917), 1, sym_subscript_argument_list, - STATE(10061), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(10979), 2, + STATE(10087), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12330), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12332), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12336), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12342), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [207014] = 16, + [208415] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(7784), 1, - anon_sym_const, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11443), 1, - anon_sym_STAR, - ACTIONS(11445), 1, + ACTIONS(12427), 2, anon_sym_AMP_AMP, - ACTIONS(11447), 1, + anon_sym_and, + ACTIONS(12487), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9393), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(4554), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8729), 1, - sym__abstract_declarator, - ACTIONS(7786), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2399), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7003), 8, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9395), 24, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + 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_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - ACTIONS(7778), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [207087] = 28, + [208466] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11182), 1, - anon_sym_COMMA, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12094), 1, + ACTIONS(12421), 1, + anon_sym_COMMA, + ACTIONS(12489), 1, anon_sym_RPAREN, - ACTIONS(12096), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + STATE(10107), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [207184] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6270), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(6272), 35, - 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___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [207231] = 3, + [208563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8541), 9, + ACTIONS(8950), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -610684,7 +632931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8543), 30, + ACTIONS(8952), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -610715,198 +632962,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [207278] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6242), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(6244), 35, - 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___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [207325] = 3, + [208610] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6246), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(6248), 35, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, + ACTIONS(12457), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [207372] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6250), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(6252), 35, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(12491), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [207419] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6254), 4, + ACTIONS(9393), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(6256), 35, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9395), 26, + 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + 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_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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, + anon_sym_RBRACK, + 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, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [207466] = 3, + [208661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9007), 11, + ACTIONS(8954), 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(9009), 28, + ACTIONS(8956), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -610917,8 +633032,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -610933,74 +633051,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [207513] = 3, + [208708] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6258), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(6260), 35, - 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___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(9184), 1, + sym_identifier, + ACTIONS(9194), 1, + sym_primitive_type, + STATE(4039), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6707), 1, + sym_alignas_qualifier, + ACTIONS(12157), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, + STATE(6420), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9189), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7207), 6, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [207560] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6262), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(6264), 35, + ACTIONS(7205), 8, + 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_GT2, + ACTIONS(12152), 13, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -611012,159 +633104,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [207607] = 28, + [208771] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11945), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(11953), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11959), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11963), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, - anon_sym_GT_GT, - ACTIONS(11973), 1, - anon_sym_QMARK, - ACTIONS(11975), 1, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11979), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(12098), 1, - anon_sym_GT2, - STATE(5759), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12309), 1, + anon_sym_COMMA, + ACTIONS(12493), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5761), 1, + STATE(3900), 1, sym_subscript_argument_list, - STATE(9645), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11103), 2, + STATE(10155), 1, + aux_sym_argument_list_repeat1, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11957), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11961), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11967), 4, + ACTIONS(12243), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [207704] = 28, + [208868] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12320), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12334), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12338), 1, anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12348), 1, + anon_sym_QMARK, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12352), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12354), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12035), 1, - anon_sym_COMMA, - ACTIONS(12100), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12495), 1, + anon_sym_GT2, + STATE(5741), 1, sym_argument_list, - STATE(9604), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(9242), 2, + STATE(5917), 1, + sym_subscript_argument_list, + STATE(10159), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12330), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12332), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12336), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12342), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [207801] = 3, + [208965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9029), 9, + ACTIONS(8992), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -611174,7 +633255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9031), 30, + ACTIONS(8994), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -611205,12 +633286,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [207848] = 4, + [209012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10236), 1, - sym_literal_suffix, - ACTIONS(5260), 17, + ACTIONS(8992), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -611219,16 +633298,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_DOT, + ACTIONS(8994), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [209059] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8992), 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(5253), 21, + ACTIONS(8994), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -611242,28 +633357,39 @@ 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_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_DOT_STAR, anon_sym_DASH_GT, - [207897] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [209106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 9, + ACTIONS(8913), 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(8994), 30, + ACTIONS(8915), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -611274,11 +633400,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -611293,90 +633416,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [207944] = 28, + [209153] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12320), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12334), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12338), 1, anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12348), 1, + anon_sym_QMARK, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12352), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12354), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12035), 1, - anon_sym_COMMA, - ACTIONS(12102), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12497), 1, + anon_sym_GT2, + STATE(5741), 1, sym_argument_list, - STATE(10026), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(9242), 2, + STATE(5917), 1, + sym_subscript_argument_list, + STATE(9936), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12330), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12332), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12336), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12342), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [209250] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + ACTIONS(11319), 1, + anon_sym_LBRACK, + ACTIONS(11323), 1, + anon_sym_DOT, + ACTIONS(12320), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(12328), 1, + anon_sym_SLASH, + ACTIONS(12334), 1, + anon_sym_PIPE, + ACTIONS(12338), 1, + anon_sym_AMP, + ACTIONS(12344), 1, anon_sym_LT_LT, + ACTIONS(12346), 1, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12348), 1, + anon_sym_QMARK, + ACTIONS(12350), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12352), 1, + anon_sym_bitor, + ACTIONS(12354), 1, + anon_sym_bitand, + ACTIONS(12499), 1, + anon_sym_GT2, + STATE(5741), 1, + sym_argument_list, + STATE(5917), 1, + sym_subscript_argument_list, + STATE(9664), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12324), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12326), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12330), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12332), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12336), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12342), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [208041] = 3, + [209347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8559), 9, + ACTIONS(9445), 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(8561), 30, + ACTIONS(9447), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -611387,11 +633582,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -611406,11 +633598,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [208088] = 3, + [209394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 9, + ACTIONS(8885), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -611420,7 +633613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9039), 30, + ACTIONS(8887), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -611451,17 +633644,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [208135] = 6, + [209441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(11919), 1, - anon_sym_LPAREN2, - STATE(7198), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9105), 9, + ACTIONS(8909), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -611471,9 +633657,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9107), 26, + ACTIONS(8911), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -611498,67 +633685,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [208188] = 4, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [209488] = 24, ACTIONS(3), 1, sym_comment, - STATE(1437), 1, - sym__fold_operator, - ACTIONS(12106), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10348), 1, + anon_sym_AMP_AMP, + ACTIONS(10350), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(12104), 25, + ACTIONS(10367), 1, + anon_sym_DASH_GT, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10382), 1, + anon_sym_requires, + ACTIONS(12406), 1, + anon_sym___attribute__, + ACTIONS(12409), 1, + anon_sym___attribute, + ACTIONS(12412), 1, + anon_sym_LBRACK_LBRACK, + STATE(7210), 1, + sym_ref_qualifier, + STATE(7999), 1, + sym_trailing_return_type, + STATE(8069), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8160), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8313), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7661), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7791), 9, 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, - [208237] = 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [209577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9078), 11, + ACTIONS(8921), 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(9080), 28, + ACTIONS(8923), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -611569,8 +633777,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -611585,24 +633796,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [208284] = 3, + [209624] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + ACTIONS(11319), 1, + anon_sym_LBRACK, + ACTIONS(11323), 1, + anon_sym_DOT, + ACTIONS(12320), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(12328), 1, + anon_sym_SLASH, + ACTIONS(12334), 1, + anon_sym_PIPE, + ACTIONS(12338), 1, + anon_sym_AMP, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12348), 1, + anon_sym_QMARK, + ACTIONS(12350), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12352), 1, + anon_sym_bitor, + ACTIONS(12354), 1, + anon_sym_bitand, + ACTIONS(12501), 1, + anon_sym_GT2, + STATE(5741), 1, + sym_argument_list, + STATE(5917), 1, + sym_subscript_argument_list, + STATE(9689), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12324), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12326), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12330), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12332), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12336), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12342), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [209721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9082), 11, + ACTIONS(8946), 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(9084), 28, + ACTIONS(8948), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -611613,8 +633890,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -611629,705 +633909,494 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [208331] = 16, + [209768] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(7784), 1, - anon_sym_const, - ACTIONS(11429), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(11443), 1, - anon_sym_STAR, - ACTIONS(11445), 1, - anon_sym_AMP_AMP, - ACTIONS(11447), 1, - anon_sym_AMP, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(4554), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8711), 1, - sym__abstract_declarator, - ACTIONS(7786), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2399), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7007), 8, + ACTIONS(11323), 1, + anon_sym_DOT, + ACTIONS(12320), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12322), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7778), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [208404] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(11687), 1, - anon_sym_LT, - STATE(6613), 1, - sym_template_argument_list, - ACTIONS(7031), 4, + ACTIONS(12328), 1, + anon_sym_SLASH, + ACTIONS(12334), 1, + anon_sym_PIPE, + ACTIONS(12338), 1, anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(5272), 32, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12348), 1, + anon_sym_QMARK, + ACTIONS(12350), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12352), 1, + anon_sym_bitor, + ACTIONS(12354), 1, + anon_sym_bitand, + ACTIONS(12503), 1, + anon_sym_GT2, + STATE(5741), 1, + sym_argument_list, + STATE(5917), 1, + sym_subscript_argument_list, + STATE(9702), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12324), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12326), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12330), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [208457] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(7784), 1, - anon_sym_const, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11443), 1, - anon_sym_STAR, - ACTIONS(11445), 1, + ACTIONS(12332), 2, anon_sym_AMP_AMP, - ACTIONS(11447), 1, - anon_sym_AMP, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(4554), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8709), 1, - sym__abstract_declarator, - ACTIONS(7786), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2399), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6995), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7778), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [208530] = 28, + anon_sym_and, + ACTIONS(12336), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12342), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [209865] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12320), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12334), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12338), 1, anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12348), 1, + anon_sym_QMARK, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12352), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12354), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(11985), 1, - anon_sym_COMMA, - ACTIONS(12108), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12505), 1, + anon_sym_GT2, + STATE(5741), 1, sym_argument_list, - STATE(10041), 1, - aux_sym_argument_list_repeat1, - ACTIONS(9242), 2, + STATE(5917), 1, + sym_subscript_argument_list, + STATE(9721), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12330), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12332), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12336), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12342), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [208627] = 28, + [209962] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12320), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12334), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12338), 1, anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12348), 1, + anon_sym_QMARK, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12352), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12354), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12110), 1, - anon_sym_COMMA, - ACTIONS(12112), 1, - anon_sym_RBRACE, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12507), 1, + anon_sym_GT2, + STATE(5741), 1, sym_argument_list, - STATE(10046), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(9242), 2, + STATE(5917), 1, + sym_subscript_argument_list, + STATE(9736), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12330), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12332), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12336), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12342), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [208724] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8790), 1, - sym_identifier, - ACTIONS(8800), 1, - sym_primitive_type, - STATE(3679), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6485), 1, - sym_alignas_qualifier, - ACTIONS(11844), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6586), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8795), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6814), 6, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(6812), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(11839), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [208787] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(7784), 1, - anon_sym_const, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11443), 1, - anon_sym_STAR, - ACTIONS(11445), 1, - anon_sym_AMP_AMP, - ACTIONS(11447), 1, - anon_sym_AMP, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(4554), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8731), 1, - sym__abstract_declarator, - ACTIONS(7786), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6521), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6999), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7778), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [208860] = 28, + [210059] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12320), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12334), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12338), 1, anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12348), 1, + anon_sym_QMARK, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12352), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12354), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(11985), 1, - anon_sym_COMMA, - ACTIONS(12114), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12509), 1, + anon_sym_GT2, + STATE(5741), 1, sym_argument_list, - STATE(9817), 1, - aux_sym_argument_list_repeat1, - ACTIONS(9242), 2, + STATE(5917), 1, + sym_subscript_argument_list, + STATE(9746), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12330), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12332), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12336), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12342), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [208957] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(6696), 1, - sym_auto, - ACTIONS(6698), 1, - anon_sym_decltype, - ACTIONS(12116), 1, - anon_sym_LT, - STATE(3914), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3968), 1, - sym_template_argument_list, - STATE(4306), 1, - sym_decltype_auto, - ACTIONS(5251), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(6688), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5258), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [209020] = 28, + [210156] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11945), 1, + ACTIONS(12320), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(11953), 1, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(11959), 1, + ACTIONS(12334), 1, anon_sym_PIPE, - ACTIONS(11963), 1, + ACTIONS(12338), 1, anon_sym_AMP, - ACTIONS(11969), 1, + ACTIONS(12344), 1, anon_sym_LT_LT, - ACTIONS(11971), 1, + ACTIONS(12346), 1, anon_sym_GT_GT, - ACTIONS(11973), 1, + ACTIONS(12348), 1, anon_sym_QMARK, - ACTIONS(11975), 1, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + ACTIONS(12352), 1, anon_sym_bitor, - ACTIONS(11979), 1, + ACTIONS(12354), 1, anon_sym_bitand, - ACTIONS(12118), 1, + ACTIONS(12511), 1, anon_sym_GT2, - STATE(5759), 1, + STATE(5741), 1, sym_argument_list, - STATE(5761), 1, + STATE(5917), 1, sym_subscript_argument_list, - STATE(10057), 1, + STATE(9757), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11103), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, + ACTIONS(12330), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11957), 2, + ACTIONS(12332), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11961), 2, + ACTIONS(12336), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11981), 2, + ACTIONS(12356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, + ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11967), 4, + ACTIONS(12342), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [209117] = 3, + [210253] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8599), 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, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + ACTIONS(11319), 1, + anon_sym_LBRACK, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(8601), 30, + ACTIONS(12320), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(12322), 1, 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, + ACTIONS(12328), 1, + anon_sym_SLASH, + ACTIONS(12334), 1, + anon_sym_PIPE, + ACTIONS(12338), 1, + anon_sym_AMP, + ACTIONS(12344), 1, anon_sym_LT_LT, + ACTIONS(12346), 1, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(12348), 1, anon_sym_QMARK, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12352), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12354), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(12513), 1, + anon_sym_GT2, + STATE(5741), 1, + sym_argument_list, + STATE(5917), 1, + sym_subscript_argument_list, + STATE(9770), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [209164] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7546), 9, + ACTIONS(12324), 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(7544), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12330), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12332), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12336), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12342), 4, + anon_sym_GT, anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [210350] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + ACTIONS(11319), 1, + anon_sym_LBRACK, + ACTIONS(11323), 1, + anon_sym_DOT, + ACTIONS(12320), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(12328), 1, + anon_sym_SLASH, + ACTIONS(12334), 1, + anon_sym_PIPE, + ACTIONS(12338), 1, + anon_sym_AMP, + ACTIONS(12344), 1, anon_sym_LT_LT, + ACTIONS(12346), 1, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(12348), 1, anon_sym_QMARK, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, + ACTIONS(12352), 1, + anon_sym_bitor, + ACTIONS(12354), 1, + anon_sym_bitand, + ACTIONS(12515), 1, + anon_sym_GT2, + STATE(5741), 1, + sym_argument_list, + STATE(5917), 1, + sym_subscript_argument_list, + STATE(9780), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12324), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12326), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12330), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(12332), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12336), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(12356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [209211] = 6, + ACTIONS(12340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12342), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [210447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 1, - anon_sym_LBRACE, - ACTIONS(11145), 1, - anon_sym_LPAREN2, - STATE(5870), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9105), 9, + ACTIONS(8996), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -612337,9 +634406,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9107), 26, + ACTIONS(8998), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -612350,8 +634420,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK_RBRACK, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -612364,17 +634434,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [209264] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [210494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(11919), 1, - anon_sym_LPAREN2, - STATE(7232), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9086), 9, + ACTIONS(9011), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -612384,9 +634450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9088), 26, + ACTIONS(9013), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -612411,10 +634478,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [209317] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [210541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 9, + ACTIONS(9000), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -612424,7 +634494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7627), 30, + ACTIONS(9002), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -612455,354 +634525,421 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [209364] = 28, + [210588] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12320), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12334), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12338), 1, anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12348), 1, + anon_sym_QMARK, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12352), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12354), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(11985), 1, - anon_sym_COMMA, - ACTIONS(12120), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12517), 1, + anon_sym_GT2, + STATE(5741), 1, sym_argument_list, - STATE(9950), 1, - aux_sym_argument_list_repeat1, - ACTIONS(9242), 2, + STATE(5917), 1, + sym_subscript_argument_list, + STATE(9788), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12330), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12332), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12336), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12342), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [209461] = 28, + [210685] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12320), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12334), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12338), 1, anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12348), 1, + anon_sym_QMARK, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12352), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12354), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12122), 1, - anon_sym_COMMA, - ACTIONS(12124), 1, - anon_sym_RBRACE, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12519), 1, + anon_sym_GT2, + STATE(5741), 1, sym_argument_list, - STATE(9953), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(9242), 2, + STATE(5917), 1, + sym_subscript_argument_list, + STATE(9795), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12330), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12332), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12336), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12342), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [209558] = 28, + [210782] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11945), 1, + ACTIONS(12320), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(11953), 1, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(11959), 1, + ACTIONS(12334), 1, anon_sym_PIPE, - ACTIONS(11963), 1, + ACTIONS(12338), 1, anon_sym_AMP, - ACTIONS(11969), 1, + ACTIONS(12344), 1, anon_sym_LT_LT, - ACTIONS(11971), 1, + ACTIONS(12346), 1, anon_sym_GT_GT, - ACTIONS(11973), 1, + ACTIONS(12348), 1, anon_sym_QMARK, - ACTIONS(11975), 1, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + ACTIONS(12352), 1, anon_sym_bitor, - ACTIONS(11979), 1, + ACTIONS(12354), 1, anon_sym_bitand, - ACTIONS(12126), 1, + ACTIONS(12521), 1, anon_sym_GT2, - STATE(5759), 1, + STATE(5741), 1, sym_argument_list, - STATE(5761), 1, + STATE(5917), 1, sym_subscript_argument_list, - STATE(9964), 1, + STATE(9804), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11103), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, + ACTIONS(12330), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11957), 2, + ACTIONS(12332), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11961), 2, + ACTIONS(12336), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11981), 2, + ACTIONS(12356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, + ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11967), 4, + ACTIONS(12342), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [209655] = 27, + [210879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11182), 1, - anon_sym_COMMA, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(8893), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(11885), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8895), 30, + 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, - ACTIONS(11889), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(11893), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [210926] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8901), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8903), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12128), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(11881), 3, 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_QMARK, + 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(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [209750] = 28, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [210973] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12035), 1, + ACTIONS(12309), 1, anon_sym_COMMA, - ACTIONS(12130), 1, + ACTIONS(12523), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - STATE(9569), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + STATE(10074), 1, + aux_sym_argument_list_repeat1, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [211070] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(12283), 1, + anon_sym_LPAREN2, + STATE(7212), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9381), 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, - [209847] = 3, + anon_sym_DOT, + ACTIONS(9383), 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [211123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8618), 9, + ACTIONS(8942), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -612812,7 +634949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8620), 30, + ACTIONS(8944), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -612843,374 +634980,438 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [209894] = 28, + [211170] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12132), 1, + ACTIONS(12293), 1, + anon_sym_SEMI, + ACTIONS(12525), 1, anon_sym_COMMA, - ACTIONS(12134), 1, + ACTIONS(12528), 1, anon_sym_RBRACE, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - STATE(9834), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [209991] = 28, + [211267] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(11985), 1, + ACTIONS(12404), 1, + anon_sym_SEMI, + ACTIONS(12530), 1, anon_sym_COMMA, - ACTIONS(12136), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12533), 1, + anon_sym_RBRACE, + STATE(3874), 1, sym_argument_list, - STATE(9655), 1, - aux_sym_argument_list_repeat1, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [210088] = 28, + [211364] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(11985), 1, + ACTIONS(12295), 1, + anon_sym_RBRACE, + ACTIONS(12535), 1, anon_sym_COMMA, - ACTIONS(12138), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - STATE(9770), 1, - aux_sym_argument_list_repeat1, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + STATE(9672), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [210185] = 28, + [211461] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12364), 1, + anon_sym_COMMA, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12140), 1, - anon_sym_COMMA, - ACTIONS(12142), 1, - anon_sym_RBRACE, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12537), 1, + anon_sym_RBRACK, + STATE(5875), 1, sym_argument_list, - STATE(9656), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + STATE(9816), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [210282] = 24, + [211558] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(7291), 4, anon_sym_AMP, - ACTIONS(10016), 1, - anon_sym_DASH_GT, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10022), 1, - anon_sym_requires, - ACTIONS(12144), 1, - anon_sym___attribute__, - ACTIONS(12147), 1, anon_sym___attribute, - ACTIONS(12150), 1, - anon_sym_LBRACK_LBRACK, - STATE(7256), 1, - sym_ref_qualifier, - STATE(7917), 1, - sym_trailing_return_type, - STATE(7957), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7821), 2, + anon_sym_COLON, + anon_sym_const, + ACTIONS(7293), 34, + 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___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8170), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7546), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7544), 9, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [211607] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(7291), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(7293), 34, 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_COLON, + anon_sym___extension__, + anon_sym___attribute__, 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [210371] = 3, + anon_sym_requires, + [211656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6902), 10, + ACTIONS(7301), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(7303), 35, 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___extension__, + anon_sym___attribute__, 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6900), 29, + anon_sym_try, + anon_sym_requires, + [211703] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6594), 4, anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6601), 35, + 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___extension__, anon_sym___attribute__, - anon_sym___attribute, - 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_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_const, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -613224,93 +635425,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, + anon_sym_or, + anon_sym_and, + sym_auto, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [210418] = 28, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [211750] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11945), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(11953), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11959), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11963), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, - anon_sym_GT_GT, - ACTIONS(11973), 1, - anon_sym_QMARK, - ACTIONS(11975), 1, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11979), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(12153), 1, - anon_sym_GT2, - STATE(5759), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12309), 1, + anon_sym_COMMA, + ACTIONS(12539), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5761), 1, + STATE(3900), 1, sym_subscript_argument_list, - STATE(9661), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11103), 2, + STATE(9866), 1, + aux_sym_argument_list_repeat1, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11957), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11961), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11967), 4, + ACTIONS(12243), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [210515] = 3, + [211847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8651), 9, + ACTIONS(9296), 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(8653), 30, + ACTIONS(9298), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -613321,11 +635529,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -613340,159 +635545,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [210562] = 28, + [211894] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11997), 1, - anon_sym_COMMA, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(12155), 1, - anon_sym_RBRACK, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12541), 1, + anon_sym_COMMA, + ACTIONS(12543), 1, + anon_sym_RBRACE, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - STATE(9978), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(10979), 2, + STATE(9872), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12001), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12005), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12007), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12011), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12017), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [210659] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - ACTIONS(10973), 1, - anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - ACTIONS(11995), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11997), 1, - anon_sym_COMMA, - ACTIONS(12003), 1, - anon_sym_SLASH, - ACTIONS(12009), 1, - anon_sym_PIPE, - ACTIONS(12013), 1, - anon_sym_AMP, - ACTIONS(12019), 1, - anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, - anon_sym_bitor, - ACTIONS(12031), 1, - anon_sym_bitand, - ACTIONS(12157), 1, - anon_sym_RBRACK, - STATE(5762), 1, - sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - STATE(9550), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [210756] = 3, + [211991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8655), 9, + ACTIONS(7968), 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(8657), 30, + ACTIONS(7966), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -613503,11 +635642,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -613522,99 +635658,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_requires, - [210803] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(129), 1, - sym_auto, - ACTIONS(131), 1, - anon_sym_decltype, - ACTIONS(1954), 1, - anon_sym_enum, - ACTIONS(1956), 1, - anon_sym_class, - ACTIONS(1958), 1, - anon_sym_struct, - ACTIONS(1960), 1, - anon_sym_union, - ACTIONS(3071), 1, - sym_primitive_type, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(5313), 1, - anon_sym_typename, - ACTIONS(6101), 1, - anon_sym_COLON_COLON, - ACTIONS(11929), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11933), 1, - anon_sym_EQ, - ACTIONS(12159), 1, - sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(3709), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4520), 1, - sym_template_type, - STATE(4521), 1, - sym_qualified_type_identifier, - STATE(4706), 1, - sym_decltype_auto, - STATE(4739), 1, - sym_type_specifier, - STATE(5044), 1, - sym_splice_specifier, - STATE(8579), 1, - sym__scope_resolution, - ACTIONS(11931), 2, - anon_sym_COMMA, anon_sym_GT2, - STATE(4790), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4714), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [210900] = 6, + anon_sym_requires, + [212038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(11919), 1, - anon_sym_LPAREN2, - STATE(7255), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9117), 9, + ACTIONS(9308), 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(9119), 26, + ACTIONS(9310), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -613622,11 +635686,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -613639,109 +635700,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [210953] = 4, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [212085] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12161), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8939), 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(8941), 28, - anon_sym_DOT_DOT_DOT, + STATE(6699), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12317), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7001), 10, 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_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - 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_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6999), 24, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [211002] = 3, + [212136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9007), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7231), 4, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(9009), 30, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(7233), 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_LT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_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, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [211049] = 3, + [212183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 9, + ACTIONS(9389), 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(8635), 30, + ACTIONS(9391), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -613752,11 +635820,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -613771,217 +635836,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [211096] = 5, + [212230] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(12161), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12163), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8959), 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, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + ACTIONS(11319), 1, + anon_sym_LBRACK, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(8961), 26, + ACTIONS(12320), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(12322), 1, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(12328), 1, + anon_sym_SLASH, + ACTIONS(12334), 1, + anon_sym_PIPE, + ACTIONS(12338), 1, + anon_sym_AMP, + ACTIONS(12344), 1, anon_sym_LT_LT, + ACTIONS(12346), 1, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(12348), 1, anon_sym_QMARK, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, + ACTIONS(12352), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12354), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(12545), 1, + anon_sym_GT2, + STATE(5741), 1, + sym_argument_list, + STATE(5917), 1, + sym_subscript_argument_list, + STATE(9897), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [211147] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8610), 9, + ACTIONS(12324), 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(8612), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12330), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, + ACTIONS(12332), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12336), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(12356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [211194] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(6476), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6627), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(12049), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7081), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7084), 22, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [211247] = 28, + ACTIONS(12340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12342), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [212327] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(11417), 1, + anon_sym_COMMA, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12035), 1, - anon_sym_COMMA, - ACTIONS(12165), 1, + ACTIONS(12547), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12549), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - STATE(10030), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [211344] = 3, + [212424] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9078), 9, + ACTIONS(4922), 1, + anon_sym_LBRACE, + ACTIONS(11527), 1, + anon_sym_LPAREN2, + STATE(6023), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9491), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -613991,10 +635996,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9080), 30, + ACTIONS(9493), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -614005,8 +636009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -614019,50 +636023,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [211391] = 11, + [212477] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8911), 1, - sym_identifier, - ACTIONS(8921), 1, - sym_primitive_type, - STATE(3926), 1, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(6989), 1, + sym_auto, + ACTIONS(6991), 1, + anon_sym_decltype, + ACTIONS(12551), 1, + anon_sym_LT, + STATE(4015), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6485), 1, - sym_alignas_qualifier, - ACTIONS(11856), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8916), 4, + STATE(4054), 1, + sym_template_argument_list, + STATE(4458), 1, + sym_decltype_auto, + ACTIONS(5636), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(6981), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6886), 6, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(6884), 8, + ACTIONS(5643), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(11851), 13, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -614074,145 +636069,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [211454] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9082), 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(9084), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [211501] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(11919), 1, - anon_sym_LPAREN2, - STATE(7263), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8951), 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(8953), 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [211554] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8935), 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(8937), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [211601] = 3, + [212540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8935), 11, + ACTIONS(9361), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -614224,7 +636090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(8937), 28, + ACTIONS(9363), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -614253,222 +636119,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [211648] = 24, + [212587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10016), 1, - anon_sym_DASH_GT, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(12144), 1, - anon_sym___attribute__, - ACTIONS(12147), 1, - anon_sym___attribute, - ACTIONS(12150), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12170), 1, - anon_sym_requires, - STATE(7249), 1, - sym_ref_qualifier, - STATE(7926), 1, - sym_trailing_return_type, - STATE(7948), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12167), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8170), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7542), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7544), 9, + ACTIONS(3118), 11, + 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_COLON, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - anon_sym_try, - [211737] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, - anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12035), 1, - anon_sym_COMMA, - ACTIONS(12173), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - STATE(9695), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [211834] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(3128), 28, anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12177), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12175), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(11881), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [211929] = 3, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [212634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 9, + ACTIONS(9333), 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(8631), 30, + ACTIONS(9335), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -614479,11 +636189,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -614498,18 +636205,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [211976] = 6, + [212681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 1, - anon_sym_LBRACE, - ACTIONS(11923), 1, - anon_sym_LPAREN2, - STATE(7282), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(8951), 11, + ACTIONS(9337), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -614521,9 +636222,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(8953), 24, + ACTIONS(9339), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -614545,80 +636247,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [212029] = 28, + anon_sym_requires, + [212728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(7079), 11, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, - anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(11939), 1, - anon_sym_RBRACE, - ACTIONS(12179), 1, anon_sym_COMMA, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - STATE(9927), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [212126] = 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(7077), 28, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [212775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 9, + ACTIONS(3163), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -614628,7 +636308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8631), 30, + ACTIONS(3161), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -614659,10 +636339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [212173] = 3, + [212822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 9, + ACTIONS(3155), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -614672,7 +636352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8631), 30, + ACTIONS(3153), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -614703,17 +636383,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [212220] = 6, + [212869] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 1, + ACTIONS(4910), 1, anon_sym_LBRACE, - ACTIONS(11923), 1, + ACTIONS(12279), 1, anon_sym_LPAREN2, - STATE(7115), 2, + STATE(7230), 2, sym_argument_list, sym_initializer_list, - ACTIONS(9105), 11, + ACTIONS(9491), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -614725,7 +636405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9107), 24, + ACTIONS(9493), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -614750,27 +636430,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [212273] = 6, + [212922] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 1, + ACTIONS(7090), 1, anon_sym_LBRACE, - ACTIONS(11145), 1, + ACTIONS(7445), 1, + anon_sym_LT, + STATE(2053), 1, + sym_template_argument_list, + ACTIONS(7087), 2, anon_sym_LPAREN2, - STATE(5876), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9086), 9, + anon_sym_COLON_COLON, + ACTIONS(7092), 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, anon_sym_DOT, - ACTIONS(9088), 26, + ACTIONS(7097), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -614780,10 +636463,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_RBRACK_RBRACK, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -614797,99 +636477,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [212326] = 28, + anon_sym_GT2, + [212977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11945), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(11953), 1, + ACTIONS(7789), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_GT_GT, - ACTIONS(11973), 1, - anon_sym_QMARK, - ACTIONS(11975), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, - anon_sym_bitor, - ACTIONS(11979), 1, - anon_sym_bitand, - ACTIONS(12181), 1, - anon_sym_GT2, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - STATE(9935), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11951), 2, + anon_sym_DOT, + ACTIONS(7791), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11957), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11961), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11965), 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(11967), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [212423] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [213024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6751), 1, - anon_sym_LBRACE, - ACTIONS(7037), 1, - anon_sym_LT, - STATE(1956), 1, - sym_template_argument_list, - ACTIONS(6748), 2, - anon_sym_LPAREN2, - anon_sym_COLON_COLON, - ACTIONS(6753), 8, + ACTIONS(9365), 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(6758), 26, + ACTIONS(9367), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -614897,11 +636548,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -614914,57 +636562,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [212478] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [213071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6748), 1, - anon_sym_COLON_COLON, - ACTIONS(11687), 1, - anon_sym_LT, - STATE(7019), 1, - sym_template_argument_list, - ACTIONS(6746), 4, + ACTIONS(9369), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(6751), 32, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9371), 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_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_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, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [212531] = 3, + [213118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 11, + ACTIONS(9373), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -614976,7 +636625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7627), 28, + ACTIONS(9375), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -615005,17 +636654,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [212578] = 4, + [213165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(6949), 4, + ACTIONS(6632), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(6951), 34, + ACTIONS(6634), 35, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -615025,6 +636672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -615050,17 +636698,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [212627] = 4, + [213212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(6949), 4, + ACTIONS(6612), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(6951), 34, + ACTIONS(6614), 35, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -615070,6 +636716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -615095,52 +636742,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [212676] = 16, + [213259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(7784), 1, - anon_sym_const, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11443), 1, - anon_sym_STAR, - ACTIONS(11445), 1, - anon_sym_AMP_AMP, - ACTIONS(11447), 1, + ACTIONS(6624), 4, anon_sym_AMP, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(4554), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8712), 1, - sym__abstract_declarator, - ACTIONS(7786), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6546), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6991), 8, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6626), 35, 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_COLON, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - ACTIONS(7778), 12, + [213306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6628), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6630), 35, + 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___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -615152,213 +636819,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [212749] = 28, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [213353] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(11937), 1, - anon_sym_SEMI, - ACTIONS(12183), 1, + ACTIONS(12553), 1, anon_sym_COMMA, - ACTIONS(12186), 1, + ACTIONS(12555), 1, anon_sym_RBRACE, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + STATE(10084), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [212846] = 28, + [213450] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9707), 1, + anon_sym_PIPE, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12128), 1, - anon_sym_SEMI, - ACTIONS(12188), 1, - anon_sym_COMMA, - ACTIONS(12191), 1, - anon_sym_RBRACE, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [212943] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4536), 1, - anon_sym_LBRACE, - ACTIONS(11145), 1, - anon_sym_LPAREN2, - STATE(5863), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9117), 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(9119), 26, + ACTIONS(9709), 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_RBRACK_RBRACK, - 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_DOT_STAR, - anon_sym_DASH_GT, - [212996] = 3, + [213530] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6967), 4, - anon_sym_AMP, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(7353), 1, anon_sym___attribute, - anon_sym_COLON, + ACTIONS(8123), 1, anon_sym_const, - ACTIONS(6969), 35, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11838), 1, anon_sym_STAR, - anon_sym_PIPE_PIPE, + ACTIONS(11840), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + ACTIONS(11842), 1, + anon_sym_AMP, + STATE(2726), 1, + sym_alignas_qualifier, + STATE(5313), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8933), 1, + sym__abstract_declarator, + ACTIONS(8125), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2488), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7355), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8117), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -615370,83 +637016,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [213043] = 3, + [213604] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(8955), 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(8957), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6461), 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, + ACTIONS(11793), 1, 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [213090] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6226), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, + ACTIONS(11795), 1, anon_sym_const, - ACTIONS(6233), 35, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(11821), 1, anon_sym_STAR, - anon_sym_PIPE_PIPE, + ACTIONS(11823), 1, anon_sym_AMP_AMP, + ACTIONS(11825), 1, + anon_sym_AMP, + STATE(4861), 1, + sym_parameter_list, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8909), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6420), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7355), 7, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(11785), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -615458,44 +637072,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [213137] = 3, + [213676] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6808), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6461), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(11821), 1, anon_sym_STAR, + ACTIONS(11823), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6806), 29, + ACTIONS(11825), 1, anon_sym_AMP, + STATE(4861), 1, + sym_parameter_list, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8895), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6420), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7345), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(11785), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - 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_LBRACK, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -615507,183 +637128,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [213184] = 27, + [213748] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11182), 1, - anon_sym_COMMA, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, - anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12193), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5741), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9707), 6, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [213278] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(10969), 1, - anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(9709), 15, anon_sym_DOT_DOT_DOT, - ACTIONS(12195), 1, anon_sym_COMMA, - ACTIONS(12201), 1, - anon_sym_SLASH, - ACTIONS(12207), 1, - anon_sym_PIPE, - ACTIONS(12211), 1, - anon_sym_AMP, - ACTIONS(12217), 1, - anon_sym_GT_EQ, - ACTIONS(12221), 1, - anon_sym_COLON, - ACTIONS(12223), 1, - anon_sym_QMARK, - ACTIONS(12225), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, - anon_sym_bitor, - ACTIONS(12229), 1, - anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(10971), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12199), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12203), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12205), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12209), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12219), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12213), 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, - ACTIONS(12215), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [213372] = 14, + anon_sym_GT2, + [213820] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(12235), 1, + ACTIONS(12328), 1, anon_sym_SLASH, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5741), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12231), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12233), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9282), 5, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9707), 7, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 17, + anon_sym_GT_GT, + ACTIONS(9709), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -615691,8 +637227,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_RBRACK_RBRACK, + anon_sym_LT_LT, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -615701,108 +637236,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [213440] = 17, + anon_sym_GT2, + [213886] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(12257), 1, anon_sym_LPAREN2, - ACTIONS(7001), 1, - anon_sym___attribute, - ACTIONS(7784), 1, - anon_sym_const, - ACTIONS(11429), 1, + ACTIONS(12259), 1, anon_sym_LBRACK, - ACTIONS(11480), 1, - anon_sym_STAR, - ACTIONS(11482), 1, - anon_sym_AMP_AMP, - ACTIONS(11484), 1, - anon_sym_AMP, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(5221), 1, + STATE(2267), 1, sym_parameter_list, - STATE(8393), 1, + STATE(6617), 1, sym__function_declarator_seq, - STATE(8805), 1, - sym__abstract_declarator, - ACTIONS(7786), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6672), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6999), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7778), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [213514] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - ACTIONS(10973), 1, - anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - ACTIONS(12003), 1, - anon_sym_SLASH, - STATE(5762), 1, - sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(10190), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9282), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 17, + anon_sym_DOT, + ACTIONS(10188), 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_QMARK, anon_sym_LT_EQ_GT, @@ -615812,481 +637280,524 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [213582] = 24, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [213940] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(12235), 1, + ACTIONS(11417), 1, + anon_sym_COMMA, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12243), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12247), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12253), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12255), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12257), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12259), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12557), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12231), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12233), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12239), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12241), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12245), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12249), 3, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12251), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10186), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK, - [213670] = 26, + [214034] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12235), 1, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(12243), 1, + ACTIONS(12334), 1, anon_sym_PIPE, - ACTIONS(12247), 1, + ACTIONS(12338), 1, anon_sym_AMP, - ACTIONS(12253), 1, - anon_sym_GT_EQ, - ACTIONS(12255), 1, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(12257), 1, + ACTIONS(12352), 1, anon_sym_bitor, - ACTIONS(12259), 1, + ACTIONS(12354), 1, anon_sym_bitand, - ACTIONS(12261), 1, - anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5741), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10190), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12231), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12233), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12239), 2, + ACTIONS(12330), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12241), 2, + ACTIONS(12332), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12245), 2, + ACTIONS(12336), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12249), 3, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12251), 3, + ACTIONS(9597), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(12342), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [213762] = 24, + [214122] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(12235), 1, + ACTIONS(11417), 1, + anon_sym_COMMA, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12243), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12247), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12253), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12255), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12257), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12259), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12559), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12231), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12233), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12239), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12241), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12245), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12249), 3, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12251), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10194), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK, - [213850] = 16, + [214216] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(11429), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11474), 1, + ACTIONS(11323), 1, + anon_sym_DOT, + ACTIONS(12328), 1, + anon_sym_SLASH, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + STATE(5741), 1, + sym_argument_list, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12324), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12326), 2, anon_sym_STAR, - ACTIONS(11476), 1, - anon_sym_AMP_AMP, - ACTIONS(11478), 1, + anon_sym_PERCENT, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9707), 6, + anon_sym_PIPE, anon_sym_AMP, - STATE(4725), 1, - sym_parameter_list, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8754), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7007), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [213922] = 27, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [214286] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12195), 1, + ACTIONS(12561), 1, anon_sym_COMMA, - ACTIONS(12201), 1, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(12223), 1, + ACTIONS(12587), 1, + anon_sym_COLON, + ACTIONS(12589), 1, anon_sym_QMARK, - ACTIONS(12225), 1, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12593), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12595), 1, anon_sym_bitand, - ACTIONS(12263), 1, - anon_sym_COLON, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12571), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12581), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [214016] = 26, + [214380] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12235), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12243), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12247), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12253), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12255), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12257), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12259), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(12261), 1, - anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(10491), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10198), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12231), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12233), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12239), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12241), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12245), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12249), 3, + ACTIONS(12388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12251), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [214108] = 26, + [214472] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(12273), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(12275), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - ACTIONS(11995), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + STATE(2249), 1, + sym_parameter_list, + STATE(6557), 1, + sym__function_declarator_seq, + ACTIONS(10186), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(12019), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(12025), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(10184), 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_QMARK, - ACTIONS(12027), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(12031), 1, + anon_sym_xor, anon_sym_bitand, - STATE(5762), 1, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [214526] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + ACTIONS(11319), 1, + anon_sym_LBRACK, + ACTIONS(11323), 1, + anon_sym_DOT, + STATE(5741), 1, sym_argument_list, - STATE(5765), 1, + STATE(5917), 1, sym_subscript_argument_list, - ACTIONS(10198), 2, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9673), 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(9675), 19, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11999), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12001), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12007), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12011), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 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, - ACTIONS(12017), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [214200] = 9, + anon_sym_GT2, + [214586] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11323), 1, anon_sym_DOT, - STATE(5762), 1, + STATE(5741), 1, sym_argument_list, - STATE(5765), 1, + STATE(5917), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9286), 8, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9677), 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, - ACTIONS(9288), 23, + anon_sym_GT_GT, + ACTIONS(9679), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -616296,10 +637807,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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -616308,313 +637816,402 @@ 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, - [214258] = 24, + anon_sym_GT2, + [214646] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(12003), 1, + ACTIONS(11417), 1, + anon_sym_COMMA, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12597), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10091), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [214346] = 24, + [214740] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(11821), 1, + anon_sym_STAR, + ACTIONS(11823), 1, + anon_sym_AMP_AMP, + ACTIONS(11825), 1, + anon_sym_AMP, + STATE(4861), 1, + sym_parameter_list, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8936), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6883), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7391), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [214812] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(12003), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12443), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [214904] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12273), 1, + anon_sym_LPAREN2, + ACTIONS(12275), 1, + anon_sym_LBRACK, + STATE(2249), 1, + sym_parameter_list, + STATE(6557), 1, + sym__function_declarator_seq, + ACTIONS(10190), 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(10194), 4, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(10188), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_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, - [214434] = 26, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + anon_sym_GT2, + [214958] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12561), 1, + anon_sym_COMMA, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12589), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12593), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12595), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12599), 1, + anon_sym_COLON, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12571), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12265), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(12015), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12581), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [214526] = 26, + [215052] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(12257), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(12259), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - ACTIONS(11995), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + STATE(2267), 1, + sym_parameter_list, + STATE(6617), 1, + sym__function_declarator_seq, + ACTIONS(10194), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(12019), 1, - anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, - anon_sym_bitor, - ACTIONS(12031), 1, - anon_sym_bitand, - STATE(5762), 1, - sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11999), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12001), 2, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(10192), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12007), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12011), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12021), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12265), 2, - anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(12015), 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, - ACTIONS(12017), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [214618] = 17, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [215106] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(6993), 1, + ACTIONS(7393), 1, anon_sym___attribute, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, + ACTIONS(8123), 1, anon_sym_const, - ACTIONS(11461), 1, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11838), 1, anon_sym_STAR, - ACTIONS(11463), 1, + ACTIONS(11840), 1, anon_sym_AMP_AMP, - ACTIONS(11465), 1, + ACTIONS(11842), 1, anon_sym_AMP, - STATE(5216), 1, - sym_parameter_list, - STATE(6485), 1, + STATE(2726), 1, sym_alignas_qualifier, - STATE(8393), 1, + STATE(5313), 1, + sym_parameter_list, + STATE(8598), 1, sym__function_declarator_seq, - STATE(8776), 1, + STATE(8907), 1, sym__abstract_declarator, - ACTIONS(11433), 2, + ACTIONS(8125), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6758), 2, + STATE(6906), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6991), 6, + ACTIONS(7391), 6, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - ACTIONS(11421), 12, + ACTIONS(8117), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -616627,310 +638224,405 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [214692] = 26, + [215180] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(11417), 1, + anon_sym_COMMA, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12601), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11647), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [214784] = 24, + [215274] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(12273), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(12275), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11953), 1, + STATE(2249), 1, + sym_parameter_list, + STATE(6557), 1, + sym__function_declarator_seq, + ACTIONS(10194), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_GT_GT, - ACTIONS(11975), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, - anon_sym_bitor, - ACTIONS(11979), 1, - anon_sym_bitand, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11951), 2, + anon_sym_DOT, + ACTIONS(10192), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11957), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11961), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10178), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + 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_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(11967), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [214872] = 24, + [215328] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(12257), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(12259), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11953), 1, + STATE(2267), 1, + sym_parameter_list, + STATE(6617), 1, + sym__function_declarator_seq, + ACTIONS(10174), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(11959), 1, anon_sym_PIPE, - ACTIONS(11963), 1, anon_sym_AMP, - ACTIONS(11969), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(10172), 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, - ACTIONS(11971), 1, anon_sym_GT_GT, - ACTIONS(11975), 1, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(11979), 1, + anon_sym_xor, anon_sym_bitand, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(11103), 2, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + [215382] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12257), 1, + anon_sym_LPAREN2, + ACTIONS(12259), 1, + anon_sym_LBRACK, + STATE(2267), 1, + sym_parameter_list, + STATE(6617), 1, + sym__function_declarator_seq, + ACTIONS(10198), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(10196), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11957), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11961), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10186), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(11967), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [214960] = 27, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [215436] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(12257), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(12259), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11182), 1, - anon_sym_COMMA, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + STATE(2267), 1, + sym_parameter_list, + STATE(6617), 1, + sym__function_declarator_seq, + ACTIONS(10202), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(11885), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(10200), 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, - ACTIONS(11889), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(11893), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12267), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [215490] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(11327), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, + anon_sym_DOT, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(9715), 8, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9717), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [215054] = 12, + [215550] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11953), 1, + ACTIONS(12328), 1, anon_sym_SLASH, - STATE(5759), 1, + ACTIONS(12334), 1, + anon_sym_PIPE, + ACTIONS(12338), 1, + anon_sym_AMP, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12350), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12352), 1, + anon_sym_bitor, + ACTIONS(12354), 1, + anon_sym_bitand, + STATE(5741), 1, sym_argument_list, - STATE(5761), 1, + STATE(5917), 1, sym_subscript_argument_list, - ACTIONS(11103), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11951), 2, + ACTIONS(12324), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11981), 2, + ACTIONS(12336), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9282), 9, + ACTIONS(12340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12342), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 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, + [215634] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6601), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6603), 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, - ACTIONS(9284), 17, + anon_sym_DOT, + ACTIONS(6596), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -616939,27 +638631,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [215118] = 10, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [215682] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11323), 1, anon_sym_DOT, - STATE(5759), 1, + STATE(5741), 1, sym_argument_list, - STATE(5761), 1, + STATE(5917), 1, sym_subscript_argument_list, - ACTIONS(11103), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11981), 2, + ACTIONS(12356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9252), 10, + ACTIONS(9707), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -616970,7 +638665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - ACTIONS(9254), 19, + ACTIONS(9709), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -616990,736 +638685,773 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_GT2, - [215178] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(12116), 1, - anon_sym_LT, - STATE(3968), 1, - sym_template_argument_list, - ACTIONS(6201), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(6208), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [215230] = 26, + [215742] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11945), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11953), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11959), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11963), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, - anon_sym_GT_GT, - ACTIONS(11973), 1, - anon_sym_QMARK, - ACTIONS(11975), 1, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11979), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5759), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + STATE(3874), 1, sym_argument_list, - STATE(5761), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(9438), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(11103), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11957), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11961), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12603), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11967), 4, + ACTIONS(12243), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [215322] = 26, + [215834] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(11945), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11953), 1, + ACTIONS(12561), 1, + anon_sym_COMMA, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(11959), 1, + ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(11963), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, - anon_sym_GT_GT, - ACTIONS(11973), 1, + ACTIONS(12583), 1, + anon_sym_GT_EQ, + ACTIONS(12589), 1, anon_sym_QMARK, - ACTIONS(11975), 1, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + ACTIONS(12593), 1, anon_sym_bitor, - ACTIONS(11979), 1, + ACTIONS(12595), 1, anon_sym_bitand, - STATE(5759), 1, + ACTIONS(12605), 1, + anon_sym_COLON, + STATE(3874), 1, sym_argument_list, - STATE(5761), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(11103), 2, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11957), 2, + ACTIONS(12571), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11961), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12269), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(11965), 3, + ACTIONS(12585), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11967), 4, + ACTIONS(12581), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [215414] = 24, + [215928] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11953), 1, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(11959), 1, + ACTIONS(12334), 1, anon_sym_PIPE, - ACTIONS(11963), 1, + ACTIONS(12338), 1, anon_sym_AMP, - ACTIONS(11969), 1, + ACTIONS(12344), 1, anon_sym_LT_LT, - ACTIONS(11971), 1, + ACTIONS(12346), 1, anon_sym_GT_GT, - ACTIONS(11975), 1, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + ACTIONS(12352), 1, anon_sym_bitor, - ACTIONS(11979), 1, + ACTIONS(12354), 1, anon_sym_bitand, - STATE(5759), 1, + STATE(5741), 1, sym_argument_list, - STATE(5761), 1, + STATE(5917), 1, sym_subscript_argument_list, - ACTIONS(11103), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, + ACTIONS(12330), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11957), 2, + ACTIONS(12332), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11961), 2, + ACTIONS(12336), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11981), 2, + ACTIONS(12356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, + ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10125), 4, + ACTIONS(10475), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_GT2, - ACTIONS(11967), 4, + ACTIONS(12342), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [215502] = 10, + [216016] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - STATE(5762), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12613), 1, + anon_sym_SLASH, + ACTIONS(12619), 1, + anon_sym_PIPE, + ACTIONS(12623), 1, + anon_sym_AMP, + ACTIONS(12629), 1, + anon_sym_GT_EQ, + ACTIONS(12633), 1, + anon_sym_QMARK, + ACTIONS(12635), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12637), 1, + anon_sym_bitor, + ACTIONS(12639), 1, + anon_sym_bitand, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12033), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9244), 8, + ACTIONS(12607), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + ACTIONS(12609), 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(9246), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12611), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12615), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12617), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12621), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(12631), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(12625), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [215562] = 21, + ACTIONS(12627), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [216108] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9282), 1, - anon_sym_PIPE, - ACTIONS(10582), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11953), 1, + ACTIONS(11417), 1, + anon_sym_COMMA, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11963), 1, + ACTIONS(12235), 1, + anon_sym_PIPE, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, - anon_sym_GT_GT, - ACTIONS(11975), 1, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11979), 1, + ACTIONS(12251), 1, + anon_sym_bitor, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5759), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12641), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5761), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(11103), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11961), 2, + ACTIONS(12231), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11967), 4, + ACTIONS(12243), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 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, - [215644] = 20, + [216202] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9282), 1, - anon_sym_PIPE, - ACTIONS(10582), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(11953), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12561), 1, + anon_sym_COMMA, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(11963), 1, + ACTIONS(12573), 1, + anon_sym_PIPE, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, - anon_sym_GT_GT, - ACTIONS(11975), 1, + ACTIONS(12583), 1, + anon_sym_GT_EQ, + ACTIONS(12589), 1, + anon_sym_QMARK, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(11979), 1, + ACTIONS(12593), 1, + anon_sym_bitor, + ACTIONS(12595), 1, anon_sym_bitand, - STATE(5759), 1, + ACTIONS(12643), 1, + anon_sym_COLON, + STATE(3874), 1, sym_argument_list, - STATE(5761), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(11103), 2, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11967), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9284), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, anon_sym_or, + ACTIONS(12571), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12575), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_GT2, - [215724] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11953), 1, - anon_sym_SLASH, - ACTIONS(11969), 1, + ACTIONS(12585), 2, anon_sym_LT_LT, - ACTIONS(11971), 1, anon_sym_GT_GT, - ACTIONS(11975), 1, - anon_sym_LT_EQ_GT, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(9282), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11951), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11967), 4, + ACTIONS(12581), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 12, - anon_sym_DOT_DOT_DOT, + [216296] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(6821), 1, + anon_sym___attribute, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(11827), 1, + anon_sym_STAR, + ACTIONS(11829), 1, + anon_sym_AMP_AMP, + ACTIONS(11831), 1, + anon_sym_AMP, + STATE(5310), 1, + sym_parameter_list, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8920), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6420), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6823), 6, anon_sym_COMMA, - anon_sym_PIPE_PIPE, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [216370] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, + anon_sym_LT, + STATE(3552), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3735), 1, + sym_template_argument_list, + ACTIONS(6867), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7357), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(7359), 26, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, 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_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [216426] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(7347), 1, + anon_sym___attribute, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(11827), 1, + anon_sym_STAR, + ACTIONS(11829), 1, + anon_sym_AMP_AMP, + ACTIONS(11831), 1, + anon_sym_AMP, + STATE(5310), 1, + sym_parameter_list, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8922), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6420), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7345), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [215800] = 17, + anon_sym_requires, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [216500] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11953), 1, + ACTIONS(11417), 1, + anon_sym_COMMA, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, - anon_sym_GT_GT, - ACTIONS(11975), 1, + ACTIONS(12235), 1, + anon_sym_PIPE, + ACTIONS(12239), 1, + anon_sym_AMP, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - STATE(5759), 1, + ACTIONS(12251), 1, + anon_sym_bitor, + ACTIONS(12253), 1, + anon_sym_bitand, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12645), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - STATE(5761), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(9282), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(11103), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11967), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9284), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 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, - [215874] = 27, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [216594] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12195), 1, + ACTIONS(11417), 1, anon_sym_COMMA, - ACTIONS(12201), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12223), 1, - anon_sym_QMARK, - ACTIONS(12225), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(12271), 1, - anon_sym_COLON, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12647), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [215968] = 27, + [216688] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12195), 1, + ACTIONS(12561), 1, anon_sym_COMMA, - ACTIONS(12201), 1, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(12223), 1, + ACTIONS(12589), 1, anon_sym_QMARK, - ACTIONS(12225), 1, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12593), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12595), 1, anon_sym_bitand, - ACTIONS(12273), 1, + ACTIONS(12649), 1, anon_sym_COLON, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12571), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [216062] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11953), 1, - anon_sym_SLASH, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, - anon_sym_GT_GT, - ACTIONS(11975), 1, - anon_sym_LT_EQ_GT, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11951), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9282), 6, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12581), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 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, - [216134] = 7, + [216782] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11908), 1, - anon_sym_LPAREN2, - ACTIONS(11910), 1, - anon_sym_LBRACK, - STATE(2144), 1, - sym_parameter_list, - STATE(6543), 1, - sym__function_declarator_seq, - ACTIONS(9852), 11, + ACTIONS(6601), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6603), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -617731,9 +639463,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9850), 23, + ACTIONS(6596), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -617742,6 +639475,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, @@ -617755,247 +639489,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [216188] = 7, + [216830] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(11908), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11910), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(2144), 1, - sym_parameter_list, - STATE(6543), 1, - sym__function_declarator_seq, - ACTIONS(9856), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(11417), 1, + anon_sym_COMMA, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, + ACTIONS(12235), 1, anon_sym_PIPE, + ACTIONS(12239), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(12245), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(9854), 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_QMARK, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12251), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12253), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [216242] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - ACTIONS(10973), 1, - anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12651), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12033), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9252), 8, + ACTIONS(12225), 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(9254), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(12241), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [216302] = 27, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [216924] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11182), 1, - anon_sym_COMMA, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12334), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12338), 1, anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12352), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12354), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12275), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5741), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12330), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12332), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12336), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(10487), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(12342), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [216396] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(7005), 1, - anon_sym___attribute, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11461), 1, - anon_sym_STAR, - ACTIONS(11463), 1, - anon_sym_AMP_AMP, - ACTIONS(11465), 1, - anon_sym_AMP, - STATE(5216), 1, - sym_parameter_list, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8785), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7003), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [216470] = 10, + [217012] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9270), 8, + ACTIONS(9657), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -618004,7 +639645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9272), 21, + ACTIONS(9659), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -618026,30 +639667,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [216530] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [217070] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11908), 1, + ACTIONS(12257), 1, anon_sym_LPAREN2, - ACTIONS(11910), 1, + ACTIONS(12259), 1, anon_sym_LBRACK, - STATE(2144), 1, + STATE(2267), 1, sym_parameter_list, - STATE(6543), 1, + STATE(6617), 1, sym__function_declarator_seq, - ACTIONS(9834), 11, + ACTIONS(10206), 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(9832), 23, + ACTIONS(10204), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -618059,7 +639700,10 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -618072,353 +639716,366 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [216584] = 16, + [217124] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11429), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11474), 1, - anon_sym_STAR, - ACTIONS(11476), 1, - anon_sym_AMP_AMP, - ACTIONS(11478), 1, + ACTIONS(11315), 1, + anon_sym_DOT, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12561), 1, + anon_sym_COMMA, + ACTIONS(12567), 1, + anon_sym_SLASH, + ACTIONS(12573), 1, + anon_sym_PIPE, + ACTIONS(12577), 1, anon_sym_AMP, - STATE(4725), 1, - sym_parameter_list, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8740), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6995), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [216656] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(7001), 1, - anon_sym___attribute, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11461), 1, + ACTIONS(12583), 1, + anon_sym_GT_EQ, + ACTIONS(12589), 1, + anon_sym_QMARK, + ACTIONS(12591), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12593), 1, + anon_sym_bitor, + ACTIONS(12595), 1, + anon_sym_bitand, + ACTIONS(12653), 1, + anon_sym_COLON, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12563), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12565), 2, anon_sym_STAR, - ACTIONS(11463), 1, + anon_sym_PERCENT, + ACTIONS(12569), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12571), 2, anon_sym_AMP_AMP, - ACTIONS(11465), 1, - anon_sym_AMP, - STATE(5216), 1, - sym_parameter_list, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8784), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6655), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6999), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [216730] = 13, + anon_sym_and, + ACTIONS(12575), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12585), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12579), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12581), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [217218] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11953), 1, + ACTIONS(12328), 1, anon_sym_SLASH, - STATE(5759), 1, + ACTIONS(12334), 1, + anon_sym_PIPE, + ACTIONS(12338), 1, + anon_sym_AMP, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12350), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12352), 1, + anon_sym_bitor, + ACTIONS(12354), 1, + anon_sym_bitand, + STATE(5741), 1, sym_argument_list, - STATE(5761), 1, + STATE(5917), 1, sym_subscript_argument_list, - ACTIONS(11103), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11981), 2, + ACTIONS(12332), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12336), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9282), 7, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12342), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(9284), 17, + ACTIONS(9709), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_GT2, - [216796] = 27, + [217304] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11182), 1, - anon_sym_COMMA, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12277), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [216890] = 27, + ACTIONS(10540), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [217392] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12320), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12195), 1, - anon_sym_COMMA, - ACTIONS(12201), 1, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12334), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12338), 1, anon_sym_AMP, - ACTIONS(12217), 1, - anon_sym_GT_EQ, - ACTIONS(12223), 1, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12348), 1, anon_sym_QMARK, - ACTIONS(12225), 1, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12352), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12354), 1, anon_sym_bitand, - ACTIONS(12279), 1, - anon_sym_COLON, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5741), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12330), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12332), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12336), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12655), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12342), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [216984] = 15, + [217484] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11953), 1, + ACTIONS(12320), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(11969), 1, + ACTIONS(12334), 1, + anon_sym_PIPE, + ACTIONS(12338), 1, + anon_sym_AMP, + ACTIONS(12344), 1, anon_sym_LT_LT, - ACTIONS(11971), 1, + ACTIONS(12346), 1, anon_sym_GT_GT, - STATE(5759), 1, + ACTIONS(12348), 1, + anon_sym_QMARK, + ACTIONS(12350), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12352), 1, + anon_sym_bitor, + ACTIONS(12354), 1, + anon_sym_bitand, + STATE(5741), 1, sym_argument_list, - STATE(5761), 1, + STATE(5917), 1, sym_subscript_argument_list, - ACTIONS(11103), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11981), 2, + ACTIONS(12330), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12332), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12336), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9282), 6, + ACTIONS(12655), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(12340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12342), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [217576] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12273), 1, + anon_sym_LPAREN2, + ACTIONS(12275), 1, + anon_sym_LBRACK, + STATE(2249), 1, + sym_parameter_list, + STATE(6557), 1, + sym__function_declarator_seq, + ACTIONS(10202), 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(9284), 16, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(10200), 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -618427,152 +640084,227 @@ 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_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - [217054] = 24, + [217630] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(12003), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12655), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10125), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [217142] = 24, + [217722] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(12003), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12655), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(12241), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [217814] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12613), 1, + anon_sym_SLASH, + ACTIONS(12619), 1, + anon_sym_PIPE, + ACTIONS(12623), 1, + anon_sym_AMP, + ACTIONS(12629), 1, + anon_sym_GT_EQ, + ACTIONS(12635), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12637), 1, + anon_sym_bitor, + ACTIONS(12639), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12609), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12611), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12615), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12617), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12621), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12631), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12625), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12627), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10178), 4, + ACTIONS(10437), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, - [217230] = 9, + [217902] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9290), 8, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9673), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -618581,7 +640313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9292), 23, + ACTIONS(9675), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -618603,231 +640335,183 @@ 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, - [217288] = 27, + [217962] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11182), 1, - anon_sym_COMMA, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12613), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12619), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12623), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12629), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12633), 1, + anon_sym_QMARK, + ACTIONS(12635), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12637), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12639), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12281), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(9828), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12615), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12617), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12621), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12631), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12625), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12627), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [217382] = 26, + [218054] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12657), 1, + anon_sym_COMMA, + ACTIONS(12659), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12283), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [217474] = 16, + [218148] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11429), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11474), 1, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12613), 1, + anon_sym_SLASH, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12611), 2, anon_sym_STAR, - ACTIONS(11476), 1, - anon_sym_AMP_AMP, - ACTIONS(11478), 1, - anon_sym_AMP, - STATE(4725), 1, - sym_parameter_list, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8741), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6791), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6999), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [217546] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11908), 1, - anon_sym_LPAREN2, - ACTIONS(11910), 1, - anon_sym_LBRACK, - STATE(2144), 1, - sym_parameter_list, - STATE(6543), 1, - sym__function_declarator_seq, - ACTIONS(9840), 11, + anon_sym_PERCENT, + ACTIONS(9707), 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, - anon_sym_DOT, - ACTIONS(9838), 23, + ACTIONS(9709), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -618836,747 +640520,467 @@ 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [217600] = 27, + [218212] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11182), 1, - anon_sym_COMMA, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12613), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12619), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12623), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12629), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12635), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12637), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12639), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12285), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12617), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12621), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12631), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12625), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12627), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [217694] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(7005), 1, - anon_sym___attribute, - ACTIONS(7784), 1, - anon_sym_const, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11480), 1, - anon_sym_STAR, - ACTIONS(11482), 1, - anon_sym_AMP_AMP, - ACTIONS(11484), 1, - anon_sym_AMP, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(5221), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8813), 1, - sym__abstract_declarator, - ACTIONS(7786), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2399), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7003), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7778), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [217768] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11908), 1, - anon_sym_LPAREN2, - ACTIONS(11910), 1, - anon_sym_LBRACK, - STATE(2144), 1, - sym_parameter_list, - STATE(6543), 1, - sym__function_declarator_seq, - ACTIONS(9844), 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(9842), 23, + ACTIONS(9709), 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_RBRACK_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [217822] = 27, + [218298] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12613), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12619), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12623), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12629), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12635), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12637), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12639), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12287), 1, - anon_sym_COMMA, - ACTIONS(12289), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12621), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12631), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12625), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12627), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [217916] = 27, + ACTIONS(9709), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + [218382] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12195), 1, - anon_sym_COMMA, - ACTIONS(12201), 1, - anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(9707), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12613), 1, + anon_sym_SLASH, + ACTIONS(12623), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12629), 1, anon_sym_GT_EQ, - ACTIONS(12223), 1, - anon_sym_QMARK, - ACTIONS(12225), 1, + ACTIONS(12635), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, - anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12639), 1, anon_sym_bitand, - ACTIONS(12291), 1, - anon_sym_COLON, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12205), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12621), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12631), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12625), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [218010] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11908), 1, - anon_sym_LPAREN2, - ACTIONS(11910), 1, - anon_sym_LBRACK, - STATE(2144), 1, - sym_parameter_list, - STATE(6543), 1, - sym__function_declarator_seq, - ACTIONS(9848), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12627), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(9846), 23, + ACTIONS(9709), 9, 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_RBRACK_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [218064] = 26, + [218464] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11945), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11953), 1, - anon_sym_SLASH, - ACTIONS(11959), 1, + ACTIONS(9707), 1, anon_sym_PIPE, - ACTIONS(11963), 1, + ACTIONS(12613), 1, + anon_sym_SLASH, + ACTIONS(12623), 1, anon_sym_AMP, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, - anon_sym_GT_GT, - ACTIONS(11973), 1, - anon_sym_QMARK, - ACTIONS(11975), 1, + ACTIONS(12629), 1, + anon_sym_GT_EQ, + ACTIONS(12635), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, - anon_sym_bitor, - ACTIONS(11979), 1, + ACTIONS(12639), 1, anon_sym_bitand, - STATE(5759), 1, + STATE(3874), 1, sym_argument_list, - STATE(5761), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10198), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(11103), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11957), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11961), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, + ACTIONS(12631), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12625), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11967), 4, + ACTIONS(12627), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [218156] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(6993), 1, - anon_sym___attribute, - ACTIONS(7784), 1, - anon_sym_const, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11480), 1, - anon_sym_STAR, - ACTIONS(11482), 1, - anon_sym_AMP_AMP, - ACTIONS(11484), 1, - anon_sym_AMP, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(5221), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8799), 1, - sym__abstract_declarator, - ACTIONS(7786), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6727), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6991), 6, + ACTIONS(9709), 11, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7778), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [218230] = 26, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + [218544] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11945), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11953), 1, + ACTIONS(12613), 1, anon_sym_SLASH, - ACTIONS(11959), 1, - anon_sym_PIPE, - ACTIONS(11963), 1, - anon_sym_AMP, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, - anon_sym_GT_GT, - ACTIONS(11973), 1, - anon_sym_QMARK, - ACTIONS(11975), 1, + ACTIONS(12629), 1, + anon_sym_GT_EQ, + ACTIONS(12635), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, - anon_sym_bitor, - ACTIONS(11979), 1, - anon_sym_bitand, - STATE(5759), 1, + STATE(3874), 1, sym_argument_list, - STATE(5761), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10190), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(11103), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(9707), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11957), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11961), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, + ACTIONS(12631), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12625), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11967), 4, + ACTIONS(12627), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [218322] = 7, + ACTIONS(9709), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [218620] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(11861), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11863), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(2180), 1, - sym_parameter_list, - STATE(6587), 1, - sym__function_declarator_seq, - ACTIONS(9840), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12613), 1, anon_sym_SLASH, + ACTIONS(12629), 1, + anon_sym_GT_EQ, + ACTIONS(12635), 1, + anon_sym_LT_EQ_GT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9707), 2, anon_sym_PIPE, anon_sym_AMP, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12609), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12611), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12631), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12627), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(9838), 25, + ACTIONS(9709), 15, 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_RBRACK_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_DOT_STAR, - anon_sym_DASH_GT, - [218376] = 27, + [218694] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11182), 1, - anon_sym_COMMA, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12613), 1, anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, - anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12635), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12096), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12631), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [218470] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11861), 1, - anon_sym_LPAREN2, - ACTIONS(11863), 1, - anon_sym_LBRACK, - STATE(2180), 1, - sym_parameter_list, - STATE(6587), 1, - sym__function_declarator_seq, - ACTIONS(9844), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(9707), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(9842), 25, + ACTIONS(9709), 16, 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_RBRACK_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_DOT_STAR, - anon_sym_DASH_GT, - [218524] = 7, + [218764] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11908), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11910), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(2144), 1, - sym_parameter_list, - STATE(6543), 1, - sym__function_declarator_seq, - ACTIONS(9864), 11, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12613), 1, + anon_sym_SLASH, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12609), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(12611), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9707), 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(9862), 23, + ACTIONS(9709), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -619585,419 +640989,405 @@ 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [218578] = 24, + [218830] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(12003), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12561), 1, + anon_sym_COMMA, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(12027), 1, + ACTIONS(12589), 1, + anon_sym_QMARK, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12593), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12595), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12661), 1, + anon_sym_COLON, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12571), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12581), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [218924] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12613), 1, + anon_sym_SLASH, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12609), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12611), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12631), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9707), 5, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9342), 4, + ACTIONS(9709), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK, + anon_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_RBRACK, anon_sym_QMARK, - [218666] = 27, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [218992] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11182), 1, - anon_sym_COMMA, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12613), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12619), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12623), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12629), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12635), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12637), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12639), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12293), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12615), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12617), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12621), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12631), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12625), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12627), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [218760] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(7009), 1, - anon_sym___attribute, - ACTIONS(7784), 1, - anon_sym_const, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11480), 1, - anon_sym_STAR, - ACTIONS(11482), 1, - anon_sym_AMP_AMP, - ACTIONS(11484), 1, - anon_sym_AMP, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(5221), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8797), 1, - sym__abstract_declarator, - ACTIONS(7786), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2399), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7007), 6, + ACTIONS(10475), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7778), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [218834] = 27, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + [219080] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12613), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12619), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12623), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12629), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12633), 1, + anon_sym_QMARK, + ACTIONS(12635), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12637), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12639), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12295), 1, - anon_sym_COMMA, - ACTIONS(12297), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(10479), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12615), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12617), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12621), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12631), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12625), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12627), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [218928] = 27, + [219172] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12613), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12619), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12623), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12629), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12635), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12637), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12639), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12299), 1, - anon_sym_COMMA, - ACTIONS(12301), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12615), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12617), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12621), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12631), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12625), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12627), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [219022] = 26, + ACTIONS(10487), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + [219260] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12613), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12619), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12623), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12629), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12633), 1, + anon_sym_QMARK, + ACTIONS(12635), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12637), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12639), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(10491), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12615), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12617), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12621), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12631), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12269), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(11881), 3, + ACTIONS(12625), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12627), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [219114] = 5, + [219352] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11925), 1, + ACTIONS(12285), 1, anon_sym_LBRACK, - STATE(6819), 1, + STATE(6940), 1, sym_new_declarator, - ACTIONS(9173), 11, + ACTIONS(9535), 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(9175), 25, + ACTIONS(9537), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -620008,8 +641398,11 @@ 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_LBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -620022,42 +641415,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [219164] = 12, + [219402] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, + anon_sym_DOT, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9677), 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(9679), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [219462] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(11327), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - STATE(5762), 1, + ACTIONS(12376), 1, + anon_sym_PIPE, + ACTIONS(12380), 1, + anon_sym_AMP, + ACTIONS(12386), 1, + anon_sym_GT_EQ, + ACTIONS(12394), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12396), 1, + anon_sym_bitor, + ACTIONS(12398), 1, + anon_sym_bitand, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12001), 2, + ACTIONS(12366), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12033), 2, + ACTIONS(12372), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12374), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12378), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9282), 7, + ACTIONS(12382), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12384), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10544), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [219550] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(11327), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, + anon_sym_DOT, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9681), 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(9284), 19, + ACTIONS(9683), 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, @@ -620075,363 +641576,425 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [219228] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [219608] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11182), 1, + ACTIONS(11417), 1, anon_sym_COMMA, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12303), 1, + ACTIONS(12663), 1, anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [219322] = 26, + [219702] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12269), 2, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12665), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(11881), 3, + anon_sym_RBRACK, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [219414] = 27, + [219794] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12561), 1, + anon_sym_COMMA, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12589), 1, + anon_sym_QMARK, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12593), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12595), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12305), 1, - anon_sym_COMMA, - ACTIONS(12307), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12667), 1, + anon_sym_COLON, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12571), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12581), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [219508] = 26, + [219888] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(11417), 1, + anon_sym_COMMA, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12235), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12243), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12247), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12253), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12255), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12257), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12259), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(12261), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12669), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12231), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12233), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, + anon_sym_AMP_AMP, + anon_sym_and, ACTIONS(12237), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12239), 2, + ACTIONS(12241), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [219982] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(11327), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, + anon_sym_DOT, + ACTIONS(12370), 1, + anon_sym_SLASH, + ACTIONS(12376), 1, + anon_sym_PIPE, + ACTIONS(12380), 1, + anon_sym_AMP, + ACTIONS(12386), 1, + anon_sym_GT_EQ, + ACTIONS(12394), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12396), 1, + anon_sym_bitor, + ACTIONS(12398), 1, + anon_sym_bitand, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12366), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12368), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12241), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12245), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12309), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - ACTIONS(12249), 3, + ACTIONS(12388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12251), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [219600] = 27, + ACTIONS(9597), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [220070] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11182), 1, - anon_sym_COMMA, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12311), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12671), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [219694] = 7, + [220162] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11908), 1, + ACTIONS(6883), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9236), 1, anon_sym_LPAREN2, - ACTIONS(11910), 1, + ACTIONS(9239), 1, anon_sym_LBRACK, - STATE(2144), 1, - sym_parameter_list, - STATE(6543), 1, - sym__function_declarator_seq, - ACTIONS(9860), 11, + ACTIONS(5645), 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(9858), 23, + ACTIONS(5638), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -620441,7 +642004,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -620454,102 +642021,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [219748] = 26, + [220214] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(11417), 1, + anon_sym_COMMA, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12673), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12313), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [219840] = 10, + [220308] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(12273), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(12275), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - STATE(5762), 1, - sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9282), 8, + STATE(2249), 1, + sym_parameter_list, + STATE(6557), 1, + sym__function_declarator_seq, + ACTIONS(10174), 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(9284), 21, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(10172), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -620559,10 +642121,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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -620571,148 +642130,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [219900] = 23, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [220362] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(12003), 1, + ACTIONS(12362), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12027), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11634), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12007), 2, + ACTIONS(12372), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_or, - [219986] = 27, + [220454] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11182), 1, - anon_sym_COMMA, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12315), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [220080] = 7, + ACTIONS(10475), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [220542] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11861), 1, + ACTIONS(12257), 1, anon_sym_LPAREN2, - ACTIONS(11863), 1, + ACTIONS(12259), 1, anon_sym_LBRACK, - STATE(2180), 1, + STATE(2267), 1, sym_parameter_list, - STATE(6587), 1, + STATE(6617), 1, sym__function_declarator_seq, - ACTIONS(9864), 9, + ACTIONS(10186), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -620722,7 +642286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9862), 25, + ACTIONS(10184), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -620748,555 +642312,640 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [220134] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11474), 1, - anon_sym_STAR, - ACTIONS(11476), 1, - anon_sym_AMP_AMP, - ACTIONS(11478), 1, - anon_sym_AMP, - STATE(4725), 1, - sym_parameter_list, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8816), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6658), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6991), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [220206] = 27, + [220596] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12317), 1, + ACTIONS(12675), 1, anon_sym_COMMA, - ACTIONS(12319), 1, + ACTIONS(12677), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [220300] = 27, + [220690] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12195), 1, + ACTIONS(12561), 1, anon_sym_COMMA, - ACTIONS(12201), 1, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(12223), 1, + ACTIONS(12589), 1, anon_sym_QMARK, - ACTIONS(12225), 1, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12593), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12595), 1, anon_sym_bitand, - ACTIONS(12321), 1, + ACTIONS(12679), 1, anon_sym_COLON, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12571), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12581), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [220394] = 7, + [220784] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(11861), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11863), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(2180), 1, - sym_parameter_list, - STATE(6587), 1, - sym__function_declarator_seq, - ACTIONS(9860), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, + ACTIONS(12235), 1, anon_sym_PIPE, + ACTIONS(12239), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(9858), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12251), 1, + anon_sym_bitor, + ACTIONS(12253), 1, + anon_sym_bitand, + ACTIONS(12255), 1, + anon_sym_QMARK, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12528), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [220876] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, + anon_sym_SLASH, + ACTIONS(12235), 1, + anon_sym_PIPE, + ACTIONS(12239), 1, + anon_sym_AMP, + ACTIONS(12245), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12251), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12253), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(12255), 1, + anon_sym_QMARK, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [220448] = 27, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12227), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12533), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(12241), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [220968] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12195), 1, - anon_sym_COMMA, - ACTIONS(12201), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12223), 1, - anon_sym_QMARK, - ACTIONS(12225), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(12323), 1, - anon_sym_COLON, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12681), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [220542] = 27, + [221060] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12195), 1, - anon_sym_COMMA, - ACTIONS(12201), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12223), 1, - anon_sym_QMARK, - ACTIONS(12225), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(12325), 1, - anon_sym_COLON, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12683), 1, + anon_sym_COMMA, + ACTIONS(12685), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [220636] = 26, + [221154] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(7349), 1, + anon_sym___attribute, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(11827), 1, + anon_sym_STAR, + ACTIONS(11829), 1, + anon_sym_AMP_AMP, + ACTIONS(11831), 1, + anon_sym_AMP, + STATE(5310), 1, + sym_parameter_list, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8946), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6420), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7351), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [221228] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11945), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11953), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11959), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11963), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, - anon_sym_GT_GT, - ACTIONS(11973), 1, - anon_sym_QMARK, - ACTIONS(11975), 1, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11979), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5759), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + STATE(3874), 1, sym_argument_list, - STATE(5761), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(11103), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12013), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11957), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11961), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12313), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(11965), 3, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11967), 4, + ACTIONS(12243), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [220728] = 27, + [221320] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11182), 1, - anon_sym_COMMA, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12327), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12687), 1, + anon_sym_COMMA, + ACTIONS(12689), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [220822] = 17, + [221414] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(6495), 1, + ACTIONS(7341), 1, anon_sym___attribute, - ACTIONS(11429), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(11431), 1, + ACTIONS(11795), 1, anon_sym_const, - ACTIONS(11461), 1, + ACTIONS(11827), 1, anon_sym_STAR, - ACTIONS(11463), 1, + ACTIONS(11829), 1, anon_sym_AMP_AMP, - ACTIONS(11465), 1, + ACTIONS(11831), 1, anon_sym_AMP, - STATE(5216), 1, + STATE(5310), 1, sym_parameter_list, - STATE(6485), 1, + STATE(6707), 1, sym_alignas_qualifier, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(8768), 1, + STATE(8905), 1, sym__abstract_declarator, - ACTIONS(11433), 2, + ACTIONS(11797), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6280), 2, + STATE(6842), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6497), 6, + ACTIONS(7343), 6, anon_sym_COMMA, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(11421), 12, + ACTIONS(11785), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -621309,95 +642958,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [220896] = 27, + [221488] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + STATE(5741), 1, + sym_argument_list, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9715), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(11885), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(11889), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(9717), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(11893), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12329), 1, + anon_sym_not_eq, + anon_sym_GT2, + [221548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7291), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7293), 35, anon_sym_COMMA, - ACTIONS(12331), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [221594] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(11327), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, + anon_sym_DOT, + ACTIONS(12362), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12370), 1, + anon_sym_SLASH, + ACTIONS(12376), 1, + anon_sym_PIPE, + ACTIONS(12380), 1, + anon_sym_AMP, + ACTIONS(12386), 1, + anon_sym_GT_EQ, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12396), 1, + anon_sym_bitor, + ACTIONS(12398), 1, + anon_sym_bitand, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12691), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [220990] = 6, + [221686] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6515), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8835), 1, - anon_sym_LPAREN2, - ACTIONS(8838), 1, + ACTIONS(12281), 1, anon_sym_LBRACK, - ACTIONS(5260), 9, + STATE(7175), 1, + sym_new_declarator, + ACTIONS(9535), 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(5253), 26, + ACTIONS(9537), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -621405,11 +643147,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_LBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -621422,274 +643161,409 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [221042] = 26, + anon_sym_GT2, + [221736] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9707), 1, + anon_sym_PIPE, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12338), 1, anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12354), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5741), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12336), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12333), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(11881), 3, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12342), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [221134] = 22, + ACTIONS(9709), 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, + [221818] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(12003), 1, + ACTIONS(12362), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12027), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12011), 2, + ACTIONS(12372), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12374), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12665), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - [221218] = 10, + [221910] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11315), 1, anon_sym_DOT, - STATE(5759), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12561), 1, + anon_sym_COMMA, + ACTIONS(12567), 1, + anon_sym_SLASH, + ACTIONS(12573), 1, + anon_sym_PIPE, + ACTIONS(12577), 1, + anon_sym_AMP, + ACTIONS(12583), 1, + anon_sym_GT_EQ, + ACTIONS(12589), 1, + anon_sym_QMARK, + ACTIONS(12591), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12593), 1, + anon_sym_bitor, + ACTIONS(12595), 1, + anon_sym_bitand, + ACTIONS(12693), 1, + anon_sym_COLON, + STATE(3874), 1, sym_argument_list, - STATE(5761), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(11103), 2, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11981), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9282), 10, + ACTIONS(12563), 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(9284), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12571), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12575), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12585), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12579), 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, - [221278] = 27, + ACTIONS(12581), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [222004] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12195), 1, - anon_sym_COMMA, - ACTIONS(12201), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12223), 1, - anon_sym_QMARK, - ACTIONS(12225), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(12335), 1, - anon_sym_COLON, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12695), 1, + anon_sym_COMMA, + ACTIONS(12697), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [221372] = 10, + [222098] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(6821), 1, + anon_sym___attribute, + ACTIONS(8123), 1, + anon_sym_const, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11838), 1, + anon_sym_STAR, + ACTIONS(11840), 1, + anon_sym_AMP_AMP, + ACTIONS(11842), 1, + anon_sym_AMP, + STATE(2726), 1, + sym_alignas_qualifier, + STATE(5313), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8942), 1, + sym__abstract_declarator, + ACTIONS(8125), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2488), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6823), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8117), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [222172] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(7393), 1, + anon_sym___attribute, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(11827), 1, + anon_sym_STAR, + ACTIONS(11829), 1, + anon_sym_AMP_AMP, + ACTIONS(11831), 1, + anon_sym_AMP, + STATE(5310), 1, + sym_parameter_list, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8899), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6822), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7391), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [222246] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + ACTIONS(11319), 1, + anon_sym_LBRACK, + ACTIONS(11323), 1, anon_sym_DOT, - STATE(5759), 1, + ACTIONS(12328), 1, + anon_sym_SLASH, + STATE(5741), 1, sym_argument_list, - STATE(5761), 1, + STATE(5917), 1, sym_subscript_argument_list, - ACTIONS(11103), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11981), 2, + ACTIONS(12326), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9244), 10, + ACTIONS(9707), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -621697,11 +643571,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - ACTIONS(9246), 19, + ACTIONS(9709), 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, @@ -621717,525 +643589,418 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_GT2, - [221432] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6233), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6235), 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(6228), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [221480] = 26, + [222310] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10190), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12699), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [221572] = 26, + [222402] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12701), 1, + anon_sym_COMMA, + ACTIONS(12703), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12337), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [221664] = 24, + [222496] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11953), 1, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(11959), 1, + ACTIONS(12334), 1, anon_sym_PIPE, - ACTIONS(11963), 1, + ACTIONS(12338), 1, anon_sym_AMP, - ACTIONS(11969), 1, + ACTIONS(12344), 1, anon_sym_LT_LT, - ACTIONS(11971), 1, + ACTIONS(12346), 1, anon_sym_GT_GT, - ACTIONS(11975), 1, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + ACTIONS(12352), 1, anon_sym_bitor, - ACTIONS(11979), 1, + ACTIONS(12354), 1, anon_sym_bitand, - STATE(5759), 1, + STATE(5741), 1, sym_argument_list, - STATE(5761), 1, + STATE(5917), 1, sym_subscript_argument_list, - ACTIONS(11103), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, + ACTIONS(12330), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11957), 2, + ACTIONS(12332), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11961), 2, + ACTIONS(12336), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11981), 2, + ACTIONS(12356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, + ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9342), 4, + ACTIONS(10544), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_GT2, - ACTIONS(11967), 4, + ACTIONS(12342), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [221752] = 21, + [222584] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9282), 1, - anon_sym_PIPE, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - ACTIONS(10973), 1, - anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - ACTIONS(12003), 1, - anon_sym_SLASH, - ACTIONS(12013), 1, - anon_sym_AMP, - ACTIONS(12019), 1, - anon_sym_GT_EQ, - ACTIONS(12027), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12031), 1, - anon_sym_bitand, - STATE(5762), 1, - sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11999), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12001), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12011), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12017), 3, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(12551), 1, anon_sym_LT, - ACTIONS(9284), 9, + STATE(4054), 1, + sym_template_argument_list, + ACTIONS(6565), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6572), 31, 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, - [221834] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11953), 1, - anon_sym_SLASH, - ACTIONS(11959), 1, - anon_sym_PIPE, - ACTIONS(11963), 1, - anon_sym_AMP, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, - anon_sym_GT_GT, - ACTIONS(11975), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, - anon_sym_bitor, - ACTIONS(11979), 1, - anon_sym_bitand, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11951), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11957), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11961), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11967), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9284), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [221920] = 26, + anon_sym_requires, + [222636] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12705), 1, + anon_sym_COMMA, + ACTIONS(12707), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11244), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [222012] = 4, + [222730] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6233), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6235), 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(6228), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6461), 1, anon_sym_LPAREN2, + ACTIONS(7353), 1, + anon_sym___attribute, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(11827), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11829), 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_DOT_STAR, - anon_sym_DASH_GT, + ACTIONS(11831), 1, + anon_sym_AMP, + STATE(5310), 1, + sym_parameter_list, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8906), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6420), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7355), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [222060] = 17, + anon_sym_requires, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [222804] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(6997), 1, + ACTIONS(7347), 1, anon_sym___attribute, - ACTIONS(7784), 1, + ACTIONS(8123), 1, anon_sym_const, - ACTIONS(11429), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(11480), 1, + ACTIONS(11838), 1, anon_sym_STAR, - ACTIONS(11482), 1, + ACTIONS(11840), 1, anon_sym_AMP_AMP, - ACTIONS(11484), 1, + ACTIONS(11842), 1, anon_sym_AMP, - STATE(2592), 1, + STATE(2726), 1, sym_alignas_qualifier, - STATE(5221), 1, + STATE(5313), 1, sym_parameter_list, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(8804), 1, + STATE(8944), 1, sym__abstract_declarator, - ACTIONS(7786), 2, + ACTIONS(8125), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2399), 2, + STATE(2488), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6995), 6, + ACTIONS(7345), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(7778), 12, + ACTIONS(8117), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -622248,401 +644013,417 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [222134] = 24, + [222878] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(12235), 1, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(12243), 1, + ACTIONS(12334), 1, anon_sym_PIPE, - ACTIONS(12247), 1, + ACTIONS(12338), 1, anon_sym_AMP, - ACTIONS(12253), 1, - anon_sym_GT_EQ, - ACTIONS(12255), 1, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(12257), 1, + ACTIONS(12352), 1, anon_sym_bitor, - ACTIONS(12259), 1, + ACTIONS(12354), 1, anon_sym_bitand, - STATE(3784), 1, + STATE(5741), 1, + sym_argument_list, + STATE(5917), 1, sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12324), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12326), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12330), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12332), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12336), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10437), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(12342), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [222966] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12613), 1, + anon_sym_SLASH, + ACTIONS(12619), 1, + anon_sym_PIPE, + ACTIONS(12623), 1, + anon_sym_AMP, + ACTIONS(12629), 1, + anon_sym_GT_EQ, + ACTIONS(12635), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12637), 1, + anon_sym_bitor, + ACTIONS(12639), 1, + anon_sym_bitand, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12231), 2, + ACTIONS(12609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12233), 2, + ACTIONS(12611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12239), 2, + ACTIONS(12615), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12241), 2, + ACTIONS(12617), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12245), 2, + ACTIONS(12621), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12249), 3, + ACTIONS(12631), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12625), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12251), 3, + ACTIONS(12627), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10091), 4, + ACTIONS(10540), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, anon_sym_QMARK, - [222222] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - STATE(3464), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3601), 1, - sym_template_argument_list, - ACTIONS(6503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7017), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(7019), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [222278] = 24, + [223054] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(12235), 1, + ACTIONS(12613), 1, anon_sym_SLASH, - ACTIONS(12243), 1, + ACTIONS(12619), 1, anon_sym_PIPE, - ACTIONS(12247), 1, + ACTIONS(12623), 1, anon_sym_AMP, - ACTIONS(12253), 1, + ACTIONS(12629), 1, anon_sym_GT_EQ, - ACTIONS(12255), 1, + ACTIONS(12635), 1, anon_sym_LT_EQ_GT, - ACTIONS(12257), 1, + ACTIONS(12637), 1, anon_sym_bitor, - ACTIONS(12259), 1, + ACTIONS(12639), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12231), 2, + ACTIONS(12609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12233), 2, + ACTIONS(12611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12239), 2, + ACTIONS(12615), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12241), 2, + ACTIONS(12617), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12245), 2, + ACTIONS(12621), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12249), 3, + ACTIONS(12631), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12625), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12251), 3, + ACTIONS(12627), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10125), 4, + ACTIONS(10544), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, anon_sym_QMARK, - [222366] = 24, + [223142] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(12235), 1, + ACTIONS(12613), 1, anon_sym_SLASH, - ACTIONS(12243), 1, + ACTIONS(12619), 1, anon_sym_PIPE, - ACTIONS(12247), 1, + ACTIONS(12623), 1, anon_sym_AMP, - ACTIONS(12253), 1, + ACTIONS(12629), 1, anon_sym_GT_EQ, - ACTIONS(12255), 1, + ACTIONS(12635), 1, anon_sym_LT_EQ_GT, - ACTIONS(12257), 1, + ACTIONS(12637), 1, anon_sym_bitor, - ACTIONS(12259), 1, + ACTIONS(12639), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12231), 2, + ACTIONS(12609), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12233), 2, + ACTIONS(12611), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12239), 2, + ACTIONS(12615), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12241), 2, + ACTIONS(12617), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12245), 2, + ACTIONS(12621), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12249), 3, + ACTIONS(12631), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12625), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12251), 3, + ACTIONS(12627), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9342), 4, + ACTIONS(9597), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, anon_sym_QMARK, - [222454] = 24, + [223230] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(12201), 1, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(12225), 1, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12593), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12595), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12571), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12581), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10178), 4, + ACTIONS(10437), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_QMARK, - [222542] = 26, + [223318] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12201), 1, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(12223), 1, + ACTIONS(12589), 1, anon_sym_QMARK, - ACTIONS(12225), 1, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12593), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12595), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9438), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9828), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(10971), 2, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12571), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12581), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [222634] = 12, + [223410] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(12201), 1, + ACTIONS(12567), 1, anon_sym_SLASH, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12199), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9282), 7, + ACTIONS(9707), 7, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, @@ -622650,7 +644431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 19, + ACTIONS(9709), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -622670,26 +644451,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [222698] = 10, + [223474] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11315), 1, anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9282), 8, + ACTIONS(9707), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -622698,7 +644479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 21, + ACTIONS(9709), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -622720,123 +644501,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [222758] = 23, + [223534] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(12201), 1, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(12225), 1, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12593), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12595), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12205), 2, + ACTIONS(12571), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12581), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 6, + ACTIONS(9709), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_COLON, anon_sym_QMARK, anon_sym_or, - [222844] = 22, + [223620] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(12201), 1, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(12225), 1, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12593), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12595), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12209), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12581), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 8, + ACTIONS(9709), 8, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -622845,58 +644626,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_or, anon_sym_and, - [222928] = 21, + [223704] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9282), 1, + ACTIONS(9707), 1, anon_sym_PIPE, - ACTIONS(10969), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(12201), 1, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(12211), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(12225), 1, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(12229), 1, + ACTIONS(12595), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12209), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12581), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 9, + ACTIONS(9709), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -622906,55 +644687,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_bitor, - [223010] = 20, + [223786] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9282), 1, + ACTIONS(9707), 1, anon_sym_PIPE, - ACTIONS(10969), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(12201), 1, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(12211), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(12225), 1, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(12229), 1, + ACTIONS(12595), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12219), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12581), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 11, + ACTIONS(9709), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -622966,52 +644747,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_bitor, anon_sym_xor, - [223090] = 18, + [223866] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(12201), 1, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(12217), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(12225), 1, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9282), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9707), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(10971), 2, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12219), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12581), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 12, + ACTIONS(9709), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -623024,48 +644805,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_xor, anon_sym_bitand, - [223166] = 17, + [223942] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(12201), 1, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(12217), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(12225), 1, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9282), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9707), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(10971), 2, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12219), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12215), 3, + ACTIONS(12581), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 15, + ACTIONS(9709), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -623081,45 +644862,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [223240] = 15, + [224016] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11315), 1, + anon_sym_DOT, + ACTIONS(12567), 1, + anon_sym_SLASH, + ACTIONS(12591), 1, + anon_sym_LT_EQ_GT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12563), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12565), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12585), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9707), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [224086] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(11315), 1, + anon_sym_DOT, + ACTIONS(12567), 1, + anon_sym_SLASH, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12563), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12565), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9707), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [224152] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(12201), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12561), 1, + anon_sym_COMMA, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(12225), 1, + ACTIONS(12573), 1, + anon_sym_PIPE, + ACTIONS(12577), 1, + anon_sym_AMP, + ACTIONS(12583), 1, + anon_sym_GT_EQ, + ACTIONS(12589), 1, + anon_sym_QMARK, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - STATE(3784), 1, + ACTIONS(12593), 1, + anon_sym_bitor, + ACTIONS(12595), 1, + anon_sym_bitand, + ACTIONS(12709), 1, + anon_sym_COLON, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12563), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12565), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12569), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12571), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12575), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12585), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12579), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12581), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [224246] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(11315), 1, + anon_sym_DOT, + ACTIONS(12567), 1, + anon_sym_SLASH, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12219), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9282), 5, + ACTIONS(9707), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 16, + ACTIONS(9709), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -623130,57 +645084,168 @@ static const uint16_t ts_small_parse_table[] = { 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, - [223310] = 13, + [224314] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(12201), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12404), 1, + anon_sym_COLON, + ACTIONS(12561), 1, + anon_sym_COMMA, + ACTIONS(12567), 1, anon_sym_SLASH, - STATE(3784), 1, + ACTIONS(12573), 1, + anon_sym_PIPE, + ACTIONS(12577), 1, + anon_sym_AMP, + ACTIONS(12583), 1, + anon_sym_GT_EQ, + ACTIONS(12589), 1, + anon_sym_QMARK, + ACTIONS(12591), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12593), 1, + anon_sym_bitor, + ACTIONS(12595), 1, + anon_sym_bitand, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12563), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12565), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12569), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12571), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12575), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12585), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12579), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12581), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [224408] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(11315), 1, + anon_sym_DOT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9715), 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(9717), 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_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, + [224468] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + ACTIONS(11319), 1, + anon_sym_LBRACK, + ACTIONS(11323), 1, + anon_sym_DOT, + STATE(5741), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(9681), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9282), 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(9284), 19, + anon_sym_GT_GT, + ACTIONS(9683), 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_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -623189,450 +645254,482 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [223376] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_GT2, + [224526] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12195), 1, - anon_sym_COMMA, - ACTIONS(12201), 1, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(12223), 1, - anon_sym_QMARK, - ACTIONS(12225), 1, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12593), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12595), 1, anon_sym_bitand, - ACTIONS(12339), 1, - anon_sym_COLON, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12571), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12581), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [223470] = 14, + ACTIONS(10475), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [224614] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(12201), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12567), 1, anon_sym_SLASH, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12573), 1, + anon_sym_PIPE, + ACTIONS(12577), 1, + anon_sym_AMP, + ACTIONS(12583), 1, + anon_sym_GT_EQ, + ACTIONS(12589), 1, + anon_sym_QMARK, + ACTIONS(12591), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12593), 1, + anon_sym_bitor, + ACTIONS(12595), 1, + anon_sym_bitand, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(10479), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12219), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9282), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9284), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12571), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12575), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12585), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12579), 3, 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, - [223538] = 27, + ACTIONS(12581), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [224706] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12128), 1, - anon_sym_COLON, - ACTIONS(12195), 1, - anon_sym_COMMA, - ACTIONS(12201), 1, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(12223), 1, - anon_sym_QMARK, - ACTIONS(12225), 1, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12593), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12595), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12571), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12581), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [223632] = 10, + ACTIONS(10487), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [224794] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11315), 1, anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12567), 1, + anon_sym_SLASH, + ACTIONS(12573), 1, + anon_sym_PIPE, + ACTIONS(12577), 1, + anon_sym_AMP, + ACTIONS(12583), 1, + anon_sym_GT_EQ, + ACTIONS(12589), 1, + anon_sym_QMARK, + ACTIONS(12591), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12593), 1, + anon_sym_bitor, + ACTIONS(12595), 1, + anon_sym_bitand, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(10491), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9270), 8, + ACTIONS(12563), 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(9272), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12571), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12575), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(12585), 2, 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, + ACTIONS(12579), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [223692] = 24, + ACTIONS(12581), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [224886] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(12201), 1, + ACTIONS(11417), 1, + anon_sym_COMMA, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12225), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12711), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10186), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [223780] = 26, + [224980] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(11417), 1, + anon_sym_COMMA, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12201), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12223), 1, - anon_sym_QMARK, - ACTIONS(12225), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12713), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(10190), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [223872] = 24, + [225074] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(12201), 1, + ACTIONS(11417), 1, + anon_sym_COMMA, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12225), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12293), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10194), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [223960] = 7, + [225168] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11861), 1, + ACTIONS(12257), 1, anon_sym_LPAREN2, - ACTIONS(11863), 1, + ACTIONS(12259), 1, anon_sym_LBRACK, - STATE(2180), 1, + STATE(2267), 1, sym_parameter_list, - STATE(6587), 1, + STATE(6617), 1, sym__function_declarator_seq, - ACTIONS(9848), 9, + ACTIONS(10210), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -623642,7 +645739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9846), 25, + ACTIONS(10208), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -623668,208 +645765,355 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [224014] = 26, + [225222] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(11417), 1, + anon_sym_COMMA, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12201), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12223), 1, - anon_sym_QMARK, - ACTIONS(12225), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12715), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(10198), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [224106] = 27, + [225316] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11182), 1, - anon_sym_COMMA, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(11937), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(10479), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [224200] = 7, + [225408] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(11861), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(11863), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - STATE(2180), 1, - sym_parameter_list, - STATE(6587), 1, - sym__function_declarator_seq, - ACTIONS(9852), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11323), 1, + anon_sym_DOT, + ACTIONS(12320), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12328), 1, anon_sym_SLASH, + ACTIONS(12334), 1, anon_sym_PIPE, + ACTIONS(12338), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(9850), 25, - anon_sym_DOT_DOT_DOT, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12348), 1, + anon_sym_QMARK, + ACTIONS(12350), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12352), 1, + anon_sym_bitor, + ACTIONS(12354), 1, + anon_sym_bitand, + STATE(5741), 1, + sym_argument_list, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(10491), 2, anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12324), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12330), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12332), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12336), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12342), 4, + anon_sym_GT, anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [225500] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + ACTIONS(11319), 1, + anon_sym_LBRACK, + ACTIONS(11323), 1, + anon_sym_DOT, + ACTIONS(12320), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12328), 1, + anon_sym_SLASH, + ACTIONS(12334), 1, + anon_sym_PIPE, + ACTIONS(12338), 1, + anon_sym_AMP, + ACTIONS(12344), 1, anon_sym_LT_LT, + ACTIONS(12346), 1, anon_sym_GT_GT, - anon_sym_RBRACK, + ACTIONS(12348), 1, anon_sym_QMARK, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, + ACTIONS(12352), 1, + anon_sym_bitor, + ACTIONS(12354), 1, + anon_sym_bitand, + STATE(5741), 1, + sym_argument_list, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12324), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12326), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12330), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(12332), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12336), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(12356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(12717), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(12340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12342), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [225592] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9707), 1, + anon_sym_PIPE, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + ACTIONS(11319), 1, + anon_sym_LBRACK, + ACTIONS(11323), 1, + anon_sym_DOT, + ACTIONS(12328), 1, + anon_sym_SLASH, + ACTIONS(12338), 1, + anon_sym_AMP, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12350), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12354), 1, + anon_sym_bitand, + STATE(5741), 1, + sym_argument_list, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [224254] = 7, + ACTIONS(12324), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12326), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12342), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 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, + [225672] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11861), 1, + ACTIONS(12273), 1, anon_sym_LPAREN2, - ACTIONS(11863), 1, + ACTIONS(12275), 1, anon_sym_LBRACK, - STATE(2180), 1, + STATE(2249), 1, sym_parameter_list, - STATE(6587), 1, + STATE(6557), 1, sym__function_declarator_seq, - ACTIONS(9856), 9, + ACTIONS(10210), 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(9854), 25, + ACTIONS(10208), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -623879,10 +646123,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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -623895,283 +646136,292 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [224308] = 17, + anon_sym_GT2, + [225726] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(7009), 1, - anon_sym___attribute, - ACTIONS(11429), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11461), 1, - anon_sym_STAR, - ACTIONS(11463), 1, - anon_sym_AMP_AMP, - ACTIONS(11465), 1, + ACTIONS(11323), 1, + anon_sym_DOT, + ACTIONS(12320), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12328), 1, + anon_sym_SLASH, + ACTIONS(12334), 1, + anon_sym_PIPE, + ACTIONS(12338), 1, anon_sym_AMP, - STATE(5216), 1, - sym_parameter_list, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8769), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7007), 6, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12348), 1, + anon_sym_QMARK, + ACTIONS(12350), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12352), 1, + anon_sym_bitor, + ACTIONS(12354), 1, + anon_sym_bitand, + STATE(5741), 1, + sym_argument_list, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(9828), 2, anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [224382] = 20, + ACTIONS(11325), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12324), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12326), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12330), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12332), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12336), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12342), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [225818] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9282), 1, - anon_sym_PIPE, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(12003), 1, + ACTIONS(11417), 1, + anon_sym_COMMA, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12013), 1, + ACTIONS(12235), 1, + anon_sym_PIPE, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12031), 1, + ACTIONS(12251), 1, + anon_sym_bitor, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12549), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12021), 2, + ACTIONS(12231), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 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, - [224462] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(6997), 1, - anon_sym___attribute, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11461), 1, - anon_sym_STAR, - ACTIONS(11463), 1, - anon_sym_AMP_AMP, - ACTIONS(11465), 1, - anon_sym_AMP, - STATE(5216), 1, - sym_parameter_list, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8782), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6995), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [224536] = 27, + [225912] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11182), 1, + ACTIONS(11417), 1, anon_sym_COMMA, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12341), 1, + ACTIONS(12719), 1, anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [224630] = 16, + [226006] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11429), 1, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(11315), 1, + anon_sym_DOT, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9657), 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(9659), 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_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, + [226064] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(11431), 1, + ACTIONS(11795), 1, anon_sym_const, - ACTIONS(11474), 1, + ACTIONS(11821), 1, anon_sym_STAR, - ACTIONS(11476), 1, + ACTIONS(11823), 1, anon_sym_AMP_AMP, - ACTIONS(11478), 1, + ACTIONS(11825), 1, anon_sym_AMP, - STATE(4725), 1, + STATE(4861), 1, sym_parameter_list, - STATE(6485), 1, + STATE(6707), 1, sym_alignas_qualifier, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(8753), 1, + STATE(8886), 1, sym__abstract_declarator, - ACTIONS(11433), 2, + ACTIONS(11797), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6280), 2, + STATE(6420), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6497), 7, + ACTIONS(7351), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -624179,7 +646429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(11421), 12, + ACTIONS(11785), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -624192,1178 +646442,1087 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [224702] = 27, + [226136] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12195), 1, - anon_sym_COMMA, - ACTIONS(12201), 1, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(12223), 1, - anon_sym_QMARK, - ACTIONS(12225), 1, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12593), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12595), 1, anon_sym_bitand, - ACTIONS(12343), 1, - anon_sym_COLON, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12571), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12581), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [224796] = 18, + ACTIONS(10540), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [226224] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(12003), 1, - anon_sym_SLASH, - ACTIONS(12019), 1, - anon_sym_GT_EQ, - ACTIONS(12027), 1, - anon_sym_LT_EQ_GT, - STATE(5762), 1, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(9282), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(10979), 2, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12001), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(9673), 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(9284), 12, + ACTIONS(9675), 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_RBRACK, + 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, - [224872] = 27, + anon_sym_not_eq, + [226284] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(11182), 1, - anon_sym_COMMA, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, - anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12345), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(9677), 8, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9679), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 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(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [224966] = 26, + [226344] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(11945), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11953), 1, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(11959), 1, + ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(11963), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, - anon_sym_GT_GT, - ACTIONS(11973), 1, - anon_sym_QMARK, - ACTIONS(11975), 1, + ACTIONS(12583), 1, + anon_sym_GT_EQ, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + ACTIONS(12593), 1, anon_sym_bitor, - ACTIONS(11979), 1, + ACTIONS(12595), 1, anon_sym_bitand, - STATE(5759), 1, + STATE(3874), 1, sym_argument_list, - STATE(5761), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(11103), 2, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11957), 2, + ACTIONS(12571), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11961), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12347), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(11965), 3, + ACTIONS(12585), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11967), 4, + ACTIONS(12581), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [225058] = 27, + ACTIONS(10544), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [226432] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(11182), 1, - anon_sym_COMMA, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, - anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12349), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(9681), 8, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9683), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 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(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [225152] = 24, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [226490] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11953), 1, + ACTIONS(12320), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(11959), 1, + ACTIONS(12334), 1, anon_sym_PIPE, - ACTIONS(11963), 1, + ACTIONS(12338), 1, anon_sym_AMP, - ACTIONS(11969), 1, + ACTIONS(12344), 1, anon_sym_LT_LT, - ACTIONS(11971), 1, + ACTIONS(12346), 1, anon_sym_GT_GT, - ACTIONS(11975), 1, + ACTIONS(12348), 1, + anon_sym_QMARK, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + ACTIONS(12352), 1, anon_sym_bitor, - ACTIONS(11979), 1, + ACTIONS(12354), 1, anon_sym_bitand, - STATE(5759), 1, + STATE(5741), 1, sym_argument_list, - STATE(5761), 1, + STATE(5917), 1, sym_subscript_argument_list, - ACTIONS(11103), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, + ACTIONS(12330), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11957), 2, + ACTIONS(12332), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11961), 2, + ACTIONS(12336), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11981), 2, + ACTIONS(12356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, + ACTIONS(12603), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10194), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(11967), 4, + ACTIONS(12342), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [225240] = 7, + [226582] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(11861), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11863), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - STATE(2180), 1, - sym_parameter_list, - STATE(6587), 1, - sym__function_declarator_seq, - ACTIONS(9834), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11315), 1, + anon_sym_DOT, + ACTIONS(12567), 1, anon_sym_SLASH, + ACTIONS(12573), 1, anon_sym_PIPE, + ACTIONS(12577), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(9832), 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, + ACTIONS(12583), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12593), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12595), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [225294] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - STATE(5759), 1, + STATE(3874), 1, sym_argument_list, - STATE(5761), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(11103), 2, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9286), 10, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12563), 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(9288), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12571), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12575), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12585), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12579), 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_GT2, - [225352] = 26, + ACTIONS(12581), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9597), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [226670] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11945), 1, + ACTIONS(11417), 1, + anon_sym_COMMA, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11953), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11959), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11963), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, - anon_sym_GT_GT, - ACTIONS(11973), 1, - anon_sym_QMARK, - ACTIONS(11975), 1, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11979), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5759), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12721), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - STATE(5761), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(11103), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11957), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11961), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12269), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(11965), 3, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11967), 4, + ACTIONS(12243), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [225444] = 27, + [226764] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12195), 1, + ACTIONS(11417), 1, anon_sym_COMMA, - ACTIONS(12201), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12223), 1, - anon_sym_QMARK, - ACTIONS(12225), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(12351), 1, - anon_sym_COLON, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12723), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [225538] = 26, + [226858] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12175), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [225630] = 24, + ACTIONS(10437), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [226946] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(11821), 1, + anon_sym_STAR, + ACTIONS(11823), 1, + anon_sym_AMP_AMP, + ACTIONS(11825), 1, + anon_sym_AMP, + STATE(4861), 1, + sym_parameter_list, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8887), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6726), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7343), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [227018] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(12003), 1, + ACTIONS(11417), 1, + anon_sym_COMMA, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12725), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10186), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [225718] = 24, + [227112] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11953), 1, + ACTIONS(11417), 1, + anon_sym_COMMA, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11959), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11963), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11969), 1, - anon_sym_LT_LT, - ACTIONS(11971), 1, - anon_sym_GT_GT, - ACTIONS(11975), 1, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11979), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5759), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12727), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5761), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(11103), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11949), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11951), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11955), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11957), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11961), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10091), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(11967), 4, + ACTIONS(12243), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [225806] = 9, + [227206] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11331), 1, anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(10971), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9286), 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(9288), 23, + ACTIONS(12362), 1, 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, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [225864] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(10969), 1, - anon_sym_DOT, - ACTIONS(12201), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12225), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12398), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(9828), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10091), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [225952] = 10, + [227298] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(9646), 1, anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(10971), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9244), 8, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11417), 1, + anon_sym_COMMA, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, + ACTIONS(12235), 1, anon_sym_PIPE, + ACTIONS(12239), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9246), 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, + ACTIONS(12245), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12251), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12253), 1, anon_sym_bitand, - anon_sym_not_eq, - [226012] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(10969), 1, - anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12729), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9252), 8, + ACTIONS(12225), 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(9254), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(12247), 2, 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, + ACTIONS(12241), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [226072] = 17, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [227392] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(12003), 1, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(12019), 1, - anon_sym_GT_EQ, - ACTIONS(12027), 1, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - STATE(5762), 1, + STATE(5741), 1, sym_argument_list, - STATE(5765), 1, + STATE(5917), 1, sym_subscript_argument_list, - ACTIONS(9282), 2, + ACTIONS(9707), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(10979), 2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12017), 3, + ACTIONS(12340), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12342), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 15, + ACTIONS(9709), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, - anon_sym_not_eq, - [226146] = 24, + anon_sym_GT2, + [227468] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(12201), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12561), 1, + anon_sym_COMMA, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(12225), 1, + ACTIONS(12589), 1, + anon_sym_QMARK, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12593), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12595), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12731), 1, + anon_sym_COLON, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12571), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12581), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10125), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [226234] = 9, + [227562] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11323), 1, anon_sym_DOT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5741), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9290), 8, + ACTIONS(9657), 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, - ACTIONS(9292), 23, + anon_sym_GT_GT, + ACTIONS(9659), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -625373,10 +647532,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_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -625387,27 +647543,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [226292] = 5, + anon_sym_GT2, + [227620] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11921), 1, + ACTIONS(12273), 1, + anon_sym_LPAREN2, + ACTIONS(12275), 1, anon_sym_LBRACK, - STATE(7035), 1, - sym_new_declarator, - ACTIONS(9173), 9, + STATE(2249), 1, + sym_parameter_list, + STATE(6557), 1, + sym__function_declarator_seq, + ACTIONS(10206), 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(9175), 27, + ACTIONS(10204), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -625415,11 +647577,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_LBRACE, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -625432,238 +647590,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [226342] = 24, + anon_sym_GT2, + [227674] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(12201), 1, + ACTIONS(11417), 1, + anon_sym_COMMA, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12225), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12733), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12213), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12215), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9342), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [226430] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - ACTIONS(11099), 1, - anon_sym_LBRACK, - ACTIONS(11101), 1, - anon_sym_DOT, - ACTIONS(11953), 1, - anon_sym_SLASH, - ACTIONS(11959), 1, - anon_sym_PIPE, - ACTIONS(11963), 1, - anon_sym_AMP, - ACTIONS(11969), 1, + ACTIONS(12247), 2, anon_sym_LT_LT, - ACTIONS(11971), 1, anon_sym_GT_GT, - ACTIONS(11975), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11977), 1, - anon_sym_bitor, - ACTIONS(11979), 1, - anon_sym_bitand, - STATE(5759), 1, - sym_argument_list, - STATE(5761), 1, - sym_subscript_argument_list, - ACTIONS(11103), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11949), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11951), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11961), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11981), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11965), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11967), 4, + ACTIONS(12243), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 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, - [226514] = 27, + [227768] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11182), 1, - anon_sym_COMMA, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12353), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12735), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [226608] = 15, + [227860] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(12003), 1, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(12027), 1, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - STATE(5762), 1, + STATE(5741), 1, sym_argument_list, - STATE(5765), 1, + STATE(5917), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9707), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12356), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9282), 5, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12342), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 16, + ACTIONS(9709), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -625671,8 +647773,6 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_or, anon_sym_and, @@ -625680,51 +647780,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [226678] = 17, + anon_sym_GT2, + [227934] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(6495), 1, + ACTIONS(7349), 1, anon_sym___attribute, - ACTIONS(7784), 1, + ACTIONS(8123), 1, anon_sym_const, - ACTIONS(11429), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(11480), 1, + ACTIONS(11838), 1, anon_sym_STAR, - ACTIONS(11482), 1, + ACTIONS(11840), 1, anon_sym_AMP_AMP, - ACTIONS(11484), 1, + ACTIONS(11842), 1, anon_sym_AMP, - STATE(2592), 1, + STATE(2726), 1, sym_alignas_qualifier, - STATE(5221), 1, + STATE(5313), 1, sym_parameter_list, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(8796), 1, + STATE(8926), 1, sym__abstract_declarator, - ACTIONS(7786), 2, + ACTIONS(8125), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2399), 2, + STATE(2488), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6497), 6, + ACTIONS(7351), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(7778), 12, + ACTIONS(8117), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -625737,223 +647838,429 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [226752] = 26, + [228008] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(7341), 1, + anon_sym___attribute, + ACTIONS(8123), 1, + anon_sym_const, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11838), 1, + anon_sym_STAR, + ACTIONS(11840), 1, + anon_sym_AMP_AMP, + ACTIONS(11842), 1, + anon_sym_AMP, + STATE(2726), 1, + sym_alignas_qualifier, + STATE(5313), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8927), 1, + sym__abstract_declarator, + ACTIONS(8125), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6725), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7343), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8117), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [228082] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12368), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9707), 7, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(11885), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(11889), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(11893), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(11900), 1, + anon_sym_not_eq, + [228146] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + ACTIONS(11319), 1, + anon_sym_LBRACK, + ACTIONS(11323), 1, + anon_sym_DOT, + ACTIONS(12320), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12328), 1, + anon_sym_SLASH, + ACTIONS(12334), 1, + anon_sym_PIPE, + ACTIONS(12338), 1, + anon_sym_AMP, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12348), 1, anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12350), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12352), 1, + anon_sym_bitor, + ACTIONS(12354), 1, + anon_sym_bitand, + STATE(5741), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(10479), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12330), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12332), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12336), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12191), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(11881), 3, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12342), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [226844] = 24, + [228238] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(12235), 1, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9707), 8, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12243), 1, anon_sym_PIPE, - ACTIONS(12247), 1, anon_sym_AMP, - ACTIONS(12253), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 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_GT_EQ, - ACTIONS(12255), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(12257), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(12259), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + anon_sym_not_eq, + [228298] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(11327), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, + anon_sym_DOT, + ACTIONS(12370), 1, + anon_sym_SLASH, + ACTIONS(12376), 1, + anon_sym_PIPE, + ACTIONS(12380), 1, + anon_sym_AMP, + ACTIONS(12386), 1, + anon_sym_GT_EQ, + ACTIONS(12394), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12396), 1, + anon_sym_bitor, + ACTIONS(12398), 1, + anon_sym_bitand, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12231), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12233), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12239), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12241), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12245), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12249), 3, + ACTIONS(12388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12251), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10178), 4, + ACTIONS(9709), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, anon_sym_QMARK, - [226932] = 27, + anon_sym_or, + [228384] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11182), 1, - anon_sym_COMMA, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12355), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [227026] = 10, + ACTIONS(9709), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + [228468] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(9707), 1, + anon_sym_PIPE, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11331), 1, anon_sym_DOT, - STATE(5759), 1, + ACTIONS(12370), 1, + anon_sym_SLASH, + ACTIONS(12380), 1, + anon_sym_AMP, + ACTIONS(12386), 1, + anon_sym_GT_EQ, + ACTIONS(12394), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12398), 1, + anon_sym_bitand, + STATE(5875), 1, sym_argument_list, - STATE(5761), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(11103), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11981), 2, + ACTIONS(12366), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12368), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12378), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9270), 10, + ACTIONS(12382), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12384), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 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, + [228550] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12273), 1, + anon_sym_LPAREN2, + ACTIONS(12275), 1, + anon_sym_LBRACK, + STATE(2249), 1, + sym_parameter_list, + STATE(6557), 1, + sym__function_declarator_seq, + ACTIONS(10198), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -625964,7 +648271,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - ACTIONS(9272), 19, + anon_sym_DOT, + ACTIONS(10196), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -625983,97 +648291,111 @@ 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_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - [227086] = 16, + [228604] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(11429), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11474), 1, + ACTIONS(11331), 1, + anon_sym_DOT, + ACTIONS(12370), 1, + anon_sym_SLASH, + ACTIONS(12386), 1, + anon_sym_GT_EQ, + ACTIONS(12394), 1, + anon_sym_LT_EQ_GT, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(9707), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12366), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12368), 2, anon_sym_STAR, - ACTIONS(11476), 1, + anon_sym_PERCENT, + ACTIONS(12388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12384), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11478), 1, - anon_sym_AMP, - STATE(4725), 1, - sym_parameter_list, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8750), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7003), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [227158] = 13, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [228680] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - STATE(5762), 1, + ACTIONS(12386), 1, + anon_sym_GT_EQ, + ACTIONS(12394), 1, + anon_sym_LT_EQ_GT, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9707), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12033), 2, + ACTIONS(12388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9282), 5, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 19, + ACTIONS(9709), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -626081,433 +648403,488 @@ 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_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, - [227224] = 27, + [228754] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(11182), 1, - anon_sym_COMMA, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12561), 1, + anon_sym_COMMA, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12589), 1, + anon_sym_QMARK, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12593), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12595), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12357), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12737), 1, + anon_sym_COLON, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12571), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12581), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [227318] = 26, + [228848] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11319), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11323), 1, anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12235), 1, + ACTIONS(12328), 1, anon_sym_SLASH, - ACTIONS(12243), 1, + ACTIONS(12334), 1, anon_sym_PIPE, - ACTIONS(12247), 1, + ACTIONS(12338), 1, anon_sym_AMP, - ACTIONS(12253), 1, - anon_sym_GT_EQ, - ACTIONS(12255), 1, + ACTIONS(12344), 1, + anon_sym_LT_LT, + ACTIONS(12346), 1, + anon_sym_GT_GT, + ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(12257), 1, + ACTIONS(12352), 1, anon_sym_bitor, - ACTIONS(12259), 1, + ACTIONS(12354), 1, anon_sym_bitand, - ACTIONS(12261), 1, - anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5741), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5917), 1, + sym_subscript_argument_list, + ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9438), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12231), 2, + ACTIONS(12324), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12233), 2, + ACTIONS(12326), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12239), 2, + ACTIONS(12330), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12241), 2, + ACTIONS(12332), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12245), 2, + ACTIONS(12336), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12249), 3, + ACTIONS(12356), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12251), 3, + ACTIONS(10540), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(12342), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [227410] = 27, + [228936] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(11182), 1, - anon_sym_COMMA, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12561), 1, + anon_sym_COMMA, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12589), 1, + anon_sym_QMARK, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12593), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12595), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12359), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12739), 1, + anon_sym_COLON, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12571), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12581), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [227504] = 9, + [229030] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(11099), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11331), 1, anon_sym_DOT, - STATE(5759), 1, + ACTIONS(12370), 1, + anon_sym_SLASH, + ACTIONS(12376), 1, + anon_sym_PIPE, + ACTIONS(12380), 1, + anon_sym_AMP, + ACTIONS(12386), 1, + anon_sym_GT_EQ, + ACTIONS(12394), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12396), 1, + anon_sym_bitor, + ACTIONS(12398), 1, + anon_sym_bitand, + STATE(5875), 1, sym_argument_list, - STATE(5761), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(11103), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9290), 10, + ACTIONS(12366), 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(9292), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12372), 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_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, + ACTIONS(12374), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12378), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(12388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_GT2, - [227562] = 27, + ACTIONS(12382), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12384), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10487), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [229118] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12561), 1, + anon_sym_COMMA, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12589), 1, + anon_sym_QMARK, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12593), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12595), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12361), 1, - anon_sym_COMMA, - ACTIONS(12363), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12741), 1, + anon_sym_COLON, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12571), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12581), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [227656] = 26, + [229212] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11995), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12394), 1, + anon_sym_LT_EQ_GT, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12366), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12368), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9707), 5, anon_sym_PIPE, - ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(12019), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(12025), 1, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(12027), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(12031), 1, + anon_sym_xor, anon_sym_bitand, - STATE(5762), 1, + anon_sym_not_eq, + [229282] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(11327), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, + anon_sym_DOT, + ACTIONS(12370), 1, + anon_sym_SLASH, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(9438), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9707), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9709), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12007), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12011), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(12017), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [227748] = 12, + [229348] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(12235), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12233), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9282), 7, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12368), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9707), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 19, + ACTIONS(9709), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -626516,9 +648893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -626527,835 +648902,995 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [227812] = 27, + [229416] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(11821), 1, + anon_sym_STAR, + ACTIONS(11823), 1, + anon_sym_AMP_AMP, + ACTIONS(11825), 1, + anon_sym_AMP, + STATE(4861), 1, + sym_parameter_list, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8891), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6420), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6823), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [229488] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12195), 1, + ACTIONS(12561), 1, anon_sym_COMMA, - ACTIONS(12201), 1, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(12223), 1, + ACTIONS(12589), 1, anon_sym_QMARK, - ACTIONS(12225), 1, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12593), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12595), 1, anon_sym_bitand, - ACTIONS(12365), 1, + ACTIONS(12743), 1, anon_sym_COLON, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12571), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12581), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [227906] = 23, + [229582] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(12235), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12243), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12247), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12253), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12255), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12257), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12259), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12745), 1, + anon_sym_COMMA, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12231), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12233), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 2, + ACTIONS(12231), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12245), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12249), 3, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12251), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK, - anon_sym_or, - [227992] = 22, + [229673] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6222), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(12235), 1, + ACTIONS(12362), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12243), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12247), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12253), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12255), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12257), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12259), 1, + ACTIONS(12398), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12231), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12233), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12245), 2, + ACTIONS(12372), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12374), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12249), 3, + ACTIONS(12388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12251), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - [228076] = 21, + [229764] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6224), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(9282), 1, - anon_sym_PIPE, - ACTIONS(12235), 1, + ACTIONS(12362), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12247), 1, + ACTIONS(12376), 1, + anon_sym_PIPE, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12253), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12255), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12259), 1, + ACTIONS(12396), 1, + anon_sym_bitor, + ACTIONS(12398), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12231), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12233), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12245), 2, + ACTIONS(12372), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12374), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12249), 3, + ACTIONS(12388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12251), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - [228158] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6949), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(6951), 35, - 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___extension__, - anon_sym___attribute__, - anon_sym_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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [228204] = 26, + [229855] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6228), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12367), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [228296] = 27, + [229946] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6230), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11182), 1, - anon_sym_COMMA, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12369), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [228390] = 20, + [230037] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(9282), 1, - anon_sym_PIPE, - ACTIONS(12235), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12247), 1, + ACTIONS(12235), 1, + anon_sym_PIPE, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12253), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12255), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12259), 1, + ACTIONS(12251), 1, + anon_sym_bitor, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12747), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12231), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12233), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, + anon_sym_AMP_AMP, + anon_sym_and, ACTIONS(12237), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12249), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12251), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - [228470] = 18, + [230128] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6266), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(12235), 1, + ACTIONS(12362), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12253), 1, + ACTIONS(12376), 1, + anon_sym_PIPE, + ACTIONS(12380), 1, + anon_sym_AMP, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12255), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12396), 1, + anon_sym_bitor, + ACTIONS(12398), 1, + anon_sym_bitand, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9282), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12231), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12233), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12237), 2, + ACTIONS(12372), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12374), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12378), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12249), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12251), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - [228546] = 27, + [230219] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11182), 1, - anon_sym_COMMA, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12371), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12749), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [228640] = 17, + [230310] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(12235), 1, + ACTIONS(12362), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12253), 1, + ACTIONS(12376), 1, + anon_sym_PIPE, + ACTIONS(12380), 1, + anon_sym_AMP, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12255), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12396), 1, + anon_sym_bitor, + ACTIONS(12398), 1, + anon_sym_bitand, + ACTIONS(12751), 1, + anon_sym_RBRACK, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9282), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12231), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12233), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12251), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9284), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12374), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12378), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - [228714] = 27, + ACTIONS(12384), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [230401] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11182), 1, - anon_sym_COMMA, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12373), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12753), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [228808] = 15, + [230492] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3891), 1, + sym_auto, + ACTIONS(3893), 1, + anon_sym_decltype, + ACTIONS(4316), 1, + anon_sym_class, + ACTIONS(4318), 1, + anon_sym_struct, + ACTIONS(4320), 1, + anon_sym_union, + ACTIONS(4360), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11079), 1, + sym_identifier, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(12755), 1, + anon_sym_LPAREN2, + ACTIONS(12759), 1, + anon_sym_enum, + ACTIONS(12761), 1, + anon_sym_typename, + STATE(3711), 1, + sym__splice_specialization_specifier, + STATE(3759), 1, + sym_template_type, + STATE(3762), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3819), 1, + sym_qualified_type_identifier, + STATE(4119), 1, + sym_decltype_auto, + STATE(4263), 1, + sym_splice_specifier, + STATE(6540), 1, + sym_type_specifier, + STATE(7432), 1, + sym_argument_list, + STATE(8675), 1, + sym__scope_resolution, + STATE(3967), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12757), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4064), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [230585] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(12235), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12255), 1, + ACTIONS(12235), 1, + anon_sym_PIPE, + ACTIONS(12239), 1, + anon_sym_AMP, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12251), 1, + anon_sym_bitor, + ACTIONS(12253), 1, + anon_sym_bitand, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12763), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12231), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12233), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9282), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9284), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - [228878] = 13, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [230676] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(3891), 1, + sym_auto, + ACTIONS(3893), 1, + anon_sym_decltype, + ACTIONS(4316), 1, + anon_sym_class, + ACTIONS(4318), 1, + anon_sym_struct, + ACTIONS(4320), 1, + anon_sym_union, + ACTIONS(4360), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11079), 1, + sym_identifier, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(12755), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(12235), 1, - anon_sym_SLASH, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12759), 1, + anon_sym_enum, + ACTIONS(12761), 1, + anon_sym_typename, + STATE(3711), 1, + sym__splice_specialization_specifier, + STATE(3759), 1, + sym_template_type, + STATE(3762), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3819), 1, + sym_qualified_type_identifier, + STATE(4119), 1, + sym_decltype_auto, + STATE(4263), 1, + sym_splice_specifier, + STATE(6527), 1, + sym_type_specifier, + STATE(7488), 1, sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12231), 2, + STATE(8675), 1, + sym__scope_resolution, + STATE(3967), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12757), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4064), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [230769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9703), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12233), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9282), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9284), 19, + anon_sym_DOT, + ACTIONS(9705), 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, @@ -627364,7 +649899,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -627373,729 +649910,684 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [228944] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [230814] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12765), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12375), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [229036] = 26, + [230905] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12767), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12186), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [229128] = 27, + [230996] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6351), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12195), 1, - anon_sym_COMMA, - ACTIONS(12201), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12223), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12225), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(12377), 1, - anon_sym_COLON, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [229222] = 27, + [231087] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12195), 1, - anon_sym_COMMA, - ACTIONS(12201), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12223), 1, - anon_sym_QMARK, - ACTIONS(12225), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(12379), 1, - anon_sym_COLON, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12769), 1, + anon_sym_COLON_RBRACK, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [229316] = 26, + [231178] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(11872), 1, + anon_sym_STAR, + ACTIONS(11874), 1, + anon_sym_AMP_AMP, + ACTIONS(11876), 1, + anon_sym_AMP, + STATE(5227), 1, + sym_parameter_list, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8959), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6420), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7351), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [231249] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(11872), 1, + anon_sym_STAR, + ACTIONS(11874), 1, + anon_sym_AMP_AMP, + ACTIONS(11876), 1, + anon_sym_AMP, + STATE(5227), 1, + sym_parameter_list, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8960), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6951), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7343), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [231320] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12381), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12771), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [229407] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9358), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12243), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(9360), 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_or, - anon_sym_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, - anon_sym_GT2, - [229452] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2744), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3457), 1, - anon_sym_class, - ACTIONS(3459), 1, - anon_sym_struct, - ACTIONS(3461), 1, - anon_sym_union, - ACTIONS(3465), 1, - sym_auto, - ACTIONS(3467), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10709), 1, - sym_identifier, - ACTIONS(10711), 1, - anon_sym_COLON_COLON, - ACTIONS(10713), 1, - sym_primitive_type, - ACTIONS(12383), 1, - anon_sym_LPAREN2, - ACTIONS(12387), 1, - anon_sym_enum, - ACTIONS(12389), 1, - anon_sym_typename, - STATE(2336), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2677), 1, - sym_splice_specifier, - STATE(2814), 1, - sym_template_type, - STATE(2837), 1, - sym__splice_specialization_specifier, - STATE(2887), 1, - sym_qualified_type_identifier, - STATE(3453), 1, - sym_decltype_auto, - STATE(5198), 1, - sym_type_specifier, - STATE(7340), 1, - sym_argument_list, - STATE(8588), 1, - sym__scope_resolution, - STATE(3262), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12385), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3460), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [229545] = 26, + [231411] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12391), 1, + ACTIONS(12773), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [229636] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(6476), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7414), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(12393), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7416), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [229685] = 26, + [231502] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12201), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12223), 1, - anon_sym_QMARK, - ACTIONS(12225), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(12395), 1, - anon_sym_COLON, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12775), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [229776] = 26, + [231593] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6244), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12201), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12223), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12225), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(12397), 1, - anon_sym_COLON, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [229867] = 17, + [231684] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11530), 1, - sym_identifier, - ACTIONS(11532), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(11534), 1, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(11872), 1, anon_sym_STAR, - ACTIONS(11536), 1, + ACTIONS(11874), 1, anon_sym_AMP_AMP, - ACTIONS(11538), 1, + ACTIONS(11876), 1, anon_sym_AMP, - ACTIONS(11542), 1, - sym_primitive_type, - STATE(3482), 1, + STATE(5227), 1, + sym_parameter_list, + STATE(6707), 1, sym_alignas_qualifier, - STATE(4696), 1, - sym__type_declarator, - STATE(5607), 1, - sym_pointer_type_declarator, - STATE(10900), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8962), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3090), 2, + STATE(6420), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11540), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5533), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7355), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11785), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -628107,814 +650599,903 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [229940] = 26, + [231755] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12399), 1, + ACTIONS(12777), 1, anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [230031] = 26, + [231846] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12401), 1, - anon_sym_COLON_RBRACK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12779), 1, + anon_sym_RBRACK, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [230122] = 26, + [231937] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12403), 1, + ACTIONS(12781), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [230213] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11530), 1, - sym_identifier, - ACTIONS(11532), 1, - anon_sym_LPAREN2, - ACTIONS(11534), 1, - anon_sym_STAR, - ACTIONS(11536), 1, - anon_sym_AMP_AMP, - ACTIONS(11538), 1, - anon_sym_AMP, - ACTIONS(11542), 1, - sym_primitive_type, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(4899), 1, - sym__type_declarator, - STATE(5607), 1, - sym_pointer_type_declarator, - STATE(10900), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11540), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5533), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [230286] = 26, + [232028] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5752), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12783), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12017), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [230377] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3361), 1, - sym_auto, - ACTIONS(3363), 1, - anon_sym_decltype, - ACTIONS(3399), 1, - anon_sym_class, - ACTIONS(3401), 1, - anon_sym_struct, - ACTIONS(3403), 1, - anon_sym_union, - ACTIONS(3443), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10717), 1, - sym_identifier, - ACTIONS(10719), 1, - anon_sym_COLON_COLON, - ACTIONS(10721), 1, - sym_primitive_type, - ACTIONS(12383), 1, - anon_sym_LPAREN2, - ACTIONS(12407), 1, - anon_sym_enum, - ACTIONS(12409), 1, - anon_sym_typename, - STATE(3627), 1, - sym_template_type, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(3658), 1, - sym_qualified_type_identifier, - STATE(3697), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4041), 1, - sym_decltype_auto, - STATE(4072), 1, - sym_splice_specifier, - STATE(6415), 1, - sym_type_specifier, - STATE(7372), 1, - sym_argument_list, - STATE(8571), 1, - sym__scope_resolution, - STATE(3887), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12405), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4042), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [230470] = 26, + ACTIONS(12237), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [232119] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6246), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12411), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [230561] = 26, + [232210] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6248), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12413), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [230652] = 3, + [232301] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10249), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6250), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(11327), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, + anon_sym_DOT, + ACTIONS(12362), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12370), 1, anon_sym_SLASH, + ACTIONS(12376), 1, anon_sym_PIPE, + ACTIONS(12380), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, + ACTIONS(12386), 1, + anon_sym_GT_EQ, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12396), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12398), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(10247), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12366), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12374), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12378), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [230697] = 26, + ACTIONS(12382), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12384), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [232392] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3706), 1, + anon_sym_class, + ACTIONS(3708), 1, + anon_sym_struct, + ACTIONS(3710), 1, + anon_sym_union, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(11103), 1, + sym_identifier, + ACTIONS(11105), 1, + anon_sym_COLON_COLON, + ACTIONS(12755), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(12787), 1, + anon_sym_enum, + ACTIONS(12789), 1, + anon_sym_typename, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3126), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3197), 1, + sym_decltype_auto, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(3800), 1, + sym_splice_specifier, + STATE(5359), 1, + sym_type_specifier, + STATE(7495), 1, + sym_argument_list, + STATE(8738), 1, + sym__scope_resolution, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12785), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [232485] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12589), 1, + anon_sym_QMARK, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12593), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12595), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12415), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12791), 1, + anon_sym_COLON, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12571), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12581), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [230788] = 26, + [232576] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11904), 1, + sym_primitive_type, + ACTIONS(11912), 1, + anon_sym_STAR, + ACTIONS(11914), 1, + anon_sym_AMP_AMP, + ACTIONS(11916), 1, + anon_sym_AMP, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(3681), 1, + sym__type_declarator, + STATE(11037), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [232649] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3008), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4429), 1, + anon_sym_class, + ACTIONS(4431), 1, + anon_sym_struct, + ACTIONS(4433), 1, + anon_sym_union, + ACTIONS(4439), 1, + sym_auto, + ACTIONS(4441), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11087), 1, + sym_identifier, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(11091), 1, + sym_primitive_type, + ACTIONS(12755), 1, + anon_sym_LPAREN2, + ACTIONS(12795), 1, + anon_sym_enum, + ACTIONS(12797), 1, + anon_sym_typename, + STATE(2377), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2638), 1, + sym_splice_specifier, + STATE(2696), 1, + sym__splice_specialization_specifier, + STATE(2701), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(3099), 1, + sym_decltype_auto, + STATE(4800), 1, + sym_type_specifier, + STATE(7439), 1, + sym_argument_list, + STATE(8687), 1, + sym__scope_resolution, + STATE(2984), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12793), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3123), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [232742] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6353), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12417), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [230879] = 26, + [232833] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12589), 1, + anon_sym_QMARK, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12593), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12595), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12419), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12799), 1, + anon_sym_COLON, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12571), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12581), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [230970] = 27, + [232924] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2648), 1, + ACTIONS(3008), 1, anon_sym_LBRACK_COLON, - ACTIONS(3245), 1, + ACTIONS(4429), 1, anon_sym_class, - ACTIONS(3247), 1, + ACTIONS(4431), 1, anon_sym_struct, - ACTIONS(3249), 1, + ACTIONS(4433), 1, anon_sym_union, - ACTIONS(3255), 1, + ACTIONS(4439), 1, sym_auto, - ACTIONS(3257), 1, + ACTIONS(4441), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10725), 1, + ACTIONS(11087), 1, sym_identifier, - ACTIONS(10727), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(10729), 1, + ACTIONS(11091), 1, sym_primitive_type, - ACTIONS(12383), 1, + ACTIONS(12755), 1, anon_sym_LPAREN2, - ACTIONS(12423), 1, + ACTIONS(12795), 1, anon_sym_enum, - ACTIONS(12425), 1, + ACTIONS(12797), 1, anon_sym_typename, - STATE(2269), 1, + STATE(2377), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2519), 1, + STATE(2638), 1, sym_splice_specifier, - STATE(2567), 1, + STATE(2696), 1, sym__splice_specialization_specifier, - STATE(2591), 1, + STATE(2701), 1, sym_template_type, - STATE(2699), 1, + STATE(2781), 1, sym_qualified_type_identifier, - STATE(3138), 1, + STATE(3099), 1, sym_decltype_auto, - STATE(4710), 1, + STATE(4843), 1, sym_type_specifier, - STATE(7313), 1, + STATE(7487), 1, sym_argument_list, - STATE(8604), 1, + STATE(8687), 1, sym__scope_resolution, - STATE(2973), 2, + STATE(2984), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12421), 4, + ACTIONS(12793), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3140), 7, + STATE(3123), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -628922,409 +651503,261 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [231063] = 17, + [233017] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3809), 1, + anon_sym_class, + ACTIONS(3811), 1, + anon_sym_struct, + ACTIONS(3813), 1, + anon_sym_union, + ACTIONS(3819), 1, + sym_auto, + ACTIONS(3821), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11036), 1, sym_identifier, - ACTIONS(11496), 1, - anon_sym_LPAREN2, - ACTIONS(11508), 1, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(11040), 1, sym_primitive_type, - ACTIONS(11524), 1, - anon_sym_STAR, - ACTIONS(11526), 1, - anon_sym_AMP_AMP, - ACTIONS(11528), 1, - anon_sym_AMP, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(4669), 1, - sym__type_declarator, - STATE(11121), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11506), 4, + ACTIONS(12755), 1, + anon_sym_LPAREN2, + ACTIONS(12803), 1, + anon_sym_enum, + ACTIONS(12805), 1, + anon_sym_typename, + STATE(2073), 1, + sym_template_type, + STATE(2087), 1, + sym_qualified_type_identifier, + STATE(2104), 1, + sym_splice_specifier, + STATE(2153), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2221), 1, + sym_decltype_auto, + STATE(3517), 1, + sym_type_specifier, + STATE(7402), 1, + sym_argument_list, + STATE(8763), 1, + sym__scope_resolution, + STATE(2169), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [231136] = 26, + STATE(2222), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [233110] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12427), 1, + ACTIONS(12807), 1, anon_sym_COLON_RBRACK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [231227] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, - anon_sym_LPAREN2, - ACTIONS(11508), 1, - sym_primitive_type, - ACTIONS(11524), 1, - anon_sym_STAR, - ACTIONS(11526), 1, - anon_sym_AMP_AMP, - ACTIONS(11528), 1, - anon_sym_AMP, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(4671), 1, - sym__type_declarator, - STATE(11121), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [231300] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(7436), 1, - sym_alignas_qualifier, - ACTIONS(12432), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6842), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6525), 9, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(6527), 10, - 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, - anon_sym_LBRACK_COLON, - ACTIONS(12429), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [231353] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, - anon_sym_LPAREN2, - ACTIONS(11508), 1, - sym_primitive_type, - ACTIONS(11524), 1, - anon_sym_STAR, - ACTIONS(11526), 1, - anon_sym_AMP_AMP, - ACTIONS(11528), 1, - anon_sym_AMP, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(4675), 1, - sym__type_declarator, - STATE(11121), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [231426] = 26, + [233201] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5919), 1, + ACTIONS(6357), 1, anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [231517] = 27, + [233292] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(3293), 1, + ACTIONS(3706), 1, anon_sym_class, - ACTIONS(3295), 1, + ACTIONS(3708), 1, anon_sym_struct, - ACTIONS(3297), 1, + ACTIONS(3710), 1, anon_sym_union, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10295), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10649), 1, + ACTIONS(11103), 1, sym_identifier, - ACTIONS(10651), 1, + ACTIONS(11105), 1, anon_sym_COLON_COLON, - ACTIONS(12383), 1, + ACTIONS(12755), 1, anon_sym_LPAREN2, - ACTIONS(12437), 1, + ACTIONS(12787), 1, anon_sym_enum, - ACTIONS(12439), 1, + ACTIONS(12789), 1, anon_sym_typename, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3123), 1, + STATE(3126), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3561), 1, + STATE(3197), 1, + sym_decltype_auto, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(3688), 1, + STATE(3800), 1, sym_splice_specifier, - STATE(6422), 1, + STATE(5466), 1, sym_type_specifier, - STATE(7366), 1, + STATE(7502), 1, sym_argument_list, - STATE(8621), 1, + STATE(8738), 1, sym__scope_resolution, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12435), 4, + ACTIONS(12785), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -629332,239 +651765,195 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [231610] = 26, + [233385] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5771), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12809), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [231701] = 26, + [233476] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12441), 1, + ACTIONS(12811), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [231792] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(7040), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7253), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(12443), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7255), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [231841] = 27, + [233567] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, - sym_auto, - ACTIONS(3363), 1, - anon_sym_decltype, - ACTIONS(3399), 1, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3809), 1, anon_sym_class, - ACTIONS(3401), 1, + ACTIONS(3811), 1, anon_sym_struct, - ACTIONS(3403), 1, + ACTIONS(3813), 1, anon_sym_union, - ACTIONS(3443), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(3819), 1, + sym_auto, + ACTIONS(3821), 1, + anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10717), 1, + ACTIONS(11036), 1, sym_identifier, - ACTIONS(10719), 1, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - ACTIONS(10721), 1, + ACTIONS(11040), 1, sym_primitive_type, - ACTIONS(12383), 1, + ACTIONS(12755), 1, anon_sym_LPAREN2, - ACTIONS(12407), 1, + ACTIONS(12803), 1, anon_sym_enum, - ACTIONS(12409), 1, + ACTIONS(12805), 1, anon_sym_typename, - STATE(3627), 1, + STATE(2073), 1, sym_template_type, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(3658), 1, + STATE(2087), 1, sym_qualified_type_identifier, - STATE(3697), 1, + STATE(2104), 1, + sym_splice_specifier, + STATE(2153), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4041), 1, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2221), 1, sym_decltype_auto, - STATE(4072), 1, - sym_splice_specifier, - STATE(6410), 1, + STATE(3548), 1, sym_type_specifier, - STATE(7326), 1, + STATE(7501), 1, sym_argument_list, - STATE(8571), 1, + STATE(8763), 1, sym__scope_resolution, - STATE(3887), 2, + STATE(2169), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12405), 4, + ACTIONS(12801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4042), 7, + STATE(2222), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -629572,347 +651961,303 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [231934] = 26, + [233660] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12445), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12813), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [232025] = 26, + [233751] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12447), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12815), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [232116] = 26, + [233842] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5813), 1, + ACTIONS(6270), 1, anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [232207] = 26, + [233933] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(12003), 1, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12589), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12593), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12595), 1, anon_sym_bitand, - ACTIONS(12449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12451), 1, - anon_sym_RBRACK, - STATE(5762), 1, + ACTIONS(12817), 1, + anon_sym_COLON, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12571), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12581), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [232298] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(6476), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7383), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(12393), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7385), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [232347] = 17, + [234024] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11550), 1, + ACTIONS(11856), 1, sym_identifier, - ACTIONS(11552), 1, + ACTIONS(11858), 1, anon_sym_LPAREN2, - ACTIONS(11554), 1, + ACTIONS(11860), 1, anon_sym_STAR, - ACTIONS(11556), 1, + ACTIONS(11862), 1, anon_sym_AMP_AMP, - ACTIONS(11558), 1, + ACTIONS(11864), 1, anon_sym_AMP, - ACTIONS(11562), 1, + ACTIONS(11870), 1, sym_primitive_type, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(4719), 1, + STATE(8266), 1, sym__type_declarator, - STATE(5606), 1, + STATE(8576), 1, sym_pointer_type_declarator, - STATE(10593), 1, + STATE(11686), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3090), 2, + STATE(3138), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11560), 4, + ACTIONS(11868), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5602), 5, + STATE(8574), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -629932,846 +652277,975 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [232420] = 26, + [234097] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5880), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12819), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12241), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [234188] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, + anon_sym_SLASH, + ACTIONS(12235), 1, + anon_sym_PIPE, + ACTIONS(12239), 1, + anon_sym_AMP, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12251), 1, + anon_sym_bitor, + ACTIONS(12253), 1, + anon_sym_bitand, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12821), 1, + anon_sym_SEMI, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12227), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [232511] = 26, + [234279] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5994), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12823), 1, + anon_sym_RBRACK, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [232602] = 26, + [234370] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12453), 1, + ACTIONS(12825), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [232693] = 26, + [234461] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12455), 1, + ACTIONS(12827), 1, anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [232784] = 26, + [234552] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12177), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12829), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [232875] = 26, + [234643] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6272), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12457), 1, - anon_sym_COLON_RBRACK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(12366), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12368), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12372), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12374), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12378), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12382), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12384), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [234734] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6274), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(11327), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, + anon_sym_DOT, + ACTIONS(12362), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12370), 1, + anon_sym_SLASH, + ACTIONS(12376), 1, + anon_sym_PIPE, + ACTIONS(12380), 1, + anon_sym_AMP, + ACTIONS(12386), 1, + anon_sym_GT_EQ, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12396), 1, + anon_sym_bitor, + ACTIONS(12398), 1, + anon_sym_bitand, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [232966] = 26, + [234825] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12459), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12831), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [233057] = 26, + [234916] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6375), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12461), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [233148] = 26, + [235007] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6278), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12463), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(12366), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12368), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12372), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12374), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12378), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12382), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12384), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [235098] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6379), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(11327), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, + anon_sym_DOT, + ACTIONS(12362), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12370), 1, + anon_sym_SLASH, + ACTIONS(12376), 1, + anon_sym_PIPE, + ACTIONS(12380), 1, + anon_sym_AMP, + ACTIONS(12386), 1, + anon_sym_GT_EQ, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12396), 1, + anon_sym_bitor, + ACTIONS(12398), 1, + anon_sym_bitand, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [233239] = 26, + [235189] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12465), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12833), 1, + anon_sym_COLON_RBRACK, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [233330] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3293), 1, - anon_sym_class, - ACTIONS(3295), 1, - anon_sym_struct, - ACTIONS(3297), 1, - anon_sym_union, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10651), 1, - anon_sym_COLON_COLON, - ACTIONS(12383), 1, - anon_sym_LPAREN2, - ACTIONS(12437), 1, - anon_sym_enum, - ACTIONS(12439), 1, - anon_sym_typename, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3123), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(3688), 1, - sym_splice_specifier, - STATE(6401), 1, - sym_type_specifier, - STATE(7364), 1, - sym_argument_list, - STATE(8621), 1, - sym__scope_resolution, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12435), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [233423] = 26, + [235280] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12467), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12835), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [233514] = 27, + [235371] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 1, + ACTIONS(3092), 1, anon_sym_LBRACK_COLON, - ACTIONS(3199), 1, + ACTIONS(3839), 1, anon_sym_class, - ACTIONS(3201), 1, + ACTIONS(3841), 1, anon_sym_struct, - ACTIONS(3203), 1, + ACTIONS(3843), 1, anon_sym_union, - ACTIONS(3207), 1, + ACTIONS(3849), 1, sym_auto, - ACTIONS(3209), 1, + ACTIONS(3851), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10676), 1, + ACTIONS(11095), 1, sym_identifier, - ACTIONS(10678), 1, + ACTIONS(11097), 1, anon_sym_COLON_COLON, - ACTIONS(10680), 1, + ACTIONS(11099), 1, sym_primitive_type, - ACTIONS(12383), 1, + ACTIONS(12755), 1, anon_sym_LPAREN2, - ACTIONS(12471), 1, + ACTIONS(12839), 1, anon_sym_enum, - ACTIONS(12473), 1, + ACTIONS(12841), 1, anon_sym_typename, - STATE(2250), 1, + STATE(2385), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2431), 1, + STATE(2605), 1, sym_splice_specifier, - STATE(2509), 1, - sym_template_type, - STATE(2514), 1, + STATE(2659), 1, sym__splice_specialization_specifier, - STATE(2568), 1, + STATE(2712), 1, + sym_template_type, + STATE(2843), 1, sym_qualified_type_identifier, - STATE(2925), 1, + STATE(3166), 1, sym_decltype_auto, - STATE(4599), 1, + STATE(4765), 1, sym_type_specifier, - STATE(7307), 1, + STATE(7456), 1, sym_argument_list, - STATE(8639), 1, + STATE(8702), 1, sym__scope_resolution, - STATE(2832), 2, + STATE(3053), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12469), 4, + ACTIONS(12837), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2926), 7, + STATE(3167), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -630779,2309 +653253,1856 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [233607] = 26, + [235464] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(3092), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3839), 1, + anon_sym_class, + ACTIONS(3841), 1, + anon_sym_struct, + ACTIONS(3843), 1, + anon_sym_union, + ACTIONS(3849), 1, + sym_auto, + ACTIONS(3851), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11095), 1, + sym_identifier, + ACTIONS(11097), 1, + anon_sym_COLON_COLON, + ACTIONS(11099), 1, + sym_primitive_type, + ACTIONS(12755), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, - anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - ACTIONS(11995), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, - anon_sym_SLASH, - ACTIONS(12009), 1, - anon_sym_PIPE, - ACTIONS(12013), 1, - anon_sym_AMP, - ACTIONS(12019), 1, - anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, - anon_sym_bitor, - ACTIONS(12031), 1, - anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12839), 1, + anon_sym_enum, + ACTIONS(12841), 1, + anon_sym_typename, + STATE(2385), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2605), 1, + sym_splice_specifier, + STATE(2659), 1, + sym__splice_specialization_specifier, + STATE(2712), 1, + sym_template_type, + STATE(2843), 1, + sym_qualified_type_identifier, + STATE(3166), 1, + sym_decltype_auto, + STATE(4823), 1, + sym_type_specifier, + STATE(7405), 1, sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11999), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12001), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12005), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12007), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12011), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12017), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [233698] = 26, + STATE(8702), 1, + sym__scope_resolution, + STATE(3053), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12837), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3167), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [235557] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5998), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12843), 1, + anon_sym_COLON_RBRACK, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [233789] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(6476), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7395), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(12393), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7397), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [233838] = 26, + [235648] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12475), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12845), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [233929] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11570), 1, - sym_identifier, - ACTIONS(11572), 1, - anon_sym_LPAREN2, - ACTIONS(11574), 1, - anon_sym_STAR, - ACTIONS(11576), 1, - anon_sym_AMP_AMP, - ACTIONS(11578), 1, - anon_sym_AMP, - ACTIONS(11582), 1, - sym_primitive_type, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(4600), 1, - sym__type_declarator, - STATE(5362), 1, - sym_pointer_type_declarator, - STATE(11462), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11580), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5356), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [234002] = 26, + [235739] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5897), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12847), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [234093] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11544), 1, - anon_sym_STAR, - ACTIONS(11546), 1, - anon_sym_AMP_AMP, - ACTIONS(11548), 1, - anon_sym_AMP, - STATE(4985), 1, - sym_parameter_list, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8851), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6995), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [234164] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11544), 1, - anon_sym_STAR, - ACTIONS(11546), 1, - anon_sym_AMP_AMP, - ACTIONS(11548), 1, - anon_sym_AMP, - STATE(4985), 1, - sym_parameter_list, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8852), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6924), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6999), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [234235] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11510), 1, - sym_identifier, - ACTIONS(11512), 1, - anon_sym_LPAREN2, - ACTIONS(11514), 1, - anon_sym_STAR, - ACTIONS(11516), 1, - anon_sym_AMP_AMP, - ACTIONS(11518), 1, - anon_sym_AMP, - ACTIONS(11522), 1, - sym_primitive_type, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(8240), 1, - sym__type_declarator, - STATE(8475), 1, - sym_pointer_type_declarator, - STATE(10589), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11520), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(8383), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [234308] = 26, + [235830] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12477), 1, + ACTIONS(12849), 1, anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [234399] = 26, + [235921] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12479), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12851), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [234490] = 26, + [236012] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12481), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12853), 1, + anon_sym_RBRACK, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [234581] = 17, + [236103] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11550), 1, - sym_identifier, - ACTIONS(11552), 1, - anon_sym_LPAREN2, - ACTIONS(11554), 1, - anon_sym_STAR, - ACTIONS(11556), 1, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10348), 1, anon_sym_AMP_AMP, - ACTIONS(11558), 1, + ACTIONS(10350), 1, anon_sym_AMP, - ACTIONS(11562), 1, - sym_primitive_type, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(4920), 1, - sym__type_declarator, - STATE(5606), 1, - sym_pointer_type_declarator, - STATE(10593), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11560), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5602), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [234654] = 26, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10592), 1, + anon_sym_DASH_GT, + ACTIONS(12412), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12418), 1, + anon_sym_requires, + ACTIONS(12858), 1, + anon_sym___asm, + STATE(7509), 1, + sym_ref_qualifier, + STATE(8013), 1, + sym_trailing_return_type, + STATE(8125), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(12415), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(12855), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8313), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7727), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7791), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [236190] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5901), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12861), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [234745] = 26, + [236281] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12483), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12863), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [234836] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2078), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3175), 1, - anon_sym_class, - ACTIONS(3177), 1, - anon_sym_struct, - ACTIONS(3179), 1, - anon_sym_union, - ACTIONS(3185), 1, - sym_auto, - ACTIONS(3187), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10686), 1, - anon_sym_COLON_COLON, - ACTIONS(10737), 1, - sym_primitive_type, - ACTIONS(10747), 1, - sym_identifier, - ACTIONS(12383), 1, - anon_sym_LPAREN2, - ACTIONS(12487), 1, - anon_sym_enum, - ACTIONS(12489), 1, - anon_sym_typename, - STATE(1963), 1, - sym_template_type, - STATE(1994), 1, - sym_qualified_type_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, - sym__splice_specialization_specifier, - STATE(2070), 1, - sym_decltype_auto, - STATE(2113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3395), 1, - sym_type_specifier, - STATE(7305), 1, - sym_argument_list, - STATE(8593), 1, - sym__scope_resolution, - STATE(2063), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12485), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2089), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [234929] = 26, + [236372] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12491), 1, + ACTIONS(12865), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235020] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2078), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3175), 1, - anon_sym_class, - ACTIONS(3177), 1, - anon_sym_struct, - ACTIONS(3179), 1, - anon_sym_union, - ACTIONS(3185), 1, - sym_auto, - ACTIONS(3187), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10686), 1, - anon_sym_COLON_COLON, - ACTIONS(10737), 1, - sym_primitive_type, - ACTIONS(10747), 1, - sym_identifier, - ACTIONS(12383), 1, - anon_sym_LPAREN2, - ACTIONS(12487), 1, - anon_sym_enum, - ACTIONS(12489), 1, - anon_sym_typename, - STATE(1963), 1, - sym_template_type, - STATE(1994), 1, - sym_qualified_type_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, - sym__splice_specialization_specifier, - STATE(2070), 1, - sym_decltype_auto, - STATE(2113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3405), 1, - sym_type_specifier, - STATE(7315), 1, - sym_argument_list, - STATE(8593), 1, - sym__scope_resolution, - STATE(2063), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12485), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2089), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [235113] = 26, + [236463] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6288), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12493), 1, - anon_sym_COLON_RBRACK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235204] = 3, + [236554] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8145), 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(8140), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11878), 1, + sym_identifier, + ACTIONS(11880), 1, anon_sym_LPAREN2, + ACTIONS(11882), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11884), 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_COLON, - 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_DOT_STAR, - anon_sym_DASH_GT, - [235249] = 26, + ACTIONS(11886), 1, + anon_sym_AMP, + ACTIONS(11890), 1, + sym_primitive_type, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(4640), 1, + sym__type_declarator, + STATE(5448), 1, + sym_pointer_type_declarator, + STATE(11657), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11888), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5436), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [236627] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12495), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12867), 1, + anon_sym_COLON_RBRACK, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235340] = 26, + [236718] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5905), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12869), 1, + anon_sym_RBRACK, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235431] = 26, + [236809] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12497), 1, + ACTIONS(12871), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235522] = 26, + [236900] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5913), 1, + ACTIONS(6290), 1, anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235613] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(6476), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7199), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(12393), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7201), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [235662] = 26, + [236991] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6292), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12499), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235753] = 26, + [237082] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6294), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12501), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235844] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, - anon_sym_LPAREN2, - ACTIONS(11508), 1, - sym_primitive_type, - ACTIONS(11564), 1, - anon_sym_STAR, - ACTIONS(11566), 1, - anon_sym_AMP_AMP, - ACTIONS(11568), 1, - anon_sym_AMP, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3540), 1, - sym__type_declarator, - STATE(10884), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [235917] = 26, + [237173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(8564), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12503), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(8559), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON_COLON, + 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, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [236008] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [237218] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3873), 1, + anon_sym_class, + ACTIONS(3875), 1, + anon_sym_struct, + ACTIONS(3877), 1, + anon_sym_union, + ACTIONS(3891), 1, + sym_auto, + ACTIONS(3893), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(11109), 1, + sym_identifier, + ACTIONS(11111), 1, + anon_sym_COLON_COLON, + ACTIONS(12755), 1, + anon_sym_LPAREN2, + ACTIONS(12875), 1, + anon_sym_enum, + ACTIONS(12877), 1, + anon_sym_typename, + STATE(3375), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3711), 1, + sym__splice_specialization_specifier, + STATE(3719), 1, + sym_splice_specifier, + STATE(3759), 1, + sym_template_type, + STATE(3819), 1, + sym_qualified_type_identifier, + STATE(4119), 1, + sym_decltype_auto, + STATE(5466), 1, + sym_type_specifier, + STATE(7443), 1, + sym_argument_list, + STATE(8707), 1, + sym__scope_resolution, + STATE(3967), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12873), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4064), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [237311] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(12505), 1, + ACTIONS(12879), 1, anon_sym_RBRACK, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236099] = 26, + [237402] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3873), 1, + anon_sym_class, + ACTIONS(3875), 1, + anon_sym_struct, + ACTIONS(3877), 1, + anon_sym_union, + ACTIONS(3891), 1, + sym_auto, + ACTIONS(3893), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(11109), 1, + sym_identifier, + ACTIONS(11111), 1, + anon_sym_COLON_COLON, + ACTIONS(12755), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(12875), 1, + anon_sym_enum, + ACTIONS(12877), 1, + anon_sym_typename, + STATE(3375), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3711), 1, + sym__splice_specialization_specifier, + STATE(3719), 1, + sym_splice_specifier, + STATE(3759), 1, + sym_template_type, + STATE(3819), 1, + sym_qualified_type_identifier, + STATE(4119), 1, + sym_decltype_auto, + STATE(5359), 1, + sym_type_specifier, + STATE(7477), 1, + sym_argument_list, + STATE(8707), 1, + sym__scope_resolution, + STATE(3967), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12873), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4064), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [237495] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12507), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12881), 1, + anon_sym_COLON_RBRACK, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236190] = 26, + [237586] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12509), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12883), 1, + anon_sym_RBRACE, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236281] = 26, + [237677] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12511), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12885), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236372] = 26, + [237768] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(11675), 1, + sym_literal_suffix, + ACTIONS(5645), 17, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(11885), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(11893), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12513), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(5638), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [236463] = 26, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [237815] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12515), 1, + ACTIONS(12887), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236554] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2648), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3245), 1, - anon_sym_class, - ACTIONS(3247), 1, - anon_sym_struct, - ACTIONS(3249), 1, - anon_sym_union, - ACTIONS(3255), 1, - sym_auto, - ACTIONS(3257), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10725), 1, - sym_identifier, - ACTIONS(10727), 1, - anon_sym_COLON_COLON, - ACTIONS(10729), 1, - sym_primitive_type, - ACTIONS(12383), 1, - anon_sym_LPAREN2, - ACTIONS(12423), 1, - anon_sym_enum, - ACTIONS(12425), 1, - anon_sym_typename, - STATE(2269), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2519), 1, - sym_splice_specifier, - STATE(2567), 1, - sym__splice_specialization_specifier, - STATE(2591), 1, - sym_template_type, - STATE(2699), 1, - sym_qualified_type_identifier, - STATE(3138), 1, - sym_decltype_auto, - STATE(4698), 1, - sym_type_specifier, - STATE(7287), 1, - sym_argument_list, - STATE(8604), 1, - sym__scope_resolution, - STATE(2973), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12421), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3140), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [236647] = 26, + [237906] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5992), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12889), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236738] = 4, + [237997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, + ACTIONS(7227), 1, anon_sym_COLON_COLON, - ACTIONS(5260), 9, + ACTIONS(5645), 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(5253), 27, + ACTIONS(5638), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -633092,11 +655113,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -633109,1775 +655127,2008 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [236785] = 26, + anon_sym_GT2, + [238044] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6304), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12517), 1, - anon_sym_COLON_RBRACK, - STATE(3784), 1, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12366), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12368), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12372), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12374), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12378), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12384), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [238135] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11943), 1, + sym_identifier, + ACTIONS(11945), 1, + anon_sym_LPAREN2, + ACTIONS(11947), 1, + anon_sym_STAR, + ACTIONS(11949), 1, + anon_sym_AMP_AMP, + ACTIONS(11951), 1, + anon_sym_AMP, + ACTIONS(11955), 1, + sym_primitive_type, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(4997), 1, + sym__type_declarator, + STATE(5644), 1, + sym_pointer_type_declarator, + STATE(10893), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11953), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5575), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [238208] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, + anon_sym_SLASH, + ACTIONS(12235), 1, + anon_sym_PIPE, + ACTIONS(12239), 1, + anon_sym_AMP, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12251), 1, + anon_sym_bitor, + ACTIONS(12253), 1, + anon_sym_bitand, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12891), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236876] = 26, + [238299] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12519), 1, + ACTIONS(12893), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236967] = 26, + [238390] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(6308), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(12521), 1, - anon_sym_RBRACK, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237058] = 26, + [238481] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(12277), 1, + anon_sym_LT, + STATE(3735), 1, + sym_template_argument_list, + ACTIONS(6572), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(6565), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [238532] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6004), 1, + ACTIONS(6310), 1, anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237149] = 26, + [238623] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6006), 1, + ACTIONS(6312), 1, anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237240] = 24, + [238714] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3809), 1, + anon_sym_class, + ACTIONS(3811), 1, + anon_sym_struct, + ACTIONS(3813), 1, + anon_sym_union, + ACTIONS(3819), 1, + sym_auto, + ACTIONS(3821), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(11099), 1, + sym_primitive_type, + ACTIONS(11115), 1, + sym_identifier, + ACTIONS(12755), 1, + anon_sym_LPAREN2, + ACTIONS(12897), 1, + anon_sym_enum, + ACTIONS(12899), 1, + anon_sym_typename, + STATE(2073), 1, + sym_template_type, + STATE(2087), 1, + sym_qualified_type_identifier, + STATE(2104), 1, + sym_splice_specifier, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2210), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2221), 1, + sym_decltype_auto, + STATE(3517), 1, + sym_type_specifier, + STATE(7464), 1, + sym_argument_list, + STATE(8763), 1, + sym__scope_resolution, + STATE(2169), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12895), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2222), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [238807] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(9997), 1, + ACTIONS(10348), 1, anon_sym_AMP_AMP, - ACTIONS(9999), 1, + ACTIONS(10350), 1, anon_sym_AMP, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10254), 1, + ACTIONS(10382), 1, + anon_sym_requires, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10266), 1, + ACTIONS(10592), 1, anon_sym_DASH_GT, - ACTIONS(12150), 1, + ACTIONS(12412), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12170), 1, - anon_sym_requires, - STATE(7415), 1, + ACTIONS(12858), 1, + anon_sym___asm, + STATE(7531), 1, sym_ref_qualifier, - STATE(7926), 1, + STATE(7999), 1, sym_trailing_return_type, - STATE(8243), 1, + STATE(8132), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12167), 2, + ACTIONS(8160), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + ACTIONS(12855), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8170), 2, + STATE(8313), 2, sym__function_postfix, sym_requires_clause, - STATE(7601), 3, + STATE(7724), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7544), 7, - anon_sym_RPAREN, + ACTIONS(7791), 7, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [237327] = 26, + [238894] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5846), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3809), 1, + anon_sym_class, + ACTIONS(3811), 1, + anon_sym_struct, + ACTIONS(3813), 1, + anon_sym_union, + ACTIONS(3819), 1, + sym_auto, + ACTIONS(3821), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(11099), 1, + sym_primitive_type, + ACTIONS(11115), 1, + sym_identifier, + ACTIONS(12755), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(12897), 1, + anon_sym_enum, + ACTIONS(12899), 1, + anon_sym_typename, + STATE(2073), 1, + sym_template_type, + STATE(2087), 1, + sym_qualified_type_identifier, + STATE(2104), 1, + sym_splice_specifier, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2210), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2221), 1, + sym_decltype_auto, + STATE(3548), 1, + sym_type_specifier, + STATE(7476), 1, + sym_argument_list, + STATE(8763), 1, + sym__scope_resolution, + STATE(2169), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12895), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2222), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [238987] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12901), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(7132), 5, + anon_sym_AMP, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10977), 1, + anon_sym_const, + anon_sym___asm, + ACTIONS(7134), 30, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [239034] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12904), 1, + anon_sym_COLON_RBRACK, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237418] = 26, + [239125] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6017), 1, + ACTIONS(6164), 1, anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237509] = 26, + [239216] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6172), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12523), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237600] = 26, + [239307] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12525), 1, + ACTIONS(12906), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237691] = 26, + [239398] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12908), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237782] = 26, + [239489] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12527), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12910), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237873] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10022), 1, - anon_sym_requires, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10264), 1, - anon_sym_DASH_GT, - ACTIONS(12150), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12532), 1, - anon_sym___asm, - STATE(7432), 1, - sym_ref_qualifier, - STATE(7917), 1, - sym_trailing_return_type, - STATE(8006), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(7821), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(12529), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8170), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7600), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7544), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [237960] = 26, + [239580] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6320), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12535), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [238051] = 26, + [239671] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12537), 1, + ACTIONS(12912), 1, anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [238142] = 26, + [239762] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5835), 1, + ACTIONS(6322), 1, anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [238233] = 26, + [239853] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6324), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12539), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [238324] = 16, + [239944] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(11429), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11544), 1, + ACTIONS(11331), 1, + anon_sym_DOT, + ACTIONS(12362), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12370), 1, + anon_sym_SLASH, + ACTIONS(12376), 1, + anon_sym_PIPE, + ACTIONS(12380), 1, + anon_sym_AMP, + ACTIONS(12386), 1, + anon_sym_GT_EQ, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12396), 1, + anon_sym_bitor, + ACTIONS(12398), 1, + anon_sym_bitand, + ACTIONS(12914), 1, + anon_sym_RBRACK, + STATE(5875), 1, + sym_argument_list, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12366), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12368), 2, anon_sym_STAR, - ACTIONS(11546), 1, + anon_sym_PERCENT, + ACTIONS(12372), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12374), 2, anon_sym_AMP_AMP, - ACTIONS(11548), 1, - anon_sym_AMP, - STATE(4985), 1, - sym_parameter_list, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8853), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7003), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [238395] = 26, + anon_sym_and, + ACTIONS(12378), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12388), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12384), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [240035] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6326), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12541), 1, - anon_sym_COLON_RBRACK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [238486] = 26, + [240126] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12543), 1, + ACTIONS(12916), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [238577] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11550), 1, - sym_identifier, - ACTIONS(11552), 1, - anon_sym_LPAREN2, - ACTIONS(11554), 1, - anon_sym_STAR, - ACTIONS(11556), 1, - anon_sym_AMP_AMP, - ACTIONS(11558), 1, - anon_sym_AMP, - ACTIONS(11562), 1, - sym_primitive_type, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(4664), 1, - sym__type_declarator, - STATE(5606), 1, - sym_pointer_type_declarator, - STATE(10593), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11560), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5602), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [238650] = 26, + [240217] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12545), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12918), 1, + anon_sym_COLON_RBRACK, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [238741] = 26, + [240308] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12547), 1, - anon_sym_RBRACE, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12920), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [238832] = 26, + [240399] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(12549), 1, - anon_sym_RBRACK, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12922), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [238923] = 26, + [240490] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6166), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12551), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239014] = 26, + [240581] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12553), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12924), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239105] = 26, + [240672] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(6168), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(12555), 1, - anon_sym_RBRACK, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239196] = 17, + [240763] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(11929), 1, sym_identifier, - ACTIONS(11496), 1, + ACTIONS(11931), 1, anon_sym_LPAREN2, - ACTIONS(11508), 1, - sym_primitive_type, - ACTIONS(11564), 1, + ACTIONS(11933), 1, anon_sym_STAR, - ACTIONS(11566), 1, + ACTIONS(11935), 1, anon_sym_AMP_AMP, - ACTIONS(11568), 1, + ACTIONS(11937), 1, anon_sym_AMP, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(3482), 1, + ACTIONS(11941), 1, + sym_primitive_type, + STATE(3497), 1, sym_alignas_qualifier, - STATE(3490), 1, + STATE(4859), 1, sym__type_declarator, - STATE(10884), 1, + STATE(5594), 1, + sym_pointer_type_declarator, + STATE(11053), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3090), 2, + STATE(3138), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11506), 4, + ACTIONS(11939), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, + STATE(5593), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -634897,1585 +657148,1473 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [239269] = 26, + [240836] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12557), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12926), 1, + anon_sym_COLON_RBRACK, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239360] = 26, + [240927] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6342), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12559), 1, - anon_sym_COLON_RBRACK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239451] = 26, + [241018] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12561), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12928), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239542] = 26, + [241109] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6170), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12563), 1, - anon_sym_COMMA, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239633] = 26, + [241200] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5925), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12930), 1, + anon_sym_COLON_RBRACK, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239724] = 26, + [241291] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6015), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12932), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239815] = 26, + [241382] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5933), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12934), 1, + anon_sym_COLON_RBRACK, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239906] = 26, + [241473] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12565), 1, + ACTIONS(12936), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239997] = 26, + [241564] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12567), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12938), 1, + anon_sym_COLON_RBRACK, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240088] = 26, + [241655] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5974), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12940), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240179] = 26, + [241746] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5830), 1, + ACTIONS(6174), 1, anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240270] = 26, + [241837] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5870), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12942), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240361] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, - anon_sym_LPAREN2, - ACTIONS(11508), 1, - sym_primitive_type, - ACTIONS(11564), 1, - anon_sym_STAR, - ACTIONS(11566), 1, - anon_sym_AMP_AMP, - ACTIONS(11568), 1, - anon_sym_AMP, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(3491), 1, - sym__type_declarator, - STATE(10884), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [240434] = 26, + [241928] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6176), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12569), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240525] = 26, + [242019] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5968), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12944), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240616] = 26, + [242110] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12571), 1, - anon_sym_COLON_RBRACK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12946), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240707] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, - anon_sym_LPAREN2, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(11500), 1, - anon_sym_AMP_AMP, - ACTIONS(11502), 1, - anon_sym_AMP, - ACTIONS(11508), 1, - sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(8279), 1, - sym__type_declarator, - STATE(10974), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [240780] = 26, + [242201] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5970), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12948), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240871] = 26, + [242292] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12573), 1, + ACTIONS(12950), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240962] = 26, + [242383] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12575), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12952), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241053] = 26, + [242474] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(12577), 1, - anon_sym_RBRACK, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12954), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241144] = 26, + [242565] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12579), 1, + ACTIONS(12956), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241235] = 26, + [242656] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6220), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12581), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241326] = 26, + [242747] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12583), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12958), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241417] = 17, + [242838] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(11878), 1, sym_identifier, - ACTIONS(11496), 1, + ACTIONS(11880), 1, anon_sym_LPAREN2, - ACTIONS(11498), 1, + ACTIONS(11882), 1, anon_sym_STAR, - ACTIONS(11500), 1, + ACTIONS(11884), 1, anon_sym_AMP_AMP, - ACTIONS(11502), 1, + ACTIONS(11886), 1, anon_sym_AMP, - ACTIONS(11508), 1, + ACTIONS(11890), 1, sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(8242), 1, + STATE(4759), 1, sym__type_declarator, - STATE(10974), 1, + STATE(5448), 1, + sym_pointer_type_declarator, + STATE(11657), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3090), 2, + STATE(3138), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11506), 4, + ACTIONS(11888), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, + STATE(5436), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -636495,43 +658634,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [241490] = 17, + [242911] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11510), 1, + ACTIONS(11856), 1, sym_identifier, - ACTIONS(11512), 1, + ACTIONS(11858), 1, anon_sym_LPAREN2, - ACTIONS(11514), 1, + ACTIONS(11860), 1, anon_sym_STAR, - ACTIONS(11516), 1, + ACTIONS(11862), 1, anon_sym_AMP_AMP, - ACTIONS(11518), 1, + ACTIONS(11864), 1, anon_sym_AMP, - ACTIONS(11522), 1, + ACTIONS(11870), 1, sym_primitive_type, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(8155), 1, + STATE(8364), 1, sym__type_declarator, - STATE(8475), 1, + STATE(8576), 1, sym_pointer_type_declarator, - STATE(10589), 1, + STATE(11686), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3090), 2, + STATE(3138), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11520), 4, + ACTIONS(11868), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(8383), 5, + STATE(8574), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -636551,346 +658690,352 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [241563] = 26, + [242984] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12585), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12960), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241654] = 26, + [243075] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3706), 1, + anon_sym_class, + ACTIONS(3708), 1, + anon_sym_struct, + ACTIONS(3710), 1, + anon_sym_union, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(11103), 1, + sym_identifier, + ACTIONS(11105), 1, + anon_sym_COLON_COLON, + ACTIONS(12755), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, - anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12587), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12787), 1, + anon_sym_enum, + ACTIONS(12789), 1, + anon_sym_typename, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3126), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3197), 1, + sym_decltype_auto, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(3800), 1, + sym_splice_specifier, + STATE(6509), 1, + sym_type_specifier, + STATE(7411), 1, sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [241745] = 26, + STATE(8738), 1, + sym__scope_resolution, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12785), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [243168] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12589), 1, - anon_sym_COLON_RBRACK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12962), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241836] = 26, + [243259] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3706), 1, + anon_sym_class, + ACTIONS(3708), 1, + anon_sym_struct, + ACTIONS(3710), 1, + anon_sym_union, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(11103), 1, + sym_identifier, + ACTIONS(11105), 1, + anon_sym_COLON_COLON, + ACTIONS(12755), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, - anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12787), 1, + anon_sym_enum, + ACTIONS(12789), 1, + anon_sym_typename, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3126), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3197), 1, + sym_decltype_auto, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(3800), 1, + sym_splice_specifier, + STATE(6544), 1, + sym_type_specifier, + STATE(7447), 1, sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [241927] = 4, + STATE(8738), 1, + sym__scope_resolution, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12785), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [243352] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11322), 1, - sym_literal_suffix, - ACTIONS(5260), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, 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(5253), 21, + STATE(3735), 1, + sym_template_argument_list, + STATE(4015), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7357), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(6981), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7359), 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___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [241974] = 17, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [243407] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11530), 1, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(11532), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11534), 1, + ACTIONS(11904), 1, + sym_primitive_type, + ACTIONS(11912), 1, anon_sym_STAR, - ACTIONS(11536), 1, + ACTIONS(11914), 1, anon_sym_AMP_AMP, - ACTIONS(11538), 1, + ACTIONS(11916), 1, anon_sym_AMP, - ACTIONS(11542), 1, - sym_primitive_type, - STATE(3482), 1, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(3497), 1, sym_alignas_qualifier, - STATE(4715), 1, + STATE(3694), 1, sym__type_declarator, - STATE(5607), 1, - sym_pointer_type_declarator, - STATE(10900), 1, + STATE(11037), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3090), 2, + STATE(3138), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11540), 4, + ACTIONS(11902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5533), 5, + STATE(3152), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -636910,426 +659055,814 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [242047] = 26, + [243480] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5980), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12964), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242138] = 26, + [243571] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + STATE(7511), 1, + sym_alignas_qualifier, + ACTIONS(12969), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7086), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6889), 9, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(6891), 10, + 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, + anon_sym_LBRACK_COLON, + ACTIONS(12966), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [243624] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(12593), 1, - anon_sym_RBRACK, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12972), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242229] = 26, + [243715] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(11872), 1, + anon_sym_STAR, + ACTIONS(11874), 1, + anon_sym_AMP_AMP, + ACTIONS(11876), 1, + anon_sym_AMP, + STATE(5227), 1, + sym_parameter_list, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8957), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6945), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7391), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [243786] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8156), 1, + anon_sym_COLON, + ACTIONS(12974), 1, + anon_sym___attribute__, + ACTIONS(12976), 1, + anon_sym___attribute, + ACTIONS(12978), 1, + anon_sym_LBRACE, + STATE(7570), 1, + sym_field_declaration_list, + STATE(7636), 1, + sym_attribute_specifier, + STATE(9430), 1, + sym_virtual_specifier, + STATE(10623), 1, + sym_base_class_clause, + ACTIONS(7235), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(8160), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7237), 25, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [243849] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12595), 1, + ACTIONS(12980), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242320] = 26, + [243940] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5966), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12982), 1, + anon_sym_COLON_RBRACK, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242411] = 26, + [244031] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(5645), 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(5638), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9236), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_DOT_STAR, + anon_sym_DASH_GT, + [244078] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6276), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12597), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242502] = 26, + [244169] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12599), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12984), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242593] = 8, + [244260] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, + anon_sym_LPAREN2, + ACTIONS(11896), 1, + anon_sym_STAR, + ACTIONS(11898), 1, + anon_sym_AMP_AMP, + ACTIONS(11900), 1, + anon_sym_AMP, + ACTIONS(11904), 1, + sym_primitive_type, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(8430), 1, + sym__type_declarator, + STATE(11156), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [244333] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, + anon_sym_LPAREN2, + ACTIONS(11896), 1, + anon_sym_STAR, + ACTIONS(11898), 1, + anon_sym_AMP_AMP, + ACTIONS(11900), 1, + anon_sym_AMP, + ACTIONS(11904), 1, + sym_primitive_type, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(8406), 1, + sym__type_declarator, + STATE(11156), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [244406] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(3236), 1, + sym_auto, + ACTIONS(3238), 1, + anon_sym_decltype, + ACTIONS(3256), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4399), 1, + anon_sym_class, + ACTIONS(4401), 1, + anon_sym_struct, + ACTIONS(4403), 1, + anon_sym_union, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11050), 1, + sym_primitive_type, + ACTIONS(11057), 1, + sym_identifier, + ACTIONS(11059), 1, anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - STATE(3601), 1, - sym_template_argument_list, - STATE(3914), 1, + ACTIONS(12755), 1, + anon_sym_LPAREN2, + ACTIONS(12988), 1, + anon_sym_enum, + ACTIONS(12990), 1, + anon_sym_typename, + STATE(3770), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7017), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(6688), 4, + STATE(4043), 1, + sym_template_type, + STATE(4204), 1, + sym_qualified_type_identifier, + STATE(4272), 1, + sym_splice_specifier, + STATE(4305), 1, + sym__splice_specialization_specifier, + STATE(4426), 1, + sym_decltype_auto, + STATE(6542), 1, + sym_type_specifier, + STATE(7486), 1, + sym_argument_list, + STATE(8676), 1, + sym__scope_resolution, + STATE(4373), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12986), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7019), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(4430), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [244499] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, anon_sym_LPAREN2, + ACTIONS(11896), 1, anon_sym_STAR, + ACTIONS(11898), 1, anon_sym_AMP_AMP, + ACTIONS(11900), 1, + anon_sym_AMP, + ACTIONS(11904), 1, + sym_primitive_type, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(8404), 1, + sym__type_declarator, + STATE(11156), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -637341,439 +659874,303 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [242648] = 26, + [244572] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5850), 1, + ACTIONS(6130), 1, anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242739] = 26, + [244663] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5978), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12992), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242830] = 26, + [244754] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5899), 1, + ACTIONS(6095), 1, anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11999), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12001), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12005), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12007), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12011), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12017), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [242921] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, - anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12601), 1, - anon_sym_COLON_RBRACK, - STATE(3784), 1, + STATE(5920), 1, sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [243012] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, - anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12603), 1, - anon_sym_COLON_RBRACK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [243103] = 26, + [244845] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5868), 1, + ACTIONS(6097), 1, anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [243194] = 17, + [244936] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11570), 1, + ACTIONS(11929), 1, sym_identifier, - ACTIONS(11572), 1, + ACTIONS(11931), 1, anon_sym_LPAREN2, - ACTIONS(11574), 1, + ACTIONS(11933), 1, anon_sym_STAR, - ACTIONS(11576), 1, + ACTIONS(11935), 1, anon_sym_AMP_AMP, - ACTIONS(11578), 1, + ACTIONS(11937), 1, anon_sym_AMP, - ACTIONS(11582), 1, + ACTIONS(11941), 1, sym_primitive_type, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, - STATE(4630), 1, + STATE(4872), 1, sym__type_declarator, - STATE(5362), 1, + STATE(5594), 1, sym_pointer_type_declarator, - STATE(11462), 1, + STATE(11053), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3090), 2, + STATE(3138), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11580), 4, + ACTIONS(11939), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5356), 5, + STATE(5593), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -637793,907 +660190,1156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [243267] = 26, + [245009] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3236), 1, + sym_auto, + ACTIONS(3238), 1, + anon_sym_decltype, + ACTIONS(3256), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4399), 1, + anon_sym_class, + ACTIONS(4401), 1, + anon_sym_struct, + ACTIONS(4403), 1, + anon_sym_union, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11050), 1, + sym_primitive_type, + ACTIONS(11057), 1, + sym_identifier, + ACTIONS(11059), 1, + anon_sym_COLON_COLON, + ACTIONS(12755), 1, + anon_sym_LPAREN2, + ACTIONS(12988), 1, + anon_sym_enum, + ACTIONS(12990), 1, + anon_sym_typename, + STATE(3770), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4043), 1, + sym_template_type, + STATE(4204), 1, + sym_qualified_type_identifier, + STATE(4272), 1, + sym_splice_specifier, + STATE(4305), 1, + sym__splice_specialization_specifier, + STATE(4426), 1, + sym_decltype_auto, + STATE(6513), 1, + sym_type_specifier, + STATE(7498), 1, + sym_argument_list, + STATE(8676), 1, + sym__scope_resolution, + STATE(4373), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12986), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4430), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [245102] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6000), 1, + ACTIONS(6109), 1, anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [243358] = 26, + [245193] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5852), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11315), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12567), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12583), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12589), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12593), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12595), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12994), 1, + anon_sym_COLON, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12565), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12569), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12571), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12575), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12585), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12581), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [243449] = 26, + [245284] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12605), 1, + ACTIONS(12996), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [243540] = 26, + [245375] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5854), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - ACTIONS(11995), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, - anon_sym_SLASH, - ACTIONS(12009), 1, - anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(11872), 1, + anon_sym_STAR, + ACTIONS(11874), 1, + anon_sym_AMP_AMP, + ACTIONS(11876), 1, anon_sym_AMP, - ACTIONS(12019), 1, - anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, - anon_sym_bitor, - ACTIONS(12031), 1, - anon_sym_bitand, - STATE(5762), 1, - sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11999), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12001), 2, + STATE(5227), 1, + sym_parameter_list, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8963), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6420), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6823), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [245446] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(11872), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12005), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(11874), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12011), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12017), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [243631] = 26, + ACTIONS(11876), 1, + anon_sym_AMP, + STATE(5227), 1, + sym_parameter_list, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8964), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6420), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7345), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [245517] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12201), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12223), 1, - anon_sym_QMARK, - ACTIONS(12225), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(12607), 1, - anon_sym_COLON, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12998), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [243722] = 26, + [245608] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5848), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(13000), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [243813] = 26, + [245699] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5917), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(13002), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [243904] = 26, + [245790] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12609), 1, + ACTIONS(13004), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [243995] = 26, + [245881] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(13006), 1, + anon_sym_COLON_RBRACK, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [244086] = 26, + [245972] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12611), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(13008), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [244177] = 26, + [246063] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(11904), 1, + sym_primitive_type, + ACTIONS(11906), 1, + anon_sym_STAR, + ACTIONS(11908), 1, + anon_sym_AMP_AMP, + ACTIONS(11910), 1, anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12613), 1, - anon_sym_COLON_RBRACK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(4955), 1, + sym__type_declarator, + STATE(11304), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [246136] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, + anon_sym_LPAREN2, + ACTIONS(11904), 1, + sym_primitive_type, + ACTIONS(11906), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(11908), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [244268] = 26, + ACTIONS(11910), 1, + anon_sym_AMP, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(4975), 1, + sym__type_declarator, + STATE(11304), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [246209] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5739), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, + anon_sym_LPAREN2, + ACTIONS(11904), 1, + sym_primitive_type, + ACTIONS(11906), 1, + anon_sym_STAR, + ACTIONS(11908), 1, + anon_sym_AMP_AMP, + ACTIONS(11910), 1, + anon_sym_AMP, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(4995), 1, + sym__type_declarator, + STATE(11304), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [246282] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11929), 1, + sym_identifier, + ACTIONS(11931), 1, + anon_sym_LPAREN2, + ACTIONS(11933), 1, + anon_sym_STAR, + ACTIONS(11935), 1, + anon_sym_AMP_AMP, + ACTIONS(11937), 1, + anon_sym_AMP, + ACTIONS(11941), 1, + sym_primitive_type, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(4869), 1, + sym__type_declarator, + STATE(5594), 1, + sym_pointer_type_declarator, + STATE(11053), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11939), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5593), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [246355] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(13010), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [244359] = 24, + [246446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, + ACTIONS(7085), 4, anon_sym_AMP, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(10264), 1, - anon_sym_DASH_GT, - ACTIONS(12150), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12170), 1, - anon_sym_requires, - ACTIONS(12532), 1, - anon_sym___asm, - STATE(7422), 1, - sym_ref_qualifier, - STATE(7926), 1, - sym_trailing_return_type, - STATE(8012), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(12167), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(12529), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8170), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7586), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7544), 7, + anon_sym_COLON, + anon_sym_const, + ACTIONS(7090), 33, 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_COLON, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [244446] = 4, + anon_sym_requires, + [246491] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11306), 1, - sym_literal_suffix, - ACTIONS(5260), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(7459), 4, 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(5253), 19, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(7457), 32, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, anon_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___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [244493] = 5, + anon_sym_try, + anon_sym_requires, + [246538] = 5, ACTIONS(3), 1, sym_comment, - STATE(6476), 1, + STATE(7124), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7249), 3, + ACTIONS(7223), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(12393), 4, + ACTIONS(13012), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7251), 29, + ACTIONS(7225), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -638723,134 +661369,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [244542] = 4, + [246587] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(5260), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + STATE(6699), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7675), 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(5253), 25, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(13014), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7677), 29, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_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___extension__, + anon_sym___attribute__, + 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_DOT_STAR, - anon_sym_DASH_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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [244589] = 26, + anon_sym_try, + anon_sym_requires, + [246636] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5954), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11943), 1, + sym_identifier, + ACTIONS(11945), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, - anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - ACTIONS(11995), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, - anon_sym_SLASH, - ACTIONS(12009), 1, - anon_sym_PIPE, - ACTIONS(12013), 1, - anon_sym_AMP, - ACTIONS(12019), 1, - anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, - anon_sym_bitor, - ACTIONS(12031), 1, - anon_sym_bitand, - STATE(5762), 1, - sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11999), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(11947), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12005), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(11949), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12011), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12017), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [244680] = 4, + ACTIONS(11951), 1, + anon_sym_AMP, + ACTIONS(11955), 1, + sym_primitive_type, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(4850), 1, + sym__type_declarator, + STATE(5644), 1, + sym_pointer_type_declarator, + STATE(10893), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11953), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5575), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [246709] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12615), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(6720), 5, + STATE(6699), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7681), 3, anon_sym_AMP, anon_sym___attribute, - anon_sym_LBRACK, anon_sym_const, - anon_sym___asm, - ACTIONS(6722), 30, + ACTIONS(13014), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7683), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -638865,592 +661508,369 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - 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, - [244727] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5744), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - ACTIONS(10973), 1, - anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - ACTIONS(11995), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, - anon_sym_SLASH, - ACTIONS(12009), 1, - anon_sym_PIPE, - ACTIONS(12013), 1, - anon_sym_AMP, - ACTIONS(12019), 1, - anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, - anon_sym_bitor, - ACTIONS(12031), 1, - anon_sym_bitand, - STATE(5762), 1, - sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11999), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12001), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12005), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12007), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12011), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12017), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [244818] = 26, + [246758] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12618), 1, + ACTIONS(13016), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [244909] = 3, + [246849] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8145), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + STATE(7135), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7555), 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(8140), 26, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(13018), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7557), 29, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_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_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + 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_DOT_STAR, - anon_sym_DASH_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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [244954] = 27, + anon_sym_try, + anon_sym_requires, + [246898] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3293), 1, - anon_sym_class, - ACTIONS(3295), 1, - anon_sym_struct, - ACTIONS(3297), 1, - anon_sym_union, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10651), 1, - anon_sym_COLON_COLON, - ACTIONS(12383), 1, - anon_sym_LPAREN2, - ACTIONS(12437), 1, - anon_sym_enum, - ACTIONS(12439), 1, - anon_sym_typename, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3123), 1, + STATE(7136), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(3688), 1, - sym_splice_specifier, - STATE(5371), 1, - sym_type_specifier, - STATE(7319), 1, - sym_argument_list, - STATE(8621), 1, - sym__scope_resolution, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12435), 4, + ACTIONS(7783), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(13020), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [245047] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6019), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(7785), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10973), 1, - anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - ACTIONS(11995), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, - anon_sym_SLASH, - ACTIONS(12009), 1, - anon_sym_PIPE, - ACTIONS(12013), 1, - anon_sym_AMP, - ACTIONS(12019), 1, - anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, - anon_sym_bitor, - ACTIONS(12031), 1, - anon_sym_bitand, - STATE(5762), 1, - sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11999), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12001), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12005), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12007), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12011), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12017), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [245138] = 26, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [246947] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(10348), 1, + anon_sym_AMP_AMP, + ACTIONS(10350), 1, anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12620), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10382), 1, + anon_sym_requires, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10624), 1, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [245229] = 26, + ACTIONS(12412), 1, + anon_sym_LBRACK_LBRACK, + STATE(7523), 1, + sym_ref_qualifier, + STATE(7999), 1, + sym_trailing_return_type, + STATE(8373), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8160), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8313), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7723), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7791), 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [247034] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(12622), 1, - anon_sym_RBRACK, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(13022), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245320] = 26, + [247125] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5984), 1, + ACTIONS(6196), 1, anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12017), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [245411] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, - anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12624), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245502] = 3, + [247216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10249), 18, + ACTIONS(10566), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, 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, @@ -639459,7 +661879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(10247), 19, + ACTIONS(10564), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -639470,52 +661890,54 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [245547] = 17, + [247261] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11570), 1, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(11572), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11574), 1, + ACTIONS(11904), 1, + sym_primitive_type, + ACTIONS(11912), 1, anon_sym_STAR, - ACTIONS(11576), 1, + ACTIONS(11914), 1, anon_sym_AMP_AMP, - ACTIONS(11578), 1, + ACTIONS(11916), 1, anon_sym_AMP, - ACTIONS(11582), 1, - sym_primitive_type, - STATE(3482), 1, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(3497), 1, sym_alignas_qualifier, - STATE(4626), 1, + STATE(3604), 1, sym__type_declarator, - STATE(5362), 1, - sym_pointer_type_declarator, - STATE(11462), 1, + STATE(11037), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3090), 2, + STATE(3138), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11580), 4, + ACTIONS(11902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5356), 5, + STATE(3152), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -639535,181 +661957,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [245620] = 26, + [247334] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, + STATE(6699), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7693), 3, anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12626), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, + anon_sym___attribute, + anon_sym_const, + ACTIONS(13014), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7695), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [245711] = 26, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [247383] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5964), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + STATE(6699), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7697), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(13014), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7699), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10973), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - ACTIONS(11995), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, - anon_sym_SLASH, - ACTIONS(12009), 1, - anon_sym_PIPE, - ACTIONS(12013), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [247432] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7143), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7701), 3, anon_sym_AMP, - ACTIONS(12019), 1, - anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, - anon_sym_bitor, - ACTIONS(12031), 1, - anon_sym_bitand, - STATE(5762), 1, - sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11999), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12001), 2, + anon_sym___attribute, + anon_sym_const, + ACTIONS(13024), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7703), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12005), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12007), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12011), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12017), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [245802] = 17, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [247481] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11510), 1, - sym_identifier, - ACTIONS(11512), 1, + STATE(7145), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7707), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(13026), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7709), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11514), 1, anon_sym_STAR, - ACTIONS(11516), 1, anon_sym_AMP_AMP, - ACTIONS(11518), 1, - anon_sym_AMP, - ACTIONS(11522), 1, - sym_primitive_type, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(8147), 1, - sym__type_declarator, - STATE(8475), 1, - sym_pointer_type_declarator, - STATE(10589), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11520), 4, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [247530] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(6699), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7713), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(13014), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(8383), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, + ACTIONS(7715), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -639721,386 +662170,457 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [245875] = 26, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [247579] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12628), 1, - anon_sym_COLON_RBRACK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(13028), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245966] = 26, + [247670] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + STATE(7124), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7717), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(13012), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7719), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10973), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(10977), 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [247719] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + ACTIONS(11327), 1, + anon_sym_LBRACK, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(12630), 1, + ACTIONS(13030), 1, anon_sym_RBRACK, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [246057] = 27, + [247810] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3343), 1, - anon_sym_class, - ACTIONS(3345), 1, - anon_sym_struct, - ACTIONS(3347), 1, - anon_sym_union, - ACTIONS(3361), 1, - sym_auto, - ACTIONS(3363), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10721), 1, - sym_primitive_type, - ACTIONS(10741), 1, - sym_identifier, - ACTIONS(10743), 1, - anon_sym_COLON_COLON, - ACTIONS(12383), 1, - anon_sym_LPAREN2, - ACTIONS(12634), 1, - anon_sym_enum, - ACTIONS(12636), 1, - anon_sym_typename, - STATE(3270), 1, + STATE(6699), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3627), 1, - sym_template_type, - STATE(3634), 1, - sym_splice_specifier, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(3658), 1, - sym_qualified_type_identifier, - STATE(4041), 1, - sym_decltype_auto, - STATE(5387), 1, - sym_type_specifier, - STATE(7298), 1, - sym_argument_list, - STATE(8631), 1, - sym__scope_resolution, - STATE(3887), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12632), 4, + ACTIONS(7723), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(13014), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4042), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [246150] = 26, + ACTIONS(7725), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [247859] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12638), 1, + ACTIONS(13032), 1, anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [246241] = 26, + [247950] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + STATE(6699), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7727), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(13014), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7729), 29, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9236), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [247999] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12640), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(13034), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [246332] = 6, + [248090] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(11895), 1, + ACTIONS(11673), 1, + sym_literal_suffix, + ACTIONS(5645), 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, - STATE(3601), 1, - sym_template_argument_list, - ACTIONS(6208), 4, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(5638), 21, + 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_LBRACE, - ACTIONS(6201), 30, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [246383] = 3, + anon_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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [248137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6762), 4, + ACTIONS(7104), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(6764), 33, + ACTIONS(7106), 33, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -640134,65 +662654,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [246428] = 27, + [248182] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2744), 1, + ACTIONS(2300), 1, anon_sym_LBRACK_COLON, - ACTIONS(3457), 1, + ACTIONS(3734), 1, anon_sym_class, - ACTIONS(3459), 1, + ACTIONS(3736), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(3738), 1, anon_sym_union, - ACTIONS(3465), 1, + ACTIONS(3742), 1, sym_auto, - ACTIONS(3467), 1, + ACTIONS(3744), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10709), 1, + ACTIONS(11008), 1, sym_identifier, - ACTIONS(10711), 1, + ACTIONS(11010), 1, anon_sym_COLON_COLON, - ACTIONS(10713), 1, + ACTIONS(11012), 1, sym_primitive_type, - ACTIONS(12383), 1, + ACTIONS(12755), 1, anon_sym_LPAREN2, - ACTIONS(12387), 1, + ACTIONS(13038), 1, anon_sym_enum, - ACTIONS(12389), 1, + ACTIONS(13040), 1, anon_sym_typename, - STATE(2336), 1, + STATE(2360), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2677), 1, + STATE(2547), 1, sym_splice_specifier, - STATE(2814), 1, - sym_template_type, - STATE(2837), 1, + STATE(2601), 1, sym__splice_specialization_specifier, - STATE(2887), 1, + STATE(2622), 1, + sym_template_type, + STATE(2698), 1, sym_qualified_type_identifier, - STATE(3453), 1, + STATE(2997), 1, sym_decltype_auto, - STATE(5241), 1, + STATE(4663), 1, sym_type_specifier, - STATE(7303), 1, + STATE(7438), 1, sym_argument_list, - STATE(8588), 1, + STATE(8682), 1, sym__scope_resolution, - STATE(3262), 2, + STATE(2942), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12385), 4, + ACTIONS(13036), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3460), 7, + STATE(3067), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -640200,1056 +662720,713 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [246521] = 12, + [248275] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, - anon_sym_COLON, - ACTIONS(12642), 1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10348), 1, + anon_sym_AMP_AMP, + ACTIONS(10350), 1, + anon_sym_AMP, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(12644), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(12646), 1, - anon_sym_LBRACE, - STATE(7481), 1, - sym_field_declaration_list, - STATE(7524), 1, - sym_attribute_specifier, - STATE(9451), 1, - sym_virtual_specifier, - STATE(10426), 1, - sym_base_class_clause, - ACTIONS(6826), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7821), 2, + ACTIONS(10624), 1, + anon_sym_DASH_GT, + ACTIONS(12412), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12418), 1, + anon_sym_requires, + STATE(7565), 1, + sym_ref_qualifier, + STATE(8013), 1, + sym_trailing_return_type, + STATE(8410), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(12415), 2, anon_sym_final, anon_sym_override, - ACTIONS(6828), 25, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_GT2, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8313), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7702), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7791), 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - anon_sym_requires, - [246584] = 26, + [248362] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6198), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12648), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [246675] = 26, + [248453] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6200), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12650), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [246766] = 26, + [248544] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6202), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12652), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [246857] = 26, + [248635] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5815), 1, + ACTIONS(6204), 1, anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [246948] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10022), 1, - anon_sym_requires, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10266), 1, - anon_sym_DASH_GT, - ACTIONS(12150), 1, - anon_sym_LBRACK_LBRACK, - STATE(7431), 1, - sym_ref_qualifier, - STATE(7917), 1, - sym_trailing_return_type, - STATE(8300), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7821), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8170), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7597), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7544), 7, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [247035] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3343), 1, - anon_sym_class, - ACTIONS(3345), 1, - anon_sym_struct, - ACTIONS(3347), 1, - anon_sym_union, - ACTIONS(3361), 1, - sym_auto, - ACTIONS(3363), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10721), 1, - sym_primitive_type, - ACTIONS(10741), 1, - sym_identifier, - ACTIONS(10743), 1, - anon_sym_COLON_COLON, - ACTIONS(12383), 1, - anon_sym_LPAREN2, - ACTIONS(12634), 1, - anon_sym_enum, - ACTIONS(12636), 1, - anon_sym_typename, - STATE(3270), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3627), 1, - sym_template_type, - STATE(3634), 1, - sym_splice_specifier, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(3658), 1, - sym_qualified_type_identifier, - STATE(4041), 1, - sym_decltype_auto, - STATE(5371), 1, - sym_type_specifier, - STATE(7317), 1, - sym_argument_list, - STATE(8631), 1, - sym__scope_resolution, - STATE(3887), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12632), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4042), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [247128] = 26, + [248726] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5986), 1, + ACTIONS(6206), 1, anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [247219] = 26, + [248817] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12654), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(13042), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13044), 1, + anon_sym_RBRACK, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [247310] = 26, + [248908] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5939), 1, + ACTIONS(6306), 1, anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [247401] = 26, + [248999] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12656), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(13046), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [247492] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11544), 1, - anon_sym_STAR, - ACTIONS(11546), 1, - anon_sym_AMP_AMP, - ACTIONS(11548), 1, - anon_sym_AMP, - STATE(4985), 1, - sym_parameter_list, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8850), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6875), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6991), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [247563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6746), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(6751), 33, - 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___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [247608] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(7185), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(7183), 32, - 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___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [247655] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9358), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(9360), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - 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_DOT_STAR, - anon_sym_DASH_GT, - [247700] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(7040), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6798), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(12443), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6800), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [247749] = 26, + [249090] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12658), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(13048), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [247840] = 27, + [249181] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2732), 1, + ACTIONS(3104), 1, anon_sym_LBRACK_COLON, - ACTIONS(3514), 1, + ACTIONS(4064), 1, anon_sym_class, - ACTIONS(3516), 1, + ACTIONS(4066), 1, anon_sym_struct, - ACTIONS(3518), 1, + ACTIONS(4068), 1, anon_sym_union, - ACTIONS(3524), 1, + ACTIONS(4072), 1, sym_auto, - ACTIONS(3526), 1, + ACTIONS(4074), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10733), 1, + ACTIONS(11071), 1, sym_identifier, - ACTIONS(10735), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(10737), 1, + ACTIONS(11075), 1, sym_primitive_type, - ACTIONS(12383), 1, + ACTIONS(12755), 1, anon_sym_LPAREN2, - ACTIONS(12662), 1, + ACTIONS(13052), 1, anon_sym_enum, - ACTIONS(12664), 1, + ACTIONS(13054), 1, anon_sym_typename, - STATE(2272), 1, + STATE(2449), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2530), 1, + STATE(2742), 1, sym_splice_specifier, - STATE(2580), 1, - sym_template_type, - STATE(2597), 1, + STATE(2921), 1, sym__splice_specialization_specifier, - STATE(2641), 1, + STATE(2933), 1, + sym_template_type, + STATE(3031), 1, sym_qualified_type_identifier, - STATE(2982), 1, + STATE(3527), 1, sym_decltype_auto, - STATE(4670), 1, + STATE(5440), 1, sym_type_specifier, - STATE(7382), 1, + STATE(7457), 1, sym_argument_list, - STATE(8624), 1, + STATE(8686), 1, sym__scope_resolution, - STATE(2856), 2, + STATE(3447), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12660), 4, + ACTIONS(13050), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2983), 7, + STATE(3528), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -641257,65 +663434,121 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [247933] = 27, + [249274] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11943), 1, + sym_identifier, + ACTIONS(11945), 1, + anon_sym_LPAREN2, + ACTIONS(11947), 1, + anon_sym_STAR, + ACTIONS(11949), 1, + anon_sym_AMP_AMP, + ACTIONS(11951), 1, + anon_sym_AMP, + ACTIONS(11955), 1, + sym_primitive_type, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(4943), 1, + sym__type_declarator, + STATE(5644), 1, + sym_pointer_type_declarator, + STATE(10893), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11953), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5575), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [249347] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3104), 1, anon_sym_LBRACK_COLON, - ACTIONS(3293), 1, + ACTIONS(4064), 1, anon_sym_class, - ACTIONS(3295), 1, + ACTIONS(4066), 1, anon_sym_struct, - ACTIONS(3297), 1, + ACTIONS(4068), 1, anon_sym_union, - ACTIONS(4800), 1, + ACTIONS(4072), 1, + sym_auto, + ACTIONS(4074), 1, + anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10649), 1, + ACTIONS(11071), 1, sym_identifier, - ACTIONS(10651), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(12383), 1, + ACTIONS(11075), 1, + sym_primitive_type, + ACTIONS(12755), 1, anon_sym_LPAREN2, - ACTIONS(12437), 1, + ACTIONS(13052), 1, anon_sym_enum, - ACTIONS(12439), 1, + ACTIONS(13054), 1, anon_sym_typename, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3123), 1, + STATE(2449), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3561), 1, + STATE(2742), 1, + sym_splice_specifier, + STATE(2921), 1, + sym__splice_specialization_specifier, + STATE(2933), 1, sym_template_type, - STATE(3623), 1, + STATE(3031), 1, sym_qualified_type_identifier, - STATE(3688), 1, - sym_splice_specifier, - STATE(5387), 1, + STATE(3527), 1, + sym_decltype_auto, + STATE(5291), 1, sym_type_specifier, - STATE(7333), 1, + STATE(7468), 1, sym_argument_list, - STATE(8621), 1, + STATE(8686), 1, sym__scope_resolution, - STATE(2949), 2, + STATE(3447), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12435), 4, + ACTIONS(13050), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3528), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -641323,185 +663556,376 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [248026] = 5, + [249440] = 26, ACTIONS(3), 1, sym_comment, - STATE(6476), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7387), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(12393), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7389), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9230), 1, anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(11315), 1, + anon_sym_DOT, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12567), 1, + anon_sym_SLASH, + ACTIONS(12573), 1, + anon_sym_PIPE, + ACTIONS(12577), 1, + anon_sym_AMP, + ACTIONS(12583), 1, + anon_sym_GT_EQ, + ACTIONS(12589), 1, + anon_sym_QMARK, + ACTIONS(12591), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12593), 1, + anon_sym_bitor, + ACTIONS(12595), 1, + anon_sym_bitand, + ACTIONS(13056), 1, + anon_sym_COLON, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(11317), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12563), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12565), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12569), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12571), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [248075] = 5, + anon_sym_and, + ACTIONS(12575), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12585), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12579), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12581), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [249531] = 26, ACTIONS(3), 1, sym_comment, - STATE(6854), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7213), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(12666), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7215), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9230), 1, anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, + anon_sym_SLASH, + ACTIONS(12235), 1, + anon_sym_PIPE, + ACTIONS(12239), 1, + anon_sym_AMP, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12251), 1, + anon_sym_bitor, + ACTIONS(12253), 1, + anon_sym_bitand, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(13058), 1, + anon_sym_SEMI, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12227), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [248124] = 26, + anon_sym_and, + ACTIONS(12237), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [249622] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5876), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12249), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12251), 1, + anon_sym_bitor, + ACTIONS(12253), 1, + anon_sym_bitand, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(13060), 1, + anon_sym_SEMI, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12227), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [249713] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, + anon_sym_SLASH, + ACTIONS(12235), 1, + anon_sym_PIPE, + ACTIONS(12239), 1, + anon_sym_AMP, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(13062), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12241), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [249804] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, + anon_sym_SLASH, + ACTIONS(12235), 1, + anon_sym_PIPE, + ACTIONS(12239), 1, + anon_sym_AMP, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12251), 1, + anon_sym_bitor, + ACTIONS(12253), 1, + anon_sym_bitand, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(13064), 1, + anon_sym_COLON_RBRACK, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12227), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248215] = 5, + [249895] = 17, ACTIONS(3), 1, sym_comment, - STATE(6476), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7391), 3, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11878), 1, + sym_identifier, + ACTIONS(11880), 1, + anon_sym_LPAREN2, + ACTIONS(11882), 1, + anon_sym_STAR, + ACTIONS(11884), 1, + anon_sym_AMP_AMP, + ACTIONS(11886), 1, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(12393), 4, + ACTIONS(11890), 1, + sym_primitive_type, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(4704), 1, + sym__type_declarator, + STATE(5448), 1, + sym_pointer_type_declarator, + STATE(11657), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11888), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7393), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(5436), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -641513,942 +663937,832 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [248264] = 26, + [249968] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, + anon_sym_SLASH, + ACTIONS(12235), 1, + anon_sym_PIPE, + ACTIONS(12239), 1, + anon_sym_AMP, + ACTIONS(12245), 1, + anon_sym_GT_EQ, + ACTIONS(12249), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12251), 1, + anon_sym_bitor, + ACTIONS(12253), 1, + anon_sym_bitand, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(13066), 1, + anon_sym_COMMA, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12227), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [250059] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5996), 1, + ACTIONS(6346), 1, anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12398), 1, anon_sym_bitand, - STATE(5762), 1, + STATE(5875), 1, sym_argument_list, - STATE(5765), 1, + STATE(5920), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, + ACTIONS(12400), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248355] = 27, + [250150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 1, - sym_auto, - ACTIONS(2857), 1, - anon_sym_decltype, - ACTIONS(2875), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3546), 1, - anon_sym_class, - ACTIONS(3548), 1, - anon_sym_struct, - ACTIONS(3550), 1, - anon_sym_union, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10699), 1, - sym_primitive_type, - ACTIONS(10703), 1, + ACTIONS(10566), 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(10564), 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_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [250195] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11856), 1, sym_identifier, - ACTIONS(10705), 1, - anon_sym_COLON_COLON, - ACTIONS(12383), 1, + ACTIONS(11858), 1, anon_sym_LPAREN2, - ACTIONS(12670), 1, - anon_sym_enum, - ACTIONS(12672), 1, - anon_sym_typename, - STATE(3683), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3965), 1, - sym_template_type, - STATE(4048), 1, - sym_qualified_type_identifier, - STATE(4067), 1, - sym_splice_specifier, - STATE(4189), 1, - sym__splice_specialization_specifier, - STATE(4401), 1, - sym_decltype_auto, - STATE(6443), 1, - sym_type_specifier, - STATE(7387), 1, - sym_argument_list, - STATE(8549), 1, - sym__scope_resolution, - STATE(4252), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12668), 4, + ACTIONS(11860), 1, + anon_sym_STAR, + ACTIONS(11862), 1, + anon_sym_AMP_AMP, + ACTIONS(11864), 1, + anon_sym_AMP, + ACTIONS(11870), 1, + sym_primitive_type, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(8339), 1, + sym__type_declarator, + STATE(8576), 1, + sym_pointer_type_declarator, + STATE(11686), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11868), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4402), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [248448] = 26, + STATE(8574), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [250268] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6340), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12674), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248539] = 26, + [250359] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12676), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(13068), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248630] = 26, + [250450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5947), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - ACTIONS(10973), 1, - anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_DOT, - ACTIONS(11995), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(9703), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12009), 1, anon_sym_PIPE, - ACTIONS(12013), 1, anon_sym_AMP, - ACTIONS(12019), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, - anon_sym_bitor, - ACTIONS(12031), 1, - anon_sym_bitand, - STATE(5762), 1, - sym_argument_list, - STATE(5765), 1, - sym_subscript_argument_list, - ACTIONS(10979), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11999), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12001), 2, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9705), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12007), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12011), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, 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, - ACTIONS(12017), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [248721] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [250495] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12678), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(13070), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248812] = 26, + [250586] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5952), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(13072), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248903] = 26, + [250677] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5784), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(13074), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248994] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2078), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3175), 1, - anon_sym_class, - ACTIONS(3177), 1, - anon_sym_struct, - ACTIONS(3179), 1, - anon_sym_union, - ACTIONS(3185), 1, - sym_auto, - ACTIONS(3187), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10684), 1, - sym_identifier, - ACTIONS(10686), 1, - anon_sym_COLON_COLON, - ACTIONS(10688), 1, - sym_primitive_type, - ACTIONS(12383), 1, - anon_sym_LPAREN2, - ACTIONS(12682), 1, - anon_sym_enum, - ACTIONS(12684), 1, - anon_sym_typename, - STATE(1963), 1, - sym_template_type, - STATE(1994), 1, - sym_qualified_type_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2024), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2026), 1, - sym__splice_specialization_specifier, - STATE(2070), 1, - sym_decltype_auto, - STATE(3395), 1, - sym_type_specifier, - STATE(7328), 1, - sym_argument_list, - STATE(8593), 1, - sym__scope_resolution, - STATE(2063), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12680), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2089), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [249087] = 26, + [250768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(8564), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(11885), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12686), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(8559), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, + 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(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [249178] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [250813] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12688), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(13076), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249269] = 26, + [250904] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(12690), 1, - anon_sym_RBRACK, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(12445), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249360] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(6822), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7402), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(12692), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7404), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [249409] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(6893), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7408), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(12694), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7410), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [249458] = 27, + [250995] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 1, - sym_auto, - ACTIONS(2857), 1, - anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2300), 1, anon_sym_LBRACK_COLON, - ACTIONS(3546), 1, + ACTIONS(3734), 1, anon_sym_class, - ACTIONS(3548), 1, + ACTIONS(3736), 1, anon_sym_struct, - ACTIONS(3550), 1, + ACTIONS(3738), 1, anon_sym_union, - ACTIONS(4800), 1, + ACTIONS(3742), 1, + sym_auto, + ACTIONS(3744), 1, + anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10699), 1, - sym_primitive_type, - ACTIONS(10703), 1, + ACTIONS(11008), 1, sym_identifier, - ACTIONS(10705), 1, + ACTIONS(11010), 1, anon_sym_COLON_COLON, - ACTIONS(12383), 1, + ACTIONS(11012), 1, + sym_primitive_type, + ACTIONS(12755), 1, anon_sym_LPAREN2, - ACTIONS(12670), 1, + ACTIONS(13038), 1, anon_sym_enum, - ACTIONS(12672), 1, + ACTIONS(13040), 1, anon_sym_typename, - STATE(3683), 1, + STATE(2360), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3965), 1, - sym_template_type, - STATE(4048), 1, - sym_qualified_type_identifier, - STATE(4067), 1, + STATE(2547), 1, sym_splice_specifier, - STATE(4189), 1, + STATE(2601), 1, sym__splice_specialization_specifier, - STATE(4401), 1, + STATE(2622), 1, + sym_template_type, + STATE(2698), 1, + sym_qualified_type_identifier, + STATE(2997), 1, sym_decltype_auto, - STATE(6419), 1, + STATE(4749), 1, sym_type_specifier, - STATE(7302), 1, + STATE(7425), 1, sym_argument_list, - STATE(8549), 1, + STATE(8682), 1, sym__scope_resolution, - STATE(4252), 2, + STATE(2942), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12668), 4, + ACTIONS(13036), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4402), 7, + STATE(3067), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -642456,1736 +664770,1675 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [249551] = 26, + [251088] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(6218), 1, + anon_sym_RBRACK, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12201), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12223), 1, + ACTIONS(12392), 1, anon_sym_QMARK, - ACTIONS(12225), 1, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(12696), 1, - anon_sym_COLON, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(5875), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249642] = 26, + [251179] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12698), 1, - anon_sym_COLON_RBRACK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(13078), 1, + anon_sym_COMMA, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249733] = 26, + [251270] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12700), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(13080), 1, + anon_sym_SEMI, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249824] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2732), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3514), 1, - anon_sym_class, - ACTIONS(3516), 1, - anon_sym_struct, - ACTIONS(3518), 1, - anon_sym_union, - ACTIONS(3524), 1, - sym_auto, - ACTIONS(3526), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10733), 1, - sym_identifier, - ACTIONS(10735), 1, - anon_sym_COLON_COLON, - ACTIONS(10737), 1, - sym_primitive_type, - ACTIONS(12383), 1, - anon_sym_LPAREN2, - ACTIONS(12662), 1, - anon_sym_enum, - ACTIONS(12664), 1, - anon_sym_typename, - STATE(2272), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2530), 1, - sym_splice_specifier, - STATE(2580), 1, - sym_template_type, - STATE(2597), 1, - sym__splice_specialization_specifier, - STATE(2641), 1, - sym_qualified_type_identifier, - STATE(2982), 1, - sym_decltype_auto, - STATE(4832), 1, - sym_type_specifier, - STATE(7327), 1, - sym_argument_list, - STATE(8624), 1, - sym__scope_resolution, - STATE(2856), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12660), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2983), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [249917] = 26, + [251361] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12702), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(13082), 1, + anon_sym_COMMA, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250008] = 26, + [251452] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12201), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12207), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12211), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12217), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12223), 1, - anon_sym_QMARK, - ACTIONS(12225), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12227), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12229), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(12704), 1, - anon_sym_COLON, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(13084), 1, + anon_sym_COMMA, + STATE(3874), 1, sym_argument_list, - ACTIONS(10971), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12197), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12199), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12203), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12205), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12209), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12219), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12213), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12215), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250099] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1938), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3199), 1, - anon_sym_class, - ACTIONS(3201), 1, - anon_sym_struct, - ACTIONS(3203), 1, - anon_sym_union, - ACTIONS(3207), 1, - sym_auto, - ACTIONS(3209), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10676), 1, - sym_identifier, - ACTIONS(10678), 1, - anon_sym_COLON_COLON, - ACTIONS(10680), 1, - sym_primitive_type, - ACTIONS(12383), 1, - anon_sym_LPAREN2, - ACTIONS(12471), 1, - anon_sym_enum, - ACTIONS(12473), 1, - anon_sym_typename, - STATE(2250), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2431), 1, - sym_splice_specifier, - STATE(2509), 1, - sym_template_type, - STATE(2514), 1, - sym__splice_specialization_specifier, - STATE(2568), 1, - sym_qualified_type_identifier, - STATE(2925), 1, - sym_decltype_auto, - STATE(4636), 1, - sym_type_specifier, - STATE(7375), 1, - sym_argument_list, - STATE(8639), 1, - sym__scope_resolution, - STATE(2832), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12469), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2926), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [250192] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11544), 1, - anon_sym_STAR, - ACTIONS(11546), 1, - anon_sym_AMP_AMP, - ACTIONS(11548), 1, - anon_sym_AMP, - STATE(4985), 1, - sym_parameter_list, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8837), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6497), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [250263] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11544), 1, - anon_sym_STAR, - ACTIONS(11546), 1, - anon_sym_AMP_AMP, - ACTIONS(11548), 1, - anon_sym_AMP, - STATE(4985), 1, - sym_parameter_list, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8838), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7007), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [250334] = 26, + [251543] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12706), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(13086), 1, + anon_sym_COMMA, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250425] = 26, + [251634] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5972), 1, - anon_sym_RBRACK, - ACTIONS(10542), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(10973), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11995), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12003), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(12009), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12013), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12019), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12025), 1, - anon_sym_QMARK, - ACTIONS(12027), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(12029), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12031), 1, + ACTIONS(12253), 1, anon_sym_bitand, - STATE(5762), 1, + ACTIONS(12255), 1, + anon_sym_QMARK, + ACTIONS(13088), 1, + anon_sym_COMMA, + STATE(3874), 1, sym_argument_list, - STATE(5765), 1, + STATE(3900), 1, sym_subscript_argument_list, - ACTIONS(10979), 2, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11999), 2, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12001), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12005), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12007), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12011), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12021), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12033), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12015), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12017), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250516] = 26, + [251725] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(11327), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(11331), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12370), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12392), 1, + anon_sym_QMARK, + ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12396), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12398), 1, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12708), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(13090), 1, + anon_sym_RBRACK, + STATE(5875), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(5920), 1, + sym_subscript_argument_list, + ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12366), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12368), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12372), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12374), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12378), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12388), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12400), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250607] = 26, + [251816] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12710), 1, - anon_sym_RPAREN, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(13092), 1, + anon_sym_COMMA, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250698] = 26, + [251907] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12712), 1, - anon_sym_COLON_RBRACK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(13094), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250789] = 26, + [251998] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12714), 1, + ACTIONS(13096), 1, anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11883), 3, + ACTIONS(12243), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250880] = 26, + [252089] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - ACTIONS(9236), 1, + ACTIONS(9642), 1, anon_sym_LBRACK, - ACTIONS(9240), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(12011), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(12229), 1, anon_sym_SLASH, - ACTIONS(11875), 1, + ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(11879), 1, + ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(11885), 1, + ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(11893), 1, + ACTIONS(12253), 1, anon_sym_bitand, - ACTIONS(11900), 1, + ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12716), 1, - anon_sym_COMMA, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, + ACTIONS(13098), 1, + anon_sym_RPAREN, + STATE(3874), 1, sym_argument_list, - ACTIONS(9242), 2, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11359), 2, + ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + ACTIONS(12225), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11873), 2, + ACTIONS(12233), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11877), 2, + ACTIONS(12237), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11887), 2, + ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11881), 3, + ACTIONS(12241), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [252180] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9876), 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(9878), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(11883), 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [252224] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3092), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(8297), 1, + anon_sym_LBRACE, + ACTIONS(11097), 1, + anon_sym_COLON_COLON, + ACTIONS(13100), 1, + sym_identifier, + STATE(2605), 1, + sym_splice_specifier, + STATE(2659), 1, + sym__splice_specialization_specifier, + STATE(2848), 1, + sym_field_declaration_list, + STATE(3214), 1, + sym__class_declaration, + STATE(3227), 1, + sym__class_declaration_item, + STATE(7806), 1, + sym_ms_declspec_modifier, + STATE(8702), 1, + sym__scope_resolution, + STATE(9504), 1, + sym_virtual_specifier, + STATE(10445), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2475), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2661), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7807), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7472), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [252316] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3092), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(8297), 1, + anon_sym_LBRACE, + ACTIONS(11097), 1, + anon_sym_COLON_COLON, + ACTIONS(13100), 1, + sym_identifier, + STATE(2605), 1, + sym_splice_specifier, + STATE(2659), 1, + sym__splice_specialization_specifier, + STATE(2848), 1, + sym_field_declaration_list, + STATE(3227), 1, + sym__class_declaration_item, + STATE(3231), 1, + sym__class_declaration, + STATE(7806), 1, + sym_ms_declspec_modifier, + STATE(8702), 1, + sym__scope_resolution, + STATE(9504), 1, + sym_virtual_specifier, + STATE(10445), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2475), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2661), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7807), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7472), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [252408] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3092), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(8297), 1, + anon_sym_LBRACE, + ACTIONS(11097), 1, + anon_sym_COLON_COLON, + ACTIONS(13100), 1, + sym_identifier, + STATE(2605), 1, + sym_splice_specifier, + STATE(2659), 1, + sym__splice_specialization_specifier, + STATE(2848), 1, + sym_field_declaration_list, + STATE(3227), 1, + sym__class_declaration_item, + STATE(3233), 1, + sym__class_declaration, + STATE(7806), 1, + sym_ms_declspec_modifier, + STATE(8702), 1, + sym__scope_resolution, + STATE(9504), 1, + sym_virtual_specifier, + STATE(10445), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2475), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2661), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7807), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7472), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [252500] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9764), 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, - [250971] = 27, + anon_sym_DOT, + ACTIONS(9766), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [252544] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(9314), 1, + anon_sym_LBRACE, + ACTIONS(11020), 1, + anon_sym_COLON_COLON, + ACTIONS(13102), 1, + sym_identifier, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3091), 1, + sym__class_declaration, + STATE(3144), 1, + sym__class_declaration_item, + STATE(7481), 1, + sym_splice_specifier, + STATE(7709), 1, + sym_field_declaration_list, + STATE(7823), 1, + sym_ms_declspec_modifier, + STATE(8691), 1, + sym__scope_resolution, + STATE(9483), 1, + sym_virtual_specifier, + STATE(10463), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3060), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7348), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7826), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7480), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [252636] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(9246), 1, + anon_sym_LBRACE, + ACTIONS(11111), 1, + anon_sym_COLON_COLON, + ACTIONS(13104), 1, + sym_identifier, + STATE(3711), 1, + sym__splice_specialization_specifier, + STATE(3719), 1, + sym_splice_specifier, + STATE(3905), 1, + sym_field_declaration_list, + STATE(4057), 1, + sym__class_declaration, + STATE(4060), 1, + sym__class_declaration_item, + STATE(7865), 1, + sym_ms_declspec_modifier, + STATE(8707), 1, + sym__scope_resolution, + STATE(9611), 1, + sym_virtual_specifier, + STATE(10572), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3540), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3728), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7871), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7466), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [252728] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(9246), 1, + anon_sym_LBRACE, + ACTIONS(11111), 1, + anon_sym_COLON_COLON, + ACTIONS(13104), 1, + sym_identifier, + STATE(3711), 1, + sym__splice_specialization_specifier, + STATE(3719), 1, + sym_splice_specifier, + STATE(3905), 1, + sym_field_declaration_list, + STATE(4060), 1, + sym__class_declaration_item, + STATE(4106), 1, + sym__class_declaration, + STATE(7865), 1, + sym_ms_declspec_modifier, + STATE(8707), 1, + sym__scope_resolution, + STATE(9611), 1, + sym_virtual_specifier, + STATE(10572), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3540), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3728), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7871), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7466), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [252820] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3175), 1, - anon_sym_class, - ACTIONS(3177), 1, - anon_sym_struct, - ACTIONS(3179), 1, - anon_sym_union, - ACTIONS(3185), 1, - sym_auto, - ACTIONS(3187), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10684), 1, - sym_identifier, - ACTIONS(10686), 1, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(9246), 1, + anon_sym_LBRACE, + ACTIONS(11111), 1, anon_sym_COLON_COLON, - ACTIONS(10688), 1, - sym_primitive_type, - ACTIONS(12383), 1, - anon_sym_LPAREN2, - ACTIONS(12682), 1, - anon_sym_enum, - ACTIONS(12684), 1, - anon_sym_typename, - STATE(1963), 1, - sym_template_type, - STATE(1994), 1, - sym_qualified_type_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2024), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2026), 1, + ACTIONS(13104), 1, + sym_identifier, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(2070), 1, - sym_decltype_auto, - STATE(3405), 1, - sym_type_specifier, - STATE(7380), 1, - sym_argument_list, - STATE(8593), 1, + STATE(3719), 1, + sym_splice_specifier, + STATE(3905), 1, + sym_field_declaration_list, + STATE(4060), 1, + sym__class_declaration_item, + STATE(4107), 1, + sym__class_declaration, + STATE(7865), 1, + sym_ms_declspec_modifier, + STATE(8707), 1, sym__scope_resolution, - STATE(2063), 2, + STATE(9611), 1, + sym_virtual_specifier, + STATE(10572), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3540), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3728), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7871), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7466), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [252912] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3486), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(13106), 1, + sym_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4504), 1, + sym_splice_specifier, + STATE(4654), 1, + sym_field_declaration_list, + STATE(4884), 1, + sym__class_declaration_item, + STATE(4951), 1, + sym__class_declaration, + STATE(7828), 1, + sym_ms_declspec_modifier, + STATE(8716), 1, + sym__scope_resolution, + STATE(9470), 1, + sym_virtual_specifier, + STATE(10307), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3790), 2, + sym_template_type, sym_splice_type_specifier, - STATE(10976), 2, + STATE(4029), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7478), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, + sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12680), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2089), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [251064] = 26, + [253004] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(5800), 1, + anon_sym_SEMI, + ACTIONS(10616), 1, + sym_literal_suffix, + ACTIONS(5645), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(11893), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12718), 1, - anon_sym_COMMA, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(5638), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [251155] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, - anon_sym_AMP, - ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(12720), 1, - anon_sym_COMMA, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [253052] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9884), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [251246] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(9886), 27, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, - anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12722), 1, anon_sym_COMMA, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [251337] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, - anon_sym_AMP, - ACTIONS(11885), 1, anon_sym_GT_EQ, - ACTIONS(11889), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(11893), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12724), 1, - anon_sym_COMMA, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [253096] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9938), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [251428] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(9940), 25, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, - anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12726), 1, anon_sym_COMMA, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [251519] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, - anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(11893), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12728), 1, - anon_sym_COMMA, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [253140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9740), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(11871), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [251610] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(11645), 1, + ACTIONS(9742), 25, anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, - anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12730), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [251701] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, - anon_sym_SLASH, - ACTIONS(11875), 1, - anon_sym_PIPE, - ACTIONS(11879), 1, - anon_sym_AMP, - ACTIONS(11885), 1, - anon_sym_GT_EQ, - ACTIONS(11889), 1, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(11893), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - ACTIONS(12732), 1, - anon_sym_SEMI, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [253184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9923), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11867), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9925), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 3, 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_QMARK, + 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(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [251792] = 5, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [253228] = 21, ACTIONS(3), 1, sym_comment, - STATE(6871), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7239), 3, - anon_sym_AMP, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7968), 1, + anon_sym_LBRACK, + ACTIONS(10367), 1, + anon_sym_DASH_GT, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10382), 1, + anon_sym_requires, + ACTIONS(13108), 1, + anon_sym___attribute__, + ACTIONS(13111), 1, anon_sym___attribute, - anon_sym_const, - ACTIONS(12734), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7241), 29, + ACTIONS(13114), 1, + anon_sym_LBRACK_LBRACK, + STATE(8057), 1, + sym_trailing_return_type, + STATE(8070), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8160), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8358), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7664), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7966), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [251841] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, - anon_sym_LPAREN2, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(11500), 1, - anon_sym_AMP_AMP, - ACTIONS(11502), 1, - anon_sym_AMP, - ACTIONS(11508), 1, - sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(8291), 1, - sym__type_declarator, - STATE(10974), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [251914] = 6, + [253308] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6748), 1, + ACTIONS(5655), 1, anon_sym_COLON_COLON, - ACTIONS(11895), 1, + ACTIONS(12551), 1, anon_sym_LT, - STATE(2848), 1, + STATE(4054), 1, sym_template_argument_list, - ACTIONS(6746), 4, + ACTIONS(7371), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(6751), 29, + ACTIONS(5657), 29, + 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___extension__, anon_sym___attribute__, anon_sym_LBRACE, @@ -644207,401 +666460,844 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [251964] = 27, + [253358] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9772), 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(9774), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [253402] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(6469), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9027), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10651), 1, - anon_sym_COLON_COLON, - ACTIONS(12736), 1, + ACTIONS(13117), 1, sym_identifier, - STATE(2855), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(2998), 1, + STATE(4654), 1, + sym_field_declaration_list, + STATE(4880), 1, sym__class_declaration, - STATE(3001), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(3688), 1, + STATE(5157), 1, sym_splice_specifier, - STATE(3837), 1, - sym_field_declaration_list, - STATE(7770), 1, + STATE(7818), 1, sym_ms_declspec_modifier, - STATE(8621), 1, + STATE(8756), 1, sym__scope_resolution, - STATE(9411), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10180), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2874), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(3534), 2, + STATE(4029), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7711), 2, + STATE(7819), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7342), 3, + STATE(7409), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [252056] = 27, + [253494] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(6469), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9027), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10651), 1, - anon_sym_COLON_COLON, - ACTIONS(12736), 1, + ACTIONS(13117), 1, sym_identifier, - STATE(2855), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3001), 1, + STATE(4654), 1, + sym_field_declaration_list, + STATE(4884), 1, sym__class_declaration_item, - STATE(3002), 1, + STATE(4951), 1, sym__class_declaration, - STATE(3688), 1, + STATE(5157), 1, sym_splice_specifier, - STATE(3837), 1, - sym_field_declaration_list, - STATE(7770), 1, + STATE(7818), 1, sym_ms_declspec_modifier, - STATE(8621), 1, + STATE(8756), 1, sym__scope_resolution, - STATE(9411), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10180), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2874), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(3534), 2, + STATE(4029), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7711), 2, + STATE(7819), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7342), 3, + STATE(7409), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [252148] = 27, + [253586] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(6469), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13117), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, - sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4859), 1, + STATE(4793), 1, sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(5157), 1, + sym_splice_specifier, + STATE(7818), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8756), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4379), 2, + STATE(4029), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7819), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7409), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [252240] = 27, + [253678] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5645), 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(5638), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [253722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9930), 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(9932), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [253766] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5906), 1, + anon_sym_SEMI, + ACTIONS(10616), 1, + sym_literal_suffix, + ACTIONS(5645), 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(5638), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [253814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9942), 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(9944), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [253858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9946), 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(9948), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [253902] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(7243), 1, + anon_sym_LBRACE, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(13119), 1, sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(2104), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2172), 1, sym_field_declaration_list, - STATE(4680), 1, + STATE(2227), 1, sym__class_declaration, - STATE(4867), 1, + STATE(2228), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(7891), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8763), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9644), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10276), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4379), 2, + STATE(2075), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(2147), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7892), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7492), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [252332] = 27, + [253994] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(7243), 1, + anon_sym_LBRACE, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(13119), 1, sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(2104), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2172), 1, sym_field_declaration_list, - STATE(4684), 1, - sym__class_declaration, - STATE(4867), 1, + STATE(2228), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(2230), 1, + sym__class_declaration, + STATE(7891), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8763), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9644), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10276), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4379), 2, + STATE(2075), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(2147), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7892), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7492), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [252424] = 27, + [254086] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(6463), 1, + anon_sym_STAR, + ACTIONS(6465), 1, + anon_sym_AMP_AMP, + ACTIONS(6467), 1, + anon_sym_AMP, + ACTIONS(8123), 1, + anon_sym_const, + ACTIONS(11793), 1, + anon_sym_LBRACK, + STATE(2726), 1, + sym_alignas_qualifier, + STATE(4706), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8998), 1, + sym__abstract_declarator, + ACTIONS(8125), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7388), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7391), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8117), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [254156] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(7243), 1, + anon_sym_LBRACE, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9027), 1, - anon_sym_LBRACE, - ACTIONS(10651), 1, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - ACTIONS(12736), 1, + ACTIONS(13119), 1, sym_identifier, - STATE(2855), 1, + STATE(2104), 1, + sym_splice_specifier, + STATE(2170), 1, sym__splice_specialization_specifier, - STATE(3001), 1, + STATE(2172), 1, + sym_field_declaration_list, + STATE(2228), 1, sym__class_declaration_item, - STATE(3003), 1, + STATE(2232), 1, sym__class_declaration, - STATE(3688), 1, - sym_splice_specifier, - STATE(3837), 1, - sym_field_declaration_list, - STATE(7770), 1, + STATE(7891), 1, sym_ms_declspec_modifier, - STATE(8621), 1, + STATE(8763), 1, sym__scope_resolution, - STATE(9411), 1, + STATE(9644), 1, sym_virtual_specifier, - STATE(10180), 1, + STATE(10276), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2874), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3534), 2, + STATE(2075), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7711), 2, + STATE(2147), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7892), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7342), 3, + STATE(7492), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [252516] = 3, + [254248] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(12065), 1, + anon_sym_decltype, + ACTIONS(13121), 1, + sym_auto, + STATE(7607), 1, + sym_decltype_auto, + ACTIONS(7223), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7225), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [254300] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(6463), 1, + anon_sym_STAR, + ACTIONS(6465), 1, + anon_sym_AMP_AMP, + ACTIONS(6467), 1, + anon_sym_AMP, + ACTIONS(8123), 1, + anon_sym_const, + ACTIONS(11793), 1, + anon_sym_LBRACK, + STATE(2726), 1, + sym_alignas_qualifier, + STATE(4706), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8984), 1, + sym__abstract_declarator, + ACTIONS(8125), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2488), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7355), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8117), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [254370] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9946), 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(9948), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [254414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9452), 11, + ACTIONS(9768), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -644613,7 +667309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9454), 25, + ACTIONS(9770), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -644639,1142 +667335,1049 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [252560] = 16, + [254458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(9796), 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(9798), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6095), 1, anon_sym_STAR, - ACTIONS(6097), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6099), 1, + anon_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_RBRACK, + 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_DOT_STAR, + anon_sym_DASH_GT, + [254502] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9748), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7784), 1, - anon_sym_const, - ACTIONS(11429), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9750), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(4601), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8859), 1, - sym__abstract_declarator, - ACTIONS(7786), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7150), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6991), 5, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + anon_sym_GT2, + [254546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9764), 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(9766), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7778), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [252630] = 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_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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [254590] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - ACTIONS(12740), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4859), 1, + STATE(4880), 1, sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7727), 1, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8614), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(6098), 2, + STATE(4029), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7743), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7369), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [252722] = 27, + [254682] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(9965), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, - sym_identifier, - ACTIONS(12740), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11048), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + ACTIONS(13123), 1, + sym_identifier, + STATE(4305), 1, sym__splice_specialization_specifier, STATE(4350), 1, - sym_splice_specifier, - STATE(4546), 1, sym_field_declaration_list, - STATE(4680), 1, + STATE(4446), 1, sym__class_declaration, - STATE(4867), 1, + STATE(4448), 1, sym__class_declaration_item, - STATE(7727), 1, + STATE(7326), 1, + sym_splice_specifier, + STATE(7837), 1, sym_ms_declspec_modifier, - STATE(8614), 1, + STATE(8745), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9426), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10236), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6098), 2, + STATE(3966), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7743), 2, + STATE(4296), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7838), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7369), 3, + STATE(7482), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [252814] = 27, + [254774] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5140), 1, + anon_sym_COLON_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(11427), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13125), 1, sym_identifier, - ACTIONS(12740), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4802), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(5472), 1, + sym__splice_specialization_specifier, + STATE(5954), 1, sym_field_declaration_list, - STATE(4684), 1, + STATE(6064), 1, sym__class_declaration, - STATE(4867), 1, + STATE(6065), 1, sym__class_declaration_item, - STATE(7727), 1, + STATE(7867), 1, sym_ms_declspec_modifier, - STATE(8614), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9636), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10429), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6098), 2, + STATE(5279), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7743), 2, + STATE(5423), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7868), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7369), 3, + STATE(7455), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [252906] = 27, + [254866] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5140), 1, + anon_sym_COLON_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9027), 1, + ACTIONS(11427), 1, anon_sym_LBRACE, - ACTIONS(10293), 1, - anon_sym_COLON_COLON, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(12742), 1, + ACTIONS(13125), 1, sym_identifier, - STATE(2855), 1, + STATE(4802), 1, + sym_splice_specifier, + STATE(5472), 1, sym__splice_specialization_specifier, - STATE(2998), 1, - sym__class_declaration, - STATE(3001), 1, - sym__class_declaration_item, - STATE(3837), 1, + STATE(5954), 1, sym_field_declaration_list, - STATE(7086), 1, - sym_splice_specifier, - STATE(7728), 1, + STATE(6065), 1, + sym__class_declaration_item, + STATE(6084), 1, + sym__class_declaration, + STATE(7867), 1, sym_ms_declspec_modifier, - STATE(8605), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9411), 1, + STATE(9636), 1, sym_virtual_specifier, - STATE(10180), 1, + STATE(10429), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2874), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3534), 2, + STATE(5279), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7688), 2, + STATE(5423), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7868), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7363), 3, + STATE(7455), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [252998] = 16, + [254958] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(6095), 1, - anon_sym_STAR, - ACTIONS(6097), 1, - anon_sym_AMP_AMP, - ACTIONS(6099), 1, - anon_sym_AMP, - ACTIONS(7784), 1, - anon_sym_const, - ACTIONS(11429), 1, - anon_sym_LBRACK, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(4601), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8861), 1, - sym__abstract_declarator, - ACTIONS(7786), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7239), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6999), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(7241), 1, anon_sym_COLON, - anon_sym_LBRACE, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7778), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [253068] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(10016), 1, - anon_sym_DASH_GT, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10022), 1, - anon_sym_requires, - ACTIONS(12144), 1, - anon_sym___attribute__, - ACTIONS(12147), 1, - anon_sym___attribute, - ACTIONS(12150), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - STATE(7917), 1, - sym_trailing_return_type, - STATE(7957), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7821), 2, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(9965), 1, + anon_sym_LBRACE, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11048), 1, + anon_sym_COLON_COLON, + ACTIONS(13123), 1, + sym_identifier, + STATE(4305), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_field_declaration_list, + STATE(4448), 1, + sym__class_declaration_item, + STATE(4451), 1, + sym__class_declaration, + STATE(7326), 1, + sym_splice_specifier, + STATE(7837), 1, + sym_ms_declspec_modifier, + STATE(8745), 1, + sym__scope_resolution, + STATE(9426), 1, + sym_virtual_specifier, + STATE(10236), 1, + sym_base_class_clause, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8170), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7546), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7544), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [253148] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10254), 1, + ACTIONS(8236), 2, anon_sym___attribute__, - ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10437), 1, - anon_sym_DASH_GT, - ACTIONS(12747), 1, - anon_sym_requires, - STATE(7476), 1, - sym_ref_qualifier, - STATE(8437), 1, - sym__function_attributes_end, - STATE(8438), 1, - sym_trailing_return_type, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12744), 2, - anon_sym_final, - anon_sym_override, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3966), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4296), 2, + sym_template_type, + sym_splice_type_specifier, STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7618), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7544), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - [253234] = 27, + STATE(7482), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [255050] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4684), 1, + STATE(4880), 1, sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4370), 2, + STATE(4495), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [253326] = 27, + [255142] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4859), 1, - sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(4951), 1, + sym__class_declaration, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4386), 2, + STATE(4495), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [253418] = 27, + [255234] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4680), 1, + STATE(4793), 1, sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4386), 2, + STATE(4495), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [253510] = 27, + [255326] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5140), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(11427), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13125), 1, sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4802), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(5472), 1, + sym__splice_specialization_specifier, + STATE(5954), 1, sym_field_declaration_list, - STATE(4684), 1, + STATE(6033), 1, sym__class_declaration, - STATE(4867), 1, + STATE(6065), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(7867), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9636), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10429), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4386), 2, + STATE(5279), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(5423), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7868), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7455), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [253602] = 3, + [255418] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9480), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + ACTIONS(9642), 1, + anon_sym_LBRACK, + ACTIONS(9646), 1, + anon_sym_DOT, + ACTIONS(12011), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12229), 1, anon_sym_SLASH, + ACTIONS(12235), 1, anon_sym_PIPE, + ACTIONS(12239), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(12245), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(9482), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(12249), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12251), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12253), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(12255), 1, + anon_sym_QMARK, + STATE(3874), 1, + sym_argument_list, + STATE(3900), 1, + sym_subscript_argument_list, + ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [253646] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9554), 11, + ACTIONS(11722), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12225), 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(9556), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12231), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12233), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12237), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12247), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12241), 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [253690] = 27, + ACTIONS(12243), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [255506] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(9965), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11048), 1, + anon_sym_COLON_COLON, + ACTIONS(13123), 1, sym_identifier, - STATE(3682), 1, + STATE(4305), 1, sym__splice_specialization_specifier, STATE(4350), 1, - sym_splice_specifier, - STATE(4546), 1, sym_field_declaration_list, - STATE(4859), 1, - sym__class_declaration, - STATE(4867), 1, + STATE(4448), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(4456), 1, + sym__class_declaration, + STATE(7326), 1, + sym_splice_specifier, + STATE(7837), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8745), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9426), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10236), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4387), 2, + STATE(3966), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(4296), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7838), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7482), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [253782] = 27, + [255598] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4680), 1, + STATE(4880), 1, sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4387), 2, + STATE(4503), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [253874] = 27, + [255690] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4684), 1, - sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(4951), 1, + sym__class_declaration, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4387), 2, + STATE(4503), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [253966] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9503), 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(9505), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [254010] = 27, + [255782] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(3486), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9027), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10293), 1, - anon_sym_COLON_COLON, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(12742), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(2855), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3001), 1, - sym__class_declaration_item, - STATE(3002), 1, - sym__class_declaration, - STATE(3837), 1, - sym_field_declaration_list, - STATE(7086), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(7728), 1, + STATE(4654), 1, + sym_field_declaration_list, + STATE(4793), 1, + sym__class_declaration, + STATE(4884), 1, + sym__class_declaration_item, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8605), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9411), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10180), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2874), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(3534), 2, + STATE(4503), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7688), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7363), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [254102] = 3, + [255874] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8208), 9, + ACTIONS(5906), 1, + anon_sym_SEMI, + ACTIONS(6883), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9236), 1, + anon_sym_LPAREN2, + ACTIONS(9239), 1, + anon_sym_LBRACK, + ACTIONS(5645), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -645784,10 +668387,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(3888), 27, + ACTIONS(5638), 23, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -645798,8 +668399,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -645812,20 +668411,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [254146] = 3, + [255926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9375), 9, + ACTIONS(9736), 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(9377), 27, + ACTIONS(9738), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -645836,11 +668437,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -645853,22 +668451,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [254190] = 3, + anon_sym_GT2, + [255970] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(6463), 1, + anon_sym_STAR, + ACTIONS(6465), 1, + anon_sym_AMP_AMP, + ACTIONS(6467), 1, + anon_sym_AMP, + ACTIONS(8123), 1, + anon_sym_const, + ACTIONS(11793), 1, + anon_sym_LBRACK, + STATE(2726), 1, + sym_alignas_qualifier, + STATE(4706), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8987), 1, + sym__abstract_declarator, + ACTIONS(8125), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2488), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7345), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8117), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [256040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9527), 11, + ACTIONS(9938), 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(9529), 25, + ACTIONS(9940), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -645879,7 +668530,10 @@ 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_RBRACK_RBRACK, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -645893,76 +668547,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [254234] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(9027), 1, - anon_sym_LBRACE, - ACTIONS(10293), 1, - anon_sym_COLON_COLON, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(12742), 1, - sym_identifier, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3001), 1, - sym__class_declaration_item, - STATE(3003), 1, - sym__class_declaration, - STATE(3837), 1, - sym_field_declaration_list, - STATE(7086), 1, - sym_splice_specifier, - STATE(7728), 1, - sym_ms_declspec_modifier, - STATE(8605), 1, - sym__scope_resolution, - STATE(9411), 1, - sym_virtual_specifier, - STATE(10180), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2874), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3534), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7688), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7363), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [254326] = 3, + [256084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9507), 9, + ACTIONS(9919), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -645972,7 +668560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9509), 27, + ACTIONS(9921), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -646000,20 +668588,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [254370] = 3, + [256128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9546), 9, + ACTIONS(9812), 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(9548), 27, + ACTIONS(9814), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -646024,11 +668614,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -646041,85 +668628,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [254414] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(12738), 1, - sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, - sym_splice_specifier, - STATE(4546), 1, - sym_field_declaration_list, - STATE(4859), 1, - sym__class_declaration, - STATE(4867), 1, - sym__class_declaration_item, - STATE(7723), 1, - sym_ms_declspec_modifier, - STATE(8638), 1, - sym__scope_resolution, - STATE(9523), 1, - sym_virtual_specifier, - STATE(10297), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3904), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7747), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [254506] = 3, + anon_sym_GT2, + [256172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9436), 9, + ACTIONS(9804), 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(9438), 27, + ACTIONS(9806), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -646130,11 +668655,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -646147,22 +668669,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [254550] = 3, + anon_sym_GT2, + [256216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9436), 11, + ACTIONS(9599), 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(9438), 25, + ACTIONS(9597), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -646173,8 +668694,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -646187,11 +668711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [254594] = 3, + [256260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9444), 9, + ACTIONS(8598), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -646201,7 +668724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9446), 27, + ACTIONS(3488), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -646215,8 +668738,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -646229,24 +668752,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [254638] = 3, + [256304] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9507), 11, + ACTIONS(5906), 1, + anon_sym_SEMI, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(5645), 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(9509), 25, + ACTIONS(5638), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -646255,7 +668779,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, @@ -646269,11 +668795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [254682] = 3, + [256352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9511), 11, + ACTIONS(9822), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -646285,7 +668810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9513), 25, + ACTIONS(9824), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -646311,205 +668836,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [254726] = 27, + [256396] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(9596), 1, - anon_sym_LBRACE, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10697), 1, - anon_sym_COLON_COLON, - ACTIONS(12750), 1, - sym_identifier, - STATE(4189), 1, - sym__splice_specialization_specifier, - STATE(4257), 1, - sym_field_declaration_list, - STATE(4395), 1, - sym__class_declaration, - STATE(4400), 1, - sym__class_declaration_item, - STATE(7130), 1, - sym_splice_specifier, - STATE(7697), 1, - sym_ms_declspec_modifier, - STATE(8634), 1, - sym__scope_resolution, - STATE(9428), 1, - sym_virtual_specifier, - STATE(10315), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(6463), 1, + anon_sym_STAR, + ACTIONS(6465), 1, + anon_sym_AMP_AMP, + ACTIONS(6467), 1, + anon_sym_AMP, + ACTIONS(8123), 1, + anon_sym_const, + ACTIONS(11793), 1, + anon_sym_LBRACK, + STATE(2726), 1, + sym_alignas_qualifier, + STATE(4706), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(9003), 1, + sym__abstract_declarator, + ACTIONS(8125), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3858), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4170), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7699), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7304), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [254818] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(6832), 1, + STATE(2488), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6823), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(9596), 1, anon_sym_LBRACE, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10697), 1, - anon_sym_COLON_COLON, - ACTIONS(12750), 1, - sym_identifier, - STATE(4189), 1, - sym__splice_specialization_specifier, - STATE(4257), 1, - sym_field_declaration_list, - STATE(4400), 1, - sym__class_declaration_item, - STATE(4408), 1, - sym__class_declaration, - STATE(7130), 1, - sym_splice_specifier, - STATE(7697), 1, - sym_ms_declspec_modifier, - STATE(8634), 1, - sym__scope_resolution, - STATE(9428), 1, - sym_virtual_specifier, - STATE(10315), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3858), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4170), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7699), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7304), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [254910] = 27, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8117), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [256466] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9596), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10697), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(12750), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13127), 1, sym_identifier, - STATE(4189), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(4257), 1, - sym_field_declaration_list, - STATE(4400), 1, + STATE(3144), 1, sym__class_declaration_item, - STATE(4411), 1, + STATE(3190), 1, sym__class_declaration, - STATE(7130), 1, + STATE(3863), 1, + sym_field_declaration_list, + STATE(7260), 1, sym_splice_specifier, - STATE(7697), 1, + STATE(7859), 1, sym_ms_declspec_modifier, - STATE(8634), 1, + STATE(8711), 1, sym__scope_resolution, - STATE(9428), 1, + STATE(9550), 1, sym_virtual_specifier, - STATE(10315), 1, + STATE(10518), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3858), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4170), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(7699), 2, + STATE(3609), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7860), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7304), 3, + STATE(7475), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [255002] = 3, + [256558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9531), 11, + ACTIONS(9599), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -646521,7 +668970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9533), 25, + ACTIONS(9597), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -646547,326 +668996,454 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [255046] = 27, + [256602] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7087), 1, + anon_sym_COLON_COLON, + ACTIONS(12277), 1, + anon_sym_LT, + STATE(2992), 1, + sym_template_argument_list, + ACTIONS(7085), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(7090), 29, + 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___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [256652] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3486), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(13106), 1, + sym_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4504), 1, + sym_splice_specifier, + STATE(4654), 1, + sym_field_declaration_list, + STATE(4880), 1, + sym__class_declaration, + STATE(4884), 1, + sym__class_declaration_item, + STATE(7828), 1, + sym_ms_declspec_modifier, + STATE(8716), 1, + sym__scope_resolution, + STATE(9470), 1, + sym_virtual_specifier, + STATE(10307), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3790), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4473), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7478), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [256744] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4859), 1, - sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(4951), 1, + sym__class_declaration, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4370), 2, + STATE(4473), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [255138] = 6, + [256836] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6748), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3486), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(12116), 1, - anon_sym_LT, - STATE(4211), 1, - sym_template_argument_list, - ACTIONS(6746), 4, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(7241), 1, anon_sym_COLON, - anon_sym_const, - ACTIONS(6751), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym___attribute__, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(10069), 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, + ACTIONS(13106), 1, + sym_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4504), 1, + sym_splice_specifier, + STATE(4654), 1, + sym_field_declaration_list, + STATE(4793), 1, + sym__class_declaration, + STATE(4884), 1, + sym__class_declaration_item, + STATE(7828), 1, + sym_ms_declspec_modifier, + STATE(8716), 1, + sym__scope_resolution, + STATE(9470), 1, + sym_virtual_specifier, + STATE(10307), 1, + sym_base_class_clause, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [255188] = 27, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3790), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4473), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7478), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [256928] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9027), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10590), 1, - anon_sym_COLON_COLON, - ACTIONS(12752), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(2855), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(2998), 1, - sym__class_declaration, - STATE(3001), 1, - sym__class_declaration_item, - STATE(7299), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(7605), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(7750), 1, + STATE(4880), 1, + sym__class_declaration, + STATE(4884), 1, + sym__class_declaration_item, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8564), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9372), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10346), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2874), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(7225), 2, + STATE(4474), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7748), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7338), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [255280] = 27, + [257020] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9027), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10590), 1, - anon_sym_COLON_COLON, - ACTIONS(12752), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(2855), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3001), 1, - sym__class_declaration_item, - STATE(3002), 1, - sym__class_declaration, - STATE(7299), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(7605), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(7750), 1, + STATE(4884), 1, + sym__class_declaration_item, + STATE(4951), 1, + sym__class_declaration, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8564), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9372), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10346), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2874), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(7225), 2, + STATE(4474), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7748), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7338), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [255372] = 27, + [257112] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9027), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10590), 1, - anon_sym_COLON_COLON, - ACTIONS(12752), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(2855), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3001), 1, - sym__class_declaration_item, - STATE(3003), 1, - sym__class_declaration, - STATE(7299), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(7605), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(7750), 1, + STATE(4793), 1, + sym__class_declaration, + STATE(4884), 1, + sym__class_declaration_item, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8564), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9372), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10346), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2874), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(7225), 2, + STATE(4474), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7748), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7338), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [255464] = 3, + [257204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9432), 11, + ACTIONS(4930), 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(9434), 25, + ACTIONS(4928), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -646877,8 +669454,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -646891,21 +669471,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [255508] = 3, + [257248] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(9314), 1, + anon_sym_LBRACE, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13127), 1, + sym_identifier, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3144), 1, + sym__class_declaration_item, + STATE(3155), 1, + sym__class_declaration, + STATE(3863), 1, + sym_field_declaration_list, + STATE(7260), 1, + sym_splice_specifier, + STATE(7859), 1, + sym_ms_declspec_modifier, + STATE(8711), 1, + sym__scope_resolution, + STATE(9550), 1, + sym_virtual_specifier, + STATE(10518), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3060), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3609), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7860), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7475), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [257340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9511), 9, + ACTIONS(9826), 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(9513), 27, + ACTIONS(9828), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -646916,11 +669562,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -646933,20 +669576,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [255552] = 3, + anon_sym_GT2, + [257384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9558), 9, + ACTIONS(9792), 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(9560), 27, + ACTIONS(9794), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -646957,11 +669603,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -646974,113 +669617,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [255596] = 27, + anon_sym_GT2, + [257428] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13127), 1, sym_identifier, - STATE(3682), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(4350), 1, - sym_splice_specifier, - STATE(4546), 1, - sym_field_declaration_list, - STATE(4680), 1, + STATE(3091), 1, sym__class_declaration, - STATE(4867), 1, + STATE(3144), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(3863), 1, + sym_field_declaration_list, + STATE(7260), 1, + sym_splice_specifier, + STATE(7859), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8711), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9550), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10518), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(4370), 2, + STATE(3609), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7860), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7475), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [255688] = 16, + [257520] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(6095), 1, + ACTIONS(6463), 1, anon_sym_STAR, - ACTIONS(6097), 1, + ACTIONS(6465), 1, anon_sym_AMP_AMP, - ACTIONS(6099), 1, + ACTIONS(6467), 1, anon_sym_AMP, - ACTIONS(7784), 1, + ACTIONS(8123), 1, anon_sym_const, - ACTIONS(11429), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - STATE(2592), 1, + STATE(2726), 1, sym_alignas_qualifier, - STATE(4601), 1, + STATE(4706), 1, sym_parameter_list, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(8877), 1, + STATE(8992), 1, sym__abstract_declarator, - ACTIONS(7786), 2, + ACTIONS(8125), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2399), 2, + STATE(7226), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6497), 5, + ACTIONS(7343), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7778), 12, + ACTIONS(8117), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -647093,10 +669737,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [255758] = 3, + [257590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9554), 9, + ACTIONS(9736), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -647106,7 +669750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9556), 27, + ACTIONS(9738), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -647134,51 +669778,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [255802] = 3, + [257634] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9391), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(12974), 1, + anon_sym___attribute__, + ACTIONS(12976), 1, + anon_sym___attribute, + ACTIONS(13129), 1, + anon_sym_COLON, + ACTIONS(13131), 1, + anon_sym_LBRACE, + STATE(7532), 1, + sym__enum_base_clause, + STATE(7584), 1, + sym_enumerator_list, + STATE(7646), 1, + sym_attribute_specifier, + ACTIONS(8000), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(9393), 27, - anon_sym_DOT_DOT_DOT, + anon_sym_const, + ACTIONS(8002), 27, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, 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_DOT_STAR, - anon_sym_DASH_GT, - [255846] = 3, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [257692] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9523), 9, + ACTIONS(5796), 1, + anon_sym_SEMI, + ACTIONS(10616), 1, + sym_literal_suffix, + ACTIONS(5645), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -647187,10 +669842,15 @@ static const uint16_t ts_small_parse_table[] = { 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(9525), 27, + ACTIONS(5638), 19, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -647203,218 +669863,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, 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_DOT_STAR, anon_sym_DASH_GT, - [255890] = 27, + [257740] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4859), 1, + STATE(4880), 1, sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4313), 2, + STATE(4528), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [255982] = 27, + [257832] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4680), 1, - sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(4951), 1, + sym__class_declaration, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4313), 2, + STATE(4528), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [256074] = 27, + [257924] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4684), 1, + STATE(4793), 1, sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4313), 2, + STATE(4528), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [256166] = 3, + [258016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4930), 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(4928), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [258060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9546), 11, + ACTIONS(9896), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -647426,7 +670120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9548), 25, + ACTIONS(9898), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -647452,313 +670146,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [256210] = 27, + [258104] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4859), 1, - sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(4951), 1, + sym__class_declaration, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4314), 2, + STATE(4533), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [256302] = 27, + [258196] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4680), 1, + STATE(4793), 1, sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4314), 2, + STATE(4533), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [256394] = 27, + [258288] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4684), 1, + STATE(4793), 1, sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4314), 2, + STATE(4029), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [256486] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(6095), 1, - anon_sym_STAR, - ACTIONS(6097), 1, - anon_sym_AMP_AMP, - ACTIONS(6099), 1, - anon_sym_AMP, - ACTIONS(7784), 1, - anon_sym_const, - ACTIONS(11429), 1, - anon_sym_LBRACK, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(4601), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8868), 1, - sym__abstract_declarator, - ACTIONS(7786), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2399), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7007), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7778), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [256556] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(6095), 1, - anon_sym_STAR, - ACTIONS(6097), 1, - anon_sym_AMP_AMP, - ACTIONS(6099), 1, - anon_sym_AMP, - ACTIONS(7784), 1, - anon_sym_const, - ACTIONS(11429), 1, - anon_sym_LBRACK, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(4601), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8879), 1, - sym__abstract_declarator, - ACTIONS(7786), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2399), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6995), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7778), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [256626] = 3, + [258380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9428), 9, + ACTIONS(9808), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -647768,7 +670354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9430), 27, + ACTIONS(9810), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -647796,205 +670382,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [256670] = 27, + [258424] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(3256), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9596), 1, + ACTIONS(9965), 1, anon_sym_LBRACE, - ACTIONS(10705), 1, + ACTIONS(11059), 1, anon_sym_COLON_COLON, - ACTIONS(12754), 1, + ACTIONS(13133), 1, sym_identifier, - STATE(4067), 1, + STATE(4272), 1, sym_splice_specifier, - STATE(4189), 1, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(4257), 1, + STATE(4350), 1, sym_field_declaration_list, - STATE(4395), 1, + STATE(4446), 1, sym__class_declaration, - STATE(4400), 1, - sym__class_declaration_item, - STATE(7712), 1, - sym_ms_declspec_modifier, - STATE(8549), 1, - sym__scope_resolution, - STATE(9428), 1, - sym_virtual_specifier, - STATE(10315), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3858), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4170), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7755), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7323), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [256762] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(2875), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(9596), 1, - anon_sym_LBRACE, - ACTIONS(10705), 1, - anon_sym_COLON_COLON, - ACTIONS(12754), 1, - sym_identifier, - STATE(4067), 1, - sym_splice_specifier, - STATE(4189), 1, - sym__splice_specialization_specifier, - STATE(4257), 1, - sym_field_declaration_list, - STATE(4400), 1, + STATE(4448), 1, sym__class_declaration_item, - STATE(4408), 1, - sym__class_declaration, - STATE(7712), 1, + STATE(7852), 1, sym_ms_declspec_modifier, - STATE(8549), 1, + STATE(8676), 1, sym__scope_resolution, - STATE(9428), 1, + STATE(9426), 1, sym_virtual_specifier, - STATE(10315), 1, + STATE(10236), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3858), 2, + STATE(3966), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4170), 2, + STATE(4296), 2, sym_template_type, sym_splice_type_specifier, - STATE(7755), 2, + STATE(7853), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7323), 3, + STATE(7450), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [256854] = 27, + [258516] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(3256), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9596), 1, + ACTIONS(9965), 1, anon_sym_LBRACE, - ACTIONS(10705), 1, + ACTIONS(11059), 1, anon_sym_COLON_COLON, - ACTIONS(12754), 1, + ACTIONS(13133), 1, sym_identifier, - STATE(4067), 1, + STATE(4272), 1, sym_splice_specifier, - STATE(4189), 1, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(4257), 1, + STATE(4350), 1, sym_field_declaration_list, - STATE(4400), 1, + STATE(4448), 1, sym__class_declaration_item, - STATE(4411), 1, + STATE(4451), 1, sym__class_declaration, - STATE(7712), 1, + STATE(7852), 1, sym_ms_declspec_modifier, - STATE(8549), 1, + STATE(8676), 1, sym__scope_resolution, - STATE(9428), 1, + STATE(9426), 1, sym_virtual_specifier, - STATE(10315), 1, + STATE(10236), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3858), 2, + STATE(3966), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4170), 2, + STATE(4296), 2, sym_template_type, sym_splice_type_specifier, - STATE(7755), 2, + STATE(7853), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7323), 3, + STATE(7450), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [256946] = 3, + [258608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5260), 9, + ACTIONS(9830), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -648004,7 +670525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(5253), 27, + ACTIONS(9832), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -648032,51 +670553,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [256990] = 3, + [258652] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 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(9564), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [257034] = 3, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3256), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(9965), 1, + anon_sym_LBRACE, + ACTIONS(11059), 1, + anon_sym_COLON_COLON, + ACTIONS(13133), 1, + sym_identifier, + STATE(4272), 1, + sym_splice_specifier, + STATE(4305), 1, + sym__splice_specialization_specifier, + STATE(4350), 1, + sym_field_declaration_list, + STATE(4448), 1, + sym__class_declaration_item, + STATE(4456), 1, + sym__class_declaration, + STATE(7852), 1, + sym_ms_declspec_modifier, + STATE(8676), 1, + sym__scope_resolution, + STATE(9426), 1, + sym_virtual_specifier, + STATE(10236), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3966), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4296), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7853), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7450), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [258744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9432), 9, + ACTIONS(9740), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -648086,7 +670631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9434), 27, + ACTIONS(9742), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -648114,215 +670659,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [257078] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9566), 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(9568), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [257122] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9375), 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(9377), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [257166] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9558), 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(9560), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [257210] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9519), 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(9521), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [257254] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9538), 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(9540), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [257298] = 3, + [258788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9420), 9, + ACTIONS(9856), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -648332,7 +670672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9422), 27, + ACTIONS(9858), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -648360,482 +670700,448 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [257342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9480), 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(9482), 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_RBRACK_RBRACK, - 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_DOT_STAR, - anon_sym_DASH_GT, - [257386] = 3, + [258832] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9379), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(12974), 1, + anon_sym___attribute__, + ACTIONS(12976), 1, + anon_sym___attribute, + ACTIONS(13129), 1, + anon_sym_COLON, + ACTIONS(13131), 1, + anon_sym_LBRACE, + STATE(7534), 1, + sym__enum_base_clause, + STATE(7572), 1, + sym_enumerator_list, + STATE(7622), 1, + sym_attribute_specifier, + ACTIONS(8006), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(9381), 27, - anon_sym_DOT_DOT_DOT, + anon_sym_const, + ACTIONS(8008), 27, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___extension__, 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_DOT_STAR, - anon_sym_DASH_GT, - [257430] = 27, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [258890] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4859), 1, + STATE(4880), 1, sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4330), 2, + STATE(4415), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [257522] = 27, + [258982] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4680), 1, - sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(4951), 1, + sym__class_declaration, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4330), 2, + STATE(4415), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [257614] = 27, + [259074] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4684), 1, + STATE(4793), 1, sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4330), 2, + STATE(4415), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [257706] = 27, + [259166] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4859), 1, + STATE(4880), 1, sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4331), 2, + STATE(4418), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [257798] = 27, + [259258] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4680), 1, - sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(4951), 1, + sym__class_declaration, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4331), 2, + STATE(4418), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [257890] = 27, + [259350] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4684), 1, + STATE(4793), 1, sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4331), 2, + STATE(4418), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [257982] = 3, + [259442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9416), 9, + ACTIONS(9860), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -648845,7 +671151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9418), 27, + ACTIONS(9862), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -648873,10 +671179,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [258026] = 3, + [259486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9412), 9, + ACTIONS(9812), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -648886,7 +671192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9414), 27, + ACTIONS(9814), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -648914,10 +671220,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [258070] = 3, + [259530] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8598), 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(3488), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [259574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9542), 9, + ACTIONS(9872), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -648927,7 +671274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9544), 27, + ACTIONS(9874), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -648955,22 +671302,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [258114] = 3, + [259618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9379), 11, + ACTIONS(9756), 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(9381), 25, + ACTIONS(9758), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -648981,8 +671326,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -648995,700 +671343,685 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [258158] = 25, + [259662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - ACTIONS(9236), 1, - anon_sym_LBRACK, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(11645), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11869), 1, + ACTIONS(9856), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(11875), 1, anon_sym_PIPE, - ACTIONS(11879), 1, anon_sym_AMP, - ACTIONS(11885), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(11889), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11891), 1, - anon_sym_bitor, - ACTIONS(11893), 1, - anon_sym_bitand, - ACTIONS(11900), 1, - anon_sym_QMARK, - STATE(3784), 1, - sym_subscript_argument_list, - STATE(3786), 1, - sym_argument_list, - ACTIONS(9242), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11359), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11865), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11867), 2, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9858), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(11871), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11873), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11877), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11881), 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(11883), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [258246] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [259706] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4859), 1, + STATE(4880), 1, sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4346), 2, + STATE(4435), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [258338] = 27, + [259798] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4680), 1, - sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(4951), 1, + sym__class_declaration, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4346), 2, + STATE(4435), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [258430] = 27, + [259890] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4684), 1, + STATE(4793), 1, sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4346), 2, + STATE(4435), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [258522] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9566), 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(9568), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [258566] = 27, + [259982] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4859), 1, + STATE(4880), 1, sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4347), 2, + STATE(4436), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [258658] = 27, + [260074] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4680), 1, - sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(4951), 1, + sym__class_declaration, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4347), 2, + STATE(4436), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [258750] = 27, + [260166] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4684), 1, + STATE(4793), 1, sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4347), 2, + STATE(4436), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [258842] = 27, + [260258] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2078), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(6834), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(10686), 1, - anon_sym_COLON_COLON, - ACTIONS(12756), 1, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(13106), 1, sym_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(2069), 1, + STATE(4504), 1, + sym_splice_specifier, + STATE(4654), 1, sym_field_declaration_list, - STATE(2097), 1, + STATE(4880), 1, sym__class_declaration, - STATE(2134), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7751), 1, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8593), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9311), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10472), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1966), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2067), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(7691), 2, + STATE(4501), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7293), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [258934] = 27, + [260350] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5800), 1, + anon_sym_SEMI, + ACTIONS(6883), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9236), 1, + anon_sym_LPAREN2, + ACTIONS(9239), 1, + anon_sym_LBRACK, + ACTIONS(5645), 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(5638), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [260402] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2078), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(6834), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(10686), 1, - anon_sym_COLON_COLON, - ACTIONS(12756), 1, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(13106), 1, sym_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(2069), 1, + STATE(4504), 1, + sym_splice_specifier, + STATE(4654), 1, sym_field_declaration_list, - STATE(2107), 1, - sym__class_declaration, - STATE(2134), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7751), 1, + STATE(4951), 1, + sym__class_declaration, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8593), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9311), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10472), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1966), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2067), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(7691), 2, + STATE(4501), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7293), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [259026] = 27, + [260494] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2078), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(6834), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(10686), 1, - anon_sym_COLON_COLON, - ACTIONS(12756), 1, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(13106), 1, sym_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(2069), 1, + STATE(4504), 1, + sym_splice_specifier, + STATE(4654), 1, sym_field_declaration_list, - STATE(2108), 1, + STATE(4793), 1, sym__class_declaration, - STATE(2134), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7751), 1, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8593), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9311), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10472), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1966), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2067), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(7691), 2, + STATE(4501), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7293), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [259118] = 3, + [260586] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 9, + ACTIONS(5800), 1, + anon_sym_SEMI, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(5645), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -649698,9 +672031,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9564), 27, + ACTIONS(5638), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -649713,7 +672045,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -649726,646 +672057,607 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [259162] = 27, + [260634] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(2300), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8158), 1, + anon_sym_LBRACE, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(11010), 1, + anon_sym_COLON_COLON, + ACTIONS(13135), 1, sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(2547), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(2601), 1, + sym__splice_specialization_specifier, + STATE(2692), 1, sym_field_declaration_list, - STATE(4859), 1, + STATE(3045), 1, sym__class_declaration, - STATE(4867), 1, + STATE(3048), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(7878), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8682), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9585), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10216), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4352), 2, + STATE(2389), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(2615), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7879), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7418), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [259254] = 27, + [260726] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(2300), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8158), 1, + anon_sym_LBRACE, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(11010), 1, + anon_sym_COLON_COLON, + ACTIONS(13135), 1, sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(2547), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(2601), 1, + sym__splice_specialization_specifier, + STATE(2692), 1, sym_field_declaration_list, - STATE(4680), 1, - sym__class_declaration, - STATE(4867), 1, + STATE(3048), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(3049), 1, + sym__class_declaration, + STATE(7878), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8682), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9585), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10216), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4352), 2, + STATE(2389), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(2615), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7879), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7418), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [259346] = 27, + [260818] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4684), 1, + STATE(4880), 1, sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4352), 2, + STATE(4449), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [259438] = 27, + [260910] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4859), 1, - sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(4951), 1, + sym__class_declaration, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4353), 2, + STATE(4449), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [259530] = 27, + [261002] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4680), 1, + STATE(4793), 1, sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4353), 2, + STATE(4449), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [259622] = 27, + [261094] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4684), 1, + STATE(4880), 1, sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4353), 2, + STATE(4450), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [259714] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9570), 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(9572), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [259758] = 27, + [261186] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2744), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(8193), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10711), 1, - anon_sym_COLON_COLON, - ACTIONS(12758), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(2677), 1, - sym_splice_specifier, - STATE(2837), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(2842), 1, + STATE(4504), 1, + sym_splice_specifier, + STATE(4654), 1, sym_field_declaration_list, - STATE(3380), 1, - sym__class_declaration, - STATE(3381), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7760), 1, + STATE(4951), 1, + sym__class_declaration, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8588), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9319), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10067), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2537), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2802), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(7767), 2, + STATE(4450), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7343), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [259850] = 27, + [261278] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2744), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(8193), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10711), 1, - anon_sym_COLON_COLON, - ACTIONS(12758), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(2677), 1, - sym_splice_specifier, - STATE(2837), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(2842), 1, + STATE(4504), 1, + sym_splice_specifier, + STATE(4654), 1, sym_field_declaration_list, - STATE(3381), 1, - sym__class_declaration_item, - STATE(3382), 1, + STATE(4793), 1, sym__class_declaration, - STATE(7760), 1, + STATE(4884), 1, + sym__class_declaration_item, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8588), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9319), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10067), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2537), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2802), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(7767), 2, + STATE(4450), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7343), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [259942] = 27, + [261370] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(2744), 1, + ACTIONS(2300), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8158), 1, + anon_sym_LBRACE, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(8193), 1, - anon_sym_LBRACE, - ACTIONS(10711), 1, + ACTIONS(11010), 1, anon_sym_COLON_COLON, - ACTIONS(12758), 1, + ACTIONS(13135), 1, sym_identifier, - STATE(2677), 1, + STATE(2547), 1, sym_splice_specifier, - STATE(2837), 1, + STATE(2601), 1, sym__splice_specialization_specifier, - STATE(2842), 1, + STATE(2692), 1, sym_field_declaration_list, - STATE(3381), 1, + STATE(3048), 1, sym__class_declaration_item, - STATE(3386), 1, + STATE(3057), 1, sym__class_declaration, - STATE(7760), 1, + STATE(7878), 1, sym_ms_declspec_modifier, - STATE(8588), 1, + STATE(8682), 1, sym__scope_resolution, - STATE(9319), 1, + STATE(9585), 1, sym_virtual_specifier, - STATE(10067), 1, + STATE(10216), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2537), 2, + STATE(2389), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2802), 2, + STATE(2615), 2, sym_template_type, sym_splice_type_specifier, - STATE(7767), 2, + STATE(7879), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7343), 3, + STATE(7418), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [260034] = 3, + [261462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9527), 9, + ACTIONS(9868), 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(9529), 27, + ACTIONS(9870), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -650376,11 +672668,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -650393,20 +672682,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [260078] = 3, + anon_sym_GT2, + [261506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9531), 9, + ACTIONS(9756), 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(9533), 27, + ACTIONS(9758), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -650417,11 +672709,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -650434,412 +672723,569 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [260122] = 27, + anon_sym_GT2, + [261550] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(7087), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(12551), 1, + anon_sym_LT, + STATE(4313), 1, + sym_template_argument_list, + ACTIONS(7085), 4, + anon_sym_AMP, + anon_sym___attribute, anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(12738), 1, - sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, - sym_splice_specifier, - STATE(4546), 1, - sym_field_declaration_list, - STATE(4859), 1, - sym__class_declaration, - STATE(4867), 1, - sym__class_declaration_item, - STATE(7723), 1, - sym_ms_declspec_modifier, - STATE(8638), 1, - sym__scope_resolution, - STATE(9523), 1, - sym_virtual_specifier, - STATE(10297), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, + anon_sym_const, + ACTIONS(7090), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym___extension__, anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4359), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7747), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [260214] = 27, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [261600] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9919), 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(9921), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [261644] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3104), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(8503), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(11073), 1, + anon_sym_COLON_COLON, + ACTIONS(13137), 1, sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(2742), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(2921), 1, + sym__splice_specialization_specifier, + STATE(3040), 1, sym_field_declaration_list, - STATE(4680), 1, + STATE(3530), 1, sym__class_declaration, - STATE(4867), 1, + STATE(3531), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(7869), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8686), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9512), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10494), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4359), 2, + STATE(2606), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(2934), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7870), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7504), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [260306] = 27, + [261736] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3104), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(8503), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(11073), 1, + anon_sym_COLON_COLON, + ACTIONS(13137), 1, sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(2742), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(2921), 1, + sym__splice_specialization_specifier, + STATE(3040), 1, sym_field_declaration_list, - STATE(4684), 1, - sym__class_declaration, - STATE(4867), 1, + STATE(3531), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(3532), 1, + sym__class_declaration, + STATE(7869), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8686), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9512), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10494), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4359), 2, + STATE(2606), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(2934), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7870), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7504), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [260398] = 27, + [261828] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(5796), 1, + anon_sym_SEMI, + ACTIONS(6883), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(12738), 1, - sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, - sym_splice_specifier, - STATE(4546), 1, - sym_field_declaration_list, - STATE(4859), 1, - sym__class_declaration, - STATE(4867), 1, - sym__class_declaration_item, - STATE(7723), 1, - sym_ms_declspec_modifier, - STATE(8638), 1, - sym__scope_resolution, - STATE(9523), 1, - sym_virtual_specifier, - STATE(10297), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4360), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7747), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [260490] = 27, + ACTIONS(9236), 1, + anon_sym_LPAREN2, + ACTIONS(9239), 1, + anon_sym_LBRACK, + ACTIONS(5645), 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(5638), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [261880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9934), 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(9936), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [261924] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3104), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(8503), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(11073), 1, + anon_sym_COLON_COLON, + ACTIONS(13137), 1, sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(2742), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(2921), 1, + sym__splice_specialization_specifier, + STATE(3040), 1, sym_field_declaration_list, - STATE(4680), 1, - sym__class_declaration, - STATE(4867), 1, + STATE(3531), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(3533), 1, + sym__class_declaration, + STATE(7869), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8686), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9512), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10494), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4360), 2, + STATE(2606), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(2934), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7870), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7504), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [260582] = 27, + [262016] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10367), 1, + anon_sym_DASH_GT, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10382), 1, + anon_sym_requires, + ACTIONS(12406), 1, + anon_sym___attribute__, + ACTIONS(12409), 1, + anon_sym___attribute, + ACTIONS(12412), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(12738), 1, - sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, - sym_splice_specifier, - STATE(4546), 1, - sym_field_declaration_list, - STATE(4684), 1, - sym__class_declaration, - STATE(4867), 1, - sym__class_declaration_item, - STATE(7723), 1, - sym_ms_declspec_modifier, - STATE(8638), 1, - sym__scope_resolution, - STATE(9523), 1, - sym_virtual_specifier, - STATE(10297), 1, - sym_base_class_clause, - ACTIONS(6836), 2, + STATE(7999), 1, + sym_trailing_return_type, + STATE(8069), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8160), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4360), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [260674] = 3, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8313), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7661), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7791), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [262096] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9934), 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(9936), 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_RBRACK_RBRACK, + 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_DOT_STAR, + anon_sym_DASH_GT, + [262140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9420), 11, + ACTIONS(9876), 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(9878), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [262184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9880), 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(9882), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [262228] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9892), 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(9422), 25, + ACTIONS(9894), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -650850,8 +673296,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -650864,23 +673313,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [260718] = 3, + [262272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9896), 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(9898), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [262316] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8208), 11, + ACTIONS(13139), 1, + anon_sym_COMMA, + ACTIONS(13141), 1, + anon_sym_RBRACK, + ACTIONS(5645), 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(5638), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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_DOT_STAR, + anon_sym_DASH_GT, + [262364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9942), 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(9944), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [262408] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9768), 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(3888), 25, + ACTIONS(9770), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -650891,8 +673462,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -650905,11 +673479,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [260762] = 3, + [262452] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9792), 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(9794), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, + [262496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9416), 11, + ACTIONS(9788), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -650921,7 +673535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9418), 25, + ACTIONS(9790), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -650947,10 +673561,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [260806] = 3, + [262540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9542), 11, + ACTIONS(9808), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -650962,7 +673576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9544), 25, + ACTIONS(9810), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -650988,10 +673602,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [260850] = 3, + [262584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9515), 9, + ACTIONS(9818), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -651001,7 +673615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9517), 27, + ACTIONS(9820), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -651029,10 +673643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [260894] = 3, + [262628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9391), 11, + ACTIONS(9830), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -651044,7 +673658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9393), 25, + ACTIONS(9832), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -651070,219 +673684,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [260938] = 27, + [262672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3443), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(8909), 1, - anon_sym_LBRACE, - ACTIONS(10719), 1, - anon_sym_COLON_COLON, - ACTIONS(12760), 1, - sym_identifier, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(3967), 1, - sym__class_declaration_item, - STATE(3992), 1, - sym__class_declaration, - STATE(4072), 1, - sym_splice_specifier, - STATE(4277), 1, - sym_field_declaration_list, - STATE(7718), 1, - sym_ms_declspec_modifier, - STATE(8571), 1, - sym__scope_resolution, - STATE(9494), 1, - sym_virtual_specifier, - STATE(10393), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3624), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3851), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7702), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7347), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [261030] = 27, + ACTIONS(9778), 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(9780), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [262716] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3443), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(8156), 1, anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(8909), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - ACTIONS(10719), 1, - anon_sym_COLON_COLON, - ACTIONS(12760), 1, - sym_identifier, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(3967), 1, - sym__class_declaration_item, - STATE(4014), 1, - sym__class_declaration, - STATE(4072), 1, - sym_splice_specifier, - STATE(4277), 1, + STATE(3117), 1, + sym_attribute_specifier, + STATE(7712), 1, sym_field_declaration_list, - STATE(7718), 1, - sym_ms_declspec_modifier, - STATE(8571), 1, - sym__scope_resolution, - STATE(9494), 1, + STATE(9484), 1, sym_virtual_specifier, - STATE(10393), 1, + STATE(10465), 1, sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3624), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3851), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7702), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7347), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [261122] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3443), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(8909), 1, - anon_sym_LBRACE, - ACTIONS(10719), 1, - anon_sym_COLON_COLON, - ACTIONS(12760), 1, - sym_identifier, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(3946), 1, - sym__class_declaration, - STATE(3967), 1, - sym__class_declaration_item, - STATE(4072), 1, - sym_splice_specifier, - STATE(4277), 1, - sym_field_declaration_list, - STATE(7718), 1, - sym_ms_declspec_modifier, - STATE(8571), 1, - sym__scope_resolution, - STATE(9494), 1, - sym_virtual_specifier, - STATE(10393), 1, - sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(7237), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7235), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - STATE(3624), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3851), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7702), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7347), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [261214] = 3, + sym_primitive_type, + sym_identifier, + [262776] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5260), 11, + ACTIONS(5796), 1, + anon_sym_SEMI, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(5645), 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(5253), 25, + ACTIONS(5638), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -651291,7 +673801,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, @@ -651305,11 +673817,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [261258] = 3, + [262824] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10348), 1, + anon_sym_AMP_AMP, + ACTIONS(10350), 1, + anon_sym_AMP, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10819), 1, + anon_sym_DASH_GT, + ACTIONS(10861), 1, + anon_sym_requires, + STATE(7578), 1, + sym_ref_qualifier, + STATE(8583), 1, + sym__function_attributes_end, + STATE(8585), 1, + sym_trailing_return_type, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7738), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7791), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [262910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9499), 11, + ACTIONS(9752), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -651321,7 +673894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9501), 25, + ACTIONS(9754), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -651347,22 +673920,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [261302] = 3, + [262954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9412), 11, + ACTIONS(9788), 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(9414), 25, + ACTIONS(9790), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -651373,8 +673944,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -651387,516 +673961,485 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [261346] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(11693), 1, - anon_sym_decltype, - ACTIONS(12762), 1, - sym_auto, - STATE(7536), 1, - sym_decltype_auto, - ACTIONS(6798), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(6800), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [261398] = 27, + [262998] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2648), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7866), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(10727), 1, + ACTIONS(9314), 1, + anon_sym_LBRACE, + ACTIONS(11105), 1, anon_sym_COLON_COLON, - ACTIONS(12764), 1, + ACTIONS(13144), 1, sym_identifier, - STATE(2519), 1, - sym_splice_specifier, - STATE(2567), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(2707), 1, - sym_field_declaration_list, - STATE(3083), 1, - sym__class_declaration, - STATE(3113), 1, + STATE(3144), 1, sym__class_declaration_item, - STATE(7738), 1, + STATE(3190), 1, + sym__class_declaration, + STATE(3800), 1, + sym_splice_specifier, + STATE(3863), 1, + sym_field_declaration_list, + STATE(7861), 1, sym_ms_declspec_modifier, - STATE(8604), 1, + STATE(8738), 1, sym__scope_resolution, - STATE(9467), 1, + STATE(9550), 1, sym_virtual_specifier, - STATE(10241), 1, + STATE(10518), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2331), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2577), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(7717), 2, + STATE(3609), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7862), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7344), 3, + STATE(7412), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [261490] = 27, + [263090] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2648), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7866), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(10727), 1, + ACTIONS(9314), 1, + anon_sym_LBRACE, + ACTIONS(11105), 1, anon_sym_COLON_COLON, - ACTIONS(12764), 1, + ACTIONS(13144), 1, sym_identifier, - STATE(2519), 1, - sym_splice_specifier, - STATE(2567), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(2707), 1, - sym_field_declaration_list, - STATE(3113), 1, + STATE(3144), 1, sym__class_declaration_item, - STATE(3136), 1, + STATE(3155), 1, sym__class_declaration, - STATE(7738), 1, + STATE(3800), 1, + sym_splice_specifier, + STATE(3863), 1, + sym_field_declaration_list, + STATE(7861), 1, sym_ms_declspec_modifier, - STATE(8604), 1, + STATE(8738), 1, sym__scope_resolution, - STATE(9467), 1, + STATE(9550), 1, sym_virtual_specifier, - STATE(10241), 1, + STATE(10518), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2331), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2577), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(7717), 2, + STATE(3609), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7862), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7344), 3, + STATE(7412), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [261582] = 27, + [263182] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2648), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7866), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(10727), 1, + ACTIONS(9314), 1, + anon_sym_LBRACE, + ACTIONS(11105), 1, anon_sym_COLON_COLON, - ACTIONS(12764), 1, + ACTIONS(13144), 1, sym_identifier, - STATE(2519), 1, - sym_splice_specifier, - STATE(2567), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(2707), 1, - sym_field_declaration_list, - STATE(3022), 1, + STATE(3091), 1, sym__class_declaration, - STATE(3113), 1, + STATE(3144), 1, sym__class_declaration_item, - STATE(7738), 1, + STATE(3800), 1, + sym_splice_specifier, + STATE(3863), 1, + sym_field_declaration_list, + STATE(7861), 1, sym_ms_declspec_modifier, - STATE(8604), 1, + STATE(8738), 1, sym__scope_resolution, - STATE(9467), 1, + STATE(9550), 1, sym_virtual_specifier, - STATE(10241), 1, + STATE(10518), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2331), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2577), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(7717), 2, + STATE(3609), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7862), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7344), 3, + STATE(7412), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [261674] = 27, + [263274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(9818), 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(9820), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [263318] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10348), 1, + anon_sym_AMP_AMP, + ACTIONS(10350), 1, + anon_sym_AMP, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(12766), 1, - sym_identifier, - ACTIONS(12768), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4691), 1, - sym_splice_specifier, - STATE(4859), 1, - sym__class_declaration, - STATE(4867), 1, - sym__class_declaration_item, - STATE(7771), 1, - sym_ms_declspec_modifier, - STATE(8626), 1, - sym__scope_resolution, - STATE(9214), 1, - sym_field_declaration_list, - STATE(9433), 1, - sym_virtual_specifier, - STATE(10397), 1, - sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(10819), 1, + anon_sym_DASH_GT, + ACTIONS(13149), 1, + anon_sym_requires, + STATE(7583), 1, + sym_ref_qualifier, + STATE(8510), 1, + sym__function_attributes_end, + STATE(8511), 1, + sym_trailing_return_type, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13146), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7772), 2, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8718), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7321), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [261766] = 27, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7733), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7791), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [263404] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10367), 1, + anon_sym_DASH_GT, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(12406), 1, + anon_sym___attribute__, + ACTIONS(12409), 1, + anon_sym___attribute, + ACTIONS(12412), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(12766), 1, - sym_identifier, - ACTIONS(12768), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4680), 1, - sym__class_declaration, - STATE(4691), 1, - sym_splice_specifier, - STATE(4867), 1, - sym__class_declaration_item, - STATE(7771), 1, - sym_ms_declspec_modifier, - STATE(8626), 1, - sym__scope_resolution, - STATE(9214), 1, - sym_field_declaration_list, - STATE(9433), 1, - sym_virtual_specifier, - STATE(10397), 1, - sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(12418), 1, + anon_sym_requires, + STATE(8013), 1, + sym_trailing_return_type, + STATE(8066), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(12415), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7772), 2, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8718), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7321), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [261858] = 27, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8313), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7656), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7791), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [263484] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - ACTIONS(12766), 1, - sym_identifier, - ACTIONS(12768), 1, + ACTIONS(11020), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + ACTIONS(13102), 1, + sym_identifier, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(4684), 1, + STATE(3144), 1, + sym__class_declaration_item, + STATE(3190), 1, sym__class_declaration, - STATE(4691), 1, + STATE(7481), 1, sym_splice_specifier, - STATE(4867), 1, - sym__class_declaration_item, - STATE(7771), 1, + STATE(7709), 1, + sym_field_declaration_list, + STATE(7823), 1, sym_ms_declspec_modifier, - STATE(8626), 1, + STATE(8691), 1, sym__scope_resolution, - STATE(9214), 1, - sym_field_declaration_list, - STATE(9433), 1, + STATE(9483), 1, sym_virtual_specifier, - STATE(10397), 1, + STATE(10463), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(7772), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8718), 2, + STATE(7348), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7321), 3, + STATE(7826), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7480), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [261950] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7817), 1, - anon_sym_COLON, - ACTIONS(9027), 1, - anon_sym_LBRACE, - STATE(3082), 1, - sym_attribute_specifier, - STATE(7611), 1, - sym_field_declaration_list, - STATE(9373), 1, - sym_virtual_specifier, - STATE(10347), 1, - sym_base_class_clause, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6828), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(6826), 23, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [262010] = 5, + [263576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5406), 1, - anon_sym_SEMI, - ACTIONS(10236), 1, - sym_literal_suffix, - ACTIONS(5260), 15, + ACTIONS(9923), 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(9925), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [263620] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9752), 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(5253), 19, + ACTIONS(9754), 27, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -651909,273 +674452,324 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, 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_DOT_STAR, anon_sym_DASH_GT, - [262058] = 24, + [263664] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10437), 1, - anon_sym_DASH_GT, - ACTIONS(10478), 1, - anon_sym_requires, - STATE(7486), 1, - sym_ref_qualifier, - STATE(8454), 1, - sym__function_attributes_end, - STATE(8456), 1, - sym_trailing_return_type, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10476), 2, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(9314), 1, + anon_sym_LBRACE, + ACTIONS(11020), 1, + anon_sym_COLON_COLON, + ACTIONS(13102), 1, + sym_identifier, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3144), 1, + sym__class_declaration_item, + STATE(3155), 1, + sym__class_declaration, + STATE(7481), 1, + sym_splice_specifier, + STATE(7709), 1, + sym_field_declaration_list, + STATE(7823), 1, + sym_ms_declspec_modifier, + STATE(8691), 1, + sym__scope_resolution, + STATE(9483), 1, + sym_virtual_specifier, + STATE(10463), 1, + sym_base_class_clause, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3060), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7348), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7826), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7616), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7544), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - [262144] = 27, + STATE(7480), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [263756] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(4360), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10621), 1, - anon_sym_COLON_COLON, - ACTIONS(12646), 1, + ACTIONS(9246), 1, anon_sym_LBRACE, - ACTIONS(12770), 1, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, + ACTIONS(13152), 1, sym_identifier, - STATE(6603), 1, - sym_splice_specifier, - STATE(7033), 1, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(7472), 1, - sym_field_declaration_list, - STATE(7521), 1, + STATE(4057), 1, sym__class_declaration, - STATE(7526), 1, + STATE(4060), 1, sym__class_declaration_item, - STATE(7788), 1, + STATE(4263), 1, + sym_splice_specifier, + STATE(4380), 1, + sym_field_declaration_list, + STATE(7885), 1, sym_ms_declspec_modifier, - STATE(8612), 1, + STATE(8675), 1, sym__scope_resolution, - STATE(9510), 1, + STATE(9587), 1, sym_virtual_specifier, - STATE(10405), 1, + STATE(10321), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7021), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7034), 2, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(7740), 2, + STATE(4032), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7886), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7378), 3, + STATE(7420), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [262236] = 27, + [263848] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(4360), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10621), 1, - anon_sym_COLON_COLON, - ACTIONS(12646), 1, + ACTIONS(9246), 1, anon_sym_LBRACE, - ACTIONS(12770), 1, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, + ACTIONS(13152), 1, sym_identifier, - STATE(6603), 1, - sym_splice_specifier, - STATE(7033), 1, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(7472), 1, - sym_field_declaration_list, - STATE(7526), 1, + STATE(4060), 1, sym__class_declaration_item, - STATE(7528), 1, + STATE(4106), 1, sym__class_declaration, - STATE(7788), 1, + STATE(4263), 1, + sym_splice_specifier, + STATE(4380), 1, + sym_field_declaration_list, + STATE(7885), 1, sym_ms_declspec_modifier, - STATE(8612), 1, + STATE(8675), 1, sym__scope_resolution, - STATE(9510), 1, + STATE(9587), 1, sym_virtual_specifier, - STATE(10405), 1, + STATE(10321), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7021), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7034), 2, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(7740), 2, + STATE(4032), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7886), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7378), 3, + STATE(7420), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [262328] = 27, + [263940] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9772), 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(9774), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [263984] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(4360), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10621), 1, - anon_sym_COLON_COLON, - ACTIONS(12646), 1, + ACTIONS(9246), 1, anon_sym_LBRACE, - ACTIONS(12770), 1, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, + ACTIONS(13152), 1, sym_identifier, - STATE(6603), 1, - sym_splice_specifier, - STATE(7033), 1, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(7472), 1, - sym_field_declaration_list, - STATE(7526), 1, + STATE(4060), 1, sym__class_declaration_item, - STATE(7529), 1, + STATE(4107), 1, sym__class_declaration, - STATE(7788), 1, + STATE(4263), 1, + sym_splice_specifier, + STATE(4380), 1, + sym_field_declaration_list, + STATE(7885), 1, sym_ms_declspec_modifier, - STATE(8612), 1, + STATE(8675), 1, sym__scope_resolution, - STATE(9510), 1, + STATE(9587), 1, sym_virtual_specifier, - STATE(10405), 1, + STATE(10321), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7021), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7034), 2, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(7740), 2, + STATE(4032), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7886), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7378), 3, + STATE(7420), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [262420] = 3, + [264076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9344), 11, + ACTIONS(9796), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -652187,7 +674781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9342), 25, + ACTIONS(9798), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -652213,20 +674807,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [262464] = 3, + [264120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9550), 9, + ACTIONS(9872), 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(9552), 27, + ACTIONS(9874), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -652237,11 +674833,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -652254,10 +674847,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [262508] = 3, + anon_sym_GT2, + [264164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9574), 9, + ACTIONS(9778), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -652267,7 +674861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9576), 27, + ACTIONS(9780), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -652295,75 +674889,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [262552] = 27, + [264208] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2732), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(8007), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10735), 1, - anon_sym_COLON_COLON, - ACTIONS(12772), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(2530), 1, - sym_splice_specifier, - STATE(2597), 1, + ACTIONS(13154), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(2644), 1, + STATE(4504), 1, + sym_splice_specifier, + STATE(4654), 1, sym_field_declaration_list, - STATE(2995), 1, + STATE(4880), 1, sym__class_declaration, - STATE(2996), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7733), 1, + STATE(7836), 1, sym_ms_declspec_modifier, - STATE(8624), 1, + STATE(8710), 1, sym__scope_resolution, - STATE(9380), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10305), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2408), 2, + STATE(3790), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6256), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2598), 2, + STATE(7839), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7448), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [264300] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3486), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(13106), 1, + sym_identifier, + ACTIONS(13154), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4504), 1, + sym_splice_specifier, + STATE(4654), 1, + sym_field_declaration_list, + STATE(4884), 1, + sym__class_declaration_item, + STATE(4951), 1, + sym__class_declaration, + STATE(7836), 1, + sym_ms_declspec_modifier, + STATE(8710), 1, + sym__scope_resolution, + STATE(9470), 1, + sym_virtual_specifier, + STATE(10307), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(7734), 2, + STATE(6256), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7839), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7288), 3, + STATE(7448), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [262644] = 3, + [264392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9523), 11, + ACTIONS(9880), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -652375,7 +675034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9525), 25, + ACTIONS(9882), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -652401,10 +675060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [262688] = 3, + [264436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9464), 9, + ACTIONS(9822), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -652414,7 +675073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9466), 27, + ACTIONS(9824), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -652428,8 +675087,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK_RBRACK, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -652442,442 +675101,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [262732] = 27, + [264480] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2732), 1, + ACTIONS(3008), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(8007), 1, + ACTIONS(8269), 1, anon_sym_LBRACE, - ACTIONS(10735), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(12772), 1, + ACTIONS(13156), 1, sym_identifier, - STATE(2530), 1, + STATE(2638), 1, sym_splice_specifier, - STATE(2597), 1, + STATE(2696), 1, sym__splice_specialization_specifier, - STATE(2644), 1, + STATE(2800), 1, sym_field_declaration_list, - STATE(2996), 1, - sym__class_declaration_item, - STATE(2999), 1, + STATE(3220), 1, sym__class_declaration, - STATE(7733), 1, + STATE(3222), 1, + sym__class_declaration_item, + STATE(7895), 1, sym_ms_declspec_modifier, - STATE(8624), 1, + STATE(8687), 1, sym__scope_resolution, - STATE(9380), 1, + STATE(9491), 1, sym_virtual_specifier, - STATE(10305), 1, + STATE(10452), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2408), 2, + STATE(2460), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2598), 2, + STATE(2678), 2, sym_template_type, sym_splice_type_specifier, - STATE(7734), 2, + STATE(7897), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7288), 3, + STATE(7406), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [262824] = 27, + [264572] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2732), 1, + ACTIONS(3008), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(8007), 1, + ACTIONS(8269), 1, anon_sym_LBRACE, - ACTIONS(10735), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(12772), 1, + ACTIONS(13156), 1, sym_identifier, - STATE(2530), 1, + STATE(2638), 1, sym_splice_specifier, - STATE(2597), 1, + STATE(2696), 1, sym__splice_specialization_specifier, - STATE(2644), 1, + STATE(2800), 1, sym_field_declaration_list, - STATE(2996), 1, + STATE(3222), 1, sym__class_declaration_item, - STATE(3004), 1, + STATE(3226), 1, sym__class_declaration, - STATE(7733), 1, + STATE(7895), 1, sym_ms_declspec_modifier, - STATE(8624), 1, + STATE(8687), 1, sym__scope_resolution, - STATE(9380), 1, + STATE(9491), 1, sym_virtual_specifier, - STATE(10305), 1, + STATE(10452), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2408), 2, + STATE(2460), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2598), 2, + STATE(2678), 2, sym_template_type, sym_splice_type_specifier, - STATE(7734), 2, + STATE(7897), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7288), 3, + STATE(7406), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [262916] = 16, + [264664] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(6095), 1, - anon_sym_STAR, - ACTIONS(6097), 1, - anon_sym_AMP_AMP, - ACTIONS(6099), 1, - anon_sym_AMP, - ACTIONS(7784), 1, - anon_sym_const, - ACTIONS(11429), 1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7968), 1, anon_sym_LBRACK, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(4601), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8871), 1, - sym__abstract_declarator, - ACTIONS(7786), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2399), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7003), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7778), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [262986] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1938), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7819), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(10367), 1, + anon_sym_DASH_GT, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(13108), 1, + anon_sym___attribute__, + ACTIONS(13111), 1, + anon_sym___attribute, + ACTIONS(13114), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(10678), 1, - anon_sym_COLON_COLON, - ACTIONS(12774), 1, - sym_identifier, - STATE(2431), 1, - sym_splice_specifier, - STATE(2514), 1, - sym__splice_specialization_specifier, - STATE(2595), 1, - sym_field_declaration_list, - STATE(2945), 1, - sym__class_declaration, - STATE(2950), 1, - sym__class_declaration_item, - STATE(7766), 1, - sym_ms_declspec_modifier, - STATE(8639), 1, - sym__scope_resolution, - STATE(9457), 1, - sym_virtual_specifier, - STATE(10302), 1, - sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(13161), 1, + anon_sym_requires, + STATE(8035), 1, + sym_trailing_return_type, + STATE(8067), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13158), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2310), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2534), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7787), 2, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7373), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [263078] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9550), 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(9552), 25, - anon_sym_DOT_DOT_DOT, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8358), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7667), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7966), 9, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_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_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - [263122] = 27, + anon_sym_try, + [264744] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(3008), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7819), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(10678), 1, + ACTIONS(8269), 1, + anon_sym_LBRACE, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(12774), 1, + ACTIONS(13156), 1, sym_identifier, - STATE(2431), 1, + STATE(2638), 1, sym_splice_specifier, - STATE(2514), 1, + STATE(2696), 1, sym__splice_specialization_specifier, - STATE(2595), 1, + STATE(2800), 1, sym_field_declaration_list, - STATE(2950), 1, + STATE(3222), 1, sym__class_declaration_item, - STATE(2953), 1, + STATE(3230), 1, sym__class_declaration, - STATE(7766), 1, + STATE(7895), 1, sym_ms_declspec_modifier, - STATE(8639), 1, + STATE(8687), 1, sym__scope_resolution, - STATE(9457), 1, + STATE(9491), 1, sym_virtual_specifier, - STATE(10302), 1, + STATE(10452), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2310), 2, + STATE(2460), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2534), 2, + STATE(2678), 2, sym_template_type, sym_splice_type_specifier, - STATE(7787), 2, + STATE(7897), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7373), 3, + STATE(7406), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [263214] = 27, + [264836] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(3486), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7819), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(10678), 1, - anon_sym_COLON_COLON, - ACTIONS(12774), 1, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(13106), 1, sym_identifier, - STATE(2431), 1, - sym_splice_specifier, - STATE(2514), 1, + ACTIONS(13154), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(2595), 1, + STATE(4504), 1, + sym_splice_specifier, + STATE(4654), 1, sym_field_declaration_list, - STATE(2950), 1, - sym__class_declaration_item, - STATE(2954), 1, + STATE(4793), 1, sym__class_declaration, - STATE(7766), 1, + STATE(4884), 1, + sym__class_declaration_item, + STATE(7836), 1, sym_ms_declspec_modifier, - STATE(8639), 1, + STATE(8710), 1, sym__scope_resolution, - STATE(9457), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10302), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2310), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2534), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(7787), 2, + STATE(6256), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7839), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7373), 3, + STATE(7448), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [263306] = 3, + [264928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9574), 11, + ACTIONS(9826), 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(9576), 25, + ACTIONS(9828), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -652888,8 +675444,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -652902,21 +675461,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [263350] = 3, + [264972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9570), 9, + ACTIONS(9860), 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(9572), 27, + ACTIONS(9862), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -652927,11 +675487,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -652944,444 +675501,411 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [263394] = 21, + anon_sym_GT2, + [265016] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(10016), 1, - anon_sym_DASH_GT, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(12144), 1, - anon_sym___attribute__, - ACTIONS(12147), 1, - anon_sym___attribute, - ACTIONS(12150), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12170), 1, - anon_sym_requires, - STATE(7926), 1, - sym_trailing_return_type, - STATE(7948), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12167), 2, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(13164), 1, + sym_identifier, + ACTIONS(13166), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4802), 1, + sym_splice_specifier, + STATE(4880), 1, + sym__class_declaration, + STATE(4884), 1, + sym__class_declaration_item, + STATE(7893), 1, + sym_ms_declspec_modifier, + STATE(8705), 1, + sym__scope_resolution, + STATE(9320), 1, + sym_field_declaration_list, + STATE(9556), 1, + sym_virtual_specifier, + STATE(10528), 1, + sym_base_class_clause, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3790), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8170), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7542), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7544), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [263474] = 27, + STATE(8848), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7449), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [265108] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(8909), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10743), 1, - anon_sym_COLON_COLON, - ACTIONS(12776), 1, + ACTIONS(13164), 1, sym_identifier, - STATE(3634), 1, - sym_splice_specifier, - STATE(3640), 1, + ACTIONS(13166), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3835), 1, - sym_field_declaration_list, - STATE(3967), 1, + STATE(4802), 1, + sym_splice_specifier, + STATE(4884), 1, sym__class_declaration_item, - STATE(3992), 1, + STATE(4951), 1, sym__class_declaration, - STATE(7784), 1, + STATE(7893), 1, sym_ms_declspec_modifier, - STATE(8631), 1, + STATE(8705), 1, sym__scope_resolution, - STATE(9498), 1, + STATE(9320), 1, + sym_field_declaration_list, + STATE(9556), 1, sym_virtual_specifier, - STATE(10434), 1, + STATE(10528), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3486), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(3624), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(7731), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7324), 3, + STATE(8848), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7449), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [263566] = 6, + [265200] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(12116), 1, - anon_sym_LT, - STATE(3968), 1, - sym_template_argument_list, - ACTIONS(7031), 4, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - anon_sym_const, - ACTIONS(5272), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [263616] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7629), 1, - anon_sym_LBRACK, - ACTIONS(10016), 1, - anon_sym_DASH_GT, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(12778), 1, - anon_sym___attribute__, - ACTIONS(12781), 1, - anon_sym___attribute, - ACTIONS(12784), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12790), 1, - anon_sym_requires, - STATE(7927), 1, - sym_trailing_return_type, - STATE(7949), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12787), 2, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(13164), 1, + sym_identifier, + ACTIONS(13166), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4793), 1, + sym__class_declaration, + STATE(4802), 1, + sym_splice_specifier, + STATE(4884), 1, + sym__class_declaration_item, + STATE(7893), 1, + sym_ms_declspec_modifier, + STATE(8705), 1, + sym__scope_resolution, + STATE(9320), 1, + sym_field_declaration_list, + STATE(9556), 1, + sym_virtual_specifier, + STATE(10528), 1, + sym_base_class_clause, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3790), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8195), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7543), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7627), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [263696] = 27, + STATE(8848), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7449), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [265292] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(8909), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10743), 1, - anon_sym_COLON_COLON, - ACTIONS(12776), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3634), 1, - sym_splice_specifier, - STATE(3640), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3835), 1, + STATE(4504), 1, + sym_splice_specifier, + STATE(4654), 1, sym_field_declaration_list, - STATE(3967), 1, - sym__class_declaration_item, - STATE(4014), 1, + STATE(4880), 1, sym__class_declaration, - STATE(7784), 1, + STATE(4884), 1, + sym__class_declaration_item, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8631), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9498), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10434), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3486), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(3624), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(7731), 2, + STATE(4434), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7324), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [263788] = 27, + [265384] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(8909), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10743), 1, - anon_sym_COLON_COLON, - ACTIONS(12776), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3634), 1, - sym_splice_specifier, - STATE(3640), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3835), 1, + STATE(4504), 1, + sym_splice_specifier, + STATE(4654), 1, sym_field_declaration_list, - STATE(3946), 1, - sym__class_declaration, - STATE(3967), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7784), 1, + STATE(4951), 1, + sym__class_declaration, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8631), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9498), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10434), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3486), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(3624), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(7731), 2, + STATE(4434), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7324), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [263880] = 27, + [265476] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4680), 1, + STATE(4793), 1, sym__class_declaration, - STATE(4867), 1, + STATE(4884), 1, sym__class_declaration_item, - STATE(7723), 1, + STATE(7828), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(3904), 2, + STATE(4434), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7831), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(7478), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [263972] = 3, + [265568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 11, + ACTIONS(9868), 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(4568), 25, + ACTIONS(9870), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -653392,49 +675916,11 @@ 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_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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [264016] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9444), 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(9446), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -653447,137 +675933,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [264060] = 3, + [265612] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9408), 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(9410), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6461), 1, anon_sym_LPAREN2, + ACTIONS(6463), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(6465), 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_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_DOT_STAR, - anon_sym_DASH_GT, - [264104] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7629), 1, + ACTIONS(6467), 1, + anon_sym_AMP, + ACTIONS(8123), 1, + anon_sym_const, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(10016), 1, - anon_sym_DASH_GT, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10022), 1, - anon_sym_requires, - ACTIONS(12778), 1, - anon_sym___attribute__, - ACTIONS(12781), 1, - anon_sym___attribute, - ACTIONS(12784), 1, - anon_sym_LBRACK_LBRACK, - STATE(7938), 1, - sym_trailing_return_type, - STATE(7958), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7821), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8195), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7548), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7627), 9, + STATE(2726), 1, + sym_alignas_qualifier, + STATE(4706), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(9006), 1, + sym__abstract_declarator, + ACTIONS(8125), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2488), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7351), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [264184] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12642), 1, - anon_sym___attribute__, - ACTIONS(12644), 1, - anon_sym___attribute, - ACTIONS(12793), 1, - anon_sym_COLON, - ACTIONS(12795), 1, - anon_sym_LBRACE, - STATE(7433), 1, - sym__enum_base_clause, - STATE(7456), 1, - sym_enumerator_list, - STATE(7506), 1, - sym_attribute_specifier, - ACTIONS(7651), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7653), 27, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8117), 12, anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -653589,17 +675987,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [264242] = 3, + [265682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9408), 11, + ACTIONS(9930), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -653611,7 +676002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9410), 25, + ACTIONS(9932), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -653637,256 +676028,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [264286] = 3, + [265726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9344), 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(9342), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [264330] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9428), 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(9430), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [264374] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9464), 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(9466), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [264418] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9538), 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(9540), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [264462] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9484), 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(9486), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [264506] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9452), 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(9454), 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_RBRACK_RBRACK, - 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_DOT_STAR, - anon_sym_DASH_GT, - [264550] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9515), 11, + ACTIONS(9884), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -653898,7 +676043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9517), 25, + ACTIONS(9886), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -653924,10 +676069,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [264594] = 3, + [265770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9503), 9, + ACTIONS(9748), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -653937,7 +676082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9505), 27, + ACTIONS(9750), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -653965,257 +676110,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [264638] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12642), 1, - anon_sym___attribute__, - ACTIONS(12644), 1, - anon_sym___attribute, - ACTIONS(12793), 1, - anon_sym_COLON, - ACTIONS(12795), 1, - anon_sym_LBRACE, - STATE(7402), 1, - sym__enum_base_clause, - STATE(7469), 1, - sym_enumerator_list, - STATE(7505), 1, - sym_attribute_specifier, - ACTIONS(7600), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7602), 27, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [264696] = 27, + [265814] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4780), 1, - anon_sym_COLON_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(11202), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10988), 1, + anon_sym_COLON_COLON, + ACTIONS(12978), 1, anon_sym_LBRACE, - ACTIONS(12797), 1, + ACTIONS(13168), 1, sym_identifier, - STATE(4691), 1, + STATE(6581), 1, sym_splice_specifier, - STATE(5263), 1, + STATE(7121), 1, sym__splice_specialization_specifier, - STATE(5861), 1, + STATE(7595), 1, sym_field_declaration_list, - STATE(5944), 1, + STATE(7634), 1, sym__class_declaration, - STATE(5947), 1, + STATE(7635), 1, sym__class_declaration_item, - STATE(7722), 1, + STATE(7902), 1, sym_ms_declspec_modifier, - STATE(8584), 1, + STATE(8700), 1, sym__scope_resolution, - STATE(9424), 1, + STATE(9479), 1, sym_virtual_specifier, - STATE(10362), 1, + STATE(10590), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5166), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(5298), 2, + STATE(7089), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7724), 2, + STATE(7122), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7903), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7310), 3, + STATE(7399), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [264788] = 27, + [265906] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4780), 1, - anon_sym_COLON_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(11202), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10988), 1, + anon_sym_COLON_COLON, + ACTIONS(12978), 1, anon_sym_LBRACE, - ACTIONS(12797), 1, + ACTIONS(13168), 1, sym_identifier, - STATE(4691), 1, + STATE(6581), 1, sym_splice_specifier, - STATE(5263), 1, + STATE(7121), 1, sym__splice_specialization_specifier, - STATE(5861), 1, + STATE(7595), 1, sym_field_declaration_list, - STATE(5947), 1, + STATE(7635), 1, sym__class_declaration_item, - STATE(5956), 1, + STATE(7637), 1, sym__class_declaration, - STATE(7722), 1, + STATE(7902), 1, sym_ms_declspec_modifier, - STATE(8584), 1, + STATE(8700), 1, sym__scope_resolution, - STATE(9424), 1, + STATE(9479), 1, sym_virtual_specifier, - STATE(10362), 1, + STATE(10590), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5166), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(5298), 2, + STATE(7089), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7724), 2, + STATE(7122), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7903), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7310), 3, + STATE(7399), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [264880] = 27, + [265998] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4780), 1, - anon_sym_COLON_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(11202), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10988), 1, + anon_sym_COLON_COLON, + ACTIONS(12978), 1, anon_sym_LBRACE, - ACTIONS(12797), 1, + ACTIONS(13168), 1, sym_identifier, - STATE(4691), 1, + STATE(6581), 1, sym_splice_specifier, - STATE(5263), 1, + STATE(7121), 1, sym__splice_specialization_specifier, - STATE(5861), 1, + STATE(7595), 1, sym_field_declaration_list, - STATE(5947), 1, + STATE(7635), 1, sym__class_declaration_item, - STATE(5959), 1, + STATE(7638), 1, sym__class_declaration, - STATE(7722), 1, + STATE(7902), 1, sym_ms_declspec_modifier, - STATE(8584), 1, + STATE(8700), 1, sym__scope_resolution, - STATE(9424), 1, + STATE(9479), 1, sym_virtual_specifier, - STATE(10362), 1, + STATE(10590), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5166), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(5298), 2, + STATE(7089), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7724), 2, + STATE(7122), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7903), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7310), 3, + STATE(7399), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [264972] = 5, + [266090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12799), 1, - anon_sym_COMMA, - ACTIONS(12801), 1, - anon_sym_RBRACK, - ACTIONS(5260), 9, + ACTIONS(9804), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -654225,8 +676318,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(5253), 25, + ACTIONS(9806), 27, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -654239,6 +676333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -654251,65 +676346,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [265020] = 7, + [266134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5406), 1, - anon_sym_SEMI, - ACTIONS(6515), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8835), 1, - anon_sym_LPAREN2, - ACTIONS(8838), 1, - anon_sym_LBRACK, - ACTIONS(5260), 9, + ACTIONS(9892), 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_DOT, - ACTIONS(5253), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [265072] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9578), 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_GT_GT, anon_sym_DOT, - ACTIONS(9580), 27, + ACTIONS(9894), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -654320,11 +676372,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -654337,63 +676386,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [265116] = 5, + anon_sym_GT2, + [266178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5406), 1, - anon_sym_SEMI, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(5260), 9, + ACTIONS(5645), 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_DOT, - ACTIONS(5253), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_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_DOT_STAR, - anon_sym_DASH_GT, - [265164] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4570), 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_GT_GT, anon_sym_DOT, - ACTIONS(4568), 27, + ACTIONS(5638), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -654404,11 +676413,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -654421,486 +676427,1000 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [265208] = 3, + anon_sym_GT2, + [266222] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9499), 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(9501), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [265252] = 27, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3486), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(13106), 1, + sym_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4504), 1, + sym_splice_specifier, + STATE(4654), 1, + sym_field_declaration_list, + STATE(4880), 1, + sym__class_declaration, + STATE(4884), 1, + sym__class_declaration_item, + STATE(7828), 1, + sym_ms_declspec_modifier, + STATE(8716), 1, + sym__scope_resolution, + STATE(9470), 1, + sym_virtual_specifier, + STATE(10307), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3790), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4533), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7478), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [266314] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10988), 1, + anon_sym_COLON_COLON, + ACTIONS(12978), 1, + anon_sym_LBRACE, + ACTIONS(13168), 1, + sym_identifier, + STATE(6581), 1, + sym_splice_specifier, + STATE(7121), 1, + sym__splice_specialization_specifier, + STATE(7595), 1, + sym_field_declaration_list, + STATE(7610), 1, + sym__class_declaration_item, + STATE(7905), 1, + sym_ms_declspec_modifier, + STATE(8700), 1, + sym__scope_resolution, + STATE(9479), 1, + sym_virtual_specifier, + STATE(10590), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7089), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7122), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7904), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8412), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [266403] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3873), 1, + anon_sym_class, + ACTIONS(3875), 1, + anon_sym_struct, + ACTIONS(3877), 1, + anon_sym_union, + ACTIONS(3891), 1, + sym_auto, + ACTIONS(3893), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(11109), 1, + sym_identifier, + ACTIONS(11111), 1, + anon_sym_COLON_COLON, + ACTIONS(12875), 1, + anon_sym_enum, + ACTIONS(12877), 1, + anon_sym_typename, + STATE(3375), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3711), 1, + sym__splice_specialization_specifier, + STATE(3719), 1, + sym_splice_specifier, + STATE(3759), 1, + sym_template_type, + STATE(3819), 1, + sym_qualified_type_identifier, + STATE(4108), 1, + sym_type_specifier, + STATE(4119), 1, + sym_decltype_auto, + STATE(8707), 1, + sym__scope_resolution, + STATE(3967), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12873), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4064), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [266490] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3871), 1, + anon_sym_enum, + ACTIONS(3873), 1, + anon_sym_class, + ACTIONS(3875), 1, + anon_sym_struct, + ACTIONS(3877), 1, + anon_sym_union, + ACTIONS(3891), 1, + sym_auto, + ACTIONS(3893), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(11109), 1, + sym_identifier, + ACTIONS(11111), 1, + anon_sym_COLON_COLON, + ACTIONS(11113), 1, + anon_sym_typename, + STATE(2941), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3711), 1, + sym__splice_specialization_specifier, + STATE(3719), 1, + sym_splice_specifier, + STATE(3759), 1, + sym_template_type, + STATE(3819), 1, + sym_qualified_type_identifier, + STATE(4108), 1, + sym_type_specifier, + STATE(4119), 1, + sym_decltype_auto, + STATE(8707), 1, + sym__scope_resolution, + STATE(3967), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3867), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4064), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [266577] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3809), 1, + anon_sym_class, + ACTIONS(3811), 1, + anon_sym_struct, + ACTIONS(3813), 1, + anon_sym_union, + ACTIONS(3819), 1, + sym_auto, + ACTIONS(3821), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11036), 1, + sym_identifier, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(11040), 1, + sym_primitive_type, + ACTIONS(12803), 1, + anon_sym_enum, + ACTIONS(12805), 1, + anon_sym_typename, + STATE(2073), 1, + sym_template_type, + STATE(2087), 1, + sym_qualified_type_identifier, + STATE(2104), 1, + sym_splice_specifier, + STATE(2153), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2221), 1, + sym_decltype_auto, + STATE(3566), 1, + sym_type_specifier, + STATE(8763), 1, + sym__scope_resolution, + STATE(2169), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12801), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2222), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [266664] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3807), 1, + anon_sym_enum, + ACTIONS(3809), 1, + anon_sym_class, + ACTIONS(3811), 1, + anon_sym_struct, + ACTIONS(3813), 1, + anon_sym_union, + ACTIONS(3819), 1, + sym_auto, + ACTIONS(3821), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11036), 1, + sym_identifier, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(11040), 1, + sym_primitive_type, + ACTIONS(11042), 1, + anon_sym_typename, + STATE(2073), 1, + sym_template_type, + STATE(2076), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2087), 1, + sym_qualified_type_identifier, + STATE(2104), 1, + sym_splice_specifier, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2221), 1, + sym_decltype_auto, + STATE(2233), 1, + sym_type_specifier, + STATE(8763), 1, + sym__scope_resolution, + STATE(2169), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3803), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2222), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [266751] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3809), 1, + anon_sym_class, + ACTIONS(3811), 1, + anon_sym_struct, + ACTIONS(3813), 1, + anon_sym_union, + ACTIONS(3819), 1, + sym_auto, + ACTIONS(3821), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11036), 1, + sym_identifier, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(11040), 1, + sym_primitive_type, + ACTIONS(12803), 1, + anon_sym_enum, + ACTIONS(12805), 1, + anon_sym_typename, + STATE(2073), 1, + sym_template_type, + STATE(2087), 1, + sym_qualified_type_identifier, + STATE(2104), 1, + sym_splice_specifier, + STATE(2153), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2221), 1, + sym_decltype_auto, + STATE(2233), 1, + sym_type_specifier, + STATE(8763), 1, + sym__scope_resolution, + STATE(2169), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12801), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2222), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [266838] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3092), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(3839), 1, + anon_sym_class, + ACTIONS(3841), 1, + anon_sym_struct, + ACTIONS(3843), 1, + anon_sym_union, + ACTIONS(3849), 1, + sym_auto, + ACTIONS(3851), 1, + anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6101), 1, + ACTIONS(11095), 1, + sym_identifier, + ACTIONS(11097), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(11099), 1, + sym_primitive_type, + ACTIONS(12839), 1, + anon_sym_enum, + ACTIONS(12841), 1, + anon_sym_typename, + STATE(2385), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2605), 1, + sym_splice_specifier, + STATE(2659), 1, + sym__splice_specialization_specifier, + STATE(2712), 1, + sym_template_type, + STATE(2843), 1, + sym_qualified_type_identifier, + STATE(3166), 1, + sym_decltype_auto, + STATE(5024), 1, + sym_type_specifier, + STATE(8702), 1, + sym__scope_resolution, + STATE(3053), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12837), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3167), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [266925] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3008), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(8269), 1, anon_sym_LBRACE, - ACTIONS(12804), 1, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(13156), 1, sym_identifier, - STATE(3682), 1, + STATE(2638), 1, + sym_splice_specifier, + STATE(2696), 1, sym__splice_specialization_specifier, - STATE(4546), 1, + STATE(2800), 1, sym_field_declaration_list, - STATE(4859), 1, - sym__class_declaration, - STATE(4867), 1, + STATE(3133), 1, sym__class_declaration_item, - STATE(5044), 1, - sym_splice_specifier, - STATE(7769), 1, + STATE(7899), 1, sym_ms_declspec_modifier, - STATE(8579), 1, + STATE(8687), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9491), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10452), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3904), 2, + STATE(2460), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7705), 2, + STATE(2678), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7898), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7320), 3, + STATE(8412), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [265344] = 27, + [267014] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(3704), 1, + anon_sym_enum, + ACTIONS(3706), 1, + anon_sym_class, + ACTIONS(3708), 1, + anon_sym_struct, + ACTIONS(3710), 1, + anon_sym_union, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6101), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(12804), 1, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(11103), 1, sym_identifier, - STATE(3682), 1, + ACTIONS(11105), 1, + anon_sym_COLON_COLON, + ACTIONS(11107), 1, + anon_sym_typename, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(4546), 1, - sym_field_declaration_list, - STATE(4680), 1, - sym__class_declaration, - STATE(4867), 1, - sym__class_declaration_item, - STATE(5044), 1, + STATE(3097), 1, + sym_type_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(3800), 1, sym_splice_specifier, - STATE(7769), 1, - sym_ms_declspec_modifier, - STATE(8579), 1, + STATE(8738), 1, sym__scope_resolution, - STATE(9523), 1, - sym_virtual_specifier, - STATE(10297), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3712), 2, - sym_template_type, + STATE(3021), 2, + sym_decltype, sym_splice_type_specifier, - STATE(3904), 2, - sym__class_name, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [267101] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2300), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3732), 1, + anon_sym_enum, + ACTIONS(3734), 1, + anon_sym_class, + ACTIONS(3736), 1, + anon_sym_struct, + ACTIONS(3738), 1, + anon_sym_union, + ACTIONS(3742), 1, + sym_auto, + ACTIONS(3744), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11008), 1, + sym_identifier, + ACTIONS(11010), 1, + anon_sym_COLON_COLON, + ACTIONS(11012), 1, + sym_primitive_type, + ACTIONS(11014), 1, + anon_sym_typename, + STATE(2180), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2547), 1, + sym_splice_specifier, + STATE(2601), 1, + sym__splice_specialization_specifier, + STATE(2622), 1, + sym_template_type, + STATE(2698), 1, sym_qualified_type_identifier, - STATE(7705), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7320), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(2997), 1, + sym_decltype_auto, + STATE(3023), 1, + sym_type_specifier, + STATE(8682), 1, + sym__scope_resolution, + STATE(2942), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - [265436] = 27, + ACTIONS(3728), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3067), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [267188] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6101), 1, + ACTIONS(6469), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12804), 1, + ACTIONS(13117), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4684), 1, - sym__class_declaration, - STATE(4867), 1, + STATE(4987), 1, sym__class_declaration_item, - STATE(5044), 1, + STATE(5157), 1, sym_splice_specifier, - STATE(7769), 1, + STATE(7825), 1, sym_ms_declspec_modifier, - STATE(8579), 1, + STATE(8756), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(3904), 2, + STATE(4029), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7705), 2, + STATE(7824), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7320), 3, + STATE(8412), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [265528] = 3, + [267277] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9519), 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(9521), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [265572] = 27, + ACTIONS(3204), 1, + anon_sym_enum, + ACTIONS(3206), 1, + anon_sym_class, + ACTIONS(3208), 1, + anon_sym_struct, + ACTIONS(3210), 1, + anon_sym_union, + ACTIONS(3236), 1, + sym_auto, + ACTIONS(3238), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11046), 1, + sym_identifier, + ACTIONS(11048), 1, + anon_sym_COLON_COLON, + ACTIONS(11050), 1, + sym_primitive_type, + ACTIONS(11052), 1, + anon_sym_typename, + STATE(4043), 1, + sym_template_type, + STATE(4204), 1, + sym_qualified_type_identifier, + STATE(4305), 1, + sym__splice_specialization_specifier, + STATE(4373), 1, + sym_decltype, + STATE(4426), 1, + sym_decltype_auto, + STATE(4457), 1, + sym_type_specifier, + STATE(4690), 1, + sym_splice_type_specifier, + STATE(6642), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7326), 1, + sym_splice_specifier, + STATE(8745), 1, + sym__scope_resolution, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3200), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4430), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [267366] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(3706), 1, + anon_sym_class, + ACTIONS(3708), 1, + anon_sym_struct, + ACTIONS(3710), 1, + anon_sym_union, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(11103), 1, + sym_identifier, + ACTIONS(11105), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(12787), 1, + anon_sym_enum, + ACTIONS(12789), 1, + anon_sym_typename, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3126), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3197), 1, + sym_decltype_auto, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(3800), 1, + sym_splice_specifier, + STATE(6514), 1, + sym_type_specifier, + STATE(8738), 1, + sym__scope_resolution, + STATE(3021), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12785), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3100), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [267453] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(11105), 1, + anon_sym_COLON_COLON, + ACTIONS(13144), 1, sym_identifier, - STATE(3682), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(3185), 1, + sym__class_declaration_item, + STATE(3800), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(3863), 1, sym_field_declaration_list, - STATE(4684), 1, - sym__class_declaration, - STATE(4867), 1, - sym__class_declaration_item, - STATE(7723), 1, + STATE(7896), 1, sym_ms_declspec_modifier, - STATE(8638), 1, + STATE(8738), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9550), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10518), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(3904), 2, + STATE(3609), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7747), 2, + STATE(7805), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7371), 3, + STATE(8412), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [265664] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9484), 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(9486), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [265708] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9578), 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(9580), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [265752] = 26, + [267542] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(75), 1, - anon_sym_enum, - ACTIONS(77), 1, + ACTIONS(2300), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3734), 1, anon_sym_class, - ACTIONS(79), 1, + ACTIONS(3736), 1, anon_sym_struct, - ACTIONS(81), 1, + ACTIONS(3738), 1, anon_sym_union, - ACTIONS(129), 1, + ACTIONS(3742), 1, sym_auto, - ACTIONS(131), 1, + ACTIONS(3744), 1, anon_sym_decltype, - ACTIONS(3071), 1, - sym_primitive_type, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5102), 1, - anon_sym_typename, - ACTIONS(5572), 1, + ACTIONS(11008), 1, sym_identifier, - ACTIONS(5574), 1, + ACTIONS(11010), 1, anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(3709), 1, + ACTIONS(11012), 1, + sym_primitive_type, + ACTIONS(13038), 1, + anon_sym_enum, + ACTIONS(13040), 1, + anon_sym_typename, + STATE(2360), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4350), 1, + STATE(2547), 1, sym_splice_specifier, - STATE(4479), 1, - sym_splice_type_specifier, - STATE(4520), 1, + STATE(2601), 1, + sym__splice_specialization_specifier, + STATE(2622), 1, sym_template_type, - STATE(4521), 1, + STATE(2698), 1, sym_qualified_type_identifier, - STATE(4706), 1, + STATE(2997), 1, sym_decltype_auto, - STATE(4739), 1, + STATE(3023), 1, sym_type_specifier, - STATE(4790), 1, - sym_decltype, - STATE(8638), 1, + STATE(8682), 1, sym__scope_resolution, - STATE(10976), 2, + STATE(2942), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(59), 4, + ACTIONS(13036), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4714), 7, + STATE(3067), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -654908,61 +677428,124 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [265841] = 25, + [267629] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, + ACTIONS(3104), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4062), 1, + anon_sym_enum, + ACTIONS(4064), 1, + anon_sym_class, + ACTIONS(4066), 1, + anon_sym_struct, + ACTIONS(4068), 1, + anon_sym_union, + ACTIONS(4072), 1, sym_auto, - ACTIONS(131), 1, + ACTIONS(4074), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(12806), 1, + ACTIONS(11071), 1, sym_identifier, - ACTIONS(12808), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(12812), 1, + ACTIONS(11075), 1, sym_primitive_type, - ACTIONS(12814), 1, - anon_sym_enum, - ACTIONS(12816), 1, + ACTIONS(11077), 1, + anon_sym_typename, + STATE(2356), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2742), 1, + sym_splice_specifier, + STATE(2921), 1, + sym__splice_specialization_specifier, + STATE(2933), 1, + sym_template_type, + STATE(3031), 1, + sym_qualified_type_identifier, + STATE(3447), 1, + sym_decltype, + STATE(3486), 1, + sym_splice_type_specifier, + STATE(3527), 1, + sym_decltype_auto, + STATE(3534), 1, + sym_type_specifier, + STATE(8686), 1, + sym__scope_resolution, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4058), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3528), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [267718] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3809), 1, anon_sym_class, - ACTIONS(12818), 1, + ACTIONS(3811), 1, anon_sym_struct, - ACTIONS(12820), 1, + ACTIONS(3813), 1, anon_sym_union, - ACTIONS(12822), 1, + ACTIONS(3819), 1, + sym_auto, + ACTIONS(3821), 1, + anon_sym_decltype, + ACTIONS(3978), 1, + anon_sym_enum, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(11099), 1, + sym_primitive_type, + ACTIONS(11115), 1, + sym_identifier, + ACTIONS(11117), 1, anon_sym_typename, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4691), 1, + STATE(2073), 1, + sym_template_type, + STATE(2087), 1, + sym_qualified_type_identifier, + STATE(2093), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2104), 1, sym_splice_specifier, - STATE(4706), 1, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2221), 1, sym_decltype_auto, - STATE(4739), 1, + STATE(2233), 1, sym_type_specifier, - STATE(7573), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(8606), 1, + STATE(8763), 1, sym__scope_resolution, - STATE(9062), 1, - sym_template_type, - STATE(9246), 1, - sym_qualified_type_identifier, - STATE(4790), 2, + STATE(2169), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12810), 4, + ACTIONS(3974), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4714), 7, + STATE(2222), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -654970,48 +677553,31 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [265928] = 16, + [267805] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(11629), 1, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(12277), 1, + anon_sym_LT, + STATE(2938), 1, + sym_template_argument_list, + ACTIONS(6565), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6572), 28, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11695), 1, - sym_identifier, - ACTIONS(11697), 1, anon_sym_STAR, - ACTIONS(11699), 1, anon_sym_AMP_AMP, - ACTIONS(11701), 1, - anon_sym_AMP, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(8938), 1, - sym__field_declarator, - STATE(9063), 1, - sym_operator_name, - STATE(11009), 1, - sym_ms_based_modifier, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6842), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8721), 7, - 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(2937), 13, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -655023,61 +677589,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [265997] = 25, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [267854] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2648), 1, + ACTIONS(3092), 1, anon_sym_LBRACK_COLON, - ACTIONS(3245), 1, + ACTIONS(3839), 1, anon_sym_class, - ACTIONS(3247), 1, + ACTIONS(3841), 1, anon_sym_struct, - ACTIONS(3249), 1, + ACTIONS(3843), 1, anon_sym_union, - ACTIONS(3255), 1, + ACTIONS(3849), 1, sym_auto, - ACTIONS(3257), 1, + ACTIONS(3851), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10725), 1, + ACTIONS(11095), 1, sym_identifier, - ACTIONS(10727), 1, + ACTIONS(11097), 1, anon_sym_COLON_COLON, - ACTIONS(10729), 1, + ACTIONS(11099), 1, sym_primitive_type, - ACTIONS(12423), 1, + ACTIONS(12839), 1, anon_sym_enum, - ACTIONS(12425), 1, + ACTIONS(12841), 1, anon_sym_typename, - STATE(2269), 1, + STATE(2385), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2519), 1, + STATE(2605), 1, sym_splice_specifier, - STATE(2567), 1, + STATE(2659), 1, sym__splice_specialization_specifier, - STATE(2591), 1, + STATE(2712), 1, sym_template_type, - STATE(2699), 1, + STATE(2843), 1, sym_qualified_type_identifier, - STATE(3138), 1, + STATE(3166), 1, sym_decltype_auto, - STATE(4727), 1, + STATE(3238), 1, sym_type_specifier, - STATE(8604), 1, + STATE(8702), 1, sym__scope_resolution, - STATE(2973), 2, + STATE(3053), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12421), 4, + ACTIONS(12837), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3140), 7, + STATE(3167), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -655085,138 +677658,75 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [266084] = 26, + [267941] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(2732), 1, + ACTIONS(2300), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8158), 1, + anon_sym_LBRACE, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(8007), 1, - anon_sym_LBRACE, - ACTIONS(10735), 1, + ACTIONS(11010), 1, anon_sym_COLON_COLON, - ACTIONS(12772), 1, + ACTIONS(13135), 1, sym_identifier, - STATE(2530), 1, + STATE(2547), 1, sym_splice_specifier, - STATE(2597), 1, + STATE(2601), 1, sym__splice_specialization_specifier, - STATE(2644), 1, + STATE(2692), 1, sym_field_declaration_list, - STATE(3033), 1, + STATE(2982), 1, sym__class_declaration_item, - STATE(7741), 1, + STATE(7822), 1, sym_ms_declspec_modifier, - STATE(8624), 1, + STATE(8682), 1, sym__scope_resolution, - STATE(9380), 1, + STATE(9585), 1, sym_virtual_specifier, - STATE(10305), 1, + STATE(10216), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2408), 2, + STATE(2389), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2598), 2, + STATE(2615), 2, sym_template_type, sym_splice_type_specifier, - STATE(7790), 2, + STATE(7820), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8282), 3, + STATE(8412), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [266173] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, - anon_sym_class, - ACTIONS(1890), 1, - anon_sym_struct, - ACTIONS(1892), 1, - anon_sym_union, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10289), 1, - sym_identifier, - ACTIONS(10293), 1, - anon_sym_COLON_COLON, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(2949), 1, - sym_decltype, - STATE(3012), 1, - sym_type_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3424), 1, - sym_splice_type_specifier, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(8605), 1, - sym__scope_resolution, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(1882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [266262] = 4, + [268030] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5406), 1, + ACTIONS(5800), 1, anon_sym_SEMI, - ACTIONS(5260), 9, + ACTIONS(5645), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -655226,7 +677736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(5253), 25, + ACTIONS(5638), 25, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_STAR, @@ -655252,343 +677762,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [266307] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(129), 1, - sym_auto, - ACTIONS(131), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(12806), 1, - sym_identifier, - ACTIONS(12808), 1, - anon_sym_COLON_COLON, - ACTIONS(12812), 1, - sym_primitive_type, - ACTIONS(12814), 1, - anon_sym_enum, - ACTIONS(12816), 1, - anon_sym_class, - ACTIONS(12818), 1, - anon_sym_struct, - ACTIONS(12820), 1, - anon_sym_union, - ACTIONS(12822), 1, - anon_sym_typename, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4691), 1, - sym_splice_specifier, - STATE(4706), 1, - sym_decltype_auto, - STATE(7573), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(8606), 1, - sym__scope_resolution, - STATE(9062), 1, - sym_template_type, - STATE(9246), 1, - sym_qualified_type_identifier, - STATE(10221), 1, - sym_type_specifier, - STATE(4790), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4714), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [266394] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10751), 1, - anon_sym_DASH_GT, - ACTIONS(12144), 1, - anon_sym___attribute__, - ACTIONS(12147), 1, - anon_sym___attribute, - ACTIONS(12824), 1, - anon_sym_requires, - STATE(7522), 1, - sym_ref_qualifier, - STATE(8314), 1, - sym_trailing_return_type, - STATE(8335), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12744), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7643), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7544), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [266479] = 26, + [268075] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2078), 1, + ACTIONS(4360), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(6834), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(10686), 1, + ACTIONS(9246), 1, + anon_sym_LBRACE, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(12756), 1, + ACTIONS(13152), 1, sym_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(2069), 1, - sym_field_declaration_list, - STATE(2085), 1, + STATE(4131), 1, sym__class_declaration_item, - STATE(7703), 1, + STATE(4263), 1, + sym_splice_specifier, + STATE(4380), 1, + sym_field_declaration_list, + STATE(7888), 1, sym_ms_declspec_modifier, - STATE(8593), 1, + STATE(8675), 1, sym__scope_resolution, - STATE(9311), 1, + STATE(9587), 1, sym_virtual_specifier, - STATE(10472), 1, + STATE(10321), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1966), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2067), 2, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(7694), 2, + STATE(4032), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7887), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8282), 3, + STATE(8412), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [266568] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11693), 1, - anon_sym_decltype, - ACTIONS(12762), 1, - sym_auto, - STATE(7536), 1, - sym_decltype_auto, - ACTIONS(6798), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(6800), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [266617] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(11627), 1, - sym_identifier, - ACTIONS(11629), 1, - anon_sym_LPAREN2, - ACTIONS(11631), 1, - anon_sym_STAR, - ACTIONS(11633), 1, - anon_sym_AMP_AMP, - ACTIONS(11635), 1, - anon_sym_AMP, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(8539), 1, - sym__field_declarator, - STATE(8661), 1, - sym_operator_name, - STATE(11372), 1, - sym_ms_based_modifier, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6842), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8721), 7, - 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(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [266686] = 25, + [268164] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, + ACTIONS(3236), 1, sym_auto, - ACTIONS(131), 1, + ACTIONS(3238), 1, anon_sym_decltype, - ACTIONS(1954), 1, - anon_sym_enum, - ACTIONS(1956), 1, + ACTIONS(3256), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4399), 1, anon_sym_class, - ACTIONS(1958), 1, + ACTIONS(4401), 1, anon_sym_struct, - ACTIONS(1960), 1, + ACTIONS(4403), 1, anon_sym_union, - ACTIONS(3071), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11050), 1, sym_primitive_type, - ACTIONS(3091), 1, + ACTIONS(11057), 1, + sym_identifier, + ACTIONS(11059), 1, + anon_sym_COLON_COLON, + ACTIONS(12988), 1, + anon_sym_enum, + ACTIONS(12990), 1, + anon_sym_typename, + STATE(3770), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4043), 1, + sym_template_type, + STATE(4204), 1, + sym_qualified_type_identifier, + STATE(4272), 1, + sym_splice_specifier, + STATE(4305), 1, + sym__splice_specialization_specifier, + STATE(4426), 1, + sym_decltype_auto, + STATE(4457), 1, + sym_type_specifier, + STATE(8676), 1, + sym__scope_resolution, + STATE(4373), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12986), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4430), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [268251] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3104), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(4064), 1, + anon_sym_class, + ACTIONS(4066), 1, + anon_sym_struct, + ACTIONS(4068), 1, + anon_sym_union, + ACTIONS(4072), 1, + sym_auto, + ACTIONS(4074), 1, + anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5313), 1, - anon_sym_typename, - ACTIONS(6091), 1, + ACTIONS(11071), 1, sym_identifier, - ACTIONS(6101), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(3709), 1, + ACTIONS(11075), 1, + sym_primitive_type, + ACTIONS(13052), 1, + anon_sym_enum, + ACTIONS(13054), 1, + anon_sym_typename, + STATE(2449), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4520), 1, + STATE(2742), 1, + sym_splice_specifier, + STATE(2921), 1, + sym__splice_specialization_specifier, + STATE(2933), 1, sym_template_type, - STATE(4521), 1, + STATE(3031), 1, sym_qualified_type_identifier, - STATE(4706), 1, + STATE(3527), 1, sym_decltype_auto, - STATE(4739), 1, + STATE(3534), 1, sym_type_specifier, - STATE(5044), 1, - sym_splice_specifier, - STATE(8579), 1, + STATE(8686), 1, sym__scope_resolution, - STATE(4790), 2, + STATE(3447), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(59), 4, + ACTIONS(13050), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4714), 7, + STATE(3528), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -655596,62 +677949,62 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [266773] = 26, + [268338] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, + ACTIONS(3891), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(3893), 1, anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3291), 1, + ACTIONS(4314), 1, anon_sym_enum, - ACTIONS(3293), 1, + ACTIONS(4316), 1, anon_sym_class, - ACTIONS(3295), 1, + ACTIONS(4318), 1, anon_sym_struct, - ACTIONS(3297), 1, + ACTIONS(4320), 1, anon_sym_union, - ACTIONS(4800), 1, + ACTIONS(4360), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10649), 1, + ACTIONS(11079), 1, sym_identifier, - ACTIONS(10651), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(10653), 1, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(11085), 1, anon_sym_typename, - STATE(2634), 1, + STATE(3488), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(2949), 1, + STATE(3759), 1, + sym_template_type, + STATE(3819), 1, + sym_qualified_type_identifier, + STATE(3967), 1, sym_decltype, - STATE(3012), 1, + STATE(4108), 1, sym_type_specifier, - STATE(3100), 1, + STATE(4119), 1, sym_decltype_auto, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(3688), 1, + STATE(4263), 1, sym_splice_specifier, - STATE(4561), 1, + STATE(4758), 1, sym_splice_type_specifier, - STATE(8621), 1, + STATE(8675), 1, sym__scope_resolution, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(4310), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(4064), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -655659,61 +678012,62 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [266862] = 25, + [268427] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2242), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(3343), 1, + ACTIONS(3809), 1, anon_sym_class, - ACTIONS(3345), 1, + ACTIONS(3811), 1, anon_sym_struct, - ACTIONS(3347), 1, + ACTIONS(3813), 1, anon_sym_union, - ACTIONS(3361), 1, + ACTIONS(3819), 1, sym_auto, - ACTIONS(3363), 1, + ACTIONS(3821), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(3978), 1, + anon_sym_enum, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10721), 1, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(11099), 1, sym_primitive_type, - ACTIONS(10741), 1, + ACTIONS(11115), 1, sym_identifier, - ACTIONS(10743), 1, - anon_sym_COLON_COLON, - ACTIONS(12634), 1, - anon_sym_enum, - ACTIONS(12636), 1, + ACTIONS(11117), 1, anon_sym_typename, - STATE(3270), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3627), 1, + STATE(2073), 1, sym_template_type, - STATE(3634), 1, + STATE(2087), 1, + sym_qualified_type_identifier, + STATE(2093), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2104), 1, sym_splice_specifier, - STATE(3640), 1, + STATE(2169), 1, + sym_decltype, + STATE(2170), 1, sym__splice_specialization_specifier, - STATE(3658), 1, - sym_qualified_type_identifier, - STATE(4041), 1, + STATE(2211), 1, + sym_splice_type_specifier, + STATE(2221), 1, sym_decltype_auto, - STATE(5332), 1, + STATE(2233), 1, sym_type_specifier, - STATE(8631), 1, + STATE(8763), 1, sym__scope_resolution, - STATE(3887), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12632), 4, + ACTIONS(3974), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4042), 7, + STATE(2222), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -655721,157 +678075,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [266949] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6748), 1, - anon_sym_COLON_COLON, - ACTIONS(11895), 1, - anon_sym_LT, - STATE(2848), 1, - sym_template_argument_list, - ACTIONS(6751), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(6746), 28, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - anon_sym_final, - anon_sym_override, - [266998] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(11627), 1, - sym_identifier, - ACTIONS(11629), 1, - anon_sym_LPAREN2, - ACTIONS(11631), 1, - anon_sym_STAR, - ACTIONS(11633), 1, - anon_sym_AMP_AMP, - ACTIONS(11635), 1, - anon_sym_AMP, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(8531), 1, - sym__field_declarator, - STATE(8661), 1, - sym_operator_name, - STATE(11372), 1, - sym_ms_based_modifier, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6842), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8721), 7, - 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(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [267067] = 25, + [268516] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 1, + ACTIONS(2300), 1, anon_sym_LBRACK_COLON, - ACTIONS(3197), 1, - anon_sym_enum, - ACTIONS(3199), 1, + ACTIONS(3734), 1, anon_sym_class, - ACTIONS(3201), 1, + ACTIONS(3736), 1, anon_sym_struct, - ACTIONS(3203), 1, + ACTIONS(3738), 1, anon_sym_union, - ACTIONS(3207), 1, + ACTIONS(3742), 1, sym_auto, - ACTIONS(3209), 1, + ACTIONS(3744), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10676), 1, + ACTIONS(11008), 1, sym_identifier, - ACTIONS(10678), 1, + ACTIONS(11010), 1, anon_sym_COLON_COLON, - ACTIONS(10680), 1, + ACTIONS(11012), 1, sym_primitive_type, - ACTIONS(10682), 1, + ACTIONS(13038), 1, + anon_sym_enum, + ACTIONS(13040), 1, anon_sym_typename, - STATE(2119), 1, + STATE(2360), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2431), 1, + STATE(2547), 1, sym_splice_specifier, - STATE(2509), 1, - sym_template_type, - STATE(2514), 1, + STATE(2601), 1, sym__splice_specialization_specifier, - STATE(2568), 1, + STATE(2622), 1, + sym_template_type, + STATE(2698), 1, sym_qualified_type_identifier, - STATE(2925), 1, + STATE(2997), 1, sym_decltype_auto, - STATE(2956), 1, + STATE(4651), 1, sym_type_specifier, - STATE(8639), 1, + STATE(8682), 1, sym__scope_resolution, - STATE(2832), 2, + STATE(2942), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3193), 4, + ACTIONS(13036), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2926), 7, + STATE(3067), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -655879,61 +678137,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [267154] = 25, + [268603] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 1, + ACTIONS(129), 1, sym_auto, - ACTIONS(2857), 1, + ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(2875), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3546), 1, - anon_sym_class, - ACTIONS(3548), 1, - anon_sym_struct, - ACTIONS(3550), 1, - anon_sym_union, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10699), 1, - sym_primitive_type, - ACTIONS(10703), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13170), 1, sym_identifier, - ACTIONS(10705), 1, + ACTIONS(13172), 1, anon_sym_COLON_COLON, - ACTIONS(12670), 1, + ACTIONS(13176), 1, + sym_primitive_type, + ACTIONS(13178), 1, anon_sym_enum, - ACTIONS(12672), 1, + ACTIONS(13180), 1, + anon_sym_class, + ACTIONS(13182), 1, + anon_sym_struct, + ACTIONS(13184), 1, + anon_sym_union, + ACTIONS(13186), 1, anon_sym_typename, - STATE(3683), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3965), 1, - sym_template_type, - STATE(4048), 1, - sym_qualified_type_identifier, - STATE(4067), 1, - sym_splice_specifier, - STATE(4189), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4401), 1, - sym_decltype_auto, - STATE(6439), 1, + STATE(4776), 1, sym_type_specifier, - STATE(8549), 1, + STATE(4802), 1, + sym_splice_specifier, + STATE(4948), 1, + sym_decltype_auto, + STATE(7700), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8695), 1, sym__scope_resolution, - STATE(4252), 2, + STATE(9262), 1, + sym_template_type, + STATE(9343), 1, + sym_qualified_type_identifier, + STATE(4830), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12668), 4, + ACTIONS(13174), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4402), 7, + STATE(4935), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -655941,61 +678199,62 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [267241] = 25, + [268690] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2744), 1, + ACTIONS(3236), 1, + sym_auto, + ACTIONS(3238), 1, + anon_sym_decltype, + ACTIONS(3256), 1, anon_sym_LBRACK_COLON, - ACTIONS(3457), 1, + ACTIONS(4397), 1, + anon_sym_enum, + ACTIONS(4399), 1, anon_sym_class, - ACTIONS(3459), 1, + ACTIONS(4401), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(4403), 1, anon_sym_union, - ACTIONS(3465), 1, - sym_auto, - ACTIONS(3467), 1, - anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10709), 1, + ACTIONS(11050), 1, + sym_primitive_type, + ACTIONS(11057), 1, sym_identifier, - ACTIONS(10711), 1, + ACTIONS(11059), 1, anon_sym_COLON_COLON, - ACTIONS(10713), 1, - sym_primitive_type, - ACTIONS(12387), 1, - anon_sym_enum, - ACTIONS(12389), 1, + ACTIONS(11061), 1, anon_sym_typename, - STATE(2336), 1, + STATE(3490), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2677), 1, - sym_splice_specifier, - STATE(2814), 1, + STATE(4043), 1, sym_template_type, - STATE(2837), 1, - sym__splice_specialization_specifier, - STATE(2887), 1, + STATE(4204), 1, sym_qualified_type_identifier, - STATE(3453), 1, + STATE(4272), 1, + sym_splice_specifier, + STATE(4305), 1, + sym__splice_specialization_specifier, + STATE(4373), 1, + sym_decltype, + STATE(4426), 1, sym_decltype_auto, - STATE(5292), 1, + STATE(4457), 1, sym_type_specifier, - STATE(8588), 1, - sym__scope_resolution, - STATE(3262), 2, - sym_decltype, + STATE(4690), 1, sym_splice_type_specifier, - STATE(10976), 2, + STATE(8676), 1, + sym__scope_resolution, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12385), 4, + ACTIONS(4395), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3460), 7, + STATE(4430), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -656003,186 +678262,167 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [267328] = 26, + [268779] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(9596), 1, - anon_sym_LBRACE, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10697), 1, - anon_sym_COLON_COLON, - ACTIONS(12750), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(11987), 1, + anon_sym_LPAREN2, + ACTIONS(11995), 1, sym_identifier, - STATE(4189), 1, - sym__splice_specialization_specifier, - STATE(4257), 1, - sym_field_declaration_list, - STATE(4406), 1, - sym__class_declaration_item, - STATE(7130), 1, - sym_splice_specifier, - STATE(7781), 1, - sym_ms_declspec_modifier, - STATE(8634), 1, - sym__scope_resolution, - STATE(9428), 1, - sym_virtual_specifier, - STATE(10315), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(11997), 1, + anon_sym_STAR, + ACTIONS(11999), 1, + anon_sym_AMP_AMP, + ACTIONS(12001), 1, + anon_sym_AMP, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(9033), 1, + sym__field_declarator, + STATE(9236), 1, + sym_operator_name, + STATE(11191), 1, + sym_ms_based_modifier, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7086), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8839), 7, + 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(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [268848] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(11985), 1, + sym_identifier, + ACTIONS(11987), 1, + anon_sym_LPAREN2, + ACTIONS(11989), 1, + anon_sym_STAR, + ACTIONS(11991), 1, + anon_sym_AMP_AMP, + ACTIONS(11993), 1, + anon_sym_AMP, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(8638), 1, + sym__field_declarator, + STATE(8807), 1, + sym_operator_name, + STATE(10687), 1, + sym_ms_based_modifier, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3858), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4170), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7777), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8282), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [267417] = 25, + STATE(7086), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8839), 7, + 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(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [268917] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 1, + ACTIONS(3104), 1, anon_sym_LBRACK_COLON, - ACTIONS(3175), 1, + ACTIONS(4062), 1, + anon_sym_enum, + ACTIONS(4064), 1, anon_sym_class, - ACTIONS(3177), 1, + ACTIONS(4066), 1, anon_sym_struct, - ACTIONS(3179), 1, + ACTIONS(4068), 1, anon_sym_union, - ACTIONS(3185), 1, + ACTIONS(4072), 1, sym_auto, - ACTIONS(3187), 1, + ACTIONS(4074), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10686), 1, - anon_sym_COLON_COLON, - ACTIONS(10737), 1, - sym_primitive_type, - ACTIONS(10747), 1, + ACTIONS(11071), 1, sym_identifier, - ACTIONS(12487), 1, - anon_sym_enum, - ACTIONS(12489), 1, - anon_sym_typename, - STATE(1963), 1, - sym_template_type, - STATE(1994), 1, - sym_qualified_type_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, - sym__splice_specialization_specifier, - STATE(2070), 1, - sym_decltype_auto, - STATE(2113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3383), 1, - sym_type_specifier, - STATE(8593), 1, - sym__scope_resolution, - STATE(2063), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12485), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2089), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [267504] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(129), 1, - sym_auto, - ACTIONS(131), 1, - anon_sym_decltype, - ACTIONS(3071), 1, + ACTIONS(11073), 1, + anon_sym_COLON_COLON, + ACTIONS(11075), 1, sym_primitive_type, - ACTIONS(3073), 1, - anon_sym_enum, - ACTIONS(3075), 1, - anon_sym_class, - ACTIONS(3077), 1, - anon_sym_struct, - ACTIONS(3079), 1, - anon_sym_union, - ACTIONS(3081), 1, + ACTIONS(11077), 1, anon_sym_typename, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(5572), 1, - sym_identifier, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(3709), 1, + STATE(2356), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4350), 1, + STATE(2742), 1, sym_splice_specifier, - STATE(4520), 1, + STATE(2921), 1, + sym__splice_specialization_specifier, + STATE(2933), 1, sym_template_type, - STATE(4521), 1, + STATE(3031), 1, sym_qualified_type_identifier, - STATE(4706), 1, + STATE(3527), 1, sym_decltype_auto, - STATE(4739), 1, + STATE(3534), 1, sym_type_specifier, - STATE(8638), 1, + STATE(8686), 1, sym__scope_resolution, - STATE(4790), 2, + STATE(3447), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(59), 4, + ACTIONS(4058), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4714), 7, + STATE(3528), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -656190,61 +678430,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [267591] = 25, + [269004] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(3199), 1, + ACTIONS(3809), 1, anon_sym_class, - ACTIONS(3201), 1, + ACTIONS(3811), 1, anon_sym_struct, - ACTIONS(3203), 1, + ACTIONS(3813), 1, anon_sym_union, - ACTIONS(3207), 1, + ACTIONS(3819), 1, sym_auto, - ACTIONS(3209), 1, + ACTIONS(3821), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10676), 1, - sym_identifier, - ACTIONS(10678), 1, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - ACTIONS(10680), 1, + ACTIONS(11099), 1, sym_primitive_type, - ACTIONS(12471), 1, + ACTIONS(11115), 1, + sym_identifier, + ACTIONS(12897), 1, anon_sym_enum, - ACTIONS(12473), 1, + ACTIONS(12899), 1, anon_sym_typename, - STATE(2250), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2431), 1, - sym_splice_specifier, - STATE(2509), 1, + STATE(2073), 1, sym_template_type, - STATE(2514), 1, - sym__splice_specialization_specifier, - STATE(2568), 1, + STATE(2087), 1, sym_qualified_type_identifier, - STATE(2925), 1, + STATE(2104), 1, + sym_splice_specifier, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2210), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2221), 1, sym_decltype_auto, - STATE(4653), 1, + STATE(2233), 1, sym_type_specifier, - STATE(8639), 1, + STATE(8763), 1, sym__scope_resolution, - STATE(2832), 2, + STATE(2169), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12469), 4, + ACTIONS(12895), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2926), 7, + STATE(2222), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -656252,62 +678492,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [267678] = 26, + [269091] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3173), 1, - anon_sym_enum, - ACTIONS(3175), 1, + ACTIONS(3891), 1, + sym_auto, + ACTIONS(3893), 1, + anon_sym_decltype, + ACTIONS(4316), 1, anon_sym_class, - ACTIONS(3177), 1, + ACTIONS(4318), 1, anon_sym_struct, - ACTIONS(3179), 1, + ACTIONS(4320), 1, anon_sym_union, - ACTIONS(3185), 1, - sym_auto, - ACTIONS(3187), 1, - anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(4360), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10684), 1, + ACTIONS(11079), 1, sym_identifier, - ACTIONS(10686), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(10688), 1, + ACTIONS(11083), 1, sym_primitive_type, - ACTIONS(10690), 1, + ACTIONS(12759), 1, + anon_sym_enum, + ACTIONS(12761), 1, anon_sym_typename, - STATE(1963), 1, + STATE(3711), 1, + sym__splice_specialization_specifier, + STATE(3759), 1, sym_template_type, - STATE(1965), 1, + STATE(3762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1994), 1, + STATE(3819), 1, sym_qualified_type_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, - sym__splice_specialization_specifier, - STATE(2063), 1, - sym_decltype, - STATE(2070), 1, + STATE(4119), 1, sym_decltype_auto, - STATE(2082), 1, + STATE(4263), 1, + sym_splice_specifier, + STATE(6515), 1, sym_type_specifier, - STATE(2129), 1, - sym_splice_type_specifier, - STATE(8593), 1, + STATE(8675), 1, sym__scope_resolution, - STATE(10976), 2, + STATE(3967), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3169), 4, + ACTIONS(12757), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2089), 7, + STATE(4064), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -656315,62 +678554,168 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [267767] = 26, + [269178] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3341), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(11987), 1, + anon_sym_LPAREN2, + ACTIONS(11995), 1, + sym_identifier, + ACTIONS(11997), 1, + anon_sym_STAR, + ACTIONS(11999), 1, + anon_sym_AMP_AMP, + ACTIONS(12001), 1, + anon_sym_AMP, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(9026), 1, + sym__field_declarator, + STATE(9236), 1, + sym_operator_name, + STATE(11191), 1, + sym_ms_based_modifier, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7086), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8839), 7, + 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(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [269247] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(11987), 1, + anon_sym_LPAREN2, + ACTIONS(11995), 1, + sym_identifier, + ACTIONS(11997), 1, + anon_sym_STAR, + ACTIONS(11999), 1, + anon_sym_AMP_AMP, + ACTIONS(12001), 1, + anon_sym_AMP, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(9054), 1, + sym__field_declarator, + STATE(9236), 1, + sym_operator_name, + STATE(11191), 1, + sym_ms_based_modifier, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7086), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8839), 7, + 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(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [269316] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(3343), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(3345), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(3347), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(3361), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(3363), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10721), 1, - sym_primitive_type, - ACTIONS(10741), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10743), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10745), 1, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(10657), 1, anon_sym_typename, - STATE(2838), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3424), 1, - sym_splice_type_specifier, - STATE(3627), 1, - sym_template_type, - STATE(3634), 1, - sym_splice_specifier, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(3658), 1, - sym_qualified_type_identifier, - STATE(3887), 1, + STATE(3021), 1, sym_decltype, - STATE(3947), 1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3097), 1, sym_type_specifier, - STATE(4041), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(8631), 1, + STATE(3485), 1, + sym_splice_type_specifier, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3337), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4042), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -656378,124 +678723,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [267856] = 26, + [269405] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(3891), 1, + sym_auto, + ACTIONS(3893), 1, anon_sym_decltype, - ACTIONS(4780), 1, - anon_sym_COLON_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(11202), 1, - anon_sym_LBRACE, - ACTIONS(12797), 1, - sym_identifier, - STATE(4691), 1, - sym_splice_specifier, - STATE(5263), 1, - sym__splice_specialization_specifier, - STATE(5861), 1, - sym_field_declaration_list, - STATE(5941), 1, - sym__class_declaration_item, - STATE(7763), 1, - sym_ms_declspec_modifier, - STATE(8584), 1, - sym__scope_resolution, - STATE(9424), 1, - sym_virtual_specifier, - STATE(10362), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5166), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(5298), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7762), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8282), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [267945] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2078), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3175), 1, + ACTIONS(4316), 1, anon_sym_class, - ACTIONS(3177), 1, + ACTIONS(4318), 1, anon_sym_struct, - ACTIONS(3179), 1, + ACTIONS(4320), 1, anon_sym_union, - ACTIONS(3185), 1, - sym_auto, - ACTIONS(3187), 1, - anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(4360), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10684), 1, + ACTIONS(11079), 1, sym_identifier, - ACTIONS(10686), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(10688), 1, + ACTIONS(11083), 1, sym_primitive_type, - ACTIONS(12682), 1, + ACTIONS(12759), 1, anon_sym_enum, - ACTIONS(12684), 1, + ACTIONS(12761), 1, anon_sym_typename, - STATE(1963), 1, + STATE(3711), 1, + sym__splice_specialization_specifier, + STATE(3759), 1, sym_template_type, - STATE(1994), 1, - sym_qualified_type_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2024), 1, + STATE(3762), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2026), 1, - sym__splice_specialization_specifier, - STATE(2070), 1, - sym_decltype_auto, - STATE(2082), 1, + STATE(3819), 1, + sym_qualified_type_identifier, + STATE(4108), 1, sym_type_specifier, - STATE(8593), 1, + STATE(4119), 1, + sym_decltype_auto, + STATE(4263), 1, + sym_splice_specifier, + STATE(8675), 1, sym__scope_resolution, - STATE(2063), 2, + STATE(3967), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12680), 4, + ACTIONS(12757), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2089), 7, + STATE(4064), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -656503,62 +678785,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [268032] = 26, + [269492] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(129), 1, + sym_auto, + ACTIONS(131), 1, + anon_sym_decltype, + ACTIONS(2314), 1, anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(2316), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(2318), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(2320), 1, anon_sym_union, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(3466), 1, + sym_primitive_type, + ACTIONS(3486), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(5629), 1, + anon_sym_typename, + ACTIONS(6455), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(6469), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10297), 1, - anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(2949), 1, - sym_decltype, - STATE(3012), 1, - sym_type_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3561), 1, + STATE(3824), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4578), 1, sym_template_type, - STATE(3623), 1, + STATE(4601), 1, sym_qualified_type_identifier, - STATE(7086), 1, + STATE(4776), 1, + sym_type_specifier, + STATE(4948), 1, + sym_decltype_auto, + STATE(5157), 1, sym_splice_specifier, - STATE(7818), 1, - sym_splice_type_specifier, - STATE(8605), 1, + STATE(8756), 1, sym__scope_resolution, - STATE(10976), 2, + STATE(4830), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(4935), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -656566,61 +678847,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [268121] = 25, + [269579] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2648), 1, + ACTIONS(2300), 1, anon_sym_LBRACK_COLON, - ACTIONS(3245), 1, + ACTIONS(3734), 1, anon_sym_class, - ACTIONS(3247), 1, + ACTIONS(3736), 1, anon_sym_struct, - ACTIONS(3249), 1, + ACTIONS(3738), 1, anon_sym_union, - ACTIONS(3255), 1, + ACTIONS(3742), 1, sym_auto, - ACTIONS(3257), 1, + ACTIONS(3744), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10725), 1, + ACTIONS(11008), 1, sym_identifier, - ACTIONS(10727), 1, + ACTIONS(11010), 1, anon_sym_COLON_COLON, - ACTIONS(10729), 1, + ACTIONS(11012), 1, sym_primitive_type, - ACTIONS(12423), 1, + ACTIONS(13038), 1, anon_sym_enum, - ACTIONS(12425), 1, + ACTIONS(13040), 1, anon_sym_typename, - STATE(2269), 1, + STATE(2360), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2519), 1, + STATE(2547), 1, sym_splice_specifier, - STATE(2567), 1, + STATE(2601), 1, sym__splice_specialization_specifier, - STATE(2591), 1, + STATE(2622), 1, sym_template_type, - STATE(2699), 1, + STATE(2698), 1, sym_qualified_type_identifier, - STATE(3138), 1, + STATE(2997), 1, sym_decltype_auto, - STATE(4733), 1, + STATE(4647), 1, sym_type_specifier, - STATE(8604), 1, + STATE(8682), 1, sym__scope_resolution, - STATE(2973), 2, + STATE(2942), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12421), 4, + ACTIONS(13036), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3140), 7, + STATE(3067), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -656628,61 +678909,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [268208] = 25, + [269666] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, - sym_auto, - ACTIONS(3363), 1, - anon_sym_decltype, - ACTIONS(3397), 1, - anon_sym_enum, - ACTIONS(3399), 1, + ACTIONS(3008), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4429), 1, anon_sym_class, - ACTIONS(3401), 1, + ACTIONS(4431), 1, anon_sym_struct, - ACTIONS(3403), 1, + ACTIONS(4433), 1, anon_sym_union, - ACTIONS(3443), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(4439), 1, + sym_auto, + ACTIONS(4441), 1, + anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10717), 1, + ACTIONS(11087), 1, sym_identifier, - ACTIONS(10719), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(10721), 1, + ACTIONS(11091), 1, sym_primitive_type, - ACTIONS(10723), 1, + ACTIONS(12795), 1, + anon_sym_enum, + ACTIONS(12797), 1, anon_sym_typename, - STATE(3403), 1, + STATE(2377), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3627), 1, - sym_template_type, - STATE(3640), 1, + STATE(2638), 1, + sym_splice_specifier, + STATE(2696), 1, sym__splice_specialization_specifier, - STATE(3658), 1, + STATE(2701), 1, + sym_template_type, + STATE(2781), 1, sym_qualified_type_identifier, - STATE(3947), 1, - sym_type_specifier, - STATE(4041), 1, + STATE(3099), 1, sym_decltype_auto, - STATE(4072), 1, - sym_splice_specifier, - STATE(8571), 1, + STATE(4881), 1, + sym_type_specifier, + STATE(8687), 1, sym__scope_resolution, - STATE(3887), 2, + STATE(2984), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3393), 4, + ACTIONS(12793), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4042), 7, + STATE(3123), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -656690,61 +678971,186 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [268295] = 25, + [269753] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12065), 1, + anon_sym_decltype, + ACTIONS(13121), 1, + sym_auto, + STATE(7607), 1, + sym_decltype_auto, + ACTIONS(7223), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7225), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [269802] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5796), 1, + anon_sym_SEMI, + ACTIONS(5645), 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(5638), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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_DOT_STAR, + anon_sym_DASH_GT, + [269847] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5906), 1, + anon_sym_SEMI, + ACTIONS(5645), 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(5638), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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_DOT_STAR, + anon_sym_DASH_GT, + [269892] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(3175), 1, + ACTIONS(3873), 1, anon_sym_class, - ACTIONS(3177), 1, + ACTIONS(3875), 1, anon_sym_struct, - ACTIONS(3179), 1, + ACTIONS(3877), 1, anon_sym_union, - ACTIONS(3185), 1, + ACTIONS(3891), 1, sym_auto, - ACTIONS(3187), 1, + ACTIONS(3893), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10686), 1, - anon_sym_COLON_COLON, - ACTIONS(10737), 1, + ACTIONS(11083), 1, sym_primitive_type, - ACTIONS(10747), 1, + ACTIONS(11109), 1, sym_identifier, - ACTIONS(12487), 1, + ACTIONS(11111), 1, + anon_sym_COLON_COLON, + ACTIONS(12875), 1, anon_sym_enum, - ACTIONS(12489), 1, + ACTIONS(12877), 1, anon_sym_typename, - STATE(1963), 1, + STATE(3375), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3711), 1, + sym__splice_specialization_specifier, + STATE(3719), 1, + sym_splice_specifier, + STATE(3759), 1, sym_template_type, - STATE(1994), 1, + STATE(3819), 1, sym_qualified_type_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, - sym__splice_specialization_specifier, - STATE(2070), 1, + STATE(4119), 1, sym_decltype_auto, - STATE(2113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3472), 1, + STATE(5335), 1, sym_type_specifier, - STATE(8593), 1, + STATE(8707), 1, sym__scope_resolution, - STATE(2063), 2, + STATE(3967), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12485), 4, + ACTIONS(12873), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2089), 7, + STATE(4064), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -656752,61 +679158,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [268382] = 25, + [269979] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, - sym_auto, - ACTIONS(3363), 1, - anon_sym_decltype, - ACTIONS(3399), 1, + ACTIONS(3008), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4427), 1, + anon_sym_enum, + ACTIONS(4429), 1, anon_sym_class, - ACTIONS(3401), 1, + ACTIONS(4431), 1, anon_sym_struct, - ACTIONS(3403), 1, + ACTIONS(4433), 1, anon_sym_union, - ACTIONS(3443), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(4439), 1, + sym_auto, + ACTIONS(4441), 1, + anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10717), 1, + ACTIONS(11087), 1, sym_identifier, - ACTIONS(10719), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(10721), 1, + ACTIONS(11091), 1, sym_primitive_type, - ACTIONS(12407), 1, - anon_sym_enum, - ACTIONS(12409), 1, + ACTIONS(11093), 1, anon_sym_typename, - STATE(3627), 1, - sym_template_type, - STATE(3640), 1, + STATE(2283), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2638), 1, + sym_splice_specifier, + STATE(2696), 1, sym__splice_specialization_specifier, - STATE(3658), 1, + STATE(2701), 1, + sym_template_type, + STATE(2781), 1, sym_qualified_type_identifier, - STATE(3697), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3947), 1, + STATE(3089), 1, sym_type_specifier, - STATE(4041), 1, + STATE(3099), 1, sym_decltype_auto, - STATE(4072), 1, - sym_splice_specifier, - STATE(8571), 1, + STATE(8687), 1, sym__scope_resolution, - STATE(3887), 2, + STATE(2984), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12405), 4, + ACTIONS(4423), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4042), 7, + STATE(3123), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -656814,61 +679220,62 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [268469] = 25, + [270066] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2242), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(3343), 1, + ACTIONS(3807), 1, + anon_sym_enum, + ACTIONS(3809), 1, anon_sym_class, - ACTIONS(3345), 1, + ACTIONS(3811), 1, anon_sym_struct, - ACTIONS(3347), 1, + ACTIONS(3813), 1, anon_sym_union, - ACTIONS(3361), 1, + ACTIONS(3819), 1, sym_auto, - ACTIONS(3363), 1, + ACTIONS(3821), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10721), 1, - sym_primitive_type, - ACTIONS(10741), 1, + ACTIONS(11036), 1, sym_identifier, - ACTIONS(10743), 1, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - ACTIONS(12634), 1, - anon_sym_enum, - ACTIONS(12636), 1, + ACTIONS(11040), 1, + sym_primitive_type, + ACTIONS(11042), 1, anon_sym_typename, - STATE(3270), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3627), 1, + STATE(2073), 1, sym_template_type, - STATE(3634), 1, + STATE(2076), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2087), 1, + sym_qualified_type_identifier, + STATE(2104), 1, sym_splice_specifier, - STATE(3640), 1, + STATE(2169), 1, + sym_decltype, + STATE(2170), 1, sym__splice_specialization_specifier, - STATE(3658), 1, - sym_qualified_type_identifier, - STATE(4041), 1, + STATE(2211), 1, + sym_splice_type_specifier, + STATE(2221), 1, sym_decltype_auto, - STATE(5197), 1, + STATE(2233), 1, sym_type_specifier, - STATE(8631), 1, + STATE(8763), 1, sym__scope_resolution, - STATE(3887), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12632), 4, + ACTIONS(3803), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4042), 7, + STATE(2222), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -656876,62 +679283,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [268556] = 26, + [270155] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(129), 1, sym_auto, ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(1954), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13170), 1, + sym_identifier, + ACTIONS(13172), 1, + anon_sym_COLON_COLON, + ACTIONS(13176), 1, + sym_primitive_type, + ACTIONS(13178), 1, anon_sym_enum, - ACTIONS(1956), 1, + ACTIONS(13180), 1, anon_sym_class, - ACTIONS(1958), 1, + ACTIONS(13182), 1, anon_sym_struct, - ACTIONS(1960), 1, + ACTIONS(13184), 1, anon_sym_union, - ACTIONS(3071), 1, - sym_primitive_type, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(5313), 1, + ACTIONS(13186), 1, anon_sym_typename, - ACTIONS(6091), 1, - sym_identifier, - ACTIONS(6101), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3709), 1, + STATE(4802), 1, + sym_splice_specifier, + STATE(4948), 1, + sym_decltype_auto, + STATE(7700), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4479), 1, - sym_splice_type_specifier, - STATE(4520), 1, + STATE(8695), 1, + sym__scope_resolution, + STATE(9262), 1, sym_template_type, - STATE(4521), 1, + STATE(9343), 1, sym_qualified_type_identifier, - STATE(4706), 1, - sym_decltype_auto, - STATE(4739), 1, + STATE(10496), 1, sym_type_specifier, - STATE(4790), 1, + STATE(4830), 2, sym_decltype, - STATE(5044), 1, - sym_splice_specifier, - STATE(8579), 1, - sym__scope_resolution, - STATE(10976), 2, + sym_splice_type_specifier, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(59), 4, + ACTIONS(13174), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4714), 7, + STATE(4935), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -656939,61 +679345,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [268645] = 25, + [270242] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(3293), 1, + ACTIONS(3706), 1, anon_sym_class, - ACTIONS(3295), 1, + ACTIONS(3708), 1, anon_sym_struct, - ACTIONS(3297), 1, + ACTIONS(3710), 1, anon_sym_union, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10295), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10649), 1, + ACTIONS(11103), 1, sym_identifier, - ACTIONS(10651), 1, + ACTIONS(11105), 1, anon_sym_COLON_COLON, - ACTIONS(12437), 1, + ACTIONS(12787), 1, anon_sym_enum, - ACTIONS(12439), 1, + ACTIONS(12789), 1, anon_sym_typename, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3123), 1, + STATE(3126), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3561), 1, + STATE(3197), 1, + sym_decltype_auto, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(3688), 1, + STATE(3800), 1, sym_splice_specifier, - STATE(5197), 1, + STATE(6511), 1, sym_type_specifier, - STATE(8621), 1, + STATE(8738), 1, sym__scope_resolution, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12435), 4, + ACTIONS(12785), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -657001,357 +679407,427 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [268732] = 26, + [270329] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6101), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12804), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + ACTIONS(13154), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4546), 1, + STATE(4504), 1, + sym_splice_specifier, + STATE(4654), 1, sym_field_declaration_list, - STATE(4874), 1, + STATE(4987), 1, sym__class_declaration_item, - STATE(5044), 1, - sym_splice_specifier, - STATE(7742), 1, + STATE(7812), 1, sym_ms_declspec_modifier, - STATE(8579), 1, + STATE(8710), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(3904), 2, + STATE(6256), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7725), 2, + STATE(7811), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8282), 3, + STATE(8412), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [268821] = 26, + [270418] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12766), 1, + ACTIONS(13164), 1, sym_identifier, - ACTIONS(12768), 1, + ACTIONS(13166), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4691), 1, + STATE(4802), 1, sym_splice_specifier, - STATE(4874), 1, + STATE(4987), 1, sym__class_declaration_item, - STATE(7765), 1, + STATE(7817), 1, sym_ms_declspec_modifier, - STATE(8626), 1, + STATE(8705), 1, sym__scope_resolution, - STATE(9214), 1, + STATE(9320), 1, sym_field_declaration_list, - STATE(9433), 1, + STATE(9556), 1, sym_virtual_specifier, - STATE(10397), 1, + STATE(10528), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(7752), 2, + STATE(7816), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8718), 2, + STATE(8848), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8282), 3, + STATE(8412), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [268910] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(11895), 1, - anon_sym_LT, - STATE(3601), 1, - sym_template_argument_list, - ACTIONS(5272), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(7031), 28, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - anon_sym_final, - anon_sym_override, - [268959] = 26, + [270507] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(3256), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9596), 1, + ACTIONS(9965), 1, anon_sym_LBRACE, - ACTIONS(10705), 1, + ACTIONS(11059), 1, anon_sym_COLON_COLON, - ACTIONS(12754), 1, + ACTIONS(13133), 1, sym_identifier, - STATE(4067), 1, + STATE(4272), 1, sym_splice_specifier, - STATE(4189), 1, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(4257), 1, + STATE(4350), 1, sym_field_declaration_list, - STATE(4406), 1, + STATE(4544), 1, sym__class_declaration_item, - STATE(7739), 1, + STATE(7856), 1, sym_ms_declspec_modifier, - STATE(8549), 1, + STATE(8676), 1, sym__scope_resolution, - STATE(9428), 1, + STATE(9426), 1, sym_virtual_specifier, - STATE(10315), 1, + STATE(10236), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3858), 2, + STATE(3966), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4170), 2, + STATE(4296), 2, sym_template_type, sym_splice_type_specifier, - STATE(7782), 2, + STATE(7855), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8282), 3, + STATE(8412), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [269048] = 26, + [270596] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(3891), 1, + sym_auto, + ACTIONS(3893), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(4314), 1, + anon_sym_enum, + ACTIONS(4316), 1, + anon_sym_class, + ACTIONS(4318), 1, + anon_sym_struct, + ACTIONS(4320), 1, + anon_sym_union, + ACTIONS(4360), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(8909), 1, - anon_sym_LBRACE, - ACTIONS(10743), 1, - anon_sym_COLON_COLON, - ACTIONS(12776), 1, + ACTIONS(11079), 1, sym_identifier, - STATE(3634), 1, - sym_splice_specifier, - STATE(3640), 1, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(11085), 1, + anon_sym_typename, + STATE(3488), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(3835), 1, - sym_field_declaration_list, - STATE(4012), 1, - sym__class_declaration_item, - STATE(7695), 1, - sym_ms_declspec_modifier, - STATE(8631), 1, + STATE(3759), 1, + sym_template_type, + STATE(3819), 1, + sym_qualified_type_identifier, + STATE(4108), 1, + sym_type_specifier, + STATE(4119), 1, + sym_decltype_auto, + STATE(4263), 1, + sym_splice_specifier, + STATE(8675), 1, sym__scope_resolution, - STATE(9498), 1, - sym_virtual_specifier, - STATE(10434), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, + STATE(3967), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4310), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4064), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [270683] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10348), 1, + anon_sym_AMP_AMP, + ACTIONS(10350), 1, + anon_sym_AMP, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10919), 1, + anon_sym_DASH_GT, + ACTIONS(10921), 1, + anon_sym_requires, + ACTIONS(12406), 1, anon_sym___attribute__, + ACTIONS(12409), 1, anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3486), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(3624), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7690), 2, + STATE(7643), 1, + sym_ref_qualifier, + STATE(8441), 1, + sym_trailing_return_type, + STATE(8497), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8282), 3, - sym_attribute_specifier, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7770), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7791), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [270768] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(12067), 1, + anon_sym_STAR, + ACTIONS(12069), 1, + anon_sym_AMP_AMP, + ACTIONS(12071), 1, + anon_sym_AMP, + STATE(4883), 1, + sym_parameter_list, + STATE(6707), 1, sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [269137] = 26, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(9073), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6420), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6823), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [270837] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2823), 1, + ACTIONS(3092), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3837), 1, anon_sym_enum, - ACTIONS(2825), 1, + ACTIONS(3839), 1, anon_sym_class, - ACTIONS(2827), 1, + ACTIONS(3841), 1, anon_sym_struct, - ACTIONS(2829), 1, + ACTIONS(3843), 1, anon_sym_union, - ACTIONS(2855), 1, + ACTIONS(3849), 1, sym_auto, - ACTIONS(2857), 1, + ACTIONS(3851), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10695), 1, + ACTIONS(11095), 1, sym_identifier, - ACTIONS(10697), 1, + ACTIONS(11097), 1, anon_sym_COLON_COLON, - ACTIONS(10699), 1, + ACTIONS(11099), 1, sym_primitive_type, - ACTIONS(10701), 1, + ACTIONS(11101), 1, anon_sym_typename, - STATE(3965), 1, + STATE(2263), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2605), 1, + sym_splice_specifier, + STATE(2659), 1, + sym__splice_specialization_specifier, + STATE(2712), 1, sym_template_type, - STATE(4048), 1, + STATE(2843), 1, sym_qualified_type_identifier, - STATE(4189), 1, - sym__splice_specialization_specifier, - STATE(4252), 1, + STATE(3053), 1, sym_decltype, - STATE(4376), 1, - sym_type_specifier, - STATE(4401), 1, + STATE(3166), 1, sym_decltype_auto, - STATE(4616), 1, + STATE(3219), 1, sym_splice_type_specifier, - STATE(6549), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7130), 1, - sym_splice_specifier, - STATE(8634), 1, + STATE(3238), 1, + sym_type_specifier, + STATE(8702), 1, sym__scope_resolution, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2819), 4, + ACTIONS(3833), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4402), 7, + STATE(3167), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -657359,61 +679835,124 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [269226] = 25, + [270926] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, - sym_auto, - ACTIONS(3363), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3399), 1, + ACTIONS(5140), 1, + anon_sym_COLON_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(11427), 1, + anon_sym_LBRACE, + ACTIONS(13125), 1, + sym_identifier, + STATE(4802), 1, + sym_splice_specifier, + STATE(5472), 1, + sym__splice_specialization_specifier, + STATE(5954), 1, + sym_field_declaration_list, + STATE(6122), 1, + sym__class_declaration_item, + STATE(7873), 1, + sym_ms_declspec_modifier, + STATE(8757), 1, + sym__scope_resolution, + STATE(9636), 1, + sym_virtual_specifier, + STATE(10429), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5279), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5423), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7872), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8412), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [271015] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3092), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3839), 1, anon_sym_class, - ACTIONS(3401), 1, + ACTIONS(3841), 1, anon_sym_struct, - ACTIONS(3403), 1, + ACTIONS(3843), 1, anon_sym_union, - ACTIONS(3443), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(3849), 1, + sym_auto, + ACTIONS(3851), 1, + anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10717), 1, + ACTIONS(11095), 1, sym_identifier, - ACTIONS(10719), 1, + ACTIONS(11097), 1, anon_sym_COLON_COLON, - ACTIONS(10721), 1, + ACTIONS(11099), 1, sym_primitive_type, - ACTIONS(12407), 1, + ACTIONS(12839), 1, anon_sym_enum, - ACTIONS(12409), 1, + ACTIONS(12841), 1, anon_sym_typename, - STATE(3627), 1, - sym_template_type, - STATE(3640), 1, + STATE(2385), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2605), 1, + sym_splice_specifier, + STATE(2659), 1, sym__splice_specialization_specifier, - STATE(3658), 1, + STATE(2712), 1, + sym_template_type, + STATE(2843), 1, sym_qualified_type_identifier, - STATE(3697), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4041), 1, + STATE(3166), 1, sym_decltype_auto, - STATE(4072), 1, - sym_splice_specifier, - STATE(6435), 1, + STATE(4849), 1, sym_type_specifier, - STATE(8571), 1, + STATE(8702), 1, sym__scope_resolution, - STATE(3887), 2, + STATE(3053), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12405), 4, + ACTIONS(12837), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4042), 7, + STATE(3167), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -657421,61 +679960,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [269313] = 25, + [271102] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2732), 1, + ACTIONS(3104), 1, anon_sym_LBRACK_COLON, - ACTIONS(3514), 1, + ACTIONS(4064), 1, anon_sym_class, - ACTIONS(3516), 1, + ACTIONS(4066), 1, anon_sym_struct, - ACTIONS(3518), 1, + ACTIONS(4068), 1, anon_sym_union, - ACTIONS(3524), 1, + ACTIONS(4072), 1, sym_auto, - ACTIONS(3526), 1, + ACTIONS(4074), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10733), 1, + ACTIONS(11071), 1, sym_identifier, - ACTIONS(10735), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(10737), 1, + ACTIONS(11075), 1, sym_primitive_type, - ACTIONS(12662), 1, + ACTIONS(13052), 1, anon_sym_enum, - ACTIONS(12664), 1, + ACTIONS(13054), 1, anon_sym_typename, - STATE(2272), 1, + STATE(2449), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2530), 1, + STATE(2742), 1, sym_splice_specifier, - STATE(2580), 1, - sym_template_type, - STATE(2597), 1, + STATE(2921), 1, sym__splice_specialization_specifier, - STATE(2641), 1, + STATE(2933), 1, + sym_template_type, + STATE(3031), 1, sym_qualified_type_identifier, - STATE(2982), 1, + STATE(3527), 1, sym_decltype_auto, - STATE(4736), 1, + STATE(5298), 1, sym_type_specifier, - STATE(8624), 1, + STATE(8686), 1, sym__scope_resolution, - STATE(2856), 2, + STATE(3447), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12660), 4, + ACTIONS(13050), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2983), 7, + STATE(3528), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -657483,61 +680022,62 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [269400] = 25, + [271189] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 1, + ACTIONS(2300), 1, anon_sym_LBRACK_COLON, - ACTIONS(3175), 1, + ACTIONS(3732), 1, + anon_sym_enum, + ACTIONS(3734), 1, anon_sym_class, - ACTIONS(3177), 1, + ACTIONS(3736), 1, anon_sym_struct, - ACTIONS(3179), 1, + ACTIONS(3738), 1, anon_sym_union, - ACTIONS(3185), 1, + ACTIONS(3742), 1, sym_auto, - ACTIONS(3187), 1, + ACTIONS(3744), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10684), 1, + ACTIONS(11008), 1, sym_identifier, - ACTIONS(10686), 1, + ACTIONS(11010), 1, anon_sym_COLON_COLON, - ACTIONS(10688), 1, + ACTIONS(11012), 1, sym_primitive_type, - ACTIONS(12682), 1, - anon_sym_enum, - ACTIONS(12684), 1, + ACTIONS(11014), 1, anon_sym_typename, - STATE(1963), 1, - sym_template_type, - STATE(1994), 1, - sym_qualified_type_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2024), 1, + STATE(2180), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2026), 1, + STATE(2547), 1, + sym_splice_specifier, + STATE(2601), 1, sym__splice_specialization_specifier, - STATE(2070), 1, + STATE(2622), 1, + sym_template_type, + STATE(2698), 1, + sym_qualified_type_identifier, + STATE(2942), 1, + sym_decltype, + STATE(2969), 1, + sym_splice_type_specifier, + STATE(2997), 1, sym_decltype_auto, - STATE(3383), 1, + STATE(3023), 1, sym_type_specifier, - STATE(8593), 1, + STATE(8682), 1, sym__scope_resolution, - STATE(2063), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12680), 4, + ACTIONS(3728), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2089), 7, + STATE(3067), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -657545,61 +680085,158 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [269487] = 25, + [271278] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(11985), 1, + sym_identifier, + ACTIONS(11987), 1, + anon_sym_LPAREN2, + ACTIONS(11989), 1, + anon_sym_STAR, + ACTIONS(11991), 1, + anon_sym_AMP_AMP, + ACTIONS(11993), 1, + anon_sym_AMP, + STATE(7511), 1, + sym_alignas_qualifier, + STATE(8625), 1, + sym__field_declarator, + STATE(8807), 1, + sym_operator_name, + STATE(10687), 1, + sym_ms_based_modifier, + ACTIONS(3272), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7086), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8839), 7, + 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(3270), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [271347] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(12277), 1, + anon_sym_LT, + STATE(3735), 1, + sym_template_argument_list, + ACTIONS(5657), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(7371), 28, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + anon_sym_final, + anon_sym_override, + [271396] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 1, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(3199), 1, + ACTIONS(3704), 1, + anon_sym_enum, + ACTIONS(3706), 1, anon_sym_class, - ACTIONS(3201), 1, + ACTIONS(3708), 1, anon_sym_struct, - ACTIONS(3203), 1, + ACTIONS(3710), 1, anon_sym_union, - ACTIONS(3207), 1, - sym_auto, - ACTIONS(3209), 1, - anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10676), 1, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(11103), 1, sym_identifier, - ACTIONS(10678), 1, + ACTIONS(11105), 1, anon_sym_COLON_COLON, - ACTIONS(10680), 1, - sym_primitive_type, - ACTIONS(12471), 1, - anon_sym_enum, - ACTIONS(12473), 1, + ACTIONS(11107), 1, anon_sym_typename, - STATE(2250), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2431), 1, - sym_splice_specifier, - STATE(2509), 1, - sym_template_type, - STATE(2514), 1, + STATE(3021), 1, + sym_decltype, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(2568), 1, - sym_qualified_type_identifier, - STATE(2925), 1, - sym_decltype_auto, - STATE(2956), 1, + STATE(3097), 1, sym_type_specifier, - STATE(8639), 1, - sym__scope_resolution, - STATE(2832), 2, - sym_decltype, + STATE(3197), 1, + sym_decltype_auto, + STATE(3485), 1, sym_splice_type_specifier, - STATE(10976), 2, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(3800), 1, + sym_splice_specifier, + STATE(8738), 1, + sym__scope_resolution, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12469), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2926), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -657607,62 +680244,62 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [269574] = 26, + [271485] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(3363), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(3397), 1, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3704), 1, anon_sym_enum, - ACTIONS(3399), 1, + ACTIONS(3706), 1, anon_sym_class, - ACTIONS(3401), 1, + ACTIONS(3708), 1, anon_sym_struct, - ACTIONS(3403), 1, + ACTIONS(3710), 1, anon_sym_union, - ACTIONS(3443), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10717), 1, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(11103), 1, sym_identifier, - ACTIONS(10719), 1, + ACTIONS(11105), 1, anon_sym_COLON_COLON, - ACTIONS(10721), 1, - sym_primitive_type, - ACTIONS(10723), 1, + ACTIONS(11107), 1, anon_sym_typename, - STATE(3403), 1, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3627), 1, - sym_template_type, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(3658), 1, - sym_qualified_type_identifier, - STATE(3887), 1, + STATE(3021), 1, sym_decltype, - STATE(3947), 1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3097), 1, sym_type_specifier, - STATE(4041), 1, + STATE(3197), 1, sym_decltype_auto, - STATE(4072), 1, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(3800), 1, sym_splice_specifier, - STATE(4649), 1, + STATE(4698), 1, sym_splice_type_specifier, - STATE(8571), 1, + STATE(8738), 1, sym__scope_resolution, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3393), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4042), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -657670,62 +680307,62 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [269663] = 26, + [271574] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2744), 1, + ACTIONS(3008), 1, anon_sym_LBRACK_COLON, - ACTIONS(3455), 1, + ACTIONS(4427), 1, anon_sym_enum, - ACTIONS(3457), 1, + ACTIONS(4429), 1, anon_sym_class, - ACTIONS(3459), 1, + ACTIONS(4431), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(4433), 1, anon_sym_union, - ACTIONS(3465), 1, + ACTIONS(4439), 1, sym_auto, - ACTIONS(3467), 1, + ACTIONS(4441), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10709), 1, + ACTIONS(11087), 1, sym_identifier, - ACTIONS(10711), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(10713), 1, + ACTIONS(11091), 1, sym_primitive_type, - ACTIONS(10715), 1, + ACTIONS(11093), 1, anon_sym_typename, - STATE(2240), 1, + STATE(2283), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2677), 1, + STATE(2638), 1, sym_splice_specifier, - STATE(2814), 1, - sym_template_type, - STATE(2837), 1, + STATE(2696), 1, sym__splice_specialization_specifier, - STATE(2887), 1, + STATE(2701), 1, + sym_template_type, + STATE(2781), 1, sym_qualified_type_identifier, - STATE(3262), 1, + STATE(2984), 1, sym_decltype, - STATE(3387), 1, + STATE(3089), 1, sym_type_specifier, - STATE(3453), 1, + STATE(3099), 1, sym_decltype_auto, - STATE(3478), 1, + STATE(3153), 1, sym_splice_type_specifier, - STATE(8588), 1, + STATE(8687), 1, sym__scope_resolution, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3451), 4, + ACTIONS(4423), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3460), 7, + STATE(3123), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -657733,62 +680370,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [269752] = 26, + [271663] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 1, - sym_auto, - ACTIONS(2857), 1, - anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(3544), 1, - anon_sym_enum, - ACTIONS(3546), 1, + ACTIONS(3809), 1, anon_sym_class, - ACTIONS(3548), 1, + ACTIONS(3811), 1, anon_sym_struct, - ACTIONS(3550), 1, + ACTIONS(3813), 1, anon_sym_union, - ACTIONS(4800), 1, + ACTIONS(3819), 1, + sym_auto, + ACTIONS(3821), 1, + anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10699), 1, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(11099), 1, sym_primitive_type, - ACTIONS(10703), 1, + ACTIONS(11115), 1, sym_identifier, - ACTIONS(10705), 1, - anon_sym_COLON_COLON, - ACTIONS(10707), 1, + ACTIONS(12897), 1, + anon_sym_enum, + ACTIONS(12899), 1, anon_sym_typename, - STATE(3378), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3965), 1, + STATE(2073), 1, sym_template_type, - STATE(4048), 1, + STATE(2087), 1, sym_qualified_type_identifier, - STATE(4067), 1, + STATE(2104), 1, sym_splice_specifier, - STATE(4189), 1, + STATE(2170), 1, sym__splice_specialization_specifier, - STATE(4252), 1, - sym_decltype, - STATE(4376), 1, - sym_type_specifier, - STATE(4401), 1, + STATE(2210), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2221), 1, sym_decltype_auto, - STATE(4616), 1, - sym_splice_type_specifier, - STATE(8549), 1, + STATE(3566), 1, + sym_type_specifier, + STATE(8763), 1, sym__scope_resolution, - STATE(10976), 2, + STATE(2169), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3542), 4, + ACTIONS(12895), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4402), 7, + STATE(2222), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -657796,61 +680432,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [269841] = 25, + [271750] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, + ACTIONS(129), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3293), 1, + ACTIONS(3466), 1, + sym_primitive_type, + ACTIONS(3468), 1, + anon_sym_enum, + ACTIONS(3470), 1, anon_sym_class, - ACTIONS(3295), 1, + ACTIONS(3472), 1, anon_sym_struct, - ACTIONS(3297), 1, + ACTIONS(3474), 1, anon_sym_union, - ACTIONS(4800), 1, + ACTIONS(3476), 1, + anon_sym_typename, + ACTIONS(3486), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10649), 1, + ACTIONS(5936), 1, sym_identifier, - ACTIONS(10651), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(12437), 1, - anon_sym_enum, - ACTIONS(12439), 1, - anon_sym_typename, - STATE(2855), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3123), 1, + STATE(3824), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3561), 1, + STATE(4504), 1, + sym_splice_specifier, + STATE(4578), 1, sym_template_type, - STATE(3623), 1, + STATE(4601), 1, sym_qualified_type_identifier, - STATE(3688), 1, - sym_splice_specifier, - STATE(5332), 1, + STATE(4776), 1, sym_type_specifier, - STATE(8621), 1, + STATE(4948), 1, + sym_decltype_auto, + STATE(8716), 1, sym__scope_resolution, - STATE(2949), 2, + STATE(4830), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12435), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(4935), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -657858,109 +680494,110 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [269928] = 25, + [271837] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3343), 1, - anon_sym_class, - ACTIONS(3345), 1, - anon_sym_struct, - ACTIONS(3347), 1, - anon_sym_union, - ACTIONS(3361), 1, - sym_auto, - ACTIONS(3363), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10721), 1, - sym_primitive_type, - ACTIONS(10741), 1, - sym_identifier, - ACTIONS(10743), 1, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(9246), 1, + anon_sym_LBRACE, + ACTIONS(11111), 1, anon_sym_COLON_COLON, - ACTIONS(12634), 1, - anon_sym_enum, - ACTIONS(12636), 1, - anon_sym_typename, - STATE(3270), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3627), 1, - sym_template_type, - STATE(3634), 1, - sym_splice_specifier, - STATE(3640), 1, + ACTIONS(13104), 1, + sym_identifier, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(3658), 1, - sym_qualified_type_identifier, - STATE(3947), 1, - sym_type_specifier, - STATE(4041), 1, - sym_decltype_auto, - STATE(8631), 1, + STATE(3719), 1, + sym_splice_specifier, + STATE(3905), 1, + sym_field_declaration_list, + STATE(4131), 1, + sym__class_declaration_item, + STATE(7883), 1, + sym_ms_declspec_modifier, + STATE(8707), 1, sym__scope_resolution, - STATE(3887), 2, - sym_decltype, + STATE(9611), 1, + sym_virtual_specifier, + STATE(10572), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3540), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3728), 2, + sym_template_type, sym_splice_type_specifier, - STATE(10976), 2, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8412), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, + sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12632), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4042), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [270015] = 16, + [271926] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(11429), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(11431), 1, + ACTIONS(11795), 1, anon_sym_const, - ACTIONS(11637), 1, + ACTIONS(12067), 1, anon_sym_STAR, - ACTIONS(11639), 1, + ACTIONS(12069), 1, anon_sym_AMP_AMP, - ACTIONS(11641), 1, + ACTIONS(12071), 1, anon_sym_AMP, - STATE(4923), 1, + STATE(4883), 1, sym_parameter_list, - STATE(6485), 1, + STATE(6707), 1, sym_alignas_qualifier, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(8891), 1, + STATE(9042), 1, sym__abstract_declarator, - ACTIONS(11433), 2, + ACTIONS(11797), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6280), 2, + STATE(6420), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6497), 4, + ACTIONS(7345), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(11421), 12, + ACTIONS(11785), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -657973,61 +680610,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [270084] = 25, + [271995] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2648), 1, + ACTIONS(3104), 1, anon_sym_LBRACK_COLON, - ACTIONS(3243), 1, - anon_sym_enum, - ACTIONS(3245), 1, + ACTIONS(4064), 1, anon_sym_class, - ACTIONS(3247), 1, + ACTIONS(4066), 1, anon_sym_struct, - ACTIONS(3249), 1, + ACTIONS(4068), 1, anon_sym_union, - ACTIONS(3255), 1, + ACTIONS(4072), 1, sym_auto, - ACTIONS(3257), 1, + ACTIONS(4074), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10725), 1, + ACTIONS(11071), 1, sym_identifier, - ACTIONS(10727), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(10729), 1, + ACTIONS(11075), 1, sym_primitive_type, - ACTIONS(10731), 1, + ACTIONS(13052), 1, + anon_sym_enum, + ACTIONS(13054), 1, anon_sym_typename, - STATE(2169), 1, + STATE(2449), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2519), 1, + STATE(2742), 1, sym_splice_specifier, - STATE(2567), 1, + STATE(2921), 1, sym__splice_specialization_specifier, - STATE(2591), 1, + STATE(2933), 1, sym_template_type, - STATE(2699), 1, + STATE(3031), 1, sym_qualified_type_identifier, - STATE(3039), 1, - sym_type_specifier, - STATE(3138), 1, + STATE(3527), 1, sym_decltype_auto, - STATE(8604), 1, + STATE(5385), 1, + sym_type_specifier, + STATE(8686), 1, sym__scope_resolution, - STATE(2973), 2, + STATE(3447), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3239), 4, + ACTIONS(13050), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3140), 7, + STATE(3528), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -658035,310 +680672,122 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [270171] = 24, + [272082] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(9997), 1, + ACTIONS(10348), 1, anon_sym_AMP_AMP, - ACTIONS(9999), 1, + ACTIONS(10350), 1, anon_sym_AMP, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10606), 1, + ACTIONS(11044), 1, anon_sym_DASH_GT, - ACTIONS(12824), 1, + ACTIONS(13188), 1, anon_sym_requires, - STATE(7535), 1, + STATE(7653), 1, sym_ref_qualifier, - STATE(8314), 1, + STATE(8398), 1, sym_trailing_return_type, - STATE(8478), 1, + STATE(8627), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(12744), 2, + ACTIONS(13146), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - STATE(7672), 3, + STATE(7794), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7544), 5, + ACTIONS(7791), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [270256] = 26, + [272167] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(9027), 1, - anon_sym_LBRACE, - ACTIONS(10590), 1, - anon_sym_COLON_COLON, - ACTIONS(12752), 1, - sym_identifier, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3087), 1, - sym__class_declaration_item, - STATE(7299), 1, - sym_splice_specifier, - STATE(7605), 1, - sym_field_declaration_list, - STATE(7710), 1, - sym_ms_declspec_modifier, - STATE(8564), 1, - sym__scope_resolution, - STATE(9372), 1, - sym_virtual_specifier, - STATE(10346), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2874), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7225), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7768), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8282), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [270345] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1938), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - ACTIONS(3197), 1, - anon_sym_enum, - ACTIONS(3199), 1, - anon_sym_class, - ACTIONS(3201), 1, - anon_sym_struct, - ACTIONS(3203), 1, - anon_sym_union, - ACTIONS(3207), 1, - sym_auto, - ACTIONS(3209), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10676), 1, + ACTIONS(10986), 1, sym_identifier, - ACTIONS(10678), 1, + ACTIONS(10988), 1, anon_sym_COLON_COLON, - ACTIONS(10680), 1, + ACTIONS(10992), 1, sym_primitive_type, - ACTIONS(10682), 1, - anon_sym_typename, - STATE(2119), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2431), 1, - sym_splice_specifier, - STATE(2509), 1, - sym_template_type, - STATE(2514), 1, - sym__splice_specialization_specifier, - STATE(2568), 1, - sym_qualified_type_identifier, - STATE(2832), 1, - sym_decltype, - STATE(2914), 1, - sym_splice_type_specifier, - STATE(2925), 1, - sym_decltype_auto, - STATE(2956), 1, - sym_type_specifier, - STATE(8639), 1, - sym__scope_resolution, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3193), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2926), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [270434] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2744), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3457), 1, + ACTIONS(10994), 1, + anon_sym_enum, + ACTIONS(10996), 1, anon_sym_class, - ACTIONS(3459), 1, + ACTIONS(10998), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(11000), 1, anon_sym_union, - ACTIONS(3465), 1, + ACTIONS(11002), 1, + anon_sym_typename, + ACTIONS(11004), 1, sym_auto, - ACTIONS(3467), 1, + ACTIONS(11006), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10709), 1, - sym_identifier, - ACTIONS(10711), 1, - anon_sym_COLON_COLON, - ACTIONS(10713), 1, - sym_primitive_type, - ACTIONS(12387), 1, - anon_sym_enum, - ACTIONS(12389), 1, - anon_sym_typename, - STATE(2336), 1, + STATE(6426), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2677), 1, + STATE(6581), 1, sym_splice_specifier, - STATE(2814), 1, - sym_template_type, - STATE(2837), 1, + STATE(7121), 1, sym__splice_specialization_specifier, - STATE(2887), 1, + STATE(7225), 1, + sym_template_type, + STATE(7440), 1, sym_qualified_type_identifier, - STATE(3453), 1, + STATE(7625), 1, sym_decltype_auto, - STATE(5266), 1, - sym_type_specifier, - STATE(8588), 1, - sym__scope_resolution, - STATE(3262), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12385), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3460), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [270521] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3291), 1, - anon_sym_enum, - ACTIONS(3293), 1, - anon_sym_class, - ACTIONS(3295), 1, - anon_sym_struct, - ACTIONS(3297), 1, - anon_sym_union, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10651), 1, - anon_sym_COLON_COLON, - ACTIONS(10653), 1, - anon_sym_typename, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3012), 1, + STATE(7639), 1, sym_type_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3561), 1, - sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(3688), 1, - sym_splice_specifier, - STATE(8621), 1, + STATE(8700), 1, sym__scope_resolution, - STATE(2949), 2, + STATE(7592), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(10990), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(7655), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -658346,250 +680795,185 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [270608] = 26, + [272254] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(9027), 1, - anon_sym_LBRACE, - ACTIONS(10651), 1, - anon_sym_COLON_COLON, - ACTIONS(12736), 1, - sym_identifier, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3087), 1, - sym__class_declaration_item, - STATE(3688), 1, - sym_splice_specifier, - STATE(3837), 1, - sym_field_declaration_list, - STATE(7720), 1, - sym_ms_declspec_modifier, - STATE(8621), 1, - sym__scope_resolution, - STATE(9411), 1, - sym_virtual_specifier, - STATE(10180), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10348), 1, + anon_sym_AMP_AMP, + ACTIONS(10350), 1, + anon_sym_AMP, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10582), 1, anon_sym___attribute__, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2874), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3534), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7729), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8282), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [270697] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(2744), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(8193), 1, - anon_sym_LBRACE, - ACTIONS(10711), 1, - anon_sym_COLON_COLON, - ACTIONS(12758), 1, - sym_identifier, - STATE(2677), 1, - sym_splice_specifier, - STATE(2837), 1, - sym__splice_specialization_specifier, - STATE(2842), 1, - sym_field_declaration_list, - STATE(3418), 1, - sym__class_declaration_item, - STATE(7778), 1, - sym_ms_declspec_modifier, - STATE(8588), 1, - sym__scope_resolution, - STATE(9319), 1, - sym_virtual_specifier, - STATE(10067), 1, - sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(10921), 1, + anon_sym_requires, + ACTIONS(11044), 1, + anon_sym_DASH_GT, + STATE(7644), 1, + sym_ref_qualifier, + STATE(8441), 1, + sym_trailing_return_type, + STATE(8631), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2537), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2802), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7776), 2, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8282), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [270786] = 26, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7759), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7791), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [272339] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2648), 1, + ACTIONS(3092), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7866), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(10727), 1, + ACTIONS(8297), 1, + anon_sym_LBRACE, + ACTIONS(11097), 1, anon_sym_COLON_COLON, - ACTIONS(12764), 1, + ACTIONS(13100), 1, sym_identifier, - STATE(2519), 1, + STATE(2605), 1, sym_splice_specifier, - STATE(2567), 1, + STATE(2659), 1, sym__splice_specialization_specifier, - STATE(2707), 1, + STATE(2848), 1, sym_field_declaration_list, - STATE(3018), 1, + STATE(3165), 1, sym__class_declaration_item, - STATE(7758), 1, + STATE(7809), 1, sym_ms_declspec_modifier, - STATE(8604), 1, + STATE(8702), 1, sym__scope_resolution, - STATE(9467), 1, + STATE(9504), 1, sym_virtual_specifier, - STATE(10241), 1, + STATE(10445), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2331), 2, + STATE(2475), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2577), 2, + STATE(2661), 2, sym_template_type, sym_splice_type_specifier, - STATE(7692), 2, + STATE(7808), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8282), 3, + STATE(8412), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [270875] = 25, + [272428] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2732), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3512), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(3514), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(3516), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(3518), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(3524), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(3526), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10733), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10735), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10737), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10739), 1, + ACTIONS(10657), 1, anon_sym_typename, - STATE(2162), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2530), 1, - sym_splice_specifier, - STATE(2580), 1, - sym_template_type, - STATE(2597), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(2641), 1, - sym_qualified_type_identifier, - STATE(2982), 1, - sym_decltype_auto, - STATE(3005), 1, + STATE(3097), 1, sym_type_specifier, - STATE(8624), 1, + STATE(3197), 1, + sym_decltype_auto, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(2856), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3508), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2983), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -658597,61 +680981,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [270962] = 25, + [272515] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, + ACTIONS(3236), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(3238), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(3256), 1, anon_sym_LBRACK_COLON, - ACTIONS(3293), 1, + ACTIONS(4397), 1, + anon_sym_enum, + ACTIONS(4399), 1, anon_sym_class, - ACTIONS(3295), 1, + ACTIONS(4401), 1, anon_sym_struct, - ACTIONS(3297), 1, + ACTIONS(4403), 1, anon_sym_union, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10295), 1, + ACTIONS(11050), 1, sym_primitive_type, - ACTIONS(10649), 1, + ACTIONS(11057), 1, sym_identifier, - ACTIONS(10651), 1, + ACTIONS(11059), 1, anon_sym_COLON_COLON, - ACTIONS(12437), 1, - anon_sym_enum, - ACTIONS(12439), 1, + ACTIONS(11061), 1, anon_sym_typename, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3012), 1, - sym_type_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3123), 1, + STATE(3490), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3561), 1, + STATE(4043), 1, sym_template_type, - STATE(3623), 1, + STATE(4204), 1, sym_qualified_type_identifier, - STATE(3688), 1, + STATE(4272), 1, sym_splice_specifier, - STATE(8621), 1, + STATE(4305), 1, + sym__splice_specialization_specifier, + STATE(4426), 1, + sym_decltype_auto, + STATE(4457), 1, + sym_type_specifier, + STATE(8676), 1, sym__scope_resolution, - STATE(2949), 2, + STATE(4373), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12435), 4, + ACTIONS(4395), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(4430), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -658659,124 +681043,124 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [271049] = 26, + [272602] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3443), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(8909), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - ACTIONS(10719), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(12760), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13127), 1, sym_identifier, - STATE(3640), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(4012), 1, + STATE(3185), 1, sym__class_declaration_item, - STATE(4072), 1, - sym_splice_specifier, - STATE(4277), 1, + STATE(3863), 1, sym_field_declaration_list, - STATE(7719), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(7841), 1, sym_ms_declspec_modifier, - STATE(8571), 1, + STATE(8711), 1, sym__scope_resolution, - STATE(9494), 1, + STATE(9550), 1, sym_virtual_specifier, - STATE(10393), 1, + STATE(10518), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3624), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(3851), 2, + STATE(3609), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7753), 2, + STATE(7857), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8282), 3, + STATE(8412), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [271138] = 25, + [272691] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2242), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(3341), 1, - anon_sym_enum, - ACTIONS(3343), 1, + ACTIONS(3809), 1, anon_sym_class, - ACTIONS(3345), 1, + ACTIONS(3811), 1, anon_sym_struct, - ACTIONS(3347), 1, + ACTIONS(3813), 1, anon_sym_union, - ACTIONS(3361), 1, + ACTIONS(3819), 1, sym_auto, - ACTIONS(3363), 1, + ACTIONS(3821), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10721), 1, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(11099), 1, sym_primitive_type, - ACTIONS(10741), 1, + ACTIONS(11115), 1, sym_identifier, - ACTIONS(10743), 1, - anon_sym_COLON_COLON, - ACTIONS(10745), 1, + ACTIONS(12897), 1, + anon_sym_enum, + ACTIONS(12899), 1, anon_sym_typename, - STATE(2838), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3627), 1, + STATE(2073), 1, sym_template_type, - STATE(3634), 1, + STATE(2087), 1, + sym_qualified_type_identifier, + STATE(2104), 1, sym_splice_specifier, - STATE(3640), 1, + STATE(2170), 1, sym__splice_specialization_specifier, - STATE(3658), 1, - sym_qualified_type_identifier, - STATE(3947), 1, - sym_type_specifier, - STATE(4041), 1, + STATE(2210), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2221), 1, sym_decltype_auto, - STATE(8631), 1, + STATE(3581), 1, + sym_type_specifier, + STATE(8763), 1, sym__scope_resolution, - STATE(3887), 2, + STATE(2169), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3337), 4, + ACTIONS(12895), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4042), 7, + STATE(2222), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -658784,61 +681168,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [271225] = 25, + [272778] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(3175), 1, + ACTIONS(3873), 1, anon_sym_class, - ACTIONS(3177), 1, + ACTIONS(3875), 1, anon_sym_struct, - ACTIONS(3179), 1, + ACTIONS(3877), 1, anon_sym_union, - ACTIONS(3185), 1, + ACTIONS(3891), 1, sym_auto, - ACTIONS(3187), 1, + ACTIONS(3893), 1, anon_sym_decltype, - ACTIONS(3273), 1, - anon_sym_enum, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10686), 1, - anon_sym_COLON_COLON, - ACTIONS(10737), 1, + ACTIONS(11083), 1, sym_primitive_type, - ACTIONS(10747), 1, + ACTIONS(11109), 1, sym_identifier, - ACTIONS(10749), 1, + ACTIONS(11111), 1, + anon_sym_COLON_COLON, + ACTIONS(12875), 1, + anon_sym_enum, + ACTIONS(12877), 1, anon_sym_typename, - STATE(1963), 1, - sym_template_type, - STATE(1988), 1, + STATE(3375), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1994), 1, - sym_qualified_type_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(2070), 1, + STATE(3719), 1, + sym_splice_specifier, + STATE(3759), 1, + sym_template_type, + STATE(3819), 1, + sym_qualified_type_identifier, + STATE(4119), 1, sym_decltype_auto, - STATE(2082), 1, + STATE(5431), 1, sym_type_specifier, - STATE(8593), 1, + STATE(8707), 1, sym__scope_resolution, - STATE(2063), 2, + STATE(3967), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3269), 4, + ACTIONS(12873), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2089), 7, + STATE(4064), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -658846,61 +681230,124 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [271312] = 25, + [272865] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3486), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(13106), 1, + sym_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4504), 1, + sym_splice_specifier, + STATE(4654), 1, + sym_field_declaration_list, + STATE(4987), 1, + sym__class_declaration_item, + STATE(7890), 1, + sym_ms_declspec_modifier, + STATE(8716), 1, + sym__scope_resolution, + STATE(9470), 1, + sym_virtual_specifier, + STATE(10307), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3790), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4029), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7880), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8412), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [272954] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2744), 1, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(3457), 1, + ACTIONS(3706), 1, anon_sym_class, - ACTIONS(3459), 1, + ACTIONS(3708), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(3710), 1, anon_sym_union, - ACTIONS(3465), 1, - sym_auto, - ACTIONS(3467), 1, - anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10709), 1, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(11103), 1, sym_identifier, - ACTIONS(10711), 1, + ACTIONS(11105), 1, anon_sym_COLON_COLON, - ACTIONS(10713), 1, - sym_primitive_type, - ACTIONS(12387), 1, + ACTIONS(12787), 1, anon_sym_enum, - ACTIONS(12389), 1, + ACTIONS(12789), 1, anon_sym_typename, - STATE(2336), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2677), 1, - sym_splice_specifier, - STATE(2814), 1, - sym_template_type, - STATE(2837), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(2887), 1, - sym_qualified_type_identifier, - STATE(3387), 1, + STATE(3097), 1, sym_type_specifier, - STATE(3453), 1, + STATE(3126), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3197), 1, sym_decltype_auto, - STATE(8588), 1, + STATE(3684), 1, + sym_template_type, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(3800), 1, + sym_splice_specifier, + STATE(8738), 1, sym__scope_resolution, - STATE(3262), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12385), 4, + ACTIONS(12785), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3460), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -658908,84 +681355,95 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [271399] = 16, + [273041] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(11627), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(9314), 1, + anon_sym_LBRACE, + ACTIONS(11020), 1, + anon_sym_COLON_COLON, + ACTIONS(13102), 1, sym_identifier, - ACTIONS(11629), 1, - anon_sym_LPAREN2, - ACTIONS(11631), 1, - anon_sym_STAR, - ACTIONS(11633), 1, - anon_sym_AMP_AMP, - ACTIONS(11635), 1, - anon_sym_AMP, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(8526), 1, - sym__field_declarator, - STATE(8661), 1, - sym_operator_name, - STATE(11372), 1, - sym_ms_based_modifier, - ACTIONS(2939), 2, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3185), 1, + sym__class_declaration_item, + STATE(7481), 1, + sym_splice_specifier, + STATE(7709), 1, + sym_field_declaration_list, + STATE(7835), 1, + sym_ms_declspec_modifier, + STATE(8691), 1, + sym__scope_resolution, + STATE(9483), 1, + sym_virtual_specifier, + STATE(10463), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6842), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8721), 7, - 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(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [271468] = 6, + STATE(3060), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7348), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7834), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8412), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [273130] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(7087), 1, anon_sym_COLON_COLON, - ACTIONS(11895), 1, + ACTIONS(12277), 1, anon_sym_LT, - STATE(2824), 1, + STATE(2992), 1, sym_template_argument_list, - ACTIONS(6201), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(6208), 28, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7090), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(7085), 28, + anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -658999,128 +681457,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_auto, - anon_sym_decltype, + sym_primitive_type, + sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_requires, - [271517] = 25, + [273179] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2823), 1, - anon_sym_enum, - ACTIONS(2825), 1, - anon_sym_class, - ACTIONS(2827), 1, - anon_sym_struct, - ACTIONS(2829), 1, - anon_sym_union, - ACTIONS(2855), 1, - sym_auto, - ACTIONS(2857), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10299), 1, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym___declspec, + ACTIONS(9965), 1, + anon_sym_LBRACE, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - ACTIONS(10695), 1, - sym_identifier, - ACTIONS(10697), 1, + ACTIONS(11048), 1, anon_sym_COLON_COLON, - ACTIONS(10699), 1, - sym_primitive_type, - ACTIONS(10701), 1, - anon_sym_typename, - STATE(3965), 1, - sym_template_type, - STATE(4048), 1, - sym_qualified_type_identifier, - STATE(4189), 1, + ACTIONS(13123), 1, + sym_identifier, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(4376), 1, - sym_type_specifier, - STATE(4401), 1, - sym_decltype_auto, - STATE(6549), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7130), 1, + STATE(4350), 1, + sym_field_declaration_list, + STATE(4544), 1, + sym__class_declaration_item, + STATE(7326), 1, sym_splice_specifier, - STATE(8634), 1, + STATE(7845), 1, + sym_ms_declspec_modifier, + STATE(8745), 1, sym__scope_resolution, - STATE(4252), 2, - sym_decltype, + STATE(9426), 1, + sym_virtual_specifier, + STATE(10236), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8244), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3966), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4296), 2, + sym_template_type, sym_splice_type_specifier, - STATE(10976), 2, + STATE(7844), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8412), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(10768), 3, + sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2819), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4402), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [271604] = 25, + [273268] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3175), 1, - anon_sym_class, - ACTIONS(3177), 1, - anon_sym_struct, - ACTIONS(3179), 1, - anon_sym_union, - ACTIONS(3185), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(3187), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10686), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11018), 1, + sym_identifier, + ACTIONS(11020), 1, anon_sym_COLON_COLON, - ACTIONS(10737), 1, + ACTIONS(11024), 1, sym_primitive_type, - ACTIONS(10747), 1, - sym_identifier, - ACTIONS(12487), 1, + ACTIONS(11026), 1, anon_sym_enum, - ACTIONS(12489), 1, + ACTIONS(11028), 1, + anon_sym_class, + ACTIONS(11030), 1, + anon_sym_struct, + ACTIONS(11032), 1, + anon_sym_union, + ACTIONS(11034), 1, anon_sym_typename, - STATE(1963), 1, - sym_template_type, - STATE(1994), 1, - sym_qualified_type_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(2070), 1, - sym_decltype_auto, - STATE(2082), 1, + STATE(3097), 1, sym_type_specifier, - STATE(2113), 1, + STATE(3197), 1, + sym_decltype_auto, + STATE(7481), 1, + sym_splice_specifier, + STATE(7606), 1, aux_sym_sized_type_specifier_repeat1, - STATE(8593), 1, + STATE(7693), 1, + sym_template_type, + STATE(7716), 1, + sym_qualified_type_identifier, + STATE(8691), 1, sym__scope_resolution, - STATE(2063), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12485), 4, + ACTIONS(11022), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2089), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -659128,61 +681586,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [271691] = 25, + [273355] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 1, + ACTIONS(129), 1, sym_auto, - ACTIONS(2857), 1, + ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(3544), 1, + ACTIONS(13170), 1, + sym_identifier, + ACTIONS(13172), 1, + anon_sym_COLON_COLON, + ACTIONS(13176), 1, + sym_primitive_type, + ACTIONS(13178), 1, anon_sym_enum, - ACTIONS(3546), 1, + ACTIONS(13180), 1, anon_sym_class, - ACTIONS(3548), 1, + ACTIONS(13182), 1, anon_sym_struct, - ACTIONS(3550), 1, + ACTIONS(13184), 1, anon_sym_union, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10699), 1, - sym_primitive_type, - ACTIONS(10703), 1, - sym_identifier, - ACTIONS(10705), 1, - anon_sym_COLON_COLON, - ACTIONS(10707), 1, + ACTIONS(13186), 1, anon_sym_typename, - STATE(3378), 1, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4802), 1, + sym_splice_specifier, + STATE(4948), 1, + sym_decltype_auto, + STATE(7700), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3965), 1, + STATE(8695), 1, + sym__scope_resolution, + STATE(9262), 1, sym_template_type, - STATE(4048), 1, + STATE(9343), 1, sym_qualified_type_identifier, - STATE(4067), 1, - sym_splice_specifier, - STATE(4189), 1, - sym__splice_specialization_specifier, - STATE(4376), 1, + STATE(10506), 1, sym_type_specifier, - STATE(4401), 1, - sym_decltype_auto, - STATE(8549), 1, - sym__scope_resolution, - STATE(4252), 2, + STATE(4830), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3542), 4, + ACTIONS(13174), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4402), 7, + STATE(4935), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -659190,61 +681648,62 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [271778] = 25, + [273442] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2648), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3245), 1, + ACTIONS(129), 1, + sym_auto, + ACTIONS(131), 1, + anon_sym_decltype, + ACTIONS(2314), 1, + anon_sym_enum, + ACTIONS(2316), 1, anon_sym_class, - ACTIONS(3247), 1, + ACTIONS(2318), 1, anon_sym_struct, - ACTIONS(3249), 1, + ACTIONS(2320), 1, anon_sym_union, - ACTIONS(3255), 1, - sym_auto, - ACTIONS(3257), 1, - anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(3466), 1, + sym_primitive_type, + ACTIONS(3486), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10725), 1, + ACTIONS(5629), 1, + anon_sym_typename, + ACTIONS(6455), 1, sym_identifier, - ACTIONS(10727), 1, + ACTIONS(6469), 1, anon_sym_COLON_COLON, - ACTIONS(10729), 1, - sym_primitive_type, - ACTIONS(12423), 1, - anon_sym_enum, - ACTIONS(12425), 1, - anon_sym_typename, - STATE(2269), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2519), 1, - sym_splice_specifier, - STATE(2567), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(2591), 1, + STATE(3824), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4578), 1, sym_template_type, - STATE(2699), 1, + STATE(4601), 1, sym_qualified_type_identifier, - STATE(3039), 1, + STATE(4609), 1, + sym_splice_type_specifier, + STATE(4776), 1, sym_type_specifier, - STATE(3138), 1, + STATE(4830), 1, + sym_decltype, + STATE(4948), 1, sym_decltype_auto, - STATE(8604), 1, + STATE(5157), 1, + sym_splice_specifier, + STATE(8756), 1, sym__scope_resolution, - STATE(2973), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12421), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3140), 7, + STATE(4935), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -659252,61 +681711,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [271865] = 25, + [273531] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, + ACTIONS(3236), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(3238), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(3256), 1, anon_sym_LBRACK_COLON, - ACTIONS(10588), 1, - sym_identifier, - ACTIONS(10590), 1, - anon_sym_COLON_COLON, - ACTIONS(10594), 1, - sym_primitive_type, - ACTIONS(10596), 1, - anon_sym_enum, - ACTIONS(10598), 1, + ACTIONS(4399), 1, anon_sym_class, - ACTIONS(10600), 1, + ACTIONS(4401), 1, anon_sym_struct, - ACTIONS(10602), 1, + ACTIONS(4403), 1, anon_sym_union, - ACTIONS(10604), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11050), 1, + sym_primitive_type, + ACTIONS(11057), 1, + sym_identifier, + ACTIONS(11059), 1, + anon_sym_COLON_COLON, + ACTIONS(12988), 1, + anon_sym_enum, + ACTIONS(12990), 1, anon_sym_typename, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3012), 1, - sym_type_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(7299), 1, - sym_splice_specifier, - STATE(7459), 1, + STATE(3770), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7577), 1, + STATE(4043), 1, sym_template_type, - STATE(7603), 1, + STATE(4204), 1, sym_qualified_type_identifier, - STATE(8564), 1, + STATE(4272), 1, + sym_splice_specifier, + STATE(4305), 1, + sym__splice_specialization_specifier, + STATE(4426), 1, + sym_decltype_auto, + STATE(6505), 1, + sym_type_specifier, + STATE(8676), 1, sym__scope_resolution, - STATE(2949), 2, + STATE(4373), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(10592), 4, + ACTIONS(12986), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(4430), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -659314,62 +681773,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [271952] = 26, + [273618] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 1, + ACTIONS(3008), 1, anon_sym_LBRACK_COLON, - ACTIONS(3175), 1, + ACTIONS(4429), 1, anon_sym_class, - ACTIONS(3177), 1, + ACTIONS(4431), 1, anon_sym_struct, - ACTIONS(3179), 1, + ACTIONS(4433), 1, anon_sym_union, - ACTIONS(3185), 1, + ACTIONS(4439), 1, sym_auto, - ACTIONS(3187), 1, + ACTIONS(4441), 1, anon_sym_decltype, - ACTIONS(3273), 1, - anon_sym_enum, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10686), 1, + ACTIONS(11087), 1, + sym_identifier, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(10737), 1, + ACTIONS(11091), 1, sym_primitive_type, - ACTIONS(10747), 1, - sym_identifier, - ACTIONS(10749), 1, + ACTIONS(12795), 1, + anon_sym_enum, + ACTIONS(12797), 1, anon_sym_typename, - STATE(1963), 1, - sym_template_type, - STATE(1988), 1, + STATE(2377), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1994), 1, - sym_qualified_type_identifier, - STATE(1997), 1, + STATE(2638), 1, sym_splice_specifier, - STATE(2026), 1, + STATE(2696), 1, sym__splice_specialization_specifier, - STATE(2063), 1, - sym_decltype, - STATE(2070), 1, + STATE(2701), 1, + sym_template_type, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(3099), 1, sym_decltype_auto, - STATE(2082), 1, + STATE(4931), 1, sym_type_specifier, - STATE(2129), 1, - sym_splice_type_specifier, - STATE(8593), 1, + STATE(8687), 1, sym__scope_resolution, - STATE(10976), 2, + STATE(2984), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3269), 4, + ACTIONS(12793), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2089), 7, + STATE(3123), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -659377,61 +681835,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [272041] = 25, + [273705] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(75), 1, - anon_sym_enum, - ACTIONS(77), 1, + ACTIONS(3891), 1, + sym_auto, + ACTIONS(3893), 1, + anon_sym_decltype, + ACTIONS(4316), 1, anon_sym_class, - ACTIONS(79), 1, + ACTIONS(4318), 1, anon_sym_struct, - ACTIONS(81), 1, + ACTIONS(4320), 1, anon_sym_union, - ACTIONS(129), 1, - sym_auto, - ACTIONS(131), 1, - anon_sym_decltype, - ACTIONS(3071), 1, - sym_primitive_type, - ACTIONS(3091), 1, + ACTIONS(4360), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5102), 1, - anon_sym_typename, - ACTIONS(5572), 1, + ACTIONS(11079), 1, sym_identifier, - ACTIONS(5574), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(12759), 1, + anon_sym_enum, + ACTIONS(12761), 1, + anon_sym_typename, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(3709), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4350), 1, - sym_splice_specifier, - STATE(4520), 1, + STATE(3759), 1, sym_template_type, - STATE(4521), 1, + STATE(3762), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3819), 1, sym_qualified_type_identifier, - STATE(4706), 1, + STATE(4119), 1, sym_decltype_auto, - STATE(4739), 1, + STATE(4263), 1, + sym_splice_specifier, + STATE(6534), 1, sym_type_specifier, - STATE(8638), 1, + STATE(8675), 1, sym__scope_resolution, - STATE(4790), 2, + STATE(3967), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(59), 4, + ACTIONS(12757), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4714), 7, + STATE(4064), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -659439,62 +681897,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [272128] = 26, + [273792] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2732), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3512), 1, + ACTIONS(3204), 1, anon_sym_enum, - ACTIONS(3514), 1, + ACTIONS(3206), 1, anon_sym_class, - ACTIONS(3516), 1, + ACTIONS(3208), 1, anon_sym_struct, - ACTIONS(3518), 1, + ACTIONS(3210), 1, anon_sym_union, - ACTIONS(3524), 1, + ACTIONS(3236), 1, sym_auto, - ACTIONS(3526), 1, + ACTIONS(3238), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10733), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11046), 1, sym_identifier, - ACTIONS(10735), 1, + ACTIONS(11048), 1, anon_sym_COLON_COLON, - ACTIONS(10737), 1, + ACTIONS(11050), 1, sym_primitive_type, - ACTIONS(10739), 1, + ACTIONS(11052), 1, anon_sym_typename, - STATE(2162), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2530), 1, - sym_splice_specifier, - STATE(2580), 1, + STATE(4043), 1, sym_template_type, - STATE(2597), 1, - sym__splice_specialization_specifier, - STATE(2641), 1, + STATE(4204), 1, sym_qualified_type_identifier, - STATE(2856), 1, - sym_decltype, - STATE(2982), 1, + STATE(4305), 1, + sym__splice_specialization_specifier, + STATE(4426), 1, sym_decltype_auto, - STATE(3005), 1, + STATE(4457), 1, sym_type_specifier, - STATE(3071), 1, - sym_splice_type_specifier, - STATE(8624), 1, + STATE(6642), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7326), 1, + sym_splice_specifier, + STATE(8745), 1, sym__scope_resolution, - STATE(10976), 2, + STATE(4373), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3508), 4, + ACTIONS(3200), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2983), 7, + STATE(4430), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -659502,61 +681959,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [272217] = 25, + [273879] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2732), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3514), 1, + ACTIONS(5132), 1, + sym_identifier, + ACTIONS(5140), 1, + anon_sym_COLON_COLON, + ACTIONS(5144), 1, + sym_primitive_type, + ACTIONS(5146), 1, + anon_sym_enum, + ACTIONS(5148), 1, anon_sym_class, - ACTIONS(3516), 1, + ACTIONS(5150), 1, anon_sym_struct, - ACTIONS(3518), 1, + ACTIONS(5152), 1, anon_sym_union, - ACTIONS(3524), 1, + ACTIONS(5154), 1, + anon_sym_typename, + ACTIONS(5156), 1, sym_auto, - ACTIONS(3526), 1, + ACTIONS(5158), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10733), 1, - sym_identifier, - ACTIONS(10735), 1, - anon_sym_COLON_COLON, - ACTIONS(10737), 1, - sym_primitive_type, - ACTIONS(12662), 1, - anon_sym_enum, - ACTIONS(12664), 1, - anon_sym_typename, - STATE(2272), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + STATE(4387), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2530), 1, + STATE(4802), 1, sym_splice_specifier, - STATE(2580), 1, + STATE(5365), 1, sym_template_type, - STATE(2597), 1, + STATE(5472), 1, sym__splice_specialization_specifier, - STATE(2641), 1, + STATE(5574), 1, sym_qualified_type_identifier, - STATE(2982), 1, - sym_decltype_auto, - STATE(3005), 1, + STATE(6026), 1, sym_type_specifier, - STATE(8624), 1, + STATE(6031), 1, + sym_decltype_auto, + STATE(8757), 1, sym__scope_resolution, - STATE(2856), 2, + STATE(5973), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12660), 4, + ACTIONS(5142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2983), 7, + STATE(6050), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -659564,61 +682021,62 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [272304] = 25, + [273966] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3173), 1, + ACTIONS(75), 1, anon_sym_enum, - ACTIONS(3175), 1, + ACTIONS(77), 1, anon_sym_class, - ACTIONS(3177), 1, + ACTIONS(79), 1, anon_sym_struct, - ACTIONS(3179), 1, + ACTIONS(81), 1, anon_sym_union, - ACTIONS(3185), 1, + ACTIONS(129), 1, sym_auto, - ACTIONS(3187), 1, + ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(3466), 1, + sym_primitive_type, + ACTIONS(3486), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10684), 1, + ACTIONS(5464), 1, + anon_sym_typename, + ACTIONS(5936), 1, sym_identifier, - ACTIONS(10686), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(10688), 1, - sym_primitive_type, - ACTIONS(10690), 1, - anon_sym_typename, - STATE(1963), 1, - sym_template_type, - STATE(1965), 1, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(3824), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1994), 1, - sym_qualified_type_identifier, - STATE(1997), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(2026), 1, - sym__splice_specialization_specifier, - STATE(2070), 1, - sym_decltype_auto, - STATE(2082), 1, + STATE(4578), 1, + sym_template_type, + STATE(4601), 1, + sym_qualified_type_identifier, + STATE(4609), 1, + sym_splice_type_specifier, + STATE(4776), 1, sym_type_specifier, - STATE(8593), 1, - sym__scope_resolution, - STATE(2063), 2, + STATE(4830), 1, sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, + STATE(4948), 1, + sym_decltype_auto, + STATE(8716), 1, + sym__scope_resolution, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3169), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2089), 7, + STATE(4935), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -659626,124 +682084,125 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [272391] = 26, + [274055] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(7243), 1, + anon_sym_LBRACE, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(9027), 1, - anon_sym_LBRACE, - ACTIONS(10293), 1, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(12742), 1, + ACTIONS(13119), 1, sym_identifier, - STATE(2855), 1, + STATE(2104), 1, + sym_splice_specifier, + STATE(2170), 1, sym__splice_specialization_specifier, - STATE(3087), 1, - sym__class_declaration_item, - STATE(3837), 1, + STATE(2172), 1, sym_field_declaration_list, - STATE(7086), 1, - sym_splice_specifier, - STATE(7693), 1, + STATE(2190), 1, + sym__class_declaration_item, + STATE(7814), 1, sym_ms_declspec_modifier, - STATE(8605), 1, + STATE(8763), 1, sym__scope_resolution, - STATE(9411), 1, + STATE(9644), 1, sym_virtual_specifier, - STATE(10180), 1, + STATE(10276), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2874), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3534), 2, + STATE(2075), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7735), 2, + STATE(2147), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7813), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8282), 3, + STATE(8412), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [272480] = 25, + [274144] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, - anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(3293), 1, + ACTIONS(3871), 1, + anon_sym_enum, + ACTIONS(3873), 1, anon_sym_class, - ACTIONS(3295), 1, + ACTIONS(3875), 1, anon_sym_struct, - ACTIONS(3297), 1, + ACTIONS(3877), 1, anon_sym_union, - ACTIONS(4800), 1, + ACTIONS(3891), 1, + sym_auto, + ACTIONS(3893), 1, + anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10295), 1, + ACTIONS(11083), 1, sym_primitive_type, - ACTIONS(10649), 1, + ACTIONS(11109), 1, sym_identifier, - ACTIONS(10651), 1, + ACTIONS(11111), 1, anon_sym_COLON_COLON, - ACTIONS(12437), 1, - anon_sym_enum, - ACTIONS(12439), 1, + ACTIONS(11113), 1, anon_sym_typename, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3123), 1, + STATE(2941), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3561), 1, + STATE(3485), 1, + sym_splice_type_specifier, + STATE(3711), 1, + sym__splice_specialization_specifier, + STATE(3719), 1, + sym_splice_specifier, + STATE(3759), 1, sym_template_type, - STATE(3623), 1, + STATE(3819), 1, sym_qualified_type_identifier, - STATE(3688), 1, - sym_splice_specifier, - STATE(6404), 1, + STATE(3967), 1, + sym_decltype, + STATE(4108), 1, sym_type_specifier, - STATE(8621), 1, + STATE(4119), 1, + sym_decltype_auto, + STATE(8707), 1, sym__scope_resolution, - STATE(2949), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12435), 4, + ACTIONS(3867), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(4064), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -659751,61 +682210,62 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [272567] = 25, + [274233] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10619), 1, - sym_identifier, - ACTIONS(10621), 1, - anon_sym_COLON_COLON, - ACTIONS(10625), 1, - sym_primitive_type, - ACTIONS(10627), 1, + ACTIONS(129), 1, + sym_auto, + ACTIONS(131), 1, + anon_sym_decltype, + ACTIONS(2314), 1, anon_sym_enum, - ACTIONS(10629), 1, + ACTIONS(2316), 1, anon_sym_class, - ACTIONS(10631), 1, + ACTIONS(2318), 1, anon_sym_struct, - ACTIONS(10633), 1, + ACTIONS(2320), 1, anon_sym_union, - ACTIONS(10635), 1, + ACTIONS(3466), 1, + sym_primitive_type, + ACTIONS(3486), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5629), 1, anon_sym_typename, - ACTIONS(10637), 1, - sym_auto, - ACTIONS(10639), 1, - anon_sym_decltype, - STATE(6310), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6603), 1, - sym_splice_specifier, - STATE(7033), 1, + ACTIONS(6455), 1, + sym_identifier, + ACTIONS(6469), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7218), 1, + STATE(3824), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4578), 1, sym_template_type, - STATE(7294), 1, + STATE(4601), 1, sym_qualified_type_identifier, - STATE(7496), 1, - sym_decltype_auto, - STATE(7530), 1, + STATE(4776), 1, sym_type_specifier, - STATE(8612), 1, - sym__scope_resolution, - STATE(7484), 2, + STATE(4830), 1, sym_decltype, + STATE(4948), 1, + sym_decltype_auto, + STATE(5157), 1, + sym_splice_specifier, + STATE(5943), 1, sym_splice_type_specifier, - STATE(10976), 2, + STATE(8756), 1, + sym__scope_resolution, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(10623), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(7497), 7, + STATE(4935), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -659813,61 +682273,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [272654] = 25, + [274322] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(3293), 1, + ACTIONS(3706), 1, anon_sym_class, - ACTIONS(3295), 1, + ACTIONS(3708), 1, anon_sym_struct, - ACTIONS(3297), 1, + ACTIONS(3710), 1, anon_sym_union, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10295), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10649), 1, + ACTIONS(11103), 1, sym_identifier, - ACTIONS(10651), 1, + ACTIONS(11105), 1, anon_sym_COLON_COLON, - ACTIONS(12437), 1, + ACTIONS(12787), 1, anon_sym_enum, - ACTIONS(12439), 1, + ACTIONS(12789), 1, anon_sym_typename, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3123), 1, + STATE(3126), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3561), 1, + STATE(3197), 1, + sym_decltype_auto, + STATE(3684), 1, sym_template_type, - STATE(3623), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(3688), 1, + STATE(3800), 1, sym_splice_specifier, - STATE(6394), 1, + STATE(5431), 1, sym_type_specifier, - STATE(8621), 1, + STATE(8738), 1, sym__scope_resolution, - STATE(2949), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12435), 4, + ACTIONS(12785), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -659875,61 +682335,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [272741] = 25, + [274409] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2744), 1, + ACTIONS(3092), 1, anon_sym_LBRACK_COLON, - ACTIONS(3455), 1, + ACTIONS(3837), 1, anon_sym_enum, - ACTIONS(3457), 1, + ACTIONS(3839), 1, anon_sym_class, - ACTIONS(3459), 1, + ACTIONS(3841), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(3843), 1, anon_sym_union, - ACTIONS(3465), 1, + ACTIONS(3849), 1, sym_auto, - ACTIONS(3467), 1, + ACTIONS(3851), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10709), 1, + ACTIONS(11095), 1, sym_identifier, - ACTIONS(10711), 1, + ACTIONS(11097), 1, anon_sym_COLON_COLON, - ACTIONS(10713), 1, + ACTIONS(11099), 1, sym_primitive_type, - ACTIONS(10715), 1, + ACTIONS(11101), 1, anon_sym_typename, - STATE(2240), 1, + STATE(2263), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2677), 1, + STATE(2605), 1, sym_splice_specifier, - STATE(2814), 1, - sym_template_type, - STATE(2837), 1, + STATE(2659), 1, sym__splice_specialization_specifier, - STATE(2887), 1, + STATE(2712), 1, + sym_template_type, + STATE(2843), 1, sym_qualified_type_identifier, - STATE(3387), 1, - sym_type_specifier, - STATE(3453), 1, + STATE(3166), 1, sym_decltype_auto, - STATE(8588), 1, + STATE(3238), 1, + sym_type_specifier, + STATE(8702), 1, sym__scope_resolution, - STATE(3262), 2, + STATE(3053), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3451), 4, + ACTIONS(3833), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3460), 7, + STATE(3167), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -659937,48 +682397,48 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [272828] = 16, + [274496] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(11985), 1, + sym_identifier, + ACTIONS(11987), 1, anon_sym_LPAREN2, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11637), 1, + ACTIONS(11989), 1, anon_sym_STAR, - ACTIONS(11639), 1, + ACTIONS(11991), 1, anon_sym_AMP_AMP, - ACTIONS(11641), 1, + ACTIONS(11993), 1, anon_sym_AMP, - STATE(4923), 1, - sym_parameter_list, - STATE(6485), 1, + STATE(7511), 1, sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8926), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, + STATE(8612), 1, + sym__field_declarator, + STATE(8807), 1, + sym_operator_name, + STATE(10687), 1, + sym_ms_based_modifier, + ACTIONS(3272), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6280), 2, + STATE(7086), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7007), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(11421), 12, + STATE(8839), 7, + 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(3270), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -659990,124 +682450,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [272897] = 26, + [274565] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(3236), 1, + sym_auto, + ACTIONS(3238), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3256), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(4399), 1, + anon_sym_class, + ACTIONS(4401), 1, + anon_sym_struct, + ACTIONS(4403), 1, + anon_sym_union, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(11050), 1, + sym_primitive_type, + ACTIONS(11057), 1, sym_identifier, - ACTIONS(12740), 1, + ACTIONS(11059), 1, anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, - sym_splice_specifier, - STATE(4546), 1, - sym_field_declaration_list, - STATE(4874), 1, - sym__class_declaration_item, - STATE(7714), 1, - sym_ms_declspec_modifier, - STATE(8614), 1, - sym__scope_resolution, - STATE(9523), 1, - sym_virtual_specifier, - STATE(10297), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3712), 2, + ACTIONS(12988), 1, + anon_sym_enum, + ACTIONS(12990), 1, + anon_sym_typename, + STATE(3770), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4043), 1, sym_template_type, - sym_splice_type_specifier, - STATE(6098), 2, - sym__class_name, + STATE(4204), 1, sym_qualified_type_identifier, - STATE(7789), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8282), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(4272), 1, + sym_splice_specifier, + STATE(4305), 1, + sym__splice_specialization_specifier, + STATE(4426), 1, + sym_decltype_auto, + STATE(6535), 1, + sym_type_specifier, + STATE(8676), 1, + sym__scope_resolution, + STATE(4373), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - [272986] = 25, + ACTIONS(12986), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4430), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [274652] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_enum, - ACTIONS(1888), 1, + ACTIONS(3008), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4429), 1, anon_sym_class, - ACTIONS(1890), 1, + ACTIONS(4431), 1, anon_sym_struct, - ACTIONS(1892), 1, + ACTIONS(4433), 1, anon_sym_union, - ACTIONS(1918), 1, + ACTIONS(4439), 1, sym_auto, - ACTIONS(1920), 1, + ACTIONS(4441), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10289), 1, + ACTIONS(11087), 1, sym_identifier, - ACTIONS(10293), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(10295), 1, + ACTIONS(11091), 1, sym_primitive_type, - ACTIONS(10297), 1, + ACTIONS(12795), 1, + anon_sym_enum, + ACTIONS(12797), 1, anon_sym_typename, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - STATE(2634), 1, + STATE(2377), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(2638), 1, + sym_splice_specifier, + STATE(2696), 1, sym__splice_specialization_specifier, - STATE(3012), 1, - sym_type_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3561), 1, + STATE(2701), 1, sym_template_type, - STATE(3623), 1, + STATE(2781), 1, sym_qualified_type_identifier, - STATE(7086), 1, - sym_splice_specifier, - STATE(8605), 1, + STATE(3089), 1, + sym_type_specifier, + STATE(3099), 1, + sym_decltype_auto, + STATE(8687), 1, sym__scope_resolution, - STATE(2949), 2, + STATE(2984), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(1882), 4, + ACTIONS(12793), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3118), 7, + STATE(3123), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -660115,124 +682574,123 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [273073] = 26, + [274739] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(75), 1, + anon_sym_enum, + ACTIONS(77), 1, + anon_sym_class, + ACTIONS(79), 1, + anon_sym_struct, + ACTIONS(81), 1, + anon_sym_union, + ACTIONS(129), 1, + sym_auto, + ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3466), 1, + sym_primitive_type, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(5464), 1, + anon_sym_typename, + ACTIONS(5936), 1, sym_identifier, - STATE(3682), 1, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(3824), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, - sym_field_declaration_list, - STATE(4874), 1, - sym__class_declaration_item, - STATE(7756), 1, - sym_ms_declspec_modifier, - STATE(8638), 1, - sym__scope_resolution, - STATE(9523), 1, - sym_virtual_specifier, - STATE(10297), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3712), 2, + STATE(4578), 1, sym_template_type, - sym_splice_type_specifier, - STATE(3904), 2, - sym__class_name, + STATE(4601), 1, sym_qualified_type_identifier, - STATE(7773), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8282), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(4776), 1, + sym_type_specifier, + STATE(4948), 1, + sym_decltype_auto, + STATE(8716), 1, + sym__scope_resolution, + STATE(4830), 2, sym_decltype, + sym_splice_type_specifier, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - [273162] = 25, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4935), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [274826] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, - sym_auto, - ACTIONS(3363), 1, - anon_sym_decltype, - ACTIONS(3399), 1, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3809), 1, anon_sym_class, - ACTIONS(3401), 1, + ACTIONS(3811), 1, anon_sym_struct, - ACTIONS(3403), 1, + ACTIONS(3813), 1, anon_sym_union, - ACTIONS(3443), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(3819), 1, + sym_auto, + ACTIONS(3821), 1, + anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10717), 1, + ACTIONS(11036), 1, sym_identifier, - ACTIONS(10719), 1, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - ACTIONS(10721), 1, + ACTIONS(11040), 1, sym_primitive_type, - ACTIONS(12407), 1, + ACTIONS(12803), 1, anon_sym_enum, - ACTIONS(12409), 1, + ACTIONS(12805), 1, anon_sym_typename, - STATE(3627), 1, + STATE(2073), 1, sym_template_type, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(3658), 1, + STATE(2087), 1, sym_qualified_type_identifier, - STATE(3697), 1, + STATE(2104), 1, + sym_splice_specifier, + STATE(2153), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4041), 1, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2221), 1, sym_decltype_auto, - STATE(4072), 1, - sym_splice_specifier, - STATE(6420), 1, + STATE(3581), 1, sym_type_specifier, - STATE(8571), 1, + STATE(8763), 1, sym__scope_resolution, - STATE(3887), 2, + STATE(2169), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12405), 4, + ACTIONS(12801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4042), 7, + STATE(2222), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -660240,177 +682698,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [273249] = 26, + [274913] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2062), 1, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7819), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, - anon_sym___declspec, - ACTIONS(10678), 1, - anon_sym_COLON_COLON, - ACTIONS(12774), 1, - sym_identifier, - STATE(2431), 1, - sym_splice_specifier, - STATE(2514), 1, - sym__splice_specialization_specifier, - STATE(2595), 1, - sym_field_declaration_list, - STATE(2878), 1, - sym__class_declaration_item, - STATE(7730), 1, - sym_ms_declspec_modifier, - STATE(8639), 1, - sym__scope_resolution, - STATE(9457), 1, - sym_virtual_specifier, - STATE(10302), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7876), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7884), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2310), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2534), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7707), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8282), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [273338] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(11629), 1, - anon_sym_LPAREN2, - ACTIONS(11695), 1, - sym_identifier, - ACTIONS(11697), 1, - anon_sym_STAR, - ACTIONS(11699), 1, - anon_sym_AMP_AMP, - ACTIONS(11701), 1, - anon_sym_AMP, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(8932), 1, - sym__field_declarator, - STATE(9063), 1, - sym_operator_name, - STATE(11009), 1, - sym_ms_based_modifier, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6842), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8721), 7, - 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(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [273407] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1938), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(3199), 1, + ACTIONS(3706), 1, anon_sym_class, - ACTIONS(3201), 1, + ACTIONS(3708), 1, anon_sym_struct, - ACTIONS(3203), 1, + ACTIONS(3710), 1, anon_sym_union, - ACTIONS(3207), 1, - sym_auto, - ACTIONS(3209), 1, - anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10676), 1, + ACTIONS(10655), 1, + sym_primitive_type, + ACTIONS(11103), 1, sym_identifier, - ACTIONS(10678), 1, + ACTIONS(11105), 1, anon_sym_COLON_COLON, - ACTIONS(10680), 1, - sym_primitive_type, - ACTIONS(12471), 1, + ACTIONS(12787), 1, anon_sym_enum, - ACTIONS(12473), 1, + ACTIONS(12789), 1, anon_sym_typename, - STATE(2250), 1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3126), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2431), 1, - sym_splice_specifier, - STATE(2509), 1, + STATE(3197), 1, + sym_decltype_auto, + STATE(3684), 1, sym_template_type, - STATE(2514), 1, - sym__splice_specialization_specifier, - STATE(2568), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(2925), 1, - sym_decltype_auto, - STATE(4639), 1, + STATE(3800), 1, + sym_splice_specifier, + STATE(5335), 1, sym_type_specifier, - STATE(8639), 1, + STATE(8738), 1, sym__scope_resolution, - STATE(2832), 2, + STATE(3021), 2, sym_decltype, sym_splice_type_specifier, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12469), 4, + ACTIONS(12785), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2926), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -660418,62 +682760,62 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [273494] = 26, + [275000] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2648), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3243), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(3245), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(3247), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(3249), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(3255), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(3257), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10725), 1, + ACTIONS(10649), 1, sym_identifier, - ACTIONS(10727), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10729), 1, + ACTIONS(10655), 1, sym_primitive_type, - ACTIONS(10731), 1, + ACTIONS(10657), 1, anon_sym_typename, - STATE(2169), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2519), 1, - sym_splice_specifier, - STATE(2567), 1, + STATE(3021), 1, + sym_decltype, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(2591), 1, + STATE(3097), 1, + sym_type_specifier, + STATE(3197), 1, + sym_decltype_auto, + STATE(3684), 1, sym_template_type, - STATE(2699), 1, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(2973), 1, - sym_decltype, - STATE(3039), 1, - sym_type_specifier, - STATE(3074), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(7935), 1, sym_splice_type_specifier, - STATE(3138), 1, - sym_decltype_auto, - STATE(8604), 1, + STATE(8711), 1, sym__scope_resolution, - STATE(10976), 2, + STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3239), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3140), 7, + STATE(3100), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -660481,788 +682823,1151 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [273583] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(11629), 1, - anon_sym_LPAREN2, - ACTIONS(11695), 1, - sym_identifier, - ACTIONS(11697), 1, - anon_sym_STAR, - ACTIONS(11699), 1, - anon_sym_AMP_AMP, - ACTIONS(11701), 1, - anon_sym_AMP, - STATE(7436), 1, - sym_alignas_qualifier, - STATE(8937), 1, - sym__field_declarator, - STATE(9063), 1, - sym_operator_name, - STATE(11009), 1, - sym_ms_based_modifier, - ACTIONS(2939), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6842), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8721), 7, - 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(2937), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [273652] = 26, + [275089] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(3104), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7882), 1, + ACTIONS(8242), 1, anon_sym___declspec, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10621), 1, - anon_sym_COLON_COLON, - ACTIONS(12646), 1, + ACTIONS(8503), 1, anon_sym_LBRACE, - ACTIONS(12770), 1, + ACTIONS(11073), 1, + anon_sym_COLON_COLON, + ACTIONS(13137), 1, sym_identifier, - STATE(6603), 1, + STATE(2742), 1, sym_splice_specifier, - STATE(7033), 1, + STATE(2921), 1, sym__splice_specialization_specifier, - STATE(7472), 1, + STATE(3040), 1, sym_field_declaration_list, - STATE(7491), 1, + STATE(3550), 1, sym__class_declaration_item, - STATE(7698), 1, + STATE(7876), 1, sym_ms_declspec_modifier, - STATE(8612), 1, + STATE(8686), 1, sym__scope_resolution, - STATE(9510), 1, + STATE(9512), 1, sym_virtual_specifier, - STATE(10405), 1, + STATE(10494), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(7876), 2, + ACTIONS(8236), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7884), 2, + ACTIONS(8244), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7021), 2, + STATE(2606), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7034), 2, + STATE(2934), 2, sym_template_type, sym_splice_type_specifier, - STATE(7696), 2, + STATE(7874), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8282), 3, + STATE(8412), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [273741] = 24, + [275178] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(9997), 1, + ACTIONS(10348), 1, anon_sym_AMP_AMP, - ACTIONS(9999), 1, + ACTIONS(10350), 1, anon_sym_AMP, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10751), 1, + ACTIONS(10919), 1, anon_sym_DASH_GT, - ACTIONS(10753), 1, - anon_sym_requires, - ACTIONS(12144), 1, + ACTIONS(12406), 1, anon_sym___attribute__, - ACTIONS(12147), 1, + ACTIONS(12409), 1, anon_sym___attribute, - STATE(7504), 1, + ACTIONS(13188), 1, + anon_sym_requires, + STATE(7616), 1, sym_ref_qualifier, - STATE(8259), 1, + STATE(8398), 1, sym_trailing_return_type, - STATE(8330), 1, + STATE(8471), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10476), 2, + ACTIONS(13146), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - STATE(7661), 3, + STATE(7767), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7544), 5, + ACTIONS(7791), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [273826] = 25, + [275263] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3175), 1, - anon_sym_class, - ACTIONS(3177), 1, - anon_sym_struct, - ACTIONS(3179), 1, - anon_sym_union, - ACTIONS(3185), 1, - sym_auto, - ACTIONS(3187), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10684), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(10686), 1, + ACTIONS(8554), 1, anon_sym_COLON_COLON, - ACTIONS(10688), 1, - sym_primitive_type, - ACTIONS(12682), 1, - anon_sym_enum, - ACTIONS(12684), 1, - anon_sym_typename, - STATE(1963), 1, - sym_template_type, - STATE(1994), 1, - sym_qualified_type_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2024), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2026), 1, + ACTIONS(10264), 1, + anon_sym_STAR, + ACTIONS(10266), 1, + anon_sym_AMP_AMP, + ACTIONS(10268), 1, + anon_sym_AMP, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(2070), 1, - sym_decltype_auto, - STATE(3472), 1, - sym_type_specifier, - STATE(8593), 1, + STATE(7990), 1, sym__scope_resolution, - STATE(2063), 2, + STATE(8222), 1, + sym_splice_specifier, + STATE(8831), 1, + sym__declarator, + STATE(10957), 1, + sym_ms_based_modifier, + STATE(10768), 5, sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - ACTIONS(12680), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2089), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [273913] = 26, + STATE(8555), 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, + [275341] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, - sym_auto, - ACTIONS(131), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(1954), 1, - anon_sym_enum, - ACTIONS(1956), 1, - anon_sym_class, - ACTIONS(1958), 1, - anon_sym_struct, - ACTIONS(1960), 1, - anon_sym_union, - ACTIONS(3071), 1, - sym_primitive_type, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5313), 1, - anon_sym_typename, - ACTIONS(6091), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(6101), 1, + ACTIONS(10218), 1, + anon_sym_STAR, + ACTIONS(10220), 1, + anon_sym_AMP_AMP, + ACTIONS(10222), 1, + anon_sym_AMP, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3709), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4520), 1, - sym_template_type, - STATE(4521), 1, - sym_qualified_type_identifier, - STATE(4706), 1, - sym_decltype_auto, - STATE(4739), 1, - sym_type_specifier, - STATE(4790), 1, - sym_decltype, - STATE(5044), 1, + STATE(7986), 1, + sym__scope_resolution, + STATE(8222), 1, sym_splice_specifier, - STATE(5838), 1, + STATE(8383), 1, + sym__declarator, + STATE(11612), 1, + sym_ms_based_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_type_specifier, - STATE(8579), 1, + sym_splice_expression, + STATE(8555), 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, + [275419] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(12162), 1, + anon_sym_STAR, + ACTIONS(12164), 1, + anon_sym_AMP_AMP, + ACTIONS(12166), 1, + anon_sym_AMP, + STATE(5222), 1, + sym_parameter_list, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(9154), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7517), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7391), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [275487] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7968), 1, + anon_sym_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10592), 1, + anon_sym_DASH_GT, + ACTIONS(13114), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13161), 1, + anon_sym_requires, + ACTIONS(13194), 1, + anon_sym___asm, + STATE(8035), 1, + sym_trailing_return_type, + STATE(8126), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(13158), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(13191), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8358), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7704), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7966), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [275565] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10216), 1, + sym_identifier, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + ACTIONS(10240), 1, + anon_sym_STAR, + ACTIONS(10242), 1, + anon_sym_AMP_AMP, + ACTIONS(10244), 1, + anon_sym_AMP, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7986), 1, sym__scope_resolution, - STATE(10976), 2, + STATE(8222), 1, + sym_splice_specifier, + STATE(8868), 1, + sym__declarator, + STATE(10743), 1, + sym_ms_based_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4714), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [274002] = 25, + STATE(8555), 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, + [275643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2732), 1, + ACTIONS(3118), 10, + 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, anon_sym_LBRACK_COLON, - ACTIONS(3514), 1, - anon_sym_class, - ACTIONS(3516), 1, - anon_sym_struct, - ACTIONS(3518), 1, - anon_sym_union, - ACTIONS(3524), 1, - sym_auto, - ACTIONS(3526), 1, + ACTIONS(3128), 24, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, anon_sym_decltype, - ACTIONS(4800), 1, anon_sym_template, - ACTIONS(10733), 1, + anon_sym_operator, + [275685] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(10735), 1, + ACTIONS(8554), 1, anon_sym_COLON_COLON, - ACTIONS(10737), 1, - sym_primitive_type, - ACTIONS(12662), 1, - anon_sym_enum, - ACTIONS(12664), 1, - anon_sym_typename, - STATE(2272), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2530), 1, - sym_splice_specifier, - STATE(2580), 1, - sym_template_type, - STATE(2597), 1, + ACTIONS(10264), 1, + anon_sym_STAR, + ACTIONS(10266), 1, + anon_sym_AMP_AMP, + ACTIONS(10268), 1, + anon_sym_AMP, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(2641), 1, - sym_qualified_type_identifier, - STATE(2982), 1, - sym_decltype_auto, - STATE(4824), 1, - sym_type_specifier, - STATE(8624), 1, + STATE(7990), 1, sym__scope_resolution, - STATE(2856), 2, + STATE(8222), 1, + sym_splice_specifier, + STATE(8969), 1, + sym__declarator, + STATE(10957), 1, + sym_ms_based_modifier, + STATE(10768), 5, sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - ACTIONS(12660), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2983), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [274089] = 25, + STATE(8555), 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, + [275763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, - sym_auto, - ACTIONS(131), 1, + ACTIONS(7079), 10, + 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, + anon_sym_LBRACK_COLON, + ACTIONS(7077), 24, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [275805] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10382), 1, + anon_sym_requires, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10624), 1, + anon_sym_DASH_GT, + ACTIONS(12412), 1, + anon_sym_LBRACK_LBRACK, + STATE(7999), 1, + sym_trailing_return_type, + STATE(8373), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8160), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8313), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7723), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7791), 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [275883] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3446), 1, + anon_sym_STAR, + ACTIONS(3448), 1, + anon_sym_AMP, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(12806), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(12808), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(12812), 1, - sym_primitive_type, - ACTIONS(12814), 1, - anon_sym_enum, - ACTIONS(12816), 1, - anon_sym_class, - ACTIONS(12818), 1, - anon_sym_struct, - ACTIONS(12820), 1, - anon_sym_union, - ACTIONS(12822), 1, - anon_sym_typename, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4691), 1, - sym_splice_specifier, - STATE(4706), 1, - sym_decltype_auto, - STATE(7573), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(8606), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(9062), 1, - sym_template_type, - STATE(9246), 1, - sym_qualified_type_identifier, - STATE(10451), 1, - sym_type_specifier, - STATE(4790), 2, + STATE(8222), 1, + sym_splice_specifier, + STATE(9034), 1, + sym__declarator, + STATE(11554), 1, + sym_ms_based_modifier, + STATE(10768), 5, sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - ACTIONS(12810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4714), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [274176] = 25, + STATE(8555), 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, + [275961] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 1, - sym_auto, - ACTIONS(2857), 1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2875), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3546), 1, - anon_sym_class, - ACTIONS(3548), 1, - anon_sym_struct, - ACTIONS(3550), 1, - anon_sym_union, - ACTIONS(4800), 1, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3446), 1, + anon_sym_STAR, + ACTIONS(3448), 1, + anon_sym_AMP, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10699), 1, - sym_primitive_type, - ACTIONS(10703), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(10705), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(12670), 1, - anon_sym_enum, - ACTIONS(12672), 1, - anon_sym_typename, - STATE(3683), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3965), 1, - sym_template_type, - STATE(4048), 1, - sym_qualified_type_identifier, - STATE(4067), 1, - sym_splice_specifier, - STATE(4189), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4376), 1, - sym_type_specifier, - STATE(4401), 1, - sym_decltype_auto, - STATE(8549), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(4252), 2, + STATE(8222), 1, + sym_splice_specifier, + STATE(8831), 1, + sym__declarator, + STATE(11554), 1, + sym_ms_based_modifier, + STATE(10768), 5, sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - ACTIONS(12668), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4402), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [274263] = 26, + STATE(8555), 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, + [276039] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(12162), 1, + anon_sym_STAR, + ACTIONS(12164), 1, + anon_sym_AMP_AMP, + ACTIONS(12166), 1, + anon_sym_AMP, + STATE(5222), 1, + sym_parameter_list, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(9091), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6420), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7351), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [276107] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(12162), 1, + anon_sym_STAR, + ACTIONS(12164), 1, + anon_sym_AMP_AMP, + ACTIONS(12166), 1, + anon_sym_AMP, + STATE(5222), 1, + sym_parameter_list, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(9095), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7558), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7343), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [276175] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, - sym_auto, - ACTIONS(1920), 1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3291), 1, - anon_sym_enum, - ACTIONS(3293), 1, - anon_sym_class, - ACTIONS(3295), 1, - anon_sym_struct, - ACTIONS(3297), 1, - anon_sym_union, - ACTIONS(4800), 1, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3446), 1, + anon_sym_STAR, + ACTIONS(3448), 1, + anon_sym_AMP, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10295), 1, - sym_primitive_type, - ACTIONS(10649), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(10651), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(10653), 1, - anon_sym_typename, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2855), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(2949), 1, + STATE(7993), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(9048), 1, + sym__declarator, + STATE(11554), 1, + sym_ms_based_modifier, + STATE(10768), 5, sym_decltype, - STATE(3012), 1, - sym_type_specifier, - STATE(3100), 1, - sym_decltype_auto, - STATE(3424), 1, - sym_splice_type_specifier, - STATE(3561), 1, sym_template_type, - STATE(3623), 1, - sym_qualified_type_identifier, - STATE(3688), 1, - sym_splice_specifier, - STATE(8621), 1, - sym__scope_resolution, - STATE(10976), 2, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - ACTIONS(1882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3118), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [274352] = 24, + STATE(8555), 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, + [276253] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10254), 1, + ACTIONS(10382), 1, + anon_sym_requires, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10606), 1, + ACTIONS(10592), 1, anon_sym_DASH_GT, - ACTIONS(10753), 1, - anon_sym_requires, - STATE(7494), 1, - sym_ref_qualifier, - STATE(8259), 1, + ACTIONS(12412), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12858), 1, + anon_sym___asm, + STATE(7999), 1, sym_trailing_return_type, - STATE(8487), 1, + STATE(8132), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10476), 2, + ACTIONS(8160), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + ACTIONS(12855), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8313), 2, sym__function_postfix, sym_requires_clause, - STATE(7659), 3, + STATE(7724), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7544), 5, + ACTIONS(7791), 7, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [274437] = 25, + [276331] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 1, - sym_auto, - ACTIONS(2857), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2875), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3546), 1, - anon_sym_class, - ACTIONS(3548), 1, - anon_sym_struct, - ACTIONS(3550), 1, - anon_sym_union, - ACTIONS(4800), 1, + ACTIONS(3442), 1, + anon_sym_LPAREN2, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10699), 1, - sym_primitive_type, - ACTIONS(10703), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(10705), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(12670), 1, - anon_sym_enum, - ACTIONS(12672), 1, - anon_sym_typename, - STATE(3683), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3965), 1, - sym_template_type, - STATE(4048), 1, - sym_qualified_type_identifier, - STATE(4067), 1, - sym_splice_specifier, - STATE(4189), 1, + ACTIONS(10234), 1, + anon_sym_STAR, + ACTIONS(10236), 1, + anon_sym_AMP_AMP, + ACTIONS(10238), 1, + anon_sym_AMP, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4401), 1, - sym_decltype_auto, - STATE(6434), 1, - sym_type_specifier, - STATE(8549), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(4252), 2, + STATE(8222), 1, + sym_splice_specifier, + STATE(8792), 1, + sym__declarator, + STATE(10900), 1, + sym_ms_based_modifier, + STATE(10768), 5, sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - ACTIONS(12668), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4402), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [274524] = 25, + STATE(8555), 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, + [276409] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, - sym_identifier, - ACTIONS(4780), 1, - anon_sym_COLON_COLON, - ACTIONS(4784), 1, - sym_primitive_type, - ACTIONS(4786), 1, - anon_sym_enum, - ACTIONS(4788), 1, - anon_sym_class, - ACTIONS(4790), 1, - anon_sym_struct, - ACTIONS(4792), 1, - anon_sym_union, - ACTIONS(4794), 1, - anon_sym_typename, - ACTIONS(4796), 1, - sym_auto, - ACTIONS(4798), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - STATE(4270), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4691), 1, - sym_splice_specifier, - STATE(5263), 1, - sym__splice_specialization_specifier, - STATE(5264), 1, - sym_template_type, - STATE(5495), 1, - sym_qualified_type_identifier, - STATE(5970), 1, - sym_type_specifier, - STATE(6020), 1, - sym_decltype_auto, - STATE(8584), 1, - sym__scope_resolution, - STATE(5891), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10976), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(4782), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5975), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [274611] = 21, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10592), 1, + anon_sym_DASH_GT, + ACTIONS(12412), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12418), 1, + anon_sym_requires, + ACTIONS(12858), 1, + anon_sym___asm, + STATE(8013), 1, + sym_trailing_return_type, + STATE(8125), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(12415), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(12855), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8313), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7727), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7791), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [276487] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7968), 1, + anon_sym_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10382), 1, + anon_sym_requires, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10624), 1, + anon_sym_DASH_GT, + ACTIONS(13114), 1, + anon_sym_LBRACK_LBRACK, + STATE(8057), 1, + sym_trailing_return_type, + STATE(8434), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8160), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8358), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7731), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7966), 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [276565] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3051), 1, + ACTIONS(3446), 1, anon_sym_STAR, - ACTIONS(3053), 1, + ACTIONS(3448), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(8360), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7869), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8934), 1, + STATE(9044), 1, sym__declarator, - STATE(11063), 1, + STATE(11554), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -661274,52 +683979,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [274689] = 21, + [276643] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3051), 1, - anon_sym_STAR, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(8360), 1, + ACTIONS(8554), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + ACTIONS(10178), 1, + anon_sym_STAR, + ACTIONS(10180), 1, + anon_sym_AMP_AMP, + ACTIONS(10182), 1, + anon_sym_AMP, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7869), 1, + STATE(7990), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8894), 1, + STATE(8530), 1, sym__declarator, - STATE(11063), 1, + STATE(11622), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -661331,52 +684036,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [274767] = 21, + [276721] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3446), 1, + anon_sym_STAR, + ACTIONS(3448), 1, + anon_sym_AMP, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(9882), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(9894), 1, - anon_sym_STAR, - ACTIONS(9896), 1, - anon_sym_AMP_AMP, - ACTIONS(9898), 1, - anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7870), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8777), 1, + STATE(9014), 1, sym__declarator, - STATE(10563), 1, + STATE(11554), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -661388,52 +684093,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [274845] = 21, + [276799] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(9876), 1, + ACTIONS(10218), 1, anon_sym_STAR, - ACTIONS(9878), 1, + ACTIONS(10220), 1, anon_sym_AMP_AMP, - ACTIONS(9880), 1, + ACTIONS(10222), 1, anon_sym_AMP, - ACTIONS(9882), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7870), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8274), 1, + STATE(8438), 1, sym__declarator, - STATE(11345), 1, + STATE(11612), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -661445,52 +684150,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [274923] = 21, + [276877] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3446), 1, + anon_sym_STAR, + ACTIONS(3448), 1, + anon_sym_AMP, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(9912), 1, - anon_sym_STAR, - ACTIONS(9914), 1, - anon_sym_AMP_AMP, - ACTIONS(9916), 1, - anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7878), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8842), 1, + STATE(9020), 1, sym__declarator, - STATE(10776), 1, + STATE(11554), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -661502,52 +684207,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [275001] = 21, + [276955] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(8360), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(9888), 1, + ACTIONS(10240), 1, anon_sym_STAR, - ACTIONS(9890), 1, + ACTIONS(10242), 1, anon_sym_AMP_AMP, - ACTIONS(9892), 1, + ACTIONS(10244), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7869), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8622), 1, + STATE(8935), 1, sym__declarator, - STATE(10719), 1, + STATE(10743), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -661559,52 +684264,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [275079] = 21, + [277033] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(9882), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(9894), 1, + ACTIONS(10234), 1, anon_sym_STAR, - ACTIONS(9896), 1, + ACTIONS(10236), 1, anon_sym_AMP_AMP, - ACTIONS(9898), 1, + ACTIONS(10238), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7870), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8814), 1, + STATE(8753), 1, sym__declarator, - STATE(10563), 1, + STATE(10900), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -661616,47 +684321,89 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [275157] = 16, + [277111] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(11429), 1, + ACTIONS(7968), 1, anon_sym_LBRACK, - ACTIONS(11431), 1, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10382), 1, + anon_sym_requires, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10592), 1, + anon_sym_DASH_GT, + ACTIONS(13114), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13194), 1, + anon_sym___asm, + STATE(8057), 1, + sym_trailing_return_type, + STATE(8080), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(8160), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(13191), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8358), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7706), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7966), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [277189] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12974), 1, + anon_sym___attribute__, + ACTIONS(12976), 1, + anon_sym___attribute, + ACTIONS(13131), 1, + anon_sym_LBRACE, + STATE(7574), 1, + sym_enumerator_list, + STATE(7628), 1, + sym_attribute_specifier, + ACTIONS(7387), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(11826), 1, + ACTIONS(7389), 27, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(11828), 1, anon_sym_AMP_AMP, - ACTIONS(11830), 1, - anon_sym_AMP, - STATE(4969), 1, - sym_parameter_list, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8987), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6995), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(11421), 12, + anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -661668,28 +684415,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [275225] = 3, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [277241] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10348), 1, + anon_sym_AMP_AMP, + ACTIONS(10350), 1, + anon_sym_AMP, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11296), 1, + anon_sym_DASH_GT, + ACTIONS(11298), 1, + anon_sym_requires, + STATE(7666), 1, + sym_ref_qualifier, + STATE(8717), 1, + sym__function_attributes_end, + STATE(8718), 1, + sym_trailing_return_type, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7840), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7791), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [277325] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6718), 10, + ACTIONS(12974), 1, + anon_sym___attribute__, + ACTIONS(12976), 1, + anon_sym___attribute, + ACTIONS(13131), 1, + anon_sym_LBRACE, + STATE(7580), 1, + sym_enumerator_list, + STATE(7609), 1, + sym_attribute_specifier, + ACTIONS(7381), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(7383), 27, 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_SEMI, + anon_sym___extension__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6716), 24, + anon_sym_try, + anon_sym_requires, + [277377] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10270), 5, anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, anon_sym___attribute, - anon_sym___based, anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + ACTIONS(10272), 29, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -661703,107 +684565,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [275267] = 21, + [277419] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - ACTIONS(9888), 1, - anon_sym_STAR, - ACTIONS(9890), 1, + ACTIONS(10348), 1, anon_sym_AMP_AMP, - ACTIONS(9892), 1, + ACTIONS(10350), 1, anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8546), 1, - sym__declarator, - STATE(10719), 1, - sym_ms_based_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - [275345] = 16, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11296), 1, + anon_sym_DASH_GT, + ACTIONS(13197), 1, + anon_sym_requires, + STATE(7663), 1, + sym_ref_qualifier, + STATE(8714), 1, + sym__function_attributes_end, + STATE(8715), 1, + sym_trailing_return_type, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13146), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7848), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7791), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [277503] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(11429), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(11431), 1, + ACTIONS(11795), 1, anon_sym_const, - ACTIONS(11826), 1, + ACTIONS(12162), 1, anon_sym_STAR, - ACTIONS(11828), 1, + ACTIONS(12164), 1, anon_sym_AMP_AMP, - ACTIONS(11830), 1, + ACTIONS(12166), 1, anon_sym_AMP, - STATE(4969), 1, + STATE(5222), 1, sym_parameter_list, - STATE(6485), 1, + STATE(6707), 1, sym_alignas_qualifier, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(9031), 1, + STATE(9105), 1, sym__abstract_declarator, - ACTIONS(11433), 2, + ACTIONS(11797), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7445), 2, + STATE(6420), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6999), 3, + ACTIONS(6823), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(11421), 12, + ACTIONS(11785), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -661816,109 +684677,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [275413] = 21, + [277571] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3051), 1, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(12162), 1, anon_sym_STAR, - ACTIONS(3053), 1, + ACTIONS(12164), 1, + anon_sym_AMP_AMP, + ACTIONS(12166), 1, anon_sym_AMP, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8951), 1, - sym__declarator, - STATE(11063), 1, - sym_ms_based_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - [275491] = 21, + STATE(5222), 1, + sym_parameter_list, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(9106), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6420), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7345), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [277639] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(9882), 1, - anon_sym_COLON_COLON, - ACTIONS(9894), 1, + ACTIONS(10218), 1, anon_sym_STAR, - ACTIONS(9896), 1, + ACTIONS(10220), 1, anon_sym_AMP_AMP, - ACTIONS(9898), 1, + ACTIONS(10222), 1, anon_sym_AMP, - STATE(3682), 1, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7870), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8684), 1, + STATE(8530), 1, sym__declarator, - STATE(10563), 1, + STATE(11612), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -661930,32 +684786,32 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [275569] = 8, + [277717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12642), 1, - anon_sym___attribute__, - ACTIONS(12644), 1, - anon_sym___attribute, - ACTIONS(12795), 1, - anon_sym_LBRACE, - STATE(7461), 1, - sym_enumerator_list, - STATE(7509), 1, - sym_attribute_specifier, - ACTIONS(6985), 2, + ACTIONS(10316), 5, anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, - ACTIONS(6987), 27, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10318), 29, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -661969,57 +684825,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [275621] = 21, + [277759] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3051), 1, + ACTIONS(3446), 1, anon_sym_STAR, - ACTIONS(3053), 1, + ACTIONS(3448), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(8360), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7869), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8944), 1, + STATE(9018), 1, sym__declarator, - STATE(11063), 1, + STATE(11554), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -662031,52 +684882,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [275699] = 21, + [277837] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(9876), 1, + ACTIONS(10218), 1, anon_sym_STAR, - ACTIONS(9878), 1, + ACTIONS(10220), 1, anon_sym_AMP_AMP, - ACTIONS(9880), 1, + ACTIONS(10222), 1, anon_sym_AMP, - ACTIONS(9882), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7870), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8267), 1, + STATE(8443), 1, sym__declarator, - STATE(11345), 1, + STATE(11612), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -662088,52 +684939,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [275777] = 21, + [277915] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3051), 1, + ACTIONS(3446), 1, anon_sym_STAR, - ACTIONS(3053), 1, + ACTIONS(3448), 1, anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(8360), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7869), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8925), 1, + STATE(9031), 1, sym__declarator, - STATE(11063), 1, + STATE(11554), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -662145,52 +684996,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [275855] = 21, + [277993] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(9882), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(9894), 1, + ACTIONS(10240), 1, anon_sym_STAR, - ACTIONS(9896), 1, + ACTIONS(10242), 1, anon_sym_AMP_AMP, - ACTIONS(9898), 1, + ACTIONS(10244), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7870), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8738), 1, + STATE(8877), 1, sym__declarator, - STATE(10563), 1, + STATE(10743), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -662202,52 +685053,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [275933] = 21, + [278071] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(8360), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(9888), 1, + ACTIONS(10234), 1, anon_sym_STAR, - ACTIONS(9890), 1, + ACTIONS(10236), 1, anon_sym_AMP_AMP, - ACTIONS(9892), 1, + ACTIONS(10238), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7869), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8560), 1, + STATE(8742), 1, sym__declarator, - STATE(10719), 1, + STATE(10900), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -662259,112 +685110,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [276011] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10810), 1, - anon_sym_DASH_GT, - ACTIONS(10812), 1, - anon_sym_requires, - STATE(7547), 1, - sym_ref_qualifier, - STATE(8586), 1, - sym__function_attributes_end, - STATE(8596), 1, - sym_trailing_return_type, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7721), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7544), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [276095] = 21, + [278149] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(8360), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(9888), 1, + ACTIONS(10240), 1, anon_sym_STAR, - ACTIONS(9890), 1, + ACTIONS(10242), 1, anon_sym_AMP_AMP, - ACTIONS(9892), 1, + ACTIONS(10244), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7869), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8388), 1, + STATE(8831), 1, sym__declarator, - STATE(10719), 1, + STATE(10743), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -662376,109 +685167,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [276173] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10266), 1, - anon_sym_DASH_GT, - ACTIONS(12150), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12170), 1, - anon_sym_requires, - STATE(7926), 1, - sym_trailing_return_type, - STATE(8243), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12167), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8170), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7601), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7544), 7, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [276251] = 21, + [278227] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3446), 1, + anon_sym_STAR, + ACTIONS(3448), 1, + anon_sym_AMP, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(9876), 1, - anon_sym_STAR, - ACTIONS(9878), 1, - anon_sym_AMP_AMP, - ACTIONS(9880), 1, - anon_sym_AMP, - ACTIONS(9882), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7870), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8287), 1, + STATE(9065), 1, sym__declarator, - STATE(11345), 1, + STATE(11554), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -662490,166 +685224,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [276329] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10264), 1, - anon_sym_DASH_GT, - ACTIONS(12150), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12170), 1, - anon_sym_requires, - ACTIONS(12532), 1, - anon_sym___asm, - STATE(7926), 1, - sym_trailing_return_type, - STATE(8012), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(12167), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(12529), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8170), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7586), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7544), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [276407] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10022), 1, - anon_sym_requires, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10264), 1, - anon_sym_DASH_GT, - ACTIONS(12150), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12532), 1, - anon_sym___asm, - STATE(7917), 1, - sym_trailing_return_type, - STATE(8006), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(7821), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(12529), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8170), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7600), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7544), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [276485] = 21, + [278305] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(9882), 1, - anon_sym_COLON_COLON, - ACTIONS(9894), 1, + ACTIONS(10218), 1, anon_sym_STAR, - ACTIONS(9896), 1, + ACTIONS(10220), 1, anon_sym_AMP_AMP, - ACTIONS(9898), 1, + ACTIONS(10222), 1, anon_sym_AMP, - STATE(3682), 1, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7870), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8744), 1, + STATE(8390), 1, sym__declarator, - STATE(10563), 1, + STATE(11612), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -662661,109 +685281,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [276563] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7629), 1, - anon_sym_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10266), 1, - anon_sym_DASH_GT, - ACTIONS(12784), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12790), 1, - anon_sym_requires, - STATE(7927), 1, - sym_trailing_return_type, - STATE(8255), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12787), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8195), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7584), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7627), 7, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [276641] = 21, + [278383] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3446), 1, + anon_sym_STAR, + ACTIONS(3448), 1, + anon_sym_AMP, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(8360), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(9888), 1, - anon_sym_STAR, - ACTIONS(9890), 1, - anon_sym_AMP_AMP, - ACTIONS(9892), 1, - anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7869), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8563), 1, + STATE(9043), 1, sym__declarator, - STATE(10719), 1, + STATE(11554), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -662775,104 +685338,109 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [276719] = 16, + [278461] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(11429), 1, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11826), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10216), 1, + sym_identifier, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + ACTIONS(10240), 1, anon_sym_STAR, - ACTIONS(11828), 1, + ACTIONS(10242), 1, anon_sym_AMP_AMP, - ACTIONS(11830), 1, + ACTIONS(10244), 1, anon_sym_AMP, - STATE(4969), 1, - sym_parameter_list, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(9021), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7396), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6991), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [276787] = 21, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7986), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8873), 1, + sym__declarator, + STATE(10743), 1, + sym_ms_based_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8555), 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, + [278539] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(9912), 1, + ACTIONS(10234), 1, anon_sym_STAR, - ACTIONS(9914), 1, + ACTIONS(10236), 1, anon_sym_AMP_AMP, - ACTIONS(9916), 1, + ACTIONS(10238), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7878), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8684), 1, + STATE(8755), 1, sym__declarator, - STATE(10776), 1, + STATE(10900), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -662884,52 +685452,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [276865] = 21, + [278617] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(9876), 1, + ACTIONS(8675), 1, + anon_sym_COLON_COLON, + ACTIONS(10234), 1, anon_sym_STAR, - ACTIONS(9878), 1, + ACTIONS(10236), 1, anon_sym_AMP_AMP, - ACTIONS(9880), 1, + ACTIONS(10238), 1, anon_sym_AMP, - ACTIONS(9882), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7870), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8303), 1, + STATE(8530), 1, sym__declarator, - STATE(11345), 1, + STATE(10900), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -662941,52 +685509,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [276943] = 21, + [278695] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(9882), 1, - anon_sym_COLON_COLON, - ACTIONS(9894), 1, + ACTIONS(10218), 1, anon_sym_STAR, - ACTIONS(9896), 1, + ACTIONS(10220), 1, anon_sym_AMP_AMP, - ACTIONS(9898), 1, + ACTIONS(10222), 1, anon_sym_AMP, - STATE(3682), 1, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7870), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8807), 1, + STATE(8442), 1, sym__declarator, - STATE(10563), 1, + STATE(11612), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -662998,52 +685566,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [277021] = 21, + [278773] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3051), 1, - anon_sym_STAR, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(8360), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + ACTIONS(10240), 1, + anon_sym_STAR, + ACTIONS(10242), 1, + anon_sym_AMP_AMP, + ACTIONS(10244), 1, + anon_sym_AMP, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7869), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8684), 1, + STATE(8921), 1, sym__declarator, - STATE(11063), 1, + STATE(10743), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -663055,109 +685623,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [277099] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7629), 1, - anon_sym_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10264), 1, - anon_sym_DASH_GT, - ACTIONS(12784), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12790), 1, - anon_sym_requires, - ACTIONS(12830), 1, - anon_sym___asm, - STATE(7927), 1, - sym_trailing_return_type, - STATE(8013), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(12787), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(12827), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8195), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7590), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7627), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [277177] = 21, + [278851] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(8203), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(9900), 1, + ACTIONS(10234), 1, anon_sym_STAR, - ACTIONS(9902), 1, + ACTIONS(10236), 1, anon_sym_AMP_AMP, - ACTIONS(9904), 1, + ACTIONS(10238), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7878), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8689), 1, + STATE(8739), 1, sym__declarator, - STATE(10656), 1, + STATE(10900), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -663169,52 +685680,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [277255] = 21, + [278929] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3051), 1, - anon_sym_STAR, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(8360), 1, + ACTIONS(10218), 1, + anon_sym_STAR, + ACTIONS(10220), 1, + anon_sym_AMP_AMP, + ACTIONS(10222), 1, + anon_sym_AMP, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7869), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8935), 1, + STATE(8439), 1, sym__declarator, - STATE(11063), 1, + STATE(11612), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -663226,52 +685737,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [277333] = 21, + [279007] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(9876), 1, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + ACTIONS(10240), 1, anon_sym_STAR, - ACTIONS(9878), 1, + ACTIONS(10242), 1, anon_sym_AMP_AMP, - ACTIONS(9880), 1, + ACTIONS(10244), 1, anon_sym_AMP, - ACTIONS(9882), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7870), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8298), 1, + STATE(8929), 1, sym__declarator, - STATE(11345), 1, + STATE(10743), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -663283,52 +685794,104 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [277411] = 21, + [279085] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11795), 1, + anon_sym_const, + ACTIONS(12162), 1, + anon_sym_STAR, + ACTIONS(12164), 1, anon_sym_AMP_AMP, + ACTIONS(12166), 1, + anon_sym_AMP, + STATE(5222), 1, + sym_parameter_list, + STATE(6707), 1, + sym_alignas_qualifier, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(9083), 1, + sym__abstract_declarator, + ACTIONS(11797), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6420), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7355), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11785), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [279153] = 21, + ACTIONS(3), 1, + sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3051), 1, - anon_sym_STAR, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, + ACTIONS(8546), 1, sym_identifier, - ACTIONS(8360), 1, + ACTIONS(8554), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + ACTIONS(10246), 1, + anon_sym_STAR, + ACTIONS(10248), 1, + anon_sym_AMP_AMP, + ACTIONS(10250), 1, + anon_sym_AMP, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7869), 1, + STATE(7990), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8893), 1, + STATE(8788), 1, sym__declarator, - STATE(11063), 1, + STATE(10837), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -663340,52 +685903,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [277489] = 21, + [279231] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(9882), 1, - anon_sym_COLON_COLON, - ACTIONS(9894), 1, + ACTIONS(10218), 1, anon_sym_STAR, - ACTIONS(9896), 1, + ACTIONS(10220), 1, anon_sym_AMP_AMP, - ACTIONS(9898), 1, + ACTIONS(10222), 1, anon_sym_AMP, - STATE(3682), 1, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7870), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8802), 1, + STATE(8409), 1, sym__declarator, - STATE(10563), 1, + STATE(11612), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -663397,52 +685960,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [277567] = 21, + [279309] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(10216), 1, sym_identifier, - ACTIONS(9882), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(9894), 1, + ACTIONS(10240), 1, anon_sym_STAR, - ACTIONS(9896), 1, + ACTIONS(10242), 1, anon_sym_AMP_AMP, - ACTIONS(9898), 1, + ACTIONS(10244), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7870), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8751), 1, + STATE(8889), 1, sym__declarator, - STATE(10563), 1, + STATE(10743), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -663454,52 +686017,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [277645] = 21, + [279387] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(9876), 1, + ACTIONS(8675), 1, + anon_sym_COLON_COLON, + ACTIONS(10252), 1, anon_sym_STAR, - ACTIONS(9878), 1, + ACTIONS(10254), 1, anon_sym_AMP_AMP, - ACTIONS(9880), 1, + ACTIONS(10256), 1, anon_sym_AMP, - ACTIONS(9882), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7870), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8273), 1, + STATE(8788), 1, sym__declarator, - STATE(11345), 1, + STATE(11008), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -663511,52 +686074,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [277723] = 21, + [279465] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3446), 1, + anon_sym_STAR, + ACTIONS(3448), 1, + anon_sym_AMP, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(8360), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(9906), 1, - anon_sym_STAR, - ACTIONS(9908), 1, - anon_sym_AMP_AMP, - ACTIONS(9910), 1, - anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7869), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8689), 1, + STATE(9013), 1, sym__declarator, - STATE(10827), 1, + STATE(11554), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -663568,56 +686131,56 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [277801] = 21, + [279543] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7629), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10022), 1, - anon_sym_requires, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10266), 1, + ACTIONS(10624), 1, anon_sym_DASH_GT, - ACTIONS(12784), 1, + ACTIONS(12412), 1, anon_sym_LBRACK_LBRACK, - STATE(7938), 1, + ACTIONS(12418), 1, + anon_sym_requires, + STATE(8013), 1, sym_trailing_return_type, - STATE(8256), 1, + STATE(8410), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7821), 2, + ACTIONS(12415), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8195), 2, + STATE(8313), 2, sym__function_postfix, sym_requires_clause, - STATE(7615), 3, + STATE(7702), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7627), 7, + ACTIONS(7791), 7, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, @@ -663625,348 +686188,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [277879] = 21, + [279621] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7968), 1, anon_sym_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10022), 1, - anon_sym_requires, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10264), 1, + ACTIONS(10624), 1, anon_sym_DASH_GT, - ACTIONS(12784), 1, + ACTIONS(13114), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12830), 1, - anon_sym___asm, - STATE(7938), 1, + ACTIONS(13161), 1, + anon_sym_requires, + STATE(8035), 1, sym_trailing_return_type, - STATE(8007), 1, + STATE(8429), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(7821), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(12827), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - STATE(7838), 2, + ACTIONS(13158), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8195), 2, + STATE(8358), 2, sym__function_postfix, sym_requires_clause, - STATE(7604), 3, + STATE(7705), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7627), 7, - anon_sym_COMMA, + ACTIONS(7966), 7, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [277957] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12642), 1, - anon_sym___attribute__, - ACTIONS(12644), 1, - anon_sym___attribute, - ACTIONS(12795), 1, - anon_sym_LBRACE, - STATE(7479), 1, - sym_enumerator_list, - STATE(7498), 1, - sym_attribute_specifier, - ACTIONS(7011), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7013), 27, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [278009] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10810), 1, - anon_sym_DASH_GT, - ACTIONS(12833), 1, - anon_sym_requires, - STATE(7545), 1, - sym_ref_qualifier, - STATE(8567), 1, - sym__function_attributes_end, - STATE(8568), 1, - sym_trailing_return_type, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12744), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7715), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7544), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [278093] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9924), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(9926), 29, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - [278135] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2758), 10, - 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, - anon_sym_LBRACK_COLON, - ACTIONS(2768), 24, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [278177] = 21, + [279699] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3051), 1, - anon_sym_STAR, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(8360), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8941), 1, - sym__declarator, - STATE(11063), 1, - sym_ms_based_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - [278255] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, - sym_identifier, - ACTIONS(9876), 1, + ACTIONS(10234), 1, anon_sym_STAR, - ACTIONS(9878), 1, + ACTIONS(10236), 1, anon_sym_AMP_AMP, - ACTIONS(9880), 1, + ACTIONS(10238), 1, anon_sym_AMP, - ACTIONS(9882), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7870), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8250), 1, + STATE(8701), 1, sym__declarator, - STATE(11345), 1, + STATE(10900), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -663978,52 +686302,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278333] = 21, + [279777] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3047), 1, + ACTIONS(3442), 1, anon_sym_LPAREN2, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3065), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(8360), 1, + ACTIONS(8675), 1, anon_sym_COLON_COLON, - ACTIONS(9888), 1, + ACTIONS(10234), 1, anon_sym_STAR, - ACTIONS(9890), 1, + ACTIONS(10236), 1, anon_sym_AMP_AMP, - ACTIONS(9892), 1, + ACTIONS(10238), 1, anon_sym_AMP, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7869), 1, + STATE(7993), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8643), 1, + STATE(8694), 1, sym__declarator, - STATE(10719), 1, + STATE(10900), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8469), 11, + STATE(8555), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -664035,98 +686359,45 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278411] = 16, + [279855] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, + ACTIONS(8123), 1, anon_sym_const, - ACTIONS(11826), 1, - anon_sym_STAR, - ACTIONS(11828), 1, - anon_sym_AMP_AMP, - ACTIONS(11830), 1, - anon_sym_AMP, - STATE(4969), 1, - sym_parameter_list, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8968), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6497), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(11421), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [278479] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(11429), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(11431), 1, - anon_sym_const, - ACTIONS(11826), 1, + ACTIONS(12261), 1, anon_sym_STAR, - ACTIONS(11828), 1, + ACTIONS(12263), 1, anon_sym_AMP_AMP, - ACTIONS(11830), 1, + ACTIONS(12265), 1, anon_sym_AMP, - STATE(4969), 1, - sym_parameter_list, - STATE(6485), 1, + STATE(2726), 1, sym_alignas_qualifier, - STATE(8393), 1, + STATE(5697), 1, + sym_parameter_list, + STATE(8598), 1, sym__function_declarator_seq, - STATE(8970), 1, + STATE(9251), 1, sym__abstract_declarator, - ACTIONS(11433), 2, + ACTIONS(7343), 2, + anon_sym_LBRACE, + anon_sym_requires, + ACTIONS(8125), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6280), 2, + STATE(7600), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7007), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(11421), 12, + ACTIONS(8117), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -664139,218 +686410,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [278547] = 21, + [279922] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10022), 1, - anon_sym_requires, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10266), 1, - anon_sym_DASH_GT, - ACTIONS(12150), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - STATE(7917), 1, - sym_trailing_return_type, - STATE(8300), 1, + ACTIONS(10819), 1, + anon_sym_DASH_GT, + ACTIONS(10861), 1, + anon_sym_requires, + STATE(8583), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(8585), 1, + sym_trailing_return_type, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7821), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8170), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - STATE(7597), 3, + STATE(7738), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7544), 7, + ACTIONS(7791), 6, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [278625] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - ACTIONS(9888), 1, - anon_sym_STAR, - ACTIONS(9890), 1, - anon_sym_AMP_AMP, - ACTIONS(9892), 1, - anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8595), 1, - sym__declarator, - STATE(10719), 1, - sym_ms_based_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - [278703] = 21, + [279999] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - ACTIONS(9888), 1, - anon_sym_STAR, - ACTIONS(9890), 1, - anon_sym_AMP_AMP, - ACTIONS(9892), 1, + ACTIONS(12974), 1, + anon_sym___attribute__, + ACTIONS(12976), 1, + anon_sym___attribute, + STATE(7632), 1, + sym_attribute_specifier, + ACTIONS(7397), 2, anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8602), 1, - sym__declarator, - STATE(10719), 1, - sym_ms_based_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - [278781] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11431), 1, anon_sym_const, - ACTIONS(11826), 1, + ACTIONS(7399), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(11828), 1, anon_sym_AMP_AMP, - ACTIONS(11830), 1, - anon_sym_AMP, - STATE(4969), 1, - sym_parameter_list, - STATE(6485), 1, - sym_alignas_qualifier, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(9027), 1, - sym__abstract_declarator, - ACTIONS(11433), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6280), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7003), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(11421), 12, + anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -664362,89 +686500,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [278849] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(9874), 1, - sym_identifier, - ACTIONS(9876), 1, - anon_sym_STAR, - ACTIONS(9878), 1, - anon_sym_AMP_AMP, - ACTIONS(9880), 1, - anon_sym_AMP, - ACTIONS(9882), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7870), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8388), 1, - sym__declarator, - STATE(11345), 1, - sym_ms_based_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - [278927] = 3, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [280046] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9975), 5, - anon_sym_AMP, + ACTIONS(12974), 1, + anon_sym___attribute__, + ACTIONS(12976), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, + STATE(7633), 1, + sym_attribute_specifier, + ACTIONS(7505), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(9977), 29, + ACTIONS(7507), 28, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -664458,276 +686543,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - [278969] = 21, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [280093] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8195), 1, - sym_identifier, - ACTIONS(8203), 1, - anon_sym_COLON_COLON, - ACTIONS(9818), 1, - anon_sym_STAR, - ACTIONS(9820), 1, - anon_sym_AMP_AMP, - ACTIONS(9822), 1, + ACTIONS(12974), 1, + anon_sym___attribute__, + ACTIONS(12976), 1, + anon_sym___attribute, + STATE(7608), 1, + sym_attribute_specifier, + ACTIONS(7423), 2, anon_sym_AMP, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7878), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8388), 1, - sym__declarator, - STATE(11190), 1, - sym_ms_based_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - [279047] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, + anon_sym_const, + ACTIONS(7425), 28, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3051), 1, anon_sym_STAR, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3065), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8914), 1, - sym__declarator, - STATE(11063), 1, - sym_ms_based_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - [279125] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3047), 1, - anon_sym_LPAREN2, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3051), 1, - anon_sym_STAR, - ACTIONS(3053), 1, - anon_sym_AMP, - ACTIONS(3065), 1, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7868), 1, - sym_identifier, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7869), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8913), 1, - sym__declarator, - STATE(11063), 1, - sym_ms_based_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8469), 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, - [279203] = 24, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [280140] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(9997), 1, + ACTIONS(10348), 1, anon_sym_AMP_AMP, - ACTIONS(9999), 1, + ACTIONS(10350), 1, anon_sym_AMP, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10812), 1, - anon_sym_requires, - ACTIONS(11140), 1, + ACTIONS(11518), 1, anon_sym_DASH_GT, - ACTIONS(12144), 1, + ACTIONS(12406), 1, anon_sym___attribute__, - ACTIONS(12147), 1, + ACTIONS(12409), 1, anon_sym___attribute, - STATE(7580), 1, + ACTIONS(13149), 1, + anon_sym_requires, + STATE(7680), 1, sym_ref_qualifier, - STATE(8484), 1, - sym__function_attributes_end, - STATE(8596), 1, + STATE(8511), 1, sym_trailing_return_type, - STATE(8982), 1, + STATE(8640), 1, + sym__function_attributes_end, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10476), 2, + ACTIONS(13146), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 3, + ACTIONS(7791), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - STATE(7855), 3, + STATE(7969), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [279286] = 16, + [280223] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(7784), 1, + ACTIONS(12974), 1, + anon_sym___attribute__, + ACTIONS(12976), 1, + anon_sym___attribute, + STATE(7611), 1, + sym_attribute_specifier, + ACTIONS(7431), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11902), 1, + ACTIONS(7433), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(11904), 1, anon_sym_AMP_AMP, - ACTIONS(11906), 1, - anon_sym_AMP, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(5441), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(9137), 1, - sym__abstract_declarator, - ACTIONS(7007), 2, + anon_sym_SEMI, + anon_sym___extension__, anon_sym_LBRACE, - anon_sym_requires, - ACTIONS(7786), 2, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - STATE(2399), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7778), 12, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [280270] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12974), 1, + anon_sym___attribute__, + ACTIONS(12976), 1, + anon_sym___attribute, + STATE(7612), 1, + sym_attribute_specifier, + ACTIONS(7435), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(7437), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -664739,19 +686723,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [279353] = 6, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [280317] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12642), 1, + ACTIONS(12974), 1, anon_sym___attribute__, - ACTIONS(12644), 1, + ACTIONS(12976), 1, anon_sym___attribute, - STATE(7517), 1, + STATE(7613), 1, sym_attribute_specifier, - ACTIONS(7065), 2, + ACTIONS(7453), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(7067), 28, + ACTIONS(7455), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -664780,21 +686771,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [279400] = 6, + [280364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(11895), 1, - anon_sym_LT, - STATE(2824), 1, - sym_template_argument_list, - ACTIONS(7031), 4, + ACTIONS(7473), 3, anon_sym_AMP, anon_sym___attribute, - anon_sym_COLON, anon_sym_const, - ACTIONS(5272), 26, + ACTIONS(7475), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -664803,8 +686787,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -664820,79 +686806,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [279447] = 24, + [280405] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(7968), 1, anon_sym_LBRACK, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11140), 1, - anon_sym_DASH_GT, - ACTIONS(12144), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(12147), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(12833), 1, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10819), 1, + anon_sym_DASH_GT, + ACTIONS(10861), 1, anon_sym_requires, - STATE(7553), 1, - sym_ref_qualifier, - STATE(8490), 1, + STATE(8559), 1, sym__function_attributes_end, - STATE(8568), 1, + STATE(8565), 1, sym_trailing_return_type, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(12744), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8561), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 3, + STATE(7735), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7966), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [280482] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(8123), 1, + anon_sym_const, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(12261), 1, + anon_sym_STAR, + ACTIONS(12263), 1, + anon_sym_AMP_AMP, + ACTIONS(12265), 1, + anon_sym_AMP, + STATE(2726), 1, + sym_alignas_qualifier, + STATE(5697), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(9250), 1, + sym__abstract_declarator, + ACTIONS(7351), 2, + anon_sym_LBRACE, + anon_sym_requires, + ACTIONS(8125), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2488), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8117), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [280549] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12974), 1, + anon_sym___attribute__, + ACTIONS(12976), 1, + anon_sym___attribute, + STATE(7619), 1, + sym_attribute_specifier, + ACTIONS(7521), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(7523), 28, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - STATE(7828), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [279530] = 6, + anon_sym_try, + anon_sym_requires, + [280596] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12642), 1, + ACTIONS(12974), 1, anon_sym___attribute__, - ACTIONS(12644), 1, + ACTIONS(12976), 1, anon_sym___attribute, - STATE(7537), 1, + STATE(7620), 1, sym_attribute_specifier, - ACTIONS(7091), 2, + ACTIONS(7531), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(7093), 28, + ACTIONS(7533), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -664921,27 +686998,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [279577] = 10, + [280643] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8907), 1, + ACTIONS(9244), 1, anon_sym___attribute, - ACTIONS(9025), 1, + ACTIONS(9312), 1, anon_sym___attribute__, - ACTIONS(9162), 1, + ACTIONS(9576), 1, anon_sym_LBRACE, - ACTIONS(12836), 1, + ACTIONS(13200), 1, anon_sym_COLON, - STATE(3021), 1, + STATE(3105), 1, sym_attribute_specifier, - STATE(3671), 1, + STATE(3767), 1, sym__enum_base_clause, - STATE(3793), 1, + STATE(3946), 1, sym_enumerator_list, - ACTIONS(7651), 2, + ACTIONS(8000), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(7653), 24, + ACTIONS(8002), 24, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -664966,172 +687043,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [279632] = 21, + [280698] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(7968), 1, anon_sym_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10437), 1, + ACTIONS(10819), 1, anon_sym_DASH_GT, - ACTIONS(10478), 1, + ACTIONS(13205), 1, anon_sym_requires, - STATE(8454), 1, + STATE(8512), 1, sym__function_attributes_end, - STATE(8456), 1, + STATE(8513), 1, sym_trailing_return_type, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10476), 2, + ACTIONS(13202), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8561), 2, sym__function_postfix, sym_requires_clause, - STATE(7616), 3, + STATE(7734), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7544), 6, + ACTIONS(7966), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [279709] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12838), 1, - sym_identifier, - ACTIONS(12844), 1, - sym_primitive_type, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(7556), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9322), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7475), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6812), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(6814), 4, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - ACTIONS(12841), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9317), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [279766] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(7784), 1, - anon_sym_const, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11902), 1, - anon_sym_STAR, - ACTIONS(11904), 1, - anon_sym_AMP_AMP, - ACTIONS(11906), 1, - anon_sym_AMP, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(5441), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(9139), 1, - sym__abstract_declarator, - ACTIONS(6995), 2, - anon_sym_LBRACE, - anon_sym_requires, - ACTIONS(7786), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2399), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7778), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [279833] = 6, + [280775] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12642), 1, + ACTIONS(12974), 1, anon_sym___attribute__, - ACTIONS(12644), 1, + ACTIONS(12976), 1, anon_sym___attribute, - STATE(7515), 1, + STATE(7627), 1, sym_attribute_specifier, - ACTIONS(7095), 2, + ACTIONS(7427), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(7097), 28, + ACTIONS(7429), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -665160,45 +687140,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [279880] = 16, + [280822] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(7784), 1, + ACTIONS(8123), 1, anon_sym_const, - ACTIONS(11429), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(11902), 1, + ACTIONS(12261), 1, anon_sym_STAR, - ACTIONS(11904), 1, + ACTIONS(12263), 1, anon_sym_AMP_AMP, - ACTIONS(11906), 1, + ACTIONS(12265), 1, anon_sym_AMP, - STATE(2592), 1, + STATE(2726), 1, sym_alignas_qualifier, - STATE(5441), 1, + STATE(5697), 1, sym_parameter_list, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(9140), 1, + STATE(9224), 1, sym__abstract_declarator, - ACTIONS(6999), 2, + ACTIONS(7345), 2, anon_sym_LBRACE, anon_sym_requires, - ACTIONS(7786), 2, + ACTIONS(8125), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7466), 2, + STATE(2488), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7778), 12, + ACTIONS(8117), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -665211,29 +687191,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [279947] = 6, + [280889] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12642), 1, + ACTIONS(9961), 1, anon_sym___attribute__, - ACTIONS(12644), 1, + ACTIONS(9963), 1, anon_sym___attribute, - STATE(7503), 1, + ACTIONS(10114), 1, + anon_sym_LBRACE, + ACTIONS(13208), 1, + anon_sym_COLON, + STATE(4316), 1, + sym__enum_base_clause, + STATE(4370), 1, + sym_enumerator_list, + STATE(4517), 1, sym_attribute_specifier, - ACTIONS(7087), 2, + ACTIONS(8000), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(7089), 28, + ACTIONS(8002), 24, + 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___extension__, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -665250,94 +687235,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [279994] = 24, + [280944] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(9997), 1, + ACTIONS(10348), 1, anon_sym_AMP_AMP, - ACTIONS(9999), 1, + ACTIONS(10350), 1, anon_sym_AMP, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11171), 1, + ACTIONS(10861), 1, + anon_sym_requires, + ACTIONS(11518), 1, anon_sym_DASH_GT, - ACTIONS(12144), 1, + ACTIONS(12406), 1, anon_sym___attribute__, - ACTIONS(12147), 1, + ACTIONS(12409), 1, anon_sym___attribute, - ACTIONS(12747), 1, - anon_sym_requires, - STATE(7560), 1, + STATE(7673), 1, sym_ref_qualifier, - STATE(8438), 1, + STATE(8585), 1, sym_trailing_return_type, - STATE(8502), 1, + STATE(8604), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(12744), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 3, + ACTIONS(7791), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(7809), 3, + STATE(7933), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [280077] = 10, + [281027] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9592), 1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10348), 1, + anon_sym_AMP_AMP, + ACTIONS(10350), 1, + anon_sym_AMP, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11298), 1, + anon_sym_requires, + ACTIONS(11516), 1, + anon_sym_DASH_GT, + ACTIONS(12406), 1, anon_sym___attribute__, - ACTIONS(9594), 1, + ACTIONS(12409), 1, anon_sym___attribute, - ACTIONS(9806), 1, - anon_sym_LBRACE, - ACTIONS(12847), 1, - anon_sym_COLON, - STATE(4204), 1, - sym__enum_base_clause, - STATE(4254), 1, - sym_enumerator_list, - STATE(4375), 1, + STATE(7698), 1, + sym_ref_qualifier, + STATE(8667), 1, + sym__function_attributes_end, + STATE(8718), 1, + sym_trailing_return_type, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, sym_attribute_specifier, - ACTIONS(7600), 2, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + STATE(7968), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [281110] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(12277), 1, + anon_sym_LT, + STATE(2938), 1, + sym_template_argument_list, + ACTIONS(7371), 4, anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - ACTIONS(7602), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(5657), 26, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, @@ -665354,80 +687394,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [280132] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(7784), 1, - anon_sym_const, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11902), 1, - anon_sym_STAR, - ACTIONS(11904), 1, - anon_sym_AMP_AMP, - ACTIONS(11906), 1, - anon_sym_AMP, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(5441), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(9059), 1, - sym__abstract_declarator, - ACTIONS(7003), 2, - anon_sym_LBRACE, anon_sym_requires, - ACTIONS(7786), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2399), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7778), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [280199] = 9, + [281157] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9162), 1, + ACTIONS(9576), 1, anon_sym_LBRACE, - ACTIONS(12849), 1, + ACTIONS(13210), 1, anon_sym_COLON, - STATE(3021), 1, + STATE(3105), 1, sym_attribute_specifier, - STATE(7544), 1, + STATE(7659), 1, sym__enum_base_clause, - STATE(7614), 1, + STATE(7711), 1, sym_enumerator_list, ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7653), 3, + ACTIONS(8002), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7651), 23, + ACTIONS(8000), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___based, @@ -665451,19 +687439,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [280252] = 6, + [281210] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12642), 1, - anon_sym___attribute__, - ACTIONS(12644), 1, + ACTIONS(9244), 1, anon_sym___attribute, - STATE(7520), 1, + ACTIONS(9312), 1, + anon_sym___attribute__, + ACTIONS(9576), 1, + anon_sym_LBRACE, + ACTIONS(13200), 1, + anon_sym_COLON, + STATE(3191), 1, sym_attribute_specifier, - ACTIONS(7099), 2, + STATE(3796), 1, + sym__enum_base_clause, + STATE(3832), 1, + sym_enumerator_list, + ACTIONS(8006), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(7101), 28, + ACTIONS(8008), 24, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -665471,9 +687467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -665489,22 +687483,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [280299] = 6, + [281265] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12642), 1, - anon_sym___attribute__, - ACTIONS(12644), 1, - anon_sym___attribute, - STATE(7508), 1, - sym_attribute_specifier, - ACTIONS(7057), 2, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(7223), 3, anon_sym_AMP, + anon_sym___attribute, anon_sym_const, - ACTIONS(7059), 28, + ACTIONS(7225), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -665512,6 +687501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -665533,29 +687523,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [280346] = 6, + [281308] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12642), 1, - anon_sym___attribute__, - ACTIONS(12644), 1, - anon_sym___attribute, - STATE(7499), 1, - sym_attribute_specifier, - ACTIONS(7133), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7135), 28, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6461), 1, anon_sym_LPAREN2, + ACTIONS(8123), 1, + anon_sym_const, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(12261), 1, anon_sym_STAR, + ACTIONS(12263), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + ACTIONS(12265), 1, + anon_sym_AMP, + STATE(2726), 1, + sym_alignas_qualifier, + STATE(5697), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(9184), 1, + sym__abstract_declarator, + ACTIONS(7391), 2, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_requires, + ACTIONS(8125), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7579), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8117), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -665567,26 +687574,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [280393] = 6, + [281375] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12642), 1, + ACTIONS(12974), 1, anon_sym___attribute__, - ACTIONS(12644), 1, + ACTIONS(12976), 1, anon_sym___attribute, - STATE(7501), 1, + STATE(7629), 1, sym_attribute_specifier, - ACTIONS(7053), 2, + ACTIONS(7547), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(7055), 28, + ACTIONS(7549), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -665615,19 +687615,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [280440] = 6, + [281422] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12642), 1, + ACTIONS(12974), 1, anon_sym___attribute__, - ACTIONS(12644), 1, + ACTIONS(12976), 1, anon_sym___attribute, - STATE(7519), 1, + STATE(7624), 1, sym_attribute_specifier, - ACTIONS(7187), 2, + ACTIONS(7551), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(7189), 28, + ACTIONS(7553), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -665656,74 +687656,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [280487] = 6, + [281469] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(12642), 1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10348), 1, + anon_sym_AMP_AMP, + ACTIONS(10350), 1, + anon_sym_AMP, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11516), 1, + anon_sym_DASH_GT, + ACTIONS(12406), 1, anon_sym___attribute__, - ACTIONS(12644), 1, + ACTIONS(12409), 1, anon_sym___attribute, - STATE(7531), 1, + ACTIONS(13197), 1, + anon_sym_requires, + STATE(7675), 1, + sym_ref_qualifier, + STATE(8643), 1, + sym__function_attributes_end, + STATE(8715), 1, + sym_trailing_return_type, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13146), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, sym_attribute_specifier, - ACTIONS(7103), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7105), 28, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [280534] = 11, + STATE(7938), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [281552] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(5655), 1, anon_sym_COLON_COLON, - ACTIONS(11895), 1, + ACTIONS(12277), 1, anon_sym_LT, - ACTIONS(12853), 1, + ACTIONS(13214), 1, sym_auto, - ACTIONS(12855), 1, + ACTIONS(13216), 1, anon_sym_decltype, - STATE(3014), 1, + STATE(3203), 1, sym_decltype_auto, - STATE(3601), 1, + STATE(3735), 1, sym_template_argument_list, - STATE(7567), 1, + STATE(7686), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5258), 3, + ACTIONS(5643), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(12851), 4, + ACTIONS(13212), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5251), 19, + ACTIONS(5636), 19, anon_sym_AMP, anon_sym___extension__, anon_sym___based, @@ -665743,128 +687761,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [280591] = 11, + [281609] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12857), 1, - sym_identifier, - ACTIONS(12863), 1, - sym_primitive_type, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(7551), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9335), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6884), 4, + ACTIONS(6461), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(6886), 4, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - ACTIONS(12860), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9330), 13, - anon_sym___extension__, + ACTIONS(8123), 1, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [280648] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7629), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10437), 1, - anon_sym_DASH_GT, - ACTIONS(12869), 1, - anon_sym_requires, - STATE(8440), 1, - sym__function_attributes_end, - STATE(8441), 1, - sym_trailing_return_type, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12866), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7619), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7627), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - [280725] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7107), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7109), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(12261), 1, anon_sym_STAR, + ACTIONS(12263), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, + ACTIONS(12265), 1, + anon_sym_AMP, + STATE(2726), 1, + sym_alignas_qualifier, + STATE(5697), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(9200), 1, + sym__abstract_declarator, + ACTIONS(6823), 2, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_requires, + ACTIONS(8125), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2488), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8117), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -665876,82 +687812,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [280766] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10437), 1, - anon_sym_DASH_GT, - ACTIONS(12747), 1, - anon_sym_requires, - STATE(8437), 1, - sym__function_attributes_end, - STATE(8438), 1, - sym_trailing_return_type, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12744), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7618), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7544), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - [280843] = 6, + [281676] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12642), 1, + ACTIONS(12974), 1, anon_sym___attribute__, - ACTIONS(12644), 1, + ACTIONS(12976), 1, anon_sym___attribute, - STATE(7495), 1, + STATE(7618), 1, sym_attribute_specifier, - ACTIONS(7123), 2, + ACTIONS(7413), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(7125), 28, + ACTIONS(7415), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -665980,45 +687853,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [280890] = 16, + [281723] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(7784), 1, + ACTIONS(8123), 1, anon_sym_const, - ACTIONS(11429), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(11902), 1, + ACTIONS(12261), 1, anon_sym_STAR, - ACTIONS(11904), 1, + ACTIONS(12263), 1, anon_sym_AMP_AMP, - ACTIONS(11906), 1, + ACTIONS(12265), 1, anon_sym_AMP, - STATE(2592), 1, + STATE(2726), 1, sym_alignas_qualifier, - STATE(5441), 1, + STATE(5697), 1, sym_parameter_list, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(9057), 1, + STATE(9269), 1, sym__abstract_declarator, - ACTIONS(6991), 2, + ACTIONS(7355), 2, anon_sym_LBRACE, anon_sym_requires, - ACTIONS(7786), 2, + ACTIONS(8125), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7460), 2, + STATE(2488), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7778), 12, + ACTIONS(8117), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -666031,29 +687904,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [280957] = 6, + [281790] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12642), 1, + ACTIONS(9961), 1, anon_sym___attribute__, - ACTIONS(12644), 1, + ACTIONS(9963), 1, anon_sym___attribute, - STATE(7538), 1, + ACTIONS(10114), 1, + anon_sym_LBRACE, + ACTIONS(13208), 1, + anon_sym_COLON, + STATE(4291), 1, + sym__enum_base_clause, + STATE(4328), 1, + sym_enumerator_list, + STATE(4429), 1, sym_attribute_specifier, - ACTIONS(7061), 2, + ACTIONS(8006), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(7063), 28, + ACTIONS(8008), 24, + 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___extension__, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -666070,36 +687948,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [281004] = 9, + [281845] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9162), 1, - anon_sym_LBRACE, - ACTIONS(12849), 1, - anon_sym_COLON, - STATE(3078), 1, - sym_attribute_specifier, - STATE(7539), 1, - sym__enum_base_clause, - STATE(7609), 1, - sym_enumerator_list, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7602), 3, + ACTIONS(13218), 1, + sym_identifier, + ACTIONS(13224), 1, + sym_primitive_type, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(7676), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9618), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7205), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7600), 23, + anon_sym_LBRACE, + ACTIONS(7207), 4, anon_sym_AMP, - anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___based, + ACTIONS(13221), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(9613), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -666112,136 +687995,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [281057] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(9997), 1, - anon_sym_AMP_AMP, - ACTIONS(9999), 1, - anon_sym_AMP, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10478), 1, - anon_sym_requires, - ACTIONS(11171), 1, - anon_sym_DASH_GT, - ACTIONS(12144), 1, - anon_sym___attribute__, - ACTIONS(12147), 1, - anon_sym___attribute, - STATE(7571), 1, - sym_ref_qualifier, - STATE(8456), 1, - sym_trailing_return_type, - STATE(8543), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(7805), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [281140] = 4, + [281902] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, + ACTIONS(5655), 1, anon_sym_COLON_COLON, - ACTIONS(6798), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(6800), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10005), 1, + anon_sym_LT, + STATE(3735), 1, + sym_template_argument_list, + STATE(7686), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7359), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [281183] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9592), 1, + ACTIONS(7357), 25, + anon_sym_AMP, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(9594), 1, anon_sym___attribute, - ACTIONS(9806), 1, - anon_sym_LBRACE, - ACTIONS(12847), 1, - anon_sym_COLON, - STATE(4180), 1, - sym__enum_base_clause, - STATE(4251), 1, - sym_enumerator_list, - STATE(4323), 1, - sym_attribute_specifier, - ACTIONS(7651), 2, - anon_sym_AMP, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, - ACTIONS(7653), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -666255,146 +688035,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [281238] = 21, + sym_primitive_type, + sym_identifier, + [281951] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7629), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10437), 1, + ACTIONS(10819), 1, anon_sym_DASH_GT, - ACTIONS(10478), 1, + ACTIONS(13149), 1, anon_sym_requires, - STATE(8390), 1, + STATE(8510), 1, sym__function_attributes_end, - STATE(8392), 1, + STATE(8511), 1, sym_trailing_return_type, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10476), 2, + ACTIONS(13146), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8391), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - STATE(7617), 3, + STATE(7733), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7627), 6, + ACTIONS(7791), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [281315] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(7784), 1, - anon_sym_const, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11902), 1, - anon_sym_STAR, - ACTIONS(11904), 1, - anon_sym_AMP_AMP, - ACTIONS(11906), 1, - anon_sym_AMP, - STATE(2592), 1, - sym_alignas_qualifier, - STATE(5441), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(9075), 1, - sym__abstract_declarator, - ACTIONS(6497), 2, - anon_sym_LBRACE, - anon_sym_requires, - ACTIONS(7786), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2399), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7778), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [281382] = 10, + [282028] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8907), 1, - anon_sym___attribute, - ACTIONS(9025), 1, - anon_sym___attribute__, - ACTIONS(9162), 1, + ACTIONS(9576), 1, anon_sym_LBRACE, - ACTIONS(12836), 1, + ACTIONS(13210), 1, anon_sym_COLON, - STATE(3078), 1, + STATE(3191), 1, sym_attribute_specifier, - STATE(3687), 1, + STATE(7660), 1, sym__enum_base_clause, - STATE(3797), 1, + STATE(7714), 1, sym_enumerator_list, - ACTIONS(7600), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7602), 24, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8008), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8006), 23, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACK, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -666408,35 +688135,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [281437] = 7, + sym_primitive_type, + sym_identifier, + [282081] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - STATE(3601), 1, - sym_template_argument_list, - STATE(7567), 1, + ACTIONS(13227), 1, + sym_identifier, + ACTIONS(13233), 1, + sym_primitive_type, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(7694), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7019), 4, + ACTIONS(9727), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7602), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7249), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(7017), 25, + ACTIONS(7251), 4, anon_sym_AMP, - anon_sym___extension__, anon_sym___attribute__, anon_sym___attribute, anon_sym___based, + ACTIONS(13230), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(9722), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -666449,18 +688183,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [281486] = 3, + [282138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7195), 3, + ACTIONS(7779), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7197), 29, + ACTIONS(7781), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -666490,14 +688220,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [281526] = 3, + [282178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7223), 3, + ACTIONS(7635), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7225), 29, + ACTIONS(7637), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -666527,14 +688257,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [281566] = 3, + [282218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7359), 3, + ACTIONS(7639), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7361), 29, + ACTIONS(7641), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -666564,14 +688294,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [281606] = 3, + [282258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6790), 3, + ACTIONS(7561), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(6792), 29, + ACTIONS(7563), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -666601,69 +688331,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [281646] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7629), 1, - anon_sym_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10606), 1, - anon_sym_DASH_GT, - ACTIONS(10753), 1, - anon_sym_requires, - STATE(8276), 1, - sym_trailing_return_type, - STATE(8498), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7636), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7627), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [281722] = 3, + [282298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7375), 3, + ACTIONS(7655), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7377), 29, + ACTIONS(7657), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -666693,14 +688368,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [281762] = 3, + [282338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7191), 3, + ACTIONS(7663), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7193), 29, + ACTIONS(7665), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -666730,14 +688405,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [281802] = 3, + [282378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6798), 3, + ACTIONS(7667), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(6800), 29, + ACTIONS(7669), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -666767,14 +688442,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [281842] = 3, + [282418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7341), 3, + ACTIONS(7671), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7343), 29, + ACTIONS(7673), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -666804,14 +688479,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [281882] = 3, + [282458] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10919), 1, + anon_sym_DASH_GT, + ACTIONS(12406), 1, + anon_sym___attribute__, + ACTIONS(12409), 1, + anon_sym___attribute, + ACTIONS(13188), 1, + anon_sym_requires, + STATE(8398), 1, + sym_trailing_return_type, + STATE(8471), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13146), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7767), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7791), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [282534] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7968), 1, + anon_sym_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10919), 1, + anon_sym_DASH_GT, + ACTIONS(13108), 1, + anon_sym___attribute__, + ACTIONS(13111), 1, + anon_sym___attribute, + ACTIONS(13236), 1, + anon_sym_requires, + STATE(8401), 1, + sym_trailing_return_type, + STATE(8472), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13202), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8561), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7776), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7966), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [282610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7379), 3, + ACTIONS(7647), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7381), 29, + ACTIONS(7649), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -666841,14 +688626,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [281922] = 3, + [282650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7259), 3, + ACTIONS(7651), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7261), 29, + ACTIONS(7653), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -666878,14 +688663,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [281962] = 3, + [282690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7263), 3, + ACTIONS(7767), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7265), 29, + ACTIONS(7769), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -666915,69 +688700,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282002] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10751), 1, - anon_sym_DASH_GT, - ACTIONS(10753), 1, - anon_sym_requires, - ACTIONS(12144), 1, - anon_sym___attribute__, - ACTIONS(12147), 1, - anon_sym___attribute, - STATE(8259), 1, - sym_trailing_return_type, - STATE(8330), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7661), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7544), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [282078] = 3, + [282730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7205), 3, + ACTIONS(7771), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7207), 29, + ACTIONS(7773), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -667007,69 +688737,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282118] = 21, + [282770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7629), 1, - anon_sym_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10751), 1, - anon_sym_DASH_GT, - ACTIONS(10753), 1, - anon_sym_requires, - ACTIONS(12778), 1, - anon_sym___attribute__, - ACTIONS(12781), 1, + ACTIONS(7158), 3, + anon_sym_AMP, anon_sym___attribute, - STATE(8276), 1, - sym_trailing_return_type, - STATE(8331), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7670), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7627), 5, + anon_sym_const, + ACTIONS(7160), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [282194] = 3, + anon_sym_try, + anon_sym_requires, + [282810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7209), 3, + ACTIONS(7659), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7211), 29, + ACTIONS(7661), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -667099,14 +688811,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282234] = 3, + [282850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7267), 3, + ACTIONS(7561), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7269), 29, + ACTIONS(7563), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -667136,14 +688848,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282274] = 3, + [282890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7253), 3, + ACTIONS(7599), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7255), 29, + ACTIONS(7601), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -667173,14 +688885,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282314] = 3, + [282930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7271), 3, + ACTIONS(7731), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7273), 29, + ACTIONS(7733), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -667210,14 +688922,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282354] = 3, + [282970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7275), 3, + ACTIONS(7717), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7277), 29, + ACTIONS(7719), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -667247,69 +688959,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282394] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10606), 1, - anon_sym_DASH_GT, - ACTIONS(10753), 1, - anon_sym_requires, - STATE(8259), 1, - sym_trailing_return_type, - STATE(8487), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7659), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7544), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [282470] = 3, + [283010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 3, + ACTIONS(7775), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7285), 29, + ACTIONS(7777), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -667339,14 +688996,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282510] = 3, + [283050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 3, + ACTIONS(7569), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7289), 29, + ACTIONS(7571), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -667376,14 +689033,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282550] = 3, + [283090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 3, + ACTIONS(7627), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7335), 29, + ACTIONS(7629), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -667413,14 +689070,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282590] = 3, + [283130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7219), 3, + ACTIONS(7585), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7221), 29, + ACTIONS(7587), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -667450,14 +689107,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282630] = 3, + [283170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7345), 3, + ACTIONS(7595), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7347), 29, + ACTIONS(7597), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -667487,14 +689144,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282670] = 3, + [283210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7223), 3, + ACTIONS(7607), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7225), 29, + ACTIONS(7609), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -667524,14 +689181,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282710] = 3, + [283250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 3, + ACTIONS(7623), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7301), 29, + ACTIONS(7625), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -667561,69 +689218,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282750] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10751), 1, - anon_sym_DASH_GT, - ACTIONS(12144), 1, - anon_sym___attribute__, - ACTIONS(12147), 1, - anon_sym___attribute, - ACTIONS(12824), 1, - anon_sym_requires, - STATE(8314), 1, - sym_trailing_return_type, - STATE(8335), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12744), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7643), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7544), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [282826] = 3, + [283290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 3, + ACTIONS(7739), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7229), 29, + ACTIONS(7741), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -667653,14 +689255,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282866] = 3, + [283330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7351), 3, + ACTIONS(7743), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7353), 29, + ACTIONS(7745), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -667690,14 +689292,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282906] = 3, + [283370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7279), 3, + ACTIONS(7603), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7281), 29, + ACTIONS(7605), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -667727,124 +689329,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282946] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7629), 1, - anon_sym_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10751), 1, - anon_sym_DASH_GT, - ACTIONS(12778), 1, - anon_sym___attribute__, - ACTIONS(12781), 1, - anon_sym___attribute, - ACTIONS(12872), 1, - anon_sym_requires, - STATE(8315), 1, - sym_trailing_return_type, - STATE(8337), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12866), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7646), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7627), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [283022] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10606), 1, - anon_sym_DASH_GT, - ACTIONS(12824), 1, - anon_sym_requires, - STATE(8314), 1, - sym_trailing_return_type, - STATE(8478), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12744), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7672), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7544), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [283098] = 3, + [283410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7231), 3, + ACTIONS(7751), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7233), 29, + ACTIONS(7753), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -667874,14 +689366,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283138] = 3, + [283450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 3, + ACTIONS(7755), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7289), 29, + ACTIONS(7757), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -667911,14 +689403,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283178] = 3, + [283490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7421), 3, + ACTIONS(7759), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7423), 29, + ACTIONS(7761), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -667948,14 +689440,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283218] = 3, + [283530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7303), 3, + ACTIONS(7763), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7305), 29, + ACTIONS(7765), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -667985,14 +689477,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283258] = 3, + [283570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7325), 3, + ACTIONS(7595), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7327), 29, + ACTIONS(7597), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -668022,14 +689514,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283298] = 3, + [283610] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10919), 1, + anon_sym_DASH_GT, + ACTIONS(10921), 1, + anon_sym_requires, + ACTIONS(12406), 1, + anon_sym___attribute__, + ACTIONS(12409), 1, + anon_sym___attribute, + STATE(8441), 1, + sym_trailing_return_type, + STATE(8497), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7770), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7791), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [283686] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7968), 1, + anon_sym_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10919), 1, + anon_sym_DASH_GT, + ACTIONS(10921), 1, + anon_sym_requires, + ACTIONS(13108), 1, + anon_sym___attribute__, + ACTIONS(13111), 1, + anon_sym___attribute, + STATE(8374), 1, + sym_trailing_return_type, + STATE(8450), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8561), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7743), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7966), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [283762] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7968), 1, + anon_sym_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10921), 1, + anon_sym_requires, + ACTIONS(11044), 1, + anon_sym_DASH_GT, + STATE(8374), 1, + sym_trailing_return_type, + STATE(8659), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8561), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7758), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7966), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [283838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7329), 3, + ACTIONS(7565), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7331), 29, + ACTIONS(7567), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -668059,14 +689716,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283338] = 3, + [283878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 3, + ACTIONS(7643), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7237), 29, + ACTIONS(7645), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -668096,14 +689753,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283378] = 3, + [283918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7355), 3, + ACTIONS(7735), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7357), 29, + ACTIONS(7737), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -668133,14 +689790,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283418] = 3, + [283958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7245), 3, + ACTIONS(7747), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7247), 29, + ACTIONS(7749), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -668170,72 +689827,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283458] = 24, + [283998] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(9997), 1, + ACTIONS(10348), 1, anon_sym_AMP_AMP, - ACTIONS(9999), 1, + ACTIONS(10350), 1, anon_sym_AMP, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10437), 1, + ACTIONS(10819), 1, anon_sym_DASH_GT, - ACTIONS(12747), 1, + ACTIONS(13149), 1, anon_sym_requires, - STATE(7608), 1, + STATE(7701), 1, sym_ref_qualifier, - STATE(8734), 1, + STATE(8845), 1, sym__function_attributes_end, - STATE(8823), 1, + STATE(8972), 1, sym_trailing_return_type, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7544), 2, + ACTIONS(7791), 2, anon_sym_LPAREN2, anon_sym_LBRACE, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - STATE(7881), 3, + STATE(7991), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [283540] = 3, + [284080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7223), 3, + ACTIONS(7561), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7225), 29, + ACTIONS(7563), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [284120] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7631), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7633), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -668265,69 +689959,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283580] = 21, + [284160] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7629), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10606), 1, + ACTIONS(11044), 1, anon_sym_DASH_GT, - ACTIONS(12872), 1, + ACTIONS(13188), 1, anon_sym_requires, - STATE(8315), 1, + STATE(8398), 1, sym_trailing_return_type, - STATE(8536), 1, + STATE(8627), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(12866), 2, + ACTIONS(13146), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7794), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7791), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [284236] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7968), 1, + anon_sym_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11044), 1, + anon_sym_DASH_GT, + ACTIONS(13236), 1, + anon_sym_requires, + STATE(8401), 1, + sym_trailing_return_type, + STATE(8629), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13202), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8561), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7800), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7966), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [284312] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10921), 1, + anon_sym_requires, + ACTIONS(11044), 1, + anon_sym_DASH_GT, + STATE(8441), 1, + sym_trailing_return_type, + STATE(8631), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8391), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - STATE(7681), 3, + STATE(7759), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7627), 5, + ACTIONS(7791), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [283656] = 3, + [284388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7295), 3, + ACTIONS(7223), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7297), 29, + ACTIONS(7225), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -668357,62 +690161,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283696] = 3, + [284428] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7337), 3, - anon_sym_AMP, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7968), 1, + anon_sym_LBRACK, + ACTIONS(10367), 1, + anon_sym_DASH_GT, + ACTIONS(13108), 1, + anon_sym___attribute__, + ACTIONS(13111), 1, anon_sym___attribute, - anon_sym_const, - ACTIONS(7339), 29, + ACTIONS(13114), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13161), 1, + anon_sym_requires, + STATE(8035), 1, + sym_trailing_return_type, + STATE(8067), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13158), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8358), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7966), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_GT2, + anon_sym_try, + [284497] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10367), 1, + anon_sym_DASH_GT, + ACTIONS(10382), 1, + anon_sym_requires, + ACTIONS(12406), 1, + anon_sym___attribute__, + ACTIONS(12409), 1, + anon_sym___attribute, + ACTIONS(12412), 1, + anon_sym_LBRACK_LBRACK, + STATE(7999), 1, + sym_trailing_return_type, + STATE(8069), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8160), 2, anon_sym_final, anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8313), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [283736] = 3, + [284566] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7291), 3, - anon_sym_AMP, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, anon_sym___attribute, - anon_sym_const, - ACTIONS(7293), 29, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11296), 1, + anon_sym_DASH_GT, + ACTIONS(13197), 1, + anon_sym_requires, + STATE(8714), 1, + sym__function_attributes_end, + STATE(8715), 1, + sym_trailing_return_type, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13146), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7848), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7791), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT2, + [284641] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9576), 1, + anon_sym_LBRACE, + STATE(3201), 1, + sym_attribute_specifier, + STATE(7732), 1, + sym_enumerator_list, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7389), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7387), 23, + anon_sym_AMP, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -668426,28 +690355,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [283776] = 7, + sym_primitive_type, + sym_identifier, + [284688] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9162), 1, + ACTIONS(9576), 1, anon_sym_LBRACE, - STATE(3061), 1, + STATE(3245), 1, sym_attribute_specifier, - STATE(7588), 1, + STATE(7719), 1, sym_enumerator_list, ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6987), 3, + ACTIONS(7383), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6985), 23, + ACTIONS(7381), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___based, @@ -668471,153 +690397,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [283823] = 21, + [284735] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7968), 1, + anon_sym_LBRACK, + ACTIONS(10367), 1, + anon_sym_DASH_GT, + ACTIONS(10382), 1, + anon_sym_requires, + ACTIONS(13108), 1, + anon_sym___attribute__, + ACTIONS(13111), 1, + anon_sym___attribute, + ACTIONS(13114), 1, + anon_sym_LBRACK_LBRACK, + STATE(8057), 1, + sym_trailing_return_type, + STATE(8070), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8160), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8358), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7966), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [284804] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10810), 1, + ACTIONS(11296), 1, anon_sym_DASH_GT, - ACTIONS(12833), 1, + ACTIONS(11298), 1, anon_sym_requires, - STATE(8567), 1, + STATE(8717), 1, sym__function_attributes_end, - STATE(8568), 1, + STATE(8718), 1, sym_trailing_return_type, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(12744), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - STATE(7715), 3, + STATE(7840), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7544), 4, + ACTIONS(7791), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [283898] = 18, + [284879] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(7968), 1, anon_sym_LBRACK, - ACTIONS(10016), 1, - anon_sym_DASH_GT, - ACTIONS(12144), 1, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(12147), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(12150), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12170), 1, + ACTIONS(11296), 1, + anon_sym_DASH_GT, + ACTIONS(13239), 1, anon_sym_requires, - STATE(7926), 1, - sym_trailing_return_type, - STATE(7948), 1, + STATE(8724), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(8725), 1, + sym_trailing_return_type, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(12167), 2, + ACTIONS(13202), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8170), 2, + STATE(8561), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 9, + STATE(7849), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7966), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_GT2, - anon_sym_try, - [283967] = 18, + [284954] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7629), 1, + ACTIONS(8424), 1, anon_sym_LBRACK, - ACTIONS(10016), 1, + ACTIONS(10367), 1, anon_sym_DASH_GT, - ACTIONS(12778), 1, + ACTIONS(10382), 1, + anon_sym_requires, + ACTIONS(13242), 1, anon_sym___attribute__, - ACTIONS(12781), 1, + ACTIONS(13245), 1, anon_sym___attribute, - ACTIONS(12784), 1, + ACTIONS(13248), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12790), 1, - anon_sym_requires, - STATE(7927), 1, + STATE(8032), 1, sym_trailing_return_type, - STATE(7949), 1, + STATE(8073), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(12787), 2, + ACTIONS(8160), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8195), 2, + STATE(8297), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7627), 9, + ACTIONS(8422), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -668627,48 +690607,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [284036] = 18, + [285023] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(8087), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(10016), 1, + ACTIONS(10367), 1, anon_sym_DASH_GT, - ACTIONS(12875), 1, + ACTIONS(12406), 1, anon_sym___attribute__, - ACTIONS(12878), 1, + ACTIONS(12409), 1, anon_sym___attribute, - ACTIONS(12881), 1, + ACTIONS(12412), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12887), 1, + ACTIONS(12418), 1, anon_sym_requires, - STATE(7928), 1, + STATE(8013), 1, sym_trailing_return_type, - STATE(7950), 1, + STATE(8066), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(12884), 2, + ACTIONS(12415), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8239), 2, + STATE(8313), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8089), 9, + ACTIONS(7791), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -668678,142 +690658,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [284105] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9162), 1, - anon_sym_LBRACE, - STATE(2997), 1, - sym_attribute_specifier, - STATE(7610), 1, - sym_enumerator_list, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7013), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(7011), 23, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [284152] = 21, + [285092] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7629), 1, + ACTIONS(7968), 1, anon_sym_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10810), 1, + ACTIONS(11296), 1, anon_sym_DASH_GT, - ACTIONS(12890), 1, + ACTIONS(11298), 1, anon_sym_requires, - STATE(8569), 1, + STATE(8726), 1, sym__function_attributes_end, - STATE(8570), 1, + STATE(8730), 1, sym_trailing_return_type, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(12866), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8391), 2, + STATE(8561), 2, sym__function_postfix, sym_requires_clause, - STATE(7737), 3, + STATE(7842), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7627), 4, + ACTIONS(7966), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [284227] = 18, + [285167] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7629), 1, + ACTIONS(8424), 1, anon_sym_LBRACK, - ACTIONS(10016), 1, + ACTIONS(10367), 1, anon_sym_DASH_GT, - ACTIONS(10022), 1, - anon_sym_requires, - ACTIONS(12778), 1, + ACTIONS(13242), 1, anon_sym___attribute__, - ACTIONS(12781), 1, + ACTIONS(13245), 1, anon_sym___attribute, - ACTIONS(12784), 1, + ACTIONS(13248), 1, anon_sym_LBRACK_LBRACK, - STATE(7938), 1, + ACTIONS(13254), 1, + anon_sym_requires, + STATE(8046), 1, sym_trailing_return_type, - STATE(7958), 1, + STATE(8068), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7821), 2, + ACTIONS(13251), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8195), 2, + STATE(8297), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7627), 9, + ACTIONS(8422), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -668823,269 +690763,402 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [284296] = 21, + [285236] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7629), 1, - anon_sym_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10254), 1, + STATE(4065), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7725), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(13257), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7723), 21, + anon_sym_AMP, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10810), 1, - anon_sym_DASH_GT, - ACTIONS(10812), 1, - anon_sym_requires, - STATE(8553), 1, - sym_trailing_return_type, - STATE(8632), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7700), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7627), 4, - anon_sym_DOT_DOT_DOT, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [285278] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13260), 1, + sym_identifier, + ACTIONS(13264), 1, + sym_primitive_type, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(8970), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7207), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7205), 3, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_LBRACE, anon_sym_GT2, - [284371] = 18, + ACTIONS(13262), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [285332] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(8087), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(10016), 1, - anon_sym_DASH_GT, - ACTIONS(10022), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3104), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11073), 1, + anon_sym_COLON_COLON, + ACTIONS(13137), 1, + sym_identifier, + ACTIONS(13266), 1, + anon_sym_LPAREN2, + ACTIONS(13268), 1, + anon_sym_LBRACE, + ACTIONS(13272), 1, anon_sym_requires, - ACTIONS(12875), 1, + STATE(2742), 1, + sym_splice_specifier, + STATE(2921), 1, + sym__splice_specialization_specifier, + STATE(5671), 1, + sym_requirement_seq, + STATE(8042), 1, + sym_lambda_capture_specifier, + STATE(8686), 1, + sym__scope_resolution, + STATE(10366), 1, + sym_requires_parameter_list, + ACTIONS(13270), 2, + sym_true, + sym_false, + STATE(2934), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5551), 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, + [285404] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7699), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7709), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(13274), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7707), 21, + anon_sym_AMP, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(12878), 1, anon_sym___attribute, - ACTIONS(12881), 1, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [285446] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - STATE(7944), 1, - sym_trailing_return_type, - STATE(7946), 1, + ACTIONS(11516), 1, + anon_sym_DASH_GT, + ACTIONS(12406), 1, + anon_sym___attribute__, + ACTIONS(12409), 1, + anon_sym___attribute, + ACTIONS(13197), 1, + anon_sym_requires, + STATE(8643), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(8715), 1, + sym_trailing_return_type, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7821), 2, + ACTIONS(13146), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8239), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8089), 9, + ACTIONS(7791), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_GT2, - anon_sym_try, - [284440] = 21, + STATE(7938), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [285520] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(7968), 1, anon_sym_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10810), 1, - anon_sym_DASH_GT, - ACTIONS(10812), 1, + ACTIONS(10861), 1, anon_sym_requires, - STATE(8586), 1, - sym__function_attributes_end, - STATE(8596), 1, + ACTIONS(11518), 1, + anon_sym_DASH_GT, + ACTIONS(13108), 1, + anon_sym___attribute__, + ACTIONS(13111), 1, + anon_sym___attribute, + STATE(8565), 1, sym_trailing_return_type, - STATE(8982), 1, + STATE(8606), 1, + sym__function_attributes_end, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8561), 2, sym__function_postfix, sym_requires_clause, - STATE(7721), 3, + ACTIONS(7966), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(7962), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7544), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + [285594] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1670), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3008), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(13156), 1, + sym_identifier, + ACTIONS(13277), 1, anon_sym_LPAREN2, - anon_sym_GT2, - [284515] = 18, + ACTIONS(13279), 1, + anon_sym_LBRACE, + ACTIONS(13283), 1, + anon_sym_requires, + STATE(2638), 1, + sym_splice_specifier, + STATE(2696), 1, + sym__splice_specialization_specifier, + STATE(5141), 1, + sym_requirement_seq, + STATE(8045), 1, + sym_lambda_capture_specifier, + STATE(8687), 1, + sym__scope_resolution, + STATE(10515), 1, + sym_requires_parameter_list, + ACTIONS(13281), 2, + sym_true, + sym_false, + STATE(2678), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5042), 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, + [285666] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(7968), 1, anon_sym_LBRACK, - ACTIONS(10016), 1, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11516), 1, anon_sym_DASH_GT, - ACTIONS(10022), 1, - anon_sym_requires, - ACTIONS(12144), 1, + ACTIONS(13108), 1, anon_sym___attribute__, - ACTIONS(12147), 1, + ACTIONS(13111), 1, anon_sym___attribute, - ACTIONS(12150), 1, - anon_sym_LBRACK_LBRACK, - STATE(7917), 1, + ACTIONS(13239), 1, + anon_sym_requires, + STATE(8662), 1, + sym__function_attributes_end, + STATE(8725), 1, sym_trailing_return_type, - STATE(7957), 1, - sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7821), 2, + ACTIONS(13202), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8170), 2, + STATE(8561), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 9, + ACTIONS(7966), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_GT2, - anon_sym_try, - [284584] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4035), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7251), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(12893), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7249), 21, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [284626] = 5, + STATE(7985), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [285740] = 5, ACTIONS(3), 1, sym_comment, - STATE(4035), 1, + STATE(4065), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7385), 4, + ACTIONS(7715), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(12896), 4, + ACTIONS(13285), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7383), 21, + ACTIONS(7713), 21, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -669107,140 +691180,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [284668] = 21, + [285782] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7629), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11140), 1, + ACTIONS(11518), 1, anon_sym_DASH_GT, - ACTIONS(12778), 1, + ACTIONS(12406), 1, anon_sym___attribute__, - ACTIONS(12781), 1, + ACTIONS(12409), 1, anon_sym___attribute, - ACTIONS(12890), 1, + ACTIONS(13149), 1, anon_sym_requires, - STATE(8491), 1, - sym__function_attributes_end, - STATE(8570), 1, + STATE(8511), 1, sym_trailing_return_type, - STATE(8982), 1, + STATE(8640), 1, + sym__function_attributes_end, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(12866), 2, + ACTIONS(13146), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8391), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7627), 3, + ACTIONS(7791), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - STATE(7861), 3, + STATE(7969), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [284742] = 5, + [285856] = 20, ACTIONS(3), 1, sym_comment, - STATE(4035), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7397), 4, + ACTIONS(1670), 1, + anon_sym_LBRACK, + ACTIONS(2300), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11010), 1, + anon_sym_COLON_COLON, + ACTIONS(13135), 1, + sym_identifier, + ACTIONS(13288), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(13290), 1, anon_sym_LBRACE, - ACTIONS(12899), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7395), 21, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [284784] = 20, + ACTIONS(13294), 1, + anon_sym_requires, + STATE(2547), 1, + sym_splice_specifier, + STATE(2601), 1, + sym__splice_specialization_specifier, + STATE(4980), 1, + sym_requirement_seq, + STATE(8041), 1, + sym_lambda_capture_specifier, + STATE(8682), 1, + sym__scope_resolution, + STATE(10367), 1, + sym_requires_parameter_list, + ACTIONS(13292), 2, + sym_true, + sym_false, + STATE(2615), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(4982), 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, + [285928] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2732), 1, + ACTIONS(3092), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10735), 1, + ACTIONS(11097), 1, anon_sym_COLON_COLON, - ACTIONS(12772), 1, + ACTIONS(13100), 1, sym_identifier, - ACTIONS(12902), 1, + ACTIONS(13296), 1, anon_sym_LPAREN2, - ACTIONS(12904), 1, + ACTIONS(13298), 1, anon_sym_LBRACE, - ACTIONS(12908), 1, + ACTIONS(13302), 1, anon_sym_requires, - STATE(2530), 1, + STATE(2605), 1, sym_splice_specifier, - STATE(2597), 1, + STATE(2659), 1, sym__splice_specialization_specifier, - STATE(5025), 1, + STATE(5137), 1, sym_requirement_seq, - STATE(7914), 1, + STATE(8024), 1, sym_lambda_capture_specifier, - STATE(8624), 1, + STATE(8702), 1, sym__scope_resolution, - STATE(10253), 1, + STATE(10457), 1, sym_requires_parameter_list, - ACTIONS(12906), 2, + ACTIONS(13300), 2, sym_true, sym_false, - STATE(2598), 2, + STATE(2661), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5028), 8, + STATE(5138), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -669249,159 +691337,133 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [284856] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4035), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7081), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(12910), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7084), 21, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - 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__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [284898] = 21, + [286000] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(7968), 1, anon_sym_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11171), 1, + ACTIONS(11518), 1, anon_sym_DASH_GT, - ACTIONS(12144), 1, + ACTIONS(13108), 1, anon_sym___attribute__, - ACTIONS(12147), 1, + ACTIONS(13111), 1, anon_sym___attribute, - ACTIONS(12747), 1, + ACTIONS(13205), 1, anon_sym_requires, - STATE(8438), 1, + STATE(8513), 1, sym_trailing_return_type, - STATE(8502), 1, + STATE(8641), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(12744), 2, + ACTIONS(13202), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8561), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 3, + ACTIONS(7966), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(7809), 3, + STATE(7922), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [284972] = 11, + [286074] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(12914), 1, - sym_identifier, - ACTIONS(12918), 1, - sym_primitive_type, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(8843), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6886), 2, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11298), 1, + anon_sym_requires, + ACTIONS(11516), 1, + anon_sym_DASH_GT, + ACTIONS(12406), 1, anon_sym___attribute__, + ACTIONS(12409), 1, anon_sym___attribute, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6884), 3, + STATE(8667), 1, + sym__function_attributes_end, + STATE(8718), 1, + sym_trailing_return_type, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 3, anon_sym_COMMA, - anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_GT2, - ACTIONS(12916), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [285026] = 4, + STATE(7968), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [286148] = 5, ACTIONS(3), 1, sym_comment, - STATE(7565), 1, + STATE(4065), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7255), 4, + ACTIONS(7677), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(7253), 25, + ACTIONS(13304), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7675), 21, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, anon_sym___attribute, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -669418,103 +691480,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [285066] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7629), 1, - anon_sym_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11171), 1, - anon_sym_DASH_GT, - ACTIONS(12778), 1, - anon_sym___attribute__, - ACTIONS(12781), 1, - anon_sym___attribute, - ACTIONS(12869), 1, - anon_sym_requires, - STATE(8441), 1, - sym_trailing_return_type, - STATE(8503), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12866), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7627), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(7827), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [285140] = 20, + [286190] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2648), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10727), 1, + ACTIONS(11105), 1, anon_sym_COLON_COLON, - ACTIONS(12764), 1, + ACTIONS(13144), 1, sym_identifier, - ACTIONS(12920), 1, + ACTIONS(13307), 1, anon_sym_LPAREN2, - ACTIONS(12922), 1, + ACTIONS(13309), 1, anon_sym_LBRACE, - ACTIONS(12926), 1, + ACTIONS(13313), 1, anon_sym_requires, - STATE(2519), 1, - sym_splice_specifier, - STATE(2567), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(5018), 1, + STATE(3800), 1, + sym_splice_specifier, + STATE(5259), 1, sym_requirement_seq, - STATE(7908), 1, + STATE(8001), 1, sym_lambda_capture_specifier, - STATE(8604), 1, + STATE(8738), 1, sym__scope_resolution, - STATE(10101), 1, + STATE(10473), 1, sym_requires_parameter_list, - ACTIONS(12924), 2, + ACTIONS(13311), 2, sym_true, sym_false, - STATE(2577), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5033), 8, + STATE(6188), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -669523,50 +691532,50 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [285212] = 20, + [286262] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2744), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10711), 1, + ACTIONS(11111), 1, anon_sym_COLON_COLON, - ACTIONS(12758), 1, + ACTIONS(13104), 1, sym_identifier, - ACTIONS(12928), 1, + ACTIONS(13307), 1, anon_sym_LPAREN2, - ACTIONS(12930), 1, + ACTIONS(13309), 1, anon_sym_LBRACE, - ACTIONS(12934), 1, + ACTIONS(13313), 1, anon_sym_requires, - STATE(2677), 1, - sym_splice_specifier, - STATE(2837), 1, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(5508), 1, + STATE(3719), 1, + sym_splice_specifier, + STATE(5259), 1, sym_requirement_seq, - STATE(7894), 1, + STATE(8001), 1, sym_lambda_capture_specifier, - STATE(8588), 1, + STATE(8707), 1, sym__scope_resolution, - STATE(10135), 1, + STATE(10473), 1, sym_requires_parameter_list, - ACTIONS(12932), 2, + ACTIONS(13315), 2, sym_true, sym_false, - STATE(2802), 2, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5455), 8, + STATE(6288), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -669575,50 +691584,50 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [285284] = 20, + [286334] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10651), 1, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - ACTIONS(12736), 1, + ACTIONS(13119), 1, sym_identifier, - ACTIONS(12936), 1, + ACTIONS(13317), 1, anon_sym_LPAREN2, - ACTIONS(12938), 1, + ACTIONS(13319), 1, anon_sym_LBRACE, - ACTIONS(12942), 1, + ACTIONS(13323), 1, anon_sym_requires, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3688), 1, + STATE(2104), 1, sym_splice_specifier, - STATE(5062), 1, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(3648), 1, sym_requirement_seq, - STATE(7935), 1, + STATE(8030), 1, sym_lambda_capture_specifier, - STATE(8621), 1, + STATE(8763), 1, sym__scope_resolution, - STATE(10113), 1, + STATE(10534), 1, sym_requires_parameter_list, - ACTIONS(12940), 2, + ACTIONS(13321), 2, sym_true, sym_false, - STATE(2874), 2, + STATE(2147), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6077), 8, + STATE(3657), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -669627,22 +691636,22 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [285356] = 5, + [286406] = 5, ACTIONS(3), 1, sym_comment, - STATE(4035), 1, + STATE(4065), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7416), 4, + ACTIONS(7683), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(12944), 4, + ACTIONS(13325), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7414), 21, + ACTIONS(7681), 21, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -669664,22 +691673,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [285398] = 5, + [286448] = 5, ACTIONS(3), 1, sym_comment, - STATE(4035), 1, + STATE(4065), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7389), 4, + ACTIONS(7695), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(12947), 4, + ACTIONS(13328), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7387), 21, + ACTIONS(7693), 21, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -669701,75 +691710,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [285440] = 21, + [286490] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11140), 1, + ACTIONS(10861), 1, + anon_sym_requires, + ACTIONS(11518), 1, anon_sym_DASH_GT, - ACTIONS(12144), 1, + ACTIONS(12406), 1, anon_sym___attribute__, - ACTIONS(12147), 1, + ACTIONS(12409), 1, anon_sym___attribute, - ACTIONS(12833), 1, - anon_sym_requires, - STATE(8490), 1, - sym__function_attributes_end, - STATE(8568), 1, + STATE(8585), 1, sym_trailing_return_type, - STATE(8982), 1, + STATE(8604), 1, + sym__function_attributes_end, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(12744), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 3, + ACTIONS(7791), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - STATE(7828), 3, + STATE(7933), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [285514] = 5, + [286564] = 5, ACTIONS(3), 1, sym_comment, - STATE(4035), 1, + STATE(4065), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7393), 4, + ACTIONS(7699), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(12950), 4, + ACTIONS(13331), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7391), 21, + ACTIONS(7697), 21, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -669791,74 +691800,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [285556] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 1, - anon_sym_LBRACK, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3443), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10719), 1, - anon_sym_COLON_COLON, - ACTIONS(12760), 1, - sym_identifier, - ACTIONS(12953), 1, - anon_sym_LPAREN2, - ACTIONS(12955), 1, - anon_sym_LBRACE, - ACTIONS(12959), 1, - anon_sym_requires, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(4072), 1, - sym_splice_specifier, - STATE(6580), 1, - sym_requirement_seq, - STATE(7903), 1, - sym_lambda_capture_specifier, - STATE(8571), 1, - sym__scope_resolution, - STATE(10091), 1, - sym_requires_parameter_list, - ACTIONS(12957), 2, - sym_true, - sym_false, - STATE(3624), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - STATE(6581), 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, - [285628] = 5, + [286606] = 5, ACTIONS(3), 1, sym_comment, - STATE(7554), 1, + STATE(7687), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7241), 4, + ACTIONS(7557), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(12961), 4, + ACTIONS(13334), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7239), 21, + ACTIONS(7555), 21, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -669880,222 +691837,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [285670] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 1, - anon_sym_LBRACK, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(2078), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10686), 1, - anon_sym_COLON_COLON, - ACTIONS(12756), 1, - sym_identifier, - ACTIONS(12964), 1, - anon_sym_LPAREN2, - ACTIONS(12966), 1, - anon_sym_LBRACE, - ACTIONS(12970), 1, - anon_sym_requires, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, - sym__splice_specialization_specifier, - STATE(3575), 1, - sym_requirement_seq, - STATE(7936), 1, - sym_lambda_capture_specifier, - STATE(8593), 1, - sym__scope_resolution, - STATE(10414), 1, - sym_requires_parameter_list, - ACTIONS(12968), 2, - sym_true, - sym_false, - STATE(2067), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - STATE(3592), 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, - [285742] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7629), 1, - anon_sym_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10478), 1, - anon_sym_requires, - ACTIONS(11171), 1, - anon_sym_DASH_GT, - ACTIONS(12778), 1, - anon_sym___attribute__, - ACTIONS(12781), 1, - anon_sym___attribute, - STATE(8392), 1, - sym_trailing_return_type, - STATE(8544), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7627), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(7822), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [285816] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 1, - anon_sym_LBRACK, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10743), 1, - anon_sym_COLON_COLON, - ACTIONS(12776), 1, - sym_identifier, - ACTIONS(12936), 1, - anon_sym_LPAREN2, - ACTIONS(12938), 1, - anon_sym_LBRACE, - ACTIONS(12942), 1, - anon_sym_requires, - STATE(3634), 1, - sym_splice_specifier, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(5062), 1, - sym_requirement_seq, - STATE(7935), 1, - sym_lambda_capture_specifier, - STATE(8631), 1, - sym__scope_resolution, - STATE(10113), 1, - sym_requires_parameter_list, - ACTIONS(12972), 2, - sym_true, - sym_false, - STATE(3624), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - STATE(6154), 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, - [285888] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12974), 1, - sym_identifier, - ACTIONS(12978), 1, - sym_primitive_type, - STATE(3482), 1, - sym_alignas_qualifier, - STATE(7635), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6814), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(7558), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6812), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_GT2, - ACTIONS(12976), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(67), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [285942] = 5, + [286648] = 5, ACTIONS(3), 1, sym_comment, - STATE(4035), 1, + STATE(7689), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7201), 4, + ACTIONS(7785), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(12980), 4, + ACTIONS(13337), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7199), 21, + ACTIONS(7783), 21, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -670117,27 +691874,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [285984] = 5, + [286690] = 4, ACTIONS(3), 1, sym_comment, - STATE(7552), 1, + STATE(7682), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7215), 4, + ACTIONS(7719), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(12983), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7213), 21, + ACTIONS(7717), 25, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, anon_sym___attribute, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -670154,75 +691910,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [286026] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10478), 1, - anon_sym_requires, - ACTIONS(11171), 1, - anon_sym_DASH_GT, - ACTIONS(12144), 1, - anon_sym___attribute__, - ACTIONS(12147), 1, - anon_sym___attribute, - STATE(8456), 1, - sym_trailing_return_type, - STATE(8543), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(7805), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [286100] = 7, + [286730] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, + ACTIONS(7227), 1, anon_sym_COLON_COLON, - ACTIONS(12855), 1, + ACTIONS(13216), 1, anon_sym_decltype, - ACTIONS(12986), 1, + ACTIONS(13340), 1, sym_auto, - STATE(3030), 1, + STATE(3215), 1, sym_decltype_auto, - ACTIONS(6800), 3, + ACTIONS(7225), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6798), 23, + ACTIONS(7223), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___based, @@ -670246,22 +691949,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [286146] = 5, + [286776] = 5, ACTIONS(3), 1, sym_comment, - STATE(7564), 1, + STATE(4065), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7404), 4, + ACTIONS(7525), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(12988), 4, + ACTIONS(13342), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7402), 21, + ACTIONS(7528), 21, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -670283,50 +691986,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [286188] = 20, + [286818] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(4360), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10705), 1, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, + ACTIONS(13152), 1, + sym_identifier, + ACTIONS(13346), 1, + anon_sym_LPAREN2, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_requires, + STATE(3711), 1, + sym__splice_specialization_specifier, + STATE(4263), 1, + sym_splice_specifier, + STATE(6649), 1, + sym_requirement_seq, + STATE(8009), 1, + sym_lambda_capture_specifier, + STATE(8675), 1, + sym__scope_resolution, + STATE(10244), 1, + sym_requires_parameter_list, + ACTIONS(13350), 2, + sym_true, + sym_false, + STATE(3728), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(6650), 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, + [286890] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1670), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3256), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11059), 1, anon_sym_COLON_COLON, - ACTIONS(12754), 1, + ACTIONS(13133), 1, sym_identifier, - ACTIONS(12991), 1, + ACTIONS(13354), 1, anon_sym_LPAREN2, - ACTIONS(12993), 1, + ACTIONS(13356), 1, anon_sym_LBRACE, - ACTIONS(12997), 1, + ACTIONS(13360), 1, anon_sym_requires, - STATE(4067), 1, + STATE(4272), 1, sym_splice_specifier, - STATE(4189), 1, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(6393), 1, + STATE(6492), 1, sym_requirement_seq, - STATE(7886), 1, + STATE(8047), 1, sym_lambda_capture_specifier, - STATE(8549), 1, + STATE(8676), 1, sym__scope_resolution, - STATE(10395), 1, + STATE(10281), 1, sym_requires_parameter_list, - ACTIONS(12995), 2, + ACTIONS(13358), 2, sym_true, sym_false, - STATE(4170), 2, + STATE(4296), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6495), 8, + STATE(6647), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -670335,75 +692090,112 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [286260] = 21, + [286962] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7668), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7703), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(13362), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7701), 21, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + 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__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [287004] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7629), 1, + ACTIONS(7968), 1, anon_sym_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10812), 1, + ACTIONS(11298), 1, anon_sym_requires, - ACTIONS(11140), 1, + ACTIONS(11516), 1, anon_sym_DASH_GT, - ACTIONS(12778), 1, + ACTIONS(13108), 1, anon_sym___attribute__, - ACTIONS(12781), 1, + ACTIONS(13111), 1, anon_sym___attribute, - STATE(8485), 1, + STATE(8668), 1, sym__function_attributes_end, - STATE(8553), 1, + STATE(8730), 1, sym_trailing_return_type, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8391), 2, + STATE(8561), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7627), 3, + ACTIONS(7966), 3, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - STATE(7857), 3, + STATE(7917), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [286334] = 5, + [287078] = 5, ACTIONS(3), 1, sym_comment, - STATE(7574), 1, + STATE(4065), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7410), 4, + ACTIONS(7729), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(12999), 4, + ACTIONS(13365), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7408), 21, + ACTIONS(7727), 21, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -670425,153 +692217,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [286376] = 21, + [287120] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13368), 1, + sym_identifier, + ACTIONS(13372), 1, + sym_primitive_type, + STATE(3497), 1, + sym_alignas_qualifier, + STATE(7789), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7251), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(7669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7249), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(13370), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [287174] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(7968), 1, anon_sym_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10812), 1, - anon_sym_requires, - ACTIONS(11140), 1, - anon_sym_DASH_GT, - ACTIONS(12144), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(12147), 1, + ACTIONS(10584), 1, anon_sym___attribute, - STATE(8484), 1, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10819), 1, + anon_sym_DASH_GT, + ACTIONS(13205), 1, + anon_sym_requires, + STATE(8853), 1, sym__function_attributes_end, - STATE(8596), 1, + STATE(8949), 1, sym_trailing_return_type, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10476), 2, + ACTIONS(7966), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8561), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - STATE(7855), 3, + STATE(7994), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [286450] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 1, - anon_sym_LBRACK, - ACTIONS(1938), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10678), 1, - anon_sym_COLON_COLON, - ACTIONS(12774), 1, - sym_identifier, - ACTIONS(13002), 1, - anon_sym_LPAREN2, - ACTIONS(13004), 1, - anon_sym_LBRACE, - ACTIONS(13008), 1, - anon_sym_requires, - STATE(2431), 1, - sym_splice_specifier, - STATE(2514), 1, - sym__splice_specialization_specifier, - STATE(4755), 1, - sym_requirement_seq, - STATE(7906), 1, - sym_lambda_capture_specifier, - STATE(8639), 1, - sym__scope_resolution, - STATE(10313), 1, - sym_requires_parameter_list, - ACTIONS(13006), 2, - sym_true, - sym_false, - STATE(2534), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - STATE(4757), 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, - [286522] = 18, + [287247] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(8087), 1, + ACTIONS(7968), 1, anon_sym_LBRACK, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10266), 1, + ACTIONS(10624), 1, anon_sym_DASH_GT, - ACTIONS(12881), 1, + ACTIONS(13114), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12887), 1, + ACTIONS(13161), 1, anon_sym_requires, - STATE(7928), 1, + STATE(8035), 1, sym_trailing_return_type, - STATE(8264), 1, + STATE(8429), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(12884), 2, + ACTIONS(13158), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8239), 2, + STATE(8358), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8089), 7, + ACTIONS(7966), 7, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, @@ -670579,48 +692361,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [286589] = 18, + [287314] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7546), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(10022), 1, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10592), 1, + anon_sym_DASH_GT, + ACTIONS(12412), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12418), 1, anon_sym_requires, - ACTIONS(10254), 1, + ACTIONS(12858), 1, + anon_sym___asm, + STATE(8013), 1, + sym_trailing_return_type, + STATE(8125), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(12415), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(12855), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8313), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [287381] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8424), 1, + anon_sym_LBRACK, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10264), 1, + ACTIONS(10592), 1, anon_sym_DASH_GT, - ACTIONS(12150), 1, + ACTIONS(13248), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12532), 1, + ACTIONS(13254), 1, + anon_sym_requires, + ACTIONS(13377), 1, anon_sym___asm, - STATE(7917), 1, + STATE(8046), 1, sym_trailing_return_type, - STATE(8006), 1, + STATE(8127), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(7821), 2, + ACTIONS(13251), 2, anon_sym_final, anon_sym_override, - ACTIONS(12529), 2, + ACTIONS(13374), 2, anon_sym_asm, anon_sym___asm__, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8170), 2, + STATE(8297), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 7, + ACTIONS(8422), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -670628,48 +692459,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [286656] = 18, + [287448] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(8424), 1, anon_sym_LBRACK, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10264), 1, + ACTIONS(10624), 1, anon_sym_DASH_GT, - ACTIONS(12784), 1, + ACTIONS(13248), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12790), 1, + ACTIONS(13254), 1, + anon_sym_requires, + STATE(8046), 1, + sym_trailing_return_type, + STATE(8435), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13251), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8297), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8422), 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [287515] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8424), 1, + anon_sym_LBRACK, + ACTIONS(10382), 1, anon_sym_requires, - ACTIONS(12830), 1, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10592), 1, + anon_sym_DASH_GT, + ACTIONS(13248), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13377), 1, anon_sym___asm, - STATE(7927), 1, + STATE(8032), 1, sym_trailing_return_type, - STATE(8013), 1, + STATE(8081), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(12787), 2, + ACTIONS(8160), 2, anon_sym_final, anon_sym_override, - ACTIONS(12827), 2, + ACTIONS(13374), 2, anon_sym_asm, anon_sym___asm__, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8195), 2, + STATE(8297), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7627), 7, + ACTIONS(8422), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -670677,32 +692557,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [286723] = 7, + [287582] = 7, ACTIONS(3), 1, sym_comment, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7591), 2, + STATE(7715), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(13012), 3, + ACTIONS(13382), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(13380), 8, + anon_sym_AMP, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [287627] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3223), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7549), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7547), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [287668] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3116), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7553), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7551), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [287709] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3187), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7415), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7413), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [287750] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3199), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7429), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7427), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [287791] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3243), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7399), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(13010), 8, + ACTIONS(7397), 23, anon_sym_AMP, + anon_sym___extension__, anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(67), 13, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -670715,19 +692771,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [286768] = 5, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [287832] = 5, ACTIONS(3), 1, sym_comment, - STATE(3009), 1, + STATE(3164), 1, sym_attribute_specifier, ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7097), 3, + ACTIONS(7507), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7095), 23, + ACTIONS(7505), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___based, @@ -670751,19 +692811,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [286809] = 5, + [287873] = 5, ACTIONS(3), 1, sym_comment, - STATE(3020), 1, + STATE(3235), 1, sym_attribute_specifier, ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7101), 3, + ACTIONS(7425), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7099), 23, + ACTIONS(7423), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___based, @@ -670787,71 +692847,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [286850] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8087), 1, - anon_sym_LBRACK, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10264), 1, - anon_sym_DASH_GT, - ACTIONS(12881), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12887), 1, - anon_sym_requires, - ACTIONS(13017), 1, - anon_sym___asm, - STATE(7928), 1, - sym_trailing_return_type, - STATE(8014), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(12884), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(13014), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8239), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8089), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [286917] = 7, + [287914] = 7, ACTIONS(3), 1, sym_comment, - STATE(3482), 1, + STATE(3497), 1, sym_alignas_qualifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3090), 2, + STATE(3138), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(13022), 3, + ACTIONS(13386), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(13020), 8, + ACTIONS(13384), 8, anon_sym_AMP, anon_sym___based, anon_sym_signed, @@ -670874,33 +692885,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [286962] = 9, + [287959] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, - anon_sym_LBRACE, - ACTIONS(8167), 1, + ACTIONS(13216), 1, + anon_sym_decltype, + ACTIONS(13340), 1, + sym_auto, + STATE(3215), 1, + sym_decltype_auto, + ACTIONS(7225), 3, anon_sym_LPAREN2, - STATE(3483), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5523), 1, - sym_argument_list, - STATE(5524), 1, - sym_initializer_list, - ACTIONS(6798), 2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7223), 23, anon_sym_AMP, - anon_sym_const, - ACTIONS(8827), 4, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6800), 18, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -670914,81 +692920,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - [287011] = 18, + sym_primitive_type, + sym_identifier, + [288002] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(10254), 1, + STATE(3103), 1, + sym_attribute_specifier, + ACTIONS(43), 2, anon_sym___attribute__, - ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(10266), 1, - anon_sym_DASH_GT, - ACTIONS(12150), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12170), 1, - anon_sym_requires, - STATE(7926), 1, - sym_trailing_return_type, - STATE(8243), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12167), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8170), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 7, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [287078] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(3482), 1, - sym_alignas_qualifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7595), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(13026), 3, + ACTIONS(7437), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(13024), 8, + ACTIONS(7435), 23, anon_sym_AMP, + anon_sym___extension__, anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(67), 13, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -671001,32 +692954,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [287123] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(3482), 1, - sym_alignas_qualifier, - ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3090), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(13030), 3, + sym_primitive_type, + sym_identifier, + [288043] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3175), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7455), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(13028), 8, + ACTIONS(7453), 23, anon_sym_AMP, + anon_sym___extension__, anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(67), 13, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -671039,176 +692990,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [287168] = 18, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [288084] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(10022), 1, - anon_sym_requires, - ACTIONS(10254), 1, + STATE(3139), 1, + sym_attribute_specifier, + ACTIONS(43), 2, anon_sym___attribute__, - ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(10266), 1, - anon_sym_DASH_GT, - ACTIONS(12150), 1, - anon_sym_LBRACK_LBRACK, - STATE(7917), 1, - sym_trailing_return_type, - STATE(8300), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7821), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8170), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 7, - anon_sym_RPAREN, + ACTIONS(7523), 3, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [287235] = 18, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7521), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [288125] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7629), 1, - anon_sym_LBRACK, - ACTIONS(10022), 1, - anon_sym_requires, - ACTIONS(10254), 1, + STATE(3212), 1, + sym_attribute_specifier, + ACTIONS(43), 2, anon_sym___attribute__, - ACTIONS(10256), 1, anon_sym___attribute, - ACTIONS(10266), 1, - anon_sym_DASH_GT, - ACTIONS(12784), 1, - anon_sym_LBRACK_LBRACK, - STATE(7938), 1, - sym_trailing_return_type, - STATE(8256), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7821), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8195), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7627), 7, - anon_sym_RPAREN, + ACTIONS(7533), 3, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [287302] = 21, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7531), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [288166] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10437), 1, + ACTIONS(10819), 1, anon_sym_DASH_GT, - ACTIONS(12747), 1, + ACTIONS(13149), 1, anon_sym_requires, - STATE(8734), 1, + STATE(8845), 1, sym__function_attributes_end, - STATE(8823), 1, + STATE(8972), 1, sym_trailing_return_type, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7544), 2, + ACTIONS(7791), 2, anon_sym_LPAREN2, anon_sym_LBRACE, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - STATE(7881), 3, + STATE(7991), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [287375] = 5, + [288239] = 7, ACTIONS(3), 1, sym_comment, - STATE(3035), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7105), 3, + STATE(3497), 1, + sym_alignas_qualifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7725), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(13390), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7103), 23, + ACTIONS(13388), 8, anon_sym_AMP, - anon_sym___extension__, anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(67), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -671221,165 +693156,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [287416] = 18, + [288284] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7968), 1, anon_sym_LBRACK, - ACTIONS(10022), 1, + ACTIONS(10382), 1, anon_sym_requires, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10264), 1, + ACTIONS(10624), 1, anon_sym_DASH_GT, - ACTIONS(12784), 1, + ACTIONS(13114), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12830), 1, - anon_sym___asm, - STATE(7938), 1, + STATE(8057), 1, sym_trailing_return_type, - STATE(8007), 1, + STATE(8434), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(7821), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(12827), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - STATE(7838), 2, + ACTIONS(8160), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8195), 2, + STATE(8358), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7627), 7, - anon_sym_COMMA, + ACTIONS(7966), 7, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [287483] = 18, + [288351] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7629), 1, + ACTIONS(7968), 1, anon_sym_LBRACK, - ACTIONS(10254), 1, + ACTIONS(10382), 1, + anon_sym_requires, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10266), 1, + ACTIONS(10592), 1, anon_sym_DASH_GT, - ACTIONS(12784), 1, + ACTIONS(13114), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12790), 1, - anon_sym_requires, - STATE(7927), 1, + ACTIONS(13194), 1, + anon_sym___asm, + STATE(8057), 1, sym_trailing_return_type, - STATE(8255), 1, + STATE(8080), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12787), 2, + ACTIONS(8160), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + ACTIONS(13191), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8195), 2, + STATE(8358), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7627), 7, - anon_sym_RPAREN, + ACTIONS(7966), 7, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [287550] = 5, + [288418] = 7, ACTIONS(3), 1, sym_comment, - STATE(3077), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7089), 3, + STATE(3497), 1, + sym_alignas_qualifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3138), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(13394), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7087), 23, + ACTIONS(13392), 8, anon_sym_AMP, - anon_sym___extension__, anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, sym_primitive_type, sym_identifier, - [287591] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12855), 1, - anon_sym_decltype, - ACTIONS(12986), 1, - sym_auto, - STATE(3030), 1, - sym_decltype_auto, - ACTIONS(6800), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(6798), 23, - anon_sym_AMP, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -671392,52 +693292,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [287634] = 18, + [288463] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8087), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(10022), 1, + ACTIONS(10382), 1, anon_sym_requires, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10264), 1, + ACTIONS(10592), 1, anon_sym_DASH_GT, - ACTIONS(12881), 1, + ACTIONS(12412), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13017), 1, + ACTIONS(12858), 1, anon_sym___asm, - STATE(7944), 1, + STATE(7999), 1, sym_trailing_return_type, - STATE(8009), 1, + STATE(8132), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(7821), 2, + ACTIONS(8160), 2, anon_sym_final, anon_sym_override, - ACTIONS(13014), 2, + ACTIONS(12855), 2, anon_sym_asm, anon_sym___asm__, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8239), 2, + STATE(8313), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8089), 7, + ACTIONS(7791), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -671445,84 +693341,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [287701] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3081), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7189), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(7187), 23, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [287742] = 18, + [288530] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7546), 1, + ACTIONS(7968), 1, anon_sym_LBRACK, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10264), 1, + ACTIONS(10592), 1, anon_sym_DASH_GT, - ACTIONS(12150), 1, + ACTIONS(13114), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12170), 1, + ACTIONS(13161), 1, anon_sym_requires, - ACTIONS(12532), 1, + ACTIONS(13194), 1, anon_sym___asm, - STATE(7926), 1, + STATE(8035), 1, sym_trailing_return_type, - STATE(8012), 1, + STATE(8126), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(12167), 2, + ACTIONS(13158), 2, anon_sym_final, anon_sym_override, - ACTIONS(12529), 2, + ACTIONS(13191), 2, anon_sym_asm, anon_sym___asm__, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8170), 2, + STATE(8358), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 7, + ACTIONS(7966), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -671530,223 +693390,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [287809] = 5, + [288597] = 18, ACTIONS(3), 1, sym_comment, - STATE(3112), 1, - sym_attribute_specifier, - ACTIONS(43), 2, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10382), 1, + anon_sym_requires, + ACTIONS(10582), 1, anon_sym___attribute__, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(7055), 3, + ACTIONS(10624), 1, + anon_sym_DASH_GT, + ACTIONS(12412), 1, + anon_sym_LBRACK_LBRACK, + STATE(7999), 1, + sym_trailing_return_type, + STATE(8373), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8160), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8313), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 7, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(7053), 23, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [287850] = 21, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [288664] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7629), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10437), 1, + ACTIONS(10624), 1, anon_sym_DASH_GT, - ACTIONS(12869), 1, + ACTIONS(12412), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12418), 1, anon_sym_requires, - STATE(8717), 1, - sym__function_attributes_end, - STATE(8835), 1, + STATE(8013), 1, sym_trailing_return_type, - STATE(8982), 1, + STATE(8410), 1, + sym__function_attributes_end, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7627), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - ACTIONS(10476), 2, + ACTIONS(12415), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8391), 2, + STATE(8313), 2, sym__function_postfix, sym_requires_clause, - STATE(7876), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [287923] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3058), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7059), 3, + ACTIONS(7791), 7, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(7057), 23, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [287964] = 5, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [288731] = 9, ACTIONS(3), 1, sym_comment, - STATE(3128), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7125), 3, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(8569), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(7123), 23, + STATE(3537), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5537), 1, + sym_argument_list, + STATE(5538), 1, + sym_initializer_list, + ACTIONS(7223), 2, anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [288005] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3102), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7063), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(7061), 23, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, + ACTIONS(9214), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [288046] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3114), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7135), 3, - anon_sym_LPAREN2, + ACTIONS(7225), 18, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7133), 23, - anon_sym_AMP, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -671760,57 +693528,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [288087] = 5, + [288780] = 18, ACTIONS(3), 1, sym_comment, - STATE(3135), 1, - sym_attribute_specifier, - ACTIONS(43), 2, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(8424), 1, + anon_sym_LBRACK, + ACTIONS(10382), 1, + anon_sym_requires, + ACTIONS(10582), 1, anon_sym___attribute__, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(7067), 3, + ACTIONS(10624), 1, + anon_sym_DASH_GT, + ACTIONS(13248), 1, + anon_sym_LBRACK_LBRACK, + STATE(8032), 1, + sym_trailing_return_type, + STATE(8372), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8160), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8297), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8422), 7, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(7065), 23, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [288128] = 5, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [288847] = 5, ACTIONS(3), 1, sym_comment, - STATE(2994), 1, + STATE(3246), 1, sym_attribute_specifier, ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7093), 3, + ACTIONS(7433), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7091), 23, + ACTIONS(7431), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___based, @@ -671834,436 +693613,592 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [288169] = 18, + [288888] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(8087), 1, + ACTIONS(7968), 1, anon_sym_LBRACK, - ACTIONS(10022), 1, - anon_sym_requires, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10266), 1, - anon_sym_DASH_GT, - ACTIONS(12881), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - STATE(7944), 1, - sym_trailing_return_type, - STATE(8321), 1, + ACTIONS(10819), 1, + anon_sym_DASH_GT, + ACTIONS(13205), 1, + anon_sym_requires, + STATE(8512), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(8513), 1, + sym_trailing_return_type, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7821), 2, + ACTIONS(13202), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8010), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8239), 2, + STATE(8561), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8089), 7, + ACTIONS(7966), 6, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [288236] = 18, + [288954] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7629), 1, + ACTIONS(8424), 1, anon_sym_LBRACK, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10437), 1, + ACTIONS(10819), 1, anon_sym_DASH_GT, - ACTIONS(10478), 1, + ACTIONS(13399), 1, anon_sym_requires, - STATE(8390), 1, - sym__function_attributes_end, - STATE(8392), 1, + STATE(8517), 1, sym_trailing_return_type, - STATE(8982), 1, + STATE(8518), 1, + sym__function_attributes_end, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10476), 2, + ACTIONS(13396), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8391), 2, + STATE(8550), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7627), 6, + ACTIONS(8422), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [288302] = 18, + [289020] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(8087), 1, + ACTIONS(8424), 1, anon_sym_LBRACK, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10437), 1, + ACTIONS(10819), 1, anon_sym_DASH_GT, - ACTIONS(10478), 1, + ACTIONS(10861), 1, anon_sym_requires, - STATE(8398), 1, + STATE(8551), 1, sym_trailing_return_type, - STATE(8399), 1, + STATE(8593), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8397), 2, + STATE(8550), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8089), 6, + ACTIONS(8422), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [288368] = 18, + [289086] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7629), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10437), 1, + ACTIONS(10819), 1, anon_sym_DASH_GT, - ACTIONS(12869), 1, + ACTIONS(10861), 1, anon_sym_requires, - STATE(8440), 1, + STATE(8583), 1, sym__function_attributes_end, - STATE(8441), 1, + STATE(8585), 1, sym_trailing_return_type, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(12866), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8391), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7627), 6, + ACTIONS(7791), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [288434] = 18, + [289152] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(8087), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10437), 1, + ACTIONS(10819), 1, anon_sym_DASH_GT, - ACTIONS(13035), 1, + ACTIONS(13149), 1, anon_sym_requires, - STATE(8443), 1, - sym_trailing_return_type, - STATE(8444), 1, + STATE(8510), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(8511), 1, + sym_trailing_return_type, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13032), 2, + ACTIONS(13146), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8397), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8089), 6, + ACTIONS(7791), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [288500] = 18, + [289218] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(7968), 1, anon_sym_LBRACK, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10437), 1, + ACTIONS(10819), 1, anon_sym_DASH_GT, - ACTIONS(12747), 1, + ACTIONS(10861), 1, anon_sym_requires, - STATE(8437), 1, + STATE(8559), 1, sym__function_attributes_end, - STATE(8438), 1, + STATE(8565), 1, sym_trailing_return_type, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(12744), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8561), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 6, + ACTIONS(7966), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [288566] = 18, + [289284] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(9429), 1, + anon_sym___attribute, + ACTIONS(11172), 1, + anon_sym_LPAREN2, + ACTIONS(11174), 1, + anon_sym_STAR, + ACTIONS(11176), 1, + anon_sym_AMP_AMP, + ACTIONS(11178), 1, + anon_sym_AMP, + ACTIONS(11186), 1, anon_sym_LBRACK, - ACTIONS(10254), 1, + STATE(4330), 1, + sym_parameter_list, + STATE(8314), 1, + sym__function_declarator_seq, + STATE(8380), 1, + sym__abstract_declarator, + STATE(8312), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9427), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, + anon_sym_COLON, + 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, + [289337] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1670), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10988), 1, + anon_sym_COLON_COLON, + ACTIONS(13168), 1, + sym_identifier, + ACTIONS(13402), 1, + anon_sym_LPAREN2, + ACTIONS(13406), 1, + anon_sym_requires, + STATE(6581), 1, + sym_splice_specifier, + STATE(7121), 1, + sym__splice_specialization_specifier, + STATE(8060), 1, + sym_lambda_capture_specifier, + STATE(8700), 1, + sym__scope_resolution, + ACTIONS(13404), 2, + sym_true, + sym_false, + STATE(7122), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(8424), 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, + [289400] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1670), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11111), 1, + anon_sym_COLON_COLON, + ACTIONS(13104), 1, + sym_identifier, + ACTIONS(13313), 1, + anon_sym_requires, + ACTIONS(13408), 1, + anon_sym_LPAREN2, + STATE(3711), 1, + sym__splice_specialization_specifier, + STATE(3719), 1, + sym_splice_specifier, + STATE(8001), 1, + sym_lambda_capture_specifier, + STATE(8707), 1, + sym__scope_resolution, + ACTIONS(13315), 2, + sym_true, + sym_false, + STATE(3728), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(6288), 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, + [289463] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1670), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3008), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(13156), 1, + sym_identifier, + ACTIONS(13283), 1, + anon_sym_requires, + ACTIONS(13410), 1, + anon_sym_LPAREN2, + STATE(2638), 1, + sym_splice_specifier, + STATE(2696), 1, + sym__splice_specialization_specifier, + STATE(8045), 1, + sym_lambda_capture_specifier, + STATE(8687), 1, + sym__scope_resolution, + ACTIONS(13281), 2, + sym_true, + sym_false, + STATE(2678), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5042), 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, + [289526] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(8424), 1, + anon_sym_LBRACK, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10437), 1, + ACTIONS(10919), 1, anon_sym_DASH_GT, - ACTIONS(10478), 1, + ACTIONS(10921), 1, anon_sym_requires, - STATE(8454), 1, - sym__function_attributes_end, - STATE(8456), 1, + ACTIONS(13242), 1, + anon_sym___attribute__, + ACTIONS(13245), 1, + anon_sym___attribute, + STATE(8428), 1, sym_trailing_return_type, - STATE(8982), 1, + STATE(8455), 1, + sym__function_attributes_end, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8550), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 6, + ACTIONS(8422), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - [288632] = 26, + anon_sym_EQ, + anon_sym_GT2, + [289591] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(143), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(3063), 1, - anon_sym_COLON_COLON, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11498), 1, + STATE(7682), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7225), 3, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(13038), 1, + anon_sym_AMP_AMP, + ACTIONS(13412), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7223), 19, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - ACTIONS(13040), 1, - anon_sym_template, - STATE(3646), 1, - sym_template_type, - STATE(3649), 1, - sym_dependent_type_identifier, - STATE(3650), 1, - sym_qualified_type_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(3871), 1, - sym_pointer_type_declarator, - STATE(3872), 1, - sym_template_function, - STATE(3876), 1, - sym_destructor_name, - STATE(3877), 1, - sym_dependent_identifier, - STATE(3878), 1, - sym_qualified_identifier, - STATE(3879), 1, - sym_operator_name, - STATE(7622), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(9375), 1, - sym_operator_cast, - STATE(9516), 1, - sym_qualified_operator_cast_identifier, - STATE(10974), 1, - sym_ms_based_modifier, - STATE(10976), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [288713] = 17, + [289630] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2078), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10686), 1, - anon_sym_COLON_COLON, - ACTIONS(12756), 1, - sym_identifier, - ACTIONS(12970), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13313), 1, anon_sym_requires, - ACTIONS(13042), 1, + ACTIONS(13408), 1, anon_sym_LPAREN2, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, + ACTIONS(13415), 1, + sym_identifier, + ACTIONS(13417), 1, + anon_sym_COLON_COLON, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(7936), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8001), 1, sym_lambda_capture_specifier, - STATE(8593), 1, + STATE(8685), 1, sym__scope_resolution, - ACTIONS(13044), 2, + ACTIONS(13419), 2, sym_true, sym_false, - STATE(2067), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(3500), 8, + STATE(8597), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -672272,44 +694207,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [288776] = 17, + [289693] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13046), 1, + ACTIONS(13421), 1, sym_identifier, - ACTIONS(13048), 1, + ACTIONS(13423), 1, anon_sym_LPAREN2, - ACTIONS(13050), 1, + ACTIONS(13425), 1, anon_sym_COLON_COLON, - ACTIONS(13054), 1, + ACTIONS(13429), 1, anon_sym_requires, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7912), 1, + STATE(8008), 1, sym_lambda_capture_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8576), 1, + STATE(8762), 1, sym__scope_resolution, - ACTIONS(13052), 2, + ACTIONS(13427), 2, sym_true, sym_false, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(2897), 8, + STATE(8697), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -672318,44 +694253,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [288839] = 17, + [289756] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10299), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10697), 1, - anon_sym_COLON_COLON, - ACTIONS(12750), 1, - sym_identifier, - ACTIONS(12997), 1, + ACTIONS(13313), 1, anon_sym_requires, - ACTIONS(13056), 1, + ACTIONS(13408), 1, anon_sym_LPAREN2, - STATE(4189), 1, + ACTIONS(13421), 1, + sym_identifier, + ACTIONS(13425), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7130), 1, - sym_splice_specifier, - STATE(7886), 1, + STATE(8052), 1, sym_lambda_capture_specifier, - STATE(8634), 1, + STATE(8222), 1, + sym_splice_specifier, + STATE(8762), 1, sym__scope_resolution, - ACTIONS(13058), 2, + ACTIONS(13431), 2, sym_true, sym_false, - STATE(4170), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8618), 8, + STATE(9391), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -672364,44 +694299,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [288902] = 17, + [289819] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - ACTIONS(10697), 1, + ACTIONS(10988), 1, anon_sym_COLON_COLON, - ACTIONS(12750), 1, + ACTIONS(13168), 1, sym_identifier, - ACTIONS(12997), 1, - anon_sym_requires, - ACTIONS(13056), 1, + ACTIONS(13402), 1, anon_sym_LPAREN2, - STATE(4189), 1, - sym__splice_specialization_specifier, - STATE(7130), 1, + ACTIONS(13406), 1, + anon_sym_requires, + STATE(6581), 1, sym_splice_specifier, - STATE(7886), 1, + STATE(7121), 1, + sym__splice_specialization_specifier, + STATE(8060), 1, sym_lambda_capture_specifier, - STATE(8634), 1, + STATE(8700), 1, sym__scope_resolution, - ACTIONS(13060), 2, + ACTIONS(13433), 2, sym_true, sym_false, - STATE(4170), 2, + STATE(7122), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8582), 8, + STATE(8431), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -672410,44 +694345,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [288965] = 17, + [289882] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10299), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(10621), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - ACTIONS(12770), 1, + ACTIONS(13119), 1, sym_identifier, - ACTIONS(13062), 1, - anon_sym_LPAREN2, - ACTIONS(13066), 1, + ACTIONS(13323), 1, anon_sym_requires, - STATE(6603), 1, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + STATE(2104), 1, sym_splice_specifier, - STATE(7033), 1, + STATE(2170), 1, sym__splice_specialization_specifier, - STATE(7922), 1, + STATE(8030), 1, sym_lambda_capture_specifier, - STATE(8612), 1, + STATE(8763), 1, sym__scope_resolution, - ACTIONS(13064), 2, + ACTIONS(13321), 2, sym_true, sym_false, - STATE(7034), 2, + STATE(2147), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8263), 8, + STATE(3657), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -672456,44 +694391,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289028] = 17, + [289945] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2300), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(12942), 1, - anon_sym_requires, - ACTIONS(13068), 1, + ACTIONS(11010), 1, + anon_sym_COLON_COLON, + ACTIONS(13135), 1, sym_identifier, - ACTIONS(13070), 1, + ACTIONS(13294), 1, + anon_sym_requires, + ACTIONS(13437), 1, anon_sym_LPAREN2, - ACTIONS(13072), 1, - anon_sym_COLON_COLON, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(7086), 1, + STATE(2547), 1, sym_splice_specifier, - STATE(7935), 1, + STATE(2601), 1, + sym__splice_specialization_specifier, + STATE(8041), 1, sym_lambda_capture_specifier, - STATE(8590), 1, + STATE(8682), 1, sym__scope_resolution, - ACTIONS(13074), 2, + ACTIONS(13292), 2, sym_true, sym_false, - STATE(2874), 2, + STATE(2615), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8446), 8, + STATE(4982), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -672502,44 +694437,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289091] = 17, + [290008] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4780), 1, - anon_sym_COLON_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(3092), 1, anon_sym_LBRACK_COLON, - ACTIONS(12797), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11097), 1, + anon_sym_COLON_COLON, + ACTIONS(13100), 1, sym_identifier, - ACTIONS(13076), 1, - anon_sym_LPAREN2, - ACTIONS(13080), 1, + ACTIONS(13302), 1, anon_sym_requires, - STATE(4691), 1, + ACTIONS(13439), 1, + anon_sym_LPAREN2, + STATE(2605), 1, sym_splice_specifier, - STATE(5263), 1, + STATE(2659), 1, sym__splice_specialization_specifier, - STATE(7918), 1, + STATE(8024), 1, sym_lambda_capture_specifier, - STATE(8584), 1, + STATE(8702), 1, sym__scope_resolution, - ACTIONS(13078), 2, + ACTIONS(13441), 2, sym_true, sym_false, - STATE(5166), 2, + STATE(2661), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(7941), 8, + STATE(5240), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -672548,44 +694483,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289154] = 17, + [290071] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2744), 1, + ACTIONS(3092), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10711), 1, + ACTIONS(11097), 1, anon_sym_COLON_COLON, - ACTIONS(12758), 1, + ACTIONS(13100), 1, sym_identifier, - ACTIONS(12934), 1, + ACTIONS(13302), 1, anon_sym_requires, - ACTIONS(13082), 1, + ACTIONS(13439), 1, anon_sym_LPAREN2, - STATE(2677), 1, + STATE(2605), 1, sym_splice_specifier, - STATE(2837), 1, + STATE(2659), 1, sym__splice_specialization_specifier, - STATE(7894), 1, + STATE(8024), 1, sym_lambda_capture_specifier, - STATE(8588), 1, + STATE(8702), 1, sym__scope_resolution, - ACTIONS(13084), 2, + ACTIONS(13443), 2, sym_true, sym_false, - STATE(2802), 2, + STATE(2661), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5433), 8, + STATE(5169), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -672594,44 +694529,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289217] = 17, + [290134] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10299), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10697), 1, - anon_sym_COLON_COLON, - ACTIONS(12750), 1, + ACTIONS(13421), 1, sym_identifier, - ACTIONS(12997), 1, - anon_sym_requires, - ACTIONS(13056), 1, + ACTIONS(13423), 1, anon_sym_LPAREN2, - STATE(4189), 1, + ACTIONS(13425), 1, + anon_sym_COLON_COLON, + ACTIONS(13429), 1, + anon_sym_requires, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7130), 1, - sym_splice_specifier, - STATE(7886), 1, + STATE(8008), 1, sym_lambda_capture_specifier, - STATE(8634), 1, + STATE(8222), 1, + sym_splice_specifier, + STATE(8762), 1, sym__scope_resolution, - ACTIONS(13086), 2, + ACTIONS(13445), 2, sym_true, sym_false, - STATE(4170), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6352), 8, + STATE(3038), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -672640,44 +694575,91 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289280] = 17, + [290197] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10919), 1, + anon_sym_DASH_GT, + ACTIONS(10921), 1, + anon_sym_requires, + ACTIONS(12406), 1, + anon_sym___attribute__, + ACTIONS(12409), 1, + anon_sym___attribute, + STATE(8441), 1, + sym_trailing_return_type, + STATE(8497), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [290262] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2744), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10711), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11048), 1, anon_sym_COLON_COLON, - ACTIONS(12758), 1, + ACTIONS(13123), 1, sym_identifier, - ACTIONS(12934), 1, + ACTIONS(13360), 1, anon_sym_requires, - ACTIONS(13082), 1, + ACTIONS(13447), 1, anon_sym_LPAREN2, - STATE(2677), 1, - sym_splice_specifier, - STATE(2837), 1, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(7894), 1, + STATE(7326), 1, + sym_splice_specifier, + STATE(8047), 1, sym_lambda_capture_specifier, - STATE(8588), 1, + STATE(8745), 1, sym__scope_resolution, - ACTIONS(13088), 2, + ACTIONS(13449), 2, sym_true, sym_false, - STATE(2802), 2, + STATE(4296), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5434), 8, + STATE(8680), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -672686,44 +694668,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289343] = 17, + [290325] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2648), 1, + ACTIONS(3104), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10727), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(12764), 1, + ACTIONS(13137), 1, sym_identifier, - ACTIONS(12926), 1, + ACTIONS(13272), 1, anon_sym_requires, - ACTIONS(13090), 1, + ACTIONS(13451), 1, anon_sym_LPAREN2, - STATE(2519), 1, + STATE(2742), 1, sym_splice_specifier, - STATE(2567), 1, + STATE(2921), 1, sym__splice_specialization_specifier, - STATE(7908), 1, + STATE(8042), 1, sym_lambda_capture_specifier, - STATE(8604), 1, + STATE(8686), 1, sym__scope_resolution, - ACTIONS(13092), 2, + ACTIONS(13270), 2, sym_true, sym_false, - STATE(2577), 2, + STATE(2934), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5157), 8, + STATE(5551), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -672732,44 +694714,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289406] = 17, + [290388] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - ACTIONS(10621), 1, + ACTIONS(11048), 1, anon_sym_COLON_COLON, - ACTIONS(12770), 1, + ACTIONS(13123), 1, sym_identifier, - ACTIONS(13062), 1, - anon_sym_LPAREN2, - ACTIONS(13066), 1, + ACTIONS(13360), 1, anon_sym_requires, - STATE(6603), 1, - sym_splice_specifier, - STATE(7033), 1, + ACTIONS(13447), 1, + anon_sym_LPAREN2, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(7922), 1, + STATE(7326), 1, + sym_splice_specifier, + STATE(8047), 1, sym_lambda_capture_specifier, - STATE(8612), 1, + STATE(8745), 1, sym__scope_resolution, - ACTIONS(13094), 2, + ACTIONS(13453), 2, sym_true, sym_false, - STATE(7034), 2, + STATE(4296), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8271), 8, + STATE(6462), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -672778,126 +694760,138 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289469] = 6, + [290451] = 18, ACTIONS(3), 1, sym_comment, - STATE(4035), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7084), 2, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(8424), 1, + anon_sym_LBRACK, + ACTIONS(10582), 1, anon_sym___attribute__, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(7081), 3, - anon_sym_COMMA, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10921), 1, + anon_sym_requires, + ACTIONS(11044), 1, + anon_sym_DASH_GT, + STATE(8428), 1, + sym_trailing_return_type, + STATE(8630), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8550), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8422), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_GT2, - ACTIONS(9771), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6627), 17, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [289510] = 18, + anon_sym_EQ, + anon_sym_try, + [290516] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(8087), 1, + ACTIONS(7968), 1, anon_sym_LBRACK, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10606), 1, - anon_sym_DASH_GT, - ACTIONS(10753), 1, + ACTIONS(10921), 1, anon_sym_requires, - STATE(8268), 1, + ACTIONS(11044), 1, + anon_sym_DASH_GT, + STATE(8374), 1, sym_trailing_return_type, - STATE(8516), 1, + STATE(8659), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8397), 2, + STATE(8561), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8089), 5, + ACTIONS(7966), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [289575] = 17, + [290581] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3443), 1, + ACTIONS(3008), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10719), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(12760), 1, + ACTIONS(13156), 1, sym_identifier, - ACTIONS(12959), 1, + ACTIONS(13283), 1, anon_sym_requires, - ACTIONS(13096), 1, + ACTIONS(13410), 1, anon_sym_LPAREN2, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(4072), 1, + STATE(2638), 1, sym_splice_specifier, - STATE(7903), 1, + STATE(2696), 1, + sym__splice_specialization_specifier, + STATE(8045), 1, sym_lambda_capture_specifier, - STATE(8571), 1, + STATE(8687), 1, sym__scope_resolution, - ACTIONS(13098), 2, + ACTIONS(13455), 2, sym_true, sym_false, - STATE(3624), 2, + STATE(2678), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6578), 8, + STATE(5166), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -672906,44 +694900,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289638] = 17, + [290644] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3443), 1, + ACTIONS(3092), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10719), 1, + ACTIONS(11097), 1, anon_sym_COLON_COLON, - ACTIONS(12760), 1, + ACTIONS(13100), 1, sym_identifier, - ACTIONS(12959), 1, + ACTIONS(13302), 1, anon_sym_requires, - ACTIONS(13096), 1, + ACTIONS(13439), 1, anon_sym_LPAREN2, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(4072), 1, + STATE(2605), 1, sym_splice_specifier, - STATE(7903), 1, + STATE(2659), 1, + sym__splice_specialization_specifier, + STATE(8024), 1, sym_lambda_capture_specifier, - STATE(8571), 1, + STATE(8702), 1, sym__scope_resolution, - ACTIONS(13100), 2, + ACTIONS(13300), 2, sym_true, sym_false, - STATE(3624), 2, + STATE(2661), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6453), 8, + STATE(5138), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -672952,44 +694946,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289701] = 17, + [290707] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10743), 1, + ACTIONS(11111), 1, anon_sym_COLON_COLON, - ACTIONS(12776), 1, + ACTIONS(13104), 1, sym_identifier, - ACTIONS(12942), 1, + ACTIONS(13313), 1, anon_sym_requires, - ACTIONS(13070), 1, + ACTIONS(13408), 1, anon_sym_LPAREN2, - STATE(3634), 1, - sym_splice_specifier, - STATE(3640), 1, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(7935), 1, + STATE(3719), 1, + sym_splice_specifier, + STATE(8001), 1, sym_lambda_capture_specifier, - STATE(8631), 1, + STATE(8707), 1, sym__scope_resolution, - ACTIONS(12972), 2, + ACTIONS(13457), 2, sym_true, sym_false, - STATE(3624), 2, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6154), 8, + STATE(6282), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -672998,44 +694992,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289764] = 17, + [290770] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10299), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(10621), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11111), 1, anon_sym_COLON_COLON, - ACTIONS(12770), 1, + ACTIONS(13104), 1, sym_identifier, - ACTIONS(13062), 1, - anon_sym_LPAREN2, - ACTIONS(13066), 1, + ACTIONS(13313), 1, anon_sym_requires, - STATE(6603), 1, - sym_splice_specifier, - STATE(7033), 1, + ACTIONS(13408), 1, + anon_sym_LPAREN2, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(7922), 1, + STATE(3719), 1, + sym_splice_specifier, + STATE(8001), 1, sym_lambda_capture_specifier, - STATE(8612), 1, + STATE(8707), 1, sym__scope_resolution, - ACTIONS(13102), 2, + ACTIONS(13459), 2, sym_true, sym_false, - STATE(7034), 2, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8265), 8, + STATE(5245), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -673044,44 +695038,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289827] = 17, + [290833] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2732), 1, + ACTIONS(3008), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10735), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(12772), 1, + ACTIONS(13156), 1, sym_identifier, - ACTIONS(12908), 1, + ACTIONS(13283), 1, anon_sym_requires, - ACTIONS(13104), 1, + ACTIONS(13410), 1, anon_sym_LPAREN2, - STATE(2530), 1, + STATE(2638), 1, sym_splice_specifier, - STATE(2597), 1, + STATE(2696), 1, sym__splice_specialization_specifier, - STATE(7914), 1, + STATE(8045), 1, sym_lambda_capture_specifier, - STATE(8624), 1, + STATE(8687), 1, sym__scope_resolution, - ACTIONS(12906), 2, + ACTIONS(13461), 2, sym_true, sym_false, - STATE(2598), 2, + STATE(2678), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5028), 8, + STATE(5252), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -673090,184 +695084,91 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289890] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10751), 1, - anon_sym_DASH_GT, - ACTIONS(12144), 1, - anon_sym___attribute__, - ACTIONS(12147), 1, - anon_sym___attribute, - ACTIONS(12824), 1, - anon_sym_requires, - STATE(8314), 1, - sym_trailing_return_type, - STATE(8335), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12744), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [289955] = 18, + [290896] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7629), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10751), 1, + ACTIONS(10919), 1, anon_sym_DASH_GT, - ACTIONS(12778), 1, + ACTIONS(12406), 1, anon_sym___attribute__, - ACTIONS(12781), 1, + ACTIONS(12409), 1, anon_sym___attribute, - ACTIONS(12872), 1, + ACTIONS(13188), 1, anon_sym_requires, - STATE(8315), 1, + STATE(8398), 1, sym_trailing_return_type, - STATE(8337), 1, + STATE(8471), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(12866), 2, + ACTIONS(13146), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8391), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7627), 5, + ACTIONS(7791), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [290020] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 1, - anon_sym_LBRACK, - ACTIONS(1938), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10678), 1, - anon_sym_COLON_COLON, - ACTIONS(12774), 1, - sym_identifier, - ACTIONS(13008), 1, - anon_sym_requires, - ACTIONS(13106), 1, - anon_sym_LPAREN2, - STATE(2431), 1, - sym_splice_specifier, - STATE(2514), 1, - sym__splice_specialization_specifier, - STATE(7906), 1, - sym_lambda_capture_specifier, - STATE(8639), 1, - sym__scope_resolution, - ACTIONS(13108), 2, - sym_true, - sym_false, - STATE(2534), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - STATE(4799), 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, - [290083] = 17, + [290961] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(1938), 1, + ACTIONS(2300), 1, anon_sym_LBRACK_COLON, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10678), 1, + ACTIONS(11010), 1, anon_sym_COLON_COLON, - ACTIONS(12774), 1, + ACTIONS(13135), 1, sym_identifier, - ACTIONS(13008), 1, + ACTIONS(13294), 1, anon_sym_requires, - ACTIONS(13106), 1, + ACTIONS(13437), 1, anon_sym_LPAREN2, - STATE(2431), 1, + STATE(2547), 1, sym_splice_specifier, - STATE(2514), 1, + STATE(2601), 1, sym__splice_specialization_specifier, - STATE(7906), 1, + STATE(8041), 1, sym_lambda_capture_specifier, - STATE(8639), 1, + STATE(8682), 1, sym__scope_resolution, - ACTIONS(13006), 2, + ACTIONS(13463), 2, sym_true, sym_false, - STATE(2534), 2, + STATE(2615), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(4757), 8, + STATE(4936), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -673276,137 +695177,91 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290146] = 18, + [291024] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(8087), 1, + ACTIONS(7968), 1, anon_sym_LBRACK, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10751), 1, + ACTIONS(10919), 1, anon_sym_DASH_GT, - ACTIONS(12875), 1, + ACTIONS(13108), 1, anon_sym___attribute__, - ACTIONS(12878), 1, + ACTIONS(13111), 1, anon_sym___attribute, - ACTIONS(13110), 1, + ACTIONS(13236), 1, anon_sym_requires, - STATE(8316), 1, + STATE(8401), 1, sym_trailing_return_type, - STATE(8338), 1, + STATE(8472), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13032), 2, + ACTIONS(13202), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8397), 2, + STATE(8561), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8089), 5, + ACTIONS(7966), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [290211] = 17, + [291089] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(12942), 1, + ACTIONS(13313), 1, anon_sym_requires, - ACTIONS(13046), 1, - sym_identifier, - ACTIONS(13050), 1, - anon_sym_COLON_COLON, - ACTIONS(13070), 1, + ACTIONS(13408), 1, anon_sym_LPAREN2, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7920), 1, - sym_lambda_capture_specifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8576), 1, - sym__scope_resolution, - ACTIONS(13113), 2, - sym_true, - sym_false, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - STATE(9165), 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, - [290274] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 1, - anon_sym_LBRACK, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(12942), 1, - anon_sym_requires, - ACTIONS(13046), 1, + ACTIONS(13421), 1, sym_identifier, - ACTIONS(13050), 1, + ACTIONS(13425), 1, anon_sym_COLON_COLON, - ACTIONS(13070), 1, - anon_sym_LPAREN2, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7920), 1, + STATE(8052), 1, sym_lambda_capture_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8576), 1, + STATE(8762), 1, sym__scope_resolution, - ACTIONS(13115), 2, + ACTIONS(13465), 2, sym_true, sym_false, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(9154), 8, + STATE(9398), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -673415,44 +695270,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290337] = 17, + [291152] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10705), 1, + ACTIONS(11105), 1, anon_sym_COLON_COLON, - ACTIONS(12754), 1, + ACTIONS(13144), 1, sym_identifier, - ACTIONS(12997), 1, + ACTIONS(13313), 1, anon_sym_requires, - ACTIONS(13056), 1, + ACTIONS(13408), 1, anon_sym_LPAREN2, - STATE(4067), 1, - sym_splice_specifier, - STATE(4189), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(7886), 1, + STATE(3800), 1, + sym_splice_specifier, + STATE(8001), 1, sym_lambda_capture_specifier, - STATE(8549), 1, + STATE(8738), 1, sym__scope_resolution, - ACTIONS(12995), 2, + ACTIONS(13311), 2, sym_true, sym_false, - STATE(4170), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6495), 8, + STATE(6188), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -673461,226 +695316,91 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290400] = 18, + [291215] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(7968), 1, anon_sym_LBRACK, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10606), 1, + ACTIONS(10919), 1, anon_sym_DASH_GT, - ACTIONS(12824), 1, + ACTIONS(10921), 1, anon_sym_requires, - STATE(8314), 1, + ACTIONS(13108), 1, + anon_sym___attribute__, + ACTIONS(13111), 1, + anon_sym___attribute, + STATE(8374), 1, sym_trailing_return_type, - STATE(8478), 1, + STATE(8450), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(12744), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8561), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 5, + ACTIONS(7966), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [290465] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(7565), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6800), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(13117), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6798), 19, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [290504] = 26, + anon_sym_GT2, + [291280] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(143), 1, - anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(1670), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(4804), 1, + ACTIONS(4360), 1, anon_sym_LBRACK_COLON, - ACTIONS(5100), 1, - anon_sym_COLON_COLON, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(13120), 1, - sym_identifier, - ACTIONS(13122), 1, + ACTIONS(5160), 1, anon_sym_template, - STATE(3646), 1, - sym_template_type, - STATE(3649), 1, - sym_dependent_type_identifier, - STATE(3650), 1, - sym_qualified_type_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(3871), 1, - sym_pointer_type_declarator, - STATE(3872), 1, - sym_template_function, - STATE(3876), 1, - sym_destructor_name, - STATE(3877), 1, - sym_dependent_identifier, - STATE(3878), 1, - sym_qualified_identifier, - STATE(3879), 1, - sym_operator_name, - STATE(7652), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(9375), 1, - sym_operator_cast, - STATE(9516), 1, - sym_qualified_operator_cast_identifier, - STATE(10974), 1, - sym_ms_based_modifier, - STATE(10976), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [290585] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 1, - anon_sym_LBRACK, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4780), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(12797), 1, + ACTIONS(13152), 1, sym_identifier, - ACTIONS(13076), 1, - anon_sym_LPAREN2, - ACTIONS(13080), 1, + ACTIONS(13352), 1, anon_sym_requires, - STATE(4691), 1, - sym_splice_specifier, - STATE(5263), 1, - sym__splice_specialization_specifier, - STATE(7918), 1, - sym_lambda_capture_specifier, - STATE(8584), 1, - sym__scope_resolution, - ACTIONS(13124), 2, - sym_true, - sym_false, - STATE(5166), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - STATE(7930), 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, - [290648] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 1, - anon_sym_LBRACK, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13046), 1, - sym_identifier, - ACTIONS(13048), 1, + ACTIONS(13467), 1, anon_sym_LPAREN2, - ACTIONS(13050), 1, - anon_sym_COLON_COLON, - ACTIONS(13054), 1, - anon_sym_requires, - STATE(3682), 1, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(7912), 1, - sym_lambda_capture_specifier, - STATE(8089), 1, + STATE(4263), 1, sym_splice_specifier, - STATE(8576), 1, + STATE(8009), 1, + sym_lambda_capture_specifier, + STATE(8675), 1, sym__scope_resolution, - ACTIONS(13126), 2, + ACTIONS(13350), 2, sym_true, sym_false, - STATE(3712), 2, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8603), 8, + STATE(6650), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -673689,44 +695409,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290711] = 17, + [291343] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4780), 1, - anon_sym_COLON_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(3256), 1, anon_sym_LBRACK_COLON, - ACTIONS(12797), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11059), 1, + anon_sym_COLON_COLON, + ACTIONS(13133), 1, sym_identifier, - ACTIONS(13076), 1, - anon_sym_LPAREN2, - ACTIONS(13080), 1, + ACTIONS(13360), 1, anon_sym_requires, - STATE(4691), 1, + ACTIONS(13447), 1, + anon_sym_LPAREN2, + STATE(4272), 1, sym_splice_specifier, - STATE(5263), 1, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(7918), 1, + STATE(8047), 1, sym_lambda_capture_specifier, - STATE(8584), 1, + STATE(8676), 1, sym__scope_resolution, - ACTIONS(13128), 2, + ACTIONS(13469), 2, sym_true, sym_false, - STATE(5166), 2, + STATE(4296), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(7896), 8, + STATE(6580), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -673735,44 +695455,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290774] = 17, + [291406] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10743), 1, - anon_sym_COLON_COLON, - ACTIONS(12776), 1, - sym_identifier, - ACTIONS(12942), 1, - anon_sym_requires, - ACTIONS(13070), 1, + ACTIONS(13423), 1, anon_sym_LPAREN2, - STATE(3634), 1, + ACTIONS(13429), 1, + anon_sym_requires, + ACTIONS(13471), 1, + sym_identifier, + ACTIONS(13473), 1, + anon_sym_COLON_COLON, + ACTIONS(13477), 1, + anon_sym_LBRACK_COLON, + STATE(3389), 1, sym_splice_specifier, - STATE(3640), 1, + STATE(3699), 1, sym__splice_specialization_specifier, - STATE(7935), 1, + STATE(8008), 1, sym_lambda_capture_specifier, - STATE(8631), 1, + STATE(8746), 1, sym__scope_resolution, - ACTIONS(13130), 2, + ACTIONS(13475), 2, sym_true, sym_false, - STATE(3624), 2, + STATE(3676), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6177), 8, + STATE(3622), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -673781,44 +695501,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290837] = 17, + [291469] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2744), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10711), 1, - anon_sym_COLON_COLON, - ACTIONS(12758), 1, - sym_identifier, - ACTIONS(12934), 1, - anon_sym_requires, - ACTIONS(13082), 1, + ACTIONS(13423), 1, anon_sym_LPAREN2, - STATE(2677), 1, + ACTIONS(13429), 1, + anon_sym_requires, + ACTIONS(13471), 1, + sym_identifier, + ACTIONS(13473), 1, + anon_sym_COLON_COLON, + ACTIONS(13477), 1, + anon_sym_LBRACK_COLON, + STATE(3389), 1, sym_splice_specifier, - STATE(2837), 1, + STATE(3699), 1, sym__splice_specialization_specifier, - STATE(7894), 1, + STATE(8008), 1, sym_lambda_capture_specifier, - STATE(8588), 1, + STATE(8746), 1, sym__scope_resolution, - ACTIONS(12932), 2, + ACTIONS(13445), 2, sym_true, sym_false, - STATE(2802), 2, + STATE(3676), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5455), 8, + STATE(3038), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -673827,44 +695547,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290900] = 17, + [291532] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10651), 1, + ACTIONS(5140), 1, anon_sym_COLON_COLON, - ACTIONS(12736), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13125), 1, sym_identifier, - ACTIONS(12942), 1, - anon_sym_requires, - ACTIONS(13070), 1, + ACTIONS(13479), 1, anon_sym_LPAREN2, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3688), 1, + ACTIONS(13483), 1, + anon_sym_requires, + STATE(4802), 1, sym_splice_specifier, - STATE(7935), 1, + STATE(5472), 1, + sym__splice_specialization_specifier, + STATE(8039), 1, sym_lambda_capture_specifier, - STATE(8621), 1, + STATE(8757), 1, sym__scope_resolution, - ACTIONS(12940), 2, + ACTIONS(13481), 2, sym_true, sym_false, - STATE(2874), 2, + STATE(5423), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6077), 8, + STATE(8049), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -673873,226 +695593,146 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290963] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7629), 1, - anon_sym_LBRACK, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10606), 1, - anon_sym_DASH_GT, - ACTIONS(10753), 1, - anon_sym_requires, - STATE(8276), 1, - sym_trailing_return_type, - STATE(8498), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7627), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [291028] = 18, + [291595] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(8424), 1, anon_sym_LBRACK, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10751), 1, + ACTIONS(10919), 1, anon_sym_DASH_GT, - ACTIONS(10753), 1, - anon_sym_requires, - ACTIONS(12144), 1, + ACTIONS(13242), 1, anon_sym___attribute__, - ACTIONS(12147), 1, + ACTIONS(13245), 1, anon_sym___attribute, - STATE(8259), 1, - sym_trailing_return_type, - STATE(8330), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [291093] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7629), 1, - anon_sym_LBRACK, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10751), 1, - anon_sym_DASH_GT, - ACTIONS(10753), 1, + ACTIONS(13485), 1, anon_sym_requires, - ACTIONS(12778), 1, - anon_sym___attribute__, - ACTIONS(12781), 1, - anon_sym___attribute, - STATE(8276), 1, + STATE(8402), 1, sym_trailing_return_type, - STATE(8331), 1, + STATE(8480), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10476), 2, + ACTIONS(13396), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8391), 2, + STATE(8550), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7627), 5, + ACTIONS(8422), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [291158] = 12, + [291660] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9074), 1, - anon_sym___attribute, - ACTIONS(10922), 1, - anon_sym_LPAREN2, - ACTIONS(10924), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(143), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5460), 1, + anon_sym_COLON_COLON, + ACTIONS(11896), 1, anon_sym_STAR, - ACTIONS(10926), 1, - anon_sym_AMP_AMP, - ACTIONS(10928), 1, - anon_sym_AMP, - ACTIONS(10936), 1, - anon_sym_LBRACK, - STATE(4243), 1, - sym_parameter_list, - STATE(8183), 1, - sym__function_declarator_seq, - STATE(8308), 1, - sym__abstract_declarator, - STATE(8180), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9072), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - 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, - [291211] = 17, + ACTIONS(13488), 1, + sym_identifier, + ACTIONS(13490), 1, + anon_sym_template, + STATE(3743), 1, + sym_dependent_type_identifier, + STATE(3748), 1, + sym_template_type, + STATE(3752), 1, + sym_qualified_type_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(3957), 1, + sym_pointer_type_declarator, + STATE(3972), 1, + sym_destructor_name, + STATE(3975), 1, + sym_qualified_identifier, + STATE(3996), 1, + sym_template_function, + STATE(4016), 1, + sym_operator_name, + STATE(4018), 1, + sym_dependent_identifier, + STATE(7777), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(9442), 1, + sym_operator_cast, + STATE(9637), 1, + sym_qualified_operator_cast_identifier, + STATE(11156), 1, + sym_ms_based_modifier, + STATE(10768), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [291741] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2732), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10735), 1, + ACTIONS(5140), 1, anon_sym_COLON_COLON, - ACTIONS(12772), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13125), 1, sym_identifier, - ACTIONS(12908), 1, - anon_sym_requires, - ACTIONS(13104), 1, + ACTIONS(13479), 1, anon_sym_LPAREN2, - STATE(2530), 1, + ACTIONS(13483), 1, + anon_sym_requires, + STATE(4802), 1, sym_splice_specifier, - STATE(2597), 1, + STATE(5472), 1, sym__splice_specialization_specifier, - STATE(7914), 1, + STATE(8039), 1, sym_lambda_capture_specifier, - STATE(8624), 1, + STATE(8757), 1, sym__scope_resolution, - ACTIONS(13132), 2, + ACTIONS(13492), 2, sym_true, sym_false, - STATE(2598), 2, + STATE(5423), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(4996), 8, + STATE(8020), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -674101,137 +695741,99 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [291274] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10606), 1, - anon_sym_DASH_GT, - ACTIONS(10753), 1, - anon_sym_requires, - STATE(8259), 1, - sym_trailing_return_type, - STATE(8487), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [291339] = 17, + [291804] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, - anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2732), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10735), 1, - anon_sym_COLON_COLON, - ACTIONS(12772), 1, + ACTIONS(11912), 1, + anon_sym_STAR, + ACTIONS(13494), 1, sym_identifier, - ACTIONS(12908), 1, - anon_sym_requires, - ACTIONS(13104), 1, - anon_sym_LPAREN2, - STATE(2530), 1, - sym_splice_specifier, - STATE(2597), 1, + ACTIONS(13496), 1, + anon_sym_TILDE, + ACTIONS(13498), 1, + anon_sym_COLON_COLON, + ACTIONS(13500), 1, + anon_sym_template, + ACTIONS(13502), 1, + anon_sym_operator, + STATE(3743), 1, + sym_dependent_type_identifier, + STATE(3748), 1, + sym_template_type, + STATE(3752), 1, + sym_qualified_type_identifier, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7914), 1, - sym_lambda_capture_specifier, - STATE(8624), 1, + STATE(3957), 1, + sym_pointer_type_declarator, + STATE(3972), 1, + sym_destructor_name, + STATE(3975), 1, + sym_qualified_identifier, + STATE(3996), 1, + sym_template_function, + STATE(4016), 1, + sym_operator_name, + STATE(4018), 1, + sym_dependent_identifier, + STATE(7779), 1, sym__scope_resolution, - ACTIONS(13134), 2, - sym_true, - sym_false, - STATE(2598), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10976), 3, + STATE(8222), 1, + sym_splice_specifier, + STATE(9442), 1, + sym_operator_cast, + STATE(9637), 1, + sym_qualified_operator_cast_identifier, + STATE(11037), 1, + sym_ms_based_modifier, + STATE(10768), 3, sym_decltype, - sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - STATE(5121), 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, - [291402] = 17, + [291885] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2648), 1, + ACTIONS(3256), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10727), 1, + ACTIONS(11059), 1, anon_sym_COLON_COLON, - ACTIONS(12764), 1, + ACTIONS(13133), 1, sym_identifier, - ACTIONS(12926), 1, + ACTIONS(13360), 1, anon_sym_requires, - ACTIONS(13090), 1, + ACTIONS(13447), 1, anon_sym_LPAREN2, - STATE(2519), 1, + STATE(4272), 1, sym_splice_specifier, - STATE(2567), 1, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(7908), 1, + STATE(8047), 1, sym_lambda_capture_specifier, - STATE(8604), 1, + STATE(8676), 1, sym__scope_resolution, - ACTIONS(13136), 2, + ACTIONS(13358), 2, sym_true, sym_false, - STATE(2577), 2, + STATE(4296), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5118), 8, + STATE(6647), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -674240,44 +695842,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [291465] = 17, + [291948] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(13048), 1, - anon_sym_LPAREN2, - ACTIONS(13054), 1, - anon_sym_requires, - ACTIONS(13138), 1, - sym_identifier, - ACTIONS(13140), 1, - anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(3235), 1, - sym_splice_specifier, - STATE(3556), 1, + ACTIONS(11048), 1, + anon_sym_COLON_COLON, + ACTIONS(13123), 1, + sym_identifier, + ACTIONS(13360), 1, + anon_sym_requires, + ACTIONS(13447), 1, + anon_sym_LPAREN2, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(7912), 1, + STATE(7326), 1, + sym_splice_specifier, + STATE(8047), 1, sym_lambda_capture_specifier, - STATE(8617), 1, + STATE(8745), 1, sym__scope_resolution, - ACTIONS(13142), 2, + ACTIONS(13504), 2, sym_true, sym_false, - STATE(3596), 2, + STATE(4296), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(3511), 8, + STATE(8765), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -674286,44 +695888,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [291528] = 17, + [292011] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2875), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10705), 1, - anon_sym_COLON_COLON, - ACTIONS(12754), 1, - sym_identifier, - ACTIONS(12997), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13313), 1, anon_sym_requires, - ACTIONS(13056), 1, + ACTIONS(13408), 1, anon_sym_LPAREN2, - STATE(4067), 1, - sym_splice_specifier, - STATE(4189), 1, + ACTIONS(13421), 1, + sym_identifier, + ACTIONS(13425), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7886), 1, + STATE(8052), 1, sym_lambda_capture_specifier, - STATE(8549), 1, + STATE(8222), 1, + sym_splice_specifier, + STATE(8762), 1, sym__scope_resolution, - ACTIONS(13146), 2, + ACTIONS(13459), 2, sym_true, sym_false, - STATE(4170), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6483), 8, + STATE(5245), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -674332,44 +695934,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [291591] = 17, + [292074] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2648), 1, + ACTIONS(4360), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10727), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(12764), 1, + ACTIONS(13152), 1, sym_identifier, - ACTIONS(12926), 1, + ACTIONS(13352), 1, anon_sym_requires, - ACTIONS(13090), 1, + ACTIONS(13467), 1, anon_sym_LPAREN2, - STATE(2519), 1, - sym_splice_specifier, - STATE(2567), 1, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(7908), 1, + STATE(4263), 1, + sym_splice_specifier, + STATE(8009), 1, sym_lambda_capture_specifier, - STATE(8604), 1, + STATE(8675), 1, sym__scope_resolution, - ACTIONS(12924), 2, + ACTIONS(13506), 2, sym_true, sym_false, - STATE(2577), 2, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5033), 8, + STATE(6614), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -674378,184 +695980,99 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [291654] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(8087), 1, - anon_sym_LBRACK, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10751), 1, - anon_sym_DASH_GT, - ACTIONS(10753), 1, - anon_sym_requires, - ACTIONS(12875), 1, - anon_sym___attribute__, - ACTIONS(12878), 1, - anon_sym___attribute, - STATE(8268), 1, - sym_trailing_return_type, - STATE(8332), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8397), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8089), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [291719] = 17, + [292137] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, - anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(143), 1, + anon_sym_operator, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2078), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10686), 1, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(3458), 1, anon_sym_COLON_COLON, - ACTIONS(12756), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11896), 1, + anon_sym_STAR, + ACTIONS(13508), 1, sym_identifier, - ACTIONS(12970), 1, - anon_sym_requires, - ACTIONS(13042), 1, - anon_sym_LPAREN2, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, + ACTIONS(13510), 1, + anon_sym_template, + STATE(3743), 1, + sym_dependent_type_identifier, + STATE(3748), 1, + sym_template_type, + STATE(3752), 1, + sym_qualified_type_identifier, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7936), 1, - sym_lambda_capture_specifier, - STATE(8593), 1, + STATE(3957), 1, + sym_pointer_type_declarator, + STATE(3972), 1, + sym_destructor_name, + STATE(3975), 1, + sym_qualified_identifier, + STATE(3996), 1, + sym_template_function, + STATE(4016), 1, + sym_operator_name, + STATE(4018), 1, + sym_dependent_identifier, + STATE(7784), 1, sym__scope_resolution, - ACTIONS(12968), 2, - sym_true, - sym_false, - STATE(2067), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10976), 3, + STATE(8222), 1, + sym_splice_specifier, + STATE(9442), 1, + sym_operator_cast, + STATE(9637), 1, + sym_qualified_operator_cast_identifier, + STATE(11156), 1, + sym_ms_based_modifier, + STATE(10768), 3, sym_decltype, - sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - STATE(3592), 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, - [291782] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7629), 1, - anon_sym_LBRACK, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10606), 1, - anon_sym_DASH_GT, - ACTIONS(12872), 1, - anon_sym_requires, - STATE(8315), 1, - sym_trailing_return_type, - STATE(8536), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12866), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7627), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [291847] = 17, + [292218] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(13048), 1, - anon_sym_LPAREN2, - ACTIONS(13054), 1, - anon_sym_requires, - ACTIONS(13138), 1, - sym_identifier, - ACTIONS(13140), 1, - anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(3235), 1, - sym_splice_specifier, - STATE(3556), 1, + ACTIONS(13313), 1, + anon_sym_requires, + ACTIONS(13408), 1, + anon_sym_LPAREN2, + ACTIONS(13415), 1, + sym_identifier, + ACTIONS(13417), 1, + anon_sym_COLON_COLON, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(7912), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8001), 1, sym_lambda_capture_specifier, - STATE(8617), 1, + STATE(8685), 1, sym__scope_resolution, - ACTIONS(13148), 2, + ACTIONS(13512), 2, sym_true, sym_false, - STATE(3596), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(3532), 8, + STATE(8569), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -674564,44 +696081,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [291910] = 17, + [292281] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(1938), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10678), 1, - anon_sym_COLON_COLON, - ACTIONS(12774), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13421), 1, sym_identifier, - ACTIONS(13008), 1, - anon_sym_requires, - ACTIONS(13106), 1, + ACTIONS(13423), 1, anon_sym_LPAREN2, - STATE(2431), 1, - sym_splice_specifier, - STATE(2514), 1, + ACTIONS(13425), 1, + anon_sym_COLON_COLON, + ACTIONS(13429), 1, + anon_sym_requires, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7906), 1, + STATE(8008), 1, sym_lambda_capture_specifier, - STATE(8639), 1, + STATE(8222), 1, + sym_splice_specifier, + STATE(8762), 1, sym__scope_resolution, - ACTIONS(13150), 2, + ACTIONS(13514), 2, sym_true, sym_false, - STATE(2534), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(4800), 8, + STATE(8719), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -674610,44 +696127,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [291973] = 17, + [292344] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2300), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13046), 1, - sym_identifier, - ACTIONS(13048), 1, - anon_sym_LPAREN2, - ACTIONS(13050), 1, + ACTIONS(11010), 1, anon_sym_COLON_COLON, - ACTIONS(13054), 1, + ACTIONS(13135), 1, + sym_identifier, + ACTIONS(13294), 1, anon_sym_requires, - STATE(3682), 1, + ACTIONS(13437), 1, + anon_sym_LPAREN2, + STATE(2547), 1, + sym_splice_specifier, + STATE(2601), 1, sym__splice_specialization_specifier, - STATE(7912), 1, + STATE(8041), 1, sym_lambda_capture_specifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8576), 1, + STATE(8682), 1, sym__scope_resolution, - ACTIONS(13152), 2, + ACTIONS(13516), 2, sym_true, sym_false, - STATE(3712), 2, + STATE(2615), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8597), 8, + STATE(4946), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -674656,99 +696173,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [292036] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11564), 1, - anon_sym_STAR, - ACTIONS(13154), 1, - sym_identifier, - ACTIONS(13156), 1, - anon_sym_TILDE, - ACTIONS(13158), 1, - anon_sym_COLON_COLON, - ACTIONS(13160), 1, - anon_sym_template, - ACTIONS(13162), 1, - anon_sym_operator, - STATE(3646), 1, - sym_template_type, - STATE(3649), 1, - sym_dependent_type_identifier, - STATE(3650), 1, - sym_qualified_type_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(3871), 1, - sym_pointer_type_declarator, - STATE(3872), 1, - sym_template_function, - STATE(3876), 1, - sym_destructor_name, - STATE(3877), 1, - sym_dependent_identifier, - STATE(3878), 1, - sym_qualified_identifier, - STATE(3879), 1, - sym_operator_name, - STATE(7676), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(9375), 1, - sym_operator_cast, - STATE(9516), 1, - sym_qualified_operator_cast_identifier, - STATE(10884), 1, - sym_ms_based_modifier, - STATE(10976), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [292117] = 17, + [292407] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3443), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10719), 1, - anon_sym_COLON_COLON, - ACTIONS(12760), 1, - sym_identifier, - ACTIONS(12959), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13313), 1, anon_sym_requires, - ACTIONS(13096), 1, + ACTIONS(13408), 1, anon_sym_LPAREN2, - STATE(3640), 1, + ACTIONS(13415), 1, + sym_identifier, + ACTIONS(13417), 1, + anon_sym_COLON_COLON, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(4072), 1, + STATE(7260), 1, sym_splice_specifier, - STATE(7903), 1, + STATE(8001), 1, sym_lambda_capture_specifier, - STATE(8571), 1, + STATE(8685), 1, sym__scope_resolution, - ACTIONS(12957), 2, + ACTIONS(13459), 2, sym_true, sym_false, - STATE(3624), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6581), 8, + STATE(5245), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -674757,44 +696219,79 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [292180] = 17, + [292470] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(4065), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7528), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7525), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(10109), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6999), 17, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [292511] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10743), 1, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - ACTIONS(12776), 1, + ACTIONS(13119), 1, sym_identifier, - ACTIONS(12942), 1, + ACTIONS(13323), 1, anon_sym_requires, - ACTIONS(13070), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - STATE(3634), 1, + STATE(2104), 1, sym_splice_specifier, - STATE(3640), 1, + STATE(2170), 1, sym__splice_specialization_specifier, - STATE(7935), 1, + STATE(8030), 1, sym_lambda_capture_specifier, - STATE(8631), 1, + STATE(8763), 1, sym__scope_resolution, - ACTIONS(13164), 2, + ACTIONS(13518), 2, sym_true, sym_false, - STATE(3624), 2, + STATE(2147), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5080), 8, + STATE(3650), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -674803,44 +696300,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [292243] = 17, + [292574] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10651), 1, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - ACTIONS(12736), 1, + ACTIONS(13119), 1, sym_identifier, - ACTIONS(12942), 1, + ACTIONS(13323), 1, anon_sym_requires, - ACTIONS(13070), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3688), 1, + STATE(2104), 1, sym_splice_specifier, - STATE(7935), 1, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(8030), 1, sym_lambda_capture_specifier, - STATE(8621), 1, + STATE(8763), 1, sym__scope_resolution, - ACTIONS(13166), 2, + ACTIONS(13520), 2, sym_true, sym_false, - STATE(2874), 2, + STATE(2147), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6049), 8, + STATE(3627), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -674849,44 +696346,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [292306] = 17, + [292637] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(13048), 1, - anon_sym_LPAREN2, - ACTIONS(13054), 1, - anon_sym_requires, - ACTIONS(13138), 1, - sym_identifier, - ACTIONS(13140), 1, + ACTIONS(11105), 1, anon_sym_COLON_COLON, ACTIONS(13144), 1, - anon_sym_LBRACK_COLON, - STATE(3235), 1, - sym_splice_specifier, - STATE(3556), 1, + sym_identifier, + ACTIONS(13313), 1, + anon_sym_requires, + ACTIONS(13408), 1, + anon_sym_LPAREN2, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(7912), 1, + STATE(3800), 1, + sym_splice_specifier, + STATE(8001), 1, sym_lambda_capture_specifier, - STATE(8617), 1, + STATE(8738), 1, sym__scope_resolution, - ACTIONS(13052), 2, + ACTIONS(13522), 2, sym_true, sym_false, - STATE(3596), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(2897), 8, + STATE(6190), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -674895,91 +696392,138 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [292369] = 18, + [292700] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(8087), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10606), 1, + ACTIONS(11044), 1, anon_sym_DASH_GT, - ACTIONS(13110), 1, + ACTIONS(13188), 1, anon_sym_requires, - STATE(8316), 1, + STATE(8398), 1, sym_trailing_return_type, - STATE(8538), 1, + STATE(8627), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13032), 2, + ACTIONS(13146), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [292765] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7968), 1, + anon_sym_LBRACK, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11044), 1, + anon_sym_DASH_GT, + ACTIONS(13236), 1, + anon_sym_requires, + STATE(8401), 1, + sym_trailing_return_type, + STATE(8629), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13202), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8397), 2, + STATE(8561), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8089), 5, + ACTIONS(7966), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [292434] = 17, + [292830] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10299), 1, + ACTIONS(3104), 1, anon_sym_LBRACK_COLON, - ACTIONS(12942), 1, - anon_sym_requires, - ACTIONS(13068), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11073), 1, + anon_sym_COLON_COLON, + ACTIONS(13137), 1, sym_identifier, - ACTIONS(13070), 1, + ACTIONS(13272), 1, + anon_sym_requires, + ACTIONS(13451), 1, anon_sym_LPAREN2, - ACTIONS(13072), 1, - anon_sym_COLON_COLON, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(7086), 1, + STATE(2742), 1, sym_splice_specifier, - STATE(7935), 1, + STATE(2921), 1, + sym__splice_specialization_specifier, + STATE(8042), 1, sym_lambda_capture_specifier, - STATE(8590), 1, + STATE(8686), 1, sym__scope_resolution, - ACTIONS(13168), 2, + ACTIONS(13524), 2, sym_true, sym_false, - STATE(2874), 2, + STATE(2934), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8387), 8, + STATE(5606), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -674988,44 +696532,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [292497] = 17, + [292893] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10299), 1, + ACTIONS(3104), 1, anon_sym_LBRACK_COLON, - ACTIONS(12942), 1, - anon_sym_requires, - ACTIONS(13068), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11073), 1, + anon_sym_COLON_COLON, + ACTIONS(13137), 1, sym_identifier, - ACTIONS(13070), 1, + ACTIONS(13272), 1, + anon_sym_requires, + ACTIONS(13451), 1, anon_sym_LPAREN2, - ACTIONS(13072), 1, - anon_sym_COLON_COLON, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(7086), 1, + STATE(2742), 1, sym_splice_specifier, - STATE(7935), 1, + STATE(2921), 1, + sym__splice_specialization_specifier, + STATE(8042), 1, sym_lambda_capture_specifier, - STATE(8590), 1, + STATE(8686), 1, sym__scope_resolution, - ACTIONS(13164), 2, + ACTIONS(13526), 2, sym_true, sym_false, - STATE(2874), 2, + STATE(2934), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5080), 8, + STATE(5608), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -675034,44 +696578,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [292560] = 17, + [292956] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10651), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10988), 1, anon_sym_COLON_COLON, - ACTIONS(12736), 1, + ACTIONS(13168), 1, sym_identifier, - ACTIONS(12942), 1, - anon_sym_requires, - ACTIONS(13070), 1, + ACTIONS(13402), 1, anon_sym_LPAREN2, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3688), 1, + ACTIONS(13406), 1, + anon_sym_requires, + STATE(6581), 1, sym_splice_specifier, - STATE(7935), 1, + STATE(7121), 1, + sym__splice_specialization_specifier, + STATE(8060), 1, sym_lambda_capture_specifier, - STATE(8621), 1, + STATE(8700), 1, sym__scope_resolution, - ACTIONS(13164), 2, + ACTIONS(13528), 2, sym_true, sym_false, - STATE(2874), 2, + STATE(7122), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5080), 8, + STATE(8425), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -675080,44 +696624,184 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [292623] = 17, + [293019] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5140), 1, + anon_sym_COLON_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(12942), 1, - anon_sym_requires, - ACTIONS(13046), 1, + ACTIONS(13125), 1, sym_identifier, - ACTIONS(13050), 1, - anon_sym_COLON_COLON, - ACTIONS(13070), 1, + ACTIONS(13479), 1, anon_sym_LPAREN2, - STATE(3682), 1, + ACTIONS(13483), 1, + anon_sym_requires, + STATE(4802), 1, + sym_splice_specifier, + STATE(5472), 1, sym__splice_specialization_specifier, - STATE(7920), 1, + STATE(8039), 1, sym_lambda_capture_specifier, - STATE(8089), 1, + STATE(8757), 1, + sym__scope_resolution, + ACTIONS(13530), 2, + sym_true, + sym_false, + STATE(5423), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(8034), 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, + [293082] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10921), 1, + anon_sym_requires, + ACTIONS(11044), 1, + anon_sym_DASH_GT, + STATE(8441), 1, + sym_trailing_return_type, + STATE(8631), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [293147] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(8424), 1, + anon_sym_LBRACK, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11044), 1, + anon_sym_DASH_GT, + ACTIONS(13485), 1, + anon_sym_requires, + STATE(8402), 1, + sym_trailing_return_type, + STATE(8632), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13396), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8550), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8422), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [293212] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1670), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(13423), 1, + anon_sym_LPAREN2, + ACTIONS(13429), 1, + anon_sym_requires, + ACTIONS(13471), 1, + sym_identifier, + ACTIONS(13473), 1, + anon_sym_COLON_COLON, + ACTIONS(13477), 1, + anon_sym_LBRACK_COLON, + STATE(3389), 1, sym_splice_specifier, - STATE(8576), 1, + STATE(3699), 1, + sym__splice_specialization_specifier, + STATE(8008), 1, + sym_lambda_capture_specifier, + STATE(8746), 1, sym__scope_resolution, - ACTIONS(13164), 2, + ACTIONS(13532), 2, sym_true, sym_false, - STATE(3712), 2, + STATE(3676), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5080), 8, + STATE(3689), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -675126,44 +696810,90 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [292686] = 17, + [293275] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2078), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10686), 1, + ACTIONS(11105), 1, anon_sym_COLON_COLON, - ACTIONS(12756), 1, + ACTIONS(13144), 1, sym_identifier, - ACTIONS(12970), 1, + ACTIONS(13313), 1, anon_sym_requires, - ACTIONS(13042), 1, + ACTIONS(13408), 1, anon_sym_LPAREN2, - STATE(1997), 1, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3800), 1, sym_splice_specifier, - STATE(2026), 1, + STATE(8001), 1, + sym_lambda_capture_specifier, + STATE(8738), 1, + sym__scope_resolution, + ACTIONS(13459), 2, + sym_true, + sym_false, + STATE(3060), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5245), 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, + [293338] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1670), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(4360), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, + ACTIONS(13152), 1, + sym_identifier, + ACTIONS(13352), 1, + anon_sym_requires, + ACTIONS(13467), 1, + anon_sym_LPAREN2, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(7936), 1, + STATE(4263), 1, + sym_splice_specifier, + STATE(8009), 1, sym_lambda_capture_specifier, - STATE(8593), 1, + STATE(8675), 1, sym__scope_resolution, - ACTIONS(13170), 2, + ACTIONS(13534), 2, sym_true, sym_false, - STATE(2067), 2, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(3494), 8, + STATE(6677), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -675172,44 +696902,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [292749] = 17, + [293401] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(3256), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10705), 1, + ACTIONS(11059), 1, anon_sym_COLON_COLON, - ACTIONS(12754), 1, + ACTIONS(13133), 1, sym_identifier, - ACTIONS(12997), 1, + ACTIONS(13360), 1, anon_sym_requires, - ACTIONS(13056), 1, + ACTIONS(13447), 1, anon_sym_LPAREN2, - STATE(4067), 1, + STATE(4272), 1, sym_splice_specifier, - STATE(4189), 1, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(7886), 1, + STATE(8047), 1, sym_lambda_capture_specifier, - STATE(8549), 1, + STATE(8676), 1, sym__scope_resolution, - ACTIONS(13086), 2, + ACTIONS(13453), 2, sym_true, sym_false, - STATE(4170), 2, + STATE(4296), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6352), 8, + STATE(6462), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -675218,2365 +696948,2601 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [292812] = 21, + [293464] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9027), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - ACTIONS(10293), 1, + ACTIONS(11105), 1, anon_sym_COLON_COLON, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(12742), 1, + ACTIONS(13144), 1, sym_identifier, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3086), 1, + STATE(3240), 1, sym__class_declaration_item, - STATE(3837), 1, - sym_field_declaration_list, - STATE(7086), 1, + STATE(3800), 1, sym_splice_specifier, - STATE(8605), 1, + STATE(3863), 1, + sym_field_declaration_list, + STATE(8738), 1, sym__scope_resolution, - STATE(9411), 1, + STATE(9550), 1, sym_virtual_specifier, - STATE(10180), 1, + STATE(10518), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2874), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(3534), 2, + STATE(3609), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7823), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [292882] = 21, + [293534] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2648), 1, + ACTIONS(3092), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7866), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10727), 1, + ACTIONS(8297), 1, + anon_sym_LBRACE, + ACTIONS(11097), 1, anon_sym_COLON_COLON, - ACTIONS(12764), 1, + ACTIONS(13100), 1, sym_identifier, - STATE(2519), 1, + STATE(2605), 1, sym_splice_specifier, - STATE(2567), 1, + STATE(2659), 1, sym__splice_specialization_specifier, - STATE(2707), 1, + STATE(2848), 1, sym_field_declaration_list, - STATE(3111), 1, + STATE(3195), 1, sym__class_declaration_item, - STATE(8604), 1, + STATE(8702), 1, sym__scope_resolution, - STATE(9467), 1, + STATE(9504), 1, sym_virtual_specifier, - STATE(10241), 1, + STATE(10445), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2331), 2, + STATE(2475), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2577), 2, + STATE(2661), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(7808), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [292952] = 21, + [293604] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(3092), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8909), 1, + ACTIONS(8297), 1, anon_sym_LBRACE, - ACTIONS(10743), 1, + ACTIONS(11097), 1, anon_sym_COLON_COLON, - ACTIONS(12776), 1, + ACTIONS(13100), 1, sym_identifier, - STATE(3634), 1, + STATE(2605), 1, sym_splice_specifier, - STATE(3640), 1, + STATE(2659), 1, sym__splice_specialization_specifier, - STATE(3835), 1, + STATE(2848), 1, sym_field_declaration_list, - STATE(4038), 1, + STATE(3229), 1, sym__class_declaration_item, - STATE(8631), 1, + STATE(8702), 1, sym__scope_resolution, - STATE(9498), 1, + STATE(9504), 1, sym_virtual_specifier, - STATE(10434), 1, + STATE(10445), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3486), 2, + STATE(2475), 2, sym__class_name, sym_qualified_type_identifier, - STATE(3624), 2, + STATE(2661), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293022] = 21, + [293674] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2078), 1, + ACTIONS(3092), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(6834), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10686), 1, + ACTIONS(8297), 1, + anon_sym_LBRACE, + ACTIONS(11097), 1, anon_sym_COLON_COLON, - ACTIONS(12756), 1, + ACTIONS(13100), 1, sym_identifier, - STATE(1997), 1, + STATE(2605), 1, sym_splice_specifier, - STATE(2026), 1, + STATE(2659), 1, sym__splice_specialization_specifier, - STATE(2069), 1, + STATE(2848), 1, sym_field_declaration_list, - STATE(2084), 1, + STATE(3106), 1, sym__class_declaration_item, - STATE(8593), 1, + STATE(8702), 1, sym__scope_resolution, - STATE(9311), 1, + STATE(9504), 1, sym_virtual_specifier, - STATE(10472), 1, + STATE(10445), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(1966), 2, + STATE(2475), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2067), 2, + STATE(2661), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293092] = 21, + [293744] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2648), 1, + ACTIONS(3092), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7866), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10727), 1, + ACTIONS(8297), 1, + anon_sym_LBRACE, + ACTIONS(11097), 1, anon_sym_COLON_COLON, - ACTIONS(12764), 1, + ACTIONS(13100), 1, sym_identifier, - STATE(2519), 1, + STATE(2605), 1, sym_splice_specifier, - STATE(2567), 1, + STATE(2659), 1, sym__splice_specialization_specifier, - STATE(2707), 1, + STATE(2848), 1, sym_field_declaration_list, - STATE(3034), 1, + STATE(3141), 1, sym__class_declaration_item, - STATE(8604), 1, + STATE(8702), 1, sym__scope_resolution, - STATE(9467), 1, + STATE(9504), 1, sym_virtual_specifier, - STATE(10241), 1, + STATE(10445), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2331), 2, + STATE(2475), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2577), 2, + STATE(2661), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(7810), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293162] = 21, + [293814] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(3092), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9027), 1, + ACTIONS(8297), 1, anon_sym_LBRACE, - ACTIONS(10293), 1, + ACTIONS(11097), 1, anon_sym_COLON_COLON, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(12742), 1, + ACTIONS(13100), 1, sym_identifier, - STATE(2855), 1, + STATE(2605), 1, + sym_splice_specifier, + STATE(2659), 1, sym__splice_specialization_specifier, - STATE(3069), 1, - sym__class_declaration_item, - STATE(3837), 1, + STATE(2848), 1, sym_field_declaration_list, - STATE(7086), 1, - sym_splice_specifier, - STATE(8605), 1, + STATE(3228), 1, + sym__class_declaration_item, + STATE(8702), 1, sym__scope_resolution, - STATE(9411), 1, + STATE(9504), 1, sym_virtual_specifier, - STATE(10180), 1, + STATE(10445), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2874), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3534), 2, + STATE(2475), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7706), 2, + STATE(2661), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293232] = 21, + [293884] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2078), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(6834), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10686), 1, - anon_sym_COLON_COLON, - ACTIONS(12756), 1, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(13106), 1, sym_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, + ACTIONS(13154), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(2069), 1, + STATE(4504), 1, + sym_splice_specifier, + STATE(4654), 1, sym_field_declaration_list, - STATE(2099), 1, + STATE(4836), 1, sym__class_declaration_item, - STATE(8593), 1, + STATE(8710), 1, sym__scope_resolution, - STATE(9311), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10472), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(1966), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2067), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(6256), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293302] = 21, + [293954] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8909), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10743), 1, - anon_sym_COLON_COLON, - ACTIONS(12776), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3634), 1, - sym_splice_specifier, - STATE(3640), 1, + ACTIONS(13154), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3835), 1, + STATE(4504), 1, + sym_splice_specifier, + STATE(4654), 1, sym_field_declaration_list, - STATE(3942), 1, + STATE(4862), 1, sym__class_declaration_item, - STATE(8631), 1, + STATE(8710), 1, sym__scope_resolution, - STATE(9498), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10434), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3486), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(3624), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(7713), 2, + STATE(6256), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7881), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293372] = 21, + [294024] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(7243), 1, + anon_sym_LBRACE, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10621), 1, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - ACTIONS(12646), 1, - anon_sym_LBRACE, - ACTIONS(12770), 1, + ACTIONS(13119), 1, sym_identifier, - STATE(6603), 1, + STATE(2104), 1, sym_splice_specifier, - STATE(7033), 1, + STATE(2170), 1, sym__splice_specialization_specifier, - STATE(7472), 1, + STATE(2172), 1, sym_field_declaration_list, - STATE(7512), 1, + STATE(2183), 1, sym__class_declaration_item, - STATE(8612), 1, + STATE(8763), 1, sym__scope_resolution, - STATE(9510), 1, + STATE(9644), 1, sym_virtual_specifier, - STATE(10405), 1, + STATE(10276), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(7021), 2, + STATE(2075), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7034), 2, + STATE(2147), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293442] = 21, + [294094] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9596), 1, + ACTIONS(7243), 1, anon_sym_LBRACE, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10697), 1, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - ACTIONS(12750), 1, + ACTIONS(13119), 1, sym_identifier, - STATE(4189), 1, + STATE(2104), 1, + sym_splice_specifier, + STATE(2170), 1, sym__splice_specialization_specifier, - STATE(4257), 1, + STATE(2172), 1, sym_field_declaration_list, - STATE(4394), 1, + STATE(2202), 1, sym__class_declaration_item, - STATE(7130), 1, - sym_splice_specifier, - STATE(8634), 1, + STATE(8763), 1, sym__scope_resolution, - STATE(9428), 1, + STATE(9644), 1, sym_virtual_specifier, - STATE(10315), 1, + STATE(10276), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3858), 2, + STATE(2075), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4170), 2, + STATE(2147), 2, sym_template_type, sym_splice_type_specifier, - STATE(7777), 2, + STATE(7815), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293512] = 21, + [294164] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(7243), 1, + anon_sym_LBRACE, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10621), 1, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - ACTIONS(12646), 1, - anon_sym_LBRACE, - ACTIONS(12770), 1, + ACTIONS(13119), 1, sym_identifier, - STATE(6603), 1, + STATE(2104), 1, sym_splice_specifier, - STATE(7033), 1, + STATE(2170), 1, sym__splice_specialization_specifier, - STATE(7472), 1, + STATE(2172), 1, sym_field_declaration_list, - STATE(7525), 1, + STATE(2205), 1, sym__class_declaration_item, - STATE(8612), 1, + STATE(8763), 1, sym__scope_resolution, - STATE(9510), 1, + STATE(9644), 1, sym_virtual_specifier, - STATE(10405), 1, + STATE(10276), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(7021), 2, + STATE(2075), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7034), 2, + STATE(2147), 2, sym_template_type, sym_splice_type_specifier, - STATE(7701), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293582] = 21, + [294234] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9596), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10697), 1, - anon_sym_COLON_COLON, - ACTIONS(12750), 1, + ACTIONS(13164), 1, sym_identifier, - STATE(4189), 1, + ACTIONS(13166), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4257), 1, - sym_field_declaration_list, - STATE(4404), 1, - sym__class_declaration_item, - STATE(7130), 1, + STATE(4802), 1, sym_splice_specifier, - STATE(8634), 1, + STATE(4836), 1, + sym__class_declaration_item, + STATE(8705), 1, sym__scope_resolution, - STATE(9428), 1, + STATE(9320), 1, + sym_field_declaration_list, + STATE(9556), 1, sym_virtual_specifier, - STATE(10315), 1, + STATE(10528), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3858), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4170), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(8848), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293652] = 18, + [294304] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(8087), 1, - anon_sym_LBRACK, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10810), 1, - anon_sym_DASH_GT, - ACTIONS(10812), 1, - anon_sym_requires, - STATE(8550), 1, - sym__function_attributes_end, - STATE(8635), 1, - sym_trailing_return_type, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10476), 2, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(13164), 1, + sym_identifier, + ACTIONS(13166), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4802), 1, + sym_splice_specifier, + STATE(4862), 1, + sym__class_declaration_item, + STATE(8705), 1, + sym__scope_resolution, + STATE(9320), 1, + sym_field_declaration_list, + STATE(9556), 1, + sym_virtual_specifier, + STATE(10528), 1, + sym_base_class_clause, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(3790), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7854), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8397), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8089), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [293716] = 21, + STATE(8848), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [294374] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(3486), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(6469), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10621), 1, - anon_sym_COLON_COLON, - ACTIONS(12646), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12770), 1, + ACTIONS(13117), 1, sym_identifier, - STATE(6603), 1, - sym_splice_specifier, - STATE(7033), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7472), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(7492), 1, + STATE(4968), 1, sym__class_declaration_item, - STATE(8612), 1, + STATE(5157), 1, + sym_splice_specifier, + STATE(8756), 1, sym__scope_resolution, - STATE(9510), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10405), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(7021), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7034), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(4029), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7824), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293786] = 21, + [294444] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3443), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(6469), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8909), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10719), 1, - anon_sym_COLON_COLON, - ACTIONS(12760), 1, + ACTIONS(13117), 1, sym_identifier, - STATE(3640), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4010), 1, + STATE(4654), 1, + sym_field_declaration_list, + STATE(4984), 1, sym__class_declaration_item, - STATE(4072), 1, + STATE(5157), 1, sym_splice_specifier, - STATE(4277), 1, - sym_field_declaration_list, - STATE(8571), 1, + STATE(8756), 1, sym__scope_resolution, - STATE(9494), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10393), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3624), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(3851), 2, + STATE(4029), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7823), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293856] = 21, + [294514] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(2078), 1, + ACTIONS(2300), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(6834), 1, + ACTIONS(8158), 1, anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10686), 1, + ACTIONS(11010), 1, anon_sym_COLON_COLON, - ACTIONS(12756), 1, + ACTIONS(13135), 1, sym_identifier, - STATE(1997), 1, + STATE(2547), 1, sym_splice_specifier, - STATE(2026), 1, + STATE(2601), 1, sym__splice_specialization_specifier, - STATE(2069), 1, + STATE(2692), 1, sym_field_declaration_list, - STATE(2103), 1, + STATE(3058), 1, sym__class_declaration_item, - STATE(8593), 1, + STATE(8682), 1, sym__scope_resolution, - STATE(9311), 1, + STATE(9585), 1, sym_virtual_specifier, - STATE(10472), 1, + STATE(10216), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(1966), 2, + STATE(2389), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2067), 2, + STATE(2615), 2, sym_template_type, sym_splice_type_specifier, - STATE(7761), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293926] = 21, + [294584] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, + anon_sym_LPAREN2, + ACTIONS(11896), 1, + anon_sym_STAR, + ACTIONS(11898), 1, + anon_sym_AMP_AMP, + ACTIONS(11900), 1, + anon_sym_AMP, + ACTIONS(11904), 1, + sym_primitive_type, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(8245), 1, + sym_ms_call_modifier, + STATE(9103), 1, + sym__type_declarator, + STATE(11156), 1, + sym_ms_based_modifier, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(55), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [294642] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2300), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9596), 1, + ACTIONS(8158), 1, anon_sym_LBRACE, - ACTIONS(10705), 1, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11010), 1, anon_sym_COLON_COLON, - ACTIONS(12754), 1, + ACTIONS(13135), 1, sym_identifier, - STATE(4067), 1, + STATE(2547), 1, sym_splice_specifier, - STATE(4189), 1, + STATE(2601), 1, sym__splice_specialization_specifier, - STATE(4257), 1, + STATE(2692), 1, sym_field_declaration_list, - STATE(4301), 1, + STATE(3066), 1, sym__class_declaration_item, - STATE(8549), 1, + STATE(8682), 1, sym__scope_resolution, - STATE(9428), 1, + STATE(9585), 1, sym_virtual_specifier, - STATE(10315), 1, + STATE(10216), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3858), 2, + STATE(2389), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4170), 2, + STATE(2615), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(7827), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293996] = 21, + [294712] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6101), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9658), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - ACTIONS(12804), 1, + ACTIONS(11020), 1, + anon_sym_COLON_COLON, + ACTIONS(13102), 1, sym_identifier, - STATE(3682), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(4546), 1, - sym_field_declaration_list, - STATE(4829), 1, + STATE(3109), 1, sym__class_declaration_item, - STATE(5044), 1, + STATE(7481), 1, sym_splice_specifier, - STATE(8579), 1, + STATE(7709), 1, + sym_field_declaration_list, + STATE(8691), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9483), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10463), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3712), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(3904), 2, + STATE(7348), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7823), 2, + STATE(7834), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294066] = 21, + [294782] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(3486), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(6469), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9027), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10293), 1, - anon_sym_COLON_COLON, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(12742), 1, + ACTIONS(13117), 1, sym_identifier, - STATE(2855), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3036), 1, - sym__class_declaration_item, - STATE(3837), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(7086), 1, + STATE(4836), 1, + sym__class_declaration_item, + STATE(5157), 1, sym_splice_specifier, - STATE(8605), 1, + STATE(8756), 1, sym__scope_resolution, - STATE(9411), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10180), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2874), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(3534), 2, + STATE(4029), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7823), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294136] = 21, + [294852] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(3486), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(6469), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7819), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10678), 1, - anon_sym_COLON_COLON, - ACTIONS(12774), 1, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(13117), 1, sym_identifier, - STATE(2431), 1, - sym_splice_specifier, - STATE(2514), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(2595), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(2946), 1, + STATE(4862), 1, sym__class_declaration_item, - STATE(8639), 1, + STATE(5157), 1, + sym_splice_specifier, + STATE(8756), 1, sym__scope_resolution, - STATE(9457), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10302), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2310), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2534), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(4029), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7829), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294206] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, - anon_sym_LPAREN2, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(11500), 1, - anon_sym_AMP_AMP, - ACTIONS(11502), 1, - anon_sym_AMP, - ACTIONS(11508), 1, - sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(8206), 1, - sym_ms_call_modifier, - STATE(9003), 1, - sym__type_declarator, - STATE(10974), 1, - sym_ms_based_modifier, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(55), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [294264] = 18, + [294922] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10810), 1, - anon_sym_DASH_GT, - ACTIONS(12833), 1, - anon_sym_requires, - STATE(8567), 1, - sym__function_attributes_end, - STATE(8568), 1, - sym_trailing_return_type, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12744), 2, + ACTIONS(9314), 1, + anon_sym_LBRACE, + ACTIONS(11020), 1, + anon_sym_COLON_COLON, + ACTIONS(13102), 1, + sym_identifier, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3178), 1, + sym__class_declaration_item, + STATE(7481), 1, + sym_splice_specifier, + STATE(7709), 1, + sym_field_declaration_list, + STATE(8691), 1, + sym__scope_resolution, + STATE(9483), 1, + sym_virtual_specifier, + STATE(10463), 1, + sym_base_class_clause, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(3060), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7348), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [294328] = 21, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [294992] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2300), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9027), 1, + ACTIONS(8158), 1, anon_sym_LBRACE, - ACTIONS(10590), 1, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11010), 1, anon_sym_COLON_COLON, - ACTIONS(12752), 1, + ACTIONS(13135), 1, sym_identifier, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3069), 1, - sym__class_declaration_item, - STATE(7299), 1, + STATE(2547), 1, sym_splice_specifier, - STATE(7605), 1, + STATE(2601), 1, + sym__splice_specialization_specifier, + STATE(2692), 1, sym_field_declaration_list, - STATE(8564), 1, + STATE(2964), 1, + sym__class_declaration_item, + STATE(8682), 1, sym__scope_resolution, - STATE(9372), 1, + STATE(9585), 1, sym_virtual_specifier, - STATE(10346), 1, + STATE(10216), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2874), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7225), 2, + STATE(2389), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7757), 2, + STATE(2615), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294398] = 21, + [295062] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9027), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10651), 1, - anon_sym_COLON_COLON, - ACTIONS(12736), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(2855), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3086), 1, - sym__class_declaration_item, - STATE(3688), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(3837), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(8621), 1, + STATE(4968), 1, + sym__class_declaration_item, + STATE(8716), 1, sym__scope_resolution, - STATE(9411), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10180), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2874), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(3534), 2, + STATE(4029), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7823), 2, + STATE(7880), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294468] = 21, + [295132] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(6469), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9596), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10705), 1, - anon_sym_COLON_COLON, - ACTIONS(12754), 1, + ACTIONS(13117), 1, sym_identifier, - STATE(4067), 1, - sym_splice_specifier, - STATE(4189), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4257), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4394), 1, + STATE(4932), 1, sym__class_declaration_item, - STATE(8549), 1, + STATE(5157), 1, + sym_splice_specifier, + STATE(8756), 1, sym__scope_resolution, - STATE(9428), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10315), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3858), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4170), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(7782), 2, + STATE(4029), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294538] = 21, + [295202] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8909), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10743), 1, - anon_sym_COLON_COLON, - ACTIONS(12776), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3634), 1, - sym_splice_specifier, - STATE(3640), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3835), 1, + STATE(4504), 1, + sym_splice_specifier, + STATE(4654), 1, sym_field_declaration_list, - STATE(3953), 1, + STATE(4932), 1, sym__class_declaration_item, - STATE(8631), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9498), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10434), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3486), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(3624), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(4029), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294608] = 21, + [295272] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - ACTIONS(12740), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4786), 1, + STATE(4984), 1, sym__class_declaration_item, - STATE(8614), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(6098), 2, + STATE(4029), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7786), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294678] = 18, + [295342] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(9429), 1, anon_sym___asm, - ACTIONS(7629), 1, + ACTIONS(11172), 1, + anon_sym_LPAREN2, + ACTIONS(11186), 1, anon_sym_LBRACK, - ACTIONS(10254), 1, + ACTIONS(11598), 1, + anon_sym_STAR, + ACTIONS(11600), 1, + anon_sym_AMP_AMP, + ACTIONS(11602), 1, + anon_sym_AMP, + STATE(4562), 1, + sym_parameter_list, + STATE(8314), 1, + sym__function_declarator_seq, + STATE(8467), 1, + sym__abstract_declarator, + STATE(8312), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9427), 12, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [295394] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10810), 1, + ACTIONS(11296), 1, anon_sym_DASH_GT, - ACTIONS(12890), 1, + ACTIONS(11298), 1, anon_sym_requires, - STATE(8569), 1, + STATE(8717), 1, sym__function_attributes_end, - STATE(8570), 1, + STATE(8718), 1, sym_trailing_return_type, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(12866), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8391), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7627), 4, + ACTIONS(7791), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [294742] = 21, + [295458] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6101), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9658), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - ACTIONS(12804), 1, + ACTIONS(11020), 1, + anon_sym_COLON_COLON, + ACTIONS(13102), 1, sym_identifier, - STATE(3682), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(4546), 1, + STATE(3240), 1, + sym__class_declaration_item, + STATE(7481), 1, + sym_splice_specifier, + STATE(7709), 1, sym_field_declaration_list, - STATE(4708), 1, + STATE(8691), 1, + sym__scope_resolution, + STATE(9483), 1, + sym_virtual_specifier, + STATE(10463), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + STATE(3060), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7348), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7955), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [295528] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9314), 1, + anon_sym_LBRACE, + ACTIONS(11020), 1, + anon_sym_COLON_COLON, + ACTIONS(13102), 1, + sym_identifier, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3237), 1, sym__class_declaration_item, - STATE(5044), 1, + STATE(7481), 1, sym_splice_specifier, - STATE(8579), 1, + STATE(7709), 1, + sym_field_declaration_list, + STATE(8691), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9483), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10463), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3712), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(3904), 2, + STATE(7348), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7823), 2, + STATE(7851), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294812] = 21, + [295598] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2648), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7866), 1, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(13106), 1, + sym_identifier, + ACTIONS(13154), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4504), 1, + sym_splice_specifier, + STATE(4654), 1, + sym_field_declaration_list, + STATE(4968), 1, + sym__class_declaration_item, + STATE(8710), 1, + sym__scope_resolution, + STATE(9470), 1, + sym_virtual_specifier, + STATE(10307), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + STATE(3790), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6256), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7811), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [295668] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10727), 1, + ACTIONS(9965), 1, + anon_sym_LBRACE, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11048), 1, anon_sym_COLON_COLON, - ACTIONS(12764), 1, + ACTIONS(13123), 1, sym_identifier, - STATE(2519), 1, - sym_splice_specifier, - STATE(2567), 1, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(2707), 1, + STATE(4350), 1, sym_field_declaration_list, - STATE(3015), 1, + STATE(4529), 1, sym__class_declaration_item, - STATE(8604), 1, + STATE(7326), 1, + sym_splice_specifier, + STATE(8745), 1, sym__scope_resolution, - STATE(9467), 1, + STATE(9426), 1, sym_virtual_specifier, - STATE(10241), 1, + STATE(10236), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2331), 2, + STATE(3966), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2577), 2, + STATE(4296), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(7844), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294882] = 21, + [295738] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3443), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8909), 1, + ACTIONS(9965), 1, anon_sym_LBRACE, - ACTIONS(10719), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11048), 1, anon_sym_COLON_COLON, - ACTIONS(12760), 1, + ACTIONS(13123), 1, sym_identifier, - STATE(3640), 1, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(4043), 1, + STATE(4350), 1, + sym_field_declaration_list, + STATE(4543), 1, sym__class_declaration_item, - STATE(4072), 1, + STATE(7326), 1, sym_splice_specifier, - STATE(4277), 1, - sym_field_declaration_list, - STATE(8571), 1, + STATE(8745), 1, sym__scope_resolution, - STATE(9494), 1, + STATE(9426), 1, sym_virtual_specifier, - STATE(10393), 1, + STATE(10236), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3624), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3851), 2, + STATE(3966), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7753), 2, + STATE(4296), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294952] = 21, + [295808] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3443), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8909), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10719), 1, - anon_sym_COLON_COLON, - ACTIONS(12760), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3640), 1, + ACTIONS(13154), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3942), 1, - sym__class_declaration_item, - STATE(4072), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4277), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(8571), 1, + STATE(4984), 1, + sym__class_declaration_item, + STATE(8710), 1, sym__scope_resolution, - STATE(9494), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10393), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3624), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(3851), 2, + STATE(6256), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7732), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295022] = 21, + [295878] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7968), 1, + anon_sym_LBRACK, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11296), 1, + anon_sym_DASH_GT, + ACTIONS(11298), 1, + anon_sym_requires, + STATE(8726), 1, + sym__function_attributes_end, + STATE(8730), 1, + sym_trailing_return_type, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8561), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7966), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [295942] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9027), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - ACTIONS(10651), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(12736), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13127), 1, sym_identifier, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3069), 1, + STATE(3237), 1, sym__class_declaration_item, - STATE(3688), 1, - sym_splice_specifier, - STATE(3837), 1, + STATE(3863), 1, sym_field_declaration_list, - STATE(8621), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(9411), 1, + STATE(9550), 1, sym_virtual_specifier, - STATE(10180), 1, + STATE(10518), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2874), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(3534), 2, + STATE(3609), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7779), 2, + STATE(7843), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295092] = 18, + [296012] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7629), 1, + ACTIONS(8424), 1, anon_sym_LBRACK, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10810), 1, + ACTIONS(11296), 1, anon_sym_DASH_GT, - ACTIONS(10812), 1, + ACTIONS(11298), 1, anon_sym_requires, - STATE(8553), 1, + STATE(8736), 1, sym_trailing_return_type, - STATE(8632), 1, + STATE(8737), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8391), 2, + STATE(8550), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7627), 4, + ACTIONS(8422), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [295156] = 21, + [296076] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4780), 1, - anon_sym_COLON_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11202), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - ACTIONS(12797), 1, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13127), 1, sym_identifier, - STATE(4691), 1, - sym_splice_specifier, - STATE(5263), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(5861), 1, - sym_field_declaration_list, - STATE(5997), 1, + STATE(3225), 1, sym__class_declaration_item, - STATE(8584), 1, + STATE(3863), 1, + sym_field_declaration_list, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(9424), 1, + STATE(9550), 1, sym_virtual_specifier, - STATE(10362), 1, + STATE(10518), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(5166), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(5298), 2, + STATE(3609), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7762), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295226] = 21, + [296146] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9658), 1, + ACTIONS(9965), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11048), 1, + anon_sym_COLON_COLON, + ACTIONS(13123), 1, sym_identifier, - STATE(3682), 1, + STATE(4305), 1, sym__splice_specialization_specifier, STATE(4350), 1, - sym_splice_specifier, - STATE(4546), 1, sym_field_declaration_list, - STATE(4773), 1, + STATE(4461), 1, sym__class_declaration_item, - STATE(8638), 1, + STATE(7326), 1, + sym_splice_specifier, + STATE(8745), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9426), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10236), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3904), 2, + STATE(3966), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7773), 2, + STATE(4296), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295296] = 21, + [296216] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4780), 1, - anon_sym_COLON_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11202), 1, + ACTIONS(9965), 1, anon_sym_LBRACE, - ACTIONS(12797), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11048), 1, + anon_sym_COLON_COLON, + ACTIONS(13123), 1, sym_identifier, - STATE(4691), 1, - sym_splice_specifier, - STATE(5263), 1, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(5861), 1, + STATE(4350), 1, sym_field_declaration_list, - STATE(5927), 1, + STATE(4466), 1, sym__class_declaration_item, - STATE(8584), 1, + STATE(7326), 1, + sym_splice_specifier, + STATE(8745), 1, sym__scope_resolution, - STATE(9424), 1, + STATE(9426), 1, sym_virtual_specifier, - STATE(10362), 1, + STATE(10236), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(5166), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(5298), 2, + STATE(3966), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7823), 2, + STATE(4296), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7846), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295366] = 21, + [296286] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6101), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9658), 1, + ACTIONS(9965), 1, anon_sym_LBRACE, - ACTIONS(12804), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11048), 1, + anon_sym_COLON_COLON, + ACTIONS(13123), 1, sym_identifier, - STATE(3682), 1, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(4546), 1, + STATE(4350), 1, sym_field_declaration_list, - STATE(4774), 1, + STATE(4424), 1, sym__class_declaration_item, - STATE(5044), 1, + STATE(7326), 1, sym_splice_specifier, - STATE(8579), 1, + STATE(8745), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9426), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10236), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3904), 2, + STATE(3966), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7823), 2, + STATE(4296), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295436] = 15, + [296356] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11296), 1, + anon_sym_DASH_GT, + ACTIONS(13197), 1, + anon_sym_requires, + STATE(8714), 1, + sym__function_attributes_end, + STATE(8715), 1, + sym_trailing_return_type, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13146), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(11500), 1, - anon_sym_AMP_AMP, - ACTIONS(11502), 1, - anon_sym_AMP, - ACTIONS(11508), 1, - sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(8144), 1, - sym_ms_call_modifier, - STATE(8955), 1, - sym__type_declarator, - STATE(10974), 1, - sym_ms_based_modifier, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(55), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [295494] = 21, + anon_sym_GT2, + [296420] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7968), 1, + anon_sym_LBRACK, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(12738), 1, - sym_identifier, - ACTIONS(12740), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, - sym_splice_specifier, - STATE(4546), 1, - sym_field_declaration_list, - STATE(4773), 1, - sym__class_declaration_item, - STATE(8614), 1, - sym__scope_resolution, - STATE(9523), 1, + ACTIONS(11296), 1, + anon_sym_DASH_GT, + ACTIONS(13239), 1, + anon_sym_requires, + STATE(8724), 1, + sym__function_attributes_end, + STATE(8725), 1, + sym_trailing_return_type, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13202), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, sym_virtual_specifier, - STATE(10297), 1, - sym_base_class_clause, - ACTIONS(6836), 2, + aux_sym__function_postfix_repeat1, + STATE(8561), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7966), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [296484] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(8424), 1, + anon_sym_LBRACK, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11296), 1, + anon_sym_DASH_GT, + ACTIONS(13536), 1, + anon_sym_requires, + STATE(8735), 1, + sym_trailing_return_type, + STATE(8743), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13396), 2, anon_sym_final, anon_sym_override, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6098), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7789), 2, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [295564] = 21, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8550), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8422), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [296548] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9027), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - ACTIONS(10293), 1, + ACTIONS(11105), 1, anon_sym_COLON_COLON, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(12742), 1, + ACTIONS(13144), 1, sym_identifier, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3080), 1, + STATE(3225), 1, sym__class_declaration_item, - STATE(3837), 1, - sym_field_declaration_list, - STATE(7086), 1, + STATE(3800), 1, sym_splice_specifier, - STATE(8605), 1, + STATE(3863), 1, + sym_field_declaration_list, + STATE(8738), 1, sym__scope_resolution, - STATE(9411), 1, + STATE(9550), 1, sym_virtual_specifier, - STATE(10180), 1, + STATE(10518), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2874), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(3534), 2, + STATE(3609), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7735), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295634] = 21, + [296618] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9027), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - ACTIONS(10651), 1, + ACTIONS(11020), 1, anon_sym_COLON_COLON, - ACTIONS(12736), 1, + ACTIONS(13102), 1, sym_identifier, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3096), 1, + STATE(3225), 1, sym__class_declaration_item, - STATE(3688), 1, + STATE(7481), 1, sym_splice_specifier, - STATE(3837), 1, + STATE(7709), 1, sym_field_declaration_list, - STATE(8621), 1, + STATE(8691), 1, sym__scope_resolution, - STATE(9411), 1, + STATE(9483), 1, sym_virtual_specifier, - STATE(10180), 1, + STATE(10463), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2874), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(3534), 2, + STATE(7348), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7823), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295704] = 21, + [296688] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(3256), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7819), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10678), 1, + ACTIONS(9965), 1, + anon_sym_LBRACE, + ACTIONS(11059), 1, anon_sym_COLON_COLON, - ACTIONS(12774), 1, + ACTIONS(13133), 1, sym_identifier, - STATE(2431), 1, + STATE(4272), 1, sym_splice_specifier, - STATE(2514), 1, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(2595), 1, + STATE(4350), 1, sym_field_declaration_list, - STATE(2958), 1, + STATE(4529), 1, sym__class_declaration_item, - STATE(8639), 1, + STATE(8676), 1, sym__scope_resolution, - STATE(9457), 1, + STATE(9426), 1, sym_virtual_specifier, - STATE(10302), 1, + STATE(10236), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2310), 2, + STATE(3966), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2534), 2, + STATE(4296), 2, sym_template_type, sym_splice_type_specifier, - STATE(7754), 2, + STATE(7855), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295774] = 21, + [296758] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(3256), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8909), 1, + ACTIONS(9965), 1, anon_sym_LBRACE, - ACTIONS(10743), 1, + ACTIONS(11059), 1, anon_sym_COLON_COLON, - ACTIONS(12776), 1, + ACTIONS(13133), 1, sym_identifier, - STATE(3634), 1, + STATE(4272), 1, sym_splice_specifier, - STATE(3640), 1, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(3835), 1, + STATE(4350), 1, sym_field_declaration_list, - STATE(4010), 1, + STATE(4543), 1, sym__class_declaration_item, - STATE(8631), 1, + STATE(8676), 1, sym__scope_resolution, - STATE(9498), 1, + STATE(9426), 1, sym_virtual_specifier, - STATE(10434), 1, + STATE(10236), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3486), 2, + STATE(3966), 2, sym__class_name, sym_qualified_type_identifier, - STATE(3624), 2, + STATE(4296), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295844] = 21, + [296828] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3443), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8909), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10719), 1, - anon_sym_COLON_COLON, - ACTIONS(12760), 1, + ACTIONS(13164), 1, sym_identifier, - STATE(3640), 1, + ACTIONS(13166), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3953), 1, - sym__class_declaration_item, - STATE(4072), 1, + STATE(4802), 1, sym_splice_specifier, - STATE(4277), 1, - sym_field_declaration_list, - STATE(8571), 1, + STATE(4932), 1, + sym__class_declaration_item, + STATE(8705), 1, sym__scope_resolution, - STATE(9494), 1, + STATE(9320), 1, + sym_field_declaration_list, + STATE(9556), 1, sym_virtual_specifier, - STATE(10393), 1, + STATE(10528), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3624), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(3851), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7823), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(8848), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295914] = 21, + [296898] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2732), 1, + ACTIONS(3256), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8007), 1, + ACTIONS(9965), 1, anon_sym_LBRACE, - ACTIONS(10735), 1, + ACTIONS(11059), 1, anon_sym_COLON_COLON, - ACTIONS(12772), 1, + ACTIONS(13133), 1, sym_identifier, - STATE(2530), 1, + STATE(4272), 1, sym_splice_specifier, - STATE(2597), 1, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(2644), 1, + STATE(4350), 1, sym_field_declaration_list, - STATE(3027), 1, + STATE(4461), 1, sym__class_declaration_item, - STATE(8624), 1, + STATE(8676), 1, sym__scope_resolution, - STATE(9380), 1, + STATE(9426), 1, sym_virtual_specifier, - STATE(10305), 1, + STATE(10236), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2408), 2, + STATE(3966), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2598), 2, + STATE(4296), 2, sym_template_type, sym_splice_type_specifier, - STATE(7790), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295984] = 21, + [296968] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2732), 1, + ACTIONS(3256), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8007), 1, + ACTIONS(9965), 1, anon_sym_LBRACE, - ACTIONS(10735), 1, + ACTIONS(11059), 1, anon_sym_COLON_COLON, - ACTIONS(12772), 1, + ACTIONS(13133), 1, sym_identifier, - STATE(2530), 1, + STATE(4272), 1, sym_splice_specifier, - STATE(2597), 1, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(2644), 1, + STATE(4350), 1, sym_field_declaration_list, - STATE(3032), 1, + STATE(4466), 1, sym__class_declaration_item, - STATE(8624), 1, + STATE(8676), 1, sym__scope_resolution, - STATE(9380), 1, + STATE(9426), 1, sym_virtual_specifier, - STATE(10305), 1, + STATE(10236), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2408), 2, + STATE(3966), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2598), 2, + STATE(4296), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(7907), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296054] = 21, + [297038] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9027), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - ACTIONS(10293), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - ACTIONS(12742), 1, + ACTIONS(13127), 1, sym_identifier, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3096), 1, + STATE(3240), 1, sym__class_declaration_item, - STATE(3837), 1, + STATE(3863), 1, sym_field_declaration_list, - STATE(7086), 1, + STATE(7260), 1, sym_splice_specifier, - STATE(8605), 1, + STATE(8711), 1, sym__scope_resolution, - STATE(9411), 1, + STATE(9550), 1, sym_virtual_specifier, - STATE(10180), 1, + STATE(10518), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2874), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(3534), 2, + STATE(3609), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7823), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296124] = 15, + [297108] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(11496), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11498), 1, + ACTIONS(11896), 1, anon_sym_STAR, - ACTIONS(11500), 1, + ACTIONS(11898), 1, anon_sym_AMP_AMP, - ACTIONS(11502), 1, + ACTIONS(11900), 1, anon_sym_AMP, - ACTIONS(11508), 1, + ACTIONS(11904), 1, sym_primitive_type, - STATE(3117), 1, + STATE(3180), 1, sym_pointer_type_declarator, - STATE(8137), 1, + STATE(8292), 1, sym_ms_call_modifier, - STATE(8958), 1, + STATE(9114), 1, sym__type_declarator, - STATE(10974), 1, + STATE(11156), 1, sym_ms_based_modifier, - ACTIONS(11506), 4, + ACTIONS(11902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, + STATE(3152), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -677589,3903 +699555,3691 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [296182] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(8087), 1, - anon_sym_LBRACK, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10810), 1, - anon_sym_DASH_GT, - ACTIONS(13172), 1, - anon_sym_requires, - STATE(8573), 1, - sym_trailing_return_type, - STATE(8574), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13032), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8397), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8089), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [296246] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(2648), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7866), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10727), 1, - anon_sym_COLON_COLON, - ACTIONS(12764), 1, - sym_identifier, - STATE(2519), 1, - sym_splice_specifier, - STATE(2567), 1, - sym__splice_specialization_specifier, - STATE(2707), 1, - sym_field_declaration_list, - STATE(3139), 1, - sym__class_declaration_item, - STATE(8604), 1, - sym__scope_resolution, - STATE(9467), 1, - sym_virtual_specifier, - STATE(10241), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - STATE(2331), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2577), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7692), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [296316] = 21, + [297166] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2875), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9596), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - ACTIONS(10705), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(12754), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13127), 1, sym_identifier, - STATE(4067), 1, - sym_splice_specifier, - STATE(4189), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(4257), 1, - sym_field_declaration_list, - STATE(4356), 1, + STATE(3109), 1, sym__class_declaration_item, - STATE(8549), 1, + STATE(3863), 1, + sym_field_declaration_list, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(9428), 1, + STATE(9550), 1, sym_virtual_specifier, - STATE(10315), 1, + STATE(10518), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3858), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4170), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(7704), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [296386] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10621), 1, - anon_sym_COLON_COLON, - ACTIONS(12646), 1, - anon_sym_LBRACE, - ACTIONS(12770), 1, - sym_identifier, - STATE(6603), 1, - sym_splice_specifier, - STATE(7033), 1, - sym__splice_specialization_specifier, - STATE(7472), 1, - sym_field_declaration_list, - STATE(7534), 1, - sym__class_declaration_item, - STATE(8612), 1, - sym__scope_resolution, - STATE(9510), 1, - sym_virtual_specifier, - STATE(10405), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - STATE(7021), 2, + STATE(3609), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7034), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7823), 2, + STATE(7857), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296456] = 21, + [297236] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2732), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8007), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - ACTIONS(10735), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(12772), 1, - sym_identifier, - STATE(2530), 1, - sym_splice_specifier, - STATE(2597), 1, - sym__splice_specialization_specifier, - STATE(2644), 1, - sym_field_declaration_list, - STATE(3053), 1, - sym__class_declaration_item, - STATE(8624), 1, - sym__scope_resolution, - STATE(9380), 1, - sym_virtual_specifier, - STATE(10305), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - STATE(2408), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2598), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7744), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [296526] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(6101), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9658), 1, - anon_sym_LBRACE, - ACTIONS(12804), 1, + ACTIONS(13127), 1, sym_identifier, - STATE(3682), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(4546), 1, - sym_field_declaration_list, - STATE(4786), 1, + STATE(3178), 1, sym__class_declaration_item, - STATE(5044), 1, + STATE(3863), 1, + sym_field_declaration_list, + STATE(7260), 1, sym_splice_specifier, - STATE(8579), 1, + STATE(8711), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9550), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10518), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3712), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(3904), 2, + STATE(3609), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7716), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296596] = 21, + [297306] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9658), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, - sym_identifier, - ACTIONS(12740), 1, + ACTIONS(11105), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + ACTIONS(13144), 1, + sym_identifier, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(3109), 1, + sym__class_declaration_item, + STATE(3800), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(3863), 1, sym_field_declaration_list, - STATE(4829), 1, - sym__class_declaration_item, - STATE(8614), 1, + STATE(8738), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9550), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10518), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3712), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(6098), 2, + STATE(3609), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7823), 2, + STATE(7805), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296666] = 21, + [297376] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2732), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8007), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - ACTIONS(10735), 1, + ACTIONS(11105), 1, anon_sym_COLON_COLON, - ACTIONS(12772), 1, + ACTIONS(13144), 1, sym_identifier, - STATE(2530), 1, - sym_splice_specifier, - STATE(2597), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(2644), 1, - sym_field_declaration_list, - STATE(3070), 1, + STATE(3178), 1, sym__class_declaration_item, - STATE(8624), 1, + STATE(3800), 1, + sym_splice_specifier, + STATE(3863), 1, + sym_field_declaration_list, + STATE(8738), 1, sym__scope_resolution, - STATE(9380), 1, + STATE(9550), 1, sym_virtual_specifier, - STATE(10305), 1, + STATE(10518), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2408), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2598), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(3609), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296736] = 18, + [297446] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10810), 1, - anon_sym_DASH_GT, - ACTIONS(10812), 1, - anon_sym_requires, - STATE(8586), 1, - sym__function_attributes_end, - STATE(8596), 1, - sym_trailing_return_type, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, anon_sym_LPAREN2, - anon_sym_GT2, - [296800] = 23, + ACTIONS(11896), 1, + anon_sym_STAR, + ACTIONS(11898), 1, + anon_sym_AMP_AMP, + ACTIONS(11900), 1, + anon_sym_AMP, + ACTIONS(11904), 1, + sym_primitive_type, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(8337), 1, + sym_ms_call_modifier, + STATE(9122), 1, + sym__type_declarator, + STATE(11156), 1, + sym_ms_based_modifier, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(55), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [297504] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(143), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7878), 1, - anon_sym_COLON_COLON, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(13175), 1, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(13177), 1, - anon_sym_template, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(3871), 1, + ACTIONS(11894), 1, + anon_sym_LPAREN2, + ACTIONS(11896), 1, + anon_sym_STAR, + ACTIONS(11898), 1, + anon_sym_AMP_AMP, + ACTIONS(11900), 1, + anon_sym_AMP, + ACTIONS(11904), 1, + sym_primitive_type, + STATE(3180), 1, sym_pointer_type_declarator, - STATE(3872), 1, - sym_template_function, - STATE(3876), 1, - sym_destructor_name, - STATE(3877), 1, - sym_dependent_identifier, - STATE(3878), 1, - sym_qualified_identifier, - STATE(3879), 1, - sym_operator_name, - STATE(7746), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(9375), 1, - sym_operator_cast, - STATE(9516), 1, - sym_qualified_operator_cast_identifier, - STATE(10974), 1, + STATE(8366), 1, + sym_ms_call_modifier, + STATE(9107), 1, + sym__type_declarator, + STATE(11156), 1, sym_ms_based_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [296874] = 21, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(55), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [297562] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9658), 1, + ACTIONS(9246), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(11111), 1, + anon_sym_COLON_COLON, + ACTIONS(13104), 1, sym_identifier, - STATE(3682), 1, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(3719), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(3905), 1, sym_field_declaration_list, - STATE(4829), 1, + STATE(4111), 1, sym__class_declaration_item, - STATE(8638), 1, + STATE(8707), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9611), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10572), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3904), 2, + STATE(3540), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7823), 2, + STATE(3728), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296944] = 21, + [297632] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9027), 1, - anon_sym_LBRACE, - ACTIONS(10590), 1, - anon_sym_COLON_COLON, - ACTIONS(12752), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, sym_identifier, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3086), 1, - sym__class_declaration_item, - STATE(7299), 1, - sym_splice_specifier, - STATE(7605), 1, - sym_field_declaration_list, - STATE(8564), 1, - sym__scope_resolution, - STATE(9372), 1, - sym_virtual_specifier, - STATE(10346), 1, - sym_base_class_clause, - ACTIONS(6836), 2, - anon_sym_final, - anon_sym_override, - STATE(2874), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7225), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7823), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [297014] = 21, + ACTIONS(11894), 1, + anon_sym_LPAREN2, + ACTIONS(11896), 1, + anon_sym_STAR, + ACTIONS(11898), 1, + anon_sym_AMP_AMP, + ACTIONS(11900), 1, + anon_sym_AMP, + ACTIONS(11904), 1, + sym_primitive_type, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(8311), 1, + sym_ms_call_modifier, + STATE(9109), 1, + sym__type_declarator, + STATE(11156), 1, + sym_ms_based_modifier, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(55), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [297690] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5140), 1, + anon_sym_COLON_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9596), 1, + ACTIONS(11427), 1, anon_sym_LBRACE, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10697), 1, - anon_sym_COLON_COLON, - ACTIONS(12750), 1, + ACTIONS(13125), 1, sym_identifier, - STATE(4189), 1, + STATE(4802), 1, + sym_splice_specifier, + STATE(5472), 1, sym__splice_specialization_specifier, - STATE(4257), 1, + STATE(5954), 1, sym_field_declaration_list, - STATE(4301), 1, + STATE(6036), 1, sym__class_declaration_item, - STATE(7130), 1, - sym_splice_specifier, - STATE(8634), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9428), 1, + STATE(9636), 1, sym_virtual_specifier, - STATE(10315), 1, + STATE(10429), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3858), 2, + STATE(5279), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4170), 2, + STATE(5423), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(7872), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297084] = 21, + [297760] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5140), 1, + anon_sym_COLON_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9027), 1, + ACTIONS(11427), 1, anon_sym_LBRACE, - ACTIONS(10590), 1, - anon_sym_COLON_COLON, - ACTIONS(12752), 1, + ACTIONS(13125), 1, sym_identifier, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3080), 1, - sym__class_declaration_item, - STATE(7299), 1, + STATE(4802), 1, sym_splice_specifier, - STATE(7605), 1, + STATE(5472), 1, + sym__splice_specialization_specifier, + STATE(5954), 1, sym_field_declaration_list, - STATE(8564), 1, + STATE(6085), 1, + sym__class_declaration_item, + STATE(8757), 1, sym__scope_resolution, - STATE(9372), 1, + STATE(9636), 1, sym_virtual_specifier, - STATE(10346), 1, + STATE(10429), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2874), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7225), 2, + STATE(5279), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7768), 2, + STATE(5423), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297154] = 21, + [297830] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2078), 1, + ACTIONS(3104), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(6834), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10686), 1, + ACTIONS(8503), 1, + anon_sym_LBRACE, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(12756), 1, + ACTIONS(13137), 1, sym_identifier, - STATE(1997), 1, + STATE(2742), 1, sym_splice_specifier, - STATE(2026), 1, + STATE(2921), 1, sym__splice_specialization_specifier, - STATE(2069), 1, + STATE(3040), 1, sym_field_declaration_list, - STATE(2078), 1, + STATE(3545), 1, sym__class_declaration_item, - STATE(8593), 1, + STATE(8686), 1, sym__scope_resolution, - STATE(9311), 1, + STATE(9512), 1, sym_virtual_specifier, - STATE(10472), 1, + STATE(10494), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(1966), 2, + STATE(2606), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2067), 2, + STATE(2934), 2, sym_template_type, sym_splice_type_specifier, - STATE(7694), 2, + STATE(7874), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297224] = 21, + [297900] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(3104), 1, anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9658), 1, + ACTIONS(8503), 1, anon_sym_LBRACE, - ACTIONS(12766), 1, - sym_identifier, - ACTIONS(12768), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4691), 1, + ACTIONS(13137), 1, + sym_identifier, + STATE(2742), 1, sym_splice_specifier, - STATE(4774), 1, + STATE(2921), 1, + sym__splice_specialization_specifier, + STATE(3040), 1, + sym_field_declaration_list, + STATE(3549), 1, sym__class_declaration_item, - STATE(8626), 1, + STATE(8686), 1, sym__scope_resolution, - STATE(9214), 1, - sym_field_declaration_list, - STATE(9433), 1, + STATE(9512), 1, sym_virtual_specifier, - STATE(10397), 1, + STATE(10494), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3712), 2, + STATE(2606), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2934), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8718), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297294] = 21, + [297970] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3443), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8909), 1, + ACTIONS(9246), 1, anon_sym_LBRACE, - ACTIONS(10719), 1, + ACTIONS(11111), 1, anon_sym_COLON_COLON, - ACTIONS(12760), 1, + ACTIONS(13104), 1, sym_identifier, - STATE(3640), 1, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(4038), 1, - sym__class_declaration_item, - STATE(4072), 1, + STATE(3719), 1, sym_splice_specifier, - STATE(4277), 1, + STATE(3905), 1, sym_field_declaration_list, - STATE(8571), 1, + STATE(4082), 1, + sym__class_declaration_item, + STATE(8707), 1, sym__scope_resolution, - STATE(9494), 1, + STATE(9611), 1, sym_virtual_specifier, - STATE(10393), 1, + STATE(10572), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3624), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3851), 2, + STATE(3540), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7823), 2, + STATE(3728), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297364] = 21, + [298040] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5140), 1, + anon_sym_COLON_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7819), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10678), 1, - anon_sym_COLON_COLON, - ACTIONS(12774), 1, + ACTIONS(11427), 1, + anon_sym_LBRACE, + ACTIONS(13125), 1, sym_identifier, - STATE(2431), 1, + STATE(4802), 1, sym_splice_specifier, - STATE(2514), 1, + STATE(5472), 1, sym__splice_specialization_specifier, - STATE(2595), 1, + STATE(5954), 1, sym_field_declaration_list, - STATE(2877), 1, + STATE(6077), 1, sym__class_declaration_item, - STATE(8639), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9457), 1, + STATE(9636), 1, sym_virtual_specifier, - STATE(10302), 1, + STATE(10429), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2310), 2, + STATE(5279), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2534), 2, + STATE(5423), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297434] = 21, + [298110] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2875), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5140), 1, + anon_sym_COLON_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9596), 1, + ACTIONS(11427), 1, anon_sym_LBRACE, - ACTIONS(10705), 1, - anon_sym_COLON_COLON, - ACTIONS(12754), 1, + ACTIONS(13125), 1, sym_identifier, - STATE(4067), 1, + STATE(4802), 1, sym_splice_specifier, - STATE(4189), 1, + STATE(5472), 1, sym__splice_specialization_specifier, - STATE(4257), 1, + STATE(5954), 1, sym_field_declaration_list, - STATE(4404), 1, + STATE(6082), 1, sym__class_declaration_item, - STATE(8549), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9428), 1, + STATE(9636), 1, sym_virtual_specifier, - STATE(10315), 1, + STATE(10429), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3858), 2, + STATE(5279), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4170), 2, + STATE(5423), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(7875), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297504] = 21, + [298180] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3104), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9658), 1, + ACTIONS(8503), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(11073), 1, + anon_sym_COLON_COLON, + ACTIONS(13137), 1, sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(2742), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(2921), 1, + sym__splice_specialization_specifier, + STATE(3040), 1, sym_field_declaration_list, - STATE(4786), 1, + STATE(3558), 1, sym__class_declaration_item, - STATE(8638), 1, + STATE(8686), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9512), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10494), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3904), 2, + STATE(2606), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7775), 2, + STATE(2934), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297574] = 21, + [298250] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5140), 1, + anon_sym_COLON_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9027), 1, + ACTIONS(11427), 1, anon_sym_LBRACE, - ACTIONS(10590), 1, - anon_sym_COLON_COLON, - ACTIONS(12752), 1, + ACTIONS(13125), 1, sym_identifier, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3036), 1, - sym__class_declaration_item, - STATE(7299), 1, + STATE(4802), 1, sym_splice_specifier, - STATE(7605), 1, + STATE(5472), 1, + sym__splice_specialization_specifier, + STATE(5954), 1, sym_field_declaration_list, - STATE(8564), 1, + STATE(6028), 1, + sym__class_declaration_item, + STATE(8757), 1, sym__scope_resolution, - STATE(9372), 1, + STATE(9636), 1, sym_virtual_specifier, - STATE(10346), 1, + STATE(10429), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2874), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7225), 2, + STATE(5279), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7823), 2, + STATE(5423), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297644] = 21, + [298320] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2648), 1, + ACTIONS(3104), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7866), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10727), 1, + ACTIONS(8503), 1, + anon_sym_LBRACE, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(12764), 1, + ACTIONS(13137), 1, sym_identifier, - STATE(2519), 1, + STATE(2742), 1, sym_splice_specifier, - STATE(2567), 1, + STATE(2921), 1, sym__splice_specialization_specifier, - STATE(2707), 1, + STATE(3040), 1, sym_field_declaration_list, - STATE(3041), 1, + STATE(3561), 1, sym__class_declaration_item, - STATE(8604), 1, + STATE(8686), 1, sym__scope_resolution, - STATE(9467), 1, + STATE(9512), 1, sym_virtual_specifier, - STATE(10241), 1, + STATE(10494), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2331), 2, + STATE(2606), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2577), 2, + STATE(2934), 2, sym_template_type, sym_splice_type_specifier, - STATE(7689), 2, + STATE(7877), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297714] = 21, + [298390] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(3104), 1, anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9658), 1, + ACTIONS(8503), 1, anon_sym_LBRACE, - ACTIONS(12766), 1, - sym_identifier, - ACTIONS(12768), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4691), 1, + ACTIONS(13137), 1, + sym_identifier, + STATE(2742), 1, sym_splice_specifier, - STATE(4708), 1, + STATE(2921), 1, + sym__splice_specialization_specifier, + STATE(3040), 1, + sym_field_declaration_list, + STATE(3575), 1, sym__class_declaration_item, - STATE(8626), 1, + STATE(8686), 1, sym__scope_resolution, - STATE(9214), 1, - sym_field_declaration_list, - STATE(9433), 1, + STATE(9512), 1, sym_virtual_specifier, - STATE(10397), 1, + STATE(10494), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3712), 2, + STATE(2606), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2934), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8718), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297784] = 21, + [298460] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(2744), 1, + ACTIONS(2300), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8193), 1, + ACTIONS(8158), 1, anon_sym_LBRACE, - ACTIONS(10711), 1, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11010), 1, anon_sym_COLON_COLON, - ACTIONS(12758), 1, + ACTIONS(13135), 1, sym_identifier, - STATE(2677), 1, + STATE(2547), 1, sym_splice_specifier, - STATE(2837), 1, + STATE(2601), 1, sym__splice_specialization_specifier, - STATE(2842), 1, + STATE(2692), 1, sym_field_declaration_list, - STATE(3413), 1, + STATE(3042), 1, sym__class_declaration_item, - STATE(8588), 1, + STATE(8682), 1, sym__scope_resolution, - STATE(9319), 1, + STATE(9585), 1, sym_virtual_specifier, - STATE(10067), 1, + STATE(10216), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2537), 2, + STATE(2389), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2802), 2, + STATE(2615), 2, sym_template_type, sym_splice_type_specifier, - STATE(7776), 2, + STATE(7820), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297854] = 21, + [298530] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(2078), 1, + ACTIONS(2300), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(6834), 1, + ACTIONS(8158), 1, anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10686), 1, + ACTIONS(11010), 1, anon_sym_COLON_COLON, - ACTIONS(12756), 1, + ACTIONS(13135), 1, sym_identifier, - STATE(1997), 1, + STATE(2547), 1, sym_splice_specifier, - STATE(2026), 1, + STATE(2601), 1, sym__splice_specialization_specifier, - STATE(2069), 1, + STATE(2692), 1, sym_field_declaration_list, - STATE(2118), 1, + STATE(2949), 1, sym__class_declaration_item, - STATE(8593), 1, + STATE(8682), 1, sym__scope_resolution, - STATE(9311), 1, + STATE(9585), 1, sym_virtual_specifier, - STATE(10472), 1, + STATE(10216), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(1966), 2, + STATE(2389), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2067), 2, + STATE(2615), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297924] = 21, + [298600] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4780), 1, - anon_sym_COLON_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11202), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12797), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(4691), 1, - sym_splice_specifier, - STATE(5263), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(5861), 1, + STATE(4504), 1, + sym_splice_specifier, + STATE(4654), 1, sym_field_declaration_list, - STATE(5948), 1, + STATE(4836), 1, sym__class_declaration_item, - STATE(8584), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9424), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10362), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(5166), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(5298), 2, + STATE(4029), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7823), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297994] = 21, + [298670] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4780), 1, - anon_sym_COLON_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11202), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12797), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(4691), 1, - sym_splice_specifier, - STATE(5263), 1, + ACTIONS(13154), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(5861), 1, + STATE(4504), 1, + sym_splice_specifier, + STATE(4654), 1, sym_field_declaration_list, - STATE(5953), 1, + STATE(4932), 1, sym__class_declaration_item, - STATE(8584), 1, + STATE(8710), 1, sym__scope_resolution, - STATE(9424), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10362), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, - anon_sym_override, - STATE(5166), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(5298), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7780), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [298064] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, - anon_sym_LPAREN2, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(11500), 1, - anon_sym_AMP_AMP, - ACTIONS(11502), 1, - anon_sym_AMP, - ACTIONS(11508), 1, - sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(8199), 1, - sym_ms_call_modifier, - STATE(8989), 1, - sym__type_declarator, - STATE(10974), 1, - sym_ms_based_modifier, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(55), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [298122] = 21, + anon_sym_override, + STATE(3790), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6256), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7955), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [298740] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9658), 1, + ACTIONS(9246), 1, anon_sym_LBRACE, - ACTIONS(12766), 1, - sym_identifier, - ACTIONS(12768), 1, + ACTIONS(11111), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + ACTIONS(13104), 1, + sym_identifier, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(4691), 1, + STATE(3719), 1, sym_splice_specifier, - STATE(4786), 1, + STATE(3905), 1, + sym_field_declaration_list, + STATE(4125), 1, sym__class_declaration_item, - STATE(8626), 1, + STATE(8707), 1, sym__scope_resolution, - STATE(9214), 1, - sym_field_declaration_list, - STATE(9433), 1, + STATE(9611), 1, sym_virtual_specifier, - STATE(10397), 1, + STATE(10572), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3712), 2, + STATE(3540), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(7759), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8718), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298192] = 21, + [298810] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7819), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10678), 1, + ACTIONS(9246), 1, + anon_sym_LBRACE, + ACTIONS(11111), 1, anon_sym_COLON_COLON, - ACTIONS(12774), 1, + ACTIONS(13104), 1, sym_identifier, - STATE(2431), 1, - sym_splice_specifier, - STATE(2514), 1, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(2595), 1, + STATE(3719), 1, + sym_splice_specifier, + STATE(3905), 1, sym_field_declaration_list, - STATE(2860), 1, + STATE(4048), 1, sym__class_declaration_item, - STATE(8639), 1, + STATE(8707), 1, sym__scope_resolution, - STATE(9457), 1, + STATE(9611), 1, sym_virtual_specifier, - STATE(10302), 1, + STATE(10572), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2310), 2, + STATE(3540), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2534), 2, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(7707), 2, + STATE(7884), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298262] = 21, + [298880] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2744), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8193), 1, + ACTIONS(9246), 1, anon_sym_LBRACE, - ACTIONS(10711), 1, + ACTIONS(11111), 1, anon_sym_COLON_COLON, - ACTIONS(12758), 1, + ACTIONS(13104), 1, sym_identifier, - STATE(2677), 1, - sym_splice_specifier, - STATE(2837), 1, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(2842), 1, + STATE(3719), 1, + sym_splice_specifier, + STATE(3905), 1, sym_field_declaration_list, - STATE(3417), 1, + STATE(4093), 1, sym__class_declaration_item, - STATE(8588), 1, + STATE(8707), 1, sym__scope_resolution, - STATE(9319), 1, + STATE(9611), 1, sym_virtual_specifier, - STATE(10067), 1, + STATE(10572), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2537), 2, + STATE(3540), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2802), 2, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298332] = 21, + [298950] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(4360), 1, anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9027), 1, + ACTIONS(9246), 1, anon_sym_LBRACE, - ACTIONS(10590), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(12752), 1, + ACTIONS(13152), 1, sym_identifier, - STATE(2855), 1, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(3096), 1, + STATE(4111), 1, sym__class_declaration_item, - STATE(7299), 1, + STATE(4263), 1, sym_splice_specifier, - STATE(7605), 1, + STATE(4380), 1, sym_field_declaration_list, - STATE(8564), 1, + STATE(8675), 1, sym__scope_resolution, - STATE(9372), 1, + STATE(9587), 1, sym_virtual_specifier, - STATE(10346), 1, + STATE(10321), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2874), 2, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(7225), 2, + STATE(4032), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7823), 2, + STATE(7887), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298402] = 21, + [299020] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(4360), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6101), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9658), 1, + ACTIONS(9246), 1, anon_sym_LBRACE, - ACTIONS(12804), 1, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, + ACTIONS(13152), 1, sym_identifier, - STATE(3682), 1, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(4546), 1, - sym_field_declaration_list, - STATE(4773), 1, + STATE(4082), 1, sym__class_declaration_item, - STATE(5044), 1, + STATE(4263), 1, sym_splice_specifier, - STATE(8579), 1, + STATE(4380), 1, + sym_field_declaration_list, + STATE(8675), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9587), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10321), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3712), 2, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(3904), 2, + STATE(4032), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7725), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298472] = 21, + [299090] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(4360), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9027), 1, + ACTIONS(9246), 1, anon_sym_LBRACE, - ACTIONS(10651), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(12736), 1, + ACTIONS(13152), 1, sym_identifier, - STATE(2855), 1, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(3080), 1, + STATE(4125), 1, sym__class_declaration_item, - STATE(3688), 1, + STATE(4263), 1, sym_splice_specifier, - STATE(3837), 1, + STATE(4380), 1, sym_field_declaration_list, - STATE(8621), 1, + STATE(8675), 1, sym__scope_resolution, - STATE(9411), 1, + STATE(9587), 1, sym_virtual_specifier, - STATE(10180), 1, + STATE(10321), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2874), 2, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(3534), 2, + STATE(4032), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7729), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298542] = 21, + [299160] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(4360), 1, anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9658), 1, + ACTIONS(9246), 1, anon_sym_LBRACE, - ACTIONS(12766), 1, - sym_identifier, - ACTIONS(12768), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + ACTIONS(13152), 1, + sym_identifier, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(4691), 1, - sym_splice_specifier, - STATE(4773), 1, + STATE(4048), 1, sym__class_declaration_item, - STATE(8626), 1, - sym__scope_resolution, - STATE(9214), 1, + STATE(4263), 1, + sym_splice_specifier, + STATE(4380), 1, sym_field_declaration_list, - STATE(9433), 1, + STATE(8675), 1, + sym__scope_resolution, + STATE(9587), 1, sym_virtual_specifier, - STATE(10397), 1, + STATE(10321), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3712), 2, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(7752), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8718), 2, + STATE(4032), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(7889), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298612] = 21, + [299230] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(4360), 1, anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9658), 1, + ACTIONS(9246), 1, anon_sym_LBRACE, - ACTIONS(12766), 1, - sym_identifier, - ACTIONS(12768), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + ACTIONS(13152), 1, + sym_identifier, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(4691), 1, - sym_splice_specifier, - STATE(4829), 1, + STATE(4093), 1, sym__class_declaration_item, - STATE(8626), 1, - sym__scope_resolution, - STATE(9214), 1, + STATE(4263), 1, + sym_splice_specifier, + STATE(4380), 1, sym_field_declaration_list, - STATE(9433), 1, + STATE(8675), 1, + sym__scope_resolution, + STATE(9587), 1, sym_virtual_specifier, - STATE(10397), 1, + STATE(10321), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3712), 2, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8718), 2, + STATE(4032), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(7955), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298682] = 21, + [299300] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(4654), 1, sym_field_declaration_list, - STATE(4774), 1, + STATE(4862), 1, sym__class_declaration_item, - STATE(8638), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9470), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10307), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(3904), 2, + STATE(4029), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7823), 2, + STATE(7830), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298752] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, - anon_sym_LPAREN2, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(11500), 1, - anon_sym_AMP_AMP, - ACTIONS(11502), 1, - anon_sym_AMP, - ACTIONS(11508), 1, - sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(8184), 1, - sym_ms_call_modifier, - STATE(8988), 1, - sym__type_declarator, - STATE(10974), 1, - sym_ms_based_modifier, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - ACTIONS(55), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [298810] = 21, + [299370] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9658), 1, + ACTIONS(7243), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(13119), 1, sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(2104), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2172), 1, sym_field_declaration_list, - STATE(4708), 1, + STATE(2176), 1, sym__class_declaration_item, - STATE(8638), 1, + STATE(8763), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9644), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10276), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3904), 2, + STATE(2075), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7823), 2, + STATE(2147), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7813), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298880] = 21, + [299440] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2744), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8193), 1, + ACTIONS(7243), 1, anon_sym_LBRACE, - ACTIONS(10711), 1, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - ACTIONS(12758), 1, + ACTIONS(13119), 1, sym_identifier, - STATE(2677), 1, + STATE(2104), 1, sym_splice_specifier, - STATE(2837), 1, + STATE(2170), 1, sym__splice_specialization_specifier, - STATE(2842), 1, + STATE(2172), 1, sym_field_declaration_list, - STATE(3447), 1, + STATE(2189), 1, sym__class_declaration_item, - STATE(8588), 1, + STATE(8763), 1, sym__scope_resolution, - STATE(9319), 1, + STATE(9644), 1, sym_virtual_specifier, - STATE(10067), 1, + STATE(10276), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2537), 2, + STATE(2075), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2802), 2, + STATE(2147), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298950] = 21, + [299510] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9596), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10697), 1, - anon_sym_COLON_COLON, - ACTIONS(12750), 1, + ACTIONS(13164), 1, sym_identifier, - STATE(4189), 1, + ACTIONS(13166), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4257), 1, - sym_field_declaration_list, - STATE(4344), 1, - sym__class_declaration_item, - STATE(7130), 1, + STATE(4802), 1, sym_splice_specifier, - STATE(8634), 1, + STATE(4968), 1, + sym__class_declaration_item, + STATE(8705), 1, sym__scope_resolution, - STATE(9428), 1, + STATE(9320), 1, + sym_field_declaration_list, + STATE(9556), 1, sym_virtual_specifier, - STATE(10315), 1, + STATE(10528), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3858), 2, + STATE(3790), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7816), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8848), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4170), 2, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [299580] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7241), 1, + anon_sym_COLON, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10069), 1, + anon_sym_LBRACE, + ACTIONS(13164), 1, + sym_identifier, + ACTIONS(13166), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4802), 1, + sym_splice_specifier, + STATE(4984), 1, + sym__class_declaration_item, + STATE(8705), 1, + sym__scope_resolution, + STATE(9320), 1, + sym_field_declaration_list, + STATE(9556), 1, + sym_virtual_specifier, + STATE(10528), 1, + sym_base_class_clause, + ACTIONS(7245), 2, + anon_sym_final, + anon_sym_override, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(8848), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299020] = 21, + [299650] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2744), 1, + ACTIONS(3008), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8193), 1, + ACTIONS(8269), 1, anon_sym_LBRACE, - ACTIONS(10711), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(12758), 1, + ACTIONS(13156), 1, sym_identifier, - STATE(2677), 1, + STATE(2638), 1, sym_splice_specifier, - STATE(2837), 1, + STATE(2696), 1, sym__splice_specialization_specifier, - STATE(2842), 1, + STATE(2800), 1, sym_field_declaration_list, - STATE(3451), 1, + STATE(3086), 1, sym__class_declaration_item, - STATE(8588), 1, + STATE(8687), 1, sym__scope_resolution, - STATE(9319), 1, + STATE(9491), 1, sym_virtual_specifier, - STATE(10067), 1, + STATE(10452), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2537), 2, + STATE(2460), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2802), 2, + STATE(2678), 2, sym_template_type, sym_splice_type_specifier, - STATE(7783), 2, + STATE(7898), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299090] = 21, + [299720] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9027), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - ACTIONS(10651), 1, + ACTIONS(11105), 1, anon_sym_COLON_COLON, - ACTIONS(12736), 1, + ACTIONS(13144), 1, sym_identifier, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(3036), 1, + STATE(3237), 1, sym__class_declaration_item, - STATE(3688), 1, + STATE(3800), 1, sym_splice_specifier, - STATE(3837), 1, + STATE(3863), 1, sym_field_declaration_list, - STATE(8621), 1, + STATE(8738), 1, sym__scope_resolution, - STATE(9411), 1, + STATE(9550), 1, sym_virtual_specifier, - STATE(10180), 1, + STATE(10518), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2874), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(3534), 2, + STATE(3609), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7823), 2, + STATE(7850), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299160] = 21, + [299790] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4780), 1, - anon_sym_COLON_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(3008), 1, anon_sym_LBRACK_COLON, - ACTIONS(6832), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11202), 1, + ACTIONS(8269), 1, anon_sym_LBRACE, - ACTIONS(12797), 1, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(13156), 1, sym_identifier, - STATE(4691), 1, + STATE(2638), 1, sym_splice_specifier, - STATE(5263), 1, + STATE(2696), 1, sym__splice_specialization_specifier, - STATE(5861), 1, + STATE(2800), 1, sym_field_declaration_list, - STATE(5945), 1, + STATE(3213), 1, sym__class_declaration_item, - STATE(8584), 1, + STATE(8687), 1, sym__scope_resolution, - STATE(9424), 1, + STATE(9491), 1, sym_virtual_specifier, - STATE(10362), 1, + STATE(10452), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(5166), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(5298), 2, + STATE(2460), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7823), 2, + STATE(2678), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299230] = 21, + [299860] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(3008), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9596), 1, + ACTIONS(8269), 1, anon_sym_LBRACE, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10697), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(12750), 1, + ACTIONS(13156), 1, sym_identifier, - STATE(4189), 1, + STATE(2638), 1, + sym_splice_specifier, + STATE(2696), 1, sym__splice_specialization_specifier, - STATE(4257), 1, + STATE(2800), 1, sym_field_declaration_list, - STATE(4356), 1, + STATE(3112), 1, sym__class_declaration_item, - STATE(7130), 1, - sym_splice_specifier, - STATE(8634), 1, + STATE(8687), 1, sym__scope_resolution, - STATE(9428), 1, + STATE(9491), 1, sym_virtual_specifier, - STATE(10315), 1, + STATE(10452), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3858), 2, + STATE(2460), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4170), 2, + STATE(2678), 2, sym_template_type, sym_splice_type_specifier, - STATE(7749), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299300] = 21, + [299930] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(3008), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9596), 1, + ACTIONS(8269), 1, anon_sym_LBRACE, - ACTIONS(10705), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(12754), 1, + ACTIONS(13156), 1, sym_identifier, - STATE(4067), 1, + STATE(2638), 1, sym_splice_specifier, - STATE(4189), 1, + STATE(2696), 1, sym__splice_specialization_specifier, - STATE(4257), 1, + STATE(2800), 1, sym_field_declaration_list, - STATE(4344), 1, + STATE(3179), 1, sym__class_declaration_item, - STATE(8549), 1, + STATE(8687), 1, sym__scope_resolution, - STATE(9428), 1, + STATE(9491), 1, sym_virtual_specifier, - STATE(10315), 1, + STATE(10452), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3858), 2, + STATE(2460), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4170), 2, + STATE(2678), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(7900), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299370] = 21, + [300000] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2744), 1, + ACTIONS(3008), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8193), 1, + ACTIONS(8269), 1, anon_sym_LBRACE, - ACTIONS(10711), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(12758), 1, + ACTIONS(13156), 1, sym_identifier, - STATE(2677), 1, + STATE(2638), 1, sym_splice_specifier, - STATE(2837), 1, + STATE(2696), 1, sym__splice_specialization_specifier, - STATE(2842), 1, + STATE(2800), 1, sym_field_declaration_list, - STATE(3477), 1, + STATE(3162), 1, sym__class_declaration_item, - STATE(8588), 1, + STATE(8687), 1, sym__scope_resolution, - STATE(9319), 1, + STATE(9491), 1, sym_virtual_specifier, - STATE(10067), 1, + STATE(10452), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2537), 2, + STATE(2460), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2802), 2, + STATE(2678), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299440] = 21, + [300070] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(143), 1, + anon_sym_operator, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(8238), 1, + anon_sym_COLON_COLON, + ACTIONS(11896), 1, + anon_sym_STAR, + ACTIONS(13539), 1, + sym_identifier, + ACTIONS(13541), 1, + anon_sym_template, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(3957), 1, + sym_pointer_type_declarator, + STATE(3972), 1, + sym_destructor_name, + STATE(3975), 1, + sym_qualified_identifier, + STATE(3996), 1, + sym_template_function, + STATE(4016), 1, + sym_operator_name, + STATE(4018), 1, + sym_dependent_identifier, + STATE(7901), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(9442), 1, + sym_operator_cast, + STATE(9637), 1, + sym_qualified_operator_cast_identifier, + STATE(11156), 1, + sym_ms_based_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [300144] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8909), 1, - anon_sym_LBRACE, - ACTIONS(10743), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10988), 1, anon_sym_COLON_COLON, - ACTIONS(12776), 1, + ACTIONS(12978), 1, + anon_sym_LBRACE, + ACTIONS(13168), 1, sym_identifier, - STATE(3634), 1, + STATE(6581), 1, sym_splice_specifier, - STATE(3640), 1, + STATE(7121), 1, sym__splice_specialization_specifier, - STATE(3835), 1, + STATE(7595), 1, sym_field_declaration_list, - STATE(4043), 1, + STATE(7623), 1, sym__class_declaration_item, - STATE(8631), 1, + STATE(8700), 1, sym__scope_resolution, - STATE(9498), 1, + STATE(9479), 1, sym_virtual_specifier, - STATE(10434), 1, + STATE(10590), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3486), 2, + STATE(7089), 2, sym__class_name, sym_qualified_type_identifier, - STATE(3624), 2, + STATE(7122), 2, sym_template_type, sym_splice_type_specifier, - STATE(7690), 2, + STATE(7904), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299510] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9074), 1, - anon_sym___asm, - ACTIONS(10922), 1, - anon_sym_LPAREN2, - ACTIONS(10936), 1, - anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_STAR, - ACTIONS(11253), 1, - anon_sym_AMP_AMP, - ACTIONS(11255), 1, - anon_sym_AMP, - STATE(4486), 1, - sym_parameter_list, - STATE(8183), 1, - sym__function_declarator_seq, - STATE(8359), 1, - sym__abstract_declarator, - STATE(8180), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9072), 12, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [299562] = 21, + [300214] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9658), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10988), 1, + anon_sym_COLON_COLON, + ACTIONS(12978), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13168), 1, sym_identifier, - ACTIONS(12740), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(6581), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(7121), 1, + sym__splice_specialization_specifier, + STATE(7595), 1, sym_field_declaration_list, - STATE(4708), 1, + STATE(7650), 1, sym__class_declaration_item, - STATE(8614), 1, + STATE(8700), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9479), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10590), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6098), 2, + STATE(7089), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7823), 2, + STATE(7122), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299632] = 21, + [300284] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7819), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10678), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10988), 1, anon_sym_COLON_COLON, - ACTIONS(12774), 1, + ACTIONS(12978), 1, + anon_sym_LBRACE, + ACTIONS(13168), 1, sym_identifier, - STATE(2431), 1, + STATE(6581), 1, sym_splice_specifier, - STATE(2514), 1, + STATE(7121), 1, sym__splice_specialization_specifier, - STATE(2595), 1, + STATE(7595), 1, sym_field_declaration_list, - STATE(2876), 1, + STATE(7631), 1, sym__class_declaration_item, - STATE(8639), 1, + STATE(8700), 1, sym__scope_resolution, - STATE(9457), 1, + STATE(9479), 1, sym_virtual_specifier, - STATE(10302), 1, + STATE(10590), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2310), 2, + STATE(7089), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2534), 2, + STATE(7122), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299702] = 21, + [300354] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10299), 1, + ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - ACTIONS(10621), 1, + ACTIONS(10988), 1, anon_sym_COLON_COLON, - ACTIONS(12646), 1, + ACTIONS(12978), 1, anon_sym_LBRACE, - ACTIONS(12770), 1, + ACTIONS(13168), 1, sym_identifier, - STATE(6603), 1, + STATE(6581), 1, sym_splice_specifier, - STATE(7033), 1, + STATE(7121), 1, sym__splice_specialization_specifier, - STATE(7472), 1, + STATE(7595), 1, sym_field_declaration_list, - STATE(7516), 1, + STATE(7641), 1, sym__class_declaration_item, - STATE(8612), 1, + STATE(8700), 1, sym__scope_resolution, - STATE(9510), 1, + STATE(9479), 1, sym_virtual_specifier, - STATE(10405), 1, + STATE(10590), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(7021), 2, + STATE(7089), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7034), 2, + STATE(7122), 2, sym_template_type, sym_splice_type_specifier, - STATE(7696), 2, + STATE(7906), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299772] = 21, + [300424] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9658), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10988), 1, + anon_sym_COLON_COLON, + ACTIONS(12978), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13168), 1, sym_identifier, - ACTIONS(12740), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(6581), 1, sym_splice_specifier, - STATE(4546), 1, + STATE(7121), 1, + sym__splice_specialization_specifier, + STATE(7595), 1, sym_field_declaration_list, - STATE(4774), 1, + STATE(7614), 1, sym__class_declaration_item, - STATE(8614), 1, + STATE(8700), 1, sym__scope_resolution, - STATE(9523), 1, + STATE(9479), 1, sym_virtual_specifier, - STATE(10297), 1, + STATE(10590), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6098), 2, + STATE(7089), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7823), 2, + STATE(7122), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299842] = 21, + [300494] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2732), 1, + ACTIONS(3256), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6832), 1, + ACTIONS(7241), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8007), 1, + ACTIONS(9965), 1, anon_sym_LBRACE, - ACTIONS(10735), 1, + ACTIONS(11059), 1, anon_sym_COLON_COLON, - ACTIONS(12772), 1, + ACTIONS(13133), 1, sym_identifier, - STATE(2530), 1, + STATE(4272), 1, sym_splice_specifier, - STATE(2597), 1, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(2644), 1, + STATE(4350), 1, sym_field_declaration_list, - STATE(3050), 1, + STATE(4424), 1, sym__class_declaration_item, - STATE(8624), 1, + STATE(8676), 1, sym__scope_resolution, - STATE(9380), 1, + STATE(9426), 1, sym_virtual_specifier, - STATE(10305), 1, + STATE(10236), 1, sym_base_class_clause, - ACTIONS(6836), 2, + ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - STATE(2408), 2, + STATE(3966), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2598), 2, + STATE(4296), 2, sym_template_type, sym_splice_type_specifier, - STATE(7823), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299912] = 24, + [300564] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(11574), 1, - anon_sym_STAR, - ACTIONS(13179), 1, + ACTIONS(5922), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5930), 1, + anon_sym_EQ, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13181), 1, - anon_sym_TILDE, - ACTIONS(13183), 1, + ACTIONS(13545), 1, + anon_sym_STAR, + ACTIONS(13547), 1, + anon_sym_AMP, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13185), 1, - anon_sym_template, - ACTIONS(13187), 1, - anon_sym_operator, - STATE(2670), 1, - sym_template_type, - STATE(2672), 1, - sym_dependent_type_identifier, - STATE(2797), 1, - sym_qualified_type_identifier, - STATE(3682), 1, + ACTIONS(13551), 1, + anon_sym_RBRACK, + ACTIONS(13553), 1, + sym_this, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(5276), 1, - sym_pointer_type_declarator, - STATE(5278), 1, - sym_template_function, - STATE(5280), 1, - sym_destructor_name, - STATE(5281), 1, - sym_dependent_identifier, - STATE(5282), 1, - sym_qualified_identifier, - STATE(5284), 1, - sym_operator_name, - STATE(7791), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(11462), 1, - sym_ms_based_modifier, - STATE(10976), 3, + STATE(10396), 1, + sym_lambda_default_capture, + STATE(9680), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10768), 5, sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [299987] = 24, + [300627] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(11564), 1, + ACTIONS(11882), 1, anon_sym_STAR, - ACTIONS(13189), 1, + ACTIONS(13555), 1, sym_identifier, - ACTIONS(13191), 1, + ACTIONS(13557), 1, anon_sym_TILDE, - ACTIONS(13193), 1, + ACTIONS(13559), 1, anon_sym_COLON_COLON, - ACTIONS(13195), 1, + ACTIONS(13561), 1, anon_sym_template, - ACTIONS(13197), 1, + ACTIONS(13563), 1, anon_sym_operator, - STATE(2670), 1, + STATE(2455), 1, sym_template_type, - STATE(2672), 1, + STATE(2457), 1, sym_dependent_type_identifier, - STATE(2797), 1, + STATE(2543), 1, sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3741), 1, + STATE(5691), 1, sym_pointer_type_declarator, - STATE(3742), 1, + STATE(5695), 1, sym_template_function, - STATE(3749), 1, + STATE(5701), 1, sym_destructor_name, - STATE(3757), 1, + STATE(5702), 1, sym_dependent_identifier, - STATE(3782), 1, + STATE(5704), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(5705), 1, sym_operator_name, - STATE(7792), 1, + STATE(7909), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10884), 1, + STATE(11657), 1, sym_ms_based_modifier, - STATE(10976), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [300062] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, - anon_sym_EQ, - ACTIONS(13199), 1, - sym_identifier, - ACTIONS(13201), 1, - anon_sym_STAR, - ACTIONS(13203), 1, - anon_sym_AMP, - ACTIONS(13205), 1, - anon_sym_COLON_COLON, - ACTIONS(13207), 1, - anon_sym_RBRACK, - ACTIONS(13209), 1, - sym_this, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7872), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(10128), 1, - sym_lambda_default_capture, - STATE(9644), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [300125] = 18, + [300702] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, + ACTIONS(5922), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, + ACTIONS(5930), 1, anon_sym_EQ, - ACTIONS(13199), 1, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13201), 1, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13203), 1, + ACTIONS(13547), 1, anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, + ACTIONS(13553), 1, sym_this, - ACTIONS(13211), 1, + ACTIONS(13565), 1, anon_sym_RBRACK, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, + STATE(10396), 1, sym_lambda_default_capture, - STATE(9644), 5, + STATE(9680), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [300188] = 18, + [300765] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, + ACTIONS(5922), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, + ACTIONS(5930), 1, anon_sym_EQ, - ACTIONS(13199), 1, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13201), 1, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13203), 1, + ACTIONS(13547), 1, anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, + ACTIONS(13553), 1, sym_this, - ACTIONS(13213), 1, + ACTIONS(13567), 1, anon_sym_RBRACK, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, + STATE(10396), 1, sym_lambda_default_capture, - STATE(9644), 5, + STATE(9680), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [300251] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8512), 2, - anon_sym_LBRACK, - anon_sym___asm, - STATE(6299), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7937), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8514), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [300294] = 24, + [300828] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(11564), 1, + ACTIONS(11912), 1, anon_sym_STAR, - ACTIONS(13191), 1, - anon_sym_TILDE, - ACTIONS(13197), 1, - anon_sym_operator, - ACTIONS(13215), 1, + ACTIONS(13569), 1, sym_identifier, - ACTIONS(13217), 1, + ACTIONS(13571), 1, + anon_sym_TILDE, + ACTIONS(13573), 1, anon_sym_COLON_COLON, - ACTIONS(13219), 1, + ACTIONS(13575), 1, anon_sym_template, - STATE(3646), 1, - sym_template_type, - STATE(3649), 1, + ACTIONS(13577), 1, + anon_sym_operator, + STATE(2755), 1, sym_dependent_type_identifier, - STATE(3650), 1, + STATE(2812), 1, + sym_template_type, + STATE(2920), 1, sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3741), 1, + STATE(3848), 1, sym_pointer_type_declarator, - STATE(3742), 1, + STATE(3850), 1, sym_template_function, - STATE(3749), 1, + STATE(3851), 1, sym_destructor_name, - STATE(3757), 1, + STATE(3852), 1, sym_dependent_identifier, - STATE(3782), 1, + STATE(3853), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3856), 1, sym_operator_name, - STATE(7797), 1, + STATE(7912), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10884), 1, + STATE(11037), 1, sym_ms_based_modifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [300369] = 18, + [300903] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, + ACTIONS(5922), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, + ACTIONS(5930), 1, anon_sym_EQ, - ACTIONS(13199), 1, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13201), 1, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13203), 1, + ACTIONS(13547), 1, anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, + ACTIONS(13553), 1, sym_this, - ACTIONS(13221), 1, + ACTIONS(13579), 1, anon_sym_RBRACK, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, + STATE(10396), 1, sym_lambda_default_capture, - STATE(9644), 5, + STATE(9680), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [300432] = 18, + [300966] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, + ACTIONS(5922), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, + ACTIONS(5930), 1, anon_sym_EQ, - ACTIONS(13199), 1, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13201), 1, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13203), 1, + ACTIONS(13547), 1, anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, + ACTIONS(13553), 1, sym_this, - ACTIONS(13223), 1, + ACTIONS(13581), 1, anon_sym_RBRACK, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, + STATE(10396), 1, sym_lambda_default_capture, - STATE(9644), 5, + STATE(9680), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [300495] = 18, + [301029] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, + ACTIONS(5922), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, + ACTIONS(5930), 1, anon_sym_EQ, - ACTIONS(13199), 1, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13201), 1, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13203), 1, + ACTIONS(13547), 1, anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, + ACTIONS(13553), 1, sym_this, - ACTIONS(13225), 1, + ACTIONS(13583), 1, anon_sym_RBRACK, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, + STATE(10396), 1, sym_lambda_default_capture, - STATE(9644), 5, + STATE(9680), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [300558] = 18, + [301092] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11140), 1, + ACTIONS(11298), 1, + anon_sym_requires, + ACTIONS(11516), 1, anon_sym_DASH_GT, - ACTIONS(12144), 1, + ACTIONS(12406), 1, anon_sym___attribute__, - ACTIONS(12147), 1, + ACTIONS(12409), 1, anon_sym___attribute, - ACTIONS(12833), 1, + STATE(8667), 1, + sym__function_attributes_end, + STATE(8718), 1, + sym_trailing_return_type, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [301155] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(8424), 1, + anon_sym_LBRACK, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11298), 1, anon_sym_requires, - STATE(8490), 1, + ACTIONS(11516), 1, + anon_sym_DASH_GT, + ACTIONS(13242), 1, + anon_sym___attribute__, + ACTIONS(13245), 1, + anon_sym___attribute, + STATE(8669), 1, sym__function_attributes_end, - STATE(8568), 1, + STATE(8736), 1, sym_trailing_return_type, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(12744), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8550), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 3, + ACTIONS(8422), 3, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [300621] = 24, + [301218] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2062), 1, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(11564), 1, + ACTIONS(5625), 1, + anon_sym_COLON_COLON, + ACTIONS(11896), 1, anon_sym_STAR, - ACTIONS(13191), 1, - anon_sym_TILDE, - ACTIONS(13197), 1, - anon_sym_operator, - ACTIONS(13227), 1, + ACTIONS(13585), 1, + sym_identifier, + ACTIONS(13587), 1, + anon_sym_template, + STATE(3743), 1, + sym_dependent_type_identifier, + STATE(3748), 1, + sym_template_type, + STATE(3752), 1, + sym_qualified_type_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(3957), 1, + sym_pointer_type_declarator, + STATE(3972), 1, + sym_destructor_name, + STATE(3975), 1, + sym_qualified_identifier, + STATE(3996), 1, + sym_template_function, + STATE(4016), 1, + sym_operator_name, + STATE(4018), 1, + sym_dependent_identifier, + STATE(7918), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(11156), 1, + sym_ms_based_modifier, + STATE(10768), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [301293] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11906), 1, + anon_sym_STAR, + ACTIONS(13589), 1, sym_identifier, - ACTIONS(13229), 1, + ACTIONS(13591), 1, + anon_sym_TILDE, + ACTIONS(13593), 1, anon_sym_COLON_COLON, - ACTIONS(13231), 1, + ACTIONS(13595), 1, anon_sym_template, - STATE(1986), 1, + ACTIONS(13597), 1, + anon_sym_operator, + STATE(2579), 1, sym_template_type, - STATE(1987), 1, + STATE(2580), 1, sym_dependent_type_identifier, - STATE(1998), 1, + STATE(2633), 1, sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3741), 1, + STATE(5854), 1, sym_pointer_type_declarator, - STATE(3742), 1, + STATE(5856), 1, sym_template_function, - STATE(3749), 1, + STATE(5858), 1, sym_destructor_name, - STATE(3757), 1, + STATE(5859), 1, sym_dependent_identifier, - STATE(3782), 1, + STATE(5860), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(5863), 1, sym_operator_name, - STATE(7802), 1, + STATE(7919), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10884), 1, + STATE(11304), 1, sym_ms_based_modifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [300696] = 24, + [301368] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(11564), 1, + ACTIONS(11912), 1, anon_sym_STAR, - ACTIONS(13191), 1, + ACTIONS(13571), 1, anon_sym_TILDE, - ACTIONS(13197), 1, + ACTIONS(13577), 1, anon_sym_operator, - ACTIONS(13233), 1, + ACTIONS(13599), 1, sym_identifier, - ACTIONS(13235), 1, + ACTIONS(13601), 1, anon_sym_COLON_COLON, - ACTIONS(13237), 1, + ACTIONS(13603), 1, anon_sym_template, - STATE(3646), 1, + STATE(3491), 1, sym_template_type, - STATE(3649), 1, + STATE(3495), 1, sym_dependent_type_identifier, - STATE(3650), 1, + STATE(3644), 1, sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3741), 1, + STATE(3848), 1, sym_pointer_type_declarator, - STATE(3742), 1, + STATE(3850), 1, sym_template_function, - STATE(3749), 1, + STATE(3851), 1, sym_destructor_name, - STATE(3757), 1, + STATE(3852), 1, sym_dependent_identifier, - STATE(3782), 1, + STATE(3853), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3856), 1, sym_operator_name, - STATE(7803), 1, + STATE(7920), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10884), 1, + STATE(11037), 1, sym_ms_based_modifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [300771] = 24, + [301443] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(11574), 1, + ACTIONS(11933), 1, anon_sym_STAR, - ACTIONS(13239), 1, + ACTIONS(13605), 1, sym_identifier, - ACTIONS(13241), 1, + ACTIONS(13607), 1, anon_sym_TILDE, - ACTIONS(13243), 1, + ACTIONS(13609), 1, anon_sym_COLON_COLON, - ACTIONS(13245), 1, + ACTIONS(13611), 1, anon_sym_template, - ACTIONS(13247), 1, + ACTIONS(13613), 1, anon_sym_operator, - STATE(2390), 1, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4123), 1, sym_template_type, - STATE(2391), 1, + STATE(4127), 1, sym_dependent_type_identifier, - STATE(2449), 1, + STATE(4267), 1, sym_qualified_type_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(5463), 1, + STATE(5836), 1, sym_pointer_type_declarator, - STATE(5474), 1, + STATE(5841), 1, sym_template_function, - STATE(5481), 1, + STATE(5845), 1, sym_destructor_name, - STATE(5486), 1, + STATE(5849), 1, sym_dependent_identifier, - STATE(5489), 1, + STATE(5861), 1, sym_qualified_identifier, - STATE(5498), 1, + STATE(5871), 1, sym_operator_name, - STATE(7804), 1, + STATE(7921), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(11462), 1, + STATE(11053), 1, sym_ms_based_modifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [300846] = 18, + [301518] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7629), 1, + ACTIONS(8424), 1, anon_sym_LBRACK, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10478), 1, - anon_sym_requires, - ACTIONS(11171), 1, + ACTIONS(11518), 1, anon_sym_DASH_GT, - ACTIONS(12778), 1, + ACTIONS(13242), 1, anon_sym___attribute__, - ACTIONS(12781), 1, + ACTIONS(13245), 1, anon_sym___attribute, - STATE(8392), 1, + ACTIONS(13399), 1, + anon_sym_requires, + STATE(8517), 1, sym_trailing_return_type, - STATE(8544), 1, + STATE(8642), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10476), 2, + ACTIONS(13396), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8391), 2, + STATE(8550), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7627), 3, + ACTIONS(8422), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - [300909] = 18, + [301581] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11171), 1, - anon_sym_DASH_GT, - ACTIONS(12144), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(12147), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(12747), 1, - anon_sym_requires, - STATE(8438), 1, - sym_trailing_return_type, - STATE(8502), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12744), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8837), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(6377), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8005), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 3, + ACTIONS(8839), 16, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - [300972] = 18, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [301624] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, - anon_sym_EQ, - ACTIONS(13199), 1, - sym_identifier, - ACTIONS(13201), 1, + ACTIONS(11882), 1, anon_sym_STAR, - ACTIONS(13203), 1, - anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13557), 1, + anon_sym_TILDE, + ACTIONS(13563), 1, + anon_sym_operator, + ACTIONS(13615), 1, + sym_identifier, + ACTIONS(13617), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, - sym_this, - ACTIONS(13249), 1, - anon_sym_RBRACK, - STATE(3682), 1, + ACTIONS(13619), 1, + anon_sym_template, + STATE(3743), 1, + sym_dependent_type_identifier, + STATE(3748), 1, + sym_template_type, + STATE(3752), 1, + sym_qualified_type_identifier, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(5691), 1, + sym_pointer_type_declarator, + STATE(5695), 1, + sym_template_function, + STATE(5701), 1, + sym_destructor_name, + STATE(5702), 1, + sym_dependent_identifier, + STATE(5704), 1, + sym_qualified_identifier, + STATE(5705), 1, + sym_operator_name, + STATE(7924), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, - sym_lambda_default_capture, - STATE(9644), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10976), 5, + STATE(11657), 1, + sym_ms_based_modifier, + STATE(10768), 3, sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [301699] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11906), 1, + anon_sym_STAR, + ACTIONS(13591), 1, + anon_sym_TILDE, + ACTIONS(13597), 1, + anon_sym_operator, + ACTIONS(13621), 1, + sym_identifier, + ACTIONS(13623), 1, + anon_sym_COLON_COLON, + ACTIONS(13625), 1, + anon_sym_template, + STATE(3743), 1, + sym_dependent_type_identifier, + STATE(3748), 1, sym_template_type, + STATE(3752), 1, + sym_qualified_type_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(5854), 1, + sym_pointer_type_declarator, + STATE(5856), 1, + sym_template_function, + STATE(5858), 1, + sym_destructor_name, + STATE(5859), 1, + sym_dependent_identifier, + STATE(5860), 1, + sym_qualified_identifier, + STATE(5863), 1, + sym_operator_name, + STATE(7925), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(11304), 1, + sym_ms_based_modifier, + STATE(10768), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [301774] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11947), 1, + anon_sym_STAR, + ACTIONS(13571), 1, + anon_sym_TILDE, + ACTIONS(13577), 1, + anon_sym_operator, + ACTIONS(13599), 1, + sym_identifier, + ACTIONS(13627), 1, + anon_sym_COLON_COLON, + ACTIONS(13629), 1, + anon_sym_template, + STATE(2755), 1, sym_dependent_type_identifier, + STATE(2812), 1, + sym_template_type, + STATE(2920), 1, + sym_qualified_type_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(3848), 1, + sym_pointer_type_declarator, + STATE(3850), 1, + sym_template_function, + STATE(3851), 1, + sym_destructor_name, + STATE(3852), 1, + sym_dependent_identifier, + STATE(3853), 1, + sym_qualified_identifier, + STATE(3856), 1, + sym_operator_name, + STATE(7926), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(10893), 1, + sym_ms_based_modifier, + STATE(10768), 3, + sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [301035] = 18, + [301849] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, + ACTIONS(5922), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, + ACTIONS(5930), 1, anon_sym_EQ, - ACTIONS(13199), 1, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13201), 1, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13203), 1, + ACTIONS(13547), 1, anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, + ACTIONS(13553), 1, sym_this, - ACTIONS(13251), 1, + ACTIONS(13631), 1, anon_sym_RBRACK, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, + STATE(10396), 1, sym_lambda_default_capture, - STATE(9644), 5, + STATE(9680), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [301098] = 18, + [301912] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11933), 1, + anon_sym_STAR, + ACTIONS(13607), 1, + anon_sym_TILDE, + ACTIONS(13613), 1, + anon_sym_operator, + ACTIONS(13633), 1, + sym_identifier, + ACTIONS(13635), 1, + anon_sym_COLON_COLON, + ACTIONS(13637), 1, + anon_sym_template, + STATE(3743), 1, + sym_dependent_type_identifier, + STATE(3748), 1, + sym_template_type, + STATE(3752), 1, + sym_qualified_type_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(5836), 1, + sym_pointer_type_declarator, + STATE(5841), 1, + sym_template_function, + STATE(5845), 1, + sym_destructor_name, + STATE(5849), 1, + sym_dependent_identifier, + STATE(5861), 1, + sym_qualified_identifier, + STATE(5871), 1, + sym_operator_name, + STATE(7928), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(11053), 1, + sym_ms_based_modifier, + STATE(10768), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [301987] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7629), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11171), 1, + ACTIONS(10861), 1, + anon_sym_requires, + ACTIONS(11518), 1, anon_sym_DASH_GT, - ACTIONS(12778), 1, + ACTIONS(12406), 1, anon_sym___attribute__, - ACTIONS(12781), 1, + ACTIONS(12409), 1, anon_sym___attribute, - ACTIONS(12869), 1, - anon_sym_requires, - STATE(8441), 1, + STATE(8585), 1, sym_trailing_return_type, - STATE(8503), 1, + STATE(8604), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(12866), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8391), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7627), 3, + ACTIONS(7791), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - [301161] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11524), 1, - anon_sym_STAR, - ACTIONS(13253), 1, - sym_identifier, - ACTIONS(13255), 1, - anon_sym_TILDE, - ACTIONS(13257), 1, - anon_sym_COLON_COLON, - ACTIONS(13259), 1, - anon_sym_template, - ACTIONS(13261), 1, - anon_sym_operator, - STATE(3411), 1, - sym_template_type, - STATE(3439), 1, - sym_dependent_type_identifier, - STATE(3539), 1, - sym_qualified_type_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(5667), 1, - sym_pointer_type_declarator, - STATE(5669), 1, - sym_template_function, - STATE(5670), 1, - sym_destructor_name, - STATE(5671), 1, - sym_dependent_identifier, - STATE(5672), 1, - sym_qualified_identifier, - STATE(5675), 1, - sym_operator_name, - STATE(7810), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(11121), 1, - sym_ms_based_modifier, - STATE(10976), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [301236] = 24, + [302050] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(11574), 1, + ACTIONS(11912), 1, anon_sym_STAR, - ACTIONS(13241), 1, + ACTIONS(13571), 1, anon_sym_TILDE, - ACTIONS(13247), 1, + ACTIONS(13577), 1, anon_sym_operator, - ACTIONS(13263), 1, + ACTIONS(13639), 1, sym_identifier, - ACTIONS(13265), 1, + ACTIONS(13641), 1, anon_sym_COLON_COLON, - ACTIONS(13267), 1, + ACTIONS(13643), 1, anon_sym_template, - STATE(3646), 1, - sym_template_type, - STATE(3649), 1, + STATE(3743), 1, sym_dependent_type_identifier, - STATE(3650), 1, + STATE(3748), 1, + sym_template_type, + STATE(3752), 1, sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(5463), 1, + STATE(3848), 1, sym_pointer_type_declarator, - STATE(5474), 1, + STATE(3850), 1, sym_template_function, - STATE(5481), 1, + STATE(3851), 1, sym_destructor_name, - STATE(5486), 1, + STATE(3852), 1, sym_dependent_identifier, - STATE(5489), 1, + STATE(3853), 1, sym_qualified_identifier, - STATE(5498), 1, + STATE(3856), 1, sym_operator_name, - STATE(7811), 1, + STATE(7930), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(11462), 1, + STATE(11037), 1, sym_ms_based_modifier, - STATE(10976), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [301311] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, - anon_sym_EQ, - ACTIONS(13199), 1, - sym_identifier, - ACTIONS(13201), 1, - anon_sym_STAR, - ACTIONS(13203), 1, - anon_sym_AMP, - ACTIONS(13205), 1, - anon_sym_COLON_COLON, - ACTIONS(13209), 1, - sym_this, - ACTIONS(13269), 1, - anon_sym_RBRACK, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7872), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(10128), 1, - sym_lambda_default_capture, - STATE(9644), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [301374] = 18, + [302125] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, - anon_sym_EQ, - ACTIONS(13199), 1, - sym_identifier, - ACTIONS(13201), 1, + ACTIONS(11933), 1, anon_sym_STAR, - ACTIONS(13203), 1, - anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13607), 1, + anon_sym_TILDE, + ACTIONS(13613), 1, + anon_sym_operator, + ACTIONS(13645), 1, + sym_identifier, + ACTIONS(13647), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, - sym_this, - ACTIONS(13271), 1, - anon_sym_RBRACK, - STATE(3682), 1, + ACTIONS(13649), 1, + anon_sym_template, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(4123), 1, + sym_template_type, + STATE(4127), 1, + sym_dependent_type_identifier, + STATE(4267), 1, + sym_qualified_type_identifier, + STATE(5836), 1, + sym_pointer_type_declarator, + STATE(5841), 1, + sym_template_function, + STATE(5845), 1, + sym_destructor_name, + STATE(5849), 1, + sym_dependent_identifier, + STATE(5861), 1, + sym_qualified_identifier, + STATE(5871), 1, + sym_operator_name, + STATE(7931), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, - sym_lambda_default_capture, - STATE(9644), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10976), 5, + STATE(11053), 1, + sym_ms_based_modifier, + STATE(10768), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [301437] = 18, + [302200] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, + ACTIONS(5922), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, + ACTIONS(5930), 1, anon_sym_EQ, - ACTIONS(13199), 1, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13201), 1, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13203), 1, + ACTIONS(13547), 1, anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, + ACTIONS(13553), 1, sym_this, - ACTIONS(13273), 1, + ACTIONS(13651), 1, anon_sym_RBRACK, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, + STATE(10396), 1, sym_lambda_default_capture, - STATE(9644), 5, + STATE(9680), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [301500] = 18, + [302263] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(7968), 1, anon_sym_LBRACK, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10812), 1, + ACTIONS(10861), 1, anon_sym_requires, - ACTIONS(11140), 1, + ACTIONS(11518), 1, anon_sym_DASH_GT, - ACTIONS(12144), 1, + ACTIONS(13108), 1, anon_sym___attribute__, - ACTIONS(12147), 1, + ACTIONS(13111), 1, anon_sym___attribute, - STATE(8484), 1, - sym__function_attributes_end, - STATE(8596), 1, + STATE(8565), 1, sym_trailing_return_type, - STATE(8982), 1, + STATE(8606), 1, + sym__function_attributes_end, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8561), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 3, + ACTIONS(7966), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - [301563] = 24, + [302326] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(11534), 1, + ACTIONS(11882), 1, anon_sym_STAR, - ACTIONS(13275), 1, + ACTIONS(13653), 1, sym_identifier, - ACTIONS(13277), 1, + ACTIONS(13655), 1, anon_sym_TILDE, - ACTIONS(13279), 1, + ACTIONS(13657), 1, anon_sym_COLON_COLON, - ACTIONS(13281), 1, + ACTIONS(13659), 1, anon_sym_template, - ACTIONS(13283), 1, + ACTIONS(13661), 1, anon_sym_operator, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(3981), 1, - sym_template_type, - STATE(3982), 1, + STATE(2755), 1, sym_dependent_type_identifier, - STATE(4151), 1, + STATE(2812), 1, + sym_template_type, + STATE(2920), 1, sym_qualified_type_identifier, - STATE(5769), 1, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(5453), 1, sym_pointer_type_declarator, - STATE(5770), 1, + STATE(5456), 1, sym_template_function, - STATE(5773), 1, + STATE(5457), 1, sym_destructor_name, - STATE(5775), 1, + STATE(5461), 1, sym_dependent_identifier, - STATE(5781), 1, + STATE(5463), 1, sym_qualified_identifier, - STATE(5789), 1, + STATE(5465), 1, sym_operator_name, - STATE(7816), 1, + STATE(7934), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10900), 1, + STATE(11657), 1, sym_ms_based_modifier, - STATE(10976), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [301638] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, - anon_sym_EQ, - ACTIONS(13199), 1, - sym_identifier, - ACTIONS(13201), 1, - anon_sym_STAR, - ACTIONS(13203), 1, - anon_sym_AMP, - ACTIONS(13205), 1, - anon_sym_COLON_COLON, - ACTIONS(13209), 1, - sym_this, - ACTIONS(13285), 1, - anon_sym_RBRACK, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7872), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(10128), 1, - sym_lambda_default_capture, - STATE(9644), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [301701] = 8, + [302401] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(2952), 1, anon_sym_LBRACE, - ACTIONS(6802), 1, + ACTIONS(7227), 1, anon_sym_COLON_COLON, - ACTIONS(8167), 1, + ACTIONS(8569), 1, anon_sym_LPAREN2, - STATE(5546), 1, + STATE(5569), 1, sym_argument_list, - STATE(5578), 1, + STATE(5579), 1, sym_initializer_list, - ACTIONS(6798), 2, + ACTIONS(7223), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6800), 18, + ACTIONS(7225), 18, anon_sym_RPAREN, anon_sym_STAR, anon_sym_AMP_AMP, @@ -681504,2438 +703258,2367 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - [301744] = 24, + [302444] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11554), 1, - anon_sym_STAR, - ACTIONS(13191), 1, - anon_sym_TILDE, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11516), 1, + anon_sym_DASH_GT, + ACTIONS(12406), 1, + anon_sym___attribute__, + ACTIONS(12409), 1, + anon_sym___attribute, ACTIONS(13197), 1, - anon_sym_operator, - ACTIONS(13227), 1, - sym_identifier, - ACTIONS(13231), 1, - anon_sym_template, - ACTIONS(13287), 1, - anon_sym_COLON_COLON, - STATE(1986), 1, - sym_template_type, - STATE(1987), 1, - sym_dependent_type_identifier, - STATE(1998), 1, - sym_qualified_type_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(3741), 1, - sym_pointer_type_declarator, - STATE(3742), 1, - sym_template_function, - STATE(3749), 1, - sym_destructor_name, - STATE(3757), 1, - sym_dependent_identifier, - STATE(3782), 1, - sym_qualified_identifier, - STATE(3789), 1, - sym_operator_name, - STATE(7819), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(10593), 1, - sym_ms_based_modifier, - STATE(10976), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [301819] = 24, + anon_sym_requires, + STATE(8643), 1, + sym__function_attributes_end, + STATE(8715), 1, + sym_trailing_return_type, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13146), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [302507] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(11554), 1, + ACTIONS(11882), 1, anon_sym_STAR, - ACTIONS(13191), 1, + ACTIONS(13557), 1, anon_sym_TILDE, - ACTIONS(13197), 1, + ACTIONS(13563), 1, anon_sym_operator, - ACTIONS(13289), 1, + ACTIONS(13663), 1, sym_identifier, - ACTIONS(13291), 1, + ACTIONS(13665), 1, anon_sym_COLON_COLON, - ACTIONS(13293), 1, + ACTIONS(13667), 1, anon_sym_template, - STATE(2670), 1, - sym_template_type, - STATE(2672), 1, + STATE(2755), 1, sym_dependent_type_identifier, - STATE(2797), 1, + STATE(2812), 1, + sym_template_type, + STATE(2920), 1, sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3741), 1, + STATE(5691), 1, sym_pointer_type_declarator, - STATE(3742), 1, + STATE(5695), 1, sym_template_function, - STATE(3749), 1, + STATE(5701), 1, sym_destructor_name, - STATE(3757), 1, + STATE(5702), 1, sym_dependent_identifier, - STATE(3782), 1, + STATE(5704), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(5705), 1, sym_operator_name, - STATE(7820), 1, + STATE(7937), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10593), 1, + STATE(11657), 1, sym_ms_based_modifier, - STATE(10976), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [301894] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, - anon_sym_EQ, - ACTIONS(13199), 1, - sym_identifier, - ACTIONS(13201), 1, - anon_sym_STAR, - ACTIONS(13203), 1, - anon_sym_AMP, - ACTIONS(13205), 1, - anon_sym_COLON_COLON, - ACTIONS(13209), 1, - sym_this, - ACTIONS(13295), 1, - anon_sym_RBRACK, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7872), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(10128), 1, - sym_lambda_default_capture, - STATE(9644), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [301957] = 18, + [302582] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(8087), 1, + ACTIONS(7968), 1, anon_sym_LBRACK, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10478), 1, - anon_sym_requires, - ACTIONS(11171), 1, + ACTIONS(11516), 1, anon_sym_DASH_GT, - ACTIONS(12875), 1, + ACTIONS(13108), 1, anon_sym___attribute__, - ACTIONS(12878), 1, + ACTIONS(13111), 1, anon_sym___attribute, - STATE(8398), 1, - sym_trailing_return_type, - STATE(8479), 1, + ACTIONS(13239), 1, + anon_sym_requires, + STATE(8662), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(8725), 1, + sym_trailing_return_type, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10476), 2, + ACTIONS(13202), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8397), 2, + STATE(8561), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8089), 3, + ACTIONS(7966), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - [302020] = 5, + anon_sym_GT2, + [302645] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(13297), 1, - anon_sym_LBRACK_LBRACK, - STATE(7823), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8700), 5, - anon_sym_LPAREN2, - anon_sym_COLON_COLON, + ACTIONS(2952), 1, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LBRACK_COLON, - ACTIONS(2101), 17, - anon_sym_virtual, - anon_sym_COLON, - anon_sym_static, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(8569), 1, + anon_sym_LPAREN2, + STATE(5537), 1, + sym_argument_list, + STATE(5538), 1, + sym_initializer_list, + ACTIONS(7223), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(7225), 18, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym_LBRACK, anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, anon_sym_mutable, + anon_sym_constinit, anon_sym_consteval, - sym_identifier, + anon_sym_alignas, + anon_sym__Alignas, + [302688] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_private, + ACTIONS(5160), 1, anon_sym_template, - anon_sym_public, - anon_sym_protected, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [302057] = 18, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5922), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5930), 1, + anon_sym_EQ, + ACTIONS(13543), 1, + sym_identifier, + ACTIONS(13545), 1, + anon_sym_STAR, + ACTIONS(13547), 1, + anon_sym_AMP, + ACTIONS(13549), 1, + anon_sym_COLON_COLON, + ACTIONS(13553), 1, + sym_this, + ACTIONS(13669), 1, + anon_sym_RBRACK, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7998), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(10396), 1, + sym_lambda_default_capture, + STATE(9680), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [302751] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, + ACTIONS(5922), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, + ACTIONS(5930), 1, anon_sym_EQ, - ACTIONS(13199), 1, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13201), 1, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13203), 1, + ACTIONS(13547), 1, anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, + ACTIONS(13553), 1, sym_this, - ACTIONS(13300), 1, + ACTIONS(13671), 1, anon_sym_RBRACK, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, + STATE(10396), 1, sym_lambda_default_capture, - STATE(9644), 5, + STATE(9680), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [302120] = 24, + [302814] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(11534), 1, + ACTIONS(11882), 1, anon_sym_STAR, - ACTIONS(13277), 1, + ACTIONS(13655), 1, anon_sym_TILDE, - ACTIONS(13283), 1, + ACTIONS(13661), 1, anon_sym_operator, - ACTIONS(13302), 1, + ACTIONS(13673), 1, sym_identifier, - ACTIONS(13304), 1, + ACTIONS(13675), 1, anon_sym_COLON_COLON, - ACTIONS(13306), 1, + ACTIONS(13677), 1, anon_sym_template, - STATE(2434), 1, + STATE(3743), 1, + sym_dependent_type_identifier, + STATE(3748), 1, sym_template_type, - STATE(2435), 1, + STATE(3752), 1, + sym_qualified_type_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(5453), 1, + sym_pointer_type_declarator, + STATE(5456), 1, + sym_template_function, + STATE(5457), 1, + sym_destructor_name, + STATE(5461), 1, + sym_dependent_identifier, + STATE(5463), 1, + sym_qualified_identifier, + STATE(5465), 1, + sym_operator_name, + STATE(7942), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(11657), 1, + sym_ms_based_modifier, + STATE(10768), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [302889] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11912), 1, + anon_sym_STAR, + ACTIONS(13571), 1, + anon_sym_TILDE, + ACTIONS(13577), 1, + anon_sym_operator, + ACTIONS(13599), 1, + sym_identifier, + ACTIONS(13629), 1, + anon_sym_template, + ACTIONS(13679), 1, + anon_sym_COLON_COLON, + STATE(2755), 1, sym_dependent_type_identifier, - STATE(2549), 1, + STATE(2812), 1, + sym_template_type, + STATE(2920), 1, sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(5769), 1, + STATE(3848), 1, sym_pointer_type_declarator, - STATE(5770), 1, + STATE(3850), 1, sym_template_function, - STATE(5773), 1, + STATE(3851), 1, sym_destructor_name, - STATE(5775), 1, + STATE(3852), 1, sym_dependent_identifier, - STATE(5781), 1, + STATE(3853), 1, sym_qualified_identifier, - STATE(5789), 1, + STATE(3856), 1, sym_operator_name, - STATE(7825), 1, + STATE(7943), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10900), 1, + STATE(11037), 1, sym_ms_based_modifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [302195] = 18, + [302964] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, + ACTIONS(5922), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, + ACTIONS(5930), 1, anon_sym_EQ, - ACTIONS(13199), 1, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13201), 1, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13203), 1, + ACTIONS(13547), 1, anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, + ACTIONS(13553), 1, sym_this, - ACTIONS(13308), 1, + ACTIONS(13681), 1, anon_sym_RBRACK, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, + STATE(10396), 1, sym_lambda_default_capture, - STATE(9644), 5, + STATE(9680), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [302258] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(8087), 1, - anon_sym_LBRACK, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11171), 1, - anon_sym_DASH_GT, - ACTIONS(12875), 1, - anon_sym___attribute__, - ACTIONS(12878), 1, - anon_sym___attribute, - ACTIONS(13035), 1, - anon_sym_requires, - STATE(8443), 1, - sym_trailing_return_type, - STATE(8505), 1, - sym__function_attributes_end, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13032), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8397), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8089), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - [302321] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7629), 1, - anon_sym_LBRACK, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11140), 1, - anon_sym_DASH_GT, - ACTIONS(12778), 1, - anon_sym___attribute__, - ACTIONS(12781), 1, - anon_sym___attribute, - ACTIONS(12890), 1, - anon_sym_requires, - STATE(8491), 1, - sym__function_attributes_end, - STATE(8570), 1, - sym_trailing_return_type, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12866), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7627), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [302384] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5309), 1, - anon_sym_COLON_COLON, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(13310), 1, - sym_identifier, - ACTIONS(13312), 1, - anon_sym_template, - STATE(3646), 1, - sym_template_type, - STATE(3649), 1, - sym_dependent_type_identifier, - STATE(3650), 1, - sym_qualified_type_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(3871), 1, - sym_pointer_type_declarator, - STATE(3872), 1, - sym_template_function, - STATE(3876), 1, - sym_destructor_name, - STATE(3877), 1, - sym_dependent_identifier, - STATE(3878), 1, - sym_qualified_identifier, - STATE(3879), 1, - sym_operator_name, - STATE(7829), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(10974), 1, - sym_ms_based_modifier, - STATE(10976), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [302459] = 18, + [303027] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, + ACTIONS(5922), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5564), 1, - anon_sym_RBRACK, - ACTIONS(5566), 1, + ACTIONS(5930), 1, anon_sym_EQ, - ACTIONS(13201), 1, + ACTIONS(13543), 1, + sym_identifier, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13203), 1, + ACTIONS(13547), 1, anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, + ACTIONS(13553), 1, sym_this, - ACTIONS(13314), 1, - sym_identifier, - STATE(3682), 1, + ACTIONS(13683), 1, + anon_sym_RBRACK, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, + STATE(10396), 1, sym_lambda_default_capture, - STATE(9644), 5, + STATE(9680), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [302522] = 24, + [303090] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(4804), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(6222), 1, - anon_sym_COLON_COLON, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(13316), 1, + ACTIONS(5922), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5930), 1, + anon_sym_EQ, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13318), 1, - anon_sym_template, - STATE(3646), 1, - sym_template_type, - STATE(3649), 1, - sym_dependent_type_identifier, - STATE(3650), 1, - sym_qualified_type_identifier, - STATE(3682), 1, + ACTIONS(13545), 1, + anon_sym_STAR, + ACTIONS(13547), 1, + anon_sym_AMP, + ACTIONS(13549), 1, + anon_sym_COLON_COLON, + ACTIONS(13553), 1, + sym_this, + ACTIONS(13685), 1, + anon_sym_RBRACK, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3871), 1, - sym_pointer_type_declarator, - STATE(3872), 1, - sym_template_function, - STATE(3876), 1, - sym_destructor_name, - STATE(3877), 1, - sym_dependent_identifier, - STATE(3878), 1, - sym_qualified_identifier, - STATE(3879), 1, - sym_operator_name, - STATE(7831), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10974), 1, - sym_ms_based_modifier, - STATE(10976), 3, + STATE(10396), 1, + sym_lambda_default_capture, + STATE(9680), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10768), 5, sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [302597] = 24, + [303153] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(11524), 1, + ACTIONS(11912), 1, anon_sym_STAR, - ACTIONS(13255), 1, + ACTIONS(13496), 1, anon_sym_TILDE, - ACTIONS(13261), 1, - anon_sym_operator, - ACTIONS(13320), 1, + ACTIONS(13687), 1, sym_identifier, - ACTIONS(13322), 1, + ACTIONS(13689), 1, anon_sym_COLON_COLON, - ACTIONS(13324), 1, + ACTIONS(13691), 1, anon_sym_template, - STATE(2425), 1, - sym_template_type, - STATE(2426), 1, + ACTIONS(13693), 1, + anon_sym_operator, + STATE(3743), 1, sym_dependent_type_identifier, - STATE(2548), 1, + STATE(3748), 1, + sym_template_type, + STATE(3752), 1, sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(5667), 1, + STATE(3957), 1, sym_pointer_type_declarator, - STATE(5669), 1, - sym_template_function, - STATE(5670), 1, + STATE(3972), 1, sym_destructor_name, - STATE(5671), 1, - sym_dependent_identifier, - STATE(5672), 1, + STATE(3975), 1, sym_qualified_identifier, - STATE(5675), 1, + STATE(3996), 1, + sym_template_function, + STATE(4016), 1, sym_operator_name, - STATE(7832), 1, + STATE(4018), 1, + sym_dependent_identifier, + STATE(7947), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(11121), 1, + STATE(11037), 1, sym_ms_based_modifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [302672] = 18, + [303228] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, + ACTIONS(5922), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, + ACTIONS(5930), 1, anon_sym_EQ, - ACTIONS(13199), 1, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13201), 1, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13203), 1, + ACTIONS(13547), 1, anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, + ACTIONS(13553), 1, sym_this, - ACTIONS(13326), 1, + ACTIONS(13695), 1, anon_sym_RBRACK, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, + STATE(10396), 1, sym_lambda_default_capture, - STATE(9644), 5, + STATE(9680), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [302735] = 24, + [303291] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(11564), 1, + ACTIONS(11882), 1, anon_sym_STAR, - ACTIONS(13191), 1, + ACTIONS(13557), 1, anon_sym_TILDE, - ACTIONS(13197), 1, + ACTIONS(13563), 1, anon_sym_operator, - ACTIONS(13289), 1, + ACTIONS(13697), 1, sym_identifier, - ACTIONS(13328), 1, + ACTIONS(13699), 1, anon_sym_COLON_COLON, - ACTIONS(13330), 1, + ACTIONS(13701), 1, anon_sym_template, - STATE(3411), 1, + STATE(2675), 1, sym_template_type, - STATE(3439), 1, + STATE(2676), 1, sym_dependent_type_identifier, - STATE(3539), 1, + STATE(2811), 1, sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3741), 1, + STATE(5691), 1, sym_pointer_type_declarator, - STATE(3742), 1, + STATE(5695), 1, sym_template_function, - STATE(3749), 1, + STATE(5701), 1, sym_destructor_name, - STATE(3757), 1, + STATE(5702), 1, sym_dependent_identifier, - STATE(3782), 1, + STATE(5704), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(5705), 1, sym_operator_name, - STATE(7834), 1, + STATE(7949), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10884), 1, + STATE(11657), 1, sym_ms_based_modifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [302810] = 18, + [303366] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8833), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(6377), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8056), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8835), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [303409] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, + ACTIONS(5922), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, + ACTIONS(5930), 1, anon_sym_EQ, - ACTIONS(13199), 1, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13201), 1, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13203), 1, + ACTIONS(13547), 1, anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, + ACTIONS(13553), 1, sym_this, - ACTIONS(13332), 1, + ACTIONS(13703), 1, anon_sym_RBRACK, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, + STATE(10396), 1, sym_lambda_default_capture, - STATE(9644), 5, + STATE(9680), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [302873] = 18, + [303472] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, + ACTIONS(5922), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, + ACTIONS(5930), 1, anon_sym_EQ, - ACTIONS(13199), 1, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13201), 1, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13203), 1, + ACTIONS(13547), 1, anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, + ACTIONS(13553), 1, sym_this, - ACTIONS(13334), 1, + ACTIONS(13705), 1, anon_sym_RBRACK, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, + STATE(10396), 1, sym_lambda_default_capture, - STATE(9644), 5, + STATE(9680), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [302936] = 18, + [303535] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, + ACTIONS(5922), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, + ACTIONS(5930), 1, anon_sym_EQ, - ACTIONS(13199), 1, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13201), 1, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13203), 1, + ACTIONS(13547), 1, anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, + ACTIONS(13553), 1, sym_this, - ACTIONS(13336), 1, + ACTIONS(13707), 1, anon_sym_RBRACK, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, + STATE(10396), 1, sym_lambda_default_capture, - STATE(9644), 5, + STATE(9680), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [302999] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8479), 2, - anon_sym_LBRACK, - anon_sym___asm, - STATE(6299), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7916), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8481), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [303042] = 24, + [303598] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(11534), 1, + ACTIONS(11912), 1, anon_sym_STAR, - ACTIONS(13277), 1, + ACTIONS(13571), 1, anon_sym_TILDE, - ACTIONS(13283), 1, + ACTIONS(13577), 1, anon_sym_operator, - ACTIONS(13338), 1, + ACTIONS(13709), 1, sym_identifier, - ACTIONS(13340), 1, + ACTIONS(13711), 1, anon_sym_COLON_COLON, - ACTIONS(13342), 1, + ACTIONS(13713), 1, anon_sym_template, - STATE(3646), 1, - sym_template_type, - STATE(3649), 1, + STATE(2083), 1, sym_dependent_type_identifier, - STATE(3650), 1, + STATE(2094), 1, + sym_template_type, + STATE(2114), 1, sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(5769), 1, + STATE(3848), 1, sym_pointer_type_declarator, - STATE(5770), 1, + STATE(3850), 1, sym_template_function, - STATE(5773), 1, + STATE(3851), 1, sym_destructor_name, - STATE(5775), 1, + STATE(3852), 1, sym_dependent_identifier, - STATE(5781), 1, + STATE(3853), 1, sym_qualified_identifier, - STATE(5789), 1, + STATE(3856), 1, sym_operator_name, - STATE(7839), 1, + STATE(7954), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10900), 1, + STATE(11037), 1, sym_ms_based_modifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [303117] = 24, + [303673] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13715), 1, + anon_sym_LBRACK_LBRACK, + STATE(7955), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9075), 5, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(2461), 17, + anon_sym_virtual, + anon_sym_COLON, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_private, + anon_sym_template, + anon_sym_public, + anon_sym_protected, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [303710] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(11574), 1, + ACTIONS(11912), 1, anon_sym_STAR, - ACTIONS(13181), 1, + ACTIONS(13571), 1, anon_sym_TILDE, - ACTIONS(13187), 1, + ACTIONS(13577), 1, anon_sym_operator, - ACTIONS(13344), 1, + ACTIONS(13718), 1, sym_identifier, - ACTIONS(13346), 1, + ACTIONS(13720), 1, anon_sym_COLON_COLON, - ACTIONS(13348), 1, + ACTIONS(13722), 1, anon_sym_template, - STATE(3646), 1, - sym_template_type, - STATE(3649), 1, + STATE(3743), 1, sym_dependent_type_identifier, - STATE(3650), 1, + STATE(3748), 1, + sym_template_type, + STATE(3752), 1, sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(5276), 1, + STATE(3848), 1, sym_pointer_type_declarator, - STATE(5278), 1, + STATE(3850), 1, sym_template_function, - STATE(5280), 1, + STATE(3851), 1, sym_destructor_name, - STATE(5281), 1, + STATE(3852), 1, sym_dependent_identifier, - STATE(5282), 1, + STATE(3853), 1, sym_qualified_identifier, - STATE(5284), 1, + STATE(3856), 1, sym_operator_name, - STATE(7840), 1, + STATE(7956), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(11462), 1, + STATE(11037), 1, sym_ms_based_modifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [303192] = 18, + [303785] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, + ACTIONS(5922), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, + ACTIONS(5930), 1, anon_sym_EQ, - ACTIONS(13199), 1, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13201), 1, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13203), 1, + ACTIONS(13547), 1, anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, + ACTIONS(13553), 1, sym_this, - ACTIONS(13350), 1, + ACTIONS(13724), 1, anon_sym_RBRACK, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, + STATE(10396), 1, sym_lambda_default_capture, - STATE(9644), 5, + STATE(9680), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303255] = 18, + [303848] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, + ACTIONS(5922), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, + ACTIONS(5930), 1, anon_sym_EQ, - ACTIONS(13199), 1, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13201), 1, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13203), 1, + ACTIONS(13547), 1, anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, + ACTIONS(13553), 1, sym_this, - ACTIONS(13352), 1, + ACTIONS(13726), 1, anon_sym_RBRACK, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, + STATE(10396), 1, sym_lambda_default_capture, - STATE(9644), 5, + STATE(9680), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303318] = 18, + [303911] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, + ACTIONS(5922), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, + ACTIONS(5930), 1, anon_sym_EQ, - ACTIONS(13199), 1, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13201), 1, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13203), 1, + ACTIONS(13547), 1, anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, + ACTIONS(13553), 1, sym_this, - ACTIONS(13354), 1, + ACTIONS(13728), 1, anon_sym_RBRACK, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, + STATE(10396), 1, sym_lambda_default_capture, - STATE(9644), 5, + STATE(9680), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303381] = 18, + [303974] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, + ACTIONS(5922), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, + ACTIONS(5930), 1, anon_sym_EQ, - ACTIONS(13199), 1, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13201), 1, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13203), 1, + ACTIONS(13547), 1, anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, + ACTIONS(13553), 1, sym_this, - ACTIONS(13356), 1, + ACTIONS(13730), 1, anon_sym_RBRACK, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, + STATE(10396), 1, sym_lambda_default_capture, - STATE(9644), 5, + STATE(9680), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303444] = 18, + [304037] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, + ACTIONS(5922), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, + ACTIONS(5930), 1, anon_sym_EQ, - ACTIONS(13199), 1, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13201), 1, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13203), 1, + ACTIONS(13547), 1, anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, + ACTIONS(13553), 1, sym_this, - ACTIONS(13358), 1, + ACTIONS(13732), 1, anon_sym_RBRACK, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, + STATE(10396), 1, sym_lambda_default_capture, - STATE(9644), 5, + STATE(9680), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303507] = 18, + [304100] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(8424), 1, anon_sym_LBRACK, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10478), 1, + ACTIONS(10861), 1, anon_sym_requires, - ACTIONS(11171), 1, + ACTIONS(11518), 1, anon_sym_DASH_GT, - ACTIONS(12144), 1, + ACTIONS(13242), 1, anon_sym___attribute__, - ACTIONS(12147), 1, + ACTIONS(13245), 1, anon_sym___attribute, - STATE(8456), 1, + STATE(8551), 1, sym_trailing_return_type, - STATE(8543), 1, + STATE(8607), 1, sym__function_attributes_end, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8550), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 3, + ACTIONS(8422), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - [303570] = 18, + [304163] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, - anon_sym_EQ, - ACTIONS(13199), 1, - sym_identifier, - ACTIONS(13201), 1, + ACTIONS(11912), 1, anon_sym_STAR, - ACTIONS(13203), 1, - anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13571), 1, + anon_sym_TILDE, + ACTIONS(13577), 1, + anon_sym_operator, + ACTIONS(13734), 1, + sym_identifier, + ACTIONS(13736), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, - sym_this, - ACTIONS(13360), 1, - anon_sym_RBRACK, - STATE(3682), 1, + ACTIONS(13738), 1, + anon_sym_template, + STATE(3743), 1, + sym_dependent_type_identifier, + STATE(3748), 1, + sym_template_type, + STATE(3752), 1, + sym_qualified_type_identifier, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(3848), 1, + sym_pointer_type_declarator, + STATE(3850), 1, + sym_template_function, + STATE(3851), 1, + sym_destructor_name, + STATE(3852), 1, + sym_dependent_identifier, + STATE(3853), 1, + sym_qualified_identifier, + STATE(3856), 1, + sym_operator_name, + STATE(7963), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, - sym_lambda_default_capture, - STATE(9644), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10976), 5, + STATE(11037), 1, + sym_ms_based_modifier, + STATE(10768), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303633] = 18, + [304238] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, - anon_sym_EQ, - ACTIONS(13199), 1, - sym_identifier, - ACTIONS(13201), 1, - anon_sym_STAR, - ACTIONS(13203), 1, - anon_sym_AMP, - ACTIONS(13205), 1, - anon_sym_COLON_COLON, - ACTIONS(13209), 1, - sym_this, - ACTIONS(13362), 1, - anon_sym_RBRACK, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7872), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(10128), 1, - sym_lambda_default_capture, - STATE(9644), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [303696] = 18, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11518), 1, + anon_sym_DASH_GT, + ACTIONS(12406), 1, + anon_sym___attribute__, + ACTIONS(12409), 1, + anon_sym___attribute, + ACTIONS(13149), 1, + anon_sym_requires, + STATE(8511), 1, + sym_trailing_return_type, + STATE(8640), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13146), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + [304301] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5564), 1, - anon_sym_RBRACK, - ACTIONS(5566), 1, - anon_sym_EQ, - ACTIONS(13199), 1, - sym_identifier, - ACTIONS(13201), 1, + ACTIONS(11882), 1, anon_sym_STAR, - ACTIONS(13203), 1, - anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13557), 1, + anon_sym_TILDE, + ACTIONS(13563), 1, + anon_sym_operator, + ACTIONS(13740), 1, + sym_identifier, + ACTIONS(13742), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, - sym_this, - STATE(3682), 1, + ACTIONS(13744), 1, + anon_sym_template, + STATE(3743), 1, + sym_dependent_type_identifier, + STATE(3748), 1, + sym_template_type, + STATE(3752), 1, + sym_qualified_type_identifier, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(5691), 1, + sym_pointer_type_declarator, + STATE(5695), 1, + sym_template_function, + STATE(5701), 1, + sym_destructor_name, + STATE(5702), 1, + sym_dependent_identifier, + STATE(5704), 1, + sym_qualified_identifier, + STATE(5705), 1, + sym_operator_name, + STATE(7965), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, - sym_lambda_default_capture, - STATE(9644), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10976), 5, + STATE(11657), 1, + sym_ms_based_modifier, + STATE(10768), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303759] = 24, + [304376] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2062), 1, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(11534), 1, + ACTIONS(6586), 1, + anon_sym_COLON_COLON, + ACTIONS(11896), 1, anon_sym_STAR, - ACTIONS(13277), 1, - anon_sym_TILDE, - ACTIONS(13283), 1, - anon_sym_operator, - ACTIONS(13364), 1, + ACTIONS(13746), 1, sym_identifier, - ACTIONS(13366), 1, - anon_sym_COLON_COLON, - ACTIONS(13368), 1, + ACTIONS(13748), 1, anon_sym_template, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(3981), 1, - sym_template_type, - STATE(3982), 1, + STATE(3743), 1, sym_dependent_type_identifier, - STATE(4151), 1, + STATE(3748), 1, + sym_template_type, + STATE(3752), 1, sym_qualified_type_identifier, - STATE(5769), 1, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(3957), 1, sym_pointer_type_declarator, - STATE(5770), 1, - sym_template_function, - STATE(5773), 1, + STATE(3972), 1, sym_destructor_name, - STATE(5775), 1, - sym_dependent_identifier, - STATE(5781), 1, + STATE(3975), 1, sym_qualified_identifier, - STATE(5789), 1, + STATE(3996), 1, + sym_template_function, + STATE(4016), 1, sym_operator_name, - STATE(7850), 1, + STATE(4018), 1, + sym_dependent_identifier, + STATE(7966), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10900), 1, + STATE(11156), 1, sym_ms_based_modifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [303834] = 18, + [304451] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, + ACTIONS(5922), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, + ACTIONS(5930), 1, anon_sym_EQ, - ACTIONS(13199), 1, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13201), 1, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13203), 1, + ACTIONS(13547), 1, anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, + ACTIONS(13553), 1, sym_this, - ACTIONS(13370), 1, + ACTIONS(13750), 1, anon_sym_RBRACK, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, + STATE(10396), 1, sym_lambda_default_capture, - STATE(9644), 5, + STATE(9680), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303897] = 18, + [304514] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7968), 1, + anon_sym_LBRACK, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11298), 1, + anon_sym_requires, + ACTIONS(11516), 1, + anon_sym_DASH_GT, + ACTIONS(13108), 1, + anon_sym___attribute__, + ACTIONS(13111), 1, + anon_sym___attribute, + STATE(8668), 1, + sym__function_attributes_end, + STATE(8730), 1, + sym_trailing_return_type, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8561), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7966), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [304577] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7968), 1, + anon_sym_LBRACK, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11518), 1, + anon_sym_DASH_GT, + ACTIONS(13108), 1, + anon_sym___attribute__, + ACTIONS(13111), 1, + anon_sym___attribute, + ACTIONS(13205), 1, + anon_sym_requires, + STATE(8513), 1, + sym_trailing_return_type, + STATE(8641), 1, + sym__function_attributes_end, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13202), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8561), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7966), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + [304640] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, + ACTIONS(5922), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, + ACTIONS(5928), 1, + anon_sym_RBRACK, + ACTIONS(5930), 1, anon_sym_EQ, - ACTIONS(13199), 1, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13201), 1, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13203), 1, + ACTIONS(13547), 1, anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, + ACTIONS(13553), 1, sym_this, - ACTIONS(13372), 1, - anon_sym_RBRACK, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, + STATE(10396), 1, sym_lambda_default_capture, - STATE(9644), 5, + STATE(9680), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303960] = 24, + [304703] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(11574), 1, + ACTIONS(11906), 1, anon_sym_STAR, - ACTIONS(13241), 1, + ACTIONS(13591), 1, anon_sym_TILDE, - ACTIONS(13247), 1, + ACTIONS(13597), 1, anon_sym_operator, - ACTIONS(13374), 1, + ACTIONS(13752), 1, sym_identifier, - ACTIONS(13376), 1, + ACTIONS(13754), 1, anon_sym_COLON_COLON, - ACTIONS(13378), 1, + ACTIONS(13756), 1, anon_sym_template, - STATE(2670), 1, + STATE(3491), 1, sym_template_type, - STATE(2672), 1, + STATE(3495), 1, sym_dependent_type_identifier, - STATE(2797), 1, + STATE(3644), 1, sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(5463), 1, + STATE(5854), 1, sym_pointer_type_declarator, - STATE(5474), 1, + STATE(5856), 1, sym_template_function, - STATE(5481), 1, + STATE(5858), 1, sym_destructor_name, - STATE(5486), 1, + STATE(5859), 1, sym_dependent_identifier, - STATE(5489), 1, + STATE(5860), 1, sym_qualified_identifier, - STATE(5498), 1, + STATE(5863), 1, sym_operator_name, - STATE(7853), 1, + STATE(7971), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(11462), 1, + STATE(11304), 1, sym_ms_based_modifier, - STATE(10976), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [304035] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, - anon_sym_EQ, - ACTIONS(13199), 1, - sym_identifier, - ACTIONS(13201), 1, - anon_sym_STAR, - ACTIONS(13203), 1, - anon_sym_AMP, - ACTIONS(13205), 1, - anon_sym_COLON_COLON, - ACTIONS(13209), 1, - sym_this, - ACTIONS(13380), 1, - anon_sym_RBRACK, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7872), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(10128), 1, - sym_lambda_default_capture, - STATE(9644), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [304098] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7629), 1, - anon_sym_LBRACK, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10812), 1, - anon_sym_requires, - ACTIONS(11140), 1, - anon_sym_DASH_GT, - ACTIONS(12778), 1, - anon_sym___attribute__, - ACTIONS(12781), 1, - anon_sym___attribute, - STATE(8485), 1, - sym__function_attributes_end, - STATE(8553), 1, - sym_trailing_return_type, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7627), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [304161] = 24, + [304778] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(11554), 1, + ACTIONS(11947), 1, anon_sym_STAR, - ACTIONS(13191), 1, + ACTIONS(13571), 1, anon_sym_TILDE, - ACTIONS(13197), 1, + ACTIONS(13577), 1, anon_sym_operator, - ACTIONS(13215), 1, + ACTIONS(13718), 1, sym_identifier, - ACTIONS(13219), 1, + ACTIONS(13722), 1, anon_sym_template, - ACTIONS(13382), 1, + ACTIONS(13758), 1, anon_sym_COLON_COLON, - STATE(3646), 1, - sym_template_type, - STATE(3649), 1, + STATE(3743), 1, sym_dependent_type_identifier, - STATE(3650), 1, + STATE(3748), 1, + sym_template_type, + STATE(3752), 1, sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3741), 1, + STATE(3848), 1, sym_pointer_type_declarator, - STATE(3742), 1, + STATE(3850), 1, sym_template_function, - STATE(3749), 1, + STATE(3851), 1, sym_destructor_name, - STATE(3757), 1, + STATE(3852), 1, sym_dependent_identifier, - STATE(3782), 1, + STATE(3853), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3856), 1, sym_operator_name, - STATE(7856), 1, + STATE(7972), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10593), 1, + STATE(10893), 1, sym_ms_based_modifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [304236] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(8087), 1, - anon_sym_LBRACK, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10812), 1, - anon_sym_requires, - ACTIONS(11140), 1, - anon_sym_DASH_GT, - ACTIONS(12875), 1, - anon_sym___attribute__, - ACTIONS(12878), 1, - anon_sym___attribute, - STATE(8486), 1, - sym__function_attributes_end, - STATE(8635), 1, - sym_trailing_return_type, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8397), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8089), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [304299] = 18, + [304853] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, + ACTIONS(5922), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, + ACTIONS(5930), 1, anon_sym_EQ, - ACTIONS(13199), 1, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13201), 1, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13203), 1, + ACTIONS(13547), 1, anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, + ACTIONS(13553), 1, sym_this, - ACTIONS(13384), 1, + ACTIONS(13760), 1, anon_sym_RBRACK, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, + STATE(10396), 1, sym_lambda_default_capture, - STATE(9644), 5, + STATE(9680), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [304362] = 18, + [304916] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, + ACTIONS(5922), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, + ACTIONS(5930), 1, anon_sym_EQ, - ACTIONS(13199), 1, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13201), 1, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13203), 1, + ACTIONS(13547), 1, anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, + ACTIONS(13553), 1, sym_this, - ACTIONS(13386), 1, + ACTIONS(13762), 1, anon_sym_RBRACK, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, + STATE(10396), 1, sym_lambda_default_capture, - STATE(9644), 5, + STATE(9680), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [304425] = 24, + [304979] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(11564), 1, + ACTIONS(11947), 1, anon_sym_STAR, - ACTIONS(13191), 1, + ACTIONS(13571), 1, anon_sym_TILDE, - ACTIONS(13197), 1, + ACTIONS(13577), 1, anon_sym_operator, - ACTIONS(13289), 1, + ACTIONS(13709), 1, sym_identifier, - ACTIONS(13293), 1, + ACTIONS(13713), 1, anon_sym_template, - ACTIONS(13388), 1, + ACTIONS(13764), 1, anon_sym_COLON_COLON, - STATE(2670), 1, - sym_template_type, - STATE(2672), 1, + STATE(2083), 1, sym_dependent_type_identifier, - STATE(2797), 1, + STATE(2094), 1, + sym_template_type, + STATE(2114), 1, sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3741), 1, + STATE(3848), 1, sym_pointer_type_declarator, - STATE(3742), 1, + STATE(3850), 1, sym_template_function, - STATE(3749), 1, + STATE(3851), 1, sym_destructor_name, - STATE(3757), 1, + STATE(3852), 1, sym_dependent_identifier, - STATE(3782), 1, + STATE(3853), 1, sym_qualified_identifier, - STATE(3789), 1, + STATE(3856), 1, sym_operator_name, - STATE(7860), 1, + STATE(7975), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10884), 1, + STATE(10893), 1, sym_ms_based_modifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [304500] = 18, + [305054] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(8087), 1, - anon_sym_LBRACK, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11140), 1, - anon_sym_DASH_GT, - ACTIONS(12875), 1, - anon_sym___attribute__, - ACTIONS(12878), 1, - anon_sym___attribute, - ACTIONS(13172), 1, - anon_sym_requires, - STATE(8492), 1, - sym__function_attributes_end, - STATE(8573), 1, - sym_trailing_return_type, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13032), 2, - anon_sym_final, - anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8397), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8089), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [304563] = 18, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11933), 1, + anon_sym_STAR, + ACTIONS(13607), 1, + anon_sym_TILDE, + ACTIONS(13613), 1, + anon_sym_operator, + ACTIONS(13766), 1, + sym_identifier, + ACTIONS(13768), 1, + anon_sym_COLON_COLON, + ACTIONS(13770), 1, + anon_sym_template, + STATE(2550), 1, + sym_template_type, + STATE(2551), 1, + sym_dependent_type_identifier, + STATE(2625), 1, + sym_qualified_type_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(5836), 1, + sym_pointer_type_declarator, + STATE(5841), 1, + sym_template_function, + STATE(5845), 1, + sym_destructor_name, + STATE(5849), 1, + sym_dependent_identifier, + STATE(5861), 1, + sym_qualified_identifier, + STATE(5871), 1, + sym_operator_name, + STATE(7976), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(11053), 1, + sym_ms_based_modifier, + STATE(10768), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [305129] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, + ACTIONS(5922), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5566), 1, + ACTIONS(5930), 1, anon_sym_EQ, - ACTIONS(13199), 1, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13201), 1, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13203), 1, + ACTIONS(13547), 1, anon_sym_AMP, - ACTIONS(13205), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13209), 1, + ACTIONS(13553), 1, sym_this, - ACTIONS(13390), 1, + ACTIONS(13772), 1, anon_sym_RBRACK, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10128), 1, + STATE(10396), 1, sym_lambda_default_capture, - STATE(9644), 5, + STATE(9680), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [304626] = 24, + [305192] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(11564), 1, - anon_sym_STAR, - ACTIONS(13156), 1, - anon_sym_TILDE, - ACTIONS(13392), 1, + ACTIONS(5922), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5930), 1, + anon_sym_EQ, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13394), 1, + ACTIONS(13545), 1, + anon_sym_STAR, + ACTIONS(13547), 1, + anon_sym_AMP, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13396), 1, - anon_sym_template, - ACTIONS(13398), 1, - anon_sym_operator, - STATE(3646), 1, - sym_template_type, - STATE(3649), 1, - sym_dependent_type_identifier, - STATE(3650), 1, - sym_qualified_type_identifier, - STATE(3682), 1, + ACTIONS(13553), 1, + sym_this, + ACTIONS(13774), 1, + anon_sym_RBRACK, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3871), 1, - sym_pointer_type_declarator, - STATE(3872), 1, - sym_template_function, - STATE(3876), 1, - sym_destructor_name, - STATE(3877), 1, - sym_dependent_identifier, - STATE(3878), 1, - sym_qualified_identifier, - STATE(3879), 1, - sym_operator_name, - STATE(7863), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10884), 1, - sym_ms_based_modifier, - STATE(10976), 3, + STATE(10396), 1, + sym_lambda_default_capture, + STATE(9680), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10768), 5, sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [304701] = 24, + [305255] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(11524), 1, - anon_sym_STAR, - ACTIONS(13255), 1, - anon_sym_TILDE, - ACTIONS(13261), 1, - anon_sym_operator, - ACTIONS(13400), 1, + ACTIONS(5922), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5930), 1, + anon_sym_EQ, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13402), 1, + ACTIONS(13545), 1, + anon_sym_STAR, + ACTIONS(13547), 1, + anon_sym_AMP, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13404), 1, - anon_sym_template, - STATE(3646), 1, - sym_template_type, - STATE(3649), 1, - sym_dependent_type_identifier, - STATE(3650), 1, - sym_qualified_type_identifier, - STATE(3682), 1, + ACTIONS(13553), 1, + sym_this, + ACTIONS(13776), 1, + anon_sym_RBRACK, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(5667), 1, - sym_pointer_type_declarator, - STATE(5669), 1, - sym_template_function, - STATE(5670), 1, - sym_destructor_name, - STATE(5671), 1, - sym_dependent_identifier, - STATE(5672), 1, - sym_qualified_identifier, - STATE(5675), 1, - sym_operator_name, - STATE(7864), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(11121), 1, - sym_ms_based_modifier, - STATE(10976), 3, + STATE(10396), 1, + sym_lambda_default_capture, + STATE(9680), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10768), 5, sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [304776] = 24, + [305318] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(11574), 1, - anon_sym_STAR, - ACTIONS(13241), 1, - anon_sym_TILDE, - ACTIONS(13247), 1, - anon_sym_operator, - ACTIONS(13406), 1, + ACTIONS(5922), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5930), 1, + anon_sym_EQ, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13408), 1, + ACTIONS(13545), 1, + anon_sym_STAR, + ACTIONS(13547), 1, + anon_sym_AMP, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13410), 1, - anon_sym_template, - STATE(2588), 1, - sym_template_type, - STATE(2593), 1, - sym_dependent_type_identifier, - STATE(2703), 1, - sym_qualified_type_identifier, - STATE(3682), 1, + ACTIONS(13553), 1, + sym_this, + ACTIONS(13778), 1, + anon_sym_RBRACK, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(5463), 1, - sym_pointer_type_declarator, - STATE(5474), 1, - sym_template_function, - STATE(5481), 1, - sym_destructor_name, - STATE(5486), 1, - sym_dependent_identifier, - STATE(5489), 1, - sym_qualified_identifier, - STATE(5498), 1, - sym_operator_name, - STATE(7865), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(11462), 1, - sym_ms_based_modifier, - STATE(10976), 3, + STATE(10396), 1, + sym_lambda_default_capture, + STATE(9680), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10768), 5, sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [304851] = 24, + [305381] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(11564), 1, + ACTIONS(5922), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5928), 1, + anon_sym_RBRACK, + ACTIONS(5930), 1, + anon_sym_EQ, + ACTIONS(13545), 1, anon_sym_STAR, - ACTIONS(13191), 1, - anon_sym_TILDE, - ACTIONS(13197), 1, - anon_sym_operator, - ACTIONS(13412), 1, - sym_identifier, - ACTIONS(13414), 1, + ACTIONS(13547), 1, + anon_sym_AMP, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13416), 1, - anon_sym_template, - STATE(3646), 1, - sym_template_type, - STATE(3649), 1, - sym_dependent_type_identifier, - STATE(3650), 1, - sym_qualified_type_identifier, - STATE(3682), 1, + ACTIONS(13553), 1, + sym_this, + ACTIONS(13780), 1, + sym_identifier, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3741), 1, - sym_pointer_type_declarator, - STATE(3742), 1, - sym_template_function, - STATE(3749), 1, - sym_destructor_name, - STATE(3757), 1, - sym_dependent_identifier, - STATE(3782), 1, - sym_qualified_identifier, - STATE(3789), 1, - sym_operator_name, - STATE(7866), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10884), 1, - sym_ms_based_modifier, - STATE(10976), 3, + STATE(10396), 1, + sym_lambda_default_capture, + STATE(9680), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10768), 5, sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [304926] = 24, + [305444] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(11574), 1, - anon_sym_STAR, - ACTIONS(13241), 1, - anon_sym_TILDE, - ACTIONS(13247), 1, - anon_sym_operator, - ACTIONS(13418), 1, + ACTIONS(5922), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5930), 1, + anon_sym_EQ, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13420), 1, + ACTIONS(13545), 1, + anon_sym_STAR, + ACTIONS(13547), 1, + anon_sym_AMP, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13422), 1, - anon_sym_template, - STATE(3646), 1, - sym_template_type, - STATE(3649), 1, - sym_dependent_type_identifier, - STATE(3650), 1, - sym_qualified_type_identifier, - STATE(3682), 1, + ACTIONS(13553), 1, + sym_this, + ACTIONS(13782), 1, + anon_sym_RBRACK, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(5463), 1, - sym_pointer_type_declarator, - STATE(5474), 1, - sym_template_function, - STATE(5481), 1, - sym_destructor_name, - STATE(5486), 1, - sym_dependent_identifier, - STATE(5489), 1, - sym_qualified_identifier, - STATE(5498), 1, - sym_operator_name, - STATE(7867), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(11462), 1, - sym_ms_based_modifier, - STATE(10976), 3, + STATE(10396), 1, + sym_lambda_default_capture, + STATE(9680), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10768), 5, sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [305001] = 8, + [305507] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, - anon_sym_LBRACE, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(8167), 1, - anon_sym_LPAREN2, - STATE(5523), 1, - sym_argument_list, - STATE(5524), 1, - sym_initializer_list, - ACTIONS(6798), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6800), 18, - anon_sym_RPAREN, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5922), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5930), 1, + anon_sym_EQ, + ACTIONS(13543), 1, + sym_identifier, + ACTIONS(13545), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - [305044] = 21, + ACTIONS(13547), 1, + anon_sym_AMP, + ACTIONS(13549), 1, + anon_sym_COLON_COLON, + ACTIONS(13553), 1, + sym_this, + ACTIONS(13784), 1, + anon_sym_RBRACK, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7998), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(10396), 1, + sym_lambda_default_capture, + STATE(9680), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [305570] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(4804), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8360), 1, - anon_sym_COLON_COLON, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(13175), 1, + ACTIONS(5922), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5930), 1, + anon_sym_EQ, + ACTIONS(13543), 1, sym_identifier, - ACTIONS(13177), 1, - anon_sym_template, - STATE(3682), 1, + ACTIONS(13545), 1, + anon_sym_STAR, + ACTIONS(13547), 1, + anon_sym_AMP, + ACTIONS(13549), 1, + anon_sym_COLON_COLON, + ACTIONS(13553), 1, + sym_this, + ACTIONS(13786), 1, + anon_sym_RBRACK, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3871), 1, - sym_pointer_type_declarator, - STATE(3872), 1, - sym_template_function, - STATE(3876), 1, - sym_destructor_name, - STATE(3877), 1, - sym_dependent_identifier, - STATE(3878), 1, - sym_qualified_identifier, - STATE(3879), 1, - sym_operator_name, - STATE(7869), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10974), 1, - sym_ms_based_modifier, - STATE(10976), 5, + STATE(10396), 1, + sym_lambda_default_capture, + STATE(9680), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [305112] = 21, + [305633] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(8424), 1, + anon_sym_LBRACK, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11516), 1, + anon_sym_DASH_GT, + ACTIONS(13242), 1, + anon_sym___attribute__, + ACTIONS(13245), 1, + anon_sym___attribute, + ACTIONS(13536), 1, + anon_sym_requires, + STATE(8609), 1, + sym__function_attributes_end, + STATE(8735), 1, + sym_trailing_return_type, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13396), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8550), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8422), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [305696] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9882), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(11498), 1, + ACTIONS(11896), 1, anon_sym_STAR, - ACTIONS(13424), 1, + ACTIONS(13788), 1, sym_identifier, - ACTIONS(13426), 1, + ACTIONS(13790), 1, anon_sym_template, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3871), 1, + STATE(3957), 1, sym_pointer_type_declarator, - STATE(3872), 1, - sym_template_function, - STATE(3876), 1, + STATE(3972), 1, sym_destructor_name, - STATE(3877), 1, - sym_dependent_identifier, - STATE(3878), 1, + STATE(3975), 1, sym_qualified_identifier, - STATE(3879), 1, + STATE(3996), 1, + sym_template_function, + STATE(4016), 1, sym_operator_name, - STATE(7870), 1, + STATE(4018), 1, + sym_dependent_identifier, + STATE(7986), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10974), 1, + STATE(11156), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [305180] = 5, + [305764] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13428), 1, + ACTIONS(13792), 1, anon_sym_LBRACK_LBRACK, - STATE(7871), 2, + STATE(7987), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2101), 3, + ACTIONS(2461), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8700), 18, + ACTIONS(9075), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -683954,180 +705637,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [305216] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3049), 1, - anon_sym_TILDE, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(13205), 1, - anon_sym_COLON_COLON, - ACTIONS(13431), 1, - sym_identifier, - ACTIONS(13433), 1, - anon_sym_template, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(3871), 1, - sym_pointer_type_declarator, - STATE(3872), 1, - sym_template_function, - STATE(3876), 1, - sym_destructor_name, - STATE(3877), 1, - sym_dependent_identifier, - STATE(3878), 1, - sym_qualified_identifier, - STATE(3879), 1, - sym_operator_name, - STATE(7872), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(10974), 1, - sym_ms_based_modifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [305284] = 24, + [305800] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11751), 1, + ACTIONS(12091), 1, anon_sym_COMMA, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13437), 1, + ACTIONS(13797), 1, anon_sym_SEMI, - ACTIONS(13439), 1, + ACTIONS(13799), 1, anon_sym_COLON, - ACTIONS(13441), 1, + ACTIONS(13801), 1, anon_sym_LBRACE, - ACTIONS(13443), 1, + ACTIONS(13803), 1, anon_sym_LBRACK, - ACTIONS(13445), 1, + ACTIONS(13805), 1, anon_sym_EQ, - ACTIONS(13447), 1, + ACTIONS(13807), 1, anon_sym_try, - STATE(2649), 1, + STATE(3359), 1, sym_compound_statement, - STATE(2650), 1, + STATE(3360), 1, sym_default_method_clause, - STATE(2652), 1, + STATE(3361), 1, sym_delete_method_clause, - STATE(2656), 1, + STATE(3362), 1, sym_pure_virtual_clause, - STATE(2657), 1, + STATE(3363), 1, sym_try_statement, - STATE(4234), 1, + STATE(4334), 1, sym_parameter_list, - STATE(8715), 1, + STATE(8856), 1, sym__function_declarator_seq, - STATE(9121), 1, + STATE(9176), 1, sym_bitfield_clause, - STATE(9122), 1, + STATE(9177), 1, sym_initializer_list, - STATE(9123), 1, + STATE(9185), 1, aux_sym_field_declaration_repeat1, - STATE(10751), 1, + STATE(11032), 1, sym_attribute_specifier, - STATE(8581), 2, + STATE(8678), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [305358] = 18, + [305874] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(7546), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10437), 1, + ACTIONS(10819), 1, anon_sym_DASH_GT, - ACTIONS(12747), 1, + ACTIONS(13149), 1, anon_sym_requires, - STATE(8734), 1, + STATE(8845), 1, sym__function_attributes_end, - STATE(8823), 1, + STATE(8972), 1, sym_trailing_return_type, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7544), 2, + ACTIONS(7791), 2, anon_sym_LPAREN2, anon_sym_LBRACE, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + [305936] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8554), 1, + anon_sym_COLON_COLON, + ACTIONS(11860), 1, + anon_sym_STAR, + ACTIONS(13809), 1, + sym_identifier, + ACTIONS(13811), 1, + anon_sym_template, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7990), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(8546), 1, + sym_pointer_type_declarator, + STATE(8547), 1, + sym_template_function, + STATE(8554), 1, + sym_destructor_name, + STATE(8557), 1, + sym_qualified_identifier, + STATE(8558), 1, + sym_operator_name, + STATE(8602), 1, + sym_dependent_identifier, + STATE(11686), 1, + sym_ms_based_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [306004] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6497), 1, + anon_sym___asm, + ACTIONS(7968), 1, + anon_sym_LBRACK, + ACTIONS(10582), 1, + anon_sym___attribute__, + ACTIONS(10584), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10819), 1, + anon_sym_DASH_GT, + ACTIONS(13205), 1, + anon_sym_requires, + STATE(8853), 1, + sym__function_attributes_end, + STATE(8949), 1, + sym_trailing_return_type, + STATE(9124), 1, + sym_gnu_asm_expression, + ACTIONS(6538), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7966), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8043), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8561), 2, sym__function_postfix, sym_requires_clause, - [305420] = 14, + [306066] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(11629), 1, + ACTIONS(11987), 1, anon_sym_LPAREN2, - ACTIONS(11695), 1, + ACTIONS(11995), 1, sym_identifier, - ACTIONS(11697), 1, + ACTIONS(11997), 1, anon_sym_STAR, - ACTIONS(11699), 1, + ACTIONS(11999), 1, anon_sym_AMP_AMP, - ACTIONS(11701), 1, + ACTIONS(12001), 1, anon_sym_AMP, - STATE(8360), 1, + STATE(8457), 1, sym_ms_call_modifier, - STATE(8900), 1, + STATE(9029), 1, sym__field_declarator, - STATE(9063), 1, + STATE(9236), 1, sym_operator_name, - STATE(11009), 1, + STATE(11191), 1, sym_ms_based_modifier, - ACTIONS(1880), 6, + ACTIONS(2242), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8721), 7, + STATE(8839), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -684135,494 +705862,891 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - [305474] = 18, + [306120] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3444), 1, + anon_sym_TILDE, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8675), 1, + anon_sym_COLON_COLON, + ACTIONS(11896), 1, + anon_sym_STAR, + ACTIONS(13539), 1, + sym_identifier, + ACTIONS(13541), 1, + anon_sym_template, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(3957), 1, + sym_pointer_type_declarator, + STATE(3972), 1, + sym_destructor_name, + STATE(3975), 1, + sym_qualified_identifier, + STATE(3996), 1, + sym_template_function, + STATE(4016), 1, + sym_operator_name, + STATE(4018), 1, + sym_dependent_identifier, + STATE(7993), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(11156), 1, + sym_ms_based_modifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [306188] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, + ACTIONS(6497), 1, anon_sym___asm, - ACTIONS(8087), 1, + ACTIONS(8424), 1, anon_sym_LBRACK, - ACTIONS(10254), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(10256), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10437), 1, + ACTIONS(10819), 1, anon_sym_DASH_GT, - ACTIONS(13035), 1, + ACTIONS(13399), 1, anon_sym_requires, - STATE(8725), 1, + STATE(8843), 1, sym__function_attributes_end, - STATE(8836), 1, + STATE(8950), 1, sym_trailing_return_type, - STATE(8982), 1, + STATE(9124), 1, sym_gnu_asm_expression, - ACTIONS(6154), 2, + ACTIONS(6538), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8089), 2, + ACTIONS(8422), 2, anon_sym_LPAREN2, anon_sym_LBRACE, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, + STATE(7923), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(7882), 2, + STATE(8043), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8397), 2, + STATE(8550), 2, sym__function_postfix, sym_requires_clause, - [305536] = 24, + [306250] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11751), 1, + ACTIONS(12091), 1, anon_sym_COMMA, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13439), 1, + ACTIONS(13799), 1, anon_sym_COLON, - ACTIONS(13443), 1, + ACTIONS(13803), 1, anon_sym_LBRACK, - ACTIONS(13449), 1, + ACTIONS(13813), 1, anon_sym_SEMI, - ACTIONS(13451), 1, + ACTIONS(13815), 1, anon_sym_LBRACE, - ACTIONS(13453), 1, + ACTIONS(13817), 1, anon_sym_EQ, - ACTIONS(13455), 1, + ACTIONS(13819), 1, anon_sym_try, - STATE(3212), 1, + STATE(3279), 1, sym_compound_statement, - STATE(3213), 1, + STATE(3280), 1, sym_default_method_clause, - STATE(3215), 1, + STATE(3281), 1, sym_delete_method_clause, - STATE(3220), 1, + STATE(3282), 1, sym_pure_virtual_clause, - STATE(3222), 1, + STATE(3283), 1, sym_try_statement, - STATE(4234), 1, + STATE(4334), 1, sym_parameter_list, - STATE(8715), 1, + STATE(8856), 1, sym__function_declarator_seq, - STATE(9065), 1, + STATE(9174), 1, sym_bitfield_clause, - STATE(9066), 1, + STATE(9238), 1, sym_initializer_list, - STATE(9067), 1, + STATE(9242), 1, aux_sym_field_declaration_repeat1, - STATE(11068), 1, + STATE(10776), 1, sym_attribute_specifier, - STATE(8581), 2, + STATE(8678), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [305610] = 21, + [306324] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(8203), 1, - anon_sym_COLON_COLON, - ACTIONS(11514), 1, + ACTIONS(11896), 1, anon_sym_STAR, - ACTIONS(13457), 1, + ACTIONS(13821), 1, sym_identifier, - ACTIONS(13459), 1, + ACTIONS(13823), 1, + anon_sym_COLON_COLON, + ACTIONS(13825), 1, anon_sym_template, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7878), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(8427), 1, + STATE(3957), 1, sym_pointer_type_declarator, - STATE(8430), 1, - sym_template_function, - STATE(8432), 1, + STATE(3972), 1, sym_destructor_name, - STATE(8433), 1, - sym_dependent_identifier, - STATE(8434), 1, + STATE(3975), 1, sym_qualified_identifier, - STATE(8436), 1, + STATE(3996), 1, + sym_template_function, + STATE(4016), 1, sym_operator_name, - STATE(10589), 1, + STATE(4018), 1, + sym_dependent_identifier, + STATE(7996), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(11156), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [305678] = 21, + [306392] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12091), 1, + anon_sym_COMMA, + ACTIONS(12119), 1, + anon_sym___attribute__, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13799), 1, + anon_sym_COLON, + ACTIONS(13803), 1, + anon_sym_LBRACK, + ACTIONS(13827), 1, + anon_sym_SEMI, + ACTIONS(13829), 1, + anon_sym_LBRACE, + ACTIONS(13831), 1, + anon_sym_EQ, + ACTIONS(13833), 1, + anon_sym_try, + STATE(2862), 1, + sym_compound_statement, + STATE(2864), 1, + sym_default_method_clause, + STATE(2865), 1, + sym_delete_method_clause, + STATE(2866), 1, + sym_pure_virtual_clause, + STATE(2868), 1, + sym_try_statement, + STATE(4334), 1, + sym_parameter_list, + STATE(8856), 1, + sym__function_declarator_seq, + STATE(9181), 1, + aux_sym_field_declaration_repeat1, + STATE(9225), 1, + sym_bitfield_clause, + STATE(9248), 1, + sym_initializer_list, + STATE(10716), 1, + sym_attribute_specifier, + STATE(8678), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [306466] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3049), 1, + ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(11498), 1, + ACTIONS(11896), 1, anon_sym_STAR, - ACTIONS(13461), 1, - sym_identifier, - ACTIONS(13463), 1, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13465), 1, + ACTIONS(13835), 1, + sym_identifier, + ACTIONS(13837), 1, anon_sym_template, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3871), 1, + STATE(3957), 1, sym_pointer_type_declarator, - STATE(3872), 1, - sym_template_function, - STATE(3876), 1, + STATE(3972), 1, sym_destructor_name, - STATE(3877), 1, - sym_dependent_identifier, - STATE(3878), 1, + STATE(3975), 1, sym_qualified_identifier, - STATE(3879), 1, + STATE(3996), 1, + sym_template_function, + STATE(4016), 1, sym_operator_name, - STATE(7879), 1, + STATE(4018), 1, + sym_dependent_identifier, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10974), 1, + STATE(11156), 1, sym_ms_based_modifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [305746] = 24, + [306534] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(10382), 1, + anon_sym_requires, + ACTIONS(8160), 2, + anon_sym_final, + anon_sym_override, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8358), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 3, anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11751), 1, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(7966), 13, anon_sym_COMMA, - ACTIONS(11779), 1, - anon_sym___attribute__, - ACTIONS(13435), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(13439), 1, - anon_sym_COLON, - ACTIONS(13443), 1, - anon_sym_LBRACK, - ACTIONS(13467), 1, anon_sym_SEMI, - ACTIONS(13469), 1, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(13471), 1, anon_sym_EQ, - ACTIONS(13473), 1, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - STATE(3288), 1, - sym_compound_statement, - STATE(3289), 1, - sym_default_method_clause, - STATE(3299), 1, - sym_delete_method_clause, - STATE(3304), 1, - sym_pure_virtual_clause, - STATE(3305), 1, - sym_try_statement, - STATE(4234), 1, - sym_parameter_list, - STATE(8715), 1, - sym__function_declarator_seq, - STATE(9083), 1, - sym_bitfield_clause, - STATE(9087), 1, - sym_initializer_list, - STATE(9116), 1, - aux_sym_field_declaration_repeat1, - STATE(10770), 1, - sym_attribute_specifier, - STATE(8581), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [305820] = 18, + [306573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6129), 1, - anon_sym___asm, - ACTIONS(7629), 1, + ACTIONS(8885), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10254), 1, + anon_sym___asm, + ACTIONS(8887), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(10437), 1, - anon_sym_DASH_GT, - ACTIONS(12869), 1, - anon_sym_requires, - STATE(8717), 1, - sym__function_attributes_end, - STATE(8835), 1, - sym_trailing_return_type, - STATE(8982), 1, - sym_gnu_asm_expression, - ACTIONS(6154), 2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, - ACTIONS(7627), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - ACTIONS(10476), 2, anon_sym_final, anon_sym_override, - STATE(7838), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7882), 2, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [306604] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6584), 1, + anon_sym_LT, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13839), 1, + anon_sym_LBRACE, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + STATE(5061), 1, + sym_compound_statement, + STATE(8027), 1, + sym_template_parameter_list, + STATE(8263), 1, + sym_parameter_list, + STATE(10264), 1, + sym_lambda_declarator, + STATE(10827), 1, + sym_trailing_return_type, + STATE(8271), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - [305882] = 5, + STATE(8462), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9219), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [306663] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - STATE(7871), 2, + ACTIONS(13421), 1, + sym_identifier, + ACTIONS(13425), 1, + anon_sym_COLON_COLON, + ACTIONS(13845), 1, + anon_sym_virtual, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(8222), 1, + sym_splice_specifier, + STATE(8534), 1, + sym_access_specifier, + STATE(8762), 1, + sym__scope_resolution, + STATE(3790), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8019), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8479), 3, + STATE(10029), 2, + sym__class_name, + sym_qualified_type_identifier, + ACTIONS(13847), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [306722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8909), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8481), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(8911), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [305917] = 3, + [306753] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11172), 1, + anon_sym_LPAREN2, + ACTIONS(11186), 1, + anon_sym_LBRACK, + ACTIONS(11745), 1, + anon_sym_STAR, + ACTIONS(11747), 1, + anon_sym_AMP_AMP, + ACTIONS(11749), 1, + anon_sym_AMP, + STATE(4613), 1, + sym_parameter_list, + STATE(8314), 1, + sym__function_declarator_seq, + STATE(8750), 1, + sym__abstract_declarator, + STATE(8312), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9427), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [306800] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 3, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + STATE(7987), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8833), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8635), 20, + ACTIONS(8835), 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_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [305948] = 3, + [306835] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9921), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(9919), 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, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [306866] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + ACTIONS(13849), 1, + anon_sym_LBRACE, + ACTIONS(13851), 1, + anon_sym_requires, + STATE(5555), 1, + sym_compound_statement, + STATE(8091), 1, + sym_requires_clause, + STATE(8263), 1, + sym_parameter_list, + STATE(10520), 1, + sym_lambda_declarator, + STATE(10827), 1, + sym_trailing_return_type, + STATE(8271), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8462), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9219), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [306925] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6584), 1, + anon_sym_LT, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + ACTIONS(13853), 1, + anon_sym_LBRACE, + STATE(3009), 1, + sym_compound_statement, + STATE(8011), 1, + sym_template_parameter_list, + STATE(8263), 1, + sym_parameter_list, + STATE(10337), 1, + sym_lambda_declarator, + STATE(10827), 1, + sym_trailing_return_type, + STATE(8271), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8462), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9219), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [306984] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6584), 1, + anon_sym_LT, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + ACTIONS(13855), 1, + anon_sym_LBRACE, + STATE(6651), 1, + sym_compound_statement, + STATE(8014), 1, + sym_template_parameter_list, + STATE(8263), 1, + sym_parameter_list, + STATE(10250), 1, + sym_lambda_declarator, + STATE(10827), 1, + sym_trailing_return_type, + STATE(8271), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8462), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9219), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [307043] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8610), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8612), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [305979] = 17, + ACTIONS(13421), 1, + sym_identifier, + ACTIONS(13425), 1, + anon_sym_COLON_COLON, + ACTIONS(13857), 1, + anon_sym_virtual, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(8222), 1, + sym_splice_specifier, + STATE(8536), 1, + sym_access_specifier, + STATE(8762), 1, + sym__scope_resolution, + STATE(3790), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8021), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9603), 2, + sym__class_name, + sym_qualified_type_identifier, + ACTIONS(13847), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [307102] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13475), 1, - anon_sym_LBRACE, - ACTIONS(13479), 1, + ACTIONS(13843), 1, anon_sym_DASH_GT, - ACTIONS(13481), 1, + ACTIONS(13851), 1, anon_sym_requires, - STATE(6347), 1, + ACTIONS(13853), 1, + anon_sym_LBRACE, + STATE(2983), 1, sym_compound_statement, - STATE(8008), 1, + STATE(8140), 1, sym_requires_clause, - STATE(8127), 1, + STATE(8263), 1, sym_parameter_list, - STATE(10165), 1, + STATE(10378), 1, sym_lambda_declarator, - STATE(10515), 1, + STATE(10827), 1, sym_trailing_return_type, - STATE(8139), 2, + STATE(8271), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, + STATE(8462), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, + STATE(9219), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13477), 4, + ACTIONS(13841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [306038] = 17, + [307161] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6220), 1, - anon_sym_LT, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13475), 1, - anon_sym_LBRACE, - ACTIONS(13479), 1, + ACTIONS(13843), 1, anon_sym_DASH_GT, - STATE(6322), 1, + ACTIONS(13851), 1, + anon_sym_requires, + ACTIONS(13859), 1, + anon_sym_LBRACE, + STATE(4832), 1, sym_compound_statement, - STATE(7885), 1, - sym_template_parameter_list, - STATE(8127), 1, + STATE(8077), 1, + sym_requires_clause, + STATE(8263), 1, sym_parameter_list, - STATE(10356), 1, + STATE(10423), 1, sym_lambda_declarator, - STATE(10515), 1, + STATE(10827), 1, sym_trailing_return_type, - STATE(8139), 2, + STATE(8271), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, + STATE(8462), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, + STATE(9219), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13477), 4, + ACTIONS(13841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [306097] = 3, + [307220] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 3, + ACTIONS(13161), 1, + anon_sym_requires, + ACTIONS(13158), 2, + anon_sym_final, + anon_sym_override, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8358), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7968), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8631), 20, + ACTIONS(7966), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, + [307259] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + ACTIONS(13851), 1, anon_sym_requires, - [306128] = 3, + ACTIONS(13855), 1, + anon_sym_LBRACE, + STATE(6665), 1, + sym_compound_statement, + STATE(8090), 1, + sym_requires_clause, + STATE(8263), 1, + sym_parameter_list, + STATE(10318), 1, + sym_lambda_declarator, + STATE(10827), 1, + sym_trailing_return_type, + STATE(8271), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8462), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9219), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [307318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 3, + ACTIONS(8954), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8631), 20, + ACTIONS(8956), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -684643,14 +706767,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [306159] = 3, + [307349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8599), 3, + ACTIONS(8921), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8601), 20, + ACTIONS(8923), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -684671,14 +706795,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [306190] = 3, + [307380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8618), 3, + ACTIONS(8946), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8620), 20, + ACTIONS(8948), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -684699,46 +706823,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [306221] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10022), 1, - anon_sym_requires, - ACTIONS(7821), 2, - anon_sym_final, - anon_sym_override, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8156), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8559), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8561), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [306260] = 3, + [307411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8651), 3, + ACTIONS(8950), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8653), 20, + ACTIONS(8952), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -684759,27 +706851,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [306291] = 3, + [307442] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13421), 1, + sym_identifier, + ACTIONS(13425), 1, + anon_sym_COLON_COLON, + ACTIONS(13861), 1, + anon_sym_virtual, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(8222), 1, + sym_splice_specifier, + STATE(8539), 1, + sym_access_specifier, + STATE(8762), 1, + sym__scope_resolution, + STATE(3790), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7955), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9763), 2, + sym__class_name, + sym_qualified_type_identifier, + ACTIONS(13847), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [307501] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8655), 3, + ACTIONS(13863), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(13865), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9393), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8657), 20, + ACTIONS(9395), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, anon_sym_final, @@ -684787,91 +706923,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [306322] = 17, + [307536] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6220), 1, - anon_sym_LT, - ACTIONS(7880), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - ACTIONS(13483), 1, - anon_sym_LBRACE, - STATE(5459), 1, - sym_compound_statement, - STATE(7897), 1, - sym_template_parameter_list, - STATE(8127), 1, - sym_parameter_list, - STATE(10167), 1, - sym_lambda_declarator, - STATE(10515), 1, - sym_trailing_return_type, - STATE(8139), 2, + ACTIONS(13421), 1, + sym_identifier, + ACTIONS(13425), 1, + anon_sym_COLON_COLON, + ACTIONS(13867), 1, + anon_sym_virtual, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(8222), 1, + sym_splice_specifier, + STATE(8508), 1, + sym_access_specifier, + STATE(8762), 1, + sym__scope_resolution, + STATE(3790), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13477), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [306381] = 3, + STATE(9481), 2, + sym__class_name, + sym_qualified_type_identifier, + ACTIONS(13847), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [307595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8622), 3, + ACTIONS(8704), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8624), 20, + ACTIONS(8706), 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_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, + 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, - [306412] = 4, + [307626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13485), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8939), 3, + ACTIONS(8942), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8941), 18, + ACTIONS(8944), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, @@ -684879,6 +707013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, anon_sym_final, @@ -684886,84 +707021,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [306445] = 17, + [307657] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(6584), 1, + anon_sym_LT, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13479), 1, + ACTIONS(13843), 1, anon_sym_DASH_GT, - ACTIONS(13481), 1, - anon_sym_requires, - ACTIONS(13483), 1, + ACTIONS(13869), 1, anon_sym_LBRACE, - STATE(5618), 1, + STATE(5139), 1, sym_compound_statement, - STATE(8015), 1, - sym_requires_clause, - STATE(8127), 1, + STATE(8028), 1, + sym_template_parameter_list, + STATE(8263), 1, sym_parameter_list, - STATE(10084), 1, + STATE(10460), 1, sym_lambda_declarator, - STATE(10515), 1, + STATE(10827), 1, sym_trailing_return_type, - STATE(8139), 2, + STATE(8271), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, + STATE(8462), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, + STATE(9219), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13477), 4, + ACTIONS(13841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [306504] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8665), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8667), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [306535] = 3, + [307716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8516), 3, + ACTIONS(3163), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8518), 20, + ACTIONS(3161), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -684984,42 +707091,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [306566] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9540), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK_COLON, - ACTIONS(9538), 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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [306597] = 3, + [307747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8595), 3, + ACTIONS(3155), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8597), 20, + ACTIONS(3153), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -685040,643 +707119,398 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [306628] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13046), 1, - sym_identifier, - ACTIONS(13050), 1, - anon_sym_COLON_COLON, - ACTIONS(13487), 1, - anon_sym_virtual, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8472), 1, - sym_access_specifier, - STATE(8576), 1, - sym__scope_resolution, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7929), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9728), 2, - sym__class_name, - sym_qualified_type_identifier, - ACTIONS(13489), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [306687] = 17, + [307778] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6220), 1, - anon_sym_LT, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - ACTIONS(13491), 1, + ACTIONS(13839), 1, anon_sym_LBRACE, - STATE(6582), 1, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + ACTIONS(13851), 1, + anon_sym_requires, + STATE(5092), 1, sym_compound_statement, - STATE(7904), 1, - sym_template_parameter_list, - STATE(8127), 1, + STATE(8148), 1, + sym_requires_clause, + STATE(8263), 1, sym_parameter_list, - STATE(10154), 1, + STATE(10541), 1, sym_lambda_declarator, - STATE(10515), 1, + STATE(10827), 1, sym_trailing_return_type, - STATE(8139), 2, + STATE(8271), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, + STATE(8462), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, + STATE(9219), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13477), 4, + ACTIONS(13841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [306746] = 17, + [307837] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13479), 1, + ACTIONS(13843), 1, anon_sym_DASH_GT, - ACTIONS(13481), 1, + ACTIONS(13851), 1, anon_sym_requires, - ACTIONS(13491), 1, + ACTIONS(13869), 1, anon_sym_LBRACE, - STATE(6572), 1, + STATE(5161), 1, sym_compound_statement, - STATE(7963), 1, + STATE(8101), 1, sym_requires_clause, - STATE(8127), 1, + STATE(8263), 1, sym_parameter_list, - STATE(10254), 1, + STATE(10504), 1, sym_lambda_declarator, - STATE(10515), 1, + STATE(10827), 1, sym_trailing_return_type, - STATE(8139), 2, + STATE(8271), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, + STATE(8462), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, + STATE(9219), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13477), 4, + ACTIONS(13841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [306805] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13046), 1, - sym_identifier, - ACTIONS(13050), 1, - anon_sym_COLON_COLON, - ACTIONS(13493), 1, - anon_sym_virtual, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8416), 1, - sym_access_specifier, - STATE(8576), 1, - sym__scope_resolution, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7823), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9346), 2, - sym__class_name, - sym_qualified_type_identifier, - ACTIONS(13489), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [306864] = 17, + [307896] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6220), 1, - anon_sym_LT, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13479), 1, + ACTIONS(13843), 1, anon_sym_DASH_GT, - ACTIONS(13495), 1, + ACTIONS(13851), 1, + anon_sym_requires, + ACTIONS(13871), 1, anon_sym_LBRACE, - STATE(4780), 1, + STATE(6453), 1, sym_compound_statement, - STATE(7910), 1, - sym_template_parameter_list, - STATE(8127), 1, + STATE(8079), 1, + sym_requires_clause, + STATE(8263), 1, sym_parameter_list, - STATE(10354), 1, + STATE(10430), 1, sym_lambda_declarator, - STATE(10515), 1, + STATE(10827), 1, sym_trailing_return_type, - STATE(8139), 2, + STATE(8271), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, + STATE(8462), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, + STATE(9219), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13477), 4, + ACTIONS(13841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [306923] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13046), 1, - sym_identifier, - ACTIONS(13050), 1, - anon_sym_COLON_COLON, - ACTIONS(13497), 1, - anon_sym_virtual, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8403), 1, - sym_access_specifier, - STATE(8576), 1, - sym__scope_resolution, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7905), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9366), 2, - sym__class_name, - sym_qualified_type_identifier, - ACTIONS(13489), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [306982] = 17, + [307955] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6220), 1, + ACTIONS(6584), 1, anon_sym_LT, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13479), 1, + ACTIONS(13843), 1, anon_sym_DASH_GT, - ACTIONS(13499), 1, + ACTIONS(13873), 1, anon_sym_LBRACE, - STATE(5068), 1, + STATE(3595), 1, sym_compound_statement, - STATE(7909), 1, + STATE(8062), 1, sym_template_parameter_list, - STATE(8127), 1, + STATE(8263), 1, sym_parameter_list, - STATE(10122), 1, + STATE(10615), 1, sym_lambda_declarator, - STATE(10515), 1, + STATE(10827), 1, sym_trailing_return_type, - STATE(8139), 2, + STATE(8271), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, + STATE(8462), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, + STATE(9219), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13477), 4, + ACTIONS(13841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [307041] = 17, + [308014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(8992), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8994), 20, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - ACTIONS(13481), 1, - anon_sym_requires, - ACTIONS(13499), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(5144), 1, - sym_compound_statement, - STATE(7970), 1, - sym_requires_clause, - STATE(8127), 1, - sym_parameter_list, - STATE(10203), 1, - sym_lambda_declarator, - STATE(10515), 1, - sym_trailing_return_type, - STATE(8139), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13477), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [307100] = 17, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [308045] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - ACTIONS(13481), 1, + ACTIONS(10382), 1, anon_sym_requires, - ACTIONS(13495), 1, - anon_sym_LBRACE, - STATE(4726), 1, - sym_compound_statement, - STATE(7980), 1, + ACTIONS(8160), 2, + anon_sym_final, + anon_sym_override, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8363), 2, + sym__function_postfix, sym_requires_clause, - STATE(8127), 1, - sym_parameter_list, - STATE(10370), 1, - sym_lambda_declarator, - STATE(10515), 1, - sym_trailing_return_type, - STATE(8139), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13477), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [307159] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(8905), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8907), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - ACTIONS(13481), 1, - anon_sym_requires, - ACTIONS(13501), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(5160), 1, - sym_compound_statement, - STATE(8017), 1, - sym_requires_clause, - STATE(8127), 1, - sym_parameter_list, - STATE(10412), 1, - sym_lambda_declarator, - STATE(10515), 1, - sym_trailing_return_type, - STATE(8139), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13477), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [307218] = 17, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [308084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6220), 1, - anon_sym_LT, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(9011), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9013), 20, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - ACTIONS(13503), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(2895), 1, - sym_compound_statement, - STATE(7913), 1, - sym_template_parameter_list, - STATE(8127), 1, - sym_parameter_list, - STATE(10440), 1, - sym_lambda_declarator, - STATE(10515), 1, - sym_trailing_return_type, - STATE(8139), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13477), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [307277] = 17, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [308115] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(13865), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9322), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9324), 18, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - ACTIONS(13481), 1, - anon_sym_requires, - ACTIONS(13503), 1, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(2951), 1, - sym_compound_statement, - STATE(7975), 1, - sym_requires_clause, - STATE(8127), 1, - sym_parameter_list, - STATE(10112), 1, - sym_lambda_declarator, - STATE(10515), 1, - sym_trailing_return_type, - STATE(8139), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13477), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [307336] = 17, + anon_sym_EQ, + anon_sym_or, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [308148] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6220), 1, - anon_sym_LT, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(13254), 1, + anon_sym_requires, + ACTIONS(13251), 2, + anon_sym_final, + anon_sym_override, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8297), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8422), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - ACTIONS(13505), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(5032), 1, - sym_compound_statement, - STATE(7915), 1, - sym_template_parameter_list, - STATE(8127), 1, - sym_parameter_list, - STATE(10272), 1, - sym_lambda_declarator, - STATE(10515), 1, - sym_trailing_return_type, - STATE(8139), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13477), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [307395] = 17, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [308187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(8992), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8994), 20, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - ACTIONS(13481), 1, - anon_sym_requires, - ACTIONS(13505), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(5107), 1, - sym_compound_statement, - STATE(7979), 1, - sym_requires_clause, - STATE(8127), 1, - sym_parameter_list, - STATE(10328), 1, - sym_lambda_declarator, - STATE(10515), 1, - sym_trailing_return_type, - STATE(8139), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13477), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [307454] = 5, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [308218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - STATE(7871), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8512), 3, + ACTIONS(8992), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8514), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(8994), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [307489] = 7, + [308249] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10022), 1, + ACTIONS(10382), 1, anon_sym_requires, - ACTIONS(7821), 2, + ACTIONS(8160), 2, anon_sym_final, anon_sym_override, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8195), 2, + STATE(8313), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7629), 3, + ACTIONS(7789), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(7627), 13, + ACTIONS(7791), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -685690,369 +707524,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [307528] = 17, + [308288] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6220), 1, + ACTIONS(6584), 1, anon_sym_LT, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13479), 1, + ACTIONS(13843), 1, anon_sym_DASH_GT, - ACTIONS(13507), 1, + ACTIONS(13875), 1, anon_sym_LBRACE, - STATE(7884), 1, + STATE(8015), 1, sym_compound_statement, - STATE(7919), 1, + STATE(8044), 1, sym_template_parameter_list, - STATE(8127), 1, + STATE(8263), 1, sym_parameter_list, - STATE(10416), 1, + STATE(10614), 1, sym_lambda_declarator, - STATE(10515), 1, + STATE(10827), 1, sym_trailing_return_type, - STATE(8139), 2, + STATE(8271), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, + STATE(8462), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, + STATE(9219), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13477), 4, + ACTIONS(13841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [307587] = 17, + [308347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(8996), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8998), 20, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - ACTIONS(13481), 1, - anon_sym_requires, - ACTIONS(13507), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(7892), 1, - sym_compound_statement, - STATE(7985), 1, - sym_requires_clause, - STATE(8127), 1, - sym_parameter_list, - STATE(10433), 1, - sym_lambda_declarator, - STATE(10515), 1, - sym_trailing_return_type, - STATE(8139), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13477), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [307646] = 17, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [308378] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(6220), 1, + ACTIONS(6584), 1, anon_sym_LT, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13479), 1, + ACTIONS(13843), 1, anon_sym_DASH_GT, - STATE(5036), 1, - sym_compound_statement, - STATE(7921), 1, - sym_template_parameter_list, - STATE(8127), 1, - sym_parameter_list, - STATE(10102), 1, - sym_lambda_declarator, - STATE(10515), 1, - sym_trailing_return_type, - STATE(8139), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13477), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [307705] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, + ACTIONS(13859), 1, anon_sym_LBRACE, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - ACTIONS(13481), 1, - anon_sym_requires, - STATE(5160), 1, + STATE(4877), 1, sym_compound_statement, - STATE(7988), 1, - sym_requires_clause, - STATE(8127), 1, + STATE(8012), 1, + sym_template_parameter_list, + STATE(8263), 1, sym_parameter_list, - STATE(10192), 1, + STATE(10492), 1, sym_lambda_declarator, - STATE(10515), 1, + STATE(10827), 1, sym_trailing_return_type, - STATE(8139), 2, + STATE(8271), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, + STATE(8462), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, + STATE(9219), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13477), 4, + ACTIONS(13841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [307764] = 17, + [308437] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6220), 1, + ACTIONS(6584), 1, anon_sym_LT, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13479), 1, + ACTIONS(13843), 1, anon_sym_DASH_GT, - ACTIONS(13509), 1, + ACTIONS(13849), 1, anon_sym_LBRACE, - STATE(7923), 1, + STATE(5686), 1, + sym_compound_statement, + STATE(8007), 1, sym_template_parameter_list, - STATE(8127), 1, + STATE(8263), 1, sym_parameter_list, - STATE(8296), 1, - sym_compound_statement, - STATE(10118), 1, + STATE(10443), 1, sym_lambda_declarator, - STATE(10515), 1, + STATE(10827), 1, sym_trailing_return_type, - STATE(8139), 2, + STATE(8271), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, + STATE(8462), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, + STATE(9219), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13477), 4, + ACTIONS(13841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [307823] = 17, + [308496] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - ACTIONS(13481), 1, - anon_sym_requires, - ACTIONS(13509), 1, - anon_sym_LBRACE, - STATE(7992), 1, - sym_requires_clause, - STATE(8127), 1, - sym_parameter_list, - STATE(8278), 1, - sym_compound_statement, - STATE(10216), 1, - sym_lambda_declarator, - STATE(10515), 1, - sym_trailing_return_type, - STATE(8139), 2, + STATE(7987), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13477), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [307882] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12170), 1, - anon_sym_requires, - ACTIONS(12167), 2, - anon_sym_final, - anon_sym_override, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8170), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7546), 3, + ACTIONS(8837), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(7544), 13, + ACTIONS(8839), 17, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [307921] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9525), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK_COLON, - ACTIONS(9523), 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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [307952] = 7, + anon_sym_requires, + [308531] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(12790), 1, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + ACTIONS(13851), 1, anon_sym_requires, - ACTIONS(12787), 2, - anon_sym_final, - anon_sym_override, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8195), 2, - sym__function_postfix, + ACTIONS(13875), 1, + anon_sym_LBRACE, + STATE(8016), 1, + sym_compound_statement, + STATE(8117), 1, sym_requires_clause, - ACTIONS(7629), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(7627), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + STATE(8263), 1, + sym_parameter_list, + STATE(10393), 1, + sym_lambda_declarator, + STATE(10827), 1, + sym_trailing_return_type, + STATE(8271), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8462), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9219), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [308590] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6584), 1, + anon_sym_LT, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + ACTIONS(13877), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [307991] = 7, + STATE(5146), 1, + sym_compound_statement, + STATE(8053), 1, + sym_template_parameter_list, + STATE(8263), 1, + sym_parameter_list, + STATE(10525), 1, + sym_lambda_declarator, + STATE(10827), 1, + sym_trailing_return_type, + STATE(8271), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8462), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9219), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [308649] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12887), 1, + ACTIONS(13882), 1, anon_sym_requires, - ACTIONS(12884), 2, + ACTIONS(13879), 2, anon_sym_final, anon_sym_override, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8239), 2, + STATE(8363), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8087), 3, + ACTIONS(8905), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8089), 13, + ACTIONS(8907), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -686066,103 +707824,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [308030] = 7, + [308688] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(13514), 1, - anon_sym_requires, - ACTIONS(13511), 2, - anon_sym_final, - anon_sym_override, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8208), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8543), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(6584), 1, + anon_sym_LT, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + ACTIONS(13871), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [308069] = 17, + STATE(6430), 1, + sym_compound_statement, + STATE(8029), 1, + sym_template_parameter_list, + STATE(8263), 1, + sym_parameter_list, + STATE(10295), 1, + sym_lambda_declarator, + STATE(10827), 1, + sym_trailing_return_type, + STATE(8271), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8462), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9219), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [308747] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13046), 1, - sym_identifier, - ACTIONS(13050), 1, - anon_sym_COLON_COLON, - ACTIONS(13517), 1, - anon_sym_virtual, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8461), 1, - sym_access_specifier, - STATE(8576), 1, - sym__scope_resolution, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7823), 2, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + ACTIONS(13851), 1, + anon_sym_requires, + ACTIONS(13885), 1, + anon_sym_LBRACE, + STATE(8115), 1, + sym_requires_clause, + STATE(8263), 1, + sym_parameter_list, + STATE(8418), 1, + sym_compound_statement, + STATE(10240), 1, + sym_lambda_declarator, + STATE(10827), 1, + sym_trailing_return_type, + STATE(8271), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9996), 2, - sym__class_name, - sym_qualified_type_identifier, - ACTIONS(13489), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [308128] = 5, + STATE(8462), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9219), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [308806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13485), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(13519), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8959), 3, + ACTIONS(9000), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8961), 16, + ACTIONS(9002), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, anon_sym_final, @@ -686170,83 +707936,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [308163] = 7, + [308837] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13524), 1, + ACTIONS(13890), 1, anon_sym_requires, - ACTIONS(13521), 2, + ACTIONS(13887), 2, anon_sym_final, anon_sym_override, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8156), 2, + STATE(8301), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8559), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8561), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [308202] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10922), 1, - anon_sym_LPAREN2, - ACTIONS(10936), 1, - anon_sym_LBRACK, - ACTIONS(11381), 1, - anon_sym_STAR, - ACTIONS(11383), 1, - anon_sym_AMP_AMP, - ACTIONS(11385), 1, - anon_sym_AMP, - STATE(4509), 1, - sym_parameter_list, - STATE(8183), 1, - sym__function_declarator_seq, - STATE(8623), 1, - sym__abstract_declarator, - STATE(8180), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9072), 10, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [308249] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8416), 3, + ACTIONS(8913), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8418), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(8915), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -686258,33 +707966,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - 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, - [308280] = 7, + [308876] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10022), 1, + ACTIONS(10382), 1, anon_sym_requires, - ACTIONS(7821), 2, + ACTIONS(8160), 2, anon_sym_final, anon_sym_override, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8170), 2, + STATE(8301), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7546), 3, + ACTIONS(8913), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(7544), 13, + ACTIONS(8915), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -686298,139 +708000,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [308319] = 17, + [308915] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6220), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(6584), 1, anon_sym_LT, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13479), 1, + ACTIONS(13843), 1, anon_sym_DASH_GT, - ACTIONS(13501), 1, - anon_sym_LBRACE, - STATE(5036), 1, + STATE(5061), 1, sym_compound_statement, - STATE(7911), 1, + STATE(8055), 1, sym_template_parameter_list, - STATE(8127), 1, + STATE(8263), 1, sym_parameter_list, - STATE(10423), 1, + STATE(10595), 1, sym_lambda_declarator, - STATE(10515), 1, + STATE(10827), 1, sym_trailing_return_type, - STATE(8139), 2, + STATE(8271), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, + STATE(8462), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, + STATE(9219), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13477), 4, + ACTIONS(13841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [308378] = 17, + [308974] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6220), 1, - anon_sym_LT, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13479), 1, + ACTIONS(13843), 1, anon_sym_DASH_GT, - ACTIONS(13527), 1, + ACTIONS(13851), 1, + anon_sym_requires, + ACTIONS(13877), 1, anon_sym_LBRACE, - STATE(3508), 1, + STATE(5183), 1, sym_compound_statement, - STATE(7939), 1, - sym_template_parameter_list, - STATE(8127), 1, + STATE(8147), 1, + sym_requires_clause, + STATE(8263), 1, sym_parameter_list, - STATE(10078), 1, + STATE(10209), 1, sym_lambda_declarator, - STATE(10515), 1, + STATE(10827), 1, sym_trailing_return_type, - STATE(8139), 2, + STATE(8271), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, + STATE(8462), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, + STATE(9219), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13477), 4, + ACTIONS(13841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [308437] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - STATE(7871), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8725), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8727), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [308472] = 7, + [309033] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10022), 1, + ACTIONS(12418), 1, anon_sym_requires, - ACTIONS(7821), 2, + ACTIONS(12415), 2, anon_sym_final, anon_sym_override, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8239), 2, + STATE(8313), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8087), 3, + ACTIONS(7789), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8089), 13, + ACTIONS(7791), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -686444,112 +708116,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [308511] = 17, + [309072] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13479), 1, + ACTIONS(13843), 1, anon_sym_DASH_GT, - ACTIONS(13481), 1, + ACTIONS(13851), 1, anon_sym_requires, - ACTIONS(13527), 1, - anon_sym_LBRACE, - STATE(3567), 1, + STATE(5092), 1, sym_compound_statement, - STATE(8026), 1, + STATE(8134), 1, sym_requires_clause, - STATE(8127), 1, + STATE(8263), 1, sym_parameter_list, - STATE(10224), 1, + STATE(10329), 1, sym_lambda_declarator, - STATE(10515), 1, + STATE(10827), 1, sym_trailing_return_type, - STATE(8139), 2, + STATE(8271), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, + STATE(8462), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, + STATE(9219), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13477), 4, + ACTIONS(13841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [308570] = 3, + [309131] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8606), 3, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + STATE(7987), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9071), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8608), 20, + ACTIONS(9073), 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_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [308601] = 3, + [309166] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8614), 3, + ACTIONS(10382), 1, + anon_sym_requires, + ACTIONS(8160), 2, + anon_sym_final, + anon_sym_override, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8297), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8424), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8616), 20, + ACTIONS(8422), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [308632] = 3, + [309205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 3, + ACTIONS(8893), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(2801), 20, + ACTIONS(8895), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -686570,14 +708248,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [308663] = 3, + [309236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 3, + ACTIONS(8901), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(2793), 20, + ACTIONS(8903), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -686598,88 +708276,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [308694] = 7, + [309267] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(10022), 1, - anon_sym_requires, - ACTIONS(7821), 2, - anon_sym_final, - anon_sym_override, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8208), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8541), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8543), 13, + ACTIONS(6584), 1, + anon_sym_LT, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + ACTIONS(13885), 1, + anon_sym_LBRACE, + STATE(8048), 1, + sym_template_parameter_list, + STATE(8263), 1, + sym_parameter_list, + STATE(8378), 1, + sym_compound_statement, + STATE(10585), 1, + sym_lambda_declarator, + STATE(10827), 1, + sym_trailing_return_type, + STATE(8271), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8462), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9219), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [309326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9738), 9, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + anon_sym_COLON_COLON, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(9736), 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, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [309357] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + ACTIONS(13851), 1, + anon_sym_requires, + ACTIONS(13873), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [308733] = 3, + STATE(3670), 1, + sym_compound_statement, + STATE(8129), 1, + sym_requires_clause, + STATE(8263), 1, + sym_parameter_list, + STATE(10385), 1, + sym_lambda_declarator, + STATE(10827), 1, + sym_trailing_return_type, + STATE(8271), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8462), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9219), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [309416] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 3, + ACTIONS(10367), 1, + anon_sym_DASH_GT, + ACTIONS(12418), 1, + anon_sym_requires, + STATE(8013), 1, + sym_trailing_return_type, + ACTIONS(7789), 2, anon_sym___attribute, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8631), 20, + ACTIONS(12415), 2, + anon_sym_final, + anon_sym_override, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8313), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [308764] = 9, + [309458] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5922), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13543), 1, + sym_identifier, + ACTIONS(13545), 1, + anon_sym_STAR, + ACTIONS(13549), 1, + anon_sym_COLON_COLON, + ACTIONS(13893), 1, + anon_sym_AMP, + ACTIONS(13895), 1, + sym_this, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7998), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(10184), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [309512] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5922), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13543), 1, + sym_identifier, + ACTIONS(13545), 1, + anon_sym_STAR, + ACTIONS(13549), 1, + anon_sym_COLON_COLON, + ACTIONS(13893), 1, + anon_sym_AMP, + ACTIONS(13897), 1, + sym_this, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7998), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(10562), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [309566] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10016), 1, + ACTIONS(10367), 1, anon_sym_DASH_GT, - ACTIONS(10022), 1, + ACTIONS(13161), 1, anon_sym_requires, - STATE(7891), 1, + STATE(8035), 1, sym_trailing_return_type, - ACTIONS(7821), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8541), 2, + ACTIONS(7968), 2, anon_sym___attribute, anon_sym_LBRACK, - STATE(8010), 2, + ACTIONS(13158), 2, + anon_sym_final, + anon_sym_override, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8208), 2, + STATE(8358), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8543), 11, + ACTIONS(7966), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -686691,28 +708532,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [308806] = 9, + [309608] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10016), 1, + ACTIONS(10367), 1, anon_sym_DASH_GT, - ACTIONS(12170), 1, + ACTIONS(13254), 1, anon_sym_requires, - STATE(7926), 1, + STATE(8046), 1, sym_trailing_return_type, - ACTIONS(7546), 2, + ACTIONS(8424), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(12167), 2, + ACTIONS(13251), 2, anon_sym_final, anon_sym_override, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8170), 2, + STATE(8297), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 11, + ACTIONS(8422), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -686724,28 +708565,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [308848] = 9, + [309650] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10016), 1, + ACTIONS(10367), 1, anon_sym_DASH_GT, - ACTIONS(12790), 1, + ACTIONS(13882), 1, anon_sym_requires, - STATE(7927), 1, + STATE(8050), 1, sym_trailing_return_type, - ACTIONS(7629), 2, + ACTIONS(8905), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(12787), 2, + ACTIONS(13879), 2, anon_sym_final, anon_sym_override, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8195), 2, + STATE(8363), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7627), 11, + ACTIONS(8907), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -686757,28 +708598,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [308890] = 9, + [309692] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10016), 1, + ACTIONS(10367), 1, anon_sym_DASH_GT, - ACTIONS(12887), 1, + ACTIONS(10382), 1, anon_sym_requires, - STATE(7928), 1, + STATE(8057), 1, sym_trailing_return_type, - ACTIONS(8087), 2, + ACTIONS(7968), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(12884), 2, + ACTIONS(8160), 2, anon_sym_final, anon_sym_override, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8239), 2, + STATE(8358), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8089), 11, + ACTIONS(7966), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -686790,28 +708631,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [308932] = 9, + [309734] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10016), 1, + ACTIONS(10367), 1, anon_sym_DASH_GT, - ACTIONS(13514), 1, + ACTIONS(10382), 1, anon_sym_requires, - STATE(7931), 1, + STATE(8032), 1, sym_trailing_return_type, - ACTIONS(8541), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(13511), 2, + ACTIONS(8160), 2, anon_sym_final, anon_sym_override, - STATE(8010), 2, + ACTIONS(8424), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8208), 2, + STATE(8297), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8543), 11, + ACTIONS(8422), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -686823,117 +708664,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [308974] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13199), 1, - sym_identifier, - ACTIONS(13201), 1, - anon_sym_STAR, - ACTIONS(13205), 1, - anon_sym_COLON_COLON, - ACTIONS(13529), 1, - anon_sym_AMP, - ACTIONS(13531), 1, - sym_this, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7872), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(9818), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [309028] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5558), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13199), 1, - sym_identifier, - ACTIONS(13201), 1, - anon_sym_STAR, - ACTIONS(13205), 1, - anon_sym_COLON_COLON, - ACTIONS(13529), 1, - anon_sym_AMP, - ACTIONS(13533), 1, - sym_this, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7872), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(10374), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [309082] = 5, + [309776] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13537), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - STATE(8114), 1, - sym_preproc_argument_list, - ACTIONS(13539), 5, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(9429), 1, + anon_sym___attribute, + ACTIONS(11779), 1, + anon_sym_STAR, + ACTIONS(11781), 1, + anon_sym_AMP_AMP, + ACTIONS(11783), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13535), 15, + ACTIONS(11793), 1, + anon_sym_LBRACK, + STATE(4796), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8787), 1, + sym__abstract_declarator, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9427), 8, 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, - [309116] = 3, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [309824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9556), 8, + ACTIONS(9806), 8, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -686942,7 +708712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_RBRACK, anon_sym_LBRACE, anon_sym_LBRACK_COLON, - ACTIONS(9554), 14, + ACTIONS(9804), 14, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -686957,64 +708727,28 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [309146] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(9074), 1, - anon_sym___attribute, - ACTIONS(11415), 1, - anon_sym_STAR, - ACTIONS(11417), 1, - anon_sym_AMP_AMP, - ACTIONS(11419), 1, - anon_sym_AMP, - ACTIONS(11429), 1, - anon_sym_LBRACK, - STATE(4823), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8675), 1, - sym__abstract_declarator, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9072), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [309194] = 9, + [309854] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10016), 1, + ACTIONS(10367), 1, anon_sym_DASH_GT, - ACTIONS(10022), 1, + ACTIONS(10382), 1, anon_sym_requires, - STATE(7917), 1, + STATE(8051), 1, sym_trailing_return_type, - ACTIONS(7546), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(7821), 2, + ACTIONS(8160), 2, anon_sym_final, anon_sym_override, - STATE(8010), 2, + ACTIONS(8905), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8170), 2, + STATE(8363), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 11, + ACTIONS(8907), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -687026,61 +708760,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [309236] = 9, + [309896] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10016), 1, - anon_sym_DASH_GT, - ACTIONS(10022), 1, - anon_sym_requires, - STATE(7938), 1, - sym_trailing_return_type, - ACTIONS(7629), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(7821), 2, - anon_sym_final, - anon_sym_override, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8195), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7627), 11, + ACTIONS(13901), 1, + anon_sym_LPAREN2, + STATE(8155), 1, + sym_preproc_argument_list, + ACTIONS(13903), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13899), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [309278] = 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [309930] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10016), 1, + ACTIONS(10367), 1, anon_sym_DASH_GT, - ACTIONS(10022), 1, + ACTIONS(10382), 1, anon_sym_requires, - STATE(7944), 1, + STATE(7999), 1, sym_trailing_return_type, - ACTIONS(7821), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8087), 2, + ACTIONS(7789), 2, anon_sym___attribute, anon_sym_LBRACK, - STATE(8010), 2, + ACTIONS(8160), 2, + anon_sym_final, + anon_sym_override, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8239), 2, + STATE(8313), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8089), 11, + ACTIONS(7791), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -687092,1118 +708822,794 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [309320] = 14, + [309972] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10735), 1, + ACTIONS(11105), 1, anon_sym_COLON_COLON, - ACTIONS(13541), 1, + ACTIONS(13905), 1, sym_identifier, - ACTIONS(13543), 1, + ACTIONS(13907), 1, sym_primitive_type, - STATE(2272), 1, + STATE(3126), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8624), 1, - sym__scope_resolution, - STATE(2818), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - ACTIONS(12660), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [309371] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11443), 1, - anon_sym_STAR, - ACTIONS(11445), 1, - anon_sym_AMP_AMP, - ACTIONS(11447), 1, - anon_sym_AMP, - STATE(4554), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8710), 1, - sym__abstract_declarator, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9072), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [309416] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, - ACTIONS(13545), 1, - sym_identifier, - ACTIONS(13547), 1, - sym_primitive_type, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3709), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8638), 1, + STATE(8738), 1, sym__scope_resolution, - STATE(4593), 2, + STATE(3192), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(59), 4, + ACTIONS(12785), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [309467] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13447), 1, - anon_sym_try, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(13551), 1, - anon_sym_LPAREN2, - ACTIONS(13553), 1, - anon_sym_SEMI, - ACTIONS(13555), 1, - anon_sym_LBRACE, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(13559), 1, - anon_sym_EQ, - STATE(2727), 1, - sym_compound_statement, - STATE(2729), 1, - sym_try_statement, - STATE(4505), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(9857), 1, - sym_gnu_asm_expression, - STATE(9858), 1, - aux_sym_declaration_repeat1, - ACTIONS(13561), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10081), 2, - sym_argument_list, - sym_initializer_list, - [309528] = 15, + [310023] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13479), 1, + ACTIONS(13843), 1, anon_sym_DASH_GT, - ACTIONS(13491), 1, + ACTIONS(13859), 1, anon_sym_LBRACE, - STATE(6460), 1, + STATE(4927), 1, sym_compound_statement, - STATE(8127), 1, + STATE(8263), 1, sym_parameter_list, - STATE(10126), 1, + STATE(10453), 1, sym_lambda_declarator, - STATE(10515), 1, + STATE(10827), 1, sym_trailing_return_type, - STATE(8139), 2, + STATE(8271), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, + STATE(8462), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, + STATE(9219), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13477), 4, + ACTIONS(13841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [309581] = 15, + [310076] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(11627), 1, - sym_identifier, - ACTIONS(11629), 1, - anon_sym_LPAREN2, - ACTIONS(11631), 1, - anon_sym_STAR, - ACTIONS(11633), 1, + ACTIONS(13909), 1, + anon_sym_COMMA, + ACTIONS(13911), 1, + anon_sym_RPAREN, + ACTIONS(13917), 1, + anon_sym_SLASH, + ACTIONS(13919), 1, + anon_sym_PIPE_PIPE, + ACTIONS(13921), 1, anon_sym_AMP_AMP, - ACTIONS(11635), 1, + ACTIONS(13923), 1, + anon_sym_PIPE, + ACTIONS(13925), 1, + anon_sym_CARET, + ACTIONS(13927), 1, anon_sym_AMP, - ACTIONS(13563), 1, - anon_sym_SEMI, - STATE(7880), 1, - sym__field_declarator, - STATE(8661), 1, - sym_operator_name, - STATE(11359), 1, - sym_attribute_specifier, - STATE(11372), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(8721), 7, - 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, - [309634] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10743), 1, - anon_sym_COLON_COLON, - ACTIONS(13565), 1, - sym_identifier, - ACTIONS(13567), 1, - sym_primitive_type, - STATE(3270), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8631), 1, - sym__scope_resolution, - STATE(3843), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - ACTIONS(12632), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [309685] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10697), 1, - anon_sym_COLON_COLON, - ACTIONS(13569), 1, - sym_identifier, - ACTIONS(13571), 1, - sym_primitive_type, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(6549), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(8089), 1, - sym_splice_specifier, - STATE(8634), 1, - sym__scope_resolution, - STATE(4329), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - ACTIONS(2819), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [309736] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13455), 1, - anon_sym_try, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(13551), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(13559), 1, - anon_sym_EQ, - ACTIONS(13573), 1, - anon_sym_SEMI, - ACTIONS(13575), 1, - anon_sym_LBRACE, - STATE(3182), 1, - sym_compound_statement, - STATE(3183), 1, - sym_try_statement, - STATE(4505), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(9979), 1, - sym_gnu_asm_expression, - STATE(9980), 1, - aux_sym_declaration_repeat1, - ACTIONS(13561), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10081), 2, - sym_argument_list, - sym_initializer_list, - [309797] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10686), 1, - anon_sym_COLON_COLON, - ACTIONS(13577), 1, - sym_identifier, - ACTIONS(13579), 1, - sym_primitive_type, - STATE(2024), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8593), 1, - sym__scope_resolution, - STATE(2093), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - ACTIONS(12680), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [309848] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10293), 1, - anon_sym_COLON_COLON, - ACTIONS(13581), 1, - sym_identifier, - ACTIONS(13583), 1, - sym_primitive_type, - STATE(2634), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8605), 1, - sym__scope_resolution, - STATE(3054), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - ACTIONS(1882), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [309899] = 15, + STATE(9947), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(13913), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13915), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13929), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(13931), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13933), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(13935), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [310131] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13479), 1, + ACTIONS(13843), 1, anon_sym_DASH_GT, - ACTIONS(13499), 1, + ACTIONS(13871), 1, anon_sym_LBRACE, - STATE(5021), 1, + STATE(6465), 1, sym_compound_statement, - STATE(8127), 1, + STATE(8263), 1, sym_parameter_list, - STATE(10283), 1, + STATE(10505), 1, sym_lambda_declarator, - STATE(10515), 1, + STATE(10827), 1, sym_trailing_return_type, - STATE(8139), 2, + STATE(8271), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, + STATE(8462), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, + STATE(9219), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13477), 4, + ACTIONS(13841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [309952] = 4, + [310184] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13585), 1, - anon_sym_LPAREN2, - ACTIONS(8583), 3, - anon_sym___attribute, + ACTIONS(10382), 1, + anon_sym_requires, + ACTIONS(10592), 1, + anon_sym_DASH_GT, + STATE(8032), 1, + sym_trailing_return_type, + ACTIONS(8160), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8424), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8585), 17, - anon_sym_DOT_DOT_DOT, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8297), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8422), 10, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_try, + [310225] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10382), 1, + anon_sym_requires, + ACTIONS(10592), 1, anon_sym_DASH_GT, + STATE(8051), 1, + sym_trailing_return_type, + ACTIONS(8160), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, + ACTIONS(8905), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8363), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8907), 10, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - anon_sym_requires, - [309983] = 19, + [310266] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(13551), 1, + ACTIONS(13939), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(13559), 1, - anon_sym_EQ, - ACTIONS(13587), 1, + ACTIONS(13941), 1, anon_sym_SEMI, - ACTIONS(13589), 1, + ACTIONS(13943), 1, anon_sym_LBRACE, - ACTIONS(13591), 1, + ACTIONS(13945), 1, + anon_sym_LBRACK, + ACTIONS(13947), 1, + anon_sym_EQ, + ACTIONS(13951), 1, anon_sym_try, - STATE(784), 1, + STATE(437), 1, sym_compound_statement, - STATE(785), 1, + STATE(438), 1, sym_try_statement, - STATE(4505), 1, + STATE(4564), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(9948), 1, + STATE(9730), 1, sym_gnu_asm_expression, - STATE(9954), 1, + STATE(9731), 1, aux_sym_declaration_repeat1, - ACTIONS(13561), 2, + ACTIONS(13949), 2, anon_sym_asm, anon_sym___asm__, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10081), 2, + STATE(10418), 2, sym_argument_list, sym_initializer_list, - [310044] = 14, + [310327] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10705), 1, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - ACTIONS(13571), 1, - sym_primitive_type, - ACTIONS(13593), 1, + ACTIONS(13953), 1, sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(3683), 1, + ACTIONS(13955), 1, + sym_primitive_type, + STATE(2153), 1, aux_sym_sized_type_specifier_repeat1, - STATE(8089), 1, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(8222), 1, sym_splice_specifier, - STATE(8549), 1, + STATE(8763), 1, sym__scope_resolution, - STATE(4329), 2, + STATE(2226), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(12668), 4, + ACTIONS(12801), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [310095] = 10, + [310378] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(13595), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6469), 1, + anon_sym_COLON_COLON, + ACTIONS(13957), 1, sym_identifier, - ACTIONS(13597), 1, - anon_sym_RPAREN, - ACTIONS(13599), 1, - anon_sym_LPAREN2, - ACTIONS(13601), 1, - anon_sym_defined, - ACTIONS(13607), 1, - sym_number_literal, - ACTIONS(13603), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(13605), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(13609), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(7981), 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, - [310138] = 15, + ACTIONS(13959), 1, + sym_primitive_type, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(3824), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8222), 1, + sym_splice_specifier, + STATE(8756), 1, + sym__scope_resolution, + STATE(4741), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [310429] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - ACTIONS(13503), 1, - anon_sym_LBRACE, - STATE(2976), 1, - sym_compound_statement, - STATE(8127), 1, - sym_parameter_list, - STATE(10161), 1, - sym_lambda_declarator, - STATE(10515), 1, - sym_trailing_return_type, - STATE(8139), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13477), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [310191] = 14, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11105), 1, + anon_sym_COLON_COLON, + ACTIONS(13905), 1, + sym_identifier, + ACTIONS(13907), 1, + sym_primitive_type, + STATE(2852), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(8222), 1, + sym_splice_specifier, + STATE(8738), 1, + sym__scope_resolution, + STATE(3192), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [310480] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10590), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(13611), 1, + ACTIONS(13961), 1, sym_identifier, - ACTIONS(13613), 1, + ACTIONS(13963), 1, sym_primitive_type, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7459), 1, + STATE(3488), 1, aux_sym_sized_type_specifier_repeat1, - STATE(8089), 1, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(8222), 1, sym_splice_specifier, - STATE(8564), 1, + STATE(8675), 1, sym__scope_resolution, - STATE(3054), 2, + STATE(3953), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(10592), 4, + ACTIONS(4310), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [310242] = 15, + [310531] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(11627), 1, - sym_identifier, - ACTIONS(11629), 1, + ACTIONS(10382), 1, + anon_sym_requires, + ACTIONS(10592), 1, + anon_sym_DASH_GT, + STATE(7999), 1, + sym_trailing_return_type, + ACTIONS(7789), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8160), 2, + anon_sym_final, + anon_sym_override, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8313), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 10, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(11631), 1, - anon_sym_STAR, - ACTIONS(11633), 1, - anon_sym_AMP_AMP, - ACTIONS(11635), 1, - anon_sym_AMP, - ACTIONS(13615), 1, anon_sym_SEMI, - STATE(7873), 1, - sym__field_declarator, - STATE(8661), 1, - sym_operator_name, - STATE(11372), 1, - sym_ms_based_modifier, - STATE(11409), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(8721), 7, - 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, - [310295] = 14, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [310572] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10705), 1, + ACTIONS(11010), 1, anon_sym_COLON_COLON, - ACTIONS(13571), 1, + ACTIONS(13965), 1, + sym_identifier, + ACTIONS(13967), 1, sym_primitive_type, - ACTIONS(13593), 1, + STATE(2180), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(8222), 1, + sym_splice_specifier, + STATE(8682), 1, + sym__scope_resolution, + STATE(2827), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(3728), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [310623] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11059), 1, + anon_sym_COLON_COLON, + ACTIONS(13969), 1, sym_identifier, - STATE(3378), 1, + ACTIONS(13971), 1, + sym_primitive_type, + STATE(3490), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8549), 1, + STATE(8676), 1, sym__scope_resolution, - STATE(4329), 2, + STATE(4445), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(3542), 4, + ACTIONS(4395), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [310346] = 15, + [310674] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13479), 1, + ACTIONS(13843), 1, anon_sym_DASH_GT, - ACTIONS(13505), 1, + ACTIONS(13855), 1, anon_sym_LBRACE, - STATE(5130), 1, + STATE(6681), 1, sym_compound_statement, - STATE(8127), 1, + STATE(8263), 1, sym_parameter_list, - STATE(10365), 1, + STATE(10375), 1, sym_lambda_declarator, - STATE(10515), 1, + STATE(10827), 1, sym_trailing_return_type, - STATE(8139), 2, + STATE(8271), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, + STATE(8462), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, + STATE(9219), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13477), 4, + ACTIONS(13841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [310399] = 15, + [310727] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13479), 1, + ACTIONS(13843), 1, anon_sym_DASH_GT, - ACTIONS(13495), 1, + ACTIONS(13849), 1, anon_sym_LBRACE, - STATE(4838), 1, + STATE(5548), 1, sym_compound_statement, - STATE(8127), 1, + STATE(8263), 1, sym_parameter_list, - STATE(10453), 1, + STATE(10322), 1, sym_lambda_declarator, - STATE(10515), 1, + STATE(10827), 1, sym_trailing_return_type, - STATE(8139), 2, + STATE(8271), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, + STATE(8462), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, + STATE(9219), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13477), 4, + ACTIONS(13841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [310452] = 16, + [310780] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(13617), 1, - anon_sym_COMMA, - ACTIONS(13619), 1, - anon_sym_RPAREN, - ACTIONS(13625), 1, - anon_sym_SLASH, - ACTIONS(13627), 1, - anon_sym_PIPE_PIPE, - ACTIONS(13629), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(11985), 1, + sym_identifier, + ACTIONS(11987), 1, + anon_sym_LPAREN2, + ACTIONS(11989), 1, + anon_sym_STAR, + ACTIONS(11991), 1, anon_sym_AMP_AMP, - ACTIONS(13631), 1, - anon_sym_PIPE, - ACTIONS(13633), 1, - anon_sym_CARET, - ACTIONS(13635), 1, + ACTIONS(11993), 1, anon_sym_AMP, - STATE(9558), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(13621), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(13623), 2, + ACTIONS(13973), 1, + anon_sym_SEMI, + STATE(7988), 1, + sym__field_declarator, + STATE(8807), 1, + sym_operator_name, + STATE(10680), 1, + sym_attribute_specifier, + STATE(10687), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(8839), 7, + 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, + [310833] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(11985), 1, + sym_identifier, + ACTIONS(11987), 1, + anon_sym_LPAREN2, + ACTIONS(11989), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(13637), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(13639), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13641), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(13643), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [310507] = 14, + ACTIONS(11991), 1, + anon_sym_AMP_AMP, + ACTIONS(11993), 1, + anon_sym_AMP, + ACTIONS(13975), 1, + anon_sym_SEMI, + STATE(7997), 1, + sym__field_declarator, + STATE(8807), 1, + sym_operator_name, + STATE(10687), 1, + sym_ms_based_modifier, + STATE(10876), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(8839), 7, + 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, + [310886] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10711), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(13645), 1, + ACTIONS(13977), 1, sym_identifier, - ACTIONS(13647), 1, + ACTIONS(13979), 1, sym_primitive_type, - STATE(2336), 1, + STATE(2283), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8588), 1, + STATE(8687), 1, sym__scope_resolution, - STATE(3120), 2, + STATE(2946), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(12385), 4, + ACTIONS(4423), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [310558] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13649), 2, - anon_sym_final, - anon_sym_override, - STATE(7983), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(8755), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8757), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [310591] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(13551), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(13559), 1, - anon_sym_EQ, - ACTIONS(13652), 1, - anon_sym_SEMI, - ACTIONS(13654), 1, - anon_sym_LBRACE, - ACTIONS(13656), 1, - anon_sym_try, - STATE(899), 1, - sym_compound_statement, - STATE(900), 1, - sym_try_statement, - STATE(4505), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(9826), 1, - sym_gnu_asm_expression, - STATE(9827), 1, - aux_sym_declaration_repeat1, - ACTIONS(13561), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10081), 2, - sym_argument_list, - sym_initializer_list, - [310652] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - ACTIONS(13507), 1, - anon_sym_LBRACE, - STATE(7898), 1, - sym_compound_statement, - STATE(8127), 1, - sym_parameter_list, - STATE(10449), 1, - sym_lambda_declarator, - STATE(10515), 1, - sym_trailing_return_type, - STATE(8139), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13477), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [310705] = 14, + [310937] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10711), 1, + ACTIONS(13172), 1, anon_sym_COLON_COLON, - ACTIONS(13645), 1, + ACTIONS(13981), 1, sym_identifier, - ACTIONS(13647), 1, + ACTIONS(13983), 1, sym_primitive_type, - STATE(2240), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(7700), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8222), 1, sym_splice_specifier, - STATE(8588), 1, + STATE(8695), 1, sym__scope_resolution, - STATE(3120), 2, + STATE(4741), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(3451), 4, + ACTIONS(13174), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [310756] = 3, + [310988] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8637), 3, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(117), 1, anon_sym___asm, - ACTIONS(8639), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(2312), 1, + anon_sym_LBRACE, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13937), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13939), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(13945), 1, + anon_sym_LBRACK, + ACTIONS(13947), 1, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + ACTIONS(13985), 1, + anon_sym_SEMI, + ACTIONS(13987), 1, anon_sym_try, - anon_sym_requires, - [310785] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - STATE(5123), 1, + STATE(1007), 1, sym_compound_statement, - STATE(8127), 1, + STATE(1008), 1, + sym_try_statement, + STATE(4564), 1, sym_parameter_list, - STATE(10234), 1, - sym_lambda_declarator, - STATE(10515), 1, - sym_trailing_return_type, - STATE(8139), 2, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(9692), 1, + sym_gnu_asm_expression, + STATE(9729), 1, + aux_sym_declaration_repeat1, + ACTIONS(13949), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13477), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [310838] = 3, + STATE(10418), 2, + sym_argument_list, + sym_initializer_list, + [311049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8641), 3, + ACTIONS(8889), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8643), 18, + ACTIONS(8891), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -688222,471 +709628,731 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [310867] = 14, + [311078] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10719), 1, + ACTIONS(11010), 1, anon_sym_COLON_COLON, - ACTIONS(13565), 1, + ACTIONS(13965), 1, sym_identifier, - ACTIONS(13567), 1, + ACTIONS(13967), 1, sym_primitive_type, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(3697), 1, + STATE(2360), 1, aux_sym_sized_type_specifier_repeat1, - STATE(8089), 1, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(8222), 1, sym_splice_specifier, - STATE(8571), 1, + STATE(8682), 1, sym__scope_resolution, - STATE(3843), 2, + STATE(2827), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(12405), 4, + ACTIONS(13036), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [310918] = 19, + [311129] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(11985), 1, + sym_identifier, + ACTIONS(11987), 1, + anon_sym_LPAREN2, + ACTIONS(11989), 1, + anon_sym_STAR, + ACTIONS(11991), 1, + anon_sym_AMP_AMP, + ACTIONS(11993), 1, + anon_sym_AMP, + ACTIONS(13989), 1, + anon_sym_SEMI, + STATE(7995), 1, + sym__field_declarator, + STATE(8807), 1, + sym_operator_name, + STATE(10687), 1, + sym_ms_based_modifier, + STATE(11363), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(8839), 7, + 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, + [311182] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13473), 1, - anon_sym_try, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(13551), 1, + ACTIONS(13939), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(13559), 1, + ACTIONS(13947), 1, anon_sym_EQ, - ACTIONS(13658), 1, + ACTIONS(13991), 1, anon_sym_SEMI, - ACTIONS(13660), 1, + ACTIONS(13993), 1, anon_sym_LBRACE, - STATE(3240), 1, + ACTIONS(13995), 1, + anon_sym_try, + STATE(813), 1, sym_compound_statement, - STATE(3241), 1, + STATE(835), 1, sym_try_statement, - STATE(4505), 1, + STATE(4564), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(9621), 1, + STATE(9724), 1, sym_gnu_asm_expression, - STATE(9622), 1, + STATE(9726), 1, aux_sym_declaration_repeat1, - ACTIONS(13561), 2, + ACTIONS(13949), 2, anon_sym_asm, anon_sym___asm__, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10081), 2, + STATE(10418), 2, sym_argument_list, sym_initializer_list, - [310979] = 15, + [311243] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13479), 1, + ACTIONS(13843), 1, anon_sym_DASH_GT, - ACTIONS(13509), 1, + ACTIONS(13869), 1, anon_sym_LBRACE, - STATE(8127), 1, - sym_parameter_list, - STATE(8248), 1, + STATE(5170), 1, sym_compound_statement, - STATE(10278), 1, + STATE(8263), 1, + sym_parameter_list, + STATE(10531), 1, sym_lambda_declarator, - STATE(10515), 1, + STATE(10827), 1, sym_trailing_return_type, - STATE(8139), 2, + STATE(8271), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, + STATE(8462), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, + STATE(9219), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13477), 4, + ACTIONS(13841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [311032] = 14, + [311296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8897), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8899), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [311325] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10719), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(13565), 1, + ACTIONS(13977), 1, sym_identifier, - ACTIONS(13567), 1, + ACTIONS(13979), 1, sym_primitive_type, - STATE(3403), 1, + STATE(2377), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8571), 1, + STATE(8687), 1, sym__scope_resolution, - STATE(3843), 2, + STATE(2946), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(3393), 4, + ACTIONS(12793), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [311083] = 14, + [311376] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13997), 2, + anon_sym_final, + anon_sym_override, + STATE(8104), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9143), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9145), 14, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [311409] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10727), 1, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - ACTIONS(13662), 1, + ACTIONS(14000), 1, sym_identifier, - ACTIONS(13664), 1, + ACTIONS(14002), 1, sym_primitive_type, - STATE(2269), 1, + STATE(2210), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8604), 1, + STATE(8763), 1, sym__scope_resolution, - STATE(2806), 2, + STATE(2226), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(12421), 4, + ACTIONS(12895), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [311134] = 14, + [311460] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10727), 1, + ACTIONS(11059), 1, anon_sym_COLON_COLON, - ACTIONS(13662), 1, + ACTIONS(13969), 1, sym_identifier, - ACTIONS(13664), 1, + ACTIONS(13971), 1, sym_primitive_type, - STATE(2169), 1, + STATE(3770), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8604), 1, + STATE(8676), 1, sym__scope_resolution, - STATE(2806), 2, + STATE(4445), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(3239), 4, + ACTIONS(12986), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [311185] = 14, + [311511] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10621), 1, - anon_sym_COLON_COLON, - ACTIONS(13666), 1, + ACTIONS(14004), 1, sym_identifier, - ACTIONS(13668), 1, - sym_primitive_type, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(6310), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(8089), 1, - sym_splice_specifier, - STATE(8612), 1, - sym__scope_resolution, - STATE(7507), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - ACTIONS(10623), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [311236] = 3, + ACTIONS(14006), 1, + anon_sym_RPAREN, + ACTIONS(14008), 1, + anon_sym_LPAREN2, + ACTIONS(14010), 1, + anon_sym_defined, + ACTIONS(14016), 1, + sym_number_literal, + ACTIONS(14012), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(14014), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14018), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8078), 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, + [311554] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8579), 3, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(117), 1, anon_sym___asm, - ACTIONS(8581), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13833), 1, + anon_sym_try, + ACTIONS(13937), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13939), 1, anon_sym_LPAREN2, + ACTIONS(13945), 1, + anon_sym_LBRACK, + ACTIONS(13947), 1, + anon_sym_EQ, + ACTIONS(14020), 1, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(14022), 1, anon_sym_LBRACE, - anon_sym_EQ, + STATE(2855), 1, + sym_compound_statement, + STATE(2874), 1, + sym_try_statement, + STATE(4564), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(10066), 1, + sym_gnu_asm_expression, + STATE(10067), 1, + aux_sym_declaration_repeat1, + ACTIONS(13949), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [311265] = 14, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10418), 2, + sym_argument_list, + sym_initializer_list, + [311615] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10735), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(13541), 1, + ACTIONS(14024), 1, sym_identifier, - ACTIONS(13543), 1, + ACTIONS(14026), 1, sym_primitive_type, - STATE(2162), 1, + STATE(2449), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8624), 1, + STATE(8686), 1, sym__scope_resolution, - STATE(2818), 2, + STATE(3211), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(3508), 4, + ACTIONS(13050), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [311316] = 14, + [311666] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4780), 1, - anon_sym_COLON_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13670), 1, - sym_identifier, - ACTIONS(13672), 1, + ACTIONS(11048), 1, + anon_sym_COLON_COLON, + ACTIONS(13971), 1, sym_primitive_type, - STATE(3682), 1, + ACTIONS(14028), 1, + sym_identifier, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4270), 1, + STATE(6642), 1, aux_sym_sized_type_specifier_repeat1, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8584), 1, + STATE(8745), 1, sym__scope_resolution, - STATE(5928), 2, + STATE(4445), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(4782), 4, + ACTIONS(3200), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [311367] = 14, + [311717] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10686), 1, + ACTIONS(11111), 1, anon_sym_COLON_COLON, - ACTIONS(13541), 1, + ACTIONS(13961), 1, sym_identifier, - ACTIONS(13543), 1, + ACTIONS(13963), 1, sym_primitive_type, - STATE(1988), 1, + STATE(2941), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8593), 1, + STATE(8707), 1, sym__scope_resolution, - STATE(2093), 2, + STATE(3953), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(3269), 4, + ACTIONS(3867), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [311418] = 14, + [311768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(8979), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8981), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [311797] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10651), 1, + ACTIONS(10988), 1, anon_sym_COLON_COLON, - ACTIONS(13583), 1, - sym_primitive_type, - ACTIONS(13674), 1, + ACTIONS(14030), 1, sym_identifier, - STATE(3123), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3682), 1, + ACTIONS(14032), 1, + sym_primitive_type, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(6426), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8222), 1, sym_splice_specifier, - STATE(8621), 1, + STATE(8700), 1, sym__scope_resolution, - STATE(3054), 2, + STATE(7626), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(12435), 4, + ACTIONS(10990), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [311469] = 10, + [311848] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13595), 1, + ACTIONS(8160), 2, + anon_sym_final, + anon_sym_override, + STATE(8104), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9139), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9141), 14, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [311881] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + ACTIONS(13885), 1, + anon_sym_LBRACE, + STATE(8263), 1, + sym_parameter_list, + STATE(8369), 1, + sym_compound_statement, + STATE(10272), 1, + sym_lambda_declarator, + STATE(10827), 1, + sym_trailing_return_type, + STATE(8271), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8462), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9219), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [311934] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8938), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8940), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [311963] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + ACTIONS(13875), 1, + anon_sym_LBRACE, + STATE(8058), 1, + sym_compound_statement, + STATE(8263), 1, + sym_parameter_list, + STATE(10245), 1, + sym_lambda_declarator, + STATE(10827), 1, + sym_trailing_return_type, + STATE(8271), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8462), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9219), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [312016] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14004), 1, sym_identifier, - ACTIONS(13599), 1, + ACTIONS(14008), 1, anon_sym_LPAREN2, - ACTIONS(13601), 1, + ACTIONS(14010), 1, anon_sym_defined, - ACTIONS(13676), 1, + ACTIONS(14034), 1, anon_sym_RPAREN, - ACTIONS(13678), 1, + ACTIONS(14036), 1, sym_number_literal, - ACTIONS(13603), 2, + ACTIONS(14012), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13605), 2, + ACTIONS(14014), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13609), 5, + ACTIONS(14018), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8029), 7, + STATE(8145), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -688694,296 +710360,252 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [311512] = 14, + [312059] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5140), 1, + anon_sym_COLON_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10678), 1, - anon_sym_COLON_COLON, - ACTIONS(13680), 1, + ACTIONS(14038), 1, sym_identifier, - ACTIONS(13682), 1, + ACTIONS(14040), 1, sym_primitive_type, - STATE(2250), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(4387), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8222), 1, sym_splice_specifier, - STATE(8639), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(2768), 2, + STATE(6060), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(12469), 4, + ACTIONS(5142), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [311563] = 14, + [312110] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(6101), 1, + ACTIONS(11097), 1, anon_sym_COLON_COLON, - ACTIONS(13545), 1, + ACTIONS(14000), 1, sym_identifier, - ACTIONS(13547), 1, + ACTIONS(14002), 1, sym_primitive_type, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(3709), 1, + STATE(2263), 1, aux_sym_sized_type_specifier_repeat1, - STATE(8089), 1, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(8222), 1, sym_splice_specifier, - STATE(8579), 1, + STATE(8702), 1, sym__scope_resolution, - STATE(4593), 2, + STATE(2913), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(59), 4, + ACTIONS(3833), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [311614] = 9, + [312161] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(10022), 1, - anon_sym_requires, - ACTIONS(10264), 1, - anon_sym_DASH_GT, - STATE(7917), 1, - sym_trailing_return_type, - ACTIONS(7546), 2, - anon_sym_LBRACK, + ACTIONS(117), 1, anon_sym___asm, - ACTIONS(7821), 2, - anon_sym_final, - anon_sym_override, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8170), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 10, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(13807), 1, anon_sym_try, - [311655] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10022), 1, - anon_sym_requires, - ACTIONS(10264), 1, - anon_sym_DASH_GT, - STATE(7938), 1, - sym_trailing_return_type, - ACTIONS(7629), 2, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(7821), 2, - anon_sym_final, - anon_sym_override, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8195), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7627), 10, + ACTIONS(13937), 1, anon_sym_COMMA, + ACTIONS(13939), 1, anon_sym_LPAREN2, + ACTIONS(13945), 1, + anon_sym_LBRACK, + ACTIONS(13947), 1, + anon_sym_EQ, + ACTIONS(14042), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(14044), 1, anon_sym_LBRACE, - anon_sym_EQ, + STATE(3431), 1, + sym_compound_statement, + STATE(3432), 1, + sym_try_statement, + STATE(4564), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(9889), 1, + sym_gnu_asm_expression, + STATE(9890), 1, + aux_sym_declaration_repeat1, + ACTIONS(13949), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_try, - [311696] = 9, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10418), 2, + sym_argument_list, + sym_initializer_list, + [312222] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(10022), 1, - anon_sym_requires, - ACTIONS(10264), 1, - anon_sym_DASH_GT, - STATE(7944), 1, - sym_trailing_return_type, - ACTIONS(7821), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8087), 2, - anon_sym_LBRACK, - anon_sym___asm, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8239), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8089), 10, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [311737] = 15, + ACTIONS(2300), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(13557), 1, + anon_sym_TILDE, + ACTIONS(13563), 1, + anon_sym_operator, + ACTIONS(14046), 1, + sym_identifier, + ACTIONS(14048), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14051), 1, + anon_sym_COLON_COLON, + ACTIONS(14053), 1, + anon_sym_template, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(5044), 1, + sym_splice_specifier, + STATE(5307), 1, + sym_splice_expression, + STATE(5308), 1, + sym_operator_name, + STATE(8388), 1, + sym__scope_resolution, + STATE(5675), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + STATE(10768), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + [312277] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13475), 1, - anon_sym_LBRACE, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - STATE(6353), 1, - sym_compound_statement, - STATE(8127), 1, - sym_parameter_list, - STATE(10390), 1, - sym_lambda_declarator, - STATE(10515), 1, - sym_trailing_return_type, - STATE(8139), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13477), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [311790] = 9, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(14000), 1, + sym_identifier, + ACTIONS(14002), 1, + sym_primitive_type, + STATE(2093), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(8222), 1, + sym_splice_specifier, + STATE(8763), 1, + sym__scope_resolution, + STATE(2226), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(3974), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [312328] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10022), 1, - anon_sym_requires, - ACTIONS(10264), 1, + ACTIONS(10592), 1, anon_sym_DASH_GT, - STATE(7891), 1, + ACTIONS(12418), 1, + anon_sym_requires, + STATE(8013), 1, sym_trailing_return_type, - ACTIONS(7821), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8541), 2, + ACTIONS(7789), 2, anon_sym_LBRACK, anon_sym___asm, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8208), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8543), 10, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [311831] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7821), 2, + ACTIONS(12415), 2, anon_sym_final, anon_sym_override, - STATE(7983), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - ACTIONS(8774), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8776), 14, + STATE(8313), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 10, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [311864] = 9, + [312369] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10264), 1, + ACTIONS(10592), 1, anon_sym_DASH_GT, - ACTIONS(12170), 1, + ACTIONS(13161), 1, anon_sym_requires, - STATE(7926), 1, + STATE(8035), 1, sym_trailing_return_type, - ACTIONS(7546), 2, + ACTIONS(7968), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(12167), 2, + ACTIONS(13158), 2, anon_sym_final, anon_sym_override, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8170), 2, + STATE(8358), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 10, + ACTIONS(7966), 10, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -688994,28 +710616,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [311905] = 9, + [312410] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10264), 1, + ACTIONS(10592), 1, anon_sym_DASH_GT, - ACTIONS(12790), 1, + ACTIONS(13254), 1, anon_sym_requires, - STATE(7927), 1, + STATE(8046), 1, sym_trailing_return_type, - ACTIONS(7629), 2, + ACTIONS(8424), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(12787), 2, + ACTIONS(13251), 2, anon_sym_final, anon_sym_override, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8195), 2, + STATE(8297), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7627), 10, + ACTIONS(8422), 10, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -689026,28 +710648,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [311946] = 9, + [312451] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10264), 1, + ACTIONS(10592), 1, anon_sym_DASH_GT, - ACTIONS(12887), 1, + ACTIONS(13882), 1, anon_sym_requires, - STATE(7928), 1, + STATE(8050), 1, sym_trailing_return_type, - ACTIONS(8087), 2, + ACTIONS(8905), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(12884), 2, + ACTIONS(13879), 2, anon_sym_final, anon_sym_override, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8239), 2, + STATE(8363), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8089), 10, + ACTIONS(8907), 10, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -689058,289 +710680,350 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [311987] = 9, + [312492] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(10264), 1, - anon_sym_DASH_GT, - ACTIONS(13514), 1, - anon_sym_requires, - STATE(7931), 1, - sym_trailing_return_type, - ACTIONS(8541), 2, - anon_sym_LBRACK, + ACTIONS(117), 1, anon_sym___asm, - ACTIONS(13511), 2, - anon_sym_final, - anon_sym_override, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8208), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8543), 10, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13819), 1, + anon_sym_try, + ACTIONS(13937), 1, anon_sym_COMMA, + ACTIONS(13939), 1, anon_sym_LPAREN2, + ACTIONS(13945), 1, + anon_sym_LBRACK, + ACTIONS(13947), 1, + anon_sym_EQ, + ACTIONS(14055), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(14057), 1, anon_sym_LBRACE, - anon_sym_EQ, + STATE(3476), 1, + sym_compound_statement, + STATE(3477), 1, + sym_try_statement, + STATE(4564), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(10143), 1, + sym_gnu_asm_expression, + STATE(10144), 1, + aux_sym_declaration_repeat1, + ACTIONS(13949), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_try, - [312028] = 15, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10418), 2, + sym_argument_list, + sym_initializer_list, + [312553] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13479), 1, + ACTIONS(13843), 1, anon_sym_DASH_GT, - ACTIONS(13483), 1, + ACTIONS(13873), 1, anon_sym_LBRACE, - STATE(5514), 1, + STATE(3636), 1, sym_compound_statement, - STATE(8127), 1, + STATE(8263), 1, sym_parameter_list, - STATE(10251), 1, + STATE(10495), 1, sym_lambda_declarator, - STATE(10515), 1, + STATE(10827), 1, sym_trailing_return_type, - STATE(8139), 2, + STATE(8271), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, + STATE(8462), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, + STATE(9219), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13477), 4, + ACTIONS(13841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [312081] = 5, - ACTIONS(13535), 1, - anon_sym_LF, - ACTIONS(13684), 1, - anon_sym_LPAREN2, - ACTIONS(13686), 1, + [312606] = 14, + ACTIONS(3), 1, sym_comment, - STATE(8207), 1, - sym_preproc_argument_list, - ACTIONS(13539), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11073), 1, + anon_sym_COLON_COLON, + ACTIONS(14024), 1, + sym_identifier, + ACTIONS(14026), 1, + sym_primitive_type, + STATE(2356), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(8222), 1, + sym_splice_specifier, + STATE(8686), 1, + sym__scope_resolution, + STATE(3211), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(4058), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [312657] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13909), 1, + anon_sym_COMMA, + ACTIONS(13917), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(13919), 1, anon_sym_PIPE_PIPE, + ACTIONS(13921), 1, anon_sym_AMP_AMP, + ACTIONS(13923), 1, anon_sym_PIPE, + ACTIONS(13925), 1, anon_sym_CARET, + ACTIONS(13927), 1, anon_sym_AMP, + ACTIONS(14059), 1, + anon_sym_RPAREN, + STATE(9875), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(13913), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13915), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13929), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(13931), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(13933), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(13935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [312114] = 15, + [312712] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10382), 1, + anon_sym_requires, + ACTIONS(10592), 1, + anon_sym_DASH_GT, + STATE(8057), 1, + sym_trailing_return_type, + ACTIONS(7968), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8160), 2, + anon_sym_final, + anon_sym_override, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8358), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7966), 10, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [312753] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14061), 1, + anon_sym_LPAREN2, + ACTIONS(9027), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9029), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [312784] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13479), 1, + ACTIONS(13843), 1, anon_sym_DASH_GT, - ACTIONS(13501), 1, - anon_sym_LBRACE, - STATE(5123), 1, + STATE(5058), 1, sym_compound_statement, - STATE(8127), 1, + STATE(8263), 1, sym_parameter_list, - STATE(10223), 1, + STATE(10383), 1, sym_lambda_declarator, - STATE(10515), 1, + STATE(10827), 1, sym_trailing_return_type, - STATE(8139), 2, + STATE(8271), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, + STATE(8462), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, + STATE(9219), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13477), 4, + ACTIONS(13841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [312167] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(1952), 1, - anon_sym_LBRACE, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(13551), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(13559), 1, - anon_sym_EQ, - ACTIONS(13688), 1, - anon_sym_SEMI, - ACTIONS(13690), 1, - anon_sym_try, - STATE(745), 1, - sym_compound_statement, - STATE(746), 1, - sym_try_statement, - STATE(4505), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(9732), 1, - sym_gnu_asm_expression, - STATE(9734), 1, - aux_sym_declaration_repeat1, - ACTIONS(13561), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10081), 2, - sym_argument_list, - sym_initializer_list, - [312228] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(13551), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(13559), 1, - anon_sym_EQ, - ACTIONS(13692), 1, - anon_sym_SEMI, - ACTIONS(13694), 1, - anon_sym_LBRACE, - ACTIONS(13696), 1, - anon_sym_try, - STATE(413), 1, - sym_compound_statement, - STATE(414), 1, - sym_try_statement, - STATE(4505), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(9905), 1, - sym_gnu_asm_expression, - STATE(9907), 1, - aux_sym_declaration_repeat1, - ACTIONS(13561), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10081), 2, - sym_argument_list, - sym_initializer_list, - [312289] = 14, + [312837] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10743), 1, + ACTIONS(11097), 1, anon_sym_COLON_COLON, - ACTIONS(13565), 1, + ACTIONS(14000), 1, sym_identifier, - ACTIONS(13567), 1, + ACTIONS(14002), 1, sym_primitive_type, - STATE(2838), 1, + STATE(2385), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8631), 1, + STATE(8702), 1, sym__scope_resolution, - STATE(3843), 2, + STATE(2913), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(3337), 4, + ACTIONS(12837), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [312340] = 10, + [312888] = 5, + ACTIONS(13899), 1, + anon_sym_LF, + ACTIONS(14063), 1, + anon_sym_LPAREN2, + ACTIONS(14065), 1, + sym_comment, + STATE(8277), 1, + sym_preproc_argument_list, + ACTIONS(13903), 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, + [312921] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(13595), 1, + ACTIONS(14004), 1, sym_identifier, - ACTIONS(13599), 1, + ACTIONS(14008), 1, anon_sym_LPAREN2, - ACTIONS(13601), 1, + ACTIONS(14010), 1, anon_sym_defined, - ACTIONS(13698), 1, + ACTIONS(14067), 1, anon_sym_RPAREN, - ACTIONS(13700), 1, + ACTIONS(14069), 1, sym_number_literal, - ACTIONS(13603), 2, + ACTIONS(14012), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13605), 2, + ACTIONS(14014), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13609), 5, + ACTIONS(14018), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8027), 7, + STATE(8131), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -689348,40 +711031,14 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [312383] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8551), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8553), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [312412] = 3, + [312964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8555), 3, + ACTIONS(9007), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8557), 18, + ACTIONS(9009), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -689400,408 +711057,481 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [312441] = 14, + [312993] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(12808), 1, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - ACTIONS(13702), 1, + ACTIONS(13953), 1, sym_identifier, - ACTIONS(13704), 1, + ACTIONS(13955), 1, sym_primitive_type, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7573), 1, + STATE(2076), 1, aux_sym_sized_type_specifier_repeat1, - STATE(8089), 1, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(8222), 1, sym_splice_specifier, - STATE(8606), 1, + STATE(8763), 1, sym__scope_resolution, - STATE(4593), 2, + STATE(2226), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(12810), 4, + ACTIONS(3803), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [312492] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(11627), 1, - sym_identifier, - ACTIONS(11629), 1, - anon_sym_LPAREN2, - ACTIONS(11631), 1, - anon_sym_STAR, - ACTIONS(11633), 1, - anon_sym_AMP_AMP, - ACTIONS(11635), 1, - anon_sym_AMP, - ACTIONS(13706), 1, - anon_sym_SEMI, - STATE(7877), 1, - sym__field_declarator, - STATE(8661), 1, - sym_operator_name, - STATE(10968), 1, - sym_attribute_specifier, - STATE(11372), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(8721), 7, - 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, - [312545] = 15, + [313044] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13479), 1, + ACTIONS(13843), 1, anon_sym_DASH_GT, - ACTIONS(13527), 1, + ACTIONS(13853), 1, anon_sym_LBRACE, - STATE(3498), 1, + STATE(2957), 1, sym_compound_statement, - STATE(8127), 1, + STATE(8263), 1, sym_parameter_list, - STATE(10322), 1, + STATE(10415), 1, sym_lambda_declarator, - STATE(10515), 1, + STATE(10827), 1, sym_trailing_return_type, - STATE(8139), 2, + STATE(8271), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8343), 2, + STATE(8462), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9051), 3, + STATE(9219), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13477), 4, + ACTIONS(13841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [312598] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13617), 1, - anon_sym_COMMA, - ACTIONS(13625), 1, - anon_sym_SLASH, - ACTIONS(13627), 1, - anon_sym_PIPE_PIPE, - ACTIONS(13629), 1, - anon_sym_AMP_AMP, - ACTIONS(13631), 1, - anon_sym_PIPE, - ACTIONS(13633), 1, - anon_sym_CARET, - ACTIONS(13635), 1, - anon_sym_AMP, - ACTIONS(13708), 1, - anon_sym_RPAREN, - STATE(9984), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(13621), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(13623), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(13637), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(13639), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13641), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(13643), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [312653] = 16, + [313097] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(13241), 1, - anon_sym_TILDE, - ACTIONS(13247), 1, - anon_sym_operator, - ACTIONS(13710), 1, - sym_identifier, - ACTIONS(13712), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13715), 1, - anon_sym_COLON_COLON, - ACTIONS(13717), 1, + ACTIONS(5160), 1, anon_sym_template, - STATE(3682), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, + ACTIONS(13961), 1, + sym_identifier, + ACTIONS(13963), 1, + sym_primitive_type, + STATE(3762), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(5071), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(5326), 1, - sym_splice_expression, - STATE(5351), 1, - sym_operator_name, - STATE(8275), 1, + STATE(8675), 1, sym__scope_resolution, - STATE(5570), 4, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - sym_qualified_field_identifier, - STATE(10976), 4, + STATE(3953), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(12757), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, - [312708] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13617), 1, - anon_sym_COMMA, - ACTIONS(13625), 1, - anon_sym_SLASH, - ACTIONS(13627), 1, - anon_sym_PIPE_PIPE, - ACTIONS(13629), 1, - anon_sym_AMP_AMP, - ACTIONS(13631), 1, - anon_sym_PIPE, - ACTIONS(13633), 1, - anon_sym_CARET, - ACTIONS(13635), 1, - anon_sym_AMP, - ACTIONS(13719), 1, - anon_sym_RPAREN, - STATE(9646), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(13621), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(13623), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(13637), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(13639), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13641), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(13643), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [312763] = 14, + sym_splice_expression, + [313148] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10686), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(13577), 1, - sym_identifier, - ACTIONS(13579), 1, + ACTIONS(13907), 1, sym_primitive_type, - STATE(1965), 1, + ACTIONS(14071), 1, + sym_identifier, + STATE(2852), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8593), 1, + STATE(8711), 1, sym__scope_resolution, - STATE(2093), 2, + STATE(3192), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(3169), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [312814] = 14, + [313199] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10651), 1, + ACTIONS(11111), 1, anon_sym_COLON_COLON, - ACTIONS(13583), 1, - sym_primitive_type, - ACTIONS(13674), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(2634), 1, + ACTIONS(13963), 1, + sym_primitive_type, + STATE(3375), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8621), 1, + STATE(8707), 1, sym__scope_resolution, - STATE(3054), 2, + STATE(3953), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(1882), 4, + ACTIONS(12873), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [312865] = 14, + [313250] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10678), 1, + ACTIONS(11020), 1, anon_sym_COLON_COLON, - ACTIONS(13680), 1, + ACTIONS(14073), 1, sym_identifier, - ACTIONS(13682), 1, + ACTIONS(14075), 1, sym_primitive_type, - STATE(2119), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(7606), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8222), 1, sym_splice_specifier, - STATE(8639), 1, + STATE(8691), 1, sym__scope_resolution, - STATE(2768), 2, + STATE(3192), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(3193), 4, + ACTIONS(11022), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [312916] = 14, + [313301] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13909), 1, + anon_sym_COMMA, + ACTIONS(13917), 1, + anon_sym_SLASH, + ACTIONS(13919), 1, + anon_sym_PIPE_PIPE, + ACTIONS(13921), 1, + anon_sym_AMP_AMP, + ACTIONS(13923), 1, + anon_sym_PIPE, + ACTIONS(13925), 1, + anon_sym_CARET, + ACTIONS(13927), 1, + anon_sym_AMP, + ACTIONS(14077), 1, + anon_sym_RPAREN, + STATE(9850), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(13913), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13915), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13929), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(13931), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13933), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(13935), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [313356] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13937), 1, + anon_sym_COMMA, + ACTIONS(13939), 1, + anon_sym_LPAREN2, + ACTIONS(13945), 1, + anon_sym_LBRACK, + ACTIONS(13947), 1, + anon_sym_EQ, + ACTIONS(14079), 1, + anon_sym_SEMI, + ACTIONS(14081), 1, + anon_sym_LBRACE, + ACTIONS(14083), 1, + anon_sym_try, + STATE(667), 1, + sym_compound_statement, + STATE(668), 1, + sym_try_statement, + STATE(4564), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(9764), 1, + sym_gnu_asm_expression, + STATE(9765), 1, + aux_sym_declaration_repeat1, + ACTIONS(13949), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10418), 2, + sym_argument_list, + sym_initializer_list, + [313417] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + ACTIONS(13877), 1, + anon_sym_LBRACE, + STATE(5224), 1, + sym_compound_statement, + STATE(8263), 1, + sym_parameter_list, + STATE(10249), 1, + sym_lambda_declarator, + STATE(10827), 1, + sym_trailing_return_type, + STATE(8271), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8462), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9219), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [313470] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13839), 1, + anon_sym_LBRACE, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + STATE(5058), 1, + sym_compound_statement, + STATE(8263), 1, + sym_parameter_list, + STATE(10427), 1, + sym_lambda_declarator, + STATE(10827), 1, + sym_trailing_return_type, + STATE(8271), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8462), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9219), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [313523] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11805), 1, + anon_sym_STAR, + ACTIONS(11807), 1, + anon_sym_AMP_AMP, + ACTIONS(11809), 1, + anon_sym_AMP, + STATE(4672), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8852), 1, + sym__abstract_declarator, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9427), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [313568] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10686), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(13541), 1, + ACTIONS(13957), 1, sym_identifier, - ACTIONS(13543), 1, + ACTIONS(13959), 1, sym_primitive_type, - STATE(2113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(3824), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8222), 1, sym_splice_specifier, - STATE(8593), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(2093), 2, + STATE(4741), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(12485), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [312967] = 9, + [313619] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13721), 1, + ACTIONS(14085), 1, sym_identifier, - ACTIONS(13723), 1, + ACTIONS(14087), 1, anon_sym_LPAREN2, - ACTIONS(13725), 1, + ACTIONS(14089), 1, anon_sym_defined, - ACTIONS(13731), 1, + ACTIONS(14095), 1, sym_number_literal, - ACTIONS(13727), 2, + ACTIONS(14091), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13729), 2, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13733), 5, + ACTIONS(14097), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8228), 7, + STATE(8324), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -689809,30 +711539,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [313007] = 9, + [313659] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13595), 1, + ACTIONS(14085), 1, sym_identifier, - ACTIONS(13599), 1, + ACTIONS(14087), 1, anon_sym_LPAREN2, - ACTIONS(13601), 1, + ACTIONS(14089), 1, anon_sym_defined, - ACTIONS(13735), 1, + ACTIONS(14099), 1, sym_number_literal, - ACTIONS(13603), 2, + ACTIONS(14091), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13605), 2, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13609), 5, + ACTIONS(14097), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8138), 7, + STATE(8315), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -689840,30 +711570,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [313047] = 9, + [313699] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13595), 1, + ACTIONS(14085), 1, sym_identifier, - ACTIONS(13599), 1, + ACTIONS(14087), 1, anon_sym_LPAREN2, - ACTIONS(13601), 1, + ACTIONS(14089), 1, anon_sym_defined, - ACTIONS(13737), 1, + ACTIONS(14101), 1, sym_number_literal, - ACTIONS(13603), 2, + ACTIONS(14091), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13605), 2, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13609), 5, + ACTIONS(14097), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8117), 7, + STATE(8288), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -689871,102 +711601,91 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [313087] = 14, + [313739] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(11496), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11498), 1, + ACTIONS(11896), 1, anon_sym_STAR, - ACTIONS(11500), 1, + ACTIONS(11898), 1, anon_sym_AMP_AMP, - ACTIONS(11502), 1, + ACTIONS(11900), 1, anon_sym_AMP, - ACTIONS(11508), 1, + ACTIONS(11904), 1, sym_primitive_type, - STATE(3117), 1, + STATE(3180), 1, sym_pointer_type_declarator, - STATE(8800), 1, + STATE(8941), 1, sym__type_declarator, - STATE(9241), 1, + STATE(9405), 1, sym__type_definition_declarators, - STATE(10974), 1, + STATE(11156), 1, sym_ms_based_modifier, - ACTIONS(11506), 4, + ACTIONS(11902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, + STATE(3152), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [313137] = 14, + [313789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, - anon_sym_LPAREN2, - ACTIONS(11498), 1, + ACTIONS(14105), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14103), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(11500), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11502), 1, - anon_sym_AMP, - ACTIONS(11508), 1, - sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(8800), 1, - sym__type_declarator, - STATE(9221), 1, - sym__type_definition_declarators, - STATE(10974), 1, - sym_ms_based_modifier, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [313187] = 9, + 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, + [313817] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13721), 1, + ACTIONS(14085), 1, sym_identifier, - ACTIONS(13723), 1, + ACTIONS(14087), 1, anon_sym_LPAREN2, - ACTIONS(13725), 1, + ACTIONS(14089), 1, anon_sym_defined, - ACTIONS(13739), 1, + ACTIONS(14107), 1, sym_number_literal, - ACTIONS(13727), 2, + ACTIONS(14091), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13729), 2, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13733), 5, + ACTIONS(14097), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8222), 7, + STATE(8321), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -689974,66 +711693,66 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [313227] = 14, + [313857] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(11496), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11498), 1, + ACTIONS(11896), 1, anon_sym_STAR, - ACTIONS(11500), 1, + ACTIONS(11898), 1, anon_sym_AMP_AMP, - ACTIONS(11502), 1, + ACTIONS(11900), 1, anon_sym_AMP, - ACTIONS(11508), 1, + ACTIONS(11904), 1, sym_primitive_type, - STATE(3117), 1, + STATE(3180), 1, sym_pointer_type_declarator, - STATE(8800), 1, + STATE(8941), 1, sym__type_declarator, - STATE(9278), 1, + STATE(9379), 1, sym__type_definition_declarators, - STATE(10974), 1, + STATE(11156), 1, sym_ms_based_modifier, - ACTIONS(11506), 4, + ACTIONS(11902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, + STATE(3152), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [313277] = 9, + [313907] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13721), 1, + ACTIONS(14085), 1, sym_identifier, - ACTIONS(13723), 1, + ACTIONS(14087), 1, anon_sym_LPAREN2, - ACTIONS(13725), 1, + ACTIONS(14089), 1, anon_sym_defined, - ACTIONS(13741), 1, + ACTIONS(14109), 1, sym_number_literal, - ACTIONS(13727), 2, + ACTIONS(14091), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13729), 2, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13733), 5, + ACTIONS(14097), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8223), 7, + STATE(8303), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -690041,30 +711760,59 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [313317] = 9, + [313947] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13917), 1, + anon_sym_SLASH, + ACTIONS(13913), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13915), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13935), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14113), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14111), 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, + [313983] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13721), 1, + ACTIONS(14004), 1, sym_identifier, - ACTIONS(13723), 1, + ACTIONS(14008), 1, anon_sym_LPAREN2, - ACTIONS(13725), 1, + ACTIONS(14010), 1, anon_sym_defined, - ACTIONS(13743), 1, + ACTIONS(14115), 1, sym_number_literal, - ACTIONS(13727), 2, + ACTIONS(14012), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13729), 2, + ACTIONS(14014), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13733), 5, + ACTIONS(14018), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8224), 7, + STATE(8206), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -690072,67 +711820,97 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [313357] = 15, + [314023] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(2078), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13191), 1, + ACTIONS(14085), 1, + sym_identifier, + ACTIONS(14087), 1, + anon_sym_LPAREN2, + ACTIONS(14089), 1, + anon_sym_defined, + ACTIONS(14117), 1, + sym_number_literal, + ACTIONS(14091), 2, + anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13197), 1, - anon_sym_operator, - ACTIONS(13745), 1, + ACTIONS(14093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14097), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8273), 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, + [314063] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(13747), 1, - anon_sym_COLON_COLON, - ACTIONS(13749), 1, - anon_sym_template, - STATE(3608), 1, - sym_splice_specifier, - STATE(3673), 1, - sym_splice_expression, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(3722), 1, - sym_operator_name, - STATE(8289), 1, - sym__scope_resolution, - STATE(3770), 4, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - sym_qualified_field_identifier, - STATE(10976), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - [313409] = 9, + ACTIONS(11894), 1, + anon_sym_LPAREN2, + ACTIONS(11896), 1, + anon_sym_STAR, + ACTIONS(11898), 1, + anon_sym_AMP_AMP, + ACTIONS(11900), 1, + anon_sym_AMP, + ACTIONS(11904), 1, + sym_primitive_type, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(8941), 1, + sym__type_declarator, + STATE(9328), 1, + sym__type_definition_declarators, + STATE(11156), 1, + sym_ms_based_modifier, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [314113] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13721), 1, + ACTIONS(14004), 1, sym_identifier, - ACTIONS(13723), 1, + ACTIONS(14008), 1, anon_sym_LPAREN2, - ACTIONS(13725), 1, + ACTIONS(14010), 1, anon_sym_defined, - ACTIONS(13751), 1, + ACTIONS(14119), 1, sym_number_literal, - ACTIONS(13727), 2, + ACTIONS(14012), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13729), 2, + ACTIONS(14014), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13733), 5, + ACTIONS(14018), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8225), 7, + STATE(8247), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -690140,30 +711918,133 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [313449] = 9, + [314153] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13917), 1, + anon_sym_SLASH, + ACTIONS(13913), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13915), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13931), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13933), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(13935), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14113), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(14111), 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, + [314193] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, + anon_sym_LPAREN2, + ACTIONS(11896), 1, + anon_sym_STAR, + ACTIONS(11898), 1, + anon_sym_AMP_AMP, + ACTIONS(11900), 1, + anon_sym_AMP, + ACTIONS(11904), 1, + sym_primitive_type, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(8941), 1, + sym__type_declarator, + STATE(9276), 1, + sym__type_definition_declarators, + STATE(11156), 1, + sym_ms_based_modifier, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [314243] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, + anon_sym_LPAREN2, + ACTIONS(11896), 1, + anon_sym_STAR, + ACTIONS(11898), 1, + anon_sym_AMP_AMP, + ACTIONS(11900), 1, + anon_sym_AMP, + ACTIONS(11904), 1, + sym_primitive_type, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(8941), 1, + sym__type_declarator, + STATE(9293), 1, + sym__type_definition_declarators, + STATE(11156), 1, + sym_ms_based_modifier, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [314293] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13721), 1, + ACTIONS(14004), 1, sym_identifier, - ACTIONS(13723), 1, + ACTIONS(14008), 1, anon_sym_LPAREN2, - ACTIONS(13725), 1, + ACTIONS(14010), 1, anon_sym_defined, - ACTIONS(13753), 1, + ACTIONS(14121), 1, sym_number_literal, - ACTIONS(13727), 2, + ACTIONS(14012), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13729), 2, + ACTIONS(14014), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13733), 5, + ACTIONS(14018), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8226), 7, + STATE(8212), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -690171,30 +712052,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [313489] = 9, + [314333] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13721), 1, + ACTIONS(14085), 1, sym_identifier, - ACTIONS(13723), 1, + ACTIONS(14087), 1, anon_sym_LPAREN2, - ACTIONS(13725), 1, + ACTIONS(14089), 1, anon_sym_defined, - ACTIONS(13755), 1, + ACTIONS(14123), 1, sym_number_literal, - ACTIONS(13727), 2, + ACTIONS(14091), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13729), 2, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13733), 5, + ACTIONS(14097), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8227), 7, + STATE(8326), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -690202,55 +712083,66 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [313529] = 3, + [314373] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(13759), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13757), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, + anon_sym_LPAREN2, + ACTIONS(11896), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11898), 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, - [313557] = 9, + ACTIONS(11900), 1, + anon_sym_AMP, + ACTIONS(11904), 1, + sym_primitive_type, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(8941), 1, + sym__type_declarator, + STATE(9314), 1, + sym__type_definition_declarators, + STATE(11156), 1, + sym_ms_based_modifier, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [314423] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13595), 1, + ACTIONS(14085), 1, sym_identifier, - ACTIONS(13599), 1, + ACTIONS(14087), 1, anon_sym_LPAREN2, - ACTIONS(13601), 1, + ACTIONS(14089), 1, anon_sym_defined, - ACTIONS(13761), 1, + ACTIONS(14125), 1, sym_number_literal, - ACTIONS(13603), 2, + ACTIONS(14091), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13605), 2, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13609), 5, + ACTIONS(14097), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8066), 7, + STATE(8287), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -690258,30 +712150,66 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [313597] = 9, + [314463] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, + anon_sym_LPAREN2, + ACTIONS(11896), 1, + anon_sym_STAR, + ACTIONS(11898), 1, + anon_sym_AMP_AMP, + ACTIONS(11900), 1, + anon_sym_AMP, + ACTIONS(11904), 1, + sym_primitive_type, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(8941), 1, + sym__type_declarator, + STATE(9348), 1, + sym__type_definition_declarators, + STATE(11156), 1, + sym_ms_based_modifier, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [314513] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13721), 1, + ACTIONS(14004), 1, sym_identifier, - ACTIONS(13723), 1, + ACTIONS(14008), 1, anon_sym_LPAREN2, - ACTIONS(13725), 1, + ACTIONS(14010), 1, anon_sym_defined, - ACTIONS(13763), 1, + ACTIONS(14127), 1, sym_number_literal, - ACTIONS(13727), 2, + ACTIONS(14012), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13729), 2, + ACTIONS(14014), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13733), 5, + ACTIONS(14018), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8215), 7, + STATE(8185), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -690289,30 +712217,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [313637] = 9, + [314553] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13721), 1, + ACTIONS(14085), 1, sym_identifier, - ACTIONS(13723), 1, + ACTIONS(14087), 1, anon_sym_LPAREN2, - ACTIONS(13725), 1, + ACTIONS(14089), 1, anon_sym_defined, - ACTIONS(13765), 1, + ACTIONS(14129), 1, sym_number_literal, - ACTIONS(13727), 2, + ACTIONS(14091), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13729), 2, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13733), 5, + ACTIONS(14097), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8229), 7, + STATE(8348), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -690320,30 +712248,100 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [313677] = 9, + [314593] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(9429), 1, + anon_sym___attribute, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11827), 1, + anon_sym_STAR, + ACTIONS(11829), 1, + anon_sym_AMP_AMP, + ACTIONS(11831), 1, + anon_sym_AMP, + STATE(5310), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8915), 1, + sym__abstract_declarator, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9427), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [314639] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, + anon_sym_LPAREN2, + ACTIONS(11896), 1, + anon_sym_STAR, + ACTIONS(11898), 1, + anon_sym_AMP_AMP, + ACTIONS(11900), 1, + anon_sym_AMP, + ACTIONS(11904), 1, + sym_primitive_type, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(8941), 1, + sym__type_declarator, + STATE(9402), 1, + sym__type_definition_declarators, + STATE(11156), 1, + sym_ms_based_modifier, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [314689] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13721), 1, + ACTIONS(14085), 1, sym_identifier, - ACTIONS(13723), 1, + ACTIONS(14087), 1, anon_sym_LPAREN2, - ACTIONS(13725), 1, + ACTIONS(14089), 1, anon_sym_defined, - ACTIONS(13767), 1, + ACTIONS(14131), 1, sym_number_literal, - ACTIONS(13727), 2, + ACTIONS(14091), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13729), 2, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13733), 5, + ACTIONS(14097), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8231), 7, + STATE(8347), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -690351,30 +712349,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [313717] = 9, + [314729] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13721), 1, + ACTIONS(14004), 1, sym_identifier, - ACTIONS(13723), 1, + ACTIONS(14008), 1, anon_sym_LPAREN2, - ACTIONS(13725), 1, + ACTIONS(14010), 1, anon_sym_defined, - ACTIONS(13769), 1, + ACTIONS(14133), 1, sym_number_literal, - ACTIONS(13727), 2, + ACTIONS(14012), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13729), 2, + ACTIONS(14014), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13733), 5, + ACTIONS(14018), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8217), 7, + STATE(8342), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -690382,30 +712380,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [313757] = 9, + [314769] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13721), 1, + ACTIONS(14004), 1, sym_identifier, - ACTIONS(13723), 1, + ACTIONS(14008), 1, anon_sym_LPAREN2, - ACTIONS(13725), 1, + ACTIONS(14010), 1, anon_sym_defined, - ACTIONS(13771), 1, + ACTIONS(14135), 1, sym_number_literal, - ACTIONS(13727), 2, + ACTIONS(14012), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13729), 2, + ACTIONS(14014), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13733), 5, + ACTIONS(14018), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8232), 7, + STATE(8193), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -690413,153 +712411,131 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [313797] = 3, + [314809] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(13775), 5, + ACTIONS(13917), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(13927), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13773), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(14113), 1, + anon_sym_PIPE, + ACTIONS(13913), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(13915), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(13929), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(13931), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13933), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(13935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [313825] = 9, + ACTIONS(14111), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [314853] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13595), 1, + ACTIONS(14085), 1, sym_identifier, - ACTIONS(13599), 1, + ACTIONS(14087), 1, anon_sym_LPAREN2, - ACTIONS(13601), 1, + ACTIONS(14089), 1, anon_sym_defined, - ACTIONS(13777), 1, + ACTIONS(14137), 1, sym_number_literal, - ACTIONS(13603), 2, + ACTIONS(14091), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13605), 2, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13609), 5, + ACTIONS(14097), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8068), 7, + STATE(8286), 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, - [313865] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11474), 1, - anon_sym_STAR, - ACTIONS(11476), 1, - anon_sym_AMP_AMP, - ACTIONS(11478), 1, - anon_sym_AMP, - STATE(4725), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8749), 1, - sym__abstract_declarator, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9072), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [313909] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(9074), 1, - anon_sym___attribute, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11480), 1, - anon_sym_STAR, - ACTIONS(11482), 1, - anon_sym_AMP_AMP, - ACTIONS(11484), 1, - anon_sym_AMP, - STATE(5221), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8792), 1, - sym__abstract_declarator, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9072), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [313955] = 9, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [314893] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(13595), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3008), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13607), 1, + anon_sym_TILDE, + ACTIONS(13613), 1, + anon_sym_operator, + ACTIONS(14139), 1, sym_identifier, - ACTIONS(13599), 1, + ACTIONS(14141), 1, + anon_sym_COLON_COLON, + ACTIONS(14143), 1, + anon_sym_template, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(5321), 1, + sym_splice_specifier, + STATE(5647), 1, + sym_splice_expression, + STATE(5648), 1, + sym_operator_name, + STATE(8391), 1, + sym__scope_resolution, + STATE(5784), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + STATE(10768), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + [314945] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14085), 1, + sym_identifier, + ACTIONS(14087), 1, anon_sym_LPAREN2, - ACTIONS(13601), 1, + ACTIONS(14089), 1, anon_sym_defined, - ACTIONS(13779), 1, + ACTIONS(14145), 1, sym_number_literal, - ACTIONS(13603), 2, + ACTIONS(14091), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13605), 2, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13609), 5, + ACTIONS(14097), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8132), 7, + STATE(8291), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -690567,55 +712543,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [313995] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13783), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13781), 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, - [314023] = 9, + [314985] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13595), 1, + ACTIONS(14085), 1, sym_identifier, - ACTIONS(13599), 1, + ACTIONS(14087), 1, anon_sym_LPAREN2, - ACTIONS(13601), 1, + ACTIONS(14089), 1, anon_sym_defined, - ACTIONS(13785), 1, + ACTIONS(14147), 1, sym_number_literal, - ACTIONS(13603), 2, + ACTIONS(14091), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13605), 2, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13609), 5, + ACTIONS(14097), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8069), 7, + STATE(8293), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -690623,55 +712574,98 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314063] = 3, + [315025] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(11821), 1, + anon_sym_STAR, + ACTIONS(11823), 1, + anon_sym_AMP_AMP, + ACTIONS(11825), 1, + anon_sym_AMP, + STATE(4861), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8885), 1, + sym__abstract_declarator, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9427), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [315069] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(13789), 5, + ACTIONS(13917), 1, anon_sym_SLASH, + ACTIONS(13921), 1, + anon_sym_AMP_AMP, + ACTIONS(13923), 1, anon_sym_PIPE, + ACTIONS(13925), 1, + anon_sym_CARET, + ACTIONS(13927), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13787), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13913), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(13915), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(13929), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(13931), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13933), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(13935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [314091] = 9, + ACTIONS(14111), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [315117] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13721), 1, + ACTIONS(14085), 1, sym_identifier, - ACTIONS(13723), 1, + ACTIONS(14087), 1, anon_sym_LPAREN2, - ACTIONS(13725), 1, + ACTIONS(14089), 1, anon_sym_defined, - ACTIONS(13791), 1, + ACTIONS(14149), 1, sym_number_literal, - ACTIONS(13727), 2, + ACTIONS(14091), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13729), 2, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13733), 5, + ACTIONS(14097), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8233), 7, + STATE(8302), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -690679,30 +712673,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314131] = 9, + [315157] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13721), 1, + ACTIONS(14004), 1, sym_identifier, - ACTIONS(13723), 1, + ACTIONS(14008), 1, anon_sym_LPAREN2, - ACTIONS(13725), 1, + ACTIONS(14010), 1, anon_sym_defined, - ACTIONS(13793), 1, + ACTIONS(14151), 1, sym_number_literal, - ACTIONS(13727), 2, + ACTIONS(14012), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13729), 2, + ACTIONS(14014), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13733), 5, + ACTIONS(14018), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8221), 7, + STATE(8195), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -690710,55 +712704,102 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314171] = 3, + [315197] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(13797), 5, + ACTIONS(13917), 1, anon_sym_SLASH, + ACTIONS(13919), 1, + anon_sym_PIPE_PIPE, + ACTIONS(13921), 1, + anon_sym_AMP_AMP, + ACTIONS(13923), 1, anon_sym_PIPE, + ACTIONS(13925), 1, + anon_sym_CARET, + ACTIONS(13927), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13795), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13913), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(13915), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(13929), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(13931), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13933), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(13935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [314199] = 9, + ACTIONS(14153), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [315247] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(13595), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(13599), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(13601), 1, + ACTIONS(11896), 1, + anon_sym_STAR, + ACTIONS(11898), 1, + anon_sym_AMP_AMP, + ACTIONS(11900), 1, + anon_sym_AMP, + ACTIONS(11904), 1, + sym_primitive_type, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(8941), 1, + sym__type_declarator, + STATE(9283), 1, + sym__type_definition_declarators, + STATE(11156), 1, + sym_ms_based_modifier, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [315297] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14004), 1, + sym_identifier, + ACTIONS(14008), 1, + anon_sym_LPAREN2, + ACTIONS(14010), 1, anon_sym_defined, - ACTIONS(13799), 1, + ACTIONS(14155), 1, sym_number_literal, - ACTIONS(13603), 2, + ACTIONS(14012), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13605), 2, + ACTIONS(14014), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13609), 5, + ACTIONS(14018), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8071), 7, + STATE(8221), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -690766,57 +712807,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314239] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13625), 1, - anon_sym_SLASH, - ACTIONS(13623), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(13803), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13801), 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, - [314271] = 9, + [315337] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13595), 1, + ACTIONS(14004), 1, sym_identifier, - ACTIONS(13599), 1, + ACTIONS(14008), 1, anon_sym_LPAREN2, - ACTIONS(13601), 1, + ACTIONS(14010), 1, anon_sym_defined, - ACTIONS(13805), 1, + ACTIONS(14157), 1, sym_number_literal, - ACTIONS(13603), 2, + ACTIONS(14012), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13605), 2, + ACTIONS(14014), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13609), 5, + ACTIONS(14018), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8077), 7, + STATE(8159), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -690824,90 +712838,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314311] = 3, + [315377] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13803), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13801), 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, - [314339] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13625), 1, - anon_sym_SLASH, - ACTIONS(13629), 1, - anon_sym_AMP_AMP, - ACTIONS(13631), 1, - anon_sym_PIPE, - ACTIONS(13633), 1, - anon_sym_CARET, - ACTIONS(13635), 1, - anon_sym_AMP, - ACTIONS(13621), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(13623), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(13637), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(13639), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13641), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(13643), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(13801), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [314387] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13721), 1, + ACTIONS(14004), 1, sym_identifier, - ACTIONS(13723), 1, + ACTIONS(14008), 1, anon_sym_LPAREN2, - ACTIONS(13725), 1, + ACTIONS(14010), 1, anon_sym_defined, - ACTIONS(13807), 1, + ACTIONS(14159), 1, sym_number_literal, - ACTIONS(13727), 2, + ACTIONS(14012), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13729), 2, + ACTIONS(14014), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13733), 5, + ACTIONS(14018), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8134), 7, + STATE(8210), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -690915,209 +712869,231 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314427] = 12, + [315417] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13625), 1, + ACTIONS(13917), 1, anon_sym_SLASH, - ACTIONS(13631), 1, + ACTIONS(13923), 1, anon_sym_PIPE, - ACTIONS(13633), 1, + ACTIONS(13925), 1, anon_sym_CARET, - ACTIONS(13635), 1, + ACTIONS(13927), 1, anon_sym_AMP, - ACTIONS(13621), 2, + ACTIONS(13913), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13623), 2, + ACTIONS(13915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(13637), 2, + ACTIONS(13929), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13639), 2, + ACTIONS(13931), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(13641), 2, + ACTIONS(13933), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(13643), 2, + ACTIONS(13935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(13801), 4, + ACTIONS(14111), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [314473] = 14, + [315463] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(11496), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11498), 1, + ACTIONS(11896), 1, anon_sym_STAR, - ACTIONS(11500), 1, + ACTIONS(11898), 1, anon_sym_AMP_AMP, - ACTIONS(11502), 1, + ACTIONS(11900), 1, anon_sym_AMP, - ACTIONS(11508), 1, + ACTIONS(11904), 1, sym_primitive_type, - STATE(3117), 1, + STATE(3180), 1, sym_pointer_type_declarator, - STATE(8800), 1, + STATE(8941), 1, sym__type_declarator, - STATE(9148), 1, + STATE(9315), 1, sym__type_definition_declarators, - STATE(10974), 1, + STATE(11156), 1, sym_ms_based_modifier, - ACTIONS(11506), 4, + ACTIONS(11902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, + STATE(3152), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [314523] = 14, + [315513] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13917), 1, + anon_sym_SLASH, + ACTIONS(13925), 1, + anon_sym_CARET, + ACTIONS(13927), 1, + anon_sym_AMP, + ACTIONS(14113), 1, + anon_sym_PIPE, + ACTIONS(13913), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13915), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13929), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(13931), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13933), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(13935), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14111), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [315559] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(11496), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11498), 1, + ACTIONS(11896), 1, anon_sym_STAR, - ACTIONS(11500), 1, + ACTIONS(11898), 1, anon_sym_AMP_AMP, - ACTIONS(11502), 1, + ACTIONS(11900), 1, anon_sym_AMP, - ACTIONS(11508), 1, + ACTIONS(11904), 1, sym_primitive_type, - STATE(3117), 1, + STATE(3180), 1, sym_pointer_type_declarator, - STATE(8800), 1, + STATE(8941), 1, sym__type_declarator, - STATE(9164), 1, + STATE(9377), 1, sym__type_definition_declarators, - STATE(10974), 1, + STATE(11156), 1, sym_ms_based_modifier, - ACTIONS(11506), 4, + ACTIONS(11902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, + STATE(3152), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [314573] = 14, + [315609] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(11496), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11498), 1, + ACTIONS(11896), 1, anon_sym_STAR, - ACTIONS(11500), 1, + ACTIONS(11898), 1, anon_sym_AMP_AMP, - ACTIONS(11502), 1, + ACTIONS(11900), 1, anon_sym_AMP, - ACTIONS(11508), 1, + ACTIONS(11904), 1, sym_primitive_type, - STATE(3117), 1, + STATE(3180), 1, sym_pointer_type_declarator, - STATE(8800), 1, + STATE(8941), 1, sym__type_declarator, - STATE(9206), 1, + STATE(9407), 1, sym__type_definition_declarators, - STATE(10974), 1, + STATE(11156), 1, sym_ms_based_modifier, - ACTIONS(11506), 4, + ACTIONS(11902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, + STATE(3152), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [314623] = 15, + [315659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(2732), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13255), 1, - anon_sym_TILDE, - ACTIONS(13261), 1, - anon_sym_operator, - ACTIONS(13809), 1, - sym_identifier, - ACTIONS(13811), 1, - anon_sym_COLON_COLON, - ACTIONS(13813), 1, - anon_sym_template, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(5248), 1, - sym_splice_specifier, - STATE(5554), 1, - sym_splice_expression, - STATE(5555), 1, - sym_operator_name, - STATE(8301), 1, - sym__scope_resolution, - STATE(5713), 4, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - sym_qualified_field_identifier, - STATE(10976), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - [314675] = 9, + ACTIONS(14163), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14161), 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, + [315687] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13595), 1, + ACTIONS(14085), 1, sym_identifier, - ACTIONS(13599), 1, + ACTIONS(14087), 1, anon_sym_LPAREN2, - ACTIONS(13601), 1, + ACTIONS(14089), 1, anon_sym_defined, - ACTIONS(13815), 1, + ACTIONS(14165), 1, sym_number_literal, - ACTIONS(13603), 2, + ACTIONS(14091), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13605), 2, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13609), 5, + ACTIONS(14097), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8079), 7, + STATE(8272), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -691125,64 +713101,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314715] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13625), 1, - anon_sym_SLASH, - ACTIONS(13633), 1, - anon_sym_CARET, - ACTIONS(13635), 1, - anon_sym_AMP, - ACTIONS(13803), 1, - anon_sym_PIPE, - ACTIONS(13621), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(13623), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(13637), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(13639), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13641), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(13643), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(13801), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [314761] = 9, + [315727] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13721), 1, + ACTIONS(14085), 1, sym_identifier, - ACTIONS(13723), 1, + ACTIONS(14087), 1, anon_sym_LPAREN2, - ACTIONS(13725), 1, + ACTIONS(14089), 1, anon_sym_defined, - ACTIONS(13817), 1, + ACTIONS(14167), 1, sym_number_literal, - ACTIONS(13727), 2, + ACTIONS(14091), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13729), 2, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13733), 5, + ACTIONS(14097), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8187), 7, + STATE(8318), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -691190,233 +713132,167 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314801] = 11, + [315767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13625), 1, + ACTIONS(14171), 5, anon_sym_SLASH, - ACTIONS(13635), 1, - anon_sym_AMP, - ACTIONS(13803), 1, anon_sym_PIPE, - ACTIONS(13621), 2, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14169), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13623), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(13637), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13639), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13641), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(13643), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(13801), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [314845] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, - anon_sym_LPAREN2, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(11500), 1, - anon_sym_AMP_AMP, - ACTIONS(11502), 1, - anon_sym_AMP, - ACTIONS(11508), 1, - sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(8800), 1, - sym__type_declarator, - STATE(9223), 1, - sym__type_definition_declarators, - STATE(10974), 1, - sym_ms_based_modifier, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [314895] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(2648), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13277), 1, - anon_sym_TILDE, - ACTIONS(13283), 1, - anon_sym_operator, - ACTIONS(13819), 1, - sym_identifier, - ACTIONS(13821), 1, - anon_sym_COLON_COLON, - ACTIONS(13823), 1, - anon_sym_template, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(5227), 1, - sym_splice_specifier, - STATE(5447), 1, - sym_splice_expression, - STATE(5451), 1, - sym_operator_name, - STATE(8285), 1, - sym__scope_resolution, - STATE(5648), 4, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - sym_qualified_field_identifier, - STATE(10976), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - [314947] = 10, + [315795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13625), 1, + ACTIONS(14175), 5, anon_sym_SLASH, - ACTIONS(13621), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14173), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13623), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(13637), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13639), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13641), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(13643), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(13803), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(13801), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [314989] = 14, + [315823] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(14085), 1, sym_identifier, - ACTIONS(11496), 1, + ACTIONS(14087), 1, anon_sym_LPAREN2, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(11500), 1, - anon_sym_AMP_AMP, - ACTIONS(11502), 1, - anon_sym_AMP, - ACTIONS(11508), 1, - sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(8800), 1, - sym__type_declarator, - STATE(9201), 1, - sym__type_definition_declarators, - STATE(10974), 1, - sym_ms_based_modifier, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [315039] = 9, + ACTIONS(14089), 1, + anon_sym_defined, + ACTIONS(14177), 1, + sym_number_literal, + ACTIONS(14091), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(14093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14097), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8330), 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, + [315863] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13625), 1, - anon_sym_SLASH, - ACTIONS(13621), 2, + ACTIONS(14085), 1, + sym_identifier, + ACTIONS(14087), 1, + anon_sym_LPAREN2, + ACTIONS(14089), 1, + anon_sym_defined, + ACTIONS(14179), 1, + sym_number_literal, + ACTIONS(14091), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13623), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(13639), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13641), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(13643), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(13803), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(13801), 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, - [315079] = 7, + ACTIONS(14097), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8357), 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, + [315903] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13625), 1, - anon_sym_SLASH, - ACTIONS(13621), 2, + ACTIONS(14085), 1, + sym_identifier, + ACTIONS(14087), 1, + anon_sym_LPAREN2, + ACTIONS(14089), 1, + anon_sym_defined, + ACTIONS(14181), 1, + sym_number_literal, + ACTIONS(14091), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13623), 2, + ACTIONS(14097), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8333), 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, + [315943] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13917), 1, + anon_sym_SLASH, + ACTIONS(13915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(13643), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(13803), 4, + ACTIONS(14113), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(13801), 9, + ACTIONS(14111), 13, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -691424,25 +713300,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [315115] = 6, + anon_sym_LT_LT, + anon_sym_GT_GT, + [315975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13625), 1, + ACTIONS(10566), 5, anon_sym_SLASH, - ACTIONS(13621), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(13623), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(13803), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(13801), 11, + ACTIONS(10564), 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, @@ -691452,166 +713327,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [315149] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, - anon_sym_LPAREN2, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(11500), 1, - anon_sym_AMP_AMP, - ACTIONS(11502), 1, - anon_sym_AMP, - ACTIONS(11508), 1, - sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(8800), 1, - sym__type_declarator, - STATE(9244), 1, - sym__type_definition_declarators, - STATE(10974), 1, - sym_ms_based_modifier, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [315199] = 14, + [316003] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(11496), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11498), 1, + ACTIONS(11896), 1, anon_sym_STAR, - ACTIONS(11500), 1, + ACTIONS(11898), 1, anon_sym_AMP_AMP, - ACTIONS(11502), 1, + ACTIONS(11900), 1, anon_sym_AMP, - ACTIONS(11508), 1, + ACTIONS(11904), 1, sym_primitive_type, - STATE(3117), 1, + STATE(3180), 1, sym_pointer_type_declarator, - STATE(8800), 1, + STATE(8941), 1, sym__type_declarator, - STATE(9265), 1, + STATE(9395), 1, sym__type_definition_declarators, - STATE(10974), 1, + STATE(11156), 1, sym_ms_based_modifier, - ACTIONS(11506), 4, + ACTIONS(11902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, + STATE(3152), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [315249] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6748), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - STATE(1956), 1, - sym_template_argument_list, - ACTIONS(6751), 17, - anon_sym_DOT_DOT_DOT, - 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_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [315281] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1938), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(13241), 1, - anon_sym_TILDE, - ACTIONS(13247), 1, - anon_sym_operator, - ACTIONS(13710), 1, - sym_identifier, - ACTIONS(13715), 1, - anon_sym_COLON_COLON, - ACTIONS(13717), 1, - anon_sym_template, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(5071), 1, - sym_splice_specifier, - STATE(5326), 1, - sym_splice_expression, - STATE(5351), 1, - sym_operator_name, - STATE(8275), 1, - sym__scope_resolution, - STATE(5570), 4, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - sym_qualified_field_identifier, - STATE(10976), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - [315333] = 9, + [316053] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13595), 1, + ACTIONS(14004), 1, sym_identifier, - ACTIONS(13599), 1, + ACTIONS(14008), 1, anon_sym_LPAREN2, - ACTIONS(13601), 1, + ACTIONS(14010), 1, anon_sym_defined, - ACTIONS(13825), 1, + ACTIONS(14183), 1, sym_number_literal, - ACTIONS(13603), 2, + ACTIONS(14012), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13605), 2, + ACTIONS(14014), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13609), 5, + ACTIONS(14018), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8084), 7, + STATE(8179), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -691619,282 +713394,180 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [315373] = 14, + [316093] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, - anon_sym_LPAREN2, - ACTIONS(11498), 1, + ACTIONS(13917), 1, + anon_sym_SLASH, + ACTIONS(13913), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13915), 2, anon_sym_STAR, - ACTIONS(11500), 1, - anon_sym_AMP_AMP, - ACTIONS(11502), 1, + anon_sym_PERCENT, + ACTIONS(14113), 4, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11508), 1, - sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(8800), 1, - sym__type_declarator, - STATE(9156), 1, - sym__type_definition_declarators, - STATE(10974), 1, - sym_ms_based_modifier, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [315423] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, - anon_sym_LPAREN2, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(11500), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14111), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11502), 1, - anon_sym_AMP, - ACTIONS(11508), 1, - sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(8800), 1, - sym__type_declarator, - STATE(9189), 1, - sym__type_definition_declarators, - STATE(10974), 1, - sym_ms_based_modifier, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [315473] = 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, + [316127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13625), 1, + ACTIONS(14187), 5, anon_sym_SLASH, - ACTIONS(13627), 1, - anon_sym_PIPE_PIPE, - ACTIONS(13629), 1, - anon_sym_AMP_AMP, - ACTIONS(13631), 1, anon_sym_PIPE, - ACTIONS(13633), 1, - anon_sym_CARET, - ACTIONS(13635), 1, anon_sym_AMP, - ACTIONS(13621), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14185), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13623), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(13637), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13639), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13641), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(13643), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(13827), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [315523] = 14, + [316155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, - anon_sym_LPAREN2, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(11500), 1, - anon_sym_AMP_AMP, - ACTIONS(11502), 1, + ACTIONS(14113), 5, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11508), 1, - sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(8800), 1, - sym__type_declarator, - STATE(9169), 1, - sym__type_definition_declarators, - STATE(10974), 1, - sym_ms_based_modifier, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [315573] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, - anon_sym_LPAREN2, - ACTIONS(11498), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14111), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(11500), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11502), 1, - anon_sym_AMP, - ACTIONS(11508), 1, - sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(8800), 1, - sym__type_declarator, - STATE(9251), 1, - sym__type_definition_declarators, - STATE(10974), 1, - sym_ms_based_modifier, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [315623] = 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, + [316183] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(11496), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11498), 1, + ACTIONS(11896), 1, anon_sym_STAR, - ACTIONS(11500), 1, + ACTIONS(11898), 1, anon_sym_AMP_AMP, - ACTIONS(11502), 1, + ACTIONS(11900), 1, anon_sym_AMP, - ACTIONS(11508), 1, + ACTIONS(11904), 1, sym_primitive_type, - STATE(3117), 1, + STATE(3180), 1, sym_pointer_type_declarator, - STATE(8800), 1, + STATE(8941), 1, sym__type_declarator, - STATE(9243), 1, + STATE(9272), 1, sym__type_definition_declarators, - STATE(10974), 1, + STATE(11156), 1, sym_ms_based_modifier, - ACTIONS(11506), 4, + ACTIONS(11902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, + STATE(3152), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [315673] = 14, + [316233] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(11496), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11498), 1, + ACTIONS(11896), 1, anon_sym_STAR, - ACTIONS(11500), 1, + ACTIONS(11898), 1, anon_sym_AMP_AMP, - ACTIONS(11502), 1, + ACTIONS(11900), 1, anon_sym_AMP, - ACTIONS(11508), 1, + ACTIONS(11904), 1, sym_primitive_type, - STATE(3117), 1, + STATE(3180), 1, sym_pointer_type_declarator, - STATE(8800), 1, + STATE(8941), 1, sym__type_declarator, - STATE(9276), 1, + STATE(9278), 1, sym__type_definition_declarators, - STATE(10974), 1, + STATE(11156), 1, sym_ms_based_modifier, - ACTIONS(11506), 4, + ACTIONS(11902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, + STATE(3152), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [315723] = 9, + [316283] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13595), 1, + ACTIONS(14085), 1, sym_identifier, - ACTIONS(13599), 1, + ACTIONS(14087), 1, anon_sym_LPAREN2, - ACTIONS(13601), 1, + ACTIONS(14089), 1, anon_sym_defined, - ACTIONS(13829), 1, + ACTIONS(14189), 1, sym_number_literal, - ACTIONS(13603), 2, + ACTIONS(14091), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13605), 2, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13609), 5, + ACTIONS(14097), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8085), 7, + STATE(8355), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -691902,66 +713575,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [315763] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, - anon_sym_LPAREN2, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(11500), 1, - anon_sym_AMP_AMP, - ACTIONS(11502), 1, - anon_sym_AMP, - ACTIONS(11508), 1, - sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(8800), 1, - sym__type_declarator, - STATE(9219), 1, - sym__type_definition_declarators, - STATE(10974), 1, - sym_ms_based_modifier, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [315813] = 9, + [316323] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13595), 1, + ACTIONS(14085), 1, sym_identifier, - ACTIONS(13599), 1, + ACTIONS(14087), 1, anon_sym_LPAREN2, - ACTIONS(13601), 1, + ACTIONS(14089), 1, anon_sym_defined, - ACTIONS(13831), 1, + ACTIONS(14191), 1, sym_number_literal, - ACTIONS(13603), 2, + ACTIONS(14091), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13605), 2, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13609), 5, + ACTIONS(14097), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8086), 7, + STATE(8327), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -691969,100 +713606,95 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [315853] = 14, + [316363] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(14085), 1, sym_identifier, - ACTIONS(11496), 1, + ACTIONS(14087), 1, anon_sym_LPAREN2, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(11500), 1, - anon_sym_AMP_AMP, - ACTIONS(11502), 1, - anon_sym_AMP, - ACTIONS(11508), 1, - sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(8800), 1, - sym__type_declarator, - STATE(9252), 1, - sym__type_definition_declarators, - STATE(10974), 1, - sym_ms_based_modifier, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [315903] = 12, + ACTIONS(14089), 1, + anon_sym_defined, + ACTIONS(14193), 1, + sym_number_literal, + ACTIONS(14091), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(14093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14097), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8319), 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, + [316403] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(9074), 1, + ACTIONS(9429), 1, anon_sym___attribute, - ACTIONS(11429), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(11461), 1, + ACTIONS(11838), 1, anon_sym_STAR, - ACTIONS(11463), 1, + ACTIONS(11840), 1, anon_sym_AMP_AMP, - ACTIONS(11465), 1, + ACTIONS(11842), 1, anon_sym_AMP, - STATE(5216), 1, + STATE(5313), 1, sym_parameter_list, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(8767), 1, + STATE(8939), 1, sym__abstract_declarator, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(9072), 6, + ACTIONS(9427), 6, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [315949] = 9, + [316449] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13721), 1, + ACTIONS(14085), 1, sym_identifier, - ACTIONS(13723), 1, + ACTIONS(14087), 1, anon_sym_LPAREN2, - ACTIONS(13725), 1, + ACTIONS(14089), 1, anon_sym_defined, - ACTIONS(13833), 1, + ACTIONS(14195), 1, sym_number_literal, - ACTIONS(13727), 2, + ACTIONS(14091), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13729), 2, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13733), 5, + ACTIONS(14097), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8194), 7, + STATE(8331), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -692070,30 +713702,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [315989] = 9, + [316489] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13721), 1, + ACTIONS(14085), 1, sym_identifier, - ACTIONS(13723), 1, + ACTIONS(14087), 1, anon_sym_LPAREN2, - ACTIONS(13725), 1, + ACTIONS(14089), 1, anon_sym_defined, - ACTIONS(13835), 1, + ACTIONS(14197), 1, sym_number_literal, - ACTIONS(13727), 2, + ACTIONS(14091), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13729), 2, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13733), 5, + ACTIONS(14097), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8130), 7, + STATE(8305), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -692101,67 +713733,119 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316029] = 15, + [316529] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14201), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14199), 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, + [316557] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7087), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, + anon_sym_LT, + STATE(2053), 1, + sym_template_argument_list, + ACTIONS(7090), 17, + anon_sym_DOT_DOT_DOT, + 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_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [316589] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2078), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(13191), 1, + ACTIONS(13571), 1, anon_sym_TILDE, - ACTIONS(13197), 1, + ACTIONS(13577), 1, anon_sym_operator, - ACTIONS(13745), 1, + ACTIONS(14203), 1, sym_identifier, - ACTIONS(13837), 1, + ACTIONS(14205), 1, anon_sym_COLON_COLON, - ACTIONS(13839), 1, + ACTIONS(14207), 1, anon_sym_template, - STATE(3608), 1, + STATE(3744), 1, sym_splice_specifier, - STATE(3673), 1, - sym_splice_expression, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(5587), 1, + STATE(3817), 1, + sym_splice_expression, + STATE(3938), 1, sym_operator_name, - STATE(8288), 1, + STATE(8375), 1, sym__scope_resolution, - STATE(3770), 4, + STATE(3928), 4, sym_template_method, sym_destructor_name, sym_dependent_field_identifier, sym_qualified_field_identifier, - STATE(10976), 4, + STATE(10768), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, - [316081] = 9, + [316641] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13721), 1, + ACTIONS(14004), 1, sym_identifier, - ACTIONS(13723), 1, + ACTIONS(14008), 1, anon_sym_LPAREN2, - ACTIONS(13725), 1, + ACTIONS(14010), 1, anon_sym_defined, - ACTIONS(13841), 1, + ACTIONS(14209), 1, sym_number_literal, - ACTIONS(13727), 2, + ACTIONS(14012), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13729), 2, + ACTIONS(14014), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13733), 5, + ACTIONS(14018), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8145), 7, + STATE(8232), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -692169,55 +713853,60 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316121] = 9, + [316681] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(13721), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(13723), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(13725), 1, - anon_sym_defined, - ACTIONS(13843), 1, - sym_number_literal, - ACTIONS(13727), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(13729), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(13733), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(8204), 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, - [316161] = 9, + ACTIONS(11896), 1, + anon_sym_STAR, + ACTIONS(11898), 1, + anon_sym_AMP_AMP, + ACTIONS(11900), 1, + anon_sym_AMP, + ACTIONS(11904), 1, + sym_primitive_type, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(8941), 1, + sym__type_declarator, + STATE(9380), 1, + sym__type_definition_declarators, + STATE(11156), 1, + sym_ms_based_modifier, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [316731] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13721), 1, + ACTIONS(14004), 1, sym_identifier, - ACTIONS(13723), 1, + ACTIONS(14008), 1, anon_sym_LPAREN2, - ACTIONS(13725), 1, + ACTIONS(14010), 1, anon_sym_defined, - ACTIONS(13845), 1, + ACTIONS(14211), 1, sym_number_literal, - ACTIONS(13727), 2, + ACTIONS(14012), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13729), 2, + ACTIONS(14014), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13733), 5, + ACTIONS(14018), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -692231,30 +713920,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316201] = 9, + [316771] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13721), 1, + ACTIONS(14085), 1, sym_identifier, - ACTIONS(13723), 1, + ACTIONS(14087), 1, anon_sym_LPAREN2, - ACTIONS(13725), 1, + ACTIONS(14089), 1, anon_sym_defined, - ACTIONS(13847), 1, + ACTIONS(14213), 1, sym_number_literal, - ACTIONS(13727), 2, + ACTIONS(14091), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13729), 2, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13733), 5, + ACTIONS(14097), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8179), 7, + STATE(8322), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -692262,30 +713951,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316241] = 9, + [316811] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13721), 1, + ACTIONS(14085), 1, sym_identifier, - ACTIONS(13723), 1, + ACTIONS(14087), 1, anon_sym_LPAREN2, - ACTIONS(13725), 1, + ACTIONS(14089), 1, anon_sym_defined, - ACTIONS(13849), 1, + ACTIONS(14215), 1, sym_number_literal, - ACTIONS(13727), 2, + ACTIONS(14091), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13729), 2, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13733), 5, + ACTIONS(14097), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8185), 7, + STATE(8329), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -692293,78 +713982,53 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316281] = 9, + [316851] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(13721), 1, - sym_identifier, - ACTIONS(13723), 1, - anon_sym_LPAREN2, - ACTIONS(13725), 1, - anon_sym_defined, - ACTIONS(13851), 1, - sym_number_literal, - ACTIONS(13727), 2, - anon_sym_BANG, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13571), 1, anon_sym_TILDE, - ACTIONS(13729), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(13733), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(8196), 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, - [316321] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13721), 1, + ACTIONS(13577), 1, + anon_sym_operator, + ACTIONS(14203), 1, sym_identifier, - ACTIONS(13723), 1, - anon_sym_LPAREN2, - ACTIONS(13725), 1, - anon_sym_defined, - ACTIONS(13853), 1, - sym_number_literal, - ACTIONS(13727), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(13729), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(13733), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(8241), 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, - [316361] = 3, + ACTIONS(14217), 1, + anon_sym_COLON_COLON, + ACTIONS(14219), 1, + anon_sym_template, + STATE(3744), 1, + sym_splice_specifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(3817), 1, + sym_splice_expression, + STATE(5607), 1, + sym_operator_name, + STATE(8416), 1, + sym__scope_resolution, + STATE(3928), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + STATE(10768), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + [316903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13857), 5, + ACTIONS(14223), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(13855), 15, + ACTIONS(14221), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -692380,16 +714044,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [316389] = 3, + [316931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13861), 5, + ACTIONS(14227), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(13859), 15, + ACTIONS(14225), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -692405,111 +714069,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [316417] = 9, + [316959] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(13595), 1, - sym_identifier, - ACTIONS(13599), 1, - anon_sym_LPAREN2, - ACTIONS(13601), 1, - anon_sym_defined, - ACTIONS(13863), 1, - sym_number_literal, - ACTIONS(13603), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(13605), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(13609), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(8094), 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, - [316457] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13867), 5, + ACTIONS(13917), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13865), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13913), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(13915), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(13929), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(13931), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13933), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(13935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [316485] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10249), 5, - anon_sym_SLASH, + ACTIONS(14113), 2, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10247), 15, + ACTIONS(14111), 5, 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, - [316513] = 9, + [317001] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(13595), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(13599), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(13601), 1, + ACTIONS(11896), 1, + anon_sym_STAR, + ACTIONS(11898), 1, + anon_sym_AMP_AMP, + ACTIONS(11900), 1, + anon_sym_AMP, + ACTIONS(11904), 1, + sym_primitive_type, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(8941), 1, + sym__type_declarator, + STATE(9346), 1, + sym__type_definition_declarators, + STATE(11156), 1, + sym_ms_based_modifier, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [317051] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14085), 1, + sym_identifier, + ACTIONS(14087), 1, + anon_sym_LPAREN2, + ACTIONS(14089), 1, anon_sym_defined, - ACTIONS(13869), 1, + ACTIONS(14229), 1, sym_number_literal, - ACTIONS(13603), 2, + ACTIONS(14091), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(13605), 2, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13609), 5, + ACTIONS(14097), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8082), 7, + STATE(8323), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -692517,926 +714168,498 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316553] = 3, + [317091] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9093), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9095), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(14085), 1, + sym_identifier, + ACTIONS(14087), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [316580] = 15, + ACTIONS(14089), 1, + anon_sym_defined, + ACTIONS(14231), 1, + sym_number_literal, + ACTIONS(14091), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(14093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14097), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8246), 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, + [317131] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(3092), 1, anon_sym_LBRACK_COLON, - ACTIONS(10145), 1, - anon_sym_LBRACE, - ACTIONS(12766), 1, + ACTIONS(13591), 1, + anon_sym_TILDE, + ACTIONS(13597), 1, + anon_sym_operator, + ACTIONS(14233), 1, sym_identifier, - ACTIONS(12768), 1, + ACTIONS(14235), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + ACTIONS(14237), 1, + anon_sym_template, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4691), 1, + STATE(5353), 1, sym_splice_specifier, - STATE(8626), 1, - sym__scope_resolution, - STATE(9213), 1, - sym_enumerator_list, - ACTIONS(13871), 2, - anon_sym_class, - anon_sym_struct, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(8863), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, + STATE(5649), 1, sym_splice_expression, - [316631] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10621), 1, - anon_sym_COLON_COLON, - ACTIONS(12770), 1, - sym_identifier, - ACTIONS(12795), 1, - anon_sym_LBRACE, - STATE(6603), 1, - sym_splice_specifier, - STATE(7033), 1, - sym__splice_specialization_specifier, - STATE(7463), 1, - sym_enumerator_list, - STATE(8612), 1, + STATE(5700), 1, + sym_operator_name, + STATE(8371), 1, sym__scope_resolution, - ACTIONS(13873), 2, - anon_sym_class, - anon_sym_struct, - STATE(7034), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7267), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10976), 3, + STATE(5877), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + STATE(10768), 4, sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [316682] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(2732), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(8100), 1, - anon_sym_LBRACE, - ACTIONS(10735), 1, - anon_sym_COLON_COLON, - ACTIONS(12772), 1, - sym_identifier, - STATE(2530), 1, - sym_splice_specifier, - STATE(2597), 1, - sym__splice_specialization_specifier, - STATE(2643), 1, - sym_enumerator_list, - STATE(8624), 1, - sym__scope_resolution, - ACTIONS(13875), 2, - anon_sym_class, - anon_sym_struct, - STATE(2598), 2, sym_template_type, - sym_splice_type_specifier, - STATE(4413), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10976), 3, - sym_decltype, sym_dependent_type_identifier, - sym_splice_expression, - [316733] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(13877), 1, - anon_sym_LBRACE, - ACTIONS(13879), 1, - anon_sym_DASH_GT, - ACTIONS(13881), 1, - anon_sym_requires, - STATE(9873), 1, - sym_trailing_return_type, - STATE(10694), 1, - sym_requires_clause, - STATE(8728), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(8885), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8887), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13477), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [316780] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(9021), 1, - anon_sym_LBRACE, - ACTIONS(10743), 1, - anon_sym_COLON_COLON, - ACTIONS(12776), 1, - sym_identifier, - STATE(3634), 1, - sym_splice_specifier, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(3818), 1, - sym_enumerator_list, - STATE(8631), 1, - sym__scope_resolution, - ACTIONS(13883), 2, - anon_sym_class, - anon_sym_struct, - STATE(3624), 2, - sym_template_type, sym_splice_type_specifier, - STATE(5917), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [316831] = 15, + [317183] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(7992), 1, - anon_sym_LBRACE, - ACTIONS(10678), 1, - anon_sym_COLON_COLON, - ACTIONS(12774), 1, + ACTIONS(14004), 1, sym_identifier, - STATE(2431), 1, - sym_splice_specifier, - STATE(2514), 1, - sym__splice_specialization_specifier, - STATE(2594), 1, - sym_enumerator_list, - STATE(8639), 1, - sym__scope_resolution, - ACTIONS(13885), 2, - anon_sym_class, - anon_sym_struct, - STATE(2534), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4278), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [316882] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(13879), 1, - anon_sym_DASH_GT, - ACTIONS(13881), 1, - anon_sym_requires, - ACTIONS(13887), 1, - anon_sym_LBRACE, - STATE(9815), 1, - sym_trailing_return_type, - STATE(10488), 1, - sym_requires_clause, - STATE(8186), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(8901), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8895), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13477), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [316929] = 3, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(13773), 1, - anon_sym_LF, - ACTIONS(13775), 18, + ACTIONS(14008), 1, + anon_sym_LPAREN2, + ACTIONS(14010), 1, + anon_sym_defined, + ACTIONS(14239), 1, + sym_number_literal, + ACTIONS(14012), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(14014), 2, 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, - [316956] = 15, + ACTIONS(14018), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8164), 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, + [317223] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(2300), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(6101), 1, - anon_sym_COLON_COLON, - ACTIONS(10145), 1, - anon_sym_LBRACE, - ACTIONS(12804), 1, - sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4533), 1, - sym_enumerator_list, - STATE(5044), 1, - sym_splice_specifier, - STATE(8579), 1, - sym__scope_resolution, - ACTIONS(13889), 2, - anon_sym_class, - anon_sym_struct, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(5384), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [317007] = 12, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(13891), 1, - anon_sym_LF, - ACTIONS(13897), 1, - anon_sym_PIPE_PIPE, - ACTIONS(13899), 1, - anon_sym_AMP_AMP, - ACTIONS(13901), 1, - anon_sym_PIPE, - ACTIONS(13903), 1, - anon_sym_CARET, - ACTIONS(13905), 1, - anon_sym_AMP, - ACTIONS(13893), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(13907), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(13911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(13895), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(13909), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [317052] = 3, - ACTIONS(10247), 1, - anon_sym_LF, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(10249), 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, - [317079] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13625), 1, - anon_sym_SLASH, - ACTIONS(13627), 1, - anon_sym_PIPE_PIPE, - ACTIONS(13629), 1, - anon_sym_AMP_AMP, - ACTIONS(13631), 1, - anon_sym_PIPE, - ACTIONS(13633), 1, - anon_sym_CARET, - ACTIONS(13635), 1, - anon_sym_AMP, - ACTIONS(13913), 1, - anon_sym_RPAREN, - ACTIONS(13621), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(13623), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(13637), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(13639), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13641), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(13643), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [317128] = 3, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(13859), 1, - anon_sym_LF, - ACTIONS(13861), 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, - [317155] = 3, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(13865), 1, - anon_sym_LF, - ACTIONS(13867), 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, - [317182] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10145), 1, - anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(13557), 1, + anon_sym_TILDE, + ACTIONS(13563), 1, + anon_sym_operator, + ACTIONS(14046), 1, sym_identifier, - ACTIONS(12740), 1, + ACTIONS(14051), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + ACTIONS(14053), 1, + anon_sym_template, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(5044), 1, sym_splice_specifier, - STATE(4533), 1, - sym_enumerator_list, - STATE(8614), 1, + STATE(5307), 1, + sym_splice_expression, + STATE(5308), 1, + sym_operator_name, + STATE(8388), 1, sym__scope_resolution, - ACTIONS(13915), 2, - anon_sym_class, - anon_sym_struct, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6300), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10976), 3, + STATE(5675), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + STATE(10768), 4, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - sym_splice_expression, - [317233] = 13, + sym_splice_type_specifier, + [317275] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(11496), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11508), 1, - sym_primitive_type, - ACTIONS(11564), 1, + ACTIONS(11896), 1, anon_sym_STAR, - ACTIONS(11566), 1, + ACTIONS(11898), 1, anon_sym_AMP_AMP, - ACTIONS(11568), 1, + ACTIONS(11900), 1, anon_sym_AMP, - STATE(3117), 1, + ACTIONS(11904), 1, + sym_primitive_type, + STATE(3180), 1, sym_pointer_type_declarator, - STATE(3495), 1, + STATE(8941), 1, sym__type_declarator, - STATE(10884), 1, + STATE(9394), 1, + sym__type_definition_declarators, + STATE(11156), 1, sym_ms_based_modifier, - ACTIONS(11506), 4, + ACTIONS(11902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, + STATE(3152), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [317280] = 13, + [317325] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(14085), 1, sym_identifier, - ACTIONS(11496), 1, + ACTIONS(14087), 1, anon_sym_LPAREN2, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(11500), 1, - anon_sym_AMP_AMP, - ACTIONS(11502), 1, - anon_sym_AMP, - ACTIONS(11508), 1, - sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(9001), 1, - sym__type_declarator, - STATE(10974), 1, - sym_ms_based_modifier, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [317327] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13625), 1, - anon_sym_SLASH, - ACTIONS(13627), 1, - anon_sym_PIPE_PIPE, - ACTIONS(13629), 1, - anon_sym_AMP_AMP, - ACTIONS(13631), 1, - anon_sym_PIPE, - ACTIONS(13633), 1, - anon_sym_CARET, - ACTIONS(13635), 1, - anon_sym_AMP, - ACTIONS(13917), 1, - anon_sym_RPAREN, - ACTIONS(13621), 2, + ACTIONS(14089), 1, + anon_sym_defined, + ACTIONS(14241), 1, + sym_number_literal, + ACTIONS(14091), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(14093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13623), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(13637), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(13639), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13641), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(13643), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [317376] = 13, + ACTIONS(14097), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8356), 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, + [317365] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(13435), 1, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10320), 1, + anon_sym_LT, + STATE(8449), 1, + sym_template_argument_list, + ACTIONS(6574), 4, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6567), 12, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - ACTIONS(13919), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(8197), 1, - sym_parameter_list, - STATE(10537), 1, - sym_trailing_return_type, - STATE(7823), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8370), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9133), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13477), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [317423] = 8, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [317398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13921), 1, - anon_sym_LBRACK, - STATE(8413), 1, - sym_parameter_list, - ACTIONS(9127), 2, + ACTIONS(9308), 3, anon_sym___attribute, + anon_sym_LBRACK, anon_sym___asm, - STATE(8257), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9129), 11, + ACTIONS(9310), 16, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [317460] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, - anon_sym_LPAREN2, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(11500), 1, - anon_sym_AMP_AMP, - ACTIONS(11502), 1, - anon_sym_AMP, - ACTIONS(11508), 1, - sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(8302), 1, - sym__type_declarator, - STATE(10974), 1, - sym_ms_based_modifier, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [317507] = 13, + anon_sym_requires, + [317425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11570), 1, - sym_identifier, - ACTIONS(11572), 1, + ACTIONS(9316), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9318), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11574), 1, - anon_sym_STAR, - ACTIONS(11576), 1, - anon_sym_AMP_AMP, - ACTIONS(11578), 1, - anon_sym_AMP, - ACTIONS(11582), 1, - sym_primitive_type, - STATE(4627), 1, - sym__type_declarator, - STATE(5362), 1, - sym_pointer_type_declarator, - STATE(11462), 1, - sym_ms_based_modifier, - ACTIONS(11580), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5356), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [317554] = 5, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [317452] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - STATE(3601), 1, - sym_template_argument_list, - ACTIONS(6208), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(14243), 1, anon_sym_LBRACE, + ACTIONS(14245), 1, + anon_sym_DASH_GT, + ACTIONS(14247), 1, + anon_sym_requires, + STATE(9835), 1, + sym_trailing_return_type, + STATE(11587), 1, + sym_requires_clause, + STATE(8834), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9062), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9067), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - anon_sym_or, - anon_sym_and, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [317585] = 13, + [317499] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(11496), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11498), 1, + ACTIONS(11896), 1, anon_sym_STAR, - ACTIONS(11500), 1, + ACTIONS(11898), 1, anon_sym_AMP_AMP, - ACTIONS(11502), 1, + ACTIONS(11900), 1, anon_sym_AMP, - ACTIONS(11508), 1, + ACTIONS(11904), 1, sym_primitive_type, - STATE(3117), 1, + STATE(3180), 1, sym_pointer_type_declarator, - STATE(8978), 1, + STATE(9121), 1, sym__type_declarator, - STATE(10974), 1, + STATE(11156), 1, sym_ms_based_modifier, - ACTIONS(11506), 4, + ACTIONS(11902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3115), 5, + STATE(3152), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [317632] = 12, - ACTIONS(13686), 1, + [317546] = 12, + ACTIONS(14065), 1, sym_comment, - ACTIONS(13897), 1, + ACTIONS(14249), 1, + anon_sym_LF, + ACTIONS(14255), 1, anon_sym_PIPE_PIPE, - ACTIONS(13899), 1, + ACTIONS(14257), 1, anon_sym_AMP_AMP, - ACTIONS(13901), 1, + ACTIONS(14259), 1, anon_sym_PIPE, - ACTIONS(13903), 1, + ACTIONS(14261), 1, anon_sym_CARET, - ACTIONS(13905), 1, + ACTIONS(14263), 1, anon_sym_AMP, - ACTIONS(13923), 1, - anon_sym_LF, - ACTIONS(13893), 2, + ACTIONS(14251), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13907), 2, + ACTIONS(14265), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13911), 2, + ACTIONS(14269), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(13895), 3, + ACTIONS(14253), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(13909), 4, + ACTIONS(14267), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [317677] = 3, - ACTIONS(13686), 1, + [317591] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LF, - ACTIONS(13797), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(13917), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(13919), 1, anon_sym_PIPE_PIPE, + ACTIONS(13921), 1, anon_sym_AMP_AMP, + ACTIONS(13923), 1, anon_sym_PIPE, + ACTIONS(13925), 1, anon_sym_CARET, + ACTIONS(13927), 1, anon_sym_AMP, + ACTIONS(14271), 1, + anon_sym_RPAREN, + ACTIONS(13913), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13915), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13929), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(13931), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(13933), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(13935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [317704] = 8, + [317640] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13921), 1, - anon_sym_LBRACK, - STATE(8413), 1, - sym_parameter_list, - ACTIONS(8923), 2, - anon_sym___attribute, - anon_sym___asm, - STATE(8257), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8925), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(2300), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(8383), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [317741] = 3, + ACTIONS(11010), 1, + anon_sym_COLON_COLON, + ACTIONS(13135), 1, + sym_identifier, + STATE(2547), 1, + sym_splice_specifier, + STATE(2601), 1, + sym__splice_specialization_specifier, + STATE(2691), 1, + sym_enumerator_list, + STATE(8682), 1, + sym__scope_resolution, + ACTIONS(14273), 2, + anon_sym_class, + anon_sym_struct, + STATE(2615), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4368), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [317691] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9097), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9099), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [317768] = 3, + ACTIONS(11896), 1, + anon_sym_STAR, + ACTIONS(11898), 1, + anon_sym_AMP_AMP, + ACTIONS(11900), 1, + anon_sym_AMP, + ACTIONS(11904), 1, + sym_primitive_type, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(8407), 1, + sym__type_declarator, + STATE(11156), 1, + sym_ms_based_modifier, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [317738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9101), 3, + ACTIONS(9435), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9103), 16, + ACTIONS(9437), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -693453,339 +714676,290 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [317795] = 3, + [317765] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9109), 3, - anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14275), 1, anon_sym_LBRACK, + STATE(8570), 1, + sym_parameter_list, + ACTIONS(9480), 2, + anon_sym___attribute, anon_sym___asm, - ACTIONS(9111), 16, + STATE(8436), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9482), 11, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [317822] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13046), 1, - sym_identifier, - ACTIONS(13050), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8521), 1, - sym_access_specifier, - STATE(8576), 1, - sym__scope_resolution, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(9996), 2, - sym__class_name, - sym_qualified_type_identifier, - ACTIONS(13489), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [317871] = 17, + [317802] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(10435), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(13551), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(13559), 1, - anon_sym_EQ, - ACTIONS(13925), 1, - anon_sym_SEMI, - ACTIONS(13927), 1, - anon_sym_COLON, - STATE(4505), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(9715), 1, - sym_gnu_asm_expression, - STATE(9716), 1, - aux_sym_declaration_repeat1, - ACTIONS(13561), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8286), 2, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(14245), 1, + anon_sym_DASH_GT, + ACTIONS(14247), 1, + anon_sym_requires, + ACTIONS(14277), 1, + anon_sym_LBRACE, + STATE(9842), 1, + sym_trailing_return_type, + STATE(10631), 1, + sym_requires_clause, + STATE(8359), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9008), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10081), 2, - sym_argument_list, - sym_initializer_list, - [317926] = 14, + STATE(9076), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [317849] = 3, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(14161), 1, + anon_sym_LF, + ACTIONS(14163), 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, + [317876] = 3, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(14225), 1, + anon_sym_LF, + ACTIONS(14227), 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, + [317903] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13046), 1, + ACTIONS(13421), 1, sym_identifier, - ACTIONS(13050), 1, + ACTIONS(13425), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8488), 1, + STATE(8605), 1, sym_access_specifier, - STATE(8576), 1, + STATE(8762), 1, sym__scope_resolution, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(9346), 2, + STATE(9533), 2, sym__class_name, sym_qualified_type_identifier, - ACTIONS(13489), 3, + ACTIONS(13847), 3, anon_sym_private, anon_sym_public, anon_sym_protected, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [317975] = 15, + [317952] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(9806), 1, - anon_sym_LBRACE, - ACTIONS(10299), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10697), 1, + ACTIONS(9576), 1, + anon_sym_LBRACE, + ACTIONS(11020), 1, anon_sym_COLON_COLON, - ACTIONS(12750), 1, + ACTIONS(13102), 1, sym_identifier, - STATE(4189), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(4281), 1, - sym_enumerator_list, - STATE(7130), 1, + STATE(7481), 1, sym_splice_specifier, - STATE(8634), 1, + STATE(7708), 1, + sym_enumerator_list, + STATE(8691), 1, sym__scope_resolution, - ACTIONS(13929), 2, + ACTIONS(14279), 2, anon_sym_class, anon_sym_struct, - STATE(4170), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(7465), 2, + STATE(7590), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [318026] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13921), 1, - anon_sym_LBRACK, - STATE(8413), 1, - sym_parameter_list, - ACTIONS(9033), 2, - anon_sym___attribute, - anon_sym___asm, - STATE(8257), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9035), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [318063] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9039), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [318090] = 13, + [318003] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11530), 1, + ACTIONS(11943), 1, sym_identifier, - ACTIONS(11532), 1, + ACTIONS(11945), 1, anon_sym_LPAREN2, - ACTIONS(11534), 1, + ACTIONS(11947), 1, anon_sym_STAR, - ACTIONS(11536), 1, + ACTIONS(11949), 1, anon_sym_AMP_AMP, - ACTIONS(11538), 1, + ACTIONS(11951), 1, anon_sym_AMP, - ACTIONS(11542), 1, + ACTIONS(11955), 1, sym_primitive_type, - STATE(4747), 1, + STATE(4785), 1, sym__type_declarator, - STATE(5607), 1, + STATE(5644), 1, sym_pointer_type_declarator, - STATE(10900), 1, + STATE(10893), 1, sym_ms_based_modifier, - ACTIONS(11540), 4, + ACTIONS(11953), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5533), 5, + STATE(5575), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [318137] = 13, + [318050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, + ACTIONS(9361), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9363), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(11500), 1, - anon_sym_AMP_AMP, - ACTIONS(11502), 1, - anon_sym_AMP, - ACTIONS(11508), 1, - sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(8847), 1, - sym__type_declarator, - STATE(10974), 1, - sym_ms_based_modifier, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [318184] = 15, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [318077] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, - ACTIONS(10145), 1, + ACTIONS(10114), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11048), 1, + anon_sym_COLON_COLON, + ACTIONS(13123), 1, sym_identifier, - STATE(3682), 1, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(4350), 1, - sym_splice_specifier, - STATE(4533), 1, + STATE(4358), 1, sym_enumerator_list, - STATE(8638), 1, + STATE(7326), 1, + sym_splice_specifier, + STATE(8745), 1, sym__scope_resolution, - ACTIONS(13931), 2, + ACTIONS(14281), 2, anon_sym_class, anon_sym_struct, - STATE(3712), 2, + STATE(4296), 2, sym_template_type, sym_splice_type_specifier, - STATE(4501), 2, + STATE(7586), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [318235] = 3, + [318128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7546), 3, + ACTIONS(9365), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(7544), 16, + ACTIONS(9367), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -693802,38 +714976,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [318262] = 3, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(13757), 1, - anon_sym_LF, - ACTIONS(13759), 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, - [318289] = 3, + [318155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8999), 3, + ACTIONS(9389), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9001), 16, + ACTIONS(9391), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -693850,14 +715000,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [318316] = 3, + [318182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9003), 3, + ACTIONS(9369), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9005), 16, + ACTIONS(9371), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -693874,14 +715024,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [318343] = 3, + [318209] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 3, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(14245), 1, + anon_sym_DASH_GT, + ACTIONS(14247), 1, + anon_sym_requires, + ACTIONS(14283), 1, + anon_sym_LBRACE, + STATE(9958), 1, + sym_trailing_return_type, + STATE(11663), 1, + sym_requires_clause, + STATE(8244), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9038), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9064), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [318256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9373), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9013), 16, + ACTIONS(9375), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -693898,45 +715082,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [318370] = 3, + [318283] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(9015), 3, - anon_sym___attribute, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(9576), 1, + anon_sym_LBRACE, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13127), 1, + sym_identifier, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3862), 1, + sym_enumerator_list, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, + sym__scope_resolution, + ACTIONS(14285), 2, + anon_sym_class, + anon_sym_struct, + STATE(3060), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7582), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [318334] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14275), 1, anon_sym_LBRACK, + STATE(8570), 1, + sym_parameter_list, + ACTIONS(9476), 2, + anon_sym___attribute, anon_sym___asm, - ACTIONS(9017), 16, + STATE(8436), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9478), 11, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [318397] = 6, + [318371] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11878), 1, + sym_identifier, + ACTIONS(11880), 1, + anon_sym_LPAREN2, + ACTIONS(11882), 1, + anon_sym_STAR, + ACTIONS(11884), 1, + anon_sym_AMP_AMP, + ACTIONS(11886), 1, + anon_sym_AMP, + ACTIONS(11890), 1, + sym_primitive_type, + STATE(4670), 1, + sym__type_declarator, + STATE(5448), 1, + sym_pointer_type_declarator, + STATE(11657), 1, + sym_ms_based_modifier, + ACTIONS(11888), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5436), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [318418] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(5655), 1, anon_sym_COLON_COLON, - ACTIONS(9959), 1, + ACTIONS(10320), 1, anon_sym_LT, - STATE(8362), 1, + STATE(8449), 1, sym_template_argument_list, - ACTIONS(6210), 4, + ACTIONS(11754), 4, anon_sym___attribute, anon_sym_COLON, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6203), 12, + ACTIONS(6883), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -693949,1321 +715208,911 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [318430] = 15, + [318451] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11929), 1, + sym_identifier, + ACTIONS(11931), 1, + anon_sym_LPAREN2, + ACTIONS(11933), 1, + anon_sym_STAR, + ACTIONS(11935), 1, + anon_sym_AMP_AMP, + ACTIONS(11937), 1, + anon_sym_AMP, + ACTIONS(11941), 1, + sym_primitive_type, + STATE(4770), 1, + sym__type_declarator, + STATE(5594), 1, + sym_pointer_type_declarator, + STATE(11053), 1, + sym_ms_based_modifier, + ACTIONS(11939), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5593), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [318498] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, + anon_sym_LT, + STATE(3735), 1, + sym_template_argument_list, + ACTIONS(6572), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [318529] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + ACTIONS(14287), 1, + anon_sym_LBRACE, + STATE(8252), 1, + sym_parameter_list, + STATE(10657), 1, + sym_trailing_return_type, + STATE(7955), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8458), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9189), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [318576] = 12, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(14255), 1, + anon_sym_PIPE_PIPE, + ACTIONS(14257), 1, + anon_sym_AMP_AMP, + ACTIONS(14259), 1, + anon_sym_PIPE, + ACTIONS(14261), 1, + anon_sym_CARET, + ACTIONS(14263), 1, + anon_sym_AMP, + ACTIONS(14289), 1, + anon_sym_LF, + ACTIONS(14251), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14265), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14269), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14253), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14267), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [318621] = 12, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(14255), 1, + anon_sym_PIPE_PIPE, + ACTIONS(14257), 1, + anon_sym_AMP_AMP, + ACTIONS(14259), 1, + anon_sym_PIPE, + ACTIONS(14261), 1, + anon_sym_CARET, + ACTIONS(14263), 1, + anon_sym_AMP, + ACTIONS(14291), 1, + anon_sym_LF, + ACTIONS(14251), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14265), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14269), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14253), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14267), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [318666] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(9162), 1, - anon_sym_LBRACE, - ACTIONS(10651), 1, - anon_sym_COLON_COLON, - ACTIONS(12736), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13421), 1, sym_identifier, - STATE(2855), 1, + ACTIONS(13425), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3688), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(3832), 1, - sym_enumerator_list, - STATE(8621), 1, + STATE(8649), 1, + sym_access_specifier, + STATE(8762), 1, sym__scope_resolution, - ACTIONS(13933), 2, - anon_sym_class, - anon_sym_struct, - STATE(2874), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(6025), 2, + STATE(9946), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + ACTIONS(13847), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [318481] = 15, + [318715] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(3256), 1, anon_sym_LBRACK_COLON, - ACTIONS(9162), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10114), 1, anon_sym_LBRACE, - ACTIONS(10590), 1, + ACTIONS(11059), 1, anon_sym_COLON_COLON, - ACTIONS(12752), 1, + ACTIONS(13133), 1, sym_identifier, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(7299), 1, + STATE(4272), 1, sym_splice_specifier, - STATE(7602), 1, + STATE(4305), 1, + sym__splice_specialization_specifier, + STATE(4358), 1, sym_enumerator_list, - STATE(8564), 1, + STATE(8676), 1, sym__scope_resolution, - ACTIONS(13935), 2, + ACTIONS(14293), 2, anon_sym_class, anon_sym_struct, - STATE(2874), 2, + STATE(4296), 2, sym_template_type, sym_splice_type_specifier, - STATE(7482), 2, + STATE(6371), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [318532] = 3, + [318766] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9029), 3, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(12277), 1, + anon_sym_LT, + STATE(2648), 1, + sym_template_argument_list, + ACTIONS(7371), 2, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9031), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [318559] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7629), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(7627), 16, + ACTIONS(5657), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [318586] = 11, + [318799] = 3, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(14103), 1, + anon_sym_LF, + ACTIONS(14105), 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, + [318826] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(11429), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - ACTIONS(11544), 1, + ACTIONS(11872), 1, anon_sym_STAR, - ACTIONS(11546), 1, + ACTIONS(11874), 1, anon_sym_AMP_AMP, - ACTIONS(11548), 1, + ACTIONS(11876), 1, anon_sym_AMP, - STATE(4985), 1, + STATE(5227), 1, sym_parameter_list, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(8855), 1, + STATE(8961), 1, sym__abstract_declarator, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(9072), 6, + ACTIONS(9427), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [318629] = 15, + [318869] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 1, + ACTIONS(2300), 1, anon_sym_LBRACK_COLON, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(7992), 1, + ACTIONS(8383), 1, anon_sym_LBRACE, - ACTIONS(10678), 1, + ACTIONS(11010), 1, anon_sym_COLON_COLON, - ACTIONS(12774), 1, + ACTIONS(13135), 1, sym_identifier, - STATE(2431), 1, + STATE(2547), 1, sym_splice_specifier, - STATE(2514), 1, + STATE(2601), 1, sym__splice_specialization_specifier, - STATE(2594), 1, + STATE(2691), 1, sym_enumerator_list, - STATE(8639), 1, + STATE(8682), 1, sym__scope_resolution, - ACTIONS(13937), 2, + ACTIONS(14295), 2, anon_sym_class, anon_sym_struct, - STATE(2400), 2, + STATE(2520), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2534), 2, + STATE(2615), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [318680] = 15, + [318920] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2078), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6989), 1, + ACTIONS(7385), 1, anon_sym_LBRACE, - ACTIONS(10686), 1, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - ACTIONS(12756), 1, + ACTIONS(13119), 1, sym_identifier, - STATE(1997), 1, + STATE(2104), 1, sym_splice_specifier, - STATE(2026), 1, + STATE(2170), 1, sym__splice_specialization_specifier, - STATE(2042), 1, + STATE(2171), 1, sym_enumerator_list, - STATE(8593), 1, + STATE(8763), 1, sym__scope_resolution, - ACTIONS(13939), 2, + ACTIONS(14297), 2, anon_sym_class, anon_sym_struct, - STATE(2067), 2, + STATE(2147), 2, sym_template_type, sym_splice_type_specifier, - STATE(2254), 2, + STATE(2345), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [318731] = 15, + [318971] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2744), 1, + ACTIONS(3104), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(8272), 1, + ACTIONS(8624), 1, anon_sym_LBRACE, - ACTIONS(10711), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(12758), 1, + ACTIONS(13137), 1, sym_identifier, - STATE(2677), 1, + STATE(2742), 1, sym_splice_specifier, - STATE(2837), 1, + STATE(2921), 1, sym__splice_specialization_specifier, - STATE(2922), 1, + STATE(3039), 1, sym_enumerator_list, - STATE(8588), 1, + STATE(8686), 1, sym__scope_resolution, - ACTIONS(13941), 2, + ACTIONS(14299), 2, anon_sym_class, anon_sym_struct, - STATE(2606), 2, + STATE(2690), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2802), 2, + STATE(2934), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [318782] = 15, + [319022] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3443), 1, + ACTIONS(4360), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(9021), 1, + ACTIONS(9413), 1, anon_sym_LBRACE, - ACTIONS(10719), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(12760), 1, + ACTIONS(13152), 1, sym_identifier, - STATE(3640), 1, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(4072), 1, + STATE(4263), 1, sym_splice_specifier, - STATE(4276), 1, + STATE(4379), 1, sym_enumerator_list, - STATE(8571), 1, + STATE(8675), 1, sym__scope_resolution, - ACTIONS(13943), 2, + ACTIONS(14301), 2, anon_sym_class, anon_sym_struct, - STATE(3624), 2, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(4020), 2, + STATE(4051), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [318833] = 15, + [319073] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2648), 1, + ACTIONS(3008), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(8096), 1, + ACTIONS(8472), 1, anon_sym_LBRACE, - ACTIONS(10727), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(12764), 1, + ACTIONS(13156), 1, sym_identifier, - STATE(2519), 1, + STATE(2638), 1, sym_splice_specifier, - STATE(2567), 1, + STATE(2696), 1, sym__splice_specialization_specifier, - STATE(2642), 1, + STATE(2796), 1, sym_enumerator_list, - STATE(8604), 1, + STATE(8687), 1, sym__scope_resolution, - ACTIONS(13945), 2, + ACTIONS(14303), 2, anon_sym_class, anon_sym_struct, - STATE(2467), 2, + STATE(2569), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2577), 2, + STATE(2678), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [318884] = 15, + [319124] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2732), 1, + ACTIONS(3092), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(8100), 1, + ACTIONS(8476), 1, anon_sym_LBRACE, - ACTIONS(10735), 1, + ACTIONS(11097), 1, anon_sym_COLON_COLON, - ACTIONS(12772), 1, + ACTIONS(13100), 1, sym_identifier, - STATE(2530), 1, + STATE(2605), 1, sym_splice_specifier, - STATE(2597), 1, + STATE(2659), 1, sym__splice_specialization_specifier, - STATE(2643), 1, + STATE(2847), 1, sym_enumerator_list, - STATE(8624), 1, + STATE(8702), 1, sym__scope_resolution, - ACTIONS(13947), 2, + ACTIONS(14305), 2, anon_sym_class, anon_sym_struct, - STATE(2469), 2, + STATE(2571), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2598), 2, + STATE(2661), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [318935] = 15, + [319175] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(9021), 1, + ACTIONS(9413), 1, anon_sym_LBRACE, - ACTIONS(10743), 1, + ACTIONS(11111), 1, anon_sym_COLON_COLON, - ACTIONS(12776), 1, + ACTIONS(13104), 1, sym_identifier, - STATE(3634), 1, - sym_splice_specifier, - STATE(3640), 1, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(3818), 1, + STATE(3719), 1, + sym_splice_specifier, + STATE(3901), 1, sym_enumerator_list, - STATE(8631), 1, + STATE(8707), 1, sym__scope_resolution, - ACTIONS(13949), 2, + ACTIONS(14307), 2, anon_sym_class, anon_sym_struct, - STATE(3529), 2, + STATE(3665), 2, sym__class_name, sym_qualified_type_identifier, - STATE(3624), 2, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [318986] = 12, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(13897), 1, - anon_sym_PIPE_PIPE, - ACTIONS(13899), 1, - anon_sym_AMP_AMP, - ACTIONS(13901), 1, - anon_sym_PIPE, - ACTIONS(13903), 1, - anon_sym_CARET, - ACTIONS(13905), 1, - anon_sym_AMP, - ACTIONS(13951), 1, - anon_sym_LF, - ACTIONS(13893), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(13907), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(13911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(13895), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(13909), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [319031] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8955), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8957), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [319058] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9007), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9009), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [319085] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, - anon_sym_LPAREN2, - ACTIONS(11508), 1, - sym_primitive_type, - ACTIONS(11524), 1, - anon_sym_STAR, - ACTIONS(11526), 1, - anon_sym_AMP_AMP, - ACTIONS(11528), 1, - anon_sym_AMP, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(4668), 1, - sym__type_declarator, - STATE(11121), 1, - sym_ms_based_modifier, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [319132] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8992), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8994), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [319159] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, - anon_sym_LPAREN2, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(11500), 1, - anon_sym_AMP_AMP, - ACTIONS(11502), 1, - anon_sym_AMP, - ACTIONS(11508), 1, - sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(9002), 1, - sym__type_declarator, - STATE(10974), 1, - sym_ms_based_modifier, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [319206] = 12, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(13897), 1, - anon_sym_PIPE_PIPE, - ACTIONS(13899), 1, - anon_sym_AMP_AMP, - ACTIONS(13901), 1, - anon_sym_PIPE, - ACTIONS(13903), 1, - anon_sym_CARET, - ACTIONS(13905), 1, - anon_sym_AMP, - ACTIONS(13953), 1, - anon_sym_LF, - ACTIONS(13893), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(13907), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(13911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(13895), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(13909), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [319251] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(13879), 1, - anon_sym_DASH_GT, - ACTIONS(13881), 1, - anon_sym_requires, - ACTIONS(13955), 1, - anon_sym_LBRACE, - STATE(9570), 1, - sym_trailing_return_type, - STATE(11423), 1, - sym_requires_clause, - STATE(8728), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(8902), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8908), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13477), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [319298] = 12, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(13897), 1, - anon_sym_PIPE_PIPE, - ACTIONS(13899), 1, - anon_sym_AMP_AMP, - ACTIONS(13901), 1, - anon_sym_PIPE, - ACTIONS(13903), 1, - anon_sym_CARET, - ACTIONS(13905), 1, - anon_sym_AMP, - ACTIONS(13957), 1, - anon_sym_LF, - ACTIONS(13893), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(13907), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(13911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(13895), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(13909), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [319343] = 12, - ACTIONS(13686), 1, + [319226] = 12, + ACTIONS(14065), 1, sym_comment, - ACTIONS(13897), 1, + ACTIONS(14255), 1, anon_sym_PIPE_PIPE, - ACTIONS(13899), 1, + ACTIONS(14257), 1, anon_sym_AMP_AMP, - ACTIONS(13901), 1, + ACTIONS(14259), 1, anon_sym_PIPE, - ACTIONS(13903), 1, + ACTIONS(14261), 1, anon_sym_CARET, - ACTIONS(13905), 1, + ACTIONS(14263), 1, anon_sym_AMP, - ACTIONS(13959), 1, + ACTIONS(14309), 1, anon_sym_LF, - ACTIONS(13893), 2, + ACTIONS(14251), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13907), 2, + ACTIONS(14265), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13911), 2, + ACTIONS(14269), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(13895), 3, + ACTIONS(14253), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(13909), 4, + ACTIONS(14267), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [319388] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(2875), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(9806), 1, - anon_sym_LBRACE, - ACTIONS(10705), 1, - anon_sym_COLON_COLON, - ACTIONS(12754), 1, - sym_identifier, - STATE(4067), 1, - sym_splice_specifier, - STATE(4189), 1, - sym__splice_specialization_specifier, - STATE(4281), 1, - sym_enumerator_list, - STATE(8549), 1, - sym__scope_resolution, - ACTIONS(13961), 2, - anon_sym_class, - anon_sym_struct, - STATE(4170), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6226), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [319439] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13921), 1, - anon_sym_LBRACK, - STATE(8413), 1, - sym_parameter_list, - ACTIONS(8947), 2, - anon_sym___attribute, - anon_sym___asm, - STATE(8257), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8949), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [319476] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13046), 1, - sym_identifier, - ACTIONS(13050), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8541), 1, - sym_access_specifier, - STATE(8576), 1, - sym__scope_resolution, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(9431), 2, - sym__class_name, - sym_qualified_type_identifier, - ACTIONS(13489), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [319525] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(9162), 1, - anon_sym_LBRACE, - ACTIONS(10293), 1, - anon_sym_COLON_COLON, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(12742), 1, - sym_identifier, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3832), 1, - sym_enumerator_list, - STATE(7086), 1, - sym_splice_specifier, - STATE(8605), 1, - sym__scope_resolution, - ACTIONS(13963), 2, - anon_sym_class, - anon_sym_struct, - STATE(2874), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7488), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [319576] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(2078), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(6989), 1, - anon_sym_LBRACE, - ACTIONS(10686), 1, - anon_sym_COLON_COLON, - ACTIONS(12756), 1, - sym_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, - sym__splice_specialization_specifier, - STATE(2042), 1, - sym_enumerator_list, - STATE(8593), 1, - sym__scope_resolution, - ACTIONS(13965), 2, - anon_sym_class, - anon_sym_struct, - STATE(2067), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3927), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [319627] = 12, - ACTIONS(13686), 1, + [319271] = 12, + ACTIONS(14065), 1, sym_comment, - ACTIONS(13897), 1, + ACTIONS(14255), 1, anon_sym_PIPE_PIPE, - ACTIONS(13899), 1, + ACTIONS(14257), 1, anon_sym_AMP_AMP, - ACTIONS(13901), 1, + ACTIONS(14259), 1, anon_sym_PIPE, - ACTIONS(13903), 1, + ACTIONS(14261), 1, anon_sym_CARET, - ACTIONS(13905), 1, + ACTIONS(14263), 1, anon_sym_AMP, - ACTIONS(13967), 1, + ACTIONS(14311), 1, anon_sym_LF, - ACTIONS(13893), 2, + ACTIONS(14251), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13907), 2, + ACTIONS(14265), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13911), 2, + ACTIONS(14269), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(13895), 3, + ACTIONS(14253), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(13909), 4, + ACTIONS(14267), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [319672] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8087), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8089), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [319699] = 12, - ACTIONS(13686), 1, + [319316] = 12, + ACTIONS(14065), 1, sym_comment, - ACTIONS(13897), 1, + ACTIONS(14255), 1, anon_sym_PIPE_PIPE, - ACTIONS(13899), 1, + ACTIONS(14257), 1, anon_sym_AMP_AMP, - ACTIONS(13901), 1, + ACTIONS(14259), 1, anon_sym_PIPE, - ACTIONS(13903), 1, + ACTIONS(14261), 1, anon_sym_CARET, - ACTIONS(13905), 1, + ACTIONS(14263), 1, anon_sym_AMP, - ACTIONS(13969), 1, + ACTIONS(14313), 1, anon_sym_LF, - ACTIONS(13893), 2, + ACTIONS(14251), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13907), 2, + ACTIONS(14265), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13911), 2, + ACTIONS(14269), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(13895), 3, + ACTIONS(14253), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(13909), 4, + ACTIONS(14267), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [319744] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(13879), 1, - anon_sym_DASH_GT, - ACTIONS(13881), 1, - anon_sym_requires, - ACTIONS(13971), 1, - anon_sym_LBRACE, - STATE(9594), 1, - sym_trailing_return_type, - STATE(11038), 1, - sym_requires_clause, - STATE(8124), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(8930), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8928), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13477), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [319791] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(13551), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(13559), 1, - anon_sym_EQ, - ACTIONS(13927), 1, - anon_sym_COLON, - ACTIONS(13973), 1, - anon_sym_SEMI, - STATE(4505), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(9760), 1, - sym_gnu_asm_expression, - STATE(9761), 1, - aux_sym_declaration_repeat1, - ACTIONS(13561), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10081), 2, - sym_argument_list, - sym_initializer_list, - [319846] = 13, + [319361] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11494), 1, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(11496), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(11500), 1, - anon_sym_AMP_AMP, - ACTIONS(11502), 1, - anon_sym_AMP, - ACTIONS(11508), 1, + ACTIONS(11904), 1, sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(8981), 1, - sym__type_declarator, - STATE(10974), 1, - sym_ms_based_modifier, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [319893] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11550), 1, - sym_identifier, - ACTIONS(11552), 1, - anon_sym_LPAREN2, - ACTIONS(11554), 1, + ACTIONS(11906), 1, anon_sym_STAR, - ACTIONS(11556), 1, + ACTIONS(11908), 1, anon_sym_AMP_AMP, - ACTIONS(11558), 1, + ACTIONS(11910), 1, anon_sym_AMP, - ACTIONS(11562), 1, - sym_primitive_type, - STATE(4918), 1, - sym__type_declarator, - STATE(5606), 1, + STATE(3180), 1, sym_pointer_type_declarator, - STATE(10593), 1, + STATE(4938), 1, + sym__type_declarator, + STATE(11304), 1, sym_ms_based_modifier, - ACTIONS(11560), 4, + ACTIONS(11902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5602), 5, + STATE(3152), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [319940] = 15, + [319408] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2744), 1, + ACTIONS(3104), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(8272), 1, + ACTIONS(8624), 1, anon_sym_LBRACE, - ACTIONS(10711), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(12758), 1, + ACTIONS(13137), 1, sym_identifier, - STATE(2677), 1, + STATE(2742), 1, sym_splice_specifier, - STATE(2837), 1, + STATE(2921), 1, sym__splice_specialization_specifier, - STATE(2922), 1, + STATE(3039), 1, sym_enumerator_list, - STATE(8588), 1, + STATE(8686), 1, sym__scope_resolution, - ACTIONS(13975), 2, + ACTIONS(14315), 2, anon_sym_class, anon_sym_struct, - STATE(2802), 2, + STATE(2934), 2, sym_template_type, sym_splice_type_specifier, - STATE(4564), 2, + STATE(4708), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [319991] = 15, - ACTIONS(3), 1, + [319459] = 12, + ACTIONS(14065), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(2078), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(6989), 1, - anon_sym_LBRACE, - ACTIONS(10686), 1, - anon_sym_COLON_COLON, - ACTIONS(12756), 1, - sym_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, - sym__splice_specialization_specifier, - STATE(2042), 1, - sym_enumerator_list, - STATE(8593), 1, - sym__scope_resolution, - ACTIONS(13977), 2, - anon_sym_class, - anon_sym_struct, - STATE(2067), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(2184), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [320042] = 13, + ACTIONS(14255), 1, + anon_sym_PIPE_PIPE, + ACTIONS(14257), 1, + anon_sym_AMP_AMP, + ACTIONS(14259), 1, + anon_sym_PIPE, + ACTIONS(14261), 1, + anon_sym_CARET, + ACTIONS(14263), 1, + anon_sym_AMP, + ACTIONS(14317), 1, + anon_sym_LF, + ACTIONS(14251), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14265), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14269), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14253), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14267), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [319504] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11510), 1, + ACTIONS(11892), 1, sym_identifier, - ACTIONS(11512), 1, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11514), 1, + ACTIONS(11896), 1, anon_sym_STAR, - ACTIONS(11516), 1, + ACTIONS(11898), 1, anon_sym_AMP_AMP, - ACTIONS(11518), 1, + ACTIONS(11900), 1, anon_sym_AMP, - ACTIONS(11522), 1, + ACTIONS(11904), 1, sym_primitive_type, - STATE(8190), 1, - sym__type_declarator, - STATE(8475), 1, + STATE(3180), 1, sym_pointer_type_declarator, - STATE(10589), 1, + STATE(9082), 1, + sym__type_declarator, + STATE(11156), 1, sym_ms_based_modifier, - ACTIONS(11520), 4, + ACTIONS(11902), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(8383), 5, + STATE(3152), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [320089] = 12, - ACTIONS(13686), 1, + [319551] = 12, + ACTIONS(14065), 1, sym_comment, - ACTIONS(13897), 1, + ACTIONS(14255), 1, anon_sym_PIPE_PIPE, - ACTIONS(13899), 1, + ACTIONS(14257), 1, anon_sym_AMP_AMP, - ACTIONS(13901), 1, + ACTIONS(14259), 1, anon_sym_PIPE, - ACTIONS(13903), 1, + ACTIONS(14261), 1, anon_sym_CARET, - ACTIONS(13905), 1, + ACTIONS(14263), 1, anon_sym_AMP, - ACTIONS(13979), 1, + ACTIONS(14319), 1, anon_sym_LF, - ACTIONS(13893), 2, + ACTIONS(14251), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13907), 2, + ACTIONS(14265), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13911), 2, + ACTIONS(14269), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(13895), 3, + ACTIONS(14253), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(13909), 4, + ACTIONS(14267), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [320134] = 3, - ACTIONS(13686), 1, + [319596] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(13787), 1, - anon_sym_LF, - ACTIONS(13789), 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, - [320161] = 13, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13937), 1, + anon_sym_COMMA, + ACTIONS(13939), 1, + anon_sym_LPAREN2, + ACTIONS(13945), 1, + anon_sym_LBRACK, + ACTIONS(13947), 1, + anon_sym_EQ, + ACTIONS(14321), 1, + anon_sym_SEMI, + ACTIONS(14323), 1, + anon_sym_COLON, + STATE(4564), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(10077), 1, + sym_gnu_asm_expression, + STATE(10079), 1, + aux_sym_declaration_repeat1, + ACTIONS(13949), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10418), 2, + sym_argument_list, + sym_initializer_list, + [319651] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11494), 1, - sym_identifier, - ACTIONS(11496), 1, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, + anon_sym_LT, + STATE(3735), 1, + sym_template_argument_list, + ACTIONS(5657), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(11498), 1, - anon_sym_STAR, - ACTIONS(11500), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11502), 1, - anon_sym_AMP, - ACTIONS(11508), 1, - sym_primitive_type, - STATE(3117), 1, - sym_pointer_type_declarator, - STATE(9024), 1, - sym__type_declarator, - STATE(10974), 1, - sym_ms_based_modifier, - ACTIONS(11506), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3115), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [320208] = 3, - ACTIONS(13686), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [319682] = 3, + ACTIONS(14065), 1, sym_comment, - ACTIONS(13855), 1, + ACTIONS(14173), 1, anon_sym_LF, - ACTIONS(13857), 18, + ACTIONS(14175), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -695282,14 +716131,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [320235] = 3, + [319709] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8905), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8907), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [319736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8559), 3, + ACTIONS(7789), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8561), 16, + ACTIONS(7791), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -695306,423 +716179,545 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [320262] = 15, + [319763] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2078), 1, + ACTIONS(4360), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6989), 1, + ACTIONS(9413), 1, anon_sym_LBRACE, - ACTIONS(10686), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(12756), 1, + ACTIONS(13152), 1, sym_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(2042), 1, + STATE(4263), 1, + sym_splice_specifier, + STATE(4379), 1, sym_enumerator_list, - STATE(8593), 1, + STATE(8675), 1, sym__scope_resolution, - ACTIONS(13981), 2, + ACTIONS(14325), 2, anon_sym_class, anon_sym_struct, - STATE(2067), 2, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(3937), 2, + STATE(6340), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [320313] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(11895), 1, - anon_sym_LT, - STATE(2525), 1, - sym_template_argument_list, - ACTIONS(7031), 2, - anon_sym___attribute, - anon_sym_COLON, - ACTIONS(5272), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [320346] = 15, + [319814] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3443), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(9021), 1, + ACTIONS(7385), 1, anon_sym_LBRACE, - ACTIONS(10719), 1, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - ACTIONS(12760), 1, + ACTIONS(13119), 1, sym_identifier, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(4072), 1, + STATE(2104), 1, sym_splice_specifier, - STATE(4276), 1, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2171), 1, sym_enumerator_list, - STATE(8571), 1, + STATE(8763), 1, sym__scope_resolution, - ACTIONS(13983), 2, + ACTIONS(14327), 2, anon_sym_class, anon_sym_struct, - STATE(3624), 2, + STATE(2147), 2, sym_template_type, sym_splice_type_specifier, - STATE(6208), 2, + STATE(3997), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [320397] = 4, + [319865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13985), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(9308), 3, + ACTIONS(9445), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9310), 15, + ACTIONS(9447), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LT, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [320426] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9959), 1, - anon_sym_LT, - STATE(8362), 1, - sym_template_argument_list, - ACTIONS(11399), 4, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6515), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [320459] = 3, - ACTIONS(13686), 1, + anon_sym_requires, + [319892] = 12, + ACTIONS(14065), 1, sym_comment, - ACTIONS(13781), 1, - anon_sym_LF, - ACTIONS(13783), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(14255), 1, anon_sym_PIPE_PIPE, + ACTIONS(14257), 1, anon_sym_AMP_AMP, + ACTIONS(14259), 1, anon_sym_PIPE, + ACTIONS(14261), 1, anon_sym_CARET, + ACTIONS(14263), 1, anon_sym_AMP, + ACTIONS(14329), 1, + anon_sym_LF, + ACTIONS(14251), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14265), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(14269), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14253), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14267), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [320486] = 12, - ACTIONS(13686), 1, + [319937] = 12, + ACTIONS(14065), 1, sym_comment, - ACTIONS(13897), 1, + ACTIONS(14255), 1, anon_sym_PIPE_PIPE, - ACTIONS(13899), 1, + ACTIONS(14257), 1, anon_sym_AMP_AMP, - ACTIONS(13901), 1, + ACTIONS(14259), 1, anon_sym_PIPE, - ACTIONS(13903), 1, + ACTIONS(14261), 1, anon_sym_CARET, - ACTIONS(13905), 1, + ACTIONS(14263), 1, anon_sym_AMP, - ACTIONS(13987), 1, + ACTIONS(14331), 1, anon_sym_LF, - ACTIONS(13893), 2, + ACTIONS(14251), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13907), 2, + ACTIONS(14265), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13911), 2, + ACTIONS(14269), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(13895), 3, + ACTIONS(14253), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(13909), 4, + ACTIONS(14267), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [320531] = 3, + [319982] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(8935), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8937), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(7385), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [320558] = 12, - ACTIONS(13686), 1, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(13119), 1, + sym_identifier, + STATE(2104), 1, + sym_splice_specifier, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2171), 1, + sym_enumerator_list, + STATE(8763), 1, + sym__scope_resolution, + ACTIONS(14333), 2, + anon_sym_class, + anon_sym_struct, + STATE(2147), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4053), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [320033] = 12, + ACTIONS(14065), 1, sym_comment, - ACTIONS(13897), 1, + ACTIONS(14255), 1, anon_sym_PIPE_PIPE, - ACTIONS(13899), 1, + ACTIONS(14257), 1, anon_sym_AMP_AMP, - ACTIONS(13901), 1, + ACTIONS(14259), 1, anon_sym_PIPE, - ACTIONS(13903), 1, + ACTIONS(14261), 1, anon_sym_CARET, - ACTIONS(13905), 1, + ACTIONS(14263), 1, anon_sym_AMP, - ACTIONS(13989), 1, + ACTIONS(14335), 1, anon_sym_LF, - ACTIONS(13893), 2, + ACTIONS(14251), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13907), 2, + ACTIONS(14265), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13911), 2, + ACTIONS(14269), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(13895), 3, + ACTIONS(14253), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14267), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [320078] = 3, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(14185), 1, + anon_sym_LF, + ACTIONS(14187), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(13909), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [320603] = 14, + anon_sym_LT_LT, + anon_sym_GT_GT, + [320105] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(7385), 1, + anon_sym_LBRACE, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(13119), 1, + sym_identifier, + STATE(2104), 1, + sym_splice_specifier, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(2171), 1, + sym_enumerator_list, + STATE(8763), 1, + sym__scope_resolution, + ACTIONS(14337), 2, + anon_sym_class, + anon_sym_struct, + STATE(2147), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(2317), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [320156] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13046), 1, + ACTIONS(13421), 1, sym_identifier, - ACTIONS(13050), 1, + ACTIONS(13425), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8537), 1, + STATE(8660), 1, sym_access_specifier, - STATE(8576), 1, + STATE(8762), 1, sym__scope_resolution, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(9729), 2, + STATE(9481), 2, sym__class_name, sym_qualified_type_identifier, - ACTIONS(13489), 3, + ACTIONS(13847), 3, anon_sym_private, anon_sym_public, anon_sym_protected, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [320652] = 15, + [320205] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(3008), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(9162), 1, + ACTIONS(8472), 1, anon_sym_LBRACE, - ACTIONS(10651), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(12736), 1, + ACTIONS(13156), 1, sym_identifier, - STATE(2855), 1, - sym__splice_specialization_specifier, - STATE(3688), 1, + STATE(2638), 1, sym_splice_specifier, - STATE(3832), 1, + STATE(2696), 1, + sym__splice_specialization_specifier, + STATE(2796), 1, sym_enumerator_list, - STATE(8621), 1, + STATE(8687), 1, sym__scope_resolution, - ACTIONS(13991), 2, + ACTIONS(14339), 2, anon_sym_class, anon_sym_struct, - STATE(2874), 2, + STATE(2678), 2, sym_template_type, sym_splice_type_specifier, - STATE(3612), 2, + STATE(4444), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [320703] = 15, + [320256] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2875), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(9806), 1, - anon_sym_LBRACE, - ACTIONS(10705), 1, - anon_sym_COLON_COLON, - ACTIONS(12754), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13421), 1, sym_identifier, - STATE(4067), 1, - sym_splice_specifier, - STATE(4189), 1, + ACTIONS(13425), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4281), 1, - sym_enumerator_list, - STATE(8549), 1, + STATE(8222), 1, + sym_splice_specifier, + STATE(8619), 1, + sym_access_specifier, + STATE(8762), 1, sym__scope_resolution, - ACTIONS(13993), 2, - anon_sym_class, - anon_sym_struct, - STATE(4031), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4170), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(9763), 2, + sym__class_name, + sym_qualified_type_identifier, + ACTIONS(13847), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [320754] = 12, - ACTIONS(13686), 1, + [320305] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(13897), 1, - anon_sym_PIPE_PIPE, - ACTIONS(13899), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, + anon_sym_LPAREN2, + ACTIONS(11896), 1, + anon_sym_STAR, + ACTIONS(11898), 1, anon_sym_AMP_AMP, - ACTIONS(13901), 1, - anon_sym_PIPE, - ACTIONS(13903), 1, - anon_sym_CARET, - ACTIONS(13905), 1, + ACTIONS(11900), 1, anon_sym_AMP, - ACTIONS(13995), 1, + ACTIONS(11904), 1, + sym_primitive_type, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(9130), 1, + sym__type_declarator, + STATE(11156), 1, + sym_ms_based_modifier, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [320352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9333), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9335), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [320379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7968), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(7966), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [320406] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9337), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9339), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [320433] = 4, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(14111), 1, anon_sym_LF, - ACTIONS(13893), 2, + ACTIONS(14253), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14113), 15, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13907), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(13895), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(13909), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [320799] = 4, - ACTIONS(13686), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [320462] = 3, + ACTIONS(14065), 1, sym_comment, - ACTIONS(13801), 1, + ACTIONS(14169), 1, anon_sym_LF, - ACTIONS(13895), 3, + ACTIONS(14171), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(13803), 15, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -695736,12 +716731,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [320828] = 3, - ACTIONS(13686), 1, + [320489] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(13801), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10554), 1, + anon_sym_LBRACE, + ACTIONS(13164), 1, + sym_identifier, + ACTIONS(13166), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4802), 1, + sym_splice_specifier, + STATE(8705), 1, + sym__scope_resolution, + STATE(9319), 1, + sym_enumerator_list, + ACTIONS(14341), 2, + anon_sym_class, + anon_sym_struct, + STATE(3790), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8996), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [320540] = 3, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(14111), 1, anon_sym_LF, - ACTIONS(13803), 18, + ACTIONS(14113), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -695760,182 +716791,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [320855] = 12, - ACTIONS(13686), 1, + [320567] = 12, + ACTIONS(14065), 1, sym_comment, - ACTIONS(13801), 1, + ACTIONS(14111), 1, anon_sym_LF, - ACTIONS(13803), 1, + ACTIONS(14113), 1, anon_sym_PIPE_PIPE, - ACTIONS(13899), 1, + ACTIONS(14257), 1, anon_sym_AMP_AMP, - ACTIONS(13901), 1, + ACTIONS(14259), 1, anon_sym_PIPE, - ACTIONS(13903), 1, + ACTIONS(14261), 1, anon_sym_CARET, - ACTIONS(13905), 1, + ACTIONS(14263), 1, anon_sym_AMP, - ACTIONS(13893), 2, + ACTIONS(14251), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13907), 2, + ACTIONS(14265), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13911), 2, + ACTIONS(14269), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(13895), 3, + ACTIONS(14253), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(13909), 4, + ACTIONS(14267), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [320900] = 11, - ACTIONS(13686), 1, + [320612] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(13801), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(9576), 1, + anon_sym_LBRACE, + ACTIONS(11105), 1, + anon_sym_COLON_COLON, + ACTIONS(13144), 1, + sym_identifier, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3800), 1, + sym_splice_specifier, + STATE(3862), 1, + sym_enumerator_list, + STATE(8738), 1, + sym__scope_resolution, + ACTIONS(14343), 2, + anon_sym_class, + anon_sym_struct, + STATE(3060), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6136), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [320663] = 11, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(14111), 1, anon_sym_LF, - ACTIONS(13901), 1, + ACTIONS(14259), 1, anon_sym_PIPE, - ACTIONS(13903), 1, + ACTIONS(14261), 1, anon_sym_CARET, - ACTIONS(13905), 1, + ACTIONS(14263), 1, anon_sym_AMP, - ACTIONS(13803), 2, + ACTIONS(14113), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(13893), 2, + ACTIONS(14251), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13907), 2, + ACTIONS(14265), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13911), 2, + ACTIONS(14269), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(13895), 3, + ACTIONS(14253), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(13909), 4, + ACTIONS(14267), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [320943] = 10, - ACTIONS(13686), 1, + [320706] = 10, + ACTIONS(14065), 1, sym_comment, - ACTIONS(13801), 1, + ACTIONS(14111), 1, anon_sym_LF, - ACTIONS(13903), 1, + ACTIONS(14261), 1, anon_sym_CARET, - ACTIONS(13905), 1, + ACTIONS(14263), 1, anon_sym_AMP, - ACTIONS(13893), 2, + ACTIONS(14251), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13907), 2, + ACTIONS(14265), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13911), 2, + ACTIONS(14269), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(13803), 3, + ACTIONS(14113), 3, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - ACTIONS(13895), 3, + ACTIONS(14253), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(13909), 4, + ACTIONS(14267), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [320984] = 9, - ACTIONS(13686), 1, + [320747] = 9, + ACTIONS(14065), 1, sym_comment, - ACTIONS(13801), 1, + ACTIONS(14111), 1, anon_sym_LF, - ACTIONS(13905), 1, + ACTIONS(14263), 1, anon_sym_AMP, - ACTIONS(13893), 2, + ACTIONS(14251), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13907), 2, + ACTIONS(14265), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13911), 2, + ACTIONS(14269), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(13895), 3, + ACTIONS(14253), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(13803), 4, + ACTIONS(14113), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(13909), 4, + ACTIONS(14267), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [321023] = 8, - ACTIONS(13686), 1, + [320786] = 8, + ACTIONS(14065), 1, sym_comment, - ACTIONS(13801), 1, + ACTIONS(14111), 1, anon_sym_LF, - ACTIONS(13893), 2, + ACTIONS(14251), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13907), 2, + ACTIONS(14265), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13911), 2, + ACTIONS(14269), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(13895), 3, + ACTIONS(14253), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(13909), 4, + ACTIONS(14267), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(13803), 5, + ACTIONS(14113), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - [321060] = 7, - ACTIONS(13686), 1, + [320823] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(13801), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10988), 1, + anon_sym_COLON_COLON, + ACTIONS(13131), 1, + anon_sym_LBRACE, + ACTIONS(13168), 1, + sym_identifier, + STATE(6581), 1, + sym_splice_specifier, + STATE(7121), 1, + sym__splice_specialization_specifier, + STATE(7594), 1, + sym_enumerator_list, + STATE(8700), 1, + sym__scope_resolution, + ACTIONS(14345), 2, + anon_sym_class, + anon_sym_struct, + STATE(7122), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7274), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [320874] = 7, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(14111), 1, anon_sym_LF, - ACTIONS(13893), 2, + ACTIONS(14251), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13911), 2, + ACTIONS(14269), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(13895), 3, + ACTIONS(14253), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(13909), 4, + ACTIONS(14267), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(13803), 7, + ACTIONS(14113), 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, + [320909] = 6, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(14111), 1, + anon_sym_LF, + ACTIONS(14251), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14269), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14253), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14113), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -695943,58 +717069,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [321095] = 15, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [320942] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2648), 1, + ACTIONS(3092), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(8096), 1, + ACTIONS(8476), 1, anon_sym_LBRACE, - ACTIONS(10727), 1, + ACTIONS(11097), 1, anon_sym_COLON_COLON, - ACTIONS(12764), 1, + ACTIONS(13100), 1, sym_identifier, - STATE(2519), 1, + STATE(2605), 1, sym_splice_specifier, - STATE(2567), 1, + STATE(2659), 1, sym__splice_specialization_specifier, - STATE(2642), 1, + STATE(2847), 1, sym_enumerator_list, - STATE(8604), 1, + STATE(8702), 1, sym__scope_resolution, - ACTIONS(13997), 2, + ACTIONS(14347), 2, anon_sym_class, anon_sym_struct, - STATE(2577), 2, + STATE(2661), 2, sym_template_type, sym_splice_type_specifier, - STATE(4425), 2, + STATE(4487), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [321146] = 6, - ACTIONS(13686), 1, + [320993] = 12, + ACTIONS(14065), 1, sym_comment, - ACTIONS(13801), 1, + ACTIONS(14255), 1, + anon_sym_PIPE_PIPE, + ACTIONS(14257), 1, + anon_sym_AMP_AMP, + ACTIONS(14259), 1, + anon_sym_PIPE, + ACTIONS(14261), 1, + anon_sym_CARET, + ACTIONS(14263), 1, + anon_sym_AMP, + ACTIONS(14349), 1, anon_sym_LF, - ACTIONS(13893), 2, + ACTIONS(14251), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13911), 2, + ACTIONS(14265), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14269), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(13895), 3, + ACTIONS(14253), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14267), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [321038] = 5, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(14111), 1, + anon_sym_LF, + ACTIONS(14251), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14253), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(13803), 11, + ACTIONS(14113), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -696006,19 +717166,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [321179] = 5, - ACTIONS(13686), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [321069] = 12, + ACTIONS(14065), 1, sym_comment, - ACTIONS(13801), 1, + ACTIONS(14255), 1, + anon_sym_PIPE_PIPE, + ACTIONS(14257), 1, + anon_sym_AMP_AMP, + ACTIONS(14259), 1, + anon_sym_PIPE, + ACTIONS(14261), 1, + anon_sym_CARET, + ACTIONS(14263), 1, + anon_sym_AMP, + ACTIONS(14351), 1, + anon_sym_LF, + ACTIONS(14251), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14265), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14269), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14253), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14267), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [321114] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(9413), 1, + anon_sym_LBRACE, + ACTIONS(11111), 1, + anon_sym_COLON_COLON, + ACTIONS(13104), 1, + sym_identifier, + STATE(3711), 1, + sym__splice_specialization_specifier, + STATE(3719), 1, + sym_splice_specifier, + STATE(3901), 1, + sym_enumerator_list, + STATE(8707), 1, + sym__scope_resolution, + ACTIONS(14353), 2, + anon_sym_class, + anon_sym_struct, + STATE(3728), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6053), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [321165] = 3, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(14199), 1, anon_sym_LF, - ACTIONS(13893), 2, + ACTIONS(14201), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(13803), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -696032,47 +717261,533 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [321210] = 12, - ACTIONS(13686), 1, + [321192] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(13897), 1, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13937), 1, + anon_sym_COMMA, + ACTIONS(13939), 1, + anon_sym_LPAREN2, + ACTIONS(13945), 1, + anon_sym_LBRACK, + ACTIONS(13947), 1, + anon_sym_EQ, + ACTIONS(14323), 1, + anon_sym_COLON, + ACTIONS(14355), 1, + anon_sym_SEMI, + STATE(4564), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(9976), 1, + sym_gnu_asm_expression, + STATE(9977), 1, + aux_sym_declaration_repeat1, + ACTIONS(13949), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10418), 2, + sym_argument_list, + sym_initializer_list, + [321247] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3486), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, + ACTIONS(10554), 1, + anon_sym_LBRACE, + ACTIONS(13106), 1, + sym_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4504), 1, + sym_splice_specifier, + STATE(4701), 1, + sym_enumerator_list, + STATE(8716), 1, + sym__scope_resolution, + ACTIONS(14357), 2, + anon_sym_class, + anon_sym_struct, + STATE(3790), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4612), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [321298] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(12277), 1, + anon_sym_LT, + STATE(2648), 1, + sym_template_argument_list, + ACTIONS(6565), 2, + anon_sym___attribute, + anon_sym_COLON, + ACTIONS(6572), 14, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [321331] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, + anon_sym_LPAREN2, + ACTIONS(11896), 1, + anon_sym_STAR, + ACTIONS(11898), 1, + anon_sym_AMP_AMP, + ACTIONS(11900), 1, + anon_sym_AMP, + ACTIONS(11904), 1, + sym_primitive_type, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(9081), 1, + sym__type_declarator, + STATE(11156), 1, + sym_ms_based_modifier, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [321378] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5140), 1, + anon_sym_COLON_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11651), 1, + anon_sym_LBRACE, + ACTIONS(13125), 1, + sym_identifier, + STATE(4802), 1, + sym_splice_specifier, + STATE(5472), 1, + sym__splice_specialization_specifier, + STATE(5979), 1, + sym_enumerator_list, + STATE(8757), 1, + sym__scope_resolution, + ACTIONS(14359), 2, + anon_sym_class, + anon_sym_struct, + STATE(5423), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(5568), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [321429] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14275), 1, + anon_sym_LBRACK, + STATE(8570), 1, + sym_parameter_list, + ACTIONS(9439), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(8436), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9441), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [321466] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11856), 1, + sym_identifier, + ACTIONS(11858), 1, + anon_sym_LPAREN2, + ACTIONS(11860), 1, + anon_sym_STAR, + ACTIONS(11862), 1, + anon_sym_AMP_AMP, + ACTIONS(11864), 1, + anon_sym_AMP, + ACTIONS(11870), 1, + sym_primitive_type, + STATE(8343), 1, + sym__type_declarator, + STATE(8576), 1, + sym_pointer_type_declarator, + STATE(11686), 1, + sym_ms_based_modifier, + ACTIONS(11868), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(8574), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [321513] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14361), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9697), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9699), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [321542] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13917), 1, + anon_sym_SLASH, + ACTIONS(13919), 1, + anon_sym_PIPE_PIPE, + ACTIONS(13921), 1, + anon_sym_AMP_AMP, + ACTIONS(13923), 1, + anon_sym_PIPE, + ACTIONS(13925), 1, + anon_sym_CARET, + ACTIONS(13927), 1, + anon_sym_AMP, + ACTIONS(14363), 1, + anon_sym_RPAREN, + ACTIONS(13913), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13915), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13929), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(13931), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13933), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(13935), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [321591] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14275), 1, + anon_sym_LBRACK, + STATE(8570), 1, + sym_parameter_list, + ACTIONS(9484), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(8436), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9486), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [321628] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, + anon_sym_LPAREN2, + ACTIONS(11896), 1, + anon_sym_STAR, + ACTIONS(11898), 1, + anon_sym_AMP_AMP, + ACTIONS(11900), 1, + anon_sym_AMP, + ACTIONS(11904), 1, + sym_primitive_type, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(8966), 1, + sym__type_declarator, + STATE(11156), 1, + sym_ms_based_modifier, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [321675] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(9576), 1, + anon_sym_LBRACE, + ACTIONS(11105), 1, + anon_sym_COLON_COLON, + ACTIONS(13144), 1, + sym_identifier, + STATE(3028), 1, + sym__splice_specialization_specifier, + STATE(3800), 1, + sym_splice_specifier, + STATE(3862), 1, + sym_enumerator_list, + STATE(8738), 1, + sym__scope_resolution, + ACTIONS(14365), 2, + anon_sym_class, + anon_sym_struct, + STATE(3060), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3755), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [321726] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3256), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10114), 1, + anon_sym_LBRACE, + ACTIONS(11059), 1, + anon_sym_COLON_COLON, + ACTIONS(13133), 1, + sym_identifier, + STATE(4272), 1, + sym_splice_specifier, + STATE(4305), 1, + sym__splice_specialization_specifier, + STATE(4358), 1, + sym_enumerator_list, + STATE(8676), 1, + sym__scope_resolution, + ACTIONS(14367), 2, + anon_sym_class, + anon_sym_struct, + STATE(4075), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4296), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [321777] = 12, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(14255), 1, + anon_sym_PIPE_PIPE, + ACTIONS(14257), 1, + anon_sym_AMP_AMP, + ACTIONS(14259), 1, + anon_sym_PIPE, + ACTIONS(14261), 1, + anon_sym_CARET, + ACTIONS(14263), 1, + anon_sym_AMP, + ACTIONS(14369), 1, + anon_sym_LF, + ACTIONS(14251), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14265), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14269), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14253), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14267), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [321822] = 12, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(14255), 1, + anon_sym_PIPE_PIPE, + ACTIONS(14257), 1, + anon_sym_AMP_AMP, + ACTIONS(14259), 1, + anon_sym_PIPE, + ACTIONS(14261), 1, + anon_sym_CARET, + ACTIONS(14263), 1, + anon_sym_AMP, + ACTIONS(14371), 1, + anon_sym_LF, + ACTIONS(14251), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14265), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14269), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14253), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14267), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [321867] = 3, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(14221), 1, + anon_sym_LF, + ACTIONS(14223), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(13899), 1, anon_sym_AMP_AMP, - ACTIONS(13901), 1, anon_sym_PIPE, - ACTIONS(13903), 1, anon_sym_CARET, - ACTIONS(13905), 1, anon_sym_AMP, - ACTIONS(13999), 1, - anon_sym_LF, - ACTIONS(13893), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(13907), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(13895), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(13909), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [321255] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + [321894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9078), 3, + ACTIONS(9407), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9080), 16, + ACTIONS(9409), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -696089,14 +717804,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [321282] = 3, + [321921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9082), 3, + ACTIONS(9415), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9084), 16, + ACTIONS(9417), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -696113,103 +717828,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [321309] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - STATE(3601), 1, - sym_template_argument_list, - ACTIONS(5272), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [321340] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(11895), 1, - anon_sym_LT, - STATE(2525), 1, - sym_template_argument_list, - ACTIONS(6201), 2, - anon_sym___attribute, - anon_sym_COLON, - ACTIONS(6208), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [321373] = 15, + [321948] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4780), 1, - anon_sym_COLON_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(11294), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(6469), 1, + anon_sym_COLON_COLON, + ACTIONS(10554), 1, anon_sym_LBRACE, - ACTIONS(12797), 1, + ACTIONS(13117), 1, sym_identifier, - STATE(4691), 1, - sym_splice_specifier, - STATE(5263), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(5847), 1, + STATE(4701), 1, sym_enumerator_list, - STATE(8584), 1, + STATE(5157), 1, + sym_splice_specifier, + STATE(8756), 1, sym__scope_resolution, - ACTIONS(14001), 2, + ACTIONS(14373), 2, anon_sym_class, anon_sym_struct, - STATE(5166), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(5615), 2, + STATE(5468), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [321424] = 3, + [321999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8541), 3, + ACTIONS(9419), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8543), 16, + ACTIONS(9421), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -696226,374 +717888,446 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [321451] = 8, + [322026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13921), 1, - anon_sym_LBRACK, - STATE(8413), 1, - sym_parameter_list, - ACTIONS(8931), 2, + ACTIONS(9423), 3, anon_sym___attribute, + anon_sym_LBRACK, anon_sym___asm, - STATE(8257), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8933), 11, + ACTIONS(9425), 16, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [321488] = 12, - ACTIONS(13686), 1, + anon_sym_requires, + [322053] = 12, + ACTIONS(14065), 1, sym_comment, - ACTIONS(13897), 1, + ACTIONS(14255), 1, anon_sym_PIPE_PIPE, - ACTIONS(13899), 1, + ACTIONS(14257), 1, anon_sym_AMP_AMP, - ACTIONS(13901), 1, + ACTIONS(14259), 1, anon_sym_PIPE, - ACTIONS(13903), 1, + ACTIONS(14261), 1, anon_sym_CARET, - ACTIONS(13905), 1, + ACTIONS(14263), 1, + anon_sym_AMP, + ACTIONS(14375), 1, + anon_sym_LF, + ACTIONS(14251), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14265), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14269), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14253), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14267), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [322098] = 12, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(14255), 1, + anon_sym_PIPE_PIPE, + ACTIONS(14257), 1, + anon_sym_AMP_AMP, + ACTIONS(14259), 1, + anon_sym_PIPE, + ACTIONS(14261), 1, + anon_sym_CARET, + ACTIONS(14263), 1, + anon_sym_AMP, + ACTIONS(14377), 1, + anon_sym_LF, + ACTIONS(14251), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14265), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14269), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14253), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14267), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [322143] = 12, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(14255), 1, + anon_sym_PIPE_PIPE, + ACTIONS(14257), 1, + anon_sym_AMP_AMP, + ACTIONS(14259), 1, + anon_sym_PIPE, + ACTIONS(14261), 1, + anon_sym_CARET, + ACTIONS(14263), 1, anon_sym_AMP, - ACTIONS(14003), 1, + ACTIONS(14379), 1, anon_sym_LF, - ACTIONS(13893), 2, + ACTIONS(14251), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13907), 2, + ACTIONS(14265), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13911), 2, + ACTIONS(14269), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(13895), 3, + ACTIONS(14253), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(13909), 4, + ACTIONS(14267), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [321533] = 8, + [322188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8929), 1, - anon_sym_LBRACK, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - STATE(3121), 1, - sym_parameter_list, - ACTIONS(8931), 2, + ACTIONS(8424), 3, anon_sym___attribute, + anon_sym_LBRACK, anon_sym___asm, - STATE(8366), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8933), 10, + ACTIONS(8422), 16, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [321569] = 9, + anon_sym_requires, + [322215] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 1, - anon_sym_LBRACK, - ACTIONS(10266), 1, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(14245), 1, anon_sym_DASH_GT, - ACTIONS(12790), 1, + ACTIONS(14247), 1, anon_sym_requires, - STATE(7927), 1, + ACTIONS(14381), 1, + anon_sym_LBRACE, + STATE(10012), 1, sym_trailing_return_type, - ACTIONS(12787), 2, - anon_sym_final, - anon_sym_override, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8195), 2, - sym__function_postfix, + STATE(11133), 1, sym_requires_clause, - ACTIONS(7627), 8, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + STATE(8834), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9027), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9066), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [322262] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3486), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10554), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [321607] = 3, + ACTIONS(13106), 1, + sym_identifier, + ACTIONS(13154), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4504), 1, + sym_splice_specifier, + STATE(4701), 1, + sym_enumerator_list, + STATE(8710), 1, + sym__scope_resolution, + ACTIONS(14383), 2, + anon_sym_class, + anon_sym_struct, + STATE(3790), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6379), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [322313] = 3, + ACTIONS(10564), 1, + anon_sym_LF, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(10566), 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, + [322340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8606), 1, + ACTIONS(9296), 3, anon_sym___attribute, - ACTIONS(8608), 17, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9298), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [321633] = 3, + [322367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9440), 3, + ACTIONS(8913), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9442), 15, + ACTIONS(8915), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LT, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACK, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [321659] = 8, + anon_sym_requires, + [322394] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8929), 1, - anon_sym_LBRACK, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - STATE(3121), 1, + ACTIONS(14275), 1, + anon_sym_LBRACK, + STATE(8570), 1, sym_parameter_list, - ACTIONS(9127), 2, + ACTIONS(9300), 2, anon_sym___attribute, anon_sym___asm, - STATE(8366), 2, + STATE(8436), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9129), 10, + ACTIONS(9302), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [321695] = 16, + [322431] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(13551), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(13559), 1, - anon_sym_EQ, - ACTIONS(13587), 1, - anon_sym_SEMI, - STATE(4505), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(9948), 1, - sym_gnu_asm_expression, - STATE(9954), 1, - aux_sym_declaration_repeat1, - ACTIONS(13561), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10081), 2, - sym_argument_list, - sym_initializer_list, - [321747] = 3, + ACTIONS(11904), 1, + sym_primitive_type, + ACTIONS(11912), 1, + anon_sym_STAR, + ACTIONS(11914), 1, + anon_sym_AMP_AMP, + ACTIONS(11916), 1, + anon_sym_AMP, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(3698), 1, + sym__type_declarator, + STATE(11037), 1, + sym_ms_based_modifier, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [322478] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 1, - anon_sym___attribute, - ACTIONS(8667), 17, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11892), 1, + sym_identifier, + ACTIONS(11894), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(11896), 1, + anon_sym_STAR, + ACTIONS(11898), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - 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, - [321773] = 16, + ACTIONS(11900), 1, + anon_sym_AMP, + ACTIONS(11904), 1, + sym_primitive_type, + STATE(3180), 1, + sym_pointer_type_declarator, + STATE(9104), 1, + sym__type_declarator, + STATE(11156), 1, + sym_ms_based_modifier, + ACTIONS(11902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3152), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [322525] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(13551), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(13559), 1, - anon_sym_EQ, - ACTIONS(13692), 1, - anon_sym_SEMI, - STATE(4505), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(9905), 1, - sym_gnu_asm_expression, - STATE(9907), 1, - aux_sym_declaration_repeat1, - ACTIONS(13561), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8286), 2, + STATE(7987), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10081), 2, - sym_argument_list, - sym_initializer_list, - [321825] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(117), 1, + ACTIONS(14387), 3, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13549), 1, + ACTIONS(14385), 12, anon_sym_COMMA, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(13690), 1, - anon_sym_try, - ACTIONS(14005), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(646), 1, - sym_compound_statement, - STATE(650), 1, - sym_try_statement, - STATE(4505), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(9833), 1, - sym_gnu_asm_expression, - STATE(9839), 1, - aux_sym_declaration_repeat1, - ACTIONS(13561), 2, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [321879] = 17, + anon_sym_GT2, + anon_sym_try, + [322555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, + ACTIONS(9888), 3, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym___asm, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13549), 1, + ACTIONS(9890), 15, anon_sym_COMMA, - ACTIONS(13551), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(13925), 1, + anon_sym_LT, anon_sym_SEMI, - ACTIONS(14007), 1, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_EQ, - STATE(4505), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(9715), 1, - sym_gnu_asm_expression, - STATE(9716), 1, - aux_sym_declaration_repeat1, - STATE(9754), 1, - sym_initializer_list, - STATE(10081), 1, - sym_argument_list, - ACTIONS(13561), 2, anon_sym_asm, anon_sym___asm__, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [321933] = 3, + anon_sym_GT2, + anon_sym_try, + [322581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8516), 1, + ACTIONS(8893), 1, anon_sym___attribute, - ACTIONS(8518), 17, + ACTIONS(8895), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -696611,37 +718345,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [321959] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9959), 1, - anon_sym_LT, - STATE(8362), 1, - sym_template_argument_list, - ACTIONS(9225), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9227), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [321989] = 3, + [322607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8599), 1, + ACTIONS(8901), 1, anon_sym___attribute, - ACTIONS(8601), 17, + ACTIONS(8903), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -696659,27 +718368,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [322015] = 9, + [322633] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14235), 1, + anon_sym_COLON_COLON, + ACTIONS(14389), 1, + sym_identifier, + ACTIONS(14391), 1, + anon_sym_template, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(5726), 1, + sym_template_method, + STATE(5728), 1, + sym_dependent_field_identifier, + STATE(5730), 1, + sym_qualified_field_identifier, + STATE(8222), 1, + sym_splice_specifier, + STATE(8371), 1, + sym__scope_resolution, + STATE(10434), 1, + sym_operator_name, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [322683] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8087), 1, + ACTIONS(8905), 1, anon_sym_LBRACK, - ACTIONS(10266), 1, - anon_sym_DASH_GT, - ACTIONS(12887), 1, + ACTIONS(10382), 1, anon_sym_requires, - STATE(7928), 1, + ACTIONS(10624), 1, + anon_sym_DASH_GT, + STATE(8051), 1, sym_trailing_return_type, - ACTIONS(12884), 2, + ACTIONS(8160), 2, anon_sym_final, anon_sym_override, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8239), 2, + STATE(8363), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8089), 8, + ACTIONS(8907), 8, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, @@ -696688,27 +718432,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [322053] = 9, + [322721] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8087), 1, + ACTIONS(7968), 1, anon_sym_LBRACK, - ACTIONS(10022), 1, + ACTIONS(10382), 1, anon_sym_requires, - ACTIONS(10266), 1, + ACTIONS(10624), 1, anon_sym_DASH_GT, - STATE(7944), 1, + STATE(8057), 1, sym_trailing_return_type, - ACTIONS(7821), 2, + ACTIONS(8160), 2, anon_sym_final, anon_sym_override, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8239), 2, + STATE(8358), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8089), 8, + ACTIONS(7966), 8, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, @@ -696717,232 +718461,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [322091] = 5, + [322759] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - STATE(7871), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9211), 3, + ACTIONS(8424), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9213), 12, + ACTIONS(10921), 1, + anon_sym_requires, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8550), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8422), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [322121] = 14, + [322793] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(14009), 1, - sym_identifier, - ACTIONS(14011), 1, + ACTIONS(14205), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + ACTIONS(14393), 1, + sym_identifier, + ACTIONS(14395), 1, + anon_sym_template, + STATE(3768), 1, + sym_template_method, + STATE(3780), 1, + sym_dependent_field_identifier, + STATE(3785), 1, + sym_qualified_field_identifier, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8290), 1, + STATE(8375), 1, sym__scope_resolution, - STATE(10070), 1, - sym_field_initializer, - STATE(10170), 1, + STATE(10254), 1, sym_operator_name, - STATE(9412), 2, - sym_template_method, - sym_qualified_field_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [322169] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7629), 1, - anon_sym___attribute, - ACTIONS(10753), 1, - anon_sym_requires, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7627), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [322203] = 3, + [322843] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8618), 1, + ACTIONS(10186), 1, anon_sym___attribute, - ACTIONS(8620), 17, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13795), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(14397), 1, 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, - [322229] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8622), 1, - anon_sym___attribute, - ACTIONS(8624), 17, + STATE(4330), 1, + sym_parameter_list, + STATE(8243), 1, + sym__function_declarator_seq, + ACTIONS(10184), 13, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, + 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, - [322255] = 14, + [322877] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(14009), 1, + ACTIONS(14399), 1, sym_identifier, - ACTIONS(14011), 1, + ACTIONS(14401), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + ACTIONS(14403), 1, + anon_sym_template, + STATE(3768), 1, + sym_template_method, + STATE(3780), 1, + sym_dependent_field_identifier, + STATE(3785), 1, + sym_qualified_field_identifier, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8290), 1, + STATE(8377), 1, sym__scope_resolution, - STATE(9756), 1, - sym_field_initializer, - STATE(10170), 1, + STATE(10296), 1, sym_operator_name, - STATE(9412), 2, - sym_template_method, - sym_qualified_field_identifier, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [322303] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8959), 1, - anon_sym___attribute, - ACTIONS(14013), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(14015), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8961), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [322333] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8541), 1, - anon_sym_LBRACK, - ACTIONS(10266), 1, - anon_sym_DASH_GT, - ACTIONS(13514), 1, - anon_sym_requires, - STATE(7931), 1, - sym_trailing_return_type, - ACTIONS(13511), 2, - anon_sym_final, - anon_sym_override, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8208), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8543), 8, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [322371] = 3, + [322927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8614), 1, + ACTIONS(8954), 1, anon_sym___attribute, - ACTIONS(8616), 17, + ACTIONS(8956), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -696960,831 +718608,546 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [322397] = 9, + [322953] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7546), 1, + ACTIONS(10198), 1, + anon_sym___attribute, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14397), 1, anon_sym_LBRACK, - ACTIONS(10266), 1, - anon_sym_DASH_GT, - ACTIONS(12170), 1, - anon_sym_requires, - STATE(7926), 1, - sym_trailing_return_type, - ACTIONS(12167), 2, - anon_sym_final, - anon_sym_override, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8170), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 8, + STATE(4330), 1, + sym_parameter_list, + STATE(8243), 1, + sym__function_declarator_seq, + ACTIONS(10196), 13, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [322435] = 17, + anon_sym_requires, + [322987] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(1162), 1, - anon_sym_LBRACE, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(10202), 1, + anon_sym___attribute, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(13557), 1, + ACTIONS(14397), 1, anon_sym_LBRACK, - ACTIONS(13656), 1, - anon_sym_try, - ACTIONS(14017), 1, - anon_sym_SEMI, - STATE(780), 1, - sym_compound_statement, - STATE(782), 1, - sym_try_statement, - STATE(4505), 1, + STATE(4330), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8243), 1, sym__function_declarator_seq, - STATE(9929), 1, - sym_gnu_asm_expression, - STATE(9933), 1, - aux_sym_declaration_repeat1, - ACTIONS(13561), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [322489] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8541), 1, - anon_sym___attribute, - ACTIONS(10753), 1, - anon_sym_requires, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8408), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8543), 10, + ACTIONS(10200), 13, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, + 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, - [322523] = 7, + anon_sym_requires, + [323021] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7546), 1, + ACTIONS(9139), 1, anon_sym___attribute, - ACTIONS(10753), 1, - anon_sym_requires, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8444), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [322557] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5592), 1, + ACTIONS(9141), 13, anon_sym_DOT_DOT_DOT, - ACTIONS(13205), 1, - anon_sym_COLON_COLON, - ACTIONS(14019), 1, - sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7872), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - ACTIONS(5594), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(10386), 2, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [322603] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8939), 1, - anon_sym___attribute, - ACTIONS(14015), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8941), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [322631] = 3, + [323051] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 1, + ACTIONS(10190), 1, anon_sym___attribute, - ACTIONS(8631), 17, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14397), 1, + anon_sym_LBRACK, + STATE(4330), 1, + sym_parameter_list, + STATE(8243), 1, + sym__function_declarator_seq, + ACTIONS(10188), 13, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, + 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, - [322657] = 17, + [323085] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(894), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(13591), 1, - anon_sym_try, - ACTIONS(14021), 1, - anon_sym_SEMI, - STATE(831), 1, - sym_compound_statement, - STATE(832), 1, - sym_try_statement, - STATE(4505), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(9542), 1, - sym_gnu_asm_expression, - STATE(9543), 1, - aux_sym_declaration_repeat1, - ACTIONS(13561), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [322711] = 17, - ACTIONS(3), 1, - sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(305), 1, - anon_sym_LBRACE, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(13696), 1, + ACTIONS(13987), 1, anon_sym_try, - ACTIONS(14023), 1, + ACTIONS(14405), 1, anon_sym_SEMI, - STATE(435), 1, + STATE(912), 1, sym_compound_statement, - STATE(436), 1, + STATE(913), 1, sym_try_statement, - STATE(4505), 1, + STATE(4564), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(9973), 1, + STATE(10168), 1, sym_gnu_asm_expression, - STATE(9974), 1, + STATE(10188), 1, aux_sym_declaration_repeat1, - ACTIONS(13561), 2, + ACTIONS(13949), 2, anon_sym_asm, anon_sym___asm__, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [322765] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13715), 1, - anon_sym_COLON_COLON, - ACTIONS(14025), 1, - sym_identifier, - ACTIONS(14027), 1, - anon_sym_template, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(5527), 1, - sym_template_method, - STATE(5536), 1, - sym_dependent_field_identifier, - STATE(5537), 1, - sym_qualified_field_identifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8275), 1, - sym__scope_resolution, - STATE(10202), 1, - sym_operator_name, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [322815] = 7, + [323139] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8087), 1, + ACTIONS(10194), 1, anon_sym___attribute, - ACTIONS(10753), 1, - anon_sym_requires, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8397), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8089), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13795), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [322849] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9308), 3, - anon_sym___attribute, + ACTIONS(14397), 1, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9310), 15, + STATE(4330), 1, + sym_parameter_list, + STATE(8243), 1, + sym__function_declarator_seq, + ACTIONS(10192), 13, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LT, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [322875] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8651), 1, - anon_sym___attribute, - ACTIONS(8653), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - 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, - [322901] = 8, + [323173] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8929), 1, - anon_sym_LBRACK, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(10206), 1, + anon_sym___attribute, + ACTIONS(13795), 1, anon_sym_LPAREN2, - STATE(3121), 1, + ACTIONS(14397), 1, + anon_sym_LBRACK, + STATE(4330), 1, sym_parameter_list, - ACTIONS(9033), 2, - anon_sym___attribute, - anon_sym___asm, - STATE(8366), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9035), 10, + STATE(8243), 1, + sym__function_declarator_seq, + ACTIONS(10204), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [322937] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8655), 1, - anon_sym___attribute, - ACTIONS(8657), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - 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, - [322963] = 3, + [323207] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 1, + ACTIONS(10174), 1, anon_sym___attribute, - ACTIONS(8631), 17, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14397), 1, + anon_sym_LBRACK, + STATE(4330), 1, + sym_parameter_list, + STATE(8243), 1, + sym__function_declarator_seq, + ACTIONS(10172), 13, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, + 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, - [322989] = 6, + [323241] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14031), 2, - anon_sym___attribute__, + ACTIONS(10210), 1, anon_sym___attribute, - ACTIONS(14036), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(8282), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - ACTIONS(14034), 4, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK_COLON, - ACTIONS(14029), 7, - anon_sym_COLON, - anon_sym___declspec, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - [323021] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(6095), 1, - anon_sym_STAR, - ACTIONS(6097), 1, - anon_sym_AMP_AMP, - ACTIONS(6099), 1, - anon_sym_AMP, - ACTIONS(11429), 1, + ACTIONS(14397), 1, anon_sym_LBRACK, - STATE(4601), 1, + STATE(4330), 1, sym_parameter_list, - STATE(8393), 1, + STATE(8243), 1, sym__function_declarator_seq, - STATE(8876), 1, - sym__abstract_declarator, - ACTIONS(9072), 5, + ACTIONS(10208), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [323063] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7546), 1, - anon_sym_LBRACK, - ACTIONS(10022), 1, - anon_sym_requires, - ACTIONS(10266), 1, - anon_sym_DASH_GT, - STATE(7917), 1, - sym_trailing_return_type, - ACTIONS(7821), 2, - anon_sym_final, - anon_sym_override, - STATE(8010), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8170), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 8, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [323101] = 15, + anon_sym_requires, + [323275] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13821), 1, + ACTIONS(14051), 1, anon_sym_COLON_COLON, - ACTIONS(14039), 1, + ACTIONS(14407), 1, sym_identifier, - ACTIONS(14041), 1, + ACTIONS(14409), 1, anon_sym_template, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(5802), 1, + STATE(5709), 1, sym_template_method, - STATE(5805), 1, + STATE(5713), 1, sym_dependent_field_identifier, - STATE(5811), 1, + STATE(5714), 1, sym_qualified_field_identifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8285), 1, + STATE(8388), 1, sym__scope_resolution, - STATE(10431), 1, + STATE(10211), 1, sym_operator_name, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [323151] = 5, + [323325] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - STATE(7871), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14045), 3, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(117), 1, anon_sym___asm, - ACTIONS(14043), 12, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13937), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13939), 1, anon_sym_LPAREN2, + ACTIONS(13941), 1, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, + ACTIONS(13945), 1, + anon_sym_LBRACK, + ACTIONS(13947), 1, anon_sym_EQ, + STATE(4564), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(9730), 1, + sym_gnu_asm_expression, + STATE(9731), 1, + aux_sym_declaration_repeat1, + ACTIONS(13949), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [323181] = 17, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10418), 2, + sym_argument_list, + sym_initializer_list, + [323377] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(10215), 1, + ACTIONS(1113), 1, anon_sym_LBRACE, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13473), 1, - anon_sym_try, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(14047), 1, + ACTIONS(14083), 1, + anon_sym_try, + ACTIONS(14411), 1, anon_sym_SEMI, - STATE(3242), 1, + STATE(684), 1, sym_compound_statement, - STATE(3249), 1, + STATE(685), 1, sym_try_statement, - STATE(4505), 1, + STATE(4564), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(9665), 1, + STATE(9809), 1, sym_gnu_asm_expression, - STATE(9666), 1, + STATE(9810), 1, aux_sym_declaration_repeat1, - ACTIONS(13561), 2, + ACTIONS(13949), 2, anon_sym_asm, anon_sym___asm__, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [323235] = 15, + [323431] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13837), 1, + ACTIONS(14141), 1, anon_sym_COLON_COLON, - ACTIONS(14049), 1, + ACTIONS(14413), 1, sym_identifier, - ACTIONS(14051), 1, + ACTIONS(14415), 1, anon_sym_template, - STATE(3667), 1, - sym_template_method, - STATE(3677), 1, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(5788), 1, sym_dependent_field_identifier, - STATE(3680), 1, + STATE(5794), 1, + sym_template_method, + STATE(5842), 1, sym_qualified_field_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8288), 1, + STATE(8391), 1, sym__scope_resolution, - STATE(10235), 1, + STATE(10416), 1, sym_operator_name, - STATE(10976), 5, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [323285] = 15, + [323481] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13747), 1, - anon_sym_COLON_COLON, - ACTIONS(14049), 1, - sym_identifier, - ACTIONS(14053), 1, - anon_sym_template, - STATE(3667), 1, - sym_template_method, - STATE(3677), 1, - sym_dependent_field_identifier, - STATE(3680), 1, - sym_qualified_field_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8289), 1, - sym__scope_resolution, - STATE(10292), 1, - sym_operator_name, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [323335] = 15, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13937), 1, + anon_sym_COMMA, + ACTIONS(13939), 1, + anon_sym_LPAREN2, + ACTIONS(13945), 1, + anon_sym_LBRACK, + ACTIONS(13947), 1, + anon_sym_EQ, + ACTIONS(13985), 1, + anon_sym_SEMI, + STATE(4564), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(9692), 1, + sym_gnu_asm_expression, + STATE(9729), 1, + aux_sym_declaration_repeat1, + ACTIONS(13949), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10418), 2, + sym_argument_list, + sym_initializer_list, + [323533] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(14011), 1, + ACTIONS(14401), 1, anon_sym_COLON_COLON, - ACTIONS(14055), 1, + ACTIONS(14417), 1, sym_identifier, - ACTIONS(14057), 1, - anon_sym_template, - STATE(3667), 1, - sym_template_method, - STATE(3677), 1, - sym_dependent_field_identifier, - STATE(3680), 1, - sym_qualified_field_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8290), 1, + STATE(8377), 1, sym__scope_resolution, - STATE(10170), 1, + STATE(10296), 1, sym_operator_name, - STATE(10976), 5, + STATE(10582), 1, + sym_field_initializer, + STATE(9461), 2, + sym_template_method, + sym_qualified_field_identifier, + STATE(10768), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [323385] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8929), 1, - anon_sym_LBRACK, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - STATE(3121), 1, - sym_parameter_list, - ACTIONS(8923), 2, - anon_sym___attribute, - anon_sym___asm, - STATE(8366), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8925), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [323421] = 16, + [323581] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(4127), 1, + ACTIONS(4676), 1, anon_sym_LBRACE, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(13551), 1, + ACTIONS(13939), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(13559), 1, + ACTIONS(13947), 1, anon_sym_EQ, - ACTIONS(13688), 1, + ACTIONS(14321), 1, anon_sym_SEMI, - STATE(4505), 1, + STATE(4564), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(9732), 1, + STATE(10077), 1, sym_gnu_asm_expression, - STATE(9734), 1, + STATE(10079), 1, aux_sym_declaration_repeat1, - ACTIONS(13561), 2, + ACTIONS(13949), 2, anon_sym_asm, anon_sym___asm__, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10081), 2, + STATE(10418), 2, sym_argument_list, sym_initializer_list, - [323473] = 7, + [323633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8559), 1, + ACTIONS(8992), 1, anon_sym___attribute, - ACTIONS(10753), 1, + ACTIONS(8994), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + [323659] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7789), 1, + anon_sym___attribute, + ACTIONS(13188), 1, anon_sym_requires, - ACTIONS(10476), 2, + ACTIONS(13146), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8410), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8561), 10, + ACTIONS(7791), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -697795,71 +719158,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [323507] = 16, + [323693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, + ACTIONS(9697), 3, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym___asm, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13549), 1, + ACTIONS(9699), 15, anon_sym_COMMA, - ACTIONS(13551), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(13559), 1, - anon_sym_EQ, - ACTIONS(13652), 1, + anon_sym_LT, anon_sym_SEMI, - STATE(4505), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(9826), 1, - sym_gnu_asm_expression, - STATE(9827), 1, - aux_sym_declaration_repeat1, - ACTIONS(13561), 2, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10081), 2, - sym_argument_list, - sym_initializer_list, - [323559] = 3, + anon_sym_GT2, + anon_sym_try, + [323719] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(7968), 1, anon_sym___attribute, - ACTIONS(8635), 17, + ACTIONS(13236), 1, + anon_sym_requires, + ACTIONS(13202), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8561), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7966), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, 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, - [323585] = 3, + [323753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8610), 1, + ACTIONS(8992), 1, anon_sym___attribute, - ACTIONS(8612), 17, + ACTIONS(8994), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -697877,125 +719231,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [323611] = 5, + [323779] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14401), 1, + anon_sym_COLON_COLON, + ACTIONS(14417), 1, + sym_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(8222), 1, + sym_splice_specifier, + STATE(8377), 1, + sym__scope_resolution, + STATE(9879), 1, + sym_field_initializer, + STATE(10296), 1, + sym_operator_name, + STATE(9461), 2, + sym_template_method, + sym_qualified_field_identifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [323827] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8774), 1, + ACTIONS(8424), 1, anon_sym___attribute, - ACTIONS(10476), 2, + ACTIONS(13485), 1, + anon_sym_requires, + ACTIONS(13396), 2, anon_sym_final, anon_sym_override, - STATE(8304), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - ACTIONS(8776), 13, - anon_sym_DOT_DOT_DOT, + STATE(8550), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8422), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [323641] = 17, + [323861] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10271), 1, - anon_sym_LBRACE, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13455), 1, - anon_sym_try, - ACTIONS(13549), 1, + ACTIONS(8905), 1, + anon_sym___attribute, + ACTIONS(14422), 1, + anon_sym_requires, + ACTIONS(14419), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8560), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8907), 10, anon_sym_COMMA, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(14059), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(3146), 1, - sym_compound_statement, - STATE(3151), 1, - sym_try_statement, - STATE(4505), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(10006), 1, - sym_gnu_asm_expression, - STATE(10007), 1, - aux_sym_declaration_repeat1, - ACTIONS(13561), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [323695] = 16, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [323895] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13549), 1, + ACTIONS(8913), 1, + anon_sym___attribute, + ACTIONS(14428), 1, + anon_sym_requires, + ACTIONS(14425), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8601), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8915), 10, anon_sym_COMMA, - ACTIONS(13551), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(13557), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(13559), 1, anon_sym_EQ, - ACTIONS(13925), 1, - anon_sym_SEMI, - STATE(4505), 1, + anon_sym_GT2, + anon_sym_try, + [323929] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9306), 1, + anon_sym_LBRACK, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + STATE(3140), 1, sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(9715), 1, - sym_gnu_asm_expression, - STATE(9716), 1, - aux_sym_declaration_repeat1, - ACTIONS(13561), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8286), 2, + ACTIONS(9300), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(8473), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10081), 2, - sym_argument_list, - sym_initializer_list, - [323747] = 9, + ACTIONS(9302), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [323965] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 1, + ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(10022), 1, + ACTIONS(10382), 1, anon_sym_requires, - ACTIONS(10266), 1, + ACTIONS(10624), 1, anon_sym_DASH_GT, - STATE(7938), 1, + STATE(7999), 1, sym_trailing_return_type, - ACTIONS(7821), 2, + ACTIONS(8160), 2, anon_sym_final, anon_sym_override, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8195), 2, + STATE(8313), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7627), 8, + ACTIONS(7791), 8, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, @@ -698004,59 +719403,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [323785] = 15, + [324003] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13811), 1, - anon_sym_COLON_COLON, - ACTIONS(14061), 1, - sym_identifier, - ACTIONS(14063), 1, - anon_sym_template, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(5665), 1, - sym_template_method, - STATE(5697), 1, - sym_dependent_field_identifier, - STATE(5700), 1, - sym_qualified_field_identifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8301), 1, - sym__scope_resolution, - STATE(10446), 1, - sym_operator_name, - STATE(10976), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [323835] = 8, + ACTIONS(9306), 1, + anon_sym_LBRACK, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + STATE(3140), 1, + sym_parameter_list, + ACTIONS(9476), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(8473), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9478), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [324039] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8929), 1, + ACTIONS(9306), 1, anon_sym_LBRACK, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - STATE(3121), 1, + STATE(3140), 1, sym_parameter_list, - ACTIONS(8947), 2, + ACTIONS(9484), 2, anon_sym___attribute, anon_sym___asm, - STATE(8366), 2, + STATE(8473), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8949), 10, + ACTIONS(9486), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -698067,382 +719459,545 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [323871] = 17, + [324075] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8913), 1, + anon_sym___attribute, + ACTIONS(10921), 1, + anon_sym_requires, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8601), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8915), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [324109] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(10232), 1, + ACTIONS(10572), 1, anon_sym_LBRACE, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13447), 1, + ACTIONS(13819), 1, anon_sym_try, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(14065), 1, + ACTIONS(14431), 1, anon_sym_SEMI, - STATE(2752), 1, + STATE(3254), 1, sym_compound_statement, - STATE(2753), 1, + STATE(3255), 1, sym_try_statement, - STATE(4505), 1, + STATE(4564), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(9882), 1, + STATE(10162), 1, sym_gnu_asm_expression, - STATE(9883), 1, + STATE(10163), 1, aux_sym_declaration_repeat1, - ACTIONS(13561), 2, + ACTIONS(13949), 2, anon_sym_asm, anon_sym___asm__, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [323925] = 5, + [324163] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8755), 1, - anon_sym___attribute, - ACTIONS(14067), 2, + ACTIONS(7968), 1, + anon_sym_LBRACK, + ACTIONS(10624), 1, + anon_sym_DASH_GT, + ACTIONS(13161), 1, + anon_sym_requires, + STATE(8035), 1, + sym_trailing_return_type, + ACTIONS(13158), 2, anon_sym_final, anon_sym_override, - STATE(8304), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - ACTIONS(8757), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(8358), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7966), 8, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [324201] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7789), 1, + anon_sym_LBRACK, + ACTIONS(10624), 1, + anon_sym_DASH_GT, + ACTIONS(12418), 1, + anon_sym_requires, + STATE(8013), 1, + sym_trailing_return_type, + ACTIONS(12415), 2, + anon_sym_final, + anon_sym_override, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8313), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 8, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [324239] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14435), 2, anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(14440), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(8412), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + ACTIONS(14438), 4, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(14433), 7, anon_sym_COLON, + anon_sym___declspec, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + [324271] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8885), 1, + anon_sym___attribute, + ACTIONS(8887), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, 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, - [323955] = 7, + [324297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9834), 1, + ACTIONS(8942), 1, anon_sym___attribute, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14070), 1, - anon_sym_LBRACK, - STATE(4243), 1, - sym_parameter_list, - STATE(8235), 1, - sym__function_declarator_seq, - ACTIONS(9832), 13, + ACTIONS(8944), 17, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - 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, - [323989] = 7, + [324323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7546), 1, + ACTIONS(3163), 1, anon_sym___attribute, - ACTIONS(12824), 1, - anon_sym_requires, - ACTIONS(12744), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 10, + ACTIONS(3161), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, 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, - [324023] = 7, + anon_sym_requires, + [324349] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14217), 1, + anon_sym_COLON_COLON, + ACTIONS(14393), 1, + sym_identifier, + ACTIONS(14443), 1, + anon_sym_template, + STATE(3768), 1, + sym_template_method, + STATE(3780), 1, + sym_dependent_field_identifier, + STATE(3785), 1, + sym_qualified_field_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(8222), 1, + sym_splice_specifier, + STATE(8416), 1, + sym__scope_resolution, + STATE(10412), 1, + sym_operator_name, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [324399] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9852), 1, + ACTIONS(10320), 1, + anon_sym_LT, + STATE(8449), 1, + sym_template_argument_list, + ACTIONS(9650), 3, anon_sym___attribute, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14070), 1, anon_sym_LBRACK, - STATE(4243), 1, - sym_parameter_list, - STATE(8235), 1, - sym__function_declarator_seq, - ACTIONS(9850), 13, + anon_sym___asm, + ACTIONS(9652), 13, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [324429] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8921), 1, + anon_sym___attribute, + ACTIONS(8923), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + 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, - [324057] = 7, + [324455] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9856), 1, - anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13937), 1, + anon_sym_COMMA, + ACTIONS(13939), 1, anon_sym_LPAREN2, - ACTIONS(14070), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(4243), 1, + ACTIONS(14321), 1, + anon_sym_SEMI, + ACTIONS(14445), 1, + anon_sym_EQ, + STATE(4564), 1, sym_parameter_list, - STATE(8235), 1, + STATE(8572), 1, sym__function_declarator_seq, - ACTIONS(9854), 13, + STATE(10077), 1, + sym_gnu_asm_expression, + STATE(10079), 1, + aux_sym_declaration_repeat1, + STATE(10114), 1, + sym_initializer_list, + STATE(10418), 1, + sym_argument_list, + ACTIONS(13949), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [324509] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8996), 1, + anon_sym___attribute, + ACTIONS(8998), 17, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - 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, - [324091] = 7, + [324535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9840), 1, + ACTIONS(3155), 1, anon_sym___attribute, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14070), 1, - anon_sym_LBRACK, - STATE(4243), 1, - sym_parameter_list, - STATE(8235), 1, - sym__function_declarator_seq, - ACTIONS(9838), 13, + ACTIONS(3153), 17, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - 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, - [324125] = 7, + [324561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9844), 1, + ACTIONS(8950), 1, anon_sym___attribute, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14070), 1, - anon_sym_LBRACK, - STATE(4243), 1, - sym_parameter_list, - STATE(8235), 1, - sym__function_declarator_seq, - ACTIONS(9842), 13, + ACTIONS(8952), 17, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - 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, - [324159] = 7, + [324587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9860), 1, + ACTIONS(9011), 1, anon_sym___attribute, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14070), 1, - anon_sym_LBRACK, - STATE(4243), 1, - sym_parameter_list, - STATE(8235), 1, - sym__function_declarator_seq, - ACTIONS(9858), 13, + ACTIONS(9013), 17, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - 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, - [324193] = 7, + [324613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9848), 1, + ACTIONS(9000), 1, anon_sym___attribute, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14070), 1, - anon_sym_LBRACK, - STATE(4243), 1, - sym_parameter_list, - STATE(8235), 1, - sym__function_declarator_seq, - ACTIONS(9846), 13, + ACTIONS(9002), 17, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - 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, - [324227] = 7, + [324639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9864), 1, + ACTIONS(9322), 1, anon_sym___attribute, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14070), 1, - anon_sym_LBRACK, - STATE(4243), 1, - sym_parameter_list, - STATE(8235), 1, - sym__function_declarator_seq, - ACTIONS(9862), 13, + ACTIONS(14447), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9324), 15, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [324261] = 7, + [324667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 1, + ACTIONS(8946), 1, anon_sym___attribute, - ACTIONS(12872), 1, - anon_sym_requires, - ACTIONS(12866), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7627), 10, + ACTIONS(8948), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, 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, - [324295] = 7, + anon_sym_requires, + [324693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8087), 1, + ACTIONS(8909), 1, anon_sym___attribute, - ACTIONS(13110), 1, - anon_sym_requires, - ACTIONS(13032), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8397), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8089), 10, + ACTIONS(8911), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, 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, - [324329] = 7, + anon_sym_requires, + [324719] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8541), 1, + ACTIONS(8905), 1, anon_sym___attribute, - ACTIONS(14075), 1, + ACTIONS(10921), 1, anon_sym_requires, - ACTIONS(14072), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8408), 2, + STATE(8560), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8543), 10, + ACTIONS(8907), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -698453,123 +720008,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [324363] = 7, + [324753] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8559), 1, - anon_sym___attribute, - ACTIONS(14081), 1, + ACTIONS(8424), 1, + anon_sym_LBRACK, + ACTIONS(10624), 1, + anon_sym_DASH_GT, + ACTIONS(13254), 1, anon_sym_requires, - ACTIONS(14078), 2, + STATE(8046), 1, + sym_trailing_return_type, + ACTIONS(13251), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8410), 2, + STATE(8297), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8561), 10, - anon_sym_COMMA, + ACTIONS(8422), 8, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, anon_sym_try, - [324397] = 3, + [324791] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 1, + ACTIONS(9306), 1, + anon_sym_LBRACK, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + STATE(3140), 1, + sym_parameter_list, + ACTIONS(9439), 2, anon_sym___attribute, - ACTIONS(2793), 17, + anon_sym___asm, + STATE(8473), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9441), 10, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, 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_RBRACK, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - anon_sym_requires, - [324423] = 3, + [324827] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8595), 1, + ACTIONS(9393), 1, anon_sym___attribute, - ACTIONS(8597), 17, + ACTIONS(14447), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(14449), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9395), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, 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, - [324449] = 3, + [324857] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 1, - anon_sym___attribute, - ACTIONS(2801), 17, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13937), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13939), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(13945), 1, + anon_sym_LBRACK, + ACTIONS(13947), 1, + anon_sym_EQ, + ACTIONS(14079), 1, + anon_sym_SEMI, + STATE(4564), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(9764), 1, + sym_gnu_asm_expression, + STATE(9765), 1, + aux_sym_declaration_repeat1, + ACTIONS(13949), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10418), 2, + sym_argument_list, + sym_initializer_list, + [324909] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(6463), 1, + anon_sym_STAR, + ACTIONS(6465), 1, anon_sym_AMP_AMP, + ACTIONS(6467), 1, + anon_sym_AMP, + ACTIONS(11793), 1, + anon_sym_LBRACK, + STATE(4706), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(8994), 1, + sym__abstract_declarator, + ACTIONS(9427), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [324951] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8424), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, + ACTIONS(10382), 1, + anon_sym_requires, + ACTIONS(10624), 1, + anon_sym_DASH_GT, + STATE(8032), 1, + sym_trailing_return_type, + ACTIONS(8160), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, + STATE(8114), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8297), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8422), 8, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - anon_sym_requires, - [324475] = 9, + [324989] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8541), 1, + ACTIONS(8905), 1, anon_sym_LBRACK, - ACTIONS(10022), 1, - anon_sym_requires, - ACTIONS(10266), 1, + ACTIONS(10624), 1, anon_sym_DASH_GT, - STATE(7891), 1, + ACTIONS(13882), 1, + anon_sym_requires, + STATE(8050), 1, sym_trailing_return_type, - ACTIONS(7821), 2, + ACTIONS(13879), 2, anon_sym_final, anon_sym_override, - STATE(8010), 2, + STATE(8114), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8208), 2, + STATE(8363), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8543), 8, + ACTIONS(8907), 8, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, @@ -698578,351 +720215,452 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [324513] = 3, + [325027] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8629), 1, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + STATE(7987), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9517), 3, anon_sym___attribute, - ACTIONS(8631), 17, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9519), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [324539] = 14, + [325057] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(7992), 1, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(4676), 1, anon_sym_LBRACE, - ACTIONS(10678), 1, - anon_sym_COLON_COLON, - ACTIONS(12774), 1, - sym_identifier, - STATE(2431), 1, - sym_splice_specifier, - STATE(2514), 1, - sym__splice_specialization_specifier, - STATE(2600), 1, - sym_enumerator_list, - STATE(8639), 1, - sym__scope_resolution, - STATE(2534), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4271), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [324586] = 14, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13937), 1, + anon_sym_COMMA, + ACTIONS(13939), 1, + anon_sym_LPAREN2, + ACTIONS(13945), 1, + anon_sym_LBRACK, + ACTIONS(13947), 1, + anon_sym_EQ, + ACTIONS(13991), 1, + anon_sym_SEMI, + STATE(4564), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(9724), 1, + sym_gnu_asm_expression, + STATE(9726), 1, + aux_sym_declaration_repeat1, + ACTIONS(13949), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10418), 2, + sym_argument_list, + sym_initializer_list, + [325109] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(9021), 1, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(960), 1, anon_sym_LBRACE, - ACTIONS(10743), 1, - anon_sym_COLON_COLON, - ACTIONS(12776), 1, - sym_identifier, - STATE(3634), 1, - sym_splice_specifier, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(3774), 1, - sym_enumerator_list, - STATE(8631), 1, - sym__scope_resolution, - STATE(3624), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(5992), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [324633] = 14, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13937), 1, + anon_sym_COMMA, + ACTIONS(13945), 1, + anon_sym_LBRACK, + ACTIONS(13995), 1, + anon_sym_try, + ACTIONS(14451), 1, + anon_sym_SEMI, + STATE(791), 1, + sym_compound_statement, + STATE(792), 1, + sym_try_statement, + STATE(4564), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(9933), 1, + sym_gnu_asm_expression, + STATE(9934), 1, + aux_sym_declaration_repeat1, + ACTIONS(13949), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [325163] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(2732), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(8100), 1, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10580), 1, anon_sym_LBRACE, - ACTIONS(10735), 1, - anon_sym_COLON_COLON, - ACTIONS(12772), 1, - sym_identifier, - STATE(2530), 1, - sym_splice_specifier, - STATE(2597), 1, - sym__splice_specialization_specifier, - STATE(2659), 1, - sym_enumerator_list, - STATE(8624), 1, - sym__scope_resolution, - STATE(2598), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4294), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [324680] = 14, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13833), 1, + anon_sym_try, + ACTIONS(13937), 1, + anon_sym_COMMA, + ACTIONS(13945), 1, + anon_sym_LBRACK, + ACTIONS(14453), 1, + anon_sym_SEMI, + STATE(2790), 1, + sym_compound_statement, + STATE(2792), 1, + sym_try_statement, + STATE(4564), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(10091), 1, + sym_gnu_asm_expression, + STATE(10092), 1, + aux_sym_declaration_repeat1, + ACTIONS(13949), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [325217] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(2078), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(6989), 1, + ACTIONS(7789), 1, + anon_sym___attribute, + ACTIONS(10921), 1, + anon_sym_requires, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, - ACTIONS(10686), 1, - anon_sym_COLON_COLON, - ACTIONS(12756), 1, - sym_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, - sym__splice_specialization_specifier, - STATE(2033), 1, - sym_enumerator_list, - STATE(8593), 1, - sym__scope_resolution, - STATE(2067), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3998), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [324727] = 12, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [325251] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(11629), 1, + ACTIONS(7968), 1, + anon_sym___attribute, + ACTIONS(10921), 1, + anon_sym_requires, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8561), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7966), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11695), 1, - sym_identifier, - ACTIONS(11697), 1, - anon_sym_STAR, - ACTIONS(11699), 1, - anon_sym_AMP_AMP, - ACTIONS(11701), 1, - anon_sym_AMP, - STATE(8910), 1, - sym__field_declarator, - STATE(9063), 1, - sym_operator_name, - STATE(11009), 1, - sym_ms_based_modifier, - STATE(8721), 7, - 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, - [324770] = 7, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [325285] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10603), 1, + anon_sym_LBRACE, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13807), 1, + anon_sym_try, + ACTIONS(13937), 1, + anon_sym_COMMA, + ACTIONS(13945), 1, + anon_sym_LBRACK, + ACTIONS(14455), 1, + anon_sym_SEMI, + STATE(3437), 1, + sym_compound_statement, + STATE(3438), 1, + sym_try_statement, + STATE(4564), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(9910), 1, + sym_gnu_asm_expression, + STATE(9911), 1, + aux_sym_declaration_repeat1, + ACTIONS(13949), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [325339] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9852), 1, + ACTIONS(117), 1, anon_sym___asm, - ACTIONS(13435), 1, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14070), 1, + ACTIONS(13937), 1, + anon_sym_COMMA, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(4486), 1, + ACTIONS(13951), 1, + anon_sym_try, + ACTIONS(14457), 1, + anon_sym_SEMI, + STATE(458), 1, + sym_compound_statement, + STATE(459), 1, + sym_try_statement, + STATE(4564), 1, sym_parameter_list, - STATE(8235), 1, + STATE(8572), 1, sym__function_declarator_seq, - ACTIONS(9850), 12, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + STATE(9843), 1, + sym_gnu_asm_expression, + STATE(9844), 1, + aux_sym_declaration_repeat1, + ACTIONS(13949), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [324803] = 9, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [325393] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7546), 1, + ACTIONS(9143), 1, anon_sym___attribute, - ACTIONS(10751), 1, - anon_sym_DASH_GT, - ACTIONS(10753), 1, - anon_sym_requires, - STATE(8259), 1, - sym_trailing_return_type, - ACTIONS(10476), 2, + ACTIONS(14459), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8444), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 7, + ACTIONS(9145), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [324840] = 9, + anon_sym_try, + anon_sym_requires, + [325423] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5946), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13549), 1, + anon_sym_COLON_COLON, + ACTIONS(14462), 1, + sym_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7998), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + ACTIONS(5948), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(10273), 2, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [325469] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 1, + ACTIONS(9306), 1, + anon_sym_LBRACK, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + STATE(3140), 1, + sym_parameter_list, + ACTIONS(9480), 2, anon_sym___attribute, - ACTIONS(10751), 1, - anon_sym_DASH_GT, - ACTIONS(10753), 1, - anon_sym_requires, - STATE(8276), 1, - sym_trailing_return_type, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7627), 7, + anon_sym___asm, + STATE(8473), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9482), 10, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [324877] = 9, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [325505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8087), 1, + ACTIONS(8992), 1, anon_sym___attribute, - ACTIONS(10751), 1, - anon_sym_DASH_GT, - ACTIONS(10753), 1, - anon_sym_requires, - STATE(8268), 1, - sym_trailing_return_type, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8397), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8089), 7, + ACTIONS(8994), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [324914] = 9, + anon_sym_try, + anon_sym_requires, + [325531] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(12067), 1, + anon_sym_STAR, + ACTIONS(12069), 1, + anon_sym_AMP_AMP, + ACTIONS(12071), 1, + anon_sym_AMP, + STATE(4883), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(9061), 1, + sym__abstract_declarator, + ACTIONS(9427), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [325572] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8541), 1, + ACTIONS(6601), 1, + anon_sym_COLON_COLON, + ACTIONS(6603), 4, anon_sym___attribute, - ACTIONS(10751), 1, - anon_sym_DASH_GT, - ACTIONS(10753), 1, - anon_sym_requires, - STATE(8293), 1, - sym_trailing_return_type, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8408), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8543), 7, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6596), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, - [324951] = 9, + anon_sym_try, + [325599] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7546), 1, + ACTIONS(8424), 1, anon_sym___attribute, - ACTIONS(10751), 1, + ACTIONS(10919), 1, anon_sym_DASH_GT, - ACTIONS(12824), 1, + ACTIONS(10921), 1, anon_sym_requires, - STATE(8314), 1, + STATE(8428), 1, sym_trailing_return_type, - ACTIONS(12744), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8550), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 7, + ACTIONS(8422), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -698930,149 +720668,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [324988] = 14, + [325636] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(9162), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10554), 1, anon_sym_LBRACE, - ACTIONS(10651), 1, - anon_sym_COLON_COLON, - ACTIONS(12736), 1, + ACTIONS(13164), 1, sym_identifier, - STATE(2855), 1, + ACTIONS(13166), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3688), 1, + STATE(4802), 1, sym_splice_specifier, - STATE(3728), 1, - sym_enumerator_list, - STATE(8621), 1, + STATE(8705), 1, sym__scope_resolution, - STATE(2874), 2, + STATE(9323), 1, + sym_enumerator_list, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(3613), 2, + STATE(9001), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [325035] = 9, + [325683] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 1, - anon_sym___attribute, - ACTIONS(10751), 1, - anon_sym_DASH_GT, - ACTIONS(12872), 1, - anon_sym_requires, - STATE(8315), 1, - sym_trailing_return_type, - ACTIONS(12866), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7627), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [325072] = 14, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3104), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(8624), 1, + anon_sym_LBRACE, + ACTIONS(11073), 1, + anon_sym_COLON_COLON, + ACTIONS(13137), 1, + sym_identifier, + STATE(2742), 1, + sym_splice_specifier, + STATE(2921), 1, + sym__splice_specialization_specifier, + STATE(3007), 1, + sym_enumerator_list, + STATE(8686), 1, + sym__scope_resolution, + STATE(2934), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4656), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [325730] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(3008), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(9806), 1, + ACTIONS(8472), 1, anon_sym_LBRACE, - ACTIONS(10705), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(12754), 1, + ACTIONS(13156), 1, sym_identifier, - STATE(4067), 1, + STATE(2638), 1, sym_splice_specifier, - STATE(4189), 1, + STATE(2696), 1, sym__splice_specialization_specifier, - STATE(4250), 1, + STATE(2882), 1, sym_enumerator_list, - STATE(8549), 1, + STATE(8687), 1, sym__scope_resolution, - STATE(4032), 2, + STATE(2570), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4170), 2, + STATE(2678), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [325119] = 9, + [325777] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(8087), 1, - anon_sym___attribute, - ACTIONS(10751), 1, - anon_sym_DASH_GT, - ACTIONS(13110), 1, - anon_sym_requires, - STATE(8316), 1, - sym_trailing_return_type, - ACTIONS(13032), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8397), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8089), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [325156] = 9, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10114), 1, + anon_sym_LBRACE, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11048), 1, + anon_sym_COLON_COLON, + ACTIONS(13123), 1, + sym_identifier, + STATE(4305), 1, + sym__splice_specialization_specifier, + STATE(4359), 1, + sym_enumerator_list, + STATE(7326), 1, + sym_splice_specifier, + STATE(8745), 1, + sym__scope_resolution, + STATE(4296), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7601), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [325824] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8541), 1, + ACTIONS(8905), 1, anon_sym___attribute, - ACTIONS(10751), 1, + ACTIONS(10919), 1, anon_sym_DASH_GT, - ACTIONS(14075), 1, + ACTIONS(10921), 1, anon_sym_requires, - STATE(8317), 1, + STATE(8408), 1, sym_trailing_return_type, - ACTIONS(14072), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8408), 2, + STATE(8560), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8543), 7, + ACTIONS(8907), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -699080,362 +720828,367 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [325193] = 14, + [325861] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(3092), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(9162), 1, + ACTIONS(8476), 1, anon_sym_LBRACE, - ACTIONS(10293), 1, + ACTIONS(11097), 1, anon_sym_COLON_COLON, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(12742), 1, + ACTIONS(13100), 1, sym_identifier, - STATE(2855), 1, + STATE(2605), 1, + sym_splice_specifier, + STATE(2659), 1, sym__splice_specialization_specifier, - STATE(3728), 1, + STATE(2885), 1, sym_enumerator_list, - STATE(7086), 1, - sym_splice_specifier, - STATE(8605), 1, + STATE(8702), 1, sym__scope_resolution, - STATE(2874), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7457), 2, + STATE(2572), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(2661), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [325240] = 14, + [325908] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(11987), 1, + anon_sym_LPAREN2, + ACTIONS(11995), 1, + sym_identifier, + ACTIONS(11997), 1, + anon_sym_STAR, + ACTIONS(11999), 1, + anon_sym_AMP_AMP, + ACTIONS(12001), 1, + anon_sym_AMP, + STATE(9035), 1, + sym__field_declarator, + STATE(9236), 1, + sym_operator_name, + STATE(11191), 1, + sym_ms_based_modifier, + STATE(8839), 7, + 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, + [325951] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10372), 1, + anon_sym_noexcept, + ACTIONS(10374), 1, + anon_sym_throw, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + ACTIONS(14464), 1, + anon_sym_LBRACE, + STATE(11685), 1, + sym_trailing_return_type, + STATE(8834), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9191), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9192), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13841), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [325992] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2732), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(8100), 1, + ACTIONS(9413), 1, anon_sym_LBRACE, - ACTIONS(10735), 1, + ACTIONS(11111), 1, anon_sym_COLON_COLON, - ACTIONS(12772), 1, + ACTIONS(13104), 1, sym_identifier, - STATE(2530), 1, - sym_splice_specifier, - STATE(2597), 1, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(2659), 1, + STATE(3719), 1, + sym_splice_specifier, + STATE(3884), 1, sym_enumerator_list, - STATE(8624), 1, + STATE(8707), 1, sym__scope_resolution, - STATE(2470), 2, + STATE(3666), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2598), 2, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [325287] = 6, + [326039] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14466), 1, sym_identifier, - ACTIONS(8125), 3, + ACTIONS(8406), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(8352), 3, + STATE(8460), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(14086), 5, + ACTIONS(14469), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(14088), 5, + ACTIONS(14472), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [325318] = 14, + [326070] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2078), 1, + ACTIONS(2602), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6989), 1, + ACTIONS(9576), 1, anon_sym_LBRACE, - ACTIONS(10686), 1, + ACTIONS(11105), 1, anon_sym_COLON_COLON, - ACTIONS(12756), 1, + ACTIONS(13144), 1, sym_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(2033), 1, + STATE(3800), 1, + sym_splice_specifier, + STATE(3873), 1, sym_enumerator_list, - STATE(8593), 1, + STATE(8738), 1, sym__scope_resolution, - STATE(2067), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(2213), 2, + STATE(3756), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [325365] = 11, + [326117] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10372), 1, anon_sym_noexcept, - ACTIONS(10020), 1, + ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(13479), 1, + ACTIONS(13843), 1, anon_sym_DASH_GT, - ACTIONS(13919), 1, + ACTIONS(14287), 1, anon_sym_LBRACE, - STATE(10537), 1, + STATE(10657), 1, sym_trailing_return_type, - STATE(8728), 2, + STATE(8834), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9036), 2, + STATE(9183), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9133), 3, + STATE(9189), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13477), 4, + ACTIONS(13841), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [325406] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13551), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(13559), 1, - anon_sym_EQ, - STATE(4505), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(10410), 1, - sym_gnu_asm_expression, - ACTIONS(13561), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(14090), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10081), 2, - sym_argument_list, - sym_initializer_list, - [325453] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(11627), 1, - sym_identifier, - ACTIONS(11629), 1, - anon_sym_LPAREN2, - ACTIONS(11631), 1, - anon_sym_STAR, - ACTIONS(11633), 1, - anon_sym_AMP_AMP, - ACTIONS(11635), 1, - anon_sym_AMP, - STATE(8532), 1, - sym__field_declarator, - STATE(8661), 1, - sym_operator_name, - STATE(11372), 1, - sym_ms_based_modifier, - STATE(8721), 7, - 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, - [325496] = 14, + [326158] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2744), 1, + ACTIONS(3256), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(8272), 1, + ACTIONS(10114), 1, anon_sym_LBRACE, - ACTIONS(10711), 1, + ACTIONS(11059), 1, anon_sym_COLON_COLON, - ACTIONS(12758), 1, + ACTIONS(13133), 1, sym_identifier, - STATE(2677), 1, + STATE(4272), 1, sym_splice_specifier, - STATE(2837), 1, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(2843), 1, + STATE(4359), 1, sym_enumerator_list, - STATE(8588), 1, + STATE(8676), 1, sym__scope_resolution, - STATE(2802), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4632), 2, + STATE(4076), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(4296), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [325543] = 14, + [326205] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2300), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4780), 1, - anon_sym_COLON_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11294), 1, + ACTIONS(8383), 1, anon_sym_LBRACE, - ACTIONS(12797), 1, + ACTIONS(11010), 1, + anon_sym_COLON_COLON, + ACTIONS(13135), 1, sym_identifier, - STATE(4691), 1, + STATE(2547), 1, sym_splice_specifier, - STATE(5263), 1, + STATE(2601), 1, sym__splice_specialization_specifier, - STATE(5882), 1, + STATE(2704), 1, sym_enumerator_list, - STATE(8584), 1, + STATE(8682), 1, sym__scope_resolution, - STATE(5166), 2, + STATE(2615), 2, sym_template_type, sym_splice_type_specifier, - STATE(5460), 2, + STATE(4327), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [325590] = 14, + [326252] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(9162), 1, + ACTIONS(9576), 1, anon_sym_LBRACE, - ACTIONS(10590), 1, + ACTIONS(11020), 1, anon_sym_COLON_COLON, - ACTIONS(12752), 1, + ACTIONS(13102), 1, sym_identifier, - STATE(2855), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(7299), 1, + STATE(7481), 1, sym_splice_specifier, - STATE(7607), 1, + STATE(7710), 1, sym_enumerator_list, - STATE(8564), 1, + STATE(8691), 1, sym__scope_resolution, - STATE(2874), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(7467), 2, + STATE(7605), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [325637] = 6, + [326299] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(14092), 1, + ACTIONS(2300), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(8383), 1, + anon_sym_LBRACE, + ACTIONS(11010), 1, + anon_sym_COLON_COLON, + ACTIONS(13135), 1, sym_identifier, - ACTIONS(8045), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(8349), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(14095), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(14098), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [325668] = 7, + STATE(2547), 1, + sym_splice_specifier, + STATE(2601), 1, + sym__splice_specialization_specifier, + STATE(2704), 1, + sym_enumerator_list, + STATE(8682), 1, + sym__scope_resolution, + STATE(2521), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2615), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [326346] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9834), 1, + ACTIONS(10202), 1, anon_sym___asm, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14070), 1, + ACTIONS(14397), 1, anon_sym_LBRACK, - STATE(4486), 1, + STATE(4562), 1, sym_parameter_list, - STATE(8235), 1, + STATE(8243), 1, sym__function_declarator_seq, - ACTIONS(9832), 12, + ACTIONS(10200), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -699448,104 +721201,281 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [325701] = 7, + [326379] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9864), 1, - anon_sym___asm, - ACTIONS(13435), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(11985), 1, + sym_identifier, + ACTIONS(11987), 1, + anon_sym_LPAREN2, + ACTIONS(11989), 1, + anon_sym_STAR, + ACTIONS(11991), 1, + anon_sym_AMP_AMP, + ACTIONS(11993), 1, + anon_sym_AMP, + STATE(8578), 1, + sym__field_declarator, + STATE(8807), 1, + sym_operator_name, + STATE(10687), 1, + sym_ms_based_modifier, + STATE(8839), 7, + 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, + [326422] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10988), 1, + anon_sym_COLON_COLON, + ACTIONS(13131), 1, + anon_sym_LBRACE, + ACTIONS(13168), 1, + sym_identifier, + STATE(6581), 1, + sym_splice_specifier, + STATE(7121), 1, + sym__splice_specialization_specifier, + STATE(7599), 1, + sym_enumerator_list, + STATE(8700), 1, + sym__scope_resolution, + STATE(7122), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7291), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [326469] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7789), 1, + anon_sym___attribute, + ACTIONS(10919), 1, + anon_sym_DASH_GT, + ACTIONS(13188), 1, + anon_sym_requires, + STATE(8398), 1, + sym_trailing_return_type, + ACTIONS(13146), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(14070), 1, + anon_sym___attribute__, anon_sym_LBRACK, - STATE(4486), 1, - sym_parameter_list, - STATE(8235), 1, - sym__function_declarator_seq, - ACTIONS(9862), 12, + anon_sym_EQ, + anon_sym_GT2, + [326506] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7968), 1, + anon_sym___attribute, + ACTIONS(10919), 1, + anon_sym_DASH_GT, + ACTIONS(13236), 1, + anon_sym_requires, + STATE(8401), 1, + sym_trailing_return_type, + ACTIONS(13202), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8561), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7966), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [326543] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8424), 1, + anon_sym___attribute, + ACTIONS(10919), 1, + anon_sym_DASH_GT, + ACTIONS(13485), 1, + anon_sym_requires, + STATE(8402), 1, + sym_trailing_return_type, + ACTIONS(13396), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8550), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8422), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [326580] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + STATE(7987), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9517), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9519), 11, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [325734] = 6, + [326609] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(14101), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(11987), 1, + anon_sym_LPAREN2, + ACTIONS(11995), 1, sym_identifier, - ACTIONS(8116), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(8349), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(14086), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(14088), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [325765] = 14, + ACTIONS(11997), 1, + anon_sym_STAR, + ACTIONS(11999), 1, + anon_sym_AMP_AMP, + ACTIONS(12001), 1, + anon_sym_AMP, + STATE(9012), 1, + sym__field_declarator, + STATE(9236), 1, + sym_operator_name, + STATE(11191), 1, + sym_ms_based_modifier, + STATE(8839), 7, + 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, + [326652] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2078), 1, + ACTIONS(3256), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6989), 1, + ACTIONS(10114), 1, anon_sym_LBRACE, - ACTIONS(10686), 1, + ACTIONS(11059), 1, anon_sym_COLON_COLON, - ACTIONS(12756), 1, + ACTIONS(13133), 1, sym_identifier, - STATE(1997), 1, + STATE(4272), 1, sym_splice_specifier, - STATE(2026), 1, + STATE(4305), 1, sym__splice_specialization_specifier, - STATE(2033), 1, + STATE(4359), 1, sym_enumerator_list, - STATE(8593), 1, + STATE(8676), 1, sym__scope_resolution, - STATE(2067), 2, + STATE(4296), 2, sym_template_type, sym_splice_type_specifier, - STATE(3928), 2, + STATE(6303), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [325812] = 7, + [326699] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9844), 1, + ACTIONS(14475), 1, + sym_identifier, + ACTIONS(8454), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(8460), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(14477), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(14479), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [326730] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10174), 1, anon_sym___asm, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14070), 1, + ACTIONS(14397), 1, anon_sym_LBRACK, - STATE(4486), 1, + STATE(4562), 1, sym_parameter_list, - STATE(8235), 1, + STATE(8243), 1, sym__function_declarator_seq, - ACTIONS(9842), 12, + ACTIONS(10172), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -699558,145 +721488,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [325845] = 14, + [326763] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(9806), 1, + ACTIONS(9576), 1, anon_sym_LBRACE, - ACTIONS(10299), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10697), 1, + ACTIONS(11105), 1, anon_sym_COLON_COLON, - ACTIONS(12750), 1, + ACTIONS(13144), 1, sym_identifier, - STATE(4189), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(4250), 1, - sym_enumerator_list, - STATE(7130), 1, + STATE(3800), 1, sym_splice_specifier, - STATE(8634), 1, + STATE(3873), 1, + sym_enumerator_list, + STATE(8738), 1, sym__scope_resolution, - STATE(4170), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(7485), 2, + STATE(6133), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [325892] = 14, + [326810] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(9021), 1, - anon_sym_LBRACE, - ACTIONS(10743), 1, + ACTIONS(5140), 1, anon_sym_COLON_COLON, - ACTIONS(12776), 1, - sym_identifier, - STATE(3634), 1, - sym_splice_specifier, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(3774), 1, - sym_enumerator_list, - STATE(8631), 1, - sym__scope_resolution, - STATE(3530), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(3624), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [325939] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(2648), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(8096), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11651), 1, anon_sym_LBRACE, - ACTIONS(10727), 1, - anon_sym_COLON_COLON, - ACTIONS(12764), 1, + ACTIONS(13125), 1, sym_identifier, - STATE(2519), 1, + STATE(4802), 1, sym_splice_specifier, - STATE(2567), 1, + STATE(5472), 1, sym__splice_specialization_specifier, - STATE(2745), 1, + STATE(6005), 1, sym_enumerator_list, - STATE(8604), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(2577), 2, + STATE(5423), 2, sym_template_type, sym_splice_type_specifier, - STATE(4371), 2, + STATE(5624), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [325986] = 7, + [326857] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8905), 1, + anon_sym___attribute, + ACTIONS(10919), 1, + anon_sym_DASH_GT, + ACTIONS(14422), 1, + anon_sym_requires, + STATE(8403), 1, + sym_trailing_return_type, + ACTIONS(14419), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8560), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8907), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [326894] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9860), 1, + ACTIONS(117), 1, anon_sym___asm, - ACTIONS(13435), 1, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13939), 1, anon_sym_LPAREN2, - ACTIONS(14070), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(4486), 1, + ACTIONS(13947), 1, + anon_sym_EQ, + STATE(4564), 1, sym_parameter_list, - STATE(8235), 1, + STATE(8572), 1, sym__function_declarator_seq, - ACTIONS(9858), 12, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + STATE(10551), 1, + sym_gnu_asm_expression, + ACTIONS(13949), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [326019] = 7, + ACTIONS(14481), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10418), 2, + sym_argument_list, + sym_initializer_list, + [326941] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9856), 1, + ACTIONS(10190), 1, anon_sym___asm, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14070), 1, + ACTIONS(14397), 1, anon_sym_LBRACK, - STATE(4486), 1, + STATE(4562), 1, sym_parameter_list, - STATE(8235), 1, + STATE(8243), 1, sym__function_declarator_seq, - ACTIONS(9854), 12, + ACTIONS(10188), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -699709,107 +721641,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [326052] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(11629), 1, - anon_sym_LPAREN2, - ACTIONS(11695), 1, - sym_identifier, - ACTIONS(11697), 1, - anon_sym_STAR, - ACTIONS(11699), 1, - anon_sym_AMP_AMP, - ACTIONS(11701), 1, - anon_sym_AMP, - STATE(8936), 1, - sym__field_declarator, - STATE(9063), 1, - sym_operator_name, - STATE(11009), 1, - sym_ms_based_modifier, - STATE(8721), 7, - 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, - [326095] = 14, + [326974] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3443), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(9021), 1, + ACTIONS(7385), 1, anon_sym_LBRACE, - ACTIONS(10719), 1, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - ACTIONS(12760), 1, + ACTIONS(13119), 1, sym_identifier, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(4072), 1, + STATE(2104), 1, sym_splice_specifier, - STATE(4279), 1, + STATE(2134), 1, sym_enumerator_list, - STATE(8571), 1, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(8763), 1, sym__scope_resolution, - STATE(3624), 2, + STATE(2147), 2, sym_template_type, sym_splice_type_specifier, - STATE(4021), 2, + STATE(3998), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326142] = 4, + [327021] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6233), 1, - anon_sym_COLON_COLON, - ACTIONS(6235), 4, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6228), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3092), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(8476), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [326169] = 7, + ACTIONS(11097), 1, + anon_sym_COLON_COLON, + ACTIONS(13100), 1, + sym_identifier, + STATE(2605), 1, + sym_splice_specifier, + STATE(2659), 1, + sym__splice_specialization_specifier, + STATE(2885), 1, + sym_enumerator_list, + STATE(8702), 1, + sym__scope_resolution, + STATE(2661), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4505), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [327068] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9848), 1, + ACTIONS(10194), 1, anon_sym___asm, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14070), 1, + ACTIONS(14397), 1, anon_sym_LBRACK, - STATE(4486), 1, + STATE(4562), 1, sym_parameter_list, - STATE(8235), 1, + STATE(8243), 1, sym__function_declarator_seq, - ACTIONS(9846), 12, + ACTIONS(10192), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -699822,235 +721733,294 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [326202] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(11627), 1, - sym_identifier, - ACTIONS(11629), 1, - anon_sym_LPAREN2, - ACTIONS(11631), 1, - anon_sym_STAR, - ACTIONS(11633), 1, - anon_sym_AMP_AMP, - ACTIONS(11635), 1, - anon_sym_AMP, - STATE(8463), 1, - sym__field_declarator, - STATE(8661), 1, - sym_operator_name, - STATE(11372), 1, - sym_ms_based_modifier, - STATE(8721), 7, - 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, - [326245] = 14, + [327101] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(3104), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6101), 1, - anon_sym_COLON_COLON, - ACTIONS(10145), 1, + ACTIONS(8624), 1, anon_sym_LBRACE, - ACTIONS(12804), 1, + ACTIONS(11073), 1, + anon_sym_COLON_COLON, + ACTIONS(13137), 1, sym_identifier, - STATE(3682), 1, + STATE(2742), 1, + sym_splice_specifier, + STATE(2921), 1, sym__splice_specialization_specifier, - STATE(4648), 1, + STATE(3007), 1, sym_enumerator_list, - STATE(5044), 1, - sym_splice_specifier, - STATE(8579), 1, + STATE(8686), 1, sym__scope_resolution, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(5386), 2, + STATE(2731), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(2934), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326292] = 5, + [327148] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - STATE(7871), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9211), 3, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(10186), 1, anon_sym___asm, - ACTIONS(9213), 11, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13795), 1, anon_sym_LPAREN2, + ACTIONS(14397), 1, + anon_sym_LBRACK, + STATE(4562), 1, + sym_parameter_list, + STATE(8243), 1, + sym__function_declarator_seq, + ACTIONS(10184), 12, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_try, - [326321] = 14, + anon_sym_requires, + [327181] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(10299), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(10621), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(7385), 1, + anon_sym_LBRACE, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - ACTIONS(12770), 1, + ACTIONS(13119), 1, sym_identifier, - ACTIONS(12795), 1, - anon_sym_LBRACE, - STATE(6603), 1, + STATE(2104), 1, sym_splice_specifier, - STATE(7033), 1, - sym__splice_specialization_specifier, - STATE(7471), 1, + STATE(2134), 1, sym_enumerator_list, - STATE(8612), 1, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(8763), 1, sym__scope_resolution, - STATE(7034), 2, + STATE(2147), 2, sym_template_type, sym_splice_type_specifier, - STATE(7257), 2, + STATE(2318), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326368] = 14, + [327228] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2875), 1, + ACTIONS(4360), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(9806), 1, + ACTIONS(9413), 1, anon_sym_LBRACE, - ACTIONS(10705), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(12754), 1, + ACTIONS(13152), 1, sym_identifier, - STATE(4067), 1, - sym_splice_specifier, - STATE(4189), 1, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(4250), 1, + STATE(4263), 1, + sym_splice_specifier, + STATE(4324), 1, sym_enumerator_list, - STATE(8549), 1, + STATE(8675), 1, sym__scope_resolution, - STATE(4170), 2, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(6267), 2, + STATE(6374), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326415] = 14, + [327275] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(11985), 1, + sym_identifier, + ACTIONS(11987), 1, + anon_sym_LPAREN2, + ACTIONS(11989), 1, + anon_sym_STAR, + ACTIONS(11991), 1, + anon_sym_AMP_AMP, + ACTIONS(11993), 1, + anon_sym_AMP, + STATE(8618), 1, + sym__field_declarator, + STATE(8807), 1, + sym_operator_name, + STATE(10687), 1, + sym_ms_based_modifier, + STATE(8839), 7, + 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, + [327318] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7789), 1, + anon_sym___attribute, + ACTIONS(10919), 1, + anon_sym_DASH_GT, + ACTIONS(10921), 1, + anon_sym_requires, + STATE(8441), 1, + sym_trailing_return_type, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [327355] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(10145), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(6469), 1, + anon_sym_COLON_COLON, + ACTIONS(10554), 1, anon_sym_LBRACE, - ACTIONS(12766), 1, + ACTIONS(13117), 1, sym_identifier, - ACTIONS(12768), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4691), 1, + STATE(4671), 1, + sym_enumerator_list, + STATE(5157), 1, sym_splice_specifier, - STATE(8626), 1, + STATE(8756), 1, sym__scope_resolution, - STATE(9217), 1, + STATE(3790), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(5469), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [327402] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2602), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(9413), 1, + anon_sym_LBRACE, + ACTIONS(11111), 1, + anon_sym_COLON_COLON, + ACTIONS(13104), 1, + sym_identifier, + STATE(3711), 1, + sym__splice_specialization_specifier, + STATE(3719), 1, + sym_splice_specifier, + STATE(3884), 1, sym_enumerator_list, - STATE(3712), 2, + STATE(8707), 1, + sym__scope_resolution, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(8867), 2, + STATE(6120), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326462] = 11, + [327449] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(10210), 1, + anon_sym___asm, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14397), 1, + anon_sym_LBRACK, + STATE(4562), 1, + sym_parameter_list, + STATE(8243), 1, + sym__function_declarator_seq, + ACTIONS(10208), 12, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(10018), 1, - anon_sym_noexcept, - ACTIONS(10020), 1, - anon_sym_throw, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - ACTIONS(14103), 1, anon_sym_LBRACE, - STATE(10995), 1, - sym_trailing_return_type, - STATE(8728), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9072), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9074), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13477), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [326503] = 7, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [327482] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 1, + ACTIONS(14483), 1, sym_identifier, - ACTIONS(14107), 2, + ACTIONS(14485), 2, anon_sym_RPAREN, anon_sym_COLON, - STATE(8533), 2, + STATE(8656), 2, sym_string_literal, sym_raw_string_literal, - STATE(9515), 2, + STATE(9518), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -700065,80 +722035,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [326536] = 14, + [327515] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2062), 1, + ACTIONS(10198), 1, + anon_sym___asm, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14397), 1, + anon_sym_LBRACK, + STATE(4562), 1, + sym_parameter_list, + STATE(8243), 1, + sym__function_declarator_seq, + ACTIONS(10196), 12, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [327548] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7968), 1, + anon_sym___attribute, + ACTIONS(10919), 1, + anon_sym_DASH_GT, + ACTIONS(10921), 1, + anon_sym_requires, + STATE(8374), 1, + sym_trailing_return_type, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8561), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7966), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [327585] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(4360), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(7992), 1, + ACTIONS(9413), 1, anon_sym_LBRACE, - ACTIONS(10678), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(12774), 1, + ACTIONS(13152), 1, sym_identifier, - STATE(2431), 1, - sym_splice_specifier, - STATE(2514), 1, + STATE(3711), 1, sym__splice_specialization_specifier, - STATE(2600), 1, + STATE(4263), 1, + sym_splice_specifier, + STATE(4324), 1, sym_enumerator_list, - STATE(8639), 1, + STATE(8675), 1, sym__scope_resolution, - STATE(2401), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2534), 2, + STATE(3728), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(4052), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326583] = 14, + [327632] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10206), 1, + anon_sym___asm, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14397), 1, + anon_sym_LBRACK, + STATE(4562), 1, + sym_parameter_list, + STATE(8243), 1, + sym__function_declarator_seq, + ACTIONS(10204), 12, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [327665] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2242), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(9162), 1, - anon_sym_LBRACE, - ACTIONS(10651), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(12736), 1, + ACTIONS(10554), 1, + anon_sym_LBRACE, + ACTIONS(13106), 1, sym_identifier, - STATE(2855), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(3688), 1, + STATE(4504), 1, sym_splice_specifier, - STATE(3728), 1, + STATE(4671), 1, sym_enumerator_list, - STATE(8621), 1, + STATE(8716), 1, sym__scope_resolution, - STATE(2874), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(6021), 2, + STATE(4594), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326630] = 3, + [327712] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14487), 1, + sym_identifier, + ACTIONS(8466), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(8476), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(14477), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(14479), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [327743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8831), 3, + ACTIONS(9224), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8829), 14, + ACTIONS(9222), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -700153,405 +722228,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [326655] = 14, + [327768] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(10145), 1, + ACTIONS(7385), 1, anon_sym_LBRACE, - ACTIONS(12738), 1, - sym_identifier, - ACTIONS(12740), 1, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, + ACTIONS(13119), 1, + sym_identifier, + STATE(2104), 1, sym_splice_specifier, - STATE(4648), 1, + STATE(2134), 1, sym_enumerator_list, - STATE(8614), 1, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(8763), 1, sym__scope_resolution, - STATE(3712), 2, + STATE(2147), 2, sym_template_type, sym_splice_type_specifier, - STATE(6288), 2, + STATE(4136), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326702] = 14, + [327815] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2078), 1, + ACTIONS(3486), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(6989), 1, + ACTIONS(10554), 1, anon_sym_LBRACE, - ACTIONS(10686), 1, - anon_sym_COLON_COLON, - ACTIONS(12756), 1, + ACTIONS(13106), 1, sym_identifier, - STATE(1997), 1, - sym_splice_specifier, - STATE(2026), 1, + ACTIONS(13154), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(2033), 1, + STATE(4504), 1, + sym_splice_specifier, + STATE(4671), 1, sym_enumerator_list, - STATE(8593), 1, + STATE(8710), 1, sym__scope_resolution, - STATE(2067), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(2255), 2, + STATE(6381), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326749] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9840), 1, - anon_sym___asm, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14070), 1, - anon_sym_LBRACK, - STATE(4486), 1, - sym_parameter_list, - STATE(8235), 1, - sym__function_declarator_seq, - ACTIONS(9838), 12, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [326782] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11637), 1, - anon_sym_STAR, - ACTIONS(11639), 1, - anon_sym_AMP_AMP, - ACTIONS(11641), 1, - anon_sym_AMP, - STATE(4923), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8915), 1, - sym__abstract_declarator, - ACTIONS(9072), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [326823] = 14, + [327862] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2744), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(8272), 1, + ACTIONS(9576), 1, anon_sym_LBRACE, - ACTIONS(10711), 1, + ACTIONS(10653), 1, anon_sym_COLON_COLON, - ACTIONS(12758), 1, + ACTIONS(10659), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13127), 1, sym_identifier, - STATE(2677), 1, - sym_splice_specifier, - STATE(2837), 1, + STATE(3028), 1, sym__splice_specialization_specifier, - STATE(2843), 1, + STATE(3873), 1, sym_enumerator_list, - STATE(8588), 1, + STATE(7260), 1, + sym_splice_specifier, + STATE(8711), 1, sym__scope_resolution, - STATE(2607), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2802), 2, + STATE(3060), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(7591), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326870] = 14, + [327909] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3443), 1, + ACTIONS(3008), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(9021), 1, + ACTIONS(8472), 1, anon_sym_LBRACE, - ACTIONS(10719), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(12760), 1, + ACTIONS(13156), 1, sym_identifier, - STATE(3640), 1, - sym__splice_specialization_specifier, - STATE(4072), 1, + STATE(2638), 1, sym_splice_specifier, - STATE(4279), 1, + STATE(2696), 1, + sym__splice_specialization_specifier, + STATE(2882), 1, sym_enumerator_list, - STATE(8571), 1, + STATE(8687), 1, sym__scope_resolution, - STATE(3624), 2, + STATE(2678), 2, sym_template_type, sym_splice_type_specifier, - STATE(6220), 2, + STATE(4511), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326917] = 14, + [327956] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2648), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(8096), 1, + ACTIONS(7385), 1, anon_sym_LBRACE, - ACTIONS(10727), 1, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - ACTIONS(12764), 1, + ACTIONS(13119), 1, sym_identifier, - STATE(2519), 1, + STATE(2104), 1, sym_splice_specifier, - STATE(2567), 1, - sym__splice_specialization_specifier, - STATE(2745), 1, + STATE(2134), 1, sym_enumerator_list, - STATE(8604), 1, + STATE(2170), 1, + sym__splice_specialization_specifier, + STATE(8763), 1, sym__scope_resolution, - STATE(2468), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2577), 2, + STATE(2147), 2, sym_template_type, sym_splice_type_specifier, - STATE(10976), 3, + STATE(2346), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326964] = 14, + [328003] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3091), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5574), 1, - anon_sym_COLON_COLON, - ACTIONS(10145), 1, - anon_sym_LBRACE, - ACTIONS(12738), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13421), 1, sym_identifier, - STATE(3682), 1, + ACTIONS(13425), 1, + anon_sym_COLON_COLON, + ACTIONS(14489), 1, + anon_sym_virtual, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(4648), 1, - sym_enumerator_list, - STATE(8638), 1, + STATE(8762), 1, sym__scope_resolution, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(4502), 2, + STATE(9533), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [327011] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8709), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8711), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [327035] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(14111), 1, - anon_sym___asm, - STATE(4505), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14109), 8, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [327071] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14115), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(14113), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [327095] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14119), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(14117), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [327119] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8939), 1, - anon_sym___attribute, - ACTIONS(14121), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8941), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_or, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [327145] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(14125), 1, - anon_sym___asm, - STATE(4505), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14123), 8, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [327181] = 3, + [328047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8955), 1, + ACTIONS(9296), 1, anon_sym___attribute, - ACTIONS(8957), 15, + ACTIONS(9298), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -700567,25 +722445,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [327205] = 8, + [328071] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10437), 1, + ACTIONS(10819), 1, anon_sym_DASH_GT, - ACTIONS(10478), 1, + ACTIONS(13205), 1, anon_sym_requires, - STATE(8398), 1, + STATE(8513), 1, sym_trailing_return_type, - ACTIONS(10476), 2, + ACTIONS(13202), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8397), 2, + STATE(8561), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8089), 7, + ACTIONS(7966), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -700593,13 +722471,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [327239] = 3, + [328105] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8087), 1, + ACTIONS(7968), 1, anon_sym___attribute, - ACTIONS(8089), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(13205), 1, + anon_sym_requires, + ACTIONS(13202), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8561), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7966), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -700608,44 +722496,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [327263] = 7, + [328137] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8087), 1, - anon_sym___attribute, - ACTIONS(10478), 1, + ACTIONS(10819), 1, + anon_sym_DASH_GT, + ACTIONS(13399), 1, anon_sym_requires, - ACTIONS(10476), 2, + STATE(8517), 1, + sym_trailing_return_type, + ACTIONS(13396), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8397), 2, + STATE(8550), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8089), 8, + ACTIONS(8422), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [327295] = 3, + [328171] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 1, + ACTIONS(8424), 1, anon_sym___attribute, - ACTIONS(8994), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(13399), 1, + anon_sym_requires, + ACTIONS(13396), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8550), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8422), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -700654,20 +722547,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [327319] = 3, + [328203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14129), 3, + ACTIONS(14493), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(14127), 13, + ACTIONS(14491), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -700681,72 +722568,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [327343] = 12, + [328227] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10819), 1, + anon_sym_DASH_GT, + ACTIONS(10861), 1, + anon_sym_requires, + STATE(8585), 1, + sym_trailing_return_type, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + [328261] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5592), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13205), 1, + ACTIONS(13823), 1, anon_sym_COLON_COLON, - ACTIONS(14019), 1, + ACTIONS(14495), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7872), 1, + STATE(7996), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10386), 2, - sym_identifier_parameter_pack_expansion, + STATE(10580), 1, + sym_splice_type_specifier, + STATE(10707), 1, sym_qualified_identifier, - STATE(10976), 5, + ACTIONS(14497), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(10768), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, - sym_splice_type_specifier, sym_splice_expression, - [327385] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11826), 1, - anon_sym_STAR, - ACTIONS(11828), 1, - anon_sym_AMP_AMP, - ACTIONS(11830), 1, - anon_sym_AMP, - STATE(4969), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8967), 1, - sym__abstract_declarator, - ACTIONS(9072), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [327425] = 3, + [328305] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8541), 1, + ACTIONS(8905), 1, anon_sym___attribute, - ACTIONS(8543), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(14499), 1, + anon_sym_requires, + ACTIONS(14419), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8560), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8907), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -700755,71 +722650,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [327449] = 7, + [328337] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8541), 1, - anon_sym___attribute, - ACTIONS(10478), 1, + ACTIONS(10819), 1, + anon_sym_DASH_GT, + ACTIONS(14499), 1, anon_sym_requires, - ACTIONS(10476), 2, + STATE(8519), 1, + sym_trailing_return_type, + ACTIONS(14419), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8408), 2, + STATE(8560), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8543), 8, + ACTIONS(8907), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [327481] = 8, + [328371] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10437), 1, - anon_sym_DASH_GT, - ACTIONS(10478), 1, + ACTIONS(8913), 1, + anon_sym___attribute, + ACTIONS(14502), 1, anon_sym_requires, - STATE(8409), 1, - sym_trailing_return_type, - ACTIONS(10476), 2, + ACTIONS(14425), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8408), 2, + STATE(8601), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8543), 7, + ACTIONS(8915), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [327515] = 3, + [328403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8671), 3, + ACTIONS(9095), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8673), 13, + ACTIONS(9097), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -700833,14 +722722,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [327539] = 3, + [328427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8693), 3, + ACTIONS(9041), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8695), 13, + ACTIONS(9043), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -700854,14 +722743,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [327563] = 3, + [328451] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7789), 1, + anon_sym___attribute, + ACTIONS(7791), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [328475] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13945), 1, + anon_sym_LBRACK, + ACTIONS(14507), 1, + anon_sym___asm, + STATE(4564), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14505), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [328511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8675), 3, + ACTIONS(14511), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8677), 13, + ACTIONS(14509), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -700875,75 +722812,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [327587] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13046), 1, - sym_identifier, - ACTIONS(13050), 1, - anon_sym_COLON_COLON, - ACTIONS(14131), 1, - anon_sym_virtual, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8576), 1, - sym__scope_resolution, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(9346), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [327631] = 13, + [328535] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, + ACTIONS(13823), 1, anon_sym_COLON_COLON, - ACTIONS(14133), 1, + ACTIONS(14513), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7879), 1, + STATE(7996), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10337), 1, + STATE(10317), 1, sym_splice_type_specifier, - STATE(11398), 1, + STATE(10933), 1, sym_qualified_identifier, - ACTIONS(14135), 2, + ACTIONS(14515), 2, anon_sym_enum, anon_sym_namespace, - STATE(10976), 4, + STATE(10768), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [327675] = 3, + [328579] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8935), 1, + ACTIONS(7789), 1, anon_sym___attribute, - ACTIONS(8937), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(10861), 1, + anon_sym_requires, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -700952,62 +722868,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, + [328611] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9033), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9035), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [327699] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, - anon_sym_COLON_COLON, - ACTIONS(14137), 1, - sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7879), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(10125), 1, - sym_splice_type_specifier, - STATE(10660), 1, - sym_qualified_identifier, - ACTIONS(14139), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(10976), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_expression, - [327743] = 9, + [328635] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(14143), 1, + ACTIONS(14519), 1, anon_sym___asm, - STATE(4505), 1, + STATE(4564), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(14141), 8, + ACTIONS(14517), 8, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -701016,12 +722916,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [327779] = 3, + [328671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8559), 1, + ACTIONS(9308), 1, anon_sym___attribute, - ACTIONS(8561), 15, + ACTIONS(9310), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -701037,241 +722937,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [327803] = 7, + [328695] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8559), 1, - anon_sym___attribute, - ACTIONS(10478), 1, - anon_sym_requires, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8410), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8561), 8, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, anon_sym_LPAREN2, + ACTIONS(13945), 1, + anon_sym_LBRACK, + ACTIONS(14523), 1, + anon_sym___asm, + STATE(4564), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14521), 8, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, - [327835] = 3, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [328731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 1, + ACTIONS(9045), 3, anon_sym___attribute, - ACTIONS(9039), 15, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9047), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [327859] = 13, + [328755] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, + ACTIONS(13823), 1, anon_sym_COLON_COLON, - ACTIONS(14145), 1, + ACTIONS(14525), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7879), 1, + STATE(7996), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10243), 1, + STATE(10503), 1, sym_splice_type_specifier, - STATE(10700), 1, + STATE(11289), 1, sym_qualified_identifier, - ACTIONS(14147), 2, + ACTIONS(14527), 2, anon_sym_enum, anon_sym_namespace, - STATE(10976), 4, + STATE(10768), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [327903] = 3, + [328799] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(14151), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(14149), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [327927] = 3, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13823), 1, + anon_sym_COLON_COLON, + ACTIONS(14529), 1, + sym_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7996), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(10225), 1, + sym_splice_type_specifier, + STATE(11282), 1, + sym_qualified_identifier, + ACTIONS(14531), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(10768), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [328843] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8721), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8723), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [327951] = 13, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13421), 1, + sym_identifier, + ACTIONS(13425), 1, + anon_sym_COLON_COLON, + ACTIONS(14533), 1, + anon_sym_virtual, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(8222), 1, + sym_splice_specifier, + STATE(8762), 1, + sym__scope_resolution, + STATE(3790), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(9763), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [328887] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, + ACTIONS(13823), 1, anon_sym_COLON_COLON, - ACTIONS(14153), 1, + ACTIONS(14535), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7879), 1, + STATE(7996), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10159), 1, + STATE(10219), 1, sym_splice_type_specifier, - STATE(10822), 1, + STATE(10828), 1, sym_qualified_identifier, - ACTIONS(14155), 2, + ACTIONS(14537), 2, anon_sym_enum, anon_sym_namespace, - STATE(10976), 4, + STATE(10768), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [327995] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(14159), 1, - anon_sym___asm, - STATE(4505), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14157), 8, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [328031] = 13, + [328931] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13046), 1, + ACTIONS(13421), 1, sym_identifier, - ACTIONS(13050), 1, + ACTIONS(13425), 1, anon_sym_COLON_COLON, - ACTIONS(14161), 1, + ACTIONS(14539), 1, anon_sym_virtual, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8576), 1, + STATE(8762), 1, sym__scope_resolution, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(9431), 2, + STATE(9481), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [328075] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9093), 1, - anon_sym___attribute, - ACTIONS(9095), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [328099] = 3, + [328975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9097), 1, + ACTIONS(9361), 1, anon_sym___attribute, - ACTIONS(9099), 15, + ACTIONS(9363), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -701287,273 +723161,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [328123] = 13, + [328999] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, + ACTIONS(13823), 1, anon_sym_COLON_COLON, - ACTIONS(14163), 1, + ACTIONS(14541), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7879), 1, + STATE(7996), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10146), 1, + STATE(10266), 1, sym_splice_type_specifier, - STATE(10759), 1, + STATE(10958), 1, sym_qualified_identifier, - ACTIONS(14165), 2, + ACTIONS(14543), 2, anon_sym_enum, anon_sym_namespace, - STATE(10976), 4, + STATE(10768), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [328167] = 13, + [329043] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, - anon_sym_COLON_COLON, - ACTIONS(14167), 1, + ACTIONS(13421), 1, sym_identifier, - STATE(3682), 1, + ACTIONS(13425), 1, + anon_sym_COLON_COLON, + ACTIONS(14545), 1, + anon_sym_virtual, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7879), 1, - sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10406), 1, + STATE(8762), 1, + sym__scope_resolution, + STATE(3790), 2, + sym_template_type, sym_splice_type_specifier, - STATE(11327), 1, - sym_qualified_identifier, - ACTIONS(14169), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(10976), 4, + STATE(9946), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, sym_decltype, - sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [328211] = 3, + [329087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9101), 1, + ACTIONS(9037), 3, anon_sym___attribute, - ACTIONS(9103), 15, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9039), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [328235] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10437), 1, - anon_sym_DASH_GT, - ACTIONS(12747), 1, - anon_sym_requires, - STATE(8438), 1, - sym_trailing_return_type, - ACTIONS(12744), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - [328269] = 7, + [329111] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7546), 1, - anon_sym___attribute, - ACTIONS(12747), 1, - anon_sym_requires, - ACTIONS(12744), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 8, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, + ACTIONS(13945), 1, anon_sym_LBRACK, - [328301] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9109), 1, - anon_sym___attribute, - ACTIONS(9111), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(14549), 1, + anon_sym___asm, + STATE(4564), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14547), 8, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - anon_sym_requires, - [328325] = 3, + [329147] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(14173), 3, - anon_sym___attribute, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(11793), 1, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(14171), 13, + ACTIONS(12162), 1, + anon_sym_STAR, + ACTIONS(12164), 1, + anon_sym_AMP_AMP, + ACTIONS(12166), 1, + anon_sym_AMP, + STATE(5222), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(9101), 1, + sym__abstract_declarator, + ACTIONS(9427), 3, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_GT2, - anon_sym_try, - [328349] = 13, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [329187] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, + ACTIONS(13823), 1, anon_sym_COLON_COLON, - ACTIONS(14175), 1, + ACTIONS(14551), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7879), 1, + STATE(7996), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10106), 1, + STATE(10478), 1, sym_splice_type_specifier, - STATE(10737), 1, + STATE(11562), 1, sym_qualified_identifier, - ACTIONS(14177), 2, + ACTIONS(14553), 2, anon_sym_enum, anon_sym_namespace, - STATE(10976), 4, + STATE(10768), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [328393] = 3, + [329231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 3, + ACTIONS(9365), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9406), 13, + ACTIONS(9367), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [328417] = 13, + anon_sym_requires, + [329255] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, + ACTIONS(13823), 1, anon_sym_COLON_COLON, - ACTIONS(14179), 1, + ACTIONS(14555), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7879), 1, + STATE(7996), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10384), 1, + STATE(10549), 1, sym_splice_type_specifier, - STATE(10618), 1, + STATE(10666), 1, sym_qualified_identifier, - ACTIONS(14181), 2, + ACTIONS(14557), 2, anon_sym_enum, anon_sym_namespace, - STATE(10976), 4, + STATE(10768), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [328461] = 3, + [329299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9456), 3, + ACTIONS(9760), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9458), 13, + ACTIONS(9762), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -701567,14 +723404,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [328485] = 3, + [329323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 3, + ACTIONS(9760), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9406), 13, + ACTIONS(9762), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -701588,185 +723425,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [328509] = 3, + [329347] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9082), 1, - anon_sym___attribute, - ACTIONS(9084), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [328533] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9404), 3, - anon_sym___attribute, + ACTIONS(13945), 1, anon_sym_LBRACK, + ACTIONS(14561), 1, anon_sym___asm, - ACTIONS(9406), 13, + STATE(4564), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14559), 8, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [328557] = 3, + [329383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 3, + ACTIONS(9389), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9406), 13, + ACTIONS(9391), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [328581] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9404), 3, - anon_sym___attribute, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9406), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [328605] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, - anon_sym_COLON_COLON, - ACTIONS(14183), 1, - sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7879), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(10211), 1, - sym_splice_type_specifier, - STATE(10907), 1, - sym_qualified_identifier, - ACTIONS(14185), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(10976), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_expression, - [328649] = 3, + anon_sym_requires, + [329407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9404), 3, + ACTIONS(8905), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9406), 13, + ACTIONS(8907), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [328673] = 8, + anon_sym_requires, + [329431] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10437), 1, - anon_sym_DASH_GT, - ACTIONS(12869), 1, + ACTIONS(8905), 1, + anon_sym___attribute, + ACTIONS(10861), 1, anon_sym_requires, - STATE(8441), 1, - sym_trailing_return_type, - ACTIONS(12866), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8391), 2, + STATE(8560), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7627), 7, + ACTIONS(8907), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [328707] = 7, + [329463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 1, + ACTIONS(9415), 1, anon_sym___attribute, - ACTIONS(12869), 1, - anon_sym_requires, - ACTIONS(12866), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7627), 8, + ACTIONS(9417), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -701775,255 +723534,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [328739] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, - anon_sym_COLON_COLON, - ACTIONS(14187), 1, - sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7879), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(10282), 1, - sym_splice_type_specifier, - STATE(11024), 1, - sym_qualified_identifier, - ACTIONS(14189), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(10976), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_expression, - [328783] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10437), 1, - anon_sym_DASH_GT, - ACTIONS(13035), 1, - anon_sym_requires, - STATE(8443), 1, - sym_trailing_return_type, - ACTIONS(13032), 2, + anon_sym_EQ, anon_sym_final, anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8397), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8089), 7, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [329487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9419), 1, + anon_sym___attribute, + ACTIONS(9421), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [328817] = 7, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [329511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8087), 1, + ACTIONS(9760), 3, anon_sym___attribute, - ACTIONS(13035), 1, - anon_sym_requires, - ACTIONS(13032), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8397), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8089), 8, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9762), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - [328849] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, - anon_sym_COLON_COLON, - ACTIONS(14191), 1, - sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7879), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(10435), 1, - sym_splice_type_specifier, - STATE(10670), 1, - sym_qualified_identifier, - ACTIONS(14193), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(10976), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_expression, - [328893] = 7, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [329535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8541), 1, + ACTIONS(11754), 3, anon_sym___attribute, - ACTIONS(14195), 1, - anon_sym_requires, - ACTIONS(14072), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8408), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8543), 8, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6883), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - [328925] = 8, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [329559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10437), 1, - anon_sym_DASH_GT, - ACTIONS(14195), 1, - anon_sym_requires, - STATE(8447), 1, - sym_trailing_return_type, - ACTIONS(14072), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8408), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8543), 7, + ACTIONS(14565), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(14563), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [329583] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9760), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9762), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - [328959] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, - anon_sym_COLON_COLON, - ACTIONS(14198), 1, - sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7879), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(10144), 1, - sym_splice_type_specifier, - STATE(10796), 1, - sym_qualified_identifier, - ACTIONS(14200), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(10976), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_expression, - [329003] = 5, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [329607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8959), 1, + ACTIONS(9760), 3, anon_sym___attribute, - ACTIONS(14121), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(14202), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8961), 11, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9762), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [329031] = 7, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [329631] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8559), 1, - anon_sym___attribute, - ACTIONS(14204), 1, + ACTIONS(10819), 1, + anon_sym_DASH_GT, + ACTIONS(10861), 1, anon_sym_requires, - ACTIONS(14078), 2, + STATE(8551), 1, + sym_trailing_return_type, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8410), 2, + STATE(8550), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8561), 8, + ACTIONS(8422), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [329063] = 3, + [329665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8999), 1, + ACTIONS(8913), 1, anon_sym___attribute, - ACTIONS(9001), 15, + ACTIONS(8915), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -702039,12 +723713,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [329087] = 3, + [329689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9003), 1, + ACTIONS(8424), 1, anon_sym___attribute, - ACTIONS(9005), 15, + ACTIONS(8422), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -702060,13 +723734,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [329111] = 3, + [329713] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13823), 1, + anon_sym_COLON_COLON, + ACTIONS(14567), 1, + sym_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7996), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(10469), 1, + sym_splice_type_specifier, + STATE(11519), 1, + sym_qualified_identifier, + ACTIONS(14569), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(10768), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [329757] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8913), 1, anon_sym___attribute, - ACTIONS(9013), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(10861), 1, + anon_sym_requires, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8601), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8915), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -702075,18 +723790,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [329135] = 3, + [329789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9015), 1, + ACTIONS(9435), 1, anon_sym___attribute, - ACTIONS(9017), 15, + ACTIONS(9437), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -702102,189 +723811,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [329159] = 8, + [329813] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10437), 1, - anon_sym_DASH_GT, - ACTIONS(10478), 1, + ACTIONS(8424), 1, + anon_sym___attribute, + ACTIONS(10861), 1, anon_sym_requires, - STATE(8456), 1, - sym_trailing_return_type, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8550), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 7, + ACTIONS(8422), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [329193] = 13, + [329845] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, + ACTIONS(13823), 1, anon_sym_COLON_COLON, - ACTIONS(14207), 1, + ACTIONS(14571), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7879), 1, + STATE(7996), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10080), 1, + STATE(10355), 1, sym_splice_type_specifier, - STATE(10581), 1, + STATE(11014), 1, sym_qualified_identifier, - ACTIONS(14209), 2, + ACTIONS(14573), 2, anon_sym_enum, anon_sym_namespace, - STATE(10976), 4, + STATE(10768), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [329237] = 8, + [329889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10437), 1, - anon_sym_DASH_GT, - ACTIONS(10478), 1, - anon_sym_requires, - STATE(8392), 1, - sym_trailing_return_type, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7627), 7, + ACTIONS(9369), 1, + anon_sym___attribute, + ACTIONS(9371), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [329271] = 3, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [329913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 1, + ACTIONS(14577), 3, anon_sym___attribute, - ACTIONS(7627), 15, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(14575), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [329295] = 7, + [329937] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 1, + ACTIONS(9322), 1, anon_sym___attribute, - ACTIONS(10478), 1, - anon_sym_requires, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7627), 8, + ACTIONS(14579), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9324), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [329327] = 3, + anon_sym_or, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [329963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7546), 1, + ACTIONS(9059), 3, anon_sym___attribute, - ACTIONS(7544), 15, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9061), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [329987] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9088), 3, + anon_sym___attribute, anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9090), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [329351] = 7, + [330011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7546), 1, + ACTIONS(14583), 3, anon_sym___attribute, - ACTIONS(10478), 1, - anon_sym_requires, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 8, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(14581), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [330035] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9063), 3, + anon_sym___attribute, anon_sym_LBRACK, - [329383] = 3, + anon_sym___asm, + ACTIONS(9065), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [330059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14213), 3, + ACTIONS(9067), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(14211), 13, + ACTIONS(9069), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -702298,14 +724036,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [329407] = 3, + [330083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14217), 3, + ACTIONS(9080), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(14215), 13, + ACTIONS(9082), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -702319,43 +724057,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [329431] = 13, + [330107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13046), 1, - sym_identifier, - ACTIONS(13050), 1, - anon_sym_COLON_COLON, - ACTIONS(14219), 1, - anon_sym_virtual, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8576), 1, - sym__scope_resolution, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(9729), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [329475] = 3, + ACTIONS(9084), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9086), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [330131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9029), 1, + ACTIONS(9407), 1, anon_sym___attribute, - ACTIONS(9031), 15, + ACTIONS(9409), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -702371,86 +724099,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [329499] = 14, + [330155] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(4676), 1, anon_sym_LBRACE, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13439), 1, + ACTIONS(13799), 1, anon_sym_COLON, - ACTIONS(13443), 1, + ACTIONS(13803), 1, anon_sym_LBRACK, - ACTIONS(14223), 1, + ACTIONS(14587), 1, anon_sym___attribute, - ACTIONS(14225), 1, + ACTIONS(14589), 1, anon_sym_EQ, - STATE(4234), 1, + STATE(4334), 1, sym_parameter_list, - STATE(8715), 1, + STATE(8856), 1, sym__function_declarator_seq, - STATE(9406), 1, + STATE(9441), 1, sym_bitfield_clause, - STATE(9418), 1, + STATE(9444), 1, sym_initializer_list, - STATE(8581), 2, + STATE(8678), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(14221), 3, + ACTIONS(14585), 3, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, - [329545] = 3, + [330201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8689), 3, + ACTIONS(9373), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8691), 13, + ACTIONS(9375), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [329569] = 3, + anon_sym_requires, + [330225] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13823), 1, + anon_sym_COLON_COLON, + ACTIONS(14591), 1, + sym_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7996), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(10297), 1, + sym_splice_type_specifier, + STATE(11625), 1, + sym_qualified_identifier, + ACTIONS(14593), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(10768), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [330269] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13823), 1, + anon_sym_COLON_COLON, + ACTIONS(14595), 1, + sym_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7996), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(10490), 1, + sym_splice_type_specifier, + STATE(11253), 1, + sym_qualified_identifier, + ACTIONS(14597), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(10768), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [330313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8705), 3, + ACTIONS(9423), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8707), 13, + ACTIONS(9425), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [329593] = 3, + anon_sym_requires, + [330337] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10819), 1, + anon_sym_DASH_GT, + ACTIONS(10861), 1, + anon_sym_requires, + STATE(8565), 1, + sym_trailing_return_type, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8561), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7966), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + [330371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9007), 1, + ACTIONS(7968), 1, anon_sym___attribute, - ACTIONS(9009), 15, + ACTIONS(7966), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -702466,41 +724282,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [329617] = 9, + [330395] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(14229), 1, - anon_sym___asm, - STATE(4505), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14227), 8, + ACTIONS(7968), 1, + anon_sym___attribute, + ACTIONS(10861), 1, + anon_sym_requires, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8561), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7966), 8, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [329653] = 3, + anon_sym_LBRACK, + [330427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8731), 3, + ACTIONS(14601), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8733), 13, + ACTIONS(14599), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -702514,35 +724328,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [329677] = 3, + [330451] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11399), 3, - anon_sym___attribute, + ACTIONS(10819), 1, + anon_sym_DASH_GT, + ACTIONS(13149), 1, + anon_sym_requires, + STATE(8511), 1, + sym_trailing_return_type, + ACTIONS(13146), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6515), 13, + [330485] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7789), 1, + anon_sym___attribute, + ACTIONS(13149), 1, + anon_sym_requires, + ACTIONS(13146), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [329701] = 3, + anon_sym_LBRACK, + [330517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14233), 3, + ACTIONS(14605), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(14231), 13, + ACTIONS(14603), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -702556,14 +724400,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [329725] = 3, + [330541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14237), 3, + ACTIONS(14609), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(14235), 13, + ACTIONS(14607), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -702577,66 +724421,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [329749] = 13, + [330565] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13046), 1, - sym_identifier, - ACTIONS(13050), 1, + ACTIONS(13823), 1, anon_sym_COLON_COLON, - ACTIONS(14239), 1, - anon_sym_virtual, - STATE(3682), 1, + ACTIONS(14611), 1, + sym_identifier, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8576), 1, + STATE(7996), 1, sym__scope_resolution, - STATE(3712), 2, - sym_template_type, + STATE(8222), 1, + sym_splice_specifier, + STATE(10261), 1, sym_splice_type_specifier, - STATE(9996), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10976), 3, + STATE(11179), 1, + sym_qualified_identifier, + ACTIONS(14613), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(10768), 4, sym_decltype, + sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [329793] = 3, + [330609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8685), 3, + ACTIONS(9316), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8687), 13, + ACTIONS(9318), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [329817] = 3, + anon_sym_requires, + [330633] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10819), 1, + anon_sym_DASH_GT, + ACTIONS(10861), 1, + anon_sym_requires, + STATE(8563), 1, + sym_trailing_return_type, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8560), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8907), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + [330667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8713), 3, + ACTIONS(14617), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8715), 13, + ACTIONS(14615), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -702650,14 +724520,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [329841] = 3, + [330691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8717), 3, + ACTIONS(9915), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8719), 13, + ACTIONS(9917), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -702671,12 +724541,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [329865] = 3, + [330715] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9333), 1, + anon_sym___attribute, + ACTIONS(9335), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [330739] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9393), 1, + anon_sym___attribute, + ACTIONS(14579), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(14619), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9395), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [330767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9078), 1, + ACTIONS(9337), 1, anon_sym___attribute, - ACTIONS(9080), 15, + ACTIONS(9339), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -702692,148 +724606,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [329889] = 13, + [330791] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, + ACTIONS(5946), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(14241), 1, + ACTIONS(14462), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7879), 1, + STATE(7998), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10289), 1, + STATE(10273), 2, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(10768), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [330833] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13823), 1, + anon_sym_COLON_COLON, + ACTIONS(14621), 1, + sym_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7996), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(10346), 1, sym_splice_type_specifier, - STATE(11099), 1, + STATE(10997), 1, sym_qualified_identifier, - ACTIONS(14243), 2, + ACTIONS(14623), 2, anon_sym_enum, anon_sym_namespace, - STATE(10976), 4, + STATE(10768), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [329933] = 8, + [330877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10606), 1, - anon_sym_DASH_GT, - ACTIONS(12872), 1, - anon_sym_requires, - STATE(8315), 1, - sym_trailing_return_type, - ACTIONS(12866), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7627), 6, + ACTIONS(9445), 1, + anon_sym___attribute, + ACTIONS(9447), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [329966] = 9, + anon_sym_requires, + [330901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8541), 1, + ACTIONS(9760), 3, anon_sym___attribute, - ACTIONS(10478), 1, - anon_sym_requires, - ACTIONS(11171), 1, - anon_sym_DASH_GT, - STATE(8409), 1, - sym_trailing_return_type, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8408), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8543), 5, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9762), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK, - [330001] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14245), 1, - sym_identifier, - ACTIONS(14247), 1, - aux_sym_preproc_if_token2, - ACTIONS(14249), 1, - aux_sym_preproc_else_token1, - ACTIONS(14251), 1, - aux_sym_preproc_elif_token1, - STATE(8747), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8748), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(8986), 1, - sym_enumerator, - ACTIONS(14253), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(10611), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(10612), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [330040] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14105), 1, - sym_identifier, - STATE(8533), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(9893), 2, - sym__string, - sym_concatenated_string, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(161), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [330069] = 6, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [330925] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 1, + ACTIONS(14483), 1, sym_identifier, - STATE(8533), 2, + STATE(8656), 2, sym_string_literal, sym_raw_string_literal, - STATE(9963), 2, + STATE(9673), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -702848,277 +724732,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [330098] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7546), 1, - anon_sym___attribute, - ACTIONS(10812), 1, - anon_sym_requires, - ACTIONS(11140), 1, - anon_sym_DASH_GT, - STATE(8596), 1, - sym_trailing_return_type, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 5, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [330133] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7629), 1, - anon_sym___attribute, - ACTIONS(10812), 1, - anon_sym_requires, - ACTIONS(11140), 1, - anon_sym_DASH_GT, - STATE(8553), 1, - sym_trailing_return_type, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7627), 5, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [330168] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8087), 1, - anon_sym___attribute, - ACTIONS(10812), 1, - anon_sym_requires, - ACTIONS(11140), 1, - anon_sym_DASH_GT, - STATE(8635), 1, - sym_trailing_return_type, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8397), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8089), 5, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [330203] = 9, + [330954] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8541), 1, + ACTIONS(7968), 1, anon_sym___attribute, - ACTIONS(10812), 1, + ACTIONS(10861), 1, anon_sym_requires, - ACTIONS(11140), 1, + ACTIONS(11518), 1, anon_sym_DASH_GT, - STATE(8555), 1, + STATE(8565), 1, sym_trailing_return_type, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8408), 2, + STATE(8561), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8543), 5, + ACTIONS(7966), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - anon_sym_GT2, - [330238] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10606), 1, - anon_sym_DASH_GT, - ACTIONS(10753), 1, - anon_sym_requires, - STATE(8276), 1, - sym_trailing_return_type, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7627), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [330271] = 12, + [330989] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13046), 1, + ACTIONS(13421), 1, sym_identifier, - ACTIONS(13050), 1, + ACTIONS(13425), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8576), 1, + STATE(8762), 1, sym__scope_resolution, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(9431), 2, + STATE(9642), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [330312] = 9, + [331030] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7546), 1, + ACTIONS(8424), 1, anon_sym___attribute, - ACTIONS(11140), 1, - anon_sym_DASH_GT, - ACTIONS(12833), 1, + ACTIONS(10861), 1, anon_sym_requires, - STATE(8568), 1, + ACTIONS(11518), 1, + anon_sym_DASH_GT, + STATE(8551), 1, sym_trailing_return_type, - ACTIONS(12744), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8550), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 5, + ACTIONS(8422), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - anon_sym_GT2, - [330347] = 9, + [331065] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 1, + ACTIONS(8905), 1, anon_sym___attribute, - ACTIONS(11140), 1, - anon_sym_DASH_GT, - ACTIONS(12890), 1, + ACTIONS(10861), 1, anon_sym_requires, - STATE(8570), 1, + ACTIONS(11518), 1, + anon_sym_DASH_GT, + STATE(8563), 1, sym_trailing_return_type, - ACTIONS(12866), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8391), 2, + STATE(8560), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7627), 5, + ACTIONS(8907), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - anon_sym_GT2, - [330382] = 9, + [331100] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8087), 1, - anon_sym___attribute, - ACTIONS(11140), 1, - anon_sym_DASH_GT, - ACTIONS(13172), 1, - anon_sym_requires, - STATE(8573), 1, - sym_trailing_return_type, - ACTIONS(13032), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8397), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8089), 5, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [330417] = 9, + ACTIONS(14483), 1, + sym_identifier, + STATE(8656), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(9886), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [331129] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8541), 1, + ACTIONS(8905), 1, anon_sym___attribute, - ACTIONS(11140), 1, + ACTIONS(11516), 1, anon_sym_DASH_GT, - ACTIONS(14255), 1, + ACTIONS(14625), 1, anon_sym_requires, - STATE(8575), 1, + STATE(8749), 1, sym_trailing_return_type, - ACTIONS(14072), 2, + ACTIONS(14419), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8408), 2, + STATE(8560), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8543), 5, + ACTIONS(8907), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [330452] = 6, + [331164] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 1, + ACTIONS(14483), 1, sym_identifier, - STATE(8533), 2, + STATE(8656), 2, sym_string_literal, sym_raw_string_literal, - STATE(9930), 2, + STATE(10062), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -703133,15 +724911,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [330481] = 6, + [331193] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 1, + ACTIONS(14483), 1, sym_identifier, - STATE(8533), 2, + STATE(8656), 2, sym_string_literal, sym_raw_string_literal, - STATE(9668), 2, + STATE(9906), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -703156,40 +724934,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [330510] = 8, + [331222] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10606), 1, - anon_sym_DASH_GT, - ACTIONS(10753), 1, - anon_sym_requires, - STATE(8259), 1, - sym_trailing_return_type, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 6, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, anon_sym_LPAREN2, + ACTIONS(13803), 1, + anon_sym_LBRACK, + ACTIONS(14630), 1, + anon_sym___attribute, + STATE(4334), 1, + sym_parameter_list, + STATE(8856), 1, + sym__function_declarator_seq, + STATE(8678), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14628), 7, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - [330543] = 6, + [331257] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14632), 1, + sym_identifier, + ACTIONS(14634), 1, + aux_sym_preproc_if_token2, + ACTIONS(14636), 1, + aux_sym_preproc_else_token1, + ACTIONS(14638), 1, + aux_sym_preproc_elif_token1, + STATE(8923), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8924), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(9089), 1, + sym_enumerator, + ACTIONS(14640), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(10850), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + STATE(10879), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [331296] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14483), 1, + sym_identifier, + STATE(8656), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(9971), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [331325] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14483), 1, + sym_identifier, + STATE(8656), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(11518), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [331354] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 1, + ACTIONS(14483), 1, sym_identifier, - STATE(8533), 2, + STATE(8656), 2, sym_string_literal, sym_raw_string_literal, - STATE(9925), 2, + STATE(9993), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -703204,68 +725057,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [330572] = 11, + [331383] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(11429), 1, + ACTIONS(13803), 1, anon_sym_LBRACK, - ACTIONS(11902), 1, - anon_sym_STAR, - ACTIONS(11904), 1, - anon_sym_AMP_AMP, - ACTIONS(11906), 1, - anon_sym_AMP, - STATE(5441), 1, + ACTIONS(14644), 1, + anon_sym___attribute, + STATE(4334), 1, sym_parameter_list, - STATE(8393), 1, + STATE(8856), 1, sym__function_declarator_seq, - STATE(9131), 1, - sym__abstract_declarator, - ACTIONS(9072), 2, + STATE(8678), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14642), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_requires, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [330611] = 8, + anon_sym_EQ, + anon_sym_try, + [331418] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10606), 1, - anon_sym_DASH_GT, - ACTIONS(10753), 1, - anon_sym_requires, - STATE(8268), 1, - sym_trailing_return_type, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8397), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8089), 6, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, anon_sym_LPAREN2, + ACTIONS(13803), 1, + anon_sym_LBRACK, + ACTIONS(14648), 1, + anon_sym___attribute, + STATE(4334), 1, + sym_parameter_list, + STATE(8856), 1, + sym__function_declarator_seq, + STATE(8678), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14646), 7, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - [330644] = 6, + [331453] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13421), 1, + sym_identifier, + ACTIONS(13425), 1, + anon_sym_COLON_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(8222), 1, + sym_splice_specifier, + STATE(8762), 1, + sym__scope_resolution, + STATE(3790), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(9946), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(10768), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [331494] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14483), 1, + sym_identifier, + STATE(8656), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(10061), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [331523] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14483), 1, + sym_identifier, + STATE(8656), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(10086), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [331552] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14483), 1, + sym_identifier, + STATE(8656), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(10137), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [331581] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 1, + ACTIONS(14483), 1, sym_identifier, - STATE(8533), 2, + STATE(8656), 2, sym_string_literal, sym_raw_string_literal, - STATE(9813), 2, + STATE(10126), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -703280,15 +725230,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [330673] = 6, + [331610] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 1, + ACTIONS(14483), 1, sym_identifier, - STATE(8533), 2, + STATE(8656), 2, sym_string_literal, sym_raw_string_literal, - STATE(9915), 2, + STATE(10158), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -703303,142 +725253,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [330702] = 9, + [331639] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7546), 1, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13803), 1, + anon_sym_LBRACK, + ACTIONS(14652), 1, anon_sym___attribute, - ACTIONS(11171), 1, + STATE(4334), 1, + sym_parameter_list, + STATE(8856), 1, + sym__function_declarator_seq, + STATE(8678), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14650), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [331674] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11044), 1, anon_sym_DASH_GT, - ACTIONS(12747), 1, + ACTIONS(13188), 1, + anon_sym_requires, + STATE(8398), 1, + sym_trailing_return_type, + ACTIONS(13146), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [331707] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11044), 1, + anon_sym_DASH_GT, + ACTIONS(13236), 1, + anon_sym_requires, + STATE(8401), 1, + sym_trailing_return_type, + ACTIONS(13202), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8561), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7966), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [331740] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(12261), 1, + anon_sym_STAR, + ACTIONS(12263), 1, + anon_sym_AMP_AMP, + ACTIONS(12265), 1, + anon_sym_AMP, + STATE(5697), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(9226), 1, + sym__abstract_declarator, + ACTIONS(9427), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [331779] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11044), 1, + anon_sym_DASH_GT, + ACTIONS(13485), 1, anon_sym_requires, - STATE(8438), 1, + STATE(8402), 1, sym_trailing_return_type, - ACTIONS(12744), 2, + ACTIONS(13396), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8550), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8422), 6, anon_sym_LPAREN2, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - [330737] = 9, + anon_sym_EQ, + anon_sym_try, + [331812] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 1, - anon_sym___attribute, - ACTIONS(11171), 1, - anon_sym_DASH_GT, - ACTIONS(12869), 1, + ACTIONS(10921), 1, anon_sym_requires, - STATE(8441), 1, + ACTIONS(11044), 1, + anon_sym_DASH_GT, + STATE(8408), 1, sym_trailing_return_type, - ACTIONS(12866), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8391), 2, + STATE(8560), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7627), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8907), 6, anon_sym_LPAREN2, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - [330772] = 9, + anon_sym_EQ, + anon_sym_try, + [331845] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8087), 1, - anon_sym___attribute, - ACTIONS(11171), 1, - anon_sym_DASH_GT, - ACTIONS(13035), 1, + ACTIONS(10921), 1, anon_sym_requires, - STATE(8443), 1, + ACTIONS(11044), 1, + anon_sym_DASH_GT, + STATE(8374), 1, sym_trailing_return_type, - ACTIONS(13032), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8397), 2, + STATE(8561), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8089), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7966), 6, anon_sym_LPAREN2, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - [330807] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14105), 1, - sym_identifier, - STATE(8533), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(9612), 2, - sym__string, - sym_concatenated_string, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(161), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [330836] = 9, + anon_sym_EQ, + anon_sym_try, + [331878] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8541), 1, - anon_sym___attribute, - ACTIONS(11171), 1, + ACTIONS(11044), 1, anon_sym_DASH_GT, - ACTIONS(14195), 1, + ACTIONS(14422), 1, anon_sym_requires, - STATE(8447), 1, + STATE(8403), 1, sym_trailing_return_type, - ACTIONS(14072), 2, + ACTIONS(14419), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8408), 2, + STATE(8560), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8543), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8907), 6, anon_sym_LPAREN2, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - [330871] = 6, + anon_sym_EQ, + anon_sym_try, + [331911] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 1, + ACTIONS(14483), 1, sym_identifier, - STATE(8533), 2, + STATE(8656), 2, sym_string_literal, sym_raw_string_literal, - STATE(9660), 2, + STATE(10179), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -703453,15 +725480,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [330900] = 6, + [331940] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 1, + ACTIONS(14483), 1, sym_identifier, - STATE(8533), 2, + STATE(8656), 2, sym_string_literal, sym_raw_string_literal, - STATE(9919), 2, + STATE(9784), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -703476,15 +725503,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [330929] = 6, + [331969] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 1, + ACTIONS(14483), 1, sym_identifier, - STATE(8533), 2, + STATE(8656), 2, sym_string_literal, sym_raw_string_literal, - STATE(9758), 2, + STATE(10927), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -703499,44 +725526,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [330958] = 6, + [331998] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7789), 1, + anon_sym___attribute, + ACTIONS(11516), 1, + anon_sym_DASH_GT, + ACTIONS(13197), 1, + anon_sym_requires, + STATE(8715), 1, + sym_trailing_return_type, + ACTIONS(13146), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [332033] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 1, + ACTIONS(14632), 1, sym_identifier, - STATE(8533), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(9777), 2, - sym__string, - sym_concatenated_string, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(161), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [330987] = 6, + ACTIONS(14636), 1, + aux_sym_preproc_else_token1, + ACTIONS(14638), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14654), 1, + aux_sym_preproc_if_token2, + STATE(8870), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8871), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(9089), 1, + sym_enumerator, + ACTIONS(14640), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(11503), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(11504), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [332072] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13803), 1, + anon_sym_LBRACK, + ACTIONS(14658), 1, + anon_sym___attribute, + STATE(4334), 1, + sym_parameter_list, + STATE(8856), 1, + sym__function_declarator_seq, + STATE(8678), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14656), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [332107] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(5655), 1, anon_sym_COLON_COLON, - ACTIONS(14258), 1, + ACTIONS(14660), 1, anon_sym_LT, - STATE(3966), 1, + STATE(4045), 1, sym_template_argument_list, - ACTIONS(11399), 4, + ACTIONS(6574), 4, anon_sym___attribute, anon_sym_COLON, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6515), 8, + ACTIONS(6567), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -703545,110 +725629,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_asm, anon_sym___asm__, - [331016] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14105), 1, - sym_identifier, - STATE(8533), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(9643), 2, - sym__string, - sym_concatenated_string, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(161), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [331045] = 9, + [332136] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(7968), 1, + anon_sym___attribute, + ACTIONS(11518), 1, + anon_sym_DASH_GT, + ACTIONS(13205), 1, + anon_sym_requires, + STATE(8513), 1, + sym_trailing_return_type, + ACTIONS(13202), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8561), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7966), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(13443), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(14262), 1, + [332171] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8424), 1, anon_sym___attribute, - STATE(4234), 1, - sym_parameter_list, - STATE(8715), 1, - sym__function_declarator_seq, - STATE(8581), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14260), 7, + ACTIONS(11518), 1, + anon_sym_DASH_GT, + ACTIONS(13399), 1, + anon_sym_requires, + STATE(8517), 1, + sym_trailing_return_type, + ACTIONS(13396), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8550), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8422), 5, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [331080] = 6, + anon_sym_LBRACK, + [332206] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 1, - sym_identifier, - STATE(8533), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(9876), 2, - sym__string, - sym_concatenated_string, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(161), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [331109] = 6, + ACTIONS(8905), 1, + anon_sym___attribute, + ACTIONS(11518), 1, + anon_sym_DASH_GT, + ACTIONS(14499), 1, + anon_sym_requires, + STATE(8519), 1, + sym_trailing_return_type, + ACTIONS(14419), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8560), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8907), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + [332241] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 1, - sym_identifier, - STATE(8533), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(9967), 2, - sym__string, - sym_concatenated_string, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(161), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [331138] = 6, + ACTIONS(7968), 1, + anon_sym___attribute, + ACTIONS(11516), 1, + anon_sym_DASH_GT, + ACTIONS(13239), 1, + anon_sym_requires, + STATE(8725), 1, + sym_trailing_return_type, + ACTIONS(13202), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8561), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7966), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [332276] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 1, + ACTIONS(14483), 1, sym_identifier, - STATE(8533), 2, + STATE(8656), 2, sym_string_literal, sym_raw_string_literal, - STATE(10002), 2, + STATE(9705), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -703663,40 +725756,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331167] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10606), 1, - anon_sym_DASH_GT, - ACTIONS(10753), 1, - anon_sym_requires, - STATE(8293), 1, - sym_trailing_return_type, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8408), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8543), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [331200] = 6, + [332305] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 1, + ACTIONS(14483), 1, sym_identifier, - STATE(8533), 2, + STATE(8656), 2, sym_string_literal, sym_raw_string_literal, - STATE(10682), 2, + STATE(9896), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -703711,73 +725779,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331229] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14245), 1, - sym_identifier, - ACTIONS(14249), 1, - aux_sym_preproc_else_token1, - ACTIONS(14251), 1, - aux_sym_preproc_elif_token1, - ACTIONS(14264), 1, - aux_sym_preproc_if_token2, - STATE(8755), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8757), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(8986), 1, - sym_enumerator, - ACTIONS(14253), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(10691), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(11537), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [331268] = 13, + [332334] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(14266), 1, + ACTIONS(14662), 1, sym_identifier, - ACTIONS(14268), 1, + ACTIONS(14664), 1, anon_sym_COLON_COLON, - ACTIONS(14270), 1, + ACTIONS(14666), 1, anon_sym_LBRACK_COLON, - STATE(3893), 1, + STATE(3960), 1, sym_splice_specifier, - STATE(3932), 1, + STATE(3961), 1, sym_splice_type_specifier, - STATE(4045), 1, - sym_template_type, - STATE(4139), 1, + STATE(4150), 1, sym__splice_specialization_specifier, - STATE(8636), 1, + STATE(4203), 1, + sym_template_type, + STATE(8754), 1, sym__scope_resolution, - STATE(4162), 2, + STATE(4229), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [331311] = 6, + [332377] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(14660), 1, + anon_sym_LT, + STATE(4045), 1, + sym_template_argument_list, + ACTIONS(11754), 4, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6883), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_asm, + anon_sym___asm__, + [332406] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 1, + ACTIONS(14483), 1, sym_identifier, - STATE(8533), 2, + STATE(8656), 2, sym_string_literal, sym_raw_string_literal, - STATE(9676), 2, + STATE(10685), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -703792,44 +725855,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331340] = 12, + [332435] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13046), 1, + ACTIONS(13421), 1, sym_identifier, - ACTIONS(13050), 1, + ACTIONS(13425), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8576), 1, + STATE(8762), 1, sym__scope_resolution, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(9729), 2, + STATE(10198), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [331381] = 6, + [332476] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 1, + ACTIONS(14483), 1, sym_identifier, - STATE(8533), 2, + STATE(8656), 2, sym_string_literal, sym_raw_string_literal, - STATE(9903), 2, + STATE(10810), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -703844,15 +725907,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331410] = 6, + [332505] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 1, + ACTIONS(14483), 1, sym_identifier, - STATE(8533), 2, + STATE(8656), 2, sym_string_literal, sym_raw_string_literal, - STATE(11503), 2, + STATE(10889), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -703867,43 +725930,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331439] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14245), 1, - sym_identifier, - ACTIONS(14249), 1, - aux_sym_preproc_else_token1, - ACTIONS(14251), 1, - aux_sym_preproc_elif_token1, - ACTIONS(14272), 1, - aux_sym_preproc_if_token2, - STATE(8811), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8812), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(8986), 1, - sym_enumerator, - ACTIONS(14253), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(10989), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(10990), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [331478] = 6, + [332534] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 1, + ACTIONS(14483), 1, sym_identifier, - STATE(8533), 2, + STATE(8656), 2, sym_string_literal, sym_raw_string_literal, - STATE(10505), 2, + STATE(9755), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -703918,41 +725953,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331507] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13443), 1, - anon_sym_LBRACK, - ACTIONS(14276), 1, - anon_sym___attribute, - STATE(4234), 1, - sym_parameter_list, - STATE(8715), 1, - sym__function_declarator_seq, - STATE(8581), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14274), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [331542] = 6, + [332563] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 1, + ACTIONS(14483), 1, sym_identifier, - STATE(8533), 2, + STATE(8656), 2, sym_string_literal, sym_raw_string_literal, - STATE(10629), 2, + STATE(10946), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -703967,15 +725976,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331571] = 6, + [332592] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 1, + ACTIONS(14483), 1, sym_identifier, - STATE(8533), 2, + STATE(8656), 2, sym_string_literal, sym_raw_string_literal, - STATE(10708), 2, + STATE(11000), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -703990,15 +725999,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331600] = 6, + [332621] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 1, + ACTIONS(14483), 1, sym_identifier, - STATE(8533), 2, + STATE(8656), 2, sym_string_literal, sym_raw_string_literal, - STATE(10765), 2, + STATE(9826), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -704013,1590 +726022,1266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331629] = 6, + [332650] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 1, - sym_identifier, - STATE(8533), 2, + STATE(8501), 2, sym_string_literal, sym_raw_string_literal, - STATE(10819), 2, - sym__string, - sym_concatenated_string, - ACTIONS(123), 5, + ACTIONS(9118), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(14477), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(161), 5, + ACTIONS(14479), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331658] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13443), 1, - anon_sym_LBRACK, - ACTIONS(14280), 1, - anon_sym___attribute, - STATE(4234), 1, - sym_parameter_list, - STATE(8715), 1, - sym__function_declarator_seq, - STATE(8581), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14278), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [331693] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13443), 1, - anon_sym_LBRACK, - ACTIONS(14284), 1, - anon_sym___attribute, - STATE(4234), 1, - sym_parameter_list, - STATE(8715), 1, - sym__function_declarator_seq, - STATE(8581), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14282), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [331728] = 5, + [332677] = 6, ACTIONS(3), 1, sym_comment, - STATE(8341), 2, + ACTIONS(14483), 1, + sym_identifier, + STATE(8656), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(8739), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(14086), 5, + STATE(9799), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(14088), 5, + ACTIONS(161), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331755] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10606), 1, - anon_sym_DASH_GT, - ACTIONS(12824), 1, - anon_sym_requires, - STATE(8314), 1, - sym_trailing_return_type, - ACTIONS(12744), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [331788] = 6, + [332706] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(14258), 1, - anon_sym_LT, - STATE(3966), 1, - sym_template_argument_list, - ACTIONS(6210), 4, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6203), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_asm, - anon_sym___asm__, - [331817] = 8, + ACTIONS(14632), 1, + sym_identifier, + ACTIONS(14636), 1, + aux_sym_preproc_else_token1, + ACTIONS(14638), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14668), 1, + aux_sym_preproc_if_token2, + STATE(8900), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8901), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(9089), 1, + sym_enumerator, + ACTIONS(14640), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(10741), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(10744), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [332745] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10606), 1, - anon_sym_DASH_GT, - ACTIONS(13110), 1, + ACTIONS(10921), 1, anon_sym_requires, - STATE(8316), 1, + ACTIONS(11044), 1, + anon_sym_DASH_GT, + STATE(8428), 1, sym_trailing_return_type, - ACTIONS(13032), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8397), 2, + STATE(8550), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8089), 6, + ACTIONS(8422), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - [331850] = 12, + [332778] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13046), 1, + ACTIONS(13421), 1, sym_identifier, - ACTIONS(13050), 1, + ACTIONS(13425), 1, anon_sym_COLON_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8576), 1, + STATE(8762), 1, sym__scope_resolution, - STATE(3712), 2, + STATE(3790), 2, sym_template_type, sym_splice_type_specifier, - STATE(9574), 2, + STATE(9533), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [331891] = 8, + [332819] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10606), 1, - anon_sym_DASH_GT, - ACTIONS(14075), 1, + ACTIONS(10921), 1, anon_sym_requires, - STATE(8317), 1, + ACTIONS(11044), 1, + anon_sym_DASH_GT, + STATE(8441), 1, sym_trailing_return_type, - ACTIONS(14072), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8408), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8543), 6, + ACTIONS(7791), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - [331924] = 9, + [332852] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13443), 1, - anon_sym_LBRACK, - ACTIONS(14288), 1, + ACTIONS(8424), 1, anon_sym___attribute, - STATE(4234), 1, - sym_parameter_list, - STATE(8715), 1, - sym__function_declarator_seq, - STATE(8581), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14286), 7, + ACTIONS(11516), 1, + anon_sym_DASH_GT, + ACTIONS(13536), 1, + anon_sym_requires, + STATE(8735), 1, + sym_trailing_return_type, + ACTIONS(13396), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8550), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8422), 5, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_LPAREN2, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [331959] = 11, + anon_sym_LBRACK, + anon_sym_GT2, + [332887] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14245), 1, + ACTIONS(14483), 1, sym_identifier, - ACTIONS(14249), 1, + STATE(8656), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(9930), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [332916] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14632), 1, + sym_identifier, + ACTIONS(14636), 1, aux_sym_preproc_else_token1, - ACTIONS(14251), 1, + ACTIONS(14638), 1, aux_sym_preproc_elif_token1, - ACTIONS(14290), 1, + ACTIONS(14670), 1, aux_sym_preproc_if_token2, - STATE(8735), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(8759), 1, + STATE(8890), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8986), 1, + STATE(8892), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(9089), 1, sym_enumerator, - ACTIONS(14253), 2, + ACTIONS(14640), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(10843), 3, + STATE(11038), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - STATE(11332), 3, + STATE(11064), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [331998] = 12, + [332955] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13046), 1, - sym_identifier, - ACTIONS(13050), 1, - anon_sym_COLON_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8576), 1, - sym__scope_resolution, - STATE(3712), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(9384), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10976), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [332039] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7546), 1, + ACTIONS(7789), 1, anon_sym___attribute, - ACTIONS(10478), 1, + ACTIONS(10861), 1, anon_sym_requires, - ACTIONS(11171), 1, + ACTIONS(11518), 1, anon_sym_DASH_GT, - STATE(8456), 1, + STATE(8585), 1, sym_trailing_return_type, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 5, + ACTIONS(7791), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [332074] = 9, + [332990] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 1, + ACTIONS(7789), 1, anon_sym___attribute, - ACTIONS(10478), 1, + ACTIONS(11298), 1, anon_sym_requires, - ACTIONS(11171), 1, + ACTIONS(11516), 1, anon_sym_DASH_GT, - STATE(8392), 1, + STATE(8718), 1, sym_trailing_return_type, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8391), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7627), 5, + ACTIONS(7791), 5, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [332109] = 9, + anon_sym_GT2, + [333025] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8087), 1, + ACTIONS(7968), 1, anon_sym___attribute, - ACTIONS(10478), 1, + ACTIONS(11298), 1, anon_sym_requires, - ACTIONS(11171), 1, + ACTIONS(11516), 1, anon_sym_DASH_GT, - STATE(8398), 1, + STATE(8730), 1, sym_trailing_return_type, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8397), 2, + STATE(8561), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8089), 5, + ACTIONS(7966), 5, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [332144] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14105), 1, - sym_identifier, - STATE(8533), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(9851), 2, - sym__string, - sym_concatenated_string, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(161), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [332173] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(14292), 1, - anon_sym_SEMI, - STATE(4505), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(9781), 1, - sym_gnu_asm_expression, - STATE(9782), 1, - aux_sym_declaration_repeat1, - ACTIONS(13561), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [332215] = 6, + anon_sym_GT2, + [333060] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14070), 1, - anon_sym_LBRACK, - STATE(4509), 1, - sym_parameter_list, - STATE(8235), 1, - sym__function_declarator_seq, - ACTIONS(9862), 10, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, + ACTIONS(8424), 1, + anon_sym___attribute, + ACTIONS(11298), 1, anon_sym_requires, - [332243] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10232), 1, - anon_sym_LBRACE, - ACTIONS(11399), 1, - anon_sym_LBRACK, - ACTIONS(14294), 1, - anon_sym_SEMI, - ACTIONS(14296), 1, - anon_sym_COLON, - ACTIONS(14298), 1, - anon_sym_EQ, - ACTIONS(14300), 1, - anon_sym_try, - STATE(2705), 1, - sym_compound_statement, - STATE(10142), 1, - sym_field_initializer_list, - ACTIONS(6515), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(2706), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [332281] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10705), 1, - anon_sym_COLON_COLON, - ACTIONS(14302), 1, - sym_identifier, - ACTIONS(14304), 1, - anon_sym_template, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(3981), 1, - sym_template_type, - STATE(3982), 1, - sym_dependent_type_identifier, - STATE(4151), 1, - sym_qualified_type_identifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8549), 1, - sym__scope_resolution, - STATE(10976), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [332323] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10810), 1, + ACTIONS(11516), 1, anon_sym_DASH_GT, - ACTIONS(10812), 1, - anon_sym_requires, - STATE(8555), 1, + STATE(8736), 1, sym_trailing_return_type, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8408), 2, + STATE(8550), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8543), 5, - anon_sym_DOT_DOT_DOT, + ACTIONS(8422), 5, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [332355] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14258), 1, - anon_sym_LT, - STATE(3966), 1, - sym_template_argument_list, - ACTIONS(9225), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9227), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_asm, - anon_sym___asm__, - [332381] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, - anon_sym_COLON_COLON, - ACTIONS(14241), 1, - sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7879), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(10289), 1, - sym_splice_type_specifier, - STATE(11099), 1, - sym_qualified_identifier, - STATE(10976), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_expression, - [332421] = 7, + [333095] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8087), 1, + ACTIONS(8905), 1, anon_sym___attribute, - ACTIONS(10812), 1, + ACTIONS(11298), 1, anon_sym_requires, - ACTIONS(10476), 2, + ACTIONS(11516), 1, + anon_sym_DASH_GT, + STATE(8744), 1, + sym_trailing_return_type, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8397), 2, + STATE(8560), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8089), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(8907), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [332451] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(11399), 1, - anon_sym_LBRACK, - ACTIONS(14296), 1, - anon_sym_COLON, - ACTIONS(14306), 1, - anon_sym_SEMI, - ACTIONS(14308), 1, - anon_sym_EQ, - ACTIONS(14310), 1, - anon_sym_try, - STATE(726), 1, - sym_compound_statement, - STATE(10306), 1, - sym_field_initializer_list, - ACTIONS(6515), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(743), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [332489] = 7, + [333130] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8559), 1, + ACTIONS(7789), 1, anon_sym___attribute, - ACTIONS(10812), 1, + ACTIONS(11518), 1, + anon_sym_DASH_GT, + ACTIONS(13149), 1, anon_sym_requires, - ACTIONS(10476), 2, + STATE(8511), 1, + sym_trailing_return_type, + ACTIONS(13146), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8410), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8561), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(7791), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - anon_sym_GT2, - [332519] = 12, + [333165] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, + ACTIONS(13823), 1, anon_sym_COLON_COLON, - ACTIONS(14312), 1, + ACTIONS(14672), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7879), 1, + STATE(7996), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10268), 1, + STATE(10553), 1, sym_splice_type_specifier, - STATE(10921), 1, + STATE(10723), 1, sym_qualified_identifier, - STATE(10976), 4, + STATE(10768), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [332559] = 11, + [333205] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8657), 1, + sym_identifier, + ACTIONS(8659), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + 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, + [333227] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(11399), 1, + ACTIONS(11754), 1, anon_sym_LBRACK, - ACTIONS(14296), 1, - anon_sym_COLON, - ACTIONS(14314), 1, + ACTIONS(14674), 1, anon_sym_SEMI, - ACTIONS(14316), 1, + ACTIONS(14676), 1, + anon_sym_COLON, + ACTIONS(14678), 1, anon_sym_EQ, - ACTIONS(14318), 1, + ACTIONS(14680), 1, anon_sym_try, - STATE(885), 1, + STATE(1013), 1, sym_compound_statement, - STATE(10329), 1, + STATE(10376), 1, sym_field_initializer_list, - ACTIONS(6515), 2, + ACTIONS(6883), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(888), 4, + STATE(874), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [332597] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, - anon_sym_COLON_COLON, - ACTIONS(14320), 1, - sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7879), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(10325), 1, - sym_splice_type_specifier, - STATE(11040), 1, - sym_qualified_identifier, - STATE(10976), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_expression, - [332637] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, - anon_sym_COLON_COLON, - ACTIONS(14187), 1, - sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7879), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(10282), 1, - sym_splice_type_specifier, - STATE(11024), 1, - sym_qualified_identifier, - STATE(10976), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_expression, - [332677] = 13, + [333265] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(13557), 1, + ACTIONS(10580), 1, + anon_sym_LBRACE, + ACTIONS(11754), 1, anon_sym_LBRACK, - ACTIONS(14023), 1, + ACTIONS(14676), 1, + anon_sym_COLON, + ACTIONS(14682), 1, anon_sym_SEMI, - STATE(4505), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(9973), 1, - sym_gnu_asm_expression, - STATE(9974), 1, - aux_sym_declaration_repeat1, - ACTIONS(13561), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [332719] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10810), 1, - anon_sym_DASH_GT, - ACTIONS(12833), 1, - anon_sym_requires, - STATE(8568), 1, - sym_trailing_return_type, - ACTIONS(12744), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [332751] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7546), 1, - anon_sym___attribute, - ACTIONS(12833), 1, - anon_sym_requires, - ACTIONS(12744), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(14684), 1, + anon_sym_EQ, + ACTIONS(14686), 1, + anon_sym_try, + STATE(2869), 1, + sym_compound_statement, + STATE(10248), 1, + sym_field_initializer_list, + ACTIONS(6883), 2, anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [332781] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10435), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(14017), 1, - anon_sym_SEMI, - STATE(4505), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(9929), 1, - sym_gnu_asm_expression, - STATE(9933), 1, - aux_sym_declaration_repeat1, - ACTIONS(13561), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [332823] = 13, + STATE(2871), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [333303] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10590), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(14322), 1, + ACTIONS(14688), 1, sym_identifier, - ACTIONS(14324), 1, + ACTIONS(14690), 1, anon_sym_template, - STATE(2670), 1, + STATE(3491), 1, sym_template_type, - STATE(2672), 1, + STATE(3495), 1, sym_dependent_type_identifier, - STATE(2797), 1, + STATE(3644), 1, sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8564), 1, + STATE(8675), 1, sym__scope_resolution, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [332865] = 12, + [333345] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, + ACTIONS(11059), 1, anon_sym_COLON_COLON, - ACTIONS(14326), 1, + ACTIONS(14692), 1, sym_identifier, - STATE(3682), 1, + ACTIONS(14694), 1, + anon_sym_template, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7879), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(10139), 1, - sym_splice_type_specifier, - STATE(11071), 1, - sym_qualified_identifier, - STATE(10976), 4, - sym_decltype, + STATE(4123), 1, sym_template_type, + STATE(4127), 1, sym_dependent_type_identifier, - sym_splice_expression, - [332905] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, - anon_sym_COLON_COLON, - ACTIONS(14207), 1, - sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7879), 1, - sym__scope_resolution, - STATE(8089), 1, + STATE(4267), 1, + sym_qualified_type_identifier, + STATE(8222), 1, sym_splice_specifier, - STATE(10080), 1, - sym_splice_type_specifier, - STATE(10581), 1, - sym_qualified_identifier, - STATE(10976), 4, + STATE(8676), 1, + sym__scope_resolution, + STATE(10768), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [332945] = 8, + [333387] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10810), 1, - anon_sym_DASH_GT, - ACTIONS(12890), 1, - anon_sym_requires, - STATE(8570), 1, - sym_trailing_return_type, - ACTIONS(12866), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7627), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(10603), 1, + anon_sym_LBRACE, + ACTIONS(11754), 1, anon_sym_LBRACK, - anon_sym_GT2, - [332977] = 7, + ACTIONS(14676), 1, + anon_sym_COLON, + ACTIONS(14696), 1, + anon_sym_SEMI, + ACTIONS(14698), 1, + anon_sym_EQ, + ACTIONS(14700), 1, + anon_sym_try, + STATE(3366), 1, + sym_compound_statement, + STATE(10431), 1, + sym_field_initializer_list, + ACTIONS(6883), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(3367), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [333425] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 1, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14704), 2, anon_sym___attribute, - ACTIONS(12890), 1, - anon_sym_requires, - ACTIONS(12866), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7627), 6, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + STATE(7987), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14702), 9, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [333007] = 8, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [333451] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10810), 1, - anon_sym_DASH_GT, - ACTIONS(13172), 1, - anon_sym_requires, - STATE(8573), 1, - sym_trailing_return_type, - ACTIONS(13032), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8397), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8089), 5, - anon_sym_DOT_DOT_DOT, + ACTIONS(14660), 1, + anon_sym_LT, + STATE(4045), 1, + sym_template_argument_list, + ACTIONS(9650), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9652), 9, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [333039] = 7, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_asm, + anon_sym___asm__, + [333477] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8087), 1, + ACTIONS(9322), 1, anon_sym___attribute, - ACTIONS(13172), 1, - anon_sym_requires, - ACTIONS(13032), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8397), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8089), 6, + ACTIONS(14706), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9324), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym___attribute__, anon_sym_LBRACK, + anon_sym_or, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [333069] = 13, + anon_sym_requires, + [333501] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10719), 1, + ACTIONS(13823), 1, anon_sym_COLON_COLON, - ACTIONS(14328), 1, + ACTIONS(14708), 1, sym_identifier, - ACTIONS(14330), 1, - anon_sym_template, - STATE(3411), 1, - sym_template_type, - STATE(3439), 1, - sym_dependent_type_identifier, - STATE(3539), 1, - sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8571), 1, + STATE(7996), 1, sym__scope_resolution, - STATE(10976), 3, - sym_decltype, + STATE(8222), 1, + sym_splice_specifier, + STATE(10377), 1, sym_splice_type_specifier, + STATE(11216), 1, + sym_qualified_identifier, + STATE(10768), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_expression, - [333111] = 12, + [333541] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, + ACTIONS(11010), 1, anon_sym_COLON_COLON, - ACTIONS(14198), 1, + ACTIONS(14710), 1, sym_identifier, - STATE(3682), 1, + ACTIONS(14712), 1, + anon_sym_template, + STATE(2455), 1, + sym_template_type, + STATE(2457), 1, + sym_dependent_type_identifier, + STATE(2543), 1, + sym_qualified_type_identifier, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7879), 1, - sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10144), 1, - sym_splice_type_specifier, - STATE(10796), 1, - sym_qualified_identifier, - STATE(10976), 4, + STATE(8682), 1, + sym__scope_resolution, + STATE(10768), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [333151] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8541), 1, - anon_sym___attribute, - ACTIONS(14255), 1, - anon_sym_requires, - ACTIONS(14072), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8408), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8543), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [333181] = 8, + [333583] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10810), 1, + ACTIONS(11296), 1, anon_sym_DASH_GT, - ACTIONS(14255), 1, + ACTIONS(11298), 1, anon_sym_requires, - STATE(8575), 1, + STATE(8718), 1, sym_trailing_return_type, - ACTIONS(14072), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8408), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8543), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [333213] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8559), 1, - anon_sym___attribute, - ACTIONS(14332), 1, - anon_sym_requires, - ACTIONS(14078), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8410), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8561), 6, + ACTIONS(7791), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [333243] = 13, + [333615] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13050), 1, + ACTIONS(13823), 1, anon_sym_COLON_COLON, - ACTIONS(14335), 1, + ACTIONS(14714), 1, sym_identifier, - STATE(3646), 1, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7996), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(10507), 1, + sym_splice_type_specifier, + STATE(11383), 1, + sym_qualified_identifier, + STATE(10768), 4, + sym_decltype, sym_template_type, - STATE(3649), 1, sym_dependent_type_identifier, - STATE(3650), 1, + sym_splice_expression, + [333655] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13417), 1, + anon_sym_COLON_COLON, + ACTIONS(14716), 1, + sym_identifier, + ACTIONS(14718), 1, + anon_sym_template, + STATE(2755), 1, + sym_dependent_type_identifier, + STATE(2812), 1, + sym_template_type, + STATE(2920), 1, sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8576), 1, + STATE(8685), 1, sym__scope_resolution, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [333285] = 12, + [333697] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(14337), 1, + ACTIONS(14720), 1, sym_identifier, - STATE(3682), 1, + ACTIONS(14722), 1, + anon_sym_template, + STATE(2675), 1, + sym_template_type, + STATE(2676), 1, + sym_dependent_type_identifier, + STATE(2811), 1, + sym_qualified_type_identifier, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7879), 1, - sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10286), 1, - sym_splice_type_specifier, - STATE(11096), 1, - sym_qualified_identifier, - STATE(10976), 4, + STATE(8686), 1, + sym__scope_resolution, + STATE(10768), 3, sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [333739] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(14724), 1, + sym_identifier, + ACTIONS(14726), 1, + anon_sym_template, + STATE(2550), 1, sym_template_type, + STATE(2551), 1, sym_dependent_type_identifier, + STATE(2625), 1, + sym_qualified_type_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(8222), 1, + sym_splice_specifier, + STATE(8687), 1, + sym__scope_resolution, + STATE(10768), 3, + sym_decltype, + sym_splice_type_specifier, sym_splice_expression, - [333325] = 11, + [333781] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7789), 1, + anon_sym___attribute, + ACTIONS(11298), 1, + anon_sym_requires, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [333811] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10271), 1, + ACTIONS(10572), 1, anon_sym_LBRACE, - ACTIONS(11399), 1, + ACTIONS(11754), 1, anon_sym_LBRACK, - ACTIONS(14296), 1, + ACTIONS(14676), 1, anon_sym_COLON, - ACTIONS(14339), 1, + ACTIONS(14728), 1, anon_sym_SEMI, - ACTIONS(14341), 1, + ACTIONS(14730), 1, anon_sym_EQ, - ACTIONS(14343), 1, + ACTIONS(14732), 1, anon_sym_try, - STATE(3219), 1, + STATE(3464), 1, sym_compound_statement, - STATE(10108), 1, + STATE(10524), 1, sym_field_initializer_list, - ACTIONS(6515), 2, + ACTIONS(6883), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(3281), 4, + STATE(3465), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [333363] = 13, + [333849] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12119), 1, + anon_sym___attribute__, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13945), 1, + anon_sym_LBRACK, + ACTIONS(14736), 1, + anon_sym_EQ, + STATE(4334), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + ACTIONS(14734), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9150), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [333889] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(6101), 1, + ACTIONS(11020), 1, anon_sym_COLON_COLON, - ACTIONS(14345), 1, + ACTIONS(14738), 1, sym_identifier, - ACTIONS(14347), 1, + ACTIONS(14740), 1, anon_sym_template, - STATE(3646), 1, - sym_template_type, - STATE(3649), 1, + STATE(2755), 1, sym_dependent_type_identifier, - STATE(3650), 1, + STATE(2812), 1, + sym_template_type, + STATE(2920), 1, sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8579), 1, + STATE(8691), 1, sym__scope_resolution, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [333405] = 12, + [333931] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, + ACTIONS(13823), 1, anon_sym_COLON_COLON, - ACTIONS(14349), 1, + ACTIONS(14742), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7879), 1, + STATE(7996), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10247), 1, + STATE(10470), 1, sym_splice_type_specifier, - STATE(10720), 1, + STATE(11517), 1, sym_qualified_identifier, - STATE(10976), 4, + STATE(10768), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [333445] = 5, + [333971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(14353), 2, - anon_sym___attribute, - anon_sym_LBRACK, - STATE(7871), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14351), 9, + ACTIONS(8697), 1, + sym_identifier, + ACTIONS(8699), 13, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [333471] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8959), 1, - anon_sym___attribute, - ACTIONS(14355), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(14357), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8961), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [333497] = 6, + 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, + [333993] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14070), 1, + ACTIONS(13937), 1, + anon_sym_COMMA, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(4509), 1, + ACTIONS(14744), 1, + anon_sym_SEMI, + STATE(4564), 1, sym_parameter_list, - STATE(8235), 1, + STATE(8572), 1, sym__function_declarator_seq, - ACTIONS(9832), 10, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [333525] = 13, + STATE(10138), 1, + sym_gnu_asm_expression, + STATE(10140), 1, + aux_sym_declaration_repeat1, + ACTIONS(13949), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [334035] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4780), 1, - anon_sym_COLON_COLON, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(14359), 1, + ACTIONS(13172), 1, + anon_sym_COLON_COLON, + ACTIONS(14746), 1, sym_identifier, - ACTIONS(14361), 1, + ACTIONS(14748), 1, anon_sym_template, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4490), 1, - sym_qualified_type_identifier, - STATE(4814), 1, - sym_template_type, - STATE(4822), 1, + STATE(3743), 1, sym_dependent_type_identifier, - STATE(8089), 1, + STATE(3748), 1, + sym_template_type, + STATE(3752), 1, + sym_qualified_type_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(8222), 1, sym_splice_specifier, - STATE(8584), 1, + STATE(8695), 1, sym__scope_resolution, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [333567] = 11, + [334077] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - ACTIONS(11399), 1, + ACTIONS(11754), 1, anon_sym_LBRACK, - ACTIONS(14296), 1, + ACTIONS(14676), 1, anon_sym_COLON, - ACTIONS(14363), 1, + ACTIONS(14750), 1, anon_sym_SEMI, - ACTIONS(14365), 1, + ACTIONS(14752), 1, anon_sym_EQ, - ACTIONS(14367), 1, + ACTIONS(14754), 1, anon_sym_try, - STATE(518), 1, + STATE(440), 1, sym_compound_statement, - STATE(10455), 1, + STATE(10405), 1, sym_field_initializer_list, - ACTIONS(6515), 2, + ACTIONS(6883), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(519), 4, + STATE(441), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [333605] = 8, + [334115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10810), 1, - anon_sym_DASH_GT, - ACTIONS(10812), 1, - anon_sym_requires, - STATE(8553), 1, - sym_trailing_return_type, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7627), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(14756), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9324), 12, anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [333637] = 11, + anon_sym_PIPE_PIPE, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_or, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [334137] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - ACTIONS(11399), 1, + ACTIONS(11754), 1, anon_sym_LBRACK, - ACTIONS(14296), 1, + ACTIONS(14676), 1, anon_sym_COLON, - ACTIONS(14316), 1, + ACTIONS(14752), 1, anon_sym_EQ, - ACTIONS(14318), 1, + ACTIONS(14754), 1, anon_sym_try, - ACTIONS(14369), 1, + ACTIONS(14758), 1, anon_sym_SEMI, - STATE(789), 1, + STATE(411), 1, sym_compound_statement, - STATE(10381), 1, + STATE(10566), 1, sym_field_initializer_list, - ACTIONS(6515), 2, + ACTIONS(6883), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(790), 4, + STATE(414), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [333675] = 13, + [334175] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8750), 1, + sym_identifier, + ACTIONS(8752), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + 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, + [334197] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10711), 1, + ACTIONS(10988), 1, anon_sym_COLON_COLON, - ACTIONS(14371), 1, + ACTIONS(14760), 1, sym_identifier, - ACTIONS(14373), 1, + ACTIONS(14762), 1, anon_sym_template, - STATE(2588), 1, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(6690), 1, sym_template_type, - STATE(2593), 1, + STATE(6691), 1, sym_dependent_type_identifier, - STATE(2703), 1, + STATE(6827), 1, sym_qualified_type_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8588), 1, + STATE(8700), 1, sym__scope_resolution, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [333717] = 3, + [334239] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8446), 1, - sym_identifier, - ACTIONS(8448), 13, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13937), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - 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, - [333739] = 13, + ACTIONS(13945), 1, + anon_sym_LBRACK, + ACTIONS(14405), 1, + anon_sym_SEMI, + STATE(4564), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(10168), 1, + sym_gnu_asm_expression, + STATE(10188), 1, + aux_sym_declaration_repeat1, + ACTIONS(13949), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [334281] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13072), 1, + ACTIONS(11097), 1, anon_sym_COLON_COLON, - ACTIONS(14375), 1, + ACTIONS(14764), 1, sym_identifier, - ACTIONS(14377), 1, + ACTIONS(14766), 1, anon_sym_template, - STATE(2670), 1, + STATE(2579), 1, sym_template_type, - STATE(2672), 1, + STATE(2580), 1, sym_dependent_type_identifier, - STATE(2797), 1, + STATE(2633), 1, sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8590), 1, + STATE(8702), 1, sym__scope_resolution, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [333781] = 6, + [334323] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12119), 1, + anon_sym___attribute__, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14070), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(4509), 1, + ACTIONS(14768), 1, + anon_sym_EQ, + STATE(4334), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + ACTIONS(14734), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9150), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [334363] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14397), 1, + anon_sym_LBRACK, + STATE(4613), 1, sym_parameter_list, - STATE(8235), 1, + STATE(8243), 1, sym__function_declarator_seq, - ACTIONS(9842), 10, + ACTIONS(10204), 10, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, @@ -705607,1184 +727292,1443 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [333809] = 11, + [334391] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13166), 1, + anon_sym_COLON_COLON, + ACTIONS(14746), 1, + sym_identifier, + ACTIONS(14748), 1, + anon_sym_template, + STATE(3743), 1, + sym_dependent_type_identifier, + STATE(3748), 1, + sym_template_type, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4565), 1, + sym_qualified_type_identifier, + STATE(8222), 1, + sym_splice_specifier, + STATE(8705), 1, + sym__scope_resolution, + STATE(10768), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [334433] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13823), 1, + anon_sym_COLON_COLON, + ACTIONS(14555), 1, + sym_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7996), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(10549), 1, + sym_splice_type_specifier, + STATE(10666), 1, + sym_qualified_identifier, + STATE(10768), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [334473] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11111), 1, + anon_sym_COLON_COLON, + ACTIONS(14770), 1, + sym_identifier, + ACTIONS(14772), 1, + anon_sym_template, + STATE(3491), 1, + sym_template_type, + STATE(3495), 1, + sym_dependent_type_identifier, + STATE(3644), 1, + sym_qualified_type_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(8222), 1, + sym_splice_specifier, + STATE(8707), 1, + sym__scope_resolution, + STATE(10768), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [334515] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10572), 1, anon_sym_LBRACE, - ACTIONS(11399), 1, + ACTIONS(11754), 1, anon_sym_LBRACK, - ACTIONS(14296), 1, + ACTIONS(14676), 1, anon_sym_COLON, - ACTIONS(14379), 1, - anon_sym_SEMI, - ACTIONS(14381), 1, + ACTIONS(14730), 1, anon_sym_EQ, - ACTIONS(14383), 1, + ACTIONS(14732), 1, anon_sym_try, - STATE(870), 1, + ACTIONS(14774), 1, + anon_sym_SEMI, + STATE(3479), 1, sym_compound_statement, - STATE(10152), 1, + STATE(10212), 1, sym_field_initializer_list, - ACTIONS(6515), 2, + ACTIONS(6883), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(874), 4, + STATE(3480), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [333847] = 13, + [334553] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14397), 1, + anon_sym_LBRACK, + STATE(4613), 1, + sym_parameter_list, + STATE(8243), 1, + sym__function_declarator_seq, + ACTIONS(10192), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [334581] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10686), 1, + ACTIONS(13154), 1, anon_sym_COLON_COLON, - ACTIONS(14385), 1, + ACTIONS(14776), 1, sym_identifier, - ACTIONS(14387), 1, + ACTIONS(14778), 1, anon_sym_template, - STATE(1986), 1, + STATE(3743), 1, + sym_dependent_type_identifier, + STATE(3748), 1, sym_template_type, - STATE(1987), 1, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4565), 1, + sym_qualified_type_identifier, + STATE(8222), 1, + sym_splice_specifier, + STATE(8710), 1, + sym__scope_resolution, + STATE(10768), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [334623] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10653), 1, + anon_sym_COLON_COLON, + ACTIONS(14780), 1, + sym_identifier, + ACTIONS(14782), 1, + anon_sym_template, + STATE(2755), 1, sym_dependent_type_identifier, - STATE(1998), 1, + STATE(2812), 1, + sym_template_type, + STATE(2920), 1, sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8593), 1, + STATE(8711), 1, sym__scope_resolution, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [333889] = 12, + [334665] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11296), 1, + anon_sym_DASH_GT, + ACTIONS(13197), 1, + anon_sym_requires, + STATE(8715), 1, + sym_trailing_return_type, + ACTIONS(13146), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [334697] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7789), 1, + anon_sym___attribute, + ACTIONS(13197), 1, + anon_sym_requires, + ACTIONS(13146), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [334727] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11296), 1, + anon_sym_DASH_GT, + ACTIONS(13239), 1, + anon_sym_requires, + STATE(8725), 1, + sym_trailing_return_type, + ACTIONS(13202), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8561), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7966), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [334759] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7968), 1, + anon_sym___attribute, + ACTIONS(13239), 1, + anon_sym_requires, + ACTIONS(13202), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8561), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7966), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [334789] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, + ACTIONS(5938), 1, anon_sym_COLON_COLON, - ACTIONS(14389), 1, + ACTIONS(14776), 1, sym_identifier, - STATE(3682), 1, + ACTIONS(14778), 1, + anon_sym_template, + STATE(3743), 1, + sym_dependent_type_identifier, + STATE(3748), 1, + sym_template_type, + STATE(3752), 1, + sym_qualified_type_identifier, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7879), 1, - sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10400), 1, - sym_splice_type_specifier, - STATE(11313), 1, - sym_qualified_identifier, - STATE(10976), 4, + STATE(8716), 1, + sym__scope_resolution, + STATE(10768), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [333929] = 13, + [334831] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13549), 1, + ACTIONS(11296), 1, + anon_sym_DASH_GT, + ACTIONS(11298), 1, + anon_sym_requires, + STATE(8730), 1, + sym_trailing_return_type, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8561), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7966), 5, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(13557), 1, + anon_sym_LPAREN2, anon_sym_LBRACK, - ACTIONS(14021), 1, - anon_sym_SEMI, - STATE(4505), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(9542), 1, - sym_gnu_asm_expression, - STATE(9543), 1, - aux_sym_declaration_repeat1, - ACTIONS(13561), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [333971] = 7, + anon_sym_GT2, + [334863] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 1, + ACTIONS(7968), 1, anon_sym___attribute, - ACTIONS(10812), 1, + ACTIONS(11298), 1, anon_sym_requires, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8391), 2, + STATE(8561), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7627), 6, + ACTIONS(7966), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [334001] = 3, + [334893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14391), 2, + ACTIONS(14756), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8941), 12, - anon_sym_LPAREN2, + ACTIONS(14784), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9395), 10, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - anon_sym_or, anon_sym_DASH_GT, anon_sym_noexcept, anon_sym_throw, - [334023] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1162), 1, - anon_sym_LBRACE, - ACTIONS(11399), 1, - anon_sym_LBRACK, - ACTIONS(14296), 1, - anon_sym_COLON, - ACTIONS(14381), 1, - anon_sym_EQ, - ACTIONS(14383), 1, - anon_sym_try, - ACTIONS(14393), 1, - anon_sym_SEMI, - STATE(765), 1, - sym_compound_statement, - STATE(10095), 1, - sym_field_initializer_list, - ACTIONS(6515), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(766), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [334061] = 11, + [334917] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10215), 1, + ACTIONS(1113), 1, anon_sym_LBRACE, - ACTIONS(11399), 1, + ACTIONS(11754), 1, anon_sym_LBRACK, - ACTIONS(14296), 1, + ACTIONS(14676), 1, anon_sym_COLON, - ACTIONS(14395), 1, + ACTIONS(14786), 1, anon_sym_SEMI, - ACTIONS(14397), 1, + ACTIONS(14788), 1, anon_sym_EQ, - ACTIONS(14399), 1, + ACTIONS(14790), 1, anon_sym_try, - STATE(3193), 1, + STATE(719), 1, sym_compound_statement, - STATE(10228), 1, + STATE(10522), 1, sym_field_initializer_list, - ACTIONS(6515), 2, + ACTIONS(6883), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(3195), 4, + STATE(720), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [334099] = 12, + [334955] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, + ACTIONS(13823), 1, anon_sym_COLON_COLON, - ACTIONS(14153), 1, + ACTIONS(14591), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7879), 1, + STATE(7996), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10159), 1, + STATE(10297), 1, sym_splice_type_specifier, - STATE(10822), 1, + STATE(11625), 1, sym_qualified_identifier, - STATE(10976), 4, + STATE(10768), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [334139] = 3, + [334995] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8382), 1, - sym_identifier, - ACTIONS(8384), 13, - anon_sym_COMMA, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14397), 1, + anon_sym_LBRACK, + STATE(4613), 1, + sym_parameter_list, + STATE(8243), 1, + sym__function_declarator_seq, + ACTIONS(10172), 10, anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, - 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, - [334161] = 13, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [335023] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(13557), 1, + ACTIONS(14397), 1, anon_sym_LBRACK, - ACTIONS(14401), 1, - anon_sym_SEMI, - STATE(4505), 1, + STATE(4613), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8243), 1, sym__function_declarator_seq, - STATE(9969), 1, - sym_gnu_asm_expression, - STATE(9971), 1, - aux_sym_declaration_repeat1, - ACTIONS(13561), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [334203] = 4, + ACTIONS(10188), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [335051] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14391), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(14403), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8961), 10, + ACTIONS(11296), 1, + anon_sym_DASH_GT, + ACTIONS(13536), 1, + anon_sym_requires, + STATE(8735), 1, + sym_trailing_return_type, + ACTIONS(13396), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8550), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8422), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, + anon_sym_LBRACK, + anon_sym_GT2, + [335083] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8424), 1, + anon_sym___attribute, + ACTIONS(13536), 1, + anon_sym_requires, + ACTIONS(13396), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8550), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8422), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [335113] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11296), 1, anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [334227] = 13, + ACTIONS(11298), 1, + anon_sym_requires, + STATE(8736), 1, + sym_trailing_return_type, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8550), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8422), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [335145] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10727), 1, + ACTIONS(13823), 1, anon_sym_COLON_COLON, - ACTIONS(14405), 1, + ACTIONS(14529), 1, sym_identifier, - ACTIONS(14407), 1, - anon_sym_template, - STATE(2434), 1, - sym_template_type, - STATE(2435), 1, - sym_dependent_type_identifier, - STATE(2549), 1, - sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8604), 1, + STATE(7996), 1, sym__scope_resolution, - STATE(10976), 3, - sym_decltype, + STATE(8222), 1, + sym_splice_specifier, + STATE(10225), 1, sym_splice_type_specifier, - sym_splice_expression, - [334269] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10293), 1, - anon_sym_COLON_COLON, - ACTIONS(14409), 1, - sym_identifier, - ACTIONS(14411), 1, - anon_sym_template, - STATE(2670), 1, + STATE(11282), 1, + sym_qualified_identifier, + STATE(10768), 4, + sym_decltype, sym_template_type, - STATE(2672), 1, sym_dependent_type_identifier, - STATE(2797), 1, - sym_qualified_type_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8605), 1, - sym__scope_resolution, - STATE(10976), 3, - sym_decltype, - sym_splice_type_specifier, sym_splice_expression, - [334311] = 13, + [335185] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(12808), 1, + ACTIONS(13823), 1, anon_sym_COLON_COLON, - ACTIONS(14359), 1, + ACTIONS(14513), 1, sym_identifier, - ACTIONS(14413), 1, - anon_sym_template, - STATE(3646), 1, - sym_template_type, - STATE(3649), 1, - sym_dependent_type_identifier, - STATE(3650), 1, - sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8606), 1, + STATE(7996), 1, sym__scope_resolution, - STATE(10976), 3, - sym_decltype, + STATE(8222), 1, + sym_splice_specifier, + STATE(10317), 1, sym_splice_type_specifier, + STATE(10933), 1, + sym_qualified_identifier, + STATE(10768), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_expression, - [334353] = 11, + [335225] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10271), 1, + ACTIONS(960), 1, anon_sym_LBRACE, - ACTIONS(11399), 1, + ACTIONS(11754), 1, anon_sym_LBRACK, - ACTIONS(14296), 1, + ACTIONS(14676), 1, anon_sym_COLON, - ACTIONS(14341), 1, + ACTIONS(14792), 1, + anon_sym_SEMI, + ACTIONS(14794), 1, anon_sym_EQ, - ACTIONS(14343), 1, + ACTIONS(14796), 1, anon_sym_try, - ACTIONS(14415), 1, - anon_sym_SEMI, - STATE(3329), 1, + STATE(842), 1, sym_compound_statement, - STATE(10205), 1, + STATE(10456), 1, sym_field_initializer_list, - ACTIONS(6515), 2, + ACTIONS(6883), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(3330), 4, + STATE(850), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [334391] = 8, + [335263] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10810), 1, - anon_sym_DASH_GT, - ACTIONS(10812), 1, + ACTIONS(8424), 1, + anon_sym___attribute, + ACTIONS(11298), 1, anon_sym_requires, - STATE(8596), 1, - sym_trailing_return_type, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8550), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 5, + ACTIONS(8422), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [334423] = 12, + [335293] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, + ACTIONS(13823), 1, anon_sym_COLON_COLON, - ACTIONS(14417), 1, + ACTIONS(14798), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7879), 1, + STATE(7996), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10075), 1, + STATE(10251), 1, sym_splice_type_specifier, - STATE(10659), 1, + STATE(10814), 1, sym_qualified_identifier, - STATE(10976), 4, + STATE(10768), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [334463] = 11, + [335333] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14397), 1, + anon_sym_LBRACK, + STATE(4613), 1, + sym_parameter_list, + STATE(8243), 1, + sym__function_declarator_seq, + ACTIONS(10208), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [335361] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10215), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(11399), 1, + ACTIONS(11754), 1, anon_sym_LBRACK, - ACTIONS(14296), 1, + ACTIONS(14676), 1, anon_sym_COLON, - ACTIONS(14397), 1, + ACTIONS(14678), 1, anon_sym_EQ, - ACTIONS(14399), 1, + ACTIONS(14680), 1, anon_sym_try, - ACTIONS(14419), 1, + ACTIONS(14800), 1, anon_sym_SEMI, - STATE(3321), 1, + STATE(994), 1, sym_compound_statement, - STATE(10169), 1, + STATE(10230), 1, sym_field_initializer_list, - ACTIONS(6515), 2, + ACTIONS(6883), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(3323), 4, + STATE(996), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [334501] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11779), 1, - anon_sym___attribute__, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(14423), 1, - anon_sym_EQ, - STATE(4234), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - ACTIONS(14421), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8984), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [334541] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10621), 1, - anon_sym_COLON_COLON, - ACTIONS(14425), 1, - sym_identifier, - ACTIONS(14427), 1, - anon_sym_template, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(6605), 1, - sym_template_type, - STATE(6606), 1, - sym_dependent_type_identifier, - STATE(6804), 1, - sym_qualified_type_identifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8612), 1, - sym__scope_resolution, - STATE(10976), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [334583] = 6, + [335399] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14070), 1, + ACTIONS(960), 1, + anon_sym_LBRACE, + ACTIONS(11754), 1, anon_sym_LBRACK, - STATE(4509), 1, - sym_parameter_list, - STATE(8235), 1, - sym__function_declarator_seq, - ACTIONS(9850), 10, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(14676), 1, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(14794), 1, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + ACTIONS(14796), 1, anon_sym_try, - anon_sym_requires, - [334611] = 13, + ACTIONS(14802), 1, + anon_sym_SEMI, + STATE(834), 1, + sym_compound_statement, + STATE(10414), 1, + sym_field_initializer_list, + ACTIONS(6883), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(782), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [335437] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(12740), 1, - anon_sym_COLON_COLON, - ACTIONS(14429), 1, - sym_identifier, - ACTIONS(14431), 1, - anon_sym_template, - STATE(3646), 1, - sym_template_type, - STATE(3649), 1, - sym_dependent_type_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4490), 1, - sym_qualified_type_identifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8614), 1, - sym__scope_resolution, - STATE(10976), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [334653] = 7, + ACTIONS(8905), 1, + anon_sym___attribute, + ACTIONS(14625), 1, + anon_sym_requires, + ACTIONS(14419), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8560), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8907), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [335467] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7546), 1, + ACTIONS(8905), 1, anon_sym___attribute, - ACTIONS(10812), 1, + ACTIONS(11298), 1, anon_sym_requires, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8560), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 6, + ACTIONS(8907), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [334683] = 6, + [335497] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14070), 1, - anon_sym_LBRACK, - STATE(4509), 1, - sym_parameter_list, - STATE(8235), 1, - sym__function_declarator_seq, - ACTIONS(9858), 10, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(11296), 1, + anon_sym_DASH_GT, + ACTIONS(11298), 1, + anon_sym_requires, + STATE(8744), 1, + sym_trailing_return_type, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [334711] = 13, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8560), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8907), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [335529] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13140), 1, + ACTIONS(11105), 1, anon_sym_COLON_COLON, - ACTIONS(14433), 1, - sym_identifier, - ACTIONS(14435), 1, + ACTIONS(14782), 1, anon_sym_template, - STATE(3579), 1, - sym_template_type, - STATE(3583), 1, + ACTIONS(14804), 1, + sym_identifier, + STATE(2755), 1, sym_dependent_type_identifier, - STATE(3585), 1, + STATE(2812), 1, + sym_template_type, + STATE(2920), 1, sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8617), 1, + STATE(8738), 1, sym__scope_resolution, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [334753] = 4, + [335571] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8939), 1, - anon_sym___attribute, - ACTIONS(14357), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8941), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_or, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [334777] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8454), 1, - sym_identifier, - ACTIONS(8456), 13, + ACTIONS(13937), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - 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, - [334799] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14070), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(4509), 1, + ACTIONS(14411), 1, + anon_sym_SEMI, + STATE(4564), 1, sym_parameter_list, - STATE(8235), 1, + STATE(8572), 1, sym__function_declarator_seq, - ACTIONS(9846), 10, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [334827] = 13, + STATE(9809), 1, + sym_gnu_asm_expression, + STATE(9810), 1, + aux_sym_declaration_repeat1, + ACTIONS(13949), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [335613] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10651), 1, + ACTIONS(13823), 1, anon_sym_COLON_COLON, - ACTIONS(14411), 1, - anon_sym_template, - ACTIONS(14437), 1, + ACTIONS(14541), 1, sym_identifier, - STATE(2670), 1, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7996), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(10266), 1, + sym_splice_type_specifier, + STATE(10958), 1, + sym_qualified_identifier, + STATE(10768), 4, + sym_decltype, sym_template_type, - STATE(2672), 1, sym_dependent_type_identifier, - STATE(2797), 1, - sym_qualified_type_identifier, - STATE(3682), 1, + sym_splice_expression, + [335653] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13823), 1, + anon_sym_COLON_COLON, + ACTIONS(14611), 1, + sym_identifier, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, - sym_splice_specifier, - STATE(8621), 1, + STATE(7996), 1, sym__scope_resolution, - STATE(10976), 3, - sym_decltype, + STATE(8222), 1, + sym_splice_specifier, + STATE(10261), 1, sym_splice_type_specifier, + STATE(11179), 1, + sym_qualified_identifier, + STATE(10768), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_expression, - [334869] = 13, + [335693] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(14005), 1, + ACTIONS(14806), 1, anon_sym_SEMI, - STATE(4505), 1, + STATE(4564), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(9833), 1, + STATE(9997), 1, sym_gnu_asm_expression, - STATE(9839), 1, + STATE(9999), 1, aux_sym_declaration_repeat1, - ACTIONS(13561), 2, + ACTIONS(13949), 2, anon_sym_asm, anon_sym___asm__, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [334911] = 6, + [335735] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(11296), 1, + anon_sym_DASH_GT, + ACTIONS(14625), 1, + anon_sym_requires, + STATE(8749), 1, + sym_trailing_return_type, + ACTIONS(14419), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8560), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8907), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(14070), 1, anon_sym_LBRACK, - STATE(4509), 1, - sym_parameter_list, - STATE(8235), 1, - sym__function_declarator_seq, - ACTIONS(9854), 10, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_GT2, + [335767] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8913), 1, + anon_sym___attribute, + ACTIONS(11298), 1, + anon_sym_requires, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [334939] = 13, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8601), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8915), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [335797] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10735), 1, + ACTIONS(11048), 1, anon_sym_COLON_COLON, - ACTIONS(14439), 1, - sym_identifier, - ACTIONS(14441), 1, + ACTIONS(14694), 1, anon_sym_template, - STATE(2425), 1, + ACTIONS(14808), 1, + sym_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4123), 1, sym_template_type, - STATE(2426), 1, + STATE(4127), 1, sym_dependent_type_identifier, - STATE(2548), 1, + STATE(4267), 1, sym_qualified_type_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8624), 1, + STATE(8745), 1, sym__scope_resolution, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [334981] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(11399), 1, - anon_sym_LBRACK, - ACTIONS(14296), 1, - anon_sym_COLON, - ACTIONS(14308), 1, - anon_sym_EQ, - ACTIONS(14310), 1, - anon_sym_try, - ACTIONS(14443), 1, - anon_sym_SEMI, - STATE(753), 1, - sym_compound_statement, - STATE(10240), 1, - sym_field_initializer_list, - ACTIONS(6515), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(754), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [335019] = 13, + [335839] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(12768), 1, + ACTIONS(13473), 1, anon_sym_COLON_COLON, - ACTIONS(14359), 1, + ACTIONS(14810), 1, sym_identifier, - ACTIONS(14413), 1, + ACTIONS(14812), 1, anon_sym_template, - STATE(3646), 1, - sym_template_type, - STATE(3649), 1, + STATE(3594), 1, sym_dependent_type_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(4490), 1, + STATE(3610), 1, + sym_template_type, + STATE(3612), 1, sym_qualified_type_identifier, - STATE(8089), 1, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(8222), 1, sym_splice_specifier, - STATE(8626), 1, + STATE(8746), 1, sym__scope_resolution, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [335061] = 11, + [335881] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, - anon_sym_LBRACE, - ACTIONS(11399), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13823), 1, + anon_sym_COLON_COLON, + ACTIONS(14814), 1, + sym_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7996), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(10499), 1, + sym_splice_type_specifier, + STATE(10689), 1, + sym_qualified_identifier, + STATE(10768), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [335921] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13823), 1, + anon_sym_COLON_COLON, + ACTIONS(14621), 1, + sym_identifier, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(7996), 1, + sym__scope_resolution, + STATE(8222), 1, + sym_splice_specifier, + STATE(10346), 1, + sym_splice_type_specifier, + STATE(10997), 1, + sym_qualified_identifier, + STATE(10768), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [335961] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8913), 1, + anon_sym___attribute, + ACTIONS(14816), 1, + anon_sym_requires, + ACTIONS(14425), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8601), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8915), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [335991] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14397), 1, anon_sym_LBRACK, - ACTIONS(14296), 1, + STATE(4613), 1, + sym_parameter_list, + STATE(8243), 1, + sym__function_declarator_seq, + ACTIONS(10200), 10, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(14365), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(14367), 1, + anon_sym_final, + anon_sym_override, anon_sym_try, - ACTIONS(14445), 1, - anon_sym_SEMI, - STATE(416), 1, - sym_compound_statement, - STATE(10227), 1, - sym_field_initializer_list, - ACTIONS(6515), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(417), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [335099] = 12, + anon_sym_requires, + [336019] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4800), 1, + ACTIONS(5160), 1, anon_sym_template, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, + ACTIONS(13823), 1, anon_sym_COLON_COLON, - ACTIONS(14163), 1, + ACTIONS(14819), 1, sym_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(7879), 1, + STATE(7996), 1, sym__scope_resolution, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(10146), 1, + STATE(10326), 1, sym_splice_type_specifier, - STATE(10759), 1, + STATE(11273), 1, sym_qualified_identifier, - STATE(10976), 4, + STATE(10768), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [335139] = 11, + [336059] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10232), 1, + ACTIONS(1113), 1, anon_sym_LBRACE, - ACTIONS(11399), 1, + ACTIONS(11754), 1, anon_sym_LBRACK, - ACTIONS(14296), 1, + ACTIONS(14676), 1, anon_sym_COLON, - ACTIONS(14298), 1, + ACTIONS(14788), 1, anon_sym_EQ, - ACTIONS(14300), 1, + ACTIONS(14790), 1, anon_sym_try, - ACTIONS(14447), 1, + ACTIONS(14821), 1, anon_sym_SEMI, - STATE(2734), 1, + STATE(709), 1, sym_compound_statement, - STATE(10260), 1, + STATE(10420), 1, sym_field_initializer_list, - ACTIONS(6515), 2, + ACTIONS(6883), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2735), 4, + STATE(710), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [335177] = 6, + [336097] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14070), 1, + ACTIONS(13937), 1, + anon_sym_COMMA, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(4509), 1, + ACTIONS(14451), 1, + anon_sym_SEMI, + STATE(4564), 1, sym_parameter_list, - STATE(8235), 1, + STATE(8572), 1, sym__function_declarator_seq, - ACTIONS(9838), 10, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [335205] = 13, + STATE(9933), 1, + sym_gnu_asm_expression, + STATE(9934), 1, + aux_sym_declaration_repeat1, + ACTIONS(13949), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [336139] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10743), 1, + ACTIONS(14664), 1, anon_sym_COLON_COLON, - ACTIONS(14449), 1, + ACTIONS(14823), 1, sym_identifier, - ACTIONS(14451), 1, + ACTIONS(14825), 1, anon_sym_template, - STATE(3411), 1, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(4215), 1, sym_template_type, - STATE(3439), 1, + STATE(4217), 1, sym_dependent_type_identifier, - STATE(3539), 1, + STATE(4218), 1, sym_qualified_type_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8631), 1, + STATE(8754), 1, sym__scope_resolution, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [335247] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10810), 1, - anon_sym_DASH_GT, - ACTIONS(10812), 1, - anon_sym_requires, - STATE(8635), 1, - sym_trailing_return_type, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8397), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8089), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [335279] = 12, + [336181] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11779), 1, - anon_sym___attribute__, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13937), 1, + anon_sym_COMMA, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(14453), 1, - anon_sym_EQ, - STATE(4234), 1, + ACTIONS(14457), 1, + anon_sym_SEMI, + STATE(4564), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - ACTIONS(14421), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(8286), 2, + STATE(9843), 1, + sym_gnu_asm_expression, + STATE(9844), 1, + aux_sym_declaration_repeat1, + ACTIONS(13949), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8984), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [335319] = 13, + [336223] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10697), 1, + ACTIONS(6469), 1, anon_sym_COLON_COLON, - ACTIONS(14304), 1, - anon_sym_template, - ACTIONS(14455), 1, + ACTIONS(14827), 1, sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(3981), 1, - sym_template_type, - STATE(3982), 1, + ACTIONS(14829), 1, + anon_sym_template, + STATE(3743), 1, sym_dependent_type_identifier, - STATE(4151), 1, + STATE(3748), 1, + sym_template_type, + STATE(3752), 1, sym_qualified_type_identifier, - STATE(8089), 1, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(8222), 1, sym_splice_specifier, - STATE(8634), 1, + STATE(8756), 1, sym__scope_resolution, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [335361] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8541), 1, - anon_sym___attribute, - ACTIONS(10812), 1, - anon_sym_requires, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8408), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8543), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [335391] = 13, + [336265] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(14268), 1, + ACTIONS(5140), 1, anon_sym_COLON_COLON, - ACTIONS(14457), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14746), 1, sym_identifier, - ACTIONS(14459), 1, + ACTIONS(14831), 1, anon_sym_template, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(4082), 1, + STATE(4565), 1, + sym_qualified_type_identifier, + STATE(4766), 1, sym_template_type, - STATE(4106), 1, + STATE(4773), 1, sym_dependent_type_identifier, - STATE(4137), 1, - sym_qualified_type_identifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8636), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [335433] = 3, + [336307] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14397), 1, + anon_sym_LBRACK, + STATE(4613), 1, + sym_parameter_list, + STATE(8243), 1, + sym__function_declarator_seq, + ACTIONS(10184), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [336335] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10580), 1, + anon_sym_LBRACE, + ACTIONS(11754), 1, + anon_sym_LBRACK, + ACTIONS(14676), 1, + anon_sym_COLON, + ACTIONS(14684), 1, + anon_sym_EQ, + ACTIONS(14686), 1, + anon_sym_try, + ACTIONS(14833), 1, + anon_sym_SEMI, + STATE(2821), 1, + sym_compound_statement, + STATE(10319), 1, + sym_field_initializer_list, + ACTIONS(6883), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2835), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [336373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8400), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8402), 13, + ACTIONS(8667), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -706798,469 +728742,413 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [335455] = 13, + [336395] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10603), 1, + anon_sym_LBRACE, + ACTIONS(11754), 1, + anon_sym_LBRACK, + ACTIONS(14676), 1, + anon_sym_COLON, + ACTIONS(14698), 1, + anon_sym_EQ, + ACTIONS(14700), 1, + anon_sym_try, + ACTIONS(14835), 1, + anon_sym_SEMI, + STATE(3343), 1, + sym_compound_statement, + STATE(10290), 1, + sym_field_initializer_list, + ACTIONS(6883), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(3344), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [336433] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5160), 1, + anon_sym_template, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(5574), 1, + ACTIONS(13425), 1, anon_sym_COLON_COLON, - ACTIONS(14429), 1, + ACTIONS(14837), 1, sym_identifier, - ACTIONS(14431), 1, - anon_sym_template, - STATE(3646), 1, - sym_template_type, - STATE(3649), 1, + STATE(3743), 1, sym_dependent_type_identifier, - STATE(3650), 1, + STATE(3748), 1, + sym_template_type, + STATE(3752), 1, sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8638), 1, + STATE(8762), 1, sym__scope_resolution, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [335497] = 13, + [336475] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(10678), 1, + ACTIONS(11038), 1, anon_sym_COLON_COLON, - ACTIONS(14461), 1, + ACTIONS(14839), 1, sym_identifier, - ACTIONS(14463), 1, + ACTIONS(14841), 1, anon_sym_template, - STATE(2390), 1, - sym_template_type, - STATE(2391), 1, + STATE(2083), 1, sym_dependent_type_identifier, - STATE(2449), 1, + STATE(2094), 1, + sym_template_type, + STATE(2114), 1, sym_qualified_type_identifier, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(8089), 1, + STATE(8222), 1, sym_splice_specifier, - STATE(8639), 1, + STATE(8763), 1, sym__scope_resolution, - STATE(10976), 3, + STATE(10768), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [335539] = 12, + [336517] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - anon_sym_decltype, - ACTIONS(4800), 1, - anon_sym_template, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13463), 1, - anon_sym_COLON_COLON, - ACTIONS(14137), 1, - sym_identifier, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(7879), 1, - sym__scope_resolution, - STATE(8089), 1, - sym_splice_specifier, - STATE(10125), 1, - sym_splice_type_specifier, - STATE(10660), 1, - sym_qualified_identifier, - STATE(10976), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_expression, - [335579] = 9, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14397), 1, + anon_sym_LBRACK, + STATE(4613), 1, + sym_parameter_list, + STATE(8243), 1, + sym__function_declarator_seq, + ACTIONS(10196), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [336545] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(14465), 1, - sym_identifier, - ACTIONS(14467), 1, - aux_sym_preproc_if_token1, - ACTIONS(14471), 1, - anon_sym_RBRACE, - ACTIONS(14469), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(10351), 2, - sym_preproc_call, - sym_enumerator, - STATE(11092), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8756), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [335612] = 9, + ACTIONS(9393), 1, + anon_sym___attribute, + ACTIONS(14706), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(14843), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9395), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [336571] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14465), 1, + ACTIONS(14845), 1, sym_identifier, - ACTIONS(14467), 1, + ACTIONS(14847), 1, aux_sym_preproc_if_token1, - ACTIONS(14473), 1, + ACTIONS(14851), 1, anon_sym_RBRACE, - ACTIONS(14469), 2, + ACTIONS(14849), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10066), 2, + STATE(10341), 2, sym_preproc_call, sym_enumerator, - STATE(10564), 2, + STATE(11154), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8756), 3, + STATE(8930), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [335645] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - STATE(4505), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(10476), 1, - sym_gnu_asm_expression, - ACTIONS(13561), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(14475), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [335682] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - STATE(4494), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14141), 6, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [335713] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(894), 1, - anon_sym_LBRACE, - ACTIONS(11399), 1, - anon_sym_LBRACK, - ACTIONS(14296), 1, - anon_sym_COLON, - ACTIONS(14316), 1, - anon_sym_EQ, - ACTIONS(14318), 1, - anon_sym_try, - STATE(789), 1, - sym_compound_statement, - STATE(10381), 1, - sym_field_initializer_list, - ACTIONS(6515), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(790), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [335748] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(14159), 1, - anon_sym___attribute, - STATE(4234), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14157), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_GT2, - [335781] = 10, + [336604] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, + ACTIONS(960), 1, anon_sym_LBRACE, - ACTIONS(11399), 1, + ACTIONS(11754), 1, anon_sym_LBRACK, - ACTIONS(14296), 1, + ACTIONS(14676), 1, anon_sym_COLON, - ACTIONS(14365), 1, + ACTIONS(14794), 1, anon_sym_EQ, - ACTIONS(14367), 1, + ACTIONS(14796), 1, anon_sym_try, - STATE(518), 1, + STATE(834), 1, sym_compound_statement, - STATE(10455), 1, + STATE(10414), 1, sym_field_initializer_list, - ACTIONS(6515), 2, + ACTIONS(6883), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(519), 4, + STATE(782), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [335816] = 8, + [336639] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(5655), 1, anon_sym_COLON_COLON, - ACTIONS(7017), 1, + ACTIONS(7357), 1, anon_sym___attribute, - ACTIONS(9672), 1, + ACTIONS(10005), 1, anon_sym_LT, - STATE(3601), 1, + STATE(3735), 1, sym_template_argument_list, - STATE(8849), 1, + STATE(8973), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7019), 4, + ACTIONS(7359), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(14477), 4, + ACTIONS(14853), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [335847] = 9, + [336670] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14465), 1, + ACTIONS(14845), 1, sym_identifier, - ACTIONS(14467), 1, + ACTIONS(14847), 1, aux_sym_preproc_if_token1, - ACTIONS(14479), 1, + ACTIONS(14855), 1, anon_sym_RBRACE, - ACTIONS(14469), 2, + ACTIONS(14849), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10333), 2, + STATE(10400), 2, sym_preproc_call, sym_enumerator, - STATE(11399), 2, + STATE(11131), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8662), 3, + STATE(8930), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [335880] = 10, + [336703] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 1, - anon_sym_LBRACE, - ACTIONS(11399), 1, + ACTIONS(14859), 1, + anon_sym_LT, + STATE(8837), 1, + sym_template_argument_list, + ACTIONS(14861), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(14296), 1, + ACTIONS(14857), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, - ACTIONS(14381), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(14383), 1, anon_sym_try, - STATE(765), 1, - sym_compound_statement, - STATE(10095), 1, - sym_field_initializer_list, - ACTIONS(6515), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(766), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [335915] = 7, + [336728] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9840), 1, - anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(6463), 1, + anon_sym_STAR, + ACTIONS(6465), 1, + anon_sym_AMP_AMP, + ACTIONS(6467), 1, + anon_sym_AMP, + ACTIONS(11793), 1, anon_sym_LBRACK, - STATE(4823), 1, + STATE(4706), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8598), 1, sym__function_declarator_seq, - ACTIONS(9838), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [335944] = 9, + STATE(9409), 1, + sym__abstract_declarator, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [336763] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(11754), 1, anon_sym_LBRACK, - ACTIONS(14143), 1, - anon_sym___attribute, - STATE(4234), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14141), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + ACTIONS(14676), 1, + anon_sym_COLON, + ACTIONS(14678), 1, anon_sym_EQ, - anon_sym_GT2, - [335977] = 9, + ACTIONS(14680), 1, + anon_sym_try, + STATE(994), 1, + sym_compound_statement, + STATE(10230), 1, + sym_field_initializer_list, + ACTIONS(6883), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(996), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [336798] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14465), 1, + ACTIONS(14845), 1, sym_identifier, - ACTIONS(14467), 1, + ACTIONS(14847), 1, aux_sym_preproc_if_token1, - ACTIONS(14483), 1, + ACTIONS(14863), 1, anon_sym_RBRACE, - ACTIONS(14469), 2, + ACTIONS(14849), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10430), 2, + STATE(10483), 2, sym_preproc_call, sym_enumerator, - STATE(11390), 2, + STATE(11307), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8756), 3, + STATE(8833), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [336010] = 10, + [336831] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(6095), 1, + ACTIONS(6463), 1, anon_sym_STAR, - ACTIONS(6097), 1, + ACTIONS(6465), 1, anon_sym_AMP_AMP, - ACTIONS(6099), 1, + ACTIONS(6467), 1, anon_sym_AMP, - ACTIONS(11429), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - STATE(4601), 1, + STATE(4706), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(9401), 1, + sym__abstract_declarator, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [336866] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(6463), 1, + anon_sym_STAR, + ACTIONS(6465), 1, + anon_sym_AMP_AMP, + ACTIONS(6467), 1, + anon_sym_AMP, + ACTIONS(11793), 1, + anon_sym_LBRACK, + STATE(4706), 1, sym_parameter_list, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(9196), 1, + STATE(9389), 1, sym__abstract_declarator, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [336045] = 10, + [336901] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(6095), 1, + ACTIONS(6463), 1, anon_sym_STAR, - ACTIONS(6097), 1, + ACTIONS(6465), 1, anon_sym_AMP_AMP, - ACTIONS(6099), 1, + ACTIONS(6467), 1, anon_sym_AMP, - ACTIONS(11429), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - STATE(4601), 1, + STATE(4706), 1, sym_parameter_list, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(9159), 1, + STATE(9357), 1, sym__abstract_declarator, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [336080] = 7, + [336936] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9844), 1, + ACTIONS(10198), 1, anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4823), 1, + STATE(4796), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9842), 8, + ACTIONS(10196), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -707269,250 +729157,333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [336109] = 9, + [336965] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(14845), 1, + sym_identifier, + ACTIONS(14847), 1, + aux_sym_preproc_if_token1, + ACTIONS(14867), 1, + anon_sym_RBRACE, + ACTIONS(14849), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(10294), 2, + sym_preproc_call, + sym_enumerator, + STATE(11584), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(8829), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [336998] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14465), 1, + ACTIONS(14845), 1, sym_identifier, - ACTIONS(14467), 1, + ACTIONS(14847), 1, aux_sym_preproc_if_token1, - ACTIONS(14485), 1, + ACTIONS(14869), 1, anon_sym_RBRACE, - ACTIONS(14469), 2, + ACTIONS(14849), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10157), 2, + STATE(10305), 2, sym_preproc_call, sym_enumerator, - STATE(10722), 2, + STATE(10728), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8653), 3, + STATE(8819), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [336142] = 5, + [337031] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14489), 1, - anon_sym_LT, - STATE(8713), 1, - sym_template_argument_list, - ACTIONS(14491), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(14487), 9, - anon_sym_COMMA, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(14845), 1, + sym_identifier, + ACTIONS(14847), 1, + aux_sym_preproc_if_token1, + ACTIONS(14871), 1, + anon_sym_RBRACE, + ACTIONS(14849), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(10621), 2, + sym_preproc_call, + sym_enumerator, + STATE(11696), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(8817), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [337064] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6461), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [336167] = 9, + ACTIONS(6463), 1, + anon_sym_STAR, + ACTIONS(6465), 1, + anon_sym_AMP_AMP, + ACTIONS(6467), 1, + anon_sym_AMP, + ACTIONS(11793), 1, + anon_sym_LBRACK, + STATE(4706), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(9277), 1, + sym__abstract_declarator, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [337099] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14465), 1, + ACTIONS(14845), 1, sym_identifier, - ACTIONS(14467), 1, + ACTIONS(14847), 1, aux_sym_preproc_if_token1, - ACTIONS(14493), 1, + ACTIONS(14873), 1, anon_sym_RBRACE, - ACTIONS(14469), 2, + ACTIONS(14849), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10371), 2, + STATE(10279), 2, sym_preproc_call, sym_enumerator, - STATE(11308), 2, + STATE(11004), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8681), 3, + STATE(8766), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [336200] = 10, + [337132] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(6461), 1, + anon_sym_LPAREN2, + ACTIONS(6463), 1, + anon_sym_STAR, + ACTIONS(6465), 1, + anon_sym_AMP_AMP, + ACTIONS(6467), 1, + anon_sym_AMP, + ACTIONS(11793), 1, + anon_sym_LBRACK, + STATE(4706), 1, + sym_parameter_list, + STATE(8598), 1, + sym__function_declarator_seq, + STATE(9410), 1, + sym__abstract_declarator, + STATE(8596), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [337167] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(960), 1, anon_sym_LBRACE, - ACTIONS(11399), 1, + ACTIONS(11754), 1, anon_sym_LBRACK, - ACTIONS(14296), 1, + ACTIONS(14676), 1, anon_sym_COLON, - ACTIONS(14308), 1, + ACTIONS(14794), 1, anon_sym_EQ, - ACTIONS(14310), 1, + ACTIONS(14796), 1, anon_sym_try, - STATE(753), 1, + STATE(842), 1, sym_compound_statement, - STATE(10240), 1, + STATE(10456), 1, sym_field_initializer_list, - ACTIONS(6515), 2, + ACTIONS(6883), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(754), 4, + STATE(850), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [336235] = 5, + [337202] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14489), 1, - anon_sym_LT, - STATE(8722), 1, - sym_template_argument_list, - ACTIONS(14497), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(14495), 9, - anon_sym_COMMA, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, anon_sym_LPAREN2, + ACTIONS(13945), 1, + anon_sym_LBRACK, + STATE(4586), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14505), 6, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [336260] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(14465), 1, - sym_identifier, - ACTIONS(14467), 1, - aux_sym_preproc_if_token1, - ACTIONS(14499), 1, - anon_sym_RBRACE, - ACTIONS(14469), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(10171), 2, - sym_preproc_call, - sym_enumerator, - STATE(10761), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8756), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [336293] = 9, + [337233] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14465), 1, + ACTIONS(14845), 1, sym_identifier, - ACTIONS(14467), 1, + ACTIONS(14847), 1, aux_sym_preproc_if_token1, - ACTIONS(14501), 1, + ACTIONS(14875), 1, anon_sym_RBRACE, - ACTIONS(14469), 2, + ACTIONS(14849), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10208), 2, + STATE(10274), 2, sym_preproc_call, sym_enumerator, - STATE(11008), 2, + STATE(10695), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8756), 3, + STATE(8930), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [336326] = 3, + [337266] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11367), 6, + ACTIONS(10202), 1, + anon_sym___attribute, + ACTIONS(13795), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(11365), 7, - anon_sym_AMP, - anon_sym___based, + ACTIONS(14865), 1, anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [336347] = 11, + STATE(4796), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10200), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [337295] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11779), 1, - anon_sym___attribute__, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(4234), 1, + ACTIONS(14523), 1, + anon_sym___attribute, + STATE(4334), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - ACTIONS(14421), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8984), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [336384] = 10, + ACTIONS(14521), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_GT2, + [337328] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(6095), 1, - anon_sym_STAR, - ACTIONS(6097), 1, - anon_sym_AMP_AMP, - ACTIONS(6099), 1, - anon_sym_AMP, - ACTIONS(11429), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(4601), 1, + ACTIONS(14561), 1, + anon_sym___attribute, + STATE(4334), 1, sym_parameter_list, - STATE(8393), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(9176), 1, - sym__abstract_declarator, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [336419] = 7, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14559), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_GT2, + [337361] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(11754), 1, + anon_sym_LBRACK, + ACTIONS(14676), 1, + anon_sym_COLON, + ACTIONS(14678), 1, + anon_sym_EQ, + ACTIONS(14680), 1, + anon_sym_try, + STATE(1013), 1, + sym_compound_statement, + STATE(10376), 1, + sym_field_initializer_list, + ACTIONS(6883), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(874), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [337396] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9834), 1, + ACTIONS(10206), 1, anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4823), 1, + STATE(4796), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9832), 8, + ACTIONS(10204), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -707521,142 +729492,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [336448] = 10, + [337425] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9959), 1, - anon_sym_LT, - ACTIONS(14503), 1, - sym_auto, - ACTIONS(14505), 1, - anon_sym_decltype, - STATE(3601), 1, - sym_template_argument_list, - STATE(4767), 1, - sym_decltype_auto, - STATE(8849), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5258), 2, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13945), 1, + anon_sym_LBRACK, + STATE(4564), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(10475), 1, + sym_gnu_asm_expression, + ACTIONS(13949), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(14877), 2, anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(14477), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [336483] = 9, + anon_sym_SEMI, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [337462] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14465), 1, + ACTIONS(14845), 1, sym_identifier, - ACTIONS(14467), 1, + ACTIONS(14847), 1, aux_sym_preproc_if_token1, - ACTIONS(14507), 1, + ACTIONS(14879), 1, anon_sym_RBRACE, - ACTIONS(14469), 2, + ACTIONS(14849), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10369), 2, + STATE(10343), 2, sym_preproc_call, sym_enumerator, - STATE(10554), 2, + STATE(10990), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8671), 3, + STATE(8796), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [336516] = 9, + [337495] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13945), 1, + anon_sym_LBRACK, + STATE(4586), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14559), 6, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [337526] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14465), 1, + ACTIONS(14845), 1, sym_identifier, - ACTIONS(14467), 1, + ACTIONS(14847), 1, aux_sym_preproc_if_token1, - ACTIONS(14509), 1, + ACTIONS(14881), 1, anon_sym_RBRACE, - ACTIONS(14469), 2, + ACTIONS(14849), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10148), 2, + STATE(10591), 2, sym_preproc_call, sym_enumerator, - STATE(10704), 2, + STATE(11621), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8680), 3, + STATE(8799), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [336549] = 9, + [337559] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14465), 1, + ACTIONS(14845), 1, sym_identifier, - ACTIONS(14467), 1, + ACTIONS(14847), 1, aux_sym_preproc_if_token1, - ACTIONS(14511), 1, + ACTIONS(14883), 1, anon_sym_RBRACE, - ACTIONS(14469), 2, + ACTIONS(14849), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10314), 2, + STATE(10451), 2, sym_preproc_call, sym_enumerator, - STATE(11028), 2, + STATE(11239), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8756), 3, + STATE(8930), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [336582] = 10, + [337592] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(6095), 1, + ACTIONS(11793), 1, + anon_sym_LBRACK, + ACTIONS(12067), 1, anon_sym_STAR, - ACTIONS(6097), 1, + ACTIONS(12069), 1, anon_sym_AMP_AMP, - ACTIONS(6099), 1, + ACTIONS(12071), 1, anon_sym_AMP, - ACTIONS(11429), 1, - anon_sym_LBRACK, - STATE(4601), 1, + STATE(4883), 1, sym_parameter_list, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(9270), 1, + STATE(9019), 1, sym__abstract_declarator, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [336617] = 7, + [337627] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10320), 1, + anon_sym_LT, + ACTIONS(14885), 1, + sym_auto, + ACTIONS(14887), 1, + anon_sym_decltype, + STATE(3735), 1, + sym_template_argument_list, + STATE(4991), 1, + sym_decltype_auto, + STATE(8973), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5643), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(14853), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [337662] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(14845), 1, + sym_identifier, + ACTIONS(14847), 1, + aux_sym_preproc_if_token1, + ACTIONS(14889), 1, + anon_sym_RBRACE, + ACTIONS(14849), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(10234), 2, + sym_preproc_call, + sym_enumerator, + STATE(10849), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(8930), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [337695] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9852), 1, + ACTIONS(10186), 1, anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4823), 1, + STATE(4796), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9850), 8, + ACTIONS(10184), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -707665,115 +729709,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [336646] = 10, + [337724] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(6095), 1, + ACTIONS(6463), 1, anon_sym_STAR, - ACTIONS(6097), 1, + ACTIONS(6465), 1, anon_sym_AMP_AMP, - ACTIONS(6099), 1, + ACTIONS(6467), 1, anon_sym_AMP, - ACTIONS(11429), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - STATE(4601), 1, + STATE(4706), 1, sym_parameter_list, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(9193), 1, + STATE(9384), 1, sym__abstract_declarator, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [336681] = 7, + [337759] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9856), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12119), 1, + anon_sym___attribute__, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(4823), 1, + STATE(4334), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8572), 1, sym__function_declarator_seq, - ACTIONS(9854), 8, + ACTIONS(14734), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [336710] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(14465), 1, - sym_identifier, - ACTIONS(14467), 1, - aux_sym_preproc_if_token1, - ACTIONS(14513), 1, - anon_sym_RBRACE, - ACTIONS(14469), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(10231), 2, - sym_preproc_call, - sym_enumerator, - STATE(11022), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8756), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [336743] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(14465), 1, - sym_identifier, - ACTIONS(14467), 1, - aux_sym_preproc_if_token1, - ACTIONS(14515), 1, - anon_sym_RBRACE, - ACTIONS(14469), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(10424), 2, - sym_preproc_call, - sym_enumerator, - STATE(11371), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8683), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [336776] = 7, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9150), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [337796] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9860), 1, + ACTIONS(10210), 1, anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4823), 1, + STATE(4796), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9858), 8, + ACTIONS(10208), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -707782,754 +729782,738 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [336805] = 7, + [337825] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9864), 1, - anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(4823), 1, + STATE(4586), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8572), 1, sym__function_declarator_seq, - ACTIONS(9862), 8, - anon_sym_COMMA, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14547), 6, anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [336834] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(14465), 1, - sym_identifier, - ACTIONS(14467), 1, - aux_sym_preproc_if_token1, - ACTIONS(14517), 1, - anon_sym_RBRACE, - ACTIONS(14469), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(10281), 2, - sym_preproc_call, - sym_enumerator, - STATE(10960), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8756), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [336867] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(14465), 1, - sym_identifier, - ACTIONS(14467), 1, - aux_sym_preproc_if_token1, - ACTIONS(14519), 1, - anon_sym_RBRACE, - ACTIONS(14469), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(10429), 2, - sym_preproc_call, - sym_enumerator, - STATE(10924), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8756), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [336900] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(11399), 1, - anon_sym_LBRACK, - ACTIONS(14296), 1, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(14308), 1, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(14310), 1, anon_sym_try, - STATE(726), 1, - sym_compound_statement, - STATE(10306), 1, - sym_field_initializer_list, - ACTIONS(6515), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(743), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [336935] = 9, + [337856] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14465), 1, + ACTIONS(14845), 1, sym_identifier, - ACTIONS(14467), 1, + ACTIONS(14847), 1, aux_sym_preproc_if_token1, - ACTIONS(14521), 1, + ACTIONS(14891), 1, anon_sym_RBRACE, - ACTIONS(14469), 2, + ACTIONS(14849), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10441), 2, + STATE(10252), 2, sym_preproc_call, sym_enumerator, - STATE(11417), 2, + STATE(11598), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8756), 3, + STATE(8812), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [336968] = 8, + [337889] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(14660), 1, + anon_sym_LT, + STATE(8449), 1, + sym_template_argument_list, + ACTIONS(6574), 2, anon_sym_LBRACK, - STATE(4494), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14123), 6, - anon_sym_RPAREN, + anon_sym___asm, + ACTIONS(6567), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - [336999] = 6, + [337916] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(14258), 1, + ACTIONS(14859), 1, anon_sym_LT, - STATE(8362), 1, + STATE(8854), 1, sym_template_argument_list, - ACTIONS(11399), 2, + ACTIONS(14895), 2, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6515), 8, + ACTIONS(14893), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, + anon_sym_EQ, anon_sym_try, - [337026] = 9, + [337941] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(14111), 1, + ACTIONS(14507), 1, anon_sym___attribute, - STATE(4234), 1, + STATE(4334), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(14109), 5, + ACTIONS(14505), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_EQ, anon_sym_GT2, - [337059] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(14465), 1, - sym_identifier, - ACTIONS(14467), 1, - aux_sym_preproc_if_token1, - ACTIONS(14523), 1, - anon_sym_RBRACE, - ACTIONS(14469), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(10300), 2, - sym_preproc_call, - sym_enumerator, - STATE(11003), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8641), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [337092] = 10, + [337974] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(6095), 1, + ACTIONS(6463), 1, anon_sym_STAR, - ACTIONS(6097), 1, + ACTIONS(6465), 1, anon_sym_AMP_AMP, - ACTIONS(6099), 1, + ACTIONS(6467), 1, anon_sym_AMP, - ACTIONS(11429), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - STATE(4601), 1, + STATE(4706), 1, sym_parameter_list, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(9179), 1, + STATE(9340), 1, sym__abstract_declarator, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [337127] = 9, + [338009] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(1113), 1, + anon_sym_LBRACE, + ACTIONS(11754), 1, anon_sym_LBRACK, - ACTIONS(14125), 1, - anon_sym___attribute, - STATE(4234), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14123), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + ACTIONS(14676), 1, + anon_sym_COLON, + ACTIONS(14788), 1, anon_sym_EQ, - anon_sym_GT2, - [337160] = 10, + ACTIONS(14790), 1, + anon_sym_try, + STATE(709), 1, + sym_compound_statement, + STATE(10420), 1, + sym_field_initializer_list, + ACTIONS(6883), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(710), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [338044] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(6095), 1, + ACTIONS(6463), 1, anon_sym_STAR, - ACTIONS(6097), 1, + ACTIONS(6465), 1, anon_sym_AMP_AMP, - ACTIONS(6099), 1, + ACTIONS(6467), 1, anon_sym_AMP, - ACTIONS(11429), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - STATE(4601), 1, + STATE(4706), 1, sym_parameter_list, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(9281), 1, + STATE(9403), 1, sym__abstract_declarator, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [337195] = 7, + [338079] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9848), 1, - anon_sym___attribute, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(4823), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9846), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [337224] = 9, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(14845), 1, + sym_identifier, + ACTIONS(14847), 1, + aux_sym_preproc_if_token1, + ACTIONS(14897), 1, + anon_sym_RBRACE, + ACTIONS(14849), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(10336), 2, + sym_preproc_call, + sym_enumerator, + STATE(10836), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(8930), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [338112] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14465), 1, + ACTIONS(14845), 1, sym_identifier, - ACTIONS(14467), 1, + ACTIONS(14847), 1, aux_sym_preproc_if_token1, - ACTIONS(14525), 1, + ACTIONS(14899), 1, anon_sym_RBRACE, - ACTIONS(14469), 2, + ACTIONS(14849), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10151), 2, + STATE(10563), 2, sym_preproc_call, sym_enumerator, - STATE(10577), 2, + STATE(10688), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8642), 3, + STATE(8815), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [337257] = 9, + [338145] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10190), 1, + anon_sym___attribute, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(4796), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10188), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [338174] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14465), 1, + ACTIONS(14845), 1, sym_identifier, - ACTIONS(14467), 1, + ACTIONS(14847), 1, aux_sym_preproc_if_token1, - ACTIONS(14527), 1, + ACTIONS(14901), 1, anon_sym_RBRACE, - ACTIONS(14469), 2, + ACTIONS(14849), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10134), 2, + STATE(10226), 2, sym_preproc_call, sym_enumerator, - STATE(10684), 2, + STATE(10769), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8756), 3, + STATE(8930), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [337290] = 8, + [338207] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(4494), 1, + ACTIONS(14549), 1, + anon_sym___attribute, + STATE(4334), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(14157), 6, + ACTIONS(14547), 5, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_EQ, - anon_sym_try, - [337321] = 9, + anon_sym_GT2, + [338240] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14465), 1, + ACTIONS(14845), 1, sym_identifier, - ACTIONS(14467), 1, + ACTIONS(14847), 1, aux_sym_preproc_if_token1, - ACTIONS(14529), 1, + ACTIONS(14903), 1, anon_sym_RBRACE, - ACTIONS(14469), 2, + ACTIONS(14849), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10158), 2, + STATE(10359), 2, sym_preproc_call, sym_enumerator, - STATE(10831), 2, + STATE(10848), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8676), 3, + STATE(8930), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [337354] = 9, + [338273] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14465), 1, + ACTIONS(14845), 1, sym_identifier, - ACTIONS(14467), 1, + ACTIONS(14847), 1, aux_sym_preproc_if_token1, - ACTIONS(14531), 1, + ACTIONS(14905), 1, anon_sym_RBRACE, - ACTIONS(14469), 2, + ACTIONS(14849), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10083), 2, + STATE(10523), 2, sym_preproc_call, sym_enumerator, - STATE(10592), 2, + STATE(11255), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8693), 3, + STATE(8786), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [337387] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(14258), 1, - anon_sym_LT, - STATE(8362), 1, - sym_template_argument_list, - ACTIONS(6210), 2, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6203), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [337414] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(6095), 1, - anon_sym_STAR, - ACTIONS(6097), 1, - anon_sym_AMP_AMP, - ACTIONS(6099), 1, - anon_sym_AMP, - ACTIONS(11429), 1, - anon_sym_LBRACK, - STATE(4601), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(9254), 1, - sym__abstract_declarator, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [337449] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(6095), 1, - anon_sym_STAR, - ACTIONS(6097), 1, - anon_sym_AMP_AMP, - ACTIONS(6099), 1, - anon_sym_AMP, - ACTIONS(11429), 1, - anon_sym_LBRACK, - STATE(4601), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(9152), 1, - sym__abstract_declarator, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [337484] = 9, + [338306] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14465), 1, + ACTIONS(14845), 1, sym_identifier, - ACTIONS(14467), 1, + ACTIONS(14847), 1, aux_sym_preproc_if_token1, - ACTIONS(14533), 1, + ACTIONS(14907), 1, anon_sym_RBRACE, - ACTIONS(14469), 2, + ACTIONS(14849), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10481), 2, + STATE(10344), 2, sym_preproc_call, sym_enumerator, - STATE(10507), 2, + STATE(11334), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8663), 3, + STATE(8930), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [337517] = 8, + [338339] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(10194), 1, + anon_sym___attribute, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4494), 1, + STATE(4796), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8592), 1, sym__function_declarator_seq, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14227), 6, + ACTIONS(10192), 8, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [338368] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11731), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(11729), 7, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [338389] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(309), 1, anon_sym_LBRACE, + ACTIONS(11754), 1, + anon_sym_LBRACK, + ACTIONS(14676), 1, + anon_sym_COLON, + ACTIONS(14752), 1, anon_sym_EQ, + ACTIONS(14754), 1, anon_sym_try, - [337548] = 8, + STATE(411), 1, + sym_compound_statement, + STATE(10566), 1, + sym_field_initializer_list, + ACTIONS(6883), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(414), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [338424] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(4494), 1, + ACTIONS(14519), 1, + anon_sym___attribute, + STATE(4334), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(14109), 6, + ACTIONS(14517), 5, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_EQ, - anon_sym_try, - [337579] = 10, + anon_sym_GT2, + [338457] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, - anon_sym_LPAREN2, - ACTIONS(11429), 1, - anon_sym_LBRACK, - ACTIONS(11637), 1, - anon_sym_STAR, - ACTIONS(11639), 1, - anon_sym_AMP_AMP, - ACTIONS(11641), 1, - anon_sym_AMP, - STATE(4923), 1, - sym_parameter_list, - STATE(8393), 1, - sym__function_declarator_seq, - STATE(8912), 1, - sym__abstract_declarator, - STATE(8389), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [337614] = 10, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(14845), 1, + sym_identifier, + ACTIONS(14847), 1, + aux_sym_preproc_if_token1, + ACTIONS(14909), 1, + anon_sym_RBRACE, + ACTIONS(14849), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(10354), 2, + sym_preproc_call, + sym_enumerator, + STATE(11017), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(8769), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [338490] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, + ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(6095), 1, + ACTIONS(6463), 1, anon_sym_STAR, - ACTIONS(6097), 1, + ACTIONS(6465), 1, anon_sym_AMP_AMP, - ACTIONS(6099), 1, + ACTIONS(6467), 1, anon_sym_AMP, - ACTIONS(11429), 1, + ACTIONS(11793), 1, anon_sym_LBRACK, - STATE(4601), 1, + STATE(4706), 1, sym_parameter_list, - STATE(8393), 1, + STATE(8598), 1, sym__function_declarator_seq, - STATE(9234), 1, + STATE(9322), 1, sym__abstract_declarator, - STATE(8389), 5, + STATE(8596), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [337649] = 9, + [338525] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(14229), 1, - anon_sym___attribute, - STATE(4234), 1, + STATE(4586), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(14227), 5, - anon_sym_COMMA, + ACTIONS(14517), 6, anon_sym_RPAREN, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [337682] = 10, + anon_sym_try, + [338556] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - ACTIONS(11399), 1, + ACTIONS(11754), 1, anon_sym_LBRACK, - ACTIONS(14296), 1, + ACTIONS(14676), 1, anon_sym_COLON, - ACTIONS(14381), 1, + ACTIONS(14752), 1, anon_sym_EQ, - ACTIONS(14383), 1, + ACTIONS(14754), 1, anon_sym_try, - STATE(870), 1, + STATE(440), 1, sym_compound_statement, - STATE(10152), 1, + STATE(10405), 1, sym_field_initializer_list, - ACTIONS(6515), 2, + ACTIONS(6883), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(874), 4, + STATE(441), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [337717] = 10, + [338591] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, - anon_sym_LBRACE, - ACTIONS(11399), 1, + ACTIONS(10174), 1, + anon_sym___attribute, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, anon_sym_LBRACK, - ACTIONS(14296), 1, - anon_sym_COLON, - ACTIONS(14365), 1, + STATE(4796), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10172), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_EQ, - ACTIONS(14367), 1, - anon_sym_try, - STATE(416), 1, - sym_compound_statement, - STATE(10227), 1, - sym_field_initializer_list, - ACTIONS(6515), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(417), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [337752] = 10, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [338620] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(14845), 1, + sym_identifier, + ACTIONS(14847), 1, + aux_sym_preproc_if_token1, + ACTIONS(14911), 1, + anon_sym_RBRACE, + ACTIONS(14849), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(10227), 2, + sym_preproc_call, + sym_enumerator, + STATE(11066), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(8930), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [338653] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(1113), 1, anon_sym_LBRACE, - ACTIONS(11399), 1, + ACTIONS(11754), 1, anon_sym_LBRACK, - ACTIONS(14296), 1, + ACTIONS(14676), 1, anon_sym_COLON, - ACTIONS(14316), 1, + ACTIONS(14788), 1, anon_sym_EQ, - ACTIONS(14318), 1, + ACTIONS(14790), 1, anon_sym_try, - STATE(885), 1, + STATE(719), 1, sym_compound_statement, - STATE(10329), 1, + STATE(10522), 1, sym_field_initializer_list, - ACTIONS(6515), 2, + ACTIONS(6883), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(888), 4, + STATE(720), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [337787] = 6, + [338688] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(4554), 1, + STATE(4586), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8572), 1, sym__function_declarator_seq, - ACTIONS(9838), 8, - anon_sym_COMMA, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14521), 6, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, + anon_sym_EQ, + anon_sym_try, + [338719] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(14660), 1, + anon_sym_LT, + STATE(8449), 1, + sym_template_argument_list, + ACTIONS(11754), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6883), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [338746] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(14845), 1, + sym_identifier, + ACTIONS(14847), 1, + aux_sym_preproc_if_token1, + ACTIONS(14913), 1, + anon_sym_RBRACE, + ACTIONS(14849), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(10516), 2, + sym_preproc_call, + sym_enumerator, + STATE(11420), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(8930), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [338779] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(8834), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + ACTIONS(14917), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + ACTIONS(14915), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [337813] = 6, + [338801] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4554), 1, + STATE(4672), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9854), 8, + ACTIONS(10172), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -708538,38 +730522,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [337839] = 6, + [338827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(14922), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(14920), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(14481), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [338847] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9513), 2, + anon_sym___attribute, anon_sym_LBRACK, - STATE(4554), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9862), 8, + ACTIONS(9515), 10, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [337865] = 6, + anon_sym_EQ, + anon_sym_try, + [338867] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4554), 1, + STATE(4672), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9832), 8, + ACTIONS(10208), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -708578,13 +730576,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [337891] = 3, + [338893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9142), 2, + ACTIONS(14895), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(9144), 10, + ACTIONS(14893), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708595,13 +730593,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [337911] = 3, + [338913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14537), 2, + ACTIONS(14926), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(14535), 10, + ACTIONS(14924), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708612,13 +730610,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [337931] = 3, + [338933] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(4672), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10188), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [338959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14541), 2, + ACTIONS(14930), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(14539), 10, + ACTIONS(14928), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708629,13 +730647,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [337951] = 3, + [338979] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10819), 1, + anon_sym_DASH_GT, + ACTIONS(14499), 1, + anon_sym_requires, + STATE(8951), 1, + sym_trailing_return_type, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8560), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8907), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + [339009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14545), 2, + ACTIONS(14934), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(14543), 10, + ACTIONS(14932), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708646,100 +730686,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [337971] = 8, + [339029] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10437), 1, + ACTIONS(10819), 1, anon_sym_DASH_GT, - ACTIONS(13035), 1, + ACTIONS(13205), 1, anon_sym_requires, - STATE(8836), 1, + STATE(8949), 1, sym_trailing_return_type, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8397), 2, + STATE(8561), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8089), 3, + ACTIONS(7966), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + [339059] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(4672), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10192), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [339085] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14938), 2, + anon_sym___attribute, anon_sym_LBRACK, - [338001] = 11, + ACTIONS(14936), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [339105] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7817), 1, + ACTIONS(8156), 1, anon_sym_COLON, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - STATE(4673), 1, + STATE(4978), 1, sym_attribute_specifier, - STATE(9287), 1, + STATE(9326), 1, sym_field_declaration_list, - STATE(9456), 1, + STATE(9572), 1, sym_virtual_specifier, - STATE(10408), 1, + STATE(10542), 1, sym_base_class_clause, - ACTIONS(6828), 2, + ACTIONS(7237), 2, anon_sym_COMMA, anon_sym_GT2, - ACTIONS(7821), 2, + ACTIONS(8160), 2, anon_sym_final, anon_sym_override, - [338037] = 8, + [339141] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10437), 1, - anon_sym_DASH_GT, - ACTIONS(12747), 1, - anon_sym_requires, - STATE(8823), 1, - sym_trailing_return_type, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8455), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7544), 3, + ACTIONS(13795), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, + ACTIONS(14865), 1, anon_sym_LBRACK, - [338067] = 4, + STATE(4672), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10204), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [339167] = 4, ACTIONS(3), 1, sym_comment, - STATE(8341), 2, + STATE(8501), 2, sym_string_literal, sym_raw_string_literal, - ACTIONS(14086), 5, + ACTIONS(14477), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(14088), 5, + ACTIONS(14479), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [338089] = 3, + [339189] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14497), 2, + ACTIONS(10819), 1, + anon_sym_DASH_GT, + ACTIONS(13149), 1, + anon_sym_requires, + STATE(8972), 1, + sym_trailing_return_type, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8584), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7791), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + [339219] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(4672), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10200), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [339245] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10819), 1, + anon_sym_DASH_GT, + ACTIONS(13399), 1, + anon_sym_requires, + STATE(8950), 1, + sym_trailing_return_type, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8550), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8422), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + [339275] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9693), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(14495), 10, + ACTIONS(9695), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708750,13 +730889,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [338109] = 3, + [339295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 2, + ACTIONS(14942), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(9306), 10, + ACTIONS(14940), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708767,13 +730906,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [338129] = 3, + [339315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14549), 2, + ACTIONS(14946), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(14547), 10, + ACTIONS(14944), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708784,17 +730923,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [338149] = 5, + [339335] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(4672), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10184), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [339361] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(4672), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10196), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [339387] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(14258), 1, + ACTIONS(14660), 1, anon_sym_LT, - STATE(8362), 1, + STATE(8449), 1, sym_template_argument_list, - ACTIONS(9225), 2, + ACTIONS(9650), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9227), 8, + ACTIONS(9652), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -708803,37 +730982,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [338173] = 8, + [339411] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10437), 1, - anon_sym_DASH_GT, - ACTIONS(14195), 1, - anon_sym_requires, - STATE(8825), 1, - sym_trailing_return_type, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8408), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8543), 3, + ACTIONS(11848), 1, + anon_sym_delete, + ACTIONS(11850), 1, + anon_sym_new, + ACTIONS(9601), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9595), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [339434] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10308), 1, + anon_sym_delete, + ACTIONS(10310), 1, + anon_sym_new, + ACTIONS(9601), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9595), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [339457] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6632), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(6634), 9, + anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - [338203] = 3, + anon_sym_EQ, + anon_sym_try, + [339476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14553), 2, + ACTIONS(6612), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(14551), 10, + ACTIONS(6614), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -708842,73 +731050,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [338223] = 6, + [339495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(6624), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(6626), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(14481), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [339514] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6628), 2, + anon_sym___attribute, anon_sym_LBRACK, - STATE(4554), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9850), 8, + ACTIONS(6630), 9, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [338249] = 4, + anon_sym_EQ, + anon_sym_try, + [339533] = 2, ACTIONS(3), 1, sym_comment, - STATE(8728), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - ACTIONS(14557), 4, + ACTIONS(14948), 11, + anon_sym_LPAREN2, + anon_sym_LT, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - ACTIONS(14555), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_DASH_GT, anon_sym_noexcept, anon_sym_throw, - anon_sym_requires, - [338271] = 6, + [339550] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(4554), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9846), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10320), 1, + anon_sym_LT, + STATE(3735), 1, + sym_template_argument_list, + ACTIONS(7371), 2, + anon_sym___attribute, anon_sym_COLON, + ACTIONS(5657), 6, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_final, anon_sym_override, - anon_sym_requires, - [338297] = 3, + anon_sym_GT2, + [339575] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13945), 1, + anon_sym_LBRACK, + ACTIONS(13987), 1, + anon_sym_try, + STATE(975), 1, + sym_compound_statement, + STATE(976), 1, + sym_try_statement, + STATE(4586), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [339610] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10154), 1, + anon_sym_delete, + ACTIONS(10156), 1, + anon_sym_new, + ACTIONS(9601), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9595), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [339633] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14845), 1, + sym_identifier, + ACTIONS(14950), 1, + aux_sym_preproc_if_token2, + ACTIONS(14952), 1, + aux_sym_preproc_else_token1, + ACTIONS(14954), 1, + aux_sym_preproc_elif_token1, + STATE(9072), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(10856), 1, + sym_enumerator, + ACTIONS(14956), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(11496), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [339664] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14632), 1, + sym_identifier, + ACTIONS(14958), 1, + aux_sym_preproc_if_token2, + ACTIONS(14960), 1, + aux_sym_preproc_else_token1, + ACTIONS(14962), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14964), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(9007), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(11497), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [339693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14562), 2, + ACTIONS(6608), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(14560), 10, + ACTIONS(6610), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -708917,55 +731217,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [338317] = 6, + [339712] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(1113), 1, + anon_sym_LBRACE, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(4554), 1, + ACTIONS(14083), 1, + anon_sym_try, + STATE(698), 1, + sym_compound_statement, + STATE(699), 1, + sym_try_statement, + STATE(4586), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8572), 1, sym__function_declarator_seq, - ACTIONS(9842), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [338343] = 6, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [339747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(6616), 2, + anon_sym___attribute, anon_sym_LBRACK, - STATE(4554), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9858), 8, + ACTIONS(6618), 9, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [338369] = 3, + anon_sym_EQ, + anon_sym_try, + [339766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14566), 2, + ACTIONS(6620), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(14564), 10, + ACTIONS(6622), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -708974,255 +731273,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [338389] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10437), 1, - anon_sym_DASH_GT, - ACTIONS(12869), 1, - anon_sym_requires, - STATE(8835), 1, - sym_trailing_return_type, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8391), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7627), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_LBRACK, - [338419] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14245), 1, - sym_identifier, - ACTIONS(14568), 1, - aux_sym_preproc_if_token2, - ACTIONS(14570), 1, - aux_sym_preproc_else_token1, - ACTIONS(14572), 1, - aux_sym_preproc_elif_token1, - ACTIONS(14574), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8927), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(10809), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [338448] = 5, + [339785] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11403), 1, + ACTIONS(9746), 1, anon_sym_new, - ACTIONS(11413), 1, + ACTIONS(10288), 1, anon_sym_delete, - ACTIONS(9346), 4, + ACTIONS(9601), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9340), 5, + ACTIONS(9595), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [338471] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14576), 11, - anon_sym_LPAREN2, - anon_sym_LT, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [338488] = 11, + [339808] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(13656), 1, + ACTIONS(13951), 1, anon_sym_try, - STATE(815), 1, + STATE(483), 1, sym_compound_statement, - STATE(816), 1, + STATE(484), 1, sym_try_statement, - STATE(4494), 1, + STATE(4586), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [338523] = 5, + [339843] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11486), 1, + ACTIONS(11813), 1, anon_sym_delete, - ACTIONS(11488), 1, + ACTIONS(11815), 1, anon_sym_new, - ACTIONS(9346), 4, + ACTIONS(9601), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9340), 5, + ACTIONS(9595), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [338546] = 6, + [339866] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(1113), 1, + anon_sym_LBRACE, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(4725), 1, + ACTIONS(14083), 1, + anon_sym_try, + STATE(686), 1, + sym_compound_statement, + STATE(687), 1, + sym_try_statement, + STATE(4586), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8572), 1, sym__function_declarator_seq, - ACTIONS(9838), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [338571] = 6, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [339901] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(10572), 1, + anon_sym_LBRACE, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(13819), 1, + anon_sym_try, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(4725), 1, + STATE(3256), 1, + sym_compound_statement, + STATE(3257), 1, + sym_try_statement, + STATE(4586), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8572), 1, sym__function_declarator_seq, - ACTIONS(9842), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [338596] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14578), 11, - anon_sym_LPAREN2, - anon_sym_LT, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [338613] = 5, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [339936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9920), 1, + ACTIONS(11716), 1, anon_sym_delete, - ACTIONS(9922), 1, + ACTIONS(11718), 1, anon_sym_new, - ACTIONS(9346), 4, + ACTIONS(9601), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9340), 5, + ACTIONS(9595), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [338636] = 11, + [339959] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10215), 1, - anon_sym_LBRACE, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13473), 1, - anon_sym_try, - ACTIONS(13557), 1, - anon_sym_LBRACK, - STATE(3178), 1, - sym_compound_statement, - STATE(3186), 1, - sym_try_statement, - STATE(4494), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [338671] = 11, + ACTIONS(14966), 1, + sym_identifier, + ACTIONS(14968), 1, + anon_sym_COLON, + ACTIONS(14970), 1, + sym_system_lib_string, + STATE(10122), 1, + sym_string_literal, + STATE(10123), 1, + sym_module_name, + STATE(10131), 1, + sym_module_partition, + ACTIONS(10274), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [339988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10271), 1, - anon_sym_LBRACE, - ACTIONS(10435), 1, + ACTIONS(14972), 11, + anon_sym_LPAREN2, + anon_sym_LT, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [340005] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13455), 1, - anon_sym_try, - ACTIONS(13557), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(3165), 1, - sym_compound_statement, - STATE(3167), 1, - sym_try_statement, - STATE(4494), 1, + STATE(4861), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8592), 1, sym__function_declarator_seq, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [338706] = 6, + ACTIONS(10196), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [340030] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4725), 1, + STATE(4861), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9850), 7, + ACTIONS(10200), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -709230,61 +731473,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [338731] = 9, + [340055] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14465), 1, - sym_identifier, - ACTIONS(14580), 1, - aux_sym_preproc_if_token2, - ACTIONS(14582), 1, - aux_sym_preproc_else_token1, - ACTIONS(14584), 1, - aux_sym_preproc_elif_token1, - STATE(8924), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(11049), 1, - sym_enumerator, - ACTIONS(14586), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(11048), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [338762] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14245), 1, - sym_identifier, - ACTIONS(14570), 1, - aux_sym_preproc_else_token1, - ACTIONS(14572), 1, - aux_sym_preproc_elif_token1, - ACTIONS(14588), 1, - aux_sym_preproc_if_token2, - ACTIONS(14574), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8927), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(11060), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [338791] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4725), 1, + STATE(4861), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9854), 7, + ACTIONS(10188), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -709292,18 +731492,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [338816] = 6, + [340080] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4725), 1, + STATE(4861), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9846), 7, + ACTIONS(10192), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -709311,60 +731511,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [338841] = 11, + [340105] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14654), 1, + aux_sym_preproc_if_token2, + ACTIONS(14845), 1, + sym_identifier, + ACTIONS(14952), 1, + aux_sym_preproc_else_token1, + ACTIONS(14954), 1, + aux_sym_preproc_elif_token1, + STATE(8870), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(10856), 1, + sym_enumerator, + ACTIONS(14956), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(11503), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [340136] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10271), 1, + ACTIONS(10572), 1, anon_sym_LBRACE, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13455), 1, + ACTIONS(13819), 1, anon_sym_try, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(3258), 1, + STATE(3268), 1, sym_compound_statement, - STATE(3261), 1, + STATE(3269), 1, sym_try_statement, - STATE(4494), 1, + STATE(4586), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [338876] = 5, + [340171] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11401), 1, - anon_sym_delete, - ACTIONS(11403), 1, - anon_sym_new, - ACTIONS(9346), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9340), 5, - anon_sym___based, + ACTIONS(14845), 1, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [338899] = 6, + ACTIONS(14952), 1, + aux_sym_preproc_else_token1, + ACTIONS(14954), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14974), 1, + aux_sym_preproc_if_token2, + STATE(9072), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(10856), 1, + sym_enumerator, + ACTIONS(14956), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(11557), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [340202] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4725), 1, + STATE(4861), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9858), 7, + ACTIONS(10204), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -709372,1121 +731598,820 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [338924] = 6, + [340227] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(4725), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9862), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [338949] = 9, + ACTIONS(14632), 1, + sym_identifier, + ACTIONS(14960), 1, + aux_sym_preproc_else_token1, + ACTIONS(14962), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14976), 1, + aux_sym_preproc_if_token2, + ACTIONS(14964), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(9007), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(11559), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [340256] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14465), 1, + ACTIONS(14632), 1, sym_identifier, - ACTIONS(14582), 1, + ACTIONS(14960), 1, aux_sym_preproc_else_token1, - ACTIONS(14584), 1, + ACTIONS(14962), 1, aux_sym_preproc_elif_token1, - ACTIONS(14590), 1, + ACTIONS(14978), 1, aux_sym_preproc_if_token2, - STATE(8924), 1, + ACTIONS(14964), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8871), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(11504), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [340285] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14670), 1, + aux_sym_preproc_if_token2, + ACTIONS(14845), 1, + sym_identifier, + ACTIONS(14952), 1, + aux_sym_preproc_else_token1, + ACTIONS(14954), 1, + aux_sym_preproc_elif_token1, + STATE(8890), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(11049), 1, + STATE(10856), 1, sym_enumerator, - ACTIONS(14586), 2, + ACTIONS(14956), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(11474), 3, + STATE(11038), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [338980] = 8, + [340316] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14592), 1, - sym_identifier, - ACTIONS(14595), 1, - aux_sym_preproc_if_token1, - ACTIONS(14601), 1, - sym_preproc_directive, - ACTIONS(14604), 1, - anon_sym_RBRACE, - ACTIONS(14598), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(10631), 2, - sym_preproc_call, - sym_enumerator, - STATE(8756), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [339009] = 8, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(4861), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10208), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [340341] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14245), 1, + ACTIONS(14632), 1, sym_identifier, - ACTIONS(14570), 1, + ACTIONS(14960), 1, aux_sym_preproc_else_token1, - ACTIONS(14572), 1, + ACTIONS(14962), 1, aux_sym_preproc_elif_token1, - ACTIONS(14606), 1, + ACTIONS(14980), 1, aux_sym_preproc_if_token2, - ACTIONS(14574), 2, + ACTIONS(14964), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8927), 2, + STATE(8892), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(11478), 3, + STATE(11064), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [339038] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9812), 1, - anon_sym_delete, - ACTIONS(9814), 1, - anon_sym_new, - ACTIONS(9346), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9340), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [339061] = 9, + [340370] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14465), 1, + ACTIONS(14845), 1, sym_identifier, - ACTIONS(14582), 1, + ACTIONS(14952), 1, aux_sym_preproc_else_token1, - ACTIONS(14584), 1, + ACTIONS(14954), 1, aux_sym_preproc_elif_token1, - ACTIONS(14608), 1, + ACTIONS(14982), 1, aux_sym_preproc_if_token2, - STATE(8924), 1, + STATE(8923), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(11049), 1, + STATE(10856), 1, sym_enumerator, - ACTIONS(14586), 2, + ACTIONS(14956), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(10798), 3, + STATE(10879), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [339092] = 11, + [340401] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(14966), 1, + sym_identifier, + ACTIONS(14968), 1, + anon_sym_COLON, + ACTIONS(14984), 1, + sym_system_lib_string, + STATE(10004), 1, + sym_string_literal, + STATE(10006), 1, + sym_module_name, + STATE(10007), 1, + sym_module_partition, + ACTIONS(10274), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [340430] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10186), 1, + anon_sym___attribute, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - ACTIONS(13690), 1, - anon_sym_try, - STATE(727), 1, - sym_compound_statement, - STATE(731), 1, - sym_try_statement, - STATE(4494), 1, + STATE(5310), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8592), 1, sym__function_declarator_seq, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [339127] = 9, + ACTIONS(10184), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [340457] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14290), 1, - aux_sym_preproc_if_token2, - ACTIONS(14465), 1, + ACTIONS(14845), 1, sym_identifier, - ACTIONS(14582), 1, + ACTIONS(14952), 1, aux_sym_preproc_else_token1, - ACTIONS(14584), 1, + ACTIONS(14954), 1, aux_sym_preproc_elif_token1, - STATE(8759), 1, + ACTIONS(14986), 1, + aux_sym_preproc_if_token2, + STATE(9072), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(11049), 1, + STATE(10856), 1, sym_enumerator, - ACTIONS(14586), 2, + ACTIONS(14956), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(10843), 3, + STATE(10817), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [339158] = 8, + [340488] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14245), 1, + ACTIONS(14632), 1, sym_identifier, - ACTIONS(14570), 1, + ACTIONS(14960), 1, aux_sym_preproc_else_token1, - ACTIONS(14572), 1, + ACTIONS(14962), 1, aux_sym_preproc_elif_token1, - ACTIONS(14610), 1, + ACTIONS(14988), 1, aux_sym_preproc_if_token2, - ACTIONS(14574), 2, + ACTIONS(14964), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8735), 2, + STATE(9007), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(11332), 3, + STATE(10868), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [339187] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14612), 11, - anon_sym_LPAREN2, - anon_sym_LT, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [339204] = 9, + [340517] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(14264), 1, - aux_sym_preproc_if_token2, - ACTIONS(14465), 1, + ACTIONS(10258), 1, + anon_sym_delete, + ACTIONS(10260), 1, + anon_sym_new, + ACTIONS(9601), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9595), 5, + anon_sym___based, sym_identifier, - ACTIONS(14582), 1, - aux_sym_preproc_else_token1, - ACTIONS(14584), 1, - aux_sym_preproc_elif_token1, - STATE(8755), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(11049), 1, - sym_enumerator, - ACTIONS(14586), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(10691), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [339235] = 3, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [340540] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6270), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(6272), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(10603), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13807), 1, anon_sym_try, - [339254] = 7, + ACTIONS(13945), 1, + anon_sym_LBRACK, + STATE(3439), 1, + sym_compound_statement, + STATE(3440), 1, + sym_try_statement, + STATE(4586), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [340575] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9852), 1, + ACTIONS(9603), 1, + anon_sym_delete, + ACTIONS(9605), 1, + anon_sym_new, + ACTIONS(9601), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9595), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [340598] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10194), 1, anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(5216), 1, + STATE(5310), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9850), 6, + ACTIONS(10192), 6, anon_sym_COMMA, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [339281] = 7, + [340625] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9856), 1, + ACTIONS(10174), 1, anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(5216), 1, + STATE(5310), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9854), 6, + ACTIONS(10172), 6, anon_sym_COMMA, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [339308] = 7, + [340652] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9860), 1, + ACTIONS(10186), 1, anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(5216), 1, + STATE(5313), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9858), 6, + ACTIONS(10184), 6, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [339335] = 7, + [340679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9864), 1, - anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(14990), 11, + anon_sym_LPAREN2, + anon_sym_LT, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [340696] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(5216), 1, + STATE(4861), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9862), 6, - anon_sym_COMMA, - anon_sym___attribute__, + ACTIONS(10172), 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, - [339362] = 5, + [340721] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11453), 1, + ACTIONS(10387), 1, anon_sym_delete, - ACTIONS(11455), 1, - anon_sym_new, - ACTIONS(9346), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9340), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [339385] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9462), 1, + ACTIONS(10389), 1, anon_sym_new, - ACTIONS(9598), 1, - anon_sym_delete, - ACTIONS(9346), 4, + ACTIONS(9601), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9340), 5, + ACTIONS(9595), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [339408] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6242), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(6244), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [339427] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6246), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(6248), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [339446] = 5, + [340744] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9460), 1, + ACTIONS(11756), 1, anon_sym_delete, - ACTIONS(9462), 1, + ACTIONS(11758), 1, anon_sym_new, - ACTIONS(9346), 4, + ACTIONS(9601), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9340), 5, + ACTIONS(9595), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [339469] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6250), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(6252), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [339488] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9834), 1, - anon_sym___attribute, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(5216), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9832), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [339515] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(13690), 1, - anon_sym_try, - STATE(631), 1, - sym_compound_statement, - STATE(632), 1, - sym_try_statement, - STATE(4494), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [339550] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14614), 1, - sym_identifier, - ACTIONS(14616), 1, - anon_sym_COLON, - ACTIONS(14618), 1, - sym_system_lib_string, - STATE(9825), 1, - sym_string_literal, - STATE(9836), 1, - sym_module_name, - STATE(9850), 1, - sym_module_partition, - ACTIONS(9928), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [339579] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14245), 1, - sym_identifier, - ACTIONS(14570), 1, - aux_sym_preproc_else_token1, - ACTIONS(14572), 1, - aux_sym_preproc_elif_token1, - ACTIONS(14620), 1, - aux_sym_preproc_if_token2, - ACTIONS(14574), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8757), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(11537), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [339608] = 5, + [340767] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9462), 1, + ACTIONS(11758), 1, anon_sym_new, - ACTIONS(9934), 1, + ACTIONS(11777), 1, anon_sym_delete, - ACTIONS(9346), 4, + ACTIONS(9601), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9340), 5, + ACTIONS(9595), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [339631] = 8, + [340790] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14614), 1, + ACTIONS(14966), 1, sym_identifier, - ACTIONS(14616), 1, + ACTIONS(14968), 1, anon_sym_COLON, - ACTIONS(14622), 1, + ACTIONS(14992), 1, sym_system_lib_string, - STATE(10047), 1, + STATE(9856), 1, sym_string_literal, - STATE(10048), 1, + STATE(9857), 1, sym_module_name, - STATE(10058), 1, + STATE(9858), 1, sym_module_partition, - ACTIONS(9928), 5, + ACTIONS(10274), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [339660] = 7, + [340819] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9840), 1, + ACTIONS(10198), 1, anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(5216), 1, + STATE(5310), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9838), 6, + ACTIONS(10196), 6, anon_sym_COMMA, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [339687] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(894), 1, - anon_sym_LBRACE, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(13591), 1, - anon_sym_try, - STATE(835), 1, - sym_compound_statement, - STATE(836), 1, - sym_try_statement, - STATE(4494), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [339722] = 7, + [340846] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9844), 1, + ACTIONS(10202), 1, anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(5216), 1, + STATE(5310), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9842), 6, + ACTIONS(10200), 6, anon_sym_COMMA, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [339749] = 7, + [340873] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9848), 1, - anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(14845), 1, + sym_identifier, + ACTIONS(14952), 1, + aux_sym_preproc_else_token1, + ACTIONS(14954), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14994), 1, + aux_sym_preproc_if_token2, + STATE(8900), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(10856), 1, + sym_enumerator, + ACTIONS(14956), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(10741), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [340904] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10580), 1, + anon_sym_LBRACE, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(13833), 1, + anon_sym_try, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(5216), 1, + STATE(2794), 1, + sym_compound_statement, + STATE(2795), 1, + sym_try_statement, + STATE(4586), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8572), 1, sym__function_declarator_seq, - ACTIONS(9846), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [339776] = 5, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [340939] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11361), 1, + ACTIONS(11844), 1, anon_sym_delete, - ACTIONS(11363), 1, + ACTIONS(11846), 1, anon_sym_new, - ACTIONS(9346), 4, + ACTIONS(9601), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9340), 5, + ACTIONS(9595), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [339799] = 3, + [340962] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6254), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(6256), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [339818] = 3, + ACTIONS(9744), 1, + anon_sym_delete, + ACTIONS(9746), 1, + anon_sym_new, + ACTIONS(9601), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9595), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [340985] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6258), 2, + ACTIONS(10206), 1, anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(6260), 9, - anon_sym_COMMA, + ACTIONS(13795), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [339837] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6262), 2, - anon_sym___attribute, + ACTIONS(14865), 1, anon_sym_LBRACK, - ACTIONS(6264), 9, + STATE(5310), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10204), 6, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [339856] = 2, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [341012] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5326), 11, - anon_sym_LPAREN2, - anon_sym_LT, - anon_sym_LBRACK_LBRACK, + ACTIONS(10603), 1, anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [339873] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9852), 1, - anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(13807), 1, + anon_sym_try, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(5221), 1, + STATE(3443), 1, + sym_compound_statement, + STATE(3444), 1, + sym_try_statement, + STATE(4586), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8572), 1, sym__function_declarator_seq, - ACTIONS(9850), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [339900] = 7, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [341047] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9856), 1, + ACTIONS(10210), 1, anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(5221), 1, + STATE(5310), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9854), 6, + ACTIONS(10208), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [339927] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10051), 1, - anon_sym_delete, - ACTIONS(10053), 1, - anon_sym_new, - ACTIONS(9346), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9340), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [339950] = 9, + [341074] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14465), 1, + ACTIONS(14845), 1, sym_identifier, - ACTIONS(14582), 1, + ACTIONS(14952), 1, aux_sym_preproc_else_token1, - ACTIONS(14584), 1, + ACTIONS(14954), 1, aux_sym_preproc_elif_token1, - ACTIONS(14624), 1, + ACTIONS(14996), 1, aux_sym_preproc_if_token2, - STATE(8811), 1, + STATE(9072), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(11049), 1, + STATE(10856), 1, sym_enumerator, - ACTIONS(14586), 2, + ACTIONS(14956), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(10989), 3, + STATE(10710), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [339981] = 6, + [341105] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9959), 1, + ACTIONS(14632), 1, + sym_identifier, + ACTIONS(14960), 1, + aux_sym_preproc_else_token1, + ACTIONS(14962), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14998), 1, + aux_sym_preproc_if_token2, + ACTIONS(14964), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(9007), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(10748), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [341134] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5682), 11, + anon_sym_LPAREN2, anon_sym_LT, - STATE(3601), 1, - sym_template_argument_list, - ACTIONS(7031), 2, - anon_sym___attribute, - anon_sym_COLON, - ACTIONS(5272), 6, - anon_sym_COMMA, - anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [340006] = 7, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [341151] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9860), 1, + ACTIONS(10190), 1, anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(5221), 1, + STATE(5313), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9858), 6, + ACTIONS(10188), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - [340033] = 7, + [341178] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9864), 1, + ACTIONS(10194), 1, anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(5221), 1, + STATE(5313), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9862), 6, + ACTIONS(10192), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - [340060] = 5, + [341205] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9348), 1, - anon_sym_delete, - ACTIONS(9350), 1, + ACTIONS(9746), 1, anon_sym_new, - ACTIONS(9346), 4, + ACTIONS(9967), 1, + anon_sym_delete, + ACTIONS(9601), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9340), 5, + ACTIONS(9595), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [340083] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9834), 1, - anon_sym___attribute, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(5221), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9832), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [340110] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8929), 1, - anon_sym_LBRACK, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14626), 1, - anon_sym_COMMA, - ACTIONS(14630), 1, - anon_sym___attribute, - STATE(3121), 1, - sym_parameter_list, - STATE(9268), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(14628), 2, - anon_sym_SEMI, - anon_sym___attribute__, - STATE(8366), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [340143] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1162), 1, - anon_sym_LBRACE, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(13656), 1, - anon_sym_try, - STATE(783), 1, - sym_compound_statement, - STATE(821), 1, - sym_try_statement, - STATE(4494), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [340178] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(894), 1, - anon_sym_LBRACE, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(13591), 1, - anon_sym_try, - STATE(868), 1, - sym_compound_statement, - STATE(869), 1, - sym_try_statement, - STATE(4494), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [340213] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10232), 1, - anon_sym_LBRACE, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13447), 1, - anon_sym_try, - ACTIONS(13557), 1, - anon_sym_LBRACK, - STATE(2755), 1, - sym_compound_statement, - STATE(2756), 1, - sym_try_statement, - STATE(4494), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [340248] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9840), 1, - anon_sym___attribute, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(5221), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9838), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [340275] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9844), 1, - anon_sym___attribute, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(5221), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9842), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [340302] = 11, + [341228] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, + ACTIONS(10580), 1, anon_sym_LBRACE, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(13696), 1, + ACTIONS(13833), 1, anon_sym_try, - STATE(438), 1, + ACTIONS(13945), 1, + anon_sym_LBRACK, + STATE(2867), 1, sym_compound_statement, - STATE(439), 1, + STATE(2872), 1, sym_try_statement, - STATE(4494), 1, + STATE(4586), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [340337] = 11, + [341263] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15000), 1, + sym_identifier, + ACTIONS(15003), 1, + aux_sym_preproc_if_token1, + ACTIONS(15009), 1, + sym_preproc_directive, + ACTIONS(15012), 1, + anon_sym_RBRACE, + ACTIONS(15006), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(10795), 2, + sym_preproc_call, + sym_enumerator, + STATE(8930), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [341292] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10232), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13447), 1, - anon_sym_try, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(2781), 1, + ACTIONS(13951), 1, + anon_sym_try, + STATE(460), 1, sym_compound_statement, - STATE(2783), 1, + STATE(461), 1, sym_try_statement, - STATE(4494), 1, + STATE(4586), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [340372] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9787), 1, - anon_sym_delete, - ACTIONS(9789), 1, - anon_sym_new, - ACTIONS(9346), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9340), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [340395] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11457), 1, - anon_sym_delete, - ACTIONS(11459), 1, - anon_sym_new, - ACTIONS(9346), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9340), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [340418] = 2, + [341327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14632), 11, + ACTIONS(15014), 11, anon_sym_LPAREN2, anon_sym_LT, anon_sym_LBRACK_LBRACK, @@ -710498,127 +732423,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_noexcept, anon_sym_throw, - [340435] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14465), 1, - sym_identifier, - ACTIONS(14582), 1, - aux_sym_preproc_else_token1, - ACTIONS(14584), 1, - aux_sym_preproc_elif_token1, - ACTIONS(14634), 1, - aux_sym_preproc_if_token2, - STATE(8924), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(11049), 1, - sym_enumerator, - ACTIONS(14586), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(11443), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [340466] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14245), 1, - sym_identifier, - ACTIONS(14570), 1, - aux_sym_preproc_else_token1, - ACTIONS(14572), 1, - aux_sym_preproc_elif_token1, - ACTIONS(14636), 1, - aux_sym_preproc_if_token2, - ACTIONS(14574), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8927), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(10940), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [340495] = 7, + [341344] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9848), 1, + ACTIONS(10174), 1, anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(5221), 1, + STATE(5313), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9846), 6, + ACTIONS(10172), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - [340522] = 11, + [341371] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, + ACTIONS(960), 1, anon_sym_LBRACE, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(13696), 1, + ACTIONS(13995), 1, anon_sym_try, - STATE(457), 1, + STATE(796), 1, sym_compound_statement, - STATE(458), 1, + STATE(797), 1, sym_try_statement, - STATE(4494), 1, + STATE(4586), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [340557] = 9, + [341406] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(14465), 1, - sym_identifier, - ACTIONS(14582), 1, - aux_sym_preproc_else_token1, - ACTIONS(14584), 1, - aux_sym_preproc_elif_token1, - ACTIONS(14638), 1, - aux_sym_preproc_if_token2, - STATE(8747), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(11049), 1, - sym_enumerator, - ACTIONS(14586), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(10611), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [340588] = 6, + ACTIONS(960), 1, + anon_sym_LBRACE, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13945), 1, + anon_sym_LBRACK, + ACTIONS(13995), 1, + anon_sym_try, + STATE(781), 1, + sym_try_statement, + STATE(823), 1, + sym_compound_statement, + STATE(4586), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [341441] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4725), 1, + STATE(4861), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9832), 7, + ACTIONS(10184), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -710626,506 +732510,650 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [340613] = 5, + [341466] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14966), 1, + sym_identifier, + ACTIONS(14968), 1, + anon_sym_COLON, + ACTIONS(15016), 1, + sym_system_lib_string, + STATE(9992), 1, + sym_string_literal, + STATE(9998), 1, + sym_module_name, + STATE(10008), 1, + sym_module_partition, + ACTIONS(10274), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [341495] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10198), 1, + anon_sym___attribute, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(5313), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10196), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [341522] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10202), 1, + anon_sym___attribute, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(5313), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10200), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [341549] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9462), 1, + ACTIONS(9746), 1, anon_sym_new, - ACTIONS(9950), 1, + ACTIONS(10314), 1, anon_sym_delete, - ACTIONS(9346), 4, + ACTIONS(9601), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9340), 5, + ACTIONS(9595), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [340636] = 5, + [341572] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11403), 1, + ACTIONS(9306), 1, + anon_sym_LBRACK, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(15018), 1, + anon_sym_COMMA, + ACTIONS(15022), 1, + anon_sym___attribute, + STATE(3140), 1, + sym_parameter_list, + STATE(9373), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(15020), 2, + anon_sym_SEMI, + anon_sym___attribute__, + STATE(8473), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [341605] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10206), 1, + anon_sym___attribute, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(5313), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10204), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [341632] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11758), 1, anon_sym_new, - ACTIONS(11467), 1, + ACTIONS(11836), 1, anon_sym_delete, - ACTIONS(9346), 4, + ACTIONS(9601), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9340), 5, + ACTIONS(9595), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [340659] = 11, + [341655] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10210), 1, + anon_sym___attribute, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(5313), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10208), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [341682] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10215), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13473), 1, - anon_sym_try, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(3200), 1, + ACTIONS(13987), 1, + anon_sym_try, + STATE(918), 1, sym_compound_statement, - STATE(3216), 1, + STATE(919), 1, sym_try_statement, - STATE(4494), 1, + STATE(4586), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [340694] = 6, + [341717] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(10190), 1, + anon_sym___attribute, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4985), 1, + STATE(5310), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9850), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(10188), 6, anon_sym_COMMA, + anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [340718] = 5, + [341744] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7414), 1, + ACTIONS(7717), 1, anon_sym___attribute, - STATE(4035), 1, + STATE(8968), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7416), 4, + ACTIONS(7719), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(14640), 4, + ACTIONS(15024), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [340740] = 2, + [341766] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(14642), 10, - anon_sym_LBRACK_LBRACK, + ACTIONS(7693), 1, + anon_sym___attribute, + STATE(4065), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7695), 4, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [340756] = 6, + anon_sym_GT2, + ACTIONS(15026), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [341788] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12869), 1, + ACTIONS(13399), 1, anon_sym_requires, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8391), 2, + STATE(8550), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7627), 3, + ACTIONS(8422), 3, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_LBRACK, - [340780] = 5, + [341812] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7199), 1, - anon_sym___attribute, - STATE(4035), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7201), 4, - anon_sym_COMMA, - anon_sym___attribute__, + ACTIONS(14499), 1, + anon_sym_requires, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8560), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8907), 3, + anon_sym_LPAREN2, anon_sym_LBRACE, - anon_sym_GT2, - ACTIONS(14640), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [340802] = 6, + anon_sym_LBRACK, + [341836] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14204), 1, + ACTIONS(14502), 1, anon_sym_requires, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8410), 2, + STATE(8601), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8561), 3, + ACTIONS(8915), 3, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_LBRACK, - [340826] = 5, + [341860] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7383), 1, + ACTIONS(7697), 1, anon_sym___attribute, - STATE(4035), 1, + STATE(4065), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7385), 4, + ACTIONS(7699), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(14640), 4, + ACTIONS(15026), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [340848] = 5, + [341882] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, + ACTIONS(10198), 1, anon_sym___attribute, - STATE(4035), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7397), 4, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(4779), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10196), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - ACTIONS(14640), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [340870] = 5, + [341908] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7213), 1, + ACTIONS(10206), 1, anon_sym___attribute, - STATE(8826), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7215), 4, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(4779), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10204), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - ACTIONS(14644), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [340892] = 9, + [341934] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(10210), 1, anon_sym___attribute, - ACTIONS(11779), 1, - anon_sym___attribute__, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(5256), 1, + STATE(4779), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(14421), 2, + ACTIONS(10208), 5, anon_sym_COMMA, anon_sym_RPAREN, - STATE(8985), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [340922] = 5, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_GT2, + [341960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7239), 1, - anon_sym___attribute, - STATE(8827), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7241), 4, - anon_sym_COMMA, - anon_sym___attribute__, + ACTIONS(15028), 10, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_GT2, - ACTIONS(14646), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [340944] = 7, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [341976] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9852), 1, - anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4820), 1, + STATE(5227), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9850), 5, + ACTIONS(10184), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [340970] = 7, + anon_sym_requires, + [342000] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9860), 1, - anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4820), 1, + STATE(5227), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9858), 5, + ACTIONS(10196), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [340996] = 7, + anon_sym_requires, + [342024] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9864), 1, - anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4820), 1, + STATE(5227), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9862), 5, + ACTIONS(10188), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [341022] = 6, + anon_sym_requires, + [342048] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14650), 1, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(9452), 1, - sym_gnu_asm_output_operand, - STATE(10905), 1, - sym_string_literal, - ACTIONS(14648), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [341046] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13035), 1, - anon_sym_requires, - ACTIONS(10476), 2, + STATE(5227), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10192), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8397), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8089), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_LBRACK, - [341070] = 6, + anon_sym_GT2, + anon_sym_requires, + [342072] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14195), 1, - anon_sym_requires, - ACTIONS(10476), 2, - anon_sym_final, - anon_sym_override, - STATE(8297), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8408), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8543), 3, + ACTIONS(13795), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, + ACTIONS(14865), 1, anon_sym_LBRACK, - [341094] = 6, + STATE(5227), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10200), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [342096] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4985), 1, + STATE(5227), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9858), 6, + ACTIONS(10172), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [341118] = 6, + [342120] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4985), 1, + STATE(5227), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9862), 6, + ACTIONS(10204), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [341142] = 7, + [342144] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9856), 1, - anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4820), 1, + STATE(5227), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9854), 5, + ACTIONS(10208), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [342168] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7701), 1, + anon_sym___attribute, + STATE(8978), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7703), 4, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_GT2, - [341168] = 5, + ACTIONS(15030), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [342190] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9306), 1, + anon_sym_LBRACK, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(15034), 1, + anon_sym___attribute, + STATE(3140), 1, + sym_parameter_list, + STATE(8473), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15032), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [342218] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7402), 1, + ACTIONS(7707), 1, anon_sym___attribute, - STATE(8821), 1, + STATE(8979), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7404), 4, + ACTIONS(7709), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(14652), 4, + ACTIONS(15036), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [341190] = 5, + [342240] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7408), 1, + ACTIONS(7675), 1, anon_sym___attribute, - STATE(8824), 1, + STATE(4065), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7410), 4, + ACTIONS(7677), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(14654), 4, + ACTIONS(15026), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [341212] = 10, + [342262] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(4676), 1, anon_sym_LBRACE, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(14656), 1, + ACTIONS(15038), 1, anon_sym_EQ, - STATE(4494), 1, + STATE(4586), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(11370), 1, + STATE(10637), 1, sym_initializer_list, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [341244] = 5, + [342294] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7249), 1, + ACTIONS(7713), 1, anon_sym___attribute, - STATE(4035), 1, + STATE(4065), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7251), 4, + ACTIONS(7715), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(14640), 4, + ACTIONS(15026), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [341266] = 6, + [342316] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14660), 1, + ACTIONS(15042), 1, anon_sym_LBRACK, - STATE(9503), 1, + STATE(9522), 1, sym_gnu_asm_input_operand, - STATE(11416), 1, + STATE(10677), 1, sym_string_literal, - ACTIONS(14658), 2, + ACTIONS(15040), 2, anon_sym_RPAREN, anon_sym_COLON, ACTIONS(123), 5, @@ -711134,29849 +733162,30295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [341290] = 5, + [342340] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13205), 1, + anon_sym_requires, + ACTIONS(10859), 2, + anon_sym_final, + anon_sym_override, + STATE(8381), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8561), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7966), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + [342364] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7253), 1, + ACTIONS(7681), 1, anon_sym___attribute, - STATE(8848), 1, + STATE(4065), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7255), 4, + ACTIONS(7683), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(14662), 4, + ACTIONS(15026), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [341312] = 9, + [342386] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(10202), 1, anon_sym___attribute, - ACTIONS(11779), 1, - anon_sym___attribute__, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(5185), 1, + STATE(4779), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(14421), 2, + ACTIONS(10200), 5, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, anon_sym_GT2, - STATE(8985), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [341342] = 8, + [342412] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8929), 1, - anon_sym_LBRACK, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14666), 1, + ACTIONS(43), 1, anon_sym___attribute, - STATE(3121), 1, + ACTIONS(12119), 1, + anon_sym___attribute__, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(5327), 1, sym_parameter_list, - STATE(8366), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14664), 3, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(14734), 2, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [341370] = 5, + anon_sym_GT2, + STATE(9151), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [342442] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7387), 1, + ACTIONS(7555), 1, anon_sym___attribute, - STATE(4035), 1, + STATE(8948), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7389), 4, + ACTIONS(7557), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(14640), 4, + ACTIONS(15044), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [341392] = 5, + [342464] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7391), 1, + ACTIONS(7783), 1, anon_sym___attribute, - STATE(4035), 1, + STATE(8952), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7393), 4, + ACTIONS(7785), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(14640), 4, + ACTIONS(15046), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [341414] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(4985), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9832), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [341438] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(4985), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9838), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [341462] = 6, + [342486] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(4985), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9842), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(7723), 1, + anon_sym___attribute, + STATE(4065), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7725), 4, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_GT2, - anon_sym_requires, - [341486] = 6, + ACTIONS(15026), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [342508] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(4985), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9846), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(7727), 1, + anon_sym___attribute, + STATE(4065), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7729), 4, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_GT2, - anon_sym_requires, - [341510] = 6, + ACTIONS(15026), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [342530] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12747), 1, + ACTIONS(13149), 1, anon_sym_requires, - ACTIONS(10476), 2, + ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8297), 2, + STATE(8381), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8455), 2, + STATE(8584), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7544), 3, + ACTIONS(7791), 3, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_LBRACK, - [341534] = 6, + [342554] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(15050), 1, + anon_sym_LBRACK, + STATE(9480), 1, + sym_gnu_asm_output_operand, + STATE(11261), 1, + sym_string_literal, + ACTIONS(15048), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [342578] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12119), 1, + anon_sym___attribute__, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4985), 1, + STATE(5340), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9854), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(14734), 2, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [341558] = 3, + anon_sym_RPAREN, + STATE(9151), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [342608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14670), 4, + ACTIONS(15054), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(14668), 5, + ACTIONS(15052), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [341575] = 10, + [342625] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(4706), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10172), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [342648] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7021), 1, + ACTIONS(7373), 1, anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14672), 1, + ACTIONS(15056), 1, sym_identifier, - ACTIONS(14674), 1, + ACTIONS(15058), 1, anon_sym_COLON_COLON, - ACTIONS(14676), 1, + ACTIONS(15060), 1, anon_sym_inline, - STATE(913), 1, + STATE(827), 1, sym_declaration_list, - STATE(8962), 1, + STATE(9113), 1, sym_attribute_declaration, - STATE(10103), 1, + STATE(10533), 1, sym_nested_namespace_specifier, - STATE(11021), 1, + STATE(11515), 1, sym__namespace_specifier, - [341606] = 10, + [342679] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7015), 1, + ACTIONS(7395), 1, anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14674), 1, + ACTIONS(15058), 1, anon_sym_COLON_COLON, - ACTIONS(14676), 1, + ACTIONS(15060), 1, anon_sym_inline, - ACTIONS(14678), 1, + ACTIONS(15062), 1, sym_identifier, - STATE(475), 1, + STATE(424), 1, sym_declaration_list, - STATE(8966), 1, + STATE(9102), 1, sym_attribute_declaration, - STATE(10140), 1, + STATE(10570), 1, sym_nested_namespace_specifier, - STATE(11021), 1, + STATE(11515), 1, sym__namespace_specifier, - [341637] = 6, + [342710] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4601), 1, + STATE(4706), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10208), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [342733] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15064), 1, + sym_identifier, + ACTIONS(15068), 1, + sym_system_lib_string, + STATE(10634), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(15066), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [342754] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(4706), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9832), 5, + ACTIONS(10196), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [341660] = 10, + [342777] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7015), 1, + ACTIONS(7369), 1, anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14674), 1, + ACTIONS(15058), 1, anon_sym_COLON_COLON, - ACTIONS(14676), 1, + ACTIONS(15060), 1, anon_sym_inline, - ACTIONS(14680), 1, + ACTIONS(15070), 1, sym_identifier, - STATE(517), 1, + STATE(973), 1, sym_declaration_list, - STATE(9033), 1, + STATE(9148), 1, sym_attribute_declaration, - STATE(10402), 1, + STATE(10539), 1, sym_nested_namespace_specifier, - STATE(11021), 1, + STATE(11515), 1, sym__namespace_specifier, - [341691] = 6, + [342808] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(7395), 1, + anon_sym_LBRACE, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15058), 1, + anon_sym_COLON_COLON, + ACTIONS(15060), 1, + anon_sym_inline, + ACTIONS(15072), 1, + sym_identifier, + STATE(409), 1, + sym_declaration_list, + STATE(9116), 1, + sym_attribute_declaration, + STATE(10510), 1, + sym_nested_namespace_specifier, + STATE(11515), 1, + sym__namespace_specifier, + [342839] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4601), 1, + STATE(4706), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9842), 5, + ACTIONS(10192), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [341714] = 5, + [342862] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(14682), 1, + ACTIONS(7361), 1, + anon_sym_LBRACE, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15058), 1, + anon_sym_COLON_COLON, + ACTIONS(15060), 1, + anon_sym_inline, + ACTIONS(15074), 1, sym_identifier, - ACTIONS(14686), 1, + STATE(656), 1, + sym_declaration_list, + STATE(9086), 1, + sym_attribute_declaration, + STATE(10335), 1, + sym_nested_namespace_specifier, + STATE(11515), 1, + sym__namespace_specifier, + [342893] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(4706), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10200), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [342916] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15076), 1, + sym_identifier, + ACTIONS(15078), 1, sym_system_lib_string, - STATE(11542), 2, + STATE(10881), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(14684), 5, + ACTIONS(15066), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [341735] = 9, + [342937] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(10145), 1, + ACTIONS(10554), 1, anon_sym_LBRACE, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(14688), 1, + ACTIONS(15080), 1, anon_sym_COLON, - STATE(4866), 1, + STATE(4868), 1, sym_attribute_specifier, - STATE(8994), 1, + STATE(9119), 1, sym__enum_base_clause, - STATE(9218), 1, + STATE(9324), 1, sym_enumerator_list, - ACTIONS(7602), 2, + ACTIONS(8002), 2, anon_sym_COMMA, anon_sym_GT2, - [341764] = 5, + [342966] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(14690), 1, + ACTIONS(15082), 1, sym_identifier, - ACTIONS(14692), 1, + ACTIONS(15084), 1, sym_system_lib_string, - STATE(11404), 2, + STATE(10869), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(14684), 5, + ACTIONS(15066), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [341785] = 10, + [342987] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(4706), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10184), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [343010] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7021), 1, + ACTIONS(7373), 1, anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14674), 1, + ACTIONS(15058), 1, anon_sym_COLON_COLON, - ACTIONS(14676), 1, + ACTIONS(15060), 1, anon_sym_inline, - ACTIONS(14694), 1, + ACTIONS(15086), 1, sym_identifier, - STATE(827), 1, + STATE(863), 1, sym_declaration_list, - STATE(9014), 1, + STATE(9158), 1, sym_attribute_declaration, - STATE(10376), 1, + STATE(10232), 1, sym_nested_namespace_specifier, - STATE(11021), 1, + STATE(11515), 1, sym__namespace_specifier, - [341816] = 10, + [343041] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 1, + ACTIONS(7369), 1, anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14674), 1, + ACTIONS(15058), 1, anon_sym_COLON_COLON, - ACTIONS(14676), 1, + ACTIONS(15060), 1, anon_sym_inline, - ACTIONS(14696), 1, + ACTIONS(15088), 1, sym_identifier, - STATE(623), 1, + STATE(939), 1, sym_declaration_list, - STATE(8990), 1, + STATE(9110), 1, sym_attribute_declaration, - STATE(10432), 1, + STATE(10428), 1, sym_nested_namespace_specifier, - STATE(11021), 1, + STATE(11515), 1, sym__namespace_specifier, - [341847] = 9, + [343072] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(10145), 1, + ACTIONS(10554), 1, anon_sym_LBRACE, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(14688), 1, + ACTIONS(15080), 1, anon_sym_COLON, - STATE(4746), 1, + STATE(4912), 1, sym_attribute_specifier, - STATE(8996), 1, + STATE(9123), 1, sym__enum_base_clause, - STATE(9224), 1, + STATE(9335), 1, sym_enumerator_list, - ACTIONS(7653), 2, + ACTIONS(8008), 2, anon_sym_COMMA, anon_sym_GT2, - [341876] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(4601), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9862), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - [341899] = 10, + [343101] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(14674), 1, - anon_sym_COLON_COLON, - ACTIONS(14676), 1, - anon_sym_inline, - ACTIONS(14698), 1, - sym_identifier, - STATE(670), 1, - sym_declaration_list, - STATE(9028), 1, - sym_attribute_declaration, - STATE(10368), 1, - sym_nested_namespace_specifier, - STATE(11021), 1, - sym__namespace_specifier, - [341930] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14700), 1, + ACTIONS(15090), 1, sym_identifier, - ACTIONS(14702), 1, + ACTIONS(15092), 1, sym_system_lib_string, - STATE(10551), 2, + STATE(11393), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(14684), 5, + ACTIONS(15066), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [341951] = 6, + [343122] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4601), 1, + STATE(4706), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9846), 5, + ACTIONS(10204), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [341974] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14704), 1, - sym_identifier, - ACTIONS(14706), 1, - sym_system_lib_string, - STATE(11087), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(14684), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [341995] = 3, + [343145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14710), 4, + ACTIONS(15096), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(14708), 5, + ACTIONS(15094), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [342012] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6983), 1, - anon_sym_LBRACE, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(14674), 1, - anon_sym_COLON_COLON, - ACTIONS(14676), 1, - anon_sym_inline, - ACTIONS(14712), 1, - sym_identifier, - STATE(883), 1, - sym_declaration_list, - STATE(9005), 1, - sym_attribute_declaration, - STATE(10295), 1, - sym_nested_namespace_specifier, - STATE(11021), 1, - sym__namespace_specifier, - [342043] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(4601), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9850), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - [342066] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(4601), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9854), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - [342089] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(4601), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9858), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - [342112] = 10, + [343162] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6983), 1, + ACTIONS(7361), 1, anon_sym_LBRACE, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14674), 1, + ACTIONS(15058), 1, anon_sym_COLON_COLON, - ACTIONS(14676), 1, + ACTIONS(15060), 1, anon_sym_inline, - ACTIONS(14714), 1, + ACTIONS(15098), 1, sym_identifier, - STATE(915), 1, + STATE(653), 1, sym_declaration_list, - STATE(9004), 1, + STATE(9159), 1, sym_attribute_declaration, - STATE(10121), 1, + STATE(10263), 1, sym_nested_namespace_specifier, - STATE(11021), 1, + STATE(11515), 1, sym__namespace_specifier, - [342143] = 6, + [343193] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4601), 1, + STATE(4706), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9838), 5, + ACTIONS(10188), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [342166] = 9, + [343216] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(14716), 1, + ACTIONS(15100), 1, sym_identifier, - STATE(3617), 1, - sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(5810), 1, - sym_template_method, - STATE(10418), 1, - sym_splice_specifier, - STATE(10446), 1, - sym_operator_name, - [342194] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9856), 1, - anon_sym___attribute, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(5185), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9854), 3, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_GT2, - [342218] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(14718), 1, - anon_sym_SEMI, - STATE(4494), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [342244] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13879), 1, - anon_sym_DASH_GT, - ACTIONS(13881), 1, - anon_sym_requires, - ACTIONS(14720), 1, - anon_sym_LBRACE, - STATE(9613), 1, - sym_trailing_return_type, - STATE(10981), 1, - sym_requires_clause, - STATE(7823), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [342270] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13879), 1, - anon_sym_DASH_GT, - ACTIONS(13881), 1, - anon_sym_requires, - ACTIONS(14722), 1, - anon_sym_LBRACE, - STATE(9552), 1, - sym_trailing_return_type, - STATE(11216), 1, - sym_requires_clause, - STATE(7823), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [342296] = 8, + ACTIONS(15105), 1, + aux_sym_preproc_elif_token1, + STATE(9007), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(15103), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [343236] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13879), 1, + ACTIONS(14245), 1, anon_sym_DASH_GT, - ACTIONS(13881), 1, + ACTIONS(14247), 1, anon_sym_requires, - ACTIONS(14724), 1, + ACTIONS(14381), 1, anon_sym_LBRACE, - STATE(9812), 1, + STATE(10012), 1, sym_trailing_return_type, - STATE(10671), 1, + STATE(11133), 1, sym_requires_clause, - STATE(7823), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [342322] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(14726), 1, - anon_sym_SEMI, - STATE(4494), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(8286), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [342348] = 8, + [343262] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13879), 1, + ACTIONS(14245), 1, anon_sym_DASH_GT, - ACTIONS(13881), 1, + ACTIONS(14247), 1, anon_sym_requires, - ACTIONS(14724), 1, + ACTIONS(15107), 1, anon_sym_LBRACE, - STATE(9812), 1, + STATE(10152), 1, sym_trailing_return_type, - STATE(10671), 1, + STATE(11324), 1, sym_requires_clause, - STATE(8884), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [342374] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(14728), 1, - sym_identifier, - STATE(3617), 1, - sym_template_type, - STATE(3675), 1, - sym_template_method, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(10292), 1, - sym_operator_name, - STATE(10418), 1, - sym_splice_specifier, - [342402] = 7, + [343288] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9864), 1, - anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(5256), 1, + ACTIONS(15109), 1, + anon_sym_SEMI, + STATE(4586), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8572), 1, sym__function_declarator_seq, - ACTIONS(9862), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - [342426] = 9, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343314] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(14730), 1, + ACTIONS(15111), 1, sym_identifier, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(5517), 1, + STATE(5556), 1, sym__splice_specialization_specifier, - STATE(5622), 1, + STATE(5906), 1, sym_template_method, - STATE(10431), 1, - sym_operator_name, - STATE(10450), 1, + STATE(10340), 1, sym_splice_specifier, - [342454] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(4923), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9858), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [342476] = 8, + STATE(10416), 1, + sym_operator_name, + [343342] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13803), 1, anon_sym_LBRACK, - ACTIONS(14732), 1, - anon_sym_SEMI, - STATE(4494), 1, + ACTIONS(14646), 1, + anon_sym_RPAREN, + STATE(4586), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8856), 1, sym__function_declarator_seq, - STATE(8286), 2, + STATE(8678), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [342502] = 8, + [343368] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(14734), 1, - anon_sym_COLON, - STATE(4494), 1, + ACTIONS(15113), 1, + anon_sym_SEMI, + STATE(4586), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [342528] = 8, + [343394] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(14736), 1, + ACTIONS(15115), 1, anon_sym_SEMI, - STATE(4494), 1, + STATE(4586), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [342554] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13879), 1, - anon_sym_DASH_GT, - ACTIONS(13881), 1, - anon_sym_requires, - ACTIONS(13955), 1, - anon_sym_LBRACE, - STATE(9570), 1, - sym_trailing_return_type, - STATE(11423), 1, - sym_requires_clause, - STATE(8902), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [342580] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(14728), 1, - sym_identifier, - STATE(3617), 1, - sym_template_type, - STATE(3675), 1, - sym_template_method, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(10235), 1, - sym_operator_name, - STATE(10418), 1, - sym_splice_specifier, - [342608] = 7, + [343420] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9852), 1, - anon_sym___attribute, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(15050), 1, anon_sym_LBRACK, - STATE(5256), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9850), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - [342632] = 9, + STATE(9957), 1, + sym_gnu_asm_output_operand, + STATE(11261), 1, + sym_string_literal, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [343440] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(14730), 1, + ACTIONS(15117), 1, sym_identifier, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(5622), 1, + STATE(3798), 1, sym_template_method, - STATE(10418), 1, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(10302), 1, sym_splice_specifier, - STATE(10431), 1, + STATE(10412), 1, sym_operator_name, - [342660] = 9, + [343468] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(14728), 1, + ACTIONS(15117), 1, sym_identifier, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(3661), 1, - sym__splice_specialization_specifier, - STATE(3675), 1, + STATE(3798), 1, sym_template_method, - STATE(10096), 1, - sym_splice_specifier, - STATE(10292), 1, + STATE(3804), 1, + sym__splice_specialization_specifier, + STATE(10412), 1, sym_operator_name, - [342688] = 8, + STATE(10450), 1, + sym_splice_specifier, + [343496] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13443), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(14738), 1, - anon_sym_RPAREN, - STATE(4494), 1, + ACTIONS(15119), 1, + anon_sym_SEMI, + STATE(4586), 1, sym_parameter_list, - STATE(8715), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(8581), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [342714] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13879), 1, - anon_sym_DASH_GT, - ACTIONS(13881), 1, - anon_sym_requires, - ACTIONS(13955), 1, - anon_sym_LBRACE, - STATE(9570), 1, - sym_trailing_return_type, - STATE(11423), 1, - sym_requires_clause, - STATE(7823), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [342740] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13879), 1, - anon_sym_DASH_GT, - ACTIONS(13881), 1, - anon_sym_requires, - ACTIONS(14740), 1, - anon_sym_LBRACE, - STATE(9866), 1, - sym_trailing_return_type, - STATE(10637), 1, - sym_requires_clause, - STATE(7823), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [342766] = 7, + [343522] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9856), 1, - anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(5256), 1, + STATE(4883), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9854), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - [342790] = 8, + ACTIONS(15121), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [343544] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(14742), 1, + ACTIONS(15123), 1, anon_sym_SEMI, - STATE(4494), 1, + STATE(4586), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [342816] = 4, + [343570] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(14746), 1, - aux_sym_preproc_elif_token1, - ACTIONS(14748), 1, - anon_sym_EQ, - ACTIONS(14744), 6, + ACTIONS(15125), 1, + anon_sym___attribute__, + ACTIONS(15128), 1, + anon_sym___attribute, + STATE(9021), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(6937), 4, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [342834] = 9, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_GT2, + [343590] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(14750), 1, + ACTIONS(15131), 1, sym_identifier, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(3675), 1, - sym_template_method, - STATE(5162), 1, + STATE(5692), 1, sym__splice_specialization_specifier, - STATE(10170), 1, + STATE(5761), 1, + sym_template_method, + STATE(10434), 1, sym_operator_name, - STATE(10418), 1, + STATE(10464), 1, sym_splice_specifier, - [342862] = 6, + [343618] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(10206), 1, + anon_sym___attribute, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4923), 1, + STATE(5327), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9850), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [342884] = 8, + ACTIONS(10204), 3, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_GT2, + [343642] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15117), 1, + sym_identifier, + STATE(3739), 1, + sym_template_type, + STATE(3798), 1, + sym_template_method, + STATE(3804), 1, + sym__splice_specialization_specifier, + STATE(10254), 1, + sym_operator_name, + STATE(10450), 1, + sym_splice_specifier, + [343670] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13879), 1, - anon_sym_DASH_GT, - ACTIONS(13881), 1, - anon_sym_requires, - ACTIONS(14740), 1, - anon_sym_LBRACE, - STATE(9866), 1, - sym_trailing_return_type, - STATE(10637), 1, - sym_requires_clause, - STATE(8883), 2, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, + anon_sym_LT, + ACTIONS(15133), 1, + anon_sym_SEMI, + ACTIONS(15135), 1, + anon_sym_EQ, + STATE(3735), 1, + sym_template_argument_list, + STATE(9501), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [342910] = 8, + [343696] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13443), 1, + ACTIONS(13803), 1, anon_sym_LBRACK, - ACTIONS(14260), 1, + ACTIONS(14656), 1, anon_sym_RPAREN, - STATE(4494), 1, + STATE(4586), 1, sym_parameter_list, - STATE(8715), 1, + STATE(8856), 1, sym__function_declarator_seq, - STATE(8581), 2, + STATE(8678), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [342936] = 8, + [343722] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13443), 1, - anon_sym_LBRACK, - ACTIONS(14282), 1, - anon_sym_RPAREN, - STATE(4494), 1, - sym_parameter_list, - STATE(8715), 1, - sym__function_declarator_seq, - STATE(8581), 2, + ACTIONS(14245), 1, + anon_sym_DASH_GT, + ACTIONS(14247), 1, + anon_sym_requires, + ACTIONS(15137), 1, + anon_sym_LBRACE, + STATE(10150), 1, + sym_trailing_return_type, + STATE(11184), 1, + sym_requires_clause, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [342962] = 7, + [343748] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9852), 1, + ACTIONS(10210), 1, anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(5185), 1, + STATE(5340), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9850), 3, + ACTIONS(10208), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_GT2, - [342986] = 6, + [343772] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(13803), 1, anon_sym_LBRACK, - STATE(4923), 1, + ACTIONS(15139), 1, + anon_sym_RPAREN, + STATE(4586), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8856), 1, sym__function_declarator_seq, - ACTIONS(14752), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + STATE(8678), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343798] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15143), 1, + aux_sym_preproc_elif_token1, + ACTIONS(15145), 1, anon_sym_EQ, - anon_sym_try, - [343008] = 8, + ACTIONS(15141), 6, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [343816] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(14754), 1, + ACTIONS(15147), 1, anon_sym_SEMI, - STATE(4494), 1, + STATE(4586), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343034] = 8, + [343842] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(9456), 1, + anon_sym_COMMA, + ACTIONS(10005), 1, + anon_sym_LT, + ACTIONS(15149), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15151), 1, + anon_sym_RBRACK, + ACTIONS(15154), 1, + anon_sym_EQ, + STATE(3735), 1, + sym_template_argument_list, + STATE(9899), 1, + aux_sym_structured_binding_declarator_repeat1, + [343870] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13803), 1, anon_sym_LBRACK, - ACTIONS(14756), 1, + ACTIONS(14628), 1, anon_sym_RPAREN, - STATE(4494), 1, + STATE(4586), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8856), 1, sym__function_declarator_seq, - STATE(8286), 2, + STATE(8678), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343060] = 6, + [343896] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(4923), 1, + ACTIONS(15156), 1, + anon_sym_COLON, + STATE(4586), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8572), 1, sym__function_declarator_seq, - ACTIONS(9854), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [343082] = 8, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343922] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13803), 1, anon_sym_LBRACK, - ACTIONS(14758), 1, - anon_sym_SEMI, - STATE(4494), 1, + ACTIONS(15158), 1, + anon_sym_RPAREN, + STATE(4586), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8856), 1, sym__function_declarator_seq, - STATE(8286), 2, + STATE(8678), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343108] = 8, + [343948] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5270), 1, + ACTIONS(5655), 1, anon_sym_COLON_COLON, - ACTIONS(9672), 1, + ACTIONS(10005), 1, anon_sym_LT, - ACTIONS(14760), 1, + ACTIONS(15160), 1, anon_sym_SEMI, - ACTIONS(14762), 1, + ACTIONS(15162), 1, anon_sym_EQ, - STATE(3601), 1, + STATE(3735), 1, sym_template_argument_list, - STATE(9320), 2, + STATE(9433), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343134] = 9, + [343974] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(8983), 1, + ACTIONS(10202), 1, + anon_sym___attribute, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(5327), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10200), 3, anon_sym_COMMA, - ACTIONS(9672), 1, - anon_sym_LT, - ACTIONS(14764), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(14766), 1, - anon_sym_RBRACK, - ACTIONS(14769), 1, - anon_sym_EQ, - STATE(3601), 1, - sym_template_argument_list, - STATE(10037), 1, - aux_sym_structured_binding_declarator_repeat1, - [343162] = 9, + anon_sym___attribute__, + anon_sym_GT2, + [343998] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14243), 1, + anon_sym_LBRACE, + ACTIONS(14245), 1, + anon_sym_DASH_GT, + ACTIONS(14247), 1, + anon_sym_requires, + STATE(9835), 1, + sym_trailing_return_type, + STATE(11587), 1, + sym_requires_clause, + STATE(7955), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344024] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(14728), 1, + ACTIONS(15164), 1, sym_identifier, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(3661), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(3675), 1, + STATE(5546), 1, sym_template_method, - STATE(10096), 1, - sym_splice_specifier, - STATE(10235), 1, + STATE(10211), 1, sym_operator_name, - [343190] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(14771), 1, - anon_sym_SEMI, - STATE(4494), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(8286), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [343216] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14773), 1, - anon_sym___attribute__, - ACTIONS(14776), 1, - anon_sym___attribute, - STATE(8921), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(6555), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_GT2, - [343236] = 8, + STATE(10302), 1, + sym_splice_specifier, + [344052] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5270), 1, + ACTIONS(5655), 1, anon_sym_COLON_COLON, - ACTIONS(9672), 1, + ACTIONS(10005), 1, anon_sym_LT, - ACTIONS(14779), 1, + ACTIONS(15166), 1, anon_sym_SEMI, - ACTIONS(14781), 1, + ACTIONS(15168), 1, anon_sym_EQ, - STATE(3601), 1, + STATE(3735), 1, sym_template_argument_list, - STATE(9430), 2, + STATE(9543), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343262] = 7, + [344078] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9860), 1, - anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(5185), 1, + STATE(4883), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9858), 3, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_GT2, - [343286] = 6, + ACTIONS(10196), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [344100] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14783), 1, - sym_identifier, - ACTIONS(14788), 1, - aux_sym_preproc_elif_token1, - STATE(8924), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(11049), 1, - sym_enumerator, - ACTIONS(14786), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [343308] = 8, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(4883), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10208), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [344122] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(14790), 1, + ACTIONS(15170), 1, anon_sym_SEMI, - STATE(4494), 1, + STATE(4586), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343334] = 6, + [344148] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(4923), 1, + ACTIONS(15172), 1, + anon_sym_RPAREN, + STATE(4586), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8572), 1, sym__function_declarator_seq, - ACTIONS(9862), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [343356] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14792), 1, - sym_identifier, - ACTIONS(14797), 1, - aux_sym_preproc_elif_token1, - STATE(8927), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(14795), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [343376] = 8, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344174] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13877), 1, - anon_sym_LBRACE, - ACTIONS(13879), 1, + ACTIONS(14245), 1, anon_sym_DASH_GT, - ACTIONS(13881), 1, + ACTIONS(14247), 1, anon_sym_requires, - STATE(9873), 1, + ACTIONS(15174), 1, + anon_sym_LBRACE, + STATE(10081), 1, sym_trailing_return_type, - STATE(10694), 1, + STATE(10847), 1, sym_requires_clause, - STATE(8885), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343402] = 9, + [344200] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, + ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(14799), 1, + ACTIONS(15176), 1, sym_identifier, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(5604), 1, + STATE(3798), 1, sym_template_method, - STATE(10202), 1, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(10296), 1, sym_operator_name, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [343430] = 8, + [344228] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13877), 1, - anon_sym_LBRACE, - ACTIONS(13879), 1, - anon_sym_DASH_GT, - ACTIONS(13881), 1, - anon_sym_requires, - STATE(9873), 1, - sym_trailing_return_type, - STATE(10694), 1, - sym_requires_clause, - STATE(7823), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [343456] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9864), 1, - anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - STATE(5185), 1, + ACTIONS(15178), 1, + anon_sym_SEMI, + STATE(4586), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8572), 1, sym__function_declarator_seq, - ACTIONS(9862), 3, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_GT2, - [343480] = 8, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344254] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13443), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(14278), 1, - anon_sym_RPAREN, - STATE(4494), 1, + ACTIONS(15180), 1, + anon_sym_SEMI, + STATE(4586), 1, sym_parameter_list, - STATE(8715), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(8581), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343506] = 8, + [344280] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5270), 1, + ACTIONS(5655), 1, anon_sym_COLON_COLON, - ACTIONS(9672), 1, + ACTIONS(10005), 1, anon_sym_LT, - ACTIONS(14801), 1, + ACTIONS(15182), 1, anon_sym_SEMI, - ACTIONS(14803), 1, + ACTIONS(15184), 1, anon_sym_EQ, - STATE(3601), 1, + STATE(3735), 1, sym_template_argument_list, - STATE(9435), 2, + STATE(9514), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343532] = 8, + [344306] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(14805), 1, + ACTIONS(15186), 1, anon_sym_SEMI, - STATE(4494), 1, + STATE(4586), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343558] = 8, + [344332] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - ACTIONS(14807), 1, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, + anon_sym_LT, + ACTIONS(15188), 1, anon_sym_SEMI, - STATE(4494), 1, - sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(8286), 2, + ACTIONS(15190), 1, + anon_sym_EQ, + STATE(3735), 1, + sym_template_argument_list, + STATE(9584), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343584] = 8, + [344358] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(10198), 1, + anon_sym___attribute, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13443), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - ACTIONS(14809), 1, - anon_sym_RPAREN, - STATE(4494), 1, + STATE(5327), 1, sym_parameter_list, - STATE(8715), 1, + STATE(8592), 1, sym__function_declarator_seq, - STATE(8581), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [343610] = 8, + ACTIONS(10196), 3, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_GT2, + [344382] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(10198), 1, + anon_sym___attribute, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13443), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - ACTIONS(14286), 1, - anon_sym_RPAREN, - STATE(4494), 1, + STATE(5340), 1, sym_parameter_list, - STATE(8715), 1, + STATE(8592), 1, sym__function_declarator_seq, - STATE(8581), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [343636] = 8, + ACTIONS(10196), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + [344406] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13443), 1, + ACTIONS(13803), 1, anon_sym_LBRACK, - ACTIONS(14274), 1, + ACTIONS(14650), 1, anon_sym_RPAREN, - STATE(4494), 1, + STATE(4586), 1, sym_parameter_list, - STATE(8715), 1, + STATE(8856), 1, sym__function_declarator_seq, - STATE(8581), 2, + STATE(8678), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343662] = 8, + [344432] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(14811), 1, - anon_sym_RPAREN, - STATE(4494), 1, + ACTIONS(15192), 1, + anon_sym_SEMI, + STATE(4586), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343688] = 8, + [344458] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5270), 1, + ACTIONS(5655), 1, anon_sym_COLON_COLON, - ACTIONS(9672), 1, + ACTIONS(10005), 1, anon_sym_LT, - ACTIONS(14813), 1, + ACTIONS(15194), 1, anon_sym_SEMI, - ACTIONS(14815), 1, + ACTIONS(15196), 1, anon_sym_EQ, - STATE(3601), 1, + STATE(3735), 1, sym_template_argument_list, - STATE(9401), 2, + STATE(9537), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343714] = 8, + [344484] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15131), 1, + sym_identifier, + STATE(3739), 1, + sym_template_type, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(5761), 1, + sym_template_method, + STATE(10302), 1, + sym_splice_specifier, + STATE(10434), 1, + sym_operator_name, + [344512] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15164), 1, + sym_identifier, + STATE(3739), 1, + sym_template_type, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(5546), 1, + sym_template_method, + STATE(10211), 1, + sym_operator_name, + STATE(10419), 1, + sym_splice_specifier, + [344540] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15042), 1, + anon_sym_LBRACK, + STATE(9709), 1, + sym_gnu_asm_input_operand, + STATE(10677), 1, + sym_string_literal, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [344560] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15111), 1, + sym_identifier, + STATE(3739), 1, + sym_template_type, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(5906), 1, + sym_template_method, + STATE(10302), 1, + sym_splice_specifier, + STATE(10416), 1, + sym_operator_name, + [344588] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - ACTIONS(14817), 1, - anon_sym_SEMI, - STATE(4494), 1, + STATE(4883), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8592), 1, sym__function_declarator_seq, - STATE(8286), 2, + ACTIONS(10200), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [344610] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14245), 1, + anon_sym_DASH_GT, + ACTIONS(14247), 1, + anon_sym_requires, + ACTIONS(15198), 1, + anon_sym_LBRACE, + STATE(9693), 1, + sym_trailing_return_type, + STATE(10701), 1, + sym_requires_clause, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343740] = 7, + [344636] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9860), 1, + ACTIONS(10210), 1, anon_sym___attribute, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(5256), 1, + STATE(5327), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9858), 3, + ACTIONS(10208), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym___attribute__, - [343764] = 8, + anon_sym_GT2, + [344660] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - ACTIONS(14819), 1, - anon_sym_SEMI, - ACTIONS(14821), 1, - anon_sym_EQ, - STATE(3601), 1, - sym_template_argument_list, - STATE(9426), 2, + ACTIONS(14243), 1, + anon_sym_LBRACE, + ACTIONS(14245), 1, + anon_sym_DASH_GT, + ACTIONS(14247), 1, + anon_sym_requires, + STATE(9835), 1, + sym_trailing_return_type, + STATE(11587), 1, + sym_requires_clause, + STATE(9062), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343790] = 8, + [344686] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(14823), 1, + ACTIONS(15200), 1, anon_sym_SEMI, - STATE(4494), 1, + STATE(4586), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343816] = 5, + [344712] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14650), 1, - anon_sym_LBRACK, - STATE(9853), 1, - sym_gnu_asm_output_operand, - STATE(10905), 1, - sym_string_literal, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [343836] = 5, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14245), 1, + anon_sym_DASH_GT, + ACTIONS(14247), 1, + anon_sym_requires, + ACTIONS(15137), 1, + anon_sym_LBRACE, + STATE(10150), 1, + sym_trailing_return_type, + STATE(11184), 1, + sym_requires_clause, + STATE(9009), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344738] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14660), 1, - anon_sym_LBRACK, - STATE(9614), 1, - sym_gnu_asm_input_operand, - STATE(11416), 1, - sym_string_literal, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [343856] = 9, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14245), 1, + anon_sym_DASH_GT, + ACTIONS(14247), 1, + anon_sym_requires, + ACTIONS(15198), 1, + anon_sym_LBRACE, + STATE(9693), 1, + sym_trailing_return_type, + STATE(10701), 1, + sym_requires_clause, + STATE(9045), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344764] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(14716), 1, - sym_identifier, - STATE(3617), 1, - sym_template_type, - STATE(5612), 1, - sym__splice_specialization_specifier, - STATE(5810), 1, - sym_template_method, - STATE(10277), 1, - sym_splice_specifier, - STATE(10446), 1, - sym_operator_name, - [343884] = 8, + ACTIONS(10202), 1, + anon_sym___attribute, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(5340), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10200), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + [344788] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5270), 1, + ACTIONS(5655), 1, anon_sym_COLON_COLON, - ACTIONS(9672), 1, + ACTIONS(10005), 1, anon_sym_LT, - ACTIONS(14825), 1, + ACTIONS(15202), 1, anon_sym_SEMI, - ACTIONS(14827), 1, + ACTIONS(15204), 1, anon_sym_EQ, - STATE(3601), 1, + STATE(3735), 1, sym_template_argument_list, - STATE(9388), 2, + STATE(9548), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343910] = 9, + [344814] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, - anon_sym_operator, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(14799), 1, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13945), 1, + anon_sym_LBRACK, + ACTIONS(15206), 1, + anon_sym_SEMI, + STATE(4586), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344840] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13945), 1, + anon_sym_LBRACK, + ACTIONS(15208), 1, + anon_sym_RPAREN, + STATE(4586), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344866] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15210), 1, sym_identifier, - STATE(3617), 1, - sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(5604), 1, - sym_template_method, - STATE(10116), 1, - sym_splice_specifier, - STATE(10202), 1, - sym_operator_name, - [343938] = 8, + ACTIONS(15215), 1, + aux_sym_preproc_elif_token1, + STATE(9072), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(10856), 1, + sym_enumerator, + ACTIONS(15213), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [344888] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(4883), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10204), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [344910] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(14829), 1, + ACTIONS(15217), 1, anon_sym_SEMI, - STATE(4494), 1, + STATE(4586), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343964] = 8, + [344936] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(14831), 1, + ACTIONS(15219), 1, anon_sym_SEMI, - STATE(4494), 1, + STATE(4586), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343990] = 8, + [344962] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - ACTIONS(14833), 1, - anon_sym_SEMI, - ACTIONS(14835), 1, - anon_sym_EQ, - STATE(3601), 1, - sym_template_argument_list, - STATE(9420), 2, + ACTIONS(14245), 1, + anon_sym_DASH_GT, + ACTIONS(14247), 1, + anon_sym_requires, + ACTIONS(14381), 1, + anon_sym_LBRACE, + STATE(10012), 1, + sym_trailing_return_type, + STATE(11133), 1, + sym_requires_clause, + STATE(9027), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344016] = 8, + [344988] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, + ACTIONS(13945), 1, anon_sym_LBRACK, - ACTIONS(14837), 1, + ACTIONS(15221), 1, anon_sym_SEMI, - STATE(4494), 1, + STATE(4586), 1, sym_parameter_list, - STATE(8470), 1, + STATE(8572), 1, sym__function_declarator_seq, - STATE(8286), 2, + STATE(8367), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344042] = 4, + [345014] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14839), 1, - anon_sym_LPAREN2, - STATE(9015), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(14841), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [344059] = 7, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15117), 1, + sym_identifier, + STATE(3739), 1, + sym_template_type, + STATE(3798), 1, + sym_template_method, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(10254), 1, + sym_operator_name, + STATE(10302), 1, + sym_splice_specifier, + [345042] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8929), 1, - anon_sym_LBRACK, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14843), 1, + ACTIONS(13803), 1, + anon_sym_LBRACK, + ACTIONS(14642), 1, anon_sym_RPAREN, - STATE(3121), 1, + STATE(4586), 1, sym_parameter_list, - STATE(8366), 2, + STATE(8856), 1, + sym__function_declarator_seq, + STATE(8678), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344082] = 4, + [345068] = 7, ACTIONS(3), 1, sym_comment, - STATE(8848), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6800), 2, + ACTIONS(10206), 1, + anon_sym___attribute, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(5340), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10204), 3, anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(14662), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [344099] = 7, + anon_sym_RPAREN, + anon_sym___attribute__, + [345092] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(9306), 1, + anon_sym_LBRACK, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, - anon_sym_LBRACK, - STATE(4494), 1, + ACTIONS(15223), 1, + anon_sym_RPAREN, + STATE(3140), 1, sym_parameter_list, - STATE(8470), 1, - sym__function_declarator_seq, - STATE(8286), 2, + STATE(8473), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344122] = 7, + [345115] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8929), 1, + ACTIONS(9306), 1, anon_sym_LBRACK, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14845), 1, + ACTIONS(15225), 1, anon_sym_RPAREN, - STATE(3121), 1, + STATE(3140), 1, sym_parameter_list, - STATE(8366), 2, + STATE(8473), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344145] = 8, + [345138] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6220), 1, - anon_sym_LT, - ACTIONS(14847), 1, - sym_identifier, - STATE(991), 1, - sym_template_parameter_list, - STATE(3617), 1, - sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(10418), 1, - sym_splice_specifier, - [344170] = 7, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(5222), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10172), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [345159] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(171), 1, - anon_sym_LBRACK_COLON, - ACTIONS(14674), 1, + ACTIONS(9333), 1, + anon_sym___attribute, + ACTIONS(15227), 1, + anon_sym_EQ, + ACTIONS(9335), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [345176] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15229), 1, + anon_sym_LBRACK, + ACTIONS(15232), 1, + anon_sym_EQ, + ACTIONS(15234), 1, + anon_sym_DOT, + STATE(9085), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [345195] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7361), 1, + anon_sym_LBRACE, + ACTIONS(15058), 1, anon_sym_COLON_COLON, - ACTIONS(14676), 1, + ACTIONS(15060), 1, anon_sym_inline, - ACTIONS(14849), 1, + ACTIONS(15237), 1, sym_identifier, - STATE(11021), 1, - sym__namespace_specifier, - STATE(10977), 2, + STATE(672), 1, + sym_declaration_list, + STATE(10448), 1, sym_nested_namespace_specifier, - sym_splice_specifier, - [344193] = 4, + STATE(11515), 1, + sym__namespace_specifier, + [345220] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, + anon_sym_LT, + ACTIONS(12755), 1, + anon_sym_LPAREN2, + STATE(3709), 1, + sym_template_argument_list, + STATE(9741), 2, + sym_argument_list, + sym_initializer_list, + [345243] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8955), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(14851), 1, - anon_sym_EQ, - ACTIONS(8957), 5, + ACTIONS(12119), 1, + anon_sym___attribute__, + STATE(9021), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(15239), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - [344210] = 8, + anon_sym_GT2, + [345262] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7021), 1, - anon_sym_LBRACE, - ACTIONS(14674), 1, - anon_sym_COLON_COLON, - ACTIONS(14676), 1, - anon_sym_inline, - ACTIONS(14694), 1, + ACTIONS(15243), 1, + anon_sym_COMMA, + ACTIONS(15245), 1, + aux_sym_preproc_elif_token1, + ACTIONS(15241), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_identifier, - STATE(827), 1, - sym_declaration_list, - STATE(10376), 1, - sym_nested_namespace_specifier, - STATE(11021), 1, - sym__namespace_specifier, - [344235] = 6, + [345279] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6123), 1, + ACTIONS(6491), 1, anon_sym___attribute, - ACTIONS(6125), 1, + ACTIONS(6493), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6150), 1, + ACTIONS(6534), 1, anon_sym___attribute__, - STATE(2839), 2, + STATE(2902), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(3141), 2, + STATE(3129), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344256] = 6, + [345300] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4969), 1, + STATE(5222), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9850), 3, + ACTIONS(10188), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - [344277] = 8, + [345321] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(13945), 1, + anon_sym_LBRACK, + STATE(4586), 1, + sym_parameter_list, + STATE(8572), 1, + sym__function_declarator_seq, + STATE(8367), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [345344] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(6220), 1, + ACTIONS(6584), 1, anon_sym_LT, - ACTIONS(14847), 1, + ACTIONS(15247), 1, sym_identifier, - STATE(992), 1, + STATE(1099), 1, sym_template_parameter_list, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [344302] = 8, + [345369] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7015), 1, - anon_sym_LBRACE, - ACTIONS(14674), 1, + ACTIONS(171), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15058), 1, anon_sym_COLON_COLON, - ACTIONS(14676), 1, + ACTIONS(15060), 1, anon_sym_inline, - ACTIONS(14853), 1, + ACTIONS(15249), 1, sym_identifier, - STATE(428), 1, - sym_declaration_list, - STATE(10276), 1, - sym_nested_namespace_specifier, - STATE(11021), 1, + STATE(11515), 1, sym__namespace_specifier, - [344327] = 6, + STATE(11298), 2, + sym_nested_namespace_specifier, + sym_splice_specifier, + [345392] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4969), 1, + STATE(5222), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9854), 3, + ACTIONS(10192), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - [344348] = 6, + [345413] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(4969), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9858), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [344369] = 8, + ACTIONS(7816), 1, + anon_sym___attribute__, + ACTIONS(7818), 1, + anon_sym___attribute, + ACTIONS(7820), 1, + anon_sym_LBRACK_LBRACK, + STATE(6154), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6408), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [345434] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(6220), 1, + ACTIONS(6584), 1, anon_sym_LT, - ACTIONS(14847), 1, + ACTIONS(15247), 1, sym_identifier, - STATE(996), 1, + STATE(1100), 1, sym_template_parameter_list, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [344394] = 6, + [345459] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4969), 1, + STATE(5222), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9862), 3, + ACTIONS(10196), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - [344415] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14855), 1, - anon_sym_LBRACK, - ACTIONS(14858), 1, - anon_sym_EQ, - ACTIONS(14860), 1, - anon_sym_DOT, - STATE(8971), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [344434] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6410), 1, - anon_sym___attribute__, - ACTIONS(6412), 1, - anon_sym___attribute, - ACTIONS(6414), 1, - anon_sym_LBRACK_LBRACK, - STATE(4244), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4745), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [344455] = 8, + [345480] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(6220), 1, + ACTIONS(6584), 1, anon_sym_LT, - ACTIONS(14847), 1, + ACTIONS(15247), 1, sym_identifier, - STATE(995), 1, - sym_template_parameter_list, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(9344), 1, + sym_template_parameter_list, + STATE(10302), 1, sym_splice_specifier, - [344480] = 7, + [345505] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(171), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(14674), 1, - anon_sym_COLON_COLON, - ACTIONS(14676), 1, - anon_sym_inline, - ACTIONS(14863), 1, + ACTIONS(6584), 1, + anon_sym_LT, + ACTIONS(15247), 1, sym_identifier, - STATE(11021), 1, - sym__namespace_specifier, - STATE(10852), 2, - sym_nested_namespace_specifier, + STATE(1096), 1, + sym_template_parameter_list, + STATE(3739), 1, + sym_template_type, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(10302), 1, sym_splice_specifier, - [344503] = 7, + [345530] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(171), 1, - anon_sym_LBRACK_COLON, - ACTIONS(14674), 1, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(5222), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10200), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [345551] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7395), 1, + anon_sym_LBRACE, + ACTIONS(15058), 1, anon_sym_COLON_COLON, - ACTIONS(14676), 1, + ACTIONS(15060), 1, anon_sym_inline, - ACTIONS(14865), 1, + ACTIONS(15251), 1, sym_identifier, - STATE(11021), 1, - sym__namespace_specifier, - STATE(10933), 2, + STATE(449), 1, + sym_declaration_list, + STATE(10330), 1, sym_nested_namespace_specifier, - sym_splice_specifier, - [344526] = 6, + STATE(11515), 1, + sym__namespace_specifier, + [345576] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7497), 1, - anon_sym___attribute__, - ACTIONS(7499), 1, - anon_sym___attribute, - ACTIONS(7501), 1, + ACTIONS(9306), 1, + anon_sym_LBRACK, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - STATE(6081), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6297), 2, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(15253), 1, + anon_sym_RPAREN, + STATE(3140), 1, + sym_parameter_list, + STATE(8473), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344547] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14867), 1, - anon_sym_LPAREN2, - STATE(8977), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(14869), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [344564] = 7, + [345599] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8929), 1, + ACTIONS(9306), 1, anon_sym_LBRACK, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14872), 1, + ACTIONS(15255), 1, anon_sym_RPAREN, - STATE(3121), 1, + STATE(3140), 1, sym_parameter_list, - STATE(8366), 2, + STATE(8473), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344587] = 4, + [345622] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14874), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - STATE(8977), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(14841), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [344604] = 6, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(5222), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10204), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [345643] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6282), 1, - anon_sym___attribute__, - ACTIONS(6284), 1, - anon_sym___attribute, - ACTIONS(6286), 1, - anon_sym_LBRACK_LBRACK, - STATE(4002), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4363), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [344625] = 7, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(5222), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10208), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [345664] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8929), 1, + ACTIONS(9306), 1, anon_sym_LBRACK, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14876), 1, + ACTIONS(15257), 1, anon_sym_RPAREN, - STATE(3121), 1, + STATE(3140), 1, sym_parameter_list, - STATE(8366), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [344648] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10254), 1, - anon_sym___attribute__, - ACTIONS(10256), 1, - anon_sym___attribute, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - STATE(7796), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(7916), 2, + STATE(8473), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344669] = 8, + [345687] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(6220), 1, + ACTIONS(6584), 1, anon_sym_LT, - ACTIONS(14847), 1, + ACTIONS(15247), 1, sym_identifier, - STATE(997), 1, + STATE(1098), 1, sym_template_parameter_list, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [344694] = 5, + [345712] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(11779), 1, - anon_sym___attribute__, - STATE(8921), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(14878), 3, - anon_sym_COMMA, + ACTIONS(9306), 1, + anon_sym_LBRACK, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(15259), 1, anon_sym_RPAREN, - anon_sym_GT2, - [344713] = 5, + STATE(3140), 1, + sym_parameter_list, + STATE(8473), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [345735] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(7369), 1, + anon_sym_LBRACE, + ACTIONS(15058), 1, + anon_sym_COLON_COLON, + ACTIONS(15060), 1, + anon_sym_inline, + ACTIONS(15261), 1, + sym_identifier, + STATE(868), 1, + sym_declaration_list, + STATE(10599), 1, + sym_nested_namespace_specifier, + STATE(11515), 1, + sym__namespace_specifier, + [345760] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(171), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15058), 1, + anon_sym_COLON_COLON, + ACTIONS(15060), 1, + anon_sym_inline, + ACTIONS(15263), 1, + sym_identifier, + STATE(11515), 1, + sym__namespace_specifier, + STATE(10961), 2, + sym_nested_namespace_specifier, + sym_splice_specifier, + [345783] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6681), 1, anon_sym___attribute__, - STATE(8921), 2, + ACTIONS(6683), 1, + anon_sym___attribute, + ACTIONS(6685), 1, + anon_sym_LBRACK_LBRACK, + STATE(4251), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(14878), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [344732] = 4, + STATE(4587), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [345804] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14882), 1, - anon_sym_COMMA, - ACTIONS(14884), 1, - aux_sym_preproc_elif_token1, - ACTIONS(14880), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(7373), 1, + anon_sym_LBRACE, + ACTIONS(15058), 1, + anon_sym_COLON_COLON, + ACTIONS(15060), 1, + anon_sym_inline, + ACTIONS(15265), 1, sym_identifier, - [344749] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(4969), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9838), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [344770] = 7, + STATE(830), 1, + sym_declaration_list, + STATE(10229), 1, + sym_nested_namespace_specifier, + STATE(11515), 1, + sym__namespace_specifier, + [345829] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8929), 1, + ACTIONS(9306), 1, anon_sym_LBRACK, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14886), 1, + ACTIONS(15267), 1, anon_sym_RPAREN, - STATE(3121), 1, + STATE(3140), 1, sym_parameter_list, - STATE(8366), 2, + STATE(8473), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344793] = 7, + [345852] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8929), 1, - anon_sym_LBRACK, - ACTIONS(10435), 1, + ACTIONS(6764), 1, + anon_sym___attribute__, + ACTIONS(6766), 1, + anon_sym___attribute, + ACTIONS(6768), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14888), 1, - anon_sym_RPAREN, - STATE(3121), 1, - sym_parameter_list, - STATE(8366), 2, + STATE(4371), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5004), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344816] = 8, + [345873] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 1, + ACTIONS(7395), 1, anon_sym_LBRACE, - ACTIONS(14674), 1, + ACTIONS(15058), 1, anon_sym_COLON_COLON, - ACTIONS(14676), 1, + ACTIONS(15060), 1, anon_sym_inline, - ACTIONS(14890), 1, + ACTIONS(15062), 1, sym_identifier, - STATE(613), 1, + STATE(424), 1, sym_declaration_list, - STATE(10109), 1, + STATE(10570), 1, sym_nested_namespace_specifier, - STATE(11021), 1, + STATE(11515), 1, sym__namespace_specifier, - [344841] = 4, + [345898] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14892), 1, + ACTIONS(15269), 1, anon_sym_LPAREN2, - STATE(8993), 2, + STATE(9118), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(14841), 4, + ACTIONS(15271), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [344858] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6859), 1, - anon_sym___attribute, - ACTIONS(6861), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6906), 1, - anon_sym___attribute__, - STATE(4372), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4623), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [344879] = 4, + [345915] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14894), 1, + ACTIONS(15273), 1, anon_sym_LPAREN2, - STATE(8977), 2, + STATE(9157), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(14841), 4, + ACTIONS(15271), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [344896] = 7, + [345932] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(10145), 1, + ACTIONS(10554), 1, anon_sym_LBRACE, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - STATE(4750), 1, + STATE(4799), 1, sym_attribute_specifier, - STATE(9225), 1, + STATE(9337), 1, sym_enumerator_list, - ACTIONS(6987), 2, + ACTIONS(7389), 2, anon_sym_COMMA, anon_sym_GT2, - [344919] = 6, + [345955] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 1, - anon_sym___attribute__, - ACTIONS(7443), 1, + ACTIONS(9333), 1, anon_sym___attribute, - ACTIONS(7445), 1, + ACTIONS(15275), 1, + anon_sym_EQ, + ACTIONS(9335), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + [345972] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9306), 1, + anon_sym_LBRACK, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - STATE(6060), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6295), 2, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(15277), 1, + anon_sym_RPAREN, + STATE(3140), 1, + sym_parameter_list, + STATE(8473), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [345995] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9306), 1, + anon_sym_LBRACK, + ACTIONS(10817), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(15279), 1, + anon_sym_RPAREN, + STATE(3140), 1, + sym_parameter_list, + STATE(8473), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344940] = 7, + [346018] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(10145), 1, + ACTIONS(10554), 1, anon_sym_LBRACE, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - STATE(4810), 1, + STATE(5003), 1, sym_attribute_specifier, - STATE(9231), 1, + STATE(9341), 1, sym_enumerator_list, - ACTIONS(7013), 2, + ACTIONS(7383), 2, anon_sym_COMMA, anon_sym_GT2, - [344963] = 6, + [346041] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6326), 1, + ACTIONS(10582), 1, anon_sym___attribute__, - ACTIONS(6328), 1, + ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(6330), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - STATE(4078), 2, + STATE(7950), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4504), 2, + STATE(8005), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344984] = 7, + [346062] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(171), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15058), 1, anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - ACTIONS(14764), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(14896), 1, - anon_sym_EQ, - STATE(3601), 1, - sym_template_argument_list, - ACTIONS(9217), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [345007] = 6, + ACTIONS(15060), 1, + anon_sym_inline, + ACTIONS(15281), 1, + sym_identifier, + STATE(11515), 1, + sym__namespace_specifier, + STATE(11659), 2, + sym_nested_namespace_specifier, + sym_splice_specifier, + [346085] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6361), 1, - anon_sym___attribute__, - ACTIONS(6363), 1, - anon_sym___attribute, - ACTIONS(6365), 1, - anon_sym_LBRACK_LBRACK, - STATE(4160), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4480), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [345028] = 4, + ACTIONS(15283), 1, + anon_sym_LPAREN2, + STATE(9149), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(15271), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [346102] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8955), 1, - anon_sym___attribute, - ACTIONS(14898), 1, - anon_sym_EQ, - ACTIONS(8957), 5, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [345045] = 7, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6584), 1, + anon_sym_LT, + ACTIONS(15247), 1, + sym_identifier, + STATE(1095), 1, + sym_template_parameter_list, + STATE(3739), 1, + sym_template_type, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(10302), 1, + sym_splice_specifier, + [346127] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8929), 1, - anon_sym_LBRACK, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14900), 1, - anon_sym_RPAREN, - STATE(3121), 1, - sym_parameter_list, - STATE(8366), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [345068] = 7, + ACTIONS(171), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15058), 1, + anon_sym_COLON_COLON, + ACTIONS(15060), 1, + anon_sym_inline, + ACTIONS(15285), 1, + sym_identifier, + STATE(11515), 1, + sym__namespace_specifier, + STATE(11292), 2, + sym_nested_namespace_specifier, + sym_splice_specifier, + [346150] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8929), 1, - anon_sym_LBRACK, - ACTIONS(10435), 1, + ACTIONS(6646), 1, + anon_sym___attribute__, + ACTIONS(6648), 1, + anon_sym___attribute, + ACTIONS(6650), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14902), 1, - anon_sym_RPAREN, - STATE(3121), 1, - sym_parameter_list, - STATE(8366), 2, + STATE(4061), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4488), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [345091] = 7, + [346171] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8929), 1, + ACTIONS(9306), 1, anon_sym_LBRACK, - ACTIONS(10435), 1, + ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14904), 1, + ACTIONS(15287), 1, anon_sym_RPAREN, - STATE(3121), 1, + STATE(3140), 1, sym_parameter_list, - STATE(8366), 2, + STATE(8473), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [345114] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6983), 1, - anon_sym_LBRACE, - ACTIONS(14674), 1, - anon_sym_COLON_COLON, - ACTIONS(14676), 1, - anon_sym_inline, - ACTIONS(14906), 1, - sym_identifier, - STATE(808), 1, - sym_declaration_list, - STATE(10425), 1, - sym_nested_namespace_specifier, - STATE(11021), 1, - sym__namespace_specifier, - [345139] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6983), 1, - anon_sym_LBRACE, - ACTIONS(14674), 1, - anon_sym_COLON_COLON, - ACTIONS(14676), 1, - anon_sym_inline, - ACTIONS(14714), 1, - sym_identifier, - STATE(915), 1, - sym_declaration_list, - STATE(10121), 1, - sym_nested_namespace_specifier, - STATE(11021), 1, - sym__namespace_specifier, - [345164] = 4, + [346194] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14908), 1, + ACTIONS(15289), 1, anon_sym_LPAREN2, - STATE(9007), 2, + STATE(9132), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(14841), 4, + ACTIONS(15271), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [345181] = 4, + [346211] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14910), 1, + ACTIONS(15291), 1, anon_sym_LPAREN2, - STATE(8977), 2, + STATE(9157), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(14841), 4, + ACTIONS(15271), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [345198] = 4, + [346228] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7884), 1, + anon_sym___attribute__, + ACTIONS(7886), 1, + anon_sym___attribute, + ACTIONS(7888), 1, + anon_sym_LBRACK_LBRACK, + STATE(6165), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6395), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [346249] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7176), 1, + anon_sym___attribute__, + ACTIONS(7178), 1, + anon_sym___attribute, + ACTIONS(7180), 1, + anon_sym_LBRACK_LBRACK, + STATE(4483), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4648), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [346270] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14912), 1, + ACTIONS(15293), 1, anon_sym_LPAREN2, - STATE(9009), 2, + STATE(9136), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(14841), 4, + ACTIONS(15271), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [345215] = 4, + [346287] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14914), 1, + ACTIONS(15295), 1, anon_sym_LPAREN2, - STATE(8977), 2, + STATE(9157), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(14841), 4, + ACTIONS(15271), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [345232] = 4, + [346304] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14916), 1, + ACTIONS(15297), 1, anon_sym_LPAREN2, - STATE(9011), 2, + STATE(9138), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(14841), 4, + ACTIONS(15271), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [345249] = 4, + [346321] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14918), 1, + ACTIONS(15299), 1, anon_sym_LPAREN2, - STATE(8977), 2, + STATE(9157), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(14841), 4, + ACTIONS(15271), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [345266] = 4, + [346338] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14920), 1, + ACTIONS(15301), 1, anon_sym_LPAREN2, - STATE(9013), 2, + STATE(9140), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(14841), 4, + ACTIONS(15271), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [345283] = 4, + [346355] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14922), 1, + ACTIONS(15303), 1, anon_sym_LPAREN2, - STATE(8977), 2, + STATE(9157), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(14841), 4, + ACTIONS(15271), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [345300] = 8, + [346372] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7021), 1, - anon_sym_LBRACE, - ACTIONS(14674), 1, - anon_sym_COLON_COLON, - ACTIONS(14676), 1, + ACTIONS(15305), 1, + anon_sym_LPAREN2, + STATE(9142), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(15271), 4, anon_sym_inline, - ACTIONS(14924), 1, - sym_identifier, - STATE(845), 1, - sym_declaration_list, - STATE(10420), 1, - sym_nested_namespace_specifier, - STATE(11021), 1, - sym__namespace_specifier, - [345325] = 4, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [346389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14926), 1, + ACTIONS(15307), 1, anon_sym_LPAREN2, - STATE(8977), 2, + STATE(9157), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(14841), 4, + ACTIONS(15271), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [345342] = 4, + [346406] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14928), 1, + ACTIONS(15309), 1, anon_sym_LPAREN2, - STATE(9017), 2, + STATE(9145), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(14841), 4, + ACTIONS(15271), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [345359] = 4, + [346423] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6584), 1, + anon_sym_LT, + ACTIONS(15247), 1, + sym_identifier, + STATE(1094), 1, + sym_template_parameter_list, + STATE(3739), 1, + sym_template_type, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(10302), 1, + sym_splice_specifier, + [346448] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14930), 1, + ACTIONS(15311), 1, anon_sym_LPAREN2, - STATE(8977), 2, + STATE(9157), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(14841), 4, + ACTIONS(15271), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [345376] = 4, + [346465] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14932), 1, + ACTIONS(15313), 1, anon_sym_LPAREN2, - STATE(9019), 2, + STATE(9147), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(14841), 4, + ACTIONS(15271), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [345393] = 4, + [346482] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14934), 1, + ACTIONS(15315), 1, anon_sym_LPAREN2, - STATE(8977), 2, + STATE(9157), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(14841), 4, + ACTIONS(15271), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [345410] = 8, + [346499] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6220), 1, - anon_sym_LT, - ACTIONS(14847), 1, + ACTIONS(7369), 1, + anon_sym_LBRACE, + ACTIONS(15058), 1, + anon_sym_COLON_COLON, + ACTIONS(15060), 1, + anon_sym_inline, + ACTIONS(15088), 1, sym_identifier, - STATE(994), 1, - sym_template_parameter_list, - STATE(3617), 1, - sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(10418), 1, - sym_splice_specifier, - [345435] = 6, + STATE(939), 1, + sym_declaration_list, + STATE(10428), 1, + sym_nested_namespace_specifier, + STATE(11515), 1, + sym__namespace_specifier, + [346524] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(15317), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(4969), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9832), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [345456] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6220), 1, - anon_sym_LT, - ACTIONS(14847), 1, - sym_identifier, - STATE(993), 1, - sym_template_parameter_list, - STATE(3617), 1, - sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(10418), 1, - sym_splice_specifier, - [345481] = 7, + STATE(9157), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(15271), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [346541] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - ACTIONS(14764), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(14769), 1, - anon_sym_EQ, - STATE(3601), 1, - sym_template_argument_list, - ACTIONS(9146), 2, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12119), 1, + anon_sym___attribute__, + STATE(9021), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(15319), 3, anon_sym_COMMA, - anon_sym_RBRACK, - [345504] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8929), 1, - anon_sym_LBRACK, - ACTIONS(10435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14936), 1, anon_sym_RPAREN, - STATE(3121), 1, - sym_parameter_list, - STATE(8366), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [345527] = 5, + anon_sym_GT2, + [346560] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - STATE(8921), 2, + STATE(9021), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(14938), 3, + ACTIONS(15319), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_GT2, - [345546] = 7, + [346579] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(171), 1, - anon_sym_LBRACK_COLON, - ACTIONS(14674), 1, - anon_sym_COLON_COLON, - ACTIONS(14676), 1, - anon_sym_inline, - ACTIONS(14940), 1, - sym_identifier, - STATE(11021), 1, - sym__namespace_specifier, - STATE(11005), 2, - sym_nested_namespace_specifier, - sym_splice_specifier, - [345569] = 6, + ACTIONS(15321), 1, + anon_sym_LBRACK, + ACTIONS(15323), 1, + anon_sym_EQ, + ACTIONS(15325), 1, + anon_sym_DOT, + STATE(9085), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [346598] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(6719), 1, + anon_sym___attribute__, + ACTIONS(6721), 1, + anon_sym___attribute, + ACTIONS(6723), 1, + anon_sym_LBRACK_LBRACK, + STATE(4178), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4563), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [346619] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4969), 1, + STATE(5222), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9846), 3, + ACTIONS(10184), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - [345590] = 8, + [346640] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(14674), 1, + ACTIONS(5655), 1, anon_sym_COLON_COLON, - ACTIONS(14676), 1, - anon_sym_inline, - ACTIONS(14696), 1, - sym_identifier, - STATE(623), 1, - sym_declaration_list, - STATE(10432), 1, - sym_nested_namespace_specifier, - STATE(11021), 1, - sym__namespace_specifier, - [345615] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6220), 1, + ACTIONS(10005), 1, anon_sym_LT, - ACTIONS(14847), 1, - sym_identifier, - STATE(3617), 1, - sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(9257), 1, - sym_template_parameter_list, - STATE(10418), 1, - sym_splice_specifier, - [345640] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14942), 1, - anon_sym_LBRACK, - ACTIONS(14944), 1, + ACTIONS(15149), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15154), 1, anon_sym_EQ, - ACTIONS(14946), 1, - anon_sym_DOT, - STATE(8971), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [345659] = 6, + STATE(3735), 1, + sym_template_argument_list, + ACTIONS(9539), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [346663] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(4969), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9842), 3, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, + anon_sym_LT, + ACTIONS(15149), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(15327), 1, + anon_sym_EQ, + STATE(3735), 1, + sym_template_argument_list, + ACTIONS(9544), 2, anon_sym_COMMA, - anon_sym_GT2, - [345680] = 4, + anon_sym_RBRACK, + [346686] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14948), 1, + ACTIONS(15329), 1, anon_sym_LPAREN2, - STATE(8979), 2, + STATE(9157), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(14841), 4, + ACTIONS(15331), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [345697] = 8, + [346703] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7015), 1, + ACTIONS(7373), 1, anon_sym_LBRACE, - ACTIONS(14674), 1, + ACTIONS(15056), 1, + sym_identifier, + ACTIONS(15058), 1, anon_sym_COLON_COLON, - ACTIONS(14676), 1, + ACTIONS(15060), 1, anon_sym_inline, - ACTIONS(14678), 1, - sym_identifier, - STATE(475), 1, + STATE(827), 1, sym_declaration_list, - STATE(10140), 1, + STATE(10533), 1, sym_nested_namespace_specifier, - STATE(11021), 1, + STATE(11515), 1, sym__namespace_specifier, - [345722] = 7, + [346728] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(7361), 1, anon_sym_LBRACE, - ACTIONS(5270), 1, + ACTIONS(15058), 1, anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - ACTIONS(12383), 1, - anon_sym_LPAREN2, - STATE(3605), 1, - sym_template_argument_list, - STATE(10031), 2, - sym_argument_list, - sym_initializer_list, - [345745] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14788), 1, - aux_sym_preproc_elif_token1, - ACTIONS(14786), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(15060), 1, + anon_sym_inline, + ACTIONS(15074), 1, sym_identifier, - [345759] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - ACTIONS(14103), 1, - anon_sym_LBRACE, - STATE(10995), 1, - sym_trailing_return_type, - STATE(7823), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [345779] = 7, + STATE(656), 1, + sym_declaration_list, + STATE(10335), 1, + sym_nested_namespace_specifier, + STATE(11515), 1, + sym__namespace_specifier, + [346753] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(14950), 1, + ACTIONS(6584), 1, + anon_sym_LT, + ACTIONS(15247), 1, sym_identifier, - STATE(3617), 1, + STATE(1097), 1, + sym_template_parameter_list, + STATE(3739), 1, sym_template_type, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(8429), 1, - sym_template_function, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [345801] = 7, + [346778] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(14952), 1, - sym_identifier, - STATE(2447), 1, - sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(5722), 1, - sym_template_function, - STATE(10418), 1, - sym_splice_specifier, - [345823] = 7, + STATE(8968), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7225), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(15024), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [346795] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(14954), 1, + ACTIONS(15334), 1, sym_identifier, - STATE(3617), 1, + ACTIONS(15336), 1, + anon_sym_for, + STATE(3739), 1, sym_template_type, - STATE(3776), 1, - sym_template_function, - STATE(5162), 1, + STATE(5903), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(10214), 1, sym_splice_specifier, - [345845] = 7, + [346817] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(14956), 1, + ACTIONS(15338), 1, sym_identifier, - STATE(3617), 1, + STATE(3498), 1, sym_template_type, - STATE(3900), 1, + STATE(3931), 1, sym_template_function, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [345867] = 7, + [346839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(14958), 1, + ACTIONS(15215), 1, + aux_sym_preproc_elif_token1, + ACTIONS(15213), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_identifier, - STATE(2441), 1, - sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(5695), 1, - sym_template_function, - STATE(10418), 1, - sym_splice_specifier, - [345889] = 6, + [346853] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, + ACTIONS(960), 1, anon_sym_LBRACE, - ACTIONS(13696), 1, + ACTIONS(13995), 1, anon_sym_try, - ACTIONS(14960), 1, + ACTIONS(15340), 1, anon_sym_SEMI, - ACTIONS(14962), 1, + ACTIONS(15342), 1, anon_sym_EQ, - STATE(419), 2, + STATE(825), 2, sym_compound_statement, sym_try_statement, - [345909] = 7, + [346873] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(14964), 1, + ACTIONS(15344), 1, sym_identifier, - ACTIONS(14966), 1, - anon_sym_for, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(5678), 1, + STATE(5311), 1, + sym_template_function, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10404), 1, + STATE(10302), 1, sym_splice_specifier, - [345931] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14968), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(14970), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [345945] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - ACTIONS(14972), 1, - anon_sym_LBRACE, - STATE(11027), 1, - sym_trailing_return_type, - STATE(7823), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [345965] = 6, + [346895] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(10572), 1, anon_sym_LBRACE, - ACTIONS(13690), 1, + ACTIONS(13819), 1, anon_sym_try, - ACTIONS(14974), 1, + ACTIONS(15346), 1, anon_sym_SEMI, - ACTIONS(14976), 1, + ACTIONS(15348), 1, anon_sym_EQ, - STATE(756), 2, + STATE(3468), 2, sym_compound_statement, sym_try_statement, - [345985] = 3, + [346915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14980), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(14978), 4, - anon_sym_virtual, + ACTIONS(15350), 2, + anon_sym_RBRACE, sym_identifier, - anon_sym_decltype, - anon_sym_template, - [345999] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10215), 1, - anon_sym_LBRACE, - ACTIONS(13473), 1, - anon_sym_try, - ACTIONS(14982), 1, - anon_sym_SEMI, - ACTIONS(14984), 1, - anon_sym_EQ, - STATE(3325), 2, - sym_compound_statement, - sym_try_statement, - [346019] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1162), 1, - anon_sym_LBRACE, - ACTIONS(13656), 1, - anon_sym_try, - ACTIONS(14986), 1, - anon_sym_SEMI, - ACTIONS(14988), 1, - anon_sym_EQ, - STATE(877), 2, - sym_compound_statement, - sym_try_statement, - [346039] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10232), 1, - anon_sym_LBRACE, - ACTIONS(13447), 1, - anon_sym_try, - ACTIONS(14990), 1, - anon_sym_SEMI, - ACTIONS(14992), 1, - anon_sym_EQ, - STATE(2713), 2, - sym_compound_statement, - sym_try_statement, - [346059] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - ACTIONS(13919), 1, - anon_sym_LBRACE, - STATE(10537), 1, - sym_trailing_return_type, - STATE(9036), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [346079] = 3, + ACTIONS(15352), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [346929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14994), 2, + ACTIONS(15012), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(14996), 4, + ACTIONS(15354), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [346093] = 7, + [346943] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(14998), 1, + ACTIONS(15356), 1, sym_identifier, - STATE(3456), 1, + STATE(2086), 1, sym_template_type, - STATE(3776), 1, + STATE(3931), 1, sym_template_function, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [346115] = 7, + [346965] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15000), 1, + ACTIONS(15358), 1, sym_identifier, - STATE(2608), 1, + STATE(3739), 1, sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(5548), 1, + STATE(4027), 1, sym_template_function, - STATE(10418), 1, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(10302), 1, sym_splice_specifier, - [346137] = 3, + [346987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15002), 2, + ACTIONS(15360), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(15004), 4, + ACTIONS(15362), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [346151] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15006), 1, - sym_identifier, - STATE(2392), 1, - sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(5548), 1, - sym_template_function, - STATE(10418), 1, - sym_splice_specifier, - [346173] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(5441), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9832), 2, - anon_sym_LBRACE, - anon_sym_requires, - [346193] = 7, + [347001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15008), 1, + ACTIONS(15364), 2, + anon_sym_RBRACE, sym_identifier, - STATE(2681), 1, - sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(5177), 1, - sym_template_function, - STATE(10418), 1, - sym_splice_specifier, - [346215] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(5441), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9846), 2, - anon_sym_LBRACE, - anon_sym_requires, - [346235] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(13690), 1, - anon_sym_try, - ACTIONS(15010), 1, - anon_sym_SEMI, - ACTIONS(15012), 1, - anon_sym_EQ, - STATE(761), 2, - sym_compound_statement, - sym_try_statement, - [346255] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14258), 1, - anon_sym_LT, - ACTIONS(14491), 1, - anon_sym_LBRACK, - STATE(8713), 1, - sym_template_argument_list, - ACTIONS(14487), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [346273] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(14505), 1, - anon_sym_decltype, - ACTIONS(15014), 1, - sym_auto, - STATE(4817), 1, - sym_decltype_auto, - ACTIONS(6800), 2, - anon_sym_COMMA, - anon_sym_GT2, - [346293] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14258), 1, - anon_sym_LT, - ACTIONS(14497), 1, - anon_sym_LBRACK, - STATE(8722), 1, - sym_template_argument_list, - ACTIONS(14495), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [346311] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10271), 1, - anon_sym_LBRACE, - ACTIONS(13455), 1, - anon_sym_try, - ACTIONS(15016), 1, - anon_sym_SEMI, - ACTIONS(15018), 1, - anon_sym_EQ, - STATE(3194), 2, - sym_compound_statement, - sym_try_statement, - [346331] = 7, + ACTIONS(15366), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [347015] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11751), 1, + ACTIONS(12091), 1, anon_sym_COMMA, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15020), 1, + ACTIONS(15368), 1, anon_sym_SEMI, - STATE(9084), 1, + STATE(9194), 1, aux_sym_field_declaration_repeat1, - STATE(11141), 1, + STATE(10873), 1, sym_attribute_specifier, - [346353] = 7, + [347037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15370), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(15372), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [347051] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11751), 1, + ACTIONS(12091), 1, anon_sym_COMMA, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15022), 1, + ACTIONS(15374), 1, anon_sym_SEMI, - STATE(9086), 1, + STATE(9209), 1, aux_sym_field_declaration_repeat1, - STATE(11150), 1, + STATE(10774), 1, sym_attribute_specifier, - [346375] = 7, + [347073] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11751), 1, + ACTIONS(12091), 1, anon_sym_COMMA, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15024), 1, + ACTIONS(15376), 1, anon_sym_SEMI, - STATE(9269), 1, + STATE(9182), 1, aux_sym_field_declaration_repeat1, - STATE(11161), 1, + STATE(11010), 1, sym_attribute_specifier, - [346397] = 7, + [347095] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15378), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(15380), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [347109] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15026), 1, + ACTIONS(15382), 1, sym_identifier, - STATE(2681), 1, + STATE(3739), 1, sym_template_type, - STATE(3776), 1, - sym_template_function, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(5558), 1, + sym_template_function, + STATE(10302), 1, sym_splice_specifier, - [346419] = 7, + [347131] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15028), 1, + ACTIONS(15384), 1, sym_identifier, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(3900), 1, + STATE(4027), 1, sym_template_function, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [346441] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(11394), 1, - sym_string_literal, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [346455] = 7, + [347153] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11751), 1, + ACTIONS(12091), 1, anon_sym_COMMA, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15030), 1, - anon_sym_SEMI, - STATE(9269), 1, - aux_sym_field_declaration_repeat1, - STATE(11000), 1, - sym_attribute_specifier, - [346477] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - ACTIONS(15032), 1, - anon_sym_LBRACE, - STATE(10718), 1, - sym_trailing_return_type, - STATE(7823), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [346497] = 3, + ACTIONS(15386), 1, + anon_sym_SEMI, + STATE(9282), 1, + aux_sym_field_declaration_repeat1, + STATE(10959), 1, + sym_attribute_specifier, + [347175] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14968), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(14970), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [346511] = 6, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12091), 1, + anon_sym_COMMA, + ACTIONS(12119), 1, + anon_sym___attribute__, + ACTIONS(15388), 1, + anon_sym_SEMI, + STATE(9282), 1, + aux_sym_field_declaration_repeat1, + STATE(10853), 1, + sym_attribute_specifier, + [347197] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, + ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13479), 1, + ACTIONS(13843), 1, anon_sym_DASH_GT, - ACTIONS(15032), 1, + ACTIONS(14464), 1, anon_sym_LBRACE, - STATE(10718), 1, + STATE(11685), 1, sym_trailing_return_type, - STATE(9045), 2, + STATE(7955), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [346531] = 6, + [347217] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(5441), 1, + STATE(5697), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9858), 2, + ACTIONS(10184), 2, anon_sym_LBRACE, anon_sym_requires, - [346551] = 6, + [347237] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12091), 1, + anon_sym_COMMA, + ACTIONS(12119), 1, + anon_sym___attribute__, + ACTIONS(15390), 1, + anon_sym_SEMI, + STATE(9282), 1, + aux_sym_field_declaration_repeat1, + STATE(11581), 1, + sym_attribute_specifier, + [347259] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, + ACTIONS(10572), 1, anon_sym_LBRACE, - ACTIONS(13696), 1, + ACTIONS(13819), 1, anon_sym_try, - ACTIONS(15034), 1, + ACTIONS(15392), 1, anon_sym_SEMI, - ACTIONS(15036), 1, + ACTIONS(15394), 1, anon_sym_EQ, - STATE(522), 2, + STATE(3482), 2, sym_compound_statement, sym_try_statement, - [346571] = 3, + [347279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14604), 2, + ACTIONS(15396), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(15038), 4, + ACTIONS(15398), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [346585] = 7, + [347293] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11751), 1, + ACTIONS(12091), 1, anon_sym_COMMA, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15040), 1, + ACTIONS(15400), 1, anon_sym_SEMI, - STATE(9107), 1, + STATE(9201), 1, aux_sym_field_declaration_repeat1, - STATE(10578), 1, + STATE(10950), 1, sym_attribute_specifier, - [346607] = 7, + [347315] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + ACTIONS(14464), 1, + anon_sym_LBRACE, + STATE(11685), 1, + sym_trailing_return_type, + STATE(9191), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [347335] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15042), 1, + ACTIONS(15402), 1, sym_identifier, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(3900), 1, + STATE(3931), 1, sym_template_function, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [346629] = 7, + [347357] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(11751), 1, - anon_sym_COMMA, - ACTIONS(11779), 1, - anon_sym___attribute__, - ACTIONS(15044), 1, - anon_sym_SEMI, - STATE(9269), 1, - aux_sym_field_declaration_repeat1, - STATE(10587), 1, - sym_attribute_specifier, - [346651] = 3, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + ACTIONS(15404), 1, + anon_sym_LBRACE, + STATE(10948), 1, + sym_trailing_return_type, + STATE(7955), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [347377] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15046), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(15048), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [346665] = 7, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + ACTIONS(15404), 1, + anon_sym_LBRACE, + STATE(10948), 1, + sym_trailing_return_type, + STATE(9271), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [347397] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11751), 1, + ACTIONS(12091), 1, anon_sym_COMMA, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15050), 1, + ACTIONS(15406), 1, anon_sym_SEMI, - STATE(9095), 1, + STATE(9213), 1, aux_sym_field_declaration_repeat1, - STATE(11207), 1, + STATE(11083), 1, sym_attribute_specifier, - [346687] = 7, + [347419] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11751), 1, + ACTIONS(12091), 1, anon_sym_COMMA, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15052), 1, + ACTIONS(15408), 1, anon_sym_SEMI, - STATE(9112), 1, + STATE(9282), 1, aux_sym_field_declaration_repeat1, - STATE(11344), 1, + STATE(10953), 1, sym_attribute_specifier, - [346709] = 7, + [347441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(11751), 1, - anon_sym_COMMA, - ACTIONS(11779), 1, - anon_sym___attribute__, - ACTIONS(15054), 1, - anon_sym_SEMI, - STATE(9269), 1, - aux_sym_field_declaration_repeat1, - STATE(11222), 1, - sym_attribute_specifier, - [346731] = 7, + ACTIONS(15410), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(15412), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [347455] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15056), 1, + ACTIONS(15414), 1, sym_identifier, - STATE(3617), 1, + STATE(4080), 1, sym_template_type, - STATE(3900), 1, - sym_template_function, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(5774), 1, + sym_template_function, + STATE(10302), 1, sym_splice_specifier, - [346753] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(11751), 1, - anon_sym_COMMA, - ACTIONS(11779), 1, - anon_sym___attribute__, - ACTIONS(15058), 1, - anon_sym_SEMI, - STATE(9269), 1, - aux_sym_field_declaration_repeat1, - STATE(11232), 1, - sym_attribute_specifier, - [346775] = 7, + [347477] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11751), 1, + ACTIONS(12091), 1, anon_sym_COMMA, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15060), 1, + ACTIONS(15416), 1, anon_sym_SEMI, - STATE(9114), 1, + STATE(9282), 1, aux_sym_field_declaration_repeat1, - STATE(11351), 1, + STATE(10956), 1, sym_attribute_specifier, - [346797] = 3, + [347499] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15062), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(15064), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [346811] = 7, + ACTIONS(9650), 1, + anon_sym_LBRACK, + ACTIONS(10647), 1, + anon_sym_LT, + STATE(6086), 1, + sym_template_argument_list, + ACTIONS(9652), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [347517] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11751), 1, + ACTIONS(12091), 1, anon_sym_COMMA, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15066), 1, + ACTIONS(15418), 1, anon_sym_SEMI, - STATE(9269), 1, + STATE(9282), 1, aux_sym_field_declaration_repeat1, - STATE(10591), 1, + STATE(10986), 1, sym_attribute_specifier, - [346833] = 7, + [347539] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(5697), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10204), 2, + anon_sym_LBRACE, + anon_sym_requires, + [347559] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11751), 1, + ACTIONS(12091), 1, anon_sym_COMMA, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15068), 1, + ACTIONS(15420), 1, anon_sym_SEMI, - STATE(9269), 1, + STATE(9282), 1, aux_sym_field_declaration_repeat1, - STATE(11029), 1, + STATE(10999), 1, sym_attribute_specifier, - [346855] = 3, + [347581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15070), 2, - anon_sym_RBRACE, + ACTIONS(15424), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(15422), 4, + anon_sym_virtual, sym_identifier, - ACTIONS(15072), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [346869] = 7, + anon_sym_decltype, + anon_sym_template, + [347595] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15074), 1, + ACTIONS(15426), 1, sym_identifier, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(5177), 1, + STATE(4027), 1, sym_template_function, - STATE(10418), 1, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(10302), 1, sym_splice_specifier, - [346891] = 7, + [347617] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11751), 1, + ACTIONS(12091), 1, anon_sym_COMMA, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15076), 1, + ACTIONS(15428), 1, anon_sym_SEMI, - STATE(9269), 1, + STATE(9282), 1, aux_sym_field_declaration_repeat1, - STATE(11303), 1, + STATE(11117), 1, sym_attribute_specifier, - [346913] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1162), 1, - anon_sym_LBRACE, - ACTIONS(13656), 1, - anon_sym_try, - ACTIONS(15078), 1, - anon_sym_SEMI, - ACTIONS(15080), 1, - anon_sym_EQ, - STATE(768), 2, - sym_compound_statement, - sym_try_statement, - [346933] = 7, + [347639] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11751), 1, + ACTIONS(12091), 1, anon_sym_COMMA, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15082), 1, + ACTIONS(15430), 1, anon_sym_SEMI, - STATE(9269), 1, + STATE(9282), 1, aux_sym_field_declaration_repeat1, - STATE(11304), 1, + STATE(11189), 1, sym_attribute_specifier, - [346955] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15062), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(15064), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [346969] = 7, + [347661] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15084), 1, + ACTIONS(15432), 1, sym_identifier, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(3900), 1, + STATE(3931), 1, sym_template_function, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [346991] = 7, + [347683] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15086), 1, + ACTIONS(15434), 1, sym_identifier, - STATE(2681), 1, + STATE(3739), 1, sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(5548), 1, + STATE(4027), 1, sym_template_function, - STATE(10418), 1, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(10302), 1, sym_splice_specifier, - [347013] = 7, + [347705] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15088), 1, + ACTIONS(15436), 1, sym_identifier, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(3900), 1, + STATE(4027), 1, sym_template_function, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [347035] = 7, + [347727] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6266), 1, - anon_sym_for, - ACTIONS(14964), 1, - sym_identifier, - STATE(3617), 1, - sym_template_type, - STATE(5678), 1, - sym__splice_specialization_specifier, - STATE(10404), 1, - sym_splice_specifier, - [347057] = 6, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12091), 1, + anon_sym_COMMA, + ACTIONS(12119), 1, + anon_sym___attribute__, + ACTIONS(15438), 1, + anon_sym_SEMI, + STATE(9282), 1, + aux_sym_field_declaration_repeat1, + STATE(10816), 1, + sym_attribute_specifier, + [347749] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(5441), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9850), 2, + ACTIONS(1113), 1, anon_sym_LBRACE, - anon_sym_requires, - [347077] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15090), 1, - sym_identifier, - STATE(3617), 1, - sym_template_type, - STATE(3776), 1, - sym_template_function, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(10418), 1, - sym_splice_specifier, - [347099] = 3, + ACTIONS(14083), 1, + anon_sym_try, + ACTIONS(15440), 1, + anon_sym_SEMI, + ACTIONS(15442), 1, + anon_sym_EQ, + STATE(712), 2, + sym_compound_statement, + sym_try_statement, + [347769] = 6, ACTIONS(3), 1, sym_comment, - STATE(11083), 1, - sym_string_literal, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [347113] = 3, + ACTIONS(10603), 1, + anon_sym_LBRACE, + ACTIONS(13807), 1, + anon_sym_try, + ACTIONS(15444), 1, + anon_sym_SEMI, + ACTIONS(15446), 1, + anon_sym_EQ, + STATE(3346), 2, + sym_compound_statement, + sym_try_statement, + [347789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15092), 2, + ACTIONS(15396), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(15094), 4, + ACTIONS(15398), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [347127] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10232), 1, - anon_sym_LBRACE, - ACTIONS(13447), 1, - anon_sym_try, - ACTIONS(15096), 1, - anon_sym_SEMI, - ACTIONS(15098), 1, - anon_sym_EQ, - STATE(2738), 2, - sym_compound_statement, - sym_try_statement, - [347147] = 7, + [347803] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11751), 1, + ACTIONS(12091), 1, anon_sym_COMMA, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15100), 1, + ACTIONS(15448), 1, anon_sym_SEMI, - STATE(9269), 1, + STATE(9282), 1, aux_sym_field_declaration_repeat1, - STATE(10678), 1, + STATE(11192), 1, sym_attribute_specifier, - [347169] = 7, + [347825] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(11751), 1, - anon_sym_COMMA, - ACTIONS(11779), 1, - anon_sym___attribute__, - ACTIONS(15102), 1, + ACTIONS(10580), 1, + anon_sym_LBRACE, + ACTIONS(13833), 1, + anon_sym_try, + ACTIONS(15450), 1, anon_sym_SEMI, - STATE(9269), 1, - aux_sym_field_declaration_repeat1, - STATE(10688), 1, - sym_attribute_specifier, - [347191] = 7, + ACTIONS(15452), 1, + anon_sym_EQ, + STATE(2840), 2, + sym_compound_statement, + sym_try_statement, + [347845] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(5697), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10196), 2, + anon_sym_LBRACE, + anon_sym_requires, + [347865] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15104), 1, + ACTIONS(15454), 1, sym_identifier, - STATE(3989), 1, + STATE(3739), 1, sym_template_type, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(5695), 1, + STATE(5558), 1, sym_template_function, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [347213] = 7, + [347887] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11751), 1, + ACTIONS(12091), 1, anon_sym_COMMA, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15106), 1, + ACTIONS(15456), 1, anon_sym_SEMI, - STATE(9090), 1, + STATE(9282), 1, aux_sym_field_declaration_repeat1, - STATE(10553), 1, + STATE(11176), 1, sym_attribute_specifier, - [347235] = 6, + [347909] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(10580), 1, anon_sym_LBRACE, - ACTIONS(13591), 1, + ACTIONS(13833), 1, anon_sym_try, - ACTIONS(15108), 1, + ACTIONS(15458), 1, anon_sym_SEMI, - ACTIONS(15110), 1, + ACTIONS(15460), 1, anon_sym_EQ, - STATE(895), 2, + STATE(2739), 2, sym_compound_statement, sym_try_statement, - [347255] = 7, + [347929] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + ACTIONS(14287), 1, + anon_sym_LBRACE, + STATE(10657), 1, + sym_trailing_return_type, + STATE(9183), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [347949] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15112), 1, + ACTIONS(15462), 1, sym_identifier, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(5548), 1, + STATE(8595), 1, sym_template_function, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [347277] = 7, + [347971] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11751), 1, + ACTIONS(12091), 1, anon_sym_COMMA, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15114), 1, + ACTIONS(15464), 1, anon_sym_SEMI, - STATE(9269), 1, + STATE(9282), 1, aux_sym_field_declaration_repeat1, - STATE(10783), 1, + STATE(11155), 1, sym_attribute_specifier, - [347299] = 7, + [347993] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15116), 1, + ACTIONS(15466), 1, sym_identifier, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(3900), 1, + STATE(4027), 1, sym_template_function, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [347321] = 7, + [348015] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(11751), 1, - anon_sym_COMMA, - ACTIONS(11779), 1, - anon_sym___attribute__, - ACTIONS(15118), 1, - anon_sym_SEMI, - STATE(9269), 1, - aux_sym_field_declaration_repeat1, - STATE(10980), 1, - sym_attribute_specifier, - [347343] = 6, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15468), 1, + sym_identifier, + STATE(2736), 1, + sym_template_type, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(5558), 1, + sym_template_function, + STATE(10302), 1, + sym_splice_specifier, + [348037] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10271), 1, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(5697), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10208), 2, anon_sym_LBRACE, - ACTIONS(13455), 1, - anon_sym_try, - ACTIONS(15120), 1, - anon_sym_SEMI, - ACTIONS(15122), 1, - anon_sym_EQ, - STATE(3355), 2, - sym_compound_statement, - sym_try_statement, - [347363] = 7, + anon_sym_requires, + [348057] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11751), 1, + ACTIONS(12091), 1, anon_sym_COMMA, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15124), 1, + ACTIONS(15470), 1, anon_sym_SEMI, - STATE(9269), 1, + STATE(9204), 1, aux_sym_field_declaration_repeat1, - STATE(11360), 1, + STATE(10943), 1, sym_attribute_specifier, - [347385] = 7, + [348079] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(5697), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10200), 2, + anon_sym_LBRACE, + anon_sym_requires, + [348099] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15126), 1, + ACTIONS(15472), 1, sym_identifier, - STATE(3617), 1, + STATE(2736), 1, sym_template_type, - STATE(5162), 1, + STATE(3931), 1, + sym_template_function, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(5548), 1, + STATE(10302), 1, + sym_splice_specifier, + [348121] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15474), 1, + sym_identifier, + STATE(3739), 1, + sym_template_type, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(5926), 1, sym_template_function, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [347407] = 6, + [348143] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - ACTIONS(13591), 1, + ACTIONS(13951), 1, anon_sym_try, - ACTIONS(15128), 1, + ACTIONS(15476), 1, anon_sym_SEMI, - ACTIONS(15130), 1, + ACTIONS(15478), 1, anon_sym_EQ, - STATE(793), 2, + STATE(443), 2, sym_compound_statement, sym_try_statement, - [347427] = 7, + [348163] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(14998), 1, + ACTIONS(15338), 1, sym_identifier, - STATE(2681), 1, + STATE(2736), 1, sym_template_type, - STATE(3776), 1, + STATE(3931), 1, sym_template_function, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [347449] = 7, + [348185] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15132), 1, + ACTIONS(15480), 1, sym_identifier, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(3900), 1, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(5774), 1, sym_template_function, - STATE(5162), 1, + STATE(10302), 1, + sym_splice_specifier, + [348207] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15482), 1, + sym_identifier, + STATE(2736), 1, + sym_template_type, + STATE(5311), 1, + sym_template_function, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [347471] = 7, + [348229] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11751), 1, + ACTIONS(12091), 1, anon_sym_COMMA, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15134), 1, + ACTIONS(15484), 1, anon_sym_SEMI, - STATE(9080), 1, + STATE(9239), 1, aux_sym_field_declaration_repeat1, - STATE(11374), 1, + STATE(10732), 1, sym_attribute_specifier, - [347493] = 7, + [348251] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(960), 1, + anon_sym_LBRACE, + ACTIONS(13995), 1, + anon_sym_try, + ACTIONS(15486), 1, + anon_sym_SEMI, + ACTIONS(15488), 1, + anon_sym_EQ, + STATE(790), 2, + sym_compound_statement, + sym_try_statement, + [348271] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14660), 1, + anon_sym_LT, + ACTIONS(14861), 1, + anon_sym_LBRACK, + STATE(8837), 1, + sym_template_argument_list, + ACTIONS(14857), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [348289] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14660), 1, + anon_sym_LT, + ACTIONS(14895), 1, + anon_sym_LBRACK, + STATE(8854), 1, + sym_template_argument_list, + ACTIONS(14893), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [348307] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6592), 1, + anon_sym_for, + ACTIONS(15334), 1, + sym_identifier, + STATE(3739), 1, + sym_template_type, + STATE(5903), 1, + sym__splice_specialization_specifier, + STATE(10214), 1, + sym_splice_specifier, + [348329] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11751), 1, + ACTIONS(12091), 1, anon_sym_COMMA, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15136), 1, + ACTIONS(15490), 1, anon_sym_SEMI, - STATE(9089), 1, + STATE(9197), 1, aux_sym_field_declaration_repeat1, - STATE(11464), 1, + STATE(10877), 1, sym_attribute_specifier, - [347515] = 7, + [348351] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11751), 1, + ACTIONS(12091), 1, anon_sym_COMMA, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15138), 1, + ACTIONS(15492), 1, anon_sym_SEMI, - STATE(9269), 1, + STATE(9282), 1, aux_sym_field_declaration_repeat1, - STATE(11480), 1, + STATE(11005), 1, sym_attribute_specifier, - [347537] = 5, + [348373] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9225), 1, + ACTIONS(9650), 1, anon_sym_LBRACK, - ACTIONS(9672), 1, + ACTIONS(10005), 1, anon_sym_LT, - STATE(5936), 1, + STATE(6086), 1, sym_template_argument_list, - ACTIONS(9227), 3, + ACTIONS(9652), 3, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [347555] = 7, + [348391] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15140), 1, + ACTIONS(15494), 1, sym_identifier, - STATE(3617), 1, + STATE(4080), 1, sym_template_type, - STATE(3776), 1, - sym_template_function, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(5774), 1, + sym_template_function, + STATE(10302), 1, sym_splice_specifier, - [347577] = 3, + [348413] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(15142), 2, - anon_sym_RBRACE, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12091), 1, + anon_sym_COMMA, + ACTIONS(12119), 1, + anon_sym___attribute__, + ACTIONS(15496), 1, + anon_sym_SEMI, + STATE(9282), 1, + aux_sym_field_declaration_repeat1, + STATE(10897), 1, + sym_attribute_specifier, + [348435] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(13987), 1, + anon_sym_try, + ACTIONS(15498), 1, + anon_sym_SEMI, + ACTIONS(15500), 1, + anon_sym_EQ, + STATE(883), 2, + sym_compound_statement, + sym_try_statement, + [348455] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(13951), 1, + anon_sym_try, + ACTIONS(15502), 1, + anon_sym_SEMI, + ACTIONS(15504), 1, + anon_sym_EQ, + STATE(418), 2, + sym_compound_statement, + sym_try_statement, + [348475] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15506), 1, sym_identifier, - ACTIONS(15144), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [347591] = 7, + STATE(2682), 1, + sym_template_type, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(5558), 1, + sym_template_function, + STATE(10302), 1, + sym_splice_specifier, + [348497] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15146), 1, + ACTIONS(15508), 1, sym_identifier, - STATE(3456), 1, + STATE(2466), 1, sym_template_type, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(5722), 1, + STATE(5558), 1, sym_template_function, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [347613] = 7, + [348519] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(6268), 1, - anon_sym_for, - ACTIONS(14964), 1, + ACTIONS(15510), 1, sym_identifier, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(5678), 1, + STATE(3931), 1, + sym_template_function, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10404), 1, + STATE(10302), 1, sym_splice_specifier, - [347635] = 5, + [348541] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9225), 1, - anon_sym_LBRACK, - ACTIONS(10277), 1, - anon_sym_LT, - STATE(5936), 1, - sym_template_argument_list, - ACTIONS(9227), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [347653] = 7, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12091), 1, + anon_sym_COMMA, + ACTIONS(12119), 1, + anon_sym___attribute__, + ACTIONS(15512), 1, + anon_sym_SEMI, + STATE(9221), 1, + aux_sym_field_declaration_repeat1, + STATE(10951), 1, + sym_attribute_specifier, + [348563] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(6224), 1, - anon_sym_for, - ACTIONS(14964), 1, + ACTIONS(15514), 1, sym_identifier, - STATE(3617), 1, + STATE(3498), 1, sym_template_type, - STATE(5678), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10404), 1, + STATE(5926), 1, + sym_template_function, + STATE(10302), 1, sym_splice_specifier, - [347675] = 6, + [348585] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(5697), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10188), 2, + anon_sym_LBRACE, + anon_sym_requires, + [348605] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(5441), 1, + STATE(5697), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - ACTIONS(9854), 2, + ACTIONS(10192), 2, anon_sym_LBRACE, anon_sym_requires, - [347695] = 7, + [348625] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15410), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(15412), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [348639] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15148), 1, + ACTIONS(15334), 1, sym_identifier, - STATE(3617), 1, + ACTIONS(15516), 1, + anon_sym_for, + STATE(3739), 1, sym_template_type, - STATE(5162), 1, + STATE(5903), 1, sym__splice_specialization_specifier, - STATE(5722), 1, - sym_template_function, - STATE(10418), 1, + STATE(10214), 1, sym_splice_specifier, - [347717] = 6, + [348661] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - ACTIONS(14103), 1, - anon_sym_LBRACE, - STATE(10995), 1, - sym_trailing_return_type, - STATE(9072), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [347737] = 7, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6588), 1, + anon_sym_for, + ACTIONS(15334), 1, + sym_identifier, + STATE(3739), 1, + sym_template_type, + STATE(5903), 1, + sym__splice_specialization_specifier, + STATE(10214), 1, + sym_splice_specifier, + [348683] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(14964), 1, - sym_identifier, - ACTIONS(15150), 1, + ACTIONS(6590), 1, anon_sym_for, - STATE(3617), 1, + ACTIONS(15334), 1, + sym_identifier, + STATE(3739), 1, sym_template_type, - STATE(5678), 1, + STATE(5903), 1, sym__splice_specialization_specifier, - STATE(10404), 1, + STATE(10214), 1, sym_splice_specifier, - [347759] = 7, + [348705] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(10690), 1, + sym_string_literal, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [348719] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15518), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(15520), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [348733] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(6240), 1, + ACTIONS(6636), 1, anon_sym_for, - ACTIONS(14964), 1, + ACTIONS(15334), 1, sym_identifier, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(5678), 1, + STATE(5903), 1, sym__splice_specialization_specifier, - STATE(10404), 1, + STATE(10214), 1, sym_splice_specifier, - [347781] = 7, + [348755] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15152), 1, + ACTIONS(15522), 1, sym_identifier, - STATE(3617), 1, + STATE(2553), 1, sym_template_type, - STATE(3900), 1, - sym_template_function, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(5774), 1, + sym_template_function, + STATE(10302), 1, sym_splice_specifier, - [347803] = 6, + [348777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(5441), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9862), 2, - anon_sym_LBRACE, - anon_sym_requires, - [347823] = 7, + STATE(10903), 1, + sym_string_literal, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [348791] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15154), 1, + ACTIONS(15524), 1, sym_identifier, - STATE(1990), 1, + STATE(3739), 1, sym_template_type, - STATE(3776), 1, + STATE(4027), 1, sym_template_function, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [347845] = 6, + [348813] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(5441), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9838), 2, - anon_sym_LBRACE, - anon_sym_requires, - [347865] = 6, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(14887), 1, + anon_sym_decltype, + ACTIONS(15526), 1, + sym_auto, + STATE(4812), 1, + sym_decltype_auto, + ACTIONS(7225), 2, + anon_sym_COMMA, + anon_sym_GT2, + [348833] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - STATE(5441), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - ACTIONS(9842), 2, - anon_sym_LBRACE, - anon_sym_requires, - [347885] = 7, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15528), 1, + sym_identifier, + STATE(2582), 1, + sym_template_type, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(5926), 1, + sym_template_function, + STATE(10302), 1, + sym_splice_specifier, + [348855] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15156), 1, + ACTIONS(15530), 1, sym_identifier, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(5695), 1, + STATE(4027), 1, sym_template_function, - STATE(10418), 1, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(10302), 1, sym_splice_specifier, - [347907] = 6, + [348877] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10215), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(13473), 1, + ACTIONS(13987), 1, anon_sym_try, - ACTIONS(15158), 1, + ACTIONS(15532), 1, anon_sym_SEMI, - ACTIONS(15160), 1, + ACTIONS(15534), 1, + anon_sym_EQ, + STATE(1005), 2, + sym_compound_statement, + sym_try_statement, + [348897] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1113), 1, + anon_sym_LBRACE, + ACTIONS(14083), 1, + anon_sym_try, + ACTIONS(15536), 1, + anon_sym_SEMI, + ACTIONS(15538), 1, anon_sym_EQ, - STATE(3202), 2, + STATE(721), 2, sym_compound_statement, sym_try_statement, - [347927] = 7, + [348917] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15162), 1, + ACTIONS(15540), 1, sym_identifier, - STATE(3989), 1, + STATE(3739), 1, sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(5695), 1, + STATE(4027), 1, sym_template_function, - STATE(10418), 1, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(10302), 1, sym_splice_specifier, - [347949] = 7, + [348939] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10603), 1, + anon_sym_LBRACE, + ACTIONS(13807), 1, + anon_sym_try, + ACTIONS(15542), 1, + anon_sym_SEMI, + ACTIONS(15544), 1, + anon_sym_EQ, + STATE(3369), 2, + sym_compound_statement, + sym_try_statement, + [348959] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + STATE(5697), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + ACTIONS(10172), 2, + anon_sym_LBRACE, + anon_sym_requires, + [348979] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15164), 1, + ACTIONS(15546), 1, sym_identifier, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(3900), 1, + STATE(4027), 1, sym_template_function, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [347971] = 5, + [349001] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8240), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + ACTIONS(15548), 1, + anon_sym_LBRACE, + STATE(11678), 1, + sym_trailing_return_type, + STATE(7955), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [349021] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15166), 1, + ACTIONS(15550), 1, anon_sym_SEMI, - STATE(8921), 2, + STATE(9295), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [347988] = 6, + [349038] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15168), 1, + ACTIONS(15552), 1, sym_identifier, - STATE(3617), 1, + STATE(3498), 1, sym_template_type, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [348007] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(11779), 1, - anon_sym___attribute__, - ACTIONS(15170), 1, - anon_sym_SEMI, - STATE(8921), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [348024] = 5, + [349057] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15172), 1, + ACTIONS(15554), 1, anon_sym_SEMI, - STATE(9242), 2, + STATE(9021), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [348041] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(14616), 1, - anon_sym_COLON, - ACTIONS(15174), 1, - anon_sym_SEMI, - STATE(9699), 1, - sym_module_partition, - STATE(11365), 1, - sym_attribute_declaration, - [348060] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15176), 1, - sym_identifier, - ACTIONS(15178), 1, - anon_sym_using, - ACTIONS(15180), 1, - anon_sym_EQ, - STATE(9743), 1, - sym_attribute, - STATE(9746), 1, - sym_annotation, - [348079] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - ACTIONS(15182), 1, - anon_sym_RPAREN, - STATE(4601), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - [348098] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - ACTIONS(15184), 1, - anon_sym_RPAREN, - STATE(4601), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - [348117] = 5, + [349074] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15186), 1, + ACTIONS(15556), 1, anon_sym_SEMI, - STATE(8921), 2, + STATE(9021), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [348134] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8961), 1, - anon_sym_LBRACE, - ACTIONS(15188), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(15190), 2, - anon_sym_AMP_AMP, - anon_sym_and, - [348149] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15194), 1, - anon_sym_DOT, - STATE(9258), 1, - aux_sym_module_name_repeat1, - ACTIONS(15192), 3, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [348164] = 5, + [349091] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15196), 1, + ACTIONS(15558), 1, anon_sym_SEMI, - STATE(9190), 2, + STATE(9352), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [348181] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4562), 1, - anon_sym_LBRACE, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - STATE(5660), 1, - sym_argument_list, - STATE(7265), 1, - sym_initializer_list, - [348200] = 6, + [349108] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15198), 1, - sym_identifier, - STATE(1990), 1, - sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(10418), 1, - sym_splice_specifier, - [348219] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - ACTIONS(15200), 1, + ACTIONS(15560), 1, anon_sym_RPAREN, - STATE(4601), 1, + STATE(4706), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - [348238] = 5, + [349127] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15202), 1, + ACTIONS(15562), 1, anon_sym_SEMI, - STATE(8921), 2, + STATE(9347), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [348255] = 6, + [349144] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(14847), 1, + ACTIONS(15564), 1, sym_identifier, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [348274] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - STATE(2061), 1, - sym_template_argument_list, - ACTIONS(6203), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [348291] = 6, + [349163] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15176), 1, + ACTIONS(15566), 1, sym_identifier, - ACTIONS(15178), 1, + ACTIONS(15568), 1, anon_sym_using, - ACTIONS(15180), 1, + ACTIONS(15570), 1, anon_sym_EQ, - STATE(9720), 1, + STATE(9949), 1, sym_attribute, - STATE(9721), 1, + STATE(9950), 1, sym_annotation, - [348310] = 5, + [349182] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15204), 1, + ACTIONS(15572), 1, anon_sym_SEMI, - STATE(9208), 2, + STATE(9021), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [348327] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15190), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8941), 3, - anon_sym_PIPE_PIPE, - anon_sym_LBRACE, - anon_sym_or, - [348340] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15206), 1, - sym_identifier, - STATE(3617), 1, - sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(10418), 1, - sym_splice_specifier, - [348359] = 5, + [349199] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(15574), 1, + anon_sym_COMMA, + ACTIONS(15579), 1, anon_sym___attribute, - ACTIONS(11779), 1, - anon_sym___attribute__, - ACTIONS(15208), 1, + STATE(9282), 1, + aux_sym_field_declaration_repeat1, + ACTIONS(15577), 2, anon_sym_SEMI, - STATE(8921), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [348376] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9225), 1, - anon_sym_LBRACK, - ACTIONS(9672), 1, - anon_sym_LT, - STATE(5816), 1, - sym_template_argument_list, - ACTIONS(9227), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [348393] = 5, + anon_sym___attribute__, + [349216] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15210), 1, + ACTIONS(15581), 1, anon_sym_SEMI, - STATE(9255), 2, + STATE(9316), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [348410] = 5, + [349233] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, - anon_sym_LPAREN2, - ACTIONS(15214), 1, + ACTIONS(2396), 1, + anon_sym_LBRACE, + ACTIONS(7227), 1, anon_sym_COLON_COLON, - STATE(10115), 1, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + STATE(3894), 1, sym_argument_list, - ACTIONS(15212), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [348427] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11929), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11933), 1, - anon_sym_EQ, - ACTIONS(15216), 1, - sym_identifier, - ACTIONS(11931), 2, - anon_sym_COMMA, - anon_sym_GT2, - [348444] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15176), 1, - sym_identifier, - ACTIONS(15178), 1, - anon_sym_using, - ACTIONS(15180), 1, - anon_sym_EQ, - STATE(9562), 1, - sym_attribute, - STATE(9566), 1, - sym_annotation, - [348463] = 6, + STATE(3899), 1, + sym_initializer_list, + [349252] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(14847), 1, - sym_identifier, - STATE(3617), 1, - sym_template_type, - STATE(5678), 1, - sym__splice_specialization_specifier, - STATE(10131), 1, - sym_splice_specifier, - [348482] = 6, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14968), 1, + anon_sym_COLON, + ACTIONS(15583), 1, + anon_sym_SEMI, + STATE(9714), 1, + sym_module_partition, + STATE(10771), 1, + sym_attribute_declaration, + [349271] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(14847), 1, + ACTIONS(15585), 1, sym_identifier, - STATE(3617), 1, + STATE(2086), 1, sym_template_type, - STATE(5517), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10450), 1, + STATE(10302), 1, sym_splice_specifier, - [348501] = 6, + [349290] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(14847), 1, + ACTIONS(15587), 1, sym_identifier, - STATE(3617), 1, + STATE(2682), 1, sym_template_type, - STATE(6888), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10131), 1, + STATE(10302), 1, sym_splice_specifier, - [348520] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - ACTIONS(15218), 1, - anon_sym_RPAREN, - STATE(4601), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - [348539] = 5, + [349309] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(15220), 1, - anon_sym_COMMA, - ACTIONS(15225), 1, - anon_sym___attribute, - STATE(9177), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(15223), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [348556] = 6, + sym_comment, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15247), 1, + sym_identifier, + STATE(3739), 1, + sym_template_type, + STATE(5692), 1, + sym__splice_specialization_specifier, + STATE(10464), 1, + sym_splice_specifier, + [349328] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(14847), 1, + ACTIONS(15589), 1, sym_identifier, - STATE(3617), 1, + STATE(4080), 1, sym_template_type, - STATE(5913), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10187), 1, + STATE(10302), 1, sym_splice_specifier, - [348575] = 6, + [349347] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - ACTIONS(15227), 1, - anon_sym_RPAREN, - STATE(4601), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - [348594] = 6, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15591), 1, + sym_identifier, + STATE(2466), 1, + sym_template_type, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(10302), 1, + sym_splice_specifier, + [349366] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, + anon_sym_LT, + STATE(3709), 1, + sym_template_argument_list, + ACTIONS(9497), 2, anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - ACTIONS(15229), 1, - anon_sym_RPAREN, - STATE(4601), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - [348613] = 6, + anon_sym_LBRACE, + [349383] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15176), 1, + ACTIONS(15566), 1, sym_identifier, - ACTIONS(15178), 1, + ACTIONS(15568), 1, anon_sym_using, - ACTIONS(15180), 1, + ACTIONS(15570), 1, anon_sym_EQ, - STATE(9726), 1, + STATE(10040), 1, sym_attribute, - STATE(9727), 1, + STATE(10041), 1, sym_annotation, - [348632] = 6, + [349402] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - ACTIONS(15231), 1, - anon_sym_RPAREN, - STATE(4601), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - [348651] = 6, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12119), 1, + anon_sym___attribute__, + ACTIONS(15593), 1, + anon_sym_SEMI, + STATE(9358), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [349419] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15233), 1, - sym_identifier, - STATE(2681), 1, - sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(10418), 1, - sym_splice_specifier, - [348670] = 5, + ACTIONS(9650), 1, + anon_sym_LBRACK, + ACTIONS(10005), 1, + anon_sym_LT, + STATE(5825), 1, + sym_template_argument_list, + ACTIONS(9652), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [349436] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15235), 1, + ACTIONS(15595), 1, anon_sym_SEMI, - STATE(8921), 2, + STATE(9021), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [348687] = 4, + [349453] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15237), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8700), 2, - anon_sym_using, - anon_sym_EQ, - STATE(9185), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [348702] = 6, + ACTIONS(15597), 1, + anon_sym_COMMA, + ACTIONS(15602), 1, + anon_sym___attribute, + STATE(9296), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(15600), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [349470] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 1, - anon_sym_LBRACE, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - STATE(3783), 1, - sym_argument_list, - STATE(5860), 1, - sym_initializer_list, - [348721] = 6, + ACTIONS(15566), 1, + sym_identifier, + ACTIONS(15568), 1, + anon_sym_using, + ACTIONS(15570), 1, + anon_sym_EQ, + STATE(9708), 1, + sym_attribute, + STATE(9710), 1, + sym_annotation, + [349489] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, - anon_sym_LBRACE, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - STATE(5650), 1, - sym_initializer_list, - STATE(5801), 1, - sym_argument_list, - [348740] = 6, + ACTIONS(15566), 1, + sym_identifier, + ACTIONS(15568), 1, + anon_sym_using, + ACTIONS(15570), 1, + anon_sym_EQ, + STATE(10115), 1, + sym_attribute, + STATE(10116), 1, + sym_annotation, + [349508] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(14847), 1, + ACTIONS(15604), 1, sym_identifier, - STATE(3617), 1, + STATE(4806), 1, sym_template_type, - STATE(5612), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10277), 1, + STATE(10302), 1, sym_splice_specifier, - [348759] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(11779), 1, - anon_sym___attribute__, - ACTIONS(15240), 1, - anon_sym_SEMI, - STATE(9229), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [348776] = 5, + [349527] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15242), 1, + ACTIONS(15606), 1, anon_sym_SEMI, - STATE(8921), 2, + STATE(9021), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [348793] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15244), 5, - anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [348804] = 6, + [349544] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15176), 1, + ACTIONS(15566), 1, sym_identifier, - ACTIONS(15178), 1, + ACTIONS(15568), 1, anon_sym_using, - ACTIONS(15180), 1, + ACTIONS(15570), 1, anon_sym_EQ, - STATE(9819), 1, + STATE(10193), 1, sym_attribute, - STATE(9820), 1, + STATE(10194), 1, sym_annotation, - [348823] = 6, + [349563] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(12755), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - ACTIONS(15246), 1, - anon_sym_RPAREN, - STATE(4601), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - [348842] = 6, + ACTIONS(15610), 1, + anon_sym_COLON_COLON, + STATE(10332), 1, + sym_argument_list, + ACTIONS(15608), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [349580] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15248), 1, + ACTIONS(15612), 1, sym_identifier, - STATE(3989), 1, + STATE(2736), 1, sym_template_type, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [348861] = 6, + [349599] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15176), 1, + ACTIONS(15566), 1, sym_identifier, - ACTIONS(15178), 1, + ACTIONS(15568), 1, anon_sym_using, - ACTIONS(15180), 1, + ACTIONS(15570), 1, anon_sym_EQ, - STATE(9931), 1, + STATE(9678), 1, sym_attribute, - STATE(9932), 1, + STATE(9679), 1, sym_annotation, - [348880] = 6, + [349618] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - ACTIONS(15250), 1, + ACTIONS(15614), 1, anon_sym_RPAREN, - STATE(4601), 1, + STATE(4706), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - [348899] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - STATE(5801), 1, - sym_argument_list, - STATE(7210), 1, - sym_initializer_list, - [348918] = 6, + [349637] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15176), 1, + ACTIONS(15566), 1, sym_identifier, - ACTIONS(15178), 1, + ACTIONS(15568), 1, anon_sym_using, - ACTIONS(15180), 1, + ACTIONS(15570), 1, anon_sym_EQ, - STATE(10035), 1, + STATE(9695), 1, sym_attribute, - STATE(10036), 1, + STATE(9696), 1, sym_annotation, - [348937] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - ACTIONS(15252), 1, - anon_sym_RPAREN, - STATE(4601), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - [348956] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(14847), 1, - sym_identifier, - STATE(3617), 1, - sym_template_type, - STATE(3661), 1, - sym__splice_specialization_specifier, - STATE(10096), 1, - sym_splice_specifier, - [348975] = 5, + [349656] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15254), 1, + ACTIONS(15616), 1, anon_sym_SEMI, - STATE(9145), 2, + STATE(9021), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [348992] = 6, + [349673] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15176), 1, + ACTIONS(15566), 1, sym_identifier, - ACTIONS(15178), 1, + ACTIONS(15568), 1, anon_sym_using, - ACTIONS(15180), 1, + ACTIONS(15570), 1, anon_sym_EQ, - STATE(9530), 1, + STATE(9712), 1, sym_attribute, - STATE(9531), 1, + STATE(9713), 1, sym_annotation, - [349011] = 6, + [349692] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15176), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15247), 1, sym_identifier, - ACTIONS(15178), 1, - anon_sym_using, - ACTIONS(15180), 1, - anon_sym_EQ, - STATE(9554), 1, - sym_attribute, - STATE(9555), 1, - sym_annotation, - [349030] = 6, + STATE(3739), 1, + sym_template_type, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(10302), 1, + sym_splice_specifier, + [349711] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15176), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12119), 1, + anon_sym___attribute__, + ACTIONS(15618), 1, + anon_sym_SEMI, + STATE(9021), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [349728] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15620), 1, sym_identifier, - ACTIONS(15178), 1, - anon_sym_using, - ACTIONS(15180), 1, - anon_sym_EQ, - STATE(9571), 1, - sym_attribute, - STATE(9572), 1, - sym_annotation, - [349049] = 6, + STATE(4222), 1, + sym_template_type, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(10302), 1, + sym_splice_specifier, + [349747] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(4922), 1, anon_sym_LBRACE, - ACTIONS(6802), 1, + ACTIONS(7227), 1, anon_sym_COLON_COLON, - ACTIONS(8808), 1, + ACTIONS(9230), 1, anon_sym_LPAREN2, - STATE(3783), 1, + STATE(3894), 1, sym_argument_list, - STATE(5860), 1, + STATE(5969), 1, sym_initializer_list, - [349068] = 5, + [349766] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14968), 1, + anon_sym_COLON, + ACTIONS(15622), 1, + anon_sym_SEMI, + STATE(9901), 1, + sym_module_partition, + STATE(11137), 1, + sym_attribute_declaration, + [349785] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15256), 1, + ACTIONS(15624), 1, anon_sym_SEMI, - STATE(9238), 2, + STATE(9275), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349085] = 6, + [349802] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15206), 1, - sym_identifier, - STATE(4869), 1, - sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(10418), 1, - sym_splice_specifier, - [349104] = 5, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12119), 1, + anon_sym___attribute__, + ACTIONS(15626), 1, + anon_sym_SEMI, + STATE(9329), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [349819] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15258), 1, + ACTIONS(15628), 1, anon_sym_SEMI, - STATE(8921), 2, + STATE(9021), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349121] = 6, + [349836] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14674), 1, - anon_sym_COLON_COLON, - ACTIONS(14676), 1, + ACTIONS(15632), 1, + anon_sym_DOT, + STATE(9325), 1, + aux_sym_module_name_repeat1, + ACTIONS(15630), 3, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [349851] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15634), 5, + anon_sym_LPAREN2, anon_sym_inline, - ACTIONS(15260), 1, - sym_identifier, - STATE(9765), 1, - sym__namespace_specifier, - STATE(10209), 1, - sym_nested_namespace_specifier, - [349140] = 6, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [349862] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12119), 1, + anon_sym___attribute__, + STATE(4863), 1, + sym_attribute_specifier, + ACTIONS(7549), 2, + anon_sym_COMMA, + anon_sym_GT2, + [349879] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12119), 1, + anon_sym___attribute__, + STATE(4969), 1, + sym_attribute_specifier, + ACTIONS(7553), 2, + anon_sym_COMMA, + anon_sym_GT2, + [349896] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - ACTIONS(15262), 1, + ACTIONS(15636), 1, anon_sym_RPAREN, - STATE(4601), 1, + STATE(4706), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - [349159] = 6, + [349915] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - ACTIONS(15264), 1, + ACTIONS(15638), 1, anon_sym_RPAREN, - STATE(4601), 1, + STATE(4706), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - [349178] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14245), 1, - sym_identifier, - ACTIONS(15266), 1, - aux_sym_preproc_if_token2, - STATE(8986), 1, - sym_enumerator, - STATE(9332), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(9340), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [349197] = 5, + [349934] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - STATE(4900), 1, + STATE(4887), 1, sym_attribute_specifier, - ACTIONS(7089), 2, + ACTIONS(7415), 2, anon_sym_COMMA, anon_sym_GT2, - [349214] = 5, + [349951] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - STATE(4816), 1, + STATE(4795), 1, sym_attribute_specifier, - ACTIONS(7189), 2, + ACTIONS(7429), 2, anon_sym_COMMA, anon_sym_GT2, - [349231] = 5, + [349968] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, - anon_sym_LPAREN2, - ACTIONS(15270), 1, - anon_sym_COLON_COLON, - STATE(10255), 1, - sym_argument_list, - ACTIONS(15268), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [349248] = 5, + ACTIONS(15642), 1, + anon_sym_DOT, + STATE(9325), 1, + aux_sym_module_name_repeat1, + ACTIONS(15640), 3, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [349983] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15272), 1, - anon_sym_SEMI, - STATE(8921), 2, + STATE(4842), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [349265] = 5, + ACTIONS(7399), 2, + anon_sym_COMMA, + anon_sym_GT2, + [350000] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - STATE(4743), 1, + STATE(4852), 1, sym_attribute_specifier, - ACTIONS(7055), 2, + ACTIONS(7507), 2, anon_sym_COMMA, anon_sym_GT2, - [349282] = 5, + [350017] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - STATE(4748), 1, + ACTIONS(15645), 1, + anon_sym_SEMI, + STATE(9307), 2, sym_attribute_specifier, - ACTIONS(7059), 2, - anon_sym_COMMA, - anon_sym_GT2, - [349299] = 5, + aux_sym_type_definition_repeat1, + [350034] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15274), 1, + ACTIONS(15647), 1, anon_sym_SEMI, - STATE(9253), 2, + STATE(9021), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349316] = 6, + [350051] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15276), 1, - sym_identifier, - STATE(3593), 1, - sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(10418), 1, - sym_splice_specifier, - [349335] = 5, + ACTIONS(12755), 1, + anon_sym_LPAREN2, + ACTIONS(15651), 1, + anon_sym_COLON_COLON, + STATE(10391), 1, + sym_argument_list, + ACTIONS(15649), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [350068] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + ACTIONS(15653), 1, + anon_sym_RPAREN, + STATE(4706), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + [350087] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3098), 1, + anon_sym_LBRACE, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + STATE(5537), 1, + sym_argument_list, + STATE(6093), 1, + sym_initializer_list, + [350106] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15278), 1, + ACTIONS(15655), 1, anon_sym_SEMI, - STATE(9216), 2, + STATE(9021), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349352] = 5, + [350123] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14968), 1, + anon_sym_COLON, + ACTIONS(15657), 1, + anon_sym_SEMI, + STATE(9838), 1, + sym_module_partition, + STATE(11607), 1, + sym_attribute_declaration, + [350142] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - STATE(4781), 1, + STATE(5000), 1, sym_attribute_specifier, - ACTIONS(7067), 2, + ACTIONS(7425), 2, anon_sym_COMMA, anon_sym_GT2, - [349369] = 5, + [350159] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15659), 1, + sym_identifier, + STATE(3498), 1, + sym_template_type, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(10302), 1, + sym_splice_specifier, + [350178] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15280), 1, - anon_sym_SEMI, - STATE(9230), 2, + STATE(5027), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [349386] = 5, + ACTIONS(7433), 2, + anon_sym_COMMA, + anon_sym_GT2, + [350195] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - STATE(4809), 1, + STATE(4815), 1, sym_attribute_specifier, - ACTIONS(7093), 2, + ACTIONS(7437), 2, anon_sym_COMMA, anon_sym_GT2, - [349403] = 5, + [350212] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - STATE(4813), 1, + STATE(4908), 1, sym_attribute_specifier, - ACTIONS(7097), 2, + ACTIONS(7455), 2, anon_sym_COMMA, anon_sym_GT2, - [349420] = 5, + [350229] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + ACTIONS(15661), 1, + anon_sym_RPAREN, + STATE(4706), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + [350248] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - STATE(4815), 1, + STATE(4993), 1, sym_attribute_specifier, - ACTIONS(7101), 2, + ACTIONS(7523), 2, anon_sym_COMMA, anon_sym_GT2, - [349437] = 5, + [350265] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - STATE(4704), 1, + STATE(4870), 1, sym_attribute_specifier, - ACTIONS(7105), 2, + ACTIONS(7533), 2, anon_sym_COMMA, anon_sym_GT2, - [349454] = 6, + [350282] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2608), 1, - anon_sym_LBRACE, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - STATE(5660), 1, - sym_argument_list, - STATE(5664), 1, - sym_initializer_list, - [349473] = 5, + ACTIONS(14887), 1, + anon_sym_decltype, + ACTIONS(15526), 1, + sym_auto, + STATE(4812), 1, + sym_decltype_auto, + ACTIONS(7225), 2, + anon_sym_COMMA, + anon_sym_GT2, + [350299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(11779), 1, - anon_sym___attribute__, - ACTIONS(15282), 1, + ACTIONS(15663), 2, + anon_sym_class, + anon_sym_typename, + STATE(10512), 3, + sym_type_parameter_declaration, + sym_variadic_type_parameter_declaration, + sym_optional_type_parameter_declaration, + [350312] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14968), 1, + anon_sym_COLON, + ACTIONS(15665), 1, anon_sym_SEMI, - STATE(8921), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [349490] = 5, + STATE(9685), 1, + sym_module_partition, + STATE(11194), 1, + sym_attribute_declaration, + [350331] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15284), 1, + ACTIONS(15667), 1, anon_sym_SEMI, - STATE(8921), 2, + STATE(9361), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349507] = 5, + [350348] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - STATE(4870), 1, + ACTIONS(15669), 1, + anon_sym_SEMI, + STATE(9021), 2, sym_attribute_specifier, - ACTIONS(7125), 2, - anon_sym_COMMA, - anon_sym_GT2, - [349524] = 5, + aux_sym_type_definition_repeat1, + [350365] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - STATE(4901), 1, + ACTIONS(15671), 1, + anon_sym_SEMI, + STATE(9300), 2, sym_attribute_specifier, - ACTIONS(7135), 2, - anon_sym_COMMA, - anon_sym_GT2, - [349541] = 6, + aux_sym_type_definition_repeat1, + [350382] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15286), 1, + ACTIONS(15247), 1, sym_identifier, - STATE(2681), 1, + STATE(3739), 1, sym_template_type, - STATE(5162), 1, + STATE(5903), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(10214), 1, sym_splice_specifier, - [349560] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - ACTIONS(14481), 1, - anon_sym_LBRACK, - ACTIONS(15288), 1, - anon_sym_RPAREN, - STATE(4601), 1, - sym_parameter_list, - STATE(8431), 1, - sym__function_declarator_seq, - [349579] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2738), 1, - anon_sym_LBRACE, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - STATE(5523), 1, - sym_argument_list, - STATE(5932), 1, - sym_initializer_list, - [349598] = 6, + [350401] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15176), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15247), 1, sym_identifier, - ACTIONS(15178), 1, - anon_sym_using, - ACTIONS(15180), 1, - anon_sym_EQ, - STATE(9733), 1, - sym_attribute, - STATE(9744), 1, - sym_annotation, - [349617] = 6, + STATE(3739), 1, + sym_template_type, + STATE(5556), 1, + sym__splice_specialization_specifier, + STATE(10340), 1, + sym_splice_specifier, + [350420] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15176), 1, + ACTIONS(15566), 1, sym_identifier, - ACTIONS(15178), 1, + ACTIONS(15568), 1, anon_sym_using, - ACTIONS(15180), 1, + ACTIONS(15570), 1, anon_sym_EQ, - STATE(9808), 1, + STATE(9697), 1, sym_attribute, - STATE(9809), 1, + STATE(9698), 1, sym_annotation, - [349636] = 5, + [350439] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15290), 1, + ACTIONS(15673), 1, anon_sym_SEMI, - STATE(8921), 2, + STATE(9021), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349653] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15292), 1, - sym_identifier, - STATE(3617), 1, - sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(10418), 1, - sym_splice_specifier, - [349672] = 6, + [350456] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(2952), 1, anon_sym_LBRACE, - ACTIONS(6802), 1, + ACTIONS(7227), 1, anon_sym_COLON_COLON, - ACTIONS(10347), 1, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(5523), 1, + STATE(5537), 1, sym_argument_list, - STATE(5524), 1, + STATE(5538), 1, sym_initializer_list, - [349691] = 5, + [350475] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(11779), 1, - anon_sym___attribute__, - ACTIONS(15294), 1, - anon_sym_SEMI, - STATE(9286), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [349708] = 5, + ACTIONS(15675), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9075), 2, + anon_sym_using, + anon_sym_EQ, + STATE(9354), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [350490] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(11779), 1, - anon_sym___attribute__, - ACTIONS(15296), 1, - anon_sym_SEMI, - STATE(8921), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [349725] = 5, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15247), 1, + sym_identifier, + STATE(3739), 1, + sym_template_type, + STATE(7012), 1, + sym__splice_specialization_specifier, + STATE(10536), 1, + sym_splice_specifier, + [350509] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15298), 1, + ACTIONS(15678), 1, anon_sym_SEMI, - STATE(9279), 2, + STATE(9021), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349742] = 5, + [350526] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + ACTIONS(15680), 1, + anon_sym_RPAREN, + STATE(4706), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + [350545] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15300), 1, + ACTIONS(15682), 1, anon_sym_SEMI, - STATE(9167), 2, + STATE(9021), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349759] = 6, + [350562] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15302), 1, + ACTIONS(15604), 1, sym_identifier, - STATE(2608), 1, + STATE(3739), 1, sym_template_type, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [349778] = 5, + [350581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14505), 1, - anon_sym_decltype, - ACTIONS(15014), 1, - sym_auto, - STATE(4817), 1, - sym_decltype_auto, - ACTIONS(6800), 2, - anon_sym_COMMA, - anon_sym_GT2, - [349795] = 6, + ACTIONS(11729), 1, + anon_sym_AMP, + ACTIONS(11731), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + [350594] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12119), 1, + anon_sym___attribute__, + ACTIONS(15684), 1, + anon_sym_SEMI, + STATE(9021), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [350611] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - ACTIONS(15304), 1, + ACTIONS(15686), 1, anon_sym_RPAREN, - STATE(4601), 1, + STATE(4706), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - [349814] = 6, + [350630] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15566), 1, + sym_identifier, + ACTIONS(15568), 1, + anon_sym_using, + ACTIONS(15570), 1, + anon_sym_EQ, + STATE(10065), 1, + sym_attribute, + STATE(10072), 1, + sym_annotation, + [350649] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(14847), 1, + ACTIONS(15247), 1, sym_identifier, - STATE(3617), 1, + STATE(3739), 1, sym_template_type, - STATE(5162), 1, + STATE(5935), 1, sym__splice_specialization_specifier, - STATE(10116), 1, + STATE(10257), 1, sym_splice_specifier, - [349833] = 4, + [350668] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15194), 1, - anon_sym_DOT, - STATE(9155), 1, - aux_sym_module_name_repeat1, - ACTIONS(15306), 3, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [349848] = 6, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15247), 1, + sym_identifier, + STATE(3739), 1, + sym_template_type, + STATE(5903), 1, + sym__splice_specialization_specifier, + STATE(10536), 1, + sym_splice_specifier, + [350687] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15247), 1, + sym_identifier, + STATE(3739), 1, + sym_template_type, + STATE(7179), 1, + sym__splice_specialization_specifier, + STATE(10486), 1, + sym_splice_specifier, + [350706] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14616), 1, + ACTIONS(14968), 1, anon_sym_COLON, - ACTIONS(15308), 1, + ACTIONS(15688), 1, anon_sym_SEMI, - STATE(9539), 1, + STATE(9855), 1, sym_module_partition, - STATE(11056), 1, + STATE(10891), 1, sym_attribute_declaration, - [349867] = 5, + [350725] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(11779), 1, - anon_sym___attribute__, - ACTIONS(15310), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14968), 1, + anon_sym_COLON, + ACTIONS(15690), 1, anon_sym_SEMI, - STATE(9147), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [349884] = 5, + STATE(9955), 1, + sym_module_partition, + STATE(11616), 1, + sym_attribute_declaration, + [350744] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(11779), 1, - anon_sym___attribute__, - ACTIONS(15312), 1, - anon_sym_SEMI, - STATE(9259), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [349901] = 5, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15692), 1, + sym_identifier, + STATE(2736), 1, + sym_template_type, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(10302), 1, + sym_splice_specifier, + [350763] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(15058), 1, + anon_sym_COLON_COLON, + ACTIONS(15060), 1, + anon_sym_inline, + ACTIONS(15694), 1, + sym_identifier, + STATE(9863), 1, + sym__namespace_specifier, + STATE(10409), 1, + sym_nested_namespace_specifier, + [350782] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + ACTIONS(15696), 1, + anon_sym_RPAREN, + STATE(4706), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + [350801] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15698), 1, + sym_identifier, + STATE(2736), 1, + sym_template_type, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(10302), 1, + sym_splice_specifier, + [350820] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15018), 1, + anon_sym_COMMA, + ACTIONS(15702), 1, anon_sym___attribute, - ACTIONS(11779), 1, - anon_sym___attribute__, - ACTIONS(15314), 1, + STATE(9296), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(15700), 2, anon_sym_SEMI, - STATE(8921), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [349918] = 6, + anon_sym___attribute__, + [350837] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, + anon_sym_LT, + STATE(2131), 1, + sym_template_argument_list, + ACTIONS(6567), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [350854] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - ACTIONS(15316), 1, + ACTIONS(15704), 1, anon_sym_RPAREN, - STATE(4601), 1, + STATE(4706), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - [349937] = 5, + [350873] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12303), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12307), 1, + anon_sym_EQ, + ACTIONS(15706), 1, + sym_identifier, + ACTIONS(12305), 2, + anon_sym_COMMA, + anon_sym_GT2, + [350890] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15318), 1, + ACTIONS(15708), 1, anon_sym_SEMI, - STATE(8921), 2, + STATE(9408), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349954] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15320), 1, - sym_identifier, - STATE(4063), 1, - sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(10418), 1, - sym_splice_specifier, - [349973] = 3, + [350907] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15322), 2, - anon_sym_class, - anon_sym_typename, - STATE(10233), 3, - sym_type_parameter_declaration, - sym_variadic_type_parameter_declaration, - sym_optional_type_parameter_declaration, - [349986] = 4, + ACTIONS(3052), 1, + anon_sym_LBRACE, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + STATE(5772), 1, + sym_argument_list, + STATE(5843), 1, + sym_initializer_list, + [350926] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15326), 1, - anon_sym_DOT, - STATE(9258), 1, - aux_sym_module_name_repeat1, - ACTIONS(15324), 3, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12119), 1, + anon_sym___attribute__, + ACTIONS(15710), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [350001] = 5, + STATE(9356), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [350943] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15329), 1, + ACTIONS(15712), 1, anon_sym_SEMI, - STATE(8921), 2, + STATE(9274), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [350018] = 6, + [350960] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15331), 1, + ACTIONS(15714), 1, sym_identifier, - STATE(3456), 1, + STATE(3739), 1, sym_template_type, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [350037] = 6, + [350979] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14674), 1, - anon_sym_COLON_COLON, - ACTIONS(14676), 1, - anon_sym_inline, - ACTIONS(15260), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15716), 1, sym_identifier, - STATE(9682), 1, - sym__namespace_specifier, - STATE(10210), 1, - sym_nested_namespace_specifier, - [350056] = 6, + STATE(2553), 1, + sym_template_type, + STATE(5426), 1, + sym__splice_specialization_specifier, + STATE(10302), 1, + sym_splice_specifier, + [350998] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + STATE(5772), 1, + sym_argument_list, + STATE(7298), 1, + sym_initializer_list, + [351017] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - ACTIONS(15333), 1, + ACTIONS(15718), 1, anon_sym_RPAREN, - STATE(4601), 1, + STATE(4706), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - [350075] = 6, + [351036] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15335), 1, + ACTIONS(15720), 1, sym_identifier, - STATE(2681), 1, + STATE(3614), 1, sym_template_type, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [350094] = 6, + [351055] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(15566), 1, + sym_identifier, + ACTIONS(15568), 1, + anon_sym_using, + ACTIONS(15570), 1, + anon_sym_EQ, + STATE(10090), 1, + sym_attribute, + STATE(10109), 1, + sym_annotation, + [351074] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14632), 1, + sym_identifier, + ACTIONS(15722), 1, + aux_sym_preproc_if_token2, + STATE(9089), 1, + sym_enumerator, + STATE(9445), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9496), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [351093] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4910), 1, + anon_sym_LBRACE, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(10982), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + STATE(5862), 1, + sym_argument_list, + STATE(7380), 1, + sym_initializer_list, + [351112] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, anon_sym_LBRACK, - ACTIONS(15337), 1, + ACTIONS(15724), 1, anon_sym_RPAREN, - STATE(4601), 1, + STATE(4706), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + [351131] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + ACTIONS(15726), 1, + anon_sym_RPAREN, + STATE(4706), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + [351150] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9395), 1, + anon_sym_LBRACE, + ACTIONS(15728), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(15730), 2, + anon_sym_AMP_AMP, + anon_sym_and, + [351165] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + ACTIONS(15732), 1, + anon_sym_RPAREN, + STATE(4706), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - [350113] = 5, + [351184] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + STATE(3894), 1, + sym_argument_list, + STATE(5969), 1, + sym_initializer_list, + [351203] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15339), 1, + ACTIONS(15734), 1, anon_sym_SEMI, - STATE(9160), 2, + STATE(9418), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [350130] = 6, + [351220] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15341), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12119), 1, + anon_sym___attribute__, + ACTIONS(15736), 1, + anon_sym_SEMI, + STATE(9310), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [351237] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15566), 1, sym_identifier, - STATE(2441), 1, - sym_template_type, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(10418), 1, - sym_splice_specifier, - [350149] = 6, + ACTIONS(15568), 1, + anon_sym_using, + ACTIONS(15570), 1, + anon_sym_EQ, + STATE(9868), 1, + sym_attribute, + STATE(9869), 1, + sym_annotation, + [351256] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2036), 1, + ACTIONS(2968), 1, anon_sym_LBRACE, - ACTIONS(6802), 1, + ACTIONS(7227), 1, anon_sym_COLON_COLON, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - STATE(3783), 1, + STATE(5862), 1, sym_argument_list, - STATE(3811), 1, + STATE(5876), 1, sym_initializer_list, - [350168] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14626), 1, - anon_sym_COMMA, - ACTIONS(15345), 1, - anon_sym___attribute, - STATE(9177), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(15343), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [350185] = 5, + [351275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15347), 1, - anon_sym_COMMA, - ACTIONS(15352), 1, - anon_sym___attribute, - STATE(9269), 1, - aux_sym_field_declaration_repeat1, - ACTIONS(15350), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [350202] = 6, + ACTIONS(15730), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9324), 3, + anon_sym_PIPE_PIPE, + anon_sym_LBRACE, + anon_sym_or, + [351288] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - ACTIONS(15354), 1, + ACTIONS(15738), 1, anon_sym_RPAREN, - STATE(4601), 1, + STATE(4706), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - [350221] = 6, + [351307] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - ACTIONS(15356), 1, + ACTIONS(15740), 1, anon_sym_RPAREN, - STATE(4601), 1, + STATE(4706), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - [350240] = 6, + [351326] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15358), 1, - sym_identifier, - STATE(5162), 1, - sym__splice_specialization_specifier, - STATE(6611), 1, - sym_template_type, - STATE(10418), 1, - sym_splice_specifier, - [350259] = 5, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + ACTIONS(15742), 1, + anon_sym_RPAREN, + STATE(4706), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + [351345] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9225), 1, - anon_sym_LBRACK, - ACTIONS(9959), 1, - anon_sym_LT, - STATE(6335), 1, - sym_template_argument_list, - ACTIONS(9227), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [350276] = 3, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12119), 1, + anon_sym___attribute__, + ACTIONS(15744), 1, + anon_sym_SEMI, + STATE(9281), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [351362] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11365), 1, - anon_sym_AMP, - ACTIONS(11367), 4, + ACTIONS(13795), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(14865), 1, anon_sym_LBRACK, - [350289] = 6, + ACTIONS(15746), 1, + anon_sym_RPAREN, + STATE(4706), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + [351381] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15360), 1, + ACTIONS(15748), 1, sym_identifier, - STATE(2447), 1, - sym_template_type, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(6692), 1, + sym_template_type, + STATE(10302), 1, sym_splice_specifier, - [350308] = 5, + [351400] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15362), 1, + ACTIONS(15750), 1, anon_sym_SEMI, - STATE(9153), 2, + STATE(9333), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [350325] = 6, + [351417] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15364), 1, + ACTIONS(15247), 1, sym_identifier, - STATE(2392), 1, + STATE(3739), 1, sym_template_type, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(10419), 1, sym_splice_specifier, - [350344] = 5, + [351436] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15366), 1, + ACTIONS(15752), 1, anon_sym_SEMI, - STATE(9184), 2, + STATE(9413), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [350361] = 5, + [351453] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15368), 1, + ACTIONS(15754), 1, anon_sym_SEMI, - STATE(8921), 2, + STATE(9021), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [350378] = 6, + [351470] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(14847), 1, - sym_identifier, - STATE(3617), 1, - sym_template_type, - STATE(7001), 1, - sym__splice_specialization_specifier, - STATE(10201), 1, - sym_splice_specifier, - [350397] = 6, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + ACTIONS(14865), 1, + anon_sym_LBRACK, + ACTIONS(15756), 1, + anon_sym_RPAREN, + STATE(4706), 1, + sym_parameter_list, + STATE(8592), 1, + sym__function_declarator_seq, + [351489] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - ACTIONS(14481), 1, + ACTIONS(14865), 1, anon_sym_LBRACK, - ACTIONS(15370), 1, + ACTIONS(15758), 1, anon_sym_RPAREN, - STATE(4601), 1, + STATE(4706), 1, sym_parameter_list, - STATE(8431), 1, + STATE(8592), 1, sym__function_declarator_seq, - [350416] = 6, + [351508] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15247), 1, + sym_identifier, + STATE(3739), 1, + sym_template_type, + STATE(3804), 1, + sym__splice_specialization_specifier, + STATE(10450), 1, + sym_splice_specifier, + [351527] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15632), 1, + anon_sym_DOT, + STATE(9317), 1, + aux_sym_module_name_repeat1, + ACTIONS(15760), 3, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [351542] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12119), 1, + anon_sym___attribute__, + ACTIONS(15762), 1, + anon_sym_SEMI, + STATE(9021), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [351559] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - ACTIONS(14847), 1, + ACTIONS(15058), 1, + anon_sym_COLON_COLON, + ACTIONS(15060), 1, + anon_sym_inline, + ACTIONS(15694), 1, sym_identifier, - STATE(3617), 1, - sym_template_type, - STATE(5678), 1, - sym__splice_specialization_specifier, - STATE(10404), 1, - sym_splice_specifier, - [350435] = 6, + STATE(10049), 1, + sym__namespace_specifier, + STATE(10334), 1, + sym_nested_namespace_specifier, + [351578] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - ACTIONS(15372), 1, + ACTIONS(15764), 1, sym_identifier, - STATE(3456), 1, + STATE(2582), 1, sym_template_type, - STATE(5162), 1, + STATE(5426), 1, sym__splice_specialization_specifier, - STATE(10418), 1, + STATE(10302), 1, sym_splice_specifier, - [350454] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - STATE(3605), 1, - sym_template_argument_list, - ACTIONS(9137), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - [350471] = 6, + [351597] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15176), 1, + ACTIONS(15566), 1, sym_identifier, - ACTIONS(15178), 1, + ACTIONS(15568), 1, anon_sym_using, - ACTIONS(15180), 1, + ACTIONS(15570), 1, anon_sym_EQ, - STATE(9653), 1, + STATE(9974), 1, sym_attribute, - STATE(9678), 1, + STATE(9975), 1, sym_annotation, - [350490] = 5, + [351616] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9650), 1, + anon_sym_LBRACK, + ACTIONS(10320), 1, + anon_sym_LT, + STATE(6491), 1, + sym_template_argument_list, + ACTIONS(9652), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [351633] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12119), 1, anon_sym___attribute__, - ACTIONS(15374), 1, + ACTIONS(15766), 1, anon_sym_SEMI, - STATE(8921), 2, + STATE(9021), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [350507] = 5, + [351650] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(11779), 1, - anon_sym___attribute__, - STATE(4775), 1, - sym_attribute_specifier, - ACTIONS(7063), 2, - anon_sym_COMMA, - anon_sym_GT2, - [350524] = 5, - ACTIONS(13686), 1, + ACTIONS(13290), 1, + anon_sym_LBRACE, + ACTIONS(15768), 1, + anon_sym_LPAREN2, + STATE(4980), 1, + sym_requirement_seq, + STATE(10367), 1, + sym_requires_parameter_list, + [351666] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15376), 1, + ACTIONS(15770), 1, anon_sym_DQUOTE, - ACTIONS(15378), 1, + ACTIONS(15772), 1, aux_sym_string_literal_token1, - ACTIONS(15380), 1, + ACTIONS(15774), 1, sym_escape_sequence, - STATE(9350), 1, + STATE(9439), 1, aux_sym_string_literal_repeat1, - [350540] = 5, + [351682] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2968), 1, + anon_sym_LBRACE, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + STATE(5738), 1, + sym_initializer_list, + STATE(5807), 1, + sym_argument_list, + [351698] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(14676), 1, + anon_sym_COLON, + STATE(9760), 1, + sym_compound_statement, + STATE(10215), 1, + sym_field_initializer_list, + [351714] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8156), 1, + anon_sym_COLON, + ACTIONS(9965), 1, + anon_sym_LBRACE, + STATE(4342), 1, + sym_field_declaration_list, + STATE(10345), 1, + sym_base_class_clause, + [351730] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(15776), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15778), 1, + anon_sym_GT2, + STATE(9758), 1, + aux_sym_template_argument_list_repeat1, + [351746] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13298), 1, + anon_sym_LBRACE, + ACTIONS(15768), 1, + anon_sym_LPAREN2, + STATE(5137), 1, + sym_requirement_seq, + STATE(10457), 1, + sym_requires_parameter_list, + [351762] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8156), 1, + anon_sym_COLON, + ACTIONS(9965), 1, + anon_sym_LBRACE, + STATE(4377), 1, + sym_field_declaration_list, + STATE(10288), 1, + sym_base_class_clause, + [351778] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5164), 1, anon_sym_LBRACK_COLON, - STATE(3682), 1, + STATE(3808), 1, sym__splice_specialization_specifier, - STATE(9318), 1, + STATE(9532), 1, sym_splice_type_specifier, - STATE(9481), 1, + STATE(9605), 1, sym_splice_specifier, - [350556] = 4, - ACTIONS(13686), 1, + [351794] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(15382), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15780), 1, + anon_sym_EQ, + STATE(9529), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [351808] = 4, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(15782), 1, anon_sym_SQUOTE, - STATE(9290), 1, + STATE(9564), 1, aux_sym_char_literal_repeat1, - ACTIONS(15384), 2, + ACTIONS(15784), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [350570] = 5, + [351822] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8156), 1, + anon_sym_COLON, + ACTIONS(12978), 1, + anon_sym_LBRACE, + STATE(7575), 1, + sym_field_declaration_list, + STATE(10360), 1, + sym_base_class_clause, + [351838] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(5655), 1, anon_sym_COLON_COLON, - ACTIONS(9672), 1, + ACTIONS(10005), 1, anon_sym_LT, - ACTIONS(15387), 1, + ACTIONS(15786), 1, anon_sym_SEMI, - STATE(3601), 1, + STATE(3735), 1, sym_template_argument_list, - [350586] = 4, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(15389), 1, - anon_sym_SQUOTE, - STATE(9290), 1, - aux_sym_char_literal_repeat1, - ACTIONS(15391), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [350600] = 5, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(15378), 1, - aux_sym_string_literal_token1, - ACTIONS(15380), 1, - sym_escape_sequence, - ACTIONS(15393), 1, - anon_sym_DQUOTE, - STATE(9350), 1, - aux_sym_string_literal_repeat1, - [350616] = 5, + [351854] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15395), 1, + ACTIONS(15776), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(15397), 1, + ACTIONS(15788), 1, anon_sym_GT2, - STATE(9546), 1, + STATE(9908), 1, aux_sym_template_argument_list_repeat1, - [350632] = 5, + [351870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, - anon_sym_COLON, - ACTIONS(9596), 1, - anon_sym_LBRACE, - STATE(4260), 1, - sym_field_declaration_list, - STATE(10463), 1, - sym_base_class_clause, - [350648] = 5, - ACTIONS(13686), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15790), 1, + anon_sym_EQ, + STATE(9354), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [351884] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(15378), 1, - aux_sym_string_literal_token1, - ACTIONS(15380), 1, - sym_escape_sequence, - ACTIONS(15399), 1, - anon_sym_DQUOTE, - STATE(9350), 1, - aux_sym_string_literal_repeat1, - [350664] = 4, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, + anon_sym_LT, + ACTIONS(15792), 1, + anon_sym_SEMI, + STATE(3735), 1, + sym_template_argument_list, + [351900] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, - anon_sym_LPAREN2, - STATE(10065), 1, - sym_argument_list, - ACTIONS(15401), 2, + ACTIONS(15794), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [350678] = 5, + STATE(9435), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(15797), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [351914] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(14296), 1, + ACTIONS(14676), 1, anon_sym_COLON, - STATE(9841), 1, + STATE(9980), 1, sym_compound_statement, - STATE(10141), 1, + STATE(10342), 1, sym_field_initializer_list, - [350694] = 5, + [351930] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12922), 1, + ACTIONS(8156), 1, + anon_sym_COLON, + ACTIONS(8297), 1, anon_sym_LBRACE, - ACTIONS(15403), 1, - anon_sym_LPAREN2, - STATE(5018), 1, - sym_requirement_seq, - STATE(10101), 1, - sym_requires_parameter_list, - [350710] = 5, + STATE(2753), 1, + sym_field_declaration_list, + STATE(10347), 1, + sym_base_class_clause, + [351946] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2036), 1, + ACTIONS(4676), 1, anon_sym_LBRACE, - ACTIONS(8808), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - STATE(3783), 1, + STATE(5789), 1, sym_argument_list, - STATE(3811), 1, + STATE(7373), 1, sym_initializer_list, - [350726] = 5, - ACTIONS(3), 1, + [351962] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(12993), 1, - anon_sym_LBRACE, - ACTIONS(15403), 1, - anon_sym_LPAREN2, - STATE(6393), 1, - sym_requirement_seq, - STATE(10395), 1, - sym_requires_parameter_list, - [350742] = 5, + ACTIONS(15799), 1, + anon_sym_DQUOTE, + ACTIONS(15801), 1, + aux_sym_string_literal_token1, + ACTIONS(15803), 1, + sym_escape_sequence, + STATE(9601), 1, + aux_sym_string_literal_repeat1, + [351978] = 5, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(15805), 1, + anon_sym_DQUOTE, + ACTIONS(15807), 1, + aux_sym_string_literal_token1, + ACTIONS(15809), 1, + sym_escape_sequence, + STATE(9620), 1, + aux_sym_string_literal_repeat1, + [351994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(15813), 1, + anon_sym___attribute, + ACTIONS(15811), 3, anon_sym_COMMA, - ACTIONS(15395), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15405), 1, - anon_sym_GT2, - STATE(9662), 1, - aux_sym_template_argument_list_repeat1, - [350758] = 5, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(15407), 1, - aux_sym_preproc_include_token2, - ACTIONS(15409), 1, - anon_sym_LPAREN, - ACTIONS(15411), 1, - sym_preproc_arg, - STATE(10129), 1, - sym_preproc_params, - [350774] = 5, - ACTIONS(13686), 1, + anon_sym_SEMI, + anon_sym___attribute__, + [352006] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15409), 1, - anon_sym_LPAREN, - ACTIONS(15413), 1, - aux_sym_preproc_include_token2, - ACTIONS(15415), 1, - sym_preproc_arg, - STATE(10155), 1, - sym_preproc_params, - [350790] = 5, + ACTIONS(15815), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [352016] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15395), 1, + ACTIONS(15776), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(15417), 1, + ACTIONS(15817), 1, anon_sym_GT2, - STATE(9587), 1, + STATE(9939), 1, aux_sym_template_argument_list_repeat1, - [350806] = 5, + [352032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 1, - anon_sym_LBRACE, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - STATE(5660), 1, - sym_argument_list, - STATE(7265), 1, - sym_initializer_list, - [350822] = 5, + ACTIONS(15821), 1, + anon_sym___attribute, + ACTIONS(15819), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [352044] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2608), 1, - anon_sym_LBRACE, - ACTIONS(10582), 1, - anon_sym_LPAREN2, - STATE(5649), 1, - sym_initializer_list, - STATE(5662), 1, - sym_argument_list, - [350838] = 4, - ACTIONS(3), 1, + ACTIONS(14845), 1, + sym_identifier, + ACTIONS(15823), 1, + aux_sym_preproc_if_token2, + STATE(9072), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(10856), 1, + sym_enumerator, + [352060] = 4, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15419), 1, - anon_sym___except, - ACTIONS(15421), 1, - anon_sym___finally, - STATE(405), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [350852] = 5, - ACTIONS(13686), 1, + ACTIONS(15825), 1, + anon_sym_SQUOTE, + STATE(9564), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15784), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [352074] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15378), 1, + ACTIONS(15801), 1, aux_sym_string_literal_token1, - ACTIONS(15380), 1, + ACTIONS(15803), 1, sym_escape_sequence, - ACTIONS(15423), 1, + ACTIONS(15827), 1, anon_sym_DQUOTE, - STATE(9350), 1, + STATE(9601), 1, aux_sym_string_literal_repeat1, - [350868] = 5, + [352090] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(9317), 1, - sym_splice_type_specifier, - STATE(9481), 1, - sym_splice_specifier, - [350884] = 5, + ACTIONS(15829), 1, + sym_identifier, + ACTIONS(15831), 1, + anon_sym_SEMI, + ACTIONS(15833), 1, + anon_sym_COLON, + STATE(9367), 1, + sym_module_name, + [352106] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6834), 1, - anon_sym_LBRACE, - ACTIONS(7817), 1, + ACTIONS(8156), 1, anon_sym_COLON, - STATE(2036), 1, + ACTIONS(8503), 1, + anon_sym_LBRACE, + STATE(3025), 1, sym_field_declaration_list, - STATE(10355), 1, + STATE(10228), 1, sym_base_class_clause, - [350900] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15403), 1, - anon_sym_LPAREN2, - ACTIONS(15425), 1, - anon_sym_LBRACE, - STATE(7883), 1, - sym_requirement_seq, - STATE(10413), 1, - sym_requires_parameter_list, - [350916] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - ACTIONS(15427), 1, - anon_sym_SEMI, - STATE(3601), 1, - sym_template_argument_list, - [350932] = 4, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(15429), 1, - anon_sym_SQUOTE, - STATE(9290), 1, - aux_sym_char_literal_repeat1, - ACTIONS(15391), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [350946] = 5, + [352122] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - ACTIONS(15431), 1, - anon_sym_SEMI, - STATE(3601), 1, - sym_template_argument_list, - [350962] = 5, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(15378), 1, - aux_sym_string_literal_token1, - ACTIONS(15380), 1, - sym_escape_sequence, - ACTIONS(15433), 1, - anon_sym_DQUOTE, - STATE(9350), 1, - aux_sym_string_literal_repeat1, - [350978] = 5, + ACTIONS(15835), 1, + anon_sym_COMMA, + STATE(9450), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(15838), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [352136] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 1, - anon_sym_LBRACE, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - STATE(3723), 1, - sym_argument_list, - STATE(5901), 1, - sym_initializer_list, - [350994] = 5, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(15776), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15840), 1, + anon_sym_GT2, + STATE(9995), 1, + aux_sym_template_argument_list_repeat1, + [352152] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - STATE(5707), 1, - sym_argument_list, - STATE(7118), 1, - sym_initializer_list, - [351010] = 5, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(15776), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15842), 1, + anon_sym_GT2, + STATE(9665), 1, + aux_sym_template_argument_list_repeat1, + [352168] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, + ACTIONS(8156), 1, anon_sym_COLON, - ACTIONS(8193), 1, + ACTIONS(11427), 1, anon_sym_LBRACE, - STATE(2853), 1, + STATE(5999), 1, sym_field_declaration_list, - STATE(10175), 1, + STATE(10364), 1, sym_base_class_clause, - [351026] = 4, + [352184] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10005), 1, + anon_sym_LT, + STATE(2131), 1, + sym_template_argument_list, + ACTIONS(9652), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [352198] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15435), 1, - anon_sym_EQ, - STATE(9185), 2, + ACTIONS(15844), 1, + anon_sym_using, + STATE(9354), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [351040] = 5, - ACTIONS(13686), 1, + [352212] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15437), 1, + ACTIONS(15846), 1, anon_sym_DQUOTE, - ACTIONS(15439), 1, + ACTIONS(15848), 1, aux_sym_string_literal_token1, - ACTIONS(15441), 1, + ACTIONS(15850), 1, sym_escape_sequence, - STATE(9288), 1, + STATE(9473), 1, aux_sym_string_literal_repeat1, - [351056] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - ACTIONS(15443), 1, - anon_sym_SEMI, - STATE(3601), 1, - sym_template_argument_list, - [351072] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2692), 1, - anon_sym_LBRACE, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - STATE(5684), 1, - sym_initializer_list, - STATE(5707), 1, - sym_argument_list, - [351088] = 5, - ACTIONS(13686), 1, + [352228] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15445), 1, + ACTIONS(15852), 1, anon_sym_DQUOTE, - ACTIONS(15447), 1, + ACTIONS(15854), 1, aux_sym_string_literal_token1, - ACTIONS(15449), 1, + ACTIONS(15856), 1, sym_escape_sequence, - STATE(9344), 1, + STATE(9500), 1, aux_sym_string_literal_repeat1, - [351104] = 5, - ACTIONS(3), 1, + [352244] = 4, + ACTIONS(14065), 1, sym_comment, - ACTIONS(7817), 1, - anon_sym_COLON, - ACTIONS(9027), 1, - anon_sym_LBRACE, - STATE(3726), 1, - sym_field_declaration_list, - STATE(10456), 1, - sym_base_class_clause, - [351120] = 5, - ACTIONS(13686), 1, + ACTIONS(15858), 1, + anon_sym_SQUOTE, + STATE(9564), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15784), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [352258] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15451), 1, + ACTIONS(15860), 1, anon_sym_DQUOTE, - ACTIONS(15453), 1, + ACTIONS(15862), 1, aux_sym_string_literal_token1, - ACTIONS(15455), 1, + ACTIONS(15864), 1, sym_escape_sequence, - STATE(9395), 1, + STATE(9497), 1, aux_sym_string_literal_repeat1, - [351136] = 4, + [352274] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(15457), 1, - anon_sym_using, - STATE(9185), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [351150] = 5, + ACTIONS(15866), 1, + anon_sym___except, + ACTIONS(15868), 1, + anon_sym___finally, + STATE(748), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [352288] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(9481), 1, - sym_splice_specifier, - STATE(9482), 1, - sym_splice_type_specifier, - [351166] = 4, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(12755), 1, + anon_sym_LPAREN2, + STATE(9752), 2, + sym_argument_list, + sym_initializer_list, + [352302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15459), 1, + ACTIONS(15870), 1, + sym_identifier, + ACTIONS(15872), 3, anon_sym_COMMA, - STATE(9329), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(15462), 2, anon_sym_RPAREN, - anon_sym_COLON, - [351180] = 5, + anon_sym_GT2, + [352314] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, + ACTIONS(8156), 1, anon_sym_COLON, - ACTIONS(11202), 1, + ACTIONS(8158), 1, anon_sym_LBRACE, - STATE(5868), 1, + STATE(2697), 1, sym_field_declaration_list, - STATE(10288), 1, + STATE(10454), 1, sym_base_class_clause, - [351196] = 5, - ACTIONS(3), 1, + [352330] = 4, + ACTIONS(14065), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(14296), 1, - anon_sym_COLON, - STATE(9757), 1, - sym_compound_statement, - STATE(10177), 1, - sym_field_initializer_list, - [351212] = 5, + ACTIONS(15874), 1, + anon_sym_SQUOTE, + STATE(9564), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15784), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [352344] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(14465), 1, - sym_identifier, - ACTIONS(15464), 1, - aux_sym_preproc_if_token2, - STATE(8924), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(11049), 1, - sym_enumerator, - [351228] = 5, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(15776), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15876), 1, + anon_sym_GT2, + STATE(9737), 1, + aux_sym_template_argument_list_repeat1, + [352360] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2608), 1, + ACTIONS(2952), 1, anon_sym_LBRACE, - ACTIONS(10582), 1, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(5660), 1, + STATE(5537), 1, sym_argument_list, - STATE(5664), 1, + STATE(5538), 1, sym_initializer_list, - [351244] = 4, + [352376] = 5, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(15801), 1, + aux_sym_string_literal_token1, + ACTIONS(15803), 1, + sym_escape_sequence, + ACTIONS(15878), 1, + anon_sym_DQUOTE, + STATE(9601), 1, + aux_sym_string_literal_repeat1, + [352392] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15466), 1, - anon_sym___except, - ACTIONS(15468), 1, - anon_sym___finally, - STATE(602), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [351258] = 5, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(15776), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15880), 1, + anon_sym_GT2, + STATE(9690), 1, + aux_sym_template_argument_list_repeat1, + [352408] = 5, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(15882), 1, + anon_sym_DQUOTE, + ACTIONS(15884), 1, + aux_sym_string_literal_token1, + ACTIONS(15886), 1, + sym_escape_sequence, + STATE(9547), 1, + aux_sym_string_literal_repeat1, + [352424] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, + ACTIONS(8156), 1, anon_sym_COLON, - ACTIONS(7866), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - STATE(2674), 1, + STATE(4731), 1, sym_field_declaration_list, - STATE(10353), 1, + STATE(10444), 1, sym_base_class_clause, - [351274] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(14296), 1, - anon_sym_COLON, - STATE(9725), 1, - sym_compound_statement, - STATE(10092), 1, - sym_field_initializer_list, - [351290] = 5, - ACTIONS(13686), 1, + [352440] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15470), 1, + ACTIONS(15888), 1, anon_sym_DQUOTE, - ACTIONS(15472), 1, + ACTIONS(15890), 1, aux_sym_string_literal_token1, - ACTIONS(15474), 1, + ACTIONS(15892), 1, sym_escape_sequence, - STATE(9309), 1, + STATE(9467), 1, aux_sym_string_literal_repeat1, - [351306] = 4, + [352456] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, - anon_sym_LPAREN2, - STATE(10266), 1, - sym_argument_list, - ACTIONS(15476), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [351320] = 4, - ACTIONS(3), 1, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, + anon_sym_LT, + ACTIONS(15894), 1, + anon_sym_SEMI, + STATE(3735), 1, + sym_template_argument_list, + [352472] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(15478), 1, - anon_sym_EQ, - STATE(9414), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [351334] = 4, + ACTIONS(15801), 1, + aux_sym_string_literal_token1, + ACTIONS(15803), 1, + sym_escape_sequence, + ACTIONS(15896), 1, + anon_sym_DQUOTE, + STATE(9601), 1, + aux_sym_string_literal_repeat1, + [352488] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14245), 1, + ACTIONS(14632), 1, sym_identifier, - ACTIONS(15480), 1, + ACTIONS(15898), 1, aux_sym_preproc_if_token2, - STATE(8927), 2, + STATE(9496), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [351348] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(15395), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15482), 1, - anon_sym_GT2, - STATE(10004), 1, - aux_sym_template_argument_list_repeat1, - [351364] = 4, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(15484), 1, - anon_sym_SQUOTE, - STATE(9290), 1, - aux_sym_char_literal_repeat1, - ACTIONS(15391), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [351378] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(14296), 1, - anon_sym_COLON, - STATE(9632), 1, - sym_compound_statement, - STATE(10174), 1, - sym_field_initializer_list, - [351394] = 5, - ACTIONS(13686), 1, + [352502] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15378), 1, + ACTIONS(15900), 1, + anon_sym_DQUOTE, + ACTIONS(15902), 1, aux_sym_string_literal_token1, - ACTIONS(15380), 1, + ACTIONS(15904), 1, sym_escape_sequence, - ACTIONS(15486), 1, - anon_sym_DQUOTE, - STATE(9350), 1, + STATE(9559), 1, aux_sym_string_literal_repeat1, - [351410] = 5, + [352518] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7021), 1, + ACTIONS(7395), 1, anon_sym_LBRACE, - ACTIONS(15488), 1, + ACTIONS(15906), 1, anon_sym_COLON_COLON, - ACTIONS(15490), 1, + ACTIONS(15908), 1, anon_sym_EQ, - STATE(894), 1, + STATE(435), 1, sym_declaration_list, - [351426] = 5, + [352534] = 5, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(15910), 1, + aux_sym_preproc_include_token2, + ACTIONS(15912), 1, + anon_sym_LPAREN, + ACTIONS(15914), 1, + sym_preproc_arg, + STATE(10529), 1, + sym_preproc_params, + [352550] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15492), 1, + ACTIONS(13268), 1, + anon_sym_LBRACE, + ACTIONS(15768), 1, + anon_sym_LPAREN2, + STATE(5671), 1, + sym_requirement_seq, + STATE(10366), 1, + sym_requires_parameter_list, + [352566] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8156), 1, + anon_sym_COLON, + ACTIONS(12978), 1, + anon_sym_LBRACE, + STATE(7571), 1, + sym_field_declaration_list, + STATE(10624), 1, + sym_base_class_clause, + [352582] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15916), 1, + anon_sym_COMMA, + STATE(9606), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(15918), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [352596] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15920), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(15494), 1, + ACTIONS(15922), 1, anon_sym_COMMA, - ACTIONS(15496), 1, + ACTIONS(15924), 1, anon_sym_LBRACE, - STATE(9724), 1, + STATE(10026), 1, aux_sym_base_class_clause_repeat1, - [351442] = 5, + [352612] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(13348), 1, anon_sym_LBRACE, - ACTIONS(10347), 1, + ACTIONS(15768), 1, anon_sym_LPAREN2, - STATE(5546), 1, - sym_argument_list, - STATE(5578), 1, - sym_initializer_list, - [351458] = 5, + STATE(6649), 1, + sym_requirement_seq, + STATE(10244), 1, + sym_requires_parameter_list, + [352628] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, + ACTIONS(8156), 1, + anon_sym_COLON, + ACTIONS(9314), 1, anon_sym_LBRACE, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - STATE(5523), 1, - sym_argument_list, - STATE(5932), 1, - sym_initializer_list, - [351474] = 5, + STATE(7713), 1, + sym_field_declaration_list, + STATE(10466), 1, + sym_base_class_clause, + [352644] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2036), 1, + ACTIONS(8156), 1, + anon_sym_COLON, + ACTIONS(9314), 1, anon_sym_LBRACE, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - STATE(3723), 1, - sym_argument_list, - STATE(3825), 1, - sym_initializer_list, - [351490] = 5, - ACTIONS(13686), 1, + STATE(7717), 1, + sym_field_declaration_list, + STATE(10467), 1, + sym_base_class_clause, + [352660] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15498), 1, - anon_sym_DQUOTE, - ACTIONS(15500), 1, + ACTIONS(15801), 1, aux_sym_string_literal_token1, - ACTIONS(15503), 1, + ACTIONS(15803), 1, sym_escape_sequence, - STATE(9350), 1, + ACTIONS(15926), 1, + anon_sym_DQUOTE, + STATE(9601), 1, aux_sym_string_literal_repeat1, - [351506] = 5, - ACTIONS(3), 1, + [352676] = 4, + ACTIONS(14065), 1, sym_comment, - ACTIONS(14465), 1, - sym_identifier, - ACTIONS(15266), 1, - aux_sym_preproc_if_token2, - STATE(9332), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(11049), 1, - sym_enumerator, - [351522] = 5, - ACTIONS(3), 1, + ACTIONS(15928), 1, + anon_sym_SQUOTE, + STATE(9564), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15784), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [352690] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - ACTIONS(15506), 1, - anon_sym_SEMI, - STATE(3601), 1, - sym_template_argument_list, - [351538] = 5, + ACTIONS(15912), 1, + anon_sym_LPAREN, + ACTIONS(15930), 1, + aux_sym_preproc_include_token2, + ACTIONS(15932), 1, + sym_preproc_arg, + STATE(10477), 1, + sym_preproc_params, + [352706] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6834), 1, - anon_sym_LBRACE, - ACTIONS(7817), 1, - anon_sym_COLON, - STATE(2047), 1, - sym_field_declaration_list, - STATE(10199), 1, - sym_base_class_clause, - [351554] = 4, - ACTIONS(3), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(9438), 1, + sym_splice_type_specifier, + STATE(9605), 1, + sym_splice_specifier, + [352722] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15508), 1, - anon_sym___except, - ACTIONS(15510), 1, - anon_sym___finally, - STATE(602), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [351568] = 5, + ACTIONS(15801), 1, + aux_sym_string_literal_token1, + ACTIONS(15803), 1, + sym_escape_sequence, + ACTIONS(15934), 1, + anon_sym_DQUOTE, + STATE(9601), 1, + aux_sym_string_literal_repeat1, + [352738] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 1, + ACTIONS(4910), 1, anon_sym_LBRACE, - ACTIONS(8808), 1, + ACTIONS(10982), 1, anon_sym_LPAREN2, - STATE(3783), 1, + STATE(5807), 1, sym_argument_list, - STATE(5860), 1, + STATE(7256), 1, sym_initializer_list, - [351584] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(15395), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15512), 1, - anon_sym_GT2, - STATE(9965), 1, - aux_sym_template_argument_list_repeat1, - [351600] = 5, + [352754] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15403), 1, - anon_sym_LPAREN2, - ACTIONS(15514), 1, + ACTIONS(8156), 1, + anon_sym_COLON, + ACTIONS(8269), 1, anon_sym_LBRACE, - STATE(2917), 1, - sym_requirement_seq, - STATE(10421), 1, - sym_requires_parameter_list, - [351616] = 4, - ACTIONS(13686), 1, + STATE(2820), 1, + sym_field_declaration_list, + STATE(10485), 1, + sym_base_class_clause, + [352770] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15516), 1, + ACTIONS(15936), 1, + anon_sym_DQUOTE, + ACTIONS(15938), 1, + aux_sym_string_literal_token1, + ACTIONS(15940), 1, + sym_escape_sequence, + STATE(9539), 1, + aux_sym_string_literal_repeat1, + [352786] = 4, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(15942), 1, anon_sym_SQUOTE, - STATE(9290), 1, + STATE(9564), 1, aux_sym_char_literal_repeat1, - ACTIONS(15391), 2, + ACTIONS(15784), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [351630] = 5, - ACTIONS(3), 1, + [352800] = 4, + ACTIONS(14065), 1, sym_comment, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(15395), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15518), 1, - anon_sym_GT2, + ACTIONS(15944), 1, + anon_sym_SQUOTE, STATE(9564), 1, - aux_sym_template_argument_list_repeat1, - [351646] = 5, - ACTIONS(3), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15784), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [352814] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(6203), 1, - anon_sym_SEMI, - ACTIONS(9672), 1, - anon_sym_LT, - STATE(2655), 1, - sym_template_argument_list, - [351662] = 4, + ACTIONS(15946), 1, + anon_sym_DQUOTE, + ACTIONS(15948), 1, + aux_sym_string_literal_token1, + ACTIONS(15950), 1, + sym_escape_sequence, + STATE(9557), 1, + aux_sym_string_literal_repeat1, + [352830] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14245), 1, + ACTIONS(14632), 1, sym_identifier, - ACTIONS(15520), 1, + ACTIONS(15952), 1, aux_sym_preproc_if_token2, - STATE(9340), 2, + STATE(9007), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [351676] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11943), 1, - anon_sym___attribute, - ACTIONS(11941), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [351688] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2738), 1, - anon_sym_LBRACE, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - STATE(5546), 1, - sym_argument_list, - STATE(5981), 1, - sym_initializer_list, - [351704] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15522), 1, - anon_sym_COMMA, - STATE(9446), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(15524), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [351718] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2592), 1, - anon_sym_LBRACE, - ACTIONS(10347), 1, - anon_sym_LPAREN2, - STATE(5523), 1, - sym_argument_list, - STATE(5524), 1, - sym_initializer_list, - [351734] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15494), 1, - anon_sym_COMMA, - ACTIONS(15526), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15528), 1, - anon_sym_LBRACE, - STATE(10032), 1, - aux_sym_base_class_clause_repeat1, - [351750] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(9347), 1, - sym_splice_type_specifier, - STATE(9481), 1, - sym_splice_specifier, - [351766] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(9349), 1, - sym_splice_type_specifier, - STATE(9481), 1, - sym_splice_specifier, - [351782] = 5, - ACTIONS(13686), 1, + [352844] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15530), 1, + ACTIONS(15801), 1, + aux_sym_string_literal_token1, + ACTIONS(15803), 1, + sym_escape_sequence, + ACTIONS(15954), 1, anon_sym_DQUOTE, - ACTIONS(15532), 1, + STATE(9601), 1, + aux_sym_string_literal_repeat1, + [352860] = 5, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(15801), 1, aux_sym_string_literal_token1, - ACTIONS(15534), 1, + ACTIONS(15803), 1, sym_escape_sequence, - STATE(9441), 1, + ACTIONS(15956), 1, + anon_sym_DQUOTE, + STATE(9601), 1, aux_sym_string_literal_repeat1, - [351798] = 5, + [352876] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15395), 1, + ACTIONS(15776), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(15536), 1, + ACTIONS(15958), 1, anon_sym_GT2, - STATE(9597), 1, + STATE(9781), 1, aux_sym_template_argument_list_repeat1, - [351814] = 4, + [352892] = 5, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(15801), 1, + aux_sym_string_literal_token1, + ACTIONS(15803), 1, + sym_escape_sequence, + ACTIONS(15960), 1, + anon_sym_DQUOTE, + STATE(9601), 1, + aux_sym_string_literal_repeat1, + [352908] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15538), 1, - anon_sym_using, - STATE(9185), 2, + ACTIONS(15962), 1, + anon_sym_EQ, + STATE(9354), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [351828] = 5, + [352922] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, - anon_sym_COLON, - ACTIONS(9027), 1, + ACTIONS(15768), 1, + anon_sym_LPAREN2, + ACTIONS(15964), 1, anon_sym_LBRACE, - STATE(7613), 1, - sym_field_declaration_list, - STATE(10348), 1, - sym_base_class_clause, - [351844] = 5, + STATE(3006), 1, + sym_requirement_seq, + STATE(10331), 1, + sym_requires_parameter_list, + [352938] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15966), 1, + anon_sym_using, + STATE(9354), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [352952] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, + ACTIONS(8156), 1, anon_sym_COLON, - ACTIONS(9027), 1, + ACTIONS(8297), 1, anon_sym_LBRACE, - STATE(7589), 1, + STATE(2733), 1, sym_field_declaration_list, - STATE(10350), 1, + STATE(10291), 1, sym_base_class_clause, - [351860] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15540), 1, - sym_identifier, - ACTIONS(15542), 1, - anon_sym_SEMI, - ACTIONS(15544), 1, - anon_sym_COLON, - STATE(9250), 1, - sym_module_name, - [351876] = 2, + [352968] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15546), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15190), 1, anon_sym_EQ, - anon_sym_try, - [351886] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - ACTIONS(15548), 1, - anon_sym_SEMI, - STATE(3601), 1, - sym_template_argument_list, - [351902] = 5, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(15550), 1, - anon_sym_DQUOTE, - ACTIONS(15552), 1, - aux_sym_string_literal_token1, - ACTIONS(15554), 1, - sym_escape_sequence, - STATE(9521), 1, - aux_sym_string_literal_repeat1, - [351918] = 5, - ACTIONS(13686), 1, + STATE(9584), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [352982] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15556), 1, + ACTIONS(15968), 1, anon_sym_DQUOTE, - ACTIONS(15558), 1, + ACTIONS(15970), 1, aux_sym_string_literal_token1, - ACTIONS(15560), 1, + ACTIONS(15972), 1, sym_escape_sequence, - STATE(9389), 1, + STATE(9582), 1, aux_sym_string_literal_repeat1, - [351934] = 5, - ACTIONS(3), 1, + [352998] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - ACTIONS(15562), 1, - anon_sym_SEMI, - STATE(3601), 1, - sym_template_argument_list, - [351950] = 5, + ACTIONS(15912), 1, + anon_sym_LPAREN, + ACTIONS(15974), 1, + aux_sym_preproc_include_token2, + ACTIONS(15976), 1, + sym_preproc_arg, + STATE(10300), 1, + sym_preproc_params, + [353014] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, + ACTIONS(8156), 1, anon_sym_COLON, - ACTIONS(8007), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - STATE(2668), 1, + STATE(4718), 1, sym_field_declaration_list, - STATE(10310), 1, + STATE(10239), 1, sym_base_class_clause, - [351966] = 4, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(15564), 1, - anon_sym_SQUOTE, - STATE(9290), 1, - aux_sym_char_literal_repeat1, - ACTIONS(15391), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [351980] = 5, - ACTIONS(13686), 1, + [353030] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(15566), 1, - anon_sym_DQUOTE, - ACTIONS(15568), 1, - aux_sym_string_literal_token1, - ACTIONS(15570), 1, - sym_escape_sequence, - STATE(9383), 1, - aux_sym_string_literal_repeat1, - [351996] = 5, - ACTIONS(13686), 1, + ACTIONS(15829), 1, + sym_identifier, + ACTIONS(15978), 1, + anon_sym_SEMI, + ACTIONS(15980), 1, + anon_sym_COLON, + STATE(9285), 1, + sym_module_name, + [353046] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(15378), 1, - aux_sym_string_literal_token1, - ACTIONS(15380), 1, - sym_escape_sequence, - ACTIONS(15572), 1, - anon_sym_DQUOTE, - STATE(9350), 1, - aux_sym_string_literal_repeat1, - [352012] = 5, + ACTIONS(13279), 1, + anon_sym_LBRACE, + ACTIONS(15768), 1, + anon_sym_LPAREN2, + STATE(5141), 1, + sym_requirement_seq, + STATE(10515), 1, + sym_requires_parameter_list, + [353062] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15494), 1, - anon_sym_COMMA, - ACTIONS(15574), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15576), 1, + ACTIONS(4922), 1, anon_sym_LBRACE, - STATE(9718), 1, - aux_sym_base_class_clause_repeat1, - [352028] = 5, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + STATE(3894), 1, + sym_argument_list, + STATE(5969), 1, + sym_initializer_list, + [353078] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - ACTIONS(15578), 1, - anon_sym_SEMI, - STATE(3601), 1, - sym_template_argument_list, - [352044] = 5, - ACTIONS(13686), 1, + ACTIONS(8156), 1, + anon_sym_COLON, + ACTIONS(8503), 1, + anon_sym_LBRACE, + STATE(3036), 1, + sym_field_declaration_list, + STATE(10568), 1, + sym_base_class_clause, + [353094] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15580), 1, + ACTIONS(15982), 1, anon_sym_DQUOTE, - ACTIONS(15582), 1, + ACTIONS(15984), 1, aux_sym_string_literal_token1, - ACTIONS(15584), 1, + ACTIONS(15986), 1, sym_escape_sequence, - STATE(9448), 1, + STATE(9540), 1, aux_sym_string_literal_repeat1, - [352060] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - ACTIONS(15586), 1, - anon_sym_SEMI, - STATE(3601), 1, - sym_template_argument_list, - [352076] = 4, + [353110] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15588), 1, + ACTIONS(15988), 1, anon_sym_EQ, - STATE(9185), 2, + STATE(9354), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [352090] = 5, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(15378), 1, - aux_sym_string_literal_token1, - ACTIONS(15380), 1, - sym_escape_sequence, - ACTIONS(15590), 1, - anon_sym_DQUOTE, - STATE(9350), 1, - aux_sym_string_literal_repeat1, - [352106] = 4, + [353124] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(15592), 1, - anon_sym_using, - STATE(9185), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [352120] = 4, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(15594), 1, - anon_sym_SQUOTE, - STATE(9290), 1, - aux_sym_char_literal_repeat1, - ACTIONS(15391), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [352134] = 4, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(9525), 1, + sym_splice_type_specifier, + STATE(9605), 1, + sym_splice_specifier, + [353140] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14762), 1, + ACTIONS(15135), 1, anon_sym_EQ, - STATE(9320), 2, + STATE(9501), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [352148] = 5, + [353154] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(9307), 1, - sym_splice_type_specifier, - STATE(9481), 1, - sym_splice_specifier, - [352164] = 5, + ACTIONS(15990), 1, + anon_sym___except, + ACTIONS(15992), 1, + anon_sym___finally, + STATE(363), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [353168] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(15994), 1, anon_sym_COMMA, - ACTIONS(15395), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15596), 1, - anon_sym_GT2, - STATE(9664), 1, - aux_sym_template_argument_list_repeat1, - [352180] = 5, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(15378), 1, - aux_sym_string_literal_token1, - ACTIONS(15380), 1, - sym_escape_sequence, - ACTIONS(15598), 1, - anon_sym_DQUOTE, - STATE(9350), 1, - aux_sym_string_literal_repeat1, - [352196] = 5, + STATE(9600), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(15996), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [353182] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(14296), 1, + ACTIONS(14676), 1, anon_sym_COLON, - STATE(9914), 1, + STATE(9774), 1, sym_compound_statement, - STATE(10363), 1, + STATE(10287), 1, sym_field_initializer_list, - [352212] = 5, - ACTIONS(3), 1, + [353198] = 4, + ACTIONS(14065), 1, sym_comment, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(15395), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15600), 1, - anon_sym_GT2, - STATE(9607), 1, - aux_sym_template_argument_list_repeat1, - [352228] = 4, - ACTIONS(13686), 1, + ACTIONS(15998), 1, + anon_sym_SQUOTE, + STATE(9564), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15784), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [353212] = 4, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15602), 1, + ACTIONS(16000), 1, anon_sym_SQUOTE, - STATE(9290), 1, + STATE(9564), 1, aux_sym_char_literal_repeat1, - ACTIONS(15391), 2, + ACTIONS(15784), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [352242] = 5, + [353226] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, + ACTIONS(16002), 1, + anon_sym_COMMA, + STATE(9630), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(16004), 2, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(7819), 1, - anon_sym_LBRACE, - STATE(2624), 1, - sym_field_declaration_list, - STATE(10100), 1, - sym_base_class_clause, - [352258] = 4, + [353240] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15604), 1, + ACTIONS(16006), 1, anon_sym_EQ, - STATE(9407), 2, + STATE(9354), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [352272] = 4, + [353254] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15606), 1, + ACTIONS(15184), 1, anon_sym_EQ, - STATE(9185), 2, + STATE(9514), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [352286] = 4, + [353268] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(14827), 1, - anon_sym_EQ, - STATE(9388), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [352300] = 5, + ACTIONS(2396), 1, + anon_sym_LBRACE, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + STATE(3887), 1, + sym_initializer_list, + STATE(3892), 1, + sym_argument_list, + [353284] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, + ACTIONS(15829), 1, + sym_identifier, + ACTIONS(16008), 1, + anon_sym_SEMI, + ACTIONS(16010), 1, anon_sym_COLON, - ACTIONS(8909), 1, - anon_sym_LBRACE, - STATE(4287), 1, - sym_field_declaration_list, - STATE(10138), 1, - sym_base_class_clause, - [352316] = 5, + STATE(9345), 1, + sym_module_name, + [353300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - ACTIONS(15608), 1, + ACTIONS(15640), 4, anon_sym_SEMI, - STATE(3601), 1, - sym_template_argument_list, - [352332] = 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_DOT, + [353310] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12904), 1, + ACTIONS(3052), 1, anon_sym_LBRACE, - ACTIONS(15403), 1, + ACTIONS(10900), 1, anon_sym_LPAREN2, - STATE(5025), 1, - sym_requirement_seq, - STATE(10253), 1, - sym_requires_parameter_list, - [352348] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15612), 1, - anon_sym___attribute, - ACTIONS(15610), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [352360] = 4, + STATE(5772), 1, + sym_argument_list, + STATE(5843), 1, + sym_initializer_list, + [353326] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15614), 1, + ACTIONS(16012), 1, anon_sym_EQ, - STATE(9185), 2, + STATE(9354), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [352374] = 4, + [353340] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14815), 1, + ACTIONS(15196), 1, anon_sym_EQ, - STATE(9401), 2, + STATE(9537), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [352388] = 5, + [353354] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(5655), 1, anon_sym_COLON_COLON, - ACTIONS(9672), 1, + ACTIONS(10005), 1, anon_sym_LT, - ACTIONS(15616), 1, + ACTIONS(16014), 1, anon_sym_SEMI, - STATE(3601), 1, + STATE(3735), 1, sym_template_argument_list, - [352404] = 5, - ACTIONS(13686), 1, + [353370] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(15618), 1, - anon_sym_DQUOTE, - ACTIONS(15620), 1, - aux_sym_string_literal_token1, - ACTIONS(15622), 1, - sym_escape_sequence, - STATE(9525), 1, - aux_sym_string_literal_repeat1, - [352420] = 5, + ACTIONS(3052), 1, + anon_sym_LBRACE, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + STATE(5780), 1, + sym_initializer_list, + STATE(5789), 1, + sym_argument_list, + [353386] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, - anon_sym_COLON, - ACTIONS(9027), 1, + ACTIONS(15922), 1, + anon_sym_COMMA, + ACTIONS(16016), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16018), 1, anon_sym_LBRACE, - STATE(3778), 1, - sym_field_declaration_list, - STATE(10196), 1, - sym_base_class_clause, - [352436] = 4, + STATE(9740), 1, + aux_sym_base_class_clause_repeat1, + [353402] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(13319), 1, anon_sym_LBRACE, - ACTIONS(12383), 1, + ACTIONS(15768), 1, anon_sym_LPAREN2, - STATE(10034), 2, - sym_argument_list, - sym_initializer_list, - [352450] = 5, - ACTIONS(13686), 1, + STATE(3648), 1, + sym_requirement_seq, + STATE(10534), 1, + sym_requires_parameter_list, + [353418] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(15624), 1, - anon_sym_DQUOTE, - ACTIONS(15626), 1, + ACTIONS(7243), 1, + anon_sym_LBRACE, + ACTIONS(8156), 1, + anon_sym_COLON, + STATE(2140), 1, + sym_field_declaration_list, + STATE(10253), 1, + sym_base_class_clause, + [353434] = 5, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(15801), 1, aux_sym_string_literal_token1, - ACTIONS(15628), 1, + ACTIONS(15803), 1, sym_escape_sequence, - STATE(9432), 1, + ACTIONS(16020), 1, + anon_sym_DQUOTE, + STATE(9601), 1, aux_sym_string_literal_repeat1, - [352466] = 4, + [353450] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15630), 1, + ACTIONS(16022), 1, anon_sym_EQ, - STATE(9185), 2, + STATE(9354), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [352480] = 4, + [353464] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14835), 1, + ACTIONS(15168), 1, anon_sym_EQ, - STATE(9420), 2, + STATE(9543), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [352494] = 5, - ACTIONS(13686), 1, + [353478] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15632), 1, - anon_sym_DQUOTE, - ACTIONS(15634), 1, + ACTIONS(15801), 1, aux_sym_string_literal_token1, - ACTIONS(15636), 1, + ACTIONS(15803), 1, sym_escape_sequence, - STATE(9293), 1, + ACTIONS(16024), 1, + anon_sym_DQUOTE, + STATE(9601), 1, aux_sym_string_literal_repeat1, - [352510] = 5, - ACTIONS(3), 1, + [353494] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(15395), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15638), 1, - anon_sym_GT2, - STATE(9878), 1, - aux_sym_template_argument_list_repeat1, - [352526] = 3, - ACTIONS(3), 1, + ACTIONS(15801), 1, + aux_sym_string_literal_token1, + ACTIONS(15803), 1, + sym_escape_sequence, + ACTIONS(16026), 1, + anon_sym_DQUOTE, + STATE(9601), 1, + aux_sym_string_literal_repeat1, + [353510] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15642), 1, - anon_sym___attribute, - ACTIONS(15640), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [352538] = 5, + ACTIONS(16028), 1, + anon_sym_DQUOTE, + ACTIONS(16030), 1, + aux_sym_string_literal_token1, + ACTIONS(16032), 1, + sym_escape_sequence, + STATE(9485), 1, + aux_sym_string_literal_repeat1, + [353526] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(10542), 1, - anon_sym_LPAREN2, - STATE(5650), 1, - sym_initializer_list, - STATE(5801), 1, - sym_argument_list, - [352554] = 4, + ACTIONS(14676), 1, + anon_sym_COLON, + STATE(10096), 1, + sym_compound_statement, + STATE(10238), 1, + sym_field_initializer_list, + [353542] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15644), 1, + ACTIONS(16034), 1, anon_sym_EQ, - STATE(9185), 2, + STATE(9354), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [352568] = 4, + [353556] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14821), 1, + ACTIONS(15204), 1, anon_sym_EQ, - STATE(9426), 2, + STATE(9548), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [352582] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15324), 4, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_DOT, - [352592] = 4, - ACTIONS(3), 1, + [353570] = 4, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15646), 1, - anon_sym_COMMA, - STATE(9329), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(15648), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [352606] = 5, + ACTIONS(16036), 1, + anon_sym_SQUOTE, + STATE(9564), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15784), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [353584] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, - anon_sym_COLON, - ACTIONS(11202), 1, + ACTIONS(7369), 1, anon_sym_LBRACE, - STATE(5828), 1, - sym_field_declaration_list, - STATE(10163), 1, - sym_base_class_clause, - [352622] = 5, - ACTIONS(13686), 1, + ACTIONS(15906), 1, + anon_sym_COLON_COLON, + ACTIONS(16038), 1, + anon_sym_EQ, + STATE(1002), 1, + sym_declaration_list, + [353600] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15378), 1, + ACTIONS(15801), 1, aux_sym_string_literal_token1, - ACTIONS(15380), 1, + ACTIONS(15803), 1, sym_escape_sequence, - ACTIONS(15650), 1, + ACTIONS(16040), 1, anon_sym_DQUOTE, - STATE(9350), 1, + STATE(9601), 1, aux_sym_string_literal_repeat1, - [352638] = 4, + [353616] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15652), 1, + ACTIONS(16042), 1, anon_sym_EQ, - STATE(9185), 2, + STATE(9354), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [352652] = 4, + [353630] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(14781), 1, - anon_sym_EQ, - STATE(9430), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [352666] = 5, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, + anon_sym_LT, + ACTIONS(16044), 1, + anon_sym_SEMI, + STATE(3735), 1, + sym_template_argument_list, + [353646] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, + ACTIONS(8156), 1, anon_sym_COLON, - ACTIONS(9596), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - STATE(4285), 1, + STATE(3935), 1, sym_field_declaration_list, - STATE(10071), 1, + STATE(10309), 1, sym_base_class_clause, - [352682] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12955), 1, - anon_sym_LBRACE, - ACTIONS(15403), 1, - anon_sym_LPAREN2, - STATE(6580), 1, - sym_requirement_seq, - STATE(10091), 1, - sym_requires_parameter_list, - [352698] = 4, + [353662] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(15654), 1, - anon_sym_EQ, - STATE(9185), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [352712] = 5, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, + anon_sym_LT, + ACTIONS(16046), 1, + anon_sym_SEMI, + STATE(3735), 1, + sym_template_argument_list, + [353678] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15494), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15656), 1, + ACTIONS(15776), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(15658), 1, - anon_sym_LBRACE, - STATE(9994), 1, - aux_sym_base_class_clause_repeat1, - [352728] = 5, - ACTIONS(13686), 1, + ACTIONS(16048), 1, + anon_sym_GT2, + STATE(9789), 1, + aux_sym_template_argument_list_repeat1, + [353694] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15378), 1, + ACTIONS(16050), 1, + anon_sym_DQUOTE, + ACTIONS(16052), 1, aux_sym_string_literal_token1, - ACTIONS(15380), 1, + ACTIONS(16054), 1, sym_escape_sequence, - ACTIONS(15660), 1, + STATE(9638), 1, + aux_sym_string_literal_repeat1, + [353710] = 5, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(16056), 1, anon_sym_DQUOTE, - STATE(9350), 1, + ACTIONS(16058), 1, + aux_sym_string_literal_token1, + ACTIONS(16060), 1, + sym_escape_sequence, + STATE(9568), 1, aux_sym_string_literal_repeat1, - [352744] = 5, + [353726] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(10900), 1, + anon_sym_LPAREN2, + STATE(5772), 1, + sym_argument_list, + STATE(7298), 1, + sym_initializer_list, + [353742] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, + ACTIONS(8156), 1, anon_sym_COLON, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - STATE(9222), 1, + STATE(9327), 1, sym_field_declaration_list, - STATE(10409), 1, + STATE(10543), 1, sym_base_class_clause, - [352760] = 5, - ACTIONS(13686), 1, + [353758] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15662), 1, - anon_sym_DQUOTE, - ACTIONS(15664), 1, + ACTIONS(15801), 1, aux_sym_string_literal_token1, - ACTIONS(15666), 1, + ACTIONS(15803), 1, sym_escape_sequence, - STATE(9316), 1, + ACTIONS(16062), 1, + anon_sym_DQUOTE, + STATE(9601), 1, aux_sym_string_literal_repeat1, - [352776] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(15668), 1, - anon_sym_EQ, - STATE(9185), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [352790] = 5, - ACTIONS(13686), 1, + [353774] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15670), 1, + ACTIONS(15801), 1, + aux_sym_string_literal_token1, + ACTIONS(15803), 1, + sym_escape_sequence, + ACTIONS(16064), 1, anon_sym_DQUOTE, - ACTIONS(15672), 1, + STATE(9601), 1, + aux_sym_string_literal_repeat1, + [353790] = 5, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(15801), 1, aux_sym_string_literal_token1, - ACTIONS(15674), 1, + ACTIONS(15803), 1, sym_escape_sequence, - STATE(9465), 1, + ACTIONS(16066), 1, + anon_sym_DQUOTE, + STATE(9601), 1, aux_sym_string_literal_repeat1, - [352806] = 5, + [353806] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(15768), 1, + anon_sym_LPAREN2, + ACTIONS(16068), 1, anon_sym_LBRACE, - ACTIONS(14296), 1, - anon_sym_COLON, - STATE(9968), 1, - sym_compound_statement, - STATE(10375), 1, - sym_field_initializer_list, - [352822] = 4, - ACTIONS(13686), 1, + STATE(8422), 1, + sym_requirement_seq, + STATE(10555), 1, + sym_requires_parameter_list, + [353822] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, + anon_sym_LT, + ACTIONS(16070), 1, + anon_sym_SEMI, + STATE(3735), 1, + sym_template_argument_list, + [353838] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, + anon_sym_LT, + ACTIONS(16072), 1, + anon_sym_SEMI, + STATE(3735), 1, + sym_template_argument_list, + [353854] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15162), 1, + anon_sym_EQ, + STATE(9433), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [353868] = 4, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15676), 1, + ACTIONS(16074), 1, anon_sym_SQUOTE, - STATE(9290), 1, + STATE(9564), 1, aux_sym_char_literal_repeat1, - ACTIONS(15391), 2, + ACTIONS(16076), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [352836] = 5, + [353882] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(15395), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15678), 1, - anon_sym_GT2, - STATE(9618), 1, - aux_sym_template_argument_list_repeat1, - [352852] = 5, + ACTIONS(4910), 1, + anon_sym_LBRACE, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + STATE(5862), 1, + sym_argument_list, + STATE(7380), 1, + sym_initializer_list, + [353898] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(5655), 1, anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - ACTIONS(15680), 1, + ACTIONS(6567), 1, anon_sym_SEMI, - STATE(3601), 1, + ACTIONS(10005), 1, + anon_sym_LT, + STATE(2846), 1, sym_template_argument_list, - [352868] = 5, - ACTIONS(13686), 1, + [353914] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8156), 1, + anon_sym_COLON, + ACTIONS(9314), 1, + anon_sym_LBRACE, + STATE(3855), 1, + sym_field_declaration_list, + STATE(10265), 1, + sym_base_class_clause, + [353930] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15378), 1, + ACTIONS(15801), 1, aux_sym_string_literal_token1, - ACTIONS(15380), 1, + ACTIONS(15803), 1, sym_escape_sequence, - ACTIONS(15682), 1, + ACTIONS(16079), 1, anon_sym_DQUOTE, - STATE(9350), 1, + STATE(9601), 1, aux_sym_string_literal_repeat1, - [352884] = 5, - ACTIONS(13686), 1, + [353946] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(15684), 1, - anon_sym_DQUOTE, - ACTIONS(15686), 1, - aux_sym_string_literal_token1, - ACTIONS(15688), 1, - sym_escape_sequence, - STATE(9447), 1, - aux_sym_string_literal_repeat1, - [352900] = 5, + ACTIONS(16081), 1, + anon_sym___except, + ACTIONS(16083), 1, + anon_sym___finally, + STATE(632), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [353960] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(15395), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15690), 1, - anon_sym_GT2, - STATE(9828), 1, - aux_sym_template_argument_list_repeat1, - [352916] = 4, - ACTIONS(13686), 1, + ACTIONS(8156), 1, + anon_sym_COLON, + ACTIONS(8269), 1, + anon_sym_LBRACE, + STATE(2834), 1, + sym_field_declaration_list, + STATE(10517), 1, + sym_base_class_clause, + [353976] = 4, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15692), 1, + ACTIONS(16085), 1, anon_sym_SQUOTE, - STATE(9290), 1, + STATE(9564), 1, aux_sym_char_literal_repeat1, - ACTIONS(15391), 2, + ACTIONS(15784), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [352930] = 4, + [353990] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15694), 1, - anon_sym___except, - ACTIONS(15696), 1, - anon_sym___finally, - STATE(1128), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [352944] = 4, + ACTIONS(8156), 1, + anon_sym_COLON, + ACTIONS(10069), 1, + anon_sym_LBRACE, + STATE(9338), 1, + sym_field_declaration_list, + STATE(10545), 1, + sym_base_class_clause, + [354006] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15698), 1, - anon_sym_COMMA, - STATE(9446), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(15701), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [352958] = 5, - ACTIONS(13686), 1, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + STATE(3894), 1, + sym_argument_list, + STATE(5969), 1, + sym_initializer_list, + [354022] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(15378), 1, - aux_sym_string_literal_token1, - ACTIONS(15380), 1, - sym_escape_sequence, - ACTIONS(15703), 1, - anon_sym_DQUOTE, - STATE(9350), 1, - aux_sym_string_literal_repeat1, - [352974] = 5, - ACTIONS(13686), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16087), 1, + anon_sym_EQ, + STATE(9523), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [354036] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(15378), 1, - aux_sym_string_literal_token1, - ACTIONS(15380), 1, - sym_escape_sequence, - ACTIONS(15705), 1, - anon_sym_DQUOTE, - STATE(9350), 1, - aux_sym_string_literal_repeat1, - [352990] = 5, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + ACTIONS(16089), 1, + anon_sym_SEMI, + ACTIONS(16091), 1, + anon_sym_noexcept, + STATE(11555), 1, + sym_trailing_return_type, + [354052] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(9605), 1, + sym_splice_specifier, + STATE(9651), 1, + sym_splice_type_specifier, + [354068] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15395), 1, + ACTIONS(15776), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(15707), 1, + ACTIONS(16093), 1, anon_sym_GT2, - STATE(9628), 1, + STATE(10160), 1, aux_sym_template_argument_list_repeat1, - [353006] = 5, + [354084] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, - anon_sym_COLON, - ACTIONS(8193), 1, + ACTIONS(2968), 1, anon_sym_LBRACE, - STATE(2900), 1, - sym_field_declaration_list, - STATE(10236), 1, - sym_base_class_clause, - [353022] = 5, + ACTIONS(10982), 1, + anon_sym_LPAREN2, + STATE(5862), 1, + sym_argument_list, + STATE(5876), 1, + sym_initializer_list, + [354100] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, - anon_sym_COLON, - ACTIONS(12646), 1, - anon_sym_LBRACE, - STATE(7468), 1, - sym_field_declaration_list, - STATE(10442), 1, - sym_base_class_clause, - [353038] = 4, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(9605), 1, + sym_splice_specifier, + STATE(9613), 1, + sym_splice_type_specifier, + [354116] = 5, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(15912), 1, + anon_sym_LPAREN, + ACTIONS(16095), 1, + aux_sym_preproc_include_token2, + ACTIONS(16097), 1, + sym_preproc_arg, + STATE(10559), 1, + sym_preproc_params, + [354132] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15709), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - STATE(9496), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(15711), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [353052] = 5, - ACTIONS(13686), 1, + ACTIONS(15776), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16099), 1, + anon_sym_GT2, + STATE(9828), 1, + aux_sym_template_argument_list_repeat1, + [354148] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15713), 1, - anon_sym_DQUOTE, - ACTIONS(15715), 1, + ACTIONS(15801), 1, aux_sym_string_literal_token1, - ACTIONS(15717), 1, + ACTIONS(15803), 1, sym_escape_sequence, - STATE(9459), 1, + ACTIONS(16101), 1, + anon_sym_DQUOTE, + STATE(9601), 1, aux_sym_string_literal_repeat1, - [353068] = 5, - ACTIONS(13686), 1, + [354164] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(15409), 1, - anon_sym_LPAREN, - ACTIONS(15719), 1, - aux_sym_preproc_include_token2, - ACTIONS(15721), 1, - sym_preproc_arg, - STATE(10273), 1, - sym_preproc_params, - [353084] = 5, - ACTIONS(13686), 1, + ACTIONS(16103), 1, + anon_sym_COMMA, + STATE(9583), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(16106), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [354178] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(15409), 1, - anon_sym_LPAREN, - ACTIONS(15723), 1, - aux_sym_preproc_include_token2, - ACTIONS(15725), 1, - sym_preproc_arg, - STATE(10387), 1, - sym_preproc_params, - [353100] = 5, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16108), 1, + anon_sym_EQ, + STATE(9354), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [354192] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, + ACTIONS(8156), 1, anon_sym_COLON, - ACTIONS(9658), 1, + ACTIONS(8158), 1, anon_sym_LBRACE, - STATE(9226), 1, + STATE(2671), 1, sym_field_declaration_list, - STATE(10411), 1, + STATE(10351), 1, sym_base_class_clause, - [353116] = 5, + [354208] = 5, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(16110), 1, + anon_sym_DQUOTE, + ACTIONS(16112), 1, + aux_sym_string_literal_token1, + ACTIONS(16114), 1, + sym_escape_sequence, + STATE(9498), 1, + aux_sym_string_literal_repeat1, + [354224] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, + ACTIONS(8156), 1, anon_sym_COLON, - ACTIONS(7819), 1, + ACTIONS(9246), 1, anon_sym_LBRACE, - STATE(2603), 1, + STATE(4385), 1, sym_field_declaration_list, - STATE(10248), 1, + STATE(10358), 1, sym_base_class_clause, - [353132] = 4, - ACTIONS(13686), 1, + [354240] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(15727), 1, - anon_sym_SQUOTE, - STATE(9290), 1, - aux_sym_char_literal_repeat1, - ACTIONS(15391), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [353146] = 5, - ACTIONS(13686), 1, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(15776), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16116), 1, + anon_sym_GT2, + STATE(9703), 1, + aux_sym_template_argument_list_repeat1, + [354256] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15378), 1, - aux_sym_string_literal_token1, - ACTIONS(15380), 1, - sym_escape_sequence, - ACTIONS(15729), 1, - anon_sym_DQUOTE, - STATE(9350), 1, - aux_sym_string_literal_repeat1, - [353162] = 5, + ACTIONS(15912), 1, + anon_sym_LPAREN, + ACTIONS(16118), 1, + aux_sym_preproc_include_token2, + ACTIONS(16120), 1, + sym_preproc_arg, + STATE(10255), 1, + sym_preproc_params, + [354272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - ACTIONS(15731), 1, + ACTIONS(12299), 1, + anon_sym___attribute, + ACTIONS(12297), 3, + anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(15733), 1, - anon_sym_noexcept, - STATE(11498), 1, - sym_trailing_return_type, - [353178] = 5, + anon_sym___attribute__, + [354284] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16122), 1, + anon_sym___except, + ACTIONS(16124), 1, + anon_sym___finally, + STATE(748), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [354298] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(5655), 1, anon_sym_COLON_COLON, - ACTIONS(9672), 1, + ACTIONS(10005), 1, anon_sym_LT, - ACTIONS(15735), 1, + ACTIONS(16126), 1, anon_sym_SEMI, - STATE(3601), 1, + STATE(3735), 1, sym_template_argument_list, - [353194] = 5, + [354314] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(9605), 1, + sym_splice_specifier, + STATE(9619), 1, + sym_splice_type_specifier, + [354330] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15395), 1, + ACTIONS(15776), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(15737), 1, + ACTIONS(16128), 1, anon_sym_GT2, - STATE(9636), 1, + STATE(9796), 1, aux_sym_template_argument_list_repeat1, - [353210] = 5, + [354346] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, - anon_sym_COLON, - ACTIONS(9658), 1, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, + anon_sym_LT, + ACTIONS(16130), 1, + anon_sym_SEMI, + STATE(3735), 1, + sym_template_argument_list, + [354362] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(9490), 1, + sym_splice_type_specifier, + STATE(9605), 1, + sym_splice_specifier, + [354378] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3098), 1, anon_sym_LBRACE, - STATE(4613), 1, - sym_field_declaration_list, - STATE(10394), 1, - sym_base_class_clause, - [353226] = 5, - ACTIONS(13686), 1, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + STATE(5537), 1, + sym_argument_list, + STATE(6093), 1, + sym_initializer_list, + [354394] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15739), 1, + ACTIONS(16132), 1, anon_sym_DQUOTE, - ACTIONS(15741), 1, + ACTIONS(16134), 1, aux_sym_string_literal_token1, - ACTIONS(15743), 1, + ACTIONS(16136), 1, sym_escape_sequence, - STATE(9468), 1, + STATE(9629), 1, aux_sym_string_literal_repeat1, - [353242] = 5, - ACTIONS(13686), 1, + [354410] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(9605), 1, + sym_splice_specifier, + STATE(9659), 1, + sym_splice_type_specifier, + [354426] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(15378), 1, + ACTIONS(15994), 1, + anon_sym_COMMA, + STATE(9435), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(16138), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [354440] = 5, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(16140), 1, + anon_sym_DQUOTE, + ACTIONS(16142), 1, aux_sym_string_literal_token1, - ACTIONS(15380), 1, + ACTIONS(16145), 1, sym_escape_sequence, - ACTIONS(15745), 1, - anon_sym_DQUOTE, - STATE(9350), 1, + STATE(9601), 1, aux_sym_string_literal_repeat1, - [353258] = 5, + [354456] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13004), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(15403), 1, - anon_sym_LPAREN2, - STATE(4755), 1, - sym_requirement_seq, - STATE(10313), 1, - sym_requires_parameter_list, - [353274] = 5, + ACTIONS(14676), 1, + anon_sym_COLON, + STATE(9739), 1, + sym_compound_statement, + STATE(10544), 1, + sym_field_initializer_list, + [354472] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, - anon_sym_COLON, - ACTIONS(7866), 1, + ACTIONS(15922), 1, + anon_sym_COMMA, + ACTIONS(16148), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16150), 1, anon_sym_LBRACE, - STATE(2708), 1, - sym_field_declaration_list, - STATE(10304), 1, - sym_base_class_clause, - [353290] = 5, - ACTIONS(13686), 1, + STATE(9727), 1, + aux_sym_base_class_clause_repeat1, + [354488] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15378), 1, + ACTIONS(16152), 1, + anon_sym_DQUOTE, + ACTIONS(16154), 1, aux_sym_string_literal_token1, - ACTIONS(15380), 1, + ACTIONS(16156), 1, sym_escape_sequence, - ACTIONS(15747), 1, - anon_sym_DQUOTE, - STATE(9350), 1, + STATE(9536), 1, aux_sym_string_literal_repeat1, - [353306] = 4, + [354504] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15749), 1, - anon_sym___except, - ACTIONS(15751), 1, - anon_sym___finally, - STATE(504), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [353320] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7817), 1, - anon_sym_COLON, - ACTIONS(8007), 1, + ACTIONS(10005), 1, + anon_sym_LT, + STATE(2053), 1, + sym_template_argument_list, + ACTIONS(7090), 2, + anon_sym_LPAREN2, anon_sym_LBRACE, - STATE(2684), 1, - sym_field_declaration_list, - STATE(10212), 1, - sym_base_class_clause, - [353336] = 4, + [354518] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15753), 1, + ACTIONS(15916), 1, anon_sym_COMMA, - STATE(9471), 1, + STATE(9583), 1, aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(15756), 2, + ACTIONS(16158), 2, anon_sym_RPAREN, anon_sym_COLON, - [353350] = 5, + [354532] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(13309), 1, anon_sym_LBRACE, - ACTIONS(10542), 1, + ACTIONS(15768), 1, anon_sym_LPAREN2, - STATE(5801), 1, - sym_argument_list, - STATE(7210), 1, - sym_initializer_list, - [353366] = 5, + STATE(5259), 1, + sym_requirement_seq, + STATE(10473), 1, + sym_requires_parameter_list, + [354548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - STATE(3783), 1, - sym_argument_list, - STATE(5860), 1, - sym_initializer_list, - [353382] = 5, - ACTIONS(13686), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16160), 1, + anon_sym_using, + STATE(9354), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [354562] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(15409), 1, - anon_sym_LPAREN, - ACTIONS(15758), 1, - aux_sym_preproc_include_token2, - ACTIONS(15760), 1, - sym_preproc_arg, - STATE(10377), 1, - sym_preproc_params, - [353398] = 5, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, + anon_sym_LT, + ACTIONS(16162), 1, + anon_sym_SEMI, + STATE(3735), 1, + sym_template_argument_list, + [354578] = 4, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(16164), 1, + anon_sym_SQUOTE, + STATE(9564), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15784), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [354592] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(15395), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15762), 1, - anon_sym_GT2, - STATE(9641), 1, - aux_sym_template_argument_list_repeat1, - [353414] = 5, + ACTIONS(8156), 1, + anon_sym_COLON, + ACTIONS(9246), 1, + anon_sym_LBRACE, + STATE(3917), 1, + sym_field_declaration_list, + STATE(10574), 1, + sym_base_class_clause, + [354608] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(9363), 1, - sym_splice_type_specifier, - STATE(9481), 1, - sym_splice_specifier, - [353430] = 5, - ACTIONS(13686), 1, + ACTIONS(8156), 1, + anon_sym_COLON, + ACTIONS(9246), 1, + anon_sym_LBRACE, + STATE(3936), 1, + sym_field_declaration_list, + STATE(10575), 1, + sym_base_class_clause, + [354624] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(15764), 1, + ACTIONS(4676), 1, + anon_sym_LBRACE, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + STATE(3892), 1, + sym_argument_list, + STATE(5964), 1, + sym_initializer_list, + [354640] = 5, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(16166), 1, anon_sym_DQUOTE, - ACTIONS(15766), 1, + ACTIONS(16168), 1, aux_sym_string_literal_token1, - ACTIONS(15768), 1, + ACTIONS(16170), 1, sym_escape_sequence, - STATE(9483), 1, + STATE(9626), 1, aux_sym_string_literal_repeat1, - [353446] = 5, + [354656] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(15395), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15770), 1, - anon_sym_GT2, - STATE(9779), 1, - aux_sym_template_argument_list_repeat1, - [353462] = 5, + ACTIONS(8156), 1, + anon_sym_COLON, + ACTIONS(9246), 1, + anon_sym_LBRACE, + STATE(4389), 1, + sym_field_declaration_list, + STATE(10401), 1, + sym_base_class_clause, + [354672] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7015), 1, + ACTIONS(7373), 1, anon_sym_LBRACE, - ACTIONS(15488), 1, + ACTIONS(15906), 1, anon_sym_COLON_COLON, - ACTIONS(15772), 1, + ACTIONS(16172), 1, anon_sym_EQ, - STATE(411), 1, + STATE(861), 1, sym_declaration_list, - [353478] = 4, + [354688] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15774), 1, - anon_sym___except, + ACTIONS(12322), 1, + anon_sym_COMMA, ACTIONS(15776), 1, - anon_sym___finally, - STATE(752), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [353492] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16174), 1, + anon_sym_GT2, + STATE(9747), 1, + aux_sym_template_argument_list_repeat1, + [354704] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(9672), 1, - anon_sym_LT, - STATE(1956), 1, - sym_template_argument_list, - ACTIONS(6751), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - [353506] = 5, + ACTIONS(15912), 1, + anon_sym_LPAREN, + ACTIONS(16176), 1, + aux_sym_preproc_include_token2, + ACTIONS(16178), 1, + sym_preproc_arg, + STATE(10277), 1, + sym_preproc_params, + [354720] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 1, + ACTIONS(3098), 1, anon_sym_LBRACE, - ACTIONS(10582), 1, + ACTIONS(10687), 1, anon_sym_LPAREN2, - STATE(5662), 1, + STATE(5569), 1, sym_argument_list, - STATE(7145), 1, + STATE(6057), 1, sym_initializer_list, - [353522] = 5, - ACTIONS(13686), 1, + [354736] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15378), 1, + ACTIONS(15801), 1, aux_sym_string_literal_token1, - ACTIONS(15380), 1, + ACTIONS(15803), 1, sym_escape_sequence, - ACTIONS(15778), 1, + ACTIONS(16180), 1, anon_sym_DQUOTE, - STATE(9350), 1, + STATE(9601), 1, aux_sym_string_literal_repeat1, - [353538] = 5, - ACTIONS(13686), 1, + [354752] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(15780), 1, - anon_sym_DQUOTE, - ACTIONS(15782), 1, + ACTIONS(2396), 1, + anon_sym_LBRACE, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + STATE(3894), 1, + sym_argument_list, + STATE(3899), 1, + sym_initializer_list, + [354768] = 5, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(15912), 1, + anon_sym_LPAREN, + ACTIONS(16182), 1, + aux_sym_preproc_include_token2, + ACTIONS(16184), 1, + sym_preproc_arg, + STATE(10306), 1, + sym_preproc_params, + [354784] = 4, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(16186), 1, + anon_sym_SQUOTE, + STATE(9564), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15784), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [354798] = 5, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(15801), 1, aux_sym_string_literal_token1, - ACTIONS(15784), 1, + ACTIONS(15803), 1, sym_escape_sequence, - STATE(9514), 1, + ACTIONS(16188), 1, + anon_sym_DQUOTE, + STATE(9601), 1, aux_sym_string_literal_repeat1, - [353554] = 4, + [354814] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9672), 1, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, anon_sym_LT, - STATE(2061), 1, + ACTIONS(16190), 1, + anon_sym_SEMI, + STATE(3735), 1, sym_template_argument_list, - ACTIONS(9227), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [353568] = 5, + [354830] = 5, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(15801), 1, + aux_sym_string_literal_token1, + ACTIONS(15803), 1, + sym_escape_sequence, + ACTIONS(16192), 1, + anon_sym_DQUOTE, + STATE(9601), 1, + aux_sym_string_literal_repeat1, + [354846] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15395), 1, + ACTIONS(15776), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(15786), 1, + ACTIONS(16194), 1, anon_sym_GT2, - STATE(9651), 1, + STATE(9722), 1, aux_sym_template_argument_list_repeat1, - [353584] = 5, + [354862] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, - anon_sym_LBRACE, - ACTIONS(8808), 1, - anon_sym_LPAREN2, - STATE(3723), 1, - sym_argument_list, - STATE(5901), 1, - sym_initializer_list, - [353600] = 3, + ACTIONS(16196), 1, + anon_sym___except, + ACTIONS(16198), 1, + anon_sym___finally, + STATE(558), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [354876] = 5, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(15801), 1, + aux_sym_string_literal_token1, + ACTIONS(15803), 1, + sym_escape_sequence, + ACTIONS(16200), 1, + anon_sym_DQUOTE, + STATE(9601), 1, + aux_sym_string_literal_repeat1, + [354892] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15788), 1, - sym_identifier, - ACTIONS(15790), 3, + ACTIONS(16002), 1, anon_sym_COMMA, + STATE(9450), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(16202), 2, anon_sym_RPAREN, + anon_sym_COLON, + [354906] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(15776), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16204), 1, anon_sym_GT2, - [353612] = 5, + STATE(10088), 1, + aux_sym_template_argument_list_repeat1, + [354922] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 1, + ACTIONS(7361), 1, anon_sym_LBRACE, - ACTIONS(15488), 1, + ACTIONS(15906), 1, anon_sym_COLON_COLON, - ACTIONS(15792), 1, + ACTIONS(16206), 1, anon_sym_EQ, - STATE(738), 1, + STATE(664), 1, sym_declaration_list, - [353628] = 5, - ACTIONS(13686), 1, + [354938] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15794), 1, + ACTIONS(16208), 1, anon_sym_DQUOTE, - ACTIONS(15796), 1, + ACTIONS(16210), 1, aux_sym_string_literal_token1, - ACTIONS(15798), 1, + ACTIONS(16212), 1, sym_escape_sequence, - STATE(9505), 1, + STATE(9447), 1, aux_sym_string_literal_repeat1, - [353644] = 4, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(15800), 1, - anon_sym_SQUOTE, - STATE(9290), 1, - aux_sym_char_literal_repeat1, - ACTIONS(15391), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [353658] = 5, + [354954] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(15395), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15802), 1, - anon_sym_GT2, - STATE(9580), 1, - aux_sym_template_argument_list_repeat1, - [353674] = 5, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(14676), 1, + anon_sym_COLON, + STATE(9904), 1, + sym_compound_statement, + STATE(10363), 1, + sym_field_initializer_list, + [354970] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12966), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(15403), 1, - anon_sym_LPAREN2, - STATE(3575), 1, - sym_requirement_seq, - STATE(10414), 1, - sym_requires_parameter_list, - [353690] = 5, + ACTIONS(14676), 1, + anon_sym_COLON, + STATE(9894), 1, + sym_compound_statement, + STATE(10312), 1, + sym_field_initializer_list, + [354986] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, + ACTIONS(8156), 1, anon_sym_COLON, - ACTIONS(8909), 1, + ACTIONS(11427), 1, anon_sym_LBRACE, - STATE(4283), 1, + STATE(5938), 1, sym_field_declaration_list, - STATE(10086), 1, + STATE(10442), 1, sym_base_class_clause, - [353706] = 5, + [355002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12930), 1, + ACTIONS(15815), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [355012] = 5, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(15801), 1, + aux_sym_string_literal_token1, + ACTIONS(15803), 1, + sym_escape_sequence, + ACTIONS(16214), 1, + anon_sym_DQUOTE, + STATE(9601), 1, + aux_sym_string_literal_repeat1, + [355028] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12755), 1, + anon_sym_LPAREN2, + STATE(10441), 1, + sym_argument_list, + ACTIONS(16216), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [355042] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13356), 1, anon_sym_LBRACE, - ACTIONS(15403), 1, + ACTIONS(15768), 1, anon_sym_LPAREN2, - STATE(5508), 1, + STATE(6492), 1, sym_requirement_seq, - STATE(10135), 1, + STATE(10281), 1, sym_requires_parameter_list, - [353722] = 4, + [355058] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, + anon_sym_LT, + ACTIONS(16218), 1, + anon_sym_SEMI, + STATE(3735), 1, + sym_template_argument_list, + [355074] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15709), 1, + ACTIONS(15922), 1, anon_sym_COMMA, - STATE(9471), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(15804), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [353736] = 4, + ACTIONS(16220), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16222), 1, + anon_sym_LBRACE, + STATE(9945), 1, + aux_sym_base_class_clause_repeat1, + [355090] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(14803), 1, - anon_sym_EQ, - STATE(9435), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [353750] = 5, + ACTIONS(14845), 1, + sym_identifier, + ACTIONS(15722), 1, + aux_sym_preproc_if_token2, + STATE(9445), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(10856), 1, + sym_enumerator, + [355106] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, - anon_sym_COLON, - ACTIONS(8909), 1, + ACTIONS(7243), 1, anon_sym_LBRACE, - STATE(3739), 1, + ACTIONS(8156), 1, + anon_sym_COLON, + STATE(2158), 1, sym_field_declaration_list, - STATE(10437), 1, + STATE(10320), 1, sym_base_class_clause, - [353766] = 5, + [355122] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, - anon_sym_COLON, - ACTIONS(8909), 1, + ACTIONS(16224), 1, + anon_sym___except, + ACTIONS(16226), 1, + anon_sym___finally, + STATE(1245), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [355136] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15768), 1, + anon_sym_LPAREN2, + ACTIONS(16228), 1, anon_sym_LBRACE, - STATE(3762), 1, - sym_field_declaration_list, - STATE(10438), 1, - sym_base_class_clause, - [353782] = 5, + STATE(8018), 1, + sym_requirement_seq, + STATE(10600), 1, + sym_requires_parameter_list, + [355152] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15395), 1, + ACTIONS(15776), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(15806), 1, + ACTIONS(16230), 1, anon_sym_GT2, - STATE(9947), 1, + STATE(9805), 1, aux_sym_template_argument_list_repeat1, - [353798] = 5, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(15409), 1, - anon_sym_LPAREN, - ACTIONS(15808), 1, - aux_sym_preproc_include_token2, - ACTIONS(15810), 1, - sym_preproc_arg, - STATE(10194), 1, - sym_preproc_params, - [353814] = 4, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(15812), 1, - anon_sym_SQUOTE, - STATE(9290), 1, - aux_sym_char_literal_repeat1, - ACTIONS(15391), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [353828] = 4, + [355168] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15646), 1, - anon_sym_COMMA, - STATE(9423), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(15814), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [353842] = 5, + ACTIONS(5655), 1, + anon_sym_COLON_COLON, + ACTIONS(10005), 1, + anon_sym_LT, + ACTIONS(16232), 1, + anon_sym_SEMI, + STATE(3735), 1, + sym_template_argument_list, + [355184] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12938), 1, - anon_sym_LBRACE, - ACTIONS(15403), 1, - anon_sym_LPAREN2, - STATE(5062), 1, - sym_requirement_seq, - STATE(10113), 1, - sym_requires_parameter_list, - [353858] = 5, - ACTIONS(13686), 1, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(15776), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16234), 1, + anon_sym_GT2, + STATE(10129), 1, + aux_sym_template_argument_list_repeat1, + [355200] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15378), 1, + ACTIONS(16236), 1, + anon_sym_DQUOTE, + ACTIONS(16238), 1, aux_sym_string_literal_token1, - ACTIONS(15380), 1, + ACTIONS(16240), 1, sym_escape_sequence, - ACTIONS(15816), 1, - anon_sym_DQUOTE, - STATE(9350), 1, + STATE(9489), 1, aux_sym_string_literal_repeat1, - [353874] = 5, + [355216] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON_COLON, - ACTIONS(9672), 1, - anon_sym_LT, - ACTIONS(15818), 1, - anon_sym_SEMI, - STATE(3601), 1, - sym_template_argument_list, - [353890] = 5, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(15409), 1, - anon_sym_LPAREN, - ACTIONS(15820), 1, - aux_sym_preproc_include_token2, - ACTIONS(15822), 1, - sym_preproc_arg, - STATE(10089), 1, - sym_preproc_params, - [353906] = 5, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(10687), 1, + anon_sym_LPAREN2, + STATE(5569), 1, + sym_argument_list, + STATE(5579), 1, + sym_initializer_list, + [355232] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15395), 1, + ACTIONS(15776), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(15824), 1, + ACTIONS(16242), 1, anon_sym_GT2, - STATE(9922), 1, + STATE(9801), 1, aux_sym_template_argument_list_repeat1, - [353922] = 4, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(15826), 1, - anon_sym_SQUOTE, - STATE(9290), 1, - aux_sym_char_literal_repeat1, - ACTIONS(15391), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [353936] = 5, + [355248] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, - anon_sym_COLON, - ACTIONS(12646), 1, - anon_sym_LBRACE, - STATE(7453), 1, - sym_field_declaration_list, - STATE(10427), 1, - sym_base_class_clause, - [353952] = 4, - ACTIONS(13686), 1, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(15776), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16244), 1, + anon_sym_GT2, + STATE(9771), 1, + aux_sym_template_argument_list_repeat1, + [355264] = 4, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15828), 1, + ACTIONS(16246), 1, anon_sym_SQUOTE, - STATE(9290), 1, + STATE(9564), 1, aux_sym_char_literal_repeat1, - ACTIONS(15391), 2, + ACTIONS(15784), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [353966] = 5, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(15830), 1, - anon_sym_DQUOTE, - ACTIONS(15832), 1, - aux_sym_string_literal_token1, - ACTIONS(15834), 1, - sym_escape_sequence, - STATE(9296), 1, - aux_sym_string_literal_repeat1, - [353982] = 5, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(15836), 1, - anon_sym_DQUOTE, - ACTIONS(15838), 1, - aux_sym_string_literal_token1, - ACTIONS(15840), 1, - sym_escape_sequence, - STATE(9522), 1, - aux_sym_string_literal_repeat1, - [353998] = 5, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(15378), 1, - aux_sym_string_literal_token1, - ACTIONS(15380), 1, - sym_escape_sequence, - ACTIONS(15842), 1, - anon_sym_DQUOTE, - STATE(9350), 1, - aux_sym_string_literal_repeat1, - [354014] = 4, + [355278] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15522), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - STATE(9364), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(15844), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [354028] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15546), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [354038] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(9481), 1, - sym_splice_specifier, - STATE(9487), 1, - sym_splice_type_specifier, - [354054] = 5, - ACTIONS(13686), 1, + ACTIONS(15776), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16248), 1, + anon_sym_GT2, + STATE(9898), 1, + aux_sym_template_argument_list_repeat1, + [355294] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15846), 1, + ACTIONS(16250), 1, anon_sym_DQUOTE, - ACTIONS(15848), 1, + ACTIONS(16252), 1, aux_sym_string_literal_token1, - ACTIONS(15850), 1, + ACTIONS(16254), 1, sym_escape_sequence, - STATE(9425), 1, + STATE(9558), 1, aux_sym_string_literal_repeat1, - [354070] = 5, + [355310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12755), 1, + anon_sym_LPAREN2, + STATE(10513), 1, + sym_argument_list, + ACTIONS(16256), 2, anon_sym_COMMA, - ACTIONS(15395), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15852), 1, - anon_sym_GT2, - STATE(10051), 1, - aux_sym_template_argument_list_repeat1, - [354086] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4804), 1, - anon_sym_LBRACK_COLON, - STATE(3682), 1, - sym__splice_specialization_specifier, - STATE(9323), 1, - sym_splice_type_specifier, - STATE(9481), 1, - sym_splice_specifier, - [354102] = 5, - ACTIONS(13686), 1, + anon_sym_RBRACK_RBRACK, + [355324] = 5, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15378), 1, - aux_sym_string_literal_token1, - ACTIONS(15380), 1, - sym_escape_sequence, - ACTIONS(15854), 1, + ACTIONS(16258), 1, anon_sym_DQUOTE, - STATE(9350), 1, - aux_sym_string_literal_repeat1, - [354118] = 5, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(15378), 1, + ACTIONS(16260), 1, aux_sym_string_literal_token1, - ACTIONS(15380), 1, + ACTIONS(16262), 1, sym_escape_sequence, - ACTIONS(15856), 1, - anon_sym_DQUOTE, - STATE(9350), 1, + STATE(9624), 1, aux_sym_string_literal_repeat1, - [354134] = 5, + [355340] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, - anon_sym_COLON, - ACTIONS(9658), 1, + ACTIONS(4922), 1, anon_sym_LBRACE, - STATE(4570), 1, - sym_field_declaration_list, - STATE(10359), 1, - sym_base_class_clause, - [354150] = 5, + ACTIONS(9230), 1, + anon_sym_LPAREN2, + STATE(3892), 1, + sym_argument_list, + STATE(5964), 1, + sym_initializer_list, + [355356] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15403), 1, - anon_sym_LPAREN2, - ACTIONS(15858), 1, - anon_sym_LBRACE, - STATE(8295), 1, - sym_requirement_seq, - STATE(10098), 1, - sym_requires_parameter_list, - [354166] = 5, - ACTIONS(13686), 1, + ACTIONS(5164), 1, + anon_sym_LBRACK_COLON, + STATE(3808), 1, + sym__splice_specialization_specifier, + STATE(9421), 1, + sym_splice_type_specifier, + STATE(9605), 1, + sym_splice_specifier, + [355372] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(15378), 1, - aux_sym_string_literal_token1, - ACTIONS(15380), 1, - sym_escape_sequence, - ACTIONS(15860), 1, - anon_sym_DQUOTE, - STATE(9350), 1, - aux_sym_string_literal_repeat1, - [354182] = 5, + ACTIONS(16264), 1, + anon_sym_COMMA, + ACTIONS(16267), 1, + anon_sym_RPAREN, + STATE(9661), 1, + aux_sym_preproc_params_repeat1, + [355385] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6983), 1, - anon_sym_LBRACE, - ACTIONS(15488), 1, - anon_sym_COLON_COLON, - ACTIONS(15862), 1, - anon_sym_EQ, - STATE(777), 1, - sym_declaration_list, - [354198] = 5, + ACTIONS(13937), 1, + anon_sym_COMMA, + ACTIONS(16269), 1, + anon_sym_SEMI, + STATE(9663), 1, + aux_sym_declaration_repeat1, + [355398] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(14296), 1, - anon_sym_COLON, - STATE(9764), 1, - sym_compound_statement, - STATE(10206), 1, - sym_field_initializer_list, - [354214] = 4, + ACTIONS(16271), 1, + anon_sym_COMMA, + ACTIONS(16274), 1, + anon_sym_SEMI, + STATE(9663), 1, + aux_sym_declaration_repeat1, + [355411] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15864), 1, + ACTIONS(16276), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [354227] = 4, + [355424] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15866), 1, + ACTIONS(16278), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [354240] = 4, + [355437] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15868), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15870), 1, - anon_sym_RBRACK_RBRACK, - STATE(9535), 1, - aux_sym_attribute_declaration_repeat1, - [354253] = 4, + ACTIONS(16280), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [355450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15870), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(15872), 1, - anon_sym_COMMA, - STATE(9536), 1, - aux_sym_attribute_declaration_repeat2, - [354266] = 4, + ACTIONS(9830), 1, + anon_sym___attribute, + ACTIONS(9832), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [355461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15874), 1, - anon_sym_RPAREN, - ACTIONS(15876), 1, - anon_sym_COLON, - STATE(9556), 1, - sym_gnu_asm_clobber_list, - [354279] = 4, + ACTIONS(9768), 1, + anon_sym___attribute, + ACTIONS(9770), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [355472] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3370), 1, + anon_sym_while, + ACTIONS(16282), 1, + anon_sym_else, + STATE(597), 1, + sym_else_clause, + [355485] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16284), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [355494] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9792), 1, + anon_sym___attribute, + ACTIONS(9794), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [355505] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11939), 1, + ACTIONS(5732), 1, anon_sym_RBRACE, - ACTIONS(12179), 1, + ACTIONS(16286), 1, anon_sym_COMMA, - STATE(9927), 1, + STATE(9972), 1, aux_sym_initializer_list_repeat1, - [354292] = 4, + [355518] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15878), 1, + ACTIONS(16288), 1, anon_sym_RPAREN, - ACTIONS(15880), 1, + ACTIONS(16290), 1, anon_sym_COLON, - STATE(9557), 1, - sym_gnu_asm_input_operand_list, - [354305] = 4, + STATE(9895), 1, + sym_gnu_asm_output_operand_list, + [355531] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15868), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15882), 1, + ACTIONS(16292), 1, + anon_sym_GT2, + STATE(9900), 1, + aux_sym_template_argument_list_repeat1, + [355544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym___attribute, + ACTIONS(9820), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [355555] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16294), 1, + anon_sym_COMMA, + ACTIONS(16296), 1, anon_sym_RBRACK_RBRACK, - STATE(9745), 1, + STATE(10031), 1, aux_sym_attribute_declaration_repeat1, - [354318] = 4, + [355568] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15872), 1, - anon_sym_COMMA, - ACTIONS(15882), 1, + ACTIONS(16296), 1, anon_sym_RBRACK_RBRACK, - STATE(9747), 1, + ACTIONS(16298), 1, + anon_sym_COMMA, + STATE(10034), 1, aux_sym_attribute_declaration_repeat2, - [354331] = 4, + [355581] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(16294), 1, anon_sym_COMMA, - ACTIONS(15884), 1, - anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [354344] = 4, + ACTIONS(16300), 1, + anon_sym_RBRACK_RBRACK, + STATE(9683), 1, + aux_sym_attribute_declaration_repeat1, + [355594] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15886), 1, + ACTIONS(16298), 1, anon_sym_COMMA, - ACTIONS(15888), 1, - anon_sym_RPAREN, - STATE(9958), 1, - aux_sym_throw_specifier_repeat1, - [354357] = 4, + ACTIONS(16300), 1, + anon_sym_RBRACK_RBRACK, + STATE(9684), 1, + aux_sym_attribute_declaration_repeat2, + [355607] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(15890), 1, - anon_sym_SEMI, - STATE(10539), 1, - sym_attribute_declaration, - [354370] = 4, + ACTIONS(16302), 1, + anon_sym_COMMA, + ACTIONS(16304), 1, + anon_sym_RBRACK, + STATE(9916), 1, + aux_sym_lambda_capture_specifier_repeat1, + [355620] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15892), 1, - anon_sym_default, - ACTIONS(15894), 1, - anon_sym_delete, - ACTIONS(15896), 1, - aux_sym_pure_virtual_clause_token1, - [354383] = 4, + ACTIONS(12309), 1, + anon_sym_COMMA, + ACTIONS(12311), 1, + anon_sym_RPAREN, + STATE(9808), 1, + aux_sym_argument_list_repeat1, + [355633] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(15898), 1, - anon_sym_GT2, - STATE(9547), 1, - aux_sym_template_argument_list_repeat1, - [354396] = 4, + ACTIONS(7395), 1, + anon_sym_LBRACE, + ACTIONS(15906), 1, + anon_sym_COLON_COLON, + STATE(448), 1, + sym_declaration_list, + [355646] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(16294), 1, anon_sym_COMMA, - ACTIONS(15900), 1, - anon_sym_SEMI, - STATE(9591), 1, - aux_sym_declaration_repeat1, - [354409] = 4, + ACTIONS(16306), 1, + anon_sym_RBRACK_RBRACK, + STATE(10031), 1, + aux_sym_attribute_declaration_repeat1, + [355659] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(16298), 1, anon_sym_COMMA, - ACTIONS(15902), 1, + ACTIONS(16306), 1, + anon_sym_RBRACK_RBRACK, + STATE(10034), 1, + aux_sym_attribute_declaration_repeat2, + [355672] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16308), 1, anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [354422] = 4, + STATE(11196), 1, + sym_attribute_declaration, + [355685] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(12313), 1, anon_sym_COMMA, - ACTIONS(15904), 1, - anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [354435] = 4, + ACTIONS(12315), 1, + anon_sym_RBRACE, + STATE(9817), 1, + aux_sym_initializer_list_repeat1, + [355698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15906), 1, + ACTIONS(16310), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(9691), 1, aux_sym_template_argument_list_repeat1, - [354448] = 4, + [355711] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(16312), 1, anon_sym_COMMA, - ACTIONS(15908), 1, - anon_sym_GT2, - STATE(9769), 1, - aux_sym_template_argument_list_repeat1, - [354461] = 4, + ACTIONS(16314), 1, + anon_sym_RPAREN, + STATE(10185), 1, + aux_sym_parameter_list_repeat1, + [355724] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15910), 1, + ACTIONS(16316), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [354474] = 4, + [355737] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15912), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15914), 1, - anon_sym_RPAREN, - STATE(9837), 1, - aux_sym_parameter_list_repeat1, - [354487] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15916), 1, - anon_sym_catch, - STATE(536), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [354498] = 4, + ACTIONS(16318), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [355750] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11997), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15918), 1, - anon_sym_RBRACK, - STATE(9849), 1, - aux_sym_subscript_argument_list_repeat1, - [354511] = 3, + ACTIONS(16320), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [355763] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15920), 1, - anon_sym_EQ, - ACTIONS(14744), 2, + ACTIONS(13937), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [354522] = 4, + ACTIONS(16322), 1, + anon_sym_SEMI, + STATE(9662), 1, + aux_sym_declaration_repeat1, + [355776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13881), 1, + ACTIONS(14247), 1, anon_sym_requires, - ACTIONS(15922), 1, + ACTIONS(15174), 1, anon_sym_LBRACE, - STATE(10771), 1, + STATE(10847), 1, sym_requires_clause, - [354535] = 4, + [355789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15886), 1, + ACTIONS(12421), 1, anon_sym_COMMA, - ACTIONS(15924), 1, + ACTIONS(16324), 1, anon_sym_RPAREN, - STATE(9592), 1, - aux_sym_throw_specifier_repeat1, - [354548] = 4, + STATE(9778), 1, + aux_sym_generic_expression_repeat1, + [355802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15868), 1, + ACTIONS(16294), 1, anon_sym_COMMA, - ACTIONS(15926), 1, + ACTIONS(16326), 1, anon_sym_RBRACK_RBRACK, - STATE(9559), 1, + STATE(9699), 1, aux_sym_attribute_declaration_repeat1, - [354561] = 4, + [355815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15872), 1, + ACTIONS(16298), 1, anon_sym_COMMA, - ACTIONS(15926), 1, + ACTIONS(16326), 1, anon_sym_RBRACK_RBRACK, - STATE(9560), 1, + STATE(9700), 1, aux_sym_attribute_declaration_repeat2, - [354574] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15928), 1, - anon_sym_RPAREN, - ACTIONS(15930), 1, - anon_sym_COLON, - STATE(10941), 1, - sym_gnu_asm_goto_list, - [354587] = 4, + [355828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15876), 1, - anon_sym_COLON, - ACTIONS(15932), 1, - anon_sym_RPAREN, - STATE(9567), 1, - sym_gnu_asm_clobber_list, - [354600] = 4, + ACTIONS(16294), 1, + anon_sym_COMMA, + ACTIONS(16328), 1, + anon_sym_RBRACK_RBRACK, + STATE(9742), 1, + aux_sym_attribute_declaration_repeat1, + [355841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13617), 1, + ACTIONS(16298), 1, anon_sym_COMMA, - ACTIONS(15934), 1, - anon_sym_RPAREN, - STATE(9899), 1, - aux_sym_preproc_argument_list_repeat1, - [354613] = 4, + ACTIONS(16328), 1, + anon_sym_RBRACK_RBRACK, + STATE(9743), 1, + aux_sym_attribute_declaration_repeat2, + [355854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15868), 1, + ACTIONS(16294), 1, anon_sym_COMMA, - ACTIONS(15936), 1, + ACTIONS(16330), 1, anon_sym_RBRACK_RBRACK, - STATE(9745), 1, + STATE(10031), 1, aux_sym_attribute_declaration_repeat1, - [354626] = 4, + [355867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15872), 1, + ACTIONS(16298), 1, anon_sym_COMMA, - ACTIONS(15936), 1, + ACTIONS(16330), 1, anon_sym_RBRACK_RBRACK, - STATE(9747), 1, + STATE(10034), 1, aux_sym_attribute_declaration_repeat2, - [354639] = 4, + [355880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15938), 1, + ACTIONS(16332), 1, anon_sym_GT2, - STATE(9565), 1, + STATE(9704), 1, aux_sym_template_argument_list_repeat1, - [354652] = 4, + [355893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15868), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15940), 1, - anon_sym_RBRACK_RBRACK, - STATE(9599), 1, - aux_sym_attribute_declaration_repeat1, - [354665] = 4, + ACTIONS(16334), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [355906] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15942), 1, + ACTIONS(16336), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [354678] = 4, + [355919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15944), 1, + ACTIONS(16338), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [354691] = 4, + [355932] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(16290), 1, + anon_sym_COLON, + ACTIONS(16340), 1, + anon_sym_RPAREN, + STATE(9825), 1, + sym_gnu_asm_output_operand_list, + [355945] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15946), 1, + ACTIONS(16342), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(9832), 1, aux_sym_template_argument_list_repeat1, - [354704] = 4, + [355958] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15872), 1, + ACTIONS(16344), 3, anon_sym_COMMA, - ACTIONS(15940), 1, - anon_sym_RBRACK_RBRACK, - STATE(9600), 1, - aux_sym_attribute_declaration_repeat2, - [354717] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [355967] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15930), 1, - anon_sym_COLON, - ACTIONS(15948), 1, - anon_sym_RPAREN, - STATE(11329), 1, - sym_gnu_asm_goto_list, - [354730] = 4, + ACTIONS(16294), 1, + anon_sym_COMMA, + ACTIONS(16346), 1, + anon_sym_RBRACK_RBRACK, + STATE(10110), 1, + aux_sym_attribute_declaration_repeat1, + [355980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15886), 1, + ACTIONS(16348), 3, anon_sym_COMMA, - ACTIONS(15950), 1, anon_sym_RPAREN, - STATE(9856), 1, - aux_sym_throw_specifier_repeat1, - [354743] = 4, + anon_sym_COLON, + [355989] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12035), 1, + ACTIONS(16298), 1, anon_sym_COMMA, - ACTIONS(15952), 1, - anon_sym_RPAREN, - STATE(9672), 1, - aux_sym_generic_expression_repeat1, - [354756] = 4, + ACTIONS(16346), 1, + anon_sym_RBRACK_RBRACK, + STATE(10111), 1, + aux_sym_attribute_declaration_repeat2, + [356002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13881), 1, - anon_sym_requires, - ACTIONS(14740), 1, - anon_sym_LBRACE, - STATE(10637), 1, - sym_requires_clause, - [354769] = 4, + ACTIONS(16350), 1, + anon_sym_catch, + STATE(2940), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [356013] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15868), 1, + ACTIONS(16294), 1, anon_sym_COMMA, - ACTIONS(15954), 1, + ACTIONS(16352), 1, anon_sym_RBRACK_RBRACK, - STATE(9575), 1, + STATE(9717), 1, aux_sym_attribute_declaration_repeat1, - [354782] = 4, + [356026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15872), 1, + ACTIONS(16298), 1, anon_sym_COMMA, - ACTIONS(15954), 1, + ACTIONS(16352), 1, anon_sym_RBRACK_RBRACK, - STATE(9576), 1, + STATE(9718), 1, aux_sym_attribute_declaration_repeat2, - [354795] = 3, + [356039] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15956), 1, - anon_sym_catch, - STATE(1017), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [354806] = 3, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16354), 1, + anon_sym_SEMI, + STATE(11630), 1, + sym_attribute_declaration, + [356052] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15958), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15960), 2, + ACTIONS(16356), 1, + anon_sym_COMMA, + ACTIONS(16358), 1, + anon_sym_RPAREN, + STATE(10013), 1, + aux_sym_throw_specifier_repeat1, + [356065] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15922), 1, anon_sym_COMMA, + ACTIONS(15924), 1, anon_sym_LBRACE, - [354817] = 4, + STATE(10026), 1, + aux_sym_base_class_clause_repeat1, + [356078] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15868), 1, + ACTIONS(16294), 1, anon_sym_COMMA, - ACTIONS(15962), 1, + ACTIONS(16360), 1, anon_sym_RBRACK_RBRACK, - STATE(9745), 1, + STATE(10031), 1, aux_sym_attribute_declaration_repeat1, - [354830] = 4, + [356091] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15872), 1, + ACTIONS(16298), 1, anon_sym_COMMA, - ACTIONS(15962), 1, + ACTIONS(16360), 1, anon_sym_RBRACK_RBRACK, - STATE(9747), 1, + STATE(10034), 1, aux_sym_attribute_declaration_repeat2, - [354843] = 4, + [356104] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15494), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(15964), 1, - anon_sym_LBRACE, - STATE(9730), 1, - aux_sym_base_class_clause_repeat1, - [354856] = 4, + ACTIONS(16362), 1, + anon_sym_SEMI, + STATE(9766), 1, + aux_sym_declaration_repeat1, + [356117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15966), 1, + ACTIONS(16364), 1, anon_sym_GT2, - STATE(9581), 1, + STATE(9723), 1, aux_sym_template_argument_list_repeat1, - [354869] = 4, + [356130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15968), 1, + ACTIONS(16366), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [354882] = 4, + [356143] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15970), 1, + ACTIONS(16368), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [354895] = 4, + [356156] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15972), 1, + ACTIONS(16370), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [354908] = 4, + [356169] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(15974), 1, + ACTIONS(16372), 1, anon_sym_SEMI, - STATE(9623), 1, + STATE(9935), 1, aux_sym_declaration_repeat1, - [354921] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15876), 1, - anon_sym_COLON, - ACTIONS(15976), 1, - anon_sym_RPAREN, - STATE(9610), 1, - sym_gnu_asm_clobber_list, - [354934] = 4, + [356182] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15880), 1, - anon_sym_COLON, - ACTIONS(15978), 1, + ACTIONS(16374), 1, + anon_sym_COMMA, + ACTIONS(16376), 1, anon_sym_RPAREN, - STATE(9611), 1, - sym_gnu_asm_input_operand_list, - [354947] = 4, + STATE(9786), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [356195] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(15980), 1, - anon_sym_GT2, - STATE(9588), 1, - aux_sym_template_argument_list_repeat1, - [354960] = 4, + ACTIONS(16378), 1, + anon_sym_SEMI, + STATE(9663), 1, + aux_sym_declaration_repeat1, + [356208] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(15922), 1, anon_sym_COMMA, - ACTIONS(15982), 1, - anon_sym_GT2, - STATE(9769), 1, - aux_sym_template_argument_list_repeat1, - [354973] = 4, + ACTIONS(15924), 1, + anon_sym_LBRACE, + STATE(10033), 1, + aux_sym_base_class_clause_repeat1, + [356221] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(15984), 1, - anon_sym_GT2, - STATE(9769), 1, - aux_sym_template_argument_list_repeat1, - [354986] = 4, + ACTIONS(16380), 1, + anon_sym_SEMI, + STATE(9663), 1, + aux_sym_declaration_repeat1, + [356234] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(15986), 1, - anon_sym_GT2, - STATE(9769), 1, - aux_sym_template_argument_list_repeat1, - [354999] = 4, + ACTIONS(16382), 1, + anon_sym_SEMI, + STATE(9663), 1, + aux_sym_declaration_repeat1, + [356247] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15868), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(15988), 1, - anon_sym_RBRACK_RBRACK, - STATE(9745), 1, - aux_sym_attribute_declaration_repeat1, - [355012] = 4, + ACTIONS(16384), 1, + anon_sym_SEMI, + STATE(9845), 1, + aux_sym_declaration_repeat1, + [356260] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15872), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(15988), 1, - anon_sym_RBRACK_RBRACK, - STATE(9747), 1, - aux_sym_attribute_declaration_repeat2, - [355025] = 4, + ACTIONS(16386), 1, + anon_sym_SEMI, + STATE(9663), 1, + aux_sym_declaration_repeat1, + [356273] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(15990), 1, + ACTIONS(16388), 1, anon_sym_SEMI, - STATE(9926), 1, + STATE(9663), 1, aux_sym_declaration_repeat1, - [355038] = 4, + [356286] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15886), 1, + ACTIONS(16312), 1, anon_sym_COMMA, - ACTIONS(15992), 1, + ACTIONS(16390), 1, anon_sym_RPAREN, - STATE(9958), 1, - aux_sym_throw_specifier_repeat1, - [355051] = 4, + STATE(9846), 1, + aux_sym_parameter_list_repeat1, + [356299] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11985), 1, + ACTIONS(16312), 1, anon_sym_COMMA, - ACTIONS(12114), 1, + ACTIONS(16392), 1, anon_sym_RPAREN, - STATE(9817), 1, - aux_sym_argument_list_repeat1, - [355064] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13877), 1, - anon_sym_LBRACE, - ACTIONS(13881), 1, - anon_sym_requires, - STATE(10694), 1, - sym_requires_clause, - [355077] = 4, + STATE(9937), 1, + aux_sym_parameter_list_repeat1, + [356312] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15994), 1, + ACTIONS(16394), 1, anon_sym_GT2, - STATE(9598), 1, + STATE(9738), 1, aux_sym_template_argument_list_repeat1, - [355090] = 4, + [356325] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15996), 1, + ACTIONS(16396), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [355103] = 4, + [356338] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(15998), 1, + ACTIONS(16398), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [355116] = 4, + [356351] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16000), 1, + ACTIONS(16400), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [355129] = 4, + [356364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15868), 1, - anon_sym_COMMA, - ACTIONS(16002), 1, - anon_sym_RBRACK_RBRACK, - STATE(9745), 1, - aux_sym_attribute_declaration_repeat1, - [355142] = 4, + ACTIONS(16402), 1, + anon_sym_catch, + STATE(292), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [356375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15872), 1, + ACTIONS(15922), 1, anon_sym_COMMA, - ACTIONS(16002), 1, - anon_sym_RBRACK_RBRACK, - STATE(9747), 1, - aux_sym_attribute_declaration_repeat2, - [355155] = 4, + ACTIONS(16222), 1, + anon_sym_LBRACE, + STATE(10033), 1, + aux_sym_base_class_clause_repeat1, + [356388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11985), 1, + ACTIONS(16404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16406), 2, anon_sym_COMMA, - ACTIONS(12136), 1, - anon_sym_RPAREN, - STATE(9655), 1, - aux_sym_argument_list_repeat1, - [355168] = 4, + anon_sym_LBRACE, + [356399] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7021), 1, - anon_sym_LBRACE, - ACTIONS(15488), 1, - anon_sym_COLON_COLON, - STATE(910), 1, - sym_declaration_list, - [355181] = 4, + ACTIONS(16294), 1, + anon_sym_COMMA, + ACTIONS(16408), 1, + anon_sym_RBRACK_RBRACK, + STATE(10031), 1, + aux_sym_attribute_declaration_repeat1, + [356412] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12140), 1, + ACTIONS(16298), 1, anon_sym_COMMA, - ACTIONS(12142), 1, - anon_sym_RBRACE, - STATE(9656), 1, - aux_sym_initializer_list_repeat1, - [355194] = 4, + ACTIONS(16408), 1, + anon_sym_RBRACK_RBRACK, + STATE(10034), 1, + aux_sym_attribute_declaration_repeat2, + [356425] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12035), 1, + ACTIONS(12309), 1, anon_sym_COMMA, - ACTIONS(16004), 1, + ACTIONS(12447), 1, anon_sym_RPAREN, - STATE(9672), 1, - aux_sym_generic_expression_repeat1, - [355207] = 4, + STATE(9792), 1, + aux_sym_argument_list_repeat1, + [356438] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16006), 1, + ACTIONS(16410), 1, anon_sym_GT2, - STATE(9608), 1, + STATE(9748), 1, aux_sym_template_argument_list_repeat1, - [355220] = 4, + [356451] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16008), 1, + ACTIONS(16412), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [355233] = 4, + [356464] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16010), 1, + ACTIONS(16414), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [355246] = 4, + [356477] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16012), 1, + ACTIONS(16416), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [355259] = 2, + [356490] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16014), 3, + ACTIONS(16418), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [355268] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15930), 1, - anon_sym_COLON, - ACTIONS(16016), 1, - anon_sym_RPAREN, - STATE(10625), 1, - sym_gnu_asm_goto_list, - [355281] = 4, + ACTIONS(16420), 1, + anon_sym_LBRACE, + STATE(10196), 1, + aux_sym_field_initializer_list_repeat1, + [356503] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15876), 1, - anon_sym_COLON, - ACTIONS(16018), 1, - anon_sym_RPAREN, - STATE(9631), 1, - sym_gnu_asm_clobber_list, - [355294] = 4, + ACTIONS(12449), 1, + anon_sym_COMMA, + ACTIONS(12451), 1, + anon_sym_RBRACE, + STATE(9793), 1, + aux_sym_initializer_list_repeat1, + [356516] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16020), 1, - anon_sym_RPAREN, - ACTIONS(16022), 1, - anon_sym_COLON, - STATE(9659), 1, - sym_gnu_asm_output_operand_list, - [355307] = 4, + ACTIONS(13937), 1, + anon_sym_COMMA, + ACTIONS(16422), 1, + anon_sym_SEMI, + STATE(9663), 1, + aux_sym_declaration_repeat1, + [356529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13881), 1, - anon_sym_requires, - ACTIONS(16024), 1, + ACTIONS(16424), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16426), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(11212), 1, - sym_requires_clause, - [355320] = 2, + [356540] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16026), 3, + ACTIONS(12364), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(12390), 1, + anon_sym_RBRACK, + STATE(9848), 1, + aux_sym_subscript_argument_list_repeat1, + [356553] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9652), 1, + anon_sym_SEMI, + ACTIONS(10005), 1, + anon_sym_LT, + STATE(2846), 1, + sym_template_argument_list, + [356566] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16290), 1, anon_sym_COLON, - [355329] = 4, + ACTIONS(16428), 1, + anon_sym_RPAREN, + STATE(9798), 1, + sym_gnu_asm_output_operand_list, + [356579] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16028), 1, + ACTIONS(16430), 1, anon_sym_GT2, - STATE(9663), 1, + STATE(9759), 1, aux_sym_template_argument_list_repeat1, - [355342] = 4, + [356592] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16030), 1, + ACTIONS(16432), 1, anon_sym_GT2, - STATE(9619), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [355355] = 4, + [356605] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16032), 1, + ACTIONS(16434), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [355368] = 4, + [356618] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16034), 1, + ACTIONS(16436), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [355381] = 4, + [356631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(16438), 1, + anon_sym_catch, + STATE(531), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [356642] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16036), 1, + ACTIONS(16440), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(9802), 1, aux_sym_template_argument_list_repeat1, - [355394] = 4, + [356655] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12132), 1, + ACTIONS(15922), 1, anon_sym_COMMA, - ACTIONS(12134), 1, - anon_sym_RBRACE, - STATE(9834), 1, - aux_sym_initializer_list_repeat1, - [355407] = 4, + ACTIONS(16222), 1, + anon_sym_LBRACE, + STATE(9945), 1, + aux_sym_base_class_clause_repeat1, + [356668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(16442), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16444), 2, anon_sym_COMMA, - ACTIONS(16038), 1, + anon_sym_LBRACE, + [356679] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13937), 1, + anon_sym_COMMA, + ACTIONS(16446), 1, anon_sym_SEMI, - STATE(9667), 1, + STATE(9811), 1, aux_sym_declaration_repeat1, - [355420] = 4, + [356692] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16040), 1, + ACTIONS(16448), 1, anon_sym_SEMI, - STATE(9926), 1, + STATE(9663), 1, aux_sym_declaration_repeat1, - [355433] = 4, + [356705] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16042), 1, + ACTIONS(16450), 1, anon_sym_SEMI, - STATE(9926), 1, + STATE(9663), 1, aux_sym_declaration_repeat1, - [355446] = 4, + [356718] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16044), 1, - anon_sym_COMMA, - ACTIONS(16046), 1, - anon_sym_RPAREN, - STATE(9687), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [355459] = 3, + ACTIONS(15566), 1, + sym_identifier, + ACTIONS(15568), 1, + anon_sym_using, + STATE(10283), 1, + sym_attribute, + [356731] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16048), 1, - anon_sym_catch, - STATE(468), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [355470] = 4, + ACTIONS(16312), 1, + anon_sym_COMMA, + ACTIONS(16452), 1, + anon_sym_RPAREN, + STATE(9812), 1, + aux_sym_parameter_list_repeat1, + [356744] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16050), 1, + ACTIONS(16454), 1, anon_sym_GT2, - STATE(9629), 1, + STATE(9772), 1, aux_sym_template_argument_list_repeat1, - [355483] = 4, + [356757] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16052), 1, + ACTIONS(16456), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [355496] = 4, + [356770] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16054), 1, + ACTIONS(16458), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [355509] = 4, + [356783] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16056), 1, + ACTIONS(16460), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [355522] = 4, + [356796] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15912), 1, + ACTIONS(16294), 1, anon_sym_COMMA, - ACTIONS(16058), 1, - anon_sym_RPAREN, - STATE(9669), 1, - aux_sym_parameter_list_repeat1, - [355535] = 4, + ACTIONS(16462), 1, + anon_sym_RBRACK_RBRACK, + STATE(10031), 1, + aux_sym_attribute_declaration_repeat1, + [356809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15930), 1, - anon_sym_COLON, - ACTIONS(16060), 1, - anon_sym_RPAREN, - STATE(10698), 1, - sym_gnu_asm_goto_list, - [355548] = 3, + ACTIONS(16464), 1, + anon_sym_catch, + STATE(522), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [356820] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16062), 1, + ACTIONS(16298), 1, + anon_sym_COMMA, + ACTIONS(16462), 1, + anon_sym_RBRACK_RBRACK, + STATE(10034), 1, + aux_sym_attribute_declaration_repeat2, + [356833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16466), 1, anon_sym_catch, - STATE(2488), 2, + STATE(626), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [355559] = 4, + [356844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12035), 1, + ACTIONS(16468), 1, + anon_sym_RPAREN, + ACTIONS(16470), 1, + anon_sym_COLON, + STATE(10887), 1, + sym_gnu_asm_goto_list, + [356857] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16472), 1, anon_sym_COMMA, - ACTIONS(16064), 1, + ACTIONS(16475), 1, anon_sym_RPAREN, - STATE(9672), 1, + STATE(9778), 1, aux_sym_generic_expression_repeat1, - [355572] = 4, + [356870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16066), 1, + ACTIONS(16477), 1, anon_sym_GT2, - STATE(9637), 1, + STATE(9782), 1, aux_sym_template_argument_list_repeat1, - [355585] = 4, + [356883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16068), 1, + ACTIONS(16479), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [355598] = 4, + [356896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16070), 1, + ACTIONS(16481), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [355611] = 4, + [356909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16072), 1, + ACTIONS(16483), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [355624] = 4, + [356922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15880), 1, + ACTIONS(16485), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(16074), 1, + [356931] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16487), 3, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(9766), 1, - sym_gnu_asm_input_operand_list, - [355637] = 4, + anon_sym_COLON, + [356940] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12364), 1, + anon_sym_COMMA, + ACTIONS(12402), 1, + anon_sym_RBRACK, + STATE(9942), 1, + aux_sym_subscript_argument_list_repeat1, + [356953] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16374), 1, + anon_sym_COMMA, + ACTIONS(16489), 1, + anon_sym_RPAREN, + STATE(9820), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [356966] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16076), 1, + ACTIONS(16491), 1, anon_sym_GT2, - STATE(9642), 1, + STATE(9790), 1, aux_sym_template_argument_list_repeat1, - [355650] = 4, + [356979] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16078), 1, + ACTIONS(16493), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [355663] = 4, + [356992] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16080), 1, + ACTIONS(16495), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [355676] = 4, + [357005] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16082), 1, + ACTIONS(16497), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [355689] = 4, + [357018] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16022), 1, - anon_sym_COLON, - ACTIONS(16084), 1, + ACTIONS(16312), 1, + anon_sym_COMMA, + ACTIONS(16499), 1, anon_sym_RPAREN, - STATE(9767), 1, - sym_gnu_asm_output_operand_list, - [355702] = 4, + STATE(9688), 1, + aux_sym_parameter_list_repeat1, + [357031] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16086), 1, + ACTIONS(12309), 1, anon_sym_COMMA, - ACTIONS(16088), 1, - anon_sym_RBRACK, - STATE(10038), 1, - aux_sym_lambda_capture_specifier_repeat1, - [355715] = 4, + ACTIONS(16501), 1, + anon_sym_RPAREN, + STATE(9952), 1, + aux_sym_argument_list_repeat1, + [357044] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(5764), 1, + anon_sym_RBRACE, + ACTIONS(16503), 1, anon_sym_COMMA, - ACTIONS(16090), 1, + STATE(9972), 1, + aux_sym_initializer_list_repeat1, + [357057] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(16505), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(9797), 1, aux_sym_template_argument_list_repeat1, - [355728] = 4, + [357070] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13617), 1, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(16507), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [357083] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(16509), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [357096] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16092), 1, + ACTIONS(16511), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [357109] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16513), 1, anon_sym_RPAREN, - STATE(9899), 1, - aux_sym_preproc_argument_list_repeat1, - [355741] = 3, + ACTIONS(16515), 1, + anon_sym_COLON, + STATE(9821), 1, + sym_gnu_asm_input_operand_list, + [357122] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9379), 1, - anon_sym___attribute, - ACTIONS(9381), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [355752] = 3, + ACTIONS(16290), 1, + anon_sym_COLON, + ACTIONS(16517), 1, + anon_sym_RPAREN, + STATE(9822), 1, + sym_gnu_asm_output_operand_list, + [357135] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9542), 1, - anon_sym___attribute, - ACTIONS(9544), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [355763] = 4, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(16519), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [357148] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16094), 1, + ACTIONS(16521), 1, anon_sym_GT2, - STATE(9652), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [355776] = 4, + [357161] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16096), 1, + ACTIONS(16523), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [355789] = 4, + [357174] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16098), 1, + ACTIONS(16525), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(9806), 1, aux_sym_template_argument_list_repeat1, - [355802] = 4, + [357187] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16100), 1, + ACTIONS(16527), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [355815] = 4, + [357200] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15868), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16102), 1, - anon_sym_RBRACK_RBRACK, - STATE(9589), 1, - aux_sym_attribute_declaration_repeat1, - [355828] = 4, + ACTIONS(16529), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [357213] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16104), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16106), 1, + ACTIONS(16531), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [357226] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16533), 1, anon_sym_RPAREN, - STATE(9916), 1, - aux_sym_preproc_params_repeat1, - [355841] = 4, + ACTIONS(16535), 1, + anon_sym_COLON, + STATE(10038), 1, + sym_gnu_asm_clobber_list, + [357239] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11985), 1, + ACTIONS(12309), 1, anon_sym_COMMA, - ACTIONS(16108), 1, + ACTIONS(16537), 1, anon_sym_RPAREN, - STATE(9704), 1, + STATE(9952), 1, aux_sym_argument_list_repeat1, - [355854] = 4, + [357252] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - anon_sym_RBRACE, - ACTIONS(16110), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - STATE(9714), 1, - aux_sym_initializer_list_repeat1, - [355867] = 4, - ACTIONS(13686), 1, + ACTIONS(16539), 1, + anon_sym_SEMI, + STATE(9823), 1, + aux_sym_declaration_repeat1, + [357265] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(16112), 1, - aux_sym_preproc_include_token2, - ACTIONS(16114), 1, - anon_sym_LPAREN2, - STATE(11388), 1, - sym_preproc_argument_list, - [355880] = 4, + ACTIONS(13937), 1, + anon_sym_COMMA, + ACTIONS(16541), 1, + anon_sym_SEMI, + STATE(9663), 1, + aux_sym_declaration_repeat1, + [357278] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16116), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16118), 1, - anon_sym_GT2, - STATE(9748), 1, - aux_sym_template_parameter_list_repeat1, - [355893] = 4, + ACTIONS(16543), 1, + anon_sym_SEMI, + STATE(9663), 1, + aux_sym_declaration_repeat1, + [357291] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15880), 1, - anon_sym_COLON, - ACTIONS(16120), 1, + ACTIONS(16312), 1, + anon_sym_COMMA, + ACTIONS(16545), 1, anon_sym_RPAREN, - STATE(9683), 1, - sym_gnu_asm_input_operand_list, - [355906] = 4, + STATE(10185), 1, + aux_sym_parameter_list_repeat1, + [357304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16022), 1, - anon_sym_COLON, - ACTIONS(16122), 1, - anon_sym_RPAREN, - STATE(9684), 1, - sym_gnu_asm_output_operand_list, - [355919] = 4, + ACTIONS(16464), 1, + anon_sym_catch, + STATE(523), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [357315] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(16356), 1, anon_sym_COMMA, - ACTIONS(16124), 1, - anon_sym_GT2, - STATE(9769), 1, - aux_sym_template_argument_list_repeat1, - [355932] = 4, + ACTIONS(16547), 1, + anon_sym_RPAREN, + STATE(9824), 1, + aux_sym_throw_specifier_repeat1, + [357328] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(16126), 1, - anon_sym_GT2, - STATE(9769), 1, - aux_sym_template_argument_list_repeat1, - [355945] = 4, + ACTIONS(7395), 1, + anon_sym_LBRACE, + ACTIONS(15906), 1, + anon_sym_COLON_COLON, + STATE(473), 1, + sym_declaration_list, + [357341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12364), 1, anon_sym_COMMA, - ACTIONS(16128), 1, - anon_sym_GT2, - STATE(9769), 1, - aux_sym_template_argument_list_repeat1, - [355958] = 4, + ACTIONS(16549), 1, + anon_sym_RBRACK, + STATE(10201), 1, + aux_sym_subscript_argument_list_repeat1, + [357354] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(5774), 1, + anon_sym_RBRACE, + ACTIONS(16551), 1, anon_sym_COMMA, - ACTIONS(16130), 1, - anon_sym_GT2, - STATE(9769), 1, - aux_sym_template_argument_list_repeat1, - [355971] = 4, + STATE(9972), 1, + aux_sym_initializer_list_repeat1, + [357367] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(16132), 1, + ACTIONS(12404), 3, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(9685), 1, - aux_sym_declaration_repeat1, - [355984] = 4, + anon_sym_COLON, + [357376] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(12309), 1, anon_sym_COMMA, - ACTIONS(16134), 1, - anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [355997] = 4, + ACTIONS(12523), 1, + anon_sym_RPAREN, + STATE(10074), 1, + aux_sym_argument_list_repeat1, + [357389] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16553), 1, + anon_sym_COMMA, + ACTIONS(16556), 1, + anon_sym_RPAREN, + STATE(9820), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [357402] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16535), 1, + anon_sym_COLON, + ACTIONS(16558), 1, + anon_sym_RPAREN, + STATE(9829), 1, + sym_gnu_asm_clobber_list, + [357415] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16515), 1, + anon_sym_COLON, + ACTIONS(16560), 1, + anon_sym_RPAREN, + STATE(9831), 1, + sym_gnu_asm_input_operand_list, + [357428] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16136), 1, + ACTIONS(16562), 1, anon_sym_SEMI, - STATE(9926), 1, + STATE(9663), 1, aux_sym_declaration_repeat1, - [356010] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16022), 1, - anon_sym_COLON, - ACTIONS(16138), 1, - anon_sym_RPAREN, - STATE(9909), 1, - sym_gnu_asm_output_operand_list, - [356023] = 4, + [357441] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15912), 1, + ACTIONS(16356), 1, anon_sym_COMMA, - ACTIONS(16140), 1, + ACTIONS(16564), 1, anon_sym_RPAREN, - STATE(9837), 1, - aux_sym_parameter_list_repeat1, - [356036] = 3, + STATE(10013), 1, + aux_sym_throw_specifier_repeat1, + [357454] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16062), 1, - anon_sym_catch, - STATE(2493), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [356047] = 4, + ACTIONS(16515), 1, + anon_sym_COLON, + ACTIONS(16566), 1, + anon_sym_RPAREN, + STATE(9864), 1, + sym_gnu_asm_input_operand_list, + [357467] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15886), 1, - anon_sym_COMMA, - ACTIONS(16142), 1, + ACTIONS(16290), 1, + anon_sym_COLON, + ACTIONS(16568), 1, anon_sym_RPAREN, - STATE(9686), 1, - aux_sym_throw_specifier_repeat1, - [356060] = 4, + STATE(9865), 1, + sym_gnu_asm_output_operand_list, + [357480] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16144), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16147), 1, - anon_sym_RPAREN, - STATE(9672), 1, - aux_sym_generic_expression_repeat1, - [356073] = 4, + ACTIONS(16570), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [357493] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16149), 1, + ACTIONS(16572), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [356086] = 4, + [357506] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16470), 1, + anon_sym_COLON, + ACTIONS(16574), 1, + anon_sym_RPAREN, + STATE(11573), 1, + sym_gnu_asm_goto_list, + [357519] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16151), 1, + ACTIONS(16576), 1, anon_sym_LPAREN2, - ACTIONS(16153), 1, + ACTIONS(16578), 1, anon_sym_constexpr, - STATE(204), 1, + STATE(217), 1, sym_condition_clause, - [356099] = 2, + [357532] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16155), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(16535), 1, anon_sym_COLON, - [356108] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16157), 3, - anon_sym_COMMA, + ACTIONS(16580), 1, anon_sym_RPAREN, - anon_sym_COLON, - [356117] = 3, - ACTIONS(13686), 1, - sym_comment, - STATE(9358), 1, - aux_sym_char_literal_repeat1, - ACTIONS(16159), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [356128] = 4, + STATE(9836), 1, + sym_gnu_asm_clobber_list, + [357545] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15872), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16102), 1, - anon_sym_RBRACK_RBRACK, - STATE(9590), 1, - aux_sym_attribute_declaration_repeat2, - [356141] = 3, - ACTIONS(13686), 1, + ACTIONS(16582), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [357558] = 3, + ACTIONS(14065), 1, sym_comment, - STATE(9398), 1, + STATE(9654), 1, aux_sym_char_literal_repeat1, - ACTIONS(16161), 2, + ACTIONS(16584), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [356152] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15488), 3, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - [356161] = 4, + [357569] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(16356), 1, anon_sym_COMMA, - ACTIONS(16163), 1, - anon_sym_GT2, - STATE(9528), 1, - aux_sym_template_argument_list_repeat1, - [356174] = 3, + ACTIONS(16586), 1, + anon_sym_RPAREN, + STATE(9715), 1, + aux_sym_throw_specifier_repeat1, + [357582] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16167), 1, - anon_sym_COLON_COLON, - ACTIONS(16165), 2, - anon_sym_SEMI, + ACTIONS(14247), 1, + anon_sym_requires, + ACTIONS(15198), 1, anon_sym_LBRACE, - [356185] = 4, + STATE(10701), 1, + sym_requires_clause, + [357595] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15876), 1, + ACTIONS(16470), 1, anon_sym_COLON, - ACTIONS(16169), 1, + ACTIONS(16588), 1, anon_sym_RPAREN, - STATE(9688), 1, - sym_gnu_asm_clobber_list, - [356198] = 4, + STATE(11601), 1, + sym_gnu_asm_goto_list, + [357608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15880), 1, - anon_sym_COLON, - ACTIONS(16171), 1, + ACTIONS(12421), 1, + anon_sym_COMMA, + ACTIONS(16590), 1, anon_sym_RPAREN, - STATE(9691), 1, - sym_gnu_asm_input_operand_list, - [356211] = 4, + STATE(9778), 1, + aux_sym_generic_expression_repeat1, + [357621] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(16173), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16592), 1, anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [356224] = 4, + STATE(10813), 1, + sym_attribute_declaration, + [357634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15886), 1, + ACTIONS(16594), 3, anon_sym_COMMA, - ACTIONS(16175), 1, anon_sym_RPAREN, - STATE(9958), 1, - aux_sym_throw_specifier_repeat1, - [356237] = 4, + anon_sym_COLON, + [357643] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16044), 1, + ACTIONS(16596), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [357652] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16598), 3, anon_sym_COMMA, - ACTIONS(16177), 1, anon_sym_RPAREN, - STATE(9710), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [356250] = 4, + anon_sym_COLON, + [357661] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15930), 1, - anon_sym_COLON, - ACTIONS(16179), 1, - anon_sym_RPAREN, - STATE(11424), 1, - sym_gnu_asm_goto_list, - [356263] = 3, + ACTIONS(14247), 1, + anon_sym_requires, + ACTIONS(14381), 1, + anon_sym_LBRACE, + STATE(11133), 1, + sym_requires_clause, + [357674] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9507), 1, - anon_sym___attribute, - ACTIONS(9509), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [356274] = 3, + ACTIONS(13937), 1, + anon_sym_COMMA, + ACTIONS(16600), 1, + anon_sym_SEMI, + STATE(9867), 1, + aux_sym_declaration_repeat1, + [357687] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9511), 1, - anon_sym___attribute, - ACTIONS(9513), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [356285] = 4, + ACTIONS(13937), 1, + anon_sym_COMMA, + ACTIONS(16602), 1, + anon_sym_SEMI, + STATE(9663), 1, + aux_sym_declaration_repeat1, + [357700] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15876), 1, - anon_sym_COLON, - ACTIONS(16181), 1, + ACTIONS(13937), 1, + anon_sym_COMMA, + ACTIONS(16604), 1, + anon_sym_SEMI, + STATE(9663), 1, + aux_sym_declaration_repeat1, + [357713] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16312), 1, + anon_sym_COMMA, + ACTIONS(16606), 1, anon_sym_RPAREN, - STATE(9694), 1, - sym_gnu_asm_clobber_list, - [356298] = 2, + STATE(10185), 1, + aux_sym_parameter_list_repeat1, + [357726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16183), 3, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - [356307] = 4, + ACTIONS(16402), 1, + anon_sym_catch, + STATE(291), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [357737] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16151), 1, - anon_sym_LPAREN2, - ACTIONS(16185), 1, - anon_sym_constexpr, - STATE(199), 1, - sym_condition_clause, - [356320] = 4, + ACTIONS(12364), 1, + anon_sym_COMMA, + ACTIONS(16608), 1, + anon_sym_RBRACK, + STATE(10201), 1, + aux_sym_subscript_argument_list_repeat1, + [357750] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15930), 1, - anon_sym_COLON, - ACTIONS(16187), 1, + ACTIONS(16356), 1, + anon_sym_COMMA, + ACTIONS(16610), 1, anon_sym_RPAREN, - STATE(11459), 1, - sym_gnu_asm_goto_list, - [356333] = 4, + STATE(9871), 1, + aux_sym_throw_specifier_repeat1, + [357763] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12035), 1, + ACTIONS(13909), 1, anon_sym_COMMA, - ACTIONS(16189), 1, + ACTIONS(16612), 1, anon_sym_RPAREN, - STATE(9672), 1, - aux_sym_generic_expression_repeat1, - [356346] = 3, + STATE(9932), 1, + aux_sym_preproc_argument_list_repeat1, + [357776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16193), 1, - anon_sym_RPAREN, - ACTIONS(16191), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [356357] = 3, + ACTIONS(10857), 1, + anon_sym_EQ, + ACTIONS(10855), 2, + anon_sym_COMMA, + anon_sym_GT2, + [357787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9375), 1, - anon_sym___attribute, - ACTIONS(9377), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [356368] = 3, + ACTIONS(15906), 3, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + [357796] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9558), 1, - anon_sym___attribute, - ACTIONS(9560), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [356379] = 4, + ACTIONS(16614), 1, + anon_sym_default, + ACTIONS(16616), 1, + anon_sym_delete, + ACTIONS(16618), 1, + aux_sym_pure_virtual_clause_token1, + [357809] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16620), 1, + anon_sym_default, + ACTIONS(16622), 1, + anon_sym_delete, + ACTIONS(16624), 1, + aux_sym_pure_virtual_clause_token1, + [357822] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(16195), 1, + ACTIONS(16626), 1, anon_sym_SEMI, - STATE(10994), 1, + STATE(10632), 1, sym_attribute_declaration, - [356392] = 3, + [357835] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9420), 1, - anon_sym___attribute, - ACTIONS(9422), 2, - anon_sym___attribute__, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - [356403] = 3, + ACTIONS(16628), 1, + anon_sym_SEMI, + STATE(10766), 1, + sym_attribute_declaration, + [357848] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9416), 1, - anon_sym___attribute, - ACTIONS(9418), 2, - anon_sym___attribute__, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - [356414] = 4, + ACTIONS(16630), 1, + anon_sym_SEMI, + STATE(10786), 1, + sym_attribute_declaration, + [357861] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16197), 1, - anon_sym_default, - ACTIONS(16199), 1, - anon_sym_delete, - ACTIONS(16201), 1, - aux_sym_pure_virtual_clause_token1, - [356427] = 3, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16632), 1, + anon_sym_SEMI, + STATE(10939), 1, + sym_attribute_declaration, + [357874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9412), 1, + ACTIONS(9946), 1, anon_sym___attribute, - ACTIONS(9414), 2, + ACTIONS(9948), 2, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [356438] = 4, + [357885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12337), 1, - anon_sym_RPAREN, - ACTIONS(16203), 1, - anon_sym_COMMA, - STATE(9704), 1, - aux_sym_argument_list_repeat1, - [356451] = 4, + ACTIONS(16438), 1, + anon_sym_catch, + STATE(520), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [357896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16086), 1, + ACTIONS(16634), 1, anon_sym_COMMA, - ACTIONS(16206), 1, - anon_sym_RBRACK, - STATE(9822), 1, - aux_sym_lambda_capture_specifier_repeat1, - [356464] = 4, + ACTIONS(16636), 1, + anon_sym_GT2, + STATE(10030), 1, + aux_sym_template_parameter_list_repeat1, + [357909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16208), 1, + ACTIONS(16638), 1, anon_sym_COMMA, - ACTIONS(16210), 1, + ACTIONS(16640), 1, anon_sym_RPAREN, - STATE(9798), 1, + STATE(10078), 1, aux_sym_requires_parameter_list_repeat1, - [356477] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9041), 1, - anon_sym_COMMA, - ACTIONS(16212), 1, - anon_sym_RBRACK, - STATE(10037), 1, - aux_sym_structured_binding_declarator_repeat1, - [356490] = 2, + [357922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16214), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [356499] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9227), 1, + ACTIONS(16644), 1, + anon_sym_COLON_COLON, + ACTIONS(16642), 2, anon_sym_SEMI, - ACTIONS(9672), 1, - anon_sym_LT, - STATE(2655), 1, - sym_template_argument_list, - [356512] = 4, + anon_sym_LBRACE, + [357933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16216), 1, - anon_sym_COMMA, - ACTIONS(16219), 1, + ACTIONS(16535), 1, + anon_sym_COLON, + ACTIONS(16646), 1, anon_sym_RPAREN, - STATE(9710), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [356525] = 4, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(16114), 1, - anon_sym_LPAREN2, - ACTIONS(16221), 1, - aux_sym_preproc_include_token2, - STATE(11388), 1, - sym_preproc_argument_list, - [356538] = 2, + STATE(9876), 1, + sym_gnu_asm_clobber_list, + [357946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16223), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(16515), 1, anon_sym_COLON, - [356547] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16225), 1, - sym_identifier, - ACTIONS(16227), 2, - anon_sym_COMMA, - anon_sym_GT2, - [356558] = 4, + ACTIONS(16648), 1, + anon_sym_RPAREN, + STATE(9877), 1, + sym_gnu_asm_input_operand_list, + [357959] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12191), 1, - anon_sym_RBRACE, - ACTIONS(16229), 1, + ACTIONS(12309), 1, anon_sym_COMMA, - STATE(9714), 1, - aux_sym_initializer_list_repeat1, - [356571] = 4, + ACTIONS(16650), 1, + anon_sym_RPAREN, + STATE(9952), 1, + aux_sym_argument_list_repeat1, + [357972] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16232), 1, + ACTIONS(16652), 1, anon_sym_SEMI, - STATE(9972), 1, + STATE(9663), 1, aux_sym_declaration_repeat1, - [356584] = 4, + [357985] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(16294), 1, anon_sym_COMMA, - ACTIONS(16234), 1, - anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [356597] = 4, + ACTIONS(16654), 1, + anon_sym_RBRACK_RBRACK, + STATE(9880), 1, + aux_sym_attribute_declaration_repeat1, + [357998] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(16298), 1, anon_sym_COMMA, - ACTIONS(16236), 1, - anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [356610] = 4, + ACTIONS(16654), 1, + anon_sym_RBRACK_RBRACK, + STATE(9881), 1, + aux_sym_attribute_declaration_repeat2, + [358011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15494), 1, - anon_sym_COMMA, - ACTIONS(16238), 1, + ACTIONS(7373), 1, anon_sym_LBRACE, - STATE(9730), 1, - aux_sym_base_class_clause_repeat1, - [356623] = 4, + ACTIONS(15906), 1, + anon_sym_COLON_COLON, + STATE(809), 1, + sym_declaration_list, + [358024] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15912), 1, + ACTIONS(16356), 1, anon_sym_COMMA, - ACTIONS(16240), 1, + ACTIONS(16656), 1, anon_sym_RPAREN, - STATE(9985), 1, - aux_sym_parameter_list_repeat1, - [356636] = 4, + STATE(10013), 1, + aux_sym_throw_specifier_repeat1, + [358037] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15868), 1, + ACTIONS(5760), 1, + anon_sym_RBRACE, + ACTIONS(16658), 1, anon_sym_COMMA, - ACTIONS(16242), 1, - anon_sym_RBRACK_RBRACK, - STATE(9791), 1, - aux_sym_attribute_declaration_repeat1, - [356649] = 4, + STATE(9972), 1, + aux_sym_initializer_list_repeat1, + [358050] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16660), 1, + anon_sym_catch, + STATE(1116), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [358061] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15872), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16242), 1, - anon_sym_RBRACK_RBRACK, - STATE(9792), 1, - aux_sym_attribute_declaration_repeat2, - [356662] = 2, + ACTIONS(16662), 1, + anon_sym_SEMI, + STATE(9891), 1, + aux_sym_declaration_repeat1, + [358074] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16244), 3, + ACTIONS(13909), 1, anon_sym_COMMA, + ACTIONS(16664), 1, anon_sym_RPAREN, + STATE(9932), 1, + aux_sym_preproc_argument_list_repeat1, + [358087] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16470), 1, anon_sym_COLON, - [356671] = 4, + ACTIONS(16666), 1, + anon_sym_RPAREN, + STATE(10970), 1, + sym_gnu_asm_goto_list, + [358100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15494), 1, - anon_sym_COMMA, - ACTIONS(15658), 1, - anon_sym_LBRACE, - STATE(9994), 1, - aux_sym_base_class_clause_repeat1, - [356684] = 4, + ACTIONS(16535), 1, + anon_sym_COLON, + ACTIONS(16668), 1, + anon_sym_RPAREN, + STATE(9883), 1, + sym_gnu_asm_clobber_list, + [358113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15494), 1, + ACTIONS(16670), 1, anon_sym_COMMA, - ACTIONS(15658), 1, - anon_sym_LBRACE, - STATE(9730), 1, - aux_sym_base_class_clause_repeat1, - [356697] = 3, + ACTIONS(16672), 1, + anon_sym_RPAREN, + STATE(9661), 1, + aux_sym_preproc_params_repeat1, + [358126] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16246), 1, - anon_sym_catch, - STATE(2805), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [356708] = 4, + ACTIONS(16418), 1, + anon_sym_COMMA, + ACTIONS(16674), 1, + anon_sym_LBRACE, + STATE(9749), 1, + aux_sym_field_initializer_list_repeat1, + [358139] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15868), 1, + ACTIONS(16294), 1, anon_sym_COMMA, - ACTIONS(16248), 1, + ACTIONS(16676), 1, anon_sym_RBRACK_RBRACK, - STATE(9750), 1, + STATE(10031), 1, aux_sym_attribute_declaration_repeat1, - [356721] = 4, + [358152] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15872), 1, + ACTIONS(16298), 1, anon_sym_COMMA, - ACTIONS(16248), 1, + ACTIONS(16676), 1, anon_sym_RBRACK_RBRACK, - STATE(9751), 1, + STATE(10034), 1, aux_sym_attribute_declaration_repeat2, - [356734] = 3, + [358165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16250), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16252), 2, + ACTIONS(12309), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [356745] = 3, + ACTIONS(12459), 1, + anon_sym_RPAREN, + STATE(9902), 1, + aux_sym_argument_list_repeat1, + [358178] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16254), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16256), 2, + ACTIONS(16470), 1, + anon_sym_COLON, + ACTIONS(16678), 1, + anon_sym_RPAREN, + STATE(11006), 1, + sym_gnu_asm_goto_list, + [358191] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12461), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [356756] = 4, + ACTIONS(12463), 1, + anon_sym_RBRACE, + STATE(9903), 1, + aux_sym_initializer_list_repeat1, + [358204] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16252), 1, - anon_sym_LBRACE, - ACTIONS(16258), 1, + ACTIONS(12421), 1, anon_sym_COMMA, - STATE(9730), 1, - aux_sym_base_class_clause_repeat1, - [356769] = 4, + ACTIONS(16680), 1, + anon_sym_RPAREN, + STATE(9778), 1, + aux_sym_generic_expression_repeat1, + [358217] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11997), 1, + ACTIONS(16290), 1, + anon_sym_COLON, + ACTIONS(16682), 1, + anon_sym_RPAREN, + STATE(9905), 1, + sym_gnu_asm_output_operand_list, + [358230] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3410), 1, + anon_sym_while, + ACTIONS(16282), 1, + anon_sym_else, + STATE(582), 1, + sym_else_clause, + [358243] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(12023), 1, - anon_sym_RBRACK, - STATE(10010), 1, - aux_sym_subscript_argument_list_repeat1, - [356782] = 4, + ACTIONS(16684), 1, + anon_sym_GT2, + STATE(9909), 1, + aux_sym_template_argument_list_repeat1, + [358256] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16261), 1, + ACTIONS(16686), 1, anon_sym_SEMI, - STATE(9921), 1, + STATE(9912), 1, aux_sym_declaration_repeat1, - [356795] = 4, + [358269] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15868), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16263), 1, - anon_sym_RBRACK_RBRACK, - STATE(9865), 1, - aux_sym_attribute_declaration_repeat1, - [356808] = 4, + ACTIONS(16688), 1, + anon_sym_SEMI, + STATE(9663), 1, + aux_sym_declaration_repeat1, + [358282] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16265), 1, + ACTIONS(16690), 1, anon_sym_SEMI, - STATE(9926), 1, + STATE(9663), 1, aux_sym_declaration_repeat1, - [356821] = 3, + [358295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16062), 1, + ACTIONS(16312), 1, + anon_sym_COMMA, + ACTIONS(16692), 1, + anon_sym_RPAREN, + STATE(9913), 1, + aux_sym_parameter_list_repeat1, + [358308] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16576), 1, + anon_sym_LPAREN2, + ACTIONS(16694), 1, + anon_sym_constexpr, + STATE(207), 1, + sym_condition_clause, + [358321] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16696), 1, anon_sym_catch, - STATE(2454), 2, + STATE(2545), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [356832] = 2, + [358332] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16267), 3, - anon_sym_COMMA, + ACTIONS(16515), 1, + anon_sym_COLON, + ACTIONS(16698), 1, anon_sym_RPAREN, - anon_sym_GT2, - [356841] = 3, + STATE(9985), 1, + sym_gnu_asm_input_operand_list, + [358345] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16246), 1, - anon_sym_catch, - STATE(2812), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [356852] = 4, + ACTIONS(16290), 1, + anon_sym_COLON, + ACTIONS(16700), 1, + anon_sym_RPAREN, + STATE(9986), 1, + sym_gnu_asm_output_operand_list, + [358358] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16269), 1, - anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [356865] = 2, + ACTIONS(16702), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [358371] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16271), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [356874] = 4, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(16704), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [358384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(9471), 1, anon_sym_COMMA, - ACTIONS(16273), 1, - anon_sym_SEMI, - STATE(9762), 1, - aux_sym_declaration_repeat1, - [356887] = 2, + ACTIONS(16706), 1, + anon_sym_RBRACK, + STATE(10180), 1, + aux_sym_structured_binding_declarator_repeat1, + [358397] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16267), 3, + ACTIONS(12322), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(16708), 1, anon_sym_GT2, - [356896] = 4, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [358410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15912), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16710), 1, + anon_sym_SEMI, + STATE(10765), 1, + sym_attribute_declaration, + [358423] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12309), 1, anon_sym_COMMA, - ACTIONS(16275), 1, + ACTIONS(16712), 1, anon_sym_RPAREN, - STATE(9942), 1, - aux_sym_parameter_list_repeat1, - [356909] = 4, + STATE(9952), 1, + aux_sym_argument_list_repeat1, + [358436] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15868), 1, + ACTIONS(5782), 1, + anon_sym_RBRACE, + ACTIONS(16714), 1, anon_sym_COMMA, - ACTIONS(16277), 1, - anon_sym_RBRACK_RBRACK, - STATE(9854), 1, - aux_sym_attribute_declaration_repeat1, - [356922] = 4, + STATE(9972), 1, + aux_sym_initializer_list_repeat1, + [358449] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16466), 1, + anon_sym_catch, + STATE(560), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [358460] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16515), 1, + anon_sym_COLON, + ACTIONS(16716), 1, + anon_sym_RPAREN, + STATE(9917), 1, + sym_gnu_asm_input_operand_list, + [358473] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16290), 1, + anon_sym_COLON, + ACTIONS(16718), 1, + anon_sym_RPAREN, + STATE(9918), 1, + sym_gnu_asm_output_operand_list, + [358486] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15872), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16263), 1, - anon_sym_RBRACK_RBRACK, - STATE(9888), 1, - aux_sym_attribute_declaration_repeat2, - [356935] = 4, + ACTIONS(16720), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [358499] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16279), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16282), 1, - anon_sym_RBRACK_RBRACK, - STATE(9745), 1, - aux_sym_attribute_declaration_repeat1, - [356948] = 4, + ACTIONS(16722), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [358512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15872), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16277), 1, - anon_sym_RBRACK_RBRACK, - STATE(9855), 1, - aux_sym_attribute_declaration_repeat2, - [356961] = 4, + ACTIONS(16724), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [358525] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16284), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16287), 1, - anon_sym_RBRACK_RBRACK, - STATE(9747), 1, - aux_sym_attribute_declaration_repeat2, - [356974] = 4, + ACTIONS(16726), 1, + anon_sym_SEMI, + STATE(9919), 1, + aux_sym_declaration_repeat1, + [358538] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16116), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16289), 1, - anon_sym_GT2, - STATE(9806), 1, - aux_sym_template_parameter_list_repeat1, - [356987] = 4, + ACTIONS(16728), 1, + anon_sym_SEMI, + STATE(9663), 1, + aux_sym_declaration_repeat1, + [358551] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16291), 1, + ACTIONS(16730), 1, anon_sym_SEMI, - STATE(9829), 1, + STATE(9663), 1, aux_sym_declaration_repeat1, - [357000] = 4, + [358564] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15868), 1, + ACTIONS(16312), 1, anon_sym_COMMA, - ACTIONS(16293), 1, - anon_sym_RBRACK_RBRACK, - STATE(9745), 1, - aux_sym_attribute_declaration_repeat1, - [357013] = 4, + ACTIONS(16732), 1, + anon_sym_RPAREN, + STATE(10185), 1, + aux_sym_parameter_list_repeat1, + [358577] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16696), 1, + anon_sym_catch, + STATE(2564), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [358588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15872), 1, + ACTIONS(16356), 1, anon_sym_COMMA, - ACTIONS(16293), 1, - anon_sym_RBRACK_RBRACK, - STATE(9747), 1, - aux_sym_attribute_declaration_repeat2, - [357026] = 4, + ACTIONS(16734), 1, + anon_sym_RPAREN, + STATE(9920), 1, + aux_sym_throw_specifier_repeat1, + [358601] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(16302), 1, + anon_sym_COMMA, + ACTIONS(16736), 1, + anon_sym_RBRACK, + STATE(10189), 1, + aux_sym_lambda_capture_specifier_repeat1, + [358614] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16535), 1, + anon_sym_COLON, + ACTIONS(16738), 1, + anon_sym_RPAREN, + STATE(9922), 1, + sym_gnu_asm_clobber_list, + [358627] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16515), 1, + anon_sym_COLON, + ACTIONS(16740), 1, + anon_sym_RPAREN, + STATE(9923), 1, + sym_gnu_asm_input_operand_list, + [358640] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16295), 1, + ACTIONS(16742), 1, anon_sym_SEMI, - STATE(9717), 1, + STATE(9663), 1, aux_sym_declaration_repeat1, - [357039] = 4, + [358653] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11985), 1, + ACTIONS(16356), 1, anon_sym_COMMA, - ACTIONS(11987), 1, + ACTIONS(16744), 1, anon_sym_RPAREN, - STATE(9772), 1, - aux_sym_argument_list_repeat1, - [357052] = 3, + STATE(10013), 1, + aux_sym_throw_specifier_repeat1, + [358666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16299), 1, - anon_sym_RPAREN, - ACTIONS(16297), 2, + ACTIONS(13937), 1, anon_sym_COMMA, + ACTIONS(16746), 1, anon_sym_SEMI, - [357063] = 4, + STATE(9728), 1, + aux_sym_declaration_repeat1, + [358679] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11989), 1, + ACTIONS(16470), 1, + anon_sym_COLON, + ACTIONS(16748), 1, + anon_sym_RPAREN, + STATE(11279), 1, + sym_gnu_asm_goto_list, + [358692] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16535), 1, + anon_sym_COLON, + ACTIONS(16750), 1, + anon_sym_RPAREN, + STATE(9924), 1, + sym_gnu_asm_clobber_list, + [358705] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16470), 1, + anon_sym_COLON, + ACTIONS(16752), 1, + anon_sym_RPAREN, + STATE(11283), 1, + sym_gnu_asm_goto_list, + [358718] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12421), 1, anon_sym_COMMA, - ACTIONS(11991), 1, - anon_sym_RBRACE, - STATE(9773), 1, - aux_sym_initializer_list_repeat1, - [357076] = 4, + ACTIONS(16754), 1, + anon_sym_RPAREN, + STATE(9778), 1, + aux_sym_generic_expression_repeat1, + [358731] = 3, + ACTIONS(14065), 1, + sym_comment, + STATE(9429), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16756), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [358742] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16301), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16303), 1, - anon_sym_LBRACE, - STATE(10033), 1, - aux_sym_field_initializer_list_repeat1, - [357089] = 3, + ACTIONS(16758), 1, + anon_sym_SEMI, + STATE(9751), 1, + aux_sym_declaration_repeat1, + [358755] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16305), 1, - anon_sym_catch, - STATE(476), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [357100] = 4, + ACTIONS(12364), 1, + anon_sym_COMMA, + ACTIONS(12537), 1, + anon_sym_RBRACK, + STATE(9816), 1, + aux_sym_subscript_argument_list_repeat1, + [358768] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16022), 1, + ACTIONS(16515), 1, anon_sym_COLON, - ACTIONS(16307), 1, + ACTIONS(16760), 1, anon_sym_RPAREN, - STATE(9776), 1, + STATE(10124), 1, + sym_gnu_asm_input_operand_list, + [358781] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16290), 1, + anon_sym_COLON, + ACTIONS(16762), 1, + anon_sym_RPAREN, + STATE(10127), 1, sym_gnu_asm_output_operand_list, - [357113] = 4, + [358794] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(7369), 1, + anon_sym_LBRACE, + ACTIONS(15906), 1, + anon_sym_COLON_COLON, + STATE(867), 1, + sym_declaration_list, + [358807] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14153), 1, + anon_sym_RPAREN, + ACTIONS(16764), 1, anon_sym_COMMA, - ACTIONS(16309), 1, - anon_sym_GT2, - STATE(9780), 1, - aux_sym_template_argument_list_repeat1, - [357126] = 4, + STATE(9932), 1, + aux_sym_preproc_argument_list_repeat1, + [358820] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16311), 1, + ACTIONS(16767), 1, anon_sym_SEMI, - STATE(9783), 1, + STATE(10009), 1, aux_sym_declaration_repeat1, - [357139] = 4, + [358833] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16313), 1, + ACTIONS(16769), 1, anon_sym_SEMI, - STATE(9926), 1, + STATE(9663), 1, aux_sym_declaration_repeat1, - [357152] = 4, + [358846] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16315), 1, + ACTIONS(16771), 1, anon_sym_SEMI, - STATE(9926), 1, + STATE(9663), 1, aux_sym_declaration_repeat1, - [357165] = 4, + [358859] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15912), 1, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(16773), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [358872] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16312), 1, anon_sym_COMMA, - ACTIONS(16317), 1, + ACTIONS(16775), 1, anon_sym_RPAREN, - STATE(9785), 1, + STATE(10185), 1, aux_sym_parameter_list_repeat1, - [357178] = 3, + [358885] = 4, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(16777), 1, + aux_sym_preproc_include_token2, + ACTIONS(16779), 1, + anon_sym_LPAREN2, + STATE(10803), 1, + sym_preproc_argument_list, + [358898] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(16781), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [358911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16319), 1, + ACTIONS(16438), 1, anon_sym_catch, - STATE(2841), 2, + STATE(539), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [357189] = 3, + [358922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16167), 1, - anon_sym_COLON_COLON, - ACTIONS(16321), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [357200] = 4, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(16783), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [358935] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15876), 1, - anon_sym_COLON, - ACTIONS(16323), 1, - anon_sym_RPAREN, - STATE(10052), 1, - sym_gnu_asm_clobber_list, - [357213] = 4, + ACTIONS(12364), 1, + anon_sym_COMMA, + ACTIONS(16785), 1, + anon_sym_RBRACK, + STATE(10201), 1, + aux_sym_subscript_argument_list_repeat1, + [358948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15880), 1, - anon_sym_COLON, - ACTIONS(16325), 1, - anon_sym_RPAREN, - STATE(10054), 1, - sym_gnu_asm_input_operand_list, - [357226] = 3, + ACTIONS(13843), 1, + anon_sym_DASH_GT, + ACTIONS(16787), 1, + anon_sym_SEMI, + STATE(11214), 1, + sym_trailing_return_type, + [358961] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15395), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16327), 2, + ACTIONS(16356), 1, anon_sym_COMMA, - anon_sym_GT2, - [357237] = 4, + ACTIONS(16789), 1, + anon_sym_RPAREN, + STATE(10014), 1, + aux_sym_throw_specifier_repeat1, + [358974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16329), 1, + ACTIONS(15922), 1, anon_sym_COMMA, - ACTIONS(16332), 1, - anon_sym_GT2, - STATE(9769), 1, - aux_sym_template_argument_list_repeat1, - [357250] = 4, + ACTIONS(16791), 1, + anon_sym_LBRACE, + STATE(10033), 1, + aux_sym_base_class_clause_repeat1, + [358987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11985), 1, + ACTIONS(16793), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16795), 2, anon_sym_COMMA, - ACTIONS(16334), 1, - anon_sym_RPAREN, - STATE(9704), 1, - aux_sym_argument_list_repeat1, - [357263] = 4, + anon_sym_LBRACE, + [358998] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11997), 1, + ACTIONS(13909), 1, anon_sym_COMMA, - ACTIONS(12092), 1, - anon_sym_RBRACK, - STATE(10061), 1, - aux_sym_subscript_argument_list_repeat1, - [357276] = 4, + ACTIONS(16797), 1, + anon_sym_RPAREN, + STATE(9932), 1, + aux_sym_preproc_argument_list_repeat1, + [359011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11985), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16336), 1, - anon_sym_RPAREN, - STATE(9704), 1, - aux_sym_argument_list_repeat1, - [357289] = 4, + ACTIONS(16799), 1, + anon_sym_GT2, + STATE(9941), 1, + aux_sym_template_argument_list_repeat1, + [359024] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5398), 1, - anon_sym_RBRACE, - ACTIONS(16338), 1, + ACTIONS(16294), 1, anon_sym_COMMA, - STATE(9714), 1, - aux_sym_initializer_list_repeat1, - [357302] = 2, + ACTIONS(16801), 1, + anon_sym_RBRACK_RBRACK, + STATE(9967), 1, + aux_sym_attribute_declaration_repeat1, + [359037] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16340), 3, + ACTIONS(16298), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [357311] = 4, + ACTIONS(16801), 1, + anon_sym_RBRACK_RBRACK, + STATE(9968), 1, + aux_sym_attribute_declaration_repeat2, + [359050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16151), 1, + ACTIONS(16576), 1, anon_sym_LPAREN2, - ACTIONS(16342), 1, + ACTIONS(16803), 1, anon_sym_constexpr, - STATE(166), 1, + STATE(200), 1, sym_condition_clause, - [357324] = 4, + [359063] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15880), 1, - anon_sym_COLON, - ACTIONS(16344), 1, - anon_sym_RPAREN, - STATE(9793), 1, - sym_gnu_asm_input_operand_list, - [357337] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16022), 1, - anon_sym_COLON, - ACTIONS(16346), 1, + ACTIONS(12671), 1, anon_sym_RPAREN, - STATE(9794), 1, - sym_gnu_asm_output_operand_list, - [357350] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11947), 1, + ACTIONS(16805), 1, anon_sym_COMMA, - ACTIONS(16348), 1, - anon_sym_GT2, - STATE(9769), 1, - aux_sym_template_argument_list_repeat1, - [357363] = 4, - ACTIONS(3), 1, + STATE(9952), 1, + aux_sym_argument_list_repeat1, + [359076] = 3, + ACTIONS(14065), 1, sym_comment, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(16350), 1, - anon_sym_GT2, - STATE(9769), 1, - aux_sym_template_argument_list_repeat1, - [357376] = 4, + STATE(9458), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16808), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [359087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(15922), 1, anon_sym_COMMA, - ACTIONS(16352), 1, - anon_sym_GT2, - STATE(9769), 1, - aux_sym_template_argument_list_repeat1, - [357389] = 4, + ACTIONS(16791), 1, + anon_sym_LBRACE, + STATE(10199), 1, + aux_sym_base_class_clause_repeat1, + [359100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(16354), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16810), 1, anon_sym_SEMI, - STATE(9795), 1, - aux_sym_declaration_repeat1, - [357402] = 4, + STATE(11359), 1, + sym_attribute_declaration, + [359113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(12295), 1, + anon_sym_RBRACE, + ACTIONS(12535), 1, anon_sym_COMMA, - ACTIONS(16356), 1, - anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [357415] = 4, + STATE(9672), 1, + aux_sym_initializer_list_repeat1, + [359126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(16812), 3, anon_sym_COMMA, - ACTIONS(16358), 1, - anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [357428] = 3, + anon_sym_RPAREN, + anon_sym_COLON, + [359135] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15916), 1, + ACTIONS(14243), 1, + anon_sym_LBRACE, + ACTIONS(14247), 1, + anon_sym_requires, + STATE(11587), 1, + sym_requires_clause, + [359148] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16696), 1, anon_sym_catch, - STATE(503), 2, + STATE(2568), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [357439] = 4, + [359159] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15912), 1, + ACTIONS(16302), 1, anon_sym_COMMA, - ACTIONS(16360), 1, - anon_sym_RPAREN, - STATE(9837), 1, - aux_sym_parameter_list_repeat1, - [357452] = 3, + ACTIONS(16814), 1, + anon_sym_RBRACK, + STATE(10189), 1, + aux_sym_lambda_capture_specifier_repeat1, + [359172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16319), 1, - anon_sym_catch, - STATE(2822), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [357463] = 2, + ACTIONS(16816), 1, + anon_sym_EQ, + ACTIONS(15141), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [359183] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16818), 1, + anon_sym_default, + ACTIONS(16820), 1, + anon_sym_delete, + ACTIONS(16822), 1, + aux_sym_pure_virtual_clause_token1, + [359196] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16362), 3, + ACTIONS(13937), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [357472] = 4, - ACTIONS(13686), 1, + ACTIONS(16824), 1, + anon_sym_SEMI, + STATE(9978), 1, + aux_sym_declaration_repeat1, + [359209] = 4, + ACTIONS(14065), 1, sym_comment, - ACTIONS(16114), 1, + ACTIONS(16779), 1, anon_sym_LPAREN2, - ACTIONS(16364), 1, + ACTIONS(16826), 1, aux_sym_preproc_include_token2, - STATE(11388), 1, + STATE(10803), 1, sym_preproc_argument_list, - [357485] = 4, + [359222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15886), 1, + ACTIONS(16828), 1, + sym_identifier, + ACTIONS(16830), 2, anon_sym_COMMA, - ACTIONS(16366), 1, - anon_sym_RPAREN, - STATE(9796), 1, - aux_sym_throw_specifier_repeat1, - [357498] = 4, + anon_sym_GT2, + [359233] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16151), 1, - anon_sym_LPAREN2, - ACTIONS(16368), 1, - anon_sym_constexpr, - STATE(181), 1, - sym_condition_clause, - [357511] = 4, + ACTIONS(16832), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [359242] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15868), 1, + ACTIONS(16294), 1, anon_sym_COMMA, - ACTIONS(16370), 1, + ACTIONS(16834), 1, anon_sym_RBRACK_RBRACK, - STATE(9745), 1, + STATE(10031), 1, aux_sym_attribute_declaration_repeat1, - [357524] = 4, + [359255] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15872), 1, + ACTIONS(16298), 1, anon_sym_COMMA, - ACTIONS(16370), 1, + ACTIONS(16834), 1, anon_sym_RBRACK_RBRACK, - STATE(9747), 1, + STATE(10034), 1, aux_sym_attribute_declaration_repeat2, - [357537] = 4, + [359268] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15876), 1, - anon_sym_COLON, - ACTIONS(16372), 1, + ACTIONS(12309), 1, + anon_sym_COMMA, + ACTIONS(12469), 1, anon_sym_RPAREN, - STATE(9799), 1, - sym_gnu_asm_clobber_list, - [357550] = 4, + STATE(9987), 1, + aux_sym_argument_list_repeat1, + [359281] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15880), 1, + ACTIONS(12471), 1, + anon_sym_COMMA, + ACTIONS(12473), 1, + anon_sym_RBRACE, + STATE(9988), 1, + aux_sym_initializer_list_repeat1, + [359294] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16290), 1, anon_sym_COLON, - ACTIONS(16374), 1, + ACTIONS(16836), 1, anon_sym_RPAREN, - STATE(9800), 1, - sym_gnu_asm_input_operand_list, - [357563] = 4, + STATE(9991), 1, + sym_gnu_asm_output_operand_list, + [359307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(12533), 1, + anon_sym_RBRACE, + ACTIONS(16838), 1, anon_sym_COMMA, - ACTIONS(16376), 1, - anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [357576] = 4, + STATE(9972), 1, + aux_sym_initializer_list_repeat1, + [359320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15886), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16378), 1, - anon_sym_RPAREN, - STATE(9958), 1, - aux_sym_throw_specifier_repeat1, - [357589] = 4, + ACTIONS(16841), 1, + anon_sym_GT2, + STATE(9996), 1, + aux_sym_template_argument_list_repeat1, + [359333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11985), 1, + ACTIONS(16294), 1, anon_sym_COMMA, - ACTIONS(12084), 1, - anon_sym_RPAREN, - STATE(9890), 1, - aux_sym_argument_list_repeat1, - [357602] = 4, + ACTIONS(16843), 1, + anon_sym_RBRACK_RBRACK, + STATE(10043), 1, + aux_sym_attribute_declaration_repeat1, + [359346] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16208), 1, + ACTIONS(16298), 1, anon_sym_COMMA, - ACTIONS(16380), 1, - anon_sym_RPAREN, - STATE(9821), 1, - aux_sym_requires_parameter_list_repeat1, - [357615] = 4, + ACTIONS(16843), 1, + anon_sym_RBRACK_RBRACK, + STATE(10044), 1, + aux_sym_attribute_declaration_repeat2, + [359359] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15930), 1, - anon_sym_COLON, - ACTIONS(16382), 1, - anon_sym_RPAREN, - STATE(11238), 1, - sym_gnu_asm_goto_list, - [357628] = 4, + ACTIONS(13937), 1, + anon_sym_COMMA, + ACTIONS(16845), 1, + anon_sym_SEMI, + STATE(10000), 1, + aux_sym_declaration_repeat1, + [359372] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15876), 1, - anon_sym_COLON, - ACTIONS(16384), 1, - anon_sym_RPAREN, - STATE(9801), 1, - sym_gnu_asm_clobber_list, - [357641] = 4, + ACTIONS(13937), 1, + anon_sym_COMMA, + ACTIONS(16847), 1, + anon_sym_SEMI, + STATE(9663), 1, + aux_sym_declaration_repeat1, + [359385] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15930), 1, - anon_sym_COLON, - ACTIONS(16386), 1, - anon_sym_RPAREN, - STATE(11309), 1, - sym_gnu_asm_goto_list, - [357654] = 4, + ACTIONS(13937), 1, + anon_sym_COMMA, + ACTIONS(16849), 1, + anon_sym_SEMI, + STATE(9663), 1, + aux_sym_declaration_repeat1, + [359398] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12035), 1, + ACTIONS(16312), 1, anon_sym_COMMA, - ACTIONS(16388), 1, + ACTIONS(16851), 1, anon_sym_RPAREN, - STATE(9672), 1, - aux_sym_generic_expression_repeat1, - [357667] = 4, + STATE(10002), 1, + aux_sym_parameter_list_repeat1, + [359411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16151), 1, + ACTIONS(16853), 1, + anon_sym_catch, + STATE(2910), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [359422] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16576), 1, anon_sym_LPAREN2, - ACTIONS(16390), 1, + ACTIONS(16855), 1, + anon_sym_constexpr, + STATE(235), 1, + sym_condition_clause, + [359435] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16576), 1, + anon_sym_LPAREN2, + ACTIONS(16857), 1, anon_sym_constexpr, - STATE(180), 1, + STATE(195), 1, sym_condition_clause, - [357680] = 3, - ACTIONS(13686), 1, + [359448] = 3, + ACTIONS(14065), 1, sym_comment, - STATE(9444), 1, + STATE(9610), 1, aux_sym_char_literal_repeat1, - ACTIONS(16392), 2, + ACTIONS(16859), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [357691] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(16394), 1, - anon_sym_SEMI, - STATE(9955), 1, - aux_sym_declaration_repeat1, - [357704] = 4, + [359459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16396), 1, - anon_sym_COMMA, - ACTIONS(16399), 1, - anon_sym_GT2, - STATE(9806), 1, - aux_sym_template_parameter_list_repeat1, - [357717] = 4, + ACTIONS(9876), 1, + anon_sym___attribute, + ACTIONS(9878), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [359470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12086), 1, - anon_sym_COMMA, - ACTIONS(12088), 1, - anon_sym_RBRACE, - STATE(9892), 1, - aux_sym_initializer_list_repeat1, - [357730] = 4, + ACTIONS(16535), 1, + anon_sym_COLON, + ACTIONS(16861), 1, + anon_sym_RPAREN, + STATE(10048), 1, + sym_gnu_asm_clobber_list, + [359483] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15868), 1, - anon_sym_COMMA, - ACTIONS(16401), 1, - anon_sym_RBRACK_RBRACK, - STATE(9867), 1, - aux_sym_attribute_declaration_repeat1, - [357743] = 4, + ACTIONS(16515), 1, + anon_sym_COLON, + ACTIONS(16863), 1, + anon_sym_RPAREN, + STATE(10053), 1, + sym_gnu_asm_input_operand_list, + [359496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15872), 1, + ACTIONS(12309), 1, anon_sym_COMMA, - ACTIONS(16401), 1, - anon_sym_RBRACK_RBRACK, - STATE(9869), 1, - aux_sym_attribute_declaration_repeat2, - [357756] = 4, + ACTIONS(16865), 1, + anon_sym_RPAREN, + STATE(9952), 1, + aux_sym_argument_list_repeat1, + [359509] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15494), 1, + ACTIONS(5734), 1, + anon_sym_RBRACE, + ACTIONS(16867), 1, anon_sym_COMMA, - ACTIONS(16238), 1, - anon_sym_LBRACE, - STATE(9577), 1, - aux_sym_base_class_clause_repeat1, - [357769] = 4, + STATE(9972), 1, + aux_sym_initializer_list_repeat1, + [359522] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16403), 1, + ACTIONS(16869), 1, anon_sym_default, - ACTIONS(16405), 1, + ACTIONS(16871), 1, anon_sym_delete, - ACTIONS(16407), 1, + ACTIONS(16873), 1, aux_sym_pure_virtual_clause_token1, - [357782] = 4, + [359535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13881), 1, - anon_sym_requires, - ACTIONS(14722), 1, - anon_sym_LBRACE, - STATE(11216), 1, - sym_requires_clause, - [357795] = 4, + ACTIONS(9880), 1, + anon_sym___attribute, + ACTIONS(9882), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [359546] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16022), 1, + ACTIONS(16515), 1, anon_sym_COLON, - ACTIONS(16409), 1, + ACTIONS(16875), 1, anon_sym_RPAREN, - STATE(9913), 1, - sym_gnu_asm_output_operand_list, - [357808] = 4, + STATE(10016), 1, + sym_gnu_asm_input_operand_list, + [359559] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16411), 1, - anon_sym_COMMA, - ACTIONS(16414), 1, - anon_sym_RBRACK, - STATE(9814), 1, - aux_sym_structured_binding_declarator_repeat1, - [357821] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16877), 1, + anon_sym_SEMI, + STATE(11500), 1, + sym_attribute_declaration, + [359572] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13881), 1, - anon_sym_requires, - ACTIONS(13955), 1, - anon_sym_LBRACE, - STATE(11423), 1, - sym_requires_clause, - [357834] = 4, + ACTIONS(16290), 1, + anon_sym_COLON, + ACTIONS(16879), 1, + anon_sym_RPAREN, + STATE(10017), 1, + sym_gnu_asm_output_operand_list, + [359585] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16416), 1, + ACTIONS(16881), 1, anon_sym_GT2, - STATE(9923), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [357847] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11985), 1, - anon_sym_COMMA, - ACTIONS(16418), 1, - anon_sym_RPAREN, - STATE(9704), 1, - aux_sym_argument_list_repeat1, - [357860] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16086), 1, - anon_sym_COMMA, - ACTIONS(16420), 1, - anon_sym_RBRACK, - STATE(9705), 1, - aux_sym_lambda_capture_specifier_repeat1, - [357873] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15868), 1, - anon_sym_COMMA, - ACTIONS(16422), 1, - anon_sym_RBRACK_RBRACK, - STATE(9843), 1, - aux_sym_attribute_declaration_repeat1, - [357886] = 4, + [359598] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15872), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16422), 1, - anon_sym_RBRACK_RBRACK, - STATE(9845), 1, - aux_sym_attribute_declaration_repeat2, - [357899] = 4, + ACTIONS(16883), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [359611] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16424), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16427), 1, - anon_sym_RPAREN, - STATE(9821), 1, - aux_sym_requires_parameter_list_repeat1, - [357912] = 4, + ACTIONS(16885), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [359624] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16429), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16432), 1, - anon_sym_RBRACK, - STATE(9822), 1, - aux_sym_lambda_capture_specifier_repeat1, - [357925] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16434), 1, - anon_sym_catch, - STATE(306), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [357936] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7021), 1, - anon_sym_LBRACE, - ACTIONS(15488), 1, - anon_sym_COLON_COLON, - STATE(867), 1, - sym_declaration_list, - [357949] = 4, + ACTIONS(16887), 1, + anon_sym_SEMI, + STATE(10018), 1, + aux_sym_declaration_repeat1, + [359637] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(16436), 1, + ACTIONS(16889), 1, anon_sym_SEMI, - STATE(11320), 1, + STATE(11626), 1, sym_attribute_declaration, - [357962] = 4, + [359650] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16438), 1, + ACTIONS(16891), 1, anon_sym_SEMI, - STATE(9934), 1, + STATE(9663), 1, aux_sym_declaration_repeat1, - [357975] = 4, + [359663] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16440), 1, + ACTIONS(16893), 1, anon_sym_SEMI, - STATE(9926), 1, + STATE(9663), 1, aux_sym_declaration_repeat1, - [357988] = 4, + [359676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(16895), 3, anon_sym_COMMA, - ACTIONS(16442), 1, + anon_sym_RPAREN, anon_sym_GT2, - STATE(9769), 1, - aux_sym_template_argument_list_repeat1, - [358001] = 4, + [359685] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(16312), 1, anon_sym_COMMA, - ACTIONS(16444), 1, - anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [358014] = 3, + ACTIONS(16897), 1, + anon_sym_RPAREN, + STATE(10185), 1, + aux_sym_parameter_list_repeat1, + [359698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16319), 1, + ACTIONS(16853), 1, anon_sym_catch, - STATE(2821), 2, + STATE(2924), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [358025] = 4, + [359709] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(16446), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16899), 1, anon_sym_SEMI, - STATE(9859), 1, - aux_sym_declaration_repeat1, - [358038] = 4, + STATE(11060), 1, + sym_attribute_declaration, + [359722] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15912), 1, + ACTIONS(16356), 1, anon_sym_COMMA, - ACTIONS(16448), 1, + ACTIONS(16901), 1, anon_sym_RPAREN, - STATE(9937), 1, - aux_sym_parameter_list_repeat1, - [358051] = 4, + STATE(10019), 1, + aux_sym_throw_specifier_repeat1, + [359735] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(16450), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16903), 1, anon_sym_SEMI, - STATE(10063), 1, - aux_sym_declaration_repeat1, - [358064] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5432), 1, - anon_sym_RBRACE, - ACTIONS(16452), 1, - anon_sym_COMMA, - STATE(9714), 1, - aux_sym_initializer_list_repeat1, - [358077] = 4, + STATE(11061), 1, + sym_attribute_declaration, + [359748] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(16454), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16905), 1, anon_sym_SEMI, - STATE(9908), 1, - aux_sym_declaration_repeat1, - [358090] = 4, + STATE(11065), 1, + sym_attribute_declaration, + [359761] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(16456), 1, + ACTIONS(16907), 1, anon_sym_SEMI, - STATE(10620), 1, + STATE(11702), 1, sym_attribute_declaration, - [358103] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16458), 1, - anon_sym_COMMA, - ACTIONS(16461), 1, - anon_sym_RPAREN, - STATE(9837), 1, - aux_sym_parameter_list_repeat1, - [358116] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16151), 1, - anon_sym_LPAREN2, - ACTIONS(16463), 1, - anon_sym_constexpr, - STATE(200), 1, - sym_condition_clause, - [358129] = 4, + [359774] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16465), 1, + ACTIONS(16909), 1, anon_sym_SEMI, - STATE(9926), 1, + STATE(9663), 1, aux_sym_declaration_repeat1, - [358142] = 3, - ACTIONS(13686), 1, + [359787] = 2, + ACTIONS(3), 1, sym_comment, - STATE(9391), 1, - aux_sym_char_literal_repeat1, - ACTIONS(16467), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [358153] = 3, + ACTIONS(16895), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [359796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16048), 1, + ACTIONS(16464), 1, anon_sym_catch, - STATE(535), 2, + STATE(397), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [358164] = 4, + [359807] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 1, + ACTIONS(14247), 1, + anon_sym_requires, + ACTIONS(15137), 1, anon_sym_LBRACE, - ACTIONS(15488), 1, - anon_sym_COLON_COLON, - STATE(605), 1, - sym_declaration_list, - [358177] = 4, + STATE(11184), 1, + sym_requires_clause, + [359820] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15868), 1, + ACTIONS(16911), 1, anon_sym_COMMA, - ACTIONS(16469), 1, - anon_sym_RBRACK_RBRACK, - STATE(9745), 1, - aux_sym_attribute_declaration_repeat1, - [358190] = 4, + ACTIONS(16914), 1, + anon_sym_RPAREN, + STATE(10013), 1, + aux_sym_throw_specifier_repeat1, + [359833] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16471), 1, + ACTIONS(16356), 1, anon_sym_COMMA, - ACTIONS(16474), 1, - anon_sym_LBRACE, - STATE(9844), 1, - aux_sym_field_initializer_list_repeat1, - [358203] = 4, - ACTIONS(3), 1, + ACTIONS(16916), 1, + anon_sym_RPAREN, + STATE(10013), 1, + aux_sym_throw_specifier_repeat1, + [359846] = 3, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15872), 1, - anon_sym_COMMA, - ACTIONS(16469), 1, - anon_sym_RBRACK_RBRACK, - STATE(9747), 1, - aux_sym_attribute_declaration_repeat2, - [358216] = 4, + STATE(9571), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16918), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [359857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11985), 1, - anon_sym_COMMA, - ACTIONS(12041), 1, + ACTIONS(16535), 1, + anon_sym_COLON, + ACTIONS(16920), 1, anon_sym_RPAREN, - STATE(9870), 1, - aux_sym_argument_list_repeat1, - [358229] = 4, + STATE(10022), 1, + sym_gnu_asm_clobber_list, + [359870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16476), 1, - anon_sym_default, - ACTIONS(16478), 1, - anon_sym_delete, - ACTIONS(16480), 1, - aux_sym_pure_virtual_clause_token1, - [358242] = 4, + ACTIONS(16515), 1, + anon_sym_COLON, + ACTIONS(16922), 1, + anon_sym_RPAREN, + STATE(10023), 1, + sym_gnu_asm_input_operand_list, + [359883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12043), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(12045), 1, - anon_sym_RBRACE, - STATE(9871), 1, - aux_sym_initializer_list_repeat1, - [358255] = 4, + ACTIONS(16924), 1, + anon_sym_SEMI, + STATE(9663), 1, + aux_sym_declaration_repeat1, + [359896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12283), 1, - anon_sym_RBRACK, - ACTIONS(16482), 1, + ACTIONS(16356), 1, anon_sym_COMMA, - STATE(9849), 1, - aux_sym_subscript_argument_list_repeat1, - [358268] = 4, + ACTIONS(16926), 1, + anon_sym_RPAREN, + STATE(10013), 1, + aux_sym_throw_specifier_repeat1, + [359909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16485), 1, - anon_sym_SEMI, - STATE(10758), 1, - sym_attribute_declaration, - [358281] = 4, + ACTIONS(16576), 1, + anon_sym_LPAREN2, + ACTIONS(16928), 1, + anon_sym_constexpr, + STATE(203), 1, + sym_condition_clause, + [359922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16022), 1, + ACTIONS(15922), 1, + anon_sym_COMMA, + ACTIONS(16018), 1, + anon_sym_LBRACE, + STATE(9740), 1, + aux_sym_base_class_clause_repeat1, + [359935] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16470), 1, anon_sym_COLON, - ACTIONS(16487), 1, + ACTIONS(16930), 1, anon_sym_RPAREN, - STATE(9875), 1, - sym_gnu_asm_output_operand_list, - [358294] = 4, + STATE(10857), 1, + sym_gnu_asm_goto_list, + [359948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(16489), 1, - anon_sym_GT2, - STATE(9880), 1, - aux_sym_template_argument_list_repeat1, - [358307] = 2, + ACTIONS(16535), 1, + anon_sym_COLON, + ACTIONS(16932), 1, + anon_sym_RPAREN, + STATE(10025), 1, + sym_gnu_asm_clobber_list, + [359961] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16491), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [358316] = 4, + ACTIONS(16934), 1, + anon_sym_default, + ACTIONS(16936), 1, + anon_sym_delete, + ACTIONS(16938), 1, + aux_sym_pure_virtual_clause_token1, + [359974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15868), 1, - anon_sym_COMMA, - ACTIONS(16493), 1, - anon_sym_RBRACK_RBRACK, - STATE(9745), 1, - aux_sym_attribute_declaration_repeat1, - [358329] = 4, + ACTIONS(16470), 1, + anon_sym_COLON, + ACTIONS(16940), 1, + anon_sym_RPAREN, + STATE(10861), 1, + sym_gnu_asm_goto_list, + [359987] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15872), 1, + ACTIONS(15922), 1, anon_sym_COMMA, - ACTIONS(16493), 1, - anon_sym_RBRACK_RBRACK, - STATE(9747), 1, - aux_sym_attribute_declaration_repeat2, - [358342] = 4, + ACTIONS(16018), 1, + anon_sym_LBRACE, + STATE(10033), 1, + aux_sym_base_class_clause_repeat1, + [360000] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15886), 1, + ACTIONS(12421), 1, anon_sym_COMMA, - ACTIONS(16495), 1, + ACTIONS(16942), 1, anon_sym_RPAREN, - STATE(9958), 1, - aux_sym_throw_specifier_repeat1, - [358355] = 4, + STATE(9778), 1, + aux_sym_generic_expression_repeat1, + [360013] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16497), 1, + ACTIONS(16944), 1, anon_sym_SEMI, - STATE(9884), 1, + STATE(10080), 1, aux_sym_declaration_repeat1, - [358368] = 4, + [360026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(16946), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16948), 2, anon_sym_COMMA, - ACTIONS(16499), 1, - anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [358381] = 4, + anon_sym_LBRACE, + [360037] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(16634), 1, anon_sym_COMMA, - ACTIONS(16501), 1, - anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [358394] = 4, + ACTIONS(16950), 1, + anon_sym_GT2, + STATE(10169), 1, + aux_sym_template_parameter_list_repeat1, + [360050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15912), 1, + ACTIONS(16952), 1, anon_sym_COMMA, - ACTIONS(16503), 1, - anon_sym_RPAREN, - STATE(9886), 1, - aux_sym_parameter_list_repeat1, - [358407] = 4, + ACTIONS(16955), 1, + anon_sym_RBRACK_RBRACK, + STATE(10031), 1, + aux_sym_attribute_declaration_repeat1, + [360063] = 4, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(16779), 1, + anon_sym_LPAREN2, + ACTIONS(16957), 1, + aux_sym_preproc_include_token2, + STATE(10803), 1, + sym_preproc_argument_list, + [360076] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11985), 1, + ACTIONS(16948), 1, + anon_sym_LBRACE, + ACTIONS(16959), 1, anon_sym_COMMA, - ACTIONS(12108), 1, - anon_sym_RPAREN, - STATE(10041), 1, - aux_sym_argument_list_repeat1, - [358420] = 3, - ACTIONS(13686), 1, + STATE(10033), 1, + aux_sym_base_class_clause_repeat1, + [360089] = 4, + ACTIONS(3), 1, sym_comment, - STATE(9314), 1, + ACTIONS(16962), 1, + anon_sym_COMMA, + ACTIONS(16965), 1, + anon_sym_RBRACK_RBRACK, + STATE(10034), 1, + aux_sym_attribute_declaration_repeat2, + [360102] = 3, + ACTIONS(14065), 1, + sym_comment, + STATE(9520), 1, aux_sym_char_literal_repeat1, - ACTIONS(16505), 2, + ACTIONS(16967), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [358431] = 4, + [360113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15176), 1, + ACTIONS(16971), 1, + anon_sym_RPAREN, + ACTIONS(16969), 2, + anon_sym_DOT_DOT_DOT, sym_identifier, - ACTIONS(15178), 1, - anon_sym_using, - STATE(10119), 1, - sym_attribute, - [358444] = 4, - ACTIONS(3), 1, + [360124] = 4, + ACTIONS(14065), 1, sym_comment, - ACTIONS(6983), 1, - anon_sym_LBRACE, - ACTIONS(15488), 1, - anon_sym_COLON_COLON, - STATE(807), 1, - sym_declaration_list, - [358457] = 4, + ACTIONS(16779), 1, + anon_sym_LPAREN2, + ACTIONS(16973), 1, + aux_sym_preproc_include_token2, + STATE(10803), 1, + sym_preproc_argument_list, + [360137] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15868), 1, - anon_sym_COMMA, - ACTIONS(16507), 1, - anon_sym_RBRACK_RBRACK, - STATE(9745), 1, - aux_sym_attribute_declaration_repeat1, - [358470] = 4, + ACTIONS(16470), 1, + anon_sym_COLON, + ACTIONS(16975), 1, + anon_sym_RPAREN, + STATE(11173), 1, + sym_gnu_asm_goto_list, + [360150] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13881), 1, - anon_sym_requires, - ACTIONS(14720), 1, - anon_sym_LBRACE, - STATE(10981), 1, - sym_requires_clause, - [358483] = 4, + ACTIONS(16977), 1, + anon_sym_default, + ACTIONS(16979), 1, + anon_sym_delete, + ACTIONS(16981), 1, + aux_sym_pure_virtual_clause_token1, + [360163] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15868), 1, + ACTIONS(16294), 1, anon_sym_COMMA, - ACTIONS(16509), 1, + ACTIONS(16983), 1, anon_sym_RBRACK_RBRACK, - STATE(9745), 1, + STATE(10055), 1, aux_sym_attribute_declaration_repeat1, - [358496] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16511), 1, - anon_sym_default, - ACTIONS(16513), 1, - anon_sym_delete, - ACTIONS(16515), 1, - aux_sym_pure_virtual_clause_token1, - [358509] = 4, + [360176] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15872), 1, + ACTIONS(16298), 1, anon_sym_COMMA, - ACTIONS(16509), 1, + ACTIONS(16983), 1, anon_sym_RBRACK_RBRACK, - STATE(9747), 1, + STATE(10056), 1, aux_sym_attribute_declaration_repeat2, - [358522] = 4, + [360189] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11985), 1, + ACTIONS(9471), 1, anon_sym_COMMA, - ACTIONS(16517), 1, - anon_sym_RPAREN, - STATE(9704), 1, - aux_sym_argument_list_repeat1, - [358535] = 4, + ACTIONS(16985), 1, + anon_sym_RBRACK, + STATE(9899), 1, + aux_sym_structured_binding_declarator_repeat1, + [360202] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5416), 1, - anon_sym_RBRACE, - ACTIONS(16519), 1, + ACTIONS(16294), 1, anon_sym_COMMA, - STATE(9714), 1, - aux_sym_initializer_list_repeat1, - [358548] = 4, + ACTIONS(16987), 1, + anon_sym_RBRACK_RBRACK, + STATE(10031), 1, + aux_sym_attribute_declaration_repeat1, + [360215] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11985), 1, + ACTIONS(16298), 1, + anon_sym_COMMA, + ACTIONS(16987), 1, + anon_sym_RBRACK_RBRACK, + STATE(10034), 1, + aux_sym_attribute_declaration_repeat2, + [360228] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12309), 1, anon_sym_COMMA, - ACTIONS(12120), 1, + ACTIONS(12431), 1, anon_sym_RPAREN, - STATE(9950), 1, + STATE(10113), 1, aux_sym_argument_list_repeat1, - [358561] = 4, - ACTIONS(3), 1, + [360241] = 3, + ACTIONS(14065), 1, sym_comment, - ACTIONS(13881), 1, - anon_sym_requires, - ACTIONS(14724), 1, - anon_sym_LBRACE, - STATE(10671), 1, - sym_requires_clause, - [358574] = 4, + STATE(9545), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16989), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [360252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7015), 1, - anon_sym_LBRACE, - ACTIONS(15488), 1, - anon_sym_COLON_COLON, - STATE(427), 1, - sym_declaration_list, - [358587] = 4, + ACTIONS(16853), 1, + anon_sym_catch, + STATE(2906), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [360263] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15880), 1, + ACTIONS(16470), 1, anon_sym_COLON, - ACTIONS(16521), 1, + ACTIONS(16991), 1, anon_sym_RPAREN, - STATE(9895), 1, - sym_gnu_asm_input_operand_list, - [358600] = 4, + STATE(11177), 1, + sym_gnu_asm_goto_list, + [360276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16022), 1, - anon_sym_COLON, - ACTIONS(16523), 1, - anon_sym_RPAREN, - STATE(9896), 1, - sym_gnu_asm_output_operand_list, - [358613] = 4, + ACTIONS(16644), 1, + anon_sym_COLON_COLON, + ACTIONS(16993), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [360287] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(16525), 1, - anon_sym_GT2, - STATE(9769), 1, - aux_sym_template_argument_list_repeat1, - [358626] = 4, + ACTIONS(7361), 1, + anon_sym_LBRACE, + ACTIONS(15906), 1, + anon_sym_COLON_COLON, + STATE(671), 1, + sym_declaration_list, + [360300] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16527), 1, - anon_sym_GT2, - STATE(9769), 1, - aux_sym_template_argument_list_repeat1, - [358639] = 4, + ACTIONS(16995), 1, + anon_sym_SEMI, + STATE(10068), 1, + aux_sym_declaration_repeat1, + [360313] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12122), 1, - anon_sym_COMMA, - ACTIONS(12124), 1, - anon_sym_RBRACE, - STATE(9953), 1, - aux_sym_initializer_list_repeat1, - [358652] = 4, + ACTIONS(16997), 1, + anon_sym_default, + ACTIONS(16999), 1, + anon_sym_delete, + ACTIONS(17001), 1, + aux_sym_pure_virtual_clause_token1, + [360326] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(16529), 1, - anon_sym_GT2, - STATE(9769), 1, - aux_sym_template_argument_list_repeat1, - [358665] = 4, + ACTIONS(16535), 1, + anon_sym_COLON, + ACTIONS(17003), 1, + anon_sym_RPAREN, + STATE(10103), 1, + sym_gnu_asm_clobber_list, + [360339] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12110), 1, + ACTIONS(12433), 1, anon_sym_COMMA, - ACTIONS(12112), 1, + ACTIONS(12435), 1, anon_sym_RBRACE, - STATE(10046), 1, + STATE(10118), 1, aux_sym_initializer_list_repeat1, - [358678] = 4, + [360352] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(16294), 1, anon_sym_COMMA, - ACTIONS(16531), 1, - anon_sym_SEMI, - STATE(9897), 1, - aux_sym_declaration_repeat1, - [358691] = 4, + ACTIONS(17005), 1, + anon_sym_RBRACK_RBRACK, + STATE(10031), 1, + aux_sym_attribute_declaration_repeat1, + [360365] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(16298), 1, anon_sym_COMMA, - ACTIONS(16533), 1, - anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [358704] = 4, + ACTIONS(17005), 1, + anon_sym_RBRACK_RBRACK, + STATE(10034), 1, + aux_sym_attribute_declaration_repeat2, + [360378] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(12309), 1, anon_sym_COMMA, - ACTIONS(16535), 1, - anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [358717] = 3, - ACTIONS(13686), 1, + ACTIONS(12483), 1, + anon_sym_RPAREN, + STATE(10082), 1, + aux_sym_argument_list_repeat1, + [360391] = 3, + ACTIONS(14065), 1, sym_comment, - STATE(9438), 1, + STATE(9623), 1, aux_sym_char_literal_repeat1, - ACTIONS(16537), 2, + ACTIONS(17007), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [358728] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15912), 1, - anon_sym_COMMA, - ACTIONS(16539), 1, - anon_sym_RPAREN, - STATE(9837), 1, - aux_sym_parameter_list_repeat1, - [358741] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15886), 1, - anon_sym_COMMA, - ACTIONS(16541), 1, - anon_sym_RPAREN, - STATE(9898), 1, - aux_sym_throw_specifier_repeat1, - [358754] = 4, + [360402] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15872), 1, + ACTIONS(12553), 1, anon_sym_COMMA, - ACTIONS(16507), 1, - anon_sym_RBRACK_RBRACK, - STATE(9747), 1, - aux_sym_attribute_declaration_repeat2, - [358767] = 4, - ACTIONS(3), 1, + ACTIONS(12555), 1, + anon_sym_RBRACE, + STATE(10084), 1, + aux_sym_initializer_list_repeat1, + [360415] = 3, + ACTIONS(14065), 1, sym_comment, - ACTIONS(16543), 1, - anon_sym_default, - ACTIONS(16545), 1, - anon_sym_delete, - ACTIONS(16547), 1, - aux_sym_pure_virtual_clause_token1, - [358780] = 4, + STATE(9494), 1, + aux_sym_char_literal_repeat1, + ACTIONS(17009), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [360426] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11985), 1, - anon_sym_COMMA, - ACTIONS(16549), 1, + ACTIONS(16290), 1, + anon_sym_COLON, + ACTIONS(17011), 1, anon_sym_RPAREN, - STATE(9704), 1, - aux_sym_argument_list_repeat1, - [358793] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16551), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [358802] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5546), 1, - anon_sym_RBRACE, - ACTIONS(16553), 1, - anon_sym_COMMA, - STATE(9714), 1, - aux_sym_initializer_list_repeat1, - [358815] = 4, + STATE(10085), 1, + sym_gnu_asm_output_operand_list, + [360439] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16022), 1, + ACTIONS(16290), 1, anon_sym_COLON, - ACTIONS(16555), 1, + ACTIONS(17013), 1, anon_sym_RPAREN, - STATE(9962), 1, + STATE(10125), 1, sym_gnu_asm_output_operand_list, - [358828] = 4, + [360452] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16557), 1, + ACTIONS(17015), 1, anon_sym_GT2, - STATE(9966), 1, + STATE(10089), 1, aux_sym_template_argument_list_repeat1, - [358841] = 4, + [360465] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15876), 1, - anon_sym_COLON, - ACTIONS(16559), 1, - anon_sym_RPAREN, - STATE(9900), 1, - sym_gnu_asm_clobber_list, - [358854] = 4, + ACTIONS(12322), 1, + anon_sym_COMMA, + ACTIONS(17017), 1, + anon_sym_GT2, + STATE(10130), 1, + aux_sym_template_argument_list_repeat1, + [360478] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15880), 1, - anon_sym_COLON, - ACTIONS(16561), 1, - anon_sym_RPAREN, - STATE(9901), 1, - sym_gnu_asm_input_operand_list, - [358867] = 4, + ACTIONS(16294), 1, + anon_sym_COMMA, + ACTIONS(17019), 1, + anon_sym_RBRACK_RBRACK, + STATE(9676), 1, + aux_sym_attribute_declaration_repeat1, + [360491] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16563), 1, + ACTIONS(17021), 1, anon_sym_SEMI, - STATE(9926), 1, + STATE(10093), 1, aux_sym_declaration_repeat1, - [358880] = 4, + [360504] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15886), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16565), 1, - anon_sym_RPAREN, - STATE(9958), 1, - aux_sym_throw_specifier_repeat1, - [358893] = 4, + ACTIONS(17023), 1, + anon_sym_SEMI, + STATE(9663), 1, + aux_sym_declaration_repeat1, + [360517] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13827), 1, - anon_sym_RPAREN, - ACTIONS(16567), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - STATE(9899), 1, - aux_sym_preproc_argument_list_repeat1, - [358906] = 4, - ACTIONS(3), 1, + ACTIONS(17025), 1, + anon_sym_SEMI, + STATE(9663), 1, + aux_sym_declaration_repeat1, + [360530] = 3, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15930), 1, - anon_sym_COLON, - ACTIONS(16570), 1, - anon_sym_RPAREN, - STATE(10777), 1, - sym_gnu_asm_goto_list, - [358919] = 4, + STATE(9493), 1, + aux_sym_char_literal_repeat1, + ACTIONS(17027), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [360541] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15876), 1, - anon_sym_COLON, - ACTIONS(16572), 1, + ACTIONS(16312), 1, + anon_sym_COMMA, + ACTIONS(17029), 1, anon_sym_RPAREN, - STATE(9904), 1, - sym_gnu_asm_clobber_list, - [358932] = 3, - ACTIONS(13686), 1, + STATE(10094), 1, + aux_sym_parameter_list_repeat1, + [360554] = 3, + ACTIONS(14065), 1, sym_comment, - STATE(9491), 1, + STATE(9521), 1, aux_sym_char_literal_repeat1, - ACTIONS(16574), 2, + ACTIONS(17031), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [358943] = 4, + [360565] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16022), 1, - anon_sym_COLON, - ACTIONS(16576), 1, - anon_sym_RPAREN, - STATE(9584), 1, - sym_gnu_asm_output_operand_list, - [358956] = 4, + ACTIONS(16298), 1, + anon_sym_COMMA, + ACTIONS(17019), 1, + anon_sym_RBRACK_RBRACK, + STATE(9677), 1, + aux_sym_attribute_declaration_repeat2, + [360578] = 3, + ACTIONS(14065), 1, + sym_comment, + STATE(9486), 1, + aux_sym_char_literal_repeat1, + ACTIONS(17033), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [360589] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15930), 1, - anon_sym_COLON, - ACTIONS(16578), 1, + ACTIONS(12309), 1, + anon_sym_COMMA, + ACTIONS(17035), 1, anon_sym_RPAREN, - STATE(10782), 1, - sym_gnu_asm_goto_list, - [358969] = 4, + STATE(9952), 1, + aux_sym_argument_list_repeat1, + [360602] = 3, + ACTIONS(14065), 1, + sym_comment, + STATE(9446), 1, + aux_sym_char_literal_repeat1, + ACTIONS(17037), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [360613] = 3, + ACTIONS(14065), 1, + sym_comment, + STATE(9464), 1, + aux_sym_char_literal_repeat1, + ACTIONS(17039), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [360624] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16580), 1, + ACTIONS(17041), 1, anon_sym_SEMI, - STATE(9975), 1, + STATE(10141), 1, aux_sym_declaration_repeat1, - [358982] = 4, + [360637] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12035), 1, + ACTIONS(16638), 1, anon_sym_COMMA, - ACTIONS(16582), 1, + ACTIONS(17043), 1, anon_sym_RPAREN, - STATE(9672), 1, - aux_sym_generic_expression_repeat1, - [358995] = 4, + STATE(10174), 1, + aux_sym_requires_parameter_list_repeat1, + [360650] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16584), 1, + ACTIONS(17045), 1, anon_sym_SEMI, - STATE(9926), 1, + STATE(9663), 1, aux_sym_declaration_repeat1, - [359008] = 4, + [360663] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16586), 1, + ACTIONS(17047), 1, anon_sym_SEMI, - STATE(9926), 1, + STATE(9663), 1, aux_sym_declaration_repeat1, - [359021] = 4, + [360676] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15880), 1, - anon_sym_COLON, - ACTIONS(16588), 1, - anon_sym_RPAREN, - STATE(9532), 1, - sym_gnu_asm_input_operand_list, - [359034] = 4, + ACTIONS(14247), 1, + anon_sym_requires, + ACTIONS(17049), 1, + anon_sym_LBRACE, + STATE(11309), 1, + sym_requires_clause, + [360689] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15912), 1, + ACTIONS(12309), 1, anon_sym_COMMA, - ACTIONS(16590), 1, + ACTIONS(17051), 1, anon_sym_RPAREN, - STATE(9976), 1, - aux_sym_parameter_list_repeat1, - [359047] = 4, + STATE(9952), 1, + aux_sym_argument_list_repeat1, + [360702] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16592), 1, - anon_sym_default, - ACTIONS(16594), 1, - anon_sym_delete, - ACTIONS(16596), 1, - aux_sym_pure_virtual_clause_token1, - [359060] = 4, + ACTIONS(16312), 1, + anon_sym_COMMA, + ACTIONS(17053), 1, + anon_sym_RPAREN, + STATE(10147), 1, + aux_sym_parameter_list_repeat1, + [360715] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3614), 1, - anon_sym_while, - ACTIONS(16598), 1, - anon_sym_else, - STATE(433), 1, - sym_else_clause, - [359073] = 4, + ACTIONS(5908), 1, + anon_sym_RBRACE, + ACTIONS(17055), 1, + anon_sym_COMMA, + STATE(9972), 1, + aux_sym_initializer_list_repeat1, + [360728] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15880), 1, + ACTIONS(16515), 1, anon_sym_COLON, - ACTIONS(16600), 1, + ACTIONS(17057), 1, anon_sym_RPAREN, - STATE(9986), 1, + STATE(10099), 1, sym_gnu_asm_input_operand_list, - [359086] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16434), 1, - anon_sym_catch, - STATE(349), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [359097] = 4, + [360741] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16022), 1, + ACTIONS(16290), 1, anon_sym_COLON, - ACTIONS(16602), 1, + ACTIONS(17059), 1, anon_sym_RPAREN, - STATE(9987), 1, + STATE(10100), 1, sym_gnu_asm_output_operand_list, - [359110] = 4, + [360754] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16604), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16607), 1, - anon_sym_RPAREN, - STATE(9916), 1, - aux_sym_preproc_params_repeat1, - [359123] = 4, + ACTIONS(17061), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [360767] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16609), 1, + ACTIONS(17063), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [359136] = 4, + [360780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11997), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(12155), 1, - anon_sym_RBRACK, - STATE(9978), 1, - aux_sym_subscript_argument_list_repeat1, - [359149] = 4, + ACTIONS(17065), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [360793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16022), 1, - anon_sym_COLON, - ACTIONS(16611), 1, - anon_sym_RPAREN, - STATE(10062), 1, - sym_gnu_asm_output_operand_list, - [359162] = 3, - ACTIONS(13686), 1, - sym_comment, - STATE(9502), 1, - aux_sym_char_literal_repeat1, - ACTIONS(16613), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [359173] = 4, + ACTIONS(16294), 1, + anon_sym_COMMA, + ACTIONS(17067), 1, + anon_sym_RBRACK_RBRACK, + STATE(9773), 1, + aux_sym_attribute_declaration_repeat1, + [360806] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16615), 1, + ACTIONS(17069), 1, anon_sym_SEMI, - STATE(9926), 1, + STATE(10101), 1, aux_sym_declaration_repeat1, - [359186] = 4, + [360819] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16617), 1, - anon_sym_GT2, - STATE(9769), 1, - aux_sym_template_argument_list_repeat1, - [359199] = 4, + ACTIONS(17071), 1, + anon_sym_SEMI, + STATE(9663), 1, + aux_sym_declaration_repeat1, + [360832] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16619), 1, - anon_sym_GT2, - STATE(9769), 1, - aux_sym_template_argument_list_repeat1, - [359212] = 4, + ACTIONS(17073), 1, + anon_sym_SEMI, + STATE(9663), 1, + aux_sym_declaration_repeat1, + [360845] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(16312), 1, anon_sym_COMMA, - ACTIONS(16621), 1, - anon_sym_GT2, - STATE(9529), 1, - aux_sym_template_argument_list_repeat1, - [359225] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16022), 1, - anon_sym_COLON, - ACTIONS(16623), 1, + ACTIONS(17075), 1, anon_sym_RPAREN, - STATE(9534), 1, - sym_gnu_asm_output_operand_list, - [359238] = 4, + STATE(10185), 1, + aux_sym_parameter_list_repeat1, + [360858] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16625), 1, + ACTIONS(16356), 1, anon_sym_COMMA, - ACTIONS(16628), 1, - anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [359251] = 4, + ACTIONS(17077), 1, + anon_sym_RPAREN, + STATE(10102), 1, + aux_sym_throw_specifier_repeat1, + [360871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 1, - anon_sym_RBRACE, - ACTIONS(16630), 1, - anon_sym_COMMA, - STATE(9714), 1, - aux_sym_initializer_list_repeat1, - [359264] = 3, - ACTIONS(13686), 1, + ACTIONS(16350), 1, + anon_sym_catch, + STATE(2904), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [360882] = 3, + ACTIONS(3), 1, sym_comment, - STATE(9509), 1, - aux_sym_char_literal_repeat1, - ACTIONS(16632), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [359275] = 4, + ACTIONS(9892), 1, + anon_sym___attribute, + ACTIONS(9894), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [360893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(12364), 1, anon_sym_COMMA, - ACTIONS(16634), 1, - anon_sym_SEMI, - STATE(9988), 1, - aux_sym_declaration_repeat1, - [359288] = 4, + ACTIONS(12439), 1, + anon_sym_RBRACK, + STATE(10149), 1, + aux_sym_subscript_argument_list_repeat1, + [360906] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16022), 1, + ACTIONS(16535), 1, anon_sym_COLON, - ACTIONS(16636), 1, + ACTIONS(17079), 1, anon_sym_RPAREN, - STATE(9638), 1, - sym_gnu_asm_output_operand_list, - [359301] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15868), 1, - anon_sym_COMMA, - ACTIONS(16638), 1, - anon_sym_RBRACK_RBRACK, - STATE(9959), 1, - aux_sym_attribute_declaration_repeat1, - [359314] = 4, + STATE(10104), 1, + sym_gnu_asm_clobber_list, + [360919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15872), 1, - anon_sym_COMMA, - ACTIONS(16638), 1, - anon_sym_RBRACK_RBRACK, - STATE(9960), 1, - aux_sym_attribute_declaration_repeat2, - [359327] = 4, + ACTIONS(16515), 1, + anon_sym_COLON, + ACTIONS(17081), 1, + anon_sym_RPAREN, + STATE(10105), 1, + sym_gnu_asm_input_operand_list, + [360932] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16640), 1, + ACTIONS(17083), 1, anon_sym_SEMI, - STATE(9926), 1, + STATE(9663), 1, aux_sym_declaration_repeat1, - [359340] = 4, + [360945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(16356), 1, anon_sym_COMMA, - ACTIONS(16642), 1, - anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [359353] = 4, + ACTIONS(17085), 1, + anon_sym_RPAREN, + STATE(10013), 1, + aux_sym_throw_specifier_repeat1, + [360958] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(16644), 1, - anon_sym_GT2, - STATE(9769), 1, - aux_sym_template_argument_list_repeat1, - [359366] = 3, - ACTIONS(13686), 1, - sym_comment, - STATE(9511), 1, - aux_sym_char_literal_repeat1, - ACTIONS(16646), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [359377] = 4, + ACTIONS(16470), 1, + anon_sym_COLON, + ACTIONS(17087), 1, + anon_sym_RPAREN, + STATE(11202), 1, + sym_gnu_asm_goto_list, + [360971] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15912), 1, - anon_sym_COMMA, - ACTIONS(16648), 1, + ACTIONS(16470), 1, + anon_sym_COLON, + ACTIONS(17089), 1, anon_sym_RPAREN, - STATE(9837), 1, - aux_sym_parameter_list_repeat1, - [359390] = 3, + STATE(11185), 1, + sym_gnu_asm_goto_list, + [360984] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16048), 1, - anon_sym_catch, - STATE(537), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [359401] = 4, + ACTIONS(16535), 1, + anon_sym_COLON, + ACTIONS(17091), 1, + anon_sym_RPAREN, + STATE(10106), 1, + sym_gnu_asm_clobber_list, + [360997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11985), 1, - anon_sym_COMMA, - ACTIONS(12138), 1, + ACTIONS(16470), 1, + anon_sym_COLON, + ACTIONS(17093), 1, anon_sym_RPAREN, - STATE(9770), 1, - aux_sym_argument_list_repeat1, - [359414] = 3, - ACTIONS(13686), 1, - sym_comment, - STATE(9381), 1, - aux_sym_char_literal_repeat1, - ACTIONS(16650), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [359425] = 4, + STATE(11188), 1, + sym_gnu_asm_goto_list, + [361010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15886), 1, + ACTIONS(12421), 1, anon_sym_COMMA, - ACTIONS(16652), 1, + ACTIONS(17095), 1, anon_sym_RPAREN, - STATE(9991), 1, - aux_sym_throw_specifier_repeat1, - [359438] = 4, + STATE(9778), 1, + aux_sym_generic_expression_repeat1, + [361023] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15912), 1, + ACTIONS(12421), 1, anon_sym_COMMA, - ACTIONS(16654), 1, + ACTIONS(17097), 1, anon_sym_RPAREN, - STATE(9837), 1, - aux_sym_parameter_list_repeat1, - [359451] = 3, - ACTIONS(13686), 1, - sym_comment, - STATE(9342), 1, - aux_sym_char_literal_repeat1, - ACTIONS(16656), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [359462] = 3, - ACTIONS(13686), 1, - sym_comment, - STATE(9458), 1, - aux_sym_char_literal_repeat1, - ACTIONS(16658), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [359473] = 3, - ACTIONS(13686), 1, - sym_comment, - STATE(9292), 1, - aux_sym_char_literal_repeat1, - ACTIONS(16660), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [359484] = 4, + STATE(9778), 1, + aux_sym_generic_expression_repeat1, + [361036] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(16298), 1, anon_sym_COMMA, - ACTIONS(16662), 1, - anon_sym_SEMI, - STATE(9982), 1, - aux_sym_declaration_repeat1, - [359497] = 4, + ACTIONS(17067), 1, + anon_sym_RBRACK_RBRACK, + STATE(9775), 1, + aux_sym_attribute_declaration_repeat2, + [361049] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(16294), 1, anon_sym_COMMA, - ACTIONS(16664), 1, - anon_sym_GT2, - STATE(9769), 1, - aux_sym_template_argument_list_repeat1, - [359510] = 4, + ACTIONS(17099), 1, + anon_sym_RBRACK_RBRACK, + STATE(10031), 1, + aux_sym_attribute_declaration_repeat1, + [361062] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(16298), 1, anon_sym_COMMA, - ACTIONS(16666), 1, - anon_sym_SEMI, - STATE(9544), 1, - aux_sym_declaration_repeat1, - [359523] = 4, + ACTIONS(17099), 1, + anon_sym_RBRACK_RBRACK, + STATE(10034), 1, + aux_sym_attribute_declaration_repeat2, + [361075] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16104), 1, + ACTIONS(16670), 1, anon_sym_COMMA, - ACTIONS(16668), 1, + ACTIONS(17101), 1, anon_sym_RPAREN, - STATE(9654), 1, + STATE(9878), 1, aux_sym_preproc_params_repeat1, - [359536] = 4, + [361088] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11985), 1, + ACTIONS(12309), 1, anon_sym_COMMA, - ACTIONS(16670), 1, + ACTIONS(17103), 1, anon_sym_RPAREN, - STATE(9704), 1, + STATE(9952), 1, aux_sym_argument_list_repeat1, - [359549] = 4, + [361101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7015), 1, - anon_sym_LBRACE, - ACTIONS(15488), 1, - anon_sym_COLON_COLON, - STATE(451), 1, - sym_declaration_list, - [359562] = 4, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(16114), 1, - anon_sym_LPAREN2, - ACTIONS(16672), 1, - aux_sym_preproc_include_token2, - STATE(11388), 1, - sym_preproc_argument_list, - [359575] = 4, + ACTIONS(17107), 1, + anon_sym_RPAREN, + ACTIONS(17105), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [361112] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5544), 1, - anon_sym_RBRACE, - ACTIONS(16674), 1, + ACTIONS(16294), 1, anon_sym_COMMA, - STATE(9714), 1, - aux_sym_initializer_list_repeat1, - [359588] = 4, + ACTIONS(17109), 1, + anon_sym_RBRACK_RBRACK, + STATE(10132), 1, + aux_sym_attribute_declaration_repeat1, + [361125] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(16298), 1, anon_sym_COMMA, - ACTIONS(16676), 1, - anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [359601] = 4, + ACTIONS(17109), 1, + anon_sym_RBRACK_RBRACK, + STATE(10134), 1, + aux_sym_attribute_declaration_repeat2, + [361138] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(7361), 1, + anon_sym_LBRACE, + ACTIONS(15906), 1, + anon_sym_COLON_COLON, + STATE(692), 1, + sym_declaration_list, + [361151] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5736), 1, + anon_sym_RBRACE, + ACTIONS(17111), 1, anon_sym_COMMA, - ACTIONS(16678), 1, - anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [359614] = 3, + STATE(9972), 1, + aux_sym_initializer_list_repeat1, + [361164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16305), 1, + ACTIONS(16466), 1, anon_sym_catch, - STATE(331), 2, + STATE(396), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [359625] = 4, + [361175] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15912), 1, + ACTIONS(12309), 1, anon_sym_COMMA, - ACTIONS(16680), 1, + ACTIONS(12539), 1, anon_sym_RPAREN, - STATE(9548), 1, - aux_sym_parameter_list_repeat1, - [359638] = 4, + STATE(9866), 1, + aux_sym_argument_list_repeat1, + [361188] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16682), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16685), 1, - anon_sym_RPAREN, - STATE(9958), 1, - aux_sym_throw_specifier_repeat1, - [359651] = 4, + ACTIONS(17113), 1, + anon_sym_SEMI, + STATE(10145), 1, + aux_sym_declaration_repeat1, + [361201] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15868), 1, - anon_sym_COMMA, - ACTIONS(16687), 1, - anon_sym_RBRACK_RBRACK, - STATE(9745), 1, - aux_sym_attribute_declaration_repeat1, - [359664] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(17115), 1, + anon_sym_SEMI, + STATE(10812), 1, + sym_attribute_declaration, + [361214] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15872), 1, - anon_sym_COMMA, - ACTIONS(16687), 1, - anon_sym_RBRACK_RBRACK, - STATE(9747), 1, - aux_sym_attribute_declaration_repeat2, - [359677] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(17117), 1, + anon_sym_SEMI, + STATE(10829), 1, + sym_attribute_declaration, + [361227] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11985), 1, - anon_sym_COMMA, - ACTIONS(12056), 1, + ACTIONS(16535), 1, + anon_sym_COLON, + ACTIONS(17119), 1, anon_sym_RPAREN, - STATE(9999), 1, - aux_sym_argument_list_repeat1, - [359690] = 4, + STATE(9777), 1, + sym_gnu_asm_clobber_list, + [361240] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15880), 1, + ACTIONS(16515), 1, anon_sym_COLON, - ACTIONS(16689), 1, + ACTIONS(17121), 1, anon_sym_RPAREN, - STATE(9992), 1, + STATE(10182), 1, sym_gnu_asm_input_operand_list, - [359703] = 4, + [361253] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16022), 1, + ACTIONS(16290), 1, anon_sym_COLON, - ACTIONS(16691), 1, + ACTIONS(17123), 1, anon_sym_RPAREN, - STATE(9993), 1, + STATE(10183), 1, sym_gnu_asm_output_operand_list, - [359716] = 4, + [361266] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(16515), 1, + anon_sym_COLON, + ACTIONS(17125), 1, + anon_sym_RPAREN, + STATE(9807), 1, + sym_gnu_asm_input_operand_list, + [361279] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16693), 1, + ACTIONS(17127), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [359729] = 4, + [361292] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16695), 1, + ACTIONS(17129), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [359742] = 4, + [361305] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16697), 1, + ACTIONS(17131), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [359755] = 4, + [361318] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16022), 1, - anon_sym_COLON, - ACTIONS(16699), 1, - anon_sym_RPAREN, - STATE(10001), 1, - sym_gnu_asm_output_operand_list, - [359768] = 3, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(17133), 1, + anon_sym_SEMI, + STATE(10832), 1, + sym_attribute_declaration, + [361331] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15916), 1, - anon_sym_catch, - STATE(534), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [359779] = 4, + ACTIONS(16294), 1, + anon_sym_COMMA, + ACTIONS(17135), 1, + anon_sym_RBRACK_RBRACK, + STATE(10031), 1, + aux_sym_attribute_declaration_repeat1, + [361344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(15776), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(17137), 2, anon_sym_COMMA, - ACTIONS(16701), 1, - anon_sym_SEMI, - STATE(9537), 1, - aux_sym_declaration_repeat1, - [359792] = 4, + anon_sym_GT2, + [361355] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(16298), 1, anon_sym_COMMA, - ACTIONS(16703), 1, - anon_sym_GT2, - STATE(10005), 1, - aux_sym_template_argument_list_repeat1, - [359805] = 4, + ACTIONS(17135), 1, + anon_sym_RBRACK_RBRACK, + STATE(10034), 1, + aux_sym_attribute_declaration_repeat2, + [361368] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(12309), 1, anon_sym_COMMA, - ACTIONS(16705), 1, - anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [359818] = 4, + ACTIONS(12493), 1, + anon_sym_RPAREN, + STATE(10155), 1, + aux_sym_argument_list_repeat1, + [361381] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(17139), 1, anon_sym_COMMA, - ACTIONS(16707), 1, - anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [359831] = 4, + ACTIONS(17142), 1, + anon_sym_GT2, + STATE(10136), 1, + aux_sym_template_argument_list_repeat1, + [361394] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(16290), 1, + anon_sym_COLON, + ACTIONS(17144), 1, + anon_sym_RPAREN, + STATE(10157), 1, + sym_gnu_asm_output_operand_list, + [361407] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16709), 1, + ACTIONS(17146), 1, anon_sym_SEMI, - STATE(9997), 1, + STATE(10186), 1, aux_sym_declaration_repeat1, - [359844] = 4, + [361420] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16711), 1, - anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [359857] = 4, + ACTIONS(17148), 1, + anon_sym_GT2, + STATE(10161), 1, + aux_sym_template_argument_list_repeat1, + [361433] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16713), 1, + ACTIONS(17150), 1, anon_sym_SEMI, - STATE(9926), 1, + STATE(9663), 1, aux_sym_declaration_repeat1, - [359870] = 4, + [361446] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15912), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16715), 1, - anon_sym_RPAREN, - STATE(9837), 1, - aux_sym_parameter_list_repeat1, - [359883] = 3, + ACTIONS(17152), 1, + anon_sym_SEMI, + STATE(9663), 1, + aux_sym_declaration_repeat1, + [361459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16434), 1, + ACTIONS(16402), 1, anon_sym_catch, - STATE(347), 2, + STATE(289), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [359894] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11997), 1, - anon_sym_COMMA, - ACTIONS(16717), 1, - anon_sym_RBRACK, - STATE(9849), 1, - aux_sym_subscript_argument_list_repeat1, - [359907] = 4, + [361470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16719), 1, + ACTIONS(17154), 1, anon_sym_SEMI, - STATE(10008), 1, + STATE(10164), 1, aux_sym_declaration_repeat1, - [359920] = 4, + [361483] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16721), 1, + ACTIONS(17156), 1, anon_sym_SEMI, - STATE(9926), 1, + STATE(9663), 1, aux_sym_declaration_repeat1, - [359933] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15886), 1, - anon_sym_COMMA, - ACTIONS(16723), 1, - anon_sym_RPAREN, - STATE(10000), 1, - aux_sym_throw_specifier_repeat1, - [359946] = 4, + [361496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16725), 1, + ACTIONS(17158), 1, anon_sym_SEMI, - STATE(9926), 1, + STATE(9663), 1, aux_sym_declaration_repeat1, - [359959] = 4, + [361509] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15912), 1, + ACTIONS(16312), 1, anon_sym_COMMA, - ACTIONS(16727), 1, + ACTIONS(17160), 1, anon_sym_RPAREN, - STATE(10009), 1, + STATE(10165), 1, aux_sym_parameter_list_repeat1, - [359972] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13617), 1, - anon_sym_COMMA, - ACTIONS(16729), 1, - anon_sym_RPAREN, - STATE(9899), 1, - aux_sym_preproc_argument_list_repeat1, - [359985] = 4, + [361522] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15912), 1, + ACTIONS(16312), 1, anon_sym_COMMA, - ACTIONS(16731), 1, + ACTIONS(17162), 1, anon_sym_RPAREN, - STATE(9837), 1, + STATE(10185), 1, aux_sym_parameter_list_repeat1, - [359998] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15876), 1, - anon_sym_COLON, - ACTIONS(16733), 1, - anon_sym_RPAREN, - STATE(10013), 1, - sym_gnu_asm_clobber_list, - [360011] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15880), 1, - anon_sym_COLON, - ACTIONS(16735), 1, - anon_sym_RPAREN, - STATE(10014), 1, - sym_gnu_asm_input_operand_list, - [360024] = 4, + [361535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(16737), 1, - anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [360037] = 4, + ACTIONS(16350), 1, + anon_sym_catch, + STATE(2922), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [361546] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11997), 1, + ACTIONS(12364), 1, anon_sym_COMMA, - ACTIONS(12157), 1, + ACTIONS(17164), 1, anon_sym_RBRACK, - STATE(9550), 1, + STATE(10201), 1, aux_sym_subscript_argument_list_repeat1, - [360050] = 4, + [361559] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(16739), 1, - anon_sym_GT2, - STATE(9673), 1, - aux_sym_template_argument_list_repeat1, - [360063] = 4, + ACTIONS(14247), 1, + anon_sym_requires, + ACTIONS(15107), 1, + anon_sym_LBRACE, + STATE(11324), 1, + sym_requires_clause, + [361572] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15886), 1, + ACTIONS(16356), 1, anon_sym_COMMA, - ACTIONS(16741), 1, + ACTIONS(17166), 1, anon_sym_RPAREN, - STATE(9958), 1, + STATE(10187), 1, aux_sym_throw_specifier_repeat1, - [360076] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15876), 1, - anon_sym_COLON, - ACTIONS(16743), 1, - anon_sym_RPAREN, - STATE(10019), 1, - sym_gnu_asm_clobber_list, - [360089] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15880), 1, - anon_sym_COLON, - ACTIONS(16745), 1, - anon_sym_RPAREN, - STATE(10020), 1, - sym_gnu_asm_input_operand_list, - [360102] = 4, + [361585] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15494), 1, - anon_sym_COMMA, - ACTIONS(15576), 1, + ACTIONS(14247), 1, + anon_sym_requires, + ACTIONS(17168), 1, anon_sym_LBRACE, - STATE(9730), 1, - aux_sym_base_class_clause_repeat1, - [360115] = 4, + STATE(11328), 1, + sym_requires_clause, + [361598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15494), 1, - anon_sym_COMMA, - ACTIONS(15576), 1, - anon_sym_LBRACE, - STATE(9718), 1, - aux_sym_base_class_clause_repeat1, - [360128] = 3, + ACTIONS(9896), 1, + anon_sym___attribute, + ACTIONS(9898), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [361609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16747), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16749), 2, - anon_sym_COMMA, + ACTIONS(7373), 1, anon_sym_LBRACE, - [360139] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(16751), 1, - anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [360152] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16246), 1, - anon_sym_catch, - STATE(2831), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [360163] = 4, + ACTIONS(15906), 1, + anon_sym_COLON_COLON, + STATE(829), 1, + sym_declaration_list, + [361622] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11985), 1, + ACTIONS(12309), 1, anon_sym_COMMA, - ACTIONS(16753), 1, + ACTIONS(17170), 1, anon_sym_RPAREN, - STATE(9704), 1, + STATE(9952), 1, aux_sym_argument_list_repeat1, - [360176] = 4, + [361635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15886), 1, + ACTIONS(17172), 3, anon_sym_COMMA, - ACTIONS(16755), 1, anon_sym_RPAREN, - STATE(9958), 1, - aux_sym_throw_specifier_repeat1, - [360189] = 4, + anon_sym_GT2, + [361644] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15880), 1, + ACTIONS(16515), 1, anon_sym_COLON, - ACTIONS(16757), 1, + ACTIONS(17174), 1, anon_sym_RPAREN, - STATE(10015), 1, + STATE(10170), 1, sym_gnu_asm_input_operand_list, - [360202] = 4, + [361657] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16022), 1, + ACTIONS(16290), 1, anon_sym_COLON, - ACTIONS(16759), 1, + ACTIONS(17176), 1, anon_sym_RPAREN, - STATE(10016), 1, + STATE(10171), 1, sym_gnu_asm_output_operand_list, - [360215] = 4, + [361670] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16761), 1, + ACTIONS(17178), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [360228] = 4, + [361683] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16763), 1, + ACTIONS(17180), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [360241] = 4, + [361696] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16765), 1, + ACTIONS(17182), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(10136), 1, aux_sym_template_argument_list_repeat1, - [360254] = 4, + [361709] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16767), 1, + ACTIONS(17184), 1, anon_sym_SEMI, - STATE(10017), 1, + STATE(10172), 1, aux_sym_declaration_repeat1, - [360267] = 4, + [361722] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16769), 1, + ACTIONS(17186), 1, anon_sym_SEMI, - STATE(9926), 1, + STATE(9663), 1, aux_sym_declaration_repeat1, - [360280] = 4, + [361735] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16771), 1, + ACTIONS(17188), 1, anon_sym_SEMI, - STATE(9926), 1, + STATE(9663), 1, aux_sym_declaration_repeat1, - [360293] = 4, + [361748] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15912), 1, + ACTIONS(16312), 1, anon_sym_COMMA, - ACTIONS(16773), 1, + ACTIONS(17190), 1, anon_sym_RPAREN, - STATE(9837), 1, + STATE(10185), 1, aux_sym_parameter_list_repeat1, - [360306] = 4, + [361761] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11997), 1, + ACTIONS(16356), 1, anon_sym_COMMA, - ACTIONS(16775), 1, - anon_sym_RBRACK, - STATE(9849), 1, - aux_sym_subscript_argument_list_repeat1, - [360319] = 4, + ACTIONS(17192), 1, + anon_sym_RPAREN, + STATE(10173), 1, + aux_sym_throw_specifier_repeat1, + [361774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15886), 1, + ACTIONS(17194), 3, anon_sym_COMMA, - ACTIONS(16777), 1, anon_sym_RPAREN, - STATE(10018), 1, - aux_sym_throw_specifier_repeat1, - [360332] = 4, + anon_sym_GT2, + [361783] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16779), 1, + ACTIONS(17196), 1, anon_sym_SEMI, - STATE(9738), 1, + STATE(10175), 1, aux_sym_declaration_repeat1, - [360345] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15930), 1, - anon_sym_COLON, - ACTIONS(16781), 1, - anon_sym_RPAREN, - STATE(11165), 1, - sym_gnu_asm_goto_list, - [360358] = 4, + [361796] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15876), 1, - anon_sym_COLON, - ACTIONS(16783), 1, - anon_sym_RPAREN, - STATE(10025), 1, - sym_gnu_asm_clobber_list, - [360371] = 4, + ACTIONS(17198), 1, + anon_sym_COMMA, + ACTIONS(17201), 1, + anon_sym_GT2, + STATE(10169), 1, + aux_sym_template_parameter_list_repeat1, + [361809] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15876), 1, + ACTIONS(16535), 1, anon_sym_COLON, - ACTIONS(16785), 1, + ACTIONS(17203), 1, anon_sym_RPAREN, - STATE(10022), 1, + STATE(10176), 1, sym_gnu_asm_clobber_list, - [360384] = 4, + [361822] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15880), 1, + ACTIONS(16515), 1, anon_sym_COLON, - ACTIONS(16787), 1, + ACTIONS(17205), 1, anon_sym_RPAREN, - STATE(10023), 1, + STATE(10177), 1, sym_gnu_asm_input_operand_list, - [360397] = 4, + [361835] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16789), 1, + ACTIONS(17207), 1, anon_sym_SEMI, - STATE(9926), 1, + STATE(9663), 1, aux_sym_declaration_repeat1, - [360410] = 4, + [361848] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15886), 1, + ACTIONS(16356), 1, anon_sym_COMMA, - ACTIONS(16791), 1, + ACTIONS(17209), 1, anon_sym_RPAREN, - STATE(9958), 1, + STATE(10013), 1, aux_sym_throw_specifier_repeat1, - [360423] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15930), 1, - anon_sym_COLON, - ACTIONS(16793), 1, - anon_sym_RPAREN, - STATE(11297), 1, - sym_gnu_asm_goto_list, - [360436] = 4, + [361861] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15876), 1, - anon_sym_COLON, - ACTIONS(16795), 1, + ACTIONS(17211), 1, + anon_sym_COMMA, + ACTIONS(17214), 1, anon_sym_RPAREN, - STATE(10029), 1, - sym_gnu_asm_clobber_list, - [360449] = 3, + STATE(10174), 1, + aux_sym_requires_parameter_list_repeat1, + [361874] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9566), 1, - anon_sym___attribute, - ACTIONS(9568), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [360460] = 4, + ACTIONS(13937), 1, + anon_sym_COMMA, + ACTIONS(17216), 1, + anon_sym_SEMI, + STATE(9663), 1, + aux_sym_declaration_repeat1, + [361887] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15930), 1, + ACTIONS(16470), 1, anon_sym_COLON, - ACTIONS(16797), 1, + ACTIONS(17218), 1, anon_sym_RPAREN, - STATE(11180), 1, + STATE(11545), 1, sym_gnu_asm_goto_list, - [360473] = 4, + [361900] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15876), 1, + ACTIONS(16535), 1, anon_sym_COLON, - ACTIONS(16799), 1, + ACTIONS(17220), 1, anon_sym_RPAREN, - STATE(10024), 1, + STATE(10178), 1, sym_gnu_asm_clobber_list, - [360486] = 4, + [361913] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15930), 1, + ACTIONS(16470), 1, anon_sym_COLON, - ACTIONS(16801), 1, + ACTIONS(17222), 1, anon_sym_RPAREN, - STATE(11187), 1, + STATE(11547), 1, sym_gnu_asm_goto_list, - [360499] = 4, + [361926] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15930), 1, + ACTIONS(16290), 1, anon_sym_COLON, - ACTIONS(16803), 1, - anon_sym_RPAREN, - STATE(11213), 1, - sym_gnu_asm_goto_list, - [360512] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12035), 1, - anon_sym_COMMA, - ACTIONS(16805), 1, + ACTIONS(17224), 1, anon_sym_RPAREN, - STATE(9672), 1, - aux_sym_generic_expression_repeat1, - [360525] = 4, + STATE(9929), 1, + sym_gnu_asm_output_operand_list, + [361939] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15886), 1, + ACTIONS(17226), 1, anon_sym_COMMA, - ACTIONS(16807), 1, - anon_sym_RPAREN, - STATE(9538), 1, - aux_sym_throw_specifier_repeat1, - [360538] = 4, + ACTIONS(17229), 1, + anon_sym_RBRACK, + STATE(10180), 1, + aux_sym_structured_binding_declarator_repeat1, + [361952] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15494), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(15496), 1, - anon_sym_LBRACE, - STATE(9724), 1, - aux_sym_base_class_clause_repeat1, - [360551] = 4, + ACTIONS(17231), 1, + anon_sym_SEMI, + STATE(9732), 1, + aux_sym_declaration_repeat1, + [361965] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15930), 1, + ACTIONS(16535), 1, anon_sym_COLON, - ACTIONS(16809), 1, + ACTIONS(17233), 1, anon_sym_RPAREN, - STATE(11306), 1, - sym_gnu_asm_goto_list, - [360564] = 4, + STATE(10190), 1, + sym_gnu_asm_clobber_list, + [361978] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12035), 1, - anon_sym_COMMA, - ACTIONS(16811), 1, + ACTIONS(16515), 1, + anon_sym_COLON, + ACTIONS(17235), 1, anon_sym_RPAREN, - STATE(9672), 1, - aux_sym_generic_expression_repeat1, - [360577] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16813), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16815), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [360588] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15494), 1, - anon_sym_COMMA, - ACTIONS(15496), 1, - anon_sym_LBRACE, - STATE(9730), 1, - aux_sym_base_class_clause_repeat1, - [360601] = 4, + STATE(10191), 1, + sym_gnu_asm_input_operand_list, + [361991] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16301), 1, + ACTIONS(16302), 1, anon_sym_COMMA, - ACTIONS(16817), 1, - anon_sym_LBRACE, - STATE(9844), 1, - aux_sym_field_initializer_list_repeat1, - [360614] = 3, + ACTIONS(17237), 1, + anon_sym_RBRACK, + STATE(9960), 1, + aux_sym_lambda_capture_specifier_repeat1, + [362004] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16819), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16821), 2, + ACTIONS(17239), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [360625] = 4, + ACTIONS(17242), 1, + anon_sym_RPAREN, + STATE(10185), 1, + aux_sym_parameter_list_repeat1, + [362017] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15868), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16823), 1, - anon_sym_RBRACK_RBRACK, - STATE(10042), 1, - aux_sym_attribute_declaration_repeat1, - [360638] = 4, + ACTIONS(17244), 1, + anon_sym_SEMI, + STATE(9663), 1, + aux_sym_declaration_repeat1, + [362030] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15872), 1, + ACTIONS(16356), 1, anon_sym_COMMA, - ACTIONS(16823), 1, - anon_sym_RBRACK_RBRACK, - STATE(10043), 1, - aux_sym_attribute_declaration_repeat2, - [360651] = 4, + ACTIONS(17246), 1, + anon_sym_RPAREN, + STATE(10013), 1, + aux_sym_throw_specifier_repeat1, + [362043] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9041), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - ACTIONS(16825), 1, - anon_sym_RBRACK, - STATE(9814), 1, - aux_sym_structured_binding_declarator_repeat1, - [360664] = 4, + ACTIONS(17248), 1, + anon_sym_SEMI, + STATE(9663), 1, + aux_sym_declaration_repeat1, + [362056] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16086), 1, + ACTIONS(17250), 1, anon_sym_COMMA, - ACTIONS(16827), 1, + ACTIONS(17253), 1, anon_sym_RBRACK, - STATE(9822), 1, + STATE(10189), 1, aux_sym_lambda_capture_specifier_repeat1, - [360677] = 4, + [362069] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 1, - anon_sym_LBRACE, - ACTIONS(15488), 1, - anon_sym_COLON_COLON, - STATE(644), 1, - sym_declaration_list, - [360690] = 4, + ACTIONS(16470), 1, + anon_sym_COLON, + ACTIONS(17255), 1, + anon_sym_RPAREN, + STATE(11592), 1, + sym_gnu_asm_goto_list, + [362082] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15930), 1, + ACTIONS(16535), 1, anon_sym_COLON, - ACTIONS(16829), 1, + ACTIONS(17257), 1, anon_sym_RPAREN, - STATE(10721), 1, - sym_gnu_asm_goto_list, - [360703] = 4, + STATE(10195), 1, + sym_gnu_asm_clobber_list, + [362095] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11985), 1, + ACTIONS(12541), 1, anon_sym_COMMA, - ACTIONS(16831), 1, - anon_sym_RPAREN, - STATE(9704), 1, - aux_sym_argument_list_repeat1, - [360716] = 4, + ACTIONS(12543), 1, + anon_sym_RBRACE, + STATE(9872), 1, + aux_sym_initializer_list_repeat1, + [362108] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15868), 1, + ACTIONS(16294), 1, anon_sym_COMMA, - ACTIONS(16833), 1, + ACTIONS(17259), 1, anon_sym_RBRACK_RBRACK, - STATE(9745), 1, + STATE(10202), 1, aux_sym_attribute_declaration_repeat1, - [360729] = 4, + [362121] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15872), 1, + ACTIONS(16298), 1, anon_sym_COMMA, - ACTIONS(16833), 1, + ACTIONS(17259), 1, anon_sym_RBRACK_RBRACK, - STATE(9747), 1, + STATE(10203), 1, aux_sym_attribute_declaration_repeat2, - [360742] = 4, + [362134] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6983), 1, - anon_sym_LBRACE, - ACTIONS(15488), 1, - anon_sym_COLON_COLON, - STATE(851), 1, - sym_declaration_list, - [360755] = 4, + ACTIONS(16470), 1, + anon_sym_COLON, + ACTIONS(17261), 1, + anon_sym_RPAREN, + STATE(11611), 1, + sym_gnu_asm_goto_list, + [362147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(17263), 1, anon_sym_COMMA, - ACTIONS(16835), 1, - anon_sym_GT2, - STATE(10053), 1, - aux_sym_template_argument_list_repeat1, - [360768] = 4, + ACTIONS(17266), 1, + anon_sym_LBRACE, + STATE(10196), 1, + aux_sym_field_initializer_list_repeat1, + [362160] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5404), 1, - anon_sym_RBRACE, - ACTIONS(16837), 1, + ACTIONS(12421), 1, anon_sym_COMMA, - STATE(9714), 1, - aux_sym_initializer_list_repeat1, - [360781] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16839), 1, - anon_sym_SEMI, - STATE(10491), 1, - sym_attribute_declaration, - [360794] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16841), 1, - anon_sym_SEMI, - STATE(10514), 1, - sym_attribute_declaration, - [360807] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16305), 1, - anon_sym_catch, - STATE(489), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [360818] = 4, + ACTIONS(17268), 1, + anon_sym_RPAREN, + STATE(9778), 1, + aux_sym_generic_expression_repeat1, + [362173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(17270), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(17272), 2, anon_sym_COMMA, - ACTIONS(16843), 1, - anon_sym_GT2, - STATE(9769), 1, - aux_sym_template_argument_list_repeat1, - [360831] = 4, + anon_sym_LBRACE, + [362184] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(15922), 1, anon_sym_COMMA, - ACTIONS(16845), 1, - anon_sym_GT2, - STATE(9769), 1, - aux_sym_template_argument_list_repeat1, - [360844] = 4, + ACTIONS(17274), 1, + anon_sym_LBRACE, + STATE(10033), 1, + aux_sym_base_class_clause_repeat1, + [362197] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15930), 1, - anon_sym_COLON, - ACTIONS(16847), 1, - anon_sym_RPAREN, - STATE(11347), 1, - sym_gnu_asm_goto_list, - [360857] = 4, + ACTIONS(7369), 1, + anon_sym_LBRACE, + ACTIONS(15906), 1, + anon_sym_COLON_COLON, + STATE(945), 1, + sym_declaration_list, + [362210] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12735), 1, + anon_sym_RBRACK, + ACTIONS(17276), 1, anon_sym_COMMA, - ACTIONS(16849), 1, - anon_sym_GT2, - STATE(9769), 1, - aux_sym_template_argument_list_repeat1, - [360870] = 4, + STATE(10201), 1, + aux_sym_subscript_argument_list_repeat1, + [362223] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15876), 1, - anon_sym_COLON, - ACTIONS(16851), 1, - anon_sym_RPAREN, - STATE(10040), 1, - sym_gnu_asm_clobber_list, - [360883] = 3, + ACTIONS(16294), 1, + anon_sym_COMMA, + ACTIONS(17279), 1, + anon_sym_RBRACK_RBRACK, + STATE(10031), 1, + aux_sym_attribute_declaration_repeat1, + [362236] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10510), 1, - anon_sym_EQ, - ACTIONS(10508), 2, + ACTIONS(16298), 1, anon_sym_COMMA, - anon_sym_GT2, - [360894] = 2, + ACTIONS(17279), 1, + anon_sym_RBRACK_RBRACK, + STATE(10034), 1, + aux_sym_attribute_declaration_repeat2, + [362249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12128), 3, - anon_sym_RPAREN, + ACTIONS(17281), 3, anon_sym_SEMI, - anon_sym_COLON, - [360903] = 4, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + [362258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11947), 1, + ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(16853), 1, + ACTIONS(17283), 1, anon_sym_GT2, - STATE(9769), 1, + STATE(9666), 1, aux_sym_template_argument_list_repeat1, - [360916] = 4, + [362271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(9808), 1, + anon_sym___attribute, + ACTIONS(9810), 2, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(16855), 1, - anon_sym_SEMI, - STATE(10519), 1, - sym_attribute_declaration, - [360929] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3620), 1, - anon_sym_while, - ACTIONS(16598), 1, - anon_sym_else, - STATE(481), 1, - sym_else_clause, - [360942] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13479), 1, - anon_sym_DASH_GT, - ACTIONS(16857), 1, - anon_sym_SEMI, - STATE(10651), 1, - sym_trailing_return_type, - [360955] = 4, - ACTIONS(3), 1, + [362282] = 3, + ACTIONS(14065), 1, sym_comment, - ACTIONS(11997), 1, - anon_sym_COMMA, - ACTIONS(16859), 1, - anon_sym_RBRACK, - STATE(9849), 1, - aux_sym_subscript_argument_list_repeat1, - [360968] = 4, + ACTIONS(17285), 1, + aux_sym_preproc_include_token2, + ACTIONS(17287), 1, + sym_preproc_arg, + [362292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15880), 1, - anon_sym_COLON, - ACTIONS(16861), 1, - anon_sym_RPAREN, - STATE(9583), 1, - sym_gnu_asm_input_operand_list, - [360981] = 4, + ACTIONS(16576), 1, + anon_sym_LPAREN2, + STATE(10217), 1, + sym_condition_clause, + [362302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13549), 1, - anon_sym_COMMA, - ACTIONS(16863), 1, - anon_sym_SEMI, - STATE(9926), 1, - aux_sym_declaration_repeat1, - [360994] = 3, + ACTIONS(13877), 1, + anon_sym_LBRACE, + STATE(5225), 1, + sym_compound_statement, + [362312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16865), 1, + ACTIONS(16576), 1, anon_sym_LPAREN2, - ACTIONS(16867), 1, - sym_raw_string_delimiter, - [361004] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16869), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [361012] = 3, + STATE(196), 1, + sym_condition_clause, + [362322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16871), 1, - anon_sym_COMMA, - ACTIONS(16873), 1, - anon_sym_RBRACE, - [361022] = 3, + ACTIONS(17289), 1, + anon_sym_LT, + STATE(5535), 1, + sym_template_argument_list, + [362332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8193), 1, + ACTIONS(10572), 1, anon_sym_LBRACE, - STATE(2853), 1, - sym_field_declaration_list, - [361032] = 2, + STATE(3262), 1, + sym_compound_statement, + [362342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16875), 2, - anon_sym_COMMA, + ACTIONS(57), 1, anon_sym_LBRACE, - [361040] = 3, + STATE(10011), 1, + sym_compound_statement, + [362352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9596), 1, - anon_sym_LBRACE, - STATE(4260), 1, - sym_field_declaration_list, - [361050] = 2, + ACTIONS(12277), 1, + anon_sym_LT, + STATE(2992), 1, + sym_template_argument_list, + [362362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16474), 2, - anon_sym_COMMA, + ACTIONS(57), 1, anon_sym_LBRACE, - [361058] = 3, + STATE(9940), 1, + sym_compound_statement, + [362372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9596), 1, + ACTIONS(8158), 1, anon_sym_LBRACE, - STATE(4266), 1, + STATE(2671), 1, sym_field_declaration_list, - [361068] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16877), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [361076] = 3, + [362382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(1113), 1, anon_sym_LBRACE, - STATE(5860), 1, - sym_initializer_list, - [361086] = 3, + STATE(583), 1, + sym_compound_statement, + [362392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, + ACTIONS(12755), 1, anon_sym_LPAREN2, - STATE(10498), 1, + STATE(10930), 1, sym_argument_list, - [361096] = 3, + [362402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, + ACTIONS(7227), 1, anon_sym_COLON_COLON, - ACTIONS(15443), 1, + ACTIONS(15166), 1, anon_sym_SEMI, - [361106] = 3, + [362412] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(9480), 1, + STATE(9645), 1, sym_compound_statement, - [361116] = 3, + [362422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16151), 1, + ACTIONS(16576), 1, anon_sym_LPAREN2, - STATE(184), 1, + STATE(201), 1, sym_condition_clause, - [361126] = 3, + [362432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13527), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(3568), 1, + STATE(771), 1, sym_compound_statement, - [361136] = 2, + [362442] = 3, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(17291), 1, + aux_sym_preproc_include_token2, + ACTIONS(17293), 1, + sym_preproc_arg, + [362452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12283), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [361144] = 3, + ACTIONS(2093), 1, + anon_sym_LBRACE, + STATE(1230), 1, + sym_compound_statement, + [362462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, + ACTIONS(7227), 1, anon_sym_COLON_COLON, - ACTIONS(15578), 1, + ACTIONS(15786), 1, anon_sym_SEMI, - [361154] = 2, + [362472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16297), 2, + ACTIONS(17295), 1, anon_sym_COMMA, - anon_sym_SEMI, - [361162] = 3, + ACTIONS(17297), 1, + anon_sym_RBRACE, + [362482] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17295), 1, + anon_sym_COMMA, + ACTIONS(17299), 1, + anon_sym_RBRACE, + [362492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(8503), 1, anon_sym_LBRACE, - STATE(1102), 1, - sym_compound_statement, - [361172] = 3, + STATE(3030), 1, + sym_field_declaration_list, + [362502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14527), 1, - anon_sym_RBRACE, - ACTIONS(16871), 1, - anon_sym_COMMA, - [361182] = 3, + ACTIONS(7373), 1, + anon_sym_LBRACE, + STATE(810), 1, + sym_declaration_list, + [362512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13483), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(5516), 1, + STATE(1011), 1, sym_compound_statement, - [361192] = 3, + [362522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8909), 1, + ACTIONS(4676), 1, anon_sym_LBRACE, - STATE(4287), 1, - sym_field_declaration_list, - [361202] = 3, + STATE(5969), 1, + sym_initializer_list, + [362532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8909), 1, + ACTIONS(7373), 1, anon_sym_LBRACE, - STATE(4288), 1, - sym_field_declaration_list, - [361212] = 3, + STATE(783), 1, + sym_declaration_list, + [362542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16879), 1, + ACTIONS(17301), 1, anon_sym_LPAREN2, - STATE(10643), 1, + STATE(11252), 1, sym_parenthesized_expression, - [361222] = 3, + [362552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(17295), 1, + anon_sym_COMMA, + ACTIONS(17303), 1, + anon_sym_RBRACE, + [362562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, anon_sym_LPAREN2, - STATE(10285), 1, + STATE(10476), 1, sym_parameter_list, - [361232] = 3, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(16881), 1, - aux_sym_preproc_include_token2, - ACTIONS(16883), 1, - sym_preproc_arg, - [361242] = 3, + [362572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15488), 1, - anon_sym_COLON_COLON, - ACTIONS(16885), 1, - anon_sym_SEMI, - [361252] = 3, + ACTIONS(9965), 1, + anon_sym_LBRACE, + STATE(4377), 1, + sym_field_declaration_list, + [362582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12955), 1, + ACTIONS(10580), 1, anon_sym_LBRACE, - STATE(6564), 1, - sym_requirement_seq, - [361262] = 3, + STATE(2716), 1, + sym_compound_statement, + [362592] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(9998), 1, + STATE(10148), 1, sym_compound_statement, - [361272] = 3, + [362602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - STATE(7210), 1, - sym_initializer_list, - [361282] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9672), 1, - anon_sym_LT, - STATE(4203), 1, - sym_template_argument_list, - [361292] = 3, + STATE(4760), 1, + sym_field_declaration_list, + [362612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 1, + ACTIONS(13885), 1, anon_sym_LBRACE, - STATE(806), 1, + STATE(8370), 1, sym_compound_statement, - [361302] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16887), 1, - anon_sym_LT, - STATE(2030), 1, - sym_template_argument_list, - [361312] = 3, + [362622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16879), 1, + ACTIONS(17301), 1, anon_sym_LPAREN2, - STATE(10308), 1, + STATE(10550), 1, sym_parenthesized_expression, - [361322] = 3, + [362632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15858), 1, - anon_sym_LBRACE, - STATE(8260), 1, - sym_requirement_seq, - [361332] = 3, + ACTIONS(17301), 1, + anon_sym_LPAREN2, + STATE(10546), 1, + sym_parenthesized_expression, + [362642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16151), 1, + ACTIONS(16576), 1, anon_sym_LPAREN2, - STATE(10396), 1, + STATE(10406), 1, sym_condition_clause, - [361342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7819), 1, - anon_sym_LBRACE, - STATE(2586), 1, - sym_field_declaration_list, - [361352] = 3, + [362652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12922), 1, + ACTIONS(13348), 1, anon_sym_LBRACE, - STATE(5097), 1, + STATE(6663), 1, sym_requirement_seq, - [361362] = 3, + [362662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(13875), 1, anon_sym_LBRACE, - STATE(4940), 1, + STATE(8023), 1, sym_compound_statement, - [361372] = 3, + [362672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7021), 1, - anon_sym_LBRACE, - STATE(896), 1, - sym_declaration_list, - [361382] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9672), 1, - anon_sym_LT, - STATE(3601), 1, - sym_template_argument_list, - [361392] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16889), 1, - anon_sym_LT, - STATE(2824), 1, - sym_template_argument_list, - [361402] = 3, + ACTIONS(17305), 2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [362680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(14760), 1, - anon_sym_SEMI, - [361412] = 3, + ACTIONS(12755), 1, + anon_sym_LPAREN2, + STATE(11568), 1, + sym_argument_list, + [362690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9590), 1, - anon_sym_LT, - STATE(4107), 1, - sym_template_argument_list, - [361422] = 3, + ACTIONS(10580), 1, + anon_sym_LBRACE, + STATE(2839), 1, + sym_compound_statement, + [362700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10271), 1, + ACTIONS(13877), 1, anon_sym_LBRACE, - STATE(3294), 1, + STATE(5234), 1, sym_compound_statement, - [361432] = 3, + [362710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 1, + ACTIONS(13855), 1, anon_sym_LBRACE, - STATE(606), 1, - sym_declaration_list, - [361442] = 2, + STATE(6667), 1, + sym_compound_statement, + [362720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14090), 2, - anon_sym_COMMA, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(16046), 1, anon_sym_SEMI, - [361450] = 3, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(16891), 1, - aux_sym_preproc_include_token2, - ACTIONS(16893), 1, - sym_preproc_arg, - [361460] = 3, + [362730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13503), 1, - anon_sym_LBRACE, - STATE(2845), 1, - sym_compound_statement, - [361470] = 3, + ACTIONS(14897), 1, + anon_sym_RBRACE, + ACTIONS(17295), 1, + anon_sym_COMMA, + [362740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12938), 1, + ACTIONS(7243), 1, anon_sym_LBRACE, - STATE(5152), 1, - sym_requirement_seq, - [361480] = 3, + STATE(2165), 1, + sym_field_declaration_list, + [362750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16151), 1, - anon_sym_LPAREN2, - STATE(10480), 1, - sym_condition_clause, - [361490] = 2, + ACTIONS(17307), 1, + anon_sym_LT, + STATE(3805), 1, + sym_template_argument_list, + [362760] = 3, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(17309), 1, + aux_sym_preproc_include_token2, + ACTIONS(17311), 1, + sym_preproc_arg, + [362770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16895), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [361498] = 3, + ACTIONS(17307), 1, + anon_sym_LT, + STATE(2090), 1, + sym_template_argument_list, + [362780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16897), 1, + ACTIONS(17313), 1, anon_sym_LT, - STATE(2510), 1, + STATE(2928), 1, sym_template_argument_list, - [361508] = 3, + [362790] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(9737), 1, - sym_compound_statement, - [361518] = 3, + ACTIONS(17315), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [362798] = 3, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(17317), 1, + aux_sym_preproc_include_token2, + ACTIONS(17319), 1, + sym_preproc_arg, + [362808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13509), 1, - anon_sym_LBRACE, - STATE(8280), 1, - sym_compound_statement, - [361528] = 2, + ACTIONS(16576), 1, + anon_sym_LPAREN2, + STATE(10278), 1, + sym_condition_clause, + [362818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16282), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [361536] = 3, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(16130), 1, + anon_sym_SEMI, + [362828] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(9334), 1, + STATE(9711), 1, sym_compound_statement, - [361546] = 3, + [362838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6983), 1, + ACTIONS(7361), 1, anon_sym_LBRACE, - STATE(809), 1, + STATE(665), 1, sym_declaration_list, - [361556] = 3, + [362848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13499), 1, + ACTIONS(13839), 1, anon_sym_LBRACE, - STATE(5146), 1, + STATE(5106), 1, sym_compound_statement, - [361566] = 3, + [362858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9314), 1, + anon_sym_LBRACE, + STATE(3954), 1, + sym_field_declaration_list, + [362868] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(16162), 1, + anon_sym_SEMI, + [362878] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12059), 1, + anon_sym_LT, + STATE(6693), 1, + sym_template_argument_list, + [362888] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11724), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [362896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, + ACTIONS(12755), 1, anon_sym_LPAREN2, - STATE(11080), 1, + STATE(11274), 1, sym_argument_list, - [361576] = 3, + [362906] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(9445), 1, + STATE(9628), 1, sym_compound_statement, - [361586] = 3, + [362916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(15387), 1, - anon_sym_SEMI, - [361596] = 3, + ACTIONS(2396), 1, + anon_sym_LBRACE, + STATE(3899), 1, + sym_initializer_list, + [362926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13491), 1, + ACTIONS(13885), 1, anon_sym_LBRACE, - STATE(6491), 1, + STATE(8414), 1, sym_compound_statement, - [361606] = 3, + [362936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15180), 1, - anon_sym_EQ, - STATE(10133), 1, - sym_annotation, - [361616] = 3, + ACTIONS(9544), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [362944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16088), 1, - anon_sym_RBRACK, - ACTIONS(16899), 1, + ACTIONS(17295), 1, anon_sym_COMMA, - [361626] = 3, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(16901), 1, - aux_sym_preproc_include_token2, - ACTIONS(16903), 1, - sym_preproc_arg, - [361636] = 3, + ACTIONS(17321), 1, + anon_sym_RBRACE, + [362954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10277), 1, - anon_sym_LT, - STATE(4203), 1, - sym_template_argument_list, - [361646] = 3, + ACTIONS(10603), 1, + anon_sym_LBRACE, + STATE(3234), 1, + sym_compound_statement, + [362964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16889), 1, - anon_sym_LT, - STATE(3619), 1, - sym_template_argument_list, - [361656] = 3, + ACTIONS(7243), 1, + anon_sym_LBRACE, + STATE(2158), 1, + sym_field_declaration_list, + [362974] = 3, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(17323), 1, + aux_sym_preproc_include_token2, + ACTIONS(17325), 1, + sym_preproc_arg, + [362984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - STATE(10183), 1, - sym_parameter_list, - [361666] = 2, + ACTIONS(2093), 1, + anon_sym_LBRACE, + STATE(1252), 1, + sym_compound_statement, + [362994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16287), 2, + ACTIONS(14851), 1, + anon_sym_RBRACE, + ACTIONS(17295), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [361674] = 3, + [363004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16871), 1, - anon_sym_COMMA, - ACTIONS(16905), 1, - anon_sym_RBRACE, - [361684] = 3, + ACTIONS(8297), 1, + anon_sym_LBRACE, + STATE(2753), 1, + sym_field_declaration_list, + [363014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12930), 1, + ACTIONS(13356), 1, anon_sym_LBRACE, - STATE(5500), 1, + STATE(6449), 1, sym_requirement_seq, - [361694] = 3, + [363024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16879), 1, + ACTIONS(17301), 1, anon_sym_LPAREN2, - STATE(10794), 1, + STATE(11139), 1, sym_parenthesized_expression, - [361704] = 3, + [363034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(16955), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [363042] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13795), 1, anon_sym_LPAREN2, - STATE(10220), 1, + STATE(10275), 1, sym_parameter_list, - [361714] = 3, + [363052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8909), 1, + ACTIONS(17327), 1, + sym_identifier, + ACTIONS(17329), 1, + anon_sym_RPAREN, + [363062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9965), 1, anon_sym_LBRACE, - STATE(4290), 1, + STATE(4342), 1, sym_field_declaration_list, - [361724] = 3, + [363072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(15818), 1, - anon_sym_SEMI, - [361734] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(9813), 1, + sym_compound_statement, + [363082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7015), 1, + ACTIONS(9965), 1, anon_sym_LBRACE, - STATE(429), 1, - sym_declaration_list, - [361744] = 3, + STATE(4343), 1, + sym_field_declaration_list, + [363092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(17331), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(9938), 1, - sym_compound_statement, - [361754] = 3, + [363100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10232), 1, + ACTIONS(10603), 1, anon_sym_LBRACE, - STATE(2731), 1, + STATE(3365), 1, sym_compound_statement, - [361764] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16907), 1, - anon_sym_LPAREN2, - ACTIONS(16909), 1, - sym_raw_string_delimiter, - [361774] = 3, + [363110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(15431), 1, - anon_sym_SEMI, - [361784] = 3, + ACTIONS(8297), 1, + anon_sym_LBRACE, + STATE(2754), 1, + sym_field_declaration_list, + [363120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16879), 1, + ACTIONS(17301), 1, anon_sym_LPAREN2, - STATE(10327), 1, + STATE(10365), 1, sym_parenthesized_expression, - [361794] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(15586), 1, - anon_sym_SEMI, - [361804] = 3, + [363130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16151), 1, - anon_sym_LPAREN2, - STATE(10185), 1, - sym_condition_clause, - [361814] = 3, + ACTIONS(16965), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [363138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14517), 1, + ACTIONS(14911), 1, anon_sym_RBRACE, - ACTIONS(16871), 1, + ACTIONS(17295), 1, anon_sym_COMMA, - [361824] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16151), 1, - anon_sym_LPAREN2, - STATE(206), 1, - sym_condition_clause, - [361834] = 3, + [363148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10271), 1, + ACTIONS(13871), 1, anon_sym_LBRACE, - STATE(3025), 1, + STATE(6454), 1, sym_compound_statement, - [361844] = 3, + [363158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14473), 1, - anon_sym_RBRACE, - ACTIONS(16871), 1, - anon_sym_COMMA, - [361854] = 3, + ACTIONS(10005), 1, + anon_sym_LT, + STATE(3805), 1, + sym_template_argument_list, + [363168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 1, - anon_sym_LBRACE, - STATE(764), 1, - sym_compound_statement, - [361864] = 3, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(16044), 1, + anon_sym_SEMI, + [363178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12094), 1, - anon_sym_RPAREN, - ACTIONS(12096), 1, - anon_sym_SEMI, - [361874] = 3, + ACTIONS(9314), 1, + anon_sym_LBRACE, + STATE(3855), 1, + sym_field_declaration_list, + [363188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13491), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(6575), 1, + STATE(9873), 1, sym_compound_statement, - [361884] = 3, - ACTIONS(13686), 1, + [363198] = 3, + ACTIONS(14065), 1, sym_comment, - ACTIONS(16911), 1, + ACTIONS(17333), 1, aux_sym_preproc_include_token2, - ACTIONS(16913), 1, + ACTIONS(17335), 1, sym_preproc_arg, - [361894] = 3, + [363208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(9573), 1, - sym_compound_statement, - [361904] = 3, + ACTIONS(12277), 1, + anon_sym_LT, + STATE(2938), 1, + sym_template_argument_list, + [363218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, - anon_sym_RBRACE, - ACTIONS(16871), 1, - anon_sym_COMMA, - [361914] = 3, + ACTIONS(10005), 1, + anon_sym_LT, + STATE(2053), 1, + sym_template_argument_list, + [363228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14513), 1, - anon_sym_RBRACE, - ACTIONS(16871), 1, + ACTIONS(17337), 2, anon_sym_COMMA, - [361924] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(15548), 1, - anon_sym_SEMI, - [361934] = 3, + anon_sym_RBRACK, + [363236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, + ACTIONS(12755), 1, anon_sym_LPAREN2, - STATE(11019), 1, + STATE(10954), 1, sym_argument_list, - [361944] = 3, + [363246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13503), 1, - anon_sym_LBRACE, - STATE(2889), 1, - sym_compound_statement, - [361954] = 3, - ACTIONS(3), 1, + ACTIONS(14907), 1, + anon_sym_RBRACE, + ACTIONS(17295), 1, + anon_sym_COMMA, + [363256] = 3, + ACTIONS(14065), 1, sym_comment, - ACTIONS(11202), 1, - anon_sym_LBRACE, - STATE(5868), 1, - sym_field_declaration_list, - [361964] = 3, + ACTIONS(17339), 1, + aux_sym_preproc_include_token2, + ACTIONS(17341), 1, + sym_preproc_arg, + [363266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11202), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - STATE(5869), 1, + STATE(4731), 1, sym_field_declaration_list, - [361974] = 3, + [363276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(3052), 1, anon_sym_LBRACE, - STATE(9956), 1, - sym_compound_statement, - [361984] = 3, + STATE(5843), 1, + sym_initializer_list, + [363286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - STATE(6357), 1, - sym_compound_statement, - [361994] = 3, + STATE(3865), 1, + sym_field_declaration_list, + [363296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16887), 1, - anon_sym_LT, - STATE(1995), 1, - sym_template_argument_list, - [362004] = 3, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + STATE(10361), 1, + sym_parameter_list, + [363306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13483), 1, - anon_sym_LBRACE, - STATE(5538), 1, - sym_compound_statement, - [362014] = 3, + ACTIONS(17343), 1, + sym_identifier, + ACTIONS(17345), 1, + anon_sym_LPAREN2, + [363316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(556), 1, + STATE(9914), 1, sym_compound_statement, - [362024] = 3, + [363326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10215), 1, + ACTIONS(7243), 1, anon_sym_LBRACE, - STATE(3181), 1, - sym_compound_statement, - [362034] = 3, + STATE(2140), 1, + sym_field_declaration_list, + [363336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9672), 1, + ACTIONS(17347), 1, anon_sym_LT, - STATE(3698), 1, + STATE(5547), 1, sym_template_argument_list, - [362044] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16871), 1, - anon_sym_COMMA, - ACTIONS(16915), 1, - anon_sym_RBRACE, - [362054] = 3, + [363346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(17301), 1, anon_sym_LPAREN2, - STATE(10082), 1, - sym_parameter_list, - [362064] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8193), 1, - anon_sym_LBRACE, - STATE(2900), 1, - sym_field_declaration_list, - [362074] = 3, + STATE(10381), 1, + sym_parenthesized_expression, + [363356] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(9670), 1, + STATE(545), 1, sym_compound_statement, - [362084] = 3, + [363366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8193), 1, - anon_sym_LBRACE, - STATE(2901), 1, - sym_field_declaration_list, - [362094] = 3, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(16218), 1, + anon_sym_SEMI, + [363376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(13855), 1, anon_sym_LBRACE, - STATE(9784), 1, + STATE(6682), 1, sym_compound_statement, - [362104] = 3, + [363386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(10580), 1, anon_sym_LBRACE, - STATE(10049), 1, + STATE(2793), 1, sym_compound_statement, - [362114] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16879), 1, - anon_sym_LPAREN2, - STATE(10181), 1, - sym_parenthesized_expression, - [362124] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16889), 1, - anon_sym_LT, - STATE(4000), 1, - sym_template_argument_list, - [362134] = 3, + [363396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9027), 1, + ACTIONS(7243), 1, anon_sym_LBRACE, - STATE(3778), 1, + STATE(2144), 1, sym_field_declaration_list, - [362144] = 3, + [363406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(9246), 1, anon_sym_LBRACE, - STATE(1133), 1, - sym_compound_statement, - [362154] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16607), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [362162] = 3, + STATE(4385), 1, + sym_field_declaration_list, + [363416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(13849), 1, anon_sym_LBRACE, - STATE(363), 1, + STATE(5673), 1, sym_compound_statement, - [362172] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16151), 1, - anon_sym_LPAREN2, - STATE(183), 1, - sym_condition_clause, - [362182] = 3, + [363426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(673), 1, + STATE(625), 1, sym_compound_statement, - [362192] = 3, + [363436] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(9735), 1, + STATE(9959), 1, sym_compound_statement, - [362202] = 3, + [363446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16917), 1, - anon_sym_LT, - STATE(2840), 1, - sym_template_argument_list, - [362212] = 3, + ACTIONS(15906), 1, + anon_sym_COLON_COLON, + ACTIONS(17349), 1, + anon_sym_SEMI, + [363456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 1, - anon_sym_LBRACE, - STATE(5860), 1, - sym_initializer_list, - [362222] = 3, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(16190), 1, + anon_sym_SEMI, + [363466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16919), 1, + ACTIONS(17347), 1, anon_sym_LT, - STATE(2487), 1, + STATE(2577), 1, sym_template_argument_list, - [362232] = 3, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(16921), 1, - aux_sym_preproc_include_token2, - ACTIONS(16923), 1, - sym_preproc_arg, - [362242] = 3, + [363476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, + ACTIONS(12755), 1, anon_sym_LPAREN2, - STATE(10791), 1, + STATE(10664), 1, sym_argument_list, - [362252] = 3, + [363486] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(5010), 1, + STATE(5083), 1, sym_compound_statement, - [362262] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16925), 2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [362270] = 3, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(16927), 1, - aux_sym_preproc_include_token2, - ACTIONS(16929), 1, - sym_preproc_arg, - [362280] = 3, + [363496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9027), 1, + ACTIONS(7395), 1, anon_sym_LBRACE, - STATE(3726), 1, - sym_field_declaration_list, - [362290] = 3, + STATE(474), 1, + sym_declaration_list, + [363506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9027), 1, + ACTIONS(15964), 1, anon_sym_LBRACE, - STATE(3822), 1, - sym_field_declaration_list, - [362300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15488), 1, - anon_sym_COLON_COLON, - ACTIONS(16931), 1, - anon_sym_SEMI, - [362310] = 3, + STATE(2976), 1, + sym_requirement_seq, + [363516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16897), 1, - anon_sym_LT, - STATE(2405), 1, - sym_template_argument_list, - [362320] = 3, + ACTIONS(17351), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [363524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6834), 1, + ACTIONS(1113), 1, anon_sym_LBRACE, - STATE(2055), 1, - sym_field_declaration_list, - [362330] = 2, + STATE(585), 1, + sym_compound_statement, + [363534] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12175), 2, - anon_sym_COMMA, + ACTIONS(16993), 2, anon_sym_SEMI, - [362338] = 3, + anon_sym_LBRACE, + [363542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12116), 1, - anon_sym_LT, - STATE(4211), 1, - sym_template_argument_list, - [362348] = 3, + ACTIONS(7361), 1, + anon_sym_LBRACE, + STATE(673), 1, + sym_declaration_list, + [363552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16897), 1, - anon_sym_LT, - STATE(5573), 1, - sym_template_argument_list, - [362358] = 3, + ACTIONS(17295), 1, + anon_sym_COMMA, + ACTIONS(17353), 1, + anon_sym_RBRACE, + [363562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13499), 1, + ACTIONS(13853), 1, anon_sym_LBRACE, - STATE(5022), 1, + STATE(3004), 1, sym_compound_statement, - [362368] = 3, + [363572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - STATE(10250), 1, + STATE(10237), 1, sym_parameter_list, - [362378] = 3, + [363582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10271), 1, - anon_sym_LBRACE, - STATE(3229), 1, - sym_compound_statement, - [362388] = 3, + ACTIONS(12551), 1, + anon_sym_LT, + STATE(4054), 1, + sym_template_argument_list, + [363592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17355), 1, + anon_sym_LT, + STATE(2721), 1, + sym_template_argument_list, + [363602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17295), 1, + anon_sym_COMMA, + ACTIONS(17357), 1, + anon_sym_RBRACE, + [363612] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(9786), 1, + STATE(10003), 1, sym_compound_statement, - [362398] = 3, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(16933), 1, - aux_sym_preproc_include_token2, - ACTIONS(16935), 1, - sym_preproc_arg, - [362408] = 3, + [363622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16871), 1, - anon_sym_COMMA, - ACTIONS(16937), 1, + ACTIONS(14883), 1, anon_sym_RBRACE, - [362418] = 2, + ACTIONS(17295), 1, + anon_sym_COMMA, + [363632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16321), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [362426] = 2, + ACTIONS(17295), 1, + anon_sym_COMMA, + ACTIONS(17359), 1, + anon_sym_RBRACE, + [363642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16165), 2, - anon_sym_SEMI, + ACTIONS(9965), 1, anon_sym_LBRACE, - [362434] = 3, + STATE(4351), 1, + sym_field_declaration_list, + [363652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, + ACTIONS(7227), 1, anon_sym_COLON_COLON, - ACTIONS(14819), 1, + ACTIONS(16232), 1, anon_sym_SEMI, - [362444] = 3, + [363662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8007), 1, + ACTIONS(8297), 1, anon_sym_LBRACE, - STATE(2697), 1, + STATE(2760), 1, sym_field_declaration_list, - [362454] = 2, + [363672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16939), 2, - anon_sym_COMMA, - anon_sym_GT2, - [362462] = 3, + ACTIONS(17307), 1, + anon_sym_LT, + STATE(3709), 1, + sym_template_argument_list, + [363682] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(9830), 1, + STATE(10047), 1, sym_compound_statement, - [362472] = 3, + [363692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 1, + ACTIONS(8158), 1, anon_sym_LBRACE, - STATE(718), 1, - sym_compound_statement, - [362482] = 3, + STATE(2697), 1, + sym_field_declaration_list, + [363702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13509), 1, + ACTIONS(8158), 1, anon_sym_LBRACE, - STATE(8252), 1, - sym_compound_statement, - [362492] = 3, + STATE(2699), 1, + sym_field_declaration_list, + [363712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, + ACTIONS(12755), 1, anon_sym_LPAREN2, - STATE(11338), 1, + STATE(10996), 1, sym_argument_list, - [362502] = 2, + [363722] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16941), 2, + ACTIONS(17361), 2, anon_sym_COMMA, - anon_sym_GT2, - [362510] = 3, + anon_sym_RPAREN, + [363730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14855), 1, + anon_sym_RBRACE, + ACTIONS(17295), 1, + anon_sym_COMMA, + [363740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(15133), 1, + anon_sym_SEMI, + [363750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, + ACTIONS(13795), 1, anon_sym_LPAREN2, - STATE(10565), 1, - sym_argument_list, - [362520] = 3, + STATE(10408), 1, + sym_parameter_list, + [363760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10215), 1, + ACTIONS(9246), 1, anon_sym_LBRACE, - STATE(3038), 1, - sym_compound_statement, - [362530] = 2, + STATE(4389), 1, + sym_field_declaration_list, + [363770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16943), 2, - anon_sym_COMMA, - anon_sym_GT2, - [362538] = 3, + ACTIONS(9246), 1, + anon_sym_LBRACE, + STATE(4390), 1, + sym_field_declaration_list, + [363780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - STATE(10150), 1, - sym_parameter_list, - [362548] = 3, + ACTIONS(17295), 1, + anon_sym_COMMA, + ACTIONS(17363), 1, + anon_sym_RBRACE, + [363790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13501), 1, + ACTIONS(12978), 1, anon_sym_LBRACE, - STATE(4977), 1, - sym_compound_statement, - [362558] = 3, + STATE(7581), 1, + sym_field_declaration_list, + [363800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13527), 1, + ACTIONS(2093), 1, anon_sym_LBRACE, - STATE(3499), 1, + STATE(1200), 1, sym_compound_statement, - [362568] = 3, - ACTIONS(13686), 1, + [363810] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(16945), 1, - aux_sym_preproc_include_token2, - ACTIONS(16947), 1, - sym_preproc_arg, - [362578] = 3, + ACTIONS(12755), 1, + anon_sym_LPAREN2, + STATE(11281), 1, + sym_argument_list, + [363820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(547), 1, + STATE(9776), 1, sym_compound_statement, - [362588] = 3, + [363830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, + ACTIONS(11427), 1, anon_sym_LBRACE, - STATE(445), 1, - sym_compound_statement, - [362598] = 3, + STATE(5945), 1, + sym_field_declaration_list, + [363840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10215), 1, + ACTIONS(2093), 1, anon_sym_LBRACE, - STATE(3319), 1, + STATE(1257), 1, sym_compound_statement, - [362608] = 3, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(16949), 1, - aux_sym_preproc_include_token2, - ACTIONS(16951), 1, - sym_preproc_arg, - [362618] = 3, + [363850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, - anon_sym_LPAREN2, - STATE(10978), 1, - sym_argument_list, - [362628] = 3, + ACTIONS(13268), 1, + anon_sym_LBRACE, + STATE(5655), 1, + sym_requirement_seq, + [363860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16871), 1, - anon_sym_COMMA, - ACTIONS(16953), 1, - anon_sym_RBRACE, - [362638] = 3, + ACTIONS(13290), 1, + anon_sym_LBRACE, + STATE(4985), 1, + sym_requirement_seq, + [363870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9959), 1, + ACTIONS(12277), 1, anon_sym_LT, - STATE(3601), 1, + STATE(2648), 1, sym_template_argument_list, - [362648] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16955), 2, - anon_sym_COMMA, - anon_sym_GT2, - [362656] = 3, + [363880] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(4977), 1, + STATE(9591), 1, sym_compound_statement, - [362666] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16957), 1, - anon_sym_LT, - STATE(3698), 1, - sym_template_argument_list, - [362676] = 3, + [363890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8193), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(2947), 1, - sym_field_declaration_list, - [362686] = 3, + STATE(10119), 1, + sym_compound_statement, + [363900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, + ACTIONS(12755), 1, anon_sym_LPAREN2, - STATE(10575), 1, + STATE(11679), 1, sym_argument_list, - [362696] = 3, + [363910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, + ACTIONS(16576), 1, anon_sym_LPAREN2, - STATE(11361), 1, - sym_argument_list, - [362706] = 3, + STATE(212), 1, + sym_condition_clause, + [363920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10005), 1, + anon_sym_LT, + STATE(4318), 1, + sym_template_argument_list, + [363930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16151), 1, + ACTIONS(12755), 1, anon_sym_LPAREN2, - STATE(167), 1, - sym_condition_clause, - [362716] = 3, + STATE(11368), 1, + sym_argument_list, + [363940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(13855), 1, anon_sym_LBRACE, - STATE(571), 1, + STATE(6685), 1, sym_compound_statement, - [362726] = 3, + [363950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7866), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(2708), 1, - sym_field_declaration_list, - [362736] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16959), 1, - anon_sym_LT, - STATE(5429), 1, - sym_template_argument_list, - [362746] = 3, + STATE(926), 1, + sym_compound_statement, + [363960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, + ACTIONS(7227), 1, anon_sym_COLON_COLON, - ACTIONS(14813), 1, + ACTIONS(15894), 1, anon_sym_SEMI, - [362756] = 3, + [363970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(13853), 1, anon_sym_LBRACE, - STATE(9469), 1, + STATE(2960), 1, sym_compound_statement, - [362766] = 3, + [363980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, + ACTIONS(12755), 1, anon_sym_LPAREN2, - STATE(11034), 1, + STATE(11509), 1, sym_argument_list, - [362776] = 3, + [363990] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16576), 1, + anon_sym_LPAREN2, + STATE(211), 1, + sym_condition_clause, + [364000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7819), 1, + ACTIONS(1113), 1, anon_sym_LBRACE, - STATE(2624), 1, - sym_field_declaration_list, - [362786] = 3, + STATE(623), 1, + sym_compound_statement, + [364010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(15735), 1, - anon_sym_SEMI, - [362796] = 3, + ACTIONS(12755), 1, + anon_sym_LPAREN2, + STATE(10862), 1, + sym_argument_list, + [364020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7819), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(2625), 1, - sym_field_declaration_list, - [362806] = 3, + STATE(5181), 1, + sym_compound_statement, + [364030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, + ACTIONS(12755), 1, anon_sym_LPAREN2, - STATE(10854), 1, + STATE(11164), 1, sym_argument_list, - [362816] = 3, + [364040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10232), 1, + ACTIONS(13873), 1, anon_sym_LBRACE, - STATE(2609), 1, + STATE(3662), 1, sym_compound_statement, - [362826] = 3, + [364050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13483), 1, + ACTIONS(3098), 1, anon_sym_LBRACE, - STATE(5475), 1, - sym_compound_statement, - [362836] = 3, + STATE(6093), 1, + sym_initializer_list, + [364060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, + ACTIONS(12755), 1, anon_sym_LPAREN2, - STATE(10584), 1, + STATE(11405), 1, sym_argument_list, - [362846] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12904), 1, - anon_sym_LBRACE, - STATE(5084), 1, - sym_requirement_seq, - [362856] = 3, + [364070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13491), 1, - anon_sym_LBRACE, - STATE(6461), 1, - sym_compound_statement, - [362866] = 2, + ACTIONS(12755), 1, + anon_sym_LPAREN2, + STATE(11720), 1, + sym_argument_list, + [364080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16961), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [362874] = 3, + ACTIONS(12755), 1, + anon_sym_LPAREN2, + STATE(10733), 1, + sym_argument_list, + [364090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, + ACTIONS(12755), 1, anon_sym_LPAREN2, - STATE(10828), 1, + STATE(10842), 1, sym_argument_list, - [362884] = 2, + [364100] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16963), 2, + ACTIONS(17365), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [362892] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15540), 1, - sym_identifier, - STATE(9149), 1, - sym_module_name, - [362902] = 3, + anon_sym_RBRACK_RBRACK, + [364108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, + ACTIONS(12755), 1, anon_sym_LPAREN2, - STATE(11033), 1, + STATE(10940), 1, sym_argument_list, - [362912] = 3, + [364118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10232), 1, + ACTIONS(13875), 1, anon_sym_LBRACE, - STATE(2763), 1, + STATE(8059), 1, sym_compound_statement, - [362922] = 3, + [364128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, + ACTIONS(12755), 1, anon_sym_LPAREN2, - STATE(11349), 1, + STATE(11054), 1, sym_argument_list, - [362932] = 3, + [364138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, - anon_sym_LPAREN2, - STATE(10530), 1, - sym_argument_list, - [362942] = 3, + ACTIONS(960), 1, + anon_sym_LBRACE, + STATE(561), 1, + sym_compound_statement, + [364148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, - anon_sym_LPAREN2, - STATE(10599), 1, - sym_argument_list, - [362952] = 3, + ACTIONS(16304), 1, + anon_sym_RBRACK, + ACTIONS(17367), 1, + anon_sym_COMMA, + [364158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16151), 1, + ACTIONS(16576), 1, anon_sym_LPAREN2, - STATE(159), 1, + STATE(10619), 1, sym_condition_clause, - [362962] = 3, + [364168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, - anon_sym_LPAREN2, - STATE(10705), 1, - sym_argument_list, - [362972] = 2, + ACTIONS(10005), 1, + anon_sym_LT, + STATE(3735), 1, + sym_template_argument_list, + [364178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16965), 2, + ACTIONS(10069), 1, + anon_sym_LBRACE, + STATE(4718), 1, + sym_field_declaration_list, + [364188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17295), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [362980] = 3, + ACTIONS(17369), 1, + anon_sym_RBRACE, + [364198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, - anon_sym_LPAREN2, - STATE(10764), 1, - sym_argument_list, - [362990] = 3, + ACTIONS(9246), 1, + anon_sym_LBRACE, + STATE(4392), 1, + sym_field_declaration_list, + [364208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, + ACTIONS(15906), 1, anon_sym_COLON_COLON, - ACTIONS(15608), 1, + ACTIONS(17371), 1, anon_sym_SEMI, - [363000] = 3, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(16967), 1, - aux_sym_preproc_include_token2, - ACTIONS(16969), 1, - sym_preproc_arg, - [363010] = 3, + [364218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2036), 1, - anon_sym_LBRACE, - STATE(3811), 1, - sym_initializer_list, - [363020] = 3, + ACTIONS(16576), 1, + anon_sym_LPAREN2, + STATE(218), 1, + sym_condition_clause, + [364228] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(508), 1, + STATE(9460), 1, sym_compound_statement, - [363030] = 3, + [364238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13505), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - STATE(5111), 1, + STATE(466), 1, sym_compound_statement, - [363040] = 3, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(16971), 1, - aux_sym_preproc_include_token2, - ACTIONS(16973), 1, - sym_preproc_arg, - [363050] = 3, + [364248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16151), 1, - anon_sym_LPAREN2, - STATE(161), 1, - sym_condition_clause, - [363060] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(586), 1, + sym_compound_statement, + [364258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8749), 1, + ACTIONS(17373), 1, anon_sym_LT, - STATE(3582), 1, + STATE(2938), 1, sym_template_argument_list, - [363070] = 3, + [364268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7015), 1, + ACTIONS(10572), 1, anon_sym_LBRACE, - STATE(452), 1, - sym_declaration_list, - [363080] = 3, + STATE(3118), 1, + sym_compound_statement, + [364278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16959), 1, + ACTIONS(16642), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [364286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10320), 1, anon_sym_LT, - STATE(2612), 1, + STATE(3735), 1, sym_template_argument_list, - [363090] = 3, + [364296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13509), 1, - anon_sym_LBRACE, - STATE(8319), 1, - sym_compound_statement, - [363100] = 3, + ACTIONS(12755), 1, + anon_sym_LPAREN2, + STATE(11271), 1, + sym_argument_list, + [364306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(9354), 1, - sym_compound_statement, - [363110] = 2, + ACTIONS(17375), 1, + anon_sym_LT, + STATE(3805), 1, + sym_template_argument_list, + [364316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12337), 2, + ACTIONS(17377), 2, anon_sym_COMMA, anon_sym_RPAREN, - [363118] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16871), 1, - anon_sym_COMMA, - ACTIONS(16975), 1, - anon_sym_RBRACE, - [363128] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(15427), 1, - anon_sym_SEMI, - [363138] = 3, + [364324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13499), 1, + ACTIONS(960), 1, anon_sym_LBRACE, - STATE(5072), 1, + STATE(841), 1, sym_compound_statement, - [363148] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12383), 1, - anon_sym_LPAREN2, - STATE(10800), 1, - sym_argument_list, - [363158] = 3, + [364334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 1, + ACTIONS(13853), 1, anon_sym_LBRACE, - STATE(541), 1, + STATE(3002), 1, sym_compound_statement, - [363168] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(15680), 1, - anon_sym_SEMI, - [363178] = 3, + [364344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15488), 1, - anon_sym_COLON_COLON, - ACTIONS(16977), 1, - anon_sym_SEMI, - [363188] = 3, + ACTIONS(17355), 1, + anon_sym_LT, + STATE(5732), 1, + sym_template_argument_list, + [364354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11202), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(5862), 1, - sym_field_declaration_list, - [363198] = 3, + STATE(9860), 1, + sym_compound_statement, + [364364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(15616), 1, + ACTIONS(17105), 2, + anon_sym_COMMA, anon_sym_SEMI, - [363208] = 3, + [364372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11687), 1, + ACTIONS(17289), 1, anon_sym_LT, - STATE(6613), 1, + STATE(2613), 1, sym_template_argument_list, - [363218] = 3, + [364382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16879), 1, - anon_sym_LPAREN2, - STATE(10307), 1, - sym_parenthesized_expression, - [363228] = 3, + ACTIONS(1113), 1, + anon_sym_LBRACE, + STATE(718), 1, + sym_compound_statement, + [364392] = 3, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(17379), 1, + aux_sym_preproc_include_token2, + ACTIONS(17381), 1, + sym_preproc_arg, + [364402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16887), 1, - anon_sym_LT, - STATE(3698), 1, - sym_template_argument_list, - [363238] = 3, + ACTIONS(4922), 1, + anon_sym_LBRACE, + STATE(5969), 1, + sym_initializer_list, + [364412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(13859), 1, anon_sym_LBRACE, - STATE(604), 1, + STATE(4929), 1, sym_compound_statement, - [363248] = 3, + [364422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - STATE(5932), 1, - sym_initializer_list, - [363258] = 3, + STATE(310), 1, + sym_compound_statement, + [364432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6983), 1, - anon_sym_LBRACE, - STATE(779), 1, - sym_declaration_list, - [363268] = 3, + ACTIONS(15906), 1, + anon_sym_COLON_COLON, + ACTIONS(17383), 1, + anon_sym_SEMI, + [364442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(16267), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [364450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13839), 1, anon_sym_LBRACE, - STATE(9625), 1, + STATE(5181), 1, sym_compound_statement, - [363278] = 3, + [364460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7369), 1, + anon_sym_LBRACE, + STATE(871), 1, + sym_declaration_list, + [364470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9658), 1, + ACTIONS(11427), 1, anon_sym_LBRACE, - STATE(4570), 1, + STATE(5938), 1, sym_field_declaration_list, - [363288] = 3, + [364480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16879), 1, - anon_sym_LPAREN2, - STATE(11123), 1, - sym_parenthesized_expression, - [363298] = 3, + ACTIONS(13871), 1, + anon_sym_LBRACE, + STATE(6466), 1, + sym_compound_statement, + [364490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, + ACTIONS(10603), 1, anon_sym_LBRACE, - STATE(354), 1, + STATE(3390), 1, sym_compound_statement, - [363308] = 3, + [364500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14471), 1, - anon_sym_RBRACE, - ACTIONS(16871), 1, + ACTIONS(17385), 2, anon_sym_COMMA, - [363318] = 3, + anon_sym_GT2, + [364508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15488), 1, - anon_sym_COLON_COLON, - ACTIONS(16979), 1, - anon_sym_SEMI, - [363328] = 3, + ACTIONS(16576), 1, + anon_sym_LPAREN2, + STATE(239), 1, + sym_condition_clause, + [364518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7819), 1, - anon_sym_LBRACE, - STATE(2603), 1, - sym_field_declaration_list, - [363338] = 3, + ACTIONS(17375), 1, + anon_sym_LT, + STATE(5840), 1, + sym_template_argument_list, + [364528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7866), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - STATE(2674), 1, - sym_field_declaration_list, - [363348] = 3, + STATE(351), 1, + sym_compound_statement, + [364538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7866), 1, + ACTIONS(11427), 1, anon_sym_LBRACE, - STATE(2675), 1, + STATE(5999), 1, sym_field_declaration_list, - [363358] = 3, + [364548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8007), 1, - anon_sym_LBRACE, - STATE(2668), 1, - sym_field_declaration_list, - [363368] = 3, + ACTIONS(15570), 1, + anon_sym_EQ, + STATE(10293), 1, + sym_annotation, + [364558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(750), 1, - sym_compound_statement, - [363378] = 3, + ACTIONS(12277), 1, + anon_sym_LT, + STATE(3735), 1, + sym_template_argument_list, + [364568] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16576), 1, + anon_sym_LPAREN2, + STATE(189), 1, + sym_condition_clause, + [364578] = 3, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(17387), 1, + aux_sym_preproc_include_token2, + ACTIONS(17389), 1, + sym_preproc_arg, + [364588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(17391), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [364596] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11427), 1, anon_sym_LBRACE, - STATE(640), 1, - sym_compound_statement, - [363388] = 3, + STATE(6000), 1, + sym_field_declaration_list, + [364606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, + ACTIONS(13849), 1, anon_sym_LBRACE, - STATE(370), 1, + STATE(5557), 1, sym_compound_statement, - [363398] = 3, + [364616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8007), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - STATE(2684), 1, + STATE(4736), 1, sym_field_declaration_list, - [363408] = 3, + [364626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8007), 1, + ACTIONS(8297), 1, anon_sym_LBRACE, - STATE(2685), 1, + STATE(2733), 1, sym_field_declaration_list, - [363418] = 2, + [364636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16981), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [363426] = 3, + ACTIONS(309), 1, + anon_sym_LBRACE, + STATE(372), 1, + sym_compound_statement, + [364646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17289), 1, + anon_sym_LT, + STATE(5314), 1, + sym_template_argument_list, + [364656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, + ACTIONS(7361), 1, anon_sym_LBRACE, - STATE(5524), 1, - sym_initializer_list, - [363436] = 3, + STATE(693), 1, + sym_declaration_list, + [364666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13004), 1, + ACTIONS(960), 1, anon_sym_LBRACE, - STATE(4676), 1, - sym_requirement_seq, - [363446] = 3, + STATE(771), 1, + sym_compound_statement, + [364676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16871), 1, + ACTIONS(17307), 1, + anon_sym_LT, + STATE(2174), 1, + sym_template_argument_list, + [364686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17295), 1, anon_sym_COMMA, - ACTIONS(16983), 1, + ACTIONS(17393), 1, anon_sym_RBRACE, - [363456] = 3, + [364696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9596), 1, + ACTIONS(8269), 1, anon_sym_LBRACE, - STATE(4285), 1, + STATE(2820), 1, sym_field_declaration_list, - [363466] = 2, + [364706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16985), 2, - anon_sym_COMMA, - anon_sym_GT2, - [363474] = 3, + ACTIONS(13859), 1, + anon_sym_LBRACE, + STATE(4937), 1, + sym_compound_statement, + [364716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9658), 1, + ACTIONS(8158), 1, anon_sym_LBRACE, - STATE(4613), 1, + STATE(2672), 1, sym_field_declaration_list, - [363484] = 3, + [364726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16151), 1, - anon_sym_LPAREN2, - STATE(10366), 1, - sym_condition_clause, - [363494] = 3, + ACTIONS(12547), 1, + anon_sym_RPAREN, + ACTIONS(12549), 1, + anon_sym_SEMI, + [364736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9672), 1, - anon_sym_LT, - STATE(3605), 1, - sym_template_argument_list, - [363504] = 3, + ACTIONS(960), 1, + anon_sym_LBRACE, + STATE(802), 1, + sym_compound_statement, + [364746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16151), 1, - anon_sym_LPAREN2, - STATE(212), 1, - sym_condition_clause, - [363514] = 2, + ACTIONS(13298), 1, + anon_sym_LBRACE, + STATE(5156), 1, + sym_requirement_seq, + [364756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16399), 2, + ACTIONS(16795), 2, anon_sym_COMMA, - anon_sym_GT2, - [363522] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13527), 1, anon_sym_LBRACE, - STATE(3547), 1, - sym_compound_statement, - [363532] = 3, + [364764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(640), 1, - sym_compound_statement, - [363542] = 3, + ACTIONS(15829), 1, + sym_identifier, + STATE(9368), 1, + sym_module_name, + [364774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(13869), 1, anon_sym_LBRACE, - STATE(9823), 1, + STATE(5162), 1, sym_compound_statement, - [363552] = 3, + [364784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(15506), 1, - anon_sym_SEMI, - [363562] = 2, + ACTIONS(12671), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [364792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16987), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [363570] = 3, + ACTIONS(9099), 1, + anon_sym_LT, + STATE(3663), 1, + sym_template_argument_list, + [364802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - STATE(565), 1, - sym_compound_statement, - [363580] = 3, + STATE(7713), 1, + sym_field_declaration_list, + [364812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17347), 1, + anon_sym_LT, + STATE(2681), 1, + sym_template_argument_list, + [364822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13505), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - STATE(5131), 1, - sym_compound_statement, - [363590] = 3, + STATE(7717), 1, + sym_field_declaration_list, + [364832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - STATE(788), 1, - sym_compound_statement, - [363600] = 3, + STATE(7718), 1, + sym_field_declaration_list, + [364842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - STATE(509), 1, - sym_compound_statement, - [363610] = 2, + STATE(7720), 1, + sym_field_declaration_list, + [364852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12186), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [363618] = 3, + ACTIONS(2968), 1, + anon_sym_LBRACE, + STATE(5876), 1, + sym_initializer_list, + [364862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16989), 1, - sym_identifier, - ACTIONS(16991), 1, - anon_sym_LPAREN2, - [363628] = 3, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(15160), 1, + anon_sym_SEMI, + [364872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14499), 1, - anon_sym_RBRACE, - ACTIONS(16871), 1, - anon_sym_COMMA, - [363638] = 3, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(16126), 1, + anon_sym_SEMI, + [364882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12383), 1, + ACTIONS(12755), 1, anon_sym_LPAREN2, - STATE(10655), 1, + STATE(10955), 1, sym_argument_list, - [363648] = 3, + [364892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(9308), 1, - sym_compound_statement, - [363658] = 3, + ACTIONS(17395), 1, + sym_identifier, + ACTIONS(17397), 1, + anon_sym_LPAREN2, + [364902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16151), 1, - anon_sym_LPAREN2, - STATE(189), 1, - sym_condition_clause, - [363668] = 3, + ACTIONS(13309), 1, + anon_sym_LBRACE, + STATE(5223), 1, + sym_requirement_seq, + [364912] = 3, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(17399), 1, + aux_sym_preproc_include_token2, + ACTIONS(17401), 1, + sym_preproc_arg, + [364922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(14825), 1, + ACTIONS(17403), 2, + anon_sym_COMMA, anon_sym_SEMI, - [363678] = 2, + [364930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16993), 2, - anon_sym_COMMA, + ACTIONS(1113), 1, anon_sym_LBRACE, - [363686] = 3, - ACTIONS(3), 1, + STATE(549), 1, + sym_compound_statement, + [364940] = 3, + ACTIONS(14065), 1, sym_comment, - ACTIONS(16879), 1, - anon_sym_LPAREN2, - STATE(11507), 1, - sym_parenthesized_expression, - [363696] = 2, + ACTIONS(17405), 1, + aux_sym_preproc_include_token2, + ACTIONS(17407), 1, + sym_preproc_arg, + [364950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16414), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [363704] = 3, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(15202), 1, + anon_sym_SEMI, + [364960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16897), 1, + ACTIONS(17289), 1, anon_sym_LT, - STATE(5379), 1, + STATE(2494), 1, sym_template_argument_list, - [363714] = 2, + [364970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12191), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [363722] = 3, + ACTIONS(15906), 1, + anon_sym_COLON_COLON, + ACTIONS(17409), 1, + anon_sym_SEMI, + [364980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - STATE(10226), 1, - sym_parameter_list, - [363732] = 2, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(9569), 1, + sym_compound_statement, + [364990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16749), 2, + ACTIONS(17411), 2, anon_sym_COMMA, - anon_sym_LBRACE, - [363740] = 3, + anon_sym_GT2, + [364998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16151), 1, - anon_sym_LPAREN2, - STATE(158), 1, - sym_condition_clause, - [363750] = 3, + ACTIONS(14913), 1, + anon_sym_RBRACE, + ACTIONS(17295), 1, + anon_sym_COMMA, + [365008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9027), 1, + ACTIONS(8269), 1, anon_sym_LBRACE, - STATE(7613), 1, + STATE(2834), 1, sym_field_declaration_list, - [363760] = 3, + [365018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9027), 1, + ACTIONS(8269), 1, anon_sym_LBRACE, - STATE(7589), 1, + STATE(2858), 1, sym_field_declaration_list, - [363770] = 3, + [365028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9027), 1, - anon_sym_LBRACE, - STATE(7599), 1, - sym_field_declaration_list, - [363780] = 3, + ACTIONS(12551), 1, + anon_sym_LT, + STATE(4313), 1, + sym_template_argument_list, + [365038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15540), 1, - sym_identifier, - STATE(10193), 1, - sym_module_name, - [363790] = 3, + ACTIONS(16576), 1, + anon_sym_LPAREN2, + STATE(10435), 1, + sym_condition_clause, + [365048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9027), 1, - anon_sym_LBRACE, - STATE(7612), 1, - sym_field_declaration_list, - [363800] = 3, + ACTIONS(10005), 1, + anon_sym_LT, + STATE(3709), 1, + sym_template_argument_list, + [365058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16871), 1, - anon_sym_COMMA, - ACTIONS(16995), 1, - anon_sym_RBRACE, - [363810] = 3, + ACTIONS(16576), 1, + anon_sym_LPAREN2, + STATE(202), 1, + sym_condition_clause, + [365068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6834), 1, - anon_sym_LBRACE, - STATE(2047), 1, - sym_field_declaration_list, - [363820] = 3, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(15188), 1, + anon_sym_SEMI, + [365078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7866), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(2743), 1, - sym_field_declaration_list, - [363830] = 3, + STATE(10142), 1, + sym_compound_statement, + [365088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13495), 1, + ACTIONS(13859), 1, anon_sym_LBRACE, - STATE(4760), 1, + STATE(4833), 1, sym_compound_statement, - [363840] = 3, + [365098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16576), 1, + anon_sym_LPAREN2, + STATE(226), 1, + sym_condition_clause, + [365108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6834), 1, + ACTIONS(8503), 1, anon_sym_LBRACE, - STATE(2048), 1, + STATE(3036), 1, sym_field_declaration_list, - [363850] = 3, + [365118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, + ACTIONS(13873), 1, anon_sym_LBRACE, - STATE(6348), 1, + STATE(3680), 1, sym_compound_statement, - [363860] = 3, + [365128] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, - anon_sym_LBRACE, - STATE(5650), 1, - sym_initializer_list, - [363870] = 3, + ACTIONS(17413), 2, + anon_sym_COMMA, + anon_sym_GT2, + [365136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16879), 1, - anon_sym_LPAREN2, - STATE(10988), 1, - sym_parenthesized_expression, - [363880] = 3, + ACTIONS(15829), 1, + sym_identifier, + STATE(9313), 1, + sym_module_name, + [365146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9658), 1, + ACTIONS(960), 1, anon_sym_LBRACE, - STATE(4614), 1, - sym_field_declaration_list, - [363890] = 3, - ACTIONS(13686), 1, + STATE(774), 1, + sym_compound_statement, + [365156] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(16997), 1, - aux_sym_preproc_include_token2, - ACTIONS(16999), 1, - sym_preproc_arg, - [363900] = 3, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(16014), 1, + anon_sym_SEMI, + [365166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - STATE(10299), 1, - sym_parameter_list, - [363910] = 3, + ACTIONS(17355), 1, + anon_sym_LT, + STATE(5542), 1, + sym_template_argument_list, + [365176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11202), 1, - anon_sym_LBRACE, - STATE(5828), 1, - sym_field_declaration_list, - [363920] = 3, + ACTIONS(12755), 1, + anon_sym_LPAREN2, + STATE(11370), 1, + sym_argument_list, + [365186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(9977), 1, - sym_compound_statement, - [363930] = 3, + ACTIONS(17415), 2, + anon_sym_COMMA, + anon_sym_GT2, + [365194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16151), 1, - anon_sym_LPAREN2, - STATE(170), 1, - sym_condition_clause, - [363940] = 3, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(15194), 1, + anon_sym_SEMI, + [365204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13505), 1, + ACTIONS(13869), 1, anon_sym_LBRACE, - STATE(5133), 1, + STATE(5174), 1, sym_compound_statement, - [363950] = 3, + [365214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, + ACTIONS(13871), 1, anon_sym_LBRACE, - STATE(384), 1, + STATE(6468), 1, sym_compound_statement, - [363960] = 2, + [365224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11354), 2, + ACTIONS(17417), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [363968] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7023), 1, - anon_sym_LBRACE, - STATE(740), 1, - sym_declaration_list, - [363978] = 3, + anon_sym_GT2, + [365232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, - anon_sym_RBRACE, - ACTIONS(16871), 1, - anon_sym_COMMA, - [363988] = 3, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(16072), 1, + anon_sym_SEMI, + [365242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13495), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(4839), 1, + STATE(9517), 1, sym_compound_statement, - [363998] = 3, + [365252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14519), 1, - anon_sym_RBRACE, - ACTIONS(16871), 1, - anon_sym_COMMA, - [364008] = 3, + ACTIONS(16576), 1, + anon_sym_LPAREN2, + STATE(236), 1, + sym_condition_clause, + [365262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16879), 1, - anon_sym_LPAREN2, - STATE(10330), 1, - sym_parenthesized_expression, - [364018] = 2, + ACTIONS(7395), 1, + anon_sym_LBRACE, + STATE(390), 1, + sym_declaration_list, + [365272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15829), 1, + sym_identifier, + STATE(9334), 1, + sym_module_name, + [365282] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12367), 2, + ACTIONS(17419), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [364026] = 2, + anon_sym_GT2, + [365290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16432), 2, + ACTIONS(17421), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [364034] = 3, + anon_sym_RBRACK_RBRACK, + [365298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(4910), 1, anon_sym_LBRACE, - STATE(9549), 1, - sym_compound_statement, - [364044] = 3, + STATE(7380), 1, + sym_initializer_list, + [365308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7021), 1, + ACTIONS(13279), 1, anon_sym_LBRACE, - STATE(775), 1, - sym_declaration_list, - [364054] = 3, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(17001), 1, - aux_sym_preproc_include_token2, - ACTIONS(17003), 1, - sym_preproc_arg, - [364064] = 2, + STATE(5176), 1, + sym_requirement_seq, + [365318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16427), 2, + ACTIONS(17295), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [364072] = 3, - ACTIONS(13686), 1, + ACTIONS(17423), 1, + anon_sym_RBRACE, + [365328] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(17005), 1, - aux_sym_preproc_include_token2, - ACTIONS(17007), 1, - sym_preproc_arg, - [364082] = 3, + ACTIONS(8269), 1, + anon_sym_LBRACE, + STATE(2826), 1, + sym_field_declaration_list, + [365338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - STATE(394), 1, - sym_compound_statement, - [364092] = 3, + STATE(3935), 1, + sym_field_declaration_list, + [365348] = 3, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(17425), 1, + aux_sym_preproc_include_token2, + ACTIONS(17427), 1, + sym_preproc_arg, + [365358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(13849), 1, anon_sym_LBRACE, - STATE(842), 1, + STATE(5549), 1, sym_compound_statement, - [364102] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2608), 1, - anon_sym_LBRACE, - STATE(5664), 1, - sym_initializer_list, - [364112] = 3, + [365368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16151), 1, + ACTIONS(17429), 1, anon_sym_LPAREN2, - STATE(203), 1, - sym_condition_clause, - [364122] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(14833), 1, - anon_sym_SEMI, - [364132] = 3, + ACTIONS(17431), 1, + sym_raw_string_delimiter, + [365378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16919), 1, - anon_sym_LT, - STATE(5480), 1, - sym_template_argument_list, - [364142] = 2, + ACTIONS(1113), 1, + anon_sym_LBRACE, + STATE(731), 1, + sym_compound_statement, + [365388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9217), 2, + ACTIONS(14875), 1, + anon_sym_RBRACE, + ACTIONS(17295), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [364150] = 3, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(17009), 1, - aux_sym_preproc_include_token2, - ACTIONS(17011), 1, - sym_preproc_arg, - [364160] = 3, + [365398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16959), 1, - anon_sym_LT, - STATE(2491), 1, - sym_template_argument_list, - [364170] = 3, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(17013), 1, - aux_sym_preproc_include_token2, - ACTIONS(17015), 1, - sym_preproc_arg, - [364180] = 3, + ACTIONS(10572), 1, + anon_sym_LBRACE, + STATE(3478), 1, + sym_compound_statement, + [365408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 1, + ACTIONS(13877), 1, anon_sym_LBRACE, - STATE(6320), 1, + STATE(5184), 1, sym_compound_statement, - [364190] = 3, + [365418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16879), 1, + ACTIONS(17301), 1, anon_sym_LPAREN2, - STATE(10323), 1, + STATE(11148), 1, sym_parenthesized_expression, - [364200] = 3, + [365428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17017), 1, + ACTIONS(17433), 1, anon_sym_LPAREN2, - ACTIONS(17019), 1, + ACTIONS(17435), 1, sym_raw_string_delimiter, - [364210] = 3, + [365438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8909), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - STATE(4283), 1, + STATE(9327), 1, sym_field_declaration_list, - [364220] = 3, - ACTIONS(3), 1, + [365448] = 3, + ACTIONS(14065), 1, sym_comment, - ACTIONS(9658), 1, - anon_sym_LBRACE, - STATE(4531), 1, - sym_field_declaration_list, - [364230] = 3, + ACTIONS(17437), 1, + aux_sym_preproc_include_token2, + ACTIONS(17439), 1, + sym_preproc_arg, + [365458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12993), 1, - anon_sym_LBRACE, - STATE(6323), 1, - sym_requirement_seq, - [364240] = 3, + ACTIONS(10647), 1, + anon_sym_LT, + STATE(4318), 1, + sym_template_argument_list, + [365468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(13869), 1, anon_sym_LBRACE, - STATE(493), 1, + STATE(5180), 1, sym_compound_statement, - [364250] = 3, + [365478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9658), 1, - anon_sym_LBRACE, - STATE(9222), 1, - sym_field_declaration_list, - [364260] = 2, + ACTIONS(17301), 1, + anon_sym_LPAREN2, + STATE(11412), 1, + sym_parenthesized_expression, + [365488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16256), 2, - anon_sym_COMMA, + ACTIONS(7373), 1, anon_sym_LBRACE, - [364268] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11895), 1, - anon_sym_LT, - STATE(3601), 1, - sym_template_argument_list, - [364278] = 3, + STATE(836), 1, + sym_declaration_list, + [365498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(15562), 1, - anon_sym_SEMI, - [364288] = 2, + ACTIONS(13319), 1, + anon_sym_LBRACE, + STATE(3653), 1, + sym_requirement_seq, + [365508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17021), 2, + ACTIONS(17229), 2, anon_sym_COMMA, anon_sym_RBRACK, - [364296] = 3, + [365516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7015), 1, - anon_sym_LBRACE, - STATE(412), 1, - sym_declaration_list, - [364306] = 3, + ACTIONS(17373), 1, + anon_sym_LT, + STATE(3733), 1, + sym_template_argument_list, + [365526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, - anon_sym_LBRACE, - STATE(1123), 1, - sym_compound_statement, - [364316] = 3, + ACTIONS(17201), 2, + anon_sym_COMMA, + anon_sym_GT2, + [365534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11895), 1, - anon_sym_LT, - STATE(2848), 1, - sym_template_argument_list, - [364326] = 3, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + STATE(10424), 1, + sym_parameter_list, + [365544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12646), 1, + ACTIONS(7369), 1, anon_sym_LBRACE, - STATE(7453), 1, - sym_field_declaration_list, - [364336] = 3, + STATE(1003), 1, + sym_declaration_list, + [365554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(14801), 1, - anon_sym_SEMI, - [364346] = 3, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + STATE(10316), 1, + sym_parameter_list, + [365564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17023), 1, - sym_identifier, - ACTIONS(17025), 1, - anon_sym_RPAREN, - [364356] = 3, + ACTIONS(13839), 1, + anon_sym_LBRACE, + STATE(5083), 1, + sym_compound_statement, + [365574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - STATE(9226), 1, + STATE(9338), 1, sym_field_declaration_list, - [364366] = 3, + [365584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - STATE(9227), 1, + STATE(9339), 1, sym_field_declaration_list, - [364376] = 2, + [365594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14475), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [364384] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(9847), 1, + sym_compound_statement, + [365604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9658), 1, + ACTIONS(10069), 1, anon_sym_LBRACE, - STATE(9232), 1, + STATE(9342), 1, sym_field_declaration_list, - [364394] = 3, + [365614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13501), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(5010), 1, + STATE(774), 1, sym_compound_statement, - [364404] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15425), 1, - anon_sym_LBRACE, - STATE(7890), 1, - sym_requirement_seq, - [364414] = 3, + [365624] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12966), 1, - anon_sym_LBRACE, - STATE(3502), 1, - sym_requirement_seq, - [364424] = 3, + ACTIONS(17214), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [365632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11895), 1, + ACTIONS(17355), 1, anon_sym_LT, - STATE(2824), 1, + STATE(2594), 1, sym_template_argument_list, - [364434] = 3, + [365642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13507), 1, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(16070), 1, + anon_sym_SEMI, + [365652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(309), 1, anon_sym_LBRACE, - STATE(7893), 1, + STATE(383), 1, sym_compound_statement, - [364444] = 3, + [365662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16917), 1, - anon_sym_LT, - STATE(2525), 1, - sym_template_argument_list, - [364454] = 3, + ACTIONS(14877), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [365670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9672), 1, - anon_sym_LT, - STATE(1956), 1, - sym_template_argument_list, - [364464] = 3, + ACTIONS(17301), 1, + anon_sym_LPAREN2, + STATE(10571), 1, + sym_parenthesized_expression, + [365680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17027), 1, - sym_identifier, - ACTIONS(17029), 1, - anon_sym_LPAREN2, - [364474] = 3, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(15792), 1, + anon_sym_SEMI, + [365690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7021), 1, - anon_sym_LBRACE, - STATE(889), 1, - sym_declaration_list, - [364484] = 3, + ACTIONS(16576), 1, + anon_sym_LPAREN2, + STATE(224), 1, + sym_condition_clause, + [365700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15514), 1, + ACTIONS(16068), 1, anon_sym_LBRACE, - STATE(2903), 1, + STATE(8427), 1, sym_requirement_seq, - [364494] = 3, + [365710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(604), 1, - sym_compound_statement, - [364504] = 3, + ACTIONS(12528), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [365718] = 3, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(17441), 1, + aux_sym_preproc_include_token2, + ACTIONS(17443), 1, + sym_preproc_arg, + [365728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13501), 1, - anon_sym_LBRACE, - STATE(4940), 1, - sym_compound_statement, - [364514] = 3, + ACTIONS(15829), 1, + sym_identifier, + STATE(10246), 1, + sym_module_name, + [365738] = 3, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(17445), 1, + aux_sym_preproc_include_token2, + ACTIONS(17447), 1, + sym_preproc_arg, + [365748] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17242), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [365756] = 3, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(17449), 1, + aux_sym_preproc_include_token2, + ACTIONS(17451), 1, + sym_preproc_arg, + [365766] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17253), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [365774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14521), 1, + ACTIONS(14901), 1, anon_sym_RBRACE, - ACTIONS(16871), 1, + ACTIONS(17295), 1, anon_sym_COMMA, - [364524] = 3, + [365784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6983), 1, - anon_sym_LBRACE, - STATE(852), 1, - sym_declaration_list, - [364534] = 3, + ACTIONS(16914), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [365792] = 3, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(17453), 1, + aux_sym_preproc_include_token2, + ACTIONS(17455), 1, + sym_preproc_arg, + [365802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12646), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - STATE(7468), 1, - sym_field_declaration_list, - [364544] = 3, + STATE(439), 1, + sym_compound_statement, + [365812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12646), 1, + ACTIONS(8503), 1, anon_sym_LBRACE, - STATE(7473), 1, + STATE(3025), 1, sym_field_declaration_list, - [364554] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5594), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [364562] = 3, + [365822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16871), 1, - anon_sym_COMMA, - ACTIONS(17031), 1, - anon_sym_RBRACE, - [364572] = 3, + ACTIONS(8503), 1, + anon_sym_LBRACE, + STATE(3035), 1, + sym_field_declaration_list, + [365832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16871), 1, + ACTIONS(12533), 2, anon_sym_COMMA, - ACTIONS(17033), 1, anon_sym_RBRACE, - [364582] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16919), 1, - anon_sym_LT, - STATE(5715), 1, - sym_template_argument_list, - [364592] = 3, + [365840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 1, + ACTIONS(7395), 1, anon_sym_LBRACE, - STATE(569), 1, + STATE(450), 1, sym_declaration_list, - [364602] = 3, + [365850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13507), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(7899), 1, + STATE(564), 1, sym_compound_statement, - [364612] = 3, + [365860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8909), 1, + ACTIONS(9246), 1, anon_sym_LBRACE, - STATE(3739), 1, + STATE(3917), 1, sym_field_declaration_list, - [364622] = 3, + [365870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - ACTIONS(14779), 1, - anon_sym_SEMI, - [364632] = 3, + ACTIONS(9246), 1, + anon_sym_LBRACE, + STATE(3936), 1, + sym_field_declaration_list, + [365880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8909), 1, + ACTIONS(9246), 1, anon_sym_LBRACE, - STATE(3762), 1, + STATE(3942), 1, sym_field_declaration_list, - [364642] = 3, + [365890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8909), 1, + ACTIONS(9246), 1, anon_sym_LBRACE, - STATE(3834), 1, + STATE(3836), 1, sym_field_declaration_list, - [364652] = 3, + [365900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8909), 1, + ACTIONS(17272), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(3731), 1, - sym_field_declaration_list, - [364662] = 3, + [365908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17035), 1, + ACTIONS(17457), 1, anon_sym_LPAREN2, - ACTIONS(17037), 1, + ACTIONS(17459), 1, sym_raw_string_delimiter, - [364672] = 3, + [365918] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13503), 1, + ACTIONS(16444), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(2960), 1, - sym_compound_statement, - [364682] = 3, + [365926] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16871), 1, + ACTIONS(12681), 2, anon_sym_COMMA, - ACTIONS(17039), 1, anon_sym_RBRACE, - [364692] = 3, + [365934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12646), 1, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + ACTIONS(15182), 1, + anon_sym_SEMI, + [365944] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17461), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(7470), 1, - sym_field_declaration_list, - [364702] = 3, + [365952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17041), 1, + ACTIONS(17266), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [365960] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2952), 1, + anon_sym_LBRACE, + STATE(5538), 1, + sym_initializer_list, + [365970] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17463), 1, anon_sym_LPAREN2, - ACTIONS(17043), 1, + ACTIONS(17465), 1, sym_raw_string_delimiter, - [364712] = 2, + [365980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15960), 2, - anon_sym_COMMA, + ACTIONS(13885), 1, anon_sym_LBRACE, - [364720] = 2, + STATE(8426), 1, + sym_compound_statement, + [365990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16461), 2, + ACTIONS(17467), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [364728] = 3, + anon_sym_LBRACE, + [365998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16957), 1, - anon_sym_LT, - STATE(5733), 1, - sym_template_argument_list, - [364738] = 3, + ACTIONS(4676), 1, + anon_sym_LBRACE, + STATE(7298), 1, + sym_initializer_list, + [366008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12116), 1, + ACTIONS(17373), 1, anon_sym_LT, - STATE(3968), 1, + STATE(4130), 1, sym_template_argument_list, - [364748] = 3, + [366018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17045), 1, + ACTIONS(17469), 1, anon_sym_LPAREN2, - ACTIONS(17047), 1, + ACTIONS(17471), 1, sym_raw_string_delimiter, - [364758] = 3, + [366028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13507), 1, + ACTIONS(12978), 1, anon_sym_LBRACE, - STATE(7901), 1, - sym_compound_statement, - [364768] = 3, + STATE(7571), 1, + sym_field_declaration_list, + [366038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16919), 1, - anon_sym_LT, - STATE(2570), 1, - sym_template_argument_list, - [364778] = 2, + ACTIONS(14889), 1, + anon_sym_RBRACE, + ACTIONS(17295), 1, + anon_sym_COMMA, + [366048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17049), 2, + ACTIONS(12735), 2, anon_sym_COMMA, - anon_sym_GT2, - [364786] = 3, + anon_sym_RBRACK, + [366056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17051), 1, + ACTIONS(17473), 1, anon_sym_LPAREN2, - ACTIONS(17053), 1, + ACTIONS(17475), 1, sym_raw_string_delimiter, - [364796] = 3, + [366066] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14481), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [366074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13495), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(4756), 1, + STATE(5106), 1, sym_compound_statement, - [364806] = 3, + [366084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17055), 1, + ACTIONS(17477), 1, anon_sym_LPAREN2, - ACTIONS(17057), 1, + ACTIONS(17479), 1, + sym_raw_string_delimiter, + [366094] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17301), 1, + anon_sym_LPAREN2, + STATE(11039), 1, + sym_parenthesized_expression, + [366104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17481), 1, + anon_sym_LPAREN2, + ACTIONS(17483), 1, sym_raw_string_delimiter, - [364816] = 3, + [366114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 1, + ACTIONS(7369), 1, anon_sym_LBRACE, - STATE(415), 1, - sym_compound_statement, - [364826] = 3, + STATE(946), 1, + sym_declaration_list, + [366124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9027), 1, + ACTIONS(16228), 1, anon_sym_LBRACE, - STATE(3833), 1, - sym_field_declaration_list, - [364836] = 3, + STATE(8003), 1, + sym_requirement_seq, + [366134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17059), 1, + ACTIONS(17485), 1, anon_sym_LPAREN2, - ACTIONS(17061), 1, + ACTIONS(17487), 1, sym_raw_string_delimiter, - [364846] = 3, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(17063), 1, - aux_sym_preproc_include_token2, - ACTIONS(17065), 1, - sym_preproc_arg, - [364856] = 3, + [366144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17067), 1, + ACTIONS(17489), 1, anon_sym_LPAREN2, - ACTIONS(17069), 1, + ACTIONS(17491), 1, sym_raw_string_delimiter, - [364866] = 3, + [366154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17071), 1, + ACTIONS(17493), 1, anon_sym_LPAREN2, - ACTIONS(17073), 1, + ACTIONS(17495), 1, sym_raw_string_delimiter, - [364876] = 3, + [366164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17075), 1, + ACTIONS(17497), 1, anon_sym_LPAREN2, - ACTIONS(17077), 1, + ACTIONS(17499), 1, sym_raw_string_delimiter, - [364886] = 3, + [366174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17079), 1, + ACTIONS(17501), 1, anon_sym_LPAREN2, - ACTIONS(17081), 1, + ACTIONS(17503), 1, sym_raw_string_delimiter, - [364896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9596), 1, - anon_sym_LBRACE, - STATE(4263), 1, - sym_field_declaration_list, - [364906] = 3, + [366184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17083), 1, + ACTIONS(17505), 1, anon_sym_LPAREN2, - ACTIONS(17085), 1, + ACTIONS(17507), 1, sym_raw_string_delimiter, - [364916] = 3, + [366194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17087), 1, + ACTIONS(17509), 1, anon_sym_LPAREN2, - ACTIONS(17089), 1, + ACTIONS(17511), 1, sym_raw_string_delimiter, - [364926] = 3, + [366204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17091), 1, + ACTIONS(17513), 1, anon_sym_LPAREN2, - ACTIONS(17093), 1, + ACTIONS(17515), 1, sym_raw_string_delimiter, - [364936] = 3, + [366214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17095), 1, + ACTIONS(17517), 1, anon_sym_LPAREN2, - ACTIONS(17097), 1, + ACTIONS(17519), 1, sym_raw_string_delimiter, - [364946] = 3, + [366224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17099), 1, + ACTIONS(17521), 1, anon_sym_LPAREN2, - ACTIONS(17101), 1, + ACTIONS(17523), 1, sym_raw_string_delimiter, - [364956] = 3, + [366234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17103), 1, + ACTIONS(17525), 1, anon_sym_LPAREN2, - ACTIONS(17105), 1, + ACTIONS(17527), 1, sym_raw_string_delimiter, - [364966] = 3, + [366244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17107), 1, + ACTIONS(17529), 1, anon_sym_LPAREN2, - ACTIONS(17109), 1, + ACTIONS(17531), 1, sym_raw_string_delimiter, - [364976] = 3, + [366254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17111), 1, + ACTIONS(17533), 1, anon_sym_LPAREN2, - ACTIONS(17113), 1, + ACTIONS(17535), 1, sym_raw_string_delimiter, - [364986] = 3, + [366264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6834), 1, + ACTIONS(13875), 1, anon_sym_LBRACE, - STATE(2036), 1, - sym_field_declaration_list, - [364996] = 3, + STATE(8017), 1, + sym_compound_statement, + [366274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16151), 1, - anon_sym_LPAREN2, - STATE(10215), 1, - sym_condition_clause, - [365006] = 3, + ACTIONS(13873), 1, + anon_sym_LBRACE, + STATE(3672), 1, + sym_compound_statement, + [366284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11895), 1, + ACTIONS(17313), 1, anon_sym_LT, - STATE(2525), 1, + STATE(2648), 1, sym_template_argument_list, - [365016] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16151), 1, - anon_sym_LPAREN2, - STATE(201), 1, - sym_condition_clause, - [365026] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17115), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [365034] = 2, + [366294] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16685), 2, + ACTIONS(5948), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [365042] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4562), 1, - anon_sym_LBRACE, - STATE(7265), 1, - sym_initializer_list, - [365052] = 3, + anon_sym_RBRACK, + [366302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16887), 1, + ACTIONS(9950), 1, anon_sym_LT, - STATE(3605), 1, + STATE(4214), 1, sym_template_argument_list, - [365062] = 3, + [366312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(960), 1, anon_sym_LBRACE, - STATE(1143), 1, + STATE(666), 1, sym_compound_statement, - [365072] = 3, + [366322] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12443), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [366330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14501), 1, + ACTIONS(14903), 1, anon_sym_RBRACE, - ACTIONS(16871), 1, + ACTIONS(17295), 1, anon_sym_COMMA, - [365082] = 2, + [366340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17117), 1, - anon_sym_DQUOTE, - [365089] = 2, + ACTIONS(13795), 1, + anon_sym_LPAREN2, + STATE(10395), 1, + sym_parameter_list, + [366350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17119), 1, - anon_sym_RPAREN, - [365096] = 2, + ACTIONS(12978), 1, + anon_sym_LBRACE, + STATE(7575), 1, + sym_field_declaration_list, + [366360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17121), 1, - anon_sym_SEMI, - [365103] = 2, + ACTIONS(12978), 1, + anon_sym_LBRACE, + STATE(7576), 1, + sym_field_declaration_list, + [366370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17123), 1, - sym_raw_string_delimiter, - [365110] = 2, + ACTIONS(16576), 1, + anon_sym_LPAREN2, + STATE(237), 1, + sym_condition_clause, + [366380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17125), 1, - anon_sym_RPAREN, - [365117] = 2, + ACTIONS(17301), 1, + anon_sym_LPAREN2, + STATE(10498), 1, + sym_parenthesized_expression, + [366390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17127), 1, + ACTIONS(17537), 1, anon_sym_SEMI, - [365124] = 2, + [366397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13955), 1, - anon_sym_LBRACE, - [365131] = 2, + ACTIONS(17539), 1, + anon_sym_LPAREN2, + [366404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_GT_GT, - [365138] = 2, - ACTIONS(13686), 1, + ACTIONS(17541), 1, + anon_sym_DOT_DOT_DOT, + [366411] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(17131), 1, - aux_sym_preproc_include_token2, - [365145] = 2, + ACTIONS(17543), 1, + aux_sym_preproc_if_token2, + [366418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17133), 1, - anon_sym_SEMI, - [365152] = 2, + ACTIONS(14381), 1, + anon_sym_LBRACE, + [366425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12285), 1, + ACTIONS(17545), 1, anon_sym_SEMI, - [365159] = 2, + [366432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17135), 1, - anon_sym_SEMI, - [365166] = 2, - ACTIONS(13686), 1, + ACTIONS(17547), 1, + anon_sym_LPAREN2, + [366439] = 2, + ACTIONS(14065), 1, sym_comment, - ACTIONS(17137), 1, + ACTIONS(16826), 1, aux_sym_preproc_include_token2, - [365173] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17139), 1, - sym_identifier, - [365180] = 2, + [366446] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17141), 1, + ACTIONS(12942), 1, anon_sym_RPAREN, - [365187] = 2, + [366453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17143), 1, - anon_sym_while, - [365194] = 2, + ACTIONS(17549), 1, + anon_sym_DQUOTE, + [366460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17145), 1, + ACTIONS(17107), 1, anon_sym_RPAREN, - [365201] = 2, + [366467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17147), 1, + ACTIONS(17551), 1, sym_identifier, - [365208] = 2, + [366474] = 2, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(17553), 1, + aux_sym_preproc_include_token2, + [366481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17149), 1, + ACTIONS(17555), 1, anon_sym_SEMI, - [365215] = 2, + [366488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17151), 1, - anon_sym_LBRACE, - [365222] = 2, + ACTIONS(17557), 1, + anon_sym_RPAREN, + [366495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10129), 1, - anon_sym_SEMI, - [365229] = 2, + ACTIONS(17559), 1, + anon_sym_RPAREN, + [366502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17153), 1, - anon_sym_RBRACE, - [365236] = 2, + ACTIONS(17561), 1, + anon_sym_RPAREN, + [366509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17155), 1, + ACTIONS(17563), 1, anon_sym_RPAREN, - [365243] = 2, + [366516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17157), 1, - anon_sym_RPAREN, - [365250] = 2, + ACTIONS(17565), 1, + sym_identifier, + [366523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17159), 1, - sym_raw_string_delimiter, - [365257] = 2, + ACTIONS(17567), 1, + anon_sym_RPAREN, + [366530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14501), 1, - anon_sym_RBRACE, - [365264] = 2, + ACTIONS(17569), 1, + anon_sym_RPAREN, + [366537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10829), 1, - sym_identifier, - [365271] = 2, + ACTIONS(17571), 1, + sym_auto, + [366544] = 2, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(17573), 1, + aux_sym_preproc_include_token2, + [366551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17161), 1, - anon_sym_DQUOTE, - [365278] = 2, + ACTIONS(17575), 1, + ts_builtin_sym_end, + [366558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12345), 1, + ACTIONS(12293), 1, anon_sym_SEMI, - [365285] = 2, + [366565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17163), 1, + ACTIONS(17577), 1, aux_sym_preproc_if_token2, - [365292] = 2, + [366572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17165), 1, - sym_raw_string_content, - [365299] = 2, + ACTIONS(17579), 1, + anon_sym_DQUOTE, + [366579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17167), 1, + ACTIONS(17581), 1, anon_sym_RPAREN, - [365306] = 2, + [366586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17169), 1, - anon_sym_SEMI, - [365313] = 2, + ACTIONS(17583), 1, + sym_identifier, + [366593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13919), 1, + ACTIONS(10890), 1, + anon_sym_RPAREN, + [366600] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14464), 1, anon_sym_LBRACE, - [365320] = 2, + [366607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17171), 1, - anon_sym_SEMI, - [365327] = 2, + ACTIONS(17585), 1, + sym_identifier, + [366614] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_EQ, - [365334] = 2, + ACTIONS(17587), 1, + anon_sym_DQUOTE, + [366621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17173), 1, + ACTIONS(12679), 1, + anon_sym_COLON, + [366628] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17589), 1, anon_sym_RPAREN, - [365341] = 2, + [366635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17175), 1, - anon_sym_SEMI, - [365348] = 2, + ACTIONS(17591), 1, + anon_sym_RPAREN, + [366642] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17593), 1, + anon_sym_RBRACK, + [366649] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17595), 1, + anon_sym_RPAREN, + [366656] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17597), 1, + anon_sym_RPAREN, + [366663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17177), 1, + ACTIONS(16070), 1, anon_sym_SEMI, - [365355] = 2, - ACTIONS(13686), 1, + [366670] = 2, + ACTIONS(14065), 1, sym_comment, - ACTIONS(17179), 1, + ACTIONS(17599), 1, aux_sym_preproc_include_token2, - [365362] = 2, + [366677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17181), 1, - anon_sym_LBRACE, - [365369] = 2, + ACTIONS(17601), 1, + anon_sym_RPAREN, + [366684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12267), 1, - anon_sym_SEMI, - [365376] = 2, + ACTIONS(17603), 1, + anon_sym_PIPE_PIPE, + [366691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17183), 1, + ACTIONS(17605), 1, anon_sym_LPAREN2, - [365383] = 2, + [366698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11324), 1, - sym_identifier, - [365390] = 2, + ACTIONS(17607), 1, + anon_sym_RPAREN, + [366705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17185), 1, + ACTIONS(17609), 1, anon_sym_RPAREN, - [365397] = 2, + [366712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17187), 1, - sym_identifier, - [365404] = 2, + ACTIONS(17611), 1, + anon_sym_RPAREN, + [366719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17189), 1, + ACTIONS(17613), 1, anon_sym_RPAREN, - [365411] = 2, + [366726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17191), 1, + ACTIONS(17615), 1, sym_identifier, - [365418] = 2, + [366733] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17617), 1, + anon_sym_RPAREN, + [366740] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17619), 1, + anon_sym_LPAREN2, + [366747] = 2, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(17621), 1, + aux_sym_preproc_include_token2, + [366754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17193), 1, + ACTIONS(17623), 1, anon_sym_RPAREN, - [365425] = 2, + [366761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17195), 1, + ACTIONS(17625), 1, anon_sym_SEMI, - [365432] = 2, + [366768] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12809), 1, + anon_sym_RPAREN, + [366775] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12473), 1, + anon_sym_RBRACE, + [366782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17197), 1, + ACTIONS(17627), 1, aux_sym_preproc_if_token2, - [365439] = 2, + [366789] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17629), 1, + anon_sym_LPAREN2, + [366796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12638), 1, + ACTIONS(17631), 1, anon_sym_RPAREN, - [365446] = 2, + [366803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_CARET, - [365453] = 2, + ACTIONS(17633), 1, + sym_raw_string_delimiter, + [366810] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17199), 1, - anon_sym_RPAREN, - [365460] = 2, + ACTIONS(17635), 1, + anon_sym_STAR, + [366817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17201), 1, + ACTIONS(14901), 1, + anon_sym_RBRACE, + [366824] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16014), 1, + anon_sym_SEMI, + [366831] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17637), 1, + anon_sym_LPAREN2, + [366838] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17639), 1, + aux_sym_preproc_if_token2, + [366845] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17641), 1, sym_identifier, - [365467] = 2, + [366852] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14103), 1, - anon_sym_LBRACE, - [365474] = 2, + ACTIONS(17643), 1, + anon_sym_RBRACK, + [366859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17203), 1, - anon_sym_RPAREN, - [365481] = 2, + ACTIONS(17645), 1, + anon_sym_private, + [366866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17205), 1, - anon_sym_SEMI, - [365488] = 2, + ACTIONS(17321), 1, + anon_sym_RBRACE, + [366873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17207), 1, + ACTIONS(17647), 1, anon_sym_RPAREN, - [365495] = 2, + [366880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12403), 1, + ACTIONS(17649), 1, anon_sym_RPAREN, - [365502] = 2, + [366887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12134), 1, - anon_sym_RBRACE, - [365509] = 2, + ACTIONS(17651), 1, + aux_sym_preproc_if_token2, + [366894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17209), 1, + ACTIONS(17653), 1, anon_sym_RPAREN, - [365516] = 2, + [366901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17211), 1, - anon_sym_RPAREN, - [365523] = 2, + ACTIONS(10546), 1, + anon_sym_SEMI, + [366908] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17213), 1, - sym_identifier, - [365530] = 2, + ACTIONS(15174), 1, + anon_sym_LBRACE, + [366915] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17655), 1, + aux_sym_preproc_if_token2, + [366922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17215), 1, + ACTIONS(17657), 1, sym_identifier, - [365537] = 2, + [366929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_PIPE_PIPE, - [365544] = 2, + ACTIONS(17659), 1, + anon_sym_RPAREN, + [366936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17217), 1, - sym_identifier, - [365551] = 2, + ACTIONS(17661), 1, + aux_sym_preproc_if_token2, + [366943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17219), 1, + ACTIONS(12719), 1, anon_sym_SEMI, - [365558] = 2, + [366950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17221), 1, + ACTIONS(15182), 1, anon_sym_SEMI, - [365565] = 2, - ACTIONS(13686), 1, + [366957] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16221), 1, - aux_sym_preproc_include_token2, - [365572] = 2, + ACTIONS(17663), 1, + anon_sym_RBRACE, + [366964] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17665), 1, + anon_sym_SEMI, + [366971] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17667), 1, + aux_sym_preproc_if_token2, + [366978] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17669), 1, + anon_sym_RPAREN, + [366985] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17671), 1, + anon_sym_RPAREN, + [366992] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17223), 1, + ACTIONS(17673), 1, anon_sym_RPAREN, - [365579] = 2, + [366999] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17675), 1, + anon_sym_SEMI, + [367006] = 2, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(17677), 1, + aux_sym_preproc_include_token2, + [367013] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17225), 1, + ACTIONS(17679), 1, anon_sym_SEMI, - [365586] = 2, + [367020] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 1, - anon_sym_RBRACE, - [365593] = 2, + ACTIONS(10874), 1, + anon_sym_RPAREN, + [367027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17227), 1, - anon_sym_DQUOTE, - [365600] = 2, + ACTIONS(17681), 1, + anon_sym_SEMI, + [367034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17229), 1, - sym_identifier, - [365607] = 2, + ACTIONS(17683), 1, + anon_sym_SEMI, + [367041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17231), 1, - anon_sym_DQUOTE, - [365614] = 2, + ACTIONS(6178), 1, + anon_sym_SEMI, + [367048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17233), 1, + ACTIONS(17685), 1, anon_sym_SEMI, - [365621] = 2, + [367055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9312), 1, - sym_identifier, - [365628] = 2, + ACTIONS(17687), 1, + aux_sym_preproc_if_token2, + [367062] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17235), 1, + ACTIONS(15792), 1, anon_sym_SEMI, - [365635] = 2, + [367069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17237), 1, - anon_sym_RPAREN, - [365642] = 2, + ACTIONS(12693), 1, + anon_sym_COLON, + [367076] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17689), 1, + sym_identifier, + [367083] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12379), 1, + ACTIONS(17691), 1, anon_sym_COLON, - [365649] = 2, + [367090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17239), 1, - anon_sym_STAR, - [365656] = 2, + ACTIONS(12729), 1, + anon_sym_SEMI, + [367097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16873), 1, + ACTIONS(14907), 1, anon_sym_RBRACE, - [365663] = 2, + [367104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17241), 1, - anon_sym_RPAREN, - [365670] = 2, + ACTIONS(17693), 1, + anon_sym_LPAREN2, + [367111] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17243), 1, - anon_sym_RPAREN, - [365677] = 2, + ACTIONS(17695), 1, + anon_sym_SEMI, + [367118] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17697), 1, + anon_sym_SEMI, + [367125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17245), 1, + ACTIONS(17699), 1, + anon_sym_SEMI, + [367132] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17701), 1, anon_sym_RPAREN, - [365684] = 2, + [367139] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11438), 1, + sym_identifier, + [367146] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17703), 1, + sym_identifier, + [367153] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17705), 1, + anon_sym_RBRACE, + [367160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17247), 1, + ACTIONS(12944), 1, anon_sym_RPAREN, - [365691] = 2, + [367167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17249), 1, + ACTIONS(17707), 1, sym_identifier, - [365698] = 2, + [367174] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17709), 1, + anon_sym_LPAREN2, + [367181] = 2, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(17711), 1, + aux_sym_preproc_include_token2, + [367188] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17713), 1, + aux_sym_preproc_if_token2, + [367195] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17715), 1, + anon_sym_SEMI, + [367202] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17717), 1, + anon_sym_STAR, + [367209] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17719), 1, + aux_sym_preproc_if_token2, + [367216] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17721), 1, + anon_sym_SEMI, + [367223] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17251), 1, + ACTIONS(17723), 1, anon_sym_RPAREN, - [365705] = 2, + [367230] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17253), 1, + ACTIONS(17725), 1, anon_sym_SEMI, - [365712] = 2, + [367237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17255), 1, + ACTIONS(17727), 1, aux_sym_preproc_if_token2, - [365719] = 2, + [367244] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17257), 1, - sym_auto, - [365726] = 2, - ACTIONS(13686), 1, + ACTIONS(17729), 1, + aux_sym_preproc_if_token2, + [367251] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(17259), 1, - aux_sym_preproc_include_token2, - [365733] = 2, + ACTIONS(17731), 1, + aux_sym_preproc_if_token2, + [367258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17261), 1, + ACTIONS(17733), 1, + sym_identifier, + [367265] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17735), 1, anon_sym_RPAREN, - [365740] = 2, + [367272] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17263), 1, + ACTIONS(17737), 1, sym_identifier, - [365747] = 2, + [367279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14473), 1, - anon_sym_RBRACE, - [365754] = 2, + ACTIONS(17739), 1, + sym_this, + [367286] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17265), 1, - anon_sym_SEMI, - [365761] = 2, + ACTIONS(11303), 1, + sym_identifier, + [367293] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17267), 1, - anon_sym_SEMI, - [365768] = 2, + ACTIONS(17741), 1, + aux_sym_preproc_if_token2, + [367300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17269), 1, - anon_sym_RPAREN, - [365775] = 2, + ACTIONS(17743), 1, + sym_identifier, + [367307] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17745), 1, + anon_sym_COLON, + [367314] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12733), 1, + anon_sym_SEMI, + [367321] = 2, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(17747), 1, + aux_sym_preproc_include_token2, + [367328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15578), 1, + ACTIONS(17749), 1, anon_sym_SEMI, - [365782] = 2, + [367335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12515), 1, - anon_sym_RPAREN, - [365789] = 2, + ACTIONS(17751), 1, + anon_sym_LBRACE, + [367342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12045), 1, - anon_sym_RBRACE, - [365796] = 2, + ACTIONS(17753), 1, + anon_sym_SEMI, + [367349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17271), 1, - anon_sym_RPAREN, - [365803] = 2, + ACTIONS(17755), 1, + aux_sym_preproc_if_token2, + [367356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17273), 1, - anon_sym_RPAREN, - [365810] = 2, + ACTIONS(17757), 1, + anon_sym_SEMI, + [367363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17275), 1, - anon_sym_RPAREN, - [365817] = 2, + ACTIONS(17759), 1, + anon_sym_SEMI, + [367370] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17277), 1, + ACTIONS(10526), 1, anon_sym_SEMI, - [365824] = 2, + [367377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10482), 1, - anon_sym_RPAREN, - [365831] = 2, + ACTIONS(7227), 1, + anon_sym_COLON_COLON, + [367384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17279), 1, - anon_sym_STAR, - [365838] = 2, + ACTIONS(17297), 1, + anon_sym_RBRACE, + [367391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17281), 1, + ACTIONS(17761), 1, anon_sym_LPAREN2, - [365845] = 2, + [367398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17283), 1, + ACTIONS(17763), 1, anon_sym_SEMI, - [365852] = 2, + [367405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14527), 1, - anon_sym_RBRACE, - [365859] = 2, - ACTIONS(3), 1, + ACTIONS(17765), 1, + anon_sym_SEMI, + [367412] = 2, + ACTIONS(8659), 1, + aux_sym_preproc_include_token2, + ACTIONS(14065), 1, sym_comment, - ACTIONS(17285), 1, - anon_sym_STAR, - [365866] = 2, + [367419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17287), 1, - anon_sym_RPAREN, - [365873] = 2, + ACTIONS(17767), 1, + anon_sym_SEMI, + [367426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10518), 1, + ACTIONS(17769), 1, anon_sym_RPAREN, - [365880] = 2, + [367433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17289), 1, - sym_identifier, - [365887] = 2, + ACTIONS(17771), 1, + anon_sym_SEMI, + [367440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17291), 1, - anon_sym_RPAREN, - [365894] = 2, - ACTIONS(13686), 1, + ACTIONS(17773), 1, + anon_sym_SEMI, + [367447] = 2, + ACTIONS(14065), 1, sym_comment, - ACTIONS(17293), 1, + ACTIONS(17775), 1, aux_sym_preproc_include_token2, - [365901] = 2, + [367454] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17295), 1, + ACTIONS(17777), 1, + sym_identifier, + [367461] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17779), 1, anon_sym_RPAREN, - [365908] = 2, + [367468] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17297), 1, + ACTIONS(17781), 1, anon_sym_RPAREN, - [365915] = 2, + [367475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17299), 1, + ACTIONS(17783), 1, anon_sym_RPAREN, - [365922] = 2, + [367482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17301), 1, + ACTIONS(17785), 1, sym_identifier, - [365929] = 2, + [367489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17303), 1, - anon_sym_RPAREN, - [365936] = 2, + ACTIONS(17787), 1, + aux_sym_preproc_if_token2, + [367496] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17305), 1, + ACTIONS(17789), 1, sym_auto, - [365943] = 2, + [367503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17307), 1, - anon_sym_RPAREN, - [365950] = 2, + ACTIONS(17791), 1, + anon_sym_SEMI, + [367510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17309), 1, + ACTIONS(17793), 1, anon_sym_RPAREN, - [365957] = 2, + [367517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17311), 1, + ACTIONS(17795), 1, anon_sym_RPAREN, - [365964] = 2, + [367524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17313), 1, - sym_identifier, - [365971] = 2, + ACTIONS(17797), 1, + anon_sym_SEMI, + [367531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17315), 1, + ACTIONS(17799), 1, anon_sym_RPAREN, - [365978] = 2, + [367538] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17317), 1, - aux_sym_preproc_if_token2, - [365985] = 2, + ACTIONS(17801), 1, + sym_identifier, + [367545] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17319), 1, - aux_sym_preproc_if_token2, - [365992] = 2, + ACTIONS(12597), 1, + anon_sym_RPAREN, + [367552] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17321), 1, - aux_sym_preproc_if_token2, - [365999] = 2, + ACTIONS(17803), 1, + anon_sym_RPAREN, + [367559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17323), 1, - anon_sym_RPAREN, - [366006] = 2, + ACTIONS(17805), 1, + anon_sym_DQUOTE, + [367566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_PIPE, - [366013] = 2, + ACTIONS(17295), 1, + anon_sym_COMMA, + [367573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12221), 1, - anon_sym_COLON, - [366020] = 2, - ACTIONS(13686), 1, + ACTIONS(17807), 1, + aux_sym_preproc_if_token2, + [367580] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(17325), 1, - aux_sym_preproc_include_token2, - [366027] = 2, + ACTIONS(17809), 1, + anon_sym_DQUOTE, + [367587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17327), 1, + ACTIONS(17811), 1, anon_sym_RPAREN, - [366034] = 2, + [367594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14833), 1, - anon_sym_SEMI, - [366041] = 2, + ACTIONS(17813), 1, + anon_sym_RPAREN, + [367601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17329), 1, + ACTIONS(17815), 1, anon_sym_RPAREN, - [366048] = 2, + [367608] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17331), 1, - anon_sym_SEMI, - [366055] = 2, + ACTIONS(17817), 1, + sym_identifier, + [367615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17333), 1, + ACTIONS(17819), 1, anon_sym_RPAREN, - [366062] = 2, - ACTIONS(3), 1, + [367622] = 2, + ACTIONS(14065), 1, sym_comment, - ACTIONS(12652), 1, - anon_sym_RPAREN, - [366069] = 2, + ACTIONS(14103), 1, + aux_sym_preproc_include_token2, + [367629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17335), 1, + ACTIONS(17821), 1, sym_identifier, - [366076] = 2, + [367636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17337), 1, + ACTIONS(17823), 1, anon_sym_RPAREN, - [366083] = 2, + [367643] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17339), 1, + ACTIONS(17825), 1, anon_sym_RPAREN, - [366090] = 2, + [367650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17341), 1, - sym_identifier, - [366097] = 2, + ACTIONS(17827), 1, + anon_sym_DQUOTE, + [367657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17343), 1, - anon_sym_RPAREN, - [366104] = 2, - ACTIONS(13686), 1, + ACTIONS(17829), 1, + sym_auto, + [367664] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(17345), 1, - aux_sym_preproc_include_token2, - [366111] = 2, + ACTIONS(17831), 1, + sym_identifier, + [367671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17347), 1, + ACTIONS(17833), 1, anon_sym_RPAREN, - [366118] = 2, + [367678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17349), 1, + ACTIONS(17835), 1, sym_raw_string_delimiter, - [366125] = 2, + [367685] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16871), 1, - anon_sym_COMMA, - [366132] = 2, + ACTIONS(17837), 1, + anon_sym_SEMI, + [367692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17351), 1, - sym_identifier, - [366139] = 2, + ACTIONS(17839), 1, + anon_sym_SEMI, + [367699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12591), 1, - anon_sym_RPAREN, - [366146] = 2, + ACTIONS(16046), 1, + anon_sym_SEMI, + [367706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17353), 1, - anon_sym_RPAREN, - [366153] = 2, + ACTIONS(17841), 1, + anon_sym_SEMI, + [367713] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10164), 1, + ACTIONS(17843), 1, anon_sym_SEMI, - [366160] = 2, + [367720] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17355), 1, - anon_sym_LPAREN2, - [366167] = 2, + ACTIONS(17845), 1, + aux_sym_preproc_if_token2, + [367727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14720), 1, - anon_sym_LBRACE, - [366174] = 2, + ACTIONS(17847), 1, + sym_identifier, + [367734] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17357), 1, + ACTIONS(17849), 1, anon_sym_RPAREN, - [366181] = 2, + [367741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 1, - anon_sym_COLON, - [366188] = 2, + ACTIONS(9701), 1, + sym_identifier, + [367748] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17359), 1, - anon_sym_COLON, - [366195] = 2, + ACTIONS(17851), 1, + aux_sym_preproc_if_token2, + [367755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17361), 1, + ACTIONS(17853), 1, anon_sym_SEMI, - [366202] = 2, + [367762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17363), 1, - anon_sym_RPAREN, - [366209] = 2, + ACTIONS(17855), 1, + anon_sym_SEMI, + [367769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17365), 1, + ACTIONS(17857), 1, anon_sym_SEMI, - [366216] = 2, + [367776] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17367), 1, + ACTIONS(17859), 1, sym_identifier, - [366223] = 2, + [367783] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17369), 1, - anon_sym_RPAREN, - [366230] = 2, + ACTIONS(17861), 1, + sym_identifier, + [367790] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17371), 1, - anon_sym_RPAREN, - [366237] = 2, + ACTIONS(14287), 1, + anon_sym_LBRACE, + [367797] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17373), 1, - sym_identifier, - [366244] = 2, + ACTIONS(15166), 1, + anon_sym_SEMI, + [367804] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17375), 1, - anon_sym_RPAREN, - [366251] = 2, + ACTIONS(17863), 1, + anon_sym_SEMI, + [367811] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17377), 1, - anon_sym_RPAREN, - [366258] = 2, + ACTIONS(17865), 1, + anon_sym_SEMI, + [367818] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17379), 1, + ACTIONS(17867), 1, sym_identifier, - [366265] = 2, + [367825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17381), 1, + ACTIONS(17869), 1, anon_sym_SEMI, - [366272] = 2, + [367832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12311), 1, - anon_sym_SEMI, - [366279] = 2, + ACTIONS(17871), 1, + anon_sym_DQUOTE, + [367839] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17383), 1, - anon_sym_DQUOTE, - [366286] = 2, + ACTIONS(17873), 1, + aux_sym_preproc_if_token2, + [367846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17385), 1, - sym_identifier, - [366293] = 2, + ACTIONS(10509), 1, + anon_sym_SEMI, + [367853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17387), 1, - anon_sym_RPAREN, - [366300] = 2, + ACTIONS(17353), 1, + anon_sym_RBRACE, + [367860] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17389), 1, + ACTIONS(17875), 1, anon_sym_STAR, - [366307] = 2, + [367867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17391), 1, + ACTIONS(17877), 1, anon_sym_RPAREN, - [366314] = 2, + [367874] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17393), 1, - anon_sym_DQUOTE, - [366321] = 2, + ACTIONS(12737), 1, + anon_sym_COLON, + [367881] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15443), 1, + ACTIONS(12601), 1, anon_sym_SEMI, - [366328] = 2, + [367888] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15387), 1, + ACTIONS(17879), 1, anon_sym_SEMI, - [366335] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12700), 1, - anon_sym_RPAREN, - [366342] = 2, + [367895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17395), 1, + ACTIONS(17881), 1, anon_sym_RPAREN, - [366349] = 2, + [367902] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12112), 1, - anon_sym_RBRACE, - [366356] = 2, + ACTIONS(17883), 1, + aux_sym_preproc_if_token2, + [367909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17397), 1, - anon_sym_SEMI, - [366363] = 2, + ACTIONS(12727), 1, + anon_sym_RPAREN, + [367916] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17399), 1, - sym_identifier, - [366370] = 2, + ACTIONS(12661), 1, + anon_sym_COLON, + [367923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6013), 1, - anon_sym_SEMI, - [366377] = 2, + ACTIONS(12946), 1, + anon_sym_RPAREN, + [367930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17401), 1, - anon_sym_SEMI, - [366384] = 2, + ACTIONS(17049), 1, + anon_sym_LBRACE, + [367937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_AMP, - [366391] = 2, + ACTIONS(17363), 1, + anon_sym_RBRACE, + [367944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17403), 1, - anon_sym_LPAREN2, - [366398] = 2, + ACTIONS(17303), 1, + anon_sym_RBRACE, + [367951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14779), 1, - anon_sym_SEMI, - [366405] = 2, + ACTIONS(17885), 1, + aux_sym_preproc_if_token2, + [367958] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14722), 1, - anon_sym_LBRACE, - [366412] = 2, + ACTIONS(17887), 1, + aux_sym_preproc_if_token2, + [367965] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17405), 1, - anon_sym_SEMI, - [366419] = 2, + ACTIONS(17889), 1, + aux_sym_preproc_if_token2, + [367972] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17407), 1, + ACTIONS(17891), 1, anon_sym_SEMI, - [366426] = 2, + [367979] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17409), 1, - anon_sym_LPAREN2, - [366433] = 2, + ACTIONS(17893), 1, + anon_sym_DQUOTE, + [367986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5982), 1, - anon_sym_SEMI, - [366440] = 2, + ACTIONS(17895), 1, + anon_sym_LPAREN2, + [367993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17411), 1, + ACTIONS(15243), 1, anon_sym_COMMA, - [366447] = 2, + [368000] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17413), 1, + ACTIONS(17897), 1, anon_sym_RPAREN, - [366454] = 2, + [368007] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17415), 1, - anon_sym_SEMI, - [366461] = 2, + ACTIONS(17899), 1, + aux_sym_preproc_if_token2, + [368014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17417), 1, - anon_sym_SEMI, - [366468] = 2, + ACTIONS(17901), 1, + aux_sym_preproc_if_token2, + [368021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17419), 1, + ACTIONS(11671), 1, sym_identifier, - [366475] = 2, + [368028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12277), 1, - anon_sym_SEMI, - [366482] = 2, + ACTIONS(17903), 1, + anon_sym_RPAREN, + [368035] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17421), 1, + ACTIONS(17905), 1, anon_sym_RPAREN, - [366489] = 2, + [368042] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17423), 1, + ACTIONS(17907), 1, + anon_sym_RPAREN, + [368049] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17909), 1, sym_identifier, - [366496] = 2, + [368056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16905), 1, - anon_sym_RBRACE, - [366503] = 2, + ACTIONS(17911), 1, + sym_identifier, + [368063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17425), 1, + ACTIONS(17913), 1, sym_auto, - [366510] = 2, + [368070] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17427), 1, - sym_raw_string_delimiter, - [366517] = 2, + ACTIONS(17603), 1, + anon_sym_AMP_AMP, + [368077] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17429), 1, - sym_identifier, - [366524] = 2, - ACTIONS(3), 1, + ACTIONS(17915), 1, + aux_sym_preproc_if_token2, + [368084] = 2, + ACTIONS(14065), 1, sym_comment, - ACTIONS(17431), 1, - anon_sym_SEMI, - [366531] = 2, + ACTIONS(16973), 1, + aux_sym_preproc_include_token2, + [368091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17433), 1, + ACTIONS(17917), 1, anon_sym_RPAREN, - [366538] = 2, + [368098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17435), 1, - anon_sym_RPAREN, - [366545] = 2, + ACTIONS(17919), 1, + anon_sym_SEMI, + [368105] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17437), 1, - aux_sym_preproc_if_token2, - [366552] = 2, + ACTIONS(15424), 1, + anon_sym_COLON, + [368112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17439), 1, + ACTIONS(17921), 1, anon_sym_SEMI, - [366559] = 2, + [368119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17441), 1, - anon_sym_DQUOTE, - [366566] = 2, + ACTIONS(17923), 1, + aux_sym_preproc_if_token2, + [368126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14724), 1, - anon_sym_LBRACE, - [366573] = 2, + ACTIONS(17925), 1, + anon_sym_DQUOTE, + [368133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17443), 1, - anon_sym_LPAREN2, - [366580] = 2, + ACTIONS(17927), 1, + anon_sym_SEMI, + [368140] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(17929), 1, anon_sym_SEMI, - [366587] = 2, + [368147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12461), 1, - anon_sym_RPAREN, - [366594] = 2, + ACTIONS(17931), 1, + anon_sym_DQUOTE, + [368154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17445), 1, - anon_sym_RPAREN, - [366601] = 2, + ACTIONS(17933), 1, + aux_sym_preproc_if_token2, + [368161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12124), 1, - anon_sym_RBRACE, - [366608] = 2, - ACTIONS(3), 1, + ACTIONS(17935), 1, + aux_sym_preproc_if_token2, + [368168] = 2, + ACTIONS(14065), 1, sym_comment, - ACTIONS(14813), 1, - anon_sym_SEMI, - [366615] = 2, + ACTIONS(16957), 1, + aux_sym_preproc_include_token2, + [368175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17447), 1, - anon_sym_SEMI, - [366622] = 2, + ACTIONS(12932), 1, + anon_sym_RPAREN, + [368182] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17449), 1, - sym_raw_string_content, - [366629] = 2, + ACTIONS(17937), 1, + anon_sym_RPAREN, + [368189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17451), 1, + ACTIONS(17939), 1, sym_identifier, - [366636] = 2, + [368196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14517), 1, - anon_sym_RBRACE, - [366643] = 2, + ACTIONS(17941), 1, + sym_identifier, + [368203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17453), 1, + ACTIONS(17943), 1, anon_sym_RPAREN, - [366650] = 2, + [368210] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17455), 1, - sym_identifier, - [366657] = 2, + ACTIONS(17945), 1, + anon_sym_RPAREN, + [368217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17457), 1, - anon_sym_DQUOTE, - [366664] = 2, + ACTIONS(17947), 1, + aux_sym_preproc_if_token2, + [368224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17459), 1, + ACTIONS(17949), 1, anon_sym_RPAREN, - [366671] = 2, + [368231] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17461), 1, + ACTIONS(17951), 1, sym_raw_string_delimiter, - [366678] = 2, + [368238] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17463), 1, - aux_sym_preproc_if_token2, - [366685] = 2, + ACTIONS(17953), 1, + anon_sym_SEMI, + [368245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17465), 1, + ACTIONS(17955), 1, sym_identifier, - [366692] = 2, + [368252] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12525), 1, - anon_sym_RPAREN, - [366699] = 2, + ACTIONS(17957), 1, + anon_sym_STAR, + [368259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17467), 1, - sym_identifier, - [366706] = 2, - ACTIONS(3), 1, + ACTIONS(17959), 1, + anon_sym_LPAREN2, + [368266] = 2, + ACTIONS(14065), 1, sym_comment, - ACTIONS(17469), 1, - aux_sym_preproc_if_token2, - [366713] = 2, + ACTIONS(17961), 1, + aux_sym_preproc_include_token2, + [368273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12323), 1, - anon_sym_COLON, - [366720] = 2, + ACTIONS(17963), 1, + anon_sym_LPAREN2, + [368280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12656), 1, - anon_sym_RPAREN, - [366727] = 2, + ACTIONS(17965), 1, + anon_sym_SEMI, + [368287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17471), 1, - anon_sym_COLON, - [366734] = 2, - ACTIONS(3), 1, + ACTIONS(17967), 1, + sym_identifier, + [368294] = 2, + ACTIONS(14065), 1, sym_comment, - ACTIONS(14972), 1, - anon_sym_LBRACE, - [366741] = 2, + ACTIONS(17969), 1, + aux_sym_preproc_include_token2, + [368301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17473), 1, + ACTIONS(17971), 1, anon_sym_STAR, - [366748] = 2, - ACTIONS(3), 1, + [368308] = 2, + ACTIONS(14065), 1, sym_comment, - ACTIONS(15735), 1, - anon_sym_SEMI, - [366755] = 2, - ACTIONS(3), 1, + ACTIONS(14225), 1, + aux_sym_preproc_include_token2, + [368315] = 2, + ACTIONS(14065), 1, sym_comment, - ACTIONS(17475), 1, - anon_sym_RPAREN, - [366762] = 2, + ACTIONS(17973), 1, + aux_sym_preproc_include_token2, + [368322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, - anon_sym_RBRACE, - [366769] = 2, + ACTIONS(17975), 1, + anon_sym_LPAREN2, + [368329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17477), 1, + ACTIONS(17977), 1, anon_sym_DQUOTE, - [366776] = 2, + [368336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10162), 1, + ACTIONS(17979), 1, anon_sym_SEMI, - [366783] = 2, - ACTIONS(3), 1, + [368343] = 2, + ACTIONS(14065), 1, sym_comment, - ACTIONS(11317), 1, - sym_identifier, - [366790] = 2, - ACTIONS(3), 1, + ACTIONS(17981), 1, + aux_sym_preproc_include_token2, + [368350] = 2, + ACTIONS(14065), 1, sym_comment, - ACTIONS(12353), 1, - anon_sym_SEMI, - [366797] = 2, + ACTIONS(17983), 1, + aux_sym_preproc_include_token2, + [368357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12321), 1, - anon_sym_COLON, - [366804] = 2, + ACTIONS(17985), 1, + anon_sym_RPAREN, + [368364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_CARET_EQ, - [366811] = 2, + ACTIONS(17987), 1, + sym_identifier, + [368371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17479), 1, + ACTIONS(10721), 1, anon_sym_RPAREN, - [366818] = 2, + [368378] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11242), 1, - sym_identifier, - [366825] = 2, + ACTIONS(17989), 1, + anon_sym_DQUOTE, + [368385] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_not_eq, - [366832] = 2, + ACTIONS(13074), 1, + anon_sym_RPAREN, + [368392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_GT_EQ, - [366839] = 2, + ACTIONS(17603), 1, + anon_sym_PIPE, + [368399] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17481), 1, - anon_sym_SEMI, - [366846] = 2, + ACTIONS(17991), 1, + sym_identifier, + [368406] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17483), 1, - sym_identifier, - [366853] = 2, + ACTIONS(17993), 1, + anon_sym_RPAREN, + [368413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17485), 1, + ACTIONS(17995), 1, anon_sym_LPAREN2, - [366860] = 2, + [368420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17487), 1, - anon_sym_DQUOTE, - [366867] = 2, + ACTIONS(17997), 1, + anon_sym_RPAREN, + [368427] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14760), 1, - anon_sym_SEMI, - [366874] = 2, + ACTIONS(17999), 1, + anon_sym_RPAREN, + [368434] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17489), 1, + ACTIONS(18001), 1, anon_sym_RPAREN, - [366881] = 2, + [368441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17491), 1, + ACTIONS(18003), 1, anon_sym_RPAREN, - [366888] = 2, + [368448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17493), 1, - anon_sym_DQUOTE, - [366895] = 2, + ACTIONS(18005), 1, + anon_sym_RPAREN, + [368455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17495), 1, + ACTIONS(18007), 1, anon_sym_RPAREN, - [366902] = 2, + [368462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17497), 1, + ACTIONS(18009), 1, sym_identifier, - [366909] = 2, + [368469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17499), 1, - aux_sym_preproc_if_token2, - [366916] = 2, + ACTIONS(18011), 1, + anon_sym_RPAREN, + [368476] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17501), 1, + ACTIONS(18013), 1, sym_auto, - [366923] = 2, + [368483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_AMP_AMP, - [366930] = 2, + ACTIONS(18015), 1, + anon_sym_RPAREN, + [368490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17503), 1, + ACTIONS(18017), 1, anon_sym_RPAREN, - [366937] = 2, + [368497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12315), 1, + ACTIONS(18019), 1, anon_sym_RPAREN, - [366944] = 2, + [368504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17505), 1, + ACTIONS(18021), 1, anon_sym_RPAREN, - [366951] = 2, + [368511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17507), 1, - anon_sym_SEMI, - [366958] = 2, + ACTIONS(18023), 1, + anon_sym_RPAREN, + [368518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17509), 1, + ACTIONS(18025), 1, anon_sym_COLON, - [366965] = 2, + [368525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17511), 1, - anon_sym_SEMI, - [366972] = 2, + ACTIONS(18027), 1, + sym_raw_string_delimiter, + [368532] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17513), 1, - anon_sym_RPAREN, - [366979] = 2, + ACTIONS(16218), 1, + anon_sym_SEMI, + [368539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17515), 1, - anon_sym_LPAREN2, - [366986] = 2, + ACTIONS(18029), 1, + anon_sym_SEMI, + [368546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17517), 1, - anon_sym_RPAREN, - [366993] = 2, + ACTIONS(18031), 1, + anon_sym_DQUOTE, + [368553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_STAR_EQ, - [367000] = 2, + ACTIONS(18033), 1, + sym_identifier, + [368560] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_DOT_STAR, - [367007] = 2, + ACTIONS(17603), 1, + anon_sym_CARET, + [368567] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17519), 1, - anon_sym_RPAREN, - [367014] = 2, + ACTIONS(18035), 1, + aux_sym_preproc_if_token2, + [368574] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17521), 1, + ACTIONS(18037), 1, anon_sym_SEMI, - [367021] = 2, + [368581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15586), 1, - anon_sym_SEMI, - [367028] = 2, + ACTIONS(18039), 1, + anon_sym_RPAREN, + [368588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17523), 1, + ACTIONS(18041), 1, sym_identifier, - [367035] = 2, + [368595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16915), 1, - anon_sym_RBRACE, - [367042] = 2, - ACTIONS(13686), 1, + ACTIONS(18043), 1, + aux_sym_preproc_if_token2, + [368602] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(13757), 1, - aux_sym_preproc_include_token2, - [367049] = 2, - ACTIONS(13686), 1, + ACTIONS(18045), 1, + anon_sym_SEMI, + [368609] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(17525), 1, - aux_sym_preproc_include_token2, - [367056] = 2, + ACTIONS(18047), 1, + anon_sym_SEMI, + [368616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17527), 1, - anon_sym_RPAREN, - [367063] = 2, + ACTIONS(18049), 1, + anon_sym_SEMI, + [368623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17529), 1, + ACTIONS(18051), 1, anon_sym_RPAREN, - [367070] = 2, + [368630] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17531), 1, + ACTIONS(18053), 1, sym_raw_string_delimiter, - [367077] = 2, + [368637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17533), 1, - anon_sym_RPAREN, - [367084] = 2, + ACTIONS(15548), 1, + anon_sym_LBRACE, + [368644] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17535), 1, + ACTIONS(18055), 1, sym_identifier, - [367091] = 2, + [368651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17537), 1, + ACTIONS(18057), 1, anon_sym_SEMI, - [367098] = 2, + [368658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17539), 1, + ACTIONS(18059), 1, anon_sym_SEMI, - [367105] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17541), 1, - anon_sym_LBRACE, - [367112] = 2, + [368665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12674), 1, - anon_sym_RPAREN, - [367119] = 2, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(17543), 1, - aux_sym_preproc_include_token2, - [367126] = 2, + ACTIONS(18061), 1, + sym_identifier, + [368672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_LT_LT, - [367133] = 2, + ACTIONS(18063), 1, + anon_sym_SEMI, + [368679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17545), 1, + ACTIONS(18065), 1, anon_sym_RPAREN, - [367140] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17547), 1, - anon_sym_STAR, - [367147] = 2, + [368686] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17549), 1, + ACTIONS(18067), 1, anon_sym_RPAREN, - [367154] = 2, + [368693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17551), 1, - anon_sym_RPAREN, - [367161] = 2, + ACTIONS(18069), 1, + anon_sym_SEMI, + [368700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17553), 1, - anon_sym_RBRACE, - [367168] = 2, + ACTIONS(18071), 1, + anon_sym_STAR, + [368707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17555), 1, - aux_sym_preproc_if_token2, - [367175] = 2, + ACTIONS(16162), 1, + anon_sym_SEMI, + [368714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_LT, - [367182] = 2, + ACTIONS(18073), 1, + anon_sym_SEMI, + [368721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17557), 1, + ACTIONS(12948), 1, anon_sym_RPAREN, - [367189] = 2, + [368728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17559), 1, + ACTIONS(18075), 1, anon_sym_SEMI, - [367196] = 2, + [368735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17561), 1, - anon_sym_SEMI, - [367203] = 2, + ACTIONS(18077), 1, + anon_sym_DQUOTE, + [368742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17563), 1, - ts_builtin_sym_end, - [367210] = 2, - ACTIONS(13686), 1, + ACTIONS(15327), 1, + anon_sym_EQ, + [368749] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(17565), 1, - aux_sym_preproc_include_token2, - [367217] = 2, + ACTIONS(18079), 1, + sym_identifier, + [368756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12293), 1, + ACTIONS(10495), 1, anon_sym_SEMI, - [367224] = 2, + [368763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17567), 1, + ACTIONS(18081), 1, anon_sym_DQUOTE, - [367231] = 2, + [368770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17569), 1, - anon_sym_DQUOTE, - [367238] = 2, + ACTIONS(18083), 1, + aux_sym_preproc_if_token2, + [368777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_SLASH_EQ, - [367245] = 2, + ACTIONS(18085), 1, + sym_identifier, + [368784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17571), 1, + ACTIONS(18087), 1, + sym_identifier, + [368791] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18089), 1, anon_sym_RPAREN, - [367252] = 2, + [368798] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17573), 1, - anon_sym_LPAREN2, - [367259] = 2, + ACTIONS(18091), 1, + aux_sym_preproc_if_token2, + [368805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17575), 1, - sym_identifier, - [367266] = 2, + ACTIONS(18093), 1, + sym_auto, + [368812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17577), 1, + ACTIONS(18095), 1, + anon_sym_LPAREN2, + [368819] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18097), 1, anon_sym_SEMI, - [367273] = 2, + [368826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17579), 1, + ACTIONS(18099), 1, anon_sym_RPAREN, - [367280] = 2, + [368833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15431), 1, - anon_sym_SEMI, - [367287] = 2, + ACTIONS(13010), 1, + anon_sym_RPAREN, + [368840] = 2, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(18101), 1, + aux_sym_preproc_include_token2, + [368847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17581), 1, + ACTIONS(18103), 1, sym_identifier, - [367294] = 2, + [368854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17583), 1, - aux_sym_preproc_if_token2, - [367301] = 2, + ACTIONS(12435), 1, + anon_sym_RBRACE, + [368861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17585), 1, + ACTIONS(18105), 1, sym_auto, - [367308] = 2, + [368868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17587), 1, - anon_sym_RPAREN, - [367315] = 2, + ACTIONS(18107), 1, + anon_sym_LPAREN2, + [368875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17589), 1, - anon_sym_SEMI, - [367322] = 2, + ACTIONS(18109), 1, + anon_sym_COLON, + [368882] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17591), 1, - anon_sym_SEMI, - [367329] = 2, + ACTIONS(18111), 1, + anon_sym_DQUOTE, + [368889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17593), 1, + ACTIONS(18113), 1, anon_sym_RPAREN, - [367336] = 2, + [368896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17595), 1, + ACTIONS(18115), 1, + sym_identifier, + [368903] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18117), 1, anon_sym_SEMI, - [367343] = 2, + [368910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17597), 1, + ACTIONS(12771), 1, anon_sym_RPAREN, - [367350] = 2, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(13795), 1, - aux_sym_preproc_include_token2, - [367357] = 2, + [368917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17599), 1, + ACTIONS(18119), 1, anon_sym_RPAREN, - [367364] = 2, + [368924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17601), 1, + ACTIONS(12463), 1, anon_sym_RBRACE, - [367371] = 2, + [368931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - aux_sym_preproc_if_token2, - [367378] = 2, + ACTIONS(14883), 1, + anon_sym_RBRACE, + [368938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17605), 1, - anon_sym_RPAREN, - [367385] = 2, + ACTIONS(18121), 1, + anon_sym_LPAREN2, + [368945] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17607), 1, - anon_sym_RPAREN, - [367392] = 2, + ACTIONS(18123), 1, + anon_sym_SEMI, + [368952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17609), 1, - aux_sym_preproc_if_token2, - [367399] = 2, + ACTIONS(18125), 1, + anon_sym_DQUOTE, + [368959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17611), 1, - anon_sym_RPAREN, - [367406] = 2, + ACTIONS(18127), 1, + anon_sym_DQUOTE, + [368966] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17613), 1, + ACTIONS(18129), 1, sym_identifier, - [367413] = 2, + [368973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17615), 1, - aux_sym_preproc_if_token2, - [367420] = 2, + ACTIONS(18131), 1, + anon_sym_RPAREN, + [368980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17617), 1, - anon_sym_COLON, - [367427] = 2, + ACTIONS(16232), 1, + anon_sym_SEMI, + [368987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17619), 1, + ACTIONS(18133), 1, aux_sym_preproc_if_token2, - [367434] = 2, + [368994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17621), 1, - anon_sym_RPAREN, - [367441] = 2, + ACTIONS(18135), 1, + anon_sym_SEMI, + [369001] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17623), 1, + ACTIONS(18137), 1, anon_sym_RPAREN, - [367448] = 2, + [369008] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17625), 1, + ACTIONS(18139), 1, sym_raw_string_delimiter, - [367455] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17627), 1, - anon_sym_RPAREN, - [367462] = 2, + [369015] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15548), 1, - anon_sym_SEMI, - [367469] = 2, + ACTIONS(18141), 1, + anon_sym_DQUOTE, + [369022] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12445), 1, + ACTIONS(18143), 1, anon_sym_RPAREN, - [367476] = 2, + [369029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11991), 1, + ACTIONS(14851), 1, anon_sym_RBRACE, - [367483] = 2, + [369036] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17629), 1, + ACTIONS(18145), 1, anon_sym_SEMI, - [367490] = 2, + [369043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17631), 1, - anon_sym_DQUOTE, - [367497] = 2, + ACTIONS(18147), 1, + anon_sym_RPAREN, + [369050] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17633), 1, + ACTIONS(18149), 1, + sym_identifier, + [369057] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18151), 1, anon_sym_STAR, - [367504] = 2, + [369064] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17635), 1, - anon_sym_RPAREN, - [367511] = 2, + ACTIONS(17603), 1, + anon_sym_AMP, + [369071] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12688), 1, - anon_sym_RPAREN, - [367518] = 2, + ACTIONS(18153), 1, + anon_sym_SEMI, + [369078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12325), 1, - anon_sym_COLON, - [367525] = 2, + ACTIONS(12861), 1, + anon_sym_RPAREN, + [369085] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14513), 1, + ACTIONS(12555), 1, anon_sym_RBRACE, - [367532] = 2, + [369092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17637), 1, - sym_this, - [367539] = 2, + ACTIONS(17603), 1, + anon_sym_EQ_EQ, + [369099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17639), 1, - sym_identifier, - [367546] = 2, + ACTIONS(15133), 1, + anon_sym_SEMI, + [369106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17641), 1, - anon_sym_SEMI, - [367553] = 2, + ACTIONS(12653), 1, + anon_sym_COLON, + [369113] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12605), 1, - anon_sym_RPAREN, - [367560] = 2, + ACTIONS(18155), 1, + anon_sym_SEMI, + [369120] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17643), 1, - anon_sym_RPAREN, - [367567] = 2, + ACTIONS(14855), 1, + anon_sym_RBRACE, + [369127] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17645), 1, + ACTIONS(18157), 1, anon_sym_LPAREN2, - [367574] = 2, + [369134] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17647), 1, + ACTIONS(18159), 1, anon_sym_RPAREN, - [367581] = 2, + [369141] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17649), 1, - anon_sym_LPAREN2, - [367588] = 2, + ACTIONS(18161), 1, + anon_sym_RPAREN, + [369148] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17651), 1, + ACTIONS(18163), 1, sym_identifier, - [367595] = 2, + [369155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17653), 1, + ACTIONS(18165), 1, anon_sym_RPAREN, - [367602] = 2, + [369162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17655), 1, + ACTIONS(18167), 1, sym_auto, - [367609] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17657), 1, - aux_sym_preproc_if_token2, - [367616] = 2, + [369169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17659), 1, + ACTIONS(18169), 1, anon_sym_RPAREN, - [367623] = 2, + [369176] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17661), 1, + ACTIONS(18171), 1, anon_sym_RPAREN, - [367630] = 2, + [369183] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17663), 1, - anon_sym_RPAREN, - [367637] = 2, + ACTIONS(18173), 1, + aux_sym_preproc_if_token2, + [369190] = 2, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(14221), 1, + aux_sym_preproc_include_token2, + [369197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12193), 1, + ACTIONS(18175), 1, anon_sym_RPAREN, - [367644] = 2, + [369204] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17665), 1, + ACTIONS(18177), 1, sym_identifier, - [367651] = 2, - ACTIONS(13686), 1, + [369211] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(17667), 1, - aux_sym_preproc_include_token2, - [367658] = 2, + ACTIONS(18179), 1, + anon_sym_COLON, + [369218] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17669), 1, + ACTIONS(18181), 1, sym_raw_string_delimiter, - [367665] = 2, + [369225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17671), 1, - anon_sym_DQUOTE, - [367672] = 2, + ACTIONS(18183), 1, + anon_sym_SEMI, + [369232] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17673), 1, + ACTIONS(18185), 1, + anon_sym_RPAREN, + [369239] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18187), 1, anon_sym_SEMI, - [367679] = 2, + [369246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12371), 1, - anon_sym_RPAREN, - [367686] = 2, + ACTIONS(12669), 1, + anon_sym_SEMI, + [369253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17675), 1, + ACTIONS(18189), 1, anon_sym_RPAREN, - [367693] = 2, + [369260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17677), 1, - anon_sym_DQUOTE, - [367700] = 2, + ACTIONS(18191), 1, + anon_sym_STAR, + [369267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17679), 1, - anon_sym_DQUOTE, - [367707] = 2, + ACTIONS(18193), 1, + aux_sym_preproc_if_token2, + [369274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17681), 1, - anon_sym_RPAREN, - [367714] = 2, + ACTIONS(18195), 1, + anon_sym_SEMI, + [369281] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17683), 1, - anon_sym_SEMI, - [367721] = 2, + ACTIONS(18197), 1, + anon_sym_RPAREN, + [369288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17685), 1, + ACTIONS(18199), 1, anon_sym_SEMI, - [367728] = 2, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(17687), 1, - aux_sym_preproc_include_token2, - [367735] = 2, + [369295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17689), 1, + ACTIONS(18201), 1, anon_sym_LPAREN2, - [367742] = 2, + [369302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17691), 1, - anon_sym_SEMI, - [367749] = 2, + ACTIONS(18203), 1, + anon_sym_RPAREN, + [369309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17693), 1, - aux_sym_preproc_if_token2, - [367756] = 2, + ACTIONS(18205), 1, + anon_sym_RPAREN, + [369316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17695), 1, - aux_sym_preproc_if_token2, - [367763] = 2, + ACTIONS(12641), 1, + anon_sym_RPAREN, + [369323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17697), 1, + ACTIONS(18207), 1, sym_auto, - [367770] = 2, + [369330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17699), 1, + ACTIONS(18209), 1, anon_sym_RPAREN, - [367777] = 2, + [369337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17701), 1, - anon_sym_SEMI, - [367784] = 2, + ACTIONS(17603), 1, + anon_sym_BANG_EQ, + [369344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13985), 1, - sym_identifier, - [367791] = 2, + ACTIONS(17603), 1, + anon_sym_GT, + [369351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17703), 1, - aux_sym_preproc_if_token2, - [367798] = 2, + ACTIONS(18211), 1, + anon_sym_RPAREN, + [369358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17705), 1, + ACTIONS(18213), 1, sym_raw_string_delimiter, - [367805] = 2, + [369365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12341), 1, + ACTIONS(18215), 1, anon_sym_SEMI, - [367812] = 2, + [369372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17707), 1, - anon_sym_SEMI, - [367819] = 2, + ACTIONS(18217), 1, + anon_sym_STAR, + [369379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17709), 1, + ACTIONS(18219), 1, anon_sym_RPAREN, - [367826] = 2, + [369386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_LT_EQ, - [367833] = 2, + ACTIONS(18221), 1, + anon_sym_RPAREN, + [369393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17711), 1, - anon_sym_DQUOTE, - [367840] = 2, - ACTIONS(13686), 1, + ACTIONS(18223), 1, + sym_identifier, + [369400] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(17713), 1, - aux_sym_preproc_include_token2, - [367847] = 2, + ACTIONS(12950), 1, + anon_sym_RPAREN, + [369407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17715), 1, + ACTIONS(18225), 1, sym_auto, - [367854] = 2, + [369414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17717), 1, + ACTIONS(18227), 1, anon_sym_RPAREN, - [367861] = 2, + [369421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17719), 1, - anon_sym_RPAREN, - [367868] = 2, + ACTIONS(18229), 1, + anon_sym_SEMI, + [369428] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17721), 1, - anon_sym_COLON, - [367875] = 2, + ACTIONS(18231), 1, + anon_sym_SEMI, + [369435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17723), 1, + ACTIONS(18233), 1, sym_raw_string_delimiter, - [367882] = 2, + [369442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17725), 1, - sym_identifier, - [367889] = 2, + ACTIONS(12741), 1, + anon_sym_COLON, + [369449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17727), 1, - anon_sym_DQUOTE, - [367896] = 2, + ACTIONS(18235), 1, + aux_sym_preproc_if_token2, + [369456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17729), 1, - anon_sym_STAR, - [367903] = 2, + ACTIONS(18237), 1, + anon_sym_SEMI, + [369463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17731), 1, - anon_sym_RPAREN, - [367910] = 2, + ACTIONS(17299), 1, + anon_sym_RBRACE, + [369470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12094), 1, - anon_sym_RPAREN, - [367917] = 2, + ACTIONS(18239), 1, + aux_sym_preproc_if_token2, + [369477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17733), 1, - anon_sym_DOT_DOT_DOT, - [367924] = 2, + ACTIONS(18241), 1, + anon_sym_LBRACE, + [369484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17736), 1, + ACTIONS(18243), 1, sym_auto, - [367931] = 2, + [369491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17738), 1, + ACTIONS(18245), 1, anon_sym_RPAREN, - [367938] = 2, + [369498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17740), 1, + ACTIONS(18247), 1, sym_raw_string_delimiter, - [367945] = 2, + [369505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17742), 1, - anon_sym_RPAREN, - [367952] = 2, + ACTIONS(18249), 1, + anon_sym_SEMI, + [369512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17744), 1, + ACTIONS(6381), 1, anon_sym_SEMI, - [367959] = 2, + [369519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17746), 1, - anon_sym_DOT_DOT_DOT, - [367966] = 2, + ACTIONS(18251), 1, + anon_sym_SEMI, + [369526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17748), 1, - anon_sym_RPAREN, - [367973] = 2, + ACTIONS(18253), 1, + sym_identifier, + [369533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17750), 1, - sym_identifier, - [367980] = 2, + ACTIONS(18255), 1, + anon_sym_SEMI, + [369540] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17752), 1, + ACTIONS(18257), 1, anon_sym_RPAREN, - [367987] = 2, + [369547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17754), 1, + ACTIONS(18259), 1, sym_raw_string_delimiter, - [367994] = 2, - ACTIONS(3), 1, + [369554] = 2, + ACTIONS(14065), 1, sym_comment, - ACTIONS(17756), 1, - anon_sym_LPAREN2, - [368001] = 2, + ACTIONS(18261), 1, + aux_sym_preproc_include_token2, + [369561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17758), 1, - anon_sym_RPAREN, - [368008] = 2, - ACTIONS(3), 1, + ACTIONS(18263), 1, + anon_sym_SEMI, + [369568] = 2, + ACTIONS(14065), 1, sym_comment, - ACTIONS(17760), 1, - anon_sym_STAR, - [368015] = 2, + ACTIONS(18265), 1, + aux_sym_preproc_include_token2, + [369575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_DASH_GT_STAR, - [368022] = 2, + ACTIONS(12643), 1, + anon_sym_COLON, + [369582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12702), 1, - anon_sym_RPAREN, - [368029] = 2, + ACTIONS(18267), 1, + anon_sym_SEMI, + [369589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17762), 1, + ACTIONS(18269), 1, anon_sym_RPAREN, - [368036] = 2, + [369596] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17764), 1, + ACTIONS(18271), 1, sym_raw_string_delimiter, - [368043] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17766), 1, - anon_sym_LPAREN2, - [368050] = 2, + [369603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17768), 1, + ACTIONS(12559), 1, anon_sym_RPAREN, - [368057] = 2, + [369610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14819), 1, + ACTIONS(12721), 1, anon_sym_SEMI, - [368064] = 2, + [369617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17770), 1, - aux_sym_preproc_if_token2, - [368071] = 2, + ACTIONS(18273), 1, + anon_sym_RPAREN, + [369624] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17603), 1, + anon_sym_GT_EQ, + [369631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17772), 1, + ACTIONS(18275), 1, anon_sym_RPAREN, - [368078] = 2, + [369638] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17774), 1, + ACTIONS(18277), 1, sym_raw_string_delimiter, - [368085] = 2, + [369645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12581), 1, - anon_sym_RPAREN, - [368092] = 2, - ACTIONS(13686), 1, + ACTIONS(17603), 1, + anon_sym_LT_EQ, + [369652] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(17776), 1, - aux_sym_preproc_include_token2, - [368099] = 2, + ACTIONS(17603), 1, + anon_sym_LT, + [369659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17778), 1, - anon_sym_SEMI, - [368106] = 2, + ACTIONS(18279), 1, + anon_sym_LPAREN2, + [369666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17780), 1, + ACTIONS(18281), 1, anon_sym_RPAREN, - [368113] = 2, + [369673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17782), 1, + ACTIONS(18283), 1, sym_raw_string_delimiter, - [368120] = 2, + [369680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 1, - anon_sym_SEMI, - [368127] = 2, - ACTIONS(13686), 1, + ACTIONS(18285), 1, + anon_sym_RPAREN, + [369687] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(13787), 1, - aux_sym_preproc_include_token2, - [368134] = 2, + ACTIONS(18287), 1, + anon_sym_LPAREN2, + [369694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17784), 1, + ACTIONS(18289), 1, anon_sym_RPAREN, - [368141] = 2, + [369701] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17786), 1, + ACTIONS(18291), 1, sym_raw_string_delimiter, - [368148] = 2, + [369708] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17788), 1, - anon_sym_SEMI, - [368155] = 2, + ACTIONS(18293), 1, + anon_sym_RPAREN, + [369715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15608), 1, - anon_sym_SEMI, - [368162] = 2, + ACTIONS(6046), 1, + anon_sym_DOT_DOT_DOT, + [369722] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17790), 1, + ACTIONS(18295), 1, anon_sym_RPAREN, - [368169] = 2, + [369729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17792), 1, + ACTIONS(18297), 1, sym_raw_string_delimiter, - [368176] = 2, - ACTIONS(3), 1, + [369736] = 2, + ACTIONS(14065), 1, sym_comment, - ACTIONS(17031), 1, - anon_sym_RBRACE, - [368183] = 2, + ACTIONS(18299), 1, + aux_sym_preproc_include_token2, + [369743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17794), 1, - anon_sym_RPAREN, - [368190] = 2, + ACTIONS(17603), 1, + anon_sym_LT_LT, + [369750] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17796), 1, + ACTIONS(18301), 1, anon_sym_RPAREN, - [368197] = 2, + [369757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17798), 1, + ACTIONS(18303), 1, sym_raw_string_delimiter, - [368204] = 2, + [369764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12343), 1, - anon_sym_COLON, - [368211] = 2, + ACTIONS(17603), 1, + anon_sym_GT_GT, + [369771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17800), 1, + ACTIONS(18305), 1, anon_sym_COLON, - [368218] = 2, + [369778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17802), 1, + ACTIONS(18307), 1, anon_sym_RPAREN, - [368225] = 2, + [369785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17804), 1, + ACTIONS(18309), 1, sym_raw_string_delimiter, - [368232] = 2, + [369792] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17806), 1, - anon_sym_SEMI, - [368239] = 2, + ACTIONS(17603), 1, + anon_sym_EQ, + [369799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17808), 1, - anon_sym_SEMI, - [368246] = 2, + ACTIONS(18311), 1, + sym_raw_string_content, + [369806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17810), 1, + ACTIONS(18313), 1, anon_sym_RPAREN, - [368253] = 2, + [369813] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17812), 1, + ACTIONS(18315), 1, sym_raw_string_delimiter, - [368260] = 2, + [369820] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17814), 1, + ACTIONS(18317), 1, anon_sym_SEMI, - [368267] = 2, + [369827] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17816), 1, + ACTIONS(18319), 1, anon_sym_RPAREN, - [368274] = 2, + [369834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17818), 1, + ACTIONS(18321), 1, sym_raw_string_delimiter, - [368281] = 2, + [369841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17820), 1, - aux_sym_preproc_if_token2, - [368288] = 2, + ACTIONS(18323), 1, + anon_sym_SEMI, + [369848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17822), 1, - aux_sym_preproc_if_token2, - [368295] = 2, + ACTIONS(18325), 1, + anon_sym_DQUOTE, + [369855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17824), 1, + ACTIONS(18327), 1, anon_sym_RPAREN, - [368302] = 2, + [369862] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12708), 1, - anon_sym_RPAREN, - [368309] = 2, - ACTIONS(13686), 1, + ACTIONS(18329), 1, + anon_sym_DQUOTE, + [369869] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(17826), 1, - aux_sym_preproc_include_token2, - [368316] = 2, + ACTIONS(18331), 1, + anon_sym_SEMI, + [369876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17828), 1, + ACTIONS(18333), 1, anon_sym_LPAREN2, - [368323] = 2, + [369883] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_PERCENT_EQ, - [368330] = 2, + ACTIONS(18335), 1, + anon_sym_SEMI, + [369890] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17830), 1, + ACTIONS(18337), 1, anon_sym_LPAREN2, - [368337] = 2, + [369897] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17832), 1, + ACTIONS(18339), 1, anon_sym_LPAREN2, - [368344] = 2, + [369904] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17834), 1, + ACTIONS(18341), 1, anon_sym_LPAREN2, - [368351] = 2, + [369911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17836), 1, + ACTIONS(18343), 1, anon_sym_LPAREN2, - [368358] = 2, + [369918] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17838), 1, - sym_identifier, - [368365] = 2, + ACTIONS(17369), 1, + anon_sym_RBRACE, + [369925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17840), 1, + ACTIONS(18345), 1, anon_sym_LPAREN2, - [368372] = 2, + [369932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12303), 1, - anon_sym_SEMI, - [368379] = 2, + ACTIONS(15137), 1, + anon_sym_LBRACE, + [369939] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17842), 1, - anon_sym_SEMI, - [368386] = 2, + ACTIONS(18347), 1, + anon_sym_RPAREN, + [369946] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17844), 1, - aux_sym_preproc_if_token2, - [368393] = 2, + ACTIONS(12952), 1, + anon_sym_RPAREN, + [369953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17846), 1, - aux_sym_preproc_if_token2, - [368400] = 2, + ACTIONS(18349), 1, + anon_sym_SEMI, + [369960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12275), 1, + ACTIONS(18351), 1, anon_sym_SEMI, - [368407] = 2, + [369967] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12369), 1, + ACTIONS(18353), 1, anon_sym_SEMI, - [368414] = 2, + [369974] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17848), 1, - anon_sym_RPAREN, - [368421] = 2, + ACTIONS(18355), 1, + anon_sym_SEMI, + [369981] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18357), 1, + anon_sym_SEMI, + [369988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17850), 1, + ACTIONS(18359), 1, anon_sym_while, - [368428] = 2, + [369995] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16975), 1, - anon_sym_RBRACE, - [368435] = 2, + ACTIONS(18361), 1, + anon_sym_RPAREN, + [370002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17852), 1, + ACTIONS(18363), 1, anon_sym_LPAREN2, - [368442] = 2, + [370009] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17854), 1, - anon_sym_RPAREN, - [368449] = 2, + ACTIONS(18365), 1, + anon_sym_DQUOTE, + [370016] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17856), 1, - anon_sym_RBRACK, - [368456] = 2, + ACTIONS(18367), 1, + anon_sym_RPAREN, + [370023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17858), 1, + ACTIONS(18369), 1, anon_sym_LPAREN2, - [368463] = 2, + [370030] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17860), 1, + ACTIONS(18371), 1, anon_sym_LPAREN2, - [368470] = 2, + [370037] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17862), 1, - anon_sym_RPAREN, - [368477] = 2, + ACTIONS(18373), 1, + anon_sym_SEMI, + [370044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17864), 1, - anon_sym_SEMI, - [368484] = 2, + ACTIONS(18375), 1, + sym_identifier, + [370051] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17866), 1, + ACTIONS(18377), 1, anon_sym_SEMI, - [368491] = 2, + [370058] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17868), 1, + ACTIONS(18379), 1, anon_sym_EQ, - [368498] = 2, + [370065] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17870), 1, + ACTIONS(18381), 1, sym_raw_string_content, - [368505] = 2, - ACTIONS(13686), 1, + [370072] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(17872), 1, - aux_sym_preproc_include_token2, - [368512] = 2, + ACTIONS(6039), 1, + anon_sym_DOT_DOT_DOT, + [370079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17874), 1, - sym_identifier, - [368519] = 2, + ACTIONS(17357), 1, + anon_sym_RBRACE, + [370086] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12710), 1, - anon_sym_RPAREN, - [368526] = 2, + ACTIONS(18383), 1, + anon_sym_SEMI, + [370093] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17876), 1, + ACTIONS(18385), 1, anon_sym_STAR, - [368533] = 2, + [370100] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17878), 1, - sym_identifier, - [368540] = 2, + ACTIONS(17603), 1, + anon_sym_STAR_EQ, + [370107] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6802), 1, - anon_sym_COLON_COLON, - [368547] = 2, + ACTIONS(18387), 1, + anon_sym_SEMI, + [370114] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17880), 1, + ACTIONS(18389), 1, anon_sym_SEMI, - [368554] = 2, + [370121] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17882), 1, - anon_sym_RPAREN, - [368561] = 2, + ACTIONS(18391), 1, + anon_sym_SEMI, + [370128] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17884), 1, + ACTIONS(6316), 1, anon_sym_SEMI, - [368568] = 2, + [370135] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17886), 1, + ACTIONS(18393), 1, anon_sym_SEMI, - [368575] = 2, + [370142] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16024), 1, - anon_sym_LBRACE, - [368582] = 2, + ACTIONS(6036), 1, + anon_sym_DOT_DOT_DOT, + [370149] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14980), 1, - anon_sym_COLON, - [368589] = 2, + ACTIONS(18395), 1, + anon_sym_RPAREN, + [370156] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17888), 1, - sym_identifier, - [368596] = 2, + ACTIONS(18397), 1, + anon_sym_RPAREN, + [370163] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17890), 1, - anon_sym_SEMI, - [368603] = 2, + ACTIONS(6001), 1, + anon_sym_DOT_DOT_DOT, + [370170] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17892), 1, - anon_sym_SEMI, - [368610] = 2, + ACTIONS(12954), 1, + anon_sym_RPAREN, + [370177] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17894), 1, + ACTIONS(18399), 1, sym_identifier, - [368617] = 2, + [370184] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17896), 1, + ACTIONS(18401), 1, anon_sym_COMMA, - [368624] = 2, + [370191] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17898), 1, + ACTIONS(18403), 1, anon_sym_SEMI, - [368631] = 2, + [370198] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17900), 1, - aux_sym_preproc_if_token2, - [368638] = 2, + ACTIONS(6011), 1, + anon_sym_DOT_DOT_DOT, + [370205] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17902), 1, - aux_sym_preproc_if_token2, - [368645] = 2, + ACTIONS(18405), 1, + anon_sym_RPAREN, + [370212] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17904), 1, + ACTIONS(18407), 1, anon_sym_RPAREN, - [368652] = 2, + [370219] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17906), 1, + ACTIONS(18409), 1, anon_sym_SEMI, - [368659] = 2, + [370226] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17908), 1, - anon_sym_LPAREN2, - [368666] = 2, + ACTIONS(12936), 1, + anon_sym_RPAREN, + [370233] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17910), 1, + ACTIONS(18411), 1, anon_sym_SEMI, - [368673] = 2, + [370240] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15032), 1, - anon_sym_LBRACE, - [368680] = 2, + ACTIONS(18413), 1, + anon_sym_RPAREN, + [370247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17912), 1, - anon_sym_LPAREN2, - [368687] = 2, + ACTIONS(12605), 1, + anon_sym_COLON, + [370254] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17914), 1, - anon_sym_LPAREN2, - [368694] = 2, + ACTIONS(16130), 1, + anon_sym_SEMI, + [370261] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12417), 1, - anon_sym_RPAREN, - [368701] = 2, + ACTIONS(18415), 1, + anon_sym_SEMI, + [370268] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17916), 1, - anon_sym_RPAREN, - [368708] = 2, + ACTIONS(18417), 1, + sym_identifier, + [370275] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17918), 1, - anon_sym_SEMI, - [368715] = 2, + ACTIONS(18419), 1, + anon_sym_DQUOTE, + [370282] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12339), 1, + ACTIONS(12709), 1, anon_sym_COLON, - [368722] = 2, + [370289] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17920), 1, - anon_sym_LPAREN2, - [368729] = 2, + ACTIONS(15107), 1, + anon_sym_LBRACE, + [370296] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14471), 1, - anon_sym_RBRACE, - [368736] = 2, + ACTIONS(18421), 1, + anon_sym_RPAREN, + [370303] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17922), 1, - sym_identifier, - [368743] = 2, + ACTIONS(18423), 1, + anon_sym_DQUOTE, + [370310] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17924), 1, - anon_sym_SEMI, - [368750] = 2, + ACTIONS(17603), 1, + anon_sym_SLASH_EQ, + [370317] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17926), 1, - anon_sym_DQUOTE, - [368757] = 2, + ACTIONS(18425), 1, + anon_sym_RPAREN, + [370324] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17928), 1, + ACTIONS(18427), 1, anon_sym_SEMI, - [368764] = 2, + [370331] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16937), 1, - anon_sym_RBRACE, - [368771] = 2, + ACTIONS(18429), 1, + anon_sym_DQUOTE, + [370338] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17930), 1, + ACTIONS(18431), 1, anon_sym_STAR, - [368778] = 2, + [370345] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17932), 1, + ACTIONS(18433), 1, anon_sym_SEMI, - [368785] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17129), 1, - anon_sym_PLUS_EQ, - [368792] = 2, + [370352] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17934), 1, - anon_sym_RPAREN, - [368799] = 2, + ACTIONS(18435), 1, + anon_sym_DQUOTE, + [370359] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17936), 1, + ACTIONS(18437), 1, anon_sym_SEMI, - [368806] = 2, + [370366] = 2, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(18439), 1, + aux_sym_preproc_include_token2, + [370373] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17938), 1, + ACTIONS(18441), 1, anon_sym_SEMI, - [368813] = 2, + [370380] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17940), 1, + ACTIONS(18443), 1, anon_sym_DQUOTE, - [368820] = 2, + [370387] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17942), 1, - sym_identifier, - [368827] = 2, + ACTIONS(12851), 1, + anon_sym_RPAREN, + [370394] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17944), 1, + ACTIONS(18445), 1, anon_sym_RPAREN, - [368834] = 2, + [370401] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17946), 1, - anon_sym_DQUOTE, - [368841] = 2, + ACTIONS(6019), 1, + anon_sym_DOT_DOT_DOT, + [370408] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17948), 1, - anon_sym_RPAREN, - [368848] = 2, + ACTIONS(18447), 1, + aux_sym_preproc_if_token2, + [370415] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17950), 1, + ACTIONS(18449), 1, anon_sym_RPAREN, - [368855] = 2, + [370422] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16167), 1, - anon_sym_COLON_COLON, - [368862] = 2, - ACTIONS(3), 1, + ACTIONS(18451), 1, + sym_identifier, + [370429] = 2, + ACTIONS(14065), 1, sym_comment, - ACTIONS(16953), 1, - anon_sym_RBRACE, - [368869] = 2, + ACTIONS(14185), 1, + aux_sym_preproc_include_token2, + [370436] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17952), 1, + ACTIONS(18453), 1, anon_sym_COLON, - [368876] = 2, + [370443] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15427), 1, - anon_sym_SEMI, - [368883] = 2, + ACTIONS(18455), 1, + aux_sym_preproc_if_token2, + [370450] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_DASH_EQ, - [368890] = 2, + ACTIONS(18457), 1, + anon_sym_DQUOTE, + [370457] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17954), 1, - anon_sym_SEMI, - [368897] = 2, + ACTIONS(18459), 1, + anon_sym_DQUOTE, + [370464] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17956), 1, - anon_sym_LBRACE, - [368904] = 2, + ACTIONS(6016), 1, + anon_sym_DOT_DOT_DOT, + [370471] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16983), 1, - anon_sym_RBRACE, - [368911] = 2, + ACTIONS(12725), 1, + anon_sym_SEMI, + [370478] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17958), 1, + ACTIONS(18461), 1, anon_sym_SEMI, - [368918] = 2, + [370485] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17960), 1, - anon_sym_LPAREN2, - [368925] = 2, + ACTIONS(18463), 1, + sym_identifier, + [370492] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_LT_LT_EQ, - [368932] = 2, + ACTIONS(18465), 1, + anon_sym_RPAREN, + [370499] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17962), 1, - anon_sym_RBRACE, - [368939] = 2, + ACTIONS(18467), 1, + anon_sym_SEMI, + [370506] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17964), 1, - anon_sym_RPAREN, - [368946] = 2, + ACTIONS(17603), 1, + anon_sym_PERCENT_EQ, + [370513] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17966), 1, - anon_sym_RPAREN, - [368953] = 2, + ACTIONS(15894), 1, + anon_sym_SEMI, + [370520] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17968), 1, + ACTIONS(18469), 1, anon_sym_RPAREN, - [368960] = 2, + [370527] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17970), 1, - anon_sym_COLON, - [368967] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12618), 1, + ACTIONS(18471), 1, anon_sym_RPAREN, - [368974] = 2, + [370534] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13877), 1, - anon_sym_LBRACE, - [368981] = 2, + ACTIONS(18473), 1, + anon_sym_RPAREN, + [370541] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17972), 1, - sym_identifier, - [368988] = 2, + ACTIONS(18475), 1, + anon_sym_RPAREN, + [370548] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15506), 1, + ACTIONS(18477), 1, anon_sym_SEMI, - [368995] = 2, + [370555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17974), 1, - anon_sym_SEMI, - [369002] = 2, + ACTIONS(18479), 1, + aux_sym_preproc_if_token2, + [370562] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_PIPE_EQ, - [369009] = 2, + ACTIONS(18481), 1, + sym_identifier, + [370569] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17976), 1, - anon_sym_SEMI, - [369016] = 2, + ACTIONS(18483), 1, + aux_sym_preproc_if_token2, + [370576] = 2, + ACTIONS(8699), 1, + aux_sym_preproc_include_token2, + ACTIONS(14065), 1, + sym_comment, + [370583] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17978), 1, - aux_sym_preproc_if_token2, - [369023] = 2, + ACTIONS(17603), 1, + anon_sym_PLUS_EQ, + [370590] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17980), 1, - anon_sym_SEMI, - [369030] = 2, + ACTIONS(17603), 1, + anon_sym_DASH_EQ, + [370597] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12351), 1, - anon_sym_COLON, - [369037] = 2, + ACTIONS(17603), 1, + anon_sym_LT_LT_EQ, + [370604] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17982), 1, + ACTIONS(14361), 1, sym_identifier, - [369044] = 2, + [370611] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17984), 1, - aux_sym_preproc_if_token2, - [369051] = 2, + ACTIONS(17603), 1, + anon_sym_GT_GT_EQ, + [370618] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14882), 1, - anon_sym_COMMA, - [369058] = 2, + ACTIONS(18485), 1, + anon_sym_DQUOTE, + [370625] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17986), 1, - sym_identifier, - [369065] = 2, + ACTIONS(17603), 1, + anon_sym_AMP_EQ, + [370632] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17988), 1, - anon_sym_RBRACE, - [369072] = 2, - ACTIONS(13686), 1, + ACTIONS(12645), 1, + anon_sym_SEMI, + [370639] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(17990), 1, - aux_sym_preproc_include_token2, - [369079] = 2, + ACTIONS(12711), 1, + anon_sym_RPAREN, + [370646] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10135), 1, - anon_sym_SEMI, - [369086] = 2, + ACTIONS(17603), 1, + anon_sym_CARET_EQ, + [370653] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17992), 1, + ACTIONS(18487), 1, sym_identifier, - [369093] = 2, + [370660] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17994), 1, - sym_identifier, - [369100] = 2, + ACTIONS(17603), 1, + anon_sym_PIPE_EQ, + [370667] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17996), 1, + ACTIONS(18489), 1, anon_sym_SEMI, - [369107] = 2, + [370674] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17998), 1, + ACTIONS(17393), 1, + anon_sym_RBRACE, + [370681] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12713), 1, anon_sym_RPAREN, - [369114] = 2, + [370688] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18000), 1, + ACTIONS(18491), 1, sym_identifier, - [369121] = 2, + [370695] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18002), 1, + ACTIONS(18493), 1, anon_sym_SEMI, - [369128] = 2, + [370702] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18004), 1, - aux_sym_preproc_if_token2, - [369135] = 2, + ACTIONS(10870), 1, + anon_sym_RPAREN, + [370709] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18006), 1, - anon_sym_DQUOTE, - [369142] = 2, + ACTIONS(18495), 1, + anon_sym_SEMI, + [370716] = 2, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(18497), 1, + aux_sym_preproc_include_token2, + [370723] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18008), 1, - anon_sym_SEMI, - [369149] = 2, + ACTIONS(12956), 1, + anon_sym_RPAREN, + [370730] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18010), 1, - anon_sym_STAR, - [369156] = 2, + ACTIONS(12715), 1, + anon_sym_SEMI, + [370737] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18012), 1, - aux_sym_preproc_if_token2, - [369163] = 2, + ACTIONS(17603), 1, + anon_sym_or, + [370744] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12349), 1, - anon_sym_RPAREN, - [369170] = 2, + ACTIONS(6022), 1, + anon_sym_DOT_DOT_DOT, + [370751] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10085), 1, + ACTIONS(10497), 1, anon_sym_SEMI, - [369177] = 2, + [370758] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18014), 1, - anon_sym_RPAREN, - [369184] = 2, + ACTIONS(12647), 1, + anon_sym_SEMI, + [370765] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18016), 1, + ACTIONS(18499), 1, anon_sym_SEMI, - [369191] = 2, + [370772] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18018), 1, - anon_sym_DQUOTE, - [369198] = 2, + ACTIONS(15188), 1, + anon_sym_SEMI, + [370779] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10802), 1, - sym_identifier, - [369205] = 2, + ACTIONS(6025), 1, + anon_sym_DOT_DOT_DOT, + [370786] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15818), 1, - anon_sym_SEMI, - [369212] = 2, + ACTIONS(14875), 1, + anon_sym_RBRACE, + [370793] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12271), 1, - anon_sym_COLON, - [369219] = 2, + ACTIONS(6031), 1, + anon_sym_DOT_DOT_DOT, + [370800] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18020), 1, + ACTIONS(18501), 1, anon_sym_RPAREN, - [369226] = 2, + [370807] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18022), 1, - anon_sym_DQUOTE, - [369233] = 2, + ACTIONS(18503), 1, + anon_sym_COLON, + [370814] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18024), 1, - anon_sym_DQUOTE, - [369240] = 2, + ACTIONS(18505), 1, + sym_identifier, + [370821] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18026), 1, - anon_sym_EQ, - [369247] = 2, + ACTIONS(18507), 1, + anon_sym_RPAREN, + [370828] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18028), 1, - anon_sym_SEMI, - [369254] = 2, + ACTIONS(18509), 1, + anon_sym_LPAREN2, + [370835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18030), 1, - anon_sym_COLON, - [369261] = 2, + ACTIONS(12547), 1, + anon_sym_RPAREN, + [370842] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12335), 1, - anon_sym_COLON, - [369268] = 2, + ACTIONS(18511), 1, + anon_sym_SEMI, + [370849] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18032), 1, - anon_sym_RPAREN, - [369275] = 2, + ACTIONS(17603), 1, + anon_sym_COMMA, + [370856] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18034), 1, + ACTIONS(18513), 1, anon_sym_RPAREN, - [369282] = 2, + [370863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18036), 1, - anon_sym_DQUOTE, - [369289] = 2, + ACTIONS(18515), 1, + anon_sym_SEMI, + [370870] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18038), 1, - anon_sym_LPAREN2, - [369296] = 2, + ACTIONS(18517), 1, + anon_sym_RPAREN, + [370877] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18040), 1, + ACTIONS(18519), 1, anon_sym_SEMI, - [369303] = 2, + [370884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18042), 1, + ACTIONS(18521), 1, anon_sym_SEMI, - [369310] = 2, + [370891] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18044), 1, - anon_sym_RPAREN, - [369317] = 2, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(16364), 1, - aux_sym_preproc_include_token2, - [369324] = 2, + ACTIONS(6028), 1, + anon_sym_DOT_DOT_DOT, + [370898] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18046), 1, + ACTIONS(18523), 1, anon_sym_RPAREN, - [369331] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(18048), 1, - anon_sym_DQUOTE, - [369338] = 2, + [370905] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12279), 1, - anon_sym_COLON, - [369345] = 2, + ACTIONS(18525), 1, + anon_sym_RPAREN, + [370912] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_GT, - [369352] = 2, + ACTIONS(16190), 1, + anon_sym_SEMI, + [370919] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16995), 1, - anon_sym_RBRACE, - [369359] = 2, + ACTIONS(18527), 1, + anon_sym_RPAREN, + [370926] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18050), 1, + ACTIONS(18529), 1, anon_sym_SEMI, - [369366] = 2, + [370933] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_GT_GT_EQ, - [369373] = 2, + ACTIONS(18531), 1, + anon_sym_DQUOTE, + [370940] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18052), 1, + ACTIONS(18533), 1, anon_sym_RPAREN, - [369380] = 2, + [370947] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15680), 1, - anon_sym_SEMI, - [369387] = 2, + ACTIONS(13098), 1, + anon_sym_RPAREN, + [370954] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18054), 1, - anon_sym_DQUOTE, - [369394] = 2, + ACTIONS(18535), 1, + anon_sym_RPAREN, + [370961] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18056), 1, - anon_sym_DQUOTE, - [369401] = 2, + ACTIONS(18537), 1, + aux_sym_preproc_if_token2, + [370968] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15616), 1, - anon_sym_SEMI, - [369408] = 2, + ACTIONS(18539), 1, + anon_sym_RPAREN, + [370975] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18058), 1, - anon_sym_DQUOTE, - [369415] = 2, + ACTIONS(15786), 1, + anon_sym_SEMI, + [370982] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18060), 1, - sym_identifier, - [369422] = 2, + ACTIONS(18541), 1, + anon_sym_RPAREN, + [370989] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18062), 1, + ACTIONS(18543), 1, anon_sym_LPAREN2, - [369429] = 2, + [370996] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18064), 1, + ACTIONS(18545), 1, anon_sym_LPAREN2, - [369436] = 2, + [371003] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18066), 1, + ACTIONS(18547), 1, anon_sym_LPAREN2, - [369443] = 2, + [371010] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18068), 1, + ACTIONS(18549), 1, anon_sym_LPAREN2, - [369450] = 2, + [371017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18070), 1, + ACTIONS(18551), 1, anon_sym_LPAREN2, - [369457] = 2, - ACTIONS(13686), 1, + [371024] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(18072), 1, - aux_sym_preproc_include_token2, - [369464] = 2, + ACTIONS(15194), 1, + anon_sym_SEMI, + [371031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18074), 1, + ACTIONS(18553), 1, anon_sym_LPAREN2, - [369471] = 2, + [371038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18076), 1, - anon_sym_COLON, - [369478] = 2, + ACTIONS(17603), 1, + anon_sym_and, + [371045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18078), 1, - aux_sym_preproc_if_token2, - [369485] = 2, + ACTIONS(18555), 1, + anon_sym_SEMI, + [371052] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17603), 1, + anon_sym_bitor, + [371059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18080), 1, + ACTIONS(18557), 1, anon_sym_while, - [369492] = 2, + [371066] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18082), 1, - aux_sym_preproc_if_token2, - [369499] = 2, + ACTIONS(17603), 1, + anon_sym_xor, + [371073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18084), 1, + ACTIONS(18559), 1, anon_sym_LPAREN2, - [369506] = 2, + [371080] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18086), 1, - aux_sym_preproc_if_token2, - [369513] = 2, + ACTIONS(18561), 1, + anon_sym_SEMI, + [371087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18088), 1, - aux_sym_preproc_if_token2, - [369520] = 2, + ACTIONS(18563), 1, + anon_sym_SEMI, + [371094] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18090), 1, + ACTIONS(18565), 1, anon_sym_LPAREN2, - [369527] = 2, + [371101] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18092), 1, + ACTIONS(18567), 1, anon_sym_LPAREN2, - [369534] = 2, + [371108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18094), 1, - aux_sym_preproc_if_token2, - [369541] = 2, + ACTIONS(18569), 1, + anon_sym_SEMI, + [371115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18096), 1, + ACTIONS(18571), 1, anon_sym_EQ, - [369548] = 2, + [371122] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18098), 1, + ACTIONS(18573), 1, sym_raw_string_content, - [369555] = 2, + [371129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18100), 1, + ACTIONS(18575), 1, anon_sym_STAR, - [369562] = 2, + [371136] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18102), 1, - aux_sym_preproc_if_token2, - [369569] = 2, + ACTIONS(12887), 1, + anon_sym_RPAREN, + [371143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18104), 1, - anon_sym_SEMI, - [369576] = 2, + ACTIONS(18577), 1, + anon_sym_RPAREN, + [371150] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18106), 1, - aux_sym_preproc_if_token2, - [369583] = 2, + ACTIONS(14913), 1, + anon_sym_RBRACE, + [371157] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18108), 1, + ACTIONS(18579), 1, anon_sym_COMMA, - [369590] = 2, + [371164] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12096), 1, - anon_sym_SEMI, - [369597] = 2, + ACTIONS(18581), 1, + anon_sym_LBRACE, + [371171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14896), 1, - anon_sym_EQ, - [369604] = 2, + ACTIONS(18583), 1, + anon_sym_LPAREN2, + [371178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10345), 1, - anon_sym_RPAREN, - [369611] = 2, + ACTIONS(18585), 1, + anon_sym_DQUOTE, + [371185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18110), 1, + ACTIONS(18587), 1, anon_sym_RPAREN, - [369618] = 2, + [371192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18112), 1, + ACTIONS(18589), 1, anon_sym_COLON, - [369625] = 2, + [371199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18114), 1, - anon_sym_LPAREN2, - [369632] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(18116), 1, - anon_sym_SEMI, - [369639] = 2, + ACTIONS(18591), 1, + anon_sym_COLON, + [371206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18118), 1, + ACTIONS(18593), 1, anon_sym_LPAREN2, - [369646] = 2, + [371213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18120), 1, + ACTIONS(18595), 1, anon_sym_LPAREN2, - [369653] = 2, + [371220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18122), 1, + ACTIONS(18597), 1, anon_sym_LPAREN2, - [369660] = 2, + [371227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18124), 1, + ACTIONS(12958), 1, anon_sym_RPAREN, - [369667] = 2, + [371234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18126), 1, + ACTIONS(18599), 1, anon_sym_LPAREN2, - [369674] = 2, + [371241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18128), 1, - anon_sym_SEMI, - [369681] = 2, + ACTIONS(18601), 1, + anon_sym_RPAREN, + [371248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18130), 1, - anon_sym_RPAREN, - [369688] = 2, + ACTIONS(18603), 1, + sym_identifier, + [371255] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18605), 1, + sym_identifier, + [371262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18132), 1, + ACTIONS(18607), 1, anon_sym_while, - [369695] = 2, + [371269] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18134), 1, - anon_sym_SEMI, - [369702] = 2, + ACTIONS(17168), 1, + anon_sym_LBRACE, + [371276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18136), 1, + ACTIONS(18609), 1, anon_sym_LPAREN2, - [369709] = 2, + [371283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18138), 1, + ACTIONS(18611), 1, anon_sym_DQUOTE, - [369716] = 2, + [371290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18140), 1, + ACTIONS(18613), 1, anon_sym_LPAREN2, - [369723] = 2, + [371297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18142), 1, - anon_sym_SEMI, - [369730] = 2, + ACTIONS(18615), 1, + anon_sym_LBRACE, + [371304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18144), 1, + ACTIONS(18617), 1, anon_sym_EQ, - [369737] = 2, + [371311] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18146), 1, + ACTIONS(18619), 1, sym_raw_string_content, - [369744] = 2, + [371318] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18148), 1, - anon_sym_SEMI, - [369751] = 2, + ACTIONS(18621), 1, + anon_sym_RPAREN, + [371325] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18150), 1, + ACTIONS(18623), 1, anon_sym_COMMA, - [369758] = 2, + [371332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18152), 1, - anon_sym_SEMI, - [369765] = 2, + ACTIONS(17603), 1, + anon_sym_bitand, + [371339] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18154), 1, - sym_identifier, - [369772] = 2, + ACTIONS(17359), 1, + anon_sym_RBRACE, + [371346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10149), 1, - anon_sym_SEMI, - [369779] = 2, + ACTIONS(11287), 1, + sym_identifier, + [371353] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18156), 1, + ACTIONS(18625), 1, anon_sym_RPAREN, - [369786] = 2, + [371360] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18158), 1, + ACTIONS(18627), 1, anon_sym_COLON, - [369793] = 2, + [371367] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18160), 1, - anon_sym_LBRACE, - [369800] = 2, + ACTIONS(17603), 1, + anon_sym_not_eq, + [371374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18162), 1, + ACTIONS(18629), 1, anon_sym_LPAREN2, - [369807] = 2, + [371381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18164), 1, + ACTIONS(18631), 1, anon_sym_LPAREN2, - [369814] = 2, + [371388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18166), 1, + ACTIONS(18633), 1, anon_sym_LPAREN2, - [369821] = 2, + [371395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18168), 1, - sym_identifier, - [369828] = 2, + ACTIONS(17603), 1, + anon_sym_DOT_STAR, + [371402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18170), 1, + ACTIONS(18635), 1, anon_sym_LPAREN2, - [369835] = 2, + [371409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18172), 1, - anon_sym_SEMI, - [369842] = 2, + ACTIONS(18637), 1, + anon_sym_LPAREN2, + [371416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18174), 1, - anon_sym_RPAREN, - [369849] = 2, + ACTIONS(18639), 1, + sym_identifier, + [371423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18176), 1, + ACTIONS(18641), 1, anon_sym_while, - [369856] = 2, + [371430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18178), 1, + ACTIONS(18643), 1, anon_sym_LPAREN2, - [369863] = 2, + [371437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18180), 1, - anon_sym_RPAREN, - [369870] = 2, + ACTIONS(17603), 1, + anon_sym_DASH_GT_STAR, + [371444] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18182), 1, + ACTIONS(18645), 1, anon_sym_LPAREN2, - [369877] = 2, + [371451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18184), 1, - anon_sym_LPAREN2, - [369884] = 2, + ACTIONS(18647), 1, + anon_sym_RPAREN, + [371458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18186), 1, + ACTIONS(18649), 1, anon_sym_EQ, - [369891] = 2, + [371465] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18188), 1, + ACTIONS(18651), 1, sym_raw_string_content, - [369898] = 2, + [371472] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12491), 1, - anon_sym_RPAREN, - [369905] = 2, + ACTIONS(17603), 1, + anon_sym_DASH, + [371479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18190), 1, + ACTIONS(18653), 1, anon_sym_COMMA, - [369912] = 2, + [371486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18192), 1, - anon_sym_LPAREN2, - [369919] = 2, + ACTIONS(18655), 1, + anon_sym_SEMI, + [371493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10141), 1, - anon_sym_SEMI, - [369926] = 2, + ACTIONS(12587), 1, + anon_sym_COLON, + [371500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18194), 1, + ACTIONS(18657), 1, anon_sym_RPAREN, - [369933] = 2, + [371507] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18196), 1, + ACTIONS(18659), 1, anon_sym_COLON, - [369940] = 2, + [371514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18198), 1, - anon_sym_DQUOTE, - [369947] = 2, + ACTIONS(18661), 1, + anon_sym_SEMI, + [371521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18200), 1, + ACTIONS(18663), 1, anon_sym_LPAREN2, - [369954] = 2, + [371528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18202), 1, + ACTIONS(18665), 1, anon_sym_LPAREN2, - [369961] = 2, + [371535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18204), 1, + ACTIONS(18667), 1, anon_sym_LPAREN2, - [369968] = 2, + [371542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18206), 1, - anon_sym_RPAREN, - [369975] = 2, + ACTIONS(18669), 1, + anon_sym_SEMI, + [371549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18208), 1, + ACTIONS(18671), 1, anon_sym_LPAREN2, - [369982] = 2, + [371556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18210), 1, - anon_sym_SEMI, - [369989] = 2, + ACTIONS(18673), 1, + sym_identifier, + [371563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18212), 1, - anon_sym_DQUOTE, - [369996] = 2, + ACTIONS(18675), 1, + anon_sym_COLON, + [371570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18214), 1, + ACTIONS(18677), 1, anon_sym_LPAREN2, - [370003] = 2, + [371577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12142), 1, - anon_sym_RBRACE, - [370010] = 2, + ACTIONS(18679), 1, + anon_sym_RPAREN, + [371584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18216), 1, + ACTIONS(18681), 1, anon_sym_LPAREN2, - [370017] = 2, + [371591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18218), 1, + ACTIONS(18683), 1, anon_sym_RPAREN, - [370024] = 2, + [371598] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18220), 1, + ACTIONS(18685), 1, anon_sym_EQ, - [370031] = 2, + [371605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18222), 1, + ACTIONS(18687), 1, sym_raw_string_content, - [370038] = 2, + [371612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18224), 1, - anon_sym_STAR, - [370045] = 2, + ACTIONS(18689), 1, + anon_sym_while, + [371619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18226), 1, + ACTIONS(18691), 1, anon_sym_COMMA, - [370052] = 2, + [371626] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18228), 1, - anon_sym_RBRACE, - [370059] = 2, - ACTIONS(13686), 1, + ACTIONS(18693), 1, + anon_sym_LPAREN2, + [371633] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(18230), 1, - aux_sym_preproc_include_token2, - [370066] = 2, + ACTIONS(18695), 1, + sym_identifier, + [371640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18232), 1, + ACTIONS(18697), 1, anon_sym_RPAREN, - [370073] = 2, + [371647] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18234), 1, + ACTIONS(18699), 1, anon_sym_COLON, - [370080] = 2, + [371654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18236), 1, - aux_sym_preproc_if_token2, - [370087] = 2, + ACTIONS(18701), 1, + sym_raw_string_content, + [371661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18238), 1, + ACTIONS(18703), 1, anon_sym_LPAREN2, - [370094] = 2, + [371668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18240), 1, + ACTIONS(18705), 1, anon_sym_LPAREN2, - [370101] = 2, + [371675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18242), 1, + ACTIONS(18707), 1, anon_sym_LPAREN2, - [370108] = 2, + [371682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18244), 1, - anon_sym_RPAREN, - [370115] = 2, + ACTIONS(16072), 1, + anon_sym_SEMI, + [371689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18246), 1, + ACTIONS(18709), 1, anon_sym_LPAREN2, - [370122] = 2, + [371696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18248), 1, - anon_sym_SEMI, - [370129] = 2, + ACTIONS(18711), 1, + aux_sym_preproc_if_token2, + [371703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18250), 1, - aux_sym_preproc_if_token2, - [370136] = 2, + ACTIONS(12673), 1, + anon_sym_SEMI, + [371710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18252), 1, + ACTIONS(18713), 1, anon_sym_LPAREN2, - [370143] = 2, + [371717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12573), 1, + ACTIONS(18715), 1, anon_sym_RPAREN, - [370150] = 2, + [371724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18254), 1, + ACTIONS(18717), 1, anon_sym_LPAREN2, - [370157] = 2, + [371731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18256), 1, - anon_sym_SEMI, - [370164] = 2, + ACTIONS(18719), 1, + anon_sym_RBRACE, + [371738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18258), 1, + ACTIONS(18721), 1, anon_sym_EQ, - [370171] = 2, + [371745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18260), 1, + ACTIONS(18723), 1, sym_raw_string_content, - [370178] = 2, - ACTIONS(3), 1, + [371752] = 2, + ACTIONS(14065), 1, sym_comment, - ACTIONS(18262), 1, - aux_sym_preproc_if_token2, - [370185] = 2, + ACTIONS(16777), 1, + aux_sym_preproc_include_token2, + [371759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18264), 1, + ACTIONS(18725), 1, anon_sym_COMMA, - [370192] = 2, + [371766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18266), 1, - anon_sym_LBRACE, - [370199] = 2, + ACTIONS(17603), 1, + anon_sym_PLUS, + [371773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18268), 1, - anon_sym_RPAREN, - [370206] = 2, + ACTIONS(18727), 1, + anon_sym_SEMI, + [371780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18270), 1, + ACTIONS(18729), 1, anon_sym_RPAREN, - [370213] = 2, + [371787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18272), 1, + ACTIONS(18731), 1, anon_sym_COLON, - [370220] = 2, + [371794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15922), 1, - anon_sym_LBRACE, - [370227] = 2, + ACTIONS(18733), 1, + anon_sym_SEMI, + [371801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18274), 1, + ACTIONS(18735), 1, anon_sym_LPAREN2, - [370234] = 2, + [371808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18276), 1, + ACTIONS(18737), 1, anon_sym_LPAREN2, - [370241] = 2, + [371815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18278), 1, + ACTIONS(18739), 1, anon_sym_LPAREN2, - [370248] = 2, + [371822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18280), 1, - anon_sym_SEMI, - [370255] = 2, + ACTIONS(18741), 1, + anon_sym_RPAREN, + [371829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18282), 1, + ACTIONS(18743), 1, anon_sym_LPAREN2, - [370262] = 2, + [371836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18284), 1, - anon_sym_SEMI, - [370269] = 2, + ACTIONS(18745), 1, + anon_sym_RPAREN, + [371843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18286), 1, + ACTIONS(18747), 1, anon_sym_LPAREN2, - [370276] = 2, + [371850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18288), 1, - anon_sym_DQUOTE, - [370283] = 2, + ACTIONS(18749), 1, + aux_sym_preproc_if_token2, + [371857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18290), 1, + ACTIONS(18751), 1, anon_sym_LPAREN2, - [370290] = 2, + [371864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18292), 1, + ACTIONS(18753), 1, sym_raw_string_content, - [370297] = 2, + [371871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18294), 1, - anon_sym_RPAREN, - [370304] = 2, + ACTIONS(18755), 1, + anon_sym_SEMI, + [371878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18296), 1, + ACTIONS(18757), 1, anon_sym_COMMA, - [370311] = 2, + [371885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18298), 1, - anon_sym_LPAREN2, - [370318] = 2, + ACTIONS(18759), 1, + anon_sym_SEMI, + [371892] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18300), 1, + ACTIONS(18761), 1, anon_sym_RPAREN, - [370325] = 2, + [371899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18302), 1, + ACTIONS(18763), 1, anon_sym_COLON, - [370332] = 2, + [371906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18304), 1, + ACTIONS(10481), 1, anon_sym_SEMI, - [370339] = 2, + [371913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18306), 1, + ACTIONS(18765), 1, anon_sym_LPAREN2, - [370346] = 2, + [371920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18308), 1, + ACTIONS(18767), 1, anon_sym_LPAREN2, - [370353] = 2, + [371927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18310), 1, - sym_auto, - [370360] = 2, + ACTIONS(12996), 1, + anon_sym_RPAREN, + [371934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18312), 1, + ACTIONS(18769), 1, anon_sym_LPAREN2, - [370367] = 2, + [371941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18314), 1, - aux_sym_preproc_if_token2, - [370374] = 2, + ACTIONS(17423), 1, + anon_sym_RBRACE, + [371948] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18316), 1, - anon_sym_RPAREN, - [370381] = 2, + ACTIONS(17603), 1, + anon_sym_STAR, + [371955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18318), 1, + ACTIONS(18771), 1, anon_sym_LPAREN2, - [370388] = 2, + [371962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18320), 1, + ACTIONS(18773), 1, sym_raw_string_content, - [370395] = 2, + [371969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18322), 1, - sym_identifier, - [370402] = 2, + ACTIONS(18775), 1, + anon_sym_RPAREN, + [371976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18324), 1, + ACTIONS(18777), 1, anon_sym_RPAREN, - [370409] = 2, + [371983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18326), 1, + ACTIONS(18779), 1, anon_sym_LPAREN2, - [370416] = 2, + [371990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18328), 1, + ACTIONS(18781), 1, anon_sym_LPAREN2, - [370423] = 2, + [371997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18330), 1, + ACTIONS(18783), 1, anon_sym_LPAREN2, - [370430] = 2, + [372004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18332), 1, + ACTIONS(18785), 1, anon_sym_LPAREN2, - [370437] = 2, + [372011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18334), 1, + ACTIONS(18787), 1, sym_raw_string_content, - [370444] = 2, + [372018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18336), 1, + ACTIONS(18789), 1, anon_sym_RPAREN, - [370451] = 2, + [372025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18338), 1, + ACTIONS(18791), 1, anon_sym_LPAREN2, - [370458] = 2, + [372032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18340), 1, + ACTIONS(18793), 1, anon_sym_LPAREN2, - [370465] = 2, + [372039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18342), 1, + ACTIONS(18795), 1, anon_sym_LPAREN2, - [370472] = 2, + [372046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18344), 1, + ACTIONS(18797), 1, anon_sym_LPAREN2, - [370479] = 2, + [372053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18346), 1, + ACTIONS(18799), 1, sym_raw_string_content, - [370486] = 2, + [372060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18348), 1, + ACTIONS(18801), 1, anon_sym_RPAREN, - [370493] = 2, + [372067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18350), 1, + ACTIONS(18803), 1, anon_sym_LPAREN2, - [370500] = 2, + [372074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18352), 1, + ACTIONS(18805), 1, anon_sym_LPAREN2, - [370507] = 2, + [372081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18354), 1, + ACTIONS(18807), 1, sym_raw_string_content, - [370514] = 2, + [372088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18356), 1, + ACTIONS(18809), 1, anon_sym_RPAREN, - [370521] = 2, + [372095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18358), 1, + ACTIONS(18811), 1, anon_sym_LPAREN2, - [370528] = 2, + [372102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18360), 1, + ACTIONS(18813), 1, anon_sym_LPAREN2, - [370535] = 2, + [372109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18362), 1, + ACTIONS(18815), 1, sym_raw_string_content, - [370542] = 2, + [372116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18364), 1, + ACTIONS(18817), 1, anon_sym_RPAREN, - [370549] = 2, + [372123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18366), 1, + ACTIONS(18819), 1, anon_sym_LPAREN2, - [370556] = 2, + [372130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18368), 1, + ACTIONS(18821), 1, anon_sym_LPAREN2, - [370563] = 2, + [372137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18370), 1, + ACTIONS(18823), 1, sym_raw_string_content, - [370570] = 2, + [372144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18372), 1, + ACTIONS(18825), 1, anon_sym_RPAREN, - [370577] = 2, + [372151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18374), 1, + ACTIONS(18827), 1, anon_sym_LPAREN2, - [370584] = 2, + [372158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18376), 1, + ACTIONS(18829), 1, anon_sym_LPAREN2, - [370591] = 2, + [372165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18378), 1, + ACTIONS(18831), 1, sym_raw_string_content, - [370598] = 2, + [372172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18380), 1, + ACTIONS(18833), 1, anon_sym_RPAREN, - [370605] = 2, + [372179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18382), 1, + ACTIONS(18835), 1, anon_sym_LPAREN2, - [370612] = 2, + [372186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18384), 1, + ACTIONS(18837), 1, anon_sym_LPAREN2, - [370619] = 2, + [372193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18386), 1, + ACTIONS(18839), 1, sym_raw_string_content, - [370626] = 2, + [372200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18388), 1, + ACTIONS(18841), 1, anon_sym_RPAREN, - [370633] = 2, + [372207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18390), 1, + ACTIONS(18843), 1, anon_sym_LPAREN2, - [370640] = 2, + [372214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18392), 1, + ACTIONS(18845), 1, anon_sym_LPAREN2, - [370647] = 2, + [372221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18394), 1, + ACTIONS(18847), 1, sym_raw_string_content, - [370654] = 2, + [372228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18396), 1, + ACTIONS(18849), 1, anon_sym_RPAREN, - [370661] = 2, + [372235] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18398), 1, + ACTIONS(18851), 1, anon_sym_LPAREN2, - [370668] = 2, + [372242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18400), 1, + ACTIONS(18853), 1, anon_sym_LPAREN2, - [370675] = 2, + [372249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18402), 1, + ACTIONS(18855), 1, sym_raw_string_content, - [370682] = 2, + [372256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18404), 1, + ACTIONS(18857), 1, anon_sym_RPAREN, - [370689] = 2, + [372263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18406), 1, + ACTIONS(18859), 1, anon_sym_LPAREN2, - [370696] = 2, + [372270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18408), 1, + ACTIONS(18861), 1, anon_sym_LPAREN2, - [370703] = 2, + [372277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18410), 1, + ACTIONS(18863), 1, sym_raw_string_content, - [370710] = 2, + [372284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18412), 1, + ACTIONS(18865), 1, anon_sym_RPAREN, - [370717] = 2, + [372291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18414), 1, + ACTIONS(18867), 1, anon_sym_LPAREN2, - [370724] = 2, + [372298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18416), 1, + ACTIONS(18869), 1, anon_sym_LPAREN2, - [370731] = 2, + [372305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18418), 1, + ACTIONS(18871), 1, sym_raw_string_content, - [370738] = 2, + [372312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18420), 1, + ACTIONS(18873), 1, anon_sym_RPAREN, - [370745] = 2, + [372319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18422), 1, + ACTIONS(18875), 1, anon_sym_LPAREN2, - [370752] = 2, + [372326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18424), 1, + ACTIONS(18877), 1, sym_raw_string_content, - [370759] = 2, + [372333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18426), 1, + ACTIONS(18879), 1, anon_sym_RPAREN, - [370766] = 2, + [372340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18428), 1, + ACTIONS(18881), 1, anon_sym_LPAREN2, - [370773] = 2, + [372347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18430), 1, + ACTIONS(18883), 1, anon_sym_LPAREN2, - [370780] = 2, + [372354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18432), 1, + ACTIONS(18885), 1, anon_sym_LPAREN2, - [370787] = 2, + [372361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18434), 1, - anon_sym_RPAREN, - [370794] = 2, + ACTIONS(18887), 1, + anon_sym_SLASH, + [372368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18436), 1, + ACTIONS(18889), 1, sym_identifier, - [370801] = 2, + [372375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18438), 1, + ACTIONS(18891), 1, anon_sym_LPAREN2, - [370808] = 2, + [372382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18440), 1, + ACTIONS(18893), 1, anon_sym_LPAREN2, - [370815] = 2, + [372389] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18895), 1, + sym_identifier, + [372396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18442), 1, + ACTIONS(18897), 1, sym_identifier, - [370822] = 2, + [372403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18444), 1, + ACTIONS(18899), 1, anon_sym_RPAREN, - [370829] = 2, + [372410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18446), 1, + ACTIONS(18901), 1, anon_sym_SEMI, - [370836] = 2, + [372417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18448), 1, - anon_sym_SEMI, - [370843] = 2, + ACTIONS(18903), 1, + anon_sym_DQUOTE, + [372424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18450), 1, + ACTIONS(18905), 1, anon_sym_RPAREN, - [370850] = 2, + [372431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18452), 1, + ACTIONS(12940), 1, anon_sym_RPAREN, - [370857] = 2, + [372438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18454), 1, - anon_sym_RPAREN, - [370864] = 2, + ACTIONS(12667), 1, + anon_sym_COLON, + [372445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14519), 1, + ACTIONS(18907), 1, anon_sym_RBRACE, - [370871] = 2, + [372452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18456), 1, - anon_sym_RPAREN, - [370878] = 2, + ACTIONS(12651), 1, + anon_sym_SEMI, + [372459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5682), 1, - anon_sym_DOT_DOT_DOT, - [370885] = 2, - ACTIONS(8384), 1, - aux_sym_preproc_include_token2, - ACTIONS(13686), 1, + ACTIONS(12743), 1, + anon_sym_COLON, + [372466] = 2, + ACTIONS(3), 1, sym_comment, - [370892] = 2, + ACTIONS(18909), 1, + anon_sym_EQ, + [372473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18458), 1, + ACTIONS(18911), 1, aux_sym_preproc_if_token2, - [370899] = 2, + [372480] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15562), 1, - anon_sym_SEMI, - [370906] = 2, + ACTIONS(18913), 1, + aux_sym_preproc_if_token2, + [372487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18460), 1, - anon_sym_RPAREN, - [370913] = 2, + ACTIONS(12295), 1, + anon_sym_RBRACE, + [372494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18462), 1, - anon_sym_RPAREN, - [370920] = 2, + ACTIONS(18915), 1, + anon_sym_LPAREN2, + [372501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18464), 1, - anon_sym_LPAREN2, - [370927] = 2, + ACTIONS(18917), 1, + anon_sym_SEMI, + [372508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18466), 1, - anon_sym_RPAREN, - [370934] = 2, + ACTIONS(18919), 1, + anon_sym_RBRACE, + [372515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18468), 1, + ACTIONS(18921), 1, anon_sym_RPAREN, - [370941] = 2, + [372522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18470), 1, - anon_sym_RPAREN, - [370948] = 2, + ACTIONS(18923), 1, + aux_sym_preproc_if_token2, + [372529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18472), 1, - anon_sym_SEMI, - [370955] = 2, + ACTIONS(18925), 1, + aux_sym_preproc_if_token2, + [372536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18474), 1, + ACTIONS(18927), 1, anon_sym_RPAREN, - [370962] = 2, + [372543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18476), 1, - anon_sym_RPAREN, - [370969] = 2, + ACTIONS(18929), 1, + anon_sym_SEMI, + [372550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18478), 1, - sym_identifier, - [370976] = 2, + ACTIONS(17603), 1, + anon_sym_PERCENT, + [372557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10457), 1, + ACTIONS(18931), 1, anon_sym_RPAREN, - [370983] = 2, + [372564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18480), 1, - sym_identifier, - [370990] = 2, + ACTIONS(18933), 1, + anon_sym_RPAREN, + [372571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_or, - [370997] = 2, + ACTIONS(18935), 1, + aux_sym_preproc_if_token2, + [372578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14801), 1, - anon_sym_SEMI, - [371004] = 2, + ACTIONS(12315), 1, + anon_sym_RBRACE, + [372585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11937), 1, + ACTIONS(18937), 1, anon_sym_SEMI, - [371011] = 2, + [372592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18482), 1, - anon_sym_RPAREN, - [371018] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(18484), 1, - aux_sym_preproc_if_token2, - [371025] = 2, + ACTIONS(12723), 1, + anon_sym_SEMI, + [372599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18486), 1, - aux_sym_preproc_if_token2, - [371032] = 2, + ACTIONS(18939), 1, + anon_sym_RPAREN, + [372606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18488), 1, - aux_sym_preproc_if_token2, - [371039] = 2, + ACTIONS(16644), 1, + anon_sym_COLON_COLON, + [372613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_EQ_EQ, - [371046] = 2, + ACTIONS(18941), 1, + anon_sym_SEMI, + [372620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18490), 1, + ACTIONS(16126), 1, anon_sym_SEMI, - [371053] = 2, + [372627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18492), 1, + ACTIONS(18943), 1, anon_sym_RPAREN, - [371060] = 2, + [372634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18494), 1, - sym_identifier, - [371067] = 2, + ACTIONS(15160), 1, + anon_sym_SEMI, + [372641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18496), 1, - anon_sym_private, - [371074] = 2, + ACTIONS(18945), 1, + anon_sym_SEMI, + [372648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18498), 1, - anon_sym_STAR, - [371081] = 2, + ACTIONS(18947), 1, + anon_sym_DQUOTE, + [372655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18500), 1, + ACTIONS(18949), 1, sym_identifier, - [371088] = 2, + [372662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18502), 1, + ACTIONS(18951), 1, anon_sym_RPAREN, - [371095] = 2, + [372669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18504), 1, - sym_identifier, - [371102] = 2, + ACTIONS(18953), 1, + anon_sym_DQUOTE, + [372676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18506), 1, + ACTIONS(18955), 1, sym_raw_string_content, - [371109] = 2, + [372683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5673), 1, - anon_sym_DOT_DOT_DOT, - [371116] = 2, + ACTIONS(18957), 1, + sym_identifier, + [372690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18508), 1, - anon_sym_SEMI, - [371123] = 2, + ACTIONS(18959), 1, + sym_raw_string_delimiter, + [372697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18510), 1, - anon_sym_STAR, - [371130] = 2, + ACTIONS(13068), 1, + anon_sym_RPAREN, + [372704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18512), 1, + ACTIONS(18961), 1, anon_sym_RPAREN, - [371137] = 2, + [372711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18514), 1, + ACTIONS(18963), 1, anon_sym_RPAREN, - [371144] = 2, + [372718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12391), 1, + ACTIONS(12928), 1, anon_sym_RPAREN, - [371151] = 2, + [372725] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18965), 1, + anon_sym_COMMA, + [372732] = 2, + ACTIONS(14065), 1, + sym_comment, + ACTIONS(18967), 1, + aux_sym_preproc_include_token2, + [372739] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18969), 1, + anon_sym_LBRACE, + [372746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18516), 1, + ACTIONS(12451), 1, + anon_sym_RBRACE, + [372753] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18971), 1, anon_sym_RPAREN, - [371158] = 2, + [372760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18518), 1, + ACTIONS(18973), 1, aux_sym_preproc_if_token2, - [371165] = 2, + [372767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18520), 1, - anon_sym_SEMI, - [371172] = 2, + ACTIONS(18975), 1, + sym_identifier, + [372774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_and, - [371179] = 2, + ACTIONS(18977), 1, + anon_sym_EQ, + [372781] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18522), 1, + ACTIONS(18979), 1, anon_sym_SEMI, - [371186] = 2, + [372788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5658), 1, - anon_sym_DOT_DOT_DOT, - [371193] = 2, + ACTIONS(18981), 1, + aux_sym_preproc_if_token2, + [372795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18524), 1, + ACTIONS(18983), 1, anon_sym_RPAREN, - [371200] = 2, + [372802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5637), 1, - anon_sym_DOT_DOT_DOT, - [371207] = 2, + ACTIONS(18985), 1, + anon_sym_RPAREN, + [372809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_bitor, - [371214] = 2, + ACTIONS(18987), 1, + anon_sym_DQUOTE, + [372816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18526), 1, + ACTIONS(18989), 1, anon_sym_RPAREN, - [371221] = 2, + [372823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18528), 1, - anon_sym_SEMI, - [371228] = 2, + ACTIONS(18991), 1, + anon_sym_RPAREN, + [372830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18530), 1, - anon_sym_SEMI, - [371235] = 2, + ACTIONS(18993), 1, + anon_sym_RPAREN, + [372837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18532), 1, + ACTIONS(12962), 1, anon_sym_RPAREN, - [371242] = 2, + [372844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5643), 1, - anon_sym_DOT_DOT_DOT, - [371249] = 2, + ACTIONS(18995), 1, + anon_sym_RPAREN, + [372851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5652), 1, - anon_sym_DOT_DOT_DOT, - [371256] = 2, + ACTIONS(10558), 1, + anon_sym_SEMI, + [372858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18534), 1, - sym_identifier, - [371263] = 2, + ACTIONS(18997), 1, + anon_sym_LPAREN2, + [372865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18536), 1, + ACTIONS(18999), 1, anon_sym_SEMI, - [371270] = 2, + [372872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5649), 1, - anon_sym_DOT_DOT_DOT, - [371277] = 2, + ACTIONS(19001), 1, + anon_sym_RPAREN, + [372879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12088), 1, - anon_sym_RBRACE, - [371284] = 2, + ACTIONS(19003), 1, + anon_sym_STAR, + [372886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12501), 1, - anon_sym_RPAREN, - [371291] = 2, + ACTIONS(16787), 1, + anon_sym_SEMI, + [372893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18538), 1, - anon_sym_EQ, - [371298] = 2, + ACTIONS(19005), 1, + aux_sym_preproc_if_token2, + [372900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16299), 1, - anon_sym_RPAREN, - [371305] = 2, + ACTIONS(19007), 1, + aux_sym_preproc_if_token2, + [372907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14521), 1, - anon_sym_RBRACE, - [371312] = 2, + ACTIONS(19009), 1, + sym_identifier, + [372914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18540), 1, - anon_sym_STAR, - [371319] = 2, + ACTIONS(19011), 1, + aux_sym_preproc_if_token2, + [372921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12355), 1, + ACTIONS(19013), 1, + anon_sym_DQUOTE, + [372928] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19015), 1, anon_sym_RPAREN, - [371326] = 2, + [372935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18542), 1, + ACTIONS(15202), 1, anon_sym_SEMI, - [371333] = 2, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(18544), 1, - aux_sym_preproc_include_token2, - [371340] = 2, + [372942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12620), 1, - anon_sym_RPAREN, - [371347] = 2, + ACTIONS(19017), 1, + sym_identifier, + [372949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12373), 1, - anon_sym_SEMI, - [371354] = 2, + ACTIONS(19019), 1, + sym_identifier, + [372956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18546), 1, - anon_sym_RPAREN, - [371361] = 2, + ACTIONS(12543), 1, + anon_sym_RBRACE, + [372963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18548), 1, - aux_sym_preproc_if_token2, - [371368] = 2, + ACTIONS(19021), 1, + anon_sym_RPAREN, + [372970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12357), 1, - anon_sym_RPAREN, - [371375] = 2, + ACTIONS(12549), 1, + anon_sym_SEMI, + [372977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_BANG_EQ, - [371382] = 2, + ACTIONS(19023), 1, + anon_sym_STAR, + [372984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12658), 1, - anon_sym_RPAREN, - [371389] = 2, + ACTIONS(19025), 1, + aux_sym_preproc_if_token2, + [372991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5640), 1, - anon_sym_DOT_DOT_DOT, - [371396] = 2, + ACTIONS(19027), 1, + aux_sym_preproc_if_token2, + [372998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12359), 1, + ACTIONS(12753), 1, anon_sym_RPAREN, - [371403] = 2, + [373005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18550), 1, + ACTIONS(19029), 1, anon_sym_RPAREN, - [371410] = 2, + [373012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18552), 1, - sym_identifier, - [371417] = 2, + ACTIONS(19031), 1, + anon_sym_RPAREN, + [373019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_xor, - [371424] = 2, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(13855), 1, - aux_sym_preproc_include_token2, - [371431] = 2, + ACTIONS(12922), 1, + anon_sym_RPAREN, + [373026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18554), 1, + ACTIONS(19033), 1, anon_sym_RPAREN, - [371438] = 2, + [373033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17033), 1, - anon_sym_RBRACE, - [371445] = 2, + ACTIONS(19035), 1, + anon_sym_RPAREN, + [373040] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_DOT_DOT_DOT, - [371452] = 2, + ACTIONS(19037), 1, + anon_sym_RPAREN, + [373047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18556), 1, - anon_sym_RBRACK, - [371459] = 2, + ACTIONS(19039), 1, + anon_sym_RPAREN, + [373054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12263), 1, + ACTIONS(12731), 1, anon_sym_COLON, - [371466] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(18558), 1, - anon_sym_LPAREN2, - [371473] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_DOT_DOT_DOT, - [371480] = 2, + [373061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12365), 1, + ACTIONS(19041), 1, anon_sym_COLON, - [371487] = 2, + [373068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18560), 1, - sym_identifier, - [371494] = 2, + ACTIONS(19043), 1, + anon_sym_SEMI, + [373075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14825), 1, + ACTIONS(19045), 1, anon_sym_SEMI, - [371501] = 2, + [373082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14499), 1, - anon_sym_RBRACE, - [371508] = 2, + ACTIONS(12663), 1, + anon_sym_SEMI, + [373089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18562), 1, - anon_sym_DQUOTE, - [371515] = 2, + ACTIONS(14911), 1, + anon_sym_RBRACE, + [373096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18564), 1, - anon_sym_RPAREN, - [371522] = 2, + ACTIONS(19047), 1, + aux_sym_preproc_if_token2, + [373103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5668), 1, - anon_sym_DOT_DOT_DOT, - [371529] = 2, + ACTIONS(19049), 1, + anon_sym_DQUOTE, + [373110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18566), 1, - anon_sym_SEMI, - [371536] = 2, - ACTIONS(13686), 1, - sym_comment, - ACTIONS(16112), 1, - aux_sym_preproc_include_token2, - [371543] = 2, + ACTIONS(15198), 1, + anon_sym_LBRACE, + [373117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18568), 1, + ACTIONS(19051), 1, anon_sym_LPAREN2, - [371550] = 2, + [373124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18570), 1, + ACTIONS(19053), 1, anon_sym_LPAREN2, - [371557] = 2, + [373131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18572), 1, + ACTIONS(19055), 1, sym_identifier, - [371564] = 2, + [373138] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18574), 1, - anon_sym_SEMI, - [371571] = 2, + ACTIONS(19057), 1, + sym_identifier, + [373145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18576), 1, - anon_sym_SEMI, - [371578] = 2, + ACTIONS(19059), 1, + anon_sym_RPAREN, + [373152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18578), 1, - anon_sym_SEMI, - [371585] = 2, + ACTIONS(19061), 1, + sym_identifier, + [373159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18580), 1, + ACTIONS(19063), 1, anon_sym_LPAREN2, - [371592] = 2, + [373166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18582), 1, - sym_identifier, - [371599] = 2, + ACTIONS(19065), 1, + anon_sym_SEMI, + [373173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18584), 1, + ACTIONS(19067), 1, sym_identifier, - [371606] = 2, + [373180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18586), 1, + ACTIONS(19069), 1, sym_raw_string_content, - [371613] = 2, + [373187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18588), 1, - anon_sym_SEMI, - [371620] = 2, + ACTIONS(14897), 1, + anon_sym_RBRACE, + [373194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18590), 1, - anon_sym_LPAREN2, - [371627] = 2, + ACTIONS(19071), 1, + anon_sym_SEMI, + [373201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17039), 1, - anon_sym_RBRACE, - [371634] = 2, + ACTIONS(19073), 1, + sym_identifier, + [373208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18592), 1, - anon_sym_SEMI, - [371641] = 2, + ACTIONS(19075), 1, + anon_sym_RPAREN, + [373215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18594), 1, + ACTIONS(19077), 1, anon_sym_LPAREN2, - [371648] = 2, + [373222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18596), 1, + ACTIONS(19079), 1, anon_sym_LPAREN2, - [371655] = 2, + [373229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18598), 1, + ACTIONS(19081), 1, sym_identifier, - [371662] = 2, + [373236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18600), 1, - anon_sym_DQUOTE, - [371669] = 2, + ACTIONS(19083), 1, + aux_sym_preproc_if_token2, + [373243] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14740), 1, - anon_sym_LBRACE, - [371676] = 2, + ACTIONS(19085), 1, + aux_sym_preproc_if_token2, + [373250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18602), 1, - anon_sym_RPAREN, - [371683] = 2, + ACTIONS(19087), 1, + anon_sym_SEMI, + [373257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18604), 1, + ACTIONS(19089), 1, anon_sym_LPAREN2, - [371690] = 2, + [373264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18606), 1, + ACTIONS(19091), 1, sym_identifier, - [371697] = 2, + [373271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18608), 1, + ACTIONS(19093), 1, sym_raw_string_content, - [371704] = 2, + [373278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18610), 1, - sym_identifier, - [371711] = 2, + ACTIONS(19095), 1, + anon_sym_RPAREN, + [373285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12281), 1, - anon_sym_SEMI, - [371718] = 2, + ACTIONS(19097), 1, + anon_sym_STAR, + [373292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18612), 1, - anon_sym_DQUOTE, - [371725] = 2, + ACTIONS(19099), 1, + anon_sym_RPAREN, + [373299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18614), 1, + ACTIONS(19101), 1, anon_sym_LPAREN2, - [371732] = 2, + [373306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18616), 1, + ACTIONS(19103), 1, sym_identifier, - [371739] = 2, + [373313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18618), 1, - anon_sym_LPAREN2, - [371746] = 2, - ACTIONS(8402), 1, - aux_sym_preproc_include_token2, - ACTIONS(13686), 1, + ACTIONS(19105), 1, + anon_sym_SEMI, + [373320] = 2, + ACTIONS(3), 1, sym_comment, - [371753] = 2, + ACTIONS(19107), 1, + anon_sym_SEMI, + [373327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_AMP_EQ, - [371760] = 2, + ACTIONS(19109), 1, + anon_sym_RPAREN, + [373334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18620), 1, + ACTIONS(19111), 1, sym_identifier, - [371767] = 2, + [373341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18622), 1, + ACTIONS(19113), 1, sym_raw_string_content, - [371774] = 2, + [373348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_COMMA, - [371781] = 2, + ACTIONS(14889), 1, + anon_sym_RBRACE, + [373355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5646), 1, - anon_sym_DOT_DOT_DOT, - [371788] = 2, + ACTIONS(19115), 1, + anon_sym_STAR, + [373362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18624), 1, + ACTIONS(19117), 1, anon_sym_LPAREN2, - [371795] = 2, + [373369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18626), 1, + ACTIONS(19119), 1, sym_identifier, - [371802] = 2, + [373376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18628), 1, + ACTIONS(16044), 1, anon_sym_SEMI, - [371809] = 2, + [373383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18630), 1, - aux_sym_preproc_if_token2, - [371816] = 2, + ACTIONS(19121), 1, + anon_sym_SEMI, + [373390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18632), 1, - anon_sym_DQUOTE, - [371823] = 2, + ACTIONS(19123), 1, + anon_sym_RPAREN, + [373397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18634), 1, + ACTIONS(19125), 1, sym_identifier, - [371830] = 2, + [373404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18636), 1, + ACTIONS(19127), 1, sym_raw_string_content, - [371837] = 2, + [373411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_bitand, - [371844] = 2, + ACTIONS(19129), 1, + anon_sym_SEMI, + [373418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18638), 1, + ACTIONS(19131), 1, anon_sym_LPAREN2, - [371851] = 2, + [373425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18640), 1, + ACTIONS(19133), 1, sym_identifier, - [371858] = 2, + [373432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18642), 1, - anon_sym_DQUOTE, - [371865] = 2, + ACTIONS(19135), 1, + anon_sym_SEMI, + [373439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12551), 1, + ACTIONS(19137), 1, anon_sym_RPAREN, - [371872] = 2, + [373446] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18644), 1, + ACTIONS(19139), 1, sym_identifier, - [371879] = 2, + [373453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18646), 1, + ACTIONS(19141), 1, sym_raw_string_content, - [371886] = 2, + [373460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18648), 1, - anon_sym_RPAREN, - [371893] = 2, + ACTIONS(19143), 1, + aux_sym_preproc_if_token2, + [373467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18650), 1, - sym_identifier, - [371900] = 2, + ACTIONS(19145), 1, + aux_sym_preproc_if_token2, + [373474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_DASH, - [371907] = 2, + ACTIONS(19147), 1, + anon_sym_DOT_DOT_DOT, + [373481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18652), 1, + ACTIONS(19150), 1, sym_identifier, - [371914] = 2, + [373488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18654), 1, + ACTIONS(19152), 1, sym_raw_string_content, - [371921] = 2, + [373495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18656), 1, + ACTIONS(19154), 1, anon_sym_RPAREN, - [371928] = 2, + [373502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18658), 1, - anon_sym_RPAREN, - [371935] = 2, + ACTIONS(12599), 1, + anon_sym_COLON, + [373509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18660), 1, + ACTIONS(19156), 1, sym_raw_string_content, - [371942] = 2, + [373516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18662), 1, - anon_sym_STAR, - [371949] = 2, + ACTIONS(11677), 1, + sym_identifier, + [373523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18664), 1, + ACTIONS(19158), 1, sym_raw_string_content, - [371956] = 2, + [373530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18666), 1, + ACTIONS(19160), 1, anon_sym_SEMI, - [371963] = 2, + [373537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18668), 1, + ACTIONS(19162), 1, sym_raw_string_content, - [371970] = 2, + [373544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18670), 1, + ACTIONS(19164), 1, anon_sym_RPAREN, - [371977] = 2, + [373551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18672), 1, + ACTIONS(19166), 1, sym_raw_string_content, - [371984] = 2, + [373558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18674), 1, - anon_sym_RPAREN, - [371991] = 2, + ACTIONS(19168), 1, + sym_identifier, + [373565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18676), 1, + ACTIONS(19170), 1, sym_raw_string_content, - [371998] = 2, + [373572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18678), 1, + ACTIONS(19172), 1, sym_identifier, - [372005] = 2, + [373579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18680), 1, + ACTIONS(19174), 1, sym_raw_string_content, - [372012] = 2, + [373586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18682), 1, - anon_sym_RPAREN, - [372019] = 2, + ACTIONS(19176), 1, + anon_sym_DQUOTE, + [373593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18684), 1, + ACTIONS(19178), 1, sym_raw_string_content, - [372026] = 2, + [373600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18686), 1, - aux_sym_preproc_if_token2, - [372033] = 2, + ACTIONS(19180), 1, + anon_sym_STAR, + [373607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18688), 1, + ACTIONS(19182), 1, sym_raw_string_content, - [372040] = 2, + [373614] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18690), 1, - sym_auto, - [372047] = 2, + ACTIONS(19184), 1, + anon_sym_SEMI, + [373621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18692), 1, + ACTIONS(19186), 1, sym_raw_string_content, - [372054] = 2, + [373628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18694), 1, - aux_sym_preproc_if_token2, - [372061] = 2, + ACTIONS(19188), 1, + sym_identifier, + [373635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18696), 1, + ACTIONS(19190), 1, sym_raw_string_content, - [372068] = 2, + [373642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18698), 1, - anon_sym_SEMI, - [372075] = 2, + ACTIONS(14243), 1, + anon_sym_LBRACE, + [373649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18700), 1, + ACTIONS(19192), 1, sym_raw_string_content, - [372082] = 2, + [373656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18702), 1, - anon_sym_RPAREN, - [372089] = 2, + ACTIONS(19194), 1, + aux_sym_preproc_if_token2, + [373663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18704), 1, + ACTIONS(19196), 1, sym_raw_string_content, - [372096] = 2, + [373670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18706), 1, - anon_sym_RPAREN, - [372103] = 2, + ACTIONS(19198), 1, + anon_sym_SEMI, + [373677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18708), 1, + ACTIONS(19200), 1, sym_raw_string_content, - [372110] = 2, + [373684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_PLUS, - [372117] = 2, - ACTIONS(13686), 1, + ACTIONS(12557), 1, + anon_sym_RPAREN, + [373691] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(18710), 1, - aux_sym_preproc_include_token2, - [372124] = 2, + ACTIONS(19202), 1, + aux_sym_preproc_if_token2, + [373698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18712), 1, - anon_sym_SEMI, - [372131] = 2, + ACTIONS(19204), 1, + anon_sym_RPAREN, + [373705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18714), 1, - anon_sym_SEMI, - [372138] = 2, + ACTIONS(19206), 1, + anon_sym_RPAREN, + [373712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18716), 1, + ACTIONS(19208), 1, anon_sym_LPAREN2, - [372145] = 2, + [373719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18718), 1, - anon_sym_DQUOTE, - [372152] = 2, + ACTIONS(12649), 1, + anon_sym_COLON, + [373726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18720), 1, - anon_sym_RPAREN, - [372159] = 2, + ACTIONS(19210), 1, + anon_sym_private, + [373733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_STAR, - [372166] = 2, + ACTIONS(19212), 1, + anon_sym_SEMI, + [373740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18722), 1, + ACTIONS(19214), 1, anon_sym_RPAREN, - [372173] = 2, + [373747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18724), 1, - anon_sym_SLASH, - [372180] = 2, + ACTIONS(19216), 1, + anon_sym_LBRACE, + [373754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18726), 1, + ACTIONS(19218), 1, anon_sym_RPAREN, - [372187] = 2, + [373761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18728), 1, - anon_sym_COLON, - [372194] = 2, + ACTIONS(19220), 1, + anon_sym_RBRACE, + [373768] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16857), 1, - anon_sym_SEMI, - [372201] = 2, + ACTIONS(19222), 1, + anon_sym_RPAREN, + [373775] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18730), 1, + ACTIONS(19224), 1, anon_sym_LPAREN2, - [372208] = 2, + [373782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18732), 1, - anon_sym_SEMI, - [372215] = 2, + ACTIONS(19226), 1, + anon_sym_DQUOTE, + [373789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18734), 1, - anon_sym_SEMI, - [372222] = 2, + ACTIONS(19228), 1, + anon_sym_private, + [373796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17129), 1, - anon_sym_PERCENT, - [372229] = 2, + ACTIONS(15404), 1, + anon_sym_LBRACE, + [373803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18736), 1, - anon_sym_RPAREN, - [372236] = 2, + ACTIONS(19230), 1, + anon_sym_STAR, + [373810] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12377), 1, + ACTIONS(12739), 1, anon_sym_COLON, - [372243] = 2, + [373817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18738), 1, + ACTIONS(19232), 1, anon_sym_LPAREN2, - [372250] = 2, + [373824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18740), 1, + ACTIONS(19234), 1, anon_sym_LPAREN2, - [372257] = 2, + [373831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18742), 1, - anon_sym_SEMI, - [372264] = 2, + ACTIONS(12906), 1, + anon_sym_RPAREN, + [373838] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18744), 1, + ACTIONS(19236), 1, anon_sym_LPAREN2, - [372271] = 2, + [373845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18746), 1, + ACTIONS(19238), 1, anon_sym_LPAREN2, - [372278] = 2, + [373852] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18748), 1, - anon_sym_RPAREN, - [372285] = 2, + ACTIONS(19240), 1, + sym_identifier, + [373859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18750), 1, + ACTIONS(19242), 1, anon_sym_LPAREN2, - [372292] = 2, + [373866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18752), 1, + ACTIONS(19244), 1, anon_sym_LPAREN2, - [372299] = 2, + [373873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18754), 1, - anon_sym_DQUOTE, - [372306] = 2, + ACTIONS(14903), 1, + anon_sym_RBRACE, + [373880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18756), 1, + ACTIONS(19246), 1, anon_sym_LPAREN2, - [372313] = 2, + [373887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18758), 1, + ACTIONS(19248), 1, anon_sym_LPAREN2, - [372320] = 2, + [373894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12597), 1, - anon_sym_RPAREN, - [372327] = 2, + ACTIONS(19250), 1, + anon_sym_COLON, + [373901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18760), 1, + ACTIONS(19252), 1, anon_sym_LPAREN2, - [372334] = 2, + [373908] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18762), 1, + ACTIONS(19254), 1, anon_sym_LPAREN2, - [372341] = 2, + [373915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18764), 1, - sym_identifier, - [372348] = 2, + ACTIONS(19256), 1, + anon_sym_SEMI, + [373922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18766), 1, + ACTIONS(19258), 1, anon_sym_LPAREN2, - [372355] = 2, + [373929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18768), 1, + ACTIONS(19260), 1, anon_sym_LPAREN2, - [372362] = 2, + [373936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11939), 1, - anon_sym_RBRACE, - [372369] = 2, + ACTIONS(19262), 1, + aux_sym_preproc_if_token2, + [373943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18770), 1, + ACTIONS(19264), 1, anon_sym_LPAREN2, - [372376] = 2, + [373950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18772), 1, + ACTIONS(19266), 1, anon_sym_LPAREN2, - [372383] = 2, + [373957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18774), 1, + ACTIONS(19268), 1, anon_sym_LPAREN2, - [372390] = 2, + [373964] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18776), 1, + ACTIONS(19270), 1, anon_sym_LPAREN2, - [372397] = 2, + [373971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18778), 1, + ACTIONS(19272), 1, anon_sym_LPAREN2, - [372404] = 2, + [373978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18780), 1, + ACTIONS(19274), 1, anon_sym_LPAREN2, - [372411] = 2, + [373985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18782), 1, + ACTIONS(19276), 1, anon_sym_LPAREN2, - [372418] = 2, + [373992] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18784), 1, + ACTIONS(19278), 1, anon_sym_LPAREN2, - [372425] = 2, + [373999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18786), 1, + ACTIONS(19280), 1, anon_sym_LPAREN2, - [372432] = 2, + [374006] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18788), 1, + ACTIONS(19282), 1, anon_sym_LPAREN2, - [372439] = 2, + [374013] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18790), 1, + ACTIONS(19284), 1, anon_sym_LPAREN2, - [372446] = 2, + [374020] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18792), 1, + ACTIONS(19286), 1, anon_sym_LPAREN2, - [372453] = 2, + [374027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18794), 1, + ACTIONS(19288), 1, anon_sym_LPAREN2, - [372460] = 2, + [374034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18796), 1, - anon_sym_RPAREN, - [372467] = 2, + ACTIONS(19290), 1, + anon_sym_DQUOTE, + [374041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18798), 1, - aux_sym_preproc_if_token2, - [372474] = 2, + ACTIONS(19292), 1, + anon_sym_RPAREN, + [374048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18800), 1, - anon_sym_COLON, - [372481] = 2, + ACTIONS(19294), 1, + anon_sym_RPAREN, + [374055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12291), 1, - anon_sym_COLON, - [372488] = 2, - ACTIONS(3), 1, + ACTIONS(19296), 1, + anon_sym_LPAREN2, + [374062] = 2, + ACTIONS(14065), 1, sym_comment, - ACTIONS(18802), 1, - anon_sym_SEMI, - [372495] = 2, + ACTIONS(19298), 1, + aux_sym_preproc_include_token2, + [374069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18804), 1, - anon_sym_SEMI, - [372502] = 2, - ACTIONS(13686), 1, + ACTIONS(19300), 1, + anon_sym_RPAREN, + [374076] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16672), 1, - aux_sym_preproc_include_token2, - [372509] = 2, + ACTIONS(19302), 1, + anon_sym_RPAREN, + [374083] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18806), 1, + ACTIONS(19304), 1, anon_sym_LPAREN2, - [372516] = 2, + [374090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18808), 1, + ACTIONS(19306), 1, anon_sym_LPAREN2, - [372523] = 2, + [374097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18810), 1, + ACTIONS(19308), 1, anon_sym_LPAREN2, - [372530] = 2, + [374104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18812), 1, + ACTIONS(19310), 1, anon_sym_LPAREN2, - [372537] = 2, + [374111] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18814), 1, + ACTIONS(19312), 1, anon_sym_LPAREN2, - [372544] = 2, + [374118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18816), 1, + ACTIONS(19314), 1, anon_sym_LPAREN2, - [372551] = 2, + [374125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18818), 1, + ACTIONS(19316), 1, anon_sym_LPAREN2, - [372558] = 2, + [374132] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18820), 1, - anon_sym_RPAREN, + ACTIONS(6006), 1, + anon_sym_DOT_DOT_DOT, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(3721)] = 0, - [SMALL_STATE(3722)] = 71, - [SMALL_STATE(3723)] = 146, - [SMALL_STATE(3724)] = 217, - [SMALL_STATE(3725)] = 294, - [SMALL_STATE(3726)] = 369, - [SMALL_STATE(3727)] = 446, - [SMALL_STATE(3728)] = 517, - [SMALL_STATE(3729)] = 594, - [SMALL_STATE(3730)] = 665, - [SMALL_STATE(3731)] = 740, - [SMALL_STATE(3732)] = 815, - [SMALL_STATE(3733)] = 890, - [SMALL_STATE(3734)] = 969, - [SMALL_STATE(3735)] = 1048, - [SMALL_STATE(3736)] = 1119, - [SMALL_STATE(3737)] = 1190, - [SMALL_STATE(3738)] = 1261, - [SMALL_STATE(3739)] = 1344, - [SMALL_STATE(3740)] = 1419, - [SMALL_STATE(3741)] = 1502, - [SMALL_STATE(3742)] = 1573, - [SMALL_STATE(3743)] = 1644, - [SMALL_STATE(3744)] = 1721, - [SMALL_STATE(3745)] = 1804, - [SMALL_STATE(3746)] = 1875, - [SMALL_STATE(3747)] = 1950, - [SMALL_STATE(3748)] = 2021, - [SMALL_STATE(3749)] = 2092, - [SMALL_STATE(3750)] = 2163, - [SMALL_STATE(3751)] = 2234, - [SMALL_STATE(3752)] = 2305, - [SMALL_STATE(3753)] = 2376, - [SMALL_STATE(3754)] = 2447, - [SMALL_STATE(3755)] = 2518, - [SMALL_STATE(3756)] = 2589, - [SMALL_STATE(3757)] = 2660, - [SMALL_STATE(3758)] = 2731, - [SMALL_STATE(3759)] = 2802, - [SMALL_STATE(3760)] = 2873, - [SMALL_STATE(3761)] = 2944, - [SMALL_STATE(3762)] = 3015, - [SMALL_STATE(3763)] = 3090, - [SMALL_STATE(3764)] = 3179, - [SMALL_STATE(3765)] = 3250, - [SMALL_STATE(3766)] = 3321, - [SMALL_STATE(3767)] = 3392, - [SMALL_STATE(3768)] = 3475, - [SMALL_STATE(3769)] = 3546, - [SMALL_STATE(3770)] = 3617, - [SMALL_STATE(3771)] = 3688, - [SMALL_STATE(3772)] = 3769, - [SMALL_STATE(3773)] = 3840, - [SMALL_STATE(3774)] = 3929, - [SMALL_STATE(3775)] = 4004, - [SMALL_STATE(3776)] = 4075, - [SMALL_STATE(3777)] = 4146, - [SMALL_STATE(3778)] = 4217, - [SMALL_STATE(3779)] = 4294, - [SMALL_STATE(3780)] = 4373, - [SMALL_STATE(3781)] = 4444, - [SMALL_STATE(3782)] = 4515, - [SMALL_STATE(3783)] = 4586, - [SMALL_STATE(3784)] = 4657, - [SMALL_STATE(3785)] = 4728, - [SMALL_STATE(3786)] = 4799, - [SMALL_STATE(3787)] = 4870, - [SMALL_STATE(3788)] = 4947, - [SMALL_STATE(3789)] = 5018, - [SMALL_STATE(3790)] = 5089, - [SMALL_STATE(3791)] = 5172, - [SMALL_STATE(3792)] = 5243, - [SMALL_STATE(3793)] = 5314, - [SMALL_STATE(3794)] = 5391, - [SMALL_STATE(3795)] = 5462, - [SMALL_STATE(3796)] = 5537, - [SMALL_STATE(3797)] = 5608, - [SMALL_STATE(3798)] = 5685, - [SMALL_STATE(3799)] = 5764, - [SMALL_STATE(3800)] = 5847, - [SMALL_STATE(3801)] = 5926, - [SMALL_STATE(3802)] = 5997, - [SMALL_STATE(3803)] = 6074, - [SMALL_STATE(3804)] = 6145, - [SMALL_STATE(3805)] = 6228, - [SMALL_STATE(3806)] = 6299, - [SMALL_STATE(3807)] = 6370, - [SMALL_STATE(3808)] = 6459, - [SMALL_STATE(3809)] = 6530, - [SMALL_STATE(3810)] = 6601, - [SMALL_STATE(3811)] = 6684, - [SMALL_STATE(3812)] = 6755, - [SMALL_STATE(3813)] = 6838, - [SMALL_STATE(3814)] = 6921, - [SMALL_STATE(3815)] = 6992, - [SMALL_STATE(3816)] = 7063, - [SMALL_STATE(3817)] = 7140, - [SMALL_STATE(3818)] = 7211, - [SMALL_STATE(3819)] = 7286, - [SMALL_STATE(3820)] = 7357, - [SMALL_STATE(3821)] = 7440, - [SMALL_STATE(3822)] = 7511, - [SMALL_STATE(3823)] = 7588, - [SMALL_STATE(3824)] = 7659, - [SMALL_STATE(3825)] = 7730, - [SMALL_STATE(3826)] = 7801, - [SMALL_STATE(3827)] = 7872, - [SMALL_STATE(3828)] = 7943, - [SMALL_STATE(3829)] = 8026, - [SMALL_STATE(3830)] = 8097, - [SMALL_STATE(3831)] = 8168, - [SMALL_STATE(3832)] = 8251, - [SMALL_STATE(3833)] = 8328, - [SMALL_STATE(3834)] = 8405, - [SMALL_STATE(3835)] = 8480, - [SMALL_STATE(3836)] = 8555, - [SMALL_STATE(3837)] = 8626, - [SMALL_STATE(3838)] = 8703, - [SMALL_STATE(3839)] = 8786, - [SMALL_STATE(3840)] = 8857, - [SMALL_STATE(3841)] = 8928, - [SMALL_STATE(3842)] = 8999, - [SMALL_STATE(3843)] = 9082, - [SMALL_STATE(3844)] = 9153, - [SMALL_STATE(3845)] = 9224, - [SMALL_STATE(3846)] = 9307, - [SMALL_STATE(3847)] = 9378, - [SMALL_STATE(3848)] = 9449, - [SMALL_STATE(3849)] = 9520, - [SMALL_STATE(3850)] = 9591, - [SMALL_STATE(3851)] = 9661, - [SMALL_STATE(3852)] = 9749, - [SMALL_STATE(3853)] = 9825, - [SMALL_STATE(3854)] = 9895, - [SMALL_STATE(3855)] = 9965, - [SMALL_STATE(3856)] = 10035, - [SMALL_STATE(3857)] = 10105, - [SMALL_STATE(3858)] = 10203, - [SMALL_STATE(3859)] = 10291, - [SMALL_STATE(3860)] = 10369, - [SMALL_STATE(3861)] = 10445, - [SMALL_STATE(3862)] = 10533, - [SMALL_STATE(3863)] = 10613, - [SMALL_STATE(3864)] = 10725, - [SMALL_STATE(3865)] = 10801, - [SMALL_STATE(3866)] = 10913, - [SMALL_STATE(3867)] = 10983, - [SMALL_STATE(3868)] = 11053, - [SMALL_STATE(3869)] = 11123, - [SMALL_STATE(3870)] = 11193, - [SMALL_STATE(3871)] = 11263, - [SMALL_STATE(3872)] = 11333, - [SMALL_STATE(3873)] = 11403, - [SMALL_STATE(3874)] = 11473, - [SMALL_STATE(3875)] = 11543, - [SMALL_STATE(3876)] = 11613, - [SMALL_STATE(3877)] = 11683, - [SMALL_STATE(3878)] = 11753, - [SMALL_STATE(3879)] = 11823, - [SMALL_STATE(3880)] = 11893, - [SMALL_STATE(3881)] = 11963, - [SMALL_STATE(3882)] = 12033, - [SMALL_STATE(3883)] = 12103, - [SMALL_STATE(3884)] = 12173, - [SMALL_STATE(3885)] = 12243, - [SMALL_STATE(3886)] = 12313, - [SMALL_STATE(3887)] = 12425, - [SMALL_STATE(3888)] = 12497, - [SMALL_STATE(3889)] = 12609, - [SMALL_STATE(3890)] = 12721, - [SMALL_STATE(3891)] = 12791, - [SMALL_STATE(3892)] = 12889, - [SMALL_STATE(3893)] = 12987, - [SMALL_STATE(3894)] = 13063, - [SMALL_STATE(3895)] = 13175, - [SMALL_STATE(3896)] = 13245, - [SMALL_STATE(3897)] = 13343, - [SMALL_STATE(3898)] = 13441, - [SMALL_STATE(3899)] = 13511, - [SMALL_STATE(3900)] = 13599, - [SMALL_STATE(3901)] = 13669, - [SMALL_STATE(3902)] = 13739, - [SMALL_STATE(3903)] = 13827, - [SMALL_STATE(3904)] = 13925, - [SMALL_STATE(3905)] = 14011, - [SMALL_STATE(3906)] = 14081, - [SMALL_STATE(3907)] = 14151, - [SMALL_STATE(3908)] = 14229, - [SMALL_STATE(3909)] = 14299, - [SMALL_STATE(3910)] = 14379, - [SMALL_STATE(3911)] = 14455, - [SMALL_STATE(3912)] = 14535, - [SMALL_STATE(3913)] = 14609, - [SMALL_STATE(3914)] = 14683, - [SMALL_STATE(3915)] = 14757, - [SMALL_STATE(3916)] = 14845, - [SMALL_STATE(3917)] = 14919, - [SMALL_STATE(3918)] = 14993, - [SMALL_STATE(3919)] = 15091, - [SMALL_STATE(3920)] = 15189, - [SMALL_STATE(3921)] = 15277, - [SMALL_STATE(3922)] = 15375, - [SMALL_STATE(3923)] = 15449, - [SMALL_STATE(3924)] = 15523, - [SMALL_STATE(3925)] = 15597, - [SMALL_STATE(3926)] = 15671, - [SMALL_STATE(3927)] = 15745, - [SMALL_STATE(3928)] = 15827, - [SMALL_STATE(3929)] = 15909, - [SMALL_STATE(3930)] = 16007, - [SMALL_STATE(3931)] = 16105, - [SMALL_STATE(3932)] = 16179, - [SMALL_STATE(3933)] = 16259, - [SMALL_STATE(3934)] = 16333, - [SMALL_STATE(3935)] = 16407, - [SMALL_STATE(3936)] = 16505, - [SMALL_STATE(3937)] = 16593, - [SMALL_STATE(3938)] = 16676, - [SMALL_STATE(3939)] = 16745, - [SMALL_STATE(3940)] = 16844, - [SMALL_STATE(3941)] = 16913, - [SMALL_STATE(3942)] = 16982, - [SMALL_STATE(3943)] = 17051, - [SMALL_STATE(3944)] = 17120, - [SMALL_STATE(3945)] = 17189, - [SMALL_STATE(3946)] = 17258, - [SMALL_STATE(3947)] = 17327, - [SMALL_STATE(3948)] = 17396, - [SMALL_STATE(3949)] = 17465, - [SMALL_STATE(3950)] = 17534, - [SMALL_STATE(3951)] = 17603, - [SMALL_STATE(3952)] = 17672, - [SMALL_STATE(3953)] = 17741, - [SMALL_STATE(3954)] = 17810, - [SMALL_STATE(3955)] = 17887, - [SMALL_STATE(3956)] = 17992, - [SMALL_STATE(3957)] = 18061, - [SMALL_STATE(3958)] = 18166, - [SMALL_STATE(3959)] = 18235, - [SMALL_STATE(3960)] = 18340, - [SMALL_STATE(3961)] = 18409, - [SMALL_STATE(3962)] = 18514, - [SMALL_STATE(3963)] = 18619, - [SMALL_STATE(3964)] = 18688, - [SMALL_STATE(3965)] = 18793, - [SMALL_STATE(3966)] = 18870, - [SMALL_STATE(3967)] = 18941, - [SMALL_STATE(3968)] = 19010, - [SMALL_STATE(3969)] = 19079, - [SMALL_STATE(3970)] = 19184, - [SMALL_STATE(3971)] = 19253, - [SMALL_STATE(3972)] = 19358, - [SMALL_STATE(3973)] = 19457, - [SMALL_STATE(3974)] = 19526, - [SMALL_STATE(3975)] = 19595, - [SMALL_STATE(3976)] = 19670, - [SMALL_STATE(3977)] = 19749, - [SMALL_STATE(3978)] = 19826, - [SMALL_STATE(3979)] = 19895, - [SMALL_STATE(3980)] = 19964, - [SMALL_STATE(3981)] = 20063, - [SMALL_STATE(3982)] = 20134, - [SMALL_STATE(3983)] = 20205, - [SMALL_STATE(3984)] = 20292, - [SMALL_STATE(3985)] = 20379, - [SMALL_STATE(3986)] = 20474, - [SMALL_STATE(3987)] = 20569, - [SMALL_STATE(3988)] = 20664, - [SMALL_STATE(3989)] = 20739, - [SMALL_STATE(3990)] = 20808, - [SMALL_STATE(3991)] = 20931, - [SMALL_STATE(3992)] = 21054, - [SMALL_STATE(3993)] = 21123, - [SMALL_STATE(3994)] = 21222, - [SMALL_STATE(3995)] = 21327, - [SMALL_STATE(3996)] = 21396, - [SMALL_STATE(3997)] = 21501, - [SMALL_STATE(3998)] = 21570, - [SMALL_STATE(3999)] = 21653, - [SMALL_STATE(4000)] = 21734, - [SMALL_STATE(4001)] = 21803, - [SMALL_STATE(4002)] = 21880, - [SMALL_STATE(4003)] = 21959, - [SMALL_STATE(4004)] = 22038, - [SMALL_STATE(4005)] = 22115, - [SMALL_STATE(4006)] = 22192, - [SMALL_STATE(4007)] = 22261, - [SMALL_STATE(4008)] = 22330, - [SMALL_STATE(4009)] = 22399, - [SMALL_STATE(4010)] = 22504, - [SMALL_STATE(4011)] = 22573, - [SMALL_STATE(4012)] = 22678, - [SMALL_STATE(4013)] = 22747, - [SMALL_STATE(4014)] = 22822, - [SMALL_STATE(4015)] = 22891, - [SMALL_STATE(4016)] = 22968, - [SMALL_STATE(4017)] = 23063, - [SMALL_STATE(4018)] = 23158, - [SMALL_STATE(4019)] = 23253, - [SMALL_STATE(4020)] = 23322, - [SMALL_STATE(4021)] = 23405, - [SMALL_STATE(4022)] = 23488, - [SMALL_STATE(4023)] = 23587, - [SMALL_STATE(4024)] = 23656, - [SMALL_STATE(4025)] = 23725, - [SMALL_STATE(4026)] = 23794, - [SMALL_STATE(4027)] = 23863, - [SMALL_STATE(4028)] = 23932, - [SMALL_STATE(4029)] = 24001, - [SMALL_STATE(4030)] = 24070, - [SMALL_STATE(4031)] = 24139, - [SMALL_STATE(4032)] = 24222, - [SMALL_STATE(4033)] = 24305, - [SMALL_STATE(4034)] = 24374, - [SMALL_STATE(4035)] = 24443, - [SMALL_STATE(4036)] = 24516, - [SMALL_STATE(4037)] = 24585, - [SMALL_STATE(4038)] = 24660, - [SMALL_STATE(4039)] = 24729, - [SMALL_STATE(4040)] = 24828, - [SMALL_STATE(4041)] = 24897, - [SMALL_STATE(4042)] = 24966, - [SMALL_STATE(4043)] = 25035, - [SMALL_STATE(4044)] = 25104, - [SMALL_STATE(4045)] = 25184, - [SMALL_STATE(4046)] = 25254, - [SMALL_STATE(4047)] = 25322, - [SMALL_STATE(4048)] = 25390, - [SMALL_STATE(4049)] = 25464, - [SMALL_STATE(4050)] = 25532, - [SMALL_STATE(4051)] = 25600, - [SMALL_STATE(4052)] = 25668, - [SMALL_STATE(4053)] = 25736, - [SMALL_STATE(4054)] = 25804, - [SMALL_STATE(4055)] = 25872, - [SMALL_STATE(4056)] = 25940, - [SMALL_STATE(4057)] = 26008, - [SMALL_STATE(4058)] = 26076, - [SMALL_STATE(4059)] = 26144, - [SMALL_STATE(4060)] = 26212, - [SMALL_STATE(4061)] = 26288, - [SMALL_STATE(4062)] = 26360, - [SMALL_STATE(4063)] = 26432, - [SMALL_STATE(4064)] = 26500, - [SMALL_STATE(4065)] = 26568, - [SMALL_STATE(4066)] = 26636, - [SMALL_STATE(4067)] = 26704, - [SMALL_STATE(4068)] = 26778, - [SMALL_STATE(4069)] = 26898, - [SMALL_STATE(4070)] = 26966, - [SMALL_STATE(4071)] = 27086, - [SMALL_STATE(4072)] = 27154, - [SMALL_STATE(4073)] = 27228, - [SMALL_STATE(4074)] = 27348, - [SMALL_STATE(4075)] = 27468, - [SMALL_STATE(4076)] = 27540, - [SMALL_STATE(4077)] = 27612, - [SMALL_STATE(4078)] = 27732, - [SMALL_STATE(4079)] = 27810, - [SMALL_STATE(4080)] = 27888, - [SMALL_STATE(4081)] = 27964, - [SMALL_STATE(4082)] = 28032, - [SMALL_STATE(4083)] = 28102, - [SMALL_STATE(4084)] = 28178, - [SMALL_STATE(4085)] = 28254, - [SMALL_STATE(4086)] = 28330, - [SMALL_STATE(4087)] = 28406, - [SMALL_STATE(4088)] = 28482, - [SMALL_STATE(4089)] = 28554, - [SMALL_STATE(4090)] = 28630, - [SMALL_STATE(4091)] = 28706, - [SMALL_STATE(4092)] = 28778, - [SMALL_STATE(4093)] = 28854, - [SMALL_STATE(4094)] = 28926, - [SMALL_STATE(4095)] = 28998, - [SMALL_STATE(4096)] = 29070, - [SMALL_STATE(4097)] = 29142, - [SMALL_STATE(4098)] = 29210, - [SMALL_STATE(4099)] = 29330, - [SMALL_STATE(4100)] = 29450, - [SMALL_STATE(4101)] = 29518, - [SMALL_STATE(4102)] = 29638, - [SMALL_STATE(4103)] = 29724, - [SMALL_STATE(4104)] = 29844, - [SMALL_STATE(4105)] = 29964, - [SMALL_STATE(4106)] = 30084, - [SMALL_STATE(4107)] = 30154, - [SMALL_STATE(4108)] = 30222, - [SMALL_STATE(4109)] = 30342, - [SMALL_STATE(4110)] = 30426, - [SMALL_STATE(4111)] = 30546, - [SMALL_STATE(4112)] = 30666, - [SMALL_STATE(4113)] = 30786, - [SMALL_STATE(4114)] = 30906, - [SMALL_STATE(4115)] = 31026, - [SMALL_STATE(4116)] = 31146, - [SMALL_STATE(4117)] = 31218, - [SMALL_STATE(4118)] = 31338, - [SMALL_STATE(4119)] = 31458, - [SMALL_STATE(4120)] = 31578, - [SMALL_STATE(4121)] = 31698, - [SMALL_STATE(4122)] = 31770, - [SMALL_STATE(4123)] = 31840, - [SMALL_STATE(4124)] = 31960, - [SMALL_STATE(4125)] = 32034, - [SMALL_STATE(4126)] = 32110, - [SMALL_STATE(4127)] = 32184, - [SMALL_STATE(4128)] = 32304, - [SMALL_STATE(4129)] = 32424, - [SMALL_STATE(4130)] = 32498, - [SMALL_STATE(4131)] = 32566, - [SMALL_STATE(4132)] = 32642, - [SMALL_STATE(4133)] = 32710, - [SMALL_STATE(4134)] = 32790, - [SMALL_STATE(4135)] = 32870, - [SMALL_STATE(4136)] = 32950, - [SMALL_STATE(4137)] = 33030, - [SMALL_STATE(4138)] = 33098, - [SMALL_STATE(4139)] = 33178, - [SMALL_STATE(4140)] = 33246, - [SMALL_STATE(4141)] = 33326, - [SMALL_STATE(4142)] = 33406, - [SMALL_STATE(4143)] = 33482, - [SMALL_STATE(4144)] = 33558, - [SMALL_STATE(4145)] = 33634, - [SMALL_STATE(4146)] = 33710, - [SMALL_STATE(4147)] = 33786, - [SMALL_STATE(4148)] = 33862, - [SMALL_STATE(4149)] = 33938, - [SMALL_STATE(4150)] = 34014, - [SMALL_STATE(4151)] = 34088, - [SMALL_STATE(4152)] = 34156, - [SMALL_STATE(4153)] = 34276, - [SMALL_STATE(4154)] = 34396, - [SMALL_STATE(4155)] = 34470, - [SMALL_STATE(4156)] = 34590, - [SMALL_STATE(4157)] = 34710, - [SMALL_STATE(4158)] = 34830, - [SMALL_STATE(4159)] = 34950, - [SMALL_STATE(4160)] = 35070, - [SMALL_STATE(4161)] = 35148, - [SMALL_STATE(4162)] = 35226, - [SMALL_STATE(4163)] = 35294, - [SMALL_STATE(4164)] = 35368, - [SMALL_STATE(4165)] = 35436, - [SMALL_STATE(4166)] = 35508, - [SMALL_STATE(4167)] = 35584, - [SMALL_STATE(4168)] = 35652, - [SMALL_STATE(4169)] = 35719, - [SMALL_STATE(4170)] = 35798, - [SMALL_STATE(4171)] = 35867, - [SMALL_STATE(4172)] = 35934, - [SMALL_STATE(4173)] = 36013, - [SMALL_STATE(4174)] = 36080, - [SMALL_STATE(4175)] = 36147, - [SMALL_STATE(4176)] = 36214, - [SMALL_STATE(4177)] = 36285, - [SMALL_STATE(4178)] = 36352, - [SMALL_STATE(4179)] = 36419, - [SMALL_STATE(4180)] = 36486, - [SMALL_STATE(4181)] = 36563, - [SMALL_STATE(4182)] = 36630, - [SMALL_STATE(4183)] = 36697, - [SMALL_STATE(4184)] = 36776, - [SMALL_STATE(4185)] = 36843, - [SMALL_STATE(4186)] = 36922, - [SMALL_STATE(4187)] = 36991, - [SMALL_STATE(4188)] = 37070, - [SMALL_STATE(4189)] = 37137, - [SMALL_STATE(4190)] = 37204, - [SMALL_STATE(4191)] = 37283, - [SMALL_STATE(4192)] = 37350, - [SMALL_STATE(4193)] = 37417, - [SMALL_STATE(4194)] = 37500, - [SMALL_STATE(4195)] = 37579, - [SMALL_STATE(4196)] = 37646, - [SMALL_STATE(4197)] = 37713, - [SMALL_STATE(4198)] = 37792, - [SMALL_STATE(4199)] = 37871, - [SMALL_STATE(4200)] = 37940, - [SMALL_STATE(4201)] = 38007, - [SMALL_STATE(4202)] = 38074, - [SMALL_STATE(4203)] = 38141, - [SMALL_STATE(4204)] = 38208, - [SMALL_STATE(4205)] = 38285, - [SMALL_STATE(4206)] = 38370, - [SMALL_STATE(4207)] = 38445, - [SMALL_STATE(4208)] = 38524, - [SMALL_STATE(4209)] = 38591, - [SMALL_STATE(4210)] = 38658, - [SMALL_STATE(4211)] = 38743, - [SMALL_STATE(4212)] = 38810, - [SMALL_STATE(4213)] = 38889, - [SMALL_STATE(4214)] = 38956, - [SMALL_STATE(4215)] = 39023, - [SMALL_STATE(4216)] = 39090, - [SMALL_STATE(4217)] = 39167, - [SMALL_STATE(4218)] = 39244, - [SMALL_STATE(4219)] = 39311, - [SMALL_STATE(4220)] = 39397, - [SMALL_STATE(4221)] = 39471, - [SMALL_STATE(4222)] = 39553, - [SMALL_STATE(4223)] = 39627, - [SMALL_STATE(4224)] = 39693, - [SMALL_STATE(4225)] = 39771, - [SMALL_STATE(4226)] = 39849, - [SMALL_STATE(4227)] = 39927, - [SMALL_STATE(4228)] = 40005, - [SMALL_STATE(4229)] = 40071, - [SMALL_STATE(4230)] = 40149, - [SMALL_STATE(4231)] = 40223, - [SMALL_STATE(4232)] = 40289, - [SMALL_STATE(4233)] = 40363, - [SMALL_STATE(4234)] = 40441, - [SMALL_STATE(4235)] = 40561, - [SMALL_STATE(4236)] = 40633, - [SMALL_STATE(4237)] = 40711, - [SMALL_STATE(4238)] = 40785, - [SMALL_STATE(4239)] = 40851, - [SMALL_STATE(4240)] = 40917, - [SMALL_STATE(4241)] = 40995, - [SMALL_STATE(4242)] = 41069, - [SMALL_STATE(4243)] = 41147, - [SMALL_STATE(4244)] = 41267, - [SMALL_STATE(4245)] = 41343, - [SMALL_STATE(4246)] = 41421, - [SMALL_STATE(4247)] = 41499, - [SMALL_STATE(4248)] = 41575, - [SMALL_STATE(4249)] = 41659, - [SMALL_STATE(4250)] = 41737, - [SMALL_STATE(4251)] = 41809, - [SMALL_STATE(4252)] = 41881, - [SMALL_STATE(4253)] = 41949, - [SMALL_STATE(4254)] = 42027, - [SMALL_STATE(4255)] = 42099, - [SMALL_STATE(4256)] = 42171, - [SMALL_STATE(4257)] = 42243, - [SMALL_STATE(4258)] = 42315, - [SMALL_STATE(4259)] = 42399, - [SMALL_STATE(4260)] = 42473, - [SMALL_STATE(4261)] = 42545, - [SMALL_STATE(4262)] = 42617, - [SMALL_STATE(4263)] = 42683, - [SMALL_STATE(4264)] = 42755, - [SMALL_STATE(4265)] = 42829, - [SMALL_STATE(4266)] = 42907, - [SMALL_STATE(4267)] = 42979, - [SMALL_STATE(4268)] = 43057, - [SMALL_STATE(4269)] = 43131, - [SMALL_STATE(4270)] = 43197, - [SMALL_STATE(4271)] = 43279, - [SMALL_STATE(4272)] = 43359, - [SMALL_STATE(4273)] = 43443, - [SMALL_STATE(4274)] = 43517, - [SMALL_STATE(4275)] = 43591, - [SMALL_STATE(4276)] = 43657, - [SMALL_STATE(4277)] = 43729, - [SMALL_STATE(4278)] = 43801, - [SMALL_STATE(4279)] = 43881, - [SMALL_STATE(4280)] = 43953, - [SMALL_STATE(4281)] = 44025, - [SMALL_STATE(4282)] = 44097, - [SMALL_STATE(4283)] = 44169, - [SMALL_STATE(4284)] = 44241, - [SMALL_STATE(4285)] = 44313, - [SMALL_STATE(4286)] = 44385, - [SMALL_STATE(4287)] = 44457, - [SMALL_STATE(4288)] = 44529, - [SMALL_STATE(4289)] = 44601, - [SMALL_STATE(4290)] = 44673, - [SMALL_STATE(4291)] = 44745, - [SMALL_STATE(4292)] = 44811, - [SMALL_STATE(4293)] = 44889, - [SMALL_STATE(4294)] = 44962, - [SMALL_STATE(4295)] = 45041, - [SMALL_STATE(4296)] = 45106, - [SMALL_STATE(4297)] = 45179, - [SMALL_STATE(4298)] = 45244, - [SMALL_STATE(4299)] = 45309, - [SMALL_STATE(4300)] = 45374, - [SMALL_STATE(4301)] = 45439, - [SMALL_STATE(4302)] = 45504, - [SMALL_STATE(4303)] = 45589, - [SMALL_STATE(4304)] = 45662, - [SMALL_STATE(4305)] = 45747, - [SMALL_STATE(4306)] = 45820, - [SMALL_STATE(4307)] = 45885, - [SMALL_STATE(4308)] = 45958, - [SMALL_STATE(4309)] = 46031, - [SMALL_STATE(4310)] = 46104, - [SMALL_STATE(4311)] = 46177, - [SMALL_STATE(4312)] = 46250, - [SMALL_STATE(4313)] = 46315, - [SMALL_STATE(4314)] = 46398, - [SMALL_STATE(4315)] = 46481, - [SMALL_STATE(4316)] = 46546, - [SMALL_STATE(4317)] = 46611, - [SMALL_STATE(4318)] = 46676, - [SMALL_STATE(4319)] = 46741, - [SMALL_STATE(4320)] = 46850, - [SMALL_STATE(4321)] = 46959, - [SMALL_STATE(4322)] = 47068, - [SMALL_STATE(4323)] = 47133, - [SMALL_STATE(4324)] = 47198, - [SMALL_STATE(4325)] = 47283, - [SMALL_STATE(4326)] = 47356, - [SMALL_STATE(4327)] = 47429, - [SMALL_STATE(4328)] = 47502, - [SMALL_STATE(4329)] = 47571, - [SMALL_STATE(4330)] = 47636, - [SMALL_STATE(4331)] = 47719, - [SMALL_STATE(4332)] = 47802, - [SMALL_STATE(4333)] = 47867, - [SMALL_STATE(4334)] = 47940, - [SMALL_STATE(4335)] = 48005, - [SMALL_STATE(4336)] = 48078, - [SMALL_STATE(4337)] = 48151, - [SMALL_STATE(4338)] = 48224, - [SMALL_STATE(4339)] = 48297, - [SMALL_STATE(4340)] = 48370, - [SMALL_STATE(4341)] = 48443, - [SMALL_STATE(4342)] = 48516, - [SMALL_STATE(4343)] = 48601, - [SMALL_STATE(4344)] = 48666, - [SMALL_STATE(4345)] = 48731, - [SMALL_STATE(4346)] = 48796, - [SMALL_STATE(4347)] = 48879, - [SMALL_STATE(4348)] = 48962, - [SMALL_STATE(4349)] = 49047, - [SMALL_STATE(4350)] = 49120, - [SMALL_STATE(4351)] = 49191, - [SMALL_STATE(4352)] = 49256, - [SMALL_STATE(4353)] = 49339, - [SMALL_STATE(4354)] = 49422, - [SMALL_STATE(4355)] = 49495, - [SMALL_STATE(4356)] = 49568, - [SMALL_STATE(4357)] = 49633, - [SMALL_STATE(4358)] = 49718, - [SMALL_STATE(4359)] = 49783, - [SMALL_STATE(4360)] = 49866, - [SMALL_STATE(4361)] = 49949, - [SMALL_STATE(4362)] = 50022, - [SMALL_STATE(4363)] = 50095, - [SMALL_STATE(4364)] = 50164, - [SMALL_STATE(4365)] = 50229, - [SMALL_STATE(4366)] = 50298, - [SMALL_STATE(4367)] = 50363, - [SMALL_STATE(4368)] = 50428, - [SMALL_STATE(4369)] = 50493, - [SMALL_STATE(4370)] = 50578, - [SMALL_STATE(4371)] = 50661, - [SMALL_STATE(4372)] = 50740, - [SMALL_STATE(4373)] = 50813, - [SMALL_STATE(4374)] = 50878, - [SMALL_STATE(4375)] = 50951, - [SMALL_STATE(4376)] = 51016, - [SMALL_STATE(4377)] = 51081, - [SMALL_STATE(4378)] = 51154, - [SMALL_STATE(4379)] = 51227, - [SMALL_STATE(4380)] = 51310, - [SMALL_STATE(4381)] = 51383, - [SMALL_STATE(4382)] = 51452, - [SMALL_STATE(4383)] = 51525, - [SMALL_STATE(4384)] = 51590, - [SMALL_STATE(4385)] = 51655, - [SMALL_STATE(4386)] = 51720, - [SMALL_STATE(4387)] = 51803, - [SMALL_STATE(4388)] = 51886, - [SMALL_STATE(4389)] = 51951, - [SMALL_STATE(4390)] = 52016, - [SMALL_STATE(4391)] = 52081, - [SMALL_STATE(4392)] = 52162, - [SMALL_STATE(4393)] = 52245, - [SMALL_STATE(4394)] = 52330, - [SMALL_STATE(4395)] = 52395, - [SMALL_STATE(4396)] = 52460, - [SMALL_STATE(4397)] = 52525, - [SMALL_STATE(4398)] = 52598, - [SMALL_STATE(4399)] = 52663, - [SMALL_STATE(4400)] = 52728, - [SMALL_STATE(4401)] = 52793, - [SMALL_STATE(4402)] = 52858, - [SMALL_STATE(4403)] = 52923, - [SMALL_STATE(4404)] = 52996, - [SMALL_STATE(4405)] = 53061, - [SMALL_STATE(4406)] = 53126, - [SMALL_STATE(4407)] = 53191, - [SMALL_STATE(4408)] = 53256, - [SMALL_STATE(4409)] = 53321, - [SMALL_STATE(4410)] = 53394, - [SMALL_STATE(4411)] = 53467, - [SMALL_STATE(4412)] = 53532, - [SMALL_STATE(4413)] = 53605, - [SMALL_STATE(4414)] = 53684, - [SMALL_STATE(4415)] = 53757, - [SMALL_STATE(4416)] = 53822, - [SMALL_STATE(4417)] = 53895, - [SMALL_STATE(4418)] = 53968, - [SMALL_STATE(4419)] = 54041, - [SMALL_STATE(4420)] = 54114, - [SMALL_STATE(4421)] = 54187, - [SMALL_STATE(4422)] = 54260, - [SMALL_STATE(4423)] = 54333, - [SMALL_STATE(4424)] = 54406, - [SMALL_STATE(4425)] = 54479, - [SMALL_STATE(4426)] = 54558, - [SMALL_STATE(4427)] = 54629, - [SMALL_STATE(4428)] = 54702, - [SMALL_STATE(4429)] = 54767, - [SMALL_STATE(4430)] = 54834, - [SMALL_STATE(4431)] = 54899, - [SMALL_STATE(4432)] = 55008, - [SMALL_STATE(4433)] = 55121, - [SMALL_STATE(4434)] = 55226, - [SMALL_STATE(4435)] = 55327, - [SMALL_STATE(4436)] = 55426, - [SMALL_STATE(4437)] = 55523, - [SMALL_STATE(4438)] = 55618, - [SMALL_STATE(4439)] = 55709, - [SMALL_STATE(4440)] = 55796, - [SMALL_STATE(4441)] = 55905, - [SMALL_STATE(4442)] = 56018, - [SMALL_STATE(4443)] = 56127, - [SMALL_STATE(4444)] = 56240, - [SMALL_STATE(4445)] = 56313, - [SMALL_STATE(4446)] = 56381, - [SMALL_STATE(4447)] = 56475, - [SMALL_STATE(4448)] = 56547, - [SMALL_STATE(4449)] = 56623, - [SMALL_STATE(4450)] = 56695, - [SMALL_STATE(4451)] = 56767, - [SMALL_STATE(4452)] = 56839, - [SMALL_STATE(4453)] = 56911, - [SMALL_STATE(4454)] = 56979, - [SMALL_STATE(4455)] = 57047, - [SMALL_STATE(4456)] = 57115, - [SMALL_STATE(4457)] = 57183, - [SMALL_STATE(4458)] = 57259, - [SMALL_STATE(4459)] = 57331, - [SMALL_STATE(4460)] = 57425, - [SMALL_STATE(4461)] = 57493, - [SMALL_STATE(4462)] = 57561, - [SMALL_STATE(4463)] = 57629, - [SMALL_STATE(4464)] = 57723, - [SMALL_STATE(4465)] = 57817, - [SMALL_STATE(4466)] = 57889, - [SMALL_STATE(4467)] = 57963, - [SMALL_STATE(4468)] = 58057, - [SMALL_STATE(4469)] = 58131, - [SMALL_STATE(4470)] = 58197, - [SMALL_STATE(4471)] = 58261, - [SMALL_STATE(4472)] = 58333, - [SMALL_STATE(4473)] = 58427, - [SMALL_STATE(4474)] = 58491, - [SMALL_STATE(4475)] = 58557, - [SMALL_STATE(4476)] = 58621, - [SMALL_STATE(4477)] = 58693, - [SMALL_STATE(4478)] = 58767, - [SMALL_STATE(4479)] = 58831, - [SMALL_STATE(4480)] = 58905, - [SMALL_STATE(4481)] = 58973, - [SMALL_STATE(4482)] = 59067, - [SMALL_STATE(4483)] = 59131, - [SMALL_STATE(4484)] = 59225, - [SMALL_STATE(4485)] = 59289, - [SMALL_STATE(4486)] = 59357, - [SMALL_STATE(4487)] = 59475, - [SMALL_STATE(4488)] = 59569, - [SMALL_STATE(4489)] = 59637, - [SMALL_STATE(4490)] = 59731, - [SMALL_STATE(4491)] = 59795, - [SMALL_STATE(4492)] = 59865, - [SMALL_STATE(4493)] = 59941, - [SMALL_STATE(4494)] = 60035, - [SMALL_STATE(4495)] = 60153, - [SMALL_STATE(4496)] = 60221, - [SMALL_STATE(4497)] = 60315, - [SMALL_STATE(4498)] = 60383, - [SMALL_STATE(4499)] = 60459, - [SMALL_STATE(4500)] = 60527, - [SMALL_STATE(4501)] = 60595, - [SMALL_STATE(4502)] = 60671, - [SMALL_STATE(4503)] = 60747, - [SMALL_STATE(4504)] = 60841, - [SMALL_STATE(4505)] = 60909, - [SMALL_STATE(4506)] = 61027, - [SMALL_STATE(4507)] = 61121, - [SMALL_STATE(4508)] = 61197, - [SMALL_STATE(4509)] = 61291, - [SMALL_STATE(4510)] = 61409, - [SMALL_STATE(4511)] = 61485, - [SMALL_STATE(4512)] = 61561, - [SMALL_STATE(4513)] = 61627, - [SMALL_STATE(4514)] = 61707, - [SMALL_STATE(4515)] = 61783, - [SMALL_STATE(4516)] = 61877, - [SMALL_STATE(4517)] = 61971, - [SMALL_STATE(4518)] = 62045, - [SMALL_STATE(4519)] = 62113, - [SMALL_STATE(4520)] = 62207, - [SMALL_STATE(4521)] = 62279, - [SMALL_STATE(4522)] = 62349, - [SMALL_STATE(4523)] = 62413, - [SMALL_STATE(4524)] = 62487, - [SMALL_STATE(4525)] = 62569, - [SMALL_STATE(4526)] = 62634, - [SMALL_STATE(4527)] = 62699, - [SMALL_STATE(4528)] = 62818, - [SMALL_STATE(4529)] = 62927, - [SMALL_STATE(4530)] = 62998, - [SMALL_STATE(4531)] = 63107, - [SMALL_STATE(4532)] = 63174, - [SMALL_STATE(4533)] = 63241, - [SMALL_STATE(4534)] = 63308, - [SMALL_STATE(4535)] = 63379, - [SMALL_STATE(4536)] = 63450, - [SMALL_STATE(4537)] = 63521, - [SMALL_STATE(4538)] = 63592, - [SMALL_STATE(4539)] = 63663, - [SMALL_STATE(4540)] = 63734, - [SMALL_STATE(4541)] = 63805, - [SMALL_STATE(4542)] = 63876, - [SMALL_STATE(4543)] = 63947, - [SMALL_STATE(4544)] = 64018, - [SMALL_STATE(4545)] = 64089, - [SMALL_STATE(4546)] = 64160, - [SMALL_STATE(4547)] = 64227, - [SMALL_STATE(4548)] = 64298, - [SMALL_STATE(4549)] = 64369, - [SMALL_STATE(4550)] = 64440, - [SMALL_STATE(4551)] = 64511, - [SMALL_STATE(4552)] = 64582, - [SMALL_STATE(4553)] = 64743, - [SMALL_STATE(4554)] = 64852, - [SMALL_STATE(4555)] = 64969, - [SMALL_STATE(4556)] = 65088, - [SMALL_STATE(4557)] = 65151, - [SMALL_STATE(4558)] = 65214, - [SMALL_STATE(4559)] = 65281, - [SMALL_STATE(4560)] = 65348, - [SMALL_STATE(4561)] = 65421, - [SMALL_STATE(4562)] = 65494, - [SMALL_STATE(4563)] = 65561, - [SMALL_STATE(4564)] = 65632, - [SMALL_STATE(4565)] = 65709, - [SMALL_STATE(4566)] = 65822, - [SMALL_STATE(4567)] = 65983, - [SMALL_STATE(4568)] = 66054, - [SMALL_STATE(4569)] = 66119, - [SMALL_STATE(4570)] = 66186, - [SMALL_STATE(4571)] = 66253, - [SMALL_STATE(4572)] = 66372, - [SMALL_STATE(4573)] = 66443, - [SMALL_STATE(4574)] = 66510, - [SMALL_STATE(4575)] = 66589, - [SMALL_STATE(4576)] = 66660, - [SMALL_STATE(4577)] = 66765, - [SMALL_STATE(4578)] = 66832, - [SMALL_STATE(4579)] = 66933, - [SMALL_STATE(4580)] = 67030, - [SMALL_STATE(4581)] = 67093, - [SMALL_STATE(4582)] = 67188, - [SMALL_STATE(4583)] = 67279, - [SMALL_STATE(4584)] = 67368, - [SMALL_STATE(4585)] = 67453, - [SMALL_STATE(4586)] = 67534, - [SMALL_STATE(4587)] = 67617, - [SMALL_STATE(4588)] = 67688, - [SMALL_STATE(4589)] = 67807, - [SMALL_STATE(4590)] = 67874, - [SMALL_STATE(4591)] = 67993, - [SMALL_STATE(4592)] = 68060, - [SMALL_STATE(4593)] = 68127, - [SMALL_STATE(4594)] = 68190, - [SMALL_STATE(4595)] = 68257, - [SMALL_STATE(4596)] = 68366, - [SMALL_STATE(4597)] = 68437, - [SMALL_STATE(4598)] = 68510, - [SMALL_STATE(4599)] = 68629, - [SMALL_STATE(4600)] = 68702, - [SMALL_STATE(4601)] = 68775, - [SMALL_STATE(4602)] = 68892, - [SMALL_STATE(4603)] = 68963, - [SMALL_STATE(4604)] = 69034, - [SMALL_STATE(4605)] = 69105, - [SMALL_STATE(4606)] = 69224, - [SMALL_STATE(4607)] = 69337, - [SMALL_STATE(4608)] = 69498, - [SMALL_STATE(4609)] = 69569, - [SMALL_STATE(4610)] = 69642, - [SMALL_STATE(4611)] = 69761, - [SMALL_STATE(4612)] = 69828, - [SMALL_STATE(4613)] = 69901, - [SMALL_STATE(4614)] = 69968, - [SMALL_STATE(4615)] = 70035, - [SMALL_STATE(4616)] = 70144, - [SMALL_STATE(4617)] = 70217, - [SMALL_STATE(4618)] = 70282, - [SMALL_STATE(4619)] = 70347, - [SMALL_STATE(4620)] = 70410, - [SMALL_STATE(4621)] = 70477, - [SMALL_STATE(4622)] = 70590, - [SMALL_STATE(4623)] = 70657, - [SMALL_STATE(4624)] = 70724, - [SMALL_STATE(4625)] = 70795, - [SMALL_STATE(4626)] = 70862, - [SMALL_STATE(4627)] = 70935, - [SMALL_STATE(4628)] = 71008, - [SMALL_STATE(4629)] = 71075, - [SMALL_STATE(4630)] = 71140, - [SMALL_STATE(4631)] = 71213, - [SMALL_STATE(4632)] = 71278, - [SMALL_STATE(4633)] = 71355, - [SMALL_STATE(4634)] = 71418, - [SMALL_STATE(4635)] = 71483, - [SMALL_STATE(4636)] = 71554, - [SMALL_STATE(4637)] = 71627, - [SMALL_STATE(4638)] = 71710, - [SMALL_STATE(4639)] = 71775, - [SMALL_STATE(4640)] = 71848, - [SMALL_STATE(4641)] = 71913, - [SMALL_STATE(4642)] = 71978, - [SMALL_STATE(4643)] = 72047, - [SMALL_STATE(4644)] = 72114, - [SMALL_STATE(4645)] = 72177, - [SMALL_STATE(4646)] = 72338, - [SMALL_STATE(4647)] = 72421, - [SMALL_STATE(4648)] = 72486, - [SMALL_STATE(4649)] = 72553, - [SMALL_STATE(4650)] = 72626, - [SMALL_STATE(4651)] = 72735, - [SMALL_STATE(4652)] = 72854, - [SMALL_STATE(4653)] = 72919, - [SMALL_STATE(4654)] = 72992, - [SMALL_STATE(4655)] = 73057, - [SMALL_STATE(4656)] = 73128, - [SMALL_STATE(4657)] = 73191, - [SMALL_STATE(4658)] = 73253, - [SMALL_STATE(4659)] = 73315, - [SMALL_STATE(4660)] = 73377, - [SMALL_STATE(4661)] = 73439, - [SMALL_STATE(4662)] = 73555, - [SMALL_STATE(4663)] = 73617, - [SMALL_STATE(4664)] = 73685, - [SMALL_STATE(4665)] = 73757, - [SMALL_STATE(4666)] = 73819, - [SMALL_STATE(4667)] = 73881, - [SMALL_STATE(4668)] = 73953, - [SMALL_STATE(4669)] = 74025, - [SMALL_STATE(4670)] = 74097, - [SMALL_STATE(4671)] = 74169, - [SMALL_STATE(4672)] = 74241, - [SMALL_STATE(4673)] = 74303, - [SMALL_STATE(4674)] = 74365, - [SMALL_STATE(4675)] = 74477, - [SMALL_STATE(4676)] = 74549, - [SMALL_STATE(4677)] = 74611, - [SMALL_STATE(4678)] = 74679, - [SMALL_STATE(4679)] = 74791, - [SMALL_STATE(4680)] = 74853, - [SMALL_STATE(4681)] = 74915, - [SMALL_STATE(4682)] = 74977, - [SMALL_STATE(4683)] = 75039, - [SMALL_STATE(4684)] = 75107, - [SMALL_STATE(4685)] = 75169, - [SMALL_STATE(4686)] = 75231, - [SMALL_STATE(4687)] = 75301, - [SMALL_STATE(4688)] = 75371, - [SMALL_STATE(4689)] = 75441, - [SMALL_STATE(4690)] = 75549, - [SMALL_STATE(4691)] = 75619, - [SMALL_STATE(4692)] = 75687, - [SMALL_STATE(4693)] = 75757, - [SMALL_STATE(4694)] = 75827, - [SMALL_STATE(4695)] = 75897, - [SMALL_STATE(4696)] = 75967, - [SMALL_STATE(4697)] = 76039, - [SMALL_STATE(4698)] = 76101, - [SMALL_STATE(4699)] = 76173, - [SMALL_STATE(4700)] = 76239, - [SMALL_STATE(4701)] = 76301, - [SMALL_STATE(4702)] = 76417, - [SMALL_STATE(4703)] = 76479, - [SMALL_STATE(4704)] = 76595, - [SMALL_STATE(4705)] = 76657, - [SMALL_STATE(4706)] = 76719, - [SMALL_STATE(4707)] = 76781, - [SMALL_STATE(4708)] = 76843, - [SMALL_STATE(4709)] = 76905, - [SMALL_STATE(4710)] = 76971, - [SMALL_STATE(4711)] = 77043, - [SMALL_STATE(4712)] = 77155, - [SMALL_STATE(4713)] = 77217, - [SMALL_STATE(4714)] = 77333, - [SMALL_STATE(4715)] = 77395, - [SMALL_STATE(4716)] = 77467, - [SMALL_STATE(4717)] = 77571, - [SMALL_STATE(4718)] = 77671, - [SMALL_STATE(4719)] = 77767, - [SMALL_STATE(4720)] = 77839, - [SMALL_STATE(4721)] = 77933, - [SMALL_STATE(4722)] = 77995, - [SMALL_STATE(4723)] = 78057, - [SMALL_STATE(4724)] = 78129, - [SMALL_STATE(4725)] = 78219, - [SMALL_STATE(4726)] = 78335, - [SMALL_STATE(4727)] = 78397, - [SMALL_STATE(4728)] = 78469, - [SMALL_STATE(4729)] = 78535, - [SMALL_STATE(4730)] = 78601, - [SMALL_STATE(4731)] = 78717, - [SMALL_STATE(4732)] = 78781, - [SMALL_STATE(4733)] = 78849, - [SMALL_STATE(4734)] = 78921, - [SMALL_STATE(4735)] = 79037, - [SMALL_STATE(4736)] = 79153, - [SMALL_STATE(4737)] = 79225, - [SMALL_STATE(4738)] = 79287, - [SMALL_STATE(4739)] = 79353, - [SMALL_STATE(4740)] = 79415, - [SMALL_STATE(4741)] = 79477, - [SMALL_STATE(4742)] = 79593, - [SMALL_STATE(4743)] = 79655, - [SMALL_STATE(4744)] = 79717, - [SMALL_STATE(4745)] = 79779, - [SMALL_STATE(4746)] = 79845, - [SMALL_STATE(4747)] = 79907, - [SMALL_STATE(4748)] = 79979, - [SMALL_STATE(4749)] = 80041, - [SMALL_STATE(4750)] = 80107, - [SMALL_STATE(4751)] = 80169, - [SMALL_STATE(4752)] = 80257, - [SMALL_STATE(4753)] = 80341, - [SMALL_STATE(4754)] = 80407, - [SMALL_STATE(4755)] = 80523, - [SMALL_STATE(4756)] = 80585, - [SMALL_STATE(4757)] = 80647, - [SMALL_STATE(4758)] = 80717, - [SMALL_STATE(4759)] = 80779, - [SMALL_STATE(4760)] = 80841, - [SMALL_STATE(4761)] = 80903, - [SMALL_STATE(4762)] = 80965, - [SMALL_STATE(4763)] = 81031, - [SMALL_STATE(4764)] = 81097, - [SMALL_STATE(4765)] = 81205, - [SMALL_STATE(4766)] = 81321, - [SMALL_STATE(4767)] = 81429, - [SMALL_STATE(4768)] = 81491, - [SMALL_STATE(4769)] = 81599, - [SMALL_STATE(4770)] = 81715, - [SMALL_STATE(4771)] = 81777, - [SMALL_STATE(4772)] = 81839, - [SMALL_STATE(4773)] = 81901, - [SMALL_STATE(4774)] = 81963, - [SMALL_STATE(4775)] = 82025, - [SMALL_STATE(4776)] = 82087, - [SMALL_STATE(4777)] = 82153, - [SMALL_STATE(4778)] = 82269, - [SMALL_STATE(4779)] = 82337, - [SMALL_STATE(4780)] = 82399, - [SMALL_STATE(4781)] = 82461, - [SMALL_STATE(4782)] = 82523, - [SMALL_STATE(4783)] = 82639, - [SMALL_STATE(4784)] = 82707, - [SMALL_STATE(4785)] = 82769, - [SMALL_STATE(4786)] = 82885, - [SMALL_STATE(4787)] = 82947, - [SMALL_STATE(4788)] = 83063, - [SMALL_STATE(4789)] = 83179, - [SMALL_STATE(4790)] = 83295, - [SMALL_STATE(4791)] = 83359, - [SMALL_STATE(4792)] = 83475, - [SMALL_STATE(4793)] = 83591, - [SMALL_STATE(4794)] = 83707, - [SMALL_STATE(4795)] = 83823, - [SMALL_STATE(4796)] = 83939, - [SMALL_STATE(4797)] = 84055, - [SMALL_STATE(4798)] = 84171, - [SMALL_STATE(4799)] = 84287, - [SMALL_STATE(4800)] = 84353, - [SMALL_STATE(4801)] = 84415, - [SMALL_STATE(4802)] = 84485, - [SMALL_STATE(4803)] = 84555, - [SMALL_STATE(4804)] = 84671, - [SMALL_STATE(4805)] = 84787, - [SMALL_STATE(4806)] = 84903, - [SMALL_STATE(4807)] = 85019, - [SMALL_STATE(4808)] = 85135, - [SMALL_STATE(4809)] = 85197, - [SMALL_STATE(4810)] = 85259, - [SMALL_STATE(4811)] = 85321, - [SMALL_STATE(4812)] = 85383, - [SMALL_STATE(4813)] = 85445, - [SMALL_STATE(4814)] = 85507, - [SMALL_STATE(4815)] = 85571, - [SMALL_STATE(4816)] = 85633, - [SMALL_STATE(4817)] = 85695, - [SMALL_STATE(4818)] = 85757, - [SMALL_STATE(4819)] = 85819, - [SMALL_STATE(4820)] = 85881, - [SMALL_STATE(4821)] = 85997, - [SMALL_STATE(4822)] = 86059, - [SMALL_STATE(4823)] = 86123, - [SMALL_STATE(4824)] = 86239, - [SMALL_STATE(4825)] = 86311, - [SMALL_STATE(4826)] = 86427, - [SMALL_STATE(4827)] = 86489, - [SMALL_STATE(4828)] = 86551, - [SMALL_STATE(4829)] = 86667, - [SMALL_STATE(4830)] = 86729, - [SMALL_STATE(4831)] = 86845, - [SMALL_STATE(4832)] = 86923, - [SMALL_STATE(4833)] = 86995, - [SMALL_STATE(4834)] = 87061, - [SMALL_STATE(4835)] = 87123, - [SMALL_STATE(4836)] = 87185, - [SMALL_STATE(4837)] = 87301, - [SMALL_STATE(4838)] = 87417, - [SMALL_STATE(4839)] = 87479, - [SMALL_STATE(4840)] = 87541, - [SMALL_STATE(4841)] = 87621, - [SMALL_STATE(4842)] = 87703, - [SMALL_STATE(4843)] = 87819, - [SMALL_STATE(4844)] = 87935, - [SMALL_STATE(4845)] = 87997, - [SMALL_STATE(4846)] = 88113, - [SMALL_STATE(4847)] = 88175, - [SMALL_STATE(4848)] = 88237, - [SMALL_STATE(4849)] = 88353, - [SMALL_STATE(4850)] = 88469, - [SMALL_STATE(4851)] = 88585, - [SMALL_STATE(4852)] = 88653, - [SMALL_STATE(4853)] = 88727, - [SMALL_STATE(4854)] = 88843, - [SMALL_STATE(4855)] = 88959, - [SMALL_STATE(4856)] = 89021, - [SMALL_STATE(4857)] = 89137, - [SMALL_STATE(4858)] = 89253, - [SMALL_STATE(4859)] = 89369, - [SMALL_STATE(4860)] = 89431, - [SMALL_STATE(4861)] = 89547, - [SMALL_STATE(4862)] = 89663, - [SMALL_STATE(4863)] = 89779, - [SMALL_STATE(4864)] = 89895, - [SMALL_STATE(4865)] = 90011, - [SMALL_STATE(4866)] = 90127, - [SMALL_STATE(4867)] = 90189, - [SMALL_STATE(4868)] = 90251, - [SMALL_STATE(4869)] = 90321, - [SMALL_STATE(4870)] = 90383, - [SMALL_STATE(4871)] = 90445, - [SMALL_STATE(4872)] = 90561, - [SMALL_STATE(4873)] = 90677, - [SMALL_STATE(4874)] = 90751, - [SMALL_STATE(4875)] = 90813, - [SMALL_STATE(4876)] = 90879, - [SMALL_STATE(4877)] = 90949, - [SMALL_STATE(4878)] = 91065, - [SMALL_STATE(4879)] = 91181, - [SMALL_STATE(4880)] = 91289, - [SMALL_STATE(4881)] = 91405, - [SMALL_STATE(4882)] = 91521, - [SMALL_STATE(4883)] = 91637, - [SMALL_STATE(4884)] = 91753, - [SMALL_STATE(4885)] = 91869, - [SMALL_STATE(4886)] = 91985, - [SMALL_STATE(4887)] = 92101, - [SMALL_STATE(4888)] = 92217, - [SMALL_STATE(4889)] = 92333, - [SMALL_STATE(4890)] = 92449, - [SMALL_STATE(4891)] = 92565, - [SMALL_STATE(4892)] = 92681, - [SMALL_STATE(4893)] = 92797, - [SMALL_STATE(4894)] = 92859, - [SMALL_STATE(4895)] = 92925, - [SMALL_STATE(4896)] = 93041, - [SMALL_STATE(4897)] = 93157, - [SMALL_STATE(4898)] = 93273, - [SMALL_STATE(4899)] = 93345, - [SMALL_STATE(4900)] = 93417, - [SMALL_STATE(4901)] = 93479, - [SMALL_STATE(4902)] = 93541, - [SMALL_STATE(4903)] = 93649, - [SMALL_STATE(4904)] = 93717, - [SMALL_STATE(4905)] = 93779, - [SMALL_STATE(4906)] = 93895, - [SMALL_STATE(4907)] = 94011, - [SMALL_STATE(4908)] = 94127, - [SMALL_STATE(4909)] = 94243, - [SMALL_STATE(4910)] = 94359, - [SMALL_STATE(4911)] = 94475, - [SMALL_STATE(4912)] = 94591, - [SMALL_STATE(4913)] = 94707, - [SMALL_STATE(4914)] = 94823, - [SMALL_STATE(4915)] = 94939, - [SMALL_STATE(4916)] = 95055, - [SMALL_STATE(4917)] = 95171, - [SMALL_STATE(4918)] = 95233, - [SMALL_STATE(4919)] = 95305, - [SMALL_STATE(4920)] = 95373, - [SMALL_STATE(4921)] = 95445, - [SMALL_STATE(4922)] = 95515, - [SMALL_STATE(4923)] = 95631, - [SMALL_STATE(4924)] = 95747, - [SMALL_STATE(4925)] = 95850, - [SMALL_STATE(4926)] = 95963, - [SMALL_STATE(4927)] = 96028, - [SMALL_STATE(4928)] = 96141, - [SMALL_STATE(4929)] = 96208, - [SMALL_STATE(4930)] = 96321, - [SMALL_STATE(4931)] = 96434, - [SMALL_STATE(4932)] = 96547, - [SMALL_STATE(4933)] = 96660, - [SMALL_STATE(4934)] = 96773, - [SMALL_STATE(4935)] = 96886, - [SMALL_STATE(4936)] = 96999, - [SMALL_STATE(4937)] = 97112, - [SMALL_STATE(4938)] = 97225, - [SMALL_STATE(4939)] = 97338, - [SMALL_STATE(4940)] = 97399, - [SMALL_STATE(4941)] = 97460, - [SMALL_STATE(4942)] = 97521, - [SMALL_STATE(4943)] = 97582, - [SMALL_STATE(4944)] = 97695, - [SMALL_STATE(4945)] = 97756, - [SMALL_STATE(4946)] = 97817, - [SMALL_STATE(4947)] = 97884, - [SMALL_STATE(4948)] = 97957, - [SMALL_STATE(4949)] = 98020, - [SMALL_STATE(4950)] = 98133, - [SMALL_STATE(4951)] = 98194, - [SMALL_STATE(4952)] = 98255, - [SMALL_STATE(4953)] = 98316, - [SMALL_STATE(4954)] = 98377, - [SMALL_STATE(4955)] = 98490, - [SMALL_STATE(4956)] = 98555, - [SMALL_STATE(4957)] = 98616, - [SMALL_STATE(4958)] = 98729, - [SMALL_STATE(4959)] = 98798, - [SMALL_STATE(4960)] = 98859, - [SMALL_STATE(4961)] = 98948, - [SMALL_STATE(4962)] = 99029, - [SMALL_STATE(4963)] = 99098, - [SMALL_STATE(4964)] = 99167, - [SMALL_STATE(4965)] = 99228, - [SMALL_STATE(4966)] = 99289, - [SMALL_STATE(4967)] = 99350, - [SMALL_STATE(4968)] = 99417, - [SMALL_STATE(4969)] = 99486, - [SMALL_STATE(4970)] = 99601, - [SMALL_STATE(4971)] = 99662, - [SMALL_STATE(4972)] = 99723, - [SMALL_STATE(4973)] = 99798, - [SMALL_STATE(4974)] = 99873, - [SMALL_STATE(4975)] = 99942, - [SMALL_STATE(4976)] = 100003, - [SMALL_STATE(4977)] = 100080, - [SMALL_STATE(4978)] = 100141, - [SMALL_STATE(4979)] = 100202, - [SMALL_STATE(4980)] = 100271, - [SMALL_STATE(4981)] = 100332, - [SMALL_STATE(4982)] = 100399, - [SMALL_STATE(4983)] = 100460, - [SMALL_STATE(4984)] = 100521, - [SMALL_STATE(4985)] = 100582, - [SMALL_STATE(4986)] = 100697, - [SMALL_STATE(4987)] = 100758, - [SMALL_STATE(4988)] = 100827, - [SMALL_STATE(4989)] = 100888, - [SMALL_STATE(4990)] = 100949, - [SMALL_STATE(4991)] = 101010, - [SMALL_STATE(4992)] = 101073, - [SMALL_STATE(4993)] = 101138, - [SMALL_STATE(4994)] = 101199, - [SMALL_STATE(4995)] = 101260, - [SMALL_STATE(4996)] = 101321, - [SMALL_STATE(4997)] = 101386, - [SMALL_STATE(4998)] = 101447, - [SMALL_STATE(4999)] = 101508, - [SMALL_STATE(5000)] = 101569, - [SMALL_STATE(5001)] = 101630, - [SMALL_STATE(5002)] = 101741, - [SMALL_STATE(5003)] = 101802, - [SMALL_STATE(5004)] = 101863, - [SMALL_STATE(5005)] = 101928, - [SMALL_STATE(5006)] = 101989, - [SMALL_STATE(5007)] = 102058, - [SMALL_STATE(5008)] = 102171, - [SMALL_STATE(5009)] = 102232, - [SMALL_STATE(5010)] = 102295, - [SMALL_STATE(5011)] = 102356, - [SMALL_STATE(5012)] = 102467, - [SMALL_STATE(5013)] = 102530, - [SMALL_STATE(5014)] = 102591, - [SMALL_STATE(5015)] = 102652, - [SMALL_STATE(5016)] = 102721, - [SMALL_STATE(5017)] = 102786, - [SMALL_STATE(5018)] = 102851, - [SMALL_STATE(5019)] = 102912, - [SMALL_STATE(5020)] = 103025, - [SMALL_STATE(5021)] = 103132, - [SMALL_STATE(5022)] = 103193, - [SMALL_STATE(5023)] = 103254, - [SMALL_STATE(5024)] = 103315, - [SMALL_STATE(5025)] = 103384, - [SMALL_STATE(5026)] = 103445, - [SMALL_STATE(5027)] = 103514, - [SMALL_STATE(5028)] = 103593, - [SMALL_STATE(5029)] = 103662, - [SMALL_STATE(5030)] = 103731, - [SMALL_STATE(5031)] = 103812, - [SMALL_STATE(5032)] = 103925, - [SMALL_STATE(5033)] = 103986, - [SMALL_STATE(5034)] = 104055, - [SMALL_STATE(5035)] = 104142, - [SMALL_STATE(5036)] = 104211, - [SMALL_STATE(5037)] = 104272, - [SMALL_STATE(5038)] = 104341, - [SMALL_STATE(5039)] = 104414, - [SMALL_STATE(5040)] = 104479, - [SMALL_STATE(5041)] = 104562, - [SMALL_STATE(5042)] = 104669, - [SMALL_STATE(5043)] = 104734, - [SMALL_STATE(5044)] = 104799, - [SMALL_STATE(5045)] = 104866, - [SMALL_STATE(5046)] = 104933, - [SMALL_STATE(5047)] = 104998, - [SMALL_STATE(5048)] = 105059, - [SMALL_STATE(5049)] = 105172, - [SMALL_STATE(5050)] = 105241, - [SMALL_STATE(5051)] = 105316, - [SMALL_STATE(5052)] = 105385, - [SMALL_STATE(5053)] = 105454, - [SMALL_STATE(5054)] = 105561, - [SMALL_STATE(5055)] = 105628, - [SMALL_STATE(5056)] = 105693, - [SMALL_STATE(5057)] = 105762, - [SMALL_STATE(5058)] = 105823, - [SMALL_STATE(5059)] = 105930, - [SMALL_STATE(5060)] = 106043, - [SMALL_STATE(5061)] = 106104, - [SMALL_STATE(5062)] = 106211, - [SMALL_STATE(5063)] = 106272, - [SMALL_STATE(5064)] = 106333, - [SMALL_STATE(5065)] = 106398, - [SMALL_STATE(5066)] = 106465, - [SMALL_STATE(5067)] = 106526, - [SMALL_STATE(5068)] = 106587, - [SMALL_STATE(5069)] = 106648, - [SMALL_STATE(5070)] = 106709, - [SMALL_STATE(5071)] = 106774, - [SMALL_STATE(5072)] = 106841, - [SMALL_STATE(5073)] = 106902, - [SMALL_STATE(5074)] = 106963, - [SMALL_STATE(5075)] = 107024, - [SMALL_STATE(5076)] = 107085, - [SMALL_STATE(5077)] = 107146, - [SMALL_STATE(5078)] = 107207, - [SMALL_STATE(5079)] = 107276, - [SMALL_STATE(5080)] = 107389, - [SMALL_STATE(5081)] = 107450, - [SMALL_STATE(5082)] = 107511, - [SMALL_STATE(5083)] = 107572, - [SMALL_STATE(5084)] = 107633, - [SMALL_STATE(5085)] = 107694, - [SMALL_STATE(5086)] = 107793, - [SMALL_STATE(5087)] = 107868, - [SMALL_STATE(5088)] = 107937, - [SMALL_STATE(5089)] = 108004, - [SMALL_STATE(5090)] = 108117, - [SMALL_STATE(5091)] = 108224, - [SMALL_STATE(5092)] = 108303, - [SMALL_STATE(5093)] = 108364, - [SMALL_STATE(5094)] = 108425, - [SMALL_STATE(5095)] = 108536, - [SMALL_STATE(5096)] = 108603, - [SMALL_STATE(5097)] = 108716, - [SMALL_STATE(5098)] = 108777, - [SMALL_STATE(5099)] = 108838, - [SMALL_STATE(5100)] = 108899, - [SMALL_STATE(5101)] = 108964, - [SMALL_STATE(5102)] = 109029, - [SMALL_STATE(5103)] = 109102, - [SMALL_STATE(5104)] = 109215, - [SMALL_STATE(5105)] = 109280, - [SMALL_STATE(5106)] = 109349, - [SMALL_STATE(5107)] = 109462, - [SMALL_STATE(5108)] = 109523, - [SMALL_STATE(5109)] = 109584, - [SMALL_STATE(5110)] = 109649, - [SMALL_STATE(5111)] = 109714, - [SMALL_STATE(5112)] = 109775, - [SMALL_STATE(5113)] = 109840, - [SMALL_STATE(5114)] = 109939, - [SMALL_STATE(5115)] = 110000, - [SMALL_STATE(5116)] = 110061, - [SMALL_STATE(5117)] = 110126, - [SMALL_STATE(5118)] = 110187, - [SMALL_STATE(5119)] = 110252, - [SMALL_STATE(5120)] = 110347, - [SMALL_STATE(5121)] = 110412, - [SMALL_STATE(5122)] = 110473, - [SMALL_STATE(5123)] = 110586, - [SMALL_STATE(5124)] = 110647, - [SMALL_STATE(5125)] = 110708, - [SMALL_STATE(5126)] = 110773, - [SMALL_STATE(5127)] = 110838, - [SMALL_STATE(5128)] = 110951, - [SMALL_STATE(5129)] = 111026, - [SMALL_STATE(5130)] = 111087, - [SMALL_STATE(5131)] = 111148, - [SMALL_STATE(5132)] = 111209, - [SMALL_STATE(5133)] = 111270, - [SMALL_STATE(5134)] = 111331, - [SMALL_STATE(5135)] = 111444, - [SMALL_STATE(5136)] = 111505, - [SMALL_STATE(5137)] = 111618, - [SMALL_STATE(5138)] = 111687, - [SMALL_STATE(5139)] = 111780, - [SMALL_STATE(5140)] = 111845, - [SMALL_STATE(5141)] = 111958, - [SMALL_STATE(5142)] = 112057, - [SMALL_STATE(5143)] = 112124, - [SMALL_STATE(5144)] = 112237, - [SMALL_STATE(5145)] = 112298, - [SMALL_STATE(5146)] = 112411, - [SMALL_STATE(5147)] = 112472, - [SMALL_STATE(5148)] = 112585, - [SMALL_STATE(5149)] = 112646, - [SMALL_STATE(5150)] = 112707, - [SMALL_STATE(5151)] = 112820, - [SMALL_STATE(5152)] = 112885, - [SMALL_STATE(5153)] = 112946, - [SMALL_STATE(5154)] = 113013, - [SMALL_STATE(5155)] = 113074, - [SMALL_STATE(5156)] = 113187, - [SMALL_STATE(5157)] = 113256, - [SMALL_STATE(5158)] = 113317, - [SMALL_STATE(5159)] = 113430, - [SMALL_STATE(5160)] = 113491, - [SMALL_STATE(5161)] = 113552, - [SMALL_STATE(5162)] = 113650, - [SMALL_STATE(5163)] = 113710, - [SMALL_STATE(5164)] = 113784, - [SMALL_STATE(5165)] = 113844, - [SMALL_STATE(5166)] = 113904, - [SMALL_STATE(5167)] = 113966, - [SMALL_STATE(5168)] = 114026, - [SMALL_STATE(5169)] = 114086, - [SMALL_STATE(5170)] = 114146, - [SMALL_STATE(5171)] = 114250, - [SMALL_STATE(5172)] = 114318, - [SMALL_STATE(5173)] = 114474, - [SMALL_STATE(5174)] = 114584, - [SMALL_STATE(5175)] = 114688, - [SMALL_STATE(5176)] = 114794, - [SMALL_STATE(5177)] = 114866, - [SMALL_STATE(5178)] = 114926, - [SMALL_STATE(5179)] = 114992, - [SMALL_STATE(5180)] = 115052, - [SMALL_STATE(5181)] = 115156, - [SMALL_STATE(5182)] = 115216, - [SMALL_STATE(5183)] = 115276, - [SMALL_STATE(5184)] = 115336, - [SMALL_STATE(5185)] = 115396, - [SMALL_STATE(5186)] = 115510, - [SMALL_STATE(5187)] = 115584, - [SMALL_STATE(5188)] = 115658, - [SMALL_STATE(5189)] = 115722, - [SMALL_STATE(5190)] = 115790, - [SMALL_STATE(5191)] = 115850, - [SMALL_STATE(5192)] = 115954, - [SMALL_STATE(5193)] = 116026, - [SMALL_STATE(5194)] = 116086, - [SMALL_STATE(5195)] = 116190, - [SMALL_STATE(5196)] = 116256, - [SMALL_STATE(5197)] = 116322, - [SMALL_STATE(5198)] = 116392, - [SMALL_STATE(5199)] = 116462, - [SMALL_STATE(5200)] = 116568, - [SMALL_STATE(5201)] = 116672, - [SMALL_STATE(5202)] = 116828, - [SMALL_STATE(5203)] = 116888, - [SMALL_STATE(5204)] = 116992, - [SMALL_STATE(5205)] = 117052, - [SMALL_STATE(5206)] = 117112, - [SMALL_STATE(5207)] = 117172, - [SMALL_STATE(5208)] = 117232, - [SMALL_STATE(5209)] = 117292, - [SMALL_STATE(5210)] = 117398, - [SMALL_STATE(5211)] = 117458, - [SMALL_STATE(5212)] = 117518, - [SMALL_STATE(5213)] = 117638, - [SMALL_STATE(5214)] = 117704, - [SMALL_STATE(5215)] = 117764, - [SMALL_STATE(5216)] = 117824, - [SMALL_STATE(5217)] = 117938, - [SMALL_STATE(5218)] = 117998, - [SMALL_STATE(5219)] = 118070, - [SMALL_STATE(5220)] = 118134, - [SMALL_STATE(5221)] = 118196, - [SMALL_STATE(5222)] = 118310, - [SMALL_STATE(5223)] = 118386, - [SMALL_STATE(5224)] = 118460, - [SMALL_STATE(5225)] = 118564, - [SMALL_STATE(5226)] = 118668, - [SMALL_STATE(5227)] = 118824, - [SMALL_STATE(5228)] = 118890, - [SMALL_STATE(5229)] = 118994, - [SMALL_STATE(5230)] = 119054, - [SMALL_STATE(5231)] = 119114, - [SMALL_STATE(5232)] = 119174, - [SMALL_STATE(5233)] = 119240, - [SMALL_STATE(5234)] = 119304, - [SMALL_STATE(5235)] = 119366, - [SMALL_STATE(5236)] = 119470, - [SMALL_STATE(5237)] = 119626, - [SMALL_STATE(5238)] = 119686, - [SMALL_STATE(5239)] = 119746, - [SMALL_STATE(5240)] = 119850, - [SMALL_STATE(5241)] = 119952, - [SMALL_STATE(5242)] = 120022, - [SMALL_STATE(5243)] = 120100, - [SMALL_STATE(5244)] = 120198, - [SMALL_STATE(5245)] = 120312, - [SMALL_STATE(5246)] = 120406, - [SMALL_STATE(5247)] = 120498, - [SMALL_STATE(5248)] = 120560, - [SMALL_STATE(5249)] = 120626, - [SMALL_STATE(5250)] = 120730, - [SMALL_STATE(5251)] = 120886, - [SMALL_STATE(5252)] = 120974, - [SMALL_STATE(5253)] = 121078, - [SMALL_STATE(5254)] = 121164, - [SMALL_STATE(5255)] = 121274, - [SMALL_STATE(5256)] = 121334, - [SMALL_STATE(5257)] = 121448, - [SMALL_STATE(5258)] = 121512, - [SMALL_STATE(5259)] = 121572, - [SMALL_STATE(5260)] = 121640, - [SMALL_STATE(5261)] = 121700, - [SMALL_STATE(5262)] = 121804, - [SMALL_STATE(5263)] = 121960, - [SMALL_STATE(5264)] = 122020, - [SMALL_STATE(5265)] = 122088, - [SMALL_STATE(5266)] = 122192, - [SMALL_STATE(5267)] = 122262, - [SMALL_STATE(5268)] = 122344, - [SMALL_STATE(5269)] = 122414, - [SMALL_STATE(5270)] = 122570, - [SMALL_STATE(5271)] = 122648, - [SMALL_STATE(5272)] = 122708, - [SMALL_STATE(5273)] = 122864, - [SMALL_STATE(5274)] = 122924, - [SMALL_STATE(5275)] = 122984, - [SMALL_STATE(5276)] = 123044, - [SMALL_STATE(5277)] = 123104, - [SMALL_STATE(5278)] = 123260, - [SMALL_STATE(5279)] = 123320, - [SMALL_STATE(5280)] = 123424, - [SMALL_STATE(5281)] = 123484, - [SMALL_STATE(5282)] = 123544, - [SMALL_STATE(5283)] = 123604, - [SMALL_STATE(5284)] = 123724, - [SMALL_STATE(5285)] = 123784, - [SMALL_STATE(5286)] = 123848, - [SMALL_STATE(5287)] = 124004, - [SMALL_STATE(5288)] = 124078, - [SMALL_STATE(5289)] = 124158, - [SMALL_STATE(5290)] = 124226, - [SMALL_STATE(5291)] = 124286, - [SMALL_STATE(5292)] = 124390, - [SMALL_STATE(5293)] = 124460, - [SMALL_STATE(5294)] = 124526, - [SMALL_STATE(5295)] = 124592, - [SMALL_STATE(5296)] = 124654, - [SMALL_STATE(5297)] = 124758, - [SMALL_STATE(5298)] = 124818, - [SMALL_STATE(5299)] = 124896, - [SMALL_STATE(5300)] = 124978, - [SMALL_STATE(5301)] = 125082, - [SMALL_STATE(5302)] = 125186, - [SMALL_STATE(5303)] = 125254, - [SMALL_STATE(5304)] = 125322, - [SMALL_STATE(5305)] = 125400, - [SMALL_STATE(5306)] = 125460, - [SMALL_STATE(5307)] = 125566, - [SMALL_STATE(5308)] = 125672, - [SMALL_STATE(5309)] = 125778, - [SMALL_STATE(5310)] = 125884, - [SMALL_STATE(5311)] = 125994, - [SMALL_STATE(5312)] = 126070, - [SMALL_STATE(5313)] = 126172, - [SMALL_STATE(5314)] = 126270, - [SMALL_STATE(5315)] = 126364, - [SMALL_STATE(5316)] = 126456, - [SMALL_STATE(5317)] = 126544, - [SMALL_STATE(5318)] = 126630, - [SMALL_STATE(5319)] = 126712, - [SMALL_STATE(5320)] = 126790, - [SMALL_STATE(5321)] = 126870, - [SMALL_STATE(5322)] = 126978, - [SMALL_STATE(5323)] = 127084, - [SMALL_STATE(5324)] = 127194, - [SMALL_STATE(5325)] = 127300, - [SMALL_STATE(5326)] = 127410, - [SMALL_STATE(5327)] = 127472, - [SMALL_STATE(5328)] = 127534, - [SMALL_STATE(5329)] = 127594, - [SMALL_STATE(5330)] = 127654, - [SMALL_STATE(5331)] = 127714, - [SMALL_STATE(5332)] = 127774, - [SMALL_STATE(5333)] = 127844, - [SMALL_STATE(5334)] = 127904, - [SMALL_STATE(5335)] = 127980, - [SMALL_STATE(5336)] = 128054, - [SMALL_STATE(5337)] = 128160, - [SMALL_STATE(5338)] = 128228, - [SMALL_STATE(5339)] = 128328, - [SMALL_STATE(5340)] = 128424, - [SMALL_STATE(5341)] = 128516, - [SMALL_STATE(5342)] = 128606, - [SMALL_STATE(5343)] = 128718, - [SMALL_STATE(5344)] = 128804, - [SMALL_STATE(5345)] = 128888, - [SMALL_STATE(5346)] = 128970, - [SMALL_STATE(5347)] = 129048, - [SMALL_STATE(5348)] = 129128, - [SMALL_STATE(5349)] = 129232, - [SMALL_STATE(5350)] = 129302, - [SMALL_STATE(5351)] = 129370, - [SMALL_STATE(5352)] = 129434, - [SMALL_STATE(5353)] = 129590, - [SMALL_STATE(5354)] = 129688, - [SMALL_STATE(5355)] = 129762, - [SMALL_STATE(5356)] = 129822, - [SMALL_STATE(5357)] = 129882, - [SMALL_STATE(5358)] = 129942, - [SMALL_STATE(5359)] = 130006, - [SMALL_STATE(5360)] = 130110, - [SMALL_STATE(5361)] = 130178, - [SMALL_STATE(5362)] = 130244, - [SMALL_STATE(5363)] = 130304, - [SMALL_STATE(5364)] = 130372, - [SMALL_STATE(5365)] = 130432, - [SMALL_STATE(5366)] = 130492, - [SMALL_STATE(5367)] = 130562, - [SMALL_STATE(5368)] = 130668, - [SMALL_STATE(5369)] = 130736, - [SMALL_STATE(5370)] = 130840, - [SMALL_STATE(5371)] = 130914, - [SMALL_STATE(5372)] = 130984, - [SMALL_STATE(5373)] = 131088, - [SMALL_STATE(5374)] = 131148, - [SMALL_STATE(5375)] = 131208, - [SMALL_STATE(5376)] = 131312, - [SMALL_STATE(5377)] = 131416, - [SMALL_STATE(5378)] = 131484, - [SMALL_STATE(5379)] = 131588, - [SMALL_STATE(5380)] = 131650, - [SMALL_STATE(5381)] = 131714, - [SMALL_STATE(5382)] = 131774, - [SMALL_STATE(5383)] = 131882, - [SMALL_STATE(5384)] = 131980, - [SMALL_STATE(5385)] = 132052, - [SMALL_STATE(5386)] = 132120, - [SMALL_STATE(5387)] = 132192, - [SMALL_STATE(5388)] = 132262, - [SMALL_STATE(5389)] = 132334, - [SMALL_STATE(5390)] = 132440, - [SMALL_STATE(5391)] = 132514, - [SMALL_STATE(5392)] = 132588, - [SMALL_STATE(5393)] = 132694, - [SMALL_STATE(5394)] = 132766, - [SMALL_STATE(5395)] = 132872, - [SMALL_STATE(5396)] = 132978, - [SMALL_STATE(5397)] = 133088, - [SMALL_STATE(5398)] = 133164, - [SMALL_STATE(5399)] = 133238, - [SMALL_STATE(5400)] = 133340, - [SMALL_STATE(5401)] = 133434, - [SMALL_STATE(5402)] = 133526, - [SMALL_STATE(5403)] = 133614, - [SMALL_STATE(5404)] = 133700, - [SMALL_STATE(5405)] = 133782, - [SMALL_STATE(5406)] = 133860, - [SMALL_STATE(5407)] = 133940, - [SMALL_STATE(5408)] = 134014, - [SMALL_STATE(5409)] = 134118, - [SMALL_STATE(5410)] = 134224, - [SMALL_STATE(5411)] = 134334, - [SMALL_STATE(5412)] = 134440, - [SMALL_STATE(5413)] = 134550, - [SMALL_STATE(5414)] = 134622, - [SMALL_STATE(5415)] = 134732, - [SMALL_STATE(5416)] = 134800, - [SMALL_STATE(5417)] = 134868, - [SMALL_STATE(5418)] = 134936, - [SMALL_STATE(5419)] = 135042, - [SMALL_STATE(5420)] = 135116, - [SMALL_STATE(5421)] = 135190, - [SMALL_STATE(5422)] = 135250, - [SMALL_STATE(5423)] = 135354, - [SMALL_STATE(5424)] = 135422, - [SMALL_STATE(5425)] = 135530, - [SMALL_STATE(5426)] = 135604, - [SMALL_STATE(5427)] = 135664, - [SMALL_STATE(5428)] = 135724, - [SMALL_STATE(5429)] = 135788, - [SMALL_STATE(5430)] = 135849, - [SMALL_STATE(5431)] = 135908, - [SMALL_STATE(5432)] = 135967, - [SMALL_STATE(5433)] = 136026, - [SMALL_STATE(5434)] = 136087, - [SMALL_STATE(5435)] = 136146, - [SMALL_STATE(5436)] = 136205, - [SMALL_STATE(5437)] = 136264, - [SMALL_STATE(5438)] = 136327, - [SMALL_STATE(5439)] = 136386, - [SMALL_STATE(5440)] = 136445, - [SMALL_STATE(5441)] = 136512, - [SMALL_STATE(5442)] = 136625, - [SMALL_STATE(5443)] = 136684, - [SMALL_STATE(5444)] = 136743, - [SMALL_STATE(5445)] = 136802, - [SMALL_STATE(5446)] = 136861, - [SMALL_STATE(5447)] = 136920, - [SMALL_STATE(5448)] = 136981, - [SMALL_STATE(5449)] = 137048, - [SMALL_STATE(5450)] = 137107, - [SMALL_STATE(5451)] = 137174, - [SMALL_STATE(5452)] = 137237, - [SMALL_STATE(5453)] = 137296, - [SMALL_STATE(5454)] = 137355, - [SMALL_STATE(5455)] = 137420, - [SMALL_STATE(5456)] = 137483, - [SMALL_STATE(5457)] = 137542, - [SMALL_STATE(5458)] = 137607, - [SMALL_STATE(5459)] = 137670, - [SMALL_STATE(5460)] = 137729, - [SMALL_STATE(5461)] = 137802, - [SMALL_STATE(5462)] = 137861, - [SMALL_STATE(5463)] = 137920, - [SMALL_STATE(5464)] = 137979, - [SMALL_STATE(5465)] = 138038, - [SMALL_STATE(5466)] = 138097, - [SMALL_STATE(5467)] = 138164, - [SMALL_STATE(5468)] = 138223, - [SMALL_STATE(5469)] = 138288, - [SMALL_STATE(5470)] = 138347, - [SMALL_STATE(5471)] = 138406, - [SMALL_STATE(5472)] = 138465, - [SMALL_STATE(5473)] = 138524, - [SMALL_STATE(5474)] = 138583, - [SMALL_STATE(5475)] = 138642, - [SMALL_STATE(5476)] = 138701, - [SMALL_STATE(5477)] = 138762, - [SMALL_STATE(5478)] = 138829, - [SMALL_STATE(5479)] = 138888, - [SMALL_STATE(5480)] = 138947, - [SMALL_STATE(5481)] = 139008, - [SMALL_STATE(5482)] = 139067, - [SMALL_STATE(5483)] = 139126, - [SMALL_STATE(5484)] = 139189, - [SMALL_STATE(5485)] = 139252, - [SMALL_STATE(5486)] = 139311, - [SMALL_STATE(5487)] = 139370, - [SMALL_STATE(5488)] = 139429, - [SMALL_STATE(5489)] = 139488, - [SMALL_STATE(5490)] = 139547, - [SMALL_STATE(5491)] = 139606, - [SMALL_STATE(5492)] = 139665, - [SMALL_STATE(5493)] = 139724, - [SMALL_STATE(5494)] = 139783, - [SMALL_STATE(5495)] = 139842, - [SMALL_STATE(5496)] = 139907, - [SMALL_STATE(5497)] = 139972, - [SMALL_STATE(5498)] = 140031, - [SMALL_STATE(5499)] = 140090, - [SMALL_STATE(5500)] = 140149, - [SMALL_STATE(5501)] = 140208, - [SMALL_STATE(5502)] = 140267, - [SMALL_STATE(5503)] = 140326, - [SMALL_STATE(5504)] = 140385, - [SMALL_STATE(5505)] = 140444, - [SMALL_STATE(5506)] = 140509, - [SMALL_STATE(5507)] = 140568, - [SMALL_STATE(5508)] = 140627, - [SMALL_STATE(5509)] = 140686, - [SMALL_STATE(5510)] = 140745, - [SMALL_STATE(5511)] = 140806, - [SMALL_STATE(5512)] = 140865, - [SMALL_STATE(5513)] = 140928, - [SMALL_STATE(5514)] = 140987, - [SMALL_STATE(5515)] = 141046, - [SMALL_STATE(5516)] = 141107, - [SMALL_STATE(5517)] = 141166, - [SMALL_STATE(5518)] = 141225, - [SMALL_STATE(5519)] = 141284, - [SMALL_STATE(5520)] = 141351, - [SMALL_STATE(5521)] = 141414, - [SMALL_STATE(5522)] = 141473, - [SMALL_STATE(5523)] = 141532, - [SMALL_STATE(5524)] = 141591, - [SMALL_STATE(5525)] = 141650, - [SMALL_STATE(5526)] = 141713, - [SMALL_STATE(5527)] = 141772, - [SMALL_STATE(5528)] = 141831, - [SMALL_STATE(5529)] = 141890, - [SMALL_STATE(5530)] = 141949, - [SMALL_STATE(5531)] = 142014, - [SMALL_STATE(5532)] = 142073, - [SMALL_STATE(5533)] = 142132, - [SMALL_STATE(5534)] = 142191, - [SMALL_STATE(5535)] = 142250, - [SMALL_STATE(5536)] = 142309, - [SMALL_STATE(5537)] = 142368, - [SMALL_STATE(5538)] = 142427, - [SMALL_STATE(5539)] = 142486, - [SMALL_STATE(5540)] = 142545, - [SMALL_STATE(5541)] = 142604, - [SMALL_STATE(5542)] = 142663, - [SMALL_STATE(5543)] = 142722, - [SMALL_STATE(5544)] = 142781, - [SMALL_STATE(5545)] = 142840, - [SMALL_STATE(5546)] = 142907, - [SMALL_STATE(5547)] = 142966, - [SMALL_STATE(5548)] = 143025, - [SMALL_STATE(5549)] = 143084, - [SMALL_STATE(5550)] = 143143, - [SMALL_STATE(5551)] = 143204, - [SMALL_STATE(5552)] = 143263, - [SMALL_STATE(5553)] = 143322, - [SMALL_STATE(5554)] = 143381, - [SMALL_STATE(5555)] = 143442, - [SMALL_STATE(5556)] = 143505, - [SMALL_STATE(5557)] = 143564, - [SMALL_STATE(5558)] = 143623, - [SMALL_STATE(5559)] = 143682, - [SMALL_STATE(5560)] = 143743, - [SMALL_STATE(5561)] = 143802, - [SMALL_STATE(5562)] = 143861, - [SMALL_STATE(5563)] = 143920, - [SMALL_STATE(5564)] = 143985, - [SMALL_STATE(5565)] = 144044, - [SMALL_STATE(5566)] = 144103, - [SMALL_STATE(5567)] = 144162, - [SMALL_STATE(5568)] = 144221, - [SMALL_STATE(5569)] = 144280, - [SMALL_STATE(5570)] = 144339, - [SMALL_STATE(5571)] = 144398, - [SMALL_STATE(5572)] = 144457, - [SMALL_STATE(5573)] = 144516, - [SMALL_STATE(5574)] = 144575, - [SMALL_STATE(5575)] = 144634, - [SMALL_STATE(5576)] = 144693, - [SMALL_STATE(5577)] = 144752, - [SMALL_STATE(5578)] = 144811, - [SMALL_STATE(5579)] = 144870, - [SMALL_STATE(5580)] = 144935, - [SMALL_STATE(5581)] = 144994, - [SMALL_STATE(5582)] = 145053, - [SMALL_STATE(5583)] = 145112, - [SMALL_STATE(5584)] = 145171, - [SMALL_STATE(5585)] = 145230, - [SMALL_STATE(5586)] = 145289, - [SMALL_STATE(5587)] = 145352, - [SMALL_STATE(5588)] = 145415, - [SMALL_STATE(5589)] = 145474, - [SMALL_STATE(5590)] = 145533, - [SMALL_STATE(5591)] = 145592, - [SMALL_STATE(5592)] = 145655, - [SMALL_STATE(5593)] = 145720, - [SMALL_STATE(5594)] = 145779, - [SMALL_STATE(5595)] = 145840, - [SMALL_STATE(5596)] = 145901, - [SMALL_STATE(5597)] = 145960, - [SMALL_STATE(5598)] = 146019, - [SMALL_STATE(5599)] = 146078, - [SMALL_STATE(5600)] = 146137, - [SMALL_STATE(5601)] = 146196, - [SMALL_STATE(5602)] = 146255, - [SMALL_STATE(5603)] = 146314, - [SMALL_STATE(5604)] = 146373, - [SMALL_STATE(5605)] = 146432, - [SMALL_STATE(5606)] = 146491, - [SMALL_STATE(5607)] = 146550, - [SMALL_STATE(5608)] = 146609, - [SMALL_STATE(5609)] = 146668, - [SMALL_STATE(5610)] = 146727, - [SMALL_STATE(5611)] = 146796, - [SMALL_STATE(5612)] = 146863, - [SMALL_STATE(5613)] = 146922, - [SMALL_STATE(5614)] = 146983, - [SMALL_STATE(5615)] = 147042, - [SMALL_STATE(5616)] = 147115, - [SMALL_STATE(5617)] = 147174, - [SMALL_STATE(5618)] = 147233, - [SMALL_STATE(5619)] = 147292, - [SMALL_STATE(5620)] = 147350, - [SMALL_STATE(5621)] = 147408, - [SMALL_STATE(5622)] = 147466, - [SMALL_STATE(5623)] = 147524, - [SMALL_STATE(5624)] = 147626, - [SMALL_STATE(5625)] = 147684, - [SMALL_STATE(5626)] = 147742, - [SMALL_STATE(5627)] = 147800, - [SMALL_STATE(5628)] = 147858, - [SMALL_STATE(5629)] = 147920, - [SMALL_STATE(5630)] = 147978, - [SMALL_STATE(5631)] = 148052, - [SMALL_STATE(5632)] = 148124, - [SMALL_STATE(5633)] = 148182, - [SMALL_STATE(5634)] = 148240, - [SMALL_STATE(5635)] = 148340, - [SMALL_STATE(5636)] = 148402, - [SMALL_STATE(5637)] = 148500, - [SMALL_STATE(5638)] = 148594, - [SMALL_STATE(5639)] = 148684, - [SMALL_STATE(5640)] = 148770, - [SMALL_STATE(5641)] = 148854, - [SMALL_STATE(5642)] = 148934, - [SMALL_STATE(5643)] = 148992, - [SMALL_STATE(5644)] = 149068, - [SMALL_STATE(5645)] = 149146, - [SMALL_STATE(5646)] = 149204, - [SMALL_STATE(5647)] = 149262, - [SMALL_STATE(5648)] = 149320, - [SMALL_STATE(5649)] = 149378, - [SMALL_STATE(5650)] = 149436, - [SMALL_STATE(5651)] = 149494, - [SMALL_STATE(5652)] = 149552, - [SMALL_STATE(5653)] = 149610, - [SMALL_STATE(5654)] = 149672, - [SMALL_STATE(5655)] = 149730, - [SMALL_STATE(5656)] = 149792, - [SMALL_STATE(5657)] = 149850, - [SMALL_STATE(5658)] = 149920, - [SMALL_STATE(5659)] = 149992, - [SMALL_STATE(5660)] = 150062, - [SMALL_STATE(5661)] = 150120, - [SMALL_STATE(5662)] = 150192, - [SMALL_STATE(5663)] = 150250, - [SMALL_STATE(5664)] = 150308, - [SMALL_STATE(5665)] = 150366, - [SMALL_STATE(5666)] = 150424, - [SMALL_STATE(5667)] = 150490, - [SMALL_STATE(5668)] = 150548, - [SMALL_STATE(5669)] = 150606, - [SMALL_STATE(5670)] = 150664, - [SMALL_STATE(5671)] = 150722, - [SMALL_STATE(5672)] = 150780, - [SMALL_STATE(5673)] = 150838, - [SMALL_STATE(5674)] = 150896, - [SMALL_STATE(5675)] = 150954, - [SMALL_STATE(5676)] = 151012, - [SMALL_STATE(5677)] = 151074, - [SMALL_STATE(5678)] = 151132, - [SMALL_STATE(5679)] = 151190, - [SMALL_STATE(5680)] = 151292, - [SMALL_STATE(5681)] = 151350, - [SMALL_STATE(5682)] = 151408, - [SMALL_STATE(5683)] = 151466, - [SMALL_STATE(5684)] = 151524, - [SMALL_STATE(5685)] = 151582, - [SMALL_STATE(5686)] = 151640, - [SMALL_STATE(5687)] = 151698, - [SMALL_STATE(5688)] = 151756, - [SMALL_STATE(5689)] = 151814, - [SMALL_STATE(5690)] = 151874, - [SMALL_STATE(5691)] = 151932, - [SMALL_STATE(5692)] = 151990, - [SMALL_STATE(5693)] = 152048, - [SMALL_STATE(5694)] = 152154, - [SMALL_STATE(5695)] = 152220, - [SMALL_STATE(5696)] = 152278, - [SMALL_STATE(5697)] = 152336, - [SMALL_STATE(5698)] = 152394, - [SMALL_STATE(5699)] = 152452, - [SMALL_STATE(5700)] = 152524, - [SMALL_STATE(5701)] = 152582, - [SMALL_STATE(5702)] = 152654, - [SMALL_STATE(5703)] = 152756, - [SMALL_STATE(5704)] = 152822, - [SMALL_STATE(5705)] = 152880, - [SMALL_STATE(5706)] = 152946, - [SMALL_STATE(5707)] = 153012, - [SMALL_STATE(5708)] = 153070, - [SMALL_STATE(5709)] = 153128, - [SMALL_STATE(5710)] = 153186, - [SMALL_STATE(5711)] = 153244, - [SMALL_STATE(5712)] = 153310, - [SMALL_STATE(5713)] = 153382, - [SMALL_STATE(5714)] = 153440, - [SMALL_STATE(5715)] = 153512, - [SMALL_STATE(5716)] = 153570, - [SMALL_STATE(5717)] = 153628, - [SMALL_STATE(5718)] = 153686, - [SMALL_STATE(5719)] = 153752, - [SMALL_STATE(5720)] = 153818, - [SMALL_STATE(5721)] = 153884, - [SMALL_STATE(5722)] = 153950, - [SMALL_STATE(5723)] = 154008, - [SMALL_STATE(5724)] = 154074, - [SMALL_STATE(5725)] = 154132, - [SMALL_STATE(5726)] = 154190, - [SMALL_STATE(5727)] = 154256, - [SMALL_STATE(5728)] = 154322, - [SMALL_STATE(5729)] = 154380, - [SMALL_STATE(5730)] = 154438, - [SMALL_STATE(5731)] = 154504, - [SMALL_STATE(5732)] = 154572, - [SMALL_STATE(5733)] = 154630, - [SMALL_STATE(5734)] = 154688, - [SMALL_STATE(5735)] = 154746, - [SMALL_STATE(5736)] = 154804, - [SMALL_STATE(5737)] = 154862, - [SMALL_STATE(5738)] = 154920, - [SMALL_STATE(5739)] = 155026, - [SMALL_STATE(5740)] = 155084, - [SMALL_STATE(5741)] = 155142, - [SMALL_STATE(5742)] = 155200, - [SMALL_STATE(5743)] = 155266, - [SMALL_STATE(5744)] = 155376, - [SMALL_STATE(5745)] = 155478, - [SMALL_STATE(5746)] = 155536, - [SMALL_STATE(5747)] = 155594, - [SMALL_STATE(5748)] = 155652, - [SMALL_STATE(5749)] = 155710, - [SMALL_STATE(5750)] = 155768, - [SMALL_STATE(5751)] = 155838, - [SMALL_STATE(5752)] = 155940, - [SMALL_STATE(5753)] = 155998, - [SMALL_STATE(5754)] = 156056, - [SMALL_STATE(5755)] = 156114, - [SMALL_STATE(5756)] = 156172, - [SMALL_STATE(5757)] = 156230, - [SMALL_STATE(5758)] = 156296, - [SMALL_STATE(5759)] = 156354, - [SMALL_STATE(5760)] = 156412, - [SMALL_STATE(5761)] = 156470, - [SMALL_STATE(5762)] = 156528, - [SMALL_STATE(5763)] = 156586, - [SMALL_STATE(5764)] = 156656, - [SMALL_STATE(5765)] = 156714, - [SMALL_STATE(5766)] = 156772, - [SMALL_STATE(5767)] = 156830, - [SMALL_STATE(5768)] = 156896, - [SMALL_STATE(5769)] = 156954, - [SMALL_STATE(5770)] = 157012, - [SMALL_STATE(5771)] = 157070, - [SMALL_STATE(5772)] = 157128, - [SMALL_STATE(5773)] = 157186, - [SMALL_STATE(5774)] = 157244, - [SMALL_STATE(5775)] = 157316, - [SMALL_STATE(5776)] = 157374, - [SMALL_STATE(5777)] = 157440, - [SMALL_STATE(5778)] = 157498, - [SMALL_STATE(5779)] = 157568, - [SMALL_STATE(5780)] = 157626, - [SMALL_STATE(5781)] = 157684, - [SMALL_STATE(5782)] = 157742, - [SMALL_STATE(5783)] = 157800, - [SMALL_STATE(5784)] = 157860, - [SMALL_STATE(5785)] = 157918, - [SMALL_STATE(5786)] = 158020, - [SMALL_STATE(5787)] = 158078, - [SMALL_STATE(5788)] = 158136, - [SMALL_STATE(5789)] = 158198, - [SMALL_STATE(5790)] = 158256, - [SMALL_STATE(5791)] = 158314, - [SMALL_STATE(5792)] = 158372, - [SMALL_STATE(5793)] = 158430, - [SMALL_STATE(5794)] = 158488, - [SMALL_STATE(5795)] = 158546, - [SMALL_STATE(5796)] = 158652, - [SMALL_STATE(5797)] = 158710, - [SMALL_STATE(5798)] = 158778, - [SMALL_STATE(5799)] = 158836, - [SMALL_STATE(5800)] = 158898, - [SMALL_STATE(5801)] = 158964, - [SMALL_STATE(5802)] = 159022, - [SMALL_STATE(5803)] = 159080, - [SMALL_STATE(5804)] = 159138, - [SMALL_STATE(5805)] = 159196, - [SMALL_STATE(5806)] = 159254, - [SMALL_STATE(5807)] = 159320, - [SMALL_STATE(5808)] = 159378, - [SMALL_STATE(5809)] = 159436, - [SMALL_STATE(5810)] = 159494, - [SMALL_STATE(5811)] = 159552, - [SMALL_STATE(5812)] = 159610, - [SMALL_STATE(5813)] = 159668, - [SMALL_STATE(5814)] = 159726, - [SMALL_STATE(5815)] = 159784, - [SMALL_STATE(5816)] = 159842, - [SMALL_STATE(5817)] = 159904, - [SMALL_STATE(5818)] = 159962, - [SMALL_STATE(5819)] = 160020, - [SMALL_STATE(5820)] = 160078, - [SMALL_STATE(5821)] = 160136, - [SMALL_STATE(5822)] = 160194, - [SMALL_STATE(5823)] = 160256, - [SMALL_STATE(5824)] = 160314, - [SMALL_STATE(5825)] = 160372, - [SMALL_STATE(5826)] = 160430, - [SMALL_STATE(5827)] = 160488, - [SMALL_STATE(5828)] = 160546, - [SMALL_STATE(5829)] = 160609, - [SMALL_STATE(5830)] = 160666, - [SMALL_STATE(5831)] = 160729, - [SMALL_STATE(5832)] = 160822, - [SMALL_STATE(5833)] = 160879, - [SMALL_STATE(5834)] = 160954, - [SMALL_STATE(5835)] = 161011, - [SMALL_STATE(5836)] = 161080, - [SMALL_STATE(5837)] = 161137, - [SMALL_STATE(5838)] = 161206, - [SMALL_STATE(5839)] = 161273, - [SMALL_STATE(5840)] = 161330, - [SMALL_STATE(5841)] = 161387, - [SMALL_STATE(5842)] = 161456, - [SMALL_STATE(5843)] = 161525, - [SMALL_STATE(5844)] = 161594, - [SMALL_STATE(5845)] = 161651, - [SMALL_STATE(5846)] = 161708, - [SMALL_STATE(5847)] = 161773, - [SMALL_STATE(5848)] = 161836, - [SMALL_STATE(5849)] = 161905, - [SMALL_STATE(5850)] = 161974, - [SMALL_STATE(5851)] = 162043, - [SMALL_STATE(5852)] = 162112, - [SMALL_STATE(5853)] = 162169, - [SMALL_STATE(5854)] = 162236, - [SMALL_STATE(5855)] = 162293, - [SMALL_STATE(5856)] = 162356, - [SMALL_STATE(5857)] = 162419, - [SMALL_STATE(5858)] = 162476, - [SMALL_STATE(5859)] = 162569, - [SMALL_STATE(5860)] = 162632, - [SMALL_STATE(5861)] = 162689, - [SMALL_STATE(5862)] = 162752, - [SMALL_STATE(5863)] = 162815, - [SMALL_STATE(5864)] = 162872, - [SMALL_STATE(5865)] = 162941, - [SMALL_STATE(5866)] = 162998, - [SMALL_STATE(5867)] = 163055, - [SMALL_STATE(5868)] = 163124, - [SMALL_STATE(5869)] = 163187, - [SMALL_STATE(5870)] = 163250, - [SMALL_STATE(5871)] = 163307, - [SMALL_STATE(5872)] = 163364, - [SMALL_STATE(5873)] = 163421, - [SMALL_STATE(5874)] = 163478, - [SMALL_STATE(5875)] = 163541, - [SMALL_STATE(5876)] = 163598, - [SMALL_STATE(5877)] = 163655, - [SMALL_STATE(5878)] = 163718, - [SMALL_STATE(5879)] = 163775, - [SMALL_STATE(5880)] = 163852, - [SMALL_STATE(5881)] = 163927, - [SMALL_STATE(5882)] = 163984, - [SMALL_STATE(5883)] = 164047, - [SMALL_STATE(5884)] = 164104, - [SMALL_STATE(5885)] = 164161, - [SMALL_STATE(5886)] = 164218, - [SMALL_STATE(5887)] = 164275, - [SMALL_STATE(5888)] = 164332, - [SMALL_STATE(5889)] = 164389, - [SMALL_STATE(5890)] = 164446, - [SMALL_STATE(5891)] = 164503, - [SMALL_STATE(5892)] = 164562, - [SMALL_STATE(5893)] = 164619, - [SMALL_STATE(5894)] = 164682, - [SMALL_STATE(5895)] = 164747, - [SMALL_STATE(5896)] = 164814, - [SMALL_STATE(5897)] = 164871, - [SMALL_STATE(5898)] = 164928, - [SMALL_STATE(5899)] = 164989, - [SMALL_STATE(5900)] = 165046, - [SMALL_STATE(5901)] = 165103, - [SMALL_STATE(5902)] = 165160, - [SMALL_STATE(5903)] = 165217, - [SMALL_STATE(5904)] = 165274, - [SMALL_STATE(5905)] = 165331, - [SMALL_STATE(5906)] = 165400, - [SMALL_STATE(5907)] = 165463, - [SMALL_STATE(5908)] = 165532, - [SMALL_STATE(5909)] = 165601, - [SMALL_STATE(5910)] = 165670, - [SMALL_STATE(5911)] = 165739, - [SMALL_STATE(5912)] = 165796, - [SMALL_STATE(5913)] = 165855, - [SMALL_STATE(5914)] = 165912, - [SMALL_STATE(5915)] = 165969, - [SMALL_STATE(5916)] = 166028, - [SMALL_STATE(5917)] = 166103, - [SMALL_STATE(5918)] = 166171, - [SMALL_STATE(5919)] = 166227, - [SMALL_STATE(5920)] = 166283, - [SMALL_STATE(5921)] = 166347, - [SMALL_STATE(5922)] = 166403, - [SMALL_STATE(5923)] = 166459, - [SMALL_STATE(5924)] = 166515, - [SMALL_STATE(5925)] = 166579, - [SMALL_STATE(5926)] = 166635, - [SMALL_STATE(5927)] = 166691, - [SMALL_STATE(5928)] = 166747, - [SMALL_STATE(5929)] = 166803, - [SMALL_STATE(5930)] = 166859, - [SMALL_STATE(5931)] = 166915, - [SMALL_STATE(5932)] = 166971, - [SMALL_STATE(5933)] = 167027, - [SMALL_STATE(5934)] = 167083, - [SMALL_STATE(5935)] = 167139, - [SMALL_STATE(5936)] = 167195, - [SMALL_STATE(5937)] = 167257, - [SMALL_STATE(5938)] = 167313, - [SMALL_STATE(5939)] = 167377, - [SMALL_STATE(5940)] = 167433, - [SMALL_STATE(5941)] = 167489, - [SMALL_STATE(5942)] = 167545, - [SMALL_STATE(5943)] = 167601, - [SMALL_STATE(5944)] = 167705, - [SMALL_STATE(5945)] = 167761, - [SMALL_STATE(5946)] = 167817, - [SMALL_STATE(5947)] = 167873, - [SMALL_STATE(5948)] = 167929, - [SMALL_STATE(5949)] = 167985, - [SMALL_STATE(5950)] = 168041, - [SMALL_STATE(5951)] = 168097, - [SMALL_STATE(5952)] = 168153, - [SMALL_STATE(5953)] = 168209, - [SMALL_STATE(5954)] = 168265, - [SMALL_STATE(5955)] = 168321, - [SMALL_STATE(5956)] = 168377, - [SMALL_STATE(5957)] = 168433, - [SMALL_STATE(5958)] = 168489, - [SMALL_STATE(5959)] = 168545, - [SMALL_STATE(5960)] = 168601, - [SMALL_STATE(5961)] = 168657, - [SMALL_STATE(5962)] = 168713, - [SMALL_STATE(5963)] = 168769, - [SMALL_STATE(5964)] = 168863, - [SMALL_STATE(5965)] = 168919, - [SMALL_STATE(5966)] = 168975, - [SMALL_STATE(5967)] = 169069, - [SMALL_STATE(5968)] = 169125, - [SMALL_STATE(5969)] = 169181, - [SMALL_STATE(5970)] = 169245, - [SMALL_STATE(5971)] = 169301, - [SMALL_STATE(5972)] = 169357, - [SMALL_STATE(5973)] = 169413, - [SMALL_STATE(5974)] = 169469, - [SMALL_STATE(5975)] = 169525, - [SMALL_STATE(5976)] = 169581, - [SMALL_STATE(5977)] = 169637, - [SMALL_STATE(5978)] = 169701, - [SMALL_STATE(5979)] = 169757, - [SMALL_STATE(5980)] = 169813, - [SMALL_STATE(5981)] = 169869, - [SMALL_STATE(5982)] = 169925, - [SMALL_STATE(5983)] = 169981, - [SMALL_STATE(5984)] = 170037, - [SMALL_STATE(5985)] = 170093, - [SMALL_STATE(5986)] = 170149, - [SMALL_STATE(5987)] = 170205, - [SMALL_STATE(5988)] = 170261, - [SMALL_STATE(5989)] = 170317, - [SMALL_STATE(5990)] = 170373, - [SMALL_STATE(5991)] = 170429, - [SMALL_STATE(5992)] = 170485, - [SMALL_STATE(5993)] = 170553, - [SMALL_STATE(5994)] = 170609, - [SMALL_STATE(5995)] = 170665, - [SMALL_STATE(5996)] = 170721, - [SMALL_STATE(5997)] = 170777, - [SMALL_STATE(5998)] = 170833, - [SMALL_STATE(5999)] = 170889, - [SMALL_STATE(6000)] = 170995, - [SMALL_STATE(6001)] = 171051, - [SMALL_STATE(6002)] = 171107, - [SMALL_STATE(6003)] = 171163, - [SMALL_STATE(6004)] = 171227, - [SMALL_STATE(6005)] = 171283, - [SMALL_STATE(6006)] = 171347, - [SMALL_STATE(6007)] = 171411, - [SMALL_STATE(6008)] = 171475, - [SMALL_STATE(6009)] = 171531, - [SMALL_STATE(6010)] = 171595, - [SMALL_STATE(6011)] = 171651, - [SMALL_STATE(6012)] = 171707, - [SMALL_STATE(6013)] = 171763, - [SMALL_STATE(6014)] = 171819, - [SMALL_STATE(6015)] = 171875, - [SMALL_STATE(6016)] = 171931, - [SMALL_STATE(6017)] = 171987, - [SMALL_STATE(6018)] = 172043, - [SMALL_STATE(6019)] = 172107, - [SMALL_STATE(6020)] = 172163, - [SMALL_STATE(6021)] = 172219, - [SMALL_STATE(6022)] = 172288, - [SMALL_STATE(6023)] = 172343, - [SMALL_STATE(6024)] = 172398, - [SMALL_STATE(6025)] = 172453, - [SMALL_STATE(6026)] = 172522, - [SMALL_STATE(6027)] = 172577, - [SMALL_STATE(6028)] = 172668, - [SMALL_STATE(6029)] = 172723, - [SMALL_STATE(6030)] = 172778, - [SMALL_STATE(6031)] = 172851, - [SMALL_STATE(6032)] = 172906, - [SMALL_STATE(6033)] = 172997, - [SMALL_STATE(6034)] = 173052, - [SMALL_STATE(6035)] = 173125, - [SMALL_STATE(6036)] = 173180, - [SMALL_STATE(6037)] = 173249, - [SMALL_STATE(6038)] = 173304, - [SMALL_STATE(6039)] = 173366, - [SMALL_STATE(6040)] = 173428, - [SMALL_STATE(6041)] = 173494, - [SMALL_STATE(6042)] = 173556, - [SMALL_STATE(6043)] = 173618, - [SMALL_STATE(6044)] = 173680, - [SMALL_STATE(6045)] = 173742, - [SMALL_STATE(6046)] = 173804, - [SMALL_STATE(6047)] = 173896, - [SMALL_STATE(6048)] = 173958, - [SMALL_STATE(6049)] = 174024, - [SMALL_STATE(6050)] = 174080, - [SMALL_STATE(6051)] = 174146, - [SMALL_STATE(6052)] = 174218, - [SMALL_STATE(6053)] = 174280, - [SMALL_STATE(6054)] = 174382, - [SMALL_STATE(6055)] = 174448, - [SMALL_STATE(6056)] = 174538, - [SMALL_STATE(6057)] = 174600, - [SMALL_STATE(6058)] = 174692, - [SMALL_STATE(6059)] = 174754, - [SMALL_STATE(6060)] = 174816, - [SMALL_STATE(6061)] = 174880, - [SMALL_STATE(6062)] = 174970, - [SMALL_STATE(6063)] = 175032, - [SMALL_STATE(6064)] = 175094, - [SMALL_STATE(6065)] = 175186, - [SMALL_STATE(6066)] = 175250, - [SMALL_STATE(6067)] = 175352, - [SMALL_STATE(6068)] = 175414, - [SMALL_STATE(6069)] = 175476, - [SMALL_STATE(6070)] = 175538, - [SMALL_STATE(6071)] = 175600, - [SMALL_STATE(6072)] = 175664, - [SMALL_STATE(6073)] = 175730, - [SMALL_STATE(6074)] = 175784, - [SMALL_STATE(6075)] = 175850, - [SMALL_STATE(6076)] = 175912, - [SMALL_STATE(6077)] = 175974, - [SMALL_STATE(6078)] = 176032, - [SMALL_STATE(6079)] = 176098, - [SMALL_STATE(6080)] = 176164, - [SMALL_STATE(6081)] = 176218, - [SMALL_STATE(6082)] = 176282, - [SMALL_STATE(6083)] = 176348, - [SMALL_STATE(6084)] = 176440, - [SMALL_STATE(6085)] = 176542, - [SMALL_STATE(6086)] = 176597, - [SMALL_STATE(6087)] = 176650, - [SMALL_STATE(6088)] = 176731, - [SMALL_STATE(6089)] = 176820, - [SMALL_STATE(6090)] = 176909, - [SMALL_STATE(6091)] = 176990, - [SMALL_STATE(6092)] = 177043, - [SMALL_STATE(6093)] = 177132, - [SMALL_STATE(6094)] = 177185, - [SMALL_STATE(6095)] = 177238, - [SMALL_STATE(6096)] = 177291, - [SMALL_STATE(6097)] = 177380, - [SMALL_STATE(6098)] = 177469, - [SMALL_STATE(6099)] = 177538, - [SMALL_STATE(6100)] = 177591, - [SMALL_STATE(6101)] = 177644, - [SMALL_STATE(6102)] = 177697, - [SMALL_STATE(6103)] = 177750, - [SMALL_STATE(6104)] = 177803, - [SMALL_STATE(6105)] = 177892, - [SMALL_STATE(6106)] = 177945, - [SMALL_STATE(6107)] = 177998, - [SMALL_STATE(6108)] = 178079, - [SMALL_STATE(6109)] = 178168, - [SMALL_STATE(6110)] = 178257, - [SMALL_STATE(6111)] = 178310, - [SMALL_STATE(6112)] = 178363, - [SMALL_STATE(6113)] = 178452, - [SMALL_STATE(6114)] = 178541, - [SMALL_STATE(6115)] = 178594, - [SMALL_STATE(6116)] = 178675, - [SMALL_STATE(6117)] = 178764, - [SMALL_STATE(6118)] = 178853, - [SMALL_STATE(6119)] = 178906, - [SMALL_STATE(6120)] = 178959, - [SMALL_STATE(6121)] = 179012, - [SMALL_STATE(6122)] = 179065, - [SMALL_STATE(6123)] = 179118, - [SMALL_STATE(6124)] = 179171, - [SMALL_STATE(6125)] = 179224, - [SMALL_STATE(6126)] = 179277, - [SMALL_STATE(6127)] = 179366, - [SMALL_STATE(6128)] = 179455, - [SMALL_STATE(6129)] = 179544, - [SMALL_STATE(6130)] = 179625, - [SMALL_STATE(6131)] = 179678, - [SMALL_STATE(6132)] = 179731, - [SMALL_STATE(6133)] = 179820, - [SMALL_STATE(6134)] = 179909, - [SMALL_STATE(6135)] = 179998, - [SMALL_STATE(6136)] = 180051, - [SMALL_STATE(6137)] = 180106, - [SMALL_STATE(6138)] = 180195, - [SMALL_STATE(6139)] = 180284, - [SMALL_STATE(6140)] = 180337, - [SMALL_STATE(6141)] = 180400, - [SMALL_STATE(6142)] = 180453, - [SMALL_STATE(6143)] = 180542, - [SMALL_STATE(6144)] = 180631, - [SMALL_STATE(6145)] = 180720, - [SMALL_STATE(6146)] = 180809, - [SMALL_STATE(6147)] = 180862, - [SMALL_STATE(6148)] = 180951, - [SMALL_STATE(6149)] = 181040, - [SMALL_STATE(6150)] = 181129, - [SMALL_STATE(6151)] = 181218, - [SMALL_STATE(6152)] = 181307, - [SMALL_STATE(6153)] = 181388, - [SMALL_STATE(6154)] = 181477, - [SMALL_STATE(6155)] = 181537, - [SMALL_STATE(6156)] = 181601, - [SMALL_STATE(6157)] = 181665, - [SMALL_STATE(6158)] = 181725, - [SMALL_STATE(6159)] = 181805, - [SMALL_STATE(6160)] = 181875, - [SMALL_STATE(6161)] = 181939, - [SMALL_STATE(6162)] = 182003, - [SMALL_STATE(6163)] = 182067, - [SMALL_STATE(6164)] = 182131, - [SMALL_STATE(6165)] = 182201, - [SMALL_STATE(6166)] = 182265, - [SMALL_STATE(6167)] = 182345, - [SMALL_STATE(6168)] = 182409, - [SMALL_STATE(6169)] = 182473, - [SMALL_STATE(6170)] = 182537, - [SMALL_STATE(6171)] = 182601, - [SMALL_STATE(6172)] = 182665, - [SMALL_STATE(6173)] = 182745, - [SMALL_STATE(6174)] = 182833, - [SMALL_STATE(6175)] = 182921, - [SMALL_STATE(6176)] = 182985, - [SMALL_STATE(6177)] = 183049, - [SMALL_STATE(6178)] = 183105, - [SMALL_STATE(6179)] = 183185, - [SMALL_STATE(6180)] = 183265, - [SMALL_STATE(6181)] = 183329, - [SMALL_STATE(6182)] = 183393, - [SMALL_STATE(6183)] = 183473, - [SMALL_STATE(6184)] = 183532, - [SMALL_STATE(6185)] = 183585, - [SMALL_STATE(6186)] = 183646, - [SMALL_STATE(6187)] = 183705, - [SMALL_STATE(6188)] = 183764, - [SMALL_STATE(6189)] = 183823, - [SMALL_STATE(6190)] = 183908, - [SMALL_STATE(6191)] = 183967, - [SMALL_STATE(6192)] = 184026, - [SMALL_STATE(6193)] = 184113, - [SMALL_STATE(6194)] = 184172, - [SMALL_STATE(6195)] = 184231, - [SMALL_STATE(6196)] = 184318, - [SMALL_STATE(6197)] = 184377, - [SMALL_STATE(6198)] = 184436, - [SMALL_STATE(6199)] = 184495, - [SMALL_STATE(6200)] = 184598, - [SMALL_STATE(6201)] = 184695, - [SMALL_STATE(6202)] = 184754, - [SMALL_STATE(6203)] = 184839, - [SMALL_STATE(6204)] = 184898, - [SMALL_STATE(6205)] = 184957, - [SMALL_STATE(6206)] = 185016, - [SMALL_STATE(6207)] = 185075, - [SMALL_STATE(6208)] = 185160, - [SMALL_STATE(6209)] = 185225, - [SMALL_STATE(6210)] = 185284, - [SMALL_STATE(6211)] = 185351, - [SMALL_STATE(6212)] = 185436, - [SMALL_STATE(6213)] = 185495, - [SMALL_STATE(6214)] = 185554, - [SMALL_STATE(6215)] = 185639, - [SMALL_STATE(6216)] = 185698, - [SMALL_STATE(6217)] = 185783, - [SMALL_STATE(6218)] = 185868, - [SMALL_STATE(6219)] = 185953, - [SMALL_STATE(6220)] = 186012, - [SMALL_STATE(6221)] = 186077, - [SMALL_STATE(6222)] = 186136, - [SMALL_STATE(6223)] = 186187, - [SMALL_STATE(6224)] = 186246, - [SMALL_STATE(6225)] = 186305, - [SMALL_STATE(6226)] = 186364, - [SMALL_STATE(6227)] = 186429, - [SMALL_STATE(6228)] = 186488, - [SMALL_STATE(6229)] = 186547, - [SMALL_STATE(6230)] = 186606, - [SMALL_STATE(6231)] = 186665, - [SMALL_STATE(6232)] = 186724, - [SMALL_STATE(6233)] = 186783, - [SMALL_STATE(6234)] = 186842, - [SMALL_STATE(6235)] = 186901, - [SMALL_STATE(6236)] = 186960, - [SMALL_STATE(6237)] = 187019, - [SMALL_STATE(6238)] = 187118, - [SMALL_STATE(6239)] = 187177, - [SMALL_STATE(6240)] = 187276, - [SMALL_STATE(6241)] = 187375, - [SMALL_STATE(6242)] = 187434, - [SMALL_STATE(6243)] = 187533, - [SMALL_STATE(6244)] = 187636, - [SMALL_STATE(6245)] = 187705, - [SMALL_STATE(6246)] = 187800, - [SMALL_STATE(6247)] = 187891, - [SMALL_STATE(6248)] = 187980, - [SMALL_STATE(6249)] = 188065, - [SMALL_STATE(6250)] = 188148, - [SMALL_STATE(6251)] = 188227, - [SMALL_STATE(6252)] = 188302, - [SMALL_STATE(6253)] = 188373, - [SMALL_STATE(6254)] = 188446, - [SMALL_STATE(6255)] = 188505, - [SMALL_STATE(6256)] = 188604, - [SMALL_STATE(6257)] = 188707, - [SMALL_STATE(6258)] = 188806, - [SMALL_STATE(6259)] = 188909, - [SMALL_STATE(6260)] = 188968, - [SMALL_STATE(6261)] = 189027, - [SMALL_STATE(6262)] = 189086, - [SMALL_STATE(6263)] = 189145, - [SMALL_STATE(6264)] = 189204, - [SMALL_STATE(6265)] = 189265, - [SMALL_STATE(6266)] = 189324, - [SMALL_STATE(6267)] = 189385, - [SMALL_STATE(6268)] = 189450, - [SMALL_STATE(6269)] = 189524, - [SMALL_STATE(6270)] = 189578, - [SMALL_STATE(6271)] = 189630, - [SMALL_STATE(6272)] = 189722, - [SMALL_STATE(6273)] = 189814, - [SMALL_STATE(6274)] = 189906, - [SMALL_STATE(6275)] = 189998, - [SMALL_STATE(6276)] = 190104, - [SMALL_STATE(6277)] = 190158, - [SMALL_STATE(6278)] = 190250, - [SMALL_STATE(6279)] = 190324, - [SMALL_STATE(6280)] = 190416, - [SMALL_STATE(6281)] = 190474, - [SMALL_STATE(6282)] = 190566, - [SMALL_STATE(6283)] = 190660, - [SMALL_STATE(6284)] = 190752, - [SMALL_STATE(6285)] = 190844, - [SMALL_STATE(6286)] = 190936, - [SMALL_STATE(6287)] = 191028, - [SMALL_STATE(6288)] = 191086, - [SMALL_STATE(6289)] = 191148, - [SMALL_STATE(6290)] = 191254, - [SMALL_STATE(6291)] = 191346, - [SMALL_STATE(6292)] = 191396, - [SMALL_STATE(6293)] = 191488, - [SMALL_STATE(6294)] = 191580, - [SMALL_STATE(6295)] = 191672, - [SMALL_STATE(6296)] = 191726, - [SMALL_STATE(6297)] = 191776, - [SMALL_STATE(6298)] = 191830, - [SMALL_STATE(6299)] = 191904, - [SMALL_STATE(6300)] = 191960, - [SMALL_STATE(6301)] = 192022, - [SMALL_STATE(6302)] = 192076, - [SMALL_STATE(6303)] = 192150, - [SMALL_STATE(6304)] = 192256, - [SMALL_STATE(6305)] = 192342, - [SMALL_STATE(6306)] = 192416, - [SMALL_STATE(6307)] = 192502, - [SMALL_STATE(6308)] = 192556, - [SMALL_STATE(6309)] = 192606, - [SMALL_STATE(6310)] = 192698, - [SMALL_STATE(6311)] = 192764, - [SMALL_STATE(6312)] = 192814, - [SMALL_STATE(6313)] = 192864, - [SMALL_STATE(6314)] = 192918, - [SMALL_STATE(6315)] = 192972, - [SMALL_STATE(6316)] = 193022, - [SMALL_STATE(6317)] = 193088, - [SMALL_STATE(6318)] = 193140, - [SMALL_STATE(6319)] = 193190, - [SMALL_STATE(6320)] = 193247, - [SMALL_STATE(6321)] = 193296, - [SMALL_STATE(6322)] = 193365, - [SMALL_STATE(6323)] = 193414, - [SMALL_STATE(6324)] = 193463, - [SMALL_STATE(6325)] = 193554, - [SMALL_STATE(6326)] = 193611, - [SMALL_STATE(6327)] = 193668, - [SMALL_STATE(6328)] = 193725, - [SMALL_STATE(6329)] = 193790, - [SMALL_STATE(6330)] = 193843, - [SMALL_STATE(6331)] = 193934, - [SMALL_STATE(6332)] = 193987, - [SMALL_STATE(6333)] = 194066, - [SMALL_STATE(6334)] = 194143, - [SMALL_STATE(6335)] = 194234, - [SMALL_STATE(6336)] = 194287, - [SMALL_STATE(6337)] = 194362, - [SMALL_STATE(6338)] = 194451, - [SMALL_STATE(6339)] = 194524, - [SMALL_STATE(6340)] = 194611, - [SMALL_STATE(6341)] = 194700, - [SMALL_STATE(6342)] = 194785, - [SMALL_STATE(6343)] = 194860, - [SMALL_STATE(6344)] = 194943, - [SMALL_STATE(6345)] = 195032, - [SMALL_STATE(6346)] = 195127, - [SMALL_STATE(6347)] = 195176, - [SMALL_STATE(6348)] = 195225, - [SMALL_STATE(6349)] = 195274, - [SMALL_STATE(6350)] = 195323, - [SMALL_STATE(6351)] = 195408, - [SMALL_STATE(6352)] = 195457, - [SMALL_STATE(6353)] = 195506, - [SMALL_STATE(6354)] = 195555, - [SMALL_STATE(6355)] = 195644, - [SMALL_STATE(6356)] = 195735, - [SMALL_STATE(6357)] = 195824, - [SMALL_STATE(6358)] = 195873, - [SMALL_STATE(6359)] = 195922, - [SMALL_STATE(6360)] = 195997, - [SMALL_STATE(6361)] = 196072, - [SMALL_STATE(6362)] = 196161, - [SMALL_STATE(6363)] = 196210, - [SMALL_STATE(6364)] = 196281, - [SMALL_STATE(6365)] = 196356, - [SMALL_STATE(6366)] = 196413, - [SMALL_STATE(6367)] = 196504, - [SMALL_STATE(6368)] = 196553, - [SMALL_STATE(6369)] = 196610, - [SMALL_STATE(6370)] = 196699, - [SMALL_STATE(6371)] = 196774, - [SMALL_STATE(6372)] = 196859, - [SMALL_STATE(6373)] = 196916, - [SMALL_STATE(6374)] = 197007, - [SMALL_STATE(6375)] = 197096, - [SMALL_STATE(6376)] = 197153, - [SMALL_STATE(6377)] = 197210, - [SMALL_STATE(6378)] = 197267, - [SMALL_STATE(6379)] = 197324, - [SMALL_STATE(6380)] = 197381, - [SMALL_STATE(6381)] = 197434, - [SMALL_STATE(6382)] = 197491, - [SMALL_STATE(6383)] = 197586, - [SMALL_STATE(6384)] = 197643, - [SMALL_STATE(6385)] = 197700, - [SMALL_STATE(6386)] = 197757, - [SMALL_STATE(6387)] = 197806, - [SMALL_STATE(6388)] = 197901, - [SMALL_STATE(6389)] = 197950, - [SMALL_STATE(6390)] = 198003, - [SMALL_STATE(6391)] = 198092, - [SMALL_STATE(6392)] = 198159, - [SMALL_STATE(6393)] = 198214, - [SMALL_STATE(6394)] = 198263, - [SMALL_STATE(6395)] = 198321, - [SMALL_STATE(6396)] = 198397, - [SMALL_STATE(6397)] = 198453, - [SMALL_STATE(6398)] = 198523, - [SMALL_STATE(6399)] = 198619, - [SMALL_STATE(6400)] = 198711, - [SMALL_STATE(6401)] = 198799, - [SMALL_STATE(6402)] = 198857, - [SMALL_STATE(6403)] = 198913, - [SMALL_STATE(6404)] = 198997, - [SMALL_STATE(6405)] = 199055, - [SMALL_STATE(6406)] = 199131, - [SMALL_STATE(6407)] = 199207, - [SMALL_STATE(6408)] = 199289, - [SMALL_STATE(6409)] = 199347, - [SMALL_STATE(6410)] = 199395, - [SMALL_STATE(6411)] = 199453, - [SMALL_STATE(6412)] = 199501, - [SMALL_STATE(6413)] = 199579, - [SMALL_STATE(6414)] = 199627, - [SMALL_STATE(6415)] = 199703, - [SMALL_STATE(6416)] = 199761, - [SMALL_STATE(6417)] = 199853, - [SMALL_STATE(6418)] = 199929, - [SMALL_STATE(6419)] = 199985, - [SMALL_STATE(6420)] = 200043, - [SMALL_STATE(6421)] = 200101, - [SMALL_STATE(6422)] = 200149, - [SMALL_STATE(6423)] = 200207, - [SMALL_STATE(6424)] = 200309, - [SMALL_STATE(6425)] = 200405, - [SMALL_STATE(6426)] = 200501, - [SMALL_STATE(6427)] = 200593, - [SMALL_STATE(6428)] = 200693, - [SMALL_STATE(6429)] = 200749, - [SMALL_STATE(6430)] = 200805, - [SMALL_STATE(6431)] = 200861, - [SMALL_STATE(6432)] = 200917, - [SMALL_STATE(6433)] = 201009, - [SMALL_STATE(6434)] = 201077, - [SMALL_STATE(6435)] = 201135, - [SMALL_STATE(6436)] = 201193, - [SMALL_STATE(6437)] = 201289, - [SMALL_STATE(6438)] = 201379, - [SMALL_STATE(6439)] = 201455, - [SMALL_STATE(6440)] = 201513, - [SMALL_STATE(6441)] = 201605, - [SMALL_STATE(6442)] = 201681, - [SMALL_STATE(6443)] = 201773, - [SMALL_STATE(6444)] = 201831, - [SMALL_STATE(6445)] = 201887, - [SMALL_STATE(6446)] = 201983, - [SMALL_STATE(6447)] = 202049, - [SMALL_STATE(6448)] = 202121, - [SMALL_STATE(6449)] = 202218, - [SMALL_STATE(6450)] = 202271, - [SMALL_STATE(6451)] = 202318, - [SMALL_STATE(6452)] = 202365, - [SMALL_STATE(6453)] = 202412, - [SMALL_STATE(6454)] = 202459, - [SMALL_STATE(6455)] = 202506, - [SMALL_STATE(6456)] = 202603, - [SMALL_STATE(6457)] = 202700, - [SMALL_STATE(6458)] = 202747, - [SMALL_STATE(6459)] = 202794, - [SMALL_STATE(6460)] = 202891, - [SMALL_STATE(6461)] = 202938, - [SMALL_STATE(6462)] = 202985, - [SMALL_STATE(6463)] = 203082, - [SMALL_STATE(6464)] = 203179, - [SMALL_STATE(6465)] = 203226, - [SMALL_STATE(6466)] = 203323, - [SMALL_STATE(6467)] = 203370, - [SMALL_STATE(6468)] = 203417, - [SMALL_STATE(6469)] = 203464, - [SMALL_STATE(6470)] = 203511, - [SMALL_STATE(6471)] = 203564, - [SMALL_STATE(6472)] = 203661, - [SMALL_STATE(6473)] = 203758, - [SMALL_STATE(6474)] = 203855, - [SMALL_STATE(6475)] = 203928, - [SMALL_STATE(6476)] = 203975, - [SMALL_STATE(6477)] = 204026, - [SMALL_STATE(6478)] = 204073, - [SMALL_STATE(6479)] = 204120, - [SMALL_STATE(6480)] = 204167, - [SMALL_STATE(6481)] = 204264, - [SMALL_STATE(6482)] = 204317, - [SMALL_STATE(6483)] = 204364, - [SMALL_STATE(6484)] = 204413, - [SMALL_STATE(6485)] = 204460, - [SMALL_STATE(6486)] = 204507, - [SMALL_STATE(6487)] = 204554, - [SMALL_STATE(6488)] = 204651, - [SMALL_STATE(6489)] = 204698, - [SMALL_STATE(6490)] = 204795, - [SMALL_STATE(6491)] = 204842, - [SMALL_STATE(6492)] = 204889, - [SMALL_STATE(6493)] = 204936, - [SMALL_STATE(6494)] = 205033, - [SMALL_STATE(6495)] = 205080, - [SMALL_STATE(6496)] = 205131, - [SMALL_STATE(6497)] = 205228, - [SMALL_STATE(6498)] = 205275, - [SMALL_STATE(6499)] = 205372, - [SMALL_STATE(6500)] = 205419, - [SMALL_STATE(6501)] = 205516, - [SMALL_STATE(6502)] = 205613, - [SMALL_STATE(6503)] = 205660, - [SMALL_STATE(6504)] = 205757, - [SMALL_STATE(6505)] = 205854, - [SMALL_STATE(6506)] = 205951, - [SMALL_STATE(6507)] = 206048, - [SMALL_STATE(6508)] = 206145, - [SMALL_STATE(6509)] = 206242, - [SMALL_STATE(6510)] = 206289, - [SMALL_STATE(6511)] = 206386, - [SMALL_STATE(6512)] = 206433, - [SMALL_STATE(6513)] = 206530, - [SMALL_STATE(6514)] = 206577, - [SMALL_STATE(6515)] = 206624, - [SMALL_STATE(6516)] = 206721, - [SMALL_STATE(6517)] = 206768, - [SMALL_STATE(6518)] = 206815, - [SMALL_STATE(6519)] = 206870, - [SMALL_STATE(6520)] = 206917, - [SMALL_STATE(6521)] = 207014, - [SMALL_STATE(6522)] = 207087, - [SMALL_STATE(6523)] = 207184, - [SMALL_STATE(6524)] = 207231, - [SMALL_STATE(6525)] = 207278, - [SMALL_STATE(6526)] = 207325, - [SMALL_STATE(6527)] = 207372, - [SMALL_STATE(6528)] = 207419, - [SMALL_STATE(6529)] = 207466, - [SMALL_STATE(6530)] = 207513, - [SMALL_STATE(6531)] = 207560, - [SMALL_STATE(6532)] = 207607, - [SMALL_STATE(6533)] = 207704, - [SMALL_STATE(6534)] = 207801, - [SMALL_STATE(6535)] = 207848, - [SMALL_STATE(6536)] = 207897, - [SMALL_STATE(6537)] = 207944, - [SMALL_STATE(6538)] = 208041, - [SMALL_STATE(6539)] = 208088, - [SMALL_STATE(6540)] = 208135, - [SMALL_STATE(6541)] = 208188, - [SMALL_STATE(6542)] = 208237, - [SMALL_STATE(6543)] = 208284, - [SMALL_STATE(6544)] = 208331, - [SMALL_STATE(6545)] = 208404, - [SMALL_STATE(6546)] = 208457, - [SMALL_STATE(6547)] = 208530, - [SMALL_STATE(6548)] = 208627, - [SMALL_STATE(6549)] = 208724, - [SMALL_STATE(6550)] = 208787, - [SMALL_STATE(6551)] = 208860, - [SMALL_STATE(6552)] = 208957, - [SMALL_STATE(6553)] = 209020, - [SMALL_STATE(6554)] = 209117, - [SMALL_STATE(6555)] = 209164, - [SMALL_STATE(6556)] = 209211, - [SMALL_STATE(6557)] = 209264, - [SMALL_STATE(6558)] = 209317, - [SMALL_STATE(6559)] = 209364, - [SMALL_STATE(6560)] = 209461, - [SMALL_STATE(6561)] = 209558, - [SMALL_STATE(6562)] = 209655, - [SMALL_STATE(6563)] = 209750, - [SMALL_STATE(6564)] = 209847, - [SMALL_STATE(6565)] = 209894, - [SMALL_STATE(6566)] = 209991, - [SMALL_STATE(6567)] = 210088, - [SMALL_STATE(6568)] = 210185, - [SMALL_STATE(6569)] = 210282, - [SMALL_STATE(6570)] = 210371, - [SMALL_STATE(6571)] = 210418, - [SMALL_STATE(6572)] = 210515, - [SMALL_STATE(6573)] = 210562, - [SMALL_STATE(6574)] = 210659, - [SMALL_STATE(6575)] = 210756, - [SMALL_STATE(6576)] = 210803, - [SMALL_STATE(6577)] = 210900, - [SMALL_STATE(6578)] = 210953, - [SMALL_STATE(6579)] = 211002, - [SMALL_STATE(6580)] = 211049, - [SMALL_STATE(6581)] = 211096, - [SMALL_STATE(6582)] = 211147, - [SMALL_STATE(6583)] = 211194, - [SMALL_STATE(6584)] = 211247, - [SMALL_STATE(6585)] = 211344, - [SMALL_STATE(6586)] = 211391, - [SMALL_STATE(6587)] = 211454, - [SMALL_STATE(6588)] = 211501, - [SMALL_STATE(6589)] = 211554, - [SMALL_STATE(6590)] = 211601, - [SMALL_STATE(6591)] = 211648, - [SMALL_STATE(6592)] = 211737, - [SMALL_STATE(6593)] = 211834, - [SMALL_STATE(6594)] = 211929, - [SMALL_STATE(6595)] = 211976, - [SMALL_STATE(6596)] = 212029, - [SMALL_STATE(6597)] = 212126, - [SMALL_STATE(6598)] = 212173, - [SMALL_STATE(6599)] = 212220, - [SMALL_STATE(6600)] = 212273, - [SMALL_STATE(6601)] = 212326, - [SMALL_STATE(6602)] = 212423, - [SMALL_STATE(6603)] = 212478, - [SMALL_STATE(6604)] = 212531, - [SMALL_STATE(6605)] = 212578, - [SMALL_STATE(6606)] = 212627, - [SMALL_STATE(6607)] = 212676, - [SMALL_STATE(6608)] = 212749, - [SMALL_STATE(6609)] = 212846, - [SMALL_STATE(6610)] = 212943, - [SMALL_STATE(6611)] = 212996, - [SMALL_STATE(6612)] = 213043, - [SMALL_STATE(6613)] = 213090, - [SMALL_STATE(6614)] = 213137, - [SMALL_STATE(6615)] = 213184, - [SMALL_STATE(6616)] = 213278, - [SMALL_STATE(6617)] = 213372, - [SMALL_STATE(6618)] = 213440, - [SMALL_STATE(6619)] = 213514, - [SMALL_STATE(6620)] = 213582, - [SMALL_STATE(6621)] = 213670, - [SMALL_STATE(6622)] = 213762, - [SMALL_STATE(6623)] = 213850, - [SMALL_STATE(6624)] = 213922, - [SMALL_STATE(6625)] = 214016, - [SMALL_STATE(6626)] = 214108, - [SMALL_STATE(6627)] = 214200, - [SMALL_STATE(6628)] = 214258, - [SMALL_STATE(6629)] = 214346, - [SMALL_STATE(6630)] = 214434, - [SMALL_STATE(6631)] = 214526, - [SMALL_STATE(6632)] = 214618, - [SMALL_STATE(6633)] = 214692, - [SMALL_STATE(6634)] = 214784, - [SMALL_STATE(6635)] = 214872, - [SMALL_STATE(6636)] = 214960, - [SMALL_STATE(6637)] = 215054, - [SMALL_STATE(6638)] = 215118, - [SMALL_STATE(6639)] = 215178, - [SMALL_STATE(6640)] = 215230, - [SMALL_STATE(6641)] = 215322, - [SMALL_STATE(6642)] = 215414, - [SMALL_STATE(6643)] = 215502, - [SMALL_STATE(6644)] = 215562, - [SMALL_STATE(6645)] = 215644, - [SMALL_STATE(6646)] = 215724, - [SMALL_STATE(6647)] = 215800, - [SMALL_STATE(6648)] = 215874, - [SMALL_STATE(6649)] = 215968, - [SMALL_STATE(6650)] = 216062, - [SMALL_STATE(6651)] = 216134, - [SMALL_STATE(6652)] = 216188, - [SMALL_STATE(6653)] = 216242, - [SMALL_STATE(6654)] = 216302, - [SMALL_STATE(6655)] = 216396, - [SMALL_STATE(6656)] = 216470, - [SMALL_STATE(6657)] = 216530, - [SMALL_STATE(6658)] = 216584, - [SMALL_STATE(6659)] = 216656, - [SMALL_STATE(6660)] = 216730, - [SMALL_STATE(6661)] = 216796, - [SMALL_STATE(6662)] = 216890, - [SMALL_STATE(6663)] = 216984, - [SMALL_STATE(6664)] = 217054, - [SMALL_STATE(6665)] = 217142, - [SMALL_STATE(6666)] = 217230, - [SMALL_STATE(6667)] = 217288, - [SMALL_STATE(6668)] = 217382, - [SMALL_STATE(6669)] = 217474, - [SMALL_STATE(6670)] = 217546, - [SMALL_STATE(6671)] = 217600, - [SMALL_STATE(6672)] = 217694, - [SMALL_STATE(6673)] = 217768, - [SMALL_STATE(6674)] = 217822, - [SMALL_STATE(6675)] = 217916, - [SMALL_STATE(6676)] = 218010, - [SMALL_STATE(6677)] = 218064, - [SMALL_STATE(6678)] = 218156, - [SMALL_STATE(6679)] = 218230, - [SMALL_STATE(6680)] = 218322, - [SMALL_STATE(6681)] = 218376, - [SMALL_STATE(6682)] = 218470, - [SMALL_STATE(6683)] = 218524, - [SMALL_STATE(6684)] = 218578, - [SMALL_STATE(6685)] = 218666, - [SMALL_STATE(6686)] = 218760, - [SMALL_STATE(6687)] = 218834, - [SMALL_STATE(6688)] = 218928, - [SMALL_STATE(6689)] = 219022, - [SMALL_STATE(6690)] = 219114, - [SMALL_STATE(6691)] = 219164, - [SMALL_STATE(6692)] = 219228, - [SMALL_STATE(6693)] = 219322, - [SMALL_STATE(6694)] = 219414, - [SMALL_STATE(6695)] = 219508, - [SMALL_STATE(6696)] = 219600, - [SMALL_STATE(6697)] = 219694, - [SMALL_STATE(6698)] = 219748, - [SMALL_STATE(6699)] = 219840, - [SMALL_STATE(6700)] = 219900, - [SMALL_STATE(6701)] = 219986, - [SMALL_STATE(6702)] = 220080, - [SMALL_STATE(6703)] = 220134, - [SMALL_STATE(6704)] = 220206, - [SMALL_STATE(6705)] = 220300, - [SMALL_STATE(6706)] = 220394, - [SMALL_STATE(6707)] = 220448, - [SMALL_STATE(6708)] = 220542, - [SMALL_STATE(6709)] = 220636, - [SMALL_STATE(6710)] = 220728, - [SMALL_STATE(6711)] = 220822, - [SMALL_STATE(6712)] = 220896, - [SMALL_STATE(6713)] = 220990, - [SMALL_STATE(6714)] = 221042, - [SMALL_STATE(6715)] = 221134, - [SMALL_STATE(6716)] = 221218, - [SMALL_STATE(6717)] = 221278, - [SMALL_STATE(6718)] = 221372, - [SMALL_STATE(6719)] = 221432, - [SMALL_STATE(6720)] = 221480, - [SMALL_STATE(6721)] = 221572, - [SMALL_STATE(6722)] = 221664, - [SMALL_STATE(6723)] = 221752, - [SMALL_STATE(6724)] = 221834, - [SMALL_STATE(6725)] = 221920, - [SMALL_STATE(6726)] = 222012, - [SMALL_STATE(6727)] = 222060, - [SMALL_STATE(6728)] = 222134, - [SMALL_STATE(6729)] = 222222, - [SMALL_STATE(6730)] = 222278, - [SMALL_STATE(6731)] = 222366, - [SMALL_STATE(6732)] = 222454, - [SMALL_STATE(6733)] = 222542, - [SMALL_STATE(6734)] = 222634, - [SMALL_STATE(6735)] = 222698, - [SMALL_STATE(6736)] = 222758, - [SMALL_STATE(6737)] = 222844, - [SMALL_STATE(6738)] = 222928, - [SMALL_STATE(6739)] = 223010, - [SMALL_STATE(6740)] = 223090, - [SMALL_STATE(6741)] = 223166, - [SMALL_STATE(6742)] = 223240, - [SMALL_STATE(6743)] = 223310, - [SMALL_STATE(6744)] = 223376, - [SMALL_STATE(6745)] = 223470, - [SMALL_STATE(6746)] = 223538, - [SMALL_STATE(6747)] = 223632, - [SMALL_STATE(6748)] = 223692, - [SMALL_STATE(6749)] = 223780, - [SMALL_STATE(6750)] = 223872, - [SMALL_STATE(6751)] = 223960, - [SMALL_STATE(6752)] = 224014, - [SMALL_STATE(6753)] = 224106, - [SMALL_STATE(6754)] = 224200, - [SMALL_STATE(6755)] = 224254, - [SMALL_STATE(6756)] = 224308, - [SMALL_STATE(6757)] = 224382, - [SMALL_STATE(6758)] = 224462, - [SMALL_STATE(6759)] = 224536, - [SMALL_STATE(6760)] = 224630, - [SMALL_STATE(6761)] = 224702, - [SMALL_STATE(6762)] = 224796, - [SMALL_STATE(6763)] = 224872, - [SMALL_STATE(6764)] = 224966, - [SMALL_STATE(6765)] = 225058, - [SMALL_STATE(6766)] = 225152, - [SMALL_STATE(6767)] = 225240, - [SMALL_STATE(6768)] = 225294, - [SMALL_STATE(6769)] = 225352, - [SMALL_STATE(6770)] = 225444, - [SMALL_STATE(6771)] = 225538, - [SMALL_STATE(6772)] = 225630, - [SMALL_STATE(6773)] = 225718, - [SMALL_STATE(6774)] = 225806, - [SMALL_STATE(6775)] = 225864, - [SMALL_STATE(6776)] = 225952, - [SMALL_STATE(6777)] = 226012, - [SMALL_STATE(6778)] = 226072, - [SMALL_STATE(6779)] = 226146, - [SMALL_STATE(6780)] = 226234, - [SMALL_STATE(6781)] = 226292, - [SMALL_STATE(6782)] = 226342, - [SMALL_STATE(6783)] = 226430, - [SMALL_STATE(6784)] = 226514, - [SMALL_STATE(6785)] = 226608, - [SMALL_STATE(6786)] = 226678, - [SMALL_STATE(6787)] = 226752, - [SMALL_STATE(6788)] = 226844, - [SMALL_STATE(6789)] = 226932, - [SMALL_STATE(6790)] = 227026, - [SMALL_STATE(6791)] = 227086, - [SMALL_STATE(6792)] = 227158, - [SMALL_STATE(6793)] = 227224, - [SMALL_STATE(6794)] = 227318, - [SMALL_STATE(6795)] = 227410, - [SMALL_STATE(6796)] = 227504, - [SMALL_STATE(6797)] = 227562, - [SMALL_STATE(6798)] = 227656, - [SMALL_STATE(6799)] = 227748, - [SMALL_STATE(6800)] = 227812, - [SMALL_STATE(6801)] = 227906, - [SMALL_STATE(6802)] = 227992, - [SMALL_STATE(6803)] = 228076, - [SMALL_STATE(6804)] = 228158, - [SMALL_STATE(6805)] = 228204, - [SMALL_STATE(6806)] = 228296, - [SMALL_STATE(6807)] = 228390, - [SMALL_STATE(6808)] = 228470, - [SMALL_STATE(6809)] = 228546, - [SMALL_STATE(6810)] = 228640, - [SMALL_STATE(6811)] = 228714, - [SMALL_STATE(6812)] = 228808, - [SMALL_STATE(6813)] = 228878, - [SMALL_STATE(6814)] = 228944, - [SMALL_STATE(6815)] = 229036, - [SMALL_STATE(6816)] = 229128, - [SMALL_STATE(6817)] = 229222, - [SMALL_STATE(6818)] = 229316, - [SMALL_STATE(6819)] = 229407, - [SMALL_STATE(6820)] = 229452, - [SMALL_STATE(6821)] = 229545, - [SMALL_STATE(6822)] = 229636, - [SMALL_STATE(6823)] = 229685, - [SMALL_STATE(6824)] = 229776, - [SMALL_STATE(6825)] = 229867, - [SMALL_STATE(6826)] = 229940, - [SMALL_STATE(6827)] = 230031, - [SMALL_STATE(6828)] = 230122, - [SMALL_STATE(6829)] = 230213, - [SMALL_STATE(6830)] = 230286, - [SMALL_STATE(6831)] = 230377, - [SMALL_STATE(6832)] = 230470, - [SMALL_STATE(6833)] = 230561, - [SMALL_STATE(6834)] = 230652, - [SMALL_STATE(6835)] = 230697, - [SMALL_STATE(6836)] = 230788, - [SMALL_STATE(6837)] = 230879, - [SMALL_STATE(6838)] = 230970, - [SMALL_STATE(6839)] = 231063, - [SMALL_STATE(6840)] = 231136, - [SMALL_STATE(6841)] = 231227, - [SMALL_STATE(6842)] = 231300, - [SMALL_STATE(6843)] = 231353, - [SMALL_STATE(6844)] = 231426, - [SMALL_STATE(6845)] = 231517, - [SMALL_STATE(6846)] = 231610, - [SMALL_STATE(6847)] = 231701, - [SMALL_STATE(6848)] = 231792, - [SMALL_STATE(6849)] = 231841, - [SMALL_STATE(6850)] = 231934, - [SMALL_STATE(6851)] = 232025, - [SMALL_STATE(6852)] = 232116, - [SMALL_STATE(6853)] = 232207, - [SMALL_STATE(6854)] = 232298, - [SMALL_STATE(6855)] = 232347, - [SMALL_STATE(6856)] = 232420, - [SMALL_STATE(6857)] = 232511, - [SMALL_STATE(6858)] = 232602, - [SMALL_STATE(6859)] = 232693, - [SMALL_STATE(6860)] = 232784, - [SMALL_STATE(6861)] = 232875, - [SMALL_STATE(6862)] = 232966, - [SMALL_STATE(6863)] = 233057, - [SMALL_STATE(6864)] = 233148, - [SMALL_STATE(6865)] = 233239, - [SMALL_STATE(6866)] = 233330, - [SMALL_STATE(6867)] = 233423, - [SMALL_STATE(6868)] = 233514, - [SMALL_STATE(6869)] = 233607, - [SMALL_STATE(6870)] = 233698, - [SMALL_STATE(6871)] = 233789, - [SMALL_STATE(6872)] = 233838, - [SMALL_STATE(6873)] = 233929, - [SMALL_STATE(6874)] = 234002, - [SMALL_STATE(6875)] = 234093, - [SMALL_STATE(6876)] = 234164, - [SMALL_STATE(6877)] = 234235, - [SMALL_STATE(6878)] = 234308, - [SMALL_STATE(6879)] = 234399, - [SMALL_STATE(6880)] = 234490, - [SMALL_STATE(6881)] = 234581, - [SMALL_STATE(6882)] = 234654, - [SMALL_STATE(6883)] = 234745, - [SMALL_STATE(6884)] = 234836, - [SMALL_STATE(6885)] = 234929, - [SMALL_STATE(6886)] = 235020, - [SMALL_STATE(6887)] = 235113, - [SMALL_STATE(6888)] = 235204, - [SMALL_STATE(6889)] = 235249, - [SMALL_STATE(6890)] = 235340, - [SMALL_STATE(6891)] = 235431, - [SMALL_STATE(6892)] = 235522, - [SMALL_STATE(6893)] = 235613, - [SMALL_STATE(6894)] = 235662, - [SMALL_STATE(6895)] = 235753, - [SMALL_STATE(6896)] = 235844, - [SMALL_STATE(6897)] = 235917, - [SMALL_STATE(6898)] = 236008, - [SMALL_STATE(6899)] = 236099, - [SMALL_STATE(6900)] = 236190, - [SMALL_STATE(6901)] = 236281, - [SMALL_STATE(6902)] = 236372, - [SMALL_STATE(6903)] = 236463, - [SMALL_STATE(6904)] = 236554, - [SMALL_STATE(6905)] = 236647, - [SMALL_STATE(6906)] = 236738, - [SMALL_STATE(6907)] = 236785, - [SMALL_STATE(6908)] = 236876, - [SMALL_STATE(6909)] = 236967, - [SMALL_STATE(6910)] = 237058, - [SMALL_STATE(6911)] = 237149, - [SMALL_STATE(6912)] = 237240, - [SMALL_STATE(6913)] = 237327, - [SMALL_STATE(6914)] = 237418, - [SMALL_STATE(6915)] = 237509, - [SMALL_STATE(6916)] = 237600, - [SMALL_STATE(6917)] = 237691, - [SMALL_STATE(6918)] = 237782, - [SMALL_STATE(6919)] = 237873, - [SMALL_STATE(6920)] = 237960, - [SMALL_STATE(6921)] = 238051, - [SMALL_STATE(6922)] = 238142, - [SMALL_STATE(6923)] = 238233, - [SMALL_STATE(6924)] = 238324, - [SMALL_STATE(6925)] = 238395, - [SMALL_STATE(6926)] = 238486, - [SMALL_STATE(6927)] = 238577, - [SMALL_STATE(6928)] = 238650, - [SMALL_STATE(6929)] = 238741, - [SMALL_STATE(6930)] = 238832, - [SMALL_STATE(6931)] = 238923, - [SMALL_STATE(6932)] = 239014, - [SMALL_STATE(6933)] = 239105, - [SMALL_STATE(6934)] = 239196, - [SMALL_STATE(6935)] = 239269, - [SMALL_STATE(6936)] = 239360, - [SMALL_STATE(6937)] = 239451, - [SMALL_STATE(6938)] = 239542, - [SMALL_STATE(6939)] = 239633, - [SMALL_STATE(6940)] = 239724, - [SMALL_STATE(6941)] = 239815, - [SMALL_STATE(6942)] = 239906, - [SMALL_STATE(6943)] = 239997, - [SMALL_STATE(6944)] = 240088, - [SMALL_STATE(6945)] = 240179, - [SMALL_STATE(6946)] = 240270, - [SMALL_STATE(6947)] = 240361, - [SMALL_STATE(6948)] = 240434, - [SMALL_STATE(6949)] = 240525, - [SMALL_STATE(6950)] = 240616, - [SMALL_STATE(6951)] = 240707, - [SMALL_STATE(6952)] = 240780, - [SMALL_STATE(6953)] = 240871, - [SMALL_STATE(6954)] = 240962, - [SMALL_STATE(6955)] = 241053, - [SMALL_STATE(6956)] = 241144, - [SMALL_STATE(6957)] = 241235, - [SMALL_STATE(6958)] = 241326, - [SMALL_STATE(6959)] = 241417, - [SMALL_STATE(6960)] = 241490, - [SMALL_STATE(6961)] = 241563, - [SMALL_STATE(6962)] = 241654, - [SMALL_STATE(6963)] = 241745, - [SMALL_STATE(6964)] = 241836, - [SMALL_STATE(6965)] = 241927, - [SMALL_STATE(6966)] = 241974, - [SMALL_STATE(6967)] = 242047, - [SMALL_STATE(6968)] = 242138, - [SMALL_STATE(6969)] = 242229, - [SMALL_STATE(6970)] = 242320, - [SMALL_STATE(6971)] = 242411, - [SMALL_STATE(6972)] = 242502, - [SMALL_STATE(6973)] = 242593, - [SMALL_STATE(6974)] = 242648, - [SMALL_STATE(6975)] = 242739, - [SMALL_STATE(6976)] = 242830, - [SMALL_STATE(6977)] = 242921, - [SMALL_STATE(6978)] = 243012, - [SMALL_STATE(6979)] = 243103, - [SMALL_STATE(6980)] = 243194, - [SMALL_STATE(6981)] = 243267, - [SMALL_STATE(6982)] = 243358, - [SMALL_STATE(6983)] = 243449, - [SMALL_STATE(6984)] = 243540, - [SMALL_STATE(6985)] = 243631, - [SMALL_STATE(6986)] = 243722, - [SMALL_STATE(6987)] = 243813, - [SMALL_STATE(6988)] = 243904, - [SMALL_STATE(6989)] = 243995, - [SMALL_STATE(6990)] = 244086, - [SMALL_STATE(6991)] = 244177, - [SMALL_STATE(6992)] = 244268, - [SMALL_STATE(6993)] = 244359, - [SMALL_STATE(6994)] = 244446, - [SMALL_STATE(6995)] = 244493, - [SMALL_STATE(6996)] = 244542, - [SMALL_STATE(6997)] = 244589, - [SMALL_STATE(6998)] = 244680, - [SMALL_STATE(6999)] = 244727, - [SMALL_STATE(7000)] = 244818, - [SMALL_STATE(7001)] = 244909, - [SMALL_STATE(7002)] = 244954, - [SMALL_STATE(7003)] = 245047, - [SMALL_STATE(7004)] = 245138, - [SMALL_STATE(7005)] = 245229, - [SMALL_STATE(7006)] = 245320, - [SMALL_STATE(7007)] = 245411, - [SMALL_STATE(7008)] = 245502, - [SMALL_STATE(7009)] = 245547, - [SMALL_STATE(7010)] = 245620, - [SMALL_STATE(7011)] = 245711, - [SMALL_STATE(7012)] = 245802, - [SMALL_STATE(7013)] = 245875, - [SMALL_STATE(7014)] = 245966, - [SMALL_STATE(7015)] = 246057, - [SMALL_STATE(7016)] = 246150, - [SMALL_STATE(7017)] = 246241, - [SMALL_STATE(7018)] = 246332, - [SMALL_STATE(7019)] = 246383, - [SMALL_STATE(7020)] = 246428, - [SMALL_STATE(7021)] = 246521, - [SMALL_STATE(7022)] = 246584, - [SMALL_STATE(7023)] = 246675, - [SMALL_STATE(7024)] = 246766, - [SMALL_STATE(7025)] = 246857, - [SMALL_STATE(7026)] = 246948, - [SMALL_STATE(7027)] = 247035, - [SMALL_STATE(7028)] = 247128, - [SMALL_STATE(7029)] = 247219, - [SMALL_STATE(7030)] = 247310, - [SMALL_STATE(7031)] = 247401, - [SMALL_STATE(7032)] = 247492, - [SMALL_STATE(7033)] = 247563, - [SMALL_STATE(7034)] = 247608, - [SMALL_STATE(7035)] = 247655, - [SMALL_STATE(7036)] = 247700, - [SMALL_STATE(7037)] = 247749, - [SMALL_STATE(7038)] = 247840, - [SMALL_STATE(7039)] = 247933, - [SMALL_STATE(7040)] = 248026, - [SMALL_STATE(7041)] = 248075, - [SMALL_STATE(7042)] = 248124, - [SMALL_STATE(7043)] = 248215, - [SMALL_STATE(7044)] = 248264, - [SMALL_STATE(7045)] = 248355, - [SMALL_STATE(7046)] = 248448, - [SMALL_STATE(7047)] = 248539, - [SMALL_STATE(7048)] = 248630, - [SMALL_STATE(7049)] = 248721, - [SMALL_STATE(7050)] = 248812, - [SMALL_STATE(7051)] = 248903, - [SMALL_STATE(7052)] = 248994, - [SMALL_STATE(7053)] = 249087, - [SMALL_STATE(7054)] = 249178, - [SMALL_STATE(7055)] = 249269, - [SMALL_STATE(7056)] = 249360, - [SMALL_STATE(7057)] = 249409, - [SMALL_STATE(7058)] = 249458, - [SMALL_STATE(7059)] = 249551, - [SMALL_STATE(7060)] = 249642, - [SMALL_STATE(7061)] = 249733, - [SMALL_STATE(7062)] = 249824, - [SMALL_STATE(7063)] = 249917, - [SMALL_STATE(7064)] = 250008, - [SMALL_STATE(7065)] = 250099, - [SMALL_STATE(7066)] = 250192, - [SMALL_STATE(7067)] = 250263, - [SMALL_STATE(7068)] = 250334, - [SMALL_STATE(7069)] = 250425, - [SMALL_STATE(7070)] = 250516, - [SMALL_STATE(7071)] = 250607, - [SMALL_STATE(7072)] = 250698, - [SMALL_STATE(7073)] = 250789, - [SMALL_STATE(7074)] = 250880, - [SMALL_STATE(7075)] = 250971, - [SMALL_STATE(7076)] = 251064, - [SMALL_STATE(7077)] = 251155, - [SMALL_STATE(7078)] = 251246, - [SMALL_STATE(7079)] = 251337, - [SMALL_STATE(7080)] = 251428, - [SMALL_STATE(7081)] = 251519, - [SMALL_STATE(7082)] = 251610, - [SMALL_STATE(7083)] = 251701, - [SMALL_STATE(7084)] = 251792, - [SMALL_STATE(7085)] = 251841, - [SMALL_STATE(7086)] = 251914, - [SMALL_STATE(7087)] = 251964, - [SMALL_STATE(7088)] = 252056, - [SMALL_STATE(7089)] = 252148, - [SMALL_STATE(7090)] = 252240, - [SMALL_STATE(7091)] = 252332, - [SMALL_STATE(7092)] = 252424, - [SMALL_STATE(7093)] = 252516, - [SMALL_STATE(7094)] = 252560, - [SMALL_STATE(7095)] = 252630, - [SMALL_STATE(7096)] = 252722, - [SMALL_STATE(7097)] = 252814, - [SMALL_STATE(7098)] = 252906, - [SMALL_STATE(7099)] = 252998, - [SMALL_STATE(7100)] = 253068, - [SMALL_STATE(7101)] = 253148, - [SMALL_STATE(7102)] = 253234, - [SMALL_STATE(7103)] = 253326, - [SMALL_STATE(7104)] = 253418, - [SMALL_STATE(7105)] = 253510, - [SMALL_STATE(7106)] = 253602, - [SMALL_STATE(7107)] = 253646, - [SMALL_STATE(7108)] = 253690, - [SMALL_STATE(7109)] = 253782, - [SMALL_STATE(7110)] = 253874, - [SMALL_STATE(7111)] = 253966, - [SMALL_STATE(7112)] = 254010, - [SMALL_STATE(7113)] = 254102, - [SMALL_STATE(7114)] = 254146, - [SMALL_STATE(7115)] = 254190, - [SMALL_STATE(7116)] = 254234, - [SMALL_STATE(7117)] = 254326, - [SMALL_STATE(7118)] = 254370, - [SMALL_STATE(7119)] = 254414, - [SMALL_STATE(7120)] = 254506, - [SMALL_STATE(7121)] = 254550, - [SMALL_STATE(7122)] = 254594, - [SMALL_STATE(7123)] = 254638, - [SMALL_STATE(7124)] = 254682, - [SMALL_STATE(7125)] = 254726, - [SMALL_STATE(7126)] = 254818, - [SMALL_STATE(7127)] = 254910, - [SMALL_STATE(7128)] = 255002, - [SMALL_STATE(7129)] = 255046, - [SMALL_STATE(7130)] = 255138, - [SMALL_STATE(7131)] = 255188, - [SMALL_STATE(7132)] = 255280, - [SMALL_STATE(7133)] = 255372, - [SMALL_STATE(7134)] = 255464, - [SMALL_STATE(7135)] = 255508, - [SMALL_STATE(7136)] = 255552, - [SMALL_STATE(7137)] = 255596, - [SMALL_STATE(7138)] = 255688, - [SMALL_STATE(7139)] = 255758, - [SMALL_STATE(7140)] = 255802, - [SMALL_STATE(7141)] = 255846, - [SMALL_STATE(7142)] = 255890, - [SMALL_STATE(7143)] = 255982, - [SMALL_STATE(7144)] = 256074, - [SMALL_STATE(7145)] = 256166, - [SMALL_STATE(7146)] = 256210, - [SMALL_STATE(7147)] = 256302, - [SMALL_STATE(7148)] = 256394, - [SMALL_STATE(7149)] = 256486, - [SMALL_STATE(7150)] = 256556, - [SMALL_STATE(7151)] = 256626, - [SMALL_STATE(7152)] = 256670, - [SMALL_STATE(7153)] = 256762, - [SMALL_STATE(7154)] = 256854, - [SMALL_STATE(7155)] = 256946, - [SMALL_STATE(7156)] = 256990, - [SMALL_STATE(7157)] = 257034, - [SMALL_STATE(7158)] = 257078, - [SMALL_STATE(7159)] = 257122, - [SMALL_STATE(7160)] = 257166, - [SMALL_STATE(7161)] = 257210, - [SMALL_STATE(7162)] = 257254, - [SMALL_STATE(7163)] = 257298, - [SMALL_STATE(7164)] = 257342, - [SMALL_STATE(7165)] = 257386, - [SMALL_STATE(7166)] = 257430, - [SMALL_STATE(7167)] = 257522, - [SMALL_STATE(7168)] = 257614, - [SMALL_STATE(7169)] = 257706, - [SMALL_STATE(7170)] = 257798, - [SMALL_STATE(7171)] = 257890, - [SMALL_STATE(7172)] = 257982, - [SMALL_STATE(7173)] = 258026, - [SMALL_STATE(7174)] = 258070, - [SMALL_STATE(7175)] = 258114, - [SMALL_STATE(7176)] = 258158, - [SMALL_STATE(7177)] = 258246, - [SMALL_STATE(7178)] = 258338, - [SMALL_STATE(7179)] = 258430, - [SMALL_STATE(7180)] = 258522, - [SMALL_STATE(7181)] = 258566, - [SMALL_STATE(7182)] = 258658, - [SMALL_STATE(7183)] = 258750, - [SMALL_STATE(7184)] = 258842, - [SMALL_STATE(7185)] = 258934, - [SMALL_STATE(7186)] = 259026, - [SMALL_STATE(7187)] = 259118, - [SMALL_STATE(7188)] = 259162, - [SMALL_STATE(7189)] = 259254, - [SMALL_STATE(7190)] = 259346, - [SMALL_STATE(7191)] = 259438, - [SMALL_STATE(7192)] = 259530, - [SMALL_STATE(7193)] = 259622, - [SMALL_STATE(7194)] = 259714, - [SMALL_STATE(7195)] = 259758, - [SMALL_STATE(7196)] = 259850, - [SMALL_STATE(7197)] = 259942, - [SMALL_STATE(7198)] = 260034, - [SMALL_STATE(7199)] = 260078, - [SMALL_STATE(7200)] = 260122, - [SMALL_STATE(7201)] = 260214, - [SMALL_STATE(7202)] = 260306, - [SMALL_STATE(7203)] = 260398, - [SMALL_STATE(7204)] = 260490, - [SMALL_STATE(7205)] = 260582, - [SMALL_STATE(7206)] = 260674, - [SMALL_STATE(7207)] = 260718, - [SMALL_STATE(7208)] = 260762, - [SMALL_STATE(7209)] = 260806, - [SMALL_STATE(7210)] = 260850, - [SMALL_STATE(7211)] = 260894, - [SMALL_STATE(7212)] = 260938, - [SMALL_STATE(7213)] = 261030, - [SMALL_STATE(7214)] = 261122, - [SMALL_STATE(7215)] = 261214, - [SMALL_STATE(7216)] = 261258, - [SMALL_STATE(7217)] = 261302, - [SMALL_STATE(7218)] = 261346, - [SMALL_STATE(7219)] = 261398, - [SMALL_STATE(7220)] = 261490, - [SMALL_STATE(7221)] = 261582, - [SMALL_STATE(7222)] = 261674, - [SMALL_STATE(7223)] = 261766, - [SMALL_STATE(7224)] = 261858, - [SMALL_STATE(7225)] = 261950, - [SMALL_STATE(7226)] = 262010, - [SMALL_STATE(7227)] = 262058, - [SMALL_STATE(7228)] = 262144, - [SMALL_STATE(7229)] = 262236, - [SMALL_STATE(7230)] = 262328, - [SMALL_STATE(7231)] = 262420, - [SMALL_STATE(7232)] = 262464, - [SMALL_STATE(7233)] = 262508, - [SMALL_STATE(7234)] = 262552, - [SMALL_STATE(7235)] = 262644, - [SMALL_STATE(7236)] = 262688, - [SMALL_STATE(7237)] = 262732, - [SMALL_STATE(7238)] = 262824, - [SMALL_STATE(7239)] = 262916, - [SMALL_STATE(7240)] = 262986, - [SMALL_STATE(7241)] = 263078, - [SMALL_STATE(7242)] = 263122, - [SMALL_STATE(7243)] = 263214, - [SMALL_STATE(7244)] = 263306, - [SMALL_STATE(7245)] = 263350, - [SMALL_STATE(7246)] = 263394, - [SMALL_STATE(7247)] = 263474, - [SMALL_STATE(7248)] = 263566, - [SMALL_STATE(7249)] = 263616, - [SMALL_STATE(7250)] = 263696, - [SMALL_STATE(7251)] = 263788, - [SMALL_STATE(7252)] = 263880, - [SMALL_STATE(7253)] = 263972, - [SMALL_STATE(7254)] = 264016, - [SMALL_STATE(7255)] = 264060, - [SMALL_STATE(7256)] = 264104, - [SMALL_STATE(7257)] = 264184, - [SMALL_STATE(7258)] = 264242, - [SMALL_STATE(7259)] = 264286, - [SMALL_STATE(7260)] = 264330, - [SMALL_STATE(7261)] = 264374, - [SMALL_STATE(7262)] = 264418, - [SMALL_STATE(7263)] = 264462, - [SMALL_STATE(7264)] = 264506, - [SMALL_STATE(7265)] = 264550, - [SMALL_STATE(7266)] = 264594, - [SMALL_STATE(7267)] = 264638, - [SMALL_STATE(7268)] = 264696, - [SMALL_STATE(7269)] = 264788, - [SMALL_STATE(7270)] = 264880, - [SMALL_STATE(7271)] = 264972, - [SMALL_STATE(7272)] = 265020, - [SMALL_STATE(7273)] = 265072, - [SMALL_STATE(7274)] = 265116, - [SMALL_STATE(7275)] = 265164, - [SMALL_STATE(7276)] = 265208, - [SMALL_STATE(7277)] = 265252, - [SMALL_STATE(7278)] = 265344, - [SMALL_STATE(7279)] = 265436, - [SMALL_STATE(7280)] = 265528, - [SMALL_STATE(7281)] = 265572, - [SMALL_STATE(7282)] = 265664, - [SMALL_STATE(7283)] = 265708, - [SMALL_STATE(7284)] = 265752, - [SMALL_STATE(7285)] = 265841, - [SMALL_STATE(7286)] = 265928, - [SMALL_STATE(7287)] = 265997, - [SMALL_STATE(7288)] = 266084, - [SMALL_STATE(7289)] = 266173, - [SMALL_STATE(7290)] = 266262, - [SMALL_STATE(7291)] = 266307, - [SMALL_STATE(7292)] = 266394, - [SMALL_STATE(7293)] = 266479, - [SMALL_STATE(7294)] = 266568, - [SMALL_STATE(7295)] = 266617, - [SMALL_STATE(7296)] = 266686, - [SMALL_STATE(7297)] = 266773, - [SMALL_STATE(7298)] = 266862, - [SMALL_STATE(7299)] = 266949, - [SMALL_STATE(7300)] = 266998, - [SMALL_STATE(7301)] = 267067, - [SMALL_STATE(7302)] = 267154, - [SMALL_STATE(7303)] = 267241, - [SMALL_STATE(7304)] = 267328, - [SMALL_STATE(7305)] = 267417, - [SMALL_STATE(7306)] = 267504, - [SMALL_STATE(7307)] = 267591, - [SMALL_STATE(7308)] = 267678, - [SMALL_STATE(7309)] = 267767, - [SMALL_STATE(7310)] = 267856, - [SMALL_STATE(7311)] = 267945, - [SMALL_STATE(7312)] = 268032, - [SMALL_STATE(7313)] = 268121, - [SMALL_STATE(7314)] = 268208, - [SMALL_STATE(7315)] = 268295, - [SMALL_STATE(7316)] = 268382, - [SMALL_STATE(7317)] = 268469, - [SMALL_STATE(7318)] = 268556, - [SMALL_STATE(7319)] = 268645, - [SMALL_STATE(7320)] = 268732, - [SMALL_STATE(7321)] = 268821, - [SMALL_STATE(7322)] = 268910, - [SMALL_STATE(7323)] = 268959, - [SMALL_STATE(7324)] = 269048, - [SMALL_STATE(7325)] = 269137, - [SMALL_STATE(7326)] = 269226, - [SMALL_STATE(7327)] = 269313, - [SMALL_STATE(7328)] = 269400, - [SMALL_STATE(7329)] = 269487, - [SMALL_STATE(7330)] = 269574, - [SMALL_STATE(7331)] = 269663, - [SMALL_STATE(7332)] = 269752, - [SMALL_STATE(7333)] = 269841, - [SMALL_STATE(7334)] = 269928, - [SMALL_STATE(7335)] = 270015, - [SMALL_STATE(7336)] = 270084, - [SMALL_STATE(7337)] = 270171, - [SMALL_STATE(7338)] = 270256, - [SMALL_STATE(7339)] = 270345, - [SMALL_STATE(7340)] = 270434, - [SMALL_STATE(7341)] = 270521, - [SMALL_STATE(7342)] = 270608, - [SMALL_STATE(7343)] = 270697, - [SMALL_STATE(7344)] = 270786, - [SMALL_STATE(7345)] = 270875, - [SMALL_STATE(7346)] = 270962, - [SMALL_STATE(7347)] = 271049, - [SMALL_STATE(7348)] = 271138, - [SMALL_STATE(7349)] = 271225, - [SMALL_STATE(7350)] = 271312, - [SMALL_STATE(7351)] = 271399, - [SMALL_STATE(7352)] = 271468, - [SMALL_STATE(7353)] = 271517, - [SMALL_STATE(7354)] = 271604, - [SMALL_STATE(7355)] = 271691, - [SMALL_STATE(7356)] = 271778, - [SMALL_STATE(7357)] = 271865, - [SMALL_STATE(7358)] = 271952, - [SMALL_STATE(7359)] = 272041, - [SMALL_STATE(7360)] = 272128, - [SMALL_STATE(7361)] = 272217, - [SMALL_STATE(7362)] = 272304, - [SMALL_STATE(7363)] = 272391, - [SMALL_STATE(7364)] = 272480, - [SMALL_STATE(7365)] = 272567, - [SMALL_STATE(7366)] = 272654, - [SMALL_STATE(7367)] = 272741, - [SMALL_STATE(7368)] = 272828, - [SMALL_STATE(7369)] = 272897, - [SMALL_STATE(7370)] = 272986, - [SMALL_STATE(7371)] = 273073, - [SMALL_STATE(7372)] = 273162, - [SMALL_STATE(7373)] = 273249, - [SMALL_STATE(7374)] = 273338, - [SMALL_STATE(7375)] = 273407, - [SMALL_STATE(7376)] = 273494, - [SMALL_STATE(7377)] = 273583, - [SMALL_STATE(7378)] = 273652, - [SMALL_STATE(7379)] = 273741, - [SMALL_STATE(7380)] = 273826, - [SMALL_STATE(7381)] = 273913, - [SMALL_STATE(7382)] = 274002, - [SMALL_STATE(7383)] = 274089, - [SMALL_STATE(7384)] = 274176, - [SMALL_STATE(7385)] = 274263, - [SMALL_STATE(7386)] = 274352, - [SMALL_STATE(7387)] = 274437, - [SMALL_STATE(7388)] = 274524, - [SMALL_STATE(7389)] = 274611, - [SMALL_STATE(7390)] = 274689, - [SMALL_STATE(7391)] = 274767, - [SMALL_STATE(7392)] = 274845, - [SMALL_STATE(7393)] = 274923, - [SMALL_STATE(7394)] = 275001, - [SMALL_STATE(7395)] = 275079, - [SMALL_STATE(7396)] = 275157, - [SMALL_STATE(7397)] = 275225, - [SMALL_STATE(7398)] = 275267, - [SMALL_STATE(7399)] = 275345, - [SMALL_STATE(7400)] = 275413, - [SMALL_STATE(7401)] = 275491, - [SMALL_STATE(7402)] = 275569, - [SMALL_STATE(7403)] = 275621, - [SMALL_STATE(7404)] = 275699, - [SMALL_STATE(7405)] = 275777, - [SMALL_STATE(7406)] = 275855, - [SMALL_STATE(7407)] = 275933, - [SMALL_STATE(7408)] = 276011, - [SMALL_STATE(7409)] = 276095, - [SMALL_STATE(7410)] = 276173, - [SMALL_STATE(7411)] = 276251, - [SMALL_STATE(7412)] = 276329, - [SMALL_STATE(7413)] = 276407, - [SMALL_STATE(7414)] = 276485, - [SMALL_STATE(7415)] = 276563, - [SMALL_STATE(7416)] = 276641, - [SMALL_STATE(7417)] = 276719, - [SMALL_STATE(7418)] = 276787, - [SMALL_STATE(7419)] = 276865, - [SMALL_STATE(7420)] = 276943, - [SMALL_STATE(7421)] = 277021, - [SMALL_STATE(7422)] = 277099, - [SMALL_STATE(7423)] = 277177, - [SMALL_STATE(7424)] = 277255, - [SMALL_STATE(7425)] = 277333, - [SMALL_STATE(7426)] = 277411, - [SMALL_STATE(7427)] = 277489, - [SMALL_STATE(7428)] = 277567, - [SMALL_STATE(7429)] = 277645, - [SMALL_STATE(7430)] = 277723, - [SMALL_STATE(7431)] = 277801, - [SMALL_STATE(7432)] = 277879, - [SMALL_STATE(7433)] = 277957, - [SMALL_STATE(7434)] = 278009, - [SMALL_STATE(7435)] = 278093, - [SMALL_STATE(7436)] = 278135, - [SMALL_STATE(7437)] = 278177, - [SMALL_STATE(7438)] = 278255, - [SMALL_STATE(7439)] = 278333, - [SMALL_STATE(7440)] = 278411, - [SMALL_STATE(7441)] = 278479, - [SMALL_STATE(7442)] = 278547, - [SMALL_STATE(7443)] = 278625, - [SMALL_STATE(7444)] = 278703, - [SMALL_STATE(7445)] = 278781, - [SMALL_STATE(7446)] = 278849, - [SMALL_STATE(7447)] = 278927, - [SMALL_STATE(7448)] = 278969, - [SMALL_STATE(7449)] = 279047, - [SMALL_STATE(7450)] = 279125, - [SMALL_STATE(7451)] = 279203, - [SMALL_STATE(7452)] = 279286, - [SMALL_STATE(7453)] = 279353, - [SMALL_STATE(7454)] = 279400, - [SMALL_STATE(7455)] = 279447, - [SMALL_STATE(7456)] = 279530, - [SMALL_STATE(7457)] = 279577, - [SMALL_STATE(7458)] = 279632, - [SMALL_STATE(7459)] = 279709, - [SMALL_STATE(7460)] = 279766, - [SMALL_STATE(7461)] = 279833, - [SMALL_STATE(7462)] = 279880, - [SMALL_STATE(7463)] = 279947, - [SMALL_STATE(7464)] = 279994, - [SMALL_STATE(7465)] = 280077, - [SMALL_STATE(7466)] = 280132, - [SMALL_STATE(7467)] = 280199, - [SMALL_STATE(7468)] = 280252, - [SMALL_STATE(7469)] = 280299, - [SMALL_STATE(7470)] = 280346, - [SMALL_STATE(7471)] = 280393, - [SMALL_STATE(7472)] = 280440, - [SMALL_STATE(7473)] = 280487, - [SMALL_STATE(7474)] = 280534, - [SMALL_STATE(7475)] = 280591, - [SMALL_STATE(7476)] = 280648, - [SMALL_STATE(7477)] = 280725, - [SMALL_STATE(7478)] = 280766, - [SMALL_STATE(7479)] = 280843, - [SMALL_STATE(7480)] = 280890, - [SMALL_STATE(7481)] = 280957, - [SMALL_STATE(7482)] = 281004, - [SMALL_STATE(7483)] = 281057, - [SMALL_STATE(7484)] = 281140, - [SMALL_STATE(7485)] = 281183, - [SMALL_STATE(7486)] = 281238, - [SMALL_STATE(7487)] = 281315, - [SMALL_STATE(7488)] = 281382, - [SMALL_STATE(7489)] = 281437, - [SMALL_STATE(7490)] = 281486, - [SMALL_STATE(7491)] = 281526, - [SMALL_STATE(7492)] = 281566, - [SMALL_STATE(7493)] = 281606, - [SMALL_STATE(7494)] = 281646, - [SMALL_STATE(7495)] = 281722, - [SMALL_STATE(7496)] = 281762, - [SMALL_STATE(7497)] = 281802, - [SMALL_STATE(7498)] = 281842, - [SMALL_STATE(7499)] = 281882, - [SMALL_STATE(7500)] = 281922, - [SMALL_STATE(7501)] = 281962, - [SMALL_STATE(7502)] = 282002, - [SMALL_STATE(7503)] = 282078, - [SMALL_STATE(7504)] = 282118, - [SMALL_STATE(7505)] = 282194, - [SMALL_STATE(7506)] = 282234, - [SMALL_STATE(7507)] = 282274, - [SMALL_STATE(7508)] = 282314, - [SMALL_STATE(7509)] = 282354, - [SMALL_STATE(7510)] = 282394, - [SMALL_STATE(7511)] = 282470, - [SMALL_STATE(7512)] = 282510, - [SMALL_STATE(7513)] = 282550, - [SMALL_STATE(7514)] = 282590, - [SMALL_STATE(7515)] = 282630, - [SMALL_STATE(7516)] = 282670, - [SMALL_STATE(7517)] = 282710, - [SMALL_STATE(7518)] = 282750, - [SMALL_STATE(7519)] = 282826, - [SMALL_STATE(7520)] = 282866, - [SMALL_STATE(7521)] = 282906, - [SMALL_STATE(7522)] = 282946, - [SMALL_STATE(7523)] = 283022, - [SMALL_STATE(7524)] = 283098, - [SMALL_STATE(7525)] = 283138, - [SMALL_STATE(7526)] = 283178, - [SMALL_STATE(7527)] = 283218, - [SMALL_STATE(7528)] = 283258, - [SMALL_STATE(7529)] = 283298, - [SMALL_STATE(7530)] = 283338, - [SMALL_STATE(7531)] = 283378, - [SMALL_STATE(7532)] = 283418, - [SMALL_STATE(7533)] = 283458, - [SMALL_STATE(7534)] = 283540, - [SMALL_STATE(7535)] = 283580, - [SMALL_STATE(7536)] = 283656, - [SMALL_STATE(7537)] = 283696, - [SMALL_STATE(7538)] = 283736, - [SMALL_STATE(7539)] = 283776, - [SMALL_STATE(7540)] = 283823, - [SMALL_STATE(7541)] = 283898, - [SMALL_STATE(7542)] = 283967, - [SMALL_STATE(7543)] = 284036, - [SMALL_STATE(7544)] = 284105, - [SMALL_STATE(7545)] = 284152, - [SMALL_STATE(7546)] = 284227, - [SMALL_STATE(7547)] = 284296, - [SMALL_STATE(7548)] = 284371, - [SMALL_STATE(7549)] = 284440, - [SMALL_STATE(7550)] = 284515, - [SMALL_STATE(7551)] = 284584, - [SMALL_STATE(7552)] = 284626, - [SMALL_STATE(7553)] = 284668, - [SMALL_STATE(7554)] = 284742, - [SMALL_STATE(7555)] = 284784, - [SMALL_STATE(7556)] = 284856, - [SMALL_STATE(7557)] = 284898, - [SMALL_STATE(7558)] = 284972, - [SMALL_STATE(7559)] = 285026, - [SMALL_STATE(7560)] = 285066, - [SMALL_STATE(7561)] = 285140, - [SMALL_STATE(7562)] = 285212, - [SMALL_STATE(7563)] = 285284, - [SMALL_STATE(7564)] = 285356, - [SMALL_STATE(7565)] = 285398, - [SMALL_STATE(7566)] = 285440, - [SMALL_STATE(7567)] = 285514, - [SMALL_STATE(7568)] = 285556, - [SMALL_STATE(7569)] = 285628, - [SMALL_STATE(7570)] = 285670, - [SMALL_STATE(7571)] = 285742, - [SMALL_STATE(7572)] = 285816, - [SMALL_STATE(7573)] = 285888, - [SMALL_STATE(7574)] = 285942, - [SMALL_STATE(7575)] = 285984, - [SMALL_STATE(7576)] = 286026, - [SMALL_STATE(7577)] = 286100, - [SMALL_STATE(7578)] = 286146, - [SMALL_STATE(7579)] = 286188, - [SMALL_STATE(7580)] = 286260, - [SMALL_STATE(7581)] = 286334, - [SMALL_STATE(7582)] = 286376, - [SMALL_STATE(7583)] = 286450, - [SMALL_STATE(7584)] = 286522, - [SMALL_STATE(7585)] = 286589, - [SMALL_STATE(7586)] = 286656, - [SMALL_STATE(7587)] = 286723, - [SMALL_STATE(7588)] = 286768, - [SMALL_STATE(7589)] = 286809, - [SMALL_STATE(7590)] = 286850, - [SMALL_STATE(7591)] = 286917, - [SMALL_STATE(7592)] = 286962, - [SMALL_STATE(7593)] = 287011, - [SMALL_STATE(7594)] = 287078, - [SMALL_STATE(7595)] = 287123, - [SMALL_STATE(7596)] = 287168, - [SMALL_STATE(7597)] = 287235, - [SMALL_STATE(7598)] = 287302, - [SMALL_STATE(7599)] = 287375, - [SMALL_STATE(7600)] = 287416, - [SMALL_STATE(7601)] = 287483, - [SMALL_STATE(7602)] = 287550, - [SMALL_STATE(7603)] = 287591, - [SMALL_STATE(7604)] = 287634, - [SMALL_STATE(7605)] = 287701, - [SMALL_STATE(7606)] = 287742, - [SMALL_STATE(7607)] = 287809, - [SMALL_STATE(7608)] = 287850, - [SMALL_STATE(7609)] = 287923, - [SMALL_STATE(7610)] = 287964, - [SMALL_STATE(7611)] = 288005, - [SMALL_STATE(7612)] = 288046, - [SMALL_STATE(7613)] = 288087, - [SMALL_STATE(7614)] = 288128, - [SMALL_STATE(7615)] = 288169, - [SMALL_STATE(7616)] = 288236, - [SMALL_STATE(7617)] = 288302, - [SMALL_STATE(7618)] = 288368, - [SMALL_STATE(7619)] = 288434, - [SMALL_STATE(7620)] = 288500, - [SMALL_STATE(7621)] = 288566, - [SMALL_STATE(7622)] = 288632, - [SMALL_STATE(7623)] = 288713, - [SMALL_STATE(7624)] = 288776, - [SMALL_STATE(7625)] = 288839, - [SMALL_STATE(7626)] = 288902, - [SMALL_STATE(7627)] = 288965, - [SMALL_STATE(7628)] = 289028, - [SMALL_STATE(7629)] = 289091, - [SMALL_STATE(7630)] = 289154, - [SMALL_STATE(7631)] = 289217, - [SMALL_STATE(7632)] = 289280, - [SMALL_STATE(7633)] = 289343, - [SMALL_STATE(7634)] = 289406, - [SMALL_STATE(7635)] = 289469, - [SMALL_STATE(7636)] = 289510, - [SMALL_STATE(7637)] = 289575, - [SMALL_STATE(7638)] = 289638, - [SMALL_STATE(7639)] = 289701, - [SMALL_STATE(7640)] = 289764, - [SMALL_STATE(7641)] = 289827, - [SMALL_STATE(7642)] = 289890, - [SMALL_STATE(7643)] = 289955, - [SMALL_STATE(7644)] = 290020, - [SMALL_STATE(7645)] = 290083, - [SMALL_STATE(7646)] = 290146, - [SMALL_STATE(7647)] = 290211, - [SMALL_STATE(7648)] = 290274, - [SMALL_STATE(7649)] = 290337, - [SMALL_STATE(7650)] = 290400, - [SMALL_STATE(7651)] = 290465, - [SMALL_STATE(7652)] = 290504, - [SMALL_STATE(7653)] = 290585, - [SMALL_STATE(7654)] = 290648, - [SMALL_STATE(7655)] = 290711, - [SMALL_STATE(7656)] = 290774, - [SMALL_STATE(7657)] = 290837, - [SMALL_STATE(7658)] = 290900, - [SMALL_STATE(7659)] = 290963, - [SMALL_STATE(7660)] = 291028, - [SMALL_STATE(7661)] = 291093, - [SMALL_STATE(7662)] = 291158, - [SMALL_STATE(7663)] = 291211, - [SMALL_STATE(7664)] = 291274, - [SMALL_STATE(7665)] = 291339, - [SMALL_STATE(7666)] = 291402, - [SMALL_STATE(7667)] = 291465, - [SMALL_STATE(7668)] = 291528, - [SMALL_STATE(7669)] = 291591, - [SMALL_STATE(7670)] = 291654, - [SMALL_STATE(7671)] = 291719, - [SMALL_STATE(7672)] = 291782, - [SMALL_STATE(7673)] = 291847, - [SMALL_STATE(7674)] = 291910, - [SMALL_STATE(7675)] = 291973, - [SMALL_STATE(7676)] = 292036, - [SMALL_STATE(7677)] = 292117, - [SMALL_STATE(7678)] = 292180, - [SMALL_STATE(7679)] = 292243, - [SMALL_STATE(7680)] = 292306, - [SMALL_STATE(7681)] = 292369, - [SMALL_STATE(7682)] = 292434, - [SMALL_STATE(7683)] = 292497, - [SMALL_STATE(7684)] = 292560, - [SMALL_STATE(7685)] = 292623, - [SMALL_STATE(7686)] = 292686, - [SMALL_STATE(7687)] = 292749, - [SMALL_STATE(7688)] = 292812, - [SMALL_STATE(7689)] = 292882, - [SMALL_STATE(7690)] = 292952, - [SMALL_STATE(7691)] = 293022, - [SMALL_STATE(7692)] = 293092, - [SMALL_STATE(7693)] = 293162, - [SMALL_STATE(7694)] = 293232, - [SMALL_STATE(7695)] = 293302, - [SMALL_STATE(7696)] = 293372, - [SMALL_STATE(7697)] = 293442, - [SMALL_STATE(7698)] = 293512, - [SMALL_STATE(7699)] = 293582, - [SMALL_STATE(7700)] = 293652, - [SMALL_STATE(7701)] = 293716, - [SMALL_STATE(7702)] = 293786, - [SMALL_STATE(7703)] = 293856, - [SMALL_STATE(7704)] = 293926, - [SMALL_STATE(7705)] = 293996, - [SMALL_STATE(7706)] = 294066, - [SMALL_STATE(7707)] = 294136, - [SMALL_STATE(7708)] = 294206, - [SMALL_STATE(7709)] = 294264, - [SMALL_STATE(7710)] = 294328, - [SMALL_STATE(7711)] = 294398, - [SMALL_STATE(7712)] = 294468, - [SMALL_STATE(7713)] = 294538, - [SMALL_STATE(7714)] = 294608, - [SMALL_STATE(7715)] = 294678, - [SMALL_STATE(7716)] = 294742, - [SMALL_STATE(7717)] = 294812, - [SMALL_STATE(7718)] = 294882, - [SMALL_STATE(7719)] = 294952, - [SMALL_STATE(7720)] = 295022, - [SMALL_STATE(7721)] = 295092, - [SMALL_STATE(7722)] = 295156, - [SMALL_STATE(7723)] = 295226, - [SMALL_STATE(7724)] = 295296, - [SMALL_STATE(7725)] = 295366, - [SMALL_STATE(7726)] = 295436, - [SMALL_STATE(7727)] = 295494, - [SMALL_STATE(7728)] = 295564, - [SMALL_STATE(7729)] = 295634, - [SMALL_STATE(7730)] = 295704, - [SMALL_STATE(7731)] = 295774, - [SMALL_STATE(7732)] = 295844, - [SMALL_STATE(7733)] = 295914, - [SMALL_STATE(7734)] = 295984, - [SMALL_STATE(7735)] = 296054, - [SMALL_STATE(7736)] = 296124, - [SMALL_STATE(7737)] = 296182, - [SMALL_STATE(7738)] = 296246, - [SMALL_STATE(7739)] = 296316, - [SMALL_STATE(7740)] = 296386, - [SMALL_STATE(7741)] = 296456, - [SMALL_STATE(7742)] = 296526, - [SMALL_STATE(7743)] = 296596, - [SMALL_STATE(7744)] = 296666, - [SMALL_STATE(7745)] = 296736, - [SMALL_STATE(7746)] = 296800, - [SMALL_STATE(7747)] = 296874, - [SMALL_STATE(7748)] = 296944, - [SMALL_STATE(7749)] = 297014, - [SMALL_STATE(7750)] = 297084, - [SMALL_STATE(7751)] = 297154, - [SMALL_STATE(7752)] = 297224, - [SMALL_STATE(7753)] = 297294, - [SMALL_STATE(7754)] = 297364, - [SMALL_STATE(7755)] = 297434, - [SMALL_STATE(7756)] = 297504, - [SMALL_STATE(7757)] = 297574, - [SMALL_STATE(7758)] = 297644, - [SMALL_STATE(7759)] = 297714, - [SMALL_STATE(7760)] = 297784, - [SMALL_STATE(7761)] = 297854, - [SMALL_STATE(7762)] = 297924, - [SMALL_STATE(7763)] = 297994, - [SMALL_STATE(7764)] = 298064, - [SMALL_STATE(7765)] = 298122, - [SMALL_STATE(7766)] = 298192, - [SMALL_STATE(7767)] = 298262, - [SMALL_STATE(7768)] = 298332, - [SMALL_STATE(7769)] = 298402, - [SMALL_STATE(7770)] = 298472, - [SMALL_STATE(7771)] = 298542, - [SMALL_STATE(7772)] = 298612, - [SMALL_STATE(7773)] = 298682, - [SMALL_STATE(7774)] = 298752, - [SMALL_STATE(7775)] = 298810, - [SMALL_STATE(7776)] = 298880, - [SMALL_STATE(7777)] = 298950, - [SMALL_STATE(7778)] = 299020, - [SMALL_STATE(7779)] = 299090, - [SMALL_STATE(7780)] = 299160, - [SMALL_STATE(7781)] = 299230, - [SMALL_STATE(7782)] = 299300, - [SMALL_STATE(7783)] = 299370, - [SMALL_STATE(7784)] = 299440, - [SMALL_STATE(7785)] = 299510, - [SMALL_STATE(7786)] = 299562, - [SMALL_STATE(7787)] = 299632, - [SMALL_STATE(7788)] = 299702, - [SMALL_STATE(7789)] = 299772, - [SMALL_STATE(7790)] = 299842, - [SMALL_STATE(7791)] = 299912, - [SMALL_STATE(7792)] = 299987, - [SMALL_STATE(7793)] = 300062, - [SMALL_STATE(7794)] = 300125, - [SMALL_STATE(7795)] = 300188, - [SMALL_STATE(7796)] = 300251, - [SMALL_STATE(7797)] = 300294, - [SMALL_STATE(7798)] = 300369, - [SMALL_STATE(7799)] = 300432, - [SMALL_STATE(7800)] = 300495, - [SMALL_STATE(7801)] = 300558, - [SMALL_STATE(7802)] = 300621, - [SMALL_STATE(7803)] = 300696, - [SMALL_STATE(7804)] = 300771, - [SMALL_STATE(7805)] = 300846, - [SMALL_STATE(7806)] = 300909, - [SMALL_STATE(7807)] = 300972, - [SMALL_STATE(7808)] = 301035, - [SMALL_STATE(7809)] = 301098, - [SMALL_STATE(7810)] = 301161, - [SMALL_STATE(7811)] = 301236, - [SMALL_STATE(7812)] = 301311, - [SMALL_STATE(7813)] = 301374, - [SMALL_STATE(7814)] = 301437, - [SMALL_STATE(7815)] = 301500, - [SMALL_STATE(7816)] = 301563, - [SMALL_STATE(7817)] = 301638, - [SMALL_STATE(7818)] = 301701, - [SMALL_STATE(7819)] = 301744, - [SMALL_STATE(7820)] = 301819, - [SMALL_STATE(7821)] = 301894, - [SMALL_STATE(7822)] = 301957, - [SMALL_STATE(7823)] = 302020, - [SMALL_STATE(7824)] = 302057, - [SMALL_STATE(7825)] = 302120, - [SMALL_STATE(7826)] = 302195, - [SMALL_STATE(7827)] = 302258, - [SMALL_STATE(7828)] = 302321, - [SMALL_STATE(7829)] = 302384, - [SMALL_STATE(7830)] = 302459, - [SMALL_STATE(7831)] = 302522, - [SMALL_STATE(7832)] = 302597, - [SMALL_STATE(7833)] = 302672, - [SMALL_STATE(7834)] = 302735, - [SMALL_STATE(7835)] = 302810, - [SMALL_STATE(7836)] = 302873, - [SMALL_STATE(7837)] = 302936, - [SMALL_STATE(7838)] = 302999, - [SMALL_STATE(7839)] = 303042, - [SMALL_STATE(7840)] = 303117, - [SMALL_STATE(7841)] = 303192, - [SMALL_STATE(7842)] = 303255, - [SMALL_STATE(7843)] = 303318, - [SMALL_STATE(7844)] = 303381, - [SMALL_STATE(7845)] = 303444, - [SMALL_STATE(7846)] = 303507, - [SMALL_STATE(7847)] = 303570, - [SMALL_STATE(7848)] = 303633, - [SMALL_STATE(7849)] = 303696, - [SMALL_STATE(7850)] = 303759, - [SMALL_STATE(7851)] = 303834, - [SMALL_STATE(7852)] = 303897, - [SMALL_STATE(7853)] = 303960, - [SMALL_STATE(7854)] = 304035, - [SMALL_STATE(7855)] = 304098, - [SMALL_STATE(7856)] = 304161, - [SMALL_STATE(7857)] = 304236, - [SMALL_STATE(7858)] = 304299, - [SMALL_STATE(7859)] = 304362, - [SMALL_STATE(7860)] = 304425, - [SMALL_STATE(7861)] = 304500, - [SMALL_STATE(7862)] = 304563, - [SMALL_STATE(7863)] = 304626, - [SMALL_STATE(7864)] = 304701, - [SMALL_STATE(7865)] = 304776, - [SMALL_STATE(7866)] = 304851, - [SMALL_STATE(7867)] = 304926, - [SMALL_STATE(7868)] = 305001, - [SMALL_STATE(7869)] = 305044, - [SMALL_STATE(7870)] = 305112, - [SMALL_STATE(7871)] = 305180, - [SMALL_STATE(7872)] = 305216, - [SMALL_STATE(7873)] = 305284, - [SMALL_STATE(7874)] = 305358, - [SMALL_STATE(7875)] = 305420, - [SMALL_STATE(7876)] = 305474, - [SMALL_STATE(7877)] = 305536, - [SMALL_STATE(7878)] = 305610, - [SMALL_STATE(7879)] = 305678, - [SMALL_STATE(7880)] = 305746, - [SMALL_STATE(7881)] = 305820, - [SMALL_STATE(7882)] = 305882, - [SMALL_STATE(7883)] = 305917, - [SMALL_STATE(7884)] = 305948, - [SMALL_STATE(7885)] = 305979, - [SMALL_STATE(7886)] = 306038, - [SMALL_STATE(7887)] = 306097, - [SMALL_STATE(7888)] = 306128, - [SMALL_STATE(7889)] = 306159, - [SMALL_STATE(7890)] = 306190, - [SMALL_STATE(7891)] = 306221, - [SMALL_STATE(7892)] = 306260, - [SMALL_STATE(7893)] = 306291, - [SMALL_STATE(7894)] = 306322, - [SMALL_STATE(7895)] = 306381, - [SMALL_STATE(7896)] = 306412, - [SMALL_STATE(7897)] = 306445, - [SMALL_STATE(7898)] = 306504, - [SMALL_STATE(7899)] = 306535, - [SMALL_STATE(7900)] = 306566, - [SMALL_STATE(7901)] = 306597, - [SMALL_STATE(7902)] = 306628, - [SMALL_STATE(7903)] = 306687, - [SMALL_STATE(7904)] = 306746, - [SMALL_STATE(7905)] = 306805, - [SMALL_STATE(7906)] = 306864, - [SMALL_STATE(7907)] = 306923, - [SMALL_STATE(7908)] = 306982, - [SMALL_STATE(7909)] = 307041, - [SMALL_STATE(7910)] = 307100, - [SMALL_STATE(7911)] = 307159, - [SMALL_STATE(7912)] = 307218, - [SMALL_STATE(7913)] = 307277, - [SMALL_STATE(7914)] = 307336, - [SMALL_STATE(7915)] = 307395, - [SMALL_STATE(7916)] = 307454, - [SMALL_STATE(7917)] = 307489, - [SMALL_STATE(7918)] = 307528, - [SMALL_STATE(7919)] = 307587, - [SMALL_STATE(7920)] = 307646, - [SMALL_STATE(7921)] = 307705, - [SMALL_STATE(7922)] = 307764, - [SMALL_STATE(7923)] = 307823, - [SMALL_STATE(7924)] = 307882, - [SMALL_STATE(7925)] = 307921, - [SMALL_STATE(7926)] = 307952, - [SMALL_STATE(7927)] = 307991, - [SMALL_STATE(7928)] = 308030, - [SMALL_STATE(7929)] = 308069, - [SMALL_STATE(7930)] = 308128, - [SMALL_STATE(7931)] = 308163, - [SMALL_STATE(7932)] = 308202, - [SMALL_STATE(7933)] = 308249, - [SMALL_STATE(7934)] = 308280, - [SMALL_STATE(7935)] = 308319, - [SMALL_STATE(7936)] = 308378, - [SMALL_STATE(7937)] = 308437, - [SMALL_STATE(7938)] = 308472, - [SMALL_STATE(7939)] = 308511, - [SMALL_STATE(7940)] = 308570, - [SMALL_STATE(7941)] = 308601, - [SMALL_STATE(7942)] = 308632, - [SMALL_STATE(7943)] = 308663, - [SMALL_STATE(7944)] = 308694, - [SMALL_STATE(7945)] = 308733, - [SMALL_STATE(7946)] = 308764, - [SMALL_STATE(7947)] = 308806, - [SMALL_STATE(7948)] = 308848, - [SMALL_STATE(7949)] = 308890, - [SMALL_STATE(7950)] = 308932, - [SMALL_STATE(7951)] = 308974, - [SMALL_STATE(7952)] = 309028, - [SMALL_STATE(7953)] = 309082, - [SMALL_STATE(7954)] = 309116, - [SMALL_STATE(7955)] = 309146, - [SMALL_STATE(7956)] = 309194, - [SMALL_STATE(7957)] = 309236, - [SMALL_STATE(7958)] = 309278, - [SMALL_STATE(7959)] = 309320, - [SMALL_STATE(7960)] = 309371, - [SMALL_STATE(7961)] = 309416, - [SMALL_STATE(7962)] = 309467, - [SMALL_STATE(7963)] = 309528, - [SMALL_STATE(7964)] = 309581, - [SMALL_STATE(7965)] = 309634, - [SMALL_STATE(7966)] = 309685, - [SMALL_STATE(7967)] = 309736, - [SMALL_STATE(7968)] = 309797, - [SMALL_STATE(7969)] = 309848, - [SMALL_STATE(7970)] = 309899, - [SMALL_STATE(7971)] = 309952, - [SMALL_STATE(7972)] = 309983, - [SMALL_STATE(7973)] = 310044, - [SMALL_STATE(7974)] = 310095, - [SMALL_STATE(7975)] = 310138, - [SMALL_STATE(7976)] = 310191, - [SMALL_STATE(7977)] = 310242, - [SMALL_STATE(7978)] = 310295, - [SMALL_STATE(7979)] = 310346, - [SMALL_STATE(7980)] = 310399, - [SMALL_STATE(7981)] = 310452, - [SMALL_STATE(7982)] = 310507, - [SMALL_STATE(7983)] = 310558, - [SMALL_STATE(7984)] = 310591, - [SMALL_STATE(7985)] = 310652, - [SMALL_STATE(7986)] = 310705, - [SMALL_STATE(7987)] = 310756, - [SMALL_STATE(7988)] = 310785, - [SMALL_STATE(7989)] = 310838, - [SMALL_STATE(7990)] = 310867, - [SMALL_STATE(7991)] = 310918, - [SMALL_STATE(7992)] = 310979, - [SMALL_STATE(7993)] = 311032, - [SMALL_STATE(7994)] = 311083, - [SMALL_STATE(7995)] = 311134, - [SMALL_STATE(7996)] = 311185, - [SMALL_STATE(7997)] = 311236, - [SMALL_STATE(7998)] = 311265, - [SMALL_STATE(7999)] = 311316, - [SMALL_STATE(8000)] = 311367, - [SMALL_STATE(8001)] = 311418, - [SMALL_STATE(8002)] = 311469, - [SMALL_STATE(8003)] = 311512, - [SMALL_STATE(8004)] = 311563, - [SMALL_STATE(8005)] = 311614, - [SMALL_STATE(8006)] = 311655, - [SMALL_STATE(8007)] = 311696, - [SMALL_STATE(8008)] = 311737, - [SMALL_STATE(8009)] = 311790, - [SMALL_STATE(8010)] = 311831, - [SMALL_STATE(8011)] = 311864, - [SMALL_STATE(8012)] = 311905, - [SMALL_STATE(8013)] = 311946, - [SMALL_STATE(8014)] = 311987, - [SMALL_STATE(8015)] = 312028, - [SMALL_STATE(8016)] = 312081, - [SMALL_STATE(8017)] = 312114, - [SMALL_STATE(8018)] = 312167, - [SMALL_STATE(8019)] = 312228, - [SMALL_STATE(8020)] = 312289, - [SMALL_STATE(8021)] = 312340, - [SMALL_STATE(8022)] = 312383, - [SMALL_STATE(8023)] = 312412, - [SMALL_STATE(8024)] = 312441, - [SMALL_STATE(8025)] = 312492, - [SMALL_STATE(8026)] = 312545, - [SMALL_STATE(8027)] = 312598, - [SMALL_STATE(8028)] = 312653, - [SMALL_STATE(8029)] = 312708, - [SMALL_STATE(8030)] = 312763, - [SMALL_STATE(8031)] = 312814, - [SMALL_STATE(8032)] = 312865, - [SMALL_STATE(8033)] = 312916, - [SMALL_STATE(8034)] = 312967, - [SMALL_STATE(8035)] = 313007, - [SMALL_STATE(8036)] = 313047, - [SMALL_STATE(8037)] = 313087, - [SMALL_STATE(8038)] = 313137, - [SMALL_STATE(8039)] = 313187, - [SMALL_STATE(8040)] = 313227, - [SMALL_STATE(8041)] = 313277, - [SMALL_STATE(8042)] = 313317, - [SMALL_STATE(8043)] = 313357, - [SMALL_STATE(8044)] = 313409, - [SMALL_STATE(8045)] = 313449, - [SMALL_STATE(8046)] = 313489, - [SMALL_STATE(8047)] = 313529, - [SMALL_STATE(8048)] = 313557, - [SMALL_STATE(8049)] = 313597, - [SMALL_STATE(8050)] = 313637, - [SMALL_STATE(8051)] = 313677, - [SMALL_STATE(8052)] = 313717, - [SMALL_STATE(8053)] = 313757, - [SMALL_STATE(8054)] = 313797, - [SMALL_STATE(8055)] = 313825, - [SMALL_STATE(8056)] = 313865, - [SMALL_STATE(8057)] = 313909, - [SMALL_STATE(8058)] = 313955, - [SMALL_STATE(8059)] = 313995, - [SMALL_STATE(8060)] = 314023, - [SMALL_STATE(8061)] = 314063, - [SMALL_STATE(8062)] = 314091, - [SMALL_STATE(8063)] = 314131, - [SMALL_STATE(8064)] = 314171, - [SMALL_STATE(8065)] = 314199, - [SMALL_STATE(8066)] = 314239, - [SMALL_STATE(8067)] = 314271, - [SMALL_STATE(8068)] = 314311, - [SMALL_STATE(8069)] = 314339, - [SMALL_STATE(8070)] = 314387, - [SMALL_STATE(8071)] = 314427, - [SMALL_STATE(8072)] = 314473, - [SMALL_STATE(8073)] = 314523, - [SMALL_STATE(8074)] = 314573, - [SMALL_STATE(8075)] = 314623, - [SMALL_STATE(8076)] = 314675, - [SMALL_STATE(8077)] = 314715, - [SMALL_STATE(8078)] = 314761, - [SMALL_STATE(8079)] = 314801, - [SMALL_STATE(8080)] = 314845, - [SMALL_STATE(8081)] = 314895, - [SMALL_STATE(8082)] = 314947, - [SMALL_STATE(8083)] = 314989, - [SMALL_STATE(8084)] = 315039, - [SMALL_STATE(8085)] = 315079, - [SMALL_STATE(8086)] = 315115, - [SMALL_STATE(8087)] = 315149, - [SMALL_STATE(8088)] = 315199, - [SMALL_STATE(8089)] = 315249, - [SMALL_STATE(8090)] = 315281, - [SMALL_STATE(8091)] = 315333, - [SMALL_STATE(8092)] = 315373, - [SMALL_STATE(8093)] = 315423, - [SMALL_STATE(8094)] = 315473, - [SMALL_STATE(8095)] = 315523, - [SMALL_STATE(8096)] = 315573, - [SMALL_STATE(8097)] = 315623, - [SMALL_STATE(8098)] = 315673, - [SMALL_STATE(8099)] = 315723, - [SMALL_STATE(8100)] = 315763, - [SMALL_STATE(8101)] = 315813, - [SMALL_STATE(8102)] = 315853, - [SMALL_STATE(8103)] = 315903, - [SMALL_STATE(8104)] = 315949, - [SMALL_STATE(8105)] = 315989, - [SMALL_STATE(8106)] = 316029, - [SMALL_STATE(8107)] = 316081, - [SMALL_STATE(8108)] = 316121, - [SMALL_STATE(8109)] = 316161, - [SMALL_STATE(8110)] = 316201, - [SMALL_STATE(8111)] = 316241, - [SMALL_STATE(8112)] = 316281, - [SMALL_STATE(8113)] = 316321, - [SMALL_STATE(8114)] = 316361, - [SMALL_STATE(8115)] = 316389, - [SMALL_STATE(8116)] = 316417, - [SMALL_STATE(8117)] = 316457, - [SMALL_STATE(8118)] = 316485, - [SMALL_STATE(8119)] = 316513, - [SMALL_STATE(8120)] = 316553, - [SMALL_STATE(8121)] = 316580, - [SMALL_STATE(8122)] = 316631, - [SMALL_STATE(8123)] = 316682, - [SMALL_STATE(8124)] = 316733, - [SMALL_STATE(8125)] = 316780, - [SMALL_STATE(8126)] = 316831, - [SMALL_STATE(8127)] = 316882, - [SMALL_STATE(8128)] = 316929, - [SMALL_STATE(8129)] = 316956, - [SMALL_STATE(8130)] = 317007, - [SMALL_STATE(8131)] = 317052, - [SMALL_STATE(8132)] = 317079, - [SMALL_STATE(8133)] = 317128, - [SMALL_STATE(8134)] = 317155, - [SMALL_STATE(8135)] = 317182, - [SMALL_STATE(8136)] = 317233, - [SMALL_STATE(8137)] = 317280, - [SMALL_STATE(8138)] = 317327, - [SMALL_STATE(8139)] = 317376, - [SMALL_STATE(8140)] = 317423, - [SMALL_STATE(8141)] = 317460, - [SMALL_STATE(8142)] = 317507, - [SMALL_STATE(8143)] = 317554, - [SMALL_STATE(8144)] = 317585, - [SMALL_STATE(8145)] = 317632, - [SMALL_STATE(8146)] = 317677, - [SMALL_STATE(8147)] = 317704, - [SMALL_STATE(8148)] = 317741, - [SMALL_STATE(8149)] = 317768, - [SMALL_STATE(8150)] = 317795, - [SMALL_STATE(8151)] = 317822, - [SMALL_STATE(8152)] = 317871, - [SMALL_STATE(8153)] = 317926, - [SMALL_STATE(8154)] = 317975, - [SMALL_STATE(8155)] = 318026, - [SMALL_STATE(8156)] = 318063, - [SMALL_STATE(8157)] = 318090, - [SMALL_STATE(8158)] = 318137, - [SMALL_STATE(8159)] = 318184, - [SMALL_STATE(8160)] = 318235, - [SMALL_STATE(8161)] = 318262, - [SMALL_STATE(8162)] = 318289, - [SMALL_STATE(8163)] = 318316, - [SMALL_STATE(8164)] = 318343, - [SMALL_STATE(8165)] = 318370, - [SMALL_STATE(8166)] = 318397, - [SMALL_STATE(8167)] = 318430, - [SMALL_STATE(8168)] = 318481, - [SMALL_STATE(8169)] = 318532, - [SMALL_STATE(8170)] = 318559, - [SMALL_STATE(8171)] = 318586, - [SMALL_STATE(8172)] = 318629, - [SMALL_STATE(8173)] = 318680, - [SMALL_STATE(8174)] = 318731, - [SMALL_STATE(8175)] = 318782, - [SMALL_STATE(8176)] = 318833, - [SMALL_STATE(8177)] = 318884, - [SMALL_STATE(8178)] = 318935, - [SMALL_STATE(8179)] = 318986, - [SMALL_STATE(8180)] = 319031, - [SMALL_STATE(8181)] = 319058, - [SMALL_STATE(8182)] = 319085, - [SMALL_STATE(8183)] = 319132, - [SMALL_STATE(8184)] = 319159, - [SMALL_STATE(8185)] = 319206, - [SMALL_STATE(8186)] = 319251, - [SMALL_STATE(8187)] = 319298, - [SMALL_STATE(8188)] = 319343, - [SMALL_STATE(8189)] = 319388, - [SMALL_STATE(8190)] = 319439, - [SMALL_STATE(8191)] = 319476, - [SMALL_STATE(8192)] = 319525, - [SMALL_STATE(8193)] = 319576, - [SMALL_STATE(8194)] = 319627, - [SMALL_STATE(8195)] = 319672, - [SMALL_STATE(8196)] = 319699, - [SMALL_STATE(8197)] = 319744, - [SMALL_STATE(8198)] = 319791, - [SMALL_STATE(8199)] = 319846, - [SMALL_STATE(8200)] = 319893, - [SMALL_STATE(8201)] = 319940, - [SMALL_STATE(8202)] = 319991, - [SMALL_STATE(8203)] = 320042, - [SMALL_STATE(8204)] = 320089, - [SMALL_STATE(8205)] = 320134, - [SMALL_STATE(8206)] = 320161, - [SMALL_STATE(8207)] = 320208, - [SMALL_STATE(8208)] = 320235, - [SMALL_STATE(8209)] = 320262, - [SMALL_STATE(8210)] = 320313, - [SMALL_STATE(8211)] = 320346, - [SMALL_STATE(8212)] = 320397, - [SMALL_STATE(8213)] = 320426, - [SMALL_STATE(8214)] = 320459, - [SMALL_STATE(8215)] = 320486, - [SMALL_STATE(8216)] = 320531, - [SMALL_STATE(8217)] = 320558, - [SMALL_STATE(8218)] = 320603, - [SMALL_STATE(8219)] = 320652, - [SMALL_STATE(8220)] = 320703, - [SMALL_STATE(8221)] = 320754, - [SMALL_STATE(8222)] = 320799, - [SMALL_STATE(8223)] = 320828, - [SMALL_STATE(8224)] = 320855, - [SMALL_STATE(8225)] = 320900, - [SMALL_STATE(8226)] = 320943, - [SMALL_STATE(8227)] = 320984, - [SMALL_STATE(8228)] = 321023, - [SMALL_STATE(8229)] = 321060, - [SMALL_STATE(8230)] = 321095, - [SMALL_STATE(8231)] = 321146, - [SMALL_STATE(8232)] = 321179, - [SMALL_STATE(8233)] = 321210, - [SMALL_STATE(8234)] = 321255, - [SMALL_STATE(8235)] = 321282, - [SMALL_STATE(8236)] = 321309, - [SMALL_STATE(8237)] = 321340, - [SMALL_STATE(8238)] = 321373, - [SMALL_STATE(8239)] = 321424, - [SMALL_STATE(8240)] = 321451, - [SMALL_STATE(8241)] = 321488, - [SMALL_STATE(8242)] = 321533, - [SMALL_STATE(8243)] = 321569, - [SMALL_STATE(8244)] = 321607, - [SMALL_STATE(8245)] = 321633, - [SMALL_STATE(8246)] = 321659, - [SMALL_STATE(8247)] = 321695, - [SMALL_STATE(8248)] = 321747, - [SMALL_STATE(8249)] = 321773, - [SMALL_STATE(8250)] = 321825, - [SMALL_STATE(8251)] = 321879, - [SMALL_STATE(8252)] = 321933, - [SMALL_STATE(8253)] = 321959, - [SMALL_STATE(8254)] = 321989, - [SMALL_STATE(8255)] = 322015, - [SMALL_STATE(8256)] = 322053, - [SMALL_STATE(8257)] = 322091, - [SMALL_STATE(8258)] = 322121, - [SMALL_STATE(8259)] = 322169, - [SMALL_STATE(8260)] = 322203, - [SMALL_STATE(8261)] = 322229, - [SMALL_STATE(8262)] = 322255, - [SMALL_STATE(8263)] = 322303, - [SMALL_STATE(8264)] = 322333, - [SMALL_STATE(8265)] = 322371, - [SMALL_STATE(8266)] = 322397, - [SMALL_STATE(8267)] = 322435, - [SMALL_STATE(8268)] = 322489, - [SMALL_STATE(8269)] = 322523, - [SMALL_STATE(8270)] = 322557, - [SMALL_STATE(8271)] = 322603, - [SMALL_STATE(8272)] = 322631, - [SMALL_STATE(8273)] = 322657, - [SMALL_STATE(8274)] = 322711, - [SMALL_STATE(8275)] = 322765, - [SMALL_STATE(8276)] = 322815, - [SMALL_STATE(8277)] = 322849, - [SMALL_STATE(8278)] = 322875, - [SMALL_STATE(8279)] = 322901, - [SMALL_STATE(8280)] = 322937, - [SMALL_STATE(8281)] = 322963, - [SMALL_STATE(8282)] = 322989, - [SMALL_STATE(8283)] = 323021, - [SMALL_STATE(8284)] = 323063, - [SMALL_STATE(8285)] = 323101, - [SMALL_STATE(8286)] = 323151, - [SMALL_STATE(8287)] = 323181, - [SMALL_STATE(8288)] = 323235, - [SMALL_STATE(8289)] = 323285, - [SMALL_STATE(8290)] = 323335, - [SMALL_STATE(8291)] = 323385, - [SMALL_STATE(8292)] = 323421, - [SMALL_STATE(8293)] = 323473, - [SMALL_STATE(8294)] = 323507, - [SMALL_STATE(8295)] = 323559, - [SMALL_STATE(8296)] = 323585, - [SMALL_STATE(8297)] = 323611, - [SMALL_STATE(8298)] = 323641, - [SMALL_STATE(8299)] = 323695, - [SMALL_STATE(8300)] = 323747, - [SMALL_STATE(8301)] = 323785, - [SMALL_STATE(8302)] = 323835, - [SMALL_STATE(8303)] = 323871, - [SMALL_STATE(8304)] = 323925, - [SMALL_STATE(8305)] = 323955, - [SMALL_STATE(8306)] = 323989, - [SMALL_STATE(8307)] = 324023, - [SMALL_STATE(8308)] = 324057, - [SMALL_STATE(8309)] = 324091, - [SMALL_STATE(8310)] = 324125, - [SMALL_STATE(8311)] = 324159, - [SMALL_STATE(8312)] = 324193, - [SMALL_STATE(8313)] = 324227, - [SMALL_STATE(8314)] = 324261, - [SMALL_STATE(8315)] = 324295, - [SMALL_STATE(8316)] = 324329, - [SMALL_STATE(8317)] = 324363, - [SMALL_STATE(8318)] = 324397, - [SMALL_STATE(8319)] = 324423, - [SMALL_STATE(8320)] = 324449, - [SMALL_STATE(8321)] = 324475, - [SMALL_STATE(8322)] = 324513, - [SMALL_STATE(8323)] = 324539, - [SMALL_STATE(8324)] = 324586, - [SMALL_STATE(8325)] = 324633, - [SMALL_STATE(8326)] = 324680, - [SMALL_STATE(8327)] = 324727, - [SMALL_STATE(8328)] = 324770, - [SMALL_STATE(8329)] = 324803, - [SMALL_STATE(8330)] = 324840, - [SMALL_STATE(8331)] = 324877, - [SMALL_STATE(8332)] = 324914, - [SMALL_STATE(8333)] = 324951, - [SMALL_STATE(8334)] = 324988, - [SMALL_STATE(8335)] = 325035, - [SMALL_STATE(8336)] = 325072, - [SMALL_STATE(8337)] = 325119, - [SMALL_STATE(8338)] = 325156, - [SMALL_STATE(8339)] = 325193, - [SMALL_STATE(8340)] = 325240, - [SMALL_STATE(8341)] = 325287, - [SMALL_STATE(8342)] = 325318, - [SMALL_STATE(8343)] = 325365, - [SMALL_STATE(8344)] = 325406, - [SMALL_STATE(8345)] = 325453, - [SMALL_STATE(8346)] = 325496, - [SMALL_STATE(8347)] = 325543, - [SMALL_STATE(8348)] = 325590, - [SMALL_STATE(8349)] = 325637, - [SMALL_STATE(8350)] = 325668, - [SMALL_STATE(8351)] = 325701, - [SMALL_STATE(8352)] = 325734, - [SMALL_STATE(8353)] = 325765, - [SMALL_STATE(8354)] = 325812, - [SMALL_STATE(8355)] = 325845, - [SMALL_STATE(8356)] = 325892, - [SMALL_STATE(8357)] = 325939, - [SMALL_STATE(8358)] = 325986, - [SMALL_STATE(8359)] = 326019, - [SMALL_STATE(8360)] = 326052, - [SMALL_STATE(8361)] = 326095, - [SMALL_STATE(8362)] = 326142, - [SMALL_STATE(8363)] = 326169, - [SMALL_STATE(8364)] = 326202, - [SMALL_STATE(8365)] = 326245, - [SMALL_STATE(8366)] = 326292, - [SMALL_STATE(8367)] = 326321, - [SMALL_STATE(8368)] = 326368, - [SMALL_STATE(8369)] = 326415, - [SMALL_STATE(8370)] = 326462, - [SMALL_STATE(8371)] = 326503, - [SMALL_STATE(8372)] = 326536, - [SMALL_STATE(8373)] = 326583, - [SMALL_STATE(8374)] = 326630, - [SMALL_STATE(8375)] = 326655, - [SMALL_STATE(8376)] = 326702, - [SMALL_STATE(8377)] = 326749, - [SMALL_STATE(8378)] = 326782, - [SMALL_STATE(8379)] = 326823, - [SMALL_STATE(8380)] = 326870, - [SMALL_STATE(8381)] = 326917, - [SMALL_STATE(8382)] = 326964, - [SMALL_STATE(8383)] = 327011, - [SMALL_STATE(8384)] = 327035, - [SMALL_STATE(8385)] = 327071, - [SMALL_STATE(8386)] = 327095, - [SMALL_STATE(8387)] = 327119, - [SMALL_STATE(8388)] = 327145, - [SMALL_STATE(8389)] = 327181, - [SMALL_STATE(8390)] = 327205, - [SMALL_STATE(8391)] = 327239, - [SMALL_STATE(8392)] = 327263, - [SMALL_STATE(8393)] = 327295, - [SMALL_STATE(8394)] = 327319, - [SMALL_STATE(8395)] = 327343, - [SMALL_STATE(8396)] = 327385, - [SMALL_STATE(8397)] = 327425, - [SMALL_STATE(8398)] = 327449, - [SMALL_STATE(8399)] = 327481, - [SMALL_STATE(8400)] = 327515, - [SMALL_STATE(8401)] = 327539, - [SMALL_STATE(8402)] = 327563, - [SMALL_STATE(8403)] = 327587, - [SMALL_STATE(8404)] = 327631, - [SMALL_STATE(8405)] = 327675, - [SMALL_STATE(8406)] = 327699, - [SMALL_STATE(8407)] = 327743, - [SMALL_STATE(8408)] = 327779, - [SMALL_STATE(8409)] = 327803, - [SMALL_STATE(8410)] = 327835, - [SMALL_STATE(8411)] = 327859, - [SMALL_STATE(8412)] = 327903, - [SMALL_STATE(8413)] = 327927, - [SMALL_STATE(8414)] = 327951, - [SMALL_STATE(8415)] = 327995, - [SMALL_STATE(8416)] = 328031, - [SMALL_STATE(8417)] = 328075, - [SMALL_STATE(8418)] = 328099, - [SMALL_STATE(8419)] = 328123, - [SMALL_STATE(8420)] = 328167, - [SMALL_STATE(8421)] = 328211, - [SMALL_STATE(8422)] = 328235, - [SMALL_STATE(8423)] = 328269, - [SMALL_STATE(8424)] = 328301, - [SMALL_STATE(8425)] = 328325, - [SMALL_STATE(8426)] = 328349, - [SMALL_STATE(8427)] = 328393, - [SMALL_STATE(8428)] = 328417, - [SMALL_STATE(8429)] = 328461, - [SMALL_STATE(8430)] = 328485, - [SMALL_STATE(8431)] = 328509, - [SMALL_STATE(8432)] = 328533, - [SMALL_STATE(8433)] = 328557, - [SMALL_STATE(8434)] = 328581, - [SMALL_STATE(8435)] = 328605, - [SMALL_STATE(8436)] = 328649, - [SMALL_STATE(8437)] = 328673, - [SMALL_STATE(8438)] = 328707, - [SMALL_STATE(8439)] = 328739, - [SMALL_STATE(8440)] = 328783, - [SMALL_STATE(8441)] = 328817, - [SMALL_STATE(8442)] = 328849, - [SMALL_STATE(8443)] = 328893, - [SMALL_STATE(8444)] = 328925, - [SMALL_STATE(8445)] = 328959, - [SMALL_STATE(8446)] = 329003, - [SMALL_STATE(8447)] = 329031, - [SMALL_STATE(8448)] = 329063, - [SMALL_STATE(8449)] = 329087, - [SMALL_STATE(8450)] = 329111, - [SMALL_STATE(8451)] = 329135, - [SMALL_STATE(8452)] = 329159, - [SMALL_STATE(8453)] = 329193, - [SMALL_STATE(8454)] = 329237, - [SMALL_STATE(8455)] = 329271, - [SMALL_STATE(8456)] = 329295, - [SMALL_STATE(8457)] = 329327, - [SMALL_STATE(8458)] = 329351, - [SMALL_STATE(8459)] = 329383, - [SMALL_STATE(8460)] = 329407, - [SMALL_STATE(8461)] = 329431, - [SMALL_STATE(8462)] = 329475, - [SMALL_STATE(8463)] = 329499, - [SMALL_STATE(8464)] = 329545, - [SMALL_STATE(8465)] = 329569, - [SMALL_STATE(8466)] = 329593, - [SMALL_STATE(8467)] = 329617, - [SMALL_STATE(8468)] = 329653, - [SMALL_STATE(8469)] = 329677, - [SMALL_STATE(8470)] = 329701, - [SMALL_STATE(8471)] = 329725, - [SMALL_STATE(8472)] = 329749, - [SMALL_STATE(8473)] = 329793, - [SMALL_STATE(8474)] = 329817, - [SMALL_STATE(8475)] = 329841, - [SMALL_STATE(8476)] = 329865, - [SMALL_STATE(8477)] = 329889, - [SMALL_STATE(8478)] = 329933, - [SMALL_STATE(8479)] = 329966, - [SMALL_STATE(8480)] = 330001, - [SMALL_STATE(8481)] = 330040, - [SMALL_STATE(8482)] = 330069, - [SMALL_STATE(8483)] = 330098, - [SMALL_STATE(8484)] = 330133, - [SMALL_STATE(8485)] = 330168, - [SMALL_STATE(8486)] = 330203, - [SMALL_STATE(8487)] = 330238, - [SMALL_STATE(8488)] = 330271, - [SMALL_STATE(8489)] = 330312, - [SMALL_STATE(8490)] = 330347, - [SMALL_STATE(8491)] = 330382, - [SMALL_STATE(8492)] = 330417, - [SMALL_STATE(8493)] = 330452, - [SMALL_STATE(8494)] = 330481, - [SMALL_STATE(8495)] = 330510, - [SMALL_STATE(8496)] = 330543, - [SMALL_STATE(8497)] = 330572, - [SMALL_STATE(8498)] = 330611, - [SMALL_STATE(8499)] = 330644, - [SMALL_STATE(8500)] = 330673, - [SMALL_STATE(8501)] = 330702, - [SMALL_STATE(8502)] = 330737, - [SMALL_STATE(8503)] = 330772, - [SMALL_STATE(8504)] = 330807, - [SMALL_STATE(8505)] = 330836, - [SMALL_STATE(8506)] = 330871, - [SMALL_STATE(8507)] = 330900, - [SMALL_STATE(8508)] = 330929, - [SMALL_STATE(8509)] = 330958, - [SMALL_STATE(8510)] = 330987, - [SMALL_STATE(8511)] = 331016, - [SMALL_STATE(8512)] = 331045, - [SMALL_STATE(8513)] = 331080, - [SMALL_STATE(8514)] = 331109, - [SMALL_STATE(8515)] = 331138, - [SMALL_STATE(8516)] = 331167, - [SMALL_STATE(8517)] = 331200, - [SMALL_STATE(8518)] = 331229, - [SMALL_STATE(8519)] = 331268, - [SMALL_STATE(8520)] = 331311, - [SMALL_STATE(8521)] = 331340, - [SMALL_STATE(8522)] = 331381, - [SMALL_STATE(8523)] = 331410, - [SMALL_STATE(8524)] = 331439, - [SMALL_STATE(8525)] = 331478, - [SMALL_STATE(8526)] = 331507, - [SMALL_STATE(8527)] = 331542, - [SMALL_STATE(8528)] = 331571, - [SMALL_STATE(8529)] = 331600, - [SMALL_STATE(8530)] = 331629, - [SMALL_STATE(8531)] = 331658, - [SMALL_STATE(8532)] = 331693, - [SMALL_STATE(8533)] = 331728, - [SMALL_STATE(8534)] = 331755, - [SMALL_STATE(8535)] = 331788, - [SMALL_STATE(8536)] = 331817, - [SMALL_STATE(8537)] = 331850, - [SMALL_STATE(8538)] = 331891, - [SMALL_STATE(8539)] = 331924, - [SMALL_STATE(8540)] = 331959, - [SMALL_STATE(8541)] = 331998, - [SMALL_STATE(8542)] = 332039, - [SMALL_STATE(8543)] = 332074, - [SMALL_STATE(8544)] = 332109, - [SMALL_STATE(8545)] = 332144, - [SMALL_STATE(8546)] = 332173, - [SMALL_STATE(8547)] = 332215, - [SMALL_STATE(8548)] = 332243, - [SMALL_STATE(8549)] = 332281, - [SMALL_STATE(8550)] = 332323, - [SMALL_STATE(8551)] = 332355, - [SMALL_STATE(8552)] = 332381, - [SMALL_STATE(8553)] = 332421, - [SMALL_STATE(8554)] = 332451, - [SMALL_STATE(8555)] = 332489, - [SMALL_STATE(8556)] = 332519, - [SMALL_STATE(8557)] = 332559, - [SMALL_STATE(8558)] = 332597, - [SMALL_STATE(8559)] = 332637, - [SMALL_STATE(8560)] = 332677, - [SMALL_STATE(8561)] = 332719, - [SMALL_STATE(8562)] = 332751, - [SMALL_STATE(8563)] = 332781, - [SMALL_STATE(8564)] = 332823, - [SMALL_STATE(8565)] = 332865, - [SMALL_STATE(8566)] = 332905, - [SMALL_STATE(8567)] = 332945, - [SMALL_STATE(8568)] = 332977, - [SMALL_STATE(8569)] = 333007, - [SMALL_STATE(8570)] = 333039, - [SMALL_STATE(8571)] = 333069, - [SMALL_STATE(8572)] = 333111, - [SMALL_STATE(8573)] = 333151, - [SMALL_STATE(8574)] = 333181, - [SMALL_STATE(8575)] = 333213, - [SMALL_STATE(8576)] = 333243, - [SMALL_STATE(8577)] = 333285, - [SMALL_STATE(8578)] = 333325, - [SMALL_STATE(8579)] = 333363, - [SMALL_STATE(8580)] = 333405, - [SMALL_STATE(8581)] = 333445, - [SMALL_STATE(8582)] = 333471, - [SMALL_STATE(8583)] = 333497, - [SMALL_STATE(8584)] = 333525, - [SMALL_STATE(8585)] = 333567, - [SMALL_STATE(8586)] = 333605, - [SMALL_STATE(8587)] = 333637, - [SMALL_STATE(8588)] = 333675, - [SMALL_STATE(8589)] = 333717, - [SMALL_STATE(8590)] = 333739, - [SMALL_STATE(8591)] = 333781, - [SMALL_STATE(8592)] = 333809, - [SMALL_STATE(8593)] = 333847, - [SMALL_STATE(8594)] = 333889, - [SMALL_STATE(8595)] = 333929, - [SMALL_STATE(8596)] = 333971, - [SMALL_STATE(8597)] = 334001, - [SMALL_STATE(8598)] = 334023, - [SMALL_STATE(8599)] = 334061, - [SMALL_STATE(8600)] = 334099, - [SMALL_STATE(8601)] = 334139, - [SMALL_STATE(8602)] = 334161, - [SMALL_STATE(8603)] = 334203, - [SMALL_STATE(8604)] = 334227, - [SMALL_STATE(8605)] = 334269, - [SMALL_STATE(8606)] = 334311, - [SMALL_STATE(8607)] = 334353, - [SMALL_STATE(8608)] = 334391, - [SMALL_STATE(8609)] = 334423, - [SMALL_STATE(8610)] = 334463, - [SMALL_STATE(8611)] = 334501, - [SMALL_STATE(8612)] = 334541, - [SMALL_STATE(8613)] = 334583, - [SMALL_STATE(8614)] = 334611, - [SMALL_STATE(8615)] = 334653, - [SMALL_STATE(8616)] = 334683, - [SMALL_STATE(8617)] = 334711, - [SMALL_STATE(8618)] = 334753, - [SMALL_STATE(8619)] = 334777, - [SMALL_STATE(8620)] = 334799, - [SMALL_STATE(8621)] = 334827, - [SMALL_STATE(8622)] = 334869, - [SMALL_STATE(8623)] = 334911, - [SMALL_STATE(8624)] = 334939, - [SMALL_STATE(8625)] = 334981, - [SMALL_STATE(8626)] = 335019, - [SMALL_STATE(8627)] = 335061, - [SMALL_STATE(8628)] = 335099, - [SMALL_STATE(8629)] = 335139, - [SMALL_STATE(8630)] = 335177, - [SMALL_STATE(8631)] = 335205, - [SMALL_STATE(8632)] = 335247, - [SMALL_STATE(8633)] = 335279, - [SMALL_STATE(8634)] = 335319, - [SMALL_STATE(8635)] = 335361, - [SMALL_STATE(8636)] = 335391, - [SMALL_STATE(8637)] = 335433, - [SMALL_STATE(8638)] = 335455, - [SMALL_STATE(8639)] = 335497, - [SMALL_STATE(8640)] = 335539, - [SMALL_STATE(8641)] = 335579, - [SMALL_STATE(8642)] = 335612, - [SMALL_STATE(8643)] = 335645, - [SMALL_STATE(8644)] = 335682, - [SMALL_STATE(8645)] = 335713, - [SMALL_STATE(8646)] = 335748, - [SMALL_STATE(8647)] = 335781, - [SMALL_STATE(8648)] = 335816, - [SMALL_STATE(8649)] = 335847, - [SMALL_STATE(8650)] = 335880, - [SMALL_STATE(8651)] = 335915, - [SMALL_STATE(8652)] = 335944, - [SMALL_STATE(8653)] = 335977, - [SMALL_STATE(8654)] = 336010, - [SMALL_STATE(8655)] = 336045, - [SMALL_STATE(8656)] = 336080, - [SMALL_STATE(8657)] = 336109, - [SMALL_STATE(8658)] = 336142, - [SMALL_STATE(8659)] = 336167, - [SMALL_STATE(8660)] = 336200, - [SMALL_STATE(8661)] = 336235, - [SMALL_STATE(8662)] = 336260, - [SMALL_STATE(8663)] = 336293, - [SMALL_STATE(8664)] = 336326, - [SMALL_STATE(8665)] = 336347, - [SMALL_STATE(8666)] = 336384, - [SMALL_STATE(8667)] = 336419, - [SMALL_STATE(8668)] = 336448, - [SMALL_STATE(8669)] = 336483, - [SMALL_STATE(8670)] = 336516, - [SMALL_STATE(8671)] = 336549, - [SMALL_STATE(8672)] = 336582, - [SMALL_STATE(8673)] = 336617, - [SMALL_STATE(8674)] = 336646, - [SMALL_STATE(8675)] = 336681, - [SMALL_STATE(8676)] = 336710, - [SMALL_STATE(8677)] = 336743, - [SMALL_STATE(8678)] = 336776, - [SMALL_STATE(8679)] = 336805, - [SMALL_STATE(8680)] = 336834, - [SMALL_STATE(8681)] = 336867, - [SMALL_STATE(8682)] = 336900, - [SMALL_STATE(8683)] = 336935, - [SMALL_STATE(8684)] = 336968, - [SMALL_STATE(8685)] = 336999, - [SMALL_STATE(8686)] = 337026, - [SMALL_STATE(8687)] = 337059, - [SMALL_STATE(8688)] = 337092, - [SMALL_STATE(8689)] = 337127, - [SMALL_STATE(8690)] = 337160, - [SMALL_STATE(8691)] = 337195, - [SMALL_STATE(8692)] = 337224, - [SMALL_STATE(8693)] = 337257, - [SMALL_STATE(8694)] = 337290, - [SMALL_STATE(8695)] = 337321, - [SMALL_STATE(8696)] = 337354, - [SMALL_STATE(8697)] = 337387, - [SMALL_STATE(8698)] = 337414, - [SMALL_STATE(8699)] = 337449, - [SMALL_STATE(8700)] = 337484, - [SMALL_STATE(8701)] = 337517, - [SMALL_STATE(8702)] = 337548, - [SMALL_STATE(8703)] = 337579, - [SMALL_STATE(8704)] = 337614, - [SMALL_STATE(8705)] = 337649, - [SMALL_STATE(8706)] = 337682, - [SMALL_STATE(8707)] = 337717, - [SMALL_STATE(8708)] = 337752, - [SMALL_STATE(8709)] = 337787, - [SMALL_STATE(8710)] = 337813, - [SMALL_STATE(8711)] = 337839, - [SMALL_STATE(8712)] = 337865, - [SMALL_STATE(8713)] = 337891, - [SMALL_STATE(8714)] = 337911, - [SMALL_STATE(8715)] = 337931, - [SMALL_STATE(8716)] = 337951, - [SMALL_STATE(8717)] = 337971, - [SMALL_STATE(8718)] = 338001, - [SMALL_STATE(8719)] = 338037, - [SMALL_STATE(8720)] = 338067, - [SMALL_STATE(8721)] = 338089, - [SMALL_STATE(8722)] = 338109, - [SMALL_STATE(8723)] = 338129, - [SMALL_STATE(8724)] = 338149, - [SMALL_STATE(8725)] = 338173, - [SMALL_STATE(8726)] = 338203, - [SMALL_STATE(8727)] = 338223, - [SMALL_STATE(8728)] = 338249, - [SMALL_STATE(8729)] = 338271, - [SMALL_STATE(8730)] = 338297, - [SMALL_STATE(8731)] = 338317, - [SMALL_STATE(8732)] = 338343, - [SMALL_STATE(8733)] = 338369, - [SMALL_STATE(8734)] = 338389, - [SMALL_STATE(8735)] = 338419, - [SMALL_STATE(8736)] = 338448, - [SMALL_STATE(8737)] = 338471, - [SMALL_STATE(8738)] = 338488, - [SMALL_STATE(8739)] = 338523, - [SMALL_STATE(8740)] = 338546, - [SMALL_STATE(8741)] = 338571, - [SMALL_STATE(8742)] = 338596, - [SMALL_STATE(8743)] = 338613, - [SMALL_STATE(8744)] = 338636, - [SMALL_STATE(8745)] = 338671, - [SMALL_STATE(8746)] = 338706, - [SMALL_STATE(8747)] = 338731, - [SMALL_STATE(8748)] = 338762, - [SMALL_STATE(8749)] = 338791, - [SMALL_STATE(8750)] = 338816, - [SMALL_STATE(8751)] = 338841, - [SMALL_STATE(8752)] = 338876, - [SMALL_STATE(8753)] = 338899, - [SMALL_STATE(8754)] = 338924, - [SMALL_STATE(8755)] = 338949, - [SMALL_STATE(8756)] = 338980, - [SMALL_STATE(8757)] = 339009, - [SMALL_STATE(8758)] = 339038, - [SMALL_STATE(8759)] = 339061, - [SMALL_STATE(8760)] = 339092, - [SMALL_STATE(8761)] = 339127, - [SMALL_STATE(8762)] = 339158, - [SMALL_STATE(8763)] = 339187, - [SMALL_STATE(8764)] = 339204, - [SMALL_STATE(8765)] = 339235, - [SMALL_STATE(8766)] = 339254, - [SMALL_STATE(8767)] = 339281, - [SMALL_STATE(8768)] = 339308, - [SMALL_STATE(8769)] = 339335, - [SMALL_STATE(8770)] = 339362, - [SMALL_STATE(8771)] = 339385, - [SMALL_STATE(8772)] = 339408, - [SMALL_STATE(8773)] = 339427, - [SMALL_STATE(8774)] = 339446, - [SMALL_STATE(8775)] = 339469, - [SMALL_STATE(8776)] = 339488, - [SMALL_STATE(8777)] = 339515, - [SMALL_STATE(8778)] = 339550, - [SMALL_STATE(8779)] = 339579, - [SMALL_STATE(8780)] = 339608, - [SMALL_STATE(8781)] = 339631, - [SMALL_STATE(8782)] = 339660, - [SMALL_STATE(8783)] = 339687, - [SMALL_STATE(8784)] = 339722, - [SMALL_STATE(8785)] = 339749, - [SMALL_STATE(8786)] = 339776, - [SMALL_STATE(8787)] = 339799, - [SMALL_STATE(8788)] = 339818, - [SMALL_STATE(8789)] = 339837, - [SMALL_STATE(8790)] = 339856, - [SMALL_STATE(8791)] = 339873, - [SMALL_STATE(8792)] = 339900, - [SMALL_STATE(8793)] = 339927, - [SMALL_STATE(8794)] = 339950, - [SMALL_STATE(8795)] = 339981, - [SMALL_STATE(8796)] = 340006, - [SMALL_STATE(8797)] = 340033, - [SMALL_STATE(8798)] = 340060, - [SMALL_STATE(8799)] = 340083, - [SMALL_STATE(8800)] = 340110, - [SMALL_STATE(8801)] = 340143, - [SMALL_STATE(8802)] = 340178, - [SMALL_STATE(8803)] = 340213, - [SMALL_STATE(8804)] = 340248, - [SMALL_STATE(8805)] = 340275, - [SMALL_STATE(8806)] = 340302, - [SMALL_STATE(8807)] = 340337, - [SMALL_STATE(8808)] = 340372, - [SMALL_STATE(8809)] = 340395, - [SMALL_STATE(8810)] = 340418, - [SMALL_STATE(8811)] = 340435, - [SMALL_STATE(8812)] = 340466, - [SMALL_STATE(8813)] = 340495, - [SMALL_STATE(8814)] = 340522, - [SMALL_STATE(8815)] = 340557, - [SMALL_STATE(8816)] = 340588, - [SMALL_STATE(8817)] = 340613, - [SMALL_STATE(8818)] = 340636, - [SMALL_STATE(8819)] = 340659, - [SMALL_STATE(8820)] = 340694, - [SMALL_STATE(8821)] = 340718, - [SMALL_STATE(8822)] = 340740, - [SMALL_STATE(8823)] = 340756, - [SMALL_STATE(8824)] = 340780, - [SMALL_STATE(8825)] = 340802, - [SMALL_STATE(8826)] = 340826, - [SMALL_STATE(8827)] = 340848, - [SMALL_STATE(8828)] = 340870, - [SMALL_STATE(8829)] = 340892, - [SMALL_STATE(8830)] = 340922, - [SMALL_STATE(8831)] = 340944, - [SMALL_STATE(8832)] = 340970, - [SMALL_STATE(8833)] = 340996, - [SMALL_STATE(8834)] = 341022, - [SMALL_STATE(8835)] = 341046, - [SMALL_STATE(8836)] = 341070, - [SMALL_STATE(8837)] = 341094, - [SMALL_STATE(8838)] = 341118, - [SMALL_STATE(8839)] = 341142, - [SMALL_STATE(8840)] = 341168, - [SMALL_STATE(8841)] = 341190, - [SMALL_STATE(8842)] = 341212, - [SMALL_STATE(8843)] = 341244, - [SMALL_STATE(8844)] = 341266, - [SMALL_STATE(8845)] = 341290, - [SMALL_STATE(8846)] = 341312, - [SMALL_STATE(8847)] = 341342, - [SMALL_STATE(8848)] = 341370, - [SMALL_STATE(8849)] = 341392, - [SMALL_STATE(8850)] = 341414, - [SMALL_STATE(8851)] = 341438, - [SMALL_STATE(8852)] = 341462, - [SMALL_STATE(8853)] = 341486, - [SMALL_STATE(8854)] = 341510, - [SMALL_STATE(8855)] = 341534, - [SMALL_STATE(8856)] = 341558, - [SMALL_STATE(8857)] = 341575, - [SMALL_STATE(8858)] = 341606, - [SMALL_STATE(8859)] = 341637, - [SMALL_STATE(8860)] = 341660, - [SMALL_STATE(8861)] = 341691, - [SMALL_STATE(8862)] = 341714, - [SMALL_STATE(8863)] = 341735, - [SMALL_STATE(8864)] = 341764, - [SMALL_STATE(8865)] = 341785, - [SMALL_STATE(8866)] = 341816, - [SMALL_STATE(8867)] = 341847, - [SMALL_STATE(8868)] = 341876, - [SMALL_STATE(8869)] = 341899, - [SMALL_STATE(8870)] = 341930, - [SMALL_STATE(8871)] = 341951, - [SMALL_STATE(8872)] = 341974, - [SMALL_STATE(8873)] = 341995, - [SMALL_STATE(8874)] = 342012, - [SMALL_STATE(8875)] = 342043, - [SMALL_STATE(8876)] = 342066, - [SMALL_STATE(8877)] = 342089, - [SMALL_STATE(8878)] = 342112, - [SMALL_STATE(8879)] = 342143, - [SMALL_STATE(8880)] = 342166, - [SMALL_STATE(8881)] = 342194, - [SMALL_STATE(8882)] = 342218, - [SMALL_STATE(8883)] = 342244, - [SMALL_STATE(8884)] = 342270, - [SMALL_STATE(8885)] = 342296, - [SMALL_STATE(8886)] = 342322, - [SMALL_STATE(8887)] = 342348, - [SMALL_STATE(8888)] = 342374, - [SMALL_STATE(8889)] = 342402, - [SMALL_STATE(8890)] = 342426, - [SMALL_STATE(8891)] = 342454, - [SMALL_STATE(8892)] = 342476, - [SMALL_STATE(8893)] = 342502, - [SMALL_STATE(8894)] = 342528, - [SMALL_STATE(8895)] = 342554, - [SMALL_STATE(8896)] = 342580, - [SMALL_STATE(8897)] = 342608, - [SMALL_STATE(8898)] = 342632, - [SMALL_STATE(8899)] = 342660, - [SMALL_STATE(8900)] = 342688, - [SMALL_STATE(8901)] = 342714, - [SMALL_STATE(8902)] = 342740, - [SMALL_STATE(8903)] = 342766, - [SMALL_STATE(8904)] = 342790, - [SMALL_STATE(8905)] = 342816, - [SMALL_STATE(8906)] = 342834, - [SMALL_STATE(8907)] = 342862, - [SMALL_STATE(8908)] = 342884, - [SMALL_STATE(8909)] = 342910, - [SMALL_STATE(8910)] = 342936, - [SMALL_STATE(8911)] = 342962, - [SMALL_STATE(8912)] = 342986, - [SMALL_STATE(8913)] = 343008, - [SMALL_STATE(8914)] = 343034, - [SMALL_STATE(8915)] = 343060, - [SMALL_STATE(8916)] = 343082, - [SMALL_STATE(8917)] = 343108, - [SMALL_STATE(8918)] = 343134, - [SMALL_STATE(8919)] = 343162, - [SMALL_STATE(8920)] = 343190, - [SMALL_STATE(8921)] = 343216, - [SMALL_STATE(8922)] = 343236, - [SMALL_STATE(8923)] = 343262, - [SMALL_STATE(8924)] = 343286, - [SMALL_STATE(8925)] = 343308, - [SMALL_STATE(8926)] = 343334, - [SMALL_STATE(8927)] = 343356, - [SMALL_STATE(8928)] = 343376, - [SMALL_STATE(8929)] = 343402, - [SMALL_STATE(8930)] = 343430, - [SMALL_STATE(8931)] = 343456, - [SMALL_STATE(8932)] = 343480, - [SMALL_STATE(8933)] = 343506, - [SMALL_STATE(8934)] = 343532, - [SMALL_STATE(8935)] = 343558, - [SMALL_STATE(8936)] = 343584, - [SMALL_STATE(8937)] = 343610, - [SMALL_STATE(8938)] = 343636, - [SMALL_STATE(8939)] = 343662, - [SMALL_STATE(8940)] = 343688, - [SMALL_STATE(8941)] = 343714, - [SMALL_STATE(8942)] = 343740, - [SMALL_STATE(8943)] = 343764, - [SMALL_STATE(8944)] = 343790, - [SMALL_STATE(8945)] = 343816, - [SMALL_STATE(8946)] = 343836, - [SMALL_STATE(8947)] = 343856, - [SMALL_STATE(8948)] = 343884, - [SMALL_STATE(8949)] = 343910, - [SMALL_STATE(8950)] = 343938, - [SMALL_STATE(8951)] = 343964, - [SMALL_STATE(8952)] = 343990, - [SMALL_STATE(8953)] = 344016, - [SMALL_STATE(8954)] = 344042, - [SMALL_STATE(8955)] = 344059, - [SMALL_STATE(8956)] = 344082, - [SMALL_STATE(8957)] = 344099, - [SMALL_STATE(8958)] = 344122, - [SMALL_STATE(8959)] = 344145, - [SMALL_STATE(8960)] = 344170, - [SMALL_STATE(8961)] = 344193, - [SMALL_STATE(8962)] = 344210, - [SMALL_STATE(8963)] = 344235, - [SMALL_STATE(8964)] = 344256, - [SMALL_STATE(8965)] = 344277, - [SMALL_STATE(8966)] = 344302, - [SMALL_STATE(8967)] = 344327, - [SMALL_STATE(8968)] = 344348, - [SMALL_STATE(8969)] = 344369, - [SMALL_STATE(8970)] = 344394, - [SMALL_STATE(8971)] = 344415, - [SMALL_STATE(8972)] = 344434, - [SMALL_STATE(8973)] = 344455, - [SMALL_STATE(8974)] = 344480, - [SMALL_STATE(8975)] = 344503, - [SMALL_STATE(8976)] = 344526, - [SMALL_STATE(8977)] = 344547, - [SMALL_STATE(8978)] = 344564, - [SMALL_STATE(8979)] = 344587, - [SMALL_STATE(8980)] = 344604, - [SMALL_STATE(8981)] = 344625, - [SMALL_STATE(8982)] = 344648, - [SMALL_STATE(8983)] = 344669, - [SMALL_STATE(8984)] = 344694, - [SMALL_STATE(8985)] = 344713, - [SMALL_STATE(8986)] = 344732, - [SMALL_STATE(8987)] = 344749, - [SMALL_STATE(8988)] = 344770, - [SMALL_STATE(8989)] = 344793, - [SMALL_STATE(8990)] = 344816, - [SMALL_STATE(8991)] = 344841, - [SMALL_STATE(8992)] = 344858, - [SMALL_STATE(8993)] = 344879, - [SMALL_STATE(8994)] = 344896, - [SMALL_STATE(8995)] = 344919, - [SMALL_STATE(8996)] = 344940, - [SMALL_STATE(8997)] = 344963, - [SMALL_STATE(8998)] = 344984, - [SMALL_STATE(8999)] = 345007, - [SMALL_STATE(9000)] = 345028, - [SMALL_STATE(9001)] = 345045, - [SMALL_STATE(9002)] = 345068, - [SMALL_STATE(9003)] = 345091, - [SMALL_STATE(9004)] = 345114, - [SMALL_STATE(9005)] = 345139, - [SMALL_STATE(9006)] = 345164, - [SMALL_STATE(9007)] = 345181, - [SMALL_STATE(9008)] = 345198, - [SMALL_STATE(9009)] = 345215, - [SMALL_STATE(9010)] = 345232, - [SMALL_STATE(9011)] = 345249, - [SMALL_STATE(9012)] = 345266, - [SMALL_STATE(9013)] = 345283, - [SMALL_STATE(9014)] = 345300, - [SMALL_STATE(9015)] = 345325, - [SMALL_STATE(9016)] = 345342, - [SMALL_STATE(9017)] = 345359, - [SMALL_STATE(9018)] = 345376, - [SMALL_STATE(9019)] = 345393, - [SMALL_STATE(9020)] = 345410, - [SMALL_STATE(9021)] = 345435, - [SMALL_STATE(9022)] = 345456, - [SMALL_STATE(9023)] = 345481, - [SMALL_STATE(9024)] = 345504, - [SMALL_STATE(9025)] = 345527, - [SMALL_STATE(9026)] = 345546, - [SMALL_STATE(9027)] = 345569, - [SMALL_STATE(9028)] = 345590, - [SMALL_STATE(9029)] = 345615, - [SMALL_STATE(9030)] = 345640, - [SMALL_STATE(9031)] = 345659, - [SMALL_STATE(9032)] = 345680, - [SMALL_STATE(9033)] = 345697, - [SMALL_STATE(9034)] = 345722, - [SMALL_STATE(9035)] = 345745, - [SMALL_STATE(9036)] = 345759, - [SMALL_STATE(9037)] = 345779, - [SMALL_STATE(9038)] = 345801, - [SMALL_STATE(9039)] = 345823, - [SMALL_STATE(9040)] = 345845, - [SMALL_STATE(9041)] = 345867, - [SMALL_STATE(9042)] = 345889, - [SMALL_STATE(9043)] = 345909, - [SMALL_STATE(9044)] = 345931, - [SMALL_STATE(9045)] = 345945, - [SMALL_STATE(9046)] = 345965, - [SMALL_STATE(9047)] = 345985, - [SMALL_STATE(9048)] = 345999, - [SMALL_STATE(9049)] = 346019, - [SMALL_STATE(9050)] = 346039, - [SMALL_STATE(9051)] = 346059, - [SMALL_STATE(9052)] = 346079, - [SMALL_STATE(9053)] = 346093, - [SMALL_STATE(9054)] = 346115, - [SMALL_STATE(9055)] = 346137, - [SMALL_STATE(9056)] = 346151, - [SMALL_STATE(9057)] = 346173, - [SMALL_STATE(9058)] = 346193, - [SMALL_STATE(9059)] = 346215, - [SMALL_STATE(9060)] = 346235, - [SMALL_STATE(9061)] = 346255, - [SMALL_STATE(9062)] = 346273, - [SMALL_STATE(9063)] = 346293, - [SMALL_STATE(9064)] = 346311, - [SMALL_STATE(9065)] = 346331, - [SMALL_STATE(9066)] = 346353, - [SMALL_STATE(9067)] = 346375, - [SMALL_STATE(9068)] = 346397, - [SMALL_STATE(9069)] = 346419, - [SMALL_STATE(9070)] = 346441, - [SMALL_STATE(9071)] = 346455, - [SMALL_STATE(9072)] = 346477, - [SMALL_STATE(9073)] = 346497, - [SMALL_STATE(9074)] = 346511, - [SMALL_STATE(9075)] = 346531, - [SMALL_STATE(9076)] = 346551, - [SMALL_STATE(9077)] = 346571, - [SMALL_STATE(9078)] = 346585, - [SMALL_STATE(9079)] = 346607, - [SMALL_STATE(9080)] = 346629, - [SMALL_STATE(9081)] = 346651, - [SMALL_STATE(9082)] = 346665, - [SMALL_STATE(9083)] = 346687, - [SMALL_STATE(9084)] = 346709, - [SMALL_STATE(9085)] = 346731, - [SMALL_STATE(9086)] = 346753, - [SMALL_STATE(9087)] = 346775, - [SMALL_STATE(9088)] = 346797, - [SMALL_STATE(9089)] = 346811, - [SMALL_STATE(9090)] = 346833, - [SMALL_STATE(9091)] = 346855, - [SMALL_STATE(9092)] = 346869, - [SMALL_STATE(9093)] = 346891, - [SMALL_STATE(9094)] = 346913, - [SMALL_STATE(9095)] = 346933, - [SMALL_STATE(9096)] = 346955, - [SMALL_STATE(9097)] = 346969, - [SMALL_STATE(9098)] = 346991, - [SMALL_STATE(9099)] = 347013, - [SMALL_STATE(9100)] = 347035, - [SMALL_STATE(9101)] = 347057, - [SMALL_STATE(9102)] = 347077, - [SMALL_STATE(9103)] = 347099, - [SMALL_STATE(9104)] = 347113, - [SMALL_STATE(9105)] = 347127, - [SMALL_STATE(9106)] = 347147, - [SMALL_STATE(9107)] = 347169, - [SMALL_STATE(9108)] = 347191, - [SMALL_STATE(9109)] = 347213, - [SMALL_STATE(9110)] = 347235, - [SMALL_STATE(9111)] = 347255, - [SMALL_STATE(9112)] = 347277, - [SMALL_STATE(9113)] = 347299, - [SMALL_STATE(9114)] = 347321, - [SMALL_STATE(9115)] = 347343, - [SMALL_STATE(9116)] = 347363, - [SMALL_STATE(9117)] = 347385, - [SMALL_STATE(9118)] = 347407, - [SMALL_STATE(9119)] = 347427, - [SMALL_STATE(9120)] = 347449, - [SMALL_STATE(9121)] = 347471, - [SMALL_STATE(9122)] = 347493, - [SMALL_STATE(9123)] = 347515, - [SMALL_STATE(9124)] = 347537, - [SMALL_STATE(9125)] = 347555, - [SMALL_STATE(9126)] = 347577, - [SMALL_STATE(9127)] = 347591, - [SMALL_STATE(9128)] = 347613, - [SMALL_STATE(9129)] = 347635, - [SMALL_STATE(9130)] = 347653, - [SMALL_STATE(9131)] = 347675, - [SMALL_STATE(9132)] = 347695, - [SMALL_STATE(9133)] = 347717, - [SMALL_STATE(9134)] = 347737, - [SMALL_STATE(9135)] = 347759, - [SMALL_STATE(9136)] = 347781, - [SMALL_STATE(9137)] = 347803, - [SMALL_STATE(9138)] = 347823, - [SMALL_STATE(9139)] = 347845, - [SMALL_STATE(9140)] = 347865, - [SMALL_STATE(9141)] = 347885, - [SMALL_STATE(9142)] = 347907, - [SMALL_STATE(9143)] = 347927, - [SMALL_STATE(9144)] = 347949, - [SMALL_STATE(9145)] = 347971, - [SMALL_STATE(9146)] = 347988, - [SMALL_STATE(9147)] = 348007, - [SMALL_STATE(9148)] = 348024, - [SMALL_STATE(9149)] = 348041, - [SMALL_STATE(9150)] = 348060, - [SMALL_STATE(9151)] = 348079, - [SMALL_STATE(9152)] = 348098, - [SMALL_STATE(9153)] = 348117, - [SMALL_STATE(9154)] = 348134, - [SMALL_STATE(9155)] = 348149, - [SMALL_STATE(9156)] = 348164, - [SMALL_STATE(9157)] = 348181, - [SMALL_STATE(9158)] = 348200, - [SMALL_STATE(9159)] = 348219, - [SMALL_STATE(9160)] = 348238, - [SMALL_STATE(9161)] = 348255, - [SMALL_STATE(9162)] = 348274, - [SMALL_STATE(9163)] = 348291, - [SMALL_STATE(9164)] = 348310, - [SMALL_STATE(9165)] = 348327, - [SMALL_STATE(9166)] = 348340, - [SMALL_STATE(9167)] = 348359, - [SMALL_STATE(9168)] = 348376, - [SMALL_STATE(9169)] = 348393, - [SMALL_STATE(9170)] = 348410, - [SMALL_STATE(9171)] = 348427, - [SMALL_STATE(9172)] = 348444, - [SMALL_STATE(9173)] = 348463, - [SMALL_STATE(9174)] = 348482, - [SMALL_STATE(9175)] = 348501, - [SMALL_STATE(9176)] = 348520, - [SMALL_STATE(9177)] = 348539, - [SMALL_STATE(9178)] = 348556, - [SMALL_STATE(9179)] = 348575, - [SMALL_STATE(9180)] = 348594, - [SMALL_STATE(9181)] = 348613, - [SMALL_STATE(9182)] = 348632, - [SMALL_STATE(9183)] = 348651, - [SMALL_STATE(9184)] = 348670, - [SMALL_STATE(9185)] = 348687, - [SMALL_STATE(9186)] = 348702, - [SMALL_STATE(9187)] = 348721, - [SMALL_STATE(9188)] = 348740, - [SMALL_STATE(9189)] = 348759, - [SMALL_STATE(9190)] = 348776, - [SMALL_STATE(9191)] = 348793, - [SMALL_STATE(9192)] = 348804, - [SMALL_STATE(9193)] = 348823, - [SMALL_STATE(9194)] = 348842, - [SMALL_STATE(9195)] = 348861, - [SMALL_STATE(9196)] = 348880, - [SMALL_STATE(9197)] = 348899, - [SMALL_STATE(9198)] = 348918, - [SMALL_STATE(9199)] = 348937, - [SMALL_STATE(9200)] = 348956, - [SMALL_STATE(9201)] = 348975, - [SMALL_STATE(9202)] = 348992, - [SMALL_STATE(9203)] = 349011, - [SMALL_STATE(9204)] = 349030, - [SMALL_STATE(9205)] = 349049, - [SMALL_STATE(9206)] = 349068, - [SMALL_STATE(9207)] = 349085, - [SMALL_STATE(9208)] = 349104, - [SMALL_STATE(9209)] = 349121, - [SMALL_STATE(9210)] = 349140, - [SMALL_STATE(9211)] = 349159, - [SMALL_STATE(9212)] = 349178, - [SMALL_STATE(9213)] = 349197, - [SMALL_STATE(9214)] = 349214, - [SMALL_STATE(9215)] = 349231, - [SMALL_STATE(9216)] = 349248, - [SMALL_STATE(9217)] = 349265, - [SMALL_STATE(9218)] = 349282, - [SMALL_STATE(9219)] = 349299, - [SMALL_STATE(9220)] = 349316, - [SMALL_STATE(9221)] = 349335, - [SMALL_STATE(9222)] = 349352, - [SMALL_STATE(9223)] = 349369, - [SMALL_STATE(9224)] = 349386, - [SMALL_STATE(9225)] = 349403, - [SMALL_STATE(9226)] = 349420, - [SMALL_STATE(9227)] = 349437, - [SMALL_STATE(9228)] = 349454, - [SMALL_STATE(9229)] = 349473, - [SMALL_STATE(9230)] = 349490, - [SMALL_STATE(9231)] = 349507, - [SMALL_STATE(9232)] = 349524, - [SMALL_STATE(9233)] = 349541, - [SMALL_STATE(9234)] = 349560, - [SMALL_STATE(9235)] = 349579, - [SMALL_STATE(9236)] = 349598, - [SMALL_STATE(9237)] = 349617, - [SMALL_STATE(9238)] = 349636, - [SMALL_STATE(9239)] = 349653, - [SMALL_STATE(9240)] = 349672, - [SMALL_STATE(9241)] = 349691, - [SMALL_STATE(9242)] = 349708, - [SMALL_STATE(9243)] = 349725, - [SMALL_STATE(9244)] = 349742, - [SMALL_STATE(9245)] = 349759, - [SMALL_STATE(9246)] = 349778, - [SMALL_STATE(9247)] = 349795, - [SMALL_STATE(9248)] = 349814, - [SMALL_STATE(9249)] = 349833, - [SMALL_STATE(9250)] = 349848, - [SMALL_STATE(9251)] = 349867, - [SMALL_STATE(9252)] = 349884, - [SMALL_STATE(9253)] = 349901, - [SMALL_STATE(9254)] = 349918, - [SMALL_STATE(9255)] = 349937, - [SMALL_STATE(9256)] = 349954, - [SMALL_STATE(9257)] = 349973, - [SMALL_STATE(9258)] = 349986, - [SMALL_STATE(9259)] = 350001, - [SMALL_STATE(9260)] = 350018, - [SMALL_STATE(9261)] = 350037, - [SMALL_STATE(9262)] = 350056, - [SMALL_STATE(9263)] = 350075, - [SMALL_STATE(9264)] = 350094, - [SMALL_STATE(9265)] = 350113, - [SMALL_STATE(9266)] = 350130, - [SMALL_STATE(9267)] = 350149, - [SMALL_STATE(9268)] = 350168, - [SMALL_STATE(9269)] = 350185, - [SMALL_STATE(9270)] = 350202, - [SMALL_STATE(9271)] = 350221, - [SMALL_STATE(9272)] = 350240, - [SMALL_STATE(9273)] = 350259, - [SMALL_STATE(9274)] = 350276, - [SMALL_STATE(9275)] = 350289, - [SMALL_STATE(9276)] = 350308, - [SMALL_STATE(9277)] = 350325, - [SMALL_STATE(9278)] = 350344, - [SMALL_STATE(9279)] = 350361, - [SMALL_STATE(9280)] = 350378, - [SMALL_STATE(9281)] = 350397, - [SMALL_STATE(9282)] = 350416, - [SMALL_STATE(9283)] = 350435, - [SMALL_STATE(9284)] = 350454, - [SMALL_STATE(9285)] = 350471, - [SMALL_STATE(9286)] = 350490, - [SMALL_STATE(9287)] = 350507, - [SMALL_STATE(9288)] = 350524, - [SMALL_STATE(9289)] = 350540, - [SMALL_STATE(9290)] = 350556, - [SMALL_STATE(9291)] = 350570, - [SMALL_STATE(9292)] = 350586, - [SMALL_STATE(9293)] = 350600, - [SMALL_STATE(9294)] = 350616, - [SMALL_STATE(9295)] = 350632, - [SMALL_STATE(9296)] = 350648, - [SMALL_STATE(9297)] = 350664, - [SMALL_STATE(9298)] = 350678, - [SMALL_STATE(9299)] = 350694, - [SMALL_STATE(9300)] = 350710, - [SMALL_STATE(9301)] = 350726, - [SMALL_STATE(9302)] = 350742, - [SMALL_STATE(9303)] = 350758, - [SMALL_STATE(9304)] = 350774, - [SMALL_STATE(9305)] = 350790, - [SMALL_STATE(9306)] = 350806, - [SMALL_STATE(9307)] = 350822, - [SMALL_STATE(9308)] = 350838, - [SMALL_STATE(9309)] = 350852, - [SMALL_STATE(9310)] = 350868, - [SMALL_STATE(9311)] = 350884, - [SMALL_STATE(9312)] = 350900, - [SMALL_STATE(9313)] = 350916, - [SMALL_STATE(9314)] = 350932, - [SMALL_STATE(9315)] = 350946, - [SMALL_STATE(9316)] = 350962, - [SMALL_STATE(9317)] = 350978, - [SMALL_STATE(9318)] = 350994, - [SMALL_STATE(9319)] = 351010, - [SMALL_STATE(9320)] = 351026, - [SMALL_STATE(9321)] = 351040, - [SMALL_STATE(9322)] = 351056, - [SMALL_STATE(9323)] = 351072, - [SMALL_STATE(9324)] = 351088, - [SMALL_STATE(9325)] = 351104, - [SMALL_STATE(9326)] = 351120, - [SMALL_STATE(9327)] = 351136, - [SMALL_STATE(9328)] = 351150, - [SMALL_STATE(9329)] = 351166, - [SMALL_STATE(9330)] = 351180, - [SMALL_STATE(9331)] = 351196, - [SMALL_STATE(9332)] = 351212, - [SMALL_STATE(9333)] = 351228, - [SMALL_STATE(9334)] = 351244, - [SMALL_STATE(9335)] = 351258, - [SMALL_STATE(9336)] = 351274, - [SMALL_STATE(9337)] = 351290, - [SMALL_STATE(9338)] = 351306, - [SMALL_STATE(9339)] = 351320, - [SMALL_STATE(9340)] = 351334, - [SMALL_STATE(9341)] = 351348, - [SMALL_STATE(9342)] = 351364, - [SMALL_STATE(9343)] = 351378, - [SMALL_STATE(9344)] = 351394, - [SMALL_STATE(9345)] = 351410, - [SMALL_STATE(9346)] = 351426, - [SMALL_STATE(9347)] = 351442, - [SMALL_STATE(9348)] = 351458, - [SMALL_STATE(9349)] = 351474, - [SMALL_STATE(9350)] = 351490, - [SMALL_STATE(9351)] = 351506, - [SMALL_STATE(9352)] = 351522, - [SMALL_STATE(9353)] = 351538, - [SMALL_STATE(9354)] = 351554, - [SMALL_STATE(9355)] = 351568, - [SMALL_STATE(9356)] = 351584, - [SMALL_STATE(9357)] = 351600, - [SMALL_STATE(9358)] = 351616, - [SMALL_STATE(9359)] = 351630, - [SMALL_STATE(9360)] = 351646, - [SMALL_STATE(9361)] = 351662, - [SMALL_STATE(9362)] = 351676, - [SMALL_STATE(9363)] = 351688, - [SMALL_STATE(9364)] = 351704, - [SMALL_STATE(9365)] = 351718, - [SMALL_STATE(9366)] = 351734, - [SMALL_STATE(9367)] = 351750, - [SMALL_STATE(9368)] = 351766, - [SMALL_STATE(9369)] = 351782, - [SMALL_STATE(9370)] = 351798, - [SMALL_STATE(9371)] = 351814, - [SMALL_STATE(9372)] = 351828, - [SMALL_STATE(9373)] = 351844, - [SMALL_STATE(9374)] = 351860, - [SMALL_STATE(9375)] = 351876, - [SMALL_STATE(9376)] = 351886, - [SMALL_STATE(9377)] = 351902, - [SMALL_STATE(9378)] = 351918, - [SMALL_STATE(9379)] = 351934, - [SMALL_STATE(9380)] = 351950, - [SMALL_STATE(9381)] = 351966, - [SMALL_STATE(9382)] = 351980, - [SMALL_STATE(9383)] = 351996, - [SMALL_STATE(9384)] = 352012, - [SMALL_STATE(9385)] = 352028, - [SMALL_STATE(9386)] = 352044, - [SMALL_STATE(9387)] = 352060, - [SMALL_STATE(9388)] = 352076, - [SMALL_STATE(9389)] = 352090, - [SMALL_STATE(9390)] = 352106, - [SMALL_STATE(9391)] = 352120, - [SMALL_STATE(9392)] = 352134, - [SMALL_STATE(9393)] = 352148, - [SMALL_STATE(9394)] = 352164, - [SMALL_STATE(9395)] = 352180, - [SMALL_STATE(9396)] = 352196, - [SMALL_STATE(9397)] = 352212, - [SMALL_STATE(9398)] = 352228, - [SMALL_STATE(9399)] = 352242, - [SMALL_STATE(9400)] = 352258, - [SMALL_STATE(9401)] = 352272, - [SMALL_STATE(9402)] = 352286, - [SMALL_STATE(9403)] = 352300, - [SMALL_STATE(9404)] = 352316, - [SMALL_STATE(9405)] = 352332, - [SMALL_STATE(9406)] = 352348, - [SMALL_STATE(9407)] = 352360, - [SMALL_STATE(9408)] = 352374, - [SMALL_STATE(9409)] = 352388, - [SMALL_STATE(9410)] = 352404, - [SMALL_STATE(9411)] = 352420, - [SMALL_STATE(9412)] = 352436, - [SMALL_STATE(9413)] = 352450, - [SMALL_STATE(9414)] = 352466, - [SMALL_STATE(9415)] = 352480, - [SMALL_STATE(9416)] = 352494, - [SMALL_STATE(9417)] = 352510, - [SMALL_STATE(9418)] = 352526, - [SMALL_STATE(9419)] = 352538, - [SMALL_STATE(9420)] = 352554, - [SMALL_STATE(9421)] = 352568, - [SMALL_STATE(9422)] = 352582, - [SMALL_STATE(9423)] = 352592, - [SMALL_STATE(9424)] = 352606, - [SMALL_STATE(9425)] = 352622, - [SMALL_STATE(9426)] = 352638, - [SMALL_STATE(9427)] = 352652, - [SMALL_STATE(9428)] = 352666, - [SMALL_STATE(9429)] = 352682, - [SMALL_STATE(9430)] = 352698, - [SMALL_STATE(9431)] = 352712, - [SMALL_STATE(9432)] = 352728, - [SMALL_STATE(9433)] = 352744, - [SMALL_STATE(9434)] = 352760, - [SMALL_STATE(9435)] = 352776, - [SMALL_STATE(9436)] = 352790, - [SMALL_STATE(9437)] = 352806, - [SMALL_STATE(9438)] = 352822, - [SMALL_STATE(9439)] = 352836, - [SMALL_STATE(9440)] = 352852, - [SMALL_STATE(9441)] = 352868, - [SMALL_STATE(9442)] = 352884, - [SMALL_STATE(9443)] = 352900, - [SMALL_STATE(9444)] = 352916, - [SMALL_STATE(9445)] = 352930, - [SMALL_STATE(9446)] = 352944, - [SMALL_STATE(9447)] = 352958, - [SMALL_STATE(9448)] = 352974, - [SMALL_STATE(9449)] = 352990, - [SMALL_STATE(9450)] = 353006, - [SMALL_STATE(9451)] = 353022, - [SMALL_STATE(9452)] = 353038, - [SMALL_STATE(9453)] = 353052, - [SMALL_STATE(9454)] = 353068, - [SMALL_STATE(9455)] = 353084, - [SMALL_STATE(9456)] = 353100, - [SMALL_STATE(9457)] = 353116, - [SMALL_STATE(9458)] = 353132, - [SMALL_STATE(9459)] = 353146, - [SMALL_STATE(9460)] = 353162, - [SMALL_STATE(9461)] = 353178, - [SMALL_STATE(9462)] = 353194, - [SMALL_STATE(9463)] = 353210, - [SMALL_STATE(9464)] = 353226, - [SMALL_STATE(9465)] = 353242, - [SMALL_STATE(9466)] = 353258, - [SMALL_STATE(9467)] = 353274, - [SMALL_STATE(9468)] = 353290, - [SMALL_STATE(9469)] = 353306, - [SMALL_STATE(9470)] = 353320, - [SMALL_STATE(9471)] = 353336, - [SMALL_STATE(9472)] = 353350, - [SMALL_STATE(9473)] = 353366, - [SMALL_STATE(9474)] = 353382, - [SMALL_STATE(9475)] = 353398, - [SMALL_STATE(9476)] = 353414, - [SMALL_STATE(9477)] = 353430, - [SMALL_STATE(9478)] = 353446, - [SMALL_STATE(9479)] = 353462, - [SMALL_STATE(9480)] = 353478, - [SMALL_STATE(9481)] = 353492, - [SMALL_STATE(9482)] = 353506, - [SMALL_STATE(9483)] = 353522, - [SMALL_STATE(9484)] = 353538, - [SMALL_STATE(9485)] = 353554, - [SMALL_STATE(9486)] = 353568, - [SMALL_STATE(9487)] = 353584, - [SMALL_STATE(9488)] = 353600, - [SMALL_STATE(9489)] = 353612, - [SMALL_STATE(9490)] = 353628, - [SMALL_STATE(9491)] = 353644, - [SMALL_STATE(9492)] = 353658, - [SMALL_STATE(9493)] = 353674, - [SMALL_STATE(9494)] = 353690, - [SMALL_STATE(9495)] = 353706, - [SMALL_STATE(9496)] = 353722, - [SMALL_STATE(9497)] = 353736, - [SMALL_STATE(9498)] = 353750, - [SMALL_STATE(9499)] = 353766, - [SMALL_STATE(9500)] = 353782, - [SMALL_STATE(9501)] = 353798, - [SMALL_STATE(9502)] = 353814, - [SMALL_STATE(9503)] = 353828, - [SMALL_STATE(9504)] = 353842, - [SMALL_STATE(9505)] = 353858, - [SMALL_STATE(9506)] = 353874, - [SMALL_STATE(9507)] = 353890, - [SMALL_STATE(9508)] = 353906, - [SMALL_STATE(9509)] = 353922, - [SMALL_STATE(9510)] = 353936, - [SMALL_STATE(9511)] = 353952, - [SMALL_STATE(9512)] = 353966, - [SMALL_STATE(9513)] = 353982, - [SMALL_STATE(9514)] = 353998, - [SMALL_STATE(9515)] = 354014, - [SMALL_STATE(9516)] = 354028, - [SMALL_STATE(9517)] = 354038, - [SMALL_STATE(9518)] = 354054, - [SMALL_STATE(9519)] = 354070, - [SMALL_STATE(9520)] = 354086, - [SMALL_STATE(9521)] = 354102, - [SMALL_STATE(9522)] = 354118, - [SMALL_STATE(9523)] = 354134, - [SMALL_STATE(9524)] = 354150, - [SMALL_STATE(9525)] = 354166, - [SMALL_STATE(9526)] = 354182, - [SMALL_STATE(9527)] = 354198, - [SMALL_STATE(9528)] = 354214, - [SMALL_STATE(9529)] = 354227, - [SMALL_STATE(9530)] = 354240, - [SMALL_STATE(9531)] = 354253, - [SMALL_STATE(9532)] = 354266, - [SMALL_STATE(9533)] = 354279, - [SMALL_STATE(9534)] = 354292, - [SMALL_STATE(9535)] = 354305, - [SMALL_STATE(9536)] = 354318, - [SMALL_STATE(9537)] = 354331, - [SMALL_STATE(9538)] = 354344, - [SMALL_STATE(9539)] = 354357, - [SMALL_STATE(9540)] = 354370, - [SMALL_STATE(9541)] = 354383, - [SMALL_STATE(9542)] = 354396, - [SMALL_STATE(9543)] = 354409, - [SMALL_STATE(9544)] = 354422, - [SMALL_STATE(9545)] = 354435, - [SMALL_STATE(9546)] = 354448, - [SMALL_STATE(9547)] = 354461, - [SMALL_STATE(9548)] = 354474, - [SMALL_STATE(9549)] = 354487, - [SMALL_STATE(9550)] = 354498, - [SMALL_STATE(9551)] = 354511, - [SMALL_STATE(9552)] = 354522, - [SMALL_STATE(9553)] = 354535, - [SMALL_STATE(9554)] = 354548, - [SMALL_STATE(9555)] = 354561, - [SMALL_STATE(9556)] = 354574, - [SMALL_STATE(9557)] = 354587, - [SMALL_STATE(9558)] = 354600, - [SMALL_STATE(9559)] = 354613, - [SMALL_STATE(9560)] = 354626, - [SMALL_STATE(9561)] = 354639, - [SMALL_STATE(9562)] = 354652, - [SMALL_STATE(9563)] = 354665, - [SMALL_STATE(9564)] = 354678, - [SMALL_STATE(9565)] = 354691, - [SMALL_STATE(9566)] = 354704, - [SMALL_STATE(9567)] = 354717, - [SMALL_STATE(9568)] = 354730, - [SMALL_STATE(9569)] = 354743, - [SMALL_STATE(9570)] = 354756, - [SMALL_STATE(9571)] = 354769, - [SMALL_STATE(9572)] = 354782, - [SMALL_STATE(9573)] = 354795, - [SMALL_STATE(9574)] = 354806, - [SMALL_STATE(9575)] = 354817, - [SMALL_STATE(9576)] = 354830, - [SMALL_STATE(9577)] = 354843, - [SMALL_STATE(9578)] = 354856, - [SMALL_STATE(9579)] = 354869, - [SMALL_STATE(9580)] = 354882, - [SMALL_STATE(9581)] = 354895, - [SMALL_STATE(9582)] = 354908, - [SMALL_STATE(9583)] = 354921, - [SMALL_STATE(9584)] = 354934, - [SMALL_STATE(9585)] = 354947, - [SMALL_STATE(9586)] = 354960, - [SMALL_STATE(9587)] = 354973, - [SMALL_STATE(9588)] = 354986, - [SMALL_STATE(9589)] = 354999, - [SMALL_STATE(9590)] = 355012, - [SMALL_STATE(9591)] = 355025, - [SMALL_STATE(9592)] = 355038, - [SMALL_STATE(9593)] = 355051, - [SMALL_STATE(9594)] = 355064, - [SMALL_STATE(9595)] = 355077, - [SMALL_STATE(9596)] = 355090, - [SMALL_STATE(9597)] = 355103, - [SMALL_STATE(9598)] = 355116, - [SMALL_STATE(9599)] = 355129, - [SMALL_STATE(9600)] = 355142, - [SMALL_STATE(9601)] = 355155, - [SMALL_STATE(9602)] = 355168, - [SMALL_STATE(9603)] = 355181, - [SMALL_STATE(9604)] = 355194, - [SMALL_STATE(9605)] = 355207, - [SMALL_STATE(9606)] = 355220, - [SMALL_STATE(9607)] = 355233, - [SMALL_STATE(9608)] = 355246, - [SMALL_STATE(9609)] = 355259, - [SMALL_STATE(9610)] = 355268, - [SMALL_STATE(9611)] = 355281, - [SMALL_STATE(9612)] = 355294, - [SMALL_STATE(9613)] = 355307, - [SMALL_STATE(9614)] = 355320, - [SMALL_STATE(9615)] = 355329, - [SMALL_STATE(9616)] = 355342, - [SMALL_STATE(9617)] = 355355, - [SMALL_STATE(9618)] = 355368, - [SMALL_STATE(9619)] = 355381, - [SMALL_STATE(9620)] = 355394, - [SMALL_STATE(9621)] = 355407, - [SMALL_STATE(9622)] = 355420, - [SMALL_STATE(9623)] = 355433, - [SMALL_STATE(9624)] = 355446, - [SMALL_STATE(9625)] = 355459, - [SMALL_STATE(9626)] = 355470, - [SMALL_STATE(9627)] = 355483, - [SMALL_STATE(9628)] = 355496, - [SMALL_STATE(9629)] = 355509, - [SMALL_STATE(9630)] = 355522, - [SMALL_STATE(9631)] = 355535, - [SMALL_STATE(9632)] = 355548, - [SMALL_STATE(9633)] = 355559, - [SMALL_STATE(9634)] = 355572, - [SMALL_STATE(9635)] = 355585, - [SMALL_STATE(9636)] = 355598, - [SMALL_STATE(9637)] = 355611, - [SMALL_STATE(9638)] = 355624, - [SMALL_STATE(9639)] = 355637, - [SMALL_STATE(9640)] = 355650, - [SMALL_STATE(9641)] = 355663, - [SMALL_STATE(9642)] = 355676, - [SMALL_STATE(9643)] = 355689, - [SMALL_STATE(9644)] = 355702, - [SMALL_STATE(9645)] = 355715, - [SMALL_STATE(9646)] = 355728, - [SMALL_STATE(9647)] = 355741, - [SMALL_STATE(9648)] = 355752, - [SMALL_STATE(9649)] = 355763, - [SMALL_STATE(9650)] = 355776, - [SMALL_STATE(9651)] = 355789, - [SMALL_STATE(9652)] = 355802, - [SMALL_STATE(9653)] = 355815, - [SMALL_STATE(9654)] = 355828, - [SMALL_STATE(9655)] = 355841, - [SMALL_STATE(9656)] = 355854, - [SMALL_STATE(9657)] = 355867, - [SMALL_STATE(9658)] = 355880, - [SMALL_STATE(9659)] = 355893, - [SMALL_STATE(9660)] = 355906, - [SMALL_STATE(9661)] = 355919, - [SMALL_STATE(9662)] = 355932, - [SMALL_STATE(9663)] = 355945, - [SMALL_STATE(9664)] = 355958, - [SMALL_STATE(9665)] = 355971, - [SMALL_STATE(9666)] = 355984, - [SMALL_STATE(9667)] = 355997, - [SMALL_STATE(9668)] = 356010, - [SMALL_STATE(9669)] = 356023, - [SMALL_STATE(9670)] = 356036, - [SMALL_STATE(9671)] = 356047, - [SMALL_STATE(9672)] = 356060, - [SMALL_STATE(9673)] = 356073, - [SMALL_STATE(9674)] = 356086, - [SMALL_STATE(9675)] = 356099, - [SMALL_STATE(9676)] = 356108, - [SMALL_STATE(9677)] = 356117, - [SMALL_STATE(9678)] = 356128, - [SMALL_STATE(9679)] = 356141, - [SMALL_STATE(9680)] = 356152, - [SMALL_STATE(9681)] = 356161, - [SMALL_STATE(9682)] = 356174, - [SMALL_STATE(9683)] = 356185, - [SMALL_STATE(9684)] = 356198, - [SMALL_STATE(9685)] = 356211, - [SMALL_STATE(9686)] = 356224, - [SMALL_STATE(9687)] = 356237, - [SMALL_STATE(9688)] = 356250, - [SMALL_STATE(9689)] = 356263, - [SMALL_STATE(9690)] = 356274, - [SMALL_STATE(9691)] = 356285, - [SMALL_STATE(9692)] = 356298, - [SMALL_STATE(9693)] = 356307, - [SMALL_STATE(9694)] = 356320, - [SMALL_STATE(9695)] = 356333, - [SMALL_STATE(9696)] = 356346, - [SMALL_STATE(9697)] = 356357, - [SMALL_STATE(9698)] = 356368, - [SMALL_STATE(9699)] = 356379, - [SMALL_STATE(9700)] = 356392, - [SMALL_STATE(9701)] = 356403, - [SMALL_STATE(9702)] = 356414, - [SMALL_STATE(9703)] = 356427, - [SMALL_STATE(9704)] = 356438, - [SMALL_STATE(9705)] = 356451, - [SMALL_STATE(9706)] = 356464, - [SMALL_STATE(9707)] = 356477, - [SMALL_STATE(9708)] = 356490, - [SMALL_STATE(9709)] = 356499, - [SMALL_STATE(9710)] = 356512, - [SMALL_STATE(9711)] = 356525, - [SMALL_STATE(9712)] = 356538, - [SMALL_STATE(9713)] = 356547, - [SMALL_STATE(9714)] = 356558, - [SMALL_STATE(9715)] = 356571, - [SMALL_STATE(9716)] = 356584, - [SMALL_STATE(9717)] = 356597, - [SMALL_STATE(9718)] = 356610, - [SMALL_STATE(9719)] = 356623, - [SMALL_STATE(9720)] = 356636, - [SMALL_STATE(9721)] = 356649, - [SMALL_STATE(9722)] = 356662, - [SMALL_STATE(9723)] = 356671, - [SMALL_STATE(9724)] = 356684, - [SMALL_STATE(9725)] = 356697, - [SMALL_STATE(9726)] = 356708, - [SMALL_STATE(9727)] = 356721, - [SMALL_STATE(9728)] = 356734, - [SMALL_STATE(9729)] = 356745, - [SMALL_STATE(9730)] = 356756, - [SMALL_STATE(9731)] = 356769, - [SMALL_STATE(9732)] = 356782, - [SMALL_STATE(9733)] = 356795, - [SMALL_STATE(9734)] = 356808, - [SMALL_STATE(9735)] = 356821, - [SMALL_STATE(9736)] = 356832, - [SMALL_STATE(9737)] = 356841, - [SMALL_STATE(9738)] = 356852, - [SMALL_STATE(9739)] = 356865, - [SMALL_STATE(9740)] = 356874, - [SMALL_STATE(9741)] = 356887, - [SMALL_STATE(9742)] = 356896, - [SMALL_STATE(9743)] = 356909, - [SMALL_STATE(9744)] = 356922, - [SMALL_STATE(9745)] = 356935, - [SMALL_STATE(9746)] = 356948, - [SMALL_STATE(9747)] = 356961, - [SMALL_STATE(9748)] = 356974, - [SMALL_STATE(9749)] = 356987, - [SMALL_STATE(9750)] = 357000, - [SMALL_STATE(9751)] = 357013, - [SMALL_STATE(9752)] = 357026, - [SMALL_STATE(9753)] = 357039, - [SMALL_STATE(9754)] = 357052, - [SMALL_STATE(9755)] = 357063, - [SMALL_STATE(9756)] = 357076, - [SMALL_STATE(9757)] = 357089, - [SMALL_STATE(9758)] = 357100, - [SMALL_STATE(9759)] = 357113, - [SMALL_STATE(9760)] = 357126, - [SMALL_STATE(9761)] = 357139, - [SMALL_STATE(9762)] = 357152, - [SMALL_STATE(9763)] = 357165, - [SMALL_STATE(9764)] = 357178, - [SMALL_STATE(9765)] = 357189, - [SMALL_STATE(9766)] = 357200, - [SMALL_STATE(9767)] = 357213, - [SMALL_STATE(9768)] = 357226, - [SMALL_STATE(9769)] = 357237, - [SMALL_STATE(9770)] = 357250, - [SMALL_STATE(9771)] = 357263, - [SMALL_STATE(9772)] = 357276, - [SMALL_STATE(9773)] = 357289, - [SMALL_STATE(9774)] = 357302, - [SMALL_STATE(9775)] = 357311, - [SMALL_STATE(9776)] = 357324, - [SMALL_STATE(9777)] = 357337, - [SMALL_STATE(9778)] = 357350, - [SMALL_STATE(9779)] = 357363, - [SMALL_STATE(9780)] = 357376, - [SMALL_STATE(9781)] = 357389, - [SMALL_STATE(9782)] = 357402, - [SMALL_STATE(9783)] = 357415, - [SMALL_STATE(9784)] = 357428, - [SMALL_STATE(9785)] = 357439, - [SMALL_STATE(9786)] = 357452, - [SMALL_STATE(9787)] = 357463, - [SMALL_STATE(9788)] = 357472, - [SMALL_STATE(9789)] = 357485, - [SMALL_STATE(9790)] = 357498, - [SMALL_STATE(9791)] = 357511, - [SMALL_STATE(9792)] = 357524, - [SMALL_STATE(9793)] = 357537, - [SMALL_STATE(9794)] = 357550, - [SMALL_STATE(9795)] = 357563, - [SMALL_STATE(9796)] = 357576, - [SMALL_STATE(9797)] = 357589, - [SMALL_STATE(9798)] = 357602, - [SMALL_STATE(9799)] = 357615, - [SMALL_STATE(9800)] = 357628, - [SMALL_STATE(9801)] = 357641, - [SMALL_STATE(9802)] = 357654, - [SMALL_STATE(9803)] = 357667, - [SMALL_STATE(9804)] = 357680, - [SMALL_STATE(9805)] = 357691, - [SMALL_STATE(9806)] = 357704, - [SMALL_STATE(9807)] = 357717, - [SMALL_STATE(9808)] = 357730, - [SMALL_STATE(9809)] = 357743, - [SMALL_STATE(9810)] = 357756, - [SMALL_STATE(9811)] = 357769, - [SMALL_STATE(9812)] = 357782, - [SMALL_STATE(9813)] = 357795, - [SMALL_STATE(9814)] = 357808, - [SMALL_STATE(9815)] = 357821, - [SMALL_STATE(9816)] = 357834, - [SMALL_STATE(9817)] = 357847, - [SMALL_STATE(9818)] = 357860, - [SMALL_STATE(9819)] = 357873, - [SMALL_STATE(9820)] = 357886, - [SMALL_STATE(9821)] = 357899, - [SMALL_STATE(9822)] = 357912, - [SMALL_STATE(9823)] = 357925, - [SMALL_STATE(9824)] = 357936, - [SMALL_STATE(9825)] = 357949, - [SMALL_STATE(9826)] = 357962, - [SMALL_STATE(9827)] = 357975, - [SMALL_STATE(9828)] = 357988, - [SMALL_STATE(9829)] = 358001, - [SMALL_STATE(9830)] = 358014, - [SMALL_STATE(9831)] = 358025, - [SMALL_STATE(9832)] = 358038, - [SMALL_STATE(9833)] = 358051, - [SMALL_STATE(9834)] = 358064, - [SMALL_STATE(9835)] = 358077, - [SMALL_STATE(9836)] = 358090, - [SMALL_STATE(9837)] = 358103, - [SMALL_STATE(9838)] = 358116, - [SMALL_STATE(9839)] = 358129, - [SMALL_STATE(9840)] = 358142, - [SMALL_STATE(9841)] = 358153, - [SMALL_STATE(9842)] = 358164, - [SMALL_STATE(9843)] = 358177, - [SMALL_STATE(9844)] = 358190, - [SMALL_STATE(9845)] = 358203, - [SMALL_STATE(9846)] = 358216, - [SMALL_STATE(9847)] = 358229, - [SMALL_STATE(9848)] = 358242, - [SMALL_STATE(9849)] = 358255, - [SMALL_STATE(9850)] = 358268, - [SMALL_STATE(9851)] = 358281, - [SMALL_STATE(9852)] = 358294, - [SMALL_STATE(9853)] = 358307, - [SMALL_STATE(9854)] = 358316, - [SMALL_STATE(9855)] = 358329, - [SMALL_STATE(9856)] = 358342, - [SMALL_STATE(9857)] = 358355, - [SMALL_STATE(9858)] = 358368, - [SMALL_STATE(9859)] = 358381, - [SMALL_STATE(9860)] = 358394, - [SMALL_STATE(9861)] = 358407, - [SMALL_STATE(9862)] = 358420, - [SMALL_STATE(9863)] = 358431, - [SMALL_STATE(9864)] = 358444, - [SMALL_STATE(9865)] = 358457, - [SMALL_STATE(9866)] = 358470, - [SMALL_STATE(9867)] = 358483, - [SMALL_STATE(9868)] = 358496, - [SMALL_STATE(9869)] = 358509, - [SMALL_STATE(9870)] = 358522, - [SMALL_STATE(9871)] = 358535, - [SMALL_STATE(9872)] = 358548, - [SMALL_STATE(9873)] = 358561, - [SMALL_STATE(9874)] = 358574, - [SMALL_STATE(9875)] = 358587, - [SMALL_STATE(9876)] = 358600, - [SMALL_STATE(9877)] = 358613, - [SMALL_STATE(9878)] = 358626, - [SMALL_STATE(9879)] = 358639, - [SMALL_STATE(9880)] = 358652, - [SMALL_STATE(9881)] = 358665, - [SMALL_STATE(9882)] = 358678, - [SMALL_STATE(9883)] = 358691, - [SMALL_STATE(9884)] = 358704, - [SMALL_STATE(9885)] = 358717, - [SMALL_STATE(9886)] = 358728, - [SMALL_STATE(9887)] = 358741, - [SMALL_STATE(9888)] = 358754, - [SMALL_STATE(9889)] = 358767, - [SMALL_STATE(9890)] = 358780, - [SMALL_STATE(9891)] = 358793, - [SMALL_STATE(9892)] = 358802, - [SMALL_STATE(9893)] = 358815, - [SMALL_STATE(9894)] = 358828, - [SMALL_STATE(9895)] = 358841, - [SMALL_STATE(9896)] = 358854, - [SMALL_STATE(9897)] = 358867, - [SMALL_STATE(9898)] = 358880, - [SMALL_STATE(9899)] = 358893, - [SMALL_STATE(9900)] = 358906, - [SMALL_STATE(9901)] = 358919, - [SMALL_STATE(9902)] = 358932, - [SMALL_STATE(9903)] = 358943, - [SMALL_STATE(9904)] = 358956, - [SMALL_STATE(9905)] = 358969, - [SMALL_STATE(9906)] = 358982, - [SMALL_STATE(9907)] = 358995, - [SMALL_STATE(9908)] = 359008, - [SMALL_STATE(9909)] = 359021, - [SMALL_STATE(9910)] = 359034, - [SMALL_STATE(9911)] = 359047, - [SMALL_STATE(9912)] = 359060, - [SMALL_STATE(9913)] = 359073, - [SMALL_STATE(9914)] = 359086, - [SMALL_STATE(9915)] = 359097, - [SMALL_STATE(9916)] = 359110, - [SMALL_STATE(9917)] = 359123, - [SMALL_STATE(9918)] = 359136, - [SMALL_STATE(9919)] = 359149, - [SMALL_STATE(9920)] = 359162, - [SMALL_STATE(9921)] = 359173, - [SMALL_STATE(9922)] = 359186, - [SMALL_STATE(9923)] = 359199, - [SMALL_STATE(9924)] = 359212, - [SMALL_STATE(9925)] = 359225, - [SMALL_STATE(9926)] = 359238, - [SMALL_STATE(9927)] = 359251, - [SMALL_STATE(9928)] = 359264, - [SMALL_STATE(9929)] = 359275, - [SMALL_STATE(9930)] = 359288, - [SMALL_STATE(9931)] = 359301, - [SMALL_STATE(9932)] = 359314, - [SMALL_STATE(9933)] = 359327, - [SMALL_STATE(9934)] = 359340, - [SMALL_STATE(9935)] = 359353, - [SMALL_STATE(9936)] = 359366, - [SMALL_STATE(9937)] = 359377, - [SMALL_STATE(9938)] = 359390, - [SMALL_STATE(9939)] = 359401, - [SMALL_STATE(9940)] = 359414, - [SMALL_STATE(9941)] = 359425, - [SMALL_STATE(9942)] = 359438, - [SMALL_STATE(9943)] = 359451, - [SMALL_STATE(9944)] = 359462, - [SMALL_STATE(9945)] = 359473, - [SMALL_STATE(9946)] = 359484, - [SMALL_STATE(9947)] = 359497, - [SMALL_STATE(9948)] = 359510, - [SMALL_STATE(9949)] = 359523, - [SMALL_STATE(9950)] = 359536, - [SMALL_STATE(9951)] = 359549, - [SMALL_STATE(9952)] = 359562, - [SMALL_STATE(9953)] = 359575, - [SMALL_STATE(9954)] = 359588, - [SMALL_STATE(9955)] = 359601, - [SMALL_STATE(9956)] = 359614, - [SMALL_STATE(9957)] = 359625, - [SMALL_STATE(9958)] = 359638, - [SMALL_STATE(9959)] = 359651, - [SMALL_STATE(9960)] = 359664, - [SMALL_STATE(9961)] = 359677, - [SMALL_STATE(9962)] = 359690, - [SMALL_STATE(9963)] = 359703, - [SMALL_STATE(9964)] = 359716, - [SMALL_STATE(9965)] = 359729, - [SMALL_STATE(9966)] = 359742, - [SMALL_STATE(9967)] = 359755, - [SMALL_STATE(9968)] = 359768, - [SMALL_STATE(9969)] = 359779, - [SMALL_STATE(9970)] = 359792, - [SMALL_STATE(9971)] = 359805, - [SMALL_STATE(9972)] = 359818, - [SMALL_STATE(9973)] = 359831, - [SMALL_STATE(9974)] = 359844, - [SMALL_STATE(9975)] = 359857, - [SMALL_STATE(9976)] = 359870, - [SMALL_STATE(9977)] = 359883, - [SMALL_STATE(9978)] = 359894, - [SMALL_STATE(9979)] = 359907, - [SMALL_STATE(9980)] = 359920, - [SMALL_STATE(9981)] = 359933, - [SMALL_STATE(9982)] = 359946, - [SMALL_STATE(9983)] = 359959, - [SMALL_STATE(9984)] = 359972, - [SMALL_STATE(9985)] = 359985, - [SMALL_STATE(9986)] = 359998, - [SMALL_STATE(9987)] = 360011, - [SMALL_STATE(9988)] = 360024, - [SMALL_STATE(9989)] = 360037, - [SMALL_STATE(9990)] = 360050, - [SMALL_STATE(9991)] = 360063, - [SMALL_STATE(9992)] = 360076, - [SMALL_STATE(9993)] = 360089, - [SMALL_STATE(9994)] = 360102, - [SMALL_STATE(9995)] = 360115, - [SMALL_STATE(9996)] = 360128, - [SMALL_STATE(9997)] = 360139, - [SMALL_STATE(9998)] = 360152, - [SMALL_STATE(9999)] = 360163, - [SMALL_STATE(10000)] = 360176, - [SMALL_STATE(10001)] = 360189, - [SMALL_STATE(10002)] = 360202, - [SMALL_STATE(10003)] = 360215, - [SMALL_STATE(10004)] = 360228, - [SMALL_STATE(10005)] = 360241, - [SMALL_STATE(10006)] = 360254, - [SMALL_STATE(10007)] = 360267, - [SMALL_STATE(10008)] = 360280, - [SMALL_STATE(10009)] = 360293, - [SMALL_STATE(10010)] = 360306, - [SMALL_STATE(10011)] = 360319, - [SMALL_STATE(10012)] = 360332, - [SMALL_STATE(10013)] = 360345, - [SMALL_STATE(10014)] = 360358, - [SMALL_STATE(10015)] = 360371, - [SMALL_STATE(10016)] = 360384, - [SMALL_STATE(10017)] = 360397, - [SMALL_STATE(10018)] = 360410, - [SMALL_STATE(10019)] = 360423, - [SMALL_STATE(10020)] = 360436, - [SMALL_STATE(10021)] = 360449, - [SMALL_STATE(10022)] = 360460, - [SMALL_STATE(10023)] = 360473, - [SMALL_STATE(10024)] = 360486, - [SMALL_STATE(10025)] = 360499, - [SMALL_STATE(10026)] = 360512, - [SMALL_STATE(10027)] = 360525, - [SMALL_STATE(10028)] = 360538, - [SMALL_STATE(10029)] = 360551, - [SMALL_STATE(10030)] = 360564, - [SMALL_STATE(10031)] = 360577, - [SMALL_STATE(10032)] = 360588, - [SMALL_STATE(10033)] = 360601, - [SMALL_STATE(10034)] = 360614, - [SMALL_STATE(10035)] = 360625, - [SMALL_STATE(10036)] = 360638, - [SMALL_STATE(10037)] = 360651, - [SMALL_STATE(10038)] = 360664, - [SMALL_STATE(10039)] = 360677, - [SMALL_STATE(10040)] = 360690, - [SMALL_STATE(10041)] = 360703, - [SMALL_STATE(10042)] = 360716, - [SMALL_STATE(10043)] = 360729, - [SMALL_STATE(10044)] = 360742, - [SMALL_STATE(10045)] = 360755, - [SMALL_STATE(10046)] = 360768, - [SMALL_STATE(10047)] = 360781, - [SMALL_STATE(10048)] = 360794, - [SMALL_STATE(10049)] = 360807, - [SMALL_STATE(10050)] = 360818, - [SMALL_STATE(10051)] = 360831, - [SMALL_STATE(10052)] = 360844, - [SMALL_STATE(10053)] = 360857, - [SMALL_STATE(10054)] = 360870, - [SMALL_STATE(10055)] = 360883, - [SMALL_STATE(10056)] = 360894, - [SMALL_STATE(10057)] = 360903, - [SMALL_STATE(10058)] = 360916, - [SMALL_STATE(10059)] = 360929, - [SMALL_STATE(10060)] = 360942, - [SMALL_STATE(10061)] = 360955, - [SMALL_STATE(10062)] = 360968, - [SMALL_STATE(10063)] = 360981, - [SMALL_STATE(10064)] = 360994, - [SMALL_STATE(10065)] = 361004, - [SMALL_STATE(10066)] = 361012, - [SMALL_STATE(10067)] = 361022, - [SMALL_STATE(10068)] = 361032, - [SMALL_STATE(10069)] = 361040, - [SMALL_STATE(10070)] = 361050, - [SMALL_STATE(10071)] = 361058, - [SMALL_STATE(10072)] = 361068, - [SMALL_STATE(10073)] = 361076, - [SMALL_STATE(10074)] = 361086, - [SMALL_STATE(10075)] = 361096, - [SMALL_STATE(10076)] = 361106, - [SMALL_STATE(10077)] = 361116, - [SMALL_STATE(10078)] = 361126, - [SMALL_STATE(10079)] = 361136, - [SMALL_STATE(10080)] = 361144, - [SMALL_STATE(10081)] = 361154, - [SMALL_STATE(10082)] = 361162, - [SMALL_STATE(10083)] = 361172, - [SMALL_STATE(10084)] = 361182, - [SMALL_STATE(10085)] = 361192, - [SMALL_STATE(10086)] = 361202, - [SMALL_STATE(10087)] = 361212, - [SMALL_STATE(10088)] = 361222, - [SMALL_STATE(10089)] = 361232, - [SMALL_STATE(10090)] = 361242, - [SMALL_STATE(10091)] = 361252, - [SMALL_STATE(10092)] = 361262, - [SMALL_STATE(10093)] = 361272, - [SMALL_STATE(10094)] = 361282, - [SMALL_STATE(10095)] = 361292, - [SMALL_STATE(10096)] = 361302, - [SMALL_STATE(10097)] = 361312, - [SMALL_STATE(10098)] = 361322, - [SMALL_STATE(10099)] = 361332, - [SMALL_STATE(10100)] = 361342, - [SMALL_STATE(10101)] = 361352, - [SMALL_STATE(10102)] = 361362, - [SMALL_STATE(10103)] = 361372, - [SMALL_STATE(10104)] = 361382, - [SMALL_STATE(10105)] = 361392, - [SMALL_STATE(10106)] = 361402, - [SMALL_STATE(10107)] = 361412, - [SMALL_STATE(10108)] = 361422, - [SMALL_STATE(10109)] = 361432, - [SMALL_STATE(10110)] = 361442, - [SMALL_STATE(10111)] = 361450, - [SMALL_STATE(10112)] = 361460, - [SMALL_STATE(10113)] = 361470, - [SMALL_STATE(10114)] = 361480, - [SMALL_STATE(10115)] = 361490, - [SMALL_STATE(10116)] = 361498, - [SMALL_STATE(10117)] = 361508, - [SMALL_STATE(10118)] = 361518, - [SMALL_STATE(10119)] = 361528, - [SMALL_STATE(10120)] = 361536, - [SMALL_STATE(10121)] = 361546, - [SMALL_STATE(10122)] = 361556, - [SMALL_STATE(10123)] = 361566, - [SMALL_STATE(10124)] = 361576, - [SMALL_STATE(10125)] = 361586, - [SMALL_STATE(10126)] = 361596, - [SMALL_STATE(10127)] = 361606, - [SMALL_STATE(10128)] = 361616, - [SMALL_STATE(10129)] = 361626, - [SMALL_STATE(10130)] = 361636, - [SMALL_STATE(10131)] = 361646, - [SMALL_STATE(10132)] = 361656, - [SMALL_STATE(10133)] = 361666, - [SMALL_STATE(10134)] = 361674, - [SMALL_STATE(10135)] = 361684, - [SMALL_STATE(10136)] = 361694, - [SMALL_STATE(10137)] = 361704, - [SMALL_STATE(10138)] = 361714, - [SMALL_STATE(10139)] = 361724, - [SMALL_STATE(10140)] = 361734, - [SMALL_STATE(10141)] = 361744, - [SMALL_STATE(10142)] = 361754, - [SMALL_STATE(10143)] = 361764, - [SMALL_STATE(10144)] = 361774, - [SMALL_STATE(10145)] = 361784, - [SMALL_STATE(10146)] = 361794, - [SMALL_STATE(10147)] = 361804, - [SMALL_STATE(10148)] = 361814, - [SMALL_STATE(10149)] = 361824, - [SMALL_STATE(10150)] = 361834, - [SMALL_STATE(10151)] = 361844, - [SMALL_STATE(10152)] = 361854, - [SMALL_STATE(10153)] = 361864, - [SMALL_STATE(10154)] = 361874, - [SMALL_STATE(10155)] = 361884, - [SMALL_STATE(10156)] = 361894, - [SMALL_STATE(10157)] = 361904, - [SMALL_STATE(10158)] = 361914, - [SMALL_STATE(10159)] = 361924, - [SMALL_STATE(10160)] = 361934, - [SMALL_STATE(10161)] = 361944, - [SMALL_STATE(10162)] = 361954, - [SMALL_STATE(10163)] = 361964, - [SMALL_STATE(10164)] = 361974, - [SMALL_STATE(10165)] = 361984, - [SMALL_STATE(10166)] = 361994, - [SMALL_STATE(10167)] = 362004, - [SMALL_STATE(10168)] = 362014, - [SMALL_STATE(10169)] = 362024, - [SMALL_STATE(10170)] = 362034, - [SMALL_STATE(10171)] = 362044, - [SMALL_STATE(10172)] = 362054, - [SMALL_STATE(10173)] = 362064, - [SMALL_STATE(10174)] = 362074, - [SMALL_STATE(10175)] = 362084, - [SMALL_STATE(10176)] = 362094, - [SMALL_STATE(10177)] = 362104, - [SMALL_STATE(10178)] = 362114, - [SMALL_STATE(10179)] = 362124, - [SMALL_STATE(10180)] = 362134, - [SMALL_STATE(10181)] = 362144, - [SMALL_STATE(10182)] = 362154, - [SMALL_STATE(10183)] = 362162, - [SMALL_STATE(10184)] = 362172, - [SMALL_STATE(10185)] = 362182, - [SMALL_STATE(10186)] = 362192, - [SMALL_STATE(10187)] = 362202, - [SMALL_STATE(10188)] = 362212, - [SMALL_STATE(10189)] = 362222, - [SMALL_STATE(10190)] = 362232, - [SMALL_STATE(10191)] = 362242, - [SMALL_STATE(10192)] = 362252, - [SMALL_STATE(10193)] = 362262, - [SMALL_STATE(10194)] = 362270, - [SMALL_STATE(10195)] = 362280, - [SMALL_STATE(10196)] = 362290, - [SMALL_STATE(10197)] = 362300, - [SMALL_STATE(10198)] = 362310, - [SMALL_STATE(10199)] = 362320, - [SMALL_STATE(10200)] = 362330, - [SMALL_STATE(10201)] = 362338, - [SMALL_STATE(10202)] = 362348, - [SMALL_STATE(10203)] = 362358, - [SMALL_STATE(10204)] = 362368, - [SMALL_STATE(10205)] = 362378, - [SMALL_STATE(10206)] = 362388, - [SMALL_STATE(10207)] = 362398, - [SMALL_STATE(10208)] = 362408, - [SMALL_STATE(10209)] = 362418, - [SMALL_STATE(10210)] = 362426, - [SMALL_STATE(10211)] = 362434, - [SMALL_STATE(10212)] = 362444, - [SMALL_STATE(10213)] = 362454, - [SMALL_STATE(10214)] = 362462, - [SMALL_STATE(10215)] = 362472, - [SMALL_STATE(10216)] = 362482, - [SMALL_STATE(10217)] = 362492, - [SMALL_STATE(10218)] = 362502, - [SMALL_STATE(10219)] = 362510, - [SMALL_STATE(10220)] = 362520, - [SMALL_STATE(10221)] = 362530, - [SMALL_STATE(10222)] = 362538, - [SMALL_STATE(10223)] = 362548, - [SMALL_STATE(10224)] = 362558, - [SMALL_STATE(10225)] = 362568, - [SMALL_STATE(10226)] = 362578, - [SMALL_STATE(10227)] = 362588, - [SMALL_STATE(10228)] = 362598, - [SMALL_STATE(10229)] = 362608, - [SMALL_STATE(10230)] = 362618, - [SMALL_STATE(10231)] = 362628, - [SMALL_STATE(10232)] = 362638, - [SMALL_STATE(10233)] = 362648, - [SMALL_STATE(10234)] = 362656, - [SMALL_STATE(10235)] = 362666, - [SMALL_STATE(10236)] = 362676, - [SMALL_STATE(10237)] = 362686, - [SMALL_STATE(10238)] = 362696, - [SMALL_STATE(10239)] = 362706, - [SMALL_STATE(10240)] = 362716, - [SMALL_STATE(10241)] = 362726, - [SMALL_STATE(10242)] = 362736, - [SMALL_STATE(10243)] = 362746, - [SMALL_STATE(10244)] = 362756, - [SMALL_STATE(10245)] = 362766, - [SMALL_STATE(10246)] = 362776, - [SMALL_STATE(10247)] = 362786, - [SMALL_STATE(10248)] = 362796, - [SMALL_STATE(10249)] = 362806, - [SMALL_STATE(10250)] = 362816, - [SMALL_STATE(10251)] = 362826, - [SMALL_STATE(10252)] = 362836, - [SMALL_STATE(10253)] = 362846, - [SMALL_STATE(10254)] = 362856, - [SMALL_STATE(10255)] = 362866, - [SMALL_STATE(10256)] = 362874, - [SMALL_STATE(10257)] = 362884, - [SMALL_STATE(10258)] = 362892, - [SMALL_STATE(10259)] = 362902, - [SMALL_STATE(10260)] = 362912, - [SMALL_STATE(10261)] = 362922, - [SMALL_STATE(10262)] = 362932, - [SMALL_STATE(10263)] = 362942, - [SMALL_STATE(10264)] = 362952, - [SMALL_STATE(10265)] = 362962, - [SMALL_STATE(10266)] = 362972, - [SMALL_STATE(10267)] = 362980, - [SMALL_STATE(10268)] = 362990, - [SMALL_STATE(10269)] = 363000, - [SMALL_STATE(10270)] = 363010, - [SMALL_STATE(10271)] = 363020, - [SMALL_STATE(10272)] = 363030, - [SMALL_STATE(10273)] = 363040, - [SMALL_STATE(10274)] = 363050, - [SMALL_STATE(10275)] = 363060, - [SMALL_STATE(10276)] = 363070, - [SMALL_STATE(10277)] = 363080, - [SMALL_STATE(10278)] = 363090, - [SMALL_STATE(10279)] = 363100, - [SMALL_STATE(10280)] = 363110, - [SMALL_STATE(10281)] = 363118, - [SMALL_STATE(10282)] = 363128, - [SMALL_STATE(10283)] = 363138, - [SMALL_STATE(10284)] = 363148, - [SMALL_STATE(10285)] = 363158, - [SMALL_STATE(10286)] = 363168, - [SMALL_STATE(10287)] = 363178, - [SMALL_STATE(10288)] = 363188, - [SMALL_STATE(10289)] = 363198, - [SMALL_STATE(10290)] = 363208, - [SMALL_STATE(10291)] = 363218, - [SMALL_STATE(10292)] = 363228, - [SMALL_STATE(10293)] = 363238, - [SMALL_STATE(10294)] = 363248, - [SMALL_STATE(10295)] = 363258, - [SMALL_STATE(10296)] = 363268, - [SMALL_STATE(10297)] = 363278, - [SMALL_STATE(10298)] = 363288, - [SMALL_STATE(10299)] = 363298, - [SMALL_STATE(10300)] = 363308, - [SMALL_STATE(10301)] = 363318, - [SMALL_STATE(10302)] = 363328, - [SMALL_STATE(10303)] = 363338, - [SMALL_STATE(10304)] = 363348, - [SMALL_STATE(10305)] = 363358, - [SMALL_STATE(10306)] = 363368, - [SMALL_STATE(10307)] = 363378, - [SMALL_STATE(10308)] = 363388, - [SMALL_STATE(10309)] = 363398, - [SMALL_STATE(10310)] = 363408, - [SMALL_STATE(10311)] = 363418, - [SMALL_STATE(10312)] = 363426, - [SMALL_STATE(10313)] = 363436, - [SMALL_STATE(10314)] = 363446, - [SMALL_STATE(10315)] = 363456, - [SMALL_STATE(10316)] = 363466, - [SMALL_STATE(10317)] = 363474, - [SMALL_STATE(10318)] = 363484, - [SMALL_STATE(10319)] = 363494, - [SMALL_STATE(10320)] = 363504, - [SMALL_STATE(10321)] = 363514, - [SMALL_STATE(10322)] = 363522, - [SMALL_STATE(10323)] = 363532, - [SMALL_STATE(10324)] = 363542, - [SMALL_STATE(10325)] = 363552, - [SMALL_STATE(10326)] = 363562, - [SMALL_STATE(10327)] = 363570, - [SMALL_STATE(10328)] = 363580, - [SMALL_STATE(10329)] = 363590, - [SMALL_STATE(10330)] = 363600, - [SMALL_STATE(10331)] = 363610, - [SMALL_STATE(10332)] = 363618, - [SMALL_STATE(10333)] = 363628, - [SMALL_STATE(10334)] = 363638, - [SMALL_STATE(10335)] = 363648, - [SMALL_STATE(10336)] = 363658, - [SMALL_STATE(10337)] = 363668, - [SMALL_STATE(10338)] = 363678, - [SMALL_STATE(10339)] = 363686, - [SMALL_STATE(10340)] = 363696, - [SMALL_STATE(10341)] = 363704, - [SMALL_STATE(10342)] = 363714, - [SMALL_STATE(10343)] = 363722, - [SMALL_STATE(10344)] = 363732, - [SMALL_STATE(10345)] = 363740, - [SMALL_STATE(10346)] = 363750, - [SMALL_STATE(10347)] = 363760, - [SMALL_STATE(10348)] = 363770, - [SMALL_STATE(10349)] = 363780, - [SMALL_STATE(10350)] = 363790, - [SMALL_STATE(10351)] = 363800, - [SMALL_STATE(10352)] = 363810, - [SMALL_STATE(10353)] = 363820, - [SMALL_STATE(10354)] = 363830, - [SMALL_STATE(10355)] = 363840, - [SMALL_STATE(10356)] = 363850, - [SMALL_STATE(10357)] = 363860, - [SMALL_STATE(10358)] = 363870, - [SMALL_STATE(10359)] = 363880, - [SMALL_STATE(10360)] = 363890, - [SMALL_STATE(10361)] = 363900, - [SMALL_STATE(10362)] = 363910, - [SMALL_STATE(10363)] = 363920, - [SMALL_STATE(10364)] = 363930, - [SMALL_STATE(10365)] = 363940, - [SMALL_STATE(10366)] = 363950, - [SMALL_STATE(10367)] = 363960, - [SMALL_STATE(10368)] = 363968, - [SMALL_STATE(10369)] = 363978, - [SMALL_STATE(10370)] = 363988, - [SMALL_STATE(10371)] = 363998, - [SMALL_STATE(10372)] = 364008, - [SMALL_STATE(10373)] = 364018, - [SMALL_STATE(10374)] = 364026, - [SMALL_STATE(10375)] = 364034, - [SMALL_STATE(10376)] = 364044, - [SMALL_STATE(10377)] = 364054, - [SMALL_STATE(10378)] = 364064, - [SMALL_STATE(10379)] = 364072, - [SMALL_STATE(10380)] = 364082, - [SMALL_STATE(10381)] = 364092, - [SMALL_STATE(10382)] = 364102, - [SMALL_STATE(10383)] = 364112, - [SMALL_STATE(10384)] = 364122, - [SMALL_STATE(10385)] = 364132, - [SMALL_STATE(10386)] = 364142, - [SMALL_STATE(10387)] = 364150, - [SMALL_STATE(10388)] = 364160, - [SMALL_STATE(10389)] = 364170, - [SMALL_STATE(10390)] = 364180, - [SMALL_STATE(10391)] = 364190, - [SMALL_STATE(10392)] = 364200, - [SMALL_STATE(10393)] = 364210, - [SMALL_STATE(10394)] = 364220, - [SMALL_STATE(10395)] = 364230, - [SMALL_STATE(10396)] = 364240, - [SMALL_STATE(10397)] = 364250, - [SMALL_STATE(10398)] = 364260, - [SMALL_STATE(10399)] = 364268, - [SMALL_STATE(10400)] = 364278, - [SMALL_STATE(10401)] = 364288, - [SMALL_STATE(10402)] = 364296, - [SMALL_STATE(10403)] = 364306, - [SMALL_STATE(10404)] = 364316, - [SMALL_STATE(10405)] = 364326, - [SMALL_STATE(10406)] = 364336, - [SMALL_STATE(10407)] = 364346, - [SMALL_STATE(10408)] = 364356, - [SMALL_STATE(10409)] = 364366, - [SMALL_STATE(10410)] = 364376, - [SMALL_STATE(10411)] = 364384, - [SMALL_STATE(10412)] = 364394, - [SMALL_STATE(10413)] = 364404, - [SMALL_STATE(10414)] = 364414, - [SMALL_STATE(10415)] = 364424, - [SMALL_STATE(10416)] = 364434, - [SMALL_STATE(10417)] = 364444, - [SMALL_STATE(10418)] = 364454, - [SMALL_STATE(10419)] = 364464, - [SMALL_STATE(10420)] = 364474, - [SMALL_STATE(10421)] = 364484, - [SMALL_STATE(10422)] = 364494, - [SMALL_STATE(10423)] = 364504, - [SMALL_STATE(10424)] = 364514, - [SMALL_STATE(10425)] = 364524, - [SMALL_STATE(10426)] = 364534, - [SMALL_STATE(10427)] = 364544, - [SMALL_STATE(10428)] = 364554, - [SMALL_STATE(10429)] = 364562, - [SMALL_STATE(10430)] = 364572, - [SMALL_STATE(10431)] = 364582, - [SMALL_STATE(10432)] = 364592, - [SMALL_STATE(10433)] = 364602, - [SMALL_STATE(10434)] = 364612, - [SMALL_STATE(10435)] = 364622, - [SMALL_STATE(10436)] = 364632, - [SMALL_STATE(10437)] = 364642, - [SMALL_STATE(10438)] = 364652, - [SMALL_STATE(10439)] = 364662, - [SMALL_STATE(10440)] = 364672, - [SMALL_STATE(10441)] = 364682, - [SMALL_STATE(10442)] = 364692, - [SMALL_STATE(10443)] = 364702, - [SMALL_STATE(10444)] = 364712, - [SMALL_STATE(10445)] = 364720, - [SMALL_STATE(10446)] = 364728, - [SMALL_STATE(10447)] = 364738, - [SMALL_STATE(10448)] = 364748, - [SMALL_STATE(10449)] = 364758, - [SMALL_STATE(10450)] = 364768, - [SMALL_STATE(10451)] = 364778, - [SMALL_STATE(10452)] = 364786, - [SMALL_STATE(10453)] = 364796, - [SMALL_STATE(10454)] = 364806, - [SMALL_STATE(10455)] = 364816, - [SMALL_STATE(10456)] = 364826, - [SMALL_STATE(10457)] = 364836, - [SMALL_STATE(10458)] = 364846, - [SMALL_STATE(10459)] = 364856, - [SMALL_STATE(10460)] = 364866, - [SMALL_STATE(10461)] = 364876, - [SMALL_STATE(10462)] = 364886, - [SMALL_STATE(10463)] = 364896, - [SMALL_STATE(10464)] = 364906, - [SMALL_STATE(10465)] = 364916, - [SMALL_STATE(10466)] = 364926, - [SMALL_STATE(10467)] = 364936, - [SMALL_STATE(10468)] = 364946, - [SMALL_STATE(10469)] = 364956, - [SMALL_STATE(10470)] = 364966, - [SMALL_STATE(10471)] = 364976, - [SMALL_STATE(10472)] = 364986, - [SMALL_STATE(10473)] = 364996, - [SMALL_STATE(10474)] = 365006, - [SMALL_STATE(10475)] = 365016, - [SMALL_STATE(10476)] = 365026, - [SMALL_STATE(10477)] = 365034, - [SMALL_STATE(10478)] = 365042, - [SMALL_STATE(10479)] = 365052, - [SMALL_STATE(10480)] = 365062, - [SMALL_STATE(10481)] = 365072, - [SMALL_STATE(10482)] = 365082, - [SMALL_STATE(10483)] = 365089, - [SMALL_STATE(10484)] = 365096, - [SMALL_STATE(10485)] = 365103, - [SMALL_STATE(10486)] = 365110, - [SMALL_STATE(10487)] = 365117, - [SMALL_STATE(10488)] = 365124, - [SMALL_STATE(10489)] = 365131, - [SMALL_STATE(10490)] = 365138, - [SMALL_STATE(10491)] = 365145, - [SMALL_STATE(10492)] = 365152, - [SMALL_STATE(10493)] = 365159, - [SMALL_STATE(10494)] = 365166, - [SMALL_STATE(10495)] = 365173, - [SMALL_STATE(10496)] = 365180, - [SMALL_STATE(10497)] = 365187, - [SMALL_STATE(10498)] = 365194, - [SMALL_STATE(10499)] = 365201, - [SMALL_STATE(10500)] = 365208, - [SMALL_STATE(10501)] = 365215, - [SMALL_STATE(10502)] = 365222, - [SMALL_STATE(10503)] = 365229, - [SMALL_STATE(10504)] = 365236, - [SMALL_STATE(10505)] = 365243, - [SMALL_STATE(10506)] = 365250, - [SMALL_STATE(10507)] = 365257, - [SMALL_STATE(10508)] = 365264, - [SMALL_STATE(10509)] = 365271, - [SMALL_STATE(10510)] = 365278, - [SMALL_STATE(10511)] = 365285, - [SMALL_STATE(10512)] = 365292, - [SMALL_STATE(10513)] = 365299, - [SMALL_STATE(10514)] = 365306, - [SMALL_STATE(10515)] = 365313, - [SMALL_STATE(10516)] = 365320, - [SMALL_STATE(10517)] = 365327, - [SMALL_STATE(10518)] = 365334, - [SMALL_STATE(10519)] = 365341, - [SMALL_STATE(10520)] = 365348, - [SMALL_STATE(10521)] = 365355, - [SMALL_STATE(10522)] = 365362, - [SMALL_STATE(10523)] = 365369, - [SMALL_STATE(10524)] = 365376, - [SMALL_STATE(10525)] = 365383, - [SMALL_STATE(10526)] = 365390, - [SMALL_STATE(10527)] = 365397, - [SMALL_STATE(10528)] = 365404, - [SMALL_STATE(10529)] = 365411, - [SMALL_STATE(10530)] = 365418, - [SMALL_STATE(10531)] = 365425, - [SMALL_STATE(10532)] = 365432, - [SMALL_STATE(10533)] = 365439, - [SMALL_STATE(10534)] = 365446, - [SMALL_STATE(10535)] = 365453, - [SMALL_STATE(10536)] = 365460, - [SMALL_STATE(10537)] = 365467, - [SMALL_STATE(10538)] = 365474, - [SMALL_STATE(10539)] = 365481, - [SMALL_STATE(10540)] = 365488, - [SMALL_STATE(10541)] = 365495, - [SMALL_STATE(10542)] = 365502, - [SMALL_STATE(10543)] = 365509, - [SMALL_STATE(10544)] = 365516, - [SMALL_STATE(10545)] = 365523, - [SMALL_STATE(10546)] = 365530, - [SMALL_STATE(10547)] = 365537, - [SMALL_STATE(10548)] = 365544, - [SMALL_STATE(10549)] = 365551, - [SMALL_STATE(10550)] = 365558, - [SMALL_STATE(10551)] = 365565, - [SMALL_STATE(10552)] = 365572, - [SMALL_STATE(10553)] = 365579, - [SMALL_STATE(10554)] = 365586, - [SMALL_STATE(10555)] = 365593, - [SMALL_STATE(10556)] = 365600, - [SMALL_STATE(10557)] = 365607, - [SMALL_STATE(10558)] = 365614, - [SMALL_STATE(10559)] = 365621, - [SMALL_STATE(10560)] = 365628, - [SMALL_STATE(10561)] = 365635, - [SMALL_STATE(10562)] = 365642, - [SMALL_STATE(10563)] = 365649, - [SMALL_STATE(10564)] = 365656, - [SMALL_STATE(10565)] = 365663, - [SMALL_STATE(10566)] = 365670, - [SMALL_STATE(10567)] = 365677, - [SMALL_STATE(10568)] = 365684, - [SMALL_STATE(10569)] = 365691, - [SMALL_STATE(10570)] = 365698, - [SMALL_STATE(10571)] = 365705, - [SMALL_STATE(10572)] = 365712, - [SMALL_STATE(10573)] = 365719, - [SMALL_STATE(10574)] = 365726, - [SMALL_STATE(10575)] = 365733, - [SMALL_STATE(10576)] = 365740, - [SMALL_STATE(10577)] = 365747, - [SMALL_STATE(10578)] = 365754, - [SMALL_STATE(10579)] = 365761, - [SMALL_STATE(10580)] = 365768, - [SMALL_STATE(10581)] = 365775, - [SMALL_STATE(10582)] = 365782, - [SMALL_STATE(10583)] = 365789, - [SMALL_STATE(10584)] = 365796, - [SMALL_STATE(10585)] = 365803, - [SMALL_STATE(10586)] = 365810, - [SMALL_STATE(10587)] = 365817, - [SMALL_STATE(10588)] = 365824, - [SMALL_STATE(10589)] = 365831, - [SMALL_STATE(10590)] = 365838, - [SMALL_STATE(10591)] = 365845, - [SMALL_STATE(10592)] = 365852, - [SMALL_STATE(10593)] = 365859, - [SMALL_STATE(10594)] = 365866, - [SMALL_STATE(10595)] = 365873, - [SMALL_STATE(10596)] = 365880, - [SMALL_STATE(10597)] = 365887, - [SMALL_STATE(10598)] = 365894, - [SMALL_STATE(10599)] = 365901, - [SMALL_STATE(10600)] = 365908, - [SMALL_STATE(10601)] = 365915, - [SMALL_STATE(10602)] = 365922, - [SMALL_STATE(10603)] = 365929, - [SMALL_STATE(10604)] = 365936, - [SMALL_STATE(10605)] = 365943, - [SMALL_STATE(10606)] = 365950, - [SMALL_STATE(10607)] = 365957, - [SMALL_STATE(10608)] = 365964, - [SMALL_STATE(10609)] = 365971, - [SMALL_STATE(10610)] = 365978, - [SMALL_STATE(10611)] = 365985, - [SMALL_STATE(10612)] = 365992, - [SMALL_STATE(10613)] = 365999, - [SMALL_STATE(10614)] = 366006, - [SMALL_STATE(10615)] = 366013, - [SMALL_STATE(10616)] = 366020, - [SMALL_STATE(10617)] = 366027, - [SMALL_STATE(10618)] = 366034, - [SMALL_STATE(10619)] = 366041, - [SMALL_STATE(10620)] = 366048, - [SMALL_STATE(10621)] = 366055, - [SMALL_STATE(10622)] = 366062, - [SMALL_STATE(10623)] = 366069, - [SMALL_STATE(10624)] = 366076, - [SMALL_STATE(10625)] = 366083, - [SMALL_STATE(10626)] = 366090, - [SMALL_STATE(10627)] = 366097, - [SMALL_STATE(10628)] = 366104, - [SMALL_STATE(10629)] = 366111, - [SMALL_STATE(10630)] = 366118, - [SMALL_STATE(10631)] = 366125, - [SMALL_STATE(10632)] = 366132, - [SMALL_STATE(10633)] = 366139, - [SMALL_STATE(10634)] = 366146, - [SMALL_STATE(10635)] = 366153, - [SMALL_STATE(10636)] = 366160, - [SMALL_STATE(10637)] = 366167, - [SMALL_STATE(10638)] = 366174, - [SMALL_STATE(10639)] = 366181, - [SMALL_STATE(10640)] = 366188, - [SMALL_STATE(10641)] = 366195, - [SMALL_STATE(10642)] = 366202, - [SMALL_STATE(10643)] = 366209, - [SMALL_STATE(10644)] = 366216, - [SMALL_STATE(10645)] = 366223, - [SMALL_STATE(10646)] = 366230, - [SMALL_STATE(10647)] = 366237, - [SMALL_STATE(10648)] = 366244, - [SMALL_STATE(10649)] = 366251, - [SMALL_STATE(10650)] = 366258, - [SMALL_STATE(10651)] = 366265, - [SMALL_STATE(10652)] = 366272, - [SMALL_STATE(10653)] = 366279, - [SMALL_STATE(10654)] = 366286, - [SMALL_STATE(10655)] = 366293, - [SMALL_STATE(10656)] = 366300, - [SMALL_STATE(10657)] = 366307, - [SMALL_STATE(10658)] = 366314, - [SMALL_STATE(10659)] = 366321, - [SMALL_STATE(10660)] = 366328, - [SMALL_STATE(10661)] = 366335, - [SMALL_STATE(10662)] = 366342, - [SMALL_STATE(10663)] = 366349, - [SMALL_STATE(10664)] = 366356, - [SMALL_STATE(10665)] = 366363, - [SMALL_STATE(10666)] = 366370, - [SMALL_STATE(10667)] = 366377, - [SMALL_STATE(10668)] = 366384, - [SMALL_STATE(10669)] = 366391, - [SMALL_STATE(10670)] = 366398, - [SMALL_STATE(10671)] = 366405, - [SMALL_STATE(10672)] = 366412, - [SMALL_STATE(10673)] = 366419, - [SMALL_STATE(10674)] = 366426, - [SMALL_STATE(10675)] = 366433, - [SMALL_STATE(10676)] = 366440, - [SMALL_STATE(10677)] = 366447, - [SMALL_STATE(10678)] = 366454, - [SMALL_STATE(10679)] = 366461, - [SMALL_STATE(10680)] = 366468, - [SMALL_STATE(10681)] = 366475, - [SMALL_STATE(10682)] = 366482, - [SMALL_STATE(10683)] = 366489, - [SMALL_STATE(10684)] = 366496, - [SMALL_STATE(10685)] = 366503, - [SMALL_STATE(10686)] = 366510, - [SMALL_STATE(10687)] = 366517, - [SMALL_STATE(10688)] = 366524, - [SMALL_STATE(10689)] = 366531, - [SMALL_STATE(10690)] = 366538, - [SMALL_STATE(10691)] = 366545, - [SMALL_STATE(10692)] = 366552, - [SMALL_STATE(10693)] = 366559, - [SMALL_STATE(10694)] = 366566, - [SMALL_STATE(10695)] = 366573, - [SMALL_STATE(10696)] = 366580, - [SMALL_STATE(10697)] = 366587, - [SMALL_STATE(10698)] = 366594, - [SMALL_STATE(10699)] = 366601, - [SMALL_STATE(10700)] = 366608, - [SMALL_STATE(10701)] = 366615, - [SMALL_STATE(10702)] = 366622, - [SMALL_STATE(10703)] = 366629, - [SMALL_STATE(10704)] = 366636, - [SMALL_STATE(10705)] = 366643, - [SMALL_STATE(10706)] = 366650, - [SMALL_STATE(10707)] = 366657, - [SMALL_STATE(10708)] = 366664, - [SMALL_STATE(10709)] = 366671, - [SMALL_STATE(10710)] = 366678, - [SMALL_STATE(10711)] = 366685, - [SMALL_STATE(10712)] = 366692, - [SMALL_STATE(10713)] = 366699, - [SMALL_STATE(10714)] = 366706, - [SMALL_STATE(10715)] = 366713, - [SMALL_STATE(10716)] = 366720, - [SMALL_STATE(10717)] = 366727, - [SMALL_STATE(10718)] = 366734, - [SMALL_STATE(10719)] = 366741, - [SMALL_STATE(10720)] = 366748, - [SMALL_STATE(10721)] = 366755, - [SMALL_STATE(10722)] = 366762, - [SMALL_STATE(10723)] = 366769, - [SMALL_STATE(10724)] = 366776, - [SMALL_STATE(10725)] = 366783, - [SMALL_STATE(10726)] = 366790, - [SMALL_STATE(10727)] = 366797, - [SMALL_STATE(10728)] = 366804, - [SMALL_STATE(10729)] = 366811, - [SMALL_STATE(10730)] = 366818, - [SMALL_STATE(10731)] = 366825, - [SMALL_STATE(10732)] = 366832, - [SMALL_STATE(10733)] = 366839, - [SMALL_STATE(10734)] = 366846, - [SMALL_STATE(10735)] = 366853, - [SMALL_STATE(10736)] = 366860, - [SMALL_STATE(10737)] = 366867, - [SMALL_STATE(10738)] = 366874, - [SMALL_STATE(10739)] = 366881, - [SMALL_STATE(10740)] = 366888, - [SMALL_STATE(10741)] = 366895, - [SMALL_STATE(10742)] = 366902, - [SMALL_STATE(10743)] = 366909, - [SMALL_STATE(10744)] = 366916, - [SMALL_STATE(10745)] = 366923, - [SMALL_STATE(10746)] = 366930, - [SMALL_STATE(10747)] = 366937, - [SMALL_STATE(10748)] = 366944, - [SMALL_STATE(10749)] = 366951, - [SMALL_STATE(10750)] = 366958, - [SMALL_STATE(10751)] = 366965, - [SMALL_STATE(10752)] = 366972, - [SMALL_STATE(10753)] = 366979, - [SMALL_STATE(10754)] = 366986, - [SMALL_STATE(10755)] = 366993, - [SMALL_STATE(10756)] = 367000, - [SMALL_STATE(10757)] = 367007, - [SMALL_STATE(10758)] = 367014, - [SMALL_STATE(10759)] = 367021, - [SMALL_STATE(10760)] = 367028, - [SMALL_STATE(10761)] = 367035, - [SMALL_STATE(10762)] = 367042, - [SMALL_STATE(10763)] = 367049, - [SMALL_STATE(10764)] = 367056, - [SMALL_STATE(10765)] = 367063, - [SMALL_STATE(10766)] = 367070, - [SMALL_STATE(10767)] = 367077, - [SMALL_STATE(10768)] = 367084, - [SMALL_STATE(10769)] = 367091, - [SMALL_STATE(10770)] = 367098, - [SMALL_STATE(10771)] = 367105, - [SMALL_STATE(10772)] = 367112, - [SMALL_STATE(10773)] = 367119, - [SMALL_STATE(10774)] = 367126, - [SMALL_STATE(10775)] = 367133, - [SMALL_STATE(10776)] = 367140, - [SMALL_STATE(10777)] = 367147, - [SMALL_STATE(10778)] = 367154, - [SMALL_STATE(10779)] = 367161, - [SMALL_STATE(10780)] = 367168, - [SMALL_STATE(10781)] = 367175, - [SMALL_STATE(10782)] = 367182, - [SMALL_STATE(10783)] = 367189, - [SMALL_STATE(10784)] = 367196, - [SMALL_STATE(10785)] = 367203, - [SMALL_STATE(10786)] = 367210, - [SMALL_STATE(10787)] = 367217, - [SMALL_STATE(10788)] = 367224, - [SMALL_STATE(10789)] = 367231, - [SMALL_STATE(10790)] = 367238, - [SMALL_STATE(10791)] = 367245, - [SMALL_STATE(10792)] = 367252, - [SMALL_STATE(10793)] = 367259, - [SMALL_STATE(10794)] = 367266, - [SMALL_STATE(10795)] = 367273, - [SMALL_STATE(10796)] = 367280, - [SMALL_STATE(10797)] = 367287, - [SMALL_STATE(10798)] = 367294, - [SMALL_STATE(10799)] = 367301, - [SMALL_STATE(10800)] = 367308, - [SMALL_STATE(10801)] = 367315, - [SMALL_STATE(10802)] = 367322, - [SMALL_STATE(10803)] = 367329, - [SMALL_STATE(10804)] = 367336, - [SMALL_STATE(10805)] = 367343, - [SMALL_STATE(10806)] = 367350, - [SMALL_STATE(10807)] = 367357, - [SMALL_STATE(10808)] = 367364, - [SMALL_STATE(10809)] = 367371, - [SMALL_STATE(10810)] = 367378, - [SMALL_STATE(10811)] = 367385, - [SMALL_STATE(10812)] = 367392, - [SMALL_STATE(10813)] = 367399, - [SMALL_STATE(10814)] = 367406, - [SMALL_STATE(10815)] = 367413, - [SMALL_STATE(10816)] = 367420, - [SMALL_STATE(10817)] = 367427, - [SMALL_STATE(10818)] = 367434, - [SMALL_STATE(10819)] = 367441, - [SMALL_STATE(10820)] = 367448, - [SMALL_STATE(10821)] = 367455, - [SMALL_STATE(10822)] = 367462, - [SMALL_STATE(10823)] = 367469, - [SMALL_STATE(10824)] = 367476, - [SMALL_STATE(10825)] = 367483, - [SMALL_STATE(10826)] = 367490, - [SMALL_STATE(10827)] = 367497, - [SMALL_STATE(10828)] = 367504, - [SMALL_STATE(10829)] = 367511, - [SMALL_STATE(10830)] = 367518, - [SMALL_STATE(10831)] = 367525, - [SMALL_STATE(10832)] = 367532, - [SMALL_STATE(10833)] = 367539, - [SMALL_STATE(10834)] = 367546, - [SMALL_STATE(10835)] = 367553, - [SMALL_STATE(10836)] = 367560, - [SMALL_STATE(10837)] = 367567, - [SMALL_STATE(10838)] = 367574, - [SMALL_STATE(10839)] = 367581, - [SMALL_STATE(10840)] = 367588, - [SMALL_STATE(10841)] = 367595, - [SMALL_STATE(10842)] = 367602, - [SMALL_STATE(10843)] = 367609, - [SMALL_STATE(10844)] = 367616, - [SMALL_STATE(10845)] = 367623, - [SMALL_STATE(10846)] = 367630, - [SMALL_STATE(10847)] = 367637, - [SMALL_STATE(10848)] = 367644, - [SMALL_STATE(10849)] = 367651, - [SMALL_STATE(10850)] = 367658, - [SMALL_STATE(10851)] = 367665, - [SMALL_STATE(10852)] = 367672, - [SMALL_STATE(10853)] = 367679, - [SMALL_STATE(10854)] = 367686, - [SMALL_STATE(10855)] = 367693, - [SMALL_STATE(10856)] = 367700, - [SMALL_STATE(10857)] = 367707, - [SMALL_STATE(10858)] = 367714, - [SMALL_STATE(10859)] = 367721, - [SMALL_STATE(10860)] = 367728, - [SMALL_STATE(10861)] = 367735, - [SMALL_STATE(10862)] = 367742, - [SMALL_STATE(10863)] = 367749, - [SMALL_STATE(10864)] = 367756, - [SMALL_STATE(10865)] = 367763, - [SMALL_STATE(10866)] = 367770, - [SMALL_STATE(10867)] = 367777, - [SMALL_STATE(10868)] = 367784, - [SMALL_STATE(10869)] = 367791, - [SMALL_STATE(10870)] = 367798, - [SMALL_STATE(10871)] = 367805, - [SMALL_STATE(10872)] = 367812, - [SMALL_STATE(10873)] = 367819, - [SMALL_STATE(10874)] = 367826, - [SMALL_STATE(10875)] = 367833, - [SMALL_STATE(10876)] = 367840, - [SMALL_STATE(10877)] = 367847, - [SMALL_STATE(10878)] = 367854, - [SMALL_STATE(10879)] = 367861, - [SMALL_STATE(10880)] = 367868, - [SMALL_STATE(10881)] = 367875, - [SMALL_STATE(10882)] = 367882, - [SMALL_STATE(10883)] = 367889, - [SMALL_STATE(10884)] = 367896, - [SMALL_STATE(10885)] = 367903, - [SMALL_STATE(10886)] = 367910, - [SMALL_STATE(10887)] = 367917, - [SMALL_STATE(10888)] = 367924, - [SMALL_STATE(10889)] = 367931, - [SMALL_STATE(10890)] = 367938, - [SMALL_STATE(10891)] = 367945, - [SMALL_STATE(10892)] = 367952, - [SMALL_STATE(10893)] = 367959, - [SMALL_STATE(10894)] = 367966, - [SMALL_STATE(10895)] = 367973, - [SMALL_STATE(10896)] = 367980, - [SMALL_STATE(10897)] = 367987, - [SMALL_STATE(10898)] = 367994, - [SMALL_STATE(10899)] = 368001, - [SMALL_STATE(10900)] = 368008, - [SMALL_STATE(10901)] = 368015, - [SMALL_STATE(10902)] = 368022, - [SMALL_STATE(10903)] = 368029, - [SMALL_STATE(10904)] = 368036, - [SMALL_STATE(10905)] = 368043, - [SMALL_STATE(10906)] = 368050, - [SMALL_STATE(10907)] = 368057, - [SMALL_STATE(10908)] = 368064, - [SMALL_STATE(10909)] = 368071, - [SMALL_STATE(10910)] = 368078, - [SMALL_STATE(10911)] = 368085, - [SMALL_STATE(10912)] = 368092, - [SMALL_STATE(10913)] = 368099, - [SMALL_STATE(10914)] = 368106, - [SMALL_STATE(10915)] = 368113, - [SMALL_STATE(10916)] = 368120, - [SMALL_STATE(10917)] = 368127, - [SMALL_STATE(10918)] = 368134, - [SMALL_STATE(10919)] = 368141, - [SMALL_STATE(10920)] = 368148, - [SMALL_STATE(10921)] = 368155, - [SMALL_STATE(10922)] = 368162, - [SMALL_STATE(10923)] = 368169, - [SMALL_STATE(10924)] = 368176, - [SMALL_STATE(10925)] = 368183, - [SMALL_STATE(10926)] = 368190, - [SMALL_STATE(10927)] = 368197, - [SMALL_STATE(10928)] = 368204, - [SMALL_STATE(10929)] = 368211, - [SMALL_STATE(10930)] = 368218, - [SMALL_STATE(10931)] = 368225, - [SMALL_STATE(10932)] = 368232, - [SMALL_STATE(10933)] = 368239, - [SMALL_STATE(10934)] = 368246, - [SMALL_STATE(10935)] = 368253, - [SMALL_STATE(10936)] = 368260, - [SMALL_STATE(10937)] = 368267, - [SMALL_STATE(10938)] = 368274, - [SMALL_STATE(10939)] = 368281, - [SMALL_STATE(10940)] = 368288, - [SMALL_STATE(10941)] = 368295, - [SMALL_STATE(10942)] = 368302, - [SMALL_STATE(10943)] = 368309, - [SMALL_STATE(10944)] = 368316, - [SMALL_STATE(10945)] = 368323, - [SMALL_STATE(10946)] = 368330, - [SMALL_STATE(10947)] = 368337, - [SMALL_STATE(10948)] = 368344, - [SMALL_STATE(10949)] = 368351, - [SMALL_STATE(10950)] = 368358, - [SMALL_STATE(10951)] = 368365, - [SMALL_STATE(10952)] = 368372, - [SMALL_STATE(10953)] = 368379, - [SMALL_STATE(10954)] = 368386, - [SMALL_STATE(10955)] = 368393, - [SMALL_STATE(10956)] = 368400, - [SMALL_STATE(10957)] = 368407, - [SMALL_STATE(10958)] = 368414, - [SMALL_STATE(10959)] = 368421, - [SMALL_STATE(10960)] = 368428, - [SMALL_STATE(10961)] = 368435, - [SMALL_STATE(10962)] = 368442, - [SMALL_STATE(10963)] = 368449, - [SMALL_STATE(10964)] = 368456, - [SMALL_STATE(10965)] = 368463, - [SMALL_STATE(10966)] = 368470, - [SMALL_STATE(10967)] = 368477, - [SMALL_STATE(10968)] = 368484, - [SMALL_STATE(10969)] = 368491, - [SMALL_STATE(10970)] = 368498, - [SMALL_STATE(10971)] = 368505, - [SMALL_STATE(10972)] = 368512, - [SMALL_STATE(10973)] = 368519, - [SMALL_STATE(10974)] = 368526, - [SMALL_STATE(10975)] = 368533, - [SMALL_STATE(10976)] = 368540, - [SMALL_STATE(10977)] = 368547, - [SMALL_STATE(10978)] = 368554, - [SMALL_STATE(10979)] = 368561, - [SMALL_STATE(10980)] = 368568, - [SMALL_STATE(10981)] = 368575, - [SMALL_STATE(10982)] = 368582, - [SMALL_STATE(10983)] = 368589, - [SMALL_STATE(10984)] = 368596, - [SMALL_STATE(10985)] = 368603, - [SMALL_STATE(10986)] = 368610, - [SMALL_STATE(10987)] = 368617, - [SMALL_STATE(10988)] = 368624, - [SMALL_STATE(10989)] = 368631, - [SMALL_STATE(10990)] = 368638, - [SMALL_STATE(10991)] = 368645, - [SMALL_STATE(10992)] = 368652, - [SMALL_STATE(10993)] = 368659, - [SMALL_STATE(10994)] = 368666, - [SMALL_STATE(10995)] = 368673, - [SMALL_STATE(10996)] = 368680, - [SMALL_STATE(10997)] = 368687, - [SMALL_STATE(10998)] = 368694, - [SMALL_STATE(10999)] = 368701, - [SMALL_STATE(11000)] = 368708, - [SMALL_STATE(11001)] = 368715, - [SMALL_STATE(11002)] = 368722, - [SMALL_STATE(11003)] = 368729, - [SMALL_STATE(11004)] = 368736, - [SMALL_STATE(11005)] = 368743, - [SMALL_STATE(11006)] = 368750, - [SMALL_STATE(11007)] = 368757, - [SMALL_STATE(11008)] = 368764, - [SMALL_STATE(11009)] = 368771, - [SMALL_STATE(11010)] = 368778, - [SMALL_STATE(11011)] = 368785, - [SMALL_STATE(11012)] = 368792, - [SMALL_STATE(11013)] = 368799, - [SMALL_STATE(11014)] = 368806, - [SMALL_STATE(11015)] = 368813, - [SMALL_STATE(11016)] = 368820, - [SMALL_STATE(11017)] = 368827, - [SMALL_STATE(11018)] = 368834, - [SMALL_STATE(11019)] = 368841, - [SMALL_STATE(11020)] = 368848, - [SMALL_STATE(11021)] = 368855, - [SMALL_STATE(11022)] = 368862, - [SMALL_STATE(11023)] = 368869, - [SMALL_STATE(11024)] = 368876, - [SMALL_STATE(11025)] = 368883, - [SMALL_STATE(11026)] = 368890, - [SMALL_STATE(11027)] = 368897, - [SMALL_STATE(11028)] = 368904, - [SMALL_STATE(11029)] = 368911, - [SMALL_STATE(11030)] = 368918, - [SMALL_STATE(11031)] = 368925, - [SMALL_STATE(11032)] = 368932, - [SMALL_STATE(11033)] = 368939, - [SMALL_STATE(11034)] = 368946, - [SMALL_STATE(11035)] = 368953, - [SMALL_STATE(11036)] = 368960, - [SMALL_STATE(11037)] = 368967, - [SMALL_STATE(11038)] = 368974, - [SMALL_STATE(11039)] = 368981, - [SMALL_STATE(11040)] = 368988, - [SMALL_STATE(11041)] = 368995, - [SMALL_STATE(11042)] = 369002, - [SMALL_STATE(11043)] = 369009, - [SMALL_STATE(11044)] = 369016, - [SMALL_STATE(11045)] = 369023, - [SMALL_STATE(11046)] = 369030, - [SMALL_STATE(11047)] = 369037, - [SMALL_STATE(11048)] = 369044, - [SMALL_STATE(11049)] = 369051, - [SMALL_STATE(11050)] = 369058, - [SMALL_STATE(11051)] = 369065, - [SMALL_STATE(11052)] = 369072, - [SMALL_STATE(11053)] = 369079, - [SMALL_STATE(11054)] = 369086, - [SMALL_STATE(11055)] = 369093, - [SMALL_STATE(11056)] = 369100, - [SMALL_STATE(11057)] = 369107, - [SMALL_STATE(11058)] = 369114, - [SMALL_STATE(11059)] = 369121, - [SMALL_STATE(11060)] = 369128, - [SMALL_STATE(11061)] = 369135, - [SMALL_STATE(11062)] = 369142, - [SMALL_STATE(11063)] = 369149, - [SMALL_STATE(11064)] = 369156, - [SMALL_STATE(11065)] = 369163, - [SMALL_STATE(11066)] = 369170, - [SMALL_STATE(11067)] = 369177, - [SMALL_STATE(11068)] = 369184, - [SMALL_STATE(11069)] = 369191, - [SMALL_STATE(11070)] = 369198, - [SMALL_STATE(11071)] = 369205, - [SMALL_STATE(11072)] = 369212, - [SMALL_STATE(11073)] = 369219, - [SMALL_STATE(11074)] = 369226, - [SMALL_STATE(11075)] = 369233, - [SMALL_STATE(11076)] = 369240, - [SMALL_STATE(11077)] = 369247, - [SMALL_STATE(11078)] = 369254, - [SMALL_STATE(11079)] = 369261, - [SMALL_STATE(11080)] = 369268, - [SMALL_STATE(11081)] = 369275, - [SMALL_STATE(11082)] = 369282, - [SMALL_STATE(11083)] = 369289, - [SMALL_STATE(11084)] = 369296, - [SMALL_STATE(11085)] = 369303, - [SMALL_STATE(11086)] = 369310, - [SMALL_STATE(11087)] = 369317, - [SMALL_STATE(11088)] = 369324, - [SMALL_STATE(11089)] = 369331, - [SMALL_STATE(11090)] = 369338, - [SMALL_STATE(11091)] = 369345, - [SMALL_STATE(11092)] = 369352, - [SMALL_STATE(11093)] = 369359, - [SMALL_STATE(11094)] = 369366, - [SMALL_STATE(11095)] = 369373, - [SMALL_STATE(11096)] = 369380, - [SMALL_STATE(11097)] = 369387, - [SMALL_STATE(11098)] = 369394, - [SMALL_STATE(11099)] = 369401, - [SMALL_STATE(11100)] = 369408, - [SMALL_STATE(11101)] = 369415, - [SMALL_STATE(11102)] = 369422, - [SMALL_STATE(11103)] = 369429, - [SMALL_STATE(11104)] = 369436, - [SMALL_STATE(11105)] = 369443, - [SMALL_STATE(11106)] = 369450, - [SMALL_STATE(11107)] = 369457, - [SMALL_STATE(11108)] = 369464, - [SMALL_STATE(11109)] = 369471, - [SMALL_STATE(11110)] = 369478, - [SMALL_STATE(11111)] = 369485, - [SMALL_STATE(11112)] = 369492, - [SMALL_STATE(11113)] = 369499, - [SMALL_STATE(11114)] = 369506, - [SMALL_STATE(11115)] = 369513, - [SMALL_STATE(11116)] = 369520, - [SMALL_STATE(11117)] = 369527, - [SMALL_STATE(11118)] = 369534, - [SMALL_STATE(11119)] = 369541, - [SMALL_STATE(11120)] = 369548, - [SMALL_STATE(11121)] = 369555, - [SMALL_STATE(11122)] = 369562, - [SMALL_STATE(11123)] = 369569, - [SMALL_STATE(11124)] = 369576, - [SMALL_STATE(11125)] = 369583, - [SMALL_STATE(11126)] = 369590, - [SMALL_STATE(11127)] = 369597, - [SMALL_STATE(11128)] = 369604, - [SMALL_STATE(11129)] = 369611, - [SMALL_STATE(11130)] = 369618, - [SMALL_STATE(11131)] = 369625, - [SMALL_STATE(11132)] = 369632, - [SMALL_STATE(11133)] = 369639, - [SMALL_STATE(11134)] = 369646, - [SMALL_STATE(11135)] = 369653, - [SMALL_STATE(11136)] = 369660, - [SMALL_STATE(11137)] = 369667, - [SMALL_STATE(11138)] = 369674, - [SMALL_STATE(11139)] = 369681, - [SMALL_STATE(11140)] = 369688, - [SMALL_STATE(11141)] = 369695, - [SMALL_STATE(11142)] = 369702, - [SMALL_STATE(11143)] = 369709, - [SMALL_STATE(11144)] = 369716, - [SMALL_STATE(11145)] = 369723, - [SMALL_STATE(11146)] = 369730, - [SMALL_STATE(11147)] = 369737, - [SMALL_STATE(11148)] = 369744, - [SMALL_STATE(11149)] = 369751, - [SMALL_STATE(11150)] = 369758, - [SMALL_STATE(11151)] = 369765, - [SMALL_STATE(11152)] = 369772, - [SMALL_STATE(11153)] = 369779, - [SMALL_STATE(11154)] = 369786, - [SMALL_STATE(11155)] = 369793, - [SMALL_STATE(11156)] = 369800, - [SMALL_STATE(11157)] = 369807, - [SMALL_STATE(11158)] = 369814, - [SMALL_STATE(11159)] = 369821, - [SMALL_STATE(11160)] = 369828, - [SMALL_STATE(11161)] = 369835, - [SMALL_STATE(11162)] = 369842, - [SMALL_STATE(11163)] = 369849, - [SMALL_STATE(11164)] = 369856, - [SMALL_STATE(11165)] = 369863, - [SMALL_STATE(11166)] = 369870, - [SMALL_STATE(11167)] = 369877, - [SMALL_STATE(11168)] = 369884, - [SMALL_STATE(11169)] = 369891, - [SMALL_STATE(11170)] = 369898, - [SMALL_STATE(11171)] = 369905, - [SMALL_STATE(11172)] = 369912, - [SMALL_STATE(11173)] = 369919, - [SMALL_STATE(11174)] = 369926, - [SMALL_STATE(11175)] = 369933, - [SMALL_STATE(11176)] = 369940, - [SMALL_STATE(11177)] = 369947, - [SMALL_STATE(11178)] = 369954, - [SMALL_STATE(11179)] = 369961, - [SMALL_STATE(11180)] = 369968, - [SMALL_STATE(11181)] = 369975, - [SMALL_STATE(11182)] = 369982, - [SMALL_STATE(11183)] = 369989, - [SMALL_STATE(11184)] = 369996, - [SMALL_STATE(11185)] = 370003, - [SMALL_STATE(11186)] = 370010, - [SMALL_STATE(11187)] = 370017, - [SMALL_STATE(11188)] = 370024, - [SMALL_STATE(11189)] = 370031, - [SMALL_STATE(11190)] = 370038, - [SMALL_STATE(11191)] = 370045, - [SMALL_STATE(11192)] = 370052, - [SMALL_STATE(11193)] = 370059, - [SMALL_STATE(11194)] = 370066, - [SMALL_STATE(11195)] = 370073, - [SMALL_STATE(11196)] = 370080, - [SMALL_STATE(11197)] = 370087, - [SMALL_STATE(11198)] = 370094, - [SMALL_STATE(11199)] = 370101, - [SMALL_STATE(11200)] = 370108, - [SMALL_STATE(11201)] = 370115, - [SMALL_STATE(11202)] = 370122, - [SMALL_STATE(11203)] = 370129, - [SMALL_STATE(11204)] = 370136, - [SMALL_STATE(11205)] = 370143, - [SMALL_STATE(11206)] = 370150, - [SMALL_STATE(11207)] = 370157, - [SMALL_STATE(11208)] = 370164, - [SMALL_STATE(11209)] = 370171, - [SMALL_STATE(11210)] = 370178, - [SMALL_STATE(11211)] = 370185, - [SMALL_STATE(11212)] = 370192, - [SMALL_STATE(11213)] = 370199, - [SMALL_STATE(11214)] = 370206, - [SMALL_STATE(11215)] = 370213, - [SMALL_STATE(11216)] = 370220, - [SMALL_STATE(11217)] = 370227, - [SMALL_STATE(11218)] = 370234, - [SMALL_STATE(11219)] = 370241, - [SMALL_STATE(11220)] = 370248, - [SMALL_STATE(11221)] = 370255, - [SMALL_STATE(11222)] = 370262, - [SMALL_STATE(11223)] = 370269, - [SMALL_STATE(11224)] = 370276, - [SMALL_STATE(11225)] = 370283, - [SMALL_STATE(11226)] = 370290, - [SMALL_STATE(11227)] = 370297, - [SMALL_STATE(11228)] = 370304, - [SMALL_STATE(11229)] = 370311, - [SMALL_STATE(11230)] = 370318, - [SMALL_STATE(11231)] = 370325, - [SMALL_STATE(11232)] = 370332, - [SMALL_STATE(11233)] = 370339, - [SMALL_STATE(11234)] = 370346, - [SMALL_STATE(11235)] = 370353, - [SMALL_STATE(11236)] = 370360, - [SMALL_STATE(11237)] = 370367, - [SMALL_STATE(11238)] = 370374, - [SMALL_STATE(11239)] = 370381, - [SMALL_STATE(11240)] = 370388, - [SMALL_STATE(11241)] = 370395, - [SMALL_STATE(11242)] = 370402, - [SMALL_STATE(11243)] = 370409, - [SMALL_STATE(11244)] = 370416, - [SMALL_STATE(11245)] = 370423, - [SMALL_STATE(11246)] = 370430, - [SMALL_STATE(11247)] = 370437, - [SMALL_STATE(11248)] = 370444, - [SMALL_STATE(11249)] = 370451, - [SMALL_STATE(11250)] = 370458, - [SMALL_STATE(11251)] = 370465, - [SMALL_STATE(11252)] = 370472, - [SMALL_STATE(11253)] = 370479, - [SMALL_STATE(11254)] = 370486, - [SMALL_STATE(11255)] = 370493, - [SMALL_STATE(11256)] = 370500, - [SMALL_STATE(11257)] = 370507, - [SMALL_STATE(11258)] = 370514, - [SMALL_STATE(11259)] = 370521, - [SMALL_STATE(11260)] = 370528, - [SMALL_STATE(11261)] = 370535, - [SMALL_STATE(11262)] = 370542, - [SMALL_STATE(11263)] = 370549, - [SMALL_STATE(11264)] = 370556, - [SMALL_STATE(11265)] = 370563, - [SMALL_STATE(11266)] = 370570, - [SMALL_STATE(11267)] = 370577, - [SMALL_STATE(11268)] = 370584, - [SMALL_STATE(11269)] = 370591, - [SMALL_STATE(11270)] = 370598, - [SMALL_STATE(11271)] = 370605, - [SMALL_STATE(11272)] = 370612, - [SMALL_STATE(11273)] = 370619, - [SMALL_STATE(11274)] = 370626, - [SMALL_STATE(11275)] = 370633, - [SMALL_STATE(11276)] = 370640, - [SMALL_STATE(11277)] = 370647, - [SMALL_STATE(11278)] = 370654, - [SMALL_STATE(11279)] = 370661, - [SMALL_STATE(11280)] = 370668, - [SMALL_STATE(11281)] = 370675, - [SMALL_STATE(11282)] = 370682, - [SMALL_STATE(11283)] = 370689, - [SMALL_STATE(11284)] = 370696, - [SMALL_STATE(11285)] = 370703, - [SMALL_STATE(11286)] = 370710, - [SMALL_STATE(11287)] = 370717, - [SMALL_STATE(11288)] = 370724, - [SMALL_STATE(11289)] = 370731, - [SMALL_STATE(11290)] = 370738, - [SMALL_STATE(11291)] = 370745, - [SMALL_STATE(11292)] = 370752, - [SMALL_STATE(11293)] = 370759, - [SMALL_STATE(11294)] = 370766, - [SMALL_STATE(11295)] = 370773, - [SMALL_STATE(11296)] = 370780, - [SMALL_STATE(11297)] = 370787, - [SMALL_STATE(11298)] = 370794, - [SMALL_STATE(11299)] = 370801, - [SMALL_STATE(11300)] = 370808, - [SMALL_STATE(11301)] = 370815, - [SMALL_STATE(11302)] = 370822, - [SMALL_STATE(11303)] = 370829, - [SMALL_STATE(11304)] = 370836, - [SMALL_STATE(11305)] = 370843, - [SMALL_STATE(11306)] = 370850, - [SMALL_STATE(11307)] = 370857, - [SMALL_STATE(11308)] = 370864, - [SMALL_STATE(11309)] = 370871, - [SMALL_STATE(11310)] = 370878, - [SMALL_STATE(11311)] = 370885, - [SMALL_STATE(11312)] = 370892, - [SMALL_STATE(11313)] = 370899, - [SMALL_STATE(11314)] = 370906, - [SMALL_STATE(11315)] = 370913, - [SMALL_STATE(11316)] = 370920, - [SMALL_STATE(11317)] = 370927, - [SMALL_STATE(11318)] = 370934, - [SMALL_STATE(11319)] = 370941, - [SMALL_STATE(11320)] = 370948, - [SMALL_STATE(11321)] = 370955, - [SMALL_STATE(11322)] = 370962, - [SMALL_STATE(11323)] = 370969, - [SMALL_STATE(11324)] = 370976, - [SMALL_STATE(11325)] = 370983, - [SMALL_STATE(11326)] = 370990, - [SMALL_STATE(11327)] = 370997, - [SMALL_STATE(11328)] = 371004, - [SMALL_STATE(11329)] = 371011, - [SMALL_STATE(11330)] = 371018, - [SMALL_STATE(11331)] = 371025, - [SMALL_STATE(11332)] = 371032, - [SMALL_STATE(11333)] = 371039, - [SMALL_STATE(11334)] = 371046, - [SMALL_STATE(11335)] = 371053, - [SMALL_STATE(11336)] = 371060, - [SMALL_STATE(11337)] = 371067, - [SMALL_STATE(11338)] = 371074, - [SMALL_STATE(11339)] = 371081, - [SMALL_STATE(11340)] = 371088, - [SMALL_STATE(11341)] = 371095, - [SMALL_STATE(11342)] = 371102, - [SMALL_STATE(11343)] = 371109, - [SMALL_STATE(11344)] = 371116, - [SMALL_STATE(11345)] = 371123, - [SMALL_STATE(11346)] = 371130, - [SMALL_STATE(11347)] = 371137, - [SMALL_STATE(11348)] = 371144, - [SMALL_STATE(11349)] = 371151, - [SMALL_STATE(11350)] = 371158, - [SMALL_STATE(11351)] = 371165, - [SMALL_STATE(11352)] = 371172, - [SMALL_STATE(11353)] = 371179, - [SMALL_STATE(11354)] = 371186, - [SMALL_STATE(11355)] = 371193, - [SMALL_STATE(11356)] = 371200, - [SMALL_STATE(11357)] = 371207, - [SMALL_STATE(11358)] = 371214, - [SMALL_STATE(11359)] = 371221, - [SMALL_STATE(11360)] = 371228, - [SMALL_STATE(11361)] = 371235, - [SMALL_STATE(11362)] = 371242, - [SMALL_STATE(11363)] = 371249, - [SMALL_STATE(11364)] = 371256, - [SMALL_STATE(11365)] = 371263, - [SMALL_STATE(11366)] = 371270, - [SMALL_STATE(11367)] = 371277, - [SMALL_STATE(11368)] = 371284, - [SMALL_STATE(11369)] = 371291, - [SMALL_STATE(11370)] = 371298, - [SMALL_STATE(11371)] = 371305, - [SMALL_STATE(11372)] = 371312, - [SMALL_STATE(11373)] = 371319, - [SMALL_STATE(11374)] = 371326, - [SMALL_STATE(11375)] = 371333, - [SMALL_STATE(11376)] = 371340, - [SMALL_STATE(11377)] = 371347, - [SMALL_STATE(11378)] = 371354, - [SMALL_STATE(11379)] = 371361, - [SMALL_STATE(11380)] = 371368, - [SMALL_STATE(11381)] = 371375, - [SMALL_STATE(11382)] = 371382, - [SMALL_STATE(11383)] = 371389, - [SMALL_STATE(11384)] = 371396, - [SMALL_STATE(11385)] = 371403, - [SMALL_STATE(11386)] = 371410, - [SMALL_STATE(11387)] = 371417, - [SMALL_STATE(11388)] = 371424, - [SMALL_STATE(11389)] = 371431, - [SMALL_STATE(11390)] = 371438, - [SMALL_STATE(11391)] = 371445, - [SMALL_STATE(11392)] = 371452, - [SMALL_STATE(11393)] = 371459, - [SMALL_STATE(11394)] = 371466, - [SMALL_STATE(11395)] = 371473, - [SMALL_STATE(11396)] = 371480, - [SMALL_STATE(11397)] = 371487, - [SMALL_STATE(11398)] = 371494, - [SMALL_STATE(11399)] = 371501, - [SMALL_STATE(11400)] = 371508, - [SMALL_STATE(11401)] = 371515, - [SMALL_STATE(11402)] = 371522, - [SMALL_STATE(11403)] = 371529, - [SMALL_STATE(11404)] = 371536, - [SMALL_STATE(11405)] = 371543, - [SMALL_STATE(11406)] = 371550, - [SMALL_STATE(11407)] = 371557, - [SMALL_STATE(11408)] = 371564, - [SMALL_STATE(11409)] = 371571, - [SMALL_STATE(11410)] = 371578, - [SMALL_STATE(11411)] = 371585, - [SMALL_STATE(11412)] = 371592, - [SMALL_STATE(11413)] = 371599, - [SMALL_STATE(11414)] = 371606, - [SMALL_STATE(11415)] = 371613, - [SMALL_STATE(11416)] = 371620, - [SMALL_STATE(11417)] = 371627, - [SMALL_STATE(11418)] = 371634, - [SMALL_STATE(11419)] = 371641, - [SMALL_STATE(11420)] = 371648, - [SMALL_STATE(11421)] = 371655, - [SMALL_STATE(11422)] = 371662, - [SMALL_STATE(11423)] = 371669, - [SMALL_STATE(11424)] = 371676, - [SMALL_STATE(11425)] = 371683, - [SMALL_STATE(11426)] = 371690, - [SMALL_STATE(11427)] = 371697, - [SMALL_STATE(11428)] = 371704, - [SMALL_STATE(11429)] = 371711, - [SMALL_STATE(11430)] = 371718, - [SMALL_STATE(11431)] = 371725, - [SMALL_STATE(11432)] = 371732, - [SMALL_STATE(11433)] = 371739, - [SMALL_STATE(11434)] = 371746, - [SMALL_STATE(11435)] = 371753, - [SMALL_STATE(11436)] = 371760, - [SMALL_STATE(11437)] = 371767, - [SMALL_STATE(11438)] = 371774, - [SMALL_STATE(11439)] = 371781, - [SMALL_STATE(11440)] = 371788, - [SMALL_STATE(11441)] = 371795, - [SMALL_STATE(11442)] = 371802, - [SMALL_STATE(11443)] = 371809, - [SMALL_STATE(11444)] = 371816, - [SMALL_STATE(11445)] = 371823, - [SMALL_STATE(11446)] = 371830, - [SMALL_STATE(11447)] = 371837, - [SMALL_STATE(11448)] = 371844, - [SMALL_STATE(11449)] = 371851, - [SMALL_STATE(11450)] = 371858, - [SMALL_STATE(11451)] = 371865, - [SMALL_STATE(11452)] = 371872, - [SMALL_STATE(11453)] = 371879, - [SMALL_STATE(11454)] = 371886, - [SMALL_STATE(11455)] = 371893, - [SMALL_STATE(11456)] = 371900, - [SMALL_STATE(11457)] = 371907, - [SMALL_STATE(11458)] = 371914, - [SMALL_STATE(11459)] = 371921, - [SMALL_STATE(11460)] = 371928, - [SMALL_STATE(11461)] = 371935, - [SMALL_STATE(11462)] = 371942, - [SMALL_STATE(11463)] = 371949, - [SMALL_STATE(11464)] = 371956, - [SMALL_STATE(11465)] = 371963, - [SMALL_STATE(11466)] = 371970, - [SMALL_STATE(11467)] = 371977, - [SMALL_STATE(11468)] = 371984, - [SMALL_STATE(11469)] = 371991, - [SMALL_STATE(11470)] = 371998, - [SMALL_STATE(11471)] = 372005, - [SMALL_STATE(11472)] = 372012, - [SMALL_STATE(11473)] = 372019, - [SMALL_STATE(11474)] = 372026, - [SMALL_STATE(11475)] = 372033, - [SMALL_STATE(11476)] = 372040, - [SMALL_STATE(11477)] = 372047, - [SMALL_STATE(11478)] = 372054, - [SMALL_STATE(11479)] = 372061, - [SMALL_STATE(11480)] = 372068, - [SMALL_STATE(11481)] = 372075, - [SMALL_STATE(11482)] = 372082, - [SMALL_STATE(11483)] = 372089, - [SMALL_STATE(11484)] = 372096, - [SMALL_STATE(11485)] = 372103, - [SMALL_STATE(11486)] = 372110, - [SMALL_STATE(11487)] = 372117, - [SMALL_STATE(11488)] = 372124, - [SMALL_STATE(11489)] = 372131, - [SMALL_STATE(11490)] = 372138, - [SMALL_STATE(11491)] = 372145, - [SMALL_STATE(11492)] = 372152, - [SMALL_STATE(11493)] = 372159, - [SMALL_STATE(11494)] = 372166, - [SMALL_STATE(11495)] = 372173, - [SMALL_STATE(11496)] = 372180, - [SMALL_STATE(11497)] = 372187, - [SMALL_STATE(11498)] = 372194, - [SMALL_STATE(11499)] = 372201, - [SMALL_STATE(11500)] = 372208, - [SMALL_STATE(11501)] = 372215, - [SMALL_STATE(11502)] = 372222, - [SMALL_STATE(11503)] = 372229, - [SMALL_STATE(11504)] = 372236, - [SMALL_STATE(11505)] = 372243, - [SMALL_STATE(11506)] = 372250, - [SMALL_STATE(11507)] = 372257, - [SMALL_STATE(11508)] = 372264, - [SMALL_STATE(11509)] = 372271, - [SMALL_STATE(11510)] = 372278, - [SMALL_STATE(11511)] = 372285, - [SMALL_STATE(11512)] = 372292, - [SMALL_STATE(11513)] = 372299, - [SMALL_STATE(11514)] = 372306, - [SMALL_STATE(11515)] = 372313, - [SMALL_STATE(11516)] = 372320, - [SMALL_STATE(11517)] = 372327, - [SMALL_STATE(11518)] = 372334, - [SMALL_STATE(11519)] = 372341, - [SMALL_STATE(11520)] = 372348, - [SMALL_STATE(11521)] = 372355, - [SMALL_STATE(11522)] = 372362, - [SMALL_STATE(11523)] = 372369, - [SMALL_STATE(11524)] = 372376, - [SMALL_STATE(11525)] = 372383, - [SMALL_STATE(11526)] = 372390, - [SMALL_STATE(11527)] = 372397, - [SMALL_STATE(11528)] = 372404, - [SMALL_STATE(11529)] = 372411, - [SMALL_STATE(11530)] = 372418, - [SMALL_STATE(11531)] = 372425, - [SMALL_STATE(11532)] = 372432, - [SMALL_STATE(11533)] = 372439, - [SMALL_STATE(11534)] = 372446, - [SMALL_STATE(11535)] = 372453, - [SMALL_STATE(11536)] = 372460, - [SMALL_STATE(11537)] = 372467, - [SMALL_STATE(11538)] = 372474, - [SMALL_STATE(11539)] = 372481, - [SMALL_STATE(11540)] = 372488, - [SMALL_STATE(11541)] = 372495, - [SMALL_STATE(11542)] = 372502, - [SMALL_STATE(11543)] = 372509, - [SMALL_STATE(11544)] = 372516, - [SMALL_STATE(11545)] = 372523, - [SMALL_STATE(11546)] = 372530, - [SMALL_STATE(11547)] = 372537, - [SMALL_STATE(11548)] = 372544, - [SMALL_STATE(11549)] = 372551, - [SMALL_STATE(11550)] = 372558, + [SMALL_STATE(3826)] = 0, + [SMALL_STATE(3827)] = 71, + [SMALL_STATE(3828)] = 142, + [SMALL_STATE(3829)] = 213, + [SMALL_STATE(3830)] = 288, + [SMALL_STATE(3831)] = 365, + [SMALL_STATE(3832)] = 444, + [SMALL_STATE(3833)] = 521, + [SMALL_STATE(3834)] = 592, + [SMALL_STATE(3835)] = 681, + [SMALL_STATE(3836)] = 756, + [SMALL_STATE(3837)] = 831, + [SMALL_STATE(3838)] = 902, + [SMALL_STATE(3839)] = 973, + [SMALL_STATE(3840)] = 1050, + [SMALL_STATE(3841)] = 1121, + [SMALL_STATE(3842)] = 1192, + [SMALL_STATE(3843)] = 1267, + [SMALL_STATE(3844)] = 1344, + [SMALL_STATE(3845)] = 1415, + [SMALL_STATE(3846)] = 1486, + [SMALL_STATE(3847)] = 1557, + [SMALL_STATE(3848)] = 1628, + [SMALL_STATE(3849)] = 1699, + [SMALL_STATE(3850)] = 1770, + [SMALL_STATE(3851)] = 1841, + [SMALL_STATE(3852)] = 1912, + [SMALL_STATE(3853)] = 1983, + [SMALL_STATE(3854)] = 2054, + [SMALL_STATE(3855)] = 2125, + [SMALL_STATE(3856)] = 2202, + [SMALL_STATE(3857)] = 2273, + [SMALL_STATE(3858)] = 2344, + [SMALL_STATE(3859)] = 2423, + [SMALL_STATE(3860)] = 2494, + [SMALL_STATE(3861)] = 2573, + [SMALL_STATE(3862)] = 2644, + [SMALL_STATE(3863)] = 2721, + [SMALL_STATE(3864)] = 2798, + [SMALL_STATE(3865)] = 2869, + [SMALL_STATE(3866)] = 2946, + [SMALL_STATE(3867)] = 3017, + [SMALL_STATE(3868)] = 3088, + [SMALL_STATE(3869)] = 3159, + [SMALL_STATE(3870)] = 3230, + [SMALL_STATE(3871)] = 3311, + [SMALL_STATE(3872)] = 3382, + [SMALL_STATE(3873)] = 3453, + [SMALL_STATE(3874)] = 3530, + [SMALL_STATE(3875)] = 3601, + [SMALL_STATE(3876)] = 3672, + [SMALL_STATE(3877)] = 3743, + [SMALL_STATE(3878)] = 3814, + [SMALL_STATE(3879)] = 3885, + [SMALL_STATE(3880)] = 3964, + [SMALL_STATE(3881)] = 4047, + [SMALL_STATE(3882)] = 4118, + [SMALL_STATE(3883)] = 4189, + [SMALL_STATE(3884)] = 4272, + [SMALL_STATE(3885)] = 4347, + [SMALL_STATE(3886)] = 4418, + [SMALL_STATE(3887)] = 4489, + [SMALL_STATE(3888)] = 4560, + [SMALL_STATE(3889)] = 4631, + [SMALL_STATE(3890)] = 4702, + [SMALL_STATE(3891)] = 4773, + [SMALL_STATE(3892)] = 4856, + [SMALL_STATE(3893)] = 4927, + [SMALL_STATE(3894)] = 5004, + [SMALL_STATE(3895)] = 5075, + [SMALL_STATE(3896)] = 5158, + [SMALL_STATE(3897)] = 5241, + [SMALL_STATE(3898)] = 5320, + [SMALL_STATE(3899)] = 5391, + [SMALL_STATE(3900)] = 5462, + [SMALL_STATE(3901)] = 5533, + [SMALL_STATE(3902)] = 5608, + [SMALL_STATE(3903)] = 5679, + [SMALL_STATE(3904)] = 5750, + [SMALL_STATE(3905)] = 5833, + [SMALL_STATE(3906)] = 5908, + [SMALL_STATE(3907)] = 5979, + [SMALL_STATE(3908)] = 6050, + [SMALL_STATE(3909)] = 6121, + [SMALL_STATE(3910)] = 6210, + [SMALL_STATE(3911)] = 6281, + [SMALL_STATE(3912)] = 6352, + [SMALL_STATE(3913)] = 6423, + [SMALL_STATE(3914)] = 6494, + [SMALL_STATE(3915)] = 6577, + [SMALL_STATE(3916)] = 6648, + [SMALL_STATE(3917)] = 6723, + [SMALL_STATE(3918)] = 6798, + [SMALL_STATE(3919)] = 6881, + [SMALL_STATE(3920)] = 6964, + [SMALL_STATE(3921)] = 7047, + [SMALL_STATE(3922)] = 7130, + [SMALL_STATE(3923)] = 7213, + [SMALL_STATE(3924)] = 7296, + [SMALL_STATE(3925)] = 7379, + [SMALL_STATE(3926)] = 7462, + [SMALL_STATE(3927)] = 7533, + [SMALL_STATE(3928)] = 7608, + [SMALL_STATE(3929)] = 7679, + [SMALL_STATE(3930)] = 7762, + [SMALL_STATE(3931)] = 7833, + [SMALL_STATE(3932)] = 7904, + [SMALL_STATE(3933)] = 7993, + [SMALL_STATE(3934)] = 8064, + [SMALL_STATE(3935)] = 8141, + [SMALL_STATE(3936)] = 8218, + [SMALL_STATE(3937)] = 8293, + [SMALL_STATE(3938)] = 8364, + [SMALL_STATE(3939)] = 8439, + [SMALL_STATE(3940)] = 8510, + [SMALL_STATE(3941)] = 8581, + [SMALL_STATE(3942)] = 8652, + [SMALL_STATE(3943)] = 8727, + [SMALL_STATE(3944)] = 8798, + [SMALL_STATE(3945)] = 8869, + [SMALL_STATE(3946)] = 8940, + [SMALL_STATE(3947)] = 9017, + [SMALL_STATE(3948)] = 9088, + [SMALL_STATE(3949)] = 9159, + [SMALL_STATE(3950)] = 9230, + [SMALL_STATE(3951)] = 9301, + [SMALL_STATE(3952)] = 9372, + [SMALL_STATE(3953)] = 9443, + [SMALL_STATE(3954)] = 9514, + [SMALL_STATE(3955)] = 9591, + [SMALL_STATE(3956)] = 9661, + [SMALL_STATE(3957)] = 9759, + [SMALL_STATE(3958)] = 9829, + [SMALL_STATE(3959)] = 9899, + [SMALL_STATE(3960)] = 9997, + [SMALL_STATE(3961)] = 10073, + [SMALL_STATE(3962)] = 10153, + [SMALL_STATE(3963)] = 10251, + [SMALL_STATE(3964)] = 10327, + [SMALL_STATE(3965)] = 10397, + [SMALL_STATE(3966)] = 10477, + [SMALL_STATE(3967)] = 10565, + [SMALL_STATE(3968)] = 10637, + [SMALL_STATE(3969)] = 10715, + [SMALL_STATE(3970)] = 10813, + [SMALL_STATE(3971)] = 10893, + [SMALL_STATE(3972)] = 10969, + [SMALL_STATE(3973)] = 11039, + [SMALL_STATE(3974)] = 11137, + [SMALL_STATE(3975)] = 11215, + [SMALL_STATE(3976)] = 11285, + [SMALL_STATE(3977)] = 11397, + [SMALL_STATE(3978)] = 11467, + [SMALL_STATE(3979)] = 11537, + [SMALL_STATE(3980)] = 11625, + [SMALL_STATE(3981)] = 11737, + [SMALL_STATE(3982)] = 11835, + [SMALL_STATE(3983)] = 11905, + [SMALL_STATE(3984)] = 11981, + [SMALL_STATE(3985)] = 12061, + [SMALL_STATE(3986)] = 12159, + [SMALL_STATE(3987)] = 12257, + [SMALL_STATE(3988)] = 12333, + [SMALL_STATE(3989)] = 12403, + [SMALL_STATE(3990)] = 12473, + [SMALL_STATE(3991)] = 12543, + [SMALL_STATE(3992)] = 12613, + [SMALL_STATE(3993)] = 12683, + [SMALL_STATE(3994)] = 12753, + [SMALL_STATE(3995)] = 12823, + [SMALL_STATE(3996)] = 12893, + [SMALL_STATE(3997)] = 12963, + [SMALL_STATE(3998)] = 13045, + [SMALL_STATE(3999)] = 13127, + [SMALL_STATE(4000)] = 13201, + [SMALL_STATE(4001)] = 13271, + [SMALL_STATE(4002)] = 13341, + [SMALL_STATE(4003)] = 13429, + [SMALL_STATE(4004)] = 13499, + [SMALL_STATE(4005)] = 13569, + [SMALL_STATE(4006)] = 13681, + [SMALL_STATE(4007)] = 13769, + [SMALL_STATE(4008)] = 13839, + [SMALL_STATE(4009)] = 13913, + [SMALL_STATE(4010)] = 13983, + [SMALL_STATE(4011)] = 14057, + [SMALL_STATE(4012)] = 14127, + [SMALL_STATE(4013)] = 14201, + [SMALL_STATE(4014)] = 14271, + [SMALL_STATE(4015)] = 14341, + [SMALL_STATE(4016)] = 14415, + [SMALL_STATE(4017)] = 14485, + [SMALL_STATE(4018)] = 14573, + [SMALL_STATE(4019)] = 14643, + [SMALL_STATE(4020)] = 14717, + [SMALL_STATE(4021)] = 14787, + [SMALL_STATE(4022)] = 14861, + [SMALL_STATE(4023)] = 14959, + [SMALL_STATE(4024)] = 15057, + [SMALL_STATE(4025)] = 15145, + [SMALL_STATE(4026)] = 15215, + [SMALL_STATE(4027)] = 15285, + [SMALL_STATE(4028)] = 15355, + [SMALL_STATE(4029)] = 15453, + [SMALL_STATE(4030)] = 15539, + [SMALL_STATE(4031)] = 15613, + [SMALL_STATE(4032)] = 15701, + [SMALL_STATE(4033)] = 15789, + [SMALL_STATE(4034)] = 15887, + [SMALL_STATE(4035)] = 15999, + [SMALL_STATE(4036)] = 16073, + [SMALL_STATE(4037)] = 16147, + [SMALL_STATE(4038)] = 16221, + [SMALL_STATE(4039)] = 16295, + [SMALL_STATE(4040)] = 16369, + [SMALL_STATE(4041)] = 16481, + [SMALL_STATE(4042)] = 16593, + [SMALL_STATE(4043)] = 16698, + [SMALL_STATE(4044)] = 16775, + [SMALL_STATE(4045)] = 16880, + [SMALL_STATE(4046)] = 16951, + [SMALL_STATE(4047)] = 17046, + [SMALL_STATE(4048)] = 17141, + [SMALL_STATE(4049)] = 17210, + [SMALL_STATE(4050)] = 17305, + [SMALL_STATE(4051)] = 17382, + [SMALL_STATE(4052)] = 17465, + [SMALL_STATE(4053)] = 17548, + [SMALL_STATE(4054)] = 17631, + [SMALL_STATE(4055)] = 17700, + [SMALL_STATE(4056)] = 17769, + [SMALL_STATE(4057)] = 17838, + [SMALL_STATE(4058)] = 17907, + [SMALL_STATE(4059)] = 17988, + [SMALL_STATE(4060)] = 18057, + [SMALL_STATE(4061)] = 18126, + [SMALL_STATE(4062)] = 18205, + [SMALL_STATE(4063)] = 18274, + [SMALL_STATE(4064)] = 18343, + [SMALL_STATE(4065)] = 18412, + [SMALL_STATE(4066)] = 18485, + [SMALL_STATE(4067)] = 18554, + [SMALL_STATE(4068)] = 18659, + [SMALL_STATE(4069)] = 18728, + [SMALL_STATE(4070)] = 18833, + [SMALL_STATE(4071)] = 18902, + [SMALL_STATE(4072)] = 18971, + [SMALL_STATE(4073)] = 19040, + [SMALL_STATE(4074)] = 19109, + [SMALL_STATE(4075)] = 19214, + [SMALL_STATE(4076)] = 19297, + [SMALL_STATE(4077)] = 19380, + [SMALL_STATE(4078)] = 19449, + [SMALL_STATE(4079)] = 19518, + [SMALL_STATE(4080)] = 19587, + [SMALL_STATE(4081)] = 19656, + [SMALL_STATE(4082)] = 19725, + [SMALL_STATE(4083)] = 19794, + [SMALL_STATE(4084)] = 19899, + [SMALL_STATE(4085)] = 19968, + [SMALL_STATE(4086)] = 20073, + [SMALL_STATE(4087)] = 20172, + [SMALL_STATE(4088)] = 20277, + [SMALL_STATE(4089)] = 20354, + [SMALL_STATE(4090)] = 20423, + [SMALL_STATE(4091)] = 20510, + [SMALL_STATE(4092)] = 20609, + [SMALL_STATE(4093)] = 20678, + [SMALL_STATE(4094)] = 20747, + [SMALL_STATE(4095)] = 20852, + [SMALL_STATE(4096)] = 20921, + [SMALL_STATE(4097)] = 20996, + [SMALL_STATE(4098)] = 21071, + [SMALL_STATE(4099)] = 21140, + [SMALL_STATE(4100)] = 21239, + [SMALL_STATE(4101)] = 21308, + [SMALL_STATE(4102)] = 21377, + [SMALL_STATE(4103)] = 21472, + [SMALL_STATE(4104)] = 21567, + [SMALL_STATE(4105)] = 21636, + [SMALL_STATE(4106)] = 21713, + [SMALL_STATE(4107)] = 21782, + [SMALL_STATE(4108)] = 21851, + [SMALL_STATE(4109)] = 21920, + [SMALL_STATE(4110)] = 21997, + [SMALL_STATE(4111)] = 22084, + [SMALL_STATE(4112)] = 22153, + [SMALL_STATE(4113)] = 22248, + [SMALL_STATE(4114)] = 22317, + [SMALL_STATE(4115)] = 22386, + [SMALL_STATE(4116)] = 22455, + [SMALL_STATE(4117)] = 22524, + [SMALL_STATE(4118)] = 22593, + [SMALL_STATE(4119)] = 22668, + [SMALL_STATE(4120)] = 22737, + [SMALL_STATE(4121)] = 22814, + [SMALL_STATE(4122)] = 22883, + [SMALL_STATE(4123)] = 22952, + [SMALL_STATE(4124)] = 23023, + [SMALL_STATE(4125)] = 23102, + [SMALL_STATE(4126)] = 23171, + [SMALL_STATE(4127)] = 23294, + [SMALL_STATE(4128)] = 23365, + [SMALL_STATE(4129)] = 23434, + [SMALL_STATE(4130)] = 23557, + [SMALL_STATE(4131)] = 23626, + [SMALL_STATE(4132)] = 23695, + [SMALL_STATE(4133)] = 23764, + [SMALL_STATE(4134)] = 23839, + [SMALL_STATE(4135)] = 23908, + [SMALL_STATE(4136)] = 24007, + [SMALL_STATE(4137)] = 24090, + [SMALL_STATE(4138)] = 24159, + [SMALL_STATE(4139)] = 24264, + [SMALL_STATE(4140)] = 24363, + [SMALL_STATE(4141)] = 24440, + [SMALL_STATE(4142)] = 24509, + [SMALL_STATE(4143)] = 24578, + [SMALL_STATE(4144)] = 24677, + [SMALL_STATE(4145)] = 24782, + [SMALL_STATE(4146)] = 24851, + [SMALL_STATE(4147)] = 24956, + [SMALL_STATE(4148)] = 25025, + [SMALL_STATE(4149)] = 25104, + [SMALL_STATE(4150)] = 25180, + [SMALL_STATE(4151)] = 25248, + [SMALL_STATE(4152)] = 25368, + [SMALL_STATE(4153)] = 25488, + [SMALL_STATE(4154)] = 25608, + [SMALL_STATE(4155)] = 25682, + [SMALL_STATE(4156)] = 25758, + [SMALL_STATE(4157)] = 25826, + [SMALL_STATE(4158)] = 25902, + [SMALL_STATE(4159)] = 25970, + [SMALL_STATE(4160)] = 26046, + [SMALL_STATE(4161)] = 26122, + [SMALL_STATE(4162)] = 26200, + [SMALL_STATE(4163)] = 26276, + [SMALL_STATE(4164)] = 26352, + [SMALL_STATE(4165)] = 26420, + [SMALL_STATE(4166)] = 26496, + [SMALL_STATE(4167)] = 26572, + [SMALL_STATE(4168)] = 26640, + [SMALL_STATE(4169)] = 26708, + [SMALL_STATE(4170)] = 26776, + [SMALL_STATE(4171)] = 26896, + [SMALL_STATE(4172)] = 26964, + [SMALL_STATE(4173)] = 27084, + [SMALL_STATE(4174)] = 27152, + [SMALL_STATE(4175)] = 27220, + [SMALL_STATE(4176)] = 27288, + [SMALL_STATE(4177)] = 27408, + [SMALL_STATE(4178)] = 27476, + [SMALL_STATE(4179)] = 27554, + [SMALL_STATE(4180)] = 27632, + [SMALL_STATE(4181)] = 27718, + [SMALL_STATE(4182)] = 27838, + [SMALL_STATE(4183)] = 27958, + [SMALL_STATE(4184)] = 28026, + [SMALL_STATE(4185)] = 28146, + [SMALL_STATE(4186)] = 28266, + [SMALL_STATE(4187)] = 28338, + [SMALL_STATE(4188)] = 28406, + [SMALL_STATE(4189)] = 28526, + [SMALL_STATE(4190)] = 28594, + [SMALL_STATE(4191)] = 28714, + [SMALL_STATE(4192)] = 28782, + [SMALL_STATE(4193)] = 28850, + [SMALL_STATE(4194)] = 28918, + [SMALL_STATE(4195)] = 29038, + [SMALL_STATE(4196)] = 29158, + [SMALL_STATE(4197)] = 29226, + [SMALL_STATE(4198)] = 29294, + [SMALL_STATE(4199)] = 29362, + [SMALL_STATE(4200)] = 29482, + [SMALL_STATE(4201)] = 29566, + [SMALL_STATE(4202)] = 29686, + [SMALL_STATE(4203)] = 29806, + [SMALL_STATE(4204)] = 29876, + [SMALL_STATE(4205)] = 29950, + [SMALL_STATE(4206)] = 30026, + [SMALL_STATE(4207)] = 30098, + [SMALL_STATE(4208)] = 30218, + [SMALL_STATE(4209)] = 30338, + [SMALL_STATE(4210)] = 30412, + [SMALL_STATE(4211)] = 30532, + [SMALL_STATE(4212)] = 30600, + [SMALL_STATE(4213)] = 30720, + [SMALL_STATE(4214)] = 30792, + [SMALL_STATE(4215)] = 30860, + [SMALL_STATE(4216)] = 30930, + [SMALL_STATE(4217)] = 31002, + [SMALL_STATE(4218)] = 31072, + [SMALL_STATE(4219)] = 31140, + [SMALL_STATE(4220)] = 31208, + [SMALL_STATE(4221)] = 31280, + [SMALL_STATE(4222)] = 31354, + [SMALL_STATE(4223)] = 31422, + [SMALL_STATE(4224)] = 31542, + [SMALL_STATE(4225)] = 31662, + [SMALL_STATE(4226)] = 31734, + [SMALL_STATE(4227)] = 31802, + [SMALL_STATE(4228)] = 31878, + [SMALL_STATE(4229)] = 31950, + [SMALL_STATE(4230)] = 32018, + [SMALL_STATE(4231)] = 32098, + [SMALL_STATE(4232)] = 32178, + [SMALL_STATE(4233)] = 32258, + [SMALL_STATE(4234)] = 32338, + [SMALL_STATE(4235)] = 32418, + [SMALL_STATE(4236)] = 32498, + [SMALL_STATE(4237)] = 32578, + [SMALL_STATE(4238)] = 32658, + [SMALL_STATE(4239)] = 32734, + [SMALL_STATE(4240)] = 32810, + [SMALL_STATE(4241)] = 32886, + [SMALL_STATE(4242)] = 32962, + [SMALL_STATE(4243)] = 33038, + [SMALL_STATE(4244)] = 33114, + [SMALL_STATE(4245)] = 33190, + [SMALL_STATE(4246)] = 33266, + [SMALL_STATE(4247)] = 33340, + [SMALL_STATE(4248)] = 33412, + [SMALL_STATE(4249)] = 33484, + [SMALL_STATE(4250)] = 33604, + [SMALL_STATE(4251)] = 33724, + [SMALL_STATE(4252)] = 33802, + [SMALL_STATE(4253)] = 33876, + [SMALL_STATE(4254)] = 33948, + [SMALL_STATE(4255)] = 34016, + [SMALL_STATE(4256)] = 34136, + [SMALL_STATE(4257)] = 34256, + [SMALL_STATE(4258)] = 34326, + [SMALL_STATE(4259)] = 34446, + [SMALL_STATE(4260)] = 34566, + [SMALL_STATE(4261)] = 34634, + [SMALL_STATE(4262)] = 34754, + [SMALL_STATE(4263)] = 34828, + [SMALL_STATE(4264)] = 34902, + [SMALL_STATE(4265)] = 34978, + [SMALL_STATE(4266)] = 35050, + [SMALL_STATE(4267)] = 35122, + [SMALL_STATE(4268)] = 35190, + [SMALL_STATE(4269)] = 35310, + [SMALL_STATE(4270)] = 35386, + [SMALL_STATE(4271)] = 35458, + [SMALL_STATE(4272)] = 35578, + [SMALL_STATE(4273)] = 35652, + [SMALL_STATE(4274)] = 35719, + [SMALL_STATE(4275)] = 35786, + [SMALL_STATE(4276)] = 35871, + [SMALL_STATE(4277)] = 35938, + [SMALL_STATE(4278)] = 36005, + [SMALL_STATE(4279)] = 36072, + [SMALL_STATE(4280)] = 36147, + [SMALL_STATE(4281)] = 36232, + [SMALL_STATE(4282)] = 36299, + [SMALL_STATE(4283)] = 36366, + [SMALL_STATE(4284)] = 36433, + [SMALL_STATE(4285)] = 36500, + [SMALL_STATE(4286)] = 36567, + [SMALL_STATE(4287)] = 36650, + [SMALL_STATE(4288)] = 36719, + [SMALL_STATE(4289)] = 36786, + [SMALL_STATE(4290)] = 36853, + [SMALL_STATE(4291)] = 36920, + [SMALL_STATE(4292)] = 36997, + [SMALL_STATE(4293)] = 37076, + [SMALL_STATE(4294)] = 37143, + [SMALL_STATE(4295)] = 37210, + [SMALL_STATE(4296)] = 37289, + [SMALL_STATE(4297)] = 37358, + [SMALL_STATE(4298)] = 37437, + [SMALL_STATE(4299)] = 37516, + [SMALL_STATE(4300)] = 37595, + [SMALL_STATE(4301)] = 37674, + [SMALL_STATE(4302)] = 37753, + [SMALL_STATE(4303)] = 37820, + [SMALL_STATE(4304)] = 37899, + [SMALL_STATE(4305)] = 37966, + [SMALL_STATE(4306)] = 38033, + [SMALL_STATE(4307)] = 38112, + [SMALL_STATE(4308)] = 38179, + [SMALL_STATE(4309)] = 38250, + [SMALL_STATE(4310)] = 38317, + [SMALL_STATE(4311)] = 38384, + [SMALL_STATE(4312)] = 38463, + [SMALL_STATE(4313)] = 38542, + [SMALL_STATE(4314)] = 38609, + [SMALL_STATE(4315)] = 38678, + [SMALL_STATE(4316)] = 38745, + [SMALL_STATE(4317)] = 38822, + [SMALL_STATE(4318)] = 38889, + [SMALL_STATE(4319)] = 38956, + [SMALL_STATE(4320)] = 39033, + [SMALL_STATE(4321)] = 39110, + [SMALL_STATE(4322)] = 39177, + [SMALL_STATE(4323)] = 39244, + [SMALL_STATE(4324)] = 39311, + [SMALL_STATE(4325)] = 39383, + [SMALL_STATE(4326)] = 39449, + [SMALL_STATE(4327)] = 39527, + [SMALL_STATE(4328)] = 39607, + [SMALL_STATE(4329)] = 39679, + [SMALL_STATE(4330)] = 39753, + [SMALL_STATE(4331)] = 39873, + [SMALL_STATE(4332)] = 39951, + [SMALL_STATE(4333)] = 40017, + [SMALL_STATE(4334)] = 40083, + [SMALL_STATE(4335)] = 40203, + [SMALL_STATE(4336)] = 40275, + [SMALL_STATE(4337)] = 40361, + [SMALL_STATE(4338)] = 40427, + [SMALL_STATE(4339)] = 40493, + [SMALL_STATE(4340)] = 40567, + [SMALL_STATE(4341)] = 40639, + [SMALL_STATE(4342)] = 40713, + [SMALL_STATE(4343)] = 40785, + [SMALL_STATE(4344)] = 40857, + [SMALL_STATE(4345)] = 40929, + [SMALL_STATE(4346)] = 41003, + [SMALL_STATE(4347)] = 41081, + [SMALL_STATE(4348)] = 41155, + [SMALL_STATE(4349)] = 41239, + [SMALL_STATE(4350)] = 41313, + [SMALL_STATE(4351)] = 41385, + [SMALL_STATE(4352)] = 41457, + [SMALL_STATE(4353)] = 41531, + [SMALL_STATE(4354)] = 41609, + [SMALL_STATE(4355)] = 41687, + [SMALL_STATE(4356)] = 41765, + [SMALL_STATE(4357)] = 41843, + [SMALL_STATE(4358)] = 41921, + [SMALL_STATE(4359)] = 41993, + [SMALL_STATE(4360)] = 42065, + [SMALL_STATE(4361)] = 42131, + [SMALL_STATE(4362)] = 42209, + [SMALL_STATE(4363)] = 42275, + [SMALL_STATE(4364)] = 42353, + [SMALL_STATE(4365)] = 42431, + [SMALL_STATE(4366)] = 42505, + [SMALL_STATE(4367)] = 42583, + [SMALL_STATE(4368)] = 42661, + [SMALL_STATE(4369)] = 42741, + [SMALL_STATE(4370)] = 42819, + [SMALL_STATE(4371)] = 42891, + [SMALL_STATE(4372)] = 42967, + [SMALL_STATE(4373)] = 43041, + [SMALL_STATE(4374)] = 43109, + [SMALL_STATE(4375)] = 43193, + [SMALL_STATE(4376)] = 43271, + [SMALL_STATE(4377)] = 43343, + [SMALL_STATE(4378)] = 43415, + [SMALL_STATE(4379)] = 43481, + [SMALL_STATE(4380)] = 43553, + [SMALL_STATE(4381)] = 43625, + [SMALL_STATE(4382)] = 43701, + [SMALL_STATE(4383)] = 43773, + [SMALL_STATE(4384)] = 43847, + [SMALL_STATE(4385)] = 43919, + [SMALL_STATE(4386)] = 43991, + [SMALL_STATE(4387)] = 44063, + [SMALL_STATE(4388)] = 44145, + [SMALL_STATE(4389)] = 44217, + [SMALL_STATE(4390)] = 44289, + [SMALL_STATE(4391)] = 44361, + [SMALL_STATE(4392)] = 44433, + [SMALL_STATE(4393)] = 44505, + [SMALL_STATE(4394)] = 44571, + [SMALL_STATE(4395)] = 44649, + [SMALL_STATE(4396)] = 44731, + [SMALL_STATE(4397)] = 44815, + [SMALL_STATE(4398)] = 44889, + [SMALL_STATE(4399)] = 44954, + [SMALL_STATE(4400)] = 45039, + [SMALL_STATE(4401)] = 45148, + [SMALL_STATE(4402)] = 45261, + [SMALL_STATE(4403)] = 45366, + [SMALL_STATE(4404)] = 45467, + [SMALL_STATE(4405)] = 45566, + [SMALL_STATE(4406)] = 45631, + [SMALL_STATE(4407)] = 45728, + [SMALL_STATE(4408)] = 45823, + [SMALL_STATE(4409)] = 45888, + [SMALL_STATE(4410)] = 45953, + [SMALL_STATE(4411)] = 46018, + [SMALL_STATE(4412)] = 46109, + [SMALL_STATE(4413)] = 46196, + [SMALL_STATE(4414)] = 46305, + [SMALL_STATE(4415)] = 46418, + [SMALL_STATE(4416)] = 46501, + [SMALL_STATE(4417)] = 46566, + [SMALL_STATE(4418)] = 46631, + [SMALL_STATE(4419)] = 46714, + [SMALL_STATE(4420)] = 46823, + [SMALL_STATE(4421)] = 46888, + [SMALL_STATE(4422)] = 47001, + [SMALL_STATE(4423)] = 47074, + [SMALL_STATE(4424)] = 47139, + [SMALL_STATE(4425)] = 47204, + [SMALL_STATE(4426)] = 47277, + [SMALL_STATE(4427)] = 47342, + [SMALL_STATE(4428)] = 47407, + [SMALL_STATE(4429)] = 47492, + [SMALL_STATE(4430)] = 47557, + [SMALL_STATE(4431)] = 47622, + [SMALL_STATE(4432)] = 47695, + [SMALL_STATE(4433)] = 47768, + [SMALL_STATE(4434)] = 47833, + [SMALL_STATE(4435)] = 47916, + [SMALL_STATE(4436)] = 47999, + [SMALL_STATE(4437)] = 48082, + [SMALL_STATE(4438)] = 48155, + [SMALL_STATE(4439)] = 48228, + [SMALL_STATE(4440)] = 48313, + [SMALL_STATE(4441)] = 48386, + [SMALL_STATE(4442)] = 48453, + [SMALL_STATE(4443)] = 48538, + [SMALL_STATE(4444)] = 48611, + [SMALL_STATE(4445)] = 48690, + [SMALL_STATE(4446)] = 48755, + [SMALL_STATE(4447)] = 48820, + [SMALL_STATE(4448)] = 48893, + [SMALL_STATE(4449)] = 48958, + [SMALL_STATE(4450)] = 49041, + [SMALL_STATE(4451)] = 49124, + [SMALL_STATE(4452)] = 49189, + [SMALL_STATE(4453)] = 49254, + [SMALL_STATE(4454)] = 49323, + [SMALL_STATE(4455)] = 49388, + [SMALL_STATE(4456)] = 49453, + [SMALL_STATE(4457)] = 49518, + [SMALL_STATE(4458)] = 49583, + [SMALL_STATE(4459)] = 49648, + [SMALL_STATE(4460)] = 49713, + [SMALL_STATE(4461)] = 49778, + [SMALL_STATE(4462)] = 49843, + [SMALL_STATE(4463)] = 49908, + [SMALL_STATE(4464)] = 49973, + [SMALL_STATE(4465)] = 50038, + [SMALL_STATE(4466)] = 50103, + [SMALL_STATE(4467)] = 50168, + [SMALL_STATE(4468)] = 50241, + [SMALL_STATE(4469)] = 50314, + [SMALL_STATE(4470)] = 50379, + [SMALL_STATE(4471)] = 50452, + [SMALL_STATE(4472)] = 50525, + [SMALL_STATE(4473)] = 50598, + [SMALL_STATE(4474)] = 50681, + [SMALL_STATE(4475)] = 50764, + [SMALL_STATE(4476)] = 50837, + [SMALL_STATE(4477)] = 50910, + [SMALL_STATE(4478)] = 50983, + [SMALL_STATE(4479)] = 51056, + [SMALL_STATE(4480)] = 51121, + [SMALL_STATE(4481)] = 51192, + [SMALL_STATE(4482)] = 51265, + [SMALL_STATE(4483)] = 51338, + [SMALL_STATE(4484)] = 51411, + [SMALL_STATE(4485)] = 51484, + [SMALL_STATE(4486)] = 51557, + [SMALL_STATE(4487)] = 51622, + [SMALL_STATE(4488)] = 51701, + [SMALL_STATE(4489)] = 51770, + [SMALL_STATE(4490)] = 51843, + [SMALL_STATE(4491)] = 51912, + [SMALL_STATE(4492)] = 52021, + [SMALL_STATE(4493)] = 52130, + [SMALL_STATE(4494)] = 52239, + [SMALL_STATE(4495)] = 52304, + [SMALL_STATE(4496)] = 52387, + [SMALL_STATE(4497)] = 52452, + [SMALL_STATE(4498)] = 52517, + [SMALL_STATE(4499)] = 52598, + [SMALL_STATE(4500)] = 52681, + [SMALL_STATE(4501)] = 52766, + [SMALL_STATE(4502)] = 52849, + [SMALL_STATE(4503)] = 52934, + [SMALL_STATE(4504)] = 53017, + [SMALL_STATE(4505)] = 53088, + [SMALL_STATE(4506)] = 53167, + [SMALL_STATE(4507)] = 53232, + [SMALL_STATE(4508)] = 53297, + [SMALL_STATE(4509)] = 53362, + [SMALL_STATE(4510)] = 53435, + [SMALL_STATE(4511)] = 53500, + [SMALL_STATE(4512)] = 53579, + [SMALL_STATE(4513)] = 53648, + [SMALL_STATE(4514)] = 53713, + [SMALL_STATE(4515)] = 53786, + [SMALL_STATE(4516)] = 53859, + [SMALL_STATE(4517)] = 53932, + [SMALL_STATE(4518)] = 53997, + [SMALL_STATE(4519)] = 54070, + [SMALL_STATE(4520)] = 54143, + [SMALL_STATE(4521)] = 54216, + [SMALL_STATE(4522)] = 54289, + [SMALL_STATE(4523)] = 54362, + [SMALL_STATE(4524)] = 54435, + [SMALL_STATE(4525)] = 54508, + [SMALL_STATE(4526)] = 54581, + [SMALL_STATE(4527)] = 54646, + [SMALL_STATE(4528)] = 54731, + [SMALL_STATE(4529)] = 54814, + [SMALL_STATE(4530)] = 54879, + [SMALL_STATE(4531)] = 54944, + [SMALL_STATE(4532)] = 55009, + [SMALL_STATE(4533)] = 55082, + [SMALL_STATE(4534)] = 55165, + [SMALL_STATE(4535)] = 55238, + [SMALL_STATE(4536)] = 55311, + [SMALL_STATE(4537)] = 55384, + [SMALL_STATE(4538)] = 55457, + [SMALL_STATE(4539)] = 55530, + [SMALL_STATE(4540)] = 55595, + [SMALL_STATE(4541)] = 55660, + [SMALL_STATE(4542)] = 55733, + [SMALL_STATE(4543)] = 55806, + [SMALL_STATE(4544)] = 55871, + [SMALL_STATE(4545)] = 55936, + [SMALL_STATE(4546)] = 56021, + [SMALL_STATE(4547)] = 56094, + [SMALL_STATE(4548)] = 56167, + [SMALL_STATE(4549)] = 56240, + [SMALL_STATE(4550)] = 56313, + [SMALL_STATE(4551)] = 56407, + [SMALL_STATE(4552)] = 56471, + [SMALL_STATE(4553)] = 56543, + [SMALL_STATE(4554)] = 56615, + [SMALL_STATE(4555)] = 56683, + [SMALL_STATE(4556)] = 56753, + [SMALL_STATE(4557)] = 56821, + [SMALL_STATE(4558)] = 56889, + [SMALL_STATE(4559)] = 56983, + [SMALL_STATE(4560)] = 57051, + [SMALL_STATE(4561)] = 57123, + [SMALL_STATE(4562)] = 57191, + [SMALL_STATE(4563)] = 57309, + [SMALL_STATE(4564)] = 57377, + [SMALL_STATE(4565)] = 57495, + [SMALL_STATE(4566)] = 57559, + [SMALL_STATE(4567)] = 57627, + [SMALL_STATE(4568)] = 57721, + [SMALL_STATE(4569)] = 57797, + [SMALL_STATE(4570)] = 57891, + [SMALL_STATE(4571)] = 57985, + [SMALL_STATE(4572)] = 58057, + [SMALL_STATE(4573)] = 58133, + [SMALL_STATE(4574)] = 58201, + [SMALL_STATE(4575)] = 58295, + [SMALL_STATE(4576)] = 58389, + [SMALL_STATE(4577)] = 58465, + [SMALL_STATE(4578)] = 58559, + [SMALL_STATE(4579)] = 58631, + [SMALL_STATE(4580)] = 58707, + [SMALL_STATE(4581)] = 58773, + [SMALL_STATE(4582)] = 58837, + [SMALL_STATE(4583)] = 58911, + [SMALL_STATE(4584)] = 59005, + [SMALL_STATE(4585)] = 59099, + [SMALL_STATE(4586)] = 59193, + [SMALL_STATE(4587)] = 59311, + [SMALL_STATE(4588)] = 59379, + [SMALL_STATE(4589)] = 59473, + [SMALL_STATE(4590)] = 59541, + [SMALL_STATE(4591)] = 59617, + [SMALL_STATE(4592)] = 59693, + [SMALL_STATE(4593)] = 59757, + [SMALL_STATE(4594)] = 59821, + [SMALL_STATE(4595)] = 59897, + [SMALL_STATE(4596)] = 59973, + [SMALL_STATE(4597)] = 60037, + [SMALL_STATE(4598)] = 60131, + [SMALL_STATE(4599)] = 60225, + [SMALL_STATE(4600)] = 60297, + [SMALL_STATE(4601)] = 60391, + [SMALL_STATE(4602)] = 60461, + [SMALL_STATE(4603)] = 60533, + [SMALL_STATE(4604)] = 60599, + [SMALL_STATE(4605)] = 60671, + [SMALL_STATE(4606)] = 60739, + [SMALL_STATE(4607)] = 60803, + [SMALL_STATE(4608)] = 60885, + [SMALL_STATE(4609)] = 60979, + [SMALL_STATE(4610)] = 61053, + [SMALL_STATE(4611)] = 61121, + [SMALL_STATE(4612)] = 61195, + [SMALL_STATE(4613)] = 61271, + [SMALL_STATE(4614)] = 61389, + [SMALL_STATE(4615)] = 61457, + [SMALL_STATE(4616)] = 61529, + [SMALL_STATE(4617)] = 61597, + [SMALL_STATE(4618)] = 61665, + [SMALL_STATE(4619)] = 61731, + [SMALL_STATE(4620)] = 61807, + [SMALL_STATE(4621)] = 61875, + [SMALL_STATE(4622)] = 61943, + [SMALL_STATE(4623)] = 62017, + [SMALL_STATE(4624)] = 62089, + [SMALL_STATE(4625)] = 62183, + [SMALL_STATE(4626)] = 62247, + [SMALL_STATE(4627)] = 62321, + [SMALL_STATE(4628)] = 62395, + [SMALL_STATE(4629)] = 62489, + [SMALL_STATE(4630)] = 62569, + [SMALL_STATE(4631)] = 62688, + [SMALL_STATE(4632)] = 62785, + [SMALL_STATE(4633)] = 62880, + [SMALL_STATE(4634)] = 62971, + [SMALL_STATE(4635)] = 63060, + [SMALL_STATE(4636)] = 63131, + [SMALL_STATE(4637)] = 63196, + [SMALL_STATE(4638)] = 63281, + [SMALL_STATE(4639)] = 63362, + [SMALL_STATE(4640)] = 63433, + [SMALL_STATE(4641)] = 63506, + [SMALL_STATE(4642)] = 63573, + [SMALL_STATE(4643)] = 63644, + [SMALL_STATE(4644)] = 63727, + [SMALL_STATE(4645)] = 63800, + [SMALL_STATE(4646)] = 63865, + [SMALL_STATE(4647)] = 63938, + [SMALL_STATE(4648)] = 64011, + [SMALL_STATE(4649)] = 64078, + [SMALL_STATE(4650)] = 64145, + [SMALL_STATE(4651)] = 64264, + [SMALL_STATE(4652)] = 64337, + [SMALL_STATE(4653)] = 64450, + [SMALL_STATE(4654)] = 64517, + [SMALL_STATE(4655)] = 64584, + [SMALL_STATE(4656)] = 64649, + [SMALL_STATE(4657)] = 64726, + [SMALL_STATE(4658)] = 64789, + [SMALL_STATE(4659)] = 64898, + [SMALL_STATE(4660)] = 64969, + [SMALL_STATE(4661)] = 65040, + [SMALL_STATE(4662)] = 65105, + [SMALL_STATE(4663)] = 65172, + [SMALL_STATE(4664)] = 65245, + [SMALL_STATE(4665)] = 65406, + [SMALL_STATE(4666)] = 65477, + [SMALL_STATE(4667)] = 65550, + [SMALL_STATE(4668)] = 65615, + [SMALL_STATE(4669)] = 65682, + [SMALL_STATE(4670)] = 65753, + [SMALL_STATE(4671)] = 65826, + [SMALL_STATE(4672)] = 65893, + [SMALL_STATE(4673)] = 66010, + [SMALL_STATE(4674)] = 66083, + [SMALL_STATE(4675)] = 66150, + [SMALL_STATE(4676)] = 66215, + [SMALL_STATE(4677)] = 66282, + [SMALL_STATE(4678)] = 66353, + [SMALL_STATE(4679)] = 66472, + [SMALL_STATE(4680)] = 66539, + [SMALL_STATE(4681)] = 66610, + [SMALL_STATE(4682)] = 66675, + [SMALL_STATE(4683)] = 66746, + [SMALL_STATE(4684)] = 66813, + [SMALL_STATE(4685)] = 66876, + [SMALL_STATE(4686)] = 66941, + [SMALL_STATE(4687)] = 67012, + [SMALL_STATE(4688)] = 67121, + [SMALL_STATE(4689)] = 67186, + [SMALL_STATE(4690)] = 67249, + [SMALL_STATE(4691)] = 67322, + [SMALL_STATE(4692)] = 67389, + [SMALL_STATE(4693)] = 67454, + [SMALL_STATE(4694)] = 67525, + [SMALL_STATE(4695)] = 67590, + [SMALL_STATE(4696)] = 67709, + [SMALL_STATE(4697)] = 67828, + [SMALL_STATE(4698)] = 67899, + [SMALL_STATE(4699)] = 67972, + [SMALL_STATE(4700)] = 68043, + [SMALL_STATE(4701)] = 68126, + [SMALL_STATE(4702)] = 68193, + [SMALL_STATE(4703)] = 68264, + [SMALL_STATE(4704)] = 68335, + [SMALL_STATE(4705)] = 68408, + [SMALL_STATE(4706)] = 68475, + [SMALL_STATE(4707)] = 68592, + [SMALL_STATE(4708)] = 68711, + [SMALL_STATE(4709)] = 68788, + [SMALL_STATE(4710)] = 68867, + [SMALL_STATE(4711)] = 68938, + [SMALL_STATE(4712)] = 69007, + [SMALL_STATE(4713)] = 69078, + [SMALL_STATE(4714)] = 69145, + [SMALL_STATE(4715)] = 69216, + [SMALL_STATE(4716)] = 69287, + [SMALL_STATE(4717)] = 69358, + [SMALL_STATE(4718)] = 69467, + [SMALL_STATE(4719)] = 69534, + [SMALL_STATE(4720)] = 69639, + [SMALL_STATE(4721)] = 69758, + [SMALL_STATE(4722)] = 69821, + [SMALL_STATE(4723)] = 69884, + [SMALL_STATE(4724)] = 70045, + [SMALL_STATE(4725)] = 70116, + [SMALL_STATE(4726)] = 70187, + [SMALL_STATE(4727)] = 70288, + [SMALL_STATE(4728)] = 70401, + [SMALL_STATE(4729)] = 70466, + [SMALL_STATE(4730)] = 70627, + [SMALL_STATE(4731)] = 70694, + [SMALL_STATE(4732)] = 70761, + [SMALL_STATE(4733)] = 70832, + [SMALL_STATE(4734)] = 70899, + [SMALL_STATE(4735)] = 70970, + [SMALL_STATE(4736)] = 71037, + [SMALL_STATE(4737)] = 71104, + [SMALL_STATE(4738)] = 71171, + [SMALL_STATE(4739)] = 71242, + [SMALL_STATE(4740)] = 71355, + [SMALL_STATE(4741)] = 71426, + [SMALL_STATE(4742)] = 71489, + [SMALL_STATE(4743)] = 71598, + [SMALL_STATE(4744)] = 71669, + [SMALL_STATE(4745)] = 71740, + [SMALL_STATE(4746)] = 71859, + [SMALL_STATE(4747)] = 71922, + [SMALL_STATE(4748)] = 71987, + [SMALL_STATE(4749)] = 72096, + [SMALL_STATE(4750)] = 72169, + [SMALL_STATE(4751)] = 72278, + [SMALL_STATE(4752)] = 72343, + [SMALL_STATE(4753)] = 72414, + [SMALL_STATE(4754)] = 72533, + [SMALL_STATE(4755)] = 72616, + [SMALL_STATE(4756)] = 72683, + [SMALL_STATE(4757)] = 72746, + [SMALL_STATE(4758)] = 72907, + [SMALL_STATE(4759)] = 72980, + [SMALL_STATE(4760)] = 73053, + [SMALL_STATE(4761)] = 73120, + [SMALL_STATE(4762)] = 73191, + [SMALL_STATE(4763)] = 73259, + [SMALL_STATE(4764)] = 73321, + [SMALL_STATE(4765)] = 73387, + [SMALL_STATE(4766)] = 73459, + [SMALL_STATE(4767)] = 73523, + [SMALL_STATE(4768)] = 73591, + [SMALL_STATE(4769)] = 73653, + [SMALL_STATE(4770)] = 73719, + [SMALL_STATE(4771)] = 73791, + [SMALL_STATE(4772)] = 73853, + [SMALL_STATE(4773)] = 73921, + [SMALL_STATE(4774)] = 73985, + [SMALL_STATE(4775)] = 74051, + [SMALL_STATE(4776)] = 74113, + [SMALL_STATE(4777)] = 74175, + [SMALL_STATE(4778)] = 74253, + [SMALL_STATE(4779)] = 74319, + [SMALL_STATE(4780)] = 74435, + [SMALL_STATE(4781)] = 74497, + [SMALL_STATE(4782)] = 74565, + [SMALL_STATE(4783)] = 74681, + [SMALL_STATE(4784)] = 74793, + [SMALL_STATE(4785)] = 74859, + [SMALL_STATE(4786)] = 74931, + [SMALL_STATE(4787)] = 74993, + [SMALL_STATE(4788)] = 75073, + [SMALL_STATE(4789)] = 75155, + [SMALL_STATE(4790)] = 75217, + [SMALL_STATE(4791)] = 75283, + [SMALL_STATE(4792)] = 75345, + [SMALL_STATE(4793)] = 75415, + [SMALL_STATE(4794)] = 75477, + [SMALL_STATE(4795)] = 75581, + [SMALL_STATE(4796)] = 75643, + [SMALL_STATE(4797)] = 75759, + [SMALL_STATE(4798)] = 75829, + [SMALL_STATE(4799)] = 75899, + [SMALL_STATE(4800)] = 75961, + [SMALL_STATE(4801)] = 76033, + [SMALL_STATE(4802)] = 76103, + [SMALL_STATE(4803)] = 76171, + [SMALL_STATE(4804)] = 76287, + [SMALL_STATE(4805)] = 76357, + [SMALL_STATE(4806)] = 76427, + [SMALL_STATE(4807)] = 76489, + [SMALL_STATE(4808)] = 76559, + [SMALL_STATE(4809)] = 76629, + [SMALL_STATE(4810)] = 76729, + [SMALL_STATE(4811)] = 76791, + [SMALL_STATE(4812)] = 76855, + [SMALL_STATE(4813)] = 76917, + [SMALL_STATE(4814)] = 76979, + [SMALL_STATE(4815)] = 77095, + [SMALL_STATE(4816)] = 77157, + [SMALL_STATE(4817)] = 77219, + [SMALL_STATE(4818)] = 77315, + [SMALL_STATE(4819)] = 77381, + [SMALL_STATE(4820)] = 77475, + [SMALL_STATE(4821)] = 77537, + [SMALL_STATE(4822)] = 77653, + [SMALL_STATE(4823)] = 77715, + [SMALL_STATE(4824)] = 77787, + [SMALL_STATE(4825)] = 77849, + [SMALL_STATE(4826)] = 77911, + [SMALL_STATE(4827)] = 78027, + [SMALL_STATE(4828)] = 78093, + [SMALL_STATE(4829)] = 78183, + [SMALL_STATE(4830)] = 78299, + [SMALL_STATE(4831)] = 78363, + [SMALL_STATE(4832)] = 78479, + [SMALL_STATE(4833)] = 78541, + [SMALL_STATE(4834)] = 78603, + [SMALL_STATE(4835)] = 78719, + [SMALL_STATE(4836)] = 78835, + [SMALL_STATE(4837)] = 78897, + [SMALL_STATE(4838)] = 78959, + [SMALL_STATE(4839)] = 79021, + [SMALL_STATE(4840)] = 79109, + [SMALL_STATE(4841)] = 79171, + [SMALL_STATE(4842)] = 79287, + [SMALL_STATE(4843)] = 79349, + [SMALL_STATE(4844)] = 79421, + [SMALL_STATE(4845)] = 79489, + [SMALL_STATE(4846)] = 79597, + [SMALL_STATE(4847)] = 79713, + [SMALL_STATE(4848)] = 79775, + [SMALL_STATE(4849)] = 79891, + [SMALL_STATE(4850)] = 79963, + [SMALL_STATE(4851)] = 80035, + [SMALL_STATE(4852)] = 80103, + [SMALL_STATE(4853)] = 80165, + [SMALL_STATE(4854)] = 80281, + [SMALL_STATE(4855)] = 80343, + [SMALL_STATE(4856)] = 80459, + [SMALL_STATE(4857)] = 80521, + [SMALL_STATE(4858)] = 80637, + [SMALL_STATE(4859)] = 80753, + [SMALL_STATE(4860)] = 80825, + [SMALL_STATE(4861)] = 80941, + [SMALL_STATE(4862)] = 81057, + [SMALL_STATE(4863)] = 81119, + [SMALL_STATE(4864)] = 81181, + [SMALL_STATE(4865)] = 81297, + [SMALL_STATE(4866)] = 81413, + [SMALL_STATE(4867)] = 81529, + [SMALL_STATE(4868)] = 81599, + [SMALL_STATE(4869)] = 81661, + [SMALL_STATE(4870)] = 81733, + [SMALL_STATE(4871)] = 81795, + [SMALL_STATE(4872)] = 81911, + [SMALL_STATE(4873)] = 81983, + [SMALL_STATE(4874)] = 82045, + [SMALL_STATE(4875)] = 82107, + [SMALL_STATE(4876)] = 82219, + [SMALL_STATE(4877)] = 82335, + [SMALL_STATE(4878)] = 82397, + [SMALL_STATE(4879)] = 82513, + [SMALL_STATE(4880)] = 82629, + [SMALL_STATE(4881)] = 82691, + [SMALL_STATE(4882)] = 82763, + [SMALL_STATE(4883)] = 82879, + [SMALL_STATE(4884)] = 82995, + [SMALL_STATE(4885)] = 83057, + [SMALL_STATE(4886)] = 83125, + [SMALL_STATE(4887)] = 83241, + [SMALL_STATE(4888)] = 83303, + [SMALL_STATE(4889)] = 83419, + [SMALL_STATE(4890)] = 83485, + [SMALL_STATE(4891)] = 83547, + [SMALL_STATE(4892)] = 83663, + [SMALL_STATE(4893)] = 83725, + [SMALL_STATE(4894)] = 83841, + [SMALL_STATE(4895)] = 83903, + [SMALL_STATE(4896)] = 83969, + [SMALL_STATE(4897)] = 84085, + [SMALL_STATE(4898)] = 84201, + [SMALL_STATE(4899)] = 84317, + [SMALL_STATE(4900)] = 84433, + [SMALL_STATE(4901)] = 84549, + [SMALL_STATE(4902)] = 84665, + [SMALL_STATE(4903)] = 84727, + [SMALL_STATE(4904)] = 84843, + [SMALL_STATE(4905)] = 84959, + [SMALL_STATE(4906)] = 85025, + [SMALL_STATE(4907)] = 85095, + [SMALL_STATE(4908)] = 85211, + [SMALL_STATE(4909)] = 85273, + [SMALL_STATE(4910)] = 85335, + [SMALL_STATE(4911)] = 85401, + [SMALL_STATE(4912)] = 85463, + [SMALL_STATE(4913)] = 85525, + [SMALL_STATE(4914)] = 85641, + [SMALL_STATE(4915)] = 85703, + [SMALL_STATE(4916)] = 85819, + [SMALL_STATE(4917)] = 85881, + [SMALL_STATE(4918)] = 85997, + [SMALL_STATE(4919)] = 86113, + [SMALL_STATE(4920)] = 86175, + [SMALL_STATE(4921)] = 86245, + [SMALL_STATE(4922)] = 86361, + [SMALL_STATE(4923)] = 86477, + [SMALL_STATE(4924)] = 86593, + [SMALL_STATE(4925)] = 86709, + [SMALL_STATE(4926)] = 86825, + [SMALL_STATE(4927)] = 86899, + [SMALL_STATE(4928)] = 86961, + [SMALL_STATE(4929)] = 87077, + [SMALL_STATE(4930)] = 87139, + [SMALL_STATE(4931)] = 87255, + [SMALL_STATE(4932)] = 87327, + [SMALL_STATE(4933)] = 87389, + [SMALL_STATE(4934)] = 87461, + [SMALL_STATE(4935)] = 87523, + [SMALL_STATE(4936)] = 87585, + [SMALL_STATE(4937)] = 87651, + [SMALL_STATE(4938)] = 87713, + [SMALL_STATE(4939)] = 87785, + [SMALL_STATE(4940)] = 87901, + [SMALL_STATE(4941)] = 87963, + [SMALL_STATE(4942)] = 88079, + [SMALL_STATE(4943)] = 88195, + [SMALL_STATE(4944)] = 88267, + [SMALL_STATE(4945)] = 88383, + [SMALL_STATE(4946)] = 88499, + [SMALL_STATE(4947)] = 88561, + [SMALL_STATE(4948)] = 88677, + [SMALL_STATE(4949)] = 88739, + [SMALL_STATE(4950)] = 88855, + [SMALL_STATE(4951)] = 88971, + [SMALL_STATE(4952)] = 89033, + [SMALL_STATE(4953)] = 89149, + [SMALL_STATE(4954)] = 89217, + [SMALL_STATE(4955)] = 89333, + [SMALL_STATE(4956)] = 89405, + [SMALL_STATE(4957)] = 89521, + [SMALL_STATE(4958)] = 89637, + [SMALL_STATE(4959)] = 89753, + [SMALL_STATE(4960)] = 89869, + [SMALL_STATE(4961)] = 89985, + [SMALL_STATE(4962)] = 90047, + [SMALL_STATE(4963)] = 90113, + [SMALL_STATE(4964)] = 90185, + [SMALL_STATE(4965)] = 90301, + [SMALL_STATE(4966)] = 90363, + [SMALL_STATE(4967)] = 90479, + [SMALL_STATE(4968)] = 90541, + [SMALL_STATE(4969)] = 90603, + [SMALL_STATE(4970)] = 90665, + [SMALL_STATE(4971)] = 90727, + [SMALL_STATE(4972)] = 90843, + [SMALL_STATE(4973)] = 90905, + [SMALL_STATE(4974)] = 91013, + [SMALL_STATE(4975)] = 91081, + [SMALL_STATE(4976)] = 91153, + [SMALL_STATE(4977)] = 91269, + [SMALL_STATE(4978)] = 91331, + [SMALL_STATE(4979)] = 91393, + [SMALL_STATE(4980)] = 91455, + [SMALL_STATE(4981)] = 91517, + [SMALL_STATE(4982)] = 91579, + [SMALL_STATE(4983)] = 91649, + [SMALL_STATE(4984)] = 91711, + [SMALL_STATE(4985)] = 91773, + [SMALL_STATE(4986)] = 91835, + [SMALL_STATE(4987)] = 91897, + [SMALL_STATE(4988)] = 91959, + [SMALL_STATE(4989)] = 92033, + [SMALL_STATE(4990)] = 92103, + [SMALL_STATE(4991)] = 92219, + [SMALL_STATE(4992)] = 92281, + [SMALL_STATE(4993)] = 92397, + [SMALL_STATE(4994)] = 92459, + [SMALL_STATE(4995)] = 92575, + [SMALL_STATE(4996)] = 92647, + [SMALL_STATE(4997)] = 92755, + [SMALL_STATE(4998)] = 92827, + [SMALL_STATE(4999)] = 92889, + [SMALL_STATE(5000)] = 92951, + [SMALL_STATE(5001)] = 93013, + [SMALL_STATE(5002)] = 93121, + [SMALL_STATE(5003)] = 93229, + [SMALL_STATE(5004)] = 93291, + [SMALL_STATE(5005)] = 93357, + [SMALL_STATE(5006)] = 93473, + [SMALL_STATE(5007)] = 93535, + [SMALL_STATE(5008)] = 93651, + [SMALL_STATE(5009)] = 93767, + [SMALL_STATE(5010)] = 93883, + [SMALL_STATE(5011)] = 93999, + [SMALL_STATE(5012)] = 94115, + [SMALL_STATE(5013)] = 94231, + [SMALL_STATE(5014)] = 94347, + [SMALL_STATE(5015)] = 94463, + [SMALL_STATE(5016)] = 94579, + [SMALL_STATE(5017)] = 94695, + [SMALL_STATE(5018)] = 94811, + [SMALL_STATE(5019)] = 94919, + [SMALL_STATE(5020)] = 95035, + [SMALL_STATE(5021)] = 95097, + [SMALL_STATE(5022)] = 95167, + [SMALL_STATE(5023)] = 95239, + [SMALL_STATE(5024)] = 95355, + [SMALL_STATE(5025)] = 95427, + [SMALL_STATE(5026)] = 95539, + [SMALL_STATE(5027)] = 95601, + [SMALL_STATE(5028)] = 95663, + [SMALL_STATE(5029)] = 95747, + [SMALL_STATE(5030)] = 95808, + [SMALL_STATE(5031)] = 95869, + [SMALL_STATE(5032)] = 95936, + [SMALL_STATE(5033)] = 96049, + [SMALL_STATE(5034)] = 96118, + [SMALL_STATE(5035)] = 96179, + [SMALL_STATE(5036)] = 96240, + [SMALL_STATE(5037)] = 96305, + [SMALL_STATE(5038)] = 96370, + [SMALL_STATE(5039)] = 96435, + [SMALL_STATE(5040)] = 96500, + [SMALL_STATE(5041)] = 96561, + [SMALL_STATE(5042)] = 96626, + [SMALL_STATE(5043)] = 96695, + [SMALL_STATE(5044)] = 96760, + [SMALL_STATE(5045)] = 96827, + [SMALL_STATE(5046)] = 96896, + [SMALL_STATE(5047)] = 96957, + [SMALL_STATE(5048)] = 97018, + [SMALL_STATE(5049)] = 97097, + [SMALL_STATE(5050)] = 97158, + [SMALL_STATE(5051)] = 97227, + [SMALL_STATE(5052)] = 97296, + [SMALL_STATE(5053)] = 97357, + [SMALL_STATE(5054)] = 97418, + [SMALL_STATE(5055)] = 97479, + [SMALL_STATE(5056)] = 97544, + [SMALL_STATE(5057)] = 97605, + [SMALL_STATE(5058)] = 97666, + [SMALL_STATE(5059)] = 97727, + [SMALL_STATE(5060)] = 97826, + [SMALL_STATE(5061)] = 97925, + [SMALL_STATE(5062)] = 97986, + [SMALL_STATE(5063)] = 98099, + [SMALL_STATE(5064)] = 98160, + [SMALL_STATE(5065)] = 98229, + [SMALL_STATE(5066)] = 98290, + [SMALL_STATE(5067)] = 98351, + [SMALL_STATE(5068)] = 98416, + [SMALL_STATE(5069)] = 98481, + [SMALL_STATE(5070)] = 98542, + [SMALL_STATE(5071)] = 98603, + [SMALL_STATE(5072)] = 98664, + [SMALL_STATE(5073)] = 98745, + [SMALL_STATE(5074)] = 98810, + [SMALL_STATE(5075)] = 98871, + [SMALL_STATE(5076)] = 98932, + [SMALL_STATE(5077)] = 99039, + [SMALL_STATE(5078)] = 99108, + [SMALL_STATE(5079)] = 99169, + [SMALL_STATE(5080)] = 99230, + [SMALL_STATE(5081)] = 99299, + [SMALL_STATE(5082)] = 99364, + [SMALL_STATE(5083)] = 99429, + [SMALL_STATE(5084)] = 99490, + [SMALL_STATE(5085)] = 99551, + [SMALL_STATE(5086)] = 99612, + [SMALL_STATE(5087)] = 99677, + [SMALL_STATE(5088)] = 99790, + [SMALL_STATE(5089)] = 99851, + [SMALL_STATE(5090)] = 99958, + [SMALL_STATE(5091)] = 100019, + [SMALL_STATE(5092)] = 100080, + [SMALL_STATE(5093)] = 100141, + [SMALL_STATE(5094)] = 100214, + [SMALL_STATE(5095)] = 100291, + [SMALL_STATE(5096)] = 100366, + [SMALL_STATE(5097)] = 100469, + [SMALL_STATE(5098)] = 100568, + [SMALL_STATE(5099)] = 100663, + [SMALL_STATE(5100)] = 100756, + [SMALL_STATE(5101)] = 100845, + [SMALL_STATE(5102)] = 100932, + [SMALL_STATE(5103)] = 101015, + [SMALL_STATE(5104)] = 101080, + [SMALL_STATE(5105)] = 101159, + [SMALL_STATE(5106)] = 101228, + [SMALL_STATE(5107)] = 101289, + [SMALL_STATE(5108)] = 101370, + [SMALL_STATE(5109)] = 101439, + [SMALL_STATE(5110)] = 101506, + [SMALL_STATE(5111)] = 101567, + [SMALL_STATE(5112)] = 101628, + [SMALL_STATE(5113)] = 101693, + [SMALL_STATE(5114)] = 101754, + [SMALL_STATE(5115)] = 101815, + [SMALL_STATE(5116)] = 101876, + [SMALL_STATE(5117)] = 101941, + [SMALL_STATE(5118)] = 102016, + [SMALL_STATE(5119)] = 102129, + [SMALL_STATE(5120)] = 102236, + [SMALL_STATE(5121)] = 102301, + [SMALL_STATE(5122)] = 102362, + [SMALL_STATE(5123)] = 102423, + [SMALL_STATE(5124)] = 102484, + [SMALL_STATE(5125)] = 102545, + [SMALL_STATE(5126)] = 102606, + [SMALL_STATE(5127)] = 102667, + [SMALL_STATE(5128)] = 102728, + [SMALL_STATE(5129)] = 102789, + [SMALL_STATE(5130)] = 102850, + [SMALL_STATE(5131)] = 102913, + [SMALL_STATE(5132)] = 102980, + [SMALL_STATE(5133)] = 103041, + [SMALL_STATE(5134)] = 103154, + [SMALL_STATE(5135)] = 103223, + [SMALL_STATE(5136)] = 103286, + [SMALL_STATE(5137)] = 103397, + [SMALL_STATE(5138)] = 103458, + [SMALL_STATE(5139)] = 103527, + [SMALL_STATE(5140)] = 103588, + [SMALL_STATE(5141)] = 103651, + [SMALL_STATE(5142)] = 103712, + [SMALL_STATE(5143)] = 103773, + [SMALL_STATE(5144)] = 103834, + [SMALL_STATE(5145)] = 103947, + [SMALL_STATE(5146)] = 104008, + [SMALL_STATE(5147)] = 104069, + [SMALL_STATE(5148)] = 104130, + [SMALL_STATE(5149)] = 104195, + [SMALL_STATE(5150)] = 104260, + [SMALL_STATE(5151)] = 104325, + [SMALL_STATE(5152)] = 104394, + [SMALL_STATE(5153)] = 104463, + [SMALL_STATE(5154)] = 104528, + [SMALL_STATE(5155)] = 104589, + [SMALL_STATE(5156)] = 104650, + [SMALL_STATE(5157)] = 104711, + [SMALL_STATE(5158)] = 104778, + [SMALL_STATE(5159)] = 104839, + [SMALL_STATE(5160)] = 104900, + [SMALL_STATE(5161)] = 105013, + [SMALL_STATE(5162)] = 105074, + [SMALL_STATE(5163)] = 105135, + [SMALL_STATE(5164)] = 105202, + [SMALL_STATE(5165)] = 105263, + [SMALL_STATE(5166)] = 105324, + [SMALL_STATE(5167)] = 105389, + [SMALL_STATE(5168)] = 105502, + [SMALL_STATE(5169)] = 105615, + [SMALL_STATE(5170)] = 105676, + [SMALL_STATE(5171)] = 105737, + [SMALL_STATE(5172)] = 105812, + [SMALL_STATE(5173)] = 105887, + [SMALL_STATE(5174)] = 105954, + [SMALL_STATE(5175)] = 106015, + [SMALL_STATE(5176)] = 106076, + [SMALL_STATE(5177)] = 106137, + [SMALL_STATE(5178)] = 106250, + [SMALL_STATE(5179)] = 106311, + [SMALL_STATE(5180)] = 106424, + [SMALL_STATE(5181)] = 106485, + [SMALL_STATE(5182)] = 106546, + [SMALL_STATE(5183)] = 106659, + [SMALL_STATE(5184)] = 106720, + [SMALL_STATE(5185)] = 106781, + [SMALL_STATE(5186)] = 106894, + [SMALL_STATE(5187)] = 107001, + [SMALL_STATE(5188)] = 107114, + [SMALL_STATE(5189)] = 107227, + [SMALL_STATE(5190)] = 107340, + [SMALL_STATE(5191)] = 107453, + [SMALL_STATE(5192)] = 107566, + [SMALL_STATE(5193)] = 107679, + [SMALL_STATE(5194)] = 107740, + [SMALL_STATE(5195)] = 107801, + [SMALL_STATE(5196)] = 107914, + [SMALL_STATE(5197)] = 108027, + [SMALL_STATE(5198)] = 108094, + [SMALL_STATE(5199)] = 108207, + [SMALL_STATE(5200)] = 108320, + [SMALL_STATE(5201)] = 108433, + [SMALL_STATE(5202)] = 108546, + [SMALL_STATE(5203)] = 108659, + [SMALL_STATE(5204)] = 108772, + [SMALL_STATE(5205)] = 108885, + [SMALL_STATE(5206)] = 108998, + [SMALL_STATE(5207)] = 109111, + [SMALL_STATE(5208)] = 109224, + [SMALL_STATE(5209)] = 109337, + [SMALL_STATE(5210)] = 109450, + [SMALL_STATE(5211)] = 109525, + [SMALL_STATE(5212)] = 109638, + [SMALL_STATE(5213)] = 109745, + [SMALL_STATE(5214)] = 109812, + [SMALL_STATE(5215)] = 109881, + [SMALL_STATE(5216)] = 109954, + [SMALL_STATE(5217)] = 110015, + [SMALL_STATE(5218)] = 110122, + [SMALL_STATE(5219)] = 110189, + [SMALL_STATE(5220)] = 110250, + [SMALL_STATE(5221)] = 110315, + [SMALL_STATE(5222)] = 110376, + [SMALL_STATE(5223)] = 110491, + [SMALL_STATE(5224)] = 110552, + [SMALL_STATE(5225)] = 110613, + [SMALL_STATE(5226)] = 110674, + [SMALL_STATE(5227)] = 110741, + [SMALL_STATE(5228)] = 110856, + [SMALL_STATE(5229)] = 110917, + [SMALL_STATE(5230)] = 110978, + [SMALL_STATE(5231)] = 111051, + [SMALL_STATE(5232)] = 111164, + [SMALL_STATE(5233)] = 111277, + [SMALL_STATE(5234)] = 111344, + [SMALL_STATE(5235)] = 111405, + [SMALL_STATE(5236)] = 111470, + [SMALL_STATE(5237)] = 111535, + [SMALL_STATE(5238)] = 111646, + [SMALL_STATE(5239)] = 111707, + [SMALL_STATE(5240)] = 111820, + [SMALL_STATE(5241)] = 111885, + [SMALL_STATE(5242)] = 111948, + [SMALL_STATE(5243)] = 112059, + [SMALL_STATE(5244)] = 112128, + [SMALL_STATE(5245)] = 112197, + [SMALL_STATE(5246)] = 112258, + [SMALL_STATE(5247)] = 112327, + [SMALL_STATE(5248)] = 112396, + [SMALL_STATE(5249)] = 112465, + [SMALL_STATE(5250)] = 112532, + [SMALL_STATE(5251)] = 112601, + [SMALL_STATE(5252)] = 112662, + [SMALL_STATE(5253)] = 112723, + [SMALL_STATE(5254)] = 112792, + [SMALL_STATE(5255)] = 112861, + [SMALL_STATE(5256)] = 112930, + [SMALL_STATE(5257)] = 112999, + [SMALL_STATE(5258)] = 113060, + [SMALL_STATE(5259)] = 113121, + [SMALL_STATE(5260)] = 113182, + [SMALL_STATE(5261)] = 113243, + [SMALL_STATE(5262)] = 113308, + [SMALL_STATE(5263)] = 113369, + [SMALL_STATE(5264)] = 113430, + [SMALL_STATE(5265)] = 113491, + [SMALL_STATE(5266)] = 113552, + [SMALL_STATE(5267)] = 113632, + [SMALL_STATE(5268)] = 113692, + [SMALL_STATE(5269)] = 113766, + [SMALL_STATE(5270)] = 113870, + [SMALL_STATE(5271)] = 113944, + [SMALL_STATE(5272)] = 114100, + [SMALL_STATE(5273)] = 114160, + [SMALL_STATE(5274)] = 114220, + [SMALL_STATE(5275)] = 114334, + [SMALL_STATE(5276)] = 114438, + [SMALL_STATE(5277)] = 114504, + [SMALL_STATE(5278)] = 114570, + [SMALL_STATE(5279)] = 114630, + [SMALL_STATE(5280)] = 114708, + [SMALL_STATE(5281)] = 114770, + [SMALL_STATE(5282)] = 114830, + [SMALL_STATE(5283)] = 114890, + [SMALL_STATE(5284)] = 114958, + [SMALL_STATE(5285)] = 115022, + [SMALL_STATE(5286)] = 115090, + [SMALL_STATE(5287)] = 115156, + [SMALL_STATE(5288)] = 115218, + [SMALL_STATE(5289)] = 115284, + [SMALL_STATE(5290)] = 115352, + [SMALL_STATE(5291)] = 115412, + [SMALL_STATE(5292)] = 115482, + [SMALL_STATE(5293)] = 115586, + [SMALL_STATE(5294)] = 115648, + [SMALL_STATE(5295)] = 115804, + [SMALL_STATE(5296)] = 115908, + [SMALL_STATE(5297)] = 116016, + [SMALL_STATE(5298)] = 116120, + [SMALL_STATE(5299)] = 116190, + [SMALL_STATE(5300)] = 116296, + [SMALL_STATE(5301)] = 116356, + [SMALL_STATE(5302)] = 116428, + [SMALL_STATE(5303)] = 116502, + [SMALL_STATE(5304)] = 116608, + [SMALL_STATE(5305)] = 116712, + [SMALL_STATE(5306)] = 116780, + [SMALL_STATE(5307)] = 116936, + [SMALL_STATE(5308)] = 116998, + [SMALL_STATE(5309)] = 117062, + [SMALL_STATE(5310)] = 117126, + [SMALL_STATE(5311)] = 117240, + [SMALL_STATE(5312)] = 117300, + [SMALL_STATE(5313)] = 117362, + [SMALL_STATE(5314)] = 117476, + [SMALL_STATE(5315)] = 117538, + [SMALL_STATE(5316)] = 117646, + [SMALL_STATE(5317)] = 117750, + [SMALL_STATE(5318)] = 117906, + [SMALL_STATE(5319)] = 117974, + [SMALL_STATE(5320)] = 118078, + [SMALL_STATE(5321)] = 118156, + [SMALL_STATE(5322)] = 118222, + [SMALL_STATE(5323)] = 118328, + [SMALL_STATE(5324)] = 118400, + [SMALL_STATE(5325)] = 118460, + [SMALL_STATE(5326)] = 118564, + [SMALL_STATE(5327)] = 118624, + [SMALL_STATE(5328)] = 118738, + [SMALL_STATE(5329)] = 118802, + [SMALL_STATE(5330)] = 118906, + [SMALL_STATE(5331)] = 118972, + [SMALL_STATE(5332)] = 119046, + [SMALL_STATE(5333)] = 119120, + [SMALL_STATE(5334)] = 119276, + [SMALL_STATE(5335)] = 119336, + [SMALL_STATE(5336)] = 119406, + [SMALL_STATE(5337)] = 119562, + [SMALL_STATE(5338)] = 119666, + [SMALL_STATE(5339)] = 119726, + [SMALL_STATE(5340)] = 119830, + [SMALL_STATE(5341)] = 119944, + [SMALL_STATE(5342)] = 120016, + [SMALL_STATE(5343)] = 120120, + [SMALL_STATE(5344)] = 120224, + [SMALL_STATE(5345)] = 120328, + [SMALL_STATE(5346)] = 120432, + [SMALL_STATE(5347)] = 120588, + [SMALL_STATE(5348)] = 120648, + [SMALL_STATE(5349)] = 120708, + [SMALL_STATE(5350)] = 120818, + [SMALL_STATE(5351)] = 120922, + [SMALL_STATE(5352)] = 120984, + [SMALL_STATE(5353)] = 121044, + [SMALL_STATE(5354)] = 121110, + [SMALL_STATE(5355)] = 121174, + [SMALL_STATE(5356)] = 121234, + [SMALL_STATE(5357)] = 121302, + [SMALL_STATE(5358)] = 121458, + [SMALL_STATE(5359)] = 121518, + [SMALL_STATE(5360)] = 121588, + [SMALL_STATE(5361)] = 121648, + [SMALL_STATE(5362)] = 121804, + [SMALL_STATE(5363)] = 121864, + [SMALL_STATE(5364)] = 121924, + [SMALL_STATE(5365)] = 121988, + [SMALL_STATE(5366)] = 122056, + [SMALL_STATE(5367)] = 122212, + [SMALL_STATE(5368)] = 122322, + [SMALL_STATE(5369)] = 122442, + [SMALL_STATE(5370)] = 122502, + [SMALL_STATE(5371)] = 122562, + [SMALL_STATE(5372)] = 122628, + [SMALL_STATE(5373)] = 122696, + [SMALL_STATE(5374)] = 122772, + [SMALL_STATE(5375)] = 122832, + [SMALL_STATE(5376)] = 122906, + [SMALL_STATE(5377)] = 123008, + [SMALL_STATE(5378)] = 123112, + [SMALL_STATE(5379)] = 123210, + [SMALL_STATE(5380)] = 123304, + [SMALL_STATE(5381)] = 123396, + [SMALL_STATE(5382)] = 123484, + [SMALL_STATE(5383)] = 123570, + [SMALL_STATE(5384)] = 123652, + [SMALL_STATE(5385)] = 123756, + [SMALL_STATE(5386)] = 123826, + [SMALL_STATE(5387)] = 123904, + [SMALL_STATE(5388)] = 123986, + [SMALL_STATE(5389)] = 124106, + [SMALL_STATE(5390)] = 124262, + [SMALL_STATE(5391)] = 124366, + [SMALL_STATE(5392)] = 124426, + [SMALL_STATE(5393)] = 124506, + [SMALL_STATE(5394)] = 124612, + [SMALL_STATE(5395)] = 124718, + [SMALL_STATE(5396)] = 124824, + [SMALL_STATE(5397)] = 124884, + [SMALL_STATE(5398)] = 124990, + [SMALL_STATE(5399)] = 125100, + [SMALL_STATE(5400)] = 125164, + [SMALL_STATE(5401)] = 125240, + [SMALL_STATE(5402)] = 125342, + [SMALL_STATE(5403)] = 125440, + [SMALL_STATE(5404)] = 125534, + [SMALL_STATE(5405)] = 125626, + [SMALL_STATE(5406)] = 125714, + [SMALL_STATE(5407)] = 125800, + [SMALL_STATE(5408)] = 125882, + [SMALL_STATE(5409)] = 125960, + [SMALL_STATE(5410)] = 126020, + [SMALL_STATE(5411)] = 126100, + [SMALL_STATE(5412)] = 126206, + [SMALL_STATE(5413)] = 126316, + [SMALL_STATE(5414)] = 126422, + [SMALL_STATE(5415)] = 126482, + [SMALL_STATE(5416)] = 126542, + [SMALL_STATE(5417)] = 126646, + [SMALL_STATE(5418)] = 126706, + [SMALL_STATE(5419)] = 126774, + [SMALL_STATE(5420)] = 126842, + [SMALL_STATE(5421)] = 126910, + [SMALL_STATE(5422)] = 126984, + [SMALL_STATE(5423)] = 127052, + [SMALL_STATE(5424)] = 127114, + [SMALL_STATE(5425)] = 127178, + [SMALL_STATE(5426)] = 127282, + [SMALL_STATE(5427)] = 127342, + [SMALL_STATE(5428)] = 127408, + [SMALL_STATE(5429)] = 127474, + [SMALL_STATE(5430)] = 127552, + [SMALL_STATE(5431)] = 127612, + [SMALL_STATE(5432)] = 127682, + [SMALL_STATE(5433)] = 127750, + [SMALL_STATE(5434)] = 127818, + [SMALL_STATE(5435)] = 127922, + [SMALL_STATE(5436)] = 127982, + [SMALL_STATE(5437)] = 128042, + [SMALL_STATE(5438)] = 128146, + [SMALL_STATE(5439)] = 128206, + [SMALL_STATE(5440)] = 128310, + [SMALL_STATE(5441)] = 128380, + [SMALL_STATE(5442)] = 128484, + [SMALL_STATE(5443)] = 128556, + [SMALL_STATE(5444)] = 128616, + [SMALL_STATE(5445)] = 128676, + [SMALL_STATE(5446)] = 128780, + [SMALL_STATE(5447)] = 128840, + [SMALL_STATE(5448)] = 128946, + [SMALL_STATE(5449)] = 129006, + [SMALL_STATE(5450)] = 129066, + [SMALL_STATE(5451)] = 129170, + [SMALL_STATE(5452)] = 129268, + [SMALL_STATE(5453)] = 129332, + [SMALL_STATE(5454)] = 129392, + [SMALL_STATE(5455)] = 129452, + [SMALL_STATE(5456)] = 129512, + [SMALL_STATE(5457)] = 129572, + [SMALL_STATE(5458)] = 129632, + [SMALL_STATE(5459)] = 129692, + [SMALL_STATE(5460)] = 129752, + [SMALL_STATE(5461)] = 129812, + [SMALL_STATE(5462)] = 129872, + [SMALL_STATE(5463)] = 129978, + [SMALL_STATE(5464)] = 130038, + [SMALL_STATE(5465)] = 130108, + [SMALL_STATE(5466)] = 130168, + [SMALL_STATE(5467)] = 130238, + [SMALL_STATE(5468)] = 130298, + [SMALL_STATE(5469)] = 130370, + [SMALL_STATE(5470)] = 130442, + [SMALL_STATE(5471)] = 130502, + [SMALL_STATE(5472)] = 130570, + [SMALL_STATE(5473)] = 130630, + [SMALL_STATE(5474)] = 130702, + [SMALL_STATE(5475)] = 130808, + [SMALL_STATE(5476)] = 130882, + [SMALL_STATE(5477)] = 130956, + [SMALL_STATE(5478)] = 131062, + [SMALL_STATE(5479)] = 131134, + [SMALL_STATE(5480)] = 131240, + [SMALL_STATE(5481)] = 131346, + [SMALL_STATE(5482)] = 131456, + [SMALL_STATE(5483)] = 131532, + [SMALL_STATE(5484)] = 131606, + [SMALL_STATE(5485)] = 131708, + [SMALL_STATE(5486)] = 131806, + [SMALL_STATE(5487)] = 131900, + [SMALL_STATE(5488)] = 131992, + [SMALL_STATE(5489)] = 132080, + [SMALL_STATE(5490)] = 132166, + [SMALL_STATE(5491)] = 132248, + [SMALL_STATE(5492)] = 132326, + [SMALL_STATE(5493)] = 132432, + [SMALL_STATE(5494)] = 132506, + [SMALL_STATE(5495)] = 132612, + [SMALL_STATE(5496)] = 132722, + [SMALL_STATE(5497)] = 132828, + [SMALL_STATE(5498)] = 132938, + [SMALL_STATE(5499)] = 133042, + [SMALL_STATE(5500)] = 133102, + [SMALL_STATE(5501)] = 133200, + [SMALL_STATE(5502)] = 133260, + [SMALL_STATE(5503)] = 133364, + [SMALL_STATE(5504)] = 133432, + [SMALL_STATE(5505)] = 133506, + [SMALL_STATE(5506)] = 133566, + [SMALL_STATE(5507)] = 133626, + [SMALL_STATE(5508)] = 133736, + [SMALL_STATE(5509)] = 133810, + [SMALL_STATE(5510)] = 133918, + [SMALL_STATE(5511)] = 133992, + [SMALL_STATE(5512)] = 134062, + [SMALL_STATE(5513)] = 134130, + [SMALL_STATE(5514)] = 134242, + [SMALL_STATE(5515)] = 134310, + [SMALL_STATE(5516)] = 134380, + [SMALL_STATE(5517)] = 134456, + [SMALL_STATE(5518)] = 134530, + [SMALL_STATE(5519)] = 134630, + [SMALL_STATE(5520)] = 134726, + [SMALL_STATE(5521)] = 134818, + [SMALL_STATE(5522)] = 134908, + [SMALL_STATE(5523)] = 134994, + [SMALL_STATE(5524)] = 135054, + [SMALL_STATE(5525)] = 135138, + [SMALL_STATE(5526)] = 135220, + [SMALL_STATE(5527)] = 135298, + [SMALL_STATE(5528)] = 135378, + [SMALL_STATE(5529)] = 135438, + [SMALL_STATE(5530)] = 135498, + [SMALL_STATE(5531)] = 135558, + [SMALL_STATE(5532)] = 135618, + [SMALL_STATE(5533)] = 135678, + [SMALL_STATE(5534)] = 135788, + [SMALL_STATE(5535)] = 135847, + [SMALL_STATE(5536)] = 135906, + [SMALL_STATE(5537)] = 135965, + [SMALL_STATE(5538)] = 136024, + [SMALL_STATE(5539)] = 136083, + [SMALL_STATE(5540)] = 136146, + [SMALL_STATE(5541)] = 136207, + [SMALL_STATE(5542)] = 136266, + [SMALL_STATE(5543)] = 136327, + [SMALL_STATE(5544)] = 136390, + [SMALL_STATE(5545)] = 136449, + [SMALL_STATE(5546)] = 136508, + [SMALL_STATE(5547)] = 136567, + [SMALL_STATE(5548)] = 136628, + [SMALL_STATE(5549)] = 136687, + [SMALL_STATE(5550)] = 136746, + [SMALL_STATE(5551)] = 136805, + [SMALL_STATE(5552)] = 136868, + [SMALL_STATE(5553)] = 136927, + [SMALL_STATE(5554)] = 136986, + [SMALL_STATE(5555)] = 137045, + [SMALL_STATE(5556)] = 137104, + [SMALL_STATE(5557)] = 137163, + [SMALL_STATE(5558)] = 137222, + [SMALL_STATE(5559)] = 137281, + [SMALL_STATE(5560)] = 137340, + [SMALL_STATE(5561)] = 137399, + [SMALL_STATE(5562)] = 137458, + [SMALL_STATE(5563)] = 137525, + [SMALL_STATE(5564)] = 137584, + [SMALL_STATE(5565)] = 137643, + [SMALL_STATE(5566)] = 137702, + [SMALL_STATE(5567)] = 137761, + [SMALL_STATE(5568)] = 137820, + [SMALL_STATE(5569)] = 137893, + [SMALL_STATE(5570)] = 137952, + [SMALL_STATE(5571)] = 138011, + [SMALL_STATE(5572)] = 138070, + [SMALL_STATE(5573)] = 138129, + [SMALL_STATE(5574)] = 138188, + [SMALL_STATE(5575)] = 138253, + [SMALL_STATE(5576)] = 138312, + [SMALL_STATE(5577)] = 138375, + [SMALL_STATE(5578)] = 138434, + [SMALL_STATE(5579)] = 138493, + [SMALL_STATE(5580)] = 138552, + [SMALL_STATE(5581)] = 138619, + [SMALL_STATE(5582)] = 138678, + [SMALL_STATE(5583)] = 138741, + [SMALL_STATE(5584)] = 138800, + [SMALL_STATE(5585)] = 138859, + [SMALL_STATE(5586)] = 138918, + [SMALL_STATE(5587)] = 138977, + [SMALL_STATE(5588)] = 139036, + [SMALL_STATE(5589)] = 139095, + [SMALL_STATE(5590)] = 139154, + [SMALL_STATE(5591)] = 139213, + [SMALL_STATE(5592)] = 139272, + [SMALL_STATE(5593)] = 139331, + [SMALL_STATE(5594)] = 139390, + [SMALL_STATE(5595)] = 139449, + [SMALL_STATE(5596)] = 139508, + [SMALL_STATE(5597)] = 139567, + [SMALL_STATE(5598)] = 139632, + [SMALL_STATE(5599)] = 139697, + [SMALL_STATE(5600)] = 139756, + [SMALL_STATE(5601)] = 139815, + [SMALL_STATE(5602)] = 139874, + [SMALL_STATE(5603)] = 139941, + [SMALL_STATE(5604)] = 140000, + [SMALL_STATE(5605)] = 140059, + [SMALL_STATE(5606)] = 140118, + [SMALL_STATE(5607)] = 140179, + [SMALL_STATE(5608)] = 140242, + [SMALL_STATE(5609)] = 140301, + [SMALL_STATE(5610)] = 140360, + [SMALL_STATE(5611)] = 140419, + [SMALL_STATE(5612)] = 140484, + [SMALL_STATE(5613)] = 140543, + [SMALL_STATE(5614)] = 140602, + [SMALL_STATE(5615)] = 140661, + [SMALL_STATE(5616)] = 140720, + [SMALL_STATE(5617)] = 140781, + [SMALL_STATE(5618)] = 140840, + [SMALL_STATE(5619)] = 140899, + [SMALL_STATE(5620)] = 140958, + [SMALL_STATE(5621)] = 141017, + [SMALL_STATE(5622)] = 141076, + [SMALL_STATE(5623)] = 141135, + [SMALL_STATE(5624)] = 141194, + [SMALL_STATE(5625)] = 141267, + [SMALL_STATE(5626)] = 141326, + [SMALL_STATE(5627)] = 141385, + [SMALL_STATE(5628)] = 141444, + [SMALL_STATE(5629)] = 141503, + [SMALL_STATE(5630)] = 141562, + [SMALL_STATE(5631)] = 141631, + [SMALL_STATE(5632)] = 141698, + [SMALL_STATE(5633)] = 141757, + [SMALL_STATE(5634)] = 141816, + [SMALL_STATE(5635)] = 141875, + [SMALL_STATE(5636)] = 141934, + [SMALL_STATE(5637)] = 141993, + [SMALL_STATE(5638)] = 142054, + [SMALL_STATE(5639)] = 142117, + [SMALL_STATE(5640)] = 142180, + [SMALL_STATE(5641)] = 142239, + [SMALL_STATE(5642)] = 142298, + [SMALL_STATE(5643)] = 142357, + [SMALL_STATE(5644)] = 142416, + [SMALL_STATE(5645)] = 142475, + [SMALL_STATE(5646)] = 142540, + [SMALL_STATE(5647)] = 142599, + [SMALL_STATE(5648)] = 142660, + [SMALL_STATE(5649)] = 142723, + [SMALL_STATE(5650)] = 142784, + [SMALL_STATE(5651)] = 142849, + [SMALL_STATE(5652)] = 142908, + [SMALL_STATE(5653)] = 142967, + [SMALL_STATE(5654)] = 143034, + [SMALL_STATE(5655)] = 143093, + [SMALL_STATE(5656)] = 143152, + [SMALL_STATE(5657)] = 143211, + [SMALL_STATE(5658)] = 143270, + [SMALL_STATE(5659)] = 143329, + [SMALL_STATE(5660)] = 143396, + [SMALL_STATE(5661)] = 143455, + [SMALL_STATE(5662)] = 143516, + [SMALL_STATE(5663)] = 143575, + [SMALL_STATE(5664)] = 143634, + [SMALL_STATE(5665)] = 143693, + [SMALL_STATE(5666)] = 143754, + [SMALL_STATE(5667)] = 143819, + [SMALL_STATE(5668)] = 143878, + [SMALL_STATE(5669)] = 143937, + [SMALL_STATE(5670)] = 143998, + [SMALL_STATE(5671)] = 144059, + [SMALL_STATE(5672)] = 144118, + [SMALL_STATE(5673)] = 144183, + [SMALL_STATE(5674)] = 144242, + [SMALL_STATE(5675)] = 144301, + [SMALL_STATE(5676)] = 144360, + [SMALL_STATE(5677)] = 144419, + [SMALL_STATE(5678)] = 144478, + [SMALL_STATE(5679)] = 144537, + [SMALL_STATE(5680)] = 144598, + [SMALL_STATE(5681)] = 144657, + [SMALL_STATE(5682)] = 144716, + [SMALL_STATE(5683)] = 144779, + [SMALL_STATE(5684)] = 144838, + [SMALL_STATE(5685)] = 144897, + [SMALL_STATE(5686)] = 144956, + [SMALL_STATE(5687)] = 145015, + [SMALL_STATE(5688)] = 145074, + [SMALL_STATE(5689)] = 145141, + [SMALL_STATE(5690)] = 145206, + [SMALL_STATE(5691)] = 145269, + [SMALL_STATE(5692)] = 145328, + [SMALL_STATE(5693)] = 145387, + [SMALL_STATE(5694)] = 145446, + [SMALL_STATE(5695)] = 145505, + [SMALL_STATE(5696)] = 145564, + [SMALL_STATE(5697)] = 145623, + [SMALL_STATE(5698)] = 145736, + [SMALL_STATE(5699)] = 145795, + [SMALL_STATE(5700)] = 145854, + [SMALL_STATE(5701)] = 145917, + [SMALL_STATE(5702)] = 145976, + [SMALL_STATE(5703)] = 146035, + [SMALL_STATE(5704)] = 146094, + [SMALL_STATE(5705)] = 146153, + [SMALL_STATE(5706)] = 146212, + [SMALL_STATE(5707)] = 146271, + [SMALL_STATE(5708)] = 146338, + [SMALL_STATE(5709)] = 146397, + [SMALL_STATE(5710)] = 146456, + [SMALL_STATE(5711)] = 146515, + [SMALL_STATE(5712)] = 146574, + [SMALL_STATE(5713)] = 146633, + [SMALL_STATE(5714)] = 146692, + [SMALL_STATE(5715)] = 146751, + [SMALL_STATE(5716)] = 146810, + [SMALL_STATE(5717)] = 146869, + [SMALL_STATE(5718)] = 146928, + [SMALL_STATE(5719)] = 146993, + [SMALL_STATE(5720)] = 147056, + [SMALL_STATE(5721)] = 147115, + [SMALL_STATE(5722)] = 147174, + [SMALL_STATE(5723)] = 147233, + [SMALL_STATE(5724)] = 147292, + [SMALL_STATE(5725)] = 147350, + [SMALL_STATE(5726)] = 147408, + [SMALL_STATE(5727)] = 147466, + [SMALL_STATE(5728)] = 147524, + [SMALL_STATE(5729)] = 147582, + [SMALL_STATE(5730)] = 147640, + [SMALL_STATE(5731)] = 147698, + [SMALL_STATE(5732)] = 147756, + [SMALL_STATE(5733)] = 147814, + [SMALL_STATE(5734)] = 147872, + [SMALL_STATE(5735)] = 147930, + [SMALL_STATE(5736)] = 148000, + [SMALL_STATE(5737)] = 148058, + [SMALL_STATE(5738)] = 148158, + [SMALL_STATE(5739)] = 148216, + [SMALL_STATE(5740)] = 148274, + [SMALL_STATE(5741)] = 148332, + [SMALL_STATE(5742)] = 148390, + [SMALL_STATE(5743)] = 148456, + [SMALL_STATE(5744)] = 148522, + [SMALL_STATE(5745)] = 148580, + [SMALL_STATE(5746)] = 148646, + [SMALL_STATE(5747)] = 148704, + [SMALL_STATE(5748)] = 148762, + [SMALL_STATE(5749)] = 148860, + [SMALL_STATE(5750)] = 148918, + [SMALL_STATE(5751)] = 148976, + [SMALL_STATE(5752)] = 149034, + [SMALL_STATE(5753)] = 149092, + [SMALL_STATE(5754)] = 149150, + [SMALL_STATE(5755)] = 149208, + [SMALL_STATE(5756)] = 149266, + [SMALL_STATE(5757)] = 149332, + [SMALL_STATE(5758)] = 149426, + [SMALL_STATE(5759)] = 149484, + [SMALL_STATE(5760)] = 149586, + [SMALL_STATE(5761)] = 149644, + [SMALL_STATE(5762)] = 149702, + [SMALL_STATE(5763)] = 149760, + [SMALL_STATE(5764)] = 149822, + [SMALL_STATE(5765)] = 149894, + [SMALL_STATE(5766)] = 149984, + [SMALL_STATE(5767)] = 150042, + [SMALL_STATE(5768)] = 150100, + [SMALL_STATE(5769)] = 150162, + [SMALL_STATE(5770)] = 150232, + [SMALL_STATE(5771)] = 150290, + [SMALL_STATE(5772)] = 150358, + [SMALL_STATE(5773)] = 150416, + [SMALL_STATE(5774)] = 150518, + [SMALL_STATE(5775)] = 150576, + [SMALL_STATE(5776)] = 150634, + [SMALL_STATE(5777)] = 150692, + [SMALL_STATE(5778)] = 150750, + [SMALL_STATE(5779)] = 150808, + [SMALL_STATE(5780)] = 150866, + [SMALL_STATE(5781)] = 150924, + [SMALL_STATE(5782)] = 150986, + [SMALL_STATE(5783)] = 151044, + [SMALL_STATE(5784)] = 151110, + [SMALL_STATE(5785)] = 151168, + [SMALL_STATE(5786)] = 151226, + [SMALL_STATE(5787)] = 151284, + [SMALL_STATE(5788)] = 151346, + [SMALL_STATE(5789)] = 151404, + [SMALL_STATE(5790)] = 151462, + [SMALL_STATE(5791)] = 151520, + [SMALL_STATE(5792)] = 151578, + [SMALL_STATE(5793)] = 151650, + [SMALL_STATE(5794)] = 151722, + [SMALL_STATE(5795)] = 151780, + [SMALL_STATE(5796)] = 151838, + [SMALL_STATE(5797)] = 151896, + [SMALL_STATE(5798)] = 151954, + [SMALL_STATE(5799)] = 152020, + [SMALL_STATE(5800)] = 152078, + [SMALL_STATE(5801)] = 152136, + [SMALL_STATE(5802)] = 152194, + [SMALL_STATE(5803)] = 152260, + [SMALL_STATE(5804)] = 152318, + [SMALL_STATE(5805)] = 152390, + [SMALL_STATE(5806)] = 152448, + [SMALL_STATE(5807)] = 152534, + [SMALL_STATE(5808)] = 152592, + [SMALL_STATE(5809)] = 152650, + [SMALL_STATE(5810)] = 152708, + [SMALL_STATE(5811)] = 152814, + [SMALL_STATE(5812)] = 152872, + [SMALL_STATE(5813)] = 152942, + [SMALL_STATE(5814)] = 153000, + [SMALL_STATE(5815)] = 153062, + [SMALL_STATE(5816)] = 153146, + [SMALL_STATE(5817)] = 153204, + [SMALL_STATE(5818)] = 153262, + [SMALL_STATE(5819)] = 153364, + [SMALL_STATE(5820)] = 153422, + [SMALL_STATE(5821)] = 153480, + [SMALL_STATE(5822)] = 153550, + [SMALL_STATE(5823)] = 153608, + [SMALL_STATE(5824)] = 153666, + [SMALL_STATE(5825)] = 153746, + [SMALL_STATE(5826)] = 153808, + [SMALL_STATE(5827)] = 153866, + [SMALL_STATE(5828)] = 153924, + [SMALL_STATE(5829)] = 154000, + [SMALL_STATE(5830)] = 154106, + [SMALL_STATE(5831)] = 154164, + [SMALL_STATE(5832)] = 154222, + [SMALL_STATE(5833)] = 154324, + [SMALL_STATE(5834)] = 154382, + [SMALL_STATE(5835)] = 154440, + [SMALL_STATE(5836)] = 154498, + [SMALL_STATE(5837)] = 154556, + [SMALL_STATE(5838)] = 154626, + [SMALL_STATE(5839)] = 154684, + [SMALL_STATE(5840)] = 154750, + [SMALL_STATE(5841)] = 154808, + [SMALL_STATE(5842)] = 154866, + [SMALL_STATE(5843)] = 154924, + [SMALL_STATE(5844)] = 154982, + [SMALL_STATE(5845)] = 155040, + [SMALL_STATE(5846)] = 155098, + [SMALL_STATE(5847)] = 155156, + [SMALL_STATE(5848)] = 155214, + [SMALL_STATE(5849)] = 155272, + [SMALL_STATE(5850)] = 155330, + [SMALL_STATE(5851)] = 155388, + [SMALL_STATE(5852)] = 155460, + [SMALL_STATE(5853)] = 155518, + [SMALL_STATE(5854)] = 155576, + [SMALL_STATE(5855)] = 155634, + [SMALL_STATE(5856)] = 155692, + [SMALL_STATE(5857)] = 155750, + [SMALL_STATE(5858)] = 155816, + [SMALL_STATE(5859)] = 155874, + [SMALL_STATE(5860)] = 155932, + [SMALL_STATE(5861)] = 155990, + [SMALL_STATE(5862)] = 156048, + [SMALL_STATE(5863)] = 156106, + [SMALL_STATE(5864)] = 156164, + [SMALL_STATE(5865)] = 156222, + [SMALL_STATE(5866)] = 156324, + [SMALL_STATE(5867)] = 156426, + [SMALL_STATE(5868)] = 156484, + [SMALL_STATE(5869)] = 156542, + [SMALL_STATE(5870)] = 156600, + [SMALL_STATE(5871)] = 156658, + [SMALL_STATE(5872)] = 156716, + [SMALL_STATE(5873)] = 156794, + [SMALL_STATE(5874)] = 156860, + [SMALL_STATE(5875)] = 156930, + [SMALL_STATE(5876)] = 156988, + [SMALL_STATE(5877)] = 157046, + [SMALL_STATE(5878)] = 157104, + [SMALL_STATE(5879)] = 157172, + [SMALL_STATE(5880)] = 157230, + [SMALL_STATE(5881)] = 157288, + [SMALL_STATE(5882)] = 157354, + [SMALL_STATE(5883)] = 157412, + [SMALL_STATE(5884)] = 157470, + [SMALL_STATE(5885)] = 157532, + [SMALL_STATE(5886)] = 157602, + [SMALL_STATE(5887)] = 157676, + [SMALL_STATE(5888)] = 157734, + [SMALL_STATE(5889)] = 157792, + [SMALL_STATE(5890)] = 157850, + [SMALL_STATE(5891)] = 157908, + [SMALL_STATE(5892)] = 158018, + [SMALL_STATE(5893)] = 158084, + [SMALL_STATE(5894)] = 158150, + [SMALL_STATE(5895)] = 158208, + [SMALL_STATE(5896)] = 158266, + [SMALL_STATE(5897)] = 158324, + [SMALL_STATE(5898)] = 158382, + [SMALL_STATE(5899)] = 158448, + [SMALL_STATE(5900)] = 158510, + [SMALL_STATE(5901)] = 158568, + [SMALL_STATE(5902)] = 158626, + [SMALL_STATE(5903)] = 158684, + [SMALL_STATE(5904)] = 158742, + [SMALL_STATE(5905)] = 158800, + [SMALL_STATE(5906)] = 158862, + [SMALL_STATE(5907)] = 158920, + [SMALL_STATE(5908)] = 158986, + [SMALL_STATE(5909)] = 159052, + [SMALL_STATE(5910)] = 159110, + [SMALL_STATE(5911)] = 159168, + [SMALL_STATE(5912)] = 159234, + [SMALL_STATE(5913)] = 159300, + [SMALL_STATE(5914)] = 159358, + [SMALL_STATE(5915)] = 159430, + [SMALL_STATE(5916)] = 159488, + [SMALL_STATE(5917)] = 159548, + [SMALL_STATE(5918)] = 159606, + [SMALL_STATE(5919)] = 159664, + [SMALL_STATE(5920)] = 159736, + [SMALL_STATE(5921)] = 159794, + [SMALL_STATE(5922)] = 159854, + [SMALL_STATE(5923)] = 159920, + [SMALL_STATE(5924)] = 159978, + [SMALL_STATE(5925)] = 160036, + [SMALL_STATE(5926)] = 160094, + [SMALL_STATE(5927)] = 160152, + [SMALL_STATE(5928)] = 160210, + [SMALL_STATE(5929)] = 160268, + [SMALL_STATE(5930)] = 160326, + [SMALL_STATE(5931)] = 160432, + [SMALL_STATE(5932)] = 160490, + [SMALL_STATE(5933)] = 160556, + [SMALL_STATE(5934)] = 160614, + [SMALL_STATE(5935)] = 160686, + [SMALL_STATE(5936)] = 160743, + [SMALL_STATE(5937)] = 160806, + [SMALL_STATE(5938)] = 160863, + [SMALL_STATE(5939)] = 160926, + [SMALL_STATE(5940)] = 160989, + [SMALL_STATE(5941)] = 161082, + [SMALL_STATE(5942)] = 161141, + [SMALL_STATE(5943)] = 161200, + [SMALL_STATE(5944)] = 161267, + [SMALL_STATE(5945)] = 161324, + [SMALL_STATE(5946)] = 161387, + [SMALL_STATE(5947)] = 161444, + [SMALL_STATE(5948)] = 161501, + [SMALL_STATE(5949)] = 161564, + [SMALL_STATE(5950)] = 161633, + [SMALL_STATE(5951)] = 161702, + [SMALL_STATE(5952)] = 161771, + [SMALL_STATE(5953)] = 161840, + [SMALL_STATE(5954)] = 161897, + [SMALL_STATE(5955)] = 161960, + [SMALL_STATE(5956)] = 162017, + [SMALL_STATE(5957)] = 162074, + [SMALL_STATE(5958)] = 162131, + [SMALL_STATE(5959)] = 162188, + [SMALL_STATE(5960)] = 162245, + [SMALL_STATE(5961)] = 162314, + [SMALL_STATE(5962)] = 162371, + [SMALL_STATE(5963)] = 162448, + [SMALL_STATE(5964)] = 162517, + [SMALL_STATE(5965)] = 162574, + [SMALL_STATE(5966)] = 162631, + [SMALL_STATE(5967)] = 162688, + [SMALL_STATE(5968)] = 162753, + [SMALL_STATE(5969)] = 162816, + [SMALL_STATE(5970)] = 162873, + [SMALL_STATE(5971)] = 162940, + [SMALL_STATE(5972)] = 162997, + [SMALL_STATE(5973)] = 163072, + [SMALL_STATE(5974)] = 163131, + [SMALL_STATE(5975)] = 163198, + [SMALL_STATE(5976)] = 163261, + [SMALL_STATE(5977)] = 163318, + [SMALL_STATE(5978)] = 163375, + [SMALL_STATE(5979)] = 163432, + [SMALL_STATE(5980)] = 163495, + [SMALL_STATE(5981)] = 163552, + [SMALL_STATE(5982)] = 163609, + [SMALL_STATE(5983)] = 163666, + [SMALL_STATE(5984)] = 163735, + [SMALL_STATE(5985)] = 163792, + [SMALL_STATE(5986)] = 163849, + [SMALL_STATE(5987)] = 163906, + [SMALL_STATE(5988)] = 163963, + [SMALL_STATE(5989)] = 164020, + [SMALL_STATE(5990)] = 164083, + [SMALL_STATE(5991)] = 164140, + [SMALL_STATE(5992)] = 164197, + [SMALL_STATE(5993)] = 164254, + [SMALL_STATE(5994)] = 164317, + [SMALL_STATE(5995)] = 164386, + [SMALL_STATE(5996)] = 164451, + [SMALL_STATE(5997)] = 164514, + [SMALL_STATE(5998)] = 164571, + [SMALL_STATE(5999)] = 164628, + [SMALL_STATE(6000)] = 164691, + [SMALL_STATE(6001)] = 164754, + [SMALL_STATE(6002)] = 164823, + [SMALL_STATE(6003)] = 164898, + [SMALL_STATE(6004)] = 164961, + [SMALL_STATE(6005)] = 165018, + [SMALL_STATE(6006)] = 165081, + [SMALL_STATE(6007)] = 165150, + [SMALL_STATE(6008)] = 165207, + [SMALL_STATE(6009)] = 165264, + [SMALL_STATE(6010)] = 165321, + [SMALL_STATE(6011)] = 165384, + [SMALL_STATE(6012)] = 165459, + [SMALL_STATE(6013)] = 165528, + [SMALL_STATE(6014)] = 165597, + [SMALL_STATE(6015)] = 165654, + [SMALL_STATE(6016)] = 165723, + [SMALL_STATE(6017)] = 165780, + [SMALL_STATE(6018)] = 165873, + [SMALL_STATE(6019)] = 165930, + [SMALL_STATE(6020)] = 165991, + [SMALL_STATE(6021)] = 166060, + [SMALL_STATE(6022)] = 166129, + [SMALL_STATE(6023)] = 166198, + [SMALL_STATE(6024)] = 166255, + [SMALL_STATE(6025)] = 166312, + [SMALL_STATE(6026)] = 166369, + [SMALL_STATE(6027)] = 166425, + [SMALL_STATE(6028)] = 166481, + [SMALL_STATE(6029)] = 166537, + [SMALL_STATE(6030)] = 166593, + [SMALL_STATE(6031)] = 166649, + [SMALL_STATE(6032)] = 166705, + [SMALL_STATE(6033)] = 166761, + [SMALL_STATE(6034)] = 166817, + [SMALL_STATE(6035)] = 166873, + [SMALL_STATE(6036)] = 166929, + [SMALL_STATE(6037)] = 166985, + [SMALL_STATE(6038)] = 167041, + [SMALL_STATE(6039)] = 167145, + [SMALL_STATE(6040)] = 167201, + [SMALL_STATE(6041)] = 167257, + [SMALL_STATE(6042)] = 167313, + [SMALL_STATE(6043)] = 167369, + [SMALL_STATE(6044)] = 167425, + [SMALL_STATE(6045)] = 167481, + [SMALL_STATE(6046)] = 167537, + [SMALL_STATE(6047)] = 167593, + [SMALL_STATE(6048)] = 167649, + [SMALL_STATE(6049)] = 167705, + [SMALL_STATE(6050)] = 167761, + [SMALL_STATE(6051)] = 167817, + [SMALL_STATE(6052)] = 167873, + [SMALL_STATE(6053)] = 167929, + [SMALL_STATE(6054)] = 167997, + [SMALL_STATE(6055)] = 168053, + [SMALL_STATE(6056)] = 168109, + [SMALL_STATE(6057)] = 168165, + [SMALL_STATE(6058)] = 168221, + [SMALL_STATE(6059)] = 168277, + [SMALL_STATE(6060)] = 168333, + [SMALL_STATE(6061)] = 168389, + [SMALL_STATE(6062)] = 168445, + [SMALL_STATE(6063)] = 168501, + [SMALL_STATE(6064)] = 168557, + [SMALL_STATE(6065)] = 168613, + [SMALL_STATE(6066)] = 168669, + [SMALL_STATE(6067)] = 168733, + [SMALL_STATE(6068)] = 168789, + [SMALL_STATE(6069)] = 168883, + [SMALL_STATE(6070)] = 168977, + [SMALL_STATE(6071)] = 169033, + [SMALL_STATE(6072)] = 169089, + [SMALL_STATE(6073)] = 169145, + [SMALL_STATE(6074)] = 169201, + [SMALL_STATE(6075)] = 169257, + [SMALL_STATE(6076)] = 169313, + [SMALL_STATE(6077)] = 169369, + [SMALL_STATE(6078)] = 169425, + [SMALL_STATE(6079)] = 169481, + [SMALL_STATE(6080)] = 169587, + [SMALL_STATE(6081)] = 169643, + [SMALL_STATE(6082)] = 169699, + [SMALL_STATE(6083)] = 169755, + [SMALL_STATE(6084)] = 169811, + [SMALL_STATE(6085)] = 169867, + [SMALL_STATE(6086)] = 169923, + [SMALL_STATE(6087)] = 169985, + [SMALL_STATE(6088)] = 170041, + [SMALL_STATE(6089)] = 170097, + [SMALL_STATE(6090)] = 170153, + [SMALL_STATE(6091)] = 170209, + [SMALL_STATE(6092)] = 170265, + [SMALL_STATE(6093)] = 170321, + [SMALL_STATE(6094)] = 170377, + [SMALL_STATE(6095)] = 170433, + [SMALL_STATE(6096)] = 170489, + [SMALL_STATE(6097)] = 170545, + [SMALL_STATE(6098)] = 170601, + [SMALL_STATE(6099)] = 170657, + [SMALL_STATE(6100)] = 170713, + [SMALL_STATE(6101)] = 170769, + [SMALL_STATE(6102)] = 170825, + [SMALL_STATE(6103)] = 170881, + [SMALL_STATE(6104)] = 170937, + [SMALL_STATE(6105)] = 170993, + [SMALL_STATE(6106)] = 171049, + [SMALL_STATE(6107)] = 171105, + [SMALL_STATE(6108)] = 171161, + [SMALL_STATE(6109)] = 171217, + [SMALL_STATE(6110)] = 171273, + [SMALL_STATE(6111)] = 171329, + [SMALL_STATE(6112)] = 171393, + [SMALL_STATE(6113)] = 171449, + [SMALL_STATE(6114)] = 171505, + [SMALL_STATE(6115)] = 171569, + [SMALL_STATE(6116)] = 171625, + [SMALL_STATE(6117)] = 171689, + [SMALL_STATE(6118)] = 171745, + [SMALL_STATE(6119)] = 171809, + [SMALL_STATE(6120)] = 171873, + [SMALL_STATE(6121)] = 171941, + [SMALL_STATE(6122)] = 172005, + [SMALL_STATE(6123)] = 172061, + [SMALL_STATE(6124)] = 172125, + [SMALL_STATE(6125)] = 172189, + [SMALL_STATE(6126)] = 172245, + [SMALL_STATE(6127)] = 172309, + [SMALL_STATE(6128)] = 172365, + [SMALL_STATE(6129)] = 172429, + [SMALL_STATE(6130)] = 172485, + [SMALL_STATE(6131)] = 172540, + [SMALL_STATE(6132)] = 172595, + [SMALL_STATE(6133)] = 172686, + [SMALL_STATE(6134)] = 172755, + [SMALL_STATE(6135)] = 172810, + [SMALL_STATE(6136)] = 172883, + [SMALL_STATE(6137)] = 172952, + [SMALL_STATE(6138)] = 173007, + [SMALL_STATE(6139)] = 173062, + [SMALL_STATE(6140)] = 173117, + [SMALL_STATE(6141)] = 173208, + [SMALL_STATE(6142)] = 173281, + [SMALL_STATE(6143)] = 173336, + [SMALL_STATE(6144)] = 173391, + [SMALL_STATE(6145)] = 173460, + [SMALL_STATE(6146)] = 173515, + [SMALL_STATE(6147)] = 173570, + [SMALL_STATE(6148)] = 173632, + [SMALL_STATE(6149)] = 173694, + [SMALL_STATE(6150)] = 173756, + [SMALL_STATE(6151)] = 173818, + [SMALL_STATE(6152)] = 173880, + [SMALL_STATE(6153)] = 173942, + [SMALL_STATE(6154)] = 174032, + [SMALL_STATE(6155)] = 174096, + [SMALL_STATE(6156)] = 174162, + [SMALL_STATE(6157)] = 174224, + [SMALL_STATE(6158)] = 174288, + [SMALL_STATE(6159)] = 174350, + [SMALL_STATE(6160)] = 174442, + [SMALL_STATE(6161)] = 174508, + [SMALL_STATE(6162)] = 174570, + [SMALL_STATE(6163)] = 174636, + [SMALL_STATE(6164)] = 174702, + [SMALL_STATE(6165)] = 174768, + [SMALL_STATE(6166)] = 174832, + [SMALL_STATE(6167)] = 174894, + [SMALL_STATE(6168)] = 174960, + [SMALL_STATE(6169)] = 175032, + [SMALL_STATE(6170)] = 175094, + [SMALL_STATE(6171)] = 175156, + [SMALL_STATE(6172)] = 175218, + [SMALL_STATE(6173)] = 175310, + [SMALL_STATE(6174)] = 175402, + [SMALL_STATE(6175)] = 175504, + [SMALL_STATE(6176)] = 175566, + [SMALL_STATE(6177)] = 175658, + [SMALL_STATE(6178)] = 175720, + [SMALL_STATE(6179)] = 175774, + [SMALL_STATE(6180)] = 175836, + [SMALL_STATE(6181)] = 175926, + [SMALL_STATE(6182)] = 175988, + [SMALL_STATE(6183)] = 176050, + [SMALL_STATE(6184)] = 176152, + [SMALL_STATE(6185)] = 176214, + [SMALL_STATE(6186)] = 176316, + [SMALL_STATE(6187)] = 176378, + [SMALL_STATE(6188)] = 176432, + [SMALL_STATE(6189)] = 176490, + [SMALL_STATE(6190)] = 176556, + [SMALL_STATE(6191)] = 176612, + [SMALL_STATE(6192)] = 176678, + [SMALL_STATE(6193)] = 176744, + [SMALL_STATE(6194)] = 176808, + [SMALL_STATE(6195)] = 176897, + [SMALL_STATE(6196)] = 176986, + [SMALL_STATE(6197)] = 177075, + [SMALL_STATE(6198)] = 177128, + [SMALL_STATE(6199)] = 177217, + [SMALL_STATE(6200)] = 177306, + [SMALL_STATE(6201)] = 177359, + [SMALL_STATE(6202)] = 177412, + [SMALL_STATE(6203)] = 177501, + [SMALL_STATE(6204)] = 177554, + [SMALL_STATE(6205)] = 177607, + [SMALL_STATE(6206)] = 177688, + [SMALL_STATE(6207)] = 177777, + [SMALL_STATE(6208)] = 177866, + [SMALL_STATE(6209)] = 177919, + [SMALL_STATE(6210)] = 177972, + [SMALL_STATE(6211)] = 178035, + [SMALL_STATE(6212)] = 178124, + [SMALL_STATE(6213)] = 178177, + [SMALL_STATE(6214)] = 178266, + [SMALL_STATE(6215)] = 178355, + [SMALL_STATE(6216)] = 178436, + [SMALL_STATE(6217)] = 178489, + [SMALL_STATE(6218)] = 178544, + [SMALL_STATE(6219)] = 178597, + [SMALL_STATE(6220)] = 178686, + [SMALL_STATE(6221)] = 178739, + [SMALL_STATE(6222)] = 178792, + [SMALL_STATE(6223)] = 178881, + [SMALL_STATE(6224)] = 178970, + [SMALL_STATE(6225)] = 179059, + [SMALL_STATE(6226)] = 179148, + [SMALL_STATE(6227)] = 179201, + [SMALL_STATE(6228)] = 179254, + [SMALL_STATE(6229)] = 179307, + [SMALL_STATE(6230)] = 179360, + [SMALL_STATE(6231)] = 179449, + [SMALL_STATE(6232)] = 179538, + [SMALL_STATE(6233)] = 179627, + [SMALL_STATE(6234)] = 179680, + [SMALL_STATE(6235)] = 179761, + [SMALL_STATE(6236)] = 179842, + [SMALL_STATE(6237)] = 179895, + [SMALL_STATE(6238)] = 179948, + [SMALL_STATE(6239)] = 180037, + [SMALL_STATE(6240)] = 180126, + [SMALL_STATE(6241)] = 180179, + [SMALL_STATE(6242)] = 180268, + [SMALL_STATE(6243)] = 180357, + [SMALL_STATE(6244)] = 180446, + [SMALL_STATE(6245)] = 180499, + [SMALL_STATE(6246)] = 180552, + [SMALL_STATE(6247)] = 180605, + [SMALL_STATE(6248)] = 180694, + [SMALL_STATE(6249)] = 180747, + [SMALL_STATE(6250)] = 180802, + [SMALL_STATE(6251)] = 180855, + [SMALL_STATE(6252)] = 180908, + [SMALL_STATE(6253)] = 180989, + [SMALL_STATE(6254)] = 181078, + [SMALL_STATE(6255)] = 181131, + [SMALL_STATE(6256)] = 181220, + [SMALL_STATE(6257)] = 181289, + [SMALL_STATE(6258)] = 181378, + [SMALL_STATE(6259)] = 181467, + [SMALL_STATE(6260)] = 181556, + [SMALL_STATE(6261)] = 181637, + [SMALL_STATE(6262)] = 181690, + [SMALL_STATE(6263)] = 181743, + [SMALL_STATE(6264)] = 181823, + [SMALL_STATE(6265)] = 181903, + [SMALL_STATE(6266)] = 181991, + [SMALL_STATE(6267)] = 182079, + [SMALL_STATE(6268)] = 182143, + [SMALL_STATE(6269)] = 182207, + [SMALL_STATE(6270)] = 182271, + [SMALL_STATE(6271)] = 182335, + [SMALL_STATE(6272)] = 182399, + [SMALL_STATE(6273)] = 182463, + [SMALL_STATE(6274)] = 182527, + [SMALL_STATE(6275)] = 182591, + [SMALL_STATE(6276)] = 182661, + [SMALL_STATE(6277)] = 182725, + [SMALL_STATE(6278)] = 182789, + [SMALL_STATE(6279)] = 182853, + [SMALL_STATE(6280)] = 182917, + [SMALL_STATE(6281)] = 182987, + [SMALL_STATE(6282)] = 183051, + [SMALL_STATE(6283)] = 183107, + [SMALL_STATE(6284)] = 183187, + [SMALL_STATE(6285)] = 183247, + [SMALL_STATE(6286)] = 183327, + [SMALL_STATE(6287)] = 183391, + [SMALL_STATE(6288)] = 183471, + [SMALL_STATE(6289)] = 183531, + [SMALL_STATE(6290)] = 183611, + [SMALL_STATE(6291)] = 183675, + [SMALL_STATE(6292)] = 183739, + [SMALL_STATE(6293)] = 183798, + [SMALL_STATE(6294)] = 183883, + [SMALL_STATE(6295)] = 183942, + [SMALL_STATE(6296)] = 184001, + [SMALL_STATE(6297)] = 184086, + [SMALL_STATE(6298)] = 184145, + [SMALL_STATE(6299)] = 184216, + [SMALL_STATE(6300)] = 184275, + [SMALL_STATE(6301)] = 184334, + [SMALL_STATE(6302)] = 184437, + [SMALL_STATE(6303)] = 184496, + [SMALL_STATE(6304)] = 184561, + [SMALL_STATE(6305)] = 184646, + [SMALL_STATE(6306)] = 184705, + [SMALL_STATE(6307)] = 184764, + [SMALL_STATE(6308)] = 184859, + [SMALL_STATE(6309)] = 184918, + [SMALL_STATE(6310)] = 184987, + [SMALL_STATE(6311)] = 185072, + [SMALL_STATE(6312)] = 185131, + [SMALL_STATE(6313)] = 185228, + [SMALL_STATE(6314)] = 185327, + [SMALL_STATE(6315)] = 185386, + [SMALL_STATE(6316)] = 185445, + [SMALL_STATE(6317)] = 185504, + [SMALL_STATE(6318)] = 185565, + [SMALL_STATE(6319)] = 185624, + [SMALL_STATE(6320)] = 185683, + [SMALL_STATE(6321)] = 185742, + [SMALL_STATE(6322)] = 185801, + [SMALL_STATE(6323)] = 185860, + [SMALL_STATE(6324)] = 185919, + [SMALL_STATE(6325)] = 185978, + [SMALL_STATE(6326)] = 186045, + [SMALL_STATE(6327)] = 186104, + [SMALL_STATE(6328)] = 186203, + [SMALL_STATE(6329)] = 186302, + [SMALL_STATE(6330)] = 186361, + [SMALL_STATE(6331)] = 186464, + [SMALL_STATE(6332)] = 186523, + [SMALL_STATE(6333)] = 186582, + [SMALL_STATE(6334)] = 186673, + [SMALL_STATE(6335)] = 186732, + [SMALL_STATE(6336)] = 186819, + [SMALL_STATE(6337)] = 186878, + [SMALL_STATE(6338)] = 186977, + [SMALL_STATE(6339)] = 187080, + [SMALL_STATE(6340)] = 187139, + [SMALL_STATE(6341)] = 187204, + [SMALL_STATE(6342)] = 187263, + [SMALL_STATE(6343)] = 187342, + [SMALL_STATE(6344)] = 187415, + [SMALL_STATE(6345)] = 187474, + [SMALL_STATE(6346)] = 187525, + [SMALL_STATE(6347)] = 187584, + [SMALL_STATE(6348)] = 187659, + [SMALL_STATE(6349)] = 187748, + [SMALL_STATE(6350)] = 187807, + [SMALL_STATE(6351)] = 187866, + [SMALL_STATE(6352)] = 187953, + [SMALL_STATE(6353)] = 188038, + [SMALL_STATE(6354)] = 188097, + [SMALL_STATE(6355)] = 188196, + [SMALL_STATE(6356)] = 188281, + [SMALL_STATE(6357)] = 188334, + [SMALL_STATE(6358)] = 188393, + [SMALL_STATE(6359)] = 188452, + [SMALL_STATE(6360)] = 188551, + [SMALL_STATE(6361)] = 188612, + [SMALL_STATE(6362)] = 188671, + [SMALL_STATE(6363)] = 188730, + [SMALL_STATE(6364)] = 188789, + [SMALL_STATE(6365)] = 188874, + [SMALL_STATE(6366)] = 188957, + [SMALL_STATE(6367)] = 189016, + [SMALL_STATE(6368)] = 189101, + [SMALL_STATE(6369)] = 189160, + [SMALL_STATE(6370)] = 189219, + [SMALL_STATE(6371)] = 189322, + [SMALL_STATE(6372)] = 189387, + [SMALL_STATE(6373)] = 189448, + [SMALL_STATE(6374)] = 189507, + [SMALL_STATE(6375)] = 189572, + [SMALL_STATE(6376)] = 189631, + [SMALL_STATE(6377)] = 189716, + [SMALL_STATE(6378)] = 189772, + [SMALL_STATE(6379)] = 189878, + [SMALL_STATE(6380)] = 189940, + [SMALL_STATE(6381)] = 190032, + [SMALL_STATE(6382)] = 190094, + [SMALL_STATE(6383)] = 190200, + [SMALL_STATE(6384)] = 190292, + [SMALL_STATE(6385)] = 190342, + [SMALL_STATE(6386)] = 190434, + [SMALL_STATE(6387)] = 190486, + [SMALL_STATE(6388)] = 190536, + [SMALL_STATE(6389)] = 190586, + [SMALL_STATE(6390)] = 190660, + [SMALL_STATE(6391)] = 190734, + [SMALL_STATE(6392)] = 190826, + [SMALL_STATE(6393)] = 190900, + [SMALL_STATE(6394)] = 190954, + [SMALL_STATE(6395)] = 191060, + [SMALL_STATE(6396)] = 191114, + [SMALL_STATE(6397)] = 191206, + [SMALL_STATE(6398)] = 191260, + [SMALL_STATE(6399)] = 191352, + [SMALL_STATE(6400)] = 191426, + [SMALL_STATE(6401)] = 191480, + [SMALL_STATE(6402)] = 191546, + [SMALL_STATE(6403)] = 191598, + [SMALL_STATE(6404)] = 191652, + [SMALL_STATE(6405)] = 191702, + [SMALL_STATE(6406)] = 191752, + [SMALL_STATE(6407)] = 191844, + [SMALL_STATE(6408)] = 191936, + [SMALL_STATE(6409)] = 191990, + [SMALL_STATE(6410)] = 192076, + [SMALL_STATE(6411)] = 192162, + [SMALL_STATE(6412)] = 192254, + [SMALL_STATE(6413)] = 192308, + [SMALL_STATE(6414)] = 192400, + [SMALL_STATE(6415)] = 192492, + [SMALL_STATE(6416)] = 192584, + [SMALL_STATE(6417)] = 192676, + [SMALL_STATE(6418)] = 192750, + [SMALL_STATE(6419)] = 192842, + [SMALL_STATE(6420)] = 192892, + [SMALL_STATE(6421)] = 192950, + [SMALL_STATE(6422)] = 193042, + [SMALL_STATE(6423)] = 193136, + [SMALL_STATE(6424)] = 193228, + [SMALL_STATE(6425)] = 193282, + [SMALL_STATE(6426)] = 193332, + [SMALL_STATE(6427)] = 193398, + [SMALL_STATE(6428)] = 193456, + [SMALL_STATE(6429)] = 193547, + [SMALL_STATE(6430)] = 193642, + [SMALL_STATE(6431)] = 193691, + [SMALL_STATE(6432)] = 193758, + [SMALL_STATE(6433)] = 193847, + [SMALL_STATE(6434)] = 193934, + [SMALL_STATE(6435)] = 194019, + [SMALL_STATE(6436)] = 194114, + [SMALL_STATE(6437)] = 194193, + [SMALL_STATE(6438)] = 194270, + [SMALL_STATE(6439)] = 194327, + [SMALL_STATE(6440)] = 194400, + [SMALL_STATE(6441)] = 194469, + [SMALL_STATE(6442)] = 194526, + [SMALL_STATE(6443)] = 194575, + [SMALL_STATE(6444)] = 194632, + [SMALL_STATE(6445)] = 194681, + [SMALL_STATE(6446)] = 194730, + [SMALL_STATE(6447)] = 194787, + [SMALL_STATE(6448)] = 194858, + [SMALL_STATE(6449)] = 194907, + [SMALL_STATE(6450)] = 194956, + [SMALL_STATE(6451)] = 195041, + [SMALL_STATE(6452)] = 195116, + [SMALL_STATE(6453)] = 195191, + [SMALL_STATE(6454)] = 195240, + [SMALL_STATE(6455)] = 195289, + [SMALL_STATE(6456)] = 195374, + [SMALL_STATE(6457)] = 195427, + [SMALL_STATE(6458)] = 195480, + [SMALL_STATE(6459)] = 195555, + [SMALL_STATE(6460)] = 195630, + [SMALL_STATE(6461)] = 195679, + [SMALL_STATE(6462)] = 195728, + [SMALL_STATE(6463)] = 195777, + [SMALL_STATE(6464)] = 195830, + [SMALL_STATE(6465)] = 195905, + [SMALL_STATE(6466)] = 195954, + [SMALL_STATE(6467)] = 196003, + [SMALL_STATE(6468)] = 196058, + [SMALL_STATE(6469)] = 196107, + [SMALL_STATE(6470)] = 196182, + [SMALL_STATE(6471)] = 196239, + [SMALL_STATE(6472)] = 196296, + [SMALL_STATE(6473)] = 196353, + [SMALL_STATE(6474)] = 196410, + [SMALL_STATE(6475)] = 196475, + [SMALL_STATE(6476)] = 196566, + [SMALL_STATE(6477)] = 196615, + [SMALL_STATE(6478)] = 196664, + [SMALL_STATE(6479)] = 196753, + [SMALL_STATE(6480)] = 196844, + [SMALL_STATE(6481)] = 196939, + [SMALL_STATE(6482)] = 197028, + [SMALL_STATE(6483)] = 197119, + [SMALL_STATE(6484)] = 197210, + [SMALL_STATE(6485)] = 197299, + [SMALL_STATE(6486)] = 197388, + [SMALL_STATE(6487)] = 197477, + [SMALL_STATE(6488)] = 197568, + [SMALL_STATE(6489)] = 197657, + [SMALL_STATE(6490)] = 197746, + [SMALL_STATE(6491)] = 197803, + [SMALL_STATE(6492)] = 197856, + [SMALL_STATE(6493)] = 197905, + [SMALL_STATE(6494)] = 197962, + [SMALL_STATE(6495)] = 198019, + [SMALL_STATE(6496)] = 198076, + [SMALL_STATE(6497)] = 198133, + [SMALL_STATE(6498)] = 198190, + [SMALL_STATE(6499)] = 198247, + [SMALL_STATE(6500)] = 198304, + [SMALL_STATE(6501)] = 198393, + [SMALL_STATE(6502)] = 198446, + [SMALL_STATE(6503)] = 198529, + [SMALL_STATE(6504)] = 198621, + [SMALL_STATE(6505)] = 198689, + [SMALL_STATE(6506)] = 198747, + [SMALL_STATE(6507)] = 198823, + [SMALL_STATE(6508)] = 198899, + [SMALL_STATE(6509)] = 198975, + [SMALL_STATE(6510)] = 199033, + [SMALL_STATE(6511)] = 199103, + [SMALL_STATE(6512)] = 199161, + [SMALL_STATE(6513)] = 199251, + [SMALL_STATE(6514)] = 199309, + [SMALL_STATE(6515)] = 199367, + [SMALL_STATE(6516)] = 199425, + [SMALL_STATE(6517)] = 199517, + [SMALL_STATE(6518)] = 199609, + [SMALL_STATE(6519)] = 199701, + [SMALL_STATE(6520)] = 199797, + [SMALL_STATE(6521)] = 199889, + [SMALL_STATE(6522)] = 199985, + [SMALL_STATE(6523)] = 200033, + [SMALL_STATE(6524)] = 200081, + [SMALL_STATE(6525)] = 200173, + [SMALL_STATE(6526)] = 200269, + [SMALL_STATE(6527)] = 200327, + [SMALL_STATE(6528)] = 200385, + [SMALL_STATE(6529)] = 200461, + [SMALL_STATE(6530)] = 200561, + [SMALL_STATE(6531)] = 200649, + [SMALL_STATE(6532)] = 200745, + [SMALL_STATE(6533)] = 200847, + [SMALL_STATE(6534)] = 200931, + [SMALL_STATE(6535)] = 200989, + [SMALL_STATE(6536)] = 201047, + [SMALL_STATE(6537)] = 201095, + [SMALL_STATE(6538)] = 201161, + [SMALL_STATE(6539)] = 201243, + [SMALL_STATE(6540)] = 201291, + [SMALL_STATE(6541)] = 201349, + [SMALL_STATE(6542)] = 201427, + [SMALL_STATE(6543)] = 201485, + [SMALL_STATE(6544)] = 201561, + [SMALL_STATE(6545)] = 201619, + [SMALL_STATE(6546)] = 201715, + [SMALL_STATE(6547)] = 201771, + [SMALL_STATE(6548)] = 201827, + [SMALL_STATE(6549)] = 201883, + [SMALL_STATE(6550)] = 201959, + [SMALL_STATE(6551)] = 202015, + [SMALL_STATE(6552)] = 202071, + [SMALL_STATE(6553)] = 202127, + [SMALL_STATE(6554)] = 202183, + [SMALL_STATE(6555)] = 202239, + [SMALL_STATE(6556)] = 202311, + [SMALL_STATE(6557)] = 202387, + [SMALL_STATE(6558)] = 202434, + [SMALL_STATE(6559)] = 202531, + [SMALL_STATE(6560)] = 202628, + [SMALL_STATE(6561)] = 202681, + [SMALL_STATE(6562)] = 202778, + [SMALL_STATE(6563)] = 202825, + [SMALL_STATE(6564)] = 202922, + [SMALL_STATE(6565)] = 203019, + [SMALL_STATE(6566)] = 203116, + [SMALL_STATE(6567)] = 203211, + [SMALL_STATE(6568)] = 203300, + [SMALL_STATE(6569)] = 203353, + [SMALL_STATE(6570)] = 203406, + [SMALL_STATE(6571)] = 203453, + [SMALL_STATE(6572)] = 203500, + [SMALL_STATE(6573)] = 203597, + [SMALL_STATE(6574)] = 203650, + [SMALL_STATE(6575)] = 203697, + [SMALL_STATE(6576)] = 203750, + [SMALL_STATE(6577)] = 203797, + [SMALL_STATE(6578)] = 203850, + [SMALL_STATE(6579)] = 203947, + [SMALL_STATE(6580)] = 204002, + [SMALL_STATE(6581)] = 204051, + [SMALL_STATE(6582)] = 204104, + [SMALL_STATE(6583)] = 204157, + [SMALL_STATE(6584)] = 204230, + [SMALL_STATE(6585)] = 204277, + [SMALL_STATE(6586)] = 204374, + [SMALL_STATE(6587)] = 204447, + [SMALL_STATE(6588)] = 204520, + [SMALL_STATE(6589)] = 204567, + [SMALL_STATE(6590)] = 204664, + [SMALL_STATE(6591)] = 204761, + [SMALL_STATE(6592)] = 204808, + [SMALL_STATE(6593)] = 204905, + [SMALL_STATE(6594)] = 205002, + [SMALL_STATE(6595)] = 205075, + [SMALL_STATE(6596)] = 205148, + [SMALL_STATE(6597)] = 205201, + [SMALL_STATE(6598)] = 205274, + [SMALL_STATE(6599)] = 205327, + [SMALL_STATE(6600)] = 205424, + [SMALL_STATE(6601)] = 205473, + [SMALL_STATE(6602)] = 205520, + [SMALL_STATE(6603)] = 205567, + [SMALL_STATE(6604)] = 205662, + [SMALL_STATE(6605)] = 205759, + [SMALL_STATE(6606)] = 205856, + [SMALL_STATE(6607)] = 205953, + [SMALL_STATE(6608)] = 206000, + [SMALL_STATE(6609)] = 206047, + [SMALL_STATE(6610)] = 206144, + [SMALL_STATE(6611)] = 206197, + [SMALL_STATE(6612)] = 206244, + [SMALL_STATE(6613)] = 206297, + [SMALL_STATE(6614)] = 206344, + [SMALL_STATE(6615)] = 206393, + [SMALL_STATE(6616)] = 206440, + [SMALL_STATE(6617)] = 206487, + [SMALL_STATE(6618)] = 206534, + [SMALL_STATE(6619)] = 206631, + [SMALL_STATE(6620)] = 206728, + [SMALL_STATE(6621)] = 206825, + [SMALL_STATE(6622)] = 206922, + [SMALL_STATE(6623)] = 206969, + [SMALL_STATE(6624)] = 207016, + [SMALL_STATE(6625)] = 207063, + [SMALL_STATE(6626)] = 207110, + [SMALL_STATE(6627)] = 207157, + [SMALL_STATE(6628)] = 207254, + [SMALL_STATE(6629)] = 207351, + [SMALL_STATE(6630)] = 207448, + [SMALL_STATE(6631)] = 207495, + [SMALL_STATE(6632)] = 207542, + [SMALL_STATE(6633)] = 207589, + [SMALL_STATE(6634)] = 207636, + [SMALL_STATE(6635)] = 207733, + [SMALL_STATE(6636)] = 207780, + [SMALL_STATE(6637)] = 207829, + [SMALL_STATE(6638)] = 207876, + [SMALL_STATE(6639)] = 207923, + [SMALL_STATE(6640)] = 207970, + [SMALL_STATE(6641)] = 208017, + [SMALL_STATE(6642)] = 208064, + [SMALL_STATE(6643)] = 208127, + [SMALL_STATE(6644)] = 208174, + [SMALL_STATE(6645)] = 208271, + [SMALL_STATE(6646)] = 208318, + [SMALL_STATE(6647)] = 208415, + [SMALL_STATE(6648)] = 208466, + [SMALL_STATE(6649)] = 208563, + [SMALL_STATE(6650)] = 208610, + [SMALL_STATE(6651)] = 208661, + [SMALL_STATE(6652)] = 208708, + [SMALL_STATE(6653)] = 208771, + [SMALL_STATE(6654)] = 208868, + [SMALL_STATE(6655)] = 208965, + [SMALL_STATE(6656)] = 209012, + [SMALL_STATE(6657)] = 209059, + [SMALL_STATE(6658)] = 209106, + [SMALL_STATE(6659)] = 209153, + [SMALL_STATE(6660)] = 209250, + [SMALL_STATE(6661)] = 209347, + [SMALL_STATE(6662)] = 209394, + [SMALL_STATE(6663)] = 209441, + [SMALL_STATE(6664)] = 209488, + [SMALL_STATE(6665)] = 209577, + [SMALL_STATE(6666)] = 209624, + [SMALL_STATE(6667)] = 209721, + [SMALL_STATE(6668)] = 209768, + [SMALL_STATE(6669)] = 209865, + [SMALL_STATE(6670)] = 209962, + [SMALL_STATE(6671)] = 210059, + [SMALL_STATE(6672)] = 210156, + [SMALL_STATE(6673)] = 210253, + [SMALL_STATE(6674)] = 210350, + [SMALL_STATE(6675)] = 210447, + [SMALL_STATE(6676)] = 210494, + [SMALL_STATE(6677)] = 210541, + [SMALL_STATE(6678)] = 210588, + [SMALL_STATE(6679)] = 210685, + [SMALL_STATE(6680)] = 210782, + [SMALL_STATE(6681)] = 210879, + [SMALL_STATE(6682)] = 210926, + [SMALL_STATE(6683)] = 210973, + [SMALL_STATE(6684)] = 211070, + [SMALL_STATE(6685)] = 211123, + [SMALL_STATE(6686)] = 211170, + [SMALL_STATE(6687)] = 211267, + [SMALL_STATE(6688)] = 211364, + [SMALL_STATE(6689)] = 211461, + [SMALL_STATE(6690)] = 211558, + [SMALL_STATE(6691)] = 211607, + [SMALL_STATE(6692)] = 211656, + [SMALL_STATE(6693)] = 211703, + [SMALL_STATE(6694)] = 211750, + [SMALL_STATE(6695)] = 211847, + [SMALL_STATE(6696)] = 211894, + [SMALL_STATE(6697)] = 211991, + [SMALL_STATE(6698)] = 212038, + [SMALL_STATE(6699)] = 212085, + [SMALL_STATE(6700)] = 212136, + [SMALL_STATE(6701)] = 212183, + [SMALL_STATE(6702)] = 212230, + [SMALL_STATE(6703)] = 212327, + [SMALL_STATE(6704)] = 212424, + [SMALL_STATE(6705)] = 212477, + [SMALL_STATE(6706)] = 212540, + [SMALL_STATE(6707)] = 212587, + [SMALL_STATE(6708)] = 212634, + [SMALL_STATE(6709)] = 212681, + [SMALL_STATE(6710)] = 212728, + [SMALL_STATE(6711)] = 212775, + [SMALL_STATE(6712)] = 212822, + [SMALL_STATE(6713)] = 212869, + [SMALL_STATE(6714)] = 212922, + [SMALL_STATE(6715)] = 212977, + [SMALL_STATE(6716)] = 213024, + [SMALL_STATE(6717)] = 213071, + [SMALL_STATE(6718)] = 213118, + [SMALL_STATE(6719)] = 213165, + [SMALL_STATE(6720)] = 213212, + [SMALL_STATE(6721)] = 213259, + [SMALL_STATE(6722)] = 213306, + [SMALL_STATE(6723)] = 213353, + [SMALL_STATE(6724)] = 213450, + [SMALL_STATE(6725)] = 213530, + [SMALL_STATE(6726)] = 213604, + [SMALL_STATE(6727)] = 213676, + [SMALL_STATE(6728)] = 213748, + [SMALL_STATE(6729)] = 213820, + [SMALL_STATE(6730)] = 213886, + [SMALL_STATE(6731)] = 213940, + [SMALL_STATE(6732)] = 214034, + [SMALL_STATE(6733)] = 214122, + [SMALL_STATE(6734)] = 214216, + [SMALL_STATE(6735)] = 214286, + [SMALL_STATE(6736)] = 214380, + [SMALL_STATE(6737)] = 214472, + [SMALL_STATE(6738)] = 214526, + [SMALL_STATE(6739)] = 214586, + [SMALL_STATE(6740)] = 214646, + [SMALL_STATE(6741)] = 214740, + [SMALL_STATE(6742)] = 214812, + [SMALL_STATE(6743)] = 214904, + [SMALL_STATE(6744)] = 214958, + [SMALL_STATE(6745)] = 215052, + [SMALL_STATE(6746)] = 215106, + [SMALL_STATE(6747)] = 215180, + [SMALL_STATE(6748)] = 215274, + [SMALL_STATE(6749)] = 215328, + [SMALL_STATE(6750)] = 215382, + [SMALL_STATE(6751)] = 215436, + [SMALL_STATE(6752)] = 215490, + [SMALL_STATE(6753)] = 215550, + [SMALL_STATE(6754)] = 215634, + [SMALL_STATE(6755)] = 215682, + [SMALL_STATE(6756)] = 215742, + [SMALL_STATE(6757)] = 215834, + [SMALL_STATE(6758)] = 215928, + [SMALL_STATE(6759)] = 216016, + [SMALL_STATE(6760)] = 216108, + [SMALL_STATE(6761)] = 216202, + [SMALL_STATE(6762)] = 216296, + [SMALL_STATE(6763)] = 216370, + [SMALL_STATE(6764)] = 216426, + [SMALL_STATE(6765)] = 216500, + [SMALL_STATE(6766)] = 216594, + [SMALL_STATE(6767)] = 216688, + [SMALL_STATE(6768)] = 216782, + [SMALL_STATE(6769)] = 216830, + [SMALL_STATE(6770)] = 216924, + [SMALL_STATE(6771)] = 217012, + [SMALL_STATE(6772)] = 217070, + [SMALL_STATE(6773)] = 217124, + [SMALL_STATE(6774)] = 217218, + [SMALL_STATE(6775)] = 217304, + [SMALL_STATE(6776)] = 217392, + [SMALL_STATE(6777)] = 217484, + [SMALL_STATE(6778)] = 217576, + [SMALL_STATE(6779)] = 217630, + [SMALL_STATE(6780)] = 217722, + [SMALL_STATE(6781)] = 217814, + [SMALL_STATE(6782)] = 217902, + [SMALL_STATE(6783)] = 217962, + [SMALL_STATE(6784)] = 218054, + [SMALL_STATE(6785)] = 218148, + [SMALL_STATE(6786)] = 218212, + [SMALL_STATE(6787)] = 218298, + [SMALL_STATE(6788)] = 218382, + [SMALL_STATE(6789)] = 218464, + [SMALL_STATE(6790)] = 218544, + [SMALL_STATE(6791)] = 218620, + [SMALL_STATE(6792)] = 218694, + [SMALL_STATE(6793)] = 218764, + [SMALL_STATE(6794)] = 218830, + [SMALL_STATE(6795)] = 218924, + [SMALL_STATE(6796)] = 218992, + [SMALL_STATE(6797)] = 219080, + [SMALL_STATE(6798)] = 219172, + [SMALL_STATE(6799)] = 219260, + [SMALL_STATE(6800)] = 219352, + [SMALL_STATE(6801)] = 219402, + [SMALL_STATE(6802)] = 219462, + [SMALL_STATE(6803)] = 219550, + [SMALL_STATE(6804)] = 219608, + [SMALL_STATE(6805)] = 219702, + [SMALL_STATE(6806)] = 219794, + [SMALL_STATE(6807)] = 219888, + [SMALL_STATE(6808)] = 219982, + [SMALL_STATE(6809)] = 220070, + [SMALL_STATE(6810)] = 220162, + [SMALL_STATE(6811)] = 220214, + [SMALL_STATE(6812)] = 220308, + [SMALL_STATE(6813)] = 220362, + [SMALL_STATE(6814)] = 220454, + [SMALL_STATE(6815)] = 220542, + [SMALL_STATE(6816)] = 220596, + [SMALL_STATE(6817)] = 220690, + [SMALL_STATE(6818)] = 220784, + [SMALL_STATE(6819)] = 220876, + [SMALL_STATE(6820)] = 220968, + [SMALL_STATE(6821)] = 221060, + [SMALL_STATE(6822)] = 221154, + [SMALL_STATE(6823)] = 221228, + [SMALL_STATE(6824)] = 221320, + [SMALL_STATE(6825)] = 221414, + [SMALL_STATE(6826)] = 221488, + [SMALL_STATE(6827)] = 221548, + [SMALL_STATE(6828)] = 221594, + [SMALL_STATE(6829)] = 221686, + [SMALL_STATE(6830)] = 221736, + [SMALL_STATE(6831)] = 221818, + [SMALL_STATE(6832)] = 221910, + [SMALL_STATE(6833)] = 222004, + [SMALL_STATE(6834)] = 222098, + [SMALL_STATE(6835)] = 222172, + [SMALL_STATE(6836)] = 222246, + [SMALL_STATE(6837)] = 222310, + [SMALL_STATE(6838)] = 222402, + [SMALL_STATE(6839)] = 222496, + [SMALL_STATE(6840)] = 222584, + [SMALL_STATE(6841)] = 222636, + [SMALL_STATE(6842)] = 222730, + [SMALL_STATE(6843)] = 222804, + [SMALL_STATE(6844)] = 222878, + [SMALL_STATE(6845)] = 222966, + [SMALL_STATE(6846)] = 223054, + [SMALL_STATE(6847)] = 223142, + [SMALL_STATE(6848)] = 223230, + [SMALL_STATE(6849)] = 223318, + [SMALL_STATE(6850)] = 223410, + [SMALL_STATE(6851)] = 223474, + [SMALL_STATE(6852)] = 223534, + [SMALL_STATE(6853)] = 223620, + [SMALL_STATE(6854)] = 223704, + [SMALL_STATE(6855)] = 223786, + [SMALL_STATE(6856)] = 223866, + [SMALL_STATE(6857)] = 223942, + [SMALL_STATE(6858)] = 224016, + [SMALL_STATE(6859)] = 224086, + [SMALL_STATE(6860)] = 224152, + [SMALL_STATE(6861)] = 224246, + [SMALL_STATE(6862)] = 224314, + [SMALL_STATE(6863)] = 224408, + [SMALL_STATE(6864)] = 224468, + [SMALL_STATE(6865)] = 224526, + [SMALL_STATE(6866)] = 224614, + [SMALL_STATE(6867)] = 224706, + [SMALL_STATE(6868)] = 224794, + [SMALL_STATE(6869)] = 224886, + [SMALL_STATE(6870)] = 224980, + [SMALL_STATE(6871)] = 225074, + [SMALL_STATE(6872)] = 225168, + [SMALL_STATE(6873)] = 225222, + [SMALL_STATE(6874)] = 225316, + [SMALL_STATE(6875)] = 225408, + [SMALL_STATE(6876)] = 225500, + [SMALL_STATE(6877)] = 225592, + [SMALL_STATE(6878)] = 225672, + [SMALL_STATE(6879)] = 225726, + [SMALL_STATE(6880)] = 225818, + [SMALL_STATE(6881)] = 225912, + [SMALL_STATE(6882)] = 226006, + [SMALL_STATE(6883)] = 226064, + [SMALL_STATE(6884)] = 226136, + [SMALL_STATE(6885)] = 226224, + [SMALL_STATE(6886)] = 226284, + [SMALL_STATE(6887)] = 226344, + [SMALL_STATE(6888)] = 226432, + [SMALL_STATE(6889)] = 226490, + [SMALL_STATE(6890)] = 226582, + [SMALL_STATE(6891)] = 226670, + [SMALL_STATE(6892)] = 226764, + [SMALL_STATE(6893)] = 226858, + [SMALL_STATE(6894)] = 226946, + [SMALL_STATE(6895)] = 227018, + [SMALL_STATE(6896)] = 227112, + [SMALL_STATE(6897)] = 227206, + [SMALL_STATE(6898)] = 227298, + [SMALL_STATE(6899)] = 227392, + [SMALL_STATE(6900)] = 227468, + [SMALL_STATE(6901)] = 227562, + [SMALL_STATE(6902)] = 227620, + [SMALL_STATE(6903)] = 227674, + [SMALL_STATE(6904)] = 227768, + [SMALL_STATE(6905)] = 227860, + [SMALL_STATE(6906)] = 227934, + [SMALL_STATE(6907)] = 228008, + [SMALL_STATE(6908)] = 228082, + [SMALL_STATE(6909)] = 228146, + [SMALL_STATE(6910)] = 228238, + [SMALL_STATE(6911)] = 228298, + [SMALL_STATE(6912)] = 228384, + [SMALL_STATE(6913)] = 228468, + [SMALL_STATE(6914)] = 228550, + [SMALL_STATE(6915)] = 228604, + [SMALL_STATE(6916)] = 228680, + [SMALL_STATE(6917)] = 228754, + [SMALL_STATE(6918)] = 228848, + [SMALL_STATE(6919)] = 228936, + [SMALL_STATE(6920)] = 229030, + [SMALL_STATE(6921)] = 229118, + [SMALL_STATE(6922)] = 229212, + [SMALL_STATE(6923)] = 229282, + [SMALL_STATE(6924)] = 229348, + [SMALL_STATE(6925)] = 229416, + [SMALL_STATE(6926)] = 229488, + [SMALL_STATE(6927)] = 229582, + [SMALL_STATE(6928)] = 229673, + [SMALL_STATE(6929)] = 229764, + [SMALL_STATE(6930)] = 229855, + [SMALL_STATE(6931)] = 229946, + [SMALL_STATE(6932)] = 230037, + [SMALL_STATE(6933)] = 230128, + [SMALL_STATE(6934)] = 230219, + [SMALL_STATE(6935)] = 230310, + [SMALL_STATE(6936)] = 230401, + [SMALL_STATE(6937)] = 230492, + [SMALL_STATE(6938)] = 230585, + [SMALL_STATE(6939)] = 230676, + [SMALL_STATE(6940)] = 230769, + [SMALL_STATE(6941)] = 230814, + [SMALL_STATE(6942)] = 230905, + [SMALL_STATE(6943)] = 230996, + [SMALL_STATE(6944)] = 231087, + [SMALL_STATE(6945)] = 231178, + [SMALL_STATE(6946)] = 231249, + [SMALL_STATE(6947)] = 231320, + [SMALL_STATE(6948)] = 231411, + [SMALL_STATE(6949)] = 231502, + [SMALL_STATE(6950)] = 231593, + [SMALL_STATE(6951)] = 231684, + [SMALL_STATE(6952)] = 231755, + [SMALL_STATE(6953)] = 231846, + [SMALL_STATE(6954)] = 231937, + [SMALL_STATE(6955)] = 232028, + [SMALL_STATE(6956)] = 232119, + [SMALL_STATE(6957)] = 232210, + [SMALL_STATE(6958)] = 232301, + [SMALL_STATE(6959)] = 232392, + [SMALL_STATE(6960)] = 232485, + [SMALL_STATE(6961)] = 232576, + [SMALL_STATE(6962)] = 232649, + [SMALL_STATE(6963)] = 232742, + [SMALL_STATE(6964)] = 232833, + [SMALL_STATE(6965)] = 232924, + [SMALL_STATE(6966)] = 233017, + [SMALL_STATE(6967)] = 233110, + [SMALL_STATE(6968)] = 233201, + [SMALL_STATE(6969)] = 233292, + [SMALL_STATE(6970)] = 233385, + [SMALL_STATE(6971)] = 233476, + [SMALL_STATE(6972)] = 233567, + [SMALL_STATE(6973)] = 233660, + [SMALL_STATE(6974)] = 233751, + [SMALL_STATE(6975)] = 233842, + [SMALL_STATE(6976)] = 233933, + [SMALL_STATE(6977)] = 234024, + [SMALL_STATE(6978)] = 234097, + [SMALL_STATE(6979)] = 234188, + [SMALL_STATE(6980)] = 234279, + [SMALL_STATE(6981)] = 234370, + [SMALL_STATE(6982)] = 234461, + [SMALL_STATE(6983)] = 234552, + [SMALL_STATE(6984)] = 234643, + [SMALL_STATE(6985)] = 234734, + [SMALL_STATE(6986)] = 234825, + [SMALL_STATE(6987)] = 234916, + [SMALL_STATE(6988)] = 235007, + [SMALL_STATE(6989)] = 235098, + [SMALL_STATE(6990)] = 235189, + [SMALL_STATE(6991)] = 235280, + [SMALL_STATE(6992)] = 235371, + [SMALL_STATE(6993)] = 235464, + [SMALL_STATE(6994)] = 235557, + [SMALL_STATE(6995)] = 235648, + [SMALL_STATE(6996)] = 235739, + [SMALL_STATE(6997)] = 235830, + [SMALL_STATE(6998)] = 235921, + [SMALL_STATE(6999)] = 236012, + [SMALL_STATE(7000)] = 236103, + [SMALL_STATE(7001)] = 236190, + [SMALL_STATE(7002)] = 236281, + [SMALL_STATE(7003)] = 236372, + [SMALL_STATE(7004)] = 236463, + [SMALL_STATE(7005)] = 236554, + [SMALL_STATE(7006)] = 236627, + [SMALL_STATE(7007)] = 236718, + [SMALL_STATE(7008)] = 236809, + [SMALL_STATE(7009)] = 236900, + [SMALL_STATE(7010)] = 236991, + [SMALL_STATE(7011)] = 237082, + [SMALL_STATE(7012)] = 237173, + [SMALL_STATE(7013)] = 237218, + [SMALL_STATE(7014)] = 237311, + [SMALL_STATE(7015)] = 237402, + [SMALL_STATE(7016)] = 237495, + [SMALL_STATE(7017)] = 237586, + [SMALL_STATE(7018)] = 237677, + [SMALL_STATE(7019)] = 237768, + [SMALL_STATE(7020)] = 237815, + [SMALL_STATE(7021)] = 237906, + [SMALL_STATE(7022)] = 237997, + [SMALL_STATE(7023)] = 238044, + [SMALL_STATE(7024)] = 238135, + [SMALL_STATE(7025)] = 238208, + [SMALL_STATE(7026)] = 238299, + [SMALL_STATE(7027)] = 238390, + [SMALL_STATE(7028)] = 238481, + [SMALL_STATE(7029)] = 238532, + [SMALL_STATE(7030)] = 238623, + [SMALL_STATE(7031)] = 238714, + [SMALL_STATE(7032)] = 238807, + [SMALL_STATE(7033)] = 238894, + [SMALL_STATE(7034)] = 238987, + [SMALL_STATE(7035)] = 239034, + [SMALL_STATE(7036)] = 239125, + [SMALL_STATE(7037)] = 239216, + [SMALL_STATE(7038)] = 239307, + [SMALL_STATE(7039)] = 239398, + [SMALL_STATE(7040)] = 239489, + [SMALL_STATE(7041)] = 239580, + [SMALL_STATE(7042)] = 239671, + [SMALL_STATE(7043)] = 239762, + [SMALL_STATE(7044)] = 239853, + [SMALL_STATE(7045)] = 239944, + [SMALL_STATE(7046)] = 240035, + [SMALL_STATE(7047)] = 240126, + [SMALL_STATE(7048)] = 240217, + [SMALL_STATE(7049)] = 240308, + [SMALL_STATE(7050)] = 240399, + [SMALL_STATE(7051)] = 240490, + [SMALL_STATE(7052)] = 240581, + [SMALL_STATE(7053)] = 240672, + [SMALL_STATE(7054)] = 240763, + [SMALL_STATE(7055)] = 240836, + [SMALL_STATE(7056)] = 240927, + [SMALL_STATE(7057)] = 241018, + [SMALL_STATE(7058)] = 241109, + [SMALL_STATE(7059)] = 241200, + [SMALL_STATE(7060)] = 241291, + [SMALL_STATE(7061)] = 241382, + [SMALL_STATE(7062)] = 241473, + [SMALL_STATE(7063)] = 241564, + [SMALL_STATE(7064)] = 241655, + [SMALL_STATE(7065)] = 241746, + [SMALL_STATE(7066)] = 241837, + [SMALL_STATE(7067)] = 241928, + [SMALL_STATE(7068)] = 242019, + [SMALL_STATE(7069)] = 242110, + [SMALL_STATE(7070)] = 242201, + [SMALL_STATE(7071)] = 242292, + [SMALL_STATE(7072)] = 242383, + [SMALL_STATE(7073)] = 242474, + [SMALL_STATE(7074)] = 242565, + [SMALL_STATE(7075)] = 242656, + [SMALL_STATE(7076)] = 242747, + [SMALL_STATE(7077)] = 242838, + [SMALL_STATE(7078)] = 242911, + [SMALL_STATE(7079)] = 242984, + [SMALL_STATE(7080)] = 243075, + [SMALL_STATE(7081)] = 243168, + [SMALL_STATE(7082)] = 243259, + [SMALL_STATE(7083)] = 243352, + [SMALL_STATE(7084)] = 243407, + [SMALL_STATE(7085)] = 243480, + [SMALL_STATE(7086)] = 243571, + [SMALL_STATE(7087)] = 243624, + [SMALL_STATE(7088)] = 243715, + [SMALL_STATE(7089)] = 243786, + [SMALL_STATE(7090)] = 243849, + [SMALL_STATE(7091)] = 243940, + [SMALL_STATE(7092)] = 244031, + [SMALL_STATE(7093)] = 244078, + [SMALL_STATE(7094)] = 244169, + [SMALL_STATE(7095)] = 244260, + [SMALL_STATE(7096)] = 244333, + [SMALL_STATE(7097)] = 244406, + [SMALL_STATE(7098)] = 244499, + [SMALL_STATE(7099)] = 244572, + [SMALL_STATE(7100)] = 244663, + [SMALL_STATE(7101)] = 244754, + [SMALL_STATE(7102)] = 244845, + [SMALL_STATE(7103)] = 244936, + [SMALL_STATE(7104)] = 245009, + [SMALL_STATE(7105)] = 245102, + [SMALL_STATE(7106)] = 245193, + [SMALL_STATE(7107)] = 245284, + [SMALL_STATE(7108)] = 245375, + [SMALL_STATE(7109)] = 245446, + [SMALL_STATE(7110)] = 245517, + [SMALL_STATE(7111)] = 245608, + [SMALL_STATE(7112)] = 245699, + [SMALL_STATE(7113)] = 245790, + [SMALL_STATE(7114)] = 245881, + [SMALL_STATE(7115)] = 245972, + [SMALL_STATE(7116)] = 246063, + [SMALL_STATE(7117)] = 246136, + [SMALL_STATE(7118)] = 246209, + [SMALL_STATE(7119)] = 246282, + [SMALL_STATE(7120)] = 246355, + [SMALL_STATE(7121)] = 246446, + [SMALL_STATE(7122)] = 246491, + [SMALL_STATE(7123)] = 246538, + [SMALL_STATE(7124)] = 246587, + [SMALL_STATE(7125)] = 246636, + [SMALL_STATE(7126)] = 246709, + [SMALL_STATE(7127)] = 246758, + [SMALL_STATE(7128)] = 246849, + [SMALL_STATE(7129)] = 246898, + [SMALL_STATE(7130)] = 246947, + [SMALL_STATE(7131)] = 247034, + [SMALL_STATE(7132)] = 247125, + [SMALL_STATE(7133)] = 247216, + [SMALL_STATE(7134)] = 247261, + [SMALL_STATE(7135)] = 247334, + [SMALL_STATE(7136)] = 247383, + [SMALL_STATE(7137)] = 247432, + [SMALL_STATE(7138)] = 247481, + [SMALL_STATE(7139)] = 247530, + [SMALL_STATE(7140)] = 247579, + [SMALL_STATE(7141)] = 247670, + [SMALL_STATE(7142)] = 247719, + [SMALL_STATE(7143)] = 247810, + [SMALL_STATE(7144)] = 247859, + [SMALL_STATE(7145)] = 247950, + [SMALL_STATE(7146)] = 247999, + [SMALL_STATE(7147)] = 248090, + [SMALL_STATE(7148)] = 248137, + [SMALL_STATE(7149)] = 248182, + [SMALL_STATE(7150)] = 248275, + [SMALL_STATE(7151)] = 248362, + [SMALL_STATE(7152)] = 248453, + [SMALL_STATE(7153)] = 248544, + [SMALL_STATE(7154)] = 248635, + [SMALL_STATE(7155)] = 248726, + [SMALL_STATE(7156)] = 248817, + [SMALL_STATE(7157)] = 248908, + [SMALL_STATE(7158)] = 248999, + [SMALL_STATE(7159)] = 249090, + [SMALL_STATE(7160)] = 249181, + [SMALL_STATE(7161)] = 249274, + [SMALL_STATE(7162)] = 249347, + [SMALL_STATE(7163)] = 249440, + [SMALL_STATE(7164)] = 249531, + [SMALL_STATE(7165)] = 249622, + [SMALL_STATE(7166)] = 249713, + [SMALL_STATE(7167)] = 249804, + [SMALL_STATE(7168)] = 249895, + [SMALL_STATE(7169)] = 249968, + [SMALL_STATE(7170)] = 250059, + [SMALL_STATE(7171)] = 250150, + [SMALL_STATE(7172)] = 250195, + [SMALL_STATE(7173)] = 250268, + [SMALL_STATE(7174)] = 250359, + [SMALL_STATE(7175)] = 250450, + [SMALL_STATE(7176)] = 250495, + [SMALL_STATE(7177)] = 250586, + [SMALL_STATE(7178)] = 250677, + [SMALL_STATE(7179)] = 250768, + [SMALL_STATE(7180)] = 250813, + [SMALL_STATE(7181)] = 250904, + [SMALL_STATE(7182)] = 250995, + [SMALL_STATE(7183)] = 251088, + [SMALL_STATE(7184)] = 251179, + [SMALL_STATE(7185)] = 251270, + [SMALL_STATE(7186)] = 251361, + [SMALL_STATE(7187)] = 251452, + [SMALL_STATE(7188)] = 251543, + [SMALL_STATE(7189)] = 251634, + [SMALL_STATE(7190)] = 251725, + [SMALL_STATE(7191)] = 251816, + [SMALL_STATE(7192)] = 251907, + [SMALL_STATE(7193)] = 251998, + [SMALL_STATE(7194)] = 252089, + [SMALL_STATE(7195)] = 252180, + [SMALL_STATE(7196)] = 252224, + [SMALL_STATE(7197)] = 252316, + [SMALL_STATE(7198)] = 252408, + [SMALL_STATE(7199)] = 252500, + [SMALL_STATE(7200)] = 252544, + [SMALL_STATE(7201)] = 252636, + [SMALL_STATE(7202)] = 252728, + [SMALL_STATE(7203)] = 252820, + [SMALL_STATE(7204)] = 252912, + [SMALL_STATE(7205)] = 253004, + [SMALL_STATE(7206)] = 253052, + [SMALL_STATE(7207)] = 253096, + [SMALL_STATE(7208)] = 253140, + [SMALL_STATE(7209)] = 253184, + [SMALL_STATE(7210)] = 253228, + [SMALL_STATE(7211)] = 253308, + [SMALL_STATE(7212)] = 253358, + [SMALL_STATE(7213)] = 253402, + [SMALL_STATE(7214)] = 253494, + [SMALL_STATE(7215)] = 253586, + [SMALL_STATE(7216)] = 253678, + [SMALL_STATE(7217)] = 253722, + [SMALL_STATE(7218)] = 253766, + [SMALL_STATE(7219)] = 253814, + [SMALL_STATE(7220)] = 253858, + [SMALL_STATE(7221)] = 253902, + [SMALL_STATE(7222)] = 253994, + [SMALL_STATE(7223)] = 254086, + [SMALL_STATE(7224)] = 254156, + [SMALL_STATE(7225)] = 254248, + [SMALL_STATE(7226)] = 254300, + [SMALL_STATE(7227)] = 254370, + [SMALL_STATE(7228)] = 254414, + [SMALL_STATE(7229)] = 254458, + [SMALL_STATE(7230)] = 254502, + [SMALL_STATE(7231)] = 254546, + [SMALL_STATE(7232)] = 254590, + [SMALL_STATE(7233)] = 254682, + [SMALL_STATE(7234)] = 254774, + [SMALL_STATE(7235)] = 254866, + [SMALL_STATE(7236)] = 254958, + [SMALL_STATE(7237)] = 255050, + [SMALL_STATE(7238)] = 255142, + [SMALL_STATE(7239)] = 255234, + [SMALL_STATE(7240)] = 255326, + [SMALL_STATE(7241)] = 255418, + [SMALL_STATE(7242)] = 255506, + [SMALL_STATE(7243)] = 255598, + [SMALL_STATE(7244)] = 255690, + [SMALL_STATE(7245)] = 255782, + [SMALL_STATE(7246)] = 255874, + [SMALL_STATE(7247)] = 255926, + [SMALL_STATE(7248)] = 255970, + [SMALL_STATE(7249)] = 256040, + [SMALL_STATE(7250)] = 256084, + [SMALL_STATE(7251)] = 256128, + [SMALL_STATE(7252)] = 256172, + [SMALL_STATE(7253)] = 256216, + [SMALL_STATE(7254)] = 256260, + [SMALL_STATE(7255)] = 256304, + [SMALL_STATE(7256)] = 256352, + [SMALL_STATE(7257)] = 256396, + [SMALL_STATE(7258)] = 256466, + [SMALL_STATE(7259)] = 256558, + [SMALL_STATE(7260)] = 256602, + [SMALL_STATE(7261)] = 256652, + [SMALL_STATE(7262)] = 256744, + [SMALL_STATE(7263)] = 256836, + [SMALL_STATE(7264)] = 256928, + [SMALL_STATE(7265)] = 257020, + [SMALL_STATE(7266)] = 257112, + [SMALL_STATE(7267)] = 257204, + [SMALL_STATE(7268)] = 257248, + [SMALL_STATE(7269)] = 257340, + [SMALL_STATE(7270)] = 257384, + [SMALL_STATE(7271)] = 257428, + [SMALL_STATE(7272)] = 257520, + [SMALL_STATE(7273)] = 257590, + [SMALL_STATE(7274)] = 257634, + [SMALL_STATE(7275)] = 257692, + [SMALL_STATE(7276)] = 257740, + [SMALL_STATE(7277)] = 257832, + [SMALL_STATE(7278)] = 257924, + [SMALL_STATE(7279)] = 258016, + [SMALL_STATE(7280)] = 258060, + [SMALL_STATE(7281)] = 258104, + [SMALL_STATE(7282)] = 258196, + [SMALL_STATE(7283)] = 258288, + [SMALL_STATE(7284)] = 258380, + [SMALL_STATE(7285)] = 258424, + [SMALL_STATE(7286)] = 258516, + [SMALL_STATE(7287)] = 258608, + [SMALL_STATE(7288)] = 258652, + [SMALL_STATE(7289)] = 258744, + [SMALL_STATE(7290)] = 258788, + [SMALL_STATE(7291)] = 258832, + [SMALL_STATE(7292)] = 258890, + [SMALL_STATE(7293)] = 258982, + [SMALL_STATE(7294)] = 259074, + [SMALL_STATE(7295)] = 259166, + [SMALL_STATE(7296)] = 259258, + [SMALL_STATE(7297)] = 259350, + [SMALL_STATE(7298)] = 259442, + [SMALL_STATE(7299)] = 259486, + [SMALL_STATE(7300)] = 259530, + [SMALL_STATE(7301)] = 259574, + [SMALL_STATE(7302)] = 259618, + [SMALL_STATE(7303)] = 259662, + [SMALL_STATE(7304)] = 259706, + [SMALL_STATE(7305)] = 259798, + [SMALL_STATE(7306)] = 259890, + [SMALL_STATE(7307)] = 259982, + [SMALL_STATE(7308)] = 260074, + [SMALL_STATE(7309)] = 260166, + [SMALL_STATE(7310)] = 260258, + [SMALL_STATE(7311)] = 260350, + [SMALL_STATE(7312)] = 260402, + [SMALL_STATE(7313)] = 260494, + [SMALL_STATE(7314)] = 260586, + [SMALL_STATE(7315)] = 260634, + [SMALL_STATE(7316)] = 260726, + [SMALL_STATE(7317)] = 260818, + [SMALL_STATE(7318)] = 260910, + [SMALL_STATE(7319)] = 261002, + [SMALL_STATE(7320)] = 261094, + [SMALL_STATE(7321)] = 261186, + [SMALL_STATE(7322)] = 261278, + [SMALL_STATE(7323)] = 261370, + [SMALL_STATE(7324)] = 261462, + [SMALL_STATE(7325)] = 261506, + [SMALL_STATE(7326)] = 261550, + [SMALL_STATE(7327)] = 261600, + [SMALL_STATE(7328)] = 261644, + [SMALL_STATE(7329)] = 261736, + [SMALL_STATE(7330)] = 261828, + [SMALL_STATE(7331)] = 261880, + [SMALL_STATE(7332)] = 261924, + [SMALL_STATE(7333)] = 262016, + [SMALL_STATE(7334)] = 262096, + [SMALL_STATE(7335)] = 262140, + [SMALL_STATE(7336)] = 262184, + [SMALL_STATE(7337)] = 262228, + [SMALL_STATE(7338)] = 262272, + [SMALL_STATE(7339)] = 262316, + [SMALL_STATE(7340)] = 262364, + [SMALL_STATE(7341)] = 262408, + [SMALL_STATE(7342)] = 262452, + [SMALL_STATE(7343)] = 262496, + [SMALL_STATE(7344)] = 262540, + [SMALL_STATE(7345)] = 262584, + [SMALL_STATE(7346)] = 262628, + [SMALL_STATE(7347)] = 262672, + [SMALL_STATE(7348)] = 262716, + [SMALL_STATE(7349)] = 262776, + [SMALL_STATE(7350)] = 262824, + [SMALL_STATE(7351)] = 262910, + [SMALL_STATE(7352)] = 262954, + [SMALL_STATE(7353)] = 262998, + [SMALL_STATE(7354)] = 263090, + [SMALL_STATE(7355)] = 263182, + [SMALL_STATE(7356)] = 263274, + [SMALL_STATE(7357)] = 263318, + [SMALL_STATE(7358)] = 263404, + [SMALL_STATE(7359)] = 263484, + [SMALL_STATE(7360)] = 263576, + [SMALL_STATE(7361)] = 263620, + [SMALL_STATE(7362)] = 263664, + [SMALL_STATE(7363)] = 263756, + [SMALL_STATE(7364)] = 263848, + [SMALL_STATE(7365)] = 263940, + [SMALL_STATE(7366)] = 263984, + [SMALL_STATE(7367)] = 264076, + [SMALL_STATE(7368)] = 264120, + [SMALL_STATE(7369)] = 264164, + [SMALL_STATE(7370)] = 264208, + [SMALL_STATE(7371)] = 264300, + [SMALL_STATE(7372)] = 264392, + [SMALL_STATE(7373)] = 264436, + [SMALL_STATE(7374)] = 264480, + [SMALL_STATE(7375)] = 264572, + [SMALL_STATE(7376)] = 264664, + [SMALL_STATE(7377)] = 264744, + [SMALL_STATE(7378)] = 264836, + [SMALL_STATE(7379)] = 264928, + [SMALL_STATE(7380)] = 264972, + [SMALL_STATE(7381)] = 265016, + [SMALL_STATE(7382)] = 265108, + [SMALL_STATE(7383)] = 265200, + [SMALL_STATE(7384)] = 265292, + [SMALL_STATE(7385)] = 265384, + [SMALL_STATE(7386)] = 265476, + [SMALL_STATE(7387)] = 265568, + [SMALL_STATE(7388)] = 265612, + [SMALL_STATE(7389)] = 265682, + [SMALL_STATE(7390)] = 265726, + [SMALL_STATE(7391)] = 265770, + [SMALL_STATE(7392)] = 265814, + [SMALL_STATE(7393)] = 265906, + [SMALL_STATE(7394)] = 265998, + [SMALL_STATE(7395)] = 266090, + [SMALL_STATE(7396)] = 266134, + [SMALL_STATE(7397)] = 266178, + [SMALL_STATE(7398)] = 266222, + [SMALL_STATE(7399)] = 266314, + [SMALL_STATE(7400)] = 266403, + [SMALL_STATE(7401)] = 266490, + [SMALL_STATE(7402)] = 266577, + [SMALL_STATE(7403)] = 266664, + [SMALL_STATE(7404)] = 266751, + [SMALL_STATE(7405)] = 266838, + [SMALL_STATE(7406)] = 266925, + [SMALL_STATE(7407)] = 267014, + [SMALL_STATE(7408)] = 267101, + [SMALL_STATE(7409)] = 267188, + [SMALL_STATE(7410)] = 267277, + [SMALL_STATE(7411)] = 267366, + [SMALL_STATE(7412)] = 267453, + [SMALL_STATE(7413)] = 267542, + [SMALL_STATE(7414)] = 267629, + [SMALL_STATE(7415)] = 267718, + [SMALL_STATE(7416)] = 267805, + [SMALL_STATE(7417)] = 267854, + [SMALL_STATE(7418)] = 267941, + [SMALL_STATE(7419)] = 268030, + [SMALL_STATE(7420)] = 268075, + [SMALL_STATE(7421)] = 268164, + [SMALL_STATE(7422)] = 268251, + [SMALL_STATE(7423)] = 268338, + [SMALL_STATE(7424)] = 268427, + [SMALL_STATE(7425)] = 268516, + [SMALL_STATE(7426)] = 268603, + [SMALL_STATE(7427)] = 268690, + [SMALL_STATE(7428)] = 268779, + [SMALL_STATE(7429)] = 268848, + [SMALL_STATE(7430)] = 268917, + [SMALL_STATE(7431)] = 269004, + [SMALL_STATE(7432)] = 269091, + [SMALL_STATE(7433)] = 269178, + [SMALL_STATE(7434)] = 269247, + [SMALL_STATE(7435)] = 269316, + [SMALL_STATE(7436)] = 269405, + [SMALL_STATE(7437)] = 269492, + [SMALL_STATE(7438)] = 269579, + [SMALL_STATE(7439)] = 269666, + [SMALL_STATE(7440)] = 269753, + [SMALL_STATE(7441)] = 269802, + [SMALL_STATE(7442)] = 269847, + [SMALL_STATE(7443)] = 269892, + [SMALL_STATE(7444)] = 269979, + [SMALL_STATE(7445)] = 270066, + [SMALL_STATE(7446)] = 270155, + [SMALL_STATE(7447)] = 270242, + [SMALL_STATE(7448)] = 270329, + [SMALL_STATE(7449)] = 270418, + [SMALL_STATE(7450)] = 270507, + [SMALL_STATE(7451)] = 270596, + [SMALL_STATE(7452)] = 270683, + [SMALL_STATE(7453)] = 270768, + [SMALL_STATE(7454)] = 270837, + [SMALL_STATE(7455)] = 270926, + [SMALL_STATE(7456)] = 271015, + [SMALL_STATE(7457)] = 271102, + [SMALL_STATE(7458)] = 271189, + [SMALL_STATE(7459)] = 271278, + [SMALL_STATE(7460)] = 271347, + [SMALL_STATE(7461)] = 271396, + [SMALL_STATE(7462)] = 271485, + [SMALL_STATE(7463)] = 271574, + [SMALL_STATE(7464)] = 271663, + [SMALL_STATE(7465)] = 271750, + [SMALL_STATE(7466)] = 271837, + [SMALL_STATE(7467)] = 271926, + [SMALL_STATE(7468)] = 271995, + [SMALL_STATE(7469)] = 272082, + [SMALL_STATE(7470)] = 272167, + [SMALL_STATE(7471)] = 272254, + [SMALL_STATE(7472)] = 272339, + [SMALL_STATE(7473)] = 272428, + [SMALL_STATE(7474)] = 272515, + [SMALL_STATE(7475)] = 272602, + [SMALL_STATE(7476)] = 272691, + [SMALL_STATE(7477)] = 272778, + [SMALL_STATE(7478)] = 272865, + [SMALL_STATE(7479)] = 272954, + [SMALL_STATE(7480)] = 273041, + [SMALL_STATE(7481)] = 273130, + [SMALL_STATE(7482)] = 273179, + [SMALL_STATE(7483)] = 273268, + [SMALL_STATE(7484)] = 273355, + [SMALL_STATE(7485)] = 273442, + [SMALL_STATE(7486)] = 273531, + [SMALL_STATE(7487)] = 273618, + [SMALL_STATE(7488)] = 273705, + [SMALL_STATE(7489)] = 273792, + [SMALL_STATE(7490)] = 273879, + [SMALL_STATE(7491)] = 273966, + [SMALL_STATE(7492)] = 274055, + [SMALL_STATE(7493)] = 274144, + [SMALL_STATE(7494)] = 274233, + [SMALL_STATE(7495)] = 274322, + [SMALL_STATE(7496)] = 274409, + [SMALL_STATE(7497)] = 274496, + [SMALL_STATE(7498)] = 274565, + [SMALL_STATE(7499)] = 274652, + [SMALL_STATE(7500)] = 274739, + [SMALL_STATE(7501)] = 274826, + [SMALL_STATE(7502)] = 274913, + [SMALL_STATE(7503)] = 275000, + [SMALL_STATE(7504)] = 275089, + [SMALL_STATE(7505)] = 275178, + [SMALL_STATE(7506)] = 275263, + [SMALL_STATE(7507)] = 275341, + [SMALL_STATE(7508)] = 275419, + [SMALL_STATE(7509)] = 275487, + [SMALL_STATE(7510)] = 275565, + [SMALL_STATE(7511)] = 275643, + [SMALL_STATE(7512)] = 275685, + [SMALL_STATE(7513)] = 275763, + [SMALL_STATE(7514)] = 275805, + [SMALL_STATE(7515)] = 275883, + [SMALL_STATE(7516)] = 275961, + [SMALL_STATE(7517)] = 276039, + [SMALL_STATE(7518)] = 276107, + [SMALL_STATE(7519)] = 276175, + [SMALL_STATE(7520)] = 276253, + [SMALL_STATE(7521)] = 276331, + [SMALL_STATE(7522)] = 276409, + [SMALL_STATE(7523)] = 276487, + [SMALL_STATE(7524)] = 276565, + [SMALL_STATE(7525)] = 276643, + [SMALL_STATE(7526)] = 276721, + [SMALL_STATE(7527)] = 276799, + [SMALL_STATE(7528)] = 276877, + [SMALL_STATE(7529)] = 276955, + [SMALL_STATE(7530)] = 277033, + [SMALL_STATE(7531)] = 277111, + [SMALL_STATE(7532)] = 277189, + [SMALL_STATE(7533)] = 277241, + [SMALL_STATE(7534)] = 277325, + [SMALL_STATE(7535)] = 277377, + [SMALL_STATE(7536)] = 277419, + [SMALL_STATE(7537)] = 277503, + [SMALL_STATE(7538)] = 277571, + [SMALL_STATE(7539)] = 277639, + [SMALL_STATE(7540)] = 277717, + [SMALL_STATE(7541)] = 277759, + [SMALL_STATE(7542)] = 277837, + [SMALL_STATE(7543)] = 277915, + [SMALL_STATE(7544)] = 277993, + [SMALL_STATE(7545)] = 278071, + [SMALL_STATE(7546)] = 278149, + [SMALL_STATE(7547)] = 278227, + [SMALL_STATE(7548)] = 278305, + [SMALL_STATE(7549)] = 278383, + [SMALL_STATE(7550)] = 278461, + [SMALL_STATE(7551)] = 278539, + [SMALL_STATE(7552)] = 278617, + [SMALL_STATE(7553)] = 278695, + [SMALL_STATE(7554)] = 278773, + [SMALL_STATE(7555)] = 278851, + [SMALL_STATE(7556)] = 278929, + [SMALL_STATE(7557)] = 279007, + [SMALL_STATE(7558)] = 279085, + [SMALL_STATE(7559)] = 279153, + [SMALL_STATE(7560)] = 279231, + [SMALL_STATE(7561)] = 279309, + [SMALL_STATE(7562)] = 279387, + [SMALL_STATE(7563)] = 279465, + [SMALL_STATE(7564)] = 279543, + [SMALL_STATE(7565)] = 279621, + [SMALL_STATE(7566)] = 279699, + [SMALL_STATE(7567)] = 279777, + [SMALL_STATE(7568)] = 279855, + [SMALL_STATE(7569)] = 279922, + [SMALL_STATE(7570)] = 279999, + [SMALL_STATE(7571)] = 280046, + [SMALL_STATE(7572)] = 280093, + [SMALL_STATE(7573)] = 280140, + [SMALL_STATE(7574)] = 280223, + [SMALL_STATE(7575)] = 280270, + [SMALL_STATE(7576)] = 280317, + [SMALL_STATE(7577)] = 280364, + [SMALL_STATE(7578)] = 280405, + [SMALL_STATE(7579)] = 280482, + [SMALL_STATE(7580)] = 280549, + [SMALL_STATE(7581)] = 280596, + [SMALL_STATE(7582)] = 280643, + [SMALL_STATE(7583)] = 280698, + [SMALL_STATE(7584)] = 280775, + [SMALL_STATE(7585)] = 280822, + [SMALL_STATE(7586)] = 280889, + [SMALL_STATE(7587)] = 280944, + [SMALL_STATE(7588)] = 281027, + [SMALL_STATE(7589)] = 281110, + [SMALL_STATE(7590)] = 281157, + [SMALL_STATE(7591)] = 281210, + [SMALL_STATE(7592)] = 281265, + [SMALL_STATE(7593)] = 281308, + [SMALL_STATE(7594)] = 281375, + [SMALL_STATE(7595)] = 281422, + [SMALL_STATE(7596)] = 281469, + [SMALL_STATE(7597)] = 281552, + [SMALL_STATE(7598)] = 281609, + [SMALL_STATE(7599)] = 281676, + [SMALL_STATE(7600)] = 281723, + [SMALL_STATE(7601)] = 281790, + [SMALL_STATE(7602)] = 281845, + [SMALL_STATE(7603)] = 281902, + [SMALL_STATE(7604)] = 281951, + [SMALL_STATE(7605)] = 282028, + [SMALL_STATE(7606)] = 282081, + [SMALL_STATE(7607)] = 282138, + [SMALL_STATE(7608)] = 282178, + [SMALL_STATE(7609)] = 282218, + [SMALL_STATE(7610)] = 282258, + [SMALL_STATE(7611)] = 282298, + [SMALL_STATE(7612)] = 282338, + [SMALL_STATE(7613)] = 282378, + [SMALL_STATE(7614)] = 282418, + [SMALL_STATE(7615)] = 282458, + [SMALL_STATE(7616)] = 282534, + [SMALL_STATE(7617)] = 282610, + [SMALL_STATE(7618)] = 282650, + [SMALL_STATE(7619)] = 282690, + [SMALL_STATE(7620)] = 282730, + [SMALL_STATE(7621)] = 282770, + [SMALL_STATE(7622)] = 282810, + [SMALL_STATE(7623)] = 282850, + [SMALL_STATE(7624)] = 282890, + [SMALL_STATE(7625)] = 282930, + [SMALL_STATE(7626)] = 282970, + [SMALL_STATE(7627)] = 283010, + [SMALL_STATE(7628)] = 283050, + [SMALL_STATE(7629)] = 283090, + [SMALL_STATE(7630)] = 283130, + [SMALL_STATE(7631)] = 283170, + [SMALL_STATE(7632)] = 283210, + [SMALL_STATE(7633)] = 283250, + [SMALL_STATE(7634)] = 283290, + [SMALL_STATE(7635)] = 283330, + [SMALL_STATE(7636)] = 283370, + [SMALL_STATE(7637)] = 283410, + [SMALL_STATE(7638)] = 283450, + [SMALL_STATE(7639)] = 283490, + [SMALL_STATE(7640)] = 283530, + [SMALL_STATE(7641)] = 283570, + [SMALL_STATE(7642)] = 283610, + [SMALL_STATE(7643)] = 283686, + [SMALL_STATE(7644)] = 283762, + [SMALL_STATE(7645)] = 283838, + [SMALL_STATE(7646)] = 283878, + [SMALL_STATE(7647)] = 283918, + [SMALL_STATE(7648)] = 283958, + [SMALL_STATE(7649)] = 283998, + [SMALL_STATE(7650)] = 284080, + [SMALL_STATE(7651)] = 284120, + [SMALL_STATE(7652)] = 284160, + [SMALL_STATE(7653)] = 284236, + [SMALL_STATE(7654)] = 284312, + [SMALL_STATE(7655)] = 284388, + [SMALL_STATE(7656)] = 284428, + [SMALL_STATE(7657)] = 284497, + [SMALL_STATE(7658)] = 284566, + [SMALL_STATE(7659)] = 284641, + [SMALL_STATE(7660)] = 284688, + [SMALL_STATE(7661)] = 284735, + [SMALL_STATE(7662)] = 284804, + [SMALL_STATE(7663)] = 284879, + [SMALL_STATE(7664)] = 284954, + [SMALL_STATE(7665)] = 285023, + [SMALL_STATE(7666)] = 285092, + [SMALL_STATE(7667)] = 285167, + [SMALL_STATE(7668)] = 285236, + [SMALL_STATE(7669)] = 285278, + [SMALL_STATE(7670)] = 285332, + [SMALL_STATE(7671)] = 285404, + [SMALL_STATE(7672)] = 285446, + [SMALL_STATE(7673)] = 285520, + [SMALL_STATE(7674)] = 285594, + [SMALL_STATE(7675)] = 285666, + [SMALL_STATE(7676)] = 285740, + [SMALL_STATE(7677)] = 285782, + [SMALL_STATE(7678)] = 285856, + [SMALL_STATE(7679)] = 285928, + [SMALL_STATE(7680)] = 286000, + [SMALL_STATE(7681)] = 286074, + [SMALL_STATE(7682)] = 286148, + [SMALL_STATE(7683)] = 286190, + [SMALL_STATE(7684)] = 286262, + [SMALL_STATE(7685)] = 286334, + [SMALL_STATE(7686)] = 286406, + [SMALL_STATE(7687)] = 286448, + [SMALL_STATE(7688)] = 286490, + [SMALL_STATE(7689)] = 286564, + [SMALL_STATE(7690)] = 286606, + [SMALL_STATE(7691)] = 286648, + [SMALL_STATE(7692)] = 286690, + [SMALL_STATE(7693)] = 286730, + [SMALL_STATE(7694)] = 286776, + [SMALL_STATE(7695)] = 286818, + [SMALL_STATE(7696)] = 286890, + [SMALL_STATE(7697)] = 286962, + [SMALL_STATE(7698)] = 287004, + [SMALL_STATE(7699)] = 287078, + [SMALL_STATE(7700)] = 287120, + [SMALL_STATE(7701)] = 287174, + [SMALL_STATE(7702)] = 287247, + [SMALL_STATE(7703)] = 287314, + [SMALL_STATE(7704)] = 287381, + [SMALL_STATE(7705)] = 287448, + [SMALL_STATE(7706)] = 287515, + [SMALL_STATE(7707)] = 287582, + [SMALL_STATE(7708)] = 287627, + [SMALL_STATE(7709)] = 287668, + [SMALL_STATE(7710)] = 287709, + [SMALL_STATE(7711)] = 287750, + [SMALL_STATE(7712)] = 287791, + [SMALL_STATE(7713)] = 287832, + [SMALL_STATE(7714)] = 287873, + [SMALL_STATE(7715)] = 287914, + [SMALL_STATE(7716)] = 287959, + [SMALL_STATE(7717)] = 288002, + [SMALL_STATE(7718)] = 288043, + [SMALL_STATE(7719)] = 288084, + [SMALL_STATE(7720)] = 288125, + [SMALL_STATE(7721)] = 288166, + [SMALL_STATE(7722)] = 288239, + [SMALL_STATE(7723)] = 288284, + [SMALL_STATE(7724)] = 288351, + [SMALL_STATE(7725)] = 288418, + [SMALL_STATE(7726)] = 288463, + [SMALL_STATE(7727)] = 288530, + [SMALL_STATE(7728)] = 288597, + [SMALL_STATE(7729)] = 288664, + [SMALL_STATE(7730)] = 288731, + [SMALL_STATE(7731)] = 288780, + [SMALL_STATE(7732)] = 288847, + [SMALL_STATE(7733)] = 288888, + [SMALL_STATE(7734)] = 288954, + [SMALL_STATE(7735)] = 289020, + [SMALL_STATE(7736)] = 289086, + [SMALL_STATE(7737)] = 289152, + [SMALL_STATE(7738)] = 289218, + [SMALL_STATE(7739)] = 289284, + [SMALL_STATE(7740)] = 289337, + [SMALL_STATE(7741)] = 289400, + [SMALL_STATE(7742)] = 289463, + [SMALL_STATE(7743)] = 289526, + [SMALL_STATE(7744)] = 289591, + [SMALL_STATE(7745)] = 289630, + [SMALL_STATE(7746)] = 289693, + [SMALL_STATE(7747)] = 289756, + [SMALL_STATE(7748)] = 289819, + [SMALL_STATE(7749)] = 289882, + [SMALL_STATE(7750)] = 289945, + [SMALL_STATE(7751)] = 290008, + [SMALL_STATE(7752)] = 290071, + [SMALL_STATE(7753)] = 290134, + [SMALL_STATE(7754)] = 290197, + [SMALL_STATE(7755)] = 290262, + [SMALL_STATE(7756)] = 290325, + [SMALL_STATE(7757)] = 290388, + [SMALL_STATE(7758)] = 290451, + [SMALL_STATE(7759)] = 290516, + [SMALL_STATE(7760)] = 290581, + [SMALL_STATE(7761)] = 290644, + [SMALL_STATE(7762)] = 290707, + [SMALL_STATE(7763)] = 290770, + [SMALL_STATE(7764)] = 290833, + [SMALL_STATE(7765)] = 290896, + [SMALL_STATE(7766)] = 290961, + [SMALL_STATE(7767)] = 291024, + [SMALL_STATE(7768)] = 291089, + [SMALL_STATE(7769)] = 291152, + [SMALL_STATE(7770)] = 291215, + [SMALL_STATE(7771)] = 291280, + [SMALL_STATE(7772)] = 291343, + [SMALL_STATE(7773)] = 291406, + [SMALL_STATE(7774)] = 291469, + [SMALL_STATE(7775)] = 291532, + [SMALL_STATE(7776)] = 291595, + [SMALL_STATE(7777)] = 291660, + [SMALL_STATE(7778)] = 291741, + [SMALL_STATE(7779)] = 291804, + [SMALL_STATE(7780)] = 291885, + [SMALL_STATE(7781)] = 291948, + [SMALL_STATE(7782)] = 292011, + [SMALL_STATE(7783)] = 292074, + [SMALL_STATE(7784)] = 292137, + [SMALL_STATE(7785)] = 292218, + [SMALL_STATE(7786)] = 292281, + [SMALL_STATE(7787)] = 292344, + [SMALL_STATE(7788)] = 292407, + [SMALL_STATE(7789)] = 292470, + [SMALL_STATE(7790)] = 292511, + [SMALL_STATE(7791)] = 292574, + [SMALL_STATE(7792)] = 292637, + [SMALL_STATE(7793)] = 292700, + [SMALL_STATE(7794)] = 292765, + [SMALL_STATE(7795)] = 292830, + [SMALL_STATE(7796)] = 292893, + [SMALL_STATE(7797)] = 292956, + [SMALL_STATE(7798)] = 293019, + [SMALL_STATE(7799)] = 293082, + [SMALL_STATE(7800)] = 293147, + [SMALL_STATE(7801)] = 293212, + [SMALL_STATE(7802)] = 293275, + [SMALL_STATE(7803)] = 293338, + [SMALL_STATE(7804)] = 293401, + [SMALL_STATE(7805)] = 293464, + [SMALL_STATE(7806)] = 293534, + [SMALL_STATE(7807)] = 293604, + [SMALL_STATE(7808)] = 293674, + [SMALL_STATE(7809)] = 293744, + [SMALL_STATE(7810)] = 293814, + [SMALL_STATE(7811)] = 293884, + [SMALL_STATE(7812)] = 293954, + [SMALL_STATE(7813)] = 294024, + [SMALL_STATE(7814)] = 294094, + [SMALL_STATE(7815)] = 294164, + [SMALL_STATE(7816)] = 294234, + [SMALL_STATE(7817)] = 294304, + [SMALL_STATE(7818)] = 294374, + [SMALL_STATE(7819)] = 294444, + [SMALL_STATE(7820)] = 294514, + [SMALL_STATE(7821)] = 294584, + [SMALL_STATE(7822)] = 294642, + [SMALL_STATE(7823)] = 294712, + [SMALL_STATE(7824)] = 294782, + [SMALL_STATE(7825)] = 294852, + [SMALL_STATE(7826)] = 294922, + [SMALL_STATE(7827)] = 294992, + [SMALL_STATE(7828)] = 295062, + [SMALL_STATE(7829)] = 295132, + [SMALL_STATE(7830)] = 295202, + [SMALL_STATE(7831)] = 295272, + [SMALL_STATE(7832)] = 295342, + [SMALL_STATE(7833)] = 295394, + [SMALL_STATE(7834)] = 295458, + [SMALL_STATE(7835)] = 295528, + [SMALL_STATE(7836)] = 295598, + [SMALL_STATE(7837)] = 295668, + [SMALL_STATE(7838)] = 295738, + [SMALL_STATE(7839)] = 295808, + [SMALL_STATE(7840)] = 295878, + [SMALL_STATE(7841)] = 295942, + [SMALL_STATE(7842)] = 296012, + [SMALL_STATE(7843)] = 296076, + [SMALL_STATE(7844)] = 296146, + [SMALL_STATE(7845)] = 296216, + [SMALL_STATE(7846)] = 296286, + [SMALL_STATE(7847)] = 296356, + [SMALL_STATE(7848)] = 296420, + [SMALL_STATE(7849)] = 296484, + [SMALL_STATE(7850)] = 296548, + [SMALL_STATE(7851)] = 296618, + [SMALL_STATE(7852)] = 296688, + [SMALL_STATE(7853)] = 296758, + [SMALL_STATE(7854)] = 296828, + [SMALL_STATE(7855)] = 296898, + [SMALL_STATE(7856)] = 296968, + [SMALL_STATE(7857)] = 297038, + [SMALL_STATE(7858)] = 297108, + [SMALL_STATE(7859)] = 297166, + [SMALL_STATE(7860)] = 297236, + [SMALL_STATE(7861)] = 297306, + [SMALL_STATE(7862)] = 297376, + [SMALL_STATE(7863)] = 297446, + [SMALL_STATE(7864)] = 297504, + [SMALL_STATE(7865)] = 297562, + [SMALL_STATE(7866)] = 297632, + [SMALL_STATE(7867)] = 297690, + [SMALL_STATE(7868)] = 297760, + [SMALL_STATE(7869)] = 297830, + [SMALL_STATE(7870)] = 297900, + [SMALL_STATE(7871)] = 297970, + [SMALL_STATE(7872)] = 298040, + [SMALL_STATE(7873)] = 298110, + [SMALL_STATE(7874)] = 298180, + [SMALL_STATE(7875)] = 298250, + [SMALL_STATE(7876)] = 298320, + [SMALL_STATE(7877)] = 298390, + [SMALL_STATE(7878)] = 298460, + [SMALL_STATE(7879)] = 298530, + [SMALL_STATE(7880)] = 298600, + [SMALL_STATE(7881)] = 298670, + [SMALL_STATE(7882)] = 298740, + [SMALL_STATE(7883)] = 298810, + [SMALL_STATE(7884)] = 298880, + [SMALL_STATE(7885)] = 298950, + [SMALL_STATE(7886)] = 299020, + [SMALL_STATE(7887)] = 299090, + [SMALL_STATE(7888)] = 299160, + [SMALL_STATE(7889)] = 299230, + [SMALL_STATE(7890)] = 299300, + [SMALL_STATE(7891)] = 299370, + [SMALL_STATE(7892)] = 299440, + [SMALL_STATE(7893)] = 299510, + [SMALL_STATE(7894)] = 299580, + [SMALL_STATE(7895)] = 299650, + [SMALL_STATE(7896)] = 299720, + [SMALL_STATE(7897)] = 299790, + [SMALL_STATE(7898)] = 299860, + [SMALL_STATE(7899)] = 299930, + [SMALL_STATE(7900)] = 300000, + [SMALL_STATE(7901)] = 300070, + [SMALL_STATE(7902)] = 300144, + [SMALL_STATE(7903)] = 300214, + [SMALL_STATE(7904)] = 300284, + [SMALL_STATE(7905)] = 300354, + [SMALL_STATE(7906)] = 300424, + [SMALL_STATE(7907)] = 300494, + [SMALL_STATE(7908)] = 300564, + [SMALL_STATE(7909)] = 300627, + [SMALL_STATE(7910)] = 300702, + [SMALL_STATE(7911)] = 300765, + [SMALL_STATE(7912)] = 300828, + [SMALL_STATE(7913)] = 300903, + [SMALL_STATE(7914)] = 300966, + [SMALL_STATE(7915)] = 301029, + [SMALL_STATE(7916)] = 301092, + [SMALL_STATE(7917)] = 301155, + [SMALL_STATE(7918)] = 301218, + [SMALL_STATE(7919)] = 301293, + [SMALL_STATE(7920)] = 301368, + [SMALL_STATE(7921)] = 301443, + [SMALL_STATE(7922)] = 301518, + [SMALL_STATE(7923)] = 301581, + [SMALL_STATE(7924)] = 301624, + [SMALL_STATE(7925)] = 301699, + [SMALL_STATE(7926)] = 301774, + [SMALL_STATE(7927)] = 301849, + [SMALL_STATE(7928)] = 301912, + [SMALL_STATE(7929)] = 301987, + [SMALL_STATE(7930)] = 302050, + [SMALL_STATE(7931)] = 302125, + [SMALL_STATE(7932)] = 302200, + [SMALL_STATE(7933)] = 302263, + [SMALL_STATE(7934)] = 302326, + [SMALL_STATE(7935)] = 302401, + [SMALL_STATE(7936)] = 302444, + [SMALL_STATE(7937)] = 302507, + [SMALL_STATE(7938)] = 302582, + [SMALL_STATE(7939)] = 302645, + [SMALL_STATE(7940)] = 302688, + [SMALL_STATE(7941)] = 302751, + [SMALL_STATE(7942)] = 302814, + [SMALL_STATE(7943)] = 302889, + [SMALL_STATE(7944)] = 302964, + [SMALL_STATE(7945)] = 303027, + [SMALL_STATE(7946)] = 303090, + [SMALL_STATE(7947)] = 303153, + [SMALL_STATE(7948)] = 303228, + [SMALL_STATE(7949)] = 303291, + [SMALL_STATE(7950)] = 303366, + [SMALL_STATE(7951)] = 303409, + [SMALL_STATE(7952)] = 303472, + [SMALL_STATE(7953)] = 303535, + [SMALL_STATE(7954)] = 303598, + [SMALL_STATE(7955)] = 303673, + [SMALL_STATE(7956)] = 303710, + [SMALL_STATE(7957)] = 303785, + [SMALL_STATE(7958)] = 303848, + [SMALL_STATE(7959)] = 303911, + [SMALL_STATE(7960)] = 303974, + [SMALL_STATE(7961)] = 304037, + [SMALL_STATE(7962)] = 304100, + [SMALL_STATE(7963)] = 304163, + [SMALL_STATE(7964)] = 304238, + [SMALL_STATE(7965)] = 304301, + [SMALL_STATE(7966)] = 304376, + [SMALL_STATE(7967)] = 304451, + [SMALL_STATE(7968)] = 304514, + [SMALL_STATE(7969)] = 304577, + [SMALL_STATE(7970)] = 304640, + [SMALL_STATE(7971)] = 304703, + [SMALL_STATE(7972)] = 304778, + [SMALL_STATE(7973)] = 304853, + [SMALL_STATE(7974)] = 304916, + [SMALL_STATE(7975)] = 304979, + [SMALL_STATE(7976)] = 305054, + [SMALL_STATE(7977)] = 305129, + [SMALL_STATE(7978)] = 305192, + [SMALL_STATE(7979)] = 305255, + [SMALL_STATE(7980)] = 305318, + [SMALL_STATE(7981)] = 305381, + [SMALL_STATE(7982)] = 305444, + [SMALL_STATE(7983)] = 305507, + [SMALL_STATE(7984)] = 305570, + [SMALL_STATE(7985)] = 305633, + [SMALL_STATE(7986)] = 305696, + [SMALL_STATE(7987)] = 305764, + [SMALL_STATE(7988)] = 305800, + [SMALL_STATE(7989)] = 305874, + [SMALL_STATE(7990)] = 305936, + [SMALL_STATE(7991)] = 306004, + [SMALL_STATE(7992)] = 306066, + [SMALL_STATE(7993)] = 306120, + [SMALL_STATE(7994)] = 306188, + [SMALL_STATE(7995)] = 306250, + [SMALL_STATE(7996)] = 306324, + [SMALL_STATE(7997)] = 306392, + [SMALL_STATE(7998)] = 306466, + [SMALL_STATE(7999)] = 306534, + [SMALL_STATE(8000)] = 306573, + [SMALL_STATE(8001)] = 306604, + [SMALL_STATE(8002)] = 306663, + [SMALL_STATE(8003)] = 306722, + [SMALL_STATE(8004)] = 306753, + [SMALL_STATE(8005)] = 306800, + [SMALL_STATE(8006)] = 306835, + [SMALL_STATE(8007)] = 306866, + [SMALL_STATE(8008)] = 306925, + [SMALL_STATE(8009)] = 306984, + [SMALL_STATE(8010)] = 307043, + [SMALL_STATE(8011)] = 307102, + [SMALL_STATE(8012)] = 307161, + [SMALL_STATE(8013)] = 307220, + [SMALL_STATE(8014)] = 307259, + [SMALL_STATE(8015)] = 307318, + [SMALL_STATE(8016)] = 307349, + [SMALL_STATE(8017)] = 307380, + [SMALL_STATE(8018)] = 307411, + [SMALL_STATE(8019)] = 307442, + [SMALL_STATE(8020)] = 307501, + [SMALL_STATE(8021)] = 307536, + [SMALL_STATE(8022)] = 307595, + [SMALL_STATE(8023)] = 307626, + [SMALL_STATE(8024)] = 307657, + [SMALL_STATE(8025)] = 307716, + [SMALL_STATE(8026)] = 307747, + [SMALL_STATE(8027)] = 307778, + [SMALL_STATE(8028)] = 307837, + [SMALL_STATE(8029)] = 307896, + [SMALL_STATE(8030)] = 307955, + [SMALL_STATE(8031)] = 308014, + [SMALL_STATE(8032)] = 308045, + [SMALL_STATE(8033)] = 308084, + [SMALL_STATE(8034)] = 308115, + [SMALL_STATE(8035)] = 308148, + [SMALL_STATE(8036)] = 308187, + [SMALL_STATE(8037)] = 308218, + [SMALL_STATE(8038)] = 308249, + [SMALL_STATE(8039)] = 308288, + [SMALL_STATE(8040)] = 308347, + [SMALL_STATE(8041)] = 308378, + [SMALL_STATE(8042)] = 308437, + [SMALL_STATE(8043)] = 308496, + [SMALL_STATE(8044)] = 308531, + [SMALL_STATE(8045)] = 308590, + [SMALL_STATE(8046)] = 308649, + [SMALL_STATE(8047)] = 308688, + [SMALL_STATE(8048)] = 308747, + [SMALL_STATE(8049)] = 308806, + [SMALL_STATE(8050)] = 308837, + [SMALL_STATE(8051)] = 308876, + [SMALL_STATE(8052)] = 308915, + [SMALL_STATE(8053)] = 308974, + [SMALL_STATE(8054)] = 309033, + [SMALL_STATE(8055)] = 309072, + [SMALL_STATE(8056)] = 309131, + [SMALL_STATE(8057)] = 309166, + [SMALL_STATE(8058)] = 309205, + [SMALL_STATE(8059)] = 309236, + [SMALL_STATE(8060)] = 309267, + [SMALL_STATE(8061)] = 309326, + [SMALL_STATE(8062)] = 309357, + [SMALL_STATE(8063)] = 309416, + [SMALL_STATE(8064)] = 309458, + [SMALL_STATE(8065)] = 309512, + [SMALL_STATE(8066)] = 309566, + [SMALL_STATE(8067)] = 309608, + [SMALL_STATE(8068)] = 309650, + [SMALL_STATE(8069)] = 309692, + [SMALL_STATE(8070)] = 309734, + [SMALL_STATE(8071)] = 309776, + [SMALL_STATE(8072)] = 309824, + [SMALL_STATE(8073)] = 309854, + [SMALL_STATE(8074)] = 309896, + [SMALL_STATE(8075)] = 309930, + [SMALL_STATE(8076)] = 309972, + [SMALL_STATE(8077)] = 310023, + [SMALL_STATE(8078)] = 310076, + [SMALL_STATE(8079)] = 310131, + [SMALL_STATE(8080)] = 310184, + [SMALL_STATE(8081)] = 310225, + [SMALL_STATE(8082)] = 310266, + [SMALL_STATE(8083)] = 310327, + [SMALL_STATE(8084)] = 310378, + [SMALL_STATE(8085)] = 310429, + [SMALL_STATE(8086)] = 310480, + [SMALL_STATE(8087)] = 310531, + [SMALL_STATE(8088)] = 310572, + [SMALL_STATE(8089)] = 310623, + [SMALL_STATE(8090)] = 310674, + [SMALL_STATE(8091)] = 310727, + [SMALL_STATE(8092)] = 310780, + [SMALL_STATE(8093)] = 310833, + [SMALL_STATE(8094)] = 310886, + [SMALL_STATE(8095)] = 310937, + [SMALL_STATE(8096)] = 310988, + [SMALL_STATE(8097)] = 311049, + [SMALL_STATE(8098)] = 311078, + [SMALL_STATE(8099)] = 311129, + [SMALL_STATE(8100)] = 311182, + [SMALL_STATE(8101)] = 311243, + [SMALL_STATE(8102)] = 311296, + [SMALL_STATE(8103)] = 311325, + [SMALL_STATE(8104)] = 311376, + [SMALL_STATE(8105)] = 311409, + [SMALL_STATE(8106)] = 311460, + [SMALL_STATE(8107)] = 311511, + [SMALL_STATE(8108)] = 311554, + [SMALL_STATE(8109)] = 311615, + [SMALL_STATE(8110)] = 311666, + [SMALL_STATE(8111)] = 311717, + [SMALL_STATE(8112)] = 311768, + [SMALL_STATE(8113)] = 311797, + [SMALL_STATE(8114)] = 311848, + [SMALL_STATE(8115)] = 311881, + [SMALL_STATE(8116)] = 311934, + [SMALL_STATE(8117)] = 311963, + [SMALL_STATE(8118)] = 312016, + [SMALL_STATE(8119)] = 312059, + [SMALL_STATE(8120)] = 312110, + [SMALL_STATE(8121)] = 312161, + [SMALL_STATE(8122)] = 312222, + [SMALL_STATE(8123)] = 312277, + [SMALL_STATE(8124)] = 312328, + [SMALL_STATE(8125)] = 312369, + [SMALL_STATE(8126)] = 312410, + [SMALL_STATE(8127)] = 312451, + [SMALL_STATE(8128)] = 312492, + [SMALL_STATE(8129)] = 312553, + [SMALL_STATE(8130)] = 312606, + [SMALL_STATE(8131)] = 312657, + [SMALL_STATE(8132)] = 312712, + [SMALL_STATE(8133)] = 312753, + [SMALL_STATE(8134)] = 312784, + [SMALL_STATE(8135)] = 312837, + [SMALL_STATE(8136)] = 312888, + [SMALL_STATE(8137)] = 312921, + [SMALL_STATE(8138)] = 312964, + [SMALL_STATE(8139)] = 312993, + [SMALL_STATE(8140)] = 313044, + [SMALL_STATE(8141)] = 313097, + [SMALL_STATE(8142)] = 313148, + [SMALL_STATE(8143)] = 313199, + [SMALL_STATE(8144)] = 313250, + [SMALL_STATE(8145)] = 313301, + [SMALL_STATE(8146)] = 313356, + [SMALL_STATE(8147)] = 313417, + [SMALL_STATE(8148)] = 313470, + [SMALL_STATE(8149)] = 313523, + [SMALL_STATE(8150)] = 313568, + [SMALL_STATE(8151)] = 313619, + [SMALL_STATE(8152)] = 313659, + [SMALL_STATE(8153)] = 313699, + [SMALL_STATE(8154)] = 313739, + [SMALL_STATE(8155)] = 313789, + [SMALL_STATE(8156)] = 313817, + [SMALL_STATE(8157)] = 313857, + [SMALL_STATE(8158)] = 313907, + [SMALL_STATE(8159)] = 313947, + [SMALL_STATE(8160)] = 313983, + [SMALL_STATE(8161)] = 314023, + [SMALL_STATE(8162)] = 314063, + [SMALL_STATE(8163)] = 314113, + [SMALL_STATE(8164)] = 314153, + [SMALL_STATE(8165)] = 314193, + [SMALL_STATE(8166)] = 314243, + [SMALL_STATE(8167)] = 314293, + [SMALL_STATE(8168)] = 314333, + [SMALL_STATE(8169)] = 314373, + [SMALL_STATE(8170)] = 314423, + [SMALL_STATE(8171)] = 314463, + [SMALL_STATE(8172)] = 314513, + [SMALL_STATE(8173)] = 314553, + [SMALL_STATE(8174)] = 314593, + [SMALL_STATE(8175)] = 314639, + [SMALL_STATE(8176)] = 314689, + [SMALL_STATE(8177)] = 314729, + [SMALL_STATE(8178)] = 314769, + [SMALL_STATE(8179)] = 314809, + [SMALL_STATE(8180)] = 314853, + [SMALL_STATE(8181)] = 314893, + [SMALL_STATE(8182)] = 314945, + [SMALL_STATE(8183)] = 314985, + [SMALL_STATE(8184)] = 315025, + [SMALL_STATE(8185)] = 315069, + [SMALL_STATE(8186)] = 315117, + [SMALL_STATE(8187)] = 315157, + [SMALL_STATE(8188)] = 315197, + [SMALL_STATE(8189)] = 315247, + [SMALL_STATE(8190)] = 315297, + [SMALL_STATE(8191)] = 315337, + [SMALL_STATE(8192)] = 315377, + [SMALL_STATE(8193)] = 315417, + [SMALL_STATE(8194)] = 315463, + [SMALL_STATE(8195)] = 315513, + [SMALL_STATE(8196)] = 315559, + [SMALL_STATE(8197)] = 315609, + [SMALL_STATE(8198)] = 315659, + [SMALL_STATE(8199)] = 315687, + [SMALL_STATE(8200)] = 315727, + [SMALL_STATE(8201)] = 315767, + [SMALL_STATE(8202)] = 315795, + [SMALL_STATE(8203)] = 315823, + [SMALL_STATE(8204)] = 315863, + [SMALL_STATE(8205)] = 315903, + [SMALL_STATE(8206)] = 315943, + [SMALL_STATE(8207)] = 315975, + [SMALL_STATE(8208)] = 316003, + [SMALL_STATE(8209)] = 316053, + [SMALL_STATE(8210)] = 316093, + [SMALL_STATE(8211)] = 316127, + [SMALL_STATE(8212)] = 316155, + [SMALL_STATE(8213)] = 316183, + [SMALL_STATE(8214)] = 316233, + [SMALL_STATE(8215)] = 316283, + [SMALL_STATE(8216)] = 316323, + [SMALL_STATE(8217)] = 316363, + [SMALL_STATE(8218)] = 316403, + [SMALL_STATE(8219)] = 316449, + [SMALL_STATE(8220)] = 316489, + [SMALL_STATE(8221)] = 316529, + [SMALL_STATE(8222)] = 316557, + [SMALL_STATE(8223)] = 316589, + [SMALL_STATE(8224)] = 316641, + [SMALL_STATE(8225)] = 316681, + [SMALL_STATE(8226)] = 316731, + [SMALL_STATE(8227)] = 316771, + [SMALL_STATE(8228)] = 316811, + [SMALL_STATE(8229)] = 316851, + [SMALL_STATE(8230)] = 316903, + [SMALL_STATE(8231)] = 316931, + [SMALL_STATE(8232)] = 316959, + [SMALL_STATE(8233)] = 317001, + [SMALL_STATE(8234)] = 317051, + [SMALL_STATE(8235)] = 317091, + [SMALL_STATE(8236)] = 317131, + [SMALL_STATE(8237)] = 317183, + [SMALL_STATE(8238)] = 317223, + [SMALL_STATE(8239)] = 317275, + [SMALL_STATE(8240)] = 317325, + [SMALL_STATE(8241)] = 317365, + [SMALL_STATE(8242)] = 317398, + [SMALL_STATE(8243)] = 317425, + [SMALL_STATE(8244)] = 317452, + [SMALL_STATE(8245)] = 317499, + [SMALL_STATE(8246)] = 317546, + [SMALL_STATE(8247)] = 317591, + [SMALL_STATE(8248)] = 317640, + [SMALL_STATE(8249)] = 317691, + [SMALL_STATE(8250)] = 317738, + [SMALL_STATE(8251)] = 317765, + [SMALL_STATE(8252)] = 317802, + [SMALL_STATE(8253)] = 317849, + [SMALL_STATE(8254)] = 317876, + [SMALL_STATE(8255)] = 317903, + [SMALL_STATE(8256)] = 317952, + [SMALL_STATE(8257)] = 318003, + [SMALL_STATE(8258)] = 318050, + [SMALL_STATE(8259)] = 318077, + [SMALL_STATE(8260)] = 318128, + [SMALL_STATE(8261)] = 318155, + [SMALL_STATE(8262)] = 318182, + [SMALL_STATE(8263)] = 318209, + [SMALL_STATE(8264)] = 318256, + [SMALL_STATE(8265)] = 318283, + [SMALL_STATE(8266)] = 318334, + [SMALL_STATE(8267)] = 318371, + [SMALL_STATE(8268)] = 318418, + [SMALL_STATE(8269)] = 318451, + [SMALL_STATE(8270)] = 318498, + [SMALL_STATE(8271)] = 318529, + [SMALL_STATE(8272)] = 318576, + [SMALL_STATE(8273)] = 318621, + [SMALL_STATE(8274)] = 318666, + [SMALL_STATE(8275)] = 318715, + [SMALL_STATE(8276)] = 318766, + [SMALL_STATE(8277)] = 318799, + [SMALL_STATE(8278)] = 318826, + [SMALL_STATE(8279)] = 318869, + [SMALL_STATE(8280)] = 318920, + [SMALL_STATE(8281)] = 318971, + [SMALL_STATE(8282)] = 319022, + [SMALL_STATE(8283)] = 319073, + [SMALL_STATE(8284)] = 319124, + [SMALL_STATE(8285)] = 319175, + [SMALL_STATE(8286)] = 319226, + [SMALL_STATE(8287)] = 319271, + [SMALL_STATE(8288)] = 319316, + [SMALL_STATE(8289)] = 319361, + [SMALL_STATE(8290)] = 319408, + [SMALL_STATE(8291)] = 319459, + [SMALL_STATE(8292)] = 319504, + [SMALL_STATE(8293)] = 319551, + [SMALL_STATE(8294)] = 319596, + [SMALL_STATE(8295)] = 319651, + [SMALL_STATE(8296)] = 319682, + [SMALL_STATE(8297)] = 319709, + [SMALL_STATE(8298)] = 319736, + [SMALL_STATE(8299)] = 319763, + [SMALL_STATE(8300)] = 319814, + [SMALL_STATE(8301)] = 319865, + [SMALL_STATE(8302)] = 319892, + [SMALL_STATE(8303)] = 319937, + [SMALL_STATE(8304)] = 319982, + [SMALL_STATE(8305)] = 320033, + [SMALL_STATE(8306)] = 320078, + [SMALL_STATE(8307)] = 320105, + [SMALL_STATE(8308)] = 320156, + [SMALL_STATE(8309)] = 320205, + [SMALL_STATE(8310)] = 320256, + [SMALL_STATE(8311)] = 320305, + [SMALL_STATE(8312)] = 320352, + [SMALL_STATE(8313)] = 320379, + [SMALL_STATE(8314)] = 320406, + [SMALL_STATE(8315)] = 320433, + [SMALL_STATE(8316)] = 320462, + [SMALL_STATE(8317)] = 320489, + [SMALL_STATE(8318)] = 320540, + [SMALL_STATE(8319)] = 320567, + [SMALL_STATE(8320)] = 320612, + [SMALL_STATE(8321)] = 320663, + [SMALL_STATE(8322)] = 320706, + [SMALL_STATE(8323)] = 320747, + [SMALL_STATE(8324)] = 320786, + [SMALL_STATE(8325)] = 320823, + [SMALL_STATE(8326)] = 320874, + [SMALL_STATE(8327)] = 320909, + [SMALL_STATE(8328)] = 320942, + [SMALL_STATE(8329)] = 320993, + [SMALL_STATE(8330)] = 321038, + [SMALL_STATE(8331)] = 321069, + [SMALL_STATE(8332)] = 321114, + [SMALL_STATE(8333)] = 321165, + [SMALL_STATE(8334)] = 321192, + [SMALL_STATE(8335)] = 321247, + [SMALL_STATE(8336)] = 321298, + [SMALL_STATE(8337)] = 321331, + [SMALL_STATE(8338)] = 321378, + [SMALL_STATE(8339)] = 321429, + [SMALL_STATE(8340)] = 321466, + [SMALL_STATE(8341)] = 321513, + [SMALL_STATE(8342)] = 321542, + [SMALL_STATE(8343)] = 321591, + [SMALL_STATE(8344)] = 321628, + [SMALL_STATE(8345)] = 321675, + [SMALL_STATE(8346)] = 321726, + [SMALL_STATE(8347)] = 321777, + [SMALL_STATE(8348)] = 321822, + [SMALL_STATE(8349)] = 321867, + [SMALL_STATE(8350)] = 321894, + [SMALL_STATE(8351)] = 321921, + [SMALL_STATE(8352)] = 321948, + [SMALL_STATE(8353)] = 321999, + [SMALL_STATE(8354)] = 322026, + [SMALL_STATE(8355)] = 322053, + [SMALL_STATE(8356)] = 322098, + [SMALL_STATE(8357)] = 322143, + [SMALL_STATE(8358)] = 322188, + [SMALL_STATE(8359)] = 322215, + [SMALL_STATE(8360)] = 322262, + [SMALL_STATE(8361)] = 322313, + [SMALL_STATE(8362)] = 322340, + [SMALL_STATE(8363)] = 322367, + [SMALL_STATE(8364)] = 322394, + [SMALL_STATE(8365)] = 322431, + [SMALL_STATE(8366)] = 322478, + [SMALL_STATE(8367)] = 322525, + [SMALL_STATE(8368)] = 322555, + [SMALL_STATE(8369)] = 322581, + [SMALL_STATE(8370)] = 322607, + [SMALL_STATE(8371)] = 322633, + [SMALL_STATE(8372)] = 322683, + [SMALL_STATE(8373)] = 322721, + [SMALL_STATE(8374)] = 322759, + [SMALL_STATE(8375)] = 322793, + [SMALL_STATE(8376)] = 322843, + [SMALL_STATE(8377)] = 322877, + [SMALL_STATE(8378)] = 322927, + [SMALL_STATE(8379)] = 322953, + [SMALL_STATE(8380)] = 322987, + [SMALL_STATE(8381)] = 323021, + [SMALL_STATE(8382)] = 323051, + [SMALL_STATE(8383)] = 323085, + [SMALL_STATE(8384)] = 323139, + [SMALL_STATE(8385)] = 323173, + [SMALL_STATE(8386)] = 323207, + [SMALL_STATE(8387)] = 323241, + [SMALL_STATE(8388)] = 323275, + [SMALL_STATE(8389)] = 323325, + [SMALL_STATE(8390)] = 323377, + [SMALL_STATE(8391)] = 323431, + [SMALL_STATE(8392)] = 323481, + [SMALL_STATE(8393)] = 323533, + [SMALL_STATE(8394)] = 323581, + [SMALL_STATE(8395)] = 323633, + [SMALL_STATE(8396)] = 323659, + [SMALL_STATE(8397)] = 323693, + [SMALL_STATE(8398)] = 323719, + [SMALL_STATE(8399)] = 323753, + [SMALL_STATE(8400)] = 323779, + [SMALL_STATE(8401)] = 323827, + [SMALL_STATE(8402)] = 323861, + [SMALL_STATE(8403)] = 323895, + [SMALL_STATE(8404)] = 323929, + [SMALL_STATE(8405)] = 323965, + [SMALL_STATE(8406)] = 324003, + [SMALL_STATE(8407)] = 324039, + [SMALL_STATE(8408)] = 324075, + [SMALL_STATE(8409)] = 324109, + [SMALL_STATE(8410)] = 324163, + [SMALL_STATE(8411)] = 324201, + [SMALL_STATE(8412)] = 324239, + [SMALL_STATE(8413)] = 324271, + [SMALL_STATE(8414)] = 324297, + [SMALL_STATE(8415)] = 324323, + [SMALL_STATE(8416)] = 324349, + [SMALL_STATE(8417)] = 324399, + [SMALL_STATE(8418)] = 324429, + [SMALL_STATE(8419)] = 324455, + [SMALL_STATE(8420)] = 324509, + [SMALL_STATE(8421)] = 324535, + [SMALL_STATE(8422)] = 324561, + [SMALL_STATE(8423)] = 324587, + [SMALL_STATE(8424)] = 324613, + [SMALL_STATE(8425)] = 324639, + [SMALL_STATE(8426)] = 324667, + [SMALL_STATE(8427)] = 324693, + [SMALL_STATE(8428)] = 324719, + [SMALL_STATE(8429)] = 324753, + [SMALL_STATE(8430)] = 324791, + [SMALL_STATE(8431)] = 324827, + [SMALL_STATE(8432)] = 324857, + [SMALL_STATE(8433)] = 324909, + [SMALL_STATE(8434)] = 324951, + [SMALL_STATE(8435)] = 324989, + [SMALL_STATE(8436)] = 325027, + [SMALL_STATE(8437)] = 325057, + [SMALL_STATE(8438)] = 325109, + [SMALL_STATE(8439)] = 325163, + [SMALL_STATE(8440)] = 325217, + [SMALL_STATE(8441)] = 325251, + [SMALL_STATE(8442)] = 325285, + [SMALL_STATE(8443)] = 325339, + [SMALL_STATE(8444)] = 325393, + [SMALL_STATE(8445)] = 325423, + [SMALL_STATE(8446)] = 325469, + [SMALL_STATE(8447)] = 325505, + [SMALL_STATE(8448)] = 325531, + [SMALL_STATE(8449)] = 325572, + [SMALL_STATE(8450)] = 325599, + [SMALL_STATE(8451)] = 325636, + [SMALL_STATE(8452)] = 325683, + [SMALL_STATE(8453)] = 325730, + [SMALL_STATE(8454)] = 325777, + [SMALL_STATE(8455)] = 325824, + [SMALL_STATE(8456)] = 325861, + [SMALL_STATE(8457)] = 325908, + [SMALL_STATE(8458)] = 325951, + [SMALL_STATE(8459)] = 325992, + [SMALL_STATE(8460)] = 326039, + [SMALL_STATE(8461)] = 326070, + [SMALL_STATE(8462)] = 326117, + [SMALL_STATE(8463)] = 326158, + [SMALL_STATE(8464)] = 326205, + [SMALL_STATE(8465)] = 326252, + [SMALL_STATE(8466)] = 326299, + [SMALL_STATE(8467)] = 326346, + [SMALL_STATE(8468)] = 326379, + [SMALL_STATE(8469)] = 326422, + [SMALL_STATE(8470)] = 326469, + [SMALL_STATE(8471)] = 326506, + [SMALL_STATE(8472)] = 326543, + [SMALL_STATE(8473)] = 326580, + [SMALL_STATE(8474)] = 326609, + [SMALL_STATE(8475)] = 326652, + [SMALL_STATE(8476)] = 326699, + [SMALL_STATE(8477)] = 326730, + [SMALL_STATE(8478)] = 326763, + [SMALL_STATE(8479)] = 326810, + [SMALL_STATE(8480)] = 326857, + [SMALL_STATE(8481)] = 326894, + [SMALL_STATE(8482)] = 326941, + [SMALL_STATE(8483)] = 326974, + [SMALL_STATE(8484)] = 327021, + [SMALL_STATE(8485)] = 327068, + [SMALL_STATE(8486)] = 327101, + [SMALL_STATE(8487)] = 327148, + [SMALL_STATE(8488)] = 327181, + [SMALL_STATE(8489)] = 327228, + [SMALL_STATE(8490)] = 327275, + [SMALL_STATE(8491)] = 327318, + [SMALL_STATE(8492)] = 327355, + [SMALL_STATE(8493)] = 327402, + [SMALL_STATE(8494)] = 327449, + [SMALL_STATE(8495)] = 327482, + [SMALL_STATE(8496)] = 327515, + [SMALL_STATE(8497)] = 327548, + [SMALL_STATE(8498)] = 327585, + [SMALL_STATE(8499)] = 327632, + [SMALL_STATE(8500)] = 327665, + [SMALL_STATE(8501)] = 327712, + [SMALL_STATE(8502)] = 327743, + [SMALL_STATE(8503)] = 327768, + [SMALL_STATE(8504)] = 327815, + [SMALL_STATE(8505)] = 327862, + [SMALL_STATE(8506)] = 327909, + [SMALL_STATE(8507)] = 327956, + [SMALL_STATE(8508)] = 328003, + [SMALL_STATE(8509)] = 328047, + [SMALL_STATE(8510)] = 328071, + [SMALL_STATE(8511)] = 328105, + [SMALL_STATE(8512)] = 328137, + [SMALL_STATE(8513)] = 328171, + [SMALL_STATE(8514)] = 328203, + [SMALL_STATE(8515)] = 328227, + [SMALL_STATE(8516)] = 328261, + [SMALL_STATE(8517)] = 328305, + [SMALL_STATE(8518)] = 328337, + [SMALL_STATE(8519)] = 328371, + [SMALL_STATE(8520)] = 328403, + [SMALL_STATE(8521)] = 328427, + [SMALL_STATE(8522)] = 328451, + [SMALL_STATE(8523)] = 328475, + [SMALL_STATE(8524)] = 328511, + [SMALL_STATE(8525)] = 328535, + [SMALL_STATE(8526)] = 328579, + [SMALL_STATE(8527)] = 328611, + [SMALL_STATE(8528)] = 328635, + [SMALL_STATE(8529)] = 328671, + [SMALL_STATE(8530)] = 328695, + [SMALL_STATE(8531)] = 328731, + [SMALL_STATE(8532)] = 328755, + [SMALL_STATE(8533)] = 328799, + [SMALL_STATE(8534)] = 328843, + [SMALL_STATE(8535)] = 328887, + [SMALL_STATE(8536)] = 328931, + [SMALL_STATE(8537)] = 328975, + [SMALL_STATE(8538)] = 328999, + [SMALL_STATE(8539)] = 329043, + [SMALL_STATE(8540)] = 329087, + [SMALL_STATE(8541)] = 329111, + [SMALL_STATE(8542)] = 329147, + [SMALL_STATE(8543)] = 329187, + [SMALL_STATE(8544)] = 329231, + [SMALL_STATE(8545)] = 329255, + [SMALL_STATE(8546)] = 329299, + [SMALL_STATE(8547)] = 329323, + [SMALL_STATE(8548)] = 329347, + [SMALL_STATE(8549)] = 329383, + [SMALL_STATE(8550)] = 329407, + [SMALL_STATE(8551)] = 329431, + [SMALL_STATE(8552)] = 329463, + [SMALL_STATE(8553)] = 329487, + [SMALL_STATE(8554)] = 329511, + [SMALL_STATE(8555)] = 329535, + [SMALL_STATE(8556)] = 329559, + [SMALL_STATE(8557)] = 329583, + [SMALL_STATE(8558)] = 329607, + [SMALL_STATE(8559)] = 329631, + [SMALL_STATE(8560)] = 329665, + [SMALL_STATE(8561)] = 329689, + [SMALL_STATE(8562)] = 329713, + [SMALL_STATE(8563)] = 329757, + [SMALL_STATE(8564)] = 329789, + [SMALL_STATE(8565)] = 329813, + [SMALL_STATE(8566)] = 329845, + [SMALL_STATE(8567)] = 329889, + [SMALL_STATE(8568)] = 329913, + [SMALL_STATE(8569)] = 329937, + [SMALL_STATE(8570)] = 329963, + [SMALL_STATE(8571)] = 329987, + [SMALL_STATE(8572)] = 330011, + [SMALL_STATE(8573)] = 330035, + [SMALL_STATE(8574)] = 330059, + [SMALL_STATE(8575)] = 330083, + [SMALL_STATE(8576)] = 330107, + [SMALL_STATE(8577)] = 330131, + [SMALL_STATE(8578)] = 330155, + [SMALL_STATE(8579)] = 330201, + [SMALL_STATE(8580)] = 330225, + [SMALL_STATE(8581)] = 330269, + [SMALL_STATE(8582)] = 330313, + [SMALL_STATE(8583)] = 330337, + [SMALL_STATE(8584)] = 330371, + [SMALL_STATE(8585)] = 330395, + [SMALL_STATE(8586)] = 330427, + [SMALL_STATE(8587)] = 330451, + [SMALL_STATE(8588)] = 330485, + [SMALL_STATE(8589)] = 330517, + [SMALL_STATE(8590)] = 330541, + [SMALL_STATE(8591)] = 330565, + [SMALL_STATE(8592)] = 330609, + [SMALL_STATE(8593)] = 330633, + [SMALL_STATE(8594)] = 330667, + [SMALL_STATE(8595)] = 330691, + [SMALL_STATE(8596)] = 330715, + [SMALL_STATE(8597)] = 330739, + [SMALL_STATE(8598)] = 330767, + [SMALL_STATE(8599)] = 330791, + [SMALL_STATE(8600)] = 330833, + [SMALL_STATE(8601)] = 330877, + [SMALL_STATE(8602)] = 330901, + [SMALL_STATE(8603)] = 330925, + [SMALL_STATE(8604)] = 330954, + [SMALL_STATE(8605)] = 330989, + [SMALL_STATE(8606)] = 331030, + [SMALL_STATE(8607)] = 331065, + [SMALL_STATE(8608)] = 331100, + [SMALL_STATE(8609)] = 331129, + [SMALL_STATE(8610)] = 331164, + [SMALL_STATE(8611)] = 331193, + [SMALL_STATE(8612)] = 331222, + [SMALL_STATE(8613)] = 331257, + [SMALL_STATE(8614)] = 331296, + [SMALL_STATE(8615)] = 331325, + [SMALL_STATE(8616)] = 331354, + [SMALL_STATE(8617)] = 331383, + [SMALL_STATE(8618)] = 331418, + [SMALL_STATE(8619)] = 331453, + [SMALL_STATE(8620)] = 331494, + [SMALL_STATE(8621)] = 331523, + [SMALL_STATE(8622)] = 331552, + [SMALL_STATE(8623)] = 331581, + [SMALL_STATE(8624)] = 331610, + [SMALL_STATE(8625)] = 331639, + [SMALL_STATE(8626)] = 331674, + [SMALL_STATE(8627)] = 331707, + [SMALL_STATE(8628)] = 331740, + [SMALL_STATE(8629)] = 331779, + [SMALL_STATE(8630)] = 331812, + [SMALL_STATE(8631)] = 331845, + [SMALL_STATE(8632)] = 331878, + [SMALL_STATE(8633)] = 331911, + [SMALL_STATE(8634)] = 331940, + [SMALL_STATE(8635)] = 331969, + [SMALL_STATE(8636)] = 331998, + [SMALL_STATE(8637)] = 332033, + [SMALL_STATE(8638)] = 332072, + [SMALL_STATE(8639)] = 332107, + [SMALL_STATE(8640)] = 332136, + [SMALL_STATE(8641)] = 332171, + [SMALL_STATE(8642)] = 332206, + [SMALL_STATE(8643)] = 332241, + [SMALL_STATE(8644)] = 332276, + [SMALL_STATE(8645)] = 332305, + [SMALL_STATE(8646)] = 332334, + [SMALL_STATE(8647)] = 332377, + [SMALL_STATE(8648)] = 332406, + [SMALL_STATE(8649)] = 332435, + [SMALL_STATE(8650)] = 332476, + [SMALL_STATE(8651)] = 332505, + [SMALL_STATE(8652)] = 332534, + [SMALL_STATE(8653)] = 332563, + [SMALL_STATE(8654)] = 332592, + [SMALL_STATE(8655)] = 332621, + [SMALL_STATE(8656)] = 332650, + [SMALL_STATE(8657)] = 332677, + [SMALL_STATE(8658)] = 332706, + [SMALL_STATE(8659)] = 332745, + [SMALL_STATE(8660)] = 332778, + [SMALL_STATE(8661)] = 332819, + [SMALL_STATE(8662)] = 332852, + [SMALL_STATE(8663)] = 332887, + [SMALL_STATE(8664)] = 332916, + [SMALL_STATE(8665)] = 332955, + [SMALL_STATE(8666)] = 332990, + [SMALL_STATE(8667)] = 333025, + [SMALL_STATE(8668)] = 333060, + [SMALL_STATE(8669)] = 333095, + [SMALL_STATE(8670)] = 333130, + [SMALL_STATE(8671)] = 333165, + [SMALL_STATE(8672)] = 333205, + [SMALL_STATE(8673)] = 333227, + [SMALL_STATE(8674)] = 333265, + [SMALL_STATE(8675)] = 333303, + [SMALL_STATE(8676)] = 333345, + [SMALL_STATE(8677)] = 333387, + [SMALL_STATE(8678)] = 333425, + [SMALL_STATE(8679)] = 333451, + [SMALL_STATE(8680)] = 333477, + [SMALL_STATE(8681)] = 333501, + [SMALL_STATE(8682)] = 333541, + [SMALL_STATE(8683)] = 333583, + [SMALL_STATE(8684)] = 333615, + [SMALL_STATE(8685)] = 333655, + [SMALL_STATE(8686)] = 333697, + [SMALL_STATE(8687)] = 333739, + [SMALL_STATE(8688)] = 333781, + [SMALL_STATE(8689)] = 333811, + [SMALL_STATE(8690)] = 333849, + [SMALL_STATE(8691)] = 333889, + [SMALL_STATE(8692)] = 333931, + [SMALL_STATE(8693)] = 333971, + [SMALL_STATE(8694)] = 333993, + [SMALL_STATE(8695)] = 334035, + [SMALL_STATE(8696)] = 334077, + [SMALL_STATE(8697)] = 334115, + [SMALL_STATE(8698)] = 334137, + [SMALL_STATE(8699)] = 334175, + [SMALL_STATE(8700)] = 334197, + [SMALL_STATE(8701)] = 334239, + [SMALL_STATE(8702)] = 334281, + [SMALL_STATE(8703)] = 334323, + [SMALL_STATE(8704)] = 334363, + [SMALL_STATE(8705)] = 334391, + [SMALL_STATE(8706)] = 334433, + [SMALL_STATE(8707)] = 334473, + [SMALL_STATE(8708)] = 334515, + [SMALL_STATE(8709)] = 334553, + [SMALL_STATE(8710)] = 334581, + [SMALL_STATE(8711)] = 334623, + [SMALL_STATE(8712)] = 334665, + [SMALL_STATE(8713)] = 334697, + [SMALL_STATE(8714)] = 334727, + [SMALL_STATE(8715)] = 334759, + [SMALL_STATE(8716)] = 334789, + [SMALL_STATE(8717)] = 334831, + [SMALL_STATE(8718)] = 334863, + [SMALL_STATE(8719)] = 334893, + [SMALL_STATE(8720)] = 334917, + [SMALL_STATE(8721)] = 334955, + [SMALL_STATE(8722)] = 334995, + [SMALL_STATE(8723)] = 335023, + [SMALL_STATE(8724)] = 335051, + [SMALL_STATE(8725)] = 335083, + [SMALL_STATE(8726)] = 335113, + [SMALL_STATE(8727)] = 335145, + [SMALL_STATE(8728)] = 335185, + [SMALL_STATE(8729)] = 335225, + [SMALL_STATE(8730)] = 335263, + [SMALL_STATE(8731)] = 335293, + [SMALL_STATE(8732)] = 335333, + [SMALL_STATE(8733)] = 335361, + [SMALL_STATE(8734)] = 335399, + [SMALL_STATE(8735)] = 335437, + [SMALL_STATE(8736)] = 335467, + [SMALL_STATE(8737)] = 335497, + [SMALL_STATE(8738)] = 335529, + [SMALL_STATE(8739)] = 335571, + [SMALL_STATE(8740)] = 335613, + [SMALL_STATE(8741)] = 335653, + [SMALL_STATE(8742)] = 335693, + [SMALL_STATE(8743)] = 335735, + [SMALL_STATE(8744)] = 335767, + [SMALL_STATE(8745)] = 335797, + [SMALL_STATE(8746)] = 335839, + [SMALL_STATE(8747)] = 335881, + [SMALL_STATE(8748)] = 335921, + [SMALL_STATE(8749)] = 335961, + [SMALL_STATE(8750)] = 335991, + [SMALL_STATE(8751)] = 336019, + [SMALL_STATE(8752)] = 336059, + [SMALL_STATE(8753)] = 336097, + [SMALL_STATE(8754)] = 336139, + [SMALL_STATE(8755)] = 336181, + [SMALL_STATE(8756)] = 336223, + [SMALL_STATE(8757)] = 336265, + [SMALL_STATE(8758)] = 336307, + [SMALL_STATE(8759)] = 336335, + [SMALL_STATE(8760)] = 336373, + [SMALL_STATE(8761)] = 336395, + [SMALL_STATE(8762)] = 336433, + [SMALL_STATE(8763)] = 336475, + [SMALL_STATE(8764)] = 336517, + [SMALL_STATE(8765)] = 336545, + [SMALL_STATE(8766)] = 336571, + [SMALL_STATE(8767)] = 336604, + [SMALL_STATE(8768)] = 336639, + [SMALL_STATE(8769)] = 336670, + [SMALL_STATE(8770)] = 336703, + [SMALL_STATE(8771)] = 336728, + [SMALL_STATE(8772)] = 336763, + [SMALL_STATE(8773)] = 336798, + [SMALL_STATE(8774)] = 336831, + [SMALL_STATE(8775)] = 336866, + [SMALL_STATE(8776)] = 336901, + [SMALL_STATE(8777)] = 336936, + [SMALL_STATE(8778)] = 336965, + [SMALL_STATE(8779)] = 336998, + [SMALL_STATE(8780)] = 337031, + [SMALL_STATE(8781)] = 337064, + [SMALL_STATE(8782)] = 337099, + [SMALL_STATE(8783)] = 337132, + [SMALL_STATE(8784)] = 337167, + [SMALL_STATE(8785)] = 337202, + [SMALL_STATE(8786)] = 337233, + [SMALL_STATE(8787)] = 337266, + [SMALL_STATE(8788)] = 337295, + [SMALL_STATE(8789)] = 337328, + [SMALL_STATE(8790)] = 337361, + [SMALL_STATE(8791)] = 337396, + [SMALL_STATE(8792)] = 337425, + [SMALL_STATE(8793)] = 337462, + [SMALL_STATE(8794)] = 337495, + [SMALL_STATE(8795)] = 337526, + [SMALL_STATE(8796)] = 337559, + [SMALL_STATE(8797)] = 337592, + [SMALL_STATE(8798)] = 337627, + [SMALL_STATE(8799)] = 337662, + [SMALL_STATE(8800)] = 337695, + [SMALL_STATE(8801)] = 337724, + [SMALL_STATE(8802)] = 337759, + [SMALL_STATE(8803)] = 337796, + [SMALL_STATE(8804)] = 337825, + [SMALL_STATE(8805)] = 337856, + [SMALL_STATE(8806)] = 337889, + [SMALL_STATE(8807)] = 337916, + [SMALL_STATE(8808)] = 337941, + [SMALL_STATE(8809)] = 337974, + [SMALL_STATE(8810)] = 338009, + [SMALL_STATE(8811)] = 338044, + [SMALL_STATE(8812)] = 338079, + [SMALL_STATE(8813)] = 338112, + [SMALL_STATE(8814)] = 338145, + [SMALL_STATE(8815)] = 338174, + [SMALL_STATE(8816)] = 338207, + [SMALL_STATE(8817)] = 338240, + [SMALL_STATE(8818)] = 338273, + [SMALL_STATE(8819)] = 338306, + [SMALL_STATE(8820)] = 338339, + [SMALL_STATE(8821)] = 338368, + [SMALL_STATE(8822)] = 338389, + [SMALL_STATE(8823)] = 338424, + [SMALL_STATE(8824)] = 338457, + [SMALL_STATE(8825)] = 338490, + [SMALL_STATE(8826)] = 338525, + [SMALL_STATE(8827)] = 338556, + [SMALL_STATE(8828)] = 338591, + [SMALL_STATE(8829)] = 338620, + [SMALL_STATE(8830)] = 338653, + [SMALL_STATE(8831)] = 338688, + [SMALL_STATE(8832)] = 338719, + [SMALL_STATE(8833)] = 338746, + [SMALL_STATE(8834)] = 338779, + [SMALL_STATE(8835)] = 338801, + [SMALL_STATE(8836)] = 338827, + [SMALL_STATE(8837)] = 338847, + [SMALL_STATE(8838)] = 338867, + [SMALL_STATE(8839)] = 338893, + [SMALL_STATE(8840)] = 338913, + [SMALL_STATE(8841)] = 338933, + [SMALL_STATE(8842)] = 338959, + [SMALL_STATE(8843)] = 338979, + [SMALL_STATE(8844)] = 339009, + [SMALL_STATE(8845)] = 339029, + [SMALL_STATE(8846)] = 339059, + [SMALL_STATE(8847)] = 339085, + [SMALL_STATE(8848)] = 339105, + [SMALL_STATE(8849)] = 339141, + [SMALL_STATE(8850)] = 339167, + [SMALL_STATE(8851)] = 339189, + [SMALL_STATE(8852)] = 339219, + [SMALL_STATE(8853)] = 339245, + [SMALL_STATE(8854)] = 339275, + [SMALL_STATE(8855)] = 339295, + [SMALL_STATE(8856)] = 339315, + [SMALL_STATE(8857)] = 339335, + [SMALL_STATE(8858)] = 339361, + [SMALL_STATE(8859)] = 339387, + [SMALL_STATE(8860)] = 339411, + [SMALL_STATE(8861)] = 339434, + [SMALL_STATE(8862)] = 339457, + [SMALL_STATE(8863)] = 339476, + [SMALL_STATE(8864)] = 339495, + [SMALL_STATE(8865)] = 339514, + [SMALL_STATE(8866)] = 339533, + [SMALL_STATE(8867)] = 339550, + [SMALL_STATE(8868)] = 339575, + [SMALL_STATE(8869)] = 339610, + [SMALL_STATE(8870)] = 339633, + [SMALL_STATE(8871)] = 339664, + [SMALL_STATE(8872)] = 339693, + [SMALL_STATE(8873)] = 339712, + [SMALL_STATE(8874)] = 339747, + [SMALL_STATE(8875)] = 339766, + [SMALL_STATE(8876)] = 339785, + [SMALL_STATE(8877)] = 339808, + [SMALL_STATE(8878)] = 339843, + [SMALL_STATE(8879)] = 339866, + [SMALL_STATE(8880)] = 339901, + [SMALL_STATE(8881)] = 339936, + [SMALL_STATE(8882)] = 339959, + [SMALL_STATE(8883)] = 339988, + [SMALL_STATE(8884)] = 340005, + [SMALL_STATE(8885)] = 340030, + [SMALL_STATE(8886)] = 340055, + [SMALL_STATE(8887)] = 340080, + [SMALL_STATE(8888)] = 340105, + [SMALL_STATE(8889)] = 340136, + [SMALL_STATE(8890)] = 340171, + [SMALL_STATE(8891)] = 340202, + [SMALL_STATE(8892)] = 340227, + [SMALL_STATE(8893)] = 340256, + [SMALL_STATE(8894)] = 340285, + [SMALL_STATE(8895)] = 340316, + [SMALL_STATE(8896)] = 340341, + [SMALL_STATE(8897)] = 340370, + [SMALL_STATE(8898)] = 340401, + [SMALL_STATE(8899)] = 340430, + [SMALL_STATE(8900)] = 340457, + [SMALL_STATE(8901)] = 340488, + [SMALL_STATE(8902)] = 340517, + [SMALL_STATE(8903)] = 340540, + [SMALL_STATE(8904)] = 340575, + [SMALL_STATE(8905)] = 340598, + [SMALL_STATE(8906)] = 340625, + [SMALL_STATE(8907)] = 340652, + [SMALL_STATE(8908)] = 340679, + [SMALL_STATE(8909)] = 340696, + [SMALL_STATE(8910)] = 340721, + [SMALL_STATE(8911)] = 340744, + [SMALL_STATE(8912)] = 340767, + [SMALL_STATE(8913)] = 340790, + [SMALL_STATE(8914)] = 340819, + [SMALL_STATE(8915)] = 340846, + [SMALL_STATE(8916)] = 340873, + [SMALL_STATE(8917)] = 340904, + [SMALL_STATE(8918)] = 340939, + [SMALL_STATE(8919)] = 340962, + [SMALL_STATE(8920)] = 340985, + [SMALL_STATE(8921)] = 341012, + [SMALL_STATE(8922)] = 341047, + [SMALL_STATE(8923)] = 341074, + [SMALL_STATE(8924)] = 341105, + [SMALL_STATE(8925)] = 341134, + [SMALL_STATE(8926)] = 341151, + [SMALL_STATE(8927)] = 341178, + [SMALL_STATE(8928)] = 341205, + [SMALL_STATE(8929)] = 341228, + [SMALL_STATE(8930)] = 341263, + [SMALL_STATE(8931)] = 341292, + [SMALL_STATE(8932)] = 341327, + [SMALL_STATE(8933)] = 341344, + [SMALL_STATE(8934)] = 341371, + [SMALL_STATE(8935)] = 341406, + [SMALL_STATE(8936)] = 341441, + [SMALL_STATE(8937)] = 341466, + [SMALL_STATE(8938)] = 341495, + [SMALL_STATE(8939)] = 341522, + [SMALL_STATE(8940)] = 341549, + [SMALL_STATE(8941)] = 341572, + [SMALL_STATE(8942)] = 341605, + [SMALL_STATE(8943)] = 341632, + [SMALL_STATE(8944)] = 341655, + [SMALL_STATE(8945)] = 341682, + [SMALL_STATE(8946)] = 341717, + [SMALL_STATE(8947)] = 341744, + [SMALL_STATE(8948)] = 341766, + [SMALL_STATE(8949)] = 341788, + [SMALL_STATE(8950)] = 341812, + [SMALL_STATE(8951)] = 341836, + [SMALL_STATE(8952)] = 341860, + [SMALL_STATE(8953)] = 341882, + [SMALL_STATE(8954)] = 341908, + [SMALL_STATE(8955)] = 341934, + [SMALL_STATE(8956)] = 341960, + [SMALL_STATE(8957)] = 341976, + [SMALL_STATE(8958)] = 342000, + [SMALL_STATE(8959)] = 342024, + [SMALL_STATE(8960)] = 342048, + [SMALL_STATE(8961)] = 342072, + [SMALL_STATE(8962)] = 342096, + [SMALL_STATE(8963)] = 342120, + [SMALL_STATE(8964)] = 342144, + [SMALL_STATE(8965)] = 342168, + [SMALL_STATE(8966)] = 342190, + [SMALL_STATE(8967)] = 342218, + [SMALL_STATE(8968)] = 342240, + [SMALL_STATE(8969)] = 342262, + [SMALL_STATE(8970)] = 342294, + [SMALL_STATE(8971)] = 342316, + [SMALL_STATE(8972)] = 342340, + [SMALL_STATE(8973)] = 342364, + [SMALL_STATE(8974)] = 342386, + [SMALL_STATE(8975)] = 342412, + [SMALL_STATE(8976)] = 342442, + [SMALL_STATE(8977)] = 342464, + [SMALL_STATE(8978)] = 342486, + [SMALL_STATE(8979)] = 342508, + [SMALL_STATE(8980)] = 342530, + [SMALL_STATE(8981)] = 342554, + [SMALL_STATE(8982)] = 342578, + [SMALL_STATE(8983)] = 342608, + [SMALL_STATE(8984)] = 342625, + [SMALL_STATE(8985)] = 342648, + [SMALL_STATE(8986)] = 342679, + [SMALL_STATE(8987)] = 342710, + [SMALL_STATE(8988)] = 342733, + [SMALL_STATE(8989)] = 342754, + [SMALL_STATE(8990)] = 342777, + [SMALL_STATE(8991)] = 342808, + [SMALL_STATE(8992)] = 342839, + [SMALL_STATE(8993)] = 342862, + [SMALL_STATE(8994)] = 342893, + [SMALL_STATE(8995)] = 342916, + [SMALL_STATE(8996)] = 342937, + [SMALL_STATE(8997)] = 342966, + [SMALL_STATE(8998)] = 342987, + [SMALL_STATE(8999)] = 343010, + [SMALL_STATE(9000)] = 343041, + [SMALL_STATE(9001)] = 343072, + [SMALL_STATE(9002)] = 343101, + [SMALL_STATE(9003)] = 343122, + [SMALL_STATE(9004)] = 343145, + [SMALL_STATE(9005)] = 343162, + [SMALL_STATE(9006)] = 343193, + [SMALL_STATE(9007)] = 343216, + [SMALL_STATE(9008)] = 343236, + [SMALL_STATE(9009)] = 343262, + [SMALL_STATE(9010)] = 343288, + [SMALL_STATE(9011)] = 343314, + [SMALL_STATE(9012)] = 343342, + [SMALL_STATE(9013)] = 343368, + [SMALL_STATE(9014)] = 343394, + [SMALL_STATE(9015)] = 343420, + [SMALL_STATE(9016)] = 343440, + [SMALL_STATE(9017)] = 343468, + [SMALL_STATE(9018)] = 343496, + [SMALL_STATE(9019)] = 343522, + [SMALL_STATE(9020)] = 343544, + [SMALL_STATE(9021)] = 343570, + [SMALL_STATE(9022)] = 343590, + [SMALL_STATE(9023)] = 343618, + [SMALL_STATE(9024)] = 343642, + [SMALL_STATE(9025)] = 343670, + [SMALL_STATE(9026)] = 343696, + [SMALL_STATE(9027)] = 343722, + [SMALL_STATE(9028)] = 343748, + [SMALL_STATE(9029)] = 343772, + [SMALL_STATE(9030)] = 343798, + [SMALL_STATE(9031)] = 343816, + [SMALL_STATE(9032)] = 343842, + [SMALL_STATE(9033)] = 343870, + [SMALL_STATE(9034)] = 343896, + [SMALL_STATE(9035)] = 343922, + [SMALL_STATE(9036)] = 343948, + [SMALL_STATE(9037)] = 343974, + [SMALL_STATE(9038)] = 343998, + [SMALL_STATE(9039)] = 344024, + [SMALL_STATE(9040)] = 344052, + [SMALL_STATE(9041)] = 344078, + [SMALL_STATE(9042)] = 344100, + [SMALL_STATE(9043)] = 344122, + [SMALL_STATE(9044)] = 344148, + [SMALL_STATE(9045)] = 344174, + [SMALL_STATE(9046)] = 344200, + [SMALL_STATE(9047)] = 344228, + [SMALL_STATE(9048)] = 344254, + [SMALL_STATE(9049)] = 344280, + [SMALL_STATE(9050)] = 344306, + [SMALL_STATE(9051)] = 344332, + [SMALL_STATE(9052)] = 344358, + [SMALL_STATE(9053)] = 344382, + [SMALL_STATE(9054)] = 344406, + [SMALL_STATE(9055)] = 344432, + [SMALL_STATE(9056)] = 344458, + [SMALL_STATE(9057)] = 344484, + [SMALL_STATE(9058)] = 344512, + [SMALL_STATE(9059)] = 344540, + [SMALL_STATE(9060)] = 344560, + [SMALL_STATE(9061)] = 344588, + [SMALL_STATE(9062)] = 344610, + [SMALL_STATE(9063)] = 344636, + [SMALL_STATE(9064)] = 344660, + [SMALL_STATE(9065)] = 344686, + [SMALL_STATE(9066)] = 344712, + [SMALL_STATE(9067)] = 344738, + [SMALL_STATE(9068)] = 344764, + [SMALL_STATE(9069)] = 344788, + [SMALL_STATE(9070)] = 344814, + [SMALL_STATE(9071)] = 344840, + [SMALL_STATE(9072)] = 344866, + [SMALL_STATE(9073)] = 344888, + [SMALL_STATE(9074)] = 344910, + [SMALL_STATE(9075)] = 344936, + [SMALL_STATE(9076)] = 344962, + [SMALL_STATE(9077)] = 344988, + [SMALL_STATE(9078)] = 345014, + [SMALL_STATE(9079)] = 345042, + [SMALL_STATE(9080)] = 345068, + [SMALL_STATE(9081)] = 345092, + [SMALL_STATE(9082)] = 345115, + [SMALL_STATE(9083)] = 345138, + [SMALL_STATE(9084)] = 345159, + [SMALL_STATE(9085)] = 345176, + [SMALL_STATE(9086)] = 345195, + [SMALL_STATE(9087)] = 345220, + [SMALL_STATE(9088)] = 345243, + [SMALL_STATE(9089)] = 345262, + [SMALL_STATE(9090)] = 345279, + [SMALL_STATE(9091)] = 345300, + [SMALL_STATE(9092)] = 345321, + [SMALL_STATE(9093)] = 345344, + [SMALL_STATE(9094)] = 345369, + [SMALL_STATE(9095)] = 345392, + [SMALL_STATE(9096)] = 345413, + [SMALL_STATE(9097)] = 345434, + [SMALL_STATE(9098)] = 345459, + [SMALL_STATE(9099)] = 345480, + [SMALL_STATE(9100)] = 345505, + [SMALL_STATE(9101)] = 345530, + [SMALL_STATE(9102)] = 345551, + [SMALL_STATE(9103)] = 345576, + [SMALL_STATE(9104)] = 345599, + [SMALL_STATE(9105)] = 345622, + [SMALL_STATE(9106)] = 345643, + [SMALL_STATE(9107)] = 345664, + [SMALL_STATE(9108)] = 345687, + [SMALL_STATE(9109)] = 345712, + [SMALL_STATE(9110)] = 345735, + [SMALL_STATE(9111)] = 345760, + [SMALL_STATE(9112)] = 345783, + [SMALL_STATE(9113)] = 345804, + [SMALL_STATE(9114)] = 345829, + [SMALL_STATE(9115)] = 345852, + [SMALL_STATE(9116)] = 345873, + [SMALL_STATE(9117)] = 345898, + [SMALL_STATE(9118)] = 345915, + [SMALL_STATE(9119)] = 345932, + [SMALL_STATE(9120)] = 345955, + [SMALL_STATE(9121)] = 345972, + [SMALL_STATE(9122)] = 345995, + [SMALL_STATE(9123)] = 346018, + [SMALL_STATE(9124)] = 346041, + [SMALL_STATE(9125)] = 346062, + [SMALL_STATE(9126)] = 346085, + [SMALL_STATE(9127)] = 346102, + [SMALL_STATE(9128)] = 346127, + [SMALL_STATE(9129)] = 346150, + [SMALL_STATE(9130)] = 346171, + [SMALL_STATE(9131)] = 346194, + [SMALL_STATE(9132)] = 346211, + [SMALL_STATE(9133)] = 346228, + [SMALL_STATE(9134)] = 346249, + [SMALL_STATE(9135)] = 346270, + [SMALL_STATE(9136)] = 346287, + [SMALL_STATE(9137)] = 346304, + [SMALL_STATE(9138)] = 346321, + [SMALL_STATE(9139)] = 346338, + [SMALL_STATE(9140)] = 346355, + [SMALL_STATE(9141)] = 346372, + [SMALL_STATE(9142)] = 346389, + [SMALL_STATE(9143)] = 346406, + [SMALL_STATE(9144)] = 346423, + [SMALL_STATE(9145)] = 346448, + [SMALL_STATE(9146)] = 346465, + [SMALL_STATE(9147)] = 346482, + [SMALL_STATE(9148)] = 346499, + [SMALL_STATE(9149)] = 346524, + [SMALL_STATE(9150)] = 346541, + [SMALL_STATE(9151)] = 346560, + [SMALL_STATE(9152)] = 346579, + [SMALL_STATE(9153)] = 346598, + [SMALL_STATE(9154)] = 346619, + [SMALL_STATE(9155)] = 346640, + [SMALL_STATE(9156)] = 346663, + [SMALL_STATE(9157)] = 346686, + [SMALL_STATE(9158)] = 346703, + [SMALL_STATE(9159)] = 346728, + [SMALL_STATE(9160)] = 346753, + [SMALL_STATE(9161)] = 346778, + [SMALL_STATE(9162)] = 346795, + [SMALL_STATE(9163)] = 346817, + [SMALL_STATE(9164)] = 346839, + [SMALL_STATE(9165)] = 346853, + [SMALL_STATE(9166)] = 346873, + [SMALL_STATE(9167)] = 346895, + [SMALL_STATE(9168)] = 346915, + [SMALL_STATE(9169)] = 346929, + [SMALL_STATE(9170)] = 346943, + [SMALL_STATE(9171)] = 346965, + [SMALL_STATE(9172)] = 346987, + [SMALL_STATE(9173)] = 347001, + [SMALL_STATE(9174)] = 347015, + [SMALL_STATE(9175)] = 347037, + [SMALL_STATE(9176)] = 347051, + [SMALL_STATE(9177)] = 347073, + [SMALL_STATE(9178)] = 347095, + [SMALL_STATE(9179)] = 347109, + [SMALL_STATE(9180)] = 347131, + [SMALL_STATE(9181)] = 347153, + [SMALL_STATE(9182)] = 347175, + [SMALL_STATE(9183)] = 347197, + [SMALL_STATE(9184)] = 347217, + [SMALL_STATE(9185)] = 347237, + [SMALL_STATE(9186)] = 347259, + [SMALL_STATE(9187)] = 347279, + [SMALL_STATE(9188)] = 347293, + [SMALL_STATE(9189)] = 347315, + [SMALL_STATE(9190)] = 347335, + [SMALL_STATE(9191)] = 347357, + [SMALL_STATE(9192)] = 347377, + [SMALL_STATE(9193)] = 347397, + [SMALL_STATE(9194)] = 347419, + [SMALL_STATE(9195)] = 347441, + [SMALL_STATE(9196)] = 347455, + [SMALL_STATE(9197)] = 347477, + [SMALL_STATE(9198)] = 347499, + [SMALL_STATE(9199)] = 347517, + [SMALL_STATE(9200)] = 347539, + [SMALL_STATE(9201)] = 347559, + [SMALL_STATE(9202)] = 347581, + [SMALL_STATE(9203)] = 347595, + [SMALL_STATE(9204)] = 347617, + [SMALL_STATE(9205)] = 347639, + [SMALL_STATE(9206)] = 347661, + [SMALL_STATE(9207)] = 347683, + [SMALL_STATE(9208)] = 347705, + [SMALL_STATE(9209)] = 347727, + [SMALL_STATE(9210)] = 347749, + [SMALL_STATE(9211)] = 347769, + [SMALL_STATE(9212)] = 347789, + [SMALL_STATE(9213)] = 347803, + [SMALL_STATE(9214)] = 347825, + [SMALL_STATE(9215)] = 347845, + [SMALL_STATE(9216)] = 347865, + [SMALL_STATE(9217)] = 347887, + [SMALL_STATE(9218)] = 347909, + [SMALL_STATE(9219)] = 347929, + [SMALL_STATE(9220)] = 347949, + [SMALL_STATE(9221)] = 347971, + [SMALL_STATE(9222)] = 347993, + [SMALL_STATE(9223)] = 348015, + [SMALL_STATE(9224)] = 348037, + [SMALL_STATE(9225)] = 348057, + [SMALL_STATE(9226)] = 348079, + [SMALL_STATE(9227)] = 348099, + [SMALL_STATE(9228)] = 348121, + [SMALL_STATE(9229)] = 348143, + [SMALL_STATE(9230)] = 348163, + [SMALL_STATE(9231)] = 348185, + [SMALL_STATE(9232)] = 348207, + [SMALL_STATE(9233)] = 348229, + [SMALL_STATE(9234)] = 348251, + [SMALL_STATE(9235)] = 348271, + [SMALL_STATE(9236)] = 348289, + [SMALL_STATE(9237)] = 348307, + [SMALL_STATE(9238)] = 348329, + [SMALL_STATE(9239)] = 348351, + [SMALL_STATE(9240)] = 348373, + [SMALL_STATE(9241)] = 348391, + [SMALL_STATE(9242)] = 348413, + [SMALL_STATE(9243)] = 348435, + [SMALL_STATE(9244)] = 348455, + [SMALL_STATE(9245)] = 348475, + [SMALL_STATE(9246)] = 348497, + [SMALL_STATE(9247)] = 348519, + [SMALL_STATE(9248)] = 348541, + [SMALL_STATE(9249)] = 348563, + [SMALL_STATE(9250)] = 348585, + [SMALL_STATE(9251)] = 348605, + [SMALL_STATE(9252)] = 348625, + [SMALL_STATE(9253)] = 348639, + [SMALL_STATE(9254)] = 348661, + [SMALL_STATE(9255)] = 348683, + [SMALL_STATE(9256)] = 348705, + [SMALL_STATE(9257)] = 348719, + [SMALL_STATE(9258)] = 348733, + [SMALL_STATE(9259)] = 348755, + [SMALL_STATE(9260)] = 348777, + [SMALL_STATE(9261)] = 348791, + [SMALL_STATE(9262)] = 348813, + [SMALL_STATE(9263)] = 348833, + [SMALL_STATE(9264)] = 348855, + [SMALL_STATE(9265)] = 348877, + [SMALL_STATE(9266)] = 348897, + [SMALL_STATE(9267)] = 348917, + [SMALL_STATE(9268)] = 348939, + [SMALL_STATE(9269)] = 348959, + [SMALL_STATE(9270)] = 348979, + [SMALL_STATE(9271)] = 349001, + [SMALL_STATE(9272)] = 349021, + [SMALL_STATE(9273)] = 349038, + [SMALL_STATE(9274)] = 349057, + [SMALL_STATE(9275)] = 349074, + [SMALL_STATE(9276)] = 349091, + [SMALL_STATE(9277)] = 349108, + [SMALL_STATE(9278)] = 349127, + [SMALL_STATE(9279)] = 349144, + [SMALL_STATE(9280)] = 349163, + [SMALL_STATE(9281)] = 349182, + [SMALL_STATE(9282)] = 349199, + [SMALL_STATE(9283)] = 349216, + [SMALL_STATE(9284)] = 349233, + [SMALL_STATE(9285)] = 349252, + [SMALL_STATE(9286)] = 349271, + [SMALL_STATE(9287)] = 349290, + [SMALL_STATE(9288)] = 349309, + [SMALL_STATE(9289)] = 349328, + [SMALL_STATE(9290)] = 349347, + [SMALL_STATE(9291)] = 349366, + [SMALL_STATE(9292)] = 349383, + [SMALL_STATE(9293)] = 349402, + [SMALL_STATE(9294)] = 349419, + [SMALL_STATE(9295)] = 349436, + [SMALL_STATE(9296)] = 349453, + [SMALL_STATE(9297)] = 349470, + [SMALL_STATE(9298)] = 349489, + [SMALL_STATE(9299)] = 349508, + [SMALL_STATE(9300)] = 349527, + [SMALL_STATE(9301)] = 349544, + [SMALL_STATE(9302)] = 349563, + [SMALL_STATE(9303)] = 349580, + [SMALL_STATE(9304)] = 349599, + [SMALL_STATE(9305)] = 349618, + [SMALL_STATE(9306)] = 349637, + [SMALL_STATE(9307)] = 349656, + [SMALL_STATE(9308)] = 349673, + [SMALL_STATE(9309)] = 349692, + [SMALL_STATE(9310)] = 349711, + [SMALL_STATE(9311)] = 349728, + [SMALL_STATE(9312)] = 349747, + [SMALL_STATE(9313)] = 349766, + [SMALL_STATE(9314)] = 349785, + [SMALL_STATE(9315)] = 349802, + [SMALL_STATE(9316)] = 349819, + [SMALL_STATE(9317)] = 349836, + [SMALL_STATE(9318)] = 349851, + [SMALL_STATE(9319)] = 349862, + [SMALL_STATE(9320)] = 349879, + [SMALL_STATE(9321)] = 349896, + [SMALL_STATE(9322)] = 349915, + [SMALL_STATE(9323)] = 349934, + [SMALL_STATE(9324)] = 349951, + [SMALL_STATE(9325)] = 349968, + [SMALL_STATE(9326)] = 349983, + [SMALL_STATE(9327)] = 350000, + [SMALL_STATE(9328)] = 350017, + [SMALL_STATE(9329)] = 350034, + [SMALL_STATE(9330)] = 350051, + [SMALL_STATE(9331)] = 350068, + [SMALL_STATE(9332)] = 350087, + [SMALL_STATE(9333)] = 350106, + [SMALL_STATE(9334)] = 350123, + [SMALL_STATE(9335)] = 350142, + [SMALL_STATE(9336)] = 350159, + [SMALL_STATE(9337)] = 350178, + [SMALL_STATE(9338)] = 350195, + [SMALL_STATE(9339)] = 350212, + [SMALL_STATE(9340)] = 350229, + [SMALL_STATE(9341)] = 350248, + [SMALL_STATE(9342)] = 350265, + [SMALL_STATE(9343)] = 350282, + [SMALL_STATE(9344)] = 350299, + [SMALL_STATE(9345)] = 350312, + [SMALL_STATE(9346)] = 350331, + [SMALL_STATE(9347)] = 350348, + [SMALL_STATE(9348)] = 350365, + [SMALL_STATE(9349)] = 350382, + [SMALL_STATE(9350)] = 350401, + [SMALL_STATE(9351)] = 350420, + [SMALL_STATE(9352)] = 350439, + [SMALL_STATE(9353)] = 350456, + [SMALL_STATE(9354)] = 350475, + [SMALL_STATE(9355)] = 350490, + [SMALL_STATE(9356)] = 350509, + [SMALL_STATE(9357)] = 350526, + [SMALL_STATE(9358)] = 350545, + [SMALL_STATE(9359)] = 350562, + [SMALL_STATE(9360)] = 350581, + [SMALL_STATE(9361)] = 350594, + [SMALL_STATE(9362)] = 350611, + [SMALL_STATE(9363)] = 350630, + [SMALL_STATE(9364)] = 350649, + [SMALL_STATE(9365)] = 350668, + [SMALL_STATE(9366)] = 350687, + [SMALL_STATE(9367)] = 350706, + [SMALL_STATE(9368)] = 350725, + [SMALL_STATE(9369)] = 350744, + [SMALL_STATE(9370)] = 350763, + [SMALL_STATE(9371)] = 350782, + [SMALL_STATE(9372)] = 350801, + [SMALL_STATE(9373)] = 350820, + [SMALL_STATE(9374)] = 350837, + [SMALL_STATE(9375)] = 350854, + [SMALL_STATE(9376)] = 350873, + [SMALL_STATE(9377)] = 350890, + [SMALL_STATE(9378)] = 350907, + [SMALL_STATE(9379)] = 350926, + [SMALL_STATE(9380)] = 350943, + [SMALL_STATE(9381)] = 350960, + [SMALL_STATE(9382)] = 350979, + [SMALL_STATE(9383)] = 350998, + [SMALL_STATE(9384)] = 351017, + [SMALL_STATE(9385)] = 351036, + [SMALL_STATE(9386)] = 351055, + [SMALL_STATE(9387)] = 351074, + [SMALL_STATE(9388)] = 351093, + [SMALL_STATE(9389)] = 351112, + [SMALL_STATE(9390)] = 351131, + [SMALL_STATE(9391)] = 351150, + [SMALL_STATE(9392)] = 351165, + [SMALL_STATE(9393)] = 351184, + [SMALL_STATE(9394)] = 351203, + [SMALL_STATE(9395)] = 351220, + [SMALL_STATE(9396)] = 351237, + [SMALL_STATE(9397)] = 351256, + [SMALL_STATE(9398)] = 351275, + [SMALL_STATE(9399)] = 351288, + [SMALL_STATE(9400)] = 351307, + [SMALL_STATE(9401)] = 351326, + [SMALL_STATE(9402)] = 351345, + [SMALL_STATE(9403)] = 351362, + [SMALL_STATE(9404)] = 351381, + [SMALL_STATE(9405)] = 351400, + [SMALL_STATE(9406)] = 351417, + [SMALL_STATE(9407)] = 351436, + [SMALL_STATE(9408)] = 351453, + [SMALL_STATE(9409)] = 351470, + [SMALL_STATE(9410)] = 351489, + [SMALL_STATE(9411)] = 351508, + [SMALL_STATE(9412)] = 351527, + [SMALL_STATE(9413)] = 351542, + [SMALL_STATE(9414)] = 351559, + [SMALL_STATE(9415)] = 351578, + [SMALL_STATE(9416)] = 351597, + [SMALL_STATE(9417)] = 351616, + [SMALL_STATE(9418)] = 351633, + [SMALL_STATE(9419)] = 351650, + [SMALL_STATE(9420)] = 351666, + [SMALL_STATE(9421)] = 351682, + [SMALL_STATE(9422)] = 351698, + [SMALL_STATE(9423)] = 351714, + [SMALL_STATE(9424)] = 351730, + [SMALL_STATE(9425)] = 351746, + [SMALL_STATE(9426)] = 351762, + [SMALL_STATE(9427)] = 351778, + [SMALL_STATE(9428)] = 351794, + [SMALL_STATE(9429)] = 351808, + [SMALL_STATE(9430)] = 351822, + [SMALL_STATE(9431)] = 351838, + [SMALL_STATE(9432)] = 351854, + [SMALL_STATE(9433)] = 351870, + [SMALL_STATE(9434)] = 351884, + [SMALL_STATE(9435)] = 351900, + [SMALL_STATE(9436)] = 351914, + [SMALL_STATE(9437)] = 351930, + [SMALL_STATE(9438)] = 351946, + [SMALL_STATE(9439)] = 351962, + [SMALL_STATE(9440)] = 351978, + [SMALL_STATE(9441)] = 351994, + [SMALL_STATE(9442)] = 352006, + [SMALL_STATE(9443)] = 352016, + [SMALL_STATE(9444)] = 352032, + [SMALL_STATE(9445)] = 352044, + [SMALL_STATE(9446)] = 352060, + [SMALL_STATE(9447)] = 352074, + [SMALL_STATE(9448)] = 352090, + [SMALL_STATE(9449)] = 352106, + [SMALL_STATE(9450)] = 352122, + [SMALL_STATE(9451)] = 352136, + [SMALL_STATE(9452)] = 352152, + [SMALL_STATE(9453)] = 352168, + [SMALL_STATE(9454)] = 352184, + [SMALL_STATE(9455)] = 352198, + [SMALL_STATE(9456)] = 352212, + [SMALL_STATE(9457)] = 352228, + [SMALL_STATE(9458)] = 352244, + [SMALL_STATE(9459)] = 352258, + [SMALL_STATE(9460)] = 352274, + [SMALL_STATE(9461)] = 352288, + [SMALL_STATE(9462)] = 352302, + [SMALL_STATE(9463)] = 352314, + [SMALL_STATE(9464)] = 352330, + [SMALL_STATE(9465)] = 352344, + [SMALL_STATE(9466)] = 352360, + [SMALL_STATE(9467)] = 352376, + [SMALL_STATE(9468)] = 352392, + [SMALL_STATE(9469)] = 352408, + [SMALL_STATE(9470)] = 352424, + [SMALL_STATE(9471)] = 352440, + [SMALL_STATE(9472)] = 352456, + [SMALL_STATE(9473)] = 352472, + [SMALL_STATE(9474)] = 352488, + [SMALL_STATE(9475)] = 352502, + [SMALL_STATE(9476)] = 352518, + [SMALL_STATE(9477)] = 352534, + [SMALL_STATE(9478)] = 352550, + [SMALL_STATE(9479)] = 352566, + [SMALL_STATE(9480)] = 352582, + [SMALL_STATE(9481)] = 352596, + [SMALL_STATE(9482)] = 352612, + [SMALL_STATE(9483)] = 352628, + [SMALL_STATE(9484)] = 352644, + [SMALL_STATE(9485)] = 352660, + [SMALL_STATE(9486)] = 352676, + [SMALL_STATE(9487)] = 352690, + [SMALL_STATE(9488)] = 352706, + [SMALL_STATE(9489)] = 352722, + [SMALL_STATE(9490)] = 352738, + [SMALL_STATE(9491)] = 352754, + [SMALL_STATE(9492)] = 352770, + [SMALL_STATE(9493)] = 352786, + [SMALL_STATE(9494)] = 352800, + [SMALL_STATE(9495)] = 352814, + [SMALL_STATE(9496)] = 352830, + [SMALL_STATE(9497)] = 352844, + [SMALL_STATE(9498)] = 352860, + [SMALL_STATE(9499)] = 352876, + [SMALL_STATE(9500)] = 352892, + [SMALL_STATE(9501)] = 352908, + [SMALL_STATE(9502)] = 352922, + [SMALL_STATE(9503)] = 352938, + [SMALL_STATE(9504)] = 352952, + [SMALL_STATE(9505)] = 352968, + [SMALL_STATE(9506)] = 352982, + [SMALL_STATE(9507)] = 352998, + [SMALL_STATE(9508)] = 353014, + [SMALL_STATE(9509)] = 353030, + [SMALL_STATE(9510)] = 353046, + [SMALL_STATE(9511)] = 353062, + [SMALL_STATE(9512)] = 353078, + [SMALL_STATE(9513)] = 353094, + [SMALL_STATE(9514)] = 353110, + [SMALL_STATE(9515)] = 353124, + [SMALL_STATE(9516)] = 353140, + [SMALL_STATE(9517)] = 353154, + [SMALL_STATE(9518)] = 353168, + [SMALL_STATE(9519)] = 353182, + [SMALL_STATE(9520)] = 353198, + [SMALL_STATE(9521)] = 353212, + [SMALL_STATE(9522)] = 353226, + [SMALL_STATE(9523)] = 353240, + [SMALL_STATE(9524)] = 353254, + [SMALL_STATE(9525)] = 353268, + [SMALL_STATE(9526)] = 353284, + [SMALL_STATE(9527)] = 353300, + [SMALL_STATE(9528)] = 353310, + [SMALL_STATE(9529)] = 353326, + [SMALL_STATE(9530)] = 353340, + [SMALL_STATE(9531)] = 353354, + [SMALL_STATE(9532)] = 353370, + [SMALL_STATE(9533)] = 353386, + [SMALL_STATE(9534)] = 353402, + [SMALL_STATE(9535)] = 353418, + [SMALL_STATE(9536)] = 353434, + [SMALL_STATE(9537)] = 353450, + [SMALL_STATE(9538)] = 353464, + [SMALL_STATE(9539)] = 353478, + [SMALL_STATE(9540)] = 353494, + [SMALL_STATE(9541)] = 353510, + [SMALL_STATE(9542)] = 353526, + [SMALL_STATE(9543)] = 353542, + [SMALL_STATE(9544)] = 353556, + [SMALL_STATE(9545)] = 353570, + [SMALL_STATE(9546)] = 353584, + [SMALL_STATE(9547)] = 353600, + [SMALL_STATE(9548)] = 353616, + [SMALL_STATE(9549)] = 353630, + [SMALL_STATE(9550)] = 353646, + [SMALL_STATE(9551)] = 353662, + [SMALL_STATE(9552)] = 353678, + [SMALL_STATE(9553)] = 353694, + [SMALL_STATE(9554)] = 353710, + [SMALL_STATE(9555)] = 353726, + [SMALL_STATE(9556)] = 353742, + [SMALL_STATE(9557)] = 353758, + [SMALL_STATE(9558)] = 353774, + [SMALL_STATE(9559)] = 353790, + [SMALL_STATE(9560)] = 353806, + [SMALL_STATE(9561)] = 353822, + [SMALL_STATE(9562)] = 353838, + [SMALL_STATE(9563)] = 353854, + [SMALL_STATE(9564)] = 353868, + [SMALL_STATE(9565)] = 353882, + [SMALL_STATE(9566)] = 353898, + [SMALL_STATE(9567)] = 353914, + [SMALL_STATE(9568)] = 353930, + [SMALL_STATE(9569)] = 353946, + [SMALL_STATE(9570)] = 353960, + [SMALL_STATE(9571)] = 353976, + [SMALL_STATE(9572)] = 353990, + [SMALL_STATE(9573)] = 354006, + [SMALL_STATE(9574)] = 354022, + [SMALL_STATE(9575)] = 354036, + [SMALL_STATE(9576)] = 354052, + [SMALL_STATE(9577)] = 354068, + [SMALL_STATE(9578)] = 354084, + [SMALL_STATE(9579)] = 354100, + [SMALL_STATE(9580)] = 354116, + [SMALL_STATE(9581)] = 354132, + [SMALL_STATE(9582)] = 354148, + [SMALL_STATE(9583)] = 354164, + [SMALL_STATE(9584)] = 354178, + [SMALL_STATE(9585)] = 354192, + [SMALL_STATE(9586)] = 354208, + [SMALL_STATE(9587)] = 354224, + [SMALL_STATE(9588)] = 354240, + [SMALL_STATE(9589)] = 354256, + [SMALL_STATE(9590)] = 354272, + [SMALL_STATE(9591)] = 354284, + [SMALL_STATE(9592)] = 354298, + [SMALL_STATE(9593)] = 354314, + [SMALL_STATE(9594)] = 354330, + [SMALL_STATE(9595)] = 354346, + [SMALL_STATE(9596)] = 354362, + [SMALL_STATE(9597)] = 354378, + [SMALL_STATE(9598)] = 354394, + [SMALL_STATE(9599)] = 354410, + [SMALL_STATE(9600)] = 354426, + [SMALL_STATE(9601)] = 354440, + [SMALL_STATE(9602)] = 354456, + [SMALL_STATE(9603)] = 354472, + [SMALL_STATE(9604)] = 354488, + [SMALL_STATE(9605)] = 354504, + [SMALL_STATE(9606)] = 354518, + [SMALL_STATE(9607)] = 354532, + [SMALL_STATE(9608)] = 354548, + [SMALL_STATE(9609)] = 354562, + [SMALL_STATE(9610)] = 354578, + [SMALL_STATE(9611)] = 354592, + [SMALL_STATE(9612)] = 354608, + [SMALL_STATE(9613)] = 354624, + [SMALL_STATE(9614)] = 354640, + [SMALL_STATE(9615)] = 354656, + [SMALL_STATE(9616)] = 354672, + [SMALL_STATE(9617)] = 354688, + [SMALL_STATE(9618)] = 354704, + [SMALL_STATE(9619)] = 354720, + [SMALL_STATE(9620)] = 354736, + [SMALL_STATE(9621)] = 354752, + [SMALL_STATE(9622)] = 354768, + [SMALL_STATE(9623)] = 354784, + [SMALL_STATE(9624)] = 354798, + [SMALL_STATE(9625)] = 354814, + [SMALL_STATE(9626)] = 354830, + [SMALL_STATE(9627)] = 354846, + [SMALL_STATE(9628)] = 354862, + [SMALL_STATE(9629)] = 354876, + [SMALL_STATE(9630)] = 354892, + [SMALL_STATE(9631)] = 354906, + [SMALL_STATE(9632)] = 354922, + [SMALL_STATE(9633)] = 354938, + [SMALL_STATE(9634)] = 354954, + [SMALL_STATE(9635)] = 354970, + [SMALL_STATE(9636)] = 354986, + [SMALL_STATE(9637)] = 355002, + [SMALL_STATE(9638)] = 355012, + [SMALL_STATE(9639)] = 355028, + [SMALL_STATE(9640)] = 355042, + [SMALL_STATE(9641)] = 355058, + [SMALL_STATE(9642)] = 355074, + [SMALL_STATE(9643)] = 355090, + [SMALL_STATE(9644)] = 355106, + [SMALL_STATE(9645)] = 355122, + [SMALL_STATE(9646)] = 355136, + [SMALL_STATE(9647)] = 355152, + [SMALL_STATE(9648)] = 355168, + [SMALL_STATE(9649)] = 355184, + [SMALL_STATE(9650)] = 355200, + [SMALL_STATE(9651)] = 355216, + [SMALL_STATE(9652)] = 355232, + [SMALL_STATE(9653)] = 355248, + [SMALL_STATE(9654)] = 355264, + [SMALL_STATE(9655)] = 355278, + [SMALL_STATE(9656)] = 355294, + [SMALL_STATE(9657)] = 355310, + [SMALL_STATE(9658)] = 355324, + [SMALL_STATE(9659)] = 355340, + [SMALL_STATE(9660)] = 355356, + [SMALL_STATE(9661)] = 355372, + [SMALL_STATE(9662)] = 355385, + [SMALL_STATE(9663)] = 355398, + [SMALL_STATE(9664)] = 355411, + [SMALL_STATE(9665)] = 355424, + [SMALL_STATE(9666)] = 355437, + [SMALL_STATE(9667)] = 355450, + [SMALL_STATE(9668)] = 355461, + [SMALL_STATE(9669)] = 355472, + [SMALL_STATE(9670)] = 355485, + [SMALL_STATE(9671)] = 355494, + [SMALL_STATE(9672)] = 355505, + [SMALL_STATE(9673)] = 355518, + [SMALL_STATE(9674)] = 355531, + [SMALL_STATE(9675)] = 355544, + [SMALL_STATE(9676)] = 355555, + [SMALL_STATE(9677)] = 355568, + [SMALL_STATE(9678)] = 355581, + [SMALL_STATE(9679)] = 355594, + [SMALL_STATE(9680)] = 355607, + [SMALL_STATE(9681)] = 355620, + [SMALL_STATE(9682)] = 355633, + [SMALL_STATE(9683)] = 355646, + [SMALL_STATE(9684)] = 355659, + [SMALL_STATE(9685)] = 355672, + [SMALL_STATE(9686)] = 355685, + [SMALL_STATE(9687)] = 355698, + [SMALL_STATE(9688)] = 355711, + [SMALL_STATE(9689)] = 355724, + [SMALL_STATE(9690)] = 355737, + [SMALL_STATE(9691)] = 355750, + [SMALL_STATE(9692)] = 355763, + [SMALL_STATE(9693)] = 355776, + [SMALL_STATE(9694)] = 355789, + [SMALL_STATE(9695)] = 355802, + [SMALL_STATE(9696)] = 355815, + [SMALL_STATE(9697)] = 355828, + [SMALL_STATE(9698)] = 355841, + [SMALL_STATE(9699)] = 355854, + [SMALL_STATE(9700)] = 355867, + [SMALL_STATE(9701)] = 355880, + [SMALL_STATE(9702)] = 355893, + [SMALL_STATE(9703)] = 355906, + [SMALL_STATE(9704)] = 355919, + [SMALL_STATE(9705)] = 355932, + [SMALL_STATE(9706)] = 355945, + [SMALL_STATE(9707)] = 355958, + [SMALL_STATE(9708)] = 355967, + [SMALL_STATE(9709)] = 355980, + [SMALL_STATE(9710)] = 355989, + [SMALL_STATE(9711)] = 356002, + [SMALL_STATE(9712)] = 356013, + [SMALL_STATE(9713)] = 356026, + [SMALL_STATE(9714)] = 356039, + [SMALL_STATE(9715)] = 356052, + [SMALL_STATE(9716)] = 356065, + [SMALL_STATE(9717)] = 356078, + [SMALL_STATE(9718)] = 356091, + [SMALL_STATE(9719)] = 356104, + [SMALL_STATE(9720)] = 356117, + [SMALL_STATE(9721)] = 356130, + [SMALL_STATE(9722)] = 356143, + [SMALL_STATE(9723)] = 356156, + [SMALL_STATE(9724)] = 356169, + [SMALL_STATE(9725)] = 356182, + [SMALL_STATE(9726)] = 356195, + [SMALL_STATE(9727)] = 356208, + [SMALL_STATE(9728)] = 356221, + [SMALL_STATE(9729)] = 356234, + [SMALL_STATE(9730)] = 356247, + [SMALL_STATE(9731)] = 356260, + [SMALL_STATE(9732)] = 356273, + [SMALL_STATE(9733)] = 356286, + [SMALL_STATE(9734)] = 356299, + [SMALL_STATE(9735)] = 356312, + [SMALL_STATE(9736)] = 356325, + [SMALL_STATE(9737)] = 356338, + [SMALL_STATE(9738)] = 356351, + [SMALL_STATE(9739)] = 356364, + [SMALL_STATE(9740)] = 356375, + [SMALL_STATE(9741)] = 356388, + [SMALL_STATE(9742)] = 356399, + [SMALL_STATE(9743)] = 356412, + [SMALL_STATE(9744)] = 356425, + [SMALL_STATE(9745)] = 356438, + [SMALL_STATE(9746)] = 356451, + [SMALL_STATE(9747)] = 356464, + [SMALL_STATE(9748)] = 356477, + [SMALL_STATE(9749)] = 356490, + [SMALL_STATE(9750)] = 356503, + [SMALL_STATE(9751)] = 356516, + [SMALL_STATE(9752)] = 356529, + [SMALL_STATE(9753)] = 356540, + [SMALL_STATE(9754)] = 356553, + [SMALL_STATE(9755)] = 356566, + [SMALL_STATE(9756)] = 356579, + [SMALL_STATE(9757)] = 356592, + [SMALL_STATE(9758)] = 356605, + [SMALL_STATE(9759)] = 356618, + [SMALL_STATE(9760)] = 356631, + [SMALL_STATE(9761)] = 356642, + [SMALL_STATE(9762)] = 356655, + [SMALL_STATE(9763)] = 356668, + [SMALL_STATE(9764)] = 356679, + [SMALL_STATE(9765)] = 356692, + [SMALL_STATE(9766)] = 356705, + [SMALL_STATE(9767)] = 356718, + [SMALL_STATE(9768)] = 356731, + [SMALL_STATE(9769)] = 356744, + [SMALL_STATE(9770)] = 356757, + [SMALL_STATE(9771)] = 356770, + [SMALL_STATE(9772)] = 356783, + [SMALL_STATE(9773)] = 356796, + [SMALL_STATE(9774)] = 356809, + [SMALL_STATE(9775)] = 356820, + [SMALL_STATE(9776)] = 356833, + [SMALL_STATE(9777)] = 356844, + [SMALL_STATE(9778)] = 356857, + [SMALL_STATE(9779)] = 356870, + [SMALL_STATE(9780)] = 356883, + [SMALL_STATE(9781)] = 356896, + [SMALL_STATE(9782)] = 356909, + [SMALL_STATE(9783)] = 356922, + [SMALL_STATE(9784)] = 356931, + [SMALL_STATE(9785)] = 356940, + [SMALL_STATE(9786)] = 356953, + [SMALL_STATE(9787)] = 356966, + [SMALL_STATE(9788)] = 356979, + [SMALL_STATE(9789)] = 356992, + [SMALL_STATE(9790)] = 357005, + [SMALL_STATE(9791)] = 357018, + [SMALL_STATE(9792)] = 357031, + [SMALL_STATE(9793)] = 357044, + [SMALL_STATE(9794)] = 357057, + [SMALL_STATE(9795)] = 357070, + [SMALL_STATE(9796)] = 357083, + [SMALL_STATE(9797)] = 357096, + [SMALL_STATE(9798)] = 357109, + [SMALL_STATE(9799)] = 357122, + [SMALL_STATE(9800)] = 357135, + [SMALL_STATE(9801)] = 357148, + [SMALL_STATE(9802)] = 357161, + [SMALL_STATE(9803)] = 357174, + [SMALL_STATE(9804)] = 357187, + [SMALL_STATE(9805)] = 357200, + [SMALL_STATE(9806)] = 357213, + [SMALL_STATE(9807)] = 357226, + [SMALL_STATE(9808)] = 357239, + [SMALL_STATE(9809)] = 357252, + [SMALL_STATE(9810)] = 357265, + [SMALL_STATE(9811)] = 357278, + [SMALL_STATE(9812)] = 357291, + [SMALL_STATE(9813)] = 357304, + [SMALL_STATE(9814)] = 357315, + [SMALL_STATE(9815)] = 357328, + [SMALL_STATE(9816)] = 357341, + [SMALL_STATE(9817)] = 357354, + [SMALL_STATE(9818)] = 357367, + [SMALL_STATE(9819)] = 357376, + [SMALL_STATE(9820)] = 357389, + [SMALL_STATE(9821)] = 357402, + [SMALL_STATE(9822)] = 357415, + [SMALL_STATE(9823)] = 357428, + [SMALL_STATE(9824)] = 357441, + [SMALL_STATE(9825)] = 357454, + [SMALL_STATE(9826)] = 357467, + [SMALL_STATE(9827)] = 357480, + [SMALL_STATE(9828)] = 357493, + [SMALL_STATE(9829)] = 357506, + [SMALL_STATE(9830)] = 357519, + [SMALL_STATE(9831)] = 357532, + [SMALL_STATE(9832)] = 357545, + [SMALL_STATE(9833)] = 357558, + [SMALL_STATE(9834)] = 357569, + [SMALL_STATE(9835)] = 357582, + [SMALL_STATE(9836)] = 357595, + [SMALL_STATE(9837)] = 357608, + [SMALL_STATE(9838)] = 357621, + [SMALL_STATE(9839)] = 357634, + [SMALL_STATE(9840)] = 357643, + [SMALL_STATE(9841)] = 357652, + [SMALL_STATE(9842)] = 357661, + [SMALL_STATE(9843)] = 357674, + [SMALL_STATE(9844)] = 357687, + [SMALL_STATE(9845)] = 357700, + [SMALL_STATE(9846)] = 357713, + [SMALL_STATE(9847)] = 357726, + [SMALL_STATE(9848)] = 357737, + [SMALL_STATE(9849)] = 357750, + [SMALL_STATE(9850)] = 357763, + [SMALL_STATE(9851)] = 357776, + [SMALL_STATE(9852)] = 357787, + [SMALL_STATE(9853)] = 357796, + [SMALL_STATE(9854)] = 357809, + [SMALL_STATE(9855)] = 357822, + [SMALL_STATE(9856)] = 357835, + [SMALL_STATE(9857)] = 357848, + [SMALL_STATE(9858)] = 357861, + [SMALL_STATE(9859)] = 357874, + [SMALL_STATE(9860)] = 357885, + [SMALL_STATE(9861)] = 357896, + [SMALL_STATE(9862)] = 357909, + [SMALL_STATE(9863)] = 357922, + [SMALL_STATE(9864)] = 357933, + [SMALL_STATE(9865)] = 357946, + [SMALL_STATE(9866)] = 357959, + [SMALL_STATE(9867)] = 357972, + [SMALL_STATE(9868)] = 357985, + [SMALL_STATE(9869)] = 357998, + [SMALL_STATE(9870)] = 358011, + [SMALL_STATE(9871)] = 358024, + [SMALL_STATE(9872)] = 358037, + [SMALL_STATE(9873)] = 358050, + [SMALL_STATE(9874)] = 358061, + [SMALL_STATE(9875)] = 358074, + [SMALL_STATE(9876)] = 358087, + [SMALL_STATE(9877)] = 358100, + [SMALL_STATE(9878)] = 358113, + [SMALL_STATE(9879)] = 358126, + [SMALL_STATE(9880)] = 358139, + [SMALL_STATE(9881)] = 358152, + [SMALL_STATE(9882)] = 358165, + [SMALL_STATE(9883)] = 358178, + [SMALL_STATE(9884)] = 358191, + [SMALL_STATE(9885)] = 358204, + [SMALL_STATE(9886)] = 358217, + [SMALL_STATE(9887)] = 358230, + [SMALL_STATE(9888)] = 358243, + [SMALL_STATE(9889)] = 358256, + [SMALL_STATE(9890)] = 358269, + [SMALL_STATE(9891)] = 358282, + [SMALL_STATE(9892)] = 358295, + [SMALL_STATE(9893)] = 358308, + [SMALL_STATE(9894)] = 358321, + [SMALL_STATE(9895)] = 358332, + [SMALL_STATE(9896)] = 358345, + [SMALL_STATE(9897)] = 358358, + [SMALL_STATE(9898)] = 358371, + [SMALL_STATE(9899)] = 358384, + [SMALL_STATE(9900)] = 358397, + [SMALL_STATE(9901)] = 358410, + [SMALL_STATE(9902)] = 358423, + [SMALL_STATE(9903)] = 358436, + [SMALL_STATE(9904)] = 358449, + [SMALL_STATE(9905)] = 358460, + [SMALL_STATE(9906)] = 358473, + [SMALL_STATE(9907)] = 358486, + [SMALL_STATE(9908)] = 358499, + [SMALL_STATE(9909)] = 358512, + [SMALL_STATE(9910)] = 358525, + [SMALL_STATE(9911)] = 358538, + [SMALL_STATE(9912)] = 358551, + [SMALL_STATE(9913)] = 358564, + [SMALL_STATE(9914)] = 358577, + [SMALL_STATE(9915)] = 358588, + [SMALL_STATE(9916)] = 358601, + [SMALL_STATE(9917)] = 358614, + [SMALL_STATE(9918)] = 358627, + [SMALL_STATE(9919)] = 358640, + [SMALL_STATE(9920)] = 358653, + [SMALL_STATE(9921)] = 358666, + [SMALL_STATE(9922)] = 358679, + [SMALL_STATE(9923)] = 358692, + [SMALL_STATE(9924)] = 358705, + [SMALL_STATE(9925)] = 358718, + [SMALL_STATE(9926)] = 358731, + [SMALL_STATE(9927)] = 358742, + [SMALL_STATE(9928)] = 358755, + [SMALL_STATE(9929)] = 358768, + [SMALL_STATE(9930)] = 358781, + [SMALL_STATE(9931)] = 358794, + [SMALL_STATE(9932)] = 358807, + [SMALL_STATE(9933)] = 358820, + [SMALL_STATE(9934)] = 358833, + [SMALL_STATE(9935)] = 358846, + [SMALL_STATE(9936)] = 358859, + [SMALL_STATE(9937)] = 358872, + [SMALL_STATE(9938)] = 358885, + [SMALL_STATE(9939)] = 358898, + [SMALL_STATE(9940)] = 358911, + [SMALL_STATE(9941)] = 358922, + [SMALL_STATE(9942)] = 358935, + [SMALL_STATE(9943)] = 358948, + [SMALL_STATE(9944)] = 358961, + [SMALL_STATE(9945)] = 358974, + [SMALL_STATE(9946)] = 358987, + [SMALL_STATE(9947)] = 358998, + [SMALL_STATE(9948)] = 359011, + [SMALL_STATE(9949)] = 359024, + [SMALL_STATE(9950)] = 359037, + [SMALL_STATE(9951)] = 359050, + [SMALL_STATE(9952)] = 359063, + [SMALL_STATE(9953)] = 359076, + [SMALL_STATE(9954)] = 359087, + [SMALL_STATE(9955)] = 359100, + [SMALL_STATE(9956)] = 359113, + [SMALL_STATE(9957)] = 359126, + [SMALL_STATE(9958)] = 359135, + [SMALL_STATE(9959)] = 359148, + [SMALL_STATE(9960)] = 359159, + [SMALL_STATE(9961)] = 359172, + [SMALL_STATE(9962)] = 359183, + [SMALL_STATE(9963)] = 359196, + [SMALL_STATE(9964)] = 359209, + [SMALL_STATE(9965)] = 359222, + [SMALL_STATE(9966)] = 359233, + [SMALL_STATE(9967)] = 359242, + [SMALL_STATE(9968)] = 359255, + [SMALL_STATE(9969)] = 359268, + [SMALL_STATE(9970)] = 359281, + [SMALL_STATE(9971)] = 359294, + [SMALL_STATE(9972)] = 359307, + [SMALL_STATE(9973)] = 359320, + [SMALL_STATE(9974)] = 359333, + [SMALL_STATE(9975)] = 359346, + [SMALL_STATE(9976)] = 359359, + [SMALL_STATE(9977)] = 359372, + [SMALL_STATE(9978)] = 359385, + [SMALL_STATE(9979)] = 359398, + [SMALL_STATE(9980)] = 359411, + [SMALL_STATE(9981)] = 359422, + [SMALL_STATE(9982)] = 359435, + [SMALL_STATE(9983)] = 359448, + [SMALL_STATE(9984)] = 359459, + [SMALL_STATE(9985)] = 359470, + [SMALL_STATE(9986)] = 359483, + [SMALL_STATE(9987)] = 359496, + [SMALL_STATE(9988)] = 359509, + [SMALL_STATE(9989)] = 359522, + [SMALL_STATE(9990)] = 359535, + [SMALL_STATE(9991)] = 359546, + [SMALL_STATE(9992)] = 359559, + [SMALL_STATE(9993)] = 359572, + [SMALL_STATE(9994)] = 359585, + [SMALL_STATE(9995)] = 359598, + [SMALL_STATE(9996)] = 359611, + [SMALL_STATE(9997)] = 359624, + [SMALL_STATE(9998)] = 359637, + [SMALL_STATE(9999)] = 359650, + [SMALL_STATE(10000)] = 359663, + [SMALL_STATE(10001)] = 359676, + [SMALL_STATE(10002)] = 359685, + [SMALL_STATE(10003)] = 359698, + [SMALL_STATE(10004)] = 359709, + [SMALL_STATE(10005)] = 359722, + [SMALL_STATE(10006)] = 359735, + [SMALL_STATE(10007)] = 359748, + [SMALL_STATE(10008)] = 359761, + [SMALL_STATE(10009)] = 359774, + [SMALL_STATE(10010)] = 359787, + [SMALL_STATE(10011)] = 359796, + [SMALL_STATE(10012)] = 359807, + [SMALL_STATE(10013)] = 359820, + [SMALL_STATE(10014)] = 359833, + [SMALL_STATE(10015)] = 359846, + [SMALL_STATE(10016)] = 359857, + [SMALL_STATE(10017)] = 359870, + [SMALL_STATE(10018)] = 359883, + [SMALL_STATE(10019)] = 359896, + [SMALL_STATE(10020)] = 359909, + [SMALL_STATE(10021)] = 359922, + [SMALL_STATE(10022)] = 359935, + [SMALL_STATE(10023)] = 359948, + [SMALL_STATE(10024)] = 359961, + [SMALL_STATE(10025)] = 359974, + [SMALL_STATE(10026)] = 359987, + [SMALL_STATE(10027)] = 360000, + [SMALL_STATE(10028)] = 360013, + [SMALL_STATE(10029)] = 360026, + [SMALL_STATE(10030)] = 360037, + [SMALL_STATE(10031)] = 360050, + [SMALL_STATE(10032)] = 360063, + [SMALL_STATE(10033)] = 360076, + [SMALL_STATE(10034)] = 360089, + [SMALL_STATE(10035)] = 360102, + [SMALL_STATE(10036)] = 360113, + [SMALL_STATE(10037)] = 360124, + [SMALL_STATE(10038)] = 360137, + [SMALL_STATE(10039)] = 360150, + [SMALL_STATE(10040)] = 360163, + [SMALL_STATE(10041)] = 360176, + [SMALL_STATE(10042)] = 360189, + [SMALL_STATE(10043)] = 360202, + [SMALL_STATE(10044)] = 360215, + [SMALL_STATE(10045)] = 360228, + [SMALL_STATE(10046)] = 360241, + [SMALL_STATE(10047)] = 360252, + [SMALL_STATE(10048)] = 360263, + [SMALL_STATE(10049)] = 360276, + [SMALL_STATE(10050)] = 360287, + [SMALL_STATE(10051)] = 360300, + [SMALL_STATE(10052)] = 360313, + [SMALL_STATE(10053)] = 360326, + [SMALL_STATE(10054)] = 360339, + [SMALL_STATE(10055)] = 360352, + [SMALL_STATE(10056)] = 360365, + [SMALL_STATE(10057)] = 360378, + [SMALL_STATE(10058)] = 360391, + [SMALL_STATE(10059)] = 360402, + [SMALL_STATE(10060)] = 360415, + [SMALL_STATE(10061)] = 360426, + [SMALL_STATE(10062)] = 360439, + [SMALL_STATE(10063)] = 360452, + [SMALL_STATE(10064)] = 360465, + [SMALL_STATE(10065)] = 360478, + [SMALL_STATE(10066)] = 360491, + [SMALL_STATE(10067)] = 360504, + [SMALL_STATE(10068)] = 360517, + [SMALL_STATE(10069)] = 360530, + [SMALL_STATE(10070)] = 360541, + [SMALL_STATE(10071)] = 360554, + [SMALL_STATE(10072)] = 360565, + [SMALL_STATE(10073)] = 360578, + [SMALL_STATE(10074)] = 360589, + [SMALL_STATE(10075)] = 360602, + [SMALL_STATE(10076)] = 360613, + [SMALL_STATE(10077)] = 360624, + [SMALL_STATE(10078)] = 360637, + [SMALL_STATE(10079)] = 360650, + [SMALL_STATE(10080)] = 360663, + [SMALL_STATE(10081)] = 360676, + [SMALL_STATE(10082)] = 360689, + [SMALL_STATE(10083)] = 360702, + [SMALL_STATE(10084)] = 360715, + [SMALL_STATE(10085)] = 360728, + [SMALL_STATE(10086)] = 360741, + [SMALL_STATE(10087)] = 360754, + [SMALL_STATE(10088)] = 360767, + [SMALL_STATE(10089)] = 360780, + [SMALL_STATE(10090)] = 360793, + [SMALL_STATE(10091)] = 360806, + [SMALL_STATE(10092)] = 360819, + [SMALL_STATE(10093)] = 360832, + [SMALL_STATE(10094)] = 360845, + [SMALL_STATE(10095)] = 360858, + [SMALL_STATE(10096)] = 360871, + [SMALL_STATE(10097)] = 360882, + [SMALL_STATE(10098)] = 360893, + [SMALL_STATE(10099)] = 360906, + [SMALL_STATE(10100)] = 360919, + [SMALL_STATE(10101)] = 360932, + [SMALL_STATE(10102)] = 360945, + [SMALL_STATE(10103)] = 360958, + [SMALL_STATE(10104)] = 360971, + [SMALL_STATE(10105)] = 360984, + [SMALL_STATE(10106)] = 360997, + [SMALL_STATE(10107)] = 361010, + [SMALL_STATE(10108)] = 361023, + [SMALL_STATE(10109)] = 361036, + [SMALL_STATE(10110)] = 361049, + [SMALL_STATE(10111)] = 361062, + [SMALL_STATE(10112)] = 361075, + [SMALL_STATE(10113)] = 361088, + [SMALL_STATE(10114)] = 361101, + [SMALL_STATE(10115)] = 361112, + [SMALL_STATE(10116)] = 361125, + [SMALL_STATE(10117)] = 361138, + [SMALL_STATE(10118)] = 361151, + [SMALL_STATE(10119)] = 361164, + [SMALL_STATE(10120)] = 361175, + [SMALL_STATE(10121)] = 361188, + [SMALL_STATE(10122)] = 361201, + [SMALL_STATE(10123)] = 361214, + [SMALL_STATE(10124)] = 361227, + [SMALL_STATE(10125)] = 361240, + [SMALL_STATE(10126)] = 361253, + [SMALL_STATE(10127)] = 361266, + [SMALL_STATE(10128)] = 361279, + [SMALL_STATE(10129)] = 361292, + [SMALL_STATE(10130)] = 361305, + [SMALL_STATE(10131)] = 361318, + [SMALL_STATE(10132)] = 361331, + [SMALL_STATE(10133)] = 361344, + [SMALL_STATE(10134)] = 361355, + [SMALL_STATE(10135)] = 361368, + [SMALL_STATE(10136)] = 361381, + [SMALL_STATE(10137)] = 361394, + [SMALL_STATE(10138)] = 361407, + [SMALL_STATE(10139)] = 361420, + [SMALL_STATE(10140)] = 361433, + [SMALL_STATE(10141)] = 361446, + [SMALL_STATE(10142)] = 361459, + [SMALL_STATE(10143)] = 361470, + [SMALL_STATE(10144)] = 361483, + [SMALL_STATE(10145)] = 361496, + [SMALL_STATE(10146)] = 361509, + [SMALL_STATE(10147)] = 361522, + [SMALL_STATE(10148)] = 361535, + [SMALL_STATE(10149)] = 361546, + [SMALL_STATE(10150)] = 361559, + [SMALL_STATE(10151)] = 361572, + [SMALL_STATE(10152)] = 361585, + [SMALL_STATE(10153)] = 361598, + [SMALL_STATE(10154)] = 361609, + [SMALL_STATE(10155)] = 361622, + [SMALL_STATE(10156)] = 361635, + [SMALL_STATE(10157)] = 361644, + [SMALL_STATE(10158)] = 361657, + [SMALL_STATE(10159)] = 361670, + [SMALL_STATE(10160)] = 361683, + [SMALL_STATE(10161)] = 361696, + [SMALL_STATE(10162)] = 361709, + [SMALL_STATE(10163)] = 361722, + [SMALL_STATE(10164)] = 361735, + [SMALL_STATE(10165)] = 361748, + [SMALL_STATE(10166)] = 361761, + [SMALL_STATE(10167)] = 361774, + [SMALL_STATE(10168)] = 361783, + [SMALL_STATE(10169)] = 361796, + [SMALL_STATE(10170)] = 361809, + [SMALL_STATE(10171)] = 361822, + [SMALL_STATE(10172)] = 361835, + [SMALL_STATE(10173)] = 361848, + [SMALL_STATE(10174)] = 361861, + [SMALL_STATE(10175)] = 361874, + [SMALL_STATE(10176)] = 361887, + [SMALL_STATE(10177)] = 361900, + [SMALL_STATE(10178)] = 361913, + [SMALL_STATE(10179)] = 361926, + [SMALL_STATE(10180)] = 361939, + [SMALL_STATE(10181)] = 361952, + [SMALL_STATE(10182)] = 361965, + [SMALL_STATE(10183)] = 361978, + [SMALL_STATE(10184)] = 361991, + [SMALL_STATE(10185)] = 362004, + [SMALL_STATE(10186)] = 362017, + [SMALL_STATE(10187)] = 362030, + [SMALL_STATE(10188)] = 362043, + [SMALL_STATE(10189)] = 362056, + [SMALL_STATE(10190)] = 362069, + [SMALL_STATE(10191)] = 362082, + [SMALL_STATE(10192)] = 362095, + [SMALL_STATE(10193)] = 362108, + [SMALL_STATE(10194)] = 362121, + [SMALL_STATE(10195)] = 362134, + [SMALL_STATE(10196)] = 362147, + [SMALL_STATE(10197)] = 362160, + [SMALL_STATE(10198)] = 362173, + [SMALL_STATE(10199)] = 362184, + [SMALL_STATE(10200)] = 362197, + [SMALL_STATE(10201)] = 362210, + [SMALL_STATE(10202)] = 362223, + [SMALL_STATE(10203)] = 362236, + [SMALL_STATE(10204)] = 362249, + [SMALL_STATE(10205)] = 362258, + [SMALL_STATE(10206)] = 362271, + [SMALL_STATE(10207)] = 362282, + [SMALL_STATE(10208)] = 362292, + [SMALL_STATE(10209)] = 362302, + [SMALL_STATE(10210)] = 362312, + [SMALL_STATE(10211)] = 362322, + [SMALL_STATE(10212)] = 362332, + [SMALL_STATE(10213)] = 362342, + [SMALL_STATE(10214)] = 362352, + [SMALL_STATE(10215)] = 362362, + [SMALL_STATE(10216)] = 362372, + [SMALL_STATE(10217)] = 362382, + [SMALL_STATE(10218)] = 362392, + [SMALL_STATE(10219)] = 362402, + [SMALL_STATE(10220)] = 362412, + [SMALL_STATE(10221)] = 362422, + [SMALL_STATE(10222)] = 362432, + [SMALL_STATE(10223)] = 362442, + [SMALL_STATE(10224)] = 362452, + [SMALL_STATE(10225)] = 362462, + [SMALL_STATE(10226)] = 362472, + [SMALL_STATE(10227)] = 362482, + [SMALL_STATE(10228)] = 362492, + [SMALL_STATE(10229)] = 362502, + [SMALL_STATE(10230)] = 362512, + [SMALL_STATE(10231)] = 362522, + [SMALL_STATE(10232)] = 362532, + [SMALL_STATE(10233)] = 362542, + [SMALL_STATE(10234)] = 362552, + [SMALL_STATE(10235)] = 362562, + [SMALL_STATE(10236)] = 362572, + [SMALL_STATE(10237)] = 362582, + [SMALL_STATE(10238)] = 362592, + [SMALL_STATE(10239)] = 362602, + [SMALL_STATE(10240)] = 362612, + [SMALL_STATE(10241)] = 362622, + [SMALL_STATE(10242)] = 362632, + [SMALL_STATE(10243)] = 362642, + [SMALL_STATE(10244)] = 362652, + [SMALL_STATE(10245)] = 362662, + [SMALL_STATE(10246)] = 362672, + [SMALL_STATE(10247)] = 362680, + [SMALL_STATE(10248)] = 362690, + [SMALL_STATE(10249)] = 362700, + [SMALL_STATE(10250)] = 362710, + [SMALL_STATE(10251)] = 362720, + [SMALL_STATE(10252)] = 362730, + [SMALL_STATE(10253)] = 362740, + [SMALL_STATE(10254)] = 362750, + [SMALL_STATE(10255)] = 362760, + [SMALL_STATE(10256)] = 362770, + [SMALL_STATE(10257)] = 362780, + [SMALL_STATE(10258)] = 362790, + [SMALL_STATE(10259)] = 362798, + [SMALL_STATE(10260)] = 362808, + [SMALL_STATE(10261)] = 362818, + [SMALL_STATE(10262)] = 362828, + [SMALL_STATE(10263)] = 362838, + [SMALL_STATE(10264)] = 362848, + [SMALL_STATE(10265)] = 362858, + [SMALL_STATE(10266)] = 362868, + [SMALL_STATE(10267)] = 362878, + [SMALL_STATE(10268)] = 362888, + [SMALL_STATE(10269)] = 362896, + [SMALL_STATE(10270)] = 362906, + [SMALL_STATE(10271)] = 362916, + [SMALL_STATE(10272)] = 362926, + [SMALL_STATE(10273)] = 362936, + [SMALL_STATE(10274)] = 362944, + [SMALL_STATE(10275)] = 362954, + [SMALL_STATE(10276)] = 362964, + [SMALL_STATE(10277)] = 362974, + [SMALL_STATE(10278)] = 362984, + [SMALL_STATE(10279)] = 362994, + [SMALL_STATE(10280)] = 363004, + [SMALL_STATE(10281)] = 363014, + [SMALL_STATE(10282)] = 363024, + [SMALL_STATE(10283)] = 363034, + [SMALL_STATE(10284)] = 363042, + [SMALL_STATE(10285)] = 363052, + [SMALL_STATE(10286)] = 363062, + [SMALL_STATE(10287)] = 363072, + [SMALL_STATE(10288)] = 363082, + [SMALL_STATE(10289)] = 363092, + [SMALL_STATE(10290)] = 363100, + [SMALL_STATE(10291)] = 363110, + [SMALL_STATE(10292)] = 363120, + [SMALL_STATE(10293)] = 363130, + [SMALL_STATE(10294)] = 363138, + [SMALL_STATE(10295)] = 363148, + [SMALL_STATE(10296)] = 363158, + [SMALL_STATE(10297)] = 363168, + [SMALL_STATE(10298)] = 363178, + [SMALL_STATE(10299)] = 363188, + [SMALL_STATE(10300)] = 363198, + [SMALL_STATE(10301)] = 363208, + [SMALL_STATE(10302)] = 363218, + [SMALL_STATE(10303)] = 363228, + [SMALL_STATE(10304)] = 363236, + [SMALL_STATE(10305)] = 363246, + [SMALL_STATE(10306)] = 363256, + [SMALL_STATE(10307)] = 363266, + [SMALL_STATE(10308)] = 363276, + [SMALL_STATE(10309)] = 363286, + [SMALL_STATE(10310)] = 363296, + [SMALL_STATE(10311)] = 363306, + [SMALL_STATE(10312)] = 363316, + [SMALL_STATE(10313)] = 363326, + [SMALL_STATE(10314)] = 363336, + [SMALL_STATE(10315)] = 363346, + [SMALL_STATE(10316)] = 363356, + [SMALL_STATE(10317)] = 363366, + [SMALL_STATE(10318)] = 363376, + [SMALL_STATE(10319)] = 363386, + [SMALL_STATE(10320)] = 363396, + [SMALL_STATE(10321)] = 363406, + [SMALL_STATE(10322)] = 363416, + [SMALL_STATE(10323)] = 363426, + [SMALL_STATE(10324)] = 363436, + [SMALL_STATE(10325)] = 363446, + [SMALL_STATE(10326)] = 363456, + [SMALL_STATE(10327)] = 363466, + [SMALL_STATE(10328)] = 363476, + [SMALL_STATE(10329)] = 363486, + [SMALL_STATE(10330)] = 363496, + [SMALL_STATE(10331)] = 363506, + [SMALL_STATE(10332)] = 363516, + [SMALL_STATE(10333)] = 363524, + [SMALL_STATE(10334)] = 363534, + [SMALL_STATE(10335)] = 363542, + [SMALL_STATE(10336)] = 363552, + [SMALL_STATE(10337)] = 363562, + [SMALL_STATE(10338)] = 363572, + [SMALL_STATE(10339)] = 363582, + [SMALL_STATE(10340)] = 363592, + [SMALL_STATE(10341)] = 363602, + [SMALL_STATE(10342)] = 363612, + [SMALL_STATE(10343)] = 363622, + [SMALL_STATE(10344)] = 363632, + [SMALL_STATE(10345)] = 363642, + [SMALL_STATE(10346)] = 363652, + [SMALL_STATE(10347)] = 363662, + [SMALL_STATE(10348)] = 363672, + [SMALL_STATE(10349)] = 363682, + [SMALL_STATE(10350)] = 363692, + [SMALL_STATE(10351)] = 363702, + [SMALL_STATE(10352)] = 363712, + [SMALL_STATE(10353)] = 363722, + [SMALL_STATE(10354)] = 363730, + [SMALL_STATE(10355)] = 363740, + [SMALL_STATE(10356)] = 363750, + [SMALL_STATE(10357)] = 363760, + [SMALL_STATE(10358)] = 363770, + [SMALL_STATE(10359)] = 363780, + [SMALL_STATE(10360)] = 363790, + [SMALL_STATE(10361)] = 363800, + [SMALL_STATE(10362)] = 363810, + [SMALL_STATE(10363)] = 363820, + [SMALL_STATE(10364)] = 363830, + [SMALL_STATE(10365)] = 363840, + [SMALL_STATE(10366)] = 363850, + [SMALL_STATE(10367)] = 363860, + [SMALL_STATE(10368)] = 363870, + [SMALL_STATE(10369)] = 363880, + [SMALL_STATE(10370)] = 363890, + [SMALL_STATE(10371)] = 363900, + [SMALL_STATE(10372)] = 363910, + [SMALL_STATE(10373)] = 363920, + [SMALL_STATE(10374)] = 363930, + [SMALL_STATE(10375)] = 363940, + [SMALL_STATE(10376)] = 363950, + [SMALL_STATE(10377)] = 363960, + [SMALL_STATE(10378)] = 363970, + [SMALL_STATE(10379)] = 363980, + [SMALL_STATE(10380)] = 363990, + [SMALL_STATE(10381)] = 364000, + [SMALL_STATE(10382)] = 364010, + [SMALL_STATE(10383)] = 364020, + [SMALL_STATE(10384)] = 364030, + [SMALL_STATE(10385)] = 364040, + [SMALL_STATE(10386)] = 364050, + [SMALL_STATE(10387)] = 364060, + [SMALL_STATE(10388)] = 364070, + [SMALL_STATE(10389)] = 364080, + [SMALL_STATE(10390)] = 364090, + [SMALL_STATE(10391)] = 364100, + [SMALL_STATE(10392)] = 364108, + [SMALL_STATE(10393)] = 364118, + [SMALL_STATE(10394)] = 364128, + [SMALL_STATE(10395)] = 364138, + [SMALL_STATE(10396)] = 364148, + [SMALL_STATE(10397)] = 364158, + [SMALL_STATE(10398)] = 364168, + [SMALL_STATE(10399)] = 364178, + [SMALL_STATE(10400)] = 364188, + [SMALL_STATE(10401)] = 364198, + [SMALL_STATE(10402)] = 364208, + [SMALL_STATE(10403)] = 364218, + [SMALL_STATE(10404)] = 364228, + [SMALL_STATE(10405)] = 364238, + [SMALL_STATE(10406)] = 364248, + [SMALL_STATE(10407)] = 364258, + [SMALL_STATE(10408)] = 364268, + [SMALL_STATE(10409)] = 364278, + [SMALL_STATE(10410)] = 364286, + [SMALL_STATE(10411)] = 364296, + [SMALL_STATE(10412)] = 364306, + [SMALL_STATE(10413)] = 364316, + [SMALL_STATE(10414)] = 364324, + [SMALL_STATE(10415)] = 364334, + [SMALL_STATE(10416)] = 364344, + [SMALL_STATE(10417)] = 364354, + [SMALL_STATE(10418)] = 364364, + [SMALL_STATE(10419)] = 364372, + [SMALL_STATE(10420)] = 364382, + [SMALL_STATE(10421)] = 364392, + [SMALL_STATE(10422)] = 364402, + [SMALL_STATE(10423)] = 364412, + [SMALL_STATE(10424)] = 364422, + [SMALL_STATE(10425)] = 364432, + [SMALL_STATE(10426)] = 364442, + [SMALL_STATE(10427)] = 364450, + [SMALL_STATE(10428)] = 364460, + [SMALL_STATE(10429)] = 364470, + [SMALL_STATE(10430)] = 364480, + [SMALL_STATE(10431)] = 364490, + [SMALL_STATE(10432)] = 364500, + [SMALL_STATE(10433)] = 364508, + [SMALL_STATE(10434)] = 364518, + [SMALL_STATE(10435)] = 364528, + [SMALL_STATE(10436)] = 364538, + [SMALL_STATE(10437)] = 364548, + [SMALL_STATE(10438)] = 364558, + [SMALL_STATE(10439)] = 364568, + [SMALL_STATE(10440)] = 364578, + [SMALL_STATE(10441)] = 364588, + [SMALL_STATE(10442)] = 364596, + [SMALL_STATE(10443)] = 364606, + [SMALL_STATE(10444)] = 364616, + [SMALL_STATE(10445)] = 364626, + [SMALL_STATE(10446)] = 364636, + [SMALL_STATE(10447)] = 364646, + [SMALL_STATE(10448)] = 364656, + [SMALL_STATE(10449)] = 364666, + [SMALL_STATE(10450)] = 364676, + [SMALL_STATE(10451)] = 364686, + [SMALL_STATE(10452)] = 364696, + [SMALL_STATE(10453)] = 364706, + [SMALL_STATE(10454)] = 364716, + [SMALL_STATE(10455)] = 364726, + [SMALL_STATE(10456)] = 364736, + [SMALL_STATE(10457)] = 364746, + [SMALL_STATE(10458)] = 364756, + [SMALL_STATE(10459)] = 364764, + [SMALL_STATE(10460)] = 364774, + [SMALL_STATE(10461)] = 364784, + [SMALL_STATE(10462)] = 364792, + [SMALL_STATE(10463)] = 364802, + [SMALL_STATE(10464)] = 364812, + [SMALL_STATE(10465)] = 364822, + [SMALL_STATE(10466)] = 364832, + [SMALL_STATE(10467)] = 364842, + [SMALL_STATE(10468)] = 364852, + [SMALL_STATE(10469)] = 364862, + [SMALL_STATE(10470)] = 364872, + [SMALL_STATE(10471)] = 364882, + [SMALL_STATE(10472)] = 364892, + [SMALL_STATE(10473)] = 364902, + [SMALL_STATE(10474)] = 364912, + [SMALL_STATE(10475)] = 364922, + [SMALL_STATE(10476)] = 364930, + [SMALL_STATE(10477)] = 364940, + [SMALL_STATE(10478)] = 364950, + [SMALL_STATE(10479)] = 364960, + [SMALL_STATE(10480)] = 364970, + [SMALL_STATE(10481)] = 364980, + [SMALL_STATE(10482)] = 364990, + [SMALL_STATE(10483)] = 364998, + [SMALL_STATE(10484)] = 365008, + [SMALL_STATE(10485)] = 365018, + [SMALL_STATE(10486)] = 365028, + [SMALL_STATE(10487)] = 365038, + [SMALL_STATE(10488)] = 365048, + [SMALL_STATE(10489)] = 365058, + [SMALL_STATE(10490)] = 365068, + [SMALL_STATE(10491)] = 365078, + [SMALL_STATE(10492)] = 365088, + [SMALL_STATE(10493)] = 365098, + [SMALL_STATE(10494)] = 365108, + [SMALL_STATE(10495)] = 365118, + [SMALL_STATE(10496)] = 365128, + [SMALL_STATE(10497)] = 365136, + [SMALL_STATE(10498)] = 365146, + [SMALL_STATE(10499)] = 365156, + [SMALL_STATE(10500)] = 365166, + [SMALL_STATE(10501)] = 365176, + [SMALL_STATE(10502)] = 365186, + [SMALL_STATE(10503)] = 365194, + [SMALL_STATE(10504)] = 365204, + [SMALL_STATE(10505)] = 365214, + [SMALL_STATE(10506)] = 365224, + [SMALL_STATE(10507)] = 365232, + [SMALL_STATE(10508)] = 365242, + [SMALL_STATE(10509)] = 365252, + [SMALL_STATE(10510)] = 365262, + [SMALL_STATE(10511)] = 365272, + [SMALL_STATE(10512)] = 365282, + [SMALL_STATE(10513)] = 365290, + [SMALL_STATE(10514)] = 365298, + [SMALL_STATE(10515)] = 365308, + [SMALL_STATE(10516)] = 365318, + [SMALL_STATE(10517)] = 365328, + [SMALL_STATE(10518)] = 365338, + [SMALL_STATE(10519)] = 365348, + [SMALL_STATE(10520)] = 365358, + [SMALL_STATE(10521)] = 365368, + [SMALL_STATE(10522)] = 365378, + [SMALL_STATE(10523)] = 365388, + [SMALL_STATE(10524)] = 365398, + [SMALL_STATE(10525)] = 365408, + [SMALL_STATE(10526)] = 365418, + [SMALL_STATE(10527)] = 365428, + [SMALL_STATE(10528)] = 365438, + [SMALL_STATE(10529)] = 365448, + [SMALL_STATE(10530)] = 365458, + [SMALL_STATE(10531)] = 365468, + [SMALL_STATE(10532)] = 365478, + [SMALL_STATE(10533)] = 365488, + [SMALL_STATE(10534)] = 365498, + [SMALL_STATE(10535)] = 365508, + [SMALL_STATE(10536)] = 365516, + [SMALL_STATE(10537)] = 365526, + [SMALL_STATE(10538)] = 365534, + [SMALL_STATE(10539)] = 365544, + [SMALL_STATE(10540)] = 365554, + [SMALL_STATE(10541)] = 365564, + [SMALL_STATE(10542)] = 365574, + [SMALL_STATE(10543)] = 365584, + [SMALL_STATE(10544)] = 365594, + [SMALL_STATE(10545)] = 365604, + [SMALL_STATE(10546)] = 365614, + [SMALL_STATE(10547)] = 365624, + [SMALL_STATE(10548)] = 365632, + [SMALL_STATE(10549)] = 365642, + [SMALL_STATE(10550)] = 365652, + [SMALL_STATE(10551)] = 365662, + [SMALL_STATE(10552)] = 365670, + [SMALL_STATE(10553)] = 365680, + [SMALL_STATE(10554)] = 365690, + [SMALL_STATE(10555)] = 365700, + [SMALL_STATE(10556)] = 365710, + [SMALL_STATE(10557)] = 365718, + [SMALL_STATE(10558)] = 365728, + [SMALL_STATE(10559)] = 365738, + [SMALL_STATE(10560)] = 365748, + [SMALL_STATE(10561)] = 365756, + [SMALL_STATE(10562)] = 365766, + [SMALL_STATE(10563)] = 365774, + [SMALL_STATE(10564)] = 365784, + [SMALL_STATE(10565)] = 365792, + [SMALL_STATE(10566)] = 365802, + [SMALL_STATE(10567)] = 365812, + [SMALL_STATE(10568)] = 365822, + [SMALL_STATE(10569)] = 365832, + [SMALL_STATE(10570)] = 365840, + [SMALL_STATE(10571)] = 365850, + [SMALL_STATE(10572)] = 365860, + [SMALL_STATE(10573)] = 365870, + [SMALL_STATE(10574)] = 365880, + [SMALL_STATE(10575)] = 365890, + [SMALL_STATE(10576)] = 365900, + [SMALL_STATE(10577)] = 365908, + [SMALL_STATE(10578)] = 365918, + [SMALL_STATE(10579)] = 365926, + [SMALL_STATE(10580)] = 365934, + [SMALL_STATE(10581)] = 365944, + [SMALL_STATE(10582)] = 365952, + [SMALL_STATE(10583)] = 365960, + [SMALL_STATE(10584)] = 365970, + [SMALL_STATE(10585)] = 365980, + [SMALL_STATE(10586)] = 365990, + [SMALL_STATE(10587)] = 365998, + [SMALL_STATE(10588)] = 366008, + [SMALL_STATE(10589)] = 366018, + [SMALL_STATE(10590)] = 366028, + [SMALL_STATE(10591)] = 366038, + [SMALL_STATE(10592)] = 366048, + [SMALL_STATE(10593)] = 366056, + [SMALL_STATE(10594)] = 366066, + [SMALL_STATE(10595)] = 366074, + [SMALL_STATE(10596)] = 366084, + [SMALL_STATE(10597)] = 366094, + [SMALL_STATE(10598)] = 366104, + [SMALL_STATE(10599)] = 366114, + [SMALL_STATE(10600)] = 366124, + [SMALL_STATE(10601)] = 366134, + [SMALL_STATE(10602)] = 366144, + [SMALL_STATE(10603)] = 366154, + [SMALL_STATE(10604)] = 366164, + [SMALL_STATE(10605)] = 366174, + [SMALL_STATE(10606)] = 366184, + [SMALL_STATE(10607)] = 366194, + [SMALL_STATE(10608)] = 366204, + [SMALL_STATE(10609)] = 366214, + [SMALL_STATE(10610)] = 366224, + [SMALL_STATE(10611)] = 366234, + [SMALL_STATE(10612)] = 366244, + [SMALL_STATE(10613)] = 366254, + [SMALL_STATE(10614)] = 366264, + [SMALL_STATE(10615)] = 366274, + [SMALL_STATE(10616)] = 366284, + [SMALL_STATE(10617)] = 366294, + [SMALL_STATE(10618)] = 366302, + [SMALL_STATE(10619)] = 366312, + [SMALL_STATE(10620)] = 366322, + [SMALL_STATE(10621)] = 366330, + [SMALL_STATE(10622)] = 366340, + [SMALL_STATE(10623)] = 366350, + [SMALL_STATE(10624)] = 366360, + [SMALL_STATE(10625)] = 366370, + [SMALL_STATE(10626)] = 366380, + [SMALL_STATE(10627)] = 366390, + [SMALL_STATE(10628)] = 366397, + [SMALL_STATE(10629)] = 366404, + [SMALL_STATE(10630)] = 366411, + [SMALL_STATE(10631)] = 366418, + [SMALL_STATE(10632)] = 366425, + [SMALL_STATE(10633)] = 366432, + [SMALL_STATE(10634)] = 366439, + [SMALL_STATE(10635)] = 366446, + [SMALL_STATE(10636)] = 366453, + [SMALL_STATE(10637)] = 366460, + [SMALL_STATE(10638)] = 366467, + [SMALL_STATE(10639)] = 366474, + [SMALL_STATE(10640)] = 366481, + [SMALL_STATE(10641)] = 366488, + [SMALL_STATE(10642)] = 366495, + [SMALL_STATE(10643)] = 366502, + [SMALL_STATE(10644)] = 366509, + [SMALL_STATE(10645)] = 366516, + [SMALL_STATE(10646)] = 366523, + [SMALL_STATE(10647)] = 366530, + [SMALL_STATE(10648)] = 366537, + [SMALL_STATE(10649)] = 366544, + [SMALL_STATE(10650)] = 366551, + [SMALL_STATE(10651)] = 366558, + [SMALL_STATE(10652)] = 366565, + [SMALL_STATE(10653)] = 366572, + [SMALL_STATE(10654)] = 366579, + [SMALL_STATE(10655)] = 366586, + [SMALL_STATE(10656)] = 366593, + [SMALL_STATE(10657)] = 366600, + [SMALL_STATE(10658)] = 366607, + [SMALL_STATE(10659)] = 366614, + [SMALL_STATE(10660)] = 366621, + [SMALL_STATE(10661)] = 366628, + [SMALL_STATE(10662)] = 366635, + [SMALL_STATE(10663)] = 366642, + [SMALL_STATE(10664)] = 366649, + [SMALL_STATE(10665)] = 366656, + [SMALL_STATE(10666)] = 366663, + [SMALL_STATE(10667)] = 366670, + [SMALL_STATE(10668)] = 366677, + [SMALL_STATE(10669)] = 366684, + [SMALL_STATE(10670)] = 366691, + [SMALL_STATE(10671)] = 366698, + [SMALL_STATE(10672)] = 366705, + [SMALL_STATE(10673)] = 366712, + [SMALL_STATE(10674)] = 366719, + [SMALL_STATE(10675)] = 366726, + [SMALL_STATE(10676)] = 366733, + [SMALL_STATE(10677)] = 366740, + [SMALL_STATE(10678)] = 366747, + [SMALL_STATE(10679)] = 366754, + [SMALL_STATE(10680)] = 366761, + [SMALL_STATE(10681)] = 366768, + [SMALL_STATE(10682)] = 366775, + [SMALL_STATE(10683)] = 366782, + [SMALL_STATE(10684)] = 366789, + [SMALL_STATE(10685)] = 366796, + [SMALL_STATE(10686)] = 366803, + [SMALL_STATE(10687)] = 366810, + [SMALL_STATE(10688)] = 366817, + [SMALL_STATE(10689)] = 366824, + [SMALL_STATE(10690)] = 366831, + [SMALL_STATE(10691)] = 366838, + [SMALL_STATE(10692)] = 366845, + [SMALL_STATE(10693)] = 366852, + [SMALL_STATE(10694)] = 366859, + [SMALL_STATE(10695)] = 366866, + [SMALL_STATE(10696)] = 366873, + [SMALL_STATE(10697)] = 366880, + [SMALL_STATE(10698)] = 366887, + [SMALL_STATE(10699)] = 366894, + [SMALL_STATE(10700)] = 366901, + [SMALL_STATE(10701)] = 366908, + [SMALL_STATE(10702)] = 366915, + [SMALL_STATE(10703)] = 366922, + [SMALL_STATE(10704)] = 366929, + [SMALL_STATE(10705)] = 366936, + [SMALL_STATE(10706)] = 366943, + [SMALL_STATE(10707)] = 366950, + [SMALL_STATE(10708)] = 366957, + [SMALL_STATE(10709)] = 366964, + [SMALL_STATE(10710)] = 366971, + [SMALL_STATE(10711)] = 366978, + [SMALL_STATE(10712)] = 366985, + [SMALL_STATE(10713)] = 366992, + [SMALL_STATE(10714)] = 366999, + [SMALL_STATE(10715)] = 367006, + [SMALL_STATE(10716)] = 367013, + [SMALL_STATE(10717)] = 367020, + [SMALL_STATE(10718)] = 367027, + [SMALL_STATE(10719)] = 367034, + [SMALL_STATE(10720)] = 367041, + [SMALL_STATE(10721)] = 367048, + [SMALL_STATE(10722)] = 367055, + [SMALL_STATE(10723)] = 367062, + [SMALL_STATE(10724)] = 367069, + [SMALL_STATE(10725)] = 367076, + [SMALL_STATE(10726)] = 367083, + [SMALL_STATE(10727)] = 367090, + [SMALL_STATE(10728)] = 367097, + [SMALL_STATE(10729)] = 367104, + [SMALL_STATE(10730)] = 367111, + [SMALL_STATE(10731)] = 367118, + [SMALL_STATE(10732)] = 367125, + [SMALL_STATE(10733)] = 367132, + [SMALL_STATE(10734)] = 367139, + [SMALL_STATE(10735)] = 367146, + [SMALL_STATE(10736)] = 367153, + [SMALL_STATE(10737)] = 367160, + [SMALL_STATE(10738)] = 367167, + [SMALL_STATE(10739)] = 367174, + [SMALL_STATE(10740)] = 367181, + [SMALL_STATE(10741)] = 367188, + [SMALL_STATE(10742)] = 367195, + [SMALL_STATE(10743)] = 367202, + [SMALL_STATE(10744)] = 367209, + [SMALL_STATE(10745)] = 367216, + [SMALL_STATE(10746)] = 367223, + [SMALL_STATE(10747)] = 367230, + [SMALL_STATE(10748)] = 367237, + [SMALL_STATE(10749)] = 367244, + [SMALL_STATE(10750)] = 367251, + [SMALL_STATE(10751)] = 367258, + [SMALL_STATE(10752)] = 367265, + [SMALL_STATE(10753)] = 367272, + [SMALL_STATE(10754)] = 367279, + [SMALL_STATE(10755)] = 367286, + [SMALL_STATE(10756)] = 367293, + [SMALL_STATE(10757)] = 367300, + [SMALL_STATE(10758)] = 367307, + [SMALL_STATE(10759)] = 367314, + [SMALL_STATE(10760)] = 367321, + [SMALL_STATE(10761)] = 367328, + [SMALL_STATE(10762)] = 367335, + [SMALL_STATE(10763)] = 367342, + [SMALL_STATE(10764)] = 367349, + [SMALL_STATE(10765)] = 367356, + [SMALL_STATE(10766)] = 367363, + [SMALL_STATE(10767)] = 367370, + [SMALL_STATE(10768)] = 367377, + [SMALL_STATE(10769)] = 367384, + [SMALL_STATE(10770)] = 367391, + [SMALL_STATE(10771)] = 367398, + [SMALL_STATE(10772)] = 367405, + [SMALL_STATE(10773)] = 367412, + [SMALL_STATE(10774)] = 367419, + [SMALL_STATE(10775)] = 367426, + [SMALL_STATE(10776)] = 367433, + [SMALL_STATE(10777)] = 367440, + [SMALL_STATE(10778)] = 367447, + [SMALL_STATE(10779)] = 367454, + [SMALL_STATE(10780)] = 367461, + [SMALL_STATE(10781)] = 367468, + [SMALL_STATE(10782)] = 367475, + [SMALL_STATE(10783)] = 367482, + [SMALL_STATE(10784)] = 367489, + [SMALL_STATE(10785)] = 367496, + [SMALL_STATE(10786)] = 367503, + [SMALL_STATE(10787)] = 367510, + [SMALL_STATE(10788)] = 367517, + [SMALL_STATE(10789)] = 367524, + [SMALL_STATE(10790)] = 367531, + [SMALL_STATE(10791)] = 367538, + [SMALL_STATE(10792)] = 367545, + [SMALL_STATE(10793)] = 367552, + [SMALL_STATE(10794)] = 367559, + [SMALL_STATE(10795)] = 367566, + [SMALL_STATE(10796)] = 367573, + [SMALL_STATE(10797)] = 367580, + [SMALL_STATE(10798)] = 367587, + [SMALL_STATE(10799)] = 367594, + [SMALL_STATE(10800)] = 367601, + [SMALL_STATE(10801)] = 367608, + [SMALL_STATE(10802)] = 367615, + [SMALL_STATE(10803)] = 367622, + [SMALL_STATE(10804)] = 367629, + [SMALL_STATE(10805)] = 367636, + [SMALL_STATE(10806)] = 367643, + [SMALL_STATE(10807)] = 367650, + [SMALL_STATE(10808)] = 367657, + [SMALL_STATE(10809)] = 367664, + [SMALL_STATE(10810)] = 367671, + [SMALL_STATE(10811)] = 367678, + [SMALL_STATE(10812)] = 367685, + [SMALL_STATE(10813)] = 367692, + [SMALL_STATE(10814)] = 367699, + [SMALL_STATE(10815)] = 367706, + [SMALL_STATE(10816)] = 367713, + [SMALL_STATE(10817)] = 367720, + [SMALL_STATE(10818)] = 367727, + [SMALL_STATE(10819)] = 367734, + [SMALL_STATE(10820)] = 367741, + [SMALL_STATE(10821)] = 367748, + [SMALL_STATE(10822)] = 367755, + [SMALL_STATE(10823)] = 367762, + [SMALL_STATE(10824)] = 367769, + [SMALL_STATE(10825)] = 367776, + [SMALL_STATE(10826)] = 367783, + [SMALL_STATE(10827)] = 367790, + [SMALL_STATE(10828)] = 367797, + [SMALL_STATE(10829)] = 367804, + [SMALL_STATE(10830)] = 367811, + [SMALL_STATE(10831)] = 367818, + [SMALL_STATE(10832)] = 367825, + [SMALL_STATE(10833)] = 367832, + [SMALL_STATE(10834)] = 367839, + [SMALL_STATE(10835)] = 367846, + [SMALL_STATE(10836)] = 367853, + [SMALL_STATE(10837)] = 367860, + [SMALL_STATE(10838)] = 367867, + [SMALL_STATE(10839)] = 367874, + [SMALL_STATE(10840)] = 367881, + [SMALL_STATE(10841)] = 367888, + [SMALL_STATE(10842)] = 367895, + [SMALL_STATE(10843)] = 367902, + [SMALL_STATE(10844)] = 367909, + [SMALL_STATE(10845)] = 367916, + [SMALL_STATE(10846)] = 367923, + [SMALL_STATE(10847)] = 367930, + [SMALL_STATE(10848)] = 367937, + [SMALL_STATE(10849)] = 367944, + [SMALL_STATE(10850)] = 367951, + [SMALL_STATE(10851)] = 367958, + [SMALL_STATE(10852)] = 367965, + [SMALL_STATE(10853)] = 367972, + [SMALL_STATE(10854)] = 367979, + [SMALL_STATE(10855)] = 367986, + [SMALL_STATE(10856)] = 367993, + [SMALL_STATE(10857)] = 368000, + [SMALL_STATE(10858)] = 368007, + [SMALL_STATE(10859)] = 368014, + [SMALL_STATE(10860)] = 368021, + [SMALL_STATE(10861)] = 368028, + [SMALL_STATE(10862)] = 368035, + [SMALL_STATE(10863)] = 368042, + [SMALL_STATE(10864)] = 368049, + [SMALL_STATE(10865)] = 368056, + [SMALL_STATE(10866)] = 368063, + [SMALL_STATE(10867)] = 368070, + [SMALL_STATE(10868)] = 368077, + [SMALL_STATE(10869)] = 368084, + [SMALL_STATE(10870)] = 368091, + [SMALL_STATE(10871)] = 368098, + [SMALL_STATE(10872)] = 368105, + [SMALL_STATE(10873)] = 368112, + [SMALL_STATE(10874)] = 368119, + [SMALL_STATE(10875)] = 368126, + [SMALL_STATE(10876)] = 368133, + [SMALL_STATE(10877)] = 368140, + [SMALL_STATE(10878)] = 368147, + [SMALL_STATE(10879)] = 368154, + [SMALL_STATE(10880)] = 368161, + [SMALL_STATE(10881)] = 368168, + [SMALL_STATE(10882)] = 368175, + [SMALL_STATE(10883)] = 368182, + [SMALL_STATE(10884)] = 368189, + [SMALL_STATE(10885)] = 368196, + [SMALL_STATE(10886)] = 368203, + [SMALL_STATE(10887)] = 368210, + [SMALL_STATE(10888)] = 368217, + [SMALL_STATE(10889)] = 368224, + [SMALL_STATE(10890)] = 368231, + [SMALL_STATE(10891)] = 368238, + [SMALL_STATE(10892)] = 368245, + [SMALL_STATE(10893)] = 368252, + [SMALL_STATE(10894)] = 368259, + [SMALL_STATE(10895)] = 368266, + [SMALL_STATE(10896)] = 368273, + [SMALL_STATE(10897)] = 368280, + [SMALL_STATE(10898)] = 368287, + [SMALL_STATE(10899)] = 368294, + [SMALL_STATE(10900)] = 368301, + [SMALL_STATE(10901)] = 368308, + [SMALL_STATE(10902)] = 368315, + [SMALL_STATE(10903)] = 368322, + [SMALL_STATE(10904)] = 368329, + [SMALL_STATE(10905)] = 368336, + [SMALL_STATE(10906)] = 368343, + [SMALL_STATE(10907)] = 368350, + [SMALL_STATE(10908)] = 368357, + [SMALL_STATE(10909)] = 368364, + [SMALL_STATE(10910)] = 368371, + [SMALL_STATE(10911)] = 368378, + [SMALL_STATE(10912)] = 368385, + [SMALL_STATE(10913)] = 368392, + [SMALL_STATE(10914)] = 368399, + [SMALL_STATE(10915)] = 368406, + [SMALL_STATE(10916)] = 368413, + [SMALL_STATE(10917)] = 368420, + [SMALL_STATE(10918)] = 368427, + [SMALL_STATE(10919)] = 368434, + [SMALL_STATE(10920)] = 368441, + [SMALL_STATE(10921)] = 368448, + [SMALL_STATE(10922)] = 368455, + [SMALL_STATE(10923)] = 368462, + [SMALL_STATE(10924)] = 368469, + [SMALL_STATE(10925)] = 368476, + [SMALL_STATE(10926)] = 368483, + [SMALL_STATE(10927)] = 368490, + [SMALL_STATE(10928)] = 368497, + [SMALL_STATE(10929)] = 368504, + [SMALL_STATE(10930)] = 368511, + [SMALL_STATE(10931)] = 368518, + [SMALL_STATE(10932)] = 368525, + [SMALL_STATE(10933)] = 368532, + [SMALL_STATE(10934)] = 368539, + [SMALL_STATE(10935)] = 368546, + [SMALL_STATE(10936)] = 368553, + [SMALL_STATE(10937)] = 368560, + [SMALL_STATE(10938)] = 368567, + [SMALL_STATE(10939)] = 368574, + [SMALL_STATE(10940)] = 368581, + [SMALL_STATE(10941)] = 368588, + [SMALL_STATE(10942)] = 368595, + [SMALL_STATE(10943)] = 368602, + [SMALL_STATE(10944)] = 368609, + [SMALL_STATE(10945)] = 368616, + [SMALL_STATE(10946)] = 368623, + [SMALL_STATE(10947)] = 368630, + [SMALL_STATE(10948)] = 368637, + [SMALL_STATE(10949)] = 368644, + [SMALL_STATE(10950)] = 368651, + [SMALL_STATE(10951)] = 368658, + [SMALL_STATE(10952)] = 368665, + [SMALL_STATE(10953)] = 368672, + [SMALL_STATE(10954)] = 368679, + [SMALL_STATE(10955)] = 368686, + [SMALL_STATE(10956)] = 368693, + [SMALL_STATE(10957)] = 368700, + [SMALL_STATE(10958)] = 368707, + [SMALL_STATE(10959)] = 368714, + [SMALL_STATE(10960)] = 368721, + [SMALL_STATE(10961)] = 368728, + [SMALL_STATE(10962)] = 368735, + [SMALL_STATE(10963)] = 368742, + [SMALL_STATE(10964)] = 368749, + [SMALL_STATE(10965)] = 368756, + [SMALL_STATE(10966)] = 368763, + [SMALL_STATE(10967)] = 368770, + [SMALL_STATE(10968)] = 368777, + [SMALL_STATE(10969)] = 368784, + [SMALL_STATE(10970)] = 368791, + [SMALL_STATE(10971)] = 368798, + [SMALL_STATE(10972)] = 368805, + [SMALL_STATE(10973)] = 368812, + [SMALL_STATE(10974)] = 368819, + [SMALL_STATE(10975)] = 368826, + [SMALL_STATE(10976)] = 368833, + [SMALL_STATE(10977)] = 368840, + [SMALL_STATE(10978)] = 368847, + [SMALL_STATE(10979)] = 368854, + [SMALL_STATE(10980)] = 368861, + [SMALL_STATE(10981)] = 368868, + [SMALL_STATE(10982)] = 368875, + [SMALL_STATE(10983)] = 368882, + [SMALL_STATE(10984)] = 368889, + [SMALL_STATE(10985)] = 368896, + [SMALL_STATE(10986)] = 368903, + [SMALL_STATE(10987)] = 368910, + [SMALL_STATE(10988)] = 368917, + [SMALL_STATE(10989)] = 368924, + [SMALL_STATE(10990)] = 368931, + [SMALL_STATE(10991)] = 368938, + [SMALL_STATE(10992)] = 368945, + [SMALL_STATE(10993)] = 368952, + [SMALL_STATE(10994)] = 368959, + [SMALL_STATE(10995)] = 368966, + [SMALL_STATE(10996)] = 368973, + [SMALL_STATE(10997)] = 368980, + [SMALL_STATE(10998)] = 368987, + [SMALL_STATE(10999)] = 368994, + [SMALL_STATE(11000)] = 369001, + [SMALL_STATE(11001)] = 369008, + [SMALL_STATE(11002)] = 369015, + [SMALL_STATE(11003)] = 369022, + [SMALL_STATE(11004)] = 369029, + [SMALL_STATE(11005)] = 369036, + [SMALL_STATE(11006)] = 369043, + [SMALL_STATE(11007)] = 369050, + [SMALL_STATE(11008)] = 369057, + [SMALL_STATE(11009)] = 369064, + [SMALL_STATE(11010)] = 369071, + [SMALL_STATE(11011)] = 369078, + [SMALL_STATE(11012)] = 369085, + [SMALL_STATE(11013)] = 369092, + [SMALL_STATE(11014)] = 369099, + [SMALL_STATE(11015)] = 369106, + [SMALL_STATE(11016)] = 369113, + [SMALL_STATE(11017)] = 369120, + [SMALL_STATE(11018)] = 369127, + [SMALL_STATE(11019)] = 369134, + [SMALL_STATE(11020)] = 369141, + [SMALL_STATE(11021)] = 369148, + [SMALL_STATE(11022)] = 369155, + [SMALL_STATE(11023)] = 369162, + [SMALL_STATE(11024)] = 369169, + [SMALL_STATE(11025)] = 369176, + [SMALL_STATE(11026)] = 369183, + [SMALL_STATE(11027)] = 369190, + [SMALL_STATE(11028)] = 369197, + [SMALL_STATE(11029)] = 369204, + [SMALL_STATE(11030)] = 369211, + [SMALL_STATE(11031)] = 369218, + [SMALL_STATE(11032)] = 369225, + [SMALL_STATE(11033)] = 369232, + [SMALL_STATE(11034)] = 369239, + [SMALL_STATE(11035)] = 369246, + [SMALL_STATE(11036)] = 369253, + [SMALL_STATE(11037)] = 369260, + [SMALL_STATE(11038)] = 369267, + [SMALL_STATE(11039)] = 369274, + [SMALL_STATE(11040)] = 369281, + [SMALL_STATE(11041)] = 369288, + [SMALL_STATE(11042)] = 369295, + [SMALL_STATE(11043)] = 369302, + [SMALL_STATE(11044)] = 369309, + [SMALL_STATE(11045)] = 369316, + [SMALL_STATE(11046)] = 369323, + [SMALL_STATE(11047)] = 369330, + [SMALL_STATE(11048)] = 369337, + [SMALL_STATE(11049)] = 369344, + [SMALL_STATE(11050)] = 369351, + [SMALL_STATE(11051)] = 369358, + [SMALL_STATE(11052)] = 369365, + [SMALL_STATE(11053)] = 369372, + [SMALL_STATE(11054)] = 369379, + [SMALL_STATE(11055)] = 369386, + [SMALL_STATE(11056)] = 369393, + [SMALL_STATE(11057)] = 369400, + [SMALL_STATE(11058)] = 369407, + [SMALL_STATE(11059)] = 369414, + [SMALL_STATE(11060)] = 369421, + [SMALL_STATE(11061)] = 369428, + [SMALL_STATE(11062)] = 369435, + [SMALL_STATE(11063)] = 369442, + [SMALL_STATE(11064)] = 369449, + [SMALL_STATE(11065)] = 369456, + [SMALL_STATE(11066)] = 369463, + [SMALL_STATE(11067)] = 369470, + [SMALL_STATE(11068)] = 369477, + [SMALL_STATE(11069)] = 369484, + [SMALL_STATE(11070)] = 369491, + [SMALL_STATE(11071)] = 369498, + [SMALL_STATE(11072)] = 369505, + [SMALL_STATE(11073)] = 369512, + [SMALL_STATE(11074)] = 369519, + [SMALL_STATE(11075)] = 369526, + [SMALL_STATE(11076)] = 369533, + [SMALL_STATE(11077)] = 369540, + [SMALL_STATE(11078)] = 369547, + [SMALL_STATE(11079)] = 369554, + [SMALL_STATE(11080)] = 369561, + [SMALL_STATE(11081)] = 369568, + [SMALL_STATE(11082)] = 369575, + [SMALL_STATE(11083)] = 369582, + [SMALL_STATE(11084)] = 369589, + [SMALL_STATE(11085)] = 369596, + [SMALL_STATE(11086)] = 369603, + [SMALL_STATE(11087)] = 369610, + [SMALL_STATE(11088)] = 369617, + [SMALL_STATE(11089)] = 369624, + [SMALL_STATE(11090)] = 369631, + [SMALL_STATE(11091)] = 369638, + [SMALL_STATE(11092)] = 369645, + [SMALL_STATE(11093)] = 369652, + [SMALL_STATE(11094)] = 369659, + [SMALL_STATE(11095)] = 369666, + [SMALL_STATE(11096)] = 369673, + [SMALL_STATE(11097)] = 369680, + [SMALL_STATE(11098)] = 369687, + [SMALL_STATE(11099)] = 369694, + [SMALL_STATE(11100)] = 369701, + [SMALL_STATE(11101)] = 369708, + [SMALL_STATE(11102)] = 369715, + [SMALL_STATE(11103)] = 369722, + [SMALL_STATE(11104)] = 369729, + [SMALL_STATE(11105)] = 369736, + [SMALL_STATE(11106)] = 369743, + [SMALL_STATE(11107)] = 369750, + [SMALL_STATE(11108)] = 369757, + [SMALL_STATE(11109)] = 369764, + [SMALL_STATE(11110)] = 369771, + [SMALL_STATE(11111)] = 369778, + [SMALL_STATE(11112)] = 369785, + [SMALL_STATE(11113)] = 369792, + [SMALL_STATE(11114)] = 369799, + [SMALL_STATE(11115)] = 369806, + [SMALL_STATE(11116)] = 369813, + [SMALL_STATE(11117)] = 369820, + [SMALL_STATE(11118)] = 369827, + [SMALL_STATE(11119)] = 369834, + [SMALL_STATE(11120)] = 369841, + [SMALL_STATE(11121)] = 369848, + [SMALL_STATE(11122)] = 369855, + [SMALL_STATE(11123)] = 369862, + [SMALL_STATE(11124)] = 369869, + [SMALL_STATE(11125)] = 369876, + [SMALL_STATE(11126)] = 369883, + [SMALL_STATE(11127)] = 369890, + [SMALL_STATE(11128)] = 369897, + [SMALL_STATE(11129)] = 369904, + [SMALL_STATE(11130)] = 369911, + [SMALL_STATE(11131)] = 369918, + [SMALL_STATE(11132)] = 369925, + [SMALL_STATE(11133)] = 369932, + [SMALL_STATE(11134)] = 369939, + [SMALL_STATE(11135)] = 369946, + [SMALL_STATE(11136)] = 369953, + [SMALL_STATE(11137)] = 369960, + [SMALL_STATE(11138)] = 369967, + [SMALL_STATE(11139)] = 369974, + [SMALL_STATE(11140)] = 369981, + [SMALL_STATE(11141)] = 369988, + [SMALL_STATE(11142)] = 369995, + [SMALL_STATE(11143)] = 370002, + [SMALL_STATE(11144)] = 370009, + [SMALL_STATE(11145)] = 370016, + [SMALL_STATE(11146)] = 370023, + [SMALL_STATE(11147)] = 370030, + [SMALL_STATE(11148)] = 370037, + [SMALL_STATE(11149)] = 370044, + [SMALL_STATE(11150)] = 370051, + [SMALL_STATE(11151)] = 370058, + [SMALL_STATE(11152)] = 370065, + [SMALL_STATE(11153)] = 370072, + [SMALL_STATE(11154)] = 370079, + [SMALL_STATE(11155)] = 370086, + [SMALL_STATE(11156)] = 370093, + [SMALL_STATE(11157)] = 370100, + [SMALL_STATE(11158)] = 370107, + [SMALL_STATE(11159)] = 370114, + [SMALL_STATE(11160)] = 370121, + [SMALL_STATE(11161)] = 370128, + [SMALL_STATE(11162)] = 370135, + [SMALL_STATE(11163)] = 370142, + [SMALL_STATE(11164)] = 370149, + [SMALL_STATE(11165)] = 370156, + [SMALL_STATE(11166)] = 370163, + [SMALL_STATE(11167)] = 370170, + [SMALL_STATE(11168)] = 370177, + [SMALL_STATE(11169)] = 370184, + [SMALL_STATE(11170)] = 370191, + [SMALL_STATE(11171)] = 370198, + [SMALL_STATE(11172)] = 370205, + [SMALL_STATE(11173)] = 370212, + [SMALL_STATE(11174)] = 370219, + [SMALL_STATE(11175)] = 370226, + [SMALL_STATE(11176)] = 370233, + [SMALL_STATE(11177)] = 370240, + [SMALL_STATE(11178)] = 370247, + [SMALL_STATE(11179)] = 370254, + [SMALL_STATE(11180)] = 370261, + [SMALL_STATE(11181)] = 370268, + [SMALL_STATE(11182)] = 370275, + [SMALL_STATE(11183)] = 370282, + [SMALL_STATE(11184)] = 370289, + [SMALL_STATE(11185)] = 370296, + [SMALL_STATE(11186)] = 370303, + [SMALL_STATE(11187)] = 370310, + [SMALL_STATE(11188)] = 370317, + [SMALL_STATE(11189)] = 370324, + [SMALL_STATE(11190)] = 370331, + [SMALL_STATE(11191)] = 370338, + [SMALL_STATE(11192)] = 370345, + [SMALL_STATE(11193)] = 370352, + [SMALL_STATE(11194)] = 370359, + [SMALL_STATE(11195)] = 370366, + [SMALL_STATE(11196)] = 370373, + [SMALL_STATE(11197)] = 370380, + [SMALL_STATE(11198)] = 370387, + [SMALL_STATE(11199)] = 370394, + [SMALL_STATE(11200)] = 370401, + [SMALL_STATE(11201)] = 370408, + [SMALL_STATE(11202)] = 370415, + [SMALL_STATE(11203)] = 370422, + [SMALL_STATE(11204)] = 370429, + [SMALL_STATE(11205)] = 370436, + [SMALL_STATE(11206)] = 370443, + [SMALL_STATE(11207)] = 370450, + [SMALL_STATE(11208)] = 370457, + [SMALL_STATE(11209)] = 370464, + [SMALL_STATE(11210)] = 370471, + [SMALL_STATE(11211)] = 370478, + [SMALL_STATE(11212)] = 370485, + [SMALL_STATE(11213)] = 370492, + [SMALL_STATE(11214)] = 370499, + [SMALL_STATE(11215)] = 370506, + [SMALL_STATE(11216)] = 370513, + [SMALL_STATE(11217)] = 370520, + [SMALL_STATE(11218)] = 370527, + [SMALL_STATE(11219)] = 370534, + [SMALL_STATE(11220)] = 370541, + [SMALL_STATE(11221)] = 370548, + [SMALL_STATE(11222)] = 370555, + [SMALL_STATE(11223)] = 370562, + [SMALL_STATE(11224)] = 370569, + [SMALL_STATE(11225)] = 370576, + [SMALL_STATE(11226)] = 370583, + [SMALL_STATE(11227)] = 370590, + [SMALL_STATE(11228)] = 370597, + [SMALL_STATE(11229)] = 370604, + [SMALL_STATE(11230)] = 370611, + [SMALL_STATE(11231)] = 370618, + [SMALL_STATE(11232)] = 370625, + [SMALL_STATE(11233)] = 370632, + [SMALL_STATE(11234)] = 370639, + [SMALL_STATE(11235)] = 370646, + [SMALL_STATE(11236)] = 370653, + [SMALL_STATE(11237)] = 370660, + [SMALL_STATE(11238)] = 370667, + [SMALL_STATE(11239)] = 370674, + [SMALL_STATE(11240)] = 370681, + [SMALL_STATE(11241)] = 370688, + [SMALL_STATE(11242)] = 370695, + [SMALL_STATE(11243)] = 370702, + [SMALL_STATE(11244)] = 370709, + [SMALL_STATE(11245)] = 370716, + [SMALL_STATE(11246)] = 370723, + [SMALL_STATE(11247)] = 370730, + [SMALL_STATE(11248)] = 370737, + [SMALL_STATE(11249)] = 370744, + [SMALL_STATE(11250)] = 370751, + [SMALL_STATE(11251)] = 370758, + [SMALL_STATE(11252)] = 370765, + [SMALL_STATE(11253)] = 370772, + [SMALL_STATE(11254)] = 370779, + [SMALL_STATE(11255)] = 370786, + [SMALL_STATE(11256)] = 370793, + [SMALL_STATE(11257)] = 370800, + [SMALL_STATE(11258)] = 370807, + [SMALL_STATE(11259)] = 370814, + [SMALL_STATE(11260)] = 370821, + [SMALL_STATE(11261)] = 370828, + [SMALL_STATE(11262)] = 370835, + [SMALL_STATE(11263)] = 370842, + [SMALL_STATE(11264)] = 370849, + [SMALL_STATE(11265)] = 370856, + [SMALL_STATE(11266)] = 370863, + [SMALL_STATE(11267)] = 370870, + [SMALL_STATE(11268)] = 370877, + [SMALL_STATE(11269)] = 370884, + [SMALL_STATE(11270)] = 370891, + [SMALL_STATE(11271)] = 370898, + [SMALL_STATE(11272)] = 370905, + [SMALL_STATE(11273)] = 370912, + [SMALL_STATE(11274)] = 370919, + [SMALL_STATE(11275)] = 370926, + [SMALL_STATE(11276)] = 370933, + [SMALL_STATE(11277)] = 370940, + [SMALL_STATE(11278)] = 370947, + [SMALL_STATE(11279)] = 370954, + [SMALL_STATE(11280)] = 370961, + [SMALL_STATE(11281)] = 370968, + [SMALL_STATE(11282)] = 370975, + [SMALL_STATE(11283)] = 370982, + [SMALL_STATE(11284)] = 370989, + [SMALL_STATE(11285)] = 370996, + [SMALL_STATE(11286)] = 371003, + [SMALL_STATE(11287)] = 371010, + [SMALL_STATE(11288)] = 371017, + [SMALL_STATE(11289)] = 371024, + [SMALL_STATE(11290)] = 371031, + [SMALL_STATE(11291)] = 371038, + [SMALL_STATE(11292)] = 371045, + [SMALL_STATE(11293)] = 371052, + [SMALL_STATE(11294)] = 371059, + [SMALL_STATE(11295)] = 371066, + [SMALL_STATE(11296)] = 371073, + [SMALL_STATE(11297)] = 371080, + [SMALL_STATE(11298)] = 371087, + [SMALL_STATE(11299)] = 371094, + [SMALL_STATE(11300)] = 371101, + [SMALL_STATE(11301)] = 371108, + [SMALL_STATE(11302)] = 371115, + [SMALL_STATE(11303)] = 371122, + [SMALL_STATE(11304)] = 371129, + [SMALL_STATE(11305)] = 371136, + [SMALL_STATE(11306)] = 371143, + [SMALL_STATE(11307)] = 371150, + [SMALL_STATE(11308)] = 371157, + [SMALL_STATE(11309)] = 371164, + [SMALL_STATE(11310)] = 371171, + [SMALL_STATE(11311)] = 371178, + [SMALL_STATE(11312)] = 371185, + [SMALL_STATE(11313)] = 371192, + [SMALL_STATE(11314)] = 371199, + [SMALL_STATE(11315)] = 371206, + [SMALL_STATE(11316)] = 371213, + [SMALL_STATE(11317)] = 371220, + [SMALL_STATE(11318)] = 371227, + [SMALL_STATE(11319)] = 371234, + [SMALL_STATE(11320)] = 371241, + [SMALL_STATE(11321)] = 371248, + [SMALL_STATE(11322)] = 371255, + [SMALL_STATE(11323)] = 371262, + [SMALL_STATE(11324)] = 371269, + [SMALL_STATE(11325)] = 371276, + [SMALL_STATE(11326)] = 371283, + [SMALL_STATE(11327)] = 371290, + [SMALL_STATE(11328)] = 371297, + [SMALL_STATE(11329)] = 371304, + [SMALL_STATE(11330)] = 371311, + [SMALL_STATE(11331)] = 371318, + [SMALL_STATE(11332)] = 371325, + [SMALL_STATE(11333)] = 371332, + [SMALL_STATE(11334)] = 371339, + [SMALL_STATE(11335)] = 371346, + [SMALL_STATE(11336)] = 371353, + [SMALL_STATE(11337)] = 371360, + [SMALL_STATE(11338)] = 371367, + [SMALL_STATE(11339)] = 371374, + [SMALL_STATE(11340)] = 371381, + [SMALL_STATE(11341)] = 371388, + [SMALL_STATE(11342)] = 371395, + [SMALL_STATE(11343)] = 371402, + [SMALL_STATE(11344)] = 371409, + [SMALL_STATE(11345)] = 371416, + [SMALL_STATE(11346)] = 371423, + [SMALL_STATE(11347)] = 371430, + [SMALL_STATE(11348)] = 371437, + [SMALL_STATE(11349)] = 371444, + [SMALL_STATE(11350)] = 371451, + [SMALL_STATE(11351)] = 371458, + [SMALL_STATE(11352)] = 371465, + [SMALL_STATE(11353)] = 371472, + [SMALL_STATE(11354)] = 371479, + [SMALL_STATE(11355)] = 371486, + [SMALL_STATE(11356)] = 371493, + [SMALL_STATE(11357)] = 371500, + [SMALL_STATE(11358)] = 371507, + [SMALL_STATE(11359)] = 371514, + [SMALL_STATE(11360)] = 371521, + [SMALL_STATE(11361)] = 371528, + [SMALL_STATE(11362)] = 371535, + [SMALL_STATE(11363)] = 371542, + [SMALL_STATE(11364)] = 371549, + [SMALL_STATE(11365)] = 371556, + [SMALL_STATE(11366)] = 371563, + [SMALL_STATE(11367)] = 371570, + [SMALL_STATE(11368)] = 371577, + [SMALL_STATE(11369)] = 371584, + [SMALL_STATE(11370)] = 371591, + [SMALL_STATE(11371)] = 371598, + [SMALL_STATE(11372)] = 371605, + [SMALL_STATE(11373)] = 371612, + [SMALL_STATE(11374)] = 371619, + [SMALL_STATE(11375)] = 371626, + [SMALL_STATE(11376)] = 371633, + [SMALL_STATE(11377)] = 371640, + [SMALL_STATE(11378)] = 371647, + [SMALL_STATE(11379)] = 371654, + [SMALL_STATE(11380)] = 371661, + [SMALL_STATE(11381)] = 371668, + [SMALL_STATE(11382)] = 371675, + [SMALL_STATE(11383)] = 371682, + [SMALL_STATE(11384)] = 371689, + [SMALL_STATE(11385)] = 371696, + [SMALL_STATE(11386)] = 371703, + [SMALL_STATE(11387)] = 371710, + [SMALL_STATE(11388)] = 371717, + [SMALL_STATE(11389)] = 371724, + [SMALL_STATE(11390)] = 371731, + [SMALL_STATE(11391)] = 371738, + [SMALL_STATE(11392)] = 371745, + [SMALL_STATE(11393)] = 371752, + [SMALL_STATE(11394)] = 371759, + [SMALL_STATE(11395)] = 371766, + [SMALL_STATE(11396)] = 371773, + [SMALL_STATE(11397)] = 371780, + [SMALL_STATE(11398)] = 371787, + [SMALL_STATE(11399)] = 371794, + [SMALL_STATE(11400)] = 371801, + [SMALL_STATE(11401)] = 371808, + [SMALL_STATE(11402)] = 371815, + [SMALL_STATE(11403)] = 371822, + [SMALL_STATE(11404)] = 371829, + [SMALL_STATE(11405)] = 371836, + [SMALL_STATE(11406)] = 371843, + [SMALL_STATE(11407)] = 371850, + [SMALL_STATE(11408)] = 371857, + [SMALL_STATE(11409)] = 371864, + [SMALL_STATE(11410)] = 371871, + [SMALL_STATE(11411)] = 371878, + [SMALL_STATE(11412)] = 371885, + [SMALL_STATE(11413)] = 371892, + [SMALL_STATE(11414)] = 371899, + [SMALL_STATE(11415)] = 371906, + [SMALL_STATE(11416)] = 371913, + [SMALL_STATE(11417)] = 371920, + [SMALL_STATE(11418)] = 371927, + [SMALL_STATE(11419)] = 371934, + [SMALL_STATE(11420)] = 371941, + [SMALL_STATE(11421)] = 371948, + [SMALL_STATE(11422)] = 371955, + [SMALL_STATE(11423)] = 371962, + [SMALL_STATE(11424)] = 371969, + [SMALL_STATE(11425)] = 371976, + [SMALL_STATE(11426)] = 371983, + [SMALL_STATE(11427)] = 371990, + [SMALL_STATE(11428)] = 371997, + [SMALL_STATE(11429)] = 372004, + [SMALL_STATE(11430)] = 372011, + [SMALL_STATE(11431)] = 372018, + [SMALL_STATE(11432)] = 372025, + [SMALL_STATE(11433)] = 372032, + [SMALL_STATE(11434)] = 372039, + [SMALL_STATE(11435)] = 372046, + [SMALL_STATE(11436)] = 372053, + [SMALL_STATE(11437)] = 372060, + [SMALL_STATE(11438)] = 372067, + [SMALL_STATE(11439)] = 372074, + [SMALL_STATE(11440)] = 372081, + [SMALL_STATE(11441)] = 372088, + [SMALL_STATE(11442)] = 372095, + [SMALL_STATE(11443)] = 372102, + [SMALL_STATE(11444)] = 372109, + [SMALL_STATE(11445)] = 372116, + [SMALL_STATE(11446)] = 372123, + [SMALL_STATE(11447)] = 372130, + [SMALL_STATE(11448)] = 372137, + [SMALL_STATE(11449)] = 372144, + [SMALL_STATE(11450)] = 372151, + [SMALL_STATE(11451)] = 372158, + [SMALL_STATE(11452)] = 372165, + [SMALL_STATE(11453)] = 372172, + [SMALL_STATE(11454)] = 372179, + [SMALL_STATE(11455)] = 372186, + [SMALL_STATE(11456)] = 372193, + [SMALL_STATE(11457)] = 372200, + [SMALL_STATE(11458)] = 372207, + [SMALL_STATE(11459)] = 372214, + [SMALL_STATE(11460)] = 372221, + [SMALL_STATE(11461)] = 372228, + [SMALL_STATE(11462)] = 372235, + [SMALL_STATE(11463)] = 372242, + [SMALL_STATE(11464)] = 372249, + [SMALL_STATE(11465)] = 372256, + [SMALL_STATE(11466)] = 372263, + [SMALL_STATE(11467)] = 372270, + [SMALL_STATE(11468)] = 372277, + [SMALL_STATE(11469)] = 372284, + [SMALL_STATE(11470)] = 372291, + [SMALL_STATE(11471)] = 372298, + [SMALL_STATE(11472)] = 372305, + [SMALL_STATE(11473)] = 372312, + [SMALL_STATE(11474)] = 372319, + [SMALL_STATE(11475)] = 372326, + [SMALL_STATE(11476)] = 372333, + [SMALL_STATE(11477)] = 372340, + [SMALL_STATE(11478)] = 372347, + [SMALL_STATE(11479)] = 372354, + [SMALL_STATE(11480)] = 372361, + [SMALL_STATE(11481)] = 372368, + [SMALL_STATE(11482)] = 372375, + [SMALL_STATE(11483)] = 372382, + [SMALL_STATE(11484)] = 372389, + [SMALL_STATE(11485)] = 372396, + [SMALL_STATE(11486)] = 372403, + [SMALL_STATE(11487)] = 372410, + [SMALL_STATE(11488)] = 372417, + [SMALL_STATE(11489)] = 372424, + [SMALL_STATE(11490)] = 372431, + [SMALL_STATE(11491)] = 372438, + [SMALL_STATE(11492)] = 372445, + [SMALL_STATE(11493)] = 372452, + [SMALL_STATE(11494)] = 372459, + [SMALL_STATE(11495)] = 372466, + [SMALL_STATE(11496)] = 372473, + [SMALL_STATE(11497)] = 372480, + [SMALL_STATE(11498)] = 372487, + [SMALL_STATE(11499)] = 372494, + [SMALL_STATE(11500)] = 372501, + [SMALL_STATE(11501)] = 372508, + [SMALL_STATE(11502)] = 372515, + [SMALL_STATE(11503)] = 372522, + [SMALL_STATE(11504)] = 372529, + [SMALL_STATE(11505)] = 372536, + [SMALL_STATE(11506)] = 372543, + [SMALL_STATE(11507)] = 372550, + [SMALL_STATE(11508)] = 372557, + [SMALL_STATE(11509)] = 372564, + [SMALL_STATE(11510)] = 372571, + [SMALL_STATE(11511)] = 372578, + [SMALL_STATE(11512)] = 372585, + [SMALL_STATE(11513)] = 372592, + [SMALL_STATE(11514)] = 372599, + [SMALL_STATE(11515)] = 372606, + [SMALL_STATE(11516)] = 372613, + [SMALL_STATE(11517)] = 372620, + [SMALL_STATE(11518)] = 372627, + [SMALL_STATE(11519)] = 372634, + [SMALL_STATE(11520)] = 372641, + [SMALL_STATE(11521)] = 372648, + [SMALL_STATE(11522)] = 372655, + [SMALL_STATE(11523)] = 372662, + [SMALL_STATE(11524)] = 372669, + [SMALL_STATE(11525)] = 372676, + [SMALL_STATE(11526)] = 372683, + [SMALL_STATE(11527)] = 372690, + [SMALL_STATE(11528)] = 372697, + [SMALL_STATE(11529)] = 372704, + [SMALL_STATE(11530)] = 372711, + [SMALL_STATE(11531)] = 372718, + [SMALL_STATE(11532)] = 372725, + [SMALL_STATE(11533)] = 372732, + [SMALL_STATE(11534)] = 372739, + [SMALL_STATE(11535)] = 372746, + [SMALL_STATE(11536)] = 372753, + [SMALL_STATE(11537)] = 372760, + [SMALL_STATE(11538)] = 372767, + [SMALL_STATE(11539)] = 372774, + [SMALL_STATE(11540)] = 372781, + [SMALL_STATE(11541)] = 372788, + [SMALL_STATE(11542)] = 372795, + [SMALL_STATE(11543)] = 372802, + [SMALL_STATE(11544)] = 372809, + [SMALL_STATE(11545)] = 372816, + [SMALL_STATE(11546)] = 372823, + [SMALL_STATE(11547)] = 372830, + [SMALL_STATE(11548)] = 372837, + [SMALL_STATE(11549)] = 372844, + [SMALL_STATE(11550)] = 372851, + [SMALL_STATE(11551)] = 372858, + [SMALL_STATE(11552)] = 372865, + [SMALL_STATE(11553)] = 372872, + [SMALL_STATE(11554)] = 372879, + [SMALL_STATE(11555)] = 372886, + [SMALL_STATE(11556)] = 372893, + [SMALL_STATE(11557)] = 372900, + [SMALL_STATE(11558)] = 372907, + [SMALL_STATE(11559)] = 372914, + [SMALL_STATE(11560)] = 372921, + [SMALL_STATE(11561)] = 372928, + [SMALL_STATE(11562)] = 372935, + [SMALL_STATE(11563)] = 372942, + [SMALL_STATE(11564)] = 372949, + [SMALL_STATE(11565)] = 372956, + [SMALL_STATE(11566)] = 372963, + [SMALL_STATE(11567)] = 372970, + [SMALL_STATE(11568)] = 372977, + [SMALL_STATE(11569)] = 372984, + [SMALL_STATE(11570)] = 372991, + [SMALL_STATE(11571)] = 372998, + [SMALL_STATE(11572)] = 373005, + [SMALL_STATE(11573)] = 373012, + [SMALL_STATE(11574)] = 373019, + [SMALL_STATE(11575)] = 373026, + [SMALL_STATE(11576)] = 373033, + [SMALL_STATE(11577)] = 373040, + [SMALL_STATE(11578)] = 373047, + [SMALL_STATE(11579)] = 373054, + [SMALL_STATE(11580)] = 373061, + [SMALL_STATE(11581)] = 373068, + [SMALL_STATE(11582)] = 373075, + [SMALL_STATE(11583)] = 373082, + [SMALL_STATE(11584)] = 373089, + [SMALL_STATE(11585)] = 373096, + [SMALL_STATE(11586)] = 373103, + [SMALL_STATE(11587)] = 373110, + [SMALL_STATE(11588)] = 373117, + [SMALL_STATE(11589)] = 373124, + [SMALL_STATE(11590)] = 373131, + [SMALL_STATE(11591)] = 373138, + [SMALL_STATE(11592)] = 373145, + [SMALL_STATE(11593)] = 373152, + [SMALL_STATE(11594)] = 373159, + [SMALL_STATE(11595)] = 373166, + [SMALL_STATE(11596)] = 373173, + [SMALL_STATE(11597)] = 373180, + [SMALL_STATE(11598)] = 373187, + [SMALL_STATE(11599)] = 373194, + [SMALL_STATE(11600)] = 373201, + [SMALL_STATE(11601)] = 373208, + [SMALL_STATE(11602)] = 373215, + [SMALL_STATE(11603)] = 373222, + [SMALL_STATE(11604)] = 373229, + [SMALL_STATE(11605)] = 373236, + [SMALL_STATE(11606)] = 373243, + [SMALL_STATE(11607)] = 373250, + [SMALL_STATE(11608)] = 373257, + [SMALL_STATE(11609)] = 373264, + [SMALL_STATE(11610)] = 373271, + [SMALL_STATE(11611)] = 373278, + [SMALL_STATE(11612)] = 373285, + [SMALL_STATE(11613)] = 373292, + [SMALL_STATE(11614)] = 373299, + [SMALL_STATE(11615)] = 373306, + [SMALL_STATE(11616)] = 373313, + [SMALL_STATE(11617)] = 373320, + [SMALL_STATE(11618)] = 373327, + [SMALL_STATE(11619)] = 373334, + [SMALL_STATE(11620)] = 373341, + [SMALL_STATE(11621)] = 373348, + [SMALL_STATE(11622)] = 373355, + [SMALL_STATE(11623)] = 373362, + [SMALL_STATE(11624)] = 373369, + [SMALL_STATE(11625)] = 373376, + [SMALL_STATE(11626)] = 373383, + [SMALL_STATE(11627)] = 373390, + [SMALL_STATE(11628)] = 373397, + [SMALL_STATE(11629)] = 373404, + [SMALL_STATE(11630)] = 373411, + [SMALL_STATE(11631)] = 373418, + [SMALL_STATE(11632)] = 373425, + [SMALL_STATE(11633)] = 373432, + [SMALL_STATE(11634)] = 373439, + [SMALL_STATE(11635)] = 373446, + [SMALL_STATE(11636)] = 373453, + [SMALL_STATE(11637)] = 373460, + [SMALL_STATE(11638)] = 373467, + [SMALL_STATE(11639)] = 373474, + [SMALL_STATE(11640)] = 373481, + [SMALL_STATE(11641)] = 373488, + [SMALL_STATE(11642)] = 373495, + [SMALL_STATE(11643)] = 373502, + [SMALL_STATE(11644)] = 373509, + [SMALL_STATE(11645)] = 373516, + [SMALL_STATE(11646)] = 373523, + [SMALL_STATE(11647)] = 373530, + [SMALL_STATE(11648)] = 373537, + [SMALL_STATE(11649)] = 373544, + [SMALL_STATE(11650)] = 373551, + [SMALL_STATE(11651)] = 373558, + [SMALL_STATE(11652)] = 373565, + [SMALL_STATE(11653)] = 373572, + [SMALL_STATE(11654)] = 373579, + [SMALL_STATE(11655)] = 373586, + [SMALL_STATE(11656)] = 373593, + [SMALL_STATE(11657)] = 373600, + [SMALL_STATE(11658)] = 373607, + [SMALL_STATE(11659)] = 373614, + [SMALL_STATE(11660)] = 373621, + [SMALL_STATE(11661)] = 373628, + [SMALL_STATE(11662)] = 373635, + [SMALL_STATE(11663)] = 373642, + [SMALL_STATE(11664)] = 373649, + [SMALL_STATE(11665)] = 373656, + [SMALL_STATE(11666)] = 373663, + [SMALL_STATE(11667)] = 373670, + [SMALL_STATE(11668)] = 373677, + [SMALL_STATE(11669)] = 373684, + [SMALL_STATE(11670)] = 373691, + [SMALL_STATE(11671)] = 373698, + [SMALL_STATE(11672)] = 373705, + [SMALL_STATE(11673)] = 373712, + [SMALL_STATE(11674)] = 373719, + [SMALL_STATE(11675)] = 373726, + [SMALL_STATE(11676)] = 373733, + [SMALL_STATE(11677)] = 373740, + [SMALL_STATE(11678)] = 373747, + [SMALL_STATE(11679)] = 373754, + [SMALL_STATE(11680)] = 373761, + [SMALL_STATE(11681)] = 373768, + [SMALL_STATE(11682)] = 373775, + [SMALL_STATE(11683)] = 373782, + [SMALL_STATE(11684)] = 373789, + [SMALL_STATE(11685)] = 373796, + [SMALL_STATE(11686)] = 373803, + [SMALL_STATE(11687)] = 373810, + [SMALL_STATE(11688)] = 373817, + [SMALL_STATE(11689)] = 373824, + [SMALL_STATE(11690)] = 373831, + [SMALL_STATE(11691)] = 373838, + [SMALL_STATE(11692)] = 373845, + [SMALL_STATE(11693)] = 373852, + [SMALL_STATE(11694)] = 373859, + [SMALL_STATE(11695)] = 373866, + [SMALL_STATE(11696)] = 373873, + [SMALL_STATE(11697)] = 373880, + [SMALL_STATE(11698)] = 373887, + [SMALL_STATE(11699)] = 373894, + [SMALL_STATE(11700)] = 373901, + [SMALL_STATE(11701)] = 373908, + [SMALL_STATE(11702)] = 373915, + [SMALL_STATE(11703)] = 373922, + [SMALL_STATE(11704)] = 373929, + [SMALL_STATE(11705)] = 373936, + [SMALL_STATE(11706)] = 373943, + [SMALL_STATE(11707)] = 373950, + [SMALL_STATE(11708)] = 373957, + [SMALL_STATE(11709)] = 373964, + [SMALL_STATE(11710)] = 373971, + [SMALL_STATE(11711)] = 373978, + [SMALL_STATE(11712)] = 373985, + [SMALL_STATE(11713)] = 373992, + [SMALL_STATE(11714)] = 373999, + [SMALL_STATE(11715)] = 374006, + [SMALL_STATE(11716)] = 374013, + [SMALL_STATE(11717)] = 374020, + [SMALL_STATE(11718)] = 374027, + [SMALL_STATE(11719)] = 374034, + [SMALL_STATE(11720)] = 374041, + [SMALL_STATE(11721)] = 374048, + [SMALL_STATE(11722)] = 374055, + [SMALL_STATE(11723)] = 374062, + [SMALL_STATE(11724)] = 374069, + [SMALL_STATE(11725)] = 374076, + [SMALL_STATE(11726)] = 374083, + [SMALL_STATE(11727)] = 374090, + [SMALL_STATE(11728)] = 374097, + [SMALL_STATE(11729)] = 374104, + [SMALL_STATE(11730)] = 374111, + [SMALL_STATE(11731)] = 374118, + [SMALL_STATE(11732)] = 374125, + [SMALL_STATE(11733)] = 374132, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -740984,8657 +763458,8864 @@ 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, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8864), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11016), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8113), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10833), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10190), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10753), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8420), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8752), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9236), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10997), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10217), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7830), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10636), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8159), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7119), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7281), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9790), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10099), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10816), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10345), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11172), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10516), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10531), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10632), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10898), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11229), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11030), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9032), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9679), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9416), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7290), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10996), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6184), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9374), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8778), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10164), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8869), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10839), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11054), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10143), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7039), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7563), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8870), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11039), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11522), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8105), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11050), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10111), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8426), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9693), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10147), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11538), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10274), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10948), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10484), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10487), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11101), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10120), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10867), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11004), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10176), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8874), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11300), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11301), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8872), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11241), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8110), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11298), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8062), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10706), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10225), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8404), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9674), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10318), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11497), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10149), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11299), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11041), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11043), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11325), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10335), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11418), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10324), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8860), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11406), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11407), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 10), - [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 84), - [387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 10), - [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 84), - [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1033), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8872), - [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11241), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8110), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), - [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11298), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10225), - [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(127), - [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), - [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1591), - [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(277), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7421), - [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1011), - [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(379), - [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(252), - [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4877), - [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4663), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4150), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10753), - [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8404), - [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8752), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9236), - [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10997), - [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10217), - [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5698), - [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3709), - [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7830), - [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4712), - [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4525), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3482), - [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4461), - [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10636), - [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3999), - [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8159), - [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7119), - [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7252), - [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7281), - [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9674), - [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10318), - [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), - [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11497), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10149), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11299), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1167), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11041), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11043), - [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11325), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10335), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11418), - [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1522), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1295), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10898), - [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11229), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11030), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7284), - [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9032), - [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6317), - [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9679), - [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9416), - [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5900), - [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5911), - [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4706), - [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10996), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6184), - [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1854), - [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(934), - [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10324), - [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1287), - [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8860), - [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11406), - [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11407), - [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1292), - [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1735), - [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10143), - [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1633), - [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7039), - [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7563), - [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(339), - [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1452), - [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), - [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1082), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8864), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11016), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8113), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10833), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10190), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(127), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1591), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(277), - [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7421), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1011), - [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(639), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(255), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4713), - [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4663), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4129), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10753), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8420), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8752), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9236), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10997), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10217), - [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5698), - [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(43), - [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3709), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7830), - [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4712), - [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4568), - [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3482), - [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4453), - [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10636), - [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3999), - [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8159), - [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7119), - [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7252), - [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7281), - [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9790), - [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10099), - [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1560), - [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10816), - [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10345), - [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11172), - [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1172), - [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10516), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10531), - [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10632), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1522), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1295), - [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10898), - [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11229), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11030), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7284), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9032), - [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7226), - [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9679), - [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9416), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7290), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5911), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4706), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10996), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6184), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(56), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9374), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8778), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1863), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(934), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10164), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1355), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8869), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10839), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11054), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1289), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1632), - [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10143), - [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1633), - [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7039), - [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7563), - [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(339), - [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1452), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1023), - [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8862), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10644), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8112), - [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10546), - [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10389), - [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(590), - [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(254), - [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4886), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4154), - [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8428), - [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(62), - [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4631), - [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4495), - [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9803), - [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10473), - [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1752), - [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11078), - [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10320), - [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(211), - [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11405), - [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1187), - [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11500), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11501), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10556), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10076), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10560), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1856), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10296), - [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1331), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8857), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11431), - [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11421), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1333), - [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1745), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1047), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8870), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11039), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8105), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11050), - [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10111), - [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(655), - [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(251), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4871), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4126), - [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8426), - [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4617), - [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4456), - [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(9693), - [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10147), - [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), - [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11538), - [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10274), - [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(209), - [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10948), - [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1185), - [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10484), - [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10487), - [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11101), - [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10120), - [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10867), - [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1864), - [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(10176), - [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1372), - [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8874), - [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11300), - [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(11301), - [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1373), - [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8862), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10644), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8112), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10546), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10389), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8428), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9803), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10473), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11078), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10320), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11405), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11500), - [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11501), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10556), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10076), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10560), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10296), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8857), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11431), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11421), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10244), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10784), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10258), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8781), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7942), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7943), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8320), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8318), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9237), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7849), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9130), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 14), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 14), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 14), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 14), - [1326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1024), - [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(217), - [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), - [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), - [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1826), - [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1826), - [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(379), - [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(305), - [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4877), - [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2645), - [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4712), - [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10753), - [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8752), - [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9237), - [1372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10997), - [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3709), - [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7849), - [1384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3482), - [1387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10636), - [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3999), - [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8159), - [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7119), - [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7252), - [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7281), - [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9674), - [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10318), - [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10149), - [1414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11299), - [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1167), - [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11041), - [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11043), - [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11325), - [1432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10335), - [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11418), - [1438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1522), - [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1295), - [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10898), - [1447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11229), - [1450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11030), - [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7284), - [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9032), - [1459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6317), - [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9679), - [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9416), - [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5900), - [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5911), - [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4706), - [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10996), - [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9130), - [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10324), - [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1287), - [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1292), - [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1735), - [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10143), - [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1633), - [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7039), - [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7563), - [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(339), - [1513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1452), - [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1063), - [1519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(495), - [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4713), - [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(43), - [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9790), - [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10099), - [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10345), - [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11172), - [1546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1172), - [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10516), - [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10531), - [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10632), - [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10244), - [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10784), - [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9100), - [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10164), - [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1355), - [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1289), - [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1632), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9100), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9128), - [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1013), - [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(655), - [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(303), - [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4871), - [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9693), - [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10147), - [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10274), - [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(209), - [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10948), - [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1185), - [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10484), - [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10487), - [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11101), - [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10120), - [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10867), - [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9128), - [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10176), - [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1372), - [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1373), - [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9135), - [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1050), - [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(590), - [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(283), - [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4886), - [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(62), - [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9803), - [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10473), - [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10320), - [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(211), - [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11405), - [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1187), - [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11500), - [1696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11501), - [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10556), - [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10076), - [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10560), - [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9135), - [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10296), - [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1331), - [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1333), - [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1745), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1065), - [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1146), - [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(293), - [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4882), - [1737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(66), - [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9838), - [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10114), - [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10475), - [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(185), - [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11419), - [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1189), - [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11084), - [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11093), - [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10650), - [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10124), - [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10641), - [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9134), - [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10156), - [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1352), - [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1281), - [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1753), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9838), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10114), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10475), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11419), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11084), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11093), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10650), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10124), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10641), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9134), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10156), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9775), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11036), - [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10239), - [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11105), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10279), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9043), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11339), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9285), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9282), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8808), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8664), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7592), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8192), - [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7098), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10949), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11490), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11543), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7312), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8991), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9804), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9386), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), - [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10951), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9248), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10392), - [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6868), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7583), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10687), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9742), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6998), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8129), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7277), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7278), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7279), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7318), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10522), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8793), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11158), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11511), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11546), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7381), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9010), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9902), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9484), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9178), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10457), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6820), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7562), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 46), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 46), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8798), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9300), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11106), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11505), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11544), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9368), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9006), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9945), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9337), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11002), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9200), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10452), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7570), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3586), - [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(217), - [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1525), - [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1525), - [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1826), - [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(590), - [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1832), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8752), - [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9237), - [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(62), - [2112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7849), - [2115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9473), - [2118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9803), - [2121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10473), - [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1752), - [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11078), - [2130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10320), - [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(211), - [2136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11405), - [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1187), - [2142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11500), - [2145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11501), - [2148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10556), - [2151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10076), - [2154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10560), - [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1522), - [2160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1295), - [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10898), - [2166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11229), - [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11030), - [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9517), - [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9032), - [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(6317), - [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9679), - [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9416), - [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5900), - [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5911), - [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11002), - [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9135), - [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10296), - [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1557), - [2205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1331), - [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1333), - [2211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1745), - [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10143), - [2217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1633), - [2220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7039), - [2223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7563), - [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(339), - [2229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1736), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8453), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9473), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9517), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3549), - [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(379), - [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(49), - [2253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9674), - [2256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10318), - [2259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1744), - [2262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11497), - [2265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10149), - [2268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(210), - [2271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11299), - [2274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1167), - [2277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11041), - [2280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11043), - [2283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11325), - [2286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10335), - [2289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11418), - [2292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9130), - [2295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10324), - [2298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1287), - [2301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1292), - [2304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1735), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8414), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8774), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9840), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9518), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10439), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7052), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8406), - [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3503), - [2346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(655), - [2349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(38), - [2352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9693), - [2355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10147), - [2358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1690), - [2361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11538), - [2364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10274), - [2367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(209), - [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10948), - [2373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1185), - [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10484), - [2379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10487), - [2382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11101), - [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10120), - [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10867), - [2391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9128), - [2394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10176), - [2397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1372), - [2400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1373), - [2403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1693), - [2406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3562), - [2409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(495), - [2412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(43), - [2415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9790), - [2418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10099), - [2421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1560), - [2424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10816), - [2427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10345), - [2430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(157), - [2433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11172), - [2436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1172), - [2439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10516), - [2442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10531), - [2445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10632), - [2448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10244), - [2451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10784), - [2454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9100), - [2457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10164), - [2460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1355), - [2463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1289), - [2466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1632), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8477), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3563), - [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9775), - [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1734), - [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11036), - [2489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10239), - [2492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11105), - [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10279), - [2498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9043), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8771), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9944), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9477), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10469), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3505), - [2530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1146), - [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(66), - [2536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9838), - [2539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10114), - [2542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10475), - [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(185), - [2548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11419), - [2551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1189), - [2554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11084), - [2557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11093), - [2560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10650), - [2563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10124), - [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10641), - [2569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9134), - [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10156), - [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1352), - [2578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1281), - [2581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1753), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9365), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9367), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8743), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9333), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11199), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11517), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11548), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9393), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9016), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9928), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9436), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9174), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10461), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6904), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7561), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8780), - [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8817), - [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8758), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9419), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11219), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11520), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11549), - [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9520), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9018), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9936), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9378), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9188), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10464), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7038), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7555), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9348), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9476), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [2746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3260), - [2749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(217), - [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1525), - [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1826), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1826), - [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1832), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8752), - [2773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7849), - [2776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9473), - [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9517), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(11002), - [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9282), - [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1736), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), - [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), - [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), - [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8739), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8154), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7125), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7126), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11135), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11508), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11545), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7325), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9008), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9885), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9410), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7211), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11181), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9280), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10454), - [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7579), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [2897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(3260), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(1832), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [2907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(8752), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [2912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(9473), - [2915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(9517), - [2918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(11002), - [2921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(9282), - [2924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(1736), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7436), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10947), - [2941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(3260), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [2946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(1832), - [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(8752), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(9473), - [2959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(9517), - [2962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(11002), - [2965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(9282), - [2968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(1736), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8765), - [2995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(3260), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(1832), - [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), - [3005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(8752), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), - [3010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(9473), - [3013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(9517), - [3016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(11002), - [3019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(9282), - [3022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(1736), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10711), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8107), - [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 84), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10548), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8063), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10713), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10229), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10972), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7421), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8435), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10983), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8135), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7095), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7096), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10982), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8959), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11440), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 10), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), - [3141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10361), - [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 84), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 7), - [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 7), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10361), - [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 10), - [3156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10132), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8173), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7184), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7185), - [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7186), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7308), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11160), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8172), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7240), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7242), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7243), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7339), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11137), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7289), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8176), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7220), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7221), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7376), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11236), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8202), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7358), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8219), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7087), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7088), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7385), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9940), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9464), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10468), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10132), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8178), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7247), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7250), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7251), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7309), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9943), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9369), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11221), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9173), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10443), - [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7572), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8175), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7212), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7214), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11179), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11514), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11547), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7330), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9012), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9920), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9326), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7155), - [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7140), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9175), - [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10459), - [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), - [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7568), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8174), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7195), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7196), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7197), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7331), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11201), - [3469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3577), - [3472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1665), - [3475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8793), - [3478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9348), - [3481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9476), - [3484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9178), - [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1780), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8177), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7234), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7237), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7238), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7360), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11251), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 4, 0, 47), - [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 4, 0, 47), - [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8220), - [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7152), - [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7153), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7154), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7332), - [3554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 3, 0, 7), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 3, 0, 7), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), - [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6845), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, 0, 173), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, 0, 173), - [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 52), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 52), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 109), - [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 109), - [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 110), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 110), - [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 180), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 180), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 140), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 140), - [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 140), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 140), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 0), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 0), - [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 192), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 192), - [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2, 0, 0), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2, 0, 0), - [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion_statement, 6, 0, 209), - [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_statement, 6, 0, 209), - [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 210), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 210), - [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 91), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 91), - [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 158), - [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 158), - [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3, 0, 0), - [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3, 0, 0), - [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 159), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 159), - [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 123), - [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 123), - [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 53), - [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 53), - [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3, 0, 0), - [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3, 0, 0), - [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 53), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 53), - [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 163), - [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 163), - [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 120), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 120), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 5, 0, 164), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 5, 0, 164), - [3736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5879), - [3739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10711), - [3742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8107), - [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [3747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10548), - [3750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10229), - [3753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6374), - [3756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10972), - [3759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4123), - [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7421), - [3765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7421), - [3768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(393), - [3771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4647), - [3774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4888), - [3777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4663), - [3780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4712), - [3783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10753), - [3786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8435), - [3789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7622), - [3792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9285), - [3795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10997), - [3798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10217), - [3801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3709), - [3804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10983), - [3807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3482), - [3810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4638), - [3813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4462), - [3816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10636), - [3819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4176), - [3822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8135), - [3825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7095), - [3828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7096), - [3831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7097), - [3834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7306), - [3837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4706), - [3840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10996), - [3843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6184), - [3846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10982), - [3849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8959), - [3852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(934), - [3855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2057), - [3858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11440), - [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1760), - [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 7), - [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 7), - [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 54), - [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 54), - [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 71), - [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 71), - [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 57), - [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 57), - [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 91), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 91), - [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), - [3890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 179), - [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 179), - [3894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 7), - [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 7), - [3898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 5, 0, 141), - [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 5, 0, 141), - [3902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 3, 0, 5), - [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 3, 0, 5), - [3906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 3, 0, 62), - [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 3, 0, 62), - [3910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 65), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 65), - [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 49), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 49), - [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 72), - [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 72), - [3926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 74), - [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 74), - [3930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 81), - [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 81), - [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 5), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 5), - [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 3, 0, 5), - [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 3, 0, 5), - [3942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 3, 0, 81), - [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 3, 0, 81), - [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 82), - [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 82), - [3950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 83), - [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 83), - [3954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 84), - [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 84), - [3958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 85), - [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 85), - [3962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 10), - [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 10), - [3966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, 0, 42), - [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, 0, 42), - [3970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4, 0, 0), - [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4, 0, 0), - [3974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 98), - [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 98), - [3978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 99), - [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 99), - [3982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 100), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 100), - [3986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, 0, 63), - [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, 0, 63), - [3990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 4, 0, 62), - [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 4, 0, 62), - [3994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [3998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 121), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 121), - [4002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 125), - [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 125), - [4006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3, 0, 0), - [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3, 0, 0), - [4010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3, 0, 0), - [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3, 0, 0), - [4014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pure_virtual_clause, 3, 0, 0), - [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pure_virtual_clause, 3, 0, 0), - [4018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, 0, 130), - [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, 0, 130), - [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 133), - [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 133), - [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 134), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 134), - [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 135), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 135), - [4034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 84), - [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 84), - [4038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 136), - [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 136), - [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, 0, 142), - [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, 0, 142), - [4046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 5, 0, 148), - [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 5, 0, 148), - [4050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 5, 0, 149), - [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 5, 0, 149), - [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, 0, 174), - [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, 0, 174), - [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, 0, 175), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, 0, 175), - [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, 0, 176), - [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, 0, 176), - [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concept_definition, 5, 0, 10), - [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concept_definition, 5, 0, 10), - [4070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 183), - [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 183), - [4074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 5, 0, 0), - [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 5, 0, 0), - [4078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, 0, 187), - [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, 0, 187), - [4082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 188), - [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 188), - [4086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 6, 0, 190), - [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 6, 0, 190), - [4090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, 0, 223), - [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, 0, 223), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10088), - [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2, 0, 0), - [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2, 0, 0), - [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 27), - [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 27), - [4104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10088), - [4107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3, 0, 0), - [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3, 0, 0), - [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 5), - [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 5), - [4115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4, 0, 0), - [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4, 0, 0), - [4119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 47), - [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 47), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8786), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10343), - [4131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10343), - [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 3), - [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 3), - [4138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [4141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_consteval_block_declaration, 2, 0, 7), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_consteval_block_declaration, 2, 0, 7), - [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, 0, 7), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, 0, 7), - [4152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 26), - [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 26), - [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 27), - [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 27), - [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 2, 0, 27), - [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 2, 0, 27), - [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 2, 0, 26), - [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 2, 0, 26), - [4172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 37), - [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 37), - [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 10), - [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 10), - [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 10), - [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 10), - [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 38), - [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 38), - [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 45), - [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 45), - [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3, 0, 0), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3, 0, 0), - [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 5, 0, 0), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 5, 0, 0), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8736), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [4212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10768), - [4215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8111), - [4218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11455), - [4221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10360), - [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(551), - [4227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4654), - [4230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4890), - [4233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8442), - [4236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4641), - [4239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4500), - [4242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8973), - [4245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2064), - [4248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11448), - [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 113), - [4253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 113), - [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 114), - [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 114), - [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_module_fragment_declaration, 4, 0, 0), - [4261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_module_fragment_declaration, 4, 0, 0), - [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 10), - [4265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 10), - [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 115), - [4269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 115), - [4271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10545), - [4274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8104), - [4277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11151), - [4280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10458), - [4283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(583), - [4286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4652), - [4289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4880), - [4292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8411), - [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [4297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4526), - [4300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4454), - [4303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8983), - [4306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2028), - [4309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11420), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 59), - [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 59), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 10), - [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 10), - [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 60), - [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 60), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10768), - [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8111), - [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11455), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10360), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), - [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8442), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8973), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11448), - [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10545), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8104), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11151), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10458), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), - [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8411), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), - [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), - [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8983), - [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11420), - [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 48), - [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 48), - [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 169), - [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 169), - [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 113), - [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 113), - [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 48), - [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 48), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 114), - [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 114), - [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 115), - [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 115), - [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), - [4416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), - [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 6, 0, 169), - [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 6, 0, 169), - [4430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), - [4433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), - [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_declaration, 2, 0, 0), - [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_declaration, 2, 0, 0), - [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_module_fragment_declaration, 2, 0, 0), - [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_module_fragment_declaration, 2, 0, 0), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), - [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_declaration, 4, 0, 0), - [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_declaration, 4, 0, 0), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), - [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_declaration, 3, 0, 0), - [4456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_declaration, 3, 0, 0), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, 0, 10), - [4464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, 0, 10), - [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 59), - [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 59), - [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 10), - [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 10), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 60), - [4502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 60), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 48), - [4524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 48), - [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 48), - [4528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 48), - [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8809), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9355), - [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9310), - [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8770), - [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9472), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9289), - [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8818), - [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9306), - [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9328), - [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 28), - [4570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 28), - [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [4574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3654), - [4577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1509), - [4580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8770), - [4583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9472), - [4586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9289), - [4589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9175), - [4592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1777), - [4595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3621), - [4598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1614), - [4601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8758), - [4604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9419), - [4607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9520), - [4610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9188), - [4613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1782), - [4616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3602), - [4619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1562), - [4622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8739), - [4625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9306), - [4628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9328), - [4631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9280), - [4634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1772), - [4637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2892), - [4640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1538), - [4643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8786), - [4646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9173), - [4649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3599), - [4652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1793), - [4655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8818), - [4658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2420), - [4661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1541), - [4664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8774), - [4667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9300), - [4670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9368), - [4673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9200), - [4676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1746), - [4679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3537), - [4682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1478), - [4685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8808), - [4688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9365), - [4691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9367), - [4694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9248), - [4697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1695), - [4700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3446), - [4703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1476), - [4706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8736), - [4709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1808), - [4712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8817), - [4715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1649), - [4718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8798), - [4721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3455), - [4724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1634), - [4727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8771), - [4730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3606), - [4733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1697), - [4736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8809), - [4739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9355), - [4742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9310), - [4745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1717), - [4748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8780), - [4751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3656), - [4754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1593), - [4757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8743), - [4760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9333), - [4763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9393), - [4766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9174), - [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1778), - [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8277), - [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8277), - [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8584), - [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), - [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8238), - [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7268), - [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7269), - [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7270), - [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7388), - [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), - [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11108), - [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9161), - [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8212), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10868), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), - [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11070), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11178), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8451), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8733), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8421), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8424), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8402), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8468), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8716), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8234), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8385), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8476), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8460), - [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11452), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), - [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7359), - [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11441), - [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7667), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11445), - [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), - [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8965), - [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11426), - [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), - [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9022), - [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10986), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), - [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9020), - [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11457), - [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11449), - [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11413), - [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), - [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8969), - [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11436), - [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11432), - [5148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(228), - [5151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1532), - [5154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(229), - [5157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1469), - [5160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1540), - [5163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1540), - [5166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(220), - [5169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1625), - [5172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1625), - [5175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1537), - [5178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1626), - [5181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1278), - [5184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(11179), - [5187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(11514), - [5190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(11547), - [5193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9012), - [5196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6965), - [5199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9920), - [5202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9326), - [5205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7155), - [5208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7140), - [5211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1443), - [5214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10459), - [5217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1444), - [5220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6831), - [5223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7568), - [5226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(341), - [5229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [5231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [5233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [5237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [5240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), - [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), - [5251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), - [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [5255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [5258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), - [5260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [5262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [5265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(274), - [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8873), - [5272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, 0, 1), - [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), - [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), - [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10993), - [5284] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [5290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), - [5293] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), - [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7829), - [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), - [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [5317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10172), - [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10172), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [5326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), - [5328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11185), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), - [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10542), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), - [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10824), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10699), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10583), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11367), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10663), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), - [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8519), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7889), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8254), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8261), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), - [5440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(3260), - [5443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(217), - [5446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), - [5449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), - [5452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1826), - [5455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(4066), - [5458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1832), - [5461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8752), - [5464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1579), - [5467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), - [5469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7849), - [5472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9473), - [5475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1522), - [5478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1295), - [5481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(10898), - [5484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(11229), - [5487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(11030), - [5490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8519), - [5493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9032), - [5496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6317), - [5499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9679), - [5502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9416), - [5505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5900), - [5508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5911), - [5511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(11002), - [5514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9282), - [5517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [5520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(10143), - [5523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1633), - [5526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7039), - [5529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7563), - [5532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(339), - [5535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1736), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7093), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11397), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8790), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10428), - [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7271), - [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8638), - [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10673), - [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10679), - [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10664), - [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10667), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11159), - [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_default_capture, 1, 0, 0), - [5596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(275), - [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9321), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10064), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10913), - [5609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10920), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7954), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), - [5637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10790), - [5640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11031), - [5643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10945), - [5646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11042), - [5649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11025), - [5652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11011), - [5655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11094), - [5658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10755), - [5661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11435), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [5668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10728), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), - [5673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10517), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [5678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 1, 0), - [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [5682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11438), - [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 1, 111), - [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 84), - [5711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 162), - [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 111), - [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [5723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 202), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11113), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [5729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11495), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11167), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [5736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11502), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), - [5741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10547), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), - [5746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10745), - [5749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10614), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11184), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11223), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [5766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10534), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8418), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [5775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10668), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8726), - [5786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11333), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [5791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11456), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [5796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11381), - [5799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11326), - [5802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11486), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7987), - [5807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11091), - [5810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10732), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), - [5817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10874), - [5820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10781), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [5827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10774), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), - [5832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10489), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8449), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10836), - [5841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11447), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [5856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10731), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11142), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [5863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11352), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8412), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8450), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11164), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11346), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10757), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [5892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11357), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8401), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11358), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), - [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10486), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), - [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10518), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10885), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10621), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11020), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11385), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), - [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10778), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7841), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [5949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11493), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8459), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10961), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8169), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8465), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11204), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8730), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [6008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11387), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), - [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5628), - [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7813), - [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7794), - [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7836), - [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7837), - [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7835), - [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7812), - [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7843), - [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7808), - [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7807), - [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7858), - [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7821), - [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7798), - [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7862), - [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7817), - [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7845), - [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7800), - [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7799), - [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7842), - [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7814), - [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7848), - [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7847), - [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7851), - [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7859), - [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7833), - [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7844), - [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7793), - [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7795), - [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7854), - [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7824), - [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7826), - [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7852), - [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8283), - [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8283), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8579), - [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9274), - [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9630), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [6111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), - [6113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), - [6115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(2754), - [6118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(2754), - [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11233), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9181), - [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11256), - [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8954), - [6131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4798), - [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10590), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7671), - [6142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3492), - [6145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7671), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11233), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11256), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8954), - [6156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4769), - [6159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3492), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10590), - [6166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7671), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9763), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9910), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9719), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9860), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9957), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9983), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9832), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [6201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), - [6203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 1, 34), - [6205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), - [6208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), - [6210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), - [6212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), - [6215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(278), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7831), - [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11316), - [6226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 17), - [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, 0, 18), - [6230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 17), REDUCE(sym_template_function, 2, 0, 18), - [6233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 17), - [6235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, 0, 18), - [6237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 17), REDUCE(sym_template_function, 2, 0, 18), - [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11411), - [6242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 1, 0), - [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 1, 0), - [6246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 3, 0), - [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 3, 0), - [6250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 2, 0), - [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 2, 0), - [6254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 1, 0), - [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 1, 0), - [6258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 3, 0), - [6260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 3, 0), - [6262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 2, 0), - [6264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 2, 0), - [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10669), - [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10965), - [6270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2, 0, 0), - [6272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2, 0, 0), - [6274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3908), - [6277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3908), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11197), - [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11197), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9192), - [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11250), - [6292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4765), - [6295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4917), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11433), - [6302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7645), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), - [6309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11233), - [6312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11233), - [6315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4797), - [6318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3970), - [6321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3970), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11287), - [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11287), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9204), - [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11296), - [6336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4794), - [6339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5099), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10861), - [6346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7641), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), - [6353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4019), - [6356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4019), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11275), - [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11275), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9198), - [6367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11295), - [6371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4793), - [6374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4993), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10837), - [6381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7669), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7669), - [6388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 1, 0, 0), - [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 1, 0, 0), - [6392] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(265), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11166), - [6402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4178), - [6405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4178), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11259), - [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11259), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9202), - [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11284), - [6420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4791), - [6423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5526), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10735), - [6430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7657), - [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11166), - [6439] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(257), - [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11225), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), - [6457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), - [6459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11291), - [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11218), - [6495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), - [6497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), - [6499] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(272), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10964), - [6509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(261), - [6512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(281), - [6515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9377), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10448), - [6521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 2, 0, 0), - [6523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 2, 0, 0), - [6525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [6527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [6529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1942), - [6532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11256), - [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9490), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10470), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9513), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10471), - [6547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1953), - [6550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11218), - [6553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [6555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [6557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11233), - [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [6566] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(276), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11144), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [6582] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(260), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11206), - [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), - [6600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [6602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [6604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1975), - [6607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), - [6610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(276), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9413), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11225), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10465), - [6627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [6631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1931), - [6634] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(258), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9442), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11239), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10466), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11198), - [6670] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(263), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9453), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11252), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10467), - [6684] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(269), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9512), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11186), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10462), - [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [6706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(269), - [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [6713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(272), - [6716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), - [6718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), - [6720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), - [6722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11276), - [6746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), - [6748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), REDUCE(sym_splice_expression, 1, 0, 0), - [6751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), - [6753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splice_expression, 1, 0, 0), - [6755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), REDUCE(sym_splice_expression, 1, 0, 0), - [6758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splice_expression, 1, 0, 0), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [6762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__splice_specialization_specifier, 2, 0, 0), - [6764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__splice_specialization_specifier, 2, 0, 0), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11291), - [6786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), - [6788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), - [6790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [6792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [6794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), - [6796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [6798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), - [6800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8856), - [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [6806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [6808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [6812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [6814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [6816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1953), - [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [6821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11218), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [6826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, 0, 6), - [6828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, 0, 6), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11217), - [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7907), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8216), - [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [6844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splice_specifier, 3, 0, 0), - [6846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splice_specifier, 3, 0, 0), - [6848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(265), - [6851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4269), - [6854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4269), - [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11156), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9172), - [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11244), - [6865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4796), - [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), - [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), - [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10524), - [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7639), - [6876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5297), - [6879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7639), - [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [6884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), - [6886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), - [6888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1953), - [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [6893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11218), - [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [6900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [6902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11156), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11244), - [6910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4741), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10524), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), - [6921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5297), - [6924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7658), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11264), - [6949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), - [6951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), - [6953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2130), - [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [6960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2083), - [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [6967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), - [6969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), - [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [6985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 50), - [6987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 50), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8649), - [6991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 2), - [6993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 1, 0, 2), - [6995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 2), - [6997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 2), - [6999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 21), - [7001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 21), - [7003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 21), - [7005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 21), - [7007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), - [7009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), - [7011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 102), - [7013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 102), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [7017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, 0, 104), - [7019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, 0, 104), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), - [7031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, 0, 1), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11218), - [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), - [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7089), - [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7090), - [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), - [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7129), - [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), - [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7102), - [7053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 47), - [7055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 47), - [7057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 49), - [7059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 49), - [7061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 51), - [7063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 51), - [7065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 7), - [7067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 7), - [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7103), - [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7104), - [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), - [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7109), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), - [7081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [7084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [7087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), - [7089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), - [7091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 100), - [7093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 100), - [7095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 105), - [7097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 105), - [7099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 108), - [7101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 108), - [7103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 47), - [7105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 47), - [7107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4, 0, 0), - [7109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4, 0, 0), - [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7142), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7143), - [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7144), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7146), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7147), - [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7148), - [7123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 153), - [7125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 153), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7166), - [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7167), - [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7168), - [7133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 154), - [7135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 154), - [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7169), - [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7170), - [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7171), - [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7177), - [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7178), - [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7179), - [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7181), - [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7182), - [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7183), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7188), - [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7189), - [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7190), - [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7191), - [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7192), - [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), - [7167] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(265), - [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7200), - [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7201), - [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7202), - [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), - [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7204), - [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), - [7183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, 0, 0), - [7185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, 0, 0), - [7187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, 0, 11), - [7189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, 0, 11), - [7191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), - [7193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), - [7195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [7197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [7199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 36), - [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 36), - [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [7205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), - [7207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), - [7209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 10), - [7211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 10), - [7213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 46), - [7215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 46), - [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [7219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [7221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [7223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, 0, 12), - [7225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, 0, 12), - [7227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 11), - [7229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 11), - [7231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 6), - [7233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 6), - [7235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, -1, 0), - [7237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, -1, 0), - [7239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 80), - [7241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 80), - [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [7245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 16), - [7247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 16), - [7249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), - [7251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), - [7253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, 0, 103), - [7255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, 0, 103), - [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [7259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [7261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [7263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 47), - [7265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 47), - [7267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 48), - [7269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 48), - [7271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 49), - [7273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 49), - [7275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), - [7277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 50), - [7279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, 0, 12), - [7281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, 0, 12), - [7283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [7285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [7287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, 0, 107), - [7289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, 0, 107), - [7291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 51), - [7293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 51), - [7295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 32), - [7297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 32), - [7299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 7), - [7301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 7), - [7303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype_auto, 4, 0, 0), - [7305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype_auto, 4, 0, 0), - [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [7309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2278), - [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [7314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11198), - [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), - [7325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 12), - [7327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 12), - [7329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 12), - [7331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 12), - [7333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [7335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [7337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 100), - [7339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 100), - [7341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 102), - [7343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 102), - [7345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 105), - [7347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 105), - [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [7351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 108), - [7353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 108), - [7355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 47), - [7357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 47), - [7359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, 0, 155), - [7361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, 0, 155), - [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [7365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2278), - [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [7370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11198), - [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [7375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 153), - [7377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 153), - [7379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 5, 0, 154), - [7381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 5, 0, 154), - [7383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 46), - [7385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, 0, 46), - [7387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), - [7389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), - [7391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 19), - [7393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 19), - [7395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 80), - [7397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, -1, 80), - [7399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1186), - [7402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 21), - [7404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 21), - [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [7408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 36), - [7410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 36), - [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [7414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 21), - [7416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 21), - [7418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2133), - [7421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 1, 0, 13), - [7423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 1, 0, 13), - [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [7427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2312), - [7430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11288), - [7433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6023), - [7436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6023), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11249), - [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11249), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9195), - [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11280), - [7451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4788), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10674), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), - [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [7464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2295), - [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [7469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11276), - [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [7474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11156), - [7477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11156), - [7480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4795), - [7483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6590), - [7486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7649), - [7489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6029), - [7492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6029), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11267), - [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11267), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9203), - [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11294), - [7507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4792), - [7510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6589), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10792), - [7517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7677), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [7526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2312), - [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [7531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11288), - [7534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2278), - [7537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11198), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [7544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), - [7546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), - [7548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(2754), - [7551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(2754), - [7554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4769), - [7557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3492), - [7560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7671), - [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [7565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2295), - [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [7570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11276), - [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [7579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4798), - [7582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3492), - [7585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7671), - [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), - [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6576), - [7592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9029), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), - [7600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 10), - [7602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 10), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), - [7606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2295), - [7609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11276), - [7612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2300), - [7615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2300), - [7618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11250), - [7621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2312), - [7624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11288), - [7627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), - [7629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), - [7631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4769), - [7634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(3492), - [7637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7671), - [7640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [7642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4798), - [7645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(3492), - [7648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7671), - [7651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 48), - [7653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 48), - [7655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2222), - [7658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2372), - [7661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2372), - [7664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11295), - [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [7669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2432), - [7672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [7674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11264), - [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10445), - [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [7683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11197), - [7686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11197), - [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [7691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2432), - [7694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [7696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11264), - [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11198), - [7705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2403), - [7708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2403), - [7711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11296), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11217), - [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8030), - [7718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11276), - [7722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11287), - [7725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11287), - [7728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2263), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), - [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), - [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), - [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [7743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11272), - [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [7751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2280), - [7754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [7756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [7758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11288), - [7760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2432), - [7763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11264), - [7766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11275), - [7769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11275), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [7784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11134), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [7792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2498), - [7795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2498), - [7798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11284), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [7803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2533), - [7806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11291), - [7809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, 0, 14), - [7811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, 0, 14), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11177), - [7815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11177), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7907), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8216), - [7823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2544), - [7826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2544), - [7829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2531), - [7832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(276), - [7835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3908), - [7838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3908), - [7841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4765), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [7848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4917), - [7851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7645), - [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [7856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, 0, 157), - [7858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, 0, 157), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11271), - [7864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11271), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [7868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8510), - [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), - [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), - [7874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), - [7876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10944), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9150), - [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10946), - [7884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11104), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11264), - [7894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2339), - [7897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2578), - [7900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2578), - [7903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2579), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [7914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [7918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2587), - [7921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2363), - [7924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(11178), - [7927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11233), - [7930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11233), - [7933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4797), - [7936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(263), - [7939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2559), - [7942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11244), - [7945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4019), - [7948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4019), - [7951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4793), - [7954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4993), - [7957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7669), - [7960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3970), - [7963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3970), - [7966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4794), - [7969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5099), - [7972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7641), - [7975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2589), - [7978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2589), - [7981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2626), - [7984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2592), - [7987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11134), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8692), - [7994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4765), - [7997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4917), - [8000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7645), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11283), - [8005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11283), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [8009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(258), - [8012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11259), - [8015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11259), - [8018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(265), - [8021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2792), - [8024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2627), - [8027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10204), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), - [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), - [8036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11156), - [8039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4793), - [8042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2439), - [8045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [8047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [8049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9337), - [8052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10452), - [8055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4993), - [8058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7669), - [8061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4794), - [8064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5099), - [8067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7641), - [8070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11233), - [8073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11233), - [8076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4797), - [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10204), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [8085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), - [8087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), - [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), - [8091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4798), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7995), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8687), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7998), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8700), - [8102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(3492), - [8105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7671), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), - [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [8118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [8120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4769), - [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [8125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [8127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [8129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(3492), - [8132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7671), - [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [8137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(260), - [8140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splice_expression, 2, 0, 0), - [8142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), REDUCE(sym_splice_expression, 2, 0, 0), - [8145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splice_expression, 2, 0, 0), - [8147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), REDUCE(sym_splice_expression, 2, 0, 0), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [8158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4178), - [8161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4178), - [8164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4791), - [8167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1188), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [8174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5526), - [8177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7657), - [8180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2835), - [8183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2835), - [8186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2819), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11255), - [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11255), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [8195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8213), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), - [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), - [8205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2546), - [8208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), - [8210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4791), - [8213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5526), - [8216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7657), - [8219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1191), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), - [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11260), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), - [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [8256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11272), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7986), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8695), - [8274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1190), - [8277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 216), - [8279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 216), - [8281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 7, 0, 225), - [8283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 7, 0, 225), - [8285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 188), - [8287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 188), - [8289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 135), - [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 135), - [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), - [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [8297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2592), - [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [8302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11134), - [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), - [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), - [8313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 216), - [8315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 216), - [8317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 84), - [8319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 84), - [8321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 10), - [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 10), - [8325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 61), - [8327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 61), - [8329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 71), - [8331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 71), - [8333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 72), - [8335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 72), - [8337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 71), - [8339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 71), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), - [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), - [8347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 208), - [8349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 208), - [8351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(281), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), - [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), - [8362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 136), - [8364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 136), - [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [8368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2592), - [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [8373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11134), - [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [8378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 195), - [8380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 195), - [8382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [8384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [8386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 61), - [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 61), - [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [8392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_list_item, 2, 0, 0), - [8394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_list_item, 2, 0, 0), - [8396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 208), - [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 208), - [8400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [8402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [8404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 225), - [8406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 225), - [8408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 71), - [8410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 71), - [8412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 215), - [8414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 215), - [8416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1, 0, 0), - [8418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1, 0, 0), - [8420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 194), - [8422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 194), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), - [8428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), - [8430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 84), - [8432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 84), - [8434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 215), - [8436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 215), - [8438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 85), - [8440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 85), - [8442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 10), - [8444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 10), - [8446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 5, 0, 0), - [8448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 5, 0, 0), - [8450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 71), - [8452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 71), - [8454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 7, 0, 224), - [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 7, 0, 224), - [8458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 195), - [8460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 195), - [8462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 194), - [8464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 194), - [8466] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(276), - [8470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4765), - [8473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4917), - [8476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7645), - [8479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 1, 0, 0), - [8481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 1, 0, 0), - [8483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3320), - [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10137), - [8492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(276), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [8497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10222), - [8500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10222), - [8502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10137), - [8505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3176), - [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [8510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [8512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 2, 0, 0), - [8514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 2, 0, 0), - [8516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 132), - [8518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 132), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), - [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), - [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [8528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11233), - [8531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11233), - [8534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4797), - [8537] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(263), - [8541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), - [8543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), - [8545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(3492), - [8548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7671), - [8551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4, 0, 0), - [8553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4, 0, 0), - [8555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4, 0, 0), - [8557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4, 0, 0), - [8559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), - [8561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), - [8563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(3492), - [8566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7671), - [8569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(258), - [8572] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(258), - [8576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4794), - [8579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 5, 0, 0), - [8581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 5, 0, 0), - [8583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1, 0, 0), - [8585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1, 0, 0), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), - [8593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), - [8595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, 0, 186), - [8597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, 0, 186), - [8599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 2, 0, 0), - [8601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 2, 0, 0), - [8603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(257), - [8606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement_clause_constraint, 3, 0, 0), - [8608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement_clause_constraint, 3, 0, 0), - [8610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, 0, 33), - [8612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, 0, 33), - [8614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_conjunction, 3, 0, 58), - [8616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_conjunction, 3, 0, 58), - [8618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 3, 0, 70), - [8620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 3, 0, 70), - [8622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 3, 0, 0), - [8624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 3, 0, 0), - [8626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4793), - [8629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_expression, 3, 0, 41), - [8631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_expression, 3, 0, 41), - [8633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 2, 0, 22), - [8635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 2, 0, 22), - [8637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3, 0, 0), - [8639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3, 0, 0), - [8641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3, 0, 0), - [8643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3, 0, 0), - [8645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4993), - [8648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7669), - [8651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 77), - [8653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 77), - [8655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 78), - [8657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 78), - [8659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5099), - [8662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7641), - [8665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 131), - [8667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 131), - [8669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11134), - [8671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [8673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [8675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 27), - [8677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 27), - [8679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3482), - [8682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(10636), - [8685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 43), - [8687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 43), - [8689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [8691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [8693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 184), - [8695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 184), - [8697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(265), - [8700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [8702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9181), - [8705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 126), - [8707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 126), - [8709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), - [8711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), - [8713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), - [8715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), - [8717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 44), - [8719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 44), - [8721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 92), - [8723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 92), - [8725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 3, 0, 0), - [8727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 3, 0, 0), - [8729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), - [8731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 27), - [8733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 27), - [8735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [8737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), - [8739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), - [8741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2, 0, 0), - [8743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2, 0, 0), - [8745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [8747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [8751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4, 0, 0), - [8753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4, 0, 0), - [8755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), - [8757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), - [8759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(3492), - [8762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4791), - [8765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5526), - [8768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7657), - [8771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3239), - [8774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_postfix, 1, 0, 0), - [8776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_postfix, 1, 0, 0), - [8778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3, 0, 0), - [8780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3, 0, 0), - [8782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [8788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [8790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), - [8792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3785), - [8795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [8797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11260), - [8800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), - [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [8804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 68), - [8806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 68), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [8812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4269), - [8815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4269), - [8818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4741), - [8821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5297), - [8824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7658), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [8829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2, 0, 0), - [8831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2, 0, 0), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [8835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_expression, 1, 0, 0), - [8838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_expression, 1, 0, 0), - [8841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 21), - [8843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 21), - [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [8849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3736), - [8852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [8854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11268), - [8857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3404), - [8860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9513), - [8863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10471), - [8866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 46), - [8868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 46), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [8872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(266), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [8879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(257), - [8882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4796), - [8885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5297), - [8888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7639), - [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [8893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3736), - [8896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11268), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [8903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 96), - [8905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 96), - [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11133), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [8911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [8913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3785), - [8916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [8918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11260), - [8921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), - [8923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, 1, 182), - [8925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 182), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [8929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [8931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, 1, 90), - [8933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 90), - [8935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1, 0, 0), - [8937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1, 0, 0), - [8939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_disjunction, 3, 0, 58), - [8941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_disjunction, 3, 0, 58), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), - [8945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7623), - [8947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type_declarator, 2, 1, 0), - [8949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type_declarator, 2, 1, 0), - [8951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 145), - [8953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 145), - [8955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1, 0, 0), - [8957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), - [8959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_clause, 2, 0, 23), - [8961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_clause, 2, 0, 23), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), - [8967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7673), - [8969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7680), - [8971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4741), - [8974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5297), - [8977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7658), - [8980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(10401), - [8983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(11323), - [8986] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(8425), - [8990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [8992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, 0, 40), - [8994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 40), - [8996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4796), - [8999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), - [9001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), - [9003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 189), - [9005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 189), - [9007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 2, 0, 0), - [9009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 2, 0, 0), - [9011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 126), - [9013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 126), - [9015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 27), - [9017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 27), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8696), - [9023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11133), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [9029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, 0, 184), - [9031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 184), - [9033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, 1, 42), - [9035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 42), - [9037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 7, 0, 24), - [9039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 7, 0, 24), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11323), - [9043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(8425), - [9046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3552), - [9049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9377), - [9052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10448), - [9055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3785), - [9058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11260), - [9061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(272), - [9064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [9066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3736), - [9069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11268), - [9072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1, 0, 0), - [9074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_reference_declarator, 1, 0, 0), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [9078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), - [9080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), - [9082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, 0, 25), - [9084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 25), - [9086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 95), - [9088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 95), - [9090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(260), - [9093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), - [9095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), - [9097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 137), - [9099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 137), - [9101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), - [9103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), - [9105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 67), - [9107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 67), - [9109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 27), - [9111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 27), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), - [9115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7686), - [9117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 119), - [9119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 119), - [9121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5297), - [9124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7639), - [9127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, 1, 5), - [9129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 5), - [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [9133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [9135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 128), - [9137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, 2, 128), - [9139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 128), SHIFT(265), - [9142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, 0, 127), - [9144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, 0, 127), - [9146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), - [9148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 1, 0, 0), - [9151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3610), - [9154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9442), - [9157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10466), - [9160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8031), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8657), - [9164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3884), - [9167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3884), - [9170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11294), - [9173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, 0, 177), - [9175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, 0, 177), - [9177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), - [9179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 1, 75), - [9181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), SHIFT(265), - [9184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(263), - [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), - [9193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3637), - [9196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9453), - [9199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10467), - [9202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3874), - [9205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3874), - [9208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11280), - [9211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [9213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [9215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [9217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 2, 0, 0), - [9219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 2, 0, 0), - [9222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(258), - [9225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), - [9227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, 1, 79), - [9229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(265), - [9232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 4), - [9234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 4), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [9240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8043), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8043), - [9244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 4), - [9246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 4), - [9248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 0, 34), - [9250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, 0, 34), - [9252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 14), - [9254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 14), - [9256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3716), - [9259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3670), - [9262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), - [9264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 76), - [9266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), - [9268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), - [9270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 89), - [9272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 89), - [9274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), - [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11260), - [9278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [9280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [9282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 58), - [9284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 58), - [9286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 4), - [9288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 4), - [9290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, 0, 4), - [9292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, 0, 4), - [9294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 41), - [9296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 41), - [9298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [9300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), - [9302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11268), - [9304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, 0, 18), - [9306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, 0, 18), - [9308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2, 0, 0), - [9310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2, 0, 0), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [9314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4076), - [9317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3482), - [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), - [9322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(10636), - [9325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), - [9327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4094), - [9330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3482), - [9333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), - [9335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(10636), - [9338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [9340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 1, 0, 0), - [9342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reflect_expression, 2, 0, 0), - [9344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reflect_expression, 2, 0, 0), - [9346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 1, 0, 0), - [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [9350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6886), - [9352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11249), - [9355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11249), - [9358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 4, 0, 177), - [9360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 4, 0, 177), - [9362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11267), - [9365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11267), - [9368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), SHIFT(265), - [9371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 1, 55), - [9373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 1, 55), - [9375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 221), - [9377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 221), - [9379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 167), - [9381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 167), - [9383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), - [9385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4050), - [9388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11272), - [9391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), - [9393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), - [9395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4769), - [9398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(3492), - [9401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7671), - [9404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 34), - [9406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 0, 34), - [9408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 178), - [9410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 178), - [9412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 233), - [9414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 233), - [9416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 230), - [9418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 230), - [9420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 229), - [9422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 229), - [9424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), - [9426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), - [9428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 89), - [9430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 89), - [9432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 94), - [9434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 94), - [9436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 58), - [9438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 58), - [9440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3, 0, 0), - [9442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3, 0, 0), - [9444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 66), - [9446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 66), - [9448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), - [9450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), - [9452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), - [9454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), - [9456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2, 0, 0), - [9458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2, 0, 0), - [9460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), - [9464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), - [9466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), - [9468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2, 0, 0), - [9470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2, 0, 0), - [9472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 1, 8), - [9474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 1, 8), - [9476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 2, 0, 30), - [9478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 2, 0, 30), - [9480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), - [9482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), - [9484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, 0, 191), - [9486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, 0, 191), - [9488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), - [9490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3800), - [9493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9321), - [9496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10064), - [9499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), - [9501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), - [9503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 203), - [9505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 203), - [9507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 205), - [9509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 205), - [9511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 206), - [9513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 206), - [9515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 2, 0, 9), - [9517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 2, 0, 9), - [9519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 29), - [9521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 29), - [9523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [9525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [9527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 117), - [9529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 117), - [9531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 118), - [9533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 118), - [9535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4798), - [9538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [9540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [9542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 168), - [9544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 168), - [9546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 3, 0, 56), - [9548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 3, 0, 56), - [9550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 143), - [9552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 143), - [9554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [9556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [9558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 222), - [9560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 222), - [9562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 46), - [9564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 46), - [9566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 112), - [9568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 112), - [9570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, 0, 165), - [9572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, 0, 165), - [9574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 144), - [9576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 144), - [9578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), - [9580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), - [9582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), - [9584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11263), - [9588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11263), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11243), - [9594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11243), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [9598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [9600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 2), - [9602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 2), - [9604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), - [9606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4191), - [9609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4191), - [9612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4218), - [9615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6023), - [9618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6023), - [9621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4788), - [9624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6029), - [9627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6029), - [9630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4792), - [9633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11156), - [9636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11156), - [9639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4795), - [9642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6590), - [9645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7649), - [9648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6589), - [9651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7677), - [9654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 21), - [9656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 21), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [9660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4192), - [9663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4192), - [9666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4181), - [9669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(269), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [9678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [9680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [9682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4644), - [9685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3915), - [9688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4556), - [9691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10944), - [9694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9150), - [9697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10946), - [9700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11104), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [9707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 2), - [9709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 2), - [9711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), - [9719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 21), - [9721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 21), - [9723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), - [9725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7968), - [9727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4741), - [9730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5297), - [9733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7658), - [9736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4238), - [9739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11157), - [9742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11156), - [9745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11156), - [9748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4795), - [9751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4788), - [9754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(6590), - [9757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7649), - [9760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4792), - [9763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(6589), - [9766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7677), - [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [9771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4035), - [9774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), - [9776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4796), - [9779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5297), - [9782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7639), - [9785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), - [9787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [9789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7065), - [9791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), - [9793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4015), - [9796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9369), - [9799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10443), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7978), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8659), - [9808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement, 1, 0, 69), - [9810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement, 1, 0, 69), - [9812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [9814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7062), - [9816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), - [9822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7448), - [9824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), - [9826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), - [9828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 4, 0, 0), - [9830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 4, 0, 0), - [9832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 39), - [9834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 39), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [9838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 86), - [9840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 86), - [9842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 67), - [9844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 67), - [9846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 139), - [9848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 4, 0, 139), - [9850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 5), - [9852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 5), - [9854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 2, 0, 0), - [9856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_reference_declarator, 2, 0, 0), - [9858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 42), - [9860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 42), - [9862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 90), - [9864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 90), - [9866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), - [9868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [9870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 5, 0, 0), - [9872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 5, 0, 0), - [9874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8685), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), - [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7446), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), - [9884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 6, 0, 0), - [9886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 6, 0, 0), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), - [9892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7409), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), - [9898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7401), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), - [9904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7423), - [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), - [9910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7430), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), - [9916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7418), - [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [9920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [9922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), - [9924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [9926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9434), - [9930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [9932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [9934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [9936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4797), - [9939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [9943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_requirement, 2, 0, 0), - [9945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_requirement, 2, 0, 0), - [9947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4165), - [9950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [9952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4765), - [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), - [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), - [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11116), - [9967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4917), - [9970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7645), - [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [9975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [9977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [9979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), - [9982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), - [9984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4238), - [9987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), - [9989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11157), - [9992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), - [9994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4793), - [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7933), - [9999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7933), - [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [10003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11102), - [10006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11102), - [10009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(9163), - [10012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11157), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11131), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), - [10024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4794), - [10027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5099), - [10030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7641), - [10033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(4917), - [10036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7645), - [10039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8216), - [10042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7653), - [10045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4993), - [10048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7669), - [10051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [10053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7020), - [10055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), - [10057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4238), - [10060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), - [10062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11157), - [10065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), - [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8003), - [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7959), - [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [10075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5099), - [10078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7641), - [10081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_fold_operator, 3, 0, 138), - [10083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold_operator, 3, 0, 138), - [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [10089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_expression, 2, 0, 0), - [10091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), - [10093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [10095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [10101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [10103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [10105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [10109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [10113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [10117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [10119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [10121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [10123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2, 0, 0), - [10125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2, 0, 0), - [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8669), - [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [10153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9192), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), - [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [10168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(4993), - [10171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7669), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [10176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3, 0, 0), - [10178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3, 0, 0), - [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [10184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4, 0, 0), - [10186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4, 0, 0), - [10188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 129), - [10190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 129), - [10192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5, 0, 0), - [10194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5, 0, 0), - [10196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 185), - [10198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 185), - [10200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4792), - [10203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(6589), - [10206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7677), - [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [10213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), - [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [10217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4791), - [10220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4788), - [10223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(6590), - [10226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7649), - [10229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(4917), - [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [10236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), - [10238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11156), - [10241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11156), - [10244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4795), - [10247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), - [10249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), - [10251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9204), - [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11102), - [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11102), - [10258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8954), - [10261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8954), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [10268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9198), - [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [10273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7961), - [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [10279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5526), - [10282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7657), - [10285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8858), - [10287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [10289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), - [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7989), - [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8605), - [10295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [10297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7370), - [10299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [10301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [10303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [10309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [10311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [10313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [10317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [10321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [10325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [10327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), - [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [10349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [10351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [10353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [10355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [10357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [10363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [10365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [10367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [10373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [10377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [10379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [10381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [10383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [10387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [10429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8090), - [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), - [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10887), - [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9163), - [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [10439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8405), - [10442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7628), - [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [10447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9172), - [10450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(4993), - [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7982), - [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8866), - [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), - [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [10467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4591), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [10474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8405), - [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), - [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [10484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5526), - [10487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7657), - [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [10492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8878), - [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [10496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(266), - [10499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5099), - [10502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [10504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8865), - [10506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [10508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, 0, 116), - [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7383), - [10512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [10514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [10516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), - [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [10524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), - [10526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), - [10528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), - [10531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), - [10533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), - [10535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), - [10538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), - [10540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [10546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [10548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [10554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [10556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [10558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [10562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [10566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [10572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [10574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [10580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [10588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7474), - [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8564), - [10592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7459), - [10594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7651), - [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8168), - [10598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7131), - [10600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7132), - [10602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7133), - [10604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7357), - [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [10608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7627), - [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [10613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), - [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10730), - [10619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6210), - [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8612), - [10623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), - [10625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7036), - [10627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8122), - [10629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7228), - [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7229), - [10633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7230), - [10635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7365), - [10637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7496), - [10639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11245), - [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [10643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), - [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10525), - [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8621), - [10653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7341), - [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), - [10657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), - [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), - [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10725), - [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8212), - [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), - [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), - [10669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7644), - [10671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7674), - [10673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5297), - [10676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8639), - [10680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7301), - [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8593), - [10688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [10690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7362), - [10692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9202), - [10695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6552), - [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8634), - [10699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7353), - [10703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8549), - [10707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7355), - [10709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8588), - [10713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [10715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7367), - [10717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8571), - [10721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7314), - [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8604), - [10729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [10731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7336), - [10733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8624), - [10737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [10739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7345), - [10741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8631), - [10745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7348), - [10747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [10749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7349), - [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), - [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [10757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), - [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10508), - [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [10765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10559), - [10771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [10773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [10779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [10781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [10785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [10789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [10791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), - [10799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(278), - [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), - [10814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(263), - [10817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4979), - [10820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9490), - [10823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10470), - [10826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7626), - [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), - [10833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7665), - [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [10837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [10839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(281), - [10842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3482), - [10845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5027), - [10848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4712), - [10851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10753), - [10854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9285), - [10857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10997), - [10860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10636), - [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), - [10865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7663), - [10867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), - [10869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), - [10871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4644), - [10874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5030), - [10877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4556), - [10880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(10944), - [10883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(9150), - [10886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(10946), - [10889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11104), - [10892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6184), - [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), - [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), - [10899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7666), - [10901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7633), - [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [10907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), SHIFT(276), - [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [10912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5078), - [10914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 128), SHIFT(276), - [10917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5526), - [10920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), - [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), - [10928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7662), - [10930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), - [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), - [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), - [10936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), - [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), - [10942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(266), - [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [10947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [10949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [10951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [10953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [10957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [10961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [10969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8106), - [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8106), - [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [10977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8075), - [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), - [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), - [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11310), - [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [10987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [10989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [10991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [10993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [10995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [11001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [11003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [11005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [11011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [11015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [11017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [11019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [11021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [11023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11343), - [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11354), - [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11356), - [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11362), - [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11363), - [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11366), - [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11383), - [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11391), - [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11395), - [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11402), - [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11439), - [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), - [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [11065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [11067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [11073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [11075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [11077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [11081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [11085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [11091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [11093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [11101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8081), - [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), - [11105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 128), SHIFT(258), - [11108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [11110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [11116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [11118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [11124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [11130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [11132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), - [11142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(276), - [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), - [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9488), - [11157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 61), - [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), - [11161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), - [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [11165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), SHIFT(258), - [11168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(261), - [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [11175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), SHIFT(263), - [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), - [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [11184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), - [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7940), - [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), - [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8244), - [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), - [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), - [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [11206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [11212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [11214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [11216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [11220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [11224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [11228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [11230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), - [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [11244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 4, 0, 147), - [11246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), SHIFT(276), - [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), - [11255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7785), - [11257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 128), SHIFT(263), - [11260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8004), - [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [11266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [11268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), - [11274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), - [11276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5519), - [11278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5450), - [11281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9512), - [11284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10462), - [11287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), SHIFT(258), - [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), - [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7999), - [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8670), - [11296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), - [11298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), - [11300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(258), - [11303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(263), - [11306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), - [11308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5519), - [11311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9413), - [11314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10465), - [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), - [11319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), SHIFT(282), - [11322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), - [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [11326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [11328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [11334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [11336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [11338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [11342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [11346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [11354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture, 2, 0, 0), - [11356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture, 2, 0, 0), - [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), - [11361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [11363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), - [11365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [11367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [11369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5297), - [11372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7658), - [11375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5297), - [11378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7658), - [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7932), - [11385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7932), - [11387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4741), - [11390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6080), - [11393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6073), - [11396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4796), - [11399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), - [11401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [11403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7002), - [11405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5297), - [11408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7639), - [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7965), - [11413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7955), - [11419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7955), - [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), - [11423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), - [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), - [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), - [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [11431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), - [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11234), - [11435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5297), - [11438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7639), - [11441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8001), - [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), - [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7960), - [11447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7960), - [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [11453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [11455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6849), - [11457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [11459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6866), - [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), - [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8103), - [11465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8103), - [11467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), - [11471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4795), - [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), - [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), - [11478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8056), - [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), - [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8057), - [11484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8057), - [11486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [11488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7058), - [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), - [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [11494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), - [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), - [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), - [11502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8141), - [11504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), - [11506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [11508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [11510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8474), - [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), - [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), - [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), - [11518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8203), - [11520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8473), - [11522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8383), - [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), - [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), - [11528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8182), - [11530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), - [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), - [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), - [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), - [11538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8157), - [11540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), - [11542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5533), - [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), - [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), - [11548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8171), - [11550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), - [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), - [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), - [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8200), - [11558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8200), - [11560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), - [11562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), - [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), - [11568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8136), - [11570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), - [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), - [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), - [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), - [11578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8142), - [11580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), - [11582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), - [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [11586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6312), - [11589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6312), - [11592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6291), - [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), - [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), - [11599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7656), - [11601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7678), - [11603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4792), - [11606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(6589), - [11609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7677), - [11612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4788), - [11615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(6590), - [11618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7649), - [11621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), - [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [11625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), - [11627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8658), - [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7875), - [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), - [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8345), - [11635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8345), - [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), - [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8378), - [11641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8378), - [11643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 152), - [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [11647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 152), - [11649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [11653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [11659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [11663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [11667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [11677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [11679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [11681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [11683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7990), - [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), - [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), - [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11246), - [11695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9061), - [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), - [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8327), - [11701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8327), - [11703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), - [11705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), - [11707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(6590), - [11710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7649), - [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7973), - [11715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(6589), - [11718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7677), - [11721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4238), - [11724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6268), - [11727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7435), - [11730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11102), - [11733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11102), - [11736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9163), - [11739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11103), - [11742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7435), - [11745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4238), - [11748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11157), - [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8364), - [11753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [11757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [11763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [11767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [11771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10753), - [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), - [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), - [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11103), - [11795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7435), - [11797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6485), - [11800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11234), - [11803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6570), - [11806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6614), - [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7961), - [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [11813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11102), - [11816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11102), - [11819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9203), - [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), - [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), - [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8396), - [11830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8396), - [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), - [11834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9195), - [11837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7057), - [11839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(6485), - [11842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), - [11844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11234), - [11847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7056), - [11849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7084), - [11851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(6485), - [11854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6995), - [11856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11234), - [11859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7041), - [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [11865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [11869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [11875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [11879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [11883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [11897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(6590), - [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), - [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8497), - [11906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8497), - [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [11912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(6589), - [11915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), - [11917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitfield_clause, 2, 0, 0), - [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [11927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), - [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9713), - [11931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, 0, 0), - [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), - [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), - [11941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 4, 0, 187), - [11943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 4, 0, 187), - [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), - [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [11949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [11953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [11959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [11963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [11967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [11971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), - [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), - [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), - [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [11999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [12003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [12009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [12013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [12017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), - [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), - [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), - [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), - [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [12049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6476), - [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7687), - [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), - [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), - [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), - [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8772), - [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), - [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), - [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), - [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), - [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [12106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), - [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), - [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [12128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 87), - [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), - [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), - [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), - [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7900), - [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), - [12144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11102), - [12147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11102), - [12150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(9163), - [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), - [12159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), - [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), - [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), - [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [12167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8216), - [12170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7653), - [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), - [12175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 122), - [12177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, 0, 197), - [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [12183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 150), SHIFT(1293), - [12186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 150), - [12188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT(1293), - [12191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), - [12193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 160), - [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [12197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [12201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [12207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [12211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [12215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [12231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [12235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [12243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [12247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [12251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [12265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 3, 0, 87), - [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [12269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, 0, 208), - [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [12283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), - [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8525), - [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11013), - [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8523), - [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10984), - [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8527), - [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10979), - [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8528), - [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10834), - [12309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 2, 0, 0), - [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [12313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, 0, 172), - [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8529), - [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11010), - [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8530), - [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11062), - [12333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), - [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [12337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [12347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 1, 0), - [12349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 1, 217), - [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [12355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 198), - [12357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 199), - [12359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 201), - [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8517), - [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10872), - [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [12367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 151), - [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [12371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 161), - [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [12375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 5, 0, 193), - [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [12385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [12387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8201), - [12389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7350), - [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), - [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [12405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [12407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8211), - [12409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7316), - [12411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9675), - [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), - [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [12421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [12423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8230), - [12425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7356), - [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [12429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7436), - [12432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(10947), - [12435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [12437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8167), - [12439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7346), - [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [12443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), - [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9708), - [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9712), - [12469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [12471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8126), - [12473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7329), - [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), - [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [12485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [12487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8193), - [12489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7354), - [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), - [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), - [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), - [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9722), - [12525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_expression_lhs, 3, 0, 58), - [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [12529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8954), - [12532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8954), - [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), - [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9460), - [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), - [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [12573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 5, 0, 218), - [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [12579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), - [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [12609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold, 3, 0, 88), - [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9609), - [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [12615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym_argument_list, 2, 0, 0), - [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9739), - [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), - [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), - [12632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [12634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8125), - [12636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7334), - [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11279), - [12644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11279), - [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [12658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 4, 0, 200), - [12660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [12662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8123), - [12664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7361), - [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), - [12668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [12670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8189), - [12672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7384), - [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [12680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [12682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8209), - [12684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7311), - [12686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_left_fold, 3, 0, 58), - [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), - [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), - [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), - [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), - [12736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [12738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), - [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8614), - [12742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7454), - [12744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8405), - [12747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7628), - [12750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7248), - [12752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7322), - [12754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [12756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [12758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [12760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), - [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), - [12764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [12766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8795), - [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8626), - [12770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6545), - [12772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [12774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [12776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [12778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11102), - [12781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11102), - [12784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(9163), - [12787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8216), - [12790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7653), - [12793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), - [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8677), - [12797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), - [12799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture, 1, 0, 0), - [12801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture, 1, 0, 0), - [12804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), - [12806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8668), - [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8606), - [12810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7573), - [12812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8956), - [12814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8121), - [12816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7222), - [12818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7223), - [12820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7224), - [12822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7285), - [12824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7627), - [12827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8954), - [12830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8954), - [12833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7626), - [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7969), - [12838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(7581), - [12841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(7556), - [12844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(7578), - [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7966), - [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7976), - [12851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7567), - [12853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [12855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10964), - [12857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(7569), - [12860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(7551), - [12863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(7575), - [12866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8405), - [12869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7628), - [12872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7627), - [12875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11102), - [12878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11102), - [12881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(9163), - [12884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8216), - [12887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7653), - [12890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7626), - [12893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), SHIFT(4035), - [12896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 46), SHIFT(4035), - [12899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 80), SHIFT(4035), - [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [12906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), - [12908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9405), - [12910] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(4035), - [12914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8830), - [12916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8843), - [12918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8828), - [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [12924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), - [12926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9299), - [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [12932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), - [12934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9495), - [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [12940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), - [12942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9504), - [12944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 21), SHIFT(4035), - [12947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), SHIFT(4035), - [12950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 19), SHIFT(4035), - [12953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [12957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), - [12959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9429), - [12961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 80), SHIFT(7554), - [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [12968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [12970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9493), - [12972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), - [12974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8841), - [12976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7635), - [12978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8840), - [12980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 36), SHIFT(4035), - [12983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 46), SHIFT(7552), - [12986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [12988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 21), SHIFT(7564), - [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [12995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6495), - [12997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9301), - [12999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 36), SHIFT(7574), - [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [13006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), - [13008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9466), - [13010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 2), - [13012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 2), - [13014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8954), - [13017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8954), - [13020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 2), - [13022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 2), - [13024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 21), - [13026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 21), - [13028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 21), - [13030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 21), - [13032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8405), - [13035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7628), - [13038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), - [13040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9079), - [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [13044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [13046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8236), - [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8576), - [13052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [13054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9357), - [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [13058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8618), - [13060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8582), - [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [13064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8263), - [13066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9524), - [13068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8210), - [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8590), - [13074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8446), - [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [13078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7941), - [13080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9312), - [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [13084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), - [13086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), - [13088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), - [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [13092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), - [13094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8271), - [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [13098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6578), - [13100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6453), - [13102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8265), - [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [13108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), - [13110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7627), - [13113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9165), - [13115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9154), - [13117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(7565), - [13120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), - [13122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9113), - [13124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7930), - [13126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8603), - [13128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7896), - [13130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6177), - [13132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), - [13134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5121), - [13136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), - [13138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8617), - [13142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [13146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), - [13148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [13150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), - [13152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8597), - [13154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10680), - [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), - [13160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9040), - [13162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [13164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), - [13166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), - [13168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8387), - [13170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [13172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7626), - [13175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8535), - [13177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9136), - [13179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [13181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11364), - [13183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), - [13185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9058), - [13187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), - [13189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [13191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11055), - [13193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), - [13195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9068), - [13197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4894), - [13199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9023), - [13201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10832), - [13203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8270), - [13205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), - [13207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [13209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9644), - [13211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [13213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [13215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [13217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), - [13219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9039), - [13221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [13223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [13225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [13227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [13229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), - [13231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9138), - [13233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [13235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), - [13237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9125), - [13239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [13241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10596), - [13243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), - [13245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9056), - [13247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), - [13249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [13251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [13253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [13255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10665), - [13257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), - [13259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9127), - [13261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), - [13263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [13265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), - [13267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9117), - [13269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [13271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [13273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [13275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [13277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10793), - [13279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), - [13281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9108), - [13283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), - [13285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [13287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), - [13289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [13291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), - [13293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9119), - [13295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [13297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9150), - [13300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [13302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7825), - [13306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9041), - [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [13310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), - [13312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9099), - [13314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8918), - [13316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), - [13318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9069), - [13320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), - [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), - [13324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9038), - [13326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [13328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), - [13330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9053), - [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [13334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [13336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [13338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), - [13340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), - [13342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9141), - [13344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), - [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), - [13348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9092), - [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [13356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [13358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [13360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [13362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [13364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [13366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), - [13368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9143), - [13370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [13372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [13374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [13376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), - [13378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9098), - [13380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [13382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), - [13384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [13386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [13388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), - [13390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [13392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), - [13394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), - [13396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9085), - [13398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), - [13400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), - [13402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), - [13404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9132), - [13406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [13408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), - [13410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9054), - [13412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [13414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), - [13416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9102), - [13418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), - [13420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7867), - [13422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9111), - [13424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8697), - [13426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9120), - [13428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9163), - [13431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9162), - [13433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9097), - [13435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [13437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [13439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [13441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [13443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [13445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [13447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10186), - [13449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [13451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [13453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [13455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10214), - [13457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8166), - [13459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9037), - [13461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9360), - [13463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7879), - [13465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9144), - [13467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [13469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [13471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [13473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10117), - [13475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [13477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8822), - [13479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [13481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), - [13483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [13485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), - [13487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8151), - [13489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9047), - [13491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [13493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8191), - [13495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [13497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8153), - [13499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [13501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [13503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [13505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [13507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [13509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [13511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(8216), - [13514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7653), - [13517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8218), - [13519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), - [13521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(8216), - [13524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7653), - [13527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [13529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8395), - [13531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9818), - [13533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10374), - [13535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [13537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8021), - [13539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [13541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [13543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [13545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [13547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), - [13549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), - [13551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [13553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [13555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [13557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [13559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [13561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9032), - [13563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [13565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [13567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [13569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6973), - [13571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), - [13573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [13575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [13577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [13579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [13581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6729), - [13583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [13585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [13587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [13589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [13591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10176), - [13593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [13595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7953), - [13597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), - [13599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8035), - [13601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10332), - [13603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), - [13605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8036), - [13607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7981), - [13609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9862), - [13611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7489), - [13613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7559), - [13615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [13617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8116), - [13619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), - [13621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8048), - [13623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), - [13625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8055), - [13627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), - [13629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), - [13631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8067), - [13633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), - [13635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8119), - [13637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), - [13639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8099), - [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8099), - [13643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), - [13645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [13647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [13649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(8216), - [13652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [13654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [13656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10296), - [13658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [13660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [13662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [13664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [13666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6408), - [13668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6848), - [13670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), - [13672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), - [13674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [13676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10917), - [13678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), - [13680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [13682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [13684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7974), - [13686] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [13688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [13690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10164), - [13692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [13694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [13696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10324), - [13698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), - [13700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), - [13702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8648), - [13704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8845), - [13706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [13708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), - [13710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), - [13712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10756), - [13715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8275), - [13717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8949), - [13719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10806), - [13721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8016), - [13723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8058), - [13725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10419), - [13727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8070), - [13729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8070), - [13731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8228), - [13733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9677), - [13735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), - [13737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8117), - [13739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8222), - [13741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8223), - [13743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8224), - [13745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [13747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8289), - [13749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8899), - [13751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8225), - [13753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8226), - [13755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8227), - [13757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [13759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), - [13763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8215), - [13765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8229), - [13767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8231), - [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8217), - [13771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8232), - [13773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [13775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [13777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), - [13779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), - [13781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [13783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), - [13787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [13789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [13791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8233), - [13793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8221), - [13795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [13797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [13799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), - [13801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 58), - [13803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 58), - [13805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), - [13807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), - [13809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), - [13811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8301), - [13813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8947), - [13815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), - [13817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8187), - [13819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), - [13821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8285), - [13823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8890), - [13825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), - [13827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), - [13829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8085), - [13831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), - [13833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8194), - [13835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), - [13837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8288), - [13839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8919), - [13841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), - [13843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8204), - [13845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8188), - [13847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), - [13849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8185), - [13851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), - [13853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), - [13855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 8), - [13857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 8), - [13859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [13861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [13863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), - [13865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 4), - [13867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 4), - [13869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), - [13871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8369), - [13873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8367), - [13875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8325), - [13877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 62), - [13879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [13881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), - [13883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8324), - [13885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8323), - [13887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 1, 0, 24), - [13889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8365), - [13891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [13893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8039), - [13895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8041), - [13897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8042), - [13899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8044), - [13901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8045), - [13903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8046), - [13905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8034), - [13907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8050), - [13909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8051), - [13911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8053), - [13913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8214), - [13915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8375), - [13917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), - [13919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 1, 0, 0), - [13921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [13923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [13925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [13927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [13929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8355), - [13931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8382), - [13933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8373), - [13935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8348), - [13937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8372), - [13939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8376), - [13941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8379), - [13943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8361), - [13945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8381), - [13947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8340), - [13949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8356), - [13951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [13953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [13955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 24), - [13957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8524), - [13959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8762), - [13961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8368), - [13963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8339), - [13965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8353), - [13967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [13969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [13971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 62), - [13973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), - [13975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8346), - [13977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8342), - [13979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8761), - [13981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8326), - [13983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8380), - [13985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8245), - [13987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8540), - [13989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8794), - [13991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8334), - [13993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8336), - [13995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [13997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8357), - [13999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [14001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8347), - [14003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [14005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [14007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [14009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9034), - [14011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8290), - [14013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), - [14015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), - [14017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [14019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8998), - [14021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [14023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [14025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), - [14027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8929), - [14029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), - [14031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(10944), - [14034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), - [14036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(11104), - [14039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [14041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8898), - [14043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [14045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [14047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [14049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [14051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8896), - [14053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8888), - [14055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9284), - [14057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8906), - [14059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [14061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), - [14063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8880), - [14065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [14067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(8405), - [14070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [14072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(8405), - [14075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7627), - [14078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(8405), - [14081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7627), - [14084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8352), - [14086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9324), - [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10460), - [14090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 5), - [14092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8349), - [14095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9324), - [14098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10460), - [14101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8349), - [14103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 0), - [14105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8720), - [14107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), - [14109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 5), - [14111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 2, 1, 5), - [14113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 27), - [14115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 27), - [14117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [14119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [14121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7683), - [14123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_declarator, 2, 1, 0), - [14125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_declarator, 2, 1, 0), - [14127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), - [14129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), - [14131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8488), - [14133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8948), - [14135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8640), - [14137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9291), - [14139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8558), - [14141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 182), - [14143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 5, 1, 182), - [14145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8940), - [14147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8628), - [14149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 184), - [14151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 184), - [14153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9376), - [14155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8580), - [14157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 42), - [14159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 3, 1, 42), - [14161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8541), - [14163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9387), - [14165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8594), - [14167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8933), - [14169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8600), - [14171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), - [14173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), - [14175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8917), - [14177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8566), - [14179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8952), - [14181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8552), - [14183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8943), - [14185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8559), - [14187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9313), - [14189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8565), - [14191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8922), - [14193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8572), - [14195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7628), - [14198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9315), - [14200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8577), - [14202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), - [14204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7628), - [14207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9385), - [14209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8609), - [14211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 126), - [14213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 126), - [14215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 27), - [14217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 27), - [14219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8537), - [14221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 5), - [14223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 5), - [14225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [14227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 90), - [14229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 4, 1, 90), - [14231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 1, 25), - [14233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 1, 25), - [14235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [14237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [14239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8521), - [14241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9409), - [14243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8556), - [14245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8905), - [14247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9096), - [14249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9212), - [14251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8049), - [14253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10608), - [14255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7626), - [14258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [14260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 5), - [14262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 2, 1, 5), - [14264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 10), - [14266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), - [14268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8636), - [14270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [14272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9044), - [14274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 182), - [14276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 5, 1, 182), - [14278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 42), - [14280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 3, 1, 42), - [14282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_field_declarator, 2, 1, 0), - [14284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_field_declarator, 2, 1, 0), - [14286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 90), - [14288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 4, 1, 90), - [14290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 84), - [14292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), - [14294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [14296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8262), - [14298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9889), - [14300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9343), - [14302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), - [14304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9194), - [14306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [14308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9540), - [14310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9331), - [14312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9404), - [14314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [14316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9702), - [14318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9437), - [14320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9352), - [14322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7018), - [14324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9183), - [14326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9506), - [14328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), - [14330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9260), - [14332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7626), - [14335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8143), - [14337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9440), - [14339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [14341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9911), - [14343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9527), - [14345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), - [14347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9146), - [14349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9461), - [14351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [14353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [14355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), - [14357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), - [14359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), - [14361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9207), - [14363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [14365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9811), - [14367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9396), - [14369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [14371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [14373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9245), - [14375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8237), - [14377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9263), - [14379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [14381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9868), - [14383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9298), - [14385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [14387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9158), - [14389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9379), - [14391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), - [14393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [14395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [14397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9847), - [14399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9336), - [14401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [14403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7675), - [14405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [14407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9266), - [14409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7352), - [14411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9233), - [14413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9166), - [14415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [14417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9322), - [14419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [14421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 71), - [14423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [14425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6392), - [14427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9272), - [14429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [14431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9239), - [14433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [14435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9220), - [14437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [14439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [14441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9275), - [14443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [14445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [14447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [14449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [14451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9283), - [14453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [14455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6639), - [14457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), - [14459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9256), - [14461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [14463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9277), - [14465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9551), - [14467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8078), - [14469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10576), - [14471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [14473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [14475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 181), - [14477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8849), - [14479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [14481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [14483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [14485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [14487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 106), - [14489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [14491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 106), - [14493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [14495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), - [14497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), - [14499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [14501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [14503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), - [14505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10993), - [14507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), - [14509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), - [14511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [14513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [14515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), - [14517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), - [14519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [14521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), - [14523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [14525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [14527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [14529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [14531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [14533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [14535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [14537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [14539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 1, 25), - [14541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 1, 25), - [14543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 27), - [14545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 27), - [14547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [14549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [14551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 184), - [14553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 184), - [14555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_declarator_repeat1, 2, 0, 0), - [14557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8822), - [14560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 126), - [14562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 126), - [14564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 27), - [14566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 27), - [14568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 84), - [14570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9361), - [14572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8109), - [14574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11058), - [14576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 4, 0, 0), - [14578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 5, 0, 0), - [14580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9055), - [14582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9351), - [14584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8108), - [14586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11047), - [14588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11051), - [14590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 10), - [14592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9551), - [14595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8052), - [14598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10626), - [14601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10190), - [14604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [14606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 10), - [14608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 84), - [14610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 84), - [14612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 3, 0, 0), - [14614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9249), - [14616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10349), - [14618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9825), - [14620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 10), - [14622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10047), - [14624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9073), - [14626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), - [14628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 27), - [14630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 1, 0, 27), - [14632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 6, 0, 0), - [14634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9104), - [14636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10808), - [14638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9088), - [14640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [14642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_specifier, 1, 0, 0), - [14644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8826), - [14646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8827), - [14648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), - [14650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10882), - [14652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8821), - [14654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8824), - [14656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [14658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), - [14660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11412), - [14662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8848), - [14664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 5), - [14666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 5), - [14668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, 0, 31), - [14670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, 0, 31), - [14672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9345), - [14674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9261), - [14676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11341), - [14678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9874), - [14680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9479), - [14682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9952), - [14684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9382), - [14686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11542), - [14688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), - [14690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9657), - [14692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11404), - [14694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9602), - [14696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10039), - [14698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9489), - [14700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9711), - [14702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10551), - [14704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9788), - [14706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11087), - [14708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, 0, 15), - [14710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, 0, 15), - [14712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9526), - [14714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9864), - [14716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10242), - [14718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [14720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 24), - [14722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 62), - [14724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 62), - [14726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [14728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10479), - [14730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10385), - [14732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [14734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [14736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [14738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8723), - [14740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 24), - [14742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [14744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), - [14746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), - [14748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [14750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10319), - [14752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast, 3, 0, 63), - [14754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [14756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8471), - [14758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [14760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [14762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [14764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10401), - [14766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(8425), - [14769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [14771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [14773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(10753), - [14776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(10753), - [14779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [14781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [14783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9551), - [14786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [14788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [14790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [14792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(8905), - [14795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [14797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [14799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10341), - [14801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [14803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [14805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [14807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [14809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8714), - [14811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8386), - [14813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [14815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [14817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [14819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [14821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [14823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [14825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [14827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [14829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [14831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [14833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [14835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [14837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [14839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8508), - [14841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9191), - [14843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [14845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [14847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10104), - [14849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10287), - [14851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [14853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9951), - [14855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1430), - [14858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), - [14860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(11004), - [14863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10090), - [14865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10197), - [14867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), - [14869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9191), - [14872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [14874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8511), - [14876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), - [14878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 71), - [14880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [14882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9035), - [14884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [14886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8400), - [14888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), - [14890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9842), - [14892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8507), - [14894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8522), - [14896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [14898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [14900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [14902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8464), - [14904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), - [14906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10044), - [14908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8481), - [14910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), - [14912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8494), - [14914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8496), - [14916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8499), - [14918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8500), - [14920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8504), - [14922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8506), - [14924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9824), - [14926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8509), - [14928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8545), - [14930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8513), - [14932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8514), - [14934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8515), - [14936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), - [14938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 61), - [14940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10301), - [14942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [14944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [14946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11004), - [14948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8493), - [14950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8253), - [14952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [14954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [14956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [14958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [14960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [14962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [14964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10104), - [14966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11117), - [14968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 84), - [14970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 84), - [14972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 0), - [14974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [14976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [14978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 1, 0, 0), - [14980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 1, 0, 0), - [14982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [14984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [14986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [14988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [14990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [14992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [14994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 85), - [14996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 85), - [14998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [15000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [15002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 10), - [15004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 10), - [15006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [15008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [15010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [15012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [15014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), - [15016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [15018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [15020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [15022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [15024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [15026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [15028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9124), - [15030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [15032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 0), - [15034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [15038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [15040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [15042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9273), - [15044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [15046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 188), - [15048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 188), - [15050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [15052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [15054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [15056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [15058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [15060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [15062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 10), - [15064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 10), - [15066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [15068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [15070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 135), - [15072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 135), - [15074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [15076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [15078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [15080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [15082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [15084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9485), - [15086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [15088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9129), - [15090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [15092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 84), - [15094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 84), - [15096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [15098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [15100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [15102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [15104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [15106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [15108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [15110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [15112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [15114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [15116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9168), - [15118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [15120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [15122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [15124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [15126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [15128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [15130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [15132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8724), - [15134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [15136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [15138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [15140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [15142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 136), - [15144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 136), - [15146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [15148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), - [15150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11425), - [15152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8551), - [15154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [15156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [15158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [15160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [15162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), - [15164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9709), - [15166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [15168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10130), - [15170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [15172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [15174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [15176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9170), - [15178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10527), - [15180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [15182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [15184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [15186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [15188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), - [15190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7685), - [15192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_name, 2, 0, 0), - [15194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11519), - [15196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [15198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10166), - [15200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [15202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [15204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [15206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10232), - [15208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [15210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [15212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), - [15214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10647), - [15216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10055), - [15218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), - [15220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 124), SHIFT_REPEAT(8158), - [15223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 124), - [15225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 124), - [15227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8448), - [15229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), - [15231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [15233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10399), - [15235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [15237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9236), - [15240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), - [15242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), - [15244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), - [15246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), - [15248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10447), - [15250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [15252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [15254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [15256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [15258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [15260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9680), - [15262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), - [15264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), - [15266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), - [15268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 146), - [15270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10895), - [15272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [15274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [15276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10275), - [15278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [15280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [15282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), - [15284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [15286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10415), - [15288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [15290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [15292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10094), - [15294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [15296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [15298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [15300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [15302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10417), - [15304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [15306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_name, 1, 0, 0), - [15308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [15310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [15312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [15314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [15316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [15318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [15320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10107), - [15322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9171), - [15324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_name_repeat1, 2, 0, 0), - [15326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_name_repeat1, 2, 0, 0), SHIFT_REPEAT(11519), - [15329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [15331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10179), - [15333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), - [15335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10474), - [15337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [15339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [15341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10189), - [15343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 93), - [15345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 2, 0, 93), - [15347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 196), SHIFT_REPEAT(8364), - [15350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 196), - [15352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 196), - [15354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), - [15356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8417), - [15358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10290), - [15360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10388), - [15362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [15364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10198), - [15366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [15368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [15370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), - [15372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10105), - [15374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [15376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), - [15378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9350), - [15380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9350), - [15382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), - [15384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9290), - [15387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [15389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), - [15391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9290), - [15393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), - [15395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10316), - [15397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [15399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), - [15401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 6, 0, 212), - [15403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [15405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [15407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [15409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9696), - [15411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10773), - [15413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [15415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10786), - [15417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), - [15419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10097), - [15421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10380), - [15423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [15425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [15427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [15429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8118), - [15431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [15433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), - [15435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [15437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [15439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9288), - [15441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9288), - [15443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [15445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8601), - [15447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9344), - [15449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9344), - [15451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), - [15453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9395), - [15455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9395), - [15457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), - [15459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 219), SHIFT_REPEAT(8946), - [15462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 219), - [15464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), - [15466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10291), - [15468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10293), - [15470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [15472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9309), - [15474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9309), - [15476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 97), - [15478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [15480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), - [15482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [15484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), - [15486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8637), - [15488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 1, 0, 20), - [15490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8960), - [15492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9723), - [15494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7902), - [15496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 3, 0, 0), - [15498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [15500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9350), - [15503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9350), - [15506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [15508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10391), - [15510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10422), - [15512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [15514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [15516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8131), - [15518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [15520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), - [15522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8520), - [15524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 227), - [15526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10028), - [15528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 2, 0, 0), - [15530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), - [15532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9441), - [15534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9441), - [15536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [15538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), - [15540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9249), - [15542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [15544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11337), - [15546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_operator_cast_identifier, 2, 0, 34), - [15548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [15550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [15552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9521), - [15554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9521), - [15556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), - [15558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9389), - [15560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9389), - [15562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [15564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6511), - [15566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11311), - [15568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9383), - [15570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9383), - [15572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11434), - [15574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9810), - [15576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 5, 0, 0), - [15578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [15580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), - [15582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9448), - [15584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9448), - [15586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [15588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [15590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), - [15592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8445), - [15594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), - [15596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [15598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), - [15600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [15602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), - [15604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [15606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [15608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [15610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 5), - [15612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 5), - [15614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [15616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [15618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), - [15620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9525), - [15622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9525), - [15624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), - [15626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9432), - [15628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9432), - [15630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [15632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), - [15634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9293), - [15636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9293), - [15638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [15640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 214), - [15642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 214), - [15644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [15646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8946), - [15648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 204), - [15650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [15652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [15654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [15656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9995), - [15658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 4, 0, 0), - [15660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), - [15662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), - [15664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9316), - [15666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9316), - [15668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [15670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), - [15672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9465), - [15674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9465), - [15676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7008), - [15678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [15680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [15682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [15684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [15686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9447), - [15688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9447), - [15690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [15692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), - [15694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10178), - [15696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10403), - [15698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 231), SHIFT_REPEAT(8520), - [15701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 231), - [15703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [15705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), - [15707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [15709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8945), - [15711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 166), - [15713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), - [15715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9459), - [15717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9459), - [15719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [15721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11487), - [15723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [15725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11052), - [15727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), - [15729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [15731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [15733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10060), - [15735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [15737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [15739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), - [15741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9468), - [15743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9468), - [15745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [15747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), - [15749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10372), - [15751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10271), - [15753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 219), SHIFT_REPEAT(8945), - [15756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 219), - [15758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [15760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10494), - [15762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [15764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [15766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9483), - [15768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9483), - [15770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [15772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9026), - [15774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10145), - [15776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10168), - [15778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), - [15780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [15782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9514), - [15784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9514), - [15786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), - [15788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9774), - [15790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 1, 0, 0), - [15792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8975), - [15794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), - [15796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9505), - [15798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9505), - [15800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), - [15802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8773), - [15804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 204), - [15806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [15808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [15810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10912), - [15812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6834), - [15814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 166), - [15816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), - [15818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [15820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [15822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10598), - [15824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [15826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), - [15828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), - [15830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), - [15832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9296), - [15834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9296), - [15836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), - [15838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9522), - [15840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9522), - [15842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [15844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 220), - [15846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [15848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9425), - [15850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9425), - [15852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [15854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), - [15856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [15858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [15860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), - [15862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8974), - [15864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [15866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [15868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9863), - [15870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [15872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10127), - [15874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), - [15876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8371), - [15878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), - [15880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8844), - [15882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [15884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [15886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [15888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [15890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [15892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10858), - [15894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10859), - [15896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10862), - [15898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [15900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [15902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [15904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [15906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [15908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [15910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [15912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [15914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [15916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10343), - [15918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [15920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [15922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 6, 0, 62), - [15924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [15926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), - [15928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), - [15930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10407), - [15932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), - [15934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), - [15936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), - [15938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [15940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), - [15942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [15944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [15946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [15948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), - [15950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), - [15952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), - [15954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [15956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10172), - [15958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10338), - [15960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 5, 0, 0), - [15962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [15964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 7, 0, 0), - [15966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8775), - [15968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8787), - [15970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8788), - [15972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8789), - [15974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [15976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [15978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), - [15980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [15982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [15984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [15986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), - [15988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), - [15990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [15992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [15994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [15996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [15998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [16000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [16002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), - [16004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [16006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [16008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [16010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [16012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [16014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 226), - [16016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [16018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [16020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), - [16022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8834), - [16024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 24), - [16026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 166), - [16028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [16030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [16032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [16034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [16036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [16038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [16040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [16042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [16044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11336), - [16046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 228), - [16048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10088), - [16050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [16052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [16054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [16056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [16058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [16060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), - [16062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10204), - [16064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [16066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [16068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [16070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [16072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [16074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), - [16076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [16078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [16080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [16082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [16084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), - [16086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), - [16088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8763), - [16090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [16092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10762), - [16094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), - [16096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), - [16098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), - [16100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), - [16102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [16104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10326), - [16106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10207), - [16108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), - [16110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [16112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [16114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8002), - [16116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [16118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [16120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), - [16122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), - [16124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [16126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [16128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [16130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [16132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [16134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [16136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [16138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), - [16140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [16142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [16144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4922), - [16147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), - [16149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [16151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [16153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10264), - [16155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 226), - [16157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 220), - [16159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9358), - [16161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9398), - [16163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [16165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 2, 0, 0), - [16167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9209), - [16169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), - [16171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), - [16173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [16175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [16177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 232), - [16179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), - [16181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), - [16183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 2, 0, 64), - [16185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10184), - [16187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), - [16189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), - [16191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9949), - [16193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10269), - [16195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [16197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10985), - [16199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10992), - [16201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11007), - [16203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1203), - [16206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8810), - [16208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [16210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11155), - [16212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8425), - [16214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), - [16216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 234), SHIFT_REPEAT(11336), - [16219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 234), - [16221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [16223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 235), - [16225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10218), - [16227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 2, 0, 0), - [16229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1149), - [16232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [16234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [16236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [16238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 6, 0, 0), - [16240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [16242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [16244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 235), - [16246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10137), - [16248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [16250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10344), - [16252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), - [16254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10444), - [16256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 4, 0, 0), - [16258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(7902), - [16261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [16263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [16265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [16267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, 0, 71), - [16269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [16271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 213), - [16273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), - [16275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), - [16277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [16279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(9863), - [16282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), - [16284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(10127), - [16287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat2, 2, 0, 0), - [16289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [16291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [16293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [16295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [16297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 2, 0, 73), - [16299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 3, 0, 156), - [16301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8258), - [16303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [16305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10132), - [16307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10021), - [16309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [16311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), - [16313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), - [16315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [16317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [16319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10222), - [16321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 3, 0, 0), - [16323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), - [16325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), - [16327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 3, 0), - [16329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(287), - [16332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), - [16334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7925), - [16336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), - [16338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [16340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 2, 0, 0), - [16342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10364), - [16344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9647), - [16346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9648), - [16348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [16350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [16352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [16354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), - [16356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), - [16358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), - [16360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [16362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_reference_declarator, 2, 0, 0), - [16364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [16366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), - [16368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10383), - [16370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), - [16372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9689), - [16374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9690), - [16376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), - [16378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), - [16380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10501), - [16382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9697), - [16384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9698), - [16386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9701), - [16388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [16390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10336), - [16392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9444), - [16394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [16396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2194), - [16399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), - [16401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [16403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10801), - [16405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10802), - [16407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10804), - [16409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), - [16411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(11323), - [16414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), - [16416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [16418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), - [16420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8742), - [16422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [16424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2343), - [16427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), - [16429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7952), - [16432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), - [16434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10361), - [16436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [16438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [16440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [16442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [16444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [16446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [16448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [16450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [16452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [16454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [16456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [16458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2241), - [16461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [16463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10077), - [16465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [16467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9391), - [16469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [16471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8258), - [16474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [16476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10664), - [16478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10666), - [16480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10667), - [16482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1247), - [16485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [16487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [16489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [16491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 166), - [16493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [16495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7997), - [16497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [16499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [16501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [16503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [16505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9314), - [16507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [16509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [16511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10549), - [16513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10550), - [16515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10558), - [16517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), - [16519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [16521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), - [16523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), - [16525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [16527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [16529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [16531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [16533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [16535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [16537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9438), - [16539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [16541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [16543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10673), - [16545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10675), - [16547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10679), - [16549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [16551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 101), - [16553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [16555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [16557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [16559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [16561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [16563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [16565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [16567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8116), - [16570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [16572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [16574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9491), - [16576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), - [16578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [16580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [16582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), - [16584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [16586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [16588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), - [16590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [16592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10913), - [16594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10916), - [16596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10920), - [16598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [16600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), - [16602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), - [16604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(10326), - [16607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), - [16609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [16611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [16613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9502), - [16615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [16617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [16619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [16621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [16623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), - [16625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 124), SHIFT_REPEAT(6272), - [16628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 124), - [16630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [16632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9509), - [16634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [16636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), - [16638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), - [16640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [16642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [16644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [16646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9511), - [16648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [16650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9381), - [16652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [16654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), - [16656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9342), - [16658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9458), - [16660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9292), - [16662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [16664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [16666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [16668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10379), - [16670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), - [16672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [16674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [16676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [16678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [16680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [16682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4803), - [16685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), - [16687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), - [16689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [16691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [16693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [16695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [16697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [16699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), - [16701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [16703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [16705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [16707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [16709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [16711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [16713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [16715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [16717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [16719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [16721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [16723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [16725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [16727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [16729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), - [16731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [16733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), - [16735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), - [16737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [16739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [16741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), - [16743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [16745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [16747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10398), - [16749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 3, 0, 0), - [16751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [16753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), - [16755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [16757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [16759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [16761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [16763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [16765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [16767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [16769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [16771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [16773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [16775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [16777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [16779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [16781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), - [16783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), - [16785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [16787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), - [16789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [16791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [16793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [16795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [16797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [16799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [16801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), - [16803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), - [16805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), - [16807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [16809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [16811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [16813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10068), - [16815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, 0, 106), - [16817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [16819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10072), - [16821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, 0, 0), - [16823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [16825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8394), - [16827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8737), - [16829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), - [16831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [16833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), - [16835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [16837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [16839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [16841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [16843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), - [16845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [16847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [16849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [16851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), - [16853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [16855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [16857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [16859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [16861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), - [16863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [16865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11261), - [16867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11527), - [16869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 7, 0, 212), - [16871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9077), - [16873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [16875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 106), - [16877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 0), - [16879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [16881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [16883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10860), - [16885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [16887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [16889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [16891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [16893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10574), - [16895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), - [16897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [16899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), - [16901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [16903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10943), - [16905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [16907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10702), - [16909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10695), - [16911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [16913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10763), - [16915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [16917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [16919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [16921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [16923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11375), - [16925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_partition, 2, 0, 0), - [16927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [16929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10616), - [16931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [16933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), - [16935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), - [16937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [16939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 2, 0), - [16941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 3, 0, 170), - [16943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 3, 0, 171), - [16945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [16947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11107), - [16949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [16951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10490), - [16953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [16955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_template_parameter_declaration, 3, 0, 62), - [16957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [16959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [16961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, 0, 146), - [16963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_object_parameter_declaration, 2, 0, 0), - [16965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 97), - [16967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), - [16969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), - [16971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [16973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10971), - [16975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), - [16977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [16979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [16981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 228), - [16983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [16985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack_expansion, 2, 0, 28), - [16987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10182), - [16989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), - [16991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10529), - [16993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 6, 0, 0), - [16995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [16997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [16999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10628), - [17001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [17003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11193), - [17005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), - [17007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), - [17009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [17011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10876), - [17013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [17015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10521), - [17017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10970), - [17019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11499), - [17021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_parameter_pack_expansion, 2, 0, 28), - [17023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9624), - [17025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), - [17027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), - [17029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10499), - [17031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [17033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [17035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11120), - [17037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11506), - [17039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), - [17041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11147), - [17043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11509), - [17045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11169), - [17047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11512), - [17049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 4, 0, 207), - [17051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11189), - [17053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11515), - [17055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11209), - [17057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11518), - [17059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11226), - [17061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11521), - [17063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [17065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10849), - [17067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11240), - [17069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11523), - [17071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11247), - [17073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11524), - [17075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11253), - [17077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11525), - [17079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11257), - [17081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11526), - [17083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11265), - [17085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11528), - [17087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11269), - [17089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11529), - [17091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11273), - [17093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11530), - [17095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11277), - [17097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11531), - [17099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11281), - [17101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11532), - [17103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11285), - [17105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11533), - [17107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11289), - [17109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11534), - [17111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11292), - [17113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11535), - [17115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 211), - [17117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [17119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), - [17121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [17123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11491), - [17125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [17127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [17129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [17131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [17133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [17135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [17137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [17139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11073), - [17141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [17143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10298), - [17145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [17147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11067), - [17149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [17151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 4, 0, 0), - [17153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 136), - [17155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [17157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11182), - [17159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11183), - [17161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [17163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [17165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11550), - [17167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11098), - [17169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [17171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [17173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [17175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [17177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [17179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [17181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 2, 0, 0), - [17183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [17185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [17187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10640), - [17189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [17191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11200), - [17193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [17195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [17197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [17199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [17201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10899), - [17203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), - [17205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [17207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [17209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8272), - [17211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), - [17213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9455), - [17215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [17217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [17219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [17221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [17223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8322), - [17225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [17227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [17229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11415), - [17231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [17233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [17235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [17237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [17239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [17241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [17243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [17245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [17247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), - [17249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11536), - [17251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [17253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [17255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [17257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10836), - [17259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [17261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [17263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8480), - [17265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [17267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [17269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8281), - [17271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [17273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11400), - [17275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [17277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [17279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), - [17281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [17283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [17285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), - [17287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [17289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), - [17291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), - [17293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [17295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), - [17297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [17299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [17301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10729), - [17303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [17305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11358), - [17307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [17309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), - [17311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [17313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8518), - [17315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11006), - [17317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [17319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9052), - [17321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11032), - [17323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [17325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [17327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [17329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), - [17331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [17333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [17335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11227), - [17337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [17339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), - [17341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8815), - [17343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), - [17345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [17347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10825), - [17349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10826), - [17351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11077), - [17353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [17355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [17357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), - [17359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10734), - [17361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [17363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), - [17365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [17367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9501), - [17369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [17371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [17373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9338), - [17375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), - [17377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [17379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10701), - [17381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [17383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), - [17385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10811), - [17387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [17389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [17391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [17393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [17395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [17397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [17399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [17401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [17403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [17405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [17407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [17409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [17411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10975), - [17413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), - [17415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [17417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [17419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [17421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10500), - [17423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10795), - [17425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10486), - [17427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10509), - [17429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9400), - [17431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [17433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10851), - [17435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), - [17437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 85), - [17439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [17441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [17443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10512), - [17445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), - [17447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [17449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10513), - [17451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11057), - [17453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [17455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [17457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [17459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11138), - [17461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11143), - [17463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [17465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9304), - [17467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [17469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [17471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [17473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [17475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [17477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [17479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), - [17481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [17483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9215), - [17485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [17487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [17489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [17491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [17493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [17495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [17497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10966), - [17499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 135), - [17501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10518), - [17503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [17505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11018), - [17507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [17509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [17511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [17513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [17515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10284), - [17517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [17519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), - [17521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [17523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11302), - [17525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [17527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [17529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11408), - [17531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11422), - [17533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [17535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9303), - [17537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [17539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [17541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 7, 0, 62), - [17543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [17545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), - [17547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [17549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [17551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [17553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 188), - [17555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 136), - [17557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), - [17559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [17561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [17563] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [17565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [17567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [17569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), - [17571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [17573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [17575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), - [17577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [17579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), - [17581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11035), - [17583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 188), - [17585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10885), - [17587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [17589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [17591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [17593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11069), - [17595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [17597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [17599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [17601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 84), - [17603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 188), - [17605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [17607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), - [17609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [17611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [17613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11162), - [17615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 135), - [17617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [17619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 136), - [17621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [17623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11220), - [17625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11224), - [17627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), - [17629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [17631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [17633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [17635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [17637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10367), - [17639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [17641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [17643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [17645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [17647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [17649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [17651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10690), - [17653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [17655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10621), - [17657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 135), - [17659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10707), - [17661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), - [17663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), - [17665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10752), - [17667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [17669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10482), - [17671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [17673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [17675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [17677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [17679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [17681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [17683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [17685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [17687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [17689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [17691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [17693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [17695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 188), - [17697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11020), - [17699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11100), - [17701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [17703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [17705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11176), - [17707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [17709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), - [17711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [17713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [17715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11385), - [17717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11430), - [17719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [17721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [17723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11513), - [17725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11392), - [17727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [17729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), - [17731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [17733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10901), - [17736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10778), - [17738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11074), - [17740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11097), - [17742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [17744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), - [17746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10958), - [17748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [17750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9297), - [17752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11061), - [17754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11075), - [17756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [17758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [17760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), - [17762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10693), - [17764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10723), - [17766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [17768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), - [17770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [17772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10875), - [17774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10883), - [17776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [17778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [17780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11082), - [17782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11089), - [17784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11444), - [17786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11450), - [17788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [17790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10555), - [17792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10557), - [17794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), - [17796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10653), - [17798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10658), - [17800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [17802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10736), - [17804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10740), - [17806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [17808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [17810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10788), - [17812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10789), - [17814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [17816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10855), - [17818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10856), - [17820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [17822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10779), - [17824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), - [17826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [17828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10237), - [17830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11428), - [17832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [17834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [17836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [17838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10767), - [17840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [17842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [17844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [17846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 85), - [17848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_right_fold, 3, 0, 58), - [17850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10339), - [17852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10569), - [17854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), - [17856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9103), - [17858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10573), - [17860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [17862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), - [17864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [17866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [17868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [17870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10585), - [17872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [17874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8374), - [17876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), - [17878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10879), - [17880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [17882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [17884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [17886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [17888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9707), - [17890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [17892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [17894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9497), - [17896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10654), - [17898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [17900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9091), - [17902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11192), - [17904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [17906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [17908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11235), - [17910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [17912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [17914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10950), - [17916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [17918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [17920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [17922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9891), - [17924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [17926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [17928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [17930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), - [17932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [17934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [17936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [17938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [17940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [17942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9454), - [17944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10686), - [17946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [17948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [17950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [17952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [17954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [17956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 0), - [17958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [17960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [17962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 85), - [17964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [17966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [17968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [17970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [17972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9474), - [17974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [17976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [17978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [17980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [17982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8764), - [17984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9126), - [17986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [17988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 10), - [17990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [17992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11076), - [17994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [17996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [17998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), - [18000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8779), - [18002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [18004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10503), - [18006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), - [18008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [18010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [18012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [18014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), - [18016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [18018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), - [18020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [18022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [18024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), - [18026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [18028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [18030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [18032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [18034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [18036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), - [18038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [18040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [18042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [18044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [18046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [18048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), - [18050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [18052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [18054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [18056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [18058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), - [18060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10953), - [18062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10334), - [18064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11386), - [18066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [18068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [18070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), - [18072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [18074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [18076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [18078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [18080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10358), - [18082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [18084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11470), - [18086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [18088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 188), - [18090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11476), - [18092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [18094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [18096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [18098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11492), - [18100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), - [18102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [18104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [18106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [18108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10495), - [18110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10506), - [18112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [18114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [18116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [18118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10074), - [18120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [18122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), - [18124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [18126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [18128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [18130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), - [18132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10087), - [18134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [18136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10602), - [18138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [18140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10604), - [18142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [18144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [18146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10609), - [18148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [18150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10623), - [18152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [18154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [18156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10630), - [18158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [18160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 3, 0, 0), - [18162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10123), - [18164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [18166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [18168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11369), - [18170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [18172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [18174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), - [18176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10136), - [18178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10683), - [18180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), - [18182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10685), - [18184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10536), - [18186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [18188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10689), - [18190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10703), - [18192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [18194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10709), - [18196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [18198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), - [18200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10160), - [18202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [18204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [18206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), - [18208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [18210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [18212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [18214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10742), - [18216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10744), - [18218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), - [18220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [18222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10748), - [18224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [18226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10760), - [18228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 135), - [18230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [18232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10766), - [18234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [18236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [18238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10191), - [18240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [18242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [18244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), - [18246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [18248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [18250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [18252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10797), - [18254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10799), - [18256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [18258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [18260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10803), - [18262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [18264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10814), - [18266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 6, 0, 24), - [18268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), - [18270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10820), - [18272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [18274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10219), - [18276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [18278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [18280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [18282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [18284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [18286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10840), - [18288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), - [18290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10842), - [18292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10844), - [18294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), - [18296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10848), - [18298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [18300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10850), - [18302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [18304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [18306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10230), - [18308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [18310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11346), - [18312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [18314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [18316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9700), - [18318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10865), - [18320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10866), - [18322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9507), - [18324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10870), - [18326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10238), - [18328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [18330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [18332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10877), - [18334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10878), - [18336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10881), - [18338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10245), - [18340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [18342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [18344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10888), - [18346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10889), - [18348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10890), - [18350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10249), - [18352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [18354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10896), - [18356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10897), - [18358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10252), - [18360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [18362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10903), - [18364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10904), - [18366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10256), - [18368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [18370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10909), - [18372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10910), - [18374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10259), - [18376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [18378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10914), - [18380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10915), - [18382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10261), - [18384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [18386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10918), - [18388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10919), - [18390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10262), - [18392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [18394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10922), - [18396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10923), - [18398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10263), - [18400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [18402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10926), - [18404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10927), - [18406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10265), - [18408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [18410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10930), - [18412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10931), - [18414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10267), - [18416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [18418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10934), - [18420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10935), - [18422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [18424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10937), - [18426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10938), - [18428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [18430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [18432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [18434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [18436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [18438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [18440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [18442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10969), - [18444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), - [18446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [18448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [18450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [18452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [18454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [18456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9703), - [18458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [18460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [18462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7945), - [18464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [18466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7887), - [18468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7888), - [18470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [18472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [18474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [18476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [18478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10340), - [18480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10493), - [18482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), - [18484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [18486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [18488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 135), - [18490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [18492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), - [18494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10311), - [18496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11488), - [18498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), - [18500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9339), - [18502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [18504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9692), - [18506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11017), - [18508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [18510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [18512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [18514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), - [18516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [18518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [18520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [18522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [18524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [18526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [18528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [18530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [18532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [18534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [18536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [18538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [18540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), - [18542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [18544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [18546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [18548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 85), - [18550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), - [18552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10677), - [18554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [18556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9070), - [18558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [18560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11127), - [18562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [18564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [18566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [18568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [18570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [18572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11119), - [18574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [18576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [18578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [18580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [18582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10963), - [18584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9392), - [18586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11129), - [18588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [18590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [18592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [18594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [18596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [18598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11146), - [18600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [18602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), - [18604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [18606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9402), - [18608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11153), - [18610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10634), - [18612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8589), - [18614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [18616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11168), - [18618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [18620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9408), - [18622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11174), - [18624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [18626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11188), - [18628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [18630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9081), - [18632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [18634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9415), - [18636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11194), - [18638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [18640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11208), - [18642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [18644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9421), - [18646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11214), - [18648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [18650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [18652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9427), - [18654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11230), - [18656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), - [18658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), - [18660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11242), - [18662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [18664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11248), - [18666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [18668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11254), - [18670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [18672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11258), - [18674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [18676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11262), - [18678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10991), - [18680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11266), - [18682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [18684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11270), - [18686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 136), - [18688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11274), - [18690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10757), - [18692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11278), - [18694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 136), - [18696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11282), - [18698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [18700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11286), - [18702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [18704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11290), - [18706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [18708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11293), - [18710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [18712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [18714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [18716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [18718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), - [18720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11015), - [18722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [18724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [18726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [18728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [18730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11342), - [18732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [18734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [18736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11489), - [18738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [18740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11414), - [18742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [18744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [18746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11427), - [18748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [18750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), - [18752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11437), - [18754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8619), - [18756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [18758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11446), - [18760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [18762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11453), - [18764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9422), - [18766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [18768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11458), - [18770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11461), - [18772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11463), - [18774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11465), - [18776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11467), - [18778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11469), - [18780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11471), - [18782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11473), - [18784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11475), - [18786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11477), - [18788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11479), - [18790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11481), - [18792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11483), - [18794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11485), - [18796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), - [18798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 85), - [18800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [18802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [18804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [18806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [18808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [18810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [18812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [18814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [18816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [18818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [18820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10485), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9002), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11149), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8228), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11007), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10565), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11098), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8562), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8911), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9386), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10684), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10247), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7981), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11094), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8335), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7232), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7204), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7283), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10020), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10243), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10931), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10439), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11375), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11016), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11150), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11376), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10894), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10896), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10981), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7491), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9126), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9926), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9586), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7419), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11310), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9448), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8937), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10370), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8990), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11344), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11321), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10527), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6969), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7683), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8997), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11481), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11498), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8240), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10909), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10519), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8581), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9893), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10397), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11110), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10372), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11129), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11238), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11268), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11538), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10369), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10905), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11600), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8913), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10417), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8999), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11483), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11484), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8995), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11563), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8182), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11653), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8170), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11203), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10557), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8566), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9830), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10487), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11580), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10403), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11482), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10742), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10745), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11593), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10508), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11076), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8882), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10491), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8991), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11589), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11590), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_block, 2, 0, 10), + [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_block, 3, 0, 84), + [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_block, 3, 0, 10), + [367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_block, 4, 0, 84), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8215), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11485), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8219), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10809), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7441), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9526), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 84), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 10), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 84), + [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 10), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1130), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8995), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11563), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8182), + [465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11653), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10557), + [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), + [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1542), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), + [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(294), + [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7516), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1111), + [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(326), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(286), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4941), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4781), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4246), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11098), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8566), + [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8911), + [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9386), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10684), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10247), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5791), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(73), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3824), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7981), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4919), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4636), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4621), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11094), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4058), + [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8335), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7232), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7204), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7283), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9830), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10487), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1834), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11580), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10403), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(241), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11482), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1283), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10742), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10745), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11593), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10508), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11076), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1401), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10894), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10896), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10981), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7491), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9126), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6386), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9926), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9586), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6009), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5958), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4948), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11310), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6356), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(118), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8882), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1961), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10491), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1652), + [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8991), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11589), + [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11590), + [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1382), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1822), + [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10527), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6969), + [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7683), + [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(394), + [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1740), + [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1204), + [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8995), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11563), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8215), + [719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), + [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11485), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10557), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1542), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), + [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(294), + [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7516), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1111), + [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(550), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(286), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4941), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4781), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4246), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11098), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8566), + [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8911), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9386), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10684), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10247), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5791), + [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(73), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3824), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7981), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4919), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4636), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4621), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11094), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4058), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8335), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7232), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7204), + [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7283), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9830), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10487), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1834), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11580), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10403), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(241), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11482), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1283), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10742), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10745), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11593), + [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1401), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10894), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10896), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10981), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7491), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9126), + [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7275), + [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9926), + [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9586), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7441), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5958), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4948), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11310), + [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6356), + [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(54), + [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9526), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8882), + [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1961), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), + [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10491), + [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1652), + [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8991), + [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11589), + [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11590), + [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1382), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1822), + [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10527), + [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6969), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7683), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(394), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1740), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1129), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8988), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10825), + [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8186), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10757), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10421), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(643), + [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(287), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4954), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4252), + [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8532), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(86), + [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4655), + [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4620), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9951), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10208), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11314), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10489), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(242), + [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11588), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1291), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11595), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11599), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10735), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10270), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11520), + [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(115), + [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8898), + [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10213), + [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1416), + [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9005), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11614), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11604), + [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), + [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1835), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10497), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8988), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10825), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8186), + [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_block, 1, 0, 0), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10757), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10421), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4954), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8532), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9951), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10208), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11314), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10489), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11588), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11595), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11599), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10735), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10270), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11520), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8898), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10213), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9005), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11614), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11604), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10511), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_block, 2, 0, 0), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1136), + [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8997), + [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11481), + [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8240), + [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10909), + [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10519), + [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(768), + [1212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(284), + [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4922), + [1218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4221), + [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8581), + [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(53), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4685), + [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4605), + [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9893), + [1238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10397), + [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1762), + [1244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11110), + [1247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10372), + [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(240), + [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11129), + [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1294), + [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11238), + [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11268), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11538), + [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10369), + [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10905), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(117), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8913), + [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1960), + [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10417), + [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1493), + [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8999), + [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11483), + [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11484), + [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1766), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8220), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10658), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10481), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10841), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10459), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8025), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8415), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8421), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), + [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1207), + [1403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9002), + [1406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11149), + [1409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8228), + [1412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11007), + [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10565), + [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1010), + [1421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(283), + [1424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4918), + [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4209), + [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8562), + [1433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(99), + [1436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4747), + [1439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4616), + [1442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10020), + [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10243), + [1448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1613), + [1451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10931), + [1454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10439), + [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [1460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11375), + [1463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1286), + [1466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11016), + [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11150), + [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11376), + [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7205), + [1478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7419), + [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(78), + [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9448), + [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8937), + [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1962), + [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10370), + [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1466), + [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8990), + [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11344), + [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11321), + [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), + [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1742), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8180), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11564), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7442), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9509), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), + [1538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1212), + [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8988), + [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10825), + [1547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8180), + [1550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11564), + [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10421), + [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(896), + [1559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(287), + [1562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4954), + [1565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4252), + [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8532), + [1571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(86), + [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4655), + [1577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4620), + [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9951), + [1583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10208), + [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), + [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11314), + [1592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10489), + [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(242), + [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11588), + [1601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1291), + [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11595), + [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11599), + [1610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10735), + [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7218), + [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7442), + [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(64), + [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9509), + [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8898), + [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), + [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10213), + [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1416), + [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9005), + [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11614), + [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11604), + [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), + [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1835), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 14), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 14), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9363), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7970), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9255), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 14), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 14), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), + [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1161), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(256), + [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), + [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), + [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1760), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1760), + [1708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(326), + [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(388), + [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4941), + [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2856), + [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4919), + [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11098), + [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8911), + [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9363), + [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10684), + [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(73), + [1738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3824), + [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7970), + [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), + [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11094), + [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4058), + [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8335), + [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7232), + [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7204), + [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7283), + [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9830), + [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10487), + [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10403), + [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(241), + [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11482), + [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1283), + [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10742), + [1786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10745), + [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11593), + [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10508), + [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11076), + [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), + [1801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1401), + [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10894), + [1807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10896), + [1810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10981), + [1813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7491), + [1816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9126), + [1819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6386), + [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9926), + [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9586), + [1828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6009), + [1831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5958), + [1834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4948), + [1837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11310), + [1840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9255), + [1843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10491), + [1846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1652), + [1849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), + [1852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1382), + [1855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1822), + [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10527), + [1861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), + [1864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6969), + [1867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7683), + [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(394), + [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1740), + [1876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1125), + [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(568), + [1882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(382), + [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4918), + [1888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(99), + [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10020), + [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10243), + [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10439), + [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11375), + [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1286), + [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11016), + [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11150), + [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11376), + [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10481), + [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10841), + [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9237), + [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10370), + [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1466), + [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), + [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1742), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9258), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9237), + [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1151), + [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(643), + [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(360), + [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4954), + [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(86), + [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9951), + [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10208), + [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10489), + [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(242), + [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11588), + [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1291), + [1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11595), + [1987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11599), + [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10735), + [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10270), + [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11520), + [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9258), + [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10213), + [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1416), + [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), + [2011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1835), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9254), + [2020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), + [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(768), + [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(387), + [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4922), + [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(53), + [2035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9893), + [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10397), + [2041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10372), + [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(240), + [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11129), + [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1294), + [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11238), + [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11268), + [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11538), + [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10369), + [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10905), + [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9254), + [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10417), + [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1493), + [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), + [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1766), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4947), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9982), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10260), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10210), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11602), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11516), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11617), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10831), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10220), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10718), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9162), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10299), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1141), + [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1228), + [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(333), + [2136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4947), + [2139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(90), + [2142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9982), + [2145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10260), + [2148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10210), + [2151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(243), + [2154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11602), + [2157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1272), + [2160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11516), + [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11617), + [2166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10831), + [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10220), + [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10718), + [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9162), + [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10299), + [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1430), + [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1431), + [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1844), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9981), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10726), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10625), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11287), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10404), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9253), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11522), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9416), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9349), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8869), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8821), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7730), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8265), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7258), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7268), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7271), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11130), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11673), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11726), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7503), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9117), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9953), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9471), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11132), + [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9406), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10521), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7149), + [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7678), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11241), + [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9791), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8352), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), + [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7214), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7485), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10762), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8910), + [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11341), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11694), + [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11729), + [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7494), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9137), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10046), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9633), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), + [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9364), + [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10598), + [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7160), + [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7670), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 46), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 46), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8904), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9621), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11288), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11688), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11727), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9515), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9131), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10076), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9658), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11551), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9411), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10593), + [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7031), + [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7685), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3619), + [2443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(256), + [2446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1592), + [2449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1592), + [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1760), + [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(643), + [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1837), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [2463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8911), + [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9363), + [2469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(86), + [2472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7970), + [2475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9573), + [2478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9951), + [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10208), + [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1843), + [2487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11314), + [2490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10489), + [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(242), + [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11588), + [2499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1291), + [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11595), + [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11599), + [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10735), + [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10270), + [2514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11520), + [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1649), + [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1401), + [2523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10894), + [2526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10896), + [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10981), + [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9579), + [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9126), + [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(6386), + [2541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9926), + [2544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9586), + [2547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(6009), + [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5958), + [2553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11551), + [2556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9258), + [2559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10213), + [2562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1652), + [2565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1416), + [2568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1417), + [2571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1835), + [2574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10527), + [2577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1647), + [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(6969), + [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7683), + [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(394), + [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1823), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8533), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9573), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9579), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8580), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8919), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9983), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9440), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10577), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6966), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8591), + [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3695), + [2643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(568), + [2646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(99), + [2649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10020), + [2652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10243), + [2655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1613), + [2658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10931), + [2661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10439), + [2664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(223), + [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11375), + [2670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1286), + [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11016), + [2676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11150), + [2679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11376), + [2682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10481), + [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10841), + [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9237), + [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10370), + [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1466), + [2697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1475), + [2700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1742), + [2703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3661), + [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(326), + [2709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(73), + [2712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9830), + [2715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10487), + [2718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1834), + [2721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11580), + [2724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10403), + [2727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(241), + [2730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11482), + [2733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1283), + [2736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10742), + [2739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10745), + [2742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11593), + [2745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10508), + [2748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11076), + [2751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9255), + [2754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10491), + [2757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1381), + [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1382), + [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1822), + [2766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3639), + [2769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(768), + [2772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(53), + [2775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9893), + [2778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10397), + [2781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1762), + [2784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11110), + [2787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10372), + [2790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(240), + [2793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11129), + [2796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1294), + [2799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11238), + [2802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11268), + [2805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11538), + [2808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10369), + [2811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10905), + [2814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9254), + [2817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10417), + [2820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1493), + [2823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1501), + [2826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1766), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8600), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [2837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3642), + [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1228), + [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(90), + [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9982), + [2849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10260), + [2852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1821), + [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10726), + [2858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10210), + [2861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(243), + [2864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11602), + [2867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1272), + [2870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11516), + [2873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11617), + [2876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10831), + [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10220), + [2882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10718), + [2885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9162), + [2888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10299), + [2891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1430), + [2894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1431), + [2897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1844), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8928), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10075), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9614), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10611), + [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3599), + [2929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9981), + [2932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10625), + [2935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11287), + [2938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10404), + [2941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9253), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9466), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9576), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8861), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9578), + [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11382), + [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11700), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11731), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9660), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9143), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10060), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9656), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9350), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10603), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6962), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7674), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8876), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8940), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8902), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9528), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11402), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11703), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11732), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9427), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9146), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10069), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9495), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9288), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10606), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7679), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9597), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9593), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [3106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3397), + [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(256), + [3112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1592), + [3115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1760), + [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [3120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1760), + [3123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1837), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), + [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [3130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8911), + [3133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7970), + [3136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9573), + [3139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9579), + [3142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(11551), + [3145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9349), + [3148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1823), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 7), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 7), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10538), + [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), + [3175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10538), + [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 4, 0, 47), + [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 4, 0, 47), + [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 3, 0, 7), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 3, 0, 7), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8860), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6642), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8259), + [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7233), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7236), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7242), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11317), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11691), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11728), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7410), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9135), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7019), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10035), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9459), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7397), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7390), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11364), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9366), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10596), + [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7696), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6601), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7511), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11128), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8862), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [3302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(3397), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(1837), + [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(8911), + [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(9573), + [3320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(9579), + [3323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(11551), + [3326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(9349), + [3329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(1823), + [3332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(3397), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(1837), + [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), + [3342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(8911), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), + [3347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(9573), + [3350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(9579), + [3353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(11551), + [3356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(9349), + [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(1823), + [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, 0, 171), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, 0, 171), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 52), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 52), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [3376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(3397), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [3381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(1837), + [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [3386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(8911), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [3391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(9573), + [3394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(9579), + [3397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(11551), + [3400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(9349), + [3403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(1823), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 109), + [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 109), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10892), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8235), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10779), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8153), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10936), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10561), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10865), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7516), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4957), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8535), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10898), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8360), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7370), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7371), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7378), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7465), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10872), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9093), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11623), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 10), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 84), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 10), + [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 84), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [3532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 0), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 0), + [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2, 0, 0), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2, 0, 0), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 53), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 53), + [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 53), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 53), + [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 54), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 54), + [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 57), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 57), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3, 0, 0), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3, 0, 0), + [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3, 0, 0), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3, 0, 0), + [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 71), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 71), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 91), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 91), + [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 7), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 7), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 110), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 110), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 118), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 118), + [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 121), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 121), + [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 138), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 138), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 91), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 91), + [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 7), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 7), + [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 156), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 156), + [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 157), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 157), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 161), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 161), + [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 5, 0, 162), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 5, 0, 162), + [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 177), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 177), + [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 178), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 178), + [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 138), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 138), + [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 190), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 190), + [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion_statement, 6, 0, 207), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_statement, 6, 0, 207), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 208), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 208), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), + [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 49), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 49), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8345), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7353), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7354), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7355), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7461), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8279), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7315), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7316), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7323), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7458), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11319), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10071), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9554), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10610), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7435), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10540), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10235), + [3792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10540), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8280), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7221), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7222), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7224), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7445), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11343), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8284), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7196), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7197), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7198), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7454), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11434), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8285), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7201), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7202), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7493), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10073), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9604), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11404), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9365), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10584), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7013), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7684), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [3917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 3), + [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 3), + [3921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2, 0, 0), + [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2, 0, 0), + [3925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [3928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_consteval_block_declaration, 2, 0, 7), + [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_consteval_block_declaration, 2, 0, 7), + [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 27), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 27), + [3939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_declaration, 2, 0, 0), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_declaration, 2, 0, 0), + [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, 0, 7), + [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, 0, 7), + [3947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10235), + [3950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 26), + [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 26), + [3954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3, 0, 0), + [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3, 0, 0), + [3958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 5), + [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 5), + [3962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 27), + [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 27), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8307), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7424), + [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 2, 0, 27), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 2, 0, 27), + [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 2, 0, 26), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 2, 0, 26), + [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 37), + [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 37), + [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 10), + [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 10), + [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 38), + [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 38), + [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 45), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 45), + [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3, 0, 0), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3, 0, 0), + [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 47), + [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 47), + [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4, 0, 0), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4, 0, 0), + [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [4028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 59), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 59), + [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 10), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 10), + [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 60), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 60), + [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 3, 0, 5), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 3, 0, 5), + [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 3, 0, 62), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 3, 0, 62), + [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 5, 0, 0), + [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 5, 0, 0), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8281), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7328), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7329), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7332), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7414), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11384), + [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 65), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 65), + [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 72), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 72), + [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 74), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 74), + [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 81), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 81), + [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 5), + [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 5), + [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 3, 0, 5), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 3, 0, 5), + [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 3, 0, 81), + [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 3, 0, 81), + [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 82), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 82), + [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 83), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 83), + [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4, 0, 0), + [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4, 0, 0), + [4116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_block, 3, 0, 10), + [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_block, 3, 0, 10), + [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 98), + [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 98), + [4124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 99), + [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 99), + [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 100), + [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 100), + [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 59), + [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 59), + [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 10), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 10), + [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 60), + [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 60), + [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, 0, 63), + [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, 0, 63), + [4152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 4, 0, 62), + [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 4, 0, 62), + [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 119), + [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 119), + [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 123), + [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 123), + [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3, 0, 0), + [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3, 0, 0), + [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3, 0, 0), + [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3, 0, 0), + [4172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pure_virtual_clause, 3, 0, 0), + [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pure_virtual_clause, 3, 0, 0), + [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, 0, 128), + [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, 0, 128), + [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 131), + [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 131), + [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 132), + [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 132), + [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 5, 0, 139), + [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 5, 0, 139), + [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, 0, 140), + [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, 0, 140), + [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_block, 4, 0, 84), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_block, 4, 0, 84), + [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_block, 4, 0, 85), + [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_block, 4, 0, 85), + [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_block, 4, 0, 10), + [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_block, 4, 0, 10), + [4208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 5, 0, 146), + [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 5, 0, 146), + [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 5, 0, 147), + [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 5, 0, 147), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7462), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7080), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, 0, 172), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, 0, 172), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, 0, 173), + [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, 0, 173), + [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, 0, 174), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, 0, 174), + [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concept_definition, 5, 0, 10), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concept_definition, 5, 0, 10), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 181), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 181), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 5, 0, 0), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 5, 0, 0), + [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, 0, 185), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, 0, 185), + [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 6, 0, 188), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 6, 0, 188), + [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_block, 5, 0, 133), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_block, 5, 0, 133), + [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_block, 5, 0, 84), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_block, 5, 0, 84), + [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_block, 5, 0, 134), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_block, 5, 0, 134), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8282), + [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7363), + [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7364), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7366), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11362), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11697), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11730), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7423), + [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9139), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10058), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9469), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7216), + [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7206), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9355), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10601), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6937), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7695), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [4362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3701), + [4365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1646), + [4368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8910), + [4371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9597), + [4374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9593), + [4377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9364), + [4380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1877), + [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_block, 6, 0, 186), + [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_block, 6, 0, 186), + [4387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, 0, 221), + [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, 0, 221), + [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8346), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7285), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7286), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7288), + [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7427), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8283), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7374), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7375), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7377), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7463), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11419), + [4443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, 0, 42), + [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, 0, 42), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10622), + [4449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10622), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 48), + [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 48), + [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_module_fragment_declaration, 4, 0, 0), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_module_fragment_declaration, 4, 0, 0), + [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 10), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 10), + [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 113), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 113), + [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 133), + [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 133), + [4476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 84), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 84), + [4480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 134), + [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 134), + [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 48), + [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 48), + [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 167), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 167), + [4492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 113), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 113), + [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 186), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 186), + [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 6, 0, 167), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 6, 0, 167), + [4504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [4507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [4510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [4514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_module_fragment_declaration, 2, 0, 0), + [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_module_fragment_declaration, 2, 0, 0), + [4518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 10), + [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 10), + [4522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), + [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), + [4526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, 0, 10), + [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, 0, 10), + [4530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 84), + [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 84), + [4534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 85), + [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 85), + [4538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 10), + [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 10), + [4542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5962), + [4545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10892), + [4548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8235), + [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [4553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10779), + [4556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10561), + [4559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6478), + [4562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10865), + [4565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4153), + [4568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7516), + [4571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7516), + [4574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [4577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4728), + [4580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4957), + [4583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4781), + [4586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4919), + [4589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11098), + [4592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8535), + [4595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7784), + [4598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9416), + [4601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10684), + [4604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10247), + [4607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3824), + [4610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10898), + [4613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), + [4616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4667), + [4619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4561), + [4622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11094), + [4625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4308), + [4628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8360), + [4631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7370), + [4634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7371), + [4637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7378), + [4640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7465), + [4643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4948), + [4646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11310), + [4649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6356), + [4652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10872), + [4655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9093), + [4658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), + [4661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2152), + [4664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11623), + [4667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1852), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8881), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8912), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10725), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8161), + [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10964), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10474), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8516), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9108), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11603), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [4718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10725), + [4721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8161), + [4724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10964), + [4727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10474), + [4730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(884), + [4733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4688), + [4736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4944), + [4739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8516), + [4742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [4744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4694), + [4747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4573), + [4750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9108), + [4753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2168), + [4756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11603), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10949), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8183), + [4805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10638), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10207), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), + [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8543), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9100), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11631), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [4841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10949), + [4844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8183), + [4847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10638), + [4850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10207), + [4853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(960), + [4856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4751), + [4859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4959), + [4862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8543), + [4865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4681), + [4868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4557), + [4871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9100), + [4874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2159), + [4877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11631), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8878), + [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9555), + [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9488), + [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8943), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9565), + [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9596), + [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8918), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9511), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9599), + [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 28), + [4930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 28), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [4934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3749), + [4937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1770), + [4940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8918), + [4943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9511), + [4946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9599), + [4949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3726), + [4952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1627), + [4955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8860), + [4958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9565), + [4961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9596), + [4964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9366), + [4967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1866), + [4970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2447), + [4973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1794), + [4976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8876), + [4979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9621), + [4982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9515), + [4985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9411), + [4988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1836), + [4991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3487), + [4994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1698), + [4997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8928), + [5000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2988), + [5003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1587), + [5006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8881), + [5009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9365), + [5012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3713), + [5015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1654), + [5018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8861), + [5021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9578), + [5024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9660), + [5027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9350), + [5030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1874), + [5033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1910), + [5036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8940), + [5039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3758), + [5042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1551), + [5045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8878), + [5048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9555), + [5051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9488), + [5054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9355), + [5057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1873), + [5060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3586), + [5063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1764), + [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8912), + [5069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1540), + [5072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8919), + [5075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1715), + [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8904), + [5081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3761), + [5084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1893), + [5087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8943), + [5090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3643), + [5093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1814), + [5096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8869), + [5099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9466), + [5102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9576), + [5105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9406), + [5108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1768), + [5111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3745), + [5114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1685), + [5117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8902), + [5120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9528), + [5123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9427), + [5126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9288), + [5129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1879), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8397), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8397), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8757), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), + [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8338), + [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7234), + [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7235), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7240), + [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7490), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), + [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11290), + [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9309), + [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8341), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11229), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), + [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10755), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), + [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11361), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8264), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8354), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8529), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8840), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8579), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8262), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8527), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8556), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8842), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8582), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8521), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8567), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8524), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11168), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), + [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7500), + [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9144), + [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7801), + [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11596), + [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9127), + [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11640), + [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11632), + [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11609), + [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), + [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9160), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11619), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11615), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11635), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11624), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11628), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9097), + [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [5508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(259), + [5511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1575), + [5514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(274), + [5517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1735), + [5520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1935), + [5523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1935), + [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(253), + [5529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1696), + [5532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1696), + [5535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1586), + [5538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1697), + [5541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1441), + [5544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(11362), + [5547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(11697), + [5550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(11730), + [5553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9139), + [5556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7147), + [5559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10058), + [5562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9469), + [5565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7216), + [5568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7206), + [5571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1532), + [5574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10601), + [5577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1533), + [5580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6937), + [5583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7695), + [5586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(512), + [5589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [5593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [5597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [5600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [5605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [5607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [5609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10310), + [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7918), + [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7437), + [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [5633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10310), + [5636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), + [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [5640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), + [5645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [5647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [5650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(293), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8983), + [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, 0, 1), + [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), + [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10729), + [5669] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [5675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [5678] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), + [5684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), + [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10989), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), + [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10979), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), + [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11012), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11511), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10682), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11565), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11535), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), + [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8646), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8413), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8423), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [5802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(3397), + [5805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(256), + [5808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), + [5811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), + [5814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1760), + [5817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(4226), + [5820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1837), + [5823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8911), + [5826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1565), + [5829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), + [5831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7970), + [5834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9573), + [5837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), + [5840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1401), + [5843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(10894), + [5846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(10896), + [5849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(10981), + [5852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8646), + [5855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9126), + [5858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6386), + [5861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9926), + [5864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9586), + [5867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6009), + [5870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5958), + [5873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(11551), + [5876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9349), + [5879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1652), + [5882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(10527), + [5885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), + [5888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6969), + [5891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7683), + [5894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(394), + [5897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1823), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), + [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10753), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8925), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10617), + [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7339), + [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8716), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10969), + [5948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_default_capture, 1, 0, 0), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11072), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11074), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10719), + [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10721), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11160), + [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11162), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [5990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(297), + [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9553), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10605), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [6001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11187), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11232), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [6011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11215), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [6016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11227), + [6019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11226), + [6022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11228), + [6025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11230), + [6028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11237), + [6031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11235), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [6036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11157), + [6039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11113), + [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [6046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11264), + [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 84), + [6053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 160), + [6055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 111), + [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [6071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 200), + [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 1, 0), + [6077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 1, 111), + [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [6089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11109), + [6092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10669), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8552), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8553), + [6099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11395), + [6102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10867), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11296), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [6115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10913), + [6118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11421), + [6121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10937), + [6124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11009), + [6127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11013), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8514), + [6132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11048), + [6135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11049), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8097), + [6140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11480), + [6143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11089), + [6146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11092), + [6149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11093), + [6152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11507), + [6155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11106), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10633), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8520), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8531), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7927), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11325), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11143), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11347), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10908), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11367), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [6236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11248), + [6239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11291), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [6254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11293), + [6257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11295), + [6260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11333), + [6263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11338), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8564), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11387), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8260), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8351), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8353), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8250), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11406), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8836), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10780), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8590), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8844), + [6348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11353), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10711), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), + [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11044), + [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10674), + [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11036), + [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10704), + [6367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11040), + [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11331), + [6371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11725), + [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10712), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7973), + [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7915), + [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7940), + [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7911), + [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7958), + [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7910), + [6401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7946), + [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7948), + [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7913), + [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7952), + [6409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7914), + [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7957), + [6413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7982), + [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7967), + [6417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7960), + [6419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7941), + [6421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7953), + [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), + [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7974), + [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7944), + [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7945), + [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7932), + [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7978), + [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7980), + [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7951), + [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7961), + [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7959), + [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7908), + [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7984), + [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7977), + [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7979), + [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7983), + [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9892), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8433), + [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8433), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8756), + [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9360), + [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9734), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [6479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), + [6481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), + [6483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(2803), + [6486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(2803), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11416), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9280), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11439), + [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9141), + [6499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4930), + [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10770), + [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7749), + [6510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3651), + [6513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7749), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10146), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9979), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10083), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10070), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11416), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11439), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9141), + [6540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4848), + [6543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3651), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10770), + [6550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7749), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9733), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9768), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), + [6565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), + [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 1, 34), + [6569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), + [6572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), + [6574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), + [6576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), + [6579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(319), + [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7966), + [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11147), + [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11499), + [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10991), + [6594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 17), + [6596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, 0, 18), + [6598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 17), REDUCE(sym_template_function, 2, 0, 18), + [6601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 17), + [6603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, 0, 18), + [6605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 17), REDUCE(sym_template_function, 2, 0, 18), + [6608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 1, 0), + [6610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 1, 0), + [6612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 1, 0), + [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 1, 0), + [6616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 3, 0), + [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 3, 0), + [6620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 2, 0), + [6622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 2, 0), + [6624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 3, 0), + [6626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 3, 0), + [6628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 2, 0), + [6630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 2, 0), + [6632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2, 0, 0), + [6634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2, 0, 0), + [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11594), + [6638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3992), + [6641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3992), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11380), + [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11380), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9292), + [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11433), + [6656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4814), + [6659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4768), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10628), + [6666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7750), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), + [6673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4134), + [6676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4134), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11458), + [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11458), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9301), + [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11478), + [6691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4917), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11018), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7742), + [6702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11416), + [6705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11416), + [6708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4928), + [6711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4063), + [6714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4063), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11470), + [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11470), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9308), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11479), + [6729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4921), + [6732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5046), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11042), + [6739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7761), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), + [6746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5257), + [6749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7742), + [6752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 1, 0, 0), + [6754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 1, 0, 0), + [6756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4289), + [6759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4289), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11442), + [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11442), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9304), + [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11467), + [6774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4913), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10916), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), + [6785] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(311), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11349), + [6795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5677), + [6798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7756), + [6801] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(320), + [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11408), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11349), + [6821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11474), + [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11401), + [6859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [6861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [6863] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(318), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11146), + [6873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(303), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9475), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10613), + [6880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(298), + [6883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9506), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10589), + [6889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [6891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [6893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2047), + [6896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11401), + [6899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 2, 0, 0), + [6901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 2, 0, 0), + [6903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2059), + [6906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11439), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9650), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10612), + [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), + [6935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [6937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [6939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11416), + [6942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [6944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [6946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2082), + [6949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2070), + [6952] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(321), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11389), + [6964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(299), + [6967] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(299), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11327), + [6977] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(295), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9541), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11369), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10604), + [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [6999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [7001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [7003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2037), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11381), + [7028] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(307), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9420), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11422), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10608), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9492), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11408), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10607), + [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [7060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(295), + [7063] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(305), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9513), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11435), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10609), + [7077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [7079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [7081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [7083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [7085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), + [7087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), REDUCE(sym_splice_expression, 1, 0, 0), + [7090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), + [7092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splice_expression, 1, 0, 0), + [7094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), REDUCE(sym_splice_expression, 1, 0, 0), + [7097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splice_expression, 1, 0, 0), + [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [7101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(318), + [7104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__splice_specialization_specifier, 2, 0, 0), + [7106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__splice_specialization_specifier, 2, 0, 0), + [7108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [7110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11474), + [7132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [7134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [7138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [7142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11459), + [7158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [7160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), + [7168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4325), + [7171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4325), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11339), + [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11339), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9396), + [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11427), + [7186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4939), + [7189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5278), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10739), + [7196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7769), + [7199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), + [7207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), + [7209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2047), + [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [7214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11401), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), + [7223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), + [7225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9004), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [7231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splice_specifier, 3, 0, 0), + [7233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splice_specifier, 3, 0, 0), + [7235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, 0, 6), + [7237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, 0, 6), + [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11400), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8010), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8261), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [7249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [7251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [7253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2047), + [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [7258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11401), + [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [7263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(311), + [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11427), + [7270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4925), + [7273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5278), + [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), + [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10739), + [7280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7741), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), + [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7741), + [7287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [7289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [7291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), + [7293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), + [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [7301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), + [7303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11447), + [7327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2239), + [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [7334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2216), + [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [7341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 21), + [7343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 21), + [7345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [7347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [7349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 2), + [7351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 2), + [7353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 21), + [7355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 21), + [7357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, 0, 104), + [7359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, 0, 104), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [7371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, 0, 1), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), + [7381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 102), + [7383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 102), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8778), + [7387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 50), + [7389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 50), + [7391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 2), + [7393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 1, 0, 2), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [7397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 51), + [7399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 51), + [7401] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(311), + [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), + [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7237), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7238), + [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7239), + [7413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 47), + [7415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 47), + [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7243), + [7419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7244), + [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7245), + [7423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 100), + [7425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 100), + [7427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 49), + [7429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 49), + [7431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 105), + [7433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 105), + [7435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 108), + [7437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 108), + [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), + [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7262), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7263), + [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7264), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7265), + [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7266), + [7453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 47), + [7455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 47), + [7457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, 0, 0), + [7459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, 0, 0), + [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7276), + [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7277), + [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7278), + [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7398), + [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7281), + [7471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7282), + [7473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4, 0, 0), + [7475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4, 0, 0), + [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7292), + [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7293), + [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), + [7483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11401), + [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7295), + [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), + [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), + [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7304), + [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7305), + [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), + [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7307), + [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7308), + [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7309), + [7505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 7), + [7507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 7), + [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7317), + [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7318), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7319), + [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7320), + [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), + [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7322), + [7521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 151), + [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 151), + [7525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [7528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [7531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 152), + [7533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 152), + [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7310), + [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7312), + [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7313), + [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7384), + [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7385), + [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7386), + [7547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [7549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [7551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, 0, 11), + [7553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, 0, 11), + [7555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 21), + [7557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 21), + [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [7561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, 0, 12), + [7563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, 0, 12), + [7565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype_auto, 4, 0, 0), + [7567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype_auto, 4, 0, 0), + [7569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), + [7571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 50), + [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [7575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2365), + [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [7580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11381), + [7583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [7585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [7587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [7595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, 0, 107), + [7597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, 0, 107), + [7599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 11), + [7601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 11), + [7603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 6), + [7605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 6), + [7607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 51), + [7609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 51), + [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [7613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2365), + [7616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [7618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11381), + [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [7623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 7), + [7625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 7), + [7627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [7629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [7631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [7633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [7635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 100), + [7637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 100), + [7639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 102), + [7641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 102), + [7643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 10), + [7645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 10), + [7647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [7649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [7651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 47), + [7653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 47), + [7655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 105), + [7657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 105), + [7659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 48), + [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 48), + [7663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 108), + [7665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 108), + [7667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 47), + [7669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 47), + [7671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, 0, 153), + [7673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, 0, 153), + [7675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), + [7677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), + [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [7681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 19), + [7683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 19), + [7685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [7687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1295), + [7690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2212), + [7693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 21), + [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 21), + [7697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 36), + [7699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 36), + [7701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 46), + [7703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 46), + [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [7707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 80), + [7709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 80), + [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [7713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), + [7715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), + [7717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, 0, 103), + [7719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, 0, 103), + [7721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [7723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 46), + [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, 0, 46), + [7727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 80), + [7729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, -1, 80), + [7731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), + [7733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), + [7735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [7737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [7739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, 0, 12), + [7741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, 0, 12), + [7743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 1, 0, 13), + [7745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 1, 0, 13), + [7747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [7749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [7751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 12), + [7753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 12), + [7755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 12), + [7757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 12), + [7759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, -1, 0), + [7761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, -1, 0), + [7763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 16), + [7765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 16), + [7767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 151), + [7769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 151), + [7771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 5, 0, 152), + [7773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 5, 0, 152), + [7775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 49), + [7777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 49), + [7779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 32), + [7781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 32), + [7783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 36), + [7785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 36), + [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [7789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), + [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), + [7793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(2803), + [7796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(2803), + [7799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4930), + [7802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3651), + [7805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7749), + [7808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6146), + [7811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6146), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11432), + [7818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11432), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9298), + [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11463), + [7826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4899), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10855), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), + [7837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6532), + [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6563), + [7841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9099), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [7849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4848), + [7852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [7854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2434), + [7857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11471), + [7860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [7862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2434), + [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [7867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11471), + [7870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3651), + [7873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7749), + [7876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6137), + [7879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6137), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11450), + [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11450), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9306), + [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11477), + [7894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4915), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10973), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [7907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2365), + [7910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11381), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [7917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11339), + [7920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11339), + [7923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4924), + [7926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6701), + [7929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7780), + [7932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6602), + [7935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7771), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [7940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [7942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2423), + [7945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [7947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11459), + [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [7954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2423), + [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [7959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11459), + [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [7964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [7966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), + [7968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), + [7970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4848), + [7973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(3651), + [7976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7749), + [7979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2434), + [7982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11471), + [7985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2423), + [7988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11459), + [7991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4930), + [7994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(3651), + [7997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7749), + [8000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 10), + [8002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 10), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), + [8006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 48), + [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 48), + [8010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2392), + [8013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2392), + [8016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11433), + [8019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2452), + [8022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2452), + [8025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11479), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11400), + [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8139), + [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [8034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2492), + [8037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2492), + [8040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11478), + [8043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11380), + [8046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11380), + [8049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2355), + [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [8054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2576), + [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [8059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11447), + [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [8066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11381), + [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [8070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2576), + [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [8075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11447), + [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10560), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), + [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11455), + [8102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2576), + [8105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11447), + [8108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2369), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), + [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11316), + [8127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2374), + [8130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11458), + [8133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11458), + [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11459), + [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11471), + [8146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11470), + [8149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11470), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11360), + [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11360), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8010), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8261), + [8162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3992), + [8165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3992), + [8168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4814), + [8171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(299), + [8174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4768), + [8177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7750), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [8182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2652), + [8185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11474), + [8188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, 0, 155), + [8190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, 0, 155), + [8192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, 0, 14), + [8194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, 0, 14), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [8202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2636), + [8205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2636), + [8208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11467), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [8217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2618), + [8220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2618), + [8223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2619), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8647), + [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), + [8232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), + [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), + [8236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11125), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9297), + [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11127), + [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11286), + [8246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2725), + [8249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2725), + [8252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2709), + [8255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(307), + [8258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(311), + [8261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11447), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11454), + [8267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11454), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [8271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4814), + [8274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11442), + [8277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11442), + [8280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [8282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [8284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2724), + [8287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2473), + [8290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(11361), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11466), + [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11466), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [8301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4768), + [8304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7750), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [8309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2499), + [8312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4134), + [8315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4134), + [8318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4917), + [8321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5257), + [8324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7742), + [8327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(305), + [8330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11416), + [8333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11416), + [8336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4928), + [8339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2683), + [8342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2683), + [8345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2686), + [8348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2726), + [8351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11316), + [8354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4063), + [8357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4063), + [8360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4921), + [8363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5046), + [8366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7761), + [8369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2727), + [8372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11427), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8793), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [8389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), + [8391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11416), + [8394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11416), + [8397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4928), + [8400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10338), + [8403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2538), + [8406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [8408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [8410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9658), + [8413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10593), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), + [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), + [8422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), + [8424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), + [8426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4848), + [8429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4917), + [8432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5257), + [8435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7742), + [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10338), + [8440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4921), + [8443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5046), + [8446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7761), + [8449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11339), + [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [8454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [8456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [8458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(3651), + [8461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7749), + [8464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [8466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [8468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8773), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8805), + [8478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4930), + [8481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(3651), + [8484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7749), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [8491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), + [8493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2784), + [8496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2786), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11438), + [8501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11438), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [8505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2607), + [8508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4289), + [8511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4289), + [8514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4913), + [8517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5677), + [8520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7756), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [8537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2931), + [8540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2931), + [8543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2932), + [8546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8268), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), + [8552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7990), + [8556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(321), + [8559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splice_expression, 2, 0, 0), + [8561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), REDUCE(sym_splice_expression, 2, 0, 0), + [8564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splice_expression, 2, 0, 0), + [8566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), REDUCE(sym_splice_expression, 2, 0, 0), + [8569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1297), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), + [8578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [8582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11455), + [8592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1273), + [8595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4913), + [8598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [8606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6141), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [8610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [8618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11443), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8813), + [8626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1276), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [8633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5677), + [8636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7756), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [8641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [8643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 206), + [8645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 206), + [8647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 71), + [8649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 71), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6185), + [8657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [8659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [8661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 213), + [8663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 213), + [8665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 7, 0, 222), + [8667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 7, 0, 222), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), + [8673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [8681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), + [8683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 192), + [8685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 192), + [8687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 213), + [8689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 213), + [8691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 214), + [8693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 214), + [8695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [8697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [8699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [8701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(298), + [8704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1, 0, 0), + [8706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1, 0, 0), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [8712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6174), + [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [8716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2726), + [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [8721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11316), + [8724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [8726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 7, 0, 223), + [8728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 7, 0, 223), + [8730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 84), + [8732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 84), + [8734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 84), + [8736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 84), + [8738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 214), + [8740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 214), + [8742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 85), + [8744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 85), + [8746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 10), + [8748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 10), + [8750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 5, 0, 0), + [8752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 5, 0, 0), + [8754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [8756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2726), + [8759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [8761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11316), + [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [8766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 71), + [8768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 71), + [8770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 10), + [8772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 10), + [8774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 61), + [8776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 61), + [8778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 193), + [8780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 193), + [8782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 71), + [8784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 71), + [8786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 72), + [8788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 72), + [8790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 134), + [8792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 134), + [8794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 71), + [8796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 71), + [8798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 186), + [8800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 186), + [8802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 192), + [8804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 192), + [8806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 206), + [8808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 206), + [8810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 193), + [8812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 193), + [8814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 61), + [8816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 61), + [8818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_list_item, 2, 0, 0), + [8820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_list_item, 2, 0, 0), + [8822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 223), + [8824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 223), + [8826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 133), + [8828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 133), + [8830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(299), + [8833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 2, 0, 0), + [8835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 2, 0, 0), + [8837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 1, 0, 0), + [8839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 1, 0, 0), + [8841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10284), + [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10356), + [8845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4814), + [8848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10356), + [8851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4768), + [8854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7750), + [8857] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(299), + [8861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3302), + [8864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [8866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [8868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10284), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [8873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3290), + [8876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [8878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [8880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4921), + [8883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [8885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 2, 0, 0), + [8887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 2, 0, 0), + [8889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3, 0, 0), + [8891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3, 0, 0), + [8893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 129), + [8895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 129), + [8897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3, 0, 0), + [8899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3, 0, 0), + [8901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 130), + [8903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 130), + [8905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), + [8907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), + [8909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 3, 0, 70), + [8911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 3, 0, 70), + [8913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), + [8915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), + [8917] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(305), + [8921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 77), + [8923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 77), + [8925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(320), + [8928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5046), + [8931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7761), + [8934] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(307), + [8938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4, 0, 0), + [8940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4, 0, 0), + [8942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, 0, 184), + [8944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, 0, 184), + [8946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 78), + [8948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 78), + [8950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 2, 0, 22), + [8952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 2, 0, 22), + [8954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, 0, 33), + [8956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, 0, 33), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), + [8962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6280), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), + [8968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6275), + [8970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11416), + [8973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11416), + [8976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4928), + [8979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4, 0, 0), + [8981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4, 0, 0), + [8983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4917), + [8986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5257), + [8989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7742), + [8992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_expression, 3, 0, 41), + [8994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_expression, 3, 0, 41), + [8996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement_clause_constraint, 3, 0, 0), + [8998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement_clause_constraint, 3, 0, 0), + [9000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_conjunction, 3, 0, 58), + [9002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_conjunction, 3, 0, 58), + [9004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(307), + [9007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 5, 0, 0), + [9009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 5, 0, 0), + [9011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 3, 0, 0), + [9013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 3, 0, 0), + [9015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(3651), + [9018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7749), + [9021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(3651), + [9024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7749), + [9027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1, 0, 0), + [9029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1, 0, 0), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [9033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 27), + [9035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 27), + [9037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [9039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [9041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 27), + [9043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 27), + [9045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 182), + [9047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 182), + [9049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [9051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11316), + [9053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), + [9056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11094), + [9059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 92), + [9061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 92), + [9063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 43), + [9065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 43), + [9067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), + [9069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), + [9071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 3, 0, 0), + [9073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 3, 0, 0), + [9075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [9077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9280), + [9080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), + [9082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), + [9084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 44), + [9086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 44), + [9088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [9090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [9092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(311), + [9095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 124), + [9097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 124), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [9101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [9103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [9105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [9107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3295), + [9110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [9112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [9114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [9116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), + [9118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), + [9120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2, 0, 0), + [9122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2, 0, 0), + [9124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4913), + [9127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [9129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4, 0, 0), + [9131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4, 0, 0), + [9133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5677), + [9136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7756), + [9139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_postfix, 1, 0, 0), + [9141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_postfix, 1, 0, 0), + [9143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), + [9145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), + [9147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(3651), + [9150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3, 0, 0), + [9152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3, 0, 0), + [9154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [9156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3877), + [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [9161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11451), + [9164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [9166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3877), + [9169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11451), + [9172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), + [9174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3945), + [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [9179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11443), + [9182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [9184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [9186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3945), + [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), + [9191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11443), + [9194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [9196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4325), + [9199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4325), + [9202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4925), + [9205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5278), + [9208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7741), + [9211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4939), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [9216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5278), + [9219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7769), + [9222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2, 0, 0), + [9224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2, 0, 0), + [9226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 21), + [9228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 21), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [9236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_expression, 1, 0, 0), + [9239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_expression, 1, 0, 0), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11315), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [9248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 46), + [9250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 46), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [9256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 68), + [9258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 68), + [9260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [9262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(320), + [9265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3576), + [9268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9475), + [9271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10613), + [9274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 96), + [9276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 96), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [9282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [9284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(301), + [9287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4939), + [9290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5278), + [9293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7769), + [9296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 2, 0, 0), + [9298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 2, 0, 0), + [9300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, 1, 180), + [9302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 180), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [9306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [9308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [9310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11315), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [9316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, 0, 25), + [9318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 25), + [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [9322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_disjunction, 3, 0, 58), + [9324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_disjunction, 3, 0, 58), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), + [9328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7774), + [9330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(318), + [9333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [9335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [9337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, 0, 40), + [9339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 40), + [9341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3629), + [9344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9506), + [9347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10589), + [9350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [9352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4925), + [9355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5278), + [9358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7741), + [9361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [9363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [9365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 135), + [9367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 135), + [9369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [9371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [9373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 27), + [9375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 27), + [9377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 117), + [9379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 117), + [9381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 143), + [9383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 143), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), + [9387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7791), + [9389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1, 0, 0), + [9391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1, 0, 0), + [9393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_clause, 2, 0, 23), + [9395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_clause, 2, 0, 23), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), + [9399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7790), + [9401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3877), + [9404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11451), + [9407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [9409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8824), + [9415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 187), + [9417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 187), + [9419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 124), + [9421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 124), + [9423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 27), + [9425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 27), + [9427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1, 0, 0), + [9429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_reference_declarator, 1, 0, 0), + [9431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 95), + [9433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 95), + [9435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, 0, 182), + [9437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 182), + [9439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, 1, 42), + [9441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 42), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [9445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 7, 0, 24), + [9447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 7, 0, 24), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7773), + [9451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7773), + [9453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(10303), + [9456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(11075), + [9459] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(8589), + [9463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [9465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3945), + [9468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11443), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11075), + [9473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(8589), + [9476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, 1, 90), + [9478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 90), + [9480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, 1, 5), + [9482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 5), + [9484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type_declarator, 2, 1, 0), + [9486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type_declarator, 2, 1, 0), + [9488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(321), + [9491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 67), + [9493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 67), + [9495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 126), + [9497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, 2, 126), + [9499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 126), SHIFT(311), + [9502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3706), + [9505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9513), + [9508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10609), + [9511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [9513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, 0, 125), + [9515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, 0, 125), + [9517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [9519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [9521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(307), + [9524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3727), + [9527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9420), + [9530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10608), + [9533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [9535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, 0, 175), + [9537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, 0, 175), + [9539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), + [9541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 1, 0, 0), + [9544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 2, 0, 0), + [9546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(305), + [9549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 2, 0, 0), + [9552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [9554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3991), + [9557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3991), + [9560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11463), + [9563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [9565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4026), + [9568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4026), + [9571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11477), + [9574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8085), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8795), + [9578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), + [9580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 1, 75), + [9582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), SHIFT(311), + [9585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [9587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [9589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [9591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [9593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11451), + [9595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 1, 0, 0), + [9597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reflect_expression, 2, 0, 0), + [9599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reflect_expression, 2, 0, 0), + [9601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 1, 0, 0), + [9603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [9605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7033), + [9607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3823), + [9610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4265), + [9613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3497), + [9616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), + [9618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11094), + [9621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), + [9623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3766), + [9626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 0, 34), + [9628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, 0, 34), + [9630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 41), + [9632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 41), + [9634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [9636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11443), + [9638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 4), + [9640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 4), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [9646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8223), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8223), + [9650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), + [9652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, 1, 79), + [9654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(311), + [9657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 4), + [9659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 4), + [9661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11450), + [9664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11450), + [9667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11432), + [9670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11432), + [9673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 4), + [9675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 4), + [9677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 14), + [9679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 14), + [9681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, 0, 4), + [9683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, 0, 4), + [9685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [9687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [9689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), + [9691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), + [9693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, 0, 18), + [9695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, 0, 18), + [9697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2, 0, 0), + [9699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2, 0, 0), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [9703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 4, 0, 175), + [9705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 4, 0, 175), + [9707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 58), + [9709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 58), + [9711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), + [9713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 76), + [9715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 89), + [9717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 89), + [9719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4220), + [9722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3497), + [9725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [9727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11094), + [9730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), + [9732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2, 0, 0), + [9734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2, 0, 0), + [9736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [9738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [9740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), + [9742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), + [9744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [9746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6972), + [9748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 115), + [9750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 115), + [9752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 29), + [9754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 29), + [9756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 142), + [9758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 142), + [9760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 34), + [9762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 0, 34), + [9764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 116), + [9766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 116), + [9768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 227), + [9770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 227), + [9772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, 0, 189), + [9774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, 0, 189), + [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), + [9778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 176), + [9780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 176), + [9782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4183), + [9785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11455), + [9788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, 0, 163), + [9790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, 0, 163), + [9792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 228), + [9794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 228), + [9796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), + [9798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [9800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 1, 8), + [9802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 1, 8), + [9804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [9806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [9808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 165), + [9810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 165), + [9812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), + [9814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), + [9816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), + [9818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 231), + [9820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 231), + [9822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 3, 0, 56), + [9824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 3, 0, 56), + [9826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 58), + [9828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 58), + [9830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 166), + [9832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 166), + [9834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 1, 55), + [9836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 1, 55), + [9838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4848), + [9841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(3651), + [9844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7749), + [9847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3897), + [9850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9553), + [9853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10605), + [9856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 141), + [9858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 141), + [9860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 2, 0, 9), + [9862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 2, 0, 9), + [9864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 2, 0, 30), + [9866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 2, 0, 30), + [9868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 66), + [9870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 66), + [9872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 201), + [9874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 201), + [9876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 203), + [9878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 203), + [9880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 204), + [9882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 204), + [9884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [9886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [9888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3, 0, 0), + [9890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3, 0, 0), + [9892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 219), + [9894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 219), + [9896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 220), + [9898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 220), + [9900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), + [9902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), + [9904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4930), + [9907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), + [9909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), + [9911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), + [9913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), + [9915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2, 0, 0), + [9917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2, 0, 0), + [9919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [9921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [9923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 89), + [9925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 89), + [9927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), SHIFT(311), + [9930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 94), + [9932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 94), + [9934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [9936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [9938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [9940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [9942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 46), + [9944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 46), + [9946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 112), + [9948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 112), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [9952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4309), + [9955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4309), + [9958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4310), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11426), + [9963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11426), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [9967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [9969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4321), + [9972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4321), + [9975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4322), + [9978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(295), + [9981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6146), + [9984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6146), + [9987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4899), + [9990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 2), + [9992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 2), + [9994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [9996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11339), + [9999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11339), + [10002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4924), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), + [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [10011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6137), + [10014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6137), + [10017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4915), + [10020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6602), + [10023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7771), + [10026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 21), + [10028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 21), + [10030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [10034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 2), + [10036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 2), + [10038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [10044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [10046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [10048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4722), + [10051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4024), + [10054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4756), + [10057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11125), + [10060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9297), + [10063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11127), + [10066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11286), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [10071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 21), + [10073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 21), + [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11446), + [10077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11446), + [10079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6701), + [10082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7780), + [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [10091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4925), + [10094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4050), + [10097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9604), + [10100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10584), + [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), + [10105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8083), + [10107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [10109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4065), + [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), + [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8782), + [10116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4915), + [10119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4899), + [10122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11339), + [10125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11339), + [10128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4924), + [10131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4939), + [10134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(6602), + [10137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7771), + [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [10142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4333), + [10145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11340), + [10148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5278), + [10151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7741), + [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7182), + [10158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(6701), + [10161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7780), + [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [10166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5278), + [10169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7769), + [10172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 137), + [10174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 4, 0, 137), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), + [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7525), + [10184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 39), + [10186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 39), + [10188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 86), + [10190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 86), + [10192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 67), + [10194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 67), + [10196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 5), + [10198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 5), + [10200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 2, 0, 0), + [10202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_reference_declarator, 2, 0, 0), + [10204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 42), + [10206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 42), + [10208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 90), + [10210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 90), + [10212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 4, 0, 0), + [10214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 4, 0, 0), + [10216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8832), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), + [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7539), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7986), + [10226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 5, 0, 0), + [10228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 5, 0, 0), + [10230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 6, 0, 0), + [10232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 6, 0, 0), + [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), + [10238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7552), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), + [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7546), + [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), + [10250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7559), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), + [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7562), + [10258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [10260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6993), + [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), + [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7506), + [10270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [10272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9456), + [10276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [10278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement, 1, 0, 69), + [10280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement, 1, 0, 69), + [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), + [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [10290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4228), + [10293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_requirement, 2, 0, 0), + [10295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_requirement, 2, 0, 0), + [10297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4928), + [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [10302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [10304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), + [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [10310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6965), + [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [10314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [10316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [10318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11299), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [10330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4814), + [10333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4768), + [10336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7750), + [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [10343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4921), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8098), + [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), + [10350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8022), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [10354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11284), + [10357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11284), + [10360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(9351), + [10363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), + [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11340), + [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [10369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8261), + [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), + [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10670), + [10376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7778), + [10379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4917), + [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), + [10384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [10387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [10389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7162), + [10391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(4768), + [10394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7750), + [10397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5257), + [10400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7742), + [10403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5046), + [10406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7761), + [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), + [10411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4333), + [10414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), + [10416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11340), + [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), + [10423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4333), + [10426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), + [10428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11340), + [10431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), + [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [10435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3, 0, 0), + [10437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3, 0, 0), + [10439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [10441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [10451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [10473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4, 0, 0), + [10475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4, 0, 0), + [10477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 127), + [10479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 127), + [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [10485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5, 0, 0), + [10487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5, 0, 0), + [10489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 183), + [10491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 183), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8103), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [10513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9292), + [10516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_fold_operator, 3, 0, 136), + [10518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold_operator, 3, 0, 136), + [10520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5257), + [10523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7742), + [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [10530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5046), + [10533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7761), + [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), + [10538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_expression, 2, 0, 0), + [10540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), + [10542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2, 0, 0), + [10544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2, 0, 0), + [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8818), + [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [10564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), + [10566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), + [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [10574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4915), + [10577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9308), + [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11284), + [10584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11284), + [10586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(9141), + [10589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(9141), + [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [10594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11339), + [10597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11339), + [10600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4924), + [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [10605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4899), + [10608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(6701), + [10611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7780), + [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), + [10616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [10618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(6602), + [10621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7771), + [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), + [10626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(4768), + [10629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8150), + [10631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4913), + [10634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5677), + [10637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7756), + [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [10642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9301), + [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6474), + [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8102), + [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8711), + [10655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [10657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7473), + [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [10663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [10667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [10671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [10675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [10681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8986), + [10683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [10685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), + [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [10697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [10703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [10707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8993), + [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8109), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [10715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), + [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [10727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [10729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [10731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [10737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [10739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [10741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [10747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [10751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [10753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [10755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [10757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [10761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [10789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [10791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [10795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [10803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8238), + [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8122), + [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11639), + [10809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [10811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5677), + [10814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7756), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9351), + [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [10821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8549), + [10824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7745), + [10827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [10831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5257), + [10834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [10836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8985), + [10838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), + [10840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), + [10852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(301), + [10855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, 0, 114), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), + [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8549), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7745), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [10865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4735), + [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [10872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4958), + [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [10876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5046), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [10881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9000), + [10883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [10887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9396), + [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [10894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), + [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11645), + [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [10904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9304), + [10907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [10911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10820), + [10917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), + [10923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), + [10926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), + [10928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), + [10930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), + [10933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), + [10935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [10941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [10943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [10949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [10953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [10959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [10961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8341), + [10969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [10973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10734), + [10979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7748), + [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [10986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), + [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8700), + [10990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), + [10992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7123), + [10994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8325), + [10996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7392), + [10998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7393), + [11000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7394), + [11002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7470), + [11004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7625), + [11006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11428), + [11008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8682), + [11012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [11014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7408), + [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [11018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7597), + [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8691), + [11022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7606), + [11024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7744), + [11026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8256), + [11028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7359), + [11030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7362), + [11032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7200), + [11034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7483), + [11036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8763), + [11040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [11042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7403), + [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [11046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6705), + [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8745), + [11050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [11052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7489), + [11054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5278), + [11057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8676), + [11061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7474), + [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [11065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), + [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10860), + [11071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8686), + [11075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [11077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7430), + [11079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8675), + [11083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [11085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7451), + [11087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8687), + [11091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [11093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7444), + [11095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8702), + [11099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [11101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7496), + [11103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8738), + [11107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7407), + [11109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8707), + [11113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7401), + [11115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [11117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7415), + [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), + [11121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7787), + [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [11125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), + [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11335), + [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7766), + [11133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7766), + [11135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), + [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), + [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), + [11147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7760), + [11149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7764), + [11151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), + [11154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5048), + [11157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4919), + [11160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11098), + [11163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9416), + [11166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10684), + [11169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11094), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), + [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7739), + [11180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), + [11186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [11190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), + [11192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), + [11194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4722), + [11197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5072), + [11200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4756), + [11203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11125), + [11206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(9297), + [11209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11127), + [11212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11286), + [11215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6356), + [11218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5677), + [11221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [11223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [11229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [11231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [11233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [11237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [11241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [11243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [11245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), + [11253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), + [11255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(305), + [11258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5108), + [11261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9650), + [11264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10612), + [11267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), SHIFT(299), + [11270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(319), + [11273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(298), + [11276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 126), SHIFT(299), + [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), + [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), + [11283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7751), + [11285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7752), + [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [11293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(301), + [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), + [11300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7781), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [11309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [11311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [11313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [11315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8229), + [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8229), + [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [11323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8181), + [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), + [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [11331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8236), + [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), + [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), + [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11102), + [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), + [11341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [11343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [11345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [11347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [11349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [11355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [11357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [11359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [11365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [11369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [11371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [11373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [11375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [11377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11153), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11163), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11166), + [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11171), + [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11200), + [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11209), + [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11249), + [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11254), + [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11733), + [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11256), + [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11270), + [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [11419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [11421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 126), SHIFT(305), + [11424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), SHIFT(305), + [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [11429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(303), + [11432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [11444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [11446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [11452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [11454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [11456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [11460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [11462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [11468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [11470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [11476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [11478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [11484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [11486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [11488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [11492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [11496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [11500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [11502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [11510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), SHIFT(299), + [11513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(299), + [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [11522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 126), SHIFT(307), + [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8040), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8420), + [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), + [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9462), + [11549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 61), + [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [11553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), + [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [11561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [11563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [11569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [11571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [11573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [11577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [11581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [11585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [11587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [11595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), SHIFT(307), + [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), + [11602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7832), + [11604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8084), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [11610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [11612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [11614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [11618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [11624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [11626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [11634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 4, 0, 145), + [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), + [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), + [11640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5562), + [11643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9541), + [11646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10604), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8779), + [11653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(307), + [11656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), + [11658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), + [11660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), SHIFT(302), + [11663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(305), + [11666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), SHIFT(307), + [11669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), + [11673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), + [11675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [11679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5688), + [11682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9492), + [11685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10607), + [11688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), + [11690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [11692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [11696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [11698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [11700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [11704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [11708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [11716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [11718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), + [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [11724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture, 2, 0, 0), + [11726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture, 2, 0, 0), + [11729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [11731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [11733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5278), + [11736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7769), + [11739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5278), + [11742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7769), + [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), + [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), + [11749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8004), + [11751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4925), + [11754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), + [11756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [11758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6959), + [11760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5278), + [11763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7741), + [11766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4939), + [11769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6178), + [11772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6187), + [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), + [11777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), + [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), + [11783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8071), + [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), + [11787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6178), + [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), + [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [11795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), + [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11417), + [11799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5278), + [11802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7741), + [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), + [11809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8149), + [11811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8076), + [11813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [11815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6939), + [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8184), + [11825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8184), + [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), + [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8174), + [11831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8174), + [11833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4924), + [11836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8218), + [11842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8218), + [11844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [11846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7082), + [11848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [11850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7104), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), + [11856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8575), + [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8340), + [11864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8340), + [11866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), + [11868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8573), + [11870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8574), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8278), + [11876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8278), + [11878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8267), + [11886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8267), + [11888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), + [11890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), + [11892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8249), + [11900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8249), + [11902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [11904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8289), + [11910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8289), + [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8365), + [11916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8365), + [11918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6387), + [11921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6387), + [11924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6388), + [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [11929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), + [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), + [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), + [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8269), + [11937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8269), + [11939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), + [11941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), + [11943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), + [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), + [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), + [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8257), + [11951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8257), + [11953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), + [11955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), + [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [11959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4915), + [11962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4899), + [11965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(6701), + [11968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7780), + [11971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(6602), + [11974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7771), + [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), + [11979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7763), + [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), + [11983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7762), + [11985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8770), + [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7992), + [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), + [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), + [11993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8490), + [11995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9235), + [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), + [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8474), + [12001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8474), + [12003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [12007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [12009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 150), + [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [12013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 150), + [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [12019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [12023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [12027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [12037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [12039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [12041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [12043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8106), + [12047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(6602), + [12050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7771), + [12053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(6701), + [12056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7780), + [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), + [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11429), + [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), + [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8448), + [12071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8448), + [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), + [12075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), + [12077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), + [12079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), + [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [12083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), + [12085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11284), + [12088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11284), + [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8468), + [12093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [12097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [12103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [12107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [12111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11098), + [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), + [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), + [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), + [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11285), + [12139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7535), + [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [12147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9306), + [12150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7138), + [12152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(6707), + [12155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7139), + [12157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11417), + [12160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8542), + [12166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8542), + [12168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4333), + [12171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6417), + [12174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7535), + [12177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11284), + [12180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11284), + [12183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9351), + [12186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11285), + [12189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7535), + [12192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4333), + [12195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11340), + [12198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6707), + [12201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11417), + [12204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9298), + [12207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7129), + [12209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(6707), + [12212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6560), + [12214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11417), + [12217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7128), + [12219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6574), + [12222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6601), + [12225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [12229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [12235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [12239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [12243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), + [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8628), + [12265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8628), + [12267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(6701), + [12270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(6602), + [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [12287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [12289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [12297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 4, 0, 185), + [12299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 4, 0, 185), + [12301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), + [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9965), + [12305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, 0, 0), + [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7484), + [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [12317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6699), + [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [12324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [12328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [12334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [12338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [12342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [12346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), + [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [12360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), + [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), + [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [12366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [12370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [12376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [12380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [12384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), + [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), + [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [12404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 87), + [12406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11284), + [12409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11284), + [12412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(9351), + [12415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8261), + [12418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7778), + [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), + [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), + [12431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), + [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), + [12443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 120), + [12445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, 0, 195), + [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), + [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), + [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), + [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), + [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), + [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), + [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [12481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [12487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), + [12489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), + [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), + [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), + [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8863), + [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), + [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), + [12525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 148), SHIFT(1496), + [12528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 148), + [12530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT(1496), + [12533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), + [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), + [12557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 199), + [12559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 1, 215), + [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [12563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [12567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [12573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [12577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [12579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [12581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [12597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 196), + [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [12603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, 0, 170), + [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [12607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 2, 0, 0), + [12609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [12613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [12619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [12623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [12627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [12655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, 0, 206), + [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8635), + [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11297), + [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [12665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 3, 0, 87), + [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [12671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8648), + [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11676), + [12679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [12681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 149), + [12683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8615), + [12685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10974), + [12687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8650), + [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11301), + [12691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 5, 0, 191), + [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8651), + [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11174), + [12699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), + [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8653), + [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11180), + [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8654), + [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10789), + [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [12711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 158), + [12713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 159), + [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [12717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 1, 0), + [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [12721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [12723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [12727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 197), + [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [12735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), + [12737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [12753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 5, 0, 216), + [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [12757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [12759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8299), + [12761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7436), + [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [12769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [12771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [12773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [12775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [12777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [12779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), + [12781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [12783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [12785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [12787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8320), + [12789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7479), + [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [12793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [12795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8309), + [12797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7499), + [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [12801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [12803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8304), + [12805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7404), + [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), + [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9707), + [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [12819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [12821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [12823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [12827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [12831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [12833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [12835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [12837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [12839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8328), + [12841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7417), + [12843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [12845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [12851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [12855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(9141), + [12858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(9141), + [12861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [12863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), + [12867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [12869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [12871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [12873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [12875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8332), + [12877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7400), + [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9840), + [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [12883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9575), + [12885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_left_fold, 3, 0, 58), + [12887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), + [12889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [12891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [12893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [12895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [12897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8300), + [12899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7431), + [12901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym_argument_list, 2, 0, 0), + [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), + [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9783), + [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [12952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_expression_lhs, 3, 0, 58), + [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8116), + [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), + [12964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold, 3, 0, 88), + [12966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7511), + [12969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11128), + [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11462), + [12976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11462), + [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9839), + [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9841), + [12986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [12988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8275), + [12990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7421), + [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), + [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), + [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), + [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), + [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), + [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [13036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [13038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8248), + [13040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7413), + [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9966), + [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [13050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [13052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8290), + [13054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7422), + [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), + [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [13074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 4, 0, 198), + [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), + [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), + [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [13100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [13102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7460), + [13104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [13106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [13108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11284), + [13111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11284), + [13114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(9351), + [13117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [13119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [13121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), + [13123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7211), + [13125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), + [13127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7589), + [13129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), + [13131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8780), + [13133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [13135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [13137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [13139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture, 1, 0, 0), + [13141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture, 1, 0, 0), + [13144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [13146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8549), + [13149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7745), + [13152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8710), + [13156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [13158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8261), + [13161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7778), + [13164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8867), + [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8705), + [13168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), + [13170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8798), + [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8695), + [13174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7700), + [13176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9161), + [13178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8317), + [13180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7381), + [13182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7382), + [13184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7383), + [13186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7426), + [13188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7748), + [13191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(9141), + [13194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(9141), + [13197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7781), + [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), + [13202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8549), + [13205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7745), + [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8110), + [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8144), + [13212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7686), + [13214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [13216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11146), + [13218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(7671), + [13221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(7676), + [13224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(7697), + [13227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(7691), + [13230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(7694), + [13233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(7690), + [13236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7748), + [13239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7781), + [13242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11284), + [13245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11284), + [13248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(9351), + [13251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8261), + [13254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7778), + [13257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 46), SHIFT(4065), + [13260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8967), + [13262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8970), + [13264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8965), + [13266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [13268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [13270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), + [13272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9478), + [13274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 80), SHIFT(7699), + [13277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [13279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [13281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), + [13283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9510), + [13285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), SHIFT(4065), + [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [13292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), + [13294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9419), + [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [13300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), + [13302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9425), + [13304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), SHIFT(4065), + [13307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [13309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [13311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), + [13313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9607), + [13315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), + [13317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [13319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [13321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [13323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9534), + [13325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 19), SHIFT(4065), + [13328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 21), SHIFT(4065), + [13331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 36), SHIFT(4065), + [13334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 21), SHIFT(7687), + [13337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 36), SHIFT(7689), + [13340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [13342] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(4065), + [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [13350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6650), + [13352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9482), + [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [13356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [13358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6647), + [13360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9640), + [13362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 46), SHIFT(7668), + [13365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 80), SHIFT(4065), + [13368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8977), + [13370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7789), + [13372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8976), + [13374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(9141), + [13377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(9141), + [13380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 2), + [13382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 2), + [13384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 2), + [13386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 2), + [13388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 21), + [13390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 21), + [13392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 21), + [13394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 21), + [13396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8549), + [13399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7745), + [13402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [13404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8424), + [13406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9560), + [13408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [13412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(7682), + [13415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8276), + [13417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8685), + [13419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8597), + [13421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8295), + [13423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [13425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8762), + [13427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8697), + [13429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9502), + [13431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9391), + [13433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8431), + [13435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [13437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [13439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [13441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), + [13443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [13445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [13447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [13449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8680), + [13451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [13453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6462), + [13455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [13457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6282), + [13459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), + [13461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), + [13463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4936), + [13465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9398), + [13467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [13469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), + [13471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [13473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8746), + [13475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [13477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [13479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [13481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8049), + [13483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9646), + [13485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7748), + [13488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), + [13490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9207), + [13492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8020), + [13494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [13496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11591), + [13498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), + [13500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9270), + [13502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [13504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8765), + [13506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), + [13508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), + [13510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9171), + [13512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8569), + [13514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8719), + [13516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), + [13518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [13520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [13522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6190), + [13524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), + [13526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), + [13528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8425), + [13530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8034), + [13532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [13534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6677), + [13536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7781), + [13539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8639), + [13541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9267), + [13543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9155), + [13545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10754), + [13547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8445), + [13549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7998), + [13551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [13553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9680), + [13555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [13557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11181), + [13559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), + [13561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9246), + [13563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), + [13565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [13567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [13569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [13571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10692), + [13573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), + [13575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9227), + [13577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), + [13579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [13581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [13583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [13585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), + [13587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9261), + [13589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [13591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11558), + [13593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), + [13595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9263), + [13597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), + [13599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [13601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), + [13603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9163), + [13605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [13607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10818), + [13609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7921), + [13611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9196), + [13613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), + [13615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [13617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7924), + [13619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9216), + [13621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), + [13623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7925), + [13625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9228), + [13627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7926), + [13629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9230), + [13631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [13633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), + [13635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7928), + [13637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9231), + [13639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), + [13643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9190), + [13645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [13647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7931), + [13649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9241), + [13651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [13653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [13655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10968), + [13657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7934), + [13659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9232), + [13661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), + [13663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [13665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7937), + [13667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9223), + [13669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [13671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [13673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), + [13675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7942), + [13677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9166), + [13679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7943), + [13681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [13683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [13685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [13687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [13689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7947), + [13691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9203), + [13693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), + [13695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [13697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [13699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7949), + [13701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9245), + [13703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [13705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [13707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [13709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [13711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7954), + [13713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9170), + [13715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9297), + [13718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [13720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7956), + [13722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9206), + [13724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [13726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [13728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [13730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [13732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [13734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [13736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7963), + [13738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9247), + [13740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), + [13742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7965), + [13744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9179), + [13746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), + [13748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9180), + [13750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [13752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [13754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), + [13756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9249), + [13758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7972), + [13760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [13762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [13764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7975), + [13766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [13768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7976), + [13770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9259), + [13772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [13774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [13776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [13778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [13780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9032), + [13782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [13784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [13786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [13788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8806), + [13790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9222), + [13792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9351), + [13795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [13797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [13799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [13801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [13803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [13805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [13807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10262), + [13809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8241), + [13811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9220), + [13813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [13815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [13817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [13819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10349), + [13821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9566), + [13823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), + [13825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9264), + [13827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [13829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [13831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [13833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10324), + [13835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9374), + [13837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9208), + [13839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [13841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8956), + [13843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [13845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8310), + [13847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9202), + [13849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [13851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), + [13853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [13855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [13857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8308), + [13859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [13861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8274), + [13863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), + [13865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), + [13867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8255), + [13869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [13871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [13873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [13875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [13877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [13879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(8261), + [13882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7778), + [13885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [13887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(8261), + [13890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7778), + [13893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8599), + [13895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10184), + [13897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10562), + [13899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [13901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), + [13903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [13905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [13907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [13909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8226), + [13911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8254), + [13913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8160), + [13915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), + [13917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8167), + [13919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), + [13921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8178), + [13923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8187), + [13925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8209), + [13927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8224), + [13929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8237), + [13931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8191), + [13933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8191), + [13935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8192), + [13937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [13939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [13941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [13943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [13945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [13947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [13949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9126), + [13951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10491), + [13953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [13955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [13957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [13959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), + [13961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [13963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [13965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [13967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [13969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [13971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [13973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [13975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [13977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [13979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [13981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8768), + [13983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8947), + [13985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [13987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10370), + [13989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [13991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [13993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [13995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10417), + [13997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(8261), + [14000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [14002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [14004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8074), + [14006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8306), + [14008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), + [14010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10311), + [14012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8190), + [14014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8190), + [14016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), + [14018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10015), + [14020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [14022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [14024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [14026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [14028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7083), + [14030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6526), + [14032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7141), + [14034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8211), + [14036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), + [14038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [14040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), + [14042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [14044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [14046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), + [14048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11342), + [14051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8388), + [14053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9058), + [14055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [14057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [14059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10901), + [14061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [14063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8107), + [14065] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [14067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11204), + [14069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), + [14071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6763), + [14073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7603), + [14075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7692), + [14077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8231), + [14079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [14081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [14083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10213), + [14085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8136), + [14087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8177), + [14089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10472), + [14091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), + [14093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8205), + [14095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8324), + [14097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9833), + [14099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8315), + [14101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8288), + [14103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 8), + [14105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 8), + [14107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8321), + [14109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8303), + [14111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 58), + [14113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 58), + [14115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8206), + [14117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8273), + [14119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), + [14121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8212), + [14123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8326), + [14125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8287), + [14127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8185), + [14129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8348), + [14131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8347), + [14133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8342), + [14135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8193), + [14137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8286), + [14139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), + [14141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8391), + [14143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9011), + [14145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8291), + [14147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8293), + [14149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8302), + [14151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8195), + [14153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), + [14155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8221), + [14157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), + [14159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), + [14161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [14163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [14165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8272), + [14167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8318), + [14169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [14171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [14173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [14175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [14177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8330), + [14179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8357), + [14181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8333), + [14183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), + [14185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [14187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [14189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8355), + [14191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8327), + [14193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8319), + [14195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8331), + [14197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8305), + [14199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 4), + [14201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 4), + [14203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [14205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8375), + [14207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9024), + [14209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8232), + [14211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8188), + [14213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8322), + [14215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8329), + [14217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8416), + [14219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9017), + [14221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [14223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [14225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [14227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [14229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8323), + [14231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8246), + [14233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), + [14235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8371), + [14237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9022), + [14239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), + [14241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8356), + [14243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 24), + [14245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [14247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), + [14249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [14251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8152), + [14253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8200), + [14255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8217), + [14257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8156), + [14259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8227), + [14261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8234), + [14263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8151), + [14265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8168), + [14267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8216), + [14269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8203), + [14271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8202), + [14273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8464), + [14275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [14277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 62), + [14279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8465), + [14281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8454), + [14283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 1, 0, 24), + [14285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8505), + [14287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 1, 0, 0), + [14289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8897), + [14291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [14293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8475), + [14295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8466), + [14297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8507), + [14299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8486), + [14301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8498), + [14303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8453), + [14305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8456), + [14307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8459), + [14309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [14311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [14313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [14315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8452), + [14317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [14319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [14321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [14323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [14325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8489), + [14327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8483), + [14329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [14331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8613), + [14333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8503), + [14335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [14337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8488), + [14339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8506), + [14341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8451), + [14343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8478), + [14345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8469), + [14347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8484), + [14349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [14351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [14353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8493), + [14355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), + [14357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8500), + [14359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8479), + [14361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8368), + [14363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8296), + [14365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8461), + [14367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8463), + [14369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8888), + [14371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8893), + [14373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8492), + [14375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [14377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [14379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8637), + [14381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 62), + [14383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8504), + [14385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [14387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [14389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [14391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9057), + [14393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [14395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9078), + [14397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [14399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9291), + [14401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8377), + [14403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9046), + [14405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [14407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), + [14409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9039), + [14411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [14413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), + [14415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9060), + [14417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9087), + [14419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(8549), + [14422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7748), + [14425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(8549), + [14428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7748), + [14431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [14433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), + [14435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(11125), + [14438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), + [14440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(11286), + [14443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9016), + [14445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [14447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), + [14449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), + [14451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [14453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [14455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [14457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [14459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(8549), + [14462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9156), + [14464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 0), + [14466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8460), + [14469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9457), + [14472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10602), + [14475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8460), + [14477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9457), + [14479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10602), + [14481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 5), + [14483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8850), + [14485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), + [14487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8476), + [14489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8605), + [14491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 124), + [14493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 124), + [14495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9049), + [14497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8728), + [14499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7745), + [14502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7745), + [14505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 42), + [14507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 3, 1, 42), + [14509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 27), + [14511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 27), + [14513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9641), + [14515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8684), + [14517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 5), + [14519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 2, 1, 5), + [14521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_declarator, 2, 1, 0), + [14523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_declarator, 2, 1, 0), + [14525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9056), + [14527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8727), + [14529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9431), + [14531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8751), + [14533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8619), + [14535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9040), + [14537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8740), + [14539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8660), + [14541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9609), + [14543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8681), + [14545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8649), + [14547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 90), + [14549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 4, 1, 90), + [14551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9069), + [14553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8706), + [14555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9561), + [14557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8731), + [14559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 180), + [14561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 5, 1, 180), + [14563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 27), + [14565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 27), + [14567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9036), + [14569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8741), + [14571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9025), + [14573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8721), + [14575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [14577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [14579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), + [14581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 1, 25), + [14583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 1, 25), + [14585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 5), + [14587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 5), + [14589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [14591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9549), + [14593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8747), + [14595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9051), + [14597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8748), + [14599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), + [14601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), + [14603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), + [14605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), + [14607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 182), + [14609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 182), + [14611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9595), + [14613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8671), + [14615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [14617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [14619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), + [14621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9648), + [14623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8692), + [14625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7781), + [14628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 42), + [14630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 3, 1, 42), + [14632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9030), + [14634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9195), + [14636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9387), + [14638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8204), + [14640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10738), + [14642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 5), + [14644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 2, 1, 5), + [14646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_field_declarator, 2, 1, 0), + [14648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_field_declarator, 2, 1, 0), + [14650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 180), + [14652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 5, 1, 180), + [14654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 84), + [14656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 90), + [14658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 4, 1, 90), + [14660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [14662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [14664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8754), + [14666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [14668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9212), + [14670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 10), + [14672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9434), + [14674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [14676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8400), + [14678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9854), + [14680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9634), + [14682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [14684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10039), + [14686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9635), + [14688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [14690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9336), + [14692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [14694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9289), + [14696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [14698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9989), + [14700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9542), + [14702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [14704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [14706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), + [14708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9472), + [14710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [14712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9290), + [14714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9562), + [14716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8336), + [14718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9372), + [14720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [14722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9287), + [14724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [14726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9382), + [14728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [14730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10052), + [14732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9436), + [14734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 71), + [14736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [14738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7028), + [14740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9369), + [14742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9592), + [14744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [14746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [14748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9359), + [14750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [14752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9962), + [14754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9602), + [14756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), + [14758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [14760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), + [14762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9404), + [14764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [14766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9415), + [14768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [14770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [14772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9273), + [14774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [14776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), + [14778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9381), + [14780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7416), + [14782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9303), + [14784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), + [14786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [14788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10024), + [14790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9519), + [14792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [14794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9853), + [14796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9422), + [14798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9551), + [14800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [14802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [14804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [14806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), + [14808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6840), + [14810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [14812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9385), + [14814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9531), + [14816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7781), + [14819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9625), + [14821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [14823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [14825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9311), + [14827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), + [14829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9279), + [14831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9299), + [14833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [14835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [14837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8270), + [14839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [14841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9286), + [14843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), + [14845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9961), + [14847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8158), + [14849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11661), + [14851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [14853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8973), + [14855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [14857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 106), + [14859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [14861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 106), + [14863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [14865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [14867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [14869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [14871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), + [14873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [14875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [14877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 179), + [14879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [14881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [14883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [14885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [14887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10729), + [14889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [14891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [14893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), + [14895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), + [14897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [14899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [14901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [14903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), + [14905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [14907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [14909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [14911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [14913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [14915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_declarator_repeat1, 2, 0, 0), + [14917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8956), + [14920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 124), + [14922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 124), + [14924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 27), + [14926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 27), + [14928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 27), + [14930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 27), + [14932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 182), + [14934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 182), + [14936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [14938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [14940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [14942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [14944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 1, 25), + [14946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 1, 25), + [14948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 3, 0, 0), + [14950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 84), + [14952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9643), + [14954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8176), + [14956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11693), + [14958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 84), + [14960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9474), + [14962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8173), + [14964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11345), + [14966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9412), + [14968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10558), + [14970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10122), + [14972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 5, 0, 0), + [14974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 10), + [14976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 10), + [14978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 84), + [14980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 10), + [14982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9252), + [14984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10004), + [14986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9257), + [14988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11680), + [14990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 6, 0, 0), + [14992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9856), + [14994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9187), + [14996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9175), + [14998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10736), + [15000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9961), + [15003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8199), + [15006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10791), + [15009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10565), + [15012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [15014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 4, 0, 0), + [15016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9992), + [15018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8344), + [15020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 27), + [15022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 1, 0, 27), + [15024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8968), + [15026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [15028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_specifier, 1, 0, 0), + [15030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8978), + [15032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 5), + [15034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 5), + [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8979), + [15038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [15040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), + [15042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11236), + [15044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8948), + [15046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8952), + [15048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), + [15050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11259), + [15052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, 0, 15), + [15054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, 0, 15), + [15056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10154), + [15058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9370), + [15060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11365), + [15062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9682), + [15064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9964), + [15066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9598), + [15068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10634), + [15070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9546), + [15072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9476), + [15074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10050), + [15076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10032), + [15078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10881), + [15080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), + [15082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10037), + [15084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10869), + [15086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9616), + [15088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9931), + [15090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9938), + [15092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11393), + [15094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, 0, 31), + [15096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, 0, 31), + [15098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9632), + [15100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(9030), + [15103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [15105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [15107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 62), + [15109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [15111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10500), + [15113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [15115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [15117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10348), + [15119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [15121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast, 3, 0, 63), + [15123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [15125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11098), + [15128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11098), + [15131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10314), + [15133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [15135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [15137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 62), + [15139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8847), + [15141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), + [15143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), + [15145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [15147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [15149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10303), + [15151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(8589), + [15154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [15156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [15158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8855), + [15160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [15162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [15164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10447), + [15166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [15168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [15170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [15172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8594), + [15174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 24), + [15176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10488), + [15178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [15180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [15182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [15184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [15186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [15188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [15190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), + [15192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [15194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [15196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [15198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 24), + [15200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [15202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [15204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [15206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [15208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8568), + [15210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9961), + [15213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [15215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [15217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [15219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [15221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [15223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [15225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8571), + [15227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [15229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1731), + [15232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), + [15234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(11600), + [15237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10117), + [15239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 61), + [15241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [15243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9164), + [15245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [15247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10398), + [15249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10480), + [15251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9815), + [15253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [15255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [15257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [15259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [15261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10200), + [15263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10325), + [15265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9870), + [15267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8540), + [15269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8603), + [15271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9318), + [15273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8645), + [15275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [15277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [15279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [15281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10425), + [15283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8633), + [15285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10402), + [15287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [15289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8644), + [15291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8655), + [15293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8610), + [15295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8623), + [15297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8652), + [15299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8657), + [15301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8608), + [15303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8611), + [15305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8614), + [15307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8616), + [15309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8620), + [15311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8621), + [15313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8622), + [15315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8624), + [15317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8663), + [15319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 71), + [15321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [15323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [15325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11600), + [15327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [15329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), + [15331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9318), + [15334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10398), + [15336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11608), + [15338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [15340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [15342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [15344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [15346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [15348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [15350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 133), + [15352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 133), + [15354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [15356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [15358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9417), + [15360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 85), + [15362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 85), + [15364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 134), + [15366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 134), + [15368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [15370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 84), + [15372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 84), + [15374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [15376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [15378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 186), + [15380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 186), + [15382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [15384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9240), + [15386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [15388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [15390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [15392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [15394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [15396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 10), + [15398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 10), + [15400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [15402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [15404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 0), + [15406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [15408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [15410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 84), + [15412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 84), + [15414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [15416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [15418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [15420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [15422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 1, 0, 0), + [15424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 1, 0, 0), + [15426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [15428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [15430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [15432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [15434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9294), + [15436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9454), + [15438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [15440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [15442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [15444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [15446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [15448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [15450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [15452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [15454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [15456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [15458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [15460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [15462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8417), + [15464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [15466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8859), + [15468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), + [15470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [15472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [15474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [15476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [15478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [15480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [15482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [15484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [15486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [15488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [15490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [15492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [15494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [15496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [15498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [15500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [15502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [15504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [15506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [15508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [15510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [15512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [15514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [15516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11300), + [15518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 10), + [15520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 10), + [15522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), + [15524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9198), + [15526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [15528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [15530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9754), + [15532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [15534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [15536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [15538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [15540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8679), + [15542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [15544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [15546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [15548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 0), + [15550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [15552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10407), + [15554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [15556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [15558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [15560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [15562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), + [15564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10530), + [15566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9330), + [15568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10914), + [15570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [15572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [15574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 194), SHIFT_REPEAT(8468), + [15577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 194), + [15579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 194), + [15581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [15583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [15585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10256), + [15587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10616), + [15589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10339), + [15591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10479), + [15593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [15595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [15597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 122), SHIFT_REPEAT(8344), + [15600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 122), + [15602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 122), + [15604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10410), + [15606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [15608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 144), + [15610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11212), + [15612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10301), + [15614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8258), + [15616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [15618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [15620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10618), + [15622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [15624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [15626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [15628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [15630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_name, 2, 0, 0), + [15632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10985), + [15634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), + [15636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), + [15638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8350), + [15640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_name_repeat1, 2, 0, 0), + [15642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_name_repeat1, 2, 0, 0), SHIFT_REPEAT(10985), + [15645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [15647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [15649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), + [15651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10703), + [15653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [15655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [15657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [15659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10588), + [15661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), + [15663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9376), + [15665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [15667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), + [15669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [15671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [15673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [15675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9386), + [15678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [15680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [15682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [15684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [15686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8537), + [15688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [15690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [15692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10438), + [15694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9852), + [15696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [15698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10368), + [15700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 93), + [15702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 2, 0, 93), + [15704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), + [15706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9851), + [15708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [15710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [15712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [15714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10373), + [15716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10548), + [15718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [15720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10462), + [15722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), + [15724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [15726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [15728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), + [15730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), + [15732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [15734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [15736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [15738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [15740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), + [15742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [15744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [15746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8577), + [15748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10267), + [15750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [15752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [15754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [15756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [15758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [15760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_name, 1, 0, 0), + [15762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [15764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10327), + [15766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [15768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [15770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [15772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9439), + [15774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9439), + [15776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10432), + [15778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [15780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [15782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), + [15784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9564), + [15786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [15788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [15790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [15792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [15794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 229), SHIFT_REPEAT(8634), + [15797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 229), + [15799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [15801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9601), + [15803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9601), + [15805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [15807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9620), + [15809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9620), + [15811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 5), + [15813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 5), + [15815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_operator_cast_identifier, 2, 0, 34), + [15817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [15819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 212), + [15821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 212), + [15823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), + [15825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), + [15827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [15829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9412), + [15831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [15833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11684), + [15835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 217), SHIFT_REPEAT(9059), + [15838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 217), + [15840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [15842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), + [15844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8525), + [15846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), + [15848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9473), + [15850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9473), + [15852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8672), + [15854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9500), + [15856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9500), + [15858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), + [15860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), + [15862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9497), + [15864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9497), + [15866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10242), + [15868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10222), + [15870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10156), + [15872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 1, 0, 0), + [15874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), + [15876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [15878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), + [15880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [15882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), + [15884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9547), + [15886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9547), + [15888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), + [15890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9467), + [15892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9467), + [15894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [15896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), + [15898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), + [15900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [15902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9559), + [15904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9559), + [15906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 1, 0, 20), + [15908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9125), + [15910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [15912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10036), + [15914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10639), + [15916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9015), + [15918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 164), + [15920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10021), + [15922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8002), + [15924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 3, 0, 0), + [15926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), + [15928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), + [15930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [15932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11079), + [15934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), + [15936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), + [15938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9539), + [15940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9539), + [15942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), + [15944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), + [15946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [15948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9557), + [15950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9557), + [15952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), + [15954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6139), + [15956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), + [15958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [15960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8693), + [15962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [15964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [15966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8545), + [15968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [15970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9582), + [15972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9582), + [15974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [15976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10899), + [15978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [15980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11675), + [15982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), + [15984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9540), + [15986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9540), + [15988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [15990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10241), + [15992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10446), + [15994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8634), + [15996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 218), + [15998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7171), + [16000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), + [16002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9059), + [16004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 164), + [16006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [16008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [16010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10694), + [16012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [16014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [16016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9762), + [16018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 4, 0, 0), + [16020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), + [16022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [16024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), + [16026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [16028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), + [16030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9485), + [16032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9485), + [16034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [16036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6004), + [16038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9111), + [16040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), + [16042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [16044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [16046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [16048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [16050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), + [16052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9638), + [16054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9638), + [16056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), + [16058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9568), + [16060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9568), + [16062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [16064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [16066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [16068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [16070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [16072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [16074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), + [16076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9564), + [16079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), + [16081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10552), + [16083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10323), + [16085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8207), + [16087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [16089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [16091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9943), + [16093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [16095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [16097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10678), + [16099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [16101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [16103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 217), SHIFT_REPEAT(9015), + [16106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 217), + [16108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [16110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), + [16112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9498), + [16114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9498), + [16116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [16118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [16120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10907), + [16122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10626), + [16124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10449), + [16126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [16128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [16130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [16132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10773), + [16134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9629), + [16136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9629), + [16138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 225), + [16140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [16142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9601), + [16145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9601), + [16148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9716), + [16150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 2, 0, 0), + [16152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), + [16154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9536), + [16156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9536), + [16158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 202), + [16160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8538), + [16162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [16164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [16166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [16168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9626), + [16170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9626), + [16172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9128), + [16174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [16176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [16178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11723), + [16180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [16182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [16184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10906), + [16186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7133), + [16188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [16190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [16192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [16194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8864), + [16196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10315), + [16198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10333), + [16200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11225), + [16202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 202), + [16204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [16206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9094), + [16208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [16210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9447), + [16212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9447), + [16214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [16216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 97), + [16218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [16220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9954), + [16222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 5, 0, 0), + [16224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10292), + [16226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10224), + [16228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [16230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), + [16232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [16234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [16236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), + [16238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9489), + [16240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9489), + [16242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [16244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [16246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8361), + [16248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [16250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [16252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9558), + [16254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9558), + [16256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 6, 0, 210), + [16258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [16260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9624), + [16262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9624), + [16264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(10258), + [16267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), + [16269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [16271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 122), SHIFT_REPEAT(6383), + [16274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 122), + [16276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [16278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), + [16280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), + [16282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [16284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 101), + [16286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [16288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [16290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8981), + [16292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [16294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9767), + [16296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [16298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10437), + [16300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [16302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), + [16304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8866), + [16306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [16308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [16310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [16312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [16314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), + [16316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [16318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [16320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [16322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [16324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), + [16326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [16328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [16330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), + [16332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [16334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [16336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [16338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [16340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [16342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [16344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 224), + [16346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [16348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 164), + [16350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10284), + [16352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [16354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [16356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [16358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), + [16360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [16362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [16364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8865), + [16366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8872), + [16368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8874), + [16370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8875), + [16372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [16374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10952), + [16376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 226), + [16378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [16380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [16382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [16384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [16386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [16388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [16390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [16392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [16394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [16396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [16398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), + [16400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [16402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10538), + [16404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10581), + [16406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, 0, 106), + [16408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [16410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [16412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [16414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [16416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [16418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8393), + [16420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [16422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [16424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10586), + [16426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, 0, 0), + [16428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [16430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [16432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [16434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [16436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [16438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10622), + [16440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [16442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10458), + [16444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 3, 0, 0), + [16446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [16448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [16450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [16452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [16454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [16456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [16458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [16460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [16462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [16464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10235), + [16466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10540), + [16468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), + [16470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10285), + [16472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4857), + [16475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), + [16477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [16479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [16481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [16483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [16485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 224), + [16487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 218), + [16489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 230), + [16491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [16493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [16495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [16497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [16499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), + [16501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [16503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [16505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [16507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [16509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [16511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [16513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [16515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8971), + [16517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [16519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [16521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [16523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [16525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), + [16527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [16529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), + [16531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), + [16533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [16535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8495), + [16537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [16539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [16541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [16543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [16545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [16547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), + [16549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [16551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [16553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 232), SHIFT_REPEAT(10952), + [16556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 232), + [16558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), + [16560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [16562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [16564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), + [16566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [16568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [16570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [16572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [16574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), + [16576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [16578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10493), + [16580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [16582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [16584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9654), + [16586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8112), + [16588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), + [16590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [16592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [16594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 233), + [16596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 211), + [16598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 233), + [16600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [16602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [16604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [16606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [16608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [16610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [16612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8230), + [16614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11487), + [16616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11633), + [16618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10640), + [16620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11080), + [16622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11136), + [16624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11138), + [16626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [16628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [16630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [16632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [16634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [16636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [16638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [16640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11068), + [16642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 2, 0, 0), + [16644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9414), + [16646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [16648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [16650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [16652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [16654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [16656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [16658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [16660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10310), + [16662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [16664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11027), + [16666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [16668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [16670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10258), + [16672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10223), + [16674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [16676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [16678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [16680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [16682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), + [16684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [16686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [16688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [16690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [16692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [16694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10554), + [16696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10338), + [16698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), + [16700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [16702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [16704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [16706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8586), + [16708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [16710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [16712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [16714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [16716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), + [16718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), + [16720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [16722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [16724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [16726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [16728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [16730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [16732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [16734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [16736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8932), + [16738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), + [16740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), + [16742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [16744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [16746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [16748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), + [16750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), + [16752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), + [16754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), + [16756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9429), + [16758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [16760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [16762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [16764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8226), + [16767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [16769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [16771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [16773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [16775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [16777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [16779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8137), + [16781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [16783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [16785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [16787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [16789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [16791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 6, 0, 0), + [16793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10576), + [16795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 4, 0, 0), + [16797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8349), + [16799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [16801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [16803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10509), + [16805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1299), + [16808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9458), + [16810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [16812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 164), + [16814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8908), + [16816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [16818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11263), + [16820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11266), + [16822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11269), + [16824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), + [16826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [16828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10502), + [16830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 2, 0, 0), + [16832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), + [16834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [16836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9859), + [16838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1236), + [16841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [16843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [16845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), + [16847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), + [16849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), + [16851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [16853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10356), + [16855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10433), + [16857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10221), + [16859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9610), + [16861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [16863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [16865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), + [16867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [16869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11160), + [16871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11161), + [16873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11162), + [16875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10206), + [16877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [16879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9667), + [16881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [16883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [16885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [16887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), + [16889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [16891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), + [16893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [16895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, 0, 71), + [16897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [16899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [16901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [16903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [16905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [16907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [16909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [16911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4966), + [16914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), + [16916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [16918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9571), + [16920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9984), + [16922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9990), + [16924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [16926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), + [16928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10380), + [16930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10097), + [16932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10153), + [16934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10815), + [16936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10823), + [16938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10824), + [16940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9671), + [16942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [16944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [16946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10578), + [16948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), + [16950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [16952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(9767), + [16955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), + [16957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [16959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(8002), + [16962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(10437), + [16965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat2, 2, 0, 0), + [16967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9520), + [16969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10112), + [16971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10440), + [16973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [16975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [16977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11072), + [16979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11073), + [16981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11074), + [16983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [16985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8589), + [16987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [16989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9545), + [16991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [16993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 3, 0, 0), + [16995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [16997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10719), + [16999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10720), + [17001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10721), + [17003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), + [17005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [17007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9623), + [17009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9494), + [17011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [17013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), + [17015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [17017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [17019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [17021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [17023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [17025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [17027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9493), + [17029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [17031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9521), + [17033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9486), + [17035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8006), + [17037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9446), + [17039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9464), + [17041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [17043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11534), + [17045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [17047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [17049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 24), + [17051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [17053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [17055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [17057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), + [17059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [17061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [17063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [17065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [17067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [17069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [17071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [17073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [17075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [17077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [17079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [17081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [17083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [17085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [17087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [17089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [17091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [17093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [17095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [17097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [17099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [17101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10259), + [17103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [17105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 2, 0, 73), + [17107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 3, 0, 154), + [17109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), + [17111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [17113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [17115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [17117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [17119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [17121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), + [17123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), + [17125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [17127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [17129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [17131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [17133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [17135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), + [17137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 3, 0), + [17139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(334), + [17142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), + [17144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), + [17146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [17148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [17150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [17152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [17154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [17156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [17158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [17160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [17162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [17164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [17166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [17168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 6, 0, 62), + [17170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), + [17172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 2, 0, 0), + [17174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [17176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), + [17178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [17180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [17182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [17184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [17186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [17188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [17190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [17192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [17194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_reference_declarator, 2, 0, 0), + [17196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [17198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2313), + [17201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), + [17203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), + [17205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [17207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [17209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [17211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2505), + [17214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), + [17216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [17218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [17220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), + [17222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [17224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), + [17226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(11075), + [17229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), + [17231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [17233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), + [17235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), + [17237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8883), + [17239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2363), + [17242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [17244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [17246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [17248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [17250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(8065), + [17253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), + [17255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), + [17257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), + [17259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [17261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), + [17263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8393), + [17266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [17268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), + [17270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10289), + [17272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 5, 0, 0), + [17274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 7, 0, 0), + [17276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1330), + [17279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [17281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 2, 0, 64), + [17283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [17285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [17287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11533), + [17289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [17291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), + [17293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), + [17295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9169), + [17297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [17299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [17301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [17303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [17305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_partition, 2, 0, 0), + [17307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [17309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [17311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11105), + [17313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [17315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10426), + [17317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), + [17319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), + [17321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [17323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [17325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10760), + [17327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9725), + [17329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), + [17331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 6, 0, 0), + [17333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [17335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11195), + [17337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_parameter_pack_expansion, 2, 0, 28), + [17339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [17341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11245), + [17343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8201), + [17345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10751), + [17347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [17349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [17351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, 0, 144), + [17353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [17355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [17357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [17359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), + [17361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 226), + [17363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), + [17365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), + [17367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), + [17369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [17371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [17373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [17375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [17377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_object_parameter_declaration, 2, 0, 0), + [17379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [17381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10977), + [17383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [17385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack_expansion, 2, 0, 28), + [17387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), + [17389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), + [17391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 97), + [17393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [17395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8316), + [17397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11056), + [17399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [17401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10649), + [17403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 209), + [17405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [17407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10902), + [17409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [17411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 2, 0), + [17413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 4, 0, 205), + [17415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 3, 0, 168), + [17417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 3, 0, 169), + [17419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_template_parameter_declaration, 3, 0, 62), + [17421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 7, 0, 210), + [17423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [17425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [17427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11081), + [17429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11152), + [17431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11682), + [17433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11114), + [17435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11722), + [17437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [17439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10740), + [17441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [17443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10895), + [17445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [17447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10667), + [17449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [17451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10778), + [17453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [17455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10715), + [17457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11303), + [17459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11689), + [17461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 106), + [17463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11330), + [17465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11692), + [17467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 0), + [17469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11352), + [17471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11695), + [17473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11372), + [17475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11698), + [17477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11392), + [17479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11701), + [17481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11409), + [17483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11704), + [17485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11423), + [17487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11706), + [17489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11430), + [17491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11707), + [17493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11436), + [17495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11708), + [17497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11440), + [17499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11709), + [17501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11444), + [17503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11710), + [17505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11448), + [17507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11711), + [17509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11452), + [17511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11712), + [17513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11456), + [17515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11713), + [17517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11460), + [17519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11714), + [17521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11464), + [17523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11715), + [17525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11468), + [17527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11716), + [17529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11472), + [17531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11717), + [17533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11475), + [17535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11718), + [17537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [17539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [17541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11350), + [17543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [17545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [17547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11526), + [17549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), + [17551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [17553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [17555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [17557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [17559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [17561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [17563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [17565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11502), + [17567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [17569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [17571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10711), + [17573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [17575] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [17577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [17579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [17581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11683), + [17583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11213), + [17585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [17587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [17589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [17591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [17593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9256), + [17595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [17597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), + [17599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [17601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), + [17603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [17605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [17607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [17609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8198), + [17611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), + [17613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [17615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10787), + [17617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [17619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [17621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [17623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8395), + [17625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [17627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [17629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11223), + [17631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10934), + [17633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10935), + [17635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [17637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [17639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [17641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [17643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9260), + [17645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11159), + [17647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [17649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [17651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [17653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8399), + [17655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [17657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9639), + [17659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [17661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [17663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 133), + [17665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [17667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9178), + [17669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), + [17671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [17673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8447), + [17675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [17677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [17679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [17681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [17683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [17685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [17687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_block, 4, 0, 133), + [17689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9507), + [17691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [17693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10972), + [17695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [17697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [17699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [17701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [17703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10761), + [17705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 84), + [17707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8664), + [17709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [17711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [17713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9172), + [17715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [17717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [17719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11390), + [17721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [17723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [17725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [17727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11501), + [17729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [17731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [17733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10672), + [17735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [17737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10963), + [17739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10268), + [17741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [17743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [17745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [17747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [17749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [17751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 2, 0, 0), + [17753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [17755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [17757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [17759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [17761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [17763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [17765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [17767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [17769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [17771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [17773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [17775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [17777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [17779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [17781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [17783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [17785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11272), + [17787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [17789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11044), + [17791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [17793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [17795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [17797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [17799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11311), + [17801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8916), + [17803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), + [17805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), + [17807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 85), + [17809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [17811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), + [17813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [17815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [17817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11088), + [17819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [17821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11553), + [17823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [17825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), + [17827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [17829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10780), + [17831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [17833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11582), + [17835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11586), + [17837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [17839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [17841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [17843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [17845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9173), + [17847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [17849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11326), + [17851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [17853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [17855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [17857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [17859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9487), + [17861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9302), + [17863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [17865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [17867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10709), + [17869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [17871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8760), + [17873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [17875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [17877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [17879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [17881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), + [17883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [17885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10708), + [17887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [17889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [17891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [17893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [17895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [17897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9668), + [17899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [17901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [17903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9675), + [17905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [17907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), + [17909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11142), + [17911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8502), + [17913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10674), + [17915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11492), + [17917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11197), + [17919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [17921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [17923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [17925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), + [17927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [17929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [17931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [17933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9168), + [17935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [17937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [17939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11486), + [17941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10752), + [17943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [17945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [17947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [17949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11540), + [17951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11560), + [17953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [17955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9589), + [17957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), + [17959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [17961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [17963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [17965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [17967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10042), + [17969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [17971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [17973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [17975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [17977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [17979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [17981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [17983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [17985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [17987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [17989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [17991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11366), + [17993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [17995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [17997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [17999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [18001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [18003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [18005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [18007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [18009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11165), + [18011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [18013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11036), + [18015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [18017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10992), + [18019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [18021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11186), + [18023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [18025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [18027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10994), + [18029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [18031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [18033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [18035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [18037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [18039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [18041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11260), + [18043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [18045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [18047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [18049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [18051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11275), + [18053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11276), + [18055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9477), + [18057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [18059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [18061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10353), + [18063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [18065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [18067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [18069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [18071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [18073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [18075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [18077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [18079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [18081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [18083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [18085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [18087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11495), + [18089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [18091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 85), + [18093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10908), + [18095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [18097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [18099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [18101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [18103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10775), + [18105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10704), + [18107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [18109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [18111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [18113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10794), + [18115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9527), + [18117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [18119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11527), + [18121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [18123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [18125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [18127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [18129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10838), + [18131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [18133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [18135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [18137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10627), + [18139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10854), + [18141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [18143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [18145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [18147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [18149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [18151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [18153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [18155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [18157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [18159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [18161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [18163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11134), + [18165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), + [18167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11040), + [18169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), + [18171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11144), + [18173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 134), + [18175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [18177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11172), + [18179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [18181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11182), + [18183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [18185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), + [18187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [18189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [18191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), + [18193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 85), + [18195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [18197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [18199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [18201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [18203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [18205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [18207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11331), + [18209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11488), + [18211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [18213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11544), + [18215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [18217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), + [18219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [18221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [18223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11388), + [18225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11725), + [18227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11719), + [18229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [18231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [18233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10833), + [18235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 85), + [18237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [18239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_block, 4, 0, 134), + [18241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 3, 0, 0), + [18243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10712), + [18245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10904), + [18247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10911), + [18249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [18251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [18253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10535), + [18255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [18257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11655), + [18259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10636), + [18261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [18263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [18265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [18267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [18269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10962), + [18271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10966), + [18273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [18275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11207), + [18277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11208), + [18279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [18281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11521), + [18283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11524), + [18285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [18287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10411), + [18289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10653), + [18291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10659), + [18293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [18295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10797), + [18297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10807), + [18299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [18301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10875), + [18303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10878), + [18305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [18307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10983), + [18309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11002), + [18311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11672), + [18313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11121), + [18315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11123), + [18317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [18319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11190), + [18321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11193), + [18323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [18325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [18327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [18329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [18331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [18333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10471), + [18335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [18337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10655), + [18339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [18341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [18343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [18345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [18347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), + [18349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [18351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [18353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [18355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [18357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), + [18359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10597), + [18361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [18363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10801), + [18365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [18367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [18369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10808), + [18371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [18373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [18375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9622), + [18377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [18379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [18381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10819), + [18383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [18385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), + [18387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [18389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [18391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [18393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [18395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [18397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), + [18399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9563), + [18401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10885), + [18403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [18405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [18407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [18409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [18411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [18413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [18415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [18417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [18419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [18421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [18423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [18425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [18427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [18429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [18431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), + [18433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [18435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [18437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [18439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [18441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [18443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [18445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10932), + [18447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 133), + [18449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [18451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [18453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [18455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [18457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [18459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [18461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [18463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9657), + [18465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [18467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [18469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [18471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [18473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [18475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [18477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [18479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [18481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11265), + [18483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [18485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [18487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10693), + [18489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [18491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9574), + [18493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), + [18495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [18497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [18499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [18501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), + [18503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [18505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10663), + [18507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [18509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [18511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [18513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [18515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [18517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [18519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [18521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [18523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [18525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), + [18527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [18529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [18531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [18533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [18535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), + [18537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [18539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [18541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), + [18543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10501), + [18545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11651), + [18547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [18549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [18551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [18553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [18555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [18557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10532), + [18559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10645), + [18561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [18563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [18565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10648), + [18567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [18569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [18571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [18573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10654), + [18575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), + [18577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [18579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10675), + [18581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 6, 0, 24), + [18583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [18585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [18587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10686), + [18589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [18591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [18593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10218), + [18595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [18597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [18599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [18601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [18603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11539), + [18605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11257), + [18607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10233), + [18609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10783), + [18611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [18613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10785), + [18615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 7, 0, 62), + [18617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [18619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10790), + [18621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [18623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10804), + [18625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10811), + [18627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [18629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10269), + [18631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [18633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [18635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [18637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [18639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8896), + [18641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10282), + [18643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10864), + [18645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10866), + [18647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_right_fold, 3, 0, 58), + [18649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [18651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10870), + [18653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10884), + [18655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [18657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10890), + [18659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [18661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [18663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10304), + [18665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [18667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [18669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [18671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [18673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10204), + [18675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10826), + [18677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10923), + [18679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [18681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10925), + [18683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [18685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [18687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10929), + [18689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10526), + [18691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10941), + [18693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [18695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11552), + [18697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10947), + [18699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [18701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10988), + [18703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10328), + [18705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [18707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [18709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [18711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [18713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10978), + [18715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8253), + [18717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10980), + [18719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 85), + [18721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [18723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10984), + [18725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10995), + [18727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [18729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11001), + [18731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [18733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [18735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10352), + [18737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [18739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [18741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [18743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [18745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [18747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11021), + [18749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_block, 5, 0, 186), + [18751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11023), + [18753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11025), + [18755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [18757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11029), + [18759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [18761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11031), + [18763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [18765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10362), + [18767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [18769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [18771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11046), + [18773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11047), + [18775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [18777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11051), + [18779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10371), + [18781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [18783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [18785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11058), + [18787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11059), + [18789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11062), + [18791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10374), + [18793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [18795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [18797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11069), + [18799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11070), + [18801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11071), + [18803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10379), + [18805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [18807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11077), + [18809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11078), + [18811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10382), + [18813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [18815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11084), + [18817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11085), + [18819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10384), + [18821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [18823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11090), + [18825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11091), + [18827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10387), + [18829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [18831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11095), + [18833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11096), + [18835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10388), + [18837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [18839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11099), + [18841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11100), + [18843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10389), + [18845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [18847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11103), + [18849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11104), + [18851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10390), + [18853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [18855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11107), + [18857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11108), + [18859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10392), + [18861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [18863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11111), + [18865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11112), + [18867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10394), + [18869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [18871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11115), + [18873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11116), + [18875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [18877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11118), + [18879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11119), + [18881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [18883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [18885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [18887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), + [18889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9580), + [18891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [18893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [18895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11151), + [18897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [18899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), + [18901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [18903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), + [18905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [18907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 134), + [18909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [18911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 186), + [18913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 186), + [18915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [18917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [18919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 186), + [18921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [18923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 133), + [18925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 133), + [18927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [18929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [18931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [18933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [18935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [18937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [18939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [18941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [18943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10822), + [18945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [18947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [18949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9428), + [18951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [18953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [18955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11199), + [18957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11306), + [18959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11231), + [18961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [18963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), + [18965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11322), + [18967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [18969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 4, 0, 0), + [18971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [18973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [18975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11647), + [18977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [18979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [18981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [18983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [18985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [18987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [18989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [18991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [18993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [18995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [18997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [18999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [19001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), + [19003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [19005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [19007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 134), + [19009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [19011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 134), + [19013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [19015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [19017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9618), + [19019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [19021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [19023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), + [19025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [19027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [19029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [19031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), + [19033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [19035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), + [19037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), + [19039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), + [19041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [19043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [19045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [19047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 186), + [19049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [19051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [19053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [19055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11302), + [19057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [19059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), + [19061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11211), + [19063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [19065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [19067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9505), + [19069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11312), + [19071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [19073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9670), + [19075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [19077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [19079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [19081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11329), + [19083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [19085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_block, 3, 0, 85), + [19087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [19089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [19091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9516), + [19093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11336), + [19095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), + [19097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [19099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [19101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [19103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11351), + [19105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [19107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [19109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [19111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9524), + [19113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11357), + [19115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [19117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [19119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11371), + [19121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [19123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [19125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9530), + [19127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11377), + [19129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [19131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [19133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11391), + [19135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [19137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [19139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9538), + [19141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11397), + [19143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 133), + [19145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [19147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11348), + [19150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9544), + [19152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11413), + [19154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [19156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11425), + [19158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11431), + [19160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [19162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11437), + [19164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [19166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11441), + [19168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10863), + [19170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11445), + [19172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [19174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11449), + [19176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), + [19178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11453), + [19180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [19182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11457), + [19184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [19186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11461), + [19188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8658), + [19190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11465), + [19192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11469), + [19194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [19196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11473), + [19198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [19200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11476), + [19202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 134), + [19204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [19206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10993), + [19208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [19210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10731), + [19212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [19214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [19216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 0), + [19218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [19220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 10), + [19222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [19224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11525), + [19226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [19228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10944), + [19230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), + [19232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), + [19234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11597), + [19236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [19238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11610), + [19240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8894), + [19242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [19244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11620), + [19246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [19248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11629), + [19250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [19252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [19254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11636), + [19256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [19258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [19260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11641), + [19262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 186), + [19264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11644), + [19266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11646), + [19268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11648), + [19270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11650), + [19272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11652), + [19274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11654), + [19276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11656), + [19278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11658), + [19280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11660), + [19282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11662), + [19284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11664), + [19286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11666), + [19288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11668), + [19290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8699), + [19292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [19294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [19296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11379), + [19298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [19300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [19302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), + [19304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [19306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [19308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [19310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [19312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [19314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [19316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), }; enum ts_external_scanner_symbol_identifiers { @@ -749687,6 +772368,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_cpp(void) { .state_count = STATE_COUNT, .large_state_count = LARGE_STATE_COUNT, .production_id_count = PRODUCTION_ID_COUNT, + .supertype_count = SUPERTYPE_COUNT, .field_count = FIELD_COUNT, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, .parse_table = &ts_parse_table[0][0], @@ -749697,6 +772379,9 @@ TS_PUBLIC const TSLanguage *tree_sitter_cpp(void) { .field_names = ts_field_names, .field_map_slices = ts_field_map_slices, .field_map_entries = ts_field_map_entries, + .supertype_map_slices = ts_supertype_map_slices, + .supertype_map_entries = ts_supertype_map_entries, + .supertype_symbols = ts_supertype_symbols, .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, @@ -749715,6 +772400,13 @@ TS_PUBLIC const TSLanguage *tree_sitter_cpp(void) { tree_sitter_cpp_external_scanner_deserialize, }, .primary_state_ids = ts_primary_state_ids, + .name = "cpp", + .max_reserved_word_set_size = 0, + .metadata = { + .major_version = 0, + .minor_version = 23, + .patch_version = 4, + }, }; return &language; } diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h index a17a574f..e99918e5 100644 --- a/src/tree_sitter/array.h +++ b/src/tree_sitter/array.h @@ -52,67 +52,91 @@ extern "C" { /// Reserve `new_capacity` elements of space in the array. If `new_capacity` is /// less than the array's current capacity, this function has no effect. -#define array_reserve(self, new_capacity) \ - _array__reserve((Array *)(self), array_elem_size(self), new_capacity) +#define array_reserve(self, new_capacity) \ + ((self)->contents = _array__reserve( \ + (void *)(self)->contents, &(self)->capacity, \ + array_elem_size(self), new_capacity) \ + ) /// Free any memory allocated for this array. Note that this does not free any /// memory allocated for the array's contents. -#define array_delete(self) _array__delete((Array *)(self)) +#define array_delete(self) _array__delete((self), (void *)(self)->contents, sizeof(*self)) /// Push a new `element` onto the end of the array. -#define array_push(self, element) \ - (_array__grow((Array *)(self), 1, array_elem_size(self)), \ - (self)->contents[(self)->size++] = (element)) +#define array_push(self, element) \ + do { \ + (self)->contents = _array__grow( \ + (void *)(self)->contents, (self)->size, &(self)->capacity, \ + 1, array_elem_size(self) \ + ); \ + (self)->contents[(self)->size++] = (element); \ + } while(0) /// Increase the array's size by `count` elements. /// New elements are zero-initialized. -#define array_grow_by(self, count) \ - do { \ - if ((count) == 0) break; \ - _array__grow((Array *)(self), count, array_elem_size(self)); \ +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + (self)->contents = _array__grow( \ + (self)->contents, (self)->size, &(self)->capacity, \ + count, array_elem_size(self) \ + ); \ memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ - (self)->size += (count); \ + (self)->size += (count); \ } while (0) /// Append all elements from one array to the end of another. -#define array_push_all(self, other) \ +#define array_push_all(self, other) \ array_extend((self), (other)->size, (other)->contents) /// Append `count` elements to the end of the array, reading their values from the /// `contents` pointer. -#define array_extend(self, count, contents) \ - _array__splice( \ - (Array *)(self), array_elem_size(self), (self)->size, \ - 0, count, contents \ +#define array_extend(self, count, other_contents) \ + (self)->contents = _array__splice( \ + (void*)(self)->contents, &(self)->size, &(self)->capacity, \ + array_elem_size(self), (self)->size, 0, count, other_contents \ ) /// Remove `old_count` elements from the array starting at the given `index`. At /// the same index, insert `new_count` new elements, reading their values from the /// `new_contents` pointer. -#define array_splice(self, _index, old_count, new_count, new_contents) \ - _array__splice( \ - (Array *)(self), array_elem_size(self), _index, \ - old_count, new_count, new_contents \ +#define array_splice(self, _index, old_count, new_count, new_contents) \ + (self)->contents = _array__splice( \ + (void *)(self)->contents, &(self)->size, &(self)->capacity, \ + array_elem_size(self), _index, old_count, new_count, new_contents \ ) /// Insert one `element` into the array at the given `index`. -#define array_insert(self, _index, element) \ - _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) +#define array_insert(self, _index, element) \ + (self)->contents = _array__splice( \ + (void *)(self)->contents, &(self)->size, &(self)->capacity, \ + array_elem_size(self), _index, 0, 1, &(element) \ + ) /// Remove one element from the array at the given `index`. #define array_erase(self, _index) \ - _array__erase((Array *)(self), array_elem_size(self), _index) + _array__erase((void *)(self)->contents, &(self)->size, array_elem_size(self), _index) /// Pop the last element off the array, returning the element by value. #define array_pop(self) ((self)->contents[--(self)->size]) /// Assign the contents of one array to another, reallocating if necessary. -#define array_assign(self, other) \ - _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) +#define array_assign(self, other) \ + (self)->contents = _array__assign( \ + (void *)(self)->contents, &(self)->size, &(self)->capacity, \ + (const void *)(other)->contents, (other)->size, array_elem_size(self) \ + ) /// Swap one array with another -#define array_swap(self, other) \ - _array__swap((Array *)(self), (Array *)(other)) +#define array_swap(self, other) \ + do { \ + struct Swap swapped_contents = _array__swap( \ + (void *)(self)->contents, &(self)->size, &(self)->capacity, \ + (void *)(other)->contents, &(other)->size, &(other)->capacity \ + ); \ + (self)->contents = swapped_contents.self_contents; \ + (other)->contents = swapped_contents.other_contents; \ + } while (0) /// Get the size of the array contents #define array_elem_size(self) (sizeof *(self)->contents) @@ -157,82 +181,112 @@ extern "C" { // Private -typedef Array(void) Array; +// Pointers to individual `Array` fields (rather than the entire `Array` itself) +// are passed to the various `_array__*` functions below to address strict aliasing +// violations that arises when the _entire_ `Array` struct is passed as `Array(void)*`. +// +// The `Array` type itself was not altered as a solution in order to avoid breakage +// with existing consumers (in particular, parsers with external scanners). /// This is not what you're looking for, see `array_delete`. -static inline void _array__delete(Array *self) { - if (self->contents) { - ts_free(self->contents); - self->contents = NULL; - self->size = 0; - self->capacity = 0; - } +static inline void _array__delete(void *self, void *contents, size_t self_size) { + if (contents) ts_free(contents); + if (self) memset(self, 0, self_size); } /// This is not what you're looking for, see `array_erase`. -static inline void _array__erase(Array *self, size_t element_size, - uint32_t index) { - assert(index < self->size); - char *contents = (char *)self->contents; +static inline void _array__erase(void* self_contents, uint32_t *size, + size_t element_size, uint32_t index) { + assert(index < *size); + char *contents = (char *)self_contents; memmove(contents + index * element_size, contents + (index + 1) * element_size, - (self->size - index - 1) * element_size); - self->size--; + (*size - index - 1) * element_size); + (*size)--; } /// This is not what you're looking for, see `array_reserve`. -static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { - if (new_capacity > self->capacity) { - if (self->contents) { - self->contents = ts_realloc(self->contents, new_capacity * element_size); +static inline void *_array__reserve(void *contents, uint32_t *capacity, + size_t element_size, uint32_t new_capacity) { + void *new_contents = contents; + if (new_capacity > *capacity) { + if (contents) { + new_contents = ts_realloc(contents, new_capacity * element_size); } else { - self->contents = ts_malloc(new_capacity * element_size); + new_contents = ts_malloc(new_capacity * element_size); } - self->capacity = new_capacity; + *capacity = new_capacity; } + return new_contents; } /// This is not what you're looking for, see `array_assign`. -static inline void _array__assign(Array *self, const Array *other, size_t element_size) { - _array__reserve(self, element_size, other->size); - self->size = other->size; - memcpy(self->contents, other->contents, self->size * element_size); +static inline void *_array__assign(void* self_contents, uint32_t *self_size, uint32_t *self_capacity, + const void *other_contents, uint32_t other_size, size_t element_size) { + void *new_contents = _array__reserve(self_contents, self_capacity, element_size, other_size); + *self_size = other_size; + memcpy(new_contents, other_contents, *self_size * element_size); + return new_contents; } +struct Swap { + void *self_contents; + void *other_contents; +}; + /// This is not what you're looking for, see `array_swap`. -static inline void _array__swap(Array *self, Array *other) { - Array swap = *other; - *other = *self; - *self = swap; +// static inline void _array__swap(Array *self, Array *other) { +static inline struct Swap _array__swap(void *self_contents, uint32_t *self_size, uint32_t *self_capacity, + void *other_contents, uint32_t *other_size, uint32_t *other_capacity) { + void *new_self_contents = other_contents; + uint32_t new_self_size = *other_size; + uint32_t new_self_capacity = *other_capacity; + + void *new_other_contents = self_contents; + *other_size = *self_size; + *other_capacity = *self_capacity; + + *self_size = new_self_size; + *self_capacity = new_self_capacity; + + struct Swap out = { + .self_contents = new_self_contents, + .other_contents = new_other_contents, + }; + return out; } /// This is not what you're looking for, see `array_push` or `array_grow_by`. -static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { - uint32_t new_size = self->size + count; - if (new_size > self->capacity) { - uint32_t new_capacity = self->capacity * 2; +static inline void *_array__grow(void *contents, uint32_t size, uint32_t *capacity, + uint32_t count, size_t element_size) { + void *new_contents = contents; + uint32_t new_size = size + count; + if (new_size > *capacity) { + uint32_t new_capacity = *capacity * 2; if (new_capacity < 8) new_capacity = 8; if (new_capacity < new_size) new_capacity = new_size; - _array__reserve(self, element_size, new_capacity); + new_contents = _array__reserve(contents, capacity, element_size, new_capacity); } + return new_contents; } /// This is not what you're looking for, see `array_splice`. -static inline void _array__splice(Array *self, size_t element_size, +static inline void *_array__splice(void *self_contents, uint32_t *size, uint32_t *capacity, + size_t element_size, uint32_t index, uint32_t old_count, uint32_t new_count, const void *elements) { - uint32_t new_size = self->size + new_count - old_count; + uint32_t new_size = *size + new_count - old_count; uint32_t old_end = index + old_count; uint32_t new_end = index + new_count; - assert(old_end <= self->size); + assert(old_end <= *size); - _array__reserve(self, element_size, new_size); + void *new_contents = _array__reserve(self_contents, capacity, element_size, new_size); - char *contents = (char *)self->contents; - if (self->size > old_end) { + char *contents = (char *)new_contents; + if (*size > old_end) { memmove( contents + new_end * element_size, contents + old_end * element_size, - (self->size - old_end) * element_size + (*size - old_end) * element_size ); } if (new_count > 0) { @@ -250,7 +304,9 @@ static inline void _array__splice(Array *self, size_t element_size, ); } } - self->size += new_count - old_count; + *size += new_count - old_count; + + return new_contents; } /// A binary search routine, based on Rust's `std::slice::binary_search_by`. diff --git a/test/corpus/modules.txt b/test/corpus/modules.txt index e2e723cf..7ac3ae4f 100644 --- a/test/corpus/modules.txt +++ b/test/corpus/modules.txt @@ -73,9 +73,10 @@ export import mod; -------------------------------------------------------------------------------- (translation_unit - (import_declaration - name: (module_name - (identifier)))) + (export_declaration + (import_declaration + name: (module_name + (identifier))))) ================================================================================ import Declaration partition with export @@ -85,10 +86,11 @@ export import :mod; -------------------------------------------------------------------------------- (translation_unit - (import_declaration - partition: (module_partition - (module_name - (identifier))))) + (export_declaration + (import_declaration + partition: (module_partition + (module_name + (identifier)))))) ================================================================================ import Declaration headerunit with export @@ -98,8 +100,9 @@ export import ; -------------------------------------------------------------------------------- (translation_unit - (import_declaration - header: (system_lib_string))) + (export_declaration + (import_declaration + header: (system_lib_string)))) ================================================================================ global module fragment @@ -171,22 +174,23 @@ char const* french() { return "Salut!"; } (string_literal (string_content))))) (export_declaration - (function_definition - type: (primitive_type) - declarator: (function_declarator - declarator: (identifier) - parameters: (parameter_list)) - body: (compound_statement - (return_statement - (number_literal)))) - (function_definition - type: (primitive_type) - declarator: (function_declarator - declarator: (identifier) - parameters: (parameter_list)) - body: (compound_statement - (return_statement - (number_literal))))) + (declaration_list + (function_definition + type: (primitive_type) + declarator: (function_declarator + declarator: (identifier) + parameters: (parameter_list)) + body: (compound_statement + (return_statement + (number_literal)))) + (function_definition + type: (primitive_type) + declarator: (function_declarator + declarator: (identifier) + parameters: (parameter_list)) + body: (compound_statement + (return_statement + (number_literal)))))) (export_declaration (namespace_definition name: (namespace_identifier) @@ -213,3 +217,51 @@ char const* french() { return "Salut!"; } (return_statement (string_literal (string_content))))))))) + +================================================================================ +Modules in preprocessor sections +================================================================================ + +#ifdef USE_MODULES +module; +#include +export module foo; +#endif + +#if USE_MODULES +import std; +#else +import ; +#endif + +export { +#ifdef USE_MODULE +class Foo; +#endif +} + +-------- + +(translation_unit + (preproc_ifdef + (identifier) + (global_module_fragment_declaration) + (preproc_include + (system_lib_string)) + (module_declaration + (module_name + (identifier)))) + (preproc_if + (identifier) + (import_declaration + (module_name + (identifier))) + (preproc_else + (import_declaration + (system_lib_string)))) + (export_declaration + (declaration_list + (preproc_ifdef + (identifier) + (class_specifier + (type_identifier))))))